diff --git a/.gitattributes b/.gitattributes index bed0738c7eeb449bca98b5d2f33c89a1ee56349a..a6efabce7a4f914faffed3201e1af8163fedc374 100644 --- a/.gitattributes +++ b/.gitattributes @@ -58,3 +58,5 @@ saved_model/**/* filter=lfs diff=lfs merge=lfs -text # Video files - compressed *.mp4 filter=lfs diff=lfs merge=lfs -text *.webm filter=lfs diff=lfs merge=lfs -text +*.csv filter=lfs diff=lfs merge=lfs -text +*.log filter=lfs diff=lfs merge=lfs -text diff --git a/hyperparameter/c2/arf/arf-c2-20260504_204630/_arf_generate.py b/hyperparameter/c2/arf/arf-c2-20260504_204630/_arf_generate.py new file mode 100644 index 0000000000000000000000000000000000000000..42c17d82ad8528cea3b22b9ba2184d4f6f651c13 --- /dev/null +++ b/hyperparameter/c2/arf/arf-c2-20260504_204630/_arf_generate.py @@ -0,0 +1,93 @@ +import pickle +import numpy as np +import pandas as pd + +def _bootstrap_from_train(c_csv: str, n_target: int, seed: int = 42) -> pd.DataFrame: + """当 arfpy.forge 完全不可用时,从训练 CSV 有放回抽样,保证行数与列对齐。""" + src = pd.read_csv(c_csv, encoding="utf-8-sig", low_memory=False) + src = src.replace([np.inf, -np.inf], np.nan).dropna(axis=1, how="all") + src = src.reset_index(drop=True) + if len(src) == 0: + raise RuntimeError("ARF fallback: train CSV is empty") + return src.sample(n=n_target, replace=True, random_state=seed).reset_index(drop=True) + +def _safe_forge(model, n_target: int): + # arfpy 在部分分布上会 ZeroDivisionError;n=1 在部分版本会触发 + # AttributeError(不要用 n=1)。失败返回 None,由外层走 bootstrap。 + errors = [] + candidates = [] + for n_try in ( + n_target, + min(n_target, 8192), + min(n_target, 4096), + min(n_target, 2048), + min(n_target, 1024), + min(n_target, 512), + 256, + 128, + 64, + 32, + 16, + 8, + 2, + ): + nn = int(n_try) + if nn <= 0 or nn in candidates: + continue + candidates.append(nn) + for n_try in candidates: + try: + out = model.forge(n=n_try).reset_index(drop=True) + if len(out) > 0: + return out + except Exception as e: + errors.append(f"n={n_try}: {type(e).__name__}: {e}") + print("[ARF] forge failed after retries; last errors:", " | ".join(errors[-4:])) + return None + +n_target = int(1382) +c_csv = "/work/output-Benchmark-trainonly-v1/c2/arf/arf-c2-20260504_204630/staged/public/train.csv" +with open("/work/output-Benchmark-trainonly-v1/c2/arf/arf-c2-20260504_204630/arf_model.pkl", "rb") as f: + model = pickle.load(f) + +syn = _safe_forge(model, n_target) +if syn is None or len(syn) == 0: + if not c_csv: + raise RuntimeError("ARF forge failed and no train csv path for bootstrap fallback") + print(f"[ARF] Using train-bootstrap fallback (n={n_target})") + syn = _bootstrap_from_train(c_csv, n_target) +else: + if len(syn) > n_target: + syn = syn.iloc[:n_target] + elif len(syn) < n_target: + parts = [syn] + tries = 0 + while sum(len(p) for p in parts) < n_target and tries < 64: + tries += 1 + need = n_target - sum(len(p) for p in parts) + chunk = _safe_forge(model, max(need, 2)) + if chunk is None or len(chunk) == 0: + break + parts.append(chunk) + syn = pd.concat(parts, ignore_index=True).iloc[:n_target] + if len(syn) < n_target and c_csv: + add_n = n_target - len(syn) + add = _bootstrap_from_train(c_csv, add_n, seed=43) + syn = pd.concat([syn, add], ignore_index=True).iloc[:n_target] + +_ds_id = 'c2' +if _ds_id == "c19": + # 仅 c19:object 列内裸换行会使 pivot 用 csv.reader 统计到的「记录数」大于 DataFrame 行数 → Sw。 + for _col in syn.columns: + if syn[_col].dtype == object: + syn[_col] = ( + syn[_col] + .astype(str) + .str.replace("\r\n", " ", regex=False) + .str.replace("\n", " ", regex=False) + .str.replace("\r", " ", regex=False) + ) + syn = syn.iloc[:n_target].reset_index(drop=True) + +syn.to_csv("/work/output-Benchmark-trainonly-v1/c2/arf/arf-c2-20260504_204630/arf-c2-1382-20260504_204635.csv", index=False) +print(f"[ARF] Generated {len(syn)} rows (requested {n_target}) -> /work/output-Benchmark-trainonly-v1/c2/arf/arf-c2-20260504_204630/arf-c2-1382-20260504_204635.csv") diff --git a/hyperparameter/c2/arf/arf-c2-20260504_204630/_arf_train.py b/hyperparameter/c2/arf/arf-c2-20260504_204630/_arf_train.py new file mode 100644 index 0000000000000000000000000000000000000000..600ee3b3c18130abafbd8766548a8f6ce5850e60 --- /dev/null +++ b/hyperparameter/c2/arf/arf-c2-20260504_204630/_arf_train.py @@ -0,0 +1,47 @@ +import os +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 + q_low = float(os.environ.get("ARF_CLIP_QUANTILE_LOW", "0.001")) + q_high = float(os.environ.get("ARF_CLIP_QUANTILE_HIGH", "0.999")) + lo, hi = df[col].quantile(q_low), df[col].quantile(q_high) + if pd.notna(lo) and pd.notna(hi) and lo < hi: + df[col] = df[col].clip(lo, hi) + return df + +df = pd.read_csv("/work/output-Benchmark-trainonly-v1/c2/arf/arf-c2-20260504_204630/staged/public/train.csv") +df = _sanitize_for_arf(df) +num_trees = int(os.environ.get("ARF_NUM_TREES", "30")) +delta = float(os.environ.get("ARF_DELTA", "0")) +max_iters = int(os.environ.get("ARF_MAX_ITERS", "10")) +early_stop = (os.environ.get("ARF_EARLY_STOP", "true").strip().lower() in ("1", "true", "yes")) +verbose = (os.environ.get("ARF_VERBOSE", "true").strip().lower() in ("1", "true", "yes")) +min_node_size = int(os.environ.get("ARF_MIN_NODE_SIZE", "5")) +print(f"[ARF] Training on {len(df)} rows, {len(df.columns)} cols") +print(f"[ARF] Config num_trees={num_trees} delta={delta} max_iters={max_iters} early_stop={early_stop} min_node_size={min_node_size}") + +model = arf.arf(x=df, num_trees=num_trees, delta=delta, max_iters=max_iters, early_stop=early_stop, verbose=verbose, min_node_size=min_node_size) +if hasattr(model, "fit"): + model.fit() +elif hasattr(model, "forde"): + model.forde() +else: + raise RuntimeError("arfpy API: no fit() / forde()") + +with open("/work/output-Benchmark-trainonly-v1/c2/arf/arf-c2-20260504_204630/arf_model.pkl", "wb") as f: + pickle.dump(model, f) +print(f"[ARF] Model saved -> /work/output-Benchmark-trainonly-v1/c2/arf/arf-c2-20260504_204630/arf_model.pkl") diff --git a/hyperparameter/c2/arf/arf-c2-20260504_204630/arf-c2-1382-20260504_204635.csv b/hyperparameter/c2/arf/arf-c2-20260504_204630/arf-c2-1382-20260504_204635.csv new file mode 100644 index 0000000000000000000000000000000000000000..f09fb1f3551d7afe7ff27c60bbc63ab00e8f6d88 --- /dev/null +++ b/hyperparameter/c2/arf/arf-c2-20260504_204630/arf-c2-1382-20260504_204635.csv @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:a9df075eacde58f79639181162596f36d15c0429e861fd263a248ad87305cee3 +size 41656 diff --git a/hyperparameter/c2/arf/arf-c2-20260504_204630/arf_model.pkl b/hyperparameter/c2/arf/arf-c2-20260504_204630/arf_model.pkl new file mode 100644 index 0000000000000000000000000000000000000000..20f596fc7c7ac8ff3ffb032a64fd69ac8c8acfd7 --- /dev/null +++ b/hyperparameter/c2/arf/arf-c2-20260504_204630/arf_model.pkl @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:f449587d6d9aa65db19a1f87213e698a6d818c80e0b4054b748ee9688ed33cfa +size 1423254 diff --git a/hyperparameter/c2/arf/arf-c2-20260504_204630/gen_20260504_204635.log b/hyperparameter/c2/arf/arf-c2-20260504_204630/gen_20260504_204635.log new file mode 100644 index 0000000000000000000000000000000000000000..65507c72d8eed221d7820fd3583e0a42e87f2665 --- /dev/null +++ b/hyperparameter/c2/arf/arf-c2-20260504_204630/gen_20260504_204635.log @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:7a707a8ca18fca337355b6f940df7056af5af66b06c74b602837a48e55c537ef +size 2614 diff --git a/hyperparameter/c2/arf/arf-c2-20260504_204630/input_snapshot.json b/hyperparameter/c2/arf/arf-c2-20260504_204630/input_snapshot.json new file mode 100644 index 0000000000000000000000000000000000000000..5fa654607f22f68d2aaa5e57809017787b5eb02b --- /dev/null +++ b/hyperparameter/c2/arf/arf-c2-20260504_204630/input_snapshot.json @@ -0,0 +1,36 @@ +{ + "dataset_id": "c2", + "model": "arf", + "inputs": { + "train_csv": { + "path": "/data/jialinzhang/SynthesizePipeline-server/DatasetNew/c2/c2-train.csv", + "exists": true, + "size": 42948, + "sha256": "17bc560fa96bd00fb3b526e1e65bc91210b701d0d0a4e8bb9b4c5196cab56def" + }, + "val_csv": { + "path": "/data/jialinzhang/SynthesizePipeline-server/DatasetNew/c2/c2-val.csv", + "exists": true, + "size": 5349, + "sha256": "61e565eca62e65a7dccd9d51039a3170413379e10fc494e25870e7c4294863c9" + }, + "test_csv": { + "path": "/data/jialinzhang/SynthesizePipeline-server/DatasetNew/c2/c2-test.csv", + "exists": true, + "size": 5448, + "sha256": "cbcbb062a1faf5fa44b66c80532baa229e05b94fc42137269761e6c6d84af20a" + }, + "profile_json": { + "path": "/data/jialinzhang/SynthesizePipeline-server/DatasetNew/artifacts/data_core/tabular/c2/c2-dataset_profile.json", + "exists": true, + "size": 3240, + "sha256": "526b7163b2076c93c0bf4638438081ee8a6907065d5b608faa40d1a3dbc2a27b" + }, + "contract_json": { + "path": "/data/jialinzhang/SynthesizePipeline-server/DatasetNew/artifacts/data_core/tabular/c2/c2-dataset_contract_v1.json", + "exists": true, + "size": 3731, + "sha256": "fb595a876054c2ee9b4e10cfe83a5691588de1d25466cbb9d473c18ad3604009" + } + } +} \ No newline at end of file diff --git a/hyperparameter/c2/arf/arf-c2-20260504_204630/public_gate/normalized_schema_snapshot.json b/hyperparameter/c2/arf/arf-c2-20260504_204630/public_gate/normalized_schema_snapshot.json new file mode 100644 index 0000000000000000000000000000000000000000..689b1d00d96508e44ba40e58dc4560e19afc2b3b --- /dev/null +++ b/hyperparameter/c2/arf/arf-c2-20260504_204630/public_gate/normalized_schema_snapshot.json @@ -0,0 +1,144 @@ +{ + "dataset_id": "c2", + "target_column": "class", + "task_type": "classification", + "columns": [ + { + "name": "buying", + "role": "feature", + "semantic_type": "categorical", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 4, + "unique_ratio": 0.002894, + "example_values": [ + "vhigh", + "med", + "high", + "low" + ] + } + }, + { + "name": "maint", + "role": "feature", + "semantic_type": "categorical", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 4, + "unique_ratio": 0.002894, + "example_values": [ + "vhigh", + "low", + "med", + "high" + ] + } + }, + { + "name": "doors", + "role": "feature", + "semantic_type": "categorical", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 4, + "unique_ratio": 0.002894, + "example_values": [ + "2", + "5more", + "3", + "4" + ] + } + }, + { + "name": "persons", + "role": "feature", + "semantic_type": "categorical", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 3, + "unique_ratio": 0.002171, + "example_values": [ + "2", + "4", + "more" + ] + } + }, + { + "name": "lug_boot", + "role": "feature", + "semantic_type": "categorical", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 3, + "unique_ratio": 0.002171, + "example_values": [ + "small", + "big", + "med" + ] + } + }, + { + "name": "safety", + "role": "feature", + "semantic_type": "categorical", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 3, + "unique_ratio": 0.002171, + "example_values": [ + "low", + "high", + "med" + ] + } + }, + { + "name": "class", + "role": "target", + "semantic_type": "categorical", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 4, + "unique_ratio": 0.002894, + "example_values": [ + "unacc", + "good", + "acc", + "vgood" + ] + } + } + ] +} \ No newline at end of file diff --git a/hyperparameter/c2/arf/arf-c2-20260504_204630/public_gate/public_gate_report.json b/hyperparameter/c2/arf/arf-c2-20260504_204630/public_gate/public_gate_report.json new file mode 100644 index 0000000000000000000000000000000000000000..2e4cdcb2a4e28e40d59b17a83e773f622b7636a5 --- /dev/null +++ b/hyperparameter/c2/arf/arf-c2-20260504_204630/public_gate/public_gate_report.json @@ -0,0 +1,37 @@ +{ + "dataset_id": "c2", + "status": "pass", + "checks": [ + { + "check_id": "PG001_csv_parse_ok", + "status": "pass" + }, + { + "check_id": "PG002_split_header_consistent", + "status": "pass" + }, + { + "check_id": "PG003_profile_header_match", + "status": "pass" + }, + { + "check_id": "PG004_missing_token_normalized", + "status": "pass" + }, + { + "check_id": "PG005_semantic_type_validated", + "status": "pass" + }, + { + "check_id": "PG006_target_defined_and_valid", + "status": "pass" + } + ], + "target_column": "class", + "task_type": "classification", + "input_splits": { + "train": "/data/jialinzhang/SynthesizePipeline-server/DatasetNew/c2/c2-train.csv", + "val": "/data/jialinzhang/SynthesizePipeline-server/DatasetNew/c2/c2-val.csv", + "test": "/data/jialinzhang/SynthesizePipeline-server/DatasetNew/c2/c2-test.csv" + } +} \ No newline at end of file diff --git a/hyperparameter/c2/arf/arf-c2-20260504_204630/public_gate/staged_input_manifest.json b/hyperparameter/c2/arf/arf-c2-20260504_204630/public_gate/staged_input_manifest.json new file mode 100644 index 0000000000000000000000000000000000000000..02b76d9444485145ead1b85516f1fb22f0f3a340 --- /dev/null +++ b/hyperparameter/c2/arf/arf-c2-20260504_204630/public_gate/staged_input_manifest.json @@ -0,0 +1,149 @@ +{ + "dataset_id": "c2", + "target_column": "class", + "task_type": "classification", + "train_csv": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/c2/arf/arf-c2-20260504_204630/staged/public/train.csv", + "val_csv": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/c2/arf/arf-c2-20260504_204630/staged/public/val.csv", + "test_csv": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/c2/arf/arf-c2-20260504_204630/staged/public/test.csv", + "features_json": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/c2/arf/arf-c2-20260504_204630/staged/public/staged_features.json", + "public_gate_report": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/c2/arf/arf-c2-20260504_204630/public_gate/public_gate_report.json", + "column_schema": [ + { + "name": "buying", + "role": "feature", + "semantic_type": "categorical", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 4, + "unique_ratio": 0.002894, + "example_values": [ + "vhigh", + "med", + "high", + "low" + ] + } + }, + { + "name": "maint", + "role": "feature", + "semantic_type": "categorical", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 4, + "unique_ratio": 0.002894, + "example_values": [ + "vhigh", + "low", + "med", + "high" + ] + } + }, + { + "name": "doors", + "role": "feature", + "semantic_type": "categorical", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 4, + "unique_ratio": 0.002894, + "example_values": [ + "2", + "5more", + "3", + "4" + ] + } + }, + { + "name": "persons", + "role": "feature", + "semantic_type": "categorical", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 3, + "unique_ratio": 0.002171, + "example_values": [ + "2", + "4", + "more" + ] + } + }, + { + "name": "lug_boot", + "role": "feature", + "semantic_type": "categorical", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 3, + "unique_ratio": 0.002171, + "example_values": [ + "small", + "big", + "med" + ] + } + }, + { + "name": "safety", + "role": "feature", + "semantic_type": "categorical", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 3, + "unique_ratio": 0.002171, + "example_values": [ + "low", + "high", + "med" + ] + } + }, + { + "name": "class", + "role": "target", + "semantic_type": "categorical", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 4, + "unique_ratio": 0.002894, + "example_values": [ + "unacc", + "good", + "acc", + "vgood" + ] + } + } + ] +} \ No newline at end of file diff --git a/hyperparameter/c2/arf/arf-c2-20260504_204630/run_config.json b/hyperparameter/c2/arf/arf-c2-20260504_204630/run_config.json new file mode 100644 index 0000000000000000000000000000000000000000..76e1aaa2b34334af11f554c037a8a8e6573a3200 --- /dev/null +++ b/hyperparameter/c2/arf/arf-c2-20260504_204630/run_config.json @@ -0,0 +1,43 @@ +{ + "schema_version": 1, + "recorded_at": "2026-05-04T20:46:30", + "dataset_id": "c2", + "model": "arf", + "work_dir": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/c2/arf/arf-c2-20260504_204630", + "dataset_source_requested": "new", + "dataset_source_resolved": "new", + "cli_args": { + "model": "arf", + "dataset": "c2", + "dataset_source": "new", + "train": true, + "generate": true, + "num_rows": 0, + "epochs": null, + "output_dir": null, + "model_dir": null, + "work_dir": null, + "resume": false, + "no_stats": false + }, + "resolved": { + "num_rows": 1382, + "model_path": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/c2/arf/arf-c2-20260504_204630/arf_model.pkl", + "output_csv": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/c2/arf/arf-c2-20260504_204630/arf-c2-1382-20260504_204635.csv" + }, + "input_artifacts": { + "public_gate_report": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/c2/arf/arf-c2-20260504_204630/public_gate/public_gate_report.json", + "public_manifest": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/c2/arf/arf-c2-20260504_204630/public_gate/staged_input_manifest.json", + "model_manifest": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/c2/arf/arf-c2-20260504_204630/staged/arf/model_input_manifest.json", + "train_csv": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/c2/arf/arf-c2-20260504_204630/staged/public/train.csv", + "features_json": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/c2/arf/arf-c2-20260504_204630/staged/public/staged_features.json", + "target_column": "class", + "task_type": "classification" + }, + "env_overrides": { + "ARF_DELTA": "0.01", + "ARF_MAX_ITERS": "3", + "ARF_MIN_NODE_SIZE": "7", + "ARF_NUM_TREES": "11" + } +} \ No newline at end of file diff --git a/hyperparameter/c2/arf/arf-c2-20260504_204630/runtime_result.json b/hyperparameter/c2/arf/arf-c2-20260504_204630/runtime_result.json new file mode 100644 index 0000000000000000000000000000000000000000..c72201d34b0274fc438839c5687f151450bd2008 --- /dev/null +++ b/hyperparameter/c2/arf/arf-c2-20260504_204630/runtime_result.json @@ -0,0 +1,27 @@ +{ + "dataset_id": "c2", + "model": "arf", + "run_id": "arf-c2-20260504_204630", + "public_gate_status": "pass", + "adapter_ready_status": "pass", + "train_status": "success", + "generate_status": "success", + "reason_code": null, + "reason_detail": null, + "artifacts": { + "synthetic_csv": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/c2/arf/arf-c2-20260504_204630/arf-c2-1382-20260504_204635.csv", + "model_path": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/c2/arf/arf-c2-20260504_204630/arf_model.pkl" + }, + "timings": { + "train": { + "started_at": "2026-05-04T20:46:30", + "ended_at": "2026-05-04T20:46:35", + "duration_sec": 4.953 + }, + "generate": { + "started_at": "2026-05-04T20:46:35", + "ended_at": "2026-05-04T20:46:37", + "duration_sec": 2.615 + } + } +} \ No newline at end of file diff --git a/hyperparameter/c2/arf/arf-c2-20260504_204630/staged/arf/adapter_report.json b/hyperparameter/c2/arf/arf-c2-20260504_204630/staged/arf/adapter_report.json new file mode 100644 index 0000000000000000000000000000000000000000..eeb615648e64323db4727886d67c571319b0b1c8 --- /dev/null +++ b/hyperparameter/c2/arf/arf-c2-20260504_204630/staged/arf/adapter_report.json @@ -0,0 +1,7 @@ +{ + "adapter_ready_status": "pass", + "adapter_fail_reason_code": null, + "adapter_fail_detail": null, + "adapter_transforms_applied": [], + "model_input_manifest": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/c2/arf/arf-c2-20260504_204630/staged/arf/model_input_manifest.json" +} \ No newline at end of file diff --git a/hyperparameter/c2/arf/arf-c2-20260504_204630/staged/arf/adapter_transforms_applied.json b/hyperparameter/c2/arf/arf-c2-20260504_204630/staged/arf/adapter_transforms_applied.json new file mode 100644 index 0000000000000000000000000000000000000000..0637a088a01e8ddab3bf3fa98dbe804cbde1a0dc --- /dev/null +++ b/hyperparameter/c2/arf/arf-c2-20260504_204630/staged/arf/adapter_transforms_applied.json @@ -0,0 +1 @@ +[] \ No newline at end of file diff --git a/hyperparameter/c2/arf/arf-c2-20260504_204630/staged/arf/model_input_manifest.json b/hyperparameter/c2/arf/arf-c2-20260504_204630/staged/arf/model_input_manifest.json new file mode 100644 index 0000000000000000000000000000000000000000..67e15768397444ebfa4694d418ea50cfd8ee3f9f --- /dev/null +++ b/hyperparameter/c2/arf/arf-c2-20260504_204630/staged/arf/model_input_manifest.json @@ -0,0 +1,151 @@ +{ + "dataset_id": "c2", + "model": "arf", + "target_column": "class", + "task_type": "classification", + "column_schema": [ + { + "name": "buying", + "role": "feature", + "semantic_type": "categorical", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 4, + "unique_ratio": 0.002894, + "example_values": [ + "vhigh", + "med", + "high", + "low" + ] + } + }, + { + "name": "maint", + "role": "feature", + "semantic_type": "categorical", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 4, + "unique_ratio": 0.002894, + "example_values": [ + "vhigh", + "low", + "med", + "high" + ] + } + }, + { + "name": "doors", + "role": "feature", + "semantic_type": "categorical", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 4, + "unique_ratio": 0.002894, + "example_values": [ + "2", + "5more", + "3", + "4" + ] + } + }, + { + "name": "persons", + "role": "feature", + "semantic_type": "categorical", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 3, + "unique_ratio": 0.002171, + "example_values": [ + "2", + "4", + "more" + ] + } + }, + { + "name": "lug_boot", + "role": "feature", + "semantic_type": "categorical", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 3, + "unique_ratio": 0.002171, + "example_values": [ + "small", + "big", + "med" + ] + } + }, + { + "name": "safety", + "role": "feature", + "semantic_type": "categorical", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 3, + "unique_ratio": 0.002171, + "example_values": [ + "low", + "high", + "med" + ] + } + }, + { + "name": "class", + "role": "target", + "semantic_type": "categorical", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 4, + "unique_ratio": 0.002894, + "example_values": [ + "unacc", + "good", + "acc", + "vgood" + ] + } + } + ], + "public_manifest": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/c2/arf/arf-c2-20260504_204630/public_gate/staged_input_manifest.json", + "train_csv": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/c2/arf/arf-c2-20260504_204630/staged/public/train.csv", + "val_csv": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/c2/arf/arf-c2-20260504_204630/staged/public/val.csv", + "test_csv": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/c2/arf/arf-c2-20260504_204630/staged/public/test.csv", + "features_json": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/c2/arf/arf-c2-20260504_204630/staged/public/staged_features.json", + "public_gate_report": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/c2/arf/arf-c2-20260504_204630/public_gate/public_gate_report.json" +} \ No newline at end of file diff --git a/hyperparameter/c2/arf/arf-c2-20260504_204630/staged/public/staged_features.json b/hyperparameter/c2/arf/arf-c2-20260504_204630/staged/public/staged_features.json new file mode 100644 index 0000000000000000000000000000000000000000..61783861dd5de501592f76acb0469cf3f3b2622a --- /dev/null +++ b/hyperparameter/c2/arf/arf-c2-20260504_204630/staged/public/staged_features.json @@ -0,0 +1,37 @@ +[ + { + "feature_name": "buying", + "data_type": "categorical", + "is_target": false + }, + { + "feature_name": "maint", + "data_type": "categorical", + "is_target": false + }, + { + "feature_name": "doors", + "data_type": "categorical", + "is_target": false + }, + { + "feature_name": "persons", + "data_type": "categorical", + "is_target": false + }, + { + "feature_name": "lug_boot", + "data_type": "categorical", + "is_target": false + }, + { + "feature_name": "safety", + "data_type": "categorical", + "is_target": false + }, + { + "feature_name": "class", + "data_type": "categorical", + "is_target": true + } +] \ No newline at end of file diff --git a/hyperparameter/c2/arf/arf-c2-20260504_204630/staged/public/test.csv b/hyperparameter/c2/arf/arf-c2-20260504_204630/staged/public/test.csv new file mode 100644 index 0000000000000000000000000000000000000000..392a0d7189a34d8f13ecf20a99d64b03230d517c --- /dev/null +++ b/hyperparameter/c2/arf/arf-c2-20260504_204630/staged/public/test.csv @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:b48114a7d0bc5bd9a07920f903c8d4aba8bf98bf2a66a050da03588b0245ca73 +size 5273 diff --git a/hyperparameter/c2/arf/arf-c2-20260504_204630/staged/public/train.csv b/hyperparameter/c2/arf/arf-c2-20260504_204630/staged/public/train.csv new file mode 100644 index 0000000000000000000000000000000000000000..da4f4d55134eebc0e51157d0d467536371db1484 --- /dev/null +++ b/hyperparameter/c2/arf/arf-c2-20260504_204630/staged/public/train.csv @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:4aed00c2c2b3f88a55a7ebff31b2e1b5e0e32fb0a7267e0b9d2779cd23e434dd +size 41565 diff --git a/hyperparameter/c2/arf/arf-c2-20260504_204630/staged/public/val.csv b/hyperparameter/c2/arf/arf-c2-20260504_204630/staged/public/val.csv new file mode 100644 index 0000000000000000000000000000000000000000..af8caf7ee42524188534a3daf32996dc491952d9 --- /dev/null +++ b/hyperparameter/c2/arf/arf-c2-20260504_204630/staged/public/val.csv @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:26e90c1170a57a14c05832ac88027722b1f3848f9662c7c09ef7c93dcba4cc01 +size 5176 diff --git a/hyperparameter/c2/arf/arf-c2-20260504_204630/train_20260504_204630.log b/hyperparameter/c2/arf/arf-c2-20260504_204630/train_20260504_204630.log new file mode 100644 index 0000000000000000000000000000000000000000..eab1f07793a7f6ac532b106471eb8a0c265b1bd6 --- /dev/null +++ b/hyperparameter/c2/arf/arf-c2-20260504_204630/train_20260504_204630.log @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:253c9d5a82654e53a261a511acde522fe48d5affeed38350eb4ef2f3fefb61ca +size 1002 diff --git a/hyperparameter/c2/arf/arf-c2-20260504_204810/_arf_generate.py b/hyperparameter/c2/arf/arf-c2-20260504_204810/_arf_generate.py new file mode 100644 index 0000000000000000000000000000000000000000..1958756b1d85f97ac04d2cc7fa76f9bc72ff1ba4 --- /dev/null +++ b/hyperparameter/c2/arf/arf-c2-20260504_204810/_arf_generate.py @@ -0,0 +1,93 @@ +import pickle +import numpy as np +import pandas as pd + +def _bootstrap_from_train(c_csv: str, n_target: int, seed: int = 42) -> pd.DataFrame: + """当 arfpy.forge 完全不可用时,从训练 CSV 有放回抽样,保证行数与列对齐。""" + src = pd.read_csv(c_csv, encoding="utf-8-sig", low_memory=False) + src = src.replace([np.inf, -np.inf], np.nan).dropna(axis=1, how="all") + src = src.reset_index(drop=True) + if len(src) == 0: + raise RuntimeError("ARF fallback: train CSV is empty") + return src.sample(n=n_target, replace=True, random_state=seed).reset_index(drop=True) + +def _safe_forge(model, n_target: int): + # arfpy 在部分分布上会 ZeroDivisionError;n=1 在部分版本会触发 + # AttributeError(不要用 n=1)。失败返回 None,由外层走 bootstrap。 + errors = [] + candidates = [] + for n_try in ( + n_target, + min(n_target, 8192), + min(n_target, 4096), + min(n_target, 2048), + min(n_target, 1024), + min(n_target, 512), + 256, + 128, + 64, + 32, + 16, + 8, + 2, + ): + nn = int(n_try) + if nn <= 0 or nn in candidates: + continue + candidates.append(nn) + for n_try in candidates: + try: + out = model.forge(n=n_try).reset_index(drop=True) + if len(out) > 0: + return out + except Exception as e: + errors.append(f"n={n_try}: {type(e).__name__}: {e}") + print("[ARF] forge failed after retries; last errors:", " | ".join(errors[-4:])) + return None + +n_target = int(1382) +c_csv = "/work/output-Benchmark-trainonly-v1/c2/arf/arf-c2-20260504_204810/staged/public/train.csv" +with open("/work/output-Benchmark-trainonly-v1/c2/arf/arf-c2-20260504_204810/arf_model.pkl", "rb") as f: + model = pickle.load(f) + +syn = _safe_forge(model, n_target) +if syn is None or len(syn) == 0: + if not c_csv: + raise RuntimeError("ARF forge failed and no train csv path for bootstrap fallback") + print(f"[ARF] Using train-bootstrap fallback (n={n_target})") + syn = _bootstrap_from_train(c_csv, n_target) +else: + if len(syn) > n_target: + syn = syn.iloc[:n_target] + elif len(syn) < n_target: + parts = [syn] + tries = 0 + while sum(len(p) for p in parts) < n_target and tries < 64: + tries += 1 + need = n_target - sum(len(p) for p in parts) + chunk = _safe_forge(model, max(need, 2)) + if chunk is None or len(chunk) == 0: + break + parts.append(chunk) + syn = pd.concat(parts, ignore_index=True).iloc[:n_target] + if len(syn) < n_target and c_csv: + add_n = n_target - len(syn) + add = _bootstrap_from_train(c_csv, add_n, seed=43) + syn = pd.concat([syn, add], ignore_index=True).iloc[:n_target] + +_ds_id = 'c2' +if _ds_id == "c19": + # 仅 c19:object 列内裸换行会使 pivot 用 csv.reader 统计到的「记录数」大于 DataFrame 行数 → Sw。 + for _col in syn.columns: + if syn[_col].dtype == object: + syn[_col] = ( + syn[_col] + .astype(str) + .str.replace("\r\n", " ", regex=False) + .str.replace("\n", " ", regex=False) + .str.replace("\r", " ", regex=False) + ) + syn = syn.iloc[:n_target].reset_index(drop=True) + +syn.to_csv("/work/output-Benchmark-trainonly-v1/c2/arf/arf-c2-20260504_204810/arf-c2-1382-20260504_204814.csv", index=False) +print(f"[ARF] Generated {len(syn)} rows (requested {n_target}) -> /work/output-Benchmark-trainonly-v1/c2/arf/arf-c2-20260504_204810/arf-c2-1382-20260504_204814.csv") diff --git a/hyperparameter/c2/arf/arf-c2-20260504_204810/_arf_train.py b/hyperparameter/c2/arf/arf-c2-20260504_204810/_arf_train.py new file mode 100644 index 0000000000000000000000000000000000000000..8cb9b1c88b81db923c29f6a9b688fdd76fdab42b --- /dev/null +++ b/hyperparameter/c2/arf/arf-c2-20260504_204810/_arf_train.py @@ -0,0 +1,47 @@ +import os +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 + q_low = float(os.environ.get("ARF_CLIP_QUANTILE_LOW", "0.001")) + q_high = float(os.environ.get("ARF_CLIP_QUANTILE_HIGH", "0.999")) + lo, hi = df[col].quantile(q_low), df[col].quantile(q_high) + if pd.notna(lo) and pd.notna(hi) and lo < hi: + df[col] = df[col].clip(lo, hi) + return df + +df = pd.read_csv("/work/output-Benchmark-trainonly-v1/c2/arf/arf-c2-20260504_204810/staged/public/train.csv") +df = _sanitize_for_arf(df) +num_trees = int(os.environ.get("ARF_NUM_TREES", "30")) +delta = float(os.environ.get("ARF_DELTA", "0")) +max_iters = int(os.environ.get("ARF_MAX_ITERS", "10")) +early_stop = (os.environ.get("ARF_EARLY_STOP", "true").strip().lower() in ("1", "true", "yes")) +verbose = (os.environ.get("ARF_VERBOSE", "true").strip().lower() in ("1", "true", "yes")) +min_node_size = int(os.environ.get("ARF_MIN_NODE_SIZE", "5")) +print(f"[ARF] Training on {len(df)} rows, {len(df.columns)} cols") +print(f"[ARF] Config num_trees={num_trees} delta={delta} max_iters={max_iters} early_stop={early_stop} min_node_size={min_node_size}") + +model = arf.arf(x=df, num_trees=num_trees, delta=delta, max_iters=max_iters, early_stop=early_stop, verbose=verbose, min_node_size=min_node_size) +if hasattr(model, "fit"): + model.fit() +elif hasattr(model, "forde"): + model.forde() +else: + raise RuntimeError("arfpy API: no fit() / forde()") + +with open("/work/output-Benchmark-trainonly-v1/c2/arf/arf-c2-20260504_204810/arf_model.pkl", "wb") as f: + pickle.dump(model, f) +print(f"[ARF] Model saved -> /work/output-Benchmark-trainonly-v1/c2/arf/arf-c2-20260504_204810/arf_model.pkl") diff --git a/hyperparameter/c2/arf/arf-c2-20260504_204810/arf-c2-1382-20260504_204814.csv b/hyperparameter/c2/arf/arf-c2-20260504_204810/arf-c2-1382-20260504_204814.csv new file mode 100644 index 0000000000000000000000000000000000000000..60f47e0175216e4e3ad824032f63bd51220667ea --- /dev/null +++ b/hyperparameter/c2/arf/arf-c2-20260504_204810/arf-c2-1382-20260504_204814.csv @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:32362e2f23866523d5f892582e5cc2b208df5d33725c0707ec379ea9b04a5c30 +size 41763 diff --git a/hyperparameter/c2/arf/arf-c2-20260504_204810/arf_model.pkl b/hyperparameter/c2/arf/arf-c2-20260504_204810/arf_model.pkl new file mode 100644 index 0000000000000000000000000000000000000000..426d767c3bc82efbf0da5805f7f855c7d5a0c1b2 --- /dev/null +++ b/hyperparameter/c2/arf/arf-c2-20260504_204810/arf_model.pkl @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:1659d887626798c3c856fa91f789ac96630081bb395eb91b42fc1ab00ca73c50 +size 1286384 diff --git a/hyperparameter/c2/arf/arf-c2-20260504_204810/gen_20260504_204814.log b/hyperparameter/c2/arf/arf-c2-20260504_204810/gen_20260504_204814.log new file mode 100644 index 0000000000000000000000000000000000000000..b00033e539eb930402363c76d3afb5d49897904d --- /dev/null +++ b/hyperparameter/c2/arf/arf-c2-20260504_204810/gen_20260504_204814.log @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:c5f59afe1f1e0abc5eb11ad94446e3d6db029e2104e0466ac23dbfc3606ac649 +size 2615 diff --git a/hyperparameter/c2/arf/arf-c2-20260504_204810/input_snapshot.json b/hyperparameter/c2/arf/arf-c2-20260504_204810/input_snapshot.json new file mode 100644 index 0000000000000000000000000000000000000000..5fa654607f22f68d2aaa5e57809017787b5eb02b --- /dev/null +++ b/hyperparameter/c2/arf/arf-c2-20260504_204810/input_snapshot.json @@ -0,0 +1,36 @@ +{ + "dataset_id": "c2", + "model": "arf", + "inputs": { + "train_csv": { + "path": "/data/jialinzhang/SynthesizePipeline-server/DatasetNew/c2/c2-train.csv", + "exists": true, + "size": 42948, + "sha256": "17bc560fa96bd00fb3b526e1e65bc91210b701d0d0a4e8bb9b4c5196cab56def" + }, + "val_csv": { + "path": "/data/jialinzhang/SynthesizePipeline-server/DatasetNew/c2/c2-val.csv", + "exists": true, + "size": 5349, + "sha256": "61e565eca62e65a7dccd9d51039a3170413379e10fc494e25870e7c4294863c9" + }, + "test_csv": { + "path": "/data/jialinzhang/SynthesizePipeline-server/DatasetNew/c2/c2-test.csv", + "exists": true, + "size": 5448, + "sha256": "cbcbb062a1faf5fa44b66c80532baa229e05b94fc42137269761e6c6d84af20a" + }, + "profile_json": { + "path": "/data/jialinzhang/SynthesizePipeline-server/DatasetNew/artifacts/data_core/tabular/c2/c2-dataset_profile.json", + "exists": true, + "size": 3240, + "sha256": "526b7163b2076c93c0bf4638438081ee8a6907065d5b608faa40d1a3dbc2a27b" + }, + "contract_json": { + "path": "/data/jialinzhang/SynthesizePipeline-server/DatasetNew/artifacts/data_core/tabular/c2/c2-dataset_contract_v1.json", + "exists": true, + "size": 3731, + "sha256": "fb595a876054c2ee9b4e10cfe83a5691588de1d25466cbb9d473c18ad3604009" + } + } +} \ No newline at end of file diff --git a/hyperparameter/c2/arf/arf-c2-20260504_204810/public_gate/normalized_schema_snapshot.json b/hyperparameter/c2/arf/arf-c2-20260504_204810/public_gate/normalized_schema_snapshot.json new file mode 100644 index 0000000000000000000000000000000000000000..689b1d00d96508e44ba40e58dc4560e19afc2b3b --- /dev/null +++ b/hyperparameter/c2/arf/arf-c2-20260504_204810/public_gate/normalized_schema_snapshot.json @@ -0,0 +1,144 @@ +{ + "dataset_id": "c2", + "target_column": "class", + "task_type": "classification", + "columns": [ + { + "name": "buying", + "role": "feature", + "semantic_type": "categorical", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 4, + "unique_ratio": 0.002894, + "example_values": [ + "vhigh", + "med", + "high", + "low" + ] + } + }, + { + "name": "maint", + "role": "feature", + "semantic_type": "categorical", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 4, + "unique_ratio": 0.002894, + "example_values": [ + "vhigh", + "low", + "med", + "high" + ] + } + }, + { + "name": "doors", + "role": "feature", + "semantic_type": "categorical", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 4, + "unique_ratio": 0.002894, + "example_values": [ + "2", + "5more", + "3", + "4" + ] + } + }, + { + "name": "persons", + "role": "feature", + "semantic_type": "categorical", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 3, + "unique_ratio": 0.002171, + "example_values": [ + "2", + "4", + "more" + ] + } + }, + { + "name": "lug_boot", + "role": "feature", + "semantic_type": "categorical", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 3, + "unique_ratio": 0.002171, + "example_values": [ + "small", + "big", + "med" + ] + } + }, + { + "name": "safety", + "role": "feature", + "semantic_type": "categorical", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 3, + "unique_ratio": 0.002171, + "example_values": [ + "low", + "high", + "med" + ] + } + }, + { + "name": "class", + "role": "target", + "semantic_type": "categorical", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 4, + "unique_ratio": 0.002894, + "example_values": [ + "unacc", + "good", + "acc", + "vgood" + ] + } + } + ] +} \ No newline at end of file diff --git a/hyperparameter/c2/arf/arf-c2-20260504_204810/public_gate/public_gate_report.json b/hyperparameter/c2/arf/arf-c2-20260504_204810/public_gate/public_gate_report.json new file mode 100644 index 0000000000000000000000000000000000000000..2e4cdcb2a4e28e40d59b17a83e773f622b7636a5 --- /dev/null +++ b/hyperparameter/c2/arf/arf-c2-20260504_204810/public_gate/public_gate_report.json @@ -0,0 +1,37 @@ +{ + "dataset_id": "c2", + "status": "pass", + "checks": [ + { + "check_id": "PG001_csv_parse_ok", + "status": "pass" + }, + { + "check_id": "PG002_split_header_consistent", + "status": "pass" + }, + { + "check_id": "PG003_profile_header_match", + "status": "pass" + }, + { + "check_id": "PG004_missing_token_normalized", + "status": "pass" + }, + { + "check_id": "PG005_semantic_type_validated", + "status": "pass" + }, + { + "check_id": "PG006_target_defined_and_valid", + "status": "pass" + } + ], + "target_column": "class", + "task_type": "classification", + "input_splits": { + "train": "/data/jialinzhang/SynthesizePipeline-server/DatasetNew/c2/c2-train.csv", + "val": "/data/jialinzhang/SynthesizePipeline-server/DatasetNew/c2/c2-val.csv", + "test": "/data/jialinzhang/SynthesizePipeline-server/DatasetNew/c2/c2-test.csv" + } +} \ No newline at end of file diff --git a/hyperparameter/c2/arf/arf-c2-20260504_204810/public_gate/staged_input_manifest.json b/hyperparameter/c2/arf/arf-c2-20260504_204810/public_gate/staged_input_manifest.json new file mode 100644 index 0000000000000000000000000000000000000000..ecaa5aa4653d4e92d32db7c36eaeb7849163a8d1 --- /dev/null +++ b/hyperparameter/c2/arf/arf-c2-20260504_204810/public_gate/staged_input_manifest.json @@ -0,0 +1,149 @@ +{ + "dataset_id": "c2", + "target_column": "class", + "task_type": "classification", + "train_csv": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/c2/arf/arf-c2-20260504_204810/staged/public/train.csv", + "val_csv": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/c2/arf/arf-c2-20260504_204810/staged/public/val.csv", + "test_csv": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/c2/arf/arf-c2-20260504_204810/staged/public/test.csv", + "features_json": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/c2/arf/arf-c2-20260504_204810/staged/public/staged_features.json", + "public_gate_report": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/c2/arf/arf-c2-20260504_204810/public_gate/public_gate_report.json", + "column_schema": [ + { + "name": "buying", + "role": "feature", + "semantic_type": "categorical", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 4, + "unique_ratio": 0.002894, + "example_values": [ + "vhigh", + "med", + "high", + "low" + ] + } + }, + { + "name": "maint", + "role": "feature", + "semantic_type": "categorical", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 4, + "unique_ratio": 0.002894, + "example_values": [ + "vhigh", + "low", + "med", + "high" + ] + } + }, + { + "name": "doors", + "role": "feature", + "semantic_type": "categorical", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 4, + "unique_ratio": 0.002894, + "example_values": [ + "2", + "5more", + "3", + "4" + ] + } + }, + { + "name": "persons", + "role": "feature", + "semantic_type": "categorical", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 3, + "unique_ratio": 0.002171, + "example_values": [ + "2", + "4", + "more" + ] + } + }, + { + "name": "lug_boot", + "role": "feature", + "semantic_type": "categorical", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 3, + "unique_ratio": 0.002171, + "example_values": [ + "small", + "big", + "med" + ] + } + }, + { + "name": "safety", + "role": "feature", + "semantic_type": "categorical", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 3, + "unique_ratio": 0.002171, + "example_values": [ + "low", + "high", + "med" + ] + } + }, + { + "name": "class", + "role": "target", + "semantic_type": "categorical", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 4, + "unique_ratio": 0.002894, + "example_values": [ + "unacc", + "good", + "acc", + "vgood" + ] + } + } + ] +} \ No newline at end of file diff --git a/hyperparameter/c2/arf/arf-c2-20260504_204810/run_config.json b/hyperparameter/c2/arf/arf-c2-20260504_204810/run_config.json new file mode 100644 index 0000000000000000000000000000000000000000..59ca1bc739967d5ee7e176e1dd8c532389c5c26a --- /dev/null +++ b/hyperparameter/c2/arf/arf-c2-20260504_204810/run_config.json @@ -0,0 +1,46 @@ +{ + "schema_version": 1, + "recorded_at": "2026-05-04T20:48:10", + "dataset_id": "c2", + "model": "arf", + "work_dir": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/c2/arf/arf-c2-20260504_204810", + "dataset_source_requested": "new", + "dataset_source_resolved": "new", + "cli_args": { + "model": "arf", + "dataset": "c2", + "dataset_source": "new", + "train": true, + "generate": true, + "num_rows": 0, + "epochs": null, + "output_dir": null, + "model_dir": null, + "work_dir": null, + "resume": false, + "no_stats": false + }, + "resolved": { + "num_rows": 1382, + "model_path": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/c2/arf/arf-c2-20260504_204810/arf_model.pkl", + "output_csv": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/c2/arf/arf-c2-20260504_204810/arf-c2-1382-20260504_204814.csv" + }, + "input_artifacts": { + "public_gate_report": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/c2/arf/arf-c2-20260504_204810/public_gate/public_gate_report.json", + "public_manifest": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/c2/arf/arf-c2-20260504_204810/public_gate/staged_input_manifest.json", + "model_manifest": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/c2/arf/arf-c2-20260504_204810/staged/arf/model_input_manifest.json", + "train_csv": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/c2/arf/arf-c2-20260504_204810/staged/public/train.csv", + "features_json": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/c2/arf/arf-c2-20260504_204810/staged/public/staged_features.json", + "target_column": "class", + "task_type": "classification" + }, + "env_overrides": { + "ARF_CLIP_QUANTILE_HIGH": "0.999", + "ARF_CLIP_QUANTILE_LOW": "0.001", + "ARF_DELTA": "0", + "ARF_EARLY_STOP": "true", + "ARF_MAX_ITERS": "5", + "ARF_MIN_NODE_SIZE": "7", + "ARF_NUM_TREES": "10" + } +} \ No newline at end of file diff --git a/hyperparameter/c2/arf/arf-c2-20260504_204810/runtime_result.json b/hyperparameter/c2/arf/arf-c2-20260504_204810/runtime_result.json new file mode 100644 index 0000000000000000000000000000000000000000..4680379eb54eb1ad522ffc575c18f7aeed0be860 --- /dev/null +++ b/hyperparameter/c2/arf/arf-c2-20260504_204810/runtime_result.json @@ -0,0 +1,27 @@ +{ + "dataset_id": "c2", + "model": "arf", + "run_id": "arf-c2-20260504_204810", + "public_gate_status": "pass", + "adapter_ready_status": "pass", + "train_status": "success", + "generate_status": "success", + "reason_code": null, + "reason_detail": null, + "artifacts": { + "synthetic_csv": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/c2/arf/arf-c2-20260504_204810/arf-c2-1382-20260504_204814.csv", + "model_path": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/c2/arf/arf-c2-20260504_204810/arf_model.pkl" + }, + "timings": { + "train": { + "started_at": "2026-05-04T20:48:10", + "ended_at": "2026-05-04T20:48:14", + "duration_sec": 4.906 + }, + "generate": { + "started_at": "2026-05-04T20:48:14", + "ended_at": "2026-05-04T20:48:17", + "duration_sec": 2.707 + } + } +} \ No newline at end of file diff --git a/hyperparameter/c2/arf/arf-c2-20260504_204810/staged/arf/adapter_report.json b/hyperparameter/c2/arf/arf-c2-20260504_204810/staged/arf/adapter_report.json new file mode 100644 index 0000000000000000000000000000000000000000..886bfe36972dd3c4933c38cc4f04fa07a61d5a50 --- /dev/null +++ b/hyperparameter/c2/arf/arf-c2-20260504_204810/staged/arf/adapter_report.json @@ -0,0 +1,7 @@ +{ + "adapter_ready_status": "pass", + "adapter_fail_reason_code": null, + "adapter_fail_detail": null, + "adapter_transforms_applied": [], + "model_input_manifest": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/c2/arf/arf-c2-20260504_204810/staged/arf/model_input_manifest.json" +} \ No newline at end of file diff --git a/hyperparameter/c2/arf/arf-c2-20260504_204810/staged/arf/adapter_transforms_applied.json b/hyperparameter/c2/arf/arf-c2-20260504_204810/staged/arf/adapter_transforms_applied.json new file mode 100644 index 0000000000000000000000000000000000000000..0637a088a01e8ddab3bf3fa98dbe804cbde1a0dc --- /dev/null +++ b/hyperparameter/c2/arf/arf-c2-20260504_204810/staged/arf/adapter_transforms_applied.json @@ -0,0 +1 @@ +[] \ No newline at end of file diff --git a/hyperparameter/c2/arf/arf-c2-20260504_204810/staged/arf/model_input_manifest.json b/hyperparameter/c2/arf/arf-c2-20260504_204810/staged/arf/model_input_manifest.json new file mode 100644 index 0000000000000000000000000000000000000000..bbeef142fa1706ccb71f4c16091d854caac05d32 --- /dev/null +++ b/hyperparameter/c2/arf/arf-c2-20260504_204810/staged/arf/model_input_manifest.json @@ -0,0 +1,151 @@ +{ + "dataset_id": "c2", + "model": "arf", + "target_column": "class", + "task_type": "classification", + "column_schema": [ + { + "name": "buying", + "role": "feature", + "semantic_type": "categorical", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 4, + "unique_ratio": 0.002894, + "example_values": [ + "vhigh", + "med", + "high", + "low" + ] + } + }, + { + "name": "maint", + "role": "feature", + "semantic_type": "categorical", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 4, + "unique_ratio": 0.002894, + "example_values": [ + "vhigh", + "low", + "med", + "high" + ] + } + }, + { + "name": "doors", + "role": "feature", + "semantic_type": "categorical", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 4, + "unique_ratio": 0.002894, + "example_values": [ + "2", + "5more", + "3", + "4" + ] + } + }, + { + "name": "persons", + "role": "feature", + "semantic_type": "categorical", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 3, + "unique_ratio": 0.002171, + "example_values": [ + "2", + "4", + "more" + ] + } + }, + { + "name": "lug_boot", + "role": "feature", + "semantic_type": "categorical", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 3, + "unique_ratio": 0.002171, + "example_values": [ + "small", + "big", + "med" + ] + } + }, + { + "name": "safety", + "role": "feature", + "semantic_type": "categorical", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 3, + "unique_ratio": 0.002171, + "example_values": [ + "low", + "high", + "med" + ] + } + }, + { + "name": "class", + "role": "target", + "semantic_type": "categorical", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 4, + "unique_ratio": 0.002894, + "example_values": [ + "unacc", + "good", + "acc", + "vgood" + ] + } + } + ], + "public_manifest": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/c2/arf/arf-c2-20260504_204810/public_gate/staged_input_manifest.json", + "train_csv": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/c2/arf/arf-c2-20260504_204810/staged/public/train.csv", + "val_csv": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/c2/arf/arf-c2-20260504_204810/staged/public/val.csv", + "test_csv": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/c2/arf/arf-c2-20260504_204810/staged/public/test.csv", + "features_json": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/c2/arf/arf-c2-20260504_204810/staged/public/staged_features.json", + "public_gate_report": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/c2/arf/arf-c2-20260504_204810/public_gate/public_gate_report.json" +} \ No newline at end of file diff --git a/hyperparameter/c2/arf/arf-c2-20260504_204810/staged/public/staged_features.json b/hyperparameter/c2/arf/arf-c2-20260504_204810/staged/public/staged_features.json new file mode 100644 index 0000000000000000000000000000000000000000..61783861dd5de501592f76acb0469cf3f3b2622a --- /dev/null +++ b/hyperparameter/c2/arf/arf-c2-20260504_204810/staged/public/staged_features.json @@ -0,0 +1,37 @@ +[ + { + "feature_name": "buying", + "data_type": "categorical", + "is_target": false + }, + { + "feature_name": "maint", + "data_type": "categorical", + "is_target": false + }, + { + "feature_name": "doors", + "data_type": "categorical", + "is_target": false + }, + { + "feature_name": "persons", + "data_type": "categorical", + "is_target": false + }, + { + "feature_name": "lug_boot", + "data_type": "categorical", + "is_target": false + }, + { + "feature_name": "safety", + "data_type": "categorical", + "is_target": false + }, + { + "feature_name": "class", + "data_type": "categorical", + "is_target": true + } +] \ No newline at end of file diff --git a/hyperparameter/c2/arf/arf-c2-20260504_204810/staged/public/test.csv b/hyperparameter/c2/arf/arf-c2-20260504_204810/staged/public/test.csv new file mode 100644 index 0000000000000000000000000000000000000000..392a0d7189a34d8f13ecf20a99d64b03230d517c --- /dev/null +++ b/hyperparameter/c2/arf/arf-c2-20260504_204810/staged/public/test.csv @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:b48114a7d0bc5bd9a07920f903c8d4aba8bf98bf2a66a050da03588b0245ca73 +size 5273 diff --git a/hyperparameter/c2/arf/arf-c2-20260504_204810/staged/public/train.csv b/hyperparameter/c2/arf/arf-c2-20260504_204810/staged/public/train.csv new file mode 100644 index 0000000000000000000000000000000000000000..da4f4d55134eebc0e51157d0d467536371db1484 --- /dev/null +++ b/hyperparameter/c2/arf/arf-c2-20260504_204810/staged/public/train.csv @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:4aed00c2c2b3f88a55a7ebff31b2e1b5e0e32fb0a7267e0b9d2779cd23e434dd +size 41565 diff --git a/hyperparameter/c2/arf/arf-c2-20260504_204810/staged/public/val.csv b/hyperparameter/c2/arf/arf-c2-20260504_204810/staged/public/val.csv new file mode 100644 index 0000000000000000000000000000000000000000..af8caf7ee42524188534a3daf32996dc491952d9 --- /dev/null +++ b/hyperparameter/c2/arf/arf-c2-20260504_204810/staged/public/val.csv @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:26e90c1170a57a14c05832ac88027722b1f3848f9662c7c09ef7c93dcba4cc01 +size 5176 diff --git a/hyperparameter/c2/arf/arf-c2-20260504_204810/train_20260504_204810.log b/hyperparameter/c2/arf/arf-c2-20260504_204810/train_20260504_204810.log new file mode 100644 index 0000000000000000000000000000000000000000..6dded3953a3177594319e004d256f2c35df6b2a0 --- /dev/null +++ b/hyperparameter/c2/arf/arf-c2-20260504_204810/train_20260504_204810.log @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:766114cb37dc6a845fe6f50743760528206e5f07dc8cbb7a67c5069424376baa +size 999 diff --git a/hyperparameter/c2/arf/arf-c2-20260504_204831/_arf_generate.py b/hyperparameter/c2/arf/arf-c2-20260504_204831/_arf_generate.py new file mode 100644 index 0000000000000000000000000000000000000000..f639ff6fc3e24ff0226d16d4b26804a3b2f0af5a --- /dev/null +++ b/hyperparameter/c2/arf/arf-c2-20260504_204831/_arf_generate.py @@ -0,0 +1,93 @@ +import pickle +import numpy as np +import pandas as pd + +def _bootstrap_from_train(c_csv: str, n_target: int, seed: int = 42) -> pd.DataFrame: + """当 arfpy.forge 完全不可用时,从训练 CSV 有放回抽样,保证行数与列对齐。""" + src = pd.read_csv(c_csv, encoding="utf-8-sig", low_memory=False) + src = src.replace([np.inf, -np.inf], np.nan).dropna(axis=1, how="all") + src = src.reset_index(drop=True) + if len(src) == 0: + raise RuntimeError("ARF fallback: train CSV is empty") + return src.sample(n=n_target, replace=True, random_state=seed).reset_index(drop=True) + +def _safe_forge(model, n_target: int): + # arfpy 在部分分布上会 ZeroDivisionError;n=1 在部分版本会触发 + # AttributeError(不要用 n=1)。失败返回 None,由外层走 bootstrap。 + errors = [] + candidates = [] + for n_try in ( + n_target, + min(n_target, 8192), + min(n_target, 4096), + min(n_target, 2048), + min(n_target, 1024), + min(n_target, 512), + 256, + 128, + 64, + 32, + 16, + 8, + 2, + ): + nn = int(n_try) + if nn <= 0 or nn in candidates: + continue + candidates.append(nn) + for n_try in candidates: + try: + out = model.forge(n=n_try).reset_index(drop=True) + if len(out) > 0: + return out + except Exception as e: + errors.append(f"n={n_try}: {type(e).__name__}: {e}") + print("[ARF] forge failed after retries; last errors:", " | ".join(errors[-4:])) + return None + +n_target = int(1382) +c_csv = "/work/output-Benchmark-trainonly-v1/c2/arf/arf-c2-20260504_204831/staged/public/train.csv" +with open("/work/output-Benchmark-trainonly-v1/c2/arf/arf-c2-20260504_204831/arf_model.pkl", "rb") as f: + model = pickle.load(f) + +syn = _safe_forge(model, n_target) +if syn is None or len(syn) == 0: + if not c_csv: + raise RuntimeError("ARF forge failed and no train csv path for bootstrap fallback") + print(f"[ARF] Using train-bootstrap fallback (n={n_target})") + syn = _bootstrap_from_train(c_csv, n_target) +else: + if len(syn) > n_target: + syn = syn.iloc[:n_target] + elif len(syn) < n_target: + parts = [syn] + tries = 0 + while sum(len(p) for p in parts) < n_target and tries < 64: + tries += 1 + need = n_target - sum(len(p) for p in parts) + chunk = _safe_forge(model, max(need, 2)) + if chunk is None or len(chunk) == 0: + break + parts.append(chunk) + syn = pd.concat(parts, ignore_index=True).iloc[:n_target] + if len(syn) < n_target and c_csv: + add_n = n_target - len(syn) + add = _bootstrap_from_train(c_csv, add_n, seed=43) + syn = pd.concat([syn, add], ignore_index=True).iloc[:n_target] + +_ds_id = 'c2' +if _ds_id == "c19": + # 仅 c19:object 列内裸换行会使 pivot 用 csv.reader 统计到的「记录数」大于 DataFrame 行数 → Sw。 + for _col in syn.columns: + if syn[_col].dtype == object: + syn[_col] = ( + syn[_col] + .astype(str) + .str.replace("\r\n", " ", regex=False) + .str.replace("\n", " ", regex=False) + .str.replace("\r", " ", regex=False) + ) + syn = syn.iloc[:n_target].reset_index(drop=True) + +syn.to_csv("/work/output-Benchmark-trainonly-v1/c2/arf/arf-c2-20260504_204831/arf-c2-1382-20260504_204837.csv", index=False) +print(f"[ARF] Generated {len(syn)} rows (requested {n_target}) -> /work/output-Benchmark-trainonly-v1/c2/arf/arf-c2-20260504_204831/arf-c2-1382-20260504_204837.csv") diff --git a/hyperparameter/c2/arf/arf-c2-20260504_204831/_arf_train.py b/hyperparameter/c2/arf/arf-c2-20260504_204831/_arf_train.py new file mode 100644 index 0000000000000000000000000000000000000000..cb50404482383904cf87ee0a048c9f07a4efaf6e --- /dev/null +++ b/hyperparameter/c2/arf/arf-c2-20260504_204831/_arf_train.py @@ -0,0 +1,47 @@ +import os +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 + q_low = float(os.environ.get("ARF_CLIP_QUANTILE_LOW", "0.001")) + q_high = float(os.environ.get("ARF_CLIP_QUANTILE_HIGH", "0.999")) + lo, hi = df[col].quantile(q_low), df[col].quantile(q_high) + if pd.notna(lo) and pd.notna(hi) and lo < hi: + df[col] = df[col].clip(lo, hi) + return df + +df = pd.read_csv("/work/output-Benchmark-trainonly-v1/c2/arf/arf-c2-20260504_204831/staged/public/train.csv") +df = _sanitize_for_arf(df) +num_trees = int(os.environ.get("ARF_NUM_TREES", "30")) +delta = float(os.environ.get("ARF_DELTA", "0")) +max_iters = int(os.environ.get("ARF_MAX_ITERS", "10")) +early_stop = (os.environ.get("ARF_EARLY_STOP", "true").strip().lower() in ("1", "true", "yes")) +verbose = (os.environ.get("ARF_VERBOSE", "true").strip().lower() in ("1", "true", "yes")) +min_node_size = int(os.environ.get("ARF_MIN_NODE_SIZE", "5")) +print(f"[ARF] Training on {len(df)} rows, {len(df.columns)} cols") +print(f"[ARF] Config num_trees={num_trees} delta={delta} max_iters={max_iters} early_stop={early_stop} min_node_size={min_node_size}") + +model = arf.arf(x=df, num_trees=num_trees, delta=delta, max_iters=max_iters, early_stop=early_stop, verbose=verbose, min_node_size=min_node_size) +if hasattr(model, "fit"): + model.fit() +elif hasattr(model, "forde"): + model.forde() +else: + raise RuntimeError("arfpy API: no fit() / forde()") + +with open("/work/output-Benchmark-trainonly-v1/c2/arf/arf-c2-20260504_204831/arf_model.pkl", "wb") as f: + pickle.dump(model, f) +print(f"[ARF] Model saved -> /work/output-Benchmark-trainonly-v1/c2/arf/arf-c2-20260504_204831/arf_model.pkl") diff --git a/hyperparameter/c2/arf/arf-c2-20260504_204831/arf-c2-1382-20260504_204837.csv b/hyperparameter/c2/arf/arf-c2-20260504_204831/arf-c2-1382-20260504_204837.csv new file mode 100644 index 0000000000000000000000000000000000000000..e77641c6b103c0365f928e98eb6a70484e910091 --- /dev/null +++ b/hyperparameter/c2/arf/arf-c2-20260504_204831/arf-c2-1382-20260504_204837.csv @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:220d45777265ecddbcf2c8d2a46cc14c2a8062fd66ccb2e1f47165c8825787e4 +size 41587 diff --git a/hyperparameter/c2/arf/arf-c2-20260504_204831/arf_model.pkl b/hyperparameter/c2/arf/arf-c2-20260504_204831/arf_model.pkl new file mode 100644 index 0000000000000000000000000000000000000000..98aff088d97f4f694dbed51e0358692ac13a080c --- /dev/null +++ b/hyperparameter/c2/arf/arf-c2-20260504_204831/arf_model.pkl @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:31491a21e917fb29cead65a033642886ad50b01a3a901ea0d1e811c2874bce8d +size 5074463 diff --git a/hyperparameter/c2/arf/arf-c2-20260504_204831/gen_20260504_204837.log b/hyperparameter/c2/arf/arf-c2-20260504_204831/gen_20260504_204837.log new file mode 100644 index 0000000000000000000000000000000000000000..912b8ce01ec97ab5eb16166c9af433fba113406f --- /dev/null +++ b/hyperparameter/c2/arf/arf-c2-20260504_204831/gen_20260504_204837.log @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:abf47bcac1aa8a34b442950b08f11ab7c8cd88b0d6d41c69448c1b3002858b29 +size 2615 diff --git a/hyperparameter/c2/arf/arf-c2-20260504_204831/input_snapshot.json b/hyperparameter/c2/arf/arf-c2-20260504_204831/input_snapshot.json new file mode 100644 index 0000000000000000000000000000000000000000..5fa654607f22f68d2aaa5e57809017787b5eb02b --- /dev/null +++ b/hyperparameter/c2/arf/arf-c2-20260504_204831/input_snapshot.json @@ -0,0 +1,36 @@ +{ + "dataset_id": "c2", + "model": "arf", + "inputs": { + "train_csv": { + "path": "/data/jialinzhang/SynthesizePipeline-server/DatasetNew/c2/c2-train.csv", + "exists": true, + "size": 42948, + "sha256": "17bc560fa96bd00fb3b526e1e65bc91210b701d0d0a4e8bb9b4c5196cab56def" + }, + "val_csv": { + "path": "/data/jialinzhang/SynthesizePipeline-server/DatasetNew/c2/c2-val.csv", + "exists": true, + "size": 5349, + "sha256": "61e565eca62e65a7dccd9d51039a3170413379e10fc494e25870e7c4294863c9" + }, + "test_csv": { + "path": "/data/jialinzhang/SynthesizePipeline-server/DatasetNew/c2/c2-test.csv", + "exists": true, + "size": 5448, + "sha256": "cbcbb062a1faf5fa44b66c80532baa229e05b94fc42137269761e6c6d84af20a" + }, + "profile_json": { + "path": "/data/jialinzhang/SynthesizePipeline-server/DatasetNew/artifacts/data_core/tabular/c2/c2-dataset_profile.json", + "exists": true, + "size": 3240, + "sha256": "526b7163b2076c93c0bf4638438081ee8a6907065d5b608faa40d1a3dbc2a27b" + }, + "contract_json": { + "path": "/data/jialinzhang/SynthesizePipeline-server/DatasetNew/artifacts/data_core/tabular/c2/c2-dataset_contract_v1.json", + "exists": true, + "size": 3731, + "sha256": "fb595a876054c2ee9b4e10cfe83a5691588de1d25466cbb9d473c18ad3604009" + } + } +} \ No newline at end of file diff --git a/hyperparameter/c2/arf/arf-c2-20260504_204831/public_gate/normalized_schema_snapshot.json b/hyperparameter/c2/arf/arf-c2-20260504_204831/public_gate/normalized_schema_snapshot.json new file mode 100644 index 0000000000000000000000000000000000000000..689b1d00d96508e44ba40e58dc4560e19afc2b3b --- /dev/null +++ b/hyperparameter/c2/arf/arf-c2-20260504_204831/public_gate/normalized_schema_snapshot.json @@ -0,0 +1,144 @@ +{ + "dataset_id": "c2", + "target_column": "class", + "task_type": "classification", + "columns": [ + { + "name": "buying", + "role": "feature", + "semantic_type": "categorical", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 4, + "unique_ratio": 0.002894, + "example_values": [ + "vhigh", + "med", + "high", + "low" + ] + } + }, + { + "name": "maint", + "role": "feature", + "semantic_type": "categorical", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 4, + "unique_ratio": 0.002894, + "example_values": [ + "vhigh", + "low", + "med", + "high" + ] + } + }, + { + "name": "doors", + "role": "feature", + "semantic_type": "categorical", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 4, + "unique_ratio": 0.002894, + "example_values": [ + "2", + "5more", + "3", + "4" + ] + } + }, + { + "name": "persons", + "role": "feature", + "semantic_type": "categorical", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 3, + "unique_ratio": 0.002171, + "example_values": [ + "2", + "4", + "more" + ] + } + }, + { + "name": "lug_boot", + "role": "feature", + "semantic_type": "categorical", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 3, + "unique_ratio": 0.002171, + "example_values": [ + "small", + "big", + "med" + ] + } + }, + { + "name": "safety", + "role": "feature", + "semantic_type": "categorical", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 3, + "unique_ratio": 0.002171, + "example_values": [ + "low", + "high", + "med" + ] + } + }, + { + "name": "class", + "role": "target", + "semantic_type": "categorical", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 4, + "unique_ratio": 0.002894, + "example_values": [ + "unacc", + "good", + "acc", + "vgood" + ] + } + } + ] +} \ No newline at end of file diff --git a/hyperparameter/c2/arf/arf-c2-20260504_204831/public_gate/public_gate_report.json b/hyperparameter/c2/arf/arf-c2-20260504_204831/public_gate/public_gate_report.json new file mode 100644 index 0000000000000000000000000000000000000000..2e4cdcb2a4e28e40d59b17a83e773f622b7636a5 --- /dev/null +++ b/hyperparameter/c2/arf/arf-c2-20260504_204831/public_gate/public_gate_report.json @@ -0,0 +1,37 @@ +{ + "dataset_id": "c2", + "status": "pass", + "checks": [ + { + "check_id": "PG001_csv_parse_ok", + "status": "pass" + }, + { + "check_id": "PG002_split_header_consistent", + "status": "pass" + }, + { + "check_id": "PG003_profile_header_match", + "status": "pass" + }, + { + "check_id": "PG004_missing_token_normalized", + "status": "pass" + }, + { + "check_id": "PG005_semantic_type_validated", + "status": "pass" + }, + { + "check_id": "PG006_target_defined_and_valid", + "status": "pass" + } + ], + "target_column": "class", + "task_type": "classification", + "input_splits": { + "train": "/data/jialinzhang/SynthesizePipeline-server/DatasetNew/c2/c2-train.csv", + "val": "/data/jialinzhang/SynthesizePipeline-server/DatasetNew/c2/c2-val.csv", + "test": "/data/jialinzhang/SynthesizePipeline-server/DatasetNew/c2/c2-test.csv" + } +} \ No newline at end of file diff --git a/hyperparameter/c2/arf/arf-c2-20260504_204831/public_gate/staged_input_manifest.json b/hyperparameter/c2/arf/arf-c2-20260504_204831/public_gate/staged_input_manifest.json new file mode 100644 index 0000000000000000000000000000000000000000..bd6771b885bda1cdd14f3bb9894f6c7725d910ef --- /dev/null +++ b/hyperparameter/c2/arf/arf-c2-20260504_204831/public_gate/staged_input_manifest.json @@ -0,0 +1,149 @@ +{ + "dataset_id": "c2", + "target_column": "class", + "task_type": "classification", + "train_csv": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/c2/arf/arf-c2-20260504_204831/staged/public/train.csv", + "val_csv": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/c2/arf/arf-c2-20260504_204831/staged/public/val.csv", + "test_csv": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/c2/arf/arf-c2-20260504_204831/staged/public/test.csv", + "features_json": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/c2/arf/arf-c2-20260504_204831/staged/public/staged_features.json", + "public_gate_report": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/c2/arf/arf-c2-20260504_204831/public_gate/public_gate_report.json", + "column_schema": [ + { + "name": "buying", + "role": "feature", + "semantic_type": "categorical", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 4, + "unique_ratio": 0.002894, + "example_values": [ + "vhigh", + "med", + "high", + "low" + ] + } + }, + { + "name": "maint", + "role": "feature", + "semantic_type": "categorical", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 4, + "unique_ratio": 0.002894, + "example_values": [ + "vhigh", + "low", + "med", + "high" + ] + } + }, + { + "name": "doors", + "role": "feature", + "semantic_type": "categorical", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 4, + "unique_ratio": 0.002894, + "example_values": [ + "2", + "5more", + "3", + "4" + ] + } + }, + { + "name": "persons", + "role": "feature", + "semantic_type": "categorical", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 3, + "unique_ratio": 0.002171, + "example_values": [ + "2", + "4", + "more" + ] + } + }, + { + "name": "lug_boot", + "role": "feature", + "semantic_type": "categorical", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 3, + "unique_ratio": 0.002171, + "example_values": [ + "small", + "big", + "med" + ] + } + }, + { + "name": "safety", + "role": "feature", + "semantic_type": "categorical", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 3, + "unique_ratio": 0.002171, + "example_values": [ + "low", + "high", + "med" + ] + } + }, + { + "name": "class", + "role": "target", + "semantic_type": "categorical", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 4, + "unique_ratio": 0.002894, + "example_values": [ + "unacc", + "good", + "acc", + "vgood" + ] + } + } + ] +} \ No newline at end of file diff --git a/hyperparameter/c2/arf/arf-c2-20260504_204831/run_config.json b/hyperparameter/c2/arf/arf-c2-20260504_204831/run_config.json new file mode 100644 index 0000000000000000000000000000000000000000..b20308e1f741b98ab1db3f51704b6793133e58a7 --- /dev/null +++ b/hyperparameter/c2/arf/arf-c2-20260504_204831/run_config.json @@ -0,0 +1,46 @@ +{ + "schema_version": 1, + "recorded_at": "2026-05-04T20:48:31", + "dataset_id": "c2", + "model": "arf", + "work_dir": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/c2/arf/arf-c2-20260504_204831", + "dataset_source_requested": "new", + "dataset_source_resolved": "new", + "cli_args": { + "model": "arf", + "dataset": "c2", + "dataset_source": "new", + "train": true, + "generate": true, + "num_rows": 0, + "epochs": null, + "output_dir": null, + "model_dir": null, + "work_dir": null, + "resume": false, + "no_stats": false + }, + "resolved": { + "num_rows": 1382, + "model_path": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/c2/arf/arf-c2-20260504_204831/arf_model.pkl", + "output_csv": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/c2/arf/arf-c2-20260504_204831/arf-c2-1382-20260504_204837.csv" + }, + "input_artifacts": { + "public_gate_report": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/c2/arf/arf-c2-20260504_204831/public_gate/public_gate_report.json", + "public_manifest": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/c2/arf/arf-c2-20260504_204831/public_gate/staged_input_manifest.json", + "model_manifest": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/c2/arf/arf-c2-20260504_204831/staged/arf/model_input_manifest.json", + "train_csv": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/c2/arf/arf-c2-20260504_204831/staged/public/train.csv", + "features_json": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/c2/arf/arf-c2-20260504_204831/staged/public/staged_features.json", + "target_column": "class", + "task_type": "classification" + }, + "env_overrides": { + "ARF_CLIP_QUANTILE_HIGH": "0.999", + "ARF_CLIP_QUANTILE_LOW": "0.001", + "ARF_DELTA": "0", + "ARF_EARLY_STOP": "true", + "ARF_MAX_ITERS": "10", + "ARF_MIN_NODE_SIZE": "5", + "ARF_NUM_TREES": "30" + } +} \ No newline at end of file diff --git a/hyperparameter/c2/arf/arf-c2-20260504_204831/runtime_result.json b/hyperparameter/c2/arf/arf-c2-20260504_204831/runtime_result.json new file mode 100644 index 0000000000000000000000000000000000000000..051969947f2559447138f78dd956f8bf86202663 --- /dev/null +++ b/hyperparameter/c2/arf/arf-c2-20260504_204831/runtime_result.json @@ -0,0 +1,27 @@ +{ + "dataset_id": "c2", + "model": "arf", + "run_id": "arf-c2-20260504_204831", + "public_gate_status": "pass", + "adapter_ready_status": "pass", + "train_status": "success", + "generate_status": "success", + "reason_code": null, + "reason_detail": null, + "artifacts": { + "synthetic_csv": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/c2/arf/arf-c2-20260504_204831/arf-c2-1382-20260504_204837.csv", + "model_path": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/c2/arf/arf-c2-20260504_204831/arf_model.pkl" + }, + "timings": { + "train": { + "started_at": "2026-05-04T20:48:31", + "ended_at": "2026-05-04T20:48:37", + "duration_sec": 6.228 + }, + "generate": { + "started_at": "2026-05-04T20:48:37", + "ended_at": "2026-05-04T20:48:40", + "duration_sec": 2.878 + } + } +} \ No newline at end of file diff --git a/hyperparameter/c2/arf/arf-c2-20260504_204831/staged/arf/adapter_report.json b/hyperparameter/c2/arf/arf-c2-20260504_204831/staged/arf/adapter_report.json new file mode 100644 index 0000000000000000000000000000000000000000..0739fc36c25d95c12bba028b277819ca523d8b6f --- /dev/null +++ b/hyperparameter/c2/arf/arf-c2-20260504_204831/staged/arf/adapter_report.json @@ -0,0 +1,7 @@ +{ + "adapter_ready_status": "pass", + "adapter_fail_reason_code": null, + "adapter_fail_detail": null, + "adapter_transforms_applied": [], + "model_input_manifest": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/c2/arf/arf-c2-20260504_204831/staged/arf/model_input_manifest.json" +} \ No newline at end of file diff --git a/hyperparameter/c2/arf/arf-c2-20260504_204831/staged/arf/adapter_transforms_applied.json b/hyperparameter/c2/arf/arf-c2-20260504_204831/staged/arf/adapter_transforms_applied.json new file mode 100644 index 0000000000000000000000000000000000000000..0637a088a01e8ddab3bf3fa98dbe804cbde1a0dc --- /dev/null +++ b/hyperparameter/c2/arf/arf-c2-20260504_204831/staged/arf/adapter_transforms_applied.json @@ -0,0 +1 @@ +[] \ No newline at end of file diff --git a/hyperparameter/c2/arf/arf-c2-20260504_204831/staged/arf/model_input_manifest.json b/hyperparameter/c2/arf/arf-c2-20260504_204831/staged/arf/model_input_manifest.json new file mode 100644 index 0000000000000000000000000000000000000000..72afbe2876cc447794ef09805366ab3396a47f40 --- /dev/null +++ b/hyperparameter/c2/arf/arf-c2-20260504_204831/staged/arf/model_input_manifest.json @@ -0,0 +1,151 @@ +{ + "dataset_id": "c2", + "model": "arf", + "target_column": "class", + "task_type": "classification", + "column_schema": [ + { + "name": "buying", + "role": "feature", + "semantic_type": "categorical", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 4, + "unique_ratio": 0.002894, + "example_values": [ + "vhigh", + "med", + "high", + "low" + ] + } + }, + { + "name": "maint", + "role": "feature", + "semantic_type": "categorical", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 4, + "unique_ratio": 0.002894, + "example_values": [ + "vhigh", + "low", + "med", + "high" + ] + } + }, + { + "name": "doors", + "role": "feature", + "semantic_type": "categorical", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 4, + "unique_ratio": 0.002894, + "example_values": [ + "2", + "5more", + "3", + "4" + ] + } + }, + { + "name": "persons", + "role": "feature", + "semantic_type": "categorical", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 3, + "unique_ratio": 0.002171, + "example_values": [ + "2", + "4", + "more" + ] + } + }, + { + "name": "lug_boot", + "role": "feature", + "semantic_type": "categorical", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 3, + "unique_ratio": 0.002171, + "example_values": [ + "small", + "big", + "med" + ] + } + }, + { + "name": "safety", + "role": "feature", + "semantic_type": "categorical", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 3, + "unique_ratio": 0.002171, + "example_values": [ + "low", + "high", + "med" + ] + } + }, + { + "name": "class", + "role": "target", + "semantic_type": "categorical", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 4, + "unique_ratio": 0.002894, + "example_values": [ + "unacc", + "good", + "acc", + "vgood" + ] + } + } + ], + "public_manifest": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/c2/arf/arf-c2-20260504_204831/public_gate/staged_input_manifest.json", + "train_csv": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/c2/arf/arf-c2-20260504_204831/staged/public/train.csv", + "val_csv": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/c2/arf/arf-c2-20260504_204831/staged/public/val.csv", + "test_csv": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/c2/arf/arf-c2-20260504_204831/staged/public/test.csv", + "features_json": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/c2/arf/arf-c2-20260504_204831/staged/public/staged_features.json", + "public_gate_report": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/c2/arf/arf-c2-20260504_204831/public_gate/public_gate_report.json" +} \ No newline at end of file diff --git a/hyperparameter/c2/arf/arf-c2-20260504_204831/staged/public/staged_features.json b/hyperparameter/c2/arf/arf-c2-20260504_204831/staged/public/staged_features.json new file mode 100644 index 0000000000000000000000000000000000000000..61783861dd5de501592f76acb0469cf3f3b2622a --- /dev/null +++ b/hyperparameter/c2/arf/arf-c2-20260504_204831/staged/public/staged_features.json @@ -0,0 +1,37 @@ +[ + { + "feature_name": "buying", + "data_type": "categorical", + "is_target": false + }, + { + "feature_name": "maint", + "data_type": "categorical", + "is_target": false + }, + { + "feature_name": "doors", + "data_type": "categorical", + "is_target": false + }, + { + "feature_name": "persons", + "data_type": "categorical", + "is_target": false + }, + { + "feature_name": "lug_boot", + "data_type": "categorical", + "is_target": false + }, + { + "feature_name": "safety", + "data_type": "categorical", + "is_target": false + }, + { + "feature_name": "class", + "data_type": "categorical", + "is_target": true + } +] \ No newline at end of file diff --git a/hyperparameter/c2/arf/arf-c2-20260504_204831/staged/public/test.csv b/hyperparameter/c2/arf/arf-c2-20260504_204831/staged/public/test.csv new file mode 100644 index 0000000000000000000000000000000000000000..392a0d7189a34d8f13ecf20a99d64b03230d517c --- /dev/null +++ b/hyperparameter/c2/arf/arf-c2-20260504_204831/staged/public/test.csv @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:b48114a7d0bc5bd9a07920f903c8d4aba8bf98bf2a66a050da03588b0245ca73 +size 5273 diff --git a/hyperparameter/c2/arf/arf-c2-20260504_204831/staged/public/train.csv b/hyperparameter/c2/arf/arf-c2-20260504_204831/staged/public/train.csv new file mode 100644 index 0000000000000000000000000000000000000000..da4f4d55134eebc0e51157d0d467536371db1484 --- /dev/null +++ b/hyperparameter/c2/arf/arf-c2-20260504_204831/staged/public/train.csv @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:4aed00c2c2b3f88a55a7ebff31b2e1b5e0e32fb0a7267e0b9d2779cd23e434dd +size 41565 diff --git a/hyperparameter/c2/arf/arf-c2-20260504_204831/staged/public/val.csv b/hyperparameter/c2/arf/arf-c2-20260504_204831/staged/public/val.csv new file mode 100644 index 0000000000000000000000000000000000000000..af8caf7ee42524188534a3daf32996dc491952d9 --- /dev/null +++ b/hyperparameter/c2/arf/arf-c2-20260504_204831/staged/public/val.csv @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:26e90c1170a57a14c05832ac88027722b1f3848f9662c7c09ef7c93dcba4cc01 +size 5176 diff --git a/hyperparameter/c2/arf/arf-c2-20260504_204831/train_20260504_204831.log b/hyperparameter/c2/arf/arf-c2-20260504_204831/train_20260504_204831.log new file mode 100644 index 0000000000000000000000000000000000000000..1f14caa0a0179e22ad764dfc2d463d59199030ed --- /dev/null +++ b/hyperparameter/c2/arf/arf-c2-20260504_204831/train_20260504_204831.log @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:c297a442dff9e3ba6fbe2fd66ad3382fa16b477ba1b181b3feb15018d4e437d5 +size 575 diff --git a/hyperparameter/c2/arf/arf-c2-20260504_204853/_arf_generate.py b/hyperparameter/c2/arf/arf-c2-20260504_204853/_arf_generate.py new file mode 100644 index 0000000000000000000000000000000000000000..32a1b1b29d37240c432037a30e4b9945652ff091 --- /dev/null +++ b/hyperparameter/c2/arf/arf-c2-20260504_204853/_arf_generate.py @@ -0,0 +1,93 @@ +import pickle +import numpy as np +import pandas as pd + +def _bootstrap_from_train(c_csv: str, n_target: int, seed: int = 42) -> pd.DataFrame: + """当 arfpy.forge 完全不可用时,从训练 CSV 有放回抽样,保证行数与列对齐。""" + src = pd.read_csv(c_csv, encoding="utf-8-sig", low_memory=False) + src = src.replace([np.inf, -np.inf], np.nan).dropna(axis=1, how="all") + src = src.reset_index(drop=True) + if len(src) == 0: + raise RuntimeError("ARF fallback: train CSV is empty") + return src.sample(n=n_target, replace=True, random_state=seed).reset_index(drop=True) + +def _safe_forge(model, n_target: int): + # arfpy 在部分分布上会 ZeroDivisionError;n=1 在部分版本会触发 + # AttributeError(不要用 n=1)。失败返回 None,由外层走 bootstrap。 + errors = [] + candidates = [] + for n_try in ( + n_target, + min(n_target, 8192), + min(n_target, 4096), + min(n_target, 2048), + min(n_target, 1024), + min(n_target, 512), + 256, + 128, + 64, + 32, + 16, + 8, + 2, + ): + nn = int(n_try) + if nn <= 0 or nn in candidates: + continue + candidates.append(nn) + for n_try in candidates: + try: + out = model.forge(n=n_try).reset_index(drop=True) + if len(out) > 0: + return out + except Exception as e: + errors.append(f"n={n_try}: {type(e).__name__}: {e}") + print("[ARF] forge failed after retries; last errors:", " | ".join(errors[-4:])) + return None + +n_target = int(1382) +c_csv = "/work/output-Benchmark-trainonly-v1/c2/arf/arf-c2-20260504_204853/staged/public/train.csv" +with open("/work/output-Benchmark-trainonly-v1/c2/arf/arf-c2-20260504_204853/arf_model.pkl", "rb") as f: + model = pickle.load(f) + +syn = _safe_forge(model, n_target) +if syn is None or len(syn) == 0: + if not c_csv: + raise RuntimeError("ARF forge failed and no train csv path for bootstrap fallback") + print(f"[ARF] Using train-bootstrap fallback (n={n_target})") + syn = _bootstrap_from_train(c_csv, n_target) +else: + if len(syn) > n_target: + syn = syn.iloc[:n_target] + elif len(syn) < n_target: + parts = [syn] + tries = 0 + while sum(len(p) for p in parts) < n_target and tries < 64: + tries += 1 + need = n_target - sum(len(p) for p in parts) + chunk = _safe_forge(model, max(need, 2)) + if chunk is None or len(chunk) == 0: + break + parts.append(chunk) + syn = pd.concat(parts, ignore_index=True).iloc[:n_target] + if len(syn) < n_target and c_csv: + add_n = n_target - len(syn) + add = _bootstrap_from_train(c_csv, add_n, seed=43) + syn = pd.concat([syn, add], ignore_index=True).iloc[:n_target] + +_ds_id = 'c2' +if _ds_id == "c19": + # 仅 c19:object 列内裸换行会使 pivot 用 csv.reader 统计到的「记录数」大于 DataFrame 行数 → Sw。 + for _col in syn.columns: + if syn[_col].dtype == object: + syn[_col] = ( + syn[_col] + .astype(str) + .str.replace("\r\n", " ", regex=False) + .str.replace("\n", " ", regex=False) + .str.replace("\r", " ", regex=False) + ) + syn = syn.iloc[:n_target].reset_index(drop=True) + +syn.to_csv("/work/output-Benchmark-trainonly-v1/c2/arf/arf-c2-20260504_204853/arf-c2-1382-20260504_204902.csv", index=False) +print(f"[ARF] Generated {len(syn)} rows (requested {n_target}) -> /work/output-Benchmark-trainonly-v1/c2/arf/arf-c2-20260504_204853/arf-c2-1382-20260504_204902.csv") diff --git a/hyperparameter/c2/arf/arf-c2-20260504_204853/_arf_train.py b/hyperparameter/c2/arf/arf-c2-20260504_204853/_arf_train.py new file mode 100644 index 0000000000000000000000000000000000000000..7cd1a3dbfb486cac41e24b53f0a079a00eb617e2 --- /dev/null +++ b/hyperparameter/c2/arf/arf-c2-20260504_204853/_arf_train.py @@ -0,0 +1,47 @@ +import os +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 + q_low = float(os.environ.get("ARF_CLIP_QUANTILE_LOW", "0.001")) + q_high = float(os.environ.get("ARF_CLIP_QUANTILE_HIGH", "0.999")) + lo, hi = df[col].quantile(q_low), df[col].quantile(q_high) + if pd.notna(lo) and pd.notna(hi) and lo < hi: + df[col] = df[col].clip(lo, hi) + return df + +df = pd.read_csv("/work/output-Benchmark-trainonly-v1/c2/arf/arf-c2-20260504_204853/staged/public/train.csv") +df = _sanitize_for_arf(df) +num_trees = int(os.environ.get("ARF_NUM_TREES", "30")) +delta = float(os.environ.get("ARF_DELTA", "0")) +max_iters = int(os.environ.get("ARF_MAX_ITERS", "10")) +early_stop = (os.environ.get("ARF_EARLY_STOP", "true").strip().lower() in ("1", "true", "yes")) +verbose = (os.environ.get("ARF_VERBOSE", "true").strip().lower() in ("1", "true", "yes")) +min_node_size = int(os.environ.get("ARF_MIN_NODE_SIZE", "5")) +print(f"[ARF] Training on {len(df)} rows, {len(df.columns)} cols") +print(f"[ARF] Config num_trees={num_trees} delta={delta} max_iters={max_iters} early_stop={early_stop} min_node_size={min_node_size}") + +model = arf.arf(x=df, num_trees=num_trees, delta=delta, max_iters=max_iters, early_stop=early_stop, verbose=verbose, min_node_size=min_node_size) +if hasattr(model, "fit"): + model.fit() +elif hasattr(model, "forde"): + model.forde() +else: + raise RuntimeError("arfpy API: no fit() / forde()") + +with open("/work/output-Benchmark-trainonly-v1/c2/arf/arf-c2-20260504_204853/arf_model.pkl", "wb") as f: + pickle.dump(model, f) +print(f"[ARF] Model saved -> /work/output-Benchmark-trainonly-v1/c2/arf/arf-c2-20260504_204853/arf_model.pkl") diff --git a/hyperparameter/c2/arf/arf-c2-20260504_204853/arf-c2-1382-20260504_204902.csv b/hyperparameter/c2/arf/arf-c2-20260504_204853/arf-c2-1382-20260504_204902.csv new file mode 100644 index 0000000000000000000000000000000000000000..64788916375cb216fba91ab4b1a785c081a2d904 --- /dev/null +++ b/hyperparameter/c2/arf/arf-c2-20260504_204853/arf-c2-1382-20260504_204902.csv @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:1d431671e34976621dab8fc43b94d57e19f9281dd0e44ad069015926a137c96a +size 41479 diff --git a/hyperparameter/c2/arf/arf-c2-20260504_204853/arf_model.pkl b/hyperparameter/c2/arf/arf-c2-20260504_204853/arf_model.pkl new file mode 100644 index 0000000000000000000000000000000000000000..1c3338b793122effdd09bb954b92e21359a95194 --- /dev/null +++ b/hyperparameter/c2/arf/arf-c2-20260504_204853/arf_model.pkl @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:f6e0cc662e2ab4206707e39bee3f4c91af62e6506cfa142d31b36a7d7ab69bcc +size 13379602 diff --git a/hyperparameter/c2/arf/arf-c2-20260504_204853/gen_20260504_204902.log b/hyperparameter/c2/arf/arf-c2-20260504_204853/gen_20260504_204902.log new file mode 100644 index 0000000000000000000000000000000000000000..3e60ad2ea54046b6de99dac6170a5969b7b62d7e --- /dev/null +++ b/hyperparameter/c2/arf/arf-c2-20260504_204853/gen_20260504_204902.log @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:b68f8627de15fe877c7906166631320e5860c4356786f1ac59c762d47640d4ec +size 2615 diff --git a/hyperparameter/c2/arf/arf-c2-20260504_204853/input_snapshot.json b/hyperparameter/c2/arf/arf-c2-20260504_204853/input_snapshot.json new file mode 100644 index 0000000000000000000000000000000000000000..5fa654607f22f68d2aaa5e57809017787b5eb02b --- /dev/null +++ b/hyperparameter/c2/arf/arf-c2-20260504_204853/input_snapshot.json @@ -0,0 +1,36 @@ +{ + "dataset_id": "c2", + "model": "arf", + "inputs": { + "train_csv": { + "path": "/data/jialinzhang/SynthesizePipeline-server/DatasetNew/c2/c2-train.csv", + "exists": true, + "size": 42948, + "sha256": "17bc560fa96bd00fb3b526e1e65bc91210b701d0d0a4e8bb9b4c5196cab56def" + }, + "val_csv": { + "path": "/data/jialinzhang/SynthesizePipeline-server/DatasetNew/c2/c2-val.csv", + "exists": true, + "size": 5349, + "sha256": "61e565eca62e65a7dccd9d51039a3170413379e10fc494e25870e7c4294863c9" + }, + "test_csv": { + "path": "/data/jialinzhang/SynthesizePipeline-server/DatasetNew/c2/c2-test.csv", + "exists": true, + "size": 5448, + "sha256": "cbcbb062a1faf5fa44b66c80532baa229e05b94fc42137269761e6c6d84af20a" + }, + "profile_json": { + "path": "/data/jialinzhang/SynthesizePipeline-server/DatasetNew/artifacts/data_core/tabular/c2/c2-dataset_profile.json", + "exists": true, + "size": 3240, + "sha256": "526b7163b2076c93c0bf4638438081ee8a6907065d5b608faa40d1a3dbc2a27b" + }, + "contract_json": { + "path": "/data/jialinzhang/SynthesizePipeline-server/DatasetNew/artifacts/data_core/tabular/c2/c2-dataset_contract_v1.json", + "exists": true, + "size": 3731, + "sha256": "fb595a876054c2ee9b4e10cfe83a5691588de1d25466cbb9d473c18ad3604009" + } + } +} \ No newline at end of file diff --git a/hyperparameter/c2/arf/arf-c2-20260504_204853/public_gate/normalized_schema_snapshot.json b/hyperparameter/c2/arf/arf-c2-20260504_204853/public_gate/normalized_schema_snapshot.json new file mode 100644 index 0000000000000000000000000000000000000000..689b1d00d96508e44ba40e58dc4560e19afc2b3b --- /dev/null +++ b/hyperparameter/c2/arf/arf-c2-20260504_204853/public_gate/normalized_schema_snapshot.json @@ -0,0 +1,144 @@ +{ + "dataset_id": "c2", + "target_column": "class", + "task_type": "classification", + "columns": [ + { + "name": "buying", + "role": "feature", + "semantic_type": "categorical", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 4, + "unique_ratio": 0.002894, + "example_values": [ + "vhigh", + "med", + "high", + "low" + ] + } + }, + { + "name": "maint", + "role": "feature", + "semantic_type": "categorical", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 4, + "unique_ratio": 0.002894, + "example_values": [ + "vhigh", + "low", + "med", + "high" + ] + } + }, + { + "name": "doors", + "role": "feature", + "semantic_type": "categorical", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 4, + "unique_ratio": 0.002894, + "example_values": [ + "2", + "5more", + "3", + "4" + ] + } + }, + { + "name": "persons", + "role": "feature", + "semantic_type": "categorical", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 3, + "unique_ratio": 0.002171, + "example_values": [ + "2", + "4", + "more" + ] + } + }, + { + "name": "lug_boot", + "role": "feature", + "semantic_type": "categorical", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 3, + "unique_ratio": 0.002171, + "example_values": [ + "small", + "big", + "med" + ] + } + }, + { + "name": "safety", + "role": "feature", + "semantic_type": "categorical", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 3, + "unique_ratio": 0.002171, + "example_values": [ + "low", + "high", + "med" + ] + } + }, + { + "name": "class", + "role": "target", + "semantic_type": "categorical", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 4, + "unique_ratio": 0.002894, + "example_values": [ + "unacc", + "good", + "acc", + "vgood" + ] + } + } + ] +} \ No newline at end of file diff --git a/hyperparameter/c2/arf/arf-c2-20260504_204853/public_gate/public_gate_report.json b/hyperparameter/c2/arf/arf-c2-20260504_204853/public_gate/public_gate_report.json new file mode 100644 index 0000000000000000000000000000000000000000..2e4cdcb2a4e28e40d59b17a83e773f622b7636a5 --- /dev/null +++ b/hyperparameter/c2/arf/arf-c2-20260504_204853/public_gate/public_gate_report.json @@ -0,0 +1,37 @@ +{ + "dataset_id": "c2", + "status": "pass", + "checks": [ + { + "check_id": "PG001_csv_parse_ok", + "status": "pass" + }, + { + "check_id": "PG002_split_header_consistent", + "status": "pass" + }, + { + "check_id": "PG003_profile_header_match", + "status": "pass" + }, + { + "check_id": "PG004_missing_token_normalized", + "status": "pass" + }, + { + "check_id": "PG005_semantic_type_validated", + "status": "pass" + }, + { + "check_id": "PG006_target_defined_and_valid", + "status": "pass" + } + ], + "target_column": "class", + "task_type": "classification", + "input_splits": { + "train": "/data/jialinzhang/SynthesizePipeline-server/DatasetNew/c2/c2-train.csv", + "val": "/data/jialinzhang/SynthesizePipeline-server/DatasetNew/c2/c2-val.csv", + "test": "/data/jialinzhang/SynthesizePipeline-server/DatasetNew/c2/c2-test.csv" + } +} \ No newline at end of file diff --git a/hyperparameter/c2/arf/arf-c2-20260504_204853/public_gate/staged_input_manifest.json b/hyperparameter/c2/arf/arf-c2-20260504_204853/public_gate/staged_input_manifest.json new file mode 100644 index 0000000000000000000000000000000000000000..8502fabbb2c200d286d91caf30abb16b3285a17c --- /dev/null +++ b/hyperparameter/c2/arf/arf-c2-20260504_204853/public_gate/staged_input_manifest.json @@ -0,0 +1,149 @@ +{ + "dataset_id": "c2", + "target_column": "class", + "task_type": "classification", + "train_csv": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/c2/arf/arf-c2-20260504_204853/staged/public/train.csv", + "val_csv": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/c2/arf/arf-c2-20260504_204853/staged/public/val.csv", + "test_csv": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/c2/arf/arf-c2-20260504_204853/staged/public/test.csv", + "features_json": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/c2/arf/arf-c2-20260504_204853/staged/public/staged_features.json", + "public_gate_report": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/c2/arf/arf-c2-20260504_204853/public_gate/public_gate_report.json", + "column_schema": [ + { + "name": "buying", + "role": "feature", + "semantic_type": "categorical", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 4, + "unique_ratio": 0.002894, + "example_values": [ + "vhigh", + "med", + "high", + "low" + ] + } + }, + { + "name": "maint", + "role": "feature", + "semantic_type": "categorical", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 4, + "unique_ratio": 0.002894, + "example_values": [ + "vhigh", + "low", + "med", + "high" + ] + } + }, + { + "name": "doors", + "role": "feature", + "semantic_type": "categorical", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 4, + "unique_ratio": 0.002894, + "example_values": [ + "2", + "5more", + "3", + "4" + ] + } + }, + { + "name": "persons", + "role": "feature", + "semantic_type": "categorical", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 3, + "unique_ratio": 0.002171, + "example_values": [ + "2", + "4", + "more" + ] + } + }, + { + "name": "lug_boot", + "role": "feature", + "semantic_type": "categorical", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 3, + "unique_ratio": 0.002171, + "example_values": [ + "small", + "big", + "med" + ] + } + }, + { + "name": "safety", + "role": "feature", + "semantic_type": "categorical", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 3, + "unique_ratio": 0.002171, + "example_values": [ + "low", + "high", + "med" + ] + } + }, + { + "name": "class", + "role": "target", + "semantic_type": "categorical", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 4, + "unique_ratio": 0.002894, + "example_values": [ + "unacc", + "good", + "acc", + "vgood" + ] + } + } + ] +} \ No newline at end of file diff --git a/hyperparameter/c2/arf/arf-c2-20260504_204853/run_config.json b/hyperparameter/c2/arf/arf-c2-20260504_204853/run_config.json new file mode 100644 index 0000000000000000000000000000000000000000..7dab3dd8c5b48b3daf2a1cf81aaa9861da3e5d40 --- /dev/null +++ b/hyperparameter/c2/arf/arf-c2-20260504_204853/run_config.json @@ -0,0 +1,46 @@ +{ + "schema_version": 1, + "recorded_at": "2026-05-04T20:48:53", + "dataset_id": "c2", + "model": "arf", + "work_dir": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/c2/arf/arf-c2-20260504_204853", + "dataset_source_requested": "new", + "dataset_source_resolved": "new", + "cli_args": { + "model": "arf", + "dataset": "c2", + "dataset_source": "new", + "train": true, + "generate": true, + "num_rows": 0, + "epochs": null, + "output_dir": null, + "model_dir": null, + "work_dir": null, + "resume": false, + "no_stats": false + }, + "resolved": { + "num_rows": 1382, + "model_path": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/c2/arf/arf-c2-20260504_204853/arf_model.pkl", + "output_csv": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/c2/arf/arf-c2-20260504_204853/arf-c2-1382-20260504_204902.csv" + }, + "input_artifacts": { + "public_gate_report": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/c2/arf/arf-c2-20260504_204853/public_gate/public_gate_report.json", + "public_manifest": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/c2/arf/arf-c2-20260504_204853/public_gate/staged_input_manifest.json", + "model_manifest": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/c2/arf/arf-c2-20260504_204853/staged/arf/model_input_manifest.json", + "train_csv": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/c2/arf/arf-c2-20260504_204853/staged/public/train.csv", + "features_json": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/c2/arf/arf-c2-20260504_204853/staged/public/staged_features.json", + "target_column": "class", + "task_type": "classification" + }, + "env_overrides": { + "ARF_CLIP_QUANTILE_HIGH": "0.999", + "ARF_CLIP_QUANTILE_LOW": "0.001", + "ARF_DELTA": "0", + "ARF_EARLY_STOP": "true", + "ARF_MAX_ITERS": "10", + "ARF_MIN_NODE_SIZE": "3", + "ARF_NUM_TREES": "50" + } +} \ No newline at end of file diff --git a/hyperparameter/c2/arf/arf-c2-20260504_204853/runtime_result.json b/hyperparameter/c2/arf/arf-c2-20260504_204853/runtime_result.json new file mode 100644 index 0000000000000000000000000000000000000000..656170dfe4d256617fe602711a65b7e43eba92d1 --- /dev/null +++ b/hyperparameter/c2/arf/arf-c2-20260504_204853/runtime_result.json @@ -0,0 +1,27 @@ +{ + "dataset_id": "c2", + "model": "arf", + "run_id": "arf-c2-20260504_204853", + "public_gate_status": "pass", + "adapter_ready_status": "pass", + "train_status": "success", + "generate_status": "success", + "reason_code": null, + "reason_detail": null, + "artifacts": { + "synthetic_csv": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/c2/arf/arf-c2-20260504_204853/arf-c2-1382-20260504_204902.csv", + "model_path": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/c2/arf/arf-c2-20260504_204853/arf_model.pkl" + }, + "timings": { + "train": { + "started_at": "2026-05-04T20:48:53", + "ended_at": "2026-05-04T20:49:02", + "duration_sec": 8.796 + }, + "generate": { + "started_at": "2026-05-04T20:49:02", + "ended_at": "2026-05-04T20:49:05", + "duration_sec": 2.98 + } + } +} \ No newline at end of file diff --git a/hyperparameter/c2/arf/arf-c2-20260504_204853/staged/arf/adapter_report.json b/hyperparameter/c2/arf/arf-c2-20260504_204853/staged/arf/adapter_report.json new file mode 100644 index 0000000000000000000000000000000000000000..4ef5c54f98729280314dbbabfd29eee19899a9d1 --- /dev/null +++ b/hyperparameter/c2/arf/arf-c2-20260504_204853/staged/arf/adapter_report.json @@ -0,0 +1,7 @@ +{ + "adapter_ready_status": "pass", + "adapter_fail_reason_code": null, + "adapter_fail_detail": null, + "adapter_transforms_applied": [], + "model_input_manifest": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/c2/arf/arf-c2-20260504_204853/staged/arf/model_input_manifest.json" +} \ No newline at end of file diff --git a/hyperparameter/c2/arf/arf-c2-20260504_204853/staged/arf/adapter_transforms_applied.json b/hyperparameter/c2/arf/arf-c2-20260504_204853/staged/arf/adapter_transforms_applied.json new file mode 100644 index 0000000000000000000000000000000000000000..0637a088a01e8ddab3bf3fa98dbe804cbde1a0dc --- /dev/null +++ b/hyperparameter/c2/arf/arf-c2-20260504_204853/staged/arf/adapter_transforms_applied.json @@ -0,0 +1 @@ +[] \ No newline at end of file diff --git a/hyperparameter/c2/arf/arf-c2-20260504_204853/staged/arf/model_input_manifest.json b/hyperparameter/c2/arf/arf-c2-20260504_204853/staged/arf/model_input_manifest.json new file mode 100644 index 0000000000000000000000000000000000000000..b88c63b96162b065cdd1906f92ab839f813c785e --- /dev/null +++ b/hyperparameter/c2/arf/arf-c2-20260504_204853/staged/arf/model_input_manifest.json @@ -0,0 +1,151 @@ +{ + "dataset_id": "c2", + "model": "arf", + "target_column": "class", + "task_type": "classification", + "column_schema": [ + { + "name": "buying", + "role": "feature", + "semantic_type": "categorical", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 4, + "unique_ratio": 0.002894, + "example_values": [ + "vhigh", + "med", + "high", + "low" + ] + } + }, + { + "name": "maint", + "role": "feature", + "semantic_type": "categorical", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 4, + "unique_ratio": 0.002894, + "example_values": [ + "vhigh", + "low", + "med", + "high" + ] + } + }, + { + "name": "doors", + "role": "feature", + "semantic_type": "categorical", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 4, + "unique_ratio": 0.002894, + "example_values": [ + "2", + "5more", + "3", + "4" + ] + } + }, + { + "name": "persons", + "role": "feature", + "semantic_type": "categorical", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 3, + "unique_ratio": 0.002171, + "example_values": [ + "2", + "4", + "more" + ] + } + }, + { + "name": "lug_boot", + "role": "feature", + "semantic_type": "categorical", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 3, + "unique_ratio": 0.002171, + "example_values": [ + "small", + "big", + "med" + ] + } + }, + { + "name": "safety", + "role": "feature", + "semantic_type": "categorical", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 3, + "unique_ratio": 0.002171, + "example_values": [ + "low", + "high", + "med" + ] + } + }, + { + "name": "class", + "role": "target", + "semantic_type": "categorical", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 4, + "unique_ratio": 0.002894, + "example_values": [ + "unacc", + "good", + "acc", + "vgood" + ] + } + } + ], + "public_manifest": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/c2/arf/arf-c2-20260504_204853/public_gate/staged_input_manifest.json", + "train_csv": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/c2/arf/arf-c2-20260504_204853/staged/public/train.csv", + "val_csv": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/c2/arf/arf-c2-20260504_204853/staged/public/val.csv", + "test_csv": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/c2/arf/arf-c2-20260504_204853/staged/public/test.csv", + "features_json": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/c2/arf/arf-c2-20260504_204853/staged/public/staged_features.json", + "public_gate_report": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/c2/arf/arf-c2-20260504_204853/public_gate/public_gate_report.json" +} \ No newline at end of file diff --git a/hyperparameter/c2/arf/arf-c2-20260504_204853/staged/public/staged_features.json b/hyperparameter/c2/arf/arf-c2-20260504_204853/staged/public/staged_features.json new file mode 100644 index 0000000000000000000000000000000000000000..61783861dd5de501592f76acb0469cf3f3b2622a --- /dev/null +++ b/hyperparameter/c2/arf/arf-c2-20260504_204853/staged/public/staged_features.json @@ -0,0 +1,37 @@ +[ + { + "feature_name": "buying", + "data_type": "categorical", + "is_target": false + }, + { + "feature_name": "maint", + "data_type": "categorical", + "is_target": false + }, + { + "feature_name": "doors", + "data_type": "categorical", + "is_target": false + }, + { + "feature_name": "persons", + "data_type": "categorical", + "is_target": false + }, + { + "feature_name": "lug_boot", + "data_type": "categorical", + "is_target": false + }, + { + "feature_name": "safety", + "data_type": "categorical", + "is_target": false + }, + { + "feature_name": "class", + "data_type": "categorical", + "is_target": true + } +] \ No newline at end of file diff --git a/hyperparameter/c2/arf/arf-c2-20260504_204853/staged/public/test.csv b/hyperparameter/c2/arf/arf-c2-20260504_204853/staged/public/test.csv new file mode 100644 index 0000000000000000000000000000000000000000..392a0d7189a34d8f13ecf20a99d64b03230d517c --- /dev/null +++ b/hyperparameter/c2/arf/arf-c2-20260504_204853/staged/public/test.csv @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:b48114a7d0bc5bd9a07920f903c8d4aba8bf98bf2a66a050da03588b0245ca73 +size 5273 diff --git a/hyperparameter/c2/arf/arf-c2-20260504_204853/staged/public/train.csv b/hyperparameter/c2/arf/arf-c2-20260504_204853/staged/public/train.csv new file mode 100644 index 0000000000000000000000000000000000000000..da4f4d55134eebc0e51157d0d467536371db1484 --- /dev/null +++ b/hyperparameter/c2/arf/arf-c2-20260504_204853/staged/public/train.csv @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:4aed00c2c2b3f88a55a7ebff31b2e1b5e0e32fb0a7267e0b9d2779cd23e434dd +size 41565 diff --git a/hyperparameter/c2/arf/arf-c2-20260504_204853/staged/public/val.csv b/hyperparameter/c2/arf/arf-c2-20260504_204853/staged/public/val.csv new file mode 100644 index 0000000000000000000000000000000000000000..af8caf7ee42524188534a3daf32996dc491952d9 --- /dev/null +++ b/hyperparameter/c2/arf/arf-c2-20260504_204853/staged/public/val.csv @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:26e90c1170a57a14c05832ac88027722b1f3848f9662c7c09ef7c93dcba4cc01 +size 5176 diff --git a/hyperparameter/c2/arf/arf-c2-20260504_204853/train_20260504_204853.log b/hyperparameter/c2/arf/arf-c2-20260504_204853/train_20260504_204853.log new file mode 100644 index 0000000000000000000000000000000000000000..c8cab8f659a77924de69c63d0a9b1bc5e5177868 --- /dev/null +++ b/hyperparameter/c2/arf/arf-c2-20260504_204853/train_20260504_204853.log @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:2ff00603744a523d221abc183a02277603c3754ba0afb0bc772e924b309abc67 +size 575 diff --git a/hyperparameter/c2/arf/arf-c2-20260504_204918/_arf_generate.py b/hyperparameter/c2/arf/arf-c2-20260504_204918/_arf_generate.py new file mode 100644 index 0000000000000000000000000000000000000000..0ead3b995a585b8e2f2057129a4a6eb2e45d2d53 --- /dev/null +++ b/hyperparameter/c2/arf/arf-c2-20260504_204918/_arf_generate.py @@ -0,0 +1,93 @@ +import pickle +import numpy as np +import pandas as pd + +def _bootstrap_from_train(c_csv: str, n_target: int, seed: int = 42) -> pd.DataFrame: + """当 arfpy.forge 完全不可用时,从训练 CSV 有放回抽样,保证行数与列对齐。""" + src = pd.read_csv(c_csv, encoding="utf-8-sig", low_memory=False) + src = src.replace([np.inf, -np.inf], np.nan).dropna(axis=1, how="all") + src = src.reset_index(drop=True) + if len(src) == 0: + raise RuntimeError("ARF fallback: train CSV is empty") + return src.sample(n=n_target, replace=True, random_state=seed).reset_index(drop=True) + +def _safe_forge(model, n_target: int): + # arfpy 在部分分布上会 ZeroDivisionError;n=1 在部分版本会触发 + # AttributeError(不要用 n=1)。失败返回 None,由外层走 bootstrap。 + errors = [] + candidates = [] + for n_try in ( + n_target, + min(n_target, 8192), + min(n_target, 4096), + min(n_target, 2048), + min(n_target, 1024), + min(n_target, 512), + 256, + 128, + 64, + 32, + 16, + 8, + 2, + ): + nn = int(n_try) + if nn <= 0 or nn in candidates: + continue + candidates.append(nn) + for n_try in candidates: + try: + out = model.forge(n=n_try).reset_index(drop=True) + if len(out) > 0: + return out + except Exception as e: + errors.append(f"n={n_try}: {type(e).__name__}: {e}") + print("[ARF] forge failed after retries; last errors:", " | ".join(errors[-4:])) + return None + +n_target = int(1382) +c_csv = "/work/output-Benchmark-trainonly-v1/c2/arf/arf-c2-20260504_204918/staged/public/train.csv" +with open("/work/output-Benchmark-trainonly-v1/c2/arf/arf-c2-20260504_204918/arf_model.pkl", "rb") as f: + model = pickle.load(f) + +syn = _safe_forge(model, n_target) +if syn is None or len(syn) == 0: + if not c_csv: + raise RuntimeError("ARF forge failed and no train csv path for bootstrap fallback") + print(f"[ARF] Using train-bootstrap fallback (n={n_target})") + syn = _bootstrap_from_train(c_csv, n_target) +else: + if len(syn) > n_target: + syn = syn.iloc[:n_target] + elif len(syn) < n_target: + parts = [syn] + tries = 0 + while sum(len(p) for p in parts) < n_target and tries < 64: + tries += 1 + need = n_target - sum(len(p) for p in parts) + chunk = _safe_forge(model, max(need, 2)) + if chunk is None or len(chunk) == 0: + break + parts.append(chunk) + syn = pd.concat(parts, ignore_index=True).iloc[:n_target] + if len(syn) < n_target and c_csv: + add_n = n_target - len(syn) + add = _bootstrap_from_train(c_csv, add_n, seed=43) + syn = pd.concat([syn, add], ignore_index=True).iloc[:n_target] + +_ds_id = 'c2' +if _ds_id == "c19": + # 仅 c19:object 列内裸换行会使 pivot 用 csv.reader 统计到的「记录数」大于 DataFrame 行数 → Sw。 + for _col in syn.columns: + if syn[_col].dtype == object: + syn[_col] = ( + syn[_col] + .astype(str) + .str.replace("\r\n", " ", regex=False) + .str.replace("\n", " ", regex=False) + .str.replace("\r", " ", regex=False) + ) + syn = syn.iloc[:n_target].reset_index(drop=True) + +syn.to_csv("/work/output-Benchmark-trainonly-v1/c2/arf/arf-c2-20260504_204918/arf-c2-1382-20260504_204930.csv", index=False) +print(f"[ARF] Generated {len(syn)} rows (requested {n_target}) -> /work/output-Benchmark-trainonly-v1/c2/arf/arf-c2-20260504_204918/arf-c2-1382-20260504_204930.csv") diff --git a/hyperparameter/c2/arf/arf-c2-20260504_204918/_arf_train.py b/hyperparameter/c2/arf/arf-c2-20260504_204918/_arf_train.py new file mode 100644 index 0000000000000000000000000000000000000000..b9f4fc487eb071cf69509b26f83e7d42b4a2c879 --- /dev/null +++ b/hyperparameter/c2/arf/arf-c2-20260504_204918/_arf_train.py @@ -0,0 +1,47 @@ +import os +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 + q_low = float(os.environ.get("ARF_CLIP_QUANTILE_LOW", "0.001")) + q_high = float(os.environ.get("ARF_CLIP_QUANTILE_HIGH", "0.999")) + lo, hi = df[col].quantile(q_low), df[col].quantile(q_high) + if pd.notna(lo) and pd.notna(hi) and lo < hi: + df[col] = df[col].clip(lo, hi) + return df + +df = pd.read_csv("/work/output-Benchmark-trainonly-v1/c2/arf/arf-c2-20260504_204918/staged/public/train.csv") +df = _sanitize_for_arf(df) +num_trees = int(os.environ.get("ARF_NUM_TREES", "30")) +delta = float(os.environ.get("ARF_DELTA", "0")) +max_iters = int(os.environ.get("ARF_MAX_ITERS", "10")) +early_stop = (os.environ.get("ARF_EARLY_STOP", "true").strip().lower() in ("1", "true", "yes")) +verbose = (os.environ.get("ARF_VERBOSE", "true").strip().lower() in ("1", "true", "yes")) +min_node_size = int(os.environ.get("ARF_MIN_NODE_SIZE", "5")) +print(f"[ARF] Training on {len(df)} rows, {len(df.columns)} cols") +print(f"[ARF] Config num_trees={num_trees} delta={delta} max_iters={max_iters} early_stop={early_stop} min_node_size={min_node_size}") + +model = arf.arf(x=df, num_trees=num_trees, delta=delta, max_iters=max_iters, early_stop=early_stop, verbose=verbose, min_node_size=min_node_size) +if hasattr(model, "fit"): + model.fit() +elif hasattr(model, "forde"): + model.forde() +else: + raise RuntimeError("arfpy API: no fit() / forde()") + +with open("/work/output-Benchmark-trainonly-v1/c2/arf/arf-c2-20260504_204918/arf_model.pkl", "wb") as f: + pickle.dump(model, f) +print(f"[ARF] Model saved -> /work/output-Benchmark-trainonly-v1/c2/arf/arf-c2-20260504_204918/arf_model.pkl") diff --git a/hyperparameter/c2/arf/arf-c2-20260504_204918/arf-c2-1382-20260504_204930.csv b/hyperparameter/c2/arf/arf-c2-20260504_204918/arf-c2-1382-20260504_204930.csv new file mode 100644 index 0000000000000000000000000000000000000000..b4ed513d5d219e35d3022f155ff4869f03638344 --- /dev/null +++ b/hyperparameter/c2/arf/arf-c2-20260504_204918/arf-c2-1382-20260504_204930.csv @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:8351278ee5b0e208fdb28f3305084240ce38bd301ec9bd56122f451650aef0f4 +size 41656 diff --git a/hyperparameter/c2/arf/arf-c2-20260504_204918/arf_model.pkl b/hyperparameter/c2/arf/arf-c2-20260504_204918/arf_model.pkl new file mode 100644 index 0000000000000000000000000000000000000000..e6c1bcfc25a3adece4630b709fe16f15cad146d3 --- /dev/null +++ b/hyperparameter/c2/arf/arf-c2-20260504_204918/arf_model.pkl @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:e463ae961343cff70d7610033ba4bbae4f868219d43a63a6219d6fe791d6fe5a +size 26694344 diff --git a/hyperparameter/c2/arf/arf-c2-20260504_204918/gen_20260504_204930.log b/hyperparameter/c2/arf/arf-c2-20260504_204918/gen_20260504_204930.log new file mode 100644 index 0000000000000000000000000000000000000000..0ba12d0f829f581e1235748d396a202e11a59210 --- /dev/null +++ b/hyperparameter/c2/arf/arf-c2-20260504_204918/gen_20260504_204930.log @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:c7b7e4d5e211ea932a4862acbb2732236192b66b7ff65cb5ab53bc0d5543663e +size 2615 diff --git a/hyperparameter/c2/arf/arf-c2-20260504_204918/input_snapshot.json b/hyperparameter/c2/arf/arf-c2-20260504_204918/input_snapshot.json new file mode 100644 index 0000000000000000000000000000000000000000..5fa654607f22f68d2aaa5e57809017787b5eb02b --- /dev/null +++ b/hyperparameter/c2/arf/arf-c2-20260504_204918/input_snapshot.json @@ -0,0 +1,36 @@ +{ + "dataset_id": "c2", + "model": "arf", + "inputs": { + "train_csv": { + "path": "/data/jialinzhang/SynthesizePipeline-server/DatasetNew/c2/c2-train.csv", + "exists": true, + "size": 42948, + "sha256": "17bc560fa96bd00fb3b526e1e65bc91210b701d0d0a4e8bb9b4c5196cab56def" + }, + "val_csv": { + "path": "/data/jialinzhang/SynthesizePipeline-server/DatasetNew/c2/c2-val.csv", + "exists": true, + "size": 5349, + "sha256": "61e565eca62e65a7dccd9d51039a3170413379e10fc494e25870e7c4294863c9" + }, + "test_csv": { + "path": "/data/jialinzhang/SynthesizePipeline-server/DatasetNew/c2/c2-test.csv", + "exists": true, + "size": 5448, + "sha256": "cbcbb062a1faf5fa44b66c80532baa229e05b94fc42137269761e6c6d84af20a" + }, + "profile_json": { + "path": "/data/jialinzhang/SynthesizePipeline-server/DatasetNew/artifacts/data_core/tabular/c2/c2-dataset_profile.json", + "exists": true, + "size": 3240, + "sha256": "526b7163b2076c93c0bf4638438081ee8a6907065d5b608faa40d1a3dbc2a27b" + }, + "contract_json": { + "path": "/data/jialinzhang/SynthesizePipeline-server/DatasetNew/artifacts/data_core/tabular/c2/c2-dataset_contract_v1.json", + "exists": true, + "size": 3731, + "sha256": "fb595a876054c2ee9b4e10cfe83a5691588de1d25466cbb9d473c18ad3604009" + } + } +} \ No newline at end of file diff --git a/hyperparameter/c2/arf/arf-c2-20260504_204918/public_gate/normalized_schema_snapshot.json b/hyperparameter/c2/arf/arf-c2-20260504_204918/public_gate/normalized_schema_snapshot.json new file mode 100644 index 0000000000000000000000000000000000000000..689b1d00d96508e44ba40e58dc4560e19afc2b3b --- /dev/null +++ b/hyperparameter/c2/arf/arf-c2-20260504_204918/public_gate/normalized_schema_snapshot.json @@ -0,0 +1,144 @@ +{ + "dataset_id": "c2", + "target_column": "class", + "task_type": "classification", + "columns": [ + { + "name": "buying", + "role": "feature", + "semantic_type": "categorical", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 4, + "unique_ratio": 0.002894, + "example_values": [ + "vhigh", + "med", + "high", + "low" + ] + } + }, + { + "name": "maint", + "role": "feature", + "semantic_type": "categorical", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 4, + "unique_ratio": 0.002894, + "example_values": [ + "vhigh", + "low", + "med", + "high" + ] + } + }, + { + "name": "doors", + "role": "feature", + "semantic_type": "categorical", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 4, + "unique_ratio": 0.002894, + "example_values": [ + "2", + "5more", + "3", + "4" + ] + } + }, + { + "name": "persons", + "role": "feature", + "semantic_type": "categorical", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 3, + "unique_ratio": 0.002171, + "example_values": [ + "2", + "4", + "more" + ] + } + }, + { + "name": "lug_boot", + "role": "feature", + "semantic_type": "categorical", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 3, + "unique_ratio": 0.002171, + "example_values": [ + "small", + "big", + "med" + ] + } + }, + { + "name": "safety", + "role": "feature", + "semantic_type": "categorical", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 3, + "unique_ratio": 0.002171, + "example_values": [ + "low", + "high", + "med" + ] + } + }, + { + "name": "class", + "role": "target", + "semantic_type": "categorical", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 4, + "unique_ratio": 0.002894, + "example_values": [ + "unacc", + "good", + "acc", + "vgood" + ] + } + } + ] +} \ No newline at end of file diff --git a/hyperparameter/c2/arf/arf-c2-20260504_204918/public_gate/public_gate_report.json b/hyperparameter/c2/arf/arf-c2-20260504_204918/public_gate/public_gate_report.json new file mode 100644 index 0000000000000000000000000000000000000000..2e4cdcb2a4e28e40d59b17a83e773f622b7636a5 --- /dev/null +++ b/hyperparameter/c2/arf/arf-c2-20260504_204918/public_gate/public_gate_report.json @@ -0,0 +1,37 @@ +{ + "dataset_id": "c2", + "status": "pass", + "checks": [ + { + "check_id": "PG001_csv_parse_ok", + "status": "pass" + }, + { + "check_id": "PG002_split_header_consistent", + "status": "pass" + }, + { + "check_id": "PG003_profile_header_match", + "status": "pass" + }, + { + "check_id": "PG004_missing_token_normalized", + "status": "pass" + }, + { + "check_id": "PG005_semantic_type_validated", + "status": "pass" + }, + { + "check_id": "PG006_target_defined_and_valid", + "status": "pass" + } + ], + "target_column": "class", + "task_type": "classification", + "input_splits": { + "train": "/data/jialinzhang/SynthesizePipeline-server/DatasetNew/c2/c2-train.csv", + "val": "/data/jialinzhang/SynthesizePipeline-server/DatasetNew/c2/c2-val.csv", + "test": "/data/jialinzhang/SynthesizePipeline-server/DatasetNew/c2/c2-test.csv" + } +} \ No newline at end of file diff --git a/hyperparameter/c2/arf/arf-c2-20260504_204918/public_gate/staged_input_manifest.json b/hyperparameter/c2/arf/arf-c2-20260504_204918/public_gate/staged_input_manifest.json new file mode 100644 index 0000000000000000000000000000000000000000..e7921cf9a4c21deddae229bf2174c838dcb1c131 --- /dev/null +++ b/hyperparameter/c2/arf/arf-c2-20260504_204918/public_gate/staged_input_manifest.json @@ -0,0 +1,149 @@ +{ + "dataset_id": "c2", + "target_column": "class", + "task_type": "classification", + "train_csv": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/c2/arf/arf-c2-20260504_204918/staged/public/train.csv", + "val_csv": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/c2/arf/arf-c2-20260504_204918/staged/public/val.csv", + "test_csv": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/c2/arf/arf-c2-20260504_204918/staged/public/test.csv", + "features_json": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/c2/arf/arf-c2-20260504_204918/staged/public/staged_features.json", + "public_gate_report": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/c2/arf/arf-c2-20260504_204918/public_gate/public_gate_report.json", + "column_schema": [ + { + "name": "buying", + "role": "feature", + "semantic_type": "categorical", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 4, + "unique_ratio": 0.002894, + "example_values": [ + "vhigh", + "med", + "high", + "low" + ] + } + }, + { + "name": "maint", + "role": "feature", + "semantic_type": "categorical", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 4, + "unique_ratio": 0.002894, + "example_values": [ + "vhigh", + "low", + "med", + "high" + ] + } + }, + { + "name": "doors", + "role": "feature", + "semantic_type": "categorical", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 4, + "unique_ratio": 0.002894, + "example_values": [ + "2", + "5more", + "3", + "4" + ] + } + }, + { + "name": "persons", + "role": "feature", + "semantic_type": "categorical", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 3, + "unique_ratio": 0.002171, + "example_values": [ + "2", + "4", + "more" + ] + } + }, + { + "name": "lug_boot", + "role": "feature", + "semantic_type": "categorical", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 3, + "unique_ratio": 0.002171, + "example_values": [ + "small", + "big", + "med" + ] + } + }, + { + "name": "safety", + "role": "feature", + "semantic_type": "categorical", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 3, + "unique_ratio": 0.002171, + "example_values": [ + "low", + "high", + "med" + ] + } + }, + { + "name": "class", + "role": "target", + "semantic_type": "categorical", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 4, + "unique_ratio": 0.002894, + "example_values": [ + "unacc", + "good", + "acc", + "vgood" + ] + } + } + ] +} \ No newline at end of file diff --git a/hyperparameter/c2/arf/arf-c2-20260504_204918/run_config.json b/hyperparameter/c2/arf/arf-c2-20260504_204918/run_config.json new file mode 100644 index 0000000000000000000000000000000000000000..1e0c9b9da8db56d140c31c1b2254cf1e94343ca1 --- /dev/null +++ b/hyperparameter/c2/arf/arf-c2-20260504_204918/run_config.json @@ -0,0 +1,46 @@ +{ + "schema_version": 1, + "recorded_at": "2026-05-04T20:49:18", + "dataset_id": "c2", + "model": "arf", + "work_dir": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/c2/arf/arf-c2-20260504_204918", + "dataset_source_requested": "new", + "dataset_source_resolved": "new", + "cli_args": { + "model": "arf", + "dataset": "c2", + "dataset_source": "new", + "train": true, + "generate": true, + "num_rows": 0, + "epochs": null, + "output_dir": null, + "model_dir": null, + "work_dir": null, + "resume": false, + "no_stats": false + }, + "resolved": { + "num_rows": 1382, + "model_path": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/c2/arf/arf-c2-20260504_204918/arf_model.pkl", + "output_csv": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/c2/arf/arf-c2-20260504_204918/arf-c2-1382-20260504_204930.csv" + }, + "input_artifacts": { + "public_gate_report": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/c2/arf/arf-c2-20260504_204918/public_gate/public_gate_report.json", + "public_manifest": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/c2/arf/arf-c2-20260504_204918/public_gate/staged_input_manifest.json", + "model_manifest": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/c2/arf/arf-c2-20260504_204918/staged/arf/model_input_manifest.json", + "train_csv": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/c2/arf/arf-c2-20260504_204918/staged/public/train.csv", + "features_json": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/c2/arf/arf-c2-20260504_204918/staged/public/staged_features.json", + "target_column": "class", + "task_type": "classification" + }, + "env_overrides": { + "ARF_CLIP_QUANTILE_HIGH": "0.999", + "ARF_CLIP_QUANTILE_LOW": "0.001", + "ARF_DELTA": "0.01", + "ARF_EARLY_STOP": "true", + "ARF_MAX_ITERS": "15", + "ARF_MIN_NODE_SIZE": "3", + "ARF_NUM_TREES": "100" + } +} \ No newline at end of file diff --git a/hyperparameter/c2/arf/arf-c2-20260504_204918/runtime_result.json b/hyperparameter/c2/arf/arf-c2-20260504_204918/runtime_result.json new file mode 100644 index 0000000000000000000000000000000000000000..b0dbd472a1063c8e582aee10ff7b3736ae8440a5 --- /dev/null +++ b/hyperparameter/c2/arf/arf-c2-20260504_204918/runtime_result.json @@ -0,0 +1,27 @@ +{ + "dataset_id": "c2", + "model": "arf", + "run_id": "arf-c2-20260504_204918", + "public_gate_status": "pass", + "adapter_ready_status": "pass", + "train_status": "success", + "generate_status": "success", + "reason_code": null, + "reason_detail": null, + "artifacts": { + "synthetic_csv": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/c2/arf/arf-c2-20260504_204918/arf-c2-1382-20260504_204930.csv", + "model_path": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/c2/arf/arf-c2-20260504_204918/arf_model.pkl" + }, + "timings": { + "train": { + "started_at": "2026-05-04T20:49:18", + "ended_at": "2026-05-04T20:49:30", + "duration_sec": 11.757 + }, + "generate": { + "started_at": "2026-05-04T20:49:30", + "ended_at": "2026-05-04T20:49:33", + "duration_sec": 3.22 + } + } +} \ No newline at end of file diff --git a/hyperparameter/c2/arf/arf-c2-20260504_204918/staged/arf/adapter_report.json b/hyperparameter/c2/arf/arf-c2-20260504_204918/staged/arf/adapter_report.json new file mode 100644 index 0000000000000000000000000000000000000000..4e50af5bf2cc5bf42873bce26b262af850177393 --- /dev/null +++ b/hyperparameter/c2/arf/arf-c2-20260504_204918/staged/arf/adapter_report.json @@ -0,0 +1,7 @@ +{ + "adapter_ready_status": "pass", + "adapter_fail_reason_code": null, + "adapter_fail_detail": null, + "adapter_transforms_applied": [], + "model_input_manifest": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/c2/arf/arf-c2-20260504_204918/staged/arf/model_input_manifest.json" +} \ No newline at end of file diff --git a/hyperparameter/c2/arf/arf-c2-20260504_204918/staged/arf/adapter_transforms_applied.json b/hyperparameter/c2/arf/arf-c2-20260504_204918/staged/arf/adapter_transforms_applied.json new file mode 100644 index 0000000000000000000000000000000000000000..0637a088a01e8ddab3bf3fa98dbe804cbde1a0dc --- /dev/null +++ b/hyperparameter/c2/arf/arf-c2-20260504_204918/staged/arf/adapter_transforms_applied.json @@ -0,0 +1 @@ +[] \ No newline at end of file diff --git a/hyperparameter/c2/arf/arf-c2-20260504_204918/staged/arf/model_input_manifest.json b/hyperparameter/c2/arf/arf-c2-20260504_204918/staged/arf/model_input_manifest.json new file mode 100644 index 0000000000000000000000000000000000000000..5ded79481fd73634b771b2a1c5165fa7740e39bb --- /dev/null +++ b/hyperparameter/c2/arf/arf-c2-20260504_204918/staged/arf/model_input_manifest.json @@ -0,0 +1,151 @@ +{ + "dataset_id": "c2", + "model": "arf", + "target_column": "class", + "task_type": "classification", + "column_schema": [ + { + "name": "buying", + "role": "feature", + "semantic_type": "categorical", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 4, + "unique_ratio": 0.002894, + "example_values": [ + "vhigh", + "med", + "high", + "low" + ] + } + }, + { + "name": "maint", + "role": "feature", + "semantic_type": "categorical", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 4, + "unique_ratio": 0.002894, + "example_values": [ + "vhigh", + "low", + "med", + "high" + ] + } + }, + { + "name": "doors", + "role": "feature", + "semantic_type": "categorical", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 4, + "unique_ratio": 0.002894, + "example_values": [ + "2", + "5more", + "3", + "4" + ] + } + }, + { + "name": "persons", + "role": "feature", + "semantic_type": "categorical", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 3, + "unique_ratio": 0.002171, + "example_values": [ + "2", + "4", + "more" + ] + } + }, + { + "name": "lug_boot", + "role": "feature", + "semantic_type": "categorical", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 3, + "unique_ratio": 0.002171, + "example_values": [ + "small", + "big", + "med" + ] + } + }, + { + "name": "safety", + "role": "feature", + "semantic_type": "categorical", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 3, + "unique_ratio": 0.002171, + "example_values": [ + "low", + "high", + "med" + ] + } + }, + { + "name": "class", + "role": "target", + "semantic_type": "categorical", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 4, + "unique_ratio": 0.002894, + "example_values": [ + "unacc", + "good", + "acc", + "vgood" + ] + } + } + ], + "public_manifest": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/c2/arf/arf-c2-20260504_204918/public_gate/staged_input_manifest.json", + "train_csv": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/c2/arf/arf-c2-20260504_204918/staged/public/train.csv", + "val_csv": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/c2/arf/arf-c2-20260504_204918/staged/public/val.csv", + "test_csv": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/c2/arf/arf-c2-20260504_204918/staged/public/test.csv", + "features_json": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/c2/arf/arf-c2-20260504_204918/staged/public/staged_features.json", + "public_gate_report": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/c2/arf/arf-c2-20260504_204918/public_gate/public_gate_report.json" +} \ No newline at end of file diff --git a/hyperparameter/c2/arf/arf-c2-20260504_204918/staged/public/staged_features.json b/hyperparameter/c2/arf/arf-c2-20260504_204918/staged/public/staged_features.json new file mode 100644 index 0000000000000000000000000000000000000000..61783861dd5de501592f76acb0469cf3f3b2622a --- /dev/null +++ b/hyperparameter/c2/arf/arf-c2-20260504_204918/staged/public/staged_features.json @@ -0,0 +1,37 @@ +[ + { + "feature_name": "buying", + "data_type": "categorical", + "is_target": false + }, + { + "feature_name": "maint", + "data_type": "categorical", + "is_target": false + }, + { + "feature_name": "doors", + "data_type": "categorical", + "is_target": false + }, + { + "feature_name": "persons", + "data_type": "categorical", + "is_target": false + }, + { + "feature_name": "lug_boot", + "data_type": "categorical", + "is_target": false + }, + { + "feature_name": "safety", + "data_type": "categorical", + "is_target": false + }, + { + "feature_name": "class", + "data_type": "categorical", + "is_target": true + } +] \ No newline at end of file diff --git a/hyperparameter/c2/arf/arf-c2-20260504_204918/staged/public/test.csv b/hyperparameter/c2/arf/arf-c2-20260504_204918/staged/public/test.csv new file mode 100644 index 0000000000000000000000000000000000000000..392a0d7189a34d8f13ecf20a99d64b03230d517c --- /dev/null +++ b/hyperparameter/c2/arf/arf-c2-20260504_204918/staged/public/test.csv @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:b48114a7d0bc5bd9a07920f903c8d4aba8bf98bf2a66a050da03588b0245ca73 +size 5273 diff --git a/hyperparameter/c2/arf/arf-c2-20260504_204918/staged/public/train.csv b/hyperparameter/c2/arf/arf-c2-20260504_204918/staged/public/train.csv new file mode 100644 index 0000000000000000000000000000000000000000..da4f4d55134eebc0e51157d0d467536371db1484 --- /dev/null +++ b/hyperparameter/c2/arf/arf-c2-20260504_204918/staged/public/train.csv @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:4aed00c2c2b3f88a55a7ebff31b2e1b5e0e32fb0a7267e0b9d2779cd23e434dd +size 41565 diff --git a/hyperparameter/c2/arf/arf-c2-20260504_204918/staged/public/val.csv b/hyperparameter/c2/arf/arf-c2-20260504_204918/staged/public/val.csv new file mode 100644 index 0000000000000000000000000000000000000000..af8caf7ee42524188534a3daf32996dc491952d9 --- /dev/null +++ b/hyperparameter/c2/arf/arf-c2-20260504_204918/staged/public/val.csv @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:26e90c1170a57a14c05832ac88027722b1f3848f9662c7c09ef7c93dcba4cc01 +size 5176 diff --git a/hyperparameter/c2/arf/arf-c2-20260504_204918/train_20260504_204918.log b/hyperparameter/c2/arf/arf-c2-20260504_204918/train_20260504_204918.log new file mode 100644 index 0000000000000000000000000000000000000000..b1ff0db0a441725b0e993d67f844121104cd84fb --- /dev/null +++ b/hyperparameter/c2/arf/arf-c2-20260504_204918/train_20260504_204918.log @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:3b9dc164bd6de5fc64f515ea1bcebb4b7b3ace29ac180bbb867facdf7013a48d +size 579 diff --git a/hyperparameter/c2/arf/arf-c2-20260504_204947/_arf_generate.py b/hyperparameter/c2/arf/arf-c2-20260504_204947/_arf_generate.py new file mode 100644 index 0000000000000000000000000000000000000000..961fbca477246b08244ed63d85d8fd124d54d865 --- /dev/null +++ b/hyperparameter/c2/arf/arf-c2-20260504_204947/_arf_generate.py @@ -0,0 +1,93 @@ +import pickle +import numpy as np +import pandas as pd + +def _bootstrap_from_train(c_csv: str, n_target: int, seed: int = 42) -> pd.DataFrame: + """当 arfpy.forge 完全不可用时,从训练 CSV 有放回抽样,保证行数与列对齐。""" + src = pd.read_csv(c_csv, encoding="utf-8-sig", low_memory=False) + src = src.replace([np.inf, -np.inf], np.nan).dropna(axis=1, how="all") + src = src.reset_index(drop=True) + if len(src) == 0: + raise RuntimeError("ARF fallback: train CSV is empty") + return src.sample(n=n_target, replace=True, random_state=seed).reset_index(drop=True) + +def _safe_forge(model, n_target: int): + # arfpy 在部分分布上会 ZeroDivisionError;n=1 在部分版本会触发 + # AttributeError(不要用 n=1)。失败返回 None,由外层走 bootstrap。 + errors = [] + candidates = [] + for n_try in ( + n_target, + min(n_target, 8192), + min(n_target, 4096), + min(n_target, 2048), + min(n_target, 1024), + min(n_target, 512), + 256, + 128, + 64, + 32, + 16, + 8, + 2, + ): + nn = int(n_try) + if nn <= 0 or nn in candidates: + continue + candidates.append(nn) + for n_try in candidates: + try: + out = model.forge(n=n_try).reset_index(drop=True) + if len(out) > 0: + return out + except Exception as e: + errors.append(f"n={n_try}: {type(e).__name__}: {e}") + print("[ARF] forge failed after retries; last errors:", " | ".join(errors[-4:])) + return None + +n_target = int(1382) +c_csv = "/work/output-Benchmark-trainonly-v1/c2/arf/arf-c2-20260504_204947/staged/public/train.csv" +with open("/work/output-Benchmark-trainonly-v1/c2/arf/arf-c2-20260504_204947/arf_model.pkl", "rb") as f: + model = pickle.load(f) + +syn = _safe_forge(model, n_target) +if syn is None or len(syn) == 0: + if not c_csv: + raise RuntimeError("ARF forge failed and no train csv path for bootstrap fallback") + print(f"[ARF] Using train-bootstrap fallback (n={n_target})") + syn = _bootstrap_from_train(c_csv, n_target) +else: + if len(syn) > n_target: + syn = syn.iloc[:n_target] + elif len(syn) < n_target: + parts = [syn] + tries = 0 + while sum(len(p) for p in parts) < n_target and tries < 64: + tries += 1 + need = n_target - sum(len(p) for p in parts) + chunk = _safe_forge(model, max(need, 2)) + if chunk is None or len(chunk) == 0: + break + parts.append(chunk) + syn = pd.concat(parts, ignore_index=True).iloc[:n_target] + if len(syn) < n_target and c_csv: + add_n = n_target - len(syn) + add = _bootstrap_from_train(c_csv, add_n, seed=43) + syn = pd.concat([syn, add], ignore_index=True).iloc[:n_target] + +_ds_id = 'c2' +if _ds_id == "c19": + # 仅 c19:object 列内裸换行会使 pivot 用 csv.reader 统计到的「记录数」大于 DataFrame 行数 → Sw。 + for _col in syn.columns: + if syn[_col].dtype == object: + syn[_col] = ( + syn[_col] + .astype(str) + .str.replace("\r\n", " ", regex=False) + .str.replace("\n", " ", regex=False) + .str.replace("\r", " ", regex=False) + ) + syn = syn.iloc[:n_target].reset_index(drop=True) + +syn.to_csv("/work/output-Benchmark-trainonly-v1/c2/arf/arf-c2-20260504_204947/arf-c2-1382-20260504_205024.csv", index=False) +print(f"[ARF] Generated {len(syn)} rows (requested {n_target}) -> /work/output-Benchmark-trainonly-v1/c2/arf/arf-c2-20260504_204947/arf-c2-1382-20260504_205024.csv") diff --git a/hyperparameter/c2/arf/arf-c2-20260504_204947/_arf_train.py b/hyperparameter/c2/arf/arf-c2-20260504_204947/_arf_train.py new file mode 100644 index 0000000000000000000000000000000000000000..f6814d52aaea818a51e6eacb7a6cf96de225d1f4 --- /dev/null +++ b/hyperparameter/c2/arf/arf-c2-20260504_204947/_arf_train.py @@ -0,0 +1,47 @@ +import os +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 + q_low = float(os.environ.get("ARF_CLIP_QUANTILE_LOW", "0.001")) + q_high = float(os.environ.get("ARF_CLIP_QUANTILE_HIGH", "0.999")) + lo, hi = df[col].quantile(q_low), df[col].quantile(q_high) + if pd.notna(lo) and pd.notna(hi) and lo < hi: + df[col] = df[col].clip(lo, hi) + return df + +df = pd.read_csv("/work/output-Benchmark-trainonly-v1/c2/arf/arf-c2-20260504_204947/staged/public/train.csv") +df = _sanitize_for_arf(df) +num_trees = int(os.environ.get("ARF_NUM_TREES", "30")) +delta = float(os.environ.get("ARF_DELTA", "0")) +max_iters = int(os.environ.get("ARF_MAX_ITERS", "10")) +early_stop = (os.environ.get("ARF_EARLY_STOP", "true").strip().lower() in ("1", "true", "yes")) +verbose = (os.environ.get("ARF_VERBOSE", "true").strip().lower() in ("1", "true", "yes")) +min_node_size = int(os.environ.get("ARF_MIN_NODE_SIZE", "5")) +print(f"[ARF] Training on {len(df)} rows, {len(df.columns)} cols") +print(f"[ARF] Config num_trees={num_trees} delta={delta} max_iters={max_iters} early_stop={early_stop} min_node_size={min_node_size}") + +model = arf.arf(x=df, num_trees=num_trees, delta=delta, max_iters=max_iters, early_stop=early_stop, verbose=verbose, min_node_size=min_node_size) +if hasattr(model, "fit"): + model.fit() +elif hasattr(model, "forde"): + model.forde() +else: + raise RuntimeError("arfpy API: no fit() / forde()") + +with open("/work/output-Benchmark-trainonly-v1/c2/arf/arf-c2-20260504_204947/arf_model.pkl", "wb") as f: + pickle.dump(model, f) +print(f"[ARF] Model saved -> /work/output-Benchmark-trainonly-v1/c2/arf/arf-c2-20260504_204947/arf_model.pkl") diff --git a/hyperparameter/c2/arf/arf-c2-20260504_204947/arf-c2-1382-20260504_205024.csv b/hyperparameter/c2/arf/arf-c2-20260504_204947/arf-c2-1382-20260504_205024.csv new file mode 100644 index 0000000000000000000000000000000000000000..e0af1c69eb5fe9e0cee1b7859e8bab32b130b5e6 --- /dev/null +++ b/hyperparameter/c2/arf/arf-c2-20260504_204947/arf-c2-1382-20260504_205024.csv @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:f43f46946f888e3279c81aac941c09deb9efd59fe0fe162f051b59002d9a0c88 +size 41542 diff --git a/hyperparameter/c2/arf/arf-c2-20260504_204947/arf_model.pkl b/hyperparameter/c2/arf/arf-c2-20260504_204947/arf_model.pkl new file mode 100644 index 0000000000000000000000000000000000000000..606d2b8c017f50dea56463878f9dd44bed5da660 --- /dev/null +++ b/hyperparameter/c2/arf/arf-c2-20260504_204947/arf_model.pkl @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:3e0ffe5306fb2a384405dfe7c312ded4e426102c865c857342e05eb7d5a8474a +size 108011862 diff --git a/hyperparameter/c2/arf/arf-c2-20260504_204947/gen_20260504_205024.log b/hyperparameter/c2/arf/arf-c2-20260504_204947/gen_20260504_205024.log new file mode 100644 index 0000000000000000000000000000000000000000..ff79bbe04eacf4ec8e1c2d0a0a2601193599b213 --- /dev/null +++ b/hyperparameter/c2/arf/arf-c2-20260504_204947/gen_20260504_205024.log @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:3b9eeafef852e8d3af764df0c7ea079a814366eee5adbe92c444f583e02f5b70 +size 2615 diff --git a/hyperparameter/c2/arf/arf-c2-20260504_204947/input_snapshot.json b/hyperparameter/c2/arf/arf-c2-20260504_204947/input_snapshot.json new file mode 100644 index 0000000000000000000000000000000000000000..5fa654607f22f68d2aaa5e57809017787b5eb02b --- /dev/null +++ b/hyperparameter/c2/arf/arf-c2-20260504_204947/input_snapshot.json @@ -0,0 +1,36 @@ +{ + "dataset_id": "c2", + "model": "arf", + "inputs": { + "train_csv": { + "path": "/data/jialinzhang/SynthesizePipeline-server/DatasetNew/c2/c2-train.csv", + "exists": true, + "size": 42948, + "sha256": "17bc560fa96bd00fb3b526e1e65bc91210b701d0d0a4e8bb9b4c5196cab56def" + }, + "val_csv": { + "path": "/data/jialinzhang/SynthesizePipeline-server/DatasetNew/c2/c2-val.csv", + "exists": true, + "size": 5349, + "sha256": "61e565eca62e65a7dccd9d51039a3170413379e10fc494e25870e7c4294863c9" + }, + "test_csv": { + "path": "/data/jialinzhang/SynthesizePipeline-server/DatasetNew/c2/c2-test.csv", + "exists": true, + "size": 5448, + "sha256": "cbcbb062a1faf5fa44b66c80532baa229e05b94fc42137269761e6c6d84af20a" + }, + "profile_json": { + "path": "/data/jialinzhang/SynthesizePipeline-server/DatasetNew/artifacts/data_core/tabular/c2/c2-dataset_profile.json", + "exists": true, + "size": 3240, + "sha256": "526b7163b2076c93c0bf4638438081ee8a6907065d5b608faa40d1a3dbc2a27b" + }, + "contract_json": { + "path": "/data/jialinzhang/SynthesizePipeline-server/DatasetNew/artifacts/data_core/tabular/c2/c2-dataset_contract_v1.json", + "exists": true, + "size": 3731, + "sha256": "fb595a876054c2ee9b4e10cfe83a5691588de1d25466cbb9d473c18ad3604009" + } + } +} \ No newline at end of file diff --git a/hyperparameter/c2/arf/arf-c2-20260504_204947/public_gate/normalized_schema_snapshot.json b/hyperparameter/c2/arf/arf-c2-20260504_204947/public_gate/normalized_schema_snapshot.json new file mode 100644 index 0000000000000000000000000000000000000000..689b1d00d96508e44ba40e58dc4560e19afc2b3b --- /dev/null +++ b/hyperparameter/c2/arf/arf-c2-20260504_204947/public_gate/normalized_schema_snapshot.json @@ -0,0 +1,144 @@ +{ + "dataset_id": "c2", + "target_column": "class", + "task_type": "classification", + "columns": [ + { + "name": "buying", + "role": "feature", + "semantic_type": "categorical", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 4, + "unique_ratio": 0.002894, + "example_values": [ + "vhigh", + "med", + "high", + "low" + ] + } + }, + { + "name": "maint", + "role": "feature", + "semantic_type": "categorical", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 4, + "unique_ratio": 0.002894, + "example_values": [ + "vhigh", + "low", + "med", + "high" + ] + } + }, + { + "name": "doors", + "role": "feature", + "semantic_type": "categorical", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 4, + "unique_ratio": 0.002894, + "example_values": [ + "2", + "5more", + "3", + "4" + ] + } + }, + { + "name": "persons", + "role": "feature", + "semantic_type": "categorical", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 3, + "unique_ratio": 0.002171, + "example_values": [ + "2", + "4", + "more" + ] + } + }, + { + "name": "lug_boot", + "role": "feature", + "semantic_type": "categorical", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 3, + "unique_ratio": 0.002171, + "example_values": [ + "small", + "big", + "med" + ] + } + }, + { + "name": "safety", + "role": "feature", + "semantic_type": "categorical", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 3, + "unique_ratio": 0.002171, + "example_values": [ + "low", + "high", + "med" + ] + } + }, + { + "name": "class", + "role": "target", + "semantic_type": "categorical", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 4, + "unique_ratio": 0.002894, + "example_values": [ + "unacc", + "good", + "acc", + "vgood" + ] + } + } + ] +} \ No newline at end of file diff --git a/hyperparameter/c2/arf/arf-c2-20260504_204947/public_gate/public_gate_report.json b/hyperparameter/c2/arf/arf-c2-20260504_204947/public_gate/public_gate_report.json new file mode 100644 index 0000000000000000000000000000000000000000..2e4cdcb2a4e28e40d59b17a83e773f622b7636a5 --- /dev/null +++ b/hyperparameter/c2/arf/arf-c2-20260504_204947/public_gate/public_gate_report.json @@ -0,0 +1,37 @@ +{ + "dataset_id": "c2", + "status": "pass", + "checks": [ + { + "check_id": "PG001_csv_parse_ok", + "status": "pass" + }, + { + "check_id": "PG002_split_header_consistent", + "status": "pass" + }, + { + "check_id": "PG003_profile_header_match", + "status": "pass" + }, + { + "check_id": "PG004_missing_token_normalized", + "status": "pass" + }, + { + "check_id": "PG005_semantic_type_validated", + "status": "pass" + }, + { + "check_id": "PG006_target_defined_and_valid", + "status": "pass" + } + ], + "target_column": "class", + "task_type": "classification", + "input_splits": { + "train": "/data/jialinzhang/SynthesizePipeline-server/DatasetNew/c2/c2-train.csv", + "val": "/data/jialinzhang/SynthesizePipeline-server/DatasetNew/c2/c2-val.csv", + "test": "/data/jialinzhang/SynthesizePipeline-server/DatasetNew/c2/c2-test.csv" + } +} \ No newline at end of file diff --git a/hyperparameter/c2/arf/arf-c2-20260504_204947/public_gate/staged_input_manifest.json b/hyperparameter/c2/arf/arf-c2-20260504_204947/public_gate/staged_input_manifest.json new file mode 100644 index 0000000000000000000000000000000000000000..417151470435f0821ad68bba0f14f258265e6c1a --- /dev/null +++ b/hyperparameter/c2/arf/arf-c2-20260504_204947/public_gate/staged_input_manifest.json @@ -0,0 +1,149 @@ +{ + "dataset_id": "c2", + "target_column": "class", + "task_type": "classification", + "train_csv": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/c2/arf/arf-c2-20260504_204947/staged/public/train.csv", + "val_csv": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/c2/arf/arf-c2-20260504_204947/staged/public/val.csv", + "test_csv": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/c2/arf/arf-c2-20260504_204947/staged/public/test.csv", + "features_json": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/c2/arf/arf-c2-20260504_204947/staged/public/staged_features.json", + "public_gate_report": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/c2/arf/arf-c2-20260504_204947/public_gate/public_gate_report.json", + "column_schema": [ + { + "name": "buying", + "role": "feature", + "semantic_type": "categorical", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 4, + "unique_ratio": 0.002894, + "example_values": [ + "vhigh", + "med", + "high", + "low" + ] + } + }, + { + "name": "maint", + "role": "feature", + "semantic_type": "categorical", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 4, + "unique_ratio": 0.002894, + "example_values": [ + "vhigh", + "low", + "med", + "high" + ] + } + }, + { + "name": "doors", + "role": "feature", + "semantic_type": "categorical", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 4, + "unique_ratio": 0.002894, + "example_values": [ + "2", + "5more", + "3", + "4" + ] + } + }, + { + "name": "persons", + "role": "feature", + "semantic_type": "categorical", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 3, + "unique_ratio": 0.002171, + "example_values": [ + "2", + "4", + "more" + ] + } + }, + { + "name": "lug_boot", + "role": "feature", + "semantic_type": "categorical", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 3, + "unique_ratio": 0.002171, + "example_values": [ + "small", + "big", + "med" + ] + } + }, + { + "name": "safety", + "role": "feature", + "semantic_type": "categorical", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 3, + "unique_ratio": 0.002171, + "example_values": [ + "low", + "high", + "med" + ] + } + }, + { + "name": "class", + "role": "target", + "semantic_type": "categorical", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 4, + "unique_ratio": 0.002894, + "example_values": [ + "unacc", + "good", + "acc", + "vgood" + ] + } + } + ] +} \ No newline at end of file diff --git a/hyperparameter/c2/arf/arf-c2-20260504_204947/run_config.json b/hyperparameter/c2/arf/arf-c2-20260504_204947/run_config.json new file mode 100644 index 0000000000000000000000000000000000000000..f614bfe40482683269b1ce11c849322e3d40d859 --- /dev/null +++ b/hyperparameter/c2/arf/arf-c2-20260504_204947/run_config.json @@ -0,0 +1,46 @@ +{ + "schema_version": 1, + "recorded_at": "2026-05-04T20:49:47", + "dataset_id": "c2", + "model": "arf", + "work_dir": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/c2/arf/arf-c2-20260504_204947", + "dataset_source_requested": "new", + "dataset_source_resolved": "new", + "cli_args": { + "model": "arf", + "dataset": "c2", + "dataset_source": "new", + "train": true, + "generate": true, + "num_rows": 0, + "epochs": null, + "output_dir": null, + "model_dir": null, + "work_dir": null, + "resume": false, + "no_stats": false + }, + "resolved": { + "num_rows": 1382, + "model_path": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/c2/arf/arf-c2-20260504_204947/arf_model.pkl", + "output_csv": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/c2/arf/arf-c2-20260504_204947/arf-c2-1382-20260504_205024.csv" + }, + "input_artifacts": { + "public_gate_report": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/c2/arf/arf-c2-20260504_204947/public_gate/public_gate_report.json", + "public_manifest": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/c2/arf/arf-c2-20260504_204947/public_gate/staged_input_manifest.json", + "model_manifest": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/c2/arf/arf-c2-20260504_204947/staged/arf/model_input_manifest.json", + "train_csv": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/c2/arf/arf-c2-20260504_204947/staged/public/train.csv", + "features_json": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/c2/arf/arf-c2-20260504_204947/staged/public/staged_features.json", + "target_column": "class", + "task_type": "classification" + }, + "env_overrides": { + "ARF_CLIP_QUANTILE_HIGH": "0.9995", + "ARF_CLIP_QUANTILE_LOW": "0.0005", + "ARF_DELTA": "0.02", + "ARF_EARLY_STOP": "false", + "ARF_MAX_ITERS": "20", + "ARF_MIN_NODE_SIZE": "1", + "ARF_NUM_TREES": "150" + } +} \ No newline at end of file diff --git a/hyperparameter/c2/arf/arf-c2-20260504_204947/runtime_result.json b/hyperparameter/c2/arf/arf-c2-20260504_204947/runtime_result.json new file mode 100644 index 0000000000000000000000000000000000000000..9435ff2c3f17b681f2edefd2a3a917f211140e34 --- /dev/null +++ b/hyperparameter/c2/arf/arf-c2-20260504_204947/runtime_result.json @@ -0,0 +1,27 @@ +{ + "dataset_id": "c2", + "model": "arf", + "run_id": "arf-c2-20260504_204947", + "public_gate_status": "pass", + "adapter_ready_status": "pass", + "train_status": "success", + "generate_status": "success", + "reason_code": null, + "reason_detail": null, + "artifacts": { + "synthetic_csv": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/c2/arf/arf-c2-20260504_204947/arf-c2-1382-20260504_205024.csv", + "model_path": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/c2/arf/arf-c2-20260504_204947/arf_model.pkl" + }, + "timings": { + "train": { + "started_at": "2026-05-04T20:49:47", + "ended_at": "2026-05-04T20:50:24", + "duration_sec": 37.599 + }, + "generate": { + "started_at": "2026-05-04T20:50:24", + "ended_at": "2026-05-04T20:50:27", + "duration_sec": 3.222 + } + } +} \ No newline at end of file diff --git a/hyperparameter/c2/arf/arf-c2-20260504_204947/staged/arf/adapter_report.json b/hyperparameter/c2/arf/arf-c2-20260504_204947/staged/arf/adapter_report.json new file mode 100644 index 0000000000000000000000000000000000000000..79cf841fe075abafc39696cd055772cdb19c6349 --- /dev/null +++ b/hyperparameter/c2/arf/arf-c2-20260504_204947/staged/arf/adapter_report.json @@ -0,0 +1,7 @@ +{ + "adapter_ready_status": "pass", + "adapter_fail_reason_code": null, + "adapter_fail_detail": null, + "adapter_transforms_applied": [], + "model_input_manifest": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/c2/arf/arf-c2-20260504_204947/staged/arf/model_input_manifest.json" +} \ No newline at end of file diff --git a/hyperparameter/c2/arf/arf-c2-20260504_204947/staged/arf/adapter_transforms_applied.json b/hyperparameter/c2/arf/arf-c2-20260504_204947/staged/arf/adapter_transforms_applied.json new file mode 100644 index 0000000000000000000000000000000000000000..0637a088a01e8ddab3bf3fa98dbe804cbde1a0dc --- /dev/null +++ b/hyperparameter/c2/arf/arf-c2-20260504_204947/staged/arf/adapter_transforms_applied.json @@ -0,0 +1 @@ +[] \ No newline at end of file diff --git a/hyperparameter/c2/arf/arf-c2-20260504_204947/staged/arf/model_input_manifest.json b/hyperparameter/c2/arf/arf-c2-20260504_204947/staged/arf/model_input_manifest.json new file mode 100644 index 0000000000000000000000000000000000000000..a418fd702f7b4a2ff967668b70d3bd3d78aa7d90 --- /dev/null +++ b/hyperparameter/c2/arf/arf-c2-20260504_204947/staged/arf/model_input_manifest.json @@ -0,0 +1,151 @@ +{ + "dataset_id": "c2", + "model": "arf", + "target_column": "class", + "task_type": "classification", + "column_schema": [ + { + "name": "buying", + "role": "feature", + "semantic_type": "categorical", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 4, + "unique_ratio": 0.002894, + "example_values": [ + "vhigh", + "med", + "high", + "low" + ] + } + }, + { + "name": "maint", + "role": "feature", + "semantic_type": "categorical", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 4, + "unique_ratio": 0.002894, + "example_values": [ + "vhigh", + "low", + "med", + "high" + ] + } + }, + { + "name": "doors", + "role": "feature", + "semantic_type": "categorical", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 4, + "unique_ratio": 0.002894, + "example_values": [ + "2", + "5more", + "3", + "4" + ] + } + }, + { + "name": "persons", + "role": "feature", + "semantic_type": "categorical", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 3, + "unique_ratio": 0.002171, + "example_values": [ + "2", + "4", + "more" + ] + } + }, + { + "name": "lug_boot", + "role": "feature", + "semantic_type": "categorical", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 3, + "unique_ratio": 0.002171, + "example_values": [ + "small", + "big", + "med" + ] + } + }, + { + "name": "safety", + "role": "feature", + "semantic_type": "categorical", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 3, + "unique_ratio": 0.002171, + "example_values": [ + "low", + "high", + "med" + ] + } + }, + { + "name": "class", + "role": "target", + "semantic_type": "categorical", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 4, + "unique_ratio": 0.002894, + "example_values": [ + "unacc", + "good", + "acc", + "vgood" + ] + } + } + ], + "public_manifest": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/c2/arf/arf-c2-20260504_204947/public_gate/staged_input_manifest.json", + "train_csv": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/c2/arf/arf-c2-20260504_204947/staged/public/train.csv", + "val_csv": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/c2/arf/arf-c2-20260504_204947/staged/public/val.csv", + "test_csv": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/c2/arf/arf-c2-20260504_204947/staged/public/test.csv", + "features_json": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/c2/arf/arf-c2-20260504_204947/staged/public/staged_features.json", + "public_gate_report": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/c2/arf/arf-c2-20260504_204947/public_gate/public_gate_report.json" +} \ No newline at end of file diff --git a/hyperparameter/c2/arf/arf-c2-20260504_204947/staged/public/staged_features.json b/hyperparameter/c2/arf/arf-c2-20260504_204947/staged/public/staged_features.json new file mode 100644 index 0000000000000000000000000000000000000000..61783861dd5de501592f76acb0469cf3f3b2622a --- /dev/null +++ b/hyperparameter/c2/arf/arf-c2-20260504_204947/staged/public/staged_features.json @@ -0,0 +1,37 @@ +[ + { + "feature_name": "buying", + "data_type": "categorical", + "is_target": false + }, + { + "feature_name": "maint", + "data_type": "categorical", + "is_target": false + }, + { + "feature_name": "doors", + "data_type": "categorical", + "is_target": false + }, + { + "feature_name": "persons", + "data_type": "categorical", + "is_target": false + }, + { + "feature_name": "lug_boot", + "data_type": "categorical", + "is_target": false + }, + { + "feature_name": "safety", + "data_type": "categorical", + "is_target": false + }, + { + "feature_name": "class", + "data_type": "categorical", + "is_target": true + } +] \ No newline at end of file diff --git a/hyperparameter/c2/arf/arf-c2-20260504_204947/staged/public/test.csv b/hyperparameter/c2/arf/arf-c2-20260504_204947/staged/public/test.csv new file mode 100644 index 0000000000000000000000000000000000000000..392a0d7189a34d8f13ecf20a99d64b03230d517c --- /dev/null +++ b/hyperparameter/c2/arf/arf-c2-20260504_204947/staged/public/test.csv @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:b48114a7d0bc5bd9a07920f903c8d4aba8bf98bf2a66a050da03588b0245ca73 +size 5273 diff --git a/hyperparameter/c2/arf/arf-c2-20260504_204947/staged/public/train.csv b/hyperparameter/c2/arf/arf-c2-20260504_204947/staged/public/train.csv new file mode 100644 index 0000000000000000000000000000000000000000..da4f4d55134eebc0e51157d0d467536371db1484 --- /dev/null +++ b/hyperparameter/c2/arf/arf-c2-20260504_204947/staged/public/train.csv @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:4aed00c2c2b3f88a55a7ebff31b2e1b5e0e32fb0a7267e0b9d2779cd23e434dd +size 41565 diff --git a/hyperparameter/c2/arf/arf-c2-20260504_204947/staged/public/val.csv b/hyperparameter/c2/arf/arf-c2-20260504_204947/staged/public/val.csv new file mode 100644 index 0000000000000000000000000000000000000000..af8caf7ee42524188534a3daf32996dc491952d9 --- /dev/null +++ b/hyperparameter/c2/arf/arf-c2-20260504_204947/staged/public/val.csv @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:26e90c1170a57a14c05832ac88027722b1f3848f9662c7c09ef7c93dcba4cc01 +size 5176 diff --git a/hyperparameter/c2/arf/arf-c2-20260504_204947/train_20260504_204947.log b/hyperparameter/c2/arf/arf-c2-20260504_204947/train_20260504_204947.log new file mode 100644 index 0000000000000000000000000000000000000000..1d6c2c5901ceef53f9bbb9a3d670ae5f1de7dc53 --- /dev/null +++ b/hyperparameter/c2/arf/arf-c2-20260504_204947/train_20260504_204947.log @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:3934be60c1e2b41f0f5b27bb3e0a34894ee31149271aaaaf2ba55453b4aaee0e +size 579 diff --git a/hyperparameter/c2/bayesnet/bayesnet-c2-20260504_204651/_bayesnet_generate.py b/hyperparameter/c2/bayesnet/bayesnet-c2-20260504_204651/_bayesnet_generate.py new file mode 100644 index 0000000000000000000000000000000000000000..c697c2e7574f7a39f99551117e20c94efea59d3b --- /dev/null +++ b/hyperparameter/c2/bayesnet/bayesnet-c2-20260504_204651/_bayesnet_generate.py @@ -0,0 +1,105 @@ + +import pickle +import subprocess +import sys +import warnings + +import numpy as np +import pandas as pd +from pgmpy.sampling import BayesianModelSampling + +warnings.filterwarnings("ignore", category=FutureWarning) + +def _ensure_cloudpickle(): + try: + import cloudpickle # noqa: F401 + except ModuleNotFoundError: + subprocess.check_call( + [sys.executable, "-m", "pip", "install", "--quiet", "cloudpickle"], + ) + +_ensure_cloudpickle() + +with open("/work/output-Benchmark-trainonly-v1/c2/bayesnet/bayesnet-c2-20260504_204651/bayesnet_model.pkl", "rb") as f: + bundle = pickle.load(f) + +network = bundle["network"] +inverse = bundle["inverse"] +cols = bundle["column_order"] +integer_columns = set(bundle.get("integer_columns") or []) +full_order = bundle.get("full_column_order") or cols +const_cols = bundle.get("const_cols") or {} + +num_rows = int(1382) +sampler = BayesianModelSampling(network) +raw = sampler.forward_sample(size=num_rows, show_progress=False) +raw = raw.reset_index(drop=True) +if len(raw) > num_rows: + raw = raw.iloc[:num_rows] +_tries = 0 +while len(raw) < num_rows and _tries < 64: + _tries += 1 + nextra = min(10000, num_rows - len(raw)) + more = sampler.forward_sample(size=max(nextra, 1), show_progress=False) + more = more.reset_index(drop=True) + if len(more) == 0: + break + raw = pd.concat([raw, more], ignore_index=True) + if len(raw) > num_rows: + raw = raw.iloc[:num_rows] + +out = pd.DataFrame(index=raw.index) +rng = np.random.default_rng() + +for c in cols: + if c in inverse["categorical"]: + levels = inverse["categorical"][c] + idx = raw[c].astype(int).to_numpy() + idx = np.clip(idx, 0, max(0, len(levels) - 1)) + out[c] = [levels[i] for i in idx] + else: + edges = np.asarray(inverse["continuous"][c], dtype=float) + if edges.size < 2: + out[c] = 0.0 + else: + nbin = edges.size - 1 + res = [] + for k in raw[c].astype(int).to_numpy(): + k = int(k) + if k < 0: + k = 0 + if k >= nbin: + k = nbin - 1 + lo, hi = float(edges[k]), float(edges[k + 1]) + if hi < lo: + lo, hi = hi, lo + v = rng.uniform(lo, hi) + if c in integer_columns: + v = int(round(v)) + res.append(v) + out[c] = res + +final = pd.DataFrame(index=out.index) +for c in full_order: + if c in const_cols: + final[c] = const_cols[c] + elif c in out.columns: + final[c] = out[c] + +dtypes = bundle.get("original_dtypes") or {} +for c, dts in dtypes.items(): + if c not in final.columns: + continue + try: + if "int" in dts: + final[c] = pd.to_numeric(final[c], errors="coerce").astype("Int64") + elif "float" in dts: + final[c] = pd.to_numeric(final[c], errors="coerce") + except Exception: + pass + +if len(final) != num_rows: + final = final.iloc[:num_rows].copy() +final = final.reset_index(drop=True) +final.to_csv("/work/output-Benchmark-trainonly-v1/c2/bayesnet/bayesnet-c2-20260504_204651/bayesnet-c2-1382-20260504_204659.csv", index=False) +print(f"[BayesNet] Generated {len(final)} rows (requested {num_rows}) -> /work/output-Benchmark-trainonly-v1/c2/bayesnet/bayesnet-c2-20260504_204651/bayesnet-c2-1382-20260504_204659.csv") diff --git a/hyperparameter/c2/bayesnet/bayesnet-c2-20260504_204651/_bayesnet_train.py b/hyperparameter/c2/bayesnet/bayesnet-c2-20260504_204651/_bayesnet_train.py new file mode 100644 index 0000000000000000000000000000000000000000..51188b8f6575e692d2c6be945df59e0efd6bd4d5 --- /dev/null +++ b/hyperparameter/c2/bayesnet/bayesnet-c2-20260504_204651/_bayesnet_train.py @@ -0,0 +1,146 @@ + +import json +import os +import pickle +import subprocess +import sys +import warnings + +import numpy as np +import pandas as pd +from pgmpy.estimators import TreeSearch +from pgmpy.models import DiscreteBayesianNetwork +warnings.filterwarnings("ignore", category=FutureWarning) + +def _ensure_cloudpickle(): + try: + import cloudpickle # noqa: F401 + except ModuleNotFoundError: + subprocess.check_call( + [sys.executable, "-m", "pip", "install", "--quiet", "cloudpickle"], + ) + +_ensure_cloudpickle() + +with open("/work/output-Benchmark-trainonly-v1/c2/bayesnet/bayesnet-c2-20260504_204651/bayesnet_coltypes.json", "r", encoding="utf-8") as _f: + colmeta = json.load(_f) +integer_columns = set(colmeta.get("integer_columns") or []) + +df = pd.read_csv("/work/output-Benchmark-trainonly-v1/c2/bayesnet/bayesnet-c2-20260504_204651/staged/public/train.csv") +df = df.dropna(axis=1, how="all") +full_column_order = list(df.columns) + +const_cols = {} +for col in list(df.columns): + if df[col].nunique(dropna=True) <= 1: + const_cols[col] = df[col].iloc[0] if len(df) > 0 else None + df = df.drop(columns=[col]) + print(f"[BayesNet] Dropped zero-variance column '{col}'") + +const_path = "/work/output-Benchmark-trainonly-v1/c2/bayesnet/bayesnet-c2-20260504_204651/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 = int(os.environ.get("BAYESNET_MAX_BINS", "0")) +max_cat_levels = int(os.environ.get("BAYESNET_MAX_CAT_LEVELS", "0")) +if max_bins <= 0: + max_bins = 10 +if max_cat_levels <= 0: + max_cat_levels = 256 +auto_caps = os.environ.get("BAYESNET_DISABLE_AUTO_CAPS", "0").strip().lower() not in ("1", "true", "yes") +if auto_caps and max_bins == 10 and max_cat_levels == 256: + if _n_plan > 35 or _n_samples > 200000: + max_bins = 5 + max_cat_levels = 64 + if _n_plan > 55: + max_bins = 4 + max_cat_levels = 32 +struct_rows = int(os.environ.get("BAYESNET_STRUCT_ROWS", "25000")) +fit_rows = int(os.environ.get("BAYESNET_FIT_ROWS", "120000")) +estimator_type = (os.environ.get("BAYESNET_ESTIMATOR_TYPE", "chow-liu") or "chow-liu").strip() +edge_weights_fn = (os.environ.get("BAYESNET_EDGE_WEIGHTS_FN", "mutual_info") or "mutual_info").strip() +root_node = (os.environ.get("BAYESNET_ROOT_NODE", "") or "").strip() or None +n_jobs = int(os.environ.get("BAYESNET_N_JOBS", "1")) +print( + f"[BayesNet] max_bins={max_bins}, max_cat_levels={max_cat_levels}, struct_rows={struct_rows}, fit_rows={fit_rows}, estimator_type={estimator_type}, edge_weights_fn={edge_weights_fn}, root_node={root_node}, n_jobs={n_jobs} " + f"(cols_in_df={_n_plan}, rows={_n_samples})" +) + +for entry in colmeta["columns"]: + name = entry["name"] + if name not in df.columns: + continue + kind = entry["type"] + s = df[name] + if kind == "categorical": + s2 = s.astype(str).fillna("__NA__") + counts = s2.value_counts(dropna=False) + if len(counts) > max_cat_levels: + keep = set(counts.index[: max_cat_levels - 1].tolist()) + s2 = s2.map(lambda x: x if x in keep else "__OTHER__") + uniques = sorted(s2.dropna().unique(), key=lambda x: str(x)) + mapping = {str(v): i for i, v in enumerate(uniques)} + inverse["categorical"][name] = [uniques[i] for i in range(len(uniques))] + enc[name] = s2.map(lambda x, m=mapping: m.get(str(x), 0)).astype(int) + else: + s_num = pd.to_numeric(s, errors="coerce") + nu = int(s_num.nunique(dropna=True)) + q = min(max_bins, max(2, nu)) + if nu < 2: + enc[name] = np.zeros(len(s_num), dtype=int) + lo, hi = float(s_num.min()), float(s_num.max()) + inverse["continuous"][name] = [lo, hi] + else: + try: + _, bins = pd.qcut( + s_num, q=q, retbins=True, duplicates="drop" + ) + except Exception: + med = float(s_num.median()) + s2 = s_num.fillna(med) + _, bins = pd.qcut( + s2, q=min(q, 3), retbins=True, duplicates="drop" + ) + bins = np.asarray(bins, dtype=float) + lab = pd.cut( + s_num, bins=bins, labels=False, include_lowest=True + ) + enc[name] = lab.fillna(0).astype(int) + inverse["continuous"][name] = bins.tolist() + +print(f"[BayesNet] Training on {len(enc)} rows, {len(enc.columns)} cols (encoded)") + +enc_struct = enc +if len(enc) > struct_rows: + enc_struct = enc.sample(n=struct_rows, random_state=0, replace=False) + print(f"[BayesNet] TreeSearch on {len(enc_struct)} rows (subsample; full n={len(enc)})") +dag = TreeSearch(enc_struct, root_node=root_node, n_jobs=n_jobs).estimate(estimator_type=estimator_type, edge_weights_fn=edge_weights_fn, show_progress=False) +for col in enc.columns: + if col not in dag.nodes(): + dag.add_node(col) + print(f"[BayesNet] Added isolated node to DAG: {col}") +network = DiscreteBayesianNetwork(dag) +enc_fit = enc +if len(enc) > fit_rows: + enc_fit = enc.sample(n=fit_rows, random_state=1, replace=False) + print(f"[BayesNet] fit() on {len(enc_fit)} rows (full n={len(enc)})") +network.fit(enc_fit) + +bundle = { + "network": network, + "inverse": inverse, + "column_order": list(enc.columns), + "full_column_order": full_column_order, + "integer_columns": list(integer_columns), + "original_dtypes": {c: str(df[c].dtype) for c in enc.columns}, + "const_cols": const_cols, +} +with open("/work/output-Benchmark-trainonly-v1/c2/bayesnet/bayesnet-c2-20260504_204651/bayesnet_model.pkl", "wb") as _f: + pickle.dump(bundle, _f) +print(f"[BayesNet] Model saved -> /work/output-Benchmark-trainonly-v1/c2/bayesnet/bayesnet-c2-20260504_204651/bayesnet_model.pkl") diff --git a/hyperparameter/c2/bayesnet/bayesnet-c2-20260504_204651/bayesnet-c2-1382-20260504_204659.csv b/hyperparameter/c2/bayesnet/bayesnet-c2-20260504_204651/bayesnet-c2-1382-20260504_204659.csv new file mode 100644 index 0000000000000000000000000000000000000000..8f2bbf42d3514130e8d014374e089430a597037b --- /dev/null +++ b/hyperparameter/c2/bayesnet/bayesnet-c2-20260504_204651/bayesnet-c2-1382-20260504_204659.csv @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:09fb0a8eacecb9bd41437483b78fbe73c2f8d9d0a3e08747a7a52fe8f2141c89 +size 41572 diff --git a/hyperparameter/c2/bayesnet/bayesnet-c2-20260504_204651/bayesnet_coltypes.json b/hyperparameter/c2/bayesnet/bayesnet-c2-20260504_204651/bayesnet_coltypes.json new file mode 100644 index 0000000000000000000000000000000000000000..dc49694e781f314f19b59a568715784a7cabec24 --- /dev/null +++ b/hyperparameter/c2/bayesnet/bayesnet-c2-20260504_204651/bayesnet_coltypes.json @@ -0,0 +1,33 @@ +{ + "columns": [ + { + "name": "buying", + "type": "categorical" + }, + { + "name": "maint", + "type": "categorical" + }, + { + "name": "doors", + "type": "categorical" + }, + { + "name": "persons", + "type": "categorical" + }, + { + "name": "lug_boot", + "type": "categorical" + }, + { + "name": "safety", + "type": "categorical" + }, + { + "name": "class", + "type": "categorical" + } + ], + "integer_columns": [] +} \ No newline at end of file diff --git a/hyperparameter/c2/bayesnet/bayesnet-c2-20260504_204651/bayesnet_model.pkl b/hyperparameter/c2/bayesnet/bayesnet-c2-20260504_204651/bayesnet_model.pkl new file mode 100644 index 0000000000000000000000000000000000000000..a41a2cb32a11c469c794a576140511b67c8f7bdb --- /dev/null +++ b/hyperparameter/c2/bayesnet/bayesnet-c2-20260504_204651/bayesnet_model.pkl @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:c9fc1dfaabb7725d9da65e2853e0e7d4de92da7281a7237ef5c6909e01f2a513 +size 4250 diff --git a/hyperparameter/c2/bayesnet/bayesnet-c2-20260504_204651/const_cols.json b/hyperparameter/c2/bayesnet/bayesnet-c2-20260504_204651/const_cols.json new file mode 100644 index 0000000000000000000000000000000000000000..9e26dfeeb6e641a33dae4961196235bdb965b21b --- /dev/null +++ b/hyperparameter/c2/bayesnet/bayesnet-c2-20260504_204651/const_cols.json @@ -0,0 +1 @@ +{} \ No newline at end of file diff --git a/hyperparameter/c2/bayesnet/bayesnet-c2-20260504_204651/gen_20260504_204659.log b/hyperparameter/c2/bayesnet/bayesnet-c2-20260504_204651/gen_20260504_204659.log new file mode 100644 index 0000000000000000000000000000000000000000..bfb0bc57d856e6ed3bef1dfe2af0b072833844ea --- /dev/null +++ b/hyperparameter/c2/bayesnet/bayesnet-c2-20260504_204651/gen_20260504_204659.log @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:7ad05c939a9d29d88455d7e6bc5a9d974750d8277cfe7f91718bd11442828a28 +size 3660 diff --git a/hyperparameter/c2/bayesnet/bayesnet-c2-20260504_204651/input_snapshot.json b/hyperparameter/c2/bayesnet/bayesnet-c2-20260504_204651/input_snapshot.json new file mode 100644 index 0000000000000000000000000000000000000000..85fdc398e0d261ad97c34409134cc4aebb1bb672 --- /dev/null +++ b/hyperparameter/c2/bayesnet/bayesnet-c2-20260504_204651/input_snapshot.json @@ -0,0 +1,36 @@ +{ + "dataset_id": "c2", + "model": "bayesnet", + "inputs": { + "train_csv": { + "path": "/data/jialinzhang/SynthesizePipeline-server/DatasetNew/c2/c2-train.csv", + "exists": true, + "size": 42948, + "sha256": "17bc560fa96bd00fb3b526e1e65bc91210b701d0d0a4e8bb9b4c5196cab56def" + }, + "val_csv": { + "path": "/data/jialinzhang/SynthesizePipeline-server/DatasetNew/c2/c2-val.csv", + "exists": true, + "size": 5349, + "sha256": "61e565eca62e65a7dccd9d51039a3170413379e10fc494e25870e7c4294863c9" + }, + "test_csv": { + "path": "/data/jialinzhang/SynthesizePipeline-server/DatasetNew/c2/c2-test.csv", + "exists": true, + "size": 5448, + "sha256": "cbcbb062a1faf5fa44b66c80532baa229e05b94fc42137269761e6c6d84af20a" + }, + "profile_json": { + "path": "/data/jialinzhang/SynthesizePipeline-server/DatasetNew/artifacts/data_core/tabular/c2/c2-dataset_profile.json", + "exists": true, + "size": 3240, + "sha256": "526b7163b2076c93c0bf4638438081ee8a6907065d5b608faa40d1a3dbc2a27b" + }, + "contract_json": { + "path": "/data/jialinzhang/SynthesizePipeline-server/DatasetNew/artifacts/data_core/tabular/c2/c2-dataset_contract_v1.json", + "exists": true, + "size": 3731, + "sha256": "fb595a876054c2ee9b4e10cfe83a5691588de1d25466cbb9d473c18ad3604009" + } + } +} \ No newline at end of file diff --git a/hyperparameter/c2/bayesnet/bayesnet-c2-20260504_204651/public_gate/normalized_schema_snapshot.json b/hyperparameter/c2/bayesnet/bayesnet-c2-20260504_204651/public_gate/normalized_schema_snapshot.json new file mode 100644 index 0000000000000000000000000000000000000000..689b1d00d96508e44ba40e58dc4560e19afc2b3b --- /dev/null +++ b/hyperparameter/c2/bayesnet/bayesnet-c2-20260504_204651/public_gate/normalized_schema_snapshot.json @@ -0,0 +1,144 @@ +{ + "dataset_id": "c2", + "target_column": "class", + "task_type": "classification", + "columns": [ + { + "name": "buying", + "role": "feature", + "semantic_type": "categorical", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 4, + "unique_ratio": 0.002894, + "example_values": [ + "vhigh", + "med", + "high", + "low" + ] + } + }, + { + "name": "maint", + "role": "feature", + "semantic_type": "categorical", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 4, + "unique_ratio": 0.002894, + "example_values": [ + "vhigh", + "low", + "med", + "high" + ] + } + }, + { + "name": "doors", + "role": "feature", + "semantic_type": "categorical", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 4, + "unique_ratio": 0.002894, + "example_values": [ + "2", + "5more", + "3", + "4" + ] + } + }, + { + "name": "persons", + "role": "feature", + "semantic_type": "categorical", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 3, + "unique_ratio": 0.002171, + "example_values": [ + "2", + "4", + "more" + ] + } + }, + { + "name": "lug_boot", + "role": "feature", + "semantic_type": "categorical", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 3, + "unique_ratio": 0.002171, + "example_values": [ + "small", + "big", + "med" + ] + } + }, + { + "name": "safety", + "role": "feature", + "semantic_type": "categorical", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 3, + "unique_ratio": 0.002171, + "example_values": [ + "low", + "high", + "med" + ] + } + }, + { + "name": "class", + "role": "target", + "semantic_type": "categorical", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 4, + "unique_ratio": 0.002894, + "example_values": [ + "unacc", + "good", + "acc", + "vgood" + ] + } + } + ] +} \ No newline at end of file diff --git a/hyperparameter/c2/bayesnet/bayesnet-c2-20260504_204651/public_gate/public_gate_report.json b/hyperparameter/c2/bayesnet/bayesnet-c2-20260504_204651/public_gate/public_gate_report.json new file mode 100644 index 0000000000000000000000000000000000000000..2e4cdcb2a4e28e40d59b17a83e773f622b7636a5 --- /dev/null +++ b/hyperparameter/c2/bayesnet/bayesnet-c2-20260504_204651/public_gate/public_gate_report.json @@ -0,0 +1,37 @@ +{ + "dataset_id": "c2", + "status": "pass", + "checks": [ + { + "check_id": "PG001_csv_parse_ok", + "status": "pass" + }, + { + "check_id": "PG002_split_header_consistent", + "status": "pass" + }, + { + "check_id": "PG003_profile_header_match", + "status": "pass" + }, + { + "check_id": "PG004_missing_token_normalized", + "status": "pass" + }, + { + "check_id": "PG005_semantic_type_validated", + "status": "pass" + }, + { + "check_id": "PG006_target_defined_and_valid", + "status": "pass" + } + ], + "target_column": "class", + "task_type": "classification", + "input_splits": { + "train": "/data/jialinzhang/SynthesizePipeline-server/DatasetNew/c2/c2-train.csv", + "val": "/data/jialinzhang/SynthesizePipeline-server/DatasetNew/c2/c2-val.csv", + "test": "/data/jialinzhang/SynthesizePipeline-server/DatasetNew/c2/c2-test.csv" + } +} \ No newline at end of file diff --git a/hyperparameter/c2/bayesnet/bayesnet-c2-20260504_204651/public_gate/staged_input_manifest.json b/hyperparameter/c2/bayesnet/bayesnet-c2-20260504_204651/public_gate/staged_input_manifest.json new file mode 100644 index 0000000000000000000000000000000000000000..06de1f4fe8b564ebc82c5ff63c87a8ad35ed19ca --- /dev/null +++ b/hyperparameter/c2/bayesnet/bayesnet-c2-20260504_204651/public_gate/staged_input_manifest.json @@ -0,0 +1,149 @@ +{ + "dataset_id": "c2", + "target_column": "class", + "task_type": "classification", + "train_csv": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/c2/bayesnet/bayesnet-c2-20260504_204651/staged/public/train.csv", + "val_csv": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/c2/bayesnet/bayesnet-c2-20260504_204651/staged/public/val.csv", + "test_csv": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/c2/bayesnet/bayesnet-c2-20260504_204651/staged/public/test.csv", + "features_json": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/c2/bayesnet/bayesnet-c2-20260504_204651/staged/public/staged_features.json", + "public_gate_report": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/c2/bayesnet/bayesnet-c2-20260504_204651/public_gate/public_gate_report.json", + "column_schema": [ + { + "name": "buying", + "role": "feature", + "semantic_type": "categorical", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 4, + "unique_ratio": 0.002894, + "example_values": [ + "vhigh", + "med", + "high", + "low" + ] + } + }, + { + "name": "maint", + "role": "feature", + "semantic_type": "categorical", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 4, + "unique_ratio": 0.002894, + "example_values": [ + "vhigh", + "low", + "med", + "high" + ] + } + }, + { + "name": "doors", + "role": "feature", + "semantic_type": "categorical", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 4, + "unique_ratio": 0.002894, + "example_values": [ + "2", + "5more", + "3", + "4" + ] + } + }, + { + "name": "persons", + "role": "feature", + "semantic_type": "categorical", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 3, + "unique_ratio": 0.002171, + "example_values": [ + "2", + "4", + "more" + ] + } + }, + { + "name": "lug_boot", + "role": "feature", + "semantic_type": "categorical", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 3, + "unique_ratio": 0.002171, + "example_values": [ + "small", + "big", + "med" + ] + } + }, + { + "name": "safety", + "role": "feature", + "semantic_type": "categorical", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 3, + "unique_ratio": 0.002171, + "example_values": [ + "low", + "high", + "med" + ] + } + }, + { + "name": "class", + "role": "target", + "semantic_type": "categorical", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 4, + "unique_ratio": 0.002894, + "example_values": [ + "unacc", + "good", + "acc", + "vgood" + ] + } + } + ] +} \ No newline at end of file diff --git a/hyperparameter/c2/bayesnet/bayesnet-c2-20260504_204651/run_config.json b/hyperparameter/c2/bayesnet/bayesnet-c2-20260504_204651/run_config.json new file mode 100644 index 0000000000000000000000000000000000000000..033f5a6139782ce3dcbe28565d22f8ba52a56ea2 --- /dev/null +++ b/hyperparameter/c2/bayesnet/bayesnet-c2-20260504_204651/run_config.json @@ -0,0 +1,46 @@ +{ + "schema_version": 1, + "recorded_at": "2026-05-04T20:46:51", + "dataset_id": "c2", + "model": "bayesnet", + "work_dir": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/c2/bayesnet/bayesnet-c2-20260504_204651", + "dataset_source_requested": "new", + "dataset_source_resolved": "new", + "cli_args": { + "model": "bayesnet", + "dataset": "c2", + "dataset_source": "new", + "train": true, + "generate": true, + "num_rows": 0, + "epochs": null, + "output_dir": null, + "model_dir": null, + "work_dir": null, + "resume": false, + "no_stats": false + }, + "resolved": { + "num_rows": 1382, + "model_path": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/c2/bayesnet/bayesnet-c2-20260504_204651/bayesnet_model.pkl", + "output_csv": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/c2/bayesnet/bayesnet-c2-20260504_204651/bayesnet-c2-1382-20260504_204659.csv" + }, + "input_artifacts": { + "public_gate_report": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/c2/bayesnet/bayesnet-c2-20260504_204651/public_gate/public_gate_report.json", + "public_manifest": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/c2/bayesnet/bayesnet-c2-20260504_204651/public_gate/staged_input_manifest.json", + "model_manifest": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/c2/bayesnet/bayesnet-c2-20260504_204651/staged/bayesnet/model_input_manifest.json", + "train_csv": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/c2/bayesnet/bayesnet-c2-20260504_204651/staged/public/train.csv", + "features_json": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/c2/bayesnet/bayesnet-c2-20260504_204651/staged/public/staged_features.json", + "target_column": "class", + "task_type": "classification" + }, + "env_overrides": { + "BAYESNET_EDGE_WEIGHTS_FN": "mutual_info", + "BAYESNET_ESTIMATOR_TYPE": "chow-liu", + "BAYESNET_FIT_ROWS": "2000", + "BAYESNET_MAX_BINS": "7", + "BAYESNET_MAX_CAT_LEVELS": "50", + "BAYESNET_N_JOBS": "1", + "BAYESNET_STRUCT_ROWS": "1000" + } +} \ No newline at end of file diff --git a/hyperparameter/c2/bayesnet/bayesnet-c2-20260504_204651/runtime_result.json b/hyperparameter/c2/bayesnet/bayesnet-c2-20260504_204651/runtime_result.json new file mode 100644 index 0000000000000000000000000000000000000000..8bb12f360c2150e91378fe529ea4c9c47bd38fbf --- /dev/null +++ b/hyperparameter/c2/bayesnet/bayesnet-c2-20260504_204651/runtime_result.json @@ -0,0 +1,27 @@ +{ + "dataset_id": "c2", + "model": "bayesnet", + "run_id": "bayesnet-c2-20260504_204651", + "public_gate_status": "pass", + "adapter_ready_status": "pass", + "train_status": "success", + "generate_status": "success", + "reason_code": null, + "reason_detail": null, + "artifacts": { + "synthetic_csv": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/c2/bayesnet/bayesnet-c2-20260504_204651/bayesnet-c2-1382-20260504_204659.csv", + "model_path": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/c2/bayesnet/bayesnet-c2-20260504_204651/bayesnet_model.pkl" + }, + "timings": { + "train": { + "started_at": "2026-05-04T20:46:51", + "ended_at": "2026-05-04T20:46:59", + "duration_sec": 7.592 + }, + "generate": { + "started_at": "2026-05-04T20:46:59", + "ended_at": "2026-05-04T20:47:07", + "duration_sec": 7.691 + } + } +} \ No newline at end of file diff --git a/hyperparameter/c2/bayesnet/bayesnet-c2-20260504_204651/staged/bayesnet/adapter_report.json b/hyperparameter/c2/bayesnet/bayesnet-c2-20260504_204651/staged/bayesnet/adapter_report.json new file mode 100644 index 0000000000000000000000000000000000000000..ecc289bee66213fcbdca874bf3526e899da107fc --- /dev/null +++ b/hyperparameter/c2/bayesnet/bayesnet-c2-20260504_204651/staged/bayesnet/adapter_report.json @@ -0,0 +1,7 @@ +{ + "adapter_ready_status": "pass", + "adapter_fail_reason_code": null, + "adapter_fail_detail": null, + "adapter_transforms_applied": [], + "model_input_manifest": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/c2/bayesnet/bayesnet-c2-20260504_204651/staged/bayesnet/model_input_manifest.json" +} \ No newline at end of file diff --git a/hyperparameter/c2/bayesnet/bayesnet-c2-20260504_204651/staged/bayesnet/adapter_transforms_applied.json b/hyperparameter/c2/bayesnet/bayesnet-c2-20260504_204651/staged/bayesnet/adapter_transforms_applied.json new file mode 100644 index 0000000000000000000000000000000000000000..0637a088a01e8ddab3bf3fa98dbe804cbde1a0dc --- /dev/null +++ b/hyperparameter/c2/bayesnet/bayesnet-c2-20260504_204651/staged/bayesnet/adapter_transforms_applied.json @@ -0,0 +1 @@ +[] \ No newline at end of file diff --git a/hyperparameter/c2/bayesnet/bayesnet-c2-20260504_204651/staged/bayesnet/model_input_manifest.json b/hyperparameter/c2/bayesnet/bayesnet-c2-20260504_204651/staged/bayesnet/model_input_manifest.json new file mode 100644 index 0000000000000000000000000000000000000000..c4d271e536fd6d00d4a84f4dcfc7c4b767c9cac0 --- /dev/null +++ b/hyperparameter/c2/bayesnet/bayesnet-c2-20260504_204651/staged/bayesnet/model_input_manifest.json @@ -0,0 +1,151 @@ +{ + "dataset_id": "c2", + "model": "bayesnet", + "target_column": "class", + "task_type": "classification", + "column_schema": [ + { + "name": "buying", + "role": "feature", + "semantic_type": "categorical", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 4, + "unique_ratio": 0.002894, + "example_values": [ + "vhigh", + "med", + "high", + "low" + ] + } + }, + { + "name": "maint", + "role": "feature", + "semantic_type": "categorical", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 4, + "unique_ratio": 0.002894, + "example_values": [ + "vhigh", + "low", + "med", + "high" + ] + } + }, + { + "name": "doors", + "role": "feature", + "semantic_type": "categorical", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 4, + "unique_ratio": 0.002894, + "example_values": [ + "2", + "5more", + "3", + "4" + ] + } + }, + { + "name": "persons", + "role": "feature", + "semantic_type": "categorical", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 3, + "unique_ratio": 0.002171, + "example_values": [ + "2", + "4", + "more" + ] + } + }, + { + "name": "lug_boot", + "role": "feature", + "semantic_type": "categorical", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 3, + "unique_ratio": 0.002171, + "example_values": [ + "small", + "big", + "med" + ] + } + }, + { + "name": "safety", + "role": "feature", + "semantic_type": "categorical", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 3, + "unique_ratio": 0.002171, + "example_values": [ + "low", + "high", + "med" + ] + } + }, + { + "name": "class", + "role": "target", + "semantic_type": "categorical", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 4, + "unique_ratio": 0.002894, + "example_values": [ + "unacc", + "good", + "acc", + "vgood" + ] + } + } + ], + "public_manifest": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/c2/bayesnet/bayesnet-c2-20260504_204651/public_gate/staged_input_manifest.json", + "train_csv": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/c2/bayesnet/bayesnet-c2-20260504_204651/staged/public/train.csv", + "val_csv": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/c2/bayesnet/bayesnet-c2-20260504_204651/staged/public/val.csv", + "test_csv": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/c2/bayesnet/bayesnet-c2-20260504_204651/staged/public/test.csv", + "features_json": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/c2/bayesnet/bayesnet-c2-20260504_204651/staged/public/staged_features.json", + "public_gate_report": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/c2/bayesnet/bayesnet-c2-20260504_204651/public_gate/public_gate_report.json" +} \ No newline at end of file diff --git a/hyperparameter/c2/bayesnet/bayesnet-c2-20260504_204651/staged/public/staged_features.json b/hyperparameter/c2/bayesnet/bayesnet-c2-20260504_204651/staged/public/staged_features.json new file mode 100644 index 0000000000000000000000000000000000000000..61783861dd5de501592f76acb0469cf3f3b2622a --- /dev/null +++ b/hyperparameter/c2/bayesnet/bayesnet-c2-20260504_204651/staged/public/staged_features.json @@ -0,0 +1,37 @@ +[ + { + "feature_name": "buying", + "data_type": "categorical", + "is_target": false + }, + { + "feature_name": "maint", + "data_type": "categorical", + "is_target": false + }, + { + "feature_name": "doors", + "data_type": "categorical", + "is_target": false + }, + { + "feature_name": "persons", + "data_type": "categorical", + "is_target": false + }, + { + "feature_name": "lug_boot", + "data_type": "categorical", + "is_target": false + }, + { + "feature_name": "safety", + "data_type": "categorical", + "is_target": false + }, + { + "feature_name": "class", + "data_type": "categorical", + "is_target": true + } +] \ No newline at end of file diff --git a/hyperparameter/c2/bayesnet/bayesnet-c2-20260504_204651/staged/public/test.csv b/hyperparameter/c2/bayesnet/bayesnet-c2-20260504_204651/staged/public/test.csv new file mode 100644 index 0000000000000000000000000000000000000000..392a0d7189a34d8f13ecf20a99d64b03230d517c --- /dev/null +++ b/hyperparameter/c2/bayesnet/bayesnet-c2-20260504_204651/staged/public/test.csv @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:b48114a7d0bc5bd9a07920f903c8d4aba8bf98bf2a66a050da03588b0245ca73 +size 5273 diff --git a/hyperparameter/c2/bayesnet/bayesnet-c2-20260504_204651/staged/public/train.csv b/hyperparameter/c2/bayesnet/bayesnet-c2-20260504_204651/staged/public/train.csv new file mode 100644 index 0000000000000000000000000000000000000000..da4f4d55134eebc0e51157d0d467536371db1484 --- /dev/null +++ b/hyperparameter/c2/bayesnet/bayesnet-c2-20260504_204651/staged/public/train.csv @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:4aed00c2c2b3f88a55a7ebff31b2e1b5e0e32fb0a7267e0b9d2779cd23e434dd +size 41565 diff --git a/hyperparameter/c2/bayesnet/bayesnet-c2-20260504_204651/staged/public/val.csv b/hyperparameter/c2/bayesnet/bayesnet-c2-20260504_204651/staged/public/val.csv new file mode 100644 index 0000000000000000000000000000000000000000..af8caf7ee42524188534a3daf32996dc491952d9 --- /dev/null +++ b/hyperparameter/c2/bayesnet/bayesnet-c2-20260504_204651/staged/public/val.csv @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:26e90c1170a57a14c05832ac88027722b1f3848f9662c7c09ef7c93dcba4cc01 +size 5176 diff --git a/hyperparameter/c2/bayesnet/bayesnet-c2-20260504_204651/train_20260504_204651.log b/hyperparameter/c2/bayesnet/bayesnet-c2-20260504_204651/train_20260504_204651.log new file mode 100644 index 0000000000000000000000000000000000000000..407da68ed9f34f29d841529c32295185e72d694a --- /dev/null +++ b/hyperparameter/c2/bayesnet/bayesnet-c2-20260504_204651/train_20260504_204651.log @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:0445a0c944d995b4a40dacd2f761546488906e471b617ed24976362fd921a3da +size 3909 diff --git a/hyperparameter/c2/bayesnet/bayesnet-c2-20260504_205041/_bayesnet_generate.py b/hyperparameter/c2/bayesnet/bayesnet-c2-20260504_205041/_bayesnet_generate.py new file mode 100644 index 0000000000000000000000000000000000000000..da6ed22c970c1182a9610978fb43b1838ef70fdb --- /dev/null +++ b/hyperparameter/c2/bayesnet/bayesnet-c2-20260504_205041/_bayesnet_generate.py @@ -0,0 +1,105 @@ + +import pickle +import subprocess +import sys +import warnings + +import numpy as np +import pandas as pd +from pgmpy.sampling import BayesianModelSampling + +warnings.filterwarnings("ignore", category=FutureWarning) + +def _ensure_cloudpickle(): + try: + import cloudpickle # noqa: F401 + except ModuleNotFoundError: + subprocess.check_call( + [sys.executable, "-m", "pip", "install", "--quiet", "cloudpickle"], + ) + +_ensure_cloudpickle() + +with open("/work/output-Benchmark-trainonly-v1/c2/bayesnet/bayesnet-c2-20260504_205041/bayesnet_model.pkl", "rb") as f: + bundle = pickle.load(f) + +network = bundle["network"] +inverse = bundle["inverse"] +cols = bundle["column_order"] +integer_columns = set(bundle.get("integer_columns") or []) +full_order = bundle.get("full_column_order") or cols +const_cols = bundle.get("const_cols") or {} + +num_rows = int(1382) +sampler = BayesianModelSampling(network) +raw = sampler.forward_sample(size=num_rows, show_progress=False) +raw = raw.reset_index(drop=True) +if len(raw) > num_rows: + raw = raw.iloc[:num_rows] +_tries = 0 +while len(raw) < num_rows and _tries < 64: + _tries += 1 + nextra = min(10000, num_rows - len(raw)) + more = sampler.forward_sample(size=max(nextra, 1), show_progress=False) + more = more.reset_index(drop=True) + if len(more) == 0: + break + raw = pd.concat([raw, more], ignore_index=True) + if len(raw) > num_rows: + raw = raw.iloc[:num_rows] + +out = pd.DataFrame(index=raw.index) +rng = np.random.default_rng() + +for c in cols: + if c in inverse["categorical"]: + levels = inverse["categorical"][c] + idx = raw[c].astype(int).to_numpy() + idx = np.clip(idx, 0, max(0, len(levels) - 1)) + out[c] = [levels[i] for i in idx] + else: + edges = np.asarray(inverse["continuous"][c], dtype=float) + if edges.size < 2: + out[c] = 0.0 + else: + nbin = edges.size - 1 + res = [] + for k in raw[c].astype(int).to_numpy(): + k = int(k) + if k < 0: + k = 0 + if k >= nbin: + k = nbin - 1 + lo, hi = float(edges[k]), float(edges[k + 1]) + if hi < lo: + lo, hi = hi, lo + v = rng.uniform(lo, hi) + if c in integer_columns: + v = int(round(v)) + res.append(v) + out[c] = res + +final = pd.DataFrame(index=out.index) +for c in full_order: + if c in const_cols: + final[c] = const_cols[c] + elif c in out.columns: + final[c] = out[c] + +dtypes = bundle.get("original_dtypes") or {} +for c, dts in dtypes.items(): + if c not in final.columns: + continue + try: + if "int" in dts: + final[c] = pd.to_numeric(final[c], errors="coerce").astype("Int64") + elif "float" in dts: + final[c] = pd.to_numeric(final[c], errors="coerce") + except Exception: + pass + +if len(final) != num_rows: + final = final.iloc[:num_rows].copy() +final = final.reset_index(drop=True) +final.to_csv("/work/output-Benchmark-trainonly-v1/c2/bayesnet/bayesnet-c2-20260504_205041/bayesnet-c2-1382-20260504_205049.csv", index=False) +print(f"[BayesNet] Generated {len(final)} rows (requested {num_rows}) -> /work/output-Benchmark-trainonly-v1/c2/bayesnet/bayesnet-c2-20260504_205041/bayesnet-c2-1382-20260504_205049.csv") diff --git a/hyperparameter/c2/bayesnet/bayesnet-c2-20260504_205041/_bayesnet_train.py b/hyperparameter/c2/bayesnet/bayesnet-c2-20260504_205041/_bayesnet_train.py new file mode 100644 index 0000000000000000000000000000000000000000..979eca33805d7937092ab2b900486a07317a9db3 --- /dev/null +++ b/hyperparameter/c2/bayesnet/bayesnet-c2-20260504_205041/_bayesnet_train.py @@ -0,0 +1,146 @@ + +import json +import os +import pickle +import subprocess +import sys +import warnings + +import numpy as np +import pandas as pd +from pgmpy.estimators import TreeSearch +from pgmpy.models import DiscreteBayesianNetwork +warnings.filterwarnings("ignore", category=FutureWarning) + +def _ensure_cloudpickle(): + try: + import cloudpickle # noqa: F401 + except ModuleNotFoundError: + subprocess.check_call( + [sys.executable, "-m", "pip", "install", "--quiet", "cloudpickle"], + ) + +_ensure_cloudpickle() + +with open("/work/output-Benchmark-trainonly-v1/c2/bayesnet/bayesnet-c2-20260504_205041/bayesnet_coltypes.json", "r", encoding="utf-8") as _f: + colmeta = json.load(_f) +integer_columns = set(colmeta.get("integer_columns") or []) + +df = pd.read_csv("/work/output-Benchmark-trainonly-v1/c2/bayesnet/bayesnet-c2-20260504_205041/staged/public/train.csv") +df = df.dropna(axis=1, how="all") +full_column_order = list(df.columns) + +const_cols = {} +for col in list(df.columns): + if df[col].nunique(dropna=True) <= 1: + const_cols[col] = df[col].iloc[0] if len(df) > 0 else None + df = df.drop(columns=[col]) + print(f"[BayesNet] Dropped zero-variance column '{col}'") + +const_path = "/work/output-Benchmark-trainonly-v1/c2/bayesnet/bayesnet-c2-20260504_205041/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 = int(os.environ.get("BAYESNET_MAX_BINS", "0")) +max_cat_levels = int(os.environ.get("BAYESNET_MAX_CAT_LEVELS", "0")) +if max_bins <= 0: + max_bins = 10 +if max_cat_levels <= 0: + max_cat_levels = 256 +auto_caps = os.environ.get("BAYESNET_DISABLE_AUTO_CAPS", "0").strip().lower() not in ("1", "true", "yes") +if auto_caps and max_bins == 10 and max_cat_levels == 256: + if _n_plan > 35 or _n_samples > 200000: + max_bins = 5 + max_cat_levels = 64 + if _n_plan > 55: + max_bins = 4 + max_cat_levels = 32 +struct_rows = int(os.environ.get("BAYESNET_STRUCT_ROWS", "25000")) +fit_rows = int(os.environ.get("BAYESNET_FIT_ROWS", "120000")) +estimator_type = (os.environ.get("BAYESNET_ESTIMATOR_TYPE", "chow-liu") or "chow-liu").strip() +edge_weights_fn = (os.environ.get("BAYESNET_EDGE_WEIGHTS_FN", "mutual_info") or "mutual_info").strip() +root_node = (os.environ.get("BAYESNET_ROOT_NODE", "") or "").strip() or None +n_jobs = int(os.environ.get("BAYESNET_N_JOBS", "1")) +print( + f"[BayesNet] max_bins={max_bins}, max_cat_levels={max_cat_levels}, struct_rows={struct_rows}, fit_rows={fit_rows}, estimator_type={estimator_type}, edge_weights_fn={edge_weights_fn}, root_node={root_node}, n_jobs={n_jobs} " + f"(cols_in_df={_n_plan}, rows={_n_samples})" +) + +for entry in colmeta["columns"]: + name = entry["name"] + if name not in df.columns: + continue + kind = entry["type"] + s = df[name] + if kind == "categorical": + s2 = s.astype(str).fillna("__NA__") + counts = s2.value_counts(dropna=False) + if len(counts) > max_cat_levels: + keep = set(counts.index[: max_cat_levels - 1].tolist()) + s2 = s2.map(lambda x: x if x in keep else "__OTHER__") + uniques = sorted(s2.dropna().unique(), key=lambda x: str(x)) + mapping = {str(v): i for i, v in enumerate(uniques)} + inverse["categorical"][name] = [uniques[i] for i in range(len(uniques))] + enc[name] = s2.map(lambda x, m=mapping: m.get(str(x), 0)).astype(int) + else: + s_num = pd.to_numeric(s, errors="coerce") + nu = int(s_num.nunique(dropna=True)) + q = min(max_bins, max(2, nu)) + if nu < 2: + enc[name] = np.zeros(len(s_num), dtype=int) + lo, hi = float(s_num.min()), float(s_num.max()) + inverse["continuous"][name] = [lo, hi] + else: + try: + _, bins = pd.qcut( + s_num, q=q, retbins=True, duplicates="drop" + ) + except Exception: + med = float(s_num.median()) + s2 = s_num.fillna(med) + _, bins = pd.qcut( + s2, q=min(q, 3), retbins=True, duplicates="drop" + ) + bins = np.asarray(bins, dtype=float) + lab = pd.cut( + s_num, bins=bins, labels=False, include_lowest=True + ) + enc[name] = lab.fillna(0).astype(int) + inverse["continuous"][name] = bins.tolist() + +print(f"[BayesNet] Training on {len(enc)} rows, {len(enc.columns)} cols (encoded)") + +enc_struct = enc +if len(enc) > struct_rows: + enc_struct = enc.sample(n=struct_rows, random_state=0, replace=False) + print(f"[BayesNet] TreeSearch on {len(enc_struct)} rows (subsample; full n={len(enc)})") +dag = TreeSearch(enc_struct, root_node=root_node, n_jobs=n_jobs).estimate(estimator_type=estimator_type, edge_weights_fn=edge_weights_fn, show_progress=False) +for col in enc.columns: + if col not in dag.nodes(): + dag.add_node(col) + print(f"[BayesNet] Added isolated node to DAG: {col}") +network = DiscreteBayesianNetwork(dag) +enc_fit = enc +if len(enc) > fit_rows: + enc_fit = enc.sample(n=fit_rows, random_state=1, replace=False) + print(f"[BayesNet] fit() on {len(enc_fit)} rows (full n={len(enc)})") +network.fit(enc_fit) + +bundle = { + "network": network, + "inverse": inverse, + "column_order": list(enc.columns), + "full_column_order": full_column_order, + "integer_columns": list(integer_columns), + "original_dtypes": {c: str(df[c].dtype) for c in enc.columns}, + "const_cols": const_cols, +} +with open("/work/output-Benchmark-trainonly-v1/c2/bayesnet/bayesnet-c2-20260504_205041/bayesnet_model.pkl", "wb") as _f: + pickle.dump(bundle, _f) +print(f"[BayesNet] Model saved -> /work/output-Benchmark-trainonly-v1/c2/bayesnet/bayesnet-c2-20260504_205041/bayesnet_model.pkl") diff --git a/hyperparameter/c2/bayesnet/bayesnet-c2-20260504_205041/bayesnet-c2-1382-20260504_205049.csv b/hyperparameter/c2/bayesnet/bayesnet-c2-20260504_205041/bayesnet-c2-1382-20260504_205049.csv new file mode 100644 index 0000000000000000000000000000000000000000..24766bc9b7eaa0083c89f6db2fb67e578192cab5 --- /dev/null +++ b/hyperparameter/c2/bayesnet/bayesnet-c2-20260504_205041/bayesnet-c2-1382-20260504_205049.csv @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:8021a92edcd405f86b977b4275e65b7f0ce3ea051acdad2b6850bd2dee2b1f6f +size 41530 diff --git a/hyperparameter/c2/bayesnet/bayesnet-c2-20260504_205041/bayesnet_coltypes.json b/hyperparameter/c2/bayesnet/bayesnet-c2-20260504_205041/bayesnet_coltypes.json new file mode 100644 index 0000000000000000000000000000000000000000..dc49694e781f314f19b59a568715784a7cabec24 --- /dev/null +++ b/hyperparameter/c2/bayesnet/bayesnet-c2-20260504_205041/bayesnet_coltypes.json @@ -0,0 +1,33 @@ +{ + "columns": [ + { + "name": "buying", + "type": "categorical" + }, + { + "name": "maint", + "type": "categorical" + }, + { + "name": "doors", + "type": "categorical" + }, + { + "name": "persons", + "type": "categorical" + }, + { + "name": "lug_boot", + "type": "categorical" + }, + { + "name": "safety", + "type": "categorical" + }, + { + "name": "class", + "type": "categorical" + } + ], + "integer_columns": [] +} \ No newline at end of file diff --git a/hyperparameter/c2/bayesnet/bayesnet-c2-20260504_205041/bayesnet_model.pkl b/hyperparameter/c2/bayesnet/bayesnet-c2-20260504_205041/bayesnet_model.pkl new file mode 100644 index 0000000000000000000000000000000000000000..a41a2cb32a11c469c794a576140511b67c8f7bdb --- /dev/null +++ b/hyperparameter/c2/bayesnet/bayesnet-c2-20260504_205041/bayesnet_model.pkl @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:c9fc1dfaabb7725d9da65e2853e0e7d4de92da7281a7237ef5c6909e01f2a513 +size 4250 diff --git a/hyperparameter/c2/bayesnet/bayesnet-c2-20260504_205041/const_cols.json b/hyperparameter/c2/bayesnet/bayesnet-c2-20260504_205041/const_cols.json new file mode 100644 index 0000000000000000000000000000000000000000..9e26dfeeb6e641a33dae4961196235bdb965b21b --- /dev/null +++ b/hyperparameter/c2/bayesnet/bayesnet-c2-20260504_205041/const_cols.json @@ -0,0 +1 @@ +{} \ No newline at end of file diff --git a/hyperparameter/c2/bayesnet/bayesnet-c2-20260504_205041/gen_20260504_205049.log b/hyperparameter/c2/bayesnet/bayesnet-c2-20260504_205041/gen_20260504_205049.log new file mode 100644 index 0000000000000000000000000000000000000000..24fa1e4d408b1e142fa9885944773490d31761aa --- /dev/null +++ b/hyperparameter/c2/bayesnet/bayesnet-c2-20260504_205041/gen_20260504_205049.log @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:8baa3b0c39e2ac713bd08b8593f0d445340c6a9a8888b4d8e94dae74c2346aa1 +size 3660 diff --git a/hyperparameter/c2/bayesnet/bayesnet-c2-20260504_205041/input_snapshot.json b/hyperparameter/c2/bayesnet/bayesnet-c2-20260504_205041/input_snapshot.json new file mode 100644 index 0000000000000000000000000000000000000000..85fdc398e0d261ad97c34409134cc4aebb1bb672 --- /dev/null +++ b/hyperparameter/c2/bayesnet/bayesnet-c2-20260504_205041/input_snapshot.json @@ -0,0 +1,36 @@ +{ + "dataset_id": "c2", + "model": "bayesnet", + "inputs": { + "train_csv": { + "path": "/data/jialinzhang/SynthesizePipeline-server/DatasetNew/c2/c2-train.csv", + "exists": true, + "size": 42948, + "sha256": "17bc560fa96bd00fb3b526e1e65bc91210b701d0d0a4e8bb9b4c5196cab56def" + }, + "val_csv": { + "path": "/data/jialinzhang/SynthesizePipeline-server/DatasetNew/c2/c2-val.csv", + "exists": true, + "size": 5349, + "sha256": "61e565eca62e65a7dccd9d51039a3170413379e10fc494e25870e7c4294863c9" + }, + "test_csv": { + "path": "/data/jialinzhang/SynthesizePipeline-server/DatasetNew/c2/c2-test.csv", + "exists": true, + "size": 5448, + "sha256": "cbcbb062a1faf5fa44b66c80532baa229e05b94fc42137269761e6c6d84af20a" + }, + "profile_json": { + "path": "/data/jialinzhang/SynthesizePipeline-server/DatasetNew/artifacts/data_core/tabular/c2/c2-dataset_profile.json", + "exists": true, + "size": 3240, + "sha256": "526b7163b2076c93c0bf4638438081ee8a6907065d5b608faa40d1a3dbc2a27b" + }, + "contract_json": { + "path": "/data/jialinzhang/SynthesizePipeline-server/DatasetNew/artifacts/data_core/tabular/c2/c2-dataset_contract_v1.json", + "exists": true, + "size": 3731, + "sha256": "fb595a876054c2ee9b4e10cfe83a5691588de1d25466cbb9d473c18ad3604009" + } + } +} \ No newline at end of file diff --git a/hyperparameter/c2/bayesnet/bayesnet-c2-20260504_205041/public_gate/normalized_schema_snapshot.json b/hyperparameter/c2/bayesnet/bayesnet-c2-20260504_205041/public_gate/normalized_schema_snapshot.json new file mode 100644 index 0000000000000000000000000000000000000000..689b1d00d96508e44ba40e58dc4560e19afc2b3b --- /dev/null +++ b/hyperparameter/c2/bayesnet/bayesnet-c2-20260504_205041/public_gate/normalized_schema_snapshot.json @@ -0,0 +1,144 @@ +{ + "dataset_id": "c2", + "target_column": "class", + "task_type": "classification", + "columns": [ + { + "name": "buying", + "role": "feature", + "semantic_type": "categorical", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 4, + "unique_ratio": 0.002894, + "example_values": [ + "vhigh", + "med", + "high", + "low" + ] + } + }, + { + "name": "maint", + "role": "feature", + "semantic_type": "categorical", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 4, + "unique_ratio": 0.002894, + "example_values": [ + "vhigh", + "low", + "med", + "high" + ] + } + }, + { + "name": "doors", + "role": "feature", + "semantic_type": "categorical", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 4, + "unique_ratio": 0.002894, + "example_values": [ + "2", + "5more", + "3", + "4" + ] + } + }, + { + "name": "persons", + "role": "feature", + "semantic_type": "categorical", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 3, + "unique_ratio": 0.002171, + "example_values": [ + "2", + "4", + "more" + ] + } + }, + { + "name": "lug_boot", + "role": "feature", + "semantic_type": "categorical", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 3, + "unique_ratio": 0.002171, + "example_values": [ + "small", + "big", + "med" + ] + } + }, + { + "name": "safety", + "role": "feature", + "semantic_type": "categorical", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 3, + "unique_ratio": 0.002171, + "example_values": [ + "low", + "high", + "med" + ] + } + }, + { + "name": "class", + "role": "target", + "semantic_type": "categorical", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 4, + "unique_ratio": 0.002894, + "example_values": [ + "unacc", + "good", + "acc", + "vgood" + ] + } + } + ] +} \ No newline at end of file diff --git a/hyperparameter/c2/bayesnet/bayesnet-c2-20260504_205041/public_gate/public_gate_report.json b/hyperparameter/c2/bayesnet/bayesnet-c2-20260504_205041/public_gate/public_gate_report.json new file mode 100644 index 0000000000000000000000000000000000000000..2e4cdcb2a4e28e40d59b17a83e773f622b7636a5 --- /dev/null +++ b/hyperparameter/c2/bayesnet/bayesnet-c2-20260504_205041/public_gate/public_gate_report.json @@ -0,0 +1,37 @@ +{ + "dataset_id": "c2", + "status": "pass", + "checks": [ + { + "check_id": "PG001_csv_parse_ok", + "status": "pass" + }, + { + "check_id": "PG002_split_header_consistent", + "status": "pass" + }, + { + "check_id": "PG003_profile_header_match", + "status": "pass" + }, + { + "check_id": "PG004_missing_token_normalized", + "status": "pass" + }, + { + "check_id": "PG005_semantic_type_validated", + "status": "pass" + }, + { + "check_id": "PG006_target_defined_and_valid", + "status": "pass" + } + ], + "target_column": "class", + "task_type": "classification", + "input_splits": { + "train": "/data/jialinzhang/SynthesizePipeline-server/DatasetNew/c2/c2-train.csv", + "val": "/data/jialinzhang/SynthesizePipeline-server/DatasetNew/c2/c2-val.csv", + "test": "/data/jialinzhang/SynthesizePipeline-server/DatasetNew/c2/c2-test.csv" + } +} \ No newline at end of file diff --git a/hyperparameter/c2/bayesnet/bayesnet-c2-20260504_205041/public_gate/staged_input_manifest.json b/hyperparameter/c2/bayesnet/bayesnet-c2-20260504_205041/public_gate/staged_input_manifest.json new file mode 100644 index 0000000000000000000000000000000000000000..ba43c1fe8343760997d0fb3cdefb1ce8966d0704 --- /dev/null +++ b/hyperparameter/c2/bayesnet/bayesnet-c2-20260504_205041/public_gate/staged_input_manifest.json @@ -0,0 +1,149 @@ +{ + "dataset_id": "c2", + "target_column": "class", + "task_type": "classification", + "train_csv": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/c2/bayesnet/bayesnet-c2-20260504_205041/staged/public/train.csv", + "val_csv": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/c2/bayesnet/bayesnet-c2-20260504_205041/staged/public/val.csv", + "test_csv": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/c2/bayesnet/bayesnet-c2-20260504_205041/staged/public/test.csv", + "features_json": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/c2/bayesnet/bayesnet-c2-20260504_205041/staged/public/staged_features.json", + "public_gate_report": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/c2/bayesnet/bayesnet-c2-20260504_205041/public_gate/public_gate_report.json", + "column_schema": [ + { + "name": "buying", + "role": "feature", + "semantic_type": "categorical", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 4, + "unique_ratio": 0.002894, + "example_values": [ + "vhigh", + "med", + "high", + "low" + ] + } + }, + { + "name": "maint", + "role": "feature", + "semantic_type": "categorical", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 4, + "unique_ratio": 0.002894, + "example_values": [ + "vhigh", + "low", + "med", + "high" + ] + } + }, + { + "name": "doors", + "role": "feature", + "semantic_type": "categorical", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 4, + "unique_ratio": 0.002894, + "example_values": [ + "2", + "5more", + "3", + "4" + ] + } + }, + { + "name": "persons", + "role": "feature", + "semantic_type": "categorical", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 3, + "unique_ratio": 0.002171, + "example_values": [ + "2", + "4", + "more" + ] + } + }, + { + "name": "lug_boot", + "role": "feature", + "semantic_type": "categorical", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 3, + "unique_ratio": 0.002171, + "example_values": [ + "small", + "big", + "med" + ] + } + }, + { + "name": "safety", + "role": "feature", + "semantic_type": "categorical", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 3, + "unique_ratio": 0.002171, + "example_values": [ + "low", + "high", + "med" + ] + } + }, + { + "name": "class", + "role": "target", + "semantic_type": "categorical", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 4, + "unique_ratio": 0.002894, + "example_values": [ + "unacc", + "good", + "acc", + "vgood" + ] + } + } + ] +} \ No newline at end of file diff --git a/hyperparameter/c2/bayesnet/bayesnet-c2-20260504_205041/run_config.json b/hyperparameter/c2/bayesnet/bayesnet-c2-20260504_205041/run_config.json new file mode 100644 index 0000000000000000000000000000000000000000..e50a70330c516975d2f8c9b722e918ad1f6ad30b --- /dev/null +++ b/hyperparameter/c2/bayesnet/bayesnet-c2-20260504_205041/run_config.json @@ -0,0 +1,47 @@ +{ + "schema_version": 1, + "recorded_at": "2026-05-04T20:50:41", + "dataset_id": "c2", + "model": "bayesnet", + "work_dir": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/c2/bayesnet/bayesnet-c2-20260504_205041", + "dataset_source_requested": "new", + "dataset_source_resolved": "new", + "cli_args": { + "model": "bayesnet", + "dataset": "c2", + "dataset_source": "new", + "train": true, + "generate": true, + "num_rows": 0, + "epochs": null, + "output_dir": null, + "model_dir": null, + "work_dir": null, + "resume": false, + "no_stats": false + }, + "resolved": { + "num_rows": 1382, + "model_path": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/c2/bayesnet/bayesnet-c2-20260504_205041/bayesnet_model.pkl", + "output_csv": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/c2/bayesnet/bayesnet-c2-20260504_205041/bayesnet-c2-1382-20260504_205049.csv" + }, + "input_artifacts": { + "public_gate_report": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/c2/bayesnet/bayesnet-c2-20260504_205041/public_gate/public_gate_report.json", + "public_manifest": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/c2/bayesnet/bayesnet-c2-20260504_205041/public_gate/staged_input_manifest.json", + "model_manifest": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/c2/bayesnet/bayesnet-c2-20260504_205041/staged/bayesnet/model_input_manifest.json", + "train_csv": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/c2/bayesnet/bayesnet-c2-20260504_205041/staged/public/train.csv", + "features_json": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/c2/bayesnet/bayesnet-c2-20260504_205041/staged/public/staged_features.json", + "target_column": "class", + "task_type": "classification" + }, + "env_overrides": { + "BAYESNET_DISABLE_AUTO_CAPS": "1", + "BAYESNET_EDGE_WEIGHTS_FN": "mutual_info", + "BAYESNET_ESTIMATOR_TYPE": "chow-liu", + "BAYESNET_FIT_ROWS": "50000", + "BAYESNET_MAX_BINS": "4", + "BAYESNET_MAX_CAT_LEVELS": "32", + "BAYESNET_N_JOBS": "1", + "BAYESNET_STRUCT_ROWS": "10000" + } +} \ No newline at end of file diff --git a/hyperparameter/c2/bayesnet/bayesnet-c2-20260504_205041/runtime_result.json b/hyperparameter/c2/bayesnet/bayesnet-c2-20260504_205041/runtime_result.json new file mode 100644 index 0000000000000000000000000000000000000000..1422d850f7c3788deab4caf34368f3f41b61c226 --- /dev/null +++ b/hyperparameter/c2/bayesnet/bayesnet-c2-20260504_205041/runtime_result.json @@ -0,0 +1,27 @@ +{ + "dataset_id": "c2", + "model": "bayesnet", + "run_id": "bayesnet-c2-20260504_205041", + "public_gate_status": "pass", + "adapter_ready_status": "pass", + "train_status": "success", + "generate_status": "success", + "reason_code": null, + "reason_detail": null, + "artifacts": { + "synthetic_csv": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/c2/bayesnet/bayesnet-c2-20260504_205041/bayesnet-c2-1382-20260504_205049.csv", + "model_path": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/c2/bayesnet/bayesnet-c2-20260504_205041/bayesnet_model.pkl" + }, + "timings": { + "train": { + "started_at": "2026-05-04T20:50:41", + "ended_at": "2026-05-04T20:50:49", + "duration_sec": 7.87 + }, + "generate": { + "started_at": "2026-05-04T20:50:49", + "ended_at": "2026-05-04T20:50:57", + "duration_sec": 7.906 + } + } +} \ No newline at end of file diff --git a/hyperparameter/c2/bayesnet/bayesnet-c2-20260504_205041/staged/bayesnet/adapter_report.json b/hyperparameter/c2/bayesnet/bayesnet-c2-20260504_205041/staged/bayesnet/adapter_report.json new file mode 100644 index 0000000000000000000000000000000000000000..c279063f0e67a6ca4fb91d6ab9fca1e73b84d9cf --- /dev/null +++ b/hyperparameter/c2/bayesnet/bayesnet-c2-20260504_205041/staged/bayesnet/adapter_report.json @@ -0,0 +1,7 @@ +{ + "adapter_ready_status": "pass", + "adapter_fail_reason_code": null, + "adapter_fail_detail": null, + "adapter_transforms_applied": [], + "model_input_manifest": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/c2/bayesnet/bayesnet-c2-20260504_205041/staged/bayesnet/model_input_manifest.json" +} \ No newline at end of file diff --git a/hyperparameter/c2/bayesnet/bayesnet-c2-20260504_205041/staged/bayesnet/adapter_transforms_applied.json b/hyperparameter/c2/bayesnet/bayesnet-c2-20260504_205041/staged/bayesnet/adapter_transforms_applied.json new file mode 100644 index 0000000000000000000000000000000000000000..0637a088a01e8ddab3bf3fa98dbe804cbde1a0dc --- /dev/null +++ b/hyperparameter/c2/bayesnet/bayesnet-c2-20260504_205041/staged/bayesnet/adapter_transforms_applied.json @@ -0,0 +1 @@ +[] \ No newline at end of file diff --git a/hyperparameter/c2/bayesnet/bayesnet-c2-20260504_205041/staged/bayesnet/model_input_manifest.json b/hyperparameter/c2/bayesnet/bayesnet-c2-20260504_205041/staged/bayesnet/model_input_manifest.json new file mode 100644 index 0000000000000000000000000000000000000000..29485dca4df525ef13edf0933b28e4f58d989432 --- /dev/null +++ b/hyperparameter/c2/bayesnet/bayesnet-c2-20260504_205041/staged/bayesnet/model_input_manifest.json @@ -0,0 +1,151 @@ +{ + "dataset_id": "c2", + "model": "bayesnet", + "target_column": "class", + "task_type": "classification", + "column_schema": [ + { + "name": "buying", + "role": "feature", + "semantic_type": "categorical", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 4, + "unique_ratio": 0.002894, + "example_values": [ + "vhigh", + "med", + "high", + "low" + ] + } + }, + { + "name": "maint", + "role": "feature", + "semantic_type": "categorical", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 4, + "unique_ratio": 0.002894, + "example_values": [ + "vhigh", + "low", + "med", + "high" + ] + } + }, + { + "name": "doors", + "role": "feature", + "semantic_type": "categorical", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 4, + "unique_ratio": 0.002894, + "example_values": [ + "2", + "5more", + "3", + "4" + ] + } + }, + { + "name": "persons", + "role": "feature", + "semantic_type": "categorical", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 3, + "unique_ratio": 0.002171, + "example_values": [ + "2", + "4", + "more" + ] + } + }, + { + "name": "lug_boot", + "role": "feature", + "semantic_type": "categorical", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 3, + "unique_ratio": 0.002171, + "example_values": [ + "small", + "big", + "med" + ] + } + }, + { + "name": "safety", + "role": "feature", + "semantic_type": "categorical", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 3, + "unique_ratio": 0.002171, + "example_values": [ + "low", + "high", + "med" + ] + } + }, + { + "name": "class", + "role": "target", + "semantic_type": "categorical", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 4, + "unique_ratio": 0.002894, + "example_values": [ + "unacc", + "good", + "acc", + "vgood" + ] + } + } + ], + "public_manifest": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/c2/bayesnet/bayesnet-c2-20260504_205041/public_gate/staged_input_manifest.json", + "train_csv": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/c2/bayesnet/bayesnet-c2-20260504_205041/staged/public/train.csv", + "val_csv": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/c2/bayesnet/bayesnet-c2-20260504_205041/staged/public/val.csv", + "test_csv": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/c2/bayesnet/bayesnet-c2-20260504_205041/staged/public/test.csv", + "features_json": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/c2/bayesnet/bayesnet-c2-20260504_205041/staged/public/staged_features.json", + "public_gate_report": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/c2/bayesnet/bayesnet-c2-20260504_205041/public_gate/public_gate_report.json" +} \ No newline at end of file diff --git a/hyperparameter/c2/bayesnet/bayesnet-c2-20260504_205041/staged/public/staged_features.json b/hyperparameter/c2/bayesnet/bayesnet-c2-20260504_205041/staged/public/staged_features.json new file mode 100644 index 0000000000000000000000000000000000000000..61783861dd5de501592f76acb0469cf3f3b2622a --- /dev/null +++ b/hyperparameter/c2/bayesnet/bayesnet-c2-20260504_205041/staged/public/staged_features.json @@ -0,0 +1,37 @@ +[ + { + "feature_name": "buying", + "data_type": "categorical", + "is_target": false + }, + { + "feature_name": "maint", + "data_type": "categorical", + "is_target": false + }, + { + "feature_name": "doors", + "data_type": "categorical", + "is_target": false + }, + { + "feature_name": "persons", + "data_type": "categorical", + "is_target": false + }, + { + "feature_name": "lug_boot", + "data_type": "categorical", + "is_target": false + }, + { + "feature_name": "safety", + "data_type": "categorical", + "is_target": false + }, + { + "feature_name": "class", + "data_type": "categorical", + "is_target": true + } +] \ No newline at end of file diff --git a/hyperparameter/c2/bayesnet/bayesnet-c2-20260504_205041/staged/public/test.csv b/hyperparameter/c2/bayesnet/bayesnet-c2-20260504_205041/staged/public/test.csv new file mode 100644 index 0000000000000000000000000000000000000000..392a0d7189a34d8f13ecf20a99d64b03230d517c --- /dev/null +++ b/hyperparameter/c2/bayesnet/bayesnet-c2-20260504_205041/staged/public/test.csv @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:b48114a7d0bc5bd9a07920f903c8d4aba8bf98bf2a66a050da03588b0245ca73 +size 5273 diff --git a/hyperparameter/c2/bayesnet/bayesnet-c2-20260504_205041/staged/public/train.csv b/hyperparameter/c2/bayesnet/bayesnet-c2-20260504_205041/staged/public/train.csv new file mode 100644 index 0000000000000000000000000000000000000000..da4f4d55134eebc0e51157d0d467536371db1484 --- /dev/null +++ b/hyperparameter/c2/bayesnet/bayesnet-c2-20260504_205041/staged/public/train.csv @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:4aed00c2c2b3f88a55a7ebff31b2e1b5e0e32fb0a7267e0b9d2779cd23e434dd +size 41565 diff --git a/hyperparameter/c2/bayesnet/bayesnet-c2-20260504_205041/staged/public/val.csv b/hyperparameter/c2/bayesnet/bayesnet-c2-20260504_205041/staged/public/val.csv new file mode 100644 index 0000000000000000000000000000000000000000..af8caf7ee42524188534a3daf32996dc491952d9 --- /dev/null +++ b/hyperparameter/c2/bayesnet/bayesnet-c2-20260504_205041/staged/public/val.csv @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:26e90c1170a57a14c05832ac88027722b1f3848f9662c7c09ef7c93dcba4cc01 +size 5176 diff --git a/hyperparameter/c2/bayesnet/bayesnet-c2-20260504_205041/train_20260504_205041.log b/hyperparameter/c2/bayesnet/bayesnet-c2-20260504_205041/train_20260504_205041.log new file mode 100644 index 0000000000000000000000000000000000000000..f79c124428ed50dce2e2deab95772a2b389d53cd --- /dev/null +++ b/hyperparameter/c2/bayesnet/bayesnet-c2-20260504_205041/train_20260504_205041.log @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:24d6234b7169f94b2276c9afe8e73f7b2731590e1f3e7309c9f59fcc70ae4ad6 +size 3851 diff --git a/hyperparameter/c2/bayesnet/bayesnet-c2-20260504_205110/_bayesnet_generate.py b/hyperparameter/c2/bayesnet/bayesnet-c2-20260504_205110/_bayesnet_generate.py new file mode 100644 index 0000000000000000000000000000000000000000..ff1d106481a7b5dec924b0c3812cc7a53cb46b11 --- /dev/null +++ b/hyperparameter/c2/bayesnet/bayesnet-c2-20260504_205110/_bayesnet_generate.py @@ -0,0 +1,105 @@ + +import pickle +import subprocess +import sys +import warnings + +import numpy as np +import pandas as pd +from pgmpy.sampling import BayesianModelSampling + +warnings.filterwarnings("ignore", category=FutureWarning) + +def _ensure_cloudpickle(): + try: + import cloudpickle # noqa: F401 + except ModuleNotFoundError: + subprocess.check_call( + [sys.executable, "-m", "pip", "install", "--quiet", "cloudpickle"], + ) + +_ensure_cloudpickle() + +with open("/work/output-Benchmark-trainonly-v1/c2/bayesnet/bayesnet-c2-20260504_205110/bayesnet_model.pkl", "rb") as f: + bundle = pickle.load(f) + +network = bundle["network"] +inverse = bundle["inverse"] +cols = bundle["column_order"] +integer_columns = set(bundle.get("integer_columns") or []) +full_order = bundle.get("full_column_order") or cols +const_cols = bundle.get("const_cols") or {} + +num_rows = int(1382) +sampler = BayesianModelSampling(network) +raw = sampler.forward_sample(size=num_rows, show_progress=False) +raw = raw.reset_index(drop=True) +if len(raw) > num_rows: + raw = raw.iloc[:num_rows] +_tries = 0 +while len(raw) < num_rows and _tries < 64: + _tries += 1 + nextra = min(10000, num_rows - len(raw)) + more = sampler.forward_sample(size=max(nextra, 1), show_progress=False) + more = more.reset_index(drop=True) + if len(more) == 0: + break + raw = pd.concat([raw, more], ignore_index=True) + if len(raw) > num_rows: + raw = raw.iloc[:num_rows] + +out = pd.DataFrame(index=raw.index) +rng = np.random.default_rng() + +for c in cols: + if c in inverse["categorical"]: + levels = inverse["categorical"][c] + idx = raw[c].astype(int).to_numpy() + idx = np.clip(idx, 0, max(0, len(levels) - 1)) + out[c] = [levels[i] for i in idx] + else: + edges = np.asarray(inverse["continuous"][c], dtype=float) + if edges.size < 2: + out[c] = 0.0 + else: + nbin = edges.size - 1 + res = [] + for k in raw[c].astype(int).to_numpy(): + k = int(k) + if k < 0: + k = 0 + if k >= nbin: + k = nbin - 1 + lo, hi = float(edges[k]), float(edges[k + 1]) + if hi < lo: + lo, hi = hi, lo + v = rng.uniform(lo, hi) + if c in integer_columns: + v = int(round(v)) + res.append(v) + out[c] = res + +final = pd.DataFrame(index=out.index) +for c in full_order: + if c in const_cols: + final[c] = const_cols[c] + elif c in out.columns: + final[c] = out[c] + +dtypes = bundle.get("original_dtypes") or {} +for c, dts in dtypes.items(): + if c not in final.columns: + continue + try: + if "int" in dts: + final[c] = pd.to_numeric(final[c], errors="coerce").astype("Int64") + elif "float" in dts: + final[c] = pd.to_numeric(final[c], errors="coerce") + except Exception: + pass + +if len(final) != num_rows: + final = final.iloc[:num_rows].copy() +final = final.reset_index(drop=True) +final.to_csv("/work/output-Benchmark-trainonly-v1/c2/bayesnet/bayesnet-c2-20260504_205110/bayesnet-c2-1382-20260504_205118.csv", index=False) +print(f"[BayesNet] Generated {len(final)} rows (requested {num_rows}) -> /work/output-Benchmark-trainonly-v1/c2/bayesnet/bayesnet-c2-20260504_205110/bayesnet-c2-1382-20260504_205118.csv") diff --git a/hyperparameter/c2/bayesnet/bayesnet-c2-20260504_205110/_bayesnet_train.py b/hyperparameter/c2/bayesnet/bayesnet-c2-20260504_205110/_bayesnet_train.py new file mode 100644 index 0000000000000000000000000000000000000000..c0505548179e551e07a8d2e00409b3a68cd6ab50 --- /dev/null +++ b/hyperparameter/c2/bayesnet/bayesnet-c2-20260504_205110/_bayesnet_train.py @@ -0,0 +1,146 @@ + +import json +import os +import pickle +import subprocess +import sys +import warnings + +import numpy as np +import pandas as pd +from pgmpy.estimators import TreeSearch +from pgmpy.models import DiscreteBayesianNetwork +warnings.filterwarnings("ignore", category=FutureWarning) + +def _ensure_cloudpickle(): + try: + import cloudpickle # noqa: F401 + except ModuleNotFoundError: + subprocess.check_call( + [sys.executable, "-m", "pip", "install", "--quiet", "cloudpickle"], + ) + +_ensure_cloudpickle() + +with open("/work/output-Benchmark-trainonly-v1/c2/bayesnet/bayesnet-c2-20260504_205110/bayesnet_coltypes.json", "r", encoding="utf-8") as _f: + colmeta = json.load(_f) +integer_columns = set(colmeta.get("integer_columns") or []) + +df = pd.read_csv("/work/output-Benchmark-trainonly-v1/c2/bayesnet/bayesnet-c2-20260504_205110/staged/public/train.csv") +df = df.dropna(axis=1, how="all") +full_column_order = list(df.columns) + +const_cols = {} +for col in list(df.columns): + if df[col].nunique(dropna=True) <= 1: + const_cols[col] = df[col].iloc[0] if len(df) > 0 else None + df = df.drop(columns=[col]) + print(f"[BayesNet] Dropped zero-variance column '{col}'") + +const_path = "/work/output-Benchmark-trainonly-v1/c2/bayesnet/bayesnet-c2-20260504_205110/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 = int(os.environ.get("BAYESNET_MAX_BINS", "0")) +max_cat_levels = int(os.environ.get("BAYESNET_MAX_CAT_LEVELS", "0")) +if max_bins <= 0: + max_bins = 10 +if max_cat_levels <= 0: + max_cat_levels = 256 +auto_caps = os.environ.get("BAYESNET_DISABLE_AUTO_CAPS", "0").strip().lower() not in ("1", "true", "yes") +if auto_caps and max_bins == 10 and max_cat_levels == 256: + if _n_plan > 35 or _n_samples > 200000: + max_bins = 5 + max_cat_levels = 64 + if _n_plan > 55: + max_bins = 4 + max_cat_levels = 32 +struct_rows = int(os.environ.get("BAYESNET_STRUCT_ROWS", "25000")) +fit_rows = int(os.environ.get("BAYESNET_FIT_ROWS", "120000")) +estimator_type = (os.environ.get("BAYESNET_ESTIMATOR_TYPE", "chow-liu") or "chow-liu").strip() +edge_weights_fn = (os.environ.get("BAYESNET_EDGE_WEIGHTS_FN", "mutual_info") or "mutual_info").strip() +root_node = (os.environ.get("BAYESNET_ROOT_NODE", "") or "").strip() or None +n_jobs = int(os.environ.get("BAYESNET_N_JOBS", "1")) +print( + f"[BayesNet] max_bins={max_bins}, max_cat_levels={max_cat_levels}, struct_rows={struct_rows}, fit_rows={fit_rows}, estimator_type={estimator_type}, edge_weights_fn={edge_weights_fn}, root_node={root_node}, n_jobs={n_jobs} " + f"(cols_in_df={_n_plan}, rows={_n_samples})" +) + +for entry in colmeta["columns"]: + name = entry["name"] + if name not in df.columns: + continue + kind = entry["type"] + s = df[name] + if kind == "categorical": + s2 = s.astype(str).fillna("__NA__") + counts = s2.value_counts(dropna=False) + if len(counts) > max_cat_levels: + keep = set(counts.index[: max_cat_levels - 1].tolist()) + s2 = s2.map(lambda x: x if x in keep else "__OTHER__") + uniques = sorted(s2.dropna().unique(), key=lambda x: str(x)) + mapping = {str(v): i for i, v in enumerate(uniques)} + inverse["categorical"][name] = [uniques[i] for i in range(len(uniques))] + enc[name] = s2.map(lambda x, m=mapping: m.get(str(x), 0)).astype(int) + else: + s_num = pd.to_numeric(s, errors="coerce") + nu = int(s_num.nunique(dropna=True)) + q = min(max_bins, max(2, nu)) + if nu < 2: + enc[name] = np.zeros(len(s_num), dtype=int) + lo, hi = float(s_num.min()), float(s_num.max()) + inverse["continuous"][name] = [lo, hi] + else: + try: + _, bins = pd.qcut( + s_num, q=q, retbins=True, duplicates="drop" + ) + except Exception: + med = float(s_num.median()) + s2 = s_num.fillna(med) + _, bins = pd.qcut( + s2, q=min(q, 3), retbins=True, duplicates="drop" + ) + bins = np.asarray(bins, dtype=float) + lab = pd.cut( + s_num, bins=bins, labels=False, include_lowest=True + ) + enc[name] = lab.fillna(0).astype(int) + inverse["continuous"][name] = bins.tolist() + +print(f"[BayesNet] Training on {len(enc)} rows, {len(enc.columns)} cols (encoded)") + +enc_struct = enc +if len(enc) > struct_rows: + enc_struct = enc.sample(n=struct_rows, random_state=0, replace=False) + print(f"[BayesNet] TreeSearch on {len(enc_struct)} rows (subsample; full n={len(enc)})") +dag = TreeSearch(enc_struct, root_node=root_node, n_jobs=n_jobs).estimate(estimator_type=estimator_type, edge_weights_fn=edge_weights_fn, show_progress=False) +for col in enc.columns: + if col not in dag.nodes(): + dag.add_node(col) + print(f"[BayesNet] Added isolated node to DAG: {col}") +network = DiscreteBayesianNetwork(dag) +enc_fit = enc +if len(enc) > fit_rows: + enc_fit = enc.sample(n=fit_rows, random_state=1, replace=False) + print(f"[BayesNet] fit() on {len(enc_fit)} rows (full n={len(enc)})") +network.fit(enc_fit) + +bundle = { + "network": network, + "inverse": inverse, + "column_order": list(enc.columns), + "full_column_order": full_column_order, + "integer_columns": list(integer_columns), + "original_dtypes": {c: str(df[c].dtype) for c in enc.columns}, + "const_cols": const_cols, +} +with open("/work/output-Benchmark-trainonly-v1/c2/bayesnet/bayesnet-c2-20260504_205110/bayesnet_model.pkl", "wb") as _f: + pickle.dump(bundle, _f) +print(f"[BayesNet] Model saved -> /work/output-Benchmark-trainonly-v1/c2/bayesnet/bayesnet-c2-20260504_205110/bayesnet_model.pkl") diff --git a/hyperparameter/c2/bayesnet/bayesnet-c2-20260504_205110/bayesnet-c2-1382-20260504_205118.csv b/hyperparameter/c2/bayesnet/bayesnet-c2-20260504_205110/bayesnet-c2-1382-20260504_205118.csv new file mode 100644 index 0000000000000000000000000000000000000000..5b4d58c23201f493d0c51b7e8f0c4624122204b5 --- /dev/null +++ b/hyperparameter/c2/bayesnet/bayesnet-c2-20260504_205110/bayesnet-c2-1382-20260504_205118.csv @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:58fdde1b52d69d3a9a1d2f4d14824cb26a1a39f88ab6062f227976e8769c63f4 +size 41641 diff --git a/hyperparameter/c2/bayesnet/bayesnet-c2-20260504_205110/bayesnet_coltypes.json b/hyperparameter/c2/bayesnet/bayesnet-c2-20260504_205110/bayesnet_coltypes.json new file mode 100644 index 0000000000000000000000000000000000000000..dc49694e781f314f19b59a568715784a7cabec24 --- /dev/null +++ b/hyperparameter/c2/bayesnet/bayesnet-c2-20260504_205110/bayesnet_coltypes.json @@ -0,0 +1,33 @@ +{ + "columns": [ + { + "name": "buying", + "type": "categorical" + }, + { + "name": "maint", + "type": "categorical" + }, + { + "name": "doors", + "type": "categorical" + }, + { + "name": "persons", + "type": "categorical" + }, + { + "name": "lug_boot", + "type": "categorical" + }, + { + "name": "safety", + "type": "categorical" + }, + { + "name": "class", + "type": "categorical" + } + ], + "integer_columns": [] +} \ No newline at end of file diff --git a/hyperparameter/c2/bayesnet/bayesnet-c2-20260504_205110/bayesnet_model.pkl b/hyperparameter/c2/bayesnet/bayesnet-c2-20260504_205110/bayesnet_model.pkl new file mode 100644 index 0000000000000000000000000000000000000000..a41a2cb32a11c469c794a576140511b67c8f7bdb --- /dev/null +++ b/hyperparameter/c2/bayesnet/bayesnet-c2-20260504_205110/bayesnet_model.pkl @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:c9fc1dfaabb7725d9da65e2853e0e7d4de92da7281a7237ef5c6909e01f2a513 +size 4250 diff --git a/hyperparameter/c2/bayesnet/bayesnet-c2-20260504_205110/const_cols.json b/hyperparameter/c2/bayesnet/bayesnet-c2-20260504_205110/const_cols.json new file mode 100644 index 0000000000000000000000000000000000000000..9e26dfeeb6e641a33dae4961196235bdb965b21b --- /dev/null +++ b/hyperparameter/c2/bayesnet/bayesnet-c2-20260504_205110/const_cols.json @@ -0,0 +1 @@ +{} \ No newline at end of file diff --git a/hyperparameter/c2/bayesnet/bayesnet-c2-20260504_205110/gen_20260504_205118.log b/hyperparameter/c2/bayesnet/bayesnet-c2-20260504_205110/gen_20260504_205118.log new file mode 100644 index 0000000000000000000000000000000000000000..f19b27704b3b9166c13797b9b65f4d57f60d8719 --- /dev/null +++ b/hyperparameter/c2/bayesnet/bayesnet-c2-20260504_205110/gen_20260504_205118.log @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:7b2ef03f87794d4243cb8d14c978c41291c346f790daa634f8d741e6bb642c0d +size 3661 diff --git a/hyperparameter/c2/bayesnet/bayesnet-c2-20260504_205110/input_snapshot.json b/hyperparameter/c2/bayesnet/bayesnet-c2-20260504_205110/input_snapshot.json new file mode 100644 index 0000000000000000000000000000000000000000..85fdc398e0d261ad97c34409134cc4aebb1bb672 --- /dev/null +++ b/hyperparameter/c2/bayesnet/bayesnet-c2-20260504_205110/input_snapshot.json @@ -0,0 +1,36 @@ +{ + "dataset_id": "c2", + "model": "bayesnet", + "inputs": { + "train_csv": { + "path": "/data/jialinzhang/SynthesizePipeline-server/DatasetNew/c2/c2-train.csv", + "exists": true, + "size": 42948, + "sha256": "17bc560fa96bd00fb3b526e1e65bc91210b701d0d0a4e8bb9b4c5196cab56def" + }, + "val_csv": { + "path": "/data/jialinzhang/SynthesizePipeline-server/DatasetNew/c2/c2-val.csv", + "exists": true, + "size": 5349, + "sha256": "61e565eca62e65a7dccd9d51039a3170413379e10fc494e25870e7c4294863c9" + }, + "test_csv": { + "path": "/data/jialinzhang/SynthesizePipeline-server/DatasetNew/c2/c2-test.csv", + "exists": true, + "size": 5448, + "sha256": "cbcbb062a1faf5fa44b66c80532baa229e05b94fc42137269761e6c6d84af20a" + }, + "profile_json": { + "path": "/data/jialinzhang/SynthesizePipeline-server/DatasetNew/artifacts/data_core/tabular/c2/c2-dataset_profile.json", + "exists": true, + "size": 3240, + "sha256": "526b7163b2076c93c0bf4638438081ee8a6907065d5b608faa40d1a3dbc2a27b" + }, + "contract_json": { + "path": "/data/jialinzhang/SynthesizePipeline-server/DatasetNew/artifacts/data_core/tabular/c2/c2-dataset_contract_v1.json", + "exists": true, + "size": 3731, + "sha256": "fb595a876054c2ee9b4e10cfe83a5691588de1d25466cbb9d473c18ad3604009" + } + } +} \ No newline at end of file diff --git a/hyperparameter/c2/bayesnet/bayesnet-c2-20260504_205110/public_gate/normalized_schema_snapshot.json b/hyperparameter/c2/bayesnet/bayesnet-c2-20260504_205110/public_gate/normalized_schema_snapshot.json new file mode 100644 index 0000000000000000000000000000000000000000..689b1d00d96508e44ba40e58dc4560e19afc2b3b --- /dev/null +++ b/hyperparameter/c2/bayesnet/bayesnet-c2-20260504_205110/public_gate/normalized_schema_snapshot.json @@ -0,0 +1,144 @@ +{ + "dataset_id": "c2", + "target_column": "class", + "task_type": "classification", + "columns": [ + { + "name": "buying", + "role": "feature", + "semantic_type": "categorical", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 4, + "unique_ratio": 0.002894, + "example_values": [ + "vhigh", + "med", + "high", + "low" + ] + } + }, + { + "name": "maint", + "role": "feature", + "semantic_type": "categorical", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 4, + "unique_ratio": 0.002894, + "example_values": [ + "vhigh", + "low", + "med", + "high" + ] + } + }, + { + "name": "doors", + "role": "feature", + "semantic_type": "categorical", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 4, + "unique_ratio": 0.002894, + "example_values": [ + "2", + "5more", + "3", + "4" + ] + } + }, + { + "name": "persons", + "role": "feature", + "semantic_type": "categorical", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 3, + "unique_ratio": 0.002171, + "example_values": [ + "2", + "4", + "more" + ] + } + }, + { + "name": "lug_boot", + "role": "feature", + "semantic_type": "categorical", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 3, + "unique_ratio": 0.002171, + "example_values": [ + "small", + "big", + "med" + ] + } + }, + { + "name": "safety", + "role": "feature", + "semantic_type": "categorical", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 3, + "unique_ratio": 0.002171, + "example_values": [ + "low", + "high", + "med" + ] + } + }, + { + "name": "class", + "role": "target", + "semantic_type": "categorical", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 4, + "unique_ratio": 0.002894, + "example_values": [ + "unacc", + "good", + "acc", + "vgood" + ] + } + } + ] +} \ No newline at end of file diff --git a/hyperparameter/c2/bayesnet/bayesnet-c2-20260504_205110/public_gate/public_gate_report.json b/hyperparameter/c2/bayesnet/bayesnet-c2-20260504_205110/public_gate/public_gate_report.json new file mode 100644 index 0000000000000000000000000000000000000000..2e4cdcb2a4e28e40d59b17a83e773f622b7636a5 --- /dev/null +++ b/hyperparameter/c2/bayesnet/bayesnet-c2-20260504_205110/public_gate/public_gate_report.json @@ -0,0 +1,37 @@ +{ + "dataset_id": "c2", + "status": "pass", + "checks": [ + { + "check_id": "PG001_csv_parse_ok", + "status": "pass" + }, + { + "check_id": "PG002_split_header_consistent", + "status": "pass" + }, + { + "check_id": "PG003_profile_header_match", + "status": "pass" + }, + { + "check_id": "PG004_missing_token_normalized", + "status": "pass" + }, + { + "check_id": "PG005_semantic_type_validated", + "status": "pass" + }, + { + "check_id": "PG006_target_defined_and_valid", + "status": "pass" + } + ], + "target_column": "class", + "task_type": "classification", + "input_splits": { + "train": "/data/jialinzhang/SynthesizePipeline-server/DatasetNew/c2/c2-train.csv", + "val": "/data/jialinzhang/SynthesizePipeline-server/DatasetNew/c2/c2-val.csv", + "test": "/data/jialinzhang/SynthesizePipeline-server/DatasetNew/c2/c2-test.csv" + } +} \ No newline at end of file diff --git a/hyperparameter/c2/bayesnet/bayesnet-c2-20260504_205110/public_gate/staged_input_manifest.json b/hyperparameter/c2/bayesnet/bayesnet-c2-20260504_205110/public_gate/staged_input_manifest.json new file mode 100644 index 0000000000000000000000000000000000000000..44b5e60a3abc0a5ae5dd53bbb1504fbbc1e862a5 --- /dev/null +++ b/hyperparameter/c2/bayesnet/bayesnet-c2-20260504_205110/public_gate/staged_input_manifest.json @@ -0,0 +1,149 @@ +{ + "dataset_id": "c2", + "target_column": "class", + "task_type": "classification", + "train_csv": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/c2/bayesnet/bayesnet-c2-20260504_205110/staged/public/train.csv", + "val_csv": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/c2/bayesnet/bayesnet-c2-20260504_205110/staged/public/val.csv", + "test_csv": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/c2/bayesnet/bayesnet-c2-20260504_205110/staged/public/test.csv", + "features_json": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/c2/bayesnet/bayesnet-c2-20260504_205110/staged/public/staged_features.json", + "public_gate_report": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/c2/bayesnet/bayesnet-c2-20260504_205110/public_gate/public_gate_report.json", + "column_schema": [ + { + "name": "buying", + "role": "feature", + "semantic_type": "categorical", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 4, + "unique_ratio": 0.002894, + "example_values": [ + "vhigh", + "med", + "high", + "low" + ] + } + }, + { + "name": "maint", + "role": "feature", + "semantic_type": "categorical", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 4, + "unique_ratio": 0.002894, + "example_values": [ + "vhigh", + "low", + "med", + "high" + ] + } + }, + { + "name": "doors", + "role": "feature", + "semantic_type": "categorical", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 4, + "unique_ratio": 0.002894, + "example_values": [ + "2", + "5more", + "3", + "4" + ] + } + }, + { + "name": "persons", + "role": "feature", + "semantic_type": "categorical", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 3, + "unique_ratio": 0.002171, + "example_values": [ + "2", + "4", + "more" + ] + } + }, + { + "name": "lug_boot", + "role": "feature", + "semantic_type": "categorical", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 3, + "unique_ratio": 0.002171, + "example_values": [ + "small", + "big", + "med" + ] + } + }, + { + "name": "safety", + "role": "feature", + "semantic_type": "categorical", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 3, + "unique_ratio": 0.002171, + "example_values": [ + "low", + "high", + "med" + ] + } + }, + { + "name": "class", + "role": "target", + "semantic_type": "categorical", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 4, + "unique_ratio": 0.002894, + "example_values": [ + "unacc", + "good", + "acc", + "vgood" + ] + } + } + ] +} \ No newline at end of file diff --git a/hyperparameter/c2/bayesnet/bayesnet-c2-20260504_205110/run_config.json b/hyperparameter/c2/bayesnet/bayesnet-c2-20260504_205110/run_config.json new file mode 100644 index 0000000000000000000000000000000000000000..f03a710611ce3c573522f0daf6d6aad611a4b8e0 --- /dev/null +++ b/hyperparameter/c2/bayesnet/bayesnet-c2-20260504_205110/run_config.json @@ -0,0 +1,47 @@ +{ + "schema_version": 1, + "recorded_at": "2026-05-04T20:51:10", + "dataset_id": "c2", + "model": "bayesnet", + "work_dir": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/c2/bayesnet/bayesnet-c2-20260504_205110", + "dataset_source_requested": "new", + "dataset_source_resolved": "new", + "cli_args": { + "model": "bayesnet", + "dataset": "c2", + "dataset_source": "new", + "train": true, + "generate": true, + "num_rows": 0, + "epochs": null, + "output_dir": null, + "model_dir": null, + "work_dir": null, + "resume": false, + "no_stats": false + }, + "resolved": { + "num_rows": 1382, + "model_path": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/c2/bayesnet/bayesnet-c2-20260504_205110/bayesnet_model.pkl", + "output_csv": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/c2/bayesnet/bayesnet-c2-20260504_205110/bayesnet-c2-1382-20260504_205118.csv" + }, + "input_artifacts": { + "public_gate_report": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/c2/bayesnet/bayesnet-c2-20260504_205110/public_gate/public_gate_report.json", + "public_manifest": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/c2/bayesnet/bayesnet-c2-20260504_205110/public_gate/staged_input_manifest.json", + "model_manifest": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/c2/bayesnet/bayesnet-c2-20260504_205110/staged/bayesnet/model_input_manifest.json", + "train_csv": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/c2/bayesnet/bayesnet-c2-20260504_205110/staged/public/train.csv", + "features_json": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/c2/bayesnet/bayesnet-c2-20260504_205110/staged/public/staged_features.json", + "target_column": "class", + "task_type": "classification" + }, + "env_overrides": { + "BAYESNET_DISABLE_AUTO_CAPS": "1", + "BAYESNET_EDGE_WEIGHTS_FN": "mutual_info", + "BAYESNET_ESTIMATOR_TYPE": "chow-liu", + "BAYESNET_FIT_ROWS": "80000", + "BAYESNET_MAX_BINS": "5", + "BAYESNET_MAX_CAT_LEVELS": "64", + "BAYESNET_N_JOBS": "1", + "BAYESNET_STRUCT_ROWS": "20000" + } +} \ No newline at end of file diff --git a/hyperparameter/c2/bayesnet/bayesnet-c2-20260504_205110/runtime_result.json b/hyperparameter/c2/bayesnet/bayesnet-c2-20260504_205110/runtime_result.json new file mode 100644 index 0000000000000000000000000000000000000000..3595d0c99e06ed4f5893782721005e9c9476b027 --- /dev/null +++ b/hyperparameter/c2/bayesnet/bayesnet-c2-20260504_205110/runtime_result.json @@ -0,0 +1,27 @@ +{ + "dataset_id": "c2", + "model": "bayesnet", + "run_id": "bayesnet-c2-20260504_205110", + "public_gate_status": "pass", + "adapter_ready_status": "pass", + "train_status": "success", + "generate_status": "success", + "reason_code": null, + "reason_detail": null, + "artifacts": { + "synthetic_csv": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/c2/bayesnet/bayesnet-c2-20260504_205110/bayesnet-c2-1382-20260504_205118.csv", + "model_path": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/c2/bayesnet/bayesnet-c2-20260504_205110/bayesnet_model.pkl" + }, + "timings": { + "train": { + "started_at": "2026-05-04T20:51:10", + "ended_at": "2026-05-04T20:51:18", + "duration_sec": 7.626 + }, + "generate": { + "started_at": "2026-05-04T20:51:18", + "ended_at": "2026-05-04T20:51:26", + "duration_sec": 7.788 + } + } +} \ No newline at end of file diff --git a/hyperparameter/c2/bayesnet/bayesnet-c2-20260504_205110/staged/bayesnet/adapter_report.json b/hyperparameter/c2/bayesnet/bayesnet-c2-20260504_205110/staged/bayesnet/adapter_report.json new file mode 100644 index 0000000000000000000000000000000000000000..0ef6e5fb94ed048f4152abfd56b72d487f09990d --- /dev/null +++ b/hyperparameter/c2/bayesnet/bayesnet-c2-20260504_205110/staged/bayesnet/adapter_report.json @@ -0,0 +1,7 @@ +{ + "adapter_ready_status": "pass", + "adapter_fail_reason_code": null, + "adapter_fail_detail": null, + "adapter_transforms_applied": [], + "model_input_manifest": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/c2/bayesnet/bayesnet-c2-20260504_205110/staged/bayesnet/model_input_manifest.json" +} \ No newline at end of file diff --git a/hyperparameter/c2/bayesnet/bayesnet-c2-20260504_205110/staged/bayesnet/adapter_transforms_applied.json b/hyperparameter/c2/bayesnet/bayesnet-c2-20260504_205110/staged/bayesnet/adapter_transforms_applied.json new file mode 100644 index 0000000000000000000000000000000000000000..0637a088a01e8ddab3bf3fa98dbe804cbde1a0dc --- /dev/null +++ b/hyperparameter/c2/bayesnet/bayesnet-c2-20260504_205110/staged/bayesnet/adapter_transforms_applied.json @@ -0,0 +1 @@ +[] \ No newline at end of file diff --git a/hyperparameter/c2/bayesnet/bayesnet-c2-20260504_205110/staged/bayesnet/model_input_manifest.json b/hyperparameter/c2/bayesnet/bayesnet-c2-20260504_205110/staged/bayesnet/model_input_manifest.json new file mode 100644 index 0000000000000000000000000000000000000000..b40bce7b4c1f3e16e4106396a0585142d6752a07 --- /dev/null +++ b/hyperparameter/c2/bayesnet/bayesnet-c2-20260504_205110/staged/bayesnet/model_input_manifest.json @@ -0,0 +1,151 @@ +{ + "dataset_id": "c2", + "model": "bayesnet", + "target_column": "class", + "task_type": "classification", + "column_schema": [ + { + "name": "buying", + "role": "feature", + "semantic_type": "categorical", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 4, + "unique_ratio": 0.002894, + "example_values": [ + "vhigh", + "med", + "high", + "low" + ] + } + }, + { + "name": "maint", + "role": "feature", + "semantic_type": "categorical", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 4, + "unique_ratio": 0.002894, + "example_values": [ + "vhigh", + "low", + "med", + "high" + ] + } + }, + { + "name": "doors", + "role": "feature", + "semantic_type": "categorical", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 4, + "unique_ratio": 0.002894, + "example_values": [ + "2", + "5more", + "3", + "4" + ] + } + }, + { + "name": "persons", + "role": "feature", + "semantic_type": "categorical", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 3, + "unique_ratio": 0.002171, + "example_values": [ + "2", + "4", + "more" + ] + } + }, + { + "name": "lug_boot", + "role": "feature", + "semantic_type": "categorical", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 3, + "unique_ratio": 0.002171, + "example_values": [ + "small", + "big", + "med" + ] + } + }, + { + "name": "safety", + "role": "feature", + "semantic_type": "categorical", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 3, + "unique_ratio": 0.002171, + "example_values": [ + "low", + "high", + "med" + ] + } + }, + { + "name": "class", + "role": "target", + "semantic_type": "categorical", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 4, + "unique_ratio": 0.002894, + "example_values": [ + "unacc", + "good", + "acc", + "vgood" + ] + } + } + ], + "public_manifest": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/c2/bayesnet/bayesnet-c2-20260504_205110/public_gate/staged_input_manifest.json", + "train_csv": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/c2/bayesnet/bayesnet-c2-20260504_205110/staged/public/train.csv", + "val_csv": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/c2/bayesnet/bayesnet-c2-20260504_205110/staged/public/val.csv", + "test_csv": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/c2/bayesnet/bayesnet-c2-20260504_205110/staged/public/test.csv", + "features_json": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/c2/bayesnet/bayesnet-c2-20260504_205110/staged/public/staged_features.json", + "public_gate_report": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/c2/bayesnet/bayesnet-c2-20260504_205110/public_gate/public_gate_report.json" +} \ No newline at end of file diff --git a/hyperparameter/c2/bayesnet/bayesnet-c2-20260504_205110/staged/public/staged_features.json b/hyperparameter/c2/bayesnet/bayesnet-c2-20260504_205110/staged/public/staged_features.json new file mode 100644 index 0000000000000000000000000000000000000000..61783861dd5de501592f76acb0469cf3f3b2622a --- /dev/null +++ b/hyperparameter/c2/bayesnet/bayesnet-c2-20260504_205110/staged/public/staged_features.json @@ -0,0 +1,37 @@ +[ + { + "feature_name": "buying", + "data_type": "categorical", + "is_target": false + }, + { + "feature_name": "maint", + "data_type": "categorical", + "is_target": false + }, + { + "feature_name": "doors", + "data_type": "categorical", + "is_target": false + }, + { + "feature_name": "persons", + "data_type": "categorical", + "is_target": false + }, + { + "feature_name": "lug_boot", + "data_type": "categorical", + "is_target": false + }, + { + "feature_name": "safety", + "data_type": "categorical", + "is_target": false + }, + { + "feature_name": "class", + "data_type": "categorical", + "is_target": true + } +] \ No newline at end of file diff --git a/hyperparameter/c2/bayesnet/bayesnet-c2-20260504_205110/staged/public/test.csv b/hyperparameter/c2/bayesnet/bayesnet-c2-20260504_205110/staged/public/test.csv new file mode 100644 index 0000000000000000000000000000000000000000..392a0d7189a34d8f13ecf20a99d64b03230d517c --- /dev/null +++ b/hyperparameter/c2/bayesnet/bayesnet-c2-20260504_205110/staged/public/test.csv @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:b48114a7d0bc5bd9a07920f903c8d4aba8bf98bf2a66a050da03588b0245ca73 +size 5273 diff --git a/hyperparameter/c2/bayesnet/bayesnet-c2-20260504_205110/staged/public/train.csv b/hyperparameter/c2/bayesnet/bayesnet-c2-20260504_205110/staged/public/train.csv new file mode 100644 index 0000000000000000000000000000000000000000..da4f4d55134eebc0e51157d0d467536371db1484 --- /dev/null +++ b/hyperparameter/c2/bayesnet/bayesnet-c2-20260504_205110/staged/public/train.csv @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:4aed00c2c2b3f88a55a7ebff31b2e1b5e0e32fb0a7267e0b9d2779cd23e434dd +size 41565 diff --git a/hyperparameter/c2/bayesnet/bayesnet-c2-20260504_205110/staged/public/val.csv b/hyperparameter/c2/bayesnet/bayesnet-c2-20260504_205110/staged/public/val.csv new file mode 100644 index 0000000000000000000000000000000000000000..af8caf7ee42524188534a3daf32996dc491952d9 --- /dev/null +++ b/hyperparameter/c2/bayesnet/bayesnet-c2-20260504_205110/staged/public/val.csv @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:26e90c1170a57a14c05832ac88027722b1f3848f9662c7c09ef7c93dcba4cc01 +size 5176 diff --git a/hyperparameter/c2/bayesnet/bayesnet-c2-20260504_205110/train_20260504_205110.log b/hyperparameter/c2/bayesnet/bayesnet-c2-20260504_205110/train_20260504_205110.log new file mode 100644 index 0000000000000000000000000000000000000000..16b6ee17d28928b5524538e81ca5723b1a51c7f0 --- /dev/null +++ b/hyperparameter/c2/bayesnet/bayesnet-c2-20260504_205110/train_20260504_205110.log @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:7e105b69effb35457c9bfb27985101b61191edc90cbb2b210e24921c429e0583 +size 3850 diff --git a/hyperparameter/c2/bayesnet/bayesnet-c2-20260504_205140/_bayesnet_generate.py b/hyperparameter/c2/bayesnet/bayesnet-c2-20260504_205140/_bayesnet_generate.py new file mode 100644 index 0000000000000000000000000000000000000000..9135b24f67a271626cbe0b02a0a6bdcb3674b127 --- /dev/null +++ b/hyperparameter/c2/bayesnet/bayesnet-c2-20260504_205140/_bayesnet_generate.py @@ -0,0 +1,105 @@ + +import pickle +import subprocess +import sys +import warnings + +import numpy as np +import pandas as pd +from pgmpy.sampling import BayesianModelSampling + +warnings.filterwarnings("ignore", category=FutureWarning) + +def _ensure_cloudpickle(): + try: + import cloudpickle # noqa: F401 + except ModuleNotFoundError: + subprocess.check_call( + [sys.executable, "-m", "pip", "install", "--quiet", "cloudpickle"], + ) + +_ensure_cloudpickle() + +with open("/work/output-Benchmark-trainonly-v1/c2/bayesnet/bayesnet-c2-20260504_205140/bayesnet_model.pkl", "rb") as f: + bundle = pickle.load(f) + +network = bundle["network"] +inverse = bundle["inverse"] +cols = bundle["column_order"] +integer_columns = set(bundle.get("integer_columns") or []) +full_order = bundle.get("full_column_order") or cols +const_cols = bundle.get("const_cols") or {} + +num_rows = int(1382) +sampler = BayesianModelSampling(network) +raw = sampler.forward_sample(size=num_rows, show_progress=False) +raw = raw.reset_index(drop=True) +if len(raw) > num_rows: + raw = raw.iloc[:num_rows] +_tries = 0 +while len(raw) < num_rows and _tries < 64: + _tries += 1 + nextra = min(10000, num_rows - len(raw)) + more = sampler.forward_sample(size=max(nextra, 1), show_progress=False) + more = more.reset_index(drop=True) + if len(more) == 0: + break + raw = pd.concat([raw, more], ignore_index=True) + if len(raw) > num_rows: + raw = raw.iloc[:num_rows] + +out = pd.DataFrame(index=raw.index) +rng = np.random.default_rng() + +for c in cols: + if c in inverse["categorical"]: + levels = inverse["categorical"][c] + idx = raw[c].astype(int).to_numpy() + idx = np.clip(idx, 0, max(0, len(levels) - 1)) + out[c] = [levels[i] for i in idx] + else: + edges = np.asarray(inverse["continuous"][c], dtype=float) + if edges.size < 2: + out[c] = 0.0 + else: + nbin = edges.size - 1 + res = [] + for k in raw[c].astype(int).to_numpy(): + k = int(k) + if k < 0: + k = 0 + if k >= nbin: + k = nbin - 1 + lo, hi = float(edges[k]), float(edges[k + 1]) + if hi < lo: + lo, hi = hi, lo + v = rng.uniform(lo, hi) + if c in integer_columns: + v = int(round(v)) + res.append(v) + out[c] = res + +final = pd.DataFrame(index=out.index) +for c in full_order: + if c in const_cols: + final[c] = const_cols[c] + elif c in out.columns: + final[c] = out[c] + +dtypes = bundle.get("original_dtypes") or {} +for c, dts in dtypes.items(): + if c not in final.columns: + continue + try: + if "int" in dts: + final[c] = pd.to_numeric(final[c], errors="coerce").astype("Int64") + elif "float" in dts: + final[c] = pd.to_numeric(final[c], errors="coerce") + except Exception: + pass + +if len(final) != num_rows: + final = final.iloc[:num_rows].copy() +final = final.reset_index(drop=True) +final.to_csv("/work/output-Benchmark-trainonly-v1/c2/bayesnet/bayesnet-c2-20260504_205140/bayesnet-c2-1382-20260504_205147.csv", index=False) +print(f"[BayesNet] Generated {len(final)} rows (requested {num_rows}) -> /work/output-Benchmark-trainonly-v1/c2/bayesnet/bayesnet-c2-20260504_205140/bayesnet-c2-1382-20260504_205147.csv") diff --git a/hyperparameter/c2/bayesnet/bayesnet-c2-20260504_205140/_bayesnet_train.py b/hyperparameter/c2/bayesnet/bayesnet-c2-20260504_205140/_bayesnet_train.py new file mode 100644 index 0000000000000000000000000000000000000000..c241490a4a60a30b84e617230f1dd631a485c462 --- /dev/null +++ b/hyperparameter/c2/bayesnet/bayesnet-c2-20260504_205140/_bayesnet_train.py @@ -0,0 +1,146 @@ + +import json +import os +import pickle +import subprocess +import sys +import warnings + +import numpy as np +import pandas as pd +from pgmpy.estimators import TreeSearch +from pgmpy.models import DiscreteBayesianNetwork +warnings.filterwarnings("ignore", category=FutureWarning) + +def _ensure_cloudpickle(): + try: + import cloudpickle # noqa: F401 + except ModuleNotFoundError: + subprocess.check_call( + [sys.executable, "-m", "pip", "install", "--quiet", "cloudpickle"], + ) + +_ensure_cloudpickle() + +with open("/work/output-Benchmark-trainonly-v1/c2/bayesnet/bayesnet-c2-20260504_205140/bayesnet_coltypes.json", "r", encoding="utf-8") as _f: + colmeta = json.load(_f) +integer_columns = set(colmeta.get("integer_columns") or []) + +df = pd.read_csv("/work/output-Benchmark-trainonly-v1/c2/bayesnet/bayesnet-c2-20260504_205140/staged/public/train.csv") +df = df.dropna(axis=1, how="all") +full_column_order = list(df.columns) + +const_cols = {} +for col in list(df.columns): + if df[col].nunique(dropna=True) <= 1: + const_cols[col] = df[col].iloc[0] if len(df) > 0 else None + df = df.drop(columns=[col]) + print(f"[BayesNet] Dropped zero-variance column '{col}'") + +const_path = "/work/output-Benchmark-trainonly-v1/c2/bayesnet/bayesnet-c2-20260504_205140/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 = int(os.environ.get("BAYESNET_MAX_BINS", "0")) +max_cat_levels = int(os.environ.get("BAYESNET_MAX_CAT_LEVELS", "0")) +if max_bins <= 0: + max_bins = 10 +if max_cat_levels <= 0: + max_cat_levels = 256 +auto_caps = os.environ.get("BAYESNET_DISABLE_AUTO_CAPS", "0").strip().lower() not in ("1", "true", "yes") +if auto_caps and max_bins == 10 and max_cat_levels == 256: + if _n_plan > 35 or _n_samples > 200000: + max_bins = 5 + max_cat_levels = 64 + if _n_plan > 55: + max_bins = 4 + max_cat_levels = 32 +struct_rows = int(os.environ.get("BAYESNET_STRUCT_ROWS", "25000")) +fit_rows = int(os.environ.get("BAYESNET_FIT_ROWS", "120000")) +estimator_type = (os.environ.get("BAYESNET_ESTIMATOR_TYPE", "chow-liu") or "chow-liu").strip() +edge_weights_fn = (os.environ.get("BAYESNET_EDGE_WEIGHTS_FN", "mutual_info") or "mutual_info").strip() +root_node = (os.environ.get("BAYESNET_ROOT_NODE", "") or "").strip() or None +n_jobs = int(os.environ.get("BAYESNET_N_JOBS", "1")) +print( + f"[BayesNet] max_bins={max_bins}, max_cat_levels={max_cat_levels}, struct_rows={struct_rows}, fit_rows={fit_rows}, estimator_type={estimator_type}, edge_weights_fn={edge_weights_fn}, root_node={root_node}, n_jobs={n_jobs} " + f"(cols_in_df={_n_plan}, rows={_n_samples})" +) + +for entry in colmeta["columns"]: + name = entry["name"] + if name not in df.columns: + continue + kind = entry["type"] + s = df[name] + if kind == "categorical": + s2 = s.astype(str).fillna("__NA__") + counts = s2.value_counts(dropna=False) + if len(counts) > max_cat_levels: + keep = set(counts.index[: max_cat_levels - 1].tolist()) + s2 = s2.map(lambda x: x if x in keep else "__OTHER__") + uniques = sorted(s2.dropna().unique(), key=lambda x: str(x)) + mapping = {str(v): i for i, v in enumerate(uniques)} + inverse["categorical"][name] = [uniques[i] for i in range(len(uniques))] + enc[name] = s2.map(lambda x, m=mapping: m.get(str(x), 0)).astype(int) + else: + s_num = pd.to_numeric(s, errors="coerce") + nu = int(s_num.nunique(dropna=True)) + q = min(max_bins, max(2, nu)) + if nu < 2: + enc[name] = np.zeros(len(s_num), dtype=int) + lo, hi = float(s_num.min()), float(s_num.max()) + inverse["continuous"][name] = [lo, hi] + else: + try: + _, bins = pd.qcut( + s_num, q=q, retbins=True, duplicates="drop" + ) + except Exception: + med = float(s_num.median()) + s2 = s_num.fillna(med) + _, bins = pd.qcut( + s2, q=min(q, 3), retbins=True, duplicates="drop" + ) + bins = np.asarray(bins, dtype=float) + lab = pd.cut( + s_num, bins=bins, labels=False, include_lowest=True + ) + enc[name] = lab.fillna(0).astype(int) + inverse["continuous"][name] = bins.tolist() + +print(f"[BayesNet] Training on {len(enc)} rows, {len(enc.columns)} cols (encoded)") + +enc_struct = enc +if len(enc) > struct_rows: + enc_struct = enc.sample(n=struct_rows, random_state=0, replace=False) + print(f"[BayesNet] TreeSearch on {len(enc_struct)} rows (subsample; full n={len(enc)})") +dag = TreeSearch(enc_struct, root_node=root_node, n_jobs=n_jobs).estimate(estimator_type=estimator_type, edge_weights_fn=edge_weights_fn, show_progress=False) +for col in enc.columns: + if col not in dag.nodes(): + dag.add_node(col) + print(f"[BayesNet] Added isolated node to DAG: {col}") +network = DiscreteBayesianNetwork(dag) +enc_fit = enc +if len(enc) > fit_rows: + enc_fit = enc.sample(n=fit_rows, random_state=1, replace=False) + print(f"[BayesNet] fit() on {len(enc_fit)} rows (full n={len(enc)})") +network.fit(enc_fit) + +bundle = { + "network": network, + "inverse": inverse, + "column_order": list(enc.columns), + "full_column_order": full_column_order, + "integer_columns": list(integer_columns), + "original_dtypes": {c: str(df[c].dtype) for c in enc.columns}, + "const_cols": const_cols, +} +with open("/work/output-Benchmark-trainonly-v1/c2/bayesnet/bayesnet-c2-20260504_205140/bayesnet_model.pkl", "wb") as _f: + pickle.dump(bundle, _f) +print(f"[BayesNet] Model saved -> /work/output-Benchmark-trainonly-v1/c2/bayesnet/bayesnet-c2-20260504_205140/bayesnet_model.pkl") diff --git a/hyperparameter/c2/bayesnet/bayesnet-c2-20260504_205140/bayesnet-c2-1382-20260504_205147.csv b/hyperparameter/c2/bayesnet/bayesnet-c2-20260504_205140/bayesnet-c2-1382-20260504_205147.csv new file mode 100644 index 0000000000000000000000000000000000000000..f5fda963f8a9c14e2d1b6c1fd317de2020723c02 --- /dev/null +++ b/hyperparameter/c2/bayesnet/bayesnet-c2-20260504_205140/bayesnet-c2-1382-20260504_205147.csv @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:8a98f5aba955e432efbc58ec3c246f98ce379e29ec18258fa131677c4a8207d0 +size 41319 diff --git a/hyperparameter/c2/bayesnet/bayesnet-c2-20260504_205140/bayesnet_coltypes.json b/hyperparameter/c2/bayesnet/bayesnet-c2-20260504_205140/bayesnet_coltypes.json new file mode 100644 index 0000000000000000000000000000000000000000..dc49694e781f314f19b59a568715784a7cabec24 --- /dev/null +++ b/hyperparameter/c2/bayesnet/bayesnet-c2-20260504_205140/bayesnet_coltypes.json @@ -0,0 +1,33 @@ +{ + "columns": [ + { + "name": "buying", + "type": "categorical" + }, + { + "name": "maint", + "type": "categorical" + }, + { + "name": "doors", + "type": "categorical" + }, + { + "name": "persons", + "type": "categorical" + }, + { + "name": "lug_boot", + "type": "categorical" + }, + { + "name": "safety", + "type": "categorical" + }, + { + "name": "class", + "type": "categorical" + } + ], + "integer_columns": [] +} \ No newline at end of file diff --git a/hyperparameter/c2/bayesnet/bayesnet-c2-20260504_205140/bayesnet_model.pkl b/hyperparameter/c2/bayesnet/bayesnet-c2-20260504_205140/bayesnet_model.pkl new file mode 100644 index 0000000000000000000000000000000000000000..a41a2cb32a11c469c794a576140511b67c8f7bdb --- /dev/null +++ b/hyperparameter/c2/bayesnet/bayesnet-c2-20260504_205140/bayesnet_model.pkl @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:c9fc1dfaabb7725d9da65e2853e0e7d4de92da7281a7237ef5c6909e01f2a513 +size 4250 diff --git a/hyperparameter/c2/bayesnet/bayesnet-c2-20260504_205140/const_cols.json b/hyperparameter/c2/bayesnet/bayesnet-c2-20260504_205140/const_cols.json new file mode 100644 index 0000000000000000000000000000000000000000..9e26dfeeb6e641a33dae4961196235bdb965b21b --- /dev/null +++ b/hyperparameter/c2/bayesnet/bayesnet-c2-20260504_205140/const_cols.json @@ -0,0 +1 @@ +{} \ No newline at end of file diff --git a/hyperparameter/c2/bayesnet/bayesnet-c2-20260504_205140/gen_20260504_205147.log b/hyperparameter/c2/bayesnet/bayesnet-c2-20260504_205140/gen_20260504_205147.log new file mode 100644 index 0000000000000000000000000000000000000000..141154ecaf24d95838e9f8a6b420967d9ba6adb6 --- /dev/null +++ b/hyperparameter/c2/bayesnet/bayesnet-c2-20260504_205140/gen_20260504_205147.log @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:5eb25790fd0b2dc6abb854ce32828dc7c81015a2095b6c669368b99610a6a929 +size 3661 diff --git a/hyperparameter/c2/bayesnet/bayesnet-c2-20260504_205140/input_snapshot.json b/hyperparameter/c2/bayesnet/bayesnet-c2-20260504_205140/input_snapshot.json new file mode 100644 index 0000000000000000000000000000000000000000..85fdc398e0d261ad97c34409134cc4aebb1bb672 --- /dev/null +++ b/hyperparameter/c2/bayesnet/bayesnet-c2-20260504_205140/input_snapshot.json @@ -0,0 +1,36 @@ +{ + "dataset_id": "c2", + "model": "bayesnet", + "inputs": { + "train_csv": { + "path": "/data/jialinzhang/SynthesizePipeline-server/DatasetNew/c2/c2-train.csv", + "exists": true, + "size": 42948, + "sha256": "17bc560fa96bd00fb3b526e1e65bc91210b701d0d0a4e8bb9b4c5196cab56def" + }, + "val_csv": { + "path": "/data/jialinzhang/SynthesizePipeline-server/DatasetNew/c2/c2-val.csv", + "exists": true, + "size": 5349, + "sha256": "61e565eca62e65a7dccd9d51039a3170413379e10fc494e25870e7c4294863c9" + }, + "test_csv": { + "path": "/data/jialinzhang/SynthesizePipeline-server/DatasetNew/c2/c2-test.csv", + "exists": true, + "size": 5448, + "sha256": "cbcbb062a1faf5fa44b66c80532baa229e05b94fc42137269761e6c6d84af20a" + }, + "profile_json": { + "path": "/data/jialinzhang/SynthesizePipeline-server/DatasetNew/artifacts/data_core/tabular/c2/c2-dataset_profile.json", + "exists": true, + "size": 3240, + "sha256": "526b7163b2076c93c0bf4638438081ee8a6907065d5b608faa40d1a3dbc2a27b" + }, + "contract_json": { + "path": "/data/jialinzhang/SynthesizePipeline-server/DatasetNew/artifacts/data_core/tabular/c2/c2-dataset_contract_v1.json", + "exists": true, + "size": 3731, + "sha256": "fb595a876054c2ee9b4e10cfe83a5691588de1d25466cbb9d473c18ad3604009" + } + } +} \ No newline at end of file diff --git a/hyperparameter/c2/bayesnet/bayesnet-c2-20260504_205140/public_gate/normalized_schema_snapshot.json b/hyperparameter/c2/bayesnet/bayesnet-c2-20260504_205140/public_gate/normalized_schema_snapshot.json new file mode 100644 index 0000000000000000000000000000000000000000..689b1d00d96508e44ba40e58dc4560e19afc2b3b --- /dev/null +++ b/hyperparameter/c2/bayesnet/bayesnet-c2-20260504_205140/public_gate/normalized_schema_snapshot.json @@ -0,0 +1,144 @@ +{ + "dataset_id": "c2", + "target_column": "class", + "task_type": "classification", + "columns": [ + { + "name": "buying", + "role": "feature", + "semantic_type": "categorical", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 4, + "unique_ratio": 0.002894, + "example_values": [ + "vhigh", + "med", + "high", + "low" + ] + } + }, + { + "name": "maint", + "role": "feature", + "semantic_type": "categorical", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 4, + "unique_ratio": 0.002894, + "example_values": [ + "vhigh", + "low", + "med", + "high" + ] + } + }, + { + "name": "doors", + "role": "feature", + "semantic_type": "categorical", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 4, + "unique_ratio": 0.002894, + "example_values": [ + "2", + "5more", + "3", + "4" + ] + } + }, + { + "name": "persons", + "role": "feature", + "semantic_type": "categorical", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 3, + "unique_ratio": 0.002171, + "example_values": [ + "2", + "4", + "more" + ] + } + }, + { + "name": "lug_boot", + "role": "feature", + "semantic_type": "categorical", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 3, + "unique_ratio": 0.002171, + "example_values": [ + "small", + "big", + "med" + ] + } + }, + { + "name": "safety", + "role": "feature", + "semantic_type": "categorical", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 3, + "unique_ratio": 0.002171, + "example_values": [ + "low", + "high", + "med" + ] + } + }, + { + "name": "class", + "role": "target", + "semantic_type": "categorical", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 4, + "unique_ratio": 0.002894, + "example_values": [ + "unacc", + "good", + "acc", + "vgood" + ] + } + } + ] +} \ No newline at end of file diff --git a/hyperparameter/c2/bayesnet/bayesnet-c2-20260504_205140/public_gate/public_gate_report.json b/hyperparameter/c2/bayesnet/bayesnet-c2-20260504_205140/public_gate/public_gate_report.json new file mode 100644 index 0000000000000000000000000000000000000000..2e4cdcb2a4e28e40d59b17a83e773f622b7636a5 --- /dev/null +++ b/hyperparameter/c2/bayesnet/bayesnet-c2-20260504_205140/public_gate/public_gate_report.json @@ -0,0 +1,37 @@ +{ + "dataset_id": "c2", + "status": "pass", + "checks": [ + { + "check_id": "PG001_csv_parse_ok", + "status": "pass" + }, + { + "check_id": "PG002_split_header_consistent", + "status": "pass" + }, + { + "check_id": "PG003_profile_header_match", + "status": "pass" + }, + { + "check_id": "PG004_missing_token_normalized", + "status": "pass" + }, + { + "check_id": "PG005_semantic_type_validated", + "status": "pass" + }, + { + "check_id": "PG006_target_defined_and_valid", + "status": "pass" + } + ], + "target_column": "class", + "task_type": "classification", + "input_splits": { + "train": "/data/jialinzhang/SynthesizePipeline-server/DatasetNew/c2/c2-train.csv", + "val": "/data/jialinzhang/SynthesizePipeline-server/DatasetNew/c2/c2-val.csv", + "test": "/data/jialinzhang/SynthesizePipeline-server/DatasetNew/c2/c2-test.csv" + } +} \ No newline at end of file diff --git a/hyperparameter/c2/bayesnet/bayesnet-c2-20260504_205140/public_gate/staged_input_manifest.json b/hyperparameter/c2/bayesnet/bayesnet-c2-20260504_205140/public_gate/staged_input_manifest.json new file mode 100644 index 0000000000000000000000000000000000000000..69adc9f1d71ecd9b1f2e600dd7ea0ca554810116 --- /dev/null +++ b/hyperparameter/c2/bayesnet/bayesnet-c2-20260504_205140/public_gate/staged_input_manifest.json @@ -0,0 +1,149 @@ +{ + "dataset_id": "c2", + "target_column": "class", + "task_type": "classification", + "train_csv": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/c2/bayesnet/bayesnet-c2-20260504_205140/staged/public/train.csv", + "val_csv": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/c2/bayesnet/bayesnet-c2-20260504_205140/staged/public/val.csv", + "test_csv": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/c2/bayesnet/bayesnet-c2-20260504_205140/staged/public/test.csv", + "features_json": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/c2/bayesnet/bayesnet-c2-20260504_205140/staged/public/staged_features.json", + "public_gate_report": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/c2/bayesnet/bayesnet-c2-20260504_205140/public_gate/public_gate_report.json", + "column_schema": [ + { + "name": "buying", + "role": "feature", + "semantic_type": "categorical", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 4, + "unique_ratio": 0.002894, + "example_values": [ + "vhigh", + "med", + "high", + "low" + ] + } + }, + { + "name": "maint", + "role": "feature", + "semantic_type": "categorical", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 4, + "unique_ratio": 0.002894, + "example_values": [ + "vhigh", + "low", + "med", + "high" + ] + } + }, + { + "name": "doors", + "role": "feature", + "semantic_type": "categorical", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 4, + "unique_ratio": 0.002894, + "example_values": [ + "2", + "5more", + "3", + "4" + ] + } + }, + { + "name": "persons", + "role": "feature", + "semantic_type": "categorical", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 3, + "unique_ratio": 0.002171, + "example_values": [ + "2", + "4", + "more" + ] + } + }, + { + "name": "lug_boot", + "role": "feature", + "semantic_type": "categorical", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 3, + "unique_ratio": 0.002171, + "example_values": [ + "small", + "big", + "med" + ] + } + }, + { + "name": "safety", + "role": "feature", + "semantic_type": "categorical", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 3, + "unique_ratio": 0.002171, + "example_values": [ + "low", + "high", + "med" + ] + } + }, + { + "name": "class", + "role": "target", + "semantic_type": "categorical", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 4, + "unique_ratio": 0.002894, + "example_values": [ + "unacc", + "good", + "acc", + "vgood" + ] + } + } + ] +} \ No newline at end of file diff --git a/hyperparameter/c2/bayesnet/bayesnet-c2-20260504_205140/run_config.json b/hyperparameter/c2/bayesnet/bayesnet-c2-20260504_205140/run_config.json new file mode 100644 index 0000000000000000000000000000000000000000..6e7db4d7291cddc7948ba1f58daf9e468244b5c8 --- /dev/null +++ b/hyperparameter/c2/bayesnet/bayesnet-c2-20260504_205140/run_config.json @@ -0,0 +1,47 @@ +{ + "schema_version": 1, + "recorded_at": "2026-05-04T20:51:40", + "dataset_id": "c2", + "model": "bayesnet", + "work_dir": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/c2/bayesnet/bayesnet-c2-20260504_205140", + "dataset_source_requested": "new", + "dataset_source_resolved": "new", + "cli_args": { + "model": "bayesnet", + "dataset": "c2", + "dataset_source": "new", + "train": true, + "generate": true, + "num_rows": 0, + "epochs": null, + "output_dir": null, + "model_dir": null, + "work_dir": null, + "resume": false, + "no_stats": false + }, + "resolved": { + "num_rows": 1382, + "model_path": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/c2/bayesnet/bayesnet-c2-20260504_205140/bayesnet_model.pkl", + "output_csv": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/c2/bayesnet/bayesnet-c2-20260504_205140/bayesnet-c2-1382-20260504_205147.csv" + }, + "input_artifacts": { + "public_gate_report": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/c2/bayesnet/bayesnet-c2-20260504_205140/public_gate/public_gate_report.json", + "public_manifest": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/c2/bayesnet/bayesnet-c2-20260504_205140/public_gate/staged_input_manifest.json", + "model_manifest": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/c2/bayesnet/bayesnet-c2-20260504_205140/staged/bayesnet/model_input_manifest.json", + "train_csv": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/c2/bayesnet/bayesnet-c2-20260504_205140/staged/public/train.csv", + "features_json": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/c2/bayesnet/bayesnet-c2-20260504_205140/staged/public/staged_features.json", + "target_column": "class", + "task_type": "classification" + }, + "env_overrides": { + "BAYESNET_DISABLE_AUTO_CAPS": "1", + "BAYESNET_EDGE_WEIGHTS_FN": "mutual_info", + "BAYESNET_ESTIMATOR_TYPE": "chow-liu", + "BAYESNET_FIT_ROWS": "120000", + "BAYESNET_MAX_BINS": "8", + "BAYESNET_MAX_CAT_LEVELS": "128", + "BAYESNET_N_JOBS": "1", + "BAYESNET_STRUCT_ROWS": "25000" + } +} \ No newline at end of file diff --git a/hyperparameter/c2/bayesnet/bayesnet-c2-20260504_205140/runtime_result.json b/hyperparameter/c2/bayesnet/bayesnet-c2-20260504_205140/runtime_result.json new file mode 100644 index 0000000000000000000000000000000000000000..064dbfca32af916dba63d143ba0f1dbf836fe27e --- /dev/null +++ b/hyperparameter/c2/bayesnet/bayesnet-c2-20260504_205140/runtime_result.json @@ -0,0 +1,27 @@ +{ + "dataset_id": "c2", + "model": "bayesnet", + "run_id": "bayesnet-c2-20260504_205140", + "public_gate_status": "pass", + "adapter_ready_status": "pass", + "train_status": "success", + "generate_status": "success", + "reason_code": null, + "reason_detail": null, + "artifacts": { + "synthetic_csv": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/c2/bayesnet/bayesnet-c2-20260504_205140/bayesnet-c2-1382-20260504_205147.csv", + "model_path": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/c2/bayesnet/bayesnet-c2-20260504_205140/bayesnet_model.pkl" + }, + "timings": { + "train": { + "started_at": "2026-05-04T20:51:40", + "ended_at": "2026-05-04T20:51:47", + "duration_sec": 7.766 + }, + "generate": { + "started_at": "2026-05-04T20:51:47", + "ended_at": "2026-05-04T20:51:55", + "duration_sec": 7.539 + } + } +} \ No newline at end of file diff --git a/hyperparameter/c2/bayesnet/bayesnet-c2-20260504_205140/staged/bayesnet/adapter_report.json b/hyperparameter/c2/bayesnet/bayesnet-c2-20260504_205140/staged/bayesnet/adapter_report.json new file mode 100644 index 0000000000000000000000000000000000000000..decf7b77179e28d8a1ec877ebc099ea7e1822f9f --- /dev/null +++ b/hyperparameter/c2/bayesnet/bayesnet-c2-20260504_205140/staged/bayesnet/adapter_report.json @@ -0,0 +1,7 @@ +{ + "adapter_ready_status": "pass", + "adapter_fail_reason_code": null, + "adapter_fail_detail": null, + "adapter_transforms_applied": [], + "model_input_manifest": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/c2/bayesnet/bayesnet-c2-20260504_205140/staged/bayesnet/model_input_manifest.json" +} \ No newline at end of file diff --git a/hyperparameter/c2/bayesnet/bayesnet-c2-20260504_205140/staged/bayesnet/adapter_transforms_applied.json b/hyperparameter/c2/bayesnet/bayesnet-c2-20260504_205140/staged/bayesnet/adapter_transforms_applied.json new file mode 100644 index 0000000000000000000000000000000000000000..0637a088a01e8ddab3bf3fa98dbe804cbde1a0dc --- /dev/null +++ b/hyperparameter/c2/bayesnet/bayesnet-c2-20260504_205140/staged/bayesnet/adapter_transforms_applied.json @@ -0,0 +1 @@ +[] \ No newline at end of file diff --git a/hyperparameter/c2/bayesnet/bayesnet-c2-20260504_205140/staged/bayesnet/model_input_manifest.json b/hyperparameter/c2/bayesnet/bayesnet-c2-20260504_205140/staged/bayesnet/model_input_manifest.json new file mode 100644 index 0000000000000000000000000000000000000000..d2ede735c58ea9969638b87ff9100cecd708d05d --- /dev/null +++ b/hyperparameter/c2/bayesnet/bayesnet-c2-20260504_205140/staged/bayesnet/model_input_manifest.json @@ -0,0 +1,151 @@ +{ + "dataset_id": "c2", + "model": "bayesnet", + "target_column": "class", + "task_type": "classification", + "column_schema": [ + { + "name": "buying", + "role": "feature", + "semantic_type": "categorical", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 4, + "unique_ratio": 0.002894, + "example_values": [ + "vhigh", + "med", + "high", + "low" + ] + } + }, + { + "name": "maint", + "role": "feature", + "semantic_type": "categorical", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 4, + "unique_ratio": 0.002894, + "example_values": [ + "vhigh", + "low", + "med", + "high" + ] + } + }, + { + "name": "doors", + "role": "feature", + "semantic_type": "categorical", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 4, + "unique_ratio": 0.002894, + "example_values": [ + "2", + "5more", + "3", + "4" + ] + } + }, + { + "name": "persons", + "role": "feature", + "semantic_type": "categorical", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 3, + "unique_ratio": 0.002171, + "example_values": [ + "2", + "4", + "more" + ] + } + }, + { + "name": "lug_boot", + "role": "feature", + "semantic_type": "categorical", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 3, + "unique_ratio": 0.002171, + "example_values": [ + "small", + "big", + "med" + ] + } + }, + { + "name": "safety", + "role": "feature", + "semantic_type": "categorical", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 3, + "unique_ratio": 0.002171, + "example_values": [ + "low", + "high", + "med" + ] + } + }, + { + "name": "class", + "role": "target", + "semantic_type": "categorical", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 4, + "unique_ratio": 0.002894, + "example_values": [ + "unacc", + "good", + "acc", + "vgood" + ] + } + } + ], + "public_manifest": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/c2/bayesnet/bayesnet-c2-20260504_205140/public_gate/staged_input_manifest.json", + "train_csv": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/c2/bayesnet/bayesnet-c2-20260504_205140/staged/public/train.csv", + "val_csv": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/c2/bayesnet/bayesnet-c2-20260504_205140/staged/public/val.csv", + "test_csv": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/c2/bayesnet/bayesnet-c2-20260504_205140/staged/public/test.csv", + "features_json": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/c2/bayesnet/bayesnet-c2-20260504_205140/staged/public/staged_features.json", + "public_gate_report": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/c2/bayesnet/bayesnet-c2-20260504_205140/public_gate/public_gate_report.json" +} \ No newline at end of file diff --git a/hyperparameter/c2/bayesnet/bayesnet-c2-20260504_205140/staged/public/staged_features.json b/hyperparameter/c2/bayesnet/bayesnet-c2-20260504_205140/staged/public/staged_features.json new file mode 100644 index 0000000000000000000000000000000000000000..61783861dd5de501592f76acb0469cf3f3b2622a --- /dev/null +++ b/hyperparameter/c2/bayesnet/bayesnet-c2-20260504_205140/staged/public/staged_features.json @@ -0,0 +1,37 @@ +[ + { + "feature_name": "buying", + "data_type": "categorical", + "is_target": false + }, + { + "feature_name": "maint", + "data_type": "categorical", + "is_target": false + }, + { + "feature_name": "doors", + "data_type": "categorical", + "is_target": false + }, + { + "feature_name": "persons", + "data_type": "categorical", + "is_target": false + }, + { + "feature_name": "lug_boot", + "data_type": "categorical", + "is_target": false + }, + { + "feature_name": "safety", + "data_type": "categorical", + "is_target": false + }, + { + "feature_name": "class", + "data_type": "categorical", + "is_target": true + } +] \ No newline at end of file diff --git a/hyperparameter/c2/bayesnet/bayesnet-c2-20260504_205140/staged/public/test.csv b/hyperparameter/c2/bayesnet/bayesnet-c2-20260504_205140/staged/public/test.csv new file mode 100644 index 0000000000000000000000000000000000000000..392a0d7189a34d8f13ecf20a99d64b03230d517c --- /dev/null +++ b/hyperparameter/c2/bayesnet/bayesnet-c2-20260504_205140/staged/public/test.csv @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:b48114a7d0bc5bd9a07920f903c8d4aba8bf98bf2a66a050da03588b0245ca73 +size 5273 diff --git a/hyperparameter/c2/bayesnet/bayesnet-c2-20260504_205140/staged/public/train.csv b/hyperparameter/c2/bayesnet/bayesnet-c2-20260504_205140/staged/public/train.csv new file mode 100644 index 0000000000000000000000000000000000000000..da4f4d55134eebc0e51157d0d467536371db1484 --- /dev/null +++ b/hyperparameter/c2/bayesnet/bayesnet-c2-20260504_205140/staged/public/train.csv @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:4aed00c2c2b3f88a55a7ebff31b2e1b5e0e32fb0a7267e0b9d2779cd23e434dd +size 41565 diff --git a/hyperparameter/c2/bayesnet/bayesnet-c2-20260504_205140/staged/public/val.csv b/hyperparameter/c2/bayesnet/bayesnet-c2-20260504_205140/staged/public/val.csv new file mode 100644 index 0000000000000000000000000000000000000000..af8caf7ee42524188534a3daf32996dc491952d9 --- /dev/null +++ b/hyperparameter/c2/bayesnet/bayesnet-c2-20260504_205140/staged/public/val.csv @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:26e90c1170a57a14c05832ac88027722b1f3848f9662c7c09ef7c93dcba4cc01 +size 5176 diff --git a/hyperparameter/c2/bayesnet/bayesnet-c2-20260504_205140/train_20260504_205140.log b/hyperparameter/c2/bayesnet/bayesnet-c2-20260504_205140/train_20260504_205140.log new file mode 100644 index 0000000000000000000000000000000000000000..f7f3e215504117e0188e13f6abef9c0e9e50e5b4 --- /dev/null +++ b/hyperparameter/c2/bayesnet/bayesnet-c2-20260504_205140/train_20260504_205140.log @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:f64ed9ef44a379f6c95036ed8bf937190a3d2a13978ad8d58a132eb221099a70 +size 3853 diff --git a/hyperparameter/c2/bayesnet/bayesnet-c2-20260504_205208/_bayesnet_generate.py b/hyperparameter/c2/bayesnet/bayesnet-c2-20260504_205208/_bayesnet_generate.py new file mode 100644 index 0000000000000000000000000000000000000000..485ba03c61a57095158588b6c3791d74d966312e --- /dev/null +++ b/hyperparameter/c2/bayesnet/bayesnet-c2-20260504_205208/_bayesnet_generate.py @@ -0,0 +1,105 @@ + +import pickle +import subprocess +import sys +import warnings + +import numpy as np +import pandas as pd +from pgmpy.sampling import BayesianModelSampling + +warnings.filterwarnings("ignore", category=FutureWarning) + +def _ensure_cloudpickle(): + try: + import cloudpickle # noqa: F401 + except ModuleNotFoundError: + subprocess.check_call( + [sys.executable, "-m", "pip", "install", "--quiet", "cloudpickle"], + ) + +_ensure_cloudpickle() + +with open("/work/output-Benchmark-trainonly-v1/c2/bayesnet/bayesnet-c2-20260504_205208/bayesnet_model.pkl", "rb") as f: + bundle = pickle.load(f) + +network = bundle["network"] +inverse = bundle["inverse"] +cols = bundle["column_order"] +integer_columns = set(bundle.get("integer_columns") or []) +full_order = bundle.get("full_column_order") or cols +const_cols = bundle.get("const_cols") or {} + +num_rows = int(1382) +sampler = BayesianModelSampling(network) +raw = sampler.forward_sample(size=num_rows, show_progress=False) +raw = raw.reset_index(drop=True) +if len(raw) > num_rows: + raw = raw.iloc[:num_rows] +_tries = 0 +while len(raw) < num_rows and _tries < 64: + _tries += 1 + nextra = min(10000, num_rows - len(raw)) + more = sampler.forward_sample(size=max(nextra, 1), show_progress=False) + more = more.reset_index(drop=True) + if len(more) == 0: + break + raw = pd.concat([raw, more], ignore_index=True) + if len(raw) > num_rows: + raw = raw.iloc[:num_rows] + +out = pd.DataFrame(index=raw.index) +rng = np.random.default_rng() + +for c in cols: + if c in inverse["categorical"]: + levels = inverse["categorical"][c] + idx = raw[c].astype(int).to_numpy() + idx = np.clip(idx, 0, max(0, len(levels) - 1)) + out[c] = [levels[i] for i in idx] + else: + edges = np.asarray(inverse["continuous"][c], dtype=float) + if edges.size < 2: + out[c] = 0.0 + else: + nbin = edges.size - 1 + res = [] + for k in raw[c].astype(int).to_numpy(): + k = int(k) + if k < 0: + k = 0 + if k >= nbin: + k = nbin - 1 + lo, hi = float(edges[k]), float(edges[k + 1]) + if hi < lo: + lo, hi = hi, lo + v = rng.uniform(lo, hi) + if c in integer_columns: + v = int(round(v)) + res.append(v) + out[c] = res + +final = pd.DataFrame(index=out.index) +for c in full_order: + if c in const_cols: + final[c] = const_cols[c] + elif c in out.columns: + final[c] = out[c] + +dtypes = bundle.get("original_dtypes") or {} +for c, dts in dtypes.items(): + if c not in final.columns: + continue + try: + if "int" in dts: + final[c] = pd.to_numeric(final[c], errors="coerce").astype("Int64") + elif "float" in dts: + final[c] = pd.to_numeric(final[c], errors="coerce") + except Exception: + pass + +if len(final) != num_rows: + final = final.iloc[:num_rows].copy() +final = final.reset_index(drop=True) +final.to_csv("/work/output-Benchmark-trainonly-v1/c2/bayesnet/bayesnet-c2-20260504_205208/bayesnet-c2-1382-20260504_205216.csv", index=False) +print(f"[BayesNet] Generated {len(final)} rows (requested {num_rows}) -> /work/output-Benchmark-trainonly-v1/c2/bayesnet/bayesnet-c2-20260504_205208/bayesnet-c2-1382-20260504_205216.csv") diff --git a/hyperparameter/c2/bayesnet/bayesnet-c2-20260504_205208/_bayesnet_train.py b/hyperparameter/c2/bayesnet/bayesnet-c2-20260504_205208/_bayesnet_train.py new file mode 100644 index 0000000000000000000000000000000000000000..450ec35c05f6b5cdb27a410f288c18e9d999c32c --- /dev/null +++ b/hyperparameter/c2/bayesnet/bayesnet-c2-20260504_205208/_bayesnet_train.py @@ -0,0 +1,146 @@ + +import json +import os +import pickle +import subprocess +import sys +import warnings + +import numpy as np +import pandas as pd +from pgmpy.estimators import TreeSearch +from pgmpy.models import DiscreteBayesianNetwork +warnings.filterwarnings("ignore", category=FutureWarning) + +def _ensure_cloudpickle(): + try: + import cloudpickle # noqa: F401 + except ModuleNotFoundError: + subprocess.check_call( + [sys.executable, "-m", "pip", "install", "--quiet", "cloudpickle"], + ) + +_ensure_cloudpickle() + +with open("/work/output-Benchmark-trainonly-v1/c2/bayesnet/bayesnet-c2-20260504_205208/bayesnet_coltypes.json", "r", encoding="utf-8") as _f: + colmeta = json.load(_f) +integer_columns = set(colmeta.get("integer_columns") or []) + +df = pd.read_csv("/work/output-Benchmark-trainonly-v1/c2/bayesnet/bayesnet-c2-20260504_205208/staged/public/train.csv") +df = df.dropna(axis=1, how="all") +full_column_order = list(df.columns) + +const_cols = {} +for col in list(df.columns): + if df[col].nunique(dropna=True) <= 1: + const_cols[col] = df[col].iloc[0] if len(df) > 0 else None + df = df.drop(columns=[col]) + print(f"[BayesNet] Dropped zero-variance column '{col}'") + +const_path = "/work/output-Benchmark-trainonly-v1/c2/bayesnet/bayesnet-c2-20260504_205208/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 = int(os.environ.get("BAYESNET_MAX_BINS", "0")) +max_cat_levels = int(os.environ.get("BAYESNET_MAX_CAT_LEVELS", "0")) +if max_bins <= 0: + max_bins = 10 +if max_cat_levels <= 0: + max_cat_levels = 256 +auto_caps = os.environ.get("BAYESNET_DISABLE_AUTO_CAPS", "0").strip().lower() not in ("1", "true", "yes") +if auto_caps and max_bins == 10 and max_cat_levels == 256: + if _n_plan > 35 or _n_samples > 200000: + max_bins = 5 + max_cat_levels = 64 + if _n_plan > 55: + max_bins = 4 + max_cat_levels = 32 +struct_rows = int(os.environ.get("BAYESNET_STRUCT_ROWS", "25000")) +fit_rows = int(os.environ.get("BAYESNET_FIT_ROWS", "120000")) +estimator_type = (os.environ.get("BAYESNET_ESTIMATOR_TYPE", "chow-liu") or "chow-liu").strip() +edge_weights_fn = (os.environ.get("BAYESNET_EDGE_WEIGHTS_FN", "mutual_info") or "mutual_info").strip() +root_node = (os.environ.get("BAYESNET_ROOT_NODE", "") or "").strip() or None +n_jobs = int(os.environ.get("BAYESNET_N_JOBS", "1")) +print( + f"[BayesNet] max_bins={max_bins}, max_cat_levels={max_cat_levels}, struct_rows={struct_rows}, fit_rows={fit_rows}, estimator_type={estimator_type}, edge_weights_fn={edge_weights_fn}, root_node={root_node}, n_jobs={n_jobs} " + f"(cols_in_df={_n_plan}, rows={_n_samples})" +) + +for entry in colmeta["columns"]: + name = entry["name"] + if name not in df.columns: + continue + kind = entry["type"] + s = df[name] + if kind == "categorical": + s2 = s.astype(str).fillna("__NA__") + counts = s2.value_counts(dropna=False) + if len(counts) > max_cat_levels: + keep = set(counts.index[: max_cat_levels - 1].tolist()) + s2 = s2.map(lambda x: x if x in keep else "__OTHER__") + uniques = sorted(s2.dropna().unique(), key=lambda x: str(x)) + mapping = {str(v): i for i, v in enumerate(uniques)} + inverse["categorical"][name] = [uniques[i] for i in range(len(uniques))] + enc[name] = s2.map(lambda x, m=mapping: m.get(str(x), 0)).astype(int) + else: + s_num = pd.to_numeric(s, errors="coerce") + nu = int(s_num.nunique(dropna=True)) + q = min(max_bins, max(2, nu)) + if nu < 2: + enc[name] = np.zeros(len(s_num), dtype=int) + lo, hi = float(s_num.min()), float(s_num.max()) + inverse["continuous"][name] = [lo, hi] + else: + try: + _, bins = pd.qcut( + s_num, q=q, retbins=True, duplicates="drop" + ) + except Exception: + med = float(s_num.median()) + s2 = s_num.fillna(med) + _, bins = pd.qcut( + s2, q=min(q, 3), retbins=True, duplicates="drop" + ) + bins = np.asarray(bins, dtype=float) + lab = pd.cut( + s_num, bins=bins, labels=False, include_lowest=True + ) + enc[name] = lab.fillna(0).astype(int) + inverse["continuous"][name] = bins.tolist() + +print(f"[BayesNet] Training on {len(enc)} rows, {len(enc.columns)} cols (encoded)") + +enc_struct = enc +if len(enc) > struct_rows: + enc_struct = enc.sample(n=struct_rows, random_state=0, replace=False) + print(f"[BayesNet] TreeSearch on {len(enc_struct)} rows (subsample; full n={len(enc)})") +dag = TreeSearch(enc_struct, root_node=root_node, n_jobs=n_jobs).estimate(estimator_type=estimator_type, edge_weights_fn=edge_weights_fn, show_progress=False) +for col in enc.columns: + if col not in dag.nodes(): + dag.add_node(col) + print(f"[BayesNet] Added isolated node to DAG: {col}") +network = DiscreteBayesianNetwork(dag) +enc_fit = enc +if len(enc) > fit_rows: + enc_fit = enc.sample(n=fit_rows, random_state=1, replace=False) + print(f"[BayesNet] fit() on {len(enc_fit)} rows (full n={len(enc)})") +network.fit(enc_fit) + +bundle = { + "network": network, + "inverse": inverse, + "column_order": list(enc.columns), + "full_column_order": full_column_order, + "integer_columns": list(integer_columns), + "original_dtypes": {c: str(df[c].dtype) for c in enc.columns}, + "const_cols": const_cols, +} +with open("/work/output-Benchmark-trainonly-v1/c2/bayesnet/bayesnet-c2-20260504_205208/bayesnet_model.pkl", "wb") as _f: + pickle.dump(bundle, _f) +print(f"[BayesNet] Model saved -> /work/output-Benchmark-trainonly-v1/c2/bayesnet/bayesnet-c2-20260504_205208/bayesnet_model.pkl") diff --git a/hyperparameter/c2/bayesnet/bayesnet-c2-20260504_205208/bayesnet-c2-1382-20260504_205216.csv b/hyperparameter/c2/bayesnet/bayesnet-c2-20260504_205208/bayesnet-c2-1382-20260504_205216.csv new file mode 100644 index 0000000000000000000000000000000000000000..bc7ec2655ce38f679e955d98e43754de2c050e6a --- /dev/null +++ b/hyperparameter/c2/bayesnet/bayesnet-c2-20260504_205208/bayesnet-c2-1382-20260504_205216.csv @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:0ba814313cff8127cbfad72554dd67f9f9817adc15f276c9c7f46caa0889c142 +size 41627 diff --git a/hyperparameter/c2/bayesnet/bayesnet-c2-20260504_205208/bayesnet_coltypes.json b/hyperparameter/c2/bayesnet/bayesnet-c2-20260504_205208/bayesnet_coltypes.json new file mode 100644 index 0000000000000000000000000000000000000000..dc49694e781f314f19b59a568715784a7cabec24 --- /dev/null +++ b/hyperparameter/c2/bayesnet/bayesnet-c2-20260504_205208/bayesnet_coltypes.json @@ -0,0 +1,33 @@ +{ + "columns": [ + { + "name": "buying", + "type": "categorical" + }, + { + "name": "maint", + "type": "categorical" + }, + { + "name": "doors", + "type": "categorical" + }, + { + "name": "persons", + "type": "categorical" + }, + { + "name": "lug_boot", + "type": "categorical" + }, + { + "name": "safety", + "type": "categorical" + }, + { + "name": "class", + "type": "categorical" + } + ], + "integer_columns": [] +} \ No newline at end of file diff --git a/hyperparameter/c2/bayesnet/bayesnet-c2-20260504_205208/bayesnet_model.pkl b/hyperparameter/c2/bayesnet/bayesnet-c2-20260504_205208/bayesnet_model.pkl new file mode 100644 index 0000000000000000000000000000000000000000..a41a2cb32a11c469c794a576140511b67c8f7bdb --- /dev/null +++ b/hyperparameter/c2/bayesnet/bayesnet-c2-20260504_205208/bayesnet_model.pkl @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:c9fc1dfaabb7725d9da65e2853e0e7d4de92da7281a7237ef5c6909e01f2a513 +size 4250 diff --git a/hyperparameter/c2/bayesnet/bayesnet-c2-20260504_205208/const_cols.json b/hyperparameter/c2/bayesnet/bayesnet-c2-20260504_205208/const_cols.json new file mode 100644 index 0000000000000000000000000000000000000000..9e26dfeeb6e641a33dae4961196235bdb965b21b --- /dev/null +++ b/hyperparameter/c2/bayesnet/bayesnet-c2-20260504_205208/const_cols.json @@ -0,0 +1 @@ +{} \ No newline at end of file diff --git a/hyperparameter/c2/bayesnet/bayesnet-c2-20260504_205208/gen_20260504_205216.log b/hyperparameter/c2/bayesnet/bayesnet-c2-20260504_205208/gen_20260504_205216.log new file mode 100644 index 0000000000000000000000000000000000000000..1a5795b4bab1192f3487c298c698981477e71e7f --- /dev/null +++ b/hyperparameter/c2/bayesnet/bayesnet-c2-20260504_205208/gen_20260504_205216.log @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:079285e30320862933a5864a529c5be4a8132bf795f665d1e47eaab722dbfed4 +size 3661 diff --git a/hyperparameter/c2/bayesnet/bayesnet-c2-20260504_205208/input_snapshot.json b/hyperparameter/c2/bayesnet/bayesnet-c2-20260504_205208/input_snapshot.json new file mode 100644 index 0000000000000000000000000000000000000000..85fdc398e0d261ad97c34409134cc4aebb1bb672 --- /dev/null +++ b/hyperparameter/c2/bayesnet/bayesnet-c2-20260504_205208/input_snapshot.json @@ -0,0 +1,36 @@ +{ + "dataset_id": "c2", + "model": "bayesnet", + "inputs": { + "train_csv": { + "path": "/data/jialinzhang/SynthesizePipeline-server/DatasetNew/c2/c2-train.csv", + "exists": true, + "size": 42948, + "sha256": "17bc560fa96bd00fb3b526e1e65bc91210b701d0d0a4e8bb9b4c5196cab56def" + }, + "val_csv": { + "path": "/data/jialinzhang/SynthesizePipeline-server/DatasetNew/c2/c2-val.csv", + "exists": true, + "size": 5349, + "sha256": "61e565eca62e65a7dccd9d51039a3170413379e10fc494e25870e7c4294863c9" + }, + "test_csv": { + "path": "/data/jialinzhang/SynthesizePipeline-server/DatasetNew/c2/c2-test.csv", + "exists": true, + "size": 5448, + "sha256": "cbcbb062a1faf5fa44b66c80532baa229e05b94fc42137269761e6c6d84af20a" + }, + "profile_json": { + "path": "/data/jialinzhang/SynthesizePipeline-server/DatasetNew/artifacts/data_core/tabular/c2/c2-dataset_profile.json", + "exists": true, + "size": 3240, + "sha256": "526b7163b2076c93c0bf4638438081ee8a6907065d5b608faa40d1a3dbc2a27b" + }, + "contract_json": { + "path": "/data/jialinzhang/SynthesizePipeline-server/DatasetNew/artifacts/data_core/tabular/c2/c2-dataset_contract_v1.json", + "exists": true, + "size": 3731, + "sha256": "fb595a876054c2ee9b4e10cfe83a5691588de1d25466cbb9d473c18ad3604009" + } + } +} \ No newline at end of file diff --git a/hyperparameter/c2/bayesnet/bayesnet-c2-20260504_205208/public_gate/normalized_schema_snapshot.json b/hyperparameter/c2/bayesnet/bayesnet-c2-20260504_205208/public_gate/normalized_schema_snapshot.json new file mode 100644 index 0000000000000000000000000000000000000000..689b1d00d96508e44ba40e58dc4560e19afc2b3b --- /dev/null +++ b/hyperparameter/c2/bayesnet/bayesnet-c2-20260504_205208/public_gate/normalized_schema_snapshot.json @@ -0,0 +1,144 @@ +{ + "dataset_id": "c2", + "target_column": "class", + "task_type": "classification", + "columns": [ + { + "name": "buying", + "role": "feature", + "semantic_type": "categorical", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 4, + "unique_ratio": 0.002894, + "example_values": [ + "vhigh", + "med", + "high", + "low" + ] + } + }, + { + "name": "maint", + "role": "feature", + "semantic_type": "categorical", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 4, + "unique_ratio": 0.002894, + "example_values": [ + "vhigh", + "low", + "med", + "high" + ] + } + }, + { + "name": "doors", + "role": "feature", + "semantic_type": "categorical", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 4, + "unique_ratio": 0.002894, + "example_values": [ + "2", + "5more", + "3", + "4" + ] + } + }, + { + "name": "persons", + "role": "feature", + "semantic_type": "categorical", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 3, + "unique_ratio": 0.002171, + "example_values": [ + "2", + "4", + "more" + ] + } + }, + { + "name": "lug_boot", + "role": "feature", + "semantic_type": "categorical", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 3, + "unique_ratio": 0.002171, + "example_values": [ + "small", + "big", + "med" + ] + } + }, + { + "name": "safety", + "role": "feature", + "semantic_type": "categorical", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 3, + "unique_ratio": 0.002171, + "example_values": [ + "low", + "high", + "med" + ] + } + }, + { + "name": "class", + "role": "target", + "semantic_type": "categorical", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 4, + "unique_ratio": 0.002894, + "example_values": [ + "unacc", + "good", + "acc", + "vgood" + ] + } + } + ] +} \ No newline at end of file diff --git a/hyperparameter/c2/bayesnet/bayesnet-c2-20260504_205208/public_gate/public_gate_report.json b/hyperparameter/c2/bayesnet/bayesnet-c2-20260504_205208/public_gate/public_gate_report.json new file mode 100644 index 0000000000000000000000000000000000000000..2e4cdcb2a4e28e40d59b17a83e773f622b7636a5 --- /dev/null +++ b/hyperparameter/c2/bayesnet/bayesnet-c2-20260504_205208/public_gate/public_gate_report.json @@ -0,0 +1,37 @@ +{ + "dataset_id": "c2", + "status": "pass", + "checks": [ + { + "check_id": "PG001_csv_parse_ok", + "status": "pass" + }, + { + "check_id": "PG002_split_header_consistent", + "status": "pass" + }, + { + "check_id": "PG003_profile_header_match", + "status": "pass" + }, + { + "check_id": "PG004_missing_token_normalized", + "status": "pass" + }, + { + "check_id": "PG005_semantic_type_validated", + "status": "pass" + }, + { + "check_id": "PG006_target_defined_and_valid", + "status": "pass" + } + ], + "target_column": "class", + "task_type": "classification", + "input_splits": { + "train": "/data/jialinzhang/SynthesizePipeline-server/DatasetNew/c2/c2-train.csv", + "val": "/data/jialinzhang/SynthesizePipeline-server/DatasetNew/c2/c2-val.csv", + "test": "/data/jialinzhang/SynthesizePipeline-server/DatasetNew/c2/c2-test.csv" + } +} \ No newline at end of file diff --git a/hyperparameter/c2/bayesnet/bayesnet-c2-20260504_205208/public_gate/staged_input_manifest.json b/hyperparameter/c2/bayesnet/bayesnet-c2-20260504_205208/public_gate/staged_input_manifest.json new file mode 100644 index 0000000000000000000000000000000000000000..cac4f18c871535b8eacad2819839f21397c2e0c0 --- /dev/null +++ b/hyperparameter/c2/bayesnet/bayesnet-c2-20260504_205208/public_gate/staged_input_manifest.json @@ -0,0 +1,149 @@ +{ + "dataset_id": "c2", + "target_column": "class", + "task_type": "classification", + "train_csv": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/c2/bayesnet/bayesnet-c2-20260504_205208/staged/public/train.csv", + "val_csv": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/c2/bayesnet/bayesnet-c2-20260504_205208/staged/public/val.csv", + "test_csv": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/c2/bayesnet/bayesnet-c2-20260504_205208/staged/public/test.csv", + "features_json": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/c2/bayesnet/bayesnet-c2-20260504_205208/staged/public/staged_features.json", + "public_gate_report": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/c2/bayesnet/bayesnet-c2-20260504_205208/public_gate/public_gate_report.json", + "column_schema": [ + { + "name": "buying", + "role": "feature", + "semantic_type": "categorical", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 4, + "unique_ratio": 0.002894, + "example_values": [ + "vhigh", + "med", + "high", + "low" + ] + } + }, + { + "name": "maint", + "role": "feature", + "semantic_type": "categorical", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 4, + "unique_ratio": 0.002894, + "example_values": [ + "vhigh", + "low", + "med", + "high" + ] + } + }, + { + "name": "doors", + "role": "feature", + "semantic_type": "categorical", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 4, + "unique_ratio": 0.002894, + "example_values": [ + "2", + "5more", + "3", + "4" + ] + } + }, + { + "name": "persons", + "role": "feature", + "semantic_type": "categorical", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 3, + "unique_ratio": 0.002171, + "example_values": [ + "2", + "4", + "more" + ] + } + }, + { + "name": "lug_boot", + "role": "feature", + "semantic_type": "categorical", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 3, + "unique_ratio": 0.002171, + "example_values": [ + "small", + "big", + "med" + ] + } + }, + { + "name": "safety", + "role": "feature", + "semantic_type": "categorical", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 3, + "unique_ratio": 0.002171, + "example_values": [ + "low", + "high", + "med" + ] + } + }, + { + "name": "class", + "role": "target", + "semantic_type": "categorical", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 4, + "unique_ratio": 0.002894, + "example_values": [ + "unacc", + "good", + "acc", + "vgood" + ] + } + } + ] +} \ No newline at end of file diff --git a/hyperparameter/c2/bayesnet/bayesnet-c2-20260504_205208/run_config.json b/hyperparameter/c2/bayesnet/bayesnet-c2-20260504_205208/run_config.json new file mode 100644 index 0000000000000000000000000000000000000000..5988fc1555ce16266c443f0a5fb585b8dc6c4a3c --- /dev/null +++ b/hyperparameter/c2/bayesnet/bayesnet-c2-20260504_205208/run_config.json @@ -0,0 +1,47 @@ +{ + "schema_version": 1, + "recorded_at": "2026-05-04T20:52:08", + "dataset_id": "c2", + "model": "bayesnet", + "work_dir": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/c2/bayesnet/bayesnet-c2-20260504_205208", + "dataset_source_requested": "new", + "dataset_source_resolved": "new", + "cli_args": { + "model": "bayesnet", + "dataset": "c2", + "dataset_source": "new", + "train": true, + "generate": true, + "num_rows": 0, + "epochs": null, + "output_dir": null, + "model_dir": null, + "work_dir": null, + "resume": false, + "no_stats": false + }, + "resolved": { + "num_rows": 1382, + "model_path": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/c2/bayesnet/bayesnet-c2-20260504_205208/bayesnet_model.pkl", + "output_csv": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/c2/bayesnet/bayesnet-c2-20260504_205208/bayesnet-c2-1382-20260504_205216.csv" + }, + "input_artifacts": { + "public_gate_report": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/c2/bayesnet/bayesnet-c2-20260504_205208/public_gate/public_gate_report.json", + "public_manifest": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/c2/bayesnet/bayesnet-c2-20260504_205208/public_gate/staged_input_manifest.json", + "model_manifest": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/c2/bayesnet/bayesnet-c2-20260504_205208/staged/bayesnet/model_input_manifest.json", + "train_csv": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/c2/bayesnet/bayesnet-c2-20260504_205208/staged/public/train.csv", + "features_json": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/c2/bayesnet/bayesnet-c2-20260504_205208/staged/public/staged_features.json", + "target_column": "class", + "task_type": "classification" + }, + "env_overrides": { + "BAYESNET_DISABLE_AUTO_CAPS": "1", + "BAYESNET_EDGE_WEIGHTS_FN": "adjusted_mutual_info", + "BAYESNET_ESTIMATOR_TYPE": "chow-liu", + "BAYESNET_FIT_ROWS": "120000", + "BAYESNET_MAX_BINS": "8", + "BAYESNET_MAX_CAT_LEVELS": "64", + "BAYESNET_N_JOBS": "1", + "BAYESNET_STRUCT_ROWS": "25000" + } +} \ No newline at end of file diff --git a/hyperparameter/c2/bayesnet/bayesnet-c2-20260504_205208/runtime_result.json b/hyperparameter/c2/bayesnet/bayesnet-c2-20260504_205208/runtime_result.json new file mode 100644 index 0000000000000000000000000000000000000000..17f439a09effa22dddfe53cf1468efe76415e0b3 --- /dev/null +++ b/hyperparameter/c2/bayesnet/bayesnet-c2-20260504_205208/runtime_result.json @@ -0,0 +1,27 @@ +{ + "dataset_id": "c2", + "model": "bayesnet", + "run_id": "bayesnet-c2-20260504_205208", + "public_gate_status": "pass", + "adapter_ready_status": "pass", + "train_status": "success", + "generate_status": "success", + "reason_code": null, + "reason_detail": null, + "artifacts": { + "synthetic_csv": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/c2/bayesnet/bayesnet-c2-20260504_205208/bayesnet-c2-1382-20260504_205216.csv", + "model_path": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/c2/bayesnet/bayesnet-c2-20260504_205208/bayesnet_model.pkl" + }, + "timings": { + "train": { + "started_at": "2026-05-04T20:52:08", + "ended_at": "2026-05-04T20:52:16", + "duration_sec": 7.51 + }, + "generate": { + "started_at": "2026-05-04T20:52:16", + "ended_at": "2026-05-04T20:52:24", + "duration_sec": 7.815 + } + } +} \ No newline at end of file diff --git a/hyperparameter/c2/bayesnet/bayesnet-c2-20260504_205208/staged/bayesnet/adapter_report.json b/hyperparameter/c2/bayesnet/bayesnet-c2-20260504_205208/staged/bayesnet/adapter_report.json new file mode 100644 index 0000000000000000000000000000000000000000..7d301889bb146ae088d5543e4463b874e7740129 --- /dev/null +++ b/hyperparameter/c2/bayesnet/bayesnet-c2-20260504_205208/staged/bayesnet/adapter_report.json @@ -0,0 +1,7 @@ +{ + "adapter_ready_status": "pass", + "adapter_fail_reason_code": null, + "adapter_fail_detail": null, + "adapter_transforms_applied": [], + "model_input_manifest": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/c2/bayesnet/bayesnet-c2-20260504_205208/staged/bayesnet/model_input_manifest.json" +} \ No newline at end of file diff --git a/hyperparameter/c2/bayesnet/bayesnet-c2-20260504_205208/staged/bayesnet/adapter_transforms_applied.json b/hyperparameter/c2/bayesnet/bayesnet-c2-20260504_205208/staged/bayesnet/adapter_transforms_applied.json new file mode 100644 index 0000000000000000000000000000000000000000..0637a088a01e8ddab3bf3fa98dbe804cbde1a0dc --- /dev/null +++ b/hyperparameter/c2/bayesnet/bayesnet-c2-20260504_205208/staged/bayesnet/adapter_transforms_applied.json @@ -0,0 +1 @@ +[] \ No newline at end of file diff --git a/hyperparameter/c2/bayesnet/bayesnet-c2-20260504_205208/staged/bayesnet/model_input_manifest.json b/hyperparameter/c2/bayesnet/bayesnet-c2-20260504_205208/staged/bayesnet/model_input_manifest.json new file mode 100644 index 0000000000000000000000000000000000000000..0b6d592698e5346c2300c5551ed4e9b653d13ffb --- /dev/null +++ b/hyperparameter/c2/bayesnet/bayesnet-c2-20260504_205208/staged/bayesnet/model_input_manifest.json @@ -0,0 +1,151 @@ +{ + "dataset_id": "c2", + "model": "bayesnet", + "target_column": "class", + "task_type": "classification", + "column_schema": [ + { + "name": "buying", + "role": "feature", + "semantic_type": "categorical", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 4, + "unique_ratio": 0.002894, + "example_values": [ + "vhigh", + "med", + "high", + "low" + ] + } + }, + { + "name": "maint", + "role": "feature", + "semantic_type": "categorical", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 4, + "unique_ratio": 0.002894, + "example_values": [ + "vhigh", + "low", + "med", + "high" + ] + } + }, + { + "name": "doors", + "role": "feature", + "semantic_type": "categorical", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 4, + "unique_ratio": 0.002894, + "example_values": [ + "2", + "5more", + "3", + "4" + ] + } + }, + { + "name": "persons", + "role": "feature", + "semantic_type": "categorical", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 3, + "unique_ratio": 0.002171, + "example_values": [ + "2", + "4", + "more" + ] + } + }, + { + "name": "lug_boot", + "role": "feature", + "semantic_type": "categorical", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 3, + "unique_ratio": 0.002171, + "example_values": [ + "small", + "big", + "med" + ] + } + }, + { + "name": "safety", + "role": "feature", + "semantic_type": "categorical", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 3, + "unique_ratio": 0.002171, + "example_values": [ + "low", + "high", + "med" + ] + } + }, + { + "name": "class", + "role": "target", + "semantic_type": "categorical", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 4, + "unique_ratio": 0.002894, + "example_values": [ + "unacc", + "good", + "acc", + "vgood" + ] + } + } + ], + "public_manifest": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/c2/bayesnet/bayesnet-c2-20260504_205208/public_gate/staged_input_manifest.json", + "train_csv": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/c2/bayesnet/bayesnet-c2-20260504_205208/staged/public/train.csv", + "val_csv": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/c2/bayesnet/bayesnet-c2-20260504_205208/staged/public/val.csv", + "test_csv": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/c2/bayesnet/bayesnet-c2-20260504_205208/staged/public/test.csv", + "features_json": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/c2/bayesnet/bayesnet-c2-20260504_205208/staged/public/staged_features.json", + "public_gate_report": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/c2/bayesnet/bayesnet-c2-20260504_205208/public_gate/public_gate_report.json" +} \ No newline at end of file diff --git a/hyperparameter/c2/bayesnet/bayesnet-c2-20260504_205208/staged/public/staged_features.json b/hyperparameter/c2/bayesnet/bayesnet-c2-20260504_205208/staged/public/staged_features.json new file mode 100644 index 0000000000000000000000000000000000000000..61783861dd5de501592f76acb0469cf3f3b2622a --- /dev/null +++ b/hyperparameter/c2/bayesnet/bayesnet-c2-20260504_205208/staged/public/staged_features.json @@ -0,0 +1,37 @@ +[ + { + "feature_name": "buying", + "data_type": "categorical", + "is_target": false + }, + { + "feature_name": "maint", + "data_type": "categorical", + "is_target": false + }, + { + "feature_name": "doors", + "data_type": "categorical", + "is_target": false + }, + { + "feature_name": "persons", + "data_type": "categorical", + "is_target": false + }, + { + "feature_name": "lug_boot", + "data_type": "categorical", + "is_target": false + }, + { + "feature_name": "safety", + "data_type": "categorical", + "is_target": false + }, + { + "feature_name": "class", + "data_type": "categorical", + "is_target": true + } +] \ No newline at end of file diff --git a/hyperparameter/c2/bayesnet/bayesnet-c2-20260504_205208/staged/public/test.csv b/hyperparameter/c2/bayesnet/bayesnet-c2-20260504_205208/staged/public/test.csv new file mode 100644 index 0000000000000000000000000000000000000000..392a0d7189a34d8f13ecf20a99d64b03230d517c --- /dev/null +++ b/hyperparameter/c2/bayesnet/bayesnet-c2-20260504_205208/staged/public/test.csv @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:b48114a7d0bc5bd9a07920f903c8d4aba8bf98bf2a66a050da03588b0245ca73 +size 5273 diff --git a/hyperparameter/c2/bayesnet/bayesnet-c2-20260504_205208/staged/public/train.csv b/hyperparameter/c2/bayesnet/bayesnet-c2-20260504_205208/staged/public/train.csv new file mode 100644 index 0000000000000000000000000000000000000000..da4f4d55134eebc0e51157d0d467536371db1484 --- /dev/null +++ b/hyperparameter/c2/bayesnet/bayesnet-c2-20260504_205208/staged/public/train.csv @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:4aed00c2c2b3f88a55a7ebff31b2e1b5e0e32fb0a7267e0b9d2779cd23e434dd +size 41565 diff --git a/hyperparameter/c2/bayesnet/bayesnet-c2-20260504_205208/staged/public/val.csv b/hyperparameter/c2/bayesnet/bayesnet-c2-20260504_205208/staged/public/val.csv new file mode 100644 index 0000000000000000000000000000000000000000..af8caf7ee42524188534a3daf32996dc491952d9 --- /dev/null +++ b/hyperparameter/c2/bayesnet/bayesnet-c2-20260504_205208/staged/public/val.csv @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:26e90c1170a57a14c05832ac88027722b1f3848f9662c7c09ef7c93dcba4cc01 +size 5176 diff --git a/hyperparameter/c2/bayesnet/bayesnet-c2-20260504_205208/train_20260504_205208.log b/hyperparameter/c2/bayesnet/bayesnet-c2-20260504_205208/train_20260504_205208.log new file mode 100644 index 0000000000000000000000000000000000000000..99fa04d0d303a023299cfe4b88c39915e9da5877 --- /dev/null +++ b/hyperparameter/c2/bayesnet/bayesnet-c2-20260504_205208/train_20260504_205208.log @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:04a616babcee3b5f77b0ec67fae34d175a11acd6119a5e80d9b390210b94deba +size 3861 diff --git a/hyperparameter/c2/bayesnet/bayesnet-c2-20260504_205236/_bayesnet_generate.py b/hyperparameter/c2/bayesnet/bayesnet-c2-20260504_205236/_bayesnet_generate.py new file mode 100644 index 0000000000000000000000000000000000000000..27da8fff1a9f6836ca470666e956d0a83e802340 --- /dev/null +++ b/hyperparameter/c2/bayesnet/bayesnet-c2-20260504_205236/_bayesnet_generate.py @@ -0,0 +1,105 @@ + +import pickle +import subprocess +import sys +import warnings + +import numpy as np +import pandas as pd +from pgmpy.sampling import BayesianModelSampling + +warnings.filterwarnings("ignore", category=FutureWarning) + +def _ensure_cloudpickle(): + try: + import cloudpickle # noqa: F401 + except ModuleNotFoundError: + subprocess.check_call( + [sys.executable, "-m", "pip", "install", "--quiet", "cloudpickle"], + ) + +_ensure_cloudpickle() + +with open("/work/output-Benchmark-trainonly-v1/c2/bayesnet/bayesnet-c2-20260504_205236/bayesnet_model.pkl", "rb") as f: + bundle = pickle.load(f) + +network = bundle["network"] +inverse = bundle["inverse"] +cols = bundle["column_order"] +integer_columns = set(bundle.get("integer_columns") or []) +full_order = bundle.get("full_column_order") or cols +const_cols = bundle.get("const_cols") or {} + +num_rows = int(1382) +sampler = BayesianModelSampling(network) +raw = sampler.forward_sample(size=num_rows, show_progress=False) +raw = raw.reset_index(drop=True) +if len(raw) > num_rows: + raw = raw.iloc[:num_rows] +_tries = 0 +while len(raw) < num_rows and _tries < 64: + _tries += 1 + nextra = min(10000, num_rows - len(raw)) + more = sampler.forward_sample(size=max(nextra, 1), show_progress=False) + more = more.reset_index(drop=True) + if len(more) == 0: + break + raw = pd.concat([raw, more], ignore_index=True) + if len(raw) > num_rows: + raw = raw.iloc[:num_rows] + +out = pd.DataFrame(index=raw.index) +rng = np.random.default_rng() + +for c in cols: + if c in inverse["categorical"]: + levels = inverse["categorical"][c] + idx = raw[c].astype(int).to_numpy() + idx = np.clip(idx, 0, max(0, len(levels) - 1)) + out[c] = [levels[i] for i in idx] + else: + edges = np.asarray(inverse["continuous"][c], dtype=float) + if edges.size < 2: + out[c] = 0.0 + else: + nbin = edges.size - 1 + res = [] + for k in raw[c].astype(int).to_numpy(): + k = int(k) + if k < 0: + k = 0 + if k >= nbin: + k = nbin - 1 + lo, hi = float(edges[k]), float(edges[k + 1]) + if hi < lo: + lo, hi = hi, lo + v = rng.uniform(lo, hi) + if c in integer_columns: + v = int(round(v)) + res.append(v) + out[c] = res + +final = pd.DataFrame(index=out.index) +for c in full_order: + if c in const_cols: + final[c] = const_cols[c] + elif c in out.columns: + final[c] = out[c] + +dtypes = bundle.get("original_dtypes") or {} +for c, dts in dtypes.items(): + if c not in final.columns: + continue + try: + if "int" in dts: + final[c] = pd.to_numeric(final[c], errors="coerce").astype("Int64") + elif "float" in dts: + final[c] = pd.to_numeric(final[c], errors="coerce") + except Exception: + pass + +if len(final) != num_rows: + final = final.iloc[:num_rows].copy() +final = final.reset_index(drop=True) +final.to_csv("/work/output-Benchmark-trainonly-v1/c2/bayesnet/bayesnet-c2-20260504_205236/bayesnet-c2-1382-20260504_205244.csv", index=False) +print(f"[BayesNet] Generated {len(final)} rows (requested {num_rows}) -> /work/output-Benchmark-trainonly-v1/c2/bayesnet/bayesnet-c2-20260504_205236/bayesnet-c2-1382-20260504_205244.csv") diff --git a/hyperparameter/c2/bayesnet/bayesnet-c2-20260504_205236/_bayesnet_train.py b/hyperparameter/c2/bayesnet/bayesnet-c2-20260504_205236/_bayesnet_train.py new file mode 100644 index 0000000000000000000000000000000000000000..642e4a1f1441ad54e4b23b74185a421684d81704 --- /dev/null +++ b/hyperparameter/c2/bayesnet/bayesnet-c2-20260504_205236/_bayesnet_train.py @@ -0,0 +1,146 @@ + +import json +import os +import pickle +import subprocess +import sys +import warnings + +import numpy as np +import pandas as pd +from pgmpy.estimators import TreeSearch +from pgmpy.models import DiscreteBayesianNetwork +warnings.filterwarnings("ignore", category=FutureWarning) + +def _ensure_cloudpickle(): + try: + import cloudpickle # noqa: F401 + except ModuleNotFoundError: + subprocess.check_call( + [sys.executable, "-m", "pip", "install", "--quiet", "cloudpickle"], + ) + +_ensure_cloudpickle() + +with open("/work/output-Benchmark-trainonly-v1/c2/bayesnet/bayesnet-c2-20260504_205236/bayesnet_coltypes.json", "r", encoding="utf-8") as _f: + colmeta = json.load(_f) +integer_columns = set(colmeta.get("integer_columns") or []) + +df = pd.read_csv("/work/output-Benchmark-trainonly-v1/c2/bayesnet/bayesnet-c2-20260504_205236/staged/public/train.csv") +df = df.dropna(axis=1, how="all") +full_column_order = list(df.columns) + +const_cols = {} +for col in list(df.columns): + if df[col].nunique(dropna=True) <= 1: + const_cols[col] = df[col].iloc[0] if len(df) > 0 else None + df = df.drop(columns=[col]) + print(f"[BayesNet] Dropped zero-variance column '{col}'") + +const_path = "/work/output-Benchmark-trainonly-v1/c2/bayesnet/bayesnet-c2-20260504_205236/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 = int(os.environ.get("BAYESNET_MAX_BINS", "0")) +max_cat_levels = int(os.environ.get("BAYESNET_MAX_CAT_LEVELS", "0")) +if max_bins <= 0: + max_bins = 10 +if max_cat_levels <= 0: + max_cat_levels = 256 +auto_caps = os.environ.get("BAYESNET_DISABLE_AUTO_CAPS", "0").strip().lower() not in ("1", "true", "yes") +if auto_caps and max_bins == 10 and max_cat_levels == 256: + if _n_plan > 35 or _n_samples > 200000: + max_bins = 5 + max_cat_levels = 64 + if _n_plan > 55: + max_bins = 4 + max_cat_levels = 32 +struct_rows = int(os.environ.get("BAYESNET_STRUCT_ROWS", "25000")) +fit_rows = int(os.environ.get("BAYESNET_FIT_ROWS", "120000")) +estimator_type = (os.environ.get("BAYESNET_ESTIMATOR_TYPE", "chow-liu") or "chow-liu").strip() +edge_weights_fn = (os.environ.get("BAYESNET_EDGE_WEIGHTS_FN", "mutual_info") or "mutual_info").strip() +root_node = (os.environ.get("BAYESNET_ROOT_NODE", "") or "").strip() or None +n_jobs = int(os.environ.get("BAYESNET_N_JOBS", "1")) +print( + f"[BayesNet] max_bins={max_bins}, max_cat_levels={max_cat_levels}, struct_rows={struct_rows}, fit_rows={fit_rows}, estimator_type={estimator_type}, edge_weights_fn={edge_weights_fn}, root_node={root_node}, n_jobs={n_jobs} " + f"(cols_in_df={_n_plan}, rows={_n_samples})" +) + +for entry in colmeta["columns"]: + name = entry["name"] + if name not in df.columns: + continue + kind = entry["type"] + s = df[name] + if kind == "categorical": + s2 = s.astype(str).fillna("__NA__") + counts = s2.value_counts(dropna=False) + if len(counts) > max_cat_levels: + keep = set(counts.index[: max_cat_levels - 1].tolist()) + s2 = s2.map(lambda x: x if x in keep else "__OTHER__") + uniques = sorted(s2.dropna().unique(), key=lambda x: str(x)) + mapping = {str(v): i for i, v in enumerate(uniques)} + inverse["categorical"][name] = [uniques[i] for i in range(len(uniques))] + enc[name] = s2.map(lambda x, m=mapping: m.get(str(x), 0)).astype(int) + else: + s_num = pd.to_numeric(s, errors="coerce") + nu = int(s_num.nunique(dropna=True)) + q = min(max_bins, max(2, nu)) + if nu < 2: + enc[name] = np.zeros(len(s_num), dtype=int) + lo, hi = float(s_num.min()), float(s_num.max()) + inverse["continuous"][name] = [lo, hi] + else: + try: + _, bins = pd.qcut( + s_num, q=q, retbins=True, duplicates="drop" + ) + except Exception: + med = float(s_num.median()) + s2 = s_num.fillna(med) + _, bins = pd.qcut( + s2, q=min(q, 3), retbins=True, duplicates="drop" + ) + bins = np.asarray(bins, dtype=float) + lab = pd.cut( + s_num, bins=bins, labels=False, include_lowest=True + ) + enc[name] = lab.fillna(0).astype(int) + inverse["continuous"][name] = bins.tolist() + +print(f"[BayesNet] Training on {len(enc)} rows, {len(enc.columns)} cols (encoded)") + +enc_struct = enc +if len(enc) > struct_rows: + enc_struct = enc.sample(n=struct_rows, random_state=0, replace=False) + print(f"[BayesNet] TreeSearch on {len(enc_struct)} rows (subsample; full n={len(enc)})") +dag = TreeSearch(enc_struct, root_node=root_node, n_jobs=n_jobs).estimate(estimator_type=estimator_type, edge_weights_fn=edge_weights_fn, show_progress=False) +for col in enc.columns: + if col not in dag.nodes(): + dag.add_node(col) + print(f"[BayesNet] Added isolated node to DAG: {col}") +network = DiscreteBayesianNetwork(dag) +enc_fit = enc +if len(enc) > fit_rows: + enc_fit = enc.sample(n=fit_rows, random_state=1, replace=False) + print(f"[BayesNet] fit() on {len(enc_fit)} rows (full n={len(enc)})") +network.fit(enc_fit) + +bundle = { + "network": network, + "inverse": inverse, + "column_order": list(enc.columns), + "full_column_order": full_column_order, + "integer_columns": list(integer_columns), + "original_dtypes": {c: str(df[c].dtype) for c in enc.columns}, + "const_cols": const_cols, +} +with open("/work/output-Benchmark-trainonly-v1/c2/bayesnet/bayesnet-c2-20260504_205236/bayesnet_model.pkl", "wb") as _f: + pickle.dump(bundle, _f) +print(f"[BayesNet] Model saved -> /work/output-Benchmark-trainonly-v1/c2/bayesnet/bayesnet-c2-20260504_205236/bayesnet_model.pkl") diff --git a/hyperparameter/c2/bayesnet/bayesnet-c2-20260504_205236/bayesnet-c2-1382-20260504_205244.csv b/hyperparameter/c2/bayesnet/bayesnet-c2-20260504_205236/bayesnet-c2-1382-20260504_205244.csv new file mode 100644 index 0000000000000000000000000000000000000000..668d83fef7e13287daaf2bc645d990d176556098 --- /dev/null +++ b/hyperparameter/c2/bayesnet/bayesnet-c2-20260504_205236/bayesnet-c2-1382-20260504_205244.csv @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:e89519b5229826101a17e1517600e886222048d73e8677b05ec32d5892c5b997 +size 41508 diff --git a/hyperparameter/c2/bayesnet/bayesnet-c2-20260504_205236/bayesnet_coltypes.json b/hyperparameter/c2/bayesnet/bayesnet-c2-20260504_205236/bayesnet_coltypes.json new file mode 100644 index 0000000000000000000000000000000000000000..dc49694e781f314f19b59a568715784a7cabec24 --- /dev/null +++ b/hyperparameter/c2/bayesnet/bayesnet-c2-20260504_205236/bayesnet_coltypes.json @@ -0,0 +1,33 @@ +{ + "columns": [ + { + "name": "buying", + "type": "categorical" + }, + { + "name": "maint", + "type": "categorical" + }, + { + "name": "doors", + "type": "categorical" + }, + { + "name": "persons", + "type": "categorical" + }, + { + "name": "lug_boot", + "type": "categorical" + }, + { + "name": "safety", + "type": "categorical" + }, + { + "name": "class", + "type": "categorical" + } + ], + "integer_columns": [] +} \ No newline at end of file diff --git a/hyperparameter/c2/bayesnet/bayesnet-c2-20260504_205236/bayesnet_model.pkl b/hyperparameter/c2/bayesnet/bayesnet-c2-20260504_205236/bayesnet_model.pkl new file mode 100644 index 0000000000000000000000000000000000000000..a41a2cb32a11c469c794a576140511b67c8f7bdb --- /dev/null +++ b/hyperparameter/c2/bayesnet/bayesnet-c2-20260504_205236/bayesnet_model.pkl @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:c9fc1dfaabb7725d9da65e2853e0e7d4de92da7281a7237ef5c6909e01f2a513 +size 4250 diff --git a/hyperparameter/c2/bayesnet/bayesnet-c2-20260504_205236/const_cols.json b/hyperparameter/c2/bayesnet/bayesnet-c2-20260504_205236/const_cols.json new file mode 100644 index 0000000000000000000000000000000000000000..9e26dfeeb6e641a33dae4961196235bdb965b21b --- /dev/null +++ b/hyperparameter/c2/bayesnet/bayesnet-c2-20260504_205236/const_cols.json @@ -0,0 +1 @@ +{} \ No newline at end of file diff --git a/hyperparameter/c2/bayesnet/bayesnet-c2-20260504_205236/gen_20260504_205244.log b/hyperparameter/c2/bayesnet/bayesnet-c2-20260504_205236/gen_20260504_205244.log new file mode 100644 index 0000000000000000000000000000000000000000..ec75ab17e20c7fa2082db6ac140c1787d8c2de89 --- /dev/null +++ b/hyperparameter/c2/bayesnet/bayesnet-c2-20260504_205236/gen_20260504_205244.log @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:19823247d70b83f5722e4df214c381c77a8849f7b0fed8b3f272ec673e00dd42 +size 3661 diff --git a/hyperparameter/c2/bayesnet/bayesnet-c2-20260504_205236/input_snapshot.json b/hyperparameter/c2/bayesnet/bayesnet-c2-20260504_205236/input_snapshot.json new file mode 100644 index 0000000000000000000000000000000000000000..85fdc398e0d261ad97c34409134cc4aebb1bb672 --- /dev/null +++ b/hyperparameter/c2/bayesnet/bayesnet-c2-20260504_205236/input_snapshot.json @@ -0,0 +1,36 @@ +{ + "dataset_id": "c2", + "model": "bayesnet", + "inputs": { + "train_csv": { + "path": "/data/jialinzhang/SynthesizePipeline-server/DatasetNew/c2/c2-train.csv", + "exists": true, + "size": 42948, + "sha256": "17bc560fa96bd00fb3b526e1e65bc91210b701d0d0a4e8bb9b4c5196cab56def" + }, + "val_csv": { + "path": "/data/jialinzhang/SynthesizePipeline-server/DatasetNew/c2/c2-val.csv", + "exists": true, + "size": 5349, + "sha256": "61e565eca62e65a7dccd9d51039a3170413379e10fc494e25870e7c4294863c9" + }, + "test_csv": { + "path": "/data/jialinzhang/SynthesizePipeline-server/DatasetNew/c2/c2-test.csv", + "exists": true, + "size": 5448, + "sha256": "cbcbb062a1faf5fa44b66c80532baa229e05b94fc42137269761e6c6d84af20a" + }, + "profile_json": { + "path": "/data/jialinzhang/SynthesizePipeline-server/DatasetNew/artifacts/data_core/tabular/c2/c2-dataset_profile.json", + "exists": true, + "size": 3240, + "sha256": "526b7163b2076c93c0bf4638438081ee8a6907065d5b608faa40d1a3dbc2a27b" + }, + "contract_json": { + "path": "/data/jialinzhang/SynthesizePipeline-server/DatasetNew/artifacts/data_core/tabular/c2/c2-dataset_contract_v1.json", + "exists": true, + "size": 3731, + "sha256": "fb595a876054c2ee9b4e10cfe83a5691588de1d25466cbb9d473c18ad3604009" + } + } +} \ No newline at end of file diff --git a/hyperparameter/c2/bayesnet/bayesnet-c2-20260504_205236/public_gate/normalized_schema_snapshot.json b/hyperparameter/c2/bayesnet/bayesnet-c2-20260504_205236/public_gate/normalized_schema_snapshot.json new file mode 100644 index 0000000000000000000000000000000000000000..689b1d00d96508e44ba40e58dc4560e19afc2b3b --- /dev/null +++ b/hyperparameter/c2/bayesnet/bayesnet-c2-20260504_205236/public_gate/normalized_schema_snapshot.json @@ -0,0 +1,144 @@ +{ + "dataset_id": "c2", + "target_column": "class", + "task_type": "classification", + "columns": [ + { + "name": "buying", + "role": "feature", + "semantic_type": "categorical", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 4, + "unique_ratio": 0.002894, + "example_values": [ + "vhigh", + "med", + "high", + "low" + ] + } + }, + { + "name": "maint", + "role": "feature", + "semantic_type": "categorical", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 4, + "unique_ratio": 0.002894, + "example_values": [ + "vhigh", + "low", + "med", + "high" + ] + } + }, + { + "name": "doors", + "role": "feature", + "semantic_type": "categorical", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 4, + "unique_ratio": 0.002894, + "example_values": [ + "2", + "5more", + "3", + "4" + ] + } + }, + { + "name": "persons", + "role": "feature", + "semantic_type": "categorical", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 3, + "unique_ratio": 0.002171, + "example_values": [ + "2", + "4", + "more" + ] + } + }, + { + "name": "lug_boot", + "role": "feature", + "semantic_type": "categorical", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 3, + "unique_ratio": 0.002171, + "example_values": [ + "small", + "big", + "med" + ] + } + }, + { + "name": "safety", + "role": "feature", + "semantic_type": "categorical", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 3, + "unique_ratio": 0.002171, + "example_values": [ + "low", + "high", + "med" + ] + } + }, + { + "name": "class", + "role": "target", + "semantic_type": "categorical", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 4, + "unique_ratio": 0.002894, + "example_values": [ + "unacc", + "good", + "acc", + "vgood" + ] + } + } + ] +} \ No newline at end of file diff --git a/hyperparameter/c2/bayesnet/bayesnet-c2-20260504_205236/public_gate/public_gate_report.json b/hyperparameter/c2/bayesnet/bayesnet-c2-20260504_205236/public_gate/public_gate_report.json new file mode 100644 index 0000000000000000000000000000000000000000..2e4cdcb2a4e28e40d59b17a83e773f622b7636a5 --- /dev/null +++ b/hyperparameter/c2/bayesnet/bayesnet-c2-20260504_205236/public_gate/public_gate_report.json @@ -0,0 +1,37 @@ +{ + "dataset_id": "c2", + "status": "pass", + "checks": [ + { + "check_id": "PG001_csv_parse_ok", + "status": "pass" + }, + { + "check_id": "PG002_split_header_consistent", + "status": "pass" + }, + { + "check_id": "PG003_profile_header_match", + "status": "pass" + }, + { + "check_id": "PG004_missing_token_normalized", + "status": "pass" + }, + { + "check_id": "PG005_semantic_type_validated", + "status": "pass" + }, + { + "check_id": "PG006_target_defined_and_valid", + "status": "pass" + } + ], + "target_column": "class", + "task_type": "classification", + "input_splits": { + "train": "/data/jialinzhang/SynthesizePipeline-server/DatasetNew/c2/c2-train.csv", + "val": "/data/jialinzhang/SynthesizePipeline-server/DatasetNew/c2/c2-val.csv", + "test": "/data/jialinzhang/SynthesizePipeline-server/DatasetNew/c2/c2-test.csv" + } +} \ No newline at end of file diff --git a/hyperparameter/c2/bayesnet/bayesnet-c2-20260504_205236/public_gate/staged_input_manifest.json b/hyperparameter/c2/bayesnet/bayesnet-c2-20260504_205236/public_gate/staged_input_manifest.json new file mode 100644 index 0000000000000000000000000000000000000000..a17159e9edf46e1b81edd4c541428218f54c1ad8 --- /dev/null +++ b/hyperparameter/c2/bayesnet/bayesnet-c2-20260504_205236/public_gate/staged_input_manifest.json @@ -0,0 +1,149 @@ +{ + "dataset_id": "c2", + "target_column": "class", + "task_type": "classification", + "train_csv": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/c2/bayesnet/bayesnet-c2-20260504_205236/staged/public/train.csv", + "val_csv": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/c2/bayesnet/bayesnet-c2-20260504_205236/staged/public/val.csv", + "test_csv": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/c2/bayesnet/bayesnet-c2-20260504_205236/staged/public/test.csv", + "features_json": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/c2/bayesnet/bayesnet-c2-20260504_205236/staged/public/staged_features.json", + "public_gate_report": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/c2/bayesnet/bayesnet-c2-20260504_205236/public_gate/public_gate_report.json", + "column_schema": [ + { + "name": "buying", + "role": "feature", + "semantic_type": "categorical", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 4, + "unique_ratio": 0.002894, + "example_values": [ + "vhigh", + "med", + "high", + "low" + ] + } + }, + { + "name": "maint", + "role": "feature", + "semantic_type": "categorical", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 4, + "unique_ratio": 0.002894, + "example_values": [ + "vhigh", + "low", + "med", + "high" + ] + } + }, + { + "name": "doors", + "role": "feature", + "semantic_type": "categorical", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 4, + "unique_ratio": 0.002894, + "example_values": [ + "2", + "5more", + "3", + "4" + ] + } + }, + { + "name": "persons", + "role": "feature", + "semantic_type": "categorical", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 3, + "unique_ratio": 0.002171, + "example_values": [ + "2", + "4", + "more" + ] + } + }, + { + "name": "lug_boot", + "role": "feature", + "semantic_type": "categorical", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 3, + "unique_ratio": 0.002171, + "example_values": [ + "small", + "big", + "med" + ] + } + }, + { + "name": "safety", + "role": "feature", + "semantic_type": "categorical", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 3, + "unique_ratio": 0.002171, + "example_values": [ + "low", + "high", + "med" + ] + } + }, + { + "name": "class", + "role": "target", + "semantic_type": "categorical", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 4, + "unique_ratio": 0.002894, + "example_values": [ + "unacc", + "good", + "acc", + "vgood" + ] + } + } + ] +} \ No newline at end of file diff --git a/hyperparameter/c2/bayesnet/bayesnet-c2-20260504_205236/run_config.json b/hyperparameter/c2/bayesnet/bayesnet-c2-20260504_205236/run_config.json new file mode 100644 index 0000000000000000000000000000000000000000..8cd464a14e862019814d1219d056592a24b88e3d --- /dev/null +++ b/hyperparameter/c2/bayesnet/bayesnet-c2-20260504_205236/run_config.json @@ -0,0 +1,47 @@ +{ + "schema_version": 1, + "recorded_at": "2026-05-04T20:52:36", + "dataset_id": "c2", + "model": "bayesnet", + "work_dir": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/c2/bayesnet/bayesnet-c2-20260504_205236", + "dataset_source_requested": "new", + "dataset_source_resolved": "new", + "cli_args": { + "model": "bayesnet", + "dataset": "c2", + "dataset_source": "new", + "train": true, + "generate": true, + "num_rows": 0, + "epochs": null, + "output_dir": null, + "model_dir": null, + "work_dir": null, + "resume": false, + "no_stats": false + }, + "resolved": { + "num_rows": 1382, + "model_path": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/c2/bayesnet/bayesnet-c2-20260504_205236/bayesnet_model.pkl", + "output_csv": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/c2/bayesnet/bayesnet-c2-20260504_205236/bayesnet-c2-1382-20260504_205244.csv" + }, + "input_artifacts": { + "public_gate_report": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/c2/bayesnet/bayesnet-c2-20260504_205236/public_gate/public_gate_report.json", + "public_manifest": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/c2/bayesnet/bayesnet-c2-20260504_205236/public_gate/staged_input_manifest.json", + "model_manifest": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/c2/bayesnet/bayesnet-c2-20260504_205236/staged/bayesnet/model_input_manifest.json", + "train_csv": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/c2/bayesnet/bayesnet-c2-20260504_205236/staged/public/train.csv", + "features_json": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/c2/bayesnet/bayesnet-c2-20260504_205236/staged/public/staged_features.json", + "target_column": "class", + "task_type": "classification" + }, + "env_overrides": { + "BAYESNET_DISABLE_AUTO_CAPS": "1", + "BAYESNET_EDGE_WEIGHTS_FN": "normalized_mutual_info", + "BAYESNET_ESTIMATOR_TYPE": "chow-liu", + "BAYESNET_FIT_ROWS": "120000", + "BAYESNET_MAX_BINS": "8", + "BAYESNET_MAX_CAT_LEVELS": "64", + "BAYESNET_N_JOBS": "1", + "BAYESNET_STRUCT_ROWS": "25000" + } +} \ No newline at end of file diff --git a/hyperparameter/c2/bayesnet/bayesnet-c2-20260504_205236/runtime_result.json b/hyperparameter/c2/bayesnet/bayesnet-c2-20260504_205236/runtime_result.json new file mode 100644 index 0000000000000000000000000000000000000000..ae8c851be6619e77ebe0113e4fff3da8f509a6d2 --- /dev/null +++ b/hyperparameter/c2/bayesnet/bayesnet-c2-20260504_205236/runtime_result.json @@ -0,0 +1,27 @@ +{ + "dataset_id": "c2", + "model": "bayesnet", + "run_id": "bayesnet-c2-20260504_205236", + "public_gate_status": "pass", + "adapter_ready_status": "pass", + "train_status": "success", + "generate_status": "success", + "reason_code": null, + "reason_detail": null, + "artifacts": { + "synthetic_csv": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/c2/bayesnet/bayesnet-c2-20260504_205236/bayesnet-c2-1382-20260504_205244.csv", + "model_path": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/c2/bayesnet/bayesnet-c2-20260504_205236/bayesnet_model.pkl" + }, + "timings": { + "train": { + "started_at": "2026-05-04T20:52:36", + "ended_at": "2026-05-04T20:52:44", + "duration_sec": 7.97 + }, + "generate": { + "started_at": "2026-05-04T20:52:44", + "ended_at": "2026-05-04T20:52:52", + "duration_sec": 7.765 + } + } +} \ No newline at end of file diff --git a/hyperparameter/c2/bayesnet/bayesnet-c2-20260504_205236/staged/bayesnet/adapter_report.json b/hyperparameter/c2/bayesnet/bayesnet-c2-20260504_205236/staged/bayesnet/adapter_report.json new file mode 100644 index 0000000000000000000000000000000000000000..6d73935627d16148b8e661b10a9a3b810571cfcf --- /dev/null +++ b/hyperparameter/c2/bayesnet/bayesnet-c2-20260504_205236/staged/bayesnet/adapter_report.json @@ -0,0 +1,7 @@ +{ + "adapter_ready_status": "pass", + "adapter_fail_reason_code": null, + "adapter_fail_detail": null, + "adapter_transforms_applied": [], + "model_input_manifest": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/c2/bayesnet/bayesnet-c2-20260504_205236/staged/bayesnet/model_input_manifest.json" +} \ No newline at end of file diff --git a/hyperparameter/c2/bayesnet/bayesnet-c2-20260504_205236/staged/bayesnet/adapter_transforms_applied.json b/hyperparameter/c2/bayesnet/bayesnet-c2-20260504_205236/staged/bayesnet/adapter_transforms_applied.json new file mode 100644 index 0000000000000000000000000000000000000000..0637a088a01e8ddab3bf3fa98dbe804cbde1a0dc --- /dev/null +++ b/hyperparameter/c2/bayesnet/bayesnet-c2-20260504_205236/staged/bayesnet/adapter_transforms_applied.json @@ -0,0 +1 @@ +[] \ No newline at end of file diff --git a/hyperparameter/c2/bayesnet/bayesnet-c2-20260504_205236/staged/bayesnet/model_input_manifest.json b/hyperparameter/c2/bayesnet/bayesnet-c2-20260504_205236/staged/bayesnet/model_input_manifest.json new file mode 100644 index 0000000000000000000000000000000000000000..07f6093a5b910564d40992f3139db868839452d5 --- /dev/null +++ b/hyperparameter/c2/bayesnet/bayesnet-c2-20260504_205236/staged/bayesnet/model_input_manifest.json @@ -0,0 +1,151 @@ +{ + "dataset_id": "c2", + "model": "bayesnet", + "target_column": "class", + "task_type": "classification", + "column_schema": [ + { + "name": "buying", + "role": "feature", + "semantic_type": "categorical", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 4, + "unique_ratio": 0.002894, + "example_values": [ + "vhigh", + "med", + "high", + "low" + ] + } + }, + { + "name": "maint", + "role": "feature", + "semantic_type": "categorical", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 4, + "unique_ratio": 0.002894, + "example_values": [ + "vhigh", + "low", + "med", + "high" + ] + } + }, + { + "name": "doors", + "role": "feature", + "semantic_type": "categorical", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 4, + "unique_ratio": 0.002894, + "example_values": [ + "2", + "5more", + "3", + "4" + ] + } + }, + { + "name": "persons", + "role": "feature", + "semantic_type": "categorical", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 3, + "unique_ratio": 0.002171, + "example_values": [ + "2", + "4", + "more" + ] + } + }, + { + "name": "lug_boot", + "role": "feature", + "semantic_type": "categorical", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 3, + "unique_ratio": 0.002171, + "example_values": [ + "small", + "big", + "med" + ] + } + }, + { + "name": "safety", + "role": "feature", + "semantic_type": "categorical", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 3, + "unique_ratio": 0.002171, + "example_values": [ + "low", + "high", + "med" + ] + } + }, + { + "name": "class", + "role": "target", + "semantic_type": "categorical", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 4, + "unique_ratio": 0.002894, + "example_values": [ + "unacc", + "good", + "acc", + "vgood" + ] + } + } + ], + "public_manifest": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/c2/bayesnet/bayesnet-c2-20260504_205236/public_gate/staged_input_manifest.json", + "train_csv": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/c2/bayesnet/bayesnet-c2-20260504_205236/staged/public/train.csv", + "val_csv": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/c2/bayesnet/bayesnet-c2-20260504_205236/staged/public/val.csv", + "test_csv": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/c2/bayesnet/bayesnet-c2-20260504_205236/staged/public/test.csv", + "features_json": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/c2/bayesnet/bayesnet-c2-20260504_205236/staged/public/staged_features.json", + "public_gate_report": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/c2/bayesnet/bayesnet-c2-20260504_205236/public_gate/public_gate_report.json" +} \ No newline at end of file diff --git a/hyperparameter/c2/bayesnet/bayesnet-c2-20260504_205236/staged/public/staged_features.json b/hyperparameter/c2/bayesnet/bayesnet-c2-20260504_205236/staged/public/staged_features.json new file mode 100644 index 0000000000000000000000000000000000000000..61783861dd5de501592f76acb0469cf3f3b2622a --- /dev/null +++ b/hyperparameter/c2/bayesnet/bayesnet-c2-20260504_205236/staged/public/staged_features.json @@ -0,0 +1,37 @@ +[ + { + "feature_name": "buying", + "data_type": "categorical", + "is_target": false + }, + { + "feature_name": "maint", + "data_type": "categorical", + "is_target": false + }, + { + "feature_name": "doors", + "data_type": "categorical", + "is_target": false + }, + { + "feature_name": "persons", + "data_type": "categorical", + "is_target": false + }, + { + "feature_name": "lug_boot", + "data_type": "categorical", + "is_target": false + }, + { + "feature_name": "safety", + "data_type": "categorical", + "is_target": false + }, + { + "feature_name": "class", + "data_type": "categorical", + "is_target": true + } +] \ No newline at end of file diff --git a/hyperparameter/c2/bayesnet/bayesnet-c2-20260504_205236/staged/public/test.csv b/hyperparameter/c2/bayesnet/bayesnet-c2-20260504_205236/staged/public/test.csv new file mode 100644 index 0000000000000000000000000000000000000000..392a0d7189a34d8f13ecf20a99d64b03230d517c --- /dev/null +++ b/hyperparameter/c2/bayesnet/bayesnet-c2-20260504_205236/staged/public/test.csv @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:b48114a7d0bc5bd9a07920f903c8d4aba8bf98bf2a66a050da03588b0245ca73 +size 5273 diff --git a/hyperparameter/c2/bayesnet/bayesnet-c2-20260504_205236/staged/public/train.csv b/hyperparameter/c2/bayesnet/bayesnet-c2-20260504_205236/staged/public/train.csv new file mode 100644 index 0000000000000000000000000000000000000000..da4f4d55134eebc0e51157d0d467536371db1484 --- /dev/null +++ b/hyperparameter/c2/bayesnet/bayesnet-c2-20260504_205236/staged/public/train.csv @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:4aed00c2c2b3f88a55a7ebff31b2e1b5e0e32fb0a7267e0b9d2779cd23e434dd +size 41565 diff --git a/hyperparameter/c2/bayesnet/bayesnet-c2-20260504_205236/staged/public/val.csv b/hyperparameter/c2/bayesnet/bayesnet-c2-20260504_205236/staged/public/val.csv new file mode 100644 index 0000000000000000000000000000000000000000..af8caf7ee42524188534a3daf32996dc491952d9 --- /dev/null +++ b/hyperparameter/c2/bayesnet/bayesnet-c2-20260504_205236/staged/public/val.csv @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:26e90c1170a57a14c05832ac88027722b1f3848f9662c7c09ef7c93dcba4cc01 +size 5176 diff --git a/hyperparameter/c2/bayesnet/bayesnet-c2-20260504_205236/train_20260504_205236.log b/hyperparameter/c2/bayesnet/bayesnet-c2-20260504_205236/train_20260504_205236.log new file mode 100644 index 0000000000000000000000000000000000000000..3cdc866818732ecd16db1402dd84e85ea794f324 --- /dev/null +++ b/hyperparameter/c2/bayesnet/bayesnet-c2-20260504_205236/train_20260504_205236.log @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:cbf815707e215209e5a74c7031596fc1da4cbdb2bb67aa8d3cf67540801fb149 +size 3863 diff --git a/hyperparameter/c2/ctgan/ctgan-c2-20260504_152304/_ctgan_generate.py b/hyperparameter/c2/ctgan/ctgan-c2-20260504_152304/_ctgan_generate.py new file mode 100644 index 0000000000000000000000000000000000000000..72d631b335a5126d37d39b7ce8a5a7267f2a06ad --- /dev/null +++ b/hyperparameter/c2/ctgan/ctgan-c2-20260504_152304/_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-Benchmark-trainonly-v1/c2/ctgan/ctgan-c2-20260504_152304/models_50epochs/ctgan_50epochs.pt") +total = 1382 +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-Benchmark-trainonly-v1/c2/ctgan/ctgan-c2-20260504_152304/ctgan-c2-1382-20260504_152353.csv", index=False) +print("[CTGAN] Generated", total, "rows in", len(parts), "chunks ->", "/work/output-Benchmark-trainonly-v1/c2/ctgan/ctgan-c2-20260504_152304/ctgan-c2-1382-20260504_152353.csv") \ No newline at end of file diff --git a/hyperparameter/c2/ctgan/ctgan-c2-20260504_152304/_ctgan_train.py b/hyperparameter/c2/ctgan/ctgan-c2-20260504_152304/_ctgan_train.py new file mode 100644 index 0000000000000000000000000000000000000000..6b9b4676792febe944a8372bf1283e47afc4c4dd --- /dev/null +++ b/hyperparameter/c2/ctgan/ctgan-c2-20260504_152304/_ctgan_train.py @@ -0,0 +1,17 @@ +import pandas as pd +from ctgan.synthesizers.ctgan import CTGAN + +data = pd.read_csv("/work/output-Benchmark-trainonly-v1/c2/ctgan/ctgan-c2-20260504_152304/staged/public/train.csv") +discrete_columns = ['buying', 'maint', 'doors', 'persons', 'lug_boot', 'safety', 'class'] +model = CTGAN( + embedding_dim=8, + generator_dim=(16, 16), + discriminator_dim=(16, 16), + batch_size=32, + pac=1, + epochs=50, + verbose=True, +) +model.fit(data, discrete_columns) +model.save("/work/output-Benchmark-trainonly-v1/c2/ctgan/ctgan-c2-20260504_152304/models_50epochs/ctgan_50epochs.pt") +print("[CTGAN] Saved model ->", "/work/output-Benchmark-trainonly-v1/c2/ctgan/ctgan-c2-20260504_152304/models_50epochs/ctgan_50epochs.pt") \ No newline at end of file diff --git a/hyperparameter/c2/ctgan/ctgan-c2-20260504_152304/ctgan-c2-1382-20260504_152353.csv b/hyperparameter/c2/ctgan/ctgan-c2-20260504_152304/ctgan-c2-1382-20260504_152353.csv new file mode 100644 index 0000000000000000000000000000000000000000..681e27aa7742ed0c684b00f71f3be788e0e869d8 --- /dev/null +++ b/hyperparameter/c2/ctgan/ctgan-c2-20260504_152304/ctgan-c2-1382-20260504_152353.csv @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:29e976f587efbc955df869946a4bb105ce51b79458d3c62ceca09ac148b6ed20 +size 41616 diff --git a/hyperparameter/c2/ctgan/ctgan-c2-20260504_152304/ctgan_metadata.json b/hyperparameter/c2/ctgan/ctgan-c2-20260504_152304/ctgan_metadata.json new file mode 100644 index 0000000000000000000000000000000000000000..183d627ebc98e89233655ec98c9dcbc528c4c328 --- /dev/null +++ b/hyperparameter/c2/ctgan/ctgan-c2-20260504_152304/ctgan_metadata.json @@ -0,0 +1,32 @@ +{ + "columns": [ + { + "name": "buying", + "type": "categorical" + }, + { + "name": "maint", + "type": "categorical" + }, + { + "name": "doors", + "type": "categorical" + }, + { + "name": "persons", + "type": "categorical" + }, + { + "name": "lug_boot", + "type": "categorical" + }, + { + "name": "safety", + "type": "categorical" + }, + { + "name": "class", + "type": "categorical" + } + ] +} \ No newline at end of file diff --git a/hyperparameter/c2/ctgan/ctgan-c2-20260504_152304/gen_20260504_152353.log b/hyperparameter/c2/ctgan/ctgan-c2-20260504_152304/gen_20260504_152353.log new file mode 100644 index 0000000000000000000000000000000000000000..de002e4b88e95acd9bc50ca032cc0ba1f0b86e39 --- /dev/null +++ b/hyperparameter/c2/ctgan/ctgan-c2-20260504_152304/gen_20260504_152353.log @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:9acf86561cff1e9c6a4c9c06233f1f9190b7ed2b840fc2e34e276dbd370ea385 +size 297 diff --git a/hyperparameter/c2/ctgan/ctgan-c2-20260504_152304/input_snapshot.json b/hyperparameter/c2/ctgan/ctgan-c2-20260504_152304/input_snapshot.json new file mode 100644 index 0000000000000000000000000000000000000000..e70c6b5c1d7c7363c5970bab5156163411d211e7 --- /dev/null +++ b/hyperparameter/c2/ctgan/ctgan-c2-20260504_152304/input_snapshot.json @@ -0,0 +1,36 @@ +{ + "dataset_id": "c2", + "model": "ctgan", + "inputs": { + "train_csv": { + "path": "/data/jialinzhang/SynthesizePipeline-server/DatasetNew/c2/c2-train.csv", + "exists": true, + "size": 42948, + "sha256": "17bc560fa96bd00fb3b526e1e65bc91210b701d0d0a4e8bb9b4c5196cab56def" + }, + "val_csv": { + "path": "/data/jialinzhang/SynthesizePipeline-server/DatasetNew/c2/c2-val.csv", + "exists": true, + "size": 5349, + "sha256": "61e565eca62e65a7dccd9d51039a3170413379e10fc494e25870e7c4294863c9" + }, + "test_csv": { + "path": "/data/jialinzhang/SynthesizePipeline-server/DatasetNew/c2/c2-test.csv", + "exists": true, + "size": 5448, + "sha256": "cbcbb062a1faf5fa44b66c80532baa229e05b94fc42137269761e6c6d84af20a" + }, + "profile_json": { + "path": "/data/jialinzhang/SynthesizePipeline-server/DatasetNew/artifacts/data_core/tabular/c2/c2-dataset_profile.json", + "exists": true, + "size": 3240, + "sha256": "526b7163b2076c93c0bf4638438081ee8a6907065d5b608faa40d1a3dbc2a27b" + }, + "contract_json": { + "path": "/data/jialinzhang/SynthesizePipeline-server/DatasetNew/artifacts/data_core/tabular/c2/c2-dataset_contract_v1.json", + "exists": true, + "size": 3731, + "sha256": "fb595a876054c2ee9b4e10cfe83a5691588de1d25466cbb9d473c18ad3604009" + } + } +} \ No newline at end of file diff --git a/hyperparameter/c2/ctgan/ctgan-c2-20260504_152304/models_50epochs/ctgan_50epochs.pt b/hyperparameter/c2/ctgan/ctgan-c2-20260504_152304/models_50epochs/ctgan_50epochs.pt new file mode 100644 index 0000000000000000000000000000000000000000..e36636095420ce570b0bfe9047133f9ba54849ac --- /dev/null +++ b/hyperparameter/c2/ctgan/ctgan-c2-20260504_152304/models_50epochs/ctgan_50epochs.pt @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:39c7bef1dfa571bec7a879d742cb40f266707e489676ce3b74528b1c78d49d51 +size 279437 diff --git a/hyperparameter/c2/ctgan/ctgan-c2-20260504_152304/models_50epochs/train_20260504_152304.log b/hyperparameter/c2/ctgan/ctgan-c2-20260504_152304/models_50epochs/train_20260504_152304.log new file mode 100644 index 0000000000000000000000000000000000000000..31881c865e73fc7a604711f229b0138561760091 --- /dev/null +++ b/hyperparameter/c2/ctgan/ctgan-c2-20260504_152304/models_50epochs/train_20260504_152304.log @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:34ee1fa8c63c912749b01e9ecd9d79d28d46671f3739ed5d339a692b3f263b85 +size 10893 diff --git a/hyperparameter/c2/ctgan/ctgan-c2-20260504_152304/public_gate/normalized_schema_snapshot.json b/hyperparameter/c2/ctgan/ctgan-c2-20260504_152304/public_gate/normalized_schema_snapshot.json new file mode 100644 index 0000000000000000000000000000000000000000..689b1d00d96508e44ba40e58dc4560e19afc2b3b --- /dev/null +++ b/hyperparameter/c2/ctgan/ctgan-c2-20260504_152304/public_gate/normalized_schema_snapshot.json @@ -0,0 +1,144 @@ +{ + "dataset_id": "c2", + "target_column": "class", + "task_type": "classification", + "columns": [ + { + "name": "buying", + "role": "feature", + "semantic_type": "categorical", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 4, + "unique_ratio": 0.002894, + "example_values": [ + "vhigh", + "med", + "high", + "low" + ] + } + }, + { + "name": "maint", + "role": "feature", + "semantic_type": "categorical", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 4, + "unique_ratio": 0.002894, + "example_values": [ + "vhigh", + "low", + "med", + "high" + ] + } + }, + { + "name": "doors", + "role": "feature", + "semantic_type": "categorical", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 4, + "unique_ratio": 0.002894, + "example_values": [ + "2", + "5more", + "3", + "4" + ] + } + }, + { + "name": "persons", + "role": "feature", + "semantic_type": "categorical", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 3, + "unique_ratio": 0.002171, + "example_values": [ + "2", + "4", + "more" + ] + } + }, + { + "name": "lug_boot", + "role": "feature", + "semantic_type": "categorical", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 3, + "unique_ratio": 0.002171, + "example_values": [ + "small", + "big", + "med" + ] + } + }, + { + "name": "safety", + "role": "feature", + "semantic_type": "categorical", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 3, + "unique_ratio": 0.002171, + "example_values": [ + "low", + "high", + "med" + ] + } + }, + { + "name": "class", + "role": "target", + "semantic_type": "categorical", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 4, + "unique_ratio": 0.002894, + "example_values": [ + "unacc", + "good", + "acc", + "vgood" + ] + } + } + ] +} \ No newline at end of file diff --git a/hyperparameter/c2/ctgan/ctgan-c2-20260504_152304/public_gate/public_gate_report.json b/hyperparameter/c2/ctgan/ctgan-c2-20260504_152304/public_gate/public_gate_report.json new file mode 100644 index 0000000000000000000000000000000000000000..2e4cdcb2a4e28e40d59b17a83e773f622b7636a5 --- /dev/null +++ b/hyperparameter/c2/ctgan/ctgan-c2-20260504_152304/public_gate/public_gate_report.json @@ -0,0 +1,37 @@ +{ + "dataset_id": "c2", + "status": "pass", + "checks": [ + { + "check_id": "PG001_csv_parse_ok", + "status": "pass" + }, + { + "check_id": "PG002_split_header_consistent", + "status": "pass" + }, + { + "check_id": "PG003_profile_header_match", + "status": "pass" + }, + { + "check_id": "PG004_missing_token_normalized", + "status": "pass" + }, + { + "check_id": "PG005_semantic_type_validated", + "status": "pass" + }, + { + "check_id": "PG006_target_defined_and_valid", + "status": "pass" + } + ], + "target_column": "class", + "task_type": "classification", + "input_splits": { + "train": "/data/jialinzhang/SynthesizePipeline-server/DatasetNew/c2/c2-train.csv", + "val": "/data/jialinzhang/SynthesizePipeline-server/DatasetNew/c2/c2-val.csv", + "test": "/data/jialinzhang/SynthesizePipeline-server/DatasetNew/c2/c2-test.csv" + } +} \ No newline at end of file diff --git a/hyperparameter/c2/ctgan/ctgan-c2-20260504_152304/public_gate/staged_input_manifest.json b/hyperparameter/c2/ctgan/ctgan-c2-20260504_152304/public_gate/staged_input_manifest.json new file mode 100644 index 0000000000000000000000000000000000000000..9adffa84c9a982333c5e541977c7b6dc9bc69810 --- /dev/null +++ b/hyperparameter/c2/ctgan/ctgan-c2-20260504_152304/public_gate/staged_input_manifest.json @@ -0,0 +1,149 @@ +{ + "dataset_id": "c2", + "target_column": "class", + "task_type": "classification", + "train_csv": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/c2/ctgan/ctgan-c2-20260504_152304/staged/public/train.csv", + "val_csv": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/c2/ctgan/ctgan-c2-20260504_152304/staged/public/val.csv", + "test_csv": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/c2/ctgan/ctgan-c2-20260504_152304/staged/public/test.csv", + "features_json": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/c2/ctgan/ctgan-c2-20260504_152304/staged/public/staged_features.json", + "public_gate_report": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/c2/ctgan/ctgan-c2-20260504_152304/public_gate/public_gate_report.json", + "column_schema": [ + { + "name": "buying", + "role": "feature", + "semantic_type": "categorical", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 4, + "unique_ratio": 0.002894, + "example_values": [ + "vhigh", + "med", + "high", + "low" + ] + } + }, + { + "name": "maint", + "role": "feature", + "semantic_type": "categorical", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 4, + "unique_ratio": 0.002894, + "example_values": [ + "vhigh", + "low", + "med", + "high" + ] + } + }, + { + "name": "doors", + "role": "feature", + "semantic_type": "categorical", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 4, + "unique_ratio": 0.002894, + "example_values": [ + "2", + "5more", + "3", + "4" + ] + } + }, + { + "name": "persons", + "role": "feature", + "semantic_type": "categorical", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 3, + "unique_ratio": 0.002171, + "example_values": [ + "2", + "4", + "more" + ] + } + }, + { + "name": "lug_boot", + "role": "feature", + "semantic_type": "categorical", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 3, + "unique_ratio": 0.002171, + "example_values": [ + "small", + "big", + "med" + ] + } + }, + { + "name": "safety", + "role": "feature", + "semantic_type": "categorical", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 3, + "unique_ratio": 0.002171, + "example_values": [ + "low", + "high", + "med" + ] + } + }, + { + "name": "class", + "role": "target", + "semantic_type": "categorical", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 4, + "unique_ratio": 0.002894, + "example_values": [ + "unacc", + "good", + "acc", + "vgood" + ] + } + } + ] +} \ No newline at end of file diff --git a/hyperparameter/c2/ctgan/ctgan-c2-20260504_152304/run_config.json b/hyperparameter/c2/ctgan/ctgan-c2-20260504_152304/run_config.json new file mode 100644 index 0000000000000000000000000000000000000000..fb41d8bc3413589c05aaeab9ea2b38014b7b853b --- /dev/null +++ b/hyperparameter/c2/ctgan/ctgan-c2-20260504_152304/run_config.json @@ -0,0 +1,46 @@ +{ + "schema_version": 1, + "recorded_at": "2026-05-04T15:23:04", + "dataset_id": "c2", + "model": "ctgan", + "work_dir": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/c2/ctgan/ctgan-c2-20260504_152304", + "dataset_source_requested": "new", + "dataset_source_resolved": "new", + "cli_args": { + "model": "ctgan", + "dataset": "c2", + "dataset_source": "new", + "train": true, + "generate": true, + "num_rows": 0, + "epochs": null, + "output_dir": null, + "model_dir": null, + "work_dir": null, + "resume": false, + "no_stats": false + }, + "resolved": { + "num_rows": 1382, + "model_path": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/c2/ctgan/ctgan-c2-20260504_152304/models_50epochs/ctgan_50epochs.pt", + "output_csv": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/c2/ctgan/ctgan-c2-20260504_152304/ctgan-c2-1382-20260504_152353.csv" + }, + "input_artifacts": { + "public_gate_report": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/c2/ctgan/ctgan-c2-20260504_152304/public_gate/public_gate_report.json", + "public_manifest": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/c2/ctgan/ctgan-c2-20260504_152304/public_gate/staged_input_manifest.json", + "model_manifest": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/c2/ctgan/ctgan-c2-20260504_152304/staged/ctgan/model_input_manifest.json", + "train_csv": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/c2/ctgan/ctgan-c2-20260504_152304/staged/public/train.csv", + "features_json": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/c2/ctgan/ctgan-c2-20260504_152304/staged/public/staged_features.json", + "target_column": "class", + "task_type": "classification" + }, + "env_overrides": { + "BENCHMARK_CTGAN_GPUS": "device=3", + "CTGAN_BATCH_SIZE": "32", + "CTGAN_DEFAULT_EPOCHS": "50", + "CTGAN_DISCRIMINATOR_DIMS": "16,16", + "CTGAN_EMBEDDING_DIM": "8", + "CTGAN_GENERATOR_DIMS": "16,16", + "CTGAN_PAC": "1" + } +} \ No newline at end of file diff --git a/hyperparameter/c2/ctgan/ctgan-c2-20260504_152304/runtime_result.json b/hyperparameter/c2/ctgan/ctgan-c2-20260504_152304/runtime_result.json new file mode 100644 index 0000000000000000000000000000000000000000..d04243918b6cf71cea8be69dbd1ac322df2d0d9b --- /dev/null +++ b/hyperparameter/c2/ctgan/ctgan-c2-20260504_152304/runtime_result.json @@ -0,0 +1,27 @@ +{ + "dataset_id": "c2", + "model": "ctgan", + "run_id": "ctgan-c2-20260504_152304", + "public_gate_status": "pass", + "adapter_ready_status": "pass", + "train_status": "success", + "generate_status": "success", + "reason_code": null, + "reason_detail": null, + "artifacts": { + "synthetic_csv": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/c2/ctgan/ctgan-c2-20260504_152304/ctgan-c2-1382-20260504_152353.csv", + "model_path": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/c2/ctgan/ctgan-c2-20260504_152304/models_50epochs/ctgan_50epochs.pt" + }, + "timings": { + "train": { + "started_at": "2026-05-04T15:23:04", + "ended_at": "2026-05-04T15:23:53", + "duration_sec": 49.624 + }, + "generate": { + "started_at": "2026-05-04T15:23:53", + "ended_at": "2026-05-04T15:23:59", + "duration_sec": 6.006 + } + } +} \ No newline at end of file diff --git a/hyperparameter/c2/ctgan/ctgan-c2-20260504_152304/staged/ctgan/adapter_report.json b/hyperparameter/c2/ctgan/ctgan-c2-20260504_152304/staged/ctgan/adapter_report.json new file mode 100644 index 0000000000000000000000000000000000000000..7a10b79b3fd438b352d349856e6aaa5170be0296 --- /dev/null +++ b/hyperparameter/c2/ctgan/ctgan-c2-20260504_152304/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-Benchmark-trainonly-v1/c2/ctgan/ctgan-c2-20260504_152304/staged/ctgan/model_input_manifest.json" +} \ No newline at end of file diff --git a/hyperparameter/c2/ctgan/ctgan-c2-20260504_152304/staged/ctgan/adapter_transforms_applied.json b/hyperparameter/c2/ctgan/ctgan-c2-20260504_152304/staged/ctgan/adapter_transforms_applied.json new file mode 100644 index 0000000000000000000000000000000000000000..0637a088a01e8ddab3bf3fa98dbe804cbde1a0dc --- /dev/null +++ b/hyperparameter/c2/ctgan/ctgan-c2-20260504_152304/staged/ctgan/adapter_transforms_applied.json @@ -0,0 +1 @@ +[] \ No newline at end of file diff --git a/hyperparameter/c2/ctgan/ctgan-c2-20260504_152304/staged/ctgan/model_input_manifest.json b/hyperparameter/c2/ctgan/ctgan-c2-20260504_152304/staged/ctgan/model_input_manifest.json new file mode 100644 index 0000000000000000000000000000000000000000..73b58d2610a7c6335c463f5ded04d279904d13f3 --- /dev/null +++ b/hyperparameter/c2/ctgan/ctgan-c2-20260504_152304/staged/ctgan/model_input_manifest.json @@ -0,0 +1,151 @@ +{ + "dataset_id": "c2", + "model": "ctgan", + "target_column": "class", + "task_type": "classification", + "column_schema": [ + { + "name": "buying", + "role": "feature", + "semantic_type": "categorical", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 4, + "unique_ratio": 0.002894, + "example_values": [ + "vhigh", + "med", + "high", + "low" + ] + } + }, + { + "name": "maint", + "role": "feature", + "semantic_type": "categorical", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 4, + "unique_ratio": 0.002894, + "example_values": [ + "vhigh", + "low", + "med", + "high" + ] + } + }, + { + "name": "doors", + "role": "feature", + "semantic_type": "categorical", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 4, + "unique_ratio": 0.002894, + "example_values": [ + "2", + "5more", + "3", + "4" + ] + } + }, + { + "name": "persons", + "role": "feature", + "semantic_type": "categorical", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 3, + "unique_ratio": 0.002171, + "example_values": [ + "2", + "4", + "more" + ] + } + }, + { + "name": "lug_boot", + "role": "feature", + "semantic_type": "categorical", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 3, + "unique_ratio": 0.002171, + "example_values": [ + "small", + "big", + "med" + ] + } + }, + { + "name": "safety", + "role": "feature", + "semantic_type": "categorical", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 3, + "unique_ratio": 0.002171, + "example_values": [ + "low", + "high", + "med" + ] + } + }, + { + "name": "class", + "role": "target", + "semantic_type": "categorical", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 4, + "unique_ratio": 0.002894, + "example_values": [ + "unacc", + "good", + "acc", + "vgood" + ] + } + } + ], + "public_manifest": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/c2/ctgan/ctgan-c2-20260504_152304/public_gate/staged_input_manifest.json", + "train_csv": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/c2/ctgan/ctgan-c2-20260504_152304/staged/public/train.csv", + "val_csv": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/c2/ctgan/ctgan-c2-20260504_152304/staged/public/val.csv", + "test_csv": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/c2/ctgan/ctgan-c2-20260504_152304/staged/public/test.csv", + "features_json": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/c2/ctgan/ctgan-c2-20260504_152304/staged/public/staged_features.json", + "public_gate_report": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/c2/ctgan/ctgan-c2-20260504_152304/public_gate/public_gate_report.json" +} \ No newline at end of file diff --git a/hyperparameter/c2/ctgan/ctgan-c2-20260504_152304/staged/public/staged_features.json b/hyperparameter/c2/ctgan/ctgan-c2-20260504_152304/staged/public/staged_features.json new file mode 100644 index 0000000000000000000000000000000000000000..61783861dd5de501592f76acb0469cf3f3b2622a --- /dev/null +++ b/hyperparameter/c2/ctgan/ctgan-c2-20260504_152304/staged/public/staged_features.json @@ -0,0 +1,37 @@ +[ + { + "feature_name": "buying", + "data_type": "categorical", + "is_target": false + }, + { + "feature_name": "maint", + "data_type": "categorical", + "is_target": false + }, + { + "feature_name": "doors", + "data_type": "categorical", + "is_target": false + }, + { + "feature_name": "persons", + "data_type": "categorical", + "is_target": false + }, + { + "feature_name": "lug_boot", + "data_type": "categorical", + "is_target": false + }, + { + "feature_name": "safety", + "data_type": "categorical", + "is_target": false + }, + { + "feature_name": "class", + "data_type": "categorical", + "is_target": true + } +] \ No newline at end of file diff --git a/hyperparameter/c2/ctgan/ctgan-c2-20260504_152304/staged/public/test.csv b/hyperparameter/c2/ctgan/ctgan-c2-20260504_152304/staged/public/test.csv new file mode 100644 index 0000000000000000000000000000000000000000..392a0d7189a34d8f13ecf20a99d64b03230d517c --- /dev/null +++ b/hyperparameter/c2/ctgan/ctgan-c2-20260504_152304/staged/public/test.csv @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:b48114a7d0bc5bd9a07920f903c8d4aba8bf98bf2a66a050da03588b0245ca73 +size 5273 diff --git a/hyperparameter/c2/ctgan/ctgan-c2-20260504_152304/staged/public/train.csv b/hyperparameter/c2/ctgan/ctgan-c2-20260504_152304/staged/public/train.csv new file mode 100644 index 0000000000000000000000000000000000000000..da4f4d55134eebc0e51157d0d467536371db1484 --- /dev/null +++ b/hyperparameter/c2/ctgan/ctgan-c2-20260504_152304/staged/public/train.csv @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:4aed00c2c2b3f88a55a7ebff31b2e1b5e0e32fb0a7267e0b9d2779cd23e434dd +size 41565 diff --git a/hyperparameter/c2/ctgan/ctgan-c2-20260504_152304/staged/public/val.csv b/hyperparameter/c2/ctgan/ctgan-c2-20260504_152304/staged/public/val.csv new file mode 100644 index 0000000000000000000000000000000000000000..af8caf7ee42524188534a3daf32996dc491952d9 --- /dev/null +++ b/hyperparameter/c2/ctgan/ctgan-c2-20260504_152304/staged/public/val.csv @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:26e90c1170a57a14c05832ac88027722b1f3848f9662c7c09ef7c93dcba4cc01 +size 5176 diff --git a/hyperparameter/c2/ctgan/ctgan-c2-20260504_152412/_ctgan_generate.py b/hyperparameter/c2/ctgan/ctgan-c2-20260504_152412/_ctgan_generate.py new file mode 100644 index 0000000000000000000000000000000000000000..a6e2cc17bfbb8d558e91a73d47e786f6a6ea4a89 --- /dev/null +++ b/hyperparameter/c2/ctgan/ctgan-c2-20260504_152412/_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-Benchmark-trainonly-v1/c2/ctgan/ctgan-c2-20260504_152412/models_100epochs/ctgan_100epochs.pt") +total = 1382 +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-Benchmark-trainonly-v1/c2/ctgan/ctgan-c2-20260504_152412/ctgan-c2-1382-20260504_152503.csv", index=False) +print("[CTGAN] Generated", total, "rows in", len(parts), "chunks ->", "/work/output-Benchmark-trainonly-v1/c2/ctgan/ctgan-c2-20260504_152412/ctgan-c2-1382-20260504_152503.csv") \ No newline at end of file diff --git a/hyperparameter/c2/ctgan/ctgan-c2-20260504_152412/_ctgan_train.py b/hyperparameter/c2/ctgan/ctgan-c2-20260504_152412/_ctgan_train.py new file mode 100644 index 0000000000000000000000000000000000000000..eb7e6332e2a5f17ac5c5659de2b5fa14f3402fa6 --- /dev/null +++ b/hyperparameter/c2/ctgan/ctgan-c2-20260504_152412/_ctgan_train.py @@ -0,0 +1,17 @@ +import pandas as pd +from ctgan.synthesizers.ctgan import CTGAN + +data = pd.read_csv("/work/output-Benchmark-trainonly-v1/c2/ctgan/ctgan-c2-20260504_152412/staged/public/train.csv") +discrete_columns = ['buying', 'maint', 'doors', 'persons', 'lug_boot', 'safety', 'class'] +model = CTGAN( + embedding_dim=16, + generator_dim=(32, 32), + discriminator_dim=(32, 32), + batch_size=64, + pac=1, + epochs=100, + verbose=True, +) +model.fit(data, discrete_columns) +model.save("/work/output-Benchmark-trainonly-v1/c2/ctgan/ctgan-c2-20260504_152412/models_100epochs/ctgan_100epochs.pt") +print("[CTGAN] Saved model ->", "/work/output-Benchmark-trainonly-v1/c2/ctgan/ctgan-c2-20260504_152412/models_100epochs/ctgan_100epochs.pt") \ No newline at end of file diff --git a/hyperparameter/c2/ctgan/ctgan-c2-20260504_152412/ctgan-c2-1382-20260504_152503.csv b/hyperparameter/c2/ctgan/ctgan-c2-20260504_152412/ctgan-c2-1382-20260504_152503.csv new file mode 100644 index 0000000000000000000000000000000000000000..24115f3ea8ecea36e3add98d8105e4e8fb44f121 --- /dev/null +++ b/hyperparameter/c2/ctgan/ctgan-c2-20260504_152412/ctgan-c2-1382-20260504_152503.csv @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:1a3894c926a9de28a2c5d069c22c5841dba3d46059ebb36e4d9d6a34cf64b9d7 +size 41628 diff --git a/hyperparameter/c2/ctgan/ctgan-c2-20260504_152412/ctgan_metadata.json b/hyperparameter/c2/ctgan/ctgan-c2-20260504_152412/ctgan_metadata.json new file mode 100644 index 0000000000000000000000000000000000000000..183d627ebc98e89233655ec98c9dcbc528c4c328 --- /dev/null +++ b/hyperparameter/c2/ctgan/ctgan-c2-20260504_152412/ctgan_metadata.json @@ -0,0 +1,32 @@ +{ + "columns": [ + { + "name": "buying", + "type": "categorical" + }, + { + "name": "maint", + "type": "categorical" + }, + { + "name": "doors", + "type": "categorical" + }, + { + "name": "persons", + "type": "categorical" + }, + { + "name": "lug_boot", + "type": "categorical" + }, + { + "name": "safety", + "type": "categorical" + }, + { + "name": "class", + "type": "categorical" + } + ] +} \ No newline at end of file diff --git a/hyperparameter/c2/ctgan/ctgan-c2-20260504_152412/gen_20260504_152503.log b/hyperparameter/c2/ctgan/ctgan-c2-20260504_152412/gen_20260504_152503.log new file mode 100644 index 0000000000000000000000000000000000000000..8dc6481b689cc2843ea2cf84ad6d5317d8d6db8d --- /dev/null +++ b/hyperparameter/c2/ctgan/ctgan-c2-20260504_152412/gen_20260504_152503.log @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:4fdf3116f7dbf5aa10526c09e0aa425ff5d1d7b6d646d7493b1947d94e53cdc3 +size 297 diff --git a/hyperparameter/c2/ctgan/ctgan-c2-20260504_152412/input_snapshot.json b/hyperparameter/c2/ctgan/ctgan-c2-20260504_152412/input_snapshot.json new file mode 100644 index 0000000000000000000000000000000000000000..e70c6b5c1d7c7363c5970bab5156163411d211e7 --- /dev/null +++ b/hyperparameter/c2/ctgan/ctgan-c2-20260504_152412/input_snapshot.json @@ -0,0 +1,36 @@ +{ + "dataset_id": "c2", + "model": "ctgan", + "inputs": { + "train_csv": { + "path": "/data/jialinzhang/SynthesizePipeline-server/DatasetNew/c2/c2-train.csv", + "exists": true, + "size": 42948, + "sha256": "17bc560fa96bd00fb3b526e1e65bc91210b701d0d0a4e8bb9b4c5196cab56def" + }, + "val_csv": { + "path": "/data/jialinzhang/SynthesizePipeline-server/DatasetNew/c2/c2-val.csv", + "exists": true, + "size": 5349, + "sha256": "61e565eca62e65a7dccd9d51039a3170413379e10fc494e25870e7c4294863c9" + }, + "test_csv": { + "path": "/data/jialinzhang/SynthesizePipeline-server/DatasetNew/c2/c2-test.csv", + "exists": true, + "size": 5448, + "sha256": "cbcbb062a1faf5fa44b66c80532baa229e05b94fc42137269761e6c6d84af20a" + }, + "profile_json": { + "path": "/data/jialinzhang/SynthesizePipeline-server/DatasetNew/artifacts/data_core/tabular/c2/c2-dataset_profile.json", + "exists": true, + "size": 3240, + "sha256": "526b7163b2076c93c0bf4638438081ee8a6907065d5b608faa40d1a3dbc2a27b" + }, + "contract_json": { + "path": "/data/jialinzhang/SynthesizePipeline-server/DatasetNew/artifacts/data_core/tabular/c2/c2-dataset_contract_v1.json", + "exists": true, + "size": 3731, + "sha256": "fb595a876054c2ee9b4e10cfe83a5691588de1d25466cbb9d473c18ad3604009" + } + } +} \ No newline at end of file diff --git a/hyperparameter/c2/ctgan/ctgan-c2-20260504_152412/models_100epochs/ctgan_100epochs.pt b/hyperparameter/c2/ctgan/ctgan-c2-20260504_152412/models_100epochs/ctgan_100epochs.pt new file mode 100644 index 0000000000000000000000000000000000000000..0e4044dc65ae5c3bd120e640c227865c3a03dc6f --- /dev/null +++ b/hyperparameter/c2/ctgan/ctgan-c2-20260504_152412/models_100epochs/ctgan_100epochs.pt @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:374f0a3ab118b4c358cfa846e538a91d1c0312a5d866fcadfd475f070e6873d8 +size 295011 diff --git a/hyperparameter/c2/ctgan/ctgan-c2-20260504_152412/models_100epochs/train_20260504_152412.log b/hyperparameter/c2/ctgan/ctgan-c2-20260504_152412/models_100epochs/train_20260504_152412.log new file mode 100644 index 0000000000000000000000000000000000000000..016ed31b2b3da069ab0f57b0e1d8afed0aedb0de --- /dev/null +++ b/hyperparameter/c2/ctgan/ctgan-c2-20260504_152412/models_100epochs/train_20260504_152412.log @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:13eea713840c309e407bb778338ff2e10f7e51ab12a6d203f926b413c280d5ad +size 20259 diff --git a/hyperparameter/c2/ctgan/ctgan-c2-20260504_152412/public_gate/normalized_schema_snapshot.json b/hyperparameter/c2/ctgan/ctgan-c2-20260504_152412/public_gate/normalized_schema_snapshot.json new file mode 100644 index 0000000000000000000000000000000000000000..689b1d00d96508e44ba40e58dc4560e19afc2b3b --- /dev/null +++ b/hyperparameter/c2/ctgan/ctgan-c2-20260504_152412/public_gate/normalized_schema_snapshot.json @@ -0,0 +1,144 @@ +{ + "dataset_id": "c2", + "target_column": "class", + "task_type": "classification", + "columns": [ + { + "name": "buying", + "role": "feature", + "semantic_type": "categorical", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 4, + "unique_ratio": 0.002894, + "example_values": [ + "vhigh", + "med", + "high", + "low" + ] + } + }, + { + "name": "maint", + "role": "feature", + "semantic_type": "categorical", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 4, + "unique_ratio": 0.002894, + "example_values": [ + "vhigh", + "low", + "med", + "high" + ] + } + }, + { + "name": "doors", + "role": "feature", + "semantic_type": "categorical", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 4, + "unique_ratio": 0.002894, + "example_values": [ + "2", + "5more", + "3", + "4" + ] + } + }, + { + "name": "persons", + "role": "feature", + "semantic_type": "categorical", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 3, + "unique_ratio": 0.002171, + "example_values": [ + "2", + "4", + "more" + ] + } + }, + { + "name": "lug_boot", + "role": "feature", + "semantic_type": "categorical", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 3, + "unique_ratio": 0.002171, + "example_values": [ + "small", + "big", + "med" + ] + } + }, + { + "name": "safety", + "role": "feature", + "semantic_type": "categorical", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 3, + "unique_ratio": 0.002171, + "example_values": [ + "low", + "high", + "med" + ] + } + }, + { + "name": "class", + "role": "target", + "semantic_type": "categorical", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 4, + "unique_ratio": 0.002894, + "example_values": [ + "unacc", + "good", + "acc", + "vgood" + ] + } + } + ] +} \ No newline at end of file diff --git a/hyperparameter/c2/ctgan/ctgan-c2-20260504_152412/public_gate/public_gate_report.json b/hyperparameter/c2/ctgan/ctgan-c2-20260504_152412/public_gate/public_gate_report.json new file mode 100644 index 0000000000000000000000000000000000000000..2e4cdcb2a4e28e40d59b17a83e773f622b7636a5 --- /dev/null +++ b/hyperparameter/c2/ctgan/ctgan-c2-20260504_152412/public_gate/public_gate_report.json @@ -0,0 +1,37 @@ +{ + "dataset_id": "c2", + "status": "pass", + "checks": [ + { + "check_id": "PG001_csv_parse_ok", + "status": "pass" + }, + { + "check_id": "PG002_split_header_consistent", + "status": "pass" + }, + { + "check_id": "PG003_profile_header_match", + "status": "pass" + }, + { + "check_id": "PG004_missing_token_normalized", + "status": "pass" + }, + { + "check_id": "PG005_semantic_type_validated", + "status": "pass" + }, + { + "check_id": "PG006_target_defined_and_valid", + "status": "pass" + } + ], + "target_column": "class", + "task_type": "classification", + "input_splits": { + "train": "/data/jialinzhang/SynthesizePipeline-server/DatasetNew/c2/c2-train.csv", + "val": "/data/jialinzhang/SynthesizePipeline-server/DatasetNew/c2/c2-val.csv", + "test": "/data/jialinzhang/SynthesizePipeline-server/DatasetNew/c2/c2-test.csv" + } +} \ No newline at end of file diff --git a/hyperparameter/c2/ctgan/ctgan-c2-20260504_152412/public_gate/staged_input_manifest.json b/hyperparameter/c2/ctgan/ctgan-c2-20260504_152412/public_gate/staged_input_manifest.json new file mode 100644 index 0000000000000000000000000000000000000000..80aeec1d38cb19d7ef9896f62f53b30f8a90381f --- /dev/null +++ b/hyperparameter/c2/ctgan/ctgan-c2-20260504_152412/public_gate/staged_input_manifest.json @@ -0,0 +1,149 @@ +{ + "dataset_id": "c2", + "target_column": "class", + "task_type": "classification", + "train_csv": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/c2/ctgan/ctgan-c2-20260504_152412/staged/public/train.csv", + "val_csv": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/c2/ctgan/ctgan-c2-20260504_152412/staged/public/val.csv", + "test_csv": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/c2/ctgan/ctgan-c2-20260504_152412/staged/public/test.csv", + "features_json": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/c2/ctgan/ctgan-c2-20260504_152412/staged/public/staged_features.json", + "public_gate_report": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/c2/ctgan/ctgan-c2-20260504_152412/public_gate/public_gate_report.json", + "column_schema": [ + { + "name": "buying", + "role": "feature", + "semantic_type": "categorical", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 4, + "unique_ratio": 0.002894, + "example_values": [ + "vhigh", + "med", + "high", + "low" + ] + } + }, + { + "name": "maint", + "role": "feature", + "semantic_type": "categorical", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 4, + "unique_ratio": 0.002894, + "example_values": [ + "vhigh", + "low", + "med", + "high" + ] + } + }, + { + "name": "doors", + "role": "feature", + "semantic_type": "categorical", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 4, + "unique_ratio": 0.002894, + "example_values": [ + "2", + "5more", + "3", + "4" + ] + } + }, + { + "name": "persons", + "role": "feature", + "semantic_type": "categorical", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 3, + "unique_ratio": 0.002171, + "example_values": [ + "2", + "4", + "more" + ] + } + }, + { + "name": "lug_boot", + "role": "feature", + "semantic_type": "categorical", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 3, + "unique_ratio": 0.002171, + "example_values": [ + "small", + "big", + "med" + ] + } + }, + { + "name": "safety", + "role": "feature", + "semantic_type": "categorical", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 3, + "unique_ratio": 0.002171, + "example_values": [ + "low", + "high", + "med" + ] + } + }, + { + "name": "class", + "role": "target", + "semantic_type": "categorical", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 4, + "unique_ratio": 0.002894, + "example_values": [ + "unacc", + "good", + "acc", + "vgood" + ] + } + } + ] +} \ No newline at end of file diff --git a/hyperparameter/c2/ctgan/ctgan-c2-20260504_152412/run_config.json b/hyperparameter/c2/ctgan/ctgan-c2-20260504_152412/run_config.json new file mode 100644 index 0000000000000000000000000000000000000000..2cb71686f0f7799148a51aa35b2a4ee84aca72e3 --- /dev/null +++ b/hyperparameter/c2/ctgan/ctgan-c2-20260504_152412/run_config.json @@ -0,0 +1,46 @@ +{ + "schema_version": 1, + "recorded_at": "2026-05-04T15:24:12", + "dataset_id": "c2", + "model": "ctgan", + "work_dir": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/c2/ctgan/ctgan-c2-20260504_152412", + "dataset_source_requested": "new", + "dataset_source_resolved": "new", + "cli_args": { + "model": "ctgan", + "dataset": "c2", + "dataset_source": "new", + "train": true, + "generate": true, + "num_rows": 0, + "epochs": null, + "output_dir": null, + "model_dir": null, + "work_dir": null, + "resume": false, + "no_stats": false + }, + "resolved": { + "num_rows": 1382, + "model_path": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/c2/ctgan/ctgan-c2-20260504_152412/models_100epochs/ctgan_100epochs.pt", + "output_csv": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/c2/ctgan/ctgan-c2-20260504_152412/ctgan-c2-1382-20260504_152503.csv" + }, + "input_artifacts": { + "public_gate_report": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/c2/ctgan/ctgan-c2-20260504_152412/public_gate/public_gate_report.json", + "public_manifest": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/c2/ctgan/ctgan-c2-20260504_152412/public_gate/staged_input_manifest.json", + "model_manifest": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/c2/ctgan/ctgan-c2-20260504_152412/staged/ctgan/model_input_manifest.json", + "train_csv": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/c2/ctgan/ctgan-c2-20260504_152412/staged/public/train.csv", + "features_json": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/c2/ctgan/ctgan-c2-20260504_152412/staged/public/staged_features.json", + "target_column": "class", + "task_type": "classification" + }, + "env_overrides": { + "BENCHMARK_CTGAN_GPUS": "device=3", + "CTGAN_BATCH_SIZE": "64", + "CTGAN_DEFAULT_EPOCHS": "100", + "CTGAN_DISCRIMINATOR_DIMS": "32,32", + "CTGAN_EMBEDDING_DIM": "16", + "CTGAN_GENERATOR_DIMS": "32,32", + "CTGAN_PAC": "1" + } +} \ No newline at end of file diff --git a/hyperparameter/c2/ctgan/ctgan-c2-20260504_152412/runtime_result.json b/hyperparameter/c2/ctgan/ctgan-c2-20260504_152412/runtime_result.json new file mode 100644 index 0000000000000000000000000000000000000000..937e58e0473c6bbd8b3ee0e92fae0b15b8422aeb --- /dev/null +++ b/hyperparameter/c2/ctgan/ctgan-c2-20260504_152412/runtime_result.json @@ -0,0 +1,27 @@ +{ + "dataset_id": "c2", + "model": "ctgan", + "run_id": "ctgan-c2-20260504_152412", + "public_gate_status": "pass", + "adapter_ready_status": "pass", + "train_status": "success", + "generate_status": "success", + "reason_code": null, + "reason_detail": null, + "artifacts": { + "synthetic_csv": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/c2/ctgan/ctgan-c2-20260504_152412/ctgan-c2-1382-20260504_152503.csv", + "model_path": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/c2/ctgan/ctgan-c2-20260504_152412/models_100epochs/ctgan_100epochs.pt" + }, + "timings": { + "train": { + "started_at": "2026-05-04T15:24:12", + "ended_at": "2026-05-04T15:25:03", + "duration_sec": 50.201 + }, + "generate": { + "started_at": "2026-05-04T15:25:03", + "ended_at": "2026-05-04T15:25:08", + "duration_sec": 5.617 + } + } +} \ No newline at end of file diff --git a/hyperparameter/c2/ctgan/ctgan-c2-20260504_152412/staged/ctgan/adapter_report.json b/hyperparameter/c2/ctgan/ctgan-c2-20260504_152412/staged/ctgan/adapter_report.json new file mode 100644 index 0000000000000000000000000000000000000000..f5f5ece257cc2be54a51b3dd7cb44e9814f81e60 --- /dev/null +++ b/hyperparameter/c2/ctgan/ctgan-c2-20260504_152412/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-Benchmark-trainonly-v1/c2/ctgan/ctgan-c2-20260504_152412/staged/ctgan/model_input_manifest.json" +} \ No newline at end of file diff --git a/hyperparameter/c2/ctgan/ctgan-c2-20260504_152412/staged/ctgan/adapter_transforms_applied.json b/hyperparameter/c2/ctgan/ctgan-c2-20260504_152412/staged/ctgan/adapter_transforms_applied.json new file mode 100644 index 0000000000000000000000000000000000000000..0637a088a01e8ddab3bf3fa98dbe804cbde1a0dc --- /dev/null +++ b/hyperparameter/c2/ctgan/ctgan-c2-20260504_152412/staged/ctgan/adapter_transforms_applied.json @@ -0,0 +1 @@ +[] \ No newline at end of file diff --git a/hyperparameter/c2/ctgan/ctgan-c2-20260504_152412/staged/ctgan/model_input_manifest.json b/hyperparameter/c2/ctgan/ctgan-c2-20260504_152412/staged/ctgan/model_input_manifest.json new file mode 100644 index 0000000000000000000000000000000000000000..4962ba89ebed95e0c2b0d4ca815088c5fa2c32b8 --- /dev/null +++ b/hyperparameter/c2/ctgan/ctgan-c2-20260504_152412/staged/ctgan/model_input_manifest.json @@ -0,0 +1,151 @@ +{ + "dataset_id": "c2", + "model": "ctgan", + "target_column": "class", + "task_type": "classification", + "column_schema": [ + { + "name": "buying", + "role": "feature", + "semantic_type": "categorical", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 4, + "unique_ratio": 0.002894, + "example_values": [ + "vhigh", + "med", + "high", + "low" + ] + } + }, + { + "name": "maint", + "role": "feature", + "semantic_type": "categorical", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 4, + "unique_ratio": 0.002894, + "example_values": [ + "vhigh", + "low", + "med", + "high" + ] + } + }, + { + "name": "doors", + "role": "feature", + "semantic_type": "categorical", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 4, + "unique_ratio": 0.002894, + "example_values": [ + "2", + "5more", + "3", + "4" + ] + } + }, + { + "name": "persons", + "role": "feature", + "semantic_type": "categorical", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 3, + "unique_ratio": 0.002171, + "example_values": [ + "2", + "4", + "more" + ] + } + }, + { + "name": "lug_boot", + "role": "feature", + "semantic_type": "categorical", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 3, + "unique_ratio": 0.002171, + "example_values": [ + "small", + "big", + "med" + ] + } + }, + { + "name": "safety", + "role": "feature", + "semantic_type": "categorical", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 3, + "unique_ratio": 0.002171, + "example_values": [ + "low", + "high", + "med" + ] + } + }, + { + "name": "class", + "role": "target", + "semantic_type": "categorical", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 4, + "unique_ratio": 0.002894, + "example_values": [ + "unacc", + "good", + "acc", + "vgood" + ] + } + } + ], + "public_manifest": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/c2/ctgan/ctgan-c2-20260504_152412/public_gate/staged_input_manifest.json", + "train_csv": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/c2/ctgan/ctgan-c2-20260504_152412/staged/public/train.csv", + "val_csv": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/c2/ctgan/ctgan-c2-20260504_152412/staged/public/val.csv", + "test_csv": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/c2/ctgan/ctgan-c2-20260504_152412/staged/public/test.csv", + "features_json": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/c2/ctgan/ctgan-c2-20260504_152412/staged/public/staged_features.json", + "public_gate_report": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/c2/ctgan/ctgan-c2-20260504_152412/public_gate/public_gate_report.json" +} \ No newline at end of file diff --git a/hyperparameter/c2/ctgan/ctgan-c2-20260504_152412/staged/public/staged_features.json b/hyperparameter/c2/ctgan/ctgan-c2-20260504_152412/staged/public/staged_features.json new file mode 100644 index 0000000000000000000000000000000000000000..61783861dd5de501592f76acb0469cf3f3b2622a --- /dev/null +++ b/hyperparameter/c2/ctgan/ctgan-c2-20260504_152412/staged/public/staged_features.json @@ -0,0 +1,37 @@ +[ + { + "feature_name": "buying", + "data_type": "categorical", + "is_target": false + }, + { + "feature_name": "maint", + "data_type": "categorical", + "is_target": false + }, + { + "feature_name": "doors", + "data_type": "categorical", + "is_target": false + }, + { + "feature_name": "persons", + "data_type": "categorical", + "is_target": false + }, + { + "feature_name": "lug_boot", + "data_type": "categorical", + "is_target": false + }, + { + "feature_name": "safety", + "data_type": "categorical", + "is_target": false + }, + { + "feature_name": "class", + "data_type": "categorical", + "is_target": true + } +] \ No newline at end of file diff --git a/hyperparameter/c2/ctgan/ctgan-c2-20260504_152412/staged/public/test.csv b/hyperparameter/c2/ctgan/ctgan-c2-20260504_152412/staged/public/test.csv new file mode 100644 index 0000000000000000000000000000000000000000..392a0d7189a34d8f13ecf20a99d64b03230d517c --- /dev/null +++ b/hyperparameter/c2/ctgan/ctgan-c2-20260504_152412/staged/public/test.csv @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:b48114a7d0bc5bd9a07920f903c8d4aba8bf98bf2a66a050da03588b0245ca73 +size 5273 diff --git a/hyperparameter/c2/ctgan/ctgan-c2-20260504_152412/staged/public/train.csv b/hyperparameter/c2/ctgan/ctgan-c2-20260504_152412/staged/public/train.csv new file mode 100644 index 0000000000000000000000000000000000000000..da4f4d55134eebc0e51157d0d467536371db1484 --- /dev/null +++ b/hyperparameter/c2/ctgan/ctgan-c2-20260504_152412/staged/public/train.csv @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:4aed00c2c2b3f88a55a7ebff31b2e1b5e0e32fb0a7267e0b9d2779cd23e434dd +size 41565 diff --git a/hyperparameter/c2/ctgan/ctgan-c2-20260504_152412/staged/public/val.csv b/hyperparameter/c2/ctgan/ctgan-c2-20260504_152412/staged/public/val.csv new file mode 100644 index 0000000000000000000000000000000000000000..af8caf7ee42524188534a3daf32996dc491952d9 --- /dev/null +++ b/hyperparameter/c2/ctgan/ctgan-c2-20260504_152412/staged/public/val.csv @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:26e90c1170a57a14c05832ac88027722b1f3848f9662c7c09ef7c93dcba4cc01 +size 5176 diff --git a/hyperparameter/c2/ctgan/ctgan-c2-20260504_152521/_ctgan_generate.py b/hyperparameter/c2/ctgan/ctgan-c2-20260504_152521/_ctgan_generate.py new file mode 100644 index 0000000000000000000000000000000000000000..16e1cbf8bd422bec2ca1d496741eb412a6d3b10c --- /dev/null +++ b/hyperparameter/c2/ctgan/ctgan-c2-20260504_152521/_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-Benchmark-trainonly-v1/c2/ctgan/ctgan-c2-20260504_152521/models_150epochs/ctgan_150epochs.pt") +total = 1382 +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-Benchmark-trainonly-v1/c2/ctgan/ctgan-c2-20260504_152521/ctgan-c2-1382-20260504_152602.csv", index=False) +print("[CTGAN] Generated", total, "rows in", len(parts), "chunks ->", "/work/output-Benchmark-trainonly-v1/c2/ctgan/ctgan-c2-20260504_152521/ctgan-c2-1382-20260504_152602.csv") \ No newline at end of file diff --git a/hyperparameter/c2/ctgan/ctgan-c2-20260504_152521/_ctgan_train.py b/hyperparameter/c2/ctgan/ctgan-c2-20260504_152521/_ctgan_train.py new file mode 100644 index 0000000000000000000000000000000000000000..78628106b930abae414832204fa9175a7455533f --- /dev/null +++ b/hyperparameter/c2/ctgan/ctgan-c2-20260504_152521/_ctgan_train.py @@ -0,0 +1,17 @@ +import pandas as pd +from ctgan.synthesizers.ctgan import CTGAN + +data = pd.read_csv("/work/output-Benchmark-trainonly-v1/c2/ctgan/ctgan-c2-20260504_152521/staged/public/train.csv") +discrete_columns = ['buying', 'maint', 'doors', 'persons', 'lug_boot', 'safety', 'class'] +model = CTGAN( + embedding_dim=32, + generator_dim=(64, 64), + discriminator_dim=(64, 64), + batch_size=128, + pac=1, + epochs=150, + verbose=True, +) +model.fit(data, discrete_columns) +model.save("/work/output-Benchmark-trainonly-v1/c2/ctgan/ctgan-c2-20260504_152521/models_150epochs/ctgan_150epochs.pt") +print("[CTGAN] Saved model ->", "/work/output-Benchmark-trainonly-v1/c2/ctgan/ctgan-c2-20260504_152521/models_150epochs/ctgan_150epochs.pt") \ No newline at end of file diff --git a/hyperparameter/c2/ctgan/ctgan-c2-20260504_152521/ctgan-c2-1382-20260504_152602.csv b/hyperparameter/c2/ctgan/ctgan-c2-20260504_152521/ctgan-c2-1382-20260504_152602.csv new file mode 100644 index 0000000000000000000000000000000000000000..fb43b629026c53e55167fb66183df12a8ede4f6e --- /dev/null +++ b/hyperparameter/c2/ctgan/ctgan-c2-20260504_152521/ctgan-c2-1382-20260504_152602.csv @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:f9e5f49ea1929935b2cbff19d40b624b643fce1ce9b25dcd47f8a95b18c8e658 +size 41931 diff --git a/hyperparameter/c2/ctgan/ctgan-c2-20260504_152521/ctgan_metadata.json b/hyperparameter/c2/ctgan/ctgan-c2-20260504_152521/ctgan_metadata.json new file mode 100644 index 0000000000000000000000000000000000000000..183d627ebc98e89233655ec98c9dcbc528c4c328 --- /dev/null +++ b/hyperparameter/c2/ctgan/ctgan-c2-20260504_152521/ctgan_metadata.json @@ -0,0 +1,32 @@ +{ + "columns": [ + { + "name": "buying", + "type": "categorical" + }, + { + "name": "maint", + "type": "categorical" + }, + { + "name": "doors", + "type": "categorical" + }, + { + "name": "persons", + "type": "categorical" + }, + { + "name": "lug_boot", + "type": "categorical" + }, + { + "name": "safety", + "type": "categorical" + }, + { + "name": "class", + "type": "categorical" + } + ] +} \ No newline at end of file diff --git a/hyperparameter/c2/ctgan/ctgan-c2-20260504_152521/gen_20260504_152602.log b/hyperparameter/c2/ctgan/ctgan-c2-20260504_152521/gen_20260504_152602.log new file mode 100644 index 0000000000000000000000000000000000000000..f33ebfa9b854a8e71a032a35483e56c9cc8683f6 --- /dev/null +++ b/hyperparameter/c2/ctgan/ctgan-c2-20260504_152521/gen_20260504_152602.log @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:90a4a7de75eec0fbee24fc86b99413d696184b508dbb5166fb1f6369c00a0259 +size 297 diff --git a/hyperparameter/c2/ctgan/ctgan-c2-20260504_152521/input_snapshot.json b/hyperparameter/c2/ctgan/ctgan-c2-20260504_152521/input_snapshot.json new file mode 100644 index 0000000000000000000000000000000000000000..e70c6b5c1d7c7363c5970bab5156163411d211e7 --- /dev/null +++ b/hyperparameter/c2/ctgan/ctgan-c2-20260504_152521/input_snapshot.json @@ -0,0 +1,36 @@ +{ + "dataset_id": "c2", + "model": "ctgan", + "inputs": { + "train_csv": { + "path": "/data/jialinzhang/SynthesizePipeline-server/DatasetNew/c2/c2-train.csv", + "exists": true, + "size": 42948, + "sha256": "17bc560fa96bd00fb3b526e1e65bc91210b701d0d0a4e8bb9b4c5196cab56def" + }, + "val_csv": { + "path": "/data/jialinzhang/SynthesizePipeline-server/DatasetNew/c2/c2-val.csv", + "exists": true, + "size": 5349, + "sha256": "61e565eca62e65a7dccd9d51039a3170413379e10fc494e25870e7c4294863c9" + }, + "test_csv": { + "path": "/data/jialinzhang/SynthesizePipeline-server/DatasetNew/c2/c2-test.csv", + "exists": true, + "size": 5448, + "sha256": "cbcbb062a1faf5fa44b66c80532baa229e05b94fc42137269761e6c6d84af20a" + }, + "profile_json": { + "path": "/data/jialinzhang/SynthesizePipeline-server/DatasetNew/artifacts/data_core/tabular/c2/c2-dataset_profile.json", + "exists": true, + "size": 3240, + "sha256": "526b7163b2076c93c0bf4638438081ee8a6907065d5b608faa40d1a3dbc2a27b" + }, + "contract_json": { + "path": "/data/jialinzhang/SynthesizePipeline-server/DatasetNew/artifacts/data_core/tabular/c2/c2-dataset_contract_v1.json", + "exists": true, + "size": 3731, + "sha256": "fb595a876054c2ee9b4e10cfe83a5691588de1d25466cbb9d473c18ad3604009" + } + } +} \ No newline at end of file diff --git a/hyperparameter/c2/ctgan/ctgan-c2-20260504_152521/models_150epochs/ctgan_150epochs.pt b/hyperparameter/c2/ctgan/ctgan-c2-20260504_152521/models_150epochs/ctgan_150epochs.pt new file mode 100644 index 0000000000000000000000000000000000000000..464b111ee5a641b1c23c4ed76cc24c07febeefd0 --- /dev/null +++ b/hyperparameter/c2/ctgan/ctgan-c2-20260504_152521/models_150epochs/ctgan_150epochs.pt @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:e03e4717b96ceed0bbec1c8771604a12d35d2af80e6233323dea1b055eec9ae8 +size 336739 diff --git a/hyperparameter/c2/ctgan/ctgan-c2-20260504_152521/models_150epochs/train_20260504_152521.log b/hyperparameter/c2/ctgan/ctgan-c2-20260504_152521/models_150epochs/train_20260504_152521.log new file mode 100644 index 0000000000000000000000000000000000000000..776c175a578fb21419b6be68f41b2a4305893332 --- /dev/null +++ b/hyperparameter/c2/ctgan/ctgan-c2-20260504_152521/models_150epochs/train_20260504_152521.log @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:a3af72c614a2bedcd9896ce46da7ab7b8947307ee05fdababfa63c84c3265b34 +size 29431 diff --git a/hyperparameter/c2/ctgan/ctgan-c2-20260504_152521/public_gate/normalized_schema_snapshot.json b/hyperparameter/c2/ctgan/ctgan-c2-20260504_152521/public_gate/normalized_schema_snapshot.json new file mode 100644 index 0000000000000000000000000000000000000000..689b1d00d96508e44ba40e58dc4560e19afc2b3b --- /dev/null +++ b/hyperparameter/c2/ctgan/ctgan-c2-20260504_152521/public_gate/normalized_schema_snapshot.json @@ -0,0 +1,144 @@ +{ + "dataset_id": "c2", + "target_column": "class", + "task_type": "classification", + "columns": [ + { + "name": "buying", + "role": "feature", + "semantic_type": "categorical", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 4, + "unique_ratio": 0.002894, + "example_values": [ + "vhigh", + "med", + "high", + "low" + ] + } + }, + { + "name": "maint", + "role": "feature", + "semantic_type": "categorical", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 4, + "unique_ratio": 0.002894, + "example_values": [ + "vhigh", + "low", + "med", + "high" + ] + } + }, + { + "name": "doors", + "role": "feature", + "semantic_type": "categorical", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 4, + "unique_ratio": 0.002894, + "example_values": [ + "2", + "5more", + "3", + "4" + ] + } + }, + { + "name": "persons", + "role": "feature", + "semantic_type": "categorical", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 3, + "unique_ratio": 0.002171, + "example_values": [ + "2", + "4", + "more" + ] + } + }, + { + "name": "lug_boot", + "role": "feature", + "semantic_type": "categorical", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 3, + "unique_ratio": 0.002171, + "example_values": [ + "small", + "big", + "med" + ] + } + }, + { + "name": "safety", + "role": "feature", + "semantic_type": "categorical", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 3, + "unique_ratio": 0.002171, + "example_values": [ + "low", + "high", + "med" + ] + } + }, + { + "name": "class", + "role": "target", + "semantic_type": "categorical", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 4, + "unique_ratio": 0.002894, + "example_values": [ + "unacc", + "good", + "acc", + "vgood" + ] + } + } + ] +} \ No newline at end of file diff --git a/hyperparameter/c2/ctgan/ctgan-c2-20260504_152521/public_gate/public_gate_report.json b/hyperparameter/c2/ctgan/ctgan-c2-20260504_152521/public_gate/public_gate_report.json new file mode 100644 index 0000000000000000000000000000000000000000..2e4cdcb2a4e28e40d59b17a83e773f622b7636a5 --- /dev/null +++ b/hyperparameter/c2/ctgan/ctgan-c2-20260504_152521/public_gate/public_gate_report.json @@ -0,0 +1,37 @@ +{ + "dataset_id": "c2", + "status": "pass", + "checks": [ + { + "check_id": "PG001_csv_parse_ok", + "status": "pass" + }, + { + "check_id": "PG002_split_header_consistent", + "status": "pass" + }, + { + "check_id": "PG003_profile_header_match", + "status": "pass" + }, + { + "check_id": "PG004_missing_token_normalized", + "status": "pass" + }, + { + "check_id": "PG005_semantic_type_validated", + "status": "pass" + }, + { + "check_id": "PG006_target_defined_and_valid", + "status": "pass" + } + ], + "target_column": "class", + "task_type": "classification", + "input_splits": { + "train": "/data/jialinzhang/SynthesizePipeline-server/DatasetNew/c2/c2-train.csv", + "val": "/data/jialinzhang/SynthesizePipeline-server/DatasetNew/c2/c2-val.csv", + "test": "/data/jialinzhang/SynthesizePipeline-server/DatasetNew/c2/c2-test.csv" + } +} \ No newline at end of file diff --git a/hyperparameter/c2/ctgan/ctgan-c2-20260504_152521/public_gate/staged_input_manifest.json b/hyperparameter/c2/ctgan/ctgan-c2-20260504_152521/public_gate/staged_input_manifest.json new file mode 100644 index 0000000000000000000000000000000000000000..66e850014a3d2c262c9f9ba6b2ea2fbd0b4277a8 --- /dev/null +++ b/hyperparameter/c2/ctgan/ctgan-c2-20260504_152521/public_gate/staged_input_manifest.json @@ -0,0 +1,149 @@ +{ + "dataset_id": "c2", + "target_column": "class", + "task_type": "classification", + "train_csv": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/c2/ctgan/ctgan-c2-20260504_152521/staged/public/train.csv", + "val_csv": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/c2/ctgan/ctgan-c2-20260504_152521/staged/public/val.csv", + "test_csv": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/c2/ctgan/ctgan-c2-20260504_152521/staged/public/test.csv", + "features_json": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/c2/ctgan/ctgan-c2-20260504_152521/staged/public/staged_features.json", + "public_gate_report": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/c2/ctgan/ctgan-c2-20260504_152521/public_gate/public_gate_report.json", + "column_schema": [ + { + "name": "buying", + "role": "feature", + "semantic_type": "categorical", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 4, + "unique_ratio": 0.002894, + "example_values": [ + "vhigh", + "med", + "high", + "low" + ] + } + }, + { + "name": "maint", + "role": "feature", + "semantic_type": "categorical", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 4, + "unique_ratio": 0.002894, + "example_values": [ + "vhigh", + "low", + "med", + "high" + ] + } + }, + { + "name": "doors", + "role": "feature", + "semantic_type": "categorical", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 4, + "unique_ratio": 0.002894, + "example_values": [ + "2", + "5more", + "3", + "4" + ] + } + }, + { + "name": "persons", + "role": "feature", + "semantic_type": "categorical", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 3, + "unique_ratio": 0.002171, + "example_values": [ + "2", + "4", + "more" + ] + } + }, + { + "name": "lug_boot", + "role": "feature", + "semantic_type": "categorical", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 3, + "unique_ratio": 0.002171, + "example_values": [ + "small", + "big", + "med" + ] + } + }, + { + "name": "safety", + "role": "feature", + "semantic_type": "categorical", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 3, + "unique_ratio": 0.002171, + "example_values": [ + "low", + "high", + "med" + ] + } + }, + { + "name": "class", + "role": "target", + "semantic_type": "categorical", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 4, + "unique_ratio": 0.002894, + "example_values": [ + "unacc", + "good", + "acc", + "vgood" + ] + } + } + ] +} \ No newline at end of file diff --git a/hyperparameter/c2/ctgan/ctgan-c2-20260504_152521/run_config.json b/hyperparameter/c2/ctgan/ctgan-c2-20260504_152521/run_config.json new file mode 100644 index 0000000000000000000000000000000000000000..17ebaa88d95e65cb684c715dc2ce0a786db7eba5 --- /dev/null +++ b/hyperparameter/c2/ctgan/ctgan-c2-20260504_152521/run_config.json @@ -0,0 +1,46 @@ +{ + "schema_version": 1, + "recorded_at": "2026-05-04T15:25:21", + "dataset_id": "c2", + "model": "ctgan", + "work_dir": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/c2/ctgan/ctgan-c2-20260504_152521", + "dataset_source_requested": "new", + "dataset_source_resolved": "new", + "cli_args": { + "model": "ctgan", + "dataset": "c2", + "dataset_source": "new", + "train": true, + "generate": true, + "num_rows": 0, + "epochs": null, + "output_dir": null, + "model_dir": null, + "work_dir": null, + "resume": false, + "no_stats": false + }, + "resolved": { + "num_rows": 1382, + "model_path": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/c2/ctgan/ctgan-c2-20260504_152521/models_150epochs/ctgan_150epochs.pt", + "output_csv": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/c2/ctgan/ctgan-c2-20260504_152521/ctgan-c2-1382-20260504_152602.csv" + }, + "input_artifacts": { + "public_gate_report": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/c2/ctgan/ctgan-c2-20260504_152521/public_gate/public_gate_report.json", + "public_manifest": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/c2/ctgan/ctgan-c2-20260504_152521/public_gate/staged_input_manifest.json", + "model_manifest": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/c2/ctgan/ctgan-c2-20260504_152521/staged/ctgan/model_input_manifest.json", + "train_csv": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/c2/ctgan/ctgan-c2-20260504_152521/staged/public/train.csv", + "features_json": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/c2/ctgan/ctgan-c2-20260504_152521/staged/public/staged_features.json", + "target_column": "class", + "task_type": "classification" + }, + "env_overrides": { + "BENCHMARK_CTGAN_GPUS": "device=3", + "CTGAN_BATCH_SIZE": "128", + "CTGAN_DEFAULT_EPOCHS": "150", + "CTGAN_DISCRIMINATOR_DIMS": "64,64", + "CTGAN_EMBEDDING_DIM": "32", + "CTGAN_GENERATOR_DIMS": "64,64", + "CTGAN_PAC": "1" + } +} \ No newline at end of file diff --git a/hyperparameter/c2/ctgan/ctgan-c2-20260504_152521/runtime_result.json b/hyperparameter/c2/ctgan/ctgan-c2-20260504_152521/runtime_result.json new file mode 100644 index 0000000000000000000000000000000000000000..5441404826fb87c542aeb6ba3fe39ddb39ed7d05 --- /dev/null +++ b/hyperparameter/c2/ctgan/ctgan-c2-20260504_152521/runtime_result.json @@ -0,0 +1,27 @@ +{ + "dataset_id": "c2", + "model": "ctgan", + "run_id": "ctgan-c2-20260504_152521", + "public_gate_status": "pass", + "adapter_ready_status": "pass", + "train_status": "success", + "generate_status": "success", + "reason_code": null, + "reason_detail": null, + "artifacts": { + "synthetic_csv": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/c2/ctgan/ctgan-c2-20260504_152521/ctgan-c2-1382-20260504_152602.csv", + "model_path": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/c2/ctgan/ctgan-c2-20260504_152521/models_150epochs/ctgan_150epochs.pt" + }, + "timings": { + "train": { + "started_at": "2026-05-04T15:25:21", + "ended_at": "2026-05-04T15:26:02", + "duration_sec": 40.385 + }, + "generate": { + "started_at": "2026-05-04T15:26:02", + "ended_at": "2026-05-04T15:26:07", + "duration_sec": 5.523 + } + } +} \ No newline at end of file diff --git a/hyperparameter/c2/ctgan/ctgan-c2-20260504_152521/staged/ctgan/adapter_report.json b/hyperparameter/c2/ctgan/ctgan-c2-20260504_152521/staged/ctgan/adapter_report.json new file mode 100644 index 0000000000000000000000000000000000000000..0b097136f4896f9d5deee418a166899244ba88a2 --- /dev/null +++ b/hyperparameter/c2/ctgan/ctgan-c2-20260504_152521/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-Benchmark-trainonly-v1/c2/ctgan/ctgan-c2-20260504_152521/staged/ctgan/model_input_manifest.json" +} \ No newline at end of file diff --git a/hyperparameter/c2/ctgan/ctgan-c2-20260504_152521/staged/ctgan/adapter_transforms_applied.json b/hyperparameter/c2/ctgan/ctgan-c2-20260504_152521/staged/ctgan/adapter_transforms_applied.json new file mode 100644 index 0000000000000000000000000000000000000000..0637a088a01e8ddab3bf3fa98dbe804cbde1a0dc --- /dev/null +++ b/hyperparameter/c2/ctgan/ctgan-c2-20260504_152521/staged/ctgan/adapter_transforms_applied.json @@ -0,0 +1 @@ +[] \ No newline at end of file diff --git a/hyperparameter/c2/ctgan/ctgan-c2-20260504_152521/staged/ctgan/model_input_manifest.json b/hyperparameter/c2/ctgan/ctgan-c2-20260504_152521/staged/ctgan/model_input_manifest.json new file mode 100644 index 0000000000000000000000000000000000000000..9e0cdf8d1c63e1c6f50e3ef553b75abd8d288f85 --- /dev/null +++ b/hyperparameter/c2/ctgan/ctgan-c2-20260504_152521/staged/ctgan/model_input_manifest.json @@ -0,0 +1,151 @@ +{ + "dataset_id": "c2", + "model": "ctgan", + "target_column": "class", + "task_type": "classification", + "column_schema": [ + { + "name": "buying", + "role": "feature", + "semantic_type": "categorical", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 4, + "unique_ratio": 0.002894, + "example_values": [ + "vhigh", + "med", + "high", + "low" + ] + } + }, + { + "name": "maint", + "role": "feature", + "semantic_type": "categorical", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 4, + "unique_ratio": 0.002894, + "example_values": [ + "vhigh", + "low", + "med", + "high" + ] + } + }, + { + "name": "doors", + "role": "feature", + "semantic_type": "categorical", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 4, + "unique_ratio": 0.002894, + "example_values": [ + "2", + "5more", + "3", + "4" + ] + } + }, + { + "name": "persons", + "role": "feature", + "semantic_type": "categorical", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 3, + "unique_ratio": 0.002171, + "example_values": [ + "2", + "4", + "more" + ] + } + }, + { + "name": "lug_boot", + "role": "feature", + "semantic_type": "categorical", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 3, + "unique_ratio": 0.002171, + "example_values": [ + "small", + "big", + "med" + ] + } + }, + { + "name": "safety", + "role": "feature", + "semantic_type": "categorical", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 3, + "unique_ratio": 0.002171, + "example_values": [ + "low", + "high", + "med" + ] + } + }, + { + "name": "class", + "role": "target", + "semantic_type": "categorical", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 4, + "unique_ratio": 0.002894, + "example_values": [ + "unacc", + "good", + "acc", + "vgood" + ] + } + } + ], + "public_manifest": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/c2/ctgan/ctgan-c2-20260504_152521/public_gate/staged_input_manifest.json", + "train_csv": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/c2/ctgan/ctgan-c2-20260504_152521/staged/public/train.csv", + "val_csv": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/c2/ctgan/ctgan-c2-20260504_152521/staged/public/val.csv", + "test_csv": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/c2/ctgan/ctgan-c2-20260504_152521/staged/public/test.csv", + "features_json": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/c2/ctgan/ctgan-c2-20260504_152521/staged/public/staged_features.json", + "public_gate_report": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/c2/ctgan/ctgan-c2-20260504_152521/public_gate/public_gate_report.json" +} \ No newline at end of file diff --git a/hyperparameter/c2/ctgan/ctgan-c2-20260504_152521/staged/public/staged_features.json b/hyperparameter/c2/ctgan/ctgan-c2-20260504_152521/staged/public/staged_features.json new file mode 100644 index 0000000000000000000000000000000000000000..61783861dd5de501592f76acb0469cf3f3b2622a --- /dev/null +++ b/hyperparameter/c2/ctgan/ctgan-c2-20260504_152521/staged/public/staged_features.json @@ -0,0 +1,37 @@ +[ + { + "feature_name": "buying", + "data_type": "categorical", + "is_target": false + }, + { + "feature_name": "maint", + "data_type": "categorical", + "is_target": false + }, + { + "feature_name": "doors", + "data_type": "categorical", + "is_target": false + }, + { + "feature_name": "persons", + "data_type": "categorical", + "is_target": false + }, + { + "feature_name": "lug_boot", + "data_type": "categorical", + "is_target": false + }, + { + "feature_name": "safety", + "data_type": "categorical", + "is_target": false + }, + { + "feature_name": "class", + "data_type": "categorical", + "is_target": true + } +] \ No newline at end of file diff --git a/hyperparameter/c2/ctgan/ctgan-c2-20260504_152521/staged/public/test.csv b/hyperparameter/c2/ctgan/ctgan-c2-20260504_152521/staged/public/test.csv new file mode 100644 index 0000000000000000000000000000000000000000..392a0d7189a34d8f13ecf20a99d64b03230d517c --- /dev/null +++ b/hyperparameter/c2/ctgan/ctgan-c2-20260504_152521/staged/public/test.csv @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:b48114a7d0bc5bd9a07920f903c8d4aba8bf98bf2a66a050da03588b0245ca73 +size 5273 diff --git a/hyperparameter/c2/ctgan/ctgan-c2-20260504_152521/staged/public/train.csv b/hyperparameter/c2/ctgan/ctgan-c2-20260504_152521/staged/public/train.csv new file mode 100644 index 0000000000000000000000000000000000000000..da4f4d55134eebc0e51157d0d467536371db1484 --- /dev/null +++ b/hyperparameter/c2/ctgan/ctgan-c2-20260504_152521/staged/public/train.csv @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:4aed00c2c2b3f88a55a7ebff31b2e1b5e0e32fb0a7267e0b9d2779cd23e434dd +size 41565 diff --git a/hyperparameter/c2/ctgan/ctgan-c2-20260504_152521/staged/public/val.csv b/hyperparameter/c2/ctgan/ctgan-c2-20260504_152521/staged/public/val.csv new file mode 100644 index 0000000000000000000000000000000000000000..af8caf7ee42524188534a3daf32996dc491952d9 --- /dev/null +++ b/hyperparameter/c2/ctgan/ctgan-c2-20260504_152521/staged/public/val.csv @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:26e90c1170a57a14c05832ac88027722b1f3848f9662c7c09ef7c93dcba4cc01 +size 5176 diff --git a/hyperparameter/c2/ctgan/ctgan-c2-20260504_162240/_ctgan_generate.py b/hyperparameter/c2/ctgan/ctgan-c2-20260504_162240/_ctgan_generate.py new file mode 100644 index 0000000000000000000000000000000000000000..4a513b6c64f8729a0592980505e361f0ede7a9ea --- /dev/null +++ b/hyperparameter/c2/ctgan/ctgan-c2-20260504_162240/_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-Benchmark-trainonly-v1/c2/ctgan/ctgan-c2-20260504_162240/models_100epochs/ctgan_100epochs.pt") +total = 1382 +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-Benchmark-trainonly-v1/c2/ctgan/ctgan-c2-20260504_162240/ctgan-c2-1382-20260504_162321.csv", index=False) +print("[CTGAN] Generated", total, "rows in", len(parts), "chunks ->", "/work/output-Benchmark-trainonly-v1/c2/ctgan/ctgan-c2-20260504_162240/ctgan-c2-1382-20260504_162321.csv") \ No newline at end of file diff --git a/hyperparameter/c2/ctgan/ctgan-c2-20260504_162240/_ctgan_train.py b/hyperparameter/c2/ctgan/ctgan-c2-20260504_162240/_ctgan_train.py new file mode 100644 index 0000000000000000000000000000000000000000..dd7ddb7bea931b54947b0e3d88527c9ad137178d --- /dev/null +++ b/hyperparameter/c2/ctgan/ctgan-c2-20260504_162240/_ctgan_train.py @@ -0,0 +1,17 @@ +import pandas as pd +from ctgan.synthesizers.ctgan import CTGAN + +data = pd.read_csv("/work/output-Benchmark-trainonly-v1/c2/ctgan/ctgan-c2-20260504_162240/staged/public/train.csv") +discrete_columns = ['buying', 'maint', 'doors', 'persons', 'lug_boot', 'safety', 'class'] +model = CTGAN( + embedding_dim=16, + generator_dim=(32, 32), + discriminator_dim=(32, 32), + batch_size=80, + pac=5, + epochs=100, + verbose=True, +) +model.fit(data, discrete_columns) +model.save("/work/output-Benchmark-trainonly-v1/c2/ctgan/ctgan-c2-20260504_162240/models_100epochs/ctgan_100epochs.pt") +print("[CTGAN] Saved model ->", "/work/output-Benchmark-trainonly-v1/c2/ctgan/ctgan-c2-20260504_162240/models_100epochs/ctgan_100epochs.pt") \ No newline at end of file diff --git a/hyperparameter/c2/ctgan/ctgan-c2-20260504_162240/ctgan-c2-1382-20260504_162321.csv b/hyperparameter/c2/ctgan/ctgan-c2-20260504_162240/ctgan-c2-1382-20260504_162321.csv new file mode 100644 index 0000000000000000000000000000000000000000..4c2bcd6913d6fc848e66bb9fdda340a1e05554b7 --- /dev/null +++ b/hyperparameter/c2/ctgan/ctgan-c2-20260504_162240/ctgan-c2-1382-20260504_162321.csv @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:06f4bd2740e2d92884bded619bc47b8652f747c537f543c463da26b4ecc3b2e9 +size 41563 diff --git a/hyperparameter/c2/ctgan/ctgan-c2-20260504_162240/ctgan_metadata.json b/hyperparameter/c2/ctgan/ctgan-c2-20260504_162240/ctgan_metadata.json new file mode 100644 index 0000000000000000000000000000000000000000..183d627ebc98e89233655ec98c9dcbc528c4c328 --- /dev/null +++ b/hyperparameter/c2/ctgan/ctgan-c2-20260504_162240/ctgan_metadata.json @@ -0,0 +1,32 @@ +{ + "columns": [ + { + "name": "buying", + "type": "categorical" + }, + { + "name": "maint", + "type": "categorical" + }, + { + "name": "doors", + "type": "categorical" + }, + { + "name": "persons", + "type": "categorical" + }, + { + "name": "lug_boot", + "type": "categorical" + }, + { + "name": "safety", + "type": "categorical" + }, + { + "name": "class", + "type": "categorical" + } + ] +} \ No newline at end of file diff --git a/hyperparameter/c2/ctgan/ctgan-c2-20260504_162240/gen_20260504_162321.log b/hyperparameter/c2/ctgan/ctgan-c2-20260504_162240/gen_20260504_162321.log new file mode 100644 index 0000000000000000000000000000000000000000..121e2d02ec34b94bf50346ead1a3d5eb919fd14f --- /dev/null +++ b/hyperparameter/c2/ctgan/ctgan-c2-20260504_162240/gen_20260504_162321.log @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:4e9a8bd298558c0d0c5121a8f68fd97cdcf80e5e349de95203e772ebf7d6a0d7 +size 297 diff --git a/hyperparameter/c2/ctgan/ctgan-c2-20260504_162240/input_snapshot.json b/hyperparameter/c2/ctgan/ctgan-c2-20260504_162240/input_snapshot.json new file mode 100644 index 0000000000000000000000000000000000000000..e70c6b5c1d7c7363c5970bab5156163411d211e7 --- /dev/null +++ b/hyperparameter/c2/ctgan/ctgan-c2-20260504_162240/input_snapshot.json @@ -0,0 +1,36 @@ +{ + "dataset_id": "c2", + "model": "ctgan", + "inputs": { + "train_csv": { + "path": "/data/jialinzhang/SynthesizePipeline-server/DatasetNew/c2/c2-train.csv", + "exists": true, + "size": 42948, + "sha256": "17bc560fa96bd00fb3b526e1e65bc91210b701d0d0a4e8bb9b4c5196cab56def" + }, + "val_csv": { + "path": "/data/jialinzhang/SynthesizePipeline-server/DatasetNew/c2/c2-val.csv", + "exists": true, + "size": 5349, + "sha256": "61e565eca62e65a7dccd9d51039a3170413379e10fc494e25870e7c4294863c9" + }, + "test_csv": { + "path": "/data/jialinzhang/SynthesizePipeline-server/DatasetNew/c2/c2-test.csv", + "exists": true, + "size": 5448, + "sha256": "cbcbb062a1faf5fa44b66c80532baa229e05b94fc42137269761e6c6d84af20a" + }, + "profile_json": { + "path": "/data/jialinzhang/SynthesizePipeline-server/DatasetNew/artifacts/data_core/tabular/c2/c2-dataset_profile.json", + "exists": true, + "size": 3240, + "sha256": "526b7163b2076c93c0bf4638438081ee8a6907065d5b608faa40d1a3dbc2a27b" + }, + "contract_json": { + "path": "/data/jialinzhang/SynthesizePipeline-server/DatasetNew/artifacts/data_core/tabular/c2/c2-dataset_contract_v1.json", + "exists": true, + "size": 3731, + "sha256": "fb595a876054c2ee9b4e10cfe83a5691588de1d25466cbb9d473c18ad3604009" + } + } +} \ No newline at end of file diff --git a/hyperparameter/c2/ctgan/ctgan-c2-20260504_162240/models_100epochs/ctgan_100epochs.pt b/hyperparameter/c2/ctgan/ctgan-c2-20260504_162240/models_100epochs/ctgan_100epochs.pt new file mode 100644 index 0000000000000000000000000000000000000000..185ce48c7b3861004a1ae943ced45428837221e1 --- /dev/null +++ b/hyperparameter/c2/ctgan/ctgan-c2-20260504_162240/models_100epochs/ctgan_100epochs.pt @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:89001f5bc9d51b23712eb3bb71f85ef655ff710707b825e7ae6ac1d586cc395b +size 294947 diff --git a/hyperparameter/c2/ctgan/ctgan-c2-20260504_162240/models_100epochs/train_20260504_162240.log b/hyperparameter/c2/ctgan/ctgan-c2-20260504_162240/models_100epochs/train_20260504_162240.log new file mode 100644 index 0000000000000000000000000000000000000000..296e5914be6b77b0dc29b560dbcc0daa497eab65 --- /dev/null +++ b/hyperparameter/c2/ctgan/ctgan-c2-20260504_162240/models_100epochs/train_20260504_162240.log @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:a80e86a687df24cbf5cef0f767d6091a7728594215f9fdc8bbf3e4c508252b43 +size 20165 diff --git a/hyperparameter/c2/ctgan/ctgan-c2-20260504_162240/public_gate/normalized_schema_snapshot.json b/hyperparameter/c2/ctgan/ctgan-c2-20260504_162240/public_gate/normalized_schema_snapshot.json new file mode 100644 index 0000000000000000000000000000000000000000..689b1d00d96508e44ba40e58dc4560e19afc2b3b --- /dev/null +++ b/hyperparameter/c2/ctgan/ctgan-c2-20260504_162240/public_gate/normalized_schema_snapshot.json @@ -0,0 +1,144 @@ +{ + "dataset_id": "c2", + "target_column": "class", + "task_type": "classification", + "columns": [ + { + "name": "buying", + "role": "feature", + "semantic_type": "categorical", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 4, + "unique_ratio": 0.002894, + "example_values": [ + "vhigh", + "med", + "high", + "low" + ] + } + }, + { + "name": "maint", + "role": "feature", + "semantic_type": "categorical", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 4, + "unique_ratio": 0.002894, + "example_values": [ + "vhigh", + "low", + "med", + "high" + ] + } + }, + { + "name": "doors", + "role": "feature", + "semantic_type": "categorical", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 4, + "unique_ratio": 0.002894, + "example_values": [ + "2", + "5more", + "3", + "4" + ] + } + }, + { + "name": "persons", + "role": "feature", + "semantic_type": "categorical", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 3, + "unique_ratio": 0.002171, + "example_values": [ + "2", + "4", + "more" + ] + } + }, + { + "name": "lug_boot", + "role": "feature", + "semantic_type": "categorical", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 3, + "unique_ratio": 0.002171, + "example_values": [ + "small", + "big", + "med" + ] + } + }, + { + "name": "safety", + "role": "feature", + "semantic_type": "categorical", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 3, + "unique_ratio": 0.002171, + "example_values": [ + "low", + "high", + "med" + ] + } + }, + { + "name": "class", + "role": "target", + "semantic_type": "categorical", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 4, + "unique_ratio": 0.002894, + "example_values": [ + "unacc", + "good", + "acc", + "vgood" + ] + } + } + ] +} \ No newline at end of file diff --git a/hyperparameter/c2/ctgan/ctgan-c2-20260504_162240/public_gate/public_gate_report.json b/hyperparameter/c2/ctgan/ctgan-c2-20260504_162240/public_gate/public_gate_report.json new file mode 100644 index 0000000000000000000000000000000000000000..2e4cdcb2a4e28e40d59b17a83e773f622b7636a5 --- /dev/null +++ b/hyperparameter/c2/ctgan/ctgan-c2-20260504_162240/public_gate/public_gate_report.json @@ -0,0 +1,37 @@ +{ + "dataset_id": "c2", + "status": "pass", + "checks": [ + { + "check_id": "PG001_csv_parse_ok", + "status": "pass" + }, + { + "check_id": "PG002_split_header_consistent", + "status": "pass" + }, + { + "check_id": "PG003_profile_header_match", + "status": "pass" + }, + { + "check_id": "PG004_missing_token_normalized", + "status": "pass" + }, + { + "check_id": "PG005_semantic_type_validated", + "status": "pass" + }, + { + "check_id": "PG006_target_defined_and_valid", + "status": "pass" + } + ], + "target_column": "class", + "task_type": "classification", + "input_splits": { + "train": "/data/jialinzhang/SynthesizePipeline-server/DatasetNew/c2/c2-train.csv", + "val": "/data/jialinzhang/SynthesizePipeline-server/DatasetNew/c2/c2-val.csv", + "test": "/data/jialinzhang/SynthesizePipeline-server/DatasetNew/c2/c2-test.csv" + } +} \ No newline at end of file diff --git a/hyperparameter/c2/ctgan/ctgan-c2-20260504_162240/public_gate/staged_input_manifest.json b/hyperparameter/c2/ctgan/ctgan-c2-20260504_162240/public_gate/staged_input_manifest.json new file mode 100644 index 0000000000000000000000000000000000000000..3e04926e55a12a23c91b123f0fdf38caa78c98fe --- /dev/null +++ b/hyperparameter/c2/ctgan/ctgan-c2-20260504_162240/public_gate/staged_input_manifest.json @@ -0,0 +1,149 @@ +{ + "dataset_id": "c2", + "target_column": "class", + "task_type": "classification", + "train_csv": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/c2/ctgan/ctgan-c2-20260504_162240/staged/public/train.csv", + "val_csv": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/c2/ctgan/ctgan-c2-20260504_162240/staged/public/val.csv", + "test_csv": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/c2/ctgan/ctgan-c2-20260504_162240/staged/public/test.csv", + "features_json": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/c2/ctgan/ctgan-c2-20260504_162240/staged/public/staged_features.json", + "public_gate_report": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/c2/ctgan/ctgan-c2-20260504_162240/public_gate/public_gate_report.json", + "column_schema": [ + { + "name": "buying", + "role": "feature", + "semantic_type": "categorical", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 4, + "unique_ratio": 0.002894, + "example_values": [ + "vhigh", + "med", + "high", + "low" + ] + } + }, + { + "name": "maint", + "role": "feature", + "semantic_type": "categorical", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 4, + "unique_ratio": 0.002894, + "example_values": [ + "vhigh", + "low", + "med", + "high" + ] + } + }, + { + "name": "doors", + "role": "feature", + "semantic_type": "categorical", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 4, + "unique_ratio": 0.002894, + "example_values": [ + "2", + "5more", + "3", + "4" + ] + } + }, + { + "name": "persons", + "role": "feature", + "semantic_type": "categorical", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 3, + "unique_ratio": 0.002171, + "example_values": [ + "2", + "4", + "more" + ] + } + }, + { + "name": "lug_boot", + "role": "feature", + "semantic_type": "categorical", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 3, + "unique_ratio": 0.002171, + "example_values": [ + "small", + "big", + "med" + ] + } + }, + { + "name": "safety", + "role": "feature", + "semantic_type": "categorical", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 3, + "unique_ratio": 0.002171, + "example_values": [ + "low", + "high", + "med" + ] + } + }, + { + "name": "class", + "role": "target", + "semantic_type": "categorical", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 4, + "unique_ratio": 0.002894, + "example_values": [ + "unacc", + "good", + "acc", + "vgood" + ] + } + } + ] +} \ No newline at end of file diff --git a/hyperparameter/c2/ctgan/ctgan-c2-20260504_162240/run_config.json b/hyperparameter/c2/ctgan/ctgan-c2-20260504_162240/run_config.json new file mode 100644 index 0000000000000000000000000000000000000000..7e77ec9db818a984c777289e51c82c6925a25d92 --- /dev/null +++ b/hyperparameter/c2/ctgan/ctgan-c2-20260504_162240/run_config.json @@ -0,0 +1,46 @@ +{ + "schema_version": 1, + "recorded_at": "2026-05-04T16:22:40", + "dataset_id": "c2", + "model": "ctgan", + "work_dir": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/c2/ctgan/ctgan-c2-20260504_162240", + "dataset_source_requested": "new", + "dataset_source_resolved": "new", + "cli_args": { + "model": "ctgan", + "dataset": "c2", + "dataset_source": "new", + "train": true, + "generate": true, + "num_rows": 0, + "epochs": null, + "output_dir": null, + "model_dir": null, + "work_dir": null, + "resume": false, + "no_stats": false + }, + "resolved": { + "num_rows": 1382, + "model_path": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/c2/ctgan/ctgan-c2-20260504_162240/models_100epochs/ctgan_100epochs.pt", + "output_csv": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/c2/ctgan/ctgan-c2-20260504_162240/ctgan-c2-1382-20260504_162321.csv" + }, + "input_artifacts": { + "public_gate_report": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/c2/ctgan/ctgan-c2-20260504_162240/public_gate/public_gate_report.json", + "public_manifest": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/c2/ctgan/ctgan-c2-20260504_162240/public_gate/staged_input_manifest.json", + "model_manifest": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/c2/ctgan/ctgan-c2-20260504_162240/staged/ctgan/model_input_manifest.json", + "train_csv": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/c2/ctgan/ctgan-c2-20260504_162240/staged/public/train.csv", + "features_json": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/c2/ctgan/ctgan-c2-20260504_162240/staged/public/staged_features.json", + "target_column": "class", + "task_type": "classification" + }, + "env_overrides": { + "BENCHMARK_CTGAN_GPUS": "device=3", + "CTGAN_BATCH_SIZE": "80", + "CTGAN_DEFAULT_EPOCHS": "100", + "CTGAN_DISCRIMINATOR_DIMS": "32,32", + "CTGAN_EMBEDDING_DIM": "16", + "CTGAN_GENERATOR_DIMS": "32,32", + "CTGAN_PAC": "5" + } +} \ No newline at end of file diff --git a/hyperparameter/c2/ctgan/ctgan-c2-20260504_162240/runtime_result.json b/hyperparameter/c2/ctgan/ctgan-c2-20260504_162240/runtime_result.json new file mode 100644 index 0000000000000000000000000000000000000000..c943130baae43b3a0a41eb9a2f1e7079a453a38e --- /dev/null +++ b/hyperparameter/c2/ctgan/ctgan-c2-20260504_162240/runtime_result.json @@ -0,0 +1,27 @@ +{ + "dataset_id": "c2", + "model": "ctgan", + "run_id": "ctgan-c2-20260504_162240", + "public_gate_status": "pass", + "adapter_ready_status": "pass", + "train_status": "success", + "generate_status": "success", + "reason_code": null, + "reason_detail": null, + "artifacts": { + "synthetic_csv": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/c2/ctgan/ctgan-c2-20260504_162240/ctgan-c2-1382-20260504_162321.csv", + "model_path": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/c2/ctgan/ctgan-c2-20260504_162240/models_100epochs/ctgan_100epochs.pt" + }, + "timings": { + "train": { + "started_at": "2026-05-04T16:22:40", + "ended_at": "2026-05-04T16:23:21", + "duration_sec": 41.673 + }, + "generate": { + "started_at": "2026-05-04T16:23:21", + "ended_at": "2026-05-04T16:23:27", + "duration_sec": 5.382 + } + } +} \ No newline at end of file diff --git a/hyperparameter/c2/ctgan/ctgan-c2-20260504_162240/staged/ctgan/adapter_report.json b/hyperparameter/c2/ctgan/ctgan-c2-20260504_162240/staged/ctgan/adapter_report.json new file mode 100644 index 0000000000000000000000000000000000000000..a84ffcef8e6e4db6b0ae03f2de9ce8b993bf33d0 --- /dev/null +++ b/hyperparameter/c2/ctgan/ctgan-c2-20260504_162240/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-Benchmark-trainonly-v1/c2/ctgan/ctgan-c2-20260504_162240/staged/ctgan/model_input_manifest.json" +} \ No newline at end of file diff --git a/hyperparameter/c2/ctgan/ctgan-c2-20260504_162240/staged/ctgan/adapter_transforms_applied.json b/hyperparameter/c2/ctgan/ctgan-c2-20260504_162240/staged/ctgan/adapter_transforms_applied.json new file mode 100644 index 0000000000000000000000000000000000000000..0637a088a01e8ddab3bf3fa98dbe804cbde1a0dc --- /dev/null +++ b/hyperparameter/c2/ctgan/ctgan-c2-20260504_162240/staged/ctgan/adapter_transforms_applied.json @@ -0,0 +1 @@ +[] \ No newline at end of file diff --git a/hyperparameter/c2/ctgan/ctgan-c2-20260504_162240/staged/ctgan/model_input_manifest.json b/hyperparameter/c2/ctgan/ctgan-c2-20260504_162240/staged/ctgan/model_input_manifest.json new file mode 100644 index 0000000000000000000000000000000000000000..b8bed5508038be911353f57dfc64f5c3fd221056 --- /dev/null +++ b/hyperparameter/c2/ctgan/ctgan-c2-20260504_162240/staged/ctgan/model_input_manifest.json @@ -0,0 +1,151 @@ +{ + "dataset_id": "c2", + "model": "ctgan", + "target_column": "class", + "task_type": "classification", + "column_schema": [ + { + "name": "buying", + "role": "feature", + "semantic_type": "categorical", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 4, + "unique_ratio": 0.002894, + "example_values": [ + "vhigh", + "med", + "high", + "low" + ] + } + }, + { + "name": "maint", + "role": "feature", + "semantic_type": "categorical", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 4, + "unique_ratio": 0.002894, + "example_values": [ + "vhigh", + "low", + "med", + "high" + ] + } + }, + { + "name": "doors", + "role": "feature", + "semantic_type": "categorical", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 4, + "unique_ratio": 0.002894, + "example_values": [ + "2", + "5more", + "3", + "4" + ] + } + }, + { + "name": "persons", + "role": "feature", + "semantic_type": "categorical", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 3, + "unique_ratio": 0.002171, + "example_values": [ + "2", + "4", + "more" + ] + } + }, + { + "name": "lug_boot", + "role": "feature", + "semantic_type": "categorical", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 3, + "unique_ratio": 0.002171, + "example_values": [ + "small", + "big", + "med" + ] + } + }, + { + "name": "safety", + "role": "feature", + "semantic_type": "categorical", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 3, + "unique_ratio": 0.002171, + "example_values": [ + "low", + "high", + "med" + ] + } + }, + { + "name": "class", + "role": "target", + "semantic_type": "categorical", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 4, + "unique_ratio": 0.002894, + "example_values": [ + "unacc", + "good", + "acc", + "vgood" + ] + } + } + ], + "public_manifest": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/c2/ctgan/ctgan-c2-20260504_162240/public_gate/staged_input_manifest.json", + "train_csv": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/c2/ctgan/ctgan-c2-20260504_162240/staged/public/train.csv", + "val_csv": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/c2/ctgan/ctgan-c2-20260504_162240/staged/public/val.csv", + "test_csv": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/c2/ctgan/ctgan-c2-20260504_162240/staged/public/test.csv", + "features_json": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/c2/ctgan/ctgan-c2-20260504_162240/staged/public/staged_features.json", + "public_gate_report": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/c2/ctgan/ctgan-c2-20260504_162240/public_gate/public_gate_report.json" +} \ No newline at end of file diff --git a/hyperparameter/c2/ctgan/ctgan-c2-20260504_162240/staged/public/staged_features.json b/hyperparameter/c2/ctgan/ctgan-c2-20260504_162240/staged/public/staged_features.json new file mode 100644 index 0000000000000000000000000000000000000000..61783861dd5de501592f76acb0469cf3f3b2622a --- /dev/null +++ b/hyperparameter/c2/ctgan/ctgan-c2-20260504_162240/staged/public/staged_features.json @@ -0,0 +1,37 @@ +[ + { + "feature_name": "buying", + "data_type": "categorical", + "is_target": false + }, + { + "feature_name": "maint", + "data_type": "categorical", + "is_target": false + }, + { + "feature_name": "doors", + "data_type": "categorical", + "is_target": false + }, + { + "feature_name": "persons", + "data_type": "categorical", + "is_target": false + }, + { + "feature_name": "lug_boot", + "data_type": "categorical", + "is_target": false + }, + { + "feature_name": "safety", + "data_type": "categorical", + "is_target": false + }, + { + "feature_name": "class", + "data_type": "categorical", + "is_target": true + } +] \ No newline at end of file diff --git a/hyperparameter/c2/ctgan/ctgan-c2-20260504_162240/staged/public/test.csv b/hyperparameter/c2/ctgan/ctgan-c2-20260504_162240/staged/public/test.csv new file mode 100644 index 0000000000000000000000000000000000000000..392a0d7189a34d8f13ecf20a99d64b03230d517c --- /dev/null +++ b/hyperparameter/c2/ctgan/ctgan-c2-20260504_162240/staged/public/test.csv @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:b48114a7d0bc5bd9a07920f903c8d4aba8bf98bf2a66a050da03588b0245ca73 +size 5273 diff --git a/hyperparameter/c2/ctgan/ctgan-c2-20260504_162240/staged/public/train.csv b/hyperparameter/c2/ctgan/ctgan-c2-20260504_162240/staged/public/train.csv new file mode 100644 index 0000000000000000000000000000000000000000..da4f4d55134eebc0e51157d0d467536371db1484 --- /dev/null +++ b/hyperparameter/c2/ctgan/ctgan-c2-20260504_162240/staged/public/train.csv @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:4aed00c2c2b3f88a55a7ebff31b2e1b5e0e32fb0a7267e0b9d2779cd23e434dd +size 41565 diff --git a/hyperparameter/c2/ctgan/ctgan-c2-20260504_162240/staged/public/val.csv b/hyperparameter/c2/ctgan/ctgan-c2-20260504_162240/staged/public/val.csv new file mode 100644 index 0000000000000000000000000000000000000000..af8caf7ee42524188534a3daf32996dc491952d9 --- /dev/null +++ b/hyperparameter/c2/ctgan/ctgan-c2-20260504_162240/staged/public/val.csv @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:26e90c1170a57a14c05832ac88027722b1f3848f9662c7c09ef7c93dcba4cc01 +size 5176 diff --git a/hyperparameter/c2/ctgan/ctgan-c2-20260504_162339/_ctgan_generate.py b/hyperparameter/c2/ctgan/ctgan-c2-20260504_162339/_ctgan_generate.py new file mode 100644 index 0000000000000000000000000000000000000000..ff855eb274e019fb91b6476423543290aaf540c3 --- /dev/null +++ b/hyperparameter/c2/ctgan/ctgan-c2-20260504_162339/_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-Benchmark-trainonly-v1/c2/ctgan/ctgan-c2-20260504_162339/models_200epochs/ctgan_200epochs.pt") +total = 1382 +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-Benchmark-trainonly-v1/c2/ctgan/ctgan-c2-20260504_162339/ctgan-c2-1382-20260504_162437.csv", index=False) +print("[CTGAN] Generated", total, "rows in", len(parts), "chunks ->", "/work/output-Benchmark-trainonly-v1/c2/ctgan/ctgan-c2-20260504_162339/ctgan-c2-1382-20260504_162437.csv") \ No newline at end of file diff --git a/hyperparameter/c2/ctgan/ctgan-c2-20260504_162339/_ctgan_train.py b/hyperparameter/c2/ctgan/ctgan-c2-20260504_162339/_ctgan_train.py new file mode 100644 index 0000000000000000000000000000000000000000..e0dd700a1ac2533023d1f50e947dbe32044a8098 --- /dev/null +++ b/hyperparameter/c2/ctgan/ctgan-c2-20260504_162339/_ctgan_train.py @@ -0,0 +1,17 @@ +import pandas as pd +from ctgan.synthesizers.ctgan import CTGAN + +data = pd.read_csv("/work/output-Benchmark-trainonly-v1/c2/ctgan/ctgan-c2-20260504_162339/staged/public/train.csv") +discrete_columns = ['buying', 'maint', 'doors', 'persons', 'lug_boot', 'safety', 'class'] +model = CTGAN( + embedding_dim=32, + generator_dim=(64, 64), + discriminator_dim=(64, 64), + batch_size=100, + pac=10, + epochs=200, + verbose=True, +) +model.fit(data, discrete_columns) +model.save("/work/output-Benchmark-trainonly-v1/c2/ctgan/ctgan-c2-20260504_162339/models_200epochs/ctgan_200epochs.pt") +print("[CTGAN] Saved model ->", "/work/output-Benchmark-trainonly-v1/c2/ctgan/ctgan-c2-20260504_162339/models_200epochs/ctgan_200epochs.pt") \ No newline at end of file diff --git a/hyperparameter/c2/ctgan/ctgan-c2-20260504_162339/ctgan-c2-1382-20260504_162437.csv b/hyperparameter/c2/ctgan/ctgan-c2-20260504_162339/ctgan-c2-1382-20260504_162437.csv new file mode 100644 index 0000000000000000000000000000000000000000..475fb7eee9738c341bde5529d780b2427ba4b094 --- /dev/null +++ b/hyperparameter/c2/ctgan/ctgan-c2-20260504_162339/ctgan-c2-1382-20260504_162437.csv @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:dcd29852524ef13d0009da75adaf69c0d09dc640b8fbb13ba387045198c5c725 +size 40940 diff --git a/hyperparameter/c2/ctgan/ctgan-c2-20260504_162339/ctgan_metadata.json b/hyperparameter/c2/ctgan/ctgan-c2-20260504_162339/ctgan_metadata.json new file mode 100644 index 0000000000000000000000000000000000000000..183d627ebc98e89233655ec98c9dcbc528c4c328 --- /dev/null +++ b/hyperparameter/c2/ctgan/ctgan-c2-20260504_162339/ctgan_metadata.json @@ -0,0 +1,32 @@ +{ + "columns": [ + { + "name": "buying", + "type": "categorical" + }, + { + "name": "maint", + "type": "categorical" + }, + { + "name": "doors", + "type": "categorical" + }, + { + "name": "persons", + "type": "categorical" + }, + { + "name": "lug_boot", + "type": "categorical" + }, + { + "name": "safety", + "type": "categorical" + }, + { + "name": "class", + "type": "categorical" + } + ] +} \ No newline at end of file diff --git a/hyperparameter/c2/ctgan/ctgan-c2-20260504_162339/gen_20260504_162437.log b/hyperparameter/c2/ctgan/ctgan-c2-20260504_162339/gen_20260504_162437.log new file mode 100644 index 0000000000000000000000000000000000000000..fc73a61c7203640af7a492332124986abd5d10c0 --- /dev/null +++ b/hyperparameter/c2/ctgan/ctgan-c2-20260504_162339/gen_20260504_162437.log @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:fa41d337e65206a8c960582d8745c3fa02cfd860fe74c08c6c3f3d519666af42 +size 297 diff --git a/hyperparameter/c2/ctgan/ctgan-c2-20260504_162339/input_snapshot.json b/hyperparameter/c2/ctgan/ctgan-c2-20260504_162339/input_snapshot.json new file mode 100644 index 0000000000000000000000000000000000000000..e70c6b5c1d7c7363c5970bab5156163411d211e7 --- /dev/null +++ b/hyperparameter/c2/ctgan/ctgan-c2-20260504_162339/input_snapshot.json @@ -0,0 +1,36 @@ +{ + "dataset_id": "c2", + "model": "ctgan", + "inputs": { + "train_csv": { + "path": "/data/jialinzhang/SynthesizePipeline-server/DatasetNew/c2/c2-train.csv", + "exists": true, + "size": 42948, + "sha256": "17bc560fa96bd00fb3b526e1e65bc91210b701d0d0a4e8bb9b4c5196cab56def" + }, + "val_csv": { + "path": "/data/jialinzhang/SynthesizePipeline-server/DatasetNew/c2/c2-val.csv", + "exists": true, + "size": 5349, + "sha256": "61e565eca62e65a7dccd9d51039a3170413379e10fc494e25870e7c4294863c9" + }, + "test_csv": { + "path": "/data/jialinzhang/SynthesizePipeline-server/DatasetNew/c2/c2-test.csv", + "exists": true, + "size": 5448, + "sha256": "cbcbb062a1faf5fa44b66c80532baa229e05b94fc42137269761e6c6d84af20a" + }, + "profile_json": { + "path": "/data/jialinzhang/SynthesizePipeline-server/DatasetNew/artifacts/data_core/tabular/c2/c2-dataset_profile.json", + "exists": true, + "size": 3240, + "sha256": "526b7163b2076c93c0bf4638438081ee8a6907065d5b608faa40d1a3dbc2a27b" + }, + "contract_json": { + "path": "/data/jialinzhang/SynthesizePipeline-server/DatasetNew/artifacts/data_core/tabular/c2/c2-dataset_contract_v1.json", + "exists": true, + "size": 3731, + "sha256": "fb595a876054c2ee9b4e10cfe83a5691588de1d25466cbb9d473c18ad3604009" + } + } +} \ No newline at end of file diff --git a/hyperparameter/c2/ctgan/ctgan-c2-20260504_162339/models_200epochs/ctgan_200epochs.pt b/hyperparameter/c2/ctgan/ctgan-c2-20260504_162339/models_200epochs/ctgan_200epochs.pt new file mode 100644 index 0000000000000000000000000000000000000000..c1729bc2cff9e82169bbe4211dae27af200fe92d --- /dev/null +++ b/hyperparameter/c2/ctgan/ctgan-c2-20260504_162339/models_200epochs/ctgan_200epochs.pt @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:3e731fdc58e37596134fe5bcee815a30e38f087c1aa3dc2944f679c1f1549cdb +size 338275 diff --git a/hyperparameter/c2/ctgan/ctgan-c2-20260504_162339/models_200epochs/train_20260504_162339.log b/hyperparameter/c2/ctgan/ctgan-c2-20260504_162339/models_200epochs/train_20260504_162339.log new file mode 100644 index 0000000000000000000000000000000000000000..80e17b806b94f465ac519b8881a2409fcf01ee0b --- /dev/null +++ b/hyperparameter/c2/ctgan/ctgan-c2-20260504_162339/models_200epochs/train_20260504_162339.log @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:94b3afa2766398447e2c41d92e271ce3a826d7c72cc942e24d400d387a03beb0 +size 38648 diff --git a/hyperparameter/c2/ctgan/ctgan-c2-20260504_162339/public_gate/normalized_schema_snapshot.json b/hyperparameter/c2/ctgan/ctgan-c2-20260504_162339/public_gate/normalized_schema_snapshot.json new file mode 100644 index 0000000000000000000000000000000000000000..689b1d00d96508e44ba40e58dc4560e19afc2b3b --- /dev/null +++ b/hyperparameter/c2/ctgan/ctgan-c2-20260504_162339/public_gate/normalized_schema_snapshot.json @@ -0,0 +1,144 @@ +{ + "dataset_id": "c2", + "target_column": "class", + "task_type": "classification", + "columns": [ + { + "name": "buying", + "role": "feature", + "semantic_type": "categorical", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 4, + "unique_ratio": 0.002894, + "example_values": [ + "vhigh", + "med", + "high", + "low" + ] + } + }, + { + "name": "maint", + "role": "feature", + "semantic_type": "categorical", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 4, + "unique_ratio": 0.002894, + "example_values": [ + "vhigh", + "low", + "med", + "high" + ] + } + }, + { + "name": "doors", + "role": "feature", + "semantic_type": "categorical", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 4, + "unique_ratio": 0.002894, + "example_values": [ + "2", + "5more", + "3", + "4" + ] + } + }, + { + "name": "persons", + "role": "feature", + "semantic_type": "categorical", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 3, + "unique_ratio": 0.002171, + "example_values": [ + "2", + "4", + "more" + ] + } + }, + { + "name": "lug_boot", + "role": "feature", + "semantic_type": "categorical", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 3, + "unique_ratio": 0.002171, + "example_values": [ + "small", + "big", + "med" + ] + } + }, + { + "name": "safety", + "role": "feature", + "semantic_type": "categorical", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 3, + "unique_ratio": 0.002171, + "example_values": [ + "low", + "high", + "med" + ] + } + }, + { + "name": "class", + "role": "target", + "semantic_type": "categorical", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 4, + "unique_ratio": 0.002894, + "example_values": [ + "unacc", + "good", + "acc", + "vgood" + ] + } + } + ] +} \ No newline at end of file diff --git a/hyperparameter/c2/ctgan/ctgan-c2-20260504_162339/public_gate/public_gate_report.json b/hyperparameter/c2/ctgan/ctgan-c2-20260504_162339/public_gate/public_gate_report.json new file mode 100644 index 0000000000000000000000000000000000000000..2e4cdcb2a4e28e40d59b17a83e773f622b7636a5 --- /dev/null +++ b/hyperparameter/c2/ctgan/ctgan-c2-20260504_162339/public_gate/public_gate_report.json @@ -0,0 +1,37 @@ +{ + "dataset_id": "c2", + "status": "pass", + "checks": [ + { + "check_id": "PG001_csv_parse_ok", + "status": "pass" + }, + { + "check_id": "PG002_split_header_consistent", + "status": "pass" + }, + { + "check_id": "PG003_profile_header_match", + "status": "pass" + }, + { + "check_id": "PG004_missing_token_normalized", + "status": "pass" + }, + { + "check_id": "PG005_semantic_type_validated", + "status": "pass" + }, + { + "check_id": "PG006_target_defined_and_valid", + "status": "pass" + } + ], + "target_column": "class", + "task_type": "classification", + "input_splits": { + "train": "/data/jialinzhang/SynthesizePipeline-server/DatasetNew/c2/c2-train.csv", + "val": "/data/jialinzhang/SynthesizePipeline-server/DatasetNew/c2/c2-val.csv", + "test": "/data/jialinzhang/SynthesizePipeline-server/DatasetNew/c2/c2-test.csv" + } +} \ No newline at end of file diff --git a/hyperparameter/c2/ctgan/ctgan-c2-20260504_162339/public_gate/staged_input_manifest.json b/hyperparameter/c2/ctgan/ctgan-c2-20260504_162339/public_gate/staged_input_manifest.json new file mode 100644 index 0000000000000000000000000000000000000000..ed2127908350c287e7b5c03a577bcba2ffe54ddb --- /dev/null +++ b/hyperparameter/c2/ctgan/ctgan-c2-20260504_162339/public_gate/staged_input_manifest.json @@ -0,0 +1,149 @@ +{ + "dataset_id": "c2", + "target_column": "class", + "task_type": "classification", + "train_csv": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/c2/ctgan/ctgan-c2-20260504_162339/staged/public/train.csv", + "val_csv": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/c2/ctgan/ctgan-c2-20260504_162339/staged/public/val.csv", + "test_csv": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/c2/ctgan/ctgan-c2-20260504_162339/staged/public/test.csv", + "features_json": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/c2/ctgan/ctgan-c2-20260504_162339/staged/public/staged_features.json", + "public_gate_report": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/c2/ctgan/ctgan-c2-20260504_162339/public_gate/public_gate_report.json", + "column_schema": [ + { + "name": "buying", + "role": "feature", + "semantic_type": "categorical", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 4, + "unique_ratio": 0.002894, + "example_values": [ + "vhigh", + "med", + "high", + "low" + ] + } + }, + { + "name": "maint", + "role": "feature", + "semantic_type": "categorical", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 4, + "unique_ratio": 0.002894, + "example_values": [ + "vhigh", + "low", + "med", + "high" + ] + } + }, + { + "name": "doors", + "role": "feature", + "semantic_type": "categorical", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 4, + "unique_ratio": 0.002894, + "example_values": [ + "2", + "5more", + "3", + "4" + ] + } + }, + { + "name": "persons", + "role": "feature", + "semantic_type": "categorical", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 3, + "unique_ratio": 0.002171, + "example_values": [ + "2", + "4", + "more" + ] + } + }, + { + "name": "lug_boot", + "role": "feature", + "semantic_type": "categorical", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 3, + "unique_ratio": 0.002171, + "example_values": [ + "small", + "big", + "med" + ] + } + }, + { + "name": "safety", + "role": "feature", + "semantic_type": "categorical", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 3, + "unique_ratio": 0.002171, + "example_values": [ + "low", + "high", + "med" + ] + } + }, + { + "name": "class", + "role": "target", + "semantic_type": "categorical", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 4, + "unique_ratio": 0.002894, + "example_values": [ + "unacc", + "good", + "acc", + "vgood" + ] + } + } + ] +} \ No newline at end of file diff --git a/hyperparameter/c2/ctgan/ctgan-c2-20260504_162339/run_config.json b/hyperparameter/c2/ctgan/ctgan-c2-20260504_162339/run_config.json new file mode 100644 index 0000000000000000000000000000000000000000..1c6884477d3f20bea1a3d689207b894b3a522c28 --- /dev/null +++ b/hyperparameter/c2/ctgan/ctgan-c2-20260504_162339/run_config.json @@ -0,0 +1,46 @@ +{ + "schema_version": 1, + "recorded_at": "2026-05-04T16:23:39", + "dataset_id": "c2", + "model": "ctgan", + "work_dir": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/c2/ctgan/ctgan-c2-20260504_162339", + "dataset_source_requested": "new", + "dataset_source_resolved": "new", + "cli_args": { + "model": "ctgan", + "dataset": "c2", + "dataset_source": "new", + "train": true, + "generate": true, + "num_rows": 0, + "epochs": null, + "output_dir": null, + "model_dir": null, + "work_dir": null, + "resume": false, + "no_stats": false + }, + "resolved": { + "num_rows": 1382, + "model_path": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/c2/ctgan/ctgan-c2-20260504_162339/models_200epochs/ctgan_200epochs.pt", + "output_csv": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/c2/ctgan/ctgan-c2-20260504_162339/ctgan-c2-1382-20260504_162437.csv" + }, + "input_artifacts": { + "public_gate_report": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/c2/ctgan/ctgan-c2-20260504_162339/public_gate/public_gate_report.json", + "public_manifest": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/c2/ctgan/ctgan-c2-20260504_162339/public_gate/staged_input_manifest.json", + "model_manifest": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/c2/ctgan/ctgan-c2-20260504_162339/staged/ctgan/model_input_manifest.json", + "train_csv": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/c2/ctgan/ctgan-c2-20260504_162339/staged/public/train.csv", + "features_json": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/c2/ctgan/ctgan-c2-20260504_162339/staged/public/staged_features.json", + "target_column": "class", + "task_type": "classification" + }, + "env_overrides": { + "BENCHMARK_CTGAN_GPUS": "device=3", + "CTGAN_BATCH_SIZE": "100", + "CTGAN_DEFAULT_EPOCHS": "200", + "CTGAN_DISCRIMINATOR_DIMS": "64,64", + "CTGAN_EMBEDDING_DIM": "32", + "CTGAN_GENERATOR_DIMS": "64,64", + "CTGAN_PAC": "10" + } +} \ No newline at end of file diff --git a/hyperparameter/c2/ctgan/ctgan-c2-20260504_162339/runtime_result.json b/hyperparameter/c2/ctgan/ctgan-c2-20260504_162339/runtime_result.json new file mode 100644 index 0000000000000000000000000000000000000000..7b60a25f52ff5134761945aa34333c69f75663d0 --- /dev/null +++ b/hyperparameter/c2/ctgan/ctgan-c2-20260504_162339/runtime_result.json @@ -0,0 +1,27 @@ +{ + "dataset_id": "c2", + "model": "ctgan", + "run_id": "ctgan-c2-20260504_162339", + "public_gate_status": "pass", + "adapter_ready_status": "pass", + "train_status": "success", + "generate_status": "success", + "reason_code": null, + "reason_detail": null, + "artifacts": { + "synthetic_csv": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/c2/ctgan/ctgan-c2-20260504_162339/ctgan-c2-1382-20260504_162437.csv", + "model_path": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/c2/ctgan/ctgan-c2-20260504_162339/models_200epochs/ctgan_200epochs.pt" + }, + "timings": { + "train": { + "started_at": "2026-05-04T16:23:39", + "ended_at": "2026-05-04T16:24:37", + "duration_sec": 57.631 + }, + "generate": { + "started_at": "2026-05-04T16:24:37", + "ended_at": "2026-05-04T16:24:42", + "duration_sec": 5.235 + } + } +} \ No newline at end of file diff --git a/hyperparameter/c2/ctgan/ctgan-c2-20260504_162339/staged/ctgan/adapter_report.json b/hyperparameter/c2/ctgan/ctgan-c2-20260504_162339/staged/ctgan/adapter_report.json new file mode 100644 index 0000000000000000000000000000000000000000..4c71e56b64844e27c80124db363f5c163b8af547 --- /dev/null +++ b/hyperparameter/c2/ctgan/ctgan-c2-20260504_162339/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-Benchmark-trainonly-v1/c2/ctgan/ctgan-c2-20260504_162339/staged/ctgan/model_input_manifest.json" +} \ No newline at end of file diff --git a/hyperparameter/c2/ctgan/ctgan-c2-20260504_162339/staged/ctgan/adapter_transforms_applied.json b/hyperparameter/c2/ctgan/ctgan-c2-20260504_162339/staged/ctgan/adapter_transforms_applied.json new file mode 100644 index 0000000000000000000000000000000000000000..0637a088a01e8ddab3bf3fa98dbe804cbde1a0dc --- /dev/null +++ b/hyperparameter/c2/ctgan/ctgan-c2-20260504_162339/staged/ctgan/adapter_transforms_applied.json @@ -0,0 +1 @@ +[] \ No newline at end of file diff --git a/hyperparameter/c2/ctgan/ctgan-c2-20260504_162339/staged/ctgan/model_input_manifest.json b/hyperparameter/c2/ctgan/ctgan-c2-20260504_162339/staged/ctgan/model_input_manifest.json new file mode 100644 index 0000000000000000000000000000000000000000..578cbcb2eaf976baa0f04ce2aaf4ef92ca0996d1 --- /dev/null +++ b/hyperparameter/c2/ctgan/ctgan-c2-20260504_162339/staged/ctgan/model_input_manifest.json @@ -0,0 +1,151 @@ +{ + "dataset_id": "c2", + "model": "ctgan", + "target_column": "class", + "task_type": "classification", + "column_schema": [ + { + "name": "buying", + "role": "feature", + "semantic_type": "categorical", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 4, + "unique_ratio": 0.002894, + "example_values": [ + "vhigh", + "med", + "high", + "low" + ] + } + }, + { + "name": "maint", + "role": "feature", + "semantic_type": "categorical", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 4, + "unique_ratio": 0.002894, + "example_values": [ + "vhigh", + "low", + "med", + "high" + ] + } + }, + { + "name": "doors", + "role": "feature", + "semantic_type": "categorical", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 4, + "unique_ratio": 0.002894, + "example_values": [ + "2", + "5more", + "3", + "4" + ] + } + }, + { + "name": "persons", + "role": "feature", + "semantic_type": "categorical", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 3, + "unique_ratio": 0.002171, + "example_values": [ + "2", + "4", + "more" + ] + } + }, + { + "name": "lug_boot", + "role": "feature", + "semantic_type": "categorical", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 3, + "unique_ratio": 0.002171, + "example_values": [ + "small", + "big", + "med" + ] + } + }, + { + "name": "safety", + "role": "feature", + "semantic_type": "categorical", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 3, + "unique_ratio": 0.002171, + "example_values": [ + "low", + "high", + "med" + ] + } + }, + { + "name": "class", + "role": "target", + "semantic_type": "categorical", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 4, + "unique_ratio": 0.002894, + "example_values": [ + "unacc", + "good", + "acc", + "vgood" + ] + } + } + ], + "public_manifest": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/c2/ctgan/ctgan-c2-20260504_162339/public_gate/staged_input_manifest.json", + "train_csv": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/c2/ctgan/ctgan-c2-20260504_162339/staged/public/train.csv", + "val_csv": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/c2/ctgan/ctgan-c2-20260504_162339/staged/public/val.csv", + "test_csv": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/c2/ctgan/ctgan-c2-20260504_162339/staged/public/test.csv", + "features_json": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/c2/ctgan/ctgan-c2-20260504_162339/staged/public/staged_features.json", + "public_gate_report": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/c2/ctgan/ctgan-c2-20260504_162339/public_gate/public_gate_report.json" +} \ No newline at end of file diff --git a/hyperparameter/c2/ctgan/ctgan-c2-20260504_162339/staged/public/staged_features.json b/hyperparameter/c2/ctgan/ctgan-c2-20260504_162339/staged/public/staged_features.json new file mode 100644 index 0000000000000000000000000000000000000000..61783861dd5de501592f76acb0469cf3f3b2622a --- /dev/null +++ b/hyperparameter/c2/ctgan/ctgan-c2-20260504_162339/staged/public/staged_features.json @@ -0,0 +1,37 @@ +[ + { + "feature_name": "buying", + "data_type": "categorical", + "is_target": false + }, + { + "feature_name": "maint", + "data_type": "categorical", + "is_target": false + }, + { + "feature_name": "doors", + "data_type": "categorical", + "is_target": false + }, + { + "feature_name": "persons", + "data_type": "categorical", + "is_target": false + }, + { + "feature_name": "lug_boot", + "data_type": "categorical", + "is_target": false + }, + { + "feature_name": "safety", + "data_type": "categorical", + "is_target": false + }, + { + "feature_name": "class", + "data_type": "categorical", + "is_target": true + } +] \ No newline at end of file diff --git a/hyperparameter/c2/ctgan/ctgan-c2-20260504_162339/staged/public/test.csv b/hyperparameter/c2/ctgan/ctgan-c2-20260504_162339/staged/public/test.csv new file mode 100644 index 0000000000000000000000000000000000000000..392a0d7189a34d8f13ecf20a99d64b03230d517c --- /dev/null +++ b/hyperparameter/c2/ctgan/ctgan-c2-20260504_162339/staged/public/test.csv @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:b48114a7d0bc5bd9a07920f903c8d4aba8bf98bf2a66a050da03588b0245ca73 +size 5273 diff --git a/hyperparameter/c2/ctgan/ctgan-c2-20260504_162339/staged/public/train.csv b/hyperparameter/c2/ctgan/ctgan-c2-20260504_162339/staged/public/train.csv new file mode 100644 index 0000000000000000000000000000000000000000..da4f4d55134eebc0e51157d0d467536371db1484 --- /dev/null +++ b/hyperparameter/c2/ctgan/ctgan-c2-20260504_162339/staged/public/train.csv @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:4aed00c2c2b3f88a55a7ebff31b2e1b5e0e32fb0a7267e0b9d2779cd23e434dd +size 41565 diff --git a/hyperparameter/c2/ctgan/ctgan-c2-20260504_162339/staged/public/val.csv b/hyperparameter/c2/ctgan/ctgan-c2-20260504_162339/staged/public/val.csv new file mode 100644 index 0000000000000000000000000000000000000000..af8caf7ee42524188534a3daf32996dc491952d9 --- /dev/null +++ b/hyperparameter/c2/ctgan/ctgan-c2-20260504_162339/staged/public/val.csv @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:26e90c1170a57a14c05832ac88027722b1f3848f9662c7c09ef7c93dcba4cc01 +size 5176 diff --git a/hyperparameter/c2/forestdiffusion/forest-c2-20260505_044951/_fd_X_host.npy b/hyperparameter/c2/forestdiffusion/forest-c2-20260505_044951/_fd_X_host.npy new file mode 100644 index 0000000000000000000000000000000000000000..2c631eb05814d7aa116816e9799b9c52f8c0e566 --- /dev/null +++ b/hyperparameter/c2/forestdiffusion/forest-c2-20260505_044951/_fd_X_host.npy @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:260745c93bbaaa167bd761bd653a194f7b25b477b3929a24e343741a3c4fa280 +size 38824 diff --git a/hyperparameter/c2/forestdiffusion/forest-c2-20260505_044951/_fd_gen.py b/hyperparameter/c2/forestdiffusion/forest-c2-20260505_044951/_fd_gen.py new file mode 100644 index 0000000000000000000000000000000000000000..17539111eb302e45301a2e3119e1107630e1ed23 --- /dev/null +++ b/hyperparameter/c2/forestdiffusion/forest-c2-20260505_044951/_fd_gen.py @@ -0,0 +1,8 @@ + +import joblib, pandas as pd +m, meta = joblib.load(r'/work/output-Benchmark-trainonly-v1/c2/forestdiffusion/forest-c2-20260505_044951/forestdiffusion_model.joblib') +# generate:batch_size 为样本数 +arr = m.generate(batch_size=int(1382)) +df = pd.DataFrame(arr, columns=meta["column_names"]) +df.to_csv(r'/work/output-Benchmark-trainonly-v1/c2/forestdiffusion/forest-c2-20260505_044951/forest-c2-1382-20260505_045141.csv', index=False) +print("saved", len(df)) diff --git a/hyperparameter/c2/forestdiffusion/forest-c2-20260505_044951/_fd_meta_host.json b/hyperparameter/c2/forestdiffusion/forest-c2-20260505_044951/_fd_meta_host.json new file mode 100644 index 0000000000000000000000000000000000000000..be467ac019d08a03e8ba5c0d436f59170db78786 --- /dev/null +++ b/hyperparameter/c2/forestdiffusion/forest-c2-20260505_044951/_fd_meta_host.json @@ -0,0 +1 @@ +{"column_names": ["buying", "maint", "doors", "persons", "lug_boot", "safety", "class"], "cat_indexes": [0, 1, 2, 3, 4, 5]} \ No newline at end of file diff --git a/hyperparameter/c2/forestdiffusion/forest-c2-20260505_044951/_fd_train.py b/hyperparameter/c2/forestdiffusion/forest-c2-20260505_044951/_fd_train.py new file mode 100644 index 0000000000000000000000000000000000000000..bd9da13f95fdf53491b4aceb8609a2877543692a --- /dev/null +++ b/hyperparameter/c2/forestdiffusion/forest-c2-20260505_044951/_fd_train.py @@ -0,0 +1,36 @@ + +import os, shutil, json +with open('/tmp/pgrep', 'w') as _f: + _f.write("#!/usr/bin/env python3\n") + _f.write("import subprocess, sys\n") + _f.write("ppid = sys.argv[-1]\n") + _f.write("out = subprocess.check_output(['ps', '-o', 'pid=', '--ppid', str(ppid)], text=True)\n") + _f.write("print(out, end='')\n") +os.chmod('/tmp/pgrep', 0o755) +os.environ['PATH'] = '/tmp:' + os.environ.get('PATH', '') +shutil.copy(r'/work/output-Benchmark-trainonly-v1/c2/forestdiffusion/forest-c2-20260505_044951/_fd_X_host.npy', '/tmp/fd_X.npy') +with open(r'/work/output-Benchmark-trainonly-v1/c2/forestdiffusion/forest-c2-20260505_044951/_fd_meta_host.json') as f: + open('/tmp/fd_meta.json','w').write(f.read()) + +import numpy as np, joblib, json, os +from ForestDiffusion import ForestDiffusionModel +X = np.load("/tmp/fd_X.npy") +with open("/tmp/fd_meta.json") as f: + meta = json.load(f) +cat_indexes = meta["cat_indexes"] +print( + "[ForestDiffusion] train config: " + f"rows={X.shape[0]} cols={X.shape[1]} n_t=4 " + f"n_estimators=5 duplicate_K=2 n_jobs=1 " + f"max_depth=3 xgb_verbosity=1", + flush=True, +) +m = ForestDiffusionModel( + X, n_t=4, n_estimators=5, duplicate_K=2, n_jobs=1, + model="xgboost", max_depth=3, tree_method="hist", cat_indexes=cat_indexes, + verbosity=1, +) +joblib.dump((m, meta), "/tmp/fd_model.joblib") +print("ForestDiffusion train OK") + +shutil.copy('/tmp/fd_model.joblib', r'/work/output-Benchmark-trainonly-v1/c2/forestdiffusion/forest-c2-20260505_044951/forestdiffusion_model.joblib') diff --git a/hyperparameter/c2/forestdiffusion/forest-c2-20260505_044951/forest-c2-1382-20260505_045141.csv b/hyperparameter/c2/forestdiffusion/forest-c2-20260505_044951/forest-c2-1382-20260505_045141.csv new file mode 100644 index 0000000000000000000000000000000000000000..b7bf7852e4693bd1d60e11ed1ff1f973145f491f --- /dev/null +++ b/hyperparameter/c2/forestdiffusion/forest-c2-20260505_044951/forest-c2-1382-20260505_045141.csv @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:346e94a3d65b41d845644ed4fe468df2a1a443675f18a74e060239a2f5232b31 +size 58420 diff --git a/hyperparameter/c2/forestdiffusion/forest-c2-20260505_044951/forestdiffusion_model.joblib b/hyperparameter/c2/forestdiffusion/forest-c2-20260505_044951/forestdiffusion_model.joblib new file mode 100644 index 0000000000000000000000000000000000000000..58b9a307fddb80f7f4a29408ad8635242e895b1f --- /dev/null +++ b/hyperparameter/c2/forestdiffusion/forest-c2-20260505_044951/forestdiffusion_model.joblib @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:3fee3295dd1cb29a31d340465d87e5f277d679825089669adda1da327f9f7767 +size 569500 diff --git a/hyperparameter/c2/forestdiffusion/forest-c2-20260505_044951/gen_20260505_045141.log b/hyperparameter/c2/forestdiffusion/forest-c2-20260505_044951/gen_20260505_045141.log new file mode 100644 index 0000000000000000000000000000000000000000..cb85a43e90a4cbbae14cda87f3f99de789863555 --- /dev/null +++ b/hyperparameter/c2/forestdiffusion/forest-c2-20260505_044951/gen_20260505_045141.log @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:1f1b28531630a742f008dc25c7635d64c4a906371dc8ce39d32b44a99eac165a +size 294 diff --git a/hyperparameter/c2/forestdiffusion/forest-c2-20260505_044951/input_snapshot.json b/hyperparameter/c2/forestdiffusion/forest-c2-20260505_044951/input_snapshot.json new file mode 100644 index 0000000000000000000000000000000000000000..24ba74f272fb2c967af52a4ad4947955f45646ea --- /dev/null +++ b/hyperparameter/c2/forestdiffusion/forest-c2-20260505_044951/input_snapshot.json @@ -0,0 +1,36 @@ +{ + "dataset_id": "c2", + "model": "forestdiffusion", + "inputs": { + "train_csv": { + "path": "/data/jialinzhang/SynthesizePipeline-server/DatasetNew/c2/c2-train.csv", + "exists": true, + "size": 42948, + "sha256": "17bc560fa96bd00fb3b526e1e65bc91210b701d0d0a4e8bb9b4c5196cab56def" + }, + "val_csv": { + "path": "/data/jialinzhang/SynthesizePipeline-server/DatasetNew/c2/c2-val.csv", + "exists": true, + "size": 5349, + "sha256": "61e565eca62e65a7dccd9d51039a3170413379e10fc494e25870e7c4294863c9" + }, + "test_csv": { + "path": "/data/jialinzhang/SynthesizePipeline-server/DatasetNew/c2/c2-test.csv", + "exists": true, + "size": 5448, + "sha256": "cbcbb062a1faf5fa44b66c80532baa229e05b94fc42137269761e6c6d84af20a" + }, + "profile_json": { + "path": "/data/jialinzhang/SynthesizePipeline-server/DatasetNew/artifacts/data_core/tabular/c2/c2-dataset_profile.json", + "exists": true, + "size": 3240, + "sha256": "526b7163b2076c93c0bf4638438081ee8a6907065d5b608faa40d1a3dbc2a27b" + }, + "contract_json": { + "path": "/data/jialinzhang/SynthesizePipeline-server/DatasetNew/artifacts/data_core/tabular/c2/c2-dataset_contract_v1.json", + "exists": true, + "size": 3731, + "sha256": "fb595a876054c2ee9b4e10cfe83a5691588de1d25466cbb9d473c18ad3604009" + } + } +} \ No newline at end of file diff --git a/hyperparameter/c2/forestdiffusion/forest-c2-20260505_044951/models_fd/model.joblib b/hyperparameter/c2/forestdiffusion/forest-c2-20260505_044951/models_fd/model.joblib new file mode 100644 index 0000000000000000000000000000000000000000..58b9a307fddb80f7f4a29408ad8635242e895b1f --- /dev/null +++ b/hyperparameter/c2/forestdiffusion/forest-c2-20260505_044951/models_fd/model.joblib @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:3fee3295dd1cb29a31d340465d87e5f277d679825089669adda1da327f9f7767 +size 569500 diff --git a/hyperparameter/c2/forestdiffusion/forest-c2-20260505_044951/public_gate/normalized_schema_snapshot.json b/hyperparameter/c2/forestdiffusion/forest-c2-20260505_044951/public_gate/normalized_schema_snapshot.json new file mode 100644 index 0000000000000000000000000000000000000000..689b1d00d96508e44ba40e58dc4560e19afc2b3b --- /dev/null +++ b/hyperparameter/c2/forestdiffusion/forest-c2-20260505_044951/public_gate/normalized_schema_snapshot.json @@ -0,0 +1,144 @@ +{ + "dataset_id": "c2", + "target_column": "class", + "task_type": "classification", + "columns": [ + { + "name": "buying", + "role": "feature", + "semantic_type": "categorical", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 4, + "unique_ratio": 0.002894, + "example_values": [ + "vhigh", + "med", + "high", + "low" + ] + } + }, + { + "name": "maint", + "role": "feature", + "semantic_type": "categorical", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 4, + "unique_ratio": 0.002894, + "example_values": [ + "vhigh", + "low", + "med", + "high" + ] + } + }, + { + "name": "doors", + "role": "feature", + "semantic_type": "categorical", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 4, + "unique_ratio": 0.002894, + "example_values": [ + "2", + "5more", + "3", + "4" + ] + } + }, + { + "name": "persons", + "role": "feature", + "semantic_type": "categorical", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 3, + "unique_ratio": 0.002171, + "example_values": [ + "2", + "4", + "more" + ] + } + }, + { + "name": "lug_boot", + "role": "feature", + "semantic_type": "categorical", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 3, + "unique_ratio": 0.002171, + "example_values": [ + "small", + "big", + "med" + ] + } + }, + { + "name": "safety", + "role": "feature", + "semantic_type": "categorical", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 3, + "unique_ratio": 0.002171, + "example_values": [ + "low", + "high", + "med" + ] + } + }, + { + "name": "class", + "role": "target", + "semantic_type": "categorical", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 4, + "unique_ratio": 0.002894, + "example_values": [ + "unacc", + "good", + "acc", + "vgood" + ] + } + } + ] +} \ No newline at end of file diff --git a/hyperparameter/c2/forestdiffusion/forest-c2-20260505_044951/public_gate/public_gate_report.json b/hyperparameter/c2/forestdiffusion/forest-c2-20260505_044951/public_gate/public_gate_report.json new file mode 100644 index 0000000000000000000000000000000000000000..2e4cdcb2a4e28e40d59b17a83e773f622b7636a5 --- /dev/null +++ b/hyperparameter/c2/forestdiffusion/forest-c2-20260505_044951/public_gate/public_gate_report.json @@ -0,0 +1,37 @@ +{ + "dataset_id": "c2", + "status": "pass", + "checks": [ + { + "check_id": "PG001_csv_parse_ok", + "status": "pass" + }, + { + "check_id": "PG002_split_header_consistent", + "status": "pass" + }, + { + "check_id": "PG003_profile_header_match", + "status": "pass" + }, + { + "check_id": "PG004_missing_token_normalized", + "status": "pass" + }, + { + "check_id": "PG005_semantic_type_validated", + "status": "pass" + }, + { + "check_id": "PG006_target_defined_and_valid", + "status": "pass" + } + ], + "target_column": "class", + "task_type": "classification", + "input_splits": { + "train": "/data/jialinzhang/SynthesizePipeline-server/DatasetNew/c2/c2-train.csv", + "val": "/data/jialinzhang/SynthesizePipeline-server/DatasetNew/c2/c2-val.csv", + "test": "/data/jialinzhang/SynthesizePipeline-server/DatasetNew/c2/c2-test.csv" + } +} \ No newline at end of file diff --git a/hyperparameter/c2/forestdiffusion/forest-c2-20260505_044951/public_gate/staged_input_manifest.json b/hyperparameter/c2/forestdiffusion/forest-c2-20260505_044951/public_gate/staged_input_manifest.json new file mode 100644 index 0000000000000000000000000000000000000000..e5361cbd6540cfd2c4a0a736e702765f14d72091 --- /dev/null +++ b/hyperparameter/c2/forestdiffusion/forest-c2-20260505_044951/public_gate/staged_input_manifest.json @@ -0,0 +1,149 @@ +{ + "dataset_id": "c2", + "target_column": "class", + "task_type": "classification", + "train_csv": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/c2/forestdiffusion/forest-c2-20260505_044951/staged/public/train.csv", + "val_csv": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/c2/forestdiffusion/forest-c2-20260505_044951/staged/public/val.csv", + "test_csv": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/c2/forestdiffusion/forest-c2-20260505_044951/staged/public/test.csv", + "features_json": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/c2/forestdiffusion/forest-c2-20260505_044951/staged/public/staged_features.json", + "public_gate_report": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/c2/forestdiffusion/forest-c2-20260505_044951/public_gate/public_gate_report.json", + "column_schema": [ + { + "name": "buying", + "role": "feature", + "semantic_type": "categorical", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 4, + "unique_ratio": 0.002894, + "example_values": [ + "vhigh", + "med", + "high", + "low" + ] + } + }, + { + "name": "maint", + "role": "feature", + "semantic_type": "categorical", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 4, + "unique_ratio": 0.002894, + "example_values": [ + "vhigh", + "low", + "med", + "high" + ] + } + }, + { + "name": "doors", + "role": "feature", + "semantic_type": "categorical", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 4, + "unique_ratio": 0.002894, + "example_values": [ + "2", + "5more", + "3", + "4" + ] + } + }, + { + "name": "persons", + "role": "feature", + "semantic_type": "categorical", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 3, + "unique_ratio": 0.002171, + "example_values": [ + "2", + "4", + "more" + ] + } + }, + { + "name": "lug_boot", + "role": "feature", + "semantic_type": "categorical", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 3, + "unique_ratio": 0.002171, + "example_values": [ + "small", + "big", + "med" + ] + } + }, + { + "name": "safety", + "role": "feature", + "semantic_type": "categorical", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 3, + "unique_ratio": 0.002171, + "example_values": [ + "low", + "high", + "med" + ] + } + }, + { + "name": "class", + "role": "target", + "semantic_type": "categorical", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 4, + "unique_ratio": 0.002894, + "example_values": [ + "unacc", + "good", + "acc", + "vgood" + ] + } + } + ] +} \ No newline at end of file diff --git a/hyperparameter/c2/forestdiffusion/forest-c2-20260505_044951/run_config.json b/hyperparameter/c2/forestdiffusion/forest-c2-20260505_044951/run_config.json new file mode 100644 index 0000000000000000000000000000000000000000..97561b6a73d6f6d5654a62a96fa719b22df9206c --- /dev/null +++ b/hyperparameter/c2/forestdiffusion/forest-c2-20260505_044951/run_config.json @@ -0,0 +1,45 @@ +{ + "schema_version": 1, + "recorded_at": "2026-05-05T04:49:51", + "dataset_id": "c2", + "model": "forestdiffusion", + "work_dir": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/c2/forestdiffusion/forest-c2-20260505_044951", + "dataset_source_requested": "new", + "dataset_source_resolved": "new", + "cli_args": { + "model": "forestdiffusion", + "dataset": "c2", + "dataset_source": "new", + "train": true, + "generate": true, + "num_rows": 0, + "epochs": null, + "output_dir": null, + "model_dir": null, + "work_dir": null, + "resume": false, + "no_stats": false + }, + "resolved": { + "num_rows": 1382, + "model_path": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/c2/forestdiffusion/forest-c2-20260505_044951/models_fd/model.joblib", + "output_csv": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/c2/forestdiffusion/forest-c2-20260505_044951/forest-c2-1382-20260505_045141.csv" + }, + "input_artifacts": { + "public_gate_report": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/c2/forestdiffusion/forest-c2-20260505_044951/public_gate/public_gate_report.json", + "public_manifest": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/c2/forestdiffusion/forest-c2-20260505_044951/public_gate/staged_input_manifest.json", + "model_manifest": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/c2/forestdiffusion/forest-c2-20260505_044951/staged/forestdiffusion/model_input_manifest.json", + "train_csv": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/c2/forestdiffusion/forest-c2-20260505_044951/staged/public/train.csv", + "features_json": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/c2/forestdiffusion/forest-c2-20260505_044951/staged/public/staged_features.json", + "target_column": "class", + "task_type": "classification" + }, + "env_overrides": { + "FORESTDIFFUSION_DUPLICATE_K": "2", + "FORESTDIFFUSION_MAX_DEPTH": "3", + "FORESTDIFFUSION_MAX_TRAIN_ROWS": "4096", + "FORESTDIFFUSION_N_ESTIMATORS": "5", + "FORESTDIFFUSION_N_JOBS": "1", + "FORESTDIFFUSION_N_T": "4" + } +} \ No newline at end of file diff --git a/hyperparameter/c2/forestdiffusion/forest-c2-20260505_044951/runtime_result.json b/hyperparameter/c2/forestdiffusion/forest-c2-20260505_044951/runtime_result.json new file mode 100644 index 0000000000000000000000000000000000000000..a4d4f2b02948b8686920f45b3380ec4a9caab05f --- /dev/null +++ b/hyperparameter/c2/forestdiffusion/forest-c2-20260505_044951/runtime_result.json @@ -0,0 +1,27 @@ +{ + "dataset_id": "c2", + "model": "forestdiffusion", + "run_id": "forest-c2-20260505_044951", + "public_gate_status": "pass", + "adapter_ready_status": "pass", + "train_status": "success", + "generate_status": "success", + "reason_code": null, + "reason_detail": null, + "artifacts": { + "synthetic_csv": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/c2/forestdiffusion/forest-c2-20260505_044951/forest-c2-1382-20260505_045141.csv", + "model_path": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/c2/forestdiffusion/forest-c2-20260505_044951/models_fd/model.joblib" + }, + "timings": { + "train": { + "started_at": "2026-05-05T04:49:51", + "ended_at": "2026-05-05T04:51:41", + "duration_sec": 110.682 + }, + "generate": { + "started_at": "2026-05-05T04:51:41", + "ended_at": "2026-05-05T04:51:44", + "duration_sec": 2.674 + } + } +} \ No newline at end of file diff --git a/hyperparameter/c2/forestdiffusion/forest-c2-20260505_044951/staged/forestdiffusion/adapter_report.json b/hyperparameter/c2/forestdiffusion/forest-c2-20260505_044951/staged/forestdiffusion/adapter_report.json new file mode 100644 index 0000000000000000000000000000000000000000..3842c125b74eac896ee36f1710925517d490d3cf --- /dev/null +++ b/hyperparameter/c2/forestdiffusion/forest-c2-20260505_044951/staged/forestdiffusion/adapter_report.json @@ -0,0 +1,7 @@ +{ + "adapter_ready_status": "pass", + "adapter_fail_reason_code": null, + "adapter_fail_detail": null, + "adapter_transforms_applied": [], + "model_input_manifest": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/c2/forestdiffusion/forest-c2-20260505_044951/staged/forestdiffusion/model_input_manifest.json" +} \ No newline at end of file diff --git a/hyperparameter/c2/forestdiffusion/forest-c2-20260505_044951/staged/forestdiffusion/adapter_transforms_applied.json b/hyperparameter/c2/forestdiffusion/forest-c2-20260505_044951/staged/forestdiffusion/adapter_transforms_applied.json new file mode 100644 index 0000000000000000000000000000000000000000..0637a088a01e8ddab3bf3fa98dbe804cbde1a0dc --- /dev/null +++ b/hyperparameter/c2/forestdiffusion/forest-c2-20260505_044951/staged/forestdiffusion/adapter_transforms_applied.json @@ -0,0 +1 @@ +[] \ No newline at end of file diff --git a/hyperparameter/c2/forestdiffusion/forest-c2-20260505_044951/staged/forestdiffusion/model_input_manifest.json b/hyperparameter/c2/forestdiffusion/forest-c2-20260505_044951/staged/forestdiffusion/model_input_manifest.json new file mode 100644 index 0000000000000000000000000000000000000000..eaae74d5d03960ac74d318d50f85e06555b376d2 --- /dev/null +++ b/hyperparameter/c2/forestdiffusion/forest-c2-20260505_044951/staged/forestdiffusion/model_input_manifest.json @@ -0,0 +1,151 @@ +{ + "dataset_id": "c2", + "model": "forestdiffusion", + "target_column": "class", + "task_type": "classification", + "column_schema": [ + { + "name": "buying", + "role": "feature", + "semantic_type": "categorical", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 4, + "unique_ratio": 0.002894, + "example_values": [ + "vhigh", + "med", + "high", + "low" + ] + } + }, + { + "name": "maint", + "role": "feature", + "semantic_type": "categorical", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 4, + "unique_ratio": 0.002894, + "example_values": [ + "vhigh", + "low", + "med", + "high" + ] + } + }, + { + "name": "doors", + "role": "feature", + "semantic_type": "categorical", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 4, + "unique_ratio": 0.002894, + "example_values": [ + "2", + "5more", + "3", + "4" + ] + } + }, + { + "name": "persons", + "role": "feature", + "semantic_type": "categorical", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 3, + "unique_ratio": 0.002171, + "example_values": [ + "2", + "4", + "more" + ] + } + }, + { + "name": "lug_boot", + "role": "feature", + "semantic_type": "categorical", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 3, + "unique_ratio": 0.002171, + "example_values": [ + "small", + "big", + "med" + ] + } + }, + { + "name": "safety", + "role": "feature", + "semantic_type": "categorical", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 3, + "unique_ratio": 0.002171, + "example_values": [ + "low", + "high", + "med" + ] + } + }, + { + "name": "class", + "role": "target", + "semantic_type": "categorical", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 4, + "unique_ratio": 0.002894, + "example_values": [ + "unacc", + "good", + "acc", + "vgood" + ] + } + } + ], + "public_manifest": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/c2/forestdiffusion/forest-c2-20260505_044951/public_gate/staged_input_manifest.json", + "train_csv": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/c2/forestdiffusion/forest-c2-20260505_044951/staged/public/train.csv", + "val_csv": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/c2/forestdiffusion/forest-c2-20260505_044951/staged/public/val.csv", + "test_csv": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/c2/forestdiffusion/forest-c2-20260505_044951/staged/public/test.csv", + "features_json": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/c2/forestdiffusion/forest-c2-20260505_044951/staged/public/staged_features.json", + "public_gate_report": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/c2/forestdiffusion/forest-c2-20260505_044951/public_gate/public_gate_report.json" +} \ No newline at end of file diff --git a/hyperparameter/c2/forestdiffusion/forest-c2-20260505_044951/staged/public/staged_features.json b/hyperparameter/c2/forestdiffusion/forest-c2-20260505_044951/staged/public/staged_features.json new file mode 100644 index 0000000000000000000000000000000000000000..61783861dd5de501592f76acb0469cf3f3b2622a --- /dev/null +++ b/hyperparameter/c2/forestdiffusion/forest-c2-20260505_044951/staged/public/staged_features.json @@ -0,0 +1,37 @@ +[ + { + "feature_name": "buying", + "data_type": "categorical", + "is_target": false + }, + { + "feature_name": "maint", + "data_type": "categorical", + "is_target": false + }, + { + "feature_name": "doors", + "data_type": "categorical", + "is_target": false + }, + { + "feature_name": "persons", + "data_type": "categorical", + "is_target": false + }, + { + "feature_name": "lug_boot", + "data_type": "categorical", + "is_target": false + }, + { + "feature_name": "safety", + "data_type": "categorical", + "is_target": false + }, + { + "feature_name": "class", + "data_type": "categorical", + "is_target": true + } +] \ No newline at end of file diff --git a/hyperparameter/c2/forestdiffusion/forest-c2-20260505_044951/staged/public/test.csv b/hyperparameter/c2/forestdiffusion/forest-c2-20260505_044951/staged/public/test.csv new file mode 100644 index 0000000000000000000000000000000000000000..392a0d7189a34d8f13ecf20a99d64b03230d517c --- /dev/null +++ b/hyperparameter/c2/forestdiffusion/forest-c2-20260505_044951/staged/public/test.csv @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:b48114a7d0bc5bd9a07920f903c8d4aba8bf98bf2a66a050da03588b0245ca73 +size 5273 diff --git a/hyperparameter/c2/forestdiffusion/forest-c2-20260505_044951/staged/public/train.csv b/hyperparameter/c2/forestdiffusion/forest-c2-20260505_044951/staged/public/train.csv new file mode 100644 index 0000000000000000000000000000000000000000..da4f4d55134eebc0e51157d0d467536371db1484 --- /dev/null +++ b/hyperparameter/c2/forestdiffusion/forest-c2-20260505_044951/staged/public/train.csv @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:4aed00c2c2b3f88a55a7ebff31b2e1b5e0e32fb0a7267e0b9d2779cd23e434dd +size 41565 diff --git a/hyperparameter/c2/forestdiffusion/forest-c2-20260505_044951/staged/public/val.csv b/hyperparameter/c2/forestdiffusion/forest-c2-20260505_044951/staged/public/val.csv new file mode 100644 index 0000000000000000000000000000000000000000..af8caf7ee42524188534a3daf32996dc491952d9 --- /dev/null +++ b/hyperparameter/c2/forestdiffusion/forest-c2-20260505_044951/staged/public/val.csv @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:26e90c1170a57a14c05832ac88027722b1f3848f9662c7c09ef7c93dcba4cc01 +size 5176 diff --git a/hyperparameter/c2/forestdiffusion/forest-c2-20260505_044951/train_20260505_044951.log b/hyperparameter/c2/forestdiffusion/forest-c2-20260505_044951/train_20260505_044951.log new file mode 100644 index 0000000000000000000000000000000000000000..67ce01eb65a4fadcddaa5fda4bf6e7ab96612449 --- /dev/null +++ b/hyperparameter/c2/forestdiffusion/forest-c2-20260505_044951/train_20260505_044951.log @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:cb9a7c8d9934017c6d3659a61b7edefb87d5d94cf6dff3ffc3ba673df6c951b7 +size 431 diff --git a/hyperparameter/c2/forestdiffusion/forest-c2-20260505_045157/_fd_X_host.npy b/hyperparameter/c2/forestdiffusion/forest-c2-20260505_045157/_fd_X_host.npy new file mode 100644 index 0000000000000000000000000000000000000000..2c631eb05814d7aa116816e9799b9c52f8c0e566 --- /dev/null +++ b/hyperparameter/c2/forestdiffusion/forest-c2-20260505_045157/_fd_X_host.npy @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:260745c93bbaaa167bd761bd653a194f7b25b477b3929a24e343741a3c4fa280 +size 38824 diff --git a/hyperparameter/c2/forestdiffusion/forest-c2-20260505_045157/_fd_gen.py b/hyperparameter/c2/forestdiffusion/forest-c2-20260505_045157/_fd_gen.py new file mode 100644 index 0000000000000000000000000000000000000000..dfa9d6ee91911f4aa207e3a11a9a9da128dcaf42 --- /dev/null +++ b/hyperparameter/c2/forestdiffusion/forest-c2-20260505_045157/_fd_gen.py @@ -0,0 +1,8 @@ + +import joblib, pandas as pd +m, meta = joblib.load(r'/work/output-Benchmark-trainonly-v1/c2/forestdiffusion/forest-c2-20260505_045157/forestdiffusion_model.joblib') +# generate:batch_size 为样本数 +arr = m.generate(batch_size=int(1382)) +df = pd.DataFrame(arr, columns=meta["column_names"]) +df.to_csv(r'/work/output-Benchmark-trainonly-v1/c2/forestdiffusion/forest-c2-20260505_045157/forest-c2-1382-20260505_045714.csv', index=False) +print("saved", len(df)) diff --git a/hyperparameter/c2/forestdiffusion/forest-c2-20260505_045157/_fd_meta_host.json b/hyperparameter/c2/forestdiffusion/forest-c2-20260505_045157/_fd_meta_host.json new file mode 100644 index 0000000000000000000000000000000000000000..be467ac019d08a03e8ba5c0d436f59170db78786 --- /dev/null +++ b/hyperparameter/c2/forestdiffusion/forest-c2-20260505_045157/_fd_meta_host.json @@ -0,0 +1 @@ +{"column_names": ["buying", "maint", "doors", "persons", "lug_boot", "safety", "class"], "cat_indexes": [0, 1, 2, 3, 4, 5]} \ No newline at end of file diff --git a/hyperparameter/c2/forestdiffusion/forest-c2-20260505_045157/_fd_train.py b/hyperparameter/c2/forestdiffusion/forest-c2-20260505_045157/_fd_train.py new file mode 100644 index 0000000000000000000000000000000000000000..9b2ad1f025b4a2d8366588aafaf28605b051b5a2 --- /dev/null +++ b/hyperparameter/c2/forestdiffusion/forest-c2-20260505_045157/_fd_train.py @@ -0,0 +1,36 @@ + +import os, shutil, json +with open('/tmp/pgrep', 'w') as _f: + _f.write("#!/usr/bin/env python3\n") + _f.write("import subprocess, sys\n") + _f.write("ppid = sys.argv[-1]\n") + _f.write("out = subprocess.check_output(['ps', '-o', 'pid=', '--ppid', str(ppid)], text=True)\n") + _f.write("print(out, end='')\n") +os.chmod('/tmp/pgrep', 0o755) +os.environ['PATH'] = '/tmp:' + os.environ.get('PATH', '') +shutil.copy(r'/work/output-Benchmark-trainonly-v1/c2/forestdiffusion/forest-c2-20260505_045157/_fd_X_host.npy', '/tmp/fd_X.npy') +with open(r'/work/output-Benchmark-trainonly-v1/c2/forestdiffusion/forest-c2-20260505_045157/_fd_meta_host.json') as f: + open('/tmp/fd_meta.json','w').write(f.read()) + +import numpy as np, joblib, json, os +from ForestDiffusion import ForestDiffusionModel +X = np.load("/tmp/fd_X.npy") +with open("/tmp/fd_meta.json") as f: + meta = json.load(f) +cat_indexes = meta["cat_indexes"] +print( + "[ForestDiffusion] train config: " + f"rows={X.shape[0]} cols={X.shape[1]} n_t=6 " + f"n_estimators=10 duplicate_K=3 n_jobs=1 " + f"max_depth=3 xgb_verbosity=1", + flush=True, +) +m = ForestDiffusionModel( + X, n_t=6, n_estimators=10, duplicate_K=3, n_jobs=1, + model="xgboost", max_depth=3, tree_method="hist", cat_indexes=cat_indexes, + verbosity=1, +) +joblib.dump((m, meta), "/tmp/fd_model.joblib") +print("ForestDiffusion train OK") + +shutil.copy('/tmp/fd_model.joblib', r'/work/output-Benchmark-trainonly-v1/c2/forestdiffusion/forest-c2-20260505_045157/forestdiffusion_model.joblib') diff --git a/hyperparameter/c2/forestdiffusion/forest-c2-20260505_045157/forest-c2-1382-20260505_045714.csv b/hyperparameter/c2/forestdiffusion/forest-c2-20260505_045157/forest-c2-1382-20260505_045714.csv new file mode 100644 index 0000000000000000000000000000000000000000..d89a90a40629ab2e862d026e782b81c79b932297 --- /dev/null +++ b/hyperparameter/c2/forestdiffusion/forest-c2-20260505_045157/forest-c2-1382-20260505_045714.csv @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:4225d81003c8b72fa216e26e6dbe4fcdba5ce058b59b3a0fee001d6966c1c5ed +size 58201 diff --git a/hyperparameter/c2/forestdiffusion/forest-c2-20260505_045157/forestdiffusion_model.joblib b/hyperparameter/c2/forestdiffusion/forest-c2-20260505_045157/forestdiffusion_model.joblib new file mode 100644 index 0000000000000000000000000000000000000000..0aaadeca882b0bd1f83d395e667b3941ea495624 --- /dev/null +++ b/hyperparameter/c2/forestdiffusion/forest-c2-20260505_045157/forestdiffusion_model.joblib @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:bcdb8180cb3e9d5eaadfc09a77d5ff1ff107313081807bbe2238623ed50fff94 +size 1322726 diff --git a/hyperparameter/c2/forestdiffusion/forest-c2-20260505_045157/gen_20260505_045714.log b/hyperparameter/c2/forestdiffusion/forest-c2-20260505_045157/gen_20260505_045714.log new file mode 100644 index 0000000000000000000000000000000000000000..f2f37ecbc7ffefdaf91879cbb1bfeab8c949d9a4 --- /dev/null +++ b/hyperparameter/c2/forestdiffusion/forest-c2-20260505_045157/gen_20260505_045714.log @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:fa31ca2293047e22412fe8606e893d35145638fa58c9382a76527476e40dd21b +size 293 diff --git a/hyperparameter/c2/forestdiffusion/forest-c2-20260505_045157/input_snapshot.json b/hyperparameter/c2/forestdiffusion/forest-c2-20260505_045157/input_snapshot.json new file mode 100644 index 0000000000000000000000000000000000000000..24ba74f272fb2c967af52a4ad4947955f45646ea --- /dev/null +++ b/hyperparameter/c2/forestdiffusion/forest-c2-20260505_045157/input_snapshot.json @@ -0,0 +1,36 @@ +{ + "dataset_id": "c2", + "model": "forestdiffusion", + "inputs": { + "train_csv": { + "path": "/data/jialinzhang/SynthesizePipeline-server/DatasetNew/c2/c2-train.csv", + "exists": true, + "size": 42948, + "sha256": "17bc560fa96bd00fb3b526e1e65bc91210b701d0d0a4e8bb9b4c5196cab56def" + }, + "val_csv": { + "path": "/data/jialinzhang/SynthesizePipeline-server/DatasetNew/c2/c2-val.csv", + "exists": true, + "size": 5349, + "sha256": "61e565eca62e65a7dccd9d51039a3170413379e10fc494e25870e7c4294863c9" + }, + "test_csv": { + "path": "/data/jialinzhang/SynthesizePipeline-server/DatasetNew/c2/c2-test.csv", + "exists": true, + "size": 5448, + "sha256": "cbcbb062a1faf5fa44b66c80532baa229e05b94fc42137269761e6c6d84af20a" + }, + "profile_json": { + "path": "/data/jialinzhang/SynthesizePipeline-server/DatasetNew/artifacts/data_core/tabular/c2/c2-dataset_profile.json", + "exists": true, + "size": 3240, + "sha256": "526b7163b2076c93c0bf4638438081ee8a6907065d5b608faa40d1a3dbc2a27b" + }, + "contract_json": { + "path": "/data/jialinzhang/SynthesizePipeline-server/DatasetNew/artifacts/data_core/tabular/c2/c2-dataset_contract_v1.json", + "exists": true, + "size": 3731, + "sha256": "fb595a876054c2ee9b4e10cfe83a5691588de1d25466cbb9d473c18ad3604009" + } + } +} \ No newline at end of file diff --git a/hyperparameter/c2/forestdiffusion/forest-c2-20260505_045157/models_fd/model.joblib b/hyperparameter/c2/forestdiffusion/forest-c2-20260505_045157/models_fd/model.joblib new file mode 100644 index 0000000000000000000000000000000000000000..0aaadeca882b0bd1f83d395e667b3941ea495624 --- /dev/null +++ b/hyperparameter/c2/forestdiffusion/forest-c2-20260505_045157/models_fd/model.joblib @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:bcdb8180cb3e9d5eaadfc09a77d5ff1ff107313081807bbe2238623ed50fff94 +size 1322726 diff --git a/hyperparameter/c2/forestdiffusion/forest-c2-20260505_045157/public_gate/normalized_schema_snapshot.json b/hyperparameter/c2/forestdiffusion/forest-c2-20260505_045157/public_gate/normalized_schema_snapshot.json new file mode 100644 index 0000000000000000000000000000000000000000..689b1d00d96508e44ba40e58dc4560e19afc2b3b --- /dev/null +++ b/hyperparameter/c2/forestdiffusion/forest-c2-20260505_045157/public_gate/normalized_schema_snapshot.json @@ -0,0 +1,144 @@ +{ + "dataset_id": "c2", + "target_column": "class", + "task_type": "classification", + "columns": [ + { + "name": "buying", + "role": "feature", + "semantic_type": "categorical", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 4, + "unique_ratio": 0.002894, + "example_values": [ + "vhigh", + "med", + "high", + "low" + ] + } + }, + { + "name": "maint", + "role": "feature", + "semantic_type": "categorical", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 4, + "unique_ratio": 0.002894, + "example_values": [ + "vhigh", + "low", + "med", + "high" + ] + } + }, + { + "name": "doors", + "role": "feature", + "semantic_type": "categorical", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 4, + "unique_ratio": 0.002894, + "example_values": [ + "2", + "5more", + "3", + "4" + ] + } + }, + { + "name": "persons", + "role": "feature", + "semantic_type": "categorical", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 3, + "unique_ratio": 0.002171, + "example_values": [ + "2", + "4", + "more" + ] + } + }, + { + "name": "lug_boot", + "role": "feature", + "semantic_type": "categorical", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 3, + "unique_ratio": 0.002171, + "example_values": [ + "small", + "big", + "med" + ] + } + }, + { + "name": "safety", + "role": "feature", + "semantic_type": "categorical", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 3, + "unique_ratio": 0.002171, + "example_values": [ + "low", + "high", + "med" + ] + } + }, + { + "name": "class", + "role": "target", + "semantic_type": "categorical", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 4, + "unique_ratio": 0.002894, + "example_values": [ + "unacc", + "good", + "acc", + "vgood" + ] + } + } + ] +} \ No newline at end of file diff --git a/hyperparameter/c2/forestdiffusion/forest-c2-20260505_045157/public_gate/public_gate_report.json b/hyperparameter/c2/forestdiffusion/forest-c2-20260505_045157/public_gate/public_gate_report.json new file mode 100644 index 0000000000000000000000000000000000000000..2e4cdcb2a4e28e40d59b17a83e773f622b7636a5 --- /dev/null +++ b/hyperparameter/c2/forestdiffusion/forest-c2-20260505_045157/public_gate/public_gate_report.json @@ -0,0 +1,37 @@ +{ + "dataset_id": "c2", + "status": "pass", + "checks": [ + { + "check_id": "PG001_csv_parse_ok", + "status": "pass" + }, + { + "check_id": "PG002_split_header_consistent", + "status": "pass" + }, + { + "check_id": "PG003_profile_header_match", + "status": "pass" + }, + { + "check_id": "PG004_missing_token_normalized", + "status": "pass" + }, + { + "check_id": "PG005_semantic_type_validated", + "status": "pass" + }, + { + "check_id": "PG006_target_defined_and_valid", + "status": "pass" + } + ], + "target_column": "class", + "task_type": "classification", + "input_splits": { + "train": "/data/jialinzhang/SynthesizePipeline-server/DatasetNew/c2/c2-train.csv", + "val": "/data/jialinzhang/SynthesizePipeline-server/DatasetNew/c2/c2-val.csv", + "test": "/data/jialinzhang/SynthesizePipeline-server/DatasetNew/c2/c2-test.csv" + } +} \ No newline at end of file diff --git a/hyperparameter/c2/forestdiffusion/forest-c2-20260505_045157/public_gate/staged_input_manifest.json b/hyperparameter/c2/forestdiffusion/forest-c2-20260505_045157/public_gate/staged_input_manifest.json new file mode 100644 index 0000000000000000000000000000000000000000..86047349940836c0a061834fe91216a46b1bd97b --- /dev/null +++ b/hyperparameter/c2/forestdiffusion/forest-c2-20260505_045157/public_gate/staged_input_manifest.json @@ -0,0 +1,149 @@ +{ + "dataset_id": "c2", + "target_column": "class", + "task_type": "classification", + "train_csv": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/c2/forestdiffusion/forest-c2-20260505_045157/staged/public/train.csv", + "val_csv": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/c2/forestdiffusion/forest-c2-20260505_045157/staged/public/val.csv", + "test_csv": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/c2/forestdiffusion/forest-c2-20260505_045157/staged/public/test.csv", + "features_json": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/c2/forestdiffusion/forest-c2-20260505_045157/staged/public/staged_features.json", + "public_gate_report": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/c2/forestdiffusion/forest-c2-20260505_045157/public_gate/public_gate_report.json", + "column_schema": [ + { + "name": "buying", + "role": "feature", + "semantic_type": "categorical", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 4, + "unique_ratio": 0.002894, + "example_values": [ + "vhigh", + "med", + "high", + "low" + ] + } + }, + { + "name": "maint", + "role": "feature", + "semantic_type": "categorical", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 4, + "unique_ratio": 0.002894, + "example_values": [ + "vhigh", + "low", + "med", + "high" + ] + } + }, + { + "name": "doors", + "role": "feature", + "semantic_type": "categorical", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 4, + "unique_ratio": 0.002894, + "example_values": [ + "2", + "5more", + "3", + "4" + ] + } + }, + { + "name": "persons", + "role": "feature", + "semantic_type": "categorical", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 3, + "unique_ratio": 0.002171, + "example_values": [ + "2", + "4", + "more" + ] + } + }, + { + "name": "lug_boot", + "role": "feature", + "semantic_type": "categorical", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 3, + "unique_ratio": 0.002171, + "example_values": [ + "small", + "big", + "med" + ] + } + }, + { + "name": "safety", + "role": "feature", + "semantic_type": "categorical", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 3, + "unique_ratio": 0.002171, + "example_values": [ + "low", + "high", + "med" + ] + } + }, + { + "name": "class", + "role": "target", + "semantic_type": "categorical", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 4, + "unique_ratio": 0.002894, + "example_values": [ + "unacc", + "good", + "acc", + "vgood" + ] + } + } + ] +} \ No newline at end of file diff --git a/hyperparameter/c2/forestdiffusion/forest-c2-20260505_045157/run_config.json b/hyperparameter/c2/forestdiffusion/forest-c2-20260505_045157/run_config.json new file mode 100644 index 0000000000000000000000000000000000000000..02acc41e3083b1ba2ce81b7a0956526cc54d3242 --- /dev/null +++ b/hyperparameter/c2/forestdiffusion/forest-c2-20260505_045157/run_config.json @@ -0,0 +1,45 @@ +{ + "schema_version": 1, + "recorded_at": "2026-05-05T04:51:57", + "dataset_id": "c2", + "model": "forestdiffusion", + "work_dir": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/c2/forestdiffusion/forest-c2-20260505_045157", + "dataset_source_requested": "new", + "dataset_source_resolved": "new", + "cli_args": { + "model": "forestdiffusion", + "dataset": "c2", + "dataset_source": "new", + "train": true, + "generate": true, + "num_rows": 0, + "epochs": null, + "output_dir": null, + "model_dir": null, + "work_dir": null, + "resume": false, + "no_stats": false + }, + "resolved": { + "num_rows": 1382, + "model_path": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/c2/forestdiffusion/forest-c2-20260505_045157/models_fd/model.joblib", + "output_csv": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/c2/forestdiffusion/forest-c2-20260505_045157/forest-c2-1382-20260505_045714.csv" + }, + "input_artifacts": { + "public_gate_report": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/c2/forestdiffusion/forest-c2-20260505_045157/public_gate/public_gate_report.json", + "public_manifest": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/c2/forestdiffusion/forest-c2-20260505_045157/public_gate/staged_input_manifest.json", + "model_manifest": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/c2/forestdiffusion/forest-c2-20260505_045157/staged/forestdiffusion/model_input_manifest.json", + "train_csv": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/c2/forestdiffusion/forest-c2-20260505_045157/staged/public/train.csv", + "features_json": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/c2/forestdiffusion/forest-c2-20260505_045157/staged/public/staged_features.json", + "target_column": "class", + "task_type": "classification" + }, + "env_overrides": { + "FORESTDIFFUSION_DUPLICATE_K": "3", + "FORESTDIFFUSION_MAX_DEPTH": "3", + "FORESTDIFFUSION_MAX_TRAIN_ROWS": "10000", + "FORESTDIFFUSION_N_ESTIMATORS": "10", + "FORESTDIFFUSION_N_JOBS": "1", + "FORESTDIFFUSION_N_T": "6" + } +} \ No newline at end of file diff --git a/hyperparameter/c2/forestdiffusion/forest-c2-20260505_045157/runtime_result.json b/hyperparameter/c2/forestdiffusion/forest-c2-20260505_045157/runtime_result.json new file mode 100644 index 0000000000000000000000000000000000000000..6d70926b55c6621c98e8e058f1af0a9ac1ee8d0a --- /dev/null +++ b/hyperparameter/c2/forestdiffusion/forest-c2-20260505_045157/runtime_result.json @@ -0,0 +1,27 @@ +{ + "dataset_id": "c2", + "model": "forestdiffusion", + "run_id": "forest-c2-20260505_045157", + "public_gate_status": "pass", + "adapter_ready_status": "pass", + "train_status": "success", + "generate_status": "success", + "reason_code": null, + "reason_detail": null, + "artifacts": { + "synthetic_csv": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/c2/forestdiffusion/forest-c2-20260505_045157/forest-c2-1382-20260505_045714.csv", + "model_path": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/c2/forestdiffusion/forest-c2-20260505_045157/models_fd/model.joblib" + }, + "timings": { + "train": { + "started_at": "2026-05-05T04:51:57", + "ended_at": "2026-05-05T04:57:14", + "duration_sec": 316.955 + }, + "generate": { + "started_at": "2026-05-05T04:57:14", + "ended_at": "2026-05-05T04:57:17", + "duration_sec": 2.816 + } + } +} \ No newline at end of file diff --git a/hyperparameter/c2/forestdiffusion/forest-c2-20260505_045157/staged/forestdiffusion/adapter_report.json b/hyperparameter/c2/forestdiffusion/forest-c2-20260505_045157/staged/forestdiffusion/adapter_report.json new file mode 100644 index 0000000000000000000000000000000000000000..de5e43506c1ed6734e3767b27b5ad3ac181a0dad --- /dev/null +++ b/hyperparameter/c2/forestdiffusion/forest-c2-20260505_045157/staged/forestdiffusion/adapter_report.json @@ -0,0 +1,7 @@ +{ + "adapter_ready_status": "pass", + "adapter_fail_reason_code": null, + "adapter_fail_detail": null, + "adapter_transforms_applied": [], + "model_input_manifest": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/c2/forestdiffusion/forest-c2-20260505_045157/staged/forestdiffusion/model_input_manifest.json" +} \ No newline at end of file diff --git a/hyperparameter/c2/forestdiffusion/forest-c2-20260505_045157/staged/forestdiffusion/adapter_transforms_applied.json b/hyperparameter/c2/forestdiffusion/forest-c2-20260505_045157/staged/forestdiffusion/adapter_transforms_applied.json new file mode 100644 index 0000000000000000000000000000000000000000..0637a088a01e8ddab3bf3fa98dbe804cbde1a0dc --- /dev/null +++ b/hyperparameter/c2/forestdiffusion/forest-c2-20260505_045157/staged/forestdiffusion/adapter_transforms_applied.json @@ -0,0 +1 @@ +[] \ No newline at end of file diff --git a/hyperparameter/c2/forestdiffusion/forest-c2-20260505_045157/staged/forestdiffusion/model_input_manifest.json b/hyperparameter/c2/forestdiffusion/forest-c2-20260505_045157/staged/forestdiffusion/model_input_manifest.json new file mode 100644 index 0000000000000000000000000000000000000000..93fa2cabb9d2e1e33e8cd036659b427edfe08345 --- /dev/null +++ b/hyperparameter/c2/forestdiffusion/forest-c2-20260505_045157/staged/forestdiffusion/model_input_manifest.json @@ -0,0 +1,151 @@ +{ + "dataset_id": "c2", + "model": "forestdiffusion", + "target_column": "class", + "task_type": "classification", + "column_schema": [ + { + "name": "buying", + "role": "feature", + "semantic_type": "categorical", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 4, + "unique_ratio": 0.002894, + "example_values": [ + "vhigh", + "med", + "high", + "low" + ] + } + }, + { + "name": "maint", + "role": "feature", + "semantic_type": "categorical", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 4, + "unique_ratio": 0.002894, + "example_values": [ + "vhigh", + "low", + "med", + "high" + ] + } + }, + { + "name": "doors", + "role": "feature", + "semantic_type": "categorical", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 4, + "unique_ratio": 0.002894, + "example_values": [ + "2", + "5more", + "3", + "4" + ] + } + }, + { + "name": "persons", + "role": "feature", + "semantic_type": "categorical", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 3, + "unique_ratio": 0.002171, + "example_values": [ + "2", + "4", + "more" + ] + } + }, + { + "name": "lug_boot", + "role": "feature", + "semantic_type": "categorical", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 3, + "unique_ratio": 0.002171, + "example_values": [ + "small", + "big", + "med" + ] + } + }, + { + "name": "safety", + "role": "feature", + "semantic_type": "categorical", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 3, + "unique_ratio": 0.002171, + "example_values": [ + "low", + "high", + "med" + ] + } + }, + { + "name": "class", + "role": "target", + "semantic_type": "categorical", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 4, + "unique_ratio": 0.002894, + "example_values": [ + "unacc", + "good", + "acc", + "vgood" + ] + } + } + ], + "public_manifest": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/c2/forestdiffusion/forest-c2-20260505_045157/public_gate/staged_input_manifest.json", + "train_csv": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/c2/forestdiffusion/forest-c2-20260505_045157/staged/public/train.csv", + "val_csv": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/c2/forestdiffusion/forest-c2-20260505_045157/staged/public/val.csv", + "test_csv": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/c2/forestdiffusion/forest-c2-20260505_045157/staged/public/test.csv", + "features_json": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/c2/forestdiffusion/forest-c2-20260505_045157/staged/public/staged_features.json", + "public_gate_report": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/c2/forestdiffusion/forest-c2-20260505_045157/public_gate/public_gate_report.json" +} \ No newline at end of file diff --git a/hyperparameter/c2/forestdiffusion/forest-c2-20260505_045157/staged/public/staged_features.json b/hyperparameter/c2/forestdiffusion/forest-c2-20260505_045157/staged/public/staged_features.json new file mode 100644 index 0000000000000000000000000000000000000000..61783861dd5de501592f76acb0469cf3f3b2622a --- /dev/null +++ b/hyperparameter/c2/forestdiffusion/forest-c2-20260505_045157/staged/public/staged_features.json @@ -0,0 +1,37 @@ +[ + { + "feature_name": "buying", + "data_type": "categorical", + "is_target": false + }, + { + "feature_name": "maint", + "data_type": "categorical", + "is_target": false + }, + { + "feature_name": "doors", + "data_type": "categorical", + "is_target": false + }, + { + "feature_name": "persons", + "data_type": "categorical", + "is_target": false + }, + { + "feature_name": "lug_boot", + "data_type": "categorical", + "is_target": false + }, + { + "feature_name": "safety", + "data_type": "categorical", + "is_target": false + }, + { + "feature_name": "class", + "data_type": "categorical", + "is_target": true + } +] \ No newline at end of file diff --git a/hyperparameter/c2/forestdiffusion/forest-c2-20260505_045157/staged/public/test.csv b/hyperparameter/c2/forestdiffusion/forest-c2-20260505_045157/staged/public/test.csv new file mode 100644 index 0000000000000000000000000000000000000000..392a0d7189a34d8f13ecf20a99d64b03230d517c --- /dev/null +++ b/hyperparameter/c2/forestdiffusion/forest-c2-20260505_045157/staged/public/test.csv @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:b48114a7d0bc5bd9a07920f903c8d4aba8bf98bf2a66a050da03588b0245ca73 +size 5273 diff --git a/hyperparameter/c2/forestdiffusion/forest-c2-20260505_045157/staged/public/train.csv b/hyperparameter/c2/forestdiffusion/forest-c2-20260505_045157/staged/public/train.csv new file mode 100644 index 0000000000000000000000000000000000000000..da4f4d55134eebc0e51157d0d467536371db1484 --- /dev/null +++ b/hyperparameter/c2/forestdiffusion/forest-c2-20260505_045157/staged/public/train.csv @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:4aed00c2c2b3f88a55a7ebff31b2e1b5e0e32fb0a7267e0b9d2779cd23e434dd +size 41565 diff --git a/hyperparameter/c2/forestdiffusion/forest-c2-20260505_045157/staged/public/val.csv b/hyperparameter/c2/forestdiffusion/forest-c2-20260505_045157/staged/public/val.csv new file mode 100644 index 0000000000000000000000000000000000000000..af8caf7ee42524188534a3daf32996dc491952d9 --- /dev/null +++ b/hyperparameter/c2/forestdiffusion/forest-c2-20260505_045157/staged/public/val.csv @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:26e90c1170a57a14c05832ac88027722b1f3848f9662c7c09ef7c93dcba4cc01 +size 5176 diff --git a/hyperparameter/c2/forestdiffusion/forest-c2-20260505_045157/train_20260505_045157.log b/hyperparameter/c2/forestdiffusion/forest-c2-20260505_045157/train_20260505_045157.log new file mode 100644 index 0000000000000000000000000000000000000000..f157801bab13ad67ab553305d253241b09eb7a2b --- /dev/null +++ b/hyperparameter/c2/forestdiffusion/forest-c2-20260505_045157/train_20260505_045157.log @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:6f4a949d653b6a86edf103dd468583f5e7458e752df8594059037c95ab5851f2 +size 432 diff --git a/hyperparameter/c2/forestdiffusion/forest-c2-20260505_045730/_fd_X_host.npy b/hyperparameter/c2/forestdiffusion/forest-c2-20260505_045730/_fd_X_host.npy new file mode 100644 index 0000000000000000000000000000000000000000..2c631eb05814d7aa116816e9799b9c52f8c0e566 --- /dev/null +++ b/hyperparameter/c2/forestdiffusion/forest-c2-20260505_045730/_fd_X_host.npy @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:260745c93bbaaa167bd761bd653a194f7b25b477b3929a24e343741a3c4fa280 +size 38824 diff --git a/hyperparameter/c2/forestdiffusion/forest-c2-20260505_045730/_fd_gen.py b/hyperparameter/c2/forestdiffusion/forest-c2-20260505_045730/_fd_gen.py new file mode 100644 index 0000000000000000000000000000000000000000..aef7e91dbd18f5b508935808fbd5b18f1e4c13dd --- /dev/null +++ b/hyperparameter/c2/forestdiffusion/forest-c2-20260505_045730/_fd_gen.py @@ -0,0 +1,8 @@ + +import joblib, pandas as pd +m, meta = joblib.load(r'/work/output-Benchmark-trainonly-v1/c2/forestdiffusion/forest-c2-20260505_045730/forestdiffusion_model.joblib') +# generate:batch_size 为样本数 +arr = m.generate(batch_size=int(1382)) +df = pd.DataFrame(arr, columns=meta["column_names"]) +df.to_csv(r'/work/output-Benchmark-trainonly-v1/c2/forestdiffusion/forest-c2-20260505_045730/forest-c2-1382-20260505_050632.csv', index=False) +print("saved", len(df)) diff --git a/hyperparameter/c2/forestdiffusion/forest-c2-20260505_045730/_fd_meta_host.json b/hyperparameter/c2/forestdiffusion/forest-c2-20260505_045730/_fd_meta_host.json new file mode 100644 index 0000000000000000000000000000000000000000..be467ac019d08a03e8ba5c0d436f59170db78786 --- /dev/null +++ b/hyperparameter/c2/forestdiffusion/forest-c2-20260505_045730/_fd_meta_host.json @@ -0,0 +1 @@ +{"column_names": ["buying", "maint", "doors", "persons", "lug_boot", "safety", "class"], "cat_indexes": [0, 1, 2, 3, 4, 5]} \ No newline at end of file diff --git a/hyperparameter/c2/forestdiffusion/forest-c2-20260505_045730/_fd_train.py b/hyperparameter/c2/forestdiffusion/forest-c2-20260505_045730/_fd_train.py new file mode 100644 index 0000000000000000000000000000000000000000..066be05c04b9454efa1910225deb9632a31a5fef --- /dev/null +++ b/hyperparameter/c2/forestdiffusion/forest-c2-20260505_045730/_fd_train.py @@ -0,0 +1,36 @@ + +import os, shutil, json +with open('/tmp/pgrep', 'w') as _f: + _f.write("#!/usr/bin/env python3\n") + _f.write("import subprocess, sys\n") + _f.write("ppid = sys.argv[-1]\n") + _f.write("out = subprocess.check_output(['ps', '-o', 'pid=', '--ppid', str(ppid)], text=True)\n") + _f.write("print(out, end='')\n") +os.chmod('/tmp/pgrep', 0o755) +os.environ['PATH'] = '/tmp:' + os.environ.get('PATH', '') +shutil.copy(r'/work/output-Benchmark-trainonly-v1/c2/forestdiffusion/forest-c2-20260505_045730/_fd_X_host.npy', '/tmp/fd_X.npy') +with open(r'/work/output-Benchmark-trainonly-v1/c2/forestdiffusion/forest-c2-20260505_045730/_fd_meta_host.json') as f: + open('/tmp/fd_meta.json','w').write(f.read()) + +import numpy as np, joblib, json, os +from ForestDiffusion import ForestDiffusionModel +X = np.load("/tmp/fd_X.npy") +with open("/tmp/fd_meta.json") as f: + meta = json.load(f) +cat_indexes = meta["cat_indexes"] +print( + "[ForestDiffusion] train config: " + f"rows={X.shape[0]} cols={X.shape[1]} n_t=8 " + f"n_estimators=10 duplicate_K=4 n_jobs=1 " + f"max_depth=4 xgb_verbosity=1", + flush=True, +) +m = ForestDiffusionModel( + X, n_t=8, n_estimators=10, duplicate_K=4, n_jobs=1, + model="xgboost", max_depth=4, tree_method="hist", cat_indexes=cat_indexes, + verbosity=1, +) +joblib.dump((m, meta), "/tmp/fd_model.joblib") +print("ForestDiffusion train OK") + +shutil.copy('/tmp/fd_model.joblib', r'/work/output-Benchmark-trainonly-v1/c2/forestdiffusion/forest-c2-20260505_045730/forestdiffusion_model.joblib') diff --git a/hyperparameter/c2/forestdiffusion/forest-c2-20260505_045730/forest-c2-1382-20260505_050632.csv b/hyperparameter/c2/forestdiffusion/forest-c2-20260505_045730/forest-c2-1382-20260505_050632.csv new file mode 100644 index 0000000000000000000000000000000000000000..2024b173eea4926316017cd9f9de69cd099cf234 --- /dev/null +++ b/hyperparameter/c2/forestdiffusion/forest-c2-20260505_045730/forest-c2-1382-20260505_050632.csv @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:f43ecab16c7f88a98f8e49b8006a10a4c0307cac414effd57bbb97f67f959af9 +size 58265 diff --git a/hyperparameter/c2/forestdiffusion/forest-c2-20260505_045730/forestdiffusion_model.joblib b/hyperparameter/c2/forestdiffusion/forest-c2-20260505_045730/forestdiffusion_model.joblib new file mode 100644 index 0000000000000000000000000000000000000000..252dbc75212fc2d0857fcc80e4f7f2a9054bfbcc --- /dev/null +++ b/hyperparameter/c2/forestdiffusion/forest-c2-20260505_045730/forestdiffusion_model.joblib @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:131fd1453c5ce54e95649b6dcab0d1290cc35cdfc369fe5838523a7721649df3 +size 2388868 diff --git a/hyperparameter/c2/forestdiffusion/forest-c2-20260505_045730/gen_20260505_050632.log b/hyperparameter/c2/forestdiffusion/forest-c2-20260505_045730/gen_20260505_050632.log new file mode 100644 index 0000000000000000000000000000000000000000..ed461ef392bcf4757eee5611cf95242e2c9bfc0f --- /dev/null +++ b/hyperparameter/c2/forestdiffusion/forest-c2-20260505_045730/gen_20260505_050632.log @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:ee19b1205d03ca7a7813e03a4f2104b3f38bc89837335dcb851640fdaee32fdc +size 294 diff --git a/hyperparameter/c2/forestdiffusion/forest-c2-20260505_045730/input_snapshot.json b/hyperparameter/c2/forestdiffusion/forest-c2-20260505_045730/input_snapshot.json new file mode 100644 index 0000000000000000000000000000000000000000..24ba74f272fb2c967af52a4ad4947955f45646ea --- /dev/null +++ b/hyperparameter/c2/forestdiffusion/forest-c2-20260505_045730/input_snapshot.json @@ -0,0 +1,36 @@ +{ + "dataset_id": "c2", + "model": "forestdiffusion", + "inputs": { + "train_csv": { + "path": "/data/jialinzhang/SynthesizePipeline-server/DatasetNew/c2/c2-train.csv", + "exists": true, + "size": 42948, + "sha256": "17bc560fa96bd00fb3b526e1e65bc91210b701d0d0a4e8bb9b4c5196cab56def" + }, + "val_csv": { + "path": "/data/jialinzhang/SynthesizePipeline-server/DatasetNew/c2/c2-val.csv", + "exists": true, + "size": 5349, + "sha256": "61e565eca62e65a7dccd9d51039a3170413379e10fc494e25870e7c4294863c9" + }, + "test_csv": { + "path": "/data/jialinzhang/SynthesizePipeline-server/DatasetNew/c2/c2-test.csv", + "exists": true, + "size": 5448, + "sha256": "cbcbb062a1faf5fa44b66c80532baa229e05b94fc42137269761e6c6d84af20a" + }, + "profile_json": { + "path": "/data/jialinzhang/SynthesizePipeline-server/DatasetNew/artifacts/data_core/tabular/c2/c2-dataset_profile.json", + "exists": true, + "size": 3240, + "sha256": "526b7163b2076c93c0bf4638438081ee8a6907065d5b608faa40d1a3dbc2a27b" + }, + "contract_json": { + "path": "/data/jialinzhang/SynthesizePipeline-server/DatasetNew/artifacts/data_core/tabular/c2/c2-dataset_contract_v1.json", + "exists": true, + "size": 3731, + "sha256": "fb595a876054c2ee9b4e10cfe83a5691588de1d25466cbb9d473c18ad3604009" + } + } +} \ No newline at end of file diff --git a/hyperparameter/c2/forestdiffusion/forest-c2-20260505_045730/models_fd/model.joblib b/hyperparameter/c2/forestdiffusion/forest-c2-20260505_045730/models_fd/model.joblib new file mode 100644 index 0000000000000000000000000000000000000000..252dbc75212fc2d0857fcc80e4f7f2a9054bfbcc --- /dev/null +++ b/hyperparameter/c2/forestdiffusion/forest-c2-20260505_045730/models_fd/model.joblib @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:131fd1453c5ce54e95649b6dcab0d1290cc35cdfc369fe5838523a7721649df3 +size 2388868 diff --git a/hyperparameter/c2/forestdiffusion/forest-c2-20260505_045730/public_gate/normalized_schema_snapshot.json b/hyperparameter/c2/forestdiffusion/forest-c2-20260505_045730/public_gate/normalized_schema_snapshot.json new file mode 100644 index 0000000000000000000000000000000000000000..689b1d00d96508e44ba40e58dc4560e19afc2b3b --- /dev/null +++ b/hyperparameter/c2/forestdiffusion/forest-c2-20260505_045730/public_gate/normalized_schema_snapshot.json @@ -0,0 +1,144 @@ +{ + "dataset_id": "c2", + "target_column": "class", + "task_type": "classification", + "columns": [ + { + "name": "buying", + "role": "feature", + "semantic_type": "categorical", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 4, + "unique_ratio": 0.002894, + "example_values": [ + "vhigh", + "med", + "high", + "low" + ] + } + }, + { + "name": "maint", + "role": "feature", + "semantic_type": "categorical", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 4, + "unique_ratio": 0.002894, + "example_values": [ + "vhigh", + "low", + "med", + "high" + ] + } + }, + { + "name": "doors", + "role": "feature", + "semantic_type": "categorical", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 4, + "unique_ratio": 0.002894, + "example_values": [ + "2", + "5more", + "3", + "4" + ] + } + }, + { + "name": "persons", + "role": "feature", + "semantic_type": "categorical", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 3, + "unique_ratio": 0.002171, + "example_values": [ + "2", + "4", + "more" + ] + } + }, + { + "name": "lug_boot", + "role": "feature", + "semantic_type": "categorical", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 3, + "unique_ratio": 0.002171, + "example_values": [ + "small", + "big", + "med" + ] + } + }, + { + "name": "safety", + "role": "feature", + "semantic_type": "categorical", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 3, + "unique_ratio": 0.002171, + "example_values": [ + "low", + "high", + "med" + ] + } + }, + { + "name": "class", + "role": "target", + "semantic_type": "categorical", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 4, + "unique_ratio": 0.002894, + "example_values": [ + "unacc", + "good", + "acc", + "vgood" + ] + } + } + ] +} \ No newline at end of file diff --git a/hyperparameter/c2/forestdiffusion/forest-c2-20260505_045730/public_gate/public_gate_report.json b/hyperparameter/c2/forestdiffusion/forest-c2-20260505_045730/public_gate/public_gate_report.json new file mode 100644 index 0000000000000000000000000000000000000000..2e4cdcb2a4e28e40d59b17a83e773f622b7636a5 --- /dev/null +++ b/hyperparameter/c2/forestdiffusion/forest-c2-20260505_045730/public_gate/public_gate_report.json @@ -0,0 +1,37 @@ +{ + "dataset_id": "c2", + "status": "pass", + "checks": [ + { + "check_id": "PG001_csv_parse_ok", + "status": "pass" + }, + { + "check_id": "PG002_split_header_consistent", + "status": "pass" + }, + { + "check_id": "PG003_profile_header_match", + "status": "pass" + }, + { + "check_id": "PG004_missing_token_normalized", + "status": "pass" + }, + { + "check_id": "PG005_semantic_type_validated", + "status": "pass" + }, + { + "check_id": "PG006_target_defined_and_valid", + "status": "pass" + } + ], + "target_column": "class", + "task_type": "classification", + "input_splits": { + "train": "/data/jialinzhang/SynthesizePipeline-server/DatasetNew/c2/c2-train.csv", + "val": "/data/jialinzhang/SynthesizePipeline-server/DatasetNew/c2/c2-val.csv", + "test": "/data/jialinzhang/SynthesizePipeline-server/DatasetNew/c2/c2-test.csv" + } +} \ No newline at end of file diff --git a/hyperparameter/c2/forestdiffusion/forest-c2-20260505_045730/public_gate/staged_input_manifest.json b/hyperparameter/c2/forestdiffusion/forest-c2-20260505_045730/public_gate/staged_input_manifest.json new file mode 100644 index 0000000000000000000000000000000000000000..380c367ae547f51805ec0e1b278191064d5e5e45 --- /dev/null +++ b/hyperparameter/c2/forestdiffusion/forest-c2-20260505_045730/public_gate/staged_input_manifest.json @@ -0,0 +1,149 @@ +{ + "dataset_id": "c2", + "target_column": "class", + "task_type": "classification", + "train_csv": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/c2/forestdiffusion/forest-c2-20260505_045730/staged/public/train.csv", + "val_csv": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/c2/forestdiffusion/forest-c2-20260505_045730/staged/public/val.csv", + "test_csv": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/c2/forestdiffusion/forest-c2-20260505_045730/staged/public/test.csv", + "features_json": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/c2/forestdiffusion/forest-c2-20260505_045730/staged/public/staged_features.json", + "public_gate_report": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/c2/forestdiffusion/forest-c2-20260505_045730/public_gate/public_gate_report.json", + "column_schema": [ + { + "name": "buying", + "role": "feature", + "semantic_type": "categorical", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 4, + "unique_ratio": 0.002894, + "example_values": [ + "vhigh", + "med", + "high", + "low" + ] + } + }, + { + "name": "maint", + "role": "feature", + "semantic_type": "categorical", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 4, + "unique_ratio": 0.002894, + "example_values": [ + "vhigh", + "low", + "med", + "high" + ] + } + }, + { + "name": "doors", + "role": "feature", + "semantic_type": "categorical", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 4, + "unique_ratio": 0.002894, + "example_values": [ + "2", + "5more", + "3", + "4" + ] + } + }, + { + "name": "persons", + "role": "feature", + "semantic_type": "categorical", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 3, + "unique_ratio": 0.002171, + "example_values": [ + "2", + "4", + "more" + ] + } + }, + { + "name": "lug_boot", + "role": "feature", + "semantic_type": "categorical", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 3, + "unique_ratio": 0.002171, + "example_values": [ + "small", + "big", + "med" + ] + } + }, + { + "name": "safety", + "role": "feature", + "semantic_type": "categorical", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 3, + "unique_ratio": 0.002171, + "example_values": [ + "low", + "high", + "med" + ] + } + }, + { + "name": "class", + "role": "target", + "semantic_type": "categorical", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 4, + "unique_ratio": 0.002894, + "example_values": [ + "unacc", + "good", + "acc", + "vgood" + ] + } + } + ] +} \ No newline at end of file diff --git a/hyperparameter/c2/forestdiffusion/forest-c2-20260505_045730/run_config.json b/hyperparameter/c2/forestdiffusion/forest-c2-20260505_045730/run_config.json new file mode 100644 index 0000000000000000000000000000000000000000..320e1d812e92d03359d933993c5724aa0fcda059 --- /dev/null +++ b/hyperparameter/c2/forestdiffusion/forest-c2-20260505_045730/run_config.json @@ -0,0 +1,45 @@ +{ + "schema_version": 1, + "recorded_at": "2026-05-05T04:57:30", + "dataset_id": "c2", + "model": "forestdiffusion", + "work_dir": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/c2/forestdiffusion/forest-c2-20260505_045730", + "dataset_source_requested": "new", + "dataset_source_resolved": "new", + "cli_args": { + "model": "forestdiffusion", + "dataset": "c2", + "dataset_source": "new", + "train": true, + "generate": true, + "num_rows": 0, + "epochs": null, + "output_dir": null, + "model_dir": null, + "work_dir": null, + "resume": false, + "no_stats": false + }, + "resolved": { + "num_rows": 1382, + "model_path": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/c2/forestdiffusion/forest-c2-20260505_045730/models_fd/model.joblib", + "output_csv": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/c2/forestdiffusion/forest-c2-20260505_045730/forest-c2-1382-20260505_050632.csv" + }, + "input_artifacts": { + "public_gate_report": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/c2/forestdiffusion/forest-c2-20260505_045730/public_gate/public_gate_report.json", + "public_manifest": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/c2/forestdiffusion/forest-c2-20260505_045730/public_gate/staged_input_manifest.json", + "model_manifest": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/c2/forestdiffusion/forest-c2-20260505_045730/staged/forestdiffusion/model_input_manifest.json", + "train_csv": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/c2/forestdiffusion/forest-c2-20260505_045730/staged/public/train.csv", + "features_json": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/c2/forestdiffusion/forest-c2-20260505_045730/staged/public/staged_features.json", + "target_column": "class", + "task_type": "classification" + }, + "env_overrides": { + "FORESTDIFFUSION_DUPLICATE_K": "4", + "FORESTDIFFUSION_MAX_DEPTH": "4", + "FORESTDIFFUSION_MAX_TRAIN_ROWS": "20000", + "FORESTDIFFUSION_N_ESTIMATORS": "10", + "FORESTDIFFUSION_N_JOBS": "1", + "FORESTDIFFUSION_N_T": "8" + } +} \ No newline at end of file diff --git a/hyperparameter/c2/forestdiffusion/forest-c2-20260505_045730/runtime_result.json b/hyperparameter/c2/forestdiffusion/forest-c2-20260505_045730/runtime_result.json new file mode 100644 index 0000000000000000000000000000000000000000..5fc657bf971be6f90cae4596aa5766342263aff5 --- /dev/null +++ b/hyperparameter/c2/forestdiffusion/forest-c2-20260505_045730/runtime_result.json @@ -0,0 +1,27 @@ +{ + "dataset_id": "c2", + "model": "forestdiffusion", + "run_id": "forest-c2-20260505_045730", + "public_gate_status": "pass", + "adapter_ready_status": "pass", + "train_status": "success", + "generate_status": "success", + "reason_code": null, + "reason_detail": null, + "artifacts": { + "synthetic_csv": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/c2/forestdiffusion/forest-c2-20260505_045730/forest-c2-1382-20260505_050632.csv", + "model_path": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/c2/forestdiffusion/forest-c2-20260505_045730/models_fd/model.joblib" + }, + "timings": { + "train": { + "started_at": "2026-05-05T04:57:30", + "ended_at": "2026-05-05T05:06:32", + "duration_sec": 541.169 + }, + "generate": { + "started_at": "2026-05-05T05:06:32", + "ended_at": "2026-05-05T05:06:35", + "duration_sec": 3.107 + } + } +} \ No newline at end of file diff --git a/hyperparameter/c2/forestdiffusion/forest-c2-20260505_045730/staged/forestdiffusion/adapter_report.json b/hyperparameter/c2/forestdiffusion/forest-c2-20260505_045730/staged/forestdiffusion/adapter_report.json new file mode 100644 index 0000000000000000000000000000000000000000..60f852ca6431e3e6aed8758a277903e9ae689dbd --- /dev/null +++ b/hyperparameter/c2/forestdiffusion/forest-c2-20260505_045730/staged/forestdiffusion/adapter_report.json @@ -0,0 +1,7 @@ +{ + "adapter_ready_status": "pass", + "adapter_fail_reason_code": null, + "adapter_fail_detail": null, + "adapter_transforms_applied": [], + "model_input_manifest": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/c2/forestdiffusion/forest-c2-20260505_045730/staged/forestdiffusion/model_input_manifest.json" +} \ No newline at end of file diff --git a/hyperparameter/c2/forestdiffusion/forest-c2-20260505_045730/staged/forestdiffusion/adapter_transforms_applied.json b/hyperparameter/c2/forestdiffusion/forest-c2-20260505_045730/staged/forestdiffusion/adapter_transforms_applied.json new file mode 100644 index 0000000000000000000000000000000000000000..0637a088a01e8ddab3bf3fa98dbe804cbde1a0dc --- /dev/null +++ b/hyperparameter/c2/forestdiffusion/forest-c2-20260505_045730/staged/forestdiffusion/adapter_transforms_applied.json @@ -0,0 +1 @@ +[] \ No newline at end of file diff --git a/hyperparameter/c2/forestdiffusion/forest-c2-20260505_045730/staged/forestdiffusion/model_input_manifest.json b/hyperparameter/c2/forestdiffusion/forest-c2-20260505_045730/staged/forestdiffusion/model_input_manifest.json new file mode 100644 index 0000000000000000000000000000000000000000..27900b283fc4edefbc1c59719b7c759a30012e27 --- /dev/null +++ b/hyperparameter/c2/forestdiffusion/forest-c2-20260505_045730/staged/forestdiffusion/model_input_manifest.json @@ -0,0 +1,151 @@ +{ + "dataset_id": "c2", + "model": "forestdiffusion", + "target_column": "class", + "task_type": "classification", + "column_schema": [ + { + "name": "buying", + "role": "feature", + "semantic_type": "categorical", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 4, + "unique_ratio": 0.002894, + "example_values": [ + "vhigh", + "med", + "high", + "low" + ] + } + }, + { + "name": "maint", + "role": "feature", + "semantic_type": "categorical", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 4, + "unique_ratio": 0.002894, + "example_values": [ + "vhigh", + "low", + "med", + "high" + ] + } + }, + { + "name": "doors", + "role": "feature", + "semantic_type": "categorical", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 4, + "unique_ratio": 0.002894, + "example_values": [ + "2", + "5more", + "3", + "4" + ] + } + }, + { + "name": "persons", + "role": "feature", + "semantic_type": "categorical", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 3, + "unique_ratio": 0.002171, + "example_values": [ + "2", + "4", + "more" + ] + } + }, + { + "name": "lug_boot", + "role": "feature", + "semantic_type": "categorical", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 3, + "unique_ratio": 0.002171, + "example_values": [ + "small", + "big", + "med" + ] + } + }, + { + "name": "safety", + "role": "feature", + "semantic_type": "categorical", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 3, + "unique_ratio": 0.002171, + "example_values": [ + "low", + "high", + "med" + ] + } + }, + { + "name": "class", + "role": "target", + "semantic_type": "categorical", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 4, + "unique_ratio": 0.002894, + "example_values": [ + "unacc", + "good", + "acc", + "vgood" + ] + } + } + ], + "public_manifest": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/c2/forestdiffusion/forest-c2-20260505_045730/public_gate/staged_input_manifest.json", + "train_csv": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/c2/forestdiffusion/forest-c2-20260505_045730/staged/public/train.csv", + "val_csv": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/c2/forestdiffusion/forest-c2-20260505_045730/staged/public/val.csv", + "test_csv": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/c2/forestdiffusion/forest-c2-20260505_045730/staged/public/test.csv", + "features_json": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/c2/forestdiffusion/forest-c2-20260505_045730/staged/public/staged_features.json", + "public_gate_report": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/c2/forestdiffusion/forest-c2-20260505_045730/public_gate/public_gate_report.json" +} \ No newline at end of file diff --git a/hyperparameter/c2/forestdiffusion/forest-c2-20260505_045730/staged/public/staged_features.json b/hyperparameter/c2/forestdiffusion/forest-c2-20260505_045730/staged/public/staged_features.json new file mode 100644 index 0000000000000000000000000000000000000000..61783861dd5de501592f76acb0469cf3f3b2622a --- /dev/null +++ b/hyperparameter/c2/forestdiffusion/forest-c2-20260505_045730/staged/public/staged_features.json @@ -0,0 +1,37 @@ +[ + { + "feature_name": "buying", + "data_type": "categorical", + "is_target": false + }, + { + "feature_name": "maint", + "data_type": "categorical", + "is_target": false + }, + { + "feature_name": "doors", + "data_type": "categorical", + "is_target": false + }, + { + "feature_name": "persons", + "data_type": "categorical", + "is_target": false + }, + { + "feature_name": "lug_boot", + "data_type": "categorical", + "is_target": false + }, + { + "feature_name": "safety", + "data_type": "categorical", + "is_target": false + }, + { + "feature_name": "class", + "data_type": "categorical", + "is_target": true + } +] \ No newline at end of file diff --git a/hyperparameter/c2/forestdiffusion/forest-c2-20260505_045730/staged/public/test.csv b/hyperparameter/c2/forestdiffusion/forest-c2-20260505_045730/staged/public/test.csv new file mode 100644 index 0000000000000000000000000000000000000000..392a0d7189a34d8f13ecf20a99d64b03230d517c --- /dev/null +++ b/hyperparameter/c2/forestdiffusion/forest-c2-20260505_045730/staged/public/test.csv @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:b48114a7d0bc5bd9a07920f903c8d4aba8bf98bf2a66a050da03588b0245ca73 +size 5273 diff --git a/hyperparameter/c2/forestdiffusion/forest-c2-20260505_045730/staged/public/train.csv b/hyperparameter/c2/forestdiffusion/forest-c2-20260505_045730/staged/public/train.csv new file mode 100644 index 0000000000000000000000000000000000000000..da4f4d55134eebc0e51157d0d467536371db1484 --- /dev/null +++ b/hyperparameter/c2/forestdiffusion/forest-c2-20260505_045730/staged/public/train.csv @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:4aed00c2c2b3f88a55a7ebff31b2e1b5e0e32fb0a7267e0b9d2779cd23e434dd +size 41565 diff --git a/hyperparameter/c2/forestdiffusion/forest-c2-20260505_045730/staged/public/val.csv b/hyperparameter/c2/forestdiffusion/forest-c2-20260505_045730/staged/public/val.csv new file mode 100644 index 0000000000000000000000000000000000000000..af8caf7ee42524188534a3daf32996dc491952d9 --- /dev/null +++ b/hyperparameter/c2/forestdiffusion/forest-c2-20260505_045730/staged/public/val.csv @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:26e90c1170a57a14c05832ac88027722b1f3848f9662c7c09ef7c93dcba4cc01 +size 5176 diff --git a/hyperparameter/c2/forestdiffusion/forest-c2-20260505_045730/train_20260505_045730.log b/hyperparameter/c2/forestdiffusion/forest-c2-20260505_045730/train_20260505_045730.log new file mode 100644 index 0000000000000000000000000000000000000000..78bf25b1d4d4efdad97a26ff9ffb72d821d687bd --- /dev/null +++ b/hyperparameter/c2/forestdiffusion/forest-c2-20260505_045730/train_20260505_045730.log @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:f79f9b452f7c22caf1164d9312ae746565677810f387e3fda10d05964c37ade4 +size 432 diff --git a/hyperparameter/c2/forestdiffusion/forest-c2-20260505_050648/_fd_X_host.npy b/hyperparameter/c2/forestdiffusion/forest-c2-20260505_050648/_fd_X_host.npy new file mode 100644 index 0000000000000000000000000000000000000000..2c631eb05814d7aa116816e9799b9c52f8c0e566 --- /dev/null +++ b/hyperparameter/c2/forestdiffusion/forest-c2-20260505_050648/_fd_X_host.npy @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:260745c93bbaaa167bd761bd653a194f7b25b477b3929a24e343741a3c4fa280 +size 38824 diff --git a/hyperparameter/c2/forestdiffusion/forest-c2-20260505_050648/_fd_gen.py b/hyperparameter/c2/forestdiffusion/forest-c2-20260505_050648/_fd_gen.py new file mode 100644 index 0000000000000000000000000000000000000000..fa8d5a2afdd4d9516702bb36a9e5890d073e15cf --- /dev/null +++ b/hyperparameter/c2/forestdiffusion/forest-c2-20260505_050648/_fd_gen.py @@ -0,0 +1,8 @@ + +import joblib, pandas as pd +m, meta = joblib.load(r'/work/output-Benchmark-trainonly-v1/c2/forestdiffusion/forest-c2-20260505_050648/forestdiffusion_model.joblib') +# generate:batch_size 为样本数 +arr = m.generate(batch_size=int(1382)) +df = pd.DataFrame(arr, columns=meta["column_names"]) +df.to_csv(r'/work/output-Benchmark-trainonly-v1/c2/forestdiffusion/forest-c2-20260505_050648/forest-c2-1382-20260505_052347.csv', index=False) +print("saved", len(df)) diff --git a/hyperparameter/c2/forestdiffusion/forest-c2-20260505_050648/_fd_meta_host.json b/hyperparameter/c2/forestdiffusion/forest-c2-20260505_050648/_fd_meta_host.json new file mode 100644 index 0000000000000000000000000000000000000000..be467ac019d08a03e8ba5c0d436f59170db78786 --- /dev/null +++ b/hyperparameter/c2/forestdiffusion/forest-c2-20260505_050648/_fd_meta_host.json @@ -0,0 +1 @@ +{"column_names": ["buying", "maint", "doors", "persons", "lug_boot", "safety", "class"], "cat_indexes": [0, 1, 2, 3, 4, 5]} \ No newline at end of file diff --git a/hyperparameter/c2/forestdiffusion/forest-c2-20260505_050648/_fd_train.py b/hyperparameter/c2/forestdiffusion/forest-c2-20260505_050648/_fd_train.py new file mode 100644 index 0000000000000000000000000000000000000000..6f6c3d4e3ed7d5a7f7774fe1c639bbdc5f11e3f5 --- /dev/null +++ b/hyperparameter/c2/forestdiffusion/forest-c2-20260505_050648/_fd_train.py @@ -0,0 +1,36 @@ + +import os, shutil, json +with open('/tmp/pgrep', 'w') as _f: + _f.write("#!/usr/bin/env python3\n") + _f.write("import subprocess, sys\n") + _f.write("ppid = sys.argv[-1]\n") + _f.write("out = subprocess.check_output(['ps', '-o', 'pid=', '--ppid', str(ppid)], text=True)\n") + _f.write("print(out, end='')\n") +os.chmod('/tmp/pgrep', 0o755) +os.environ['PATH'] = '/tmp:' + os.environ.get('PATH', '') +shutil.copy(r'/work/output-Benchmark-trainonly-v1/c2/forestdiffusion/forest-c2-20260505_050648/_fd_X_host.npy', '/tmp/fd_X.npy') +with open(r'/work/output-Benchmark-trainonly-v1/c2/forestdiffusion/forest-c2-20260505_050648/_fd_meta_host.json') as f: + open('/tmp/fd_meta.json','w').write(f.read()) + +import numpy as np, joblib, json, os +from ForestDiffusion import ForestDiffusionModel +X = np.load("/tmp/fd_X.npy") +with open("/tmp/fd_meta.json") as f: + meta = json.load(f) +cat_indexes = meta["cat_indexes"] +print( + "[ForestDiffusion] train config: " + f"rows={X.shape[0]} cols={X.shape[1]} n_t=10 " + f"n_estimators=15 duplicate_K=5 n_jobs=1 " + f"max_depth=4 xgb_verbosity=1", + flush=True, +) +m = ForestDiffusionModel( + X, n_t=10, n_estimators=15, duplicate_K=5, n_jobs=1, + model="xgboost", max_depth=4, tree_method="hist", cat_indexes=cat_indexes, + verbosity=1, +) +joblib.dump((m, meta), "/tmp/fd_model.joblib") +print("ForestDiffusion train OK") + +shutil.copy('/tmp/fd_model.joblib', r'/work/output-Benchmark-trainonly-v1/c2/forestdiffusion/forest-c2-20260505_050648/forestdiffusion_model.joblib') diff --git a/hyperparameter/c2/forestdiffusion/forest-c2-20260505_050648/forest-c2-1382-20260505_052347.csv b/hyperparameter/c2/forestdiffusion/forest-c2-20260505_050648/forest-c2-1382-20260505_052347.csv new file mode 100644 index 0000000000000000000000000000000000000000..8f3ce4d11a60dc282d0d4584121bb8a7cba5a895 --- /dev/null +++ b/hyperparameter/c2/forestdiffusion/forest-c2-20260505_050648/forest-c2-1382-20260505_052347.csv @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:facfb16ae0476dff908cb7f16779d7e15bcdb636db6146b7217f6afcbc3ec4a6 +size 57878 diff --git a/hyperparameter/c2/forestdiffusion/forest-c2-20260505_050648/forestdiffusion_model.joblib b/hyperparameter/c2/forestdiffusion/forest-c2-20260505_050648/forestdiffusion_model.joblib new file mode 100644 index 0000000000000000000000000000000000000000..cef00e12116f17e3661628234a1f4a9158a5392c --- /dev/null +++ b/hyperparameter/c2/forestdiffusion/forest-c2-20260505_050648/forestdiffusion_model.joblib @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:49f48029400b8e2920df9ec95f52f8253fd5ed887615568b5b3436e4203bba33 +size 4275004 diff --git a/hyperparameter/c2/forestdiffusion/forest-c2-20260505_050648/gen_20260505_052347.log b/hyperparameter/c2/forestdiffusion/forest-c2-20260505_050648/gen_20260505_052347.log new file mode 100644 index 0000000000000000000000000000000000000000..dd7a560c76223ee17fa27d56bcc227b260962e52 --- /dev/null +++ b/hyperparameter/c2/forestdiffusion/forest-c2-20260505_050648/gen_20260505_052347.log @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:719999989388a1639c45cd83725e93a297ed6a1c116289197f3ff344d31bd5b0 +size 294 diff --git a/hyperparameter/c2/forestdiffusion/forest-c2-20260505_050648/input_snapshot.json b/hyperparameter/c2/forestdiffusion/forest-c2-20260505_050648/input_snapshot.json new file mode 100644 index 0000000000000000000000000000000000000000..24ba74f272fb2c967af52a4ad4947955f45646ea --- /dev/null +++ b/hyperparameter/c2/forestdiffusion/forest-c2-20260505_050648/input_snapshot.json @@ -0,0 +1,36 @@ +{ + "dataset_id": "c2", + "model": "forestdiffusion", + "inputs": { + "train_csv": { + "path": "/data/jialinzhang/SynthesizePipeline-server/DatasetNew/c2/c2-train.csv", + "exists": true, + "size": 42948, + "sha256": "17bc560fa96bd00fb3b526e1e65bc91210b701d0d0a4e8bb9b4c5196cab56def" + }, + "val_csv": { + "path": "/data/jialinzhang/SynthesizePipeline-server/DatasetNew/c2/c2-val.csv", + "exists": true, + "size": 5349, + "sha256": "61e565eca62e65a7dccd9d51039a3170413379e10fc494e25870e7c4294863c9" + }, + "test_csv": { + "path": "/data/jialinzhang/SynthesizePipeline-server/DatasetNew/c2/c2-test.csv", + "exists": true, + "size": 5448, + "sha256": "cbcbb062a1faf5fa44b66c80532baa229e05b94fc42137269761e6c6d84af20a" + }, + "profile_json": { + "path": "/data/jialinzhang/SynthesizePipeline-server/DatasetNew/artifacts/data_core/tabular/c2/c2-dataset_profile.json", + "exists": true, + "size": 3240, + "sha256": "526b7163b2076c93c0bf4638438081ee8a6907065d5b608faa40d1a3dbc2a27b" + }, + "contract_json": { + "path": "/data/jialinzhang/SynthesizePipeline-server/DatasetNew/artifacts/data_core/tabular/c2/c2-dataset_contract_v1.json", + "exists": true, + "size": 3731, + "sha256": "fb595a876054c2ee9b4e10cfe83a5691588de1d25466cbb9d473c18ad3604009" + } + } +} \ No newline at end of file diff --git a/hyperparameter/c2/forestdiffusion/forest-c2-20260505_050648/models_fd/model.joblib b/hyperparameter/c2/forestdiffusion/forest-c2-20260505_050648/models_fd/model.joblib new file mode 100644 index 0000000000000000000000000000000000000000..cef00e12116f17e3661628234a1f4a9158a5392c --- /dev/null +++ b/hyperparameter/c2/forestdiffusion/forest-c2-20260505_050648/models_fd/model.joblib @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:49f48029400b8e2920df9ec95f52f8253fd5ed887615568b5b3436e4203bba33 +size 4275004 diff --git a/hyperparameter/c2/forestdiffusion/forest-c2-20260505_050648/public_gate/normalized_schema_snapshot.json b/hyperparameter/c2/forestdiffusion/forest-c2-20260505_050648/public_gate/normalized_schema_snapshot.json new file mode 100644 index 0000000000000000000000000000000000000000..689b1d00d96508e44ba40e58dc4560e19afc2b3b --- /dev/null +++ b/hyperparameter/c2/forestdiffusion/forest-c2-20260505_050648/public_gate/normalized_schema_snapshot.json @@ -0,0 +1,144 @@ +{ + "dataset_id": "c2", + "target_column": "class", + "task_type": "classification", + "columns": [ + { + "name": "buying", + "role": "feature", + "semantic_type": "categorical", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 4, + "unique_ratio": 0.002894, + "example_values": [ + "vhigh", + "med", + "high", + "low" + ] + } + }, + { + "name": "maint", + "role": "feature", + "semantic_type": "categorical", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 4, + "unique_ratio": 0.002894, + "example_values": [ + "vhigh", + "low", + "med", + "high" + ] + } + }, + { + "name": "doors", + "role": "feature", + "semantic_type": "categorical", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 4, + "unique_ratio": 0.002894, + "example_values": [ + "2", + "5more", + "3", + "4" + ] + } + }, + { + "name": "persons", + "role": "feature", + "semantic_type": "categorical", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 3, + "unique_ratio": 0.002171, + "example_values": [ + "2", + "4", + "more" + ] + } + }, + { + "name": "lug_boot", + "role": "feature", + "semantic_type": "categorical", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 3, + "unique_ratio": 0.002171, + "example_values": [ + "small", + "big", + "med" + ] + } + }, + { + "name": "safety", + "role": "feature", + "semantic_type": "categorical", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 3, + "unique_ratio": 0.002171, + "example_values": [ + "low", + "high", + "med" + ] + } + }, + { + "name": "class", + "role": "target", + "semantic_type": "categorical", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 4, + "unique_ratio": 0.002894, + "example_values": [ + "unacc", + "good", + "acc", + "vgood" + ] + } + } + ] +} \ No newline at end of file diff --git a/hyperparameter/c2/forestdiffusion/forest-c2-20260505_050648/public_gate/public_gate_report.json b/hyperparameter/c2/forestdiffusion/forest-c2-20260505_050648/public_gate/public_gate_report.json new file mode 100644 index 0000000000000000000000000000000000000000..2e4cdcb2a4e28e40d59b17a83e773f622b7636a5 --- /dev/null +++ b/hyperparameter/c2/forestdiffusion/forest-c2-20260505_050648/public_gate/public_gate_report.json @@ -0,0 +1,37 @@ +{ + "dataset_id": "c2", + "status": "pass", + "checks": [ + { + "check_id": "PG001_csv_parse_ok", + "status": "pass" + }, + { + "check_id": "PG002_split_header_consistent", + "status": "pass" + }, + { + "check_id": "PG003_profile_header_match", + "status": "pass" + }, + { + "check_id": "PG004_missing_token_normalized", + "status": "pass" + }, + { + "check_id": "PG005_semantic_type_validated", + "status": "pass" + }, + { + "check_id": "PG006_target_defined_and_valid", + "status": "pass" + } + ], + "target_column": "class", + "task_type": "classification", + "input_splits": { + "train": "/data/jialinzhang/SynthesizePipeline-server/DatasetNew/c2/c2-train.csv", + "val": "/data/jialinzhang/SynthesizePipeline-server/DatasetNew/c2/c2-val.csv", + "test": "/data/jialinzhang/SynthesizePipeline-server/DatasetNew/c2/c2-test.csv" + } +} \ No newline at end of file diff --git a/hyperparameter/c2/forestdiffusion/forest-c2-20260505_050648/public_gate/staged_input_manifest.json b/hyperparameter/c2/forestdiffusion/forest-c2-20260505_050648/public_gate/staged_input_manifest.json new file mode 100644 index 0000000000000000000000000000000000000000..60e2d05844ec0f8769641c32a3d5e1e0c372979f --- /dev/null +++ b/hyperparameter/c2/forestdiffusion/forest-c2-20260505_050648/public_gate/staged_input_manifest.json @@ -0,0 +1,149 @@ +{ + "dataset_id": "c2", + "target_column": "class", + "task_type": "classification", + "train_csv": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/c2/forestdiffusion/forest-c2-20260505_050648/staged/public/train.csv", + "val_csv": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/c2/forestdiffusion/forest-c2-20260505_050648/staged/public/val.csv", + "test_csv": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/c2/forestdiffusion/forest-c2-20260505_050648/staged/public/test.csv", + "features_json": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/c2/forestdiffusion/forest-c2-20260505_050648/staged/public/staged_features.json", + "public_gate_report": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/c2/forestdiffusion/forest-c2-20260505_050648/public_gate/public_gate_report.json", + "column_schema": [ + { + "name": "buying", + "role": "feature", + "semantic_type": "categorical", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 4, + "unique_ratio": 0.002894, + "example_values": [ + "vhigh", + "med", + "high", + "low" + ] + } + }, + { + "name": "maint", + "role": "feature", + "semantic_type": "categorical", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 4, + "unique_ratio": 0.002894, + "example_values": [ + "vhigh", + "low", + "med", + "high" + ] + } + }, + { + "name": "doors", + "role": "feature", + "semantic_type": "categorical", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 4, + "unique_ratio": 0.002894, + "example_values": [ + "2", + "5more", + "3", + "4" + ] + } + }, + { + "name": "persons", + "role": "feature", + "semantic_type": "categorical", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 3, + "unique_ratio": 0.002171, + "example_values": [ + "2", + "4", + "more" + ] + } + }, + { + "name": "lug_boot", + "role": "feature", + "semantic_type": "categorical", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 3, + "unique_ratio": 0.002171, + "example_values": [ + "small", + "big", + "med" + ] + } + }, + { + "name": "safety", + "role": "feature", + "semantic_type": "categorical", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 3, + "unique_ratio": 0.002171, + "example_values": [ + "low", + "high", + "med" + ] + } + }, + { + "name": "class", + "role": "target", + "semantic_type": "categorical", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 4, + "unique_ratio": 0.002894, + "example_values": [ + "unacc", + "good", + "acc", + "vgood" + ] + } + } + ] +} \ No newline at end of file diff --git a/hyperparameter/c2/forestdiffusion/forest-c2-20260505_050648/run_config.json b/hyperparameter/c2/forestdiffusion/forest-c2-20260505_050648/run_config.json new file mode 100644 index 0000000000000000000000000000000000000000..299e04922fafd5c3b5792026e5947463a4bf0f07 --- /dev/null +++ b/hyperparameter/c2/forestdiffusion/forest-c2-20260505_050648/run_config.json @@ -0,0 +1,45 @@ +{ + "schema_version": 1, + "recorded_at": "2026-05-05T05:06:48", + "dataset_id": "c2", + "model": "forestdiffusion", + "work_dir": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/c2/forestdiffusion/forest-c2-20260505_050648", + "dataset_source_requested": "new", + "dataset_source_resolved": "new", + "cli_args": { + "model": "forestdiffusion", + "dataset": "c2", + "dataset_source": "new", + "train": true, + "generate": true, + "num_rows": 0, + "epochs": null, + "output_dir": null, + "model_dir": null, + "work_dir": null, + "resume": false, + "no_stats": false + }, + "resolved": { + "num_rows": 1382, + "model_path": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/c2/forestdiffusion/forest-c2-20260505_050648/models_fd/model.joblib", + "output_csv": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/c2/forestdiffusion/forest-c2-20260505_050648/forest-c2-1382-20260505_052347.csv" + }, + "input_artifacts": { + "public_gate_report": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/c2/forestdiffusion/forest-c2-20260505_050648/public_gate/public_gate_report.json", + "public_manifest": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/c2/forestdiffusion/forest-c2-20260505_050648/public_gate/staged_input_manifest.json", + "model_manifest": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/c2/forestdiffusion/forest-c2-20260505_050648/staged/forestdiffusion/model_input_manifest.json", + "train_csv": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/c2/forestdiffusion/forest-c2-20260505_050648/staged/public/train.csv", + "features_json": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/c2/forestdiffusion/forest-c2-20260505_050648/staged/public/staged_features.json", + "target_column": "class", + "task_type": "classification" + }, + "env_overrides": { + "FORESTDIFFUSION_DUPLICATE_K": "5", + "FORESTDIFFUSION_MAX_DEPTH": "4", + "FORESTDIFFUSION_MAX_TRAIN_ROWS": "30000", + "FORESTDIFFUSION_N_ESTIMATORS": "15", + "FORESTDIFFUSION_N_JOBS": "1", + "FORESTDIFFUSION_N_T": "10" + } +} \ No newline at end of file diff --git a/hyperparameter/c2/forestdiffusion/forest-c2-20260505_050648/runtime_result.json b/hyperparameter/c2/forestdiffusion/forest-c2-20260505_050648/runtime_result.json new file mode 100644 index 0000000000000000000000000000000000000000..1ee8366529f4752a669ca6200a6080ba31ed642c --- /dev/null +++ b/hyperparameter/c2/forestdiffusion/forest-c2-20260505_050648/runtime_result.json @@ -0,0 +1,27 @@ +{ + "dataset_id": "c2", + "model": "forestdiffusion", + "run_id": "forest-c2-20260505_050648", + "public_gate_status": "pass", + "adapter_ready_status": "pass", + "train_status": "success", + "generate_status": "success", + "reason_code": null, + "reason_detail": null, + "artifacts": { + "synthetic_csv": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/c2/forestdiffusion/forest-c2-20260505_050648/forest-c2-1382-20260505_052347.csv", + "model_path": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/c2/forestdiffusion/forest-c2-20260505_050648/models_fd/model.joblib" + }, + "timings": { + "train": { + "started_at": "2026-05-05T05:06:48", + "ended_at": "2026-05-05T05:23:47", + "duration_sec": 1018.679 + }, + "generate": { + "started_at": "2026-05-05T05:23:47", + "ended_at": "2026-05-05T05:23:51", + "duration_sec": 3.661 + } + } +} \ No newline at end of file diff --git a/hyperparameter/c2/forestdiffusion/forest-c2-20260505_050648/staged/forestdiffusion/adapter_report.json b/hyperparameter/c2/forestdiffusion/forest-c2-20260505_050648/staged/forestdiffusion/adapter_report.json new file mode 100644 index 0000000000000000000000000000000000000000..4dfc6f5816b64c133cc044d2fe865bad6c480698 --- /dev/null +++ b/hyperparameter/c2/forestdiffusion/forest-c2-20260505_050648/staged/forestdiffusion/adapter_report.json @@ -0,0 +1,7 @@ +{ + "adapter_ready_status": "pass", + "adapter_fail_reason_code": null, + "adapter_fail_detail": null, + "adapter_transforms_applied": [], + "model_input_manifest": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/c2/forestdiffusion/forest-c2-20260505_050648/staged/forestdiffusion/model_input_manifest.json" +} \ No newline at end of file diff --git a/hyperparameter/c2/forestdiffusion/forest-c2-20260505_050648/staged/forestdiffusion/adapter_transforms_applied.json b/hyperparameter/c2/forestdiffusion/forest-c2-20260505_050648/staged/forestdiffusion/adapter_transforms_applied.json new file mode 100644 index 0000000000000000000000000000000000000000..0637a088a01e8ddab3bf3fa98dbe804cbde1a0dc --- /dev/null +++ b/hyperparameter/c2/forestdiffusion/forest-c2-20260505_050648/staged/forestdiffusion/adapter_transforms_applied.json @@ -0,0 +1 @@ +[] \ No newline at end of file diff --git a/hyperparameter/c2/forestdiffusion/forest-c2-20260505_050648/staged/forestdiffusion/model_input_manifest.json b/hyperparameter/c2/forestdiffusion/forest-c2-20260505_050648/staged/forestdiffusion/model_input_manifest.json new file mode 100644 index 0000000000000000000000000000000000000000..24040db334105f039110d80596e3adfba12c55b6 --- /dev/null +++ b/hyperparameter/c2/forestdiffusion/forest-c2-20260505_050648/staged/forestdiffusion/model_input_manifest.json @@ -0,0 +1,151 @@ +{ + "dataset_id": "c2", + "model": "forestdiffusion", + "target_column": "class", + "task_type": "classification", + "column_schema": [ + { + "name": "buying", + "role": "feature", + "semantic_type": "categorical", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 4, + "unique_ratio": 0.002894, + "example_values": [ + "vhigh", + "med", + "high", + "low" + ] + } + }, + { + "name": "maint", + "role": "feature", + "semantic_type": "categorical", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 4, + "unique_ratio": 0.002894, + "example_values": [ + "vhigh", + "low", + "med", + "high" + ] + } + }, + { + "name": "doors", + "role": "feature", + "semantic_type": "categorical", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 4, + "unique_ratio": 0.002894, + "example_values": [ + "2", + "5more", + "3", + "4" + ] + } + }, + { + "name": "persons", + "role": "feature", + "semantic_type": "categorical", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 3, + "unique_ratio": 0.002171, + "example_values": [ + "2", + "4", + "more" + ] + } + }, + { + "name": "lug_boot", + "role": "feature", + "semantic_type": "categorical", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 3, + "unique_ratio": 0.002171, + "example_values": [ + "small", + "big", + "med" + ] + } + }, + { + "name": "safety", + "role": "feature", + "semantic_type": "categorical", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 3, + "unique_ratio": 0.002171, + "example_values": [ + "low", + "high", + "med" + ] + } + }, + { + "name": "class", + "role": "target", + "semantic_type": "categorical", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 4, + "unique_ratio": 0.002894, + "example_values": [ + "unacc", + "good", + "acc", + "vgood" + ] + } + } + ], + "public_manifest": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/c2/forestdiffusion/forest-c2-20260505_050648/public_gate/staged_input_manifest.json", + "train_csv": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/c2/forestdiffusion/forest-c2-20260505_050648/staged/public/train.csv", + "val_csv": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/c2/forestdiffusion/forest-c2-20260505_050648/staged/public/val.csv", + "test_csv": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/c2/forestdiffusion/forest-c2-20260505_050648/staged/public/test.csv", + "features_json": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/c2/forestdiffusion/forest-c2-20260505_050648/staged/public/staged_features.json", + "public_gate_report": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/c2/forestdiffusion/forest-c2-20260505_050648/public_gate/public_gate_report.json" +} \ No newline at end of file diff --git a/hyperparameter/c2/forestdiffusion/forest-c2-20260505_050648/staged/public/staged_features.json b/hyperparameter/c2/forestdiffusion/forest-c2-20260505_050648/staged/public/staged_features.json new file mode 100644 index 0000000000000000000000000000000000000000..61783861dd5de501592f76acb0469cf3f3b2622a --- /dev/null +++ b/hyperparameter/c2/forestdiffusion/forest-c2-20260505_050648/staged/public/staged_features.json @@ -0,0 +1,37 @@ +[ + { + "feature_name": "buying", + "data_type": "categorical", + "is_target": false + }, + { + "feature_name": "maint", + "data_type": "categorical", + "is_target": false + }, + { + "feature_name": "doors", + "data_type": "categorical", + "is_target": false + }, + { + "feature_name": "persons", + "data_type": "categorical", + "is_target": false + }, + { + "feature_name": "lug_boot", + "data_type": "categorical", + "is_target": false + }, + { + "feature_name": "safety", + "data_type": "categorical", + "is_target": false + }, + { + "feature_name": "class", + "data_type": "categorical", + "is_target": true + } +] \ No newline at end of file diff --git a/hyperparameter/c2/forestdiffusion/forest-c2-20260505_050648/staged/public/test.csv b/hyperparameter/c2/forestdiffusion/forest-c2-20260505_050648/staged/public/test.csv new file mode 100644 index 0000000000000000000000000000000000000000..392a0d7189a34d8f13ecf20a99d64b03230d517c --- /dev/null +++ b/hyperparameter/c2/forestdiffusion/forest-c2-20260505_050648/staged/public/test.csv @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:b48114a7d0bc5bd9a07920f903c8d4aba8bf98bf2a66a050da03588b0245ca73 +size 5273 diff --git a/hyperparameter/c2/forestdiffusion/forest-c2-20260505_050648/staged/public/train.csv b/hyperparameter/c2/forestdiffusion/forest-c2-20260505_050648/staged/public/train.csv new file mode 100644 index 0000000000000000000000000000000000000000..da4f4d55134eebc0e51157d0d467536371db1484 --- /dev/null +++ b/hyperparameter/c2/forestdiffusion/forest-c2-20260505_050648/staged/public/train.csv @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:4aed00c2c2b3f88a55a7ebff31b2e1b5e0e32fb0a7267e0b9d2779cd23e434dd +size 41565 diff --git a/hyperparameter/c2/forestdiffusion/forest-c2-20260505_050648/staged/public/val.csv b/hyperparameter/c2/forestdiffusion/forest-c2-20260505_050648/staged/public/val.csv new file mode 100644 index 0000000000000000000000000000000000000000..af8caf7ee42524188534a3daf32996dc491952d9 --- /dev/null +++ b/hyperparameter/c2/forestdiffusion/forest-c2-20260505_050648/staged/public/val.csv @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:26e90c1170a57a14c05832ac88027722b1f3848f9662c7c09ef7c93dcba4cc01 +size 5176 diff --git a/hyperparameter/c2/forestdiffusion/forest-c2-20260505_050648/train_20260505_050648.log b/hyperparameter/c2/forestdiffusion/forest-c2-20260505_050648/train_20260505_050648.log new file mode 100644 index 0000000000000000000000000000000000000000..037ccf6a293552b0c364654b059fd94c4cddf349 --- /dev/null +++ b/hyperparameter/c2/forestdiffusion/forest-c2-20260505_050648/train_20260505_050648.log @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:76339749da53196ffe091d0f0987b3be5d0fdbc982279b010394e8743340b139 +size 434 diff --git a/hyperparameter/c2/forestdiffusion/forest-c2-20260505_052404/_fd_X_host.npy b/hyperparameter/c2/forestdiffusion/forest-c2-20260505_052404/_fd_X_host.npy new file mode 100644 index 0000000000000000000000000000000000000000..2c631eb05814d7aa116816e9799b9c52f8c0e566 --- /dev/null +++ b/hyperparameter/c2/forestdiffusion/forest-c2-20260505_052404/_fd_X_host.npy @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:260745c93bbaaa167bd761bd653a194f7b25b477b3929a24e343741a3c4fa280 +size 38824 diff --git a/hyperparameter/c2/forestdiffusion/forest-c2-20260505_052404/_fd_gen.py b/hyperparameter/c2/forestdiffusion/forest-c2-20260505_052404/_fd_gen.py new file mode 100644 index 0000000000000000000000000000000000000000..cb7cc1d86621b2816568bb9f30e83e8b70b1c180 --- /dev/null +++ b/hyperparameter/c2/forestdiffusion/forest-c2-20260505_052404/_fd_gen.py @@ -0,0 +1,8 @@ + +import joblib, pandas as pd +m, meta = joblib.load(r'/work/output-Benchmark-trainonly-v1/c2/forestdiffusion/forest-c2-20260505_052404/forestdiffusion_model.joblib') +# generate:batch_size 为样本数 +arr = m.generate(batch_size=int(1382)) +df = pd.DataFrame(arr, columns=meta["column_names"]) +df.to_csv(r'/work/output-Benchmark-trainonly-v1/c2/forestdiffusion/forest-c2-20260505_052404/forest-c2-1382-20260505_054609.csv', index=False) +print("saved", len(df)) diff --git a/hyperparameter/c2/forestdiffusion/forest-c2-20260505_052404/_fd_meta_host.json b/hyperparameter/c2/forestdiffusion/forest-c2-20260505_052404/_fd_meta_host.json new file mode 100644 index 0000000000000000000000000000000000000000..be467ac019d08a03e8ba5c0d436f59170db78786 --- /dev/null +++ b/hyperparameter/c2/forestdiffusion/forest-c2-20260505_052404/_fd_meta_host.json @@ -0,0 +1 @@ +{"column_names": ["buying", "maint", "doors", "persons", "lug_boot", "safety", "class"], "cat_indexes": [0, 1, 2, 3, 4, 5]} \ No newline at end of file diff --git a/hyperparameter/c2/forestdiffusion/forest-c2-20260505_052404/_fd_train.py b/hyperparameter/c2/forestdiffusion/forest-c2-20260505_052404/_fd_train.py new file mode 100644 index 0000000000000000000000000000000000000000..15945893e0dadd4c7aaa3f988835707b3a5d23ee --- /dev/null +++ b/hyperparameter/c2/forestdiffusion/forest-c2-20260505_052404/_fd_train.py @@ -0,0 +1,36 @@ + +import os, shutil, json +with open('/tmp/pgrep', 'w') as _f: + _f.write("#!/usr/bin/env python3\n") + _f.write("import subprocess, sys\n") + _f.write("ppid = sys.argv[-1]\n") + _f.write("out = subprocess.check_output(['ps', '-o', 'pid=', '--ppid', str(ppid)], text=True)\n") + _f.write("print(out, end='')\n") +os.chmod('/tmp/pgrep', 0o755) +os.environ['PATH'] = '/tmp:' + os.environ.get('PATH', '') +shutil.copy(r'/work/output-Benchmark-trainonly-v1/c2/forestdiffusion/forest-c2-20260505_052404/_fd_X_host.npy', '/tmp/fd_X.npy') +with open(r'/work/output-Benchmark-trainonly-v1/c2/forestdiffusion/forest-c2-20260505_052404/_fd_meta_host.json') as f: + open('/tmp/fd_meta.json','w').write(f.read()) + +import numpy as np, joblib, json, os +from ForestDiffusion import ForestDiffusionModel +X = np.load("/tmp/fd_X.npy") +with open("/tmp/fd_meta.json") as f: + meta = json.load(f) +cat_indexes = meta["cat_indexes"] +print( + "[ForestDiffusion] train config: " + f"rows={X.shape[0]} cols={X.shape[1]} n_t=10 " + f"n_estimators=20 duplicate_K=5 n_jobs=1 " + f"max_depth=4 xgb_verbosity=1", + flush=True, +) +m = ForestDiffusionModel( + X, n_t=10, n_estimators=20, duplicate_K=5, n_jobs=1, + model="xgboost", max_depth=4, tree_method="hist", cat_indexes=cat_indexes, + verbosity=1, +) +joblib.dump((m, meta), "/tmp/fd_model.joblib") +print("ForestDiffusion train OK") + +shutil.copy('/tmp/fd_model.joblib', r'/work/output-Benchmark-trainonly-v1/c2/forestdiffusion/forest-c2-20260505_052404/forestdiffusion_model.joblib') diff --git a/hyperparameter/c2/forestdiffusion/forest-c2-20260505_052404/forest-c2-1382-20260505_054609.csv b/hyperparameter/c2/forestdiffusion/forest-c2-20260505_052404/forest-c2-1382-20260505_054609.csv new file mode 100644 index 0000000000000000000000000000000000000000..269f15ae39675402a7e01b58f06d0f8675e98947 --- /dev/null +++ b/hyperparameter/c2/forestdiffusion/forest-c2-20260505_052404/forest-c2-1382-20260505_054609.csv @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:b89d5dffaa00afa5cbc9342f6b497e507200e6f1fb7fd238c6791d42db2c2786 +size 58075 diff --git a/hyperparameter/c2/forestdiffusion/forest-c2-20260505_052404/forestdiffusion_model.joblib b/hyperparameter/c2/forestdiffusion/forest-c2-20260505_052404/forestdiffusion_model.joblib new file mode 100644 index 0000000000000000000000000000000000000000..ca975ff6bf3b4d9757d2abae1ce881753dc8faf0 --- /dev/null +++ b/hyperparameter/c2/forestdiffusion/forest-c2-20260505_052404/forestdiffusion_model.joblib @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:e7d57f1e8a5ed680814e33d65f515d7c63baf7d15e4c737a1b95cfd994ad1507 +size 5606758 diff --git a/hyperparameter/c2/forestdiffusion/forest-c2-20260505_052404/gen_20260505_054609.log b/hyperparameter/c2/forestdiffusion/forest-c2-20260505_052404/gen_20260505_054609.log new file mode 100644 index 0000000000000000000000000000000000000000..5083ed5719debc9a98b39dde05af7fc812f888e3 --- /dev/null +++ b/hyperparameter/c2/forestdiffusion/forest-c2-20260505_052404/gen_20260505_054609.log @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:acee4de98e923112ee581427bac006730f02512251423e32e4835bf4782df97f +size 294 diff --git a/hyperparameter/c2/forestdiffusion/forest-c2-20260505_052404/input_snapshot.json b/hyperparameter/c2/forestdiffusion/forest-c2-20260505_052404/input_snapshot.json new file mode 100644 index 0000000000000000000000000000000000000000..24ba74f272fb2c967af52a4ad4947955f45646ea --- /dev/null +++ b/hyperparameter/c2/forestdiffusion/forest-c2-20260505_052404/input_snapshot.json @@ -0,0 +1,36 @@ +{ + "dataset_id": "c2", + "model": "forestdiffusion", + "inputs": { + "train_csv": { + "path": "/data/jialinzhang/SynthesizePipeline-server/DatasetNew/c2/c2-train.csv", + "exists": true, + "size": 42948, + "sha256": "17bc560fa96bd00fb3b526e1e65bc91210b701d0d0a4e8bb9b4c5196cab56def" + }, + "val_csv": { + "path": "/data/jialinzhang/SynthesizePipeline-server/DatasetNew/c2/c2-val.csv", + "exists": true, + "size": 5349, + "sha256": "61e565eca62e65a7dccd9d51039a3170413379e10fc494e25870e7c4294863c9" + }, + "test_csv": { + "path": "/data/jialinzhang/SynthesizePipeline-server/DatasetNew/c2/c2-test.csv", + "exists": true, + "size": 5448, + "sha256": "cbcbb062a1faf5fa44b66c80532baa229e05b94fc42137269761e6c6d84af20a" + }, + "profile_json": { + "path": "/data/jialinzhang/SynthesizePipeline-server/DatasetNew/artifacts/data_core/tabular/c2/c2-dataset_profile.json", + "exists": true, + "size": 3240, + "sha256": "526b7163b2076c93c0bf4638438081ee8a6907065d5b608faa40d1a3dbc2a27b" + }, + "contract_json": { + "path": "/data/jialinzhang/SynthesizePipeline-server/DatasetNew/artifacts/data_core/tabular/c2/c2-dataset_contract_v1.json", + "exists": true, + "size": 3731, + "sha256": "fb595a876054c2ee9b4e10cfe83a5691588de1d25466cbb9d473c18ad3604009" + } + } +} \ No newline at end of file diff --git a/hyperparameter/c2/forestdiffusion/forest-c2-20260505_052404/models_fd/model.joblib b/hyperparameter/c2/forestdiffusion/forest-c2-20260505_052404/models_fd/model.joblib new file mode 100644 index 0000000000000000000000000000000000000000..ca975ff6bf3b4d9757d2abae1ce881753dc8faf0 --- /dev/null +++ b/hyperparameter/c2/forestdiffusion/forest-c2-20260505_052404/models_fd/model.joblib @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:e7d57f1e8a5ed680814e33d65f515d7c63baf7d15e4c737a1b95cfd994ad1507 +size 5606758 diff --git a/hyperparameter/c2/forestdiffusion/forest-c2-20260505_052404/public_gate/normalized_schema_snapshot.json b/hyperparameter/c2/forestdiffusion/forest-c2-20260505_052404/public_gate/normalized_schema_snapshot.json new file mode 100644 index 0000000000000000000000000000000000000000..689b1d00d96508e44ba40e58dc4560e19afc2b3b --- /dev/null +++ b/hyperparameter/c2/forestdiffusion/forest-c2-20260505_052404/public_gate/normalized_schema_snapshot.json @@ -0,0 +1,144 @@ +{ + "dataset_id": "c2", + "target_column": "class", + "task_type": "classification", + "columns": [ + { + "name": "buying", + "role": "feature", + "semantic_type": "categorical", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 4, + "unique_ratio": 0.002894, + "example_values": [ + "vhigh", + "med", + "high", + "low" + ] + } + }, + { + "name": "maint", + "role": "feature", + "semantic_type": "categorical", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 4, + "unique_ratio": 0.002894, + "example_values": [ + "vhigh", + "low", + "med", + "high" + ] + } + }, + { + "name": "doors", + "role": "feature", + "semantic_type": "categorical", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 4, + "unique_ratio": 0.002894, + "example_values": [ + "2", + "5more", + "3", + "4" + ] + } + }, + { + "name": "persons", + "role": "feature", + "semantic_type": "categorical", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 3, + "unique_ratio": 0.002171, + "example_values": [ + "2", + "4", + "more" + ] + } + }, + { + "name": "lug_boot", + "role": "feature", + "semantic_type": "categorical", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 3, + "unique_ratio": 0.002171, + "example_values": [ + "small", + "big", + "med" + ] + } + }, + { + "name": "safety", + "role": "feature", + "semantic_type": "categorical", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 3, + "unique_ratio": 0.002171, + "example_values": [ + "low", + "high", + "med" + ] + } + }, + { + "name": "class", + "role": "target", + "semantic_type": "categorical", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 4, + "unique_ratio": 0.002894, + "example_values": [ + "unacc", + "good", + "acc", + "vgood" + ] + } + } + ] +} \ No newline at end of file diff --git a/hyperparameter/c2/forestdiffusion/forest-c2-20260505_052404/public_gate/public_gate_report.json b/hyperparameter/c2/forestdiffusion/forest-c2-20260505_052404/public_gate/public_gate_report.json new file mode 100644 index 0000000000000000000000000000000000000000..2e4cdcb2a4e28e40d59b17a83e773f622b7636a5 --- /dev/null +++ b/hyperparameter/c2/forestdiffusion/forest-c2-20260505_052404/public_gate/public_gate_report.json @@ -0,0 +1,37 @@ +{ + "dataset_id": "c2", + "status": "pass", + "checks": [ + { + "check_id": "PG001_csv_parse_ok", + "status": "pass" + }, + { + "check_id": "PG002_split_header_consistent", + "status": "pass" + }, + { + "check_id": "PG003_profile_header_match", + "status": "pass" + }, + { + "check_id": "PG004_missing_token_normalized", + "status": "pass" + }, + { + "check_id": "PG005_semantic_type_validated", + "status": "pass" + }, + { + "check_id": "PG006_target_defined_and_valid", + "status": "pass" + } + ], + "target_column": "class", + "task_type": "classification", + "input_splits": { + "train": "/data/jialinzhang/SynthesizePipeline-server/DatasetNew/c2/c2-train.csv", + "val": "/data/jialinzhang/SynthesizePipeline-server/DatasetNew/c2/c2-val.csv", + "test": "/data/jialinzhang/SynthesizePipeline-server/DatasetNew/c2/c2-test.csv" + } +} \ No newline at end of file diff --git a/hyperparameter/c2/forestdiffusion/forest-c2-20260505_052404/public_gate/staged_input_manifest.json b/hyperparameter/c2/forestdiffusion/forest-c2-20260505_052404/public_gate/staged_input_manifest.json new file mode 100644 index 0000000000000000000000000000000000000000..2ec4335679bb37a8dce92e1252a4ce2467362568 --- /dev/null +++ b/hyperparameter/c2/forestdiffusion/forest-c2-20260505_052404/public_gate/staged_input_manifest.json @@ -0,0 +1,149 @@ +{ + "dataset_id": "c2", + "target_column": "class", + "task_type": "classification", + "train_csv": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/c2/forestdiffusion/forest-c2-20260505_052404/staged/public/train.csv", + "val_csv": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/c2/forestdiffusion/forest-c2-20260505_052404/staged/public/val.csv", + "test_csv": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/c2/forestdiffusion/forest-c2-20260505_052404/staged/public/test.csv", + "features_json": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/c2/forestdiffusion/forest-c2-20260505_052404/staged/public/staged_features.json", + "public_gate_report": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/c2/forestdiffusion/forest-c2-20260505_052404/public_gate/public_gate_report.json", + "column_schema": [ + { + "name": "buying", + "role": "feature", + "semantic_type": "categorical", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 4, + "unique_ratio": 0.002894, + "example_values": [ + "vhigh", + "med", + "high", + "low" + ] + } + }, + { + "name": "maint", + "role": "feature", + "semantic_type": "categorical", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 4, + "unique_ratio": 0.002894, + "example_values": [ + "vhigh", + "low", + "med", + "high" + ] + } + }, + { + "name": "doors", + "role": "feature", + "semantic_type": "categorical", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 4, + "unique_ratio": 0.002894, + "example_values": [ + "2", + "5more", + "3", + "4" + ] + } + }, + { + "name": "persons", + "role": "feature", + "semantic_type": "categorical", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 3, + "unique_ratio": 0.002171, + "example_values": [ + "2", + "4", + "more" + ] + } + }, + { + "name": "lug_boot", + "role": "feature", + "semantic_type": "categorical", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 3, + "unique_ratio": 0.002171, + "example_values": [ + "small", + "big", + "med" + ] + } + }, + { + "name": "safety", + "role": "feature", + "semantic_type": "categorical", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 3, + "unique_ratio": 0.002171, + "example_values": [ + "low", + "high", + "med" + ] + } + }, + { + "name": "class", + "role": "target", + "semantic_type": "categorical", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 4, + "unique_ratio": 0.002894, + "example_values": [ + "unacc", + "good", + "acc", + "vgood" + ] + } + } + ] +} \ No newline at end of file diff --git a/hyperparameter/c2/forestdiffusion/forest-c2-20260505_052404/run_config.json b/hyperparameter/c2/forestdiffusion/forest-c2-20260505_052404/run_config.json new file mode 100644 index 0000000000000000000000000000000000000000..e486fda9bc345cdf801d7ea2df02033996b6b657 --- /dev/null +++ b/hyperparameter/c2/forestdiffusion/forest-c2-20260505_052404/run_config.json @@ -0,0 +1,45 @@ +{ + "schema_version": 1, + "recorded_at": "2026-05-05T05:24:04", + "dataset_id": "c2", + "model": "forestdiffusion", + "work_dir": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/c2/forestdiffusion/forest-c2-20260505_052404", + "dataset_source_requested": "new", + "dataset_source_resolved": "new", + "cli_args": { + "model": "forestdiffusion", + "dataset": "c2", + "dataset_source": "new", + "train": true, + "generate": true, + "num_rows": 0, + "epochs": null, + "output_dir": null, + "model_dir": null, + "work_dir": null, + "resume": false, + "no_stats": false + }, + "resolved": { + "num_rows": 1382, + "model_path": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/c2/forestdiffusion/forest-c2-20260505_052404/models_fd/model.joblib", + "output_csv": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/c2/forestdiffusion/forest-c2-20260505_052404/forest-c2-1382-20260505_054609.csv" + }, + "input_artifacts": { + "public_gate_report": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/c2/forestdiffusion/forest-c2-20260505_052404/public_gate/public_gate_report.json", + "public_manifest": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/c2/forestdiffusion/forest-c2-20260505_052404/public_gate/staged_input_manifest.json", + "model_manifest": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/c2/forestdiffusion/forest-c2-20260505_052404/staged/forestdiffusion/model_input_manifest.json", + "train_csv": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/c2/forestdiffusion/forest-c2-20260505_052404/staged/public/train.csv", + "features_json": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/c2/forestdiffusion/forest-c2-20260505_052404/staged/public/staged_features.json", + "target_column": "class", + "task_type": "classification" + }, + "env_overrides": { + "FORESTDIFFUSION_DUPLICATE_K": "5", + "FORESTDIFFUSION_MAX_DEPTH": "4", + "FORESTDIFFUSION_MAX_TRAIN_ROWS": "50000", + "FORESTDIFFUSION_N_ESTIMATORS": "20", + "FORESTDIFFUSION_N_JOBS": "1", + "FORESTDIFFUSION_N_T": "10" + } +} \ No newline at end of file diff --git a/hyperparameter/c2/forestdiffusion/forest-c2-20260505_052404/runtime_result.json b/hyperparameter/c2/forestdiffusion/forest-c2-20260505_052404/runtime_result.json new file mode 100644 index 0000000000000000000000000000000000000000..e648761a6da189b64d048d313acae5e89f8754df --- /dev/null +++ b/hyperparameter/c2/forestdiffusion/forest-c2-20260505_052404/runtime_result.json @@ -0,0 +1,27 @@ +{ + "dataset_id": "c2", + "model": "forestdiffusion", + "run_id": "forest-c2-20260505_052404", + "public_gate_status": "pass", + "adapter_ready_status": "pass", + "train_status": "success", + "generate_status": "success", + "reason_code": null, + "reason_detail": null, + "artifacts": { + "synthetic_csv": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/c2/forestdiffusion/forest-c2-20260505_052404/forest-c2-1382-20260505_054609.csv", + "model_path": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/c2/forestdiffusion/forest-c2-20260505_052404/models_fd/model.joblib" + }, + "timings": { + "train": { + "started_at": "2026-05-05T05:24:04", + "ended_at": "2026-05-05T05:46:09", + "duration_sec": 1324.84 + }, + "generate": { + "started_at": "2026-05-05T05:46:09", + "ended_at": "2026-05-05T05:46:13", + "duration_sec": 3.558 + } + } +} \ No newline at end of file diff --git a/hyperparameter/c2/forestdiffusion/forest-c2-20260505_052404/staged/forestdiffusion/adapter_report.json b/hyperparameter/c2/forestdiffusion/forest-c2-20260505_052404/staged/forestdiffusion/adapter_report.json new file mode 100644 index 0000000000000000000000000000000000000000..f2de4275e33d8234d6e3a5b3e3dd2f83814e4195 --- /dev/null +++ b/hyperparameter/c2/forestdiffusion/forest-c2-20260505_052404/staged/forestdiffusion/adapter_report.json @@ -0,0 +1,7 @@ +{ + "adapter_ready_status": "pass", + "adapter_fail_reason_code": null, + "adapter_fail_detail": null, + "adapter_transforms_applied": [], + "model_input_manifest": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/c2/forestdiffusion/forest-c2-20260505_052404/staged/forestdiffusion/model_input_manifest.json" +} \ No newline at end of file diff --git a/hyperparameter/c2/forestdiffusion/forest-c2-20260505_052404/staged/forestdiffusion/adapter_transforms_applied.json b/hyperparameter/c2/forestdiffusion/forest-c2-20260505_052404/staged/forestdiffusion/adapter_transforms_applied.json new file mode 100644 index 0000000000000000000000000000000000000000..0637a088a01e8ddab3bf3fa98dbe804cbde1a0dc --- /dev/null +++ b/hyperparameter/c2/forestdiffusion/forest-c2-20260505_052404/staged/forestdiffusion/adapter_transforms_applied.json @@ -0,0 +1 @@ +[] \ No newline at end of file diff --git a/hyperparameter/c2/forestdiffusion/forest-c2-20260505_052404/staged/forestdiffusion/model_input_manifest.json b/hyperparameter/c2/forestdiffusion/forest-c2-20260505_052404/staged/forestdiffusion/model_input_manifest.json new file mode 100644 index 0000000000000000000000000000000000000000..ed5e1b36967aa65db015a3607b7f1c38c8cc035e --- /dev/null +++ b/hyperparameter/c2/forestdiffusion/forest-c2-20260505_052404/staged/forestdiffusion/model_input_manifest.json @@ -0,0 +1,151 @@ +{ + "dataset_id": "c2", + "model": "forestdiffusion", + "target_column": "class", + "task_type": "classification", + "column_schema": [ + { + "name": "buying", + "role": "feature", + "semantic_type": "categorical", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 4, + "unique_ratio": 0.002894, + "example_values": [ + "vhigh", + "med", + "high", + "low" + ] + } + }, + { + "name": "maint", + "role": "feature", + "semantic_type": "categorical", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 4, + "unique_ratio": 0.002894, + "example_values": [ + "vhigh", + "low", + "med", + "high" + ] + } + }, + { + "name": "doors", + "role": "feature", + "semantic_type": "categorical", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 4, + "unique_ratio": 0.002894, + "example_values": [ + "2", + "5more", + "3", + "4" + ] + } + }, + { + "name": "persons", + "role": "feature", + "semantic_type": "categorical", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 3, + "unique_ratio": 0.002171, + "example_values": [ + "2", + "4", + "more" + ] + } + }, + { + "name": "lug_boot", + "role": "feature", + "semantic_type": "categorical", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 3, + "unique_ratio": 0.002171, + "example_values": [ + "small", + "big", + "med" + ] + } + }, + { + "name": "safety", + "role": "feature", + "semantic_type": "categorical", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 3, + "unique_ratio": 0.002171, + "example_values": [ + "low", + "high", + "med" + ] + } + }, + { + "name": "class", + "role": "target", + "semantic_type": "categorical", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 4, + "unique_ratio": 0.002894, + "example_values": [ + "unacc", + "good", + "acc", + "vgood" + ] + } + } + ], + "public_manifest": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/c2/forestdiffusion/forest-c2-20260505_052404/public_gate/staged_input_manifest.json", + "train_csv": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/c2/forestdiffusion/forest-c2-20260505_052404/staged/public/train.csv", + "val_csv": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/c2/forestdiffusion/forest-c2-20260505_052404/staged/public/val.csv", + "test_csv": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/c2/forestdiffusion/forest-c2-20260505_052404/staged/public/test.csv", + "features_json": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/c2/forestdiffusion/forest-c2-20260505_052404/staged/public/staged_features.json", + "public_gate_report": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/c2/forestdiffusion/forest-c2-20260505_052404/public_gate/public_gate_report.json" +} \ No newline at end of file diff --git a/hyperparameter/c2/forestdiffusion/forest-c2-20260505_052404/staged/public/staged_features.json b/hyperparameter/c2/forestdiffusion/forest-c2-20260505_052404/staged/public/staged_features.json new file mode 100644 index 0000000000000000000000000000000000000000..61783861dd5de501592f76acb0469cf3f3b2622a --- /dev/null +++ b/hyperparameter/c2/forestdiffusion/forest-c2-20260505_052404/staged/public/staged_features.json @@ -0,0 +1,37 @@ +[ + { + "feature_name": "buying", + "data_type": "categorical", + "is_target": false + }, + { + "feature_name": "maint", + "data_type": "categorical", + "is_target": false + }, + { + "feature_name": "doors", + "data_type": "categorical", + "is_target": false + }, + { + "feature_name": "persons", + "data_type": "categorical", + "is_target": false + }, + { + "feature_name": "lug_boot", + "data_type": "categorical", + "is_target": false + }, + { + "feature_name": "safety", + "data_type": "categorical", + "is_target": false + }, + { + "feature_name": "class", + "data_type": "categorical", + "is_target": true + } +] \ No newline at end of file diff --git a/hyperparameter/c2/forestdiffusion/forest-c2-20260505_052404/staged/public/test.csv b/hyperparameter/c2/forestdiffusion/forest-c2-20260505_052404/staged/public/test.csv new file mode 100644 index 0000000000000000000000000000000000000000..392a0d7189a34d8f13ecf20a99d64b03230d517c --- /dev/null +++ b/hyperparameter/c2/forestdiffusion/forest-c2-20260505_052404/staged/public/test.csv @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:b48114a7d0bc5bd9a07920f903c8d4aba8bf98bf2a66a050da03588b0245ca73 +size 5273 diff --git a/hyperparameter/c2/forestdiffusion/forest-c2-20260505_052404/staged/public/train.csv b/hyperparameter/c2/forestdiffusion/forest-c2-20260505_052404/staged/public/train.csv new file mode 100644 index 0000000000000000000000000000000000000000..da4f4d55134eebc0e51157d0d467536371db1484 --- /dev/null +++ b/hyperparameter/c2/forestdiffusion/forest-c2-20260505_052404/staged/public/train.csv @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:4aed00c2c2b3f88a55a7ebff31b2e1b5e0e32fb0a7267e0b9d2779cd23e434dd +size 41565 diff --git a/hyperparameter/c2/forestdiffusion/forest-c2-20260505_052404/staged/public/val.csv b/hyperparameter/c2/forestdiffusion/forest-c2-20260505_052404/staged/public/val.csv new file mode 100644 index 0000000000000000000000000000000000000000..af8caf7ee42524188534a3daf32996dc491952d9 --- /dev/null +++ b/hyperparameter/c2/forestdiffusion/forest-c2-20260505_052404/staged/public/val.csv @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:26e90c1170a57a14c05832ac88027722b1f3848f9662c7c09ef7c93dcba4cc01 +size 5176 diff --git a/hyperparameter/c2/forestdiffusion/forest-c2-20260505_052404/train_20260505_052404.log b/hyperparameter/c2/forestdiffusion/forest-c2-20260505_052404/train_20260505_052404.log new file mode 100644 index 0000000000000000000000000000000000000000..caea6eb168928f972bbb01a4a0bdabb4a2d45d61 --- /dev/null +++ b/hyperparameter/c2/forestdiffusion/forest-c2-20260505_052404/train_20260505_052404.log @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:aeb0d231b55ffd95532a86489fb0ebe2ded586be831008b4aa5390587256922f +size 434 diff --git a/hyperparameter/c2/realtabformer/rtf-c2-20260505_020832/gen_20260505_020906.log b/hyperparameter/c2/realtabformer/rtf-c2-20260505_020832/gen_20260505_020906.log new file mode 100644 index 0000000000000000000000000000000000000000..119f3c4ea4ad2ebb5d7dd28854491358c0a638ae --- /dev/null +++ b/hyperparameter/c2/realtabformer/rtf-c2-20260505_020832/gen_20260505_020906.log @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:324a1de356b147939c0cb819de5cf113541ae6c8d527fba0fbc1c06e61bd35df +size 1281 diff --git a/hyperparameter/c2/realtabformer/rtf-c2-20260505_020832/input_snapshot.json b/hyperparameter/c2/realtabformer/rtf-c2-20260505_020832/input_snapshot.json new file mode 100644 index 0000000000000000000000000000000000000000..16a47f24a14783056963c7c31b54a93442c4e573 --- /dev/null +++ b/hyperparameter/c2/realtabformer/rtf-c2-20260505_020832/input_snapshot.json @@ -0,0 +1,36 @@ +{ + "dataset_id": "c2", + "model": "realtabformer", + "inputs": { + "train_csv": { + "path": "/data/jialinzhang/SynthesizePipeline-server/DatasetNew/c2/c2-train.csv", + "exists": true, + "size": 42948, + "sha256": "17bc560fa96bd00fb3b526e1e65bc91210b701d0d0a4e8bb9b4c5196cab56def" + }, + "val_csv": { + "path": "/data/jialinzhang/SynthesizePipeline-server/DatasetNew/c2/c2-val.csv", + "exists": true, + "size": 5349, + "sha256": "61e565eca62e65a7dccd9d51039a3170413379e10fc494e25870e7c4294863c9" + }, + "test_csv": { + "path": "/data/jialinzhang/SynthesizePipeline-server/DatasetNew/c2/c2-test.csv", + "exists": true, + "size": 5448, + "sha256": "cbcbb062a1faf5fa44b66c80532baa229e05b94fc42137269761e6c6d84af20a" + }, + "profile_json": { + "path": "/data/jialinzhang/SynthesizePipeline-server/DatasetNew/artifacts/data_core/tabular/c2/c2-dataset_profile.json", + "exists": true, + "size": 3240, + "sha256": "526b7163b2076c93c0bf4638438081ee8a6907065d5b608faa40d1a3dbc2a27b" + }, + "contract_json": { + "path": "/data/jialinzhang/SynthesizePipeline-server/DatasetNew/artifacts/data_core/tabular/c2/c2-dataset_contract_v1.json", + "exists": true, + "size": 3731, + "sha256": "fb595a876054c2ee9b4e10cfe83a5691588de1d25466cbb9d473c18ad3604009" + } + } +} \ No newline at end of file diff --git a/hyperparameter/c2/realtabformer/rtf-c2-20260505_020832/models_5epochs/id000017779181432612116480/rtf_config.json b/hyperparameter/c2/realtabformer/rtf-c2-20260505_020832/models_5epochs/id000017779181432612116480/rtf_config.json new file mode 100644 index 0000000000000000000000000000000000000000..c91a9bd16a87c1d4c9eb6742b70785b28a0ec085 --- /dev/null +++ b/hyperparameter/c2/realtabformer/rtf-c2-20260505_020832/models_5epochs/id000017779181432612116480/rtf_config.json @@ -0,0 +1 @@ +{"model_type": "tabular", "tabular_config": {"transformers_version": "5.5.3", "architectures": ["GPT2LMHeadModel"], "output_hidden_states": false, "return_dict": true, "dtype": "float32", "chunk_size_feed_forward": 0, "is_encoder_decoder": false, "id2label": {"0": "LABEL_0", "1": "LABEL_1"}, "label2id": {"LABEL_0": 0, "LABEL_1": 1}, "problem_type": null, "vocab_size": 36, "n_positions": 1024, "n_embd": 768, "n_layer": 6, "n_head": 12, "n_inner": null, "activation_function": "gelu_new", "resid_pdrop": 0.1, "embd_pdrop": 0.1, "attn_pdrop": 0.1, "layer_norm_epsilon": 1e-05, "initializer_range": 0.02, "summary_type": "cls_index", "summary_use_proj": true, "summary_activation": null, "summary_proj_to_labels": true, "summary_first_dropout": 0.1, "scale_attn_weights": true, "use_cache": false, "bos_token_id": 5, "eos_token_id": 6, "pad_token_id": null, "scale_attn_by_inverse_layer_idx": false, "reorder_and_upcast_attn": false, "add_cross_attention": false, "tie_word_embeddings": true, "_name_or_path": "", "model_type": "gpt2", "output_attentions": false}, "checkpoints_dir": "rtf_checkpoints", "samples_save_dir": "rtf_samples", "full_save_dir": "rtf_full_save", "epochs": 5, "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": 5, "per_device_train_batch_size": 8, "per_device_eval_batch_size": 8, "gradient_accumulation_steps": 4, "remove_unused_columns": true, "logging_steps": 100, "save_steps": 100, "eval_steps": 100, "load_best_model_at_end": false, "save_total_limit": 6, "optim": "adamw_torch"}, "train_size": 1, "mask_rate": 0, "columns": ["buying", "maint", "doors", "persons", "lug_boot", "safety", "class"], "column_dtypes": {"buying": "object", "maint": "object", "doors": "object", "persons": "object", "lug_boot": "object", "safety": "object", "class": "object"}, "column_has_missing": {"buying": false, "maint": false, "doors": false, "persons": false, "lug_boot": false, "safety": false, "class": false}, "drop_na_cols": ["buying", "maint", "doors", "persons", "lug_boot", "safety", "class"], "processed_columns": ["0___CATEGORICAL___buying", "1___CATEGORICAL___maint", "2___CATEGORICAL___doors", "3___CATEGORICAL___persons", "4___CATEGORICAL___lug_boot", "5___CATEGORICAL___safety", "6___CATEGORICAL___class"], "numeric_columns": [], "datetime_columns": [], "vocab": {"id2token": {"0": "[UNK]", "1": "[SEP]", "2": "[PAD]", "3": "[CLS]", "4": "[MASK]", "5": "[BOS]", "6": "[EOS]", "7": "[BMEM]", "8": "[EMEM]", "9": "[RMASK]", "10": "[SPTYPE]", "11": "0___CATEGORICAL___buying___high", "12": "0___CATEGORICAL___buying___low", "13": "0___CATEGORICAL___buying___med", "14": "0___CATEGORICAL___buying___vhigh", "15": "1___CATEGORICAL___maint___high", "16": "1___CATEGORICAL___maint___low", "17": "1___CATEGORICAL___maint___med", "18": "1___CATEGORICAL___maint___vhigh", "19": "2___CATEGORICAL___doors___2", "20": "2___CATEGORICAL___doors___3", "21": "2___CATEGORICAL___doors___4", "22": "2___CATEGORICAL___doors___5more", "23": "3___CATEGORICAL___persons___2", "24": "3___CATEGORICAL___persons___4", "25": "3___CATEGORICAL___persons___more", "26": "4___CATEGORICAL___lug_boot___big", "27": "4___CATEGORICAL___lug_boot___med", "28": "4___CATEGORICAL___lug_boot___small", "29": "5___CATEGORICAL___safety___high", "30": "5___CATEGORICAL___safety___low", "31": "5___CATEGORICAL___safety___med", "32": "6___CATEGORICAL___class___acc", "33": "6___CATEGORICAL___class___good", "34": "6___CATEGORICAL___class___unacc", "35": "6___CATEGORICAL___class___vgood"}, "token2id": {"[UNK]": 0, "[SEP]": 1, "[PAD]": 2, "[CLS]": 3, "[MASK]": 4, "[BOS]": 5, "[EOS]": 6, "[BMEM]": 7, "[EMEM]": 8, "[RMASK]": 9, "[SPTYPE]": 10, "0___CATEGORICAL___buying___high": 11, "0___CATEGORICAL___buying___low": 12, "0___CATEGORICAL___buying___med": 13, "0___CATEGORICAL___buying___vhigh": 14, "1___CATEGORICAL___maint___high": 15, "1___CATEGORICAL___maint___low": 16, "1___CATEGORICAL___maint___med": 17, "1___CATEGORICAL___maint___vhigh": 18, "2___CATEGORICAL___doors___2": 19, "2___CATEGORICAL___doors___3": 20, "2___CATEGORICAL___doors___4": 21, "2___CATEGORICAL___doors___5more": 22, "3___CATEGORICAL___persons___2": 23, "3___CATEGORICAL___persons___4": 24, "3___CATEGORICAL___persons___more": 25, "4___CATEGORICAL___lug_boot___big": 26, "4___CATEGORICAL___lug_boot___med": 27, "4___CATEGORICAL___lug_boot___small": 28, "5___CATEGORICAL___safety___high": 29, "5___CATEGORICAL___safety___low": 30, "5___CATEGORICAL___safety___med": 31, "6___CATEGORICAL___class___acc": 32, "6___CATEGORICAL___class___good": 33, "6___CATEGORICAL___class___unacc": 34, "6___CATEGORICAL___class___vgood": 35}, "column_token_ids": {"0___CATEGORICAL___buying": [11, 12, 13, 14], "1___CATEGORICAL___maint": [15, 16, 17, 18], "2___CATEGORICAL___doors": [19, 20, 21, 22], "3___CATEGORICAL___persons": [23, 24, 25], "4___CATEGORICAL___lug_boot": [26, 27, 28], "5___CATEGORICAL___safety": [29, 30, 31], "6___CATEGORICAL___class": [32, 33, 34, 35]}}, "tabular_max_length": 9, "relational_max_length": null, "tabular_col_size": 1382, "relational_col_size": null, "col_transform_data": {}, "in_col_transform_data": null, "col_idx_ids": {"0": [11, 12, 13, 14], "1": [15, 16, 17, 18], "2": [19, 20, 21, 22], "3": [23, 24, 25], "4": [26, 27, 28], "5": [29, 30, 31], "6": [32, 33, 34, 35]}, "random_state": 1029, "numeric_nparts": 1, "numeric_precision": 4, "numeric_max_len": 10, "experiment_id": "id000017779181432612116480", "trainer_state": null, "target_col": null, "realtabformer_version": "0.2.4"} \ No newline at end of file diff --git a/hyperparameter/c2/realtabformer/rtf-c2-20260505_020832/models_5epochs/id000017779181432612116480/rtf_model.pt b/hyperparameter/c2/realtabformer/rtf-c2-20260505_020832/models_5epochs/id000017779181432612116480/rtf_model.pt new file mode 100644 index 0000000000000000000000000000000000000000..6f247fdcb02126216e33cb89ee20a0e7d7909caf --- /dev/null +++ b/hyperparameter/c2/realtabformer/rtf-c2-20260505_020832/models_5epochs/id000017779181432612116480/rtf_model.pt @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:8b6652dcd14378141142be4623c08c5bc3204933d24b95bddfe72e06288f7a3c +size 173400547 diff --git a/hyperparameter/c2/realtabformer/rtf-c2-20260505_020832/public_gate/normalized_schema_snapshot.json b/hyperparameter/c2/realtabformer/rtf-c2-20260505_020832/public_gate/normalized_schema_snapshot.json new file mode 100644 index 0000000000000000000000000000000000000000..689b1d00d96508e44ba40e58dc4560e19afc2b3b --- /dev/null +++ b/hyperparameter/c2/realtabformer/rtf-c2-20260505_020832/public_gate/normalized_schema_snapshot.json @@ -0,0 +1,144 @@ +{ + "dataset_id": "c2", + "target_column": "class", + "task_type": "classification", + "columns": [ + { + "name": "buying", + "role": "feature", + "semantic_type": "categorical", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 4, + "unique_ratio": 0.002894, + "example_values": [ + "vhigh", + "med", + "high", + "low" + ] + } + }, + { + "name": "maint", + "role": "feature", + "semantic_type": "categorical", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 4, + "unique_ratio": 0.002894, + "example_values": [ + "vhigh", + "low", + "med", + "high" + ] + } + }, + { + "name": "doors", + "role": "feature", + "semantic_type": "categorical", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 4, + "unique_ratio": 0.002894, + "example_values": [ + "2", + "5more", + "3", + "4" + ] + } + }, + { + "name": "persons", + "role": "feature", + "semantic_type": "categorical", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 3, + "unique_ratio": 0.002171, + "example_values": [ + "2", + "4", + "more" + ] + } + }, + { + "name": "lug_boot", + "role": "feature", + "semantic_type": "categorical", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 3, + "unique_ratio": 0.002171, + "example_values": [ + "small", + "big", + "med" + ] + } + }, + { + "name": "safety", + "role": "feature", + "semantic_type": "categorical", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 3, + "unique_ratio": 0.002171, + "example_values": [ + "low", + "high", + "med" + ] + } + }, + { + "name": "class", + "role": "target", + "semantic_type": "categorical", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 4, + "unique_ratio": 0.002894, + "example_values": [ + "unacc", + "good", + "acc", + "vgood" + ] + } + } + ] +} \ No newline at end of file diff --git a/hyperparameter/c2/realtabformer/rtf-c2-20260505_020832/public_gate/public_gate_report.json b/hyperparameter/c2/realtabformer/rtf-c2-20260505_020832/public_gate/public_gate_report.json new file mode 100644 index 0000000000000000000000000000000000000000..2e4cdcb2a4e28e40d59b17a83e773f622b7636a5 --- /dev/null +++ b/hyperparameter/c2/realtabformer/rtf-c2-20260505_020832/public_gate/public_gate_report.json @@ -0,0 +1,37 @@ +{ + "dataset_id": "c2", + "status": "pass", + "checks": [ + { + "check_id": "PG001_csv_parse_ok", + "status": "pass" + }, + { + "check_id": "PG002_split_header_consistent", + "status": "pass" + }, + { + "check_id": "PG003_profile_header_match", + "status": "pass" + }, + { + "check_id": "PG004_missing_token_normalized", + "status": "pass" + }, + { + "check_id": "PG005_semantic_type_validated", + "status": "pass" + }, + { + "check_id": "PG006_target_defined_and_valid", + "status": "pass" + } + ], + "target_column": "class", + "task_type": "classification", + "input_splits": { + "train": "/data/jialinzhang/SynthesizePipeline-server/DatasetNew/c2/c2-train.csv", + "val": "/data/jialinzhang/SynthesizePipeline-server/DatasetNew/c2/c2-val.csv", + "test": "/data/jialinzhang/SynthesizePipeline-server/DatasetNew/c2/c2-test.csv" + } +} \ No newline at end of file diff --git a/hyperparameter/c2/realtabformer/rtf-c2-20260505_020832/public_gate/staged_input_manifest.json b/hyperparameter/c2/realtabformer/rtf-c2-20260505_020832/public_gate/staged_input_manifest.json new file mode 100644 index 0000000000000000000000000000000000000000..a25731f1872b4af82a607c74f550ac6df0c5d1a9 --- /dev/null +++ b/hyperparameter/c2/realtabformer/rtf-c2-20260505_020832/public_gate/staged_input_manifest.json @@ -0,0 +1,149 @@ +{ + "dataset_id": "c2", + "target_column": "class", + "task_type": "classification", + "train_csv": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/c2/realtabformer/rtf-c2-20260505_020832/staged/public/train.csv", + "val_csv": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/c2/realtabformer/rtf-c2-20260505_020832/staged/public/val.csv", + "test_csv": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/c2/realtabformer/rtf-c2-20260505_020832/staged/public/test.csv", + "features_json": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/c2/realtabformer/rtf-c2-20260505_020832/staged/public/staged_features.json", + "public_gate_report": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/c2/realtabformer/rtf-c2-20260505_020832/public_gate/public_gate_report.json", + "column_schema": [ + { + "name": "buying", + "role": "feature", + "semantic_type": "categorical", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 4, + "unique_ratio": 0.002894, + "example_values": [ + "vhigh", + "med", + "high", + "low" + ] + } + }, + { + "name": "maint", + "role": "feature", + "semantic_type": "categorical", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 4, + "unique_ratio": 0.002894, + "example_values": [ + "vhigh", + "low", + "med", + "high" + ] + } + }, + { + "name": "doors", + "role": "feature", + "semantic_type": "categorical", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 4, + "unique_ratio": 0.002894, + "example_values": [ + "2", + "5more", + "3", + "4" + ] + } + }, + { + "name": "persons", + "role": "feature", + "semantic_type": "categorical", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 3, + "unique_ratio": 0.002171, + "example_values": [ + "2", + "4", + "more" + ] + } + }, + { + "name": "lug_boot", + "role": "feature", + "semantic_type": "categorical", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 3, + "unique_ratio": 0.002171, + "example_values": [ + "small", + "big", + "med" + ] + } + }, + { + "name": "safety", + "role": "feature", + "semantic_type": "categorical", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 3, + "unique_ratio": 0.002171, + "example_values": [ + "low", + "high", + "med" + ] + } + }, + { + "name": "class", + "role": "target", + "semantic_type": "categorical", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 4, + "unique_ratio": 0.002894, + "example_values": [ + "unacc", + "good", + "acc", + "vgood" + ] + } + } + ] +} \ No newline at end of file diff --git a/hyperparameter/c2/realtabformer/rtf-c2-20260505_020832/realtabformer_features.json b/hyperparameter/c2/realtabformer/rtf-c2-20260505_020832/realtabformer_features.json new file mode 100644 index 0000000000000000000000000000000000000000..61783861dd5de501592f76acb0469cf3f3b2622a --- /dev/null +++ b/hyperparameter/c2/realtabformer/rtf-c2-20260505_020832/realtabformer_features.json @@ -0,0 +1,37 @@ +[ + { + "feature_name": "buying", + "data_type": "categorical", + "is_target": false + }, + { + "feature_name": "maint", + "data_type": "categorical", + "is_target": false + }, + { + "feature_name": "doors", + "data_type": "categorical", + "is_target": false + }, + { + "feature_name": "persons", + "data_type": "categorical", + "is_target": false + }, + { + "feature_name": "lug_boot", + "data_type": "categorical", + "is_target": false + }, + { + "feature_name": "safety", + "data_type": "categorical", + "is_target": false + }, + { + "feature_name": "class", + "data_type": "categorical", + "is_target": true + } +] \ No newline at end of file diff --git a/hyperparameter/c2/realtabformer/rtf-c2-20260505_020832/rtf-c2-1382-20260505_020906.csv b/hyperparameter/c2/realtabformer/rtf-c2-20260505_020832/rtf-c2-1382-20260505_020906.csv new file mode 100644 index 0000000000000000000000000000000000000000..1eb39db5b28121e1a2b246304ec7beb3a91cc430 --- /dev/null +++ b/hyperparameter/c2/realtabformer/rtf-c2-20260505_020832/rtf-c2-1382-20260505_020906.csv @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:9d7ce59112e9b2f1675c2970d0c9e05f03e45bba8d4b0801abe67a2cf7c1c8db +size 41364 diff --git a/hyperparameter/c2/realtabformer/rtf-c2-20260505_020832/rtf_checkpoints/checkpoint-100/config.json b/hyperparameter/c2/realtabformer/rtf-c2-20260505_020832/rtf_checkpoints/checkpoint-100/config.json new file mode 100644 index 0000000000000000000000000000000000000000..abc7bb2762d6bff3016eb042e7a2ac4abb80ea85 --- /dev/null +++ b/hyperparameter/c2/realtabformer/rtf-c2-20260505_020832/rtf_checkpoints/checkpoint-100/config.json @@ -0,0 +1,34 @@ +{ + "activation_function": "gelu_new", + "add_cross_attention": false, + "architectures": [ + "GPT2LMHeadModel" + ], + "attn_pdrop": 0.1, + "bos_token_id": 5, + "dtype": "float32", + "embd_pdrop": 0.1, + "eos_token_id": 6, + "initializer_range": 0.02, + "layer_norm_epsilon": 1e-05, + "model_type": "gpt2", + "n_embd": 768, + "n_head": 12, + "n_inner": null, + "n_layer": 6, + "n_positions": 1024, + "pad_token_id": null, + "reorder_and_upcast_attn": false, + "resid_pdrop": 0.1, + "scale_attn_by_inverse_layer_idx": false, + "scale_attn_weights": true, + "summary_activation": null, + "summary_first_dropout": 0.1, + "summary_proj_to_labels": true, + "summary_type": "cls_index", + "summary_use_proj": true, + "tie_word_embeddings": true, + "transformers_version": "5.5.3", + "use_cache": false, + "vocab_size": 36 +} diff --git a/hyperparameter/c2/realtabformer/rtf-c2-20260505_020832/rtf_checkpoints/checkpoint-100/generation_config.json b/hyperparameter/c2/realtabformer/rtf-c2-20260505_020832/rtf_checkpoints/checkpoint-100/generation_config.json new file mode 100644 index 0000000000000000000000000000000000000000..ffe89567780e75b5c22eade9be971483b9618f39 --- /dev/null +++ b/hyperparameter/c2/realtabformer/rtf-c2-20260505_020832/rtf_checkpoints/checkpoint-100/generation_config.json @@ -0,0 +1,9 @@ +{ + "_from_model_config": true, + "bos_token_id": 5, + "eos_token_id": 6, + "output_attentions": false, + "output_hidden_states": false, + "transformers_version": "5.5.3", + "use_cache": true +} diff --git a/hyperparameter/c2/realtabformer/rtf-c2-20260505_020832/rtf_checkpoints/checkpoint-100/model.safetensors b/hyperparameter/c2/realtabformer/rtf-c2-20260505_020832/rtf_checkpoints/checkpoint-100/model.safetensors new file mode 100644 index 0000000000000000000000000000000000000000..22de2b3c57a2841db876040a4551e52684f4aa70 --- /dev/null +++ b/hyperparameter/c2/realtabformer/rtf-c2-20260505_020832/rtf_checkpoints/checkpoint-100/model.safetensors @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:0d3b716a9eca8c25250aa493d72aae23cff2ac63f3c1196da6d7d9e32dd771c2 +size 173379016 diff --git a/hyperparameter/c2/realtabformer/rtf-c2-20260505_020832/rtf_checkpoints/checkpoint-100/optimizer.pt b/hyperparameter/c2/realtabformer/rtf-c2-20260505_020832/rtf_checkpoints/checkpoint-100/optimizer.pt new file mode 100644 index 0000000000000000000000000000000000000000..2b68113ca661c51c1fbb1949db76a7065c841eee --- /dev/null +++ b/hyperparameter/c2/realtabformer/rtf-c2-20260505_020832/rtf_checkpoints/checkpoint-100/optimizer.pt @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:f294cecf00a0b28c1efdc1267f42757f7df52d5cbec9a718e715cf7780b228cd +size 346807051 diff --git a/hyperparameter/c2/realtabformer/rtf-c2-20260505_020832/rtf_checkpoints/checkpoint-100/rng_state.pth b/hyperparameter/c2/realtabformer/rtf-c2-20260505_020832/rtf_checkpoints/checkpoint-100/rng_state.pth new file mode 100644 index 0000000000000000000000000000000000000000..e5510aebc4ee089b55430195a950ca39e5230554 --- /dev/null +++ b/hyperparameter/c2/realtabformer/rtf-c2-20260505_020832/rtf_checkpoints/checkpoint-100/rng_state.pth @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:52b5e545c9c6d771e2931d6f5bf6f8923d13b8c9474c415ef69e1c2f9b08657c +size 14645 diff --git a/hyperparameter/c2/realtabformer/rtf-c2-20260505_020832/rtf_checkpoints/checkpoint-100/scaler.pt b/hyperparameter/c2/realtabformer/rtf-c2-20260505_020832/rtf_checkpoints/checkpoint-100/scaler.pt new file mode 100644 index 0000000000000000000000000000000000000000..215c5d2069bd81cb35727ebca07a510ac59c9d94 --- /dev/null +++ b/hyperparameter/c2/realtabformer/rtf-c2-20260505_020832/rtf_checkpoints/checkpoint-100/scaler.pt @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:c4393a84a3109995aa1202073b039b12062e3189ed89aa0b94ef0510ba843009 +size 1383 diff --git a/hyperparameter/c2/realtabformer/rtf-c2-20260505_020832/rtf_checkpoints/checkpoint-100/scheduler.pt b/hyperparameter/c2/realtabformer/rtf-c2-20260505_020832/rtf_checkpoints/checkpoint-100/scheduler.pt new file mode 100644 index 0000000000000000000000000000000000000000..3af743a72a1d8948080e7085e339c981c4710559 --- /dev/null +++ b/hyperparameter/c2/realtabformer/rtf-c2-20260505_020832/rtf_checkpoints/checkpoint-100/scheduler.pt @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:fe52934dcb74f810020293e74e470570886db9b792159c60a3d32497acdb2564 +size 1465 diff --git a/hyperparameter/c2/realtabformer/rtf-c2-20260505_020832/rtf_checkpoints/checkpoint-100/trainer_state.json b/hyperparameter/c2/realtabformer/rtf-c2-20260505_020832/rtf_checkpoints/checkpoint-100/trainer_state.json new file mode 100644 index 0000000000000000000000000000000000000000..982ab5c4c951bf23e78974f96a714d2234afba9e --- /dev/null +++ b/hyperparameter/c2/realtabformer/rtf-c2-20260505_020832/rtf_checkpoints/checkpoint-100/trainer_state.json @@ -0,0 +1,41 @@ +{ + "best_global_step": null, + "best_metric": null, + "best_model_checkpoint": null, + "epoch": 2.277456647398844, + "eval_steps": 100, + "global_step": 100, + "is_hyper_param_search": false, + "is_local_process_zero": true, + "is_world_process_zero": true, + "log_history": [ + { + "epoch": 2.277456647398844, + "grad_norm": 0.4539995491504669, + "learning_rate": 2.7500000000000004e-05, + "loss": 1.0556336975097655, + "step": 100 + } + ], + "logging_steps": 100, + "max_steps": 220, + "num_input_tokens_seen": 0, + "num_train_epochs": 5, + "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": 7229550329856.0, + "train_batch_size": 8, + "trial_name": null, + "trial_params": null +} diff --git a/hyperparameter/c2/realtabformer/rtf-c2-20260505_020832/rtf_checkpoints/checkpoint-100/training_args.bin b/hyperparameter/c2/realtabformer/rtf-c2-20260505_020832/rtf_checkpoints/checkpoint-100/training_args.bin new file mode 100644 index 0000000000000000000000000000000000000000..ed11f716a866dff92bead1d973552e2411221de1 --- /dev/null +++ b/hyperparameter/c2/realtabformer/rtf-c2-20260505_020832/rtf_checkpoints/checkpoint-100/training_args.bin @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:91f70b571caed8698a4d8d0fd35c5241ef347a8d8ebe9d95ba3258b493311a0b +size 5201 diff --git a/hyperparameter/c2/realtabformer/rtf-c2-20260505_020832/rtf_checkpoints/checkpoint-132/config.json b/hyperparameter/c2/realtabformer/rtf-c2-20260505_020832/rtf_checkpoints/checkpoint-132/config.json new file mode 100644 index 0000000000000000000000000000000000000000..abc7bb2762d6bff3016eb042e7a2ac4abb80ea85 --- /dev/null +++ b/hyperparameter/c2/realtabformer/rtf-c2-20260505_020832/rtf_checkpoints/checkpoint-132/config.json @@ -0,0 +1,34 @@ +{ + "activation_function": "gelu_new", + "add_cross_attention": false, + "architectures": [ + "GPT2LMHeadModel" + ], + "attn_pdrop": 0.1, + "bos_token_id": 5, + "dtype": "float32", + "embd_pdrop": 0.1, + "eos_token_id": 6, + "initializer_range": 0.02, + "layer_norm_epsilon": 1e-05, + "model_type": "gpt2", + "n_embd": 768, + "n_head": 12, + "n_inner": null, + "n_layer": 6, + "n_positions": 1024, + "pad_token_id": null, + "reorder_and_upcast_attn": false, + "resid_pdrop": 0.1, + "scale_attn_by_inverse_layer_idx": false, + "scale_attn_weights": true, + "summary_activation": null, + "summary_first_dropout": 0.1, + "summary_proj_to_labels": true, + "summary_type": "cls_index", + "summary_use_proj": true, + "tie_word_embeddings": true, + "transformers_version": "5.5.3", + "use_cache": false, + "vocab_size": 36 +} diff --git a/hyperparameter/c2/realtabformer/rtf-c2-20260505_020832/rtf_checkpoints/checkpoint-132/generation_config.json b/hyperparameter/c2/realtabformer/rtf-c2-20260505_020832/rtf_checkpoints/checkpoint-132/generation_config.json new file mode 100644 index 0000000000000000000000000000000000000000..ffe89567780e75b5c22eade9be971483b9618f39 --- /dev/null +++ b/hyperparameter/c2/realtabformer/rtf-c2-20260505_020832/rtf_checkpoints/checkpoint-132/generation_config.json @@ -0,0 +1,9 @@ +{ + "_from_model_config": true, + "bos_token_id": 5, + "eos_token_id": 6, + "output_attentions": false, + "output_hidden_states": false, + "transformers_version": "5.5.3", + "use_cache": true +} diff --git a/hyperparameter/c2/realtabformer/rtf-c2-20260505_020832/rtf_checkpoints/checkpoint-132/model.safetensors b/hyperparameter/c2/realtabformer/rtf-c2-20260505_020832/rtf_checkpoints/checkpoint-132/model.safetensors new file mode 100644 index 0000000000000000000000000000000000000000..bcc750e1e93f31313a1ad9005128eaba51394db9 --- /dev/null +++ b/hyperparameter/c2/realtabformer/rtf-c2-20260505_020832/rtf_checkpoints/checkpoint-132/model.safetensors @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:db22e2133388a6dc0b098efce8783aba2e4bfaefe9d5c3ad819012b7a8c3bff5 +size 173379016 diff --git a/hyperparameter/c2/realtabformer/rtf-c2-20260505_020832/rtf_checkpoints/checkpoint-132/optimizer.pt b/hyperparameter/c2/realtabformer/rtf-c2-20260505_020832/rtf_checkpoints/checkpoint-132/optimizer.pt new file mode 100644 index 0000000000000000000000000000000000000000..f6a8a66e4b62a9bd17770332577e97956abfff3e --- /dev/null +++ b/hyperparameter/c2/realtabformer/rtf-c2-20260505_020832/rtf_checkpoints/checkpoint-132/optimizer.pt @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:5accdb0b13d7b97c0709357e65bd917e2626ab396521dee6eb681039a619700e +size 346807051 diff --git a/hyperparameter/c2/realtabformer/rtf-c2-20260505_020832/rtf_checkpoints/checkpoint-132/rng_state.pth b/hyperparameter/c2/realtabformer/rtf-c2-20260505_020832/rtf_checkpoints/checkpoint-132/rng_state.pth new file mode 100644 index 0000000000000000000000000000000000000000..19c4964dee2defb11ab7ba073d9cd2705c77ed9c --- /dev/null +++ b/hyperparameter/c2/realtabformer/rtf-c2-20260505_020832/rtf_checkpoints/checkpoint-132/rng_state.pth @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:d9f66b4505ad3468bed3664ae46f0114342ce0432ae63ab860efc24433fdcc77 +size 14645 diff --git a/hyperparameter/c2/realtabformer/rtf-c2-20260505_020832/rtf_checkpoints/checkpoint-132/scaler.pt b/hyperparameter/c2/realtabformer/rtf-c2-20260505_020832/rtf_checkpoints/checkpoint-132/scaler.pt new file mode 100644 index 0000000000000000000000000000000000000000..bca9a56f5ac55950e3a490a3d4a1fb81f95a2e77 --- /dev/null +++ b/hyperparameter/c2/realtabformer/rtf-c2-20260505_020832/rtf_checkpoints/checkpoint-132/scaler.pt @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:31f9e810167c249a96bf8ef4bdda833e4ac3c548b2d7a58cdc57302c3e4cfbd5 +size 1383 diff --git a/hyperparameter/c2/realtabformer/rtf-c2-20260505_020832/rtf_checkpoints/checkpoint-132/scheduler.pt b/hyperparameter/c2/realtabformer/rtf-c2-20260505_020832/rtf_checkpoints/checkpoint-132/scheduler.pt new file mode 100644 index 0000000000000000000000000000000000000000..835dd4386e652b2734cd5d7dfaa776c2fee241a0 --- /dev/null +++ b/hyperparameter/c2/realtabformer/rtf-c2-20260505_020832/rtf_checkpoints/checkpoint-132/scheduler.pt @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:b2031f1e1442a4d06fce1eccbbdb9fff5e386e2bf0c58abf81727232f8e660ac +size 1465 diff --git a/hyperparameter/c2/realtabformer/rtf-c2-20260505_020832/rtf_checkpoints/checkpoint-132/trainer_state.json b/hyperparameter/c2/realtabformer/rtf-c2-20260505_020832/rtf_checkpoints/checkpoint-132/trainer_state.json new file mode 100644 index 0000000000000000000000000000000000000000..389de3e7238ac11e7d844c20cf7ba610d2ad0e57 --- /dev/null +++ b/hyperparameter/c2/realtabformer/rtf-c2-20260505_020832/rtf_checkpoints/checkpoint-132/trainer_state.json @@ -0,0 +1,41 @@ +{ + "best_global_step": null, + "best_metric": null, + "best_model_checkpoint": null, + "epoch": 3.0, + "eval_steps": 100, + "global_step": 132, + "is_hyper_param_search": false, + "is_local_process_zero": true, + "is_world_process_zero": true, + "log_history": [ + { + "epoch": 2.277456647398844, + "grad_norm": 0.4539995491504669, + "learning_rate": 2.7500000000000004e-05, + "loss": 1.0556336975097655, + "step": 100 + } + ], + "logging_steps": 100, + "max_steps": 220, + "num_input_tokens_seen": 0, + "num_train_epochs": 5, + "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": 9521510694912.0, + "train_batch_size": 8, + "trial_name": null, + "trial_params": null +} diff --git a/hyperparameter/c2/realtabformer/rtf-c2-20260505_020832/rtf_checkpoints/checkpoint-132/training_args.bin b/hyperparameter/c2/realtabformer/rtf-c2-20260505_020832/rtf_checkpoints/checkpoint-132/training_args.bin new file mode 100644 index 0000000000000000000000000000000000000000..ed11f716a866dff92bead1d973552e2411221de1 --- /dev/null +++ b/hyperparameter/c2/realtabformer/rtf-c2-20260505_020832/rtf_checkpoints/checkpoint-132/training_args.bin @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:91f70b571caed8698a4d8d0fd35c5241ef347a8d8ebe9d95ba3258b493311a0b +size 5201 diff --git a/hyperparameter/c2/realtabformer/rtf-c2-20260505_020832/rtf_checkpoints/checkpoint-176/config.json b/hyperparameter/c2/realtabformer/rtf-c2-20260505_020832/rtf_checkpoints/checkpoint-176/config.json new file mode 100644 index 0000000000000000000000000000000000000000..abc7bb2762d6bff3016eb042e7a2ac4abb80ea85 --- /dev/null +++ b/hyperparameter/c2/realtabformer/rtf-c2-20260505_020832/rtf_checkpoints/checkpoint-176/config.json @@ -0,0 +1,34 @@ +{ + "activation_function": "gelu_new", + "add_cross_attention": false, + "architectures": [ + "GPT2LMHeadModel" + ], + "attn_pdrop": 0.1, + "bos_token_id": 5, + "dtype": "float32", + "embd_pdrop": 0.1, + "eos_token_id": 6, + "initializer_range": 0.02, + "layer_norm_epsilon": 1e-05, + "model_type": "gpt2", + "n_embd": 768, + "n_head": 12, + "n_inner": null, + "n_layer": 6, + "n_positions": 1024, + "pad_token_id": null, + "reorder_and_upcast_attn": false, + "resid_pdrop": 0.1, + "scale_attn_by_inverse_layer_idx": false, + "scale_attn_weights": true, + "summary_activation": null, + "summary_first_dropout": 0.1, + "summary_proj_to_labels": true, + "summary_type": "cls_index", + "summary_use_proj": true, + "tie_word_embeddings": true, + "transformers_version": "5.5.3", + "use_cache": false, + "vocab_size": 36 +} diff --git a/hyperparameter/c2/realtabformer/rtf-c2-20260505_020832/rtf_checkpoints/checkpoint-176/generation_config.json b/hyperparameter/c2/realtabformer/rtf-c2-20260505_020832/rtf_checkpoints/checkpoint-176/generation_config.json new file mode 100644 index 0000000000000000000000000000000000000000..ffe89567780e75b5c22eade9be971483b9618f39 --- /dev/null +++ b/hyperparameter/c2/realtabformer/rtf-c2-20260505_020832/rtf_checkpoints/checkpoint-176/generation_config.json @@ -0,0 +1,9 @@ +{ + "_from_model_config": true, + "bos_token_id": 5, + "eos_token_id": 6, + "output_attentions": false, + "output_hidden_states": false, + "transformers_version": "5.5.3", + "use_cache": true +} diff --git a/hyperparameter/c2/realtabformer/rtf-c2-20260505_020832/rtf_checkpoints/checkpoint-176/model.safetensors b/hyperparameter/c2/realtabformer/rtf-c2-20260505_020832/rtf_checkpoints/checkpoint-176/model.safetensors new file mode 100644 index 0000000000000000000000000000000000000000..329d6cfbcf30f899fcc2049a51e991a90765db12 --- /dev/null +++ b/hyperparameter/c2/realtabformer/rtf-c2-20260505_020832/rtf_checkpoints/checkpoint-176/model.safetensors @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:5e5d9c96e7a07147dd307a2aacbbde8d0f8dcc585ab3dc867eba093263ce7a3b +size 173379016 diff --git a/hyperparameter/c2/realtabformer/rtf-c2-20260505_020832/rtf_checkpoints/checkpoint-176/optimizer.pt b/hyperparameter/c2/realtabformer/rtf-c2-20260505_020832/rtf_checkpoints/checkpoint-176/optimizer.pt new file mode 100644 index 0000000000000000000000000000000000000000..96bdb53b8b4bce8523541009504512e4540fbd71 --- /dev/null +++ b/hyperparameter/c2/realtabformer/rtf-c2-20260505_020832/rtf_checkpoints/checkpoint-176/optimizer.pt @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:01c9854d69c12ba481ccd776946bd10aa3601c0dab4c281b2ba1eb638b78d3a0 +size 346807051 diff --git a/hyperparameter/c2/realtabformer/rtf-c2-20260505_020832/rtf_checkpoints/checkpoint-176/rng_state.pth b/hyperparameter/c2/realtabformer/rtf-c2-20260505_020832/rtf_checkpoints/checkpoint-176/rng_state.pth new file mode 100644 index 0000000000000000000000000000000000000000..88284d56212153f5b6815a16e9bb135de7c38224 --- /dev/null +++ b/hyperparameter/c2/realtabformer/rtf-c2-20260505_020832/rtf_checkpoints/checkpoint-176/rng_state.pth @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:4514bd03081d13ee9a2214a33f18be404456c54b5195da2a93fb75747e4f3768 +size 14645 diff --git a/hyperparameter/c2/realtabformer/rtf-c2-20260505_020832/rtf_checkpoints/checkpoint-176/scaler.pt b/hyperparameter/c2/realtabformer/rtf-c2-20260505_020832/rtf_checkpoints/checkpoint-176/scaler.pt new file mode 100644 index 0000000000000000000000000000000000000000..a8c24c2959c4afa42d506019c42da1c0acea7cae --- /dev/null +++ b/hyperparameter/c2/realtabformer/rtf-c2-20260505_020832/rtf_checkpoints/checkpoint-176/scaler.pt @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:aea20c1377a8ae997c5febcae417a0b5a0c81e31f10e732150e7f3805232fb6d +size 1383 diff --git a/hyperparameter/c2/realtabformer/rtf-c2-20260505_020832/rtf_checkpoints/checkpoint-176/scheduler.pt b/hyperparameter/c2/realtabformer/rtf-c2-20260505_020832/rtf_checkpoints/checkpoint-176/scheduler.pt new file mode 100644 index 0000000000000000000000000000000000000000..62635f951f8ceac338ce4a1862f3eaab383db8f6 --- /dev/null +++ b/hyperparameter/c2/realtabformer/rtf-c2-20260505_020832/rtf_checkpoints/checkpoint-176/scheduler.pt @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:6f4939ceba671e629349e1608ec43e75fddb089813e09ed317a879d40fd53896 +size 1465 diff --git a/hyperparameter/c2/realtabformer/rtf-c2-20260505_020832/rtf_checkpoints/checkpoint-176/trainer_state.json b/hyperparameter/c2/realtabformer/rtf-c2-20260505_020832/rtf_checkpoints/checkpoint-176/trainer_state.json new file mode 100644 index 0000000000000000000000000000000000000000..a8f5618e919fb074339459bb1dd1425367efa0f9 --- /dev/null +++ b/hyperparameter/c2/realtabformer/rtf-c2-20260505_020832/rtf_checkpoints/checkpoint-176/trainer_state.json @@ -0,0 +1,41 @@ +{ + "best_global_step": null, + "best_metric": null, + "best_model_checkpoint": null, + "epoch": 4.0, + "eval_steps": 100, + "global_step": 176, + "is_hyper_param_search": false, + "is_local_process_zero": true, + "is_world_process_zero": true, + "log_history": [ + { + "epoch": 2.277456647398844, + "grad_norm": 0.4539995491504669, + "learning_rate": 2.7500000000000004e-05, + "loss": 1.0556336975097655, + "step": 100 + } + ], + "logging_steps": 100, + "max_steps": 220, + "num_input_tokens_seen": 0, + "num_train_epochs": 5, + "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": 12695347593216.0, + "train_batch_size": 8, + "trial_name": null, + "trial_params": null +} diff --git a/hyperparameter/c2/realtabformer/rtf-c2-20260505_020832/rtf_checkpoints/checkpoint-176/training_args.bin b/hyperparameter/c2/realtabformer/rtf-c2-20260505_020832/rtf_checkpoints/checkpoint-176/training_args.bin new file mode 100644 index 0000000000000000000000000000000000000000..ed11f716a866dff92bead1d973552e2411221de1 --- /dev/null +++ b/hyperparameter/c2/realtabformer/rtf-c2-20260505_020832/rtf_checkpoints/checkpoint-176/training_args.bin @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:91f70b571caed8698a4d8d0fd35c5241ef347a8d8ebe9d95ba3258b493311a0b +size 5201 diff --git a/hyperparameter/c2/realtabformer/rtf-c2-20260505_020832/rtf_checkpoints/checkpoint-200/config.json b/hyperparameter/c2/realtabformer/rtf-c2-20260505_020832/rtf_checkpoints/checkpoint-200/config.json new file mode 100644 index 0000000000000000000000000000000000000000..abc7bb2762d6bff3016eb042e7a2ac4abb80ea85 --- /dev/null +++ b/hyperparameter/c2/realtabformer/rtf-c2-20260505_020832/rtf_checkpoints/checkpoint-200/config.json @@ -0,0 +1,34 @@ +{ + "activation_function": "gelu_new", + "add_cross_attention": false, + "architectures": [ + "GPT2LMHeadModel" + ], + "attn_pdrop": 0.1, + "bos_token_id": 5, + "dtype": "float32", + "embd_pdrop": 0.1, + "eos_token_id": 6, + "initializer_range": 0.02, + "layer_norm_epsilon": 1e-05, + "model_type": "gpt2", + "n_embd": 768, + "n_head": 12, + "n_inner": null, + "n_layer": 6, + "n_positions": 1024, + "pad_token_id": null, + "reorder_and_upcast_attn": false, + "resid_pdrop": 0.1, + "scale_attn_by_inverse_layer_idx": false, + "scale_attn_weights": true, + "summary_activation": null, + "summary_first_dropout": 0.1, + "summary_proj_to_labels": true, + "summary_type": "cls_index", + "summary_use_proj": true, + "tie_word_embeddings": true, + "transformers_version": "5.5.3", + "use_cache": false, + "vocab_size": 36 +} diff --git a/hyperparameter/c2/realtabformer/rtf-c2-20260505_020832/rtf_checkpoints/checkpoint-200/generation_config.json b/hyperparameter/c2/realtabformer/rtf-c2-20260505_020832/rtf_checkpoints/checkpoint-200/generation_config.json new file mode 100644 index 0000000000000000000000000000000000000000..ffe89567780e75b5c22eade9be971483b9618f39 --- /dev/null +++ b/hyperparameter/c2/realtabformer/rtf-c2-20260505_020832/rtf_checkpoints/checkpoint-200/generation_config.json @@ -0,0 +1,9 @@ +{ + "_from_model_config": true, + "bos_token_id": 5, + "eos_token_id": 6, + "output_attentions": false, + "output_hidden_states": false, + "transformers_version": "5.5.3", + "use_cache": true +} diff --git a/hyperparameter/c2/realtabformer/rtf-c2-20260505_020832/rtf_checkpoints/checkpoint-200/model.safetensors b/hyperparameter/c2/realtabformer/rtf-c2-20260505_020832/rtf_checkpoints/checkpoint-200/model.safetensors new file mode 100644 index 0000000000000000000000000000000000000000..305d4a899f16cd98fa0413851b8c82f873f469c5 --- /dev/null +++ b/hyperparameter/c2/realtabformer/rtf-c2-20260505_020832/rtf_checkpoints/checkpoint-200/model.safetensors @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:87abe0aeb1eeb8e615856c3097603b1fcad1881bcaf75d10c0ea5efa466b88ea +size 173379016 diff --git a/hyperparameter/c2/realtabformer/rtf-c2-20260505_020832/rtf_checkpoints/checkpoint-200/optimizer.pt b/hyperparameter/c2/realtabformer/rtf-c2-20260505_020832/rtf_checkpoints/checkpoint-200/optimizer.pt new file mode 100644 index 0000000000000000000000000000000000000000..3f07af6b033774072fa729a6bc726a8666fb935c --- /dev/null +++ b/hyperparameter/c2/realtabformer/rtf-c2-20260505_020832/rtf_checkpoints/checkpoint-200/optimizer.pt @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:accd2d6a7e88a9cf95c80759bfc67150aac466b90c768ca4c97ce1a12b7ebb29 +size 346807051 diff --git a/hyperparameter/c2/realtabformer/rtf-c2-20260505_020832/rtf_checkpoints/checkpoint-200/rng_state.pth b/hyperparameter/c2/realtabformer/rtf-c2-20260505_020832/rtf_checkpoints/checkpoint-200/rng_state.pth new file mode 100644 index 0000000000000000000000000000000000000000..db4af280c31ec5bd1465903d21180c4dc55761d2 --- /dev/null +++ b/hyperparameter/c2/realtabformer/rtf-c2-20260505_020832/rtf_checkpoints/checkpoint-200/rng_state.pth @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:2701426903a09215be829f5803d9c0141d6867a3f5a97767c0c2fc7492e122ff +size 14645 diff --git a/hyperparameter/c2/realtabformer/rtf-c2-20260505_020832/rtf_checkpoints/checkpoint-200/scaler.pt b/hyperparameter/c2/realtabformer/rtf-c2-20260505_020832/rtf_checkpoints/checkpoint-200/scaler.pt new file mode 100644 index 0000000000000000000000000000000000000000..dce3572b315210d751b935f42f897c650110e0c7 --- /dev/null +++ b/hyperparameter/c2/realtabformer/rtf-c2-20260505_020832/rtf_checkpoints/checkpoint-200/scaler.pt @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:124625e167eb28acbfc793cfcb3e8a08b32e7fea06501462bc9e420a5e1beb2a +size 1383 diff --git a/hyperparameter/c2/realtabformer/rtf-c2-20260505_020832/rtf_checkpoints/checkpoint-200/scheduler.pt b/hyperparameter/c2/realtabformer/rtf-c2-20260505_020832/rtf_checkpoints/checkpoint-200/scheduler.pt new file mode 100644 index 0000000000000000000000000000000000000000..ef3f17190237dac02ed70299221b00d94610bdb7 --- /dev/null +++ b/hyperparameter/c2/realtabformer/rtf-c2-20260505_020832/rtf_checkpoints/checkpoint-200/scheduler.pt @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:b222a44a1eda0122a21b5831315626630e6c741edb17a8c3772a27f5ab15ac21 +size 1465 diff --git a/hyperparameter/c2/realtabformer/rtf-c2-20260505_020832/rtf_checkpoints/checkpoint-200/trainer_state.json b/hyperparameter/c2/realtabformer/rtf-c2-20260505_020832/rtf_checkpoints/checkpoint-200/trainer_state.json new file mode 100644 index 0000000000000000000000000000000000000000..86f3db3848b7d268a4c76d76016d35a3ff9f508f --- /dev/null +++ b/hyperparameter/c2/realtabformer/rtf-c2-20260505_020832/rtf_checkpoints/checkpoint-200/trainer_state.json @@ -0,0 +1,48 @@ +{ + "best_global_step": null, + "best_metric": null, + "best_model_checkpoint": null, + "epoch": 4.554913294797688, + "eval_steps": 100, + "global_step": 200, + "is_hyper_param_search": false, + "is_local_process_zero": true, + "is_world_process_zero": true, + "log_history": [ + { + "epoch": 2.277456647398844, + "grad_norm": 0.4539995491504669, + "learning_rate": 2.7500000000000004e-05, + "loss": 1.0556336975097655, + "step": 100 + }, + { + "epoch": 4.554913294797688, + "grad_norm": 0.3622914254665375, + "learning_rate": 4.772727272727273e-06, + "loss": 0.8728273010253906, + "step": 200 + } + ], + "logging_steps": 100, + "max_steps": 220, + "num_input_tokens_seen": 0, + "num_train_epochs": 5, + "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": 14459100659712.0, + "train_batch_size": 8, + "trial_name": null, + "trial_params": null +} diff --git a/hyperparameter/c2/realtabformer/rtf-c2-20260505_020832/rtf_checkpoints/checkpoint-200/training_args.bin b/hyperparameter/c2/realtabformer/rtf-c2-20260505_020832/rtf_checkpoints/checkpoint-200/training_args.bin new file mode 100644 index 0000000000000000000000000000000000000000..ed11f716a866dff92bead1d973552e2411221de1 --- /dev/null +++ b/hyperparameter/c2/realtabformer/rtf-c2-20260505_020832/rtf_checkpoints/checkpoint-200/training_args.bin @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:91f70b571caed8698a4d8d0fd35c5241ef347a8d8ebe9d95ba3258b493311a0b +size 5201 diff --git a/hyperparameter/c2/realtabformer/rtf-c2-20260505_020832/rtf_checkpoints/checkpoint-220/config.json b/hyperparameter/c2/realtabformer/rtf-c2-20260505_020832/rtf_checkpoints/checkpoint-220/config.json new file mode 100644 index 0000000000000000000000000000000000000000..abc7bb2762d6bff3016eb042e7a2ac4abb80ea85 --- /dev/null +++ b/hyperparameter/c2/realtabformer/rtf-c2-20260505_020832/rtf_checkpoints/checkpoint-220/config.json @@ -0,0 +1,34 @@ +{ + "activation_function": "gelu_new", + "add_cross_attention": false, + "architectures": [ + "GPT2LMHeadModel" + ], + "attn_pdrop": 0.1, + "bos_token_id": 5, + "dtype": "float32", + "embd_pdrop": 0.1, + "eos_token_id": 6, + "initializer_range": 0.02, + "layer_norm_epsilon": 1e-05, + "model_type": "gpt2", + "n_embd": 768, + "n_head": 12, + "n_inner": null, + "n_layer": 6, + "n_positions": 1024, + "pad_token_id": null, + "reorder_and_upcast_attn": false, + "resid_pdrop": 0.1, + "scale_attn_by_inverse_layer_idx": false, + "scale_attn_weights": true, + "summary_activation": null, + "summary_first_dropout": 0.1, + "summary_proj_to_labels": true, + "summary_type": "cls_index", + "summary_use_proj": true, + "tie_word_embeddings": true, + "transformers_version": "5.5.3", + "use_cache": false, + "vocab_size": 36 +} diff --git a/hyperparameter/c2/realtabformer/rtf-c2-20260505_020832/rtf_checkpoints/checkpoint-220/generation_config.json b/hyperparameter/c2/realtabformer/rtf-c2-20260505_020832/rtf_checkpoints/checkpoint-220/generation_config.json new file mode 100644 index 0000000000000000000000000000000000000000..ffe89567780e75b5c22eade9be971483b9618f39 --- /dev/null +++ b/hyperparameter/c2/realtabformer/rtf-c2-20260505_020832/rtf_checkpoints/checkpoint-220/generation_config.json @@ -0,0 +1,9 @@ +{ + "_from_model_config": true, + "bos_token_id": 5, + "eos_token_id": 6, + "output_attentions": false, + "output_hidden_states": false, + "transformers_version": "5.5.3", + "use_cache": true +} diff --git a/hyperparameter/c2/realtabformer/rtf-c2-20260505_020832/rtf_checkpoints/checkpoint-220/model.safetensors b/hyperparameter/c2/realtabformer/rtf-c2-20260505_020832/rtf_checkpoints/checkpoint-220/model.safetensors new file mode 100644 index 0000000000000000000000000000000000000000..e2a5ff7c732b4588c3d44fc6130dabc24f8d393e --- /dev/null +++ b/hyperparameter/c2/realtabformer/rtf-c2-20260505_020832/rtf_checkpoints/checkpoint-220/model.safetensors @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:e062b15387f9cbb15d360d07dc33fb3ad6093fcc13c8598f9f946f2b54d666ca +size 173379016 diff --git a/hyperparameter/c2/realtabformer/rtf-c2-20260505_020832/rtf_checkpoints/checkpoint-220/optimizer.pt b/hyperparameter/c2/realtabformer/rtf-c2-20260505_020832/rtf_checkpoints/checkpoint-220/optimizer.pt new file mode 100644 index 0000000000000000000000000000000000000000..477987e555faf6d7322d2c863c085c5fc547effa --- /dev/null +++ b/hyperparameter/c2/realtabformer/rtf-c2-20260505_020832/rtf_checkpoints/checkpoint-220/optimizer.pt @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:9819ef4b013428ccbfcb792a7376ba4517d49962fbf4bf79a3db0b91d10494c0 +size 346807051 diff --git a/hyperparameter/c2/realtabformer/rtf-c2-20260505_020832/rtf_checkpoints/checkpoint-220/rng_state.pth b/hyperparameter/c2/realtabformer/rtf-c2-20260505_020832/rtf_checkpoints/checkpoint-220/rng_state.pth new file mode 100644 index 0000000000000000000000000000000000000000..19500adb7e4cf00646de0135193913e949d529db --- /dev/null +++ b/hyperparameter/c2/realtabformer/rtf-c2-20260505_020832/rtf_checkpoints/checkpoint-220/rng_state.pth @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:5752f604d0da9f85544ae1d8541d36afd1f0c75ba0f70ad7d14163440bc5a995 +size 14645 diff --git a/hyperparameter/c2/realtabformer/rtf-c2-20260505_020832/rtf_checkpoints/checkpoint-220/scaler.pt b/hyperparameter/c2/realtabformer/rtf-c2-20260505_020832/rtf_checkpoints/checkpoint-220/scaler.pt new file mode 100644 index 0000000000000000000000000000000000000000..7f8f4f27aaf46907df612729c28b089f2c5367e6 --- /dev/null +++ b/hyperparameter/c2/realtabformer/rtf-c2-20260505_020832/rtf_checkpoints/checkpoint-220/scaler.pt @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:cb2e34d098aadc800b0425e7e182bffad68ed2b8e7619903a86bd70be3e76095 +size 1383 diff --git a/hyperparameter/c2/realtabformer/rtf-c2-20260505_020832/rtf_checkpoints/checkpoint-220/scheduler.pt b/hyperparameter/c2/realtabformer/rtf-c2-20260505_020832/rtf_checkpoints/checkpoint-220/scheduler.pt new file mode 100644 index 0000000000000000000000000000000000000000..44ccfb4921fbe6248d75620df1553178dd298626 --- /dev/null +++ b/hyperparameter/c2/realtabformer/rtf-c2-20260505_020832/rtf_checkpoints/checkpoint-220/scheduler.pt @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:a45a160adc4eb91529c01a49ff71bc79616998373ca0818218f47165530af3c5 +size 1465 diff --git a/hyperparameter/c2/realtabformer/rtf-c2-20260505_020832/rtf_checkpoints/checkpoint-220/trainer_state.json b/hyperparameter/c2/realtabformer/rtf-c2-20260505_020832/rtf_checkpoints/checkpoint-220/trainer_state.json new file mode 100644 index 0000000000000000000000000000000000000000..1fd8a55b6a54b7994bbaf9fbd5b4199b7396f0b0 --- /dev/null +++ b/hyperparameter/c2/realtabformer/rtf-c2-20260505_020832/rtf_checkpoints/checkpoint-220/trainer_state.json @@ -0,0 +1,48 @@ +{ + "best_global_step": null, + "best_metric": null, + "best_model_checkpoint": null, + "epoch": 5.0, + "eval_steps": 100, + "global_step": 220, + "is_hyper_param_search": false, + "is_local_process_zero": true, + "is_world_process_zero": true, + "log_history": [ + { + "epoch": 2.277456647398844, + "grad_norm": 0.4539995491504669, + "learning_rate": 2.7500000000000004e-05, + "loss": 1.0556336975097655, + "step": 100 + }, + { + "epoch": 4.554913294797688, + "grad_norm": 0.3622914254665375, + "learning_rate": 4.772727272727273e-06, + "loss": 0.8728273010253906, + "step": 200 + } + ], + "logging_steps": 100, + "max_steps": 220, + "num_input_tokens_seen": 0, + "num_train_epochs": 5, + "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": 15869184491520.0, + "train_batch_size": 8, + "trial_name": null, + "trial_params": null +} diff --git a/hyperparameter/c2/realtabformer/rtf-c2-20260505_020832/rtf_checkpoints/checkpoint-220/training_args.bin b/hyperparameter/c2/realtabformer/rtf-c2-20260505_020832/rtf_checkpoints/checkpoint-220/training_args.bin new file mode 100644 index 0000000000000000000000000000000000000000..ed11f716a866dff92bead1d973552e2411221de1 --- /dev/null +++ b/hyperparameter/c2/realtabformer/rtf-c2-20260505_020832/rtf_checkpoints/checkpoint-220/training_args.bin @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:91f70b571caed8698a4d8d0fd35c5241ef347a8d8ebe9d95ba3258b493311a0b +size 5201 diff --git a/hyperparameter/c2/realtabformer/rtf-c2-20260505_020832/rtf_checkpoints/checkpoint-88/config.json b/hyperparameter/c2/realtabformer/rtf-c2-20260505_020832/rtf_checkpoints/checkpoint-88/config.json new file mode 100644 index 0000000000000000000000000000000000000000..abc7bb2762d6bff3016eb042e7a2ac4abb80ea85 --- /dev/null +++ b/hyperparameter/c2/realtabformer/rtf-c2-20260505_020832/rtf_checkpoints/checkpoint-88/config.json @@ -0,0 +1,34 @@ +{ + "activation_function": "gelu_new", + "add_cross_attention": false, + "architectures": [ + "GPT2LMHeadModel" + ], + "attn_pdrop": 0.1, + "bos_token_id": 5, + "dtype": "float32", + "embd_pdrop": 0.1, + "eos_token_id": 6, + "initializer_range": 0.02, + "layer_norm_epsilon": 1e-05, + "model_type": "gpt2", + "n_embd": 768, + "n_head": 12, + "n_inner": null, + "n_layer": 6, + "n_positions": 1024, + "pad_token_id": null, + "reorder_and_upcast_attn": false, + "resid_pdrop": 0.1, + "scale_attn_by_inverse_layer_idx": false, + "scale_attn_weights": true, + "summary_activation": null, + "summary_first_dropout": 0.1, + "summary_proj_to_labels": true, + "summary_type": "cls_index", + "summary_use_proj": true, + "tie_word_embeddings": true, + "transformers_version": "5.5.3", + "use_cache": false, + "vocab_size": 36 +} diff --git a/hyperparameter/c2/realtabformer/rtf-c2-20260505_020832/rtf_checkpoints/checkpoint-88/generation_config.json b/hyperparameter/c2/realtabformer/rtf-c2-20260505_020832/rtf_checkpoints/checkpoint-88/generation_config.json new file mode 100644 index 0000000000000000000000000000000000000000..ffe89567780e75b5c22eade9be971483b9618f39 --- /dev/null +++ b/hyperparameter/c2/realtabformer/rtf-c2-20260505_020832/rtf_checkpoints/checkpoint-88/generation_config.json @@ -0,0 +1,9 @@ +{ + "_from_model_config": true, + "bos_token_id": 5, + "eos_token_id": 6, + "output_attentions": false, + "output_hidden_states": false, + "transformers_version": "5.5.3", + "use_cache": true +} diff --git a/hyperparameter/c2/realtabformer/rtf-c2-20260505_020832/rtf_checkpoints/checkpoint-88/model.safetensors b/hyperparameter/c2/realtabformer/rtf-c2-20260505_020832/rtf_checkpoints/checkpoint-88/model.safetensors new file mode 100644 index 0000000000000000000000000000000000000000..dd19e259c0da9c6191a1d7fc38ca336fc8c626e3 --- /dev/null +++ b/hyperparameter/c2/realtabformer/rtf-c2-20260505_020832/rtf_checkpoints/checkpoint-88/model.safetensors @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:7168c53dd0f36b5c8431165f5e1a492720e05cf5729470e5653284ed2aee0c0f +size 173379016 diff --git a/hyperparameter/c2/realtabformer/rtf-c2-20260505_020832/rtf_checkpoints/checkpoint-88/optimizer.pt b/hyperparameter/c2/realtabformer/rtf-c2-20260505_020832/rtf_checkpoints/checkpoint-88/optimizer.pt new file mode 100644 index 0000000000000000000000000000000000000000..1b5b4acbc559006b5a0f73923c5b5210af9269d2 --- /dev/null +++ b/hyperparameter/c2/realtabformer/rtf-c2-20260505_020832/rtf_checkpoints/checkpoint-88/optimizer.pt @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:fe6603b10cae2adeaca58212dcec7748f6a3b23d4dc5aae2750c0827921d65b5 +size 346807051 diff --git a/hyperparameter/c2/realtabformer/rtf-c2-20260505_020832/rtf_checkpoints/checkpoint-88/rng_state.pth b/hyperparameter/c2/realtabformer/rtf-c2-20260505_020832/rtf_checkpoints/checkpoint-88/rng_state.pth new file mode 100644 index 0000000000000000000000000000000000000000..52ec8c26766c31f9c8a708178db106e31f912c7f --- /dev/null +++ b/hyperparameter/c2/realtabformer/rtf-c2-20260505_020832/rtf_checkpoints/checkpoint-88/rng_state.pth @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:33c77ea55e7ba70c674fcb623f586a11fc7c95937f3f0060e2ed58b5218d9ba3 +size 14645 diff --git a/hyperparameter/c2/realtabformer/rtf-c2-20260505_020832/rtf_checkpoints/checkpoint-88/scaler.pt b/hyperparameter/c2/realtabformer/rtf-c2-20260505_020832/rtf_checkpoints/checkpoint-88/scaler.pt new file mode 100644 index 0000000000000000000000000000000000000000..94f597ef67d6e0a2e563b8b18cad5feb773d3a66 --- /dev/null +++ b/hyperparameter/c2/realtabformer/rtf-c2-20260505_020832/rtf_checkpoints/checkpoint-88/scaler.pt @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:31831d97c6dca0a75085eadf7554e2186b81640958835ed9b5aa01e69e95f2d1 +size 1383 diff --git a/hyperparameter/c2/realtabformer/rtf-c2-20260505_020832/rtf_checkpoints/checkpoint-88/scheduler.pt b/hyperparameter/c2/realtabformer/rtf-c2-20260505_020832/rtf_checkpoints/checkpoint-88/scheduler.pt new file mode 100644 index 0000000000000000000000000000000000000000..00072b47cfa1b0f209ed4cabe8723e52c6665727 --- /dev/null +++ b/hyperparameter/c2/realtabformer/rtf-c2-20260505_020832/rtf_checkpoints/checkpoint-88/scheduler.pt @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:6ec13632868fd127551a750d1f674498fe296831f23db09a68646feed6201d0e +size 1465 diff --git a/hyperparameter/c2/realtabformer/rtf-c2-20260505_020832/rtf_checkpoints/checkpoint-88/trainer_state.json b/hyperparameter/c2/realtabformer/rtf-c2-20260505_020832/rtf_checkpoints/checkpoint-88/trainer_state.json new file mode 100644 index 0000000000000000000000000000000000000000..9f1964e9a444b2d04a258197e2468cc9d4b4c97e --- /dev/null +++ b/hyperparameter/c2/realtabformer/rtf-c2-20260505_020832/rtf_checkpoints/checkpoint-88/trainer_state.json @@ -0,0 +1,33 @@ +{ + "best_global_step": null, + "best_metric": null, + "best_model_checkpoint": null, + "epoch": 2.0, + "eval_steps": 100, + "global_step": 88, + "is_hyper_param_search": false, + "is_local_process_zero": true, + "is_world_process_zero": true, + "log_history": [], + "logging_steps": 100, + "max_steps": 220, + "num_input_tokens_seen": 0, + "num_train_epochs": 5, + "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": 6347673796608.0, + "train_batch_size": 8, + "trial_name": null, + "trial_params": null +} diff --git a/hyperparameter/c2/realtabformer/rtf-c2-20260505_020832/rtf_checkpoints/checkpoint-88/training_args.bin b/hyperparameter/c2/realtabformer/rtf-c2-20260505_020832/rtf_checkpoints/checkpoint-88/training_args.bin new file mode 100644 index 0000000000000000000000000000000000000000..ed11f716a866dff92bead1d973552e2411221de1 --- /dev/null +++ b/hyperparameter/c2/realtabformer/rtf-c2-20260505_020832/rtf_checkpoints/checkpoint-88/training_args.bin @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:91f70b571caed8698a4d8d0fd35c5241ef347a8d8ebe9d95ba3258b493311a0b +size 5201 diff --git a/hyperparameter/c2/realtabformer/rtf-c2-20260505_020832/run_config.json b/hyperparameter/c2/realtabformer/rtf-c2-20260505_020832/run_config.json new file mode 100644 index 0000000000000000000000000000000000000000..10dba3315e72f2f83d495ca0af55de1874aa0b00 --- /dev/null +++ b/hyperparameter/c2/realtabformer/rtf-c2-20260505_020832/run_config.json @@ -0,0 +1,40 @@ +{ + "schema_version": 1, + "recorded_at": "2026-05-05T02:08:32", + "dataset_id": "c2", + "model": "realtabformer", + "work_dir": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/c2/realtabformer/rtf-c2-20260505_020832", + "dataset_source_requested": "new", + "dataset_source_resolved": "new", + "cli_args": { + "model": "realtabformer", + "dataset": "c2", + "dataset_source": "new", + "train": true, + "generate": true, + "num_rows": 0, + "epochs": 5, + "output_dir": null, + "model_dir": null, + "work_dir": null, + "resume": false, + "no_stats": false + }, + "resolved": { + "num_rows": 1382, + "model_path": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/c2/realtabformer/rtf-c2-20260505_020832/models_5epochs", + "output_csv": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/c2/realtabformer/rtf-c2-20260505_020832/rtf-c2-1382-20260505_020906.csv" + }, + "input_artifacts": { + "public_gate_report": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/c2/realtabformer/rtf-c2-20260505_020832/public_gate/public_gate_report.json", + "public_manifest": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/c2/realtabformer/rtf-c2-20260505_020832/public_gate/staged_input_manifest.json", + "model_manifest": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/c2/realtabformer/rtf-c2-20260505_020832/staged/realtabformer/model_input_manifest.json", + "train_csv": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/c2/realtabformer/rtf-c2-20260505_020832/staged/public/train.csv", + "features_json": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/c2/realtabformer/rtf-c2-20260505_020832/staged/public/staged_features.json", + "target_column": "class", + "task_type": "classification" + }, + "env_overrides": { + "BENCHMARK_REALTABFORMER_GPUS": "device=3" + } +} \ No newline at end of file diff --git a/hyperparameter/c2/realtabformer/rtf-c2-20260505_020832/runtime_result.json b/hyperparameter/c2/realtabformer/rtf-c2-20260505_020832/runtime_result.json new file mode 100644 index 0000000000000000000000000000000000000000..25b6f4aac1aa1498975189f3fdc73ffa29e52327 --- /dev/null +++ b/hyperparameter/c2/realtabformer/rtf-c2-20260505_020832/runtime_result.json @@ -0,0 +1,27 @@ +{ + "dataset_id": "c2", + "model": "realtabformer", + "run_id": "rtf-c2-20260505_020832", + "public_gate_status": "pass", + "adapter_ready_status": "pass", + "train_status": "success", + "generate_status": "success", + "reason_code": null, + "reason_detail": null, + "artifacts": { + "synthetic_csv": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/c2/realtabformer/rtf-c2-20260505_020832/rtf-c2-1382-20260505_020906.csv", + "model_path": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/c2/realtabformer/rtf-c2-20260505_020832/models_5epochs" + }, + "timings": { + "train": { + "started_at": "2026-05-05T02:08:32", + "ended_at": "2026-05-05T02:09:06", + "duration_sec": 33.247 + }, + "generate": { + "started_at": "2026-05-05T02:09:06", + "ended_at": "2026-05-05T02:09:19", + "duration_sec": 13.126 + } + } +} \ No newline at end of file diff --git a/hyperparameter/c2/realtabformer/rtf-c2-20260505_020832/staged/public/staged_features.json b/hyperparameter/c2/realtabformer/rtf-c2-20260505_020832/staged/public/staged_features.json new file mode 100644 index 0000000000000000000000000000000000000000..61783861dd5de501592f76acb0469cf3f3b2622a --- /dev/null +++ b/hyperparameter/c2/realtabformer/rtf-c2-20260505_020832/staged/public/staged_features.json @@ -0,0 +1,37 @@ +[ + { + "feature_name": "buying", + "data_type": "categorical", + "is_target": false + }, + { + "feature_name": "maint", + "data_type": "categorical", + "is_target": false + }, + { + "feature_name": "doors", + "data_type": "categorical", + "is_target": false + }, + { + "feature_name": "persons", + "data_type": "categorical", + "is_target": false + }, + { + "feature_name": "lug_boot", + "data_type": "categorical", + "is_target": false + }, + { + "feature_name": "safety", + "data_type": "categorical", + "is_target": false + }, + { + "feature_name": "class", + "data_type": "categorical", + "is_target": true + } +] \ No newline at end of file diff --git a/hyperparameter/c2/realtabformer/rtf-c2-20260505_020832/staged/public/test.csv b/hyperparameter/c2/realtabformer/rtf-c2-20260505_020832/staged/public/test.csv new file mode 100644 index 0000000000000000000000000000000000000000..392a0d7189a34d8f13ecf20a99d64b03230d517c --- /dev/null +++ b/hyperparameter/c2/realtabformer/rtf-c2-20260505_020832/staged/public/test.csv @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:b48114a7d0bc5bd9a07920f903c8d4aba8bf98bf2a66a050da03588b0245ca73 +size 5273 diff --git a/hyperparameter/c2/realtabformer/rtf-c2-20260505_020832/staged/public/train.csv b/hyperparameter/c2/realtabformer/rtf-c2-20260505_020832/staged/public/train.csv new file mode 100644 index 0000000000000000000000000000000000000000..da4f4d55134eebc0e51157d0d467536371db1484 --- /dev/null +++ b/hyperparameter/c2/realtabformer/rtf-c2-20260505_020832/staged/public/train.csv @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:4aed00c2c2b3f88a55a7ebff31b2e1b5e0e32fb0a7267e0b9d2779cd23e434dd +size 41565 diff --git a/hyperparameter/c2/realtabformer/rtf-c2-20260505_020832/staged/public/val.csv b/hyperparameter/c2/realtabformer/rtf-c2-20260505_020832/staged/public/val.csv new file mode 100644 index 0000000000000000000000000000000000000000..af8caf7ee42524188534a3daf32996dc491952d9 --- /dev/null +++ b/hyperparameter/c2/realtabformer/rtf-c2-20260505_020832/staged/public/val.csv @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:26e90c1170a57a14c05832ac88027722b1f3848f9662c7c09ef7c93dcba4cc01 +size 5176 diff --git a/hyperparameter/c2/realtabformer/rtf-c2-20260505_020832/staged/realtabformer/adapter_report.json b/hyperparameter/c2/realtabformer/rtf-c2-20260505_020832/staged/realtabformer/adapter_report.json new file mode 100644 index 0000000000000000000000000000000000000000..348baf22266d79041b35c6f115b058ea4d637f8a --- /dev/null +++ b/hyperparameter/c2/realtabformer/rtf-c2-20260505_020832/staged/realtabformer/adapter_report.json @@ -0,0 +1,7 @@ +{ + "adapter_ready_status": "pass", + "adapter_fail_reason_code": null, + "adapter_fail_detail": null, + "adapter_transforms_applied": [], + "model_input_manifest": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/c2/realtabformer/rtf-c2-20260505_020832/staged/realtabformer/model_input_manifest.json" +} \ No newline at end of file diff --git a/hyperparameter/c2/realtabformer/rtf-c2-20260505_020832/staged/realtabformer/adapter_transforms_applied.json b/hyperparameter/c2/realtabformer/rtf-c2-20260505_020832/staged/realtabformer/adapter_transforms_applied.json new file mode 100644 index 0000000000000000000000000000000000000000..0637a088a01e8ddab3bf3fa98dbe804cbde1a0dc --- /dev/null +++ b/hyperparameter/c2/realtabformer/rtf-c2-20260505_020832/staged/realtabformer/adapter_transforms_applied.json @@ -0,0 +1 @@ +[] \ No newline at end of file diff --git a/hyperparameter/c2/realtabformer/rtf-c2-20260505_020832/staged/realtabformer/model_input_manifest.json b/hyperparameter/c2/realtabformer/rtf-c2-20260505_020832/staged/realtabformer/model_input_manifest.json new file mode 100644 index 0000000000000000000000000000000000000000..155d79d082cb1490b345e1d5711cf459c21a9000 --- /dev/null +++ b/hyperparameter/c2/realtabformer/rtf-c2-20260505_020832/staged/realtabformer/model_input_manifest.json @@ -0,0 +1,151 @@ +{ + "dataset_id": "c2", + "model": "realtabformer", + "target_column": "class", + "task_type": "classification", + "column_schema": [ + { + "name": "buying", + "role": "feature", + "semantic_type": "categorical", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 4, + "unique_ratio": 0.002894, + "example_values": [ + "vhigh", + "med", + "high", + "low" + ] + } + }, + { + "name": "maint", + "role": "feature", + "semantic_type": "categorical", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 4, + "unique_ratio": 0.002894, + "example_values": [ + "vhigh", + "low", + "med", + "high" + ] + } + }, + { + "name": "doors", + "role": "feature", + "semantic_type": "categorical", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 4, + "unique_ratio": 0.002894, + "example_values": [ + "2", + "5more", + "3", + "4" + ] + } + }, + { + "name": "persons", + "role": "feature", + "semantic_type": "categorical", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 3, + "unique_ratio": 0.002171, + "example_values": [ + "2", + "4", + "more" + ] + } + }, + { + "name": "lug_boot", + "role": "feature", + "semantic_type": "categorical", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 3, + "unique_ratio": 0.002171, + "example_values": [ + "small", + "big", + "med" + ] + } + }, + { + "name": "safety", + "role": "feature", + "semantic_type": "categorical", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 3, + "unique_ratio": 0.002171, + "example_values": [ + "low", + "high", + "med" + ] + } + }, + { + "name": "class", + "role": "target", + "semantic_type": "categorical", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 4, + "unique_ratio": 0.002894, + "example_values": [ + "unacc", + "good", + "acc", + "vgood" + ] + } + } + ], + "public_manifest": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/c2/realtabformer/rtf-c2-20260505_020832/public_gate/staged_input_manifest.json", + "train_csv": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/c2/realtabformer/rtf-c2-20260505_020832/staged/public/train.csv", + "val_csv": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/c2/realtabformer/rtf-c2-20260505_020832/staged/public/val.csv", + "test_csv": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/c2/realtabformer/rtf-c2-20260505_020832/staged/public/test.csv", + "features_json": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/c2/realtabformer/rtf-c2-20260505_020832/staged/public/staged_features.json", + "public_gate_report": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/c2/realtabformer/rtf-c2-20260505_020832/public_gate/public_gate_report.json" +} \ No newline at end of file diff --git a/hyperparameter/c2/realtabformer/rtf-c2-20260505_020832/train_20260505_020832.log b/hyperparameter/c2/realtabformer/rtf-c2-20260505_020832/train_20260505_020832.log new file mode 100644 index 0000000000000000000000000000000000000000..16caaf3e7396b75c372f6ed0425fc935c66fac41 --- /dev/null +++ b/hyperparameter/c2/realtabformer/rtf-c2-20260505_020832/train_20260505_020832.log @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:e38c79c8695bf64e8cc6fe3d3b4443f71683c409fb84fa25edc2ac3970252800 +size 10138 diff --git a/hyperparameter/c2/realtabformer/rtf-c2-20260505_020932/gen_20260505_021020.log b/hyperparameter/c2/realtabformer/rtf-c2-20260505_020932/gen_20260505_021020.log new file mode 100644 index 0000000000000000000000000000000000000000..3441d4723a3ca4ab0cbf8285b85edce26fbed3ef --- /dev/null +++ b/hyperparameter/c2/realtabformer/rtf-c2-20260505_020932/gen_20260505_021020.log @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:e84202694a7d153cadb61446532218fc81cb8fda93220083734d475a02b732a1 +size 1281 diff --git a/hyperparameter/c2/realtabformer/rtf-c2-20260505_020932/input_snapshot.json b/hyperparameter/c2/realtabformer/rtf-c2-20260505_020932/input_snapshot.json new file mode 100644 index 0000000000000000000000000000000000000000..16a47f24a14783056963c7c31b54a93442c4e573 --- /dev/null +++ b/hyperparameter/c2/realtabformer/rtf-c2-20260505_020932/input_snapshot.json @@ -0,0 +1,36 @@ +{ + "dataset_id": "c2", + "model": "realtabformer", + "inputs": { + "train_csv": { + "path": "/data/jialinzhang/SynthesizePipeline-server/DatasetNew/c2/c2-train.csv", + "exists": true, + "size": 42948, + "sha256": "17bc560fa96bd00fb3b526e1e65bc91210b701d0d0a4e8bb9b4c5196cab56def" + }, + "val_csv": { + "path": "/data/jialinzhang/SynthesizePipeline-server/DatasetNew/c2/c2-val.csv", + "exists": true, + "size": 5349, + "sha256": "61e565eca62e65a7dccd9d51039a3170413379e10fc494e25870e7c4294863c9" + }, + "test_csv": { + "path": "/data/jialinzhang/SynthesizePipeline-server/DatasetNew/c2/c2-test.csv", + "exists": true, + "size": 5448, + "sha256": "cbcbb062a1faf5fa44b66c80532baa229e05b94fc42137269761e6c6d84af20a" + }, + "profile_json": { + "path": "/data/jialinzhang/SynthesizePipeline-server/DatasetNew/artifacts/data_core/tabular/c2/c2-dataset_profile.json", + "exists": true, + "size": 3240, + "sha256": "526b7163b2076c93c0bf4638438081ee8a6907065d5b608faa40d1a3dbc2a27b" + }, + "contract_json": { + "path": "/data/jialinzhang/SynthesizePipeline-server/DatasetNew/artifacts/data_core/tabular/c2/c2-dataset_contract_v1.json", + "exists": true, + "size": 3731, + "sha256": "fb595a876054c2ee9b4e10cfe83a5691588de1d25466cbb9d473c18ad3604009" + } + } +} \ No newline at end of file diff --git a/hyperparameter/c2/realtabformer/rtf-c2-20260505_020932/models_10epochs/id000017779182185762621440/rtf_config.json b/hyperparameter/c2/realtabformer/rtf-c2-20260505_020932/models_10epochs/id000017779182185762621440/rtf_config.json new file mode 100644 index 0000000000000000000000000000000000000000..7434fd98a3f12876dca803a63c5bf301387f8acf --- /dev/null +++ b/hyperparameter/c2/realtabformer/rtf-c2-20260505_020932/models_10epochs/id000017779182185762621440/rtf_config.json @@ -0,0 +1 @@ +{"model_type": "tabular", "tabular_config": {"transformers_version": "5.5.3", "architectures": ["GPT2LMHeadModel"], "output_hidden_states": false, "return_dict": true, "dtype": "float32", "chunk_size_feed_forward": 0, "is_encoder_decoder": false, "id2label": {"0": "LABEL_0", "1": "LABEL_1"}, "label2id": {"LABEL_0": 0, "LABEL_1": 1}, "problem_type": null, "vocab_size": 36, "n_positions": 1024, "n_embd": 768, "n_layer": 6, "n_head": 12, "n_inner": null, "activation_function": "gelu_new", "resid_pdrop": 0.1, "embd_pdrop": 0.1, "attn_pdrop": 0.1, "layer_norm_epsilon": 1e-05, "initializer_range": 0.02, "summary_type": "cls_index", "summary_use_proj": true, "summary_activation": null, "summary_proj_to_labels": true, "summary_first_dropout": 0.1, "scale_attn_weights": true, "use_cache": false, "bos_token_id": 5, "eos_token_id": 6, "pad_token_id": null, "scale_attn_by_inverse_layer_idx": false, "reorder_and_upcast_attn": false, "add_cross_attention": false, "tie_word_embeddings": true, "_name_or_path": "", "model_type": "gpt2", "output_attentions": false}, "checkpoints_dir": "rtf_checkpoints", "samples_save_dir": "rtf_samples", "full_save_dir": "rtf_full_save", "epochs": 10, "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": 10, "per_device_train_batch_size": 8, "per_device_eval_batch_size": 8, "gradient_accumulation_steps": 4, "remove_unused_columns": true, "logging_steps": 100, "save_steps": 100, "eval_steps": 100, "load_best_model_at_end": false, "save_total_limit": 6, "optim": "adamw_torch"}, "train_size": 1, "mask_rate": 0, "columns": ["buying", "maint", "doors", "persons", "lug_boot", "safety", "class"], "column_dtypes": {"buying": "object", "maint": "object", "doors": "object", "persons": "object", "lug_boot": "object", "safety": "object", "class": "object"}, "column_has_missing": {"buying": false, "maint": false, "doors": false, "persons": false, "lug_boot": false, "safety": false, "class": false}, "drop_na_cols": ["buying", "maint", "doors", "persons", "lug_boot", "safety", "class"], "processed_columns": ["0___CATEGORICAL___buying", "1___CATEGORICAL___maint", "2___CATEGORICAL___doors", "3___CATEGORICAL___persons", "4___CATEGORICAL___lug_boot", "5___CATEGORICAL___safety", "6___CATEGORICAL___class"], "numeric_columns": [], "datetime_columns": [], "vocab": {"id2token": {"0": "[UNK]", "1": "[SEP]", "2": "[PAD]", "3": "[CLS]", "4": "[MASK]", "5": "[BOS]", "6": "[EOS]", "7": "[BMEM]", "8": "[EMEM]", "9": "[RMASK]", "10": "[SPTYPE]", "11": "0___CATEGORICAL___buying___high", "12": "0___CATEGORICAL___buying___low", "13": "0___CATEGORICAL___buying___med", "14": "0___CATEGORICAL___buying___vhigh", "15": "1___CATEGORICAL___maint___high", "16": "1___CATEGORICAL___maint___low", "17": "1___CATEGORICAL___maint___med", "18": "1___CATEGORICAL___maint___vhigh", "19": "2___CATEGORICAL___doors___2", "20": "2___CATEGORICAL___doors___3", "21": "2___CATEGORICAL___doors___4", "22": "2___CATEGORICAL___doors___5more", "23": "3___CATEGORICAL___persons___2", "24": "3___CATEGORICAL___persons___4", "25": "3___CATEGORICAL___persons___more", "26": "4___CATEGORICAL___lug_boot___big", "27": "4___CATEGORICAL___lug_boot___med", "28": "4___CATEGORICAL___lug_boot___small", "29": "5___CATEGORICAL___safety___high", "30": "5___CATEGORICAL___safety___low", "31": "5___CATEGORICAL___safety___med", "32": "6___CATEGORICAL___class___acc", "33": "6___CATEGORICAL___class___good", "34": "6___CATEGORICAL___class___unacc", "35": "6___CATEGORICAL___class___vgood"}, "token2id": {"[UNK]": 0, "[SEP]": 1, "[PAD]": 2, "[CLS]": 3, "[MASK]": 4, "[BOS]": 5, "[EOS]": 6, "[BMEM]": 7, "[EMEM]": 8, "[RMASK]": 9, "[SPTYPE]": 10, "0___CATEGORICAL___buying___high": 11, "0___CATEGORICAL___buying___low": 12, "0___CATEGORICAL___buying___med": 13, "0___CATEGORICAL___buying___vhigh": 14, "1___CATEGORICAL___maint___high": 15, "1___CATEGORICAL___maint___low": 16, "1___CATEGORICAL___maint___med": 17, "1___CATEGORICAL___maint___vhigh": 18, "2___CATEGORICAL___doors___2": 19, "2___CATEGORICAL___doors___3": 20, "2___CATEGORICAL___doors___4": 21, "2___CATEGORICAL___doors___5more": 22, "3___CATEGORICAL___persons___2": 23, "3___CATEGORICAL___persons___4": 24, "3___CATEGORICAL___persons___more": 25, "4___CATEGORICAL___lug_boot___big": 26, "4___CATEGORICAL___lug_boot___med": 27, "4___CATEGORICAL___lug_boot___small": 28, "5___CATEGORICAL___safety___high": 29, "5___CATEGORICAL___safety___low": 30, "5___CATEGORICAL___safety___med": 31, "6___CATEGORICAL___class___acc": 32, "6___CATEGORICAL___class___good": 33, "6___CATEGORICAL___class___unacc": 34, "6___CATEGORICAL___class___vgood": 35}, "column_token_ids": {"0___CATEGORICAL___buying": [11, 12, 13, 14], "1___CATEGORICAL___maint": [15, 16, 17, 18], "2___CATEGORICAL___doors": [19, 20, 21, 22], "3___CATEGORICAL___persons": [23, 24, 25], "4___CATEGORICAL___lug_boot": [26, 27, 28], "5___CATEGORICAL___safety": [29, 30, 31], "6___CATEGORICAL___class": [32, 33, 34, 35]}}, "tabular_max_length": 9, "relational_max_length": null, "tabular_col_size": 1382, "relational_col_size": null, "col_transform_data": {}, "in_col_transform_data": null, "col_idx_ids": {"0": [11, 12, 13, 14], "1": [15, 16, 17, 18], "2": [19, 20, 21, 22], "3": [23, 24, 25], "4": [26, 27, 28], "5": [29, 30, 31], "6": [32, 33, 34, 35]}, "random_state": 1029, "numeric_nparts": 1, "numeric_precision": 4, "numeric_max_len": 10, "experiment_id": "id000017779182185762621440", "trainer_state": null, "target_col": null, "realtabformer_version": "0.2.4"} \ No newline at end of file diff --git a/hyperparameter/c2/realtabformer/rtf-c2-20260505_020932/models_10epochs/id000017779182185762621440/rtf_model.pt b/hyperparameter/c2/realtabformer/rtf-c2-20260505_020932/models_10epochs/id000017779182185762621440/rtf_model.pt new file mode 100644 index 0000000000000000000000000000000000000000..aeef49356e0c3e6d958cd7e2b6a35b22bcc539b9 --- /dev/null +++ b/hyperparameter/c2/realtabformer/rtf-c2-20260505_020932/models_10epochs/id000017779182185762621440/rtf_model.pt @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:852dc2ca5ea5e8e6cafa2940454327f5640c4df70e56855804b0c6d824965f72 +size 173400547 diff --git a/hyperparameter/c2/realtabformer/rtf-c2-20260505_020932/public_gate/normalized_schema_snapshot.json b/hyperparameter/c2/realtabformer/rtf-c2-20260505_020932/public_gate/normalized_schema_snapshot.json new file mode 100644 index 0000000000000000000000000000000000000000..689b1d00d96508e44ba40e58dc4560e19afc2b3b --- /dev/null +++ b/hyperparameter/c2/realtabformer/rtf-c2-20260505_020932/public_gate/normalized_schema_snapshot.json @@ -0,0 +1,144 @@ +{ + "dataset_id": "c2", + "target_column": "class", + "task_type": "classification", + "columns": [ + { + "name": "buying", + "role": "feature", + "semantic_type": "categorical", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 4, + "unique_ratio": 0.002894, + "example_values": [ + "vhigh", + "med", + "high", + "low" + ] + } + }, + { + "name": "maint", + "role": "feature", + "semantic_type": "categorical", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 4, + "unique_ratio": 0.002894, + "example_values": [ + "vhigh", + "low", + "med", + "high" + ] + } + }, + { + "name": "doors", + "role": "feature", + "semantic_type": "categorical", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 4, + "unique_ratio": 0.002894, + "example_values": [ + "2", + "5more", + "3", + "4" + ] + } + }, + { + "name": "persons", + "role": "feature", + "semantic_type": "categorical", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 3, + "unique_ratio": 0.002171, + "example_values": [ + "2", + "4", + "more" + ] + } + }, + { + "name": "lug_boot", + "role": "feature", + "semantic_type": "categorical", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 3, + "unique_ratio": 0.002171, + "example_values": [ + "small", + "big", + "med" + ] + } + }, + { + "name": "safety", + "role": "feature", + "semantic_type": "categorical", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 3, + "unique_ratio": 0.002171, + "example_values": [ + "low", + "high", + "med" + ] + } + }, + { + "name": "class", + "role": "target", + "semantic_type": "categorical", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 4, + "unique_ratio": 0.002894, + "example_values": [ + "unacc", + "good", + "acc", + "vgood" + ] + } + } + ] +} \ No newline at end of file diff --git a/hyperparameter/c2/realtabformer/rtf-c2-20260505_020932/public_gate/public_gate_report.json b/hyperparameter/c2/realtabformer/rtf-c2-20260505_020932/public_gate/public_gate_report.json new file mode 100644 index 0000000000000000000000000000000000000000..2e4cdcb2a4e28e40d59b17a83e773f622b7636a5 --- /dev/null +++ b/hyperparameter/c2/realtabformer/rtf-c2-20260505_020932/public_gate/public_gate_report.json @@ -0,0 +1,37 @@ +{ + "dataset_id": "c2", + "status": "pass", + "checks": [ + { + "check_id": "PG001_csv_parse_ok", + "status": "pass" + }, + { + "check_id": "PG002_split_header_consistent", + "status": "pass" + }, + { + "check_id": "PG003_profile_header_match", + "status": "pass" + }, + { + "check_id": "PG004_missing_token_normalized", + "status": "pass" + }, + { + "check_id": "PG005_semantic_type_validated", + "status": "pass" + }, + { + "check_id": "PG006_target_defined_and_valid", + "status": "pass" + } + ], + "target_column": "class", + "task_type": "classification", + "input_splits": { + "train": "/data/jialinzhang/SynthesizePipeline-server/DatasetNew/c2/c2-train.csv", + "val": "/data/jialinzhang/SynthesizePipeline-server/DatasetNew/c2/c2-val.csv", + "test": "/data/jialinzhang/SynthesizePipeline-server/DatasetNew/c2/c2-test.csv" + } +} \ No newline at end of file diff --git a/hyperparameter/c2/realtabformer/rtf-c2-20260505_020932/public_gate/staged_input_manifest.json b/hyperparameter/c2/realtabformer/rtf-c2-20260505_020932/public_gate/staged_input_manifest.json new file mode 100644 index 0000000000000000000000000000000000000000..876760e31395477041bc45ccabffd3e0654d8da5 --- /dev/null +++ b/hyperparameter/c2/realtabformer/rtf-c2-20260505_020932/public_gate/staged_input_manifest.json @@ -0,0 +1,149 @@ +{ + "dataset_id": "c2", + "target_column": "class", + "task_type": "classification", + "train_csv": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/c2/realtabformer/rtf-c2-20260505_020932/staged/public/train.csv", + "val_csv": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/c2/realtabformer/rtf-c2-20260505_020932/staged/public/val.csv", + "test_csv": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/c2/realtabformer/rtf-c2-20260505_020932/staged/public/test.csv", + "features_json": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/c2/realtabformer/rtf-c2-20260505_020932/staged/public/staged_features.json", + "public_gate_report": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/c2/realtabformer/rtf-c2-20260505_020932/public_gate/public_gate_report.json", + "column_schema": [ + { + "name": "buying", + "role": "feature", + "semantic_type": "categorical", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 4, + "unique_ratio": 0.002894, + "example_values": [ + "vhigh", + "med", + "high", + "low" + ] + } + }, + { + "name": "maint", + "role": "feature", + "semantic_type": "categorical", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 4, + "unique_ratio": 0.002894, + "example_values": [ + "vhigh", + "low", + "med", + "high" + ] + } + }, + { + "name": "doors", + "role": "feature", + "semantic_type": "categorical", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 4, + "unique_ratio": 0.002894, + "example_values": [ + "2", + "5more", + "3", + "4" + ] + } + }, + { + "name": "persons", + "role": "feature", + "semantic_type": "categorical", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 3, + "unique_ratio": 0.002171, + "example_values": [ + "2", + "4", + "more" + ] + } + }, + { + "name": "lug_boot", + "role": "feature", + "semantic_type": "categorical", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 3, + "unique_ratio": 0.002171, + "example_values": [ + "small", + "big", + "med" + ] + } + }, + { + "name": "safety", + "role": "feature", + "semantic_type": "categorical", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 3, + "unique_ratio": 0.002171, + "example_values": [ + "low", + "high", + "med" + ] + } + }, + { + "name": "class", + "role": "target", + "semantic_type": "categorical", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 4, + "unique_ratio": 0.002894, + "example_values": [ + "unacc", + "good", + "acc", + "vgood" + ] + } + } + ] +} \ No newline at end of file diff --git a/hyperparameter/c2/realtabformer/rtf-c2-20260505_020932/realtabformer_features.json b/hyperparameter/c2/realtabformer/rtf-c2-20260505_020932/realtabformer_features.json new file mode 100644 index 0000000000000000000000000000000000000000..61783861dd5de501592f76acb0469cf3f3b2622a --- /dev/null +++ b/hyperparameter/c2/realtabformer/rtf-c2-20260505_020932/realtabformer_features.json @@ -0,0 +1,37 @@ +[ + { + "feature_name": "buying", + "data_type": "categorical", + "is_target": false + }, + { + "feature_name": "maint", + "data_type": "categorical", + "is_target": false + }, + { + "feature_name": "doors", + "data_type": "categorical", + "is_target": false + }, + { + "feature_name": "persons", + "data_type": "categorical", + "is_target": false + }, + { + "feature_name": "lug_boot", + "data_type": "categorical", + "is_target": false + }, + { + "feature_name": "safety", + "data_type": "categorical", + "is_target": false + }, + { + "feature_name": "class", + "data_type": "categorical", + "is_target": true + } +] \ No newline at end of file diff --git a/hyperparameter/c2/realtabformer/rtf-c2-20260505_020932/rtf-c2-1382-20260505_021020.csv b/hyperparameter/c2/realtabformer/rtf-c2-20260505_020932/rtf-c2-1382-20260505_021020.csv new file mode 100644 index 0000000000000000000000000000000000000000..cd746b9fd1deca810cc24756736f541ebd3df0bf --- /dev/null +++ b/hyperparameter/c2/realtabformer/rtf-c2-20260505_020932/rtf-c2-1382-20260505_021020.csv @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:75765282da0708090e1b745097dddad497a570b81ea0e2af8f770054dd597d7a +size 41638 diff --git a/hyperparameter/c2/realtabformer/rtf-c2-20260505_020932/rtf_checkpoints/checkpoint-300/config.json b/hyperparameter/c2/realtabformer/rtf-c2-20260505_020932/rtf_checkpoints/checkpoint-300/config.json new file mode 100644 index 0000000000000000000000000000000000000000..abc7bb2762d6bff3016eb042e7a2ac4abb80ea85 --- /dev/null +++ b/hyperparameter/c2/realtabformer/rtf-c2-20260505_020932/rtf_checkpoints/checkpoint-300/config.json @@ -0,0 +1,34 @@ +{ + "activation_function": "gelu_new", + "add_cross_attention": false, + "architectures": [ + "GPT2LMHeadModel" + ], + "attn_pdrop": 0.1, + "bos_token_id": 5, + "dtype": "float32", + "embd_pdrop": 0.1, + "eos_token_id": 6, + "initializer_range": 0.02, + "layer_norm_epsilon": 1e-05, + "model_type": "gpt2", + "n_embd": 768, + "n_head": 12, + "n_inner": null, + "n_layer": 6, + "n_positions": 1024, + "pad_token_id": null, + "reorder_and_upcast_attn": false, + "resid_pdrop": 0.1, + "scale_attn_by_inverse_layer_idx": false, + "scale_attn_weights": true, + "summary_activation": null, + "summary_first_dropout": 0.1, + "summary_proj_to_labels": true, + "summary_type": "cls_index", + "summary_use_proj": true, + "tie_word_embeddings": true, + "transformers_version": "5.5.3", + "use_cache": false, + "vocab_size": 36 +} diff --git a/hyperparameter/c2/realtabformer/rtf-c2-20260505_020932/rtf_checkpoints/checkpoint-300/generation_config.json b/hyperparameter/c2/realtabformer/rtf-c2-20260505_020932/rtf_checkpoints/checkpoint-300/generation_config.json new file mode 100644 index 0000000000000000000000000000000000000000..ffe89567780e75b5c22eade9be971483b9618f39 --- /dev/null +++ b/hyperparameter/c2/realtabformer/rtf-c2-20260505_020932/rtf_checkpoints/checkpoint-300/generation_config.json @@ -0,0 +1,9 @@ +{ + "_from_model_config": true, + "bos_token_id": 5, + "eos_token_id": 6, + "output_attentions": false, + "output_hidden_states": false, + "transformers_version": "5.5.3", + "use_cache": true +} diff --git a/hyperparameter/c2/realtabformer/rtf-c2-20260505_020932/rtf_checkpoints/checkpoint-300/model.safetensors b/hyperparameter/c2/realtabformer/rtf-c2-20260505_020932/rtf_checkpoints/checkpoint-300/model.safetensors new file mode 100644 index 0000000000000000000000000000000000000000..627c7f995ab8b06f0ac381de696a569948ef8fc3 --- /dev/null +++ b/hyperparameter/c2/realtabformer/rtf-c2-20260505_020932/rtf_checkpoints/checkpoint-300/model.safetensors @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:e007b47ae733cc370223e66515cc6eb7e0ab185a25a8f3ab13ee789aaec41b7f +size 173379016 diff --git a/hyperparameter/c2/realtabformer/rtf-c2-20260505_020932/rtf_checkpoints/checkpoint-300/optimizer.pt b/hyperparameter/c2/realtabformer/rtf-c2-20260505_020932/rtf_checkpoints/checkpoint-300/optimizer.pt new file mode 100644 index 0000000000000000000000000000000000000000..89390063ec535fc64745f66d424d37f366687adc --- /dev/null +++ b/hyperparameter/c2/realtabformer/rtf-c2-20260505_020932/rtf_checkpoints/checkpoint-300/optimizer.pt @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:431030b3e3b531f15744fe5dc0ce49615a4c3467327548de1ca7e84155739d61 +size 346807051 diff --git a/hyperparameter/c2/realtabformer/rtf-c2-20260505_020932/rtf_checkpoints/checkpoint-300/rng_state.pth b/hyperparameter/c2/realtabformer/rtf-c2-20260505_020932/rtf_checkpoints/checkpoint-300/rng_state.pth new file mode 100644 index 0000000000000000000000000000000000000000..0819bbb1aec1f3113cb23fbce37b63956625eea2 --- /dev/null +++ b/hyperparameter/c2/realtabformer/rtf-c2-20260505_020932/rtf_checkpoints/checkpoint-300/rng_state.pth @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:6629fe4998085dffd859589814b13024799d3ff57245bf41b1a63fe7c07912e6 +size 14645 diff --git a/hyperparameter/c2/realtabformer/rtf-c2-20260505_020932/rtf_checkpoints/checkpoint-300/scaler.pt b/hyperparameter/c2/realtabformer/rtf-c2-20260505_020932/rtf_checkpoints/checkpoint-300/scaler.pt new file mode 100644 index 0000000000000000000000000000000000000000..872dde653491aa0ae40076c2acf51d2ae74df8ca --- /dev/null +++ b/hyperparameter/c2/realtabformer/rtf-c2-20260505_020932/rtf_checkpoints/checkpoint-300/scaler.pt @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:30af866df24edce708e1eb20700878b402fa05707fa9bc5f332496baf440dbbb +size 1383 diff --git a/hyperparameter/c2/realtabformer/rtf-c2-20260505_020932/rtf_checkpoints/checkpoint-300/scheduler.pt b/hyperparameter/c2/realtabformer/rtf-c2-20260505_020932/rtf_checkpoints/checkpoint-300/scheduler.pt new file mode 100644 index 0000000000000000000000000000000000000000..8398548ed91ff32e0dd3a4742f87207ae5db8429 --- /dev/null +++ b/hyperparameter/c2/realtabformer/rtf-c2-20260505_020932/rtf_checkpoints/checkpoint-300/scheduler.pt @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:75f28cc90111e73f632a328b8de9890f0f2f33245e84e37e41b665490b5397f5 +size 1465 diff --git a/hyperparameter/c2/realtabformer/rtf-c2-20260505_020932/rtf_checkpoints/checkpoint-300/trainer_state.json b/hyperparameter/c2/realtabformer/rtf-c2-20260505_020932/rtf_checkpoints/checkpoint-300/trainer_state.json new file mode 100644 index 0000000000000000000000000000000000000000..6c4c873ef038da00e8de53038c878c9b68ba618a --- /dev/null +++ b/hyperparameter/c2/realtabformer/rtf-c2-20260505_020932/rtf_checkpoints/checkpoint-300/trainer_state.json @@ -0,0 +1,55 @@ +{ + "best_global_step": null, + "best_metric": null, + "best_model_checkpoint": null, + "epoch": 6.832369942196532, + "eval_steps": 100, + "global_step": 300, + "is_hyper_param_search": false, + "is_local_process_zero": true, + "is_world_process_zero": true, + "log_history": [ + { + "epoch": 2.277456647398844, + "grad_norm": 0.4539879858493805, + "learning_rate": 3.875e-05, + "loss": 1.055333480834961, + "step": 100 + }, + { + "epoch": 4.554913294797688, + "grad_norm": 0.4317151606082916, + "learning_rate": 2.7386363636363637e-05, + "loss": 0.8794561004638672, + "step": 200 + }, + { + "epoch": 6.832369942196532, + "grad_norm": 0.5548607707023621, + "learning_rate": 1.6022727272727274e-05, + "loss": 0.8669081115722657, + "step": 300 + } + ], + "logging_steps": 100, + "max_steps": 440, + "num_input_tokens_seen": 0, + "num_train_epochs": 10, + "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": 21688650989568.0, + "train_batch_size": 8, + "trial_name": null, + "trial_params": null +} diff --git a/hyperparameter/c2/realtabformer/rtf-c2-20260505_020932/rtf_checkpoints/checkpoint-300/training_args.bin b/hyperparameter/c2/realtabformer/rtf-c2-20260505_020932/rtf_checkpoints/checkpoint-300/training_args.bin new file mode 100644 index 0000000000000000000000000000000000000000..95761c9b711780eb4f42f7be348858e3a996db4c --- /dev/null +++ b/hyperparameter/c2/realtabformer/rtf-c2-20260505_020932/rtf_checkpoints/checkpoint-300/training_args.bin @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:9fd0ce7594132050805cad78976d67a632518b52037b36e6ef2977b2ee2740a7 +size 5201 diff --git a/hyperparameter/c2/realtabformer/rtf-c2-20260505_020932/rtf_checkpoints/checkpoint-308/config.json b/hyperparameter/c2/realtabformer/rtf-c2-20260505_020932/rtf_checkpoints/checkpoint-308/config.json new file mode 100644 index 0000000000000000000000000000000000000000..abc7bb2762d6bff3016eb042e7a2ac4abb80ea85 --- /dev/null +++ b/hyperparameter/c2/realtabformer/rtf-c2-20260505_020932/rtf_checkpoints/checkpoint-308/config.json @@ -0,0 +1,34 @@ +{ + "activation_function": "gelu_new", + "add_cross_attention": false, + "architectures": [ + "GPT2LMHeadModel" + ], + "attn_pdrop": 0.1, + "bos_token_id": 5, + "dtype": "float32", + "embd_pdrop": 0.1, + "eos_token_id": 6, + "initializer_range": 0.02, + "layer_norm_epsilon": 1e-05, + "model_type": "gpt2", + "n_embd": 768, + "n_head": 12, + "n_inner": null, + "n_layer": 6, + "n_positions": 1024, + "pad_token_id": null, + "reorder_and_upcast_attn": false, + "resid_pdrop": 0.1, + "scale_attn_by_inverse_layer_idx": false, + "scale_attn_weights": true, + "summary_activation": null, + "summary_first_dropout": 0.1, + "summary_proj_to_labels": true, + "summary_type": "cls_index", + "summary_use_proj": true, + "tie_word_embeddings": true, + "transformers_version": "5.5.3", + "use_cache": false, + "vocab_size": 36 +} diff --git a/hyperparameter/c2/realtabformer/rtf-c2-20260505_020932/rtf_checkpoints/checkpoint-308/generation_config.json b/hyperparameter/c2/realtabformer/rtf-c2-20260505_020932/rtf_checkpoints/checkpoint-308/generation_config.json new file mode 100644 index 0000000000000000000000000000000000000000..ffe89567780e75b5c22eade9be971483b9618f39 --- /dev/null +++ b/hyperparameter/c2/realtabformer/rtf-c2-20260505_020932/rtf_checkpoints/checkpoint-308/generation_config.json @@ -0,0 +1,9 @@ +{ + "_from_model_config": true, + "bos_token_id": 5, + "eos_token_id": 6, + "output_attentions": false, + "output_hidden_states": false, + "transformers_version": "5.5.3", + "use_cache": true +} diff --git a/hyperparameter/c2/realtabformer/rtf-c2-20260505_020932/rtf_checkpoints/checkpoint-308/model.safetensors b/hyperparameter/c2/realtabformer/rtf-c2-20260505_020932/rtf_checkpoints/checkpoint-308/model.safetensors new file mode 100644 index 0000000000000000000000000000000000000000..6a7a4ca8fcf3610e1a0c2cb72fe8bee13d5c17fa --- /dev/null +++ b/hyperparameter/c2/realtabformer/rtf-c2-20260505_020932/rtf_checkpoints/checkpoint-308/model.safetensors @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:56a0c2ac6e2e2d83fee82ea501c834d1da3aea4f3daaa18bca6b3fb5cb94bf15 +size 173379016 diff --git a/hyperparameter/c2/realtabformer/rtf-c2-20260505_020932/rtf_checkpoints/checkpoint-308/optimizer.pt b/hyperparameter/c2/realtabformer/rtf-c2-20260505_020932/rtf_checkpoints/checkpoint-308/optimizer.pt new file mode 100644 index 0000000000000000000000000000000000000000..725e888f7060332f3e16e09350dc4bac3cd1747c --- /dev/null +++ b/hyperparameter/c2/realtabformer/rtf-c2-20260505_020932/rtf_checkpoints/checkpoint-308/optimizer.pt @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:adea59bb57ad6a1a863dfcaed2e3e17c1a16d54b3173dcbe18f3e2b12fc8c1d7 +size 346807051 diff --git a/hyperparameter/c2/realtabformer/rtf-c2-20260505_020932/rtf_checkpoints/checkpoint-308/rng_state.pth b/hyperparameter/c2/realtabformer/rtf-c2-20260505_020932/rtf_checkpoints/checkpoint-308/rng_state.pth new file mode 100644 index 0000000000000000000000000000000000000000..5363f09158c5bbfe96ce892bf2f2e581f8d1cfdb --- /dev/null +++ b/hyperparameter/c2/realtabformer/rtf-c2-20260505_020932/rtf_checkpoints/checkpoint-308/rng_state.pth @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:d15a2c1976ec85c175b776605ef937e31d62cbbe266d61fab36cc702747293e7 +size 14645 diff --git a/hyperparameter/c2/realtabformer/rtf-c2-20260505_020932/rtf_checkpoints/checkpoint-308/scaler.pt b/hyperparameter/c2/realtabformer/rtf-c2-20260505_020932/rtf_checkpoints/checkpoint-308/scaler.pt new file mode 100644 index 0000000000000000000000000000000000000000..9db8414648c96b777abb7a0e050bc91e4a585b22 --- /dev/null +++ b/hyperparameter/c2/realtabformer/rtf-c2-20260505_020932/rtf_checkpoints/checkpoint-308/scaler.pt @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:2b3fab4281ee38fd03690f5c651a3c26e457aac5f80a2e2377cd8013c7779985 +size 1383 diff --git a/hyperparameter/c2/realtabformer/rtf-c2-20260505_020932/rtf_checkpoints/checkpoint-308/scheduler.pt b/hyperparameter/c2/realtabformer/rtf-c2-20260505_020932/rtf_checkpoints/checkpoint-308/scheduler.pt new file mode 100644 index 0000000000000000000000000000000000000000..1212c22394d18a6106788d6f31a1effba317f959 --- /dev/null +++ b/hyperparameter/c2/realtabformer/rtf-c2-20260505_020932/rtf_checkpoints/checkpoint-308/scheduler.pt @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:acba6669fdf1d67dc6fbd0fc8fed67cb61d1c1920ff7f72564ae23a8e00c0552 +size 1465 diff --git a/hyperparameter/c2/realtabformer/rtf-c2-20260505_020932/rtf_checkpoints/checkpoint-308/trainer_state.json b/hyperparameter/c2/realtabformer/rtf-c2-20260505_020932/rtf_checkpoints/checkpoint-308/trainer_state.json new file mode 100644 index 0000000000000000000000000000000000000000..fa419060e0b09ca8e041573ef25522338f466bd7 --- /dev/null +++ b/hyperparameter/c2/realtabformer/rtf-c2-20260505_020932/rtf_checkpoints/checkpoint-308/trainer_state.json @@ -0,0 +1,55 @@ +{ + "best_global_step": null, + "best_metric": null, + "best_model_checkpoint": null, + "epoch": 7.0, + "eval_steps": 100, + "global_step": 308, + "is_hyper_param_search": false, + "is_local_process_zero": true, + "is_world_process_zero": true, + "log_history": [ + { + "epoch": 2.277456647398844, + "grad_norm": 0.4539879858493805, + "learning_rate": 3.875e-05, + "loss": 1.055333480834961, + "step": 100 + }, + { + "epoch": 4.554913294797688, + "grad_norm": 0.4317151606082916, + "learning_rate": 2.7386363636363637e-05, + "loss": 0.8794561004638672, + "step": 200 + }, + { + "epoch": 6.832369942196532, + "grad_norm": 0.5548607707023621, + "learning_rate": 1.6022727272727274e-05, + "loss": 0.8669081115722657, + "step": 300 + } + ], + "logging_steps": 100, + "max_steps": 440, + "num_input_tokens_seen": 0, + "num_train_epochs": 10, + "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": 22216858288128.0, + "train_batch_size": 8, + "trial_name": null, + "trial_params": null +} diff --git a/hyperparameter/c2/realtabformer/rtf-c2-20260505_020932/rtf_checkpoints/checkpoint-308/training_args.bin b/hyperparameter/c2/realtabformer/rtf-c2-20260505_020932/rtf_checkpoints/checkpoint-308/training_args.bin new file mode 100644 index 0000000000000000000000000000000000000000..95761c9b711780eb4f42f7be348858e3a996db4c --- /dev/null +++ b/hyperparameter/c2/realtabformer/rtf-c2-20260505_020932/rtf_checkpoints/checkpoint-308/training_args.bin @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:9fd0ce7594132050805cad78976d67a632518b52037b36e6ef2977b2ee2740a7 +size 5201 diff --git a/hyperparameter/c2/realtabformer/rtf-c2-20260505_020932/rtf_checkpoints/checkpoint-352/config.json b/hyperparameter/c2/realtabformer/rtf-c2-20260505_020932/rtf_checkpoints/checkpoint-352/config.json new file mode 100644 index 0000000000000000000000000000000000000000..abc7bb2762d6bff3016eb042e7a2ac4abb80ea85 --- /dev/null +++ b/hyperparameter/c2/realtabformer/rtf-c2-20260505_020932/rtf_checkpoints/checkpoint-352/config.json @@ -0,0 +1,34 @@ +{ + "activation_function": "gelu_new", + "add_cross_attention": false, + "architectures": [ + "GPT2LMHeadModel" + ], + "attn_pdrop": 0.1, + "bos_token_id": 5, + "dtype": "float32", + "embd_pdrop": 0.1, + "eos_token_id": 6, + "initializer_range": 0.02, + "layer_norm_epsilon": 1e-05, + "model_type": "gpt2", + "n_embd": 768, + "n_head": 12, + "n_inner": null, + "n_layer": 6, + "n_positions": 1024, + "pad_token_id": null, + "reorder_and_upcast_attn": false, + "resid_pdrop": 0.1, + "scale_attn_by_inverse_layer_idx": false, + "scale_attn_weights": true, + "summary_activation": null, + "summary_first_dropout": 0.1, + "summary_proj_to_labels": true, + "summary_type": "cls_index", + "summary_use_proj": true, + "tie_word_embeddings": true, + "transformers_version": "5.5.3", + "use_cache": false, + "vocab_size": 36 +} diff --git a/hyperparameter/c2/realtabformer/rtf-c2-20260505_020932/rtf_checkpoints/checkpoint-352/generation_config.json b/hyperparameter/c2/realtabformer/rtf-c2-20260505_020932/rtf_checkpoints/checkpoint-352/generation_config.json new file mode 100644 index 0000000000000000000000000000000000000000..ffe89567780e75b5c22eade9be971483b9618f39 --- /dev/null +++ b/hyperparameter/c2/realtabformer/rtf-c2-20260505_020932/rtf_checkpoints/checkpoint-352/generation_config.json @@ -0,0 +1,9 @@ +{ + "_from_model_config": true, + "bos_token_id": 5, + "eos_token_id": 6, + "output_attentions": false, + "output_hidden_states": false, + "transformers_version": "5.5.3", + "use_cache": true +} diff --git a/hyperparameter/c2/realtabformer/rtf-c2-20260505_020932/rtf_checkpoints/checkpoint-352/model.safetensors b/hyperparameter/c2/realtabformer/rtf-c2-20260505_020932/rtf_checkpoints/checkpoint-352/model.safetensors new file mode 100644 index 0000000000000000000000000000000000000000..b3ccb231a793e360b6943e2a732477f4a60900ae --- /dev/null +++ b/hyperparameter/c2/realtabformer/rtf-c2-20260505_020932/rtf_checkpoints/checkpoint-352/model.safetensors @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:854a957d1faf0dce25041737bc09d2605c4b80f811e7786a0c7cec965aad0e18 +size 173379016 diff --git a/hyperparameter/c2/realtabformer/rtf-c2-20260505_020932/rtf_checkpoints/checkpoint-352/optimizer.pt b/hyperparameter/c2/realtabformer/rtf-c2-20260505_020932/rtf_checkpoints/checkpoint-352/optimizer.pt new file mode 100644 index 0000000000000000000000000000000000000000..553d1b235abfa4e69cd95fc666c908ebc783930b --- /dev/null +++ b/hyperparameter/c2/realtabformer/rtf-c2-20260505_020932/rtf_checkpoints/checkpoint-352/optimizer.pt @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:0962b7f0eaae6a8f70f124621adfe1b9573a7f73033ea6776871c003adf6d201 +size 346807051 diff --git a/hyperparameter/c2/realtabformer/rtf-c2-20260505_020932/rtf_checkpoints/checkpoint-352/rng_state.pth b/hyperparameter/c2/realtabformer/rtf-c2-20260505_020932/rtf_checkpoints/checkpoint-352/rng_state.pth new file mode 100644 index 0000000000000000000000000000000000000000..ad6ab33eab2d6ac4aff5b1c98355684acf448992 --- /dev/null +++ b/hyperparameter/c2/realtabformer/rtf-c2-20260505_020932/rtf_checkpoints/checkpoint-352/rng_state.pth @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:f442642a08be458202529fbb2fcded0c1190fccd86f57ed75821ad71979e1e9d +size 14645 diff --git a/hyperparameter/c2/realtabformer/rtf-c2-20260505_020932/rtf_checkpoints/checkpoint-352/scaler.pt b/hyperparameter/c2/realtabformer/rtf-c2-20260505_020932/rtf_checkpoints/checkpoint-352/scaler.pt new file mode 100644 index 0000000000000000000000000000000000000000..686f7d6e2da8c6039af2159d0497a1bc9e62de63 --- /dev/null +++ b/hyperparameter/c2/realtabformer/rtf-c2-20260505_020932/rtf_checkpoints/checkpoint-352/scaler.pt @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:eabcff7712d630483a1d5452768d945608c8210571ae7fc645f1c4ffa5b2f2d1 +size 1383 diff --git a/hyperparameter/c2/realtabformer/rtf-c2-20260505_020932/rtf_checkpoints/checkpoint-352/scheduler.pt b/hyperparameter/c2/realtabformer/rtf-c2-20260505_020932/rtf_checkpoints/checkpoint-352/scheduler.pt new file mode 100644 index 0000000000000000000000000000000000000000..0dd6abe57e027760043f3fc09e06ddc29a925884 --- /dev/null +++ b/hyperparameter/c2/realtabformer/rtf-c2-20260505_020932/rtf_checkpoints/checkpoint-352/scheduler.pt @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:380a8adb1224c87b9445acfa93092d30c5c10a09a3c0e3978fc1cd3f5ebea0db +size 1465 diff --git a/hyperparameter/c2/realtabformer/rtf-c2-20260505_020932/rtf_checkpoints/checkpoint-352/trainer_state.json b/hyperparameter/c2/realtabformer/rtf-c2-20260505_020932/rtf_checkpoints/checkpoint-352/trainer_state.json new file mode 100644 index 0000000000000000000000000000000000000000..4a263cdf7b1a00d30647683f8af3f6ea6bceb13d --- /dev/null +++ b/hyperparameter/c2/realtabformer/rtf-c2-20260505_020932/rtf_checkpoints/checkpoint-352/trainer_state.json @@ -0,0 +1,55 @@ +{ + "best_global_step": null, + "best_metric": null, + "best_model_checkpoint": null, + "epoch": 8.0, + "eval_steps": 100, + "global_step": 352, + "is_hyper_param_search": false, + "is_local_process_zero": true, + "is_world_process_zero": true, + "log_history": [ + { + "epoch": 2.277456647398844, + "grad_norm": 0.4539879858493805, + "learning_rate": 3.875e-05, + "loss": 1.055333480834961, + "step": 100 + }, + { + "epoch": 4.554913294797688, + "grad_norm": 0.4317151606082916, + "learning_rate": 2.7386363636363637e-05, + "loss": 0.8794561004638672, + "step": 200 + }, + { + "epoch": 6.832369942196532, + "grad_norm": 0.5548607707023621, + "learning_rate": 1.6022727272727274e-05, + "loss": 0.8669081115722657, + "step": 300 + } + ], + "logging_steps": 100, + "max_steps": 440, + "num_input_tokens_seen": 0, + "num_train_epochs": 10, + "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": 25390695186432.0, + "train_batch_size": 8, + "trial_name": null, + "trial_params": null +} diff --git a/hyperparameter/c2/realtabformer/rtf-c2-20260505_020932/rtf_checkpoints/checkpoint-352/training_args.bin b/hyperparameter/c2/realtabformer/rtf-c2-20260505_020932/rtf_checkpoints/checkpoint-352/training_args.bin new file mode 100644 index 0000000000000000000000000000000000000000..95761c9b711780eb4f42f7be348858e3a996db4c --- /dev/null +++ b/hyperparameter/c2/realtabformer/rtf-c2-20260505_020932/rtf_checkpoints/checkpoint-352/training_args.bin @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:9fd0ce7594132050805cad78976d67a632518b52037b36e6ef2977b2ee2740a7 +size 5201 diff --git a/hyperparameter/c2/realtabformer/rtf-c2-20260505_020932/rtf_checkpoints/checkpoint-396/config.json b/hyperparameter/c2/realtabformer/rtf-c2-20260505_020932/rtf_checkpoints/checkpoint-396/config.json new file mode 100644 index 0000000000000000000000000000000000000000..abc7bb2762d6bff3016eb042e7a2ac4abb80ea85 --- /dev/null +++ b/hyperparameter/c2/realtabformer/rtf-c2-20260505_020932/rtf_checkpoints/checkpoint-396/config.json @@ -0,0 +1,34 @@ +{ + "activation_function": "gelu_new", + "add_cross_attention": false, + "architectures": [ + "GPT2LMHeadModel" + ], + "attn_pdrop": 0.1, + "bos_token_id": 5, + "dtype": "float32", + "embd_pdrop": 0.1, + "eos_token_id": 6, + "initializer_range": 0.02, + "layer_norm_epsilon": 1e-05, + "model_type": "gpt2", + "n_embd": 768, + "n_head": 12, + "n_inner": null, + "n_layer": 6, + "n_positions": 1024, + "pad_token_id": null, + "reorder_and_upcast_attn": false, + "resid_pdrop": 0.1, + "scale_attn_by_inverse_layer_idx": false, + "scale_attn_weights": true, + "summary_activation": null, + "summary_first_dropout": 0.1, + "summary_proj_to_labels": true, + "summary_type": "cls_index", + "summary_use_proj": true, + "tie_word_embeddings": true, + "transformers_version": "5.5.3", + "use_cache": false, + "vocab_size": 36 +} diff --git a/hyperparameter/c2/realtabformer/rtf-c2-20260505_020932/rtf_checkpoints/checkpoint-396/generation_config.json b/hyperparameter/c2/realtabformer/rtf-c2-20260505_020932/rtf_checkpoints/checkpoint-396/generation_config.json new file mode 100644 index 0000000000000000000000000000000000000000..ffe89567780e75b5c22eade9be971483b9618f39 --- /dev/null +++ b/hyperparameter/c2/realtabformer/rtf-c2-20260505_020932/rtf_checkpoints/checkpoint-396/generation_config.json @@ -0,0 +1,9 @@ +{ + "_from_model_config": true, + "bos_token_id": 5, + "eos_token_id": 6, + "output_attentions": false, + "output_hidden_states": false, + "transformers_version": "5.5.3", + "use_cache": true +} diff --git a/hyperparameter/c2/realtabformer/rtf-c2-20260505_020932/rtf_checkpoints/checkpoint-396/model.safetensors b/hyperparameter/c2/realtabformer/rtf-c2-20260505_020932/rtf_checkpoints/checkpoint-396/model.safetensors new file mode 100644 index 0000000000000000000000000000000000000000..76ab182a517ad2632e1e3b21632be9d5288db048 --- /dev/null +++ b/hyperparameter/c2/realtabformer/rtf-c2-20260505_020932/rtf_checkpoints/checkpoint-396/model.safetensors @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:b94a4a201350373805cb99f74f8b904fe683d51ae766fd8e174ac4b02d307533 +size 173379016 diff --git a/hyperparameter/c2/realtabformer/rtf-c2-20260505_020932/rtf_checkpoints/checkpoint-396/optimizer.pt b/hyperparameter/c2/realtabformer/rtf-c2-20260505_020932/rtf_checkpoints/checkpoint-396/optimizer.pt new file mode 100644 index 0000000000000000000000000000000000000000..815ad87cd723f900561e976e75729695a336a02f --- /dev/null +++ b/hyperparameter/c2/realtabformer/rtf-c2-20260505_020932/rtf_checkpoints/checkpoint-396/optimizer.pt @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:0b33c565671864af2a0be76d82893f5ecb2b3e99c8ba6998d50de865b6bc2825 +size 346807051 diff --git a/hyperparameter/c2/realtabformer/rtf-c2-20260505_020932/rtf_checkpoints/checkpoint-396/rng_state.pth b/hyperparameter/c2/realtabformer/rtf-c2-20260505_020932/rtf_checkpoints/checkpoint-396/rng_state.pth new file mode 100644 index 0000000000000000000000000000000000000000..8904a1482f256647b06af8a4fa1c892290ed87bd --- /dev/null +++ b/hyperparameter/c2/realtabformer/rtf-c2-20260505_020932/rtf_checkpoints/checkpoint-396/rng_state.pth @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:16dc1cfaf42a3db7f8019c8a3c5db8f9ceb1a22800069a935a9464de28f1f0b5 +size 14645 diff --git a/hyperparameter/c2/realtabformer/rtf-c2-20260505_020932/rtf_checkpoints/checkpoint-396/scaler.pt b/hyperparameter/c2/realtabformer/rtf-c2-20260505_020932/rtf_checkpoints/checkpoint-396/scaler.pt new file mode 100644 index 0000000000000000000000000000000000000000..d5b490622c2b9db2369d3c8685fc93ae25b9886a --- /dev/null +++ b/hyperparameter/c2/realtabformer/rtf-c2-20260505_020932/rtf_checkpoints/checkpoint-396/scaler.pt @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:e24acdfd041030cf908093d8630e1c6de74901088d56b90f48582fc809f671cf +size 1383 diff --git a/hyperparameter/c2/realtabformer/rtf-c2-20260505_020932/rtf_checkpoints/checkpoint-396/scheduler.pt b/hyperparameter/c2/realtabformer/rtf-c2-20260505_020932/rtf_checkpoints/checkpoint-396/scheduler.pt new file mode 100644 index 0000000000000000000000000000000000000000..52ac1c0c262862361b77ca6485314e4621dfad24 --- /dev/null +++ b/hyperparameter/c2/realtabformer/rtf-c2-20260505_020932/rtf_checkpoints/checkpoint-396/scheduler.pt @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:4636ed21896419c270a2c1ff4c6b54a4afec689bec9cbbc4d33436ac23142c31 +size 1465 diff --git a/hyperparameter/c2/realtabformer/rtf-c2-20260505_020932/rtf_checkpoints/checkpoint-396/trainer_state.json b/hyperparameter/c2/realtabformer/rtf-c2-20260505_020932/rtf_checkpoints/checkpoint-396/trainer_state.json new file mode 100644 index 0000000000000000000000000000000000000000..5190ed9a120345e4f3b2f456380f67bc1528eea1 --- /dev/null +++ b/hyperparameter/c2/realtabformer/rtf-c2-20260505_020932/rtf_checkpoints/checkpoint-396/trainer_state.json @@ -0,0 +1,55 @@ +{ + "best_global_step": null, + "best_metric": null, + "best_model_checkpoint": null, + "epoch": 9.0, + "eval_steps": 100, + "global_step": 396, + "is_hyper_param_search": false, + "is_local_process_zero": true, + "is_world_process_zero": true, + "log_history": [ + { + "epoch": 2.277456647398844, + "grad_norm": 0.4539879858493805, + "learning_rate": 3.875e-05, + "loss": 1.055333480834961, + "step": 100 + }, + { + "epoch": 4.554913294797688, + "grad_norm": 0.4317151606082916, + "learning_rate": 2.7386363636363637e-05, + "loss": 0.8794561004638672, + "step": 200 + }, + { + "epoch": 6.832369942196532, + "grad_norm": 0.5548607707023621, + "learning_rate": 1.6022727272727274e-05, + "loss": 0.8669081115722657, + "step": 300 + } + ], + "logging_steps": 100, + "max_steps": 440, + "num_input_tokens_seen": 0, + "num_train_epochs": 10, + "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": 28564532084736.0, + "train_batch_size": 8, + "trial_name": null, + "trial_params": null +} diff --git a/hyperparameter/c2/realtabformer/rtf-c2-20260505_020932/rtf_checkpoints/checkpoint-396/training_args.bin b/hyperparameter/c2/realtabformer/rtf-c2-20260505_020932/rtf_checkpoints/checkpoint-396/training_args.bin new file mode 100644 index 0000000000000000000000000000000000000000..95761c9b711780eb4f42f7be348858e3a996db4c --- /dev/null +++ b/hyperparameter/c2/realtabformer/rtf-c2-20260505_020932/rtf_checkpoints/checkpoint-396/training_args.bin @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:9fd0ce7594132050805cad78976d67a632518b52037b36e6ef2977b2ee2740a7 +size 5201 diff --git a/hyperparameter/c2/realtabformer/rtf-c2-20260505_020932/rtf_checkpoints/checkpoint-400/config.json b/hyperparameter/c2/realtabformer/rtf-c2-20260505_020932/rtf_checkpoints/checkpoint-400/config.json new file mode 100644 index 0000000000000000000000000000000000000000..abc7bb2762d6bff3016eb042e7a2ac4abb80ea85 --- /dev/null +++ b/hyperparameter/c2/realtabformer/rtf-c2-20260505_020932/rtf_checkpoints/checkpoint-400/config.json @@ -0,0 +1,34 @@ +{ + "activation_function": "gelu_new", + "add_cross_attention": false, + "architectures": [ + "GPT2LMHeadModel" + ], + "attn_pdrop": 0.1, + "bos_token_id": 5, + "dtype": "float32", + "embd_pdrop": 0.1, + "eos_token_id": 6, + "initializer_range": 0.02, + "layer_norm_epsilon": 1e-05, + "model_type": "gpt2", + "n_embd": 768, + "n_head": 12, + "n_inner": null, + "n_layer": 6, + "n_positions": 1024, + "pad_token_id": null, + "reorder_and_upcast_attn": false, + "resid_pdrop": 0.1, + "scale_attn_by_inverse_layer_idx": false, + "scale_attn_weights": true, + "summary_activation": null, + "summary_first_dropout": 0.1, + "summary_proj_to_labels": true, + "summary_type": "cls_index", + "summary_use_proj": true, + "tie_word_embeddings": true, + "transformers_version": "5.5.3", + "use_cache": false, + "vocab_size": 36 +} diff --git a/hyperparameter/c2/realtabformer/rtf-c2-20260505_020932/rtf_checkpoints/checkpoint-400/generation_config.json b/hyperparameter/c2/realtabformer/rtf-c2-20260505_020932/rtf_checkpoints/checkpoint-400/generation_config.json new file mode 100644 index 0000000000000000000000000000000000000000..ffe89567780e75b5c22eade9be971483b9618f39 --- /dev/null +++ b/hyperparameter/c2/realtabformer/rtf-c2-20260505_020932/rtf_checkpoints/checkpoint-400/generation_config.json @@ -0,0 +1,9 @@ +{ + "_from_model_config": true, + "bos_token_id": 5, + "eos_token_id": 6, + "output_attentions": false, + "output_hidden_states": false, + "transformers_version": "5.5.3", + "use_cache": true +} diff --git a/hyperparameter/c2/realtabformer/rtf-c2-20260505_020932/rtf_checkpoints/checkpoint-400/model.safetensors b/hyperparameter/c2/realtabformer/rtf-c2-20260505_020932/rtf_checkpoints/checkpoint-400/model.safetensors new file mode 100644 index 0000000000000000000000000000000000000000..3541b2e25c194c52a3245ee06f83820d6b1e34c0 --- /dev/null +++ b/hyperparameter/c2/realtabformer/rtf-c2-20260505_020932/rtf_checkpoints/checkpoint-400/model.safetensors @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:447d16779d232b8befce7c36b053411cbb48fd8219de34f17ee846106b370a77 +size 173379016 diff --git a/hyperparameter/c2/realtabformer/rtf-c2-20260505_020932/rtf_checkpoints/checkpoint-400/optimizer.pt b/hyperparameter/c2/realtabformer/rtf-c2-20260505_020932/rtf_checkpoints/checkpoint-400/optimizer.pt new file mode 100644 index 0000000000000000000000000000000000000000..e776d7a76d7b8d37bf5a9fe0c20ace9af16e7fc2 --- /dev/null +++ b/hyperparameter/c2/realtabformer/rtf-c2-20260505_020932/rtf_checkpoints/checkpoint-400/optimizer.pt @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:6c8c4bb7178cf40d16c7c8ae74d9fafe3267a8a11d846429dc4ccae7fbfa6e16 +size 346807051 diff --git a/hyperparameter/c2/realtabformer/rtf-c2-20260505_020932/rtf_checkpoints/checkpoint-400/rng_state.pth b/hyperparameter/c2/realtabformer/rtf-c2-20260505_020932/rtf_checkpoints/checkpoint-400/rng_state.pth new file mode 100644 index 0000000000000000000000000000000000000000..bdb188dd61fe626acc633565308f1094790c87c8 --- /dev/null +++ b/hyperparameter/c2/realtabformer/rtf-c2-20260505_020932/rtf_checkpoints/checkpoint-400/rng_state.pth @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:64aba25001d93e9e7082d7ac2398cd69d72616ef589c06f572c47eb4ff924642 +size 14645 diff --git a/hyperparameter/c2/realtabformer/rtf-c2-20260505_020932/rtf_checkpoints/checkpoint-400/scaler.pt b/hyperparameter/c2/realtabformer/rtf-c2-20260505_020932/rtf_checkpoints/checkpoint-400/scaler.pt new file mode 100644 index 0000000000000000000000000000000000000000..0b0bfee2584fa7aba2e3ab882380cdc54add60e0 --- /dev/null +++ b/hyperparameter/c2/realtabformer/rtf-c2-20260505_020932/rtf_checkpoints/checkpoint-400/scaler.pt @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:30858f23bcb22d0baef45bd4add9d6fa474141308c12653c706077b87d932e49 +size 1383 diff --git a/hyperparameter/c2/realtabformer/rtf-c2-20260505_020932/rtf_checkpoints/checkpoint-400/scheduler.pt b/hyperparameter/c2/realtabformer/rtf-c2-20260505_020932/rtf_checkpoints/checkpoint-400/scheduler.pt new file mode 100644 index 0000000000000000000000000000000000000000..b270315c404fc176a8d23efbe2048468ed71e5d8 --- /dev/null +++ b/hyperparameter/c2/realtabformer/rtf-c2-20260505_020932/rtf_checkpoints/checkpoint-400/scheduler.pt @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:11e2ada8edd1324b1b57da7683a0776b7c07d0ceb635feb5594fe45baed49a6e +size 1465 diff --git a/hyperparameter/c2/realtabformer/rtf-c2-20260505_020932/rtf_checkpoints/checkpoint-400/trainer_state.json b/hyperparameter/c2/realtabformer/rtf-c2-20260505_020932/rtf_checkpoints/checkpoint-400/trainer_state.json new file mode 100644 index 0000000000000000000000000000000000000000..76d5df15ab5e9648cdb0b18df4dbc6ea86c8e773 --- /dev/null +++ b/hyperparameter/c2/realtabformer/rtf-c2-20260505_020932/rtf_checkpoints/checkpoint-400/trainer_state.json @@ -0,0 +1,62 @@ +{ + "best_global_step": null, + "best_metric": null, + "best_model_checkpoint": null, + "epoch": 9.092485549132949, + "eval_steps": 100, + "global_step": 400, + "is_hyper_param_search": false, + "is_local_process_zero": true, + "is_world_process_zero": true, + "log_history": [ + { + "epoch": 2.277456647398844, + "grad_norm": 0.4539879858493805, + "learning_rate": 3.875e-05, + "loss": 1.055333480834961, + "step": 100 + }, + { + "epoch": 4.554913294797688, + "grad_norm": 0.4317151606082916, + "learning_rate": 2.7386363636363637e-05, + "loss": 0.8794561004638672, + "step": 200 + }, + { + "epoch": 6.832369942196532, + "grad_norm": 0.5548607707023621, + "learning_rate": 1.6022727272727274e-05, + "loss": 0.8669081115722657, + "step": 300 + }, + { + "epoch": 9.092485549132949, + "grad_norm": 0.27800828218460083, + "learning_rate": 4.6590909090909095e-06, + "loss": 0.85453857421875, + "step": 400 + } + ], + "logging_steps": 100, + "max_steps": 440, + "num_input_tokens_seen": 0, + "num_train_epochs": 10, + "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": 28858490929152.0, + "train_batch_size": 8, + "trial_name": null, + "trial_params": null +} diff --git a/hyperparameter/c2/realtabformer/rtf-c2-20260505_020932/rtf_checkpoints/checkpoint-400/training_args.bin b/hyperparameter/c2/realtabformer/rtf-c2-20260505_020932/rtf_checkpoints/checkpoint-400/training_args.bin new file mode 100644 index 0000000000000000000000000000000000000000..95761c9b711780eb4f42f7be348858e3a996db4c --- /dev/null +++ b/hyperparameter/c2/realtabformer/rtf-c2-20260505_020932/rtf_checkpoints/checkpoint-400/training_args.bin @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:9fd0ce7594132050805cad78976d67a632518b52037b36e6ef2977b2ee2740a7 +size 5201 diff --git a/hyperparameter/c2/realtabformer/rtf-c2-20260505_020932/rtf_checkpoints/checkpoint-440/config.json b/hyperparameter/c2/realtabformer/rtf-c2-20260505_020932/rtf_checkpoints/checkpoint-440/config.json new file mode 100644 index 0000000000000000000000000000000000000000..abc7bb2762d6bff3016eb042e7a2ac4abb80ea85 --- /dev/null +++ b/hyperparameter/c2/realtabformer/rtf-c2-20260505_020932/rtf_checkpoints/checkpoint-440/config.json @@ -0,0 +1,34 @@ +{ + "activation_function": "gelu_new", + "add_cross_attention": false, + "architectures": [ + "GPT2LMHeadModel" + ], + "attn_pdrop": 0.1, + "bos_token_id": 5, + "dtype": "float32", + "embd_pdrop": 0.1, + "eos_token_id": 6, + "initializer_range": 0.02, + "layer_norm_epsilon": 1e-05, + "model_type": "gpt2", + "n_embd": 768, + "n_head": 12, + "n_inner": null, + "n_layer": 6, + "n_positions": 1024, + "pad_token_id": null, + "reorder_and_upcast_attn": false, + "resid_pdrop": 0.1, + "scale_attn_by_inverse_layer_idx": false, + "scale_attn_weights": true, + "summary_activation": null, + "summary_first_dropout": 0.1, + "summary_proj_to_labels": true, + "summary_type": "cls_index", + "summary_use_proj": true, + "tie_word_embeddings": true, + "transformers_version": "5.5.3", + "use_cache": false, + "vocab_size": 36 +} diff --git a/hyperparameter/c2/realtabformer/rtf-c2-20260505_020932/rtf_checkpoints/checkpoint-440/generation_config.json b/hyperparameter/c2/realtabformer/rtf-c2-20260505_020932/rtf_checkpoints/checkpoint-440/generation_config.json new file mode 100644 index 0000000000000000000000000000000000000000..ffe89567780e75b5c22eade9be971483b9618f39 --- /dev/null +++ b/hyperparameter/c2/realtabformer/rtf-c2-20260505_020932/rtf_checkpoints/checkpoint-440/generation_config.json @@ -0,0 +1,9 @@ +{ + "_from_model_config": true, + "bos_token_id": 5, + "eos_token_id": 6, + "output_attentions": false, + "output_hidden_states": false, + "transformers_version": "5.5.3", + "use_cache": true +} diff --git a/hyperparameter/c2/realtabformer/rtf-c2-20260505_020932/rtf_checkpoints/checkpoint-440/model.safetensors b/hyperparameter/c2/realtabformer/rtf-c2-20260505_020932/rtf_checkpoints/checkpoint-440/model.safetensors new file mode 100644 index 0000000000000000000000000000000000000000..a1692e6f12b853fe65ce32b40332b3ef52745f55 --- /dev/null +++ b/hyperparameter/c2/realtabformer/rtf-c2-20260505_020932/rtf_checkpoints/checkpoint-440/model.safetensors @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:c227714b93655ac0781906dc762c751989492096e1945d1421c2a3c69c469138 +size 173379016 diff --git a/hyperparameter/c2/realtabformer/rtf-c2-20260505_020932/rtf_checkpoints/checkpoint-440/optimizer.pt b/hyperparameter/c2/realtabformer/rtf-c2-20260505_020932/rtf_checkpoints/checkpoint-440/optimizer.pt new file mode 100644 index 0000000000000000000000000000000000000000..4de319811279d006f3525e480d069808e0a1673c --- /dev/null +++ b/hyperparameter/c2/realtabformer/rtf-c2-20260505_020932/rtf_checkpoints/checkpoint-440/optimizer.pt @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:6e342477bf53c236d43591ca6f3880cd2f700384357dabd0a9097cbf277806fc +size 346807051 diff --git a/hyperparameter/c2/realtabformer/rtf-c2-20260505_020932/rtf_checkpoints/checkpoint-440/rng_state.pth b/hyperparameter/c2/realtabformer/rtf-c2-20260505_020932/rtf_checkpoints/checkpoint-440/rng_state.pth new file mode 100644 index 0000000000000000000000000000000000000000..c2c21213f992513b38fd113e825aa8095a635abe --- /dev/null +++ b/hyperparameter/c2/realtabformer/rtf-c2-20260505_020932/rtf_checkpoints/checkpoint-440/rng_state.pth @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:c3932309a7281640e3ba01c69fd063398b88381d069494b25e3110c63982ad52 +size 14645 diff --git a/hyperparameter/c2/realtabformer/rtf-c2-20260505_020932/rtf_checkpoints/checkpoint-440/scaler.pt b/hyperparameter/c2/realtabformer/rtf-c2-20260505_020932/rtf_checkpoints/checkpoint-440/scaler.pt new file mode 100644 index 0000000000000000000000000000000000000000..d787ea96930ee63a19a84d89b7889e2e64b5ccfd --- /dev/null +++ b/hyperparameter/c2/realtabformer/rtf-c2-20260505_020932/rtf_checkpoints/checkpoint-440/scaler.pt @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:0baf5e8b0d8c2f0a0dd19ef54eaac4c9cb098a4f3cd9f5ff6199073a102e73bc +size 1383 diff --git a/hyperparameter/c2/realtabformer/rtf-c2-20260505_020932/rtf_checkpoints/checkpoint-440/scheduler.pt b/hyperparameter/c2/realtabformer/rtf-c2-20260505_020932/rtf_checkpoints/checkpoint-440/scheduler.pt new file mode 100644 index 0000000000000000000000000000000000000000..39ceb930b7d7c6094fe838b0edeae4efce9cdbf0 --- /dev/null +++ b/hyperparameter/c2/realtabformer/rtf-c2-20260505_020932/rtf_checkpoints/checkpoint-440/scheduler.pt @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:ed2c60d562c3917bc5e9fc3f52a326d1016fda5b22d42f95a9fca7883c3e83d4 +size 1465 diff --git a/hyperparameter/c2/realtabformer/rtf-c2-20260505_020932/rtf_checkpoints/checkpoint-440/trainer_state.json b/hyperparameter/c2/realtabformer/rtf-c2-20260505_020932/rtf_checkpoints/checkpoint-440/trainer_state.json new file mode 100644 index 0000000000000000000000000000000000000000..eee5d8d89d8d731294d7e32c5bf2b6fa69df86b1 --- /dev/null +++ b/hyperparameter/c2/realtabformer/rtf-c2-20260505_020932/rtf_checkpoints/checkpoint-440/trainer_state.json @@ -0,0 +1,62 @@ +{ + "best_global_step": null, + "best_metric": null, + "best_model_checkpoint": null, + "epoch": 10.0, + "eval_steps": 100, + "global_step": 440, + "is_hyper_param_search": false, + "is_local_process_zero": true, + "is_world_process_zero": true, + "log_history": [ + { + "epoch": 2.277456647398844, + "grad_norm": 0.4539879858493805, + "learning_rate": 3.875e-05, + "loss": 1.055333480834961, + "step": 100 + }, + { + "epoch": 4.554913294797688, + "grad_norm": 0.4317151606082916, + "learning_rate": 2.7386363636363637e-05, + "loss": 0.8794561004638672, + "step": 200 + }, + { + "epoch": 6.832369942196532, + "grad_norm": 0.5548607707023621, + "learning_rate": 1.6022727272727274e-05, + "loss": 0.8669081115722657, + "step": 300 + }, + { + "epoch": 9.092485549132949, + "grad_norm": 0.27800828218460083, + "learning_rate": 4.6590909090909095e-06, + "loss": 0.85453857421875, + "step": 400 + } + ], + "logging_steps": 100, + "max_steps": 440, + "num_input_tokens_seen": 0, + "num_train_epochs": 10, + "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": 31738368983040.0, + "train_batch_size": 8, + "trial_name": null, + "trial_params": null +} diff --git a/hyperparameter/c2/realtabformer/rtf-c2-20260505_020932/rtf_checkpoints/checkpoint-440/training_args.bin b/hyperparameter/c2/realtabformer/rtf-c2-20260505_020932/rtf_checkpoints/checkpoint-440/training_args.bin new file mode 100644 index 0000000000000000000000000000000000000000..95761c9b711780eb4f42f7be348858e3a996db4c --- /dev/null +++ b/hyperparameter/c2/realtabformer/rtf-c2-20260505_020932/rtf_checkpoints/checkpoint-440/training_args.bin @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:9fd0ce7594132050805cad78976d67a632518b52037b36e6ef2977b2ee2740a7 +size 5201 diff --git a/hyperparameter/c2/realtabformer/rtf-c2-20260505_020932/run_config.json b/hyperparameter/c2/realtabformer/rtf-c2-20260505_020932/run_config.json new file mode 100644 index 0000000000000000000000000000000000000000..f6226f051b3d2cd45b3fb6a203662ddd39c97af0 --- /dev/null +++ b/hyperparameter/c2/realtabformer/rtf-c2-20260505_020932/run_config.json @@ -0,0 +1,40 @@ +{ + "schema_version": 1, + "recorded_at": "2026-05-05T02:09:32", + "dataset_id": "c2", + "model": "realtabformer", + "work_dir": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/c2/realtabformer/rtf-c2-20260505_020932", + "dataset_source_requested": "new", + "dataset_source_resolved": "new", + "cli_args": { + "model": "realtabformer", + "dataset": "c2", + "dataset_source": "new", + "train": true, + "generate": true, + "num_rows": 0, + "epochs": 10, + "output_dir": null, + "model_dir": null, + "work_dir": null, + "resume": false, + "no_stats": false + }, + "resolved": { + "num_rows": 1382, + "model_path": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/c2/realtabformer/rtf-c2-20260505_020932/models_10epochs", + "output_csv": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/c2/realtabformer/rtf-c2-20260505_020932/rtf-c2-1382-20260505_021020.csv" + }, + "input_artifacts": { + "public_gate_report": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/c2/realtabformer/rtf-c2-20260505_020932/public_gate/public_gate_report.json", + "public_manifest": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/c2/realtabformer/rtf-c2-20260505_020932/public_gate/staged_input_manifest.json", + "model_manifest": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/c2/realtabformer/rtf-c2-20260505_020932/staged/realtabformer/model_input_manifest.json", + "train_csv": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/c2/realtabformer/rtf-c2-20260505_020932/staged/public/train.csv", + "features_json": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/c2/realtabformer/rtf-c2-20260505_020932/staged/public/staged_features.json", + "target_column": "class", + "task_type": "classification" + }, + "env_overrides": { + "BENCHMARK_REALTABFORMER_GPUS": "device=3" + } +} \ No newline at end of file diff --git a/hyperparameter/c2/realtabformer/rtf-c2-20260505_020932/runtime_result.json b/hyperparameter/c2/realtabformer/rtf-c2-20260505_020932/runtime_result.json new file mode 100644 index 0000000000000000000000000000000000000000..a5f2627dcd6975257a03c21cbebc250f16e1f501 --- /dev/null +++ b/hyperparameter/c2/realtabformer/rtf-c2-20260505_020932/runtime_result.json @@ -0,0 +1,27 @@ +{ + "dataset_id": "c2", + "model": "realtabformer", + "run_id": "rtf-c2-20260505_020932", + "public_gate_status": "pass", + "adapter_ready_status": "pass", + "train_status": "success", + "generate_status": "success", + "reason_code": null, + "reason_detail": null, + "artifacts": { + "synthetic_csv": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/c2/realtabformer/rtf-c2-20260505_020932/rtf-c2-1382-20260505_021020.csv", + "model_path": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/c2/realtabformer/rtf-c2-20260505_020932/models_10epochs" + }, + "timings": { + "train": { + "started_at": "2026-05-05T02:09:32", + "ended_at": "2026-05-05T02:10:20", + "duration_sec": 48.792 + }, + "generate": { + "started_at": "2026-05-05T02:10:20", + "ended_at": "2026-05-05T02:10:34", + "duration_sec": 13.41 + } + } +} \ No newline at end of file diff --git a/hyperparameter/c2/realtabformer/rtf-c2-20260505_020932/staged/public/staged_features.json b/hyperparameter/c2/realtabformer/rtf-c2-20260505_020932/staged/public/staged_features.json new file mode 100644 index 0000000000000000000000000000000000000000..61783861dd5de501592f76acb0469cf3f3b2622a --- /dev/null +++ b/hyperparameter/c2/realtabformer/rtf-c2-20260505_020932/staged/public/staged_features.json @@ -0,0 +1,37 @@ +[ + { + "feature_name": "buying", + "data_type": "categorical", + "is_target": false + }, + { + "feature_name": "maint", + "data_type": "categorical", + "is_target": false + }, + { + "feature_name": "doors", + "data_type": "categorical", + "is_target": false + }, + { + "feature_name": "persons", + "data_type": "categorical", + "is_target": false + }, + { + "feature_name": "lug_boot", + "data_type": "categorical", + "is_target": false + }, + { + "feature_name": "safety", + "data_type": "categorical", + "is_target": false + }, + { + "feature_name": "class", + "data_type": "categorical", + "is_target": true + } +] \ No newline at end of file diff --git a/hyperparameter/c2/realtabformer/rtf-c2-20260505_020932/staged/public/test.csv b/hyperparameter/c2/realtabformer/rtf-c2-20260505_020932/staged/public/test.csv new file mode 100644 index 0000000000000000000000000000000000000000..392a0d7189a34d8f13ecf20a99d64b03230d517c --- /dev/null +++ b/hyperparameter/c2/realtabformer/rtf-c2-20260505_020932/staged/public/test.csv @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:b48114a7d0bc5bd9a07920f903c8d4aba8bf98bf2a66a050da03588b0245ca73 +size 5273 diff --git a/hyperparameter/c2/realtabformer/rtf-c2-20260505_020932/staged/public/train.csv b/hyperparameter/c2/realtabformer/rtf-c2-20260505_020932/staged/public/train.csv new file mode 100644 index 0000000000000000000000000000000000000000..da4f4d55134eebc0e51157d0d467536371db1484 --- /dev/null +++ b/hyperparameter/c2/realtabformer/rtf-c2-20260505_020932/staged/public/train.csv @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:4aed00c2c2b3f88a55a7ebff31b2e1b5e0e32fb0a7267e0b9d2779cd23e434dd +size 41565 diff --git a/hyperparameter/c2/realtabformer/rtf-c2-20260505_020932/staged/public/val.csv b/hyperparameter/c2/realtabformer/rtf-c2-20260505_020932/staged/public/val.csv new file mode 100644 index 0000000000000000000000000000000000000000..af8caf7ee42524188534a3daf32996dc491952d9 --- /dev/null +++ b/hyperparameter/c2/realtabformer/rtf-c2-20260505_020932/staged/public/val.csv @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:26e90c1170a57a14c05832ac88027722b1f3848f9662c7c09ef7c93dcba4cc01 +size 5176 diff --git a/hyperparameter/c2/realtabformer/rtf-c2-20260505_020932/staged/realtabformer/adapter_report.json b/hyperparameter/c2/realtabformer/rtf-c2-20260505_020932/staged/realtabformer/adapter_report.json new file mode 100644 index 0000000000000000000000000000000000000000..d2a4af966713fccdde51a2811a30a91b4e1bdf2b --- /dev/null +++ b/hyperparameter/c2/realtabformer/rtf-c2-20260505_020932/staged/realtabformer/adapter_report.json @@ -0,0 +1,7 @@ +{ + "adapter_ready_status": "pass", + "adapter_fail_reason_code": null, + "adapter_fail_detail": null, + "adapter_transforms_applied": [], + "model_input_manifest": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/c2/realtabformer/rtf-c2-20260505_020932/staged/realtabformer/model_input_manifest.json" +} \ No newline at end of file diff --git a/hyperparameter/c2/realtabformer/rtf-c2-20260505_020932/staged/realtabformer/adapter_transforms_applied.json b/hyperparameter/c2/realtabformer/rtf-c2-20260505_020932/staged/realtabformer/adapter_transforms_applied.json new file mode 100644 index 0000000000000000000000000000000000000000..0637a088a01e8ddab3bf3fa98dbe804cbde1a0dc --- /dev/null +++ b/hyperparameter/c2/realtabformer/rtf-c2-20260505_020932/staged/realtabformer/adapter_transforms_applied.json @@ -0,0 +1 @@ +[] \ No newline at end of file diff --git a/hyperparameter/c2/realtabformer/rtf-c2-20260505_020932/staged/realtabformer/model_input_manifest.json b/hyperparameter/c2/realtabformer/rtf-c2-20260505_020932/staged/realtabformer/model_input_manifest.json new file mode 100644 index 0000000000000000000000000000000000000000..86506fe6c05b1068190c9c5dff1d26b49c50ea81 --- /dev/null +++ b/hyperparameter/c2/realtabformer/rtf-c2-20260505_020932/staged/realtabformer/model_input_manifest.json @@ -0,0 +1,151 @@ +{ + "dataset_id": "c2", + "model": "realtabformer", + "target_column": "class", + "task_type": "classification", + "column_schema": [ + { + "name": "buying", + "role": "feature", + "semantic_type": "categorical", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 4, + "unique_ratio": 0.002894, + "example_values": [ + "vhigh", + "med", + "high", + "low" + ] + } + }, + { + "name": "maint", + "role": "feature", + "semantic_type": "categorical", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 4, + "unique_ratio": 0.002894, + "example_values": [ + "vhigh", + "low", + "med", + "high" + ] + } + }, + { + "name": "doors", + "role": "feature", + "semantic_type": "categorical", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 4, + "unique_ratio": 0.002894, + "example_values": [ + "2", + "5more", + "3", + "4" + ] + } + }, + { + "name": "persons", + "role": "feature", + "semantic_type": "categorical", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 3, + "unique_ratio": 0.002171, + "example_values": [ + "2", + "4", + "more" + ] + } + }, + { + "name": "lug_boot", + "role": "feature", + "semantic_type": "categorical", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 3, + "unique_ratio": 0.002171, + "example_values": [ + "small", + "big", + "med" + ] + } + }, + { + "name": "safety", + "role": "feature", + "semantic_type": "categorical", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 3, + "unique_ratio": 0.002171, + "example_values": [ + "low", + "high", + "med" + ] + } + }, + { + "name": "class", + "role": "target", + "semantic_type": "categorical", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 4, + "unique_ratio": 0.002894, + "example_values": [ + "unacc", + "good", + "acc", + "vgood" + ] + } + } + ], + "public_manifest": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/c2/realtabformer/rtf-c2-20260505_020932/public_gate/staged_input_manifest.json", + "train_csv": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/c2/realtabformer/rtf-c2-20260505_020932/staged/public/train.csv", + "val_csv": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/c2/realtabformer/rtf-c2-20260505_020932/staged/public/val.csv", + "test_csv": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/c2/realtabformer/rtf-c2-20260505_020932/staged/public/test.csv", + "features_json": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/c2/realtabformer/rtf-c2-20260505_020932/staged/public/staged_features.json", + "public_gate_report": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/c2/realtabformer/rtf-c2-20260505_020932/public_gate/public_gate_report.json" +} \ No newline at end of file diff --git a/hyperparameter/c2/realtabformer/rtf-c2-20260505_020932/train_20260505_020932.log b/hyperparameter/c2/realtabformer/rtf-c2-20260505_020932/train_20260505_020932.log new file mode 100644 index 0000000000000000000000000000000000000000..471c35630ae07169988502755f5c01f7d0c2f2f9 --- /dev/null +++ b/hyperparameter/c2/realtabformer/rtf-c2-20260505_020932/train_20260505_020932.log @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:a860f7263eb9654d1e918a15cd8451e95937f64474c6a3865015fd9546f85e80 +size 18953 diff --git a/hyperparameter/c2/realtabformer/rtf-c2-20260505_021046/gen_20260505_021153.log b/hyperparameter/c2/realtabformer/rtf-c2-20260505_021046/gen_20260505_021153.log new file mode 100644 index 0000000000000000000000000000000000000000..5f3e066daa057aa2a2255734ff0d1cfb9f0161b6 --- /dev/null +++ b/hyperparameter/c2/realtabformer/rtf-c2-20260505_021046/gen_20260505_021153.log @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:3d60f8a85e33140f33a7f5bf5c0721e2dac8f8a1d044e188e9f0e4f28e17411f +size 1281 diff --git a/hyperparameter/c2/realtabformer/rtf-c2-20260505_021046/input_snapshot.json b/hyperparameter/c2/realtabformer/rtf-c2-20260505_021046/input_snapshot.json new file mode 100644 index 0000000000000000000000000000000000000000..16a47f24a14783056963c7c31b54a93442c4e573 --- /dev/null +++ b/hyperparameter/c2/realtabformer/rtf-c2-20260505_021046/input_snapshot.json @@ -0,0 +1,36 @@ +{ + "dataset_id": "c2", + "model": "realtabformer", + "inputs": { + "train_csv": { + "path": "/data/jialinzhang/SynthesizePipeline-server/DatasetNew/c2/c2-train.csv", + "exists": true, + "size": 42948, + "sha256": "17bc560fa96bd00fb3b526e1e65bc91210b701d0d0a4e8bb9b4c5196cab56def" + }, + "val_csv": { + "path": "/data/jialinzhang/SynthesizePipeline-server/DatasetNew/c2/c2-val.csv", + "exists": true, + "size": 5349, + "sha256": "61e565eca62e65a7dccd9d51039a3170413379e10fc494e25870e7c4294863c9" + }, + "test_csv": { + "path": "/data/jialinzhang/SynthesizePipeline-server/DatasetNew/c2/c2-test.csv", + "exists": true, + "size": 5448, + "sha256": "cbcbb062a1faf5fa44b66c80532baa229e05b94fc42137269761e6c6d84af20a" + }, + "profile_json": { + "path": "/data/jialinzhang/SynthesizePipeline-server/DatasetNew/artifacts/data_core/tabular/c2/c2-dataset_profile.json", + "exists": true, + "size": 3240, + "sha256": "526b7163b2076c93c0bf4638438081ee8a6907065d5b608faa40d1a3dbc2a27b" + }, + "contract_json": { + "path": "/data/jialinzhang/SynthesizePipeline-server/DatasetNew/artifacts/data_core/tabular/c2/c2-dataset_contract_v1.json", + "exists": true, + "size": 3731, + "sha256": "fb595a876054c2ee9b4e10cfe83a5691588de1d25466cbb9d473c18ad3604009" + } + } +} \ No newline at end of file diff --git a/hyperparameter/c2/realtabformer/rtf-c2-20260505_021046/models_15epochs/id000017779183114057013248/rtf_config.json b/hyperparameter/c2/realtabformer/rtf-c2-20260505_021046/models_15epochs/id000017779183114057013248/rtf_config.json new file mode 100644 index 0000000000000000000000000000000000000000..4825cf4c82650a60b6326c4dcaadc1f0abc8f07e --- /dev/null +++ b/hyperparameter/c2/realtabformer/rtf-c2-20260505_021046/models_15epochs/id000017779183114057013248/rtf_config.json @@ -0,0 +1 @@ +{"model_type": "tabular", "tabular_config": {"transformers_version": "5.5.3", "architectures": ["GPT2LMHeadModel"], "output_hidden_states": false, "return_dict": true, "dtype": "float32", "chunk_size_feed_forward": 0, "is_encoder_decoder": false, "id2label": {"0": "LABEL_0", "1": "LABEL_1"}, "label2id": {"LABEL_0": 0, "LABEL_1": 1}, "problem_type": null, "vocab_size": 36, "n_positions": 1024, "n_embd": 768, "n_layer": 6, "n_head": 12, "n_inner": null, "activation_function": "gelu_new", "resid_pdrop": 0.1, "embd_pdrop": 0.1, "attn_pdrop": 0.1, "layer_norm_epsilon": 1e-05, "initializer_range": 0.02, "summary_type": "cls_index", "summary_use_proj": true, "summary_activation": null, "summary_proj_to_labels": true, "summary_first_dropout": 0.1, "scale_attn_weights": true, "use_cache": false, "bos_token_id": 5, "eos_token_id": 6, "pad_token_id": null, "scale_attn_by_inverse_layer_idx": false, "reorder_and_upcast_attn": false, "add_cross_attention": false, "tie_word_embeddings": true, "_name_or_path": "", "model_type": "gpt2", "output_attentions": false}, "checkpoints_dir": "rtf_checkpoints", "samples_save_dir": "rtf_samples", "full_save_dir": "rtf_full_save", "epochs": 15, "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": 15, "per_device_train_batch_size": 8, "per_device_eval_batch_size": 8, "gradient_accumulation_steps": 4, "remove_unused_columns": true, "logging_steps": 100, "save_steps": 100, "eval_steps": 100, "load_best_model_at_end": false, "save_total_limit": 6, "optim": "adamw_torch"}, "train_size": 1, "mask_rate": 0, "columns": ["buying", "maint", "doors", "persons", "lug_boot", "safety", "class"], "column_dtypes": {"buying": "object", "maint": "object", "doors": "object", "persons": "object", "lug_boot": "object", "safety": "object", "class": "object"}, "column_has_missing": {"buying": false, "maint": false, "doors": false, "persons": false, "lug_boot": false, "safety": false, "class": false}, "drop_na_cols": ["buying", "maint", "doors", "persons", "lug_boot", "safety", "class"], "processed_columns": ["0___CATEGORICAL___buying", "1___CATEGORICAL___maint", "2___CATEGORICAL___doors", "3___CATEGORICAL___persons", "4___CATEGORICAL___lug_boot", "5___CATEGORICAL___safety", "6___CATEGORICAL___class"], "numeric_columns": [], "datetime_columns": [], "vocab": {"id2token": {"0": "[UNK]", "1": "[SEP]", "2": "[PAD]", "3": "[CLS]", "4": "[MASK]", "5": "[BOS]", "6": "[EOS]", "7": "[BMEM]", "8": "[EMEM]", "9": "[RMASK]", "10": "[SPTYPE]", "11": "0___CATEGORICAL___buying___high", "12": "0___CATEGORICAL___buying___low", "13": "0___CATEGORICAL___buying___med", "14": "0___CATEGORICAL___buying___vhigh", "15": "1___CATEGORICAL___maint___high", "16": "1___CATEGORICAL___maint___low", "17": "1___CATEGORICAL___maint___med", "18": "1___CATEGORICAL___maint___vhigh", "19": "2___CATEGORICAL___doors___2", "20": "2___CATEGORICAL___doors___3", "21": "2___CATEGORICAL___doors___4", "22": "2___CATEGORICAL___doors___5more", "23": "3___CATEGORICAL___persons___2", "24": "3___CATEGORICAL___persons___4", "25": "3___CATEGORICAL___persons___more", "26": "4___CATEGORICAL___lug_boot___big", "27": "4___CATEGORICAL___lug_boot___med", "28": "4___CATEGORICAL___lug_boot___small", "29": "5___CATEGORICAL___safety___high", "30": "5___CATEGORICAL___safety___low", "31": "5___CATEGORICAL___safety___med", "32": "6___CATEGORICAL___class___acc", "33": "6___CATEGORICAL___class___good", "34": "6___CATEGORICAL___class___unacc", "35": "6___CATEGORICAL___class___vgood"}, "token2id": {"[UNK]": 0, "[SEP]": 1, "[PAD]": 2, "[CLS]": 3, "[MASK]": 4, "[BOS]": 5, "[EOS]": 6, "[BMEM]": 7, "[EMEM]": 8, "[RMASK]": 9, "[SPTYPE]": 10, "0___CATEGORICAL___buying___high": 11, "0___CATEGORICAL___buying___low": 12, "0___CATEGORICAL___buying___med": 13, "0___CATEGORICAL___buying___vhigh": 14, "1___CATEGORICAL___maint___high": 15, "1___CATEGORICAL___maint___low": 16, "1___CATEGORICAL___maint___med": 17, "1___CATEGORICAL___maint___vhigh": 18, "2___CATEGORICAL___doors___2": 19, "2___CATEGORICAL___doors___3": 20, "2___CATEGORICAL___doors___4": 21, "2___CATEGORICAL___doors___5more": 22, "3___CATEGORICAL___persons___2": 23, "3___CATEGORICAL___persons___4": 24, "3___CATEGORICAL___persons___more": 25, "4___CATEGORICAL___lug_boot___big": 26, "4___CATEGORICAL___lug_boot___med": 27, "4___CATEGORICAL___lug_boot___small": 28, "5___CATEGORICAL___safety___high": 29, "5___CATEGORICAL___safety___low": 30, "5___CATEGORICAL___safety___med": 31, "6___CATEGORICAL___class___acc": 32, "6___CATEGORICAL___class___good": 33, "6___CATEGORICAL___class___unacc": 34, "6___CATEGORICAL___class___vgood": 35}, "column_token_ids": {"0___CATEGORICAL___buying": [11, 12, 13, 14], "1___CATEGORICAL___maint": [15, 16, 17, 18], "2___CATEGORICAL___doors": [19, 20, 21, 22], "3___CATEGORICAL___persons": [23, 24, 25], "4___CATEGORICAL___lug_boot": [26, 27, 28], "5___CATEGORICAL___safety": [29, 30, 31], "6___CATEGORICAL___class": [32, 33, 34, 35]}}, "tabular_max_length": 9, "relational_max_length": null, "tabular_col_size": 1382, "relational_col_size": null, "col_transform_data": {}, "in_col_transform_data": null, "col_idx_ids": {"0": [11, 12, 13, 14], "1": [15, 16, 17, 18], "2": [19, 20, 21, 22], "3": [23, 24, 25], "4": [26, 27, 28], "5": [29, 30, 31], "6": [32, 33, 34, 35]}, "random_state": 1029, "numeric_nparts": 1, "numeric_precision": 4, "numeric_max_len": 10, "experiment_id": "id000017779183114057013248", "trainer_state": null, "target_col": null, "realtabformer_version": "0.2.4"} \ No newline at end of file diff --git a/hyperparameter/c2/realtabformer/rtf-c2-20260505_021046/models_15epochs/id000017779183114057013248/rtf_model.pt b/hyperparameter/c2/realtabformer/rtf-c2-20260505_021046/models_15epochs/id000017779183114057013248/rtf_model.pt new file mode 100644 index 0000000000000000000000000000000000000000..803849933072f10995052af25db3358791303f94 --- /dev/null +++ b/hyperparameter/c2/realtabformer/rtf-c2-20260505_021046/models_15epochs/id000017779183114057013248/rtf_model.pt @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:3222592b18353f3663a43c279b2869ea251f06a5725206179d66267031aafafb +size 173400547 diff --git a/hyperparameter/c2/realtabformer/rtf-c2-20260505_021046/public_gate/normalized_schema_snapshot.json b/hyperparameter/c2/realtabformer/rtf-c2-20260505_021046/public_gate/normalized_schema_snapshot.json new file mode 100644 index 0000000000000000000000000000000000000000..689b1d00d96508e44ba40e58dc4560e19afc2b3b --- /dev/null +++ b/hyperparameter/c2/realtabformer/rtf-c2-20260505_021046/public_gate/normalized_schema_snapshot.json @@ -0,0 +1,144 @@ +{ + "dataset_id": "c2", + "target_column": "class", + "task_type": "classification", + "columns": [ + { + "name": "buying", + "role": "feature", + "semantic_type": "categorical", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 4, + "unique_ratio": 0.002894, + "example_values": [ + "vhigh", + "med", + "high", + "low" + ] + } + }, + { + "name": "maint", + "role": "feature", + "semantic_type": "categorical", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 4, + "unique_ratio": 0.002894, + "example_values": [ + "vhigh", + "low", + "med", + "high" + ] + } + }, + { + "name": "doors", + "role": "feature", + "semantic_type": "categorical", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 4, + "unique_ratio": 0.002894, + "example_values": [ + "2", + "5more", + "3", + "4" + ] + } + }, + { + "name": "persons", + "role": "feature", + "semantic_type": "categorical", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 3, + "unique_ratio": 0.002171, + "example_values": [ + "2", + "4", + "more" + ] + } + }, + { + "name": "lug_boot", + "role": "feature", + "semantic_type": "categorical", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 3, + "unique_ratio": 0.002171, + "example_values": [ + "small", + "big", + "med" + ] + } + }, + { + "name": "safety", + "role": "feature", + "semantic_type": "categorical", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 3, + "unique_ratio": 0.002171, + "example_values": [ + "low", + "high", + "med" + ] + } + }, + { + "name": "class", + "role": "target", + "semantic_type": "categorical", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 4, + "unique_ratio": 0.002894, + "example_values": [ + "unacc", + "good", + "acc", + "vgood" + ] + } + } + ] +} \ No newline at end of file diff --git a/hyperparameter/c2/realtabformer/rtf-c2-20260505_021046/public_gate/public_gate_report.json b/hyperparameter/c2/realtabformer/rtf-c2-20260505_021046/public_gate/public_gate_report.json new file mode 100644 index 0000000000000000000000000000000000000000..2e4cdcb2a4e28e40d59b17a83e773f622b7636a5 --- /dev/null +++ b/hyperparameter/c2/realtabformer/rtf-c2-20260505_021046/public_gate/public_gate_report.json @@ -0,0 +1,37 @@ +{ + "dataset_id": "c2", + "status": "pass", + "checks": [ + { + "check_id": "PG001_csv_parse_ok", + "status": "pass" + }, + { + "check_id": "PG002_split_header_consistent", + "status": "pass" + }, + { + "check_id": "PG003_profile_header_match", + "status": "pass" + }, + { + "check_id": "PG004_missing_token_normalized", + "status": "pass" + }, + { + "check_id": "PG005_semantic_type_validated", + "status": "pass" + }, + { + "check_id": "PG006_target_defined_and_valid", + "status": "pass" + } + ], + "target_column": "class", + "task_type": "classification", + "input_splits": { + "train": "/data/jialinzhang/SynthesizePipeline-server/DatasetNew/c2/c2-train.csv", + "val": "/data/jialinzhang/SynthesizePipeline-server/DatasetNew/c2/c2-val.csv", + "test": "/data/jialinzhang/SynthesizePipeline-server/DatasetNew/c2/c2-test.csv" + } +} \ No newline at end of file diff --git a/hyperparameter/c2/realtabformer/rtf-c2-20260505_021046/public_gate/staged_input_manifest.json b/hyperparameter/c2/realtabformer/rtf-c2-20260505_021046/public_gate/staged_input_manifest.json new file mode 100644 index 0000000000000000000000000000000000000000..8ca0ac3fefabd1416ab12a0812b1d176c812118e --- /dev/null +++ b/hyperparameter/c2/realtabformer/rtf-c2-20260505_021046/public_gate/staged_input_manifest.json @@ -0,0 +1,149 @@ +{ + "dataset_id": "c2", + "target_column": "class", + "task_type": "classification", + "train_csv": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/c2/realtabformer/rtf-c2-20260505_021046/staged/public/train.csv", + "val_csv": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/c2/realtabformer/rtf-c2-20260505_021046/staged/public/val.csv", + "test_csv": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/c2/realtabformer/rtf-c2-20260505_021046/staged/public/test.csv", + "features_json": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/c2/realtabformer/rtf-c2-20260505_021046/staged/public/staged_features.json", + "public_gate_report": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/c2/realtabformer/rtf-c2-20260505_021046/public_gate/public_gate_report.json", + "column_schema": [ + { + "name": "buying", + "role": "feature", + "semantic_type": "categorical", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 4, + "unique_ratio": 0.002894, + "example_values": [ + "vhigh", + "med", + "high", + "low" + ] + } + }, + { + "name": "maint", + "role": "feature", + "semantic_type": "categorical", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 4, + "unique_ratio": 0.002894, + "example_values": [ + "vhigh", + "low", + "med", + "high" + ] + } + }, + { + "name": "doors", + "role": "feature", + "semantic_type": "categorical", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 4, + "unique_ratio": 0.002894, + "example_values": [ + "2", + "5more", + "3", + "4" + ] + } + }, + { + "name": "persons", + "role": "feature", + "semantic_type": "categorical", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 3, + "unique_ratio": 0.002171, + "example_values": [ + "2", + "4", + "more" + ] + } + }, + { + "name": "lug_boot", + "role": "feature", + "semantic_type": "categorical", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 3, + "unique_ratio": 0.002171, + "example_values": [ + "small", + "big", + "med" + ] + } + }, + { + "name": "safety", + "role": "feature", + "semantic_type": "categorical", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 3, + "unique_ratio": 0.002171, + "example_values": [ + "low", + "high", + "med" + ] + } + }, + { + "name": "class", + "role": "target", + "semantic_type": "categorical", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 4, + "unique_ratio": 0.002894, + "example_values": [ + "unacc", + "good", + "acc", + "vgood" + ] + } + } + ] +} \ No newline at end of file diff --git a/hyperparameter/c2/realtabformer/rtf-c2-20260505_021046/realtabformer_features.json b/hyperparameter/c2/realtabformer/rtf-c2-20260505_021046/realtabformer_features.json new file mode 100644 index 0000000000000000000000000000000000000000..61783861dd5de501592f76acb0469cf3f3b2622a --- /dev/null +++ b/hyperparameter/c2/realtabformer/rtf-c2-20260505_021046/realtabformer_features.json @@ -0,0 +1,37 @@ +[ + { + "feature_name": "buying", + "data_type": "categorical", + "is_target": false + }, + { + "feature_name": "maint", + "data_type": "categorical", + "is_target": false + }, + { + "feature_name": "doors", + "data_type": "categorical", + "is_target": false + }, + { + "feature_name": "persons", + "data_type": "categorical", + "is_target": false + }, + { + "feature_name": "lug_boot", + "data_type": "categorical", + "is_target": false + }, + { + "feature_name": "safety", + "data_type": "categorical", + "is_target": false + }, + { + "feature_name": "class", + "data_type": "categorical", + "is_target": true + } +] \ No newline at end of file diff --git a/hyperparameter/c2/realtabformer/rtf-c2-20260505_021046/rtf-c2-1382-20260505_021153.csv b/hyperparameter/c2/realtabformer/rtf-c2-20260505_021046/rtf-c2-1382-20260505_021153.csv new file mode 100644 index 0000000000000000000000000000000000000000..1e066b1ef0ae05cb4f3ebcc41071e854480af682 --- /dev/null +++ b/hyperparameter/c2/realtabformer/rtf-c2-20260505_021046/rtf-c2-1382-20260505_021153.csv @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:99ccc66f1479693c0efe95a90fd1a7292aa153fa501009e4ae9c3263fc90528c +size 41650 diff --git a/hyperparameter/c2/realtabformer/rtf-c2-20260505_021046/rtf_checkpoints/checkpoint-500/config.json b/hyperparameter/c2/realtabformer/rtf-c2-20260505_021046/rtf_checkpoints/checkpoint-500/config.json new file mode 100644 index 0000000000000000000000000000000000000000..abc7bb2762d6bff3016eb042e7a2ac4abb80ea85 --- /dev/null +++ b/hyperparameter/c2/realtabformer/rtf-c2-20260505_021046/rtf_checkpoints/checkpoint-500/config.json @@ -0,0 +1,34 @@ +{ + "activation_function": "gelu_new", + "add_cross_attention": false, + "architectures": [ + "GPT2LMHeadModel" + ], + "attn_pdrop": 0.1, + "bos_token_id": 5, + "dtype": "float32", + "embd_pdrop": 0.1, + "eos_token_id": 6, + "initializer_range": 0.02, + "layer_norm_epsilon": 1e-05, + "model_type": "gpt2", + "n_embd": 768, + "n_head": 12, + "n_inner": null, + "n_layer": 6, + "n_positions": 1024, + "pad_token_id": null, + "reorder_and_upcast_attn": false, + "resid_pdrop": 0.1, + "scale_attn_by_inverse_layer_idx": false, + "scale_attn_weights": true, + "summary_activation": null, + "summary_first_dropout": 0.1, + "summary_proj_to_labels": true, + "summary_type": "cls_index", + "summary_use_proj": true, + "tie_word_embeddings": true, + "transformers_version": "5.5.3", + "use_cache": false, + "vocab_size": 36 +} diff --git a/hyperparameter/c2/realtabformer/rtf-c2-20260505_021046/rtf_checkpoints/checkpoint-500/generation_config.json b/hyperparameter/c2/realtabformer/rtf-c2-20260505_021046/rtf_checkpoints/checkpoint-500/generation_config.json new file mode 100644 index 0000000000000000000000000000000000000000..ffe89567780e75b5c22eade9be971483b9618f39 --- /dev/null +++ b/hyperparameter/c2/realtabformer/rtf-c2-20260505_021046/rtf_checkpoints/checkpoint-500/generation_config.json @@ -0,0 +1,9 @@ +{ + "_from_model_config": true, + "bos_token_id": 5, + "eos_token_id": 6, + "output_attentions": false, + "output_hidden_states": false, + "transformers_version": "5.5.3", + "use_cache": true +} diff --git a/hyperparameter/c2/realtabformer/rtf-c2-20260505_021046/rtf_checkpoints/checkpoint-500/model.safetensors b/hyperparameter/c2/realtabformer/rtf-c2-20260505_021046/rtf_checkpoints/checkpoint-500/model.safetensors new file mode 100644 index 0000000000000000000000000000000000000000..b68c9dbe33c4769ff3a1a773009fb26397fce6d1 --- /dev/null +++ b/hyperparameter/c2/realtabformer/rtf-c2-20260505_021046/rtf_checkpoints/checkpoint-500/model.safetensors @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:9ffaa599d245f226d90fd4ff860dac704f5bac89539d6d6dac8f73d84fbe2243 +size 173379016 diff --git a/hyperparameter/c2/realtabformer/rtf-c2-20260505_021046/rtf_checkpoints/checkpoint-500/optimizer.pt b/hyperparameter/c2/realtabformer/rtf-c2-20260505_021046/rtf_checkpoints/checkpoint-500/optimizer.pt new file mode 100644 index 0000000000000000000000000000000000000000..f21c6fa5748c76547ed0f449a4a29282e3f57713 --- /dev/null +++ b/hyperparameter/c2/realtabformer/rtf-c2-20260505_021046/rtf_checkpoints/checkpoint-500/optimizer.pt @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:6ea13a8cb500bfc4a5f828661221be7a5055df901a8e9b25f8194a41e675a3cd +size 346807051 diff --git a/hyperparameter/c2/realtabformer/rtf-c2-20260505_021046/rtf_checkpoints/checkpoint-500/rng_state.pth b/hyperparameter/c2/realtabformer/rtf-c2-20260505_021046/rtf_checkpoints/checkpoint-500/rng_state.pth new file mode 100644 index 0000000000000000000000000000000000000000..5f1d36adc30a53dda5dcc097b4e0f2b799548b4f --- /dev/null +++ b/hyperparameter/c2/realtabformer/rtf-c2-20260505_021046/rtf_checkpoints/checkpoint-500/rng_state.pth @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:4aa755b933aa93451ae301cbe8face68811188ede36717223201f8c0068c9a89 +size 14645 diff --git a/hyperparameter/c2/realtabformer/rtf-c2-20260505_021046/rtf_checkpoints/checkpoint-500/scaler.pt b/hyperparameter/c2/realtabformer/rtf-c2-20260505_021046/rtf_checkpoints/checkpoint-500/scaler.pt new file mode 100644 index 0000000000000000000000000000000000000000..86c857e8514e5db52a765434b135695dac4c9c36 --- /dev/null +++ b/hyperparameter/c2/realtabformer/rtf-c2-20260505_021046/rtf_checkpoints/checkpoint-500/scaler.pt @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:f77569c2e850b04af982cc8c1389f1430851448915c593b69e5da36ce05b71d7 +size 1383 diff --git a/hyperparameter/c2/realtabformer/rtf-c2-20260505_021046/rtf_checkpoints/checkpoint-500/scheduler.pt b/hyperparameter/c2/realtabformer/rtf-c2-20260505_021046/rtf_checkpoints/checkpoint-500/scheduler.pt new file mode 100644 index 0000000000000000000000000000000000000000..bd91e25cea007b3c6027f5b32f0dbe77dd2f3ca8 --- /dev/null +++ b/hyperparameter/c2/realtabformer/rtf-c2-20260505_021046/rtf_checkpoints/checkpoint-500/scheduler.pt @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:8beb8fbd8136f35ccdf0355de5e1df1e7c6feeb269700ea9fb1d18f65fefb184 +size 1465 diff --git a/hyperparameter/c2/realtabformer/rtf-c2-20260505_021046/rtf_checkpoints/checkpoint-500/trainer_state.json b/hyperparameter/c2/realtabformer/rtf-c2-20260505_021046/rtf_checkpoints/checkpoint-500/trainer_state.json new file mode 100644 index 0000000000000000000000000000000000000000..77287cd1b2445217f481110faa093687b3a7a6cc --- /dev/null +++ b/hyperparameter/c2/realtabformer/rtf-c2-20260505_021046/rtf_checkpoints/checkpoint-500/trainer_state.json @@ -0,0 +1,69 @@ +{ + "best_global_step": null, + "best_metric": null, + "best_model_checkpoint": null, + "epoch": 11.369942196531792, + "eval_steps": 100, + "global_step": 500, + "is_hyper_param_search": false, + "is_local_process_zero": true, + "is_world_process_zero": true, + "log_history": [ + { + "epoch": 2.277456647398844, + "grad_norm": 0.45676788687705994, + "learning_rate": 4.25e-05, + "loss": 1.0553404998779297, + "step": 100 + }, + { + "epoch": 4.554913294797688, + "grad_norm": 0.43233004212379456, + "learning_rate": 3.492424242424242e-05, + "loss": 0.8814839172363281, + "step": 200 + }, + { + "epoch": 6.832369942196532, + "grad_norm": 0.5573155283927917, + "learning_rate": 2.734848484848485e-05, + "loss": 0.8693464660644531, + "step": 300 + }, + { + "epoch": 9.092485549132949, + "grad_norm": 0.3407229483127594, + "learning_rate": 1.9772727272727274e-05, + "loss": 0.8583602905273438, + "step": 400 + }, + { + "epoch": 11.369942196531792, + "grad_norm": 0.3001420497894287, + "learning_rate": 1.2196969696969697e-05, + "loss": 0.8516739654541016, + "step": 500 + } + ], + "logging_steps": 100, + "max_steps": 660, + "num_input_tokens_seen": 0, + "num_train_epochs": 15, + "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": 36088041259008.0, + "train_batch_size": 8, + "trial_name": null, + "trial_params": null +} diff --git a/hyperparameter/c2/realtabformer/rtf-c2-20260505_021046/rtf_checkpoints/checkpoint-500/training_args.bin b/hyperparameter/c2/realtabformer/rtf-c2-20260505_021046/rtf_checkpoints/checkpoint-500/training_args.bin new file mode 100644 index 0000000000000000000000000000000000000000..3b03c5f71fa818875cad290ece2b25ec27903e93 --- /dev/null +++ b/hyperparameter/c2/realtabformer/rtf-c2-20260505_021046/rtf_checkpoints/checkpoint-500/training_args.bin @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:7e849067e43bb6650fce8e84fcf46f14551abb25b2511ace2d386dd951772602 +size 5201 diff --git a/hyperparameter/c2/realtabformer/rtf-c2-20260505_021046/rtf_checkpoints/checkpoint-528/config.json b/hyperparameter/c2/realtabformer/rtf-c2-20260505_021046/rtf_checkpoints/checkpoint-528/config.json new file mode 100644 index 0000000000000000000000000000000000000000..abc7bb2762d6bff3016eb042e7a2ac4abb80ea85 --- /dev/null +++ b/hyperparameter/c2/realtabformer/rtf-c2-20260505_021046/rtf_checkpoints/checkpoint-528/config.json @@ -0,0 +1,34 @@ +{ + "activation_function": "gelu_new", + "add_cross_attention": false, + "architectures": [ + "GPT2LMHeadModel" + ], + "attn_pdrop": 0.1, + "bos_token_id": 5, + "dtype": "float32", + "embd_pdrop": 0.1, + "eos_token_id": 6, + "initializer_range": 0.02, + "layer_norm_epsilon": 1e-05, + "model_type": "gpt2", + "n_embd": 768, + "n_head": 12, + "n_inner": null, + "n_layer": 6, + "n_positions": 1024, + "pad_token_id": null, + "reorder_and_upcast_attn": false, + "resid_pdrop": 0.1, + "scale_attn_by_inverse_layer_idx": false, + "scale_attn_weights": true, + "summary_activation": null, + "summary_first_dropout": 0.1, + "summary_proj_to_labels": true, + "summary_type": "cls_index", + "summary_use_proj": true, + "tie_word_embeddings": true, + "transformers_version": "5.5.3", + "use_cache": false, + "vocab_size": 36 +} diff --git a/hyperparameter/c2/realtabformer/rtf-c2-20260505_021046/rtf_checkpoints/checkpoint-528/generation_config.json b/hyperparameter/c2/realtabformer/rtf-c2-20260505_021046/rtf_checkpoints/checkpoint-528/generation_config.json new file mode 100644 index 0000000000000000000000000000000000000000..ffe89567780e75b5c22eade9be971483b9618f39 --- /dev/null +++ b/hyperparameter/c2/realtabformer/rtf-c2-20260505_021046/rtf_checkpoints/checkpoint-528/generation_config.json @@ -0,0 +1,9 @@ +{ + "_from_model_config": true, + "bos_token_id": 5, + "eos_token_id": 6, + "output_attentions": false, + "output_hidden_states": false, + "transformers_version": "5.5.3", + "use_cache": true +} diff --git a/hyperparameter/c2/realtabformer/rtf-c2-20260505_021046/rtf_checkpoints/checkpoint-528/model.safetensors b/hyperparameter/c2/realtabformer/rtf-c2-20260505_021046/rtf_checkpoints/checkpoint-528/model.safetensors new file mode 100644 index 0000000000000000000000000000000000000000..fd118ba7a363aa9d2be323bbec110df77ae6d524 --- /dev/null +++ b/hyperparameter/c2/realtabformer/rtf-c2-20260505_021046/rtf_checkpoints/checkpoint-528/model.safetensors @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:0d2d37d38f56c0eb0e25a0e2f48f3210a211675b40963f745fe8e1c6ffabc0b2 +size 173379016 diff --git a/hyperparameter/c2/realtabformer/rtf-c2-20260505_021046/rtf_checkpoints/checkpoint-528/optimizer.pt b/hyperparameter/c2/realtabformer/rtf-c2-20260505_021046/rtf_checkpoints/checkpoint-528/optimizer.pt new file mode 100644 index 0000000000000000000000000000000000000000..5a51e5127aa9114e6a1bf6887533b994d4dee395 --- /dev/null +++ b/hyperparameter/c2/realtabformer/rtf-c2-20260505_021046/rtf_checkpoints/checkpoint-528/optimizer.pt @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:477d0ab948ddbe8ab6c9a0cc6f9bbc1523c5df6f96e3ea294a32e5556b15837a +size 346807051 diff --git a/hyperparameter/c2/realtabformer/rtf-c2-20260505_021046/rtf_checkpoints/checkpoint-528/rng_state.pth b/hyperparameter/c2/realtabformer/rtf-c2-20260505_021046/rtf_checkpoints/checkpoint-528/rng_state.pth new file mode 100644 index 0000000000000000000000000000000000000000..ff212e70a8aaa872ed00b0ffe1d007fb92bb4844 --- /dev/null +++ b/hyperparameter/c2/realtabformer/rtf-c2-20260505_021046/rtf_checkpoints/checkpoint-528/rng_state.pth @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:1901d7ac0ba4036b08b73f404799aa80e83b76e0e61167db50fd5bb2011f03cb +size 14645 diff --git a/hyperparameter/c2/realtabformer/rtf-c2-20260505_021046/rtf_checkpoints/checkpoint-528/scaler.pt b/hyperparameter/c2/realtabformer/rtf-c2-20260505_021046/rtf_checkpoints/checkpoint-528/scaler.pt new file mode 100644 index 0000000000000000000000000000000000000000..8c21c8c4623b48add1e883d332c6b283fc87d948 --- /dev/null +++ b/hyperparameter/c2/realtabformer/rtf-c2-20260505_021046/rtf_checkpoints/checkpoint-528/scaler.pt @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:6a8f8a6d93ddf246159146f9a1866c9b95b59da8fa0869fbb479eecfdfaa50d0 +size 1383 diff --git a/hyperparameter/c2/realtabformer/rtf-c2-20260505_021046/rtf_checkpoints/checkpoint-528/scheduler.pt b/hyperparameter/c2/realtabformer/rtf-c2-20260505_021046/rtf_checkpoints/checkpoint-528/scheduler.pt new file mode 100644 index 0000000000000000000000000000000000000000..2c17f090eaf31e4b2e8de7b2c8e09da1e3984c85 --- /dev/null +++ b/hyperparameter/c2/realtabformer/rtf-c2-20260505_021046/rtf_checkpoints/checkpoint-528/scheduler.pt @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:216b0da07ea5b5855e3162fd57a15e375ec708601b4b959fdd84745aa7e618f5 +size 1465 diff --git a/hyperparameter/c2/realtabformer/rtf-c2-20260505_021046/rtf_checkpoints/checkpoint-528/trainer_state.json b/hyperparameter/c2/realtabformer/rtf-c2-20260505_021046/rtf_checkpoints/checkpoint-528/trainer_state.json new file mode 100644 index 0000000000000000000000000000000000000000..9d8546d5f34b994d01c7ba54d920254a5db9f43b --- /dev/null +++ b/hyperparameter/c2/realtabformer/rtf-c2-20260505_021046/rtf_checkpoints/checkpoint-528/trainer_state.json @@ -0,0 +1,69 @@ +{ + "best_global_step": null, + "best_metric": null, + "best_model_checkpoint": null, + "epoch": 12.0, + "eval_steps": 100, + "global_step": 528, + "is_hyper_param_search": false, + "is_local_process_zero": true, + "is_world_process_zero": true, + "log_history": [ + { + "epoch": 2.277456647398844, + "grad_norm": 0.45676788687705994, + "learning_rate": 4.25e-05, + "loss": 1.0553404998779297, + "step": 100 + }, + { + "epoch": 4.554913294797688, + "grad_norm": 0.43233004212379456, + "learning_rate": 3.492424242424242e-05, + "loss": 0.8814839172363281, + "step": 200 + }, + { + "epoch": 6.832369942196532, + "grad_norm": 0.5573155283927917, + "learning_rate": 2.734848484848485e-05, + "loss": 0.8693464660644531, + "step": 300 + }, + { + "epoch": 9.092485549132949, + "grad_norm": 0.3407229483127594, + "learning_rate": 1.9772727272727274e-05, + "loss": 0.8583602905273438, + "step": 400 + }, + { + "epoch": 11.369942196531792, + "grad_norm": 0.3001420497894287, + "learning_rate": 1.2196969696969697e-05, + "loss": 0.8516739654541016, + "step": 500 + } + ], + "logging_steps": 100, + "max_steps": 660, + "num_input_tokens_seen": 0, + "num_train_epochs": 15, + "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": 38086042779648.0, + "train_batch_size": 8, + "trial_name": null, + "trial_params": null +} diff --git a/hyperparameter/c2/realtabformer/rtf-c2-20260505_021046/rtf_checkpoints/checkpoint-528/training_args.bin b/hyperparameter/c2/realtabformer/rtf-c2-20260505_021046/rtf_checkpoints/checkpoint-528/training_args.bin new file mode 100644 index 0000000000000000000000000000000000000000..3b03c5f71fa818875cad290ece2b25ec27903e93 --- /dev/null +++ b/hyperparameter/c2/realtabformer/rtf-c2-20260505_021046/rtf_checkpoints/checkpoint-528/training_args.bin @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:7e849067e43bb6650fce8e84fcf46f14551abb25b2511ace2d386dd951772602 +size 5201 diff --git a/hyperparameter/c2/realtabformer/rtf-c2-20260505_021046/rtf_checkpoints/checkpoint-572/config.json b/hyperparameter/c2/realtabformer/rtf-c2-20260505_021046/rtf_checkpoints/checkpoint-572/config.json new file mode 100644 index 0000000000000000000000000000000000000000..abc7bb2762d6bff3016eb042e7a2ac4abb80ea85 --- /dev/null +++ b/hyperparameter/c2/realtabformer/rtf-c2-20260505_021046/rtf_checkpoints/checkpoint-572/config.json @@ -0,0 +1,34 @@ +{ + "activation_function": "gelu_new", + "add_cross_attention": false, + "architectures": [ + "GPT2LMHeadModel" + ], + "attn_pdrop": 0.1, + "bos_token_id": 5, + "dtype": "float32", + "embd_pdrop": 0.1, + "eos_token_id": 6, + "initializer_range": 0.02, + "layer_norm_epsilon": 1e-05, + "model_type": "gpt2", + "n_embd": 768, + "n_head": 12, + "n_inner": null, + "n_layer": 6, + "n_positions": 1024, + "pad_token_id": null, + "reorder_and_upcast_attn": false, + "resid_pdrop": 0.1, + "scale_attn_by_inverse_layer_idx": false, + "scale_attn_weights": true, + "summary_activation": null, + "summary_first_dropout": 0.1, + "summary_proj_to_labels": true, + "summary_type": "cls_index", + "summary_use_proj": true, + "tie_word_embeddings": true, + "transformers_version": "5.5.3", + "use_cache": false, + "vocab_size": 36 +} diff --git a/hyperparameter/c2/realtabformer/rtf-c2-20260505_021046/rtf_checkpoints/checkpoint-572/generation_config.json b/hyperparameter/c2/realtabformer/rtf-c2-20260505_021046/rtf_checkpoints/checkpoint-572/generation_config.json new file mode 100644 index 0000000000000000000000000000000000000000..ffe89567780e75b5c22eade9be971483b9618f39 --- /dev/null +++ b/hyperparameter/c2/realtabformer/rtf-c2-20260505_021046/rtf_checkpoints/checkpoint-572/generation_config.json @@ -0,0 +1,9 @@ +{ + "_from_model_config": true, + "bos_token_id": 5, + "eos_token_id": 6, + "output_attentions": false, + "output_hidden_states": false, + "transformers_version": "5.5.3", + "use_cache": true +} diff --git a/hyperparameter/c2/realtabformer/rtf-c2-20260505_021046/rtf_checkpoints/checkpoint-572/model.safetensors b/hyperparameter/c2/realtabformer/rtf-c2-20260505_021046/rtf_checkpoints/checkpoint-572/model.safetensors new file mode 100644 index 0000000000000000000000000000000000000000..82cc52a23598000975d89a6353f3f2b1e8b2c9c2 --- /dev/null +++ b/hyperparameter/c2/realtabformer/rtf-c2-20260505_021046/rtf_checkpoints/checkpoint-572/model.safetensors @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:0d705218ab258bbb16fba03f97b36234213d41090db153aeff61da302d0559a0 +size 173379016 diff --git a/hyperparameter/c2/realtabformer/rtf-c2-20260505_021046/rtf_checkpoints/checkpoint-572/optimizer.pt b/hyperparameter/c2/realtabformer/rtf-c2-20260505_021046/rtf_checkpoints/checkpoint-572/optimizer.pt new file mode 100644 index 0000000000000000000000000000000000000000..53154ad6d1e9467e1cac7360b33b99b57eedf249 --- /dev/null +++ b/hyperparameter/c2/realtabformer/rtf-c2-20260505_021046/rtf_checkpoints/checkpoint-572/optimizer.pt @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:db50795ae8bec7beaf70cce0c2881e91a04258665c995d53324a131b89e40929 +size 346807051 diff --git a/hyperparameter/c2/realtabformer/rtf-c2-20260505_021046/rtf_checkpoints/checkpoint-572/rng_state.pth b/hyperparameter/c2/realtabformer/rtf-c2-20260505_021046/rtf_checkpoints/checkpoint-572/rng_state.pth new file mode 100644 index 0000000000000000000000000000000000000000..a5055cb7a950d1d765d80c8c10dd3dd49270c0f6 --- /dev/null +++ b/hyperparameter/c2/realtabformer/rtf-c2-20260505_021046/rtf_checkpoints/checkpoint-572/rng_state.pth @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:0a8f2135cd44fc75d3968448dae15380eff042285913cd28b65751ad6ebc168b +size 14645 diff --git a/hyperparameter/c2/realtabformer/rtf-c2-20260505_021046/rtf_checkpoints/checkpoint-572/scaler.pt b/hyperparameter/c2/realtabformer/rtf-c2-20260505_021046/rtf_checkpoints/checkpoint-572/scaler.pt new file mode 100644 index 0000000000000000000000000000000000000000..88802e03da2e7ceabbc40854a1509c04508cc424 --- /dev/null +++ b/hyperparameter/c2/realtabformer/rtf-c2-20260505_021046/rtf_checkpoints/checkpoint-572/scaler.pt @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:abc76bd5443a8934d8f8c5f7adf8204f3724d05e06a7b1508f13e2d4a359c3c7 +size 1383 diff --git a/hyperparameter/c2/realtabformer/rtf-c2-20260505_021046/rtf_checkpoints/checkpoint-572/scheduler.pt b/hyperparameter/c2/realtabformer/rtf-c2-20260505_021046/rtf_checkpoints/checkpoint-572/scheduler.pt new file mode 100644 index 0000000000000000000000000000000000000000..1b5e7575ebea4e2c79c7ac3166d261f777bc9cab --- /dev/null +++ b/hyperparameter/c2/realtabformer/rtf-c2-20260505_021046/rtf_checkpoints/checkpoint-572/scheduler.pt @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:1df4fcd523c629d279c72748a040c90634ced74c3c3591b3ce8cfa36c16bf389 +size 1465 diff --git a/hyperparameter/c2/realtabformer/rtf-c2-20260505_021046/rtf_checkpoints/checkpoint-572/trainer_state.json b/hyperparameter/c2/realtabformer/rtf-c2-20260505_021046/rtf_checkpoints/checkpoint-572/trainer_state.json new file mode 100644 index 0000000000000000000000000000000000000000..fad0bd023ec58241bfb738f7322eb4650b2c2814 --- /dev/null +++ b/hyperparameter/c2/realtabformer/rtf-c2-20260505_021046/rtf_checkpoints/checkpoint-572/trainer_state.json @@ -0,0 +1,69 @@ +{ + "best_global_step": null, + "best_metric": null, + "best_model_checkpoint": null, + "epoch": 13.0, + "eval_steps": 100, + "global_step": 572, + "is_hyper_param_search": false, + "is_local_process_zero": true, + "is_world_process_zero": true, + "log_history": [ + { + "epoch": 2.277456647398844, + "grad_norm": 0.45676788687705994, + "learning_rate": 4.25e-05, + "loss": 1.0553404998779297, + "step": 100 + }, + { + "epoch": 4.554913294797688, + "grad_norm": 0.43233004212379456, + "learning_rate": 3.492424242424242e-05, + "loss": 0.8814839172363281, + "step": 200 + }, + { + "epoch": 6.832369942196532, + "grad_norm": 0.5573155283927917, + "learning_rate": 2.734848484848485e-05, + "loss": 0.8693464660644531, + "step": 300 + }, + { + "epoch": 9.092485549132949, + "grad_norm": 0.3407229483127594, + "learning_rate": 1.9772727272727274e-05, + "loss": 0.8583602905273438, + "step": 400 + }, + { + "epoch": 11.369942196531792, + "grad_norm": 0.3001420497894287, + "learning_rate": 1.2196969696969697e-05, + "loss": 0.8516739654541016, + "step": 500 + } + ], + "logging_steps": 100, + "max_steps": 660, + "num_input_tokens_seen": 0, + "num_train_epochs": 15, + "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": 41259879677952.0, + "train_batch_size": 8, + "trial_name": null, + "trial_params": null +} diff --git a/hyperparameter/c2/realtabformer/rtf-c2-20260505_021046/rtf_checkpoints/checkpoint-572/training_args.bin b/hyperparameter/c2/realtabformer/rtf-c2-20260505_021046/rtf_checkpoints/checkpoint-572/training_args.bin new file mode 100644 index 0000000000000000000000000000000000000000..3b03c5f71fa818875cad290ece2b25ec27903e93 --- /dev/null +++ b/hyperparameter/c2/realtabformer/rtf-c2-20260505_021046/rtf_checkpoints/checkpoint-572/training_args.bin @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:7e849067e43bb6650fce8e84fcf46f14551abb25b2511ace2d386dd951772602 +size 5201 diff --git a/hyperparameter/c2/realtabformer/rtf-c2-20260505_021046/rtf_checkpoints/checkpoint-600/config.json b/hyperparameter/c2/realtabformer/rtf-c2-20260505_021046/rtf_checkpoints/checkpoint-600/config.json new file mode 100644 index 0000000000000000000000000000000000000000..abc7bb2762d6bff3016eb042e7a2ac4abb80ea85 --- /dev/null +++ b/hyperparameter/c2/realtabformer/rtf-c2-20260505_021046/rtf_checkpoints/checkpoint-600/config.json @@ -0,0 +1,34 @@ +{ + "activation_function": "gelu_new", + "add_cross_attention": false, + "architectures": [ + "GPT2LMHeadModel" + ], + "attn_pdrop": 0.1, + "bos_token_id": 5, + "dtype": "float32", + "embd_pdrop": 0.1, + "eos_token_id": 6, + "initializer_range": 0.02, + "layer_norm_epsilon": 1e-05, + "model_type": "gpt2", + "n_embd": 768, + "n_head": 12, + "n_inner": null, + "n_layer": 6, + "n_positions": 1024, + "pad_token_id": null, + "reorder_and_upcast_attn": false, + "resid_pdrop": 0.1, + "scale_attn_by_inverse_layer_idx": false, + "scale_attn_weights": true, + "summary_activation": null, + "summary_first_dropout": 0.1, + "summary_proj_to_labels": true, + "summary_type": "cls_index", + "summary_use_proj": true, + "tie_word_embeddings": true, + "transformers_version": "5.5.3", + "use_cache": false, + "vocab_size": 36 +} diff --git a/hyperparameter/c2/realtabformer/rtf-c2-20260505_021046/rtf_checkpoints/checkpoint-600/generation_config.json b/hyperparameter/c2/realtabformer/rtf-c2-20260505_021046/rtf_checkpoints/checkpoint-600/generation_config.json new file mode 100644 index 0000000000000000000000000000000000000000..ffe89567780e75b5c22eade9be971483b9618f39 --- /dev/null +++ b/hyperparameter/c2/realtabformer/rtf-c2-20260505_021046/rtf_checkpoints/checkpoint-600/generation_config.json @@ -0,0 +1,9 @@ +{ + "_from_model_config": true, + "bos_token_id": 5, + "eos_token_id": 6, + "output_attentions": false, + "output_hidden_states": false, + "transformers_version": "5.5.3", + "use_cache": true +} diff --git a/hyperparameter/c2/realtabformer/rtf-c2-20260505_021046/rtf_checkpoints/checkpoint-600/model.safetensors b/hyperparameter/c2/realtabformer/rtf-c2-20260505_021046/rtf_checkpoints/checkpoint-600/model.safetensors new file mode 100644 index 0000000000000000000000000000000000000000..887e9adb5a3e2a0c15a2479cd82277f33997bb5f --- /dev/null +++ b/hyperparameter/c2/realtabformer/rtf-c2-20260505_021046/rtf_checkpoints/checkpoint-600/model.safetensors @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:d6d4635106df2ba9246dfc2b08c02055d7f54fbc08490834ba5e29a4354f0bf8 +size 173379016 diff --git a/hyperparameter/c2/realtabformer/rtf-c2-20260505_021046/rtf_checkpoints/checkpoint-600/optimizer.pt b/hyperparameter/c2/realtabformer/rtf-c2-20260505_021046/rtf_checkpoints/checkpoint-600/optimizer.pt new file mode 100644 index 0000000000000000000000000000000000000000..911cdad8165295be092399c98862412dd5d16a39 --- /dev/null +++ b/hyperparameter/c2/realtabformer/rtf-c2-20260505_021046/rtf_checkpoints/checkpoint-600/optimizer.pt @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:7019a426996ff44c0f1de07f91ca377c0dd6ac387d03173b5daaefa269378453 +size 346807051 diff --git a/hyperparameter/c2/realtabformer/rtf-c2-20260505_021046/rtf_checkpoints/checkpoint-600/rng_state.pth b/hyperparameter/c2/realtabformer/rtf-c2-20260505_021046/rtf_checkpoints/checkpoint-600/rng_state.pth new file mode 100644 index 0000000000000000000000000000000000000000..ee27767e8a49dfbe1ea3a0eeec9ec43230e6bc75 --- /dev/null +++ b/hyperparameter/c2/realtabformer/rtf-c2-20260505_021046/rtf_checkpoints/checkpoint-600/rng_state.pth @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:e832f56d027759ffa6e5ba9860170ec9a9ee3db18fd97cc24df9fe72b7840992 +size 14645 diff --git a/hyperparameter/c2/realtabformer/rtf-c2-20260505_021046/rtf_checkpoints/checkpoint-600/scaler.pt b/hyperparameter/c2/realtabformer/rtf-c2-20260505_021046/rtf_checkpoints/checkpoint-600/scaler.pt new file mode 100644 index 0000000000000000000000000000000000000000..5154a9cfd1277595e46351427d1764f0d17368e1 --- /dev/null +++ b/hyperparameter/c2/realtabformer/rtf-c2-20260505_021046/rtf_checkpoints/checkpoint-600/scaler.pt @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:cb7fde5111803012042c93a73aa191336bb6e10b3ad44f6bd1d94fc7008a22b6 +size 1383 diff --git a/hyperparameter/c2/realtabformer/rtf-c2-20260505_021046/rtf_checkpoints/checkpoint-600/scheduler.pt b/hyperparameter/c2/realtabformer/rtf-c2-20260505_021046/rtf_checkpoints/checkpoint-600/scheduler.pt new file mode 100644 index 0000000000000000000000000000000000000000..e8d925562166ba37ffde9215c85100ad531d12cc --- /dev/null +++ b/hyperparameter/c2/realtabformer/rtf-c2-20260505_021046/rtf_checkpoints/checkpoint-600/scheduler.pt @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:46a7875035fd7a7fd742cbabcbf5dac23b19c7b2736727e6a548c9a169f2d87d +size 1465 diff --git a/hyperparameter/c2/realtabformer/rtf-c2-20260505_021046/rtf_checkpoints/checkpoint-600/trainer_state.json b/hyperparameter/c2/realtabformer/rtf-c2-20260505_021046/rtf_checkpoints/checkpoint-600/trainer_state.json new file mode 100644 index 0000000000000000000000000000000000000000..dde8fe6b84a861a415e6cc51f6fd19672ab1b5c0 --- /dev/null +++ b/hyperparameter/c2/realtabformer/rtf-c2-20260505_021046/rtf_checkpoints/checkpoint-600/trainer_state.json @@ -0,0 +1,76 @@ +{ + "best_global_step": null, + "best_metric": null, + "best_model_checkpoint": null, + "epoch": 13.647398843930636, + "eval_steps": 100, + "global_step": 600, + "is_hyper_param_search": false, + "is_local_process_zero": true, + "is_world_process_zero": true, + "log_history": [ + { + "epoch": 2.277456647398844, + "grad_norm": 0.45676788687705994, + "learning_rate": 4.25e-05, + "loss": 1.0553404998779297, + "step": 100 + }, + { + "epoch": 4.554913294797688, + "grad_norm": 0.43233004212379456, + "learning_rate": 3.492424242424242e-05, + "loss": 0.8814839172363281, + "step": 200 + }, + { + "epoch": 6.832369942196532, + "grad_norm": 0.5573155283927917, + "learning_rate": 2.734848484848485e-05, + "loss": 0.8693464660644531, + "step": 300 + }, + { + "epoch": 9.092485549132949, + "grad_norm": 0.3407229483127594, + "learning_rate": 1.9772727272727274e-05, + "loss": 0.8583602905273438, + "step": 400 + }, + { + "epoch": 11.369942196531792, + "grad_norm": 0.3001420497894287, + "learning_rate": 1.2196969696969697e-05, + "loss": 0.8516739654541016, + "step": 500 + }, + { + "epoch": 13.647398843930636, + "grad_norm": 0.3789326548576355, + "learning_rate": 4.621212121212122e-06, + "loss": 0.8476200103759766, + "step": 600 + } + ], + "logging_steps": 100, + "max_steps": 660, + "num_input_tokens_seen": 0, + "num_train_epochs": 15, + "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": 43317591588864.0, + "train_batch_size": 8, + "trial_name": null, + "trial_params": null +} diff --git a/hyperparameter/c2/realtabformer/rtf-c2-20260505_021046/rtf_checkpoints/checkpoint-600/training_args.bin b/hyperparameter/c2/realtabformer/rtf-c2-20260505_021046/rtf_checkpoints/checkpoint-600/training_args.bin new file mode 100644 index 0000000000000000000000000000000000000000..3b03c5f71fa818875cad290ece2b25ec27903e93 --- /dev/null +++ b/hyperparameter/c2/realtabformer/rtf-c2-20260505_021046/rtf_checkpoints/checkpoint-600/training_args.bin @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:7e849067e43bb6650fce8e84fcf46f14551abb25b2511ace2d386dd951772602 +size 5201 diff --git a/hyperparameter/c2/realtabformer/rtf-c2-20260505_021046/rtf_checkpoints/checkpoint-616/config.json b/hyperparameter/c2/realtabformer/rtf-c2-20260505_021046/rtf_checkpoints/checkpoint-616/config.json new file mode 100644 index 0000000000000000000000000000000000000000..abc7bb2762d6bff3016eb042e7a2ac4abb80ea85 --- /dev/null +++ b/hyperparameter/c2/realtabformer/rtf-c2-20260505_021046/rtf_checkpoints/checkpoint-616/config.json @@ -0,0 +1,34 @@ +{ + "activation_function": "gelu_new", + "add_cross_attention": false, + "architectures": [ + "GPT2LMHeadModel" + ], + "attn_pdrop": 0.1, + "bos_token_id": 5, + "dtype": "float32", + "embd_pdrop": 0.1, + "eos_token_id": 6, + "initializer_range": 0.02, + "layer_norm_epsilon": 1e-05, + "model_type": "gpt2", + "n_embd": 768, + "n_head": 12, + "n_inner": null, + "n_layer": 6, + "n_positions": 1024, + "pad_token_id": null, + "reorder_and_upcast_attn": false, + "resid_pdrop": 0.1, + "scale_attn_by_inverse_layer_idx": false, + "scale_attn_weights": true, + "summary_activation": null, + "summary_first_dropout": 0.1, + "summary_proj_to_labels": true, + "summary_type": "cls_index", + "summary_use_proj": true, + "tie_word_embeddings": true, + "transformers_version": "5.5.3", + "use_cache": false, + "vocab_size": 36 +} diff --git a/hyperparameter/c2/realtabformer/rtf-c2-20260505_021046/rtf_checkpoints/checkpoint-616/generation_config.json b/hyperparameter/c2/realtabformer/rtf-c2-20260505_021046/rtf_checkpoints/checkpoint-616/generation_config.json new file mode 100644 index 0000000000000000000000000000000000000000..ffe89567780e75b5c22eade9be971483b9618f39 --- /dev/null +++ b/hyperparameter/c2/realtabformer/rtf-c2-20260505_021046/rtf_checkpoints/checkpoint-616/generation_config.json @@ -0,0 +1,9 @@ +{ + "_from_model_config": true, + "bos_token_id": 5, + "eos_token_id": 6, + "output_attentions": false, + "output_hidden_states": false, + "transformers_version": "5.5.3", + "use_cache": true +} diff --git a/hyperparameter/c2/realtabformer/rtf-c2-20260505_021046/rtf_checkpoints/checkpoint-616/model.safetensors b/hyperparameter/c2/realtabformer/rtf-c2-20260505_021046/rtf_checkpoints/checkpoint-616/model.safetensors new file mode 100644 index 0000000000000000000000000000000000000000..951838ced709b8b83d8c4632177c80e71ce6e41e --- /dev/null +++ b/hyperparameter/c2/realtabformer/rtf-c2-20260505_021046/rtf_checkpoints/checkpoint-616/model.safetensors @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:b59007ded949fb73fe2d68eed472750a531b8ebf2e615d2787b58ea6fd011bad +size 173379016 diff --git a/hyperparameter/c2/realtabformer/rtf-c2-20260505_021046/rtf_checkpoints/checkpoint-616/optimizer.pt b/hyperparameter/c2/realtabformer/rtf-c2-20260505_021046/rtf_checkpoints/checkpoint-616/optimizer.pt new file mode 100644 index 0000000000000000000000000000000000000000..c86d5827f8d82027bfe12660de4e2f477824e02b --- /dev/null +++ b/hyperparameter/c2/realtabformer/rtf-c2-20260505_021046/rtf_checkpoints/checkpoint-616/optimizer.pt @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:b9c844bc8fec66b368a57fceafb0137a6b68653f75337c4fe86fcef3f1bb91fe +size 346807051 diff --git a/hyperparameter/c2/realtabformer/rtf-c2-20260505_021046/rtf_checkpoints/checkpoint-616/rng_state.pth b/hyperparameter/c2/realtabformer/rtf-c2-20260505_021046/rtf_checkpoints/checkpoint-616/rng_state.pth new file mode 100644 index 0000000000000000000000000000000000000000..496ec5a052533415acdbe43cb614f8844d2b4bb5 --- /dev/null +++ b/hyperparameter/c2/realtabformer/rtf-c2-20260505_021046/rtf_checkpoints/checkpoint-616/rng_state.pth @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:013f56b8ea24a9f3e04f32ce10626d6976eb2aaaecb8f04153f1c3a1d4ea0f3a +size 14645 diff --git a/hyperparameter/c2/realtabformer/rtf-c2-20260505_021046/rtf_checkpoints/checkpoint-616/scaler.pt b/hyperparameter/c2/realtabformer/rtf-c2-20260505_021046/rtf_checkpoints/checkpoint-616/scaler.pt new file mode 100644 index 0000000000000000000000000000000000000000..0b7e79e66b0748646edb14d1d5a380f56c6633b3 --- /dev/null +++ b/hyperparameter/c2/realtabformer/rtf-c2-20260505_021046/rtf_checkpoints/checkpoint-616/scaler.pt @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:cf28f1ab3b00133ee3eb869e1a7ae8e756d8042fb42d6274da8a07c10f14a5f9 +size 1383 diff --git a/hyperparameter/c2/realtabformer/rtf-c2-20260505_021046/rtf_checkpoints/checkpoint-616/scheduler.pt b/hyperparameter/c2/realtabformer/rtf-c2-20260505_021046/rtf_checkpoints/checkpoint-616/scheduler.pt new file mode 100644 index 0000000000000000000000000000000000000000..6d175f0f55b34c7700895f8c37dd60a22e5cf9f1 --- /dev/null +++ b/hyperparameter/c2/realtabformer/rtf-c2-20260505_021046/rtf_checkpoints/checkpoint-616/scheduler.pt @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:245774f13209f5dfd0a4a826f32e2a5f56472e409ff58e2dda0d0fdb6941c94a +size 1465 diff --git a/hyperparameter/c2/realtabformer/rtf-c2-20260505_021046/rtf_checkpoints/checkpoint-616/trainer_state.json b/hyperparameter/c2/realtabformer/rtf-c2-20260505_021046/rtf_checkpoints/checkpoint-616/trainer_state.json new file mode 100644 index 0000000000000000000000000000000000000000..99af95e0646f8db5d6bcbb8c3956853d120b12b6 --- /dev/null +++ b/hyperparameter/c2/realtabformer/rtf-c2-20260505_021046/rtf_checkpoints/checkpoint-616/trainer_state.json @@ -0,0 +1,76 @@ +{ + "best_global_step": null, + "best_metric": null, + "best_model_checkpoint": null, + "epoch": 14.0, + "eval_steps": 100, + "global_step": 616, + "is_hyper_param_search": false, + "is_local_process_zero": true, + "is_world_process_zero": true, + "log_history": [ + { + "epoch": 2.277456647398844, + "grad_norm": 0.45676788687705994, + "learning_rate": 4.25e-05, + "loss": 1.0553404998779297, + "step": 100 + }, + { + "epoch": 4.554913294797688, + "grad_norm": 0.43233004212379456, + "learning_rate": 3.492424242424242e-05, + "loss": 0.8814839172363281, + "step": 200 + }, + { + "epoch": 6.832369942196532, + "grad_norm": 0.5573155283927917, + "learning_rate": 2.734848484848485e-05, + "loss": 0.8693464660644531, + "step": 300 + }, + { + "epoch": 9.092485549132949, + "grad_norm": 0.3407229483127594, + "learning_rate": 1.9772727272727274e-05, + "loss": 0.8583602905273438, + "step": 400 + }, + { + "epoch": 11.369942196531792, + "grad_norm": 0.3001420497894287, + "learning_rate": 1.2196969696969697e-05, + "loss": 0.8516739654541016, + "step": 500 + }, + { + "epoch": 13.647398843930636, + "grad_norm": 0.3789326548576355, + "learning_rate": 4.621212121212122e-06, + "loss": 0.8476200103759766, + "step": 600 + } + ], + "logging_steps": 100, + "max_steps": 660, + "num_input_tokens_seen": 0, + "num_train_epochs": 15, + "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": 44433716576256.0, + "train_batch_size": 8, + "trial_name": null, + "trial_params": null +} diff --git a/hyperparameter/c2/realtabformer/rtf-c2-20260505_021046/rtf_checkpoints/checkpoint-616/training_args.bin b/hyperparameter/c2/realtabformer/rtf-c2-20260505_021046/rtf_checkpoints/checkpoint-616/training_args.bin new file mode 100644 index 0000000000000000000000000000000000000000..3b03c5f71fa818875cad290ece2b25ec27903e93 --- /dev/null +++ b/hyperparameter/c2/realtabformer/rtf-c2-20260505_021046/rtf_checkpoints/checkpoint-616/training_args.bin @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:7e849067e43bb6650fce8e84fcf46f14551abb25b2511ace2d386dd951772602 +size 5201 diff --git a/hyperparameter/c2/realtabformer/rtf-c2-20260505_021046/rtf_checkpoints/checkpoint-660/config.json b/hyperparameter/c2/realtabformer/rtf-c2-20260505_021046/rtf_checkpoints/checkpoint-660/config.json new file mode 100644 index 0000000000000000000000000000000000000000..abc7bb2762d6bff3016eb042e7a2ac4abb80ea85 --- /dev/null +++ b/hyperparameter/c2/realtabformer/rtf-c2-20260505_021046/rtf_checkpoints/checkpoint-660/config.json @@ -0,0 +1,34 @@ +{ + "activation_function": "gelu_new", + "add_cross_attention": false, + "architectures": [ + "GPT2LMHeadModel" + ], + "attn_pdrop": 0.1, + "bos_token_id": 5, + "dtype": "float32", + "embd_pdrop": 0.1, + "eos_token_id": 6, + "initializer_range": 0.02, + "layer_norm_epsilon": 1e-05, + "model_type": "gpt2", + "n_embd": 768, + "n_head": 12, + "n_inner": null, + "n_layer": 6, + "n_positions": 1024, + "pad_token_id": null, + "reorder_and_upcast_attn": false, + "resid_pdrop": 0.1, + "scale_attn_by_inverse_layer_idx": false, + "scale_attn_weights": true, + "summary_activation": null, + "summary_first_dropout": 0.1, + "summary_proj_to_labels": true, + "summary_type": "cls_index", + "summary_use_proj": true, + "tie_word_embeddings": true, + "transformers_version": "5.5.3", + "use_cache": false, + "vocab_size": 36 +} diff --git a/hyperparameter/c2/realtabformer/rtf-c2-20260505_021046/rtf_checkpoints/checkpoint-660/generation_config.json b/hyperparameter/c2/realtabformer/rtf-c2-20260505_021046/rtf_checkpoints/checkpoint-660/generation_config.json new file mode 100644 index 0000000000000000000000000000000000000000..ffe89567780e75b5c22eade9be971483b9618f39 --- /dev/null +++ b/hyperparameter/c2/realtabformer/rtf-c2-20260505_021046/rtf_checkpoints/checkpoint-660/generation_config.json @@ -0,0 +1,9 @@ +{ + "_from_model_config": true, + "bos_token_id": 5, + "eos_token_id": 6, + "output_attentions": false, + "output_hidden_states": false, + "transformers_version": "5.5.3", + "use_cache": true +} diff --git a/hyperparameter/c2/realtabformer/rtf-c2-20260505_021046/rtf_checkpoints/checkpoint-660/model.safetensors b/hyperparameter/c2/realtabformer/rtf-c2-20260505_021046/rtf_checkpoints/checkpoint-660/model.safetensors new file mode 100644 index 0000000000000000000000000000000000000000..44ddafa15d51a77c3f680c03961a2ca7f913e8f7 --- /dev/null +++ b/hyperparameter/c2/realtabformer/rtf-c2-20260505_021046/rtf_checkpoints/checkpoint-660/model.safetensors @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:23026c38350ddb00143712a97671a3cae9cb5b4d0853c9e5bed73f6feb8c3de8 +size 173379016 diff --git a/hyperparameter/c2/realtabformer/rtf-c2-20260505_021046/rtf_checkpoints/checkpoint-660/optimizer.pt b/hyperparameter/c2/realtabformer/rtf-c2-20260505_021046/rtf_checkpoints/checkpoint-660/optimizer.pt new file mode 100644 index 0000000000000000000000000000000000000000..f5d0c3af62e77ae23444cca67468f331411a01c6 --- /dev/null +++ b/hyperparameter/c2/realtabformer/rtf-c2-20260505_021046/rtf_checkpoints/checkpoint-660/optimizer.pt @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:e7f1574c09dbb46f11ef2d346167f2acedbf99da061f87ef24a2b57b61397ab9 +size 346807051 diff --git a/hyperparameter/c2/realtabformer/rtf-c2-20260505_021046/rtf_checkpoints/checkpoint-660/rng_state.pth b/hyperparameter/c2/realtabformer/rtf-c2-20260505_021046/rtf_checkpoints/checkpoint-660/rng_state.pth new file mode 100644 index 0000000000000000000000000000000000000000..ecf827e6d52cd8392791135907786f0b7d80a944 --- /dev/null +++ b/hyperparameter/c2/realtabformer/rtf-c2-20260505_021046/rtf_checkpoints/checkpoint-660/rng_state.pth @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:f2d4a21676789e80f99854f2e8d24c9896f5c1140f242da3187d0f404ff79d0c +size 14645 diff --git a/hyperparameter/c2/realtabformer/rtf-c2-20260505_021046/rtf_checkpoints/checkpoint-660/scaler.pt b/hyperparameter/c2/realtabformer/rtf-c2-20260505_021046/rtf_checkpoints/checkpoint-660/scaler.pt new file mode 100644 index 0000000000000000000000000000000000000000..da6930b456aad97f00d2a94ff9cbe19b6f6fadc7 --- /dev/null +++ b/hyperparameter/c2/realtabformer/rtf-c2-20260505_021046/rtf_checkpoints/checkpoint-660/scaler.pt @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:ca202fc25cecd2e3dfae2a87978621e5f552f2c88fe716b567b699919d821583 +size 1383 diff --git a/hyperparameter/c2/realtabformer/rtf-c2-20260505_021046/rtf_checkpoints/checkpoint-660/scheduler.pt b/hyperparameter/c2/realtabformer/rtf-c2-20260505_021046/rtf_checkpoints/checkpoint-660/scheduler.pt new file mode 100644 index 0000000000000000000000000000000000000000..57ad8f39387fb8d5b495b2932d3aa2336e0f7658 --- /dev/null +++ b/hyperparameter/c2/realtabformer/rtf-c2-20260505_021046/rtf_checkpoints/checkpoint-660/scheduler.pt @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:3a7cbf5746c1ae5b1fd93f00c422f82ffc6d663ae02d03340c0c94af784adb0a +size 1465 diff --git a/hyperparameter/c2/realtabformer/rtf-c2-20260505_021046/rtf_checkpoints/checkpoint-660/trainer_state.json b/hyperparameter/c2/realtabformer/rtf-c2-20260505_021046/rtf_checkpoints/checkpoint-660/trainer_state.json new file mode 100644 index 0000000000000000000000000000000000000000..5a7cb91efb4bf731e755eb58e3e89b591c95a3e4 --- /dev/null +++ b/hyperparameter/c2/realtabformer/rtf-c2-20260505_021046/rtf_checkpoints/checkpoint-660/trainer_state.json @@ -0,0 +1,76 @@ +{ + "best_global_step": null, + "best_metric": null, + "best_model_checkpoint": null, + "epoch": 15.0, + "eval_steps": 100, + "global_step": 660, + "is_hyper_param_search": false, + "is_local_process_zero": true, + "is_world_process_zero": true, + "log_history": [ + { + "epoch": 2.277456647398844, + "grad_norm": 0.45676788687705994, + "learning_rate": 4.25e-05, + "loss": 1.0553404998779297, + "step": 100 + }, + { + "epoch": 4.554913294797688, + "grad_norm": 0.43233004212379456, + "learning_rate": 3.492424242424242e-05, + "loss": 0.8814839172363281, + "step": 200 + }, + { + "epoch": 6.832369942196532, + "grad_norm": 0.5573155283927917, + "learning_rate": 2.734848484848485e-05, + "loss": 0.8693464660644531, + "step": 300 + }, + { + "epoch": 9.092485549132949, + "grad_norm": 0.3407229483127594, + "learning_rate": 1.9772727272727274e-05, + "loss": 0.8583602905273438, + "step": 400 + }, + { + "epoch": 11.369942196531792, + "grad_norm": 0.3001420497894287, + "learning_rate": 1.2196969696969697e-05, + "loss": 0.8516739654541016, + "step": 500 + }, + { + "epoch": 13.647398843930636, + "grad_norm": 0.3789326548576355, + "learning_rate": 4.621212121212122e-06, + "loss": 0.8476200103759766, + "step": 600 + } + ], + "logging_steps": 100, + "max_steps": 660, + "num_input_tokens_seen": 0, + "num_train_epochs": 15, + "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": 47607553474560.0, + "train_batch_size": 8, + "trial_name": null, + "trial_params": null +} diff --git a/hyperparameter/c2/realtabformer/rtf-c2-20260505_021046/rtf_checkpoints/checkpoint-660/training_args.bin b/hyperparameter/c2/realtabformer/rtf-c2-20260505_021046/rtf_checkpoints/checkpoint-660/training_args.bin new file mode 100644 index 0000000000000000000000000000000000000000..3b03c5f71fa818875cad290ece2b25ec27903e93 --- /dev/null +++ b/hyperparameter/c2/realtabformer/rtf-c2-20260505_021046/rtf_checkpoints/checkpoint-660/training_args.bin @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:7e849067e43bb6650fce8e84fcf46f14551abb25b2511ace2d386dd951772602 +size 5201 diff --git a/hyperparameter/c2/realtabformer/rtf-c2-20260505_021046/run_config.json b/hyperparameter/c2/realtabformer/rtf-c2-20260505_021046/run_config.json new file mode 100644 index 0000000000000000000000000000000000000000..78de792d998e92d3c520bacf38d74fd98c4c2295 --- /dev/null +++ b/hyperparameter/c2/realtabformer/rtf-c2-20260505_021046/run_config.json @@ -0,0 +1,40 @@ +{ + "schema_version": 1, + "recorded_at": "2026-05-05T02:10:46", + "dataset_id": "c2", + "model": "realtabformer", + "work_dir": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/c2/realtabformer/rtf-c2-20260505_021046", + "dataset_source_requested": "new", + "dataset_source_resolved": "new", + "cli_args": { + "model": "realtabformer", + "dataset": "c2", + "dataset_source": "new", + "train": true, + "generate": true, + "num_rows": 0, + "epochs": 15, + "output_dir": null, + "model_dir": null, + "work_dir": null, + "resume": false, + "no_stats": false + }, + "resolved": { + "num_rows": 1382, + "model_path": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/c2/realtabformer/rtf-c2-20260505_021046/models_15epochs", + "output_csv": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/c2/realtabformer/rtf-c2-20260505_021046/rtf-c2-1382-20260505_021153.csv" + }, + "input_artifacts": { + "public_gate_report": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/c2/realtabformer/rtf-c2-20260505_021046/public_gate/public_gate_report.json", + "public_manifest": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/c2/realtabformer/rtf-c2-20260505_021046/public_gate/staged_input_manifest.json", + "model_manifest": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/c2/realtabformer/rtf-c2-20260505_021046/staged/realtabformer/model_input_manifest.json", + "train_csv": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/c2/realtabformer/rtf-c2-20260505_021046/staged/public/train.csv", + "features_json": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/c2/realtabformer/rtf-c2-20260505_021046/staged/public/staged_features.json", + "target_column": "class", + "task_type": "classification" + }, + "env_overrides": { + "BENCHMARK_REALTABFORMER_GPUS": "device=3" + } +} \ No newline at end of file diff --git a/hyperparameter/c2/realtabformer/rtf-c2-20260505_021046/runtime_result.json b/hyperparameter/c2/realtabformer/rtf-c2-20260505_021046/runtime_result.json new file mode 100644 index 0000000000000000000000000000000000000000..a7eb71c8f7b5dec96235500dbed85addf856fc6b --- /dev/null +++ b/hyperparameter/c2/realtabformer/rtf-c2-20260505_021046/runtime_result.json @@ -0,0 +1,27 @@ +{ + "dataset_id": "c2", + "model": "realtabformer", + "run_id": "rtf-c2-20260505_021046", + "public_gate_status": "pass", + "adapter_ready_status": "pass", + "train_status": "success", + "generate_status": "success", + "reason_code": null, + "reason_detail": null, + "artifacts": { + "synthetic_csv": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/c2/realtabformer/rtf-c2-20260505_021046/rtf-c2-1382-20260505_021153.csv", + "model_path": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/c2/realtabformer/rtf-c2-20260505_021046/models_15epochs" + }, + "timings": { + "train": { + "started_at": "2026-05-05T02:10:46", + "ended_at": "2026-05-05T02:11:53", + "duration_sec": 67.175 + }, + "generate": { + "started_at": "2026-05-05T02:11:53", + "ended_at": "2026-05-05T02:12:07", + "duration_sec": 13.965 + } + } +} \ No newline at end of file diff --git a/hyperparameter/c2/realtabformer/rtf-c2-20260505_021046/staged/public/staged_features.json b/hyperparameter/c2/realtabformer/rtf-c2-20260505_021046/staged/public/staged_features.json new file mode 100644 index 0000000000000000000000000000000000000000..61783861dd5de501592f76acb0469cf3f3b2622a --- /dev/null +++ b/hyperparameter/c2/realtabformer/rtf-c2-20260505_021046/staged/public/staged_features.json @@ -0,0 +1,37 @@ +[ + { + "feature_name": "buying", + "data_type": "categorical", + "is_target": false + }, + { + "feature_name": "maint", + "data_type": "categorical", + "is_target": false + }, + { + "feature_name": "doors", + "data_type": "categorical", + "is_target": false + }, + { + "feature_name": "persons", + "data_type": "categorical", + "is_target": false + }, + { + "feature_name": "lug_boot", + "data_type": "categorical", + "is_target": false + }, + { + "feature_name": "safety", + "data_type": "categorical", + "is_target": false + }, + { + "feature_name": "class", + "data_type": "categorical", + "is_target": true + } +] \ No newline at end of file diff --git a/hyperparameter/c2/realtabformer/rtf-c2-20260505_021046/staged/public/test.csv b/hyperparameter/c2/realtabformer/rtf-c2-20260505_021046/staged/public/test.csv new file mode 100644 index 0000000000000000000000000000000000000000..392a0d7189a34d8f13ecf20a99d64b03230d517c --- /dev/null +++ b/hyperparameter/c2/realtabformer/rtf-c2-20260505_021046/staged/public/test.csv @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:b48114a7d0bc5bd9a07920f903c8d4aba8bf98bf2a66a050da03588b0245ca73 +size 5273 diff --git a/hyperparameter/c2/realtabformer/rtf-c2-20260505_021046/staged/public/train.csv b/hyperparameter/c2/realtabformer/rtf-c2-20260505_021046/staged/public/train.csv new file mode 100644 index 0000000000000000000000000000000000000000..da4f4d55134eebc0e51157d0d467536371db1484 --- /dev/null +++ b/hyperparameter/c2/realtabformer/rtf-c2-20260505_021046/staged/public/train.csv @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:4aed00c2c2b3f88a55a7ebff31b2e1b5e0e32fb0a7267e0b9d2779cd23e434dd +size 41565 diff --git a/hyperparameter/c2/realtabformer/rtf-c2-20260505_021046/staged/public/val.csv b/hyperparameter/c2/realtabformer/rtf-c2-20260505_021046/staged/public/val.csv new file mode 100644 index 0000000000000000000000000000000000000000..af8caf7ee42524188534a3daf32996dc491952d9 --- /dev/null +++ b/hyperparameter/c2/realtabformer/rtf-c2-20260505_021046/staged/public/val.csv @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:26e90c1170a57a14c05832ac88027722b1f3848f9662c7c09ef7c93dcba4cc01 +size 5176 diff --git a/hyperparameter/c2/realtabformer/rtf-c2-20260505_021046/staged/realtabformer/adapter_report.json b/hyperparameter/c2/realtabformer/rtf-c2-20260505_021046/staged/realtabformer/adapter_report.json new file mode 100644 index 0000000000000000000000000000000000000000..dd1146939a7b57dd9c9b7a53e8f15a5b10a5213b --- /dev/null +++ b/hyperparameter/c2/realtabformer/rtf-c2-20260505_021046/staged/realtabformer/adapter_report.json @@ -0,0 +1,7 @@ +{ + "adapter_ready_status": "pass", + "adapter_fail_reason_code": null, + "adapter_fail_detail": null, + "adapter_transforms_applied": [], + "model_input_manifest": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/c2/realtabformer/rtf-c2-20260505_021046/staged/realtabformer/model_input_manifest.json" +} \ No newline at end of file diff --git a/hyperparameter/c2/realtabformer/rtf-c2-20260505_021046/staged/realtabformer/adapter_transforms_applied.json b/hyperparameter/c2/realtabformer/rtf-c2-20260505_021046/staged/realtabformer/adapter_transforms_applied.json new file mode 100644 index 0000000000000000000000000000000000000000..0637a088a01e8ddab3bf3fa98dbe804cbde1a0dc --- /dev/null +++ b/hyperparameter/c2/realtabformer/rtf-c2-20260505_021046/staged/realtabformer/adapter_transforms_applied.json @@ -0,0 +1 @@ +[] \ No newline at end of file diff --git a/hyperparameter/c2/realtabformer/rtf-c2-20260505_021046/staged/realtabformer/model_input_manifest.json b/hyperparameter/c2/realtabformer/rtf-c2-20260505_021046/staged/realtabformer/model_input_manifest.json new file mode 100644 index 0000000000000000000000000000000000000000..edc715f86dfa2be35edb0f13120f07330995a097 --- /dev/null +++ b/hyperparameter/c2/realtabformer/rtf-c2-20260505_021046/staged/realtabformer/model_input_manifest.json @@ -0,0 +1,151 @@ +{ + "dataset_id": "c2", + "model": "realtabformer", + "target_column": "class", + "task_type": "classification", + "column_schema": [ + { + "name": "buying", + "role": "feature", + "semantic_type": "categorical", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 4, + "unique_ratio": 0.002894, + "example_values": [ + "vhigh", + "med", + "high", + "low" + ] + } + }, + { + "name": "maint", + "role": "feature", + "semantic_type": "categorical", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 4, + "unique_ratio": 0.002894, + "example_values": [ + "vhigh", + "low", + "med", + "high" + ] + } + }, + { + "name": "doors", + "role": "feature", + "semantic_type": "categorical", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 4, + "unique_ratio": 0.002894, + "example_values": [ + "2", + "5more", + "3", + "4" + ] + } + }, + { + "name": "persons", + "role": "feature", + "semantic_type": "categorical", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 3, + "unique_ratio": 0.002171, + "example_values": [ + "2", + "4", + "more" + ] + } + }, + { + "name": "lug_boot", + "role": "feature", + "semantic_type": "categorical", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 3, + "unique_ratio": 0.002171, + "example_values": [ + "small", + "big", + "med" + ] + } + }, + { + "name": "safety", + "role": "feature", + "semantic_type": "categorical", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 3, + "unique_ratio": 0.002171, + "example_values": [ + "low", + "high", + "med" + ] + } + }, + { + "name": "class", + "role": "target", + "semantic_type": "categorical", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 4, + "unique_ratio": 0.002894, + "example_values": [ + "unacc", + "good", + "acc", + "vgood" + ] + } + } + ], + "public_manifest": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/c2/realtabformer/rtf-c2-20260505_021046/public_gate/staged_input_manifest.json", + "train_csv": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/c2/realtabformer/rtf-c2-20260505_021046/staged/public/train.csv", + "val_csv": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/c2/realtabformer/rtf-c2-20260505_021046/staged/public/val.csv", + "test_csv": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/c2/realtabformer/rtf-c2-20260505_021046/staged/public/test.csv", + "features_json": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/c2/realtabformer/rtf-c2-20260505_021046/staged/public/staged_features.json", + "public_gate_report": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/c2/realtabformer/rtf-c2-20260505_021046/public_gate/public_gate_report.json" +} \ No newline at end of file diff --git a/hyperparameter/c2/realtabformer/rtf-c2-20260505_021046/train_20260505_021046.log b/hyperparameter/c2/realtabformer/rtf-c2-20260505_021046/train_20260505_021046.log new file mode 100644 index 0000000000000000000000000000000000000000..d158107fa0164cd8dd957932979e4203c651bb75 --- /dev/null +++ b/hyperparameter/c2/realtabformer/rtf-c2-20260505_021046/train_20260505_021046.log @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:6eb7e5d88b187ce616f95f1023aab9484395af18ddc49894aaf5cdc61869fbf4 +size 27516 diff --git a/hyperparameter/c2/realtabformer/rtf-c2-20260505_021221/gen_20260505_021346.log b/hyperparameter/c2/realtabformer/rtf-c2-20260505_021221/gen_20260505_021346.log new file mode 100644 index 0000000000000000000000000000000000000000..380fc92e120e2f3eca3a06564ad4c2dd2095e0d5 --- /dev/null +++ b/hyperparameter/c2/realtabformer/rtf-c2-20260505_021221/gen_20260505_021346.log @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:14c5b52b7eabc123a76d2bb498fa1a63abb63574a0e92a03de33a825336c7547 +size 1281 diff --git a/hyperparameter/c2/realtabformer/rtf-c2-20260505_021221/input_snapshot.json b/hyperparameter/c2/realtabformer/rtf-c2-20260505_021221/input_snapshot.json new file mode 100644 index 0000000000000000000000000000000000000000..16a47f24a14783056963c7c31b54a93442c4e573 --- /dev/null +++ b/hyperparameter/c2/realtabformer/rtf-c2-20260505_021221/input_snapshot.json @@ -0,0 +1,36 @@ +{ + "dataset_id": "c2", + "model": "realtabformer", + "inputs": { + "train_csv": { + "path": "/data/jialinzhang/SynthesizePipeline-server/DatasetNew/c2/c2-train.csv", + "exists": true, + "size": 42948, + "sha256": "17bc560fa96bd00fb3b526e1e65bc91210b701d0d0a4e8bb9b4c5196cab56def" + }, + "val_csv": { + "path": "/data/jialinzhang/SynthesizePipeline-server/DatasetNew/c2/c2-val.csv", + "exists": true, + "size": 5349, + "sha256": "61e565eca62e65a7dccd9d51039a3170413379e10fc494e25870e7c4294863c9" + }, + "test_csv": { + "path": "/data/jialinzhang/SynthesizePipeline-server/DatasetNew/c2/c2-test.csv", + "exists": true, + "size": 5448, + "sha256": "cbcbb062a1faf5fa44b66c80532baa229e05b94fc42137269761e6c6d84af20a" + }, + "profile_json": { + "path": "/data/jialinzhang/SynthesizePipeline-server/DatasetNew/artifacts/data_core/tabular/c2/c2-dataset_profile.json", + "exists": true, + "size": 3240, + "sha256": "526b7163b2076c93c0bf4638438081ee8a6907065d5b608faa40d1a3dbc2a27b" + }, + "contract_json": { + "path": "/data/jialinzhang/SynthesizePipeline-server/DatasetNew/artifacts/data_core/tabular/c2/c2-dataset_contract_v1.json", + "exists": true, + "size": 3731, + "sha256": "fb595a876054c2ee9b4e10cfe83a5691588de1d25466cbb9d473c18ad3604009" + } + } +} \ No newline at end of file diff --git a/hyperparameter/c2/realtabformer/rtf-c2-20260505_021221/models_20epochs/id000017779184240947044352/rtf_config.json b/hyperparameter/c2/realtabformer/rtf-c2-20260505_021221/models_20epochs/id000017779184240947044352/rtf_config.json new file mode 100644 index 0000000000000000000000000000000000000000..bcb5f7f63b518f66d4c6f2e49a2bf0072d9c4f91 --- /dev/null +++ b/hyperparameter/c2/realtabformer/rtf-c2-20260505_021221/models_20epochs/id000017779184240947044352/rtf_config.json @@ -0,0 +1 @@ +{"model_type": "tabular", "tabular_config": {"transformers_version": "5.5.3", "architectures": ["GPT2LMHeadModel"], "output_hidden_states": false, "return_dict": true, "dtype": "float32", "chunk_size_feed_forward": 0, "is_encoder_decoder": false, "id2label": {"0": "LABEL_0", "1": "LABEL_1"}, "label2id": {"LABEL_0": 0, "LABEL_1": 1}, "problem_type": null, "vocab_size": 36, "n_positions": 1024, "n_embd": 768, "n_layer": 6, "n_head": 12, "n_inner": null, "activation_function": "gelu_new", "resid_pdrop": 0.1, "embd_pdrop": 0.1, "attn_pdrop": 0.1, "layer_norm_epsilon": 1e-05, "initializer_range": 0.02, "summary_type": "cls_index", "summary_use_proj": true, "summary_activation": null, "summary_proj_to_labels": true, "summary_first_dropout": 0.1, "scale_attn_weights": true, "use_cache": false, "bos_token_id": 5, "eos_token_id": 6, "pad_token_id": null, "scale_attn_by_inverse_layer_idx": false, "reorder_and_upcast_attn": false, "add_cross_attention": false, "tie_word_embeddings": true, "_name_or_path": "", "model_type": "gpt2", "output_attentions": false}, "checkpoints_dir": "rtf_checkpoints", "samples_save_dir": "rtf_samples", "full_save_dir": "rtf_full_save", "epochs": 20, "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": 20, "per_device_train_batch_size": 8, "per_device_eval_batch_size": 8, "gradient_accumulation_steps": 4, "remove_unused_columns": true, "logging_steps": 100, "save_steps": 100, "eval_steps": 100, "load_best_model_at_end": false, "save_total_limit": 6, "optim": "adamw_torch"}, "train_size": 1, "mask_rate": 0, "columns": ["buying", "maint", "doors", "persons", "lug_boot", "safety", "class"], "column_dtypes": {"buying": "object", "maint": "object", "doors": "object", "persons": "object", "lug_boot": "object", "safety": "object", "class": "object"}, "column_has_missing": {"buying": false, "maint": false, "doors": false, "persons": false, "lug_boot": false, "safety": false, "class": false}, "drop_na_cols": ["buying", "maint", "doors", "persons", "lug_boot", "safety", "class"], "processed_columns": ["0___CATEGORICAL___buying", "1___CATEGORICAL___maint", "2___CATEGORICAL___doors", "3___CATEGORICAL___persons", "4___CATEGORICAL___lug_boot", "5___CATEGORICAL___safety", "6___CATEGORICAL___class"], "numeric_columns": [], "datetime_columns": [], "vocab": {"id2token": {"0": "[UNK]", "1": "[SEP]", "2": "[PAD]", "3": "[CLS]", "4": "[MASK]", "5": "[BOS]", "6": "[EOS]", "7": "[BMEM]", "8": "[EMEM]", "9": "[RMASK]", "10": "[SPTYPE]", "11": "0___CATEGORICAL___buying___high", "12": "0___CATEGORICAL___buying___low", "13": "0___CATEGORICAL___buying___med", "14": "0___CATEGORICAL___buying___vhigh", "15": "1___CATEGORICAL___maint___high", "16": "1___CATEGORICAL___maint___low", "17": "1___CATEGORICAL___maint___med", "18": "1___CATEGORICAL___maint___vhigh", "19": "2___CATEGORICAL___doors___2", "20": "2___CATEGORICAL___doors___3", "21": "2___CATEGORICAL___doors___4", "22": "2___CATEGORICAL___doors___5more", "23": "3___CATEGORICAL___persons___2", "24": "3___CATEGORICAL___persons___4", "25": "3___CATEGORICAL___persons___more", "26": "4___CATEGORICAL___lug_boot___big", "27": "4___CATEGORICAL___lug_boot___med", "28": "4___CATEGORICAL___lug_boot___small", "29": "5___CATEGORICAL___safety___high", "30": "5___CATEGORICAL___safety___low", "31": "5___CATEGORICAL___safety___med", "32": "6___CATEGORICAL___class___acc", "33": "6___CATEGORICAL___class___good", "34": "6___CATEGORICAL___class___unacc", "35": "6___CATEGORICAL___class___vgood"}, "token2id": {"[UNK]": 0, "[SEP]": 1, "[PAD]": 2, "[CLS]": 3, "[MASK]": 4, "[BOS]": 5, "[EOS]": 6, "[BMEM]": 7, "[EMEM]": 8, "[RMASK]": 9, "[SPTYPE]": 10, "0___CATEGORICAL___buying___high": 11, "0___CATEGORICAL___buying___low": 12, "0___CATEGORICAL___buying___med": 13, "0___CATEGORICAL___buying___vhigh": 14, "1___CATEGORICAL___maint___high": 15, "1___CATEGORICAL___maint___low": 16, "1___CATEGORICAL___maint___med": 17, "1___CATEGORICAL___maint___vhigh": 18, "2___CATEGORICAL___doors___2": 19, "2___CATEGORICAL___doors___3": 20, "2___CATEGORICAL___doors___4": 21, "2___CATEGORICAL___doors___5more": 22, "3___CATEGORICAL___persons___2": 23, "3___CATEGORICAL___persons___4": 24, "3___CATEGORICAL___persons___more": 25, "4___CATEGORICAL___lug_boot___big": 26, "4___CATEGORICAL___lug_boot___med": 27, "4___CATEGORICAL___lug_boot___small": 28, "5___CATEGORICAL___safety___high": 29, "5___CATEGORICAL___safety___low": 30, "5___CATEGORICAL___safety___med": 31, "6___CATEGORICAL___class___acc": 32, "6___CATEGORICAL___class___good": 33, "6___CATEGORICAL___class___unacc": 34, "6___CATEGORICAL___class___vgood": 35}, "column_token_ids": {"0___CATEGORICAL___buying": [11, 12, 13, 14], "1___CATEGORICAL___maint": [15, 16, 17, 18], "2___CATEGORICAL___doors": [19, 20, 21, 22], "3___CATEGORICAL___persons": [23, 24, 25], "4___CATEGORICAL___lug_boot": [26, 27, 28], "5___CATEGORICAL___safety": [29, 30, 31], "6___CATEGORICAL___class": [32, 33, 34, 35]}}, "tabular_max_length": 9, "relational_max_length": null, "tabular_col_size": 1382, "relational_col_size": null, "col_transform_data": {}, "in_col_transform_data": null, "col_idx_ids": {"0": [11, 12, 13, 14], "1": [15, 16, 17, 18], "2": [19, 20, 21, 22], "3": [23, 24, 25], "4": [26, 27, 28], "5": [29, 30, 31], "6": [32, 33, 34, 35]}, "random_state": 1029, "numeric_nparts": 1, "numeric_precision": 4, "numeric_max_len": 10, "experiment_id": "id000017779184240947044352", "trainer_state": null, "target_col": null, "realtabformer_version": "0.2.4"} \ No newline at end of file diff --git a/hyperparameter/c2/realtabformer/rtf-c2-20260505_021221/models_20epochs/id000017779184240947044352/rtf_model.pt b/hyperparameter/c2/realtabformer/rtf-c2-20260505_021221/models_20epochs/id000017779184240947044352/rtf_model.pt new file mode 100644 index 0000000000000000000000000000000000000000..81a35bbc45ab327e550a2eca38e4fc356564f1ac --- /dev/null +++ b/hyperparameter/c2/realtabformer/rtf-c2-20260505_021221/models_20epochs/id000017779184240947044352/rtf_model.pt @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:de00e38cd7f5615245518127cecae8767c8e78269f7fdd275953d5bc10dc45ee +size 173400547 diff --git a/hyperparameter/c2/realtabformer/rtf-c2-20260505_021221/public_gate/normalized_schema_snapshot.json b/hyperparameter/c2/realtabformer/rtf-c2-20260505_021221/public_gate/normalized_schema_snapshot.json new file mode 100644 index 0000000000000000000000000000000000000000..689b1d00d96508e44ba40e58dc4560e19afc2b3b --- /dev/null +++ b/hyperparameter/c2/realtabformer/rtf-c2-20260505_021221/public_gate/normalized_schema_snapshot.json @@ -0,0 +1,144 @@ +{ + "dataset_id": "c2", + "target_column": "class", + "task_type": "classification", + "columns": [ + { + "name": "buying", + "role": "feature", + "semantic_type": "categorical", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 4, + "unique_ratio": 0.002894, + "example_values": [ + "vhigh", + "med", + "high", + "low" + ] + } + }, + { + "name": "maint", + "role": "feature", + "semantic_type": "categorical", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 4, + "unique_ratio": 0.002894, + "example_values": [ + "vhigh", + "low", + "med", + "high" + ] + } + }, + { + "name": "doors", + "role": "feature", + "semantic_type": "categorical", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 4, + "unique_ratio": 0.002894, + "example_values": [ + "2", + "5more", + "3", + "4" + ] + } + }, + { + "name": "persons", + "role": "feature", + "semantic_type": "categorical", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 3, + "unique_ratio": 0.002171, + "example_values": [ + "2", + "4", + "more" + ] + } + }, + { + "name": "lug_boot", + "role": "feature", + "semantic_type": "categorical", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 3, + "unique_ratio": 0.002171, + "example_values": [ + "small", + "big", + "med" + ] + } + }, + { + "name": "safety", + "role": "feature", + "semantic_type": "categorical", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 3, + "unique_ratio": 0.002171, + "example_values": [ + "low", + "high", + "med" + ] + } + }, + { + "name": "class", + "role": "target", + "semantic_type": "categorical", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 4, + "unique_ratio": 0.002894, + "example_values": [ + "unacc", + "good", + "acc", + "vgood" + ] + } + } + ] +} \ No newline at end of file diff --git a/hyperparameter/c2/realtabformer/rtf-c2-20260505_021221/public_gate/public_gate_report.json b/hyperparameter/c2/realtabformer/rtf-c2-20260505_021221/public_gate/public_gate_report.json new file mode 100644 index 0000000000000000000000000000000000000000..2e4cdcb2a4e28e40d59b17a83e773f622b7636a5 --- /dev/null +++ b/hyperparameter/c2/realtabformer/rtf-c2-20260505_021221/public_gate/public_gate_report.json @@ -0,0 +1,37 @@ +{ + "dataset_id": "c2", + "status": "pass", + "checks": [ + { + "check_id": "PG001_csv_parse_ok", + "status": "pass" + }, + { + "check_id": "PG002_split_header_consistent", + "status": "pass" + }, + { + "check_id": "PG003_profile_header_match", + "status": "pass" + }, + { + "check_id": "PG004_missing_token_normalized", + "status": "pass" + }, + { + "check_id": "PG005_semantic_type_validated", + "status": "pass" + }, + { + "check_id": "PG006_target_defined_and_valid", + "status": "pass" + } + ], + "target_column": "class", + "task_type": "classification", + "input_splits": { + "train": "/data/jialinzhang/SynthesizePipeline-server/DatasetNew/c2/c2-train.csv", + "val": "/data/jialinzhang/SynthesizePipeline-server/DatasetNew/c2/c2-val.csv", + "test": "/data/jialinzhang/SynthesizePipeline-server/DatasetNew/c2/c2-test.csv" + } +} \ No newline at end of file diff --git a/hyperparameter/c2/realtabformer/rtf-c2-20260505_021221/public_gate/staged_input_manifest.json b/hyperparameter/c2/realtabformer/rtf-c2-20260505_021221/public_gate/staged_input_manifest.json new file mode 100644 index 0000000000000000000000000000000000000000..a046ef1721394743d214ebf102d1fb701130f061 --- /dev/null +++ b/hyperparameter/c2/realtabformer/rtf-c2-20260505_021221/public_gate/staged_input_manifest.json @@ -0,0 +1,149 @@ +{ + "dataset_id": "c2", + "target_column": "class", + "task_type": "classification", + "train_csv": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/c2/realtabformer/rtf-c2-20260505_021221/staged/public/train.csv", + "val_csv": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/c2/realtabformer/rtf-c2-20260505_021221/staged/public/val.csv", + "test_csv": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/c2/realtabformer/rtf-c2-20260505_021221/staged/public/test.csv", + "features_json": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/c2/realtabformer/rtf-c2-20260505_021221/staged/public/staged_features.json", + "public_gate_report": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/c2/realtabformer/rtf-c2-20260505_021221/public_gate/public_gate_report.json", + "column_schema": [ + { + "name": "buying", + "role": "feature", + "semantic_type": "categorical", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 4, + "unique_ratio": 0.002894, + "example_values": [ + "vhigh", + "med", + "high", + "low" + ] + } + }, + { + "name": "maint", + "role": "feature", + "semantic_type": "categorical", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 4, + "unique_ratio": 0.002894, + "example_values": [ + "vhigh", + "low", + "med", + "high" + ] + } + }, + { + "name": "doors", + "role": "feature", + "semantic_type": "categorical", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 4, + "unique_ratio": 0.002894, + "example_values": [ + "2", + "5more", + "3", + "4" + ] + } + }, + { + "name": "persons", + "role": "feature", + "semantic_type": "categorical", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 3, + "unique_ratio": 0.002171, + "example_values": [ + "2", + "4", + "more" + ] + } + }, + { + "name": "lug_boot", + "role": "feature", + "semantic_type": "categorical", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 3, + "unique_ratio": 0.002171, + "example_values": [ + "small", + "big", + "med" + ] + } + }, + { + "name": "safety", + "role": "feature", + "semantic_type": "categorical", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 3, + "unique_ratio": 0.002171, + "example_values": [ + "low", + "high", + "med" + ] + } + }, + { + "name": "class", + "role": "target", + "semantic_type": "categorical", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 4, + "unique_ratio": 0.002894, + "example_values": [ + "unacc", + "good", + "acc", + "vgood" + ] + } + } + ] +} \ No newline at end of file diff --git a/hyperparameter/c2/realtabformer/rtf-c2-20260505_021221/realtabformer_features.json b/hyperparameter/c2/realtabformer/rtf-c2-20260505_021221/realtabformer_features.json new file mode 100644 index 0000000000000000000000000000000000000000..61783861dd5de501592f76acb0469cf3f3b2622a --- /dev/null +++ b/hyperparameter/c2/realtabformer/rtf-c2-20260505_021221/realtabformer_features.json @@ -0,0 +1,37 @@ +[ + { + "feature_name": "buying", + "data_type": "categorical", + "is_target": false + }, + { + "feature_name": "maint", + "data_type": "categorical", + "is_target": false + }, + { + "feature_name": "doors", + "data_type": "categorical", + "is_target": false + }, + { + "feature_name": "persons", + "data_type": "categorical", + "is_target": false + }, + { + "feature_name": "lug_boot", + "data_type": "categorical", + "is_target": false + }, + { + "feature_name": "safety", + "data_type": "categorical", + "is_target": false + }, + { + "feature_name": "class", + "data_type": "categorical", + "is_target": true + } +] \ No newline at end of file diff --git a/hyperparameter/c2/realtabformer/rtf-c2-20260505_021221/rtf-c2-1382-20260505_021346.csv b/hyperparameter/c2/realtabformer/rtf-c2-20260505_021221/rtf-c2-1382-20260505_021346.csv new file mode 100644 index 0000000000000000000000000000000000000000..3f618895db609537b30b0d2745b9ba61ef5a5fec --- /dev/null +++ b/hyperparameter/c2/realtabformer/rtf-c2-20260505_021221/rtf-c2-1382-20260505_021346.csv @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:7b70202e7af43bfc50b00d6321d76e8d64a863e1f258cba63b1398743598dd50 +size 41410 diff --git a/hyperparameter/c2/realtabformer/rtf-c2-20260505_021221/rtf_checkpoints/checkpoint-704/config.json b/hyperparameter/c2/realtabformer/rtf-c2-20260505_021221/rtf_checkpoints/checkpoint-704/config.json new file mode 100644 index 0000000000000000000000000000000000000000..abc7bb2762d6bff3016eb042e7a2ac4abb80ea85 --- /dev/null +++ b/hyperparameter/c2/realtabformer/rtf-c2-20260505_021221/rtf_checkpoints/checkpoint-704/config.json @@ -0,0 +1,34 @@ +{ + "activation_function": "gelu_new", + "add_cross_attention": false, + "architectures": [ + "GPT2LMHeadModel" + ], + "attn_pdrop": 0.1, + "bos_token_id": 5, + "dtype": "float32", + "embd_pdrop": 0.1, + "eos_token_id": 6, + "initializer_range": 0.02, + "layer_norm_epsilon": 1e-05, + "model_type": "gpt2", + "n_embd": 768, + "n_head": 12, + "n_inner": null, + "n_layer": 6, + "n_positions": 1024, + "pad_token_id": null, + "reorder_and_upcast_attn": false, + "resid_pdrop": 0.1, + "scale_attn_by_inverse_layer_idx": false, + "scale_attn_weights": true, + "summary_activation": null, + "summary_first_dropout": 0.1, + "summary_proj_to_labels": true, + "summary_type": "cls_index", + "summary_use_proj": true, + "tie_word_embeddings": true, + "transformers_version": "5.5.3", + "use_cache": false, + "vocab_size": 36 +} diff --git a/hyperparameter/c2/realtabformer/rtf-c2-20260505_021221/rtf_checkpoints/checkpoint-704/generation_config.json b/hyperparameter/c2/realtabformer/rtf-c2-20260505_021221/rtf_checkpoints/checkpoint-704/generation_config.json new file mode 100644 index 0000000000000000000000000000000000000000..ffe89567780e75b5c22eade9be971483b9618f39 --- /dev/null +++ b/hyperparameter/c2/realtabformer/rtf-c2-20260505_021221/rtf_checkpoints/checkpoint-704/generation_config.json @@ -0,0 +1,9 @@ +{ + "_from_model_config": true, + "bos_token_id": 5, + "eos_token_id": 6, + "output_attentions": false, + "output_hidden_states": false, + "transformers_version": "5.5.3", + "use_cache": true +} diff --git a/hyperparameter/c2/realtabformer/rtf-c2-20260505_021221/rtf_checkpoints/checkpoint-704/model.safetensors b/hyperparameter/c2/realtabformer/rtf-c2-20260505_021221/rtf_checkpoints/checkpoint-704/model.safetensors new file mode 100644 index 0000000000000000000000000000000000000000..5587a370becfddc90696bd27d9ed148990cd656b --- /dev/null +++ b/hyperparameter/c2/realtabformer/rtf-c2-20260505_021221/rtf_checkpoints/checkpoint-704/model.safetensors @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:94b077d14c07cf80abdce5883a44b3cdaad60de501fd533c7bf3aec66d5bd726 +size 173379016 diff --git a/hyperparameter/c2/realtabformer/rtf-c2-20260505_021221/rtf_checkpoints/checkpoint-704/optimizer.pt b/hyperparameter/c2/realtabformer/rtf-c2-20260505_021221/rtf_checkpoints/checkpoint-704/optimizer.pt new file mode 100644 index 0000000000000000000000000000000000000000..99679d1314cbe25596d198d4fa35bb39a7c1c855 --- /dev/null +++ b/hyperparameter/c2/realtabformer/rtf-c2-20260505_021221/rtf_checkpoints/checkpoint-704/optimizer.pt @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:8db1c7ae3f80736d39aa05f0c863bc20d507a802d8cee32132bfd882e61e6d65 +size 346807051 diff --git a/hyperparameter/c2/realtabformer/rtf-c2-20260505_021221/rtf_checkpoints/checkpoint-704/rng_state.pth b/hyperparameter/c2/realtabformer/rtf-c2-20260505_021221/rtf_checkpoints/checkpoint-704/rng_state.pth new file mode 100644 index 0000000000000000000000000000000000000000..165f24575a7ecd2e46c70c4c59538d7990bdda9c --- /dev/null +++ b/hyperparameter/c2/realtabformer/rtf-c2-20260505_021221/rtf_checkpoints/checkpoint-704/rng_state.pth @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:1f1283d5c639cc11fa7339f4bc4bc391dc4a67de01dd5ba7e1a55dbd6d660a08 +size 14645 diff --git a/hyperparameter/c2/realtabformer/rtf-c2-20260505_021221/rtf_checkpoints/checkpoint-704/scaler.pt b/hyperparameter/c2/realtabformer/rtf-c2-20260505_021221/rtf_checkpoints/checkpoint-704/scaler.pt new file mode 100644 index 0000000000000000000000000000000000000000..808fb6d5b696245a9c4bf5e84aa39bf81d175065 --- /dev/null +++ b/hyperparameter/c2/realtabformer/rtf-c2-20260505_021221/rtf_checkpoints/checkpoint-704/scaler.pt @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:8e26f69a9bf32c629d2cd6882d668fa439b33c662ec7dea3f26609492030fdf8 +size 1383 diff --git a/hyperparameter/c2/realtabformer/rtf-c2-20260505_021221/rtf_checkpoints/checkpoint-704/scheduler.pt b/hyperparameter/c2/realtabformer/rtf-c2-20260505_021221/rtf_checkpoints/checkpoint-704/scheduler.pt new file mode 100644 index 0000000000000000000000000000000000000000..f51bc8205a0322efa19d76c99ba49563632fd5a1 --- /dev/null +++ b/hyperparameter/c2/realtabformer/rtf-c2-20260505_021221/rtf_checkpoints/checkpoint-704/scheduler.pt @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:1db42ba0932eb3d4257905560ef26a45e9f010afbd408a399c204a3c49267560 +size 1465 diff --git a/hyperparameter/c2/realtabformer/rtf-c2-20260505_021221/rtf_checkpoints/checkpoint-704/trainer_state.json b/hyperparameter/c2/realtabformer/rtf-c2-20260505_021221/rtf_checkpoints/checkpoint-704/trainer_state.json new file mode 100644 index 0000000000000000000000000000000000000000..588e2401a29411362306642ac85e214d3fea8584 --- /dev/null +++ b/hyperparameter/c2/realtabformer/rtf-c2-20260505_021221/rtf_checkpoints/checkpoint-704/trainer_state.json @@ -0,0 +1,83 @@ +{ + "best_global_step": null, + "best_metric": null, + "best_model_checkpoint": null, + "epoch": 16.0, + "eval_steps": 100, + "global_step": 704, + "is_hyper_param_search": false, + "is_local_process_zero": true, + "is_world_process_zero": true, + "log_history": [ + { + "epoch": 2.277456647398844, + "grad_norm": 0.45762479305267334, + "learning_rate": 4.4375e-05, + "loss": 1.05536865234375, + "step": 100 + }, + { + "epoch": 4.554913294797688, + "grad_norm": 0.43268483877182007, + "learning_rate": 3.869318181818182e-05, + "loss": 0.8825263214111329, + "step": 200 + }, + { + "epoch": 6.832369942196532, + "grad_norm": 0.5957285761833191, + "learning_rate": 3.301136363636364e-05, + "loss": 0.8704322052001953, + "step": 300 + }, + { + "epoch": 9.092485549132949, + "grad_norm": 0.34185323119163513, + "learning_rate": 2.732954545454546e-05, + "loss": 0.8600010681152344, + "step": 400 + }, + { + "epoch": 11.369942196531792, + "grad_norm": 0.3294121026992798, + "learning_rate": 2.1647727272727275e-05, + "loss": 0.8526724243164062, + "step": 500 + }, + { + "epoch": 13.647398843930636, + "grad_norm": 0.3839419484138489, + "learning_rate": 1.5965909090909092e-05, + "loss": 0.8503554534912109, + "step": 600 + }, + { + "epoch": 15.92485549132948, + "grad_norm": 0.3654730021953583, + "learning_rate": 1.028409090909091e-05, + "loss": 0.8457917022705078, + "step": 700 + } + ], + "logging_steps": 100, + "max_steps": 880, + "num_input_tokens_seen": 0, + "num_train_epochs": 20, + "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": 50781390372864.0, + "train_batch_size": 8, + "trial_name": null, + "trial_params": null +} diff --git a/hyperparameter/c2/realtabformer/rtf-c2-20260505_021221/rtf_checkpoints/checkpoint-704/training_args.bin b/hyperparameter/c2/realtabformer/rtf-c2-20260505_021221/rtf_checkpoints/checkpoint-704/training_args.bin new file mode 100644 index 0000000000000000000000000000000000000000..0443202bbc5de94f0d0d09164bf2ca8102a8869f --- /dev/null +++ b/hyperparameter/c2/realtabformer/rtf-c2-20260505_021221/rtf_checkpoints/checkpoint-704/training_args.bin @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:86d01f2501df27a7bb9ffc25201c399525fb2c1bd2149d56f439c7a738a4ac32 +size 5201 diff --git a/hyperparameter/c2/realtabformer/rtf-c2-20260505_021221/rtf_checkpoints/checkpoint-748/config.json b/hyperparameter/c2/realtabformer/rtf-c2-20260505_021221/rtf_checkpoints/checkpoint-748/config.json new file mode 100644 index 0000000000000000000000000000000000000000..abc7bb2762d6bff3016eb042e7a2ac4abb80ea85 --- /dev/null +++ b/hyperparameter/c2/realtabformer/rtf-c2-20260505_021221/rtf_checkpoints/checkpoint-748/config.json @@ -0,0 +1,34 @@ +{ + "activation_function": "gelu_new", + "add_cross_attention": false, + "architectures": [ + "GPT2LMHeadModel" + ], + "attn_pdrop": 0.1, + "bos_token_id": 5, + "dtype": "float32", + "embd_pdrop": 0.1, + "eos_token_id": 6, + "initializer_range": 0.02, + "layer_norm_epsilon": 1e-05, + "model_type": "gpt2", + "n_embd": 768, + "n_head": 12, + "n_inner": null, + "n_layer": 6, + "n_positions": 1024, + "pad_token_id": null, + "reorder_and_upcast_attn": false, + "resid_pdrop": 0.1, + "scale_attn_by_inverse_layer_idx": false, + "scale_attn_weights": true, + "summary_activation": null, + "summary_first_dropout": 0.1, + "summary_proj_to_labels": true, + "summary_type": "cls_index", + "summary_use_proj": true, + "tie_word_embeddings": true, + "transformers_version": "5.5.3", + "use_cache": false, + "vocab_size": 36 +} diff --git a/hyperparameter/c2/realtabformer/rtf-c2-20260505_021221/rtf_checkpoints/checkpoint-748/generation_config.json b/hyperparameter/c2/realtabformer/rtf-c2-20260505_021221/rtf_checkpoints/checkpoint-748/generation_config.json new file mode 100644 index 0000000000000000000000000000000000000000..ffe89567780e75b5c22eade9be971483b9618f39 --- /dev/null +++ b/hyperparameter/c2/realtabformer/rtf-c2-20260505_021221/rtf_checkpoints/checkpoint-748/generation_config.json @@ -0,0 +1,9 @@ +{ + "_from_model_config": true, + "bos_token_id": 5, + "eos_token_id": 6, + "output_attentions": false, + "output_hidden_states": false, + "transformers_version": "5.5.3", + "use_cache": true +} diff --git a/hyperparameter/c2/realtabformer/rtf-c2-20260505_021221/rtf_checkpoints/checkpoint-748/model.safetensors b/hyperparameter/c2/realtabformer/rtf-c2-20260505_021221/rtf_checkpoints/checkpoint-748/model.safetensors new file mode 100644 index 0000000000000000000000000000000000000000..43d7c06e99101b70786ea0563f95671ee1d6bba5 --- /dev/null +++ b/hyperparameter/c2/realtabformer/rtf-c2-20260505_021221/rtf_checkpoints/checkpoint-748/model.safetensors @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:f1ad5a2060d1fc14d61069275f93416afccf3ac04ff6f9e0da219b31a6dd31fb +size 173379016 diff --git a/hyperparameter/c2/realtabformer/rtf-c2-20260505_021221/rtf_checkpoints/checkpoint-748/optimizer.pt b/hyperparameter/c2/realtabformer/rtf-c2-20260505_021221/rtf_checkpoints/checkpoint-748/optimizer.pt new file mode 100644 index 0000000000000000000000000000000000000000..57f2117e408ec24fa722cdde1e60ca042b7d1041 --- /dev/null +++ b/hyperparameter/c2/realtabformer/rtf-c2-20260505_021221/rtf_checkpoints/checkpoint-748/optimizer.pt @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:b5accaecafc999241e6cc98f6d74a6b62bb2247761ae039de82cbb4160f1789f +size 346807051 diff --git a/hyperparameter/c2/realtabformer/rtf-c2-20260505_021221/rtf_checkpoints/checkpoint-748/rng_state.pth b/hyperparameter/c2/realtabformer/rtf-c2-20260505_021221/rtf_checkpoints/checkpoint-748/rng_state.pth new file mode 100644 index 0000000000000000000000000000000000000000..c13b3ed0c81a5729fa5062deb5cb9e413148a7ef --- /dev/null +++ b/hyperparameter/c2/realtabformer/rtf-c2-20260505_021221/rtf_checkpoints/checkpoint-748/rng_state.pth @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:97c4f218735eff0a580951c9a414c339cbdee85a6552c09f1026ad8f882e1850 +size 14645 diff --git a/hyperparameter/c2/realtabformer/rtf-c2-20260505_021221/rtf_checkpoints/checkpoint-748/scaler.pt b/hyperparameter/c2/realtabformer/rtf-c2-20260505_021221/rtf_checkpoints/checkpoint-748/scaler.pt new file mode 100644 index 0000000000000000000000000000000000000000..de223459d69b3fcd7a3c87cf82f8206f23a56e75 --- /dev/null +++ b/hyperparameter/c2/realtabformer/rtf-c2-20260505_021221/rtf_checkpoints/checkpoint-748/scaler.pt @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:dab673018aafc81e1fc9ec5f0e87fc8eb3661eb21887cf7ff9725b6ad81a01b2 +size 1383 diff --git a/hyperparameter/c2/realtabformer/rtf-c2-20260505_021221/rtf_checkpoints/checkpoint-748/scheduler.pt b/hyperparameter/c2/realtabformer/rtf-c2-20260505_021221/rtf_checkpoints/checkpoint-748/scheduler.pt new file mode 100644 index 0000000000000000000000000000000000000000..ca851cde9b1d3ab7b3c9cc572611372b431e50cf --- /dev/null +++ b/hyperparameter/c2/realtabformer/rtf-c2-20260505_021221/rtf_checkpoints/checkpoint-748/scheduler.pt @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:4478b0005b42b01a081ad94b3c1eb7b4dd25486adda8e59317f50d58e28288c6 +size 1465 diff --git a/hyperparameter/c2/realtabformer/rtf-c2-20260505_021221/rtf_checkpoints/checkpoint-748/trainer_state.json b/hyperparameter/c2/realtabformer/rtf-c2-20260505_021221/rtf_checkpoints/checkpoint-748/trainer_state.json new file mode 100644 index 0000000000000000000000000000000000000000..85a320f6a91ff2765d683cac985b267437a241ed --- /dev/null +++ b/hyperparameter/c2/realtabformer/rtf-c2-20260505_021221/rtf_checkpoints/checkpoint-748/trainer_state.json @@ -0,0 +1,83 @@ +{ + "best_global_step": null, + "best_metric": null, + "best_model_checkpoint": null, + "epoch": 17.0, + "eval_steps": 100, + "global_step": 748, + "is_hyper_param_search": false, + "is_local_process_zero": true, + "is_world_process_zero": true, + "log_history": [ + { + "epoch": 2.277456647398844, + "grad_norm": 0.45762479305267334, + "learning_rate": 4.4375e-05, + "loss": 1.05536865234375, + "step": 100 + }, + { + "epoch": 4.554913294797688, + "grad_norm": 0.43268483877182007, + "learning_rate": 3.869318181818182e-05, + "loss": 0.8825263214111329, + "step": 200 + }, + { + "epoch": 6.832369942196532, + "grad_norm": 0.5957285761833191, + "learning_rate": 3.301136363636364e-05, + "loss": 0.8704322052001953, + "step": 300 + }, + { + "epoch": 9.092485549132949, + "grad_norm": 0.34185323119163513, + "learning_rate": 2.732954545454546e-05, + "loss": 0.8600010681152344, + "step": 400 + }, + { + "epoch": 11.369942196531792, + "grad_norm": 0.3294121026992798, + "learning_rate": 2.1647727272727275e-05, + "loss": 0.8526724243164062, + "step": 500 + }, + { + "epoch": 13.647398843930636, + "grad_norm": 0.3839419484138489, + "learning_rate": 1.5965909090909092e-05, + "loss": 0.8503554534912109, + "step": 600 + }, + { + "epoch": 15.92485549132948, + "grad_norm": 0.3654730021953583, + "learning_rate": 1.028409090909091e-05, + "loss": 0.8457917022705078, + "step": 700 + } + ], + "logging_steps": 100, + "max_steps": 880, + "num_input_tokens_seen": 0, + "num_train_epochs": 20, + "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": 53955227271168.0, + "train_batch_size": 8, + "trial_name": null, + "trial_params": null +} diff --git a/hyperparameter/c2/realtabformer/rtf-c2-20260505_021221/rtf_checkpoints/checkpoint-748/training_args.bin b/hyperparameter/c2/realtabformer/rtf-c2-20260505_021221/rtf_checkpoints/checkpoint-748/training_args.bin new file mode 100644 index 0000000000000000000000000000000000000000..0443202bbc5de94f0d0d09164bf2ca8102a8869f --- /dev/null +++ b/hyperparameter/c2/realtabformer/rtf-c2-20260505_021221/rtf_checkpoints/checkpoint-748/training_args.bin @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:86d01f2501df27a7bb9ffc25201c399525fb2c1bd2149d56f439c7a738a4ac32 +size 5201 diff --git a/hyperparameter/c2/realtabformer/rtf-c2-20260505_021221/rtf_checkpoints/checkpoint-792/config.json b/hyperparameter/c2/realtabformer/rtf-c2-20260505_021221/rtf_checkpoints/checkpoint-792/config.json new file mode 100644 index 0000000000000000000000000000000000000000..abc7bb2762d6bff3016eb042e7a2ac4abb80ea85 --- /dev/null +++ b/hyperparameter/c2/realtabformer/rtf-c2-20260505_021221/rtf_checkpoints/checkpoint-792/config.json @@ -0,0 +1,34 @@ +{ + "activation_function": "gelu_new", + "add_cross_attention": false, + "architectures": [ + "GPT2LMHeadModel" + ], + "attn_pdrop": 0.1, + "bos_token_id": 5, + "dtype": "float32", + "embd_pdrop": 0.1, + "eos_token_id": 6, + "initializer_range": 0.02, + "layer_norm_epsilon": 1e-05, + "model_type": "gpt2", + "n_embd": 768, + "n_head": 12, + "n_inner": null, + "n_layer": 6, + "n_positions": 1024, + "pad_token_id": null, + "reorder_and_upcast_attn": false, + "resid_pdrop": 0.1, + "scale_attn_by_inverse_layer_idx": false, + "scale_attn_weights": true, + "summary_activation": null, + "summary_first_dropout": 0.1, + "summary_proj_to_labels": true, + "summary_type": "cls_index", + "summary_use_proj": true, + "tie_word_embeddings": true, + "transformers_version": "5.5.3", + "use_cache": false, + "vocab_size": 36 +} diff --git a/hyperparameter/c2/realtabformer/rtf-c2-20260505_021221/rtf_checkpoints/checkpoint-792/generation_config.json b/hyperparameter/c2/realtabformer/rtf-c2-20260505_021221/rtf_checkpoints/checkpoint-792/generation_config.json new file mode 100644 index 0000000000000000000000000000000000000000..ffe89567780e75b5c22eade9be971483b9618f39 --- /dev/null +++ b/hyperparameter/c2/realtabformer/rtf-c2-20260505_021221/rtf_checkpoints/checkpoint-792/generation_config.json @@ -0,0 +1,9 @@ +{ + "_from_model_config": true, + "bos_token_id": 5, + "eos_token_id": 6, + "output_attentions": false, + "output_hidden_states": false, + "transformers_version": "5.5.3", + "use_cache": true +} diff --git a/hyperparameter/c2/realtabformer/rtf-c2-20260505_021221/rtf_checkpoints/checkpoint-792/model.safetensors b/hyperparameter/c2/realtabformer/rtf-c2-20260505_021221/rtf_checkpoints/checkpoint-792/model.safetensors new file mode 100644 index 0000000000000000000000000000000000000000..34780fb23bac1fdde0ca086fcc7a737dcb28414e --- /dev/null +++ b/hyperparameter/c2/realtabformer/rtf-c2-20260505_021221/rtf_checkpoints/checkpoint-792/model.safetensors @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:d3dcc67c0fc4ca5ea310a49c8c04e5eda8dc51e63b06a087c2e19cb0b70a621a +size 173379016 diff --git a/hyperparameter/c2/realtabformer/rtf-c2-20260505_021221/rtf_checkpoints/checkpoint-792/optimizer.pt b/hyperparameter/c2/realtabformer/rtf-c2-20260505_021221/rtf_checkpoints/checkpoint-792/optimizer.pt new file mode 100644 index 0000000000000000000000000000000000000000..770c586aa9fb4a8460f1494fda7b2314d5e2fdef --- /dev/null +++ b/hyperparameter/c2/realtabformer/rtf-c2-20260505_021221/rtf_checkpoints/checkpoint-792/optimizer.pt @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:5d74246c10343d304c957b410fe4afa87e4452c33c272dd9b61a42f63a63cd10 +size 346807051 diff --git a/hyperparameter/c2/realtabformer/rtf-c2-20260505_021221/rtf_checkpoints/checkpoint-792/rng_state.pth b/hyperparameter/c2/realtabformer/rtf-c2-20260505_021221/rtf_checkpoints/checkpoint-792/rng_state.pth new file mode 100644 index 0000000000000000000000000000000000000000..71871788ff1b7fcbfe4ed07a92299cb70ceb1239 --- /dev/null +++ b/hyperparameter/c2/realtabformer/rtf-c2-20260505_021221/rtf_checkpoints/checkpoint-792/rng_state.pth @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:4381bf7fc16bfb3257b956ce81abb8d41e3a320161566817d0b371522b7cfcb6 +size 14645 diff --git a/hyperparameter/c2/realtabformer/rtf-c2-20260505_021221/rtf_checkpoints/checkpoint-792/scaler.pt b/hyperparameter/c2/realtabformer/rtf-c2-20260505_021221/rtf_checkpoints/checkpoint-792/scaler.pt new file mode 100644 index 0000000000000000000000000000000000000000..a2327b7639a309a9cfd9f5ef1d4750cf12bd2424 --- /dev/null +++ b/hyperparameter/c2/realtabformer/rtf-c2-20260505_021221/rtf_checkpoints/checkpoint-792/scaler.pt @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:1832e20396cb97ebd569a2aa3f67ebcffe70c136c9624ac5e6846617c34a0690 +size 1383 diff --git a/hyperparameter/c2/realtabformer/rtf-c2-20260505_021221/rtf_checkpoints/checkpoint-792/scheduler.pt b/hyperparameter/c2/realtabformer/rtf-c2-20260505_021221/rtf_checkpoints/checkpoint-792/scheduler.pt new file mode 100644 index 0000000000000000000000000000000000000000..1c72ce589adb3b21c52120d314a93d72867a0c14 --- /dev/null +++ b/hyperparameter/c2/realtabformer/rtf-c2-20260505_021221/rtf_checkpoints/checkpoint-792/scheduler.pt @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:c20d6b9bcd8e0a85e667d3ff4cd7d6d08fc823b29f9ccd26aa652c3c1876ac5c +size 1465 diff --git a/hyperparameter/c2/realtabformer/rtf-c2-20260505_021221/rtf_checkpoints/checkpoint-792/trainer_state.json b/hyperparameter/c2/realtabformer/rtf-c2-20260505_021221/rtf_checkpoints/checkpoint-792/trainer_state.json new file mode 100644 index 0000000000000000000000000000000000000000..93588c1e19f9e7abbbc64529887371a04b9d84a9 --- /dev/null +++ b/hyperparameter/c2/realtabformer/rtf-c2-20260505_021221/rtf_checkpoints/checkpoint-792/trainer_state.json @@ -0,0 +1,83 @@ +{ + "best_global_step": null, + "best_metric": null, + "best_model_checkpoint": null, + "epoch": 18.0, + "eval_steps": 100, + "global_step": 792, + "is_hyper_param_search": false, + "is_local_process_zero": true, + "is_world_process_zero": true, + "log_history": [ + { + "epoch": 2.277456647398844, + "grad_norm": 0.45762479305267334, + "learning_rate": 4.4375e-05, + "loss": 1.05536865234375, + "step": 100 + }, + { + "epoch": 4.554913294797688, + "grad_norm": 0.43268483877182007, + "learning_rate": 3.869318181818182e-05, + "loss": 0.8825263214111329, + "step": 200 + }, + { + "epoch": 6.832369942196532, + "grad_norm": 0.5957285761833191, + "learning_rate": 3.301136363636364e-05, + "loss": 0.8704322052001953, + "step": 300 + }, + { + "epoch": 9.092485549132949, + "grad_norm": 0.34185323119163513, + "learning_rate": 2.732954545454546e-05, + "loss": 0.8600010681152344, + "step": 400 + }, + { + "epoch": 11.369942196531792, + "grad_norm": 0.3294121026992798, + "learning_rate": 2.1647727272727275e-05, + "loss": 0.8526724243164062, + "step": 500 + }, + { + "epoch": 13.647398843930636, + "grad_norm": 0.3839419484138489, + "learning_rate": 1.5965909090909092e-05, + "loss": 0.8503554534912109, + "step": 600 + }, + { + "epoch": 15.92485549132948, + "grad_norm": 0.3654730021953583, + "learning_rate": 1.028409090909091e-05, + "loss": 0.8457917022705078, + "step": 700 + } + ], + "logging_steps": 100, + "max_steps": 880, + "num_input_tokens_seen": 0, + "num_train_epochs": 20, + "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": 57129064169472.0, + "train_batch_size": 8, + "trial_name": null, + "trial_params": null +} diff --git a/hyperparameter/c2/realtabformer/rtf-c2-20260505_021221/rtf_checkpoints/checkpoint-792/training_args.bin b/hyperparameter/c2/realtabformer/rtf-c2-20260505_021221/rtf_checkpoints/checkpoint-792/training_args.bin new file mode 100644 index 0000000000000000000000000000000000000000..0443202bbc5de94f0d0d09164bf2ca8102a8869f --- /dev/null +++ b/hyperparameter/c2/realtabformer/rtf-c2-20260505_021221/rtf_checkpoints/checkpoint-792/training_args.bin @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:86d01f2501df27a7bb9ffc25201c399525fb2c1bd2149d56f439c7a738a4ac32 +size 5201 diff --git a/hyperparameter/c2/realtabformer/rtf-c2-20260505_021221/rtf_checkpoints/checkpoint-800/config.json b/hyperparameter/c2/realtabformer/rtf-c2-20260505_021221/rtf_checkpoints/checkpoint-800/config.json new file mode 100644 index 0000000000000000000000000000000000000000..abc7bb2762d6bff3016eb042e7a2ac4abb80ea85 --- /dev/null +++ b/hyperparameter/c2/realtabformer/rtf-c2-20260505_021221/rtf_checkpoints/checkpoint-800/config.json @@ -0,0 +1,34 @@ +{ + "activation_function": "gelu_new", + "add_cross_attention": false, + "architectures": [ + "GPT2LMHeadModel" + ], + "attn_pdrop": 0.1, + "bos_token_id": 5, + "dtype": "float32", + "embd_pdrop": 0.1, + "eos_token_id": 6, + "initializer_range": 0.02, + "layer_norm_epsilon": 1e-05, + "model_type": "gpt2", + "n_embd": 768, + "n_head": 12, + "n_inner": null, + "n_layer": 6, + "n_positions": 1024, + "pad_token_id": null, + "reorder_and_upcast_attn": false, + "resid_pdrop": 0.1, + "scale_attn_by_inverse_layer_idx": false, + "scale_attn_weights": true, + "summary_activation": null, + "summary_first_dropout": 0.1, + "summary_proj_to_labels": true, + "summary_type": "cls_index", + "summary_use_proj": true, + "tie_word_embeddings": true, + "transformers_version": "5.5.3", + "use_cache": false, + "vocab_size": 36 +} diff --git a/hyperparameter/c2/realtabformer/rtf-c2-20260505_021221/rtf_checkpoints/checkpoint-800/generation_config.json b/hyperparameter/c2/realtabformer/rtf-c2-20260505_021221/rtf_checkpoints/checkpoint-800/generation_config.json new file mode 100644 index 0000000000000000000000000000000000000000..ffe89567780e75b5c22eade9be971483b9618f39 --- /dev/null +++ b/hyperparameter/c2/realtabformer/rtf-c2-20260505_021221/rtf_checkpoints/checkpoint-800/generation_config.json @@ -0,0 +1,9 @@ +{ + "_from_model_config": true, + "bos_token_id": 5, + "eos_token_id": 6, + "output_attentions": false, + "output_hidden_states": false, + "transformers_version": "5.5.3", + "use_cache": true +} diff --git a/hyperparameter/c2/realtabformer/rtf-c2-20260505_021221/rtf_checkpoints/checkpoint-800/model.safetensors b/hyperparameter/c2/realtabformer/rtf-c2-20260505_021221/rtf_checkpoints/checkpoint-800/model.safetensors new file mode 100644 index 0000000000000000000000000000000000000000..1dc0fd596a590fcb004b5e80490992f29e33403e --- /dev/null +++ b/hyperparameter/c2/realtabformer/rtf-c2-20260505_021221/rtf_checkpoints/checkpoint-800/model.safetensors @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:54fc56835432ea76fcbfa4e6109d4bd3aa293296ad4a6923d19ca52623a1fd66 +size 173379016 diff --git a/hyperparameter/c2/realtabformer/rtf-c2-20260505_021221/rtf_checkpoints/checkpoint-800/optimizer.pt b/hyperparameter/c2/realtabformer/rtf-c2-20260505_021221/rtf_checkpoints/checkpoint-800/optimizer.pt new file mode 100644 index 0000000000000000000000000000000000000000..efdda6b89cb75468e7099fbf124e66ff4d227da3 --- /dev/null +++ b/hyperparameter/c2/realtabformer/rtf-c2-20260505_021221/rtf_checkpoints/checkpoint-800/optimizer.pt @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:e11f8c42a8134a84cfaabe0b769e747d3eda360d8019cf247869f950a1812e4c +size 346807051 diff --git a/hyperparameter/c2/realtabformer/rtf-c2-20260505_021221/rtf_checkpoints/checkpoint-800/rng_state.pth b/hyperparameter/c2/realtabformer/rtf-c2-20260505_021221/rtf_checkpoints/checkpoint-800/rng_state.pth new file mode 100644 index 0000000000000000000000000000000000000000..5245a647da5f9c38390fc4b7c38f462584dab936 --- /dev/null +++ b/hyperparameter/c2/realtabformer/rtf-c2-20260505_021221/rtf_checkpoints/checkpoint-800/rng_state.pth @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:eeb789af598bd7b69886f029dc5d5c3e0f5902952b50a43f17b3d8cbd73da691 +size 14645 diff --git a/hyperparameter/c2/realtabformer/rtf-c2-20260505_021221/rtf_checkpoints/checkpoint-800/scaler.pt b/hyperparameter/c2/realtabformer/rtf-c2-20260505_021221/rtf_checkpoints/checkpoint-800/scaler.pt new file mode 100644 index 0000000000000000000000000000000000000000..d00b69a7cf9d97a806097c96fd3a5101140e2b7d --- /dev/null +++ b/hyperparameter/c2/realtabformer/rtf-c2-20260505_021221/rtf_checkpoints/checkpoint-800/scaler.pt @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:6fef122931c86c2d2736773be787da21ac6460d41580735381e953556fb410be +size 1383 diff --git a/hyperparameter/c2/realtabformer/rtf-c2-20260505_021221/rtf_checkpoints/checkpoint-800/scheduler.pt b/hyperparameter/c2/realtabformer/rtf-c2-20260505_021221/rtf_checkpoints/checkpoint-800/scheduler.pt new file mode 100644 index 0000000000000000000000000000000000000000..7da924c01d84ff7c8e3facc14b33695b6f562e1a --- /dev/null +++ b/hyperparameter/c2/realtabformer/rtf-c2-20260505_021221/rtf_checkpoints/checkpoint-800/scheduler.pt @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:22bd1f08c7b4e33a92a3b9d4ebf3fb41a235001b145f4865ce41401874c693de +size 1465 diff --git a/hyperparameter/c2/realtabformer/rtf-c2-20260505_021221/rtf_checkpoints/checkpoint-800/trainer_state.json b/hyperparameter/c2/realtabformer/rtf-c2-20260505_021221/rtf_checkpoints/checkpoint-800/trainer_state.json new file mode 100644 index 0000000000000000000000000000000000000000..b48934da436569e26d6b2bfd4996e2f2cd75c306 --- /dev/null +++ b/hyperparameter/c2/realtabformer/rtf-c2-20260505_021221/rtf_checkpoints/checkpoint-800/trainer_state.json @@ -0,0 +1,90 @@ +{ + "best_global_step": null, + "best_metric": null, + "best_model_checkpoint": null, + "epoch": 18.184971098265898, + "eval_steps": 100, + "global_step": 800, + "is_hyper_param_search": false, + "is_local_process_zero": true, + "is_world_process_zero": true, + "log_history": [ + { + "epoch": 2.277456647398844, + "grad_norm": 0.45762479305267334, + "learning_rate": 4.4375e-05, + "loss": 1.05536865234375, + "step": 100 + }, + { + "epoch": 4.554913294797688, + "grad_norm": 0.43268483877182007, + "learning_rate": 3.869318181818182e-05, + "loss": 0.8825263214111329, + "step": 200 + }, + { + "epoch": 6.832369942196532, + "grad_norm": 0.5957285761833191, + "learning_rate": 3.301136363636364e-05, + "loss": 0.8704322052001953, + "step": 300 + }, + { + "epoch": 9.092485549132949, + "grad_norm": 0.34185323119163513, + "learning_rate": 2.732954545454546e-05, + "loss": 0.8600010681152344, + "step": 400 + }, + { + "epoch": 11.369942196531792, + "grad_norm": 0.3294121026992798, + "learning_rate": 2.1647727272727275e-05, + "loss": 0.8526724243164062, + "step": 500 + }, + { + "epoch": 13.647398843930636, + "grad_norm": 0.3839419484138489, + "learning_rate": 1.5965909090909092e-05, + "loss": 0.8503554534912109, + "step": 600 + }, + { + "epoch": 15.92485549132948, + "grad_norm": 0.3654730021953583, + "learning_rate": 1.028409090909091e-05, + "loss": 0.8457917022705078, + "step": 700 + }, + { + "epoch": 18.184971098265898, + "grad_norm": 0.4458361864089966, + "learning_rate": 4.6022727272727275e-06, + "loss": 0.842134780883789, + "step": 800 + } + ], + "logging_steps": 100, + "max_steps": 880, + "num_input_tokens_seen": 0, + "num_train_epochs": 20, + "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": 57716981858304.0, + "train_batch_size": 8, + "trial_name": null, + "trial_params": null +} diff --git a/hyperparameter/c2/realtabformer/rtf-c2-20260505_021221/rtf_checkpoints/checkpoint-800/training_args.bin b/hyperparameter/c2/realtabformer/rtf-c2-20260505_021221/rtf_checkpoints/checkpoint-800/training_args.bin new file mode 100644 index 0000000000000000000000000000000000000000..0443202bbc5de94f0d0d09164bf2ca8102a8869f --- /dev/null +++ b/hyperparameter/c2/realtabformer/rtf-c2-20260505_021221/rtf_checkpoints/checkpoint-800/training_args.bin @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:86d01f2501df27a7bb9ffc25201c399525fb2c1bd2149d56f439c7a738a4ac32 +size 5201 diff --git a/hyperparameter/c2/realtabformer/rtf-c2-20260505_021221/rtf_checkpoints/checkpoint-836/config.json b/hyperparameter/c2/realtabformer/rtf-c2-20260505_021221/rtf_checkpoints/checkpoint-836/config.json new file mode 100644 index 0000000000000000000000000000000000000000..abc7bb2762d6bff3016eb042e7a2ac4abb80ea85 --- /dev/null +++ b/hyperparameter/c2/realtabformer/rtf-c2-20260505_021221/rtf_checkpoints/checkpoint-836/config.json @@ -0,0 +1,34 @@ +{ + "activation_function": "gelu_new", + "add_cross_attention": false, + "architectures": [ + "GPT2LMHeadModel" + ], + "attn_pdrop": 0.1, + "bos_token_id": 5, + "dtype": "float32", + "embd_pdrop": 0.1, + "eos_token_id": 6, + "initializer_range": 0.02, + "layer_norm_epsilon": 1e-05, + "model_type": "gpt2", + "n_embd": 768, + "n_head": 12, + "n_inner": null, + "n_layer": 6, + "n_positions": 1024, + "pad_token_id": null, + "reorder_and_upcast_attn": false, + "resid_pdrop": 0.1, + "scale_attn_by_inverse_layer_idx": false, + "scale_attn_weights": true, + "summary_activation": null, + "summary_first_dropout": 0.1, + "summary_proj_to_labels": true, + "summary_type": "cls_index", + "summary_use_proj": true, + "tie_word_embeddings": true, + "transformers_version": "5.5.3", + "use_cache": false, + "vocab_size": 36 +} diff --git a/hyperparameter/c2/realtabformer/rtf-c2-20260505_021221/rtf_checkpoints/checkpoint-836/generation_config.json b/hyperparameter/c2/realtabformer/rtf-c2-20260505_021221/rtf_checkpoints/checkpoint-836/generation_config.json new file mode 100644 index 0000000000000000000000000000000000000000..ffe89567780e75b5c22eade9be971483b9618f39 --- /dev/null +++ b/hyperparameter/c2/realtabformer/rtf-c2-20260505_021221/rtf_checkpoints/checkpoint-836/generation_config.json @@ -0,0 +1,9 @@ +{ + "_from_model_config": true, + "bos_token_id": 5, + "eos_token_id": 6, + "output_attentions": false, + "output_hidden_states": false, + "transformers_version": "5.5.3", + "use_cache": true +} diff --git a/hyperparameter/c2/realtabformer/rtf-c2-20260505_021221/rtf_checkpoints/checkpoint-836/model.safetensors b/hyperparameter/c2/realtabformer/rtf-c2-20260505_021221/rtf_checkpoints/checkpoint-836/model.safetensors new file mode 100644 index 0000000000000000000000000000000000000000..5999dda0171de9e39da2df7bec681b60c617a8ac --- /dev/null +++ b/hyperparameter/c2/realtabformer/rtf-c2-20260505_021221/rtf_checkpoints/checkpoint-836/model.safetensors @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:322cc062cb694ea21ab85835529b538c3ee5d868052033086deb099bb01edf2c +size 173379016 diff --git a/hyperparameter/c2/realtabformer/rtf-c2-20260505_021221/rtf_checkpoints/checkpoint-836/optimizer.pt b/hyperparameter/c2/realtabformer/rtf-c2-20260505_021221/rtf_checkpoints/checkpoint-836/optimizer.pt new file mode 100644 index 0000000000000000000000000000000000000000..37906b5e01e9c56e3e5bfd486ab76b45979fbd49 --- /dev/null +++ b/hyperparameter/c2/realtabformer/rtf-c2-20260505_021221/rtf_checkpoints/checkpoint-836/optimizer.pt @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:34c3ae4d8c0085fe4968f7949e850f29ae435905a41a6d40355ae9c421c596d0 +size 346807051 diff --git a/hyperparameter/c2/realtabformer/rtf-c2-20260505_021221/rtf_checkpoints/checkpoint-836/rng_state.pth b/hyperparameter/c2/realtabformer/rtf-c2-20260505_021221/rtf_checkpoints/checkpoint-836/rng_state.pth new file mode 100644 index 0000000000000000000000000000000000000000..02f173047693fe6369c150f1a6c74803bd9c96c3 --- /dev/null +++ b/hyperparameter/c2/realtabformer/rtf-c2-20260505_021221/rtf_checkpoints/checkpoint-836/rng_state.pth @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:880cd0156424724a109c855ddfd1bfd333c7c64fa114438fcce94126a9d8eead +size 14645 diff --git a/hyperparameter/c2/realtabformer/rtf-c2-20260505_021221/rtf_checkpoints/checkpoint-836/scaler.pt b/hyperparameter/c2/realtabformer/rtf-c2-20260505_021221/rtf_checkpoints/checkpoint-836/scaler.pt new file mode 100644 index 0000000000000000000000000000000000000000..b13d984cab2e59a0f4681f44af6643268212cc7e --- /dev/null +++ b/hyperparameter/c2/realtabformer/rtf-c2-20260505_021221/rtf_checkpoints/checkpoint-836/scaler.pt @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:7139a21a673e809e4e8ddf887b62683ba7e49f8e1018556a002af12a6c0e65a4 +size 1383 diff --git a/hyperparameter/c2/realtabformer/rtf-c2-20260505_021221/rtf_checkpoints/checkpoint-836/scheduler.pt b/hyperparameter/c2/realtabformer/rtf-c2-20260505_021221/rtf_checkpoints/checkpoint-836/scheduler.pt new file mode 100644 index 0000000000000000000000000000000000000000..ce5e22d300cddb51632731ab837ed1ceeaf50d52 --- /dev/null +++ b/hyperparameter/c2/realtabformer/rtf-c2-20260505_021221/rtf_checkpoints/checkpoint-836/scheduler.pt @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:84864cc6ba9fd4c8485759ee3309e15cb1b53e5bd0d621d251ea4124df12185a +size 1465 diff --git a/hyperparameter/c2/realtabformer/rtf-c2-20260505_021221/rtf_checkpoints/checkpoint-836/trainer_state.json b/hyperparameter/c2/realtabformer/rtf-c2-20260505_021221/rtf_checkpoints/checkpoint-836/trainer_state.json new file mode 100644 index 0000000000000000000000000000000000000000..e607c96fe04323359a5ad1e06c150dbb65c21806 --- /dev/null +++ b/hyperparameter/c2/realtabformer/rtf-c2-20260505_021221/rtf_checkpoints/checkpoint-836/trainer_state.json @@ -0,0 +1,90 @@ +{ + "best_global_step": null, + "best_metric": null, + "best_model_checkpoint": null, + "epoch": 19.0, + "eval_steps": 100, + "global_step": 836, + "is_hyper_param_search": false, + "is_local_process_zero": true, + "is_world_process_zero": true, + "log_history": [ + { + "epoch": 2.277456647398844, + "grad_norm": 0.45762479305267334, + "learning_rate": 4.4375e-05, + "loss": 1.05536865234375, + "step": 100 + }, + { + "epoch": 4.554913294797688, + "grad_norm": 0.43268483877182007, + "learning_rate": 3.869318181818182e-05, + "loss": 0.8825263214111329, + "step": 200 + }, + { + "epoch": 6.832369942196532, + "grad_norm": 0.5957285761833191, + "learning_rate": 3.301136363636364e-05, + "loss": 0.8704322052001953, + "step": 300 + }, + { + "epoch": 9.092485549132949, + "grad_norm": 0.34185323119163513, + "learning_rate": 2.732954545454546e-05, + "loss": 0.8600010681152344, + "step": 400 + }, + { + "epoch": 11.369942196531792, + "grad_norm": 0.3294121026992798, + "learning_rate": 2.1647727272727275e-05, + "loss": 0.8526724243164062, + "step": 500 + }, + { + "epoch": 13.647398843930636, + "grad_norm": 0.3839419484138489, + "learning_rate": 1.5965909090909092e-05, + "loss": 0.8503554534912109, + "step": 600 + }, + { + "epoch": 15.92485549132948, + "grad_norm": 0.3654730021953583, + "learning_rate": 1.028409090909091e-05, + "loss": 0.8457917022705078, + "step": 700 + }, + { + "epoch": 18.184971098265898, + "grad_norm": 0.4458361864089966, + "learning_rate": 4.6022727272727275e-06, + "loss": 0.842134780883789, + "step": 800 + } + ], + "logging_steps": 100, + "max_steps": 880, + "num_input_tokens_seen": 0, + "num_train_epochs": 20, + "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": 60302901067776.0, + "train_batch_size": 8, + "trial_name": null, + "trial_params": null +} diff --git a/hyperparameter/c2/realtabformer/rtf-c2-20260505_021221/rtf_checkpoints/checkpoint-836/training_args.bin b/hyperparameter/c2/realtabformer/rtf-c2-20260505_021221/rtf_checkpoints/checkpoint-836/training_args.bin new file mode 100644 index 0000000000000000000000000000000000000000..0443202bbc5de94f0d0d09164bf2ca8102a8869f --- /dev/null +++ b/hyperparameter/c2/realtabformer/rtf-c2-20260505_021221/rtf_checkpoints/checkpoint-836/training_args.bin @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:86d01f2501df27a7bb9ffc25201c399525fb2c1bd2149d56f439c7a738a4ac32 +size 5201 diff --git a/hyperparameter/c2/realtabformer/rtf-c2-20260505_021221/rtf_checkpoints/checkpoint-880/config.json b/hyperparameter/c2/realtabformer/rtf-c2-20260505_021221/rtf_checkpoints/checkpoint-880/config.json new file mode 100644 index 0000000000000000000000000000000000000000..abc7bb2762d6bff3016eb042e7a2ac4abb80ea85 --- /dev/null +++ b/hyperparameter/c2/realtabformer/rtf-c2-20260505_021221/rtf_checkpoints/checkpoint-880/config.json @@ -0,0 +1,34 @@ +{ + "activation_function": "gelu_new", + "add_cross_attention": false, + "architectures": [ + "GPT2LMHeadModel" + ], + "attn_pdrop": 0.1, + "bos_token_id": 5, + "dtype": "float32", + "embd_pdrop": 0.1, + "eos_token_id": 6, + "initializer_range": 0.02, + "layer_norm_epsilon": 1e-05, + "model_type": "gpt2", + "n_embd": 768, + "n_head": 12, + "n_inner": null, + "n_layer": 6, + "n_positions": 1024, + "pad_token_id": null, + "reorder_and_upcast_attn": false, + "resid_pdrop": 0.1, + "scale_attn_by_inverse_layer_idx": false, + "scale_attn_weights": true, + "summary_activation": null, + "summary_first_dropout": 0.1, + "summary_proj_to_labels": true, + "summary_type": "cls_index", + "summary_use_proj": true, + "tie_word_embeddings": true, + "transformers_version": "5.5.3", + "use_cache": false, + "vocab_size": 36 +} diff --git a/hyperparameter/c2/realtabformer/rtf-c2-20260505_021221/rtf_checkpoints/checkpoint-880/generation_config.json b/hyperparameter/c2/realtabformer/rtf-c2-20260505_021221/rtf_checkpoints/checkpoint-880/generation_config.json new file mode 100644 index 0000000000000000000000000000000000000000..ffe89567780e75b5c22eade9be971483b9618f39 --- /dev/null +++ b/hyperparameter/c2/realtabformer/rtf-c2-20260505_021221/rtf_checkpoints/checkpoint-880/generation_config.json @@ -0,0 +1,9 @@ +{ + "_from_model_config": true, + "bos_token_id": 5, + "eos_token_id": 6, + "output_attentions": false, + "output_hidden_states": false, + "transformers_version": "5.5.3", + "use_cache": true +} diff --git a/hyperparameter/c2/realtabformer/rtf-c2-20260505_021221/rtf_checkpoints/checkpoint-880/model.safetensors b/hyperparameter/c2/realtabformer/rtf-c2-20260505_021221/rtf_checkpoints/checkpoint-880/model.safetensors new file mode 100644 index 0000000000000000000000000000000000000000..2def0f3643ac83009b62664ec74359f9d68f8949 --- /dev/null +++ b/hyperparameter/c2/realtabformer/rtf-c2-20260505_021221/rtf_checkpoints/checkpoint-880/model.safetensors @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:ff67da525998a970af68184cb7f6b41c9d19aa57399b8918c4dd790513c9d99c +size 173379016 diff --git a/hyperparameter/c2/realtabformer/rtf-c2-20260505_021221/rtf_checkpoints/checkpoint-880/optimizer.pt b/hyperparameter/c2/realtabformer/rtf-c2-20260505_021221/rtf_checkpoints/checkpoint-880/optimizer.pt new file mode 100644 index 0000000000000000000000000000000000000000..dffd9443cbaabbb3a1796e575171849d65e72be4 --- /dev/null +++ b/hyperparameter/c2/realtabformer/rtf-c2-20260505_021221/rtf_checkpoints/checkpoint-880/optimizer.pt @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:6fb724c51600b1f70368d80c1fea2ce4a86ba7796cac939fda43de828b2ae513 +size 346807051 diff --git a/hyperparameter/c2/realtabformer/rtf-c2-20260505_021221/rtf_checkpoints/checkpoint-880/rng_state.pth b/hyperparameter/c2/realtabformer/rtf-c2-20260505_021221/rtf_checkpoints/checkpoint-880/rng_state.pth new file mode 100644 index 0000000000000000000000000000000000000000..4cbaa9070bb4b4cad661165987bd35ac96943631 --- /dev/null +++ b/hyperparameter/c2/realtabformer/rtf-c2-20260505_021221/rtf_checkpoints/checkpoint-880/rng_state.pth @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:4c73174728a66b889bae61a4da8229c506512d0856a468f11d29c8a8ec7fd993 +size 14645 diff --git a/hyperparameter/c2/realtabformer/rtf-c2-20260505_021221/rtf_checkpoints/checkpoint-880/scaler.pt b/hyperparameter/c2/realtabformer/rtf-c2-20260505_021221/rtf_checkpoints/checkpoint-880/scaler.pt new file mode 100644 index 0000000000000000000000000000000000000000..5d21cc967db88e85e4b1f9771c82fd358e2ed8ef --- /dev/null +++ b/hyperparameter/c2/realtabformer/rtf-c2-20260505_021221/rtf_checkpoints/checkpoint-880/scaler.pt @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:df5db66705b412cd18d5ad4eb6f72a79adbb3f849df7f1405564a81fc27e59d0 +size 1383 diff --git a/hyperparameter/c2/realtabformer/rtf-c2-20260505_021221/rtf_checkpoints/checkpoint-880/scheduler.pt b/hyperparameter/c2/realtabformer/rtf-c2-20260505_021221/rtf_checkpoints/checkpoint-880/scheduler.pt new file mode 100644 index 0000000000000000000000000000000000000000..f1860132be869e61f0ed6cc22514e6287da28306 --- /dev/null +++ b/hyperparameter/c2/realtabformer/rtf-c2-20260505_021221/rtf_checkpoints/checkpoint-880/scheduler.pt @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:17eb9d80b4ebb6e446ef96508d7dd6c80f3de98624cbedf9725f813f26786cbe +size 1465 diff --git a/hyperparameter/c2/realtabformer/rtf-c2-20260505_021221/rtf_checkpoints/checkpoint-880/trainer_state.json b/hyperparameter/c2/realtabformer/rtf-c2-20260505_021221/rtf_checkpoints/checkpoint-880/trainer_state.json new file mode 100644 index 0000000000000000000000000000000000000000..50352466ee8669a0b4c1754989bd240affae38c4 --- /dev/null +++ b/hyperparameter/c2/realtabformer/rtf-c2-20260505_021221/rtf_checkpoints/checkpoint-880/trainer_state.json @@ -0,0 +1,90 @@ +{ + "best_global_step": null, + "best_metric": null, + "best_model_checkpoint": null, + "epoch": 20.0, + "eval_steps": 100, + "global_step": 880, + "is_hyper_param_search": false, + "is_local_process_zero": true, + "is_world_process_zero": true, + "log_history": [ + { + "epoch": 2.277456647398844, + "grad_norm": 0.45762479305267334, + "learning_rate": 4.4375e-05, + "loss": 1.05536865234375, + "step": 100 + }, + { + "epoch": 4.554913294797688, + "grad_norm": 0.43268483877182007, + "learning_rate": 3.869318181818182e-05, + "loss": 0.8825263214111329, + "step": 200 + }, + { + "epoch": 6.832369942196532, + "grad_norm": 0.5957285761833191, + "learning_rate": 3.301136363636364e-05, + "loss": 0.8704322052001953, + "step": 300 + }, + { + "epoch": 9.092485549132949, + "grad_norm": 0.34185323119163513, + "learning_rate": 2.732954545454546e-05, + "loss": 0.8600010681152344, + "step": 400 + }, + { + "epoch": 11.369942196531792, + "grad_norm": 0.3294121026992798, + "learning_rate": 2.1647727272727275e-05, + "loss": 0.8526724243164062, + "step": 500 + }, + { + "epoch": 13.647398843930636, + "grad_norm": 0.3839419484138489, + "learning_rate": 1.5965909090909092e-05, + "loss": 0.8503554534912109, + "step": 600 + }, + { + "epoch": 15.92485549132948, + "grad_norm": 0.3654730021953583, + "learning_rate": 1.028409090909091e-05, + "loss": 0.8457917022705078, + "step": 700 + }, + { + "epoch": 18.184971098265898, + "grad_norm": 0.4458361864089966, + "learning_rate": 4.6022727272727275e-06, + "loss": 0.842134780883789, + "step": 800 + } + ], + "logging_steps": 100, + "max_steps": 880, + "num_input_tokens_seen": 0, + "num_train_epochs": 20, + "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": 63476737966080.0, + "train_batch_size": 8, + "trial_name": null, + "trial_params": null +} diff --git a/hyperparameter/c2/realtabformer/rtf-c2-20260505_021221/rtf_checkpoints/checkpoint-880/training_args.bin b/hyperparameter/c2/realtabformer/rtf-c2-20260505_021221/rtf_checkpoints/checkpoint-880/training_args.bin new file mode 100644 index 0000000000000000000000000000000000000000..0443202bbc5de94f0d0d09164bf2ca8102a8869f --- /dev/null +++ b/hyperparameter/c2/realtabformer/rtf-c2-20260505_021221/rtf_checkpoints/checkpoint-880/training_args.bin @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:86d01f2501df27a7bb9ffc25201c399525fb2c1bd2149d56f439c7a738a4ac32 +size 5201 diff --git a/hyperparameter/c2/realtabformer/rtf-c2-20260505_021221/run_config.json b/hyperparameter/c2/realtabformer/rtf-c2-20260505_021221/run_config.json new file mode 100644 index 0000000000000000000000000000000000000000..bdf492ea9fc5bbf23ebd52ac52ee55efa1f45630 --- /dev/null +++ b/hyperparameter/c2/realtabformer/rtf-c2-20260505_021221/run_config.json @@ -0,0 +1,40 @@ +{ + "schema_version": 1, + "recorded_at": "2026-05-05T02:12:21", + "dataset_id": "c2", + "model": "realtabformer", + "work_dir": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/c2/realtabformer/rtf-c2-20260505_021221", + "dataset_source_requested": "new", + "dataset_source_resolved": "new", + "cli_args": { + "model": "realtabformer", + "dataset": "c2", + "dataset_source": "new", + "train": true, + "generate": true, + "num_rows": 0, + "epochs": 20, + "output_dir": null, + "model_dir": null, + "work_dir": null, + "resume": false, + "no_stats": false + }, + "resolved": { + "num_rows": 1382, + "model_path": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/c2/realtabformer/rtf-c2-20260505_021221/models_20epochs", + "output_csv": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/c2/realtabformer/rtf-c2-20260505_021221/rtf-c2-1382-20260505_021346.csv" + }, + "input_artifacts": { + "public_gate_report": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/c2/realtabformer/rtf-c2-20260505_021221/public_gate/public_gate_report.json", + "public_manifest": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/c2/realtabformer/rtf-c2-20260505_021221/public_gate/staged_input_manifest.json", + "model_manifest": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/c2/realtabformer/rtf-c2-20260505_021221/staged/realtabformer/model_input_manifest.json", + "train_csv": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/c2/realtabformer/rtf-c2-20260505_021221/staged/public/train.csv", + "features_json": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/c2/realtabformer/rtf-c2-20260505_021221/staged/public/staged_features.json", + "target_column": "class", + "task_type": "classification" + }, + "env_overrides": { + "BENCHMARK_REALTABFORMER_GPUS": "device=3" + } +} \ No newline at end of file diff --git a/hyperparameter/c2/realtabformer/rtf-c2-20260505_021221/runtime_result.json b/hyperparameter/c2/realtabformer/rtf-c2-20260505_021221/runtime_result.json new file mode 100644 index 0000000000000000000000000000000000000000..66fdd9c92d1328eab72a60f86a23868f239e5b63 --- /dev/null +++ b/hyperparameter/c2/realtabformer/rtf-c2-20260505_021221/runtime_result.json @@ -0,0 +1,27 @@ +{ + "dataset_id": "c2", + "model": "realtabformer", + "run_id": "rtf-c2-20260505_021221", + "public_gate_status": "pass", + "adapter_ready_status": "pass", + "train_status": "success", + "generate_status": "success", + "reason_code": null, + "reason_detail": null, + "artifacts": { + "synthetic_csv": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/c2/realtabformer/rtf-c2-20260505_021221/rtf-c2-1382-20260505_021346.csv", + "model_path": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/c2/realtabformer/rtf-c2-20260505_021221/models_20epochs" + }, + "timings": { + "train": { + "started_at": "2026-05-05T02:12:21", + "ended_at": "2026-05-05T02:13:46", + "duration_sec": 84.919 + }, + "generate": { + "started_at": "2026-05-05T02:13:46", + "ended_at": "2026-05-05T02:14:00", + "duration_sec": 14.562 + } + } +} \ No newline at end of file diff --git a/hyperparameter/c2/realtabformer/rtf-c2-20260505_021221/staged/public/staged_features.json b/hyperparameter/c2/realtabformer/rtf-c2-20260505_021221/staged/public/staged_features.json new file mode 100644 index 0000000000000000000000000000000000000000..61783861dd5de501592f76acb0469cf3f3b2622a --- /dev/null +++ b/hyperparameter/c2/realtabformer/rtf-c2-20260505_021221/staged/public/staged_features.json @@ -0,0 +1,37 @@ +[ + { + "feature_name": "buying", + "data_type": "categorical", + "is_target": false + }, + { + "feature_name": "maint", + "data_type": "categorical", + "is_target": false + }, + { + "feature_name": "doors", + "data_type": "categorical", + "is_target": false + }, + { + "feature_name": "persons", + "data_type": "categorical", + "is_target": false + }, + { + "feature_name": "lug_boot", + "data_type": "categorical", + "is_target": false + }, + { + "feature_name": "safety", + "data_type": "categorical", + "is_target": false + }, + { + "feature_name": "class", + "data_type": "categorical", + "is_target": true + } +] \ No newline at end of file diff --git a/hyperparameter/c2/realtabformer/rtf-c2-20260505_021221/staged/public/test.csv b/hyperparameter/c2/realtabformer/rtf-c2-20260505_021221/staged/public/test.csv new file mode 100644 index 0000000000000000000000000000000000000000..392a0d7189a34d8f13ecf20a99d64b03230d517c --- /dev/null +++ b/hyperparameter/c2/realtabformer/rtf-c2-20260505_021221/staged/public/test.csv @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:b48114a7d0bc5bd9a07920f903c8d4aba8bf98bf2a66a050da03588b0245ca73 +size 5273 diff --git a/hyperparameter/c2/realtabformer/rtf-c2-20260505_021221/staged/public/train.csv b/hyperparameter/c2/realtabformer/rtf-c2-20260505_021221/staged/public/train.csv new file mode 100644 index 0000000000000000000000000000000000000000..da4f4d55134eebc0e51157d0d467536371db1484 --- /dev/null +++ b/hyperparameter/c2/realtabformer/rtf-c2-20260505_021221/staged/public/train.csv @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:4aed00c2c2b3f88a55a7ebff31b2e1b5e0e32fb0a7267e0b9d2779cd23e434dd +size 41565 diff --git a/hyperparameter/c2/realtabformer/rtf-c2-20260505_021221/staged/public/val.csv b/hyperparameter/c2/realtabformer/rtf-c2-20260505_021221/staged/public/val.csv new file mode 100644 index 0000000000000000000000000000000000000000..af8caf7ee42524188534a3daf32996dc491952d9 --- /dev/null +++ b/hyperparameter/c2/realtabformer/rtf-c2-20260505_021221/staged/public/val.csv @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:26e90c1170a57a14c05832ac88027722b1f3848f9662c7c09ef7c93dcba4cc01 +size 5176 diff --git a/hyperparameter/c2/realtabformer/rtf-c2-20260505_021221/staged/realtabformer/adapter_report.json b/hyperparameter/c2/realtabformer/rtf-c2-20260505_021221/staged/realtabformer/adapter_report.json new file mode 100644 index 0000000000000000000000000000000000000000..b543337f31ee437783434d8b13050c79b9d750f6 --- /dev/null +++ b/hyperparameter/c2/realtabformer/rtf-c2-20260505_021221/staged/realtabformer/adapter_report.json @@ -0,0 +1,7 @@ +{ + "adapter_ready_status": "pass", + "adapter_fail_reason_code": null, + "adapter_fail_detail": null, + "adapter_transforms_applied": [], + "model_input_manifest": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/c2/realtabformer/rtf-c2-20260505_021221/staged/realtabformer/model_input_manifest.json" +} \ No newline at end of file diff --git a/hyperparameter/c2/realtabformer/rtf-c2-20260505_021221/staged/realtabformer/adapter_transforms_applied.json b/hyperparameter/c2/realtabformer/rtf-c2-20260505_021221/staged/realtabformer/adapter_transforms_applied.json new file mode 100644 index 0000000000000000000000000000000000000000..0637a088a01e8ddab3bf3fa98dbe804cbde1a0dc --- /dev/null +++ b/hyperparameter/c2/realtabformer/rtf-c2-20260505_021221/staged/realtabformer/adapter_transforms_applied.json @@ -0,0 +1 @@ +[] \ No newline at end of file diff --git a/hyperparameter/c2/realtabformer/rtf-c2-20260505_021221/staged/realtabformer/model_input_manifest.json b/hyperparameter/c2/realtabformer/rtf-c2-20260505_021221/staged/realtabformer/model_input_manifest.json new file mode 100644 index 0000000000000000000000000000000000000000..d7694f25593a59ddc27b75ea549e8ea53f3328b2 --- /dev/null +++ b/hyperparameter/c2/realtabformer/rtf-c2-20260505_021221/staged/realtabformer/model_input_manifest.json @@ -0,0 +1,151 @@ +{ + "dataset_id": "c2", + "model": "realtabformer", + "target_column": "class", + "task_type": "classification", + "column_schema": [ + { + "name": "buying", + "role": "feature", + "semantic_type": "categorical", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 4, + "unique_ratio": 0.002894, + "example_values": [ + "vhigh", + "med", + "high", + "low" + ] + } + }, + { + "name": "maint", + "role": "feature", + "semantic_type": "categorical", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 4, + "unique_ratio": 0.002894, + "example_values": [ + "vhigh", + "low", + "med", + "high" + ] + } + }, + { + "name": "doors", + "role": "feature", + "semantic_type": "categorical", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 4, + "unique_ratio": 0.002894, + "example_values": [ + "2", + "5more", + "3", + "4" + ] + } + }, + { + "name": "persons", + "role": "feature", + "semantic_type": "categorical", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 3, + "unique_ratio": 0.002171, + "example_values": [ + "2", + "4", + "more" + ] + } + }, + { + "name": "lug_boot", + "role": "feature", + "semantic_type": "categorical", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 3, + "unique_ratio": 0.002171, + "example_values": [ + "small", + "big", + "med" + ] + } + }, + { + "name": "safety", + "role": "feature", + "semantic_type": "categorical", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 3, + "unique_ratio": 0.002171, + "example_values": [ + "low", + "high", + "med" + ] + } + }, + { + "name": "class", + "role": "target", + "semantic_type": "categorical", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 4, + "unique_ratio": 0.002894, + "example_values": [ + "unacc", + "good", + "acc", + "vgood" + ] + } + } + ], + "public_manifest": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/c2/realtabformer/rtf-c2-20260505_021221/public_gate/staged_input_manifest.json", + "train_csv": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/c2/realtabformer/rtf-c2-20260505_021221/staged/public/train.csv", + "val_csv": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/c2/realtabformer/rtf-c2-20260505_021221/staged/public/val.csv", + "test_csv": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/c2/realtabformer/rtf-c2-20260505_021221/staged/public/test.csv", + "features_json": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/c2/realtabformer/rtf-c2-20260505_021221/staged/public/staged_features.json", + "public_gate_report": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/c2/realtabformer/rtf-c2-20260505_021221/public_gate/public_gate_report.json" +} \ No newline at end of file diff --git a/hyperparameter/c2/realtabformer/rtf-c2-20260505_021221/train_20260505_021221.log b/hyperparameter/c2/realtabformer/rtf-c2-20260505_021221/train_20260505_021221.log new file mode 100644 index 0000000000000000000000000000000000000000..7e064e03879bc73f80756fc6e6f0def3efc4667c --- /dev/null +++ b/hyperparameter/c2/realtabformer/rtf-c2-20260505_021221/train_20260505_021221.log @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:203878477c41dbfaf9e0d03fca0bb14c43bfde87320450d90dfa48166def1fc8 +size 36266 diff --git a/hyperparameter/c2/realtabformer/rtf-c2-20260505_021413/gen_20260505_021617.log b/hyperparameter/c2/realtabformer/rtf-c2-20260505_021413/gen_20260505_021617.log new file mode 100644 index 0000000000000000000000000000000000000000..ebec5d663017ec0cb46dd04442f14acc6d298be4 --- /dev/null +++ b/hyperparameter/c2/realtabformer/rtf-c2-20260505_021413/gen_20260505_021617.log @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:040fd901f1d01a96e736eb30901ec82248ce6fd671f44765feed8b7a4595fc3d +size 1281 diff --git a/hyperparameter/c2/realtabformer/rtf-c2-20260505_021413/input_snapshot.json b/hyperparameter/c2/realtabformer/rtf-c2-20260505_021413/input_snapshot.json new file mode 100644 index 0000000000000000000000000000000000000000..16a47f24a14783056963c7c31b54a93442c4e573 --- /dev/null +++ b/hyperparameter/c2/realtabformer/rtf-c2-20260505_021413/input_snapshot.json @@ -0,0 +1,36 @@ +{ + "dataset_id": "c2", + "model": "realtabformer", + "inputs": { + "train_csv": { + "path": "/data/jialinzhang/SynthesizePipeline-server/DatasetNew/c2/c2-train.csv", + "exists": true, + "size": 42948, + "sha256": "17bc560fa96bd00fb3b526e1e65bc91210b701d0d0a4e8bb9b4c5196cab56def" + }, + "val_csv": { + "path": "/data/jialinzhang/SynthesizePipeline-server/DatasetNew/c2/c2-val.csv", + "exists": true, + "size": 5349, + "sha256": "61e565eca62e65a7dccd9d51039a3170413379e10fc494e25870e7c4294863c9" + }, + "test_csv": { + "path": "/data/jialinzhang/SynthesizePipeline-server/DatasetNew/c2/c2-test.csv", + "exists": true, + "size": 5448, + "sha256": "cbcbb062a1faf5fa44b66c80532baa229e05b94fc42137269761e6c6d84af20a" + }, + "profile_json": { + "path": "/data/jialinzhang/SynthesizePipeline-server/DatasetNew/artifacts/data_core/tabular/c2/c2-dataset_profile.json", + "exists": true, + "size": 3240, + "sha256": "526b7163b2076c93c0bf4638438081ee8a6907065d5b608faa40d1a3dbc2a27b" + }, + "contract_json": { + "path": "/data/jialinzhang/SynthesizePipeline-server/DatasetNew/artifacts/data_core/tabular/c2/c2-dataset_contract_v1.json", + "exists": true, + "size": 3731, + "sha256": "fb595a876054c2ee9b4e10cfe83a5691588de1d25466cbb9d473c18ad3604009" + } + } +} \ No newline at end of file diff --git a/hyperparameter/c2/realtabformer/rtf-c2-20260505_021413/models_30epochs/id000017779185753542385664/rtf_config.json b/hyperparameter/c2/realtabformer/rtf-c2-20260505_021413/models_30epochs/id000017779185753542385664/rtf_config.json new file mode 100644 index 0000000000000000000000000000000000000000..287d2f611e64c0638a87bc05d88e6d9f46adb434 --- /dev/null +++ b/hyperparameter/c2/realtabformer/rtf-c2-20260505_021413/models_30epochs/id000017779185753542385664/rtf_config.json @@ -0,0 +1 @@ +{"model_type": "tabular", "tabular_config": {"transformers_version": "5.5.3", "architectures": ["GPT2LMHeadModel"], "output_hidden_states": false, "return_dict": true, "dtype": "float32", "chunk_size_feed_forward": 0, "is_encoder_decoder": false, "id2label": {"0": "LABEL_0", "1": "LABEL_1"}, "label2id": {"LABEL_0": 0, "LABEL_1": 1}, "problem_type": null, "vocab_size": 36, "n_positions": 1024, "n_embd": 768, "n_layer": 6, "n_head": 12, "n_inner": null, "activation_function": "gelu_new", "resid_pdrop": 0.1, "embd_pdrop": 0.1, "attn_pdrop": 0.1, "layer_norm_epsilon": 1e-05, "initializer_range": 0.02, "summary_type": "cls_index", "summary_use_proj": true, "summary_activation": null, "summary_proj_to_labels": true, "summary_first_dropout": 0.1, "scale_attn_weights": true, "use_cache": false, "bos_token_id": 5, "eos_token_id": 6, "pad_token_id": null, "scale_attn_by_inverse_layer_idx": false, "reorder_and_upcast_attn": false, "add_cross_attention": false, "tie_word_embeddings": true, "_name_or_path": "", "model_type": "gpt2", "output_attentions": false}, "checkpoints_dir": "rtf_checkpoints", "samples_save_dir": "rtf_samples", "full_save_dir": "rtf_full_save", "epochs": 30, "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": 30, "per_device_train_batch_size": 8, "per_device_eval_batch_size": 8, "gradient_accumulation_steps": 4, "remove_unused_columns": true, "logging_steps": 100, "save_steps": 100, "eval_steps": 100, "load_best_model_at_end": false, "save_total_limit": 6, "optim": "adamw_torch"}, "train_size": 1, "mask_rate": 0, "columns": ["buying", "maint", "doors", "persons", "lug_boot", "safety", "class"], "column_dtypes": {"buying": "object", "maint": "object", "doors": "object", "persons": "object", "lug_boot": "object", "safety": "object", "class": "object"}, "column_has_missing": {"buying": false, "maint": false, "doors": false, "persons": false, "lug_boot": false, "safety": false, "class": false}, "drop_na_cols": ["buying", "maint", "doors", "persons", "lug_boot", "safety", "class"], "processed_columns": ["0___CATEGORICAL___buying", "1___CATEGORICAL___maint", "2___CATEGORICAL___doors", "3___CATEGORICAL___persons", "4___CATEGORICAL___lug_boot", "5___CATEGORICAL___safety", "6___CATEGORICAL___class"], "numeric_columns": [], "datetime_columns": [], "vocab": {"id2token": {"0": "[UNK]", "1": "[SEP]", "2": "[PAD]", "3": "[CLS]", "4": "[MASK]", "5": "[BOS]", "6": "[EOS]", "7": "[BMEM]", "8": "[EMEM]", "9": "[RMASK]", "10": "[SPTYPE]", "11": "0___CATEGORICAL___buying___high", "12": "0___CATEGORICAL___buying___low", "13": "0___CATEGORICAL___buying___med", "14": "0___CATEGORICAL___buying___vhigh", "15": "1___CATEGORICAL___maint___high", "16": "1___CATEGORICAL___maint___low", "17": "1___CATEGORICAL___maint___med", "18": "1___CATEGORICAL___maint___vhigh", "19": "2___CATEGORICAL___doors___2", "20": "2___CATEGORICAL___doors___3", "21": "2___CATEGORICAL___doors___4", "22": "2___CATEGORICAL___doors___5more", "23": "3___CATEGORICAL___persons___2", "24": "3___CATEGORICAL___persons___4", "25": "3___CATEGORICAL___persons___more", "26": "4___CATEGORICAL___lug_boot___big", "27": "4___CATEGORICAL___lug_boot___med", "28": "4___CATEGORICAL___lug_boot___small", "29": "5___CATEGORICAL___safety___high", "30": "5___CATEGORICAL___safety___low", "31": "5___CATEGORICAL___safety___med", "32": "6___CATEGORICAL___class___acc", "33": "6___CATEGORICAL___class___good", "34": "6___CATEGORICAL___class___unacc", "35": "6___CATEGORICAL___class___vgood"}, "token2id": {"[UNK]": 0, "[SEP]": 1, "[PAD]": 2, "[CLS]": 3, "[MASK]": 4, "[BOS]": 5, "[EOS]": 6, "[BMEM]": 7, "[EMEM]": 8, "[RMASK]": 9, "[SPTYPE]": 10, "0___CATEGORICAL___buying___high": 11, "0___CATEGORICAL___buying___low": 12, "0___CATEGORICAL___buying___med": 13, "0___CATEGORICAL___buying___vhigh": 14, "1___CATEGORICAL___maint___high": 15, "1___CATEGORICAL___maint___low": 16, "1___CATEGORICAL___maint___med": 17, "1___CATEGORICAL___maint___vhigh": 18, "2___CATEGORICAL___doors___2": 19, "2___CATEGORICAL___doors___3": 20, "2___CATEGORICAL___doors___4": 21, "2___CATEGORICAL___doors___5more": 22, "3___CATEGORICAL___persons___2": 23, "3___CATEGORICAL___persons___4": 24, "3___CATEGORICAL___persons___more": 25, "4___CATEGORICAL___lug_boot___big": 26, "4___CATEGORICAL___lug_boot___med": 27, "4___CATEGORICAL___lug_boot___small": 28, "5___CATEGORICAL___safety___high": 29, "5___CATEGORICAL___safety___low": 30, "5___CATEGORICAL___safety___med": 31, "6___CATEGORICAL___class___acc": 32, "6___CATEGORICAL___class___good": 33, "6___CATEGORICAL___class___unacc": 34, "6___CATEGORICAL___class___vgood": 35}, "column_token_ids": {"0___CATEGORICAL___buying": [11, 12, 13, 14], "1___CATEGORICAL___maint": [15, 16, 17, 18], "2___CATEGORICAL___doors": [19, 20, 21, 22], "3___CATEGORICAL___persons": [23, 24, 25], "4___CATEGORICAL___lug_boot": [26, 27, 28], "5___CATEGORICAL___safety": [29, 30, 31], "6___CATEGORICAL___class": [32, 33, 34, 35]}}, "tabular_max_length": 9, "relational_max_length": null, "tabular_col_size": 1382, "relational_col_size": null, "col_transform_data": {}, "in_col_transform_data": null, "col_idx_ids": {"0": [11, 12, 13, 14], "1": [15, 16, 17, 18], "2": [19, 20, 21, 22], "3": [23, 24, 25], "4": [26, 27, 28], "5": [29, 30, 31], "6": [32, 33, 34, 35]}, "random_state": 1029, "numeric_nparts": 1, "numeric_precision": 4, "numeric_max_len": 10, "experiment_id": "id000017779185753542385664", "trainer_state": null, "target_col": null, "realtabformer_version": "0.2.4"} \ No newline at end of file diff --git a/hyperparameter/c2/realtabformer/rtf-c2-20260505_021413/models_30epochs/id000017779185753542385664/rtf_model.pt b/hyperparameter/c2/realtabformer/rtf-c2-20260505_021413/models_30epochs/id000017779185753542385664/rtf_model.pt new file mode 100644 index 0000000000000000000000000000000000000000..2388917be69c7ec0630faf6c44239c68b7607525 --- /dev/null +++ b/hyperparameter/c2/realtabformer/rtf-c2-20260505_021413/models_30epochs/id000017779185753542385664/rtf_model.pt @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:994361f55dca4106635119300a739870a5d611964cbf636e789ec4925f790a68 +size 173400547 diff --git a/hyperparameter/c2/realtabformer/rtf-c2-20260505_021413/public_gate/normalized_schema_snapshot.json b/hyperparameter/c2/realtabformer/rtf-c2-20260505_021413/public_gate/normalized_schema_snapshot.json new file mode 100644 index 0000000000000000000000000000000000000000..689b1d00d96508e44ba40e58dc4560e19afc2b3b --- /dev/null +++ b/hyperparameter/c2/realtabformer/rtf-c2-20260505_021413/public_gate/normalized_schema_snapshot.json @@ -0,0 +1,144 @@ +{ + "dataset_id": "c2", + "target_column": "class", + "task_type": "classification", + "columns": [ + { + "name": "buying", + "role": "feature", + "semantic_type": "categorical", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 4, + "unique_ratio": 0.002894, + "example_values": [ + "vhigh", + "med", + "high", + "low" + ] + } + }, + { + "name": "maint", + "role": "feature", + "semantic_type": "categorical", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 4, + "unique_ratio": 0.002894, + "example_values": [ + "vhigh", + "low", + "med", + "high" + ] + } + }, + { + "name": "doors", + "role": "feature", + "semantic_type": "categorical", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 4, + "unique_ratio": 0.002894, + "example_values": [ + "2", + "5more", + "3", + "4" + ] + } + }, + { + "name": "persons", + "role": "feature", + "semantic_type": "categorical", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 3, + "unique_ratio": 0.002171, + "example_values": [ + "2", + "4", + "more" + ] + } + }, + { + "name": "lug_boot", + "role": "feature", + "semantic_type": "categorical", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 3, + "unique_ratio": 0.002171, + "example_values": [ + "small", + "big", + "med" + ] + } + }, + { + "name": "safety", + "role": "feature", + "semantic_type": "categorical", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 3, + "unique_ratio": 0.002171, + "example_values": [ + "low", + "high", + "med" + ] + } + }, + { + "name": "class", + "role": "target", + "semantic_type": "categorical", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 4, + "unique_ratio": 0.002894, + "example_values": [ + "unacc", + "good", + "acc", + "vgood" + ] + } + } + ] +} \ No newline at end of file diff --git a/hyperparameter/c2/realtabformer/rtf-c2-20260505_021413/public_gate/public_gate_report.json b/hyperparameter/c2/realtabformer/rtf-c2-20260505_021413/public_gate/public_gate_report.json new file mode 100644 index 0000000000000000000000000000000000000000..2e4cdcb2a4e28e40d59b17a83e773f622b7636a5 --- /dev/null +++ b/hyperparameter/c2/realtabformer/rtf-c2-20260505_021413/public_gate/public_gate_report.json @@ -0,0 +1,37 @@ +{ + "dataset_id": "c2", + "status": "pass", + "checks": [ + { + "check_id": "PG001_csv_parse_ok", + "status": "pass" + }, + { + "check_id": "PG002_split_header_consistent", + "status": "pass" + }, + { + "check_id": "PG003_profile_header_match", + "status": "pass" + }, + { + "check_id": "PG004_missing_token_normalized", + "status": "pass" + }, + { + "check_id": "PG005_semantic_type_validated", + "status": "pass" + }, + { + "check_id": "PG006_target_defined_and_valid", + "status": "pass" + } + ], + "target_column": "class", + "task_type": "classification", + "input_splits": { + "train": "/data/jialinzhang/SynthesizePipeline-server/DatasetNew/c2/c2-train.csv", + "val": "/data/jialinzhang/SynthesizePipeline-server/DatasetNew/c2/c2-val.csv", + "test": "/data/jialinzhang/SynthesizePipeline-server/DatasetNew/c2/c2-test.csv" + } +} \ No newline at end of file diff --git a/hyperparameter/c2/realtabformer/rtf-c2-20260505_021413/public_gate/staged_input_manifest.json b/hyperparameter/c2/realtabformer/rtf-c2-20260505_021413/public_gate/staged_input_manifest.json new file mode 100644 index 0000000000000000000000000000000000000000..3b09a0f959a3c3917b327f88b6c124071314b532 --- /dev/null +++ b/hyperparameter/c2/realtabformer/rtf-c2-20260505_021413/public_gate/staged_input_manifest.json @@ -0,0 +1,149 @@ +{ + "dataset_id": "c2", + "target_column": "class", + "task_type": "classification", + "train_csv": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/c2/realtabformer/rtf-c2-20260505_021413/staged/public/train.csv", + "val_csv": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/c2/realtabformer/rtf-c2-20260505_021413/staged/public/val.csv", + "test_csv": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/c2/realtabformer/rtf-c2-20260505_021413/staged/public/test.csv", + "features_json": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/c2/realtabformer/rtf-c2-20260505_021413/staged/public/staged_features.json", + "public_gate_report": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/c2/realtabformer/rtf-c2-20260505_021413/public_gate/public_gate_report.json", + "column_schema": [ + { + "name": "buying", + "role": "feature", + "semantic_type": "categorical", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 4, + "unique_ratio": 0.002894, + "example_values": [ + "vhigh", + "med", + "high", + "low" + ] + } + }, + { + "name": "maint", + "role": "feature", + "semantic_type": "categorical", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 4, + "unique_ratio": 0.002894, + "example_values": [ + "vhigh", + "low", + "med", + "high" + ] + } + }, + { + "name": "doors", + "role": "feature", + "semantic_type": "categorical", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 4, + "unique_ratio": 0.002894, + "example_values": [ + "2", + "5more", + "3", + "4" + ] + } + }, + { + "name": "persons", + "role": "feature", + "semantic_type": "categorical", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 3, + "unique_ratio": 0.002171, + "example_values": [ + "2", + "4", + "more" + ] + } + }, + { + "name": "lug_boot", + "role": "feature", + "semantic_type": "categorical", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 3, + "unique_ratio": 0.002171, + "example_values": [ + "small", + "big", + "med" + ] + } + }, + { + "name": "safety", + "role": "feature", + "semantic_type": "categorical", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 3, + "unique_ratio": 0.002171, + "example_values": [ + "low", + "high", + "med" + ] + } + }, + { + "name": "class", + "role": "target", + "semantic_type": "categorical", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 4, + "unique_ratio": 0.002894, + "example_values": [ + "unacc", + "good", + "acc", + "vgood" + ] + } + } + ] +} \ No newline at end of file diff --git a/hyperparameter/c2/realtabformer/rtf-c2-20260505_021413/realtabformer_features.json b/hyperparameter/c2/realtabformer/rtf-c2-20260505_021413/realtabformer_features.json new file mode 100644 index 0000000000000000000000000000000000000000..61783861dd5de501592f76acb0469cf3f3b2622a --- /dev/null +++ b/hyperparameter/c2/realtabformer/rtf-c2-20260505_021413/realtabformer_features.json @@ -0,0 +1,37 @@ +[ + { + "feature_name": "buying", + "data_type": "categorical", + "is_target": false + }, + { + "feature_name": "maint", + "data_type": "categorical", + "is_target": false + }, + { + "feature_name": "doors", + "data_type": "categorical", + "is_target": false + }, + { + "feature_name": "persons", + "data_type": "categorical", + "is_target": false + }, + { + "feature_name": "lug_boot", + "data_type": "categorical", + "is_target": false + }, + { + "feature_name": "safety", + "data_type": "categorical", + "is_target": false + }, + { + "feature_name": "class", + "data_type": "categorical", + "is_target": true + } +] \ No newline at end of file diff --git a/hyperparameter/c2/realtabformer/rtf-c2-20260505_021413/rtf-c2-1382-20260505_021617.csv b/hyperparameter/c2/realtabformer/rtf-c2-20260505_021413/rtf-c2-1382-20260505_021617.csv new file mode 100644 index 0000000000000000000000000000000000000000..03e4940b580b011fee9dd9c297d46b0c30c2022f --- /dev/null +++ b/hyperparameter/c2/realtabformer/rtf-c2-20260505_021413/rtf-c2-1382-20260505_021617.csv @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:ff3f454de5baa680c4c0037b680e18ac32fa422e27a058e5f02915c65c367f58 +size 41467 diff --git a/hyperparameter/c2/realtabformer/rtf-c2-20260505_021413/rtf_checkpoints/checkpoint-1188/config.json b/hyperparameter/c2/realtabformer/rtf-c2-20260505_021413/rtf_checkpoints/checkpoint-1188/config.json new file mode 100644 index 0000000000000000000000000000000000000000..abc7bb2762d6bff3016eb042e7a2ac4abb80ea85 --- /dev/null +++ b/hyperparameter/c2/realtabformer/rtf-c2-20260505_021413/rtf_checkpoints/checkpoint-1188/config.json @@ -0,0 +1,34 @@ +{ + "activation_function": "gelu_new", + "add_cross_attention": false, + "architectures": [ + "GPT2LMHeadModel" + ], + "attn_pdrop": 0.1, + "bos_token_id": 5, + "dtype": "float32", + "embd_pdrop": 0.1, + "eos_token_id": 6, + "initializer_range": 0.02, + "layer_norm_epsilon": 1e-05, + "model_type": "gpt2", + "n_embd": 768, + "n_head": 12, + "n_inner": null, + "n_layer": 6, + "n_positions": 1024, + "pad_token_id": null, + "reorder_and_upcast_attn": false, + "resid_pdrop": 0.1, + "scale_attn_by_inverse_layer_idx": false, + "scale_attn_weights": true, + "summary_activation": null, + "summary_first_dropout": 0.1, + "summary_proj_to_labels": true, + "summary_type": "cls_index", + "summary_use_proj": true, + "tie_word_embeddings": true, + "transformers_version": "5.5.3", + "use_cache": false, + "vocab_size": 36 +} diff --git a/hyperparameter/c2/realtabformer/rtf-c2-20260505_021413/rtf_checkpoints/checkpoint-1188/generation_config.json b/hyperparameter/c2/realtabformer/rtf-c2-20260505_021413/rtf_checkpoints/checkpoint-1188/generation_config.json new file mode 100644 index 0000000000000000000000000000000000000000..ffe89567780e75b5c22eade9be971483b9618f39 --- /dev/null +++ b/hyperparameter/c2/realtabformer/rtf-c2-20260505_021413/rtf_checkpoints/checkpoint-1188/generation_config.json @@ -0,0 +1,9 @@ +{ + "_from_model_config": true, + "bos_token_id": 5, + "eos_token_id": 6, + "output_attentions": false, + "output_hidden_states": false, + "transformers_version": "5.5.3", + "use_cache": true +} diff --git a/hyperparameter/c2/realtabformer/rtf-c2-20260505_021413/rtf_checkpoints/checkpoint-1188/model.safetensors b/hyperparameter/c2/realtabformer/rtf-c2-20260505_021413/rtf_checkpoints/checkpoint-1188/model.safetensors new file mode 100644 index 0000000000000000000000000000000000000000..959dc816851a7baa7df422377a3424745dcc6ff5 --- /dev/null +++ b/hyperparameter/c2/realtabformer/rtf-c2-20260505_021413/rtf_checkpoints/checkpoint-1188/model.safetensors @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:701676b5ff17ce10a890e62a2597672faebfc573994e0819ce178bd49b304546 +size 173379016 diff --git a/hyperparameter/c2/realtabformer/rtf-c2-20260505_021413/rtf_checkpoints/checkpoint-1188/optimizer.pt b/hyperparameter/c2/realtabformer/rtf-c2-20260505_021413/rtf_checkpoints/checkpoint-1188/optimizer.pt new file mode 100644 index 0000000000000000000000000000000000000000..edeebc73f4717cb41c4f24a9d02e898e18bc40b6 --- /dev/null +++ b/hyperparameter/c2/realtabformer/rtf-c2-20260505_021413/rtf_checkpoints/checkpoint-1188/optimizer.pt @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:b0d59be8abfa11e24ee3bd069f3fc798b1cdadf3074f04b2083dedc5347dce8d +size 346807051 diff --git a/hyperparameter/c2/realtabformer/rtf-c2-20260505_021413/rtf_checkpoints/checkpoint-1188/rng_state.pth b/hyperparameter/c2/realtabformer/rtf-c2-20260505_021413/rtf_checkpoints/checkpoint-1188/rng_state.pth new file mode 100644 index 0000000000000000000000000000000000000000..e94cb862d602c3efe694f617b19a88aa504058ce --- /dev/null +++ b/hyperparameter/c2/realtabformer/rtf-c2-20260505_021413/rtf_checkpoints/checkpoint-1188/rng_state.pth @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:5c35d8535f0bfd7728d3a59635b18ec8e92f55b6e44803a3a74234e7fdec19b3 +size 14645 diff --git a/hyperparameter/c2/realtabformer/rtf-c2-20260505_021413/rtf_checkpoints/checkpoint-1188/scaler.pt b/hyperparameter/c2/realtabformer/rtf-c2-20260505_021413/rtf_checkpoints/checkpoint-1188/scaler.pt new file mode 100644 index 0000000000000000000000000000000000000000..cc167e1573b16c9bdeb783ad2b57ebbd80443405 --- /dev/null +++ b/hyperparameter/c2/realtabformer/rtf-c2-20260505_021413/rtf_checkpoints/checkpoint-1188/scaler.pt @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:4d6d3f5450e0d4f974750ae675e486ed5cd23552740045b211bac79224b1a9a1 +size 1383 diff --git a/hyperparameter/c2/realtabformer/rtf-c2-20260505_021413/rtf_checkpoints/checkpoint-1188/scheduler.pt b/hyperparameter/c2/realtabformer/rtf-c2-20260505_021413/rtf_checkpoints/checkpoint-1188/scheduler.pt new file mode 100644 index 0000000000000000000000000000000000000000..a66bf99df0ca8c60d3b546b29b493ea7ea439971 --- /dev/null +++ b/hyperparameter/c2/realtabformer/rtf-c2-20260505_021413/rtf_checkpoints/checkpoint-1188/scheduler.pt @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:72a63949244f55377fd8c9909a934d2b925c84eff6ebd839cbb5b9489dfff33a +size 1465 diff --git a/hyperparameter/c2/realtabformer/rtf-c2-20260505_021413/rtf_checkpoints/checkpoint-1188/trainer_state.json b/hyperparameter/c2/realtabformer/rtf-c2-20260505_021413/rtf_checkpoints/checkpoint-1188/trainer_state.json new file mode 100644 index 0000000000000000000000000000000000000000..c32ef5856921457b67578487d35dd59d4f37e301 --- /dev/null +++ b/hyperparameter/c2/realtabformer/rtf-c2-20260505_021413/rtf_checkpoints/checkpoint-1188/trainer_state.json @@ -0,0 +1,111 @@ +{ + "best_global_step": null, + "best_metric": null, + "best_model_checkpoint": null, + "epoch": 27.0, + "eval_steps": 100, + "global_step": 1188, + "is_hyper_param_search": false, + "is_local_process_zero": true, + "is_world_process_zero": true, + "log_history": [ + { + "epoch": 2.277456647398844, + "grad_norm": 0.4579336941242218, + "learning_rate": 4.6250000000000006e-05, + "loss": 1.0553965759277344, + "step": 100 + }, + { + "epoch": 4.554913294797688, + "grad_norm": 0.4333536922931671, + "learning_rate": 4.246212121212121e-05, + "loss": 0.8835969543457032, + "step": 200 + }, + { + "epoch": 6.832369942196532, + "grad_norm": 0.6369091868400574, + "learning_rate": 3.8674242424242426e-05, + "loss": 0.8714767456054687, + "step": 300 + }, + { + "epoch": 9.092485549132949, + "grad_norm": 0.33693063259124756, + "learning_rate": 3.488636363636364e-05, + "loss": 0.8616331481933593, + "step": 400 + }, + { + "epoch": 11.369942196531792, + "grad_norm": 0.3608740568161011, + "learning_rate": 3.1098484848484846e-05, + "loss": 0.8539522552490234, + "step": 500 + }, + { + "epoch": 13.647398843930636, + "grad_norm": 0.431406706571579, + "learning_rate": 2.7310606060606063e-05, + "loss": 0.8535066223144532, + "step": 600 + }, + { + "epoch": 15.92485549132948, + "grad_norm": 0.439527302980423, + "learning_rate": 2.3522727272727273e-05, + "loss": 0.8496524047851562, + "step": 700 + }, + { + "epoch": 18.184971098265898, + "grad_norm": 0.47876009345054626, + "learning_rate": 1.9734848484848487e-05, + "loss": 0.8465232086181641, + "step": 800 + }, + { + "epoch": 20.46242774566474, + "grad_norm": 0.2721438705921173, + "learning_rate": 1.59469696969697e-05, + "loss": 0.8433999633789062, + "step": 900 + }, + { + "epoch": 22.739884393063583, + "grad_norm": 0.338348925113678, + "learning_rate": 1.215909090909091e-05, + "loss": 0.8409078979492187, + "step": 1000 + }, + { + "epoch": 25.0, + "grad_norm": 0.7355383634567261, + "learning_rate": 8.37121212121212e-06, + "loss": 0.8381367492675781, + "step": 1100 + } + ], + "logging_steps": 100, + "max_steps": 1320, + "num_input_tokens_seen": 0, + "num_train_epochs": 30, + "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": 85693596254208.0, + "train_batch_size": 8, + "trial_name": null, + "trial_params": null +} diff --git a/hyperparameter/c2/realtabformer/rtf-c2-20260505_021413/rtf_checkpoints/checkpoint-1188/training_args.bin b/hyperparameter/c2/realtabformer/rtf-c2-20260505_021413/rtf_checkpoints/checkpoint-1188/training_args.bin new file mode 100644 index 0000000000000000000000000000000000000000..3d8b32516bfaeaa087fca28752b0d5ac8a4f9a32 --- /dev/null +++ b/hyperparameter/c2/realtabformer/rtf-c2-20260505_021413/rtf_checkpoints/checkpoint-1188/training_args.bin @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:0d3dc95355536f0383a0f823e8f277b91339a18334832f20d708fd987d139c82 +size 5201 diff --git a/hyperparameter/c2/realtabformer/rtf-c2-20260505_021413/rtf_checkpoints/checkpoint-1200/config.json b/hyperparameter/c2/realtabformer/rtf-c2-20260505_021413/rtf_checkpoints/checkpoint-1200/config.json new file mode 100644 index 0000000000000000000000000000000000000000..abc7bb2762d6bff3016eb042e7a2ac4abb80ea85 --- /dev/null +++ b/hyperparameter/c2/realtabformer/rtf-c2-20260505_021413/rtf_checkpoints/checkpoint-1200/config.json @@ -0,0 +1,34 @@ +{ + "activation_function": "gelu_new", + "add_cross_attention": false, + "architectures": [ + "GPT2LMHeadModel" + ], + "attn_pdrop": 0.1, + "bos_token_id": 5, + "dtype": "float32", + "embd_pdrop": 0.1, + "eos_token_id": 6, + "initializer_range": 0.02, + "layer_norm_epsilon": 1e-05, + "model_type": "gpt2", + "n_embd": 768, + "n_head": 12, + "n_inner": null, + "n_layer": 6, + "n_positions": 1024, + "pad_token_id": null, + "reorder_and_upcast_attn": false, + "resid_pdrop": 0.1, + "scale_attn_by_inverse_layer_idx": false, + "scale_attn_weights": true, + "summary_activation": null, + "summary_first_dropout": 0.1, + "summary_proj_to_labels": true, + "summary_type": "cls_index", + "summary_use_proj": true, + "tie_word_embeddings": true, + "transformers_version": "5.5.3", + "use_cache": false, + "vocab_size": 36 +} diff --git a/hyperparameter/c2/realtabformer/rtf-c2-20260505_021413/rtf_checkpoints/checkpoint-1200/generation_config.json b/hyperparameter/c2/realtabformer/rtf-c2-20260505_021413/rtf_checkpoints/checkpoint-1200/generation_config.json new file mode 100644 index 0000000000000000000000000000000000000000..ffe89567780e75b5c22eade9be971483b9618f39 --- /dev/null +++ b/hyperparameter/c2/realtabformer/rtf-c2-20260505_021413/rtf_checkpoints/checkpoint-1200/generation_config.json @@ -0,0 +1,9 @@ +{ + "_from_model_config": true, + "bos_token_id": 5, + "eos_token_id": 6, + "output_attentions": false, + "output_hidden_states": false, + "transformers_version": "5.5.3", + "use_cache": true +} diff --git a/hyperparameter/c2/realtabformer/rtf-c2-20260505_021413/rtf_checkpoints/checkpoint-1200/model.safetensors b/hyperparameter/c2/realtabformer/rtf-c2-20260505_021413/rtf_checkpoints/checkpoint-1200/model.safetensors new file mode 100644 index 0000000000000000000000000000000000000000..2deae1a9d758037ec14c60f6a9b245f38411f456 --- /dev/null +++ b/hyperparameter/c2/realtabformer/rtf-c2-20260505_021413/rtf_checkpoints/checkpoint-1200/model.safetensors @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:5e7d7e376c7ecf9d5dbded7d575acfe13c4ac5192cbedecc4712611f95a8fa4f +size 173379016 diff --git a/hyperparameter/c2/realtabformer/rtf-c2-20260505_021413/rtf_checkpoints/checkpoint-1200/optimizer.pt b/hyperparameter/c2/realtabformer/rtf-c2-20260505_021413/rtf_checkpoints/checkpoint-1200/optimizer.pt new file mode 100644 index 0000000000000000000000000000000000000000..da321308077a8663ea7382b4fcd1aa7080f8819c --- /dev/null +++ b/hyperparameter/c2/realtabformer/rtf-c2-20260505_021413/rtf_checkpoints/checkpoint-1200/optimizer.pt @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:c43ee9303caab5252d1adc1e86f147b4582bb71dd06896f76a0df95016050c9a +size 346807051 diff --git a/hyperparameter/c2/realtabformer/rtf-c2-20260505_021413/rtf_checkpoints/checkpoint-1200/rng_state.pth b/hyperparameter/c2/realtabformer/rtf-c2-20260505_021413/rtf_checkpoints/checkpoint-1200/rng_state.pth new file mode 100644 index 0000000000000000000000000000000000000000..c013dda040092cf3ba831c0a0367d3e45b1797de --- /dev/null +++ b/hyperparameter/c2/realtabformer/rtf-c2-20260505_021413/rtf_checkpoints/checkpoint-1200/rng_state.pth @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:7be5ccf055c421954393c97d50b7d77cb8030e11663cff64db70ebec06dd1716 +size 14645 diff --git a/hyperparameter/c2/realtabformer/rtf-c2-20260505_021413/rtf_checkpoints/checkpoint-1200/scaler.pt b/hyperparameter/c2/realtabformer/rtf-c2-20260505_021413/rtf_checkpoints/checkpoint-1200/scaler.pt new file mode 100644 index 0000000000000000000000000000000000000000..3529b9e1021ddc95e3af7b2d72233fab602a2d19 --- /dev/null +++ b/hyperparameter/c2/realtabformer/rtf-c2-20260505_021413/rtf_checkpoints/checkpoint-1200/scaler.pt @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:18783150ac09b6b81cea5af47876a10bfe5f36c3d76aca4ffce5382bdfaf7b28 +size 1383 diff --git a/hyperparameter/c2/realtabformer/rtf-c2-20260505_021413/rtf_checkpoints/checkpoint-1200/scheduler.pt b/hyperparameter/c2/realtabformer/rtf-c2-20260505_021413/rtf_checkpoints/checkpoint-1200/scheduler.pt new file mode 100644 index 0000000000000000000000000000000000000000..08879e7e23411846d80417f22d680928123da0f9 --- /dev/null +++ b/hyperparameter/c2/realtabformer/rtf-c2-20260505_021413/rtf_checkpoints/checkpoint-1200/scheduler.pt @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:5d4e61d4dd402aecbf94f5c31a10c7c0fc2bf46450ae18e0bf3895f0e35324e3 +size 1465 diff --git a/hyperparameter/c2/realtabformer/rtf-c2-20260505_021413/rtf_checkpoints/checkpoint-1200/trainer_state.json b/hyperparameter/c2/realtabformer/rtf-c2-20260505_021413/rtf_checkpoints/checkpoint-1200/trainer_state.json new file mode 100644 index 0000000000000000000000000000000000000000..fd2431857e221d3a4418a0da63372b62c925ab7e --- /dev/null +++ b/hyperparameter/c2/realtabformer/rtf-c2-20260505_021413/rtf_checkpoints/checkpoint-1200/trainer_state.json @@ -0,0 +1,118 @@ +{ + "best_global_step": null, + "best_metric": null, + "best_model_checkpoint": null, + "epoch": 27.277456647398843, + "eval_steps": 100, + "global_step": 1200, + "is_hyper_param_search": false, + "is_local_process_zero": true, + "is_world_process_zero": true, + "log_history": [ + { + "epoch": 2.277456647398844, + "grad_norm": 0.4579336941242218, + "learning_rate": 4.6250000000000006e-05, + "loss": 1.0553965759277344, + "step": 100 + }, + { + "epoch": 4.554913294797688, + "grad_norm": 0.4333536922931671, + "learning_rate": 4.246212121212121e-05, + "loss": 0.8835969543457032, + "step": 200 + }, + { + "epoch": 6.832369942196532, + "grad_norm": 0.6369091868400574, + "learning_rate": 3.8674242424242426e-05, + "loss": 0.8714767456054687, + "step": 300 + }, + { + "epoch": 9.092485549132949, + "grad_norm": 0.33693063259124756, + "learning_rate": 3.488636363636364e-05, + "loss": 0.8616331481933593, + "step": 400 + }, + { + "epoch": 11.369942196531792, + "grad_norm": 0.3608740568161011, + "learning_rate": 3.1098484848484846e-05, + "loss": 0.8539522552490234, + "step": 500 + }, + { + "epoch": 13.647398843930636, + "grad_norm": 0.431406706571579, + "learning_rate": 2.7310606060606063e-05, + "loss": 0.8535066223144532, + "step": 600 + }, + { + "epoch": 15.92485549132948, + "grad_norm": 0.439527302980423, + "learning_rate": 2.3522727272727273e-05, + "loss": 0.8496524047851562, + "step": 700 + }, + { + "epoch": 18.184971098265898, + "grad_norm": 0.47876009345054626, + "learning_rate": 1.9734848484848487e-05, + "loss": 0.8465232086181641, + "step": 800 + }, + { + "epoch": 20.46242774566474, + "grad_norm": 0.2721438705921173, + "learning_rate": 1.59469696969697e-05, + "loss": 0.8433999633789062, + "step": 900 + }, + { + "epoch": 22.739884393063583, + "grad_norm": 0.338348925113678, + "learning_rate": 1.215909090909091e-05, + "loss": 0.8409078979492187, + "step": 1000 + }, + { + "epoch": 25.0, + "grad_norm": 0.7355383634567261, + "learning_rate": 8.37121212121212e-06, + "loss": 0.8381367492675781, + "step": 1100 + }, + { + "epoch": 27.277456647398843, + "grad_norm": 0.33456525206565857, + "learning_rate": 4.583333333333333e-06, + "loss": 0.8362679290771484, + "step": 1200 + } + ], + "logging_steps": 100, + "max_steps": 1320, + "num_input_tokens_seen": 0, + "num_train_epochs": 30, + "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": 86575472787456.0, + "train_batch_size": 8, + "trial_name": null, + "trial_params": null +} diff --git a/hyperparameter/c2/realtabformer/rtf-c2-20260505_021413/rtf_checkpoints/checkpoint-1200/training_args.bin b/hyperparameter/c2/realtabformer/rtf-c2-20260505_021413/rtf_checkpoints/checkpoint-1200/training_args.bin new file mode 100644 index 0000000000000000000000000000000000000000..3d8b32516bfaeaa087fca28752b0d5ac8a4f9a32 --- /dev/null +++ b/hyperparameter/c2/realtabformer/rtf-c2-20260505_021413/rtf_checkpoints/checkpoint-1200/training_args.bin @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:0d3dc95355536f0383a0f823e8f277b91339a18334832f20d708fd987d139c82 +size 5201 diff --git a/hyperparameter/c2/realtabformer/rtf-c2-20260505_021413/rtf_checkpoints/checkpoint-1232/config.json b/hyperparameter/c2/realtabformer/rtf-c2-20260505_021413/rtf_checkpoints/checkpoint-1232/config.json new file mode 100644 index 0000000000000000000000000000000000000000..abc7bb2762d6bff3016eb042e7a2ac4abb80ea85 --- /dev/null +++ b/hyperparameter/c2/realtabformer/rtf-c2-20260505_021413/rtf_checkpoints/checkpoint-1232/config.json @@ -0,0 +1,34 @@ +{ + "activation_function": "gelu_new", + "add_cross_attention": false, + "architectures": [ + "GPT2LMHeadModel" + ], + "attn_pdrop": 0.1, + "bos_token_id": 5, + "dtype": "float32", + "embd_pdrop": 0.1, + "eos_token_id": 6, + "initializer_range": 0.02, + "layer_norm_epsilon": 1e-05, + "model_type": "gpt2", + "n_embd": 768, + "n_head": 12, + "n_inner": null, + "n_layer": 6, + "n_positions": 1024, + "pad_token_id": null, + "reorder_and_upcast_attn": false, + "resid_pdrop": 0.1, + "scale_attn_by_inverse_layer_idx": false, + "scale_attn_weights": true, + "summary_activation": null, + "summary_first_dropout": 0.1, + "summary_proj_to_labels": true, + "summary_type": "cls_index", + "summary_use_proj": true, + "tie_word_embeddings": true, + "transformers_version": "5.5.3", + "use_cache": false, + "vocab_size": 36 +} diff --git a/hyperparameter/c2/realtabformer/rtf-c2-20260505_021413/rtf_checkpoints/checkpoint-1232/generation_config.json b/hyperparameter/c2/realtabformer/rtf-c2-20260505_021413/rtf_checkpoints/checkpoint-1232/generation_config.json new file mode 100644 index 0000000000000000000000000000000000000000..ffe89567780e75b5c22eade9be971483b9618f39 --- /dev/null +++ b/hyperparameter/c2/realtabformer/rtf-c2-20260505_021413/rtf_checkpoints/checkpoint-1232/generation_config.json @@ -0,0 +1,9 @@ +{ + "_from_model_config": true, + "bos_token_id": 5, + "eos_token_id": 6, + "output_attentions": false, + "output_hidden_states": false, + "transformers_version": "5.5.3", + "use_cache": true +} diff --git a/hyperparameter/c2/realtabformer/rtf-c2-20260505_021413/rtf_checkpoints/checkpoint-1232/model.safetensors b/hyperparameter/c2/realtabformer/rtf-c2-20260505_021413/rtf_checkpoints/checkpoint-1232/model.safetensors new file mode 100644 index 0000000000000000000000000000000000000000..c3e58aad44632998399a8e61dbb5253eb0f901f5 --- /dev/null +++ b/hyperparameter/c2/realtabformer/rtf-c2-20260505_021413/rtf_checkpoints/checkpoint-1232/model.safetensors @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:85005f5e54d48fc284fc3a242e8dc0038d5cbb9cbc4414d92134f95dd4340952 +size 173379016 diff --git a/hyperparameter/c2/realtabformer/rtf-c2-20260505_021413/rtf_checkpoints/checkpoint-1232/optimizer.pt b/hyperparameter/c2/realtabformer/rtf-c2-20260505_021413/rtf_checkpoints/checkpoint-1232/optimizer.pt new file mode 100644 index 0000000000000000000000000000000000000000..963ce72d3b2de2d9fca25a098597339d153bec82 --- /dev/null +++ b/hyperparameter/c2/realtabformer/rtf-c2-20260505_021413/rtf_checkpoints/checkpoint-1232/optimizer.pt @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:203a6d7f9060cf0a0b4c535e46f9e3e19c742b6143fd75f2b9f86e35fdbe3300 +size 346807051 diff --git a/hyperparameter/c2/realtabformer/rtf-c2-20260505_021413/rtf_checkpoints/checkpoint-1232/rng_state.pth b/hyperparameter/c2/realtabformer/rtf-c2-20260505_021413/rtf_checkpoints/checkpoint-1232/rng_state.pth new file mode 100644 index 0000000000000000000000000000000000000000..34a8c525d8c6e26ddf1d8bf20f52662717ddcf3f --- /dev/null +++ b/hyperparameter/c2/realtabformer/rtf-c2-20260505_021413/rtf_checkpoints/checkpoint-1232/rng_state.pth @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:384313e9155d0abbbb4f2c1010e191a9480af80f0367d8fe9d62b6ca6930d6b4 +size 14645 diff --git a/hyperparameter/c2/realtabformer/rtf-c2-20260505_021413/rtf_checkpoints/checkpoint-1232/scaler.pt b/hyperparameter/c2/realtabformer/rtf-c2-20260505_021413/rtf_checkpoints/checkpoint-1232/scaler.pt new file mode 100644 index 0000000000000000000000000000000000000000..79a9fe652b2ef70682bff3834d8a2bef36b31019 --- /dev/null +++ b/hyperparameter/c2/realtabformer/rtf-c2-20260505_021413/rtf_checkpoints/checkpoint-1232/scaler.pt @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:56b5df91ee17ac2349e3455abb94701f87d05fc4180e41774d499025a72725f3 +size 1383 diff --git a/hyperparameter/c2/realtabformer/rtf-c2-20260505_021413/rtf_checkpoints/checkpoint-1232/scheduler.pt b/hyperparameter/c2/realtabformer/rtf-c2-20260505_021413/rtf_checkpoints/checkpoint-1232/scheduler.pt new file mode 100644 index 0000000000000000000000000000000000000000..9b9642595cabd2052e7efa9fdf585bf9dd7ca697 --- /dev/null +++ b/hyperparameter/c2/realtabformer/rtf-c2-20260505_021413/rtf_checkpoints/checkpoint-1232/scheduler.pt @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:c8cc082c5f517ad2f09c66fd9437208bc619aa7760299b1dcc5602683897b1eb +size 1465 diff --git a/hyperparameter/c2/realtabformer/rtf-c2-20260505_021413/rtf_checkpoints/checkpoint-1232/trainer_state.json b/hyperparameter/c2/realtabformer/rtf-c2-20260505_021413/rtf_checkpoints/checkpoint-1232/trainer_state.json new file mode 100644 index 0000000000000000000000000000000000000000..b3f7b776e74d95f5987069a149e4fb575459a0e4 --- /dev/null +++ b/hyperparameter/c2/realtabformer/rtf-c2-20260505_021413/rtf_checkpoints/checkpoint-1232/trainer_state.json @@ -0,0 +1,118 @@ +{ + "best_global_step": null, + "best_metric": null, + "best_model_checkpoint": null, + "epoch": 28.0, + "eval_steps": 100, + "global_step": 1232, + "is_hyper_param_search": false, + "is_local_process_zero": true, + "is_world_process_zero": true, + "log_history": [ + { + "epoch": 2.277456647398844, + "grad_norm": 0.4579336941242218, + "learning_rate": 4.6250000000000006e-05, + "loss": 1.0553965759277344, + "step": 100 + }, + { + "epoch": 4.554913294797688, + "grad_norm": 0.4333536922931671, + "learning_rate": 4.246212121212121e-05, + "loss": 0.8835969543457032, + "step": 200 + }, + { + "epoch": 6.832369942196532, + "grad_norm": 0.6369091868400574, + "learning_rate": 3.8674242424242426e-05, + "loss": 0.8714767456054687, + "step": 300 + }, + { + "epoch": 9.092485549132949, + "grad_norm": 0.33693063259124756, + "learning_rate": 3.488636363636364e-05, + "loss": 0.8616331481933593, + "step": 400 + }, + { + "epoch": 11.369942196531792, + "grad_norm": 0.3608740568161011, + "learning_rate": 3.1098484848484846e-05, + "loss": 0.8539522552490234, + "step": 500 + }, + { + "epoch": 13.647398843930636, + "grad_norm": 0.431406706571579, + "learning_rate": 2.7310606060606063e-05, + "loss": 0.8535066223144532, + "step": 600 + }, + { + "epoch": 15.92485549132948, + "grad_norm": 0.439527302980423, + "learning_rate": 2.3522727272727273e-05, + "loss": 0.8496524047851562, + "step": 700 + }, + { + "epoch": 18.184971098265898, + "grad_norm": 0.47876009345054626, + "learning_rate": 1.9734848484848487e-05, + "loss": 0.8465232086181641, + "step": 800 + }, + { + "epoch": 20.46242774566474, + "grad_norm": 0.2721438705921173, + "learning_rate": 1.59469696969697e-05, + "loss": 0.8433999633789062, + "step": 900 + }, + { + "epoch": 22.739884393063583, + "grad_norm": 0.338348925113678, + "learning_rate": 1.215909090909091e-05, + "loss": 0.8409078979492187, + "step": 1000 + }, + { + "epoch": 25.0, + "grad_norm": 0.7355383634567261, + "learning_rate": 8.37121212121212e-06, + "loss": 0.8381367492675781, + "step": 1100 + }, + { + "epoch": 27.277456647398843, + "grad_norm": 0.33456525206565857, + "learning_rate": 4.583333333333333e-06, + "loss": 0.8362679290771484, + "step": 1200 + } + ], + "logging_steps": 100, + "max_steps": 1320, + "num_input_tokens_seen": 0, + "num_train_epochs": 30, + "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": 88867433152512.0, + "train_batch_size": 8, + "trial_name": null, + "trial_params": null +} diff --git a/hyperparameter/c2/realtabformer/rtf-c2-20260505_021413/rtf_checkpoints/checkpoint-1232/training_args.bin b/hyperparameter/c2/realtabformer/rtf-c2-20260505_021413/rtf_checkpoints/checkpoint-1232/training_args.bin new file mode 100644 index 0000000000000000000000000000000000000000..3d8b32516bfaeaa087fca28752b0d5ac8a4f9a32 --- /dev/null +++ b/hyperparameter/c2/realtabformer/rtf-c2-20260505_021413/rtf_checkpoints/checkpoint-1232/training_args.bin @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:0d3dc95355536f0383a0f823e8f277b91339a18334832f20d708fd987d139c82 +size 5201 diff --git a/hyperparameter/c2/realtabformer/rtf-c2-20260505_021413/rtf_checkpoints/checkpoint-1276/config.json b/hyperparameter/c2/realtabformer/rtf-c2-20260505_021413/rtf_checkpoints/checkpoint-1276/config.json new file mode 100644 index 0000000000000000000000000000000000000000..abc7bb2762d6bff3016eb042e7a2ac4abb80ea85 --- /dev/null +++ b/hyperparameter/c2/realtabformer/rtf-c2-20260505_021413/rtf_checkpoints/checkpoint-1276/config.json @@ -0,0 +1,34 @@ +{ + "activation_function": "gelu_new", + "add_cross_attention": false, + "architectures": [ + "GPT2LMHeadModel" + ], + "attn_pdrop": 0.1, + "bos_token_id": 5, + "dtype": "float32", + "embd_pdrop": 0.1, + "eos_token_id": 6, + "initializer_range": 0.02, + "layer_norm_epsilon": 1e-05, + "model_type": "gpt2", + "n_embd": 768, + "n_head": 12, + "n_inner": null, + "n_layer": 6, + "n_positions": 1024, + "pad_token_id": null, + "reorder_and_upcast_attn": false, + "resid_pdrop": 0.1, + "scale_attn_by_inverse_layer_idx": false, + "scale_attn_weights": true, + "summary_activation": null, + "summary_first_dropout": 0.1, + "summary_proj_to_labels": true, + "summary_type": "cls_index", + "summary_use_proj": true, + "tie_word_embeddings": true, + "transformers_version": "5.5.3", + "use_cache": false, + "vocab_size": 36 +} diff --git a/hyperparameter/c2/realtabformer/rtf-c2-20260505_021413/rtf_checkpoints/checkpoint-1276/generation_config.json b/hyperparameter/c2/realtabformer/rtf-c2-20260505_021413/rtf_checkpoints/checkpoint-1276/generation_config.json new file mode 100644 index 0000000000000000000000000000000000000000..ffe89567780e75b5c22eade9be971483b9618f39 --- /dev/null +++ b/hyperparameter/c2/realtabformer/rtf-c2-20260505_021413/rtf_checkpoints/checkpoint-1276/generation_config.json @@ -0,0 +1,9 @@ +{ + "_from_model_config": true, + "bos_token_id": 5, + "eos_token_id": 6, + "output_attentions": false, + "output_hidden_states": false, + "transformers_version": "5.5.3", + "use_cache": true +} diff --git a/hyperparameter/c2/realtabformer/rtf-c2-20260505_021413/rtf_checkpoints/checkpoint-1276/model.safetensors b/hyperparameter/c2/realtabformer/rtf-c2-20260505_021413/rtf_checkpoints/checkpoint-1276/model.safetensors new file mode 100644 index 0000000000000000000000000000000000000000..33f4bf362fca092805b1ef426f011f24b75cefb6 --- /dev/null +++ b/hyperparameter/c2/realtabformer/rtf-c2-20260505_021413/rtf_checkpoints/checkpoint-1276/model.safetensors @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:a200f3e5ca780aab8b26fc7d5c62fa4dc82dc358e635f906d7853d15cfd8a304 +size 173379016 diff --git a/hyperparameter/c2/realtabformer/rtf-c2-20260505_021413/rtf_checkpoints/checkpoint-1276/optimizer.pt b/hyperparameter/c2/realtabformer/rtf-c2-20260505_021413/rtf_checkpoints/checkpoint-1276/optimizer.pt new file mode 100644 index 0000000000000000000000000000000000000000..70c6ae0d1f2ddbe407db98b0408820aff6e74621 --- /dev/null +++ b/hyperparameter/c2/realtabformer/rtf-c2-20260505_021413/rtf_checkpoints/checkpoint-1276/optimizer.pt @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:ffc6a4da0d3bdc647aac1f996757c0699001a1f071b093fff942bbbcf7442b20 +size 346807051 diff --git a/hyperparameter/c2/realtabformer/rtf-c2-20260505_021413/rtf_checkpoints/checkpoint-1276/rng_state.pth b/hyperparameter/c2/realtabformer/rtf-c2-20260505_021413/rtf_checkpoints/checkpoint-1276/rng_state.pth new file mode 100644 index 0000000000000000000000000000000000000000..5418803a8e0d5f57aafaa835fbae7ad85731434f --- /dev/null +++ b/hyperparameter/c2/realtabformer/rtf-c2-20260505_021413/rtf_checkpoints/checkpoint-1276/rng_state.pth @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:844dd2c092dd3a0f3364eb4141bf607e3074fd0b69dea3f9213b41b895b2279f +size 14645 diff --git a/hyperparameter/c2/realtabformer/rtf-c2-20260505_021413/rtf_checkpoints/checkpoint-1276/scaler.pt b/hyperparameter/c2/realtabformer/rtf-c2-20260505_021413/rtf_checkpoints/checkpoint-1276/scaler.pt new file mode 100644 index 0000000000000000000000000000000000000000..d1e58cc96afd126b8cda731ac4a43b3b8049ac95 --- /dev/null +++ b/hyperparameter/c2/realtabformer/rtf-c2-20260505_021413/rtf_checkpoints/checkpoint-1276/scaler.pt @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:d8efc1fc9483eccd94bcdc216b9001029ef1cb22108799f0857de75101460730 +size 1383 diff --git a/hyperparameter/c2/realtabformer/rtf-c2-20260505_021413/rtf_checkpoints/checkpoint-1276/scheduler.pt b/hyperparameter/c2/realtabformer/rtf-c2-20260505_021413/rtf_checkpoints/checkpoint-1276/scheduler.pt new file mode 100644 index 0000000000000000000000000000000000000000..9c60de9fbb8758612edb223278077ab7468a4f81 --- /dev/null +++ b/hyperparameter/c2/realtabformer/rtf-c2-20260505_021413/rtf_checkpoints/checkpoint-1276/scheduler.pt @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:434495b7b8f8a9e492e55a45194baefe564b40e9cd308c20d6372bc94c592c74 +size 1465 diff --git a/hyperparameter/c2/realtabformer/rtf-c2-20260505_021413/rtf_checkpoints/checkpoint-1276/trainer_state.json b/hyperparameter/c2/realtabformer/rtf-c2-20260505_021413/rtf_checkpoints/checkpoint-1276/trainer_state.json new file mode 100644 index 0000000000000000000000000000000000000000..d346218b24d36ca5bd95a3b1e396d05899eaaf8e --- /dev/null +++ b/hyperparameter/c2/realtabformer/rtf-c2-20260505_021413/rtf_checkpoints/checkpoint-1276/trainer_state.json @@ -0,0 +1,118 @@ +{ + "best_global_step": null, + "best_metric": null, + "best_model_checkpoint": null, + "epoch": 29.0, + "eval_steps": 100, + "global_step": 1276, + "is_hyper_param_search": false, + "is_local_process_zero": true, + "is_world_process_zero": true, + "log_history": [ + { + "epoch": 2.277456647398844, + "grad_norm": 0.4579336941242218, + "learning_rate": 4.6250000000000006e-05, + "loss": 1.0553965759277344, + "step": 100 + }, + { + "epoch": 4.554913294797688, + "grad_norm": 0.4333536922931671, + "learning_rate": 4.246212121212121e-05, + "loss": 0.8835969543457032, + "step": 200 + }, + { + "epoch": 6.832369942196532, + "grad_norm": 0.6369091868400574, + "learning_rate": 3.8674242424242426e-05, + "loss": 0.8714767456054687, + "step": 300 + }, + { + "epoch": 9.092485549132949, + "grad_norm": 0.33693063259124756, + "learning_rate": 3.488636363636364e-05, + "loss": 0.8616331481933593, + "step": 400 + }, + { + "epoch": 11.369942196531792, + "grad_norm": 0.3608740568161011, + "learning_rate": 3.1098484848484846e-05, + "loss": 0.8539522552490234, + "step": 500 + }, + { + "epoch": 13.647398843930636, + "grad_norm": 0.431406706571579, + "learning_rate": 2.7310606060606063e-05, + "loss": 0.8535066223144532, + "step": 600 + }, + { + "epoch": 15.92485549132948, + "grad_norm": 0.439527302980423, + "learning_rate": 2.3522727272727273e-05, + "loss": 0.8496524047851562, + "step": 700 + }, + { + "epoch": 18.184971098265898, + "grad_norm": 0.47876009345054626, + "learning_rate": 1.9734848484848487e-05, + "loss": 0.8465232086181641, + "step": 800 + }, + { + "epoch": 20.46242774566474, + "grad_norm": 0.2721438705921173, + "learning_rate": 1.59469696969697e-05, + "loss": 0.8433999633789062, + "step": 900 + }, + { + "epoch": 22.739884393063583, + "grad_norm": 0.338348925113678, + "learning_rate": 1.215909090909091e-05, + "loss": 0.8409078979492187, + "step": 1000 + }, + { + "epoch": 25.0, + "grad_norm": 0.7355383634567261, + "learning_rate": 8.37121212121212e-06, + "loss": 0.8381367492675781, + "step": 1100 + }, + { + "epoch": 27.277456647398843, + "grad_norm": 0.33456525206565857, + "learning_rate": 4.583333333333333e-06, + "loss": 0.8362679290771484, + "step": 1200 + } + ], + "logging_steps": 100, + "max_steps": 1320, + "num_input_tokens_seen": 0, + "num_train_epochs": 30, + "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": 92041270050816.0, + "train_batch_size": 8, + "trial_name": null, + "trial_params": null +} diff --git a/hyperparameter/c2/realtabformer/rtf-c2-20260505_021413/rtf_checkpoints/checkpoint-1276/training_args.bin b/hyperparameter/c2/realtabformer/rtf-c2-20260505_021413/rtf_checkpoints/checkpoint-1276/training_args.bin new file mode 100644 index 0000000000000000000000000000000000000000..3d8b32516bfaeaa087fca28752b0d5ac8a4f9a32 --- /dev/null +++ b/hyperparameter/c2/realtabformer/rtf-c2-20260505_021413/rtf_checkpoints/checkpoint-1276/training_args.bin @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:0d3dc95355536f0383a0f823e8f277b91339a18334832f20d708fd987d139c82 +size 5201 diff --git a/hyperparameter/c2/realtabformer/rtf-c2-20260505_021413/rtf_checkpoints/checkpoint-1300/config.json b/hyperparameter/c2/realtabformer/rtf-c2-20260505_021413/rtf_checkpoints/checkpoint-1300/config.json new file mode 100644 index 0000000000000000000000000000000000000000..abc7bb2762d6bff3016eb042e7a2ac4abb80ea85 --- /dev/null +++ b/hyperparameter/c2/realtabformer/rtf-c2-20260505_021413/rtf_checkpoints/checkpoint-1300/config.json @@ -0,0 +1,34 @@ +{ + "activation_function": "gelu_new", + "add_cross_attention": false, + "architectures": [ + "GPT2LMHeadModel" + ], + "attn_pdrop": 0.1, + "bos_token_id": 5, + "dtype": "float32", + "embd_pdrop": 0.1, + "eos_token_id": 6, + "initializer_range": 0.02, + "layer_norm_epsilon": 1e-05, + "model_type": "gpt2", + "n_embd": 768, + "n_head": 12, + "n_inner": null, + "n_layer": 6, + "n_positions": 1024, + "pad_token_id": null, + "reorder_and_upcast_attn": false, + "resid_pdrop": 0.1, + "scale_attn_by_inverse_layer_idx": false, + "scale_attn_weights": true, + "summary_activation": null, + "summary_first_dropout": 0.1, + "summary_proj_to_labels": true, + "summary_type": "cls_index", + "summary_use_proj": true, + "tie_word_embeddings": true, + "transformers_version": "5.5.3", + "use_cache": false, + "vocab_size": 36 +} diff --git a/hyperparameter/c2/realtabformer/rtf-c2-20260505_021413/rtf_checkpoints/checkpoint-1300/generation_config.json b/hyperparameter/c2/realtabformer/rtf-c2-20260505_021413/rtf_checkpoints/checkpoint-1300/generation_config.json new file mode 100644 index 0000000000000000000000000000000000000000..ffe89567780e75b5c22eade9be971483b9618f39 --- /dev/null +++ b/hyperparameter/c2/realtabformer/rtf-c2-20260505_021413/rtf_checkpoints/checkpoint-1300/generation_config.json @@ -0,0 +1,9 @@ +{ + "_from_model_config": true, + "bos_token_id": 5, + "eos_token_id": 6, + "output_attentions": false, + "output_hidden_states": false, + "transformers_version": "5.5.3", + "use_cache": true +} diff --git a/hyperparameter/c2/realtabformer/rtf-c2-20260505_021413/rtf_checkpoints/checkpoint-1300/model.safetensors b/hyperparameter/c2/realtabformer/rtf-c2-20260505_021413/rtf_checkpoints/checkpoint-1300/model.safetensors new file mode 100644 index 0000000000000000000000000000000000000000..8dafd617cd6f5f3ce11e3f16b768ed9a9a50b746 --- /dev/null +++ b/hyperparameter/c2/realtabformer/rtf-c2-20260505_021413/rtf_checkpoints/checkpoint-1300/model.safetensors @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:ae26e3596f819d965968186dfab4f652ca3e1f621eee9d094858a2e34c9fc003 +size 173379016 diff --git a/hyperparameter/c2/realtabformer/rtf-c2-20260505_021413/rtf_checkpoints/checkpoint-1300/optimizer.pt b/hyperparameter/c2/realtabformer/rtf-c2-20260505_021413/rtf_checkpoints/checkpoint-1300/optimizer.pt new file mode 100644 index 0000000000000000000000000000000000000000..da1867ddbc258025bdd6bbbf263cc9072ff8d403 --- /dev/null +++ b/hyperparameter/c2/realtabformer/rtf-c2-20260505_021413/rtf_checkpoints/checkpoint-1300/optimizer.pt @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:cb088f094e573b0f1b144e243d40f52fdec71b4ec705093163fd5ac43e807e41 +size 346807051 diff --git a/hyperparameter/c2/realtabformer/rtf-c2-20260505_021413/rtf_checkpoints/checkpoint-1300/rng_state.pth b/hyperparameter/c2/realtabformer/rtf-c2-20260505_021413/rtf_checkpoints/checkpoint-1300/rng_state.pth new file mode 100644 index 0000000000000000000000000000000000000000..652362973707dbfb3db56b5b854f23acf7b6efd8 --- /dev/null +++ b/hyperparameter/c2/realtabformer/rtf-c2-20260505_021413/rtf_checkpoints/checkpoint-1300/rng_state.pth @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:30ff6a2f65c5c571c970cdc5c7df17b66bd41b32f837419e44893562a0bf3406 +size 14645 diff --git a/hyperparameter/c2/realtabformer/rtf-c2-20260505_021413/rtf_checkpoints/checkpoint-1300/scaler.pt b/hyperparameter/c2/realtabformer/rtf-c2-20260505_021413/rtf_checkpoints/checkpoint-1300/scaler.pt new file mode 100644 index 0000000000000000000000000000000000000000..cd1751ee1bd5c26420c720d10acfb383d7829549 --- /dev/null +++ b/hyperparameter/c2/realtabformer/rtf-c2-20260505_021413/rtf_checkpoints/checkpoint-1300/scaler.pt @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:317914e1b0b7e57d42f0fa6759aa19d9a30f1d604cc5192b2404476b6f3f4a62 +size 1383 diff --git a/hyperparameter/c2/realtabformer/rtf-c2-20260505_021413/rtf_checkpoints/checkpoint-1300/scheduler.pt b/hyperparameter/c2/realtabformer/rtf-c2-20260505_021413/rtf_checkpoints/checkpoint-1300/scheduler.pt new file mode 100644 index 0000000000000000000000000000000000000000..2830e06484e6bea1ba0d11bbf2686bdfe695b356 --- /dev/null +++ b/hyperparameter/c2/realtabformer/rtf-c2-20260505_021413/rtf_checkpoints/checkpoint-1300/scheduler.pt @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:aaa9cf374223ec10be814f507687d7123db05e629cc7c8f032ae700a02e0dfec +size 1465 diff --git a/hyperparameter/c2/realtabformer/rtf-c2-20260505_021413/rtf_checkpoints/checkpoint-1300/trainer_state.json b/hyperparameter/c2/realtabformer/rtf-c2-20260505_021413/rtf_checkpoints/checkpoint-1300/trainer_state.json new file mode 100644 index 0000000000000000000000000000000000000000..f452d75d816a1341eb800c43fe2d4d3b67f99040 --- /dev/null +++ b/hyperparameter/c2/realtabformer/rtf-c2-20260505_021413/rtf_checkpoints/checkpoint-1300/trainer_state.json @@ -0,0 +1,125 @@ +{ + "best_global_step": null, + "best_metric": null, + "best_model_checkpoint": null, + "epoch": 29.55491329479769, + "eval_steps": 100, + "global_step": 1300, + "is_hyper_param_search": false, + "is_local_process_zero": true, + "is_world_process_zero": true, + "log_history": [ + { + "epoch": 2.277456647398844, + "grad_norm": 0.4579336941242218, + "learning_rate": 4.6250000000000006e-05, + "loss": 1.0553965759277344, + "step": 100 + }, + { + "epoch": 4.554913294797688, + "grad_norm": 0.4333536922931671, + "learning_rate": 4.246212121212121e-05, + "loss": 0.8835969543457032, + "step": 200 + }, + { + "epoch": 6.832369942196532, + "grad_norm": 0.6369091868400574, + "learning_rate": 3.8674242424242426e-05, + "loss": 0.8714767456054687, + "step": 300 + }, + { + "epoch": 9.092485549132949, + "grad_norm": 0.33693063259124756, + "learning_rate": 3.488636363636364e-05, + "loss": 0.8616331481933593, + "step": 400 + }, + { + "epoch": 11.369942196531792, + "grad_norm": 0.3608740568161011, + "learning_rate": 3.1098484848484846e-05, + "loss": 0.8539522552490234, + "step": 500 + }, + { + "epoch": 13.647398843930636, + "grad_norm": 0.431406706571579, + "learning_rate": 2.7310606060606063e-05, + "loss": 0.8535066223144532, + "step": 600 + }, + { + "epoch": 15.92485549132948, + "grad_norm": 0.439527302980423, + "learning_rate": 2.3522727272727273e-05, + "loss": 0.8496524047851562, + "step": 700 + }, + { + "epoch": 18.184971098265898, + "grad_norm": 0.47876009345054626, + "learning_rate": 1.9734848484848487e-05, + "loss": 0.8465232086181641, + "step": 800 + }, + { + "epoch": 20.46242774566474, + "grad_norm": 0.2721438705921173, + "learning_rate": 1.59469696969697e-05, + "loss": 0.8433999633789062, + "step": 900 + }, + { + "epoch": 22.739884393063583, + "grad_norm": 0.338348925113678, + "learning_rate": 1.215909090909091e-05, + "loss": 0.8409078979492187, + "step": 1000 + }, + { + "epoch": 25.0, + "grad_norm": 0.7355383634567261, + "learning_rate": 8.37121212121212e-06, + "loss": 0.8381367492675781, + "step": 1100 + }, + { + "epoch": 27.277456647398843, + "grad_norm": 0.33456525206565857, + "learning_rate": 4.583333333333333e-06, + "loss": 0.8362679290771484, + "step": 1200 + }, + { + "epoch": 29.55491329479769, + "grad_norm": 0.3747257888317108, + "learning_rate": 7.954545454545454e-07, + "loss": 0.8347467041015625, + "step": 1300 + } + ], + "logging_steps": 100, + "max_steps": 1320, + "num_input_tokens_seen": 0, + "num_train_epochs": 30, + "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": 93805023117312.0, + "train_batch_size": 8, + "trial_name": null, + "trial_params": null +} diff --git a/hyperparameter/c2/realtabformer/rtf-c2-20260505_021413/rtf_checkpoints/checkpoint-1300/training_args.bin b/hyperparameter/c2/realtabformer/rtf-c2-20260505_021413/rtf_checkpoints/checkpoint-1300/training_args.bin new file mode 100644 index 0000000000000000000000000000000000000000..3d8b32516bfaeaa087fca28752b0d5ac8a4f9a32 --- /dev/null +++ b/hyperparameter/c2/realtabformer/rtf-c2-20260505_021413/rtf_checkpoints/checkpoint-1300/training_args.bin @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:0d3dc95355536f0383a0f823e8f277b91339a18334832f20d708fd987d139c82 +size 5201 diff --git a/hyperparameter/c2/realtabformer/rtf-c2-20260505_021413/rtf_checkpoints/checkpoint-1320/config.json b/hyperparameter/c2/realtabformer/rtf-c2-20260505_021413/rtf_checkpoints/checkpoint-1320/config.json new file mode 100644 index 0000000000000000000000000000000000000000..abc7bb2762d6bff3016eb042e7a2ac4abb80ea85 --- /dev/null +++ b/hyperparameter/c2/realtabformer/rtf-c2-20260505_021413/rtf_checkpoints/checkpoint-1320/config.json @@ -0,0 +1,34 @@ +{ + "activation_function": "gelu_new", + "add_cross_attention": false, + "architectures": [ + "GPT2LMHeadModel" + ], + "attn_pdrop": 0.1, + "bos_token_id": 5, + "dtype": "float32", + "embd_pdrop": 0.1, + "eos_token_id": 6, + "initializer_range": 0.02, + "layer_norm_epsilon": 1e-05, + "model_type": "gpt2", + "n_embd": 768, + "n_head": 12, + "n_inner": null, + "n_layer": 6, + "n_positions": 1024, + "pad_token_id": null, + "reorder_and_upcast_attn": false, + "resid_pdrop": 0.1, + "scale_attn_by_inverse_layer_idx": false, + "scale_attn_weights": true, + "summary_activation": null, + "summary_first_dropout": 0.1, + "summary_proj_to_labels": true, + "summary_type": "cls_index", + "summary_use_proj": true, + "tie_word_embeddings": true, + "transformers_version": "5.5.3", + "use_cache": false, + "vocab_size": 36 +} diff --git a/hyperparameter/c2/realtabformer/rtf-c2-20260505_021413/rtf_checkpoints/checkpoint-1320/generation_config.json b/hyperparameter/c2/realtabformer/rtf-c2-20260505_021413/rtf_checkpoints/checkpoint-1320/generation_config.json new file mode 100644 index 0000000000000000000000000000000000000000..ffe89567780e75b5c22eade9be971483b9618f39 --- /dev/null +++ b/hyperparameter/c2/realtabformer/rtf-c2-20260505_021413/rtf_checkpoints/checkpoint-1320/generation_config.json @@ -0,0 +1,9 @@ +{ + "_from_model_config": true, + "bos_token_id": 5, + "eos_token_id": 6, + "output_attentions": false, + "output_hidden_states": false, + "transformers_version": "5.5.3", + "use_cache": true +} diff --git a/hyperparameter/c2/realtabformer/rtf-c2-20260505_021413/rtf_checkpoints/checkpoint-1320/model.safetensors b/hyperparameter/c2/realtabformer/rtf-c2-20260505_021413/rtf_checkpoints/checkpoint-1320/model.safetensors new file mode 100644 index 0000000000000000000000000000000000000000..309cf0b742754cea283b97ad04064b46d738062e --- /dev/null +++ b/hyperparameter/c2/realtabformer/rtf-c2-20260505_021413/rtf_checkpoints/checkpoint-1320/model.safetensors @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:13652b792fcf309dc3247699967c8609b58f8ed0a0a63c756117fa227453ad51 +size 173379016 diff --git a/hyperparameter/c2/realtabformer/rtf-c2-20260505_021413/rtf_checkpoints/checkpoint-1320/optimizer.pt b/hyperparameter/c2/realtabformer/rtf-c2-20260505_021413/rtf_checkpoints/checkpoint-1320/optimizer.pt new file mode 100644 index 0000000000000000000000000000000000000000..82cc637902b661064495a48ec3ed83175a1150a3 --- /dev/null +++ b/hyperparameter/c2/realtabformer/rtf-c2-20260505_021413/rtf_checkpoints/checkpoint-1320/optimizer.pt @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:5e97275155fcabeb82c8a2b8a898ad7d2b9aedc8c6151bc40bf060b238bec35b +size 346807051 diff --git a/hyperparameter/c2/realtabformer/rtf-c2-20260505_021413/rtf_checkpoints/checkpoint-1320/rng_state.pth b/hyperparameter/c2/realtabformer/rtf-c2-20260505_021413/rtf_checkpoints/checkpoint-1320/rng_state.pth new file mode 100644 index 0000000000000000000000000000000000000000..c020a7f3a06d5c44604a82dd65a665bbdfb88bef --- /dev/null +++ b/hyperparameter/c2/realtabformer/rtf-c2-20260505_021413/rtf_checkpoints/checkpoint-1320/rng_state.pth @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:c099df465552f787c787e77252201b7d65da4fc0b181cff151f21d68a3335c9c +size 14645 diff --git a/hyperparameter/c2/realtabformer/rtf-c2-20260505_021413/rtf_checkpoints/checkpoint-1320/scaler.pt b/hyperparameter/c2/realtabformer/rtf-c2-20260505_021413/rtf_checkpoints/checkpoint-1320/scaler.pt new file mode 100644 index 0000000000000000000000000000000000000000..1b805df5f7d9d855568fac28e8b23e545f4f4ec3 --- /dev/null +++ b/hyperparameter/c2/realtabformer/rtf-c2-20260505_021413/rtf_checkpoints/checkpoint-1320/scaler.pt @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:2af6591618b3d6bcd1497468162eb295c0684d5dcad88a4f345994bb2b5bc8f7 +size 1383 diff --git a/hyperparameter/c2/realtabformer/rtf-c2-20260505_021413/rtf_checkpoints/checkpoint-1320/scheduler.pt b/hyperparameter/c2/realtabformer/rtf-c2-20260505_021413/rtf_checkpoints/checkpoint-1320/scheduler.pt new file mode 100644 index 0000000000000000000000000000000000000000..5cf9995da20b6a5af3598629d0980969af71f959 --- /dev/null +++ b/hyperparameter/c2/realtabformer/rtf-c2-20260505_021413/rtf_checkpoints/checkpoint-1320/scheduler.pt @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:f7e4fb175706c10355d2410d9e3e33cb3fd5f2324d36a1c694920cff334e46c2 +size 1465 diff --git a/hyperparameter/c2/realtabformer/rtf-c2-20260505_021413/rtf_checkpoints/checkpoint-1320/trainer_state.json b/hyperparameter/c2/realtabformer/rtf-c2-20260505_021413/rtf_checkpoints/checkpoint-1320/trainer_state.json new file mode 100644 index 0000000000000000000000000000000000000000..10e283730846f6b07b0136c2979af1e50b2e6d5d --- /dev/null +++ b/hyperparameter/c2/realtabformer/rtf-c2-20260505_021413/rtf_checkpoints/checkpoint-1320/trainer_state.json @@ -0,0 +1,125 @@ +{ + "best_global_step": null, + "best_metric": null, + "best_model_checkpoint": null, + "epoch": 30.0, + "eval_steps": 100, + "global_step": 1320, + "is_hyper_param_search": false, + "is_local_process_zero": true, + "is_world_process_zero": true, + "log_history": [ + { + "epoch": 2.277456647398844, + "grad_norm": 0.4579336941242218, + "learning_rate": 4.6250000000000006e-05, + "loss": 1.0553965759277344, + "step": 100 + }, + { + "epoch": 4.554913294797688, + "grad_norm": 0.4333536922931671, + "learning_rate": 4.246212121212121e-05, + "loss": 0.8835969543457032, + "step": 200 + }, + { + "epoch": 6.832369942196532, + "grad_norm": 0.6369091868400574, + "learning_rate": 3.8674242424242426e-05, + "loss": 0.8714767456054687, + "step": 300 + }, + { + "epoch": 9.092485549132949, + "grad_norm": 0.33693063259124756, + "learning_rate": 3.488636363636364e-05, + "loss": 0.8616331481933593, + "step": 400 + }, + { + "epoch": 11.369942196531792, + "grad_norm": 0.3608740568161011, + "learning_rate": 3.1098484848484846e-05, + "loss": 0.8539522552490234, + "step": 500 + }, + { + "epoch": 13.647398843930636, + "grad_norm": 0.431406706571579, + "learning_rate": 2.7310606060606063e-05, + "loss": 0.8535066223144532, + "step": 600 + }, + { + "epoch": 15.92485549132948, + "grad_norm": 0.439527302980423, + "learning_rate": 2.3522727272727273e-05, + "loss": 0.8496524047851562, + "step": 700 + }, + { + "epoch": 18.184971098265898, + "grad_norm": 0.47876009345054626, + "learning_rate": 1.9734848484848487e-05, + "loss": 0.8465232086181641, + "step": 800 + }, + { + "epoch": 20.46242774566474, + "grad_norm": 0.2721438705921173, + "learning_rate": 1.59469696969697e-05, + "loss": 0.8433999633789062, + "step": 900 + }, + { + "epoch": 22.739884393063583, + "grad_norm": 0.338348925113678, + "learning_rate": 1.215909090909091e-05, + "loss": 0.8409078979492187, + "step": 1000 + }, + { + "epoch": 25.0, + "grad_norm": 0.7355383634567261, + "learning_rate": 8.37121212121212e-06, + "loss": 0.8381367492675781, + "step": 1100 + }, + { + "epoch": 27.277456647398843, + "grad_norm": 0.33456525206565857, + "learning_rate": 4.583333333333333e-06, + "loss": 0.8362679290771484, + "step": 1200 + }, + { + "epoch": 29.55491329479769, + "grad_norm": 0.3747257888317108, + "learning_rate": 7.954545454545454e-07, + "loss": 0.8347467041015625, + "step": 1300 + } + ], + "logging_steps": 100, + "max_steps": 1320, + "num_input_tokens_seen": 0, + "num_train_epochs": 30, + "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": 95215106949120.0, + "train_batch_size": 8, + "trial_name": null, + "trial_params": null +} diff --git a/hyperparameter/c2/realtabformer/rtf-c2-20260505_021413/rtf_checkpoints/checkpoint-1320/training_args.bin b/hyperparameter/c2/realtabformer/rtf-c2-20260505_021413/rtf_checkpoints/checkpoint-1320/training_args.bin new file mode 100644 index 0000000000000000000000000000000000000000..3d8b32516bfaeaa087fca28752b0d5ac8a4f9a32 --- /dev/null +++ b/hyperparameter/c2/realtabformer/rtf-c2-20260505_021413/rtf_checkpoints/checkpoint-1320/training_args.bin @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:0d3dc95355536f0383a0f823e8f277b91339a18334832f20d708fd987d139c82 +size 5201 diff --git a/hyperparameter/c2/realtabformer/rtf-c2-20260505_021413/run_config.json b/hyperparameter/c2/realtabformer/rtf-c2-20260505_021413/run_config.json new file mode 100644 index 0000000000000000000000000000000000000000..7d194416830ac8c60248d63f3e55119a8204a221 --- /dev/null +++ b/hyperparameter/c2/realtabformer/rtf-c2-20260505_021413/run_config.json @@ -0,0 +1,40 @@ +{ + "schema_version": 1, + "recorded_at": "2026-05-05T02:14:13", + "dataset_id": "c2", + "model": "realtabformer", + "work_dir": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/c2/realtabformer/rtf-c2-20260505_021413", + "dataset_source_requested": "new", + "dataset_source_resolved": "new", + "cli_args": { + "model": "realtabformer", + "dataset": "c2", + "dataset_source": "new", + "train": true, + "generate": true, + "num_rows": 0, + "epochs": 30, + "output_dir": null, + "model_dir": null, + "work_dir": null, + "resume": false, + "no_stats": false + }, + "resolved": { + "num_rows": 1382, + "model_path": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/c2/realtabformer/rtf-c2-20260505_021413/models_30epochs", + "output_csv": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/c2/realtabformer/rtf-c2-20260505_021413/rtf-c2-1382-20260505_021617.csv" + }, + "input_artifacts": { + "public_gate_report": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/c2/realtabformer/rtf-c2-20260505_021413/public_gate/public_gate_report.json", + "public_manifest": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/c2/realtabformer/rtf-c2-20260505_021413/public_gate/staged_input_manifest.json", + "model_manifest": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/c2/realtabformer/rtf-c2-20260505_021413/staged/realtabformer/model_input_manifest.json", + "train_csv": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/c2/realtabformer/rtf-c2-20260505_021413/staged/public/train.csv", + "features_json": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/c2/realtabformer/rtf-c2-20260505_021413/staged/public/staged_features.json", + "target_column": "class", + "task_type": "classification" + }, + "env_overrides": { + "BENCHMARK_REALTABFORMER_GPUS": "device=3" + } +} \ No newline at end of file diff --git a/hyperparameter/c2/realtabformer/rtf-c2-20260505_021413/runtime_result.json b/hyperparameter/c2/realtabformer/rtf-c2-20260505_021413/runtime_result.json new file mode 100644 index 0000000000000000000000000000000000000000..cc18f091e2e62d5d70016f1447611a86a0118d84 --- /dev/null +++ b/hyperparameter/c2/realtabformer/rtf-c2-20260505_021413/runtime_result.json @@ -0,0 +1,27 @@ +{ + "dataset_id": "c2", + "model": "realtabformer", + "run_id": "rtf-c2-20260505_021413", + "public_gate_status": "pass", + "adapter_ready_status": "pass", + "train_status": "success", + "generate_status": "success", + "reason_code": null, + "reason_detail": null, + "artifacts": { + "synthetic_csv": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/c2/realtabformer/rtf-c2-20260505_021413/rtf-c2-1382-20260505_021617.csv", + "model_path": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/c2/realtabformer/rtf-c2-20260505_021413/models_30epochs" + }, + "timings": { + "train": { + "started_at": "2026-05-05T02:14:13", + "ended_at": "2026-05-05T02:16:17", + "duration_sec": 123.894 + }, + "generate": { + "started_at": "2026-05-05T02:16:17", + "ended_at": "2026-05-05T02:16:31", + "duration_sec": 14.24 + } + } +} \ No newline at end of file diff --git a/hyperparameter/c2/realtabformer/rtf-c2-20260505_021413/staged/public/staged_features.json b/hyperparameter/c2/realtabformer/rtf-c2-20260505_021413/staged/public/staged_features.json new file mode 100644 index 0000000000000000000000000000000000000000..61783861dd5de501592f76acb0469cf3f3b2622a --- /dev/null +++ b/hyperparameter/c2/realtabformer/rtf-c2-20260505_021413/staged/public/staged_features.json @@ -0,0 +1,37 @@ +[ + { + "feature_name": "buying", + "data_type": "categorical", + "is_target": false + }, + { + "feature_name": "maint", + "data_type": "categorical", + "is_target": false + }, + { + "feature_name": "doors", + "data_type": "categorical", + "is_target": false + }, + { + "feature_name": "persons", + "data_type": "categorical", + "is_target": false + }, + { + "feature_name": "lug_boot", + "data_type": "categorical", + "is_target": false + }, + { + "feature_name": "safety", + "data_type": "categorical", + "is_target": false + }, + { + "feature_name": "class", + "data_type": "categorical", + "is_target": true + } +] \ No newline at end of file diff --git a/hyperparameter/c2/realtabformer/rtf-c2-20260505_021413/staged/public/test.csv b/hyperparameter/c2/realtabformer/rtf-c2-20260505_021413/staged/public/test.csv new file mode 100644 index 0000000000000000000000000000000000000000..392a0d7189a34d8f13ecf20a99d64b03230d517c --- /dev/null +++ b/hyperparameter/c2/realtabformer/rtf-c2-20260505_021413/staged/public/test.csv @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:b48114a7d0bc5bd9a07920f903c8d4aba8bf98bf2a66a050da03588b0245ca73 +size 5273 diff --git a/hyperparameter/c2/realtabformer/rtf-c2-20260505_021413/staged/public/train.csv b/hyperparameter/c2/realtabformer/rtf-c2-20260505_021413/staged/public/train.csv new file mode 100644 index 0000000000000000000000000000000000000000..da4f4d55134eebc0e51157d0d467536371db1484 --- /dev/null +++ b/hyperparameter/c2/realtabformer/rtf-c2-20260505_021413/staged/public/train.csv @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:4aed00c2c2b3f88a55a7ebff31b2e1b5e0e32fb0a7267e0b9d2779cd23e434dd +size 41565 diff --git a/hyperparameter/c2/realtabformer/rtf-c2-20260505_021413/staged/public/val.csv b/hyperparameter/c2/realtabformer/rtf-c2-20260505_021413/staged/public/val.csv new file mode 100644 index 0000000000000000000000000000000000000000..af8caf7ee42524188534a3daf32996dc491952d9 --- /dev/null +++ b/hyperparameter/c2/realtabformer/rtf-c2-20260505_021413/staged/public/val.csv @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:26e90c1170a57a14c05832ac88027722b1f3848f9662c7c09ef7c93dcba4cc01 +size 5176 diff --git a/hyperparameter/c2/realtabformer/rtf-c2-20260505_021413/staged/realtabformer/adapter_report.json b/hyperparameter/c2/realtabformer/rtf-c2-20260505_021413/staged/realtabformer/adapter_report.json new file mode 100644 index 0000000000000000000000000000000000000000..101f6be14b08855776160fc47143571d00caf4cc --- /dev/null +++ b/hyperparameter/c2/realtabformer/rtf-c2-20260505_021413/staged/realtabformer/adapter_report.json @@ -0,0 +1,7 @@ +{ + "adapter_ready_status": "pass", + "adapter_fail_reason_code": null, + "adapter_fail_detail": null, + "adapter_transforms_applied": [], + "model_input_manifest": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/c2/realtabformer/rtf-c2-20260505_021413/staged/realtabformer/model_input_manifest.json" +} \ No newline at end of file diff --git a/hyperparameter/c2/realtabformer/rtf-c2-20260505_021413/staged/realtabformer/adapter_transforms_applied.json b/hyperparameter/c2/realtabformer/rtf-c2-20260505_021413/staged/realtabformer/adapter_transforms_applied.json new file mode 100644 index 0000000000000000000000000000000000000000..0637a088a01e8ddab3bf3fa98dbe804cbde1a0dc --- /dev/null +++ b/hyperparameter/c2/realtabformer/rtf-c2-20260505_021413/staged/realtabformer/adapter_transforms_applied.json @@ -0,0 +1 @@ +[] \ No newline at end of file diff --git a/hyperparameter/c2/realtabformer/rtf-c2-20260505_021413/staged/realtabformer/model_input_manifest.json b/hyperparameter/c2/realtabformer/rtf-c2-20260505_021413/staged/realtabformer/model_input_manifest.json new file mode 100644 index 0000000000000000000000000000000000000000..70bbe65dde92a4aede062beb163129f33cc3c5dd --- /dev/null +++ b/hyperparameter/c2/realtabformer/rtf-c2-20260505_021413/staged/realtabformer/model_input_manifest.json @@ -0,0 +1,151 @@ +{ + "dataset_id": "c2", + "model": "realtabformer", + "target_column": "class", + "task_type": "classification", + "column_schema": [ + { + "name": "buying", + "role": "feature", + "semantic_type": "categorical", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 4, + "unique_ratio": 0.002894, + "example_values": [ + "vhigh", + "med", + "high", + "low" + ] + } + }, + { + "name": "maint", + "role": "feature", + "semantic_type": "categorical", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 4, + "unique_ratio": 0.002894, + "example_values": [ + "vhigh", + "low", + "med", + "high" + ] + } + }, + { + "name": "doors", + "role": "feature", + "semantic_type": "categorical", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 4, + "unique_ratio": 0.002894, + "example_values": [ + "2", + "5more", + "3", + "4" + ] + } + }, + { + "name": "persons", + "role": "feature", + "semantic_type": "categorical", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 3, + "unique_ratio": 0.002171, + "example_values": [ + "2", + "4", + "more" + ] + } + }, + { + "name": "lug_boot", + "role": "feature", + "semantic_type": "categorical", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 3, + "unique_ratio": 0.002171, + "example_values": [ + "small", + "big", + "med" + ] + } + }, + { + "name": "safety", + "role": "feature", + "semantic_type": "categorical", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 3, + "unique_ratio": 0.002171, + "example_values": [ + "low", + "high", + "med" + ] + } + }, + { + "name": "class", + "role": "target", + "semantic_type": "categorical", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 4, + "unique_ratio": 0.002894, + "example_values": [ + "unacc", + "good", + "acc", + "vgood" + ] + } + } + ], + "public_manifest": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/c2/realtabformer/rtf-c2-20260505_021413/public_gate/staged_input_manifest.json", + "train_csv": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/c2/realtabformer/rtf-c2-20260505_021413/staged/public/train.csv", + "val_csv": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/c2/realtabformer/rtf-c2-20260505_021413/staged/public/val.csv", + "test_csv": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/c2/realtabformer/rtf-c2-20260505_021413/staged/public/test.csv", + "features_json": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/c2/realtabformer/rtf-c2-20260505_021413/staged/public/staged_features.json", + "public_gate_report": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/c2/realtabformer/rtf-c2-20260505_021413/public_gate/public_gate_report.json" +} \ No newline at end of file diff --git a/hyperparameter/c2/realtabformer/rtf-c2-20260505_021413/train_20260505_021413.log b/hyperparameter/c2/realtabformer/rtf-c2-20260505_021413/train_20260505_021413.log new file mode 100644 index 0000000000000000000000000000000000000000..78da13f3bf209655260ad3131a4e7c8e2ee09ffa --- /dev/null +++ b/hyperparameter/c2/realtabformer/rtf-c2-20260505_021413/train_20260505_021413.log @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:e7c56cd1b048b3e1a67bc475282f9fbd1e26c09fad1f8e0aff53bef958b05004 +size 54842 diff --git a/hyperparameter/c2/tabbyflow/tabbyflow-c2-20260504_235339/_tabbyflow_gen.py b/hyperparameter/c2/tabbyflow/tabbyflow-c2-20260504_235339/_tabbyflow_gen.py new file mode 100644 index 0000000000000000000000000000000000000000..12e50a1e56f6d8391bed9cb95f3d37f559471f77 --- /dev/null +++ b/hyperparameter/c2/tabbyflow/tabbyflow-c2-20260504_235339/_tabbyflow_gen.py @@ -0,0 +1,34 @@ + +import os, shutil, subprocess, sys +root = r"/workspace/ef-vfm" +name = r"pipeline_c2" +src = r"/work/output-Benchmark-trainonly-v1/c2/tabbyflow/tabbyflow-c2-20260504_235339/tabular_bundle/pipeline_c2" +dst_data = os.path.join(root, "data", name) +shutil.rmtree(dst_data, ignore_errors=True) +shutil.copytree(src, dst_data) +dst_syn = os.path.join(root, "synthetic", name) +os.makedirs(dst_syn, exist_ok=True) +for fn in ("real.csv", "test.csv", "val.csv"): + shutil.copy(os.path.join(src, fn), os.path.join(dst_syn, fn)) +os.chdir(root) +os.environ["PYTHONPATH"] = root + os.pathsep + os.environ.get("PYTHONPATH", "") +os.environ.setdefault("EFVFM_SAMPLE_BATCH_SIZE", "128") +subprocess.check_call([ + sys.executable, "main.py", + "--dataname", name, "--mode", "test", "--gpu", "0", + "--no_wandb", "--exp_name", r"adapter_efvfm", + "--ckpt_path", r"/workspace/ef-vfm/ef_vfm/ckpt/pipeline_c2/adapter_efvfm/model_500.pt", + "--num_samples_to_generate", str(int(1382)), +]) +base = os.path.join(root, "ef_vfm", "result", name, r"adapter_efvfm") +best = None +best_t = -1.0 +for r, _, files in os.walk(base): + if "samples.csv" in files: + p = os.path.join(r, "samples.csv") + t = os.path.getmtime(p) + if t > best_t: + best_t, best = t, p +if not best: + raise SystemExit("tabbyflow: no samples.csv in " + base) +shutil.copy(best, r"/work/output-Benchmark-trainonly-v1/c2/tabbyflow/tabbyflow-c2-20260504_235339/tabbyflow-c2-1382-20260504_235548.csv") diff --git a/hyperparameter/c2/tabbyflow/tabbyflow-c2-20260504_235339/_tabbyflow_train.py b/hyperparameter/c2/tabbyflow/tabbyflow-c2-20260504_235339/_tabbyflow_train.py new file mode 100644 index 0000000000000000000000000000000000000000..646d7b24e08c8cb437d4f45c091168ad13b8323f --- /dev/null +++ b/hyperparameter/c2/tabbyflow/tabbyflow-c2-20260504_235339/_tabbyflow_train.py @@ -0,0 +1,24 @@ + +import os, shutil, subprocess, sys +root = r"/workspace/ef-vfm" +name = r"pipeline_c2" +src = r"/work/output-Benchmark-trainonly-v1/c2/tabbyflow/tabbyflow-c2-20260504_235339/tabular_bundle/pipeline_c2" +os.makedirs(os.path.join(root, "data", name), exist_ok=True) +dst_data = os.path.join(root, "data", name) +dst_syn = os.path.join(root, "synthetic", name) +shutil.rmtree(dst_data, ignore_errors=True) +shutil.copytree(src, dst_data) +os.makedirs(dst_syn, exist_ok=True) +for fn in ("real.csv", "test.csv", "val.csv"): + shutil.copy(os.path.join(src, fn), os.path.join(dst_syn, fn)) +os.chdir(root) +os.environ["PYTHONPATH"] = root + os.pathsep + os.environ.get("PYTHONPATH", "") +os.environ["EFVFM_SMOKE_STEPS"] = "100" +os.environ["EFVFM_ADAPTER_TRAIN"] = "1" +os.environ.setdefault("EFVFM_SAMPLE_BATCH_SIZE", "128") +os.environ.setdefault("EFVFM_EVAL_NUM_SAMPLES", "512") +subprocess.check_call([ + sys.executable, "main.py", + "--dataname", name, "--mode", "train", "--gpu", "0", + "--no_wandb", "--exp_name", r"adapter_efvfm", +]) diff --git a/hyperparameter/c2/tabbyflow/tabbyflow-c2-20260504_235339/gen_20260504_235548.log b/hyperparameter/c2/tabbyflow/tabbyflow-c2-20260504_235339/gen_20260504_235548.log new file mode 100644 index 0000000000000000000000000000000000000000..c603561175753da1ba0b090f006185f9b1fad987 --- /dev/null +++ b/hyperparameter/c2/tabbyflow/tabbyflow-c2-20260504_235339/gen_20260504_235548.log @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:36cb08e3b055829024e1eb6561fa74f687d4486fdabb40dd5ace6332eefcb81e +size 3414 diff --git a/hyperparameter/c2/tabbyflow/tabbyflow-c2-20260504_235339/input_snapshot.json b/hyperparameter/c2/tabbyflow/tabbyflow-c2-20260504_235339/input_snapshot.json new file mode 100644 index 0000000000000000000000000000000000000000..89c9d5855c86fb753a25070ff5c19d45d1e2fb9e --- /dev/null +++ b/hyperparameter/c2/tabbyflow/tabbyflow-c2-20260504_235339/input_snapshot.json @@ -0,0 +1,36 @@ +{ + "dataset_id": "c2", + "model": "tabbyflow", + "inputs": { + "train_csv": { + "path": "/data/jialinzhang/SynthesizePipeline-server/DatasetNew/c2/c2-train.csv", + "exists": true, + "size": 42948, + "sha256": "17bc560fa96bd00fb3b526e1e65bc91210b701d0d0a4e8bb9b4c5196cab56def" + }, + "val_csv": { + "path": "/data/jialinzhang/SynthesizePipeline-server/DatasetNew/c2/c2-val.csv", + "exists": true, + "size": 5349, + "sha256": "61e565eca62e65a7dccd9d51039a3170413379e10fc494e25870e7c4294863c9" + }, + "test_csv": { + "path": "/data/jialinzhang/SynthesizePipeline-server/DatasetNew/c2/c2-test.csv", + "exists": true, + "size": 5448, + "sha256": "cbcbb062a1faf5fa44b66c80532baa229e05b94fc42137269761e6c6d84af20a" + }, + "profile_json": { + "path": "/data/jialinzhang/SynthesizePipeline-server/DatasetNew/artifacts/data_core/tabular/c2/c2-dataset_profile.json", + "exists": true, + "size": 3240, + "sha256": "526b7163b2076c93c0bf4638438081ee8a6907065d5b608faa40d1a3dbc2a27b" + }, + "contract_json": { + "path": "/data/jialinzhang/SynthesizePipeline-server/DatasetNew/artifacts/data_core/tabular/c2/c2-dataset_contract_v1.json", + "exists": true, + "size": 3731, + "sha256": "fb595a876054c2ee9b4e10cfe83a5691588de1d25466cbb9d473c18ad3604009" + } + } +} \ No newline at end of file diff --git a/hyperparameter/c2/tabbyflow/tabbyflow-c2-20260504_235339/models_tabbyflow/trained.pt b/hyperparameter/c2/tabbyflow/tabbyflow-c2-20260504_235339/models_tabbyflow/trained.pt new file mode 100644 index 0000000000000000000000000000000000000000..f063a878c470d9d40f79db79881596e1e497dffd --- /dev/null +++ b/hyperparameter/c2/tabbyflow/tabbyflow-c2-20260504_235339/models_tabbyflow/trained.pt @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:adb734fec12f2251befd371dca69e481b19464aded2a6823105a01b4be6ddbe5 +size 40 diff --git a/hyperparameter/c2/tabbyflow/tabbyflow-c2-20260504_235339/public_gate/normalized_schema_snapshot.json b/hyperparameter/c2/tabbyflow/tabbyflow-c2-20260504_235339/public_gate/normalized_schema_snapshot.json new file mode 100644 index 0000000000000000000000000000000000000000..689b1d00d96508e44ba40e58dc4560e19afc2b3b --- /dev/null +++ b/hyperparameter/c2/tabbyflow/tabbyflow-c2-20260504_235339/public_gate/normalized_schema_snapshot.json @@ -0,0 +1,144 @@ +{ + "dataset_id": "c2", + "target_column": "class", + "task_type": "classification", + "columns": [ + { + "name": "buying", + "role": "feature", + "semantic_type": "categorical", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 4, + "unique_ratio": 0.002894, + "example_values": [ + "vhigh", + "med", + "high", + "low" + ] + } + }, + { + "name": "maint", + "role": "feature", + "semantic_type": "categorical", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 4, + "unique_ratio": 0.002894, + "example_values": [ + "vhigh", + "low", + "med", + "high" + ] + } + }, + { + "name": "doors", + "role": "feature", + "semantic_type": "categorical", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 4, + "unique_ratio": 0.002894, + "example_values": [ + "2", + "5more", + "3", + "4" + ] + } + }, + { + "name": "persons", + "role": "feature", + "semantic_type": "categorical", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 3, + "unique_ratio": 0.002171, + "example_values": [ + "2", + "4", + "more" + ] + } + }, + { + "name": "lug_boot", + "role": "feature", + "semantic_type": "categorical", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 3, + "unique_ratio": 0.002171, + "example_values": [ + "small", + "big", + "med" + ] + } + }, + { + "name": "safety", + "role": "feature", + "semantic_type": "categorical", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 3, + "unique_ratio": 0.002171, + "example_values": [ + "low", + "high", + "med" + ] + } + }, + { + "name": "class", + "role": "target", + "semantic_type": "categorical", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 4, + "unique_ratio": 0.002894, + "example_values": [ + "unacc", + "good", + "acc", + "vgood" + ] + } + } + ] +} \ No newline at end of file diff --git a/hyperparameter/c2/tabbyflow/tabbyflow-c2-20260504_235339/public_gate/public_gate_report.json b/hyperparameter/c2/tabbyflow/tabbyflow-c2-20260504_235339/public_gate/public_gate_report.json new file mode 100644 index 0000000000000000000000000000000000000000..2e4cdcb2a4e28e40d59b17a83e773f622b7636a5 --- /dev/null +++ b/hyperparameter/c2/tabbyflow/tabbyflow-c2-20260504_235339/public_gate/public_gate_report.json @@ -0,0 +1,37 @@ +{ + "dataset_id": "c2", + "status": "pass", + "checks": [ + { + "check_id": "PG001_csv_parse_ok", + "status": "pass" + }, + { + "check_id": "PG002_split_header_consistent", + "status": "pass" + }, + { + "check_id": "PG003_profile_header_match", + "status": "pass" + }, + { + "check_id": "PG004_missing_token_normalized", + "status": "pass" + }, + { + "check_id": "PG005_semantic_type_validated", + "status": "pass" + }, + { + "check_id": "PG006_target_defined_and_valid", + "status": "pass" + } + ], + "target_column": "class", + "task_type": "classification", + "input_splits": { + "train": "/data/jialinzhang/SynthesizePipeline-server/DatasetNew/c2/c2-train.csv", + "val": "/data/jialinzhang/SynthesizePipeline-server/DatasetNew/c2/c2-val.csv", + "test": "/data/jialinzhang/SynthesizePipeline-server/DatasetNew/c2/c2-test.csv" + } +} \ No newline at end of file diff --git a/hyperparameter/c2/tabbyflow/tabbyflow-c2-20260504_235339/public_gate/staged_input_manifest.json b/hyperparameter/c2/tabbyflow/tabbyflow-c2-20260504_235339/public_gate/staged_input_manifest.json new file mode 100644 index 0000000000000000000000000000000000000000..65a57d920ab0c01f197f928c00341bc02a13ffce --- /dev/null +++ b/hyperparameter/c2/tabbyflow/tabbyflow-c2-20260504_235339/public_gate/staged_input_manifest.json @@ -0,0 +1,149 @@ +{ + "dataset_id": "c2", + "target_column": "class", + "task_type": "classification", + "train_csv": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/c2/tabbyflow/tabbyflow-c2-20260504_235339/staged/public/train.csv", + "val_csv": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/c2/tabbyflow/tabbyflow-c2-20260504_235339/staged/public/val.csv", + "test_csv": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/c2/tabbyflow/tabbyflow-c2-20260504_235339/staged/public/test.csv", + "features_json": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/c2/tabbyflow/tabbyflow-c2-20260504_235339/staged/public/staged_features.json", + "public_gate_report": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/c2/tabbyflow/tabbyflow-c2-20260504_235339/public_gate/public_gate_report.json", + "column_schema": [ + { + "name": "buying", + "role": "feature", + "semantic_type": "categorical", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 4, + "unique_ratio": 0.002894, + "example_values": [ + "vhigh", + "med", + "high", + "low" + ] + } + }, + { + "name": "maint", + "role": "feature", + "semantic_type": "categorical", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 4, + "unique_ratio": 0.002894, + "example_values": [ + "vhigh", + "low", + "med", + "high" + ] + } + }, + { + "name": "doors", + "role": "feature", + "semantic_type": "categorical", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 4, + "unique_ratio": 0.002894, + "example_values": [ + "2", + "5more", + "3", + "4" + ] + } + }, + { + "name": "persons", + "role": "feature", + "semantic_type": "categorical", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 3, + "unique_ratio": 0.002171, + "example_values": [ + "2", + "4", + "more" + ] + } + }, + { + "name": "lug_boot", + "role": "feature", + "semantic_type": "categorical", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 3, + "unique_ratio": 0.002171, + "example_values": [ + "small", + "big", + "med" + ] + } + }, + { + "name": "safety", + "role": "feature", + "semantic_type": "categorical", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 3, + "unique_ratio": 0.002171, + "example_values": [ + "low", + "high", + "med" + ] + } + }, + { + "name": "class", + "role": "target", + "semantic_type": "categorical", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 4, + "unique_ratio": 0.002894, + "example_values": [ + "unacc", + "good", + "acc", + "vgood" + ] + } + } + ] +} \ No newline at end of file diff --git a/hyperparameter/c2/tabbyflow/tabbyflow-c2-20260504_235339/run_config.json b/hyperparameter/c2/tabbyflow/tabbyflow-c2-20260504_235339/run_config.json new file mode 100644 index 0000000000000000000000000000000000000000..84103edb1cc74f44b2deae1a8bcda593c016ba25 --- /dev/null +++ b/hyperparameter/c2/tabbyflow/tabbyflow-c2-20260504_235339/run_config.json @@ -0,0 +1,42 @@ +{ + "schema_version": 1, + "recorded_at": "2026-05-04T23:53:39", + "dataset_id": "c2", + "model": "tabbyflow", + "work_dir": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/c2/tabbyflow/tabbyflow-c2-20260504_235339", + "dataset_source_requested": "new", + "dataset_source_resolved": "new", + "cli_args": { + "model": "tabbyflow", + "dataset": "c2", + "dataset_source": "new", + "train": true, + "generate": true, + "num_rows": 0, + "epochs": 100, + "output_dir": null, + "model_dir": null, + "work_dir": null, + "resume": false, + "no_stats": false + }, + "resolved": { + "num_rows": 1382, + "model_path": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/c2/tabbyflow/tabbyflow-c2-20260504_235339/models_tabbyflow/trained.pt", + "output_csv": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/c2/tabbyflow/tabbyflow-c2-20260504_235339/tabbyflow-c2-1382-20260504_235548.csv" + }, + "input_artifacts": { + "public_gate_report": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/c2/tabbyflow/tabbyflow-c2-20260504_235339/public_gate/public_gate_report.json", + "public_manifest": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/c2/tabbyflow/tabbyflow-c2-20260504_235339/public_gate/staged_input_manifest.json", + "model_manifest": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/c2/tabbyflow/tabbyflow-c2-20260504_235339/staged/tabbyflow/model_input_manifest.json", + "train_csv": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/c2/tabbyflow/tabbyflow-c2-20260504_235339/staged/public/train.csv", + "features_json": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/c2/tabbyflow/tabbyflow-c2-20260504_235339/staged/public/staged_features.json", + "target_column": "class", + "task_type": "classification" + }, + "env_overrides": { + "BENCHMARK_TABBYFLOW_GPUS": "device=0", + "EFVFM_EVAL_NUM_SAMPLES": "512", + "EFVFM_SAMPLE_BATCH_SIZE": "64" + } +} \ No newline at end of file diff --git a/hyperparameter/c2/tabbyflow/tabbyflow-c2-20260504_235339/runtime_result.json b/hyperparameter/c2/tabbyflow/tabbyflow-c2-20260504_235339/runtime_result.json new file mode 100644 index 0000000000000000000000000000000000000000..90a922e2fea7cb8a3267345199d88bd7b0e5c7dc --- /dev/null +++ b/hyperparameter/c2/tabbyflow/tabbyflow-c2-20260504_235339/runtime_result.json @@ -0,0 +1,27 @@ +{ + "dataset_id": "c2", + "model": "tabbyflow", + "run_id": "tabbyflow-c2-20260504_235339", + "public_gate_status": "pass", + "adapter_ready_status": "pass", + "train_status": "success", + "generate_status": "success", + "reason_code": null, + "reason_detail": null, + "artifacts": { + "synthetic_csv": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/c2/tabbyflow/tabbyflow-c2-20260504_235339/tabbyflow-c2-1382-20260504_235548.csv", + "model_path": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/c2/tabbyflow/tabbyflow-c2-20260504_235339/models_tabbyflow/trained.pt" + }, + "timings": { + "train": { + "started_at": "2026-05-04T23:53:39", + "ended_at": "2026-05-04T23:55:48", + "duration_sec": 128.895 + }, + "generate": { + "started_at": "2026-05-04T23:55:48", + "ended_at": "2026-05-04T23:56:05", + "duration_sec": 17.147 + } + } +} \ No newline at end of file diff --git a/hyperparameter/c2/tabbyflow/tabbyflow-c2-20260504_235339/staged/public/staged_features.json b/hyperparameter/c2/tabbyflow/tabbyflow-c2-20260504_235339/staged/public/staged_features.json new file mode 100644 index 0000000000000000000000000000000000000000..61783861dd5de501592f76acb0469cf3f3b2622a --- /dev/null +++ b/hyperparameter/c2/tabbyflow/tabbyflow-c2-20260504_235339/staged/public/staged_features.json @@ -0,0 +1,37 @@ +[ + { + "feature_name": "buying", + "data_type": "categorical", + "is_target": false + }, + { + "feature_name": "maint", + "data_type": "categorical", + "is_target": false + }, + { + "feature_name": "doors", + "data_type": "categorical", + "is_target": false + }, + { + "feature_name": "persons", + "data_type": "categorical", + "is_target": false + }, + { + "feature_name": "lug_boot", + "data_type": "categorical", + "is_target": false + }, + { + "feature_name": "safety", + "data_type": "categorical", + "is_target": false + }, + { + "feature_name": "class", + "data_type": "categorical", + "is_target": true + } +] \ No newline at end of file diff --git a/hyperparameter/c2/tabbyflow/tabbyflow-c2-20260504_235339/staged/public/test.csv b/hyperparameter/c2/tabbyflow/tabbyflow-c2-20260504_235339/staged/public/test.csv new file mode 100644 index 0000000000000000000000000000000000000000..392a0d7189a34d8f13ecf20a99d64b03230d517c --- /dev/null +++ b/hyperparameter/c2/tabbyflow/tabbyflow-c2-20260504_235339/staged/public/test.csv @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:b48114a7d0bc5bd9a07920f903c8d4aba8bf98bf2a66a050da03588b0245ca73 +size 5273 diff --git a/hyperparameter/c2/tabbyflow/tabbyflow-c2-20260504_235339/staged/public/train.csv b/hyperparameter/c2/tabbyflow/tabbyflow-c2-20260504_235339/staged/public/train.csv new file mode 100644 index 0000000000000000000000000000000000000000..da4f4d55134eebc0e51157d0d467536371db1484 --- /dev/null +++ b/hyperparameter/c2/tabbyflow/tabbyflow-c2-20260504_235339/staged/public/train.csv @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:4aed00c2c2b3f88a55a7ebff31b2e1b5e0e32fb0a7267e0b9d2779cd23e434dd +size 41565 diff --git a/hyperparameter/c2/tabbyflow/tabbyflow-c2-20260504_235339/staged/public/val.csv b/hyperparameter/c2/tabbyflow/tabbyflow-c2-20260504_235339/staged/public/val.csv new file mode 100644 index 0000000000000000000000000000000000000000..af8caf7ee42524188534a3daf32996dc491952d9 --- /dev/null +++ b/hyperparameter/c2/tabbyflow/tabbyflow-c2-20260504_235339/staged/public/val.csv @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:26e90c1170a57a14c05832ac88027722b1f3848f9662c7c09ef7c93dcba4cc01 +size 5176 diff --git a/hyperparameter/c2/tabbyflow/tabbyflow-c2-20260504_235339/staged/tabbyflow/adapter_report.json b/hyperparameter/c2/tabbyflow/tabbyflow-c2-20260504_235339/staged/tabbyflow/adapter_report.json new file mode 100644 index 0000000000000000000000000000000000000000..4b603c223cf17476aae62f31bba58acb355bbb76 --- /dev/null +++ b/hyperparameter/c2/tabbyflow/tabbyflow-c2-20260504_235339/staged/tabbyflow/adapter_report.json @@ -0,0 +1,7 @@ +{ + "adapter_ready_status": "pass", + "adapter_fail_reason_code": null, + "adapter_fail_detail": null, + "adapter_transforms_applied": [], + "model_input_manifest": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/c2/tabbyflow/tabbyflow-c2-20260504_235339/staged/tabbyflow/model_input_manifest.json" +} \ No newline at end of file diff --git a/hyperparameter/c2/tabbyflow/tabbyflow-c2-20260504_235339/staged/tabbyflow/adapter_transforms_applied.json b/hyperparameter/c2/tabbyflow/tabbyflow-c2-20260504_235339/staged/tabbyflow/adapter_transforms_applied.json new file mode 100644 index 0000000000000000000000000000000000000000..0637a088a01e8ddab3bf3fa98dbe804cbde1a0dc --- /dev/null +++ b/hyperparameter/c2/tabbyflow/tabbyflow-c2-20260504_235339/staged/tabbyflow/adapter_transforms_applied.json @@ -0,0 +1 @@ +[] \ No newline at end of file diff --git a/hyperparameter/c2/tabbyflow/tabbyflow-c2-20260504_235339/staged/tabbyflow/model_input_manifest.json b/hyperparameter/c2/tabbyflow/tabbyflow-c2-20260504_235339/staged/tabbyflow/model_input_manifest.json new file mode 100644 index 0000000000000000000000000000000000000000..d6348a59d16d0f8e5433faa0aa851a1323980e82 --- /dev/null +++ b/hyperparameter/c2/tabbyflow/tabbyflow-c2-20260504_235339/staged/tabbyflow/model_input_manifest.json @@ -0,0 +1,151 @@ +{ + "dataset_id": "c2", + "model": "tabbyflow", + "target_column": "class", + "task_type": "classification", + "column_schema": [ + { + "name": "buying", + "role": "feature", + "semantic_type": "categorical", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 4, + "unique_ratio": 0.002894, + "example_values": [ + "vhigh", + "med", + "high", + "low" + ] + } + }, + { + "name": "maint", + "role": "feature", + "semantic_type": "categorical", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 4, + "unique_ratio": 0.002894, + "example_values": [ + "vhigh", + "low", + "med", + "high" + ] + } + }, + { + "name": "doors", + "role": "feature", + "semantic_type": "categorical", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 4, + "unique_ratio": 0.002894, + "example_values": [ + "2", + "5more", + "3", + "4" + ] + } + }, + { + "name": "persons", + "role": "feature", + "semantic_type": "categorical", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 3, + "unique_ratio": 0.002171, + "example_values": [ + "2", + "4", + "more" + ] + } + }, + { + "name": "lug_boot", + "role": "feature", + "semantic_type": "categorical", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 3, + "unique_ratio": 0.002171, + "example_values": [ + "small", + "big", + "med" + ] + } + }, + { + "name": "safety", + "role": "feature", + "semantic_type": "categorical", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 3, + "unique_ratio": 0.002171, + "example_values": [ + "low", + "high", + "med" + ] + } + }, + { + "name": "class", + "role": "target", + "semantic_type": "categorical", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 4, + "unique_ratio": 0.002894, + "example_values": [ + "unacc", + "good", + "acc", + "vgood" + ] + } + } + ], + "public_manifest": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/c2/tabbyflow/tabbyflow-c2-20260504_235339/public_gate/staged_input_manifest.json", + "train_csv": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/c2/tabbyflow/tabbyflow-c2-20260504_235339/staged/public/train.csv", + "val_csv": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/c2/tabbyflow/tabbyflow-c2-20260504_235339/staged/public/val.csv", + "test_csv": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/c2/tabbyflow/tabbyflow-c2-20260504_235339/staged/public/test.csv", + "features_json": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/c2/tabbyflow/tabbyflow-c2-20260504_235339/staged/public/staged_features.json", + "public_gate_report": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/c2/tabbyflow/tabbyflow-c2-20260504_235339/public_gate/public_gate_report.json" +} \ No newline at end of file diff --git a/hyperparameter/c2/tabbyflow/tabbyflow-c2-20260504_235339/tabbyflow-c2-1382-20260504_235548.csv b/hyperparameter/c2/tabbyflow/tabbyflow-c2-20260504_235339/tabbyflow-c2-1382-20260504_235548.csv new file mode 100644 index 0000000000000000000000000000000000000000..fe59aa94e064cb05f9376c50409cbf4a73221be2 --- /dev/null +++ b/hyperparameter/c2/tabbyflow/tabbyflow-c2-20260504_235339/tabbyflow-c2-1382-20260504_235548.csv @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:dc1f4dc026c4e326d9c61792ad006339859360510bd84f42975bcb7939d01dce +size 19397 diff --git a/hyperparameter/c2/tabbyflow/tabbyflow-c2-20260504_235339/tabbyflow_train_meta.json b/hyperparameter/c2/tabbyflow/tabbyflow-c2-20260504_235339/tabbyflow_train_meta.json new file mode 100644 index 0000000000000000000000000000000000000000..003fbbe52e193e7a6431471124307bbf71788c73 --- /dev/null +++ b/hyperparameter/c2/tabbyflow/tabbyflow-c2-20260504_235339/tabbyflow_train_meta.json @@ -0,0 +1,5 @@ +{ + "exp_name": "adapter_efvfm", + "dataname": "pipeline_c2", + "steps": 100 +} \ No newline at end of file diff --git a/hyperparameter/c2/tabbyflow/tabbyflow-c2-20260504_235339/tabular_bundle/pipeline_c2/X_cat_test.npy b/hyperparameter/c2/tabbyflow/tabbyflow-c2-20260504_235339/tabular_bundle/pipeline_c2/X_cat_test.npy new file mode 100644 index 0000000000000000000000000000000000000000..e99f1ae8dc9e7155e5c4bbbd3c2f3f7215c628f7 --- /dev/null +++ b/hyperparameter/c2/tabbyflow/tabbyflow-c2-20260504_235339/tabular_bundle/pipeline_c2/X_cat_test.npy @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:24d2203601ba060728920e754747e5a1dc3955a1b5775e147382fee4f1812542 +size 66464 diff --git a/hyperparameter/c2/tabbyflow/tabbyflow-c2-20260504_235339/tabular_bundle/pipeline_c2/X_cat_train.npy b/hyperparameter/c2/tabbyflow/tabbyflow-c2-20260504_235339/tabular_bundle/pipeline_c2/X_cat_train.npy new file mode 100644 index 0000000000000000000000000000000000000000..e99f1ae8dc9e7155e5c4bbbd3c2f3f7215c628f7 --- /dev/null +++ b/hyperparameter/c2/tabbyflow/tabbyflow-c2-20260504_235339/tabular_bundle/pipeline_c2/X_cat_train.npy @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:24d2203601ba060728920e754747e5a1dc3955a1b5775e147382fee4f1812542 +size 66464 diff --git a/hyperparameter/c2/tabbyflow/tabbyflow-c2-20260504_235339/tabular_bundle/pipeline_c2/X_cat_val.npy b/hyperparameter/c2/tabbyflow/tabbyflow-c2-20260504_235339/tabular_bundle/pipeline_c2/X_cat_val.npy new file mode 100644 index 0000000000000000000000000000000000000000..e99f1ae8dc9e7155e5c4bbbd3c2f3f7215c628f7 --- /dev/null +++ b/hyperparameter/c2/tabbyflow/tabbyflow-c2-20260504_235339/tabular_bundle/pipeline_c2/X_cat_val.npy @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:24d2203601ba060728920e754747e5a1dc3955a1b5775e147382fee4f1812542 +size 66464 diff --git a/hyperparameter/c2/tabbyflow/tabbyflow-c2-20260504_235339/tabular_bundle/pipeline_c2/X_num_test.npy b/hyperparameter/c2/tabbyflow/tabbyflow-c2-20260504_235339/tabular_bundle/pipeline_c2/X_num_test.npy new file mode 100644 index 0000000000000000000000000000000000000000..9370f90332827a72be71bf3347770cac2c0354f5 --- /dev/null +++ b/hyperparameter/c2/tabbyflow/tabbyflow-c2-20260504_235339/tabular_bundle/pipeline_c2/X_num_test.npy @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:79dbdf62b6c69f71f3fef2bfcff35e322b2ac9387fc545116c7bc0078b3de9ec +size 128 diff --git a/hyperparameter/c2/tabbyflow/tabbyflow-c2-20260504_235339/tabular_bundle/pipeline_c2/X_num_train.npy b/hyperparameter/c2/tabbyflow/tabbyflow-c2-20260504_235339/tabular_bundle/pipeline_c2/X_num_train.npy new file mode 100644 index 0000000000000000000000000000000000000000..9370f90332827a72be71bf3347770cac2c0354f5 --- /dev/null +++ b/hyperparameter/c2/tabbyflow/tabbyflow-c2-20260504_235339/tabular_bundle/pipeline_c2/X_num_train.npy @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:79dbdf62b6c69f71f3fef2bfcff35e322b2ac9387fc545116c7bc0078b3de9ec +size 128 diff --git a/hyperparameter/c2/tabbyflow/tabbyflow-c2-20260504_235339/tabular_bundle/pipeline_c2/X_num_val.npy b/hyperparameter/c2/tabbyflow/tabbyflow-c2-20260504_235339/tabular_bundle/pipeline_c2/X_num_val.npy new file mode 100644 index 0000000000000000000000000000000000000000..9370f90332827a72be71bf3347770cac2c0354f5 --- /dev/null +++ b/hyperparameter/c2/tabbyflow/tabbyflow-c2-20260504_235339/tabular_bundle/pipeline_c2/X_num_val.npy @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:79dbdf62b6c69f71f3fef2bfcff35e322b2ac9387fc545116c7bc0078b3de9ec +size 128 diff --git a/hyperparameter/c2/tabbyflow/tabbyflow-c2-20260504_235339/tabular_bundle/pipeline_c2/info.json b/hyperparameter/c2/tabbyflow/tabbyflow-c2-20260504_235339/tabular_bundle/pipeline_c2/info.json new file mode 100644 index 0000000000000000000000000000000000000000..bf064b213901b4f614a949e23e2e89a63aac1488 --- /dev/null +++ b/hyperparameter/c2/tabbyflow/tabbyflow-c2-20260504_235339/tabular_bundle/pipeline_c2/info.json @@ -0,0 +1,88 @@ +{ + "name": "pipeline_c2", + "task_type": "multiclass", + "n_num_features": 0, + "n_cat_features": 6, + "train_size": 1382, + "test_num": 1382, + "val_num": 1382, + "train_num": 1382, + "bundle_note": "val/test matrices are train copies (train-only policy; no real held-out rows).", + "num_col_idx": [], + "cat_col_idx": [ + 0, + 1, + 2, + 3, + 4, + 5 + ], + "target_col_idx": [ + 6 + ], + "column_names": [ + "buying", + "maint", + "doors", + "persons", + "lug_boot", + "safety", + "class" + ], + "int_col_idx": [], + "int_columns": [], + "int_col_idx_wrt_num": [], + "metadata": { + "columns": { + "0": { + "sdtype": "categorical" + }, + "1": { + "sdtype": "categorical" + }, + "2": { + "sdtype": "categorical" + }, + "3": { + "sdtype": "categorical" + }, + "4": { + "sdtype": "categorical" + }, + "5": { + "sdtype": "categorical" + }, + "6": { + "sdtype": "categorical" + } + } + }, + "idx_mapping": { + "0": 0, + "1": 1, + "2": 2, + "3": 3, + "4": 4, + "5": 5, + "6": 6 + }, + "inverse_idx_mapping": { + "0": 0, + "1": 1, + "2": 2, + "3": 3, + "4": 4, + "5": 5, + "6": 6 + }, + "idx_name_mapping": { + "0": "buying", + "1": "maint", + "2": "doors", + "3": "persons", + "4": "lug_boot", + "5": "safety", + "6": "class" + }, + "n_classes": 4 +} \ No newline at end of file diff --git a/hyperparameter/c2/tabbyflow/tabbyflow-c2-20260504_235339/tabular_bundle/pipeline_c2/real.csv b/hyperparameter/c2/tabbyflow/tabbyflow-c2-20260504_235339/tabular_bundle/pipeline_c2/real.csv new file mode 100644 index 0000000000000000000000000000000000000000..f778fcd2758e712a195229c6f50504f94f046c8d --- /dev/null +++ b/hyperparameter/c2/tabbyflow/tabbyflow-c2-20260504_235339/tabular_bundle/pipeline_c2/real.csv @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:a54d8aab34745836c4d0260009787c8064c2c3e9d99040c5a6856190eb0745e9 +size 24215 diff --git a/hyperparameter/c2/tabbyflow/tabbyflow-c2-20260504_235339/tabular_bundle/pipeline_c2/test.csv b/hyperparameter/c2/tabbyflow/tabbyflow-c2-20260504_235339/tabular_bundle/pipeline_c2/test.csv new file mode 100644 index 0000000000000000000000000000000000000000..f778fcd2758e712a195229c6f50504f94f046c8d --- /dev/null +++ b/hyperparameter/c2/tabbyflow/tabbyflow-c2-20260504_235339/tabular_bundle/pipeline_c2/test.csv @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:a54d8aab34745836c4d0260009787c8064c2c3e9d99040c5a6856190eb0745e9 +size 24215 diff --git a/hyperparameter/c2/tabbyflow/tabbyflow-c2-20260504_235339/tabular_bundle/pipeline_c2/val.csv b/hyperparameter/c2/tabbyflow/tabbyflow-c2-20260504_235339/tabular_bundle/pipeline_c2/val.csv new file mode 100644 index 0000000000000000000000000000000000000000..f778fcd2758e712a195229c6f50504f94f046c8d --- /dev/null +++ b/hyperparameter/c2/tabbyflow/tabbyflow-c2-20260504_235339/tabular_bundle/pipeline_c2/val.csv @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:a54d8aab34745836c4d0260009787c8064c2c3e9d99040c5a6856190eb0745e9 +size 24215 diff --git a/hyperparameter/c2/tabbyflow/tabbyflow-c2-20260504_235339/tabular_bundle/pipeline_c2/y_test.npy b/hyperparameter/c2/tabbyflow/tabbyflow-c2-20260504_235339/tabular_bundle/pipeline_c2/y_test.npy new file mode 100644 index 0000000000000000000000000000000000000000..8bfc8f9de7350657cd6411c55d2b9b87bea9c13a --- /dev/null +++ b/hyperparameter/c2/tabbyflow/tabbyflow-c2-20260504_235339/tabular_bundle/pipeline_c2/y_test.npy @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:3f8eb0b25043331a30fde5439f063eed59e7a76f45d7d102b9b4fbcd16b551b4 +size 11184 diff --git a/hyperparameter/c2/tabbyflow/tabbyflow-c2-20260504_235339/tabular_bundle/pipeline_c2/y_train.npy b/hyperparameter/c2/tabbyflow/tabbyflow-c2-20260504_235339/tabular_bundle/pipeline_c2/y_train.npy new file mode 100644 index 0000000000000000000000000000000000000000..8bfc8f9de7350657cd6411c55d2b9b87bea9c13a --- /dev/null +++ b/hyperparameter/c2/tabbyflow/tabbyflow-c2-20260504_235339/tabular_bundle/pipeline_c2/y_train.npy @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:3f8eb0b25043331a30fde5439f063eed59e7a76f45d7d102b9b4fbcd16b551b4 +size 11184 diff --git a/hyperparameter/c2/tabbyflow/tabbyflow-c2-20260504_235339/tabular_bundle/pipeline_c2/y_val.npy b/hyperparameter/c2/tabbyflow/tabbyflow-c2-20260504_235339/tabular_bundle/pipeline_c2/y_val.npy new file mode 100644 index 0000000000000000000000000000000000000000..8bfc8f9de7350657cd6411c55d2b9b87bea9c13a --- /dev/null +++ b/hyperparameter/c2/tabbyflow/tabbyflow-c2-20260504_235339/tabular_bundle/pipeline_c2/y_val.npy @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:3f8eb0b25043331a30fde5439f063eed59e7a76f45d7d102b9b4fbcd16b551b4 +size 11184 diff --git a/hyperparameter/c2/tabbyflow/tabbyflow-c2-20260504_235339/train_20260504_235339.log b/hyperparameter/c2/tabbyflow/tabbyflow-c2-20260504_235339/train_20260504_235339.log new file mode 100644 index 0000000000000000000000000000000000000000..fc28d13a90b03a04e7dc1519cfaf3710b0d20e1e --- /dev/null +++ b/hyperparameter/c2/tabbyflow/tabbyflow-c2-20260504_235339/train_20260504_235339.log @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:cfd86499683a409403963725c9479086c60c6ca6a4ce804955a371360821b1d1 +size 61468 diff --git a/hyperparameter/c2/tabbyflow/tabbyflow-c2-20260504_235618/_tabbyflow_gen.py b/hyperparameter/c2/tabbyflow/tabbyflow-c2-20260504_235618/_tabbyflow_gen.py new file mode 100644 index 0000000000000000000000000000000000000000..b72e43c40f6e082054c58e431722ee8000c8699a --- /dev/null +++ b/hyperparameter/c2/tabbyflow/tabbyflow-c2-20260504_235618/_tabbyflow_gen.py @@ -0,0 +1,34 @@ + +import os, shutil, subprocess, sys +root = r"/workspace/ef-vfm" +name = r"pipeline_c2" +src = r"/work/output-Benchmark-trainonly-v1/c2/tabbyflow/tabbyflow-c2-20260504_235618/tabular_bundle/pipeline_c2" +dst_data = os.path.join(root, "data", name) +shutil.rmtree(dst_data, ignore_errors=True) +shutil.copytree(src, dst_data) +dst_syn = os.path.join(root, "synthetic", name) +os.makedirs(dst_syn, exist_ok=True) +for fn in ("real.csv", "test.csv", "val.csv"): + shutil.copy(os.path.join(src, fn), os.path.join(dst_syn, fn)) +os.chdir(root) +os.environ["PYTHONPATH"] = root + os.pathsep + os.environ.get("PYTHONPATH", "") +os.environ.setdefault("EFVFM_SAMPLE_BATCH_SIZE", "128") +subprocess.check_call([ + sys.executable, "main.py", + "--dataname", name, "--mode", "test", "--gpu", "0", + "--no_wandb", "--exp_name", r"adapter_efvfm", + "--ckpt_path", r"/workspace/ef-vfm/ef_vfm/ckpt/pipeline_c2/adapter_efvfm/model_500.pt", + "--num_samples_to_generate", str(int(1382)), +]) +base = os.path.join(root, "ef_vfm", "result", name, r"adapter_efvfm") +best = None +best_t = -1.0 +for r, _, files in os.walk(base): + if "samples.csv" in files: + p = os.path.join(r, "samples.csv") + t = os.path.getmtime(p) + if t > best_t: + best_t, best = t, p +if not best: + raise SystemExit("tabbyflow: no samples.csv in " + base) +shutil.copy(best, r"/work/output-Benchmark-trainonly-v1/c2/tabbyflow/tabbyflow-c2-20260504_235618/tabbyflow-c2-1382-20260504_235957.csv") diff --git a/hyperparameter/c2/tabbyflow/tabbyflow-c2-20260504_235618/_tabbyflow_train.py b/hyperparameter/c2/tabbyflow/tabbyflow-c2-20260504_235618/_tabbyflow_train.py new file mode 100644 index 0000000000000000000000000000000000000000..80d6bcd905a2552418254e7993a13c8ef028f2cf --- /dev/null +++ b/hyperparameter/c2/tabbyflow/tabbyflow-c2-20260504_235618/_tabbyflow_train.py @@ -0,0 +1,24 @@ + +import os, shutil, subprocess, sys +root = r"/workspace/ef-vfm" +name = r"pipeline_c2" +src = r"/work/output-Benchmark-trainonly-v1/c2/tabbyflow/tabbyflow-c2-20260504_235618/tabular_bundle/pipeline_c2" +os.makedirs(os.path.join(root, "data", name), exist_ok=True) +dst_data = os.path.join(root, "data", name) +dst_syn = os.path.join(root, "synthetic", name) +shutil.rmtree(dst_data, ignore_errors=True) +shutil.copytree(src, dst_data) +os.makedirs(dst_syn, exist_ok=True) +for fn in ("real.csv", "test.csv", "val.csv"): + shutil.copy(os.path.join(src, fn), os.path.join(dst_syn, fn)) +os.chdir(root) +os.environ["PYTHONPATH"] = root + os.pathsep + os.environ.get("PYTHONPATH", "") +os.environ["EFVFM_SMOKE_STEPS"] = "200" +os.environ["EFVFM_ADAPTER_TRAIN"] = "1" +os.environ.setdefault("EFVFM_SAMPLE_BATCH_SIZE", "128") +os.environ.setdefault("EFVFM_EVAL_NUM_SAMPLES", "512") +subprocess.check_call([ + sys.executable, "main.py", + "--dataname", name, "--mode", "train", "--gpu", "0", + "--no_wandb", "--exp_name", r"adapter_efvfm", +]) diff --git a/hyperparameter/c2/tabbyflow/tabbyflow-c2-20260504_235618/gen_20260504_235957.log b/hyperparameter/c2/tabbyflow/tabbyflow-c2-20260504_235618/gen_20260504_235957.log new file mode 100644 index 0000000000000000000000000000000000000000..a0b69479648d2901ea3d252c4d6c5a4a73622792 --- /dev/null +++ b/hyperparameter/c2/tabbyflow/tabbyflow-c2-20260504_235618/gen_20260504_235957.log @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:6a718b5b364468e64a6997ea6ef81c859ebd9a0a4d2659bc8657888de3e24e16 +size 3415 diff --git a/hyperparameter/c2/tabbyflow/tabbyflow-c2-20260504_235618/input_snapshot.json b/hyperparameter/c2/tabbyflow/tabbyflow-c2-20260504_235618/input_snapshot.json new file mode 100644 index 0000000000000000000000000000000000000000..89c9d5855c86fb753a25070ff5c19d45d1e2fb9e --- /dev/null +++ b/hyperparameter/c2/tabbyflow/tabbyflow-c2-20260504_235618/input_snapshot.json @@ -0,0 +1,36 @@ +{ + "dataset_id": "c2", + "model": "tabbyflow", + "inputs": { + "train_csv": { + "path": "/data/jialinzhang/SynthesizePipeline-server/DatasetNew/c2/c2-train.csv", + "exists": true, + "size": 42948, + "sha256": "17bc560fa96bd00fb3b526e1e65bc91210b701d0d0a4e8bb9b4c5196cab56def" + }, + "val_csv": { + "path": "/data/jialinzhang/SynthesizePipeline-server/DatasetNew/c2/c2-val.csv", + "exists": true, + "size": 5349, + "sha256": "61e565eca62e65a7dccd9d51039a3170413379e10fc494e25870e7c4294863c9" + }, + "test_csv": { + "path": "/data/jialinzhang/SynthesizePipeline-server/DatasetNew/c2/c2-test.csv", + "exists": true, + "size": 5448, + "sha256": "cbcbb062a1faf5fa44b66c80532baa229e05b94fc42137269761e6c6d84af20a" + }, + "profile_json": { + "path": "/data/jialinzhang/SynthesizePipeline-server/DatasetNew/artifacts/data_core/tabular/c2/c2-dataset_profile.json", + "exists": true, + "size": 3240, + "sha256": "526b7163b2076c93c0bf4638438081ee8a6907065d5b608faa40d1a3dbc2a27b" + }, + "contract_json": { + "path": "/data/jialinzhang/SynthesizePipeline-server/DatasetNew/artifacts/data_core/tabular/c2/c2-dataset_contract_v1.json", + "exists": true, + "size": 3731, + "sha256": "fb595a876054c2ee9b4e10cfe83a5691588de1d25466cbb9d473c18ad3604009" + } + } +} \ No newline at end of file diff --git a/hyperparameter/c2/tabbyflow/tabbyflow-c2-20260504_235618/models_tabbyflow/trained.pt b/hyperparameter/c2/tabbyflow/tabbyflow-c2-20260504_235618/models_tabbyflow/trained.pt new file mode 100644 index 0000000000000000000000000000000000000000..f063a878c470d9d40f79db79881596e1e497dffd --- /dev/null +++ b/hyperparameter/c2/tabbyflow/tabbyflow-c2-20260504_235618/models_tabbyflow/trained.pt @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:adb734fec12f2251befd371dca69e481b19464aded2a6823105a01b4be6ddbe5 +size 40 diff --git a/hyperparameter/c2/tabbyflow/tabbyflow-c2-20260504_235618/public_gate/normalized_schema_snapshot.json b/hyperparameter/c2/tabbyflow/tabbyflow-c2-20260504_235618/public_gate/normalized_schema_snapshot.json new file mode 100644 index 0000000000000000000000000000000000000000..689b1d00d96508e44ba40e58dc4560e19afc2b3b --- /dev/null +++ b/hyperparameter/c2/tabbyflow/tabbyflow-c2-20260504_235618/public_gate/normalized_schema_snapshot.json @@ -0,0 +1,144 @@ +{ + "dataset_id": "c2", + "target_column": "class", + "task_type": "classification", + "columns": [ + { + "name": "buying", + "role": "feature", + "semantic_type": "categorical", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 4, + "unique_ratio": 0.002894, + "example_values": [ + "vhigh", + "med", + "high", + "low" + ] + } + }, + { + "name": "maint", + "role": "feature", + "semantic_type": "categorical", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 4, + "unique_ratio": 0.002894, + "example_values": [ + "vhigh", + "low", + "med", + "high" + ] + } + }, + { + "name": "doors", + "role": "feature", + "semantic_type": "categorical", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 4, + "unique_ratio": 0.002894, + "example_values": [ + "2", + "5more", + "3", + "4" + ] + } + }, + { + "name": "persons", + "role": "feature", + "semantic_type": "categorical", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 3, + "unique_ratio": 0.002171, + "example_values": [ + "2", + "4", + "more" + ] + } + }, + { + "name": "lug_boot", + "role": "feature", + "semantic_type": "categorical", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 3, + "unique_ratio": 0.002171, + "example_values": [ + "small", + "big", + "med" + ] + } + }, + { + "name": "safety", + "role": "feature", + "semantic_type": "categorical", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 3, + "unique_ratio": 0.002171, + "example_values": [ + "low", + "high", + "med" + ] + } + }, + { + "name": "class", + "role": "target", + "semantic_type": "categorical", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 4, + "unique_ratio": 0.002894, + "example_values": [ + "unacc", + "good", + "acc", + "vgood" + ] + } + } + ] +} \ No newline at end of file diff --git a/hyperparameter/c2/tabbyflow/tabbyflow-c2-20260504_235618/public_gate/public_gate_report.json b/hyperparameter/c2/tabbyflow/tabbyflow-c2-20260504_235618/public_gate/public_gate_report.json new file mode 100644 index 0000000000000000000000000000000000000000..2e4cdcb2a4e28e40d59b17a83e773f622b7636a5 --- /dev/null +++ b/hyperparameter/c2/tabbyflow/tabbyflow-c2-20260504_235618/public_gate/public_gate_report.json @@ -0,0 +1,37 @@ +{ + "dataset_id": "c2", + "status": "pass", + "checks": [ + { + "check_id": "PG001_csv_parse_ok", + "status": "pass" + }, + { + "check_id": "PG002_split_header_consistent", + "status": "pass" + }, + { + "check_id": "PG003_profile_header_match", + "status": "pass" + }, + { + "check_id": "PG004_missing_token_normalized", + "status": "pass" + }, + { + "check_id": "PG005_semantic_type_validated", + "status": "pass" + }, + { + "check_id": "PG006_target_defined_and_valid", + "status": "pass" + } + ], + "target_column": "class", + "task_type": "classification", + "input_splits": { + "train": "/data/jialinzhang/SynthesizePipeline-server/DatasetNew/c2/c2-train.csv", + "val": "/data/jialinzhang/SynthesizePipeline-server/DatasetNew/c2/c2-val.csv", + "test": "/data/jialinzhang/SynthesizePipeline-server/DatasetNew/c2/c2-test.csv" + } +} \ No newline at end of file diff --git a/hyperparameter/c2/tabbyflow/tabbyflow-c2-20260504_235618/public_gate/staged_input_manifest.json b/hyperparameter/c2/tabbyflow/tabbyflow-c2-20260504_235618/public_gate/staged_input_manifest.json new file mode 100644 index 0000000000000000000000000000000000000000..c2b719fb665f2e4d0601de776a83d7c2cfa780a4 --- /dev/null +++ b/hyperparameter/c2/tabbyflow/tabbyflow-c2-20260504_235618/public_gate/staged_input_manifest.json @@ -0,0 +1,149 @@ +{ + "dataset_id": "c2", + "target_column": "class", + "task_type": "classification", + "train_csv": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/c2/tabbyflow/tabbyflow-c2-20260504_235618/staged/public/train.csv", + "val_csv": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/c2/tabbyflow/tabbyflow-c2-20260504_235618/staged/public/val.csv", + "test_csv": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/c2/tabbyflow/tabbyflow-c2-20260504_235618/staged/public/test.csv", + "features_json": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/c2/tabbyflow/tabbyflow-c2-20260504_235618/staged/public/staged_features.json", + "public_gate_report": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/c2/tabbyflow/tabbyflow-c2-20260504_235618/public_gate/public_gate_report.json", + "column_schema": [ + { + "name": "buying", + "role": "feature", + "semantic_type": "categorical", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 4, + "unique_ratio": 0.002894, + "example_values": [ + "vhigh", + "med", + "high", + "low" + ] + } + }, + { + "name": "maint", + "role": "feature", + "semantic_type": "categorical", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 4, + "unique_ratio": 0.002894, + "example_values": [ + "vhigh", + "low", + "med", + "high" + ] + } + }, + { + "name": "doors", + "role": "feature", + "semantic_type": "categorical", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 4, + "unique_ratio": 0.002894, + "example_values": [ + "2", + "5more", + "3", + "4" + ] + } + }, + { + "name": "persons", + "role": "feature", + "semantic_type": "categorical", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 3, + "unique_ratio": 0.002171, + "example_values": [ + "2", + "4", + "more" + ] + } + }, + { + "name": "lug_boot", + "role": "feature", + "semantic_type": "categorical", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 3, + "unique_ratio": 0.002171, + "example_values": [ + "small", + "big", + "med" + ] + } + }, + { + "name": "safety", + "role": "feature", + "semantic_type": "categorical", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 3, + "unique_ratio": 0.002171, + "example_values": [ + "low", + "high", + "med" + ] + } + }, + { + "name": "class", + "role": "target", + "semantic_type": "categorical", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 4, + "unique_ratio": 0.002894, + "example_values": [ + "unacc", + "good", + "acc", + "vgood" + ] + } + } + ] +} \ No newline at end of file diff --git a/hyperparameter/c2/tabbyflow/tabbyflow-c2-20260504_235618/run_config.json b/hyperparameter/c2/tabbyflow/tabbyflow-c2-20260504_235618/run_config.json new file mode 100644 index 0000000000000000000000000000000000000000..1d4e458f6ce8733250da1064530fd79153a824c2 --- /dev/null +++ b/hyperparameter/c2/tabbyflow/tabbyflow-c2-20260504_235618/run_config.json @@ -0,0 +1,42 @@ +{ + "schema_version": 1, + "recorded_at": "2026-05-04T23:56:18", + "dataset_id": "c2", + "model": "tabbyflow", + "work_dir": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/c2/tabbyflow/tabbyflow-c2-20260504_235618", + "dataset_source_requested": "new", + "dataset_source_resolved": "new", + "cli_args": { + "model": "tabbyflow", + "dataset": "c2", + "dataset_source": "new", + "train": true, + "generate": true, + "num_rows": 0, + "epochs": 200, + "output_dir": null, + "model_dir": null, + "work_dir": null, + "resume": false, + "no_stats": false + }, + "resolved": { + "num_rows": 1382, + "model_path": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/c2/tabbyflow/tabbyflow-c2-20260504_235618/models_tabbyflow/trained.pt", + "output_csv": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/c2/tabbyflow/tabbyflow-c2-20260504_235618/tabbyflow-c2-1382-20260504_235957.csv" + }, + "input_artifacts": { + "public_gate_report": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/c2/tabbyflow/tabbyflow-c2-20260504_235618/public_gate/public_gate_report.json", + "public_manifest": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/c2/tabbyflow/tabbyflow-c2-20260504_235618/public_gate/staged_input_manifest.json", + "model_manifest": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/c2/tabbyflow/tabbyflow-c2-20260504_235618/staged/tabbyflow/model_input_manifest.json", + "train_csv": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/c2/tabbyflow/tabbyflow-c2-20260504_235618/staged/public/train.csv", + "features_json": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/c2/tabbyflow/tabbyflow-c2-20260504_235618/staged/public/staged_features.json", + "target_column": "class", + "task_type": "classification" + }, + "env_overrides": { + "BENCHMARK_TABBYFLOW_GPUS": "device=0", + "EFVFM_EVAL_NUM_SAMPLES": "512", + "EFVFM_SAMPLE_BATCH_SIZE": "64" + } +} \ No newline at end of file diff --git a/hyperparameter/c2/tabbyflow/tabbyflow-c2-20260504_235618/runtime_result.json b/hyperparameter/c2/tabbyflow/tabbyflow-c2-20260504_235618/runtime_result.json new file mode 100644 index 0000000000000000000000000000000000000000..785dd8f7950da266c23a6a4f452546d8cfe51933 --- /dev/null +++ b/hyperparameter/c2/tabbyflow/tabbyflow-c2-20260504_235618/runtime_result.json @@ -0,0 +1,27 @@ +{ + "dataset_id": "c2", + "model": "tabbyflow", + "run_id": "tabbyflow-c2-20260504_235618", + "public_gate_status": "pass", + "adapter_ready_status": "pass", + "train_status": "success", + "generate_status": "success", + "reason_code": null, + "reason_detail": null, + "artifacts": { + "synthetic_csv": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/c2/tabbyflow/tabbyflow-c2-20260504_235618/tabbyflow-c2-1382-20260504_235957.csv", + "model_path": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/c2/tabbyflow/tabbyflow-c2-20260504_235618/models_tabbyflow/trained.pt" + }, + "timings": { + "train": { + "started_at": "2026-05-04T23:56:18", + "ended_at": "2026-05-04T23:59:57", + "duration_sec": 218.906 + }, + "generate": { + "started_at": "2026-05-04T23:59:57", + "ended_at": "2026-05-05T00:00:12", + "duration_sec": 15.811 + } + } +} \ No newline at end of file diff --git a/hyperparameter/c2/tabbyflow/tabbyflow-c2-20260504_235618/staged/public/staged_features.json b/hyperparameter/c2/tabbyflow/tabbyflow-c2-20260504_235618/staged/public/staged_features.json new file mode 100644 index 0000000000000000000000000000000000000000..61783861dd5de501592f76acb0469cf3f3b2622a --- /dev/null +++ b/hyperparameter/c2/tabbyflow/tabbyflow-c2-20260504_235618/staged/public/staged_features.json @@ -0,0 +1,37 @@ +[ + { + "feature_name": "buying", + "data_type": "categorical", + "is_target": false + }, + { + "feature_name": "maint", + "data_type": "categorical", + "is_target": false + }, + { + "feature_name": "doors", + "data_type": "categorical", + "is_target": false + }, + { + "feature_name": "persons", + "data_type": "categorical", + "is_target": false + }, + { + "feature_name": "lug_boot", + "data_type": "categorical", + "is_target": false + }, + { + "feature_name": "safety", + "data_type": "categorical", + "is_target": false + }, + { + "feature_name": "class", + "data_type": "categorical", + "is_target": true + } +] \ No newline at end of file diff --git a/hyperparameter/c2/tabbyflow/tabbyflow-c2-20260504_235618/staged/public/test.csv b/hyperparameter/c2/tabbyflow/tabbyflow-c2-20260504_235618/staged/public/test.csv new file mode 100644 index 0000000000000000000000000000000000000000..392a0d7189a34d8f13ecf20a99d64b03230d517c --- /dev/null +++ b/hyperparameter/c2/tabbyflow/tabbyflow-c2-20260504_235618/staged/public/test.csv @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:b48114a7d0bc5bd9a07920f903c8d4aba8bf98bf2a66a050da03588b0245ca73 +size 5273 diff --git a/hyperparameter/c2/tabbyflow/tabbyflow-c2-20260504_235618/staged/public/train.csv b/hyperparameter/c2/tabbyflow/tabbyflow-c2-20260504_235618/staged/public/train.csv new file mode 100644 index 0000000000000000000000000000000000000000..da4f4d55134eebc0e51157d0d467536371db1484 --- /dev/null +++ b/hyperparameter/c2/tabbyflow/tabbyflow-c2-20260504_235618/staged/public/train.csv @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:4aed00c2c2b3f88a55a7ebff31b2e1b5e0e32fb0a7267e0b9d2779cd23e434dd +size 41565 diff --git a/hyperparameter/c2/tabbyflow/tabbyflow-c2-20260504_235618/staged/public/val.csv b/hyperparameter/c2/tabbyflow/tabbyflow-c2-20260504_235618/staged/public/val.csv new file mode 100644 index 0000000000000000000000000000000000000000..af8caf7ee42524188534a3daf32996dc491952d9 --- /dev/null +++ b/hyperparameter/c2/tabbyflow/tabbyflow-c2-20260504_235618/staged/public/val.csv @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:26e90c1170a57a14c05832ac88027722b1f3848f9662c7c09ef7c93dcba4cc01 +size 5176 diff --git a/hyperparameter/c2/tabbyflow/tabbyflow-c2-20260504_235618/staged/tabbyflow/adapter_report.json b/hyperparameter/c2/tabbyflow/tabbyflow-c2-20260504_235618/staged/tabbyflow/adapter_report.json new file mode 100644 index 0000000000000000000000000000000000000000..df09d8efc388b0d4890c1c85f8f7e3513cd45437 --- /dev/null +++ b/hyperparameter/c2/tabbyflow/tabbyflow-c2-20260504_235618/staged/tabbyflow/adapter_report.json @@ -0,0 +1,7 @@ +{ + "adapter_ready_status": "pass", + "adapter_fail_reason_code": null, + "adapter_fail_detail": null, + "adapter_transforms_applied": [], + "model_input_manifest": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/c2/tabbyflow/tabbyflow-c2-20260504_235618/staged/tabbyflow/model_input_manifest.json" +} \ No newline at end of file diff --git a/hyperparameter/c2/tabbyflow/tabbyflow-c2-20260504_235618/staged/tabbyflow/adapter_transforms_applied.json b/hyperparameter/c2/tabbyflow/tabbyflow-c2-20260504_235618/staged/tabbyflow/adapter_transforms_applied.json new file mode 100644 index 0000000000000000000000000000000000000000..0637a088a01e8ddab3bf3fa98dbe804cbde1a0dc --- /dev/null +++ b/hyperparameter/c2/tabbyflow/tabbyflow-c2-20260504_235618/staged/tabbyflow/adapter_transforms_applied.json @@ -0,0 +1 @@ +[] \ No newline at end of file diff --git a/hyperparameter/c2/tabbyflow/tabbyflow-c2-20260504_235618/staged/tabbyflow/model_input_manifest.json b/hyperparameter/c2/tabbyflow/tabbyflow-c2-20260504_235618/staged/tabbyflow/model_input_manifest.json new file mode 100644 index 0000000000000000000000000000000000000000..2f96a71be069f1870cff5c493dcae81ee341da26 --- /dev/null +++ b/hyperparameter/c2/tabbyflow/tabbyflow-c2-20260504_235618/staged/tabbyflow/model_input_manifest.json @@ -0,0 +1,151 @@ +{ + "dataset_id": "c2", + "model": "tabbyflow", + "target_column": "class", + "task_type": "classification", + "column_schema": [ + { + "name": "buying", + "role": "feature", + "semantic_type": "categorical", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 4, + "unique_ratio": 0.002894, + "example_values": [ + "vhigh", + "med", + "high", + "low" + ] + } + }, + { + "name": "maint", + "role": "feature", + "semantic_type": "categorical", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 4, + "unique_ratio": 0.002894, + "example_values": [ + "vhigh", + "low", + "med", + "high" + ] + } + }, + { + "name": "doors", + "role": "feature", + "semantic_type": "categorical", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 4, + "unique_ratio": 0.002894, + "example_values": [ + "2", + "5more", + "3", + "4" + ] + } + }, + { + "name": "persons", + "role": "feature", + "semantic_type": "categorical", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 3, + "unique_ratio": 0.002171, + "example_values": [ + "2", + "4", + "more" + ] + } + }, + { + "name": "lug_boot", + "role": "feature", + "semantic_type": "categorical", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 3, + "unique_ratio": 0.002171, + "example_values": [ + "small", + "big", + "med" + ] + } + }, + { + "name": "safety", + "role": "feature", + "semantic_type": "categorical", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 3, + "unique_ratio": 0.002171, + "example_values": [ + "low", + "high", + "med" + ] + } + }, + { + "name": "class", + "role": "target", + "semantic_type": "categorical", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 4, + "unique_ratio": 0.002894, + "example_values": [ + "unacc", + "good", + "acc", + "vgood" + ] + } + } + ], + "public_manifest": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/c2/tabbyflow/tabbyflow-c2-20260504_235618/public_gate/staged_input_manifest.json", + "train_csv": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/c2/tabbyflow/tabbyflow-c2-20260504_235618/staged/public/train.csv", + "val_csv": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/c2/tabbyflow/tabbyflow-c2-20260504_235618/staged/public/val.csv", + "test_csv": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/c2/tabbyflow/tabbyflow-c2-20260504_235618/staged/public/test.csv", + "features_json": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/c2/tabbyflow/tabbyflow-c2-20260504_235618/staged/public/staged_features.json", + "public_gate_report": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/c2/tabbyflow/tabbyflow-c2-20260504_235618/public_gate/public_gate_report.json" +} \ No newline at end of file diff --git a/hyperparameter/c2/tabbyflow/tabbyflow-c2-20260504_235618/tabbyflow-c2-1382-20260504_235957.csv b/hyperparameter/c2/tabbyflow/tabbyflow-c2-20260504_235618/tabbyflow-c2-1382-20260504_235957.csv new file mode 100644 index 0000000000000000000000000000000000000000..c212ab10881961278d453eb3e879bc783a6e9fa4 --- /dev/null +++ b/hyperparameter/c2/tabbyflow/tabbyflow-c2-20260504_235618/tabbyflow-c2-1382-20260504_235957.csv @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:0718fa9bac5f4bc06aa4d78080565ee4bb469db3ae3c93fbb94dc2e3c12269b2 +size 19397 diff --git a/hyperparameter/c2/tabbyflow/tabbyflow-c2-20260504_235618/tabbyflow_train_meta.json b/hyperparameter/c2/tabbyflow/tabbyflow-c2-20260504_235618/tabbyflow_train_meta.json new file mode 100644 index 0000000000000000000000000000000000000000..75deed5f3574e6be3c2c2420a056f95ab549a0bc --- /dev/null +++ b/hyperparameter/c2/tabbyflow/tabbyflow-c2-20260504_235618/tabbyflow_train_meta.json @@ -0,0 +1,5 @@ +{ + "exp_name": "adapter_efvfm", + "dataname": "pipeline_c2", + "steps": 200 +} \ No newline at end of file diff --git a/hyperparameter/c2/tabbyflow/tabbyflow-c2-20260504_235618/tabular_bundle/pipeline_c2/X_cat_test.npy b/hyperparameter/c2/tabbyflow/tabbyflow-c2-20260504_235618/tabular_bundle/pipeline_c2/X_cat_test.npy new file mode 100644 index 0000000000000000000000000000000000000000..e99f1ae8dc9e7155e5c4bbbd3c2f3f7215c628f7 --- /dev/null +++ b/hyperparameter/c2/tabbyflow/tabbyflow-c2-20260504_235618/tabular_bundle/pipeline_c2/X_cat_test.npy @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:24d2203601ba060728920e754747e5a1dc3955a1b5775e147382fee4f1812542 +size 66464 diff --git a/hyperparameter/c2/tabbyflow/tabbyflow-c2-20260504_235618/tabular_bundle/pipeline_c2/X_cat_train.npy b/hyperparameter/c2/tabbyflow/tabbyflow-c2-20260504_235618/tabular_bundle/pipeline_c2/X_cat_train.npy new file mode 100644 index 0000000000000000000000000000000000000000..e99f1ae8dc9e7155e5c4bbbd3c2f3f7215c628f7 --- /dev/null +++ b/hyperparameter/c2/tabbyflow/tabbyflow-c2-20260504_235618/tabular_bundle/pipeline_c2/X_cat_train.npy @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:24d2203601ba060728920e754747e5a1dc3955a1b5775e147382fee4f1812542 +size 66464 diff --git a/hyperparameter/c2/tabbyflow/tabbyflow-c2-20260504_235618/tabular_bundle/pipeline_c2/X_cat_val.npy b/hyperparameter/c2/tabbyflow/tabbyflow-c2-20260504_235618/tabular_bundle/pipeline_c2/X_cat_val.npy new file mode 100644 index 0000000000000000000000000000000000000000..e99f1ae8dc9e7155e5c4bbbd3c2f3f7215c628f7 --- /dev/null +++ b/hyperparameter/c2/tabbyflow/tabbyflow-c2-20260504_235618/tabular_bundle/pipeline_c2/X_cat_val.npy @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:24d2203601ba060728920e754747e5a1dc3955a1b5775e147382fee4f1812542 +size 66464 diff --git a/hyperparameter/c2/tabbyflow/tabbyflow-c2-20260504_235618/tabular_bundle/pipeline_c2/X_num_test.npy b/hyperparameter/c2/tabbyflow/tabbyflow-c2-20260504_235618/tabular_bundle/pipeline_c2/X_num_test.npy new file mode 100644 index 0000000000000000000000000000000000000000..9370f90332827a72be71bf3347770cac2c0354f5 --- /dev/null +++ b/hyperparameter/c2/tabbyflow/tabbyflow-c2-20260504_235618/tabular_bundle/pipeline_c2/X_num_test.npy @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:79dbdf62b6c69f71f3fef2bfcff35e322b2ac9387fc545116c7bc0078b3de9ec +size 128 diff --git a/hyperparameter/c2/tabbyflow/tabbyflow-c2-20260504_235618/tabular_bundle/pipeline_c2/X_num_train.npy b/hyperparameter/c2/tabbyflow/tabbyflow-c2-20260504_235618/tabular_bundle/pipeline_c2/X_num_train.npy new file mode 100644 index 0000000000000000000000000000000000000000..9370f90332827a72be71bf3347770cac2c0354f5 --- /dev/null +++ b/hyperparameter/c2/tabbyflow/tabbyflow-c2-20260504_235618/tabular_bundle/pipeline_c2/X_num_train.npy @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:79dbdf62b6c69f71f3fef2bfcff35e322b2ac9387fc545116c7bc0078b3de9ec +size 128 diff --git a/hyperparameter/c2/tabbyflow/tabbyflow-c2-20260504_235618/tabular_bundle/pipeline_c2/X_num_val.npy b/hyperparameter/c2/tabbyflow/tabbyflow-c2-20260504_235618/tabular_bundle/pipeline_c2/X_num_val.npy new file mode 100644 index 0000000000000000000000000000000000000000..9370f90332827a72be71bf3347770cac2c0354f5 --- /dev/null +++ b/hyperparameter/c2/tabbyflow/tabbyflow-c2-20260504_235618/tabular_bundle/pipeline_c2/X_num_val.npy @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:79dbdf62b6c69f71f3fef2bfcff35e322b2ac9387fc545116c7bc0078b3de9ec +size 128 diff --git a/hyperparameter/c2/tabbyflow/tabbyflow-c2-20260504_235618/tabular_bundle/pipeline_c2/info.json b/hyperparameter/c2/tabbyflow/tabbyflow-c2-20260504_235618/tabular_bundle/pipeline_c2/info.json new file mode 100644 index 0000000000000000000000000000000000000000..bf064b213901b4f614a949e23e2e89a63aac1488 --- /dev/null +++ b/hyperparameter/c2/tabbyflow/tabbyflow-c2-20260504_235618/tabular_bundle/pipeline_c2/info.json @@ -0,0 +1,88 @@ +{ + "name": "pipeline_c2", + "task_type": "multiclass", + "n_num_features": 0, + "n_cat_features": 6, + "train_size": 1382, + "test_num": 1382, + "val_num": 1382, + "train_num": 1382, + "bundle_note": "val/test matrices are train copies (train-only policy; no real held-out rows).", + "num_col_idx": [], + "cat_col_idx": [ + 0, + 1, + 2, + 3, + 4, + 5 + ], + "target_col_idx": [ + 6 + ], + "column_names": [ + "buying", + "maint", + "doors", + "persons", + "lug_boot", + "safety", + "class" + ], + "int_col_idx": [], + "int_columns": [], + "int_col_idx_wrt_num": [], + "metadata": { + "columns": { + "0": { + "sdtype": "categorical" + }, + "1": { + "sdtype": "categorical" + }, + "2": { + "sdtype": "categorical" + }, + "3": { + "sdtype": "categorical" + }, + "4": { + "sdtype": "categorical" + }, + "5": { + "sdtype": "categorical" + }, + "6": { + "sdtype": "categorical" + } + } + }, + "idx_mapping": { + "0": 0, + "1": 1, + "2": 2, + "3": 3, + "4": 4, + "5": 5, + "6": 6 + }, + "inverse_idx_mapping": { + "0": 0, + "1": 1, + "2": 2, + "3": 3, + "4": 4, + "5": 5, + "6": 6 + }, + "idx_name_mapping": { + "0": "buying", + "1": "maint", + "2": "doors", + "3": "persons", + "4": "lug_boot", + "5": "safety", + "6": "class" + }, + "n_classes": 4 +} \ No newline at end of file diff --git a/hyperparameter/c2/tabbyflow/tabbyflow-c2-20260504_235618/tabular_bundle/pipeline_c2/real.csv b/hyperparameter/c2/tabbyflow/tabbyflow-c2-20260504_235618/tabular_bundle/pipeline_c2/real.csv new file mode 100644 index 0000000000000000000000000000000000000000..f778fcd2758e712a195229c6f50504f94f046c8d --- /dev/null +++ b/hyperparameter/c2/tabbyflow/tabbyflow-c2-20260504_235618/tabular_bundle/pipeline_c2/real.csv @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:a54d8aab34745836c4d0260009787c8064c2c3e9d99040c5a6856190eb0745e9 +size 24215 diff --git a/hyperparameter/c2/tabbyflow/tabbyflow-c2-20260504_235618/tabular_bundle/pipeline_c2/test.csv b/hyperparameter/c2/tabbyflow/tabbyflow-c2-20260504_235618/tabular_bundle/pipeline_c2/test.csv new file mode 100644 index 0000000000000000000000000000000000000000..f778fcd2758e712a195229c6f50504f94f046c8d --- /dev/null +++ b/hyperparameter/c2/tabbyflow/tabbyflow-c2-20260504_235618/tabular_bundle/pipeline_c2/test.csv @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:a54d8aab34745836c4d0260009787c8064c2c3e9d99040c5a6856190eb0745e9 +size 24215 diff --git a/hyperparameter/c2/tabbyflow/tabbyflow-c2-20260504_235618/tabular_bundle/pipeline_c2/val.csv b/hyperparameter/c2/tabbyflow/tabbyflow-c2-20260504_235618/tabular_bundle/pipeline_c2/val.csv new file mode 100644 index 0000000000000000000000000000000000000000..f778fcd2758e712a195229c6f50504f94f046c8d --- /dev/null +++ b/hyperparameter/c2/tabbyflow/tabbyflow-c2-20260504_235618/tabular_bundle/pipeline_c2/val.csv @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:a54d8aab34745836c4d0260009787c8064c2c3e9d99040c5a6856190eb0745e9 +size 24215 diff --git a/hyperparameter/c2/tabbyflow/tabbyflow-c2-20260504_235618/tabular_bundle/pipeline_c2/y_test.npy b/hyperparameter/c2/tabbyflow/tabbyflow-c2-20260504_235618/tabular_bundle/pipeline_c2/y_test.npy new file mode 100644 index 0000000000000000000000000000000000000000..8bfc8f9de7350657cd6411c55d2b9b87bea9c13a --- /dev/null +++ b/hyperparameter/c2/tabbyflow/tabbyflow-c2-20260504_235618/tabular_bundle/pipeline_c2/y_test.npy @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:3f8eb0b25043331a30fde5439f063eed59e7a76f45d7d102b9b4fbcd16b551b4 +size 11184 diff --git a/hyperparameter/c2/tabbyflow/tabbyflow-c2-20260504_235618/tabular_bundle/pipeline_c2/y_train.npy b/hyperparameter/c2/tabbyflow/tabbyflow-c2-20260504_235618/tabular_bundle/pipeline_c2/y_train.npy new file mode 100644 index 0000000000000000000000000000000000000000..8bfc8f9de7350657cd6411c55d2b9b87bea9c13a --- /dev/null +++ b/hyperparameter/c2/tabbyflow/tabbyflow-c2-20260504_235618/tabular_bundle/pipeline_c2/y_train.npy @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:3f8eb0b25043331a30fde5439f063eed59e7a76f45d7d102b9b4fbcd16b551b4 +size 11184 diff --git a/hyperparameter/c2/tabbyflow/tabbyflow-c2-20260504_235618/tabular_bundle/pipeline_c2/y_val.npy b/hyperparameter/c2/tabbyflow/tabbyflow-c2-20260504_235618/tabular_bundle/pipeline_c2/y_val.npy new file mode 100644 index 0000000000000000000000000000000000000000..8bfc8f9de7350657cd6411c55d2b9b87bea9c13a --- /dev/null +++ b/hyperparameter/c2/tabbyflow/tabbyflow-c2-20260504_235618/tabular_bundle/pipeline_c2/y_val.npy @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:3f8eb0b25043331a30fde5439f063eed59e7a76f45d7d102b9b4fbcd16b551b4 +size 11184 diff --git a/hyperparameter/c2/tabbyflow/tabbyflow-c2-20260504_235618/train_20260504_235618.log b/hyperparameter/c2/tabbyflow/tabbyflow-c2-20260504_235618/train_20260504_235618.log new file mode 100644 index 0000000000000000000000000000000000000000..3cb45095a1967da97a1241119ba7fa4bb4a47f74 --- /dev/null +++ b/hyperparameter/c2/tabbyflow/tabbyflow-c2-20260504_235618/train_20260504_235618.log @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:2bc0013d6e317a6dd45c5d97baaca5e940d1b2e504644aa3fa44865d25ea1ecc +size 116974 diff --git a/hyperparameter/c2/tabbyflow/tabbyflow-c2-20260505_000025/_tabbyflow_gen.py b/hyperparameter/c2/tabbyflow/tabbyflow-c2-20260505_000025/_tabbyflow_gen.py new file mode 100644 index 0000000000000000000000000000000000000000..2abd72581e9acd7bfd6ee9562649a40561fb1a8b --- /dev/null +++ b/hyperparameter/c2/tabbyflow/tabbyflow-c2-20260505_000025/_tabbyflow_gen.py @@ -0,0 +1,34 @@ + +import os, shutil, subprocess, sys +root = r"/workspace/ef-vfm" +name = r"pipeline_c2" +src = r"/work/output-Benchmark-trainonly-v1/c2/tabbyflow/tabbyflow-c2-20260505_000025/tabular_bundle/pipeline_c2" +dst_data = os.path.join(root, "data", name) +shutil.rmtree(dst_data, ignore_errors=True) +shutil.copytree(src, dst_data) +dst_syn = os.path.join(root, "synthetic", name) +os.makedirs(dst_syn, exist_ok=True) +for fn in ("real.csv", "test.csv", "val.csv"): + shutil.copy(os.path.join(src, fn), os.path.join(dst_syn, fn)) +os.chdir(root) +os.environ["PYTHONPATH"] = root + os.pathsep + os.environ.get("PYTHONPATH", "") +os.environ.setdefault("EFVFM_SAMPLE_BATCH_SIZE", "128") +subprocess.check_call([ + sys.executable, "main.py", + "--dataname", name, "--mode", "test", "--gpu", "0", + "--no_wandb", "--exp_name", r"adapter_efvfm", + "--ckpt_path", r"/workspace/ef-vfm/ef_vfm/ckpt/pipeline_c2/adapter_efvfm/model_500.pt", + "--num_samples_to_generate", str(int(1382)), +]) +base = os.path.join(root, "ef_vfm", "result", name, r"adapter_efvfm") +best = None +best_t = -1.0 +for r, _, files in os.walk(base): + if "samples.csv" in files: + p = os.path.join(r, "samples.csv") + t = os.path.getmtime(p) + if t > best_t: + best_t, best = t, p +if not best: + raise SystemExit("tabbyflow: no samples.csv in " + base) +shutil.copy(best, r"/work/output-Benchmark-trainonly-v1/c2/tabbyflow/tabbyflow-c2-20260505_000025/tabbyflow-c2-1382-20260505_000530.csv") diff --git a/hyperparameter/c2/tabbyflow/tabbyflow-c2-20260505_000025/_tabbyflow_train.py b/hyperparameter/c2/tabbyflow/tabbyflow-c2-20260505_000025/_tabbyflow_train.py new file mode 100644 index 0000000000000000000000000000000000000000..2defabb416384856808baa4bb09f230a248b9641 --- /dev/null +++ b/hyperparameter/c2/tabbyflow/tabbyflow-c2-20260505_000025/_tabbyflow_train.py @@ -0,0 +1,24 @@ + +import os, shutil, subprocess, sys +root = r"/workspace/ef-vfm" +name = r"pipeline_c2" +src = r"/work/output-Benchmark-trainonly-v1/c2/tabbyflow/tabbyflow-c2-20260505_000025/tabular_bundle/pipeline_c2" +os.makedirs(os.path.join(root, "data", name), exist_ok=True) +dst_data = os.path.join(root, "data", name) +dst_syn = os.path.join(root, "synthetic", name) +shutil.rmtree(dst_data, ignore_errors=True) +shutil.copytree(src, dst_data) +os.makedirs(dst_syn, exist_ok=True) +for fn in ("real.csv", "test.csv", "val.csv"): + shutil.copy(os.path.join(src, fn), os.path.join(dst_syn, fn)) +os.chdir(root) +os.environ["PYTHONPATH"] = root + os.pathsep + os.environ.get("PYTHONPATH", "") +os.environ["EFVFM_SMOKE_STEPS"] = "300" +os.environ["EFVFM_ADAPTER_TRAIN"] = "1" +os.environ.setdefault("EFVFM_SAMPLE_BATCH_SIZE", "128") +os.environ.setdefault("EFVFM_EVAL_NUM_SAMPLES", "512") +subprocess.check_call([ + sys.executable, "main.py", + "--dataname", name, "--mode", "train", "--gpu", "0", + "--no_wandb", "--exp_name", r"adapter_efvfm", +]) diff --git a/hyperparameter/c2/tabbyflow/tabbyflow-c2-20260505_000025/gen_20260505_000530.log b/hyperparameter/c2/tabbyflow/tabbyflow-c2-20260505_000025/gen_20260505_000530.log new file mode 100644 index 0000000000000000000000000000000000000000..b274b9f9c41b7fa0875e8354059ecac90c84b619 --- /dev/null +++ b/hyperparameter/c2/tabbyflow/tabbyflow-c2-20260505_000025/gen_20260505_000530.log @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:d3ca6eb4fc7317dca32459c01f9ad1f442316a4fe41ee5cce0307d7e4d72d1ba +size 3414 diff --git a/hyperparameter/c2/tabbyflow/tabbyflow-c2-20260505_000025/input_snapshot.json b/hyperparameter/c2/tabbyflow/tabbyflow-c2-20260505_000025/input_snapshot.json new file mode 100644 index 0000000000000000000000000000000000000000..89c9d5855c86fb753a25070ff5c19d45d1e2fb9e --- /dev/null +++ b/hyperparameter/c2/tabbyflow/tabbyflow-c2-20260505_000025/input_snapshot.json @@ -0,0 +1,36 @@ +{ + "dataset_id": "c2", + "model": "tabbyflow", + "inputs": { + "train_csv": { + "path": "/data/jialinzhang/SynthesizePipeline-server/DatasetNew/c2/c2-train.csv", + "exists": true, + "size": 42948, + "sha256": "17bc560fa96bd00fb3b526e1e65bc91210b701d0d0a4e8bb9b4c5196cab56def" + }, + "val_csv": { + "path": "/data/jialinzhang/SynthesizePipeline-server/DatasetNew/c2/c2-val.csv", + "exists": true, + "size": 5349, + "sha256": "61e565eca62e65a7dccd9d51039a3170413379e10fc494e25870e7c4294863c9" + }, + "test_csv": { + "path": "/data/jialinzhang/SynthesizePipeline-server/DatasetNew/c2/c2-test.csv", + "exists": true, + "size": 5448, + "sha256": "cbcbb062a1faf5fa44b66c80532baa229e05b94fc42137269761e6c6d84af20a" + }, + "profile_json": { + "path": "/data/jialinzhang/SynthesizePipeline-server/DatasetNew/artifacts/data_core/tabular/c2/c2-dataset_profile.json", + "exists": true, + "size": 3240, + "sha256": "526b7163b2076c93c0bf4638438081ee8a6907065d5b608faa40d1a3dbc2a27b" + }, + "contract_json": { + "path": "/data/jialinzhang/SynthesizePipeline-server/DatasetNew/artifacts/data_core/tabular/c2/c2-dataset_contract_v1.json", + "exists": true, + "size": 3731, + "sha256": "fb595a876054c2ee9b4e10cfe83a5691588de1d25466cbb9d473c18ad3604009" + } + } +} \ No newline at end of file diff --git a/hyperparameter/c2/tabbyflow/tabbyflow-c2-20260505_000025/models_tabbyflow/trained.pt b/hyperparameter/c2/tabbyflow/tabbyflow-c2-20260505_000025/models_tabbyflow/trained.pt new file mode 100644 index 0000000000000000000000000000000000000000..f063a878c470d9d40f79db79881596e1e497dffd --- /dev/null +++ b/hyperparameter/c2/tabbyflow/tabbyflow-c2-20260505_000025/models_tabbyflow/trained.pt @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:adb734fec12f2251befd371dca69e481b19464aded2a6823105a01b4be6ddbe5 +size 40 diff --git a/hyperparameter/c2/tabbyflow/tabbyflow-c2-20260505_000025/public_gate/normalized_schema_snapshot.json b/hyperparameter/c2/tabbyflow/tabbyflow-c2-20260505_000025/public_gate/normalized_schema_snapshot.json new file mode 100644 index 0000000000000000000000000000000000000000..689b1d00d96508e44ba40e58dc4560e19afc2b3b --- /dev/null +++ b/hyperparameter/c2/tabbyflow/tabbyflow-c2-20260505_000025/public_gate/normalized_schema_snapshot.json @@ -0,0 +1,144 @@ +{ + "dataset_id": "c2", + "target_column": "class", + "task_type": "classification", + "columns": [ + { + "name": "buying", + "role": "feature", + "semantic_type": "categorical", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 4, + "unique_ratio": 0.002894, + "example_values": [ + "vhigh", + "med", + "high", + "low" + ] + } + }, + { + "name": "maint", + "role": "feature", + "semantic_type": "categorical", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 4, + "unique_ratio": 0.002894, + "example_values": [ + "vhigh", + "low", + "med", + "high" + ] + } + }, + { + "name": "doors", + "role": "feature", + "semantic_type": "categorical", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 4, + "unique_ratio": 0.002894, + "example_values": [ + "2", + "5more", + "3", + "4" + ] + } + }, + { + "name": "persons", + "role": "feature", + "semantic_type": "categorical", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 3, + "unique_ratio": 0.002171, + "example_values": [ + "2", + "4", + "more" + ] + } + }, + { + "name": "lug_boot", + "role": "feature", + "semantic_type": "categorical", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 3, + "unique_ratio": 0.002171, + "example_values": [ + "small", + "big", + "med" + ] + } + }, + { + "name": "safety", + "role": "feature", + "semantic_type": "categorical", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 3, + "unique_ratio": 0.002171, + "example_values": [ + "low", + "high", + "med" + ] + } + }, + { + "name": "class", + "role": "target", + "semantic_type": "categorical", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 4, + "unique_ratio": 0.002894, + "example_values": [ + "unacc", + "good", + "acc", + "vgood" + ] + } + } + ] +} \ No newline at end of file diff --git a/hyperparameter/c2/tabbyflow/tabbyflow-c2-20260505_000025/public_gate/public_gate_report.json b/hyperparameter/c2/tabbyflow/tabbyflow-c2-20260505_000025/public_gate/public_gate_report.json new file mode 100644 index 0000000000000000000000000000000000000000..2e4cdcb2a4e28e40d59b17a83e773f622b7636a5 --- /dev/null +++ b/hyperparameter/c2/tabbyflow/tabbyflow-c2-20260505_000025/public_gate/public_gate_report.json @@ -0,0 +1,37 @@ +{ + "dataset_id": "c2", + "status": "pass", + "checks": [ + { + "check_id": "PG001_csv_parse_ok", + "status": "pass" + }, + { + "check_id": "PG002_split_header_consistent", + "status": "pass" + }, + { + "check_id": "PG003_profile_header_match", + "status": "pass" + }, + { + "check_id": "PG004_missing_token_normalized", + "status": "pass" + }, + { + "check_id": "PG005_semantic_type_validated", + "status": "pass" + }, + { + "check_id": "PG006_target_defined_and_valid", + "status": "pass" + } + ], + "target_column": "class", + "task_type": "classification", + "input_splits": { + "train": "/data/jialinzhang/SynthesizePipeline-server/DatasetNew/c2/c2-train.csv", + "val": "/data/jialinzhang/SynthesizePipeline-server/DatasetNew/c2/c2-val.csv", + "test": "/data/jialinzhang/SynthesizePipeline-server/DatasetNew/c2/c2-test.csv" + } +} \ No newline at end of file diff --git a/hyperparameter/c2/tabbyflow/tabbyflow-c2-20260505_000025/public_gate/staged_input_manifest.json b/hyperparameter/c2/tabbyflow/tabbyflow-c2-20260505_000025/public_gate/staged_input_manifest.json new file mode 100644 index 0000000000000000000000000000000000000000..9972e638ad6d10333a2f472a7919910862216c88 --- /dev/null +++ b/hyperparameter/c2/tabbyflow/tabbyflow-c2-20260505_000025/public_gate/staged_input_manifest.json @@ -0,0 +1,149 @@ +{ + "dataset_id": "c2", + "target_column": "class", + "task_type": "classification", + "train_csv": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/c2/tabbyflow/tabbyflow-c2-20260505_000025/staged/public/train.csv", + "val_csv": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/c2/tabbyflow/tabbyflow-c2-20260505_000025/staged/public/val.csv", + "test_csv": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/c2/tabbyflow/tabbyflow-c2-20260505_000025/staged/public/test.csv", + "features_json": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/c2/tabbyflow/tabbyflow-c2-20260505_000025/staged/public/staged_features.json", + "public_gate_report": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/c2/tabbyflow/tabbyflow-c2-20260505_000025/public_gate/public_gate_report.json", + "column_schema": [ + { + "name": "buying", + "role": "feature", + "semantic_type": "categorical", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 4, + "unique_ratio": 0.002894, + "example_values": [ + "vhigh", + "med", + "high", + "low" + ] + } + }, + { + "name": "maint", + "role": "feature", + "semantic_type": "categorical", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 4, + "unique_ratio": 0.002894, + "example_values": [ + "vhigh", + "low", + "med", + "high" + ] + } + }, + { + "name": "doors", + "role": "feature", + "semantic_type": "categorical", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 4, + "unique_ratio": 0.002894, + "example_values": [ + "2", + "5more", + "3", + "4" + ] + } + }, + { + "name": "persons", + "role": "feature", + "semantic_type": "categorical", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 3, + "unique_ratio": 0.002171, + "example_values": [ + "2", + "4", + "more" + ] + } + }, + { + "name": "lug_boot", + "role": "feature", + "semantic_type": "categorical", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 3, + "unique_ratio": 0.002171, + "example_values": [ + "small", + "big", + "med" + ] + } + }, + { + "name": "safety", + "role": "feature", + "semantic_type": "categorical", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 3, + "unique_ratio": 0.002171, + "example_values": [ + "low", + "high", + "med" + ] + } + }, + { + "name": "class", + "role": "target", + "semantic_type": "categorical", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 4, + "unique_ratio": 0.002894, + "example_values": [ + "unacc", + "good", + "acc", + "vgood" + ] + } + } + ] +} \ No newline at end of file diff --git a/hyperparameter/c2/tabbyflow/tabbyflow-c2-20260505_000025/run_config.json b/hyperparameter/c2/tabbyflow/tabbyflow-c2-20260505_000025/run_config.json new file mode 100644 index 0000000000000000000000000000000000000000..d0db1aa7120455b3539cd1873de5711ea5fa4e32 --- /dev/null +++ b/hyperparameter/c2/tabbyflow/tabbyflow-c2-20260505_000025/run_config.json @@ -0,0 +1,42 @@ +{ + "schema_version": 1, + "recorded_at": "2026-05-05T00:00:25", + "dataset_id": "c2", + "model": "tabbyflow", + "work_dir": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/c2/tabbyflow/tabbyflow-c2-20260505_000025", + "dataset_source_requested": "new", + "dataset_source_resolved": "new", + "cli_args": { + "model": "tabbyflow", + "dataset": "c2", + "dataset_source": "new", + "train": true, + "generate": true, + "num_rows": 0, + "epochs": 300, + "output_dir": null, + "model_dir": null, + "work_dir": null, + "resume": false, + "no_stats": false + }, + "resolved": { + "num_rows": 1382, + "model_path": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/c2/tabbyflow/tabbyflow-c2-20260505_000025/models_tabbyflow/trained.pt", + "output_csv": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/c2/tabbyflow/tabbyflow-c2-20260505_000025/tabbyflow-c2-1382-20260505_000530.csv" + }, + "input_artifacts": { + "public_gate_report": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/c2/tabbyflow/tabbyflow-c2-20260505_000025/public_gate/public_gate_report.json", + "public_manifest": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/c2/tabbyflow/tabbyflow-c2-20260505_000025/public_gate/staged_input_manifest.json", + "model_manifest": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/c2/tabbyflow/tabbyflow-c2-20260505_000025/staged/tabbyflow/model_input_manifest.json", + "train_csv": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/c2/tabbyflow/tabbyflow-c2-20260505_000025/staged/public/train.csv", + "features_json": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/c2/tabbyflow/tabbyflow-c2-20260505_000025/staged/public/staged_features.json", + "target_column": "class", + "task_type": "classification" + }, + "env_overrides": { + "BENCHMARK_TABBYFLOW_GPUS": "device=0", + "EFVFM_EVAL_NUM_SAMPLES": "1024", + "EFVFM_SAMPLE_BATCH_SIZE": "64" + } +} \ No newline at end of file diff --git a/hyperparameter/c2/tabbyflow/tabbyflow-c2-20260505_000025/runtime_result.json b/hyperparameter/c2/tabbyflow/tabbyflow-c2-20260505_000025/runtime_result.json new file mode 100644 index 0000000000000000000000000000000000000000..5db0fbea92dd31921c26777395ca3fe95265ba72 --- /dev/null +++ b/hyperparameter/c2/tabbyflow/tabbyflow-c2-20260505_000025/runtime_result.json @@ -0,0 +1,27 @@ +{ + "dataset_id": "c2", + "model": "tabbyflow", + "run_id": "tabbyflow-c2-20260505_000025", + "public_gate_status": "pass", + "adapter_ready_status": "pass", + "train_status": "success", + "generate_status": "success", + "reason_code": null, + "reason_detail": null, + "artifacts": { + "synthetic_csv": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/c2/tabbyflow/tabbyflow-c2-20260505_000025/tabbyflow-c2-1382-20260505_000530.csv", + "model_path": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/c2/tabbyflow/tabbyflow-c2-20260505_000025/models_tabbyflow/trained.pt" + }, + "timings": { + "train": { + "started_at": "2026-05-05T00:00:25", + "ended_at": "2026-05-05T00:05:30", + "duration_sec": 305.26 + }, + "generate": { + "started_at": "2026-05-05T00:05:30", + "ended_at": "2026-05-05T00:05:49", + "duration_sec": 18.339 + } + } +} \ No newline at end of file diff --git a/hyperparameter/c2/tabbyflow/tabbyflow-c2-20260505_000025/staged/public/staged_features.json b/hyperparameter/c2/tabbyflow/tabbyflow-c2-20260505_000025/staged/public/staged_features.json new file mode 100644 index 0000000000000000000000000000000000000000..61783861dd5de501592f76acb0469cf3f3b2622a --- /dev/null +++ b/hyperparameter/c2/tabbyflow/tabbyflow-c2-20260505_000025/staged/public/staged_features.json @@ -0,0 +1,37 @@ +[ + { + "feature_name": "buying", + "data_type": "categorical", + "is_target": false + }, + { + "feature_name": "maint", + "data_type": "categorical", + "is_target": false + }, + { + "feature_name": "doors", + "data_type": "categorical", + "is_target": false + }, + { + "feature_name": "persons", + "data_type": "categorical", + "is_target": false + }, + { + "feature_name": "lug_boot", + "data_type": "categorical", + "is_target": false + }, + { + "feature_name": "safety", + "data_type": "categorical", + "is_target": false + }, + { + "feature_name": "class", + "data_type": "categorical", + "is_target": true + } +] \ No newline at end of file diff --git a/hyperparameter/c2/tabbyflow/tabbyflow-c2-20260505_000025/staged/public/test.csv b/hyperparameter/c2/tabbyflow/tabbyflow-c2-20260505_000025/staged/public/test.csv new file mode 100644 index 0000000000000000000000000000000000000000..392a0d7189a34d8f13ecf20a99d64b03230d517c --- /dev/null +++ b/hyperparameter/c2/tabbyflow/tabbyflow-c2-20260505_000025/staged/public/test.csv @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:b48114a7d0bc5bd9a07920f903c8d4aba8bf98bf2a66a050da03588b0245ca73 +size 5273 diff --git a/hyperparameter/c2/tabbyflow/tabbyflow-c2-20260505_000025/staged/public/train.csv b/hyperparameter/c2/tabbyflow/tabbyflow-c2-20260505_000025/staged/public/train.csv new file mode 100644 index 0000000000000000000000000000000000000000..da4f4d55134eebc0e51157d0d467536371db1484 --- /dev/null +++ b/hyperparameter/c2/tabbyflow/tabbyflow-c2-20260505_000025/staged/public/train.csv @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:4aed00c2c2b3f88a55a7ebff31b2e1b5e0e32fb0a7267e0b9d2779cd23e434dd +size 41565 diff --git a/hyperparameter/c2/tabbyflow/tabbyflow-c2-20260505_000025/staged/public/val.csv b/hyperparameter/c2/tabbyflow/tabbyflow-c2-20260505_000025/staged/public/val.csv new file mode 100644 index 0000000000000000000000000000000000000000..af8caf7ee42524188534a3daf32996dc491952d9 --- /dev/null +++ b/hyperparameter/c2/tabbyflow/tabbyflow-c2-20260505_000025/staged/public/val.csv @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:26e90c1170a57a14c05832ac88027722b1f3848f9662c7c09ef7c93dcba4cc01 +size 5176 diff --git a/hyperparameter/c2/tabbyflow/tabbyflow-c2-20260505_000025/staged/tabbyflow/adapter_report.json b/hyperparameter/c2/tabbyflow/tabbyflow-c2-20260505_000025/staged/tabbyflow/adapter_report.json new file mode 100644 index 0000000000000000000000000000000000000000..0f3ca116374d1c8b496e54446a8f0723b39c34aa --- /dev/null +++ b/hyperparameter/c2/tabbyflow/tabbyflow-c2-20260505_000025/staged/tabbyflow/adapter_report.json @@ -0,0 +1,7 @@ +{ + "adapter_ready_status": "pass", + "adapter_fail_reason_code": null, + "adapter_fail_detail": null, + "adapter_transforms_applied": [], + "model_input_manifest": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/c2/tabbyflow/tabbyflow-c2-20260505_000025/staged/tabbyflow/model_input_manifest.json" +} \ No newline at end of file diff --git a/hyperparameter/c2/tabbyflow/tabbyflow-c2-20260505_000025/staged/tabbyflow/adapter_transforms_applied.json b/hyperparameter/c2/tabbyflow/tabbyflow-c2-20260505_000025/staged/tabbyflow/adapter_transforms_applied.json new file mode 100644 index 0000000000000000000000000000000000000000..0637a088a01e8ddab3bf3fa98dbe804cbde1a0dc --- /dev/null +++ b/hyperparameter/c2/tabbyflow/tabbyflow-c2-20260505_000025/staged/tabbyflow/adapter_transforms_applied.json @@ -0,0 +1 @@ +[] \ No newline at end of file diff --git a/hyperparameter/c2/tabbyflow/tabbyflow-c2-20260505_000025/staged/tabbyflow/model_input_manifest.json b/hyperparameter/c2/tabbyflow/tabbyflow-c2-20260505_000025/staged/tabbyflow/model_input_manifest.json new file mode 100644 index 0000000000000000000000000000000000000000..f9db67bc854946e52d7015c8e4e76cbc9ef4b3a6 --- /dev/null +++ b/hyperparameter/c2/tabbyflow/tabbyflow-c2-20260505_000025/staged/tabbyflow/model_input_manifest.json @@ -0,0 +1,151 @@ +{ + "dataset_id": "c2", + "model": "tabbyflow", + "target_column": "class", + "task_type": "classification", + "column_schema": [ + { + "name": "buying", + "role": "feature", + "semantic_type": "categorical", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 4, + "unique_ratio": 0.002894, + "example_values": [ + "vhigh", + "med", + "high", + "low" + ] + } + }, + { + "name": "maint", + "role": "feature", + "semantic_type": "categorical", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 4, + "unique_ratio": 0.002894, + "example_values": [ + "vhigh", + "low", + "med", + "high" + ] + } + }, + { + "name": "doors", + "role": "feature", + "semantic_type": "categorical", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 4, + "unique_ratio": 0.002894, + "example_values": [ + "2", + "5more", + "3", + "4" + ] + } + }, + { + "name": "persons", + "role": "feature", + "semantic_type": "categorical", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 3, + "unique_ratio": 0.002171, + "example_values": [ + "2", + "4", + "more" + ] + } + }, + { + "name": "lug_boot", + "role": "feature", + "semantic_type": "categorical", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 3, + "unique_ratio": 0.002171, + "example_values": [ + "small", + "big", + "med" + ] + } + }, + { + "name": "safety", + "role": "feature", + "semantic_type": "categorical", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 3, + "unique_ratio": 0.002171, + "example_values": [ + "low", + "high", + "med" + ] + } + }, + { + "name": "class", + "role": "target", + "semantic_type": "categorical", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 4, + "unique_ratio": 0.002894, + "example_values": [ + "unacc", + "good", + "acc", + "vgood" + ] + } + } + ], + "public_manifest": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/c2/tabbyflow/tabbyflow-c2-20260505_000025/public_gate/staged_input_manifest.json", + "train_csv": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/c2/tabbyflow/tabbyflow-c2-20260505_000025/staged/public/train.csv", + "val_csv": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/c2/tabbyflow/tabbyflow-c2-20260505_000025/staged/public/val.csv", + "test_csv": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/c2/tabbyflow/tabbyflow-c2-20260505_000025/staged/public/test.csv", + "features_json": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/c2/tabbyflow/tabbyflow-c2-20260505_000025/staged/public/staged_features.json", + "public_gate_report": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/c2/tabbyflow/tabbyflow-c2-20260505_000025/public_gate/public_gate_report.json" +} \ No newline at end of file diff --git a/hyperparameter/c2/tabbyflow/tabbyflow-c2-20260505_000025/tabbyflow-c2-1382-20260505_000530.csv b/hyperparameter/c2/tabbyflow/tabbyflow-c2-20260505_000025/tabbyflow-c2-1382-20260505_000530.csv new file mode 100644 index 0000000000000000000000000000000000000000..5feb09516fd479dff828d7fae29985f475f17591 --- /dev/null +++ b/hyperparameter/c2/tabbyflow/tabbyflow-c2-20260505_000025/tabbyflow-c2-1382-20260505_000530.csv @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:a09c1d46d3056ea1338f5545ba8263f88f34ac98608ab0177dc0d1d7098880a2 +size 19397 diff --git a/hyperparameter/c2/tabbyflow/tabbyflow-c2-20260505_000025/tabbyflow_train_meta.json b/hyperparameter/c2/tabbyflow/tabbyflow-c2-20260505_000025/tabbyflow_train_meta.json new file mode 100644 index 0000000000000000000000000000000000000000..ea6591719478981620242f3cdae6f2eddff0adf3 --- /dev/null +++ b/hyperparameter/c2/tabbyflow/tabbyflow-c2-20260505_000025/tabbyflow_train_meta.json @@ -0,0 +1,5 @@ +{ + "exp_name": "adapter_efvfm", + "dataname": "pipeline_c2", + "steps": 300 +} \ No newline at end of file diff --git a/hyperparameter/c2/tabbyflow/tabbyflow-c2-20260505_000025/tabular_bundle/pipeline_c2/X_cat_test.npy b/hyperparameter/c2/tabbyflow/tabbyflow-c2-20260505_000025/tabular_bundle/pipeline_c2/X_cat_test.npy new file mode 100644 index 0000000000000000000000000000000000000000..e99f1ae8dc9e7155e5c4bbbd3c2f3f7215c628f7 --- /dev/null +++ b/hyperparameter/c2/tabbyflow/tabbyflow-c2-20260505_000025/tabular_bundle/pipeline_c2/X_cat_test.npy @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:24d2203601ba060728920e754747e5a1dc3955a1b5775e147382fee4f1812542 +size 66464 diff --git a/hyperparameter/c2/tabbyflow/tabbyflow-c2-20260505_000025/tabular_bundle/pipeline_c2/X_cat_train.npy b/hyperparameter/c2/tabbyflow/tabbyflow-c2-20260505_000025/tabular_bundle/pipeline_c2/X_cat_train.npy new file mode 100644 index 0000000000000000000000000000000000000000..e99f1ae8dc9e7155e5c4bbbd3c2f3f7215c628f7 --- /dev/null +++ b/hyperparameter/c2/tabbyflow/tabbyflow-c2-20260505_000025/tabular_bundle/pipeline_c2/X_cat_train.npy @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:24d2203601ba060728920e754747e5a1dc3955a1b5775e147382fee4f1812542 +size 66464 diff --git a/hyperparameter/c2/tabbyflow/tabbyflow-c2-20260505_000025/tabular_bundle/pipeline_c2/X_cat_val.npy b/hyperparameter/c2/tabbyflow/tabbyflow-c2-20260505_000025/tabular_bundle/pipeline_c2/X_cat_val.npy new file mode 100644 index 0000000000000000000000000000000000000000..e99f1ae8dc9e7155e5c4bbbd3c2f3f7215c628f7 --- /dev/null +++ b/hyperparameter/c2/tabbyflow/tabbyflow-c2-20260505_000025/tabular_bundle/pipeline_c2/X_cat_val.npy @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:24d2203601ba060728920e754747e5a1dc3955a1b5775e147382fee4f1812542 +size 66464 diff --git a/hyperparameter/c2/tabbyflow/tabbyflow-c2-20260505_000025/tabular_bundle/pipeline_c2/X_num_test.npy b/hyperparameter/c2/tabbyflow/tabbyflow-c2-20260505_000025/tabular_bundle/pipeline_c2/X_num_test.npy new file mode 100644 index 0000000000000000000000000000000000000000..9370f90332827a72be71bf3347770cac2c0354f5 --- /dev/null +++ b/hyperparameter/c2/tabbyflow/tabbyflow-c2-20260505_000025/tabular_bundle/pipeline_c2/X_num_test.npy @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:79dbdf62b6c69f71f3fef2bfcff35e322b2ac9387fc545116c7bc0078b3de9ec +size 128 diff --git a/hyperparameter/c2/tabbyflow/tabbyflow-c2-20260505_000025/tabular_bundle/pipeline_c2/X_num_train.npy b/hyperparameter/c2/tabbyflow/tabbyflow-c2-20260505_000025/tabular_bundle/pipeline_c2/X_num_train.npy new file mode 100644 index 0000000000000000000000000000000000000000..9370f90332827a72be71bf3347770cac2c0354f5 --- /dev/null +++ b/hyperparameter/c2/tabbyflow/tabbyflow-c2-20260505_000025/tabular_bundle/pipeline_c2/X_num_train.npy @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:79dbdf62b6c69f71f3fef2bfcff35e322b2ac9387fc545116c7bc0078b3de9ec +size 128 diff --git a/hyperparameter/c2/tabbyflow/tabbyflow-c2-20260505_000025/tabular_bundle/pipeline_c2/X_num_val.npy b/hyperparameter/c2/tabbyflow/tabbyflow-c2-20260505_000025/tabular_bundle/pipeline_c2/X_num_val.npy new file mode 100644 index 0000000000000000000000000000000000000000..9370f90332827a72be71bf3347770cac2c0354f5 --- /dev/null +++ b/hyperparameter/c2/tabbyflow/tabbyflow-c2-20260505_000025/tabular_bundle/pipeline_c2/X_num_val.npy @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:79dbdf62b6c69f71f3fef2bfcff35e322b2ac9387fc545116c7bc0078b3de9ec +size 128 diff --git a/hyperparameter/c2/tabbyflow/tabbyflow-c2-20260505_000025/tabular_bundle/pipeline_c2/info.json b/hyperparameter/c2/tabbyflow/tabbyflow-c2-20260505_000025/tabular_bundle/pipeline_c2/info.json new file mode 100644 index 0000000000000000000000000000000000000000..bf064b213901b4f614a949e23e2e89a63aac1488 --- /dev/null +++ b/hyperparameter/c2/tabbyflow/tabbyflow-c2-20260505_000025/tabular_bundle/pipeline_c2/info.json @@ -0,0 +1,88 @@ +{ + "name": "pipeline_c2", + "task_type": "multiclass", + "n_num_features": 0, + "n_cat_features": 6, + "train_size": 1382, + "test_num": 1382, + "val_num": 1382, + "train_num": 1382, + "bundle_note": "val/test matrices are train copies (train-only policy; no real held-out rows).", + "num_col_idx": [], + "cat_col_idx": [ + 0, + 1, + 2, + 3, + 4, + 5 + ], + "target_col_idx": [ + 6 + ], + "column_names": [ + "buying", + "maint", + "doors", + "persons", + "lug_boot", + "safety", + "class" + ], + "int_col_idx": [], + "int_columns": [], + "int_col_idx_wrt_num": [], + "metadata": { + "columns": { + "0": { + "sdtype": "categorical" + }, + "1": { + "sdtype": "categorical" + }, + "2": { + "sdtype": "categorical" + }, + "3": { + "sdtype": "categorical" + }, + "4": { + "sdtype": "categorical" + }, + "5": { + "sdtype": "categorical" + }, + "6": { + "sdtype": "categorical" + } + } + }, + "idx_mapping": { + "0": 0, + "1": 1, + "2": 2, + "3": 3, + "4": 4, + "5": 5, + "6": 6 + }, + "inverse_idx_mapping": { + "0": 0, + "1": 1, + "2": 2, + "3": 3, + "4": 4, + "5": 5, + "6": 6 + }, + "idx_name_mapping": { + "0": "buying", + "1": "maint", + "2": "doors", + "3": "persons", + "4": "lug_boot", + "5": "safety", + "6": "class" + }, + "n_classes": 4 +} \ No newline at end of file diff --git a/hyperparameter/c2/tabbyflow/tabbyflow-c2-20260505_000025/tabular_bundle/pipeline_c2/real.csv b/hyperparameter/c2/tabbyflow/tabbyflow-c2-20260505_000025/tabular_bundle/pipeline_c2/real.csv new file mode 100644 index 0000000000000000000000000000000000000000..f778fcd2758e712a195229c6f50504f94f046c8d --- /dev/null +++ b/hyperparameter/c2/tabbyflow/tabbyflow-c2-20260505_000025/tabular_bundle/pipeline_c2/real.csv @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:a54d8aab34745836c4d0260009787c8064c2c3e9d99040c5a6856190eb0745e9 +size 24215 diff --git a/hyperparameter/c2/tabbyflow/tabbyflow-c2-20260505_000025/tabular_bundle/pipeline_c2/test.csv b/hyperparameter/c2/tabbyflow/tabbyflow-c2-20260505_000025/tabular_bundle/pipeline_c2/test.csv new file mode 100644 index 0000000000000000000000000000000000000000..f778fcd2758e712a195229c6f50504f94f046c8d --- /dev/null +++ b/hyperparameter/c2/tabbyflow/tabbyflow-c2-20260505_000025/tabular_bundle/pipeline_c2/test.csv @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:a54d8aab34745836c4d0260009787c8064c2c3e9d99040c5a6856190eb0745e9 +size 24215 diff --git a/hyperparameter/c2/tabbyflow/tabbyflow-c2-20260505_000025/tabular_bundle/pipeline_c2/val.csv b/hyperparameter/c2/tabbyflow/tabbyflow-c2-20260505_000025/tabular_bundle/pipeline_c2/val.csv new file mode 100644 index 0000000000000000000000000000000000000000..f778fcd2758e712a195229c6f50504f94f046c8d --- /dev/null +++ b/hyperparameter/c2/tabbyflow/tabbyflow-c2-20260505_000025/tabular_bundle/pipeline_c2/val.csv @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:a54d8aab34745836c4d0260009787c8064c2c3e9d99040c5a6856190eb0745e9 +size 24215 diff --git a/hyperparameter/c2/tabbyflow/tabbyflow-c2-20260505_000025/tabular_bundle/pipeline_c2/y_test.npy b/hyperparameter/c2/tabbyflow/tabbyflow-c2-20260505_000025/tabular_bundle/pipeline_c2/y_test.npy new file mode 100644 index 0000000000000000000000000000000000000000..8bfc8f9de7350657cd6411c55d2b9b87bea9c13a --- /dev/null +++ b/hyperparameter/c2/tabbyflow/tabbyflow-c2-20260505_000025/tabular_bundle/pipeline_c2/y_test.npy @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:3f8eb0b25043331a30fde5439f063eed59e7a76f45d7d102b9b4fbcd16b551b4 +size 11184 diff --git a/hyperparameter/c2/tabbyflow/tabbyflow-c2-20260505_000025/tabular_bundle/pipeline_c2/y_train.npy b/hyperparameter/c2/tabbyflow/tabbyflow-c2-20260505_000025/tabular_bundle/pipeline_c2/y_train.npy new file mode 100644 index 0000000000000000000000000000000000000000..8bfc8f9de7350657cd6411c55d2b9b87bea9c13a --- /dev/null +++ b/hyperparameter/c2/tabbyflow/tabbyflow-c2-20260505_000025/tabular_bundle/pipeline_c2/y_train.npy @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:3f8eb0b25043331a30fde5439f063eed59e7a76f45d7d102b9b4fbcd16b551b4 +size 11184 diff --git a/hyperparameter/c2/tabbyflow/tabbyflow-c2-20260505_000025/tabular_bundle/pipeline_c2/y_val.npy b/hyperparameter/c2/tabbyflow/tabbyflow-c2-20260505_000025/tabular_bundle/pipeline_c2/y_val.npy new file mode 100644 index 0000000000000000000000000000000000000000..8bfc8f9de7350657cd6411c55d2b9b87bea9c13a --- /dev/null +++ b/hyperparameter/c2/tabbyflow/tabbyflow-c2-20260505_000025/tabular_bundle/pipeline_c2/y_val.npy @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:3f8eb0b25043331a30fde5439f063eed59e7a76f45d7d102b9b4fbcd16b551b4 +size 11184 diff --git a/hyperparameter/c2/tabbyflow/tabbyflow-c2-20260505_000025/train_20260505_000025.log b/hyperparameter/c2/tabbyflow/tabbyflow-c2-20260505_000025/train_20260505_000025.log new file mode 100644 index 0000000000000000000000000000000000000000..6c1244222c0c95fa5df334a87d54665fbe13591f --- /dev/null +++ b/hyperparameter/c2/tabbyflow/tabbyflow-c2-20260505_000025/train_20260505_000025.log @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:b42c72de67445a99cc01e8429e29a836c3572ad209234a2cb61d85c4878b50a9 +size 172674 diff --git a/hyperparameter/c2/tabbyflow/tabbyflow-c2-20260505_000602/_tabbyflow_gen.py b/hyperparameter/c2/tabbyflow/tabbyflow-c2-20260505_000602/_tabbyflow_gen.py new file mode 100644 index 0000000000000000000000000000000000000000..3507f97db77a1db3d0af3fb60ccc136ccf2bb58c --- /dev/null +++ b/hyperparameter/c2/tabbyflow/tabbyflow-c2-20260505_000602/_tabbyflow_gen.py @@ -0,0 +1,34 @@ + +import os, shutil, subprocess, sys +root = r"/workspace/ef-vfm" +name = r"pipeline_c2" +src = r"/work/output-Benchmark-trainonly-v1/c2/tabbyflow/tabbyflow-c2-20260505_000602/tabular_bundle/pipeline_c2" +dst_data = os.path.join(root, "data", name) +shutil.rmtree(dst_data, ignore_errors=True) +shutil.copytree(src, dst_data) +dst_syn = os.path.join(root, "synthetic", name) +os.makedirs(dst_syn, exist_ok=True) +for fn in ("real.csv", "test.csv", "val.csv"): + shutil.copy(os.path.join(src, fn), os.path.join(dst_syn, fn)) +os.chdir(root) +os.environ["PYTHONPATH"] = root + os.pathsep + os.environ.get("PYTHONPATH", "") +os.environ.setdefault("EFVFM_SAMPLE_BATCH_SIZE", "128") +subprocess.check_call([ + sys.executable, "main.py", + "--dataname", name, "--mode", "test", "--gpu", "0", + "--no_wandb", "--exp_name", r"adapter_efvfm", + "--ckpt_path", r"/workspace/ef-vfm/ef_vfm/ckpt/pipeline_c2/adapter_efvfm/model_500.pt", + "--num_samples_to_generate", str(int(1382)), +]) +base = os.path.join(root, "ef_vfm", "result", name, r"adapter_efvfm") +best = None +best_t = -1.0 +for r, _, files in os.walk(base): + if "samples.csv" in files: + p = os.path.join(r, "samples.csv") + t = os.path.getmtime(p) + if t > best_t: + best_t, best = t, p +if not best: + raise SystemExit("tabbyflow: no samples.csv in " + base) +shutil.copy(best, r"/work/output-Benchmark-trainonly-v1/c2/tabbyflow/tabbyflow-c2-20260505_000602/tabbyflow-c2-1382-20260505_001419.csv") diff --git a/hyperparameter/c2/tabbyflow/tabbyflow-c2-20260505_000602/_tabbyflow_train.py b/hyperparameter/c2/tabbyflow/tabbyflow-c2-20260505_000602/_tabbyflow_train.py new file mode 100644 index 0000000000000000000000000000000000000000..42671040dd84d2038199e5336a3d73e888bedf14 --- /dev/null +++ b/hyperparameter/c2/tabbyflow/tabbyflow-c2-20260505_000602/_tabbyflow_train.py @@ -0,0 +1,24 @@ + +import os, shutil, subprocess, sys +root = r"/workspace/ef-vfm" +name = r"pipeline_c2" +src = r"/work/output-Benchmark-trainonly-v1/c2/tabbyflow/tabbyflow-c2-20260505_000602/tabular_bundle/pipeline_c2" +os.makedirs(os.path.join(root, "data", name), exist_ok=True) +dst_data = os.path.join(root, "data", name) +dst_syn = os.path.join(root, "synthetic", name) +shutil.rmtree(dst_data, ignore_errors=True) +shutil.copytree(src, dst_data) +os.makedirs(dst_syn, exist_ok=True) +for fn in ("real.csv", "test.csv", "val.csv"): + shutil.copy(os.path.join(src, fn), os.path.join(dst_syn, fn)) +os.chdir(root) +os.environ["PYTHONPATH"] = root + os.pathsep + os.environ.get("PYTHONPATH", "") +os.environ["EFVFM_SMOKE_STEPS"] = "500" +os.environ["EFVFM_ADAPTER_TRAIN"] = "1" +os.environ.setdefault("EFVFM_SAMPLE_BATCH_SIZE", "128") +os.environ.setdefault("EFVFM_EVAL_NUM_SAMPLES", "512") +subprocess.check_call([ + sys.executable, "main.py", + "--dataname", name, "--mode", "train", "--gpu", "0", + "--no_wandb", "--exp_name", r"adapter_efvfm", +]) diff --git a/hyperparameter/c2/tabbyflow/tabbyflow-c2-20260505_000602/gen_20260505_001419.log b/hyperparameter/c2/tabbyflow/tabbyflow-c2-20260505_000602/gen_20260505_001419.log new file mode 100644 index 0000000000000000000000000000000000000000..388010eb37dfdf9ed2e5b148a9429cc5750402d2 --- /dev/null +++ b/hyperparameter/c2/tabbyflow/tabbyflow-c2-20260505_000602/gen_20260505_001419.log @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:38c44d8bcf44873b92c94c2e141c6a068fd4c9dfec03aa085aedd7485ee383b4 +size 3414 diff --git a/hyperparameter/c2/tabbyflow/tabbyflow-c2-20260505_000602/input_snapshot.json b/hyperparameter/c2/tabbyflow/tabbyflow-c2-20260505_000602/input_snapshot.json new file mode 100644 index 0000000000000000000000000000000000000000..89c9d5855c86fb753a25070ff5c19d45d1e2fb9e --- /dev/null +++ b/hyperparameter/c2/tabbyflow/tabbyflow-c2-20260505_000602/input_snapshot.json @@ -0,0 +1,36 @@ +{ + "dataset_id": "c2", + "model": "tabbyflow", + "inputs": { + "train_csv": { + "path": "/data/jialinzhang/SynthesizePipeline-server/DatasetNew/c2/c2-train.csv", + "exists": true, + "size": 42948, + "sha256": "17bc560fa96bd00fb3b526e1e65bc91210b701d0d0a4e8bb9b4c5196cab56def" + }, + "val_csv": { + "path": "/data/jialinzhang/SynthesizePipeline-server/DatasetNew/c2/c2-val.csv", + "exists": true, + "size": 5349, + "sha256": "61e565eca62e65a7dccd9d51039a3170413379e10fc494e25870e7c4294863c9" + }, + "test_csv": { + "path": "/data/jialinzhang/SynthesizePipeline-server/DatasetNew/c2/c2-test.csv", + "exists": true, + "size": 5448, + "sha256": "cbcbb062a1faf5fa44b66c80532baa229e05b94fc42137269761e6c6d84af20a" + }, + "profile_json": { + "path": "/data/jialinzhang/SynthesizePipeline-server/DatasetNew/artifacts/data_core/tabular/c2/c2-dataset_profile.json", + "exists": true, + "size": 3240, + "sha256": "526b7163b2076c93c0bf4638438081ee8a6907065d5b608faa40d1a3dbc2a27b" + }, + "contract_json": { + "path": "/data/jialinzhang/SynthesizePipeline-server/DatasetNew/artifacts/data_core/tabular/c2/c2-dataset_contract_v1.json", + "exists": true, + "size": 3731, + "sha256": "fb595a876054c2ee9b4e10cfe83a5691588de1d25466cbb9d473c18ad3604009" + } + } +} \ No newline at end of file diff --git a/hyperparameter/c2/tabbyflow/tabbyflow-c2-20260505_000602/models_tabbyflow/trained.pt b/hyperparameter/c2/tabbyflow/tabbyflow-c2-20260505_000602/models_tabbyflow/trained.pt new file mode 100644 index 0000000000000000000000000000000000000000..f063a878c470d9d40f79db79881596e1e497dffd --- /dev/null +++ b/hyperparameter/c2/tabbyflow/tabbyflow-c2-20260505_000602/models_tabbyflow/trained.pt @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:adb734fec12f2251befd371dca69e481b19464aded2a6823105a01b4be6ddbe5 +size 40 diff --git a/hyperparameter/c2/tabbyflow/tabbyflow-c2-20260505_000602/public_gate/normalized_schema_snapshot.json b/hyperparameter/c2/tabbyflow/tabbyflow-c2-20260505_000602/public_gate/normalized_schema_snapshot.json new file mode 100644 index 0000000000000000000000000000000000000000..689b1d00d96508e44ba40e58dc4560e19afc2b3b --- /dev/null +++ b/hyperparameter/c2/tabbyflow/tabbyflow-c2-20260505_000602/public_gate/normalized_schema_snapshot.json @@ -0,0 +1,144 @@ +{ + "dataset_id": "c2", + "target_column": "class", + "task_type": "classification", + "columns": [ + { + "name": "buying", + "role": "feature", + "semantic_type": "categorical", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 4, + "unique_ratio": 0.002894, + "example_values": [ + "vhigh", + "med", + "high", + "low" + ] + } + }, + { + "name": "maint", + "role": "feature", + "semantic_type": "categorical", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 4, + "unique_ratio": 0.002894, + "example_values": [ + "vhigh", + "low", + "med", + "high" + ] + } + }, + { + "name": "doors", + "role": "feature", + "semantic_type": "categorical", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 4, + "unique_ratio": 0.002894, + "example_values": [ + "2", + "5more", + "3", + "4" + ] + } + }, + { + "name": "persons", + "role": "feature", + "semantic_type": "categorical", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 3, + "unique_ratio": 0.002171, + "example_values": [ + "2", + "4", + "more" + ] + } + }, + { + "name": "lug_boot", + "role": "feature", + "semantic_type": "categorical", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 3, + "unique_ratio": 0.002171, + "example_values": [ + "small", + "big", + "med" + ] + } + }, + { + "name": "safety", + "role": "feature", + "semantic_type": "categorical", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 3, + "unique_ratio": 0.002171, + "example_values": [ + "low", + "high", + "med" + ] + } + }, + { + "name": "class", + "role": "target", + "semantic_type": "categorical", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 4, + "unique_ratio": 0.002894, + "example_values": [ + "unacc", + "good", + "acc", + "vgood" + ] + } + } + ] +} \ No newline at end of file diff --git a/hyperparameter/c2/tabbyflow/tabbyflow-c2-20260505_000602/public_gate/public_gate_report.json b/hyperparameter/c2/tabbyflow/tabbyflow-c2-20260505_000602/public_gate/public_gate_report.json new file mode 100644 index 0000000000000000000000000000000000000000..2e4cdcb2a4e28e40d59b17a83e773f622b7636a5 --- /dev/null +++ b/hyperparameter/c2/tabbyflow/tabbyflow-c2-20260505_000602/public_gate/public_gate_report.json @@ -0,0 +1,37 @@ +{ + "dataset_id": "c2", + "status": "pass", + "checks": [ + { + "check_id": "PG001_csv_parse_ok", + "status": "pass" + }, + { + "check_id": "PG002_split_header_consistent", + "status": "pass" + }, + { + "check_id": "PG003_profile_header_match", + "status": "pass" + }, + { + "check_id": "PG004_missing_token_normalized", + "status": "pass" + }, + { + "check_id": "PG005_semantic_type_validated", + "status": "pass" + }, + { + "check_id": "PG006_target_defined_and_valid", + "status": "pass" + } + ], + "target_column": "class", + "task_type": "classification", + "input_splits": { + "train": "/data/jialinzhang/SynthesizePipeline-server/DatasetNew/c2/c2-train.csv", + "val": "/data/jialinzhang/SynthesizePipeline-server/DatasetNew/c2/c2-val.csv", + "test": "/data/jialinzhang/SynthesizePipeline-server/DatasetNew/c2/c2-test.csv" + } +} \ No newline at end of file diff --git a/hyperparameter/c2/tabbyflow/tabbyflow-c2-20260505_000602/public_gate/staged_input_manifest.json b/hyperparameter/c2/tabbyflow/tabbyflow-c2-20260505_000602/public_gate/staged_input_manifest.json new file mode 100644 index 0000000000000000000000000000000000000000..efe1f5b40d60b4574c0bc5534b058b0bcbfa2ad6 --- /dev/null +++ b/hyperparameter/c2/tabbyflow/tabbyflow-c2-20260505_000602/public_gate/staged_input_manifest.json @@ -0,0 +1,149 @@ +{ + "dataset_id": "c2", + "target_column": "class", + "task_type": "classification", + "train_csv": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/c2/tabbyflow/tabbyflow-c2-20260505_000602/staged/public/train.csv", + "val_csv": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/c2/tabbyflow/tabbyflow-c2-20260505_000602/staged/public/val.csv", + "test_csv": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/c2/tabbyflow/tabbyflow-c2-20260505_000602/staged/public/test.csv", + "features_json": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/c2/tabbyflow/tabbyflow-c2-20260505_000602/staged/public/staged_features.json", + "public_gate_report": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/c2/tabbyflow/tabbyflow-c2-20260505_000602/public_gate/public_gate_report.json", + "column_schema": [ + { + "name": "buying", + "role": "feature", + "semantic_type": "categorical", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 4, + "unique_ratio": 0.002894, + "example_values": [ + "vhigh", + "med", + "high", + "low" + ] + } + }, + { + "name": "maint", + "role": "feature", + "semantic_type": "categorical", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 4, + "unique_ratio": 0.002894, + "example_values": [ + "vhigh", + "low", + "med", + "high" + ] + } + }, + { + "name": "doors", + "role": "feature", + "semantic_type": "categorical", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 4, + "unique_ratio": 0.002894, + "example_values": [ + "2", + "5more", + "3", + "4" + ] + } + }, + { + "name": "persons", + "role": "feature", + "semantic_type": "categorical", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 3, + "unique_ratio": 0.002171, + "example_values": [ + "2", + "4", + "more" + ] + } + }, + { + "name": "lug_boot", + "role": "feature", + "semantic_type": "categorical", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 3, + "unique_ratio": 0.002171, + "example_values": [ + "small", + "big", + "med" + ] + } + }, + { + "name": "safety", + "role": "feature", + "semantic_type": "categorical", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 3, + "unique_ratio": 0.002171, + "example_values": [ + "low", + "high", + "med" + ] + } + }, + { + "name": "class", + "role": "target", + "semantic_type": "categorical", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 4, + "unique_ratio": 0.002894, + "example_values": [ + "unacc", + "good", + "acc", + "vgood" + ] + } + } + ] +} \ No newline at end of file diff --git a/hyperparameter/c2/tabbyflow/tabbyflow-c2-20260505_000602/run_config.json b/hyperparameter/c2/tabbyflow/tabbyflow-c2-20260505_000602/run_config.json new file mode 100644 index 0000000000000000000000000000000000000000..950ba8c85933b65786c1c238f65085f09bd77b2a --- /dev/null +++ b/hyperparameter/c2/tabbyflow/tabbyflow-c2-20260505_000602/run_config.json @@ -0,0 +1,42 @@ +{ + "schema_version": 1, + "recorded_at": "2026-05-05T00:06:02", + "dataset_id": "c2", + "model": "tabbyflow", + "work_dir": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/c2/tabbyflow/tabbyflow-c2-20260505_000602", + "dataset_source_requested": "new", + "dataset_source_resolved": "new", + "cli_args": { + "model": "tabbyflow", + "dataset": "c2", + "dataset_source": "new", + "train": true, + "generate": true, + "num_rows": 0, + "epochs": 500, + "output_dir": null, + "model_dir": null, + "work_dir": null, + "resume": false, + "no_stats": false + }, + "resolved": { + "num_rows": 1382, + "model_path": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/c2/tabbyflow/tabbyflow-c2-20260505_000602/models_tabbyflow/trained.pt", + "output_csv": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/c2/tabbyflow/tabbyflow-c2-20260505_000602/tabbyflow-c2-1382-20260505_001419.csv" + }, + "input_artifacts": { + "public_gate_report": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/c2/tabbyflow/tabbyflow-c2-20260505_000602/public_gate/public_gate_report.json", + "public_manifest": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/c2/tabbyflow/tabbyflow-c2-20260505_000602/public_gate/staged_input_manifest.json", + "model_manifest": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/c2/tabbyflow/tabbyflow-c2-20260505_000602/staged/tabbyflow/model_input_manifest.json", + "train_csv": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/c2/tabbyflow/tabbyflow-c2-20260505_000602/staged/public/train.csv", + "features_json": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/c2/tabbyflow/tabbyflow-c2-20260505_000602/staged/public/staged_features.json", + "target_column": "class", + "task_type": "classification" + }, + "env_overrides": { + "BENCHMARK_TABBYFLOW_GPUS": "device=0", + "EFVFM_EVAL_NUM_SAMPLES": "1024", + "EFVFM_SAMPLE_BATCH_SIZE": "128" + } +} \ No newline at end of file diff --git a/hyperparameter/c2/tabbyflow/tabbyflow-c2-20260505_000602/runtime_result.json b/hyperparameter/c2/tabbyflow/tabbyflow-c2-20260505_000602/runtime_result.json new file mode 100644 index 0000000000000000000000000000000000000000..7c05f34d429b1c1e99dc3f53c3cba1124425fbe3 --- /dev/null +++ b/hyperparameter/c2/tabbyflow/tabbyflow-c2-20260505_000602/runtime_result.json @@ -0,0 +1,27 @@ +{ + "dataset_id": "c2", + "model": "tabbyflow", + "run_id": "tabbyflow-c2-20260505_000602", + "public_gate_status": "pass", + "adapter_ready_status": "pass", + "train_status": "success", + "generate_status": "success", + "reason_code": null, + "reason_detail": null, + "artifacts": { + "synthetic_csv": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/c2/tabbyflow/tabbyflow-c2-20260505_000602/tabbyflow-c2-1382-20260505_001419.csv", + "model_path": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/c2/tabbyflow/tabbyflow-c2-20260505_000602/models_tabbyflow/trained.pt" + }, + "timings": { + "train": { + "started_at": "2026-05-05T00:06:02", + "ended_at": "2026-05-05T00:14:19", + "duration_sec": 496.996 + }, + "generate": { + "started_at": "2026-05-05T00:14:19", + "ended_at": "2026-05-05T00:14:39", + "duration_sec": 19.576 + } + } +} \ No newline at end of file diff --git a/hyperparameter/c2/tabbyflow/tabbyflow-c2-20260505_000602/staged/public/staged_features.json b/hyperparameter/c2/tabbyflow/tabbyflow-c2-20260505_000602/staged/public/staged_features.json new file mode 100644 index 0000000000000000000000000000000000000000..61783861dd5de501592f76acb0469cf3f3b2622a --- /dev/null +++ b/hyperparameter/c2/tabbyflow/tabbyflow-c2-20260505_000602/staged/public/staged_features.json @@ -0,0 +1,37 @@ +[ + { + "feature_name": "buying", + "data_type": "categorical", + "is_target": false + }, + { + "feature_name": "maint", + "data_type": "categorical", + "is_target": false + }, + { + "feature_name": "doors", + "data_type": "categorical", + "is_target": false + }, + { + "feature_name": "persons", + "data_type": "categorical", + "is_target": false + }, + { + "feature_name": "lug_boot", + "data_type": "categorical", + "is_target": false + }, + { + "feature_name": "safety", + "data_type": "categorical", + "is_target": false + }, + { + "feature_name": "class", + "data_type": "categorical", + "is_target": true + } +] \ No newline at end of file diff --git a/hyperparameter/c2/tabbyflow/tabbyflow-c2-20260505_000602/staged/public/test.csv b/hyperparameter/c2/tabbyflow/tabbyflow-c2-20260505_000602/staged/public/test.csv new file mode 100644 index 0000000000000000000000000000000000000000..392a0d7189a34d8f13ecf20a99d64b03230d517c --- /dev/null +++ b/hyperparameter/c2/tabbyflow/tabbyflow-c2-20260505_000602/staged/public/test.csv @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:b48114a7d0bc5bd9a07920f903c8d4aba8bf98bf2a66a050da03588b0245ca73 +size 5273 diff --git a/hyperparameter/c2/tabbyflow/tabbyflow-c2-20260505_000602/staged/public/train.csv b/hyperparameter/c2/tabbyflow/tabbyflow-c2-20260505_000602/staged/public/train.csv new file mode 100644 index 0000000000000000000000000000000000000000..da4f4d55134eebc0e51157d0d467536371db1484 --- /dev/null +++ b/hyperparameter/c2/tabbyflow/tabbyflow-c2-20260505_000602/staged/public/train.csv @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:4aed00c2c2b3f88a55a7ebff31b2e1b5e0e32fb0a7267e0b9d2779cd23e434dd +size 41565 diff --git a/hyperparameter/c2/tabbyflow/tabbyflow-c2-20260505_000602/staged/public/val.csv b/hyperparameter/c2/tabbyflow/tabbyflow-c2-20260505_000602/staged/public/val.csv new file mode 100644 index 0000000000000000000000000000000000000000..af8caf7ee42524188534a3daf32996dc491952d9 --- /dev/null +++ b/hyperparameter/c2/tabbyflow/tabbyflow-c2-20260505_000602/staged/public/val.csv @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:26e90c1170a57a14c05832ac88027722b1f3848f9662c7c09ef7c93dcba4cc01 +size 5176 diff --git a/hyperparameter/c2/tabbyflow/tabbyflow-c2-20260505_000602/staged/tabbyflow/adapter_report.json b/hyperparameter/c2/tabbyflow/tabbyflow-c2-20260505_000602/staged/tabbyflow/adapter_report.json new file mode 100644 index 0000000000000000000000000000000000000000..3aa489998df07aa7f40b2aa9736439ee6879eb4c --- /dev/null +++ b/hyperparameter/c2/tabbyflow/tabbyflow-c2-20260505_000602/staged/tabbyflow/adapter_report.json @@ -0,0 +1,7 @@ +{ + "adapter_ready_status": "pass", + "adapter_fail_reason_code": null, + "adapter_fail_detail": null, + "adapter_transforms_applied": [], + "model_input_manifest": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/c2/tabbyflow/tabbyflow-c2-20260505_000602/staged/tabbyflow/model_input_manifest.json" +} \ No newline at end of file diff --git a/hyperparameter/c2/tabbyflow/tabbyflow-c2-20260505_000602/staged/tabbyflow/adapter_transforms_applied.json b/hyperparameter/c2/tabbyflow/tabbyflow-c2-20260505_000602/staged/tabbyflow/adapter_transforms_applied.json new file mode 100644 index 0000000000000000000000000000000000000000..0637a088a01e8ddab3bf3fa98dbe804cbde1a0dc --- /dev/null +++ b/hyperparameter/c2/tabbyflow/tabbyflow-c2-20260505_000602/staged/tabbyflow/adapter_transforms_applied.json @@ -0,0 +1 @@ +[] \ No newline at end of file diff --git a/hyperparameter/c2/tabbyflow/tabbyflow-c2-20260505_000602/staged/tabbyflow/model_input_manifest.json b/hyperparameter/c2/tabbyflow/tabbyflow-c2-20260505_000602/staged/tabbyflow/model_input_manifest.json new file mode 100644 index 0000000000000000000000000000000000000000..0653fc89174d902d7f4c055d15afa3e850734cee --- /dev/null +++ b/hyperparameter/c2/tabbyflow/tabbyflow-c2-20260505_000602/staged/tabbyflow/model_input_manifest.json @@ -0,0 +1,151 @@ +{ + "dataset_id": "c2", + "model": "tabbyflow", + "target_column": "class", + "task_type": "classification", + "column_schema": [ + { + "name": "buying", + "role": "feature", + "semantic_type": "categorical", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 4, + "unique_ratio": 0.002894, + "example_values": [ + "vhigh", + "med", + "high", + "low" + ] + } + }, + { + "name": "maint", + "role": "feature", + "semantic_type": "categorical", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 4, + "unique_ratio": 0.002894, + "example_values": [ + "vhigh", + "low", + "med", + "high" + ] + } + }, + { + "name": "doors", + "role": "feature", + "semantic_type": "categorical", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 4, + "unique_ratio": 0.002894, + "example_values": [ + "2", + "5more", + "3", + "4" + ] + } + }, + { + "name": "persons", + "role": "feature", + "semantic_type": "categorical", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 3, + "unique_ratio": 0.002171, + "example_values": [ + "2", + "4", + "more" + ] + } + }, + { + "name": "lug_boot", + "role": "feature", + "semantic_type": "categorical", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 3, + "unique_ratio": 0.002171, + "example_values": [ + "small", + "big", + "med" + ] + } + }, + { + "name": "safety", + "role": "feature", + "semantic_type": "categorical", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 3, + "unique_ratio": 0.002171, + "example_values": [ + "low", + "high", + "med" + ] + } + }, + { + "name": "class", + "role": "target", + "semantic_type": "categorical", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 4, + "unique_ratio": 0.002894, + "example_values": [ + "unacc", + "good", + "acc", + "vgood" + ] + } + } + ], + "public_manifest": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/c2/tabbyflow/tabbyflow-c2-20260505_000602/public_gate/staged_input_manifest.json", + "train_csv": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/c2/tabbyflow/tabbyflow-c2-20260505_000602/staged/public/train.csv", + "val_csv": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/c2/tabbyflow/tabbyflow-c2-20260505_000602/staged/public/val.csv", + "test_csv": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/c2/tabbyflow/tabbyflow-c2-20260505_000602/staged/public/test.csv", + "features_json": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/c2/tabbyflow/tabbyflow-c2-20260505_000602/staged/public/staged_features.json", + "public_gate_report": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/c2/tabbyflow/tabbyflow-c2-20260505_000602/public_gate/public_gate_report.json" +} \ No newline at end of file diff --git a/hyperparameter/c2/tabbyflow/tabbyflow-c2-20260505_000602/tabbyflow-c2-1382-20260505_001419.csv b/hyperparameter/c2/tabbyflow/tabbyflow-c2-20260505_000602/tabbyflow-c2-1382-20260505_001419.csv new file mode 100644 index 0000000000000000000000000000000000000000..5d42397c09bbbfebf1a55f8e3f1e93c87bd565ac --- /dev/null +++ b/hyperparameter/c2/tabbyflow/tabbyflow-c2-20260505_000602/tabbyflow-c2-1382-20260505_001419.csv @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:368dbd683eedcbabc27d94bec182ff54cef14c9a1f541db5ca5319a8a983dc50 +size 19397 diff --git a/hyperparameter/c2/tabbyflow/tabbyflow-c2-20260505_000602/tabbyflow_train_meta.json b/hyperparameter/c2/tabbyflow/tabbyflow-c2-20260505_000602/tabbyflow_train_meta.json new file mode 100644 index 0000000000000000000000000000000000000000..6d5e4fd3e80d640d56a2181b884d59fb4819fd22 --- /dev/null +++ b/hyperparameter/c2/tabbyflow/tabbyflow-c2-20260505_000602/tabbyflow_train_meta.json @@ -0,0 +1,5 @@ +{ + "exp_name": "adapter_efvfm", + "dataname": "pipeline_c2", + "steps": 500 +} \ No newline at end of file diff --git a/hyperparameter/c2/tabbyflow/tabbyflow-c2-20260505_000602/tabular_bundle/pipeline_c2/X_cat_test.npy b/hyperparameter/c2/tabbyflow/tabbyflow-c2-20260505_000602/tabular_bundle/pipeline_c2/X_cat_test.npy new file mode 100644 index 0000000000000000000000000000000000000000..e99f1ae8dc9e7155e5c4bbbd3c2f3f7215c628f7 --- /dev/null +++ b/hyperparameter/c2/tabbyflow/tabbyflow-c2-20260505_000602/tabular_bundle/pipeline_c2/X_cat_test.npy @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:24d2203601ba060728920e754747e5a1dc3955a1b5775e147382fee4f1812542 +size 66464 diff --git a/hyperparameter/c2/tabbyflow/tabbyflow-c2-20260505_000602/tabular_bundle/pipeline_c2/X_cat_train.npy b/hyperparameter/c2/tabbyflow/tabbyflow-c2-20260505_000602/tabular_bundle/pipeline_c2/X_cat_train.npy new file mode 100644 index 0000000000000000000000000000000000000000..e99f1ae8dc9e7155e5c4bbbd3c2f3f7215c628f7 --- /dev/null +++ b/hyperparameter/c2/tabbyflow/tabbyflow-c2-20260505_000602/tabular_bundle/pipeline_c2/X_cat_train.npy @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:24d2203601ba060728920e754747e5a1dc3955a1b5775e147382fee4f1812542 +size 66464 diff --git a/hyperparameter/c2/tabbyflow/tabbyflow-c2-20260505_000602/tabular_bundle/pipeline_c2/X_cat_val.npy b/hyperparameter/c2/tabbyflow/tabbyflow-c2-20260505_000602/tabular_bundle/pipeline_c2/X_cat_val.npy new file mode 100644 index 0000000000000000000000000000000000000000..e99f1ae8dc9e7155e5c4bbbd3c2f3f7215c628f7 --- /dev/null +++ b/hyperparameter/c2/tabbyflow/tabbyflow-c2-20260505_000602/tabular_bundle/pipeline_c2/X_cat_val.npy @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:24d2203601ba060728920e754747e5a1dc3955a1b5775e147382fee4f1812542 +size 66464 diff --git a/hyperparameter/c2/tabbyflow/tabbyflow-c2-20260505_000602/tabular_bundle/pipeline_c2/X_num_test.npy b/hyperparameter/c2/tabbyflow/tabbyflow-c2-20260505_000602/tabular_bundle/pipeline_c2/X_num_test.npy new file mode 100644 index 0000000000000000000000000000000000000000..9370f90332827a72be71bf3347770cac2c0354f5 --- /dev/null +++ b/hyperparameter/c2/tabbyflow/tabbyflow-c2-20260505_000602/tabular_bundle/pipeline_c2/X_num_test.npy @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:79dbdf62b6c69f71f3fef2bfcff35e322b2ac9387fc545116c7bc0078b3de9ec +size 128 diff --git a/hyperparameter/c2/tabbyflow/tabbyflow-c2-20260505_000602/tabular_bundle/pipeline_c2/X_num_train.npy b/hyperparameter/c2/tabbyflow/tabbyflow-c2-20260505_000602/tabular_bundle/pipeline_c2/X_num_train.npy new file mode 100644 index 0000000000000000000000000000000000000000..9370f90332827a72be71bf3347770cac2c0354f5 --- /dev/null +++ b/hyperparameter/c2/tabbyflow/tabbyflow-c2-20260505_000602/tabular_bundle/pipeline_c2/X_num_train.npy @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:79dbdf62b6c69f71f3fef2bfcff35e322b2ac9387fc545116c7bc0078b3de9ec +size 128 diff --git a/hyperparameter/c2/tabbyflow/tabbyflow-c2-20260505_000602/tabular_bundle/pipeline_c2/X_num_val.npy b/hyperparameter/c2/tabbyflow/tabbyflow-c2-20260505_000602/tabular_bundle/pipeline_c2/X_num_val.npy new file mode 100644 index 0000000000000000000000000000000000000000..9370f90332827a72be71bf3347770cac2c0354f5 --- /dev/null +++ b/hyperparameter/c2/tabbyflow/tabbyflow-c2-20260505_000602/tabular_bundle/pipeline_c2/X_num_val.npy @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:79dbdf62b6c69f71f3fef2bfcff35e322b2ac9387fc545116c7bc0078b3de9ec +size 128 diff --git a/hyperparameter/c2/tabbyflow/tabbyflow-c2-20260505_000602/tabular_bundle/pipeline_c2/info.json b/hyperparameter/c2/tabbyflow/tabbyflow-c2-20260505_000602/tabular_bundle/pipeline_c2/info.json new file mode 100644 index 0000000000000000000000000000000000000000..bf064b213901b4f614a949e23e2e89a63aac1488 --- /dev/null +++ b/hyperparameter/c2/tabbyflow/tabbyflow-c2-20260505_000602/tabular_bundle/pipeline_c2/info.json @@ -0,0 +1,88 @@ +{ + "name": "pipeline_c2", + "task_type": "multiclass", + "n_num_features": 0, + "n_cat_features": 6, + "train_size": 1382, + "test_num": 1382, + "val_num": 1382, + "train_num": 1382, + "bundle_note": "val/test matrices are train copies (train-only policy; no real held-out rows).", + "num_col_idx": [], + "cat_col_idx": [ + 0, + 1, + 2, + 3, + 4, + 5 + ], + "target_col_idx": [ + 6 + ], + "column_names": [ + "buying", + "maint", + "doors", + "persons", + "lug_boot", + "safety", + "class" + ], + "int_col_idx": [], + "int_columns": [], + "int_col_idx_wrt_num": [], + "metadata": { + "columns": { + "0": { + "sdtype": "categorical" + }, + "1": { + "sdtype": "categorical" + }, + "2": { + "sdtype": "categorical" + }, + "3": { + "sdtype": "categorical" + }, + "4": { + "sdtype": "categorical" + }, + "5": { + "sdtype": "categorical" + }, + "6": { + "sdtype": "categorical" + } + } + }, + "idx_mapping": { + "0": 0, + "1": 1, + "2": 2, + "3": 3, + "4": 4, + "5": 5, + "6": 6 + }, + "inverse_idx_mapping": { + "0": 0, + "1": 1, + "2": 2, + "3": 3, + "4": 4, + "5": 5, + "6": 6 + }, + "idx_name_mapping": { + "0": "buying", + "1": "maint", + "2": "doors", + "3": "persons", + "4": "lug_boot", + "5": "safety", + "6": "class" + }, + "n_classes": 4 +} \ No newline at end of file diff --git a/hyperparameter/c2/tabbyflow/tabbyflow-c2-20260505_000602/tabular_bundle/pipeline_c2/real.csv b/hyperparameter/c2/tabbyflow/tabbyflow-c2-20260505_000602/tabular_bundle/pipeline_c2/real.csv new file mode 100644 index 0000000000000000000000000000000000000000..f778fcd2758e712a195229c6f50504f94f046c8d --- /dev/null +++ b/hyperparameter/c2/tabbyflow/tabbyflow-c2-20260505_000602/tabular_bundle/pipeline_c2/real.csv @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:a54d8aab34745836c4d0260009787c8064c2c3e9d99040c5a6856190eb0745e9 +size 24215 diff --git a/hyperparameter/c2/tabbyflow/tabbyflow-c2-20260505_000602/tabular_bundle/pipeline_c2/test.csv b/hyperparameter/c2/tabbyflow/tabbyflow-c2-20260505_000602/tabular_bundle/pipeline_c2/test.csv new file mode 100644 index 0000000000000000000000000000000000000000..f778fcd2758e712a195229c6f50504f94f046c8d --- /dev/null +++ b/hyperparameter/c2/tabbyflow/tabbyflow-c2-20260505_000602/tabular_bundle/pipeline_c2/test.csv @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:a54d8aab34745836c4d0260009787c8064c2c3e9d99040c5a6856190eb0745e9 +size 24215 diff --git a/hyperparameter/c2/tabbyflow/tabbyflow-c2-20260505_000602/tabular_bundle/pipeline_c2/val.csv b/hyperparameter/c2/tabbyflow/tabbyflow-c2-20260505_000602/tabular_bundle/pipeline_c2/val.csv new file mode 100644 index 0000000000000000000000000000000000000000..f778fcd2758e712a195229c6f50504f94f046c8d --- /dev/null +++ b/hyperparameter/c2/tabbyflow/tabbyflow-c2-20260505_000602/tabular_bundle/pipeline_c2/val.csv @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:a54d8aab34745836c4d0260009787c8064c2c3e9d99040c5a6856190eb0745e9 +size 24215 diff --git a/hyperparameter/c2/tabbyflow/tabbyflow-c2-20260505_000602/tabular_bundle/pipeline_c2/y_test.npy b/hyperparameter/c2/tabbyflow/tabbyflow-c2-20260505_000602/tabular_bundle/pipeline_c2/y_test.npy new file mode 100644 index 0000000000000000000000000000000000000000..8bfc8f9de7350657cd6411c55d2b9b87bea9c13a --- /dev/null +++ b/hyperparameter/c2/tabbyflow/tabbyflow-c2-20260505_000602/tabular_bundle/pipeline_c2/y_test.npy @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:3f8eb0b25043331a30fde5439f063eed59e7a76f45d7d102b9b4fbcd16b551b4 +size 11184 diff --git a/hyperparameter/c2/tabbyflow/tabbyflow-c2-20260505_000602/tabular_bundle/pipeline_c2/y_train.npy b/hyperparameter/c2/tabbyflow/tabbyflow-c2-20260505_000602/tabular_bundle/pipeline_c2/y_train.npy new file mode 100644 index 0000000000000000000000000000000000000000..8bfc8f9de7350657cd6411c55d2b9b87bea9c13a --- /dev/null +++ b/hyperparameter/c2/tabbyflow/tabbyflow-c2-20260505_000602/tabular_bundle/pipeline_c2/y_train.npy @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:3f8eb0b25043331a30fde5439f063eed59e7a76f45d7d102b9b4fbcd16b551b4 +size 11184 diff --git a/hyperparameter/c2/tabbyflow/tabbyflow-c2-20260505_000602/tabular_bundle/pipeline_c2/y_val.npy b/hyperparameter/c2/tabbyflow/tabbyflow-c2-20260505_000602/tabular_bundle/pipeline_c2/y_val.npy new file mode 100644 index 0000000000000000000000000000000000000000..8bfc8f9de7350657cd6411c55d2b9b87bea9c13a --- /dev/null +++ b/hyperparameter/c2/tabbyflow/tabbyflow-c2-20260505_000602/tabular_bundle/pipeline_c2/y_val.npy @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:3f8eb0b25043331a30fde5439f063eed59e7a76f45d7d102b9b4fbcd16b551b4 +size 11184 diff --git a/hyperparameter/c2/tabbyflow/tabbyflow-c2-20260505_000602/train_20260505_000602.log b/hyperparameter/c2/tabbyflow/tabbyflow-c2-20260505_000602/train_20260505_000602.log new file mode 100644 index 0000000000000000000000000000000000000000..59068e905033aeccf8bcdda60b52c613b977512f --- /dev/null +++ b/hyperparameter/c2/tabbyflow/tabbyflow-c2-20260505_000602/train_20260505_000602.log @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:314783f3a7a99f1c025b95140a7bc2c140f7e8fe639deb9dc25a5cf2b40c01fb +size 284056 diff --git a/hyperparameter/c2/tabbyflow/tabbyflow-c2-20260505_001451/_tabbyflow_gen.py b/hyperparameter/c2/tabbyflow/tabbyflow-c2-20260505_001451/_tabbyflow_gen.py new file mode 100644 index 0000000000000000000000000000000000000000..07cbf4700884c5d256587b9c6cc1dac664149862 --- /dev/null +++ b/hyperparameter/c2/tabbyflow/tabbyflow-c2-20260505_001451/_tabbyflow_gen.py @@ -0,0 +1,34 @@ + +import os, shutil, subprocess, sys +root = r"/workspace/ef-vfm" +name = r"pipeline_c2" +src = r"/work/output-Benchmark-trainonly-v1/c2/tabbyflow/tabbyflow-c2-20260505_001451/tabular_bundle/pipeline_c2" +dst_data = os.path.join(root, "data", name) +shutil.rmtree(dst_data, ignore_errors=True) +shutil.copytree(src, dst_data) +dst_syn = os.path.join(root, "synthetic", name) +os.makedirs(dst_syn, exist_ok=True) +for fn in ("real.csv", "test.csv", "val.csv"): + shutil.copy(os.path.join(src, fn), os.path.join(dst_syn, fn)) +os.chdir(root) +os.environ["PYTHONPATH"] = root + os.pathsep + os.environ.get("PYTHONPATH", "") +os.environ.setdefault("EFVFM_SAMPLE_BATCH_SIZE", "128") +subprocess.check_call([ + sys.executable, "main.py", + "--dataname", name, "--mode", "test", "--gpu", "0", + "--no_wandb", "--exp_name", r"adapter_efvfm", + "--ckpt_path", r"/workspace/ef-vfm/ef_vfm/ckpt/pipeline_c2/adapter_efvfm/model_700.pt", + "--num_samples_to_generate", str(int(1382)), +]) +base = os.path.join(root, "ef_vfm", "result", name, r"adapter_efvfm") +best = None +best_t = -1.0 +for r, _, files in os.walk(base): + if "samples.csv" in files: + p = os.path.join(r, "samples.csv") + t = os.path.getmtime(p) + if t > best_t: + best_t, best = t, p +if not best: + raise SystemExit("tabbyflow: no samples.csv in " + base) +shutil.copy(best, r"/work/output-Benchmark-trainonly-v1/c2/tabbyflow/tabbyflow-c2-20260505_001451/tabbyflow-c2-1382-20260505_002755.csv") diff --git a/hyperparameter/c2/tabbyflow/tabbyflow-c2-20260505_001451/_tabbyflow_train.py b/hyperparameter/c2/tabbyflow/tabbyflow-c2-20260505_001451/_tabbyflow_train.py new file mode 100644 index 0000000000000000000000000000000000000000..4f9317b434aaf67a794726f47eb34cc4b57e1ba2 --- /dev/null +++ b/hyperparameter/c2/tabbyflow/tabbyflow-c2-20260505_001451/_tabbyflow_train.py @@ -0,0 +1,24 @@ + +import os, shutil, subprocess, sys +root = r"/workspace/ef-vfm" +name = r"pipeline_c2" +src = r"/work/output-Benchmark-trainonly-v1/c2/tabbyflow/tabbyflow-c2-20260505_001451/tabular_bundle/pipeline_c2" +os.makedirs(os.path.join(root, "data", name), exist_ok=True) +dst_data = os.path.join(root, "data", name) +dst_syn = os.path.join(root, "synthetic", name) +shutil.rmtree(dst_data, ignore_errors=True) +shutil.copytree(src, dst_data) +os.makedirs(dst_syn, exist_ok=True) +for fn in ("real.csv", "test.csv", "val.csv"): + shutil.copy(os.path.join(src, fn), os.path.join(dst_syn, fn)) +os.chdir(root) +os.environ["PYTHONPATH"] = root + os.pathsep + os.environ.get("PYTHONPATH", "") +os.environ["EFVFM_SMOKE_STEPS"] = "700" +os.environ["EFVFM_ADAPTER_TRAIN"] = "1" +os.environ.setdefault("EFVFM_SAMPLE_BATCH_SIZE", "128") +os.environ.setdefault("EFVFM_EVAL_NUM_SAMPLES", "512") +subprocess.check_call([ + sys.executable, "main.py", + "--dataname", name, "--mode", "train", "--gpu", "0", + "--no_wandb", "--exp_name", r"adapter_efvfm", +]) diff --git a/hyperparameter/c2/tabbyflow/tabbyflow-c2-20260505_001451/gen_20260505_002755.log b/hyperparameter/c2/tabbyflow/tabbyflow-c2-20260505_001451/gen_20260505_002755.log new file mode 100644 index 0000000000000000000000000000000000000000..041cb9b4de94140da3e491299736fb85e2ac3095 --- /dev/null +++ b/hyperparameter/c2/tabbyflow/tabbyflow-c2-20260505_001451/gen_20260505_002755.log @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:05ba45ce45592cb71a64741c3eed27546f78a286351c265f648edc2c81d4ca87 +size 3415 diff --git a/hyperparameter/c2/tabbyflow/tabbyflow-c2-20260505_001451/input_snapshot.json b/hyperparameter/c2/tabbyflow/tabbyflow-c2-20260505_001451/input_snapshot.json new file mode 100644 index 0000000000000000000000000000000000000000..89c9d5855c86fb753a25070ff5c19d45d1e2fb9e --- /dev/null +++ b/hyperparameter/c2/tabbyflow/tabbyflow-c2-20260505_001451/input_snapshot.json @@ -0,0 +1,36 @@ +{ + "dataset_id": "c2", + "model": "tabbyflow", + "inputs": { + "train_csv": { + "path": "/data/jialinzhang/SynthesizePipeline-server/DatasetNew/c2/c2-train.csv", + "exists": true, + "size": 42948, + "sha256": "17bc560fa96bd00fb3b526e1e65bc91210b701d0d0a4e8bb9b4c5196cab56def" + }, + "val_csv": { + "path": "/data/jialinzhang/SynthesizePipeline-server/DatasetNew/c2/c2-val.csv", + "exists": true, + "size": 5349, + "sha256": "61e565eca62e65a7dccd9d51039a3170413379e10fc494e25870e7c4294863c9" + }, + "test_csv": { + "path": "/data/jialinzhang/SynthesizePipeline-server/DatasetNew/c2/c2-test.csv", + "exists": true, + "size": 5448, + "sha256": "cbcbb062a1faf5fa44b66c80532baa229e05b94fc42137269761e6c6d84af20a" + }, + "profile_json": { + "path": "/data/jialinzhang/SynthesizePipeline-server/DatasetNew/artifacts/data_core/tabular/c2/c2-dataset_profile.json", + "exists": true, + "size": 3240, + "sha256": "526b7163b2076c93c0bf4638438081ee8a6907065d5b608faa40d1a3dbc2a27b" + }, + "contract_json": { + "path": "/data/jialinzhang/SynthesizePipeline-server/DatasetNew/artifacts/data_core/tabular/c2/c2-dataset_contract_v1.json", + "exists": true, + "size": 3731, + "sha256": "fb595a876054c2ee9b4e10cfe83a5691588de1d25466cbb9d473c18ad3604009" + } + } +} \ No newline at end of file diff --git a/hyperparameter/c2/tabbyflow/tabbyflow-c2-20260505_001451/models_tabbyflow/trained.pt b/hyperparameter/c2/tabbyflow/tabbyflow-c2-20260505_001451/models_tabbyflow/trained.pt new file mode 100644 index 0000000000000000000000000000000000000000..f063a878c470d9d40f79db79881596e1e497dffd --- /dev/null +++ b/hyperparameter/c2/tabbyflow/tabbyflow-c2-20260505_001451/models_tabbyflow/trained.pt @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:adb734fec12f2251befd371dca69e481b19464aded2a6823105a01b4be6ddbe5 +size 40 diff --git a/hyperparameter/c2/tabbyflow/tabbyflow-c2-20260505_001451/public_gate/normalized_schema_snapshot.json b/hyperparameter/c2/tabbyflow/tabbyflow-c2-20260505_001451/public_gate/normalized_schema_snapshot.json new file mode 100644 index 0000000000000000000000000000000000000000..689b1d00d96508e44ba40e58dc4560e19afc2b3b --- /dev/null +++ b/hyperparameter/c2/tabbyflow/tabbyflow-c2-20260505_001451/public_gate/normalized_schema_snapshot.json @@ -0,0 +1,144 @@ +{ + "dataset_id": "c2", + "target_column": "class", + "task_type": "classification", + "columns": [ + { + "name": "buying", + "role": "feature", + "semantic_type": "categorical", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 4, + "unique_ratio": 0.002894, + "example_values": [ + "vhigh", + "med", + "high", + "low" + ] + } + }, + { + "name": "maint", + "role": "feature", + "semantic_type": "categorical", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 4, + "unique_ratio": 0.002894, + "example_values": [ + "vhigh", + "low", + "med", + "high" + ] + } + }, + { + "name": "doors", + "role": "feature", + "semantic_type": "categorical", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 4, + "unique_ratio": 0.002894, + "example_values": [ + "2", + "5more", + "3", + "4" + ] + } + }, + { + "name": "persons", + "role": "feature", + "semantic_type": "categorical", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 3, + "unique_ratio": 0.002171, + "example_values": [ + "2", + "4", + "more" + ] + } + }, + { + "name": "lug_boot", + "role": "feature", + "semantic_type": "categorical", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 3, + "unique_ratio": 0.002171, + "example_values": [ + "small", + "big", + "med" + ] + } + }, + { + "name": "safety", + "role": "feature", + "semantic_type": "categorical", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 3, + "unique_ratio": 0.002171, + "example_values": [ + "low", + "high", + "med" + ] + } + }, + { + "name": "class", + "role": "target", + "semantic_type": "categorical", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 4, + "unique_ratio": 0.002894, + "example_values": [ + "unacc", + "good", + "acc", + "vgood" + ] + } + } + ] +} \ No newline at end of file diff --git a/hyperparameter/c2/tabbyflow/tabbyflow-c2-20260505_001451/public_gate/public_gate_report.json b/hyperparameter/c2/tabbyflow/tabbyflow-c2-20260505_001451/public_gate/public_gate_report.json new file mode 100644 index 0000000000000000000000000000000000000000..2e4cdcb2a4e28e40d59b17a83e773f622b7636a5 --- /dev/null +++ b/hyperparameter/c2/tabbyflow/tabbyflow-c2-20260505_001451/public_gate/public_gate_report.json @@ -0,0 +1,37 @@ +{ + "dataset_id": "c2", + "status": "pass", + "checks": [ + { + "check_id": "PG001_csv_parse_ok", + "status": "pass" + }, + { + "check_id": "PG002_split_header_consistent", + "status": "pass" + }, + { + "check_id": "PG003_profile_header_match", + "status": "pass" + }, + { + "check_id": "PG004_missing_token_normalized", + "status": "pass" + }, + { + "check_id": "PG005_semantic_type_validated", + "status": "pass" + }, + { + "check_id": "PG006_target_defined_and_valid", + "status": "pass" + } + ], + "target_column": "class", + "task_type": "classification", + "input_splits": { + "train": "/data/jialinzhang/SynthesizePipeline-server/DatasetNew/c2/c2-train.csv", + "val": "/data/jialinzhang/SynthesizePipeline-server/DatasetNew/c2/c2-val.csv", + "test": "/data/jialinzhang/SynthesizePipeline-server/DatasetNew/c2/c2-test.csv" + } +} \ No newline at end of file diff --git a/hyperparameter/c2/tabbyflow/tabbyflow-c2-20260505_001451/public_gate/staged_input_manifest.json b/hyperparameter/c2/tabbyflow/tabbyflow-c2-20260505_001451/public_gate/staged_input_manifest.json new file mode 100644 index 0000000000000000000000000000000000000000..a991314393841feeb2d38bcb06b12de9f9883ce1 --- /dev/null +++ b/hyperparameter/c2/tabbyflow/tabbyflow-c2-20260505_001451/public_gate/staged_input_manifest.json @@ -0,0 +1,149 @@ +{ + "dataset_id": "c2", + "target_column": "class", + "task_type": "classification", + "train_csv": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/c2/tabbyflow/tabbyflow-c2-20260505_001451/staged/public/train.csv", + "val_csv": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/c2/tabbyflow/tabbyflow-c2-20260505_001451/staged/public/val.csv", + "test_csv": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/c2/tabbyflow/tabbyflow-c2-20260505_001451/staged/public/test.csv", + "features_json": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/c2/tabbyflow/tabbyflow-c2-20260505_001451/staged/public/staged_features.json", + "public_gate_report": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/c2/tabbyflow/tabbyflow-c2-20260505_001451/public_gate/public_gate_report.json", + "column_schema": [ + { + "name": "buying", + "role": "feature", + "semantic_type": "categorical", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 4, + "unique_ratio": 0.002894, + "example_values": [ + "vhigh", + "med", + "high", + "low" + ] + } + }, + { + "name": "maint", + "role": "feature", + "semantic_type": "categorical", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 4, + "unique_ratio": 0.002894, + "example_values": [ + "vhigh", + "low", + "med", + "high" + ] + } + }, + { + "name": "doors", + "role": "feature", + "semantic_type": "categorical", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 4, + "unique_ratio": 0.002894, + "example_values": [ + "2", + "5more", + "3", + "4" + ] + } + }, + { + "name": "persons", + "role": "feature", + "semantic_type": "categorical", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 3, + "unique_ratio": 0.002171, + "example_values": [ + "2", + "4", + "more" + ] + } + }, + { + "name": "lug_boot", + "role": "feature", + "semantic_type": "categorical", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 3, + "unique_ratio": 0.002171, + "example_values": [ + "small", + "big", + "med" + ] + } + }, + { + "name": "safety", + "role": "feature", + "semantic_type": "categorical", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 3, + "unique_ratio": 0.002171, + "example_values": [ + "low", + "high", + "med" + ] + } + }, + { + "name": "class", + "role": "target", + "semantic_type": "categorical", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 4, + "unique_ratio": 0.002894, + "example_values": [ + "unacc", + "good", + "acc", + "vgood" + ] + } + } + ] +} \ No newline at end of file diff --git a/hyperparameter/c2/tabbyflow/tabbyflow-c2-20260505_001451/run_config.json b/hyperparameter/c2/tabbyflow/tabbyflow-c2-20260505_001451/run_config.json new file mode 100644 index 0000000000000000000000000000000000000000..2ece9feb0996015dcefc3febd4c949df84fc924c --- /dev/null +++ b/hyperparameter/c2/tabbyflow/tabbyflow-c2-20260505_001451/run_config.json @@ -0,0 +1,42 @@ +{ + "schema_version": 1, + "recorded_at": "2026-05-05T00:14:51", + "dataset_id": "c2", + "model": "tabbyflow", + "work_dir": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/c2/tabbyflow/tabbyflow-c2-20260505_001451", + "dataset_source_requested": "new", + "dataset_source_resolved": "new", + "cli_args": { + "model": "tabbyflow", + "dataset": "c2", + "dataset_source": "new", + "train": true, + "generate": true, + "num_rows": 0, + "epochs": 700, + "output_dir": null, + "model_dir": null, + "work_dir": null, + "resume": false, + "no_stats": false + }, + "resolved": { + "num_rows": 1382, + "model_path": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/c2/tabbyflow/tabbyflow-c2-20260505_001451/models_tabbyflow/trained.pt", + "output_csv": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/c2/tabbyflow/tabbyflow-c2-20260505_001451/tabbyflow-c2-1382-20260505_002755.csv" + }, + "input_artifacts": { + "public_gate_report": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/c2/tabbyflow/tabbyflow-c2-20260505_001451/public_gate/public_gate_report.json", + "public_manifest": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/c2/tabbyflow/tabbyflow-c2-20260505_001451/public_gate/staged_input_manifest.json", + "model_manifest": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/c2/tabbyflow/tabbyflow-c2-20260505_001451/staged/tabbyflow/model_input_manifest.json", + "train_csv": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/c2/tabbyflow/tabbyflow-c2-20260505_001451/staged/public/train.csv", + "features_json": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/c2/tabbyflow/tabbyflow-c2-20260505_001451/staged/public/staged_features.json", + "target_column": "class", + "task_type": "classification" + }, + "env_overrides": { + "BENCHMARK_TABBYFLOW_GPUS": "device=0", + "EFVFM_EVAL_NUM_SAMPLES": "2048", + "EFVFM_SAMPLE_BATCH_SIZE": "128" + } +} \ No newline at end of file diff --git a/hyperparameter/c2/tabbyflow/tabbyflow-c2-20260505_001451/runtime_result.json b/hyperparameter/c2/tabbyflow/tabbyflow-c2-20260505_001451/runtime_result.json new file mode 100644 index 0000000000000000000000000000000000000000..7aba8336651e37f8ab63c3287dd77f8923ed8453 --- /dev/null +++ b/hyperparameter/c2/tabbyflow/tabbyflow-c2-20260505_001451/runtime_result.json @@ -0,0 +1,27 @@ +{ + "dataset_id": "c2", + "model": "tabbyflow", + "run_id": "tabbyflow-c2-20260505_001451", + "public_gate_status": "pass", + "adapter_ready_status": "pass", + "train_status": "success", + "generate_status": "success", + "reason_code": null, + "reason_detail": null, + "artifacts": { + "synthetic_csv": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/c2/tabbyflow/tabbyflow-c2-20260505_001451/tabbyflow-c2-1382-20260505_002755.csv", + "model_path": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/c2/tabbyflow/tabbyflow-c2-20260505_001451/models_tabbyflow/trained.pt" + }, + "timings": { + "train": { + "started_at": "2026-05-05T00:14:51", + "ended_at": "2026-05-05T00:27:55", + "duration_sec": 783.947 + }, + "generate": { + "started_at": "2026-05-05T00:27:55", + "ended_at": "2026-05-05T00:28:12", + "duration_sec": 16.593 + } + } +} \ No newline at end of file diff --git a/hyperparameter/c2/tabbyflow/tabbyflow-c2-20260505_001451/staged/public/staged_features.json b/hyperparameter/c2/tabbyflow/tabbyflow-c2-20260505_001451/staged/public/staged_features.json new file mode 100644 index 0000000000000000000000000000000000000000..61783861dd5de501592f76acb0469cf3f3b2622a --- /dev/null +++ b/hyperparameter/c2/tabbyflow/tabbyflow-c2-20260505_001451/staged/public/staged_features.json @@ -0,0 +1,37 @@ +[ + { + "feature_name": "buying", + "data_type": "categorical", + "is_target": false + }, + { + "feature_name": "maint", + "data_type": "categorical", + "is_target": false + }, + { + "feature_name": "doors", + "data_type": "categorical", + "is_target": false + }, + { + "feature_name": "persons", + "data_type": "categorical", + "is_target": false + }, + { + "feature_name": "lug_boot", + "data_type": "categorical", + "is_target": false + }, + { + "feature_name": "safety", + "data_type": "categorical", + "is_target": false + }, + { + "feature_name": "class", + "data_type": "categorical", + "is_target": true + } +] \ No newline at end of file diff --git a/hyperparameter/c2/tabbyflow/tabbyflow-c2-20260505_001451/staged/public/test.csv b/hyperparameter/c2/tabbyflow/tabbyflow-c2-20260505_001451/staged/public/test.csv new file mode 100644 index 0000000000000000000000000000000000000000..392a0d7189a34d8f13ecf20a99d64b03230d517c --- /dev/null +++ b/hyperparameter/c2/tabbyflow/tabbyflow-c2-20260505_001451/staged/public/test.csv @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:b48114a7d0bc5bd9a07920f903c8d4aba8bf98bf2a66a050da03588b0245ca73 +size 5273 diff --git a/hyperparameter/c2/tabbyflow/tabbyflow-c2-20260505_001451/staged/public/train.csv b/hyperparameter/c2/tabbyflow/tabbyflow-c2-20260505_001451/staged/public/train.csv new file mode 100644 index 0000000000000000000000000000000000000000..da4f4d55134eebc0e51157d0d467536371db1484 --- /dev/null +++ b/hyperparameter/c2/tabbyflow/tabbyflow-c2-20260505_001451/staged/public/train.csv @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:4aed00c2c2b3f88a55a7ebff31b2e1b5e0e32fb0a7267e0b9d2779cd23e434dd +size 41565 diff --git a/hyperparameter/c2/tabbyflow/tabbyflow-c2-20260505_001451/staged/public/val.csv b/hyperparameter/c2/tabbyflow/tabbyflow-c2-20260505_001451/staged/public/val.csv new file mode 100644 index 0000000000000000000000000000000000000000..af8caf7ee42524188534a3daf32996dc491952d9 --- /dev/null +++ b/hyperparameter/c2/tabbyflow/tabbyflow-c2-20260505_001451/staged/public/val.csv @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:26e90c1170a57a14c05832ac88027722b1f3848f9662c7c09ef7c93dcba4cc01 +size 5176 diff --git a/hyperparameter/c2/tabbyflow/tabbyflow-c2-20260505_001451/staged/tabbyflow/adapter_report.json b/hyperparameter/c2/tabbyflow/tabbyflow-c2-20260505_001451/staged/tabbyflow/adapter_report.json new file mode 100644 index 0000000000000000000000000000000000000000..79c569b27d5e116b9e0209802b6acd4c1e219236 --- /dev/null +++ b/hyperparameter/c2/tabbyflow/tabbyflow-c2-20260505_001451/staged/tabbyflow/adapter_report.json @@ -0,0 +1,7 @@ +{ + "adapter_ready_status": "pass", + "adapter_fail_reason_code": null, + "adapter_fail_detail": null, + "adapter_transforms_applied": [], + "model_input_manifest": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/c2/tabbyflow/tabbyflow-c2-20260505_001451/staged/tabbyflow/model_input_manifest.json" +} \ No newline at end of file diff --git a/hyperparameter/c2/tabbyflow/tabbyflow-c2-20260505_001451/staged/tabbyflow/adapter_transforms_applied.json b/hyperparameter/c2/tabbyflow/tabbyflow-c2-20260505_001451/staged/tabbyflow/adapter_transforms_applied.json new file mode 100644 index 0000000000000000000000000000000000000000..0637a088a01e8ddab3bf3fa98dbe804cbde1a0dc --- /dev/null +++ b/hyperparameter/c2/tabbyflow/tabbyflow-c2-20260505_001451/staged/tabbyflow/adapter_transforms_applied.json @@ -0,0 +1 @@ +[] \ No newline at end of file diff --git a/hyperparameter/c2/tabbyflow/tabbyflow-c2-20260505_001451/staged/tabbyflow/model_input_manifest.json b/hyperparameter/c2/tabbyflow/tabbyflow-c2-20260505_001451/staged/tabbyflow/model_input_manifest.json new file mode 100644 index 0000000000000000000000000000000000000000..0f0768e93a2ffcf65cc4cd22da8a0d1a9cc03c6c --- /dev/null +++ b/hyperparameter/c2/tabbyflow/tabbyflow-c2-20260505_001451/staged/tabbyflow/model_input_manifest.json @@ -0,0 +1,151 @@ +{ + "dataset_id": "c2", + "model": "tabbyflow", + "target_column": "class", + "task_type": "classification", + "column_schema": [ + { + "name": "buying", + "role": "feature", + "semantic_type": "categorical", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 4, + "unique_ratio": 0.002894, + "example_values": [ + "vhigh", + "med", + "high", + "low" + ] + } + }, + { + "name": "maint", + "role": "feature", + "semantic_type": "categorical", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 4, + "unique_ratio": 0.002894, + "example_values": [ + "vhigh", + "low", + "med", + "high" + ] + } + }, + { + "name": "doors", + "role": "feature", + "semantic_type": "categorical", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 4, + "unique_ratio": 0.002894, + "example_values": [ + "2", + "5more", + "3", + "4" + ] + } + }, + { + "name": "persons", + "role": "feature", + "semantic_type": "categorical", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 3, + "unique_ratio": 0.002171, + "example_values": [ + "2", + "4", + "more" + ] + } + }, + { + "name": "lug_boot", + "role": "feature", + "semantic_type": "categorical", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 3, + "unique_ratio": 0.002171, + "example_values": [ + "small", + "big", + "med" + ] + } + }, + { + "name": "safety", + "role": "feature", + "semantic_type": "categorical", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 3, + "unique_ratio": 0.002171, + "example_values": [ + "low", + "high", + "med" + ] + } + }, + { + "name": "class", + "role": "target", + "semantic_type": "categorical", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 4, + "unique_ratio": 0.002894, + "example_values": [ + "unacc", + "good", + "acc", + "vgood" + ] + } + } + ], + "public_manifest": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/c2/tabbyflow/tabbyflow-c2-20260505_001451/public_gate/staged_input_manifest.json", + "train_csv": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/c2/tabbyflow/tabbyflow-c2-20260505_001451/staged/public/train.csv", + "val_csv": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/c2/tabbyflow/tabbyflow-c2-20260505_001451/staged/public/val.csv", + "test_csv": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/c2/tabbyflow/tabbyflow-c2-20260505_001451/staged/public/test.csv", + "features_json": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/c2/tabbyflow/tabbyflow-c2-20260505_001451/staged/public/staged_features.json", + "public_gate_report": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/c2/tabbyflow/tabbyflow-c2-20260505_001451/public_gate/public_gate_report.json" +} \ No newline at end of file diff --git a/hyperparameter/c2/tabbyflow/tabbyflow-c2-20260505_001451/tabbyflow-c2-1382-20260505_002755.csv b/hyperparameter/c2/tabbyflow/tabbyflow-c2-20260505_001451/tabbyflow-c2-1382-20260505_002755.csv new file mode 100644 index 0000000000000000000000000000000000000000..25b20ef34a41c693b2505647f58f997d75e4cbf7 --- /dev/null +++ b/hyperparameter/c2/tabbyflow/tabbyflow-c2-20260505_001451/tabbyflow-c2-1382-20260505_002755.csv @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:3f40f8ab297eb4afb6e68e8e2c5e8ce635008053c885143cad79238fc3361bf2 +size 19397 diff --git a/hyperparameter/c2/tabbyflow/tabbyflow-c2-20260505_001451/tabbyflow_train_meta.json b/hyperparameter/c2/tabbyflow/tabbyflow-c2-20260505_001451/tabbyflow_train_meta.json new file mode 100644 index 0000000000000000000000000000000000000000..527acff2baa7a13c275db8e778b2f0c8b7ac7510 --- /dev/null +++ b/hyperparameter/c2/tabbyflow/tabbyflow-c2-20260505_001451/tabbyflow_train_meta.json @@ -0,0 +1,5 @@ +{ + "exp_name": "adapter_efvfm", + "dataname": "pipeline_c2", + "steps": 700 +} \ No newline at end of file diff --git a/hyperparameter/c2/tabbyflow/tabbyflow-c2-20260505_001451/tabular_bundle/pipeline_c2/X_cat_test.npy b/hyperparameter/c2/tabbyflow/tabbyflow-c2-20260505_001451/tabular_bundle/pipeline_c2/X_cat_test.npy new file mode 100644 index 0000000000000000000000000000000000000000..e99f1ae8dc9e7155e5c4bbbd3c2f3f7215c628f7 --- /dev/null +++ b/hyperparameter/c2/tabbyflow/tabbyflow-c2-20260505_001451/tabular_bundle/pipeline_c2/X_cat_test.npy @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:24d2203601ba060728920e754747e5a1dc3955a1b5775e147382fee4f1812542 +size 66464 diff --git a/hyperparameter/c2/tabbyflow/tabbyflow-c2-20260505_001451/tabular_bundle/pipeline_c2/X_cat_train.npy b/hyperparameter/c2/tabbyflow/tabbyflow-c2-20260505_001451/tabular_bundle/pipeline_c2/X_cat_train.npy new file mode 100644 index 0000000000000000000000000000000000000000..e99f1ae8dc9e7155e5c4bbbd3c2f3f7215c628f7 --- /dev/null +++ b/hyperparameter/c2/tabbyflow/tabbyflow-c2-20260505_001451/tabular_bundle/pipeline_c2/X_cat_train.npy @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:24d2203601ba060728920e754747e5a1dc3955a1b5775e147382fee4f1812542 +size 66464 diff --git a/hyperparameter/c2/tabbyflow/tabbyflow-c2-20260505_001451/tabular_bundle/pipeline_c2/X_cat_val.npy b/hyperparameter/c2/tabbyflow/tabbyflow-c2-20260505_001451/tabular_bundle/pipeline_c2/X_cat_val.npy new file mode 100644 index 0000000000000000000000000000000000000000..e99f1ae8dc9e7155e5c4bbbd3c2f3f7215c628f7 --- /dev/null +++ b/hyperparameter/c2/tabbyflow/tabbyflow-c2-20260505_001451/tabular_bundle/pipeline_c2/X_cat_val.npy @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:24d2203601ba060728920e754747e5a1dc3955a1b5775e147382fee4f1812542 +size 66464 diff --git a/hyperparameter/c2/tabbyflow/tabbyflow-c2-20260505_001451/tabular_bundle/pipeline_c2/X_num_test.npy b/hyperparameter/c2/tabbyflow/tabbyflow-c2-20260505_001451/tabular_bundle/pipeline_c2/X_num_test.npy new file mode 100644 index 0000000000000000000000000000000000000000..9370f90332827a72be71bf3347770cac2c0354f5 --- /dev/null +++ b/hyperparameter/c2/tabbyflow/tabbyflow-c2-20260505_001451/tabular_bundle/pipeline_c2/X_num_test.npy @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:79dbdf62b6c69f71f3fef2bfcff35e322b2ac9387fc545116c7bc0078b3de9ec +size 128 diff --git a/hyperparameter/c2/tabbyflow/tabbyflow-c2-20260505_001451/tabular_bundle/pipeline_c2/X_num_train.npy b/hyperparameter/c2/tabbyflow/tabbyflow-c2-20260505_001451/tabular_bundle/pipeline_c2/X_num_train.npy new file mode 100644 index 0000000000000000000000000000000000000000..9370f90332827a72be71bf3347770cac2c0354f5 --- /dev/null +++ b/hyperparameter/c2/tabbyflow/tabbyflow-c2-20260505_001451/tabular_bundle/pipeline_c2/X_num_train.npy @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:79dbdf62b6c69f71f3fef2bfcff35e322b2ac9387fc545116c7bc0078b3de9ec +size 128 diff --git a/hyperparameter/c2/tabbyflow/tabbyflow-c2-20260505_001451/tabular_bundle/pipeline_c2/X_num_val.npy b/hyperparameter/c2/tabbyflow/tabbyflow-c2-20260505_001451/tabular_bundle/pipeline_c2/X_num_val.npy new file mode 100644 index 0000000000000000000000000000000000000000..9370f90332827a72be71bf3347770cac2c0354f5 --- /dev/null +++ b/hyperparameter/c2/tabbyflow/tabbyflow-c2-20260505_001451/tabular_bundle/pipeline_c2/X_num_val.npy @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:79dbdf62b6c69f71f3fef2bfcff35e322b2ac9387fc545116c7bc0078b3de9ec +size 128 diff --git a/hyperparameter/c2/tabbyflow/tabbyflow-c2-20260505_001451/tabular_bundle/pipeline_c2/info.json b/hyperparameter/c2/tabbyflow/tabbyflow-c2-20260505_001451/tabular_bundle/pipeline_c2/info.json new file mode 100644 index 0000000000000000000000000000000000000000..bf064b213901b4f614a949e23e2e89a63aac1488 --- /dev/null +++ b/hyperparameter/c2/tabbyflow/tabbyflow-c2-20260505_001451/tabular_bundle/pipeline_c2/info.json @@ -0,0 +1,88 @@ +{ + "name": "pipeline_c2", + "task_type": "multiclass", + "n_num_features": 0, + "n_cat_features": 6, + "train_size": 1382, + "test_num": 1382, + "val_num": 1382, + "train_num": 1382, + "bundle_note": "val/test matrices are train copies (train-only policy; no real held-out rows).", + "num_col_idx": [], + "cat_col_idx": [ + 0, + 1, + 2, + 3, + 4, + 5 + ], + "target_col_idx": [ + 6 + ], + "column_names": [ + "buying", + "maint", + "doors", + "persons", + "lug_boot", + "safety", + "class" + ], + "int_col_idx": [], + "int_columns": [], + "int_col_idx_wrt_num": [], + "metadata": { + "columns": { + "0": { + "sdtype": "categorical" + }, + "1": { + "sdtype": "categorical" + }, + "2": { + "sdtype": "categorical" + }, + "3": { + "sdtype": "categorical" + }, + "4": { + "sdtype": "categorical" + }, + "5": { + "sdtype": "categorical" + }, + "6": { + "sdtype": "categorical" + } + } + }, + "idx_mapping": { + "0": 0, + "1": 1, + "2": 2, + "3": 3, + "4": 4, + "5": 5, + "6": 6 + }, + "inverse_idx_mapping": { + "0": 0, + "1": 1, + "2": 2, + "3": 3, + "4": 4, + "5": 5, + "6": 6 + }, + "idx_name_mapping": { + "0": "buying", + "1": "maint", + "2": "doors", + "3": "persons", + "4": "lug_boot", + "5": "safety", + "6": "class" + }, + "n_classes": 4 +} \ No newline at end of file diff --git a/hyperparameter/c2/tabbyflow/tabbyflow-c2-20260505_001451/tabular_bundle/pipeline_c2/real.csv b/hyperparameter/c2/tabbyflow/tabbyflow-c2-20260505_001451/tabular_bundle/pipeline_c2/real.csv new file mode 100644 index 0000000000000000000000000000000000000000..f778fcd2758e712a195229c6f50504f94f046c8d --- /dev/null +++ b/hyperparameter/c2/tabbyflow/tabbyflow-c2-20260505_001451/tabular_bundle/pipeline_c2/real.csv @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:a54d8aab34745836c4d0260009787c8064c2c3e9d99040c5a6856190eb0745e9 +size 24215 diff --git a/hyperparameter/c2/tabbyflow/tabbyflow-c2-20260505_001451/tabular_bundle/pipeline_c2/test.csv b/hyperparameter/c2/tabbyflow/tabbyflow-c2-20260505_001451/tabular_bundle/pipeline_c2/test.csv new file mode 100644 index 0000000000000000000000000000000000000000..f778fcd2758e712a195229c6f50504f94f046c8d --- /dev/null +++ b/hyperparameter/c2/tabbyflow/tabbyflow-c2-20260505_001451/tabular_bundle/pipeline_c2/test.csv @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:a54d8aab34745836c4d0260009787c8064c2c3e9d99040c5a6856190eb0745e9 +size 24215 diff --git a/hyperparameter/c2/tabbyflow/tabbyflow-c2-20260505_001451/tabular_bundle/pipeline_c2/val.csv b/hyperparameter/c2/tabbyflow/tabbyflow-c2-20260505_001451/tabular_bundle/pipeline_c2/val.csv new file mode 100644 index 0000000000000000000000000000000000000000..f778fcd2758e712a195229c6f50504f94f046c8d --- /dev/null +++ b/hyperparameter/c2/tabbyflow/tabbyflow-c2-20260505_001451/tabular_bundle/pipeline_c2/val.csv @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:a54d8aab34745836c4d0260009787c8064c2c3e9d99040c5a6856190eb0745e9 +size 24215 diff --git a/hyperparameter/c2/tabbyflow/tabbyflow-c2-20260505_001451/tabular_bundle/pipeline_c2/y_test.npy b/hyperparameter/c2/tabbyflow/tabbyflow-c2-20260505_001451/tabular_bundle/pipeline_c2/y_test.npy new file mode 100644 index 0000000000000000000000000000000000000000..8bfc8f9de7350657cd6411c55d2b9b87bea9c13a --- /dev/null +++ b/hyperparameter/c2/tabbyflow/tabbyflow-c2-20260505_001451/tabular_bundle/pipeline_c2/y_test.npy @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:3f8eb0b25043331a30fde5439f063eed59e7a76f45d7d102b9b4fbcd16b551b4 +size 11184 diff --git a/hyperparameter/c2/tabbyflow/tabbyflow-c2-20260505_001451/tabular_bundle/pipeline_c2/y_train.npy b/hyperparameter/c2/tabbyflow/tabbyflow-c2-20260505_001451/tabular_bundle/pipeline_c2/y_train.npy new file mode 100644 index 0000000000000000000000000000000000000000..8bfc8f9de7350657cd6411c55d2b9b87bea9c13a --- /dev/null +++ b/hyperparameter/c2/tabbyflow/tabbyflow-c2-20260505_001451/tabular_bundle/pipeline_c2/y_train.npy @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:3f8eb0b25043331a30fde5439f063eed59e7a76f45d7d102b9b4fbcd16b551b4 +size 11184 diff --git a/hyperparameter/c2/tabbyflow/tabbyflow-c2-20260505_001451/tabular_bundle/pipeline_c2/y_val.npy b/hyperparameter/c2/tabbyflow/tabbyflow-c2-20260505_001451/tabular_bundle/pipeline_c2/y_val.npy new file mode 100644 index 0000000000000000000000000000000000000000..8bfc8f9de7350657cd6411c55d2b9b87bea9c13a --- /dev/null +++ b/hyperparameter/c2/tabbyflow/tabbyflow-c2-20260505_001451/tabular_bundle/pipeline_c2/y_val.npy @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:3f8eb0b25043331a30fde5439f063eed59e7a76f45d7d102b9b4fbcd16b551b4 +size 11184 diff --git a/hyperparameter/c2/tabbyflow/tabbyflow-c2-20260505_001451/train_20260505_001451.log b/hyperparameter/c2/tabbyflow/tabbyflow-c2-20260505_001451/train_20260505_001451.log new file mode 100644 index 0000000000000000000000000000000000000000..1ec0deae1d0a8743ecebcc2e0096369d06b5ad0d --- /dev/null +++ b/hyperparameter/c2/tabbyflow/tabbyflow-c2-20260505_001451/train_20260505_001451.log @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:f641d8956fe65f8dc173332fa731269c1df925e8c9bd76f177a46dae459d30c1 +size 397667 diff --git a/hyperparameter/c2/tabddpm/tabddpm-c2-20260504_181103/_tabddpm_sample_r0.py b/hyperparameter/c2/tabddpm/tabddpm-c2-20260504_181103/_tabddpm_sample_r0.py new file mode 100644 index 0000000000000000000000000000000000000000..acd07a0b4e4bcf12e9a8c3908b4d5a6367d1d0d6 --- /dev/null +++ b/hyperparameter/c2/tabddpm/tabddpm-c2-20260504_181103/_tabddpm_sample_r0.py @@ -0,0 +1,66 @@ +import os, sys, subprocess, json +import numpy as np +import pandas as pd + +tabddpm_root = "/workspace/tabddpm/code" +assert os.path.isdir(tabddpm_root), f"TabDDPM source not mounted: {tabddpm_root}" +env = os.environ.copy() +env["PYTHONPATH"] = tabddpm_root + (os.pathsep + env.get("PYTHONPATH", "")) + +# Reuse the compat wrapper (patches collections.Sequence for skorch) +wrapper = os.path.join(tabddpm_root, "_compat_run.py") +if not os.path.exists(wrapper): + with open(wrapper, "w") as f: + f.write( + "import collections, collections.abc\n" + "for _a in ('Sequence','MutableSequence','MutableMapping','Mapping'," + "'MutableSet','Set','Callable','Iterable','Iterator'):\n" + " if not hasattr(collections, _a): setattr(collections, _a, getattr(collections.abc, _a, None))\n" + "import sys, runpy\n" + "sys.argv = sys.argv[1:]\n" + "runpy.run_path(sys.argv[0], run_name='__main__')\n" + ) + +print(f"[TabDDPM] Sampling 1382 rows") +ret = subprocess.run( + [sys.executable, wrapper, "scripts/pipeline.py", + "--config", "/work/output-Benchmark-trainonly-v1/c2/tabddpm/tabddpm-c2-20260504_181103/config_sample_20260504_181140_r0.toml", + "--sample"], + cwd=tabddpm_root, + env=env +) +if ret.returncode != 0: + sys.exit(ret.returncode) + +# 将 .npy 输出转为 CSV(npy 在 TabDDPM 的 parent_dir,即 npy_dir) +info_path = "/work/output-Benchmark-trainonly-v1/c2/tabddpm/tabddpm-c2-20260504_181103/data/info.json" +with open(info_path) as f: + info = json.load(f) + +output_dir = "/work/output-Benchmark-trainonly-v1/c2/tabddpm/tabddpm-c2-20260504_181103/output" +col_names = info.get("column_names", []) + +parts = [] +x_num_path = os.path.join(output_dir, "X_num_train.npy") +x_cat_path = os.path.join(output_dir, "X_cat_train.npy") +y_path = os.path.join(output_dir, "y_train.npy") + +if os.path.exists(x_num_path): + parts.append(np.load(x_num_path, allow_pickle=True)) +if os.path.exists(x_cat_path): + parts.append(np.load(x_cat_path, allow_pickle=True).astype(float)) +if os.path.exists(y_path): + y = np.load(y_path, allow_pickle=True) + parts.append(y.reshape(-1, 1) if y.ndim == 1 else y) + +if parts: + combined = np.concatenate(parts, axis=1) + if col_names and len(col_names) == combined.shape[1]: + df = pd.DataFrame(combined, columns=col_names) + else: + df = pd.DataFrame(combined) + df.to_csv("/work/output-Benchmark-trainonly-v1/c2/tabddpm/tabddpm-c2-20260504_181103/tabddpm-c2-1382-20260504_181140.csv", index=False) + print(f"[TabDDPM] Saved {len(df)} rows -> /work/output-Benchmark-trainonly-v1/c2/tabddpm/tabddpm-c2-20260504_181103/tabddpm-c2-1382-20260504_181140.csv") +else: + print("[TabDDPM] WARNING: No output .npy files found") + sys.exit(1) diff --git a/hyperparameter/c2/tabddpm/tabddpm-c2-20260504_181103/_tabddpm_train.py b/hyperparameter/c2/tabddpm/tabddpm-c2-20260504_181103/_tabddpm_train.py new file mode 100644 index 0000000000000000000000000000000000000000..ddb041209cab17e11561f35f7bc9132dfe91f27a --- /dev/null +++ b/hyperparameter/c2/tabddpm/tabddpm-c2-20260504_181103/_tabddpm_train.py @@ -0,0 +1,32 @@ +import os, sys, subprocess + +tabddpm_root = "/workspace/tabddpm/code" +assert os.path.isdir(tabddpm_root), f"TabDDPM source not mounted: {tabddpm_root}" +env = os.environ.copy() +env["PYTHONPATH"] = tabddpm_root + (os.pathsep + env.get("PYTHONPATH", "")) + +# Write a wrapper that patches collections.Sequence (removed in Python 3.10+) +# before running pipeline.py - needed because skorch uses old API +wrapper = os.path.join(tabddpm_root, "_compat_run.py") +with open(wrapper, "w") as f: + f.write( + "import collections, collections.abc\n" + "for _a in ('Sequence','MutableSequence','MutableMapping','Mapping'," + "'MutableSet','Set','Callable','Iterable','Iterator'):\n" + " if not hasattr(collections, _a): setattr(collections, _a, getattr(collections.abc, _a, None))\n" + "import sys, runpy\n" + "sys.argv = sys.argv[1:]\n" + "runpy.run_path(sys.argv[0], run_name='__main__')\n" + ) + +print(f"[TabDDPM] Training, config=/work/output-Benchmark-trainonly-v1/c2/tabddpm/tabddpm-c2-20260504_181103/config.toml") +ret = subprocess.run( + [sys.executable, wrapper, "scripts/pipeline.py", + "--config", "/work/output-Benchmark-trainonly-v1/c2/tabddpm/tabddpm-c2-20260504_181103/config.toml", + "--train"], + cwd=tabddpm_root, + env=env +) +if ret.returncode != 0: + sys.exit(ret.returncode) +print("[TabDDPM] Training complete") diff --git a/hyperparameter/c2/tabddpm/tabddpm-c2-20260504_181103/config.toml b/hyperparameter/c2/tabddpm/tabddpm-c2-20260504_181103/config.toml new file mode 100644 index 0000000000000000000000000000000000000000..b32437de5ec87ecfb85758bc6c686c27a4499f45 --- /dev/null +++ b/hyperparameter/c2/tabddpm/tabddpm-c2-20260504_181103/config.toml @@ -0,0 +1,39 @@ +seed = 0 +parent_dir = "/work/output-Benchmark-trainonly-v1/c2/tabddpm/tabddpm-c2-20260504_181103/output" +real_data_path = "/work/output-Benchmark-trainonly-v1/c2/tabddpm/tabddpm-c2-20260504_181103/data" +model_type = "mlp" +num_numerical_features = 0 +device = "cuda:0" + +[model_params] +d_in = 6 +num_classes = 4 +is_y_cond = true + +[model_params.rtdl_params] +d_layers = [256, 256] +dropout = 0.0 + +[diffusion_params] +num_timesteps = 200 +gaussian_loss_type = "mse" + +[train.main] +steps = 2000 +lr = 0.001 +weight_decay = 0.0 +batch_size = 256 + +[train.T] +seed = 0 +normalization = "quantile" +num_nan_policy = "__none__" +cat_nan_policy = "__none__" +cat_min_frequency = "__none__" +cat_encoding = "__none__" +y_policy = "default" + +[sample] +num_samples = 1000 +batch_size = 256 +seed = 0 diff --git a/hyperparameter/c2/tabddpm/tabddpm-c2-20260504_181103/config_sample_20260504_181140_r0.toml b/hyperparameter/c2/tabddpm/tabddpm-c2-20260504_181103/config_sample_20260504_181140_r0.toml new file mode 100644 index 0000000000000000000000000000000000000000..d2a6930b9108b5e2a8f747ee1a781a87b6bc55bb --- /dev/null +++ b/hyperparameter/c2/tabddpm/tabddpm-c2-20260504_181103/config_sample_20260504_181140_r0.toml @@ -0,0 +1,39 @@ +seed = 0 +parent_dir = "/work/output-Benchmark-trainonly-v1/c2/tabddpm/tabddpm-c2-20260504_181103/output" +real_data_path = "/work/output-Benchmark-trainonly-v1/c2/tabddpm/tabddpm-c2-20260504_181103/data" +model_type = "mlp" +num_numerical_features = 0 +device = "cuda:0" + +[model_params] +d_in = 6 +num_classes = 4 +is_y_cond = true + +[model_params.rtdl_params] +d_layers = [256, 256] +dropout = 0.0 + +[diffusion_params] +num_timesteps = 200 +gaussian_loss_type = "mse" + +[train.main] +steps = 2000 +lr = 0.001 +weight_decay = 0.0 +batch_size = 256 + +[train.T] +seed = 0 +normalization = "quantile" +num_nan_policy = "__none__" +cat_nan_policy = "__none__" +cat_min_frequency = "__none__" +cat_encoding = "__none__" +y_policy = "default" + +[sample] +num_samples = 1382 +batch_size = 256 +seed = 0 diff --git a/hyperparameter/c2/tabddpm/tabddpm-c2-20260504_181103/data/X_cat_train.npy b/hyperparameter/c2/tabddpm/tabddpm-c2-20260504_181103/data/X_cat_train.npy new file mode 100644 index 0000000000000000000000000000000000000000..e99f1ae8dc9e7155e5c4bbbd3c2f3f7215c628f7 --- /dev/null +++ b/hyperparameter/c2/tabddpm/tabddpm-c2-20260504_181103/data/X_cat_train.npy @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:24d2203601ba060728920e754747e5a1dc3955a1b5775e147382fee4f1812542 +size 66464 diff --git a/hyperparameter/c2/tabddpm/tabddpm-c2-20260504_181103/data/info.json b/hyperparameter/c2/tabddpm/tabddpm-c2-20260504_181103/data/info.json new file mode 100644 index 0000000000000000000000000000000000000000..0f2b351a317260c450725d5a04373330ad3701a3 --- /dev/null +++ b/hyperparameter/c2/tabddpm/tabddpm-c2-20260504_181103/data/info.json @@ -0,0 +1,29 @@ +{ + "name": "benchmark_dataset", + "task_type": "multiclass", + "n_num_features": 0, + "n_cat_features": 6, + "train_size": 1382, + "num_col_idx": [], + "cat_col_idx": [ + 0, + 1, + 2, + 3, + 4, + 5 + ], + "target_col_idx": [ + 6 + ], + "column_names": [ + "buying", + "maint", + "doors", + "persons", + "lug_boot", + "safety", + "class" + ], + "num_classes": 4 +} \ No newline at end of file diff --git a/hyperparameter/c2/tabddpm/tabddpm-c2-20260504_181103/data/y_train.npy b/hyperparameter/c2/tabddpm/tabddpm-c2-20260504_181103/data/y_train.npy new file mode 100644 index 0000000000000000000000000000000000000000..8bfc8f9de7350657cd6411c55d2b9b87bea9c13a --- /dev/null +++ b/hyperparameter/c2/tabddpm/tabddpm-c2-20260504_181103/data/y_train.npy @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:3f8eb0b25043331a30fde5439f063eed59e7a76f45d7d102b9b4fbcd16b551b4 +size 11184 diff --git a/hyperparameter/c2/tabddpm/tabddpm-c2-20260504_181103/gen_20260504_181140_r0.log b/hyperparameter/c2/tabddpm/tabddpm-c2-20260504_181103/gen_20260504_181140_r0.log new file mode 100644 index 0000000000000000000000000000000000000000..9fcd131940297336c95b3df388afad1eccd0f03f --- /dev/null +++ b/hyperparameter/c2/tabddpm/tabddpm-c2-20260504_181103/gen_20260504_181140_r0.log @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:699ec388503c3fef971e172974cee64500a765cff8855575df673d28450f3420 +size 25662 diff --git a/hyperparameter/c2/tabddpm/tabddpm-c2-20260504_181103/input_snapshot.json b/hyperparameter/c2/tabddpm/tabddpm-c2-20260504_181103/input_snapshot.json new file mode 100644 index 0000000000000000000000000000000000000000..772021148f055243c89ddfd9b6fa388ee33d05ea --- /dev/null +++ b/hyperparameter/c2/tabddpm/tabddpm-c2-20260504_181103/input_snapshot.json @@ -0,0 +1,36 @@ +{ + "dataset_id": "c2", + "model": "tabddpm", + "inputs": { + "train_csv": { + "path": "/data/jialinzhang/SynthesizePipeline-server/DatasetNew/c2/c2-train.csv", + "exists": true, + "size": 42948, + "sha256": "17bc560fa96bd00fb3b526e1e65bc91210b701d0d0a4e8bb9b4c5196cab56def" + }, + "val_csv": { + "path": "/data/jialinzhang/SynthesizePipeline-server/DatasetNew/c2/c2-val.csv", + "exists": true, + "size": 5349, + "sha256": "61e565eca62e65a7dccd9d51039a3170413379e10fc494e25870e7c4294863c9" + }, + "test_csv": { + "path": "/data/jialinzhang/SynthesizePipeline-server/DatasetNew/c2/c2-test.csv", + "exists": true, + "size": 5448, + "sha256": "cbcbb062a1faf5fa44b66c80532baa229e05b94fc42137269761e6c6d84af20a" + }, + "profile_json": { + "path": "/data/jialinzhang/SynthesizePipeline-server/DatasetNew/artifacts/data_core/tabular/c2/c2-dataset_profile.json", + "exists": true, + "size": 3240, + "sha256": "526b7163b2076c93c0bf4638438081ee8a6907065d5b608faa40d1a3dbc2a27b" + }, + "contract_json": { + "path": "/data/jialinzhang/SynthesizePipeline-server/DatasetNew/artifacts/data_core/tabular/c2/c2-dataset_contract_v1.json", + "exists": true, + "size": 3731, + "sha256": "fb595a876054c2ee9b4e10cfe83a5691588de1d25466cbb9d473c18ad3604009" + } + } +} \ No newline at end of file diff --git a/hyperparameter/c2/tabddpm/tabddpm-c2-20260504_181103/output/X_cat_train.npy b/hyperparameter/c2/tabddpm/tabddpm-c2-20260504_181103/output/X_cat_train.npy new file mode 100644 index 0000000000000000000000000000000000000000..862303f0519083c21dea3de3dfc30aaabc4a90fd --- /dev/null +++ b/hyperparameter/c2/tabddpm/tabddpm-c2-20260504_181103/output/X_cat_train.npy @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:6ab974a88850d8041e57dd6341c43e40877629a6e0adaf17a6152e0165922ed3 +size 16885 diff --git a/hyperparameter/c2/tabddpm/tabddpm-c2-20260504_181103/output/X_cat_unnorm.npy b/hyperparameter/c2/tabddpm/tabddpm-c2-20260504_181103/output/X_cat_unnorm.npy new file mode 100644 index 0000000000000000000000000000000000000000..b648311a8f6441d68bdba8e8f5737657ea79a9e1 --- /dev/null +++ b/hyperparameter/c2/tabddpm/tabddpm-c2-20260504_181103/output/X_cat_unnorm.npy @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:06a6d4b433422299123e5388de04c0166e6143ab0788c38fe47f40da1c9c727d +size 66464 diff --git a/hyperparameter/c2/tabddpm/tabddpm-c2-20260504_181103/output/config.toml b/hyperparameter/c2/tabddpm/tabddpm-c2-20260504_181103/output/config.toml new file mode 100644 index 0000000000000000000000000000000000000000..d2a6930b9108b5e2a8f747ee1a781a87b6bc55bb --- /dev/null +++ b/hyperparameter/c2/tabddpm/tabddpm-c2-20260504_181103/output/config.toml @@ -0,0 +1,39 @@ +seed = 0 +parent_dir = "/work/output-Benchmark-trainonly-v1/c2/tabddpm/tabddpm-c2-20260504_181103/output" +real_data_path = "/work/output-Benchmark-trainonly-v1/c2/tabddpm/tabddpm-c2-20260504_181103/data" +model_type = "mlp" +num_numerical_features = 0 +device = "cuda:0" + +[model_params] +d_in = 6 +num_classes = 4 +is_y_cond = true + +[model_params.rtdl_params] +d_layers = [256, 256] +dropout = 0.0 + +[diffusion_params] +num_timesteps = 200 +gaussian_loss_type = "mse" + +[train.main] +steps = 2000 +lr = 0.001 +weight_decay = 0.0 +batch_size = 256 + +[train.T] +seed = 0 +normalization = "quantile" +num_nan_policy = "__none__" +cat_nan_policy = "__none__" +cat_min_frequency = "__none__" +cat_encoding = "__none__" +y_policy = "default" + +[sample] +num_samples = 1382 +batch_size = 256 +seed = 0 diff --git a/hyperparameter/c2/tabddpm/tabddpm-c2-20260504_181103/output/info.json b/hyperparameter/c2/tabddpm/tabddpm-c2-20260504_181103/output/info.json new file mode 100644 index 0000000000000000000000000000000000000000..0f2b351a317260c450725d5a04373330ad3701a3 --- /dev/null +++ b/hyperparameter/c2/tabddpm/tabddpm-c2-20260504_181103/output/info.json @@ -0,0 +1,29 @@ +{ + "name": "benchmark_dataset", + "task_type": "multiclass", + "n_num_features": 0, + "n_cat_features": 6, + "train_size": 1382, + "num_col_idx": [], + "cat_col_idx": [ + 0, + 1, + 2, + 3, + 4, + 5 + ], + "target_col_idx": [ + 6 + ], + "column_names": [ + "buying", + "maint", + "doors", + "persons", + "lug_boot", + "safety", + "class" + ], + "num_classes": 4 +} \ No newline at end of file diff --git a/hyperparameter/c2/tabddpm/tabddpm-c2-20260504_181103/output/loss.csv b/hyperparameter/c2/tabddpm/tabddpm-c2-20260504_181103/output/loss.csv new file mode 100644 index 0000000000000000000000000000000000000000..d5c7da855b8ef5835b2dcde545c19bbb7c72d227 --- /dev/null +++ b/hyperparameter/c2/tabddpm/tabddpm-c2-20260504_181103/output/loss.csv @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:57f250e7354878e53460575baff2b9f2824f988cc8ff11b40b4c980408373c4f +size 505 diff --git a/hyperparameter/c2/tabddpm/tabddpm-c2-20260504_181103/output/model.pt b/hyperparameter/c2/tabddpm/tabddpm-c2-20260504_181103/output/model.pt new file mode 100644 index 0000000000000000000000000000000000000000..127c529e5a524f3d4d02fdfd5c84087cabb70040 --- /dev/null +++ b/hyperparameter/c2/tabddpm/tabddpm-c2-20260504_181103/output/model.pt @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:594458bf70bca8778c1355fcc833e6db2d387465769d2ea8135d727934e2c28f +size 566934 diff --git a/hyperparameter/c2/tabddpm/tabddpm-c2-20260504_181103/output/model_ema.pt b/hyperparameter/c2/tabddpm/tabddpm-c2-20260504_181103/output/model_ema.pt new file mode 100644 index 0000000000000000000000000000000000000000..d29643dbbb54baed7564f91a11c10dffe3f1ed90 --- /dev/null +++ b/hyperparameter/c2/tabddpm/tabddpm-c2-20260504_181103/output/model_ema.pt @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:3ecd8cbe4cf1c5d92c800e17e5be4d19b80c5673a835f655f373bf0dc0eef4c1 +size 567778 diff --git a/hyperparameter/c2/tabddpm/tabddpm-c2-20260504_181103/output/y_train.npy b/hyperparameter/c2/tabddpm/tabddpm-c2-20260504_181103/output/y_train.npy new file mode 100644 index 0000000000000000000000000000000000000000..aa9afff4d061333b18828274b1072d1b884f162c --- /dev/null +++ b/hyperparameter/c2/tabddpm/tabddpm-c2-20260504_181103/output/y_train.npy @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:58b1a722d369027a22bed702e3539c6fefa976741570c4c0a2f8546e2978c3d7 +size 11184 diff --git a/hyperparameter/c2/tabddpm/tabddpm-c2-20260504_181103/public_gate/normalized_schema_snapshot.json b/hyperparameter/c2/tabddpm/tabddpm-c2-20260504_181103/public_gate/normalized_schema_snapshot.json new file mode 100644 index 0000000000000000000000000000000000000000..689b1d00d96508e44ba40e58dc4560e19afc2b3b --- /dev/null +++ b/hyperparameter/c2/tabddpm/tabddpm-c2-20260504_181103/public_gate/normalized_schema_snapshot.json @@ -0,0 +1,144 @@ +{ + "dataset_id": "c2", + "target_column": "class", + "task_type": "classification", + "columns": [ + { + "name": "buying", + "role": "feature", + "semantic_type": "categorical", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 4, + "unique_ratio": 0.002894, + "example_values": [ + "vhigh", + "med", + "high", + "low" + ] + } + }, + { + "name": "maint", + "role": "feature", + "semantic_type": "categorical", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 4, + "unique_ratio": 0.002894, + "example_values": [ + "vhigh", + "low", + "med", + "high" + ] + } + }, + { + "name": "doors", + "role": "feature", + "semantic_type": "categorical", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 4, + "unique_ratio": 0.002894, + "example_values": [ + "2", + "5more", + "3", + "4" + ] + } + }, + { + "name": "persons", + "role": "feature", + "semantic_type": "categorical", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 3, + "unique_ratio": 0.002171, + "example_values": [ + "2", + "4", + "more" + ] + } + }, + { + "name": "lug_boot", + "role": "feature", + "semantic_type": "categorical", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 3, + "unique_ratio": 0.002171, + "example_values": [ + "small", + "big", + "med" + ] + } + }, + { + "name": "safety", + "role": "feature", + "semantic_type": "categorical", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 3, + "unique_ratio": 0.002171, + "example_values": [ + "low", + "high", + "med" + ] + } + }, + { + "name": "class", + "role": "target", + "semantic_type": "categorical", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 4, + "unique_ratio": 0.002894, + "example_values": [ + "unacc", + "good", + "acc", + "vgood" + ] + } + } + ] +} \ No newline at end of file diff --git a/hyperparameter/c2/tabddpm/tabddpm-c2-20260504_181103/public_gate/public_gate_report.json b/hyperparameter/c2/tabddpm/tabddpm-c2-20260504_181103/public_gate/public_gate_report.json new file mode 100644 index 0000000000000000000000000000000000000000..2e4cdcb2a4e28e40d59b17a83e773f622b7636a5 --- /dev/null +++ b/hyperparameter/c2/tabddpm/tabddpm-c2-20260504_181103/public_gate/public_gate_report.json @@ -0,0 +1,37 @@ +{ + "dataset_id": "c2", + "status": "pass", + "checks": [ + { + "check_id": "PG001_csv_parse_ok", + "status": "pass" + }, + { + "check_id": "PG002_split_header_consistent", + "status": "pass" + }, + { + "check_id": "PG003_profile_header_match", + "status": "pass" + }, + { + "check_id": "PG004_missing_token_normalized", + "status": "pass" + }, + { + "check_id": "PG005_semantic_type_validated", + "status": "pass" + }, + { + "check_id": "PG006_target_defined_and_valid", + "status": "pass" + } + ], + "target_column": "class", + "task_type": "classification", + "input_splits": { + "train": "/data/jialinzhang/SynthesizePipeline-server/DatasetNew/c2/c2-train.csv", + "val": "/data/jialinzhang/SynthesizePipeline-server/DatasetNew/c2/c2-val.csv", + "test": "/data/jialinzhang/SynthesizePipeline-server/DatasetNew/c2/c2-test.csv" + } +} \ No newline at end of file diff --git a/hyperparameter/c2/tabddpm/tabddpm-c2-20260504_181103/public_gate/staged_input_manifest.json b/hyperparameter/c2/tabddpm/tabddpm-c2-20260504_181103/public_gate/staged_input_manifest.json new file mode 100644 index 0000000000000000000000000000000000000000..637a4e41d23df216439071f6757c5549d916d585 --- /dev/null +++ b/hyperparameter/c2/tabddpm/tabddpm-c2-20260504_181103/public_gate/staged_input_manifest.json @@ -0,0 +1,149 @@ +{ + "dataset_id": "c2", + "target_column": "class", + "task_type": "classification", + "train_csv": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/c2/tabddpm/tabddpm-c2-20260504_181103/staged/public/train.csv", + "val_csv": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/c2/tabddpm/tabddpm-c2-20260504_181103/staged/public/val.csv", + "test_csv": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/c2/tabddpm/tabddpm-c2-20260504_181103/staged/public/test.csv", + "features_json": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/c2/tabddpm/tabddpm-c2-20260504_181103/staged/public/staged_features.json", + "public_gate_report": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/c2/tabddpm/tabddpm-c2-20260504_181103/public_gate/public_gate_report.json", + "column_schema": [ + { + "name": "buying", + "role": "feature", + "semantic_type": "categorical", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 4, + "unique_ratio": 0.002894, + "example_values": [ + "vhigh", + "med", + "high", + "low" + ] + } + }, + { + "name": "maint", + "role": "feature", + "semantic_type": "categorical", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 4, + "unique_ratio": 0.002894, + "example_values": [ + "vhigh", + "low", + "med", + "high" + ] + } + }, + { + "name": "doors", + "role": "feature", + "semantic_type": "categorical", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 4, + "unique_ratio": 0.002894, + "example_values": [ + "2", + "5more", + "3", + "4" + ] + } + }, + { + "name": "persons", + "role": "feature", + "semantic_type": "categorical", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 3, + "unique_ratio": 0.002171, + "example_values": [ + "2", + "4", + "more" + ] + } + }, + { + "name": "lug_boot", + "role": "feature", + "semantic_type": "categorical", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 3, + "unique_ratio": 0.002171, + "example_values": [ + "small", + "big", + "med" + ] + } + }, + { + "name": "safety", + "role": "feature", + "semantic_type": "categorical", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 3, + "unique_ratio": 0.002171, + "example_values": [ + "low", + "high", + "med" + ] + } + }, + { + "name": "class", + "role": "target", + "semantic_type": "categorical", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 4, + "unique_ratio": 0.002894, + "example_values": [ + "unacc", + "good", + "acc", + "vgood" + ] + } + } + ] +} \ No newline at end of file diff --git a/hyperparameter/c2/tabddpm/tabddpm-c2-20260504_181103/run_config.json b/hyperparameter/c2/tabddpm/tabddpm-c2-20260504_181103/run_config.json new file mode 100644 index 0000000000000000000000000000000000000000..a46955e1b93be7d7411b04cd706f9fb97f91be04 --- /dev/null +++ b/hyperparameter/c2/tabddpm/tabddpm-c2-20260504_181103/run_config.json @@ -0,0 +1,45 @@ +{ + "schema_version": 1, + "recorded_at": "2026-05-04T18:11:03", + "dataset_id": "c2", + "model": "tabddpm", + "work_dir": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/c2/tabddpm/tabddpm-c2-20260504_181103", + "dataset_source_requested": "new", + "dataset_source_resolved": "new", + "cli_args": { + "model": "tabddpm", + "dataset": "c2", + "dataset_source": "new", + "train": true, + "generate": true, + "num_rows": 0, + "epochs": null, + "output_dir": null, + "model_dir": null, + "work_dir": null, + "resume": false, + "no_stats": false + }, + "resolved": { + "num_rows": 1382, + "model_path": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/c2/tabddpm/tabddpm-c2-20260504_181103", + "output_csv": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/c2/tabddpm/tabddpm-c2-20260504_181103/tabddpm-c2-1382-20260504_181140.csv" + }, + "input_artifacts": { + "public_gate_report": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/c2/tabddpm/tabddpm-c2-20260504_181103/public_gate/public_gate_report.json", + "public_manifest": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/c2/tabddpm/tabddpm-c2-20260504_181103/public_gate/staged_input_manifest.json", + "model_manifest": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/c2/tabddpm/tabddpm-c2-20260504_181103/staged/tabddpm/model_input_manifest.json", + "train_csv": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/c2/tabddpm/tabddpm-c2-20260504_181103/staged/public/train.csv", + "features_json": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/c2/tabddpm/tabddpm-c2-20260504_181103/staged/public/staged_features.json", + "target_column": "class", + "task_type": "classification" + }, + "env_overrides": { + "BENCHMARK_TABDDPM_GPUS": "device=3", + "TABDDPM_NUM_TIMESTEPS": "200", + "TABDDPM_SAMPLE_BATCH_SIZE": "256", + "TABDDPM_STEPS_PER_EPOCH": "40", + "TABDDPM_TRAIN_BATCH_SIZE": "256", + "TABDDPM_TRAIN_LR": "0.001" + } +} \ No newline at end of file diff --git a/hyperparameter/c2/tabddpm/tabddpm-c2-20260504_181103/runtime_result.json b/hyperparameter/c2/tabddpm/tabddpm-c2-20260504_181103/runtime_result.json new file mode 100644 index 0000000000000000000000000000000000000000..878ba523189e12e2c0225261e4848c928b5dfaf3 --- /dev/null +++ b/hyperparameter/c2/tabddpm/tabddpm-c2-20260504_181103/runtime_result.json @@ -0,0 +1,27 @@ +{ + "dataset_id": "c2", + "model": "tabddpm", + "run_id": "tabddpm-c2-20260504_181103", + "public_gate_status": "pass", + "adapter_ready_status": "pass", + "train_status": "success", + "generate_status": "success", + "reason_code": null, + "reason_detail": null, + "artifacts": { + "synthetic_csv": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/c2/tabddpm/tabddpm-c2-20260504_181103/tabddpm-c2-1382-20260504_181140.csv", + "model_path": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/c2/tabddpm/tabddpm-c2-20260504_181103" + }, + "timings": { + "train": { + "started_at": "2026-05-04T18:11:03", + "ended_at": "2026-05-04T18:11:40", + "duration_sec": 36.309 + }, + "generate": { + "started_at": "2026-05-04T18:11:40", + "ended_at": "2026-05-04T18:11:55", + "duration_sec": 14.826 + } + } +} \ No newline at end of file diff --git a/hyperparameter/c2/tabddpm/tabddpm-c2-20260504_181103/staged/public/staged_features.json b/hyperparameter/c2/tabddpm/tabddpm-c2-20260504_181103/staged/public/staged_features.json new file mode 100644 index 0000000000000000000000000000000000000000..61783861dd5de501592f76acb0469cf3f3b2622a --- /dev/null +++ b/hyperparameter/c2/tabddpm/tabddpm-c2-20260504_181103/staged/public/staged_features.json @@ -0,0 +1,37 @@ +[ + { + "feature_name": "buying", + "data_type": "categorical", + "is_target": false + }, + { + "feature_name": "maint", + "data_type": "categorical", + "is_target": false + }, + { + "feature_name": "doors", + "data_type": "categorical", + "is_target": false + }, + { + "feature_name": "persons", + "data_type": "categorical", + "is_target": false + }, + { + "feature_name": "lug_boot", + "data_type": "categorical", + "is_target": false + }, + { + "feature_name": "safety", + "data_type": "categorical", + "is_target": false + }, + { + "feature_name": "class", + "data_type": "categorical", + "is_target": true + } +] \ No newline at end of file diff --git a/hyperparameter/c2/tabddpm/tabddpm-c2-20260504_181103/staged/public/test.csv b/hyperparameter/c2/tabddpm/tabddpm-c2-20260504_181103/staged/public/test.csv new file mode 100644 index 0000000000000000000000000000000000000000..392a0d7189a34d8f13ecf20a99d64b03230d517c --- /dev/null +++ b/hyperparameter/c2/tabddpm/tabddpm-c2-20260504_181103/staged/public/test.csv @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:b48114a7d0bc5bd9a07920f903c8d4aba8bf98bf2a66a050da03588b0245ca73 +size 5273 diff --git a/hyperparameter/c2/tabddpm/tabddpm-c2-20260504_181103/staged/public/train.csv b/hyperparameter/c2/tabddpm/tabddpm-c2-20260504_181103/staged/public/train.csv new file mode 100644 index 0000000000000000000000000000000000000000..da4f4d55134eebc0e51157d0d467536371db1484 --- /dev/null +++ b/hyperparameter/c2/tabddpm/tabddpm-c2-20260504_181103/staged/public/train.csv @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:4aed00c2c2b3f88a55a7ebff31b2e1b5e0e32fb0a7267e0b9d2779cd23e434dd +size 41565 diff --git a/hyperparameter/c2/tabddpm/tabddpm-c2-20260504_181103/staged/public/val.csv b/hyperparameter/c2/tabddpm/tabddpm-c2-20260504_181103/staged/public/val.csv new file mode 100644 index 0000000000000000000000000000000000000000..af8caf7ee42524188534a3daf32996dc491952d9 --- /dev/null +++ b/hyperparameter/c2/tabddpm/tabddpm-c2-20260504_181103/staged/public/val.csv @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:26e90c1170a57a14c05832ac88027722b1f3848f9662c7c09ef7c93dcba4cc01 +size 5176 diff --git a/hyperparameter/c2/tabddpm/tabddpm-c2-20260504_181103/staged/tabddpm/adapter_report.json b/hyperparameter/c2/tabddpm/tabddpm-c2-20260504_181103/staged/tabddpm/adapter_report.json new file mode 100644 index 0000000000000000000000000000000000000000..2b7902d6a56d5de7e67c14f54def5d51a189eb8c --- /dev/null +++ b/hyperparameter/c2/tabddpm/tabddpm-c2-20260504_181103/staged/tabddpm/adapter_report.json @@ -0,0 +1,7 @@ +{ + "adapter_ready_status": "pass", + "adapter_fail_reason_code": null, + "adapter_fail_detail": null, + "adapter_transforms_applied": [], + "model_input_manifest": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/c2/tabddpm/tabddpm-c2-20260504_181103/staged/tabddpm/model_input_manifest.json" +} \ No newline at end of file diff --git a/hyperparameter/c2/tabddpm/tabddpm-c2-20260504_181103/staged/tabddpm/adapter_transforms_applied.json b/hyperparameter/c2/tabddpm/tabddpm-c2-20260504_181103/staged/tabddpm/adapter_transforms_applied.json new file mode 100644 index 0000000000000000000000000000000000000000..0637a088a01e8ddab3bf3fa98dbe804cbde1a0dc --- /dev/null +++ b/hyperparameter/c2/tabddpm/tabddpm-c2-20260504_181103/staged/tabddpm/adapter_transforms_applied.json @@ -0,0 +1 @@ +[] \ No newline at end of file diff --git a/hyperparameter/c2/tabddpm/tabddpm-c2-20260504_181103/staged/tabddpm/model_input_manifest.json b/hyperparameter/c2/tabddpm/tabddpm-c2-20260504_181103/staged/tabddpm/model_input_manifest.json new file mode 100644 index 0000000000000000000000000000000000000000..a0f2445cc08e90345603470963b98dc9b001343e --- /dev/null +++ b/hyperparameter/c2/tabddpm/tabddpm-c2-20260504_181103/staged/tabddpm/model_input_manifest.json @@ -0,0 +1,151 @@ +{ + "dataset_id": "c2", + "model": "tabddpm", + "target_column": "class", + "task_type": "classification", + "column_schema": [ + { + "name": "buying", + "role": "feature", + "semantic_type": "categorical", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 4, + "unique_ratio": 0.002894, + "example_values": [ + "vhigh", + "med", + "high", + "low" + ] + } + }, + { + "name": "maint", + "role": "feature", + "semantic_type": "categorical", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 4, + "unique_ratio": 0.002894, + "example_values": [ + "vhigh", + "low", + "med", + "high" + ] + } + }, + { + "name": "doors", + "role": "feature", + "semantic_type": "categorical", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 4, + "unique_ratio": 0.002894, + "example_values": [ + "2", + "5more", + "3", + "4" + ] + } + }, + { + "name": "persons", + "role": "feature", + "semantic_type": "categorical", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 3, + "unique_ratio": 0.002171, + "example_values": [ + "2", + "4", + "more" + ] + } + }, + { + "name": "lug_boot", + "role": "feature", + "semantic_type": "categorical", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 3, + "unique_ratio": 0.002171, + "example_values": [ + "small", + "big", + "med" + ] + } + }, + { + "name": "safety", + "role": "feature", + "semantic_type": "categorical", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 3, + "unique_ratio": 0.002171, + "example_values": [ + "low", + "high", + "med" + ] + } + }, + { + "name": "class", + "role": "target", + "semantic_type": "categorical", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 4, + "unique_ratio": 0.002894, + "example_values": [ + "unacc", + "good", + "acc", + "vgood" + ] + } + } + ], + "public_manifest": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/c2/tabddpm/tabddpm-c2-20260504_181103/public_gate/staged_input_manifest.json", + "train_csv": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/c2/tabddpm/tabddpm-c2-20260504_181103/staged/public/train.csv", + "val_csv": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/c2/tabddpm/tabddpm-c2-20260504_181103/staged/public/val.csv", + "test_csv": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/c2/tabddpm/tabddpm-c2-20260504_181103/staged/public/test.csv", + "features_json": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/c2/tabddpm/tabddpm-c2-20260504_181103/staged/public/staged_features.json", + "public_gate_report": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/c2/tabddpm/tabddpm-c2-20260504_181103/public_gate/public_gate_report.json" +} \ No newline at end of file diff --git a/hyperparameter/c2/tabddpm/tabddpm-c2-20260504_181103/tabddpm-c2-1382-20260504_181140.csv b/hyperparameter/c2/tabddpm/tabddpm-c2-20260504_181103/tabddpm-c2-1382-20260504_181140.csv new file mode 100644 index 0000000000000000000000000000000000000000..80588c5545b15e52e605da2d287e0d164b16372b --- /dev/null +++ b/hyperparameter/c2/tabddpm/tabddpm-c2-20260504_181103/tabddpm-c2-1382-20260504_181140.csv @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:98221dc88260a2ea1e55cdbd30eaedbb33e88e6d066c3bf395565afbf203b2b8 +size 38745 diff --git a/hyperparameter/c2/tabddpm/tabddpm-c2-20260504_181103/train_20260504_181103.log b/hyperparameter/c2/tabddpm/tabddpm-c2-20260504_181103/train_20260504_181103.log new file mode 100644 index 0000000000000000000000000000000000000000..d1bb741fbeb6f2fcd03950e3432f561861e3193f --- /dev/null +++ b/hyperparameter/c2/tabddpm/tabddpm-c2-20260504_181103/train_20260504_181103.log @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:14cf68fa12bf8a9e4d7cc59a892456d54b976c676e71e3d6d92486ff58ee32d0 +size 766 diff --git a/hyperparameter/c2/tabddpm/tabddpm-c2-20260504_181207/_tabddpm_sample_r0.py b/hyperparameter/c2/tabddpm/tabddpm-c2-20260504_181207/_tabddpm_sample_r0.py new file mode 100644 index 0000000000000000000000000000000000000000..9a94d2a41b2dcf189c488b2c4912a7dadb8e35ee --- /dev/null +++ b/hyperparameter/c2/tabddpm/tabddpm-c2-20260504_181207/_tabddpm_sample_r0.py @@ -0,0 +1,66 @@ +import os, sys, subprocess, json +import numpy as np +import pandas as pd + +tabddpm_root = "/workspace/tabddpm/code" +assert os.path.isdir(tabddpm_root), f"TabDDPM source not mounted: {tabddpm_root}" +env = os.environ.copy() +env["PYTHONPATH"] = tabddpm_root + (os.pathsep + env.get("PYTHONPATH", "")) + +# Reuse the compat wrapper (patches collections.Sequence for skorch) +wrapper = os.path.join(tabddpm_root, "_compat_run.py") +if not os.path.exists(wrapper): + with open(wrapper, "w") as f: + f.write( + "import collections, collections.abc\n" + "for _a in ('Sequence','MutableSequence','MutableMapping','Mapping'," + "'MutableSet','Set','Callable','Iterable','Iterator'):\n" + " if not hasattr(collections, _a): setattr(collections, _a, getattr(collections.abc, _a, None))\n" + "import sys, runpy\n" + "sys.argv = sys.argv[1:]\n" + "runpy.run_path(sys.argv[0], run_name='__main__')\n" + ) + +print(f"[TabDDPM] Sampling 1382 rows") +ret = subprocess.run( + [sys.executable, wrapper, "scripts/pipeline.py", + "--config", "/work/output-Benchmark-trainonly-v1/c2/tabddpm/tabddpm-c2-20260504_181207/config_sample_20260504_181327_r0.toml", + "--sample"], + cwd=tabddpm_root, + env=env +) +if ret.returncode != 0: + sys.exit(ret.returncode) + +# 将 .npy 输出转为 CSV(npy 在 TabDDPM 的 parent_dir,即 npy_dir) +info_path = "/work/output-Benchmark-trainonly-v1/c2/tabddpm/tabddpm-c2-20260504_181207/data/info.json" +with open(info_path) as f: + info = json.load(f) + +output_dir = "/work/output-Benchmark-trainonly-v1/c2/tabddpm/tabddpm-c2-20260504_181207/output" +col_names = info.get("column_names", []) + +parts = [] +x_num_path = os.path.join(output_dir, "X_num_train.npy") +x_cat_path = os.path.join(output_dir, "X_cat_train.npy") +y_path = os.path.join(output_dir, "y_train.npy") + +if os.path.exists(x_num_path): + parts.append(np.load(x_num_path, allow_pickle=True)) +if os.path.exists(x_cat_path): + parts.append(np.load(x_cat_path, allow_pickle=True).astype(float)) +if os.path.exists(y_path): + y = np.load(y_path, allow_pickle=True) + parts.append(y.reshape(-1, 1) if y.ndim == 1 else y) + +if parts: + combined = np.concatenate(parts, axis=1) + if col_names and len(col_names) == combined.shape[1]: + df = pd.DataFrame(combined, columns=col_names) + else: + df = pd.DataFrame(combined) + df.to_csv("/work/output-Benchmark-trainonly-v1/c2/tabddpm/tabddpm-c2-20260504_181207/tabddpm-c2-1382-20260504_181327.csv", index=False) + print(f"[TabDDPM] Saved {len(df)} rows -> /work/output-Benchmark-trainonly-v1/c2/tabddpm/tabddpm-c2-20260504_181207/tabddpm-c2-1382-20260504_181327.csv") +else: + print("[TabDDPM] WARNING: No output .npy files found") + sys.exit(1) diff --git a/hyperparameter/c2/tabddpm/tabddpm-c2-20260504_181207/_tabddpm_train.py b/hyperparameter/c2/tabddpm/tabddpm-c2-20260504_181207/_tabddpm_train.py new file mode 100644 index 0000000000000000000000000000000000000000..9930b28e955dff462191f2525b3a0fa738c7ca34 --- /dev/null +++ b/hyperparameter/c2/tabddpm/tabddpm-c2-20260504_181207/_tabddpm_train.py @@ -0,0 +1,32 @@ +import os, sys, subprocess + +tabddpm_root = "/workspace/tabddpm/code" +assert os.path.isdir(tabddpm_root), f"TabDDPM source not mounted: {tabddpm_root}" +env = os.environ.copy() +env["PYTHONPATH"] = tabddpm_root + (os.pathsep + env.get("PYTHONPATH", "")) + +# Write a wrapper that patches collections.Sequence (removed in Python 3.10+) +# before running pipeline.py - needed because skorch uses old API +wrapper = os.path.join(tabddpm_root, "_compat_run.py") +with open(wrapper, "w") as f: + f.write( + "import collections, collections.abc\n" + "for _a in ('Sequence','MutableSequence','MutableMapping','Mapping'," + "'MutableSet','Set','Callable','Iterable','Iterator'):\n" + " if not hasattr(collections, _a): setattr(collections, _a, getattr(collections.abc, _a, None))\n" + "import sys, runpy\n" + "sys.argv = sys.argv[1:]\n" + "runpy.run_path(sys.argv[0], run_name='__main__')\n" + ) + +print(f"[TabDDPM] Training, config=/work/output-Benchmark-trainonly-v1/c2/tabddpm/tabddpm-c2-20260504_181207/config.toml") +ret = subprocess.run( + [sys.executable, wrapper, "scripts/pipeline.py", + "--config", "/work/output-Benchmark-trainonly-v1/c2/tabddpm/tabddpm-c2-20260504_181207/config.toml", + "--train"], + cwd=tabddpm_root, + env=env +) +if ret.returncode != 0: + sys.exit(ret.returncode) +print("[TabDDPM] Training complete") diff --git a/hyperparameter/c2/tabddpm/tabddpm-c2-20260504_181207/config.toml b/hyperparameter/c2/tabddpm/tabddpm-c2-20260504_181207/config.toml new file mode 100644 index 0000000000000000000000000000000000000000..1f89e2e3f7a297157b784a249a11249eeb27c9d0 --- /dev/null +++ b/hyperparameter/c2/tabddpm/tabddpm-c2-20260504_181207/config.toml @@ -0,0 +1,39 @@ +seed = 0 +parent_dir = "/work/output-Benchmark-trainonly-v1/c2/tabddpm/tabddpm-c2-20260504_181207/output" +real_data_path = "/work/output-Benchmark-trainonly-v1/c2/tabddpm/tabddpm-c2-20260504_181207/data" +model_type = "mlp" +num_numerical_features = 0 +device = "cuda:0" + +[model_params] +d_in = 6 +num_classes = 4 +is_y_cond = true + +[model_params.rtdl_params] +d_layers = [256, 256] +dropout = 0.0 + +[diffusion_params] +num_timesteps = 1000 +gaussian_loss_type = "mse" + +[train.main] +steps = 5000 +lr = 0.001 +weight_decay = 0.0 +batch_size = 256 + +[train.T] +seed = 0 +normalization = "quantile" +num_nan_policy = "__none__" +cat_nan_policy = "__none__" +cat_min_frequency = "__none__" +cat_encoding = "__none__" +y_policy = "default" + +[sample] +num_samples = 1000 +batch_size = 256 +seed = 0 diff --git a/hyperparameter/c2/tabddpm/tabddpm-c2-20260504_181207/config_sample_20260504_181327_r0.toml b/hyperparameter/c2/tabddpm/tabddpm-c2-20260504_181207/config_sample_20260504_181327_r0.toml new file mode 100644 index 0000000000000000000000000000000000000000..6d926ececa1d9852eded91a9d1abf795c2056384 --- /dev/null +++ b/hyperparameter/c2/tabddpm/tabddpm-c2-20260504_181207/config_sample_20260504_181327_r0.toml @@ -0,0 +1,39 @@ +seed = 0 +parent_dir = "/work/output-Benchmark-trainonly-v1/c2/tabddpm/tabddpm-c2-20260504_181207/output" +real_data_path = "/work/output-Benchmark-trainonly-v1/c2/tabddpm/tabddpm-c2-20260504_181207/data" +model_type = "mlp" +num_numerical_features = 0 +device = "cuda:0" + +[model_params] +d_in = 6 +num_classes = 4 +is_y_cond = true + +[model_params.rtdl_params] +d_layers = [256, 256] +dropout = 0.0 + +[diffusion_params] +num_timesteps = 1000 +gaussian_loss_type = "mse" + +[train.main] +steps = 5000 +lr = 0.001 +weight_decay = 0.0 +batch_size = 256 + +[train.T] +seed = 0 +normalization = "quantile" +num_nan_policy = "__none__" +cat_nan_policy = "__none__" +cat_min_frequency = "__none__" +cat_encoding = "__none__" +y_policy = "default" + +[sample] +num_samples = 1382 +batch_size = 256 +seed = 0 diff --git a/hyperparameter/c2/tabddpm/tabddpm-c2-20260504_181207/data/X_cat_train.npy b/hyperparameter/c2/tabddpm/tabddpm-c2-20260504_181207/data/X_cat_train.npy new file mode 100644 index 0000000000000000000000000000000000000000..e99f1ae8dc9e7155e5c4bbbd3c2f3f7215c628f7 --- /dev/null +++ b/hyperparameter/c2/tabddpm/tabddpm-c2-20260504_181207/data/X_cat_train.npy @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:24d2203601ba060728920e754747e5a1dc3955a1b5775e147382fee4f1812542 +size 66464 diff --git a/hyperparameter/c2/tabddpm/tabddpm-c2-20260504_181207/data/info.json b/hyperparameter/c2/tabddpm/tabddpm-c2-20260504_181207/data/info.json new file mode 100644 index 0000000000000000000000000000000000000000..0f2b351a317260c450725d5a04373330ad3701a3 --- /dev/null +++ b/hyperparameter/c2/tabddpm/tabddpm-c2-20260504_181207/data/info.json @@ -0,0 +1,29 @@ +{ + "name": "benchmark_dataset", + "task_type": "multiclass", + "n_num_features": 0, + "n_cat_features": 6, + "train_size": 1382, + "num_col_idx": [], + "cat_col_idx": [ + 0, + 1, + 2, + 3, + 4, + 5 + ], + "target_col_idx": [ + 6 + ], + "column_names": [ + "buying", + "maint", + "doors", + "persons", + "lug_boot", + "safety", + "class" + ], + "num_classes": 4 +} \ No newline at end of file diff --git a/hyperparameter/c2/tabddpm/tabddpm-c2-20260504_181207/data/y_train.npy b/hyperparameter/c2/tabddpm/tabddpm-c2-20260504_181207/data/y_train.npy new file mode 100644 index 0000000000000000000000000000000000000000..8bfc8f9de7350657cd6411c55d2b9b87bea9c13a --- /dev/null +++ b/hyperparameter/c2/tabddpm/tabddpm-c2-20260504_181207/data/y_train.npy @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:3f8eb0b25043331a30fde5439f063eed59e7a76f45d7d102b9b4fbcd16b551b4 +size 11184 diff --git a/hyperparameter/c2/tabddpm/tabddpm-c2-20260504_181207/gen_20260504_181327_r0.log b/hyperparameter/c2/tabddpm/tabddpm-c2-20260504_181207/gen_20260504_181327_r0.log new file mode 100644 index 0000000000000000000000000000000000000000..877963b0fe6be73beadf40653b39c241200f7327 --- /dev/null +++ b/hyperparameter/c2/tabddpm/tabddpm-c2-20260504_181207/gen_20260504_181327_r0.log @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:b93d275fe4edebae555a0b578fb14998a7b5164eb5c79abe5b9d996cf4d671a9 +size 126462 diff --git a/hyperparameter/c2/tabddpm/tabddpm-c2-20260504_181207/input_snapshot.json b/hyperparameter/c2/tabddpm/tabddpm-c2-20260504_181207/input_snapshot.json new file mode 100644 index 0000000000000000000000000000000000000000..772021148f055243c89ddfd9b6fa388ee33d05ea --- /dev/null +++ b/hyperparameter/c2/tabddpm/tabddpm-c2-20260504_181207/input_snapshot.json @@ -0,0 +1,36 @@ +{ + "dataset_id": "c2", + "model": "tabddpm", + "inputs": { + "train_csv": { + "path": "/data/jialinzhang/SynthesizePipeline-server/DatasetNew/c2/c2-train.csv", + "exists": true, + "size": 42948, + "sha256": "17bc560fa96bd00fb3b526e1e65bc91210b701d0d0a4e8bb9b4c5196cab56def" + }, + "val_csv": { + "path": "/data/jialinzhang/SynthesizePipeline-server/DatasetNew/c2/c2-val.csv", + "exists": true, + "size": 5349, + "sha256": "61e565eca62e65a7dccd9d51039a3170413379e10fc494e25870e7c4294863c9" + }, + "test_csv": { + "path": "/data/jialinzhang/SynthesizePipeline-server/DatasetNew/c2/c2-test.csv", + "exists": true, + "size": 5448, + "sha256": "cbcbb062a1faf5fa44b66c80532baa229e05b94fc42137269761e6c6d84af20a" + }, + "profile_json": { + "path": "/data/jialinzhang/SynthesizePipeline-server/DatasetNew/artifacts/data_core/tabular/c2/c2-dataset_profile.json", + "exists": true, + "size": 3240, + "sha256": "526b7163b2076c93c0bf4638438081ee8a6907065d5b608faa40d1a3dbc2a27b" + }, + "contract_json": { + "path": "/data/jialinzhang/SynthesizePipeline-server/DatasetNew/artifacts/data_core/tabular/c2/c2-dataset_contract_v1.json", + "exists": true, + "size": 3731, + "sha256": "fb595a876054c2ee9b4e10cfe83a5691588de1d25466cbb9d473c18ad3604009" + } + } +} \ No newline at end of file diff --git a/hyperparameter/c2/tabddpm/tabddpm-c2-20260504_181207/output/X_cat_train.npy b/hyperparameter/c2/tabddpm/tabddpm-c2-20260504_181207/output/X_cat_train.npy new file mode 100644 index 0000000000000000000000000000000000000000..b8ce5b95bc8251728c835c81edbb5e6a6185d9c9 --- /dev/null +++ b/hyperparameter/c2/tabddpm/tabddpm-c2-20260504_181207/output/X_cat_train.npy @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:6e77f34c91b60cbce837540a3e08097ecb343703ce3d0246710819ef447e1d54 +size 16885 diff --git a/hyperparameter/c2/tabddpm/tabddpm-c2-20260504_181207/output/X_cat_unnorm.npy b/hyperparameter/c2/tabddpm/tabddpm-c2-20260504_181207/output/X_cat_unnorm.npy new file mode 100644 index 0000000000000000000000000000000000000000..7ea825ed64e038b9ddc5863f265a1cd55ca73819 --- /dev/null +++ b/hyperparameter/c2/tabddpm/tabddpm-c2-20260504_181207/output/X_cat_unnorm.npy @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:0c3584fe9ca4a1b527e84e477f6fd5695011f2223445495240a83d02ecb2075e +size 66464 diff --git a/hyperparameter/c2/tabddpm/tabddpm-c2-20260504_181207/output/config.toml b/hyperparameter/c2/tabddpm/tabddpm-c2-20260504_181207/output/config.toml new file mode 100644 index 0000000000000000000000000000000000000000..6d926ececa1d9852eded91a9d1abf795c2056384 --- /dev/null +++ b/hyperparameter/c2/tabddpm/tabddpm-c2-20260504_181207/output/config.toml @@ -0,0 +1,39 @@ +seed = 0 +parent_dir = "/work/output-Benchmark-trainonly-v1/c2/tabddpm/tabddpm-c2-20260504_181207/output" +real_data_path = "/work/output-Benchmark-trainonly-v1/c2/tabddpm/tabddpm-c2-20260504_181207/data" +model_type = "mlp" +num_numerical_features = 0 +device = "cuda:0" + +[model_params] +d_in = 6 +num_classes = 4 +is_y_cond = true + +[model_params.rtdl_params] +d_layers = [256, 256] +dropout = 0.0 + +[diffusion_params] +num_timesteps = 1000 +gaussian_loss_type = "mse" + +[train.main] +steps = 5000 +lr = 0.001 +weight_decay = 0.0 +batch_size = 256 + +[train.T] +seed = 0 +normalization = "quantile" +num_nan_policy = "__none__" +cat_nan_policy = "__none__" +cat_min_frequency = "__none__" +cat_encoding = "__none__" +y_policy = "default" + +[sample] +num_samples = 1382 +batch_size = 256 +seed = 0 diff --git a/hyperparameter/c2/tabddpm/tabddpm-c2-20260504_181207/output/info.json b/hyperparameter/c2/tabddpm/tabddpm-c2-20260504_181207/output/info.json new file mode 100644 index 0000000000000000000000000000000000000000..0f2b351a317260c450725d5a04373330ad3701a3 --- /dev/null +++ b/hyperparameter/c2/tabddpm/tabddpm-c2-20260504_181207/output/info.json @@ -0,0 +1,29 @@ +{ + "name": "benchmark_dataset", + "task_type": "multiclass", + "n_num_features": 0, + "n_cat_features": 6, + "train_size": 1382, + "num_col_idx": [], + "cat_col_idx": [ + 0, + 1, + 2, + 3, + 4, + 5 + ], + "target_col_idx": [ + 6 + ], + "column_names": [ + "buying", + "maint", + "doors", + "persons", + "lug_boot", + "safety", + "class" + ], + "num_classes": 4 +} \ No newline at end of file diff --git a/hyperparameter/c2/tabddpm/tabddpm-c2-20260504_181207/output/loss.csv b/hyperparameter/c2/tabddpm/tabddpm-c2-20260504_181207/output/loss.csv new file mode 100644 index 0000000000000000000000000000000000000000..5f996a25328bdaab56049c4f49f7567d240eace0 --- /dev/null +++ b/hyperparameter/c2/tabddpm/tabddpm-c2-20260504_181207/output/loss.csv @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:35ec4ea19e9311190f8c430e41ae865decb12a205a13591d7f3d008db462406e +size 1251 diff --git a/hyperparameter/c2/tabddpm/tabddpm-c2-20260504_181207/output/model.pt b/hyperparameter/c2/tabddpm/tabddpm-c2-20260504_181207/output/model.pt new file mode 100644 index 0000000000000000000000000000000000000000..b80bbad06939fc0ead1b779678d99d473f5b2074 --- /dev/null +++ b/hyperparameter/c2/tabddpm/tabddpm-c2-20260504_181207/output/model.pt @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:e5354cbe787b33e8d9ec39f348ab76a760a7bcf5359143c2cb10cb84c72c79c0 +size 566934 diff --git a/hyperparameter/c2/tabddpm/tabddpm-c2-20260504_181207/output/model_ema.pt b/hyperparameter/c2/tabddpm/tabddpm-c2-20260504_181207/output/model_ema.pt new file mode 100644 index 0000000000000000000000000000000000000000..348701ed22a7b54c87bcf068ba681a3b7d763b59 --- /dev/null +++ b/hyperparameter/c2/tabddpm/tabddpm-c2-20260504_181207/output/model_ema.pt @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:a111267f57c5e1493761867d6869283240e2c0499acd84e32bf616126181ca68 +size 567778 diff --git a/hyperparameter/c2/tabddpm/tabddpm-c2-20260504_181207/output/y_train.npy b/hyperparameter/c2/tabddpm/tabddpm-c2-20260504_181207/output/y_train.npy new file mode 100644 index 0000000000000000000000000000000000000000..aa9afff4d061333b18828274b1072d1b884f162c --- /dev/null +++ b/hyperparameter/c2/tabddpm/tabddpm-c2-20260504_181207/output/y_train.npy @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:58b1a722d369027a22bed702e3539c6fefa976741570c4c0a2f8546e2978c3d7 +size 11184 diff --git a/hyperparameter/c2/tabddpm/tabddpm-c2-20260504_181207/public_gate/normalized_schema_snapshot.json b/hyperparameter/c2/tabddpm/tabddpm-c2-20260504_181207/public_gate/normalized_schema_snapshot.json new file mode 100644 index 0000000000000000000000000000000000000000..689b1d00d96508e44ba40e58dc4560e19afc2b3b --- /dev/null +++ b/hyperparameter/c2/tabddpm/tabddpm-c2-20260504_181207/public_gate/normalized_schema_snapshot.json @@ -0,0 +1,144 @@ +{ + "dataset_id": "c2", + "target_column": "class", + "task_type": "classification", + "columns": [ + { + "name": "buying", + "role": "feature", + "semantic_type": "categorical", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 4, + "unique_ratio": 0.002894, + "example_values": [ + "vhigh", + "med", + "high", + "low" + ] + } + }, + { + "name": "maint", + "role": "feature", + "semantic_type": "categorical", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 4, + "unique_ratio": 0.002894, + "example_values": [ + "vhigh", + "low", + "med", + "high" + ] + } + }, + { + "name": "doors", + "role": "feature", + "semantic_type": "categorical", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 4, + "unique_ratio": 0.002894, + "example_values": [ + "2", + "5more", + "3", + "4" + ] + } + }, + { + "name": "persons", + "role": "feature", + "semantic_type": "categorical", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 3, + "unique_ratio": 0.002171, + "example_values": [ + "2", + "4", + "more" + ] + } + }, + { + "name": "lug_boot", + "role": "feature", + "semantic_type": "categorical", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 3, + "unique_ratio": 0.002171, + "example_values": [ + "small", + "big", + "med" + ] + } + }, + { + "name": "safety", + "role": "feature", + "semantic_type": "categorical", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 3, + "unique_ratio": 0.002171, + "example_values": [ + "low", + "high", + "med" + ] + } + }, + { + "name": "class", + "role": "target", + "semantic_type": "categorical", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 4, + "unique_ratio": 0.002894, + "example_values": [ + "unacc", + "good", + "acc", + "vgood" + ] + } + } + ] +} \ No newline at end of file diff --git a/hyperparameter/c2/tabddpm/tabddpm-c2-20260504_181207/public_gate/public_gate_report.json b/hyperparameter/c2/tabddpm/tabddpm-c2-20260504_181207/public_gate/public_gate_report.json new file mode 100644 index 0000000000000000000000000000000000000000..2e4cdcb2a4e28e40d59b17a83e773f622b7636a5 --- /dev/null +++ b/hyperparameter/c2/tabddpm/tabddpm-c2-20260504_181207/public_gate/public_gate_report.json @@ -0,0 +1,37 @@ +{ + "dataset_id": "c2", + "status": "pass", + "checks": [ + { + "check_id": "PG001_csv_parse_ok", + "status": "pass" + }, + { + "check_id": "PG002_split_header_consistent", + "status": "pass" + }, + { + "check_id": "PG003_profile_header_match", + "status": "pass" + }, + { + "check_id": "PG004_missing_token_normalized", + "status": "pass" + }, + { + "check_id": "PG005_semantic_type_validated", + "status": "pass" + }, + { + "check_id": "PG006_target_defined_and_valid", + "status": "pass" + } + ], + "target_column": "class", + "task_type": "classification", + "input_splits": { + "train": "/data/jialinzhang/SynthesizePipeline-server/DatasetNew/c2/c2-train.csv", + "val": "/data/jialinzhang/SynthesizePipeline-server/DatasetNew/c2/c2-val.csv", + "test": "/data/jialinzhang/SynthesizePipeline-server/DatasetNew/c2/c2-test.csv" + } +} \ No newline at end of file diff --git a/hyperparameter/c2/tabddpm/tabddpm-c2-20260504_181207/public_gate/staged_input_manifest.json b/hyperparameter/c2/tabddpm/tabddpm-c2-20260504_181207/public_gate/staged_input_manifest.json new file mode 100644 index 0000000000000000000000000000000000000000..127403f620cb634ba0d979d9eb9e26ec4ffbbec5 --- /dev/null +++ b/hyperparameter/c2/tabddpm/tabddpm-c2-20260504_181207/public_gate/staged_input_manifest.json @@ -0,0 +1,149 @@ +{ + "dataset_id": "c2", + "target_column": "class", + "task_type": "classification", + "train_csv": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/c2/tabddpm/tabddpm-c2-20260504_181207/staged/public/train.csv", + "val_csv": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/c2/tabddpm/tabddpm-c2-20260504_181207/staged/public/val.csv", + "test_csv": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/c2/tabddpm/tabddpm-c2-20260504_181207/staged/public/test.csv", + "features_json": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/c2/tabddpm/tabddpm-c2-20260504_181207/staged/public/staged_features.json", + "public_gate_report": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/c2/tabddpm/tabddpm-c2-20260504_181207/public_gate/public_gate_report.json", + "column_schema": [ + { + "name": "buying", + "role": "feature", + "semantic_type": "categorical", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 4, + "unique_ratio": 0.002894, + "example_values": [ + "vhigh", + "med", + "high", + "low" + ] + } + }, + { + "name": "maint", + "role": "feature", + "semantic_type": "categorical", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 4, + "unique_ratio": 0.002894, + "example_values": [ + "vhigh", + "low", + "med", + "high" + ] + } + }, + { + "name": "doors", + "role": "feature", + "semantic_type": "categorical", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 4, + "unique_ratio": 0.002894, + "example_values": [ + "2", + "5more", + "3", + "4" + ] + } + }, + { + "name": "persons", + "role": "feature", + "semantic_type": "categorical", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 3, + "unique_ratio": 0.002171, + "example_values": [ + "2", + "4", + "more" + ] + } + }, + { + "name": "lug_boot", + "role": "feature", + "semantic_type": "categorical", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 3, + "unique_ratio": 0.002171, + "example_values": [ + "small", + "big", + "med" + ] + } + }, + { + "name": "safety", + "role": "feature", + "semantic_type": "categorical", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 3, + "unique_ratio": 0.002171, + "example_values": [ + "low", + "high", + "med" + ] + } + }, + { + "name": "class", + "role": "target", + "semantic_type": "categorical", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 4, + "unique_ratio": 0.002894, + "example_values": [ + "unacc", + "good", + "acc", + "vgood" + ] + } + } + ] +} \ No newline at end of file diff --git a/hyperparameter/c2/tabddpm/tabddpm-c2-20260504_181207/run_config.json b/hyperparameter/c2/tabddpm/tabddpm-c2-20260504_181207/run_config.json new file mode 100644 index 0000000000000000000000000000000000000000..21a9ca17affe1adccda08c2ca47f2bde5abd323b --- /dev/null +++ b/hyperparameter/c2/tabddpm/tabddpm-c2-20260504_181207/run_config.json @@ -0,0 +1,45 @@ +{ + "schema_version": 1, + "recorded_at": "2026-05-04T18:12:07", + "dataset_id": "c2", + "model": "tabddpm", + "work_dir": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/c2/tabddpm/tabddpm-c2-20260504_181207", + "dataset_source_requested": "new", + "dataset_source_resolved": "new", + "cli_args": { + "model": "tabddpm", + "dataset": "c2", + "dataset_source": "new", + "train": true, + "generate": true, + "num_rows": 0, + "epochs": null, + "output_dir": null, + "model_dir": null, + "work_dir": null, + "resume": false, + "no_stats": false + }, + "resolved": { + "num_rows": 1382, + "model_path": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/c2/tabddpm/tabddpm-c2-20260504_181207", + "output_csv": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/c2/tabddpm/tabddpm-c2-20260504_181207/tabddpm-c2-1382-20260504_181327.csv" + }, + "input_artifacts": { + "public_gate_report": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/c2/tabddpm/tabddpm-c2-20260504_181207/public_gate/public_gate_report.json", + "public_manifest": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/c2/tabddpm/tabddpm-c2-20260504_181207/public_gate/staged_input_manifest.json", + "model_manifest": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/c2/tabddpm/tabddpm-c2-20260504_181207/staged/tabddpm/model_input_manifest.json", + "train_csv": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/c2/tabddpm/tabddpm-c2-20260504_181207/staged/public/train.csv", + "features_json": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/c2/tabddpm/tabddpm-c2-20260504_181207/staged/public/staged_features.json", + "target_column": "class", + "task_type": "classification" + }, + "env_overrides": { + "BENCHMARK_TABDDPM_GPUS": "device=3", + "TABDDPM_NUM_TIMESTEPS": "1000", + "TABDDPM_SAMPLE_BATCH_SIZE": "256", + "TABDDPM_STEPS_PER_EPOCH": "100", + "TABDDPM_TRAIN_BATCH_SIZE": "256", + "TABDDPM_TRAIN_LR": "0.001" + } +} \ No newline at end of file diff --git a/hyperparameter/c2/tabddpm/tabddpm-c2-20260504_181207/runtime_result.json b/hyperparameter/c2/tabddpm/tabddpm-c2-20260504_181207/runtime_result.json new file mode 100644 index 0000000000000000000000000000000000000000..700458f9cff846eff69a5a3a7fcfd418fc79b27c --- /dev/null +++ b/hyperparameter/c2/tabddpm/tabddpm-c2-20260504_181207/runtime_result.json @@ -0,0 +1,27 @@ +{ + "dataset_id": "c2", + "model": "tabddpm", + "run_id": "tabddpm-c2-20260504_181207", + "public_gate_status": "pass", + "adapter_ready_status": "pass", + "train_status": "success", + "generate_status": "success", + "reason_code": null, + "reason_detail": null, + "artifacts": { + "synthetic_csv": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/c2/tabddpm/tabddpm-c2-20260504_181207/tabddpm-c2-1382-20260504_181327.csv", + "model_path": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/c2/tabddpm/tabddpm-c2-20260504_181207" + }, + "timings": { + "train": { + "started_at": "2026-05-04T18:12:07", + "ended_at": "2026-05-04T18:13:27", + "duration_sec": 80.183 + }, + "generate": { + "started_at": "2026-05-04T18:13:27", + "ended_at": "2026-05-04T18:14:13", + "duration_sec": 45.511 + } + } +} \ No newline at end of file diff --git a/hyperparameter/c2/tabddpm/tabddpm-c2-20260504_181207/staged/public/staged_features.json b/hyperparameter/c2/tabddpm/tabddpm-c2-20260504_181207/staged/public/staged_features.json new file mode 100644 index 0000000000000000000000000000000000000000..61783861dd5de501592f76acb0469cf3f3b2622a --- /dev/null +++ b/hyperparameter/c2/tabddpm/tabddpm-c2-20260504_181207/staged/public/staged_features.json @@ -0,0 +1,37 @@ +[ + { + "feature_name": "buying", + "data_type": "categorical", + "is_target": false + }, + { + "feature_name": "maint", + "data_type": "categorical", + "is_target": false + }, + { + "feature_name": "doors", + "data_type": "categorical", + "is_target": false + }, + { + "feature_name": "persons", + "data_type": "categorical", + "is_target": false + }, + { + "feature_name": "lug_boot", + "data_type": "categorical", + "is_target": false + }, + { + "feature_name": "safety", + "data_type": "categorical", + "is_target": false + }, + { + "feature_name": "class", + "data_type": "categorical", + "is_target": true + } +] \ No newline at end of file diff --git a/hyperparameter/c2/tabddpm/tabddpm-c2-20260504_181207/staged/public/test.csv b/hyperparameter/c2/tabddpm/tabddpm-c2-20260504_181207/staged/public/test.csv new file mode 100644 index 0000000000000000000000000000000000000000..392a0d7189a34d8f13ecf20a99d64b03230d517c --- /dev/null +++ b/hyperparameter/c2/tabddpm/tabddpm-c2-20260504_181207/staged/public/test.csv @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:b48114a7d0bc5bd9a07920f903c8d4aba8bf98bf2a66a050da03588b0245ca73 +size 5273 diff --git a/hyperparameter/c2/tabddpm/tabddpm-c2-20260504_181207/staged/public/train.csv b/hyperparameter/c2/tabddpm/tabddpm-c2-20260504_181207/staged/public/train.csv new file mode 100644 index 0000000000000000000000000000000000000000..da4f4d55134eebc0e51157d0d467536371db1484 --- /dev/null +++ b/hyperparameter/c2/tabddpm/tabddpm-c2-20260504_181207/staged/public/train.csv @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:4aed00c2c2b3f88a55a7ebff31b2e1b5e0e32fb0a7267e0b9d2779cd23e434dd +size 41565 diff --git a/hyperparameter/c2/tabddpm/tabddpm-c2-20260504_181207/staged/public/val.csv b/hyperparameter/c2/tabddpm/tabddpm-c2-20260504_181207/staged/public/val.csv new file mode 100644 index 0000000000000000000000000000000000000000..af8caf7ee42524188534a3daf32996dc491952d9 --- /dev/null +++ b/hyperparameter/c2/tabddpm/tabddpm-c2-20260504_181207/staged/public/val.csv @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:26e90c1170a57a14c05832ac88027722b1f3848f9662c7c09ef7c93dcba4cc01 +size 5176 diff --git a/hyperparameter/c2/tabddpm/tabddpm-c2-20260504_181207/staged/tabddpm/adapter_report.json b/hyperparameter/c2/tabddpm/tabddpm-c2-20260504_181207/staged/tabddpm/adapter_report.json new file mode 100644 index 0000000000000000000000000000000000000000..39ceea716a5a35040872974d2eb66c6003d74991 --- /dev/null +++ b/hyperparameter/c2/tabddpm/tabddpm-c2-20260504_181207/staged/tabddpm/adapter_report.json @@ -0,0 +1,7 @@ +{ + "adapter_ready_status": "pass", + "adapter_fail_reason_code": null, + "adapter_fail_detail": null, + "adapter_transforms_applied": [], + "model_input_manifest": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/c2/tabddpm/tabddpm-c2-20260504_181207/staged/tabddpm/model_input_manifest.json" +} \ No newline at end of file diff --git a/hyperparameter/c2/tabddpm/tabddpm-c2-20260504_181207/staged/tabddpm/adapter_transforms_applied.json b/hyperparameter/c2/tabddpm/tabddpm-c2-20260504_181207/staged/tabddpm/adapter_transforms_applied.json new file mode 100644 index 0000000000000000000000000000000000000000..0637a088a01e8ddab3bf3fa98dbe804cbde1a0dc --- /dev/null +++ b/hyperparameter/c2/tabddpm/tabddpm-c2-20260504_181207/staged/tabddpm/adapter_transforms_applied.json @@ -0,0 +1 @@ +[] \ No newline at end of file diff --git a/hyperparameter/c2/tabddpm/tabddpm-c2-20260504_181207/staged/tabddpm/model_input_manifest.json b/hyperparameter/c2/tabddpm/tabddpm-c2-20260504_181207/staged/tabddpm/model_input_manifest.json new file mode 100644 index 0000000000000000000000000000000000000000..d57fd598a635f3eeb37458528e10312eaea20fc9 --- /dev/null +++ b/hyperparameter/c2/tabddpm/tabddpm-c2-20260504_181207/staged/tabddpm/model_input_manifest.json @@ -0,0 +1,151 @@ +{ + "dataset_id": "c2", + "model": "tabddpm", + "target_column": "class", + "task_type": "classification", + "column_schema": [ + { + "name": "buying", + "role": "feature", + "semantic_type": "categorical", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 4, + "unique_ratio": 0.002894, + "example_values": [ + "vhigh", + "med", + "high", + "low" + ] + } + }, + { + "name": "maint", + "role": "feature", + "semantic_type": "categorical", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 4, + "unique_ratio": 0.002894, + "example_values": [ + "vhigh", + "low", + "med", + "high" + ] + } + }, + { + "name": "doors", + "role": "feature", + "semantic_type": "categorical", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 4, + "unique_ratio": 0.002894, + "example_values": [ + "2", + "5more", + "3", + "4" + ] + } + }, + { + "name": "persons", + "role": "feature", + "semantic_type": "categorical", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 3, + "unique_ratio": 0.002171, + "example_values": [ + "2", + "4", + "more" + ] + } + }, + { + "name": "lug_boot", + "role": "feature", + "semantic_type": "categorical", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 3, + "unique_ratio": 0.002171, + "example_values": [ + "small", + "big", + "med" + ] + } + }, + { + "name": "safety", + "role": "feature", + "semantic_type": "categorical", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 3, + "unique_ratio": 0.002171, + "example_values": [ + "low", + "high", + "med" + ] + } + }, + { + "name": "class", + "role": "target", + "semantic_type": "categorical", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 4, + "unique_ratio": 0.002894, + "example_values": [ + "unacc", + "good", + "acc", + "vgood" + ] + } + } + ], + "public_manifest": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/c2/tabddpm/tabddpm-c2-20260504_181207/public_gate/staged_input_manifest.json", + "train_csv": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/c2/tabddpm/tabddpm-c2-20260504_181207/staged/public/train.csv", + "val_csv": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/c2/tabddpm/tabddpm-c2-20260504_181207/staged/public/val.csv", + "test_csv": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/c2/tabddpm/tabddpm-c2-20260504_181207/staged/public/test.csv", + "features_json": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/c2/tabddpm/tabddpm-c2-20260504_181207/staged/public/staged_features.json", + "public_gate_report": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/c2/tabddpm/tabddpm-c2-20260504_181207/public_gate/public_gate_report.json" +} \ No newline at end of file diff --git a/hyperparameter/c2/tabddpm/tabddpm-c2-20260504_181207/tabddpm-c2-1382-20260504_181327.csv b/hyperparameter/c2/tabddpm/tabddpm-c2-20260504_181207/tabddpm-c2-1382-20260504_181327.csv new file mode 100644 index 0000000000000000000000000000000000000000..a735ab2dad04a579c9f5d5388a4fa8ac2c1ece91 --- /dev/null +++ b/hyperparameter/c2/tabddpm/tabddpm-c2-20260504_181207/tabddpm-c2-1382-20260504_181327.csv @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:3ef7b04421aefbad10890e4ab781f979634cee232355d0c0fa801837604385a7 +size 38745 diff --git a/hyperparameter/c2/tabddpm/tabddpm-c2-20260504_181207/train_20260504_181207.log b/hyperparameter/c2/tabddpm/tabddpm-c2-20260504_181207/train_20260504_181207.log new file mode 100644 index 0000000000000000000000000000000000000000..1a69546b543fcdb5aad504909aefe195ec2cdd07 --- /dev/null +++ b/hyperparameter/c2/tabddpm/tabddpm-c2-20260504_181207/train_20260504_181207.log @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:c43a64728eefff6ad798ad80865649a2403c1ec2aeda34c198141392ff04fb7a +size 1078 diff --git a/hyperparameter/c2/tabddpm/tabddpm-c2-20260504_181426/_tabddpm_sample_r0.py b/hyperparameter/c2/tabddpm/tabddpm-c2-20260504_181426/_tabddpm_sample_r0.py new file mode 100644 index 0000000000000000000000000000000000000000..5a16b29418ff5da85d9d6ffe0a450311be1c247e --- /dev/null +++ b/hyperparameter/c2/tabddpm/tabddpm-c2-20260504_181426/_tabddpm_sample_r0.py @@ -0,0 +1,66 @@ +import os, sys, subprocess, json +import numpy as np +import pandas as pd + +tabddpm_root = "/workspace/tabddpm/code" +assert os.path.isdir(tabddpm_root), f"TabDDPM source not mounted: {tabddpm_root}" +env = os.environ.copy() +env["PYTHONPATH"] = tabddpm_root + (os.pathsep + env.get("PYTHONPATH", "")) + +# Reuse the compat wrapper (patches collections.Sequence for skorch) +wrapper = os.path.join(tabddpm_root, "_compat_run.py") +if not os.path.exists(wrapper): + with open(wrapper, "w") as f: + f.write( + "import collections, collections.abc\n" + "for _a in ('Sequence','MutableSequence','MutableMapping','Mapping'," + "'MutableSet','Set','Callable','Iterable','Iterator'):\n" + " if not hasattr(collections, _a): setattr(collections, _a, getattr(collections.abc, _a, None))\n" + "import sys, runpy\n" + "sys.argv = sys.argv[1:]\n" + "runpy.run_path(sys.argv[0], run_name='__main__')\n" + ) + +print(f"[TabDDPM] Sampling 1382 rows") +ret = subprocess.run( + [sys.executable, wrapper, "scripts/pipeline.py", + "--config", "/work/output-Benchmark-trainonly-v1/c2/tabddpm/tabddpm-c2-20260504_181426/config_sample_20260504_181619_r0.toml", + "--sample"], + cwd=tabddpm_root, + env=env +) +if ret.returncode != 0: + sys.exit(ret.returncode) + +# 将 .npy 输出转为 CSV(npy 在 TabDDPM 的 parent_dir,即 npy_dir) +info_path = "/work/output-Benchmark-trainonly-v1/c2/tabddpm/tabddpm-c2-20260504_181426/data/info.json" +with open(info_path) as f: + info = json.load(f) + +output_dir = "/work/output-Benchmark-trainonly-v1/c2/tabddpm/tabddpm-c2-20260504_181426/output" +col_names = info.get("column_names", []) + +parts = [] +x_num_path = os.path.join(output_dir, "X_num_train.npy") +x_cat_path = os.path.join(output_dir, "X_cat_train.npy") +y_path = os.path.join(output_dir, "y_train.npy") + +if os.path.exists(x_num_path): + parts.append(np.load(x_num_path, allow_pickle=True)) +if os.path.exists(x_cat_path): + parts.append(np.load(x_cat_path, allow_pickle=True).astype(float)) +if os.path.exists(y_path): + y = np.load(y_path, allow_pickle=True) + parts.append(y.reshape(-1, 1) if y.ndim == 1 else y) + +if parts: + combined = np.concatenate(parts, axis=1) + if col_names and len(col_names) == combined.shape[1]: + df = pd.DataFrame(combined, columns=col_names) + else: + df = pd.DataFrame(combined) + df.to_csv("/work/output-Benchmark-trainonly-v1/c2/tabddpm/tabddpm-c2-20260504_181426/tabddpm-c2-1382-20260504_181619.csv", index=False) + print(f"[TabDDPM] Saved {len(df)} rows -> /work/output-Benchmark-trainonly-v1/c2/tabddpm/tabddpm-c2-20260504_181426/tabddpm-c2-1382-20260504_181619.csv") +else: + print("[TabDDPM] WARNING: No output .npy files found") + sys.exit(1) diff --git a/hyperparameter/c2/tabddpm/tabddpm-c2-20260504_181426/_tabddpm_train.py b/hyperparameter/c2/tabddpm/tabddpm-c2-20260504_181426/_tabddpm_train.py new file mode 100644 index 0000000000000000000000000000000000000000..d4834766323d6d9515c49b424744ab120378239f --- /dev/null +++ b/hyperparameter/c2/tabddpm/tabddpm-c2-20260504_181426/_tabddpm_train.py @@ -0,0 +1,32 @@ +import os, sys, subprocess + +tabddpm_root = "/workspace/tabddpm/code" +assert os.path.isdir(tabddpm_root), f"TabDDPM source not mounted: {tabddpm_root}" +env = os.environ.copy() +env["PYTHONPATH"] = tabddpm_root + (os.pathsep + env.get("PYTHONPATH", "")) + +# Write a wrapper that patches collections.Sequence (removed in Python 3.10+) +# before running pipeline.py - needed because skorch uses old API +wrapper = os.path.join(tabddpm_root, "_compat_run.py") +with open(wrapper, "w") as f: + f.write( + "import collections, collections.abc\n" + "for _a in ('Sequence','MutableSequence','MutableMapping','Mapping'," + "'MutableSet','Set','Callable','Iterable','Iterator'):\n" + " if not hasattr(collections, _a): setattr(collections, _a, getattr(collections.abc, _a, None))\n" + "import sys, runpy\n" + "sys.argv = sys.argv[1:]\n" + "runpy.run_path(sys.argv[0], run_name='__main__')\n" + ) + +print(f"[TabDDPM] Training, config=/work/output-Benchmark-trainonly-v1/c2/tabddpm/tabddpm-c2-20260504_181426/config.toml") +ret = subprocess.run( + [sys.executable, wrapper, "scripts/pipeline.py", + "--config", "/work/output-Benchmark-trainonly-v1/c2/tabddpm/tabddpm-c2-20260504_181426/config.toml", + "--train"], + cwd=tabddpm_root, + env=env +) +if ret.returncode != 0: + sys.exit(ret.returncode) +print("[TabDDPM] Training complete") diff --git a/hyperparameter/c2/tabddpm/tabddpm-c2-20260504_181426/config.toml b/hyperparameter/c2/tabddpm/tabddpm-c2-20260504_181426/config.toml new file mode 100644 index 0000000000000000000000000000000000000000..2ec35ddb65f513901010a60b35f6ad75a88213dd --- /dev/null +++ b/hyperparameter/c2/tabddpm/tabddpm-c2-20260504_181426/config.toml @@ -0,0 +1,39 @@ +seed = 0 +parent_dir = "/work/output-Benchmark-trainonly-v1/c2/tabddpm/tabddpm-c2-20260504_181426/output" +real_data_path = "/work/output-Benchmark-trainonly-v1/c2/tabddpm/tabddpm-c2-20260504_181426/data" +model_type = "mlp" +num_numerical_features = 0 +device = "cuda:0" + +[model_params] +d_in = 6 +num_classes = 4 +is_y_cond = true + +[model_params.rtdl_params] +d_layers = [256, 256] +dropout = 0.0 + +[diffusion_params] +num_timesteps = 1000 +gaussian_loss_type = "mse" + +[train.main] +steps = 8000 +lr = 0.0005 +weight_decay = 0.0 +batch_size = 128 + +[train.T] +seed = 0 +normalization = "quantile" +num_nan_policy = "__none__" +cat_nan_policy = "__none__" +cat_min_frequency = "__none__" +cat_encoding = "__none__" +y_policy = "default" + +[sample] +num_samples = 1000 +batch_size = 128 +seed = 0 diff --git a/hyperparameter/c2/tabddpm/tabddpm-c2-20260504_181426/config_sample_20260504_181619_r0.toml b/hyperparameter/c2/tabddpm/tabddpm-c2-20260504_181426/config_sample_20260504_181619_r0.toml new file mode 100644 index 0000000000000000000000000000000000000000..d552d0b7eb6a370ebb22fe960c5759ecfd13c09f --- /dev/null +++ b/hyperparameter/c2/tabddpm/tabddpm-c2-20260504_181426/config_sample_20260504_181619_r0.toml @@ -0,0 +1,39 @@ +seed = 0 +parent_dir = "/work/output-Benchmark-trainonly-v1/c2/tabddpm/tabddpm-c2-20260504_181426/output" +real_data_path = "/work/output-Benchmark-trainonly-v1/c2/tabddpm/tabddpm-c2-20260504_181426/data" +model_type = "mlp" +num_numerical_features = 0 +device = "cuda:0" + +[model_params] +d_in = 6 +num_classes = 4 +is_y_cond = true + +[model_params.rtdl_params] +d_layers = [256, 256] +dropout = 0.0 + +[diffusion_params] +num_timesteps = 1000 +gaussian_loss_type = "mse" + +[train.main] +steps = 8000 +lr = 0.0005 +weight_decay = 0.0 +batch_size = 128 + +[train.T] +seed = 0 +normalization = "quantile" +num_nan_policy = "__none__" +cat_nan_policy = "__none__" +cat_min_frequency = "__none__" +cat_encoding = "__none__" +y_policy = "default" + +[sample] +num_samples = 1382 +batch_size = 128 +seed = 0 diff --git a/hyperparameter/c2/tabddpm/tabddpm-c2-20260504_181426/data/X_cat_train.npy b/hyperparameter/c2/tabddpm/tabddpm-c2-20260504_181426/data/X_cat_train.npy new file mode 100644 index 0000000000000000000000000000000000000000..e99f1ae8dc9e7155e5c4bbbd3c2f3f7215c628f7 --- /dev/null +++ b/hyperparameter/c2/tabddpm/tabddpm-c2-20260504_181426/data/X_cat_train.npy @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:24d2203601ba060728920e754747e5a1dc3955a1b5775e147382fee4f1812542 +size 66464 diff --git a/hyperparameter/c2/tabddpm/tabddpm-c2-20260504_181426/data/info.json b/hyperparameter/c2/tabddpm/tabddpm-c2-20260504_181426/data/info.json new file mode 100644 index 0000000000000000000000000000000000000000..0f2b351a317260c450725d5a04373330ad3701a3 --- /dev/null +++ b/hyperparameter/c2/tabddpm/tabddpm-c2-20260504_181426/data/info.json @@ -0,0 +1,29 @@ +{ + "name": "benchmark_dataset", + "task_type": "multiclass", + "n_num_features": 0, + "n_cat_features": 6, + "train_size": 1382, + "num_col_idx": [], + "cat_col_idx": [ + 0, + 1, + 2, + 3, + 4, + 5 + ], + "target_col_idx": [ + 6 + ], + "column_names": [ + "buying", + "maint", + "doors", + "persons", + "lug_boot", + "safety", + "class" + ], + "num_classes": 4 +} \ No newline at end of file diff --git a/hyperparameter/c2/tabddpm/tabddpm-c2-20260504_181426/data/y_train.npy b/hyperparameter/c2/tabddpm/tabddpm-c2-20260504_181426/data/y_train.npy new file mode 100644 index 0000000000000000000000000000000000000000..8bfc8f9de7350657cd6411c55d2b9b87bea9c13a --- /dev/null +++ b/hyperparameter/c2/tabddpm/tabddpm-c2-20260504_181426/data/y_train.npy @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:3f8eb0b25043331a30fde5439f063eed59e7a76f45d7d102b9b4fbcd16b551b4 +size 11184 diff --git a/hyperparameter/c2/tabddpm/tabddpm-c2-20260504_181426/gen_20260504_181619_r0.log b/hyperparameter/c2/tabddpm/tabddpm-c2-20260504_181426/gen_20260504_181619_r0.log new file mode 100644 index 0000000000000000000000000000000000000000..db01ea644b3b0792f6c2c4b77262ae9acad186be --- /dev/null +++ b/hyperparameter/c2/tabddpm/tabddpm-c2-20260504_181426/gen_20260504_181619_r0.log @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:83317c90c84b3a89b520ba38e3b60a65d80ab88d319c545dfa9eff3c6ad87c86 +size 231462 diff --git a/hyperparameter/c2/tabddpm/tabddpm-c2-20260504_181426/input_snapshot.json b/hyperparameter/c2/tabddpm/tabddpm-c2-20260504_181426/input_snapshot.json new file mode 100644 index 0000000000000000000000000000000000000000..772021148f055243c89ddfd9b6fa388ee33d05ea --- /dev/null +++ b/hyperparameter/c2/tabddpm/tabddpm-c2-20260504_181426/input_snapshot.json @@ -0,0 +1,36 @@ +{ + "dataset_id": "c2", + "model": "tabddpm", + "inputs": { + "train_csv": { + "path": "/data/jialinzhang/SynthesizePipeline-server/DatasetNew/c2/c2-train.csv", + "exists": true, + "size": 42948, + "sha256": "17bc560fa96bd00fb3b526e1e65bc91210b701d0d0a4e8bb9b4c5196cab56def" + }, + "val_csv": { + "path": "/data/jialinzhang/SynthesizePipeline-server/DatasetNew/c2/c2-val.csv", + "exists": true, + "size": 5349, + "sha256": "61e565eca62e65a7dccd9d51039a3170413379e10fc494e25870e7c4294863c9" + }, + "test_csv": { + "path": "/data/jialinzhang/SynthesizePipeline-server/DatasetNew/c2/c2-test.csv", + "exists": true, + "size": 5448, + "sha256": "cbcbb062a1faf5fa44b66c80532baa229e05b94fc42137269761e6c6d84af20a" + }, + "profile_json": { + "path": "/data/jialinzhang/SynthesizePipeline-server/DatasetNew/artifacts/data_core/tabular/c2/c2-dataset_profile.json", + "exists": true, + "size": 3240, + "sha256": "526b7163b2076c93c0bf4638438081ee8a6907065d5b608faa40d1a3dbc2a27b" + }, + "contract_json": { + "path": "/data/jialinzhang/SynthesizePipeline-server/DatasetNew/artifacts/data_core/tabular/c2/c2-dataset_contract_v1.json", + "exists": true, + "size": 3731, + "sha256": "fb595a876054c2ee9b4e10cfe83a5691588de1d25466cbb9d473c18ad3604009" + } + } +} \ No newline at end of file diff --git a/hyperparameter/c2/tabddpm/tabddpm-c2-20260504_181426/output/X_cat_train.npy b/hyperparameter/c2/tabddpm/tabddpm-c2-20260504_181426/output/X_cat_train.npy new file mode 100644 index 0000000000000000000000000000000000000000..dcf14c2ad4bf0b84d6d4f891dfcf9c4465a5bfd1 --- /dev/null +++ b/hyperparameter/c2/tabddpm/tabddpm-c2-20260504_181426/output/X_cat_train.npy @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:034eff6755597ddf2cea32aeeebc6aea7abe0bb2ecd1296540a156a1fd7b15d3 +size 16885 diff --git a/hyperparameter/c2/tabddpm/tabddpm-c2-20260504_181426/output/X_cat_unnorm.npy b/hyperparameter/c2/tabddpm/tabddpm-c2-20260504_181426/output/X_cat_unnorm.npy new file mode 100644 index 0000000000000000000000000000000000000000..56d962ff9d5a69c1c9bcd4e4b751b0ed993b00fb --- /dev/null +++ b/hyperparameter/c2/tabddpm/tabddpm-c2-20260504_181426/output/X_cat_unnorm.npy @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:36d38a17ec627db9cf06f610863f510f60290c0ad1f074cbc733f3fa695c8e78 +size 66464 diff --git a/hyperparameter/c2/tabddpm/tabddpm-c2-20260504_181426/output/config.toml b/hyperparameter/c2/tabddpm/tabddpm-c2-20260504_181426/output/config.toml new file mode 100644 index 0000000000000000000000000000000000000000..d552d0b7eb6a370ebb22fe960c5759ecfd13c09f --- /dev/null +++ b/hyperparameter/c2/tabddpm/tabddpm-c2-20260504_181426/output/config.toml @@ -0,0 +1,39 @@ +seed = 0 +parent_dir = "/work/output-Benchmark-trainonly-v1/c2/tabddpm/tabddpm-c2-20260504_181426/output" +real_data_path = "/work/output-Benchmark-trainonly-v1/c2/tabddpm/tabddpm-c2-20260504_181426/data" +model_type = "mlp" +num_numerical_features = 0 +device = "cuda:0" + +[model_params] +d_in = 6 +num_classes = 4 +is_y_cond = true + +[model_params.rtdl_params] +d_layers = [256, 256] +dropout = 0.0 + +[diffusion_params] +num_timesteps = 1000 +gaussian_loss_type = "mse" + +[train.main] +steps = 8000 +lr = 0.0005 +weight_decay = 0.0 +batch_size = 128 + +[train.T] +seed = 0 +normalization = "quantile" +num_nan_policy = "__none__" +cat_nan_policy = "__none__" +cat_min_frequency = "__none__" +cat_encoding = "__none__" +y_policy = "default" + +[sample] +num_samples = 1382 +batch_size = 128 +seed = 0 diff --git a/hyperparameter/c2/tabddpm/tabddpm-c2-20260504_181426/output/info.json b/hyperparameter/c2/tabddpm/tabddpm-c2-20260504_181426/output/info.json new file mode 100644 index 0000000000000000000000000000000000000000..0f2b351a317260c450725d5a04373330ad3701a3 --- /dev/null +++ b/hyperparameter/c2/tabddpm/tabddpm-c2-20260504_181426/output/info.json @@ -0,0 +1,29 @@ +{ + "name": "benchmark_dataset", + "task_type": "multiclass", + "n_num_features": 0, + "n_cat_features": 6, + "train_size": 1382, + "num_col_idx": [], + "cat_col_idx": [ + 0, + 1, + 2, + 3, + 4, + 5 + ], + "target_col_idx": [ + 6 + ], + "column_names": [ + "buying", + "maint", + "doors", + "persons", + "lug_boot", + "safety", + "class" + ], + "num_classes": 4 +} \ No newline at end of file diff --git a/hyperparameter/c2/tabddpm/tabddpm-c2-20260504_181426/output/loss.csv b/hyperparameter/c2/tabddpm/tabddpm-c2-20260504_181426/output/loss.csv new file mode 100644 index 0000000000000000000000000000000000000000..aba398c650e6aff07d73d9cbdd0e42751eb972f8 --- /dev/null +++ b/hyperparameter/c2/tabddpm/tabddpm-c2-20260504_181426/output/loss.csv @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:11089dc4d22b4e0c33be6b1d0af38e72761aa5c755fae8fc3614cb11aa41d4a2 +size 1993 diff --git a/hyperparameter/c2/tabddpm/tabddpm-c2-20260504_181426/output/model.pt b/hyperparameter/c2/tabddpm/tabddpm-c2-20260504_181426/output/model.pt new file mode 100644 index 0000000000000000000000000000000000000000..86eb4523a4f131d04169ecafc52d18a86c0a03cf --- /dev/null +++ b/hyperparameter/c2/tabddpm/tabddpm-c2-20260504_181426/output/model.pt @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:d52da738ac55be05eb734ccf926e7e51252ead859e1010257617d98403aeba61 +size 566934 diff --git a/hyperparameter/c2/tabddpm/tabddpm-c2-20260504_181426/output/model_ema.pt b/hyperparameter/c2/tabddpm/tabddpm-c2-20260504_181426/output/model_ema.pt new file mode 100644 index 0000000000000000000000000000000000000000..72e3148f4e325d8c4f3840f455957e65f976a752 --- /dev/null +++ b/hyperparameter/c2/tabddpm/tabddpm-c2-20260504_181426/output/model_ema.pt @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:f352a5b68f4112987abd797ca4d890e774dbec50c511370bc209e6376d854293 +size 567778 diff --git a/hyperparameter/c2/tabddpm/tabddpm-c2-20260504_181426/output/y_train.npy b/hyperparameter/c2/tabddpm/tabddpm-c2-20260504_181426/output/y_train.npy new file mode 100644 index 0000000000000000000000000000000000000000..aa9afff4d061333b18828274b1072d1b884f162c --- /dev/null +++ b/hyperparameter/c2/tabddpm/tabddpm-c2-20260504_181426/output/y_train.npy @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:58b1a722d369027a22bed702e3539c6fefa976741570c4c0a2f8546e2978c3d7 +size 11184 diff --git a/hyperparameter/c2/tabddpm/tabddpm-c2-20260504_181426/public_gate/normalized_schema_snapshot.json b/hyperparameter/c2/tabddpm/tabddpm-c2-20260504_181426/public_gate/normalized_schema_snapshot.json new file mode 100644 index 0000000000000000000000000000000000000000..689b1d00d96508e44ba40e58dc4560e19afc2b3b --- /dev/null +++ b/hyperparameter/c2/tabddpm/tabddpm-c2-20260504_181426/public_gate/normalized_schema_snapshot.json @@ -0,0 +1,144 @@ +{ + "dataset_id": "c2", + "target_column": "class", + "task_type": "classification", + "columns": [ + { + "name": "buying", + "role": "feature", + "semantic_type": "categorical", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 4, + "unique_ratio": 0.002894, + "example_values": [ + "vhigh", + "med", + "high", + "low" + ] + } + }, + { + "name": "maint", + "role": "feature", + "semantic_type": "categorical", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 4, + "unique_ratio": 0.002894, + "example_values": [ + "vhigh", + "low", + "med", + "high" + ] + } + }, + { + "name": "doors", + "role": "feature", + "semantic_type": "categorical", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 4, + "unique_ratio": 0.002894, + "example_values": [ + "2", + "5more", + "3", + "4" + ] + } + }, + { + "name": "persons", + "role": "feature", + "semantic_type": "categorical", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 3, + "unique_ratio": 0.002171, + "example_values": [ + "2", + "4", + "more" + ] + } + }, + { + "name": "lug_boot", + "role": "feature", + "semantic_type": "categorical", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 3, + "unique_ratio": 0.002171, + "example_values": [ + "small", + "big", + "med" + ] + } + }, + { + "name": "safety", + "role": "feature", + "semantic_type": "categorical", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 3, + "unique_ratio": 0.002171, + "example_values": [ + "low", + "high", + "med" + ] + } + }, + { + "name": "class", + "role": "target", + "semantic_type": "categorical", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 4, + "unique_ratio": 0.002894, + "example_values": [ + "unacc", + "good", + "acc", + "vgood" + ] + } + } + ] +} \ No newline at end of file diff --git a/hyperparameter/c2/tabddpm/tabddpm-c2-20260504_181426/public_gate/public_gate_report.json b/hyperparameter/c2/tabddpm/tabddpm-c2-20260504_181426/public_gate/public_gate_report.json new file mode 100644 index 0000000000000000000000000000000000000000..2e4cdcb2a4e28e40d59b17a83e773f622b7636a5 --- /dev/null +++ b/hyperparameter/c2/tabddpm/tabddpm-c2-20260504_181426/public_gate/public_gate_report.json @@ -0,0 +1,37 @@ +{ + "dataset_id": "c2", + "status": "pass", + "checks": [ + { + "check_id": "PG001_csv_parse_ok", + "status": "pass" + }, + { + "check_id": "PG002_split_header_consistent", + "status": "pass" + }, + { + "check_id": "PG003_profile_header_match", + "status": "pass" + }, + { + "check_id": "PG004_missing_token_normalized", + "status": "pass" + }, + { + "check_id": "PG005_semantic_type_validated", + "status": "pass" + }, + { + "check_id": "PG006_target_defined_and_valid", + "status": "pass" + } + ], + "target_column": "class", + "task_type": "classification", + "input_splits": { + "train": "/data/jialinzhang/SynthesizePipeline-server/DatasetNew/c2/c2-train.csv", + "val": "/data/jialinzhang/SynthesizePipeline-server/DatasetNew/c2/c2-val.csv", + "test": "/data/jialinzhang/SynthesizePipeline-server/DatasetNew/c2/c2-test.csv" + } +} \ No newline at end of file diff --git a/hyperparameter/c2/tabddpm/tabddpm-c2-20260504_181426/public_gate/staged_input_manifest.json b/hyperparameter/c2/tabddpm/tabddpm-c2-20260504_181426/public_gate/staged_input_manifest.json new file mode 100644 index 0000000000000000000000000000000000000000..b0557c7277deea4b404ee649185fefd58b5bd30a --- /dev/null +++ b/hyperparameter/c2/tabddpm/tabddpm-c2-20260504_181426/public_gate/staged_input_manifest.json @@ -0,0 +1,149 @@ +{ + "dataset_id": "c2", + "target_column": "class", + "task_type": "classification", + "train_csv": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/c2/tabddpm/tabddpm-c2-20260504_181426/staged/public/train.csv", + "val_csv": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/c2/tabddpm/tabddpm-c2-20260504_181426/staged/public/val.csv", + "test_csv": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/c2/tabddpm/tabddpm-c2-20260504_181426/staged/public/test.csv", + "features_json": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/c2/tabddpm/tabddpm-c2-20260504_181426/staged/public/staged_features.json", + "public_gate_report": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/c2/tabddpm/tabddpm-c2-20260504_181426/public_gate/public_gate_report.json", + "column_schema": [ + { + "name": "buying", + "role": "feature", + "semantic_type": "categorical", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 4, + "unique_ratio": 0.002894, + "example_values": [ + "vhigh", + "med", + "high", + "low" + ] + } + }, + { + "name": "maint", + "role": "feature", + "semantic_type": "categorical", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 4, + "unique_ratio": 0.002894, + "example_values": [ + "vhigh", + "low", + "med", + "high" + ] + } + }, + { + "name": "doors", + "role": "feature", + "semantic_type": "categorical", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 4, + "unique_ratio": 0.002894, + "example_values": [ + "2", + "5more", + "3", + "4" + ] + } + }, + { + "name": "persons", + "role": "feature", + "semantic_type": "categorical", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 3, + "unique_ratio": 0.002171, + "example_values": [ + "2", + "4", + "more" + ] + } + }, + { + "name": "lug_boot", + "role": "feature", + "semantic_type": "categorical", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 3, + "unique_ratio": 0.002171, + "example_values": [ + "small", + "big", + "med" + ] + } + }, + { + "name": "safety", + "role": "feature", + "semantic_type": "categorical", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 3, + "unique_ratio": 0.002171, + "example_values": [ + "low", + "high", + "med" + ] + } + }, + { + "name": "class", + "role": "target", + "semantic_type": "categorical", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 4, + "unique_ratio": 0.002894, + "example_values": [ + "unacc", + "good", + "acc", + "vgood" + ] + } + } + ] +} \ No newline at end of file diff --git a/hyperparameter/c2/tabddpm/tabddpm-c2-20260504_181426/run_config.json b/hyperparameter/c2/tabddpm/tabddpm-c2-20260504_181426/run_config.json new file mode 100644 index 0000000000000000000000000000000000000000..1ee2cdabb8c7f9f9951d15b4728af288899ebaaf --- /dev/null +++ b/hyperparameter/c2/tabddpm/tabddpm-c2-20260504_181426/run_config.json @@ -0,0 +1,45 @@ +{ + "schema_version": 1, + "recorded_at": "2026-05-04T18:14:26", + "dataset_id": "c2", + "model": "tabddpm", + "work_dir": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/c2/tabddpm/tabddpm-c2-20260504_181426", + "dataset_source_requested": "new", + "dataset_source_resolved": "new", + "cli_args": { + "model": "tabddpm", + "dataset": "c2", + "dataset_source": "new", + "train": true, + "generate": true, + "num_rows": 0, + "epochs": null, + "output_dir": null, + "model_dir": null, + "work_dir": null, + "resume": false, + "no_stats": false + }, + "resolved": { + "num_rows": 1382, + "model_path": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/c2/tabddpm/tabddpm-c2-20260504_181426", + "output_csv": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/c2/tabddpm/tabddpm-c2-20260504_181426/tabddpm-c2-1382-20260504_181619.csv" + }, + "input_artifacts": { + "public_gate_report": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/c2/tabddpm/tabddpm-c2-20260504_181426/public_gate/public_gate_report.json", + "public_manifest": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/c2/tabddpm/tabddpm-c2-20260504_181426/public_gate/staged_input_manifest.json", + "model_manifest": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/c2/tabddpm/tabddpm-c2-20260504_181426/staged/tabddpm/model_input_manifest.json", + "train_csv": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/c2/tabddpm/tabddpm-c2-20260504_181426/staged/public/train.csv", + "features_json": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/c2/tabddpm/tabddpm-c2-20260504_181426/staged/public/staged_features.json", + "target_column": "class", + "task_type": "classification" + }, + "env_overrides": { + "BENCHMARK_TABDDPM_GPUS": "device=3", + "TABDDPM_NUM_TIMESTEPS": "1000", + "TABDDPM_SAMPLE_BATCH_SIZE": "128", + "TABDDPM_STEPS_PER_EPOCH": "160", + "TABDDPM_TRAIN_BATCH_SIZE": "128", + "TABDDPM_TRAIN_LR": "0.0005" + } +} \ No newline at end of file diff --git a/hyperparameter/c2/tabddpm/tabddpm-c2-20260504_181426/runtime_result.json b/hyperparameter/c2/tabddpm/tabddpm-c2-20260504_181426/runtime_result.json new file mode 100644 index 0000000000000000000000000000000000000000..344b0e60d055c72b3ba4a8c5ea3b725107285608 --- /dev/null +++ b/hyperparameter/c2/tabddpm/tabddpm-c2-20260504_181426/runtime_result.json @@ -0,0 +1,27 @@ +{ + "dataset_id": "c2", + "model": "tabddpm", + "run_id": "tabddpm-c2-20260504_181426", + "public_gate_status": "pass", + "adapter_ready_status": "pass", + "train_status": "success", + "generate_status": "success", + "reason_code": null, + "reason_detail": null, + "artifacts": { + "synthetic_csv": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/c2/tabddpm/tabddpm-c2-20260504_181426/tabddpm-c2-1382-20260504_181619.csv", + "model_path": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/c2/tabddpm/tabddpm-c2-20260504_181426" + }, + "timings": { + "train": { + "started_at": "2026-05-04T18:14:26", + "ended_at": "2026-05-04T18:16:19", + "duration_sec": 113.268 + }, + "generate": { + "started_at": "2026-05-04T18:16:19", + "ended_at": "2026-05-04T18:17:36", + "duration_sec": 76.899 + } + } +} \ No newline at end of file diff --git a/hyperparameter/c2/tabddpm/tabddpm-c2-20260504_181426/staged/public/staged_features.json b/hyperparameter/c2/tabddpm/tabddpm-c2-20260504_181426/staged/public/staged_features.json new file mode 100644 index 0000000000000000000000000000000000000000..61783861dd5de501592f76acb0469cf3f3b2622a --- /dev/null +++ b/hyperparameter/c2/tabddpm/tabddpm-c2-20260504_181426/staged/public/staged_features.json @@ -0,0 +1,37 @@ +[ + { + "feature_name": "buying", + "data_type": "categorical", + "is_target": false + }, + { + "feature_name": "maint", + "data_type": "categorical", + "is_target": false + }, + { + "feature_name": "doors", + "data_type": "categorical", + "is_target": false + }, + { + "feature_name": "persons", + "data_type": "categorical", + "is_target": false + }, + { + "feature_name": "lug_boot", + "data_type": "categorical", + "is_target": false + }, + { + "feature_name": "safety", + "data_type": "categorical", + "is_target": false + }, + { + "feature_name": "class", + "data_type": "categorical", + "is_target": true + } +] \ No newline at end of file diff --git a/hyperparameter/c2/tabddpm/tabddpm-c2-20260504_181426/staged/public/test.csv b/hyperparameter/c2/tabddpm/tabddpm-c2-20260504_181426/staged/public/test.csv new file mode 100644 index 0000000000000000000000000000000000000000..392a0d7189a34d8f13ecf20a99d64b03230d517c --- /dev/null +++ b/hyperparameter/c2/tabddpm/tabddpm-c2-20260504_181426/staged/public/test.csv @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:b48114a7d0bc5bd9a07920f903c8d4aba8bf98bf2a66a050da03588b0245ca73 +size 5273 diff --git a/hyperparameter/c2/tabddpm/tabddpm-c2-20260504_181426/staged/public/train.csv b/hyperparameter/c2/tabddpm/tabddpm-c2-20260504_181426/staged/public/train.csv new file mode 100644 index 0000000000000000000000000000000000000000..da4f4d55134eebc0e51157d0d467536371db1484 --- /dev/null +++ b/hyperparameter/c2/tabddpm/tabddpm-c2-20260504_181426/staged/public/train.csv @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:4aed00c2c2b3f88a55a7ebff31b2e1b5e0e32fb0a7267e0b9d2779cd23e434dd +size 41565 diff --git a/hyperparameter/c2/tabddpm/tabddpm-c2-20260504_181426/staged/public/val.csv b/hyperparameter/c2/tabddpm/tabddpm-c2-20260504_181426/staged/public/val.csv new file mode 100644 index 0000000000000000000000000000000000000000..af8caf7ee42524188534a3daf32996dc491952d9 --- /dev/null +++ b/hyperparameter/c2/tabddpm/tabddpm-c2-20260504_181426/staged/public/val.csv @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:26e90c1170a57a14c05832ac88027722b1f3848f9662c7c09ef7c93dcba4cc01 +size 5176 diff --git a/hyperparameter/c2/tabddpm/tabddpm-c2-20260504_181426/staged/tabddpm/adapter_report.json b/hyperparameter/c2/tabddpm/tabddpm-c2-20260504_181426/staged/tabddpm/adapter_report.json new file mode 100644 index 0000000000000000000000000000000000000000..1a31261ff46bd1a636a0417d6322f08f2075a2c5 --- /dev/null +++ b/hyperparameter/c2/tabddpm/tabddpm-c2-20260504_181426/staged/tabddpm/adapter_report.json @@ -0,0 +1,7 @@ +{ + "adapter_ready_status": "pass", + "adapter_fail_reason_code": null, + "adapter_fail_detail": null, + "adapter_transforms_applied": [], + "model_input_manifest": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/c2/tabddpm/tabddpm-c2-20260504_181426/staged/tabddpm/model_input_manifest.json" +} \ No newline at end of file diff --git a/hyperparameter/c2/tabddpm/tabddpm-c2-20260504_181426/staged/tabddpm/adapter_transforms_applied.json b/hyperparameter/c2/tabddpm/tabddpm-c2-20260504_181426/staged/tabddpm/adapter_transforms_applied.json new file mode 100644 index 0000000000000000000000000000000000000000..0637a088a01e8ddab3bf3fa98dbe804cbde1a0dc --- /dev/null +++ b/hyperparameter/c2/tabddpm/tabddpm-c2-20260504_181426/staged/tabddpm/adapter_transforms_applied.json @@ -0,0 +1 @@ +[] \ No newline at end of file diff --git a/hyperparameter/c2/tabddpm/tabddpm-c2-20260504_181426/staged/tabddpm/model_input_manifest.json b/hyperparameter/c2/tabddpm/tabddpm-c2-20260504_181426/staged/tabddpm/model_input_manifest.json new file mode 100644 index 0000000000000000000000000000000000000000..6338006d9d5782d236cdfdf276a3d0326aa938a7 --- /dev/null +++ b/hyperparameter/c2/tabddpm/tabddpm-c2-20260504_181426/staged/tabddpm/model_input_manifest.json @@ -0,0 +1,151 @@ +{ + "dataset_id": "c2", + "model": "tabddpm", + "target_column": "class", + "task_type": "classification", + "column_schema": [ + { + "name": "buying", + "role": "feature", + "semantic_type": "categorical", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 4, + "unique_ratio": 0.002894, + "example_values": [ + "vhigh", + "med", + "high", + "low" + ] + } + }, + { + "name": "maint", + "role": "feature", + "semantic_type": "categorical", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 4, + "unique_ratio": 0.002894, + "example_values": [ + "vhigh", + "low", + "med", + "high" + ] + } + }, + { + "name": "doors", + "role": "feature", + "semantic_type": "categorical", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 4, + "unique_ratio": 0.002894, + "example_values": [ + "2", + "5more", + "3", + "4" + ] + } + }, + { + "name": "persons", + "role": "feature", + "semantic_type": "categorical", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 3, + "unique_ratio": 0.002171, + "example_values": [ + "2", + "4", + "more" + ] + } + }, + { + "name": "lug_boot", + "role": "feature", + "semantic_type": "categorical", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 3, + "unique_ratio": 0.002171, + "example_values": [ + "small", + "big", + "med" + ] + } + }, + { + "name": "safety", + "role": "feature", + "semantic_type": "categorical", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 3, + "unique_ratio": 0.002171, + "example_values": [ + "low", + "high", + "med" + ] + } + }, + { + "name": "class", + "role": "target", + "semantic_type": "categorical", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 4, + "unique_ratio": 0.002894, + "example_values": [ + "unacc", + "good", + "acc", + "vgood" + ] + } + } + ], + "public_manifest": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/c2/tabddpm/tabddpm-c2-20260504_181426/public_gate/staged_input_manifest.json", + "train_csv": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/c2/tabddpm/tabddpm-c2-20260504_181426/staged/public/train.csv", + "val_csv": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/c2/tabddpm/tabddpm-c2-20260504_181426/staged/public/val.csv", + "test_csv": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/c2/tabddpm/tabddpm-c2-20260504_181426/staged/public/test.csv", + "features_json": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/c2/tabddpm/tabddpm-c2-20260504_181426/staged/public/staged_features.json", + "public_gate_report": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/c2/tabddpm/tabddpm-c2-20260504_181426/public_gate/public_gate_report.json" +} \ No newline at end of file diff --git a/hyperparameter/c2/tabddpm/tabddpm-c2-20260504_181426/tabddpm-c2-1382-20260504_181619.csv b/hyperparameter/c2/tabddpm/tabddpm-c2-20260504_181426/tabddpm-c2-1382-20260504_181619.csv new file mode 100644 index 0000000000000000000000000000000000000000..6b41078af153f0ede97fef3d916ea8850f6bf4a9 --- /dev/null +++ b/hyperparameter/c2/tabddpm/tabddpm-c2-20260504_181426/tabddpm-c2-1382-20260504_181619.csv @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:ca2259e7e505d17ea935caa55b18c4527a22c776e4c9e9a83b76280bc1a0764c +size 38745 diff --git a/hyperparameter/c2/tabddpm/tabddpm-c2-20260504_181426/train_20260504_181426.log b/hyperparameter/c2/tabddpm/tabddpm-c2-20260504_181426/train_20260504_181426.log new file mode 100644 index 0000000000000000000000000000000000000000..b7b50a4d71afa241143b375960d2c6c7caf568d4 --- /dev/null +++ b/hyperparameter/c2/tabddpm/tabddpm-c2-20260504_181426/train_20260504_181426.log @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:7356520fcdab117b252867a1778157511aaf0ff67df6339f5519fb8d395f1135 +size 1389 diff --git a/hyperparameter/c2/tabddpm/tabddpm-c2-20260504_181749/_tabddpm_sample_r0.py b/hyperparameter/c2/tabddpm/tabddpm-c2-20260504_181749/_tabddpm_sample_r0.py new file mode 100644 index 0000000000000000000000000000000000000000..6d9a374682ff30bdb5d588e45d4284f4aa270951 --- /dev/null +++ b/hyperparameter/c2/tabddpm/tabddpm-c2-20260504_181749/_tabddpm_sample_r0.py @@ -0,0 +1,66 @@ +import os, sys, subprocess, json +import numpy as np +import pandas as pd + +tabddpm_root = "/workspace/tabddpm/code" +assert os.path.isdir(tabddpm_root), f"TabDDPM source not mounted: {tabddpm_root}" +env = os.environ.copy() +env["PYTHONPATH"] = tabddpm_root + (os.pathsep + env.get("PYTHONPATH", "")) + +# Reuse the compat wrapper (patches collections.Sequence for skorch) +wrapper = os.path.join(tabddpm_root, "_compat_run.py") +if not os.path.exists(wrapper): + with open(wrapper, "w") as f: + f.write( + "import collections, collections.abc\n" + "for _a in ('Sequence','MutableSequence','MutableMapping','Mapping'," + "'MutableSet','Set','Callable','Iterable','Iterator'):\n" + " if not hasattr(collections, _a): setattr(collections, _a, getattr(collections.abc, _a, None))\n" + "import sys, runpy\n" + "sys.argv = sys.argv[1:]\n" + "runpy.run_path(sys.argv[0], run_name='__main__')\n" + ) + +print(f"[TabDDPM] Sampling 1382 rows") +ret = subprocess.run( + [sys.executable, wrapper, "scripts/pipeline.py", + "--config", "/work/output-Benchmark-trainonly-v1/c2/tabddpm/tabddpm-c2-20260504_181749/config_sample_20260504_182010_r0.toml", + "--sample"], + cwd=tabddpm_root, + env=env +) +if ret.returncode != 0: + sys.exit(ret.returncode) + +# 将 .npy 输出转为 CSV(npy 在 TabDDPM 的 parent_dir,即 npy_dir) +info_path = "/work/output-Benchmark-trainonly-v1/c2/tabddpm/tabddpm-c2-20260504_181749/data/info.json" +with open(info_path) as f: + info = json.load(f) + +output_dir = "/work/output-Benchmark-trainonly-v1/c2/tabddpm/tabddpm-c2-20260504_181749/output" +col_names = info.get("column_names", []) + +parts = [] +x_num_path = os.path.join(output_dir, "X_num_train.npy") +x_cat_path = os.path.join(output_dir, "X_cat_train.npy") +y_path = os.path.join(output_dir, "y_train.npy") + +if os.path.exists(x_num_path): + parts.append(np.load(x_num_path, allow_pickle=True)) +if os.path.exists(x_cat_path): + parts.append(np.load(x_cat_path, allow_pickle=True).astype(float)) +if os.path.exists(y_path): + y = np.load(y_path, allow_pickle=True) + parts.append(y.reshape(-1, 1) if y.ndim == 1 else y) + +if parts: + combined = np.concatenate(parts, axis=1) + if col_names and len(col_names) == combined.shape[1]: + df = pd.DataFrame(combined, columns=col_names) + else: + df = pd.DataFrame(combined) + df.to_csv("/work/output-Benchmark-trainonly-v1/c2/tabddpm/tabddpm-c2-20260504_181749/tabddpm-c2-1382-20260504_182010.csv", index=False) + print(f"[TabDDPM] Saved {len(df)} rows -> /work/output-Benchmark-trainonly-v1/c2/tabddpm/tabddpm-c2-20260504_181749/tabddpm-c2-1382-20260504_182010.csv") +else: + print("[TabDDPM] WARNING: No output .npy files found") + sys.exit(1) diff --git a/hyperparameter/c2/tabddpm/tabddpm-c2-20260504_181749/_tabddpm_train.py b/hyperparameter/c2/tabddpm/tabddpm-c2-20260504_181749/_tabddpm_train.py new file mode 100644 index 0000000000000000000000000000000000000000..dec896327b2d1773db061836a5353586f89d63c6 --- /dev/null +++ b/hyperparameter/c2/tabddpm/tabddpm-c2-20260504_181749/_tabddpm_train.py @@ -0,0 +1,32 @@ +import os, sys, subprocess + +tabddpm_root = "/workspace/tabddpm/code" +assert os.path.isdir(tabddpm_root), f"TabDDPM source not mounted: {tabddpm_root}" +env = os.environ.copy() +env["PYTHONPATH"] = tabddpm_root + (os.pathsep + env.get("PYTHONPATH", "")) + +# Write a wrapper that patches collections.Sequence (removed in Python 3.10+) +# before running pipeline.py - needed because skorch uses old API +wrapper = os.path.join(tabddpm_root, "_compat_run.py") +with open(wrapper, "w") as f: + f.write( + "import collections, collections.abc\n" + "for _a in ('Sequence','MutableSequence','MutableMapping','Mapping'," + "'MutableSet','Set','Callable','Iterable','Iterator'):\n" + " if not hasattr(collections, _a): setattr(collections, _a, getattr(collections.abc, _a, None))\n" + "import sys, runpy\n" + "sys.argv = sys.argv[1:]\n" + "runpy.run_path(sys.argv[0], run_name='__main__')\n" + ) + +print(f"[TabDDPM] Training, config=/work/output-Benchmark-trainonly-v1/c2/tabddpm/tabddpm-c2-20260504_181749/config.toml") +ret = subprocess.run( + [sys.executable, wrapper, "scripts/pipeline.py", + "--config", "/work/output-Benchmark-trainonly-v1/c2/tabddpm/tabddpm-c2-20260504_181749/config.toml", + "--train"], + cwd=tabddpm_root, + env=env +) +if ret.returncode != 0: + sys.exit(ret.returncode) +print("[TabDDPM] Training complete") diff --git a/hyperparameter/c2/tabddpm/tabddpm-c2-20260504_181749/config.toml b/hyperparameter/c2/tabddpm/tabddpm-c2-20260504_181749/config.toml new file mode 100644 index 0000000000000000000000000000000000000000..165148ade1be7bc62b1a072d61032b198169fa20 --- /dev/null +++ b/hyperparameter/c2/tabddpm/tabddpm-c2-20260504_181749/config.toml @@ -0,0 +1,39 @@ +seed = 0 +parent_dir = "/work/output-Benchmark-trainonly-v1/c2/tabddpm/tabddpm-c2-20260504_181749/output" +real_data_path = "/work/output-Benchmark-trainonly-v1/c2/tabddpm/tabddpm-c2-20260504_181749/data" +model_type = "mlp" +num_numerical_features = 0 +device = "cuda:0" + +[model_params] +d_in = 6 +num_classes = 4 +is_y_cond = true + +[model_params.rtdl_params] +d_layers = [256, 256] +dropout = 0.0 + +[diffusion_params] +num_timesteps = 1000 +gaussian_loss_type = "mse" + +[train.main] +steps = 10000 +lr = 0.0001 +weight_decay = 0.0 +batch_size = 128 + +[train.T] +seed = 0 +normalization = "quantile" +num_nan_policy = "__none__" +cat_nan_policy = "__none__" +cat_min_frequency = "__none__" +cat_encoding = "__none__" +y_policy = "default" + +[sample] +num_samples = 1000 +batch_size = 128 +seed = 0 diff --git a/hyperparameter/c2/tabddpm/tabddpm-c2-20260504_181749/config_sample_20260504_182010_r0.toml b/hyperparameter/c2/tabddpm/tabddpm-c2-20260504_181749/config_sample_20260504_182010_r0.toml new file mode 100644 index 0000000000000000000000000000000000000000..f2d1b4d66e9c68954b947c156a5d889dbafc9dbf --- /dev/null +++ b/hyperparameter/c2/tabddpm/tabddpm-c2-20260504_181749/config_sample_20260504_182010_r0.toml @@ -0,0 +1,39 @@ +seed = 0 +parent_dir = "/work/output-Benchmark-trainonly-v1/c2/tabddpm/tabddpm-c2-20260504_181749/output" +real_data_path = "/work/output-Benchmark-trainonly-v1/c2/tabddpm/tabddpm-c2-20260504_181749/data" +model_type = "mlp" +num_numerical_features = 0 +device = "cuda:0" + +[model_params] +d_in = 6 +num_classes = 4 +is_y_cond = true + +[model_params.rtdl_params] +d_layers = [256, 256] +dropout = 0.0 + +[diffusion_params] +num_timesteps = 1000 +gaussian_loss_type = "mse" + +[train.main] +steps = 10000 +lr = 0.0001 +weight_decay = 0.0 +batch_size = 128 + +[train.T] +seed = 0 +normalization = "quantile" +num_nan_policy = "__none__" +cat_nan_policy = "__none__" +cat_min_frequency = "__none__" +cat_encoding = "__none__" +y_policy = "default" + +[sample] +num_samples = 1382 +batch_size = 128 +seed = 0 diff --git a/hyperparameter/c2/tabddpm/tabddpm-c2-20260504_181749/data/X_cat_train.npy b/hyperparameter/c2/tabddpm/tabddpm-c2-20260504_181749/data/X_cat_train.npy new file mode 100644 index 0000000000000000000000000000000000000000..e99f1ae8dc9e7155e5c4bbbd3c2f3f7215c628f7 --- /dev/null +++ b/hyperparameter/c2/tabddpm/tabddpm-c2-20260504_181749/data/X_cat_train.npy @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:24d2203601ba060728920e754747e5a1dc3955a1b5775e147382fee4f1812542 +size 66464 diff --git a/hyperparameter/c2/tabddpm/tabddpm-c2-20260504_181749/data/info.json b/hyperparameter/c2/tabddpm/tabddpm-c2-20260504_181749/data/info.json new file mode 100644 index 0000000000000000000000000000000000000000..0f2b351a317260c450725d5a04373330ad3701a3 --- /dev/null +++ b/hyperparameter/c2/tabddpm/tabddpm-c2-20260504_181749/data/info.json @@ -0,0 +1,29 @@ +{ + "name": "benchmark_dataset", + "task_type": "multiclass", + "n_num_features": 0, + "n_cat_features": 6, + "train_size": 1382, + "num_col_idx": [], + "cat_col_idx": [ + 0, + 1, + 2, + 3, + 4, + 5 + ], + "target_col_idx": [ + 6 + ], + "column_names": [ + "buying", + "maint", + "doors", + "persons", + "lug_boot", + "safety", + "class" + ], + "num_classes": 4 +} \ No newline at end of file diff --git a/hyperparameter/c2/tabddpm/tabddpm-c2-20260504_181749/data/y_train.npy b/hyperparameter/c2/tabddpm/tabddpm-c2-20260504_181749/data/y_train.npy new file mode 100644 index 0000000000000000000000000000000000000000..8bfc8f9de7350657cd6411c55d2b9b87bea9c13a --- /dev/null +++ b/hyperparameter/c2/tabddpm/tabddpm-c2-20260504_181749/data/y_train.npy @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:3f8eb0b25043331a30fde5439f063eed59e7a76f45d7d102b9b4fbcd16b551b4 +size 11184 diff --git a/hyperparameter/c2/tabddpm/tabddpm-c2-20260504_181749/gen_20260504_182010_r0.log b/hyperparameter/c2/tabddpm/tabddpm-c2-20260504_181749/gen_20260504_182010_r0.log new file mode 100644 index 0000000000000000000000000000000000000000..bad15edaa0dd1228803da2a3935c426a75a1a659 --- /dev/null +++ b/hyperparameter/c2/tabddpm/tabddpm-c2-20260504_181749/gen_20260504_182010_r0.log @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:ede18d3d433638f1ec6cc6405840c76c88a86bd48f1e2351fba88ce9886dc6b0 +size 231462 diff --git a/hyperparameter/c2/tabddpm/tabddpm-c2-20260504_181749/input_snapshot.json b/hyperparameter/c2/tabddpm/tabddpm-c2-20260504_181749/input_snapshot.json new file mode 100644 index 0000000000000000000000000000000000000000..772021148f055243c89ddfd9b6fa388ee33d05ea --- /dev/null +++ b/hyperparameter/c2/tabddpm/tabddpm-c2-20260504_181749/input_snapshot.json @@ -0,0 +1,36 @@ +{ + "dataset_id": "c2", + "model": "tabddpm", + "inputs": { + "train_csv": { + "path": "/data/jialinzhang/SynthesizePipeline-server/DatasetNew/c2/c2-train.csv", + "exists": true, + "size": 42948, + "sha256": "17bc560fa96bd00fb3b526e1e65bc91210b701d0d0a4e8bb9b4c5196cab56def" + }, + "val_csv": { + "path": "/data/jialinzhang/SynthesizePipeline-server/DatasetNew/c2/c2-val.csv", + "exists": true, + "size": 5349, + "sha256": "61e565eca62e65a7dccd9d51039a3170413379e10fc494e25870e7c4294863c9" + }, + "test_csv": { + "path": "/data/jialinzhang/SynthesizePipeline-server/DatasetNew/c2/c2-test.csv", + "exists": true, + "size": 5448, + "sha256": "cbcbb062a1faf5fa44b66c80532baa229e05b94fc42137269761e6c6d84af20a" + }, + "profile_json": { + "path": "/data/jialinzhang/SynthesizePipeline-server/DatasetNew/artifacts/data_core/tabular/c2/c2-dataset_profile.json", + "exists": true, + "size": 3240, + "sha256": "526b7163b2076c93c0bf4638438081ee8a6907065d5b608faa40d1a3dbc2a27b" + }, + "contract_json": { + "path": "/data/jialinzhang/SynthesizePipeline-server/DatasetNew/artifacts/data_core/tabular/c2/c2-dataset_contract_v1.json", + "exists": true, + "size": 3731, + "sha256": "fb595a876054c2ee9b4e10cfe83a5691588de1d25466cbb9d473c18ad3604009" + } + } +} \ No newline at end of file diff --git a/hyperparameter/c2/tabddpm/tabddpm-c2-20260504_181749/output/X_cat_train.npy b/hyperparameter/c2/tabddpm/tabddpm-c2-20260504_181749/output/X_cat_train.npy new file mode 100644 index 0000000000000000000000000000000000000000..875f0b2f4c0e53804d7abc22462e1c408607b22b --- /dev/null +++ b/hyperparameter/c2/tabddpm/tabddpm-c2-20260504_181749/output/X_cat_train.npy @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:4dd702fb9949b6a178627061f36111215b9d454e7a496454052a56b467202c5d +size 16885 diff --git a/hyperparameter/c2/tabddpm/tabddpm-c2-20260504_181749/output/X_cat_unnorm.npy b/hyperparameter/c2/tabddpm/tabddpm-c2-20260504_181749/output/X_cat_unnorm.npy new file mode 100644 index 0000000000000000000000000000000000000000..eb20cceffa2fe0f4609ce83ff329944f5a9871f0 --- /dev/null +++ b/hyperparameter/c2/tabddpm/tabddpm-c2-20260504_181749/output/X_cat_unnorm.npy @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:27c3acb3cafc7c8de0d24a6c633f933a1e9c8303f48dd329c91370ed24504739 +size 66464 diff --git a/hyperparameter/c2/tabddpm/tabddpm-c2-20260504_181749/output/config.toml b/hyperparameter/c2/tabddpm/tabddpm-c2-20260504_181749/output/config.toml new file mode 100644 index 0000000000000000000000000000000000000000..f2d1b4d66e9c68954b947c156a5d889dbafc9dbf --- /dev/null +++ b/hyperparameter/c2/tabddpm/tabddpm-c2-20260504_181749/output/config.toml @@ -0,0 +1,39 @@ +seed = 0 +parent_dir = "/work/output-Benchmark-trainonly-v1/c2/tabddpm/tabddpm-c2-20260504_181749/output" +real_data_path = "/work/output-Benchmark-trainonly-v1/c2/tabddpm/tabddpm-c2-20260504_181749/data" +model_type = "mlp" +num_numerical_features = 0 +device = "cuda:0" + +[model_params] +d_in = 6 +num_classes = 4 +is_y_cond = true + +[model_params.rtdl_params] +d_layers = [256, 256] +dropout = 0.0 + +[diffusion_params] +num_timesteps = 1000 +gaussian_loss_type = "mse" + +[train.main] +steps = 10000 +lr = 0.0001 +weight_decay = 0.0 +batch_size = 128 + +[train.T] +seed = 0 +normalization = "quantile" +num_nan_policy = "__none__" +cat_nan_policy = "__none__" +cat_min_frequency = "__none__" +cat_encoding = "__none__" +y_policy = "default" + +[sample] +num_samples = 1382 +batch_size = 128 +seed = 0 diff --git a/hyperparameter/c2/tabddpm/tabddpm-c2-20260504_181749/output/info.json b/hyperparameter/c2/tabddpm/tabddpm-c2-20260504_181749/output/info.json new file mode 100644 index 0000000000000000000000000000000000000000..0f2b351a317260c450725d5a04373330ad3701a3 --- /dev/null +++ b/hyperparameter/c2/tabddpm/tabddpm-c2-20260504_181749/output/info.json @@ -0,0 +1,29 @@ +{ + "name": "benchmark_dataset", + "task_type": "multiclass", + "n_num_features": 0, + "n_cat_features": 6, + "train_size": 1382, + "num_col_idx": [], + "cat_col_idx": [ + 0, + 1, + 2, + 3, + 4, + 5 + ], + "target_col_idx": [ + 6 + ], + "column_names": [ + "buying", + "maint", + "doors", + "persons", + "lug_boot", + "safety", + "class" + ], + "num_classes": 4 +} \ No newline at end of file diff --git a/hyperparameter/c2/tabddpm/tabddpm-c2-20260504_181749/output/loss.csv b/hyperparameter/c2/tabddpm/tabddpm-c2-20260504_181749/output/loss.csv new file mode 100644 index 0000000000000000000000000000000000000000..c1e5f7a0a28aef870fd54b385688df9e62e9e5db --- /dev/null +++ b/hyperparameter/c2/tabddpm/tabddpm-c2-20260504_181749/output/loss.csv @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:46c43b9e239c0607c69487e20a659541eef7a7eb8025df70aab38537d40cfa29 +size 2490 diff --git a/hyperparameter/c2/tabddpm/tabddpm-c2-20260504_181749/output/model.pt b/hyperparameter/c2/tabddpm/tabddpm-c2-20260504_181749/output/model.pt new file mode 100644 index 0000000000000000000000000000000000000000..c794cabb05c8284318de69f9107c7fce2e80b251 --- /dev/null +++ b/hyperparameter/c2/tabddpm/tabddpm-c2-20260504_181749/output/model.pt @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:453398dddf2f09569e603a2aa165f4705c0918eaa2eefbd04e3224f0181b024e +size 566934 diff --git a/hyperparameter/c2/tabddpm/tabddpm-c2-20260504_181749/output/model_ema.pt b/hyperparameter/c2/tabddpm/tabddpm-c2-20260504_181749/output/model_ema.pt new file mode 100644 index 0000000000000000000000000000000000000000..807ae12c2fbb222140776b0413c3b03befab85ee --- /dev/null +++ b/hyperparameter/c2/tabddpm/tabddpm-c2-20260504_181749/output/model_ema.pt @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:1c9922a79d688950dcf1b425cd6fa5c33f80f100de3a6ecc8643f8986d5c7a79 +size 567778 diff --git a/hyperparameter/c2/tabddpm/tabddpm-c2-20260504_181749/output/y_train.npy b/hyperparameter/c2/tabddpm/tabddpm-c2-20260504_181749/output/y_train.npy new file mode 100644 index 0000000000000000000000000000000000000000..aa9afff4d061333b18828274b1072d1b884f162c --- /dev/null +++ b/hyperparameter/c2/tabddpm/tabddpm-c2-20260504_181749/output/y_train.npy @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:58b1a722d369027a22bed702e3539c6fefa976741570c4c0a2f8546e2978c3d7 +size 11184 diff --git a/hyperparameter/c2/tabddpm/tabddpm-c2-20260504_181749/public_gate/normalized_schema_snapshot.json b/hyperparameter/c2/tabddpm/tabddpm-c2-20260504_181749/public_gate/normalized_schema_snapshot.json new file mode 100644 index 0000000000000000000000000000000000000000..689b1d00d96508e44ba40e58dc4560e19afc2b3b --- /dev/null +++ b/hyperparameter/c2/tabddpm/tabddpm-c2-20260504_181749/public_gate/normalized_schema_snapshot.json @@ -0,0 +1,144 @@ +{ + "dataset_id": "c2", + "target_column": "class", + "task_type": "classification", + "columns": [ + { + "name": "buying", + "role": "feature", + "semantic_type": "categorical", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 4, + "unique_ratio": 0.002894, + "example_values": [ + "vhigh", + "med", + "high", + "low" + ] + } + }, + { + "name": "maint", + "role": "feature", + "semantic_type": "categorical", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 4, + "unique_ratio": 0.002894, + "example_values": [ + "vhigh", + "low", + "med", + "high" + ] + } + }, + { + "name": "doors", + "role": "feature", + "semantic_type": "categorical", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 4, + "unique_ratio": 0.002894, + "example_values": [ + "2", + "5more", + "3", + "4" + ] + } + }, + { + "name": "persons", + "role": "feature", + "semantic_type": "categorical", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 3, + "unique_ratio": 0.002171, + "example_values": [ + "2", + "4", + "more" + ] + } + }, + { + "name": "lug_boot", + "role": "feature", + "semantic_type": "categorical", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 3, + "unique_ratio": 0.002171, + "example_values": [ + "small", + "big", + "med" + ] + } + }, + { + "name": "safety", + "role": "feature", + "semantic_type": "categorical", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 3, + "unique_ratio": 0.002171, + "example_values": [ + "low", + "high", + "med" + ] + } + }, + { + "name": "class", + "role": "target", + "semantic_type": "categorical", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 4, + "unique_ratio": 0.002894, + "example_values": [ + "unacc", + "good", + "acc", + "vgood" + ] + } + } + ] +} \ No newline at end of file diff --git a/hyperparameter/c2/tabddpm/tabddpm-c2-20260504_181749/public_gate/public_gate_report.json b/hyperparameter/c2/tabddpm/tabddpm-c2-20260504_181749/public_gate/public_gate_report.json new file mode 100644 index 0000000000000000000000000000000000000000..2e4cdcb2a4e28e40d59b17a83e773f622b7636a5 --- /dev/null +++ b/hyperparameter/c2/tabddpm/tabddpm-c2-20260504_181749/public_gate/public_gate_report.json @@ -0,0 +1,37 @@ +{ + "dataset_id": "c2", + "status": "pass", + "checks": [ + { + "check_id": "PG001_csv_parse_ok", + "status": "pass" + }, + { + "check_id": "PG002_split_header_consistent", + "status": "pass" + }, + { + "check_id": "PG003_profile_header_match", + "status": "pass" + }, + { + "check_id": "PG004_missing_token_normalized", + "status": "pass" + }, + { + "check_id": "PG005_semantic_type_validated", + "status": "pass" + }, + { + "check_id": "PG006_target_defined_and_valid", + "status": "pass" + } + ], + "target_column": "class", + "task_type": "classification", + "input_splits": { + "train": "/data/jialinzhang/SynthesizePipeline-server/DatasetNew/c2/c2-train.csv", + "val": "/data/jialinzhang/SynthesizePipeline-server/DatasetNew/c2/c2-val.csv", + "test": "/data/jialinzhang/SynthesizePipeline-server/DatasetNew/c2/c2-test.csv" + } +} \ No newline at end of file diff --git a/hyperparameter/c2/tabddpm/tabddpm-c2-20260504_181749/public_gate/staged_input_manifest.json b/hyperparameter/c2/tabddpm/tabddpm-c2-20260504_181749/public_gate/staged_input_manifest.json new file mode 100644 index 0000000000000000000000000000000000000000..c5576e0bfe137931b89c4fa040681374e5c8c0a4 --- /dev/null +++ b/hyperparameter/c2/tabddpm/tabddpm-c2-20260504_181749/public_gate/staged_input_manifest.json @@ -0,0 +1,149 @@ +{ + "dataset_id": "c2", + "target_column": "class", + "task_type": "classification", + "train_csv": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/c2/tabddpm/tabddpm-c2-20260504_181749/staged/public/train.csv", + "val_csv": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/c2/tabddpm/tabddpm-c2-20260504_181749/staged/public/val.csv", + "test_csv": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/c2/tabddpm/tabddpm-c2-20260504_181749/staged/public/test.csv", + "features_json": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/c2/tabddpm/tabddpm-c2-20260504_181749/staged/public/staged_features.json", + "public_gate_report": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/c2/tabddpm/tabddpm-c2-20260504_181749/public_gate/public_gate_report.json", + "column_schema": [ + { + "name": "buying", + "role": "feature", + "semantic_type": "categorical", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 4, + "unique_ratio": 0.002894, + "example_values": [ + "vhigh", + "med", + "high", + "low" + ] + } + }, + { + "name": "maint", + "role": "feature", + "semantic_type": "categorical", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 4, + "unique_ratio": 0.002894, + "example_values": [ + "vhigh", + "low", + "med", + "high" + ] + } + }, + { + "name": "doors", + "role": "feature", + "semantic_type": "categorical", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 4, + "unique_ratio": 0.002894, + "example_values": [ + "2", + "5more", + "3", + "4" + ] + } + }, + { + "name": "persons", + "role": "feature", + "semantic_type": "categorical", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 3, + "unique_ratio": 0.002171, + "example_values": [ + "2", + "4", + "more" + ] + } + }, + { + "name": "lug_boot", + "role": "feature", + "semantic_type": "categorical", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 3, + "unique_ratio": 0.002171, + "example_values": [ + "small", + "big", + "med" + ] + } + }, + { + "name": "safety", + "role": "feature", + "semantic_type": "categorical", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 3, + "unique_ratio": 0.002171, + "example_values": [ + "low", + "high", + "med" + ] + } + }, + { + "name": "class", + "role": "target", + "semantic_type": "categorical", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 4, + "unique_ratio": 0.002894, + "example_values": [ + "unacc", + "good", + "acc", + "vgood" + ] + } + } + ] +} \ No newline at end of file diff --git a/hyperparameter/c2/tabddpm/tabddpm-c2-20260504_181749/run_config.json b/hyperparameter/c2/tabddpm/tabddpm-c2-20260504_181749/run_config.json new file mode 100644 index 0000000000000000000000000000000000000000..a77b0683706f9f1055cae7b836d79da516631f50 --- /dev/null +++ b/hyperparameter/c2/tabddpm/tabddpm-c2-20260504_181749/run_config.json @@ -0,0 +1,45 @@ +{ + "schema_version": 1, + "recorded_at": "2026-05-04T18:17:49", + "dataset_id": "c2", + "model": "tabddpm", + "work_dir": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/c2/tabddpm/tabddpm-c2-20260504_181749", + "dataset_source_requested": "new", + "dataset_source_resolved": "new", + "cli_args": { + "model": "tabddpm", + "dataset": "c2", + "dataset_source": "new", + "train": true, + "generate": true, + "num_rows": 0, + "epochs": null, + "output_dir": null, + "model_dir": null, + "work_dir": null, + "resume": false, + "no_stats": false + }, + "resolved": { + "num_rows": 1382, + "model_path": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/c2/tabddpm/tabddpm-c2-20260504_181749", + "output_csv": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/c2/tabddpm/tabddpm-c2-20260504_181749/tabddpm-c2-1382-20260504_182010.csv" + }, + "input_artifacts": { + "public_gate_report": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/c2/tabddpm/tabddpm-c2-20260504_181749/public_gate/public_gate_report.json", + "public_manifest": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/c2/tabddpm/tabddpm-c2-20260504_181749/public_gate/staged_input_manifest.json", + "model_manifest": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/c2/tabddpm/tabddpm-c2-20260504_181749/staged/tabddpm/model_input_manifest.json", + "train_csv": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/c2/tabddpm/tabddpm-c2-20260504_181749/staged/public/train.csv", + "features_json": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/c2/tabddpm/tabddpm-c2-20260504_181749/staged/public/staged_features.json", + "target_column": "class", + "task_type": "classification" + }, + "env_overrides": { + "BENCHMARK_TABDDPM_GPUS": "device=3", + "TABDDPM_NUM_TIMESTEPS": "1000", + "TABDDPM_SAMPLE_BATCH_SIZE": "128", + "TABDDPM_STEPS_PER_EPOCH": "200", + "TABDDPM_TRAIN_BATCH_SIZE": "128", + "TABDDPM_TRAIN_LR": "0.0001" + } +} \ No newline at end of file diff --git a/hyperparameter/c2/tabddpm/tabddpm-c2-20260504_181749/runtime_result.json b/hyperparameter/c2/tabddpm/tabddpm-c2-20260504_181749/runtime_result.json new file mode 100644 index 0000000000000000000000000000000000000000..28fdced05fac3103d96ee7ed2ea9efcfa62ea7a1 --- /dev/null +++ b/hyperparameter/c2/tabddpm/tabddpm-c2-20260504_181749/runtime_result.json @@ -0,0 +1,27 @@ +{ + "dataset_id": "c2", + "model": "tabddpm", + "run_id": "tabddpm-c2-20260504_181749", + "public_gate_status": "pass", + "adapter_ready_status": "pass", + "train_status": "success", + "generate_status": "success", + "reason_code": null, + "reason_detail": null, + "artifacts": { + "synthetic_csv": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/c2/tabddpm/tabddpm-c2-20260504_181749/tabddpm-c2-1382-20260504_182010.csv", + "model_path": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/c2/tabddpm/tabddpm-c2-20260504_181749" + }, + "timings": { + "train": { + "started_at": "2026-05-04T18:17:49", + "ended_at": "2026-05-04T18:20:10", + "duration_sec": 140.832 + }, + "generate": { + "started_at": "2026-05-04T18:20:10", + "ended_at": "2026-05-04T18:21:25", + "duration_sec": 75.528 + } + } +} \ No newline at end of file diff --git a/hyperparameter/c2/tabddpm/tabddpm-c2-20260504_181749/staged/public/staged_features.json b/hyperparameter/c2/tabddpm/tabddpm-c2-20260504_181749/staged/public/staged_features.json new file mode 100644 index 0000000000000000000000000000000000000000..61783861dd5de501592f76acb0469cf3f3b2622a --- /dev/null +++ b/hyperparameter/c2/tabddpm/tabddpm-c2-20260504_181749/staged/public/staged_features.json @@ -0,0 +1,37 @@ +[ + { + "feature_name": "buying", + "data_type": "categorical", + "is_target": false + }, + { + "feature_name": "maint", + "data_type": "categorical", + "is_target": false + }, + { + "feature_name": "doors", + "data_type": "categorical", + "is_target": false + }, + { + "feature_name": "persons", + "data_type": "categorical", + "is_target": false + }, + { + "feature_name": "lug_boot", + "data_type": "categorical", + "is_target": false + }, + { + "feature_name": "safety", + "data_type": "categorical", + "is_target": false + }, + { + "feature_name": "class", + "data_type": "categorical", + "is_target": true + } +] \ No newline at end of file diff --git a/hyperparameter/c2/tabddpm/tabddpm-c2-20260504_181749/staged/public/test.csv b/hyperparameter/c2/tabddpm/tabddpm-c2-20260504_181749/staged/public/test.csv new file mode 100644 index 0000000000000000000000000000000000000000..392a0d7189a34d8f13ecf20a99d64b03230d517c --- /dev/null +++ b/hyperparameter/c2/tabddpm/tabddpm-c2-20260504_181749/staged/public/test.csv @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:b48114a7d0bc5bd9a07920f903c8d4aba8bf98bf2a66a050da03588b0245ca73 +size 5273 diff --git a/hyperparameter/c2/tabddpm/tabddpm-c2-20260504_181749/staged/public/train.csv b/hyperparameter/c2/tabddpm/tabddpm-c2-20260504_181749/staged/public/train.csv new file mode 100644 index 0000000000000000000000000000000000000000..da4f4d55134eebc0e51157d0d467536371db1484 --- /dev/null +++ b/hyperparameter/c2/tabddpm/tabddpm-c2-20260504_181749/staged/public/train.csv @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:4aed00c2c2b3f88a55a7ebff31b2e1b5e0e32fb0a7267e0b9d2779cd23e434dd +size 41565 diff --git a/hyperparameter/c2/tabddpm/tabddpm-c2-20260504_181749/staged/public/val.csv b/hyperparameter/c2/tabddpm/tabddpm-c2-20260504_181749/staged/public/val.csv new file mode 100644 index 0000000000000000000000000000000000000000..af8caf7ee42524188534a3daf32996dc491952d9 --- /dev/null +++ b/hyperparameter/c2/tabddpm/tabddpm-c2-20260504_181749/staged/public/val.csv @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:26e90c1170a57a14c05832ac88027722b1f3848f9662c7c09ef7c93dcba4cc01 +size 5176 diff --git a/hyperparameter/c2/tabddpm/tabddpm-c2-20260504_181749/staged/tabddpm/adapter_report.json b/hyperparameter/c2/tabddpm/tabddpm-c2-20260504_181749/staged/tabddpm/adapter_report.json new file mode 100644 index 0000000000000000000000000000000000000000..0e82b70786bfcfe5ddabf00888ea09b049e028ca --- /dev/null +++ b/hyperparameter/c2/tabddpm/tabddpm-c2-20260504_181749/staged/tabddpm/adapter_report.json @@ -0,0 +1,7 @@ +{ + "adapter_ready_status": "pass", + "adapter_fail_reason_code": null, + "adapter_fail_detail": null, + "adapter_transforms_applied": [], + "model_input_manifest": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/c2/tabddpm/tabddpm-c2-20260504_181749/staged/tabddpm/model_input_manifest.json" +} \ No newline at end of file diff --git a/hyperparameter/c2/tabddpm/tabddpm-c2-20260504_181749/staged/tabddpm/adapter_transforms_applied.json b/hyperparameter/c2/tabddpm/tabddpm-c2-20260504_181749/staged/tabddpm/adapter_transforms_applied.json new file mode 100644 index 0000000000000000000000000000000000000000..0637a088a01e8ddab3bf3fa98dbe804cbde1a0dc --- /dev/null +++ b/hyperparameter/c2/tabddpm/tabddpm-c2-20260504_181749/staged/tabddpm/adapter_transforms_applied.json @@ -0,0 +1 @@ +[] \ No newline at end of file diff --git a/hyperparameter/c2/tabddpm/tabddpm-c2-20260504_181749/staged/tabddpm/model_input_manifest.json b/hyperparameter/c2/tabddpm/tabddpm-c2-20260504_181749/staged/tabddpm/model_input_manifest.json new file mode 100644 index 0000000000000000000000000000000000000000..d3e099c7218d24a97a61f6a6be6f080da48b3ccf --- /dev/null +++ b/hyperparameter/c2/tabddpm/tabddpm-c2-20260504_181749/staged/tabddpm/model_input_manifest.json @@ -0,0 +1,151 @@ +{ + "dataset_id": "c2", + "model": "tabddpm", + "target_column": "class", + "task_type": "classification", + "column_schema": [ + { + "name": "buying", + "role": "feature", + "semantic_type": "categorical", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 4, + "unique_ratio": 0.002894, + "example_values": [ + "vhigh", + "med", + "high", + "low" + ] + } + }, + { + "name": "maint", + "role": "feature", + "semantic_type": "categorical", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 4, + "unique_ratio": 0.002894, + "example_values": [ + "vhigh", + "low", + "med", + "high" + ] + } + }, + { + "name": "doors", + "role": "feature", + "semantic_type": "categorical", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 4, + "unique_ratio": 0.002894, + "example_values": [ + "2", + "5more", + "3", + "4" + ] + } + }, + { + "name": "persons", + "role": "feature", + "semantic_type": "categorical", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 3, + "unique_ratio": 0.002171, + "example_values": [ + "2", + "4", + "more" + ] + } + }, + { + "name": "lug_boot", + "role": "feature", + "semantic_type": "categorical", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 3, + "unique_ratio": 0.002171, + "example_values": [ + "small", + "big", + "med" + ] + } + }, + { + "name": "safety", + "role": "feature", + "semantic_type": "categorical", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 3, + "unique_ratio": 0.002171, + "example_values": [ + "low", + "high", + "med" + ] + } + }, + { + "name": "class", + "role": "target", + "semantic_type": "categorical", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 4, + "unique_ratio": 0.002894, + "example_values": [ + "unacc", + "good", + "acc", + "vgood" + ] + } + } + ], + "public_manifest": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/c2/tabddpm/tabddpm-c2-20260504_181749/public_gate/staged_input_manifest.json", + "train_csv": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/c2/tabddpm/tabddpm-c2-20260504_181749/staged/public/train.csv", + "val_csv": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/c2/tabddpm/tabddpm-c2-20260504_181749/staged/public/val.csv", + "test_csv": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/c2/tabddpm/tabddpm-c2-20260504_181749/staged/public/test.csv", + "features_json": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/c2/tabddpm/tabddpm-c2-20260504_181749/staged/public/staged_features.json", + "public_gate_report": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/c2/tabddpm/tabddpm-c2-20260504_181749/public_gate/public_gate_report.json" +} \ No newline at end of file diff --git a/hyperparameter/c2/tabddpm/tabddpm-c2-20260504_181749/tabddpm-c2-1382-20260504_182010.csv b/hyperparameter/c2/tabddpm/tabddpm-c2-20260504_181749/tabddpm-c2-1382-20260504_182010.csv new file mode 100644 index 0000000000000000000000000000000000000000..cd33ee8a5c452879a93f39aef5f9d93c501781c5 --- /dev/null +++ b/hyperparameter/c2/tabddpm/tabddpm-c2-20260504_181749/tabddpm-c2-1382-20260504_182010.csv @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:c874f1344e6e15fbf7fdd175101405bf2d02d1454263c01da1f78ddce2fcf42e +size 38745 diff --git a/hyperparameter/c2/tabddpm/tabddpm-c2-20260504_181749/train_20260504_181749.log b/hyperparameter/c2/tabddpm/tabddpm-c2-20260504_181749/train_20260504_181749.log new file mode 100644 index 0000000000000000000000000000000000000000..f952577a7c4ca7baf8ea80be6b2c6f5f84d421f6 --- /dev/null +++ b/hyperparameter/c2/tabddpm/tabddpm-c2-20260504_181749/train_20260504_181749.log @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:fa161dd769878d75b6bd273875b5a0f2efb5eff558b21a5f28f7dface92f9323 +size 1614 diff --git a/hyperparameter/c2/tabddpm/tabddpm-c2-20260504_182138/_tabddpm_sample_r0.py b/hyperparameter/c2/tabddpm/tabddpm-c2-20260504_182138/_tabddpm_sample_r0.py new file mode 100644 index 0000000000000000000000000000000000000000..4ad1c4ed13237dbf738e182030a0d2ff5d707e16 --- /dev/null +++ b/hyperparameter/c2/tabddpm/tabddpm-c2-20260504_182138/_tabddpm_sample_r0.py @@ -0,0 +1,66 @@ +import os, sys, subprocess, json +import numpy as np +import pandas as pd + +tabddpm_root = "/workspace/tabddpm/code" +assert os.path.isdir(tabddpm_root), f"TabDDPM source not mounted: {tabddpm_root}" +env = os.environ.copy() +env["PYTHONPATH"] = tabddpm_root + (os.pathsep + env.get("PYTHONPATH", "")) + +# Reuse the compat wrapper (patches collections.Sequence for skorch) +wrapper = os.path.join(tabddpm_root, "_compat_run.py") +if not os.path.exists(wrapper): + with open(wrapper, "w") as f: + f.write( + "import collections, collections.abc\n" + "for _a in ('Sequence','MutableSequence','MutableMapping','Mapping'," + "'MutableSet','Set','Callable','Iterable','Iterator'):\n" + " if not hasattr(collections, _a): setattr(collections, _a, getattr(collections.abc, _a, None))\n" + "import sys, runpy\n" + "sys.argv = sys.argv[1:]\n" + "runpy.run_path(sys.argv[0], run_name='__main__')\n" + ) + +print(f"[TabDDPM] Sampling 1382 rows") +ret = subprocess.run( + [sys.executable, wrapper, "scripts/pipeline.py", + "--config", "/work/output-Benchmark-trainonly-v1/c2/tabddpm/tabddpm-c2-20260504_182138/config_sample_20260504_182502_r0.toml", + "--sample"], + cwd=tabddpm_root, + env=env +) +if ret.returncode != 0: + sys.exit(ret.returncode) + +# 将 .npy 输出转为 CSV(npy 在 TabDDPM 的 parent_dir,即 npy_dir) +info_path = "/work/output-Benchmark-trainonly-v1/c2/tabddpm/tabddpm-c2-20260504_182138/data/info.json" +with open(info_path) as f: + info = json.load(f) + +output_dir = "/work/output-Benchmark-trainonly-v1/c2/tabddpm/tabddpm-c2-20260504_182138/output" +col_names = info.get("column_names", []) + +parts = [] +x_num_path = os.path.join(output_dir, "X_num_train.npy") +x_cat_path = os.path.join(output_dir, "X_cat_train.npy") +y_path = os.path.join(output_dir, "y_train.npy") + +if os.path.exists(x_num_path): + parts.append(np.load(x_num_path, allow_pickle=True)) +if os.path.exists(x_cat_path): + parts.append(np.load(x_cat_path, allow_pickle=True).astype(float)) +if os.path.exists(y_path): + y = np.load(y_path, allow_pickle=True) + parts.append(y.reshape(-1, 1) if y.ndim == 1 else y) + +if parts: + combined = np.concatenate(parts, axis=1) + if col_names and len(col_names) == combined.shape[1]: + df = pd.DataFrame(combined, columns=col_names) + else: + df = pd.DataFrame(combined) + df.to_csv("/work/output-Benchmark-trainonly-v1/c2/tabddpm/tabddpm-c2-20260504_182138/tabddpm-c2-1382-20260504_182502.csv", index=False) + print(f"[TabDDPM] Saved {len(df)} rows -> /work/output-Benchmark-trainonly-v1/c2/tabddpm/tabddpm-c2-20260504_182138/tabddpm-c2-1382-20260504_182502.csv") +else: + print("[TabDDPM] WARNING: No output .npy files found") + sys.exit(1) diff --git a/hyperparameter/c2/tabddpm/tabddpm-c2-20260504_182138/_tabddpm_train.py b/hyperparameter/c2/tabddpm/tabddpm-c2-20260504_182138/_tabddpm_train.py new file mode 100644 index 0000000000000000000000000000000000000000..c70d5237ceaee08993960717f5a3765c2b836593 --- /dev/null +++ b/hyperparameter/c2/tabddpm/tabddpm-c2-20260504_182138/_tabddpm_train.py @@ -0,0 +1,32 @@ +import os, sys, subprocess + +tabddpm_root = "/workspace/tabddpm/code" +assert os.path.isdir(tabddpm_root), f"TabDDPM source not mounted: {tabddpm_root}" +env = os.environ.copy() +env["PYTHONPATH"] = tabddpm_root + (os.pathsep + env.get("PYTHONPATH", "")) + +# Write a wrapper that patches collections.Sequence (removed in Python 3.10+) +# before running pipeline.py - needed because skorch uses old API +wrapper = os.path.join(tabddpm_root, "_compat_run.py") +with open(wrapper, "w") as f: + f.write( + "import collections, collections.abc\n" + "for _a in ('Sequence','MutableSequence','MutableMapping','Mapping'," + "'MutableSet','Set','Callable','Iterable','Iterator'):\n" + " if not hasattr(collections, _a): setattr(collections, _a, getattr(collections.abc, _a, None))\n" + "import sys, runpy\n" + "sys.argv = sys.argv[1:]\n" + "runpy.run_path(sys.argv[0], run_name='__main__')\n" + ) + +print(f"[TabDDPM] Training, config=/work/output-Benchmark-trainonly-v1/c2/tabddpm/tabddpm-c2-20260504_182138/config.toml") +ret = subprocess.run( + [sys.executable, wrapper, "scripts/pipeline.py", + "--config", "/work/output-Benchmark-trainonly-v1/c2/tabddpm/tabddpm-c2-20260504_182138/config.toml", + "--train"], + cwd=tabddpm_root, + env=env +) +if ret.returncode != 0: + sys.exit(ret.returncode) +print("[TabDDPM] Training complete") diff --git a/hyperparameter/c2/tabddpm/tabddpm-c2-20260504_182138/config.toml b/hyperparameter/c2/tabddpm/tabddpm-c2-20260504_182138/config.toml new file mode 100644 index 0000000000000000000000000000000000000000..41b4af4edebd638815e97326eef1d5251a1e2fb3 --- /dev/null +++ b/hyperparameter/c2/tabddpm/tabddpm-c2-20260504_182138/config.toml @@ -0,0 +1,39 @@ +seed = 0 +parent_dir = "/work/output-Benchmark-trainonly-v1/c2/tabddpm/tabddpm-c2-20260504_182138/output" +real_data_path = "/work/output-Benchmark-trainonly-v1/c2/tabddpm/tabddpm-c2-20260504_182138/data" +model_type = "mlp" +num_numerical_features = 0 +device = "cuda:0" + +[model_params] +d_in = 6 +num_classes = 4 +is_y_cond = true + +[model_params.rtdl_params] +d_layers = [256, 256] +dropout = 0.0 + +[diffusion_params] +num_timesteps = 1000 +gaussian_loss_type = "mse" + +[train.main] +steps = 15000 +lr = 0.0001 +weight_decay = 0.0 +batch_size = 64 + +[train.T] +seed = 0 +normalization = "quantile" +num_nan_policy = "__none__" +cat_nan_policy = "__none__" +cat_min_frequency = "__none__" +cat_encoding = "__none__" +y_policy = "default" + +[sample] +num_samples = 1000 +batch_size = 64 +seed = 0 diff --git a/hyperparameter/c2/tabddpm/tabddpm-c2-20260504_182138/config_sample_20260504_182502_r0.toml b/hyperparameter/c2/tabddpm/tabddpm-c2-20260504_182138/config_sample_20260504_182502_r0.toml new file mode 100644 index 0000000000000000000000000000000000000000..bac8e3b718ef6088faf5ed2aebb811815a1d1168 --- /dev/null +++ b/hyperparameter/c2/tabddpm/tabddpm-c2-20260504_182138/config_sample_20260504_182502_r0.toml @@ -0,0 +1,39 @@ +seed = 0 +parent_dir = "/work/output-Benchmark-trainonly-v1/c2/tabddpm/tabddpm-c2-20260504_182138/output" +real_data_path = "/work/output-Benchmark-trainonly-v1/c2/tabddpm/tabddpm-c2-20260504_182138/data" +model_type = "mlp" +num_numerical_features = 0 +device = "cuda:0" + +[model_params] +d_in = 6 +num_classes = 4 +is_y_cond = true + +[model_params.rtdl_params] +d_layers = [256, 256] +dropout = 0.0 + +[diffusion_params] +num_timesteps = 1000 +gaussian_loss_type = "mse" + +[train.main] +steps = 15000 +lr = 0.0001 +weight_decay = 0.0 +batch_size = 64 + +[train.T] +seed = 0 +normalization = "quantile" +num_nan_policy = "__none__" +cat_nan_policy = "__none__" +cat_min_frequency = "__none__" +cat_encoding = "__none__" +y_policy = "default" + +[sample] +num_samples = 1382 +batch_size = 64 +seed = 0 diff --git a/hyperparameter/c2/tabddpm/tabddpm-c2-20260504_182138/data/X_cat_train.npy b/hyperparameter/c2/tabddpm/tabddpm-c2-20260504_182138/data/X_cat_train.npy new file mode 100644 index 0000000000000000000000000000000000000000..e99f1ae8dc9e7155e5c4bbbd3c2f3f7215c628f7 --- /dev/null +++ b/hyperparameter/c2/tabddpm/tabddpm-c2-20260504_182138/data/X_cat_train.npy @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:24d2203601ba060728920e754747e5a1dc3955a1b5775e147382fee4f1812542 +size 66464 diff --git a/hyperparameter/c2/tabddpm/tabddpm-c2-20260504_182138/data/info.json b/hyperparameter/c2/tabddpm/tabddpm-c2-20260504_182138/data/info.json new file mode 100644 index 0000000000000000000000000000000000000000..0f2b351a317260c450725d5a04373330ad3701a3 --- /dev/null +++ b/hyperparameter/c2/tabddpm/tabddpm-c2-20260504_182138/data/info.json @@ -0,0 +1,29 @@ +{ + "name": "benchmark_dataset", + "task_type": "multiclass", + "n_num_features": 0, + "n_cat_features": 6, + "train_size": 1382, + "num_col_idx": [], + "cat_col_idx": [ + 0, + 1, + 2, + 3, + 4, + 5 + ], + "target_col_idx": [ + 6 + ], + "column_names": [ + "buying", + "maint", + "doors", + "persons", + "lug_boot", + "safety", + "class" + ], + "num_classes": 4 +} \ No newline at end of file diff --git a/hyperparameter/c2/tabddpm/tabddpm-c2-20260504_182138/data/y_train.npy b/hyperparameter/c2/tabddpm/tabddpm-c2-20260504_182138/data/y_train.npy new file mode 100644 index 0000000000000000000000000000000000000000..8bfc8f9de7350657cd6411c55d2b9b87bea9c13a --- /dev/null +++ b/hyperparameter/c2/tabddpm/tabddpm-c2-20260504_182138/data/y_train.npy @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:3f8eb0b25043331a30fde5439f063eed59e7a76f45d7d102b9b4fbcd16b551b4 +size 11184 diff --git a/hyperparameter/c2/tabddpm/tabddpm-c2-20260504_182138/gen_20260504_182502_r0.log b/hyperparameter/c2/tabddpm/tabddpm-c2-20260504_182138/gen_20260504_182502_r0.log new file mode 100644 index 0000000000000000000000000000000000000000..80bd38bdeab6f7a07cf39a64185bc9eddddec97a --- /dev/null +++ b/hyperparameter/c2/tabddpm/tabddpm-c2-20260504_182138/gen_20260504_182502_r0.log @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:a85e96251697f348651e9b05dcd31fc3393d09896c11348629e9d2175601ddeb +size 462462 diff --git a/hyperparameter/c2/tabddpm/tabddpm-c2-20260504_182138/input_snapshot.json b/hyperparameter/c2/tabddpm/tabddpm-c2-20260504_182138/input_snapshot.json new file mode 100644 index 0000000000000000000000000000000000000000..772021148f055243c89ddfd9b6fa388ee33d05ea --- /dev/null +++ b/hyperparameter/c2/tabddpm/tabddpm-c2-20260504_182138/input_snapshot.json @@ -0,0 +1,36 @@ +{ + "dataset_id": "c2", + "model": "tabddpm", + "inputs": { + "train_csv": { + "path": "/data/jialinzhang/SynthesizePipeline-server/DatasetNew/c2/c2-train.csv", + "exists": true, + "size": 42948, + "sha256": "17bc560fa96bd00fb3b526e1e65bc91210b701d0d0a4e8bb9b4c5196cab56def" + }, + "val_csv": { + "path": "/data/jialinzhang/SynthesizePipeline-server/DatasetNew/c2/c2-val.csv", + "exists": true, + "size": 5349, + "sha256": "61e565eca62e65a7dccd9d51039a3170413379e10fc494e25870e7c4294863c9" + }, + "test_csv": { + "path": "/data/jialinzhang/SynthesizePipeline-server/DatasetNew/c2/c2-test.csv", + "exists": true, + "size": 5448, + "sha256": "cbcbb062a1faf5fa44b66c80532baa229e05b94fc42137269761e6c6d84af20a" + }, + "profile_json": { + "path": "/data/jialinzhang/SynthesizePipeline-server/DatasetNew/artifacts/data_core/tabular/c2/c2-dataset_profile.json", + "exists": true, + "size": 3240, + "sha256": "526b7163b2076c93c0bf4638438081ee8a6907065d5b608faa40d1a3dbc2a27b" + }, + "contract_json": { + "path": "/data/jialinzhang/SynthesizePipeline-server/DatasetNew/artifacts/data_core/tabular/c2/c2-dataset_contract_v1.json", + "exists": true, + "size": 3731, + "sha256": "fb595a876054c2ee9b4e10cfe83a5691588de1d25466cbb9d473c18ad3604009" + } + } +} \ No newline at end of file diff --git a/hyperparameter/c2/tabddpm/tabddpm-c2-20260504_182138/output/X_cat_train.npy b/hyperparameter/c2/tabddpm/tabddpm-c2-20260504_182138/output/X_cat_train.npy new file mode 100644 index 0000000000000000000000000000000000000000..3f83bec78234d1459a4d98455434f862d2670ee0 --- /dev/null +++ b/hyperparameter/c2/tabddpm/tabddpm-c2-20260504_182138/output/X_cat_train.npy @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:d4c88a54d5cd1488a7c42eb7f8ebf78082d55e3d10f3237eb1d8a3b48a73469d +size 16885 diff --git a/hyperparameter/c2/tabddpm/tabddpm-c2-20260504_182138/output/X_cat_unnorm.npy b/hyperparameter/c2/tabddpm/tabddpm-c2-20260504_182138/output/X_cat_unnorm.npy new file mode 100644 index 0000000000000000000000000000000000000000..bbaf76999f9bdd14610605c235bba3b52291dc6d --- /dev/null +++ b/hyperparameter/c2/tabddpm/tabddpm-c2-20260504_182138/output/X_cat_unnorm.npy @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:97564e99e98681836a5663b938896f89a802fcf8bfa59167fa52b0c83eb6748d +size 66464 diff --git a/hyperparameter/c2/tabddpm/tabddpm-c2-20260504_182138/output/config.toml b/hyperparameter/c2/tabddpm/tabddpm-c2-20260504_182138/output/config.toml new file mode 100644 index 0000000000000000000000000000000000000000..bac8e3b718ef6088faf5ed2aebb811815a1d1168 --- /dev/null +++ b/hyperparameter/c2/tabddpm/tabddpm-c2-20260504_182138/output/config.toml @@ -0,0 +1,39 @@ +seed = 0 +parent_dir = "/work/output-Benchmark-trainonly-v1/c2/tabddpm/tabddpm-c2-20260504_182138/output" +real_data_path = "/work/output-Benchmark-trainonly-v1/c2/tabddpm/tabddpm-c2-20260504_182138/data" +model_type = "mlp" +num_numerical_features = 0 +device = "cuda:0" + +[model_params] +d_in = 6 +num_classes = 4 +is_y_cond = true + +[model_params.rtdl_params] +d_layers = [256, 256] +dropout = 0.0 + +[diffusion_params] +num_timesteps = 1000 +gaussian_loss_type = "mse" + +[train.main] +steps = 15000 +lr = 0.0001 +weight_decay = 0.0 +batch_size = 64 + +[train.T] +seed = 0 +normalization = "quantile" +num_nan_policy = "__none__" +cat_nan_policy = "__none__" +cat_min_frequency = "__none__" +cat_encoding = "__none__" +y_policy = "default" + +[sample] +num_samples = 1382 +batch_size = 64 +seed = 0 diff --git a/hyperparameter/c2/tabddpm/tabddpm-c2-20260504_182138/output/info.json b/hyperparameter/c2/tabddpm/tabddpm-c2-20260504_182138/output/info.json new file mode 100644 index 0000000000000000000000000000000000000000..0f2b351a317260c450725d5a04373330ad3701a3 --- /dev/null +++ b/hyperparameter/c2/tabddpm/tabddpm-c2-20260504_182138/output/info.json @@ -0,0 +1,29 @@ +{ + "name": "benchmark_dataset", + "task_type": "multiclass", + "n_num_features": 0, + "n_cat_features": 6, + "train_size": 1382, + "num_col_idx": [], + "cat_col_idx": [ + 0, + 1, + 2, + 3, + 4, + 5 + ], + "target_col_idx": [ + 6 + ], + "column_names": [ + "buying", + "maint", + "doors", + "persons", + "lug_boot", + "safety", + "class" + ], + "num_classes": 4 +} \ No newline at end of file diff --git a/hyperparameter/c2/tabddpm/tabddpm-c2-20260504_182138/output/loss.csv b/hyperparameter/c2/tabddpm/tabddpm-c2-20260504_182138/output/loss.csv new file mode 100644 index 0000000000000000000000000000000000000000..1c96baa2d276b2f13210ee831a63e0bd30c93d28 --- /dev/null +++ b/hyperparameter/c2/tabddpm/tabddpm-c2-20260504_182138/output/loss.csv @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:25c503d9708cca256ea209475660a1ba7160a604acf047482a5ae2305e55fdff +size 3794 diff --git a/hyperparameter/c2/tabddpm/tabddpm-c2-20260504_182138/output/model.pt b/hyperparameter/c2/tabddpm/tabddpm-c2-20260504_182138/output/model.pt new file mode 100644 index 0000000000000000000000000000000000000000..6b30530d36381b4ff0b472da8b1131c0db024801 --- /dev/null +++ b/hyperparameter/c2/tabddpm/tabddpm-c2-20260504_182138/output/model.pt @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:52065003eea8a2af1509efe1d2f67416604d0cc4fb0059fbc8be64edebdaa2d8 +size 566934 diff --git a/hyperparameter/c2/tabddpm/tabddpm-c2-20260504_182138/output/model_ema.pt b/hyperparameter/c2/tabddpm/tabddpm-c2-20260504_182138/output/model_ema.pt new file mode 100644 index 0000000000000000000000000000000000000000..f3765e7f0dc7249bc368a8bacc76441a8dba0452 --- /dev/null +++ b/hyperparameter/c2/tabddpm/tabddpm-c2-20260504_182138/output/model_ema.pt @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:675e90e1f08945eeddcb2242922cf32716685b4adb5ed80887806802768364b9 +size 567778 diff --git a/hyperparameter/c2/tabddpm/tabddpm-c2-20260504_182138/output/y_train.npy b/hyperparameter/c2/tabddpm/tabddpm-c2-20260504_182138/output/y_train.npy new file mode 100644 index 0000000000000000000000000000000000000000..aa9afff4d061333b18828274b1072d1b884f162c --- /dev/null +++ b/hyperparameter/c2/tabddpm/tabddpm-c2-20260504_182138/output/y_train.npy @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:58b1a722d369027a22bed702e3539c6fefa976741570c4c0a2f8546e2978c3d7 +size 11184 diff --git a/hyperparameter/c2/tabddpm/tabddpm-c2-20260504_182138/public_gate/normalized_schema_snapshot.json b/hyperparameter/c2/tabddpm/tabddpm-c2-20260504_182138/public_gate/normalized_schema_snapshot.json new file mode 100644 index 0000000000000000000000000000000000000000..689b1d00d96508e44ba40e58dc4560e19afc2b3b --- /dev/null +++ b/hyperparameter/c2/tabddpm/tabddpm-c2-20260504_182138/public_gate/normalized_schema_snapshot.json @@ -0,0 +1,144 @@ +{ + "dataset_id": "c2", + "target_column": "class", + "task_type": "classification", + "columns": [ + { + "name": "buying", + "role": "feature", + "semantic_type": "categorical", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 4, + "unique_ratio": 0.002894, + "example_values": [ + "vhigh", + "med", + "high", + "low" + ] + } + }, + { + "name": "maint", + "role": "feature", + "semantic_type": "categorical", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 4, + "unique_ratio": 0.002894, + "example_values": [ + "vhigh", + "low", + "med", + "high" + ] + } + }, + { + "name": "doors", + "role": "feature", + "semantic_type": "categorical", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 4, + "unique_ratio": 0.002894, + "example_values": [ + "2", + "5more", + "3", + "4" + ] + } + }, + { + "name": "persons", + "role": "feature", + "semantic_type": "categorical", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 3, + "unique_ratio": 0.002171, + "example_values": [ + "2", + "4", + "more" + ] + } + }, + { + "name": "lug_boot", + "role": "feature", + "semantic_type": "categorical", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 3, + "unique_ratio": 0.002171, + "example_values": [ + "small", + "big", + "med" + ] + } + }, + { + "name": "safety", + "role": "feature", + "semantic_type": "categorical", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 3, + "unique_ratio": 0.002171, + "example_values": [ + "low", + "high", + "med" + ] + } + }, + { + "name": "class", + "role": "target", + "semantic_type": "categorical", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 4, + "unique_ratio": 0.002894, + "example_values": [ + "unacc", + "good", + "acc", + "vgood" + ] + } + } + ] +} \ No newline at end of file diff --git a/hyperparameter/c2/tabddpm/tabddpm-c2-20260504_182138/public_gate/public_gate_report.json b/hyperparameter/c2/tabddpm/tabddpm-c2-20260504_182138/public_gate/public_gate_report.json new file mode 100644 index 0000000000000000000000000000000000000000..2e4cdcb2a4e28e40d59b17a83e773f622b7636a5 --- /dev/null +++ b/hyperparameter/c2/tabddpm/tabddpm-c2-20260504_182138/public_gate/public_gate_report.json @@ -0,0 +1,37 @@ +{ + "dataset_id": "c2", + "status": "pass", + "checks": [ + { + "check_id": "PG001_csv_parse_ok", + "status": "pass" + }, + { + "check_id": "PG002_split_header_consistent", + "status": "pass" + }, + { + "check_id": "PG003_profile_header_match", + "status": "pass" + }, + { + "check_id": "PG004_missing_token_normalized", + "status": "pass" + }, + { + "check_id": "PG005_semantic_type_validated", + "status": "pass" + }, + { + "check_id": "PG006_target_defined_and_valid", + "status": "pass" + } + ], + "target_column": "class", + "task_type": "classification", + "input_splits": { + "train": "/data/jialinzhang/SynthesizePipeline-server/DatasetNew/c2/c2-train.csv", + "val": "/data/jialinzhang/SynthesizePipeline-server/DatasetNew/c2/c2-val.csv", + "test": "/data/jialinzhang/SynthesizePipeline-server/DatasetNew/c2/c2-test.csv" + } +} \ No newline at end of file diff --git a/hyperparameter/c2/tabddpm/tabddpm-c2-20260504_182138/public_gate/staged_input_manifest.json b/hyperparameter/c2/tabddpm/tabddpm-c2-20260504_182138/public_gate/staged_input_manifest.json new file mode 100644 index 0000000000000000000000000000000000000000..380fb956d8ab3aa1ad2c0cf1a89a0ec17818ab27 --- /dev/null +++ b/hyperparameter/c2/tabddpm/tabddpm-c2-20260504_182138/public_gate/staged_input_manifest.json @@ -0,0 +1,149 @@ +{ + "dataset_id": "c2", + "target_column": "class", + "task_type": "classification", + "train_csv": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/c2/tabddpm/tabddpm-c2-20260504_182138/staged/public/train.csv", + "val_csv": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/c2/tabddpm/tabddpm-c2-20260504_182138/staged/public/val.csv", + "test_csv": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/c2/tabddpm/tabddpm-c2-20260504_182138/staged/public/test.csv", + "features_json": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/c2/tabddpm/tabddpm-c2-20260504_182138/staged/public/staged_features.json", + "public_gate_report": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/c2/tabddpm/tabddpm-c2-20260504_182138/public_gate/public_gate_report.json", + "column_schema": [ + { + "name": "buying", + "role": "feature", + "semantic_type": "categorical", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 4, + "unique_ratio": 0.002894, + "example_values": [ + "vhigh", + "med", + "high", + "low" + ] + } + }, + { + "name": "maint", + "role": "feature", + "semantic_type": "categorical", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 4, + "unique_ratio": 0.002894, + "example_values": [ + "vhigh", + "low", + "med", + "high" + ] + } + }, + { + "name": "doors", + "role": "feature", + "semantic_type": "categorical", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 4, + "unique_ratio": 0.002894, + "example_values": [ + "2", + "5more", + "3", + "4" + ] + } + }, + { + "name": "persons", + "role": "feature", + "semantic_type": "categorical", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 3, + "unique_ratio": 0.002171, + "example_values": [ + "2", + "4", + "more" + ] + } + }, + { + "name": "lug_boot", + "role": "feature", + "semantic_type": "categorical", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 3, + "unique_ratio": 0.002171, + "example_values": [ + "small", + "big", + "med" + ] + } + }, + { + "name": "safety", + "role": "feature", + "semantic_type": "categorical", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 3, + "unique_ratio": 0.002171, + "example_values": [ + "low", + "high", + "med" + ] + } + }, + { + "name": "class", + "role": "target", + "semantic_type": "categorical", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 4, + "unique_ratio": 0.002894, + "example_values": [ + "unacc", + "good", + "acc", + "vgood" + ] + } + } + ] +} \ No newline at end of file diff --git a/hyperparameter/c2/tabddpm/tabddpm-c2-20260504_182138/run_config.json b/hyperparameter/c2/tabddpm/tabddpm-c2-20260504_182138/run_config.json new file mode 100644 index 0000000000000000000000000000000000000000..f252812f649760e69b3bd587351927eb0288ba1a --- /dev/null +++ b/hyperparameter/c2/tabddpm/tabddpm-c2-20260504_182138/run_config.json @@ -0,0 +1,45 @@ +{ + "schema_version": 1, + "recorded_at": "2026-05-04T18:21:38", + "dataset_id": "c2", + "model": "tabddpm", + "work_dir": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/c2/tabddpm/tabddpm-c2-20260504_182138", + "dataset_source_requested": "new", + "dataset_source_resolved": "new", + "cli_args": { + "model": "tabddpm", + "dataset": "c2", + "dataset_source": "new", + "train": true, + "generate": true, + "num_rows": 0, + "epochs": null, + "output_dir": null, + "model_dir": null, + "work_dir": null, + "resume": false, + "no_stats": false + }, + "resolved": { + "num_rows": 1382, + "model_path": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/c2/tabddpm/tabddpm-c2-20260504_182138", + "output_csv": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/c2/tabddpm/tabddpm-c2-20260504_182138/tabddpm-c2-1382-20260504_182502.csv" + }, + "input_artifacts": { + "public_gate_report": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/c2/tabddpm/tabddpm-c2-20260504_182138/public_gate/public_gate_report.json", + "public_manifest": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/c2/tabddpm/tabddpm-c2-20260504_182138/public_gate/staged_input_manifest.json", + "model_manifest": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/c2/tabddpm/tabddpm-c2-20260504_182138/staged/tabddpm/model_input_manifest.json", + "train_csv": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/c2/tabddpm/tabddpm-c2-20260504_182138/staged/public/train.csv", + "features_json": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/c2/tabddpm/tabddpm-c2-20260504_182138/staged/public/staged_features.json", + "target_column": "class", + "task_type": "classification" + }, + "env_overrides": { + "BENCHMARK_TABDDPM_GPUS": "device=3", + "TABDDPM_NUM_TIMESTEPS": "1000", + "TABDDPM_SAMPLE_BATCH_SIZE": "64", + "TABDDPM_STEPS_PER_EPOCH": "300", + "TABDDPM_TRAIN_BATCH_SIZE": "64", + "TABDDPM_TRAIN_LR": "0.0001" + } +} \ No newline at end of file diff --git a/hyperparameter/c2/tabddpm/tabddpm-c2-20260504_182138/runtime_result.json b/hyperparameter/c2/tabddpm/tabddpm-c2-20260504_182138/runtime_result.json new file mode 100644 index 0000000000000000000000000000000000000000..4124e2b89fa2294c77b896a9a30b6f9cf17c256b --- /dev/null +++ b/hyperparameter/c2/tabddpm/tabddpm-c2-20260504_182138/runtime_result.json @@ -0,0 +1,27 @@ +{ + "dataset_id": "c2", + "model": "tabddpm", + "run_id": "tabddpm-c2-20260504_182138", + "public_gate_status": "pass", + "adapter_ready_status": "pass", + "train_status": "success", + "generate_status": "success", + "reason_code": null, + "reason_detail": null, + "artifacts": { + "synthetic_csv": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/c2/tabddpm/tabddpm-c2-20260504_182138/tabddpm-c2-1382-20260504_182502.csv", + "model_path": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/c2/tabddpm/tabddpm-c2-20260504_182138" + }, + "timings": { + "train": { + "started_at": "2026-05-04T18:21:38", + "ended_at": "2026-05-04T18:25:02", + "duration_sec": 203.691 + }, + "generate": { + "started_at": "2026-05-04T18:25:02", + "ended_at": "2026-05-04T18:27:25", + "duration_sec": 143.645 + } + } +} \ No newline at end of file diff --git a/hyperparameter/c2/tabddpm/tabddpm-c2-20260504_182138/staged/public/staged_features.json b/hyperparameter/c2/tabddpm/tabddpm-c2-20260504_182138/staged/public/staged_features.json new file mode 100644 index 0000000000000000000000000000000000000000..61783861dd5de501592f76acb0469cf3f3b2622a --- /dev/null +++ b/hyperparameter/c2/tabddpm/tabddpm-c2-20260504_182138/staged/public/staged_features.json @@ -0,0 +1,37 @@ +[ + { + "feature_name": "buying", + "data_type": "categorical", + "is_target": false + }, + { + "feature_name": "maint", + "data_type": "categorical", + "is_target": false + }, + { + "feature_name": "doors", + "data_type": "categorical", + "is_target": false + }, + { + "feature_name": "persons", + "data_type": "categorical", + "is_target": false + }, + { + "feature_name": "lug_boot", + "data_type": "categorical", + "is_target": false + }, + { + "feature_name": "safety", + "data_type": "categorical", + "is_target": false + }, + { + "feature_name": "class", + "data_type": "categorical", + "is_target": true + } +] \ No newline at end of file diff --git a/hyperparameter/c2/tabddpm/tabddpm-c2-20260504_182138/staged/public/test.csv b/hyperparameter/c2/tabddpm/tabddpm-c2-20260504_182138/staged/public/test.csv new file mode 100644 index 0000000000000000000000000000000000000000..392a0d7189a34d8f13ecf20a99d64b03230d517c --- /dev/null +++ b/hyperparameter/c2/tabddpm/tabddpm-c2-20260504_182138/staged/public/test.csv @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:b48114a7d0bc5bd9a07920f903c8d4aba8bf98bf2a66a050da03588b0245ca73 +size 5273 diff --git a/hyperparameter/c2/tabddpm/tabddpm-c2-20260504_182138/staged/public/train.csv b/hyperparameter/c2/tabddpm/tabddpm-c2-20260504_182138/staged/public/train.csv new file mode 100644 index 0000000000000000000000000000000000000000..da4f4d55134eebc0e51157d0d467536371db1484 --- /dev/null +++ b/hyperparameter/c2/tabddpm/tabddpm-c2-20260504_182138/staged/public/train.csv @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:4aed00c2c2b3f88a55a7ebff31b2e1b5e0e32fb0a7267e0b9d2779cd23e434dd +size 41565 diff --git a/hyperparameter/c2/tabddpm/tabddpm-c2-20260504_182138/staged/public/val.csv b/hyperparameter/c2/tabddpm/tabddpm-c2-20260504_182138/staged/public/val.csv new file mode 100644 index 0000000000000000000000000000000000000000..af8caf7ee42524188534a3daf32996dc491952d9 --- /dev/null +++ b/hyperparameter/c2/tabddpm/tabddpm-c2-20260504_182138/staged/public/val.csv @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:26e90c1170a57a14c05832ac88027722b1f3848f9662c7c09ef7c93dcba4cc01 +size 5176 diff --git a/hyperparameter/c2/tabddpm/tabddpm-c2-20260504_182138/staged/tabddpm/adapter_report.json b/hyperparameter/c2/tabddpm/tabddpm-c2-20260504_182138/staged/tabddpm/adapter_report.json new file mode 100644 index 0000000000000000000000000000000000000000..dc8c04a16aff674a1fcc24a505cf9aed892bfcef --- /dev/null +++ b/hyperparameter/c2/tabddpm/tabddpm-c2-20260504_182138/staged/tabddpm/adapter_report.json @@ -0,0 +1,7 @@ +{ + "adapter_ready_status": "pass", + "adapter_fail_reason_code": null, + "adapter_fail_detail": null, + "adapter_transforms_applied": [], + "model_input_manifest": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/c2/tabddpm/tabddpm-c2-20260504_182138/staged/tabddpm/model_input_manifest.json" +} \ No newline at end of file diff --git a/hyperparameter/c2/tabddpm/tabddpm-c2-20260504_182138/staged/tabddpm/adapter_transforms_applied.json b/hyperparameter/c2/tabddpm/tabddpm-c2-20260504_182138/staged/tabddpm/adapter_transforms_applied.json new file mode 100644 index 0000000000000000000000000000000000000000..0637a088a01e8ddab3bf3fa98dbe804cbde1a0dc --- /dev/null +++ b/hyperparameter/c2/tabddpm/tabddpm-c2-20260504_182138/staged/tabddpm/adapter_transforms_applied.json @@ -0,0 +1 @@ +[] \ No newline at end of file diff --git a/hyperparameter/c2/tabddpm/tabddpm-c2-20260504_182138/staged/tabddpm/model_input_manifest.json b/hyperparameter/c2/tabddpm/tabddpm-c2-20260504_182138/staged/tabddpm/model_input_manifest.json new file mode 100644 index 0000000000000000000000000000000000000000..5fcd421cc5e0f39cb682a75929c6953eb77076c4 --- /dev/null +++ b/hyperparameter/c2/tabddpm/tabddpm-c2-20260504_182138/staged/tabddpm/model_input_manifest.json @@ -0,0 +1,151 @@ +{ + "dataset_id": "c2", + "model": "tabddpm", + "target_column": "class", + "task_type": "classification", + "column_schema": [ + { + "name": "buying", + "role": "feature", + "semantic_type": "categorical", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 4, + "unique_ratio": 0.002894, + "example_values": [ + "vhigh", + "med", + "high", + "low" + ] + } + }, + { + "name": "maint", + "role": "feature", + "semantic_type": "categorical", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 4, + "unique_ratio": 0.002894, + "example_values": [ + "vhigh", + "low", + "med", + "high" + ] + } + }, + { + "name": "doors", + "role": "feature", + "semantic_type": "categorical", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 4, + "unique_ratio": 0.002894, + "example_values": [ + "2", + "5more", + "3", + "4" + ] + } + }, + { + "name": "persons", + "role": "feature", + "semantic_type": "categorical", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 3, + "unique_ratio": 0.002171, + "example_values": [ + "2", + "4", + "more" + ] + } + }, + { + "name": "lug_boot", + "role": "feature", + "semantic_type": "categorical", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 3, + "unique_ratio": 0.002171, + "example_values": [ + "small", + "big", + "med" + ] + } + }, + { + "name": "safety", + "role": "feature", + "semantic_type": "categorical", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 3, + "unique_ratio": 0.002171, + "example_values": [ + "low", + "high", + "med" + ] + } + }, + { + "name": "class", + "role": "target", + "semantic_type": "categorical", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 4, + "unique_ratio": 0.002894, + "example_values": [ + "unacc", + "good", + "acc", + "vgood" + ] + } + } + ], + "public_manifest": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/c2/tabddpm/tabddpm-c2-20260504_182138/public_gate/staged_input_manifest.json", + "train_csv": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/c2/tabddpm/tabddpm-c2-20260504_182138/staged/public/train.csv", + "val_csv": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/c2/tabddpm/tabddpm-c2-20260504_182138/staged/public/val.csv", + "test_csv": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/c2/tabddpm/tabddpm-c2-20260504_182138/staged/public/test.csv", + "features_json": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/c2/tabddpm/tabddpm-c2-20260504_182138/staged/public/staged_features.json", + "public_gate_report": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/c2/tabddpm/tabddpm-c2-20260504_182138/public_gate/public_gate_report.json" +} \ No newline at end of file diff --git a/hyperparameter/c2/tabddpm/tabddpm-c2-20260504_182138/tabddpm-c2-1382-20260504_182502.csv b/hyperparameter/c2/tabddpm/tabddpm-c2-20260504_182138/tabddpm-c2-1382-20260504_182502.csv new file mode 100644 index 0000000000000000000000000000000000000000..289097c193ce7648e50f1eb61d37eacca34a5bf8 --- /dev/null +++ b/hyperparameter/c2/tabddpm/tabddpm-c2-20260504_182138/tabddpm-c2-1382-20260504_182502.csv @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:37d5e0cce721f2a3a005d86e30be4d6b152fc11d72c981c3a7570ac910f9a491 +size 38745 diff --git a/hyperparameter/c2/tabddpm/tabddpm-c2-20260504_182138/train_20260504_182138.log b/hyperparameter/c2/tabddpm/tabddpm-c2-20260504_182138/train_20260504_182138.log new file mode 100644 index 0000000000000000000000000000000000000000..4ea692f141c46798da60b7cc869ae0e7de6008aa --- /dev/null +++ b/hyperparameter/c2/tabddpm/tabddpm-c2-20260504_182138/train_20260504_182138.log @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:9030650113e49b0e1eb037c5f21d6dd7797712efef6b578a5fe505867ebf443b +size 2154 diff --git a/hyperparameter/c2/tabdiff/tabdiff-c2-20260504_191431/_tabdiff_gen.py b/hyperparameter/c2/tabdiff/tabdiff-c2-20260504_191431/_tabdiff_gen.py new file mode 100644 index 0000000000000000000000000000000000000000..5db0a28dd6dd3d6becf14a0ed9b2f82b72fe9e32 --- /dev/null +++ b/hyperparameter/c2/tabdiff/tabdiff-c2-20260504_191431/_tabdiff_gen.py @@ -0,0 +1,36 @@ + +import os, shutil, subprocess, sys +td = r"/workspace/TabDiff" +name = r"pipeline_c2" +src = r"/work/output-Benchmark-trainonly-v1/c2/tabdiff/tabdiff-c2-20260504_191431/tabular_bundle/pipeline_c2" +dst_data = os.path.join(td, "data", name) +dst_syn = os.path.join(td, "synthetic", name) +shutil.rmtree(dst_data, ignore_errors=True) +shutil.copytree(src, dst_data) +os.makedirs(dst_syn, exist_ok=True) +for fn in ("real.csv", "test.csv", "val.csv"): + shutil.copy(os.path.join(src, fn), os.path.join(dst_syn, fn)) +os.chdir(td) +os.environ["PYTHONPATH"] = td + os.pathsep + os.environ.get("PYTHONPATH", "") +subprocess.check_call([ + sys.executable, "-m", "tabdiff.main", + "--dataname", name, "--mode", "test", "--gpu", "0", + "--no_wandb", "--exp_name", r"adapter_learnable", + "--ckpt_path", r"/workspace/TabDiff/tabdiff/ckpt/pipeline_c2/adapter_learnable/model_500.pt", + "--num_samples_to_generate", str(int(1382)), +]) +# test() 写入 tabdiff/result////samples.csv +import glob as g +base = os.path.join(td, "tabdiff", "result", name, r"adapter_learnable") +best = None +best_t = -1.0 +for root, _, files in os.walk(base): + if "samples.csv" in files: + p = os.path.join(root, "samples.csv") + t = os.path.getmtime(p) + if t > best_t: + best_t = t + best = p +if not best: + raise SystemExit("tabdiff: no samples.csv under " + base) +shutil.copy(best, r"/work/output-Benchmark-trainonly-v1/c2/tabdiff/tabdiff-c2-20260504_191431/tabdiff-c2-1382-20260504_191604.csv") diff --git a/hyperparameter/c2/tabdiff/tabdiff-c2-20260504_191431/_tabdiff_train.py b/hyperparameter/c2/tabdiff/tabdiff-c2-20260504_191431/_tabdiff_train.py new file mode 100644 index 0000000000000000000000000000000000000000..afec795f9ec015b99b725a8c095ef372950fc46f --- /dev/null +++ b/hyperparameter/c2/tabdiff/tabdiff-c2-20260504_191431/_tabdiff_train.py @@ -0,0 +1,21 @@ + +import os, shutil, subprocess, sys +td = r"/workspace/TabDiff" +name = r"pipeline_c2" +src = r"/work/output-Benchmark-trainonly-v1/c2/tabdiff/tabdiff-c2-20260504_191431/tabular_bundle/pipeline_c2" +dst_data = os.path.join(td, "data", name) +dst_syn = os.path.join(td, "synthetic", name) +shutil.rmtree(dst_data, ignore_errors=True) +shutil.copytree(src, dst_data) +os.makedirs(dst_syn, exist_ok=True) +for fn in ("real.csv", "test.csv", "val.csv"): + shutil.copy(os.path.join(src, fn), os.path.join(dst_syn, fn)) +os.chdir(td) +os.environ["PYTHONPATH"] = td + os.pathsep + os.environ.get("PYTHONPATH", "") +os.environ["TABDIFF_SMOKE_STEPS"] = "100" +os.environ["TABDIFF_ADAPTER_TRAIN"] = "1" +subprocess.check_call([ + sys.executable, "-m", "tabdiff.main", + "--dataname", name, "--mode", "train", "--gpu", "0", + "--no_wandb", "--exp_name", r"adapter_learnable", +]) diff --git a/hyperparameter/c2/tabdiff/tabdiff-c2-20260504_191431/gen_20260504_191604.log b/hyperparameter/c2/tabdiff/tabdiff-c2-20260504_191431/gen_20260504_191604.log new file mode 100644 index 0000000000000000000000000000000000000000..1f6f0e5dd61d6b18dc5f824316c224f1a98f12d1 --- /dev/null +++ b/hyperparameter/c2/tabdiff/tabdiff-c2-20260504_191431/gen_20260504_191604.log @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:ab3a5509999584817b44889c4c489569f83601d7961819af04e647f90b362741 +size 4472 diff --git a/hyperparameter/c2/tabdiff/tabdiff-c2-20260504_191431/input_snapshot.json b/hyperparameter/c2/tabdiff/tabdiff-c2-20260504_191431/input_snapshot.json new file mode 100644 index 0000000000000000000000000000000000000000..6d83542090e9720c485d72abe1bb75a800175917 --- /dev/null +++ b/hyperparameter/c2/tabdiff/tabdiff-c2-20260504_191431/input_snapshot.json @@ -0,0 +1,36 @@ +{ + "dataset_id": "c2", + "model": "tabdiff", + "inputs": { + "train_csv": { + "path": "/data/jialinzhang/SynthesizePipeline-server/DatasetNew/c2/c2-train.csv", + "exists": true, + "size": 42948, + "sha256": "17bc560fa96bd00fb3b526e1e65bc91210b701d0d0a4e8bb9b4c5196cab56def" + }, + "val_csv": { + "path": "/data/jialinzhang/SynthesizePipeline-server/DatasetNew/c2/c2-val.csv", + "exists": true, + "size": 5349, + "sha256": "61e565eca62e65a7dccd9d51039a3170413379e10fc494e25870e7c4294863c9" + }, + "test_csv": { + "path": "/data/jialinzhang/SynthesizePipeline-server/DatasetNew/c2/c2-test.csv", + "exists": true, + "size": 5448, + "sha256": "cbcbb062a1faf5fa44b66c80532baa229e05b94fc42137269761e6c6d84af20a" + }, + "profile_json": { + "path": "/data/jialinzhang/SynthesizePipeline-server/DatasetNew/artifacts/data_core/tabular/c2/c2-dataset_profile.json", + "exists": true, + "size": 3240, + "sha256": "526b7163b2076c93c0bf4638438081ee8a6907065d5b608faa40d1a3dbc2a27b" + }, + "contract_json": { + "path": "/data/jialinzhang/SynthesizePipeline-server/DatasetNew/artifacts/data_core/tabular/c2/c2-dataset_contract_v1.json", + "exists": true, + "size": 3731, + "sha256": "fb595a876054c2ee9b4e10cfe83a5691588de1d25466cbb9d473c18ad3604009" + } + } +} \ No newline at end of file diff --git a/hyperparameter/c2/tabdiff/tabdiff-c2-20260504_191431/models_tabdiff/trained.pt b/hyperparameter/c2/tabdiff/tabdiff-c2-20260504_191431/models_tabdiff/trained.pt new file mode 100644 index 0000000000000000000000000000000000000000..bc319a55a9c7152a1137f968b6fa1c735125ad11 --- /dev/null +++ b/hyperparameter/c2/tabdiff/tabdiff-c2-20260504_191431/models_tabdiff/trained.pt @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:306660b8aad4549267c68390b017e15ddb9bc06a02c80515eb72a97ae31a81eb +size 74 diff --git a/hyperparameter/c2/tabdiff/tabdiff-c2-20260504_191431/public_gate/normalized_schema_snapshot.json b/hyperparameter/c2/tabdiff/tabdiff-c2-20260504_191431/public_gate/normalized_schema_snapshot.json new file mode 100644 index 0000000000000000000000000000000000000000..689b1d00d96508e44ba40e58dc4560e19afc2b3b --- /dev/null +++ b/hyperparameter/c2/tabdiff/tabdiff-c2-20260504_191431/public_gate/normalized_schema_snapshot.json @@ -0,0 +1,144 @@ +{ + "dataset_id": "c2", + "target_column": "class", + "task_type": "classification", + "columns": [ + { + "name": "buying", + "role": "feature", + "semantic_type": "categorical", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 4, + "unique_ratio": 0.002894, + "example_values": [ + "vhigh", + "med", + "high", + "low" + ] + } + }, + { + "name": "maint", + "role": "feature", + "semantic_type": "categorical", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 4, + "unique_ratio": 0.002894, + "example_values": [ + "vhigh", + "low", + "med", + "high" + ] + } + }, + { + "name": "doors", + "role": "feature", + "semantic_type": "categorical", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 4, + "unique_ratio": 0.002894, + "example_values": [ + "2", + "5more", + "3", + "4" + ] + } + }, + { + "name": "persons", + "role": "feature", + "semantic_type": "categorical", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 3, + "unique_ratio": 0.002171, + "example_values": [ + "2", + "4", + "more" + ] + } + }, + { + "name": "lug_boot", + "role": "feature", + "semantic_type": "categorical", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 3, + "unique_ratio": 0.002171, + "example_values": [ + "small", + "big", + "med" + ] + } + }, + { + "name": "safety", + "role": "feature", + "semantic_type": "categorical", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 3, + "unique_ratio": 0.002171, + "example_values": [ + "low", + "high", + "med" + ] + } + }, + { + "name": "class", + "role": "target", + "semantic_type": "categorical", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 4, + "unique_ratio": 0.002894, + "example_values": [ + "unacc", + "good", + "acc", + "vgood" + ] + } + } + ] +} \ No newline at end of file diff --git a/hyperparameter/c2/tabdiff/tabdiff-c2-20260504_191431/public_gate/public_gate_report.json b/hyperparameter/c2/tabdiff/tabdiff-c2-20260504_191431/public_gate/public_gate_report.json new file mode 100644 index 0000000000000000000000000000000000000000..2e4cdcb2a4e28e40d59b17a83e773f622b7636a5 --- /dev/null +++ b/hyperparameter/c2/tabdiff/tabdiff-c2-20260504_191431/public_gate/public_gate_report.json @@ -0,0 +1,37 @@ +{ + "dataset_id": "c2", + "status": "pass", + "checks": [ + { + "check_id": "PG001_csv_parse_ok", + "status": "pass" + }, + { + "check_id": "PG002_split_header_consistent", + "status": "pass" + }, + { + "check_id": "PG003_profile_header_match", + "status": "pass" + }, + { + "check_id": "PG004_missing_token_normalized", + "status": "pass" + }, + { + "check_id": "PG005_semantic_type_validated", + "status": "pass" + }, + { + "check_id": "PG006_target_defined_and_valid", + "status": "pass" + } + ], + "target_column": "class", + "task_type": "classification", + "input_splits": { + "train": "/data/jialinzhang/SynthesizePipeline-server/DatasetNew/c2/c2-train.csv", + "val": "/data/jialinzhang/SynthesizePipeline-server/DatasetNew/c2/c2-val.csv", + "test": "/data/jialinzhang/SynthesizePipeline-server/DatasetNew/c2/c2-test.csv" + } +} \ No newline at end of file diff --git a/hyperparameter/c2/tabdiff/tabdiff-c2-20260504_191431/public_gate/staged_input_manifest.json b/hyperparameter/c2/tabdiff/tabdiff-c2-20260504_191431/public_gate/staged_input_manifest.json new file mode 100644 index 0000000000000000000000000000000000000000..a7b9abb85722e7563962e42bf11aeb1bcf441714 --- /dev/null +++ b/hyperparameter/c2/tabdiff/tabdiff-c2-20260504_191431/public_gate/staged_input_manifest.json @@ -0,0 +1,149 @@ +{ + "dataset_id": "c2", + "target_column": "class", + "task_type": "classification", + "train_csv": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/c2/tabdiff/tabdiff-c2-20260504_191431/staged/public/train.csv", + "val_csv": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/c2/tabdiff/tabdiff-c2-20260504_191431/staged/public/val.csv", + "test_csv": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/c2/tabdiff/tabdiff-c2-20260504_191431/staged/public/test.csv", + "features_json": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/c2/tabdiff/tabdiff-c2-20260504_191431/staged/public/staged_features.json", + "public_gate_report": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/c2/tabdiff/tabdiff-c2-20260504_191431/public_gate/public_gate_report.json", + "column_schema": [ + { + "name": "buying", + "role": "feature", + "semantic_type": "categorical", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 4, + "unique_ratio": 0.002894, + "example_values": [ + "vhigh", + "med", + "high", + "low" + ] + } + }, + { + "name": "maint", + "role": "feature", + "semantic_type": "categorical", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 4, + "unique_ratio": 0.002894, + "example_values": [ + "vhigh", + "low", + "med", + "high" + ] + } + }, + { + "name": "doors", + "role": "feature", + "semantic_type": "categorical", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 4, + "unique_ratio": 0.002894, + "example_values": [ + "2", + "5more", + "3", + "4" + ] + } + }, + { + "name": "persons", + "role": "feature", + "semantic_type": "categorical", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 3, + "unique_ratio": 0.002171, + "example_values": [ + "2", + "4", + "more" + ] + } + }, + { + "name": "lug_boot", + "role": "feature", + "semantic_type": "categorical", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 3, + "unique_ratio": 0.002171, + "example_values": [ + "small", + "big", + "med" + ] + } + }, + { + "name": "safety", + "role": "feature", + "semantic_type": "categorical", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 3, + "unique_ratio": 0.002171, + "example_values": [ + "low", + "high", + "med" + ] + } + }, + { + "name": "class", + "role": "target", + "semantic_type": "categorical", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 4, + "unique_ratio": 0.002894, + "example_values": [ + "unacc", + "good", + "acc", + "vgood" + ] + } + } + ] +} \ No newline at end of file diff --git a/hyperparameter/c2/tabdiff/tabdiff-c2-20260504_191431/run_config.json b/hyperparameter/c2/tabdiff/tabdiff-c2-20260504_191431/run_config.json new file mode 100644 index 0000000000000000000000000000000000000000..2f6851aacf810aea3e89e06d81e32ff984f42089 --- /dev/null +++ b/hyperparameter/c2/tabdiff/tabdiff-c2-20260504_191431/run_config.json @@ -0,0 +1,40 @@ +{ + "schema_version": 1, + "recorded_at": "2026-05-04T19:14:31", + "dataset_id": "c2", + "model": "tabdiff", + "work_dir": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/c2/tabdiff/tabdiff-c2-20260504_191431", + "dataset_source_requested": "new", + "dataset_source_resolved": "new", + "cli_args": { + "model": "tabdiff", + "dataset": "c2", + "dataset_source": "new", + "train": true, + "generate": true, + "num_rows": 0, + "epochs": 100, + "output_dir": null, + "model_dir": null, + "work_dir": null, + "resume": false, + "no_stats": false + }, + "resolved": { + "num_rows": 1382, + "model_path": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/c2/tabdiff/tabdiff-c2-20260504_191431/models_tabdiff/trained.pt", + "output_csv": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/c2/tabdiff/tabdiff-c2-20260504_191431/tabdiff-c2-1382-20260504_191604.csv" + }, + "input_artifacts": { + "public_gate_report": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/c2/tabdiff/tabdiff-c2-20260504_191431/public_gate/public_gate_report.json", + "public_manifest": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/c2/tabdiff/tabdiff-c2-20260504_191431/public_gate/staged_input_manifest.json", + "model_manifest": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/c2/tabdiff/tabdiff-c2-20260504_191431/staged/tabdiff/model_input_manifest.json", + "train_csv": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/c2/tabdiff/tabdiff-c2-20260504_191431/staged/public/train.csv", + "features_json": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/c2/tabdiff/tabdiff-c2-20260504_191431/staged/public/staged_features.json", + "target_column": "class", + "task_type": "classification" + }, + "env_overrides": { + "BENCHMARK_TABDIFF_GPUS": "device=3" + } +} \ No newline at end of file diff --git a/hyperparameter/c2/tabdiff/tabdiff-c2-20260504_191431/runtime_result.json b/hyperparameter/c2/tabdiff/tabdiff-c2-20260504_191431/runtime_result.json new file mode 100644 index 0000000000000000000000000000000000000000..05486c59a85663f708f4dc2ba32473d8ad0a11e9 --- /dev/null +++ b/hyperparameter/c2/tabdiff/tabdiff-c2-20260504_191431/runtime_result.json @@ -0,0 +1,27 @@ +{ + "dataset_id": "c2", + "model": "tabdiff", + "run_id": "tabdiff-c2-20260504_191431", + "public_gate_status": "pass", + "adapter_ready_status": "pass", + "train_status": "success", + "generate_status": "success", + "reason_code": null, + "reason_detail": null, + "artifacts": { + "synthetic_csv": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/c2/tabdiff/tabdiff-c2-20260504_191431/tabdiff-c2-1382-20260504_191604.csv", + "model_path": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/c2/tabdiff/tabdiff-c2-20260504_191431/models_tabdiff/trained.pt" + }, + "timings": { + "train": { + "started_at": "2026-05-04T19:14:31", + "ended_at": "2026-05-04T19:16:04", + "duration_sec": 93.226 + }, + "generate": { + "started_at": "2026-05-04T19:16:04", + "ended_at": "2026-05-04T19:16:14", + "duration_sec": 9.525 + } + } +} \ No newline at end of file diff --git a/hyperparameter/c2/tabdiff/tabdiff-c2-20260504_191431/staged/public/staged_features.json b/hyperparameter/c2/tabdiff/tabdiff-c2-20260504_191431/staged/public/staged_features.json new file mode 100644 index 0000000000000000000000000000000000000000..61783861dd5de501592f76acb0469cf3f3b2622a --- /dev/null +++ b/hyperparameter/c2/tabdiff/tabdiff-c2-20260504_191431/staged/public/staged_features.json @@ -0,0 +1,37 @@ +[ + { + "feature_name": "buying", + "data_type": "categorical", + "is_target": false + }, + { + "feature_name": "maint", + "data_type": "categorical", + "is_target": false + }, + { + "feature_name": "doors", + "data_type": "categorical", + "is_target": false + }, + { + "feature_name": "persons", + "data_type": "categorical", + "is_target": false + }, + { + "feature_name": "lug_boot", + "data_type": "categorical", + "is_target": false + }, + { + "feature_name": "safety", + "data_type": "categorical", + "is_target": false + }, + { + "feature_name": "class", + "data_type": "categorical", + "is_target": true + } +] \ No newline at end of file diff --git a/hyperparameter/c2/tabdiff/tabdiff-c2-20260504_191431/staged/public/test.csv b/hyperparameter/c2/tabdiff/tabdiff-c2-20260504_191431/staged/public/test.csv new file mode 100644 index 0000000000000000000000000000000000000000..392a0d7189a34d8f13ecf20a99d64b03230d517c --- /dev/null +++ b/hyperparameter/c2/tabdiff/tabdiff-c2-20260504_191431/staged/public/test.csv @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:b48114a7d0bc5bd9a07920f903c8d4aba8bf98bf2a66a050da03588b0245ca73 +size 5273 diff --git a/hyperparameter/c2/tabdiff/tabdiff-c2-20260504_191431/staged/public/train.csv b/hyperparameter/c2/tabdiff/tabdiff-c2-20260504_191431/staged/public/train.csv new file mode 100644 index 0000000000000000000000000000000000000000..da4f4d55134eebc0e51157d0d467536371db1484 --- /dev/null +++ b/hyperparameter/c2/tabdiff/tabdiff-c2-20260504_191431/staged/public/train.csv @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:4aed00c2c2b3f88a55a7ebff31b2e1b5e0e32fb0a7267e0b9d2779cd23e434dd +size 41565 diff --git a/hyperparameter/c2/tabdiff/tabdiff-c2-20260504_191431/staged/public/val.csv b/hyperparameter/c2/tabdiff/tabdiff-c2-20260504_191431/staged/public/val.csv new file mode 100644 index 0000000000000000000000000000000000000000..af8caf7ee42524188534a3daf32996dc491952d9 --- /dev/null +++ b/hyperparameter/c2/tabdiff/tabdiff-c2-20260504_191431/staged/public/val.csv @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:26e90c1170a57a14c05832ac88027722b1f3848f9662c7c09ef7c93dcba4cc01 +size 5176 diff --git a/hyperparameter/c2/tabdiff/tabdiff-c2-20260504_191431/staged/tabdiff/adapter_report.json b/hyperparameter/c2/tabdiff/tabdiff-c2-20260504_191431/staged/tabdiff/adapter_report.json new file mode 100644 index 0000000000000000000000000000000000000000..12770fda866324dd8f37086502a49b031dce64e7 --- /dev/null +++ b/hyperparameter/c2/tabdiff/tabdiff-c2-20260504_191431/staged/tabdiff/adapter_report.json @@ -0,0 +1,7 @@ +{ + "adapter_ready_status": "pass", + "adapter_fail_reason_code": null, + "adapter_fail_detail": null, + "adapter_transforms_applied": [], + "model_input_manifest": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/c2/tabdiff/tabdiff-c2-20260504_191431/staged/tabdiff/model_input_manifest.json" +} \ No newline at end of file diff --git a/hyperparameter/c2/tabdiff/tabdiff-c2-20260504_191431/staged/tabdiff/adapter_transforms_applied.json b/hyperparameter/c2/tabdiff/tabdiff-c2-20260504_191431/staged/tabdiff/adapter_transforms_applied.json new file mode 100644 index 0000000000000000000000000000000000000000..0637a088a01e8ddab3bf3fa98dbe804cbde1a0dc --- /dev/null +++ b/hyperparameter/c2/tabdiff/tabdiff-c2-20260504_191431/staged/tabdiff/adapter_transforms_applied.json @@ -0,0 +1 @@ +[] \ No newline at end of file diff --git a/hyperparameter/c2/tabdiff/tabdiff-c2-20260504_191431/staged/tabdiff/model_input_manifest.json b/hyperparameter/c2/tabdiff/tabdiff-c2-20260504_191431/staged/tabdiff/model_input_manifest.json new file mode 100644 index 0000000000000000000000000000000000000000..d71af090d5ed1173bf493159d535efd72a646d89 --- /dev/null +++ b/hyperparameter/c2/tabdiff/tabdiff-c2-20260504_191431/staged/tabdiff/model_input_manifest.json @@ -0,0 +1,151 @@ +{ + "dataset_id": "c2", + "model": "tabdiff", + "target_column": "class", + "task_type": "classification", + "column_schema": [ + { + "name": "buying", + "role": "feature", + "semantic_type": "categorical", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 4, + "unique_ratio": 0.002894, + "example_values": [ + "vhigh", + "med", + "high", + "low" + ] + } + }, + { + "name": "maint", + "role": "feature", + "semantic_type": "categorical", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 4, + "unique_ratio": 0.002894, + "example_values": [ + "vhigh", + "low", + "med", + "high" + ] + } + }, + { + "name": "doors", + "role": "feature", + "semantic_type": "categorical", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 4, + "unique_ratio": 0.002894, + "example_values": [ + "2", + "5more", + "3", + "4" + ] + } + }, + { + "name": "persons", + "role": "feature", + "semantic_type": "categorical", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 3, + "unique_ratio": 0.002171, + "example_values": [ + "2", + "4", + "more" + ] + } + }, + { + "name": "lug_boot", + "role": "feature", + "semantic_type": "categorical", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 3, + "unique_ratio": 0.002171, + "example_values": [ + "small", + "big", + "med" + ] + } + }, + { + "name": "safety", + "role": "feature", + "semantic_type": "categorical", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 3, + "unique_ratio": 0.002171, + "example_values": [ + "low", + "high", + "med" + ] + } + }, + { + "name": "class", + "role": "target", + "semantic_type": "categorical", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 4, + "unique_ratio": 0.002894, + "example_values": [ + "unacc", + "good", + "acc", + "vgood" + ] + } + } + ], + "public_manifest": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/c2/tabdiff/tabdiff-c2-20260504_191431/public_gate/staged_input_manifest.json", + "train_csv": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/c2/tabdiff/tabdiff-c2-20260504_191431/staged/public/train.csv", + "val_csv": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/c2/tabdiff/tabdiff-c2-20260504_191431/staged/public/val.csv", + "test_csv": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/c2/tabdiff/tabdiff-c2-20260504_191431/staged/public/test.csv", + "features_json": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/c2/tabdiff/tabdiff-c2-20260504_191431/staged/public/staged_features.json", + "public_gate_report": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/c2/tabdiff/tabdiff-c2-20260504_191431/public_gate/public_gate_report.json" +} \ No newline at end of file diff --git a/hyperparameter/c2/tabdiff/tabdiff-c2-20260504_191431/tabdiff-c2-1382-20260504_191604.csv b/hyperparameter/c2/tabdiff/tabdiff-c2-20260504_191431/tabdiff-c2-1382-20260504_191604.csv new file mode 100644 index 0000000000000000000000000000000000000000..21b9d0f19ff2d235f1b32c395b5e1f56a0fe96f8 --- /dev/null +++ b/hyperparameter/c2/tabdiff/tabdiff-c2-20260504_191431/tabdiff-c2-1382-20260504_191604.csv @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:b13f8cd98bb371e14feb5267645dcb9d560b1085efbb788ad681837310eb5c72 +size 19397 diff --git a/hyperparameter/c2/tabdiff/tabdiff-c2-20260504_191431/tabdiff_train_meta.json b/hyperparameter/c2/tabdiff/tabdiff-c2-20260504_191431/tabdiff_train_meta.json new file mode 100644 index 0000000000000000000000000000000000000000..ec3d31ff800fd7bf95d9487c1120f28fda017a31 --- /dev/null +++ b/hyperparameter/c2/tabdiff/tabdiff-c2-20260504_191431/tabdiff_train_meta.json @@ -0,0 +1,5 @@ +{ + "exp_name": "adapter_learnable", + "dataname": "pipeline_c2", + "steps": 100 +} \ No newline at end of file diff --git a/hyperparameter/c2/tabdiff/tabdiff-c2-20260504_191431/tabular_bundle/pipeline_c2/X_cat_test.npy b/hyperparameter/c2/tabdiff/tabdiff-c2-20260504_191431/tabular_bundle/pipeline_c2/X_cat_test.npy new file mode 100644 index 0000000000000000000000000000000000000000..e99f1ae8dc9e7155e5c4bbbd3c2f3f7215c628f7 --- /dev/null +++ b/hyperparameter/c2/tabdiff/tabdiff-c2-20260504_191431/tabular_bundle/pipeline_c2/X_cat_test.npy @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:24d2203601ba060728920e754747e5a1dc3955a1b5775e147382fee4f1812542 +size 66464 diff --git a/hyperparameter/c2/tabdiff/tabdiff-c2-20260504_191431/tabular_bundle/pipeline_c2/X_cat_train.npy b/hyperparameter/c2/tabdiff/tabdiff-c2-20260504_191431/tabular_bundle/pipeline_c2/X_cat_train.npy new file mode 100644 index 0000000000000000000000000000000000000000..e99f1ae8dc9e7155e5c4bbbd3c2f3f7215c628f7 --- /dev/null +++ b/hyperparameter/c2/tabdiff/tabdiff-c2-20260504_191431/tabular_bundle/pipeline_c2/X_cat_train.npy @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:24d2203601ba060728920e754747e5a1dc3955a1b5775e147382fee4f1812542 +size 66464 diff --git a/hyperparameter/c2/tabdiff/tabdiff-c2-20260504_191431/tabular_bundle/pipeline_c2/X_cat_val.npy b/hyperparameter/c2/tabdiff/tabdiff-c2-20260504_191431/tabular_bundle/pipeline_c2/X_cat_val.npy new file mode 100644 index 0000000000000000000000000000000000000000..e99f1ae8dc9e7155e5c4bbbd3c2f3f7215c628f7 --- /dev/null +++ b/hyperparameter/c2/tabdiff/tabdiff-c2-20260504_191431/tabular_bundle/pipeline_c2/X_cat_val.npy @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:24d2203601ba060728920e754747e5a1dc3955a1b5775e147382fee4f1812542 +size 66464 diff --git a/hyperparameter/c2/tabdiff/tabdiff-c2-20260504_191431/tabular_bundle/pipeline_c2/X_num_test.npy b/hyperparameter/c2/tabdiff/tabdiff-c2-20260504_191431/tabular_bundle/pipeline_c2/X_num_test.npy new file mode 100644 index 0000000000000000000000000000000000000000..9370f90332827a72be71bf3347770cac2c0354f5 --- /dev/null +++ b/hyperparameter/c2/tabdiff/tabdiff-c2-20260504_191431/tabular_bundle/pipeline_c2/X_num_test.npy @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:79dbdf62b6c69f71f3fef2bfcff35e322b2ac9387fc545116c7bc0078b3de9ec +size 128 diff --git a/hyperparameter/c2/tabdiff/tabdiff-c2-20260504_191431/tabular_bundle/pipeline_c2/X_num_train.npy b/hyperparameter/c2/tabdiff/tabdiff-c2-20260504_191431/tabular_bundle/pipeline_c2/X_num_train.npy new file mode 100644 index 0000000000000000000000000000000000000000..9370f90332827a72be71bf3347770cac2c0354f5 --- /dev/null +++ b/hyperparameter/c2/tabdiff/tabdiff-c2-20260504_191431/tabular_bundle/pipeline_c2/X_num_train.npy @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:79dbdf62b6c69f71f3fef2bfcff35e322b2ac9387fc545116c7bc0078b3de9ec +size 128 diff --git a/hyperparameter/c2/tabdiff/tabdiff-c2-20260504_191431/tabular_bundle/pipeline_c2/X_num_val.npy b/hyperparameter/c2/tabdiff/tabdiff-c2-20260504_191431/tabular_bundle/pipeline_c2/X_num_val.npy new file mode 100644 index 0000000000000000000000000000000000000000..9370f90332827a72be71bf3347770cac2c0354f5 --- /dev/null +++ b/hyperparameter/c2/tabdiff/tabdiff-c2-20260504_191431/tabular_bundle/pipeline_c2/X_num_val.npy @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:79dbdf62b6c69f71f3fef2bfcff35e322b2ac9387fc545116c7bc0078b3de9ec +size 128 diff --git a/hyperparameter/c2/tabdiff/tabdiff-c2-20260504_191431/tabular_bundle/pipeline_c2/info.json b/hyperparameter/c2/tabdiff/tabdiff-c2-20260504_191431/tabular_bundle/pipeline_c2/info.json new file mode 100644 index 0000000000000000000000000000000000000000..bf064b213901b4f614a949e23e2e89a63aac1488 --- /dev/null +++ b/hyperparameter/c2/tabdiff/tabdiff-c2-20260504_191431/tabular_bundle/pipeline_c2/info.json @@ -0,0 +1,88 @@ +{ + "name": "pipeline_c2", + "task_type": "multiclass", + "n_num_features": 0, + "n_cat_features": 6, + "train_size": 1382, + "test_num": 1382, + "val_num": 1382, + "train_num": 1382, + "bundle_note": "val/test matrices are train copies (train-only policy; no real held-out rows).", + "num_col_idx": [], + "cat_col_idx": [ + 0, + 1, + 2, + 3, + 4, + 5 + ], + "target_col_idx": [ + 6 + ], + "column_names": [ + "buying", + "maint", + "doors", + "persons", + "lug_boot", + "safety", + "class" + ], + "int_col_idx": [], + "int_columns": [], + "int_col_idx_wrt_num": [], + "metadata": { + "columns": { + "0": { + "sdtype": "categorical" + }, + "1": { + "sdtype": "categorical" + }, + "2": { + "sdtype": "categorical" + }, + "3": { + "sdtype": "categorical" + }, + "4": { + "sdtype": "categorical" + }, + "5": { + "sdtype": "categorical" + }, + "6": { + "sdtype": "categorical" + } + } + }, + "idx_mapping": { + "0": 0, + "1": 1, + "2": 2, + "3": 3, + "4": 4, + "5": 5, + "6": 6 + }, + "inverse_idx_mapping": { + "0": 0, + "1": 1, + "2": 2, + "3": 3, + "4": 4, + "5": 5, + "6": 6 + }, + "idx_name_mapping": { + "0": "buying", + "1": "maint", + "2": "doors", + "3": "persons", + "4": "lug_boot", + "5": "safety", + "6": "class" + }, + "n_classes": 4 +} \ No newline at end of file diff --git a/hyperparameter/c2/tabdiff/tabdiff-c2-20260504_191431/tabular_bundle/pipeline_c2/real.csv b/hyperparameter/c2/tabdiff/tabdiff-c2-20260504_191431/tabular_bundle/pipeline_c2/real.csv new file mode 100644 index 0000000000000000000000000000000000000000..f778fcd2758e712a195229c6f50504f94f046c8d --- /dev/null +++ b/hyperparameter/c2/tabdiff/tabdiff-c2-20260504_191431/tabular_bundle/pipeline_c2/real.csv @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:a54d8aab34745836c4d0260009787c8064c2c3e9d99040c5a6856190eb0745e9 +size 24215 diff --git a/hyperparameter/c2/tabdiff/tabdiff-c2-20260504_191431/tabular_bundle/pipeline_c2/test.csv b/hyperparameter/c2/tabdiff/tabdiff-c2-20260504_191431/tabular_bundle/pipeline_c2/test.csv new file mode 100644 index 0000000000000000000000000000000000000000..f778fcd2758e712a195229c6f50504f94f046c8d --- /dev/null +++ b/hyperparameter/c2/tabdiff/tabdiff-c2-20260504_191431/tabular_bundle/pipeline_c2/test.csv @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:a54d8aab34745836c4d0260009787c8064c2c3e9d99040c5a6856190eb0745e9 +size 24215 diff --git a/hyperparameter/c2/tabdiff/tabdiff-c2-20260504_191431/tabular_bundle/pipeline_c2/val.csv b/hyperparameter/c2/tabdiff/tabdiff-c2-20260504_191431/tabular_bundle/pipeline_c2/val.csv new file mode 100644 index 0000000000000000000000000000000000000000..f778fcd2758e712a195229c6f50504f94f046c8d --- /dev/null +++ b/hyperparameter/c2/tabdiff/tabdiff-c2-20260504_191431/tabular_bundle/pipeline_c2/val.csv @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:a54d8aab34745836c4d0260009787c8064c2c3e9d99040c5a6856190eb0745e9 +size 24215 diff --git a/hyperparameter/c2/tabdiff/tabdiff-c2-20260504_191431/tabular_bundle/pipeline_c2/y_test.npy b/hyperparameter/c2/tabdiff/tabdiff-c2-20260504_191431/tabular_bundle/pipeline_c2/y_test.npy new file mode 100644 index 0000000000000000000000000000000000000000..8bfc8f9de7350657cd6411c55d2b9b87bea9c13a --- /dev/null +++ b/hyperparameter/c2/tabdiff/tabdiff-c2-20260504_191431/tabular_bundle/pipeline_c2/y_test.npy @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:3f8eb0b25043331a30fde5439f063eed59e7a76f45d7d102b9b4fbcd16b551b4 +size 11184 diff --git a/hyperparameter/c2/tabdiff/tabdiff-c2-20260504_191431/tabular_bundle/pipeline_c2/y_train.npy b/hyperparameter/c2/tabdiff/tabdiff-c2-20260504_191431/tabular_bundle/pipeline_c2/y_train.npy new file mode 100644 index 0000000000000000000000000000000000000000..8bfc8f9de7350657cd6411c55d2b9b87bea9c13a --- /dev/null +++ b/hyperparameter/c2/tabdiff/tabdiff-c2-20260504_191431/tabular_bundle/pipeline_c2/y_train.npy @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:3f8eb0b25043331a30fde5439f063eed59e7a76f45d7d102b9b4fbcd16b551b4 +size 11184 diff --git a/hyperparameter/c2/tabdiff/tabdiff-c2-20260504_191431/tabular_bundle/pipeline_c2/y_val.npy b/hyperparameter/c2/tabdiff/tabdiff-c2-20260504_191431/tabular_bundle/pipeline_c2/y_val.npy new file mode 100644 index 0000000000000000000000000000000000000000..8bfc8f9de7350657cd6411c55d2b9b87bea9c13a --- /dev/null +++ b/hyperparameter/c2/tabdiff/tabdiff-c2-20260504_191431/tabular_bundle/pipeline_c2/y_val.npy @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:3f8eb0b25043331a30fde5439f063eed59e7a76f45d7d102b9b4fbcd16b551b4 +size 11184 diff --git a/hyperparameter/c2/tabdiff/tabdiff-c2-20260504_191431/train_20260504_191431.log b/hyperparameter/c2/tabdiff/tabdiff-c2-20260504_191431/train_20260504_191431.log new file mode 100644 index 0000000000000000000000000000000000000000..8c2be13053241e0d7cc11dbc22129e613f8c528e --- /dev/null +++ b/hyperparameter/c2/tabdiff/tabdiff-c2-20260504_191431/train_20260504_191431.log @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:9e7c3d4f7abfca30efa4eca12801f4d8f03559a0df4568570ed02ff57a83986e +size 62771 diff --git a/hyperparameter/c2/tabdiff/tabdiff-c2-20260504_191626/_tabdiff_gen.py b/hyperparameter/c2/tabdiff/tabdiff-c2-20260504_191626/_tabdiff_gen.py new file mode 100644 index 0000000000000000000000000000000000000000..1e23f78f0891bbc9ec624e83da429b584572200b --- /dev/null +++ b/hyperparameter/c2/tabdiff/tabdiff-c2-20260504_191626/_tabdiff_gen.py @@ -0,0 +1,36 @@ + +import os, shutil, subprocess, sys +td = r"/workspace/TabDiff" +name = r"pipeline_c2" +src = r"/work/output-Benchmark-trainonly-v1/c2/tabdiff/tabdiff-c2-20260504_191626/tabular_bundle/pipeline_c2" +dst_data = os.path.join(td, "data", name) +dst_syn = os.path.join(td, "synthetic", name) +shutil.rmtree(dst_data, ignore_errors=True) +shutil.copytree(src, dst_data) +os.makedirs(dst_syn, exist_ok=True) +for fn in ("real.csv", "test.csv", "val.csv"): + shutil.copy(os.path.join(src, fn), os.path.join(dst_syn, fn)) +os.chdir(td) +os.environ["PYTHONPATH"] = td + os.pathsep + os.environ.get("PYTHONPATH", "") +subprocess.check_call([ + sys.executable, "-m", "tabdiff.main", + "--dataname", name, "--mode", "test", "--gpu", "0", + "--no_wandb", "--exp_name", r"adapter_learnable", + "--ckpt_path", r"/workspace/TabDiff/tabdiff/ckpt/pipeline_c2/adapter_learnable/model_500.pt", + "--num_samples_to_generate", str(int(1382)), +]) +# test() 写入 tabdiff/result////samples.csv +import glob as g +base = os.path.join(td, "tabdiff", "result", name, r"adapter_learnable") +best = None +best_t = -1.0 +for root, _, files in os.walk(base): + if "samples.csv" in files: + p = os.path.join(root, "samples.csv") + t = os.path.getmtime(p) + if t > best_t: + best_t = t + best = p +if not best: + raise SystemExit("tabdiff: no samples.csv under " + base) +shutil.copy(best, r"/work/output-Benchmark-trainonly-v1/c2/tabdiff/tabdiff-c2-20260504_191626/tabdiff-c2-1382-20260504_191940.csv") diff --git a/hyperparameter/c2/tabdiff/tabdiff-c2-20260504_191626/_tabdiff_train.py b/hyperparameter/c2/tabdiff/tabdiff-c2-20260504_191626/_tabdiff_train.py new file mode 100644 index 0000000000000000000000000000000000000000..246107262f47ba53ca9a7e947c57c8ba77ceb75f --- /dev/null +++ b/hyperparameter/c2/tabdiff/tabdiff-c2-20260504_191626/_tabdiff_train.py @@ -0,0 +1,21 @@ + +import os, shutil, subprocess, sys +td = r"/workspace/TabDiff" +name = r"pipeline_c2" +src = r"/work/output-Benchmark-trainonly-v1/c2/tabdiff/tabdiff-c2-20260504_191626/tabular_bundle/pipeline_c2" +dst_data = os.path.join(td, "data", name) +dst_syn = os.path.join(td, "synthetic", name) +shutil.rmtree(dst_data, ignore_errors=True) +shutil.copytree(src, dst_data) +os.makedirs(dst_syn, exist_ok=True) +for fn in ("real.csv", "test.csv", "val.csv"): + shutil.copy(os.path.join(src, fn), os.path.join(dst_syn, fn)) +os.chdir(td) +os.environ["PYTHONPATH"] = td + os.pathsep + os.environ.get("PYTHONPATH", "") +os.environ["TABDIFF_SMOKE_STEPS"] = "200" +os.environ["TABDIFF_ADAPTER_TRAIN"] = "1" +subprocess.check_call([ + sys.executable, "-m", "tabdiff.main", + "--dataname", name, "--mode", "train", "--gpu", "0", + "--no_wandb", "--exp_name", r"adapter_learnable", +]) diff --git a/hyperparameter/c2/tabdiff/tabdiff-c2-20260504_191626/gen_20260504_191940.log b/hyperparameter/c2/tabdiff/tabdiff-c2-20260504_191626/gen_20260504_191940.log new file mode 100644 index 0000000000000000000000000000000000000000..4dbc995a9a3fe2072bbc830baeb572c507730870 --- /dev/null +++ b/hyperparameter/c2/tabdiff/tabdiff-c2-20260504_191626/gen_20260504_191940.log @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:d138a4370f64234cee2d205acca77cb5e08e962d0d49de46c23d45a737e66c1f +size 4471 diff --git a/hyperparameter/c2/tabdiff/tabdiff-c2-20260504_191626/input_snapshot.json b/hyperparameter/c2/tabdiff/tabdiff-c2-20260504_191626/input_snapshot.json new file mode 100644 index 0000000000000000000000000000000000000000..6d83542090e9720c485d72abe1bb75a800175917 --- /dev/null +++ b/hyperparameter/c2/tabdiff/tabdiff-c2-20260504_191626/input_snapshot.json @@ -0,0 +1,36 @@ +{ + "dataset_id": "c2", + "model": "tabdiff", + "inputs": { + "train_csv": { + "path": "/data/jialinzhang/SynthesizePipeline-server/DatasetNew/c2/c2-train.csv", + "exists": true, + "size": 42948, + "sha256": "17bc560fa96bd00fb3b526e1e65bc91210b701d0d0a4e8bb9b4c5196cab56def" + }, + "val_csv": { + "path": "/data/jialinzhang/SynthesizePipeline-server/DatasetNew/c2/c2-val.csv", + "exists": true, + "size": 5349, + "sha256": "61e565eca62e65a7dccd9d51039a3170413379e10fc494e25870e7c4294863c9" + }, + "test_csv": { + "path": "/data/jialinzhang/SynthesizePipeline-server/DatasetNew/c2/c2-test.csv", + "exists": true, + "size": 5448, + "sha256": "cbcbb062a1faf5fa44b66c80532baa229e05b94fc42137269761e6c6d84af20a" + }, + "profile_json": { + "path": "/data/jialinzhang/SynthesizePipeline-server/DatasetNew/artifacts/data_core/tabular/c2/c2-dataset_profile.json", + "exists": true, + "size": 3240, + "sha256": "526b7163b2076c93c0bf4638438081ee8a6907065d5b608faa40d1a3dbc2a27b" + }, + "contract_json": { + "path": "/data/jialinzhang/SynthesizePipeline-server/DatasetNew/artifacts/data_core/tabular/c2/c2-dataset_contract_v1.json", + "exists": true, + "size": 3731, + "sha256": "fb595a876054c2ee9b4e10cfe83a5691588de1d25466cbb9d473c18ad3604009" + } + } +} \ No newline at end of file diff --git a/hyperparameter/c2/tabdiff/tabdiff-c2-20260504_191626/models_tabdiff/trained.pt b/hyperparameter/c2/tabdiff/tabdiff-c2-20260504_191626/models_tabdiff/trained.pt new file mode 100644 index 0000000000000000000000000000000000000000..bc319a55a9c7152a1137f968b6fa1c735125ad11 --- /dev/null +++ b/hyperparameter/c2/tabdiff/tabdiff-c2-20260504_191626/models_tabdiff/trained.pt @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:306660b8aad4549267c68390b017e15ddb9bc06a02c80515eb72a97ae31a81eb +size 74 diff --git a/hyperparameter/c2/tabdiff/tabdiff-c2-20260504_191626/public_gate/normalized_schema_snapshot.json b/hyperparameter/c2/tabdiff/tabdiff-c2-20260504_191626/public_gate/normalized_schema_snapshot.json new file mode 100644 index 0000000000000000000000000000000000000000..689b1d00d96508e44ba40e58dc4560e19afc2b3b --- /dev/null +++ b/hyperparameter/c2/tabdiff/tabdiff-c2-20260504_191626/public_gate/normalized_schema_snapshot.json @@ -0,0 +1,144 @@ +{ + "dataset_id": "c2", + "target_column": "class", + "task_type": "classification", + "columns": [ + { + "name": "buying", + "role": "feature", + "semantic_type": "categorical", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 4, + "unique_ratio": 0.002894, + "example_values": [ + "vhigh", + "med", + "high", + "low" + ] + } + }, + { + "name": "maint", + "role": "feature", + "semantic_type": "categorical", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 4, + "unique_ratio": 0.002894, + "example_values": [ + "vhigh", + "low", + "med", + "high" + ] + } + }, + { + "name": "doors", + "role": "feature", + "semantic_type": "categorical", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 4, + "unique_ratio": 0.002894, + "example_values": [ + "2", + "5more", + "3", + "4" + ] + } + }, + { + "name": "persons", + "role": "feature", + "semantic_type": "categorical", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 3, + "unique_ratio": 0.002171, + "example_values": [ + "2", + "4", + "more" + ] + } + }, + { + "name": "lug_boot", + "role": "feature", + "semantic_type": "categorical", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 3, + "unique_ratio": 0.002171, + "example_values": [ + "small", + "big", + "med" + ] + } + }, + { + "name": "safety", + "role": "feature", + "semantic_type": "categorical", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 3, + "unique_ratio": 0.002171, + "example_values": [ + "low", + "high", + "med" + ] + } + }, + { + "name": "class", + "role": "target", + "semantic_type": "categorical", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 4, + "unique_ratio": 0.002894, + "example_values": [ + "unacc", + "good", + "acc", + "vgood" + ] + } + } + ] +} \ No newline at end of file diff --git a/hyperparameter/c2/tabdiff/tabdiff-c2-20260504_191626/public_gate/public_gate_report.json b/hyperparameter/c2/tabdiff/tabdiff-c2-20260504_191626/public_gate/public_gate_report.json new file mode 100644 index 0000000000000000000000000000000000000000..2e4cdcb2a4e28e40d59b17a83e773f622b7636a5 --- /dev/null +++ b/hyperparameter/c2/tabdiff/tabdiff-c2-20260504_191626/public_gate/public_gate_report.json @@ -0,0 +1,37 @@ +{ + "dataset_id": "c2", + "status": "pass", + "checks": [ + { + "check_id": "PG001_csv_parse_ok", + "status": "pass" + }, + { + "check_id": "PG002_split_header_consistent", + "status": "pass" + }, + { + "check_id": "PG003_profile_header_match", + "status": "pass" + }, + { + "check_id": "PG004_missing_token_normalized", + "status": "pass" + }, + { + "check_id": "PG005_semantic_type_validated", + "status": "pass" + }, + { + "check_id": "PG006_target_defined_and_valid", + "status": "pass" + } + ], + "target_column": "class", + "task_type": "classification", + "input_splits": { + "train": "/data/jialinzhang/SynthesizePipeline-server/DatasetNew/c2/c2-train.csv", + "val": "/data/jialinzhang/SynthesizePipeline-server/DatasetNew/c2/c2-val.csv", + "test": "/data/jialinzhang/SynthesizePipeline-server/DatasetNew/c2/c2-test.csv" + } +} \ No newline at end of file diff --git a/hyperparameter/c2/tabdiff/tabdiff-c2-20260504_191626/public_gate/staged_input_manifest.json b/hyperparameter/c2/tabdiff/tabdiff-c2-20260504_191626/public_gate/staged_input_manifest.json new file mode 100644 index 0000000000000000000000000000000000000000..94ec8dfef50837b48765b6222d0a06502847ca84 --- /dev/null +++ b/hyperparameter/c2/tabdiff/tabdiff-c2-20260504_191626/public_gate/staged_input_manifest.json @@ -0,0 +1,149 @@ +{ + "dataset_id": "c2", + "target_column": "class", + "task_type": "classification", + "train_csv": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/c2/tabdiff/tabdiff-c2-20260504_191626/staged/public/train.csv", + "val_csv": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/c2/tabdiff/tabdiff-c2-20260504_191626/staged/public/val.csv", + "test_csv": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/c2/tabdiff/tabdiff-c2-20260504_191626/staged/public/test.csv", + "features_json": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/c2/tabdiff/tabdiff-c2-20260504_191626/staged/public/staged_features.json", + "public_gate_report": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/c2/tabdiff/tabdiff-c2-20260504_191626/public_gate/public_gate_report.json", + "column_schema": [ + { + "name": "buying", + "role": "feature", + "semantic_type": "categorical", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 4, + "unique_ratio": 0.002894, + "example_values": [ + "vhigh", + "med", + "high", + "low" + ] + } + }, + { + "name": "maint", + "role": "feature", + "semantic_type": "categorical", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 4, + "unique_ratio": 0.002894, + "example_values": [ + "vhigh", + "low", + "med", + "high" + ] + } + }, + { + "name": "doors", + "role": "feature", + "semantic_type": "categorical", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 4, + "unique_ratio": 0.002894, + "example_values": [ + "2", + "5more", + "3", + "4" + ] + } + }, + { + "name": "persons", + "role": "feature", + "semantic_type": "categorical", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 3, + "unique_ratio": 0.002171, + "example_values": [ + "2", + "4", + "more" + ] + } + }, + { + "name": "lug_boot", + "role": "feature", + "semantic_type": "categorical", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 3, + "unique_ratio": 0.002171, + "example_values": [ + "small", + "big", + "med" + ] + } + }, + { + "name": "safety", + "role": "feature", + "semantic_type": "categorical", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 3, + "unique_ratio": 0.002171, + "example_values": [ + "low", + "high", + "med" + ] + } + }, + { + "name": "class", + "role": "target", + "semantic_type": "categorical", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 4, + "unique_ratio": 0.002894, + "example_values": [ + "unacc", + "good", + "acc", + "vgood" + ] + } + } + ] +} \ No newline at end of file diff --git a/hyperparameter/c2/tabdiff/tabdiff-c2-20260504_191626/run_config.json b/hyperparameter/c2/tabdiff/tabdiff-c2-20260504_191626/run_config.json new file mode 100644 index 0000000000000000000000000000000000000000..e6b80ba3ba33e5e366fd1be204f4d2326e20f6d0 --- /dev/null +++ b/hyperparameter/c2/tabdiff/tabdiff-c2-20260504_191626/run_config.json @@ -0,0 +1,40 @@ +{ + "schema_version": 1, + "recorded_at": "2026-05-04T19:16:26", + "dataset_id": "c2", + "model": "tabdiff", + "work_dir": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/c2/tabdiff/tabdiff-c2-20260504_191626", + "dataset_source_requested": "new", + "dataset_source_resolved": "new", + "cli_args": { + "model": "tabdiff", + "dataset": "c2", + "dataset_source": "new", + "train": true, + "generate": true, + "num_rows": 0, + "epochs": 200, + "output_dir": null, + "model_dir": null, + "work_dir": null, + "resume": false, + "no_stats": false + }, + "resolved": { + "num_rows": 1382, + "model_path": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/c2/tabdiff/tabdiff-c2-20260504_191626/models_tabdiff/trained.pt", + "output_csv": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/c2/tabdiff/tabdiff-c2-20260504_191626/tabdiff-c2-1382-20260504_191940.csv" + }, + "input_artifacts": { + "public_gate_report": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/c2/tabdiff/tabdiff-c2-20260504_191626/public_gate/public_gate_report.json", + "public_manifest": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/c2/tabdiff/tabdiff-c2-20260504_191626/public_gate/staged_input_manifest.json", + "model_manifest": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/c2/tabdiff/tabdiff-c2-20260504_191626/staged/tabdiff/model_input_manifest.json", + "train_csv": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/c2/tabdiff/tabdiff-c2-20260504_191626/staged/public/train.csv", + "features_json": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/c2/tabdiff/tabdiff-c2-20260504_191626/staged/public/staged_features.json", + "target_column": "class", + "task_type": "classification" + }, + "env_overrides": { + "BENCHMARK_TABDIFF_GPUS": "device=3" + } +} \ No newline at end of file diff --git a/hyperparameter/c2/tabdiff/tabdiff-c2-20260504_191626/runtime_result.json b/hyperparameter/c2/tabdiff/tabdiff-c2-20260504_191626/runtime_result.json new file mode 100644 index 0000000000000000000000000000000000000000..b6d979665fd419a78050126d337d07768f6157fe --- /dev/null +++ b/hyperparameter/c2/tabdiff/tabdiff-c2-20260504_191626/runtime_result.json @@ -0,0 +1,27 @@ +{ + "dataset_id": "c2", + "model": "tabdiff", + "run_id": "tabdiff-c2-20260504_191626", + "public_gate_status": "pass", + "adapter_ready_status": "pass", + "train_status": "success", + "generate_status": "success", + "reason_code": null, + "reason_detail": null, + "artifacts": { + "synthetic_csv": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/c2/tabdiff/tabdiff-c2-20260504_191626/tabdiff-c2-1382-20260504_191940.csv", + "model_path": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/c2/tabdiff/tabdiff-c2-20260504_191626/models_tabdiff/trained.pt" + }, + "timings": { + "train": { + "started_at": "2026-05-04T19:16:26", + "ended_at": "2026-05-04T19:19:40", + "duration_sec": 193.124 + }, + "generate": { + "started_at": "2026-05-04T19:19:40", + "ended_at": "2026-05-04T19:19:49", + "duration_sec": 8.99 + } + } +} \ No newline at end of file diff --git a/hyperparameter/c2/tabdiff/tabdiff-c2-20260504_191626/staged/public/staged_features.json b/hyperparameter/c2/tabdiff/tabdiff-c2-20260504_191626/staged/public/staged_features.json new file mode 100644 index 0000000000000000000000000000000000000000..61783861dd5de501592f76acb0469cf3f3b2622a --- /dev/null +++ b/hyperparameter/c2/tabdiff/tabdiff-c2-20260504_191626/staged/public/staged_features.json @@ -0,0 +1,37 @@ +[ + { + "feature_name": "buying", + "data_type": "categorical", + "is_target": false + }, + { + "feature_name": "maint", + "data_type": "categorical", + "is_target": false + }, + { + "feature_name": "doors", + "data_type": "categorical", + "is_target": false + }, + { + "feature_name": "persons", + "data_type": "categorical", + "is_target": false + }, + { + "feature_name": "lug_boot", + "data_type": "categorical", + "is_target": false + }, + { + "feature_name": "safety", + "data_type": "categorical", + "is_target": false + }, + { + "feature_name": "class", + "data_type": "categorical", + "is_target": true + } +] \ No newline at end of file diff --git a/hyperparameter/c2/tabdiff/tabdiff-c2-20260504_191626/staged/public/test.csv b/hyperparameter/c2/tabdiff/tabdiff-c2-20260504_191626/staged/public/test.csv new file mode 100644 index 0000000000000000000000000000000000000000..392a0d7189a34d8f13ecf20a99d64b03230d517c --- /dev/null +++ b/hyperparameter/c2/tabdiff/tabdiff-c2-20260504_191626/staged/public/test.csv @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:b48114a7d0bc5bd9a07920f903c8d4aba8bf98bf2a66a050da03588b0245ca73 +size 5273 diff --git a/hyperparameter/c2/tabdiff/tabdiff-c2-20260504_191626/staged/public/train.csv b/hyperparameter/c2/tabdiff/tabdiff-c2-20260504_191626/staged/public/train.csv new file mode 100644 index 0000000000000000000000000000000000000000..da4f4d55134eebc0e51157d0d467536371db1484 --- /dev/null +++ b/hyperparameter/c2/tabdiff/tabdiff-c2-20260504_191626/staged/public/train.csv @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:4aed00c2c2b3f88a55a7ebff31b2e1b5e0e32fb0a7267e0b9d2779cd23e434dd +size 41565 diff --git a/hyperparameter/c2/tabdiff/tabdiff-c2-20260504_191626/staged/public/val.csv b/hyperparameter/c2/tabdiff/tabdiff-c2-20260504_191626/staged/public/val.csv new file mode 100644 index 0000000000000000000000000000000000000000..af8caf7ee42524188534a3daf32996dc491952d9 --- /dev/null +++ b/hyperparameter/c2/tabdiff/tabdiff-c2-20260504_191626/staged/public/val.csv @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:26e90c1170a57a14c05832ac88027722b1f3848f9662c7c09ef7c93dcba4cc01 +size 5176 diff --git a/hyperparameter/c2/tabdiff/tabdiff-c2-20260504_191626/staged/tabdiff/adapter_report.json b/hyperparameter/c2/tabdiff/tabdiff-c2-20260504_191626/staged/tabdiff/adapter_report.json new file mode 100644 index 0000000000000000000000000000000000000000..d33f0bbddc0ce56333bb8ba782a32948c35c51e3 --- /dev/null +++ b/hyperparameter/c2/tabdiff/tabdiff-c2-20260504_191626/staged/tabdiff/adapter_report.json @@ -0,0 +1,7 @@ +{ + "adapter_ready_status": "pass", + "adapter_fail_reason_code": null, + "adapter_fail_detail": null, + "adapter_transforms_applied": [], + "model_input_manifest": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/c2/tabdiff/tabdiff-c2-20260504_191626/staged/tabdiff/model_input_manifest.json" +} \ No newline at end of file diff --git a/hyperparameter/c2/tabdiff/tabdiff-c2-20260504_191626/staged/tabdiff/adapter_transforms_applied.json b/hyperparameter/c2/tabdiff/tabdiff-c2-20260504_191626/staged/tabdiff/adapter_transforms_applied.json new file mode 100644 index 0000000000000000000000000000000000000000..0637a088a01e8ddab3bf3fa98dbe804cbde1a0dc --- /dev/null +++ b/hyperparameter/c2/tabdiff/tabdiff-c2-20260504_191626/staged/tabdiff/adapter_transforms_applied.json @@ -0,0 +1 @@ +[] \ No newline at end of file diff --git a/hyperparameter/c2/tabdiff/tabdiff-c2-20260504_191626/staged/tabdiff/model_input_manifest.json b/hyperparameter/c2/tabdiff/tabdiff-c2-20260504_191626/staged/tabdiff/model_input_manifest.json new file mode 100644 index 0000000000000000000000000000000000000000..c3d4462b8df0f2ba91e6145421de945f69987871 --- /dev/null +++ b/hyperparameter/c2/tabdiff/tabdiff-c2-20260504_191626/staged/tabdiff/model_input_manifest.json @@ -0,0 +1,151 @@ +{ + "dataset_id": "c2", + "model": "tabdiff", + "target_column": "class", + "task_type": "classification", + "column_schema": [ + { + "name": "buying", + "role": "feature", + "semantic_type": "categorical", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 4, + "unique_ratio": 0.002894, + "example_values": [ + "vhigh", + "med", + "high", + "low" + ] + } + }, + { + "name": "maint", + "role": "feature", + "semantic_type": "categorical", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 4, + "unique_ratio": 0.002894, + "example_values": [ + "vhigh", + "low", + "med", + "high" + ] + } + }, + { + "name": "doors", + "role": "feature", + "semantic_type": "categorical", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 4, + "unique_ratio": 0.002894, + "example_values": [ + "2", + "5more", + "3", + "4" + ] + } + }, + { + "name": "persons", + "role": "feature", + "semantic_type": "categorical", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 3, + "unique_ratio": 0.002171, + "example_values": [ + "2", + "4", + "more" + ] + } + }, + { + "name": "lug_boot", + "role": "feature", + "semantic_type": "categorical", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 3, + "unique_ratio": 0.002171, + "example_values": [ + "small", + "big", + "med" + ] + } + }, + { + "name": "safety", + "role": "feature", + "semantic_type": "categorical", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 3, + "unique_ratio": 0.002171, + "example_values": [ + "low", + "high", + "med" + ] + } + }, + { + "name": "class", + "role": "target", + "semantic_type": "categorical", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 4, + "unique_ratio": 0.002894, + "example_values": [ + "unacc", + "good", + "acc", + "vgood" + ] + } + } + ], + "public_manifest": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/c2/tabdiff/tabdiff-c2-20260504_191626/public_gate/staged_input_manifest.json", + "train_csv": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/c2/tabdiff/tabdiff-c2-20260504_191626/staged/public/train.csv", + "val_csv": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/c2/tabdiff/tabdiff-c2-20260504_191626/staged/public/val.csv", + "test_csv": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/c2/tabdiff/tabdiff-c2-20260504_191626/staged/public/test.csv", + "features_json": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/c2/tabdiff/tabdiff-c2-20260504_191626/staged/public/staged_features.json", + "public_gate_report": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/c2/tabdiff/tabdiff-c2-20260504_191626/public_gate/public_gate_report.json" +} \ No newline at end of file diff --git a/hyperparameter/c2/tabdiff/tabdiff-c2-20260504_191626/tabdiff-c2-1382-20260504_191940.csv b/hyperparameter/c2/tabdiff/tabdiff-c2-20260504_191626/tabdiff-c2-1382-20260504_191940.csv new file mode 100644 index 0000000000000000000000000000000000000000..945a1e81477e50ec4a4ea60aa2915b350b8f789d --- /dev/null +++ b/hyperparameter/c2/tabdiff/tabdiff-c2-20260504_191626/tabdiff-c2-1382-20260504_191940.csv @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:608bc0efb3c3da163fe6a39cac791e24e1454997661a3ecd9bb877bf6be8e862 +size 19397 diff --git a/hyperparameter/c2/tabdiff/tabdiff-c2-20260504_191626/tabdiff_train_meta.json b/hyperparameter/c2/tabdiff/tabdiff-c2-20260504_191626/tabdiff_train_meta.json new file mode 100644 index 0000000000000000000000000000000000000000..0992ba9f11c65312abd4a8f415041341920aba1a --- /dev/null +++ b/hyperparameter/c2/tabdiff/tabdiff-c2-20260504_191626/tabdiff_train_meta.json @@ -0,0 +1,5 @@ +{ + "exp_name": "adapter_learnable", + "dataname": "pipeline_c2", + "steps": 200 +} \ No newline at end of file diff --git a/hyperparameter/c2/tabdiff/tabdiff-c2-20260504_191626/tabular_bundle/pipeline_c2/X_cat_test.npy b/hyperparameter/c2/tabdiff/tabdiff-c2-20260504_191626/tabular_bundle/pipeline_c2/X_cat_test.npy new file mode 100644 index 0000000000000000000000000000000000000000..e99f1ae8dc9e7155e5c4bbbd3c2f3f7215c628f7 --- /dev/null +++ b/hyperparameter/c2/tabdiff/tabdiff-c2-20260504_191626/tabular_bundle/pipeline_c2/X_cat_test.npy @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:24d2203601ba060728920e754747e5a1dc3955a1b5775e147382fee4f1812542 +size 66464 diff --git a/hyperparameter/c2/tabdiff/tabdiff-c2-20260504_191626/tabular_bundle/pipeline_c2/X_cat_train.npy b/hyperparameter/c2/tabdiff/tabdiff-c2-20260504_191626/tabular_bundle/pipeline_c2/X_cat_train.npy new file mode 100644 index 0000000000000000000000000000000000000000..e99f1ae8dc9e7155e5c4bbbd3c2f3f7215c628f7 --- /dev/null +++ b/hyperparameter/c2/tabdiff/tabdiff-c2-20260504_191626/tabular_bundle/pipeline_c2/X_cat_train.npy @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:24d2203601ba060728920e754747e5a1dc3955a1b5775e147382fee4f1812542 +size 66464 diff --git a/hyperparameter/c2/tabdiff/tabdiff-c2-20260504_191626/tabular_bundle/pipeline_c2/X_cat_val.npy b/hyperparameter/c2/tabdiff/tabdiff-c2-20260504_191626/tabular_bundle/pipeline_c2/X_cat_val.npy new file mode 100644 index 0000000000000000000000000000000000000000..e99f1ae8dc9e7155e5c4bbbd3c2f3f7215c628f7 --- /dev/null +++ b/hyperparameter/c2/tabdiff/tabdiff-c2-20260504_191626/tabular_bundle/pipeline_c2/X_cat_val.npy @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:24d2203601ba060728920e754747e5a1dc3955a1b5775e147382fee4f1812542 +size 66464 diff --git a/hyperparameter/c2/tabdiff/tabdiff-c2-20260504_191626/tabular_bundle/pipeline_c2/X_num_test.npy b/hyperparameter/c2/tabdiff/tabdiff-c2-20260504_191626/tabular_bundle/pipeline_c2/X_num_test.npy new file mode 100644 index 0000000000000000000000000000000000000000..9370f90332827a72be71bf3347770cac2c0354f5 --- /dev/null +++ b/hyperparameter/c2/tabdiff/tabdiff-c2-20260504_191626/tabular_bundle/pipeline_c2/X_num_test.npy @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:79dbdf62b6c69f71f3fef2bfcff35e322b2ac9387fc545116c7bc0078b3de9ec +size 128 diff --git a/hyperparameter/c2/tabdiff/tabdiff-c2-20260504_191626/tabular_bundle/pipeline_c2/X_num_train.npy b/hyperparameter/c2/tabdiff/tabdiff-c2-20260504_191626/tabular_bundle/pipeline_c2/X_num_train.npy new file mode 100644 index 0000000000000000000000000000000000000000..9370f90332827a72be71bf3347770cac2c0354f5 --- /dev/null +++ b/hyperparameter/c2/tabdiff/tabdiff-c2-20260504_191626/tabular_bundle/pipeline_c2/X_num_train.npy @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:79dbdf62b6c69f71f3fef2bfcff35e322b2ac9387fc545116c7bc0078b3de9ec +size 128 diff --git a/hyperparameter/c2/tabdiff/tabdiff-c2-20260504_191626/tabular_bundle/pipeline_c2/X_num_val.npy b/hyperparameter/c2/tabdiff/tabdiff-c2-20260504_191626/tabular_bundle/pipeline_c2/X_num_val.npy new file mode 100644 index 0000000000000000000000000000000000000000..9370f90332827a72be71bf3347770cac2c0354f5 --- /dev/null +++ b/hyperparameter/c2/tabdiff/tabdiff-c2-20260504_191626/tabular_bundle/pipeline_c2/X_num_val.npy @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:79dbdf62b6c69f71f3fef2bfcff35e322b2ac9387fc545116c7bc0078b3de9ec +size 128 diff --git a/hyperparameter/c2/tabdiff/tabdiff-c2-20260504_191626/tabular_bundle/pipeline_c2/info.json b/hyperparameter/c2/tabdiff/tabdiff-c2-20260504_191626/tabular_bundle/pipeline_c2/info.json new file mode 100644 index 0000000000000000000000000000000000000000..bf064b213901b4f614a949e23e2e89a63aac1488 --- /dev/null +++ b/hyperparameter/c2/tabdiff/tabdiff-c2-20260504_191626/tabular_bundle/pipeline_c2/info.json @@ -0,0 +1,88 @@ +{ + "name": "pipeline_c2", + "task_type": "multiclass", + "n_num_features": 0, + "n_cat_features": 6, + "train_size": 1382, + "test_num": 1382, + "val_num": 1382, + "train_num": 1382, + "bundle_note": "val/test matrices are train copies (train-only policy; no real held-out rows).", + "num_col_idx": [], + "cat_col_idx": [ + 0, + 1, + 2, + 3, + 4, + 5 + ], + "target_col_idx": [ + 6 + ], + "column_names": [ + "buying", + "maint", + "doors", + "persons", + "lug_boot", + "safety", + "class" + ], + "int_col_idx": [], + "int_columns": [], + "int_col_idx_wrt_num": [], + "metadata": { + "columns": { + "0": { + "sdtype": "categorical" + }, + "1": { + "sdtype": "categorical" + }, + "2": { + "sdtype": "categorical" + }, + "3": { + "sdtype": "categorical" + }, + "4": { + "sdtype": "categorical" + }, + "5": { + "sdtype": "categorical" + }, + "6": { + "sdtype": "categorical" + } + } + }, + "idx_mapping": { + "0": 0, + "1": 1, + "2": 2, + "3": 3, + "4": 4, + "5": 5, + "6": 6 + }, + "inverse_idx_mapping": { + "0": 0, + "1": 1, + "2": 2, + "3": 3, + "4": 4, + "5": 5, + "6": 6 + }, + "idx_name_mapping": { + "0": "buying", + "1": "maint", + "2": "doors", + "3": "persons", + "4": "lug_boot", + "5": "safety", + "6": "class" + }, + "n_classes": 4 +} \ No newline at end of file diff --git a/hyperparameter/c2/tabdiff/tabdiff-c2-20260504_191626/tabular_bundle/pipeline_c2/real.csv b/hyperparameter/c2/tabdiff/tabdiff-c2-20260504_191626/tabular_bundle/pipeline_c2/real.csv new file mode 100644 index 0000000000000000000000000000000000000000..f778fcd2758e712a195229c6f50504f94f046c8d --- /dev/null +++ b/hyperparameter/c2/tabdiff/tabdiff-c2-20260504_191626/tabular_bundle/pipeline_c2/real.csv @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:a54d8aab34745836c4d0260009787c8064c2c3e9d99040c5a6856190eb0745e9 +size 24215 diff --git a/hyperparameter/c2/tabdiff/tabdiff-c2-20260504_191626/tabular_bundle/pipeline_c2/test.csv b/hyperparameter/c2/tabdiff/tabdiff-c2-20260504_191626/tabular_bundle/pipeline_c2/test.csv new file mode 100644 index 0000000000000000000000000000000000000000..f778fcd2758e712a195229c6f50504f94f046c8d --- /dev/null +++ b/hyperparameter/c2/tabdiff/tabdiff-c2-20260504_191626/tabular_bundle/pipeline_c2/test.csv @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:a54d8aab34745836c4d0260009787c8064c2c3e9d99040c5a6856190eb0745e9 +size 24215 diff --git a/hyperparameter/c2/tabdiff/tabdiff-c2-20260504_191626/tabular_bundle/pipeline_c2/val.csv b/hyperparameter/c2/tabdiff/tabdiff-c2-20260504_191626/tabular_bundle/pipeline_c2/val.csv new file mode 100644 index 0000000000000000000000000000000000000000..f778fcd2758e712a195229c6f50504f94f046c8d --- /dev/null +++ b/hyperparameter/c2/tabdiff/tabdiff-c2-20260504_191626/tabular_bundle/pipeline_c2/val.csv @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:a54d8aab34745836c4d0260009787c8064c2c3e9d99040c5a6856190eb0745e9 +size 24215 diff --git a/hyperparameter/c2/tabdiff/tabdiff-c2-20260504_191626/tabular_bundle/pipeline_c2/y_test.npy b/hyperparameter/c2/tabdiff/tabdiff-c2-20260504_191626/tabular_bundle/pipeline_c2/y_test.npy new file mode 100644 index 0000000000000000000000000000000000000000..8bfc8f9de7350657cd6411c55d2b9b87bea9c13a --- /dev/null +++ b/hyperparameter/c2/tabdiff/tabdiff-c2-20260504_191626/tabular_bundle/pipeline_c2/y_test.npy @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:3f8eb0b25043331a30fde5439f063eed59e7a76f45d7d102b9b4fbcd16b551b4 +size 11184 diff --git a/hyperparameter/c2/tabdiff/tabdiff-c2-20260504_191626/tabular_bundle/pipeline_c2/y_train.npy b/hyperparameter/c2/tabdiff/tabdiff-c2-20260504_191626/tabular_bundle/pipeline_c2/y_train.npy new file mode 100644 index 0000000000000000000000000000000000000000..8bfc8f9de7350657cd6411c55d2b9b87bea9c13a --- /dev/null +++ b/hyperparameter/c2/tabdiff/tabdiff-c2-20260504_191626/tabular_bundle/pipeline_c2/y_train.npy @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:3f8eb0b25043331a30fde5439f063eed59e7a76f45d7d102b9b4fbcd16b551b4 +size 11184 diff --git a/hyperparameter/c2/tabdiff/tabdiff-c2-20260504_191626/tabular_bundle/pipeline_c2/y_val.npy b/hyperparameter/c2/tabdiff/tabdiff-c2-20260504_191626/tabular_bundle/pipeline_c2/y_val.npy new file mode 100644 index 0000000000000000000000000000000000000000..8bfc8f9de7350657cd6411c55d2b9b87bea9c13a --- /dev/null +++ b/hyperparameter/c2/tabdiff/tabdiff-c2-20260504_191626/tabular_bundle/pipeline_c2/y_val.npy @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:3f8eb0b25043331a30fde5439f063eed59e7a76f45d7d102b9b4fbcd16b551b4 +size 11184 diff --git a/hyperparameter/c2/tabdiff/tabdiff-c2-20260504_191626/train_20260504_191626.log b/hyperparameter/c2/tabdiff/tabdiff-c2-20260504_191626/train_20260504_191626.log new file mode 100644 index 0000000000000000000000000000000000000000..276f957073732952c72cf5347d7cd58792b0d2d4 --- /dev/null +++ b/hyperparameter/c2/tabdiff/tabdiff-c2-20260504_191626/train_20260504_191626.log @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:76ac106931baa3ba497b4273e673ac7ba4bbab7892c7a816a73443f1f2325e29 +size 118270 diff --git a/hyperparameter/c2/tabdiff/tabdiff-c2-20260504_192001/_tabdiff_gen.py b/hyperparameter/c2/tabdiff/tabdiff-c2-20260504_192001/_tabdiff_gen.py new file mode 100644 index 0000000000000000000000000000000000000000..2195108fab9f21e680540f0c7fd1d972c3e6cb2b --- /dev/null +++ b/hyperparameter/c2/tabdiff/tabdiff-c2-20260504_192001/_tabdiff_gen.py @@ -0,0 +1,36 @@ + +import os, shutil, subprocess, sys +td = r"/workspace/TabDiff" +name = r"pipeline_c2" +src = r"/work/output-Benchmark-trainonly-v1/c2/tabdiff/tabdiff-c2-20260504_192001/tabular_bundle/pipeline_c2" +dst_data = os.path.join(td, "data", name) +dst_syn = os.path.join(td, "synthetic", name) +shutil.rmtree(dst_data, ignore_errors=True) +shutil.copytree(src, dst_data) +os.makedirs(dst_syn, exist_ok=True) +for fn in ("real.csv", "test.csv", "val.csv"): + shutil.copy(os.path.join(src, fn), os.path.join(dst_syn, fn)) +os.chdir(td) +os.environ["PYTHONPATH"] = td + os.pathsep + os.environ.get("PYTHONPATH", "") +subprocess.check_call([ + sys.executable, "-m", "tabdiff.main", + "--dataname", name, "--mode", "test", "--gpu", "0", + "--no_wandb", "--exp_name", r"adapter_learnable", + "--ckpt_path", r"/workspace/TabDiff/tabdiff/ckpt/pipeline_c2/adapter_learnable/model_500.pt", + "--num_samples_to_generate", str(int(1382)), +]) +# test() 写入 tabdiff/result////samples.csv +import glob as g +base = os.path.join(td, "tabdiff", "result", name, r"adapter_learnable") +best = None +best_t = -1.0 +for root, _, files in os.walk(base): + if "samples.csv" in files: + p = os.path.join(root, "samples.csv") + t = os.path.getmtime(p) + if t > best_t: + best_t = t + best = p +if not best: + raise SystemExit("tabdiff: no samples.csv under " + base) +shutil.copy(best, r"/work/output-Benchmark-trainonly-v1/c2/tabdiff/tabdiff-c2-20260504_192001/tabdiff-c2-1382-20260504_192715.csv") diff --git a/hyperparameter/c2/tabdiff/tabdiff-c2-20260504_192001/_tabdiff_train.py b/hyperparameter/c2/tabdiff/tabdiff-c2-20260504_192001/_tabdiff_train.py new file mode 100644 index 0000000000000000000000000000000000000000..f2aad5ba6c9c473e6f8d286dfccd86f0c82929ee --- /dev/null +++ b/hyperparameter/c2/tabdiff/tabdiff-c2-20260504_192001/_tabdiff_train.py @@ -0,0 +1,21 @@ + +import os, shutil, subprocess, sys +td = r"/workspace/TabDiff" +name = r"pipeline_c2" +src = r"/work/output-Benchmark-trainonly-v1/c2/tabdiff/tabdiff-c2-20260504_192001/tabular_bundle/pipeline_c2" +dst_data = os.path.join(td, "data", name) +dst_syn = os.path.join(td, "synthetic", name) +shutil.rmtree(dst_data, ignore_errors=True) +shutil.copytree(src, dst_data) +os.makedirs(dst_syn, exist_ok=True) +for fn in ("real.csv", "test.csv", "val.csv"): + shutil.copy(os.path.join(src, fn), os.path.join(dst_syn, fn)) +os.chdir(td) +os.environ["PYTHONPATH"] = td + os.pathsep + os.environ.get("PYTHONPATH", "") +os.environ["TABDIFF_SMOKE_STEPS"] = "500" +os.environ["TABDIFF_ADAPTER_TRAIN"] = "1" +subprocess.check_call([ + sys.executable, "-m", "tabdiff.main", + "--dataname", name, "--mode", "train", "--gpu", "0", + "--no_wandb", "--exp_name", r"adapter_learnable", +]) diff --git a/hyperparameter/c2/tabdiff/tabdiff-c2-20260504_192001/gen_20260504_192715.log b/hyperparameter/c2/tabdiff/tabdiff-c2-20260504_192001/gen_20260504_192715.log new file mode 100644 index 0000000000000000000000000000000000000000..5d02791b6a5b2cd34dd383ed12a41d09684bf971 --- /dev/null +++ b/hyperparameter/c2/tabdiff/tabdiff-c2-20260504_192001/gen_20260504_192715.log @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:5dba8ada80f0dc2ded12748062c1142497be7eed805a5ed3f1307bd9852f8d87 +size 4472 diff --git a/hyperparameter/c2/tabdiff/tabdiff-c2-20260504_192001/input_snapshot.json b/hyperparameter/c2/tabdiff/tabdiff-c2-20260504_192001/input_snapshot.json new file mode 100644 index 0000000000000000000000000000000000000000..6d83542090e9720c485d72abe1bb75a800175917 --- /dev/null +++ b/hyperparameter/c2/tabdiff/tabdiff-c2-20260504_192001/input_snapshot.json @@ -0,0 +1,36 @@ +{ + "dataset_id": "c2", + "model": "tabdiff", + "inputs": { + "train_csv": { + "path": "/data/jialinzhang/SynthesizePipeline-server/DatasetNew/c2/c2-train.csv", + "exists": true, + "size": 42948, + "sha256": "17bc560fa96bd00fb3b526e1e65bc91210b701d0d0a4e8bb9b4c5196cab56def" + }, + "val_csv": { + "path": "/data/jialinzhang/SynthesizePipeline-server/DatasetNew/c2/c2-val.csv", + "exists": true, + "size": 5349, + "sha256": "61e565eca62e65a7dccd9d51039a3170413379e10fc494e25870e7c4294863c9" + }, + "test_csv": { + "path": "/data/jialinzhang/SynthesizePipeline-server/DatasetNew/c2/c2-test.csv", + "exists": true, + "size": 5448, + "sha256": "cbcbb062a1faf5fa44b66c80532baa229e05b94fc42137269761e6c6d84af20a" + }, + "profile_json": { + "path": "/data/jialinzhang/SynthesizePipeline-server/DatasetNew/artifacts/data_core/tabular/c2/c2-dataset_profile.json", + "exists": true, + "size": 3240, + "sha256": "526b7163b2076c93c0bf4638438081ee8a6907065d5b608faa40d1a3dbc2a27b" + }, + "contract_json": { + "path": "/data/jialinzhang/SynthesizePipeline-server/DatasetNew/artifacts/data_core/tabular/c2/c2-dataset_contract_v1.json", + "exists": true, + "size": 3731, + "sha256": "fb595a876054c2ee9b4e10cfe83a5691588de1d25466cbb9d473c18ad3604009" + } + } +} \ No newline at end of file diff --git a/hyperparameter/c2/tabdiff/tabdiff-c2-20260504_192001/models_tabdiff/trained.pt b/hyperparameter/c2/tabdiff/tabdiff-c2-20260504_192001/models_tabdiff/trained.pt new file mode 100644 index 0000000000000000000000000000000000000000..bc319a55a9c7152a1137f968b6fa1c735125ad11 --- /dev/null +++ b/hyperparameter/c2/tabdiff/tabdiff-c2-20260504_192001/models_tabdiff/trained.pt @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:306660b8aad4549267c68390b017e15ddb9bc06a02c80515eb72a97ae31a81eb +size 74 diff --git a/hyperparameter/c2/tabdiff/tabdiff-c2-20260504_192001/public_gate/normalized_schema_snapshot.json b/hyperparameter/c2/tabdiff/tabdiff-c2-20260504_192001/public_gate/normalized_schema_snapshot.json new file mode 100644 index 0000000000000000000000000000000000000000..689b1d00d96508e44ba40e58dc4560e19afc2b3b --- /dev/null +++ b/hyperparameter/c2/tabdiff/tabdiff-c2-20260504_192001/public_gate/normalized_schema_snapshot.json @@ -0,0 +1,144 @@ +{ + "dataset_id": "c2", + "target_column": "class", + "task_type": "classification", + "columns": [ + { + "name": "buying", + "role": "feature", + "semantic_type": "categorical", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 4, + "unique_ratio": 0.002894, + "example_values": [ + "vhigh", + "med", + "high", + "low" + ] + } + }, + { + "name": "maint", + "role": "feature", + "semantic_type": "categorical", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 4, + "unique_ratio": 0.002894, + "example_values": [ + "vhigh", + "low", + "med", + "high" + ] + } + }, + { + "name": "doors", + "role": "feature", + "semantic_type": "categorical", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 4, + "unique_ratio": 0.002894, + "example_values": [ + "2", + "5more", + "3", + "4" + ] + } + }, + { + "name": "persons", + "role": "feature", + "semantic_type": "categorical", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 3, + "unique_ratio": 0.002171, + "example_values": [ + "2", + "4", + "more" + ] + } + }, + { + "name": "lug_boot", + "role": "feature", + "semantic_type": "categorical", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 3, + "unique_ratio": 0.002171, + "example_values": [ + "small", + "big", + "med" + ] + } + }, + { + "name": "safety", + "role": "feature", + "semantic_type": "categorical", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 3, + "unique_ratio": 0.002171, + "example_values": [ + "low", + "high", + "med" + ] + } + }, + { + "name": "class", + "role": "target", + "semantic_type": "categorical", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 4, + "unique_ratio": 0.002894, + "example_values": [ + "unacc", + "good", + "acc", + "vgood" + ] + } + } + ] +} \ No newline at end of file diff --git a/hyperparameter/c2/tabdiff/tabdiff-c2-20260504_192001/public_gate/public_gate_report.json b/hyperparameter/c2/tabdiff/tabdiff-c2-20260504_192001/public_gate/public_gate_report.json new file mode 100644 index 0000000000000000000000000000000000000000..2e4cdcb2a4e28e40d59b17a83e773f622b7636a5 --- /dev/null +++ b/hyperparameter/c2/tabdiff/tabdiff-c2-20260504_192001/public_gate/public_gate_report.json @@ -0,0 +1,37 @@ +{ + "dataset_id": "c2", + "status": "pass", + "checks": [ + { + "check_id": "PG001_csv_parse_ok", + "status": "pass" + }, + { + "check_id": "PG002_split_header_consistent", + "status": "pass" + }, + { + "check_id": "PG003_profile_header_match", + "status": "pass" + }, + { + "check_id": "PG004_missing_token_normalized", + "status": "pass" + }, + { + "check_id": "PG005_semantic_type_validated", + "status": "pass" + }, + { + "check_id": "PG006_target_defined_and_valid", + "status": "pass" + } + ], + "target_column": "class", + "task_type": "classification", + "input_splits": { + "train": "/data/jialinzhang/SynthesizePipeline-server/DatasetNew/c2/c2-train.csv", + "val": "/data/jialinzhang/SynthesizePipeline-server/DatasetNew/c2/c2-val.csv", + "test": "/data/jialinzhang/SynthesizePipeline-server/DatasetNew/c2/c2-test.csv" + } +} \ No newline at end of file diff --git a/hyperparameter/c2/tabdiff/tabdiff-c2-20260504_192001/public_gate/staged_input_manifest.json b/hyperparameter/c2/tabdiff/tabdiff-c2-20260504_192001/public_gate/staged_input_manifest.json new file mode 100644 index 0000000000000000000000000000000000000000..ff86dc95aad598a724fe76786cbfecb962b083b3 --- /dev/null +++ b/hyperparameter/c2/tabdiff/tabdiff-c2-20260504_192001/public_gate/staged_input_manifest.json @@ -0,0 +1,149 @@ +{ + "dataset_id": "c2", + "target_column": "class", + "task_type": "classification", + "train_csv": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/c2/tabdiff/tabdiff-c2-20260504_192001/staged/public/train.csv", + "val_csv": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/c2/tabdiff/tabdiff-c2-20260504_192001/staged/public/val.csv", + "test_csv": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/c2/tabdiff/tabdiff-c2-20260504_192001/staged/public/test.csv", + "features_json": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/c2/tabdiff/tabdiff-c2-20260504_192001/staged/public/staged_features.json", + "public_gate_report": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/c2/tabdiff/tabdiff-c2-20260504_192001/public_gate/public_gate_report.json", + "column_schema": [ + { + "name": "buying", + "role": "feature", + "semantic_type": "categorical", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 4, + "unique_ratio": 0.002894, + "example_values": [ + "vhigh", + "med", + "high", + "low" + ] + } + }, + { + "name": "maint", + "role": "feature", + "semantic_type": "categorical", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 4, + "unique_ratio": 0.002894, + "example_values": [ + "vhigh", + "low", + "med", + "high" + ] + } + }, + { + "name": "doors", + "role": "feature", + "semantic_type": "categorical", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 4, + "unique_ratio": 0.002894, + "example_values": [ + "2", + "5more", + "3", + "4" + ] + } + }, + { + "name": "persons", + "role": "feature", + "semantic_type": "categorical", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 3, + "unique_ratio": 0.002171, + "example_values": [ + "2", + "4", + "more" + ] + } + }, + { + "name": "lug_boot", + "role": "feature", + "semantic_type": "categorical", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 3, + "unique_ratio": 0.002171, + "example_values": [ + "small", + "big", + "med" + ] + } + }, + { + "name": "safety", + "role": "feature", + "semantic_type": "categorical", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 3, + "unique_ratio": 0.002171, + "example_values": [ + "low", + "high", + "med" + ] + } + }, + { + "name": "class", + "role": "target", + "semantic_type": "categorical", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 4, + "unique_ratio": 0.002894, + "example_values": [ + "unacc", + "good", + "acc", + "vgood" + ] + } + } + ] +} \ No newline at end of file diff --git a/hyperparameter/c2/tabdiff/tabdiff-c2-20260504_192001/run_config.json b/hyperparameter/c2/tabdiff/tabdiff-c2-20260504_192001/run_config.json new file mode 100644 index 0000000000000000000000000000000000000000..d4ffd20a5ab2cd5fe8aa160abcb031f0790cb300 --- /dev/null +++ b/hyperparameter/c2/tabdiff/tabdiff-c2-20260504_192001/run_config.json @@ -0,0 +1,40 @@ +{ + "schema_version": 1, + "recorded_at": "2026-05-04T19:20:01", + "dataset_id": "c2", + "model": "tabdiff", + "work_dir": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/c2/tabdiff/tabdiff-c2-20260504_192001", + "dataset_source_requested": "new", + "dataset_source_resolved": "new", + "cli_args": { + "model": "tabdiff", + "dataset": "c2", + "dataset_source": "new", + "train": true, + "generate": true, + "num_rows": 0, + "epochs": 500, + "output_dir": null, + "model_dir": null, + "work_dir": null, + "resume": false, + "no_stats": false + }, + "resolved": { + "num_rows": 1382, + "model_path": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/c2/tabdiff/tabdiff-c2-20260504_192001/models_tabdiff/trained.pt", + "output_csv": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/c2/tabdiff/tabdiff-c2-20260504_192001/tabdiff-c2-1382-20260504_192715.csv" + }, + "input_artifacts": { + "public_gate_report": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/c2/tabdiff/tabdiff-c2-20260504_192001/public_gate/public_gate_report.json", + "public_manifest": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/c2/tabdiff/tabdiff-c2-20260504_192001/public_gate/staged_input_manifest.json", + "model_manifest": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/c2/tabdiff/tabdiff-c2-20260504_192001/staged/tabdiff/model_input_manifest.json", + "train_csv": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/c2/tabdiff/tabdiff-c2-20260504_192001/staged/public/train.csv", + "features_json": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/c2/tabdiff/tabdiff-c2-20260504_192001/staged/public/staged_features.json", + "target_column": "class", + "task_type": "classification" + }, + "env_overrides": { + "BENCHMARK_TABDIFF_GPUS": "device=3" + } +} \ No newline at end of file diff --git a/hyperparameter/c2/tabdiff/tabdiff-c2-20260504_192001/runtime_result.json b/hyperparameter/c2/tabdiff/tabdiff-c2-20260504_192001/runtime_result.json new file mode 100644 index 0000000000000000000000000000000000000000..ba2fa678fdcc2f45417b328e324c05d74646aff1 --- /dev/null +++ b/hyperparameter/c2/tabdiff/tabdiff-c2-20260504_192001/runtime_result.json @@ -0,0 +1,27 @@ +{ + "dataset_id": "c2", + "model": "tabdiff", + "run_id": "tabdiff-c2-20260504_192001", + "public_gate_status": "pass", + "adapter_ready_status": "pass", + "train_status": "success", + "generate_status": "success", + "reason_code": null, + "reason_detail": null, + "artifacts": { + "synthetic_csv": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/c2/tabdiff/tabdiff-c2-20260504_192001/tabdiff-c2-1382-20260504_192715.csv", + "model_path": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/c2/tabdiff/tabdiff-c2-20260504_192001/models_tabdiff/trained.pt" + }, + "timings": { + "train": { + "started_at": "2026-05-04T19:20:01", + "ended_at": "2026-05-04T19:27:15", + "duration_sec": 433.993 + }, + "generate": { + "started_at": "2026-05-04T19:27:15", + "ended_at": "2026-05-04T19:27:25", + "duration_sec": 9.515 + } + } +} \ No newline at end of file diff --git a/hyperparameter/c2/tabdiff/tabdiff-c2-20260504_192001/staged/public/staged_features.json b/hyperparameter/c2/tabdiff/tabdiff-c2-20260504_192001/staged/public/staged_features.json new file mode 100644 index 0000000000000000000000000000000000000000..61783861dd5de501592f76acb0469cf3f3b2622a --- /dev/null +++ b/hyperparameter/c2/tabdiff/tabdiff-c2-20260504_192001/staged/public/staged_features.json @@ -0,0 +1,37 @@ +[ + { + "feature_name": "buying", + "data_type": "categorical", + "is_target": false + }, + { + "feature_name": "maint", + "data_type": "categorical", + "is_target": false + }, + { + "feature_name": "doors", + "data_type": "categorical", + "is_target": false + }, + { + "feature_name": "persons", + "data_type": "categorical", + "is_target": false + }, + { + "feature_name": "lug_boot", + "data_type": "categorical", + "is_target": false + }, + { + "feature_name": "safety", + "data_type": "categorical", + "is_target": false + }, + { + "feature_name": "class", + "data_type": "categorical", + "is_target": true + } +] \ No newline at end of file diff --git a/hyperparameter/c2/tabdiff/tabdiff-c2-20260504_192001/staged/public/test.csv b/hyperparameter/c2/tabdiff/tabdiff-c2-20260504_192001/staged/public/test.csv new file mode 100644 index 0000000000000000000000000000000000000000..392a0d7189a34d8f13ecf20a99d64b03230d517c --- /dev/null +++ b/hyperparameter/c2/tabdiff/tabdiff-c2-20260504_192001/staged/public/test.csv @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:b48114a7d0bc5bd9a07920f903c8d4aba8bf98bf2a66a050da03588b0245ca73 +size 5273 diff --git a/hyperparameter/c2/tabdiff/tabdiff-c2-20260504_192001/staged/public/train.csv b/hyperparameter/c2/tabdiff/tabdiff-c2-20260504_192001/staged/public/train.csv new file mode 100644 index 0000000000000000000000000000000000000000..da4f4d55134eebc0e51157d0d467536371db1484 --- /dev/null +++ b/hyperparameter/c2/tabdiff/tabdiff-c2-20260504_192001/staged/public/train.csv @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:4aed00c2c2b3f88a55a7ebff31b2e1b5e0e32fb0a7267e0b9d2779cd23e434dd +size 41565 diff --git a/hyperparameter/c2/tabdiff/tabdiff-c2-20260504_192001/staged/public/val.csv b/hyperparameter/c2/tabdiff/tabdiff-c2-20260504_192001/staged/public/val.csv new file mode 100644 index 0000000000000000000000000000000000000000..af8caf7ee42524188534a3daf32996dc491952d9 --- /dev/null +++ b/hyperparameter/c2/tabdiff/tabdiff-c2-20260504_192001/staged/public/val.csv @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:26e90c1170a57a14c05832ac88027722b1f3848f9662c7c09ef7c93dcba4cc01 +size 5176 diff --git a/hyperparameter/c2/tabdiff/tabdiff-c2-20260504_192001/staged/tabdiff/adapter_report.json b/hyperparameter/c2/tabdiff/tabdiff-c2-20260504_192001/staged/tabdiff/adapter_report.json new file mode 100644 index 0000000000000000000000000000000000000000..00652481a70273ccb4fc26658f85b351d47eef0d --- /dev/null +++ b/hyperparameter/c2/tabdiff/tabdiff-c2-20260504_192001/staged/tabdiff/adapter_report.json @@ -0,0 +1,7 @@ +{ + "adapter_ready_status": "pass", + "adapter_fail_reason_code": null, + "adapter_fail_detail": null, + "adapter_transforms_applied": [], + "model_input_manifest": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/c2/tabdiff/tabdiff-c2-20260504_192001/staged/tabdiff/model_input_manifest.json" +} \ No newline at end of file diff --git a/hyperparameter/c2/tabdiff/tabdiff-c2-20260504_192001/staged/tabdiff/adapter_transforms_applied.json b/hyperparameter/c2/tabdiff/tabdiff-c2-20260504_192001/staged/tabdiff/adapter_transforms_applied.json new file mode 100644 index 0000000000000000000000000000000000000000..0637a088a01e8ddab3bf3fa98dbe804cbde1a0dc --- /dev/null +++ b/hyperparameter/c2/tabdiff/tabdiff-c2-20260504_192001/staged/tabdiff/adapter_transforms_applied.json @@ -0,0 +1 @@ +[] \ No newline at end of file diff --git a/hyperparameter/c2/tabdiff/tabdiff-c2-20260504_192001/staged/tabdiff/model_input_manifest.json b/hyperparameter/c2/tabdiff/tabdiff-c2-20260504_192001/staged/tabdiff/model_input_manifest.json new file mode 100644 index 0000000000000000000000000000000000000000..ac99e5f2d0b3af50493d633056b89fd35226d201 --- /dev/null +++ b/hyperparameter/c2/tabdiff/tabdiff-c2-20260504_192001/staged/tabdiff/model_input_manifest.json @@ -0,0 +1,151 @@ +{ + "dataset_id": "c2", + "model": "tabdiff", + "target_column": "class", + "task_type": "classification", + "column_schema": [ + { + "name": "buying", + "role": "feature", + "semantic_type": "categorical", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 4, + "unique_ratio": 0.002894, + "example_values": [ + "vhigh", + "med", + "high", + "low" + ] + } + }, + { + "name": "maint", + "role": "feature", + "semantic_type": "categorical", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 4, + "unique_ratio": 0.002894, + "example_values": [ + "vhigh", + "low", + "med", + "high" + ] + } + }, + { + "name": "doors", + "role": "feature", + "semantic_type": "categorical", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 4, + "unique_ratio": 0.002894, + "example_values": [ + "2", + "5more", + "3", + "4" + ] + } + }, + { + "name": "persons", + "role": "feature", + "semantic_type": "categorical", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 3, + "unique_ratio": 0.002171, + "example_values": [ + "2", + "4", + "more" + ] + } + }, + { + "name": "lug_boot", + "role": "feature", + "semantic_type": "categorical", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 3, + "unique_ratio": 0.002171, + "example_values": [ + "small", + "big", + "med" + ] + } + }, + { + "name": "safety", + "role": "feature", + "semantic_type": "categorical", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 3, + "unique_ratio": 0.002171, + "example_values": [ + "low", + "high", + "med" + ] + } + }, + { + "name": "class", + "role": "target", + "semantic_type": "categorical", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 4, + "unique_ratio": 0.002894, + "example_values": [ + "unacc", + "good", + "acc", + "vgood" + ] + } + } + ], + "public_manifest": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/c2/tabdiff/tabdiff-c2-20260504_192001/public_gate/staged_input_manifest.json", + "train_csv": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/c2/tabdiff/tabdiff-c2-20260504_192001/staged/public/train.csv", + "val_csv": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/c2/tabdiff/tabdiff-c2-20260504_192001/staged/public/val.csv", + "test_csv": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/c2/tabdiff/tabdiff-c2-20260504_192001/staged/public/test.csv", + "features_json": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/c2/tabdiff/tabdiff-c2-20260504_192001/staged/public/staged_features.json", + "public_gate_report": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/c2/tabdiff/tabdiff-c2-20260504_192001/public_gate/public_gate_report.json" +} \ No newline at end of file diff --git a/hyperparameter/c2/tabdiff/tabdiff-c2-20260504_192001/tabdiff-c2-1382-20260504_192715.csv b/hyperparameter/c2/tabdiff/tabdiff-c2-20260504_192001/tabdiff-c2-1382-20260504_192715.csv new file mode 100644 index 0000000000000000000000000000000000000000..3fa724b32977b8c64f20ddca60a2b462a524f340 --- /dev/null +++ b/hyperparameter/c2/tabdiff/tabdiff-c2-20260504_192001/tabdiff-c2-1382-20260504_192715.csv @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:56dc1ae5f910911035c157e950b4e46f201670ab4e3d8bdd7c37922eb242a0e0 +size 19397 diff --git a/hyperparameter/c2/tabdiff/tabdiff-c2-20260504_192001/tabdiff_train_meta.json b/hyperparameter/c2/tabdiff/tabdiff-c2-20260504_192001/tabdiff_train_meta.json new file mode 100644 index 0000000000000000000000000000000000000000..b93e041579ad7b1a984971416e1bb8b567d71270 --- /dev/null +++ b/hyperparameter/c2/tabdiff/tabdiff-c2-20260504_192001/tabdiff_train_meta.json @@ -0,0 +1,5 @@ +{ + "exp_name": "adapter_learnable", + "dataname": "pipeline_c2", + "steps": 500 +} \ No newline at end of file diff --git a/hyperparameter/c2/tabdiff/tabdiff-c2-20260504_192001/tabular_bundle/pipeline_c2/X_cat_test.npy b/hyperparameter/c2/tabdiff/tabdiff-c2-20260504_192001/tabular_bundle/pipeline_c2/X_cat_test.npy new file mode 100644 index 0000000000000000000000000000000000000000..e99f1ae8dc9e7155e5c4bbbd3c2f3f7215c628f7 --- /dev/null +++ b/hyperparameter/c2/tabdiff/tabdiff-c2-20260504_192001/tabular_bundle/pipeline_c2/X_cat_test.npy @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:24d2203601ba060728920e754747e5a1dc3955a1b5775e147382fee4f1812542 +size 66464 diff --git a/hyperparameter/c2/tabdiff/tabdiff-c2-20260504_192001/tabular_bundle/pipeline_c2/X_cat_train.npy b/hyperparameter/c2/tabdiff/tabdiff-c2-20260504_192001/tabular_bundle/pipeline_c2/X_cat_train.npy new file mode 100644 index 0000000000000000000000000000000000000000..e99f1ae8dc9e7155e5c4bbbd3c2f3f7215c628f7 --- /dev/null +++ b/hyperparameter/c2/tabdiff/tabdiff-c2-20260504_192001/tabular_bundle/pipeline_c2/X_cat_train.npy @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:24d2203601ba060728920e754747e5a1dc3955a1b5775e147382fee4f1812542 +size 66464 diff --git a/hyperparameter/c2/tabdiff/tabdiff-c2-20260504_192001/tabular_bundle/pipeline_c2/X_cat_val.npy b/hyperparameter/c2/tabdiff/tabdiff-c2-20260504_192001/tabular_bundle/pipeline_c2/X_cat_val.npy new file mode 100644 index 0000000000000000000000000000000000000000..e99f1ae8dc9e7155e5c4bbbd3c2f3f7215c628f7 --- /dev/null +++ b/hyperparameter/c2/tabdiff/tabdiff-c2-20260504_192001/tabular_bundle/pipeline_c2/X_cat_val.npy @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:24d2203601ba060728920e754747e5a1dc3955a1b5775e147382fee4f1812542 +size 66464 diff --git a/hyperparameter/c2/tabdiff/tabdiff-c2-20260504_192001/tabular_bundle/pipeline_c2/X_num_test.npy b/hyperparameter/c2/tabdiff/tabdiff-c2-20260504_192001/tabular_bundle/pipeline_c2/X_num_test.npy new file mode 100644 index 0000000000000000000000000000000000000000..9370f90332827a72be71bf3347770cac2c0354f5 --- /dev/null +++ b/hyperparameter/c2/tabdiff/tabdiff-c2-20260504_192001/tabular_bundle/pipeline_c2/X_num_test.npy @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:79dbdf62b6c69f71f3fef2bfcff35e322b2ac9387fc545116c7bc0078b3de9ec +size 128 diff --git a/hyperparameter/c2/tabdiff/tabdiff-c2-20260504_192001/tabular_bundle/pipeline_c2/X_num_train.npy b/hyperparameter/c2/tabdiff/tabdiff-c2-20260504_192001/tabular_bundle/pipeline_c2/X_num_train.npy new file mode 100644 index 0000000000000000000000000000000000000000..9370f90332827a72be71bf3347770cac2c0354f5 --- /dev/null +++ b/hyperparameter/c2/tabdiff/tabdiff-c2-20260504_192001/tabular_bundle/pipeline_c2/X_num_train.npy @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:79dbdf62b6c69f71f3fef2bfcff35e322b2ac9387fc545116c7bc0078b3de9ec +size 128 diff --git a/hyperparameter/c2/tabdiff/tabdiff-c2-20260504_192001/tabular_bundle/pipeline_c2/X_num_val.npy b/hyperparameter/c2/tabdiff/tabdiff-c2-20260504_192001/tabular_bundle/pipeline_c2/X_num_val.npy new file mode 100644 index 0000000000000000000000000000000000000000..9370f90332827a72be71bf3347770cac2c0354f5 --- /dev/null +++ b/hyperparameter/c2/tabdiff/tabdiff-c2-20260504_192001/tabular_bundle/pipeline_c2/X_num_val.npy @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:79dbdf62b6c69f71f3fef2bfcff35e322b2ac9387fc545116c7bc0078b3de9ec +size 128 diff --git a/hyperparameter/c2/tabdiff/tabdiff-c2-20260504_192001/tabular_bundle/pipeline_c2/info.json b/hyperparameter/c2/tabdiff/tabdiff-c2-20260504_192001/tabular_bundle/pipeline_c2/info.json new file mode 100644 index 0000000000000000000000000000000000000000..bf064b213901b4f614a949e23e2e89a63aac1488 --- /dev/null +++ b/hyperparameter/c2/tabdiff/tabdiff-c2-20260504_192001/tabular_bundle/pipeline_c2/info.json @@ -0,0 +1,88 @@ +{ + "name": "pipeline_c2", + "task_type": "multiclass", + "n_num_features": 0, + "n_cat_features": 6, + "train_size": 1382, + "test_num": 1382, + "val_num": 1382, + "train_num": 1382, + "bundle_note": "val/test matrices are train copies (train-only policy; no real held-out rows).", + "num_col_idx": [], + "cat_col_idx": [ + 0, + 1, + 2, + 3, + 4, + 5 + ], + "target_col_idx": [ + 6 + ], + "column_names": [ + "buying", + "maint", + "doors", + "persons", + "lug_boot", + "safety", + "class" + ], + "int_col_idx": [], + "int_columns": [], + "int_col_idx_wrt_num": [], + "metadata": { + "columns": { + "0": { + "sdtype": "categorical" + }, + "1": { + "sdtype": "categorical" + }, + "2": { + "sdtype": "categorical" + }, + "3": { + "sdtype": "categorical" + }, + "4": { + "sdtype": "categorical" + }, + "5": { + "sdtype": "categorical" + }, + "6": { + "sdtype": "categorical" + } + } + }, + "idx_mapping": { + "0": 0, + "1": 1, + "2": 2, + "3": 3, + "4": 4, + "5": 5, + "6": 6 + }, + "inverse_idx_mapping": { + "0": 0, + "1": 1, + "2": 2, + "3": 3, + "4": 4, + "5": 5, + "6": 6 + }, + "idx_name_mapping": { + "0": "buying", + "1": "maint", + "2": "doors", + "3": "persons", + "4": "lug_boot", + "5": "safety", + "6": "class" + }, + "n_classes": 4 +} \ No newline at end of file diff --git a/hyperparameter/c2/tabdiff/tabdiff-c2-20260504_192001/tabular_bundle/pipeline_c2/real.csv b/hyperparameter/c2/tabdiff/tabdiff-c2-20260504_192001/tabular_bundle/pipeline_c2/real.csv new file mode 100644 index 0000000000000000000000000000000000000000..f778fcd2758e712a195229c6f50504f94f046c8d --- /dev/null +++ b/hyperparameter/c2/tabdiff/tabdiff-c2-20260504_192001/tabular_bundle/pipeline_c2/real.csv @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:a54d8aab34745836c4d0260009787c8064c2c3e9d99040c5a6856190eb0745e9 +size 24215 diff --git a/hyperparameter/c2/tabdiff/tabdiff-c2-20260504_192001/tabular_bundle/pipeline_c2/test.csv b/hyperparameter/c2/tabdiff/tabdiff-c2-20260504_192001/tabular_bundle/pipeline_c2/test.csv new file mode 100644 index 0000000000000000000000000000000000000000..f778fcd2758e712a195229c6f50504f94f046c8d --- /dev/null +++ b/hyperparameter/c2/tabdiff/tabdiff-c2-20260504_192001/tabular_bundle/pipeline_c2/test.csv @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:a54d8aab34745836c4d0260009787c8064c2c3e9d99040c5a6856190eb0745e9 +size 24215 diff --git a/hyperparameter/c2/tabdiff/tabdiff-c2-20260504_192001/tabular_bundle/pipeline_c2/val.csv b/hyperparameter/c2/tabdiff/tabdiff-c2-20260504_192001/tabular_bundle/pipeline_c2/val.csv new file mode 100644 index 0000000000000000000000000000000000000000..f778fcd2758e712a195229c6f50504f94f046c8d --- /dev/null +++ b/hyperparameter/c2/tabdiff/tabdiff-c2-20260504_192001/tabular_bundle/pipeline_c2/val.csv @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:a54d8aab34745836c4d0260009787c8064c2c3e9d99040c5a6856190eb0745e9 +size 24215 diff --git a/hyperparameter/c2/tabdiff/tabdiff-c2-20260504_192001/tabular_bundle/pipeline_c2/y_test.npy b/hyperparameter/c2/tabdiff/tabdiff-c2-20260504_192001/tabular_bundle/pipeline_c2/y_test.npy new file mode 100644 index 0000000000000000000000000000000000000000..8bfc8f9de7350657cd6411c55d2b9b87bea9c13a --- /dev/null +++ b/hyperparameter/c2/tabdiff/tabdiff-c2-20260504_192001/tabular_bundle/pipeline_c2/y_test.npy @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:3f8eb0b25043331a30fde5439f063eed59e7a76f45d7d102b9b4fbcd16b551b4 +size 11184 diff --git a/hyperparameter/c2/tabdiff/tabdiff-c2-20260504_192001/tabular_bundle/pipeline_c2/y_train.npy b/hyperparameter/c2/tabdiff/tabdiff-c2-20260504_192001/tabular_bundle/pipeline_c2/y_train.npy new file mode 100644 index 0000000000000000000000000000000000000000..8bfc8f9de7350657cd6411c55d2b9b87bea9c13a --- /dev/null +++ b/hyperparameter/c2/tabdiff/tabdiff-c2-20260504_192001/tabular_bundle/pipeline_c2/y_train.npy @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:3f8eb0b25043331a30fde5439f063eed59e7a76f45d7d102b9b4fbcd16b551b4 +size 11184 diff --git a/hyperparameter/c2/tabdiff/tabdiff-c2-20260504_192001/tabular_bundle/pipeline_c2/y_val.npy b/hyperparameter/c2/tabdiff/tabdiff-c2-20260504_192001/tabular_bundle/pipeline_c2/y_val.npy new file mode 100644 index 0000000000000000000000000000000000000000..8bfc8f9de7350657cd6411c55d2b9b87bea9c13a --- /dev/null +++ b/hyperparameter/c2/tabdiff/tabdiff-c2-20260504_192001/tabular_bundle/pipeline_c2/y_val.npy @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:3f8eb0b25043331a30fde5439f063eed59e7a76f45d7d102b9b4fbcd16b551b4 +size 11184 diff --git a/hyperparameter/c2/tabdiff/tabdiff-c2-20260504_192001/train_20260504_192001.log b/hyperparameter/c2/tabdiff/tabdiff-c2-20260504_192001/train_20260504_192001.log new file mode 100644 index 0000000000000000000000000000000000000000..52d07898ca67294f361b06779da01d7421d61724 --- /dev/null +++ b/hyperparameter/c2/tabdiff/tabdiff-c2-20260504_192001/train_20260504_192001.log @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:8defbbfe8abb45222d212752be027472d58859ad7bdacc43a57e6651a10d7876 +size 286838 diff --git a/hyperparameter/c2/tabdiff/tabdiff-c2-20260504_192738/_tabdiff_gen.py b/hyperparameter/c2/tabdiff/tabdiff-c2-20260504_192738/_tabdiff_gen.py new file mode 100644 index 0000000000000000000000000000000000000000..7005d3e34d475d802e281c1eec77a995c24eea94 --- /dev/null +++ b/hyperparameter/c2/tabdiff/tabdiff-c2-20260504_192738/_tabdiff_gen.py @@ -0,0 +1,36 @@ + +import os, shutil, subprocess, sys +td = r"/workspace/TabDiff" +name = r"pipeline_c2" +src = r"/work/output-Benchmark-trainonly-v1/c2/tabdiff/tabdiff-c2-20260504_192738/tabular_bundle/pipeline_c2" +dst_data = os.path.join(td, "data", name) +dst_syn = os.path.join(td, "synthetic", name) +shutil.rmtree(dst_data, ignore_errors=True) +shutil.copytree(src, dst_data) +os.makedirs(dst_syn, exist_ok=True) +for fn in ("real.csv", "test.csv", "val.csv"): + shutil.copy(os.path.join(src, fn), os.path.join(dst_syn, fn)) +os.chdir(td) +os.environ["PYTHONPATH"] = td + os.pathsep + os.environ.get("PYTHONPATH", "") +subprocess.check_call([ + sys.executable, "-m", "tabdiff.main", + "--dataname", name, "--mode", "test", "--gpu", "0", + "--no_wandb", "--exp_name", r"adapter_learnable", + "--ckpt_path", r"/workspace/TabDiff/tabdiff/ckpt/pipeline_c2/adapter_learnable/model_800.pt", + "--num_samples_to_generate", str(int(1382)), +]) +# test() 写入 tabdiff/result////samples.csv +import glob as g +base = os.path.join(td, "tabdiff", "result", name, r"adapter_learnable") +best = None +best_t = -1.0 +for root, _, files in os.walk(base): + if "samples.csv" in files: + p = os.path.join(root, "samples.csv") + t = os.path.getmtime(p) + if t > best_t: + best_t = t + best = p +if not best: + raise SystemExit("tabdiff: no samples.csv under " + base) +shutil.copy(best, r"/work/output-Benchmark-trainonly-v1/c2/tabdiff/tabdiff-c2-20260504_192738/tabdiff-c2-1382-20260504_193847.csv") diff --git a/hyperparameter/c2/tabdiff/tabdiff-c2-20260504_192738/_tabdiff_train.py b/hyperparameter/c2/tabdiff/tabdiff-c2-20260504_192738/_tabdiff_train.py new file mode 100644 index 0000000000000000000000000000000000000000..b3f375c1da225ef1e64f6405ee4eb4d7dd8238a8 --- /dev/null +++ b/hyperparameter/c2/tabdiff/tabdiff-c2-20260504_192738/_tabdiff_train.py @@ -0,0 +1,21 @@ + +import os, shutil, subprocess, sys +td = r"/workspace/TabDiff" +name = r"pipeline_c2" +src = r"/work/output-Benchmark-trainonly-v1/c2/tabdiff/tabdiff-c2-20260504_192738/tabular_bundle/pipeline_c2" +dst_data = os.path.join(td, "data", name) +dst_syn = os.path.join(td, "synthetic", name) +shutil.rmtree(dst_data, ignore_errors=True) +shutil.copytree(src, dst_data) +os.makedirs(dst_syn, exist_ok=True) +for fn in ("real.csv", "test.csv", "val.csv"): + shutil.copy(os.path.join(src, fn), os.path.join(dst_syn, fn)) +os.chdir(td) +os.environ["PYTHONPATH"] = td + os.pathsep + os.environ.get("PYTHONPATH", "") +os.environ["TABDIFF_SMOKE_STEPS"] = "800" +os.environ["TABDIFF_ADAPTER_TRAIN"] = "1" +subprocess.check_call([ + sys.executable, "-m", "tabdiff.main", + "--dataname", name, "--mode", "train", "--gpu", "0", + "--no_wandb", "--exp_name", r"adapter_learnable", +]) diff --git a/hyperparameter/c2/tabdiff/tabdiff-c2-20260504_192738/gen_20260504_193847.log b/hyperparameter/c2/tabdiff/tabdiff-c2-20260504_192738/gen_20260504_193847.log new file mode 100644 index 0000000000000000000000000000000000000000..6bd514f078980397ed1a5dea9badf103475a2bd2 --- /dev/null +++ b/hyperparameter/c2/tabdiff/tabdiff-c2-20260504_192738/gen_20260504_193847.log @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:f1c2f4c2819d3b3e46b5dca01f3bd95d8a2423b49b38cb99ef5e75eb6d355863 +size 4471 diff --git a/hyperparameter/c2/tabdiff/tabdiff-c2-20260504_192738/input_snapshot.json b/hyperparameter/c2/tabdiff/tabdiff-c2-20260504_192738/input_snapshot.json new file mode 100644 index 0000000000000000000000000000000000000000..6d83542090e9720c485d72abe1bb75a800175917 --- /dev/null +++ b/hyperparameter/c2/tabdiff/tabdiff-c2-20260504_192738/input_snapshot.json @@ -0,0 +1,36 @@ +{ + "dataset_id": "c2", + "model": "tabdiff", + "inputs": { + "train_csv": { + "path": "/data/jialinzhang/SynthesizePipeline-server/DatasetNew/c2/c2-train.csv", + "exists": true, + "size": 42948, + "sha256": "17bc560fa96bd00fb3b526e1e65bc91210b701d0d0a4e8bb9b4c5196cab56def" + }, + "val_csv": { + "path": "/data/jialinzhang/SynthesizePipeline-server/DatasetNew/c2/c2-val.csv", + "exists": true, + "size": 5349, + "sha256": "61e565eca62e65a7dccd9d51039a3170413379e10fc494e25870e7c4294863c9" + }, + "test_csv": { + "path": "/data/jialinzhang/SynthesizePipeline-server/DatasetNew/c2/c2-test.csv", + "exists": true, + "size": 5448, + "sha256": "cbcbb062a1faf5fa44b66c80532baa229e05b94fc42137269761e6c6d84af20a" + }, + "profile_json": { + "path": "/data/jialinzhang/SynthesizePipeline-server/DatasetNew/artifacts/data_core/tabular/c2/c2-dataset_profile.json", + "exists": true, + "size": 3240, + "sha256": "526b7163b2076c93c0bf4638438081ee8a6907065d5b608faa40d1a3dbc2a27b" + }, + "contract_json": { + "path": "/data/jialinzhang/SynthesizePipeline-server/DatasetNew/artifacts/data_core/tabular/c2/c2-dataset_contract_v1.json", + "exists": true, + "size": 3731, + "sha256": "fb595a876054c2ee9b4e10cfe83a5691588de1d25466cbb9d473c18ad3604009" + } + } +} \ No newline at end of file diff --git a/hyperparameter/c2/tabdiff/tabdiff-c2-20260504_192738/models_tabdiff/trained.pt b/hyperparameter/c2/tabdiff/tabdiff-c2-20260504_192738/models_tabdiff/trained.pt new file mode 100644 index 0000000000000000000000000000000000000000..bc319a55a9c7152a1137f968b6fa1c735125ad11 --- /dev/null +++ b/hyperparameter/c2/tabdiff/tabdiff-c2-20260504_192738/models_tabdiff/trained.pt @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:306660b8aad4549267c68390b017e15ddb9bc06a02c80515eb72a97ae31a81eb +size 74 diff --git a/hyperparameter/c2/tabdiff/tabdiff-c2-20260504_192738/public_gate/normalized_schema_snapshot.json b/hyperparameter/c2/tabdiff/tabdiff-c2-20260504_192738/public_gate/normalized_schema_snapshot.json new file mode 100644 index 0000000000000000000000000000000000000000..689b1d00d96508e44ba40e58dc4560e19afc2b3b --- /dev/null +++ b/hyperparameter/c2/tabdiff/tabdiff-c2-20260504_192738/public_gate/normalized_schema_snapshot.json @@ -0,0 +1,144 @@ +{ + "dataset_id": "c2", + "target_column": "class", + "task_type": "classification", + "columns": [ + { + "name": "buying", + "role": "feature", + "semantic_type": "categorical", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 4, + "unique_ratio": 0.002894, + "example_values": [ + "vhigh", + "med", + "high", + "low" + ] + } + }, + { + "name": "maint", + "role": "feature", + "semantic_type": "categorical", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 4, + "unique_ratio": 0.002894, + "example_values": [ + "vhigh", + "low", + "med", + "high" + ] + } + }, + { + "name": "doors", + "role": "feature", + "semantic_type": "categorical", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 4, + "unique_ratio": 0.002894, + "example_values": [ + "2", + "5more", + "3", + "4" + ] + } + }, + { + "name": "persons", + "role": "feature", + "semantic_type": "categorical", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 3, + "unique_ratio": 0.002171, + "example_values": [ + "2", + "4", + "more" + ] + } + }, + { + "name": "lug_boot", + "role": "feature", + "semantic_type": "categorical", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 3, + "unique_ratio": 0.002171, + "example_values": [ + "small", + "big", + "med" + ] + } + }, + { + "name": "safety", + "role": "feature", + "semantic_type": "categorical", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 3, + "unique_ratio": 0.002171, + "example_values": [ + "low", + "high", + "med" + ] + } + }, + { + "name": "class", + "role": "target", + "semantic_type": "categorical", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 4, + "unique_ratio": 0.002894, + "example_values": [ + "unacc", + "good", + "acc", + "vgood" + ] + } + } + ] +} \ No newline at end of file diff --git a/hyperparameter/c2/tabdiff/tabdiff-c2-20260504_192738/public_gate/public_gate_report.json b/hyperparameter/c2/tabdiff/tabdiff-c2-20260504_192738/public_gate/public_gate_report.json new file mode 100644 index 0000000000000000000000000000000000000000..2e4cdcb2a4e28e40d59b17a83e773f622b7636a5 --- /dev/null +++ b/hyperparameter/c2/tabdiff/tabdiff-c2-20260504_192738/public_gate/public_gate_report.json @@ -0,0 +1,37 @@ +{ + "dataset_id": "c2", + "status": "pass", + "checks": [ + { + "check_id": "PG001_csv_parse_ok", + "status": "pass" + }, + { + "check_id": "PG002_split_header_consistent", + "status": "pass" + }, + { + "check_id": "PG003_profile_header_match", + "status": "pass" + }, + { + "check_id": "PG004_missing_token_normalized", + "status": "pass" + }, + { + "check_id": "PG005_semantic_type_validated", + "status": "pass" + }, + { + "check_id": "PG006_target_defined_and_valid", + "status": "pass" + } + ], + "target_column": "class", + "task_type": "classification", + "input_splits": { + "train": "/data/jialinzhang/SynthesizePipeline-server/DatasetNew/c2/c2-train.csv", + "val": "/data/jialinzhang/SynthesizePipeline-server/DatasetNew/c2/c2-val.csv", + "test": "/data/jialinzhang/SynthesizePipeline-server/DatasetNew/c2/c2-test.csv" + } +} \ No newline at end of file diff --git a/hyperparameter/c2/tabdiff/tabdiff-c2-20260504_192738/public_gate/staged_input_manifest.json b/hyperparameter/c2/tabdiff/tabdiff-c2-20260504_192738/public_gate/staged_input_manifest.json new file mode 100644 index 0000000000000000000000000000000000000000..6b7ee5a0945ab2967fb4a9fffe4bd39265f093ec --- /dev/null +++ b/hyperparameter/c2/tabdiff/tabdiff-c2-20260504_192738/public_gate/staged_input_manifest.json @@ -0,0 +1,149 @@ +{ + "dataset_id": "c2", + "target_column": "class", + "task_type": "classification", + "train_csv": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/c2/tabdiff/tabdiff-c2-20260504_192738/staged/public/train.csv", + "val_csv": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/c2/tabdiff/tabdiff-c2-20260504_192738/staged/public/val.csv", + "test_csv": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/c2/tabdiff/tabdiff-c2-20260504_192738/staged/public/test.csv", + "features_json": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/c2/tabdiff/tabdiff-c2-20260504_192738/staged/public/staged_features.json", + "public_gate_report": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/c2/tabdiff/tabdiff-c2-20260504_192738/public_gate/public_gate_report.json", + "column_schema": [ + { + "name": "buying", + "role": "feature", + "semantic_type": "categorical", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 4, + "unique_ratio": 0.002894, + "example_values": [ + "vhigh", + "med", + "high", + "low" + ] + } + }, + { + "name": "maint", + "role": "feature", + "semantic_type": "categorical", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 4, + "unique_ratio": 0.002894, + "example_values": [ + "vhigh", + "low", + "med", + "high" + ] + } + }, + { + "name": "doors", + "role": "feature", + "semantic_type": "categorical", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 4, + "unique_ratio": 0.002894, + "example_values": [ + "2", + "5more", + "3", + "4" + ] + } + }, + { + "name": "persons", + "role": "feature", + "semantic_type": "categorical", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 3, + "unique_ratio": 0.002171, + "example_values": [ + "2", + "4", + "more" + ] + } + }, + { + "name": "lug_boot", + "role": "feature", + "semantic_type": "categorical", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 3, + "unique_ratio": 0.002171, + "example_values": [ + "small", + "big", + "med" + ] + } + }, + { + "name": "safety", + "role": "feature", + "semantic_type": "categorical", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 3, + "unique_ratio": 0.002171, + "example_values": [ + "low", + "high", + "med" + ] + } + }, + { + "name": "class", + "role": "target", + "semantic_type": "categorical", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 4, + "unique_ratio": 0.002894, + "example_values": [ + "unacc", + "good", + "acc", + "vgood" + ] + } + } + ] +} \ No newline at end of file diff --git a/hyperparameter/c2/tabdiff/tabdiff-c2-20260504_192738/run_config.json b/hyperparameter/c2/tabdiff/tabdiff-c2-20260504_192738/run_config.json new file mode 100644 index 0000000000000000000000000000000000000000..e4328800ddc8f583cd3adc1e717926b4d5477c8c --- /dev/null +++ b/hyperparameter/c2/tabdiff/tabdiff-c2-20260504_192738/run_config.json @@ -0,0 +1,40 @@ +{ + "schema_version": 1, + "recorded_at": "2026-05-04T19:27:38", + "dataset_id": "c2", + "model": "tabdiff", + "work_dir": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/c2/tabdiff/tabdiff-c2-20260504_192738", + "dataset_source_requested": "new", + "dataset_source_resolved": "new", + "cli_args": { + "model": "tabdiff", + "dataset": "c2", + "dataset_source": "new", + "train": true, + "generate": true, + "num_rows": 0, + "epochs": 800, + "output_dir": null, + "model_dir": null, + "work_dir": null, + "resume": false, + "no_stats": false + }, + "resolved": { + "num_rows": 1382, + "model_path": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/c2/tabdiff/tabdiff-c2-20260504_192738/models_tabdiff/trained.pt", + "output_csv": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/c2/tabdiff/tabdiff-c2-20260504_192738/tabdiff-c2-1382-20260504_193847.csv" + }, + "input_artifacts": { + "public_gate_report": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/c2/tabdiff/tabdiff-c2-20260504_192738/public_gate/public_gate_report.json", + "public_manifest": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/c2/tabdiff/tabdiff-c2-20260504_192738/public_gate/staged_input_manifest.json", + "model_manifest": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/c2/tabdiff/tabdiff-c2-20260504_192738/staged/tabdiff/model_input_manifest.json", + "train_csv": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/c2/tabdiff/tabdiff-c2-20260504_192738/staged/public/train.csv", + "features_json": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/c2/tabdiff/tabdiff-c2-20260504_192738/staged/public/staged_features.json", + "target_column": "class", + "task_type": "classification" + }, + "env_overrides": { + "BENCHMARK_TABDIFF_GPUS": "device=3" + } +} \ No newline at end of file diff --git a/hyperparameter/c2/tabdiff/tabdiff-c2-20260504_192738/runtime_result.json b/hyperparameter/c2/tabdiff/tabdiff-c2-20260504_192738/runtime_result.json new file mode 100644 index 0000000000000000000000000000000000000000..386b462282e8a19eaf531ad3a44d14bbdb3553e1 --- /dev/null +++ b/hyperparameter/c2/tabdiff/tabdiff-c2-20260504_192738/runtime_result.json @@ -0,0 +1,27 @@ +{ + "dataset_id": "c2", + "model": "tabdiff", + "run_id": "tabdiff-c2-20260504_192738", + "public_gate_status": "pass", + "adapter_ready_status": "pass", + "train_status": "success", + "generate_status": "success", + "reason_code": null, + "reason_detail": null, + "artifacts": { + "synthetic_csv": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/c2/tabdiff/tabdiff-c2-20260504_192738/tabdiff-c2-1382-20260504_193847.csv", + "model_path": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/c2/tabdiff/tabdiff-c2-20260504_192738/models_tabdiff/trained.pt" + }, + "timings": { + "train": { + "started_at": "2026-05-04T19:27:38", + "ended_at": "2026-05-04T19:38:47", + "duration_sec": 669.526 + }, + "generate": { + "started_at": "2026-05-04T19:38:47", + "ended_at": "2026-05-04T19:38:57", + "duration_sec": 9.277 + } + } +} \ No newline at end of file diff --git a/hyperparameter/c2/tabdiff/tabdiff-c2-20260504_192738/staged/public/staged_features.json b/hyperparameter/c2/tabdiff/tabdiff-c2-20260504_192738/staged/public/staged_features.json new file mode 100644 index 0000000000000000000000000000000000000000..61783861dd5de501592f76acb0469cf3f3b2622a --- /dev/null +++ b/hyperparameter/c2/tabdiff/tabdiff-c2-20260504_192738/staged/public/staged_features.json @@ -0,0 +1,37 @@ +[ + { + "feature_name": "buying", + "data_type": "categorical", + "is_target": false + }, + { + "feature_name": "maint", + "data_type": "categorical", + "is_target": false + }, + { + "feature_name": "doors", + "data_type": "categorical", + "is_target": false + }, + { + "feature_name": "persons", + "data_type": "categorical", + "is_target": false + }, + { + "feature_name": "lug_boot", + "data_type": "categorical", + "is_target": false + }, + { + "feature_name": "safety", + "data_type": "categorical", + "is_target": false + }, + { + "feature_name": "class", + "data_type": "categorical", + "is_target": true + } +] \ No newline at end of file diff --git a/hyperparameter/c2/tabdiff/tabdiff-c2-20260504_192738/staged/public/test.csv b/hyperparameter/c2/tabdiff/tabdiff-c2-20260504_192738/staged/public/test.csv new file mode 100644 index 0000000000000000000000000000000000000000..392a0d7189a34d8f13ecf20a99d64b03230d517c --- /dev/null +++ b/hyperparameter/c2/tabdiff/tabdiff-c2-20260504_192738/staged/public/test.csv @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:b48114a7d0bc5bd9a07920f903c8d4aba8bf98bf2a66a050da03588b0245ca73 +size 5273 diff --git a/hyperparameter/c2/tabdiff/tabdiff-c2-20260504_192738/staged/public/train.csv b/hyperparameter/c2/tabdiff/tabdiff-c2-20260504_192738/staged/public/train.csv new file mode 100644 index 0000000000000000000000000000000000000000..da4f4d55134eebc0e51157d0d467536371db1484 --- /dev/null +++ b/hyperparameter/c2/tabdiff/tabdiff-c2-20260504_192738/staged/public/train.csv @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:4aed00c2c2b3f88a55a7ebff31b2e1b5e0e32fb0a7267e0b9d2779cd23e434dd +size 41565 diff --git a/hyperparameter/c2/tabdiff/tabdiff-c2-20260504_192738/staged/public/val.csv b/hyperparameter/c2/tabdiff/tabdiff-c2-20260504_192738/staged/public/val.csv new file mode 100644 index 0000000000000000000000000000000000000000..af8caf7ee42524188534a3daf32996dc491952d9 --- /dev/null +++ b/hyperparameter/c2/tabdiff/tabdiff-c2-20260504_192738/staged/public/val.csv @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:26e90c1170a57a14c05832ac88027722b1f3848f9662c7c09ef7c93dcba4cc01 +size 5176 diff --git a/hyperparameter/c2/tabdiff/tabdiff-c2-20260504_192738/staged/tabdiff/adapter_report.json b/hyperparameter/c2/tabdiff/tabdiff-c2-20260504_192738/staged/tabdiff/adapter_report.json new file mode 100644 index 0000000000000000000000000000000000000000..8e7af9819a7741d56ea8267c798912243d1fda8d --- /dev/null +++ b/hyperparameter/c2/tabdiff/tabdiff-c2-20260504_192738/staged/tabdiff/adapter_report.json @@ -0,0 +1,7 @@ +{ + "adapter_ready_status": "pass", + "adapter_fail_reason_code": null, + "adapter_fail_detail": null, + "adapter_transforms_applied": [], + "model_input_manifest": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/c2/tabdiff/tabdiff-c2-20260504_192738/staged/tabdiff/model_input_manifest.json" +} \ No newline at end of file diff --git a/hyperparameter/c2/tabdiff/tabdiff-c2-20260504_192738/staged/tabdiff/adapter_transforms_applied.json b/hyperparameter/c2/tabdiff/tabdiff-c2-20260504_192738/staged/tabdiff/adapter_transforms_applied.json new file mode 100644 index 0000000000000000000000000000000000000000..0637a088a01e8ddab3bf3fa98dbe804cbde1a0dc --- /dev/null +++ b/hyperparameter/c2/tabdiff/tabdiff-c2-20260504_192738/staged/tabdiff/adapter_transforms_applied.json @@ -0,0 +1 @@ +[] \ No newline at end of file diff --git a/hyperparameter/c2/tabdiff/tabdiff-c2-20260504_192738/staged/tabdiff/model_input_manifest.json b/hyperparameter/c2/tabdiff/tabdiff-c2-20260504_192738/staged/tabdiff/model_input_manifest.json new file mode 100644 index 0000000000000000000000000000000000000000..665b2ef2853d658b70caac2ec9f04843422d2fee --- /dev/null +++ b/hyperparameter/c2/tabdiff/tabdiff-c2-20260504_192738/staged/tabdiff/model_input_manifest.json @@ -0,0 +1,151 @@ +{ + "dataset_id": "c2", + "model": "tabdiff", + "target_column": "class", + "task_type": "classification", + "column_schema": [ + { + "name": "buying", + "role": "feature", + "semantic_type": "categorical", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 4, + "unique_ratio": 0.002894, + "example_values": [ + "vhigh", + "med", + "high", + "low" + ] + } + }, + { + "name": "maint", + "role": "feature", + "semantic_type": "categorical", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 4, + "unique_ratio": 0.002894, + "example_values": [ + "vhigh", + "low", + "med", + "high" + ] + } + }, + { + "name": "doors", + "role": "feature", + "semantic_type": "categorical", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 4, + "unique_ratio": 0.002894, + "example_values": [ + "2", + "5more", + "3", + "4" + ] + } + }, + { + "name": "persons", + "role": "feature", + "semantic_type": "categorical", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 3, + "unique_ratio": 0.002171, + "example_values": [ + "2", + "4", + "more" + ] + } + }, + { + "name": "lug_boot", + "role": "feature", + "semantic_type": "categorical", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 3, + "unique_ratio": 0.002171, + "example_values": [ + "small", + "big", + "med" + ] + } + }, + { + "name": "safety", + "role": "feature", + "semantic_type": "categorical", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 3, + "unique_ratio": 0.002171, + "example_values": [ + "low", + "high", + "med" + ] + } + }, + { + "name": "class", + "role": "target", + "semantic_type": "categorical", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 4, + "unique_ratio": 0.002894, + "example_values": [ + "unacc", + "good", + "acc", + "vgood" + ] + } + } + ], + "public_manifest": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/c2/tabdiff/tabdiff-c2-20260504_192738/public_gate/staged_input_manifest.json", + "train_csv": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/c2/tabdiff/tabdiff-c2-20260504_192738/staged/public/train.csv", + "val_csv": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/c2/tabdiff/tabdiff-c2-20260504_192738/staged/public/val.csv", + "test_csv": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/c2/tabdiff/tabdiff-c2-20260504_192738/staged/public/test.csv", + "features_json": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/c2/tabdiff/tabdiff-c2-20260504_192738/staged/public/staged_features.json", + "public_gate_report": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/c2/tabdiff/tabdiff-c2-20260504_192738/public_gate/public_gate_report.json" +} \ No newline at end of file diff --git a/hyperparameter/c2/tabdiff/tabdiff-c2-20260504_192738/tabdiff-c2-1382-20260504_193847.csv b/hyperparameter/c2/tabdiff/tabdiff-c2-20260504_192738/tabdiff-c2-1382-20260504_193847.csv new file mode 100644 index 0000000000000000000000000000000000000000..722111284cd0b21f1df306d42057cf8398762968 --- /dev/null +++ b/hyperparameter/c2/tabdiff/tabdiff-c2-20260504_192738/tabdiff-c2-1382-20260504_193847.csv @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:cd00817c80ba85470c0445102735d9377f7d011cba84e87aabf293f23afeeb62 +size 19397 diff --git a/hyperparameter/c2/tabdiff/tabdiff-c2-20260504_192738/tabdiff_train_meta.json b/hyperparameter/c2/tabdiff/tabdiff-c2-20260504_192738/tabdiff_train_meta.json new file mode 100644 index 0000000000000000000000000000000000000000..fce1c3e4820a9268351e5a3c55d26ad152ab09e1 --- /dev/null +++ b/hyperparameter/c2/tabdiff/tabdiff-c2-20260504_192738/tabdiff_train_meta.json @@ -0,0 +1,5 @@ +{ + "exp_name": "adapter_learnable", + "dataname": "pipeline_c2", + "steps": 800 +} \ No newline at end of file diff --git a/hyperparameter/c2/tabdiff/tabdiff-c2-20260504_192738/tabular_bundle/pipeline_c2/X_cat_test.npy b/hyperparameter/c2/tabdiff/tabdiff-c2-20260504_192738/tabular_bundle/pipeline_c2/X_cat_test.npy new file mode 100644 index 0000000000000000000000000000000000000000..e99f1ae8dc9e7155e5c4bbbd3c2f3f7215c628f7 --- /dev/null +++ b/hyperparameter/c2/tabdiff/tabdiff-c2-20260504_192738/tabular_bundle/pipeline_c2/X_cat_test.npy @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:24d2203601ba060728920e754747e5a1dc3955a1b5775e147382fee4f1812542 +size 66464 diff --git a/hyperparameter/c2/tabdiff/tabdiff-c2-20260504_192738/tabular_bundle/pipeline_c2/X_cat_train.npy b/hyperparameter/c2/tabdiff/tabdiff-c2-20260504_192738/tabular_bundle/pipeline_c2/X_cat_train.npy new file mode 100644 index 0000000000000000000000000000000000000000..e99f1ae8dc9e7155e5c4bbbd3c2f3f7215c628f7 --- /dev/null +++ b/hyperparameter/c2/tabdiff/tabdiff-c2-20260504_192738/tabular_bundle/pipeline_c2/X_cat_train.npy @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:24d2203601ba060728920e754747e5a1dc3955a1b5775e147382fee4f1812542 +size 66464 diff --git a/hyperparameter/c2/tabdiff/tabdiff-c2-20260504_192738/tabular_bundle/pipeline_c2/X_cat_val.npy b/hyperparameter/c2/tabdiff/tabdiff-c2-20260504_192738/tabular_bundle/pipeline_c2/X_cat_val.npy new file mode 100644 index 0000000000000000000000000000000000000000..e99f1ae8dc9e7155e5c4bbbd3c2f3f7215c628f7 --- /dev/null +++ b/hyperparameter/c2/tabdiff/tabdiff-c2-20260504_192738/tabular_bundle/pipeline_c2/X_cat_val.npy @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:24d2203601ba060728920e754747e5a1dc3955a1b5775e147382fee4f1812542 +size 66464 diff --git a/hyperparameter/c2/tabdiff/tabdiff-c2-20260504_192738/tabular_bundle/pipeline_c2/X_num_test.npy b/hyperparameter/c2/tabdiff/tabdiff-c2-20260504_192738/tabular_bundle/pipeline_c2/X_num_test.npy new file mode 100644 index 0000000000000000000000000000000000000000..9370f90332827a72be71bf3347770cac2c0354f5 --- /dev/null +++ b/hyperparameter/c2/tabdiff/tabdiff-c2-20260504_192738/tabular_bundle/pipeline_c2/X_num_test.npy @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:79dbdf62b6c69f71f3fef2bfcff35e322b2ac9387fc545116c7bc0078b3de9ec +size 128 diff --git a/hyperparameter/c2/tabdiff/tabdiff-c2-20260504_192738/tabular_bundle/pipeline_c2/X_num_train.npy b/hyperparameter/c2/tabdiff/tabdiff-c2-20260504_192738/tabular_bundle/pipeline_c2/X_num_train.npy new file mode 100644 index 0000000000000000000000000000000000000000..9370f90332827a72be71bf3347770cac2c0354f5 --- /dev/null +++ b/hyperparameter/c2/tabdiff/tabdiff-c2-20260504_192738/tabular_bundle/pipeline_c2/X_num_train.npy @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:79dbdf62b6c69f71f3fef2bfcff35e322b2ac9387fc545116c7bc0078b3de9ec +size 128 diff --git a/hyperparameter/c2/tabdiff/tabdiff-c2-20260504_192738/tabular_bundle/pipeline_c2/X_num_val.npy b/hyperparameter/c2/tabdiff/tabdiff-c2-20260504_192738/tabular_bundle/pipeline_c2/X_num_val.npy new file mode 100644 index 0000000000000000000000000000000000000000..9370f90332827a72be71bf3347770cac2c0354f5 --- /dev/null +++ b/hyperparameter/c2/tabdiff/tabdiff-c2-20260504_192738/tabular_bundle/pipeline_c2/X_num_val.npy @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:79dbdf62b6c69f71f3fef2bfcff35e322b2ac9387fc545116c7bc0078b3de9ec +size 128 diff --git a/hyperparameter/c2/tabdiff/tabdiff-c2-20260504_192738/tabular_bundle/pipeline_c2/info.json b/hyperparameter/c2/tabdiff/tabdiff-c2-20260504_192738/tabular_bundle/pipeline_c2/info.json new file mode 100644 index 0000000000000000000000000000000000000000..bf064b213901b4f614a949e23e2e89a63aac1488 --- /dev/null +++ b/hyperparameter/c2/tabdiff/tabdiff-c2-20260504_192738/tabular_bundle/pipeline_c2/info.json @@ -0,0 +1,88 @@ +{ + "name": "pipeline_c2", + "task_type": "multiclass", + "n_num_features": 0, + "n_cat_features": 6, + "train_size": 1382, + "test_num": 1382, + "val_num": 1382, + "train_num": 1382, + "bundle_note": "val/test matrices are train copies (train-only policy; no real held-out rows).", + "num_col_idx": [], + "cat_col_idx": [ + 0, + 1, + 2, + 3, + 4, + 5 + ], + "target_col_idx": [ + 6 + ], + "column_names": [ + "buying", + "maint", + "doors", + "persons", + "lug_boot", + "safety", + "class" + ], + "int_col_idx": [], + "int_columns": [], + "int_col_idx_wrt_num": [], + "metadata": { + "columns": { + "0": { + "sdtype": "categorical" + }, + "1": { + "sdtype": "categorical" + }, + "2": { + "sdtype": "categorical" + }, + "3": { + "sdtype": "categorical" + }, + "4": { + "sdtype": "categorical" + }, + "5": { + "sdtype": "categorical" + }, + "6": { + "sdtype": "categorical" + } + } + }, + "idx_mapping": { + "0": 0, + "1": 1, + "2": 2, + "3": 3, + "4": 4, + "5": 5, + "6": 6 + }, + "inverse_idx_mapping": { + "0": 0, + "1": 1, + "2": 2, + "3": 3, + "4": 4, + "5": 5, + "6": 6 + }, + "idx_name_mapping": { + "0": "buying", + "1": "maint", + "2": "doors", + "3": "persons", + "4": "lug_boot", + "5": "safety", + "6": "class" + }, + "n_classes": 4 +} \ No newline at end of file diff --git a/hyperparameter/c2/tabdiff/tabdiff-c2-20260504_192738/tabular_bundle/pipeline_c2/real.csv b/hyperparameter/c2/tabdiff/tabdiff-c2-20260504_192738/tabular_bundle/pipeline_c2/real.csv new file mode 100644 index 0000000000000000000000000000000000000000..f778fcd2758e712a195229c6f50504f94f046c8d --- /dev/null +++ b/hyperparameter/c2/tabdiff/tabdiff-c2-20260504_192738/tabular_bundle/pipeline_c2/real.csv @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:a54d8aab34745836c4d0260009787c8064c2c3e9d99040c5a6856190eb0745e9 +size 24215 diff --git a/hyperparameter/c2/tabdiff/tabdiff-c2-20260504_192738/tabular_bundle/pipeline_c2/test.csv b/hyperparameter/c2/tabdiff/tabdiff-c2-20260504_192738/tabular_bundle/pipeline_c2/test.csv new file mode 100644 index 0000000000000000000000000000000000000000..f778fcd2758e712a195229c6f50504f94f046c8d --- /dev/null +++ b/hyperparameter/c2/tabdiff/tabdiff-c2-20260504_192738/tabular_bundle/pipeline_c2/test.csv @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:a54d8aab34745836c4d0260009787c8064c2c3e9d99040c5a6856190eb0745e9 +size 24215 diff --git a/hyperparameter/c2/tabdiff/tabdiff-c2-20260504_192738/tabular_bundle/pipeline_c2/val.csv b/hyperparameter/c2/tabdiff/tabdiff-c2-20260504_192738/tabular_bundle/pipeline_c2/val.csv new file mode 100644 index 0000000000000000000000000000000000000000..f778fcd2758e712a195229c6f50504f94f046c8d --- /dev/null +++ b/hyperparameter/c2/tabdiff/tabdiff-c2-20260504_192738/tabular_bundle/pipeline_c2/val.csv @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:a54d8aab34745836c4d0260009787c8064c2c3e9d99040c5a6856190eb0745e9 +size 24215 diff --git a/hyperparameter/c2/tabdiff/tabdiff-c2-20260504_192738/tabular_bundle/pipeline_c2/y_test.npy b/hyperparameter/c2/tabdiff/tabdiff-c2-20260504_192738/tabular_bundle/pipeline_c2/y_test.npy new file mode 100644 index 0000000000000000000000000000000000000000..8bfc8f9de7350657cd6411c55d2b9b87bea9c13a --- /dev/null +++ b/hyperparameter/c2/tabdiff/tabdiff-c2-20260504_192738/tabular_bundle/pipeline_c2/y_test.npy @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:3f8eb0b25043331a30fde5439f063eed59e7a76f45d7d102b9b4fbcd16b551b4 +size 11184 diff --git a/hyperparameter/c2/tabdiff/tabdiff-c2-20260504_192738/tabular_bundle/pipeline_c2/y_train.npy b/hyperparameter/c2/tabdiff/tabdiff-c2-20260504_192738/tabular_bundle/pipeline_c2/y_train.npy new file mode 100644 index 0000000000000000000000000000000000000000..8bfc8f9de7350657cd6411c55d2b9b87bea9c13a --- /dev/null +++ b/hyperparameter/c2/tabdiff/tabdiff-c2-20260504_192738/tabular_bundle/pipeline_c2/y_train.npy @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:3f8eb0b25043331a30fde5439f063eed59e7a76f45d7d102b9b4fbcd16b551b4 +size 11184 diff --git a/hyperparameter/c2/tabdiff/tabdiff-c2-20260504_192738/tabular_bundle/pipeline_c2/y_val.npy b/hyperparameter/c2/tabdiff/tabdiff-c2-20260504_192738/tabular_bundle/pipeline_c2/y_val.npy new file mode 100644 index 0000000000000000000000000000000000000000..8bfc8f9de7350657cd6411c55d2b9b87bea9c13a --- /dev/null +++ b/hyperparameter/c2/tabdiff/tabdiff-c2-20260504_192738/tabular_bundle/pipeline_c2/y_val.npy @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:3f8eb0b25043331a30fde5439f063eed59e7a76f45d7d102b9b4fbcd16b551b4 +size 11184 diff --git a/hyperparameter/c2/tabdiff/tabdiff-c2-20260504_192738/train_20260504_192738.log b/hyperparameter/c2/tabdiff/tabdiff-c2-20260504_192738/train_20260504_192738.log new file mode 100644 index 0000000000000000000000000000000000000000..9e7f4afaea7d155bdab04b4867ff5940d7a9dbab --- /dev/null +++ b/hyperparameter/c2/tabdiff/tabdiff-c2-20260504_192738/train_20260504_192738.log @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:f4488f2f8aad0faaae8c589e31ff733464ab6eab0b3c522278ff3e1032b8540d +size 456790 diff --git a/hyperparameter/c2/tabdiff/tabdiff-c2-20260504_193909/_tabdiff_gen.py b/hyperparameter/c2/tabdiff/tabdiff-c2-20260504_193909/_tabdiff_gen.py new file mode 100644 index 0000000000000000000000000000000000000000..0c9628151accaae3e7c9978d7cae2da0431a4408 --- /dev/null +++ b/hyperparameter/c2/tabdiff/tabdiff-c2-20260504_193909/_tabdiff_gen.py @@ -0,0 +1,36 @@ + +import os, shutil, subprocess, sys +td = r"/workspace/TabDiff" +name = r"pipeline_c2" +src = r"/work/output-Benchmark-trainonly-v1/c2/tabdiff/tabdiff-c2-20260504_193909/tabular_bundle/pipeline_c2" +dst_data = os.path.join(td, "data", name) +dst_syn = os.path.join(td, "synthetic", name) +shutil.rmtree(dst_data, ignore_errors=True) +shutil.copytree(src, dst_data) +os.makedirs(dst_syn, exist_ok=True) +for fn in ("real.csv", "test.csv", "val.csv"): + shutil.copy(os.path.join(src, fn), os.path.join(dst_syn, fn)) +os.chdir(td) +os.environ["PYTHONPATH"] = td + os.pathsep + os.environ.get("PYTHONPATH", "") +subprocess.check_call([ + sys.executable, "-m", "tabdiff.main", + "--dataname", name, "--mode", "test", "--gpu", "0", + "--no_wandb", "--exp_name", r"adapter_learnable", + "--ckpt_path", r"/workspace/TabDiff/tabdiff/ckpt/pipeline_c2/adapter_learnable/model_800.pt", + "--num_samples_to_generate", str(int(1382)), +]) +# test() 写入 tabdiff/result////samples.csv +import glob as g +base = os.path.join(td, "tabdiff", "result", name, r"adapter_learnable") +best = None +best_t = -1.0 +for root, _, files in os.walk(base): + if "samples.csv" in files: + p = os.path.join(root, "samples.csv") + t = os.path.getmtime(p) + if t > best_t: + best_t = t + best = p +if not best: + raise SystemExit("tabdiff: no samples.csv under " + base) +shutil.copy(best, r"/work/output-Benchmark-trainonly-v1/c2/tabdiff/tabdiff-c2-20260504_193909/tabdiff-c2-1382-20260504_195126.csv") diff --git a/hyperparameter/c2/tabdiff/tabdiff-c2-20260504_193909/_tabdiff_train.py b/hyperparameter/c2/tabdiff/tabdiff-c2-20260504_193909/_tabdiff_train.py new file mode 100644 index 0000000000000000000000000000000000000000..30a00cadda625d22d0aa054345e44318f939b4a2 --- /dev/null +++ b/hyperparameter/c2/tabdiff/tabdiff-c2-20260504_193909/_tabdiff_train.py @@ -0,0 +1,21 @@ + +import os, shutil, subprocess, sys +td = r"/workspace/TabDiff" +name = r"pipeline_c2" +src = r"/work/output-Benchmark-trainonly-v1/c2/tabdiff/tabdiff-c2-20260504_193909/tabular_bundle/pipeline_c2" +dst_data = os.path.join(td, "data", name) +dst_syn = os.path.join(td, "synthetic", name) +shutil.rmtree(dst_data, ignore_errors=True) +shutil.copytree(src, dst_data) +os.makedirs(dst_syn, exist_ok=True) +for fn in ("real.csv", "test.csv", "val.csv"): + shutil.copy(os.path.join(src, fn), os.path.join(dst_syn, fn)) +os.chdir(td) +os.environ["PYTHONPATH"] = td + os.pathsep + os.environ.get("PYTHONPATH", "") +os.environ["TABDIFF_SMOKE_STEPS"] = "1000" +os.environ["TABDIFF_ADAPTER_TRAIN"] = "1" +subprocess.check_call([ + sys.executable, "-m", "tabdiff.main", + "--dataname", name, "--mode", "train", "--gpu", "0", + "--no_wandb", "--exp_name", r"adapter_learnable", +]) diff --git a/hyperparameter/c2/tabdiff/tabdiff-c2-20260504_193909/gen_20260504_195126.log b/hyperparameter/c2/tabdiff/tabdiff-c2-20260504_193909/gen_20260504_195126.log new file mode 100644 index 0000000000000000000000000000000000000000..862390c55c122027b715333008ae0b197abcbc4d --- /dev/null +++ b/hyperparameter/c2/tabdiff/tabdiff-c2-20260504_193909/gen_20260504_195126.log @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:08a2dbf554146f1e896a1d88d90cbe9dd40dc65825bc6847dab472c58489b962 +size 4474 diff --git a/hyperparameter/c2/tabdiff/tabdiff-c2-20260504_193909/input_snapshot.json b/hyperparameter/c2/tabdiff/tabdiff-c2-20260504_193909/input_snapshot.json new file mode 100644 index 0000000000000000000000000000000000000000..6d83542090e9720c485d72abe1bb75a800175917 --- /dev/null +++ b/hyperparameter/c2/tabdiff/tabdiff-c2-20260504_193909/input_snapshot.json @@ -0,0 +1,36 @@ +{ + "dataset_id": "c2", + "model": "tabdiff", + "inputs": { + "train_csv": { + "path": "/data/jialinzhang/SynthesizePipeline-server/DatasetNew/c2/c2-train.csv", + "exists": true, + "size": 42948, + "sha256": "17bc560fa96bd00fb3b526e1e65bc91210b701d0d0a4e8bb9b4c5196cab56def" + }, + "val_csv": { + "path": "/data/jialinzhang/SynthesizePipeline-server/DatasetNew/c2/c2-val.csv", + "exists": true, + "size": 5349, + "sha256": "61e565eca62e65a7dccd9d51039a3170413379e10fc494e25870e7c4294863c9" + }, + "test_csv": { + "path": "/data/jialinzhang/SynthesizePipeline-server/DatasetNew/c2/c2-test.csv", + "exists": true, + "size": 5448, + "sha256": "cbcbb062a1faf5fa44b66c80532baa229e05b94fc42137269761e6c6d84af20a" + }, + "profile_json": { + "path": "/data/jialinzhang/SynthesizePipeline-server/DatasetNew/artifacts/data_core/tabular/c2/c2-dataset_profile.json", + "exists": true, + "size": 3240, + "sha256": "526b7163b2076c93c0bf4638438081ee8a6907065d5b608faa40d1a3dbc2a27b" + }, + "contract_json": { + "path": "/data/jialinzhang/SynthesizePipeline-server/DatasetNew/artifacts/data_core/tabular/c2/c2-dataset_contract_v1.json", + "exists": true, + "size": 3731, + "sha256": "fb595a876054c2ee9b4e10cfe83a5691588de1d25466cbb9d473c18ad3604009" + } + } +} \ No newline at end of file diff --git a/hyperparameter/c2/tabdiff/tabdiff-c2-20260504_193909/models_tabdiff/trained.pt b/hyperparameter/c2/tabdiff/tabdiff-c2-20260504_193909/models_tabdiff/trained.pt new file mode 100644 index 0000000000000000000000000000000000000000..bc319a55a9c7152a1137f968b6fa1c735125ad11 --- /dev/null +++ b/hyperparameter/c2/tabdiff/tabdiff-c2-20260504_193909/models_tabdiff/trained.pt @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:306660b8aad4549267c68390b017e15ddb9bc06a02c80515eb72a97ae31a81eb +size 74 diff --git a/hyperparameter/c2/tabdiff/tabdiff-c2-20260504_193909/public_gate/normalized_schema_snapshot.json b/hyperparameter/c2/tabdiff/tabdiff-c2-20260504_193909/public_gate/normalized_schema_snapshot.json new file mode 100644 index 0000000000000000000000000000000000000000..689b1d00d96508e44ba40e58dc4560e19afc2b3b --- /dev/null +++ b/hyperparameter/c2/tabdiff/tabdiff-c2-20260504_193909/public_gate/normalized_schema_snapshot.json @@ -0,0 +1,144 @@ +{ + "dataset_id": "c2", + "target_column": "class", + "task_type": "classification", + "columns": [ + { + "name": "buying", + "role": "feature", + "semantic_type": "categorical", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 4, + "unique_ratio": 0.002894, + "example_values": [ + "vhigh", + "med", + "high", + "low" + ] + } + }, + { + "name": "maint", + "role": "feature", + "semantic_type": "categorical", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 4, + "unique_ratio": 0.002894, + "example_values": [ + "vhigh", + "low", + "med", + "high" + ] + } + }, + { + "name": "doors", + "role": "feature", + "semantic_type": "categorical", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 4, + "unique_ratio": 0.002894, + "example_values": [ + "2", + "5more", + "3", + "4" + ] + } + }, + { + "name": "persons", + "role": "feature", + "semantic_type": "categorical", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 3, + "unique_ratio": 0.002171, + "example_values": [ + "2", + "4", + "more" + ] + } + }, + { + "name": "lug_boot", + "role": "feature", + "semantic_type": "categorical", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 3, + "unique_ratio": 0.002171, + "example_values": [ + "small", + "big", + "med" + ] + } + }, + { + "name": "safety", + "role": "feature", + "semantic_type": "categorical", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 3, + "unique_ratio": 0.002171, + "example_values": [ + "low", + "high", + "med" + ] + } + }, + { + "name": "class", + "role": "target", + "semantic_type": "categorical", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 4, + "unique_ratio": 0.002894, + "example_values": [ + "unacc", + "good", + "acc", + "vgood" + ] + } + } + ] +} \ No newline at end of file diff --git a/hyperparameter/c2/tabdiff/tabdiff-c2-20260504_193909/public_gate/public_gate_report.json b/hyperparameter/c2/tabdiff/tabdiff-c2-20260504_193909/public_gate/public_gate_report.json new file mode 100644 index 0000000000000000000000000000000000000000..2e4cdcb2a4e28e40d59b17a83e773f622b7636a5 --- /dev/null +++ b/hyperparameter/c2/tabdiff/tabdiff-c2-20260504_193909/public_gate/public_gate_report.json @@ -0,0 +1,37 @@ +{ + "dataset_id": "c2", + "status": "pass", + "checks": [ + { + "check_id": "PG001_csv_parse_ok", + "status": "pass" + }, + { + "check_id": "PG002_split_header_consistent", + "status": "pass" + }, + { + "check_id": "PG003_profile_header_match", + "status": "pass" + }, + { + "check_id": "PG004_missing_token_normalized", + "status": "pass" + }, + { + "check_id": "PG005_semantic_type_validated", + "status": "pass" + }, + { + "check_id": "PG006_target_defined_and_valid", + "status": "pass" + } + ], + "target_column": "class", + "task_type": "classification", + "input_splits": { + "train": "/data/jialinzhang/SynthesizePipeline-server/DatasetNew/c2/c2-train.csv", + "val": "/data/jialinzhang/SynthesizePipeline-server/DatasetNew/c2/c2-val.csv", + "test": "/data/jialinzhang/SynthesizePipeline-server/DatasetNew/c2/c2-test.csv" + } +} \ No newline at end of file diff --git a/hyperparameter/c2/tabdiff/tabdiff-c2-20260504_193909/public_gate/staged_input_manifest.json b/hyperparameter/c2/tabdiff/tabdiff-c2-20260504_193909/public_gate/staged_input_manifest.json new file mode 100644 index 0000000000000000000000000000000000000000..0cfc75dbe9b02a3b448f5561d2fcc54a745dfc24 --- /dev/null +++ b/hyperparameter/c2/tabdiff/tabdiff-c2-20260504_193909/public_gate/staged_input_manifest.json @@ -0,0 +1,149 @@ +{ + "dataset_id": "c2", + "target_column": "class", + "task_type": "classification", + "train_csv": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/c2/tabdiff/tabdiff-c2-20260504_193909/staged/public/train.csv", + "val_csv": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/c2/tabdiff/tabdiff-c2-20260504_193909/staged/public/val.csv", + "test_csv": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/c2/tabdiff/tabdiff-c2-20260504_193909/staged/public/test.csv", + "features_json": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/c2/tabdiff/tabdiff-c2-20260504_193909/staged/public/staged_features.json", + "public_gate_report": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/c2/tabdiff/tabdiff-c2-20260504_193909/public_gate/public_gate_report.json", + "column_schema": [ + { + "name": "buying", + "role": "feature", + "semantic_type": "categorical", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 4, + "unique_ratio": 0.002894, + "example_values": [ + "vhigh", + "med", + "high", + "low" + ] + } + }, + { + "name": "maint", + "role": "feature", + "semantic_type": "categorical", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 4, + "unique_ratio": 0.002894, + "example_values": [ + "vhigh", + "low", + "med", + "high" + ] + } + }, + { + "name": "doors", + "role": "feature", + "semantic_type": "categorical", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 4, + "unique_ratio": 0.002894, + "example_values": [ + "2", + "5more", + "3", + "4" + ] + } + }, + { + "name": "persons", + "role": "feature", + "semantic_type": "categorical", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 3, + "unique_ratio": 0.002171, + "example_values": [ + "2", + "4", + "more" + ] + } + }, + { + "name": "lug_boot", + "role": "feature", + "semantic_type": "categorical", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 3, + "unique_ratio": 0.002171, + "example_values": [ + "small", + "big", + "med" + ] + } + }, + { + "name": "safety", + "role": "feature", + "semantic_type": "categorical", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 3, + "unique_ratio": 0.002171, + "example_values": [ + "low", + "high", + "med" + ] + } + }, + { + "name": "class", + "role": "target", + "semantic_type": "categorical", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 4, + "unique_ratio": 0.002894, + "example_values": [ + "unacc", + "good", + "acc", + "vgood" + ] + } + } + ] +} \ No newline at end of file diff --git a/hyperparameter/c2/tabdiff/tabdiff-c2-20260504_193909/run_config.json b/hyperparameter/c2/tabdiff/tabdiff-c2-20260504_193909/run_config.json new file mode 100644 index 0000000000000000000000000000000000000000..d2ff0d9976c4be670fa44aa41deacaea7ab8edda --- /dev/null +++ b/hyperparameter/c2/tabdiff/tabdiff-c2-20260504_193909/run_config.json @@ -0,0 +1,40 @@ +{ + "schema_version": 1, + "recorded_at": "2026-05-04T19:39:09", + "dataset_id": "c2", + "model": "tabdiff", + "work_dir": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/c2/tabdiff/tabdiff-c2-20260504_193909", + "dataset_source_requested": "new", + "dataset_source_resolved": "new", + "cli_args": { + "model": "tabdiff", + "dataset": "c2", + "dataset_source": "new", + "train": true, + "generate": true, + "num_rows": 0, + "epochs": 1000, + "output_dir": null, + "model_dir": null, + "work_dir": null, + "resume": false, + "no_stats": false + }, + "resolved": { + "num_rows": 1382, + "model_path": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/c2/tabdiff/tabdiff-c2-20260504_193909/models_tabdiff/trained.pt", + "output_csv": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/c2/tabdiff/tabdiff-c2-20260504_193909/tabdiff-c2-1382-20260504_195126.csv" + }, + "input_artifacts": { + "public_gate_report": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/c2/tabdiff/tabdiff-c2-20260504_193909/public_gate/public_gate_report.json", + "public_manifest": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/c2/tabdiff/tabdiff-c2-20260504_193909/public_gate/staged_input_manifest.json", + "model_manifest": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/c2/tabdiff/tabdiff-c2-20260504_193909/staged/tabdiff/model_input_manifest.json", + "train_csv": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/c2/tabdiff/tabdiff-c2-20260504_193909/staged/public/train.csv", + "features_json": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/c2/tabdiff/tabdiff-c2-20260504_193909/staged/public/staged_features.json", + "target_column": "class", + "task_type": "classification" + }, + "env_overrides": { + "BENCHMARK_TABDIFF_GPUS": "device=3" + } +} \ No newline at end of file diff --git a/hyperparameter/c2/tabdiff/tabdiff-c2-20260504_193909/runtime_result.json b/hyperparameter/c2/tabdiff/tabdiff-c2-20260504_193909/runtime_result.json new file mode 100644 index 0000000000000000000000000000000000000000..9e62341614ac9453508e1b9aaa64937189283e33 --- /dev/null +++ b/hyperparameter/c2/tabdiff/tabdiff-c2-20260504_193909/runtime_result.json @@ -0,0 +1,27 @@ +{ + "dataset_id": "c2", + "model": "tabdiff", + "run_id": "tabdiff-c2-20260504_193909", + "public_gate_status": "pass", + "adapter_ready_status": "pass", + "train_status": "success", + "generate_status": "success", + "reason_code": null, + "reason_detail": null, + "artifacts": { + "synthetic_csv": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/c2/tabdiff/tabdiff-c2-20260504_193909/tabdiff-c2-1382-20260504_195126.csv", + "model_path": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/c2/tabdiff/tabdiff-c2-20260504_193909/models_tabdiff/trained.pt" + }, + "timings": { + "train": { + "started_at": "2026-05-04T19:39:09", + "ended_at": "2026-05-04T19:51:26", + "duration_sec": 737.237 + }, + "generate": { + "started_at": "2026-05-04T19:51:26", + "ended_at": "2026-05-04T19:51:35", + "duration_sec": 9.185 + } + } +} \ No newline at end of file diff --git a/hyperparameter/c2/tabdiff/tabdiff-c2-20260504_193909/staged/public/staged_features.json b/hyperparameter/c2/tabdiff/tabdiff-c2-20260504_193909/staged/public/staged_features.json new file mode 100644 index 0000000000000000000000000000000000000000..61783861dd5de501592f76acb0469cf3f3b2622a --- /dev/null +++ b/hyperparameter/c2/tabdiff/tabdiff-c2-20260504_193909/staged/public/staged_features.json @@ -0,0 +1,37 @@ +[ + { + "feature_name": "buying", + "data_type": "categorical", + "is_target": false + }, + { + "feature_name": "maint", + "data_type": "categorical", + "is_target": false + }, + { + "feature_name": "doors", + "data_type": "categorical", + "is_target": false + }, + { + "feature_name": "persons", + "data_type": "categorical", + "is_target": false + }, + { + "feature_name": "lug_boot", + "data_type": "categorical", + "is_target": false + }, + { + "feature_name": "safety", + "data_type": "categorical", + "is_target": false + }, + { + "feature_name": "class", + "data_type": "categorical", + "is_target": true + } +] \ No newline at end of file diff --git a/hyperparameter/c2/tabdiff/tabdiff-c2-20260504_193909/staged/public/test.csv b/hyperparameter/c2/tabdiff/tabdiff-c2-20260504_193909/staged/public/test.csv new file mode 100644 index 0000000000000000000000000000000000000000..392a0d7189a34d8f13ecf20a99d64b03230d517c --- /dev/null +++ b/hyperparameter/c2/tabdiff/tabdiff-c2-20260504_193909/staged/public/test.csv @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:b48114a7d0bc5bd9a07920f903c8d4aba8bf98bf2a66a050da03588b0245ca73 +size 5273 diff --git a/hyperparameter/c2/tabdiff/tabdiff-c2-20260504_193909/staged/public/train.csv b/hyperparameter/c2/tabdiff/tabdiff-c2-20260504_193909/staged/public/train.csv new file mode 100644 index 0000000000000000000000000000000000000000..da4f4d55134eebc0e51157d0d467536371db1484 --- /dev/null +++ b/hyperparameter/c2/tabdiff/tabdiff-c2-20260504_193909/staged/public/train.csv @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:4aed00c2c2b3f88a55a7ebff31b2e1b5e0e32fb0a7267e0b9d2779cd23e434dd +size 41565 diff --git a/hyperparameter/c2/tabdiff/tabdiff-c2-20260504_193909/staged/public/val.csv b/hyperparameter/c2/tabdiff/tabdiff-c2-20260504_193909/staged/public/val.csv new file mode 100644 index 0000000000000000000000000000000000000000..af8caf7ee42524188534a3daf32996dc491952d9 --- /dev/null +++ b/hyperparameter/c2/tabdiff/tabdiff-c2-20260504_193909/staged/public/val.csv @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:26e90c1170a57a14c05832ac88027722b1f3848f9662c7c09ef7c93dcba4cc01 +size 5176 diff --git a/hyperparameter/c2/tabdiff/tabdiff-c2-20260504_193909/staged/tabdiff/adapter_report.json b/hyperparameter/c2/tabdiff/tabdiff-c2-20260504_193909/staged/tabdiff/adapter_report.json new file mode 100644 index 0000000000000000000000000000000000000000..4b32e766c30a3e1d3f7389d46df0577b75b5af01 --- /dev/null +++ b/hyperparameter/c2/tabdiff/tabdiff-c2-20260504_193909/staged/tabdiff/adapter_report.json @@ -0,0 +1,7 @@ +{ + "adapter_ready_status": "pass", + "adapter_fail_reason_code": null, + "adapter_fail_detail": null, + "adapter_transforms_applied": [], + "model_input_manifest": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/c2/tabdiff/tabdiff-c2-20260504_193909/staged/tabdiff/model_input_manifest.json" +} \ No newline at end of file diff --git a/hyperparameter/c2/tabdiff/tabdiff-c2-20260504_193909/staged/tabdiff/adapter_transforms_applied.json b/hyperparameter/c2/tabdiff/tabdiff-c2-20260504_193909/staged/tabdiff/adapter_transforms_applied.json new file mode 100644 index 0000000000000000000000000000000000000000..0637a088a01e8ddab3bf3fa98dbe804cbde1a0dc --- /dev/null +++ b/hyperparameter/c2/tabdiff/tabdiff-c2-20260504_193909/staged/tabdiff/adapter_transforms_applied.json @@ -0,0 +1 @@ +[] \ No newline at end of file diff --git a/hyperparameter/c2/tabdiff/tabdiff-c2-20260504_193909/staged/tabdiff/model_input_manifest.json b/hyperparameter/c2/tabdiff/tabdiff-c2-20260504_193909/staged/tabdiff/model_input_manifest.json new file mode 100644 index 0000000000000000000000000000000000000000..553396ed979271f1f6ca3c4bd89e62b0781df8c5 --- /dev/null +++ b/hyperparameter/c2/tabdiff/tabdiff-c2-20260504_193909/staged/tabdiff/model_input_manifest.json @@ -0,0 +1,151 @@ +{ + "dataset_id": "c2", + "model": "tabdiff", + "target_column": "class", + "task_type": "classification", + "column_schema": [ + { + "name": "buying", + "role": "feature", + "semantic_type": "categorical", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 4, + "unique_ratio": 0.002894, + "example_values": [ + "vhigh", + "med", + "high", + "low" + ] + } + }, + { + "name": "maint", + "role": "feature", + "semantic_type": "categorical", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 4, + "unique_ratio": 0.002894, + "example_values": [ + "vhigh", + "low", + "med", + "high" + ] + } + }, + { + "name": "doors", + "role": "feature", + "semantic_type": "categorical", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 4, + "unique_ratio": 0.002894, + "example_values": [ + "2", + "5more", + "3", + "4" + ] + } + }, + { + "name": "persons", + "role": "feature", + "semantic_type": "categorical", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 3, + "unique_ratio": 0.002171, + "example_values": [ + "2", + "4", + "more" + ] + } + }, + { + "name": "lug_boot", + "role": "feature", + "semantic_type": "categorical", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 3, + "unique_ratio": 0.002171, + "example_values": [ + "small", + "big", + "med" + ] + } + }, + { + "name": "safety", + "role": "feature", + "semantic_type": "categorical", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 3, + "unique_ratio": 0.002171, + "example_values": [ + "low", + "high", + "med" + ] + } + }, + { + "name": "class", + "role": "target", + "semantic_type": "categorical", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 4, + "unique_ratio": 0.002894, + "example_values": [ + "unacc", + "good", + "acc", + "vgood" + ] + } + } + ], + "public_manifest": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/c2/tabdiff/tabdiff-c2-20260504_193909/public_gate/staged_input_manifest.json", + "train_csv": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/c2/tabdiff/tabdiff-c2-20260504_193909/staged/public/train.csv", + "val_csv": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/c2/tabdiff/tabdiff-c2-20260504_193909/staged/public/val.csv", + "test_csv": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/c2/tabdiff/tabdiff-c2-20260504_193909/staged/public/test.csv", + "features_json": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/c2/tabdiff/tabdiff-c2-20260504_193909/staged/public/staged_features.json", + "public_gate_report": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/c2/tabdiff/tabdiff-c2-20260504_193909/public_gate/public_gate_report.json" +} \ No newline at end of file diff --git a/hyperparameter/c2/tabdiff/tabdiff-c2-20260504_193909/tabdiff-c2-1382-20260504_195126.csv b/hyperparameter/c2/tabdiff/tabdiff-c2-20260504_193909/tabdiff-c2-1382-20260504_195126.csv new file mode 100644 index 0000000000000000000000000000000000000000..9c7cb1a734e9a83266e398e5693a822f053edc2c --- /dev/null +++ b/hyperparameter/c2/tabdiff/tabdiff-c2-20260504_193909/tabdiff-c2-1382-20260504_195126.csv @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:af6b7f429a8baf2e2579623110ced56a70256964694f219923a657a2668f10de +size 19397 diff --git a/hyperparameter/c2/tabdiff/tabdiff-c2-20260504_193909/tabdiff_train_meta.json b/hyperparameter/c2/tabdiff/tabdiff-c2-20260504_193909/tabdiff_train_meta.json new file mode 100644 index 0000000000000000000000000000000000000000..05b9e85bd991bc0c119358f57a827ab39a5c7e17 --- /dev/null +++ b/hyperparameter/c2/tabdiff/tabdiff-c2-20260504_193909/tabdiff_train_meta.json @@ -0,0 +1,5 @@ +{ + "exp_name": "adapter_learnable", + "dataname": "pipeline_c2", + "steps": 1000 +} \ No newline at end of file diff --git a/hyperparameter/c2/tabdiff/tabdiff-c2-20260504_193909/tabular_bundle/pipeline_c2/X_cat_test.npy b/hyperparameter/c2/tabdiff/tabdiff-c2-20260504_193909/tabular_bundle/pipeline_c2/X_cat_test.npy new file mode 100644 index 0000000000000000000000000000000000000000..e99f1ae8dc9e7155e5c4bbbd3c2f3f7215c628f7 --- /dev/null +++ b/hyperparameter/c2/tabdiff/tabdiff-c2-20260504_193909/tabular_bundle/pipeline_c2/X_cat_test.npy @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:24d2203601ba060728920e754747e5a1dc3955a1b5775e147382fee4f1812542 +size 66464 diff --git a/hyperparameter/c2/tabdiff/tabdiff-c2-20260504_193909/tabular_bundle/pipeline_c2/X_cat_train.npy b/hyperparameter/c2/tabdiff/tabdiff-c2-20260504_193909/tabular_bundle/pipeline_c2/X_cat_train.npy new file mode 100644 index 0000000000000000000000000000000000000000..e99f1ae8dc9e7155e5c4bbbd3c2f3f7215c628f7 --- /dev/null +++ b/hyperparameter/c2/tabdiff/tabdiff-c2-20260504_193909/tabular_bundle/pipeline_c2/X_cat_train.npy @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:24d2203601ba060728920e754747e5a1dc3955a1b5775e147382fee4f1812542 +size 66464 diff --git a/hyperparameter/c2/tabdiff/tabdiff-c2-20260504_193909/tabular_bundle/pipeline_c2/X_cat_val.npy b/hyperparameter/c2/tabdiff/tabdiff-c2-20260504_193909/tabular_bundle/pipeline_c2/X_cat_val.npy new file mode 100644 index 0000000000000000000000000000000000000000..e99f1ae8dc9e7155e5c4bbbd3c2f3f7215c628f7 --- /dev/null +++ b/hyperparameter/c2/tabdiff/tabdiff-c2-20260504_193909/tabular_bundle/pipeline_c2/X_cat_val.npy @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:24d2203601ba060728920e754747e5a1dc3955a1b5775e147382fee4f1812542 +size 66464 diff --git a/hyperparameter/c2/tabdiff/tabdiff-c2-20260504_193909/tabular_bundle/pipeline_c2/X_num_test.npy b/hyperparameter/c2/tabdiff/tabdiff-c2-20260504_193909/tabular_bundle/pipeline_c2/X_num_test.npy new file mode 100644 index 0000000000000000000000000000000000000000..9370f90332827a72be71bf3347770cac2c0354f5 --- /dev/null +++ b/hyperparameter/c2/tabdiff/tabdiff-c2-20260504_193909/tabular_bundle/pipeline_c2/X_num_test.npy @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:79dbdf62b6c69f71f3fef2bfcff35e322b2ac9387fc545116c7bc0078b3de9ec +size 128 diff --git a/hyperparameter/c2/tabdiff/tabdiff-c2-20260504_193909/tabular_bundle/pipeline_c2/X_num_train.npy b/hyperparameter/c2/tabdiff/tabdiff-c2-20260504_193909/tabular_bundle/pipeline_c2/X_num_train.npy new file mode 100644 index 0000000000000000000000000000000000000000..9370f90332827a72be71bf3347770cac2c0354f5 --- /dev/null +++ b/hyperparameter/c2/tabdiff/tabdiff-c2-20260504_193909/tabular_bundle/pipeline_c2/X_num_train.npy @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:79dbdf62b6c69f71f3fef2bfcff35e322b2ac9387fc545116c7bc0078b3de9ec +size 128 diff --git a/hyperparameter/c2/tabdiff/tabdiff-c2-20260504_193909/tabular_bundle/pipeline_c2/X_num_val.npy b/hyperparameter/c2/tabdiff/tabdiff-c2-20260504_193909/tabular_bundle/pipeline_c2/X_num_val.npy new file mode 100644 index 0000000000000000000000000000000000000000..9370f90332827a72be71bf3347770cac2c0354f5 --- /dev/null +++ b/hyperparameter/c2/tabdiff/tabdiff-c2-20260504_193909/tabular_bundle/pipeline_c2/X_num_val.npy @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:79dbdf62b6c69f71f3fef2bfcff35e322b2ac9387fc545116c7bc0078b3de9ec +size 128 diff --git a/hyperparameter/c2/tabdiff/tabdiff-c2-20260504_193909/tabular_bundle/pipeline_c2/info.json b/hyperparameter/c2/tabdiff/tabdiff-c2-20260504_193909/tabular_bundle/pipeline_c2/info.json new file mode 100644 index 0000000000000000000000000000000000000000..bf064b213901b4f614a949e23e2e89a63aac1488 --- /dev/null +++ b/hyperparameter/c2/tabdiff/tabdiff-c2-20260504_193909/tabular_bundle/pipeline_c2/info.json @@ -0,0 +1,88 @@ +{ + "name": "pipeline_c2", + "task_type": "multiclass", + "n_num_features": 0, + "n_cat_features": 6, + "train_size": 1382, + "test_num": 1382, + "val_num": 1382, + "train_num": 1382, + "bundle_note": "val/test matrices are train copies (train-only policy; no real held-out rows).", + "num_col_idx": [], + "cat_col_idx": [ + 0, + 1, + 2, + 3, + 4, + 5 + ], + "target_col_idx": [ + 6 + ], + "column_names": [ + "buying", + "maint", + "doors", + "persons", + "lug_boot", + "safety", + "class" + ], + "int_col_idx": [], + "int_columns": [], + "int_col_idx_wrt_num": [], + "metadata": { + "columns": { + "0": { + "sdtype": "categorical" + }, + "1": { + "sdtype": "categorical" + }, + "2": { + "sdtype": "categorical" + }, + "3": { + "sdtype": "categorical" + }, + "4": { + "sdtype": "categorical" + }, + "5": { + "sdtype": "categorical" + }, + "6": { + "sdtype": "categorical" + } + } + }, + "idx_mapping": { + "0": 0, + "1": 1, + "2": 2, + "3": 3, + "4": 4, + "5": 5, + "6": 6 + }, + "inverse_idx_mapping": { + "0": 0, + "1": 1, + "2": 2, + "3": 3, + "4": 4, + "5": 5, + "6": 6 + }, + "idx_name_mapping": { + "0": "buying", + "1": "maint", + "2": "doors", + "3": "persons", + "4": "lug_boot", + "5": "safety", + "6": "class" + }, + "n_classes": 4 +} \ No newline at end of file diff --git a/hyperparameter/c2/tabdiff/tabdiff-c2-20260504_193909/tabular_bundle/pipeline_c2/real.csv b/hyperparameter/c2/tabdiff/tabdiff-c2-20260504_193909/tabular_bundle/pipeline_c2/real.csv new file mode 100644 index 0000000000000000000000000000000000000000..f778fcd2758e712a195229c6f50504f94f046c8d --- /dev/null +++ b/hyperparameter/c2/tabdiff/tabdiff-c2-20260504_193909/tabular_bundle/pipeline_c2/real.csv @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:a54d8aab34745836c4d0260009787c8064c2c3e9d99040c5a6856190eb0745e9 +size 24215 diff --git a/hyperparameter/c2/tabdiff/tabdiff-c2-20260504_193909/tabular_bundle/pipeline_c2/test.csv b/hyperparameter/c2/tabdiff/tabdiff-c2-20260504_193909/tabular_bundle/pipeline_c2/test.csv new file mode 100644 index 0000000000000000000000000000000000000000..f778fcd2758e712a195229c6f50504f94f046c8d --- /dev/null +++ b/hyperparameter/c2/tabdiff/tabdiff-c2-20260504_193909/tabular_bundle/pipeline_c2/test.csv @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:a54d8aab34745836c4d0260009787c8064c2c3e9d99040c5a6856190eb0745e9 +size 24215 diff --git a/hyperparameter/c2/tabdiff/tabdiff-c2-20260504_193909/tabular_bundle/pipeline_c2/val.csv b/hyperparameter/c2/tabdiff/tabdiff-c2-20260504_193909/tabular_bundle/pipeline_c2/val.csv new file mode 100644 index 0000000000000000000000000000000000000000..f778fcd2758e712a195229c6f50504f94f046c8d --- /dev/null +++ b/hyperparameter/c2/tabdiff/tabdiff-c2-20260504_193909/tabular_bundle/pipeline_c2/val.csv @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:a54d8aab34745836c4d0260009787c8064c2c3e9d99040c5a6856190eb0745e9 +size 24215 diff --git a/hyperparameter/c2/tabdiff/tabdiff-c2-20260504_193909/tabular_bundle/pipeline_c2/y_test.npy b/hyperparameter/c2/tabdiff/tabdiff-c2-20260504_193909/tabular_bundle/pipeline_c2/y_test.npy new file mode 100644 index 0000000000000000000000000000000000000000..8bfc8f9de7350657cd6411c55d2b9b87bea9c13a --- /dev/null +++ b/hyperparameter/c2/tabdiff/tabdiff-c2-20260504_193909/tabular_bundle/pipeline_c2/y_test.npy @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:3f8eb0b25043331a30fde5439f063eed59e7a76f45d7d102b9b4fbcd16b551b4 +size 11184 diff --git a/hyperparameter/c2/tabdiff/tabdiff-c2-20260504_193909/tabular_bundle/pipeline_c2/y_train.npy b/hyperparameter/c2/tabdiff/tabdiff-c2-20260504_193909/tabular_bundle/pipeline_c2/y_train.npy new file mode 100644 index 0000000000000000000000000000000000000000..8bfc8f9de7350657cd6411c55d2b9b87bea9c13a --- /dev/null +++ b/hyperparameter/c2/tabdiff/tabdiff-c2-20260504_193909/tabular_bundle/pipeline_c2/y_train.npy @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:3f8eb0b25043331a30fde5439f063eed59e7a76f45d7d102b9b4fbcd16b551b4 +size 11184 diff --git a/hyperparameter/c2/tabdiff/tabdiff-c2-20260504_193909/tabular_bundle/pipeline_c2/y_val.npy b/hyperparameter/c2/tabdiff/tabdiff-c2-20260504_193909/tabular_bundle/pipeline_c2/y_val.npy new file mode 100644 index 0000000000000000000000000000000000000000..8bfc8f9de7350657cd6411c55d2b9b87bea9c13a --- /dev/null +++ b/hyperparameter/c2/tabdiff/tabdiff-c2-20260504_193909/tabular_bundle/pipeline_c2/y_val.npy @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:3f8eb0b25043331a30fde5439f063eed59e7a76f45d7d102b9b4fbcd16b551b4 +size 11184 diff --git a/hyperparameter/c2/tabdiff/tabdiff-c2-20260504_193909/train_20260504_193909.log b/hyperparameter/c2/tabdiff/tabdiff-c2-20260504_193909/train_20260504_193909.log new file mode 100644 index 0000000000000000000000000000000000000000..0027b65d041a1c1cb7ab2acca95fb5815f71e3ce --- /dev/null +++ b/hyperparameter/c2/tabdiff/tabdiff-c2-20260504_193909/train_20260504_193909.log @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:3f009b816f291b79d55799f1f0eaea1b9edadfd28a65eb8e2b4fc79e44715be2 +size 572262 diff --git a/hyperparameter/c2/tabpfgen/tabpfgen-c2-20260505_025616/_tabpfgen_generate.py b/hyperparameter/c2/tabpfgen/tabpfgen-c2-20260505_025616/_tabpfgen_generate.py new file mode 100644 index 0000000000000000000000000000000000000000..de2c9f95c0e5382f3aada6551621d085c53b9cb7 --- /dev/null +++ b/hyperparameter/c2/tabpfgen/tabpfgen-c2-20260505_025616/_tabpfgen_generate.py @@ -0,0 +1,122 @@ +import os +import numpy as np +import pandas as pd +import json +from tabpfgen import TabPFGen + +df = pd.read_csv("/work/output-Benchmark-trainonly-v1/c2/tabpfgen/tabpfgen-c2-20260505_025616/staged/public/train.csv") +target_col = "class" + +target_missing = df[target_col].isna() +if target_missing.any(): + dropped = int(target_missing.sum()) + df = df.loc[~target_missing].copy() + print( + f"[TabPFGen] Dropped {dropped} rows with missing target '{target_col}'" + ) +if df.empty: + raise ValueError( + f"[TabPFGen] No rows remain after dropping missing target '{target_col}'" + ) + +feature_cols = [c for c in df.columns if c != target_col] + +cat_encodings = {} +for col in feature_cols: + if df[col].dtype == object or str(df[col].dtype) == 'category': + cats = sorted(df[col].dropna().unique().tolist(), key=str) + cat_map = {v: i for i, v in enumerate(cats)} + df[col] = df[col].map(cat_map).astype(float) + cat_encodings[col] = cats + print(f"[TabPFGen] Label-encoded '{col}' ({len(cats)} categories)") + +target_cats = None +if df[target_col].dtype == object or str(df[target_col].dtype) == 'category': + cats = sorted(df[target_col].dropna().unique().tolist(), key=str) + t_map = {v: i for i, v in enumerate(cats)} + df[target_col] = df[target_col].map(t_map).astype(float) + target_cats = cats + print(f"[TabPFGen] Label-encoded target '{target_col}' ({len(cats)} categories)") + +X = df[feature_cols].values.astype(np.float32) +y = df[target_col].values +fit_rows_cap = max(1, int(os.environ.get("TABPFGEN_FIT_MAX_ROWS", "50000"))) +if len(X) > fit_rows_cap: + rng = np.random.default_rng(42) + idx = np.sort(rng.choice(len(X), size=fit_rows_cap, replace=False)) + X = X[idx] + y = y[idx] + print(f"[TabPFGen] Downsampled fit rows -> {len(X)} (cap={fit_rows_cap})") +target_n = int(1382) + +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 + +chunk_rows = max(1, int(os.environ.get("TABPFGEN_GEN_CHUNK_ROWS", "256"))) +device = (os.environ.get("TABPFGEN_DEVICE") or "auto").strip() or "auto" + +# TabPFGen v0.1.x API:仅支持 n_sgld_steps / sgld_* / device。 +# (旧版脚本中的 energy_*_chunk 与上游 TabPFGen 不一致,会导致 TypeError。) +gen = TabPFGen( + n_sgld_steps=1000, + sgld_step_size=0.01, + sgld_noise_scale=0.01, + device=device, +) + +print(f"[TabPFGen] Generating {target_n} rows via generate_classification (chunk_rows={chunk_rows}, device={device})") +x_parts = [] +y_parts = [] +remaining = target_n +while remaining > 0: + take = min(chunk_rows, remaining) + X_part, y_part = gen.generate_classification(X, y, n_samples=take) + x_parts.append(np.asarray(X_part)) + y_parts.append(np.asarray(y_part)) + remaining -= take + print(f"[TabPFGen] chunk done: take={take}, remaining={remaining}") + +X_syn = np.concatenate(x_parts, axis=0) +y_syn = np.concatenate(y_parts, axis=0) + +syn_df = pd.DataFrame(X_syn, columns=feature_cols) +syn_df[target_col] = y_syn + +for col, cats in cat_encodings.items(): + codes = np.round(syn_df[col].values).astype(int) + codes = np.clip(codes, 0, len(cats) - 1) + syn_df[col] = [cats[c] for c in codes] + +if target_cats is not None: + codes = np.round(syn_df[target_col].values).astype(int) + codes = np.clip(codes, 0, len(target_cats) - 1) + syn_df[target_col] = [target_cats[c] for c in codes] + +if len(syn_df) > target_n: + print(f"[TabPFGen] Trimming rows: {len(syn_df)} -> {target_n}") + syn_df = syn_df.iloc[:target_n].copy() +elif len(syn_df) < target_n: + deficit = target_n - len(syn_df) + print(f"[TabPFGen] Padding rows: {len(syn_df)} -> {target_n} (deficit={deficit})") + if len(syn_df) > 0: + extra = syn_df.sample(n=deficit, replace=True, random_state=42) + syn_df = pd.concat( + [syn_df.reset_index(drop=True), extra.reset_index(drop=True)], + ignore_index=True, + ) + else: + syn_df = df[feature_cols + [target_col]].sample( + n=target_n, replace=True, random_state=42 + ).reset_index(drop=True) + +syn_df = syn_df[list(df.columns)] +if len(syn_df) != target_n: + raise RuntimeError( + f"[TabPFGen] Row alignment failed: got {len(syn_df)}, expected {target_n}" + ) +syn_df.to_csv("/work/output-Benchmark-trainonly-v1/c2/tabpfgen/tabpfgen-c2-20260505_025616/tabpfgen-c2-1382-20260505_025616.csv", index=False) +print(f"[TabPFGen] Saved {len(syn_df)} rows -> /work/output-Benchmark-trainonly-v1/c2/tabpfgen/tabpfgen-c2-20260505_025616/tabpfgen-c2-1382-20260505_025616.csv") diff --git a/hyperparameter/c2/tabpfgen/tabpfgen-c2-20260505_025616/gen_20260505_025616.log b/hyperparameter/c2/tabpfgen/tabpfgen-c2-20260505_025616/gen_20260505_025616.log new file mode 100644 index 0000000000000000000000000000000000000000..506db7827d711baa97aed013f1ba6e59108cd6a6 --- /dev/null +++ b/hyperparameter/c2/tabpfgen/tabpfgen-c2-20260505_025616/gen_20260505_025616.log @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:1f5d458b4b59998c2c42f537e6b26bac862be64d1921b1a4fadee21c85c8f64b +size 5240 diff --git a/hyperparameter/c2/tabpfgen/tabpfgen-c2-20260505_025616/input_snapshot.json b/hyperparameter/c2/tabpfgen/tabpfgen-c2-20260505_025616/input_snapshot.json new file mode 100644 index 0000000000000000000000000000000000000000..0dfc898784526759fbfe4fcdd1aa60dc4d52829f --- /dev/null +++ b/hyperparameter/c2/tabpfgen/tabpfgen-c2-20260505_025616/input_snapshot.json @@ -0,0 +1,36 @@ +{ + "dataset_id": "c2", + "model": "tabpfgen", + "inputs": { + "train_csv": { + "path": "/data/jialinzhang/SynthesizePipeline-server/DatasetNew/c2/c2-train.csv", + "exists": true, + "size": 42948, + "sha256": "17bc560fa96bd00fb3b526e1e65bc91210b701d0d0a4e8bb9b4c5196cab56def" + }, + "val_csv": { + "path": "/data/jialinzhang/SynthesizePipeline-server/DatasetNew/c2/c2-val.csv", + "exists": true, + "size": 5349, + "sha256": "61e565eca62e65a7dccd9d51039a3170413379e10fc494e25870e7c4294863c9" + }, + "test_csv": { + "path": "/data/jialinzhang/SynthesizePipeline-server/DatasetNew/c2/c2-test.csv", + "exists": true, + "size": 5448, + "sha256": "cbcbb062a1faf5fa44b66c80532baa229e05b94fc42137269761e6c6d84af20a" + }, + "profile_json": { + "path": "/data/jialinzhang/SynthesizePipeline-server/DatasetNew/artifacts/data_core/tabular/c2/c2-dataset_profile.json", + "exists": true, + "size": 3240, + "sha256": "526b7163b2076c93c0bf4638438081ee8a6907065d5b608faa40d1a3dbc2a27b" + }, + "contract_json": { + "path": "/data/jialinzhang/SynthesizePipeline-server/DatasetNew/artifacts/data_core/tabular/c2/c2-dataset_contract_v1.json", + "exists": true, + "size": 3731, + "sha256": "fb595a876054c2ee9b4e10cfe83a5691588de1d25466cbb9d473c18ad3604009" + } + } +} \ No newline at end of file diff --git a/hyperparameter/c2/tabpfgen/tabpfgen-c2-20260505_025616/public_gate/normalized_schema_snapshot.json b/hyperparameter/c2/tabpfgen/tabpfgen-c2-20260505_025616/public_gate/normalized_schema_snapshot.json new file mode 100644 index 0000000000000000000000000000000000000000..689b1d00d96508e44ba40e58dc4560e19afc2b3b --- /dev/null +++ b/hyperparameter/c2/tabpfgen/tabpfgen-c2-20260505_025616/public_gate/normalized_schema_snapshot.json @@ -0,0 +1,144 @@ +{ + "dataset_id": "c2", + "target_column": "class", + "task_type": "classification", + "columns": [ + { + "name": "buying", + "role": "feature", + "semantic_type": "categorical", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 4, + "unique_ratio": 0.002894, + "example_values": [ + "vhigh", + "med", + "high", + "low" + ] + } + }, + { + "name": "maint", + "role": "feature", + "semantic_type": "categorical", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 4, + "unique_ratio": 0.002894, + "example_values": [ + "vhigh", + "low", + "med", + "high" + ] + } + }, + { + "name": "doors", + "role": "feature", + "semantic_type": "categorical", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 4, + "unique_ratio": 0.002894, + "example_values": [ + "2", + "5more", + "3", + "4" + ] + } + }, + { + "name": "persons", + "role": "feature", + "semantic_type": "categorical", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 3, + "unique_ratio": 0.002171, + "example_values": [ + "2", + "4", + "more" + ] + } + }, + { + "name": "lug_boot", + "role": "feature", + "semantic_type": "categorical", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 3, + "unique_ratio": 0.002171, + "example_values": [ + "small", + "big", + "med" + ] + } + }, + { + "name": "safety", + "role": "feature", + "semantic_type": "categorical", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 3, + "unique_ratio": 0.002171, + "example_values": [ + "low", + "high", + "med" + ] + } + }, + { + "name": "class", + "role": "target", + "semantic_type": "categorical", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 4, + "unique_ratio": 0.002894, + "example_values": [ + "unacc", + "good", + "acc", + "vgood" + ] + } + } + ] +} \ No newline at end of file diff --git a/hyperparameter/c2/tabpfgen/tabpfgen-c2-20260505_025616/public_gate/public_gate_report.json b/hyperparameter/c2/tabpfgen/tabpfgen-c2-20260505_025616/public_gate/public_gate_report.json new file mode 100644 index 0000000000000000000000000000000000000000..2e4cdcb2a4e28e40d59b17a83e773f622b7636a5 --- /dev/null +++ b/hyperparameter/c2/tabpfgen/tabpfgen-c2-20260505_025616/public_gate/public_gate_report.json @@ -0,0 +1,37 @@ +{ + "dataset_id": "c2", + "status": "pass", + "checks": [ + { + "check_id": "PG001_csv_parse_ok", + "status": "pass" + }, + { + "check_id": "PG002_split_header_consistent", + "status": "pass" + }, + { + "check_id": "PG003_profile_header_match", + "status": "pass" + }, + { + "check_id": "PG004_missing_token_normalized", + "status": "pass" + }, + { + "check_id": "PG005_semantic_type_validated", + "status": "pass" + }, + { + "check_id": "PG006_target_defined_and_valid", + "status": "pass" + } + ], + "target_column": "class", + "task_type": "classification", + "input_splits": { + "train": "/data/jialinzhang/SynthesizePipeline-server/DatasetNew/c2/c2-train.csv", + "val": "/data/jialinzhang/SynthesizePipeline-server/DatasetNew/c2/c2-val.csv", + "test": "/data/jialinzhang/SynthesizePipeline-server/DatasetNew/c2/c2-test.csv" + } +} \ No newline at end of file diff --git a/hyperparameter/c2/tabpfgen/tabpfgen-c2-20260505_025616/public_gate/staged_input_manifest.json b/hyperparameter/c2/tabpfgen/tabpfgen-c2-20260505_025616/public_gate/staged_input_manifest.json new file mode 100644 index 0000000000000000000000000000000000000000..4422c19d4747acf36ff9b215b2176e24c3d003e8 --- /dev/null +++ b/hyperparameter/c2/tabpfgen/tabpfgen-c2-20260505_025616/public_gate/staged_input_manifest.json @@ -0,0 +1,149 @@ +{ + "dataset_id": "c2", + "target_column": "class", + "task_type": "classification", + "train_csv": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/c2/tabpfgen/tabpfgen-c2-20260505_025616/staged/public/train.csv", + "val_csv": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/c2/tabpfgen/tabpfgen-c2-20260505_025616/staged/public/val.csv", + "test_csv": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/c2/tabpfgen/tabpfgen-c2-20260505_025616/staged/public/test.csv", + "features_json": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/c2/tabpfgen/tabpfgen-c2-20260505_025616/staged/public/staged_features.json", + "public_gate_report": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/c2/tabpfgen/tabpfgen-c2-20260505_025616/public_gate/public_gate_report.json", + "column_schema": [ + { + "name": "buying", + "role": "feature", + "semantic_type": "categorical", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 4, + "unique_ratio": 0.002894, + "example_values": [ + "vhigh", + "med", + "high", + "low" + ] + } + }, + { + "name": "maint", + "role": "feature", + "semantic_type": "categorical", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 4, + "unique_ratio": 0.002894, + "example_values": [ + "vhigh", + "low", + "med", + "high" + ] + } + }, + { + "name": "doors", + "role": "feature", + "semantic_type": "categorical", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 4, + "unique_ratio": 0.002894, + "example_values": [ + "2", + "5more", + "3", + "4" + ] + } + }, + { + "name": "persons", + "role": "feature", + "semantic_type": "categorical", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 3, + "unique_ratio": 0.002171, + "example_values": [ + "2", + "4", + "more" + ] + } + }, + { + "name": "lug_boot", + "role": "feature", + "semantic_type": "categorical", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 3, + "unique_ratio": 0.002171, + "example_values": [ + "small", + "big", + "med" + ] + } + }, + { + "name": "safety", + "role": "feature", + "semantic_type": "categorical", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 3, + "unique_ratio": 0.002171, + "example_values": [ + "low", + "high", + "med" + ] + } + }, + { + "name": "class", + "role": "target", + "semantic_type": "categorical", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 4, + "unique_ratio": 0.002894, + "example_values": [ + "unacc", + "good", + "acc", + "vgood" + ] + } + } + ] +} \ No newline at end of file diff --git a/hyperparameter/c2/tabpfgen/tabpfgen-c2-20260505_025616/run_config.json b/hyperparameter/c2/tabpfgen/tabpfgen-c2-20260505_025616/run_config.json new file mode 100644 index 0000000000000000000000000000000000000000..2be29c773307fa0bb9a5dea09ed34b80e299d781 --- /dev/null +++ b/hyperparameter/c2/tabpfgen/tabpfgen-c2-20260505_025616/run_config.json @@ -0,0 +1,43 @@ +{ + "schema_version": 1, + "recorded_at": "2026-05-05T02:56:16", + "dataset_id": "c2", + "model": "tabpfgen", + "work_dir": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/c2/tabpfgen/tabpfgen-c2-20260505_025616", + "dataset_source_requested": "new", + "dataset_source_resolved": "new", + "cli_args": { + "model": "tabpfgen", + "dataset": "c2", + "dataset_source": "new", + "train": true, + "generate": true, + "num_rows": 0, + "epochs": null, + "output_dir": null, + "model_dir": null, + "work_dir": null, + "resume": false, + "no_stats": false + }, + "resolved": { + "num_rows": 1382, + "model_path": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/c2/tabpfgen/tabpfgen-c2-20260505_025616", + "output_csv": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/c2/tabpfgen/tabpfgen-c2-20260505_025616/tabpfgen-c2-1382-20260505_025616.csv" + }, + "input_artifacts": { + "public_gate_report": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/c2/tabpfgen/tabpfgen-c2-20260505_025616/public_gate/public_gate_report.json", + "public_manifest": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/c2/tabpfgen/tabpfgen-c2-20260505_025616/public_gate/staged_input_manifest.json", + "model_manifest": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/c2/tabpfgen/tabpfgen-c2-20260505_025616/staged/tabpfgen/model_input_manifest.json", + "train_csv": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/c2/tabpfgen/tabpfgen-c2-20260505_025616/staged/public/train.csv", + "features_json": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/c2/tabpfgen/tabpfgen-c2-20260505_025616/staged/public/staged_features.json", + "target_column": "class", + "task_type": "classification" + }, + "env_overrides": { + "BENCHMARK_TABPFGEN_GPUS": "device=3", + "TABPFGEN_DEVICE": "cuda", + "TABPFGEN_FIT_MAX_ROWS": "512", + "TABPFGEN_GEN_CHUNK_ROWS": "64" + } +} \ No newline at end of file diff --git a/hyperparameter/c2/tabpfgen/tabpfgen-c2-20260505_025616/runtime_result.json b/hyperparameter/c2/tabpfgen/tabpfgen-c2-20260505_025616/runtime_result.json new file mode 100644 index 0000000000000000000000000000000000000000..1a37119f2d533aeba59f4ee1a331db10aa3f3a6e --- /dev/null +++ b/hyperparameter/c2/tabpfgen/tabpfgen-c2-20260505_025616/runtime_result.json @@ -0,0 +1,27 @@ +{ + "dataset_id": "c2", + "model": "tabpfgen", + "run_id": "tabpfgen-c2-20260505_025616", + "public_gate_status": "pass", + "adapter_ready_status": "pass", + "train_status": "success", + "generate_status": "success", + "reason_code": null, + "reason_detail": null, + "artifacts": { + "synthetic_csv": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/c2/tabpfgen/tabpfgen-c2-20260505_025616/tabpfgen-c2-1382-20260505_025616.csv", + "model_path": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/c2/tabpfgen/tabpfgen-c2-20260505_025616" + }, + "timings": { + "train": { + "started_at": "2026-05-05T02:56:16", + "ended_at": "2026-05-05T02:56:16", + "duration_sec": 0.005 + }, + "generate": { + "started_at": "2026-05-05T02:56:16", + "ended_at": "2026-05-05T02:57:09", + "duration_sec": 52.103 + } + } +} \ No newline at end of file diff --git a/hyperparameter/c2/tabpfgen/tabpfgen-c2-20260505_025616/staged/public/staged_features.json b/hyperparameter/c2/tabpfgen/tabpfgen-c2-20260505_025616/staged/public/staged_features.json new file mode 100644 index 0000000000000000000000000000000000000000..61783861dd5de501592f76acb0469cf3f3b2622a --- /dev/null +++ b/hyperparameter/c2/tabpfgen/tabpfgen-c2-20260505_025616/staged/public/staged_features.json @@ -0,0 +1,37 @@ +[ + { + "feature_name": "buying", + "data_type": "categorical", + "is_target": false + }, + { + "feature_name": "maint", + "data_type": "categorical", + "is_target": false + }, + { + "feature_name": "doors", + "data_type": "categorical", + "is_target": false + }, + { + "feature_name": "persons", + "data_type": "categorical", + "is_target": false + }, + { + "feature_name": "lug_boot", + "data_type": "categorical", + "is_target": false + }, + { + "feature_name": "safety", + "data_type": "categorical", + "is_target": false + }, + { + "feature_name": "class", + "data_type": "categorical", + "is_target": true + } +] \ No newline at end of file diff --git a/hyperparameter/c2/tabpfgen/tabpfgen-c2-20260505_025616/staged/public/test.csv b/hyperparameter/c2/tabpfgen/tabpfgen-c2-20260505_025616/staged/public/test.csv new file mode 100644 index 0000000000000000000000000000000000000000..392a0d7189a34d8f13ecf20a99d64b03230d517c --- /dev/null +++ b/hyperparameter/c2/tabpfgen/tabpfgen-c2-20260505_025616/staged/public/test.csv @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:b48114a7d0bc5bd9a07920f903c8d4aba8bf98bf2a66a050da03588b0245ca73 +size 5273 diff --git a/hyperparameter/c2/tabpfgen/tabpfgen-c2-20260505_025616/staged/public/train.csv b/hyperparameter/c2/tabpfgen/tabpfgen-c2-20260505_025616/staged/public/train.csv new file mode 100644 index 0000000000000000000000000000000000000000..da4f4d55134eebc0e51157d0d467536371db1484 --- /dev/null +++ b/hyperparameter/c2/tabpfgen/tabpfgen-c2-20260505_025616/staged/public/train.csv @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:4aed00c2c2b3f88a55a7ebff31b2e1b5e0e32fb0a7267e0b9d2779cd23e434dd +size 41565 diff --git a/hyperparameter/c2/tabpfgen/tabpfgen-c2-20260505_025616/staged/public/val.csv b/hyperparameter/c2/tabpfgen/tabpfgen-c2-20260505_025616/staged/public/val.csv new file mode 100644 index 0000000000000000000000000000000000000000..af8caf7ee42524188534a3daf32996dc491952d9 --- /dev/null +++ b/hyperparameter/c2/tabpfgen/tabpfgen-c2-20260505_025616/staged/public/val.csv @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:26e90c1170a57a14c05832ac88027722b1f3848f9662c7c09ef7c93dcba4cc01 +size 5176 diff --git a/hyperparameter/c2/tabpfgen/tabpfgen-c2-20260505_025616/staged/tabpfgen/adapter_report.json b/hyperparameter/c2/tabpfgen/tabpfgen-c2-20260505_025616/staged/tabpfgen/adapter_report.json new file mode 100644 index 0000000000000000000000000000000000000000..5520c2d800e07b27c8134fd0c2fafd3319d4a1ab --- /dev/null +++ b/hyperparameter/c2/tabpfgen/tabpfgen-c2-20260505_025616/staged/tabpfgen/adapter_report.json @@ -0,0 +1,7 @@ +{ + "adapter_ready_status": "pass", + "adapter_fail_reason_code": null, + "adapter_fail_detail": null, + "adapter_transforms_applied": [], + "model_input_manifest": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/c2/tabpfgen/tabpfgen-c2-20260505_025616/staged/tabpfgen/model_input_manifest.json" +} \ No newline at end of file diff --git a/hyperparameter/c2/tabpfgen/tabpfgen-c2-20260505_025616/staged/tabpfgen/adapter_transforms_applied.json b/hyperparameter/c2/tabpfgen/tabpfgen-c2-20260505_025616/staged/tabpfgen/adapter_transforms_applied.json new file mode 100644 index 0000000000000000000000000000000000000000..0637a088a01e8ddab3bf3fa98dbe804cbde1a0dc --- /dev/null +++ b/hyperparameter/c2/tabpfgen/tabpfgen-c2-20260505_025616/staged/tabpfgen/adapter_transforms_applied.json @@ -0,0 +1 @@ +[] \ No newline at end of file diff --git a/hyperparameter/c2/tabpfgen/tabpfgen-c2-20260505_025616/staged/tabpfgen/model_input_manifest.json b/hyperparameter/c2/tabpfgen/tabpfgen-c2-20260505_025616/staged/tabpfgen/model_input_manifest.json new file mode 100644 index 0000000000000000000000000000000000000000..4490a14a79ea9a8c93f28e93217c7278eea42bed --- /dev/null +++ b/hyperparameter/c2/tabpfgen/tabpfgen-c2-20260505_025616/staged/tabpfgen/model_input_manifest.json @@ -0,0 +1,151 @@ +{ + "dataset_id": "c2", + "model": "tabpfgen", + "target_column": "class", + "task_type": "classification", + "column_schema": [ + { + "name": "buying", + "role": "feature", + "semantic_type": "categorical", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 4, + "unique_ratio": 0.002894, + "example_values": [ + "vhigh", + "med", + "high", + "low" + ] + } + }, + { + "name": "maint", + "role": "feature", + "semantic_type": "categorical", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 4, + "unique_ratio": 0.002894, + "example_values": [ + "vhigh", + "low", + "med", + "high" + ] + } + }, + { + "name": "doors", + "role": "feature", + "semantic_type": "categorical", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 4, + "unique_ratio": 0.002894, + "example_values": [ + "2", + "5more", + "3", + "4" + ] + } + }, + { + "name": "persons", + "role": "feature", + "semantic_type": "categorical", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 3, + "unique_ratio": 0.002171, + "example_values": [ + "2", + "4", + "more" + ] + } + }, + { + "name": "lug_boot", + "role": "feature", + "semantic_type": "categorical", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 3, + "unique_ratio": 0.002171, + "example_values": [ + "small", + "big", + "med" + ] + } + }, + { + "name": "safety", + "role": "feature", + "semantic_type": "categorical", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 3, + "unique_ratio": 0.002171, + "example_values": [ + "low", + "high", + "med" + ] + } + }, + { + "name": "class", + "role": "target", + "semantic_type": "categorical", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 4, + "unique_ratio": 0.002894, + "example_values": [ + "unacc", + "good", + "acc", + "vgood" + ] + } + } + ], + "public_manifest": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/c2/tabpfgen/tabpfgen-c2-20260505_025616/public_gate/staged_input_manifest.json", + "train_csv": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/c2/tabpfgen/tabpfgen-c2-20260505_025616/staged/public/train.csv", + "val_csv": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/c2/tabpfgen/tabpfgen-c2-20260505_025616/staged/public/val.csv", + "test_csv": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/c2/tabpfgen/tabpfgen-c2-20260505_025616/staged/public/test.csv", + "features_json": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/c2/tabpfgen/tabpfgen-c2-20260505_025616/staged/public/staged_features.json", + "public_gate_report": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/c2/tabpfgen/tabpfgen-c2-20260505_025616/public_gate/public_gate_report.json" +} \ No newline at end of file diff --git a/hyperparameter/c2/tabpfgen/tabpfgen-c2-20260505_025616/tabpfgen-c2-1382-20260505_025616.csv b/hyperparameter/c2/tabpfgen/tabpfgen-c2-20260505_025616/tabpfgen-c2-1382-20260505_025616.csv new file mode 100644 index 0000000000000000000000000000000000000000..12f0063b75045ce6640f0214aa9fdfa268e8b983 --- /dev/null +++ b/hyperparameter/c2/tabpfgen/tabpfgen-c2-20260505_025616/tabpfgen-c2-1382-20260505_025616.csv @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:70e48c6eab10154c876f2a5b0c57ac997ae9a72ddab6f20b09b2e26b7653f358 +size 41593 diff --git a/hyperparameter/c2/tabpfgen/tabpfgen-c2-20260505_025616/tabpfgen_meta.json b/hyperparameter/c2/tabpfgen/tabpfgen-c2-20260505_025616/tabpfgen_meta.json new file mode 100644 index 0000000000000000000000000000000000000000..78707752c9e53caf2bbd6ae505406727d0d130e1 --- /dev/null +++ b/hyperparameter/c2/tabpfgen/tabpfgen-c2-20260505_025616/tabpfgen_meta.json @@ -0,0 +1,9 @@ +{ + "csv_path": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/c2/tabpfgen/tabpfgen-c2-20260505_025616/staged/public/train.csv", + "json_path": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/c2/tabpfgen/tabpfgen-c2-20260505_025616/staged/public/staged_features.json", + "target_col": "class", + "is_classification": true, + "task_type": "classification", + "n_rows": 1382, + "n_cols": 7 +} \ No newline at end of file diff --git a/hyperparameter/c2/tabpfgen/tabpfgen-c2-20260505_025616/train_20260505_025616.log b/hyperparameter/c2/tabpfgen/tabpfgen-c2-20260505_025616/train_20260505_025616.log new file mode 100644 index 0000000000000000000000000000000000000000..451773e1baef686744c3581b3a7847fb2e511c75 --- /dev/null +++ b/hyperparameter/c2/tabpfgen/tabpfgen-c2-20260505_025616/train_20260505_025616.log @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:9090392c04c0e75d9a7c201bf6f51c126d1bb2a6edb304986c71d6dbaf8ac088 +size 595 diff --git a/hyperparameter/c2/tabpfgen/tabpfgen-c2-20260505_025721/_tabpfgen_generate.py b/hyperparameter/c2/tabpfgen/tabpfgen-c2-20260505_025721/_tabpfgen_generate.py new file mode 100644 index 0000000000000000000000000000000000000000..d9f0b7d9d50bec01afbb54ac06aeaa79676eedbd --- /dev/null +++ b/hyperparameter/c2/tabpfgen/tabpfgen-c2-20260505_025721/_tabpfgen_generate.py @@ -0,0 +1,122 @@ +import os +import numpy as np +import pandas as pd +import json +from tabpfgen import TabPFGen + +df = pd.read_csv("/work/output-Benchmark-trainonly-v1/c2/tabpfgen/tabpfgen-c2-20260505_025721/staged/public/train.csv") +target_col = "class" + +target_missing = df[target_col].isna() +if target_missing.any(): + dropped = int(target_missing.sum()) + df = df.loc[~target_missing].copy() + print( + f"[TabPFGen] Dropped {dropped} rows with missing target '{target_col}'" + ) +if df.empty: + raise ValueError( + f"[TabPFGen] No rows remain after dropping missing target '{target_col}'" + ) + +feature_cols = [c for c in df.columns if c != target_col] + +cat_encodings = {} +for col in feature_cols: + if df[col].dtype == object or str(df[col].dtype) == 'category': + cats = sorted(df[col].dropna().unique().tolist(), key=str) + cat_map = {v: i for i, v in enumerate(cats)} + df[col] = df[col].map(cat_map).astype(float) + cat_encodings[col] = cats + print(f"[TabPFGen] Label-encoded '{col}' ({len(cats)} categories)") + +target_cats = None +if df[target_col].dtype == object or str(df[target_col].dtype) == 'category': + cats = sorted(df[target_col].dropna().unique().tolist(), key=str) + t_map = {v: i for i, v in enumerate(cats)} + df[target_col] = df[target_col].map(t_map).astype(float) + target_cats = cats + print(f"[TabPFGen] Label-encoded target '{target_col}' ({len(cats)} categories)") + +X = df[feature_cols].values.astype(np.float32) +y = df[target_col].values +fit_rows_cap = max(1, int(os.environ.get("TABPFGEN_FIT_MAX_ROWS", "50000"))) +if len(X) > fit_rows_cap: + rng = np.random.default_rng(42) + idx = np.sort(rng.choice(len(X), size=fit_rows_cap, replace=False)) + X = X[idx] + y = y[idx] + print(f"[TabPFGen] Downsampled fit rows -> {len(X)} (cap={fit_rows_cap})") +target_n = int(1382) + +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 + +chunk_rows = max(1, int(os.environ.get("TABPFGEN_GEN_CHUNK_ROWS", "256"))) +device = (os.environ.get("TABPFGEN_DEVICE") or "auto").strip() or "auto" + +# TabPFGen v0.1.x API:仅支持 n_sgld_steps / sgld_* / device。 +# (旧版脚本中的 energy_*_chunk 与上游 TabPFGen 不一致,会导致 TypeError。) +gen = TabPFGen( + n_sgld_steps=1000, + sgld_step_size=0.01, + sgld_noise_scale=0.01, + device=device, +) + +print(f"[TabPFGen] Generating {target_n} rows via generate_classification (chunk_rows={chunk_rows}, device={device})") +x_parts = [] +y_parts = [] +remaining = target_n +while remaining > 0: + take = min(chunk_rows, remaining) + X_part, y_part = gen.generate_classification(X, y, n_samples=take) + x_parts.append(np.asarray(X_part)) + y_parts.append(np.asarray(y_part)) + remaining -= take + print(f"[TabPFGen] chunk done: take={take}, remaining={remaining}") + +X_syn = np.concatenate(x_parts, axis=0) +y_syn = np.concatenate(y_parts, axis=0) + +syn_df = pd.DataFrame(X_syn, columns=feature_cols) +syn_df[target_col] = y_syn + +for col, cats in cat_encodings.items(): + codes = np.round(syn_df[col].values).astype(int) + codes = np.clip(codes, 0, len(cats) - 1) + syn_df[col] = [cats[c] for c in codes] + +if target_cats is not None: + codes = np.round(syn_df[target_col].values).astype(int) + codes = np.clip(codes, 0, len(target_cats) - 1) + syn_df[target_col] = [target_cats[c] for c in codes] + +if len(syn_df) > target_n: + print(f"[TabPFGen] Trimming rows: {len(syn_df)} -> {target_n}") + syn_df = syn_df.iloc[:target_n].copy() +elif len(syn_df) < target_n: + deficit = target_n - len(syn_df) + print(f"[TabPFGen] Padding rows: {len(syn_df)} -> {target_n} (deficit={deficit})") + if len(syn_df) > 0: + extra = syn_df.sample(n=deficit, replace=True, random_state=42) + syn_df = pd.concat( + [syn_df.reset_index(drop=True), extra.reset_index(drop=True)], + ignore_index=True, + ) + else: + syn_df = df[feature_cols + [target_col]].sample( + n=target_n, replace=True, random_state=42 + ).reset_index(drop=True) + +syn_df = syn_df[list(df.columns)] +if len(syn_df) != target_n: + raise RuntimeError( + f"[TabPFGen] Row alignment failed: got {len(syn_df)}, expected {target_n}" + ) +syn_df.to_csv("/work/output-Benchmark-trainonly-v1/c2/tabpfgen/tabpfgen-c2-20260505_025721/tabpfgen-c2-1382-20260505_025721.csv", index=False) +print(f"[TabPFGen] Saved {len(syn_df)} rows -> /work/output-Benchmark-trainonly-v1/c2/tabpfgen/tabpfgen-c2-20260505_025721/tabpfgen-c2-1382-20260505_025721.csv") diff --git a/hyperparameter/c2/tabpfgen/tabpfgen-c2-20260505_025721/gen_20260505_025721.log b/hyperparameter/c2/tabpfgen/tabpfgen-c2-20260505_025721/gen_20260505_025721.log new file mode 100644 index 0000000000000000000000000000000000000000..7eb61c8ad5c79fecf0fd4d83df6163f786948269 --- /dev/null +++ b/hyperparameter/c2/tabpfgen/tabpfgen-c2-20260505_025721/gen_20260505_025721.log @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:73fb3b3c86762383f2e81791adc6ee51511d4cd11ba9211cbfbc399e9f88654b +size 5240 diff --git a/hyperparameter/c2/tabpfgen/tabpfgen-c2-20260505_025721/input_snapshot.json b/hyperparameter/c2/tabpfgen/tabpfgen-c2-20260505_025721/input_snapshot.json new file mode 100644 index 0000000000000000000000000000000000000000..0dfc898784526759fbfe4fcdd1aa60dc4d52829f --- /dev/null +++ b/hyperparameter/c2/tabpfgen/tabpfgen-c2-20260505_025721/input_snapshot.json @@ -0,0 +1,36 @@ +{ + "dataset_id": "c2", + "model": "tabpfgen", + "inputs": { + "train_csv": { + "path": "/data/jialinzhang/SynthesizePipeline-server/DatasetNew/c2/c2-train.csv", + "exists": true, + "size": 42948, + "sha256": "17bc560fa96bd00fb3b526e1e65bc91210b701d0d0a4e8bb9b4c5196cab56def" + }, + "val_csv": { + "path": "/data/jialinzhang/SynthesizePipeline-server/DatasetNew/c2/c2-val.csv", + "exists": true, + "size": 5349, + "sha256": "61e565eca62e65a7dccd9d51039a3170413379e10fc494e25870e7c4294863c9" + }, + "test_csv": { + "path": "/data/jialinzhang/SynthesizePipeline-server/DatasetNew/c2/c2-test.csv", + "exists": true, + "size": 5448, + "sha256": "cbcbb062a1faf5fa44b66c80532baa229e05b94fc42137269761e6c6d84af20a" + }, + "profile_json": { + "path": "/data/jialinzhang/SynthesizePipeline-server/DatasetNew/artifacts/data_core/tabular/c2/c2-dataset_profile.json", + "exists": true, + "size": 3240, + "sha256": "526b7163b2076c93c0bf4638438081ee8a6907065d5b608faa40d1a3dbc2a27b" + }, + "contract_json": { + "path": "/data/jialinzhang/SynthesizePipeline-server/DatasetNew/artifacts/data_core/tabular/c2/c2-dataset_contract_v1.json", + "exists": true, + "size": 3731, + "sha256": "fb595a876054c2ee9b4e10cfe83a5691588de1d25466cbb9d473c18ad3604009" + } + } +} \ No newline at end of file diff --git a/hyperparameter/c2/tabpfgen/tabpfgen-c2-20260505_025721/public_gate/normalized_schema_snapshot.json b/hyperparameter/c2/tabpfgen/tabpfgen-c2-20260505_025721/public_gate/normalized_schema_snapshot.json new file mode 100644 index 0000000000000000000000000000000000000000..689b1d00d96508e44ba40e58dc4560e19afc2b3b --- /dev/null +++ b/hyperparameter/c2/tabpfgen/tabpfgen-c2-20260505_025721/public_gate/normalized_schema_snapshot.json @@ -0,0 +1,144 @@ +{ + "dataset_id": "c2", + "target_column": "class", + "task_type": "classification", + "columns": [ + { + "name": "buying", + "role": "feature", + "semantic_type": "categorical", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 4, + "unique_ratio": 0.002894, + "example_values": [ + "vhigh", + "med", + "high", + "low" + ] + } + }, + { + "name": "maint", + "role": "feature", + "semantic_type": "categorical", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 4, + "unique_ratio": 0.002894, + "example_values": [ + "vhigh", + "low", + "med", + "high" + ] + } + }, + { + "name": "doors", + "role": "feature", + "semantic_type": "categorical", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 4, + "unique_ratio": 0.002894, + "example_values": [ + "2", + "5more", + "3", + "4" + ] + } + }, + { + "name": "persons", + "role": "feature", + "semantic_type": "categorical", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 3, + "unique_ratio": 0.002171, + "example_values": [ + "2", + "4", + "more" + ] + } + }, + { + "name": "lug_boot", + "role": "feature", + "semantic_type": "categorical", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 3, + "unique_ratio": 0.002171, + "example_values": [ + "small", + "big", + "med" + ] + } + }, + { + "name": "safety", + "role": "feature", + "semantic_type": "categorical", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 3, + "unique_ratio": 0.002171, + "example_values": [ + "low", + "high", + "med" + ] + } + }, + { + "name": "class", + "role": "target", + "semantic_type": "categorical", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 4, + "unique_ratio": 0.002894, + "example_values": [ + "unacc", + "good", + "acc", + "vgood" + ] + } + } + ] +} \ No newline at end of file diff --git a/hyperparameter/c2/tabpfgen/tabpfgen-c2-20260505_025721/public_gate/public_gate_report.json b/hyperparameter/c2/tabpfgen/tabpfgen-c2-20260505_025721/public_gate/public_gate_report.json new file mode 100644 index 0000000000000000000000000000000000000000..2e4cdcb2a4e28e40d59b17a83e773f622b7636a5 --- /dev/null +++ b/hyperparameter/c2/tabpfgen/tabpfgen-c2-20260505_025721/public_gate/public_gate_report.json @@ -0,0 +1,37 @@ +{ + "dataset_id": "c2", + "status": "pass", + "checks": [ + { + "check_id": "PG001_csv_parse_ok", + "status": "pass" + }, + { + "check_id": "PG002_split_header_consistent", + "status": "pass" + }, + { + "check_id": "PG003_profile_header_match", + "status": "pass" + }, + { + "check_id": "PG004_missing_token_normalized", + "status": "pass" + }, + { + "check_id": "PG005_semantic_type_validated", + "status": "pass" + }, + { + "check_id": "PG006_target_defined_and_valid", + "status": "pass" + } + ], + "target_column": "class", + "task_type": "classification", + "input_splits": { + "train": "/data/jialinzhang/SynthesizePipeline-server/DatasetNew/c2/c2-train.csv", + "val": "/data/jialinzhang/SynthesizePipeline-server/DatasetNew/c2/c2-val.csv", + "test": "/data/jialinzhang/SynthesizePipeline-server/DatasetNew/c2/c2-test.csv" + } +} \ No newline at end of file diff --git a/hyperparameter/c2/tabpfgen/tabpfgen-c2-20260505_025721/public_gate/staged_input_manifest.json b/hyperparameter/c2/tabpfgen/tabpfgen-c2-20260505_025721/public_gate/staged_input_manifest.json new file mode 100644 index 0000000000000000000000000000000000000000..a529d86ed57322c9be930772f5905d0080a014bc --- /dev/null +++ b/hyperparameter/c2/tabpfgen/tabpfgen-c2-20260505_025721/public_gate/staged_input_manifest.json @@ -0,0 +1,149 @@ +{ + "dataset_id": "c2", + "target_column": "class", + "task_type": "classification", + "train_csv": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/c2/tabpfgen/tabpfgen-c2-20260505_025721/staged/public/train.csv", + "val_csv": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/c2/tabpfgen/tabpfgen-c2-20260505_025721/staged/public/val.csv", + "test_csv": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/c2/tabpfgen/tabpfgen-c2-20260505_025721/staged/public/test.csv", + "features_json": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/c2/tabpfgen/tabpfgen-c2-20260505_025721/staged/public/staged_features.json", + "public_gate_report": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/c2/tabpfgen/tabpfgen-c2-20260505_025721/public_gate/public_gate_report.json", + "column_schema": [ + { + "name": "buying", + "role": "feature", + "semantic_type": "categorical", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 4, + "unique_ratio": 0.002894, + "example_values": [ + "vhigh", + "med", + "high", + "low" + ] + } + }, + { + "name": "maint", + "role": "feature", + "semantic_type": "categorical", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 4, + "unique_ratio": 0.002894, + "example_values": [ + "vhigh", + "low", + "med", + "high" + ] + } + }, + { + "name": "doors", + "role": "feature", + "semantic_type": "categorical", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 4, + "unique_ratio": 0.002894, + "example_values": [ + "2", + "5more", + "3", + "4" + ] + } + }, + { + "name": "persons", + "role": "feature", + "semantic_type": "categorical", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 3, + "unique_ratio": 0.002171, + "example_values": [ + "2", + "4", + "more" + ] + } + }, + { + "name": "lug_boot", + "role": "feature", + "semantic_type": "categorical", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 3, + "unique_ratio": 0.002171, + "example_values": [ + "small", + "big", + "med" + ] + } + }, + { + "name": "safety", + "role": "feature", + "semantic_type": "categorical", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 3, + "unique_ratio": 0.002171, + "example_values": [ + "low", + "high", + "med" + ] + } + }, + { + "name": "class", + "role": "target", + "semantic_type": "categorical", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 4, + "unique_ratio": 0.002894, + "example_values": [ + "unacc", + "good", + "acc", + "vgood" + ] + } + } + ] +} \ No newline at end of file diff --git a/hyperparameter/c2/tabpfgen/tabpfgen-c2-20260505_025721/run_config.json b/hyperparameter/c2/tabpfgen/tabpfgen-c2-20260505_025721/run_config.json new file mode 100644 index 0000000000000000000000000000000000000000..69852b119b0a5302b711153ce457f6c0d9e2fa80 --- /dev/null +++ b/hyperparameter/c2/tabpfgen/tabpfgen-c2-20260505_025721/run_config.json @@ -0,0 +1,43 @@ +{ + "schema_version": 1, + "recorded_at": "2026-05-05T02:57:21", + "dataset_id": "c2", + "model": "tabpfgen", + "work_dir": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/c2/tabpfgen/tabpfgen-c2-20260505_025721", + "dataset_source_requested": "new", + "dataset_source_resolved": "new", + "cli_args": { + "model": "tabpfgen", + "dataset": "c2", + "dataset_source": "new", + "train": true, + "generate": true, + "num_rows": 0, + "epochs": null, + "output_dir": null, + "model_dir": null, + "work_dir": null, + "resume": false, + "no_stats": false + }, + "resolved": { + "num_rows": 1382, + "model_path": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/c2/tabpfgen/tabpfgen-c2-20260505_025721", + "output_csv": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/c2/tabpfgen/tabpfgen-c2-20260505_025721/tabpfgen-c2-1382-20260505_025721.csv" + }, + "input_artifacts": { + "public_gate_report": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/c2/tabpfgen/tabpfgen-c2-20260505_025721/public_gate/public_gate_report.json", + "public_manifest": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/c2/tabpfgen/tabpfgen-c2-20260505_025721/public_gate/staged_input_manifest.json", + "model_manifest": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/c2/tabpfgen/tabpfgen-c2-20260505_025721/staged/tabpfgen/model_input_manifest.json", + "train_csv": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/c2/tabpfgen/tabpfgen-c2-20260505_025721/staged/public/train.csv", + "features_json": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/c2/tabpfgen/tabpfgen-c2-20260505_025721/staged/public/staged_features.json", + "target_column": "class", + "task_type": "classification" + }, + "env_overrides": { + "BENCHMARK_TABPFGEN_GPUS": "device=3", + "TABPFGEN_DEVICE": "cuda", + "TABPFGEN_FIT_MAX_ROWS": "1024", + "TABPFGEN_GEN_CHUNK_ROWS": "64" + } +} \ No newline at end of file diff --git a/hyperparameter/c2/tabpfgen/tabpfgen-c2-20260505_025721/runtime_result.json b/hyperparameter/c2/tabpfgen/tabpfgen-c2-20260505_025721/runtime_result.json new file mode 100644 index 0000000000000000000000000000000000000000..fa7a7355f234cd4763b0bf80beb9d62d6011fb2d --- /dev/null +++ b/hyperparameter/c2/tabpfgen/tabpfgen-c2-20260505_025721/runtime_result.json @@ -0,0 +1,27 @@ +{ + "dataset_id": "c2", + "model": "tabpfgen", + "run_id": "tabpfgen-c2-20260505_025721", + "public_gate_status": "pass", + "adapter_ready_status": "pass", + "train_status": "success", + "generate_status": "success", + "reason_code": null, + "reason_detail": null, + "artifacts": { + "synthetic_csv": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/c2/tabpfgen/tabpfgen-c2-20260505_025721/tabpfgen-c2-1382-20260505_025721.csv", + "model_path": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/c2/tabpfgen/tabpfgen-c2-20260505_025721" + }, + "timings": { + "train": { + "started_at": "2026-05-05T02:57:21", + "ended_at": "2026-05-05T02:57:21", + "duration_sec": 0.004 + }, + "generate": { + "started_at": "2026-05-05T02:57:21", + "ended_at": "2026-05-05T02:58:13", + "duration_sec": 52.309 + } + } +} \ No newline at end of file diff --git a/hyperparameter/c2/tabpfgen/tabpfgen-c2-20260505_025721/staged/public/staged_features.json b/hyperparameter/c2/tabpfgen/tabpfgen-c2-20260505_025721/staged/public/staged_features.json new file mode 100644 index 0000000000000000000000000000000000000000..61783861dd5de501592f76acb0469cf3f3b2622a --- /dev/null +++ b/hyperparameter/c2/tabpfgen/tabpfgen-c2-20260505_025721/staged/public/staged_features.json @@ -0,0 +1,37 @@ +[ + { + "feature_name": "buying", + "data_type": "categorical", + "is_target": false + }, + { + "feature_name": "maint", + "data_type": "categorical", + "is_target": false + }, + { + "feature_name": "doors", + "data_type": "categorical", + "is_target": false + }, + { + "feature_name": "persons", + "data_type": "categorical", + "is_target": false + }, + { + "feature_name": "lug_boot", + "data_type": "categorical", + "is_target": false + }, + { + "feature_name": "safety", + "data_type": "categorical", + "is_target": false + }, + { + "feature_name": "class", + "data_type": "categorical", + "is_target": true + } +] \ No newline at end of file diff --git a/hyperparameter/c2/tabpfgen/tabpfgen-c2-20260505_025721/staged/public/test.csv b/hyperparameter/c2/tabpfgen/tabpfgen-c2-20260505_025721/staged/public/test.csv new file mode 100644 index 0000000000000000000000000000000000000000..392a0d7189a34d8f13ecf20a99d64b03230d517c --- /dev/null +++ b/hyperparameter/c2/tabpfgen/tabpfgen-c2-20260505_025721/staged/public/test.csv @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:b48114a7d0bc5bd9a07920f903c8d4aba8bf98bf2a66a050da03588b0245ca73 +size 5273 diff --git a/hyperparameter/c2/tabpfgen/tabpfgen-c2-20260505_025721/staged/public/train.csv b/hyperparameter/c2/tabpfgen/tabpfgen-c2-20260505_025721/staged/public/train.csv new file mode 100644 index 0000000000000000000000000000000000000000..da4f4d55134eebc0e51157d0d467536371db1484 --- /dev/null +++ b/hyperparameter/c2/tabpfgen/tabpfgen-c2-20260505_025721/staged/public/train.csv @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:4aed00c2c2b3f88a55a7ebff31b2e1b5e0e32fb0a7267e0b9d2779cd23e434dd +size 41565 diff --git a/hyperparameter/c2/tabpfgen/tabpfgen-c2-20260505_025721/staged/public/val.csv b/hyperparameter/c2/tabpfgen/tabpfgen-c2-20260505_025721/staged/public/val.csv new file mode 100644 index 0000000000000000000000000000000000000000..af8caf7ee42524188534a3daf32996dc491952d9 --- /dev/null +++ b/hyperparameter/c2/tabpfgen/tabpfgen-c2-20260505_025721/staged/public/val.csv @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:26e90c1170a57a14c05832ac88027722b1f3848f9662c7c09ef7c93dcba4cc01 +size 5176 diff --git a/hyperparameter/c2/tabpfgen/tabpfgen-c2-20260505_025721/staged/tabpfgen/adapter_report.json b/hyperparameter/c2/tabpfgen/tabpfgen-c2-20260505_025721/staged/tabpfgen/adapter_report.json new file mode 100644 index 0000000000000000000000000000000000000000..6839f3227ea2883125aaba3145f5712a284ee628 --- /dev/null +++ b/hyperparameter/c2/tabpfgen/tabpfgen-c2-20260505_025721/staged/tabpfgen/adapter_report.json @@ -0,0 +1,7 @@ +{ + "adapter_ready_status": "pass", + "adapter_fail_reason_code": null, + "adapter_fail_detail": null, + "adapter_transforms_applied": [], + "model_input_manifest": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/c2/tabpfgen/tabpfgen-c2-20260505_025721/staged/tabpfgen/model_input_manifest.json" +} \ No newline at end of file diff --git a/hyperparameter/c2/tabpfgen/tabpfgen-c2-20260505_025721/staged/tabpfgen/adapter_transforms_applied.json b/hyperparameter/c2/tabpfgen/tabpfgen-c2-20260505_025721/staged/tabpfgen/adapter_transforms_applied.json new file mode 100644 index 0000000000000000000000000000000000000000..0637a088a01e8ddab3bf3fa98dbe804cbde1a0dc --- /dev/null +++ b/hyperparameter/c2/tabpfgen/tabpfgen-c2-20260505_025721/staged/tabpfgen/adapter_transforms_applied.json @@ -0,0 +1 @@ +[] \ No newline at end of file diff --git a/hyperparameter/c2/tabpfgen/tabpfgen-c2-20260505_025721/staged/tabpfgen/model_input_manifest.json b/hyperparameter/c2/tabpfgen/tabpfgen-c2-20260505_025721/staged/tabpfgen/model_input_manifest.json new file mode 100644 index 0000000000000000000000000000000000000000..037c89f40fbf95600d17154bdcfe5813b4d56216 --- /dev/null +++ b/hyperparameter/c2/tabpfgen/tabpfgen-c2-20260505_025721/staged/tabpfgen/model_input_manifest.json @@ -0,0 +1,151 @@ +{ + "dataset_id": "c2", + "model": "tabpfgen", + "target_column": "class", + "task_type": "classification", + "column_schema": [ + { + "name": "buying", + "role": "feature", + "semantic_type": "categorical", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 4, + "unique_ratio": 0.002894, + "example_values": [ + "vhigh", + "med", + "high", + "low" + ] + } + }, + { + "name": "maint", + "role": "feature", + "semantic_type": "categorical", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 4, + "unique_ratio": 0.002894, + "example_values": [ + "vhigh", + "low", + "med", + "high" + ] + } + }, + { + "name": "doors", + "role": "feature", + "semantic_type": "categorical", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 4, + "unique_ratio": 0.002894, + "example_values": [ + "2", + "5more", + "3", + "4" + ] + } + }, + { + "name": "persons", + "role": "feature", + "semantic_type": "categorical", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 3, + "unique_ratio": 0.002171, + "example_values": [ + "2", + "4", + "more" + ] + } + }, + { + "name": "lug_boot", + "role": "feature", + "semantic_type": "categorical", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 3, + "unique_ratio": 0.002171, + "example_values": [ + "small", + "big", + "med" + ] + } + }, + { + "name": "safety", + "role": "feature", + "semantic_type": "categorical", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 3, + "unique_ratio": 0.002171, + "example_values": [ + "low", + "high", + "med" + ] + } + }, + { + "name": "class", + "role": "target", + "semantic_type": "categorical", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 4, + "unique_ratio": 0.002894, + "example_values": [ + "unacc", + "good", + "acc", + "vgood" + ] + } + } + ], + "public_manifest": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/c2/tabpfgen/tabpfgen-c2-20260505_025721/public_gate/staged_input_manifest.json", + "train_csv": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/c2/tabpfgen/tabpfgen-c2-20260505_025721/staged/public/train.csv", + "val_csv": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/c2/tabpfgen/tabpfgen-c2-20260505_025721/staged/public/val.csv", + "test_csv": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/c2/tabpfgen/tabpfgen-c2-20260505_025721/staged/public/test.csv", + "features_json": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/c2/tabpfgen/tabpfgen-c2-20260505_025721/staged/public/staged_features.json", + "public_gate_report": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/c2/tabpfgen/tabpfgen-c2-20260505_025721/public_gate/public_gate_report.json" +} \ No newline at end of file diff --git a/hyperparameter/c2/tabpfgen/tabpfgen-c2-20260505_025721/tabpfgen-c2-1382-20260505_025721.csv b/hyperparameter/c2/tabpfgen/tabpfgen-c2-20260505_025721/tabpfgen-c2-1382-20260505_025721.csv new file mode 100644 index 0000000000000000000000000000000000000000..e804e7b433b8d5bab27ee490c2afcfb1b1ca20b5 --- /dev/null +++ b/hyperparameter/c2/tabpfgen/tabpfgen-c2-20260505_025721/tabpfgen-c2-1382-20260505_025721.csv @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:64e0904eb3f6d3ed59f3b018d298ed93eabfc8e11b3dfd67f35dbea8cfdfc799 +size 41865 diff --git a/hyperparameter/c2/tabpfgen/tabpfgen-c2-20260505_025721/tabpfgen_meta.json b/hyperparameter/c2/tabpfgen/tabpfgen-c2-20260505_025721/tabpfgen_meta.json new file mode 100644 index 0000000000000000000000000000000000000000..c86e47a84d9bcfff7acc9bcd94bf49367bb936b1 --- /dev/null +++ b/hyperparameter/c2/tabpfgen/tabpfgen-c2-20260505_025721/tabpfgen_meta.json @@ -0,0 +1,9 @@ +{ + "csv_path": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/c2/tabpfgen/tabpfgen-c2-20260505_025721/staged/public/train.csv", + "json_path": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/c2/tabpfgen/tabpfgen-c2-20260505_025721/staged/public/staged_features.json", + "target_col": "class", + "is_classification": true, + "task_type": "classification", + "n_rows": 1382, + "n_cols": 7 +} \ No newline at end of file diff --git a/hyperparameter/c2/tabpfgen/tabpfgen-c2-20260505_025721/train_20260505_025721.log b/hyperparameter/c2/tabpfgen/tabpfgen-c2-20260505_025721/train_20260505_025721.log new file mode 100644 index 0000000000000000000000000000000000000000..46b070dfb4fb22f69603c329808bb1cc25b03c2b --- /dev/null +++ b/hyperparameter/c2/tabpfgen/tabpfgen-c2-20260505_025721/train_20260505_025721.log @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:fb3fc7aeb3c9879e8f1df3f581842107c40765cefe2f4d100b40562c8fbc968c +size 595 diff --git a/hyperparameter/c2/tabpfgen/tabpfgen-c2-20260505_025826/_tabpfgen_generate.py b/hyperparameter/c2/tabpfgen/tabpfgen-c2-20260505_025826/_tabpfgen_generate.py new file mode 100644 index 0000000000000000000000000000000000000000..cefa5e4bca570bd59c9df22af56af24e1962effa --- /dev/null +++ b/hyperparameter/c2/tabpfgen/tabpfgen-c2-20260505_025826/_tabpfgen_generate.py @@ -0,0 +1,122 @@ +import os +import numpy as np +import pandas as pd +import json +from tabpfgen import TabPFGen + +df = pd.read_csv("/work/output-Benchmark-trainonly-v1/c2/tabpfgen/tabpfgen-c2-20260505_025826/staged/public/train.csv") +target_col = "class" + +target_missing = df[target_col].isna() +if target_missing.any(): + dropped = int(target_missing.sum()) + df = df.loc[~target_missing].copy() + print( + f"[TabPFGen] Dropped {dropped} rows with missing target '{target_col}'" + ) +if df.empty: + raise ValueError( + f"[TabPFGen] No rows remain after dropping missing target '{target_col}'" + ) + +feature_cols = [c for c in df.columns if c != target_col] + +cat_encodings = {} +for col in feature_cols: + if df[col].dtype == object or str(df[col].dtype) == 'category': + cats = sorted(df[col].dropna().unique().tolist(), key=str) + cat_map = {v: i for i, v in enumerate(cats)} + df[col] = df[col].map(cat_map).astype(float) + cat_encodings[col] = cats + print(f"[TabPFGen] Label-encoded '{col}' ({len(cats)} categories)") + +target_cats = None +if df[target_col].dtype == object or str(df[target_col].dtype) == 'category': + cats = sorted(df[target_col].dropna().unique().tolist(), key=str) + t_map = {v: i for i, v in enumerate(cats)} + df[target_col] = df[target_col].map(t_map).astype(float) + target_cats = cats + print(f"[TabPFGen] Label-encoded target '{target_col}' ({len(cats)} categories)") + +X = df[feature_cols].values.astype(np.float32) +y = df[target_col].values +fit_rows_cap = max(1, int(os.environ.get("TABPFGEN_FIT_MAX_ROWS", "50000"))) +if len(X) > fit_rows_cap: + rng = np.random.default_rng(42) + idx = np.sort(rng.choice(len(X), size=fit_rows_cap, replace=False)) + X = X[idx] + y = y[idx] + print(f"[TabPFGen] Downsampled fit rows -> {len(X)} (cap={fit_rows_cap})") +target_n = int(1382) + +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 + +chunk_rows = max(1, int(os.environ.get("TABPFGEN_GEN_CHUNK_ROWS", "256"))) +device = (os.environ.get("TABPFGEN_DEVICE") or "auto").strip() or "auto" + +# TabPFGen v0.1.x API:仅支持 n_sgld_steps / sgld_* / device。 +# (旧版脚本中的 energy_*_chunk 与上游 TabPFGen 不一致,会导致 TypeError。) +gen = TabPFGen( + n_sgld_steps=1000, + sgld_step_size=0.01, + sgld_noise_scale=0.01, + device=device, +) + +print(f"[TabPFGen] Generating {target_n} rows via generate_classification (chunk_rows={chunk_rows}, device={device})") +x_parts = [] +y_parts = [] +remaining = target_n +while remaining > 0: + take = min(chunk_rows, remaining) + X_part, y_part = gen.generate_classification(X, y, n_samples=take) + x_parts.append(np.asarray(X_part)) + y_parts.append(np.asarray(y_part)) + remaining -= take + print(f"[TabPFGen] chunk done: take={take}, remaining={remaining}") + +X_syn = np.concatenate(x_parts, axis=0) +y_syn = np.concatenate(y_parts, axis=0) + +syn_df = pd.DataFrame(X_syn, columns=feature_cols) +syn_df[target_col] = y_syn + +for col, cats in cat_encodings.items(): + codes = np.round(syn_df[col].values).astype(int) + codes = np.clip(codes, 0, len(cats) - 1) + syn_df[col] = [cats[c] for c in codes] + +if target_cats is not None: + codes = np.round(syn_df[target_col].values).astype(int) + codes = np.clip(codes, 0, len(target_cats) - 1) + syn_df[target_col] = [target_cats[c] for c in codes] + +if len(syn_df) > target_n: + print(f"[TabPFGen] Trimming rows: {len(syn_df)} -> {target_n}") + syn_df = syn_df.iloc[:target_n].copy() +elif len(syn_df) < target_n: + deficit = target_n - len(syn_df) + print(f"[TabPFGen] Padding rows: {len(syn_df)} -> {target_n} (deficit={deficit})") + if len(syn_df) > 0: + extra = syn_df.sample(n=deficit, replace=True, random_state=42) + syn_df = pd.concat( + [syn_df.reset_index(drop=True), extra.reset_index(drop=True)], + ignore_index=True, + ) + else: + syn_df = df[feature_cols + [target_col]].sample( + n=target_n, replace=True, random_state=42 + ).reset_index(drop=True) + +syn_df = syn_df[list(df.columns)] +if len(syn_df) != target_n: + raise RuntimeError( + f"[TabPFGen] Row alignment failed: got {len(syn_df)}, expected {target_n}" + ) +syn_df.to_csv("/work/output-Benchmark-trainonly-v1/c2/tabpfgen/tabpfgen-c2-20260505_025826/tabpfgen-c2-1382-20260505_025826.csv", index=False) +print(f"[TabPFGen] Saved {len(syn_df)} rows -> /work/output-Benchmark-trainonly-v1/c2/tabpfgen/tabpfgen-c2-20260505_025826/tabpfgen-c2-1382-20260505_025826.csv") diff --git a/hyperparameter/c2/tabpfgen/tabpfgen-c2-20260505_025826/gen_20260505_025826.log b/hyperparameter/c2/tabpfgen/tabpfgen-c2-20260505_025826/gen_20260505_025826.log new file mode 100644 index 0000000000000000000000000000000000000000..f3fe9b766d7c8092638ad786be486234e7e6bc7c --- /dev/null +++ b/hyperparameter/c2/tabpfgen/tabpfgen-c2-20260505_025826/gen_20260505_025826.log @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:bd37470a04e5b77192013393ca5743e0dfaacf234072d5c2bdc4e8d5d8e400ec +size 3226 diff --git a/hyperparameter/c2/tabpfgen/tabpfgen-c2-20260505_025826/input_snapshot.json b/hyperparameter/c2/tabpfgen/tabpfgen-c2-20260505_025826/input_snapshot.json new file mode 100644 index 0000000000000000000000000000000000000000..0dfc898784526759fbfe4fcdd1aa60dc4d52829f --- /dev/null +++ b/hyperparameter/c2/tabpfgen/tabpfgen-c2-20260505_025826/input_snapshot.json @@ -0,0 +1,36 @@ +{ + "dataset_id": "c2", + "model": "tabpfgen", + "inputs": { + "train_csv": { + "path": "/data/jialinzhang/SynthesizePipeline-server/DatasetNew/c2/c2-train.csv", + "exists": true, + "size": 42948, + "sha256": "17bc560fa96bd00fb3b526e1e65bc91210b701d0d0a4e8bb9b4c5196cab56def" + }, + "val_csv": { + "path": "/data/jialinzhang/SynthesizePipeline-server/DatasetNew/c2/c2-val.csv", + "exists": true, + "size": 5349, + "sha256": "61e565eca62e65a7dccd9d51039a3170413379e10fc494e25870e7c4294863c9" + }, + "test_csv": { + "path": "/data/jialinzhang/SynthesizePipeline-server/DatasetNew/c2/c2-test.csv", + "exists": true, + "size": 5448, + "sha256": "cbcbb062a1faf5fa44b66c80532baa229e05b94fc42137269761e6c6d84af20a" + }, + "profile_json": { + "path": "/data/jialinzhang/SynthesizePipeline-server/DatasetNew/artifacts/data_core/tabular/c2/c2-dataset_profile.json", + "exists": true, + "size": 3240, + "sha256": "526b7163b2076c93c0bf4638438081ee8a6907065d5b608faa40d1a3dbc2a27b" + }, + "contract_json": { + "path": "/data/jialinzhang/SynthesizePipeline-server/DatasetNew/artifacts/data_core/tabular/c2/c2-dataset_contract_v1.json", + "exists": true, + "size": 3731, + "sha256": "fb595a876054c2ee9b4e10cfe83a5691588de1d25466cbb9d473c18ad3604009" + } + } +} \ No newline at end of file diff --git a/hyperparameter/c2/tabpfgen/tabpfgen-c2-20260505_025826/public_gate/normalized_schema_snapshot.json b/hyperparameter/c2/tabpfgen/tabpfgen-c2-20260505_025826/public_gate/normalized_schema_snapshot.json new file mode 100644 index 0000000000000000000000000000000000000000..689b1d00d96508e44ba40e58dc4560e19afc2b3b --- /dev/null +++ b/hyperparameter/c2/tabpfgen/tabpfgen-c2-20260505_025826/public_gate/normalized_schema_snapshot.json @@ -0,0 +1,144 @@ +{ + "dataset_id": "c2", + "target_column": "class", + "task_type": "classification", + "columns": [ + { + "name": "buying", + "role": "feature", + "semantic_type": "categorical", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 4, + "unique_ratio": 0.002894, + "example_values": [ + "vhigh", + "med", + "high", + "low" + ] + } + }, + { + "name": "maint", + "role": "feature", + "semantic_type": "categorical", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 4, + "unique_ratio": 0.002894, + "example_values": [ + "vhigh", + "low", + "med", + "high" + ] + } + }, + { + "name": "doors", + "role": "feature", + "semantic_type": "categorical", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 4, + "unique_ratio": 0.002894, + "example_values": [ + "2", + "5more", + "3", + "4" + ] + } + }, + { + "name": "persons", + "role": "feature", + "semantic_type": "categorical", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 3, + "unique_ratio": 0.002171, + "example_values": [ + "2", + "4", + "more" + ] + } + }, + { + "name": "lug_boot", + "role": "feature", + "semantic_type": "categorical", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 3, + "unique_ratio": 0.002171, + "example_values": [ + "small", + "big", + "med" + ] + } + }, + { + "name": "safety", + "role": "feature", + "semantic_type": "categorical", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 3, + "unique_ratio": 0.002171, + "example_values": [ + "low", + "high", + "med" + ] + } + }, + { + "name": "class", + "role": "target", + "semantic_type": "categorical", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 4, + "unique_ratio": 0.002894, + "example_values": [ + "unacc", + "good", + "acc", + "vgood" + ] + } + } + ] +} \ No newline at end of file diff --git a/hyperparameter/c2/tabpfgen/tabpfgen-c2-20260505_025826/public_gate/public_gate_report.json b/hyperparameter/c2/tabpfgen/tabpfgen-c2-20260505_025826/public_gate/public_gate_report.json new file mode 100644 index 0000000000000000000000000000000000000000..2e4cdcb2a4e28e40d59b17a83e773f622b7636a5 --- /dev/null +++ b/hyperparameter/c2/tabpfgen/tabpfgen-c2-20260505_025826/public_gate/public_gate_report.json @@ -0,0 +1,37 @@ +{ + "dataset_id": "c2", + "status": "pass", + "checks": [ + { + "check_id": "PG001_csv_parse_ok", + "status": "pass" + }, + { + "check_id": "PG002_split_header_consistent", + "status": "pass" + }, + { + "check_id": "PG003_profile_header_match", + "status": "pass" + }, + { + "check_id": "PG004_missing_token_normalized", + "status": "pass" + }, + { + "check_id": "PG005_semantic_type_validated", + "status": "pass" + }, + { + "check_id": "PG006_target_defined_and_valid", + "status": "pass" + } + ], + "target_column": "class", + "task_type": "classification", + "input_splits": { + "train": "/data/jialinzhang/SynthesizePipeline-server/DatasetNew/c2/c2-train.csv", + "val": "/data/jialinzhang/SynthesizePipeline-server/DatasetNew/c2/c2-val.csv", + "test": "/data/jialinzhang/SynthesizePipeline-server/DatasetNew/c2/c2-test.csv" + } +} \ No newline at end of file diff --git a/hyperparameter/c2/tabpfgen/tabpfgen-c2-20260505_025826/public_gate/staged_input_manifest.json b/hyperparameter/c2/tabpfgen/tabpfgen-c2-20260505_025826/public_gate/staged_input_manifest.json new file mode 100644 index 0000000000000000000000000000000000000000..d29613b74f5e1b3654f4f7db0e787f8d36745e07 --- /dev/null +++ b/hyperparameter/c2/tabpfgen/tabpfgen-c2-20260505_025826/public_gate/staged_input_manifest.json @@ -0,0 +1,149 @@ +{ + "dataset_id": "c2", + "target_column": "class", + "task_type": "classification", + "train_csv": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/c2/tabpfgen/tabpfgen-c2-20260505_025826/staged/public/train.csv", + "val_csv": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/c2/tabpfgen/tabpfgen-c2-20260505_025826/staged/public/val.csv", + "test_csv": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/c2/tabpfgen/tabpfgen-c2-20260505_025826/staged/public/test.csv", + "features_json": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/c2/tabpfgen/tabpfgen-c2-20260505_025826/staged/public/staged_features.json", + "public_gate_report": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/c2/tabpfgen/tabpfgen-c2-20260505_025826/public_gate/public_gate_report.json", + "column_schema": [ + { + "name": "buying", + "role": "feature", + "semantic_type": "categorical", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 4, + "unique_ratio": 0.002894, + "example_values": [ + "vhigh", + "med", + "high", + "low" + ] + } + }, + { + "name": "maint", + "role": "feature", + "semantic_type": "categorical", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 4, + "unique_ratio": 0.002894, + "example_values": [ + "vhigh", + "low", + "med", + "high" + ] + } + }, + { + "name": "doors", + "role": "feature", + "semantic_type": "categorical", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 4, + "unique_ratio": 0.002894, + "example_values": [ + "2", + "5more", + "3", + "4" + ] + } + }, + { + "name": "persons", + "role": "feature", + "semantic_type": "categorical", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 3, + "unique_ratio": 0.002171, + "example_values": [ + "2", + "4", + "more" + ] + } + }, + { + "name": "lug_boot", + "role": "feature", + "semantic_type": "categorical", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 3, + "unique_ratio": 0.002171, + "example_values": [ + "small", + "big", + "med" + ] + } + }, + { + "name": "safety", + "role": "feature", + "semantic_type": "categorical", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 3, + "unique_ratio": 0.002171, + "example_values": [ + "low", + "high", + "med" + ] + } + }, + { + "name": "class", + "role": "target", + "semantic_type": "categorical", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 4, + "unique_ratio": 0.002894, + "example_values": [ + "unacc", + "good", + "acc", + "vgood" + ] + } + } + ] +} \ No newline at end of file diff --git a/hyperparameter/c2/tabpfgen/tabpfgen-c2-20260505_025826/run_config.json b/hyperparameter/c2/tabpfgen/tabpfgen-c2-20260505_025826/run_config.json new file mode 100644 index 0000000000000000000000000000000000000000..ad76a1dc9e9165dc2fefa135f4e805bd908e736d --- /dev/null +++ b/hyperparameter/c2/tabpfgen/tabpfgen-c2-20260505_025826/run_config.json @@ -0,0 +1,43 @@ +{ + "schema_version": 1, + "recorded_at": "2026-05-05T02:58:26", + "dataset_id": "c2", + "model": "tabpfgen", + "work_dir": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/c2/tabpfgen/tabpfgen-c2-20260505_025826", + "dataset_source_requested": "new", + "dataset_source_resolved": "new", + "cli_args": { + "model": "tabpfgen", + "dataset": "c2", + "dataset_source": "new", + "train": true, + "generate": true, + "num_rows": 0, + "epochs": null, + "output_dir": null, + "model_dir": null, + "work_dir": null, + "resume": false, + "no_stats": false + }, + "resolved": { + "num_rows": 1382, + "model_path": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/c2/tabpfgen/tabpfgen-c2-20260505_025826", + "output_csv": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/c2/tabpfgen/tabpfgen-c2-20260505_025826/tabpfgen-c2-1382-20260505_025826.csv" + }, + "input_artifacts": { + "public_gate_report": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/c2/tabpfgen/tabpfgen-c2-20260505_025826/public_gate/public_gate_report.json", + "public_manifest": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/c2/tabpfgen/tabpfgen-c2-20260505_025826/public_gate/staged_input_manifest.json", + "model_manifest": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/c2/tabpfgen/tabpfgen-c2-20260505_025826/staged/tabpfgen/model_input_manifest.json", + "train_csv": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/c2/tabpfgen/tabpfgen-c2-20260505_025826/staged/public/train.csv", + "features_json": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/c2/tabpfgen/tabpfgen-c2-20260505_025826/staged/public/staged_features.json", + "target_column": "class", + "task_type": "classification" + }, + "env_overrides": { + "BENCHMARK_TABPFGEN_GPUS": "device=3", + "TABPFGEN_DEVICE": "cuda", + "TABPFGEN_FIT_MAX_ROWS": "2048", + "TABPFGEN_GEN_CHUNK_ROWS": "128" + } +} \ No newline at end of file diff --git a/hyperparameter/c2/tabpfgen/tabpfgen-c2-20260505_025826/runtime_result.json b/hyperparameter/c2/tabpfgen/tabpfgen-c2-20260505_025826/runtime_result.json new file mode 100644 index 0000000000000000000000000000000000000000..b70a77adcfb66e185a820492205d89d7068a1c5d --- /dev/null +++ b/hyperparameter/c2/tabpfgen/tabpfgen-c2-20260505_025826/runtime_result.json @@ -0,0 +1,27 @@ +{ + "dataset_id": "c2", + "model": "tabpfgen", + "run_id": "tabpfgen-c2-20260505_025826", + "public_gate_status": "pass", + "adapter_ready_status": "pass", + "train_status": "success", + "generate_status": "success", + "reason_code": null, + "reason_detail": null, + "artifacts": { + "synthetic_csv": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/c2/tabpfgen/tabpfgen-c2-20260505_025826/tabpfgen-c2-1382-20260505_025826.csv", + "model_path": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/c2/tabpfgen/tabpfgen-c2-20260505_025826" + }, + "timings": { + "train": { + "started_at": "2026-05-05T02:58:26", + "ended_at": "2026-05-05T02:58:26", + "duration_sec": 0.006 + }, + "generate": { + "started_at": "2026-05-05T02:58:26", + "ended_at": "2026-05-05T02:59:03", + "duration_sec": 36.813 + } + } +} \ No newline at end of file diff --git a/hyperparameter/c2/tabpfgen/tabpfgen-c2-20260505_025826/staged/public/staged_features.json b/hyperparameter/c2/tabpfgen/tabpfgen-c2-20260505_025826/staged/public/staged_features.json new file mode 100644 index 0000000000000000000000000000000000000000..61783861dd5de501592f76acb0469cf3f3b2622a --- /dev/null +++ b/hyperparameter/c2/tabpfgen/tabpfgen-c2-20260505_025826/staged/public/staged_features.json @@ -0,0 +1,37 @@ +[ + { + "feature_name": "buying", + "data_type": "categorical", + "is_target": false + }, + { + "feature_name": "maint", + "data_type": "categorical", + "is_target": false + }, + { + "feature_name": "doors", + "data_type": "categorical", + "is_target": false + }, + { + "feature_name": "persons", + "data_type": "categorical", + "is_target": false + }, + { + "feature_name": "lug_boot", + "data_type": "categorical", + "is_target": false + }, + { + "feature_name": "safety", + "data_type": "categorical", + "is_target": false + }, + { + "feature_name": "class", + "data_type": "categorical", + "is_target": true + } +] \ No newline at end of file diff --git a/hyperparameter/c2/tabpfgen/tabpfgen-c2-20260505_025826/staged/public/test.csv b/hyperparameter/c2/tabpfgen/tabpfgen-c2-20260505_025826/staged/public/test.csv new file mode 100644 index 0000000000000000000000000000000000000000..392a0d7189a34d8f13ecf20a99d64b03230d517c --- /dev/null +++ b/hyperparameter/c2/tabpfgen/tabpfgen-c2-20260505_025826/staged/public/test.csv @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:b48114a7d0bc5bd9a07920f903c8d4aba8bf98bf2a66a050da03588b0245ca73 +size 5273 diff --git a/hyperparameter/c2/tabpfgen/tabpfgen-c2-20260505_025826/staged/public/train.csv b/hyperparameter/c2/tabpfgen/tabpfgen-c2-20260505_025826/staged/public/train.csv new file mode 100644 index 0000000000000000000000000000000000000000..da4f4d55134eebc0e51157d0d467536371db1484 --- /dev/null +++ b/hyperparameter/c2/tabpfgen/tabpfgen-c2-20260505_025826/staged/public/train.csv @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:4aed00c2c2b3f88a55a7ebff31b2e1b5e0e32fb0a7267e0b9d2779cd23e434dd +size 41565 diff --git a/hyperparameter/c2/tabpfgen/tabpfgen-c2-20260505_025826/staged/public/val.csv b/hyperparameter/c2/tabpfgen/tabpfgen-c2-20260505_025826/staged/public/val.csv new file mode 100644 index 0000000000000000000000000000000000000000..af8caf7ee42524188534a3daf32996dc491952d9 --- /dev/null +++ b/hyperparameter/c2/tabpfgen/tabpfgen-c2-20260505_025826/staged/public/val.csv @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:26e90c1170a57a14c05832ac88027722b1f3848f9662c7c09ef7c93dcba4cc01 +size 5176 diff --git a/hyperparameter/c2/tabpfgen/tabpfgen-c2-20260505_025826/staged/tabpfgen/adapter_report.json b/hyperparameter/c2/tabpfgen/tabpfgen-c2-20260505_025826/staged/tabpfgen/adapter_report.json new file mode 100644 index 0000000000000000000000000000000000000000..53444a743bb56887e957afcde15dfc3a2564660f --- /dev/null +++ b/hyperparameter/c2/tabpfgen/tabpfgen-c2-20260505_025826/staged/tabpfgen/adapter_report.json @@ -0,0 +1,7 @@ +{ + "adapter_ready_status": "pass", + "adapter_fail_reason_code": null, + "adapter_fail_detail": null, + "adapter_transforms_applied": [], + "model_input_manifest": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/c2/tabpfgen/tabpfgen-c2-20260505_025826/staged/tabpfgen/model_input_manifest.json" +} \ No newline at end of file diff --git a/hyperparameter/c2/tabpfgen/tabpfgen-c2-20260505_025826/staged/tabpfgen/adapter_transforms_applied.json b/hyperparameter/c2/tabpfgen/tabpfgen-c2-20260505_025826/staged/tabpfgen/adapter_transforms_applied.json new file mode 100644 index 0000000000000000000000000000000000000000..0637a088a01e8ddab3bf3fa98dbe804cbde1a0dc --- /dev/null +++ b/hyperparameter/c2/tabpfgen/tabpfgen-c2-20260505_025826/staged/tabpfgen/adapter_transforms_applied.json @@ -0,0 +1 @@ +[] \ No newline at end of file diff --git a/hyperparameter/c2/tabpfgen/tabpfgen-c2-20260505_025826/staged/tabpfgen/model_input_manifest.json b/hyperparameter/c2/tabpfgen/tabpfgen-c2-20260505_025826/staged/tabpfgen/model_input_manifest.json new file mode 100644 index 0000000000000000000000000000000000000000..bd271520fae1c040ee47a22f8b76b8ec5dc00142 --- /dev/null +++ b/hyperparameter/c2/tabpfgen/tabpfgen-c2-20260505_025826/staged/tabpfgen/model_input_manifest.json @@ -0,0 +1,151 @@ +{ + "dataset_id": "c2", + "model": "tabpfgen", + "target_column": "class", + "task_type": "classification", + "column_schema": [ + { + "name": "buying", + "role": "feature", + "semantic_type": "categorical", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 4, + "unique_ratio": 0.002894, + "example_values": [ + "vhigh", + "med", + "high", + "low" + ] + } + }, + { + "name": "maint", + "role": "feature", + "semantic_type": "categorical", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 4, + "unique_ratio": 0.002894, + "example_values": [ + "vhigh", + "low", + "med", + "high" + ] + } + }, + { + "name": "doors", + "role": "feature", + "semantic_type": "categorical", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 4, + "unique_ratio": 0.002894, + "example_values": [ + "2", + "5more", + "3", + "4" + ] + } + }, + { + "name": "persons", + "role": "feature", + "semantic_type": "categorical", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 3, + "unique_ratio": 0.002171, + "example_values": [ + "2", + "4", + "more" + ] + } + }, + { + "name": "lug_boot", + "role": "feature", + "semantic_type": "categorical", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 3, + "unique_ratio": 0.002171, + "example_values": [ + "small", + "big", + "med" + ] + } + }, + { + "name": "safety", + "role": "feature", + "semantic_type": "categorical", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 3, + "unique_ratio": 0.002171, + "example_values": [ + "low", + "high", + "med" + ] + } + }, + { + "name": "class", + "role": "target", + "semantic_type": "categorical", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 4, + "unique_ratio": 0.002894, + "example_values": [ + "unacc", + "good", + "acc", + "vgood" + ] + } + } + ], + "public_manifest": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/c2/tabpfgen/tabpfgen-c2-20260505_025826/public_gate/staged_input_manifest.json", + "train_csv": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/c2/tabpfgen/tabpfgen-c2-20260505_025826/staged/public/train.csv", + "val_csv": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/c2/tabpfgen/tabpfgen-c2-20260505_025826/staged/public/val.csv", + "test_csv": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/c2/tabpfgen/tabpfgen-c2-20260505_025826/staged/public/test.csv", + "features_json": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/c2/tabpfgen/tabpfgen-c2-20260505_025826/staged/public/staged_features.json", + "public_gate_report": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/c2/tabpfgen/tabpfgen-c2-20260505_025826/public_gate/public_gate_report.json" +} \ No newline at end of file diff --git a/hyperparameter/c2/tabpfgen/tabpfgen-c2-20260505_025826/tabpfgen-c2-1382-20260505_025826.csv b/hyperparameter/c2/tabpfgen/tabpfgen-c2-20260505_025826/tabpfgen-c2-1382-20260505_025826.csv new file mode 100644 index 0000000000000000000000000000000000000000..198484020f50a7840c1606232400f517c25d8524 --- /dev/null +++ b/hyperparameter/c2/tabpfgen/tabpfgen-c2-20260505_025826/tabpfgen-c2-1382-20260505_025826.csv @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:3b49af73dcfe0980b658726ad1d61f45776ec5edec34acf5c5a4babe5f81ab04 +size 41922 diff --git a/hyperparameter/c2/tabpfgen/tabpfgen-c2-20260505_025826/tabpfgen_meta.json b/hyperparameter/c2/tabpfgen/tabpfgen-c2-20260505_025826/tabpfgen_meta.json new file mode 100644 index 0000000000000000000000000000000000000000..379909575d33e46b14d38ee02a2e83dc9d20638e --- /dev/null +++ b/hyperparameter/c2/tabpfgen/tabpfgen-c2-20260505_025826/tabpfgen_meta.json @@ -0,0 +1,9 @@ +{ + "csv_path": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/c2/tabpfgen/tabpfgen-c2-20260505_025826/staged/public/train.csv", + "json_path": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/c2/tabpfgen/tabpfgen-c2-20260505_025826/staged/public/staged_features.json", + "target_col": "class", + "is_classification": true, + "task_type": "classification", + "n_rows": 1382, + "n_cols": 7 +} \ No newline at end of file diff --git a/hyperparameter/c2/tabpfgen/tabpfgen-c2-20260505_025826/train_20260505_025826.log b/hyperparameter/c2/tabpfgen/tabpfgen-c2-20260505_025826/train_20260505_025826.log new file mode 100644 index 0000000000000000000000000000000000000000..d69b2eb3373cf63bead7d239e8b70d1fe4140ede --- /dev/null +++ b/hyperparameter/c2/tabpfgen/tabpfgen-c2-20260505_025826/train_20260505_025826.log @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:a028185dfc74f2ea36397ef2db6c996b532a53ac12d317c0881382d013164fd3 +size 595 diff --git a/hyperparameter/c2/tabpfgen/tabpfgen-c2-20260505_025915/_tabpfgen_generate.py b/hyperparameter/c2/tabpfgen/tabpfgen-c2-20260505_025915/_tabpfgen_generate.py new file mode 100644 index 0000000000000000000000000000000000000000..8748ba0e6815090d562de114475a5089e7fb0c03 --- /dev/null +++ b/hyperparameter/c2/tabpfgen/tabpfgen-c2-20260505_025915/_tabpfgen_generate.py @@ -0,0 +1,122 @@ +import os +import numpy as np +import pandas as pd +import json +from tabpfgen import TabPFGen + +df = pd.read_csv("/work/output-Benchmark-trainonly-v1/c2/tabpfgen/tabpfgen-c2-20260505_025915/staged/public/train.csv") +target_col = "class" + +target_missing = df[target_col].isna() +if target_missing.any(): + dropped = int(target_missing.sum()) + df = df.loc[~target_missing].copy() + print( + f"[TabPFGen] Dropped {dropped} rows with missing target '{target_col}'" + ) +if df.empty: + raise ValueError( + f"[TabPFGen] No rows remain after dropping missing target '{target_col}'" + ) + +feature_cols = [c for c in df.columns if c != target_col] + +cat_encodings = {} +for col in feature_cols: + if df[col].dtype == object or str(df[col].dtype) == 'category': + cats = sorted(df[col].dropna().unique().tolist(), key=str) + cat_map = {v: i for i, v in enumerate(cats)} + df[col] = df[col].map(cat_map).astype(float) + cat_encodings[col] = cats + print(f"[TabPFGen] Label-encoded '{col}' ({len(cats)} categories)") + +target_cats = None +if df[target_col].dtype == object or str(df[target_col].dtype) == 'category': + cats = sorted(df[target_col].dropna().unique().tolist(), key=str) + t_map = {v: i for i, v in enumerate(cats)} + df[target_col] = df[target_col].map(t_map).astype(float) + target_cats = cats + print(f"[TabPFGen] Label-encoded target '{target_col}' ({len(cats)} categories)") + +X = df[feature_cols].values.astype(np.float32) +y = df[target_col].values +fit_rows_cap = max(1, int(os.environ.get("TABPFGEN_FIT_MAX_ROWS", "50000"))) +if len(X) > fit_rows_cap: + rng = np.random.default_rng(42) + idx = np.sort(rng.choice(len(X), size=fit_rows_cap, replace=False)) + X = X[idx] + y = y[idx] + print(f"[TabPFGen] Downsampled fit rows -> {len(X)} (cap={fit_rows_cap})") +target_n = int(1382) + +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 + +chunk_rows = max(1, int(os.environ.get("TABPFGEN_GEN_CHUNK_ROWS", "256"))) +device = (os.environ.get("TABPFGEN_DEVICE") or "auto").strip() or "auto" + +# TabPFGen v0.1.x API:仅支持 n_sgld_steps / sgld_* / device。 +# (旧版脚本中的 energy_*_chunk 与上游 TabPFGen 不一致,会导致 TypeError。) +gen = TabPFGen( + n_sgld_steps=1000, + sgld_step_size=0.01, + sgld_noise_scale=0.01, + device=device, +) + +print(f"[TabPFGen] Generating {target_n} rows via generate_classification (chunk_rows={chunk_rows}, device={device})") +x_parts = [] +y_parts = [] +remaining = target_n +while remaining > 0: + take = min(chunk_rows, remaining) + X_part, y_part = gen.generate_classification(X, y, n_samples=take) + x_parts.append(np.asarray(X_part)) + y_parts.append(np.asarray(y_part)) + remaining -= take + print(f"[TabPFGen] chunk done: take={take}, remaining={remaining}") + +X_syn = np.concatenate(x_parts, axis=0) +y_syn = np.concatenate(y_parts, axis=0) + +syn_df = pd.DataFrame(X_syn, columns=feature_cols) +syn_df[target_col] = y_syn + +for col, cats in cat_encodings.items(): + codes = np.round(syn_df[col].values).astype(int) + codes = np.clip(codes, 0, len(cats) - 1) + syn_df[col] = [cats[c] for c in codes] + +if target_cats is not None: + codes = np.round(syn_df[target_col].values).astype(int) + codes = np.clip(codes, 0, len(target_cats) - 1) + syn_df[target_col] = [target_cats[c] for c in codes] + +if len(syn_df) > target_n: + print(f"[TabPFGen] Trimming rows: {len(syn_df)} -> {target_n}") + syn_df = syn_df.iloc[:target_n].copy() +elif len(syn_df) < target_n: + deficit = target_n - len(syn_df) + print(f"[TabPFGen] Padding rows: {len(syn_df)} -> {target_n} (deficit={deficit})") + if len(syn_df) > 0: + extra = syn_df.sample(n=deficit, replace=True, random_state=42) + syn_df = pd.concat( + [syn_df.reset_index(drop=True), extra.reset_index(drop=True)], + ignore_index=True, + ) + else: + syn_df = df[feature_cols + [target_col]].sample( + n=target_n, replace=True, random_state=42 + ).reset_index(drop=True) + +syn_df = syn_df[list(df.columns)] +if len(syn_df) != target_n: + raise RuntimeError( + f"[TabPFGen] Row alignment failed: got {len(syn_df)}, expected {target_n}" + ) +syn_df.to_csv("/work/output-Benchmark-trainonly-v1/c2/tabpfgen/tabpfgen-c2-20260505_025915/tabpfgen-c2-1382-20260505_025915.csv", index=False) +print(f"[TabPFGen] Saved {len(syn_df)} rows -> /work/output-Benchmark-trainonly-v1/c2/tabpfgen/tabpfgen-c2-20260505_025915/tabpfgen-c2-1382-20260505_025915.csv") diff --git a/hyperparameter/c2/tabpfgen/tabpfgen-c2-20260505_025915/gen_20260505_025915.log b/hyperparameter/c2/tabpfgen/tabpfgen-c2-20260505_025915/gen_20260505_025915.log new file mode 100644 index 0000000000000000000000000000000000000000..55f78faaa6b375bc97ecceb1697587199adca01b --- /dev/null +++ b/hyperparameter/c2/tabpfgen/tabpfgen-c2-20260505_025915/gen_20260505_025915.log @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:f10d6172925223664b5cfe31493d3399422ab369b1702feb3f77793633057509 +size 3088 diff --git a/hyperparameter/c2/tabpfgen/tabpfgen-c2-20260505_025915/input_snapshot.json b/hyperparameter/c2/tabpfgen/tabpfgen-c2-20260505_025915/input_snapshot.json new file mode 100644 index 0000000000000000000000000000000000000000..0dfc898784526759fbfe4fcdd1aa60dc4d52829f --- /dev/null +++ b/hyperparameter/c2/tabpfgen/tabpfgen-c2-20260505_025915/input_snapshot.json @@ -0,0 +1,36 @@ +{ + "dataset_id": "c2", + "model": "tabpfgen", + "inputs": { + "train_csv": { + "path": "/data/jialinzhang/SynthesizePipeline-server/DatasetNew/c2/c2-train.csv", + "exists": true, + "size": 42948, + "sha256": "17bc560fa96bd00fb3b526e1e65bc91210b701d0d0a4e8bb9b4c5196cab56def" + }, + "val_csv": { + "path": "/data/jialinzhang/SynthesizePipeline-server/DatasetNew/c2/c2-val.csv", + "exists": true, + "size": 5349, + "sha256": "61e565eca62e65a7dccd9d51039a3170413379e10fc494e25870e7c4294863c9" + }, + "test_csv": { + "path": "/data/jialinzhang/SynthesizePipeline-server/DatasetNew/c2/c2-test.csv", + "exists": true, + "size": 5448, + "sha256": "cbcbb062a1faf5fa44b66c80532baa229e05b94fc42137269761e6c6d84af20a" + }, + "profile_json": { + "path": "/data/jialinzhang/SynthesizePipeline-server/DatasetNew/artifacts/data_core/tabular/c2/c2-dataset_profile.json", + "exists": true, + "size": 3240, + "sha256": "526b7163b2076c93c0bf4638438081ee8a6907065d5b608faa40d1a3dbc2a27b" + }, + "contract_json": { + "path": "/data/jialinzhang/SynthesizePipeline-server/DatasetNew/artifacts/data_core/tabular/c2/c2-dataset_contract_v1.json", + "exists": true, + "size": 3731, + "sha256": "fb595a876054c2ee9b4e10cfe83a5691588de1d25466cbb9d473c18ad3604009" + } + } +} \ No newline at end of file diff --git a/hyperparameter/c2/tabpfgen/tabpfgen-c2-20260505_025915/public_gate/normalized_schema_snapshot.json b/hyperparameter/c2/tabpfgen/tabpfgen-c2-20260505_025915/public_gate/normalized_schema_snapshot.json new file mode 100644 index 0000000000000000000000000000000000000000..689b1d00d96508e44ba40e58dc4560e19afc2b3b --- /dev/null +++ b/hyperparameter/c2/tabpfgen/tabpfgen-c2-20260505_025915/public_gate/normalized_schema_snapshot.json @@ -0,0 +1,144 @@ +{ + "dataset_id": "c2", + "target_column": "class", + "task_type": "classification", + "columns": [ + { + "name": "buying", + "role": "feature", + "semantic_type": "categorical", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 4, + "unique_ratio": 0.002894, + "example_values": [ + "vhigh", + "med", + "high", + "low" + ] + } + }, + { + "name": "maint", + "role": "feature", + "semantic_type": "categorical", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 4, + "unique_ratio": 0.002894, + "example_values": [ + "vhigh", + "low", + "med", + "high" + ] + } + }, + { + "name": "doors", + "role": "feature", + "semantic_type": "categorical", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 4, + "unique_ratio": 0.002894, + "example_values": [ + "2", + "5more", + "3", + "4" + ] + } + }, + { + "name": "persons", + "role": "feature", + "semantic_type": "categorical", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 3, + "unique_ratio": 0.002171, + "example_values": [ + "2", + "4", + "more" + ] + } + }, + { + "name": "lug_boot", + "role": "feature", + "semantic_type": "categorical", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 3, + "unique_ratio": 0.002171, + "example_values": [ + "small", + "big", + "med" + ] + } + }, + { + "name": "safety", + "role": "feature", + "semantic_type": "categorical", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 3, + "unique_ratio": 0.002171, + "example_values": [ + "low", + "high", + "med" + ] + } + }, + { + "name": "class", + "role": "target", + "semantic_type": "categorical", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 4, + "unique_ratio": 0.002894, + "example_values": [ + "unacc", + "good", + "acc", + "vgood" + ] + } + } + ] +} \ No newline at end of file diff --git a/hyperparameter/c2/tabpfgen/tabpfgen-c2-20260505_025915/public_gate/public_gate_report.json b/hyperparameter/c2/tabpfgen/tabpfgen-c2-20260505_025915/public_gate/public_gate_report.json new file mode 100644 index 0000000000000000000000000000000000000000..2e4cdcb2a4e28e40d59b17a83e773f622b7636a5 --- /dev/null +++ b/hyperparameter/c2/tabpfgen/tabpfgen-c2-20260505_025915/public_gate/public_gate_report.json @@ -0,0 +1,37 @@ +{ + "dataset_id": "c2", + "status": "pass", + "checks": [ + { + "check_id": "PG001_csv_parse_ok", + "status": "pass" + }, + { + "check_id": "PG002_split_header_consistent", + "status": "pass" + }, + { + "check_id": "PG003_profile_header_match", + "status": "pass" + }, + { + "check_id": "PG004_missing_token_normalized", + "status": "pass" + }, + { + "check_id": "PG005_semantic_type_validated", + "status": "pass" + }, + { + "check_id": "PG006_target_defined_and_valid", + "status": "pass" + } + ], + "target_column": "class", + "task_type": "classification", + "input_splits": { + "train": "/data/jialinzhang/SynthesizePipeline-server/DatasetNew/c2/c2-train.csv", + "val": "/data/jialinzhang/SynthesizePipeline-server/DatasetNew/c2/c2-val.csv", + "test": "/data/jialinzhang/SynthesizePipeline-server/DatasetNew/c2/c2-test.csv" + } +} \ No newline at end of file diff --git a/hyperparameter/c2/tabpfgen/tabpfgen-c2-20260505_025915/public_gate/staged_input_manifest.json b/hyperparameter/c2/tabpfgen/tabpfgen-c2-20260505_025915/public_gate/staged_input_manifest.json new file mode 100644 index 0000000000000000000000000000000000000000..c101f5a7d2abddbc6ba7f06d40a052609e9110a8 --- /dev/null +++ b/hyperparameter/c2/tabpfgen/tabpfgen-c2-20260505_025915/public_gate/staged_input_manifest.json @@ -0,0 +1,149 @@ +{ + "dataset_id": "c2", + "target_column": "class", + "task_type": "classification", + "train_csv": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/c2/tabpfgen/tabpfgen-c2-20260505_025915/staged/public/train.csv", + "val_csv": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/c2/tabpfgen/tabpfgen-c2-20260505_025915/staged/public/val.csv", + "test_csv": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/c2/tabpfgen/tabpfgen-c2-20260505_025915/staged/public/test.csv", + "features_json": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/c2/tabpfgen/tabpfgen-c2-20260505_025915/staged/public/staged_features.json", + "public_gate_report": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/c2/tabpfgen/tabpfgen-c2-20260505_025915/public_gate/public_gate_report.json", + "column_schema": [ + { + "name": "buying", + "role": "feature", + "semantic_type": "categorical", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 4, + "unique_ratio": 0.002894, + "example_values": [ + "vhigh", + "med", + "high", + "low" + ] + } + }, + { + "name": "maint", + "role": "feature", + "semantic_type": "categorical", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 4, + "unique_ratio": 0.002894, + "example_values": [ + "vhigh", + "low", + "med", + "high" + ] + } + }, + { + "name": "doors", + "role": "feature", + "semantic_type": "categorical", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 4, + "unique_ratio": 0.002894, + "example_values": [ + "2", + "5more", + "3", + "4" + ] + } + }, + { + "name": "persons", + "role": "feature", + "semantic_type": "categorical", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 3, + "unique_ratio": 0.002171, + "example_values": [ + "2", + "4", + "more" + ] + } + }, + { + "name": "lug_boot", + "role": "feature", + "semantic_type": "categorical", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 3, + "unique_ratio": 0.002171, + "example_values": [ + "small", + "big", + "med" + ] + } + }, + { + "name": "safety", + "role": "feature", + "semantic_type": "categorical", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 3, + "unique_ratio": 0.002171, + "example_values": [ + "low", + "high", + "med" + ] + } + }, + { + "name": "class", + "role": "target", + "semantic_type": "categorical", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 4, + "unique_ratio": 0.002894, + "example_values": [ + "unacc", + "good", + "acc", + "vgood" + ] + } + } + ] +} \ No newline at end of file diff --git a/hyperparameter/c2/tabpfgen/tabpfgen-c2-20260505_025915/run_config.json b/hyperparameter/c2/tabpfgen/tabpfgen-c2-20260505_025915/run_config.json new file mode 100644 index 0000000000000000000000000000000000000000..431b88724c19df1b92bd7da56696d2056a7b8aca --- /dev/null +++ b/hyperparameter/c2/tabpfgen/tabpfgen-c2-20260505_025915/run_config.json @@ -0,0 +1,43 @@ +{ + "schema_version": 1, + "recorded_at": "2026-05-05T02:59:15", + "dataset_id": "c2", + "model": "tabpfgen", + "work_dir": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/c2/tabpfgen/tabpfgen-c2-20260505_025915", + "dataset_source_requested": "new", + "dataset_source_resolved": "new", + "cli_args": { + "model": "tabpfgen", + "dataset": "c2", + "dataset_source": "new", + "train": true, + "generate": true, + "num_rows": 0, + "epochs": null, + "output_dir": null, + "model_dir": null, + "work_dir": null, + "resume": false, + "no_stats": false + }, + "resolved": { + "num_rows": 1382, + "model_path": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/c2/tabpfgen/tabpfgen-c2-20260505_025915", + "output_csv": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/c2/tabpfgen/tabpfgen-c2-20260505_025915/tabpfgen-c2-1382-20260505_025915.csv" + }, + "input_artifacts": { + "public_gate_report": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/c2/tabpfgen/tabpfgen-c2-20260505_025915/public_gate/public_gate_report.json", + "public_manifest": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/c2/tabpfgen/tabpfgen-c2-20260505_025915/public_gate/staged_input_manifest.json", + "model_manifest": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/c2/tabpfgen/tabpfgen-c2-20260505_025915/staged/tabpfgen/model_input_manifest.json", + "train_csv": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/c2/tabpfgen/tabpfgen-c2-20260505_025915/staged/public/train.csv", + "features_json": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/c2/tabpfgen/tabpfgen-c2-20260505_025915/staged/public/staged_features.json", + "target_column": "class", + "task_type": "classification" + }, + "env_overrides": { + "BENCHMARK_TABPFGEN_GPUS": "device=3", + "TABPFGEN_DEVICE": "cuda", + "TABPFGEN_FIT_MAX_ROWS": "3072", + "TABPFGEN_GEN_CHUNK_ROWS": "128" + } +} \ No newline at end of file diff --git a/hyperparameter/c2/tabpfgen/tabpfgen-c2-20260505_025915/runtime_result.json b/hyperparameter/c2/tabpfgen/tabpfgen-c2-20260505_025915/runtime_result.json new file mode 100644 index 0000000000000000000000000000000000000000..374dd01df1f5da19d957c871844911c9d614d8c3 --- /dev/null +++ b/hyperparameter/c2/tabpfgen/tabpfgen-c2-20260505_025915/runtime_result.json @@ -0,0 +1,27 @@ +{ + "dataset_id": "c2", + "model": "tabpfgen", + "run_id": "tabpfgen-c2-20260505_025915", + "public_gate_status": "pass", + "adapter_ready_status": "pass", + "train_status": "success", + "generate_status": "success", + "reason_code": null, + "reason_detail": null, + "artifacts": { + "synthetic_csv": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/c2/tabpfgen/tabpfgen-c2-20260505_025915/tabpfgen-c2-1382-20260505_025915.csv", + "model_path": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/c2/tabpfgen/tabpfgen-c2-20260505_025915" + }, + "timings": { + "train": { + "started_at": "2026-05-05T02:59:15", + "ended_at": "2026-05-05T02:59:15", + "duration_sec": 0.006 + }, + "generate": { + "started_at": "2026-05-05T02:59:15", + "ended_at": "2026-05-05T02:59:50", + "duration_sec": 34.766 + } + } +} \ No newline at end of file diff --git a/hyperparameter/c2/tabpfgen/tabpfgen-c2-20260505_025915/staged/public/staged_features.json b/hyperparameter/c2/tabpfgen/tabpfgen-c2-20260505_025915/staged/public/staged_features.json new file mode 100644 index 0000000000000000000000000000000000000000..61783861dd5de501592f76acb0469cf3f3b2622a --- /dev/null +++ b/hyperparameter/c2/tabpfgen/tabpfgen-c2-20260505_025915/staged/public/staged_features.json @@ -0,0 +1,37 @@ +[ + { + "feature_name": "buying", + "data_type": "categorical", + "is_target": false + }, + { + "feature_name": "maint", + "data_type": "categorical", + "is_target": false + }, + { + "feature_name": "doors", + "data_type": "categorical", + "is_target": false + }, + { + "feature_name": "persons", + "data_type": "categorical", + "is_target": false + }, + { + "feature_name": "lug_boot", + "data_type": "categorical", + "is_target": false + }, + { + "feature_name": "safety", + "data_type": "categorical", + "is_target": false + }, + { + "feature_name": "class", + "data_type": "categorical", + "is_target": true + } +] \ No newline at end of file diff --git a/hyperparameter/c2/tabpfgen/tabpfgen-c2-20260505_025915/staged/public/test.csv b/hyperparameter/c2/tabpfgen/tabpfgen-c2-20260505_025915/staged/public/test.csv new file mode 100644 index 0000000000000000000000000000000000000000..392a0d7189a34d8f13ecf20a99d64b03230d517c --- /dev/null +++ b/hyperparameter/c2/tabpfgen/tabpfgen-c2-20260505_025915/staged/public/test.csv @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:b48114a7d0bc5bd9a07920f903c8d4aba8bf98bf2a66a050da03588b0245ca73 +size 5273 diff --git a/hyperparameter/c2/tabpfgen/tabpfgen-c2-20260505_025915/staged/public/train.csv b/hyperparameter/c2/tabpfgen/tabpfgen-c2-20260505_025915/staged/public/train.csv new file mode 100644 index 0000000000000000000000000000000000000000..da4f4d55134eebc0e51157d0d467536371db1484 --- /dev/null +++ b/hyperparameter/c2/tabpfgen/tabpfgen-c2-20260505_025915/staged/public/train.csv @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:4aed00c2c2b3f88a55a7ebff31b2e1b5e0e32fb0a7267e0b9d2779cd23e434dd +size 41565 diff --git a/hyperparameter/c2/tabpfgen/tabpfgen-c2-20260505_025915/staged/public/val.csv b/hyperparameter/c2/tabpfgen/tabpfgen-c2-20260505_025915/staged/public/val.csv new file mode 100644 index 0000000000000000000000000000000000000000..af8caf7ee42524188534a3daf32996dc491952d9 --- /dev/null +++ b/hyperparameter/c2/tabpfgen/tabpfgen-c2-20260505_025915/staged/public/val.csv @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:26e90c1170a57a14c05832ac88027722b1f3848f9662c7c09ef7c93dcba4cc01 +size 5176 diff --git a/hyperparameter/c2/tabpfgen/tabpfgen-c2-20260505_025915/staged/tabpfgen/adapter_report.json b/hyperparameter/c2/tabpfgen/tabpfgen-c2-20260505_025915/staged/tabpfgen/adapter_report.json new file mode 100644 index 0000000000000000000000000000000000000000..b861fab7af738cb6d3aac6641a1438664ba30847 --- /dev/null +++ b/hyperparameter/c2/tabpfgen/tabpfgen-c2-20260505_025915/staged/tabpfgen/adapter_report.json @@ -0,0 +1,7 @@ +{ + "adapter_ready_status": "pass", + "adapter_fail_reason_code": null, + "adapter_fail_detail": null, + "adapter_transforms_applied": [], + "model_input_manifest": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/c2/tabpfgen/tabpfgen-c2-20260505_025915/staged/tabpfgen/model_input_manifest.json" +} \ No newline at end of file diff --git a/hyperparameter/c2/tabpfgen/tabpfgen-c2-20260505_025915/staged/tabpfgen/adapter_transforms_applied.json b/hyperparameter/c2/tabpfgen/tabpfgen-c2-20260505_025915/staged/tabpfgen/adapter_transforms_applied.json new file mode 100644 index 0000000000000000000000000000000000000000..0637a088a01e8ddab3bf3fa98dbe804cbde1a0dc --- /dev/null +++ b/hyperparameter/c2/tabpfgen/tabpfgen-c2-20260505_025915/staged/tabpfgen/adapter_transforms_applied.json @@ -0,0 +1 @@ +[] \ No newline at end of file diff --git a/hyperparameter/c2/tabpfgen/tabpfgen-c2-20260505_025915/staged/tabpfgen/model_input_manifest.json b/hyperparameter/c2/tabpfgen/tabpfgen-c2-20260505_025915/staged/tabpfgen/model_input_manifest.json new file mode 100644 index 0000000000000000000000000000000000000000..0b20dea04923e361348146a590a821b8816fd2ee --- /dev/null +++ b/hyperparameter/c2/tabpfgen/tabpfgen-c2-20260505_025915/staged/tabpfgen/model_input_manifest.json @@ -0,0 +1,151 @@ +{ + "dataset_id": "c2", + "model": "tabpfgen", + "target_column": "class", + "task_type": "classification", + "column_schema": [ + { + "name": "buying", + "role": "feature", + "semantic_type": "categorical", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 4, + "unique_ratio": 0.002894, + "example_values": [ + "vhigh", + "med", + "high", + "low" + ] + } + }, + { + "name": "maint", + "role": "feature", + "semantic_type": "categorical", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 4, + "unique_ratio": 0.002894, + "example_values": [ + "vhigh", + "low", + "med", + "high" + ] + } + }, + { + "name": "doors", + "role": "feature", + "semantic_type": "categorical", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 4, + "unique_ratio": 0.002894, + "example_values": [ + "2", + "5more", + "3", + "4" + ] + } + }, + { + "name": "persons", + "role": "feature", + "semantic_type": "categorical", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 3, + "unique_ratio": 0.002171, + "example_values": [ + "2", + "4", + "more" + ] + } + }, + { + "name": "lug_boot", + "role": "feature", + "semantic_type": "categorical", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 3, + "unique_ratio": 0.002171, + "example_values": [ + "small", + "big", + "med" + ] + } + }, + { + "name": "safety", + "role": "feature", + "semantic_type": "categorical", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 3, + "unique_ratio": 0.002171, + "example_values": [ + "low", + "high", + "med" + ] + } + }, + { + "name": "class", + "role": "target", + "semantic_type": "categorical", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 4, + "unique_ratio": 0.002894, + "example_values": [ + "unacc", + "good", + "acc", + "vgood" + ] + } + } + ], + "public_manifest": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/c2/tabpfgen/tabpfgen-c2-20260505_025915/public_gate/staged_input_manifest.json", + "train_csv": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/c2/tabpfgen/tabpfgen-c2-20260505_025915/staged/public/train.csv", + "val_csv": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/c2/tabpfgen/tabpfgen-c2-20260505_025915/staged/public/val.csv", + "test_csv": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/c2/tabpfgen/tabpfgen-c2-20260505_025915/staged/public/test.csv", + "features_json": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/c2/tabpfgen/tabpfgen-c2-20260505_025915/staged/public/staged_features.json", + "public_gate_report": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/c2/tabpfgen/tabpfgen-c2-20260505_025915/public_gate/public_gate_report.json" +} \ No newline at end of file diff --git a/hyperparameter/c2/tabpfgen/tabpfgen-c2-20260505_025915/tabpfgen-c2-1382-20260505_025915.csv b/hyperparameter/c2/tabpfgen/tabpfgen-c2-20260505_025915/tabpfgen-c2-1382-20260505_025915.csv new file mode 100644 index 0000000000000000000000000000000000000000..598f699a12a7b7097a1ca31754175ee4423deda0 --- /dev/null +++ b/hyperparameter/c2/tabpfgen/tabpfgen-c2-20260505_025915/tabpfgen-c2-1382-20260505_025915.csv @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:504c5483efa154e46a03fc464f08465a925c9a3661cf315679c923e5e51beb4a +size 41630 diff --git a/hyperparameter/c2/tabpfgen/tabpfgen-c2-20260505_025915/tabpfgen_meta.json b/hyperparameter/c2/tabpfgen/tabpfgen-c2-20260505_025915/tabpfgen_meta.json new file mode 100644 index 0000000000000000000000000000000000000000..2cda3e3af683fee63e65a9a4e73d2225bed7f561 --- /dev/null +++ b/hyperparameter/c2/tabpfgen/tabpfgen-c2-20260505_025915/tabpfgen_meta.json @@ -0,0 +1,9 @@ +{ + "csv_path": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/c2/tabpfgen/tabpfgen-c2-20260505_025915/staged/public/train.csv", + "json_path": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/c2/tabpfgen/tabpfgen-c2-20260505_025915/staged/public/staged_features.json", + "target_col": "class", + "is_classification": true, + "task_type": "classification", + "n_rows": 1382, + "n_cols": 7 +} \ No newline at end of file diff --git a/hyperparameter/c2/tabpfgen/tabpfgen-c2-20260505_025915/train_20260505_025915.log b/hyperparameter/c2/tabpfgen/tabpfgen-c2-20260505_025915/train_20260505_025915.log new file mode 100644 index 0000000000000000000000000000000000000000..c4ad7c4b1518df6b6af9ee8bf474119b24399996 --- /dev/null +++ b/hyperparameter/c2/tabpfgen/tabpfgen-c2-20260505_025915/train_20260505_025915.log @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:aa2ea7b07a00948b6cef0740167b0b4d462754367e4bbd76bcd259eb1aaa8bd6 +size 595 diff --git a/hyperparameter/c2/tabpfgen/tabpfgen-c2-20260505_030003/_tabpfgen_generate.py b/hyperparameter/c2/tabpfgen/tabpfgen-c2-20260505_030003/_tabpfgen_generate.py new file mode 100644 index 0000000000000000000000000000000000000000..b9bedcbf68105de818d2bb7e816df1cae41d1b65 --- /dev/null +++ b/hyperparameter/c2/tabpfgen/tabpfgen-c2-20260505_030003/_tabpfgen_generate.py @@ -0,0 +1,122 @@ +import os +import numpy as np +import pandas as pd +import json +from tabpfgen import TabPFGen + +df = pd.read_csv("/work/output-Benchmark-trainonly-v1/c2/tabpfgen/tabpfgen-c2-20260505_030003/staged/public/train.csv") +target_col = "class" + +target_missing = df[target_col].isna() +if target_missing.any(): + dropped = int(target_missing.sum()) + df = df.loc[~target_missing].copy() + print( + f"[TabPFGen] Dropped {dropped} rows with missing target '{target_col}'" + ) +if df.empty: + raise ValueError( + f"[TabPFGen] No rows remain after dropping missing target '{target_col}'" + ) + +feature_cols = [c for c in df.columns if c != target_col] + +cat_encodings = {} +for col in feature_cols: + if df[col].dtype == object or str(df[col].dtype) == 'category': + cats = sorted(df[col].dropna().unique().tolist(), key=str) + cat_map = {v: i for i, v in enumerate(cats)} + df[col] = df[col].map(cat_map).astype(float) + cat_encodings[col] = cats + print(f"[TabPFGen] Label-encoded '{col}' ({len(cats)} categories)") + +target_cats = None +if df[target_col].dtype == object or str(df[target_col].dtype) == 'category': + cats = sorted(df[target_col].dropna().unique().tolist(), key=str) + t_map = {v: i for i, v in enumerate(cats)} + df[target_col] = df[target_col].map(t_map).astype(float) + target_cats = cats + print(f"[TabPFGen] Label-encoded target '{target_col}' ({len(cats)} categories)") + +X = df[feature_cols].values.astype(np.float32) +y = df[target_col].values +fit_rows_cap = max(1, int(os.environ.get("TABPFGEN_FIT_MAX_ROWS", "50000"))) +if len(X) > fit_rows_cap: + rng = np.random.default_rng(42) + idx = np.sort(rng.choice(len(X), size=fit_rows_cap, replace=False)) + X = X[idx] + y = y[idx] + print(f"[TabPFGen] Downsampled fit rows -> {len(X)} (cap={fit_rows_cap})") +target_n = int(1382) + +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 + +chunk_rows = max(1, int(os.environ.get("TABPFGEN_GEN_CHUNK_ROWS", "256"))) +device = (os.environ.get("TABPFGEN_DEVICE") or "auto").strip() or "auto" + +# TabPFGen v0.1.x API:仅支持 n_sgld_steps / sgld_* / device。 +# (旧版脚本中的 energy_*_chunk 与上游 TabPFGen 不一致,会导致 TypeError。) +gen = TabPFGen( + n_sgld_steps=1000, + sgld_step_size=0.01, + sgld_noise_scale=0.01, + device=device, +) + +print(f"[TabPFGen] Generating {target_n} rows via generate_classification (chunk_rows={chunk_rows}, device={device})") +x_parts = [] +y_parts = [] +remaining = target_n +while remaining > 0: + take = min(chunk_rows, remaining) + X_part, y_part = gen.generate_classification(X, y, n_samples=take) + x_parts.append(np.asarray(X_part)) + y_parts.append(np.asarray(y_part)) + remaining -= take + print(f"[TabPFGen] chunk done: take={take}, remaining={remaining}") + +X_syn = np.concatenate(x_parts, axis=0) +y_syn = np.concatenate(y_parts, axis=0) + +syn_df = pd.DataFrame(X_syn, columns=feature_cols) +syn_df[target_col] = y_syn + +for col, cats in cat_encodings.items(): + codes = np.round(syn_df[col].values).astype(int) + codes = np.clip(codes, 0, len(cats) - 1) + syn_df[col] = [cats[c] for c in codes] + +if target_cats is not None: + codes = np.round(syn_df[target_col].values).astype(int) + codes = np.clip(codes, 0, len(target_cats) - 1) + syn_df[target_col] = [target_cats[c] for c in codes] + +if len(syn_df) > target_n: + print(f"[TabPFGen] Trimming rows: {len(syn_df)} -> {target_n}") + syn_df = syn_df.iloc[:target_n].copy() +elif len(syn_df) < target_n: + deficit = target_n - len(syn_df) + print(f"[TabPFGen] Padding rows: {len(syn_df)} -> {target_n} (deficit={deficit})") + if len(syn_df) > 0: + extra = syn_df.sample(n=deficit, replace=True, random_state=42) + syn_df = pd.concat( + [syn_df.reset_index(drop=True), extra.reset_index(drop=True)], + ignore_index=True, + ) + else: + syn_df = df[feature_cols + [target_col]].sample( + n=target_n, replace=True, random_state=42 + ).reset_index(drop=True) + +syn_df = syn_df[list(df.columns)] +if len(syn_df) != target_n: + raise RuntimeError( + f"[TabPFGen] Row alignment failed: got {len(syn_df)}, expected {target_n}" + ) +syn_df.to_csv("/work/output-Benchmark-trainonly-v1/c2/tabpfgen/tabpfgen-c2-20260505_030003/tabpfgen-c2-1382-20260505_030003.csv", index=False) +print(f"[TabPFGen] Saved {len(syn_df)} rows -> /work/output-Benchmark-trainonly-v1/c2/tabpfgen/tabpfgen-c2-20260505_030003/tabpfgen-c2-1382-20260505_030003.csv") diff --git a/hyperparameter/c2/tabpfgen/tabpfgen-c2-20260505_030003/gen_20260505_030003.log b/hyperparameter/c2/tabpfgen/tabpfgen-c2-20260505_030003/gen_20260505_030003.log new file mode 100644 index 0000000000000000000000000000000000000000..a598f7f7e156669780d590f2cd39a97a1786c788 --- /dev/null +++ b/hyperparameter/c2/tabpfgen/tabpfgen-c2-20260505_030003/gen_20260505_030003.log @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:c89b6bed7c19b7b0a1370fc5740dccc0a448d2f0da2b81e17eccf9f13a9feb4c +size 2300 diff --git a/hyperparameter/c2/tabpfgen/tabpfgen-c2-20260505_030003/input_snapshot.json b/hyperparameter/c2/tabpfgen/tabpfgen-c2-20260505_030003/input_snapshot.json new file mode 100644 index 0000000000000000000000000000000000000000..0dfc898784526759fbfe4fcdd1aa60dc4d52829f --- /dev/null +++ b/hyperparameter/c2/tabpfgen/tabpfgen-c2-20260505_030003/input_snapshot.json @@ -0,0 +1,36 @@ +{ + "dataset_id": "c2", + "model": "tabpfgen", + "inputs": { + "train_csv": { + "path": "/data/jialinzhang/SynthesizePipeline-server/DatasetNew/c2/c2-train.csv", + "exists": true, + "size": 42948, + "sha256": "17bc560fa96bd00fb3b526e1e65bc91210b701d0d0a4e8bb9b4c5196cab56def" + }, + "val_csv": { + "path": "/data/jialinzhang/SynthesizePipeline-server/DatasetNew/c2/c2-val.csv", + "exists": true, + "size": 5349, + "sha256": "61e565eca62e65a7dccd9d51039a3170413379e10fc494e25870e7c4294863c9" + }, + "test_csv": { + "path": "/data/jialinzhang/SynthesizePipeline-server/DatasetNew/c2/c2-test.csv", + "exists": true, + "size": 5448, + "sha256": "cbcbb062a1faf5fa44b66c80532baa229e05b94fc42137269761e6c6d84af20a" + }, + "profile_json": { + "path": "/data/jialinzhang/SynthesizePipeline-server/DatasetNew/artifacts/data_core/tabular/c2/c2-dataset_profile.json", + "exists": true, + "size": 3240, + "sha256": "526b7163b2076c93c0bf4638438081ee8a6907065d5b608faa40d1a3dbc2a27b" + }, + "contract_json": { + "path": "/data/jialinzhang/SynthesizePipeline-server/DatasetNew/artifacts/data_core/tabular/c2/c2-dataset_contract_v1.json", + "exists": true, + "size": 3731, + "sha256": "fb595a876054c2ee9b4e10cfe83a5691588de1d25466cbb9d473c18ad3604009" + } + } +} \ No newline at end of file diff --git a/hyperparameter/c2/tabpfgen/tabpfgen-c2-20260505_030003/public_gate/normalized_schema_snapshot.json b/hyperparameter/c2/tabpfgen/tabpfgen-c2-20260505_030003/public_gate/normalized_schema_snapshot.json new file mode 100644 index 0000000000000000000000000000000000000000..689b1d00d96508e44ba40e58dc4560e19afc2b3b --- /dev/null +++ b/hyperparameter/c2/tabpfgen/tabpfgen-c2-20260505_030003/public_gate/normalized_schema_snapshot.json @@ -0,0 +1,144 @@ +{ + "dataset_id": "c2", + "target_column": "class", + "task_type": "classification", + "columns": [ + { + "name": "buying", + "role": "feature", + "semantic_type": "categorical", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 4, + "unique_ratio": 0.002894, + "example_values": [ + "vhigh", + "med", + "high", + "low" + ] + } + }, + { + "name": "maint", + "role": "feature", + "semantic_type": "categorical", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 4, + "unique_ratio": 0.002894, + "example_values": [ + "vhigh", + "low", + "med", + "high" + ] + } + }, + { + "name": "doors", + "role": "feature", + "semantic_type": "categorical", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 4, + "unique_ratio": 0.002894, + "example_values": [ + "2", + "5more", + "3", + "4" + ] + } + }, + { + "name": "persons", + "role": "feature", + "semantic_type": "categorical", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 3, + "unique_ratio": 0.002171, + "example_values": [ + "2", + "4", + "more" + ] + } + }, + { + "name": "lug_boot", + "role": "feature", + "semantic_type": "categorical", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 3, + "unique_ratio": 0.002171, + "example_values": [ + "small", + "big", + "med" + ] + } + }, + { + "name": "safety", + "role": "feature", + "semantic_type": "categorical", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 3, + "unique_ratio": 0.002171, + "example_values": [ + "low", + "high", + "med" + ] + } + }, + { + "name": "class", + "role": "target", + "semantic_type": "categorical", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 4, + "unique_ratio": 0.002894, + "example_values": [ + "unacc", + "good", + "acc", + "vgood" + ] + } + } + ] +} \ No newline at end of file diff --git a/hyperparameter/c2/tabpfgen/tabpfgen-c2-20260505_030003/public_gate/public_gate_report.json b/hyperparameter/c2/tabpfgen/tabpfgen-c2-20260505_030003/public_gate/public_gate_report.json new file mode 100644 index 0000000000000000000000000000000000000000..2e4cdcb2a4e28e40d59b17a83e773f622b7636a5 --- /dev/null +++ b/hyperparameter/c2/tabpfgen/tabpfgen-c2-20260505_030003/public_gate/public_gate_report.json @@ -0,0 +1,37 @@ +{ + "dataset_id": "c2", + "status": "pass", + "checks": [ + { + "check_id": "PG001_csv_parse_ok", + "status": "pass" + }, + { + "check_id": "PG002_split_header_consistent", + "status": "pass" + }, + { + "check_id": "PG003_profile_header_match", + "status": "pass" + }, + { + "check_id": "PG004_missing_token_normalized", + "status": "pass" + }, + { + "check_id": "PG005_semantic_type_validated", + "status": "pass" + }, + { + "check_id": "PG006_target_defined_and_valid", + "status": "pass" + } + ], + "target_column": "class", + "task_type": "classification", + "input_splits": { + "train": "/data/jialinzhang/SynthesizePipeline-server/DatasetNew/c2/c2-train.csv", + "val": "/data/jialinzhang/SynthesizePipeline-server/DatasetNew/c2/c2-val.csv", + "test": "/data/jialinzhang/SynthesizePipeline-server/DatasetNew/c2/c2-test.csv" + } +} \ No newline at end of file diff --git a/hyperparameter/c2/tabpfgen/tabpfgen-c2-20260505_030003/public_gate/staged_input_manifest.json b/hyperparameter/c2/tabpfgen/tabpfgen-c2-20260505_030003/public_gate/staged_input_manifest.json new file mode 100644 index 0000000000000000000000000000000000000000..2f2475bedb81e03b89e105b84a2979354486384a --- /dev/null +++ b/hyperparameter/c2/tabpfgen/tabpfgen-c2-20260505_030003/public_gate/staged_input_manifest.json @@ -0,0 +1,149 @@ +{ + "dataset_id": "c2", + "target_column": "class", + "task_type": "classification", + "train_csv": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/c2/tabpfgen/tabpfgen-c2-20260505_030003/staged/public/train.csv", + "val_csv": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/c2/tabpfgen/tabpfgen-c2-20260505_030003/staged/public/val.csv", + "test_csv": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/c2/tabpfgen/tabpfgen-c2-20260505_030003/staged/public/test.csv", + "features_json": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/c2/tabpfgen/tabpfgen-c2-20260505_030003/staged/public/staged_features.json", + "public_gate_report": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/c2/tabpfgen/tabpfgen-c2-20260505_030003/public_gate/public_gate_report.json", + "column_schema": [ + { + "name": "buying", + "role": "feature", + "semantic_type": "categorical", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 4, + "unique_ratio": 0.002894, + "example_values": [ + "vhigh", + "med", + "high", + "low" + ] + } + }, + { + "name": "maint", + "role": "feature", + "semantic_type": "categorical", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 4, + "unique_ratio": 0.002894, + "example_values": [ + "vhigh", + "low", + "med", + "high" + ] + } + }, + { + "name": "doors", + "role": "feature", + "semantic_type": "categorical", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 4, + "unique_ratio": 0.002894, + "example_values": [ + "2", + "5more", + "3", + "4" + ] + } + }, + { + "name": "persons", + "role": "feature", + "semantic_type": "categorical", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 3, + "unique_ratio": 0.002171, + "example_values": [ + "2", + "4", + "more" + ] + } + }, + { + "name": "lug_boot", + "role": "feature", + "semantic_type": "categorical", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 3, + "unique_ratio": 0.002171, + "example_values": [ + "small", + "big", + "med" + ] + } + }, + { + "name": "safety", + "role": "feature", + "semantic_type": "categorical", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 3, + "unique_ratio": 0.002171, + "example_values": [ + "low", + "high", + "med" + ] + } + }, + { + "name": "class", + "role": "target", + "semantic_type": "categorical", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 4, + "unique_ratio": 0.002894, + "example_values": [ + "unacc", + "good", + "acc", + "vgood" + ] + } + } + ] +} \ No newline at end of file diff --git a/hyperparameter/c2/tabpfgen/tabpfgen-c2-20260505_030003/run_config.json b/hyperparameter/c2/tabpfgen/tabpfgen-c2-20260505_030003/run_config.json new file mode 100644 index 0000000000000000000000000000000000000000..ab78c4c3eef088098d795641f8a1780bdadb9ba2 --- /dev/null +++ b/hyperparameter/c2/tabpfgen/tabpfgen-c2-20260505_030003/run_config.json @@ -0,0 +1,43 @@ +{ + "schema_version": 1, + "recorded_at": "2026-05-05T03:00:03", + "dataset_id": "c2", + "model": "tabpfgen", + "work_dir": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/c2/tabpfgen/tabpfgen-c2-20260505_030003", + "dataset_source_requested": "new", + "dataset_source_resolved": "new", + "cli_args": { + "model": "tabpfgen", + "dataset": "c2", + "dataset_source": "new", + "train": true, + "generate": true, + "num_rows": 0, + "epochs": null, + "output_dir": null, + "model_dir": null, + "work_dir": null, + "resume": false, + "no_stats": false + }, + "resolved": { + "num_rows": 1382, + "model_path": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/c2/tabpfgen/tabpfgen-c2-20260505_030003", + "output_csv": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/c2/tabpfgen/tabpfgen-c2-20260505_030003/tabpfgen-c2-1382-20260505_030003.csv" + }, + "input_artifacts": { + "public_gate_report": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/c2/tabpfgen/tabpfgen-c2-20260505_030003/public_gate/public_gate_report.json", + "public_manifest": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/c2/tabpfgen/tabpfgen-c2-20260505_030003/public_gate/staged_input_manifest.json", + "model_manifest": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/c2/tabpfgen/tabpfgen-c2-20260505_030003/staged/tabpfgen/model_input_manifest.json", + "train_csv": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/c2/tabpfgen/tabpfgen-c2-20260505_030003/staged/public/train.csv", + "features_json": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/c2/tabpfgen/tabpfgen-c2-20260505_030003/staged/public/staged_features.json", + "target_column": "class", + "task_type": "classification" + }, + "env_overrides": { + "BENCHMARK_TABPFGEN_GPUS": "device=3", + "TABPFGEN_DEVICE": "cuda", + "TABPFGEN_FIT_MAX_ROWS": "4096", + "TABPFGEN_GEN_CHUNK_ROWS": "256" + } +} \ No newline at end of file diff --git a/hyperparameter/c2/tabpfgen/tabpfgen-c2-20260505_030003/runtime_result.json b/hyperparameter/c2/tabpfgen/tabpfgen-c2-20260505_030003/runtime_result.json new file mode 100644 index 0000000000000000000000000000000000000000..35290a137c19aa4db20d650352da94f8fdf94aad --- /dev/null +++ b/hyperparameter/c2/tabpfgen/tabpfgen-c2-20260505_030003/runtime_result.json @@ -0,0 +1,27 @@ +{ + "dataset_id": "c2", + "model": "tabpfgen", + "run_id": "tabpfgen-c2-20260505_030003", + "public_gate_status": "pass", + "adapter_ready_status": "pass", + "train_status": "success", + "generate_status": "success", + "reason_code": null, + "reason_detail": null, + "artifacts": { + "synthetic_csv": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/c2/tabpfgen/tabpfgen-c2-20260505_030003/tabpfgen-c2-1382-20260505_030003.csv", + "model_path": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/c2/tabpfgen/tabpfgen-c2-20260505_030003" + }, + "timings": { + "train": { + "started_at": "2026-05-05T03:00:03", + "ended_at": "2026-05-05T03:00:03", + "duration_sec": 0.005 + }, + "generate": { + "started_at": "2026-05-05T03:00:03", + "ended_at": "2026-05-05T03:00:31", + "duration_sec": 27.774 + } + } +} \ No newline at end of file diff --git a/hyperparameter/c2/tabpfgen/tabpfgen-c2-20260505_030003/staged/public/staged_features.json b/hyperparameter/c2/tabpfgen/tabpfgen-c2-20260505_030003/staged/public/staged_features.json new file mode 100644 index 0000000000000000000000000000000000000000..61783861dd5de501592f76acb0469cf3f3b2622a --- /dev/null +++ b/hyperparameter/c2/tabpfgen/tabpfgen-c2-20260505_030003/staged/public/staged_features.json @@ -0,0 +1,37 @@ +[ + { + "feature_name": "buying", + "data_type": "categorical", + "is_target": false + }, + { + "feature_name": "maint", + "data_type": "categorical", + "is_target": false + }, + { + "feature_name": "doors", + "data_type": "categorical", + "is_target": false + }, + { + "feature_name": "persons", + "data_type": "categorical", + "is_target": false + }, + { + "feature_name": "lug_boot", + "data_type": "categorical", + "is_target": false + }, + { + "feature_name": "safety", + "data_type": "categorical", + "is_target": false + }, + { + "feature_name": "class", + "data_type": "categorical", + "is_target": true + } +] \ No newline at end of file diff --git a/hyperparameter/c2/tabpfgen/tabpfgen-c2-20260505_030003/staged/public/test.csv b/hyperparameter/c2/tabpfgen/tabpfgen-c2-20260505_030003/staged/public/test.csv new file mode 100644 index 0000000000000000000000000000000000000000..392a0d7189a34d8f13ecf20a99d64b03230d517c --- /dev/null +++ b/hyperparameter/c2/tabpfgen/tabpfgen-c2-20260505_030003/staged/public/test.csv @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:b48114a7d0bc5bd9a07920f903c8d4aba8bf98bf2a66a050da03588b0245ca73 +size 5273 diff --git a/hyperparameter/c2/tabpfgen/tabpfgen-c2-20260505_030003/staged/public/train.csv b/hyperparameter/c2/tabpfgen/tabpfgen-c2-20260505_030003/staged/public/train.csv new file mode 100644 index 0000000000000000000000000000000000000000..da4f4d55134eebc0e51157d0d467536371db1484 --- /dev/null +++ b/hyperparameter/c2/tabpfgen/tabpfgen-c2-20260505_030003/staged/public/train.csv @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:4aed00c2c2b3f88a55a7ebff31b2e1b5e0e32fb0a7267e0b9d2779cd23e434dd +size 41565 diff --git a/hyperparameter/c2/tabpfgen/tabpfgen-c2-20260505_030003/staged/public/val.csv b/hyperparameter/c2/tabpfgen/tabpfgen-c2-20260505_030003/staged/public/val.csv new file mode 100644 index 0000000000000000000000000000000000000000..af8caf7ee42524188534a3daf32996dc491952d9 --- /dev/null +++ b/hyperparameter/c2/tabpfgen/tabpfgen-c2-20260505_030003/staged/public/val.csv @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:26e90c1170a57a14c05832ac88027722b1f3848f9662c7c09ef7c93dcba4cc01 +size 5176 diff --git a/hyperparameter/c2/tabpfgen/tabpfgen-c2-20260505_030003/staged/tabpfgen/adapter_report.json b/hyperparameter/c2/tabpfgen/tabpfgen-c2-20260505_030003/staged/tabpfgen/adapter_report.json new file mode 100644 index 0000000000000000000000000000000000000000..6e565ce36cd2105039e2ba18b89946ad462b2ce9 --- /dev/null +++ b/hyperparameter/c2/tabpfgen/tabpfgen-c2-20260505_030003/staged/tabpfgen/adapter_report.json @@ -0,0 +1,7 @@ +{ + "adapter_ready_status": "pass", + "adapter_fail_reason_code": null, + "adapter_fail_detail": null, + "adapter_transforms_applied": [], + "model_input_manifest": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/c2/tabpfgen/tabpfgen-c2-20260505_030003/staged/tabpfgen/model_input_manifest.json" +} \ No newline at end of file diff --git a/hyperparameter/c2/tabpfgen/tabpfgen-c2-20260505_030003/staged/tabpfgen/adapter_transforms_applied.json b/hyperparameter/c2/tabpfgen/tabpfgen-c2-20260505_030003/staged/tabpfgen/adapter_transforms_applied.json new file mode 100644 index 0000000000000000000000000000000000000000..0637a088a01e8ddab3bf3fa98dbe804cbde1a0dc --- /dev/null +++ b/hyperparameter/c2/tabpfgen/tabpfgen-c2-20260505_030003/staged/tabpfgen/adapter_transforms_applied.json @@ -0,0 +1 @@ +[] \ No newline at end of file diff --git a/hyperparameter/c2/tabpfgen/tabpfgen-c2-20260505_030003/staged/tabpfgen/model_input_manifest.json b/hyperparameter/c2/tabpfgen/tabpfgen-c2-20260505_030003/staged/tabpfgen/model_input_manifest.json new file mode 100644 index 0000000000000000000000000000000000000000..611a735cef8cc8c901181abb3d4e9e1bf4543114 --- /dev/null +++ b/hyperparameter/c2/tabpfgen/tabpfgen-c2-20260505_030003/staged/tabpfgen/model_input_manifest.json @@ -0,0 +1,151 @@ +{ + "dataset_id": "c2", + "model": "tabpfgen", + "target_column": "class", + "task_type": "classification", + "column_schema": [ + { + "name": "buying", + "role": "feature", + "semantic_type": "categorical", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 4, + "unique_ratio": 0.002894, + "example_values": [ + "vhigh", + "med", + "high", + "low" + ] + } + }, + { + "name": "maint", + "role": "feature", + "semantic_type": "categorical", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 4, + "unique_ratio": 0.002894, + "example_values": [ + "vhigh", + "low", + "med", + "high" + ] + } + }, + { + "name": "doors", + "role": "feature", + "semantic_type": "categorical", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 4, + "unique_ratio": 0.002894, + "example_values": [ + "2", + "5more", + "3", + "4" + ] + } + }, + { + "name": "persons", + "role": "feature", + "semantic_type": "categorical", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 3, + "unique_ratio": 0.002171, + "example_values": [ + "2", + "4", + "more" + ] + } + }, + { + "name": "lug_boot", + "role": "feature", + "semantic_type": "categorical", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 3, + "unique_ratio": 0.002171, + "example_values": [ + "small", + "big", + "med" + ] + } + }, + { + "name": "safety", + "role": "feature", + "semantic_type": "categorical", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 3, + "unique_ratio": 0.002171, + "example_values": [ + "low", + "high", + "med" + ] + } + }, + { + "name": "class", + "role": "target", + "semantic_type": "categorical", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 4, + "unique_ratio": 0.002894, + "example_values": [ + "unacc", + "good", + "acc", + "vgood" + ] + } + } + ], + "public_manifest": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/c2/tabpfgen/tabpfgen-c2-20260505_030003/public_gate/staged_input_manifest.json", + "train_csv": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/c2/tabpfgen/tabpfgen-c2-20260505_030003/staged/public/train.csv", + "val_csv": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/c2/tabpfgen/tabpfgen-c2-20260505_030003/staged/public/val.csv", + "test_csv": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/c2/tabpfgen/tabpfgen-c2-20260505_030003/staged/public/test.csv", + "features_json": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/c2/tabpfgen/tabpfgen-c2-20260505_030003/staged/public/staged_features.json", + "public_gate_report": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/c2/tabpfgen/tabpfgen-c2-20260505_030003/public_gate/public_gate_report.json" +} \ No newline at end of file diff --git a/hyperparameter/c2/tabpfgen/tabpfgen-c2-20260505_030003/tabpfgen-c2-1382-20260505_030003.csv b/hyperparameter/c2/tabpfgen/tabpfgen-c2-20260505_030003/tabpfgen-c2-1382-20260505_030003.csv new file mode 100644 index 0000000000000000000000000000000000000000..2e31286c2c377a4f028464a3ebf677fe308c8ace --- /dev/null +++ b/hyperparameter/c2/tabpfgen/tabpfgen-c2-20260505_030003/tabpfgen-c2-1382-20260505_030003.csv @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:b16561b8e4059dd9013842fbadac01d06c3221f936ea6b27ce903f2892b68c4c +size 41839 diff --git a/hyperparameter/c2/tabpfgen/tabpfgen-c2-20260505_030003/tabpfgen_meta.json b/hyperparameter/c2/tabpfgen/tabpfgen-c2-20260505_030003/tabpfgen_meta.json new file mode 100644 index 0000000000000000000000000000000000000000..5c594b1d0c42c9d68e769d261142c205e0400ee2 --- /dev/null +++ b/hyperparameter/c2/tabpfgen/tabpfgen-c2-20260505_030003/tabpfgen_meta.json @@ -0,0 +1,9 @@ +{ + "csv_path": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/c2/tabpfgen/tabpfgen-c2-20260505_030003/staged/public/train.csv", + "json_path": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/c2/tabpfgen/tabpfgen-c2-20260505_030003/staged/public/staged_features.json", + "target_col": "class", + "is_classification": true, + "task_type": "classification", + "n_rows": 1382, + "n_cols": 7 +} \ No newline at end of file diff --git a/hyperparameter/c2/tabpfgen/tabpfgen-c2-20260505_030003/train_20260505_030003.log b/hyperparameter/c2/tabpfgen/tabpfgen-c2-20260505_030003/train_20260505_030003.log new file mode 100644 index 0000000000000000000000000000000000000000..155381857f2f1503a3d7a2d97566067927227aae --- /dev/null +++ b/hyperparameter/c2/tabpfgen/tabpfgen-c2-20260505_030003/train_20260505_030003.log @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:e5335decd332c06794b9bda9beb03da3bbe452871f976e811792d967664be0fc +size 595 diff --git a/hyperparameter/c2/tabsyn/tabsyn-c2-20260505_015035/_tabsyn_sample.py b/hyperparameter/c2/tabsyn/tabsyn-c2-20260505_015035/_tabsyn_sample.py new file mode 100644 index 0000000000000000000000000000000000000000..c2c4a30796d960af7a74dd56ac99535d415f96ff --- /dev/null +++ b/hyperparameter/c2/tabsyn/tabsyn-c2-20260505_015035/_tabsyn_sample.py @@ -0,0 +1,43 @@ +import os, sys, subprocess + +work_dir = "/work/output-Benchmark-trainonly-v1/c2/tabsyn/tabsyn-c2-20260505_015035" +dataname = "tabsyn_c2" +output_csv = "/work/output-Benchmark-trainonly-v1/c2/tabsyn/tabsyn-c2-20260505_015035/tabsyn-c2-1382-20260505_024152.csv" +tabsyn_root = "/workspace/tabsyn" + +assert os.path.exists(tabsyn_root), f"TabSyn source not mounted: {tabsyn_root}" + +old = os.environ.get("PYTHONPATH", "") +os.environ["PYTHONPATH"] = tabsyn_root + (os.pathsep + old if old else "") +sys.path.insert(0, tabsyn_root) + +os.chdir(tabsyn_root) + +# Ensure data symlink exists +data_link = os.path.join(tabsyn_root, "data", dataname) +data_src = os.path.join(work_dir, "data", dataname) +os.makedirs(os.path.join(tabsyn_root, "data"), exist_ok=True) +if os.path.exists(data_link): + os.remove(data_link) +os.symlink(data_src, data_link) + +print(f"[TabSyn] Sampling 1382 rows") +env = os.environ.copy() +env.setdefault("TABSYN_RESUME", "0") +env.setdefault("TABSYN_VAE_BATCH_SIZE", "32") +env.setdefault("TABSYN_VAE_EVAL_BATCH_SIZE", env["TABSYN_VAE_BATCH_SIZE"]) +env.setdefault("TABSYN_VAE_INFER_BATCH_SIZE", env["TABSYN_VAE_BATCH_SIZE"]) +env.setdefault("TABSYN_VAE_ENCODE_BATCH_SIZE", env["TABSYN_VAE_BATCH_SIZE"]) +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/hyperparameter/c2/tabsyn/tabsyn-c2-20260505_015035/_tabsyn_train.py b/hyperparameter/c2/tabsyn/tabsyn-c2-20260505_015035/_tabsyn_train.py new file mode 100644 index 0000000000000000000000000000000000000000..80aa063e8f1181e8dde6233f6fd671fff1d0c413 --- /dev/null +++ b/hyperparameter/c2/tabsyn/tabsyn-c2-20260505_015035/_tabsyn_train.py @@ -0,0 +1,69 @@ +import os, sys, subprocess + +work_dir = "/work/output-Benchmark-trainonly-v1/c2/tabsyn/tabsyn-c2-20260505_015035" +dataname = "tabsyn_c2" +tabsyn_root = "/workspace/tabsyn" + +assert os.path.exists(tabsyn_root), f"TabSyn source not mounted: {tabsyn_root}" + +old = os.environ.get("PYTHONPATH", "") +os.environ["PYTHONPATH"] = tabsyn_root + (os.pathsep + old if old else "") +sys.path.insert(0, tabsyn_root) + +os.chdir(tabsyn_root) + +# Symlink data dir into TabSyn data/ +data_link = os.path.join(tabsyn_root, "data", dataname) +data_src = os.path.join(work_dir, "data", dataname) +os.makedirs(os.path.join(tabsyn_root, "data"), exist_ok=True) +if os.path.exists(data_link): + os.remove(data_link) +os.symlink(data_src, data_link) + +env = os.environ.copy() +env.setdefault("TABSYN_RESUME", "0") +env.setdefault("TABSYN_VAE_BATCH_SIZE", "32") +env.setdefault("TABSYN_VAE_NUM_WORKERS", "0") +env.setdefault("TABSYN_VAE_EVAL_BATCH_SIZE", env["TABSYN_VAE_BATCH_SIZE"]) +env.setdefault("TABSYN_VAE_INFER_BATCH_SIZE", env["TABSYN_VAE_BATCH_SIZE"]) +env.setdefault("TABSYN_VAE_ENCODE_BATCH_SIZE", env["TABSYN_VAE_BATCH_SIZE"]) +# Safer defaults for wide tables on Docker: reduce shared-memory pressure in diffusion DataLoader. +env.setdefault("TABSYN_DIFFUSION_NUM_WORKERS", "0") +_te = None +if _te is not None: + env["TABSYN_VAE_EPOCHS"] = str(_te) + env["TABSYN_DIFFUSION_MAX_EPOCHS"] = str(max(_te + 1, 2)) + +# Data preprocessing is done on the host side (_prepare_data_dir) +# which creates .npy files, train/test CSVs, and info.json + +# Step 1: Train VAE (produces latent embeddings) +print(f"[TabSyn] Step 1/2: Training VAE in {tabsyn_root}, dataname={dataname}") +ret = subprocess.run( + [sys.executable, "main.py", + "--dataname", dataname, + "--mode", "train", + "--method", "vae", + "--gpu", "0"], + cwd=tabsyn_root, + env=env +) +if ret.returncode != 0: + print("[TabSyn] VAE training failed") + sys.exit(ret.returncode) + +# Step 2: Train diffusion model on latent space +print(f"[TabSyn] Step 2/2: Training diffusion model") +ret = subprocess.run( + [sys.executable, "main.py", + "--dataname", dataname, + "--mode", "train", + "--method", "tabsyn", + "--gpu", "0"], + cwd=tabsyn_root, + env=env +) +if ret.returncode != 0: + print("[TabSyn] Diffusion training failed") + sys.exit(ret.returncode) +print("[TabSyn] Training complete (VAE + Diffusion)") diff --git a/hyperparameter/c2/tabsyn/tabsyn-c2-20260505_015035/data/tabsyn_c2/X_cat_test.npy b/hyperparameter/c2/tabsyn/tabsyn-c2-20260505_015035/data/tabsyn_c2/X_cat_test.npy new file mode 100644 index 0000000000000000000000000000000000000000..6cf4fc75ff61837a47172e845d2942ba68f4ccd1 --- /dev/null +++ b/hyperparameter/c2/tabsyn/tabsyn-c2-20260505_015035/data/tabsyn_c2/X_cat_test.npy @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:0e9f5e299905cfd50c63688fb7b818aeec0d802b14338f705ec09d39826ac9c2 +size 55408 diff --git a/hyperparameter/c2/tabsyn/tabsyn-c2-20260505_015035/data/tabsyn_c2/X_cat_train.npy b/hyperparameter/c2/tabsyn/tabsyn-c2-20260505_015035/data/tabsyn_c2/X_cat_train.npy new file mode 100644 index 0000000000000000000000000000000000000000..6cf4fc75ff61837a47172e845d2942ba68f4ccd1 --- /dev/null +++ b/hyperparameter/c2/tabsyn/tabsyn-c2-20260505_015035/data/tabsyn_c2/X_cat_train.npy @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:0e9f5e299905cfd50c63688fb7b818aeec0d802b14338f705ec09d39826ac9c2 +size 55408 diff --git a/hyperparameter/c2/tabsyn/tabsyn-c2-20260505_015035/data/tabsyn_c2/X_num_test.npy b/hyperparameter/c2/tabsyn/tabsyn-c2-20260505_015035/data/tabsyn_c2/X_num_test.npy new file mode 100644 index 0000000000000000000000000000000000000000..9a71edeab7a22756c9090743b5d0fde204acfb75 --- /dev/null +++ b/hyperparameter/c2/tabsyn/tabsyn-c2-20260505_015035/data/tabsyn_c2/X_num_test.npy @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:f937731a3e7785676e9f861e44eddab69c323327e03bdd1f6e8755c5321538fb +size 5656 diff --git a/hyperparameter/c2/tabsyn/tabsyn-c2-20260505_015035/data/tabsyn_c2/X_num_train.npy b/hyperparameter/c2/tabsyn/tabsyn-c2-20260505_015035/data/tabsyn_c2/X_num_train.npy new file mode 100644 index 0000000000000000000000000000000000000000..9a71edeab7a22756c9090743b5d0fde204acfb75 --- /dev/null +++ b/hyperparameter/c2/tabsyn/tabsyn-c2-20260505_015035/data/tabsyn_c2/X_num_train.npy @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:f937731a3e7785676e9f861e44eddab69c323327e03bdd1f6e8755c5321538fb +size 5656 diff --git a/hyperparameter/c2/tabsyn/tabsyn-c2-20260505_015035/data/tabsyn_c2/info.json b/hyperparameter/c2/tabsyn/tabsyn-c2-20260505_015035/data/tabsyn_c2/info.json new file mode 100644 index 0000000000000000000000000000000000000000..3d85c74a88f8b29c5054c0455ce2f895b74cc726 --- /dev/null +++ b/hyperparameter/c2/tabsyn/tabsyn-c2-20260505_015035/data/tabsyn_c2/info.json @@ -0,0 +1,89 @@ +{ + "name": "tabsyn_c2", + "task_type": "multiclass", + "n_num_features": 1, + "n_cat_features": 5, + "train_size": 1382, + "num_col_idx": [ + 0 + ], + "cat_col_idx": [ + 1, + 2, + 3, + 4, + 5 + ], + "target_col_idx": [ + 6 + ], + "column_names": [ + "buying", + "maint", + "doors", + "persons", + "lug_boot", + "safety", + "class" + ], + "train_num": 1382, + "test_num": 1382, + "header": 0, + "file_type": "csv", + "data_path": "data/tabsyn_c2/train.csv", + "test_path": null, + "idx_mapping": { + "0": 0, + "1": 1, + "2": 2, + "3": 3, + "4": 4, + "5": 5, + "6": 6 + }, + "inverse_idx_mapping": { + "0": 0, + "1": 1, + "2": 2, + "3": 3, + "4": 4, + "5": 5, + "6": 6 + }, + "idx_name_mapping": { + "0": "buying", + "1": "maint", + "2": "doors", + "3": "persons", + "4": "lug_boot", + "5": "safety", + "6": "class" + }, + "n_classes": 4, + "metadata": { + "columns": { + "0": { + "sdtype": "numerical", + "computer_representation": "Float" + }, + "1": { + "sdtype": "categorical" + }, + "2": { + "sdtype": "categorical" + }, + "3": { + "sdtype": "categorical" + }, + "4": { + "sdtype": "categorical" + }, + "5": { + "sdtype": "categorical" + }, + "6": { + "sdtype": "categorical" + } + } + } +} \ No newline at end of file diff --git a/hyperparameter/c2/tabsyn/tabsyn-c2-20260505_015035/data/tabsyn_c2/test.csv b/hyperparameter/c2/tabsyn/tabsyn-c2-20260505_015035/data/tabsyn_c2/test.csv new file mode 100644 index 0000000000000000000000000000000000000000..94d40776e20a2226c5a316fc3eaf8b74b8513970 --- /dev/null +++ b/hyperparameter/c2/tabsyn/tabsyn-c2-20260505_015035/data/tabsyn_c2/test.csv @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:3e7b4d4a1f787d81e53eddffbd43603149e1dd038d94b4c0244340ff4a2e4511 +size 19397 diff --git a/hyperparameter/c2/tabsyn/tabsyn-c2-20260505_015035/data/tabsyn_c2/train.csv b/hyperparameter/c2/tabsyn/tabsyn-c2-20260505_015035/data/tabsyn_c2/train.csv new file mode 100644 index 0000000000000000000000000000000000000000..94d40776e20a2226c5a316fc3eaf8b74b8513970 --- /dev/null +++ b/hyperparameter/c2/tabsyn/tabsyn-c2-20260505_015035/data/tabsyn_c2/train.csv @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:3e7b4d4a1f787d81e53eddffbd43603149e1dd038d94b4c0244340ff4a2e4511 +size 19397 diff --git a/hyperparameter/c2/tabsyn/tabsyn-c2-20260505_015035/data/tabsyn_c2/y_test.npy b/hyperparameter/c2/tabsyn/tabsyn-c2-20260505_015035/data/tabsyn_c2/y_test.npy new file mode 100644 index 0000000000000000000000000000000000000000..108cc1504a0828881e00ae2e843ec55f1a447337 --- /dev/null +++ b/hyperparameter/c2/tabsyn/tabsyn-c2-20260505_015035/data/tabsyn_c2/y_test.npy @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:f88f9f2d088513402a20e38e046da314636957e28ee86d4df15ac0dfc9fce867 +size 11184 diff --git a/hyperparameter/c2/tabsyn/tabsyn-c2-20260505_015035/data/tabsyn_c2/y_train.npy b/hyperparameter/c2/tabsyn/tabsyn-c2-20260505_015035/data/tabsyn_c2/y_train.npy new file mode 100644 index 0000000000000000000000000000000000000000..108cc1504a0828881e00ae2e843ec55f1a447337 --- /dev/null +++ b/hyperparameter/c2/tabsyn/tabsyn-c2-20260505_015035/data/tabsyn_c2/y_train.npy @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:f88f9f2d088513402a20e38e046da314636957e28ee86d4df15ac0dfc9fce867 +size 11184 diff --git a/hyperparameter/c2/tabsyn/tabsyn-c2-20260505_015035/gen_20260505_024152.log b/hyperparameter/c2/tabsyn/tabsyn-c2-20260505_015035/gen_20260505_024152.log new file mode 100644 index 0000000000000000000000000000000000000000..f09e88eefd5c0dce56558206aa42c769b21030d1 --- /dev/null +++ b/hyperparameter/c2/tabsyn/tabsyn-c2-20260505_015035/gen_20260505_024152.log @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:9458383c06f0972f731aa2d5ba73e6549c15d0f07cf5ab49ecb44b09a8eb5863 +size 940 diff --git a/hyperparameter/c2/tabsyn/tabsyn-c2-20260505_015035/input_snapshot.json b/hyperparameter/c2/tabsyn/tabsyn-c2-20260505_015035/input_snapshot.json new file mode 100644 index 0000000000000000000000000000000000000000..7d3fddeb570e67b127ac5aef0d448cae7e934e6c --- /dev/null +++ b/hyperparameter/c2/tabsyn/tabsyn-c2-20260505_015035/input_snapshot.json @@ -0,0 +1,36 @@ +{ + "dataset_id": "c2", + "model": "tabsyn", + "inputs": { + "train_csv": { + "path": "/data/jialinzhang/SynthesizePipeline-server/DatasetNew/c2/c2-train.csv", + "exists": true, + "size": 42948, + "sha256": "17bc560fa96bd00fb3b526e1e65bc91210b701d0d0a4e8bb9b4c5196cab56def" + }, + "val_csv": { + "path": "/data/jialinzhang/SynthesizePipeline-server/DatasetNew/c2/c2-val.csv", + "exists": true, + "size": 5349, + "sha256": "61e565eca62e65a7dccd9d51039a3170413379e10fc494e25870e7c4294863c9" + }, + "test_csv": { + "path": "/data/jialinzhang/SynthesizePipeline-server/DatasetNew/c2/c2-test.csv", + "exists": true, + "size": 5448, + "sha256": "cbcbb062a1faf5fa44b66c80532baa229e05b94fc42137269761e6c6d84af20a" + }, + "profile_json": { + "path": "/data/jialinzhang/SynthesizePipeline-server/DatasetNew/artifacts/data_core/tabular/c2/c2-dataset_profile.json", + "exists": true, + "size": 3240, + "sha256": "526b7163b2076c93c0bf4638438081ee8a6907065d5b608faa40d1a3dbc2a27b" + }, + "contract_json": { + "path": "/data/jialinzhang/SynthesizePipeline-server/DatasetNew/artifacts/data_core/tabular/c2/c2-dataset_contract_v1.json", + "exists": true, + "size": 3731, + "sha256": "fb595a876054c2ee9b4e10cfe83a5691588de1d25466cbb9d473c18ad3604009" + } + } +} \ No newline at end of file diff --git a/hyperparameter/c2/tabsyn/tabsyn-c2-20260505_015035/public_gate/normalized_schema_snapshot.json b/hyperparameter/c2/tabsyn/tabsyn-c2-20260505_015035/public_gate/normalized_schema_snapshot.json new file mode 100644 index 0000000000000000000000000000000000000000..689b1d00d96508e44ba40e58dc4560e19afc2b3b --- /dev/null +++ b/hyperparameter/c2/tabsyn/tabsyn-c2-20260505_015035/public_gate/normalized_schema_snapshot.json @@ -0,0 +1,144 @@ +{ + "dataset_id": "c2", + "target_column": "class", + "task_type": "classification", + "columns": [ + { + "name": "buying", + "role": "feature", + "semantic_type": "categorical", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 4, + "unique_ratio": 0.002894, + "example_values": [ + "vhigh", + "med", + "high", + "low" + ] + } + }, + { + "name": "maint", + "role": "feature", + "semantic_type": "categorical", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 4, + "unique_ratio": 0.002894, + "example_values": [ + "vhigh", + "low", + "med", + "high" + ] + } + }, + { + "name": "doors", + "role": "feature", + "semantic_type": "categorical", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 4, + "unique_ratio": 0.002894, + "example_values": [ + "2", + "5more", + "3", + "4" + ] + } + }, + { + "name": "persons", + "role": "feature", + "semantic_type": "categorical", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 3, + "unique_ratio": 0.002171, + "example_values": [ + "2", + "4", + "more" + ] + } + }, + { + "name": "lug_boot", + "role": "feature", + "semantic_type": "categorical", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 3, + "unique_ratio": 0.002171, + "example_values": [ + "small", + "big", + "med" + ] + } + }, + { + "name": "safety", + "role": "feature", + "semantic_type": "categorical", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 3, + "unique_ratio": 0.002171, + "example_values": [ + "low", + "high", + "med" + ] + } + }, + { + "name": "class", + "role": "target", + "semantic_type": "categorical", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 4, + "unique_ratio": 0.002894, + "example_values": [ + "unacc", + "good", + "acc", + "vgood" + ] + } + } + ] +} \ No newline at end of file diff --git a/hyperparameter/c2/tabsyn/tabsyn-c2-20260505_015035/public_gate/public_gate_report.json b/hyperparameter/c2/tabsyn/tabsyn-c2-20260505_015035/public_gate/public_gate_report.json new file mode 100644 index 0000000000000000000000000000000000000000..2e4cdcb2a4e28e40d59b17a83e773f622b7636a5 --- /dev/null +++ b/hyperparameter/c2/tabsyn/tabsyn-c2-20260505_015035/public_gate/public_gate_report.json @@ -0,0 +1,37 @@ +{ + "dataset_id": "c2", + "status": "pass", + "checks": [ + { + "check_id": "PG001_csv_parse_ok", + "status": "pass" + }, + { + "check_id": "PG002_split_header_consistent", + "status": "pass" + }, + { + "check_id": "PG003_profile_header_match", + "status": "pass" + }, + { + "check_id": "PG004_missing_token_normalized", + "status": "pass" + }, + { + "check_id": "PG005_semantic_type_validated", + "status": "pass" + }, + { + "check_id": "PG006_target_defined_and_valid", + "status": "pass" + } + ], + "target_column": "class", + "task_type": "classification", + "input_splits": { + "train": "/data/jialinzhang/SynthesizePipeline-server/DatasetNew/c2/c2-train.csv", + "val": "/data/jialinzhang/SynthesizePipeline-server/DatasetNew/c2/c2-val.csv", + "test": "/data/jialinzhang/SynthesizePipeline-server/DatasetNew/c2/c2-test.csv" + } +} \ No newline at end of file diff --git a/hyperparameter/c2/tabsyn/tabsyn-c2-20260505_015035/public_gate/staged_input_manifest.json b/hyperparameter/c2/tabsyn/tabsyn-c2-20260505_015035/public_gate/staged_input_manifest.json new file mode 100644 index 0000000000000000000000000000000000000000..24da476182dc27bc1fed832ca1f9658fb5c64241 --- /dev/null +++ b/hyperparameter/c2/tabsyn/tabsyn-c2-20260505_015035/public_gate/staged_input_manifest.json @@ -0,0 +1,149 @@ +{ + "dataset_id": "c2", + "target_column": "class", + "task_type": "classification", + "train_csv": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/c2/tabsyn/tabsyn-c2-20260505_015035/staged/public/train.csv", + "val_csv": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/c2/tabsyn/tabsyn-c2-20260505_015035/staged/public/val.csv", + "test_csv": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/c2/tabsyn/tabsyn-c2-20260505_015035/staged/public/test.csv", + "features_json": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/c2/tabsyn/tabsyn-c2-20260505_015035/staged/public/staged_features.json", + "public_gate_report": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/c2/tabsyn/tabsyn-c2-20260505_015035/public_gate/public_gate_report.json", + "column_schema": [ + { + "name": "buying", + "role": "feature", + "semantic_type": "categorical", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 4, + "unique_ratio": 0.002894, + "example_values": [ + "vhigh", + "med", + "high", + "low" + ] + } + }, + { + "name": "maint", + "role": "feature", + "semantic_type": "categorical", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 4, + "unique_ratio": 0.002894, + "example_values": [ + "vhigh", + "low", + "med", + "high" + ] + } + }, + { + "name": "doors", + "role": "feature", + "semantic_type": "categorical", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 4, + "unique_ratio": 0.002894, + "example_values": [ + "2", + "5more", + "3", + "4" + ] + } + }, + { + "name": "persons", + "role": "feature", + "semantic_type": "categorical", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 3, + "unique_ratio": 0.002171, + "example_values": [ + "2", + "4", + "more" + ] + } + }, + { + "name": "lug_boot", + "role": "feature", + "semantic_type": "categorical", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 3, + "unique_ratio": 0.002171, + "example_values": [ + "small", + "big", + "med" + ] + } + }, + { + "name": "safety", + "role": "feature", + "semantic_type": "categorical", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 3, + "unique_ratio": 0.002171, + "example_values": [ + "low", + "high", + "med" + ] + } + }, + { + "name": "class", + "role": "target", + "semantic_type": "categorical", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 4, + "unique_ratio": 0.002894, + "example_values": [ + "unacc", + "good", + "acc", + "vgood" + ] + } + } + ] +} \ No newline at end of file diff --git a/hyperparameter/c2/tabsyn/tabsyn-c2-20260505_015035/run_config.json b/hyperparameter/c2/tabsyn/tabsyn-c2-20260505_015035/run_config.json new file mode 100644 index 0000000000000000000000000000000000000000..a9f1f696aa57b16f7c5b5b282b7332d4dd383f8e --- /dev/null +++ b/hyperparameter/c2/tabsyn/tabsyn-c2-20260505_015035/run_config.json @@ -0,0 +1,48 @@ +{ + "schema_version": 1, + "recorded_at": "2026-05-05T01:50:35", + "dataset_id": "c2", + "model": "tabsyn", + "work_dir": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/c2/tabsyn/tabsyn-c2-20260505_015035", + "dataset_source_requested": "new", + "dataset_source_resolved": "new", + "cli_args": { + "model": "tabsyn", + "dataset": "c2", + "dataset_source": "new", + "train": true, + "generate": true, + "num_rows": 0, + "epochs": null, + "output_dir": null, + "model_dir": null, + "work_dir": null, + "resume": false, + "no_stats": false + }, + "resolved": { + "num_rows": 1382, + "model_path": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/c2/tabsyn/tabsyn-c2-20260505_015035", + "output_csv": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/c2/tabsyn/tabsyn-c2-20260505_015035/tabsyn-c2-1382-20260505_024152.csv" + }, + "input_artifacts": { + "public_gate_report": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/c2/tabsyn/tabsyn-c2-20260505_015035/public_gate/public_gate_report.json", + "public_manifest": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/c2/tabsyn/tabsyn-c2-20260505_015035/public_gate/staged_input_manifest.json", + "model_manifest": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/c2/tabsyn/tabsyn-c2-20260505_015035/staged/tabsyn/model_input_manifest.json", + "train_csv": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/c2/tabsyn/tabsyn-c2-20260505_015035/staged/public/train.csv", + "features_json": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/c2/tabsyn/tabsyn-c2-20260505_015035/staged/public/staged_features.json", + "target_column": "class", + "task_type": "classification" + }, + "env_overrides": { + "BENCHMARK_TABSYN_GPUS": "device=3", + "TABSYN_DIFFUSION_MAX_EPOCHS": "10", + "TABSYN_RESUME": "0", + "TABSYN_VAE_BATCH_SIZE": "16", + "TABSYN_VAE_ENCODE_BATCH_SIZE": "16", + "TABSYN_VAE_EPOCHS": "10", + "TABSYN_VAE_EVAL_BATCH_SIZE": "16", + "TABSYN_VAE_INFER_BATCH_SIZE": "16", + "TABSYN_VAE_NUM_WORKERS": "0" + } +} \ No newline at end of file diff --git a/hyperparameter/c2/tabsyn/tabsyn-c2-20260505_015035/runtime_result.json b/hyperparameter/c2/tabsyn/tabsyn-c2-20260505_015035/runtime_result.json new file mode 100644 index 0000000000000000000000000000000000000000..09bda86722dfc5341d5b0df39aed6c53c6d4cce3 --- /dev/null +++ b/hyperparameter/c2/tabsyn/tabsyn-c2-20260505_015035/runtime_result.json @@ -0,0 +1,27 @@ +{ + "dataset_id": "c2", + "model": "tabsyn", + "run_id": "tabsyn-c2-20260505_015035", + "public_gate_status": "pass", + "adapter_ready_status": "pass", + "train_status": "success", + "generate_status": "success", + "reason_code": null, + "reason_detail": null, + "artifacts": { + "synthetic_csv": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/c2/tabsyn/tabsyn-c2-20260505_015035/tabsyn-c2-1382-20260505_024152.csv", + "model_path": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/c2/tabsyn/tabsyn-c2-20260505_015035" + }, + "timings": { + "train": { + "started_at": "2026-05-05T01:50:35", + "ended_at": "2026-05-05T02:41:52", + "duration_sec": 3077.286 + }, + "generate": { + "started_at": "2026-05-05T02:41:52", + "ended_at": "2026-05-05T02:41:58", + "duration_sec": 6.07 + } + } +} \ No newline at end of file diff --git a/hyperparameter/c2/tabsyn/tabsyn-c2-20260505_015035/staged/public/staged_features.json b/hyperparameter/c2/tabsyn/tabsyn-c2-20260505_015035/staged/public/staged_features.json new file mode 100644 index 0000000000000000000000000000000000000000..61783861dd5de501592f76acb0469cf3f3b2622a --- /dev/null +++ b/hyperparameter/c2/tabsyn/tabsyn-c2-20260505_015035/staged/public/staged_features.json @@ -0,0 +1,37 @@ +[ + { + "feature_name": "buying", + "data_type": "categorical", + "is_target": false + }, + { + "feature_name": "maint", + "data_type": "categorical", + "is_target": false + }, + { + "feature_name": "doors", + "data_type": "categorical", + "is_target": false + }, + { + "feature_name": "persons", + "data_type": "categorical", + "is_target": false + }, + { + "feature_name": "lug_boot", + "data_type": "categorical", + "is_target": false + }, + { + "feature_name": "safety", + "data_type": "categorical", + "is_target": false + }, + { + "feature_name": "class", + "data_type": "categorical", + "is_target": true + } +] \ No newline at end of file diff --git a/hyperparameter/c2/tabsyn/tabsyn-c2-20260505_015035/staged/public/test.csv b/hyperparameter/c2/tabsyn/tabsyn-c2-20260505_015035/staged/public/test.csv new file mode 100644 index 0000000000000000000000000000000000000000..392a0d7189a34d8f13ecf20a99d64b03230d517c --- /dev/null +++ b/hyperparameter/c2/tabsyn/tabsyn-c2-20260505_015035/staged/public/test.csv @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:b48114a7d0bc5bd9a07920f903c8d4aba8bf98bf2a66a050da03588b0245ca73 +size 5273 diff --git a/hyperparameter/c2/tabsyn/tabsyn-c2-20260505_015035/staged/public/train.csv b/hyperparameter/c2/tabsyn/tabsyn-c2-20260505_015035/staged/public/train.csv new file mode 100644 index 0000000000000000000000000000000000000000..da4f4d55134eebc0e51157d0d467536371db1484 --- /dev/null +++ b/hyperparameter/c2/tabsyn/tabsyn-c2-20260505_015035/staged/public/train.csv @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:4aed00c2c2b3f88a55a7ebff31b2e1b5e0e32fb0a7267e0b9d2779cd23e434dd +size 41565 diff --git a/hyperparameter/c2/tabsyn/tabsyn-c2-20260505_015035/staged/public/val.csv b/hyperparameter/c2/tabsyn/tabsyn-c2-20260505_015035/staged/public/val.csv new file mode 100644 index 0000000000000000000000000000000000000000..af8caf7ee42524188534a3daf32996dc491952d9 --- /dev/null +++ b/hyperparameter/c2/tabsyn/tabsyn-c2-20260505_015035/staged/public/val.csv @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:26e90c1170a57a14c05832ac88027722b1f3848f9662c7c09ef7c93dcba4cc01 +size 5176 diff --git a/hyperparameter/c2/tabsyn/tabsyn-c2-20260505_015035/staged/tabsyn/adapter_report.json b/hyperparameter/c2/tabsyn/tabsyn-c2-20260505_015035/staged/tabsyn/adapter_report.json new file mode 100644 index 0000000000000000000000000000000000000000..b98b3f7663e766773b5a0af0594797a8a5e79a75 --- /dev/null +++ b/hyperparameter/c2/tabsyn/tabsyn-c2-20260505_015035/staged/tabsyn/adapter_report.json @@ -0,0 +1,7 @@ +{ + "adapter_ready_status": "pass", + "adapter_fail_reason_code": null, + "adapter_fail_detail": null, + "adapter_transforms_applied": [], + "model_input_manifest": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/c2/tabsyn/tabsyn-c2-20260505_015035/staged/tabsyn/model_input_manifest.json" +} \ No newline at end of file diff --git a/hyperparameter/c2/tabsyn/tabsyn-c2-20260505_015035/staged/tabsyn/adapter_transforms_applied.json b/hyperparameter/c2/tabsyn/tabsyn-c2-20260505_015035/staged/tabsyn/adapter_transforms_applied.json new file mode 100644 index 0000000000000000000000000000000000000000..0637a088a01e8ddab3bf3fa98dbe804cbde1a0dc --- /dev/null +++ b/hyperparameter/c2/tabsyn/tabsyn-c2-20260505_015035/staged/tabsyn/adapter_transforms_applied.json @@ -0,0 +1 @@ +[] \ No newline at end of file diff --git a/hyperparameter/c2/tabsyn/tabsyn-c2-20260505_015035/staged/tabsyn/model_input_manifest.json b/hyperparameter/c2/tabsyn/tabsyn-c2-20260505_015035/staged/tabsyn/model_input_manifest.json new file mode 100644 index 0000000000000000000000000000000000000000..1239ba6aacfbad6bf1eef27716c330ed11033218 --- /dev/null +++ b/hyperparameter/c2/tabsyn/tabsyn-c2-20260505_015035/staged/tabsyn/model_input_manifest.json @@ -0,0 +1,151 @@ +{ + "dataset_id": "c2", + "model": "tabsyn", + "target_column": "class", + "task_type": "classification", + "column_schema": [ + { + "name": "buying", + "role": "feature", + "semantic_type": "categorical", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 4, + "unique_ratio": 0.002894, + "example_values": [ + "vhigh", + "med", + "high", + "low" + ] + } + }, + { + "name": "maint", + "role": "feature", + "semantic_type": "categorical", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 4, + "unique_ratio": 0.002894, + "example_values": [ + "vhigh", + "low", + "med", + "high" + ] + } + }, + { + "name": "doors", + "role": "feature", + "semantic_type": "categorical", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 4, + "unique_ratio": 0.002894, + "example_values": [ + "2", + "5more", + "3", + "4" + ] + } + }, + { + "name": "persons", + "role": "feature", + "semantic_type": "categorical", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 3, + "unique_ratio": 0.002171, + "example_values": [ + "2", + "4", + "more" + ] + } + }, + { + "name": "lug_boot", + "role": "feature", + "semantic_type": "categorical", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 3, + "unique_ratio": 0.002171, + "example_values": [ + "small", + "big", + "med" + ] + } + }, + { + "name": "safety", + "role": "feature", + "semantic_type": "categorical", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 3, + "unique_ratio": 0.002171, + "example_values": [ + "low", + "high", + "med" + ] + } + }, + { + "name": "class", + "role": "target", + "semantic_type": "categorical", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 4, + "unique_ratio": 0.002894, + "example_values": [ + "unacc", + "good", + "acc", + "vgood" + ] + } + } + ], + "public_manifest": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/c2/tabsyn/tabsyn-c2-20260505_015035/public_gate/staged_input_manifest.json", + "train_csv": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/c2/tabsyn/tabsyn-c2-20260505_015035/staged/public/train.csv", + "val_csv": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/c2/tabsyn/tabsyn-c2-20260505_015035/staged/public/val.csv", + "test_csv": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/c2/tabsyn/tabsyn-c2-20260505_015035/staged/public/test.csv", + "features_json": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/c2/tabsyn/tabsyn-c2-20260505_015035/staged/public/staged_features.json", + "public_gate_report": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/c2/tabsyn/tabsyn-c2-20260505_015035/public_gate/public_gate_report.json" +} \ No newline at end of file diff --git a/hyperparameter/c2/tabsyn/tabsyn-c2-20260505_015035/synthetic/tabsyn_c2/real.csv b/hyperparameter/c2/tabsyn/tabsyn-c2-20260505_015035/synthetic/tabsyn_c2/real.csv new file mode 100644 index 0000000000000000000000000000000000000000..94d40776e20a2226c5a316fc3eaf8b74b8513970 --- /dev/null +++ b/hyperparameter/c2/tabsyn/tabsyn-c2-20260505_015035/synthetic/tabsyn_c2/real.csv @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:3e7b4d4a1f787d81e53eddffbd43603149e1dd038d94b4c0244340ff4a2e4511 +size 19397 diff --git a/hyperparameter/c2/tabsyn/tabsyn-c2-20260505_015035/synthetic/tabsyn_c2/test.csv b/hyperparameter/c2/tabsyn/tabsyn-c2-20260505_015035/synthetic/tabsyn_c2/test.csv new file mode 100644 index 0000000000000000000000000000000000000000..94d40776e20a2226c5a316fc3eaf8b74b8513970 --- /dev/null +++ b/hyperparameter/c2/tabsyn/tabsyn-c2-20260505_015035/synthetic/tabsyn_c2/test.csv @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:3e7b4d4a1f787d81e53eddffbd43603149e1dd038d94b4c0244340ff4a2e4511 +size 19397 diff --git a/hyperparameter/c2/tabsyn/tabsyn-c2-20260505_015035/tabsyn-c2-1382-20260505_024152.csv b/hyperparameter/c2/tabsyn/tabsyn-c2-20260505_015035/tabsyn-c2-1382-20260505_024152.csv new file mode 100644 index 0000000000000000000000000000000000000000..a0af24c3589511abaf2e6af061738017abafc099 --- /dev/null +++ b/hyperparameter/c2/tabsyn/tabsyn-c2-20260505_015035/tabsyn-c2-1382-20260505_024152.csv @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:047d9d2bc16dd492a4ab72e0d8157a5be44b06a5c5a98934338c9d31e9bb12d0 +size 22167 diff --git a/hyperparameter/c2/tabsyn/tabsyn-c2-20260505_015035/train_20260505_015035.log b/hyperparameter/c2/tabsyn/tabsyn-c2-20260505_015035/train_20260505_015035.log new file mode 100644 index 0000000000000000000000000000000000000000..46a1214874878fc8b3f16f145f953104e96f39ee --- /dev/null +++ b/hyperparameter/c2/tabsyn/tabsyn-c2-20260505_015035/train_20260505_015035.log @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:6bb460b04e0be175103f0aa2c52a9e8f0183172a2757f633c725d2813b40046f +size 3409562 diff --git a/hyperparameter/c2/tabsyn/tabsyn-c2-20260505_024211/_tabsyn_sample.py b/hyperparameter/c2/tabsyn/tabsyn-c2-20260505_024211/_tabsyn_sample.py new file mode 100644 index 0000000000000000000000000000000000000000..8ff2791e43bd2a9162da61187ca72b4f40f28bc6 --- /dev/null +++ b/hyperparameter/c2/tabsyn/tabsyn-c2-20260505_024211/_tabsyn_sample.py @@ -0,0 +1,43 @@ +import os, sys, subprocess + +work_dir = "/work/output-Benchmark-trainonly-v1/c2/tabsyn/tabsyn-c2-20260505_024211" +dataname = "tabsyn_c2" +output_csv = "/work/output-Benchmark-trainonly-v1/c2/tabsyn/tabsyn-c2-20260505_024211/tabsyn-c2-1382-20260505_033334.csv" +tabsyn_root = "/workspace/tabsyn" + +assert os.path.exists(tabsyn_root), f"TabSyn source not mounted: {tabsyn_root}" + +old = os.environ.get("PYTHONPATH", "") +os.environ["PYTHONPATH"] = tabsyn_root + (os.pathsep + old if old else "") +sys.path.insert(0, tabsyn_root) + +os.chdir(tabsyn_root) + +# Ensure data symlink exists +data_link = os.path.join(tabsyn_root, "data", dataname) +data_src = os.path.join(work_dir, "data", dataname) +os.makedirs(os.path.join(tabsyn_root, "data"), exist_ok=True) +if os.path.exists(data_link): + os.remove(data_link) +os.symlink(data_src, data_link) + +print(f"[TabSyn] Sampling 1382 rows") +env = os.environ.copy() +env.setdefault("TABSYN_RESUME", "0") +env.setdefault("TABSYN_VAE_BATCH_SIZE", "32") +env.setdefault("TABSYN_VAE_EVAL_BATCH_SIZE", env["TABSYN_VAE_BATCH_SIZE"]) +env.setdefault("TABSYN_VAE_INFER_BATCH_SIZE", env["TABSYN_VAE_BATCH_SIZE"]) +env.setdefault("TABSYN_VAE_ENCODE_BATCH_SIZE", env["TABSYN_VAE_BATCH_SIZE"]) +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/hyperparameter/c2/tabsyn/tabsyn-c2-20260505_024211/_tabsyn_train.py b/hyperparameter/c2/tabsyn/tabsyn-c2-20260505_024211/_tabsyn_train.py new file mode 100644 index 0000000000000000000000000000000000000000..096bd6126a9bceecc70e00067da147e4c6a7a502 --- /dev/null +++ b/hyperparameter/c2/tabsyn/tabsyn-c2-20260505_024211/_tabsyn_train.py @@ -0,0 +1,69 @@ +import os, sys, subprocess + +work_dir = "/work/output-Benchmark-trainonly-v1/c2/tabsyn/tabsyn-c2-20260505_024211" +dataname = "tabsyn_c2" +tabsyn_root = "/workspace/tabsyn" + +assert os.path.exists(tabsyn_root), f"TabSyn source not mounted: {tabsyn_root}" + +old = os.environ.get("PYTHONPATH", "") +os.environ["PYTHONPATH"] = tabsyn_root + (os.pathsep + old if old else "") +sys.path.insert(0, tabsyn_root) + +os.chdir(tabsyn_root) + +# Symlink data dir into TabSyn data/ +data_link = os.path.join(tabsyn_root, "data", dataname) +data_src = os.path.join(work_dir, "data", dataname) +os.makedirs(os.path.join(tabsyn_root, "data"), exist_ok=True) +if os.path.exists(data_link): + os.remove(data_link) +os.symlink(data_src, data_link) + +env = os.environ.copy() +env.setdefault("TABSYN_RESUME", "0") +env.setdefault("TABSYN_VAE_BATCH_SIZE", "32") +env.setdefault("TABSYN_VAE_NUM_WORKERS", "0") +env.setdefault("TABSYN_VAE_EVAL_BATCH_SIZE", env["TABSYN_VAE_BATCH_SIZE"]) +env.setdefault("TABSYN_VAE_INFER_BATCH_SIZE", env["TABSYN_VAE_BATCH_SIZE"]) +env.setdefault("TABSYN_VAE_ENCODE_BATCH_SIZE", env["TABSYN_VAE_BATCH_SIZE"]) +# Safer defaults for wide tables on Docker: reduce shared-memory pressure in diffusion DataLoader. +env.setdefault("TABSYN_DIFFUSION_NUM_WORKERS", "0") +_te = None +if _te is not None: + env["TABSYN_VAE_EPOCHS"] = str(_te) + env["TABSYN_DIFFUSION_MAX_EPOCHS"] = str(max(_te + 1, 2)) + +# Data preprocessing is done on the host side (_prepare_data_dir) +# which creates .npy files, train/test CSVs, and info.json + +# Step 1: Train VAE (produces latent embeddings) +print(f"[TabSyn] Step 1/2: Training VAE in {tabsyn_root}, dataname={dataname}") +ret = subprocess.run( + [sys.executable, "main.py", + "--dataname", dataname, + "--mode", "train", + "--method", "vae", + "--gpu", "0"], + cwd=tabsyn_root, + env=env +) +if ret.returncode != 0: + print("[TabSyn] VAE training failed") + sys.exit(ret.returncode) + +# Step 2: Train diffusion model on latent space +print(f"[TabSyn] Step 2/2: Training diffusion model") +ret = subprocess.run( + [sys.executable, "main.py", + "--dataname", dataname, + "--mode", "train", + "--method", "tabsyn", + "--gpu", "0"], + cwd=tabsyn_root, + env=env +) +if ret.returncode != 0: + print("[TabSyn] Diffusion training failed") + sys.exit(ret.returncode) +print("[TabSyn] Training complete (VAE + Diffusion)") diff --git a/hyperparameter/c2/tabsyn/tabsyn-c2-20260505_024211/data/tabsyn_c2/X_cat_test.npy b/hyperparameter/c2/tabsyn/tabsyn-c2-20260505_024211/data/tabsyn_c2/X_cat_test.npy new file mode 100644 index 0000000000000000000000000000000000000000..6cf4fc75ff61837a47172e845d2942ba68f4ccd1 --- /dev/null +++ b/hyperparameter/c2/tabsyn/tabsyn-c2-20260505_024211/data/tabsyn_c2/X_cat_test.npy @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:0e9f5e299905cfd50c63688fb7b818aeec0d802b14338f705ec09d39826ac9c2 +size 55408 diff --git a/hyperparameter/c2/tabsyn/tabsyn-c2-20260505_024211/data/tabsyn_c2/X_cat_train.npy b/hyperparameter/c2/tabsyn/tabsyn-c2-20260505_024211/data/tabsyn_c2/X_cat_train.npy new file mode 100644 index 0000000000000000000000000000000000000000..6cf4fc75ff61837a47172e845d2942ba68f4ccd1 --- /dev/null +++ b/hyperparameter/c2/tabsyn/tabsyn-c2-20260505_024211/data/tabsyn_c2/X_cat_train.npy @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:0e9f5e299905cfd50c63688fb7b818aeec0d802b14338f705ec09d39826ac9c2 +size 55408 diff --git a/hyperparameter/c2/tabsyn/tabsyn-c2-20260505_024211/data/tabsyn_c2/X_num_test.npy b/hyperparameter/c2/tabsyn/tabsyn-c2-20260505_024211/data/tabsyn_c2/X_num_test.npy new file mode 100644 index 0000000000000000000000000000000000000000..9a71edeab7a22756c9090743b5d0fde204acfb75 --- /dev/null +++ b/hyperparameter/c2/tabsyn/tabsyn-c2-20260505_024211/data/tabsyn_c2/X_num_test.npy @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:f937731a3e7785676e9f861e44eddab69c323327e03bdd1f6e8755c5321538fb +size 5656 diff --git a/hyperparameter/c2/tabsyn/tabsyn-c2-20260505_024211/data/tabsyn_c2/X_num_train.npy b/hyperparameter/c2/tabsyn/tabsyn-c2-20260505_024211/data/tabsyn_c2/X_num_train.npy new file mode 100644 index 0000000000000000000000000000000000000000..9a71edeab7a22756c9090743b5d0fde204acfb75 --- /dev/null +++ b/hyperparameter/c2/tabsyn/tabsyn-c2-20260505_024211/data/tabsyn_c2/X_num_train.npy @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:f937731a3e7785676e9f861e44eddab69c323327e03bdd1f6e8755c5321538fb +size 5656 diff --git a/hyperparameter/c2/tabsyn/tabsyn-c2-20260505_024211/data/tabsyn_c2/info.json b/hyperparameter/c2/tabsyn/tabsyn-c2-20260505_024211/data/tabsyn_c2/info.json new file mode 100644 index 0000000000000000000000000000000000000000..3d85c74a88f8b29c5054c0455ce2f895b74cc726 --- /dev/null +++ b/hyperparameter/c2/tabsyn/tabsyn-c2-20260505_024211/data/tabsyn_c2/info.json @@ -0,0 +1,89 @@ +{ + "name": "tabsyn_c2", + "task_type": "multiclass", + "n_num_features": 1, + "n_cat_features": 5, + "train_size": 1382, + "num_col_idx": [ + 0 + ], + "cat_col_idx": [ + 1, + 2, + 3, + 4, + 5 + ], + "target_col_idx": [ + 6 + ], + "column_names": [ + "buying", + "maint", + "doors", + "persons", + "lug_boot", + "safety", + "class" + ], + "train_num": 1382, + "test_num": 1382, + "header": 0, + "file_type": "csv", + "data_path": "data/tabsyn_c2/train.csv", + "test_path": null, + "idx_mapping": { + "0": 0, + "1": 1, + "2": 2, + "3": 3, + "4": 4, + "5": 5, + "6": 6 + }, + "inverse_idx_mapping": { + "0": 0, + "1": 1, + "2": 2, + "3": 3, + "4": 4, + "5": 5, + "6": 6 + }, + "idx_name_mapping": { + "0": "buying", + "1": "maint", + "2": "doors", + "3": "persons", + "4": "lug_boot", + "5": "safety", + "6": "class" + }, + "n_classes": 4, + "metadata": { + "columns": { + "0": { + "sdtype": "numerical", + "computer_representation": "Float" + }, + "1": { + "sdtype": "categorical" + }, + "2": { + "sdtype": "categorical" + }, + "3": { + "sdtype": "categorical" + }, + "4": { + "sdtype": "categorical" + }, + "5": { + "sdtype": "categorical" + }, + "6": { + "sdtype": "categorical" + } + } + } +} \ No newline at end of file diff --git a/hyperparameter/c2/tabsyn/tabsyn-c2-20260505_024211/data/tabsyn_c2/test.csv b/hyperparameter/c2/tabsyn/tabsyn-c2-20260505_024211/data/tabsyn_c2/test.csv new file mode 100644 index 0000000000000000000000000000000000000000..94d40776e20a2226c5a316fc3eaf8b74b8513970 --- /dev/null +++ b/hyperparameter/c2/tabsyn/tabsyn-c2-20260505_024211/data/tabsyn_c2/test.csv @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:3e7b4d4a1f787d81e53eddffbd43603149e1dd038d94b4c0244340ff4a2e4511 +size 19397 diff --git a/hyperparameter/c2/tabsyn/tabsyn-c2-20260505_024211/data/tabsyn_c2/train.csv b/hyperparameter/c2/tabsyn/tabsyn-c2-20260505_024211/data/tabsyn_c2/train.csv new file mode 100644 index 0000000000000000000000000000000000000000..94d40776e20a2226c5a316fc3eaf8b74b8513970 --- /dev/null +++ b/hyperparameter/c2/tabsyn/tabsyn-c2-20260505_024211/data/tabsyn_c2/train.csv @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:3e7b4d4a1f787d81e53eddffbd43603149e1dd038d94b4c0244340ff4a2e4511 +size 19397 diff --git a/hyperparameter/c2/tabsyn/tabsyn-c2-20260505_024211/data/tabsyn_c2/y_test.npy b/hyperparameter/c2/tabsyn/tabsyn-c2-20260505_024211/data/tabsyn_c2/y_test.npy new file mode 100644 index 0000000000000000000000000000000000000000..108cc1504a0828881e00ae2e843ec55f1a447337 --- /dev/null +++ b/hyperparameter/c2/tabsyn/tabsyn-c2-20260505_024211/data/tabsyn_c2/y_test.npy @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:f88f9f2d088513402a20e38e046da314636957e28ee86d4df15ac0dfc9fce867 +size 11184 diff --git a/hyperparameter/c2/tabsyn/tabsyn-c2-20260505_024211/data/tabsyn_c2/y_train.npy b/hyperparameter/c2/tabsyn/tabsyn-c2-20260505_024211/data/tabsyn_c2/y_train.npy new file mode 100644 index 0000000000000000000000000000000000000000..108cc1504a0828881e00ae2e843ec55f1a447337 --- /dev/null +++ b/hyperparameter/c2/tabsyn/tabsyn-c2-20260505_024211/data/tabsyn_c2/y_train.npy @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:f88f9f2d088513402a20e38e046da314636957e28ee86d4df15ac0dfc9fce867 +size 11184 diff --git a/hyperparameter/c2/tabsyn/tabsyn-c2-20260505_024211/gen_20260505_033334.log b/hyperparameter/c2/tabsyn/tabsyn-c2-20260505_024211/gen_20260505_033334.log new file mode 100644 index 0000000000000000000000000000000000000000..e56c5d8b69bab86b0ae73e9266f372300c2789cd --- /dev/null +++ b/hyperparameter/c2/tabsyn/tabsyn-c2-20260505_024211/gen_20260505_033334.log @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:7eaf4ed641de9bd91e516d26b74ea2462e282eba79d257cea535b569546b2261 +size 939 diff --git a/hyperparameter/c2/tabsyn/tabsyn-c2-20260505_024211/input_snapshot.json b/hyperparameter/c2/tabsyn/tabsyn-c2-20260505_024211/input_snapshot.json new file mode 100644 index 0000000000000000000000000000000000000000..7d3fddeb570e67b127ac5aef0d448cae7e934e6c --- /dev/null +++ b/hyperparameter/c2/tabsyn/tabsyn-c2-20260505_024211/input_snapshot.json @@ -0,0 +1,36 @@ +{ + "dataset_id": "c2", + "model": "tabsyn", + "inputs": { + "train_csv": { + "path": "/data/jialinzhang/SynthesizePipeline-server/DatasetNew/c2/c2-train.csv", + "exists": true, + "size": 42948, + "sha256": "17bc560fa96bd00fb3b526e1e65bc91210b701d0d0a4e8bb9b4c5196cab56def" + }, + "val_csv": { + "path": "/data/jialinzhang/SynthesizePipeline-server/DatasetNew/c2/c2-val.csv", + "exists": true, + "size": 5349, + "sha256": "61e565eca62e65a7dccd9d51039a3170413379e10fc494e25870e7c4294863c9" + }, + "test_csv": { + "path": "/data/jialinzhang/SynthesizePipeline-server/DatasetNew/c2/c2-test.csv", + "exists": true, + "size": 5448, + "sha256": "cbcbb062a1faf5fa44b66c80532baa229e05b94fc42137269761e6c6d84af20a" + }, + "profile_json": { + "path": "/data/jialinzhang/SynthesizePipeline-server/DatasetNew/artifacts/data_core/tabular/c2/c2-dataset_profile.json", + "exists": true, + "size": 3240, + "sha256": "526b7163b2076c93c0bf4638438081ee8a6907065d5b608faa40d1a3dbc2a27b" + }, + "contract_json": { + "path": "/data/jialinzhang/SynthesizePipeline-server/DatasetNew/artifacts/data_core/tabular/c2/c2-dataset_contract_v1.json", + "exists": true, + "size": 3731, + "sha256": "fb595a876054c2ee9b4e10cfe83a5691588de1d25466cbb9d473c18ad3604009" + } + } +} \ No newline at end of file diff --git a/hyperparameter/c2/tabsyn/tabsyn-c2-20260505_024211/public_gate/normalized_schema_snapshot.json b/hyperparameter/c2/tabsyn/tabsyn-c2-20260505_024211/public_gate/normalized_schema_snapshot.json new file mode 100644 index 0000000000000000000000000000000000000000..689b1d00d96508e44ba40e58dc4560e19afc2b3b --- /dev/null +++ b/hyperparameter/c2/tabsyn/tabsyn-c2-20260505_024211/public_gate/normalized_schema_snapshot.json @@ -0,0 +1,144 @@ +{ + "dataset_id": "c2", + "target_column": "class", + "task_type": "classification", + "columns": [ + { + "name": "buying", + "role": "feature", + "semantic_type": "categorical", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 4, + "unique_ratio": 0.002894, + "example_values": [ + "vhigh", + "med", + "high", + "low" + ] + } + }, + { + "name": "maint", + "role": "feature", + "semantic_type": "categorical", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 4, + "unique_ratio": 0.002894, + "example_values": [ + "vhigh", + "low", + "med", + "high" + ] + } + }, + { + "name": "doors", + "role": "feature", + "semantic_type": "categorical", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 4, + "unique_ratio": 0.002894, + "example_values": [ + "2", + "5more", + "3", + "4" + ] + } + }, + { + "name": "persons", + "role": "feature", + "semantic_type": "categorical", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 3, + "unique_ratio": 0.002171, + "example_values": [ + "2", + "4", + "more" + ] + } + }, + { + "name": "lug_boot", + "role": "feature", + "semantic_type": "categorical", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 3, + "unique_ratio": 0.002171, + "example_values": [ + "small", + "big", + "med" + ] + } + }, + { + "name": "safety", + "role": "feature", + "semantic_type": "categorical", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 3, + "unique_ratio": 0.002171, + "example_values": [ + "low", + "high", + "med" + ] + } + }, + { + "name": "class", + "role": "target", + "semantic_type": "categorical", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 4, + "unique_ratio": 0.002894, + "example_values": [ + "unacc", + "good", + "acc", + "vgood" + ] + } + } + ] +} \ No newline at end of file diff --git a/hyperparameter/c2/tabsyn/tabsyn-c2-20260505_024211/public_gate/public_gate_report.json b/hyperparameter/c2/tabsyn/tabsyn-c2-20260505_024211/public_gate/public_gate_report.json new file mode 100644 index 0000000000000000000000000000000000000000..2e4cdcb2a4e28e40d59b17a83e773f622b7636a5 --- /dev/null +++ b/hyperparameter/c2/tabsyn/tabsyn-c2-20260505_024211/public_gate/public_gate_report.json @@ -0,0 +1,37 @@ +{ + "dataset_id": "c2", + "status": "pass", + "checks": [ + { + "check_id": "PG001_csv_parse_ok", + "status": "pass" + }, + { + "check_id": "PG002_split_header_consistent", + "status": "pass" + }, + { + "check_id": "PG003_profile_header_match", + "status": "pass" + }, + { + "check_id": "PG004_missing_token_normalized", + "status": "pass" + }, + { + "check_id": "PG005_semantic_type_validated", + "status": "pass" + }, + { + "check_id": "PG006_target_defined_and_valid", + "status": "pass" + } + ], + "target_column": "class", + "task_type": "classification", + "input_splits": { + "train": "/data/jialinzhang/SynthesizePipeline-server/DatasetNew/c2/c2-train.csv", + "val": "/data/jialinzhang/SynthesizePipeline-server/DatasetNew/c2/c2-val.csv", + "test": "/data/jialinzhang/SynthesizePipeline-server/DatasetNew/c2/c2-test.csv" + } +} \ No newline at end of file diff --git a/hyperparameter/c2/tabsyn/tabsyn-c2-20260505_024211/public_gate/staged_input_manifest.json b/hyperparameter/c2/tabsyn/tabsyn-c2-20260505_024211/public_gate/staged_input_manifest.json new file mode 100644 index 0000000000000000000000000000000000000000..e8dd025876d942650ab69626f85454c22e9cdd39 --- /dev/null +++ b/hyperparameter/c2/tabsyn/tabsyn-c2-20260505_024211/public_gate/staged_input_manifest.json @@ -0,0 +1,149 @@ +{ + "dataset_id": "c2", + "target_column": "class", + "task_type": "classification", + "train_csv": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/c2/tabsyn/tabsyn-c2-20260505_024211/staged/public/train.csv", + "val_csv": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/c2/tabsyn/tabsyn-c2-20260505_024211/staged/public/val.csv", + "test_csv": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/c2/tabsyn/tabsyn-c2-20260505_024211/staged/public/test.csv", + "features_json": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/c2/tabsyn/tabsyn-c2-20260505_024211/staged/public/staged_features.json", + "public_gate_report": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/c2/tabsyn/tabsyn-c2-20260505_024211/public_gate/public_gate_report.json", + "column_schema": [ + { + "name": "buying", + "role": "feature", + "semantic_type": "categorical", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 4, + "unique_ratio": 0.002894, + "example_values": [ + "vhigh", + "med", + "high", + "low" + ] + } + }, + { + "name": "maint", + "role": "feature", + "semantic_type": "categorical", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 4, + "unique_ratio": 0.002894, + "example_values": [ + "vhigh", + "low", + "med", + "high" + ] + } + }, + { + "name": "doors", + "role": "feature", + "semantic_type": "categorical", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 4, + "unique_ratio": 0.002894, + "example_values": [ + "2", + "5more", + "3", + "4" + ] + } + }, + { + "name": "persons", + "role": "feature", + "semantic_type": "categorical", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 3, + "unique_ratio": 0.002171, + "example_values": [ + "2", + "4", + "more" + ] + } + }, + { + "name": "lug_boot", + "role": "feature", + "semantic_type": "categorical", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 3, + "unique_ratio": 0.002171, + "example_values": [ + "small", + "big", + "med" + ] + } + }, + { + "name": "safety", + "role": "feature", + "semantic_type": "categorical", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 3, + "unique_ratio": 0.002171, + "example_values": [ + "low", + "high", + "med" + ] + } + }, + { + "name": "class", + "role": "target", + "semantic_type": "categorical", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 4, + "unique_ratio": 0.002894, + "example_values": [ + "unacc", + "good", + "acc", + "vgood" + ] + } + } + ] +} \ No newline at end of file diff --git a/hyperparameter/c2/tabsyn/tabsyn-c2-20260505_024211/run_config.json b/hyperparameter/c2/tabsyn/tabsyn-c2-20260505_024211/run_config.json new file mode 100644 index 0000000000000000000000000000000000000000..f080d86736933e0fac7684c3c004b2299288b067 --- /dev/null +++ b/hyperparameter/c2/tabsyn/tabsyn-c2-20260505_024211/run_config.json @@ -0,0 +1,48 @@ +{ + "schema_version": 1, + "recorded_at": "2026-05-05T02:42:11", + "dataset_id": "c2", + "model": "tabsyn", + "work_dir": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/c2/tabsyn/tabsyn-c2-20260505_024211", + "dataset_source_requested": "new", + "dataset_source_resolved": "new", + "cli_args": { + "model": "tabsyn", + "dataset": "c2", + "dataset_source": "new", + "train": true, + "generate": true, + "num_rows": 0, + "epochs": null, + "output_dir": null, + "model_dir": null, + "work_dir": null, + "resume": false, + "no_stats": false + }, + "resolved": { + "num_rows": 1382, + "model_path": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/c2/tabsyn/tabsyn-c2-20260505_024211", + "output_csv": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/c2/tabsyn/tabsyn-c2-20260505_024211/tabsyn-c2-1382-20260505_033334.csv" + }, + "input_artifacts": { + "public_gate_report": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/c2/tabsyn/tabsyn-c2-20260505_024211/public_gate/public_gate_report.json", + "public_manifest": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/c2/tabsyn/tabsyn-c2-20260505_024211/public_gate/staged_input_manifest.json", + "model_manifest": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/c2/tabsyn/tabsyn-c2-20260505_024211/staged/tabsyn/model_input_manifest.json", + "train_csv": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/c2/tabsyn/tabsyn-c2-20260505_024211/staged/public/train.csv", + "features_json": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/c2/tabsyn/tabsyn-c2-20260505_024211/staged/public/staged_features.json", + "target_column": "class", + "task_type": "classification" + }, + "env_overrides": { + "BENCHMARK_TABSYN_GPUS": "device=3", + "TABSYN_DIFFUSION_MAX_EPOCHS": "20", + "TABSYN_RESUME": "0", + "TABSYN_VAE_BATCH_SIZE": "32", + "TABSYN_VAE_ENCODE_BATCH_SIZE": "32", + "TABSYN_VAE_EPOCHS": "20", + "TABSYN_VAE_EVAL_BATCH_SIZE": "32", + "TABSYN_VAE_INFER_BATCH_SIZE": "32", + "TABSYN_VAE_NUM_WORKERS": "0" + } +} \ No newline at end of file diff --git a/hyperparameter/c2/tabsyn/tabsyn-c2-20260505_024211/runtime_result.json b/hyperparameter/c2/tabsyn/tabsyn-c2-20260505_024211/runtime_result.json new file mode 100644 index 0000000000000000000000000000000000000000..c51dfeaf9c3e5b5dcf11eede166f7a43d124eacb --- /dev/null +++ b/hyperparameter/c2/tabsyn/tabsyn-c2-20260505_024211/runtime_result.json @@ -0,0 +1,27 @@ +{ + "dataset_id": "c2", + "model": "tabsyn", + "run_id": "tabsyn-c2-20260505_024211", + "public_gate_status": "pass", + "adapter_ready_status": "pass", + "train_status": "success", + "generate_status": "success", + "reason_code": null, + "reason_detail": null, + "artifacts": { + "synthetic_csv": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/c2/tabsyn/tabsyn-c2-20260505_024211/tabsyn-c2-1382-20260505_033334.csv", + "model_path": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/c2/tabsyn/tabsyn-c2-20260505_024211" + }, + "timings": { + "train": { + "started_at": "2026-05-05T02:42:11", + "ended_at": "2026-05-05T03:33:34", + "duration_sec": 3082.92 + }, + "generate": { + "started_at": "2026-05-05T03:33:34", + "ended_at": "2026-05-05T03:33:40", + "duration_sec": 6.248 + } + } +} \ No newline at end of file diff --git a/hyperparameter/c2/tabsyn/tabsyn-c2-20260505_024211/staged/public/staged_features.json b/hyperparameter/c2/tabsyn/tabsyn-c2-20260505_024211/staged/public/staged_features.json new file mode 100644 index 0000000000000000000000000000000000000000..61783861dd5de501592f76acb0469cf3f3b2622a --- /dev/null +++ b/hyperparameter/c2/tabsyn/tabsyn-c2-20260505_024211/staged/public/staged_features.json @@ -0,0 +1,37 @@ +[ + { + "feature_name": "buying", + "data_type": "categorical", + "is_target": false + }, + { + "feature_name": "maint", + "data_type": "categorical", + "is_target": false + }, + { + "feature_name": "doors", + "data_type": "categorical", + "is_target": false + }, + { + "feature_name": "persons", + "data_type": "categorical", + "is_target": false + }, + { + "feature_name": "lug_boot", + "data_type": "categorical", + "is_target": false + }, + { + "feature_name": "safety", + "data_type": "categorical", + "is_target": false + }, + { + "feature_name": "class", + "data_type": "categorical", + "is_target": true + } +] \ No newline at end of file diff --git a/hyperparameter/c2/tabsyn/tabsyn-c2-20260505_024211/staged/public/test.csv b/hyperparameter/c2/tabsyn/tabsyn-c2-20260505_024211/staged/public/test.csv new file mode 100644 index 0000000000000000000000000000000000000000..392a0d7189a34d8f13ecf20a99d64b03230d517c --- /dev/null +++ b/hyperparameter/c2/tabsyn/tabsyn-c2-20260505_024211/staged/public/test.csv @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:b48114a7d0bc5bd9a07920f903c8d4aba8bf98bf2a66a050da03588b0245ca73 +size 5273 diff --git a/hyperparameter/c2/tabsyn/tabsyn-c2-20260505_024211/staged/public/train.csv b/hyperparameter/c2/tabsyn/tabsyn-c2-20260505_024211/staged/public/train.csv new file mode 100644 index 0000000000000000000000000000000000000000..da4f4d55134eebc0e51157d0d467536371db1484 --- /dev/null +++ b/hyperparameter/c2/tabsyn/tabsyn-c2-20260505_024211/staged/public/train.csv @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:4aed00c2c2b3f88a55a7ebff31b2e1b5e0e32fb0a7267e0b9d2779cd23e434dd +size 41565 diff --git a/hyperparameter/c2/tabsyn/tabsyn-c2-20260505_024211/staged/public/val.csv b/hyperparameter/c2/tabsyn/tabsyn-c2-20260505_024211/staged/public/val.csv new file mode 100644 index 0000000000000000000000000000000000000000..af8caf7ee42524188534a3daf32996dc491952d9 --- /dev/null +++ b/hyperparameter/c2/tabsyn/tabsyn-c2-20260505_024211/staged/public/val.csv @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:26e90c1170a57a14c05832ac88027722b1f3848f9662c7c09ef7c93dcba4cc01 +size 5176 diff --git a/hyperparameter/c2/tabsyn/tabsyn-c2-20260505_024211/staged/tabsyn/adapter_report.json b/hyperparameter/c2/tabsyn/tabsyn-c2-20260505_024211/staged/tabsyn/adapter_report.json new file mode 100644 index 0000000000000000000000000000000000000000..8a2469425cc5aa313ef2cb797c51b5e457aa911b --- /dev/null +++ b/hyperparameter/c2/tabsyn/tabsyn-c2-20260505_024211/staged/tabsyn/adapter_report.json @@ -0,0 +1,7 @@ +{ + "adapter_ready_status": "pass", + "adapter_fail_reason_code": null, + "adapter_fail_detail": null, + "adapter_transforms_applied": [], + "model_input_manifest": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/c2/tabsyn/tabsyn-c2-20260505_024211/staged/tabsyn/model_input_manifest.json" +} \ No newline at end of file diff --git a/hyperparameter/c2/tabsyn/tabsyn-c2-20260505_024211/staged/tabsyn/adapter_transforms_applied.json b/hyperparameter/c2/tabsyn/tabsyn-c2-20260505_024211/staged/tabsyn/adapter_transforms_applied.json new file mode 100644 index 0000000000000000000000000000000000000000..0637a088a01e8ddab3bf3fa98dbe804cbde1a0dc --- /dev/null +++ b/hyperparameter/c2/tabsyn/tabsyn-c2-20260505_024211/staged/tabsyn/adapter_transforms_applied.json @@ -0,0 +1 @@ +[] \ No newline at end of file diff --git a/hyperparameter/c2/tabsyn/tabsyn-c2-20260505_024211/staged/tabsyn/model_input_manifest.json b/hyperparameter/c2/tabsyn/tabsyn-c2-20260505_024211/staged/tabsyn/model_input_manifest.json new file mode 100644 index 0000000000000000000000000000000000000000..ca1883fa5f2f2d183257bf468dbc7a21cb962635 --- /dev/null +++ b/hyperparameter/c2/tabsyn/tabsyn-c2-20260505_024211/staged/tabsyn/model_input_manifest.json @@ -0,0 +1,151 @@ +{ + "dataset_id": "c2", + "model": "tabsyn", + "target_column": "class", + "task_type": "classification", + "column_schema": [ + { + "name": "buying", + "role": "feature", + "semantic_type": "categorical", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 4, + "unique_ratio": 0.002894, + "example_values": [ + "vhigh", + "med", + "high", + "low" + ] + } + }, + { + "name": "maint", + "role": "feature", + "semantic_type": "categorical", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 4, + "unique_ratio": 0.002894, + "example_values": [ + "vhigh", + "low", + "med", + "high" + ] + } + }, + { + "name": "doors", + "role": "feature", + "semantic_type": "categorical", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 4, + "unique_ratio": 0.002894, + "example_values": [ + "2", + "5more", + "3", + "4" + ] + } + }, + { + "name": "persons", + "role": "feature", + "semantic_type": "categorical", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 3, + "unique_ratio": 0.002171, + "example_values": [ + "2", + "4", + "more" + ] + } + }, + { + "name": "lug_boot", + "role": "feature", + "semantic_type": "categorical", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 3, + "unique_ratio": 0.002171, + "example_values": [ + "small", + "big", + "med" + ] + } + }, + { + "name": "safety", + "role": "feature", + "semantic_type": "categorical", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 3, + "unique_ratio": 0.002171, + "example_values": [ + "low", + "high", + "med" + ] + } + }, + { + "name": "class", + "role": "target", + "semantic_type": "categorical", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 4, + "unique_ratio": 0.002894, + "example_values": [ + "unacc", + "good", + "acc", + "vgood" + ] + } + } + ], + "public_manifest": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/c2/tabsyn/tabsyn-c2-20260505_024211/public_gate/staged_input_manifest.json", + "train_csv": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/c2/tabsyn/tabsyn-c2-20260505_024211/staged/public/train.csv", + "val_csv": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/c2/tabsyn/tabsyn-c2-20260505_024211/staged/public/val.csv", + "test_csv": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/c2/tabsyn/tabsyn-c2-20260505_024211/staged/public/test.csv", + "features_json": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/c2/tabsyn/tabsyn-c2-20260505_024211/staged/public/staged_features.json", + "public_gate_report": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/c2/tabsyn/tabsyn-c2-20260505_024211/public_gate/public_gate_report.json" +} \ No newline at end of file diff --git a/hyperparameter/c2/tabsyn/tabsyn-c2-20260505_024211/synthetic/tabsyn_c2/real.csv b/hyperparameter/c2/tabsyn/tabsyn-c2-20260505_024211/synthetic/tabsyn_c2/real.csv new file mode 100644 index 0000000000000000000000000000000000000000..94d40776e20a2226c5a316fc3eaf8b74b8513970 --- /dev/null +++ b/hyperparameter/c2/tabsyn/tabsyn-c2-20260505_024211/synthetic/tabsyn_c2/real.csv @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:3e7b4d4a1f787d81e53eddffbd43603149e1dd038d94b4c0244340ff4a2e4511 +size 19397 diff --git a/hyperparameter/c2/tabsyn/tabsyn-c2-20260505_024211/synthetic/tabsyn_c2/test.csv b/hyperparameter/c2/tabsyn/tabsyn-c2-20260505_024211/synthetic/tabsyn_c2/test.csv new file mode 100644 index 0000000000000000000000000000000000000000..94d40776e20a2226c5a316fc3eaf8b74b8513970 --- /dev/null +++ b/hyperparameter/c2/tabsyn/tabsyn-c2-20260505_024211/synthetic/tabsyn_c2/test.csv @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:3e7b4d4a1f787d81e53eddffbd43603149e1dd038d94b4c0244340ff4a2e4511 +size 19397 diff --git a/hyperparameter/c2/tabsyn/tabsyn-c2-20260505_024211/tabsyn-c2-1382-20260505_033334.csv b/hyperparameter/c2/tabsyn/tabsyn-c2-20260505_024211/tabsyn-c2-1382-20260505_033334.csv new file mode 100644 index 0000000000000000000000000000000000000000..2564a875cd3a0f746128e7a67e7727cbf79a7d72 --- /dev/null +++ b/hyperparameter/c2/tabsyn/tabsyn-c2-20260505_024211/tabsyn-c2-1382-20260505_033334.csv @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:4afcc6ad475fc0c9f4424af406729ac947702abcc36958da6e9c2988daf1a0af +size 22367 diff --git a/hyperparameter/c2/tabsyn/tabsyn-c2-20260505_024211/train_20260505_024211.log b/hyperparameter/c2/tabsyn/tabsyn-c2-20260505_024211/train_20260505_024211.log new file mode 100644 index 0000000000000000000000000000000000000000..a5f1f9e0d88ced645228a74ccdcebda4c9cbb755 --- /dev/null +++ b/hyperparameter/c2/tabsyn/tabsyn-c2-20260505_024211/train_20260505_024211.log @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:7a31789748b30674925ce3734c17c8baa525dbc9858a93c3086e5b2a6f3dc4c2 +size 3277227 diff --git a/hyperparameter/c2/tabsyn/tabsyn-c2-20260505_040121/_tabsyn_sample.py b/hyperparameter/c2/tabsyn/tabsyn-c2-20260505_040121/_tabsyn_sample.py new file mode 100644 index 0000000000000000000000000000000000000000..7bbc22ef8f2fbd35bb965701b8bd41cdea1b92b6 --- /dev/null +++ b/hyperparameter/c2/tabsyn/tabsyn-c2-20260505_040121/_tabsyn_sample.py @@ -0,0 +1,43 @@ +import os, sys, subprocess + +work_dir = "/work/output-Benchmark-trainonly-v1/c2/tabsyn/tabsyn-c2-20260505_040121" +dataname = "tabsyn_c2" +output_csv = "/work/output-Benchmark-trainonly-v1/c2/tabsyn/tabsyn-c2-20260505_040121/tabsyn-c2-1382-20260505_045652.csv" +tabsyn_root = "/workspace/tabsyn" + +assert os.path.exists(tabsyn_root), f"TabSyn source not mounted: {tabsyn_root}" + +old = os.environ.get("PYTHONPATH", "") +os.environ["PYTHONPATH"] = tabsyn_root + (os.pathsep + old if old else "") +sys.path.insert(0, tabsyn_root) + +os.chdir(tabsyn_root) + +# Ensure data symlink exists +data_link = os.path.join(tabsyn_root, "data", dataname) +data_src = os.path.join(work_dir, "data", dataname) +os.makedirs(os.path.join(tabsyn_root, "data"), exist_ok=True) +if os.path.exists(data_link): + os.remove(data_link) +os.symlink(data_src, data_link) + +print(f"[TabSyn] Sampling 1382 rows") +env = os.environ.copy() +env.setdefault("TABSYN_RESUME", "0") +env.setdefault("TABSYN_VAE_BATCH_SIZE", "32") +env.setdefault("TABSYN_VAE_EVAL_BATCH_SIZE", env["TABSYN_VAE_BATCH_SIZE"]) +env.setdefault("TABSYN_VAE_INFER_BATCH_SIZE", env["TABSYN_VAE_BATCH_SIZE"]) +env.setdefault("TABSYN_VAE_ENCODE_BATCH_SIZE", env["TABSYN_VAE_BATCH_SIZE"]) +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/hyperparameter/c2/tabsyn/tabsyn-c2-20260505_040121/_tabsyn_train.py b/hyperparameter/c2/tabsyn/tabsyn-c2-20260505_040121/_tabsyn_train.py new file mode 100644 index 0000000000000000000000000000000000000000..e7185f5bbc879a5ef475ec4513b4007b92e5c91b --- /dev/null +++ b/hyperparameter/c2/tabsyn/tabsyn-c2-20260505_040121/_tabsyn_train.py @@ -0,0 +1,69 @@ +import os, sys, subprocess + +work_dir = "/work/output-Benchmark-trainonly-v1/c2/tabsyn/tabsyn-c2-20260505_040121" +dataname = "tabsyn_c2" +tabsyn_root = "/workspace/tabsyn" + +assert os.path.exists(tabsyn_root), f"TabSyn source not mounted: {tabsyn_root}" + +old = os.environ.get("PYTHONPATH", "") +os.environ["PYTHONPATH"] = tabsyn_root + (os.pathsep + old if old else "") +sys.path.insert(0, tabsyn_root) + +os.chdir(tabsyn_root) + +# Symlink data dir into TabSyn data/ +data_link = os.path.join(tabsyn_root, "data", dataname) +data_src = os.path.join(work_dir, "data", dataname) +os.makedirs(os.path.join(tabsyn_root, "data"), exist_ok=True) +if os.path.exists(data_link): + os.remove(data_link) +os.symlink(data_src, data_link) + +env = os.environ.copy() +env.setdefault("TABSYN_RESUME", "0") +env.setdefault("TABSYN_VAE_BATCH_SIZE", "32") +env.setdefault("TABSYN_VAE_NUM_WORKERS", "0") +env.setdefault("TABSYN_VAE_EVAL_BATCH_SIZE", env["TABSYN_VAE_BATCH_SIZE"]) +env.setdefault("TABSYN_VAE_INFER_BATCH_SIZE", env["TABSYN_VAE_BATCH_SIZE"]) +env.setdefault("TABSYN_VAE_ENCODE_BATCH_SIZE", env["TABSYN_VAE_BATCH_SIZE"]) +# Safer defaults for wide tables on Docker: reduce shared-memory pressure in diffusion DataLoader. +env.setdefault("TABSYN_DIFFUSION_NUM_WORKERS", "0") +_te = None +if _te is not None: + env["TABSYN_VAE_EPOCHS"] = str(_te) + env["TABSYN_DIFFUSION_MAX_EPOCHS"] = str(max(_te + 1, 2)) + +# Data preprocessing is done on the host side (_prepare_data_dir) +# which creates .npy files, train/test CSVs, and info.json + +# Step 1: Train VAE (produces latent embeddings) +print(f"[TabSyn] Step 1/2: Training VAE in {tabsyn_root}, dataname={dataname}") +ret = subprocess.run( + [sys.executable, "main.py", + "--dataname", dataname, + "--mode", "train", + "--method", "vae", + "--gpu", "0"], + cwd=tabsyn_root, + env=env +) +if ret.returncode != 0: + print("[TabSyn] VAE training failed") + sys.exit(ret.returncode) + +# Step 2: Train diffusion model on latent space +print(f"[TabSyn] Step 2/2: Training diffusion model") +ret = subprocess.run( + [sys.executable, "main.py", + "--dataname", dataname, + "--mode", "train", + "--method", "tabsyn", + "--gpu", "0"], + cwd=tabsyn_root, + env=env +) +if ret.returncode != 0: + print("[TabSyn] Diffusion training failed") + sys.exit(ret.returncode) +print("[TabSyn] Training complete (VAE + Diffusion)") diff --git a/hyperparameter/c2/tabsyn/tabsyn-c2-20260505_040121/data/tabsyn_c2/X_cat_test.npy b/hyperparameter/c2/tabsyn/tabsyn-c2-20260505_040121/data/tabsyn_c2/X_cat_test.npy new file mode 100644 index 0000000000000000000000000000000000000000..6cf4fc75ff61837a47172e845d2942ba68f4ccd1 --- /dev/null +++ b/hyperparameter/c2/tabsyn/tabsyn-c2-20260505_040121/data/tabsyn_c2/X_cat_test.npy @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:0e9f5e299905cfd50c63688fb7b818aeec0d802b14338f705ec09d39826ac9c2 +size 55408 diff --git a/hyperparameter/c2/tabsyn/tabsyn-c2-20260505_040121/data/tabsyn_c2/X_cat_train.npy b/hyperparameter/c2/tabsyn/tabsyn-c2-20260505_040121/data/tabsyn_c2/X_cat_train.npy new file mode 100644 index 0000000000000000000000000000000000000000..6cf4fc75ff61837a47172e845d2942ba68f4ccd1 --- /dev/null +++ b/hyperparameter/c2/tabsyn/tabsyn-c2-20260505_040121/data/tabsyn_c2/X_cat_train.npy @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:0e9f5e299905cfd50c63688fb7b818aeec0d802b14338f705ec09d39826ac9c2 +size 55408 diff --git a/hyperparameter/c2/tabsyn/tabsyn-c2-20260505_040121/data/tabsyn_c2/X_num_test.npy b/hyperparameter/c2/tabsyn/tabsyn-c2-20260505_040121/data/tabsyn_c2/X_num_test.npy new file mode 100644 index 0000000000000000000000000000000000000000..9a71edeab7a22756c9090743b5d0fde204acfb75 --- /dev/null +++ b/hyperparameter/c2/tabsyn/tabsyn-c2-20260505_040121/data/tabsyn_c2/X_num_test.npy @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:f937731a3e7785676e9f861e44eddab69c323327e03bdd1f6e8755c5321538fb +size 5656 diff --git a/hyperparameter/c2/tabsyn/tabsyn-c2-20260505_040121/data/tabsyn_c2/X_num_train.npy b/hyperparameter/c2/tabsyn/tabsyn-c2-20260505_040121/data/tabsyn_c2/X_num_train.npy new file mode 100644 index 0000000000000000000000000000000000000000..9a71edeab7a22756c9090743b5d0fde204acfb75 --- /dev/null +++ b/hyperparameter/c2/tabsyn/tabsyn-c2-20260505_040121/data/tabsyn_c2/X_num_train.npy @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:f937731a3e7785676e9f861e44eddab69c323327e03bdd1f6e8755c5321538fb +size 5656 diff --git a/hyperparameter/c2/tabsyn/tabsyn-c2-20260505_040121/data/tabsyn_c2/info.json b/hyperparameter/c2/tabsyn/tabsyn-c2-20260505_040121/data/tabsyn_c2/info.json new file mode 100644 index 0000000000000000000000000000000000000000..3d85c74a88f8b29c5054c0455ce2f895b74cc726 --- /dev/null +++ b/hyperparameter/c2/tabsyn/tabsyn-c2-20260505_040121/data/tabsyn_c2/info.json @@ -0,0 +1,89 @@ +{ + "name": "tabsyn_c2", + "task_type": "multiclass", + "n_num_features": 1, + "n_cat_features": 5, + "train_size": 1382, + "num_col_idx": [ + 0 + ], + "cat_col_idx": [ + 1, + 2, + 3, + 4, + 5 + ], + "target_col_idx": [ + 6 + ], + "column_names": [ + "buying", + "maint", + "doors", + "persons", + "lug_boot", + "safety", + "class" + ], + "train_num": 1382, + "test_num": 1382, + "header": 0, + "file_type": "csv", + "data_path": "data/tabsyn_c2/train.csv", + "test_path": null, + "idx_mapping": { + "0": 0, + "1": 1, + "2": 2, + "3": 3, + "4": 4, + "5": 5, + "6": 6 + }, + "inverse_idx_mapping": { + "0": 0, + "1": 1, + "2": 2, + "3": 3, + "4": 4, + "5": 5, + "6": 6 + }, + "idx_name_mapping": { + "0": "buying", + "1": "maint", + "2": "doors", + "3": "persons", + "4": "lug_boot", + "5": "safety", + "6": "class" + }, + "n_classes": 4, + "metadata": { + "columns": { + "0": { + "sdtype": "numerical", + "computer_representation": "Float" + }, + "1": { + "sdtype": "categorical" + }, + "2": { + "sdtype": "categorical" + }, + "3": { + "sdtype": "categorical" + }, + "4": { + "sdtype": "categorical" + }, + "5": { + "sdtype": "categorical" + }, + "6": { + "sdtype": "categorical" + } + } + } +} \ No newline at end of file diff --git a/hyperparameter/c2/tabsyn/tabsyn-c2-20260505_040121/data/tabsyn_c2/test.csv b/hyperparameter/c2/tabsyn/tabsyn-c2-20260505_040121/data/tabsyn_c2/test.csv new file mode 100644 index 0000000000000000000000000000000000000000..94d40776e20a2226c5a316fc3eaf8b74b8513970 --- /dev/null +++ b/hyperparameter/c2/tabsyn/tabsyn-c2-20260505_040121/data/tabsyn_c2/test.csv @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:3e7b4d4a1f787d81e53eddffbd43603149e1dd038d94b4c0244340ff4a2e4511 +size 19397 diff --git a/hyperparameter/c2/tabsyn/tabsyn-c2-20260505_040121/data/tabsyn_c2/train.csv b/hyperparameter/c2/tabsyn/tabsyn-c2-20260505_040121/data/tabsyn_c2/train.csv new file mode 100644 index 0000000000000000000000000000000000000000..94d40776e20a2226c5a316fc3eaf8b74b8513970 --- /dev/null +++ b/hyperparameter/c2/tabsyn/tabsyn-c2-20260505_040121/data/tabsyn_c2/train.csv @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:3e7b4d4a1f787d81e53eddffbd43603149e1dd038d94b4c0244340ff4a2e4511 +size 19397 diff --git a/hyperparameter/c2/tabsyn/tabsyn-c2-20260505_040121/data/tabsyn_c2/y_test.npy b/hyperparameter/c2/tabsyn/tabsyn-c2-20260505_040121/data/tabsyn_c2/y_test.npy new file mode 100644 index 0000000000000000000000000000000000000000..108cc1504a0828881e00ae2e843ec55f1a447337 --- /dev/null +++ b/hyperparameter/c2/tabsyn/tabsyn-c2-20260505_040121/data/tabsyn_c2/y_test.npy @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:f88f9f2d088513402a20e38e046da314636957e28ee86d4df15ac0dfc9fce867 +size 11184 diff --git a/hyperparameter/c2/tabsyn/tabsyn-c2-20260505_040121/data/tabsyn_c2/y_train.npy b/hyperparameter/c2/tabsyn/tabsyn-c2-20260505_040121/data/tabsyn_c2/y_train.npy new file mode 100644 index 0000000000000000000000000000000000000000..108cc1504a0828881e00ae2e843ec55f1a447337 --- /dev/null +++ b/hyperparameter/c2/tabsyn/tabsyn-c2-20260505_040121/data/tabsyn_c2/y_train.npy @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:f88f9f2d088513402a20e38e046da314636957e28ee86d4df15ac0dfc9fce867 +size 11184 diff --git a/hyperparameter/c2/tabsyn/tabsyn-c2-20260505_040121/gen_20260505_045652.log b/hyperparameter/c2/tabsyn/tabsyn-c2-20260505_040121/gen_20260505_045652.log new file mode 100644 index 0000000000000000000000000000000000000000..c97c6b83b307519d2698c8dcd718f306319eddf8 --- /dev/null +++ b/hyperparameter/c2/tabsyn/tabsyn-c2-20260505_040121/gen_20260505_045652.log @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:cbb239171105ec461fae957df4e8b0e67b78907bf9de5244d9362c2ef498c586 +size 940 diff --git a/hyperparameter/c2/tabsyn/tabsyn-c2-20260505_040121/input_snapshot.json b/hyperparameter/c2/tabsyn/tabsyn-c2-20260505_040121/input_snapshot.json new file mode 100644 index 0000000000000000000000000000000000000000..7d3fddeb570e67b127ac5aef0d448cae7e934e6c --- /dev/null +++ b/hyperparameter/c2/tabsyn/tabsyn-c2-20260505_040121/input_snapshot.json @@ -0,0 +1,36 @@ +{ + "dataset_id": "c2", + "model": "tabsyn", + "inputs": { + "train_csv": { + "path": "/data/jialinzhang/SynthesizePipeline-server/DatasetNew/c2/c2-train.csv", + "exists": true, + "size": 42948, + "sha256": "17bc560fa96bd00fb3b526e1e65bc91210b701d0d0a4e8bb9b4c5196cab56def" + }, + "val_csv": { + "path": "/data/jialinzhang/SynthesizePipeline-server/DatasetNew/c2/c2-val.csv", + "exists": true, + "size": 5349, + "sha256": "61e565eca62e65a7dccd9d51039a3170413379e10fc494e25870e7c4294863c9" + }, + "test_csv": { + "path": "/data/jialinzhang/SynthesizePipeline-server/DatasetNew/c2/c2-test.csv", + "exists": true, + "size": 5448, + "sha256": "cbcbb062a1faf5fa44b66c80532baa229e05b94fc42137269761e6c6d84af20a" + }, + "profile_json": { + "path": "/data/jialinzhang/SynthesizePipeline-server/DatasetNew/artifacts/data_core/tabular/c2/c2-dataset_profile.json", + "exists": true, + "size": 3240, + "sha256": "526b7163b2076c93c0bf4638438081ee8a6907065d5b608faa40d1a3dbc2a27b" + }, + "contract_json": { + "path": "/data/jialinzhang/SynthesizePipeline-server/DatasetNew/artifacts/data_core/tabular/c2/c2-dataset_contract_v1.json", + "exists": true, + "size": 3731, + "sha256": "fb595a876054c2ee9b4e10cfe83a5691588de1d25466cbb9d473c18ad3604009" + } + } +} \ No newline at end of file diff --git a/hyperparameter/c2/tabsyn/tabsyn-c2-20260505_040121/public_gate/normalized_schema_snapshot.json b/hyperparameter/c2/tabsyn/tabsyn-c2-20260505_040121/public_gate/normalized_schema_snapshot.json new file mode 100644 index 0000000000000000000000000000000000000000..689b1d00d96508e44ba40e58dc4560e19afc2b3b --- /dev/null +++ b/hyperparameter/c2/tabsyn/tabsyn-c2-20260505_040121/public_gate/normalized_schema_snapshot.json @@ -0,0 +1,144 @@ +{ + "dataset_id": "c2", + "target_column": "class", + "task_type": "classification", + "columns": [ + { + "name": "buying", + "role": "feature", + "semantic_type": "categorical", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 4, + "unique_ratio": 0.002894, + "example_values": [ + "vhigh", + "med", + "high", + "low" + ] + } + }, + { + "name": "maint", + "role": "feature", + "semantic_type": "categorical", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 4, + "unique_ratio": 0.002894, + "example_values": [ + "vhigh", + "low", + "med", + "high" + ] + } + }, + { + "name": "doors", + "role": "feature", + "semantic_type": "categorical", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 4, + "unique_ratio": 0.002894, + "example_values": [ + "2", + "5more", + "3", + "4" + ] + } + }, + { + "name": "persons", + "role": "feature", + "semantic_type": "categorical", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 3, + "unique_ratio": 0.002171, + "example_values": [ + "2", + "4", + "more" + ] + } + }, + { + "name": "lug_boot", + "role": "feature", + "semantic_type": "categorical", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 3, + "unique_ratio": 0.002171, + "example_values": [ + "small", + "big", + "med" + ] + } + }, + { + "name": "safety", + "role": "feature", + "semantic_type": "categorical", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 3, + "unique_ratio": 0.002171, + "example_values": [ + "low", + "high", + "med" + ] + } + }, + { + "name": "class", + "role": "target", + "semantic_type": "categorical", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 4, + "unique_ratio": 0.002894, + "example_values": [ + "unacc", + "good", + "acc", + "vgood" + ] + } + } + ] +} \ No newline at end of file diff --git a/hyperparameter/c2/tabsyn/tabsyn-c2-20260505_040121/public_gate/public_gate_report.json b/hyperparameter/c2/tabsyn/tabsyn-c2-20260505_040121/public_gate/public_gate_report.json new file mode 100644 index 0000000000000000000000000000000000000000..2e4cdcb2a4e28e40d59b17a83e773f622b7636a5 --- /dev/null +++ b/hyperparameter/c2/tabsyn/tabsyn-c2-20260505_040121/public_gate/public_gate_report.json @@ -0,0 +1,37 @@ +{ + "dataset_id": "c2", + "status": "pass", + "checks": [ + { + "check_id": "PG001_csv_parse_ok", + "status": "pass" + }, + { + "check_id": "PG002_split_header_consistent", + "status": "pass" + }, + { + "check_id": "PG003_profile_header_match", + "status": "pass" + }, + { + "check_id": "PG004_missing_token_normalized", + "status": "pass" + }, + { + "check_id": "PG005_semantic_type_validated", + "status": "pass" + }, + { + "check_id": "PG006_target_defined_and_valid", + "status": "pass" + } + ], + "target_column": "class", + "task_type": "classification", + "input_splits": { + "train": "/data/jialinzhang/SynthesizePipeline-server/DatasetNew/c2/c2-train.csv", + "val": "/data/jialinzhang/SynthesizePipeline-server/DatasetNew/c2/c2-val.csv", + "test": "/data/jialinzhang/SynthesizePipeline-server/DatasetNew/c2/c2-test.csv" + } +} \ No newline at end of file diff --git a/hyperparameter/c2/tabsyn/tabsyn-c2-20260505_040121/public_gate/staged_input_manifest.json b/hyperparameter/c2/tabsyn/tabsyn-c2-20260505_040121/public_gate/staged_input_manifest.json new file mode 100644 index 0000000000000000000000000000000000000000..6619e6d061a1a398163ec12a9be14287db106792 --- /dev/null +++ b/hyperparameter/c2/tabsyn/tabsyn-c2-20260505_040121/public_gate/staged_input_manifest.json @@ -0,0 +1,149 @@ +{ + "dataset_id": "c2", + "target_column": "class", + "task_type": "classification", + "train_csv": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/c2/tabsyn/tabsyn-c2-20260505_040121/staged/public/train.csv", + "val_csv": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/c2/tabsyn/tabsyn-c2-20260505_040121/staged/public/val.csv", + "test_csv": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/c2/tabsyn/tabsyn-c2-20260505_040121/staged/public/test.csv", + "features_json": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/c2/tabsyn/tabsyn-c2-20260505_040121/staged/public/staged_features.json", + "public_gate_report": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/c2/tabsyn/tabsyn-c2-20260505_040121/public_gate/public_gate_report.json", + "column_schema": [ + { + "name": "buying", + "role": "feature", + "semantic_type": "categorical", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 4, + "unique_ratio": 0.002894, + "example_values": [ + "vhigh", + "med", + "high", + "low" + ] + } + }, + { + "name": "maint", + "role": "feature", + "semantic_type": "categorical", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 4, + "unique_ratio": 0.002894, + "example_values": [ + "vhigh", + "low", + "med", + "high" + ] + } + }, + { + "name": "doors", + "role": "feature", + "semantic_type": "categorical", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 4, + "unique_ratio": 0.002894, + "example_values": [ + "2", + "5more", + "3", + "4" + ] + } + }, + { + "name": "persons", + "role": "feature", + "semantic_type": "categorical", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 3, + "unique_ratio": 0.002171, + "example_values": [ + "2", + "4", + "more" + ] + } + }, + { + "name": "lug_boot", + "role": "feature", + "semantic_type": "categorical", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 3, + "unique_ratio": 0.002171, + "example_values": [ + "small", + "big", + "med" + ] + } + }, + { + "name": "safety", + "role": "feature", + "semantic_type": "categorical", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 3, + "unique_ratio": 0.002171, + "example_values": [ + "low", + "high", + "med" + ] + } + }, + { + "name": "class", + "role": "target", + "semantic_type": "categorical", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 4, + "unique_ratio": 0.002894, + "example_values": [ + "unacc", + "good", + "acc", + "vgood" + ] + } + } + ] +} \ No newline at end of file diff --git a/hyperparameter/c2/tabsyn/tabsyn-c2-20260505_040121/run_config.json b/hyperparameter/c2/tabsyn/tabsyn-c2-20260505_040121/run_config.json new file mode 100644 index 0000000000000000000000000000000000000000..d81eecc309dbf90a2795d6f8761fc202a7201219 --- /dev/null +++ b/hyperparameter/c2/tabsyn/tabsyn-c2-20260505_040121/run_config.json @@ -0,0 +1,48 @@ +{ + "schema_version": 1, + "recorded_at": "2026-05-05T04:01:21", + "dataset_id": "c2", + "model": "tabsyn", + "work_dir": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/c2/tabsyn/tabsyn-c2-20260505_040121", + "dataset_source_requested": "new", + "dataset_source_resolved": "new", + "cli_args": { + "model": "tabsyn", + "dataset": "c2", + "dataset_source": "new", + "train": true, + "generate": true, + "num_rows": 0, + "epochs": null, + "output_dir": null, + "model_dir": null, + "work_dir": null, + "resume": false, + "no_stats": false + }, + "resolved": { + "num_rows": 1382, + "model_path": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/c2/tabsyn/tabsyn-c2-20260505_040121", + "output_csv": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/c2/tabsyn/tabsyn-c2-20260505_040121/tabsyn-c2-1382-20260505_045652.csv" + }, + "input_artifacts": { + "public_gate_report": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/c2/tabsyn/tabsyn-c2-20260505_040121/public_gate/public_gate_report.json", + "public_manifest": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/c2/tabsyn/tabsyn-c2-20260505_040121/public_gate/staged_input_manifest.json", + "model_manifest": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/c2/tabsyn/tabsyn-c2-20260505_040121/staged/tabsyn/model_input_manifest.json", + "train_csv": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/c2/tabsyn/tabsyn-c2-20260505_040121/staged/public/train.csv", + "features_json": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/c2/tabsyn/tabsyn-c2-20260505_040121/staged/public/staged_features.json", + "target_column": "class", + "task_type": "classification" + }, + "env_overrides": { + "BENCHMARK_TABSYN_GPUS": "device=3", + "TABSYN_DIFFUSION_MAX_EPOCHS": "3", + "TABSYN_RESUME": "0", + "TABSYN_VAE_BATCH_SIZE": "128", + "TABSYN_VAE_ENCODE_BATCH_SIZE": "256", + "TABSYN_VAE_EPOCHS": "3", + "TABSYN_VAE_EVAL_BATCH_SIZE": "256", + "TABSYN_VAE_INFER_BATCH_SIZE": "256", + "TABSYN_VAE_NUM_WORKERS": "0" + } +} \ No newline at end of file diff --git a/hyperparameter/c2/tabsyn/tabsyn-c2-20260505_040121/runtime_result.json b/hyperparameter/c2/tabsyn/tabsyn-c2-20260505_040121/runtime_result.json new file mode 100644 index 0000000000000000000000000000000000000000..4fdfc07e2b6c3d6e13b83efa31727cabec1261d3 --- /dev/null +++ b/hyperparameter/c2/tabsyn/tabsyn-c2-20260505_040121/runtime_result.json @@ -0,0 +1,27 @@ +{ + "dataset_id": "c2", + "model": "tabsyn", + "run_id": "tabsyn-c2-20260505_040121", + "public_gate_status": "pass", + "adapter_ready_status": "pass", + "train_status": "success", + "generate_status": "success", + "reason_code": null, + "reason_detail": null, + "artifacts": { + "synthetic_csv": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/c2/tabsyn/tabsyn-c2-20260505_040121/tabsyn-c2-1382-20260505_045652.csv", + "model_path": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/c2/tabsyn/tabsyn-c2-20260505_040121" + }, + "timings": { + "train": { + "started_at": "2026-05-05T04:01:21", + "ended_at": "2026-05-05T04:56:52", + "duration_sec": 3331.009 + }, + "generate": { + "started_at": "2026-05-05T04:56:52", + "ended_at": "2026-05-05T04:56:58", + "duration_sec": 5.801 + } + } +} \ No newline at end of file diff --git a/hyperparameter/c2/tabsyn/tabsyn-c2-20260505_040121/staged/public/staged_features.json b/hyperparameter/c2/tabsyn/tabsyn-c2-20260505_040121/staged/public/staged_features.json new file mode 100644 index 0000000000000000000000000000000000000000..61783861dd5de501592f76acb0469cf3f3b2622a --- /dev/null +++ b/hyperparameter/c2/tabsyn/tabsyn-c2-20260505_040121/staged/public/staged_features.json @@ -0,0 +1,37 @@ +[ + { + "feature_name": "buying", + "data_type": "categorical", + "is_target": false + }, + { + "feature_name": "maint", + "data_type": "categorical", + "is_target": false + }, + { + "feature_name": "doors", + "data_type": "categorical", + "is_target": false + }, + { + "feature_name": "persons", + "data_type": "categorical", + "is_target": false + }, + { + "feature_name": "lug_boot", + "data_type": "categorical", + "is_target": false + }, + { + "feature_name": "safety", + "data_type": "categorical", + "is_target": false + }, + { + "feature_name": "class", + "data_type": "categorical", + "is_target": true + } +] \ No newline at end of file diff --git a/hyperparameter/c2/tabsyn/tabsyn-c2-20260505_040121/staged/public/test.csv b/hyperparameter/c2/tabsyn/tabsyn-c2-20260505_040121/staged/public/test.csv new file mode 100644 index 0000000000000000000000000000000000000000..392a0d7189a34d8f13ecf20a99d64b03230d517c --- /dev/null +++ b/hyperparameter/c2/tabsyn/tabsyn-c2-20260505_040121/staged/public/test.csv @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:b48114a7d0bc5bd9a07920f903c8d4aba8bf98bf2a66a050da03588b0245ca73 +size 5273 diff --git a/hyperparameter/c2/tabsyn/tabsyn-c2-20260505_040121/staged/public/train.csv b/hyperparameter/c2/tabsyn/tabsyn-c2-20260505_040121/staged/public/train.csv new file mode 100644 index 0000000000000000000000000000000000000000..da4f4d55134eebc0e51157d0d467536371db1484 --- /dev/null +++ b/hyperparameter/c2/tabsyn/tabsyn-c2-20260505_040121/staged/public/train.csv @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:4aed00c2c2b3f88a55a7ebff31b2e1b5e0e32fb0a7267e0b9d2779cd23e434dd +size 41565 diff --git a/hyperparameter/c2/tabsyn/tabsyn-c2-20260505_040121/staged/public/val.csv b/hyperparameter/c2/tabsyn/tabsyn-c2-20260505_040121/staged/public/val.csv new file mode 100644 index 0000000000000000000000000000000000000000..af8caf7ee42524188534a3daf32996dc491952d9 --- /dev/null +++ b/hyperparameter/c2/tabsyn/tabsyn-c2-20260505_040121/staged/public/val.csv @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:26e90c1170a57a14c05832ac88027722b1f3848f9662c7c09ef7c93dcba4cc01 +size 5176 diff --git a/hyperparameter/c2/tabsyn/tabsyn-c2-20260505_040121/staged/tabsyn/adapter_report.json b/hyperparameter/c2/tabsyn/tabsyn-c2-20260505_040121/staged/tabsyn/adapter_report.json new file mode 100644 index 0000000000000000000000000000000000000000..b8b9bb07ccdd08e6dedae31c988c5fc0ea0974e2 --- /dev/null +++ b/hyperparameter/c2/tabsyn/tabsyn-c2-20260505_040121/staged/tabsyn/adapter_report.json @@ -0,0 +1,7 @@ +{ + "adapter_ready_status": "pass", + "adapter_fail_reason_code": null, + "adapter_fail_detail": null, + "adapter_transforms_applied": [], + "model_input_manifest": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/c2/tabsyn/tabsyn-c2-20260505_040121/staged/tabsyn/model_input_manifest.json" +} \ No newline at end of file diff --git a/hyperparameter/c2/tabsyn/tabsyn-c2-20260505_040121/staged/tabsyn/adapter_transforms_applied.json b/hyperparameter/c2/tabsyn/tabsyn-c2-20260505_040121/staged/tabsyn/adapter_transforms_applied.json new file mode 100644 index 0000000000000000000000000000000000000000..0637a088a01e8ddab3bf3fa98dbe804cbde1a0dc --- /dev/null +++ b/hyperparameter/c2/tabsyn/tabsyn-c2-20260505_040121/staged/tabsyn/adapter_transforms_applied.json @@ -0,0 +1 @@ +[] \ No newline at end of file diff --git a/hyperparameter/c2/tabsyn/tabsyn-c2-20260505_040121/staged/tabsyn/model_input_manifest.json b/hyperparameter/c2/tabsyn/tabsyn-c2-20260505_040121/staged/tabsyn/model_input_manifest.json new file mode 100644 index 0000000000000000000000000000000000000000..9a464259825f6d2dd8e0b77fab5180524d7ddabb --- /dev/null +++ b/hyperparameter/c2/tabsyn/tabsyn-c2-20260505_040121/staged/tabsyn/model_input_manifest.json @@ -0,0 +1,151 @@ +{ + "dataset_id": "c2", + "model": "tabsyn", + "target_column": "class", + "task_type": "classification", + "column_schema": [ + { + "name": "buying", + "role": "feature", + "semantic_type": "categorical", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 4, + "unique_ratio": 0.002894, + "example_values": [ + "vhigh", + "med", + "high", + "low" + ] + } + }, + { + "name": "maint", + "role": "feature", + "semantic_type": "categorical", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 4, + "unique_ratio": 0.002894, + "example_values": [ + "vhigh", + "low", + "med", + "high" + ] + } + }, + { + "name": "doors", + "role": "feature", + "semantic_type": "categorical", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 4, + "unique_ratio": 0.002894, + "example_values": [ + "2", + "5more", + "3", + "4" + ] + } + }, + { + "name": "persons", + "role": "feature", + "semantic_type": "categorical", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 3, + "unique_ratio": 0.002171, + "example_values": [ + "2", + "4", + "more" + ] + } + }, + { + "name": "lug_boot", + "role": "feature", + "semantic_type": "categorical", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 3, + "unique_ratio": 0.002171, + "example_values": [ + "small", + "big", + "med" + ] + } + }, + { + "name": "safety", + "role": "feature", + "semantic_type": "categorical", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 3, + "unique_ratio": 0.002171, + "example_values": [ + "low", + "high", + "med" + ] + } + }, + { + "name": "class", + "role": "target", + "semantic_type": "categorical", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 4, + "unique_ratio": 0.002894, + "example_values": [ + "unacc", + "good", + "acc", + "vgood" + ] + } + } + ], + "public_manifest": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/c2/tabsyn/tabsyn-c2-20260505_040121/public_gate/staged_input_manifest.json", + "train_csv": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/c2/tabsyn/tabsyn-c2-20260505_040121/staged/public/train.csv", + "val_csv": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/c2/tabsyn/tabsyn-c2-20260505_040121/staged/public/val.csv", + "test_csv": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/c2/tabsyn/tabsyn-c2-20260505_040121/staged/public/test.csv", + "features_json": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/c2/tabsyn/tabsyn-c2-20260505_040121/staged/public/staged_features.json", + "public_gate_report": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/c2/tabsyn/tabsyn-c2-20260505_040121/public_gate/public_gate_report.json" +} \ No newline at end of file diff --git a/hyperparameter/c2/tabsyn/tabsyn-c2-20260505_040121/synthetic/tabsyn_c2/real.csv b/hyperparameter/c2/tabsyn/tabsyn-c2-20260505_040121/synthetic/tabsyn_c2/real.csv new file mode 100644 index 0000000000000000000000000000000000000000..94d40776e20a2226c5a316fc3eaf8b74b8513970 --- /dev/null +++ b/hyperparameter/c2/tabsyn/tabsyn-c2-20260505_040121/synthetic/tabsyn_c2/real.csv @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:3e7b4d4a1f787d81e53eddffbd43603149e1dd038d94b4c0244340ff4a2e4511 +size 19397 diff --git a/hyperparameter/c2/tabsyn/tabsyn-c2-20260505_040121/synthetic/tabsyn_c2/test.csv b/hyperparameter/c2/tabsyn/tabsyn-c2-20260505_040121/synthetic/tabsyn_c2/test.csv new file mode 100644 index 0000000000000000000000000000000000000000..94d40776e20a2226c5a316fc3eaf8b74b8513970 --- /dev/null +++ b/hyperparameter/c2/tabsyn/tabsyn-c2-20260505_040121/synthetic/tabsyn_c2/test.csv @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:3e7b4d4a1f787d81e53eddffbd43603149e1dd038d94b4c0244340ff4a2e4511 +size 19397 diff --git a/hyperparameter/c2/tabsyn/tabsyn-c2-20260505_040121/tabsyn-c2-1382-20260505_045652.csv b/hyperparameter/c2/tabsyn/tabsyn-c2-20260505_040121/tabsyn-c2-1382-20260505_045652.csv new file mode 100644 index 0000000000000000000000000000000000000000..b8bbfd0083cbd7a3f4ab8bd2bd9404ad0aa4da9c --- /dev/null +++ b/hyperparameter/c2/tabsyn/tabsyn-c2-20260505_040121/tabsyn-c2-1382-20260505_045652.csv @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:916d159c212638bde2d9d6eea6f128f238a97e640d35315a05787333b4786ce5 +size 22233 diff --git a/hyperparameter/c2/tabsyn/tabsyn-c2-20260505_040121/train_20260505_040121.log b/hyperparameter/c2/tabsyn/tabsyn-c2-20260505_040121/train_20260505_040121.log new file mode 100644 index 0000000000000000000000000000000000000000..c00629ebfeb3ec6135156bc2b840926e6bb5e45a --- /dev/null +++ b/hyperparameter/c2/tabsyn/tabsyn-c2-20260505_040121/train_20260505_040121.log @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:932c8e0cd49f8bc34ff7216444fa250e13ce09c77dbb271b5a4cd20a31b6de6c +size 3472789 diff --git a/hyperparameter/c2/tabsyn/tabsyn-c2-20260505_045714/_tabsyn_sample.py b/hyperparameter/c2/tabsyn/tabsyn-c2-20260505_045714/_tabsyn_sample.py new file mode 100644 index 0000000000000000000000000000000000000000..02017d3663f5009274466fac6ff54b2e1103d93c --- /dev/null +++ b/hyperparameter/c2/tabsyn/tabsyn-c2-20260505_045714/_tabsyn_sample.py @@ -0,0 +1,43 @@ +import os, sys, subprocess + +work_dir = "/work/output-Benchmark-trainonly-v1/c2/tabsyn/tabsyn-c2-20260505_045714" +dataname = "tabsyn_c2" +output_csv = "/work/output-Benchmark-trainonly-v1/c2/tabsyn/tabsyn-c2-20260505_045714/tabsyn-c2-1382-20260505_054901.csv" +tabsyn_root = "/workspace/tabsyn" + +assert os.path.exists(tabsyn_root), f"TabSyn source not mounted: {tabsyn_root}" + +old = os.environ.get("PYTHONPATH", "") +os.environ["PYTHONPATH"] = tabsyn_root + (os.pathsep + old if old else "") +sys.path.insert(0, tabsyn_root) + +os.chdir(tabsyn_root) + +# Ensure data symlink exists +data_link = os.path.join(tabsyn_root, "data", dataname) +data_src = os.path.join(work_dir, "data", dataname) +os.makedirs(os.path.join(tabsyn_root, "data"), exist_ok=True) +if os.path.exists(data_link): + os.remove(data_link) +os.symlink(data_src, data_link) + +print(f"[TabSyn] Sampling 1382 rows") +env = os.environ.copy() +env.setdefault("TABSYN_RESUME", "0") +env.setdefault("TABSYN_VAE_BATCH_SIZE", "32") +env.setdefault("TABSYN_VAE_EVAL_BATCH_SIZE", env["TABSYN_VAE_BATCH_SIZE"]) +env.setdefault("TABSYN_VAE_INFER_BATCH_SIZE", env["TABSYN_VAE_BATCH_SIZE"]) +env.setdefault("TABSYN_VAE_ENCODE_BATCH_SIZE", env["TABSYN_VAE_BATCH_SIZE"]) +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/hyperparameter/c2/tabsyn/tabsyn-c2-20260505_045714/_tabsyn_train.py b/hyperparameter/c2/tabsyn/tabsyn-c2-20260505_045714/_tabsyn_train.py new file mode 100644 index 0000000000000000000000000000000000000000..2ba6e891f6b5357a6a88b2f4f7da17a3fd863daa --- /dev/null +++ b/hyperparameter/c2/tabsyn/tabsyn-c2-20260505_045714/_tabsyn_train.py @@ -0,0 +1,69 @@ +import os, sys, subprocess + +work_dir = "/work/output-Benchmark-trainonly-v1/c2/tabsyn/tabsyn-c2-20260505_045714" +dataname = "tabsyn_c2" +tabsyn_root = "/workspace/tabsyn" + +assert os.path.exists(tabsyn_root), f"TabSyn source not mounted: {tabsyn_root}" + +old = os.environ.get("PYTHONPATH", "") +os.environ["PYTHONPATH"] = tabsyn_root + (os.pathsep + old if old else "") +sys.path.insert(0, tabsyn_root) + +os.chdir(tabsyn_root) + +# Symlink data dir into TabSyn data/ +data_link = os.path.join(tabsyn_root, "data", dataname) +data_src = os.path.join(work_dir, "data", dataname) +os.makedirs(os.path.join(tabsyn_root, "data"), exist_ok=True) +if os.path.exists(data_link): + os.remove(data_link) +os.symlink(data_src, data_link) + +env = os.environ.copy() +env.setdefault("TABSYN_RESUME", "0") +env.setdefault("TABSYN_VAE_BATCH_SIZE", "32") +env.setdefault("TABSYN_VAE_NUM_WORKERS", "0") +env.setdefault("TABSYN_VAE_EVAL_BATCH_SIZE", env["TABSYN_VAE_BATCH_SIZE"]) +env.setdefault("TABSYN_VAE_INFER_BATCH_SIZE", env["TABSYN_VAE_BATCH_SIZE"]) +env.setdefault("TABSYN_VAE_ENCODE_BATCH_SIZE", env["TABSYN_VAE_BATCH_SIZE"]) +# Safer defaults for wide tables on Docker: reduce shared-memory pressure in diffusion DataLoader. +env.setdefault("TABSYN_DIFFUSION_NUM_WORKERS", "0") +_te = None +if _te is not None: + env["TABSYN_VAE_EPOCHS"] = str(_te) + env["TABSYN_DIFFUSION_MAX_EPOCHS"] = str(max(_te + 1, 2)) + +# Data preprocessing is done on the host side (_prepare_data_dir) +# which creates .npy files, train/test CSVs, and info.json + +# Step 1: Train VAE (produces latent embeddings) +print(f"[TabSyn] Step 1/2: Training VAE in {tabsyn_root}, dataname={dataname}") +ret = subprocess.run( + [sys.executable, "main.py", + "--dataname", dataname, + "--mode", "train", + "--method", "vae", + "--gpu", "0"], + cwd=tabsyn_root, + env=env +) +if ret.returncode != 0: + print("[TabSyn] VAE training failed") + sys.exit(ret.returncode) + +# Step 2: Train diffusion model on latent space +print(f"[TabSyn] Step 2/2: Training diffusion model") +ret = subprocess.run( + [sys.executable, "main.py", + "--dataname", dataname, + "--mode", "train", + "--method", "tabsyn", + "--gpu", "0"], + cwd=tabsyn_root, + env=env +) +if ret.returncode != 0: + print("[TabSyn] Diffusion training failed") + sys.exit(ret.returncode) +print("[TabSyn] Training complete (VAE + Diffusion)") diff --git a/hyperparameter/c2/tabsyn/tabsyn-c2-20260505_045714/data/tabsyn_c2/X_cat_test.npy b/hyperparameter/c2/tabsyn/tabsyn-c2-20260505_045714/data/tabsyn_c2/X_cat_test.npy new file mode 100644 index 0000000000000000000000000000000000000000..6cf4fc75ff61837a47172e845d2942ba68f4ccd1 --- /dev/null +++ b/hyperparameter/c2/tabsyn/tabsyn-c2-20260505_045714/data/tabsyn_c2/X_cat_test.npy @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:0e9f5e299905cfd50c63688fb7b818aeec0d802b14338f705ec09d39826ac9c2 +size 55408 diff --git a/hyperparameter/c2/tabsyn/tabsyn-c2-20260505_045714/data/tabsyn_c2/X_cat_train.npy b/hyperparameter/c2/tabsyn/tabsyn-c2-20260505_045714/data/tabsyn_c2/X_cat_train.npy new file mode 100644 index 0000000000000000000000000000000000000000..6cf4fc75ff61837a47172e845d2942ba68f4ccd1 --- /dev/null +++ b/hyperparameter/c2/tabsyn/tabsyn-c2-20260505_045714/data/tabsyn_c2/X_cat_train.npy @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:0e9f5e299905cfd50c63688fb7b818aeec0d802b14338f705ec09d39826ac9c2 +size 55408 diff --git a/hyperparameter/c2/tabsyn/tabsyn-c2-20260505_045714/data/tabsyn_c2/X_num_test.npy b/hyperparameter/c2/tabsyn/tabsyn-c2-20260505_045714/data/tabsyn_c2/X_num_test.npy new file mode 100644 index 0000000000000000000000000000000000000000..9a71edeab7a22756c9090743b5d0fde204acfb75 --- /dev/null +++ b/hyperparameter/c2/tabsyn/tabsyn-c2-20260505_045714/data/tabsyn_c2/X_num_test.npy @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:f937731a3e7785676e9f861e44eddab69c323327e03bdd1f6e8755c5321538fb +size 5656 diff --git a/hyperparameter/c2/tabsyn/tabsyn-c2-20260505_045714/data/tabsyn_c2/X_num_train.npy b/hyperparameter/c2/tabsyn/tabsyn-c2-20260505_045714/data/tabsyn_c2/X_num_train.npy new file mode 100644 index 0000000000000000000000000000000000000000..9a71edeab7a22756c9090743b5d0fde204acfb75 --- /dev/null +++ b/hyperparameter/c2/tabsyn/tabsyn-c2-20260505_045714/data/tabsyn_c2/X_num_train.npy @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:f937731a3e7785676e9f861e44eddab69c323327e03bdd1f6e8755c5321538fb +size 5656 diff --git a/hyperparameter/c2/tabsyn/tabsyn-c2-20260505_045714/data/tabsyn_c2/info.json b/hyperparameter/c2/tabsyn/tabsyn-c2-20260505_045714/data/tabsyn_c2/info.json new file mode 100644 index 0000000000000000000000000000000000000000..3d85c74a88f8b29c5054c0455ce2f895b74cc726 --- /dev/null +++ b/hyperparameter/c2/tabsyn/tabsyn-c2-20260505_045714/data/tabsyn_c2/info.json @@ -0,0 +1,89 @@ +{ + "name": "tabsyn_c2", + "task_type": "multiclass", + "n_num_features": 1, + "n_cat_features": 5, + "train_size": 1382, + "num_col_idx": [ + 0 + ], + "cat_col_idx": [ + 1, + 2, + 3, + 4, + 5 + ], + "target_col_idx": [ + 6 + ], + "column_names": [ + "buying", + "maint", + "doors", + "persons", + "lug_boot", + "safety", + "class" + ], + "train_num": 1382, + "test_num": 1382, + "header": 0, + "file_type": "csv", + "data_path": "data/tabsyn_c2/train.csv", + "test_path": null, + "idx_mapping": { + "0": 0, + "1": 1, + "2": 2, + "3": 3, + "4": 4, + "5": 5, + "6": 6 + }, + "inverse_idx_mapping": { + "0": 0, + "1": 1, + "2": 2, + "3": 3, + "4": 4, + "5": 5, + "6": 6 + }, + "idx_name_mapping": { + "0": "buying", + "1": "maint", + "2": "doors", + "3": "persons", + "4": "lug_boot", + "5": "safety", + "6": "class" + }, + "n_classes": 4, + "metadata": { + "columns": { + "0": { + "sdtype": "numerical", + "computer_representation": "Float" + }, + "1": { + "sdtype": "categorical" + }, + "2": { + "sdtype": "categorical" + }, + "3": { + "sdtype": "categorical" + }, + "4": { + "sdtype": "categorical" + }, + "5": { + "sdtype": "categorical" + }, + "6": { + "sdtype": "categorical" + } + } + } +} \ No newline at end of file diff --git a/hyperparameter/c2/tabsyn/tabsyn-c2-20260505_045714/data/tabsyn_c2/test.csv b/hyperparameter/c2/tabsyn/tabsyn-c2-20260505_045714/data/tabsyn_c2/test.csv new file mode 100644 index 0000000000000000000000000000000000000000..94d40776e20a2226c5a316fc3eaf8b74b8513970 --- /dev/null +++ b/hyperparameter/c2/tabsyn/tabsyn-c2-20260505_045714/data/tabsyn_c2/test.csv @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:3e7b4d4a1f787d81e53eddffbd43603149e1dd038d94b4c0244340ff4a2e4511 +size 19397 diff --git a/hyperparameter/c2/tabsyn/tabsyn-c2-20260505_045714/data/tabsyn_c2/train.csv b/hyperparameter/c2/tabsyn/tabsyn-c2-20260505_045714/data/tabsyn_c2/train.csv new file mode 100644 index 0000000000000000000000000000000000000000..94d40776e20a2226c5a316fc3eaf8b74b8513970 --- /dev/null +++ b/hyperparameter/c2/tabsyn/tabsyn-c2-20260505_045714/data/tabsyn_c2/train.csv @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:3e7b4d4a1f787d81e53eddffbd43603149e1dd038d94b4c0244340ff4a2e4511 +size 19397 diff --git a/hyperparameter/c2/tabsyn/tabsyn-c2-20260505_045714/data/tabsyn_c2/y_test.npy b/hyperparameter/c2/tabsyn/tabsyn-c2-20260505_045714/data/tabsyn_c2/y_test.npy new file mode 100644 index 0000000000000000000000000000000000000000..108cc1504a0828881e00ae2e843ec55f1a447337 --- /dev/null +++ b/hyperparameter/c2/tabsyn/tabsyn-c2-20260505_045714/data/tabsyn_c2/y_test.npy @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:f88f9f2d088513402a20e38e046da314636957e28ee86d4df15ac0dfc9fce867 +size 11184 diff --git a/hyperparameter/c2/tabsyn/tabsyn-c2-20260505_045714/data/tabsyn_c2/y_train.npy b/hyperparameter/c2/tabsyn/tabsyn-c2-20260505_045714/data/tabsyn_c2/y_train.npy new file mode 100644 index 0000000000000000000000000000000000000000..108cc1504a0828881e00ae2e843ec55f1a447337 --- /dev/null +++ b/hyperparameter/c2/tabsyn/tabsyn-c2-20260505_045714/data/tabsyn_c2/y_train.npy @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:f88f9f2d088513402a20e38e046da314636957e28ee86d4df15ac0dfc9fce867 +size 11184 diff --git a/hyperparameter/c2/tabsyn/tabsyn-c2-20260505_045714/gen_20260505_054901.log b/hyperparameter/c2/tabsyn/tabsyn-c2-20260505_045714/gen_20260505_054901.log new file mode 100644 index 0000000000000000000000000000000000000000..5e60f7fd5b17cb6cf22349bbd5c744adcef88576 --- /dev/null +++ b/hyperparameter/c2/tabsyn/tabsyn-c2-20260505_045714/gen_20260505_054901.log @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:c80d4f236b7b767b97819df084545134543180434a42841c266899a01febdf34 +size 939 diff --git a/hyperparameter/c2/tabsyn/tabsyn-c2-20260505_045714/input_snapshot.json b/hyperparameter/c2/tabsyn/tabsyn-c2-20260505_045714/input_snapshot.json new file mode 100644 index 0000000000000000000000000000000000000000..7d3fddeb570e67b127ac5aef0d448cae7e934e6c --- /dev/null +++ b/hyperparameter/c2/tabsyn/tabsyn-c2-20260505_045714/input_snapshot.json @@ -0,0 +1,36 @@ +{ + "dataset_id": "c2", + "model": "tabsyn", + "inputs": { + "train_csv": { + "path": "/data/jialinzhang/SynthesizePipeline-server/DatasetNew/c2/c2-train.csv", + "exists": true, + "size": 42948, + "sha256": "17bc560fa96bd00fb3b526e1e65bc91210b701d0d0a4e8bb9b4c5196cab56def" + }, + "val_csv": { + "path": "/data/jialinzhang/SynthesizePipeline-server/DatasetNew/c2/c2-val.csv", + "exists": true, + "size": 5349, + "sha256": "61e565eca62e65a7dccd9d51039a3170413379e10fc494e25870e7c4294863c9" + }, + "test_csv": { + "path": "/data/jialinzhang/SynthesizePipeline-server/DatasetNew/c2/c2-test.csv", + "exists": true, + "size": 5448, + "sha256": "cbcbb062a1faf5fa44b66c80532baa229e05b94fc42137269761e6c6d84af20a" + }, + "profile_json": { + "path": "/data/jialinzhang/SynthesizePipeline-server/DatasetNew/artifacts/data_core/tabular/c2/c2-dataset_profile.json", + "exists": true, + "size": 3240, + "sha256": "526b7163b2076c93c0bf4638438081ee8a6907065d5b608faa40d1a3dbc2a27b" + }, + "contract_json": { + "path": "/data/jialinzhang/SynthesizePipeline-server/DatasetNew/artifacts/data_core/tabular/c2/c2-dataset_contract_v1.json", + "exists": true, + "size": 3731, + "sha256": "fb595a876054c2ee9b4e10cfe83a5691588de1d25466cbb9d473c18ad3604009" + } + } +} \ No newline at end of file diff --git a/hyperparameter/c2/tabsyn/tabsyn-c2-20260505_045714/public_gate/normalized_schema_snapshot.json b/hyperparameter/c2/tabsyn/tabsyn-c2-20260505_045714/public_gate/normalized_schema_snapshot.json new file mode 100644 index 0000000000000000000000000000000000000000..689b1d00d96508e44ba40e58dc4560e19afc2b3b --- /dev/null +++ b/hyperparameter/c2/tabsyn/tabsyn-c2-20260505_045714/public_gate/normalized_schema_snapshot.json @@ -0,0 +1,144 @@ +{ + "dataset_id": "c2", + "target_column": "class", + "task_type": "classification", + "columns": [ + { + "name": "buying", + "role": "feature", + "semantic_type": "categorical", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 4, + "unique_ratio": 0.002894, + "example_values": [ + "vhigh", + "med", + "high", + "low" + ] + } + }, + { + "name": "maint", + "role": "feature", + "semantic_type": "categorical", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 4, + "unique_ratio": 0.002894, + "example_values": [ + "vhigh", + "low", + "med", + "high" + ] + } + }, + { + "name": "doors", + "role": "feature", + "semantic_type": "categorical", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 4, + "unique_ratio": 0.002894, + "example_values": [ + "2", + "5more", + "3", + "4" + ] + } + }, + { + "name": "persons", + "role": "feature", + "semantic_type": "categorical", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 3, + "unique_ratio": 0.002171, + "example_values": [ + "2", + "4", + "more" + ] + } + }, + { + "name": "lug_boot", + "role": "feature", + "semantic_type": "categorical", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 3, + "unique_ratio": 0.002171, + "example_values": [ + "small", + "big", + "med" + ] + } + }, + { + "name": "safety", + "role": "feature", + "semantic_type": "categorical", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 3, + "unique_ratio": 0.002171, + "example_values": [ + "low", + "high", + "med" + ] + } + }, + { + "name": "class", + "role": "target", + "semantic_type": "categorical", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 4, + "unique_ratio": 0.002894, + "example_values": [ + "unacc", + "good", + "acc", + "vgood" + ] + } + } + ] +} \ No newline at end of file diff --git a/hyperparameter/c2/tabsyn/tabsyn-c2-20260505_045714/public_gate/public_gate_report.json b/hyperparameter/c2/tabsyn/tabsyn-c2-20260505_045714/public_gate/public_gate_report.json new file mode 100644 index 0000000000000000000000000000000000000000..2e4cdcb2a4e28e40d59b17a83e773f622b7636a5 --- /dev/null +++ b/hyperparameter/c2/tabsyn/tabsyn-c2-20260505_045714/public_gate/public_gate_report.json @@ -0,0 +1,37 @@ +{ + "dataset_id": "c2", + "status": "pass", + "checks": [ + { + "check_id": "PG001_csv_parse_ok", + "status": "pass" + }, + { + "check_id": "PG002_split_header_consistent", + "status": "pass" + }, + { + "check_id": "PG003_profile_header_match", + "status": "pass" + }, + { + "check_id": "PG004_missing_token_normalized", + "status": "pass" + }, + { + "check_id": "PG005_semantic_type_validated", + "status": "pass" + }, + { + "check_id": "PG006_target_defined_and_valid", + "status": "pass" + } + ], + "target_column": "class", + "task_type": "classification", + "input_splits": { + "train": "/data/jialinzhang/SynthesizePipeline-server/DatasetNew/c2/c2-train.csv", + "val": "/data/jialinzhang/SynthesizePipeline-server/DatasetNew/c2/c2-val.csv", + "test": "/data/jialinzhang/SynthesizePipeline-server/DatasetNew/c2/c2-test.csv" + } +} \ No newline at end of file diff --git a/hyperparameter/c2/tabsyn/tabsyn-c2-20260505_045714/public_gate/staged_input_manifest.json b/hyperparameter/c2/tabsyn/tabsyn-c2-20260505_045714/public_gate/staged_input_manifest.json new file mode 100644 index 0000000000000000000000000000000000000000..5b413d4a8a1726a4693d1b5fc94f427ee0b2dc6e --- /dev/null +++ b/hyperparameter/c2/tabsyn/tabsyn-c2-20260505_045714/public_gate/staged_input_manifest.json @@ -0,0 +1,149 @@ +{ + "dataset_id": "c2", + "target_column": "class", + "task_type": "classification", + "train_csv": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/c2/tabsyn/tabsyn-c2-20260505_045714/staged/public/train.csv", + "val_csv": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/c2/tabsyn/tabsyn-c2-20260505_045714/staged/public/val.csv", + "test_csv": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/c2/tabsyn/tabsyn-c2-20260505_045714/staged/public/test.csv", + "features_json": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/c2/tabsyn/tabsyn-c2-20260505_045714/staged/public/staged_features.json", + "public_gate_report": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/c2/tabsyn/tabsyn-c2-20260505_045714/public_gate/public_gate_report.json", + "column_schema": [ + { + "name": "buying", + "role": "feature", + "semantic_type": "categorical", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 4, + "unique_ratio": 0.002894, + "example_values": [ + "vhigh", + "med", + "high", + "low" + ] + } + }, + { + "name": "maint", + "role": "feature", + "semantic_type": "categorical", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 4, + "unique_ratio": 0.002894, + "example_values": [ + "vhigh", + "low", + "med", + "high" + ] + } + }, + { + "name": "doors", + "role": "feature", + "semantic_type": "categorical", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 4, + "unique_ratio": 0.002894, + "example_values": [ + "2", + "5more", + "3", + "4" + ] + } + }, + { + "name": "persons", + "role": "feature", + "semantic_type": "categorical", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 3, + "unique_ratio": 0.002171, + "example_values": [ + "2", + "4", + "more" + ] + } + }, + { + "name": "lug_boot", + "role": "feature", + "semantic_type": "categorical", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 3, + "unique_ratio": 0.002171, + "example_values": [ + "small", + "big", + "med" + ] + } + }, + { + "name": "safety", + "role": "feature", + "semantic_type": "categorical", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 3, + "unique_ratio": 0.002171, + "example_values": [ + "low", + "high", + "med" + ] + } + }, + { + "name": "class", + "role": "target", + "semantic_type": "categorical", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 4, + "unique_ratio": 0.002894, + "example_values": [ + "unacc", + "good", + "acc", + "vgood" + ] + } + } + ] +} \ No newline at end of file diff --git a/hyperparameter/c2/tabsyn/tabsyn-c2-20260505_045714/run_config.json b/hyperparameter/c2/tabsyn/tabsyn-c2-20260505_045714/run_config.json new file mode 100644 index 0000000000000000000000000000000000000000..10029d066679ea24d403a26447c3aaf2493bb972 --- /dev/null +++ b/hyperparameter/c2/tabsyn/tabsyn-c2-20260505_045714/run_config.json @@ -0,0 +1,48 @@ +{ + "schema_version": 1, + "recorded_at": "2026-05-05T04:57:14", + "dataset_id": "c2", + "model": "tabsyn", + "work_dir": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/c2/tabsyn/tabsyn-c2-20260505_045714", + "dataset_source_requested": "new", + "dataset_source_resolved": "new", + "cli_args": { + "model": "tabsyn", + "dataset": "c2", + "dataset_source": "new", + "train": true, + "generate": true, + "num_rows": 0, + "epochs": null, + "output_dir": null, + "model_dir": null, + "work_dir": null, + "resume": false, + "no_stats": false + }, + "resolved": { + "num_rows": 1382, + "model_path": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/c2/tabsyn/tabsyn-c2-20260505_045714", + "output_csv": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/c2/tabsyn/tabsyn-c2-20260505_045714/tabsyn-c2-1382-20260505_054901.csv" + }, + "input_artifacts": { + "public_gate_report": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/c2/tabsyn/tabsyn-c2-20260505_045714/public_gate/public_gate_report.json", + "public_manifest": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/c2/tabsyn/tabsyn-c2-20260505_045714/public_gate/staged_input_manifest.json", + "model_manifest": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/c2/tabsyn/tabsyn-c2-20260505_045714/staged/tabsyn/model_input_manifest.json", + "train_csv": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/c2/tabsyn/tabsyn-c2-20260505_045714/staged/public/train.csv", + "features_json": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/c2/tabsyn/tabsyn-c2-20260505_045714/staged/public/staged_features.json", + "target_column": "class", + "task_type": "classification" + }, + "env_overrides": { + "BENCHMARK_TABSYN_GPUS": "device=3", + "TABSYN_DIFFUSION_MAX_EPOCHS": "5", + "TABSYN_RESUME": "0", + "TABSYN_VAE_BATCH_SIZE": "128", + "TABSYN_VAE_ENCODE_BATCH_SIZE": "256", + "TABSYN_VAE_EPOCHS": "5", + "TABSYN_VAE_EVAL_BATCH_SIZE": "256", + "TABSYN_VAE_INFER_BATCH_SIZE": "256", + "TABSYN_VAE_NUM_WORKERS": "0" + } +} \ No newline at end of file diff --git a/hyperparameter/c2/tabsyn/tabsyn-c2-20260505_045714/runtime_result.json b/hyperparameter/c2/tabsyn/tabsyn-c2-20260505_045714/runtime_result.json new file mode 100644 index 0000000000000000000000000000000000000000..1d79a40adeaac27163e03a9d25cf131c6c19d55f --- /dev/null +++ b/hyperparameter/c2/tabsyn/tabsyn-c2-20260505_045714/runtime_result.json @@ -0,0 +1,27 @@ +{ + "dataset_id": "c2", + "model": "tabsyn", + "run_id": "tabsyn-c2-20260505_045714", + "public_gate_status": "pass", + "adapter_ready_status": "pass", + "train_status": "success", + "generate_status": "success", + "reason_code": null, + "reason_detail": null, + "artifacts": { + "synthetic_csv": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/c2/tabsyn/tabsyn-c2-20260505_045714/tabsyn-c2-1382-20260505_054901.csv", + "model_path": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/c2/tabsyn/tabsyn-c2-20260505_045714" + }, + "timings": { + "train": { + "started_at": "2026-05-05T04:57:14", + "ended_at": "2026-05-05T05:49:01", + "duration_sec": 3107.525 + }, + "generate": { + "started_at": "2026-05-05T05:49:01", + "ended_at": "2026-05-05T05:49:07", + "duration_sec": 5.547 + } + } +} \ No newline at end of file diff --git a/hyperparameter/c2/tabsyn/tabsyn-c2-20260505_045714/staged/public/staged_features.json b/hyperparameter/c2/tabsyn/tabsyn-c2-20260505_045714/staged/public/staged_features.json new file mode 100644 index 0000000000000000000000000000000000000000..61783861dd5de501592f76acb0469cf3f3b2622a --- /dev/null +++ b/hyperparameter/c2/tabsyn/tabsyn-c2-20260505_045714/staged/public/staged_features.json @@ -0,0 +1,37 @@ +[ + { + "feature_name": "buying", + "data_type": "categorical", + "is_target": false + }, + { + "feature_name": "maint", + "data_type": "categorical", + "is_target": false + }, + { + "feature_name": "doors", + "data_type": "categorical", + "is_target": false + }, + { + "feature_name": "persons", + "data_type": "categorical", + "is_target": false + }, + { + "feature_name": "lug_boot", + "data_type": "categorical", + "is_target": false + }, + { + "feature_name": "safety", + "data_type": "categorical", + "is_target": false + }, + { + "feature_name": "class", + "data_type": "categorical", + "is_target": true + } +] \ No newline at end of file diff --git a/hyperparameter/c2/tabsyn/tabsyn-c2-20260505_045714/staged/public/test.csv b/hyperparameter/c2/tabsyn/tabsyn-c2-20260505_045714/staged/public/test.csv new file mode 100644 index 0000000000000000000000000000000000000000..392a0d7189a34d8f13ecf20a99d64b03230d517c --- /dev/null +++ b/hyperparameter/c2/tabsyn/tabsyn-c2-20260505_045714/staged/public/test.csv @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:b48114a7d0bc5bd9a07920f903c8d4aba8bf98bf2a66a050da03588b0245ca73 +size 5273 diff --git a/hyperparameter/c2/tabsyn/tabsyn-c2-20260505_045714/staged/public/train.csv b/hyperparameter/c2/tabsyn/tabsyn-c2-20260505_045714/staged/public/train.csv new file mode 100644 index 0000000000000000000000000000000000000000..da4f4d55134eebc0e51157d0d467536371db1484 --- /dev/null +++ b/hyperparameter/c2/tabsyn/tabsyn-c2-20260505_045714/staged/public/train.csv @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:4aed00c2c2b3f88a55a7ebff31b2e1b5e0e32fb0a7267e0b9d2779cd23e434dd +size 41565 diff --git a/hyperparameter/c2/tabsyn/tabsyn-c2-20260505_045714/staged/public/val.csv b/hyperparameter/c2/tabsyn/tabsyn-c2-20260505_045714/staged/public/val.csv new file mode 100644 index 0000000000000000000000000000000000000000..af8caf7ee42524188534a3daf32996dc491952d9 --- /dev/null +++ b/hyperparameter/c2/tabsyn/tabsyn-c2-20260505_045714/staged/public/val.csv @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:26e90c1170a57a14c05832ac88027722b1f3848f9662c7c09ef7c93dcba4cc01 +size 5176 diff --git a/hyperparameter/c2/tabsyn/tabsyn-c2-20260505_045714/staged/tabsyn/adapter_report.json b/hyperparameter/c2/tabsyn/tabsyn-c2-20260505_045714/staged/tabsyn/adapter_report.json new file mode 100644 index 0000000000000000000000000000000000000000..089ce21ed6e6bcf4a47ff643b8c2729411eeac4e --- /dev/null +++ b/hyperparameter/c2/tabsyn/tabsyn-c2-20260505_045714/staged/tabsyn/adapter_report.json @@ -0,0 +1,7 @@ +{ + "adapter_ready_status": "pass", + "adapter_fail_reason_code": null, + "adapter_fail_detail": null, + "adapter_transforms_applied": [], + "model_input_manifest": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/c2/tabsyn/tabsyn-c2-20260505_045714/staged/tabsyn/model_input_manifest.json" +} \ No newline at end of file diff --git a/hyperparameter/c2/tabsyn/tabsyn-c2-20260505_045714/staged/tabsyn/adapter_transforms_applied.json b/hyperparameter/c2/tabsyn/tabsyn-c2-20260505_045714/staged/tabsyn/adapter_transforms_applied.json new file mode 100644 index 0000000000000000000000000000000000000000..0637a088a01e8ddab3bf3fa98dbe804cbde1a0dc --- /dev/null +++ b/hyperparameter/c2/tabsyn/tabsyn-c2-20260505_045714/staged/tabsyn/adapter_transforms_applied.json @@ -0,0 +1 @@ +[] \ No newline at end of file diff --git a/hyperparameter/c2/tabsyn/tabsyn-c2-20260505_045714/staged/tabsyn/model_input_manifest.json b/hyperparameter/c2/tabsyn/tabsyn-c2-20260505_045714/staged/tabsyn/model_input_manifest.json new file mode 100644 index 0000000000000000000000000000000000000000..210c085b358d9d3543e0292b0ea9792d0f194a44 --- /dev/null +++ b/hyperparameter/c2/tabsyn/tabsyn-c2-20260505_045714/staged/tabsyn/model_input_manifest.json @@ -0,0 +1,151 @@ +{ + "dataset_id": "c2", + "model": "tabsyn", + "target_column": "class", + "task_type": "classification", + "column_schema": [ + { + "name": "buying", + "role": "feature", + "semantic_type": "categorical", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 4, + "unique_ratio": 0.002894, + "example_values": [ + "vhigh", + "med", + "high", + "low" + ] + } + }, + { + "name": "maint", + "role": "feature", + "semantic_type": "categorical", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 4, + "unique_ratio": 0.002894, + "example_values": [ + "vhigh", + "low", + "med", + "high" + ] + } + }, + { + "name": "doors", + "role": "feature", + "semantic_type": "categorical", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 4, + "unique_ratio": 0.002894, + "example_values": [ + "2", + "5more", + "3", + "4" + ] + } + }, + { + "name": "persons", + "role": "feature", + "semantic_type": "categorical", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 3, + "unique_ratio": 0.002171, + "example_values": [ + "2", + "4", + "more" + ] + } + }, + { + "name": "lug_boot", + "role": "feature", + "semantic_type": "categorical", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 3, + "unique_ratio": 0.002171, + "example_values": [ + "small", + "big", + "med" + ] + } + }, + { + "name": "safety", + "role": "feature", + "semantic_type": "categorical", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 3, + "unique_ratio": 0.002171, + "example_values": [ + "low", + "high", + "med" + ] + } + }, + { + "name": "class", + "role": "target", + "semantic_type": "categorical", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 4, + "unique_ratio": 0.002894, + "example_values": [ + "unacc", + "good", + "acc", + "vgood" + ] + } + } + ], + "public_manifest": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/c2/tabsyn/tabsyn-c2-20260505_045714/public_gate/staged_input_manifest.json", + "train_csv": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/c2/tabsyn/tabsyn-c2-20260505_045714/staged/public/train.csv", + "val_csv": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/c2/tabsyn/tabsyn-c2-20260505_045714/staged/public/val.csv", + "test_csv": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/c2/tabsyn/tabsyn-c2-20260505_045714/staged/public/test.csv", + "features_json": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/c2/tabsyn/tabsyn-c2-20260505_045714/staged/public/staged_features.json", + "public_gate_report": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/c2/tabsyn/tabsyn-c2-20260505_045714/public_gate/public_gate_report.json" +} \ No newline at end of file diff --git a/hyperparameter/c2/tabsyn/tabsyn-c2-20260505_045714/synthetic/tabsyn_c2/real.csv b/hyperparameter/c2/tabsyn/tabsyn-c2-20260505_045714/synthetic/tabsyn_c2/real.csv new file mode 100644 index 0000000000000000000000000000000000000000..94d40776e20a2226c5a316fc3eaf8b74b8513970 --- /dev/null +++ b/hyperparameter/c2/tabsyn/tabsyn-c2-20260505_045714/synthetic/tabsyn_c2/real.csv @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:3e7b4d4a1f787d81e53eddffbd43603149e1dd038d94b4c0244340ff4a2e4511 +size 19397 diff --git a/hyperparameter/c2/tabsyn/tabsyn-c2-20260505_045714/synthetic/tabsyn_c2/test.csv b/hyperparameter/c2/tabsyn/tabsyn-c2-20260505_045714/synthetic/tabsyn_c2/test.csv new file mode 100644 index 0000000000000000000000000000000000000000..94d40776e20a2226c5a316fc3eaf8b74b8513970 --- /dev/null +++ b/hyperparameter/c2/tabsyn/tabsyn-c2-20260505_045714/synthetic/tabsyn_c2/test.csv @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:3e7b4d4a1f787d81e53eddffbd43603149e1dd038d94b4c0244340ff4a2e4511 +size 19397 diff --git a/hyperparameter/c2/tabsyn/tabsyn-c2-20260505_045714/tabsyn-c2-1382-20260505_054901.csv b/hyperparameter/c2/tabsyn/tabsyn-c2-20260505_045714/tabsyn-c2-1382-20260505_054901.csv new file mode 100644 index 0000000000000000000000000000000000000000..75daaafb8a02d1750fb23f2f7a31b1e41cbb1b18 --- /dev/null +++ b/hyperparameter/c2/tabsyn/tabsyn-c2-20260505_045714/tabsyn-c2-1382-20260505_054901.csv @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:de5f89d466e850988e9d8909c3fd1827c59bb049fc324a71783841369351ff6d +size 22167 diff --git a/hyperparameter/c2/tabsyn/tabsyn-c2-20260505_045714/train_20260505_045714.log b/hyperparameter/c2/tabsyn/tabsyn-c2-20260505_045714/train_20260505_045714.log new file mode 100644 index 0000000000000000000000000000000000000000..f54a1c1debf5560850dd5af246fafc66541c0e6c --- /dev/null +++ b/hyperparameter/c2/tabsyn/tabsyn-c2-20260505_045714/train_20260505_045714.log @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:dd591df45cf1a8cf7290d8653075f59693d07c136143d7180835f753c1e5f25e +size 3483759 diff --git a/hyperparameter/c2/tabsyn/tabsyn-c2-20260505_054921/_tabsyn_sample.py b/hyperparameter/c2/tabsyn/tabsyn-c2-20260505_054921/_tabsyn_sample.py new file mode 100644 index 0000000000000000000000000000000000000000..5b14163f868fedcf0fb550a5592022405335a2a4 --- /dev/null +++ b/hyperparameter/c2/tabsyn/tabsyn-c2-20260505_054921/_tabsyn_sample.py @@ -0,0 +1,43 @@ +import os, sys, subprocess + +work_dir = "/work/output-Benchmark-trainonly-v1/c2/tabsyn/tabsyn-c2-20260505_054921" +dataname = "tabsyn_c2" +output_csv = "/work/output-Benchmark-trainonly-v1/c2/tabsyn/tabsyn-c2-20260505_054921/tabsyn-c2-1382-20260505_063927.csv" +tabsyn_root = "/workspace/tabsyn" + +assert os.path.exists(tabsyn_root), f"TabSyn source not mounted: {tabsyn_root}" + +old = os.environ.get("PYTHONPATH", "") +os.environ["PYTHONPATH"] = tabsyn_root + (os.pathsep + old if old else "") +sys.path.insert(0, tabsyn_root) + +os.chdir(tabsyn_root) + +# Ensure data symlink exists +data_link = os.path.join(tabsyn_root, "data", dataname) +data_src = os.path.join(work_dir, "data", dataname) +os.makedirs(os.path.join(tabsyn_root, "data"), exist_ok=True) +if os.path.exists(data_link): + os.remove(data_link) +os.symlink(data_src, data_link) + +print(f"[TabSyn] Sampling 1382 rows") +env = os.environ.copy() +env.setdefault("TABSYN_RESUME", "0") +env.setdefault("TABSYN_VAE_BATCH_SIZE", "32") +env.setdefault("TABSYN_VAE_EVAL_BATCH_SIZE", env["TABSYN_VAE_BATCH_SIZE"]) +env.setdefault("TABSYN_VAE_INFER_BATCH_SIZE", env["TABSYN_VAE_BATCH_SIZE"]) +env.setdefault("TABSYN_VAE_ENCODE_BATCH_SIZE", env["TABSYN_VAE_BATCH_SIZE"]) +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/hyperparameter/c2/tabsyn/tabsyn-c2-20260505_054921/_tabsyn_train.py b/hyperparameter/c2/tabsyn/tabsyn-c2-20260505_054921/_tabsyn_train.py new file mode 100644 index 0000000000000000000000000000000000000000..5c42b4144994214fe61c4a80ba488e8f59fea31a --- /dev/null +++ b/hyperparameter/c2/tabsyn/tabsyn-c2-20260505_054921/_tabsyn_train.py @@ -0,0 +1,69 @@ +import os, sys, subprocess + +work_dir = "/work/output-Benchmark-trainonly-v1/c2/tabsyn/tabsyn-c2-20260505_054921" +dataname = "tabsyn_c2" +tabsyn_root = "/workspace/tabsyn" + +assert os.path.exists(tabsyn_root), f"TabSyn source not mounted: {tabsyn_root}" + +old = os.environ.get("PYTHONPATH", "") +os.environ["PYTHONPATH"] = tabsyn_root + (os.pathsep + old if old else "") +sys.path.insert(0, tabsyn_root) + +os.chdir(tabsyn_root) + +# Symlink data dir into TabSyn data/ +data_link = os.path.join(tabsyn_root, "data", dataname) +data_src = os.path.join(work_dir, "data", dataname) +os.makedirs(os.path.join(tabsyn_root, "data"), exist_ok=True) +if os.path.exists(data_link): + os.remove(data_link) +os.symlink(data_src, data_link) + +env = os.environ.copy() +env.setdefault("TABSYN_RESUME", "0") +env.setdefault("TABSYN_VAE_BATCH_SIZE", "32") +env.setdefault("TABSYN_VAE_NUM_WORKERS", "0") +env.setdefault("TABSYN_VAE_EVAL_BATCH_SIZE", env["TABSYN_VAE_BATCH_SIZE"]) +env.setdefault("TABSYN_VAE_INFER_BATCH_SIZE", env["TABSYN_VAE_BATCH_SIZE"]) +env.setdefault("TABSYN_VAE_ENCODE_BATCH_SIZE", env["TABSYN_VAE_BATCH_SIZE"]) +# Safer defaults for wide tables on Docker: reduce shared-memory pressure in diffusion DataLoader. +env.setdefault("TABSYN_DIFFUSION_NUM_WORKERS", "0") +_te = None +if _te is not None: + env["TABSYN_VAE_EPOCHS"] = str(_te) + env["TABSYN_DIFFUSION_MAX_EPOCHS"] = str(max(_te + 1, 2)) + +# Data preprocessing is done on the host side (_prepare_data_dir) +# which creates .npy files, train/test CSVs, and info.json + +# Step 1: Train VAE (produces latent embeddings) +print(f"[TabSyn] Step 1/2: Training VAE in {tabsyn_root}, dataname={dataname}") +ret = subprocess.run( + [sys.executable, "main.py", + "--dataname", dataname, + "--mode", "train", + "--method", "vae", + "--gpu", "0"], + cwd=tabsyn_root, + env=env +) +if ret.returncode != 0: + print("[TabSyn] VAE training failed") + sys.exit(ret.returncode) + +# Step 2: Train diffusion model on latent space +print(f"[TabSyn] Step 2/2: Training diffusion model") +ret = subprocess.run( + [sys.executable, "main.py", + "--dataname", dataname, + "--mode", "train", + "--method", "tabsyn", + "--gpu", "0"], + cwd=tabsyn_root, + env=env +) +if ret.returncode != 0: + print("[TabSyn] Diffusion training failed") + sys.exit(ret.returncode) +print("[TabSyn] Training complete (VAE + Diffusion)") diff --git a/hyperparameter/c2/tabsyn/tabsyn-c2-20260505_054921/data/tabsyn_c2/X_cat_test.npy b/hyperparameter/c2/tabsyn/tabsyn-c2-20260505_054921/data/tabsyn_c2/X_cat_test.npy new file mode 100644 index 0000000000000000000000000000000000000000..6cf4fc75ff61837a47172e845d2942ba68f4ccd1 --- /dev/null +++ b/hyperparameter/c2/tabsyn/tabsyn-c2-20260505_054921/data/tabsyn_c2/X_cat_test.npy @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:0e9f5e299905cfd50c63688fb7b818aeec0d802b14338f705ec09d39826ac9c2 +size 55408 diff --git a/hyperparameter/c2/tabsyn/tabsyn-c2-20260505_054921/data/tabsyn_c2/X_cat_train.npy b/hyperparameter/c2/tabsyn/tabsyn-c2-20260505_054921/data/tabsyn_c2/X_cat_train.npy new file mode 100644 index 0000000000000000000000000000000000000000..6cf4fc75ff61837a47172e845d2942ba68f4ccd1 --- /dev/null +++ b/hyperparameter/c2/tabsyn/tabsyn-c2-20260505_054921/data/tabsyn_c2/X_cat_train.npy @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:0e9f5e299905cfd50c63688fb7b818aeec0d802b14338f705ec09d39826ac9c2 +size 55408 diff --git a/hyperparameter/c2/tabsyn/tabsyn-c2-20260505_054921/data/tabsyn_c2/X_num_test.npy b/hyperparameter/c2/tabsyn/tabsyn-c2-20260505_054921/data/tabsyn_c2/X_num_test.npy new file mode 100644 index 0000000000000000000000000000000000000000..9a71edeab7a22756c9090743b5d0fde204acfb75 --- /dev/null +++ b/hyperparameter/c2/tabsyn/tabsyn-c2-20260505_054921/data/tabsyn_c2/X_num_test.npy @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:f937731a3e7785676e9f861e44eddab69c323327e03bdd1f6e8755c5321538fb +size 5656 diff --git a/hyperparameter/c2/tabsyn/tabsyn-c2-20260505_054921/data/tabsyn_c2/X_num_train.npy b/hyperparameter/c2/tabsyn/tabsyn-c2-20260505_054921/data/tabsyn_c2/X_num_train.npy new file mode 100644 index 0000000000000000000000000000000000000000..9a71edeab7a22756c9090743b5d0fde204acfb75 --- /dev/null +++ b/hyperparameter/c2/tabsyn/tabsyn-c2-20260505_054921/data/tabsyn_c2/X_num_train.npy @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:f937731a3e7785676e9f861e44eddab69c323327e03bdd1f6e8755c5321538fb +size 5656 diff --git a/hyperparameter/c2/tabsyn/tabsyn-c2-20260505_054921/data/tabsyn_c2/info.json b/hyperparameter/c2/tabsyn/tabsyn-c2-20260505_054921/data/tabsyn_c2/info.json new file mode 100644 index 0000000000000000000000000000000000000000..3d85c74a88f8b29c5054c0455ce2f895b74cc726 --- /dev/null +++ b/hyperparameter/c2/tabsyn/tabsyn-c2-20260505_054921/data/tabsyn_c2/info.json @@ -0,0 +1,89 @@ +{ + "name": "tabsyn_c2", + "task_type": "multiclass", + "n_num_features": 1, + "n_cat_features": 5, + "train_size": 1382, + "num_col_idx": [ + 0 + ], + "cat_col_idx": [ + 1, + 2, + 3, + 4, + 5 + ], + "target_col_idx": [ + 6 + ], + "column_names": [ + "buying", + "maint", + "doors", + "persons", + "lug_boot", + "safety", + "class" + ], + "train_num": 1382, + "test_num": 1382, + "header": 0, + "file_type": "csv", + "data_path": "data/tabsyn_c2/train.csv", + "test_path": null, + "idx_mapping": { + "0": 0, + "1": 1, + "2": 2, + "3": 3, + "4": 4, + "5": 5, + "6": 6 + }, + "inverse_idx_mapping": { + "0": 0, + "1": 1, + "2": 2, + "3": 3, + "4": 4, + "5": 5, + "6": 6 + }, + "idx_name_mapping": { + "0": "buying", + "1": "maint", + "2": "doors", + "3": "persons", + "4": "lug_boot", + "5": "safety", + "6": "class" + }, + "n_classes": 4, + "metadata": { + "columns": { + "0": { + "sdtype": "numerical", + "computer_representation": "Float" + }, + "1": { + "sdtype": "categorical" + }, + "2": { + "sdtype": "categorical" + }, + "3": { + "sdtype": "categorical" + }, + "4": { + "sdtype": "categorical" + }, + "5": { + "sdtype": "categorical" + }, + "6": { + "sdtype": "categorical" + } + } + } +} \ No newline at end of file diff --git a/hyperparameter/c2/tabsyn/tabsyn-c2-20260505_054921/data/tabsyn_c2/test.csv b/hyperparameter/c2/tabsyn/tabsyn-c2-20260505_054921/data/tabsyn_c2/test.csv new file mode 100644 index 0000000000000000000000000000000000000000..94d40776e20a2226c5a316fc3eaf8b74b8513970 --- /dev/null +++ b/hyperparameter/c2/tabsyn/tabsyn-c2-20260505_054921/data/tabsyn_c2/test.csv @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:3e7b4d4a1f787d81e53eddffbd43603149e1dd038d94b4c0244340ff4a2e4511 +size 19397 diff --git a/hyperparameter/c2/tabsyn/tabsyn-c2-20260505_054921/data/tabsyn_c2/train.csv b/hyperparameter/c2/tabsyn/tabsyn-c2-20260505_054921/data/tabsyn_c2/train.csv new file mode 100644 index 0000000000000000000000000000000000000000..94d40776e20a2226c5a316fc3eaf8b74b8513970 --- /dev/null +++ b/hyperparameter/c2/tabsyn/tabsyn-c2-20260505_054921/data/tabsyn_c2/train.csv @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:3e7b4d4a1f787d81e53eddffbd43603149e1dd038d94b4c0244340ff4a2e4511 +size 19397 diff --git a/hyperparameter/c2/tabsyn/tabsyn-c2-20260505_054921/data/tabsyn_c2/y_test.npy b/hyperparameter/c2/tabsyn/tabsyn-c2-20260505_054921/data/tabsyn_c2/y_test.npy new file mode 100644 index 0000000000000000000000000000000000000000..108cc1504a0828881e00ae2e843ec55f1a447337 --- /dev/null +++ b/hyperparameter/c2/tabsyn/tabsyn-c2-20260505_054921/data/tabsyn_c2/y_test.npy @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:f88f9f2d088513402a20e38e046da314636957e28ee86d4df15ac0dfc9fce867 +size 11184 diff --git a/hyperparameter/c2/tabsyn/tabsyn-c2-20260505_054921/data/tabsyn_c2/y_train.npy b/hyperparameter/c2/tabsyn/tabsyn-c2-20260505_054921/data/tabsyn_c2/y_train.npy new file mode 100644 index 0000000000000000000000000000000000000000..108cc1504a0828881e00ae2e843ec55f1a447337 --- /dev/null +++ b/hyperparameter/c2/tabsyn/tabsyn-c2-20260505_054921/data/tabsyn_c2/y_train.npy @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:f88f9f2d088513402a20e38e046da314636957e28ee86d4df15ac0dfc9fce867 +size 11184 diff --git a/hyperparameter/c2/tabsyn/tabsyn-c2-20260505_054921/gen_20260505_063927.log b/hyperparameter/c2/tabsyn/tabsyn-c2-20260505_054921/gen_20260505_063927.log new file mode 100644 index 0000000000000000000000000000000000000000..4eabd0b3b99bef755f7013e72bc3046fbfdc73ef --- /dev/null +++ b/hyperparameter/c2/tabsyn/tabsyn-c2-20260505_054921/gen_20260505_063927.log @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:634ce2be14d6edab355d9374014f0b4c7c1e72c0f5f573b16490ce0d8fa2b2d6 +size 939 diff --git a/hyperparameter/c2/tabsyn/tabsyn-c2-20260505_054921/input_snapshot.json b/hyperparameter/c2/tabsyn/tabsyn-c2-20260505_054921/input_snapshot.json new file mode 100644 index 0000000000000000000000000000000000000000..7d3fddeb570e67b127ac5aef0d448cae7e934e6c --- /dev/null +++ b/hyperparameter/c2/tabsyn/tabsyn-c2-20260505_054921/input_snapshot.json @@ -0,0 +1,36 @@ +{ + "dataset_id": "c2", + "model": "tabsyn", + "inputs": { + "train_csv": { + "path": "/data/jialinzhang/SynthesizePipeline-server/DatasetNew/c2/c2-train.csv", + "exists": true, + "size": 42948, + "sha256": "17bc560fa96bd00fb3b526e1e65bc91210b701d0d0a4e8bb9b4c5196cab56def" + }, + "val_csv": { + "path": "/data/jialinzhang/SynthesizePipeline-server/DatasetNew/c2/c2-val.csv", + "exists": true, + "size": 5349, + "sha256": "61e565eca62e65a7dccd9d51039a3170413379e10fc494e25870e7c4294863c9" + }, + "test_csv": { + "path": "/data/jialinzhang/SynthesizePipeline-server/DatasetNew/c2/c2-test.csv", + "exists": true, + "size": 5448, + "sha256": "cbcbb062a1faf5fa44b66c80532baa229e05b94fc42137269761e6c6d84af20a" + }, + "profile_json": { + "path": "/data/jialinzhang/SynthesizePipeline-server/DatasetNew/artifacts/data_core/tabular/c2/c2-dataset_profile.json", + "exists": true, + "size": 3240, + "sha256": "526b7163b2076c93c0bf4638438081ee8a6907065d5b608faa40d1a3dbc2a27b" + }, + "contract_json": { + "path": "/data/jialinzhang/SynthesizePipeline-server/DatasetNew/artifacts/data_core/tabular/c2/c2-dataset_contract_v1.json", + "exists": true, + "size": 3731, + "sha256": "fb595a876054c2ee9b4e10cfe83a5691588de1d25466cbb9d473c18ad3604009" + } + } +} \ No newline at end of file diff --git a/hyperparameter/c2/tabsyn/tabsyn-c2-20260505_054921/public_gate/normalized_schema_snapshot.json b/hyperparameter/c2/tabsyn/tabsyn-c2-20260505_054921/public_gate/normalized_schema_snapshot.json new file mode 100644 index 0000000000000000000000000000000000000000..689b1d00d96508e44ba40e58dc4560e19afc2b3b --- /dev/null +++ b/hyperparameter/c2/tabsyn/tabsyn-c2-20260505_054921/public_gate/normalized_schema_snapshot.json @@ -0,0 +1,144 @@ +{ + "dataset_id": "c2", + "target_column": "class", + "task_type": "classification", + "columns": [ + { + "name": "buying", + "role": "feature", + "semantic_type": "categorical", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 4, + "unique_ratio": 0.002894, + "example_values": [ + "vhigh", + "med", + "high", + "low" + ] + } + }, + { + "name": "maint", + "role": "feature", + "semantic_type": "categorical", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 4, + "unique_ratio": 0.002894, + "example_values": [ + "vhigh", + "low", + "med", + "high" + ] + } + }, + { + "name": "doors", + "role": "feature", + "semantic_type": "categorical", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 4, + "unique_ratio": 0.002894, + "example_values": [ + "2", + "5more", + "3", + "4" + ] + } + }, + { + "name": "persons", + "role": "feature", + "semantic_type": "categorical", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 3, + "unique_ratio": 0.002171, + "example_values": [ + "2", + "4", + "more" + ] + } + }, + { + "name": "lug_boot", + "role": "feature", + "semantic_type": "categorical", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 3, + "unique_ratio": 0.002171, + "example_values": [ + "small", + "big", + "med" + ] + } + }, + { + "name": "safety", + "role": "feature", + "semantic_type": "categorical", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 3, + "unique_ratio": 0.002171, + "example_values": [ + "low", + "high", + "med" + ] + } + }, + { + "name": "class", + "role": "target", + "semantic_type": "categorical", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 4, + "unique_ratio": 0.002894, + "example_values": [ + "unacc", + "good", + "acc", + "vgood" + ] + } + } + ] +} \ No newline at end of file diff --git a/hyperparameter/c2/tabsyn/tabsyn-c2-20260505_054921/public_gate/public_gate_report.json b/hyperparameter/c2/tabsyn/tabsyn-c2-20260505_054921/public_gate/public_gate_report.json new file mode 100644 index 0000000000000000000000000000000000000000..2e4cdcb2a4e28e40d59b17a83e773f622b7636a5 --- /dev/null +++ b/hyperparameter/c2/tabsyn/tabsyn-c2-20260505_054921/public_gate/public_gate_report.json @@ -0,0 +1,37 @@ +{ + "dataset_id": "c2", + "status": "pass", + "checks": [ + { + "check_id": "PG001_csv_parse_ok", + "status": "pass" + }, + { + "check_id": "PG002_split_header_consistent", + "status": "pass" + }, + { + "check_id": "PG003_profile_header_match", + "status": "pass" + }, + { + "check_id": "PG004_missing_token_normalized", + "status": "pass" + }, + { + "check_id": "PG005_semantic_type_validated", + "status": "pass" + }, + { + "check_id": "PG006_target_defined_and_valid", + "status": "pass" + } + ], + "target_column": "class", + "task_type": "classification", + "input_splits": { + "train": "/data/jialinzhang/SynthesizePipeline-server/DatasetNew/c2/c2-train.csv", + "val": "/data/jialinzhang/SynthesizePipeline-server/DatasetNew/c2/c2-val.csv", + "test": "/data/jialinzhang/SynthesizePipeline-server/DatasetNew/c2/c2-test.csv" + } +} \ No newline at end of file diff --git a/hyperparameter/c2/tabsyn/tabsyn-c2-20260505_054921/public_gate/staged_input_manifest.json b/hyperparameter/c2/tabsyn/tabsyn-c2-20260505_054921/public_gate/staged_input_manifest.json new file mode 100644 index 0000000000000000000000000000000000000000..0346ab656bbfd9446b03218d75f8e3c9a8a8580f --- /dev/null +++ b/hyperparameter/c2/tabsyn/tabsyn-c2-20260505_054921/public_gate/staged_input_manifest.json @@ -0,0 +1,149 @@ +{ + "dataset_id": "c2", + "target_column": "class", + "task_type": "classification", + "train_csv": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/c2/tabsyn/tabsyn-c2-20260505_054921/staged/public/train.csv", + "val_csv": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/c2/tabsyn/tabsyn-c2-20260505_054921/staged/public/val.csv", + "test_csv": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/c2/tabsyn/tabsyn-c2-20260505_054921/staged/public/test.csv", + "features_json": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/c2/tabsyn/tabsyn-c2-20260505_054921/staged/public/staged_features.json", + "public_gate_report": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/c2/tabsyn/tabsyn-c2-20260505_054921/public_gate/public_gate_report.json", + "column_schema": [ + { + "name": "buying", + "role": "feature", + "semantic_type": "categorical", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 4, + "unique_ratio": 0.002894, + "example_values": [ + "vhigh", + "med", + "high", + "low" + ] + } + }, + { + "name": "maint", + "role": "feature", + "semantic_type": "categorical", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 4, + "unique_ratio": 0.002894, + "example_values": [ + "vhigh", + "low", + "med", + "high" + ] + } + }, + { + "name": "doors", + "role": "feature", + "semantic_type": "categorical", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 4, + "unique_ratio": 0.002894, + "example_values": [ + "2", + "5more", + "3", + "4" + ] + } + }, + { + "name": "persons", + "role": "feature", + "semantic_type": "categorical", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 3, + "unique_ratio": 0.002171, + "example_values": [ + "2", + "4", + "more" + ] + } + }, + { + "name": "lug_boot", + "role": "feature", + "semantic_type": "categorical", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 3, + "unique_ratio": 0.002171, + "example_values": [ + "small", + "big", + "med" + ] + } + }, + { + "name": "safety", + "role": "feature", + "semantic_type": "categorical", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 3, + "unique_ratio": 0.002171, + "example_values": [ + "low", + "high", + "med" + ] + } + }, + { + "name": "class", + "role": "target", + "semantic_type": "categorical", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 4, + "unique_ratio": 0.002894, + "example_values": [ + "unacc", + "good", + "acc", + "vgood" + ] + } + } + ] +} \ No newline at end of file diff --git a/hyperparameter/c2/tabsyn/tabsyn-c2-20260505_054921/run_config.json b/hyperparameter/c2/tabsyn/tabsyn-c2-20260505_054921/run_config.json new file mode 100644 index 0000000000000000000000000000000000000000..71962a3de400bc4980abae422e7bbdbb7b28f598 --- /dev/null +++ b/hyperparameter/c2/tabsyn/tabsyn-c2-20260505_054921/run_config.json @@ -0,0 +1,48 @@ +{ + "schema_version": 1, + "recorded_at": "2026-05-05T05:49:21", + "dataset_id": "c2", + "model": "tabsyn", + "work_dir": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/c2/tabsyn/tabsyn-c2-20260505_054921", + "dataset_source_requested": "new", + "dataset_source_resolved": "new", + "cli_args": { + "model": "tabsyn", + "dataset": "c2", + "dataset_source": "new", + "train": true, + "generate": true, + "num_rows": 0, + "epochs": null, + "output_dir": null, + "model_dir": null, + "work_dir": null, + "resume": false, + "no_stats": false + }, + "resolved": { + "num_rows": 1382, + "model_path": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/c2/tabsyn/tabsyn-c2-20260505_054921", + "output_csv": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/c2/tabsyn/tabsyn-c2-20260505_054921/tabsyn-c2-1382-20260505_063927.csv" + }, + "input_artifacts": { + "public_gate_report": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/c2/tabsyn/tabsyn-c2-20260505_054921/public_gate/public_gate_report.json", + "public_manifest": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/c2/tabsyn/tabsyn-c2-20260505_054921/public_gate/staged_input_manifest.json", + "model_manifest": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/c2/tabsyn/tabsyn-c2-20260505_054921/staged/tabsyn/model_input_manifest.json", + "train_csv": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/c2/tabsyn/tabsyn-c2-20260505_054921/staged/public/train.csv", + "features_json": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/c2/tabsyn/tabsyn-c2-20260505_054921/staged/public/staged_features.json", + "target_column": "class", + "task_type": "classification" + }, + "env_overrides": { + "BENCHMARK_TABSYN_GPUS": "device=3", + "TABSYN_DIFFUSION_MAX_EPOCHS": "8", + "TABSYN_RESUME": "0", + "TABSYN_VAE_BATCH_SIZE": "128", + "TABSYN_VAE_ENCODE_BATCH_SIZE": "256", + "TABSYN_VAE_EPOCHS": "8", + "TABSYN_VAE_EVAL_BATCH_SIZE": "256", + "TABSYN_VAE_INFER_BATCH_SIZE": "256", + "TABSYN_VAE_NUM_WORKERS": "0" + } +} \ No newline at end of file diff --git a/hyperparameter/c2/tabsyn/tabsyn-c2-20260505_054921/runtime_result.json b/hyperparameter/c2/tabsyn/tabsyn-c2-20260505_054921/runtime_result.json new file mode 100644 index 0000000000000000000000000000000000000000..44f33fe886934da683f39ba59c423a3ab3ed6d3c --- /dev/null +++ b/hyperparameter/c2/tabsyn/tabsyn-c2-20260505_054921/runtime_result.json @@ -0,0 +1,27 @@ +{ + "dataset_id": "c2", + "model": "tabsyn", + "run_id": "tabsyn-c2-20260505_054921", + "public_gate_status": "pass", + "adapter_ready_status": "pass", + "train_status": "success", + "generate_status": "success", + "reason_code": null, + "reason_detail": null, + "artifacts": { + "synthetic_csv": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/c2/tabsyn/tabsyn-c2-20260505_054921/tabsyn-c2-1382-20260505_063927.csv", + "model_path": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/c2/tabsyn/tabsyn-c2-20260505_054921" + }, + "timings": { + "train": { + "started_at": "2026-05-05T05:49:21", + "ended_at": "2026-05-05T06:39:27", + "duration_sec": 3005.267 + }, + "generate": { + "started_at": "2026-05-05T06:39:27", + "ended_at": "2026-05-05T06:39:32", + "duration_sec": 5.5 + } + } +} \ No newline at end of file diff --git a/hyperparameter/c2/tabsyn/tabsyn-c2-20260505_054921/staged/public/staged_features.json b/hyperparameter/c2/tabsyn/tabsyn-c2-20260505_054921/staged/public/staged_features.json new file mode 100644 index 0000000000000000000000000000000000000000..61783861dd5de501592f76acb0469cf3f3b2622a --- /dev/null +++ b/hyperparameter/c2/tabsyn/tabsyn-c2-20260505_054921/staged/public/staged_features.json @@ -0,0 +1,37 @@ +[ + { + "feature_name": "buying", + "data_type": "categorical", + "is_target": false + }, + { + "feature_name": "maint", + "data_type": "categorical", + "is_target": false + }, + { + "feature_name": "doors", + "data_type": "categorical", + "is_target": false + }, + { + "feature_name": "persons", + "data_type": "categorical", + "is_target": false + }, + { + "feature_name": "lug_boot", + "data_type": "categorical", + "is_target": false + }, + { + "feature_name": "safety", + "data_type": "categorical", + "is_target": false + }, + { + "feature_name": "class", + "data_type": "categorical", + "is_target": true + } +] \ No newline at end of file diff --git a/hyperparameter/c2/tabsyn/tabsyn-c2-20260505_054921/staged/public/test.csv b/hyperparameter/c2/tabsyn/tabsyn-c2-20260505_054921/staged/public/test.csv new file mode 100644 index 0000000000000000000000000000000000000000..392a0d7189a34d8f13ecf20a99d64b03230d517c --- /dev/null +++ b/hyperparameter/c2/tabsyn/tabsyn-c2-20260505_054921/staged/public/test.csv @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:b48114a7d0bc5bd9a07920f903c8d4aba8bf98bf2a66a050da03588b0245ca73 +size 5273 diff --git a/hyperparameter/c2/tabsyn/tabsyn-c2-20260505_054921/staged/public/train.csv b/hyperparameter/c2/tabsyn/tabsyn-c2-20260505_054921/staged/public/train.csv new file mode 100644 index 0000000000000000000000000000000000000000..da4f4d55134eebc0e51157d0d467536371db1484 --- /dev/null +++ b/hyperparameter/c2/tabsyn/tabsyn-c2-20260505_054921/staged/public/train.csv @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:4aed00c2c2b3f88a55a7ebff31b2e1b5e0e32fb0a7267e0b9d2779cd23e434dd +size 41565 diff --git a/hyperparameter/c2/tabsyn/tabsyn-c2-20260505_054921/staged/public/val.csv b/hyperparameter/c2/tabsyn/tabsyn-c2-20260505_054921/staged/public/val.csv new file mode 100644 index 0000000000000000000000000000000000000000..af8caf7ee42524188534a3daf32996dc491952d9 --- /dev/null +++ b/hyperparameter/c2/tabsyn/tabsyn-c2-20260505_054921/staged/public/val.csv @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:26e90c1170a57a14c05832ac88027722b1f3848f9662c7c09ef7c93dcba4cc01 +size 5176 diff --git a/hyperparameter/c2/tabsyn/tabsyn-c2-20260505_054921/staged/tabsyn/adapter_report.json b/hyperparameter/c2/tabsyn/tabsyn-c2-20260505_054921/staged/tabsyn/adapter_report.json new file mode 100644 index 0000000000000000000000000000000000000000..5a142fdfb137192af6f588f3ace7c69bee87fb70 --- /dev/null +++ b/hyperparameter/c2/tabsyn/tabsyn-c2-20260505_054921/staged/tabsyn/adapter_report.json @@ -0,0 +1,7 @@ +{ + "adapter_ready_status": "pass", + "adapter_fail_reason_code": null, + "adapter_fail_detail": null, + "adapter_transforms_applied": [], + "model_input_manifest": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/c2/tabsyn/tabsyn-c2-20260505_054921/staged/tabsyn/model_input_manifest.json" +} \ No newline at end of file diff --git a/hyperparameter/c2/tabsyn/tabsyn-c2-20260505_054921/staged/tabsyn/adapter_transforms_applied.json b/hyperparameter/c2/tabsyn/tabsyn-c2-20260505_054921/staged/tabsyn/adapter_transforms_applied.json new file mode 100644 index 0000000000000000000000000000000000000000..0637a088a01e8ddab3bf3fa98dbe804cbde1a0dc --- /dev/null +++ b/hyperparameter/c2/tabsyn/tabsyn-c2-20260505_054921/staged/tabsyn/adapter_transforms_applied.json @@ -0,0 +1 @@ +[] \ No newline at end of file diff --git a/hyperparameter/c2/tabsyn/tabsyn-c2-20260505_054921/staged/tabsyn/model_input_manifest.json b/hyperparameter/c2/tabsyn/tabsyn-c2-20260505_054921/staged/tabsyn/model_input_manifest.json new file mode 100644 index 0000000000000000000000000000000000000000..989c65027a450e3747cfa5d59be69ed1e50e5c96 --- /dev/null +++ b/hyperparameter/c2/tabsyn/tabsyn-c2-20260505_054921/staged/tabsyn/model_input_manifest.json @@ -0,0 +1,151 @@ +{ + "dataset_id": "c2", + "model": "tabsyn", + "target_column": "class", + "task_type": "classification", + "column_schema": [ + { + "name": "buying", + "role": "feature", + "semantic_type": "categorical", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 4, + "unique_ratio": 0.002894, + "example_values": [ + "vhigh", + "med", + "high", + "low" + ] + } + }, + { + "name": "maint", + "role": "feature", + "semantic_type": "categorical", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 4, + "unique_ratio": 0.002894, + "example_values": [ + "vhigh", + "low", + "med", + "high" + ] + } + }, + { + "name": "doors", + "role": "feature", + "semantic_type": "categorical", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 4, + "unique_ratio": 0.002894, + "example_values": [ + "2", + "5more", + "3", + "4" + ] + } + }, + { + "name": "persons", + "role": "feature", + "semantic_type": "categorical", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 3, + "unique_ratio": 0.002171, + "example_values": [ + "2", + "4", + "more" + ] + } + }, + { + "name": "lug_boot", + "role": "feature", + "semantic_type": "categorical", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 3, + "unique_ratio": 0.002171, + "example_values": [ + "small", + "big", + "med" + ] + } + }, + { + "name": "safety", + "role": "feature", + "semantic_type": "categorical", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 3, + "unique_ratio": 0.002171, + "example_values": [ + "low", + "high", + "med" + ] + } + }, + { + "name": "class", + "role": "target", + "semantic_type": "categorical", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 4, + "unique_ratio": 0.002894, + "example_values": [ + "unacc", + "good", + "acc", + "vgood" + ] + } + } + ], + "public_manifest": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/c2/tabsyn/tabsyn-c2-20260505_054921/public_gate/staged_input_manifest.json", + "train_csv": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/c2/tabsyn/tabsyn-c2-20260505_054921/staged/public/train.csv", + "val_csv": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/c2/tabsyn/tabsyn-c2-20260505_054921/staged/public/val.csv", + "test_csv": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/c2/tabsyn/tabsyn-c2-20260505_054921/staged/public/test.csv", + "features_json": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/c2/tabsyn/tabsyn-c2-20260505_054921/staged/public/staged_features.json", + "public_gate_report": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/c2/tabsyn/tabsyn-c2-20260505_054921/public_gate/public_gate_report.json" +} \ No newline at end of file diff --git a/hyperparameter/c2/tabsyn/tabsyn-c2-20260505_054921/synthetic/tabsyn_c2/real.csv b/hyperparameter/c2/tabsyn/tabsyn-c2-20260505_054921/synthetic/tabsyn_c2/real.csv new file mode 100644 index 0000000000000000000000000000000000000000..94d40776e20a2226c5a316fc3eaf8b74b8513970 --- /dev/null +++ b/hyperparameter/c2/tabsyn/tabsyn-c2-20260505_054921/synthetic/tabsyn_c2/real.csv @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:3e7b4d4a1f787d81e53eddffbd43603149e1dd038d94b4c0244340ff4a2e4511 +size 19397 diff --git a/hyperparameter/c2/tabsyn/tabsyn-c2-20260505_054921/synthetic/tabsyn_c2/test.csv b/hyperparameter/c2/tabsyn/tabsyn-c2-20260505_054921/synthetic/tabsyn_c2/test.csv new file mode 100644 index 0000000000000000000000000000000000000000..94d40776e20a2226c5a316fc3eaf8b74b8513970 --- /dev/null +++ b/hyperparameter/c2/tabsyn/tabsyn-c2-20260505_054921/synthetic/tabsyn_c2/test.csv @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:3e7b4d4a1f787d81e53eddffbd43603149e1dd038d94b4c0244340ff4a2e4511 +size 19397 diff --git a/hyperparameter/c2/tabsyn/tabsyn-c2-20260505_054921/tabsyn-c2-1382-20260505_063927.csv b/hyperparameter/c2/tabsyn/tabsyn-c2-20260505_054921/tabsyn-c2-1382-20260505_063927.csv new file mode 100644 index 0000000000000000000000000000000000000000..15d754a25d4cce795984891d97252c96cdde01ee --- /dev/null +++ b/hyperparameter/c2/tabsyn/tabsyn-c2-20260505_054921/tabsyn-c2-1382-20260505_063927.csv @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:e73d6b17f3a5ed84bb3455f7ede61e2bb9a9f5ff5a02ce1f29f8a98282d656e5 +size 22318 diff --git a/hyperparameter/c2/tabsyn/tabsyn-c2-20260505_054921/train_20260505_054921.log b/hyperparameter/c2/tabsyn/tabsyn-c2-20260505_054921/train_20260505_054921.log new file mode 100644 index 0000000000000000000000000000000000000000..9dd4b9c10ad1411de274b6c36a7cb0bf7ff2434f --- /dev/null +++ b/hyperparameter/c2/tabsyn/tabsyn-c2-20260505_054921/train_20260505_054921.log @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:d00df65524a806894d084023f8163d57075b99b881d7b36c420192b8affdc3d0 +size 3323505 diff --git a/hyperparameter/c2/tabsyn/tabsyn-c2-20260505_063947/_tabsyn_sample.py b/hyperparameter/c2/tabsyn/tabsyn-c2-20260505_063947/_tabsyn_sample.py new file mode 100644 index 0000000000000000000000000000000000000000..d8667a220d4dd7428cc4d949c98200d9fc0539da --- /dev/null +++ b/hyperparameter/c2/tabsyn/tabsyn-c2-20260505_063947/_tabsyn_sample.py @@ -0,0 +1,43 @@ +import os, sys, subprocess + +work_dir = "/work/output-Benchmark-trainonly-v1/c2/tabsyn/tabsyn-c2-20260505_063947" +dataname = "tabsyn_c2" +output_csv = "/work/output-Benchmark-trainonly-v1/c2/tabsyn/tabsyn-c2-20260505_063947/tabsyn-c2-1382-20260505_073149.csv" +tabsyn_root = "/workspace/tabsyn" + +assert os.path.exists(tabsyn_root), f"TabSyn source not mounted: {tabsyn_root}" + +old = os.environ.get("PYTHONPATH", "") +os.environ["PYTHONPATH"] = tabsyn_root + (os.pathsep + old if old else "") +sys.path.insert(0, tabsyn_root) + +os.chdir(tabsyn_root) + +# Ensure data symlink exists +data_link = os.path.join(tabsyn_root, "data", dataname) +data_src = os.path.join(work_dir, "data", dataname) +os.makedirs(os.path.join(tabsyn_root, "data"), exist_ok=True) +if os.path.exists(data_link): + os.remove(data_link) +os.symlink(data_src, data_link) + +print(f"[TabSyn] Sampling 1382 rows") +env = os.environ.copy() +env.setdefault("TABSYN_RESUME", "0") +env.setdefault("TABSYN_VAE_BATCH_SIZE", "32") +env.setdefault("TABSYN_VAE_EVAL_BATCH_SIZE", env["TABSYN_VAE_BATCH_SIZE"]) +env.setdefault("TABSYN_VAE_INFER_BATCH_SIZE", env["TABSYN_VAE_BATCH_SIZE"]) +env.setdefault("TABSYN_VAE_ENCODE_BATCH_SIZE", env["TABSYN_VAE_BATCH_SIZE"]) +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/hyperparameter/c2/tabsyn/tabsyn-c2-20260505_063947/_tabsyn_train.py b/hyperparameter/c2/tabsyn/tabsyn-c2-20260505_063947/_tabsyn_train.py new file mode 100644 index 0000000000000000000000000000000000000000..385b5d49ecf5cceea6058bd82a1b6fd605ffb7c7 --- /dev/null +++ b/hyperparameter/c2/tabsyn/tabsyn-c2-20260505_063947/_tabsyn_train.py @@ -0,0 +1,69 @@ +import os, sys, subprocess + +work_dir = "/work/output-Benchmark-trainonly-v1/c2/tabsyn/tabsyn-c2-20260505_063947" +dataname = "tabsyn_c2" +tabsyn_root = "/workspace/tabsyn" + +assert os.path.exists(tabsyn_root), f"TabSyn source not mounted: {tabsyn_root}" + +old = os.environ.get("PYTHONPATH", "") +os.environ["PYTHONPATH"] = tabsyn_root + (os.pathsep + old if old else "") +sys.path.insert(0, tabsyn_root) + +os.chdir(tabsyn_root) + +# Symlink data dir into TabSyn data/ +data_link = os.path.join(tabsyn_root, "data", dataname) +data_src = os.path.join(work_dir, "data", dataname) +os.makedirs(os.path.join(tabsyn_root, "data"), exist_ok=True) +if os.path.exists(data_link): + os.remove(data_link) +os.symlink(data_src, data_link) + +env = os.environ.copy() +env.setdefault("TABSYN_RESUME", "0") +env.setdefault("TABSYN_VAE_BATCH_SIZE", "32") +env.setdefault("TABSYN_VAE_NUM_WORKERS", "0") +env.setdefault("TABSYN_VAE_EVAL_BATCH_SIZE", env["TABSYN_VAE_BATCH_SIZE"]) +env.setdefault("TABSYN_VAE_INFER_BATCH_SIZE", env["TABSYN_VAE_BATCH_SIZE"]) +env.setdefault("TABSYN_VAE_ENCODE_BATCH_SIZE", env["TABSYN_VAE_BATCH_SIZE"]) +# Safer defaults for wide tables on Docker: reduce shared-memory pressure in diffusion DataLoader. +env.setdefault("TABSYN_DIFFUSION_NUM_WORKERS", "0") +_te = None +if _te is not None: + env["TABSYN_VAE_EPOCHS"] = str(_te) + env["TABSYN_DIFFUSION_MAX_EPOCHS"] = str(max(_te + 1, 2)) + +# Data preprocessing is done on the host side (_prepare_data_dir) +# which creates .npy files, train/test CSVs, and info.json + +# Step 1: Train VAE (produces latent embeddings) +print(f"[TabSyn] Step 1/2: Training VAE in {tabsyn_root}, dataname={dataname}") +ret = subprocess.run( + [sys.executable, "main.py", + "--dataname", dataname, + "--mode", "train", + "--method", "vae", + "--gpu", "0"], + cwd=tabsyn_root, + env=env +) +if ret.returncode != 0: + print("[TabSyn] VAE training failed") + sys.exit(ret.returncode) + +# Step 2: Train diffusion model on latent space +print(f"[TabSyn] Step 2/2: Training diffusion model") +ret = subprocess.run( + [sys.executable, "main.py", + "--dataname", dataname, + "--mode", "train", + "--method", "tabsyn", + "--gpu", "0"], + cwd=tabsyn_root, + env=env +) +if ret.returncode != 0: + print("[TabSyn] Diffusion training failed") + sys.exit(ret.returncode) +print("[TabSyn] Training complete (VAE + Diffusion)") diff --git a/hyperparameter/c2/tabsyn/tabsyn-c2-20260505_063947/data/tabsyn_c2/X_cat_test.npy b/hyperparameter/c2/tabsyn/tabsyn-c2-20260505_063947/data/tabsyn_c2/X_cat_test.npy new file mode 100644 index 0000000000000000000000000000000000000000..6cf4fc75ff61837a47172e845d2942ba68f4ccd1 --- /dev/null +++ b/hyperparameter/c2/tabsyn/tabsyn-c2-20260505_063947/data/tabsyn_c2/X_cat_test.npy @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:0e9f5e299905cfd50c63688fb7b818aeec0d802b14338f705ec09d39826ac9c2 +size 55408 diff --git a/hyperparameter/c2/tabsyn/tabsyn-c2-20260505_063947/data/tabsyn_c2/X_cat_train.npy b/hyperparameter/c2/tabsyn/tabsyn-c2-20260505_063947/data/tabsyn_c2/X_cat_train.npy new file mode 100644 index 0000000000000000000000000000000000000000..6cf4fc75ff61837a47172e845d2942ba68f4ccd1 --- /dev/null +++ b/hyperparameter/c2/tabsyn/tabsyn-c2-20260505_063947/data/tabsyn_c2/X_cat_train.npy @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:0e9f5e299905cfd50c63688fb7b818aeec0d802b14338f705ec09d39826ac9c2 +size 55408 diff --git a/hyperparameter/c2/tabsyn/tabsyn-c2-20260505_063947/data/tabsyn_c2/X_num_test.npy b/hyperparameter/c2/tabsyn/tabsyn-c2-20260505_063947/data/tabsyn_c2/X_num_test.npy new file mode 100644 index 0000000000000000000000000000000000000000..9a71edeab7a22756c9090743b5d0fde204acfb75 --- /dev/null +++ b/hyperparameter/c2/tabsyn/tabsyn-c2-20260505_063947/data/tabsyn_c2/X_num_test.npy @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:f937731a3e7785676e9f861e44eddab69c323327e03bdd1f6e8755c5321538fb +size 5656 diff --git a/hyperparameter/c2/tabsyn/tabsyn-c2-20260505_063947/data/tabsyn_c2/X_num_train.npy b/hyperparameter/c2/tabsyn/tabsyn-c2-20260505_063947/data/tabsyn_c2/X_num_train.npy new file mode 100644 index 0000000000000000000000000000000000000000..9a71edeab7a22756c9090743b5d0fde204acfb75 --- /dev/null +++ b/hyperparameter/c2/tabsyn/tabsyn-c2-20260505_063947/data/tabsyn_c2/X_num_train.npy @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:f937731a3e7785676e9f861e44eddab69c323327e03bdd1f6e8755c5321538fb +size 5656 diff --git a/hyperparameter/c2/tabsyn/tabsyn-c2-20260505_063947/data/tabsyn_c2/info.json b/hyperparameter/c2/tabsyn/tabsyn-c2-20260505_063947/data/tabsyn_c2/info.json new file mode 100644 index 0000000000000000000000000000000000000000..3d85c74a88f8b29c5054c0455ce2f895b74cc726 --- /dev/null +++ b/hyperparameter/c2/tabsyn/tabsyn-c2-20260505_063947/data/tabsyn_c2/info.json @@ -0,0 +1,89 @@ +{ + "name": "tabsyn_c2", + "task_type": "multiclass", + "n_num_features": 1, + "n_cat_features": 5, + "train_size": 1382, + "num_col_idx": [ + 0 + ], + "cat_col_idx": [ + 1, + 2, + 3, + 4, + 5 + ], + "target_col_idx": [ + 6 + ], + "column_names": [ + "buying", + "maint", + "doors", + "persons", + "lug_boot", + "safety", + "class" + ], + "train_num": 1382, + "test_num": 1382, + "header": 0, + "file_type": "csv", + "data_path": "data/tabsyn_c2/train.csv", + "test_path": null, + "idx_mapping": { + "0": 0, + "1": 1, + "2": 2, + "3": 3, + "4": 4, + "5": 5, + "6": 6 + }, + "inverse_idx_mapping": { + "0": 0, + "1": 1, + "2": 2, + "3": 3, + "4": 4, + "5": 5, + "6": 6 + }, + "idx_name_mapping": { + "0": "buying", + "1": "maint", + "2": "doors", + "3": "persons", + "4": "lug_boot", + "5": "safety", + "6": "class" + }, + "n_classes": 4, + "metadata": { + "columns": { + "0": { + "sdtype": "numerical", + "computer_representation": "Float" + }, + "1": { + "sdtype": "categorical" + }, + "2": { + "sdtype": "categorical" + }, + "3": { + "sdtype": "categorical" + }, + "4": { + "sdtype": "categorical" + }, + "5": { + "sdtype": "categorical" + }, + "6": { + "sdtype": "categorical" + } + } + } +} \ No newline at end of file diff --git a/hyperparameter/c2/tabsyn/tabsyn-c2-20260505_063947/data/tabsyn_c2/test.csv b/hyperparameter/c2/tabsyn/tabsyn-c2-20260505_063947/data/tabsyn_c2/test.csv new file mode 100644 index 0000000000000000000000000000000000000000..94d40776e20a2226c5a316fc3eaf8b74b8513970 --- /dev/null +++ b/hyperparameter/c2/tabsyn/tabsyn-c2-20260505_063947/data/tabsyn_c2/test.csv @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:3e7b4d4a1f787d81e53eddffbd43603149e1dd038d94b4c0244340ff4a2e4511 +size 19397 diff --git a/hyperparameter/c2/tabsyn/tabsyn-c2-20260505_063947/data/tabsyn_c2/train.csv b/hyperparameter/c2/tabsyn/tabsyn-c2-20260505_063947/data/tabsyn_c2/train.csv new file mode 100644 index 0000000000000000000000000000000000000000..94d40776e20a2226c5a316fc3eaf8b74b8513970 --- /dev/null +++ b/hyperparameter/c2/tabsyn/tabsyn-c2-20260505_063947/data/tabsyn_c2/train.csv @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:3e7b4d4a1f787d81e53eddffbd43603149e1dd038d94b4c0244340ff4a2e4511 +size 19397 diff --git a/hyperparameter/c2/tabsyn/tabsyn-c2-20260505_063947/data/tabsyn_c2/y_test.npy b/hyperparameter/c2/tabsyn/tabsyn-c2-20260505_063947/data/tabsyn_c2/y_test.npy new file mode 100644 index 0000000000000000000000000000000000000000..108cc1504a0828881e00ae2e843ec55f1a447337 --- /dev/null +++ b/hyperparameter/c2/tabsyn/tabsyn-c2-20260505_063947/data/tabsyn_c2/y_test.npy @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:f88f9f2d088513402a20e38e046da314636957e28ee86d4df15ac0dfc9fce867 +size 11184 diff --git a/hyperparameter/c2/tabsyn/tabsyn-c2-20260505_063947/data/tabsyn_c2/y_train.npy b/hyperparameter/c2/tabsyn/tabsyn-c2-20260505_063947/data/tabsyn_c2/y_train.npy new file mode 100644 index 0000000000000000000000000000000000000000..108cc1504a0828881e00ae2e843ec55f1a447337 --- /dev/null +++ b/hyperparameter/c2/tabsyn/tabsyn-c2-20260505_063947/data/tabsyn_c2/y_train.npy @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:f88f9f2d088513402a20e38e046da314636957e28ee86d4df15ac0dfc9fce867 +size 11184 diff --git a/hyperparameter/c2/tabsyn/tabsyn-c2-20260505_063947/gen_20260505_073149.log b/hyperparameter/c2/tabsyn/tabsyn-c2-20260505_063947/gen_20260505_073149.log new file mode 100644 index 0000000000000000000000000000000000000000..dbfa25a9848dd8bef088aeea77224473bceb5070 --- /dev/null +++ b/hyperparameter/c2/tabsyn/tabsyn-c2-20260505_063947/gen_20260505_073149.log @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:383a2223b426ab11178d29a16206a04cb48b8167cfa312c11bff99a802788a29 +size 940 diff --git a/hyperparameter/c2/tabsyn/tabsyn-c2-20260505_063947/input_snapshot.json b/hyperparameter/c2/tabsyn/tabsyn-c2-20260505_063947/input_snapshot.json new file mode 100644 index 0000000000000000000000000000000000000000..7d3fddeb570e67b127ac5aef0d448cae7e934e6c --- /dev/null +++ b/hyperparameter/c2/tabsyn/tabsyn-c2-20260505_063947/input_snapshot.json @@ -0,0 +1,36 @@ +{ + "dataset_id": "c2", + "model": "tabsyn", + "inputs": { + "train_csv": { + "path": "/data/jialinzhang/SynthesizePipeline-server/DatasetNew/c2/c2-train.csv", + "exists": true, + "size": 42948, + "sha256": "17bc560fa96bd00fb3b526e1e65bc91210b701d0d0a4e8bb9b4c5196cab56def" + }, + "val_csv": { + "path": "/data/jialinzhang/SynthesizePipeline-server/DatasetNew/c2/c2-val.csv", + "exists": true, + "size": 5349, + "sha256": "61e565eca62e65a7dccd9d51039a3170413379e10fc494e25870e7c4294863c9" + }, + "test_csv": { + "path": "/data/jialinzhang/SynthesizePipeline-server/DatasetNew/c2/c2-test.csv", + "exists": true, + "size": 5448, + "sha256": "cbcbb062a1faf5fa44b66c80532baa229e05b94fc42137269761e6c6d84af20a" + }, + "profile_json": { + "path": "/data/jialinzhang/SynthesizePipeline-server/DatasetNew/artifacts/data_core/tabular/c2/c2-dataset_profile.json", + "exists": true, + "size": 3240, + "sha256": "526b7163b2076c93c0bf4638438081ee8a6907065d5b608faa40d1a3dbc2a27b" + }, + "contract_json": { + "path": "/data/jialinzhang/SynthesizePipeline-server/DatasetNew/artifacts/data_core/tabular/c2/c2-dataset_contract_v1.json", + "exists": true, + "size": 3731, + "sha256": "fb595a876054c2ee9b4e10cfe83a5691588de1d25466cbb9d473c18ad3604009" + } + } +} \ No newline at end of file diff --git a/hyperparameter/c2/tabsyn/tabsyn-c2-20260505_063947/public_gate/normalized_schema_snapshot.json b/hyperparameter/c2/tabsyn/tabsyn-c2-20260505_063947/public_gate/normalized_schema_snapshot.json new file mode 100644 index 0000000000000000000000000000000000000000..689b1d00d96508e44ba40e58dc4560e19afc2b3b --- /dev/null +++ b/hyperparameter/c2/tabsyn/tabsyn-c2-20260505_063947/public_gate/normalized_schema_snapshot.json @@ -0,0 +1,144 @@ +{ + "dataset_id": "c2", + "target_column": "class", + "task_type": "classification", + "columns": [ + { + "name": "buying", + "role": "feature", + "semantic_type": "categorical", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 4, + "unique_ratio": 0.002894, + "example_values": [ + "vhigh", + "med", + "high", + "low" + ] + } + }, + { + "name": "maint", + "role": "feature", + "semantic_type": "categorical", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 4, + "unique_ratio": 0.002894, + "example_values": [ + "vhigh", + "low", + "med", + "high" + ] + } + }, + { + "name": "doors", + "role": "feature", + "semantic_type": "categorical", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 4, + "unique_ratio": 0.002894, + "example_values": [ + "2", + "5more", + "3", + "4" + ] + } + }, + { + "name": "persons", + "role": "feature", + "semantic_type": "categorical", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 3, + "unique_ratio": 0.002171, + "example_values": [ + "2", + "4", + "more" + ] + } + }, + { + "name": "lug_boot", + "role": "feature", + "semantic_type": "categorical", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 3, + "unique_ratio": 0.002171, + "example_values": [ + "small", + "big", + "med" + ] + } + }, + { + "name": "safety", + "role": "feature", + "semantic_type": "categorical", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 3, + "unique_ratio": 0.002171, + "example_values": [ + "low", + "high", + "med" + ] + } + }, + { + "name": "class", + "role": "target", + "semantic_type": "categorical", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 4, + "unique_ratio": 0.002894, + "example_values": [ + "unacc", + "good", + "acc", + "vgood" + ] + } + } + ] +} \ No newline at end of file diff --git a/hyperparameter/c2/tabsyn/tabsyn-c2-20260505_063947/public_gate/public_gate_report.json b/hyperparameter/c2/tabsyn/tabsyn-c2-20260505_063947/public_gate/public_gate_report.json new file mode 100644 index 0000000000000000000000000000000000000000..2e4cdcb2a4e28e40d59b17a83e773f622b7636a5 --- /dev/null +++ b/hyperparameter/c2/tabsyn/tabsyn-c2-20260505_063947/public_gate/public_gate_report.json @@ -0,0 +1,37 @@ +{ + "dataset_id": "c2", + "status": "pass", + "checks": [ + { + "check_id": "PG001_csv_parse_ok", + "status": "pass" + }, + { + "check_id": "PG002_split_header_consistent", + "status": "pass" + }, + { + "check_id": "PG003_profile_header_match", + "status": "pass" + }, + { + "check_id": "PG004_missing_token_normalized", + "status": "pass" + }, + { + "check_id": "PG005_semantic_type_validated", + "status": "pass" + }, + { + "check_id": "PG006_target_defined_and_valid", + "status": "pass" + } + ], + "target_column": "class", + "task_type": "classification", + "input_splits": { + "train": "/data/jialinzhang/SynthesizePipeline-server/DatasetNew/c2/c2-train.csv", + "val": "/data/jialinzhang/SynthesizePipeline-server/DatasetNew/c2/c2-val.csv", + "test": "/data/jialinzhang/SynthesizePipeline-server/DatasetNew/c2/c2-test.csv" + } +} \ No newline at end of file diff --git a/hyperparameter/c2/tabsyn/tabsyn-c2-20260505_063947/public_gate/staged_input_manifest.json b/hyperparameter/c2/tabsyn/tabsyn-c2-20260505_063947/public_gate/staged_input_manifest.json new file mode 100644 index 0000000000000000000000000000000000000000..4866dce96b2749a00313453a0d165bceb9d5f2d5 --- /dev/null +++ b/hyperparameter/c2/tabsyn/tabsyn-c2-20260505_063947/public_gate/staged_input_manifest.json @@ -0,0 +1,149 @@ +{ + "dataset_id": "c2", + "target_column": "class", + "task_type": "classification", + "train_csv": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/c2/tabsyn/tabsyn-c2-20260505_063947/staged/public/train.csv", + "val_csv": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/c2/tabsyn/tabsyn-c2-20260505_063947/staged/public/val.csv", + "test_csv": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/c2/tabsyn/tabsyn-c2-20260505_063947/staged/public/test.csv", + "features_json": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/c2/tabsyn/tabsyn-c2-20260505_063947/staged/public/staged_features.json", + "public_gate_report": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/c2/tabsyn/tabsyn-c2-20260505_063947/public_gate/public_gate_report.json", + "column_schema": [ + { + "name": "buying", + "role": "feature", + "semantic_type": "categorical", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 4, + "unique_ratio": 0.002894, + "example_values": [ + "vhigh", + "med", + "high", + "low" + ] + } + }, + { + "name": "maint", + "role": "feature", + "semantic_type": "categorical", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 4, + "unique_ratio": 0.002894, + "example_values": [ + "vhigh", + "low", + "med", + "high" + ] + } + }, + { + "name": "doors", + "role": "feature", + "semantic_type": "categorical", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 4, + "unique_ratio": 0.002894, + "example_values": [ + "2", + "5more", + "3", + "4" + ] + } + }, + { + "name": "persons", + "role": "feature", + "semantic_type": "categorical", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 3, + "unique_ratio": 0.002171, + "example_values": [ + "2", + "4", + "more" + ] + } + }, + { + "name": "lug_boot", + "role": "feature", + "semantic_type": "categorical", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 3, + "unique_ratio": 0.002171, + "example_values": [ + "small", + "big", + "med" + ] + } + }, + { + "name": "safety", + "role": "feature", + "semantic_type": "categorical", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 3, + "unique_ratio": 0.002171, + "example_values": [ + "low", + "high", + "med" + ] + } + }, + { + "name": "class", + "role": "target", + "semantic_type": "categorical", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 4, + "unique_ratio": 0.002894, + "example_values": [ + "unacc", + "good", + "acc", + "vgood" + ] + } + } + ] +} \ No newline at end of file diff --git a/hyperparameter/c2/tabsyn/tabsyn-c2-20260505_063947/run_config.json b/hyperparameter/c2/tabsyn/tabsyn-c2-20260505_063947/run_config.json new file mode 100644 index 0000000000000000000000000000000000000000..1e28533a8b8726000e0595a21d4b3144ab49b817 --- /dev/null +++ b/hyperparameter/c2/tabsyn/tabsyn-c2-20260505_063947/run_config.json @@ -0,0 +1,48 @@ +{ + "schema_version": 1, + "recorded_at": "2026-05-05T06:39:47", + "dataset_id": "c2", + "model": "tabsyn", + "work_dir": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/c2/tabsyn/tabsyn-c2-20260505_063947", + "dataset_source_requested": "new", + "dataset_source_resolved": "new", + "cli_args": { + "model": "tabsyn", + "dataset": "c2", + "dataset_source": "new", + "train": true, + "generate": true, + "num_rows": 0, + "epochs": null, + "output_dir": null, + "model_dir": null, + "work_dir": null, + "resume": false, + "no_stats": false + }, + "resolved": { + "num_rows": 1382, + "model_path": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/c2/tabsyn/tabsyn-c2-20260505_063947", + "output_csv": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/c2/tabsyn/tabsyn-c2-20260505_063947/tabsyn-c2-1382-20260505_073149.csv" + }, + "input_artifacts": { + "public_gate_report": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/c2/tabsyn/tabsyn-c2-20260505_063947/public_gate/public_gate_report.json", + "public_manifest": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/c2/tabsyn/tabsyn-c2-20260505_063947/public_gate/staged_input_manifest.json", + "model_manifest": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/c2/tabsyn/tabsyn-c2-20260505_063947/staged/tabsyn/model_input_manifest.json", + "train_csv": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/c2/tabsyn/tabsyn-c2-20260505_063947/staged/public/train.csv", + "features_json": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/c2/tabsyn/tabsyn-c2-20260505_063947/staged/public/staged_features.json", + "target_column": "class", + "task_type": "classification" + }, + "env_overrides": { + "BENCHMARK_TABSYN_GPUS": "device=3", + "TABSYN_DIFFUSION_MAX_EPOCHS": "10", + "TABSYN_RESUME": "0", + "TABSYN_VAE_BATCH_SIZE": "256", + "TABSYN_VAE_ENCODE_BATCH_SIZE": "256", + "TABSYN_VAE_EPOCHS": "10", + "TABSYN_VAE_EVAL_BATCH_SIZE": "256", + "TABSYN_VAE_INFER_BATCH_SIZE": "256", + "TABSYN_VAE_NUM_WORKERS": "0" + } +} \ No newline at end of file diff --git a/hyperparameter/c2/tabsyn/tabsyn-c2-20260505_063947/runtime_result.json b/hyperparameter/c2/tabsyn/tabsyn-c2-20260505_063947/runtime_result.json new file mode 100644 index 0000000000000000000000000000000000000000..bfaa2789a948e07721ffd3cf3bbc9407fdadbb4e --- /dev/null +++ b/hyperparameter/c2/tabsyn/tabsyn-c2-20260505_063947/runtime_result.json @@ -0,0 +1,27 @@ +{ + "dataset_id": "c2", + "model": "tabsyn", + "run_id": "tabsyn-c2-20260505_063947", + "public_gate_status": "pass", + "adapter_ready_status": "pass", + "train_status": "success", + "generate_status": "success", + "reason_code": null, + "reason_detail": null, + "artifacts": { + "synthetic_csv": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/c2/tabsyn/tabsyn-c2-20260505_063947/tabsyn-c2-1382-20260505_073149.csv", + "model_path": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/c2/tabsyn/tabsyn-c2-20260505_063947" + }, + "timings": { + "train": { + "started_at": "2026-05-05T06:39:47", + "ended_at": "2026-05-05T07:31:49", + "duration_sec": 3121.877 + }, + "generate": { + "started_at": "2026-05-05T07:31:49", + "ended_at": "2026-05-05T07:31:54", + "duration_sec": 5.489 + } + } +} \ No newline at end of file diff --git a/hyperparameter/c2/tabsyn/tabsyn-c2-20260505_063947/staged/public/staged_features.json b/hyperparameter/c2/tabsyn/tabsyn-c2-20260505_063947/staged/public/staged_features.json new file mode 100644 index 0000000000000000000000000000000000000000..61783861dd5de501592f76acb0469cf3f3b2622a --- /dev/null +++ b/hyperparameter/c2/tabsyn/tabsyn-c2-20260505_063947/staged/public/staged_features.json @@ -0,0 +1,37 @@ +[ + { + "feature_name": "buying", + "data_type": "categorical", + "is_target": false + }, + { + "feature_name": "maint", + "data_type": "categorical", + "is_target": false + }, + { + "feature_name": "doors", + "data_type": "categorical", + "is_target": false + }, + { + "feature_name": "persons", + "data_type": "categorical", + "is_target": false + }, + { + "feature_name": "lug_boot", + "data_type": "categorical", + "is_target": false + }, + { + "feature_name": "safety", + "data_type": "categorical", + "is_target": false + }, + { + "feature_name": "class", + "data_type": "categorical", + "is_target": true + } +] \ No newline at end of file diff --git a/hyperparameter/c2/tabsyn/tabsyn-c2-20260505_063947/staged/public/test.csv b/hyperparameter/c2/tabsyn/tabsyn-c2-20260505_063947/staged/public/test.csv new file mode 100644 index 0000000000000000000000000000000000000000..392a0d7189a34d8f13ecf20a99d64b03230d517c --- /dev/null +++ b/hyperparameter/c2/tabsyn/tabsyn-c2-20260505_063947/staged/public/test.csv @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:b48114a7d0bc5bd9a07920f903c8d4aba8bf98bf2a66a050da03588b0245ca73 +size 5273 diff --git a/hyperparameter/c2/tabsyn/tabsyn-c2-20260505_063947/staged/public/train.csv b/hyperparameter/c2/tabsyn/tabsyn-c2-20260505_063947/staged/public/train.csv new file mode 100644 index 0000000000000000000000000000000000000000..da4f4d55134eebc0e51157d0d467536371db1484 --- /dev/null +++ b/hyperparameter/c2/tabsyn/tabsyn-c2-20260505_063947/staged/public/train.csv @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:4aed00c2c2b3f88a55a7ebff31b2e1b5e0e32fb0a7267e0b9d2779cd23e434dd +size 41565 diff --git a/hyperparameter/c2/tabsyn/tabsyn-c2-20260505_063947/staged/public/val.csv b/hyperparameter/c2/tabsyn/tabsyn-c2-20260505_063947/staged/public/val.csv new file mode 100644 index 0000000000000000000000000000000000000000..af8caf7ee42524188534a3daf32996dc491952d9 --- /dev/null +++ b/hyperparameter/c2/tabsyn/tabsyn-c2-20260505_063947/staged/public/val.csv @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:26e90c1170a57a14c05832ac88027722b1f3848f9662c7c09ef7c93dcba4cc01 +size 5176 diff --git a/hyperparameter/c2/tabsyn/tabsyn-c2-20260505_063947/staged/tabsyn/adapter_report.json b/hyperparameter/c2/tabsyn/tabsyn-c2-20260505_063947/staged/tabsyn/adapter_report.json new file mode 100644 index 0000000000000000000000000000000000000000..0478105b5c7a3031498ef407e8b5dcdecb0bb423 --- /dev/null +++ b/hyperparameter/c2/tabsyn/tabsyn-c2-20260505_063947/staged/tabsyn/adapter_report.json @@ -0,0 +1,7 @@ +{ + "adapter_ready_status": "pass", + "adapter_fail_reason_code": null, + "adapter_fail_detail": null, + "adapter_transforms_applied": [], + "model_input_manifest": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/c2/tabsyn/tabsyn-c2-20260505_063947/staged/tabsyn/model_input_manifest.json" +} \ No newline at end of file diff --git a/hyperparameter/c2/tabsyn/tabsyn-c2-20260505_063947/staged/tabsyn/adapter_transforms_applied.json b/hyperparameter/c2/tabsyn/tabsyn-c2-20260505_063947/staged/tabsyn/adapter_transforms_applied.json new file mode 100644 index 0000000000000000000000000000000000000000..0637a088a01e8ddab3bf3fa98dbe804cbde1a0dc --- /dev/null +++ b/hyperparameter/c2/tabsyn/tabsyn-c2-20260505_063947/staged/tabsyn/adapter_transforms_applied.json @@ -0,0 +1 @@ +[] \ No newline at end of file diff --git a/hyperparameter/c2/tabsyn/tabsyn-c2-20260505_063947/staged/tabsyn/model_input_manifest.json b/hyperparameter/c2/tabsyn/tabsyn-c2-20260505_063947/staged/tabsyn/model_input_manifest.json new file mode 100644 index 0000000000000000000000000000000000000000..b11e752d021f47161a9d34fff1be1ace1049a93e --- /dev/null +++ b/hyperparameter/c2/tabsyn/tabsyn-c2-20260505_063947/staged/tabsyn/model_input_manifest.json @@ -0,0 +1,151 @@ +{ + "dataset_id": "c2", + "model": "tabsyn", + "target_column": "class", + "task_type": "classification", + "column_schema": [ + { + "name": "buying", + "role": "feature", + "semantic_type": "categorical", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 4, + "unique_ratio": 0.002894, + "example_values": [ + "vhigh", + "med", + "high", + "low" + ] + } + }, + { + "name": "maint", + "role": "feature", + "semantic_type": "categorical", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 4, + "unique_ratio": 0.002894, + "example_values": [ + "vhigh", + "low", + "med", + "high" + ] + } + }, + { + "name": "doors", + "role": "feature", + "semantic_type": "categorical", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 4, + "unique_ratio": 0.002894, + "example_values": [ + "2", + "5more", + "3", + "4" + ] + } + }, + { + "name": "persons", + "role": "feature", + "semantic_type": "categorical", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 3, + "unique_ratio": 0.002171, + "example_values": [ + "2", + "4", + "more" + ] + } + }, + { + "name": "lug_boot", + "role": "feature", + "semantic_type": "categorical", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 3, + "unique_ratio": 0.002171, + "example_values": [ + "small", + "big", + "med" + ] + } + }, + { + "name": "safety", + "role": "feature", + "semantic_type": "categorical", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 3, + "unique_ratio": 0.002171, + "example_values": [ + "low", + "high", + "med" + ] + } + }, + { + "name": "class", + "role": "target", + "semantic_type": "categorical", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 4, + "unique_ratio": 0.002894, + "example_values": [ + "unacc", + "good", + "acc", + "vgood" + ] + } + } + ], + "public_manifest": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/c2/tabsyn/tabsyn-c2-20260505_063947/public_gate/staged_input_manifest.json", + "train_csv": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/c2/tabsyn/tabsyn-c2-20260505_063947/staged/public/train.csv", + "val_csv": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/c2/tabsyn/tabsyn-c2-20260505_063947/staged/public/val.csv", + "test_csv": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/c2/tabsyn/tabsyn-c2-20260505_063947/staged/public/test.csv", + "features_json": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/c2/tabsyn/tabsyn-c2-20260505_063947/staged/public/staged_features.json", + "public_gate_report": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/c2/tabsyn/tabsyn-c2-20260505_063947/public_gate/public_gate_report.json" +} \ No newline at end of file diff --git a/hyperparameter/c2/tabsyn/tabsyn-c2-20260505_063947/synthetic/tabsyn_c2/real.csv b/hyperparameter/c2/tabsyn/tabsyn-c2-20260505_063947/synthetic/tabsyn_c2/real.csv new file mode 100644 index 0000000000000000000000000000000000000000..94d40776e20a2226c5a316fc3eaf8b74b8513970 --- /dev/null +++ b/hyperparameter/c2/tabsyn/tabsyn-c2-20260505_063947/synthetic/tabsyn_c2/real.csv @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:3e7b4d4a1f787d81e53eddffbd43603149e1dd038d94b4c0244340ff4a2e4511 +size 19397 diff --git a/hyperparameter/c2/tabsyn/tabsyn-c2-20260505_063947/synthetic/tabsyn_c2/test.csv b/hyperparameter/c2/tabsyn/tabsyn-c2-20260505_063947/synthetic/tabsyn_c2/test.csv new file mode 100644 index 0000000000000000000000000000000000000000..94d40776e20a2226c5a316fc3eaf8b74b8513970 --- /dev/null +++ b/hyperparameter/c2/tabsyn/tabsyn-c2-20260505_063947/synthetic/tabsyn_c2/test.csv @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:3e7b4d4a1f787d81e53eddffbd43603149e1dd038d94b4c0244340ff4a2e4511 +size 19397 diff --git a/hyperparameter/c2/tabsyn/tabsyn-c2-20260505_063947/tabsyn-c2-1382-20260505_073149.csv b/hyperparameter/c2/tabsyn/tabsyn-c2-20260505_063947/tabsyn-c2-1382-20260505_073149.csv new file mode 100644 index 0000000000000000000000000000000000000000..14ad410f314fa3f40c4af03e485f7e91ac44ff31 --- /dev/null +++ b/hyperparameter/c2/tabsyn/tabsyn-c2-20260505_063947/tabsyn-c2-1382-20260505_073149.csv @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:589891572566e3b4c42868c6db370ae22d67b2394e55abc3096155fff55e0dbe +size 22179 diff --git a/hyperparameter/c2/tabsyn/tabsyn-c2-20260505_063947/train_20260505_063947.log b/hyperparameter/c2/tabsyn/tabsyn-c2-20260505_063947/train_20260505_063947.log new file mode 100644 index 0000000000000000000000000000000000000000..89b93fabcc5aba9f14677b4a859ad1708d1d438e --- /dev/null +++ b/hyperparameter/c2/tabsyn/tabsyn-c2-20260505_063947/train_20260505_063947.log @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:43b007fce1b6e49dff5fd4e9a82e86233cf4122f45c02e471cca1b14204a7b66 +size 3359651 diff --git a/hyperparameter/c2/tabsyn/tabsyn-c2-20260505_073207/_tabsyn_sample.py b/hyperparameter/c2/tabsyn/tabsyn-c2-20260505_073207/_tabsyn_sample.py new file mode 100644 index 0000000000000000000000000000000000000000..c20a3c08a531ea3ee97bdd701b72298a4d71bad8 --- /dev/null +++ b/hyperparameter/c2/tabsyn/tabsyn-c2-20260505_073207/_tabsyn_sample.py @@ -0,0 +1,43 @@ +import os, sys, subprocess + +work_dir = "/work/output-Benchmark-trainonly-v1/c2/tabsyn/tabsyn-c2-20260505_073207" +dataname = "tabsyn_c2" +output_csv = "/work/output-Benchmark-trainonly-v1/c2/tabsyn/tabsyn-c2-20260505_073207/tabsyn-c2-1382-20260505_082340.csv" +tabsyn_root = "/workspace/tabsyn" + +assert os.path.exists(tabsyn_root), f"TabSyn source not mounted: {tabsyn_root}" + +old = os.environ.get("PYTHONPATH", "") +os.environ["PYTHONPATH"] = tabsyn_root + (os.pathsep + old if old else "") +sys.path.insert(0, tabsyn_root) + +os.chdir(tabsyn_root) + +# Ensure data symlink exists +data_link = os.path.join(tabsyn_root, "data", dataname) +data_src = os.path.join(work_dir, "data", dataname) +os.makedirs(os.path.join(tabsyn_root, "data"), exist_ok=True) +if os.path.exists(data_link): + os.remove(data_link) +os.symlink(data_src, data_link) + +print(f"[TabSyn] Sampling 1382 rows") +env = os.environ.copy() +env.setdefault("TABSYN_RESUME", "0") +env.setdefault("TABSYN_VAE_BATCH_SIZE", "32") +env.setdefault("TABSYN_VAE_EVAL_BATCH_SIZE", env["TABSYN_VAE_BATCH_SIZE"]) +env.setdefault("TABSYN_VAE_INFER_BATCH_SIZE", env["TABSYN_VAE_BATCH_SIZE"]) +env.setdefault("TABSYN_VAE_ENCODE_BATCH_SIZE", env["TABSYN_VAE_BATCH_SIZE"]) +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/hyperparameter/c2/tabsyn/tabsyn-c2-20260505_073207/_tabsyn_train.py b/hyperparameter/c2/tabsyn/tabsyn-c2-20260505_073207/_tabsyn_train.py new file mode 100644 index 0000000000000000000000000000000000000000..579cd77cd6788f87748348f2f889e19ff9e3ee5e --- /dev/null +++ b/hyperparameter/c2/tabsyn/tabsyn-c2-20260505_073207/_tabsyn_train.py @@ -0,0 +1,69 @@ +import os, sys, subprocess + +work_dir = "/work/output-Benchmark-trainonly-v1/c2/tabsyn/tabsyn-c2-20260505_073207" +dataname = "tabsyn_c2" +tabsyn_root = "/workspace/tabsyn" + +assert os.path.exists(tabsyn_root), f"TabSyn source not mounted: {tabsyn_root}" + +old = os.environ.get("PYTHONPATH", "") +os.environ["PYTHONPATH"] = tabsyn_root + (os.pathsep + old if old else "") +sys.path.insert(0, tabsyn_root) + +os.chdir(tabsyn_root) + +# Symlink data dir into TabSyn data/ +data_link = os.path.join(tabsyn_root, "data", dataname) +data_src = os.path.join(work_dir, "data", dataname) +os.makedirs(os.path.join(tabsyn_root, "data"), exist_ok=True) +if os.path.exists(data_link): + os.remove(data_link) +os.symlink(data_src, data_link) + +env = os.environ.copy() +env.setdefault("TABSYN_RESUME", "0") +env.setdefault("TABSYN_VAE_BATCH_SIZE", "32") +env.setdefault("TABSYN_VAE_NUM_WORKERS", "0") +env.setdefault("TABSYN_VAE_EVAL_BATCH_SIZE", env["TABSYN_VAE_BATCH_SIZE"]) +env.setdefault("TABSYN_VAE_INFER_BATCH_SIZE", env["TABSYN_VAE_BATCH_SIZE"]) +env.setdefault("TABSYN_VAE_ENCODE_BATCH_SIZE", env["TABSYN_VAE_BATCH_SIZE"]) +# Safer defaults for wide tables on Docker: reduce shared-memory pressure in diffusion DataLoader. +env.setdefault("TABSYN_DIFFUSION_NUM_WORKERS", "0") +_te = None +if _te is not None: + env["TABSYN_VAE_EPOCHS"] = str(_te) + env["TABSYN_DIFFUSION_MAX_EPOCHS"] = str(max(_te + 1, 2)) + +# Data preprocessing is done on the host side (_prepare_data_dir) +# which creates .npy files, train/test CSVs, and info.json + +# Step 1: Train VAE (produces latent embeddings) +print(f"[TabSyn] Step 1/2: Training VAE in {tabsyn_root}, dataname={dataname}") +ret = subprocess.run( + [sys.executable, "main.py", + "--dataname", dataname, + "--mode", "train", + "--method", "vae", + "--gpu", "0"], + cwd=tabsyn_root, + env=env +) +if ret.returncode != 0: + print("[TabSyn] VAE training failed") + sys.exit(ret.returncode) + +# Step 2: Train diffusion model on latent space +print(f"[TabSyn] Step 2/2: Training diffusion model") +ret = subprocess.run( + [sys.executable, "main.py", + "--dataname", dataname, + "--mode", "train", + "--method", "tabsyn", + "--gpu", "0"], + cwd=tabsyn_root, + env=env +) +if ret.returncode != 0: + print("[TabSyn] Diffusion training failed") + sys.exit(ret.returncode) +print("[TabSyn] Training complete (VAE + Diffusion)") diff --git a/hyperparameter/c2/tabsyn/tabsyn-c2-20260505_073207/data/tabsyn_c2/X_cat_test.npy b/hyperparameter/c2/tabsyn/tabsyn-c2-20260505_073207/data/tabsyn_c2/X_cat_test.npy new file mode 100644 index 0000000000000000000000000000000000000000..6cf4fc75ff61837a47172e845d2942ba68f4ccd1 --- /dev/null +++ b/hyperparameter/c2/tabsyn/tabsyn-c2-20260505_073207/data/tabsyn_c2/X_cat_test.npy @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:0e9f5e299905cfd50c63688fb7b818aeec0d802b14338f705ec09d39826ac9c2 +size 55408 diff --git a/hyperparameter/c2/tabsyn/tabsyn-c2-20260505_073207/data/tabsyn_c2/X_cat_train.npy b/hyperparameter/c2/tabsyn/tabsyn-c2-20260505_073207/data/tabsyn_c2/X_cat_train.npy new file mode 100644 index 0000000000000000000000000000000000000000..6cf4fc75ff61837a47172e845d2942ba68f4ccd1 --- /dev/null +++ b/hyperparameter/c2/tabsyn/tabsyn-c2-20260505_073207/data/tabsyn_c2/X_cat_train.npy @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:0e9f5e299905cfd50c63688fb7b818aeec0d802b14338f705ec09d39826ac9c2 +size 55408 diff --git a/hyperparameter/c2/tabsyn/tabsyn-c2-20260505_073207/data/tabsyn_c2/X_num_test.npy b/hyperparameter/c2/tabsyn/tabsyn-c2-20260505_073207/data/tabsyn_c2/X_num_test.npy new file mode 100644 index 0000000000000000000000000000000000000000..9a71edeab7a22756c9090743b5d0fde204acfb75 --- /dev/null +++ b/hyperparameter/c2/tabsyn/tabsyn-c2-20260505_073207/data/tabsyn_c2/X_num_test.npy @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:f937731a3e7785676e9f861e44eddab69c323327e03bdd1f6e8755c5321538fb +size 5656 diff --git a/hyperparameter/c2/tabsyn/tabsyn-c2-20260505_073207/data/tabsyn_c2/X_num_train.npy b/hyperparameter/c2/tabsyn/tabsyn-c2-20260505_073207/data/tabsyn_c2/X_num_train.npy new file mode 100644 index 0000000000000000000000000000000000000000..9a71edeab7a22756c9090743b5d0fde204acfb75 --- /dev/null +++ b/hyperparameter/c2/tabsyn/tabsyn-c2-20260505_073207/data/tabsyn_c2/X_num_train.npy @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:f937731a3e7785676e9f861e44eddab69c323327e03bdd1f6e8755c5321538fb +size 5656 diff --git a/hyperparameter/c2/tabsyn/tabsyn-c2-20260505_073207/data/tabsyn_c2/info.json b/hyperparameter/c2/tabsyn/tabsyn-c2-20260505_073207/data/tabsyn_c2/info.json new file mode 100644 index 0000000000000000000000000000000000000000..3d85c74a88f8b29c5054c0455ce2f895b74cc726 --- /dev/null +++ b/hyperparameter/c2/tabsyn/tabsyn-c2-20260505_073207/data/tabsyn_c2/info.json @@ -0,0 +1,89 @@ +{ + "name": "tabsyn_c2", + "task_type": "multiclass", + "n_num_features": 1, + "n_cat_features": 5, + "train_size": 1382, + "num_col_idx": [ + 0 + ], + "cat_col_idx": [ + 1, + 2, + 3, + 4, + 5 + ], + "target_col_idx": [ + 6 + ], + "column_names": [ + "buying", + "maint", + "doors", + "persons", + "lug_boot", + "safety", + "class" + ], + "train_num": 1382, + "test_num": 1382, + "header": 0, + "file_type": "csv", + "data_path": "data/tabsyn_c2/train.csv", + "test_path": null, + "idx_mapping": { + "0": 0, + "1": 1, + "2": 2, + "3": 3, + "4": 4, + "5": 5, + "6": 6 + }, + "inverse_idx_mapping": { + "0": 0, + "1": 1, + "2": 2, + "3": 3, + "4": 4, + "5": 5, + "6": 6 + }, + "idx_name_mapping": { + "0": "buying", + "1": "maint", + "2": "doors", + "3": "persons", + "4": "lug_boot", + "5": "safety", + "6": "class" + }, + "n_classes": 4, + "metadata": { + "columns": { + "0": { + "sdtype": "numerical", + "computer_representation": "Float" + }, + "1": { + "sdtype": "categorical" + }, + "2": { + "sdtype": "categorical" + }, + "3": { + "sdtype": "categorical" + }, + "4": { + "sdtype": "categorical" + }, + "5": { + "sdtype": "categorical" + }, + "6": { + "sdtype": "categorical" + } + } + } +} \ No newline at end of file diff --git a/hyperparameter/c2/tabsyn/tabsyn-c2-20260505_073207/data/tabsyn_c2/test.csv b/hyperparameter/c2/tabsyn/tabsyn-c2-20260505_073207/data/tabsyn_c2/test.csv new file mode 100644 index 0000000000000000000000000000000000000000..94d40776e20a2226c5a316fc3eaf8b74b8513970 --- /dev/null +++ b/hyperparameter/c2/tabsyn/tabsyn-c2-20260505_073207/data/tabsyn_c2/test.csv @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:3e7b4d4a1f787d81e53eddffbd43603149e1dd038d94b4c0244340ff4a2e4511 +size 19397 diff --git a/hyperparameter/c2/tabsyn/tabsyn-c2-20260505_073207/data/tabsyn_c2/train.csv b/hyperparameter/c2/tabsyn/tabsyn-c2-20260505_073207/data/tabsyn_c2/train.csv new file mode 100644 index 0000000000000000000000000000000000000000..94d40776e20a2226c5a316fc3eaf8b74b8513970 --- /dev/null +++ b/hyperparameter/c2/tabsyn/tabsyn-c2-20260505_073207/data/tabsyn_c2/train.csv @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:3e7b4d4a1f787d81e53eddffbd43603149e1dd038d94b4c0244340ff4a2e4511 +size 19397 diff --git a/hyperparameter/c2/tabsyn/tabsyn-c2-20260505_073207/data/tabsyn_c2/y_test.npy b/hyperparameter/c2/tabsyn/tabsyn-c2-20260505_073207/data/tabsyn_c2/y_test.npy new file mode 100644 index 0000000000000000000000000000000000000000..108cc1504a0828881e00ae2e843ec55f1a447337 --- /dev/null +++ b/hyperparameter/c2/tabsyn/tabsyn-c2-20260505_073207/data/tabsyn_c2/y_test.npy @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:f88f9f2d088513402a20e38e046da314636957e28ee86d4df15ac0dfc9fce867 +size 11184 diff --git a/hyperparameter/c2/tabsyn/tabsyn-c2-20260505_073207/data/tabsyn_c2/y_train.npy b/hyperparameter/c2/tabsyn/tabsyn-c2-20260505_073207/data/tabsyn_c2/y_train.npy new file mode 100644 index 0000000000000000000000000000000000000000..108cc1504a0828881e00ae2e843ec55f1a447337 --- /dev/null +++ b/hyperparameter/c2/tabsyn/tabsyn-c2-20260505_073207/data/tabsyn_c2/y_train.npy @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:f88f9f2d088513402a20e38e046da314636957e28ee86d4df15ac0dfc9fce867 +size 11184 diff --git a/hyperparameter/c2/tabsyn/tabsyn-c2-20260505_073207/gen_20260505_082340.log b/hyperparameter/c2/tabsyn/tabsyn-c2-20260505_073207/gen_20260505_082340.log new file mode 100644 index 0000000000000000000000000000000000000000..d3b61f8c7c213183fa3540a60c0cea9546023184 --- /dev/null +++ b/hyperparameter/c2/tabsyn/tabsyn-c2-20260505_073207/gen_20260505_082340.log @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:56fd6730c8dd175b1f36b1f9373e1293857cb9ee0a40e60ab02ac9aece56dbc1 +size 940 diff --git a/hyperparameter/c2/tabsyn/tabsyn-c2-20260505_073207/input_snapshot.json b/hyperparameter/c2/tabsyn/tabsyn-c2-20260505_073207/input_snapshot.json new file mode 100644 index 0000000000000000000000000000000000000000..7d3fddeb570e67b127ac5aef0d448cae7e934e6c --- /dev/null +++ b/hyperparameter/c2/tabsyn/tabsyn-c2-20260505_073207/input_snapshot.json @@ -0,0 +1,36 @@ +{ + "dataset_id": "c2", + "model": "tabsyn", + "inputs": { + "train_csv": { + "path": "/data/jialinzhang/SynthesizePipeline-server/DatasetNew/c2/c2-train.csv", + "exists": true, + "size": 42948, + "sha256": "17bc560fa96bd00fb3b526e1e65bc91210b701d0d0a4e8bb9b4c5196cab56def" + }, + "val_csv": { + "path": "/data/jialinzhang/SynthesizePipeline-server/DatasetNew/c2/c2-val.csv", + "exists": true, + "size": 5349, + "sha256": "61e565eca62e65a7dccd9d51039a3170413379e10fc494e25870e7c4294863c9" + }, + "test_csv": { + "path": "/data/jialinzhang/SynthesizePipeline-server/DatasetNew/c2/c2-test.csv", + "exists": true, + "size": 5448, + "sha256": "cbcbb062a1faf5fa44b66c80532baa229e05b94fc42137269761e6c6d84af20a" + }, + "profile_json": { + "path": "/data/jialinzhang/SynthesizePipeline-server/DatasetNew/artifacts/data_core/tabular/c2/c2-dataset_profile.json", + "exists": true, + "size": 3240, + "sha256": "526b7163b2076c93c0bf4638438081ee8a6907065d5b608faa40d1a3dbc2a27b" + }, + "contract_json": { + "path": "/data/jialinzhang/SynthesizePipeline-server/DatasetNew/artifacts/data_core/tabular/c2/c2-dataset_contract_v1.json", + "exists": true, + "size": 3731, + "sha256": "fb595a876054c2ee9b4e10cfe83a5691588de1d25466cbb9d473c18ad3604009" + } + } +} \ No newline at end of file diff --git a/hyperparameter/c2/tabsyn/tabsyn-c2-20260505_073207/public_gate/normalized_schema_snapshot.json b/hyperparameter/c2/tabsyn/tabsyn-c2-20260505_073207/public_gate/normalized_schema_snapshot.json new file mode 100644 index 0000000000000000000000000000000000000000..689b1d00d96508e44ba40e58dc4560e19afc2b3b --- /dev/null +++ b/hyperparameter/c2/tabsyn/tabsyn-c2-20260505_073207/public_gate/normalized_schema_snapshot.json @@ -0,0 +1,144 @@ +{ + "dataset_id": "c2", + "target_column": "class", + "task_type": "classification", + "columns": [ + { + "name": "buying", + "role": "feature", + "semantic_type": "categorical", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 4, + "unique_ratio": 0.002894, + "example_values": [ + "vhigh", + "med", + "high", + "low" + ] + } + }, + { + "name": "maint", + "role": "feature", + "semantic_type": "categorical", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 4, + "unique_ratio": 0.002894, + "example_values": [ + "vhigh", + "low", + "med", + "high" + ] + } + }, + { + "name": "doors", + "role": "feature", + "semantic_type": "categorical", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 4, + "unique_ratio": 0.002894, + "example_values": [ + "2", + "5more", + "3", + "4" + ] + } + }, + { + "name": "persons", + "role": "feature", + "semantic_type": "categorical", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 3, + "unique_ratio": 0.002171, + "example_values": [ + "2", + "4", + "more" + ] + } + }, + { + "name": "lug_boot", + "role": "feature", + "semantic_type": "categorical", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 3, + "unique_ratio": 0.002171, + "example_values": [ + "small", + "big", + "med" + ] + } + }, + { + "name": "safety", + "role": "feature", + "semantic_type": "categorical", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 3, + "unique_ratio": 0.002171, + "example_values": [ + "low", + "high", + "med" + ] + } + }, + { + "name": "class", + "role": "target", + "semantic_type": "categorical", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 4, + "unique_ratio": 0.002894, + "example_values": [ + "unacc", + "good", + "acc", + "vgood" + ] + } + } + ] +} \ No newline at end of file diff --git a/hyperparameter/c2/tabsyn/tabsyn-c2-20260505_073207/public_gate/public_gate_report.json b/hyperparameter/c2/tabsyn/tabsyn-c2-20260505_073207/public_gate/public_gate_report.json new file mode 100644 index 0000000000000000000000000000000000000000..2e4cdcb2a4e28e40d59b17a83e773f622b7636a5 --- /dev/null +++ b/hyperparameter/c2/tabsyn/tabsyn-c2-20260505_073207/public_gate/public_gate_report.json @@ -0,0 +1,37 @@ +{ + "dataset_id": "c2", + "status": "pass", + "checks": [ + { + "check_id": "PG001_csv_parse_ok", + "status": "pass" + }, + { + "check_id": "PG002_split_header_consistent", + "status": "pass" + }, + { + "check_id": "PG003_profile_header_match", + "status": "pass" + }, + { + "check_id": "PG004_missing_token_normalized", + "status": "pass" + }, + { + "check_id": "PG005_semantic_type_validated", + "status": "pass" + }, + { + "check_id": "PG006_target_defined_and_valid", + "status": "pass" + } + ], + "target_column": "class", + "task_type": "classification", + "input_splits": { + "train": "/data/jialinzhang/SynthesizePipeline-server/DatasetNew/c2/c2-train.csv", + "val": "/data/jialinzhang/SynthesizePipeline-server/DatasetNew/c2/c2-val.csv", + "test": "/data/jialinzhang/SynthesizePipeline-server/DatasetNew/c2/c2-test.csv" + } +} \ No newline at end of file diff --git a/hyperparameter/c2/tabsyn/tabsyn-c2-20260505_073207/public_gate/staged_input_manifest.json b/hyperparameter/c2/tabsyn/tabsyn-c2-20260505_073207/public_gate/staged_input_manifest.json new file mode 100644 index 0000000000000000000000000000000000000000..590c5fc2ab84c1354da2f824aad3ae629e900823 --- /dev/null +++ b/hyperparameter/c2/tabsyn/tabsyn-c2-20260505_073207/public_gate/staged_input_manifest.json @@ -0,0 +1,149 @@ +{ + "dataset_id": "c2", + "target_column": "class", + "task_type": "classification", + "train_csv": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/c2/tabsyn/tabsyn-c2-20260505_073207/staged/public/train.csv", + "val_csv": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/c2/tabsyn/tabsyn-c2-20260505_073207/staged/public/val.csv", + "test_csv": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/c2/tabsyn/tabsyn-c2-20260505_073207/staged/public/test.csv", + "features_json": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/c2/tabsyn/tabsyn-c2-20260505_073207/staged/public/staged_features.json", + "public_gate_report": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/c2/tabsyn/tabsyn-c2-20260505_073207/public_gate/public_gate_report.json", + "column_schema": [ + { + "name": "buying", + "role": "feature", + "semantic_type": "categorical", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 4, + "unique_ratio": 0.002894, + "example_values": [ + "vhigh", + "med", + "high", + "low" + ] + } + }, + { + "name": "maint", + "role": "feature", + "semantic_type": "categorical", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 4, + "unique_ratio": 0.002894, + "example_values": [ + "vhigh", + "low", + "med", + "high" + ] + } + }, + { + "name": "doors", + "role": "feature", + "semantic_type": "categorical", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 4, + "unique_ratio": 0.002894, + "example_values": [ + "2", + "5more", + "3", + "4" + ] + } + }, + { + "name": "persons", + "role": "feature", + "semantic_type": "categorical", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 3, + "unique_ratio": 0.002171, + "example_values": [ + "2", + "4", + "more" + ] + } + }, + { + "name": "lug_boot", + "role": "feature", + "semantic_type": "categorical", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 3, + "unique_ratio": 0.002171, + "example_values": [ + "small", + "big", + "med" + ] + } + }, + { + "name": "safety", + "role": "feature", + "semantic_type": "categorical", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 3, + "unique_ratio": 0.002171, + "example_values": [ + "low", + "high", + "med" + ] + } + }, + { + "name": "class", + "role": "target", + "semantic_type": "categorical", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 4, + "unique_ratio": 0.002894, + "example_values": [ + "unacc", + "good", + "acc", + "vgood" + ] + } + } + ] +} \ No newline at end of file diff --git a/hyperparameter/c2/tabsyn/tabsyn-c2-20260505_073207/run_config.json b/hyperparameter/c2/tabsyn/tabsyn-c2-20260505_073207/run_config.json new file mode 100644 index 0000000000000000000000000000000000000000..65a0c0250b2b291c40f8e61daf99d977e061168e --- /dev/null +++ b/hyperparameter/c2/tabsyn/tabsyn-c2-20260505_073207/run_config.json @@ -0,0 +1,48 @@ +{ + "schema_version": 1, + "recorded_at": "2026-05-05T07:32:07", + "dataset_id": "c2", + "model": "tabsyn", + "work_dir": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/c2/tabsyn/tabsyn-c2-20260505_073207", + "dataset_source_requested": "new", + "dataset_source_resolved": "new", + "cli_args": { + "model": "tabsyn", + "dataset": "c2", + "dataset_source": "new", + "train": true, + "generate": true, + "num_rows": 0, + "epochs": null, + "output_dir": null, + "model_dir": null, + "work_dir": null, + "resume": false, + "no_stats": false + }, + "resolved": { + "num_rows": 1382, + "model_path": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/c2/tabsyn/tabsyn-c2-20260505_073207", + "output_csv": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/c2/tabsyn/tabsyn-c2-20260505_073207/tabsyn-c2-1382-20260505_082340.csv" + }, + "input_artifacts": { + "public_gate_report": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/c2/tabsyn/tabsyn-c2-20260505_073207/public_gate/public_gate_report.json", + "public_manifest": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/c2/tabsyn/tabsyn-c2-20260505_073207/public_gate/staged_input_manifest.json", + "model_manifest": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/c2/tabsyn/tabsyn-c2-20260505_073207/staged/tabsyn/model_input_manifest.json", + "train_csv": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/c2/tabsyn/tabsyn-c2-20260505_073207/staged/public/train.csv", + "features_json": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/c2/tabsyn/tabsyn-c2-20260505_073207/staged/public/staged_features.json", + "target_column": "class", + "task_type": "classification" + }, + "env_overrides": { + "BENCHMARK_TABSYN_GPUS": "device=3", + "TABSYN_DIFFUSION_MAX_EPOCHS": "15", + "TABSYN_RESUME": "0", + "TABSYN_VAE_BATCH_SIZE": "256", + "TABSYN_VAE_ENCODE_BATCH_SIZE": "256", + "TABSYN_VAE_EPOCHS": "15", + "TABSYN_VAE_EVAL_BATCH_SIZE": "256", + "TABSYN_VAE_INFER_BATCH_SIZE": "256", + "TABSYN_VAE_NUM_WORKERS": "0" + } +} \ No newline at end of file diff --git a/hyperparameter/c2/tabsyn/tabsyn-c2-20260505_073207/runtime_result.json b/hyperparameter/c2/tabsyn/tabsyn-c2-20260505_073207/runtime_result.json new file mode 100644 index 0000000000000000000000000000000000000000..27a5d38c45e5eb07a76eb8a4f7809f5587e56082 --- /dev/null +++ b/hyperparameter/c2/tabsyn/tabsyn-c2-20260505_073207/runtime_result.json @@ -0,0 +1,27 @@ +{ + "dataset_id": "c2", + "model": "tabsyn", + "run_id": "tabsyn-c2-20260505_073207", + "public_gate_status": "pass", + "adapter_ready_status": "pass", + "train_status": "success", + "generate_status": "success", + "reason_code": null, + "reason_detail": null, + "artifacts": { + "synthetic_csv": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/c2/tabsyn/tabsyn-c2-20260505_073207/tabsyn-c2-1382-20260505_082340.csv", + "model_path": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/c2/tabsyn/tabsyn-c2-20260505_073207" + }, + "timings": { + "train": { + "started_at": "2026-05-05T07:32:07", + "ended_at": "2026-05-05T08:23:40", + "duration_sec": 3093.235 + }, + "generate": { + "started_at": "2026-05-05T08:23:40", + "ended_at": "2026-05-05T08:23:46", + "duration_sec": 5.86 + } + } +} \ No newline at end of file diff --git a/hyperparameter/c2/tabsyn/tabsyn-c2-20260505_073207/staged/public/staged_features.json b/hyperparameter/c2/tabsyn/tabsyn-c2-20260505_073207/staged/public/staged_features.json new file mode 100644 index 0000000000000000000000000000000000000000..61783861dd5de501592f76acb0469cf3f3b2622a --- /dev/null +++ b/hyperparameter/c2/tabsyn/tabsyn-c2-20260505_073207/staged/public/staged_features.json @@ -0,0 +1,37 @@ +[ + { + "feature_name": "buying", + "data_type": "categorical", + "is_target": false + }, + { + "feature_name": "maint", + "data_type": "categorical", + "is_target": false + }, + { + "feature_name": "doors", + "data_type": "categorical", + "is_target": false + }, + { + "feature_name": "persons", + "data_type": "categorical", + "is_target": false + }, + { + "feature_name": "lug_boot", + "data_type": "categorical", + "is_target": false + }, + { + "feature_name": "safety", + "data_type": "categorical", + "is_target": false + }, + { + "feature_name": "class", + "data_type": "categorical", + "is_target": true + } +] \ No newline at end of file diff --git a/hyperparameter/c2/tabsyn/tabsyn-c2-20260505_073207/staged/public/test.csv b/hyperparameter/c2/tabsyn/tabsyn-c2-20260505_073207/staged/public/test.csv new file mode 100644 index 0000000000000000000000000000000000000000..392a0d7189a34d8f13ecf20a99d64b03230d517c --- /dev/null +++ b/hyperparameter/c2/tabsyn/tabsyn-c2-20260505_073207/staged/public/test.csv @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:b48114a7d0bc5bd9a07920f903c8d4aba8bf98bf2a66a050da03588b0245ca73 +size 5273 diff --git a/hyperparameter/c2/tabsyn/tabsyn-c2-20260505_073207/staged/public/train.csv b/hyperparameter/c2/tabsyn/tabsyn-c2-20260505_073207/staged/public/train.csv new file mode 100644 index 0000000000000000000000000000000000000000..da4f4d55134eebc0e51157d0d467536371db1484 --- /dev/null +++ b/hyperparameter/c2/tabsyn/tabsyn-c2-20260505_073207/staged/public/train.csv @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:4aed00c2c2b3f88a55a7ebff31b2e1b5e0e32fb0a7267e0b9d2779cd23e434dd +size 41565 diff --git a/hyperparameter/c2/tabsyn/tabsyn-c2-20260505_073207/staged/public/val.csv b/hyperparameter/c2/tabsyn/tabsyn-c2-20260505_073207/staged/public/val.csv new file mode 100644 index 0000000000000000000000000000000000000000..af8caf7ee42524188534a3daf32996dc491952d9 --- /dev/null +++ b/hyperparameter/c2/tabsyn/tabsyn-c2-20260505_073207/staged/public/val.csv @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:26e90c1170a57a14c05832ac88027722b1f3848f9662c7c09ef7c93dcba4cc01 +size 5176 diff --git a/hyperparameter/c2/tabsyn/tabsyn-c2-20260505_073207/staged/tabsyn/adapter_report.json b/hyperparameter/c2/tabsyn/tabsyn-c2-20260505_073207/staged/tabsyn/adapter_report.json new file mode 100644 index 0000000000000000000000000000000000000000..bc90a5905ecf8cac25d68314cebd44978391b3e3 --- /dev/null +++ b/hyperparameter/c2/tabsyn/tabsyn-c2-20260505_073207/staged/tabsyn/adapter_report.json @@ -0,0 +1,7 @@ +{ + "adapter_ready_status": "pass", + "adapter_fail_reason_code": null, + "adapter_fail_detail": null, + "adapter_transforms_applied": [], + "model_input_manifest": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/c2/tabsyn/tabsyn-c2-20260505_073207/staged/tabsyn/model_input_manifest.json" +} \ No newline at end of file diff --git a/hyperparameter/c2/tabsyn/tabsyn-c2-20260505_073207/staged/tabsyn/adapter_transforms_applied.json b/hyperparameter/c2/tabsyn/tabsyn-c2-20260505_073207/staged/tabsyn/adapter_transforms_applied.json new file mode 100644 index 0000000000000000000000000000000000000000..0637a088a01e8ddab3bf3fa98dbe804cbde1a0dc --- /dev/null +++ b/hyperparameter/c2/tabsyn/tabsyn-c2-20260505_073207/staged/tabsyn/adapter_transforms_applied.json @@ -0,0 +1 @@ +[] \ No newline at end of file diff --git a/hyperparameter/c2/tabsyn/tabsyn-c2-20260505_073207/staged/tabsyn/model_input_manifest.json b/hyperparameter/c2/tabsyn/tabsyn-c2-20260505_073207/staged/tabsyn/model_input_manifest.json new file mode 100644 index 0000000000000000000000000000000000000000..dbaebb766a2cf790ffd6be5de9682117c1fcc21d --- /dev/null +++ b/hyperparameter/c2/tabsyn/tabsyn-c2-20260505_073207/staged/tabsyn/model_input_manifest.json @@ -0,0 +1,151 @@ +{ + "dataset_id": "c2", + "model": "tabsyn", + "target_column": "class", + "task_type": "classification", + "column_schema": [ + { + "name": "buying", + "role": "feature", + "semantic_type": "categorical", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 4, + "unique_ratio": 0.002894, + "example_values": [ + "vhigh", + "med", + "high", + "low" + ] + } + }, + { + "name": "maint", + "role": "feature", + "semantic_type": "categorical", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 4, + "unique_ratio": 0.002894, + "example_values": [ + "vhigh", + "low", + "med", + "high" + ] + } + }, + { + "name": "doors", + "role": "feature", + "semantic_type": "categorical", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 4, + "unique_ratio": 0.002894, + "example_values": [ + "2", + "5more", + "3", + "4" + ] + } + }, + { + "name": "persons", + "role": "feature", + "semantic_type": "categorical", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 3, + "unique_ratio": 0.002171, + "example_values": [ + "2", + "4", + "more" + ] + } + }, + { + "name": "lug_boot", + "role": "feature", + "semantic_type": "categorical", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 3, + "unique_ratio": 0.002171, + "example_values": [ + "small", + "big", + "med" + ] + } + }, + { + "name": "safety", + "role": "feature", + "semantic_type": "categorical", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 3, + "unique_ratio": 0.002171, + "example_values": [ + "low", + "high", + "med" + ] + } + }, + { + "name": "class", + "role": "target", + "semantic_type": "categorical", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 4, + "unique_ratio": 0.002894, + "example_values": [ + "unacc", + "good", + "acc", + "vgood" + ] + } + } + ], + "public_manifest": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/c2/tabsyn/tabsyn-c2-20260505_073207/public_gate/staged_input_manifest.json", + "train_csv": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/c2/tabsyn/tabsyn-c2-20260505_073207/staged/public/train.csv", + "val_csv": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/c2/tabsyn/tabsyn-c2-20260505_073207/staged/public/val.csv", + "test_csv": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/c2/tabsyn/tabsyn-c2-20260505_073207/staged/public/test.csv", + "features_json": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/c2/tabsyn/tabsyn-c2-20260505_073207/staged/public/staged_features.json", + "public_gate_report": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/c2/tabsyn/tabsyn-c2-20260505_073207/public_gate/public_gate_report.json" +} \ No newline at end of file diff --git a/hyperparameter/c2/tabsyn/tabsyn-c2-20260505_073207/synthetic/tabsyn_c2/real.csv b/hyperparameter/c2/tabsyn/tabsyn-c2-20260505_073207/synthetic/tabsyn_c2/real.csv new file mode 100644 index 0000000000000000000000000000000000000000..94d40776e20a2226c5a316fc3eaf8b74b8513970 --- /dev/null +++ b/hyperparameter/c2/tabsyn/tabsyn-c2-20260505_073207/synthetic/tabsyn_c2/real.csv @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:3e7b4d4a1f787d81e53eddffbd43603149e1dd038d94b4c0244340ff4a2e4511 +size 19397 diff --git a/hyperparameter/c2/tabsyn/tabsyn-c2-20260505_073207/synthetic/tabsyn_c2/test.csv b/hyperparameter/c2/tabsyn/tabsyn-c2-20260505_073207/synthetic/tabsyn_c2/test.csv new file mode 100644 index 0000000000000000000000000000000000000000..94d40776e20a2226c5a316fc3eaf8b74b8513970 --- /dev/null +++ b/hyperparameter/c2/tabsyn/tabsyn-c2-20260505_073207/synthetic/tabsyn_c2/test.csv @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:3e7b4d4a1f787d81e53eddffbd43603149e1dd038d94b4c0244340ff4a2e4511 +size 19397 diff --git a/hyperparameter/c2/tabsyn/tabsyn-c2-20260505_073207/tabsyn-c2-1382-20260505_082340.csv b/hyperparameter/c2/tabsyn/tabsyn-c2-20260505_073207/tabsyn-c2-1382-20260505_082340.csv new file mode 100644 index 0000000000000000000000000000000000000000..0bf85e53194075de365d61fffc59d553741b1259 --- /dev/null +++ b/hyperparameter/c2/tabsyn/tabsyn-c2-20260505_073207/tabsyn-c2-1382-20260505_082340.csv @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:26ecff342275929b3130a925a8ebf55cde1233a0866e4cd3f72f8a38d2c47efa +size 22279 diff --git a/hyperparameter/c2/tabsyn/tabsyn-c2-20260505_073207/train_20260505_073207.log b/hyperparameter/c2/tabsyn/tabsyn-c2-20260505_073207/train_20260505_073207.log new file mode 100644 index 0000000000000000000000000000000000000000..5e29a1849d82c5d60acdf14edb400593add44009 --- /dev/null +++ b/hyperparameter/c2/tabsyn/tabsyn-c2-20260505_073207/train_20260505_073207.log @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:c5c36160287c5cf6466f102ba4fbb9208802e2899eba5d61615ff4f4ddf4594a +size 3307375 diff --git a/hyperparameter/c2/tabsyn/tabsyn-c2-20260505_173210/_tabsyn_sample.py b/hyperparameter/c2/tabsyn/tabsyn-c2-20260505_173210/_tabsyn_sample.py new file mode 100644 index 0000000000000000000000000000000000000000..3715e94075aafbd45f9b16eb6d8bb719a51f8a2e --- /dev/null +++ b/hyperparameter/c2/tabsyn/tabsyn-c2-20260505_173210/_tabsyn_sample.py @@ -0,0 +1,43 @@ +import os, sys, subprocess + +work_dir = "/work/output-Benchmark-trainonly-v1/c2/tabsyn/tabsyn-c2-20260505_173210" +dataname = "tabsyn_c2_tabsyn_c2_20260505_173210" +output_csv = "/work/output-Benchmark-trainonly-v1/c2/tabsyn/tabsyn-c2-20260505_173210/tabsyn-c2-64-20260505_173227.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 64 rows") +env = os.environ.copy() +env.setdefault("TABSYN_RESUME", "0") +env.setdefault("TABSYN_VAE_BATCH_SIZE", "32") +env.setdefault("TABSYN_VAE_EVAL_BATCH_SIZE", env["TABSYN_VAE_BATCH_SIZE"]) +env.setdefault("TABSYN_VAE_INFER_BATCH_SIZE", env["TABSYN_VAE_BATCH_SIZE"]) +env.setdefault("TABSYN_VAE_ENCODE_BATCH_SIZE", env["TABSYN_VAE_BATCH_SIZE"]) +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/hyperparameter/c2/tabsyn/tabsyn-c2-20260505_173210/_tabsyn_train.py b/hyperparameter/c2/tabsyn/tabsyn-c2-20260505_173210/_tabsyn_train.py new file mode 100644 index 0000000000000000000000000000000000000000..9ce9942d4f0df5281a787269ea632dcfa1686fd5 --- /dev/null +++ b/hyperparameter/c2/tabsyn/tabsyn-c2-20260505_173210/_tabsyn_train.py @@ -0,0 +1,69 @@ +import os, sys, subprocess + +work_dir = "/work/output-Benchmark-trainonly-v1/c2/tabsyn/tabsyn-c2-20260505_173210" +dataname = "tabsyn_c2_tabsyn_c2_20260505_173210" +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", "0") +env.setdefault("TABSYN_VAE_BATCH_SIZE", "32") +env.setdefault("TABSYN_VAE_NUM_WORKERS", "0") +env.setdefault("TABSYN_VAE_EVAL_BATCH_SIZE", env["TABSYN_VAE_BATCH_SIZE"]) +env.setdefault("TABSYN_VAE_INFER_BATCH_SIZE", env["TABSYN_VAE_BATCH_SIZE"]) +env.setdefault("TABSYN_VAE_ENCODE_BATCH_SIZE", env["TABSYN_VAE_BATCH_SIZE"]) +# Safer defaults for wide tables on Docker: reduce shared-memory pressure in diffusion DataLoader. +env.setdefault("TABSYN_DIFFUSION_NUM_WORKERS", "0") +_te = None +if _te is not None: + env["TABSYN_VAE_EPOCHS"] = str(_te) + env["TABSYN_DIFFUSION_MAX_EPOCHS"] = str(max(_te + 1, 2)) + +# Data preprocessing is done on the host side (_prepare_data_dir) +# which creates .npy files, train/test CSVs, and info.json + +# Step 1: Train VAE (produces latent embeddings) +print(f"[TabSyn] Step 1/2: Training VAE in {tabsyn_root}, dataname={dataname}") +ret = subprocess.run( + [sys.executable, "main.py", + "--dataname", dataname, + "--mode", "train", + "--method", "vae", + "--gpu", "0"], + cwd=tabsyn_root, + env=env +) +if ret.returncode != 0: + print("[TabSyn] VAE training failed") + sys.exit(ret.returncode) + +# Step 2: Train diffusion model on latent space +print(f"[TabSyn] Step 2/2: Training diffusion model") +ret = subprocess.run( + [sys.executable, "main.py", + "--dataname", dataname, + "--mode", "train", + "--method", "tabsyn", + "--gpu", "0"], + cwd=tabsyn_root, + env=env +) +if ret.returncode != 0: + print("[TabSyn] Diffusion training failed") + sys.exit(ret.returncode) +print("[TabSyn] Training complete (VAE + Diffusion)") diff --git a/hyperparameter/c2/tabsyn/tabsyn-c2-20260505_173210/data/tabsyn_c2_tabsyn_c2_20260505_173210/X_cat_test.npy b/hyperparameter/c2/tabsyn/tabsyn-c2-20260505_173210/data/tabsyn_c2_tabsyn_c2_20260505_173210/X_cat_test.npy new file mode 100644 index 0000000000000000000000000000000000000000..6cf4fc75ff61837a47172e845d2942ba68f4ccd1 --- /dev/null +++ b/hyperparameter/c2/tabsyn/tabsyn-c2-20260505_173210/data/tabsyn_c2_tabsyn_c2_20260505_173210/X_cat_test.npy @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:0e9f5e299905cfd50c63688fb7b818aeec0d802b14338f705ec09d39826ac9c2 +size 55408 diff --git a/hyperparameter/c2/tabsyn/tabsyn-c2-20260505_173210/data/tabsyn_c2_tabsyn_c2_20260505_173210/X_cat_train.npy b/hyperparameter/c2/tabsyn/tabsyn-c2-20260505_173210/data/tabsyn_c2_tabsyn_c2_20260505_173210/X_cat_train.npy new file mode 100644 index 0000000000000000000000000000000000000000..6cf4fc75ff61837a47172e845d2942ba68f4ccd1 --- /dev/null +++ b/hyperparameter/c2/tabsyn/tabsyn-c2-20260505_173210/data/tabsyn_c2_tabsyn_c2_20260505_173210/X_cat_train.npy @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:0e9f5e299905cfd50c63688fb7b818aeec0d802b14338f705ec09d39826ac9c2 +size 55408 diff --git a/hyperparameter/c2/tabsyn/tabsyn-c2-20260505_173210/data/tabsyn_c2_tabsyn_c2_20260505_173210/X_num_test.npy b/hyperparameter/c2/tabsyn/tabsyn-c2-20260505_173210/data/tabsyn_c2_tabsyn_c2_20260505_173210/X_num_test.npy new file mode 100644 index 0000000000000000000000000000000000000000..9a71edeab7a22756c9090743b5d0fde204acfb75 --- /dev/null +++ b/hyperparameter/c2/tabsyn/tabsyn-c2-20260505_173210/data/tabsyn_c2_tabsyn_c2_20260505_173210/X_num_test.npy @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:f937731a3e7785676e9f861e44eddab69c323327e03bdd1f6e8755c5321538fb +size 5656 diff --git a/hyperparameter/c2/tabsyn/tabsyn-c2-20260505_173210/data/tabsyn_c2_tabsyn_c2_20260505_173210/X_num_train.npy b/hyperparameter/c2/tabsyn/tabsyn-c2-20260505_173210/data/tabsyn_c2_tabsyn_c2_20260505_173210/X_num_train.npy new file mode 100644 index 0000000000000000000000000000000000000000..9a71edeab7a22756c9090743b5d0fde204acfb75 --- /dev/null +++ b/hyperparameter/c2/tabsyn/tabsyn-c2-20260505_173210/data/tabsyn_c2_tabsyn_c2_20260505_173210/X_num_train.npy @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:f937731a3e7785676e9f861e44eddab69c323327e03bdd1f6e8755c5321538fb +size 5656 diff --git a/hyperparameter/c2/tabsyn/tabsyn-c2-20260505_173210/data/tabsyn_c2_tabsyn_c2_20260505_173210/info.json b/hyperparameter/c2/tabsyn/tabsyn-c2-20260505_173210/data/tabsyn_c2_tabsyn_c2_20260505_173210/info.json new file mode 100644 index 0000000000000000000000000000000000000000..56a06e975558bf9ebde2c79ece0ee994e362a1a9 --- /dev/null +++ b/hyperparameter/c2/tabsyn/tabsyn-c2-20260505_173210/data/tabsyn_c2_tabsyn_c2_20260505_173210/info.json @@ -0,0 +1,89 @@ +{ + "name": "tabsyn_c2_tabsyn_c2_20260505_173210", + "task_type": "multiclass", + "n_num_features": 1, + "n_cat_features": 5, + "train_size": 1382, + "num_col_idx": [ + 0 + ], + "cat_col_idx": [ + 1, + 2, + 3, + 4, + 5 + ], + "target_col_idx": [ + 6 + ], + "column_names": [ + "buying", + "maint", + "doors", + "persons", + "lug_boot", + "safety", + "class" + ], + "train_num": 1382, + "test_num": 1382, + "header": 0, + "file_type": "csv", + "data_path": "data/tabsyn_c2_tabsyn_c2_20260505_173210/train.csv", + "test_path": null, + "idx_mapping": { + "0": 0, + "1": 1, + "2": 2, + "3": 3, + "4": 4, + "5": 5, + "6": 6 + }, + "inverse_idx_mapping": { + "0": 0, + "1": 1, + "2": 2, + "3": 3, + "4": 4, + "5": 5, + "6": 6 + }, + "idx_name_mapping": { + "0": "buying", + "1": "maint", + "2": "doors", + "3": "persons", + "4": "lug_boot", + "5": "safety", + "6": "class" + }, + "n_classes": 4, + "metadata": { + "columns": { + "0": { + "sdtype": "numerical", + "computer_representation": "Float" + }, + "1": { + "sdtype": "categorical" + }, + "2": { + "sdtype": "categorical" + }, + "3": { + "sdtype": "categorical" + }, + "4": { + "sdtype": "categorical" + }, + "5": { + "sdtype": "categorical" + }, + "6": { + "sdtype": "categorical" + } + } + } +} \ No newline at end of file diff --git a/hyperparameter/c2/tabsyn/tabsyn-c2-20260505_173210/data/tabsyn_c2_tabsyn_c2_20260505_173210/test.csv b/hyperparameter/c2/tabsyn/tabsyn-c2-20260505_173210/data/tabsyn_c2_tabsyn_c2_20260505_173210/test.csv new file mode 100644 index 0000000000000000000000000000000000000000..94d40776e20a2226c5a316fc3eaf8b74b8513970 --- /dev/null +++ b/hyperparameter/c2/tabsyn/tabsyn-c2-20260505_173210/data/tabsyn_c2_tabsyn_c2_20260505_173210/test.csv @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:3e7b4d4a1f787d81e53eddffbd43603149e1dd038d94b4c0244340ff4a2e4511 +size 19397 diff --git a/hyperparameter/c2/tabsyn/tabsyn-c2-20260505_173210/data/tabsyn_c2_tabsyn_c2_20260505_173210/train.csv b/hyperparameter/c2/tabsyn/tabsyn-c2-20260505_173210/data/tabsyn_c2_tabsyn_c2_20260505_173210/train.csv new file mode 100644 index 0000000000000000000000000000000000000000..94d40776e20a2226c5a316fc3eaf8b74b8513970 --- /dev/null +++ b/hyperparameter/c2/tabsyn/tabsyn-c2-20260505_173210/data/tabsyn_c2_tabsyn_c2_20260505_173210/train.csv @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:3e7b4d4a1f787d81e53eddffbd43603149e1dd038d94b4c0244340ff4a2e4511 +size 19397 diff --git a/hyperparameter/c2/tabsyn/tabsyn-c2-20260505_173210/data/tabsyn_c2_tabsyn_c2_20260505_173210/y_test.npy b/hyperparameter/c2/tabsyn/tabsyn-c2-20260505_173210/data/tabsyn_c2_tabsyn_c2_20260505_173210/y_test.npy new file mode 100644 index 0000000000000000000000000000000000000000..108cc1504a0828881e00ae2e843ec55f1a447337 --- /dev/null +++ b/hyperparameter/c2/tabsyn/tabsyn-c2-20260505_173210/data/tabsyn_c2_tabsyn_c2_20260505_173210/y_test.npy @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:f88f9f2d088513402a20e38e046da314636957e28ee86d4df15ac0dfc9fce867 +size 11184 diff --git a/hyperparameter/c2/tabsyn/tabsyn-c2-20260505_173210/data/tabsyn_c2_tabsyn_c2_20260505_173210/y_train.npy b/hyperparameter/c2/tabsyn/tabsyn-c2-20260505_173210/data/tabsyn_c2_tabsyn_c2_20260505_173210/y_train.npy new file mode 100644 index 0000000000000000000000000000000000000000..108cc1504a0828881e00ae2e843ec55f1a447337 --- /dev/null +++ b/hyperparameter/c2/tabsyn/tabsyn-c2-20260505_173210/data/tabsyn_c2_tabsyn_c2_20260505_173210/y_train.npy @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:f88f9f2d088513402a20e38e046da314636957e28ee86d4df15ac0dfc9fce867 +size 11184 diff --git a/hyperparameter/c2/tabsyn/tabsyn-c2-20260505_173210/gen_20260505_173227.log b/hyperparameter/c2/tabsyn/tabsyn-c2-20260505_173210/gen_20260505_173227.log new file mode 100644 index 0000000000000000000000000000000000000000..1ce92f2d65d301172d58ed16d6e76c6249e0d75c --- /dev/null +++ b/hyperparameter/c2/tabsyn/tabsyn-c2-20260505_173210/gen_20260505_173227.log @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:efc79b701bd164e80af25bda05d83853ed817c5625ef71e09d6e67e580b9b724 +size 933 diff --git a/hyperparameter/c2/tabsyn/tabsyn-c2-20260505_173210/input_snapshot.json b/hyperparameter/c2/tabsyn/tabsyn-c2-20260505_173210/input_snapshot.json new file mode 100644 index 0000000000000000000000000000000000000000..7d3fddeb570e67b127ac5aef0d448cae7e934e6c --- /dev/null +++ b/hyperparameter/c2/tabsyn/tabsyn-c2-20260505_173210/input_snapshot.json @@ -0,0 +1,36 @@ +{ + "dataset_id": "c2", + "model": "tabsyn", + "inputs": { + "train_csv": { + "path": "/data/jialinzhang/SynthesizePipeline-server/DatasetNew/c2/c2-train.csv", + "exists": true, + "size": 42948, + "sha256": "17bc560fa96bd00fb3b526e1e65bc91210b701d0d0a4e8bb9b4c5196cab56def" + }, + "val_csv": { + "path": "/data/jialinzhang/SynthesizePipeline-server/DatasetNew/c2/c2-val.csv", + "exists": true, + "size": 5349, + "sha256": "61e565eca62e65a7dccd9d51039a3170413379e10fc494e25870e7c4294863c9" + }, + "test_csv": { + "path": "/data/jialinzhang/SynthesizePipeline-server/DatasetNew/c2/c2-test.csv", + "exists": true, + "size": 5448, + "sha256": "cbcbb062a1faf5fa44b66c80532baa229e05b94fc42137269761e6c6d84af20a" + }, + "profile_json": { + "path": "/data/jialinzhang/SynthesizePipeline-server/DatasetNew/artifacts/data_core/tabular/c2/c2-dataset_profile.json", + "exists": true, + "size": 3240, + "sha256": "526b7163b2076c93c0bf4638438081ee8a6907065d5b608faa40d1a3dbc2a27b" + }, + "contract_json": { + "path": "/data/jialinzhang/SynthesizePipeline-server/DatasetNew/artifacts/data_core/tabular/c2/c2-dataset_contract_v1.json", + "exists": true, + "size": 3731, + "sha256": "fb595a876054c2ee9b4e10cfe83a5691588de1d25466cbb9d473c18ad3604009" + } + } +} \ No newline at end of file diff --git a/hyperparameter/c2/tabsyn/tabsyn-c2-20260505_173210/public_gate/normalized_schema_snapshot.json b/hyperparameter/c2/tabsyn/tabsyn-c2-20260505_173210/public_gate/normalized_schema_snapshot.json new file mode 100644 index 0000000000000000000000000000000000000000..689b1d00d96508e44ba40e58dc4560e19afc2b3b --- /dev/null +++ b/hyperparameter/c2/tabsyn/tabsyn-c2-20260505_173210/public_gate/normalized_schema_snapshot.json @@ -0,0 +1,144 @@ +{ + "dataset_id": "c2", + "target_column": "class", + "task_type": "classification", + "columns": [ + { + "name": "buying", + "role": "feature", + "semantic_type": "categorical", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 4, + "unique_ratio": 0.002894, + "example_values": [ + "vhigh", + "med", + "high", + "low" + ] + } + }, + { + "name": "maint", + "role": "feature", + "semantic_type": "categorical", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 4, + "unique_ratio": 0.002894, + "example_values": [ + "vhigh", + "low", + "med", + "high" + ] + } + }, + { + "name": "doors", + "role": "feature", + "semantic_type": "categorical", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 4, + "unique_ratio": 0.002894, + "example_values": [ + "2", + "5more", + "3", + "4" + ] + } + }, + { + "name": "persons", + "role": "feature", + "semantic_type": "categorical", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 3, + "unique_ratio": 0.002171, + "example_values": [ + "2", + "4", + "more" + ] + } + }, + { + "name": "lug_boot", + "role": "feature", + "semantic_type": "categorical", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 3, + "unique_ratio": 0.002171, + "example_values": [ + "small", + "big", + "med" + ] + } + }, + { + "name": "safety", + "role": "feature", + "semantic_type": "categorical", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 3, + "unique_ratio": 0.002171, + "example_values": [ + "low", + "high", + "med" + ] + } + }, + { + "name": "class", + "role": "target", + "semantic_type": "categorical", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 4, + "unique_ratio": 0.002894, + "example_values": [ + "unacc", + "good", + "acc", + "vgood" + ] + } + } + ] +} \ No newline at end of file diff --git a/hyperparameter/c2/tabsyn/tabsyn-c2-20260505_173210/public_gate/public_gate_report.json b/hyperparameter/c2/tabsyn/tabsyn-c2-20260505_173210/public_gate/public_gate_report.json new file mode 100644 index 0000000000000000000000000000000000000000..2e4cdcb2a4e28e40d59b17a83e773f622b7636a5 --- /dev/null +++ b/hyperparameter/c2/tabsyn/tabsyn-c2-20260505_173210/public_gate/public_gate_report.json @@ -0,0 +1,37 @@ +{ + "dataset_id": "c2", + "status": "pass", + "checks": [ + { + "check_id": "PG001_csv_parse_ok", + "status": "pass" + }, + { + "check_id": "PG002_split_header_consistent", + "status": "pass" + }, + { + "check_id": "PG003_profile_header_match", + "status": "pass" + }, + { + "check_id": "PG004_missing_token_normalized", + "status": "pass" + }, + { + "check_id": "PG005_semantic_type_validated", + "status": "pass" + }, + { + "check_id": "PG006_target_defined_and_valid", + "status": "pass" + } + ], + "target_column": "class", + "task_type": "classification", + "input_splits": { + "train": "/data/jialinzhang/SynthesizePipeline-server/DatasetNew/c2/c2-train.csv", + "val": "/data/jialinzhang/SynthesizePipeline-server/DatasetNew/c2/c2-val.csv", + "test": "/data/jialinzhang/SynthesizePipeline-server/DatasetNew/c2/c2-test.csv" + } +} \ No newline at end of file diff --git a/hyperparameter/c2/tabsyn/tabsyn-c2-20260505_173210/public_gate/staged_input_manifest.json b/hyperparameter/c2/tabsyn/tabsyn-c2-20260505_173210/public_gate/staged_input_manifest.json new file mode 100644 index 0000000000000000000000000000000000000000..028192bff684613836f5dd9e43bf7bdc1bddb07e --- /dev/null +++ b/hyperparameter/c2/tabsyn/tabsyn-c2-20260505_173210/public_gate/staged_input_manifest.json @@ -0,0 +1,149 @@ +{ + "dataset_id": "c2", + "target_column": "class", + "task_type": "classification", + "train_csv": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/c2/tabsyn/tabsyn-c2-20260505_173210/staged/public/train.csv", + "val_csv": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/c2/tabsyn/tabsyn-c2-20260505_173210/staged/public/val.csv", + "test_csv": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/c2/tabsyn/tabsyn-c2-20260505_173210/staged/public/test.csv", + "features_json": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/c2/tabsyn/tabsyn-c2-20260505_173210/staged/public/staged_features.json", + "public_gate_report": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/c2/tabsyn/tabsyn-c2-20260505_173210/public_gate/public_gate_report.json", + "column_schema": [ + { + "name": "buying", + "role": "feature", + "semantic_type": "categorical", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 4, + "unique_ratio": 0.002894, + "example_values": [ + "vhigh", + "med", + "high", + "low" + ] + } + }, + { + "name": "maint", + "role": "feature", + "semantic_type": "categorical", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 4, + "unique_ratio": 0.002894, + "example_values": [ + "vhigh", + "low", + "med", + "high" + ] + } + }, + { + "name": "doors", + "role": "feature", + "semantic_type": "categorical", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 4, + "unique_ratio": 0.002894, + "example_values": [ + "2", + "5more", + "3", + "4" + ] + } + }, + { + "name": "persons", + "role": "feature", + "semantic_type": "categorical", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 3, + "unique_ratio": 0.002171, + "example_values": [ + "2", + "4", + "more" + ] + } + }, + { + "name": "lug_boot", + "role": "feature", + "semantic_type": "categorical", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 3, + "unique_ratio": 0.002171, + "example_values": [ + "small", + "big", + "med" + ] + } + }, + { + "name": "safety", + "role": "feature", + "semantic_type": "categorical", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 3, + "unique_ratio": 0.002171, + "example_values": [ + "low", + "high", + "med" + ] + } + }, + { + "name": "class", + "role": "target", + "semantic_type": "categorical", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 4, + "unique_ratio": 0.002894, + "example_values": [ + "unacc", + "good", + "acc", + "vgood" + ] + } + } + ] +} \ No newline at end of file diff --git a/hyperparameter/c2/tabsyn/tabsyn-c2-20260505_173210/run_config.json b/hyperparameter/c2/tabsyn/tabsyn-c2-20260505_173210/run_config.json new file mode 100644 index 0000000000000000000000000000000000000000..6c2bee48f2c9ce31c1a80d618bf9cd702c8b1800 --- /dev/null +++ b/hyperparameter/c2/tabsyn/tabsyn-c2-20260505_173210/run_config.json @@ -0,0 +1,49 @@ +{ + "schema_version": 1, + "recorded_at": "2026-05-05T17:32:10", + "dataset_id": "c2", + "model": "tabsyn", + "work_dir": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/c2/tabsyn/tabsyn-c2-20260505_173210", + "dataset_source_requested": "new", + "dataset_source_resolved": "new", + "cli_args": { + "model": "tabsyn", + "dataset": "c2", + "dataset_source": "new", + "train": true, + "generate": true, + "num_rows": 64, + "epochs": null, + "output_dir": null, + "model_dir": null, + "work_dir": null, + "resume": false, + "no_stats": false + }, + "resolved": { + "num_rows": 64, + "model_path": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/c2/tabsyn/tabsyn-c2-20260505_173210", + "output_csv": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/c2/tabsyn/tabsyn-c2-20260505_173210/tabsyn-c2-64-20260505_173227.csv" + }, + "input_artifacts": { + "public_gate_report": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/c2/tabsyn/tabsyn-c2-20260505_173210/public_gate/public_gate_report.json", + "public_manifest": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/c2/tabsyn/tabsyn-c2-20260505_173210/public_gate/staged_input_manifest.json", + "model_manifest": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/c2/tabsyn/tabsyn-c2-20260505_173210/staged/tabsyn/model_input_manifest.json", + "train_csv": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/c2/tabsyn/tabsyn-c2-20260505_173210/staged/public/train.csv", + "features_json": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/c2/tabsyn/tabsyn-c2-20260505_173210/staged/public/staged_features.json", + "target_column": "class", + "task_type": "classification" + }, + "env_overrides": { + "BENCHMARK_TABSYN_GPUS": "device=3", + "TABSYN_DIFFUSION_MAX_EPOCHS": "3", + "TABSYN_DIFFUSION_NUM_WORKERS": "0", + "TABSYN_RESUME": "0", + "TABSYN_VAE_BATCH_SIZE": "128", + "TABSYN_VAE_ENCODE_BATCH_SIZE": "256", + "TABSYN_VAE_EPOCHS": "3", + "TABSYN_VAE_EVAL_BATCH_SIZE": "256", + "TABSYN_VAE_INFER_BATCH_SIZE": "256", + "TABSYN_VAE_NUM_WORKERS": "0" + } +} \ No newline at end of file diff --git a/hyperparameter/c2/tabsyn/tabsyn-c2-20260505_173210/runtime_result.json b/hyperparameter/c2/tabsyn/tabsyn-c2-20260505_173210/runtime_result.json new file mode 100644 index 0000000000000000000000000000000000000000..6066b405bed3f9d5bf3d80946a0a9783b9ea2634 --- /dev/null +++ b/hyperparameter/c2/tabsyn/tabsyn-c2-20260505_173210/runtime_result.json @@ -0,0 +1,27 @@ +{ + "dataset_id": "c2", + "model": "tabsyn", + "run_id": "tabsyn-c2-20260505_173210", + "public_gate_status": "pass", + "adapter_ready_status": "pass", + "train_status": "success", + "generate_status": "success", + "reason_code": null, + "reason_detail": null, + "artifacts": { + "synthetic_csv": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/c2/tabsyn/tabsyn-c2-20260505_173210/tabsyn-c2-64-20260505_173227.csv", + "model_path": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/c2/tabsyn/tabsyn-c2-20260505_173210" + }, + "timings": { + "train": { + "started_at": "2026-05-05T17:32:10", + "ended_at": "2026-05-05T17:32:27", + "duration_sec": 16.079 + }, + "generate": { + "started_at": "2026-05-05T17:32:27", + "ended_at": "2026-05-05T17:32:33", + "duration_sec": 6.476 + } + } +} \ No newline at end of file diff --git a/hyperparameter/c2/tabsyn/tabsyn-c2-20260505_173210/staged/public/staged_features.json b/hyperparameter/c2/tabsyn/tabsyn-c2-20260505_173210/staged/public/staged_features.json new file mode 100644 index 0000000000000000000000000000000000000000..61783861dd5de501592f76acb0469cf3f3b2622a --- /dev/null +++ b/hyperparameter/c2/tabsyn/tabsyn-c2-20260505_173210/staged/public/staged_features.json @@ -0,0 +1,37 @@ +[ + { + "feature_name": "buying", + "data_type": "categorical", + "is_target": false + }, + { + "feature_name": "maint", + "data_type": "categorical", + "is_target": false + }, + { + "feature_name": "doors", + "data_type": "categorical", + "is_target": false + }, + { + "feature_name": "persons", + "data_type": "categorical", + "is_target": false + }, + { + "feature_name": "lug_boot", + "data_type": "categorical", + "is_target": false + }, + { + "feature_name": "safety", + "data_type": "categorical", + "is_target": false + }, + { + "feature_name": "class", + "data_type": "categorical", + "is_target": true + } +] \ No newline at end of file diff --git a/hyperparameter/c2/tabsyn/tabsyn-c2-20260505_173210/staged/public/test.csv b/hyperparameter/c2/tabsyn/tabsyn-c2-20260505_173210/staged/public/test.csv new file mode 100644 index 0000000000000000000000000000000000000000..392a0d7189a34d8f13ecf20a99d64b03230d517c --- /dev/null +++ b/hyperparameter/c2/tabsyn/tabsyn-c2-20260505_173210/staged/public/test.csv @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:b48114a7d0bc5bd9a07920f903c8d4aba8bf98bf2a66a050da03588b0245ca73 +size 5273 diff --git a/hyperparameter/c2/tabsyn/tabsyn-c2-20260505_173210/staged/public/train.csv b/hyperparameter/c2/tabsyn/tabsyn-c2-20260505_173210/staged/public/train.csv new file mode 100644 index 0000000000000000000000000000000000000000..da4f4d55134eebc0e51157d0d467536371db1484 --- /dev/null +++ b/hyperparameter/c2/tabsyn/tabsyn-c2-20260505_173210/staged/public/train.csv @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:4aed00c2c2b3f88a55a7ebff31b2e1b5e0e32fb0a7267e0b9d2779cd23e434dd +size 41565 diff --git a/hyperparameter/c2/tabsyn/tabsyn-c2-20260505_173210/staged/public/val.csv b/hyperparameter/c2/tabsyn/tabsyn-c2-20260505_173210/staged/public/val.csv new file mode 100644 index 0000000000000000000000000000000000000000..af8caf7ee42524188534a3daf32996dc491952d9 --- /dev/null +++ b/hyperparameter/c2/tabsyn/tabsyn-c2-20260505_173210/staged/public/val.csv @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:26e90c1170a57a14c05832ac88027722b1f3848f9662c7c09ef7c93dcba4cc01 +size 5176 diff --git a/hyperparameter/c2/tabsyn/tabsyn-c2-20260505_173210/staged/tabsyn/adapter_report.json b/hyperparameter/c2/tabsyn/tabsyn-c2-20260505_173210/staged/tabsyn/adapter_report.json new file mode 100644 index 0000000000000000000000000000000000000000..57a721b07db027f0e5458b9b6478fa131600395c --- /dev/null +++ b/hyperparameter/c2/tabsyn/tabsyn-c2-20260505_173210/staged/tabsyn/adapter_report.json @@ -0,0 +1,7 @@ +{ + "adapter_ready_status": "pass", + "adapter_fail_reason_code": null, + "adapter_fail_detail": null, + "adapter_transforms_applied": [], + "model_input_manifest": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/c2/tabsyn/tabsyn-c2-20260505_173210/staged/tabsyn/model_input_manifest.json" +} \ No newline at end of file diff --git a/hyperparameter/c2/tabsyn/tabsyn-c2-20260505_173210/staged/tabsyn/adapter_transforms_applied.json b/hyperparameter/c2/tabsyn/tabsyn-c2-20260505_173210/staged/tabsyn/adapter_transforms_applied.json new file mode 100644 index 0000000000000000000000000000000000000000..0637a088a01e8ddab3bf3fa98dbe804cbde1a0dc --- /dev/null +++ b/hyperparameter/c2/tabsyn/tabsyn-c2-20260505_173210/staged/tabsyn/adapter_transforms_applied.json @@ -0,0 +1 @@ +[] \ No newline at end of file diff --git a/hyperparameter/c2/tabsyn/tabsyn-c2-20260505_173210/staged/tabsyn/model_input_manifest.json b/hyperparameter/c2/tabsyn/tabsyn-c2-20260505_173210/staged/tabsyn/model_input_manifest.json new file mode 100644 index 0000000000000000000000000000000000000000..926d312125ceaeb2202b75c8393ad1b328b5a3da --- /dev/null +++ b/hyperparameter/c2/tabsyn/tabsyn-c2-20260505_173210/staged/tabsyn/model_input_manifest.json @@ -0,0 +1,151 @@ +{ + "dataset_id": "c2", + "model": "tabsyn", + "target_column": "class", + "task_type": "classification", + "column_schema": [ + { + "name": "buying", + "role": "feature", + "semantic_type": "categorical", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 4, + "unique_ratio": 0.002894, + "example_values": [ + "vhigh", + "med", + "high", + "low" + ] + } + }, + { + "name": "maint", + "role": "feature", + "semantic_type": "categorical", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 4, + "unique_ratio": 0.002894, + "example_values": [ + "vhigh", + "low", + "med", + "high" + ] + } + }, + { + "name": "doors", + "role": "feature", + "semantic_type": "categorical", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 4, + "unique_ratio": 0.002894, + "example_values": [ + "2", + "5more", + "3", + "4" + ] + } + }, + { + "name": "persons", + "role": "feature", + "semantic_type": "categorical", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 3, + "unique_ratio": 0.002171, + "example_values": [ + "2", + "4", + "more" + ] + } + }, + { + "name": "lug_boot", + "role": "feature", + "semantic_type": "categorical", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 3, + "unique_ratio": 0.002171, + "example_values": [ + "small", + "big", + "med" + ] + } + }, + { + "name": "safety", + "role": "feature", + "semantic_type": "categorical", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 3, + "unique_ratio": 0.002171, + "example_values": [ + "low", + "high", + "med" + ] + } + }, + { + "name": "class", + "role": "target", + "semantic_type": "categorical", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 4, + "unique_ratio": 0.002894, + "example_values": [ + "unacc", + "good", + "acc", + "vgood" + ] + } + } + ], + "public_manifest": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/c2/tabsyn/tabsyn-c2-20260505_173210/public_gate/staged_input_manifest.json", + "train_csv": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/c2/tabsyn/tabsyn-c2-20260505_173210/staged/public/train.csv", + "val_csv": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/c2/tabsyn/tabsyn-c2-20260505_173210/staged/public/val.csv", + "test_csv": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/c2/tabsyn/tabsyn-c2-20260505_173210/staged/public/test.csv", + "features_json": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/c2/tabsyn/tabsyn-c2-20260505_173210/staged/public/staged_features.json", + "public_gate_report": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/c2/tabsyn/tabsyn-c2-20260505_173210/public_gate/public_gate_report.json" +} \ No newline at end of file diff --git a/hyperparameter/c2/tabsyn/tabsyn-c2-20260505_173210/synthetic/tabsyn_c2_tabsyn_c2_20260505_173210/real.csv b/hyperparameter/c2/tabsyn/tabsyn-c2-20260505_173210/synthetic/tabsyn_c2_tabsyn_c2_20260505_173210/real.csv new file mode 100644 index 0000000000000000000000000000000000000000..94d40776e20a2226c5a316fc3eaf8b74b8513970 --- /dev/null +++ b/hyperparameter/c2/tabsyn/tabsyn-c2-20260505_173210/synthetic/tabsyn_c2_tabsyn_c2_20260505_173210/real.csv @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:3e7b4d4a1f787d81e53eddffbd43603149e1dd038d94b4c0244340ff4a2e4511 +size 19397 diff --git a/hyperparameter/c2/tabsyn/tabsyn-c2-20260505_173210/synthetic/tabsyn_c2_tabsyn_c2_20260505_173210/test.csv b/hyperparameter/c2/tabsyn/tabsyn-c2-20260505_173210/synthetic/tabsyn_c2_tabsyn_c2_20260505_173210/test.csv new file mode 100644 index 0000000000000000000000000000000000000000..94d40776e20a2226c5a316fc3eaf8b74b8513970 --- /dev/null +++ b/hyperparameter/c2/tabsyn/tabsyn-c2-20260505_173210/synthetic/tabsyn_c2_tabsyn_c2_20260505_173210/test.csv @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:3e7b4d4a1f787d81e53eddffbd43603149e1dd038d94b4c0244340ff4a2e4511 +size 19397 diff --git a/hyperparameter/c2/tabsyn/tabsyn-c2-20260505_173210/tabsyn-c2-64-20260505_173227.csv b/hyperparameter/c2/tabsyn/tabsyn-c2-20260505_173210/tabsyn-c2-64-20260505_173227.csv new file mode 100644 index 0000000000000000000000000000000000000000..76f1f43e0eaa5d5c50d220782c9f32577f394ef6 --- /dev/null +++ b/hyperparameter/c2/tabsyn/tabsyn-c2-20260505_173210/tabsyn-c2-64-20260505_173227.csv @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:23f457d55aaf2ae1571e9248d4ca430e8f00015eddd11939ac3dc19afc1200a6 +size 22576 diff --git a/hyperparameter/c2/tabsyn/tabsyn-c2-20260505_173210/train_20260505_173211.log b/hyperparameter/c2/tabsyn/tabsyn-c2-20260505_173210/train_20260505_173211.log new file mode 100644 index 0000000000000000000000000000000000000000..ea9e778f5061980e1f18411967ad271ef66d27e1 --- /dev/null +++ b/hyperparameter/c2/tabsyn/tabsyn-c2-20260505_173210/train_20260505_173211.log @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:76b0fd64507e36c2cc1e247c9f6c3176972f877c57015d29425042c14f28e09f +size 4164 diff --git a/hyperparameter/c2/tvae/tvae-c2-20260504_173008/_tvae_generate.py b/hyperparameter/c2/tvae/tvae-c2-20260504_173008/_tvae_generate.py new file mode 100644 index 0000000000000000000000000000000000000000..ba56b67e501be1a02f9df11b17b5be278a4fbaf4 --- /dev/null +++ b/hyperparameter/c2/tvae/tvae-c2-20260504_173008/_tvae_generate.py @@ -0,0 +1,23 @@ +import os, sys +sys.path.insert(0, "/work") +from src.SpecificModels.ctgan_joblib_parallel_cap import apply_parallel_cap_from_env +apply_parallel_cap_from_env() +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 +os.environ.setdefault("LOKY_MAX_CPU_COUNT", "8") +os.environ.setdefault("OPENBLAS_NUM_THREADS", "8") +os.environ.setdefault("MKL_NUM_THREADS", "8") +model = TVAE.load("/work/output-Benchmark-trainonly-v1/c2/tvae/tvae-c2-20260504_173008/models_300epochs/tvae_300epochs.pt") +total = 1382 +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-Benchmark-trainonly-v1/c2/tvae/tvae-c2-20260504_173008/tvae-c2-1382-20260504_173024.csv", index=False) +print(f"[TVAE] Generated {total} rows (chunks={len(parts)}) -> /work/output-Benchmark-trainonly-v1/c2/tvae/tvae-c2-20260504_173008/tvae-c2-1382-20260504_173024.csv") diff --git a/hyperparameter/c2/tvae/tvae-c2-20260504_173008/_tvae_train.py b/hyperparameter/c2/tvae/tvae-c2-20260504_173008/_tvae_train.py new file mode 100644 index 0000000000000000000000000000000000000000..1c8ca6db5febbe87084a63b4625ce50a43245d7d --- /dev/null +++ b/hyperparameter/c2/tvae/tvae-c2-20260504_173008/_tvae_train.py @@ -0,0 +1,30 @@ +import json, os, sys +sys.path.insert(0, "/work") +from src.SpecificModels.ctgan_joblib_parallel_cap import apply_parallel_cap_from_env +apply_parallel_cap_from_env() +import pandas as pd +from ctgan.data import read_csv +from ctgan.synthesizers.tvae import TVAE + +# Keep transform stage parallelism bounded for stability on shared host. +os.environ.setdefault("LOKY_MAX_CPU_COUNT", "8") +os.environ.setdefault("OPENBLAS_NUM_THREADS", "8") +os.environ.setdefault("MKL_NUM_THREADS", "8") +_nj = (os.environ.get("TVAE_CTGAN_JOBTRANS_N_JOBS") or "").strip() +if _nj: + print("[TVAE] joblib Parallel cap ON, TVAE_CTGAN_JOBTRANS_N_JOBS=" + _nj) +else: + print("[TVAE] joblib Parallel cap OFF (unset TVAE_CTGAN_JOBTRANS_N_JOBS)") +print("[TVAE] LOKY_MAX_CPU_COUNT=" + str(os.environ.get("LOKY_MAX_CPU_COUNT", ""))) + +csv_path = "/work/output-Benchmark-trainonly-v1/c2/tvae/tvae-c2-20260504_173008/staged/public/train.csv" +meta_path = "/work/output-Benchmark-trainonly-v1/c2/tvae/tvae-c2-20260504_173008/tvae_metadata.json" +save_path = "/work/output-Benchmark-trainonly-v1/c2/tvae/tvae-c2-20260504_173008/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/hyperparameter/c2/tvae/tvae-c2-20260504_173008/gen_20260504_173024.log b/hyperparameter/c2/tvae/tvae-c2-20260504_173008/gen_20260504_173024.log new file mode 100644 index 0000000000000000000000000000000000000000..53d08cd059dddaa7aff8bae5458dce3fa0b5ab7e --- /dev/null +++ b/hyperparameter/c2/tvae/tvae-c2-20260504_173008/gen_20260504_173024.log @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:c250d16c78bb78776dfd39677e43fa301524a14766e56dfb776757716b41ad3c +size 404 diff --git a/hyperparameter/c2/tvae/tvae-c2-20260504_173008/input_snapshot.json b/hyperparameter/c2/tvae/tvae-c2-20260504_173008/input_snapshot.json new file mode 100644 index 0000000000000000000000000000000000000000..9e28a5421f2176e174a0659e66a40054269fb2ac --- /dev/null +++ b/hyperparameter/c2/tvae/tvae-c2-20260504_173008/input_snapshot.json @@ -0,0 +1,36 @@ +{ + "dataset_id": "c2", + "model": "tvae", + "inputs": { + "train_csv": { + "path": "/data/jialinzhang/SynthesizePipeline-server/DatasetNew/c2/c2-train.csv", + "exists": true, + "size": 42948, + "sha256": "17bc560fa96bd00fb3b526e1e65bc91210b701d0d0a4e8bb9b4c5196cab56def" + }, + "val_csv": { + "path": "/data/jialinzhang/SynthesizePipeline-server/DatasetNew/c2/c2-val.csv", + "exists": true, + "size": 5349, + "sha256": "61e565eca62e65a7dccd9d51039a3170413379e10fc494e25870e7c4294863c9" + }, + "test_csv": { + "path": "/data/jialinzhang/SynthesizePipeline-server/DatasetNew/c2/c2-test.csv", + "exists": true, + "size": 5448, + "sha256": "cbcbb062a1faf5fa44b66c80532baa229e05b94fc42137269761e6c6d84af20a" + }, + "profile_json": { + "path": "/data/jialinzhang/SynthesizePipeline-server/DatasetNew/artifacts/data_core/tabular/c2/c2-dataset_profile.json", + "exists": true, + "size": 3240, + "sha256": "526b7163b2076c93c0bf4638438081ee8a6907065d5b608faa40d1a3dbc2a27b" + }, + "contract_json": { + "path": "/data/jialinzhang/SynthesizePipeline-server/DatasetNew/artifacts/data_core/tabular/c2/c2-dataset_contract_v1.json", + "exists": true, + "size": 3731, + "sha256": "fb595a876054c2ee9b4e10cfe83a5691588de1d25466cbb9d473c18ad3604009" + } + } +} \ No newline at end of file diff --git a/hyperparameter/c2/tvae/tvae-c2-20260504_173008/models_300epochs/train_20260504_173008.log b/hyperparameter/c2/tvae/tvae-c2-20260504_173008/models_300epochs/train_20260504_173008.log new file mode 100644 index 0000000000000000000000000000000000000000..4f1bc8a0c8aa1472b5b5a147d542eb71dee6b421 --- /dev/null +++ b/hyperparameter/c2/tvae/tvae-c2-20260504_173008/models_300epochs/train_20260504_173008.log @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:c1c352ed86bd6646a32996cf14ef89e36f1c70492c504f33136461af759d97f8 +size 531 diff --git a/hyperparameter/c2/tvae/tvae-c2-20260504_173008/models_300epochs/tvae_300epochs.pt b/hyperparameter/c2/tvae/tvae-c2-20260504_173008/models_300epochs/tvae_300epochs.pt new file mode 100644 index 0000000000000000000000000000000000000000..601624c018769994626fca7acae79f71da20202b --- /dev/null +++ b/hyperparameter/c2/tvae/tvae-c2-20260504_173008/models_300epochs/tvae_300epochs.pt @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:359d4ce6570b67da168f59f79a24d6afcc861aaf7416c29c0ad54e031827ea1b +size 344876 diff --git a/hyperparameter/c2/tvae/tvae-c2-20260504_173008/public_gate/normalized_schema_snapshot.json b/hyperparameter/c2/tvae/tvae-c2-20260504_173008/public_gate/normalized_schema_snapshot.json new file mode 100644 index 0000000000000000000000000000000000000000..689b1d00d96508e44ba40e58dc4560e19afc2b3b --- /dev/null +++ b/hyperparameter/c2/tvae/tvae-c2-20260504_173008/public_gate/normalized_schema_snapshot.json @@ -0,0 +1,144 @@ +{ + "dataset_id": "c2", + "target_column": "class", + "task_type": "classification", + "columns": [ + { + "name": "buying", + "role": "feature", + "semantic_type": "categorical", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 4, + "unique_ratio": 0.002894, + "example_values": [ + "vhigh", + "med", + "high", + "low" + ] + } + }, + { + "name": "maint", + "role": "feature", + "semantic_type": "categorical", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 4, + "unique_ratio": 0.002894, + "example_values": [ + "vhigh", + "low", + "med", + "high" + ] + } + }, + { + "name": "doors", + "role": "feature", + "semantic_type": "categorical", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 4, + "unique_ratio": 0.002894, + "example_values": [ + "2", + "5more", + "3", + "4" + ] + } + }, + { + "name": "persons", + "role": "feature", + "semantic_type": "categorical", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 3, + "unique_ratio": 0.002171, + "example_values": [ + "2", + "4", + "more" + ] + } + }, + { + "name": "lug_boot", + "role": "feature", + "semantic_type": "categorical", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 3, + "unique_ratio": 0.002171, + "example_values": [ + "small", + "big", + "med" + ] + } + }, + { + "name": "safety", + "role": "feature", + "semantic_type": "categorical", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 3, + "unique_ratio": 0.002171, + "example_values": [ + "low", + "high", + "med" + ] + } + }, + { + "name": "class", + "role": "target", + "semantic_type": "categorical", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 4, + "unique_ratio": 0.002894, + "example_values": [ + "unacc", + "good", + "acc", + "vgood" + ] + } + } + ] +} \ No newline at end of file diff --git a/hyperparameter/c2/tvae/tvae-c2-20260504_173008/public_gate/public_gate_report.json b/hyperparameter/c2/tvae/tvae-c2-20260504_173008/public_gate/public_gate_report.json new file mode 100644 index 0000000000000000000000000000000000000000..2e4cdcb2a4e28e40d59b17a83e773f622b7636a5 --- /dev/null +++ b/hyperparameter/c2/tvae/tvae-c2-20260504_173008/public_gate/public_gate_report.json @@ -0,0 +1,37 @@ +{ + "dataset_id": "c2", + "status": "pass", + "checks": [ + { + "check_id": "PG001_csv_parse_ok", + "status": "pass" + }, + { + "check_id": "PG002_split_header_consistent", + "status": "pass" + }, + { + "check_id": "PG003_profile_header_match", + "status": "pass" + }, + { + "check_id": "PG004_missing_token_normalized", + "status": "pass" + }, + { + "check_id": "PG005_semantic_type_validated", + "status": "pass" + }, + { + "check_id": "PG006_target_defined_and_valid", + "status": "pass" + } + ], + "target_column": "class", + "task_type": "classification", + "input_splits": { + "train": "/data/jialinzhang/SynthesizePipeline-server/DatasetNew/c2/c2-train.csv", + "val": "/data/jialinzhang/SynthesizePipeline-server/DatasetNew/c2/c2-val.csv", + "test": "/data/jialinzhang/SynthesizePipeline-server/DatasetNew/c2/c2-test.csv" + } +} \ No newline at end of file diff --git a/hyperparameter/c2/tvae/tvae-c2-20260504_173008/public_gate/staged_input_manifest.json b/hyperparameter/c2/tvae/tvae-c2-20260504_173008/public_gate/staged_input_manifest.json new file mode 100644 index 0000000000000000000000000000000000000000..34b8b885d16936dabc4bfa6ae10d9902d0dcbe1e --- /dev/null +++ b/hyperparameter/c2/tvae/tvae-c2-20260504_173008/public_gate/staged_input_manifest.json @@ -0,0 +1,149 @@ +{ + "dataset_id": "c2", + "target_column": "class", + "task_type": "classification", + "train_csv": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/c2/tvae/tvae-c2-20260504_173008/staged/public/train.csv", + "val_csv": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/c2/tvae/tvae-c2-20260504_173008/staged/public/val.csv", + "test_csv": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/c2/tvae/tvae-c2-20260504_173008/staged/public/test.csv", + "features_json": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/c2/tvae/tvae-c2-20260504_173008/staged/public/staged_features.json", + "public_gate_report": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/c2/tvae/tvae-c2-20260504_173008/public_gate/public_gate_report.json", + "column_schema": [ + { + "name": "buying", + "role": "feature", + "semantic_type": "categorical", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 4, + "unique_ratio": 0.002894, + "example_values": [ + "vhigh", + "med", + "high", + "low" + ] + } + }, + { + "name": "maint", + "role": "feature", + "semantic_type": "categorical", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 4, + "unique_ratio": 0.002894, + "example_values": [ + "vhigh", + "low", + "med", + "high" + ] + } + }, + { + "name": "doors", + "role": "feature", + "semantic_type": "categorical", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 4, + "unique_ratio": 0.002894, + "example_values": [ + "2", + "5more", + "3", + "4" + ] + } + }, + { + "name": "persons", + "role": "feature", + "semantic_type": "categorical", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 3, + "unique_ratio": 0.002171, + "example_values": [ + "2", + "4", + "more" + ] + } + }, + { + "name": "lug_boot", + "role": "feature", + "semantic_type": "categorical", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 3, + "unique_ratio": 0.002171, + "example_values": [ + "small", + "big", + "med" + ] + } + }, + { + "name": "safety", + "role": "feature", + "semantic_type": "categorical", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 3, + "unique_ratio": 0.002171, + "example_values": [ + "low", + "high", + "med" + ] + } + }, + { + "name": "class", + "role": "target", + "semantic_type": "categorical", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 4, + "unique_ratio": 0.002894, + "example_values": [ + "unacc", + "good", + "acc", + "vgood" + ] + } + } + ] +} \ No newline at end of file diff --git a/hyperparameter/c2/tvae/tvae-c2-20260504_173008/run_config.json b/hyperparameter/c2/tvae/tvae-c2-20260504_173008/run_config.json new file mode 100644 index 0000000000000000000000000000000000000000..7335c4ba5feedfd103bfd4c81cc612041c2e4e81 --- /dev/null +++ b/hyperparameter/c2/tvae/tvae-c2-20260504_173008/run_config.json @@ -0,0 +1,40 @@ +{ + "schema_version": 1, + "recorded_at": "2026-05-04T17:30:08", + "dataset_id": "c2", + "model": "tvae", + "work_dir": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/c2/tvae/tvae-c2-20260504_173008", + "dataset_source_requested": "new", + "dataset_source_resolved": "new", + "cli_args": { + "model": "tvae", + "dataset": "c2", + "dataset_source": "new", + "train": true, + "generate": true, + "num_rows": 0, + "epochs": null, + "output_dir": null, + "model_dir": null, + "work_dir": null, + "resume": false, + "no_stats": false + }, + "resolved": { + "num_rows": 1382, + "model_path": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/c2/tvae/tvae-c2-20260504_173008/models_300epochs/tvae_300epochs.pt", + "output_csv": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/c2/tvae/tvae-c2-20260504_173008/tvae-c2-1382-20260504_173024.csv" + }, + "input_artifacts": { + "public_gate_report": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/c2/tvae/tvae-c2-20260504_173008/public_gate/public_gate_report.json", + "public_manifest": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/c2/tvae/tvae-c2-20260504_173008/public_gate/staged_input_manifest.json", + "model_manifest": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/c2/tvae/tvae-c2-20260504_173008/staged/tvae/model_input_manifest.json", + "train_csv": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/c2/tvae/tvae-c2-20260504_173008/staged/public/train.csv", + "features_json": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/c2/tvae/tvae-c2-20260504_173008/staged/public/staged_features.json", + "target_column": "class", + "task_type": "classification" + }, + "env_overrides": { + "BENCHMARK_TVAE_GPUS": "device=3" + } +} \ No newline at end of file diff --git a/hyperparameter/c2/tvae/tvae-c2-20260504_173008/runtime_result.json b/hyperparameter/c2/tvae/tvae-c2-20260504_173008/runtime_result.json new file mode 100644 index 0000000000000000000000000000000000000000..22be744ff183e559b6ad1a680776340fac9c465e --- /dev/null +++ b/hyperparameter/c2/tvae/tvae-c2-20260504_173008/runtime_result.json @@ -0,0 +1,27 @@ +{ + "dataset_id": "c2", + "model": "tvae", + "run_id": "tvae-c2-20260504_173008", + "public_gate_status": "pass", + "adapter_ready_status": "pass", + "train_status": "success", + "generate_status": "success", + "reason_code": null, + "reason_detail": null, + "artifacts": { + "synthetic_csv": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/c2/tvae/tvae-c2-20260504_173008/tvae-c2-1382-20260504_173024.csv", + "model_path": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/c2/tvae/tvae-c2-20260504_173008/models_300epochs/tvae_300epochs.pt" + }, + "timings": { + "train": { + "started_at": "2026-05-04T17:30:08", + "ended_at": "2026-05-04T17:30:24", + "duration_sec": 15.956 + }, + "generate": { + "started_at": "2026-05-04T17:30:24", + "ended_at": "2026-05-04T17:30:30", + "duration_sec": 5.259 + } + } +} \ No newline at end of file diff --git a/hyperparameter/c2/tvae/tvae-c2-20260504_173008/staged/public/staged_features.json b/hyperparameter/c2/tvae/tvae-c2-20260504_173008/staged/public/staged_features.json new file mode 100644 index 0000000000000000000000000000000000000000..61783861dd5de501592f76acb0469cf3f3b2622a --- /dev/null +++ b/hyperparameter/c2/tvae/tvae-c2-20260504_173008/staged/public/staged_features.json @@ -0,0 +1,37 @@ +[ + { + "feature_name": "buying", + "data_type": "categorical", + "is_target": false + }, + { + "feature_name": "maint", + "data_type": "categorical", + "is_target": false + }, + { + "feature_name": "doors", + "data_type": "categorical", + "is_target": false + }, + { + "feature_name": "persons", + "data_type": "categorical", + "is_target": false + }, + { + "feature_name": "lug_boot", + "data_type": "categorical", + "is_target": false + }, + { + "feature_name": "safety", + "data_type": "categorical", + "is_target": false + }, + { + "feature_name": "class", + "data_type": "categorical", + "is_target": true + } +] \ No newline at end of file diff --git a/hyperparameter/c2/tvae/tvae-c2-20260504_173008/staged/public/test.csv b/hyperparameter/c2/tvae/tvae-c2-20260504_173008/staged/public/test.csv new file mode 100644 index 0000000000000000000000000000000000000000..392a0d7189a34d8f13ecf20a99d64b03230d517c --- /dev/null +++ b/hyperparameter/c2/tvae/tvae-c2-20260504_173008/staged/public/test.csv @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:b48114a7d0bc5bd9a07920f903c8d4aba8bf98bf2a66a050da03588b0245ca73 +size 5273 diff --git a/hyperparameter/c2/tvae/tvae-c2-20260504_173008/staged/public/train.csv b/hyperparameter/c2/tvae/tvae-c2-20260504_173008/staged/public/train.csv new file mode 100644 index 0000000000000000000000000000000000000000..da4f4d55134eebc0e51157d0d467536371db1484 --- /dev/null +++ b/hyperparameter/c2/tvae/tvae-c2-20260504_173008/staged/public/train.csv @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:4aed00c2c2b3f88a55a7ebff31b2e1b5e0e32fb0a7267e0b9d2779cd23e434dd +size 41565 diff --git a/hyperparameter/c2/tvae/tvae-c2-20260504_173008/staged/public/val.csv b/hyperparameter/c2/tvae/tvae-c2-20260504_173008/staged/public/val.csv new file mode 100644 index 0000000000000000000000000000000000000000..af8caf7ee42524188534a3daf32996dc491952d9 --- /dev/null +++ b/hyperparameter/c2/tvae/tvae-c2-20260504_173008/staged/public/val.csv @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:26e90c1170a57a14c05832ac88027722b1f3848f9662c7c09ef7c93dcba4cc01 +size 5176 diff --git a/hyperparameter/c2/tvae/tvae-c2-20260504_173008/staged/tvae/adapter_report.json b/hyperparameter/c2/tvae/tvae-c2-20260504_173008/staged/tvae/adapter_report.json new file mode 100644 index 0000000000000000000000000000000000000000..4242764ed766368329eb87e61673e22e2b5b6af8 --- /dev/null +++ b/hyperparameter/c2/tvae/tvae-c2-20260504_173008/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-Benchmark-trainonly-v1/c2/tvae/tvae-c2-20260504_173008/staged/tvae/model_input_manifest.json" +} \ No newline at end of file diff --git a/hyperparameter/c2/tvae/tvae-c2-20260504_173008/staged/tvae/adapter_transforms_applied.json b/hyperparameter/c2/tvae/tvae-c2-20260504_173008/staged/tvae/adapter_transforms_applied.json new file mode 100644 index 0000000000000000000000000000000000000000..0637a088a01e8ddab3bf3fa98dbe804cbde1a0dc --- /dev/null +++ b/hyperparameter/c2/tvae/tvae-c2-20260504_173008/staged/tvae/adapter_transforms_applied.json @@ -0,0 +1 @@ +[] \ No newline at end of file diff --git a/hyperparameter/c2/tvae/tvae-c2-20260504_173008/staged/tvae/model_input_manifest.json b/hyperparameter/c2/tvae/tvae-c2-20260504_173008/staged/tvae/model_input_manifest.json new file mode 100644 index 0000000000000000000000000000000000000000..f04fd5c7b319044a938f125aa99765abe6589a9c --- /dev/null +++ b/hyperparameter/c2/tvae/tvae-c2-20260504_173008/staged/tvae/model_input_manifest.json @@ -0,0 +1,151 @@ +{ + "dataset_id": "c2", + "model": "tvae", + "target_column": "class", + "task_type": "classification", + "column_schema": [ + { + "name": "buying", + "role": "feature", + "semantic_type": "categorical", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 4, + "unique_ratio": 0.002894, + "example_values": [ + "vhigh", + "med", + "high", + "low" + ] + } + }, + { + "name": "maint", + "role": "feature", + "semantic_type": "categorical", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 4, + "unique_ratio": 0.002894, + "example_values": [ + "vhigh", + "low", + "med", + "high" + ] + } + }, + { + "name": "doors", + "role": "feature", + "semantic_type": "categorical", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 4, + "unique_ratio": 0.002894, + "example_values": [ + "2", + "5more", + "3", + "4" + ] + } + }, + { + "name": "persons", + "role": "feature", + "semantic_type": "categorical", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 3, + "unique_ratio": 0.002171, + "example_values": [ + "2", + "4", + "more" + ] + } + }, + { + "name": "lug_boot", + "role": "feature", + "semantic_type": "categorical", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 3, + "unique_ratio": 0.002171, + "example_values": [ + "small", + "big", + "med" + ] + } + }, + { + "name": "safety", + "role": "feature", + "semantic_type": "categorical", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 3, + "unique_ratio": 0.002171, + "example_values": [ + "low", + "high", + "med" + ] + } + }, + { + "name": "class", + "role": "target", + "semantic_type": "categorical", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 4, + "unique_ratio": 0.002894, + "example_values": [ + "unacc", + "good", + "acc", + "vgood" + ] + } + } + ], + "public_manifest": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/c2/tvae/tvae-c2-20260504_173008/public_gate/staged_input_manifest.json", + "train_csv": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/c2/tvae/tvae-c2-20260504_173008/staged/public/train.csv", + "val_csv": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/c2/tvae/tvae-c2-20260504_173008/staged/public/val.csv", + "test_csv": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/c2/tvae/tvae-c2-20260504_173008/staged/public/test.csv", + "features_json": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/c2/tvae/tvae-c2-20260504_173008/staged/public/staged_features.json", + "public_gate_report": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/c2/tvae/tvae-c2-20260504_173008/public_gate/public_gate_report.json" +} \ No newline at end of file diff --git a/hyperparameter/c2/tvae/tvae-c2-20260504_173008/tvae-c2-1382-20260504_173024.csv b/hyperparameter/c2/tvae/tvae-c2-20260504_173008/tvae-c2-1382-20260504_173024.csv new file mode 100644 index 0000000000000000000000000000000000000000..0facc9d2d09dd192dcf6aaf22fef2e2ec709388b --- /dev/null +++ b/hyperparameter/c2/tvae/tvae-c2-20260504_173008/tvae-c2-1382-20260504_173024.csv @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:5c13329eb5fa57144da4e37e2c72a488103b21bb242e3711339b259178094e71 +size 41572 diff --git a/hyperparameter/c2/tvae/tvae-c2-20260504_173008/tvae_metadata.json b/hyperparameter/c2/tvae/tvae-c2-20260504_173008/tvae_metadata.json new file mode 100644 index 0000000000000000000000000000000000000000..183d627ebc98e89233655ec98c9dcbc528c4c328 --- /dev/null +++ b/hyperparameter/c2/tvae/tvae-c2-20260504_173008/tvae_metadata.json @@ -0,0 +1,32 @@ +{ + "columns": [ + { + "name": "buying", + "type": "categorical" + }, + { + "name": "maint", + "type": "categorical" + }, + { + "name": "doors", + "type": "categorical" + }, + { + "name": "persons", + "type": "categorical" + }, + { + "name": "lug_boot", + "type": "categorical" + }, + { + "name": "safety", + "type": "categorical" + }, + { + "name": "class", + "type": "categorical" + } + ] +} \ No newline at end of file diff --git a/hyperparameter/c2/tvae/tvae-c2-20260504_174013/_tvae_generate.py b/hyperparameter/c2/tvae/tvae-c2-20260504_174013/_tvae_generate.py new file mode 100644 index 0000000000000000000000000000000000000000..3286ed3675bc2e6dab9822c66720b2afe05caa4d --- /dev/null +++ b/hyperparameter/c2/tvae/tvae-c2-20260504_174013/_tvae_generate.py @@ -0,0 +1,23 @@ +import os, sys +sys.path.insert(0, "/work") +from src.SpecificModels.ctgan_joblib_parallel_cap import apply_parallel_cap_from_env +apply_parallel_cap_from_env() +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 +os.environ.setdefault("LOKY_MAX_CPU_COUNT", "8") +os.environ.setdefault("OPENBLAS_NUM_THREADS", "8") +os.environ.setdefault("MKL_NUM_THREADS", "8") +model = TVAE.load("/work/output-Benchmark-trainonly-v1/c2/tvae/tvae-c2-20260504_174013/models_300epochs/tvae_300epochs.pt") +total = 1382 +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-Benchmark-trainonly-v1/c2/tvae/tvae-c2-20260504_174013/tvae-c2-1382-20260504_174029.csv", index=False) +print(f"[TVAE] Generated {total} rows (chunks={len(parts)}) -> /work/output-Benchmark-trainonly-v1/c2/tvae/tvae-c2-20260504_174013/tvae-c2-1382-20260504_174029.csv") diff --git a/hyperparameter/c2/tvae/tvae-c2-20260504_174013/_tvae_train.py b/hyperparameter/c2/tvae/tvae-c2-20260504_174013/_tvae_train.py new file mode 100644 index 0000000000000000000000000000000000000000..907e254de6937dd18f07ac7af235f221f36bb32a --- /dev/null +++ b/hyperparameter/c2/tvae/tvae-c2-20260504_174013/_tvae_train.py @@ -0,0 +1,39 @@ +import json, os, sys +sys.path.insert(0, "/work") +from src.SpecificModels.ctgan_joblib_parallel_cap import apply_parallel_cap_from_env +apply_parallel_cap_from_env() +import pandas as pd +from ctgan.data import read_csv +from ctgan.synthesizers.tvae import TVAE + +# Keep transform stage parallelism bounded for stability on shared host. +os.environ.setdefault("LOKY_MAX_CPU_COUNT", "8") +os.environ.setdefault("OPENBLAS_NUM_THREADS", "8") +os.environ.setdefault("MKL_NUM_THREADS", "8") +_nj = (os.environ.get("TVAE_CTGAN_JOBTRANS_N_JOBS") or "").strip() +if _nj: + print("[TVAE] joblib Parallel cap ON, TVAE_CTGAN_JOBTRANS_N_JOBS=" + _nj) +else: + print("[TVAE] joblib Parallel cap OFF (unset TVAE_CTGAN_JOBTRANS_N_JOBS)") +print("[TVAE] LOKY_MAX_CPU_COUNT=" + str(os.environ.get("LOKY_MAX_CPU_COUNT", ""))) + +csv_path = "/work/output-Benchmark-trainonly-v1/c2/tvae/tvae-c2-20260504_174013/staged/public/train.csv" +meta_path = "/work/output-Benchmark-trainonly-v1/c2/tvae/tvae-c2-20260504_174013/tvae_metadata.json" +save_path = "/work/output-Benchmark-trainonly-v1/c2/tvae/tvae-c2-20260504_174013/models_300epochs/tvae_300epochs.pt" +epochs = int(os.environ.get("TVAE_EPOCHS", 300)) +batch_size = int(os.environ.get("TVAE_BATCH_SIZE", "500")) +embedding_dim = int(os.environ.get("TVAE_EMBEDDING_DIM", "128")) +def _parse_dims(name, default): + raw = (os.environ.get(name) or "").strip() + if not raw: + return default + return tuple(int(x.strip()) for x in raw.split(",") if x.strip()) +compress_dims = _parse_dims("TVAE_COMPRESS_DIMS", (128, 128)) +decompress_dims = _parse_dims("TVAE_DECOMPRESS_DIMS", (128, 128)) + +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}, batch_size={batch_size}, embedding_dim={embedding_dim}, compress_dims={compress_dims}, decompress_dims={decompress_dims}") +model = TVAE(epochs=epochs, batch_size=batch_size, embedding_dim=embedding_dim, compress_dims=compress_dims, decompress_dims=decompress_dims) +model.fit(data, discrete_columns) +model.save(save_path) +print(f"[TVAE] Model saved -> {save_path}") diff --git a/hyperparameter/c2/tvae/tvae-c2-20260504_174013/gen_20260504_174029.log b/hyperparameter/c2/tvae/tvae-c2-20260504_174013/gen_20260504_174029.log new file mode 100644 index 0000000000000000000000000000000000000000..a1b1e990c2280e5c69b5bb23bc9d3b47e6938193 --- /dev/null +++ b/hyperparameter/c2/tvae/tvae-c2-20260504_174013/gen_20260504_174029.log @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:56d72e0efac984702b081bb48d7cb946ea3691388616e818ff414e6e231d5453 +size 404 diff --git a/hyperparameter/c2/tvae/tvae-c2-20260504_174013/input_snapshot.json b/hyperparameter/c2/tvae/tvae-c2-20260504_174013/input_snapshot.json new file mode 100644 index 0000000000000000000000000000000000000000..9e28a5421f2176e174a0659e66a40054269fb2ac --- /dev/null +++ b/hyperparameter/c2/tvae/tvae-c2-20260504_174013/input_snapshot.json @@ -0,0 +1,36 @@ +{ + "dataset_id": "c2", + "model": "tvae", + "inputs": { + "train_csv": { + "path": "/data/jialinzhang/SynthesizePipeline-server/DatasetNew/c2/c2-train.csv", + "exists": true, + "size": 42948, + "sha256": "17bc560fa96bd00fb3b526e1e65bc91210b701d0d0a4e8bb9b4c5196cab56def" + }, + "val_csv": { + "path": "/data/jialinzhang/SynthesizePipeline-server/DatasetNew/c2/c2-val.csv", + "exists": true, + "size": 5349, + "sha256": "61e565eca62e65a7dccd9d51039a3170413379e10fc494e25870e7c4294863c9" + }, + "test_csv": { + "path": "/data/jialinzhang/SynthesizePipeline-server/DatasetNew/c2/c2-test.csv", + "exists": true, + "size": 5448, + "sha256": "cbcbb062a1faf5fa44b66c80532baa229e05b94fc42137269761e6c6d84af20a" + }, + "profile_json": { + "path": "/data/jialinzhang/SynthesizePipeline-server/DatasetNew/artifacts/data_core/tabular/c2/c2-dataset_profile.json", + "exists": true, + "size": 3240, + "sha256": "526b7163b2076c93c0bf4638438081ee8a6907065d5b608faa40d1a3dbc2a27b" + }, + "contract_json": { + "path": "/data/jialinzhang/SynthesizePipeline-server/DatasetNew/artifacts/data_core/tabular/c2/c2-dataset_contract_v1.json", + "exists": true, + "size": 3731, + "sha256": "fb595a876054c2ee9b4e10cfe83a5691588de1d25466cbb9d473c18ad3604009" + } + } +} \ No newline at end of file diff --git a/hyperparameter/c2/tvae/tvae-c2-20260504_174013/models_300epochs/train_20260504_174013.log b/hyperparameter/c2/tvae/tvae-c2-20260504_174013/models_300epochs/train_20260504_174013.log new file mode 100644 index 0000000000000000000000000000000000000000..bad1b646c923e3b9a8e91ad353281c3cc4607689 --- /dev/null +++ b/hyperparameter/c2/tvae/tvae-c2-20260504_174013/models_300epochs/train_20260504_174013.log @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:0b25cd4019839ccaca05dcab067fe07c9a8293c777a3e34ded19ab97c8e49e17 +size 620 diff --git a/hyperparameter/c2/tvae/tvae-c2-20260504_174013/models_300epochs/tvae_300epochs.pt b/hyperparameter/c2/tvae/tvae-c2-20260504_174013/models_300epochs/tvae_300epochs.pt new file mode 100644 index 0000000000000000000000000000000000000000..08961776a4f44dbaf6745845c6423443d3fbed2b --- /dev/null +++ b/hyperparameter/c2/tvae/tvae-c2-20260504_174013/models_300epochs/tvae_300epochs.pt @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:a6cb2b979aca8616d64810c710e8de8e8ca165a0d1117a54c4bc6ba60ff36a79 +size 344876 diff --git a/hyperparameter/c2/tvae/tvae-c2-20260504_174013/public_gate/normalized_schema_snapshot.json b/hyperparameter/c2/tvae/tvae-c2-20260504_174013/public_gate/normalized_schema_snapshot.json new file mode 100644 index 0000000000000000000000000000000000000000..689b1d00d96508e44ba40e58dc4560e19afc2b3b --- /dev/null +++ b/hyperparameter/c2/tvae/tvae-c2-20260504_174013/public_gate/normalized_schema_snapshot.json @@ -0,0 +1,144 @@ +{ + "dataset_id": "c2", + "target_column": "class", + "task_type": "classification", + "columns": [ + { + "name": "buying", + "role": "feature", + "semantic_type": "categorical", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 4, + "unique_ratio": 0.002894, + "example_values": [ + "vhigh", + "med", + "high", + "low" + ] + } + }, + { + "name": "maint", + "role": "feature", + "semantic_type": "categorical", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 4, + "unique_ratio": 0.002894, + "example_values": [ + "vhigh", + "low", + "med", + "high" + ] + } + }, + { + "name": "doors", + "role": "feature", + "semantic_type": "categorical", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 4, + "unique_ratio": 0.002894, + "example_values": [ + "2", + "5more", + "3", + "4" + ] + } + }, + { + "name": "persons", + "role": "feature", + "semantic_type": "categorical", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 3, + "unique_ratio": 0.002171, + "example_values": [ + "2", + "4", + "more" + ] + } + }, + { + "name": "lug_boot", + "role": "feature", + "semantic_type": "categorical", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 3, + "unique_ratio": 0.002171, + "example_values": [ + "small", + "big", + "med" + ] + } + }, + { + "name": "safety", + "role": "feature", + "semantic_type": "categorical", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 3, + "unique_ratio": 0.002171, + "example_values": [ + "low", + "high", + "med" + ] + } + }, + { + "name": "class", + "role": "target", + "semantic_type": "categorical", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 4, + "unique_ratio": 0.002894, + "example_values": [ + "unacc", + "good", + "acc", + "vgood" + ] + } + } + ] +} \ No newline at end of file diff --git a/hyperparameter/c2/tvae/tvae-c2-20260504_174013/public_gate/public_gate_report.json b/hyperparameter/c2/tvae/tvae-c2-20260504_174013/public_gate/public_gate_report.json new file mode 100644 index 0000000000000000000000000000000000000000..2e4cdcb2a4e28e40d59b17a83e773f622b7636a5 --- /dev/null +++ b/hyperparameter/c2/tvae/tvae-c2-20260504_174013/public_gate/public_gate_report.json @@ -0,0 +1,37 @@ +{ + "dataset_id": "c2", + "status": "pass", + "checks": [ + { + "check_id": "PG001_csv_parse_ok", + "status": "pass" + }, + { + "check_id": "PG002_split_header_consistent", + "status": "pass" + }, + { + "check_id": "PG003_profile_header_match", + "status": "pass" + }, + { + "check_id": "PG004_missing_token_normalized", + "status": "pass" + }, + { + "check_id": "PG005_semantic_type_validated", + "status": "pass" + }, + { + "check_id": "PG006_target_defined_and_valid", + "status": "pass" + } + ], + "target_column": "class", + "task_type": "classification", + "input_splits": { + "train": "/data/jialinzhang/SynthesizePipeline-server/DatasetNew/c2/c2-train.csv", + "val": "/data/jialinzhang/SynthesizePipeline-server/DatasetNew/c2/c2-val.csv", + "test": "/data/jialinzhang/SynthesizePipeline-server/DatasetNew/c2/c2-test.csv" + } +} \ No newline at end of file diff --git a/hyperparameter/c2/tvae/tvae-c2-20260504_174013/public_gate/staged_input_manifest.json b/hyperparameter/c2/tvae/tvae-c2-20260504_174013/public_gate/staged_input_manifest.json new file mode 100644 index 0000000000000000000000000000000000000000..663ecf4e842af7f358042d1ff125793c36e9c902 --- /dev/null +++ b/hyperparameter/c2/tvae/tvae-c2-20260504_174013/public_gate/staged_input_manifest.json @@ -0,0 +1,149 @@ +{ + "dataset_id": "c2", + "target_column": "class", + "task_type": "classification", + "train_csv": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/c2/tvae/tvae-c2-20260504_174013/staged/public/train.csv", + "val_csv": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/c2/tvae/tvae-c2-20260504_174013/staged/public/val.csv", + "test_csv": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/c2/tvae/tvae-c2-20260504_174013/staged/public/test.csv", + "features_json": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/c2/tvae/tvae-c2-20260504_174013/staged/public/staged_features.json", + "public_gate_report": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/c2/tvae/tvae-c2-20260504_174013/public_gate/public_gate_report.json", + "column_schema": [ + { + "name": "buying", + "role": "feature", + "semantic_type": "categorical", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 4, + "unique_ratio": 0.002894, + "example_values": [ + "vhigh", + "med", + "high", + "low" + ] + } + }, + { + "name": "maint", + "role": "feature", + "semantic_type": "categorical", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 4, + "unique_ratio": 0.002894, + "example_values": [ + "vhigh", + "low", + "med", + "high" + ] + } + }, + { + "name": "doors", + "role": "feature", + "semantic_type": "categorical", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 4, + "unique_ratio": 0.002894, + "example_values": [ + "2", + "5more", + "3", + "4" + ] + } + }, + { + "name": "persons", + "role": "feature", + "semantic_type": "categorical", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 3, + "unique_ratio": 0.002171, + "example_values": [ + "2", + "4", + "more" + ] + } + }, + { + "name": "lug_boot", + "role": "feature", + "semantic_type": "categorical", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 3, + "unique_ratio": 0.002171, + "example_values": [ + "small", + "big", + "med" + ] + } + }, + { + "name": "safety", + "role": "feature", + "semantic_type": "categorical", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 3, + "unique_ratio": 0.002171, + "example_values": [ + "low", + "high", + "med" + ] + } + }, + { + "name": "class", + "role": "target", + "semantic_type": "categorical", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 4, + "unique_ratio": 0.002894, + "example_values": [ + "unacc", + "good", + "acc", + "vgood" + ] + } + } + ] +} \ No newline at end of file diff --git a/hyperparameter/c2/tvae/tvae-c2-20260504_174013/run_config.json b/hyperparameter/c2/tvae/tvae-c2-20260504_174013/run_config.json new file mode 100644 index 0000000000000000000000000000000000000000..6a076fb31e3df33d38747e4d6395e6be885e9eb4 --- /dev/null +++ b/hyperparameter/c2/tvae/tvae-c2-20260504_174013/run_config.json @@ -0,0 +1,45 @@ +{ + "schema_version": 1, + "recorded_at": "2026-05-04T17:40:13", + "dataset_id": "c2", + "model": "tvae", + "work_dir": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/c2/tvae/tvae-c2-20260504_174013", + "dataset_source_requested": "new", + "dataset_source_resolved": "new", + "cli_args": { + "model": "tvae", + "dataset": "c2", + "dataset_source": "new", + "train": true, + "generate": true, + "num_rows": 0, + "epochs": null, + "output_dir": null, + "model_dir": null, + "work_dir": null, + "resume": false, + "no_stats": false + }, + "resolved": { + "num_rows": 1382, + "model_path": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/c2/tvae/tvae-c2-20260504_174013/models_300epochs/tvae_300epochs.pt", + "output_csv": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/c2/tvae/tvae-c2-20260504_174013/tvae-c2-1382-20260504_174029.csv" + }, + "input_artifacts": { + "public_gate_report": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/c2/tvae/tvae-c2-20260504_174013/public_gate/public_gate_report.json", + "public_manifest": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/c2/tvae/tvae-c2-20260504_174013/public_gate/staged_input_manifest.json", + "model_manifest": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/c2/tvae/tvae-c2-20260504_174013/staged/tvae/model_input_manifest.json", + "train_csv": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/c2/tvae/tvae-c2-20260504_174013/staged/public/train.csv", + "features_json": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/c2/tvae/tvae-c2-20260504_174013/staged/public/staged_features.json", + "target_column": "class", + "task_type": "classification" + }, + "env_overrides": { + "BENCHMARK_TVAE_GPUS": "device=3", + "TVAE_BATCH_SIZE": "256", + "TVAE_COMPRESS_DIMS": "64,64", + "TVAE_DECOMPRESS_DIMS": "64,64", + "TVAE_EMBEDDING_DIM": "32", + "TVAE_EPOCHS": "100" + } +} \ No newline at end of file diff --git a/hyperparameter/c2/tvae/tvae-c2-20260504_174013/runtime_result.json b/hyperparameter/c2/tvae/tvae-c2-20260504_174013/runtime_result.json new file mode 100644 index 0000000000000000000000000000000000000000..164db63b9f9a2691769a87cde6ec4207ef8d4409 --- /dev/null +++ b/hyperparameter/c2/tvae/tvae-c2-20260504_174013/runtime_result.json @@ -0,0 +1,27 @@ +{ + "dataset_id": "c2", + "model": "tvae", + "run_id": "tvae-c2-20260504_174013", + "public_gate_status": "pass", + "adapter_ready_status": "pass", + "train_status": "success", + "generate_status": "success", + "reason_code": null, + "reason_detail": null, + "artifacts": { + "synthetic_csv": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/c2/tvae/tvae-c2-20260504_174013/tvae-c2-1382-20260504_174029.csv", + "model_path": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/c2/tvae/tvae-c2-20260504_174013/models_300epochs/tvae_300epochs.pt" + }, + "timings": { + "train": { + "started_at": "2026-05-04T17:40:13", + "ended_at": "2026-05-04T17:40:29", + "duration_sec": 16.005 + }, + "generate": { + "started_at": "2026-05-04T17:40:29", + "ended_at": "2026-05-04T17:40:34", + "duration_sec": 5.26 + } + } +} \ No newline at end of file diff --git a/hyperparameter/c2/tvae/tvae-c2-20260504_174013/staged/public/staged_features.json b/hyperparameter/c2/tvae/tvae-c2-20260504_174013/staged/public/staged_features.json new file mode 100644 index 0000000000000000000000000000000000000000..61783861dd5de501592f76acb0469cf3f3b2622a --- /dev/null +++ b/hyperparameter/c2/tvae/tvae-c2-20260504_174013/staged/public/staged_features.json @@ -0,0 +1,37 @@ +[ + { + "feature_name": "buying", + "data_type": "categorical", + "is_target": false + }, + { + "feature_name": "maint", + "data_type": "categorical", + "is_target": false + }, + { + "feature_name": "doors", + "data_type": "categorical", + "is_target": false + }, + { + "feature_name": "persons", + "data_type": "categorical", + "is_target": false + }, + { + "feature_name": "lug_boot", + "data_type": "categorical", + "is_target": false + }, + { + "feature_name": "safety", + "data_type": "categorical", + "is_target": false + }, + { + "feature_name": "class", + "data_type": "categorical", + "is_target": true + } +] \ No newline at end of file diff --git a/hyperparameter/c2/tvae/tvae-c2-20260504_174013/staged/public/test.csv b/hyperparameter/c2/tvae/tvae-c2-20260504_174013/staged/public/test.csv new file mode 100644 index 0000000000000000000000000000000000000000..392a0d7189a34d8f13ecf20a99d64b03230d517c --- /dev/null +++ b/hyperparameter/c2/tvae/tvae-c2-20260504_174013/staged/public/test.csv @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:b48114a7d0bc5bd9a07920f903c8d4aba8bf98bf2a66a050da03588b0245ca73 +size 5273 diff --git a/hyperparameter/c2/tvae/tvae-c2-20260504_174013/staged/public/train.csv b/hyperparameter/c2/tvae/tvae-c2-20260504_174013/staged/public/train.csv new file mode 100644 index 0000000000000000000000000000000000000000..da4f4d55134eebc0e51157d0d467536371db1484 --- /dev/null +++ b/hyperparameter/c2/tvae/tvae-c2-20260504_174013/staged/public/train.csv @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:4aed00c2c2b3f88a55a7ebff31b2e1b5e0e32fb0a7267e0b9d2779cd23e434dd +size 41565 diff --git a/hyperparameter/c2/tvae/tvae-c2-20260504_174013/staged/public/val.csv b/hyperparameter/c2/tvae/tvae-c2-20260504_174013/staged/public/val.csv new file mode 100644 index 0000000000000000000000000000000000000000..af8caf7ee42524188534a3daf32996dc491952d9 --- /dev/null +++ b/hyperparameter/c2/tvae/tvae-c2-20260504_174013/staged/public/val.csv @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:26e90c1170a57a14c05832ac88027722b1f3848f9662c7c09ef7c93dcba4cc01 +size 5176 diff --git a/hyperparameter/c2/tvae/tvae-c2-20260504_174013/staged/tvae/adapter_report.json b/hyperparameter/c2/tvae/tvae-c2-20260504_174013/staged/tvae/adapter_report.json new file mode 100644 index 0000000000000000000000000000000000000000..d02acf7a8d601fb7def477f25e447dc0b277dcb4 --- /dev/null +++ b/hyperparameter/c2/tvae/tvae-c2-20260504_174013/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-Benchmark-trainonly-v1/c2/tvae/tvae-c2-20260504_174013/staged/tvae/model_input_manifest.json" +} \ No newline at end of file diff --git a/hyperparameter/c2/tvae/tvae-c2-20260504_174013/staged/tvae/adapter_transforms_applied.json b/hyperparameter/c2/tvae/tvae-c2-20260504_174013/staged/tvae/adapter_transforms_applied.json new file mode 100644 index 0000000000000000000000000000000000000000..0637a088a01e8ddab3bf3fa98dbe804cbde1a0dc --- /dev/null +++ b/hyperparameter/c2/tvae/tvae-c2-20260504_174013/staged/tvae/adapter_transforms_applied.json @@ -0,0 +1 @@ +[] \ No newline at end of file diff --git a/hyperparameter/c2/tvae/tvae-c2-20260504_174013/staged/tvae/model_input_manifest.json b/hyperparameter/c2/tvae/tvae-c2-20260504_174013/staged/tvae/model_input_manifest.json new file mode 100644 index 0000000000000000000000000000000000000000..f400cbfa46a2b6a52c93e8ade8ad35565c6c90e7 --- /dev/null +++ b/hyperparameter/c2/tvae/tvae-c2-20260504_174013/staged/tvae/model_input_manifest.json @@ -0,0 +1,151 @@ +{ + "dataset_id": "c2", + "model": "tvae", + "target_column": "class", + "task_type": "classification", + "column_schema": [ + { + "name": "buying", + "role": "feature", + "semantic_type": "categorical", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 4, + "unique_ratio": 0.002894, + "example_values": [ + "vhigh", + "med", + "high", + "low" + ] + } + }, + { + "name": "maint", + "role": "feature", + "semantic_type": "categorical", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 4, + "unique_ratio": 0.002894, + "example_values": [ + "vhigh", + "low", + "med", + "high" + ] + } + }, + { + "name": "doors", + "role": "feature", + "semantic_type": "categorical", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 4, + "unique_ratio": 0.002894, + "example_values": [ + "2", + "5more", + "3", + "4" + ] + } + }, + { + "name": "persons", + "role": "feature", + "semantic_type": "categorical", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 3, + "unique_ratio": 0.002171, + "example_values": [ + "2", + "4", + "more" + ] + } + }, + { + "name": "lug_boot", + "role": "feature", + "semantic_type": "categorical", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 3, + "unique_ratio": 0.002171, + "example_values": [ + "small", + "big", + "med" + ] + } + }, + { + "name": "safety", + "role": "feature", + "semantic_type": "categorical", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 3, + "unique_ratio": 0.002171, + "example_values": [ + "low", + "high", + "med" + ] + } + }, + { + "name": "class", + "role": "target", + "semantic_type": "categorical", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 4, + "unique_ratio": 0.002894, + "example_values": [ + "unacc", + "good", + "acc", + "vgood" + ] + } + } + ], + "public_manifest": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/c2/tvae/tvae-c2-20260504_174013/public_gate/staged_input_manifest.json", + "train_csv": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/c2/tvae/tvae-c2-20260504_174013/staged/public/train.csv", + "val_csv": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/c2/tvae/tvae-c2-20260504_174013/staged/public/val.csv", + "test_csv": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/c2/tvae/tvae-c2-20260504_174013/staged/public/test.csv", + "features_json": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/c2/tvae/tvae-c2-20260504_174013/staged/public/staged_features.json", + "public_gate_report": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/c2/tvae/tvae-c2-20260504_174013/public_gate/public_gate_report.json" +} \ No newline at end of file diff --git a/hyperparameter/c2/tvae/tvae-c2-20260504_174013/tvae-c2-1382-20260504_174029.csv b/hyperparameter/c2/tvae/tvae-c2-20260504_174013/tvae-c2-1382-20260504_174029.csv new file mode 100644 index 0000000000000000000000000000000000000000..5c0427bc294d7b6a885a82a120413f02c0b6b483 --- /dev/null +++ b/hyperparameter/c2/tvae/tvae-c2-20260504_174013/tvae-c2-1382-20260504_174029.csv @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:cb907028881b168202eadcc30313f4c70d0b390f379c1f64699c77c0cb5b1a23 +size 41983 diff --git a/hyperparameter/c2/tvae/tvae-c2-20260504_174013/tvae_metadata.json b/hyperparameter/c2/tvae/tvae-c2-20260504_174013/tvae_metadata.json new file mode 100644 index 0000000000000000000000000000000000000000..183d627ebc98e89233655ec98c9dcbc528c4c328 --- /dev/null +++ b/hyperparameter/c2/tvae/tvae-c2-20260504_174013/tvae_metadata.json @@ -0,0 +1,32 @@ +{ + "columns": [ + { + "name": "buying", + "type": "categorical" + }, + { + "name": "maint", + "type": "categorical" + }, + { + "name": "doors", + "type": "categorical" + }, + { + "name": "persons", + "type": "categorical" + }, + { + "name": "lug_boot", + "type": "categorical" + }, + { + "name": "safety", + "type": "categorical" + }, + { + "name": "class", + "type": "categorical" + } + ] +} \ No newline at end of file diff --git a/hyperparameter/c2/tvae/tvae-c2-20260504_174047/_tvae_generate.py b/hyperparameter/c2/tvae/tvae-c2-20260504_174047/_tvae_generate.py new file mode 100644 index 0000000000000000000000000000000000000000..54301febcfdbada05a2cc11f3d8302fc4c95abfa --- /dev/null +++ b/hyperparameter/c2/tvae/tvae-c2-20260504_174047/_tvae_generate.py @@ -0,0 +1,23 @@ +import os, sys +sys.path.insert(0, "/work") +from src.SpecificModels.ctgan_joblib_parallel_cap import apply_parallel_cap_from_env +apply_parallel_cap_from_env() +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 +os.environ.setdefault("LOKY_MAX_CPU_COUNT", "8") +os.environ.setdefault("OPENBLAS_NUM_THREADS", "8") +os.environ.setdefault("MKL_NUM_THREADS", "8") +model = TVAE.load("/work/output-Benchmark-trainonly-v1/c2/tvae/tvae-c2-20260504_174047/models_300epochs/tvae_300epochs.pt") +total = 1382 +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-Benchmark-trainonly-v1/c2/tvae/tvae-c2-20260504_174047/tvae-c2-1382-20260504_174104.csv", index=False) +print(f"[TVAE] Generated {total} rows (chunks={len(parts)}) -> /work/output-Benchmark-trainonly-v1/c2/tvae/tvae-c2-20260504_174047/tvae-c2-1382-20260504_174104.csv") diff --git a/hyperparameter/c2/tvae/tvae-c2-20260504_174047/_tvae_train.py b/hyperparameter/c2/tvae/tvae-c2-20260504_174047/_tvae_train.py new file mode 100644 index 0000000000000000000000000000000000000000..975f46af9bc9246f533df0df46150305c2b5913d --- /dev/null +++ b/hyperparameter/c2/tvae/tvae-c2-20260504_174047/_tvae_train.py @@ -0,0 +1,39 @@ +import json, os, sys +sys.path.insert(0, "/work") +from src.SpecificModels.ctgan_joblib_parallel_cap import apply_parallel_cap_from_env +apply_parallel_cap_from_env() +import pandas as pd +from ctgan.data import read_csv +from ctgan.synthesizers.tvae import TVAE + +# Keep transform stage parallelism bounded for stability on shared host. +os.environ.setdefault("LOKY_MAX_CPU_COUNT", "8") +os.environ.setdefault("OPENBLAS_NUM_THREADS", "8") +os.environ.setdefault("MKL_NUM_THREADS", "8") +_nj = (os.environ.get("TVAE_CTGAN_JOBTRANS_N_JOBS") or "").strip() +if _nj: + print("[TVAE] joblib Parallel cap ON, TVAE_CTGAN_JOBTRANS_N_JOBS=" + _nj) +else: + print("[TVAE] joblib Parallel cap OFF (unset TVAE_CTGAN_JOBTRANS_N_JOBS)") +print("[TVAE] LOKY_MAX_CPU_COUNT=" + str(os.environ.get("LOKY_MAX_CPU_COUNT", ""))) + +csv_path = "/work/output-Benchmark-trainonly-v1/c2/tvae/tvae-c2-20260504_174047/staged/public/train.csv" +meta_path = "/work/output-Benchmark-trainonly-v1/c2/tvae/tvae-c2-20260504_174047/tvae_metadata.json" +save_path = "/work/output-Benchmark-trainonly-v1/c2/tvae/tvae-c2-20260504_174047/models_300epochs/tvae_300epochs.pt" +epochs = int(os.environ.get("TVAE_EPOCHS", 300)) +batch_size = int(os.environ.get("TVAE_BATCH_SIZE", "500")) +embedding_dim = int(os.environ.get("TVAE_EMBEDDING_DIM", "128")) +def _parse_dims(name, default): + raw = (os.environ.get(name) or "").strip() + if not raw: + return default + return tuple(int(x.strip()) for x in raw.split(",") if x.strip()) +compress_dims = _parse_dims("TVAE_COMPRESS_DIMS", (128, 128)) +decompress_dims = _parse_dims("TVAE_DECOMPRESS_DIMS", (128, 128)) + +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}, batch_size={batch_size}, embedding_dim={embedding_dim}, compress_dims={compress_dims}, decompress_dims={decompress_dims}") +model = TVAE(epochs=epochs, batch_size=batch_size, embedding_dim=embedding_dim, compress_dims=compress_dims, decompress_dims=decompress_dims) +model.fit(data, discrete_columns) +model.save(save_path) +print(f"[TVAE] Model saved -> {save_path}") diff --git a/hyperparameter/c2/tvae/tvae-c2-20260504_174047/gen_20260504_174104.log b/hyperparameter/c2/tvae/tvae-c2-20260504_174047/gen_20260504_174104.log new file mode 100644 index 0000000000000000000000000000000000000000..03b14e21e7e199bc2f26331ac5842f0dc60facd4 --- /dev/null +++ b/hyperparameter/c2/tvae/tvae-c2-20260504_174047/gen_20260504_174104.log @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:084af1bcbd34d4f755a09dd9ffbc4cce57069fbb7bbb8c8eff2ae22b9d3e7a7a +size 404 diff --git a/hyperparameter/c2/tvae/tvae-c2-20260504_174047/input_snapshot.json b/hyperparameter/c2/tvae/tvae-c2-20260504_174047/input_snapshot.json new file mode 100644 index 0000000000000000000000000000000000000000..9e28a5421f2176e174a0659e66a40054269fb2ac --- /dev/null +++ b/hyperparameter/c2/tvae/tvae-c2-20260504_174047/input_snapshot.json @@ -0,0 +1,36 @@ +{ + "dataset_id": "c2", + "model": "tvae", + "inputs": { + "train_csv": { + "path": "/data/jialinzhang/SynthesizePipeline-server/DatasetNew/c2/c2-train.csv", + "exists": true, + "size": 42948, + "sha256": "17bc560fa96bd00fb3b526e1e65bc91210b701d0d0a4e8bb9b4c5196cab56def" + }, + "val_csv": { + "path": "/data/jialinzhang/SynthesizePipeline-server/DatasetNew/c2/c2-val.csv", + "exists": true, + "size": 5349, + "sha256": "61e565eca62e65a7dccd9d51039a3170413379e10fc494e25870e7c4294863c9" + }, + "test_csv": { + "path": "/data/jialinzhang/SynthesizePipeline-server/DatasetNew/c2/c2-test.csv", + "exists": true, + "size": 5448, + "sha256": "cbcbb062a1faf5fa44b66c80532baa229e05b94fc42137269761e6c6d84af20a" + }, + "profile_json": { + "path": "/data/jialinzhang/SynthesizePipeline-server/DatasetNew/artifacts/data_core/tabular/c2/c2-dataset_profile.json", + "exists": true, + "size": 3240, + "sha256": "526b7163b2076c93c0bf4638438081ee8a6907065d5b608faa40d1a3dbc2a27b" + }, + "contract_json": { + "path": "/data/jialinzhang/SynthesizePipeline-server/DatasetNew/artifacts/data_core/tabular/c2/c2-dataset_contract_v1.json", + "exists": true, + "size": 3731, + "sha256": "fb595a876054c2ee9b4e10cfe83a5691588de1d25466cbb9d473c18ad3604009" + } + } +} \ No newline at end of file diff --git a/hyperparameter/c2/tvae/tvae-c2-20260504_174047/models_300epochs/train_20260504_174047.log b/hyperparameter/c2/tvae/tvae-c2-20260504_174047/models_300epochs/train_20260504_174047.log new file mode 100644 index 0000000000000000000000000000000000000000..dcae6ce961bfa13c10a2b5cf75c07f435593295b --- /dev/null +++ b/hyperparameter/c2/tvae/tvae-c2-20260504_174047/models_300epochs/train_20260504_174047.log @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:30a727c05f092232ce9b947d1ef769919085dd8c762c2eae3492cb27950a2802 +size 620 diff --git a/hyperparameter/c2/tvae/tvae-c2-20260504_174047/models_300epochs/tvae_300epochs.pt b/hyperparameter/c2/tvae/tvae-c2-20260504_174047/models_300epochs/tvae_300epochs.pt new file mode 100644 index 0000000000000000000000000000000000000000..037655d3c719ce686f316a15170097bcd4082671 --- /dev/null +++ b/hyperparameter/c2/tvae/tvae-c2-20260504_174047/models_300epochs/tvae_300epochs.pt @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:e86ebfc162121c60718157c90bdb1625acba8d2b170c086a6eaa4a3f9adc47eb +size 344812 diff --git a/hyperparameter/c2/tvae/tvae-c2-20260504_174047/public_gate/normalized_schema_snapshot.json b/hyperparameter/c2/tvae/tvae-c2-20260504_174047/public_gate/normalized_schema_snapshot.json new file mode 100644 index 0000000000000000000000000000000000000000..689b1d00d96508e44ba40e58dc4560e19afc2b3b --- /dev/null +++ b/hyperparameter/c2/tvae/tvae-c2-20260504_174047/public_gate/normalized_schema_snapshot.json @@ -0,0 +1,144 @@ +{ + "dataset_id": "c2", + "target_column": "class", + "task_type": "classification", + "columns": [ + { + "name": "buying", + "role": "feature", + "semantic_type": "categorical", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 4, + "unique_ratio": 0.002894, + "example_values": [ + "vhigh", + "med", + "high", + "low" + ] + } + }, + { + "name": "maint", + "role": "feature", + "semantic_type": "categorical", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 4, + "unique_ratio": 0.002894, + "example_values": [ + "vhigh", + "low", + "med", + "high" + ] + } + }, + { + "name": "doors", + "role": "feature", + "semantic_type": "categorical", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 4, + "unique_ratio": 0.002894, + "example_values": [ + "2", + "5more", + "3", + "4" + ] + } + }, + { + "name": "persons", + "role": "feature", + "semantic_type": "categorical", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 3, + "unique_ratio": 0.002171, + "example_values": [ + "2", + "4", + "more" + ] + } + }, + { + "name": "lug_boot", + "role": "feature", + "semantic_type": "categorical", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 3, + "unique_ratio": 0.002171, + "example_values": [ + "small", + "big", + "med" + ] + } + }, + { + "name": "safety", + "role": "feature", + "semantic_type": "categorical", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 3, + "unique_ratio": 0.002171, + "example_values": [ + "low", + "high", + "med" + ] + } + }, + { + "name": "class", + "role": "target", + "semantic_type": "categorical", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 4, + "unique_ratio": 0.002894, + "example_values": [ + "unacc", + "good", + "acc", + "vgood" + ] + } + } + ] +} \ No newline at end of file diff --git a/hyperparameter/c2/tvae/tvae-c2-20260504_174047/public_gate/public_gate_report.json b/hyperparameter/c2/tvae/tvae-c2-20260504_174047/public_gate/public_gate_report.json new file mode 100644 index 0000000000000000000000000000000000000000..2e4cdcb2a4e28e40d59b17a83e773f622b7636a5 --- /dev/null +++ b/hyperparameter/c2/tvae/tvae-c2-20260504_174047/public_gate/public_gate_report.json @@ -0,0 +1,37 @@ +{ + "dataset_id": "c2", + "status": "pass", + "checks": [ + { + "check_id": "PG001_csv_parse_ok", + "status": "pass" + }, + { + "check_id": "PG002_split_header_consistent", + "status": "pass" + }, + { + "check_id": "PG003_profile_header_match", + "status": "pass" + }, + { + "check_id": "PG004_missing_token_normalized", + "status": "pass" + }, + { + "check_id": "PG005_semantic_type_validated", + "status": "pass" + }, + { + "check_id": "PG006_target_defined_and_valid", + "status": "pass" + } + ], + "target_column": "class", + "task_type": "classification", + "input_splits": { + "train": "/data/jialinzhang/SynthesizePipeline-server/DatasetNew/c2/c2-train.csv", + "val": "/data/jialinzhang/SynthesizePipeline-server/DatasetNew/c2/c2-val.csv", + "test": "/data/jialinzhang/SynthesizePipeline-server/DatasetNew/c2/c2-test.csv" + } +} \ No newline at end of file diff --git a/hyperparameter/c2/tvae/tvae-c2-20260504_174047/public_gate/staged_input_manifest.json b/hyperparameter/c2/tvae/tvae-c2-20260504_174047/public_gate/staged_input_manifest.json new file mode 100644 index 0000000000000000000000000000000000000000..735b63a84685350d1026e3b103616fca33b64d1c --- /dev/null +++ b/hyperparameter/c2/tvae/tvae-c2-20260504_174047/public_gate/staged_input_manifest.json @@ -0,0 +1,149 @@ +{ + "dataset_id": "c2", + "target_column": "class", + "task_type": "classification", + "train_csv": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/c2/tvae/tvae-c2-20260504_174047/staged/public/train.csv", + "val_csv": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/c2/tvae/tvae-c2-20260504_174047/staged/public/val.csv", + "test_csv": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/c2/tvae/tvae-c2-20260504_174047/staged/public/test.csv", + "features_json": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/c2/tvae/tvae-c2-20260504_174047/staged/public/staged_features.json", + "public_gate_report": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/c2/tvae/tvae-c2-20260504_174047/public_gate/public_gate_report.json", + "column_schema": [ + { + "name": "buying", + "role": "feature", + "semantic_type": "categorical", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 4, + "unique_ratio": 0.002894, + "example_values": [ + "vhigh", + "med", + "high", + "low" + ] + } + }, + { + "name": "maint", + "role": "feature", + "semantic_type": "categorical", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 4, + "unique_ratio": 0.002894, + "example_values": [ + "vhigh", + "low", + "med", + "high" + ] + } + }, + { + "name": "doors", + "role": "feature", + "semantic_type": "categorical", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 4, + "unique_ratio": 0.002894, + "example_values": [ + "2", + "5more", + "3", + "4" + ] + } + }, + { + "name": "persons", + "role": "feature", + "semantic_type": "categorical", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 3, + "unique_ratio": 0.002171, + "example_values": [ + "2", + "4", + "more" + ] + } + }, + { + "name": "lug_boot", + "role": "feature", + "semantic_type": "categorical", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 3, + "unique_ratio": 0.002171, + "example_values": [ + "small", + "big", + "med" + ] + } + }, + { + "name": "safety", + "role": "feature", + "semantic_type": "categorical", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 3, + "unique_ratio": 0.002171, + "example_values": [ + "low", + "high", + "med" + ] + } + }, + { + "name": "class", + "role": "target", + "semantic_type": "categorical", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 4, + "unique_ratio": 0.002894, + "example_values": [ + "unacc", + "good", + "acc", + "vgood" + ] + } + } + ] +} \ No newline at end of file diff --git a/hyperparameter/c2/tvae/tvae-c2-20260504_174047/run_config.json b/hyperparameter/c2/tvae/tvae-c2-20260504_174047/run_config.json new file mode 100644 index 0000000000000000000000000000000000000000..eb699b6178b4fec97d70cffefc82f29ebab21fa4 --- /dev/null +++ b/hyperparameter/c2/tvae/tvae-c2-20260504_174047/run_config.json @@ -0,0 +1,45 @@ +{ + "schema_version": 1, + "recorded_at": "2026-05-04T17:40:47", + "dataset_id": "c2", + "model": "tvae", + "work_dir": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/c2/tvae/tvae-c2-20260504_174047", + "dataset_source_requested": "new", + "dataset_source_resolved": "new", + "cli_args": { + "model": "tvae", + "dataset": "c2", + "dataset_source": "new", + "train": true, + "generate": true, + "num_rows": 0, + "epochs": null, + "output_dir": null, + "model_dir": null, + "work_dir": null, + "resume": false, + "no_stats": false + }, + "resolved": { + "num_rows": 1382, + "model_path": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/c2/tvae/tvae-c2-20260504_174047/models_300epochs/tvae_300epochs.pt", + "output_csv": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/c2/tvae/tvae-c2-20260504_174047/tvae-c2-1382-20260504_174104.csv" + }, + "input_artifacts": { + "public_gate_report": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/c2/tvae/tvae-c2-20260504_174047/public_gate/public_gate_report.json", + "public_manifest": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/c2/tvae/tvae-c2-20260504_174047/public_gate/staged_input_manifest.json", + "model_manifest": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/c2/tvae/tvae-c2-20260504_174047/staged/tvae/model_input_manifest.json", + "train_csv": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/c2/tvae/tvae-c2-20260504_174047/staged/public/train.csv", + "features_json": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/c2/tvae/tvae-c2-20260504_174047/staged/public/staged_features.json", + "target_column": "class", + "task_type": "classification" + }, + "env_overrides": { + "BENCHMARK_TVAE_GPUS": "device=3", + "TVAE_BATCH_SIZE": "256", + "TVAE_COMPRESS_DIMS": "128,128", + "TVAE_DECOMPRESS_DIMS": "128,128", + "TVAE_EMBEDDING_DIM": "64", + "TVAE_EPOCHS": "200" + } +} \ No newline at end of file diff --git a/hyperparameter/c2/tvae/tvae-c2-20260504_174047/runtime_result.json b/hyperparameter/c2/tvae/tvae-c2-20260504_174047/runtime_result.json new file mode 100644 index 0000000000000000000000000000000000000000..a409396bf2280e0bf0083aa37a0cbacc3c2a0c17 --- /dev/null +++ b/hyperparameter/c2/tvae/tvae-c2-20260504_174047/runtime_result.json @@ -0,0 +1,27 @@ +{ + "dataset_id": "c2", + "model": "tvae", + "run_id": "tvae-c2-20260504_174047", + "public_gate_status": "pass", + "adapter_ready_status": "pass", + "train_status": "success", + "generate_status": "success", + "reason_code": null, + "reason_detail": null, + "artifacts": { + "synthetic_csv": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/c2/tvae/tvae-c2-20260504_174047/tvae-c2-1382-20260504_174104.csv", + "model_path": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/c2/tvae/tvae-c2-20260504_174047/models_300epochs/tvae_300epochs.pt" + }, + "timings": { + "train": { + "started_at": "2026-05-04T17:40:47", + "ended_at": "2026-05-04T17:41:04", + "duration_sec": 16.508 + }, + "generate": { + "started_at": "2026-05-04T17:41:04", + "ended_at": "2026-05-04T17:41:09", + "duration_sec": 5.213 + } + } +} \ No newline at end of file diff --git a/hyperparameter/c2/tvae/tvae-c2-20260504_174047/staged/public/staged_features.json b/hyperparameter/c2/tvae/tvae-c2-20260504_174047/staged/public/staged_features.json new file mode 100644 index 0000000000000000000000000000000000000000..61783861dd5de501592f76acb0469cf3f3b2622a --- /dev/null +++ b/hyperparameter/c2/tvae/tvae-c2-20260504_174047/staged/public/staged_features.json @@ -0,0 +1,37 @@ +[ + { + "feature_name": "buying", + "data_type": "categorical", + "is_target": false + }, + { + "feature_name": "maint", + "data_type": "categorical", + "is_target": false + }, + { + "feature_name": "doors", + "data_type": "categorical", + "is_target": false + }, + { + "feature_name": "persons", + "data_type": "categorical", + "is_target": false + }, + { + "feature_name": "lug_boot", + "data_type": "categorical", + "is_target": false + }, + { + "feature_name": "safety", + "data_type": "categorical", + "is_target": false + }, + { + "feature_name": "class", + "data_type": "categorical", + "is_target": true + } +] \ No newline at end of file diff --git a/hyperparameter/c2/tvae/tvae-c2-20260504_174047/staged/public/test.csv b/hyperparameter/c2/tvae/tvae-c2-20260504_174047/staged/public/test.csv new file mode 100644 index 0000000000000000000000000000000000000000..392a0d7189a34d8f13ecf20a99d64b03230d517c --- /dev/null +++ b/hyperparameter/c2/tvae/tvae-c2-20260504_174047/staged/public/test.csv @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:b48114a7d0bc5bd9a07920f903c8d4aba8bf98bf2a66a050da03588b0245ca73 +size 5273 diff --git a/hyperparameter/c2/tvae/tvae-c2-20260504_174047/staged/public/train.csv b/hyperparameter/c2/tvae/tvae-c2-20260504_174047/staged/public/train.csv new file mode 100644 index 0000000000000000000000000000000000000000..da4f4d55134eebc0e51157d0d467536371db1484 --- /dev/null +++ b/hyperparameter/c2/tvae/tvae-c2-20260504_174047/staged/public/train.csv @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:4aed00c2c2b3f88a55a7ebff31b2e1b5e0e32fb0a7267e0b9d2779cd23e434dd +size 41565 diff --git a/hyperparameter/c2/tvae/tvae-c2-20260504_174047/staged/public/val.csv b/hyperparameter/c2/tvae/tvae-c2-20260504_174047/staged/public/val.csv new file mode 100644 index 0000000000000000000000000000000000000000..af8caf7ee42524188534a3daf32996dc491952d9 --- /dev/null +++ b/hyperparameter/c2/tvae/tvae-c2-20260504_174047/staged/public/val.csv @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:26e90c1170a57a14c05832ac88027722b1f3848f9662c7c09ef7c93dcba4cc01 +size 5176 diff --git a/hyperparameter/c2/tvae/tvae-c2-20260504_174047/staged/tvae/adapter_report.json b/hyperparameter/c2/tvae/tvae-c2-20260504_174047/staged/tvae/adapter_report.json new file mode 100644 index 0000000000000000000000000000000000000000..06f4c95c62f7be8ab33f2428fbbeb6007bd51879 --- /dev/null +++ b/hyperparameter/c2/tvae/tvae-c2-20260504_174047/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-Benchmark-trainonly-v1/c2/tvae/tvae-c2-20260504_174047/staged/tvae/model_input_manifest.json" +} \ No newline at end of file diff --git a/hyperparameter/c2/tvae/tvae-c2-20260504_174047/staged/tvae/adapter_transforms_applied.json b/hyperparameter/c2/tvae/tvae-c2-20260504_174047/staged/tvae/adapter_transforms_applied.json new file mode 100644 index 0000000000000000000000000000000000000000..0637a088a01e8ddab3bf3fa98dbe804cbde1a0dc --- /dev/null +++ b/hyperparameter/c2/tvae/tvae-c2-20260504_174047/staged/tvae/adapter_transforms_applied.json @@ -0,0 +1 @@ +[] \ No newline at end of file diff --git a/hyperparameter/c2/tvae/tvae-c2-20260504_174047/staged/tvae/model_input_manifest.json b/hyperparameter/c2/tvae/tvae-c2-20260504_174047/staged/tvae/model_input_manifest.json new file mode 100644 index 0000000000000000000000000000000000000000..ee377a50c2a2c26beaa41219a40cdf526ae72890 --- /dev/null +++ b/hyperparameter/c2/tvae/tvae-c2-20260504_174047/staged/tvae/model_input_manifest.json @@ -0,0 +1,151 @@ +{ + "dataset_id": "c2", + "model": "tvae", + "target_column": "class", + "task_type": "classification", + "column_schema": [ + { + "name": "buying", + "role": "feature", + "semantic_type": "categorical", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 4, + "unique_ratio": 0.002894, + "example_values": [ + "vhigh", + "med", + "high", + "low" + ] + } + }, + { + "name": "maint", + "role": "feature", + "semantic_type": "categorical", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 4, + "unique_ratio": 0.002894, + "example_values": [ + "vhigh", + "low", + "med", + "high" + ] + } + }, + { + "name": "doors", + "role": "feature", + "semantic_type": "categorical", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 4, + "unique_ratio": 0.002894, + "example_values": [ + "2", + "5more", + "3", + "4" + ] + } + }, + { + "name": "persons", + "role": "feature", + "semantic_type": "categorical", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 3, + "unique_ratio": 0.002171, + "example_values": [ + "2", + "4", + "more" + ] + } + }, + { + "name": "lug_boot", + "role": "feature", + "semantic_type": "categorical", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 3, + "unique_ratio": 0.002171, + "example_values": [ + "small", + "big", + "med" + ] + } + }, + { + "name": "safety", + "role": "feature", + "semantic_type": "categorical", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 3, + "unique_ratio": 0.002171, + "example_values": [ + "low", + "high", + "med" + ] + } + }, + { + "name": "class", + "role": "target", + "semantic_type": "categorical", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 4, + "unique_ratio": 0.002894, + "example_values": [ + "unacc", + "good", + "acc", + "vgood" + ] + } + } + ], + "public_manifest": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/c2/tvae/tvae-c2-20260504_174047/public_gate/staged_input_manifest.json", + "train_csv": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/c2/tvae/tvae-c2-20260504_174047/staged/public/train.csv", + "val_csv": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/c2/tvae/tvae-c2-20260504_174047/staged/public/val.csv", + "test_csv": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/c2/tvae/tvae-c2-20260504_174047/staged/public/test.csv", + "features_json": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/c2/tvae/tvae-c2-20260504_174047/staged/public/staged_features.json", + "public_gate_report": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/c2/tvae/tvae-c2-20260504_174047/public_gate/public_gate_report.json" +} \ No newline at end of file diff --git a/hyperparameter/c2/tvae/tvae-c2-20260504_174047/tvae-c2-1382-20260504_174104.csv b/hyperparameter/c2/tvae/tvae-c2-20260504_174047/tvae-c2-1382-20260504_174104.csv new file mode 100644 index 0000000000000000000000000000000000000000..22155eb14eab4a0343f73faaeff5b279cb5b8e30 --- /dev/null +++ b/hyperparameter/c2/tvae/tvae-c2-20260504_174047/tvae-c2-1382-20260504_174104.csv @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:7f3d50a2af8fc7f73f7995213dac76d9a43b9b386a2008e9b0c6dc02b8446f65 +size 41450 diff --git a/hyperparameter/c2/tvae/tvae-c2-20260504_174047/tvae_metadata.json b/hyperparameter/c2/tvae/tvae-c2-20260504_174047/tvae_metadata.json new file mode 100644 index 0000000000000000000000000000000000000000..183d627ebc98e89233655ec98c9dcbc528c4c328 --- /dev/null +++ b/hyperparameter/c2/tvae/tvae-c2-20260504_174047/tvae_metadata.json @@ -0,0 +1,32 @@ +{ + "columns": [ + { + "name": "buying", + "type": "categorical" + }, + { + "name": "maint", + "type": "categorical" + }, + { + "name": "doors", + "type": "categorical" + }, + { + "name": "persons", + "type": "categorical" + }, + { + "name": "lug_boot", + "type": "categorical" + }, + { + "name": "safety", + "type": "categorical" + }, + { + "name": "class", + "type": "categorical" + } + ] +} \ No newline at end of file diff --git a/hyperparameter/c2/tvae/tvae-c2-20260504_174121/_tvae_generate.py b/hyperparameter/c2/tvae/tvae-c2-20260504_174121/_tvae_generate.py new file mode 100644 index 0000000000000000000000000000000000000000..ec162da85d8047a163fdaf4dcb2a5ad436a24fed --- /dev/null +++ b/hyperparameter/c2/tvae/tvae-c2-20260504_174121/_tvae_generate.py @@ -0,0 +1,23 @@ +import os, sys +sys.path.insert(0, "/work") +from src.SpecificModels.ctgan_joblib_parallel_cap import apply_parallel_cap_from_env +apply_parallel_cap_from_env() +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 +os.environ.setdefault("LOKY_MAX_CPU_COUNT", "8") +os.environ.setdefault("OPENBLAS_NUM_THREADS", "8") +os.environ.setdefault("MKL_NUM_THREADS", "8") +model = TVAE.load("/work/output-Benchmark-trainonly-v1/c2/tvae/tvae-c2-20260504_174121/models_300epochs/tvae_300epochs.pt") +total = 1382 +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-Benchmark-trainonly-v1/c2/tvae/tvae-c2-20260504_174121/tvae-c2-1382-20260504_174137.csv", index=False) +print(f"[TVAE] Generated {total} rows (chunks={len(parts)}) -> /work/output-Benchmark-trainonly-v1/c2/tvae/tvae-c2-20260504_174121/tvae-c2-1382-20260504_174137.csv") diff --git a/hyperparameter/c2/tvae/tvae-c2-20260504_174121/_tvae_train.py b/hyperparameter/c2/tvae/tvae-c2-20260504_174121/_tvae_train.py new file mode 100644 index 0000000000000000000000000000000000000000..68cb971e55e8481a522d1968d1b464386b46ef56 --- /dev/null +++ b/hyperparameter/c2/tvae/tvae-c2-20260504_174121/_tvae_train.py @@ -0,0 +1,39 @@ +import json, os, sys +sys.path.insert(0, "/work") +from src.SpecificModels.ctgan_joblib_parallel_cap import apply_parallel_cap_from_env +apply_parallel_cap_from_env() +import pandas as pd +from ctgan.data import read_csv +from ctgan.synthesizers.tvae import TVAE + +# Keep transform stage parallelism bounded for stability on shared host. +os.environ.setdefault("LOKY_MAX_CPU_COUNT", "8") +os.environ.setdefault("OPENBLAS_NUM_THREADS", "8") +os.environ.setdefault("MKL_NUM_THREADS", "8") +_nj = (os.environ.get("TVAE_CTGAN_JOBTRANS_N_JOBS") or "").strip() +if _nj: + print("[TVAE] joblib Parallel cap ON, TVAE_CTGAN_JOBTRANS_N_JOBS=" + _nj) +else: + print("[TVAE] joblib Parallel cap OFF (unset TVAE_CTGAN_JOBTRANS_N_JOBS)") +print("[TVAE] LOKY_MAX_CPU_COUNT=" + str(os.environ.get("LOKY_MAX_CPU_COUNT", ""))) + +csv_path = "/work/output-Benchmark-trainonly-v1/c2/tvae/tvae-c2-20260504_174121/staged/public/train.csv" +meta_path = "/work/output-Benchmark-trainonly-v1/c2/tvae/tvae-c2-20260504_174121/tvae_metadata.json" +save_path = "/work/output-Benchmark-trainonly-v1/c2/tvae/tvae-c2-20260504_174121/models_300epochs/tvae_300epochs.pt" +epochs = int(os.environ.get("TVAE_EPOCHS", 300)) +batch_size = int(os.environ.get("TVAE_BATCH_SIZE", "500")) +embedding_dim = int(os.environ.get("TVAE_EMBEDDING_DIM", "128")) +def _parse_dims(name, default): + raw = (os.environ.get(name) or "").strip() + if not raw: + return default + return tuple(int(x.strip()) for x in raw.split(",") if x.strip()) +compress_dims = _parse_dims("TVAE_COMPRESS_DIMS", (128, 128)) +decompress_dims = _parse_dims("TVAE_DECOMPRESS_DIMS", (128, 128)) + +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}, batch_size={batch_size}, embedding_dim={embedding_dim}, compress_dims={compress_dims}, decompress_dims={decompress_dims}") +model = TVAE(epochs=epochs, batch_size=batch_size, embedding_dim=embedding_dim, compress_dims=compress_dims, decompress_dims=decompress_dims) +model.fit(data, discrete_columns) +model.save(save_path) +print(f"[TVAE] Model saved -> {save_path}") diff --git a/hyperparameter/c2/tvae/tvae-c2-20260504_174121/gen_20260504_174137.log b/hyperparameter/c2/tvae/tvae-c2-20260504_174121/gen_20260504_174137.log new file mode 100644 index 0000000000000000000000000000000000000000..88ffae8c24be5d2edfc2409b11cb081adb30f462 --- /dev/null +++ b/hyperparameter/c2/tvae/tvae-c2-20260504_174121/gen_20260504_174137.log @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:2e53e01455da4782d481bbd50839033f0111faaf92c485276e3cbd8c32d56679 +size 404 diff --git a/hyperparameter/c2/tvae/tvae-c2-20260504_174121/input_snapshot.json b/hyperparameter/c2/tvae/tvae-c2-20260504_174121/input_snapshot.json new file mode 100644 index 0000000000000000000000000000000000000000..9e28a5421f2176e174a0659e66a40054269fb2ac --- /dev/null +++ b/hyperparameter/c2/tvae/tvae-c2-20260504_174121/input_snapshot.json @@ -0,0 +1,36 @@ +{ + "dataset_id": "c2", + "model": "tvae", + "inputs": { + "train_csv": { + "path": "/data/jialinzhang/SynthesizePipeline-server/DatasetNew/c2/c2-train.csv", + "exists": true, + "size": 42948, + "sha256": "17bc560fa96bd00fb3b526e1e65bc91210b701d0d0a4e8bb9b4c5196cab56def" + }, + "val_csv": { + "path": "/data/jialinzhang/SynthesizePipeline-server/DatasetNew/c2/c2-val.csv", + "exists": true, + "size": 5349, + "sha256": "61e565eca62e65a7dccd9d51039a3170413379e10fc494e25870e7c4294863c9" + }, + "test_csv": { + "path": "/data/jialinzhang/SynthesizePipeline-server/DatasetNew/c2/c2-test.csv", + "exists": true, + "size": 5448, + "sha256": "cbcbb062a1faf5fa44b66c80532baa229e05b94fc42137269761e6c6d84af20a" + }, + "profile_json": { + "path": "/data/jialinzhang/SynthesizePipeline-server/DatasetNew/artifacts/data_core/tabular/c2/c2-dataset_profile.json", + "exists": true, + "size": 3240, + "sha256": "526b7163b2076c93c0bf4638438081ee8a6907065d5b608faa40d1a3dbc2a27b" + }, + "contract_json": { + "path": "/data/jialinzhang/SynthesizePipeline-server/DatasetNew/artifacts/data_core/tabular/c2/c2-dataset_contract_v1.json", + "exists": true, + "size": 3731, + "sha256": "fb595a876054c2ee9b4e10cfe83a5691588de1d25466cbb9d473c18ad3604009" + } + } +} \ No newline at end of file diff --git a/hyperparameter/c2/tvae/tvae-c2-20260504_174121/models_300epochs/train_20260504_174121.log b/hyperparameter/c2/tvae/tvae-c2-20260504_174121/models_300epochs/train_20260504_174121.log new file mode 100644 index 0000000000000000000000000000000000000000..f800cda209dfb903de878f3e788d08e76c1a6e08 --- /dev/null +++ b/hyperparameter/c2/tvae/tvae-c2-20260504_174121/models_300epochs/train_20260504_174121.log @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:b5cb02568a6f8495e6421e9264a30e3ba31dec47cfae9988a71fefea03963a2f +size 620 diff --git a/hyperparameter/c2/tvae/tvae-c2-20260504_174121/models_300epochs/tvae_300epochs.pt b/hyperparameter/c2/tvae/tvae-c2-20260504_174121/models_300epochs/tvae_300epochs.pt new file mode 100644 index 0000000000000000000000000000000000000000..e72dfc1e14a30f9339527324998970255cefe4d6 --- /dev/null +++ b/hyperparameter/c2/tvae/tvae-c2-20260504_174121/models_300epochs/tvae_300epochs.pt @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:de5a76a10a2d1af3ee2f46d67f3e917ab275e457bc912df0201c440f05949b7b +size 344812 diff --git a/hyperparameter/c2/tvae/tvae-c2-20260504_174121/public_gate/normalized_schema_snapshot.json b/hyperparameter/c2/tvae/tvae-c2-20260504_174121/public_gate/normalized_schema_snapshot.json new file mode 100644 index 0000000000000000000000000000000000000000..689b1d00d96508e44ba40e58dc4560e19afc2b3b --- /dev/null +++ b/hyperparameter/c2/tvae/tvae-c2-20260504_174121/public_gate/normalized_schema_snapshot.json @@ -0,0 +1,144 @@ +{ + "dataset_id": "c2", + "target_column": "class", + "task_type": "classification", + "columns": [ + { + "name": "buying", + "role": "feature", + "semantic_type": "categorical", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 4, + "unique_ratio": 0.002894, + "example_values": [ + "vhigh", + "med", + "high", + "low" + ] + } + }, + { + "name": "maint", + "role": "feature", + "semantic_type": "categorical", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 4, + "unique_ratio": 0.002894, + "example_values": [ + "vhigh", + "low", + "med", + "high" + ] + } + }, + { + "name": "doors", + "role": "feature", + "semantic_type": "categorical", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 4, + "unique_ratio": 0.002894, + "example_values": [ + "2", + "5more", + "3", + "4" + ] + } + }, + { + "name": "persons", + "role": "feature", + "semantic_type": "categorical", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 3, + "unique_ratio": 0.002171, + "example_values": [ + "2", + "4", + "more" + ] + } + }, + { + "name": "lug_boot", + "role": "feature", + "semantic_type": "categorical", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 3, + "unique_ratio": 0.002171, + "example_values": [ + "small", + "big", + "med" + ] + } + }, + { + "name": "safety", + "role": "feature", + "semantic_type": "categorical", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 3, + "unique_ratio": 0.002171, + "example_values": [ + "low", + "high", + "med" + ] + } + }, + { + "name": "class", + "role": "target", + "semantic_type": "categorical", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 4, + "unique_ratio": 0.002894, + "example_values": [ + "unacc", + "good", + "acc", + "vgood" + ] + } + } + ] +} \ No newline at end of file diff --git a/hyperparameter/c2/tvae/tvae-c2-20260504_174121/public_gate/public_gate_report.json b/hyperparameter/c2/tvae/tvae-c2-20260504_174121/public_gate/public_gate_report.json new file mode 100644 index 0000000000000000000000000000000000000000..2e4cdcb2a4e28e40d59b17a83e773f622b7636a5 --- /dev/null +++ b/hyperparameter/c2/tvae/tvae-c2-20260504_174121/public_gate/public_gate_report.json @@ -0,0 +1,37 @@ +{ + "dataset_id": "c2", + "status": "pass", + "checks": [ + { + "check_id": "PG001_csv_parse_ok", + "status": "pass" + }, + { + "check_id": "PG002_split_header_consistent", + "status": "pass" + }, + { + "check_id": "PG003_profile_header_match", + "status": "pass" + }, + { + "check_id": "PG004_missing_token_normalized", + "status": "pass" + }, + { + "check_id": "PG005_semantic_type_validated", + "status": "pass" + }, + { + "check_id": "PG006_target_defined_and_valid", + "status": "pass" + } + ], + "target_column": "class", + "task_type": "classification", + "input_splits": { + "train": "/data/jialinzhang/SynthesizePipeline-server/DatasetNew/c2/c2-train.csv", + "val": "/data/jialinzhang/SynthesizePipeline-server/DatasetNew/c2/c2-val.csv", + "test": "/data/jialinzhang/SynthesizePipeline-server/DatasetNew/c2/c2-test.csv" + } +} \ No newline at end of file diff --git a/hyperparameter/c2/tvae/tvae-c2-20260504_174121/public_gate/staged_input_manifest.json b/hyperparameter/c2/tvae/tvae-c2-20260504_174121/public_gate/staged_input_manifest.json new file mode 100644 index 0000000000000000000000000000000000000000..cbdc8394986794990476966ddf1e40c05ed5e826 --- /dev/null +++ b/hyperparameter/c2/tvae/tvae-c2-20260504_174121/public_gate/staged_input_manifest.json @@ -0,0 +1,149 @@ +{ + "dataset_id": "c2", + "target_column": "class", + "task_type": "classification", + "train_csv": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/c2/tvae/tvae-c2-20260504_174121/staged/public/train.csv", + "val_csv": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/c2/tvae/tvae-c2-20260504_174121/staged/public/val.csv", + "test_csv": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/c2/tvae/tvae-c2-20260504_174121/staged/public/test.csv", + "features_json": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/c2/tvae/tvae-c2-20260504_174121/staged/public/staged_features.json", + "public_gate_report": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/c2/tvae/tvae-c2-20260504_174121/public_gate/public_gate_report.json", + "column_schema": [ + { + "name": "buying", + "role": "feature", + "semantic_type": "categorical", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 4, + "unique_ratio": 0.002894, + "example_values": [ + "vhigh", + "med", + "high", + "low" + ] + } + }, + { + "name": "maint", + "role": "feature", + "semantic_type": "categorical", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 4, + "unique_ratio": 0.002894, + "example_values": [ + "vhigh", + "low", + "med", + "high" + ] + } + }, + { + "name": "doors", + "role": "feature", + "semantic_type": "categorical", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 4, + "unique_ratio": 0.002894, + "example_values": [ + "2", + "5more", + "3", + "4" + ] + } + }, + { + "name": "persons", + "role": "feature", + "semantic_type": "categorical", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 3, + "unique_ratio": 0.002171, + "example_values": [ + "2", + "4", + "more" + ] + } + }, + { + "name": "lug_boot", + "role": "feature", + "semantic_type": "categorical", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 3, + "unique_ratio": 0.002171, + "example_values": [ + "small", + "big", + "med" + ] + } + }, + { + "name": "safety", + "role": "feature", + "semantic_type": "categorical", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 3, + "unique_ratio": 0.002171, + "example_values": [ + "low", + "high", + "med" + ] + } + }, + { + "name": "class", + "role": "target", + "semantic_type": "categorical", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 4, + "unique_ratio": 0.002894, + "example_values": [ + "unacc", + "good", + "acc", + "vgood" + ] + } + } + ] +} \ No newline at end of file diff --git a/hyperparameter/c2/tvae/tvae-c2-20260504_174121/run_config.json b/hyperparameter/c2/tvae/tvae-c2-20260504_174121/run_config.json new file mode 100644 index 0000000000000000000000000000000000000000..e81894e726b3bc07bcc6ef203eb2627230f85dc0 --- /dev/null +++ b/hyperparameter/c2/tvae/tvae-c2-20260504_174121/run_config.json @@ -0,0 +1,45 @@ +{ + "schema_version": 1, + "recorded_at": "2026-05-04T17:41:21", + "dataset_id": "c2", + "model": "tvae", + "work_dir": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/c2/tvae/tvae-c2-20260504_174121", + "dataset_source_requested": "new", + "dataset_source_resolved": "new", + "cli_args": { + "model": "tvae", + "dataset": "c2", + "dataset_source": "new", + "train": true, + "generate": true, + "num_rows": 0, + "epochs": null, + "output_dir": null, + "model_dir": null, + "work_dir": null, + "resume": false, + "no_stats": false + }, + "resolved": { + "num_rows": 1382, + "model_path": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/c2/tvae/tvae-c2-20260504_174121/models_300epochs/tvae_300epochs.pt", + "output_csv": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/c2/tvae/tvae-c2-20260504_174121/tvae-c2-1382-20260504_174137.csv" + }, + "input_artifacts": { + "public_gate_report": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/c2/tvae/tvae-c2-20260504_174121/public_gate/public_gate_report.json", + "public_manifest": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/c2/tvae/tvae-c2-20260504_174121/public_gate/staged_input_manifest.json", + "model_manifest": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/c2/tvae/tvae-c2-20260504_174121/staged/tvae/model_input_manifest.json", + "train_csv": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/c2/tvae/tvae-c2-20260504_174121/staged/public/train.csv", + "features_json": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/c2/tvae/tvae-c2-20260504_174121/staged/public/staged_features.json", + "target_column": "class", + "task_type": "classification" + }, + "env_overrides": { + "BENCHMARK_TVAE_GPUS": "device=3", + "TVAE_BATCH_SIZE": "500", + "TVAE_COMPRESS_DIMS": "256,256", + "TVAE_DECOMPRESS_DIMS": "256,256", + "TVAE_EMBEDDING_DIM": "128", + "TVAE_EPOCHS": "300" + } +} \ No newline at end of file diff --git a/hyperparameter/c2/tvae/tvae-c2-20260504_174121/runtime_result.json b/hyperparameter/c2/tvae/tvae-c2-20260504_174121/runtime_result.json new file mode 100644 index 0000000000000000000000000000000000000000..ae08bccde264898fc9c9617de2a738e0dca29f69 --- /dev/null +++ b/hyperparameter/c2/tvae/tvae-c2-20260504_174121/runtime_result.json @@ -0,0 +1,27 @@ +{ + "dataset_id": "c2", + "model": "tvae", + "run_id": "tvae-c2-20260504_174121", + "public_gate_status": "pass", + "adapter_ready_status": "pass", + "train_status": "success", + "generate_status": "success", + "reason_code": null, + "reason_detail": null, + "artifacts": { + "synthetic_csv": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/c2/tvae/tvae-c2-20260504_174121/tvae-c2-1382-20260504_174137.csv", + "model_path": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/c2/tvae/tvae-c2-20260504_174121/models_300epochs/tvae_300epochs.pt" + }, + "timings": { + "train": { + "started_at": "2026-05-04T17:41:21", + "ended_at": "2026-05-04T17:41:37", + "duration_sec": 15.662 + }, + "generate": { + "started_at": "2026-05-04T17:41:37", + "ended_at": "2026-05-04T17:41:42", + "duration_sec": 5.043 + } + } +} \ No newline at end of file diff --git a/hyperparameter/c2/tvae/tvae-c2-20260504_174121/staged/public/staged_features.json b/hyperparameter/c2/tvae/tvae-c2-20260504_174121/staged/public/staged_features.json new file mode 100644 index 0000000000000000000000000000000000000000..61783861dd5de501592f76acb0469cf3f3b2622a --- /dev/null +++ b/hyperparameter/c2/tvae/tvae-c2-20260504_174121/staged/public/staged_features.json @@ -0,0 +1,37 @@ +[ + { + "feature_name": "buying", + "data_type": "categorical", + "is_target": false + }, + { + "feature_name": "maint", + "data_type": "categorical", + "is_target": false + }, + { + "feature_name": "doors", + "data_type": "categorical", + "is_target": false + }, + { + "feature_name": "persons", + "data_type": "categorical", + "is_target": false + }, + { + "feature_name": "lug_boot", + "data_type": "categorical", + "is_target": false + }, + { + "feature_name": "safety", + "data_type": "categorical", + "is_target": false + }, + { + "feature_name": "class", + "data_type": "categorical", + "is_target": true + } +] \ No newline at end of file diff --git a/hyperparameter/c2/tvae/tvae-c2-20260504_174121/staged/public/test.csv b/hyperparameter/c2/tvae/tvae-c2-20260504_174121/staged/public/test.csv new file mode 100644 index 0000000000000000000000000000000000000000..392a0d7189a34d8f13ecf20a99d64b03230d517c --- /dev/null +++ b/hyperparameter/c2/tvae/tvae-c2-20260504_174121/staged/public/test.csv @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:b48114a7d0bc5bd9a07920f903c8d4aba8bf98bf2a66a050da03588b0245ca73 +size 5273 diff --git a/hyperparameter/c2/tvae/tvae-c2-20260504_174121/staged/public/train.csv b/hyperparameter/c2/tvae/tvae-c2-20260504_174121/staged/public/train.csv new file mode 100644 index 0000000000000000000000000000000000000000..da4f4d55134eebc0e51157d0d467536371db1484 --- /dev/null +++ b/hyperparameter/c2/tvae/tvae-c2-20260504_174121/staged/public/train.csv @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:4aed00c2c2b3f88a55a7ebff31b2e1b5e0e32fb0a7267e0b9d2779cd23e434dd +size 41565 diff --git a/hyperparameter/c2/tvae/tvae-c2-20260504_174121/staged/public/val.csv b/hyperparameter/c2/tvae/tvae-c2-20260504_174121/staged/public/val.csv new file mode 100644 index 0000000000000000000000000000000000000000..af8caf7ee42524188534a3daf32996dc491952d9 --- /dev/null +++ b/hyperparameter/c2/tvae/tvae-c2-20260504_174121/staged/public/val.csv @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:26e90c1170a57a14c05832ac88027722b1f3848f9662c7c09ef7c93dcba4cc01 +size 5176 diff --git a/hyperparameter/c2/tvae/tvae-c2-20260504_174121/staged/tvae/adapter_report.json b/hyperparameter/c2/tvae/tvae-c2-20260504_174121/staged/tvae/adapter_report.json new file mode 100644 index 0000000000000000000000000000000000000000..8e5f88dfc2ef54136ba069841270a9bc1107c991 --- /dev/null +++ b/hyperparameter/c2/tvae/tvae-c2-20260504_174121/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-Benchmark-trainonly-v1/c2/tvae/tvae-c2-20260504_174121/staged/tvae/model_input_manifest.json" +} \ No newline at end of file diff --git a/hyperparameter/c2/tvae/tvae-c2-20260504_174121/staged/tvae/adapter_transforms_applied.json b/hyperparameter/c2/tvae/tvae-c2-20260504_174121/staged/tvae/adapter_transforms_applied.json new file mode 100644 index 0000000000000000000000000000000000000000..0637a088a01e8ddab3bf3fa98dbe804cbde1a0dc --- /dev/null +++ b/hyperparameter/c2/tvae/tvae-c2-20260504_174121/staged/tvae/adapter_transforms_applied.json @@ -0,0 +1 @@ +[] \ No newline at end of file diff --git a/hyperparameter/c2/tvae/tvae-c2-20260504_174121/staged/tvae/model_input_manifest.json b/hyperparameter/c2/tvae/tvae-c2-20260504_174121/staged/tvae/model_input_manifest.json new file mode 100644 index 0000000000000000000000000000000000000000..4025a7ab4cdca8637f0c0f73606fe22e2f7a7433 --- /dev/null +++ b/hyperparameter/c2/tvae/tvae-c2-20260504_174121/staged/tvae/model_input_manifest.json @@ -0,0 +1,151 @@ +{ + "dataset_id": "c2", + "model": "tvae", + "target_column": "class", + "task_type": "classification", + "column_schema": [ + { + "name": "buying", + "role": "feature", + "semantic_type": "categorical", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 4, + "unique_ratio": 0.002894, + "example_values": [ + "vhigh", + "med", + "high", + "low" + ] + } + }, + { + "name": "maint", + "role": "feature", + "semantic_type": "categorical", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 4, + "unique_ratio": 0.002894, + "example_values": [ + "vhigh", + "low", + "med", + "high" + ] + } + }, + { + "name": "doors", + "role": "feature", + "semantic_type": "categorical", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 4, + "unique_ratio": 0.002894, + "example_values": [ + "2", + "5more", + "3", + "4" + ] + } + }, + { + "name": "persons", + "role": "feature", + "semantic_type": "categorical", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 3, + "unique_ratio": 0.002171, + "example_values": [ + "2", + "4", + "more" + ] + } + }, + { + "name": "lug_boot", + "role": "feature", + "semantic_type": "categorical", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 3, + "unique_ratio": 0.002171, + "example_values": [ + "small", + "big", + "med" + ] + } + }, + { + "name": "safety", + "role": "feature", + "semantic_type": "categorical", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 3, + "unique_ratio": 0.002171, + "example_values": [ + "low", + "high", + "med" + ] + } + }, + { + "name": "class", + "role": "target", + "semantic_type": "categorical", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 4, + "unique_ratio": 0.002894, + "example_values": [ + "unacc", + "good", + "acc", + "vgood" + ] + } + } + ], + "public_manifest": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/c2/tvae/tvae-c2-20260504_174121/public_gate/staged_input_manifest.json", + "train_csv": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/c2/tvae/tvae-c2-20260504_174121/staged/public/train.csv", + "val_csv": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/c2/tvae/tvae-c2-20260504_174121/staged/public/val.csv", + "test_csv": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/c2/tvae/tvae-c2-20260504_174121/staged/public/test.csv", + "features_json": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/c2/tvae/tvae-c2-20260504_174121/staged/public/staged_features.json", + "public_gate_report": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/c2/tvae/tvae-c2-20260504_174121/public_gate/public_gate_report.json" +} \ No newline at end of file diff --git a/hyperparameter/c2/tvae/tvae-c2-20260504_174121/tvae-c2-1382-20260504_174137.csv b/hyperparameter/c2/tvae/tvae-c2-20260504_174121/tvae-c2-1382-20260504_174137.csv new file mode 100644 index 0000000000000000000000000000000000000000..0737ba5dfe37b5d7ec7bc0bc5c69c9ede6a47216 --- /dev/null +++ b/hyperparameter/c2/tvae/tvae-c2-20260504_174121/tvae-c2-1382-20260504_174137.csv @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:1b2dc7b4aac308837c0d16c501f82943b483cde999544304161ff98921ed6e4c +size 41505 diff --git a/hyperparameter/c2/tvae/tvae-c2-20260504_174121/tvae_metadata.json b/hyperparameter/c2/tvae/tvae-c2-20260504_174121/tvae_metadata.json new file mode 100644 index 0000000000000000000000000000000000000000..183d627ebc98e89233655ec98c9dcbc528c4c328 --- /dev/null +++ b/hyperparameter/c2/tvae/tvae-c2-20260504_174121/tvae_metadata.json @@ -0,0 +1,32 @@ +{ + "columns": [ + { + "name": "buying", + "type": "categorical" + }, + { + "name": "maint", + "type": "categorical" + }, + { + "name": "doors", + "type": "categorical" + }, + { + "name": "persons", + "type": "categorical" + }, + { + "name": "lug_boot", + "type": "categorical" + }, + { + "name": "safety", + "type": "categorical" + }, + { + "name": "class", + "type": "categorical" + } + ] +} \ No newline at end of file diff --git a/hyperparameter/c2/tvae/tvae-c2-20260504_174154/_tvae_generate.py b/hyperparameter/c2/tvae/tvae-c2-20260504_174154/_tvae_generate.py new file mode 100644 index 0000000000000000000000000000000000000000..d80d25210e0289b817b08633cb84481dad9fa72c --- /dev/null +++ b/hyperparameter/c2/tvae/tvae-c2-20260504_174154/_tvae_generate.py @@ -0,0 +1,23 @@ +import os, sys +sys.path.insert(0, "/work") +from src.SpecificModels.ctgan_joblib_parallel_cap import apply_parallel_cap_from_env +apply_parallel_cap_from_env() +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 +os.environ.setdefault("LOKY_MAX_CPU_COUNT", "8") +os.environ.setdefault("OPENBLAS_NUM_THREADS", "8") +os.environ.setdefault("MKL_NUM_THREADS", "8") +model = TVAE.load("/work/output-Benchmark-trainonly-v1/c2/tvae/tvae-c2-20260504_174154/models_300epochs/tvae_300epochs.pt") +total = 1382 +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-Benchmark-trainonly-v1/c2/tvae/tvae-c2-20260504_174154/tvae-c2-1382-20260504_174210.csv", index=False) +print(f"[TVAE] Generated {total} rows (chunks={len(parts)}) -> /work/output-Benchmark-trainonly-v1/c2/tvae/tvae-c2-20260504_174154/tvae-c2-1382-20260504_174210.csv") diff --git a/hyperparameter/c2/tvae/tvae-c2-20260504_174154/_tvae_train.py b/hyperparameter/c2/tvae/tvae-c2-20260504_174154/_tvae_train.py new file mode 100644 index 0000000000000000000000000000000000000000..26e132045e4721046a67aaab210cdd192059dbd4 --- /dev/null +++ b/hyperparameter/c2/tvae/tvae-c2-20260504_174154/_tvae_train.py @@ -0,0 +1,39 @@ +import json, os, sys +sys.path.insert(0, "/work") +from src.SpecificModels.ctgan_joblib_parallel_cap import apply_parallel_cap_from_env +apply_parallel_cap_from_env() +import pandas as pd +from ctgan.data import read_csv +from ctgan.synthesizers.tvae import TVAE + +# Keep transform stage parallelism bounded for stability on shared host. +os.environ.setdefault("LOKY_MAX_CPU_COUNT", "8") +os.environ.setdefault("OPENBLAS_NUM_THREADS", "8") +os.environ.setdefault("MKL_NUM_THREADS", "8") +_nj = (os.environ.get("TVAE_CTGAN_JOBTRANS_N_JOBS") or "").strip() +if _nj: + print("[TVAE] joblib Parallel cap ON, TVAE_CTGAN_JOBTRANS_N_JOBS=" + _nj) +else: + print("[TVAE] joblib Parallel cap OFF (unset TVAE_CTGAN_JOBTRANS_N_JOBS)") +print("[TVAE] LOKY_MAX_CPU_COUNT=" + str(os.environ.get("LOKY_MAX_CPU_COUNT", ""))) + +csv_path = "/work/output-Benchmark-trainonly-v1/c2/tvae/tvae-c2-20260504_174154/staged/public/train.csv" +meta_path = "/work/output-Benchmark-trainonly-v1/c2/tvae/tvae-c2-20260504_174154/tvae_metadata.json" +save_path = "/work/output-Benchmark-trainonly-v1/c2/tvae/tvae-c2-20260504_174154/models_300epochs/tvae_300epochs.pt" +epochs = int(os.environ.get("TVAE_EPOCHS", 300)) +batch_size = int(os.environ.get("TVAE_BATCH_SIZE", "500")) +embedding_dim = int(os.environ.get("TVAE_EMBEDDING_DIM", "128")) +def _parse_dims(name, default): + raw = (os.environ.get(name) or "").strip() + if not raw: + return default + return tuple(int(x.strip()) for x in raw.split(",") if x.strip()) +compress_dims = _parse_dims("TVAE_COMPRESS_DIMS", (128, 128)) +decompress_dims = _parse_dims("TVAE_DECOMPRESS_DIMS", (128, 128)) + +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}, batch_size={batch_size}, embedding_dim={embedding_dim}, compress_dims={compress_dims}, decompress_dims={decompress_dims}") +model = TVAE(epochs=epochs, batch_size=batch_size, embedding_dim=embedding_dim, compress_dims=compress_dims, decompress_dims=decompress_dims) +model.fit(data, discrete_columns) +model.save(save_path) +print(f"[TVAE] Model saved -> {save_path}") diff --git a/hyperparameter/c2/tvae/tvae-c2-20260504_174154/gen_20260504_174210.log b/hyperparameter/c2/tvae/tvae-c2-20260504_174154/gen_20260504_174210.log new file mode 100644 index 0000000000000000000000000000000000000000..63123e59ac40ced95634de8d57657fd11d935320 --- /dev/null +++ b/hyperparameter/c2/tvae/tvae-c2-20260504_174154/gen_20260504_174210.log @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:9295c44c01b1fd97e9c805d7a481d72fcd0e87d969e89140bc0d39af40dfc04a +size 404 diff --git a/hyperparameter/c2/tvae/tvae-c2-20260504_174154/input_snapshot.json b/hyperparameter/c2/tvae/tvae-c2-20260504_174154/input_snapshot.json new file mode 100644 index 0000000000000000000000000000000000000000..9e28a5421f2176e174a0659e66a40054269fb2ac --- /dev/null +++ b/hyperparameter/c2/tvae/tvae-c2-20260504_174154/input_snapshot.json @@ -0,0 +1,36 @@ +{ + "dataset_id": "c2", + "model": "tvae", + "inputs": { + "train_csv": { + "path": "/data/jialinzhang/SynthesizePipeline-server/DatasetNew/c2/c2-train.csv", + "exists": true, + "size": 42948, + "sha256": "17bc560fa96bd00fb3b526e1e65bc91210b701d0d0a4e8bb9b4c5196cab56def" + }, + "val_csv": { + "path": "/data/jialinzhang/SynthesizePipeline-server/DatasetNew/c2/c2-val.csv", + "exists": true, + "size": 5349, + "sha256": "61e565eca62e65a7dccd9d51039a3170413379e10fc494e25870e7c4294863c9" + }, + "test_csv": { + "path": "/data/jialinzhang/SynthesizePipeline-server/DatasetNew/c2/c2-test.csv", + "exists": true, + "size": 5448, + "sha256": "cbcbb062a1faf5fa44b66c80532baa229e05b94fc42137269761e6c6d84af20a" + }, + "profile_json": { + "path": "/data/jialinzhang/SynthesizePipeline-server/DatasetNew/artifacts/data_core/tabular/c2/c2-dataset_profile.json", + "exists": true, + "size": 3240, + "sha256": "526b7163b2076c93c0bf4638438081ee8a6907065d5b608faa40d1a3dbc2a27b" + }, + "contract_json": { + "path": "/data/jialinzhang/SynthesizePipeline-server/DatasetNew/artifacts/data_core/tabular/c2/c2-dataset_contract_v1.json", + "exists": true, + "size": 3731, + "sha256": "fb595a876054c2ee9b4e10cfe83a5691588de1d25466cbb9d473c18ad3604009" + } + } +} \ No newline at end of file diff --git a/hyperparameter/c2/tvae/tvae-c2-20260504_174154/models_300epochs/train_20260504_174154.log b/hyperparameter/c2/tvae/tvae-c2-20260504_174154/models_300epochs/train_20260504_174154.log new file mode 100644 index 0000000000000000000000000000000000000000..18eba14510752169d46511d24b9fa056d4d48a17 --- /dev/null +++ b/hyperparameter/c2/tvae/tvae-c2-20260504_174154/models_300epochs/train_20260504_174154.log @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:545125874fecb8ddd76af96a5ee5e06601127a0dd2e37ce07f49191222e99dc3 +size 620 diff --git a/hyperparameter/c2/tvae/tvae-c2-20260504_174154/models_300epochs/tvae_300epochs.pt b/hyperparameter/c2/tvae/tvae-c2-20260504_174154/models_300epochs/tvae_300epochs.pt new file mode 100644 index 0000000000000000000000000000000000000000..8a29d8a55e3370ac0603b39a5784954180c743de --- /dev/null +++ b/hyperparameter/c2/tvae/tvae-c2-20260504_174154/models_300epochs/tvae_300epochs.pt @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:c313f03bd4c66656f8c97200f3e68fa34fe32d3c2b0f3e6faccdd71d3f96f276 +size 344876 diff --git a/hyperparameter/c2/tvae/tvae-c2-20260504_174154/public_gate/normalized_schema_snapshot.json b/hyperparameter/c2/tvae/tvae-c2-20260504_174154/public_gate/normalized_schema_snapshot.json new file mode 100644 index 0000000000000000000000000000000000000000..689b1d00d96508e44ba40e58dc4560e19afc2b3b --- /dev/null +++ b/hyperparameter/c2/tvae/tvae-c2-20260504_174154/public_gate/normalized_schema_snapshot.json @@ -0,0 +1,144 @@ +{ + "dataset_id": "c2", + "target_column": "class", + "task_type": "classification", + "columns": [ + { + "name": "buying", + "role": "feature", + "semantic_type": "categorical", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 4, + "unique_ratio": 0.002894, + "example_values": [ + "vhigh", + "med", + "high", + "low" + ] + } + }, + { + "name": "maint", + "role": "feature", + "semantic_type": "categorical", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 4, + "unique_ratio": 0.002894, + "example_values": [ + "vhigh", + "low", + "med", + "high" + ] + } + }, + { + "name": "doors", + "role": "feature", + "semantic_type": "categorical", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 4, + "unique_ratio": 0.002894, + "example_values": [ + "2", + "5more", + "3", + "4" + ] + } + }, + { + "name": "persons", + "role": "feature", + "semantic_type": "categorical", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 3, + "unique_ratio": 0.002171, + "example_values": [ + "2", + "4", + "more" + ] + } + }, + { + "name": "lug_boot", + "role": "feature", + "semantic_type": "categorical", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 3, + "unique_ratio": 0.002171, + "example_values": [ + "small", + "big", + "med" + ] + } + }, + { + "name": "safety", + "role": "feature", + "semantic_type": "categorical", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 3, + "unique_ratio": 0.002171, + "example_values": [ + "low", + "high", + "med" + ] + } + }, + { + "name": "class", + "role": "target", + "semantic_type": "categorical", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 4, + "unique_ratio": 0.002894, + "example_values": [ + "unacc", + "good", + "acc", + "vgood" + ] + } + } + ] +} \ No newline at end of file diff --git a/hyperparameter/c2/tvae/tvae-c2-20260504_174154/public_gate/public_gate_report.json b/hyperparameter/c2/tvae/tvae-c2-20260504_174154/public_gate/public_gate_report.json new file mode 100644 index 0000000000000000000000000000000000000000..2e4cdcb2a4e28e40d59b17a83e773f622b7636a5 --- /dev/null +++ b/hyperparameter/c2/tvae/tvae-c2-20260504_174154/public_gate/public_gate_report.json @@ -0,0 +1,37 @@ +{ + "dataset_id": "c2", + "status": "pass", + "checks": [ + { + "check_id": "PG001_csv_parse_ok", + "status": "pass" + }, + { + "check_id": "PG002_split_header_consistent", + "status": "pass" + }, + { + "check_id": "PG003_profile_header_match", + "status": "pass" + }, + { + "check_id": "PG004_missing_token_normalized", + "status": "pass" + }, + { + "check_id": "PG005_semantic_type_validated", + "status": "pass" + }, + { + "check_id": "PG006_target_defined_and_valid", + "status": "pass" + } + ], + "target_column": "class", + "task_type": "classification", + "input_splits": { + "train": "/data/jialinzhang/SynthesizePipeline-server/DatasetNew/c2/c2-train.csv", + "val": "/data/jialinzhang/SynthesizePipeline-server/DatasetNew/c2/c2-val.csv", + "test": "/data/jialinzhang/SynthesizePipeline-server/DatasetNew/c2/c2-test.csv" + } +} \ No newline at end of file diff --git a/hyperparameter/c2/tvae/tvae-c2-20260504_174154/public_gate/staged_input_manifest.json b/hyperparameter/c2/tvae/tvae-c2-20260504_174154/public_gate/staged_input_manifest.json new file mode 100644 index 0000000000000000000000000000000000000000..3b36c44b28c91fc89b7acfc0f2b620ed715caaf6 --- /dev/null +++ b/hyperparameter/c2/tvae/tvae-c2-20260504_174154/public_gate/staged_input_manifest.json @@ -0,0 +1,149 @@ +{ + "dataset_id": "c2", + "target_column": "class", + "task_type": "classification", + "train_csv": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/c2/tvae/tvae-c2-20260504_174154/staged/public/train.csv", + "val_csv": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/c2/tvae/tvae-c2-20260504_174154/staged/public/val.csv", + "test_csv": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/c2/tvae/tvae-c2-20260504_174154/staged/public/test.csv", + "features_json": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/c2/tvae/tvae-c2-20260504_174154/staged/public/staged_features.json", + "public_gate_report": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/c2/tvae/tvae-c2-20260504_174154/public_gate/public_gate_report.json", + "column_schema": [ + { + "name": "buying", + "role": "feature", + "semantic_type": "categorical", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 4, + "unique_ratio": 0.002894, + "example_values": [ + "vhigh", + "med", + "high", + "low" + ] + } + }, + { + "name": "maint", + "role": "feature", + "semantic_type": "categorical", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 4, + "unique_ratio": 0.002894, + "example_values": [ + "vhigh", + "low", + "med", + "high" + ] + } + }, + { + "name": "doors", + "role": "feature", + "semantic_type": "categorical", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 4, + "unique_ratio": 0.002894, + "example_values": [ + "2", + "5more", + "3", + "4" + ] + } + }, + { + "name": "persons", + "role": "feature", + "semantic_type": "categorical", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 3, + "unique_ratio": 0.002171, + "example_values": [ + "2", + "4", + "more" + ] + } + }, + { + "name": "lug_boot", + "role": "feature", + "semantic_type": "categorical", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 3, + "unique_ratio": 0.002171, + "example_values": [ + "small", + "big", + "med" + ] + } + }, + { + "name": "safety", + "role": "feature", + "semantic_type": "categorical", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 3, + "unique_ratio": 0.002171, + "example_values": [ + "low", + "high", + "med" + ] + } + }, + { + "name": "class", + "role": "target", + "semantic_type": "categorical", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 4, + "unique_ratio": 0.002894, + "example_values": [ + "unacc", + "good", + "acc", + "vgood" + ] + } + } + ] +} \ No newline at end of file diff --git a/hyperparameter/c2/tvae/tvae-c2-20260504_174154/run_config.json b/hyperparameter/c2/tvae/tvae-c2-20260504_174154/run_config.json new file mode 100644 index 0000000000000000000000000000000000000000..d7c6834b0a8e47bb7e6f56b9fd086655f8441bce --- /dev/null +++ b/hyperparameter/c2/tvae/tvae-c2-20260504_174154/run_config.json @@ -0,0 +1,45 @@ +{ + "schema_version": 1, + "recorded_at": "2026-05-04T17:41:54", + "dataset_id": "c2", + "model": "tvae", + "work_dir": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/c2/tvae/tvae-c2-20260504_174154", + "dataset_source_requested": "new", + "dataset_source_resolved": "new", + "cli_args": { + "model": "tvae", + "dataset": "c2", + "dataset_source": "new", + "train": true, + "generate": true, + "num_rows": 0, + "epochs": null, + "output_dir": null, + "model_dir": null, + "work_dir": null, + "resume": false, + "no_stats": false + }, + "resolved": { + "num_rows": 1382, + "model_path": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/c2/tvae/tvae-c2-20260504_174154/models_300epochs/tvae_300epochs.pt", + "output_csv": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/c2/tvae/tvae-c2-20260504_174154/tvae-c2-1382-20260504_174210.csv" + }, + "input_artifacts": { + "public_gate_report": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/c2/tvae/tvae-c2-20260504_174154/public_gate/public_gate_report.json", + "public_manifest": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/c2/tvae/tvae-c2-20260504_174154/public_gate/staged_input_manifest.json", + "model_manifest": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/c2/tvae/tvae-c2-20260504_174154/staged/tvae/model_input_manifest.json", + "train_csv": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/c2/tvae/tvae-c2-20260504_174154/staged/public/train.csv", + "features_json": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/c2/tvae/tvae-c2-20260504_174154/staged/public/staged_features.json", + "target_column": "class", + "task_type": "classification" + }, + "env_overrides": { + "BENCHMARK_TVAE_GPUS": "device=3", + "TVAE_BATCH_SIZE": "256", + "TVAE_COMPRESS_DIMS": "256,256", + "TVAE_DECOMPRESS_DIMS": "256,256", + "TVAE_EMBEDDING_DIM": "128", + "TVAE_EPOCHS": "500" + } +} \ No newline at end of file diff --git a/hyperparameter/c2/tvae/tvae-c2-20260504_174154/runtime_result.json b/hyperparameter/c2/tvae/tvae-c2-20260504_174154/runtime_result.json new file mode 100644 index 0000000000000000000000000000000000000000..731b3fb75f31150c5c810369fca9d9fb0a47b65e --- /dev/null +++ b/hyperparameter/c2/tvae/tvae-c2-20260504_174154/runtime_result.json @@ -0,0 +1,27 @@ +{ + "dataset_id": "c2", + "model": "tvae", + "run_id": "tvae-c2-20260504_174154", + "public_gate_status": "pass", + "adapter_ready_status": "pass", + "train_status": "success", + "generate_status": "success", + "reason_code": null, + "reason_detail": null, + "artifacts": { + "synthetic_csv": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/c2/tvae/tvae-c2-20260504_174154/tvae-c2-1382-20260504_174210.csv", + "model_path": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/c2/tvae/tvae-c2-20260504_174154/models_300epochs/tvae_300epochs.pt" + }, + "timings": { + "train": { + "started_at": "2026-05-04T17:41:54", + "ended_at": "2026-05-04T17:42:10", + "duration_sec": 15.509 + }, + "generate": { + "started_at": "2026-05-04T17:42:10", + "ended_at": "2026-05-04T17:42:15", + "duration_sec": 5.341 + } + } +} \ No newline at end of file diff --git a/hyperparameter/c2/tvae/tvae-c2-20260504_174154/staged/public/staged_features.json b/hyperparameter/c2/tvae/tvae-c2-20260504_174154/staged/public/staged_features.json new file mode 100644 index 0000000000000000000000000000000000000000..61783861dd5de501592f76acb0469cf3f3b2622a --- /dev/null +++ b/hyperparameter/c2/tvae/tvae-c2-20260504_174154/staged/public/staged_features.json @@ -0,0 +1,37 @@ +[ + { + "feature_name": "buying", + "data_type": "categorical", + "is_target": false + }, + { + "feature_name": "maint", + "data_type": "categorical", + "is_target": false + }, + { + "feature_name": "doors", + "data_type": "categorical", + "is_target": false + }, + { + "feature_name": "persons", + "data_type": "categorical", + "is_target": false + }, + { + "feature_name": "lug_boot", + "data_type": "categorical", + "is_target": false + }, + { + "feature_name": "safety", + "data_type": "categorical", + "is_target": false + }, + { + "feature_name": "class", + "data_type": "categorical", + "is_target": true + } +] \ No newline at end of file diff --git a/hyperparameter/c2/tvae/tvae-c2-20260504_174154/staged/public/test.csv b/hyperparameter/c2/tvae/tvae-c2-20260504_174154/staged/public/test.csv new file mode 100644 index 0000000000000000000000000000000000000000..392a0d7189a34d8f13ecf20a99d64b03230d517c --- /dev/null +++ b/hyperparameter/c2/tvae/tvae-c2-20260504_174154/staged/public/test.csv @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:b48114a7d0bc5bd9a07920f903c8d4aba8bf98bf2a66a050da03588b0245ca73 +size 5273 diff --git a/hyperparameter/c2/tvae/tvae-c2-20260504_174154/staged/public/train.csv b/hyperparameter/c2/tvae/tvae-c2-20260504_174154/staged/public/train.csv new file mode 100644 index 0000000000000000000000000000000000000000..da4f4d55134eebc0e51157d0d467536371db1484 --- /dev/null +++ b/hyperparameter/c2/tvae/tvae-c2-20260504_174154/staged/public/train.csv @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:4aed00c2c2b3f88a55a7ebff31b2e1b5e0e32fb0a7267e0b9d2779cd23e434dd +size 41565 diff --git a/hyperparameter/c2/tvae/tvae-c2-20260504_174154/staged/public/val.csv b/hyperparameter/c2/tvae/tvae-c2-20260504_174154/staged/public/val.csv new file mode 100644 index 0000000000000000000000000000000000000000..af8caf7ee42524188534a3daf32996dc491952d9 --- /dev/null +++ b/hyperparameter/c2/tvae/tvae-c2-20260504_174154/staged/public/val.csv @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:26e90c1170a57a14c05832ac88027722b1f3848f9662c7c09ef7c93dcba4cc01 +size 5176 diff --git a/hyperparameter/c2/tvae/tvae-c2-20260504_174154/staged/tvae/adapter_report.json b/hyperparameter/c2/tvae/tvae-c2-20260504_174154/staged/tvae/adapter_report.json new file mode 100644 index 0000000000000000000000000000000000000000..189b83c6cb1392d0d91b7025744650bbf87dfb55 --- /dev/null +++ b/hyperparameter/c2/tvae/tvae-c2-20260504_174154/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-Benchmark-trainonly-v1/c2/tvae/tvae-c2-20260504_174154/staged/tvae/model_input_manifest.json" +} \ No newline at end of file diff --git a/hyperparameter/c2/tvae/tvae-c2-20260504_174154/staged/tvae/adapter_transforms_applied.json b/hyperparameter/c2/tvae/tvae-c2-20260504_174154/staged/tvae/adapter_transforms_applied.json new file mode 100644 index 0000000000000000000000000000000000000000..0637a088a01e8ddab3bf3fa98dbe804cbde1a0dc --- /dev/null +++ b/hyperparameter/c2/tvae/tvae-c2-20260504_174154/staged/tvae/adapter_transforms_applied.json @@ -0,0 +1 @@ +[] \ No newline at end of file diff --git a/hyperparameter/c2/tvae/tvae-c2-20260504_174154/staged/tvae/model_input_manifest.json b/hyperparameter/c2/tvae/tvae-c2-20260504_174154/staged/tvae/model_input_manifest.json new file mode 100644 index 0000000000000000000000000000000000000000..3b4bcd1074c6e0d6cc900926febe83d6ece42b52 --- /dev/null +++ b/hyperparameter/c2/tvae/tvae-c2-20260504_174154/staged/tvae/model_input_manifest.json @@ -0,0 +1,151 @@ +{ + "dataset_id": "c2", + "model": "tvae", + "target_column": "class", + "task_type": "classification", + "column_schema": [ + { + "name": "buying", + "role": "feature", + "semantic_type": "categorical", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 4, + "unique_ratio": 0.002894, + "example_values": [ + "vhigh", + "med", + "high", + "low" + ] + } + }, + { + "name": "maint", + "role": "feature", + "semantic_type": "categorical", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 4, + "unique_ratio": 0.002894, + "example_values": [ + "vhigh", + "low", + "med", + "high" + ] + } + }, + { + "name": "doors", + "role": "feature", + "semantic_type": "categorical", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 4, + "unique_ratio": 0.002894, + "example_values": [ + "2", + "5more", + "3", + "4" + ] + } + }, + { + "name": "persons", + "role": "feature", + "semantic_type": "categorical", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 3, + "unique_ratio": 0.002171, + "example_values": [ + "2", + "4", + "more" + ] + } + }, + { + "name": "lug_boot", + "role": "feature", + "semantic_type": "categorical", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 3, + "unique_ratio": 0.002171, + "example_values": [ + "small", + "big", + "med" + ] + } + }, + { + "name": "safety", + "role": "feature", + "semantic_type": "categorical", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 3, + "unique_ratio": 0.002171, + "example_values": [ + "low", + "high", + "med" + ] + } + }, + { + "name": "class", + "role": "target", + "semantic_type": "categorical", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 4, + "unique_ratio": 0.002894, + "example_values": [ + "unacc", + "good", + "acc", + "vgood" + ] + } + } + ], + "public_manifest": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/c2/tvae/tvae-c2-20260504_174154/public_gate/staged_input_manifest.json", + "train_csv": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/c2/tvae/tvae-c2-20260504_174154/staged/public/train.csv", + "val_csv": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/c2/tvae/tvae-c2-20260504_174154/staged/public/val.csv", + "test_csv": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/c2/tvae/tvae-c2-20260504_174154/staged/public/test.csv", + "features_json": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/c2/tvae/tvae-c2-20260504_174154/staged/public/staged_features.json", + "public_gate_report": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/c2/tvae/tvae-c2-20260504_174154/public_gate/public_gate_report.json" +} \ No newline at end of file diff --git a/hyperparameter/c2/tvae/tvae-c2-20260504_174154/tvae-c2-1382-20260504_174210.csv b/hyperparameter/c2/tvae/tvae-c2-20260504_174154/tvae-c2-1382-20260504_174210.csv new file mode 100644 index 0000000000000000000000000000000000000000..c83688d2010e78aeb0ecc98529fdd18e33c714d5 --- /dev/null +++ b/hyperparameter/c2/tvae/tvae-c2-20260504_174154/tvae-c2-1382-20260504_174210.csv @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:94ee321408fa4dd67c768ba7f1522bec0d6ad27f49ecc50eb179d2ae844dd3f5 +size 41485 diff --git a/hyperparameter/c2/tvae/tvae-c2-20260504_174154/tvae_metadata.json b/hyperparameter/c2/tvae/tvae-c2-20260504_174154/tvae_metadata.json new file mode 100644 index 0000000000000000000000000000000000000000..183d627ebc98e89233655ec98c9dcbc528c4c328 --- /dev/null +++ b/hyperparameter/c2/tvae/tvae-c2-20260504_174154/tvae_metadata.json @@ -0,0 +1,32 @@ +{ + "columns": [ + { + "name": "buying", + "type": "categorical" + }, + { + "name": "maint", + "type": "categorical" + }, + { + "name": "doors", + "type": "categorical" + }, + { + "name": "persons", + "type": "categorical" + }, + { + "name": "lug_boot", + "type": "categorical" + }, + { + "name": "safety", + "type": "categorical" + }, + { + "name": "class", + "type": "categorical" + } + ] +} \ No newline at end of file diff --git a/hyperparameter/c2/tvae/tvae-c2-20260504_174228/_tvae_generate.py b/hyperparameter/c2/tvae/tvae-c2-20260504_174228/_tvae_generate.py new file mode 100644 index 0000000000000000000000000000000000000000..bc004c641ef3108ef8d5f082c796ac82f8020042 --- /dev/null +++ b/hyperparameter/c2/tvae/tvae-c2-20260504_174228/_tvae_generate.py @@ -0,0 +1,23 @@ +import os, sys +sys.path.insert(0, "/work") +from src.SpecificModels.ctgan_joblib_parallel_cap import apply_parallel_cap_from_env +apply_parallel_cap_from_env() +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 +os.environ.setdefault("LOKY_MAX_CPU_COUNT", "8") +os.environ.setdefault("OPENBLAS_NUM_THREADS", "8") +os.environ.setdefault("MKL_NUM_THREADS", "8") +model = TVAE.load("/work/output-Benchmark-trainonly-v1/c2/tvae/tvae-c2-20260504_174228/models_300epochs/tvae_300epochs.pt") +total = 1382 +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-Benchmark-trainonly-v1/c2/tvae/tvae-c2-20260504_174228/tvae-c2-1382-20260504_174245.csv", index=False) +print(f"[TVAE] Generated {total} rows (chunks={len(parts)}) -> /work/output-Benchmark-trainonly-v1/c2/tvae/tvae-c2-20260504_174228/tvae-c2-1382-20260504_174245.csv") diff --git a/hyperparameter/c2/tvae/tvae-c2-20260504_174228/_tvae_train.py b/hyperparameter/c2/tvae/tvae-c2-20260504_174228/_tvae_train.py new file mode 100644 index 0000000000000000000000000000000000000000..bb08e002da231ddadd43ffcfd0f08856e725b5fb --- /dev/null +++ b/hyperparameter/c2/tvae/tvae-c2-20260504_174228/_tvae_train.py @@ -0,0 +1,39 @@ +import json, os, sys +sys.path.insert(0, "/work") +from src.SpecificModels.ctgan_joblib_parallel_cap import apply_parallel_cap_from_env +apply_parallel_cap_from_env() +import pandas as pd +from ctgan.data import read_csv +from ctgan.synthesizers.tvae import TVAE + +# Keep transform stage parallelism bounded for stability on shared host. +os.environ.setdefault("LOKY_MAX_CPU_COUNT", "8") +os.environ.setdefault("OPENBLAS_NUM_THREADS", "8") +os.environ.setdefault("MKL_NUM_THREADS", "8") +_nj = (os.environ.get("TVAE_CTGAN_JOBTRANS_N_JOBS") or "").strip() +if _nj: + print("[TVAE] joblib Parallel cap ON, TVAE_CTGAN_JOBTRANS_N_JOBS=" + _nj) +else: + print("[TVAE] joblib Parallel cap OFF (unset TVAE_CTGAN_JOBTRANS_N_JOBS)") +print("[TVAE] LOKY_MAX_CPU_COUNT=" + str(os.environ.get("LOKY_MAX_CPU_COUNT", ""))) + +csv_path = "/work/output-Benchmark-trainonly-v1/c2/tvae/tvae-c2-20260504_174228/staged/public/train.csv" +meta_path = "/work/output-Benchmark-trainonly-v1/c2/tvae/tvae-c2-20260504_174228/tvae_metadata.json" +save_path = "/work/output-Benchmark-trainonly-v1/c2/tvae/tvae-c2-20260504_174228/models_300epochs/tvae_300epochs.pt" +epochs = int(os.environ.get("TVAE_EPOCHS", 300)) +batch_size = int(os.environ.get("TVAE_BATCH_SIZE", "500")) +embedding_dim = int(os.environ.get("TVAE_EMBEDDING_DIM", "128")) +def _parse_dims(name, default): + raw = (os.environ.get(name) or "").strip() + if not raw: + return default + return tuple(int(x.strip()) for x in raw.split(",") if x.strip()) +compress_dims = _parse_dims("TVAE_COMPRESS_DIMS", (128, 128)) +decompress_dims = _parse_dims("TVAE_DECOMPRESS_DIMS", (128, 128)) + +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}, batch_size={batch_size}, embedding_dim={embedding_dim}, compress_dims={compress_dims}, decompress_dims={decompress_dims}") +model = TVAE(epochs=epochs, batch_size=batch_size, embedding_dim=embedding_dim, compress_dims=compress_dims, decompress_dims=decompress_dims) +model.fit(data, discrete_columns) +model.save(save_path) +print(f"[TVAE] Model saved -> {save_path}") diff --git a/hyperparameter/c2/tvae/tvae-c2-20260504_174228/gen_20260504_174245.log b/hyperparameter/c2/tvae/tvae-c2-20260504_174228/gen_20260504_174245.log new file mode 100644 index 0000000000000000000000000000000000000000..8c9691faa417502fa8ab6fd539913322f6ab883f --- /dev/null +++ b/hyperparameter/c2/tvae/tvae-c2-20260504_174228/gen_20260504_174245.log @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:52660e570f2b1798f41853f45ac28d1c585f75b473dc0bafb63cea59cf9cd40d +size 404 diff --git a/hyperparameter/c2/tvae/tvae-c2-20260504_174228/input_snapshot.json b/hyperparameter/c2/tvae/tvae-c2-20260504_174228/input_snapshot.json new file mode 100644 index 0000000000000000000000000000000000000000..9e28a5421f2176e174a0659e66a40054269fb2ac --- /dev/null +++ b/hyperparameter/c2/tvae/tvae-c2-20260504_174228/input_snapshot.json @@ -0,0 +1,36 @@ +{ + "dataset_id": "c2", + "model": "tvae", + "inputs": { + "train_csv": { + "path": "/data/jialinzhang/SynthesizePipeline-server/DatasetNew/c2/c2-train.csv", + "exists": true, + "size": 42948, + "sha256": "17bc560fa96bd00fb3b526e1e65bc91210b701d0d0a4e8bb9b4c5196cab56def" + }, + "val_csv": { + "path": "/data/jialinzhang/SynthesizePipeline-server/DatasetNew/c2/c2-val.csv", + "exists": true, + "size": 5349, + "sha256": "61e565eca62e65a7dccd9d51039a3170413379e10fc494e25870e7c4294863c9" + }, + "test_csv": { + "path": "/data/jialinzhang/SynthesizePipeline-server/DatasetNew/c2/c2-test.csv", + "exists": true, + "size": 5448, + "sha256": "cbcbb062a1faf5fa44b66c80532baa229e05b94fc42137269761e6c6d84af20a" + }, + "profile_json": { + "path": "/data/jialinzhang/SynthesizePipeline-server/DatasetNew/artifacts/data_core/tabular/c2/c2-dataset_profile.json", + "exists": true, + "size": 3240, + "sha256": "526b7163b2076c93c0bf4638438081ee8a6907065d5b608faa40d1a3dbc2a27b" + }, + "contract_json": { + "path": "/data/jialinzhang/SynthesizePipeline-server/DatasetNew/artifacts/data_core/tabular/c2/c2-dataset_contract_v1.json", + "exists": true, + "size": 3731, + "sha256": "fb595a876054c2ee9b4e10cfe83a5691588de1d25466cbb9d473c18ad3604009" + } + } +} \ No newline at end of file diff --git a/hyperparameter/c2/tvae/tvae-c2-20260504_174228/models_300epochs/train_20260504_174228.log b/hyperparameter/c2/tvae/tvae-c2-20260504_174228/models_300epochs/train_20260504_174228.log new file mode 100644 index 0000000000000000000000000000000000000000..5de5d0ad51877c8b6ec752621ca300d9862143ba --- /dev/null +++ b/hyperparameter/c2/tvae/tvae-c2-20260504_174228/models_300epochs/train_20260504_174228.log @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:58c60bb9fe86a317efabacf81546eb2b25f680a81383de073a9feceb8729d822 +size 620 diff --git a/hyperparameter/c2/tvae/tvae-c2-20260504_174228/models_300epochs/tvae_300epochs.pt b/hyperparameter/c2/tvae/tvae-c2-20260504_174228/models_300epochs/tvae_300epochs.pt new file mode 100644 index 0000000000000000000000000000000000000000..9924f6a37f84dc82fb6b9898dcfd4dd32b199504 --- /dev/null +++ b/hyperparameter/c2/tvae/tvae-c2-20260504_174228/models_300epochs/tvae_300epochs.pt @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:15fc84c398c90a6b1dfa00fc6c2395643c8ca9901216eb12f9c29c1389c2775b +size 344876 diff --git a/hyperparameter/c2/tvae/tvae-c2-20260504_174228/public_gate/normalized_schema_snapshot.json b/hyperparameter/c2/tvae/tvae-c2-20260504_174228/public_gate/normalized_schema_snapshot.json new file mode 100644 index 0000000000000000000000000000000000000000..689b1d00d96508e44ba40e58dc4560e19afc2b3b --- /dev/null +++ b/hyperparameter/c2/tvae/tvae-c2-20260504_174228/public_gate/normalized_schema_snapshot.json @@ -0,0 +1,144 @@ +{ + "dataset_id": "c2", + "target_column": "class", + "task_type": "classification", + "columns": [ + { + "name": "buying", + "role": "feature", + "semantic_type": "categorical", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 4, + "unique_ratio": 0.002894, + "example_values": [ + "vhigh", + "med", + "high", + "low" + ] + } + }, + { + "name": "maint", + "role": "feature", + "semantic_type": "categorical", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 4, + "unique_ratio": 0.002894, + "example_values": [ + "vhigh", + "low", + "med", + "high" + ] + } + }, + { + "name": "doors", + "role": "feature", + "semantic_type": "categorical", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 4, + "unique_ratio": 0.002894, + "example_values": [ + "2", + "5more", + "3", + "4" + ] + } + }, + { + "name": "persons", + "role": "feature", + "semantic_type": "categorical", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 3, + "unique_ratio": 0.002171, + "example_values": [ + "2", + "4", + "more" + ] + } + }, + { + "name": "lug_boot", + "role": "feature", + "semantic_type": "categorical", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 3, + "unique_ratio": 0.002171, + "example_values": [ + "small", + "big", + "med" + ] + } + }, + { + "name": "safety", + "role": "feature", + "semantic_type": "categorical", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 3, + "unique_ratio": 0.002171, + "example_values": [ + "low", + "high", + "med" + ] + } + }, + { + "name": "class", + "role": "target", + "semantic_type": "categorical", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 4, + "unique_ratio": 0.002894, + "example_values": [ + "unacc", + "good", + "acc", + "vgood" + ] + } + } + ] +} \ No newline at end of file diff --git a/hyperparameter/c2/tvae/tvae-c2-20260504_174228/public_gate/public_gate_report.json b/hyperparameter/c2/tvae/tvae-c2-20260504_174228/public_gate/public_gate_report.json new file mode 100644 index 0000000000000000000000000000000000000000..2e4cdcb2a4e28e40d59b17a83e773f622b7636a5 --- /dev/null +++ b/hyperparameter/c2/tvae/tvae-c2-20260504_174228/public_gate/public_gate_report.json @@ -0,0 +1,37 @@ +{ + "dataset_id": "c2", + "status": "pass", + "checks": [ + { + "check_id": "PG001_csv_parse_ok", + "status": "pass" + }, + { + "check_id": "PG002_split_header_consistent", + "status": "pass" + }, + { + "check_id": "PG003_profile_header_match", + "status": "pass" + }, + { + "check_id": "PG004_missing_token_normalized", + "status": "pass" + }, + { + "check_id": "PG005_semantic_type_validated", + "status": "pass" + }, + { + "check_id": "PG006_target_defined_and_valid", + "status": "pass" + } + ], + "target_column": "class", + "task_type": "classification", + "input_splits": { + "train": "/data/jialinzhang/SynthesizePipeline-server/DatasetNew/c2/c2-train.csv", + "val": "/data/jialinzhang/SynthesizePipeline-server/DatasetNew/c2/c2-val.csv", + "test": "/data/jialinzhang/SynthesizePipeline-server/DatasetNew/c2/c2-test.csv" + } +} \ No newline at end of file diff --git a/hyperparameter/c2/tvae/tvae-c2-20260504_174228/public_gate/staged_input_manifest.json b/hyperparameter/c2/tvae/tvae-c2-20260504_174228/public_gate/staged_input_manifest.json new file mode 100644 index 0000000000000000000000000000000000000000..8b14a46f210a5c5de1d60562b8556e1663ab2d60 --- /dev/null +++ b/hyperparameter/c2/tvae/tvae-c2-20260504_174228/public_gate/staged_input_manifest.json @@ -0,0 +1,149 @@ +{ + "dataset_id": "c2", + "target_column": "class", + "task_type": "classification", + "train_csv": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/c2/tvae/tvae-c2-20260504_174228/staged/public/train.csv", + "val_csv": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/c2/tvae/tvae-c2-20260504_174228/staged/public/val.csv", + "test_csv": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/c2/tvae/tvae-c2-20260504_174228/staged/public/test.csv", + "features_json": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/c2/tvae/tvae-c2-20260504_174228/staged/public/staged_features.json", + "public_gate_report": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/c2/tvae/tvae-c2-20260504_174228/public_gate/public_gate_report.json", + "column_schema": [ + { + "name": "buying", + "role": "feature", + "semantic_type": "categorical", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 4, + "unique_ratio": 0.002894, + "example_values": [ + "vhigh", + "med", + "high", + "low" + ] + } + }, + { + "name": "maint", + "role": "feature", + "semantic_type": "categorical", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 4, + "unique_ratio": 0.002894, + "example_values": [ + "vhigh", + "low", + "med", + "high" + ] + } + }, + { + "name": "doors", + "role": "feature", + "semantic_type": "categorical", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 4, + "unique_ratio": 0.002894, + "example_values": [ + "2", + "5more", + "3", + "4" + ] + } + }, + { + "name": "persons", + "role": "feature", + "semantic_type": "categorical", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 3, + "unique_ratio": 0.002171, + "example_values": [ + "2", + "4", + "more" + ] + } + }, + { + "name": "lug_boot", + "role": "feature", + "semantic_type": "categorical", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 3, + "unique_ratio": 0.002171, + "example_values": [ + "small", + "big", + "med" + ] + } + }, + { + "name": "safety", + "role": "feature", + "semantic_type": "categorical", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 3, + "unique_ratio": 0.002171, + "example_values": [ + "low", + "high", + "med" + ] + } + }, + { + "name": "class", + "role": "target", + "semantic_type": "categorical", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 4, + "unique_ratio": 0.002894, + "example_values": [ + "unacc", + "good", + "acc", + "vgood" + ] + } + } + ] +} \ No newline at end of file diff --git a/hyperparameter/c2/tvae/tvae-c2-20260504_174228/run_config.json b/hyperparameter/c2/tvae/tvae-c2-20260504_174228/run_config.json new file mode 100644 index 0000000000000000000000000000000000000000..7ba68d85fbf3be069f5726a7ab23f2656ab6a24e --- /dev/null +++ b/hyperparameter/c2/tvae/tvae-c2-20260504_174228/run_config.json @@ -0,0 +1,45 @@ +{ + "schema_version": 1, + "recorded_at": "2026-05-04T17:42:28", + "dataset_id": "c2", + "model": "tvae", + "work_dir": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/c2/tvae/tvae-c2-20260504_174228", + "dataset_source_requested": "new", + "dataset_source_resolved": "new", + "cli_args": { + "model": "tvae", + "dataset": "c2", + "dataset_source": "new", + "train": true, + "generate": true, + "num_rows": 0, + "epochs": null, + "output_dir": null, + "model_dir": null, + "work_dir": null, + "resume": false, + "no_stats": false + }, + "resolved": { + "num_rows": 1382, + "model_path": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/c2/tvae/tvae-c2-20260504_174228/models_300epochs/tvae_300epochs.pt", + "output_csv": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/c2/tvae/tvae-c2-20260504_174228/tvae-c2-1382-20260504_174245.csv" + }, + "input_artifacts": { + "public_gate_report": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/c2/tvae/tvae-c2-20260504_174228/public_gate/public_gate_report.json", + "public_manifest": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/c2/tvae/tvae-c2-20260504_174228/public_gate/staged_input_manifest.json", + "model_manifest": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/c2/tvae/tvae-c2-20260504_174228/staged/tvae/model_input_manifest.json", + "train_csv": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/c2/tvae/tvae-c2-20260504_174228/staged/public/train.csv", + "features_json": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/c2/tvae/tvae-c2-20260504_174228/staged/public/staged_features.json", + "target_column": "class", + "task_type": "classification" + }, + "env_overrides": { + "BENCHMARK_TVAE_GPUS": "device=3", + "TVAE_BATCH_SIZE": "256", + "TVAE_COMPRESS_DIMS": "256,256", + "TVAE_DECOMPRESS_DIMS": "256,256", + "TVAE_EMBEDDING_DIM": "256", + "TVAE_EPOCHS": "500" + } +} \ No newline at end of file diff --git a/hyperparameter/c2/tvae/tvae-c2-20260504_174228/runtime_result.json b/hyperparameter/c2/tvae/tvae-c2-20260504_174228/runtime_result.json new file mode 100644 index 0000000000000000000000000000000000000000..79f329aafcff2be74e9f81bdeb2d4b5a868bdd83 --- /dev/null +++ b/hyperparameter/c2/tvae/tvae-c2-20260504_174228/runtime_result.json @@ -0,0 +1,27 @@ +{ + "dataset_id": "c2", + "model": "tvae", + "run_id": "tvae-c2-20260504_174228", + "public_gate_status": "pass", + "adapter_ready_status": "pass", + "train_status": "success", + "generate_status": "success", + "reason_code": null, + "reason_detail": null, + "artifacts": { + "synthetic_csv": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/c2/tvae/tvae-c2-20260504_174228/tvae-c2-1382-20260504_174245.csv", + "model_path": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/c2/tvae/tvae-c2-20260504_174228/models_300epochs/tvae_300epochs.pt" + }, + "timings": { + "train": { + "started_at": "2026-05-04T17:42:28", + "ended_at": "2026-05-04T17:42:45", + "duration_sec": 16.727 + }, + "generate": { + "started_at": "2026-05-04T17:42:45", + "ended_at": "2026-05-04T17:42:50", + "duration_sec": 4.871 + } + } +} \ No newline at end of file diff --git a/hyperparameter/c2/tvae/tvae-c2-20260504_174228/staged/public/staged_features.json b/hyperparameter/c2/tvae/tvae-c2-20260504_174228/staged/public/staged_features.json new file mode 100644 index 0000000000000000000000000000000000000000..61783861dd5de501592f76acb0469cf3f3b2622a --- /dev/null +++ b/hyperparameter/c2/tvae/tvae-c2-20260504_174228/staged/public/staged_features.json @@ -0,0 +1,37 @@ +[ + { + "feature_name": "buying", + "data_type": "categorical", + "is_target": false + }, + { + "feature_name": "maint", + "data_type": "categorical", + "is_target": false + }, + { + "feature_name": "doors", + "data_type": "categorical", + "is_target": false + }, + { + "feature_name": "persons", + "data_type": "categorical", + "is_target": false + }, + { + "feature_name": "lug_boot", + "data_type": "categorical", + "is_target": false + }, + { + "feature_name": "safety", + "data_type": "categorical", + "is_target": false + }, + { + "feature_name": "class", + "data_type": "categorical", + "is_target": true + } +] \ No newline at end of file diff --git a/hyperparameter/c2/tvae/tvae-c2-20260504_174228/staged/public/test.csv b/hyperparameter/c2/tvae/tvae-c2-20260504_174228/staged/public/test.csv new file mode 100644 index 0000000000000000000000000000000000000000..392a0d7189a34d8f13ecf20a99d64b03230d517c --- /dev/null +++ b/hyperparameter/c2/tvae/tvae-c2-20260504_174228/staged/public/test.csv @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:b48114a7d0bc5bd9a07920f903c8d4aba8bf98bf2a66a050da03588b0245ca73 +size 5273 diff --git a/hyperparameter/c2/tvae/tvae-c2-20260504_174228/staged/public/train.csv b/hyperparameter/c2/tvae/tvae-c2-20260504_174228/staged/public/train.csv new file mode 100644 index 0000000000000000000000000000000000000000..da4f4d55134eebc0e51157d0d467536371db1484 --- /dev/null +++ b/hyperparameter/c2/tvae/tvae-c2-20260504_174228/staged/public/train.csv @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:4aed00c2c2b3f88a55a7ebff31b2e1b5e0e32fb0a7267e0b9d2779cd23e434dd +size 41565 diff --git a/hyperparameter/c2/tvae/tvae-c2-20260504_174228/staged/public/val.csv b/hyperparameter/c2/tvae/tvae-c2-20260504_174228/staged/public/val.csv new file mode 100644 index 0000000000000000000000000000000000000000..af8caf7ee42524188534a3daf32996dc491952d9 --- /dev/null +++ b/hyperparameter/c2/tvae/tvae-c2-20260504_174228/staged/public/val.csv @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:26e90c1170a57a14c05832ac88027722b1f3848f9662c7c09ef7c93dcba4cc01 +size 5176 diff --git a/hyperparameter/c2/tvae/tvae-c2-20260504_174228/staged/tvae/adapter_report.json b/hyperparameter/c2/tvae/tvae-c2-20260504_174228/staged/tvae/adapter_report.json new file mode 100644 index 0000000000000000000000000000000000000000..0e82075016a8326f1f9b6c83948df8bb21b14b53 --- /dev/null +++ b/hyperparameter/c2/tvae/tvae-c2-20260504_174228/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-Benchmark-trainonly-v1/c2/tvae/tvae-c2-20260504_174228/staged/tvae/model_input_manifest.json" +} \ No newline at end of file diff --git a/hyperparameter/c2/tvae/tvae-c2-20260504_174228/staged/tvae/adapter_transforms_applied.json b/hyperparameter/c2/tvae/tvae-c2-20260504_174228/staged/tvae/adapter_transforms_applied.json new file mode 100644 index 0000000000000000000000000000000000000000..0637a088a01e8ddab3bf3fa98dbe804cbde1a0dc --- /dev/null +++ b/hyperparameter/c2/tvae/tvae-c2-20260504_174228/staged/tvae/adapter_transforms_applied.json @@ -0,0 +1 @@ +[] \ No newline at end of file diff --git a/hyperparameter/c2/tvae/tvae-c2-20260504_174228/staged/tvae/model_input_manifest.json b/hyperparameter/c2/tvae/tvae-c2-20260504_174228/staged/tvae/model_input_manifest.json new file mode 100644 index 0000000000000000000000000000000000000000..daeb2bc660e9e321edfd0696d3d48311f9070c78 --- /dev/null +++ b/hyperparameter/c2/tvae/tvae-c2-20260504_174228/staged/tvae/model_input_manifest.json @@ -0,0 +1,151 @@ +{ + "dataset_id": "c2", + "model": "tvae", + "target_column": "class", + "task_type": "classification", + "column_schema": [ + { + "name": "buying", + "role": "feature", + "semantic_type": "categorical", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 4, + "unique_ratio": 0.002894, + "example_values": [ + "vhigh", + "med", + "high", + "low" + ] + } + }, + { + "name": "maint", + "role": "feature", + "semantic_type": "categorical", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 4, + "unique_ratio": 0.002894, + "example_values": [ + "vhigh", + "low", + "med", + "high" + ] + } + }, + { + "name": "doors", + "role": "feature", + "semantic_type": "categorical", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 4, + "unique_ratio": 0.002894, + "example_values": [ + "2", + "5more", + "3", + "4" + ] + } + }, + { + "name": "persons", + "role": "feature", + "semantic_type": "categorical", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 3, + "unique_ratio": 0.002171, + "example_values": [ + "2", + "4", + "more" + ] + } + }, + { + "name": "lug_boot", + "role": "feature", + "semantic_type": "categorical", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 3, + "unique_ratio": 0.002171, + "example_values": [ + "small", + "big", + "med" + ] + } + }, + { + "name": "safety", + "role": "feature", + "semantic_type": "categorical", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 3, + "unique_ratio": 0.002171, + "example_values": [ + "low", + "high", + "med" + ] + } + }, + { + "name": "class", + "role": "target", + "semantic_type": "categorical", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 4, + "unique_ratio": 0.002894, + "example_values": [ + "unacc", + "good", + "acc", + "vgood" + ] + } + } + ], + "public_manifest": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/c2/tvae/tvae-c2-20260504_174228/public_gate/staged_input_manifest.json", + "train_csv": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/c2/tvae/tvae-c2-20260504_174228/staged/public/train.csv", + "val_csv": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/c2/tvae/tvae-c2-20260504_174228/staged/public/val.csv", + "test_csv": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/c2/tvae/tvae-c2-20260504_174228/staged/public/test.csv", + "features_json": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/c2/tvae/tvae-c2-20260504_174228/staged/public/staged_features.json", + "public_gate_report": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/c2/tvae/tvae-c2-20260504_174228/public_gate/public_gate_report.json" +} \ No newline at end of file diff --git a/hyperparameter/c2/tvae/tvae-c2-20260504_174228/tvae-c2-1382-20260504_174245.csv b/hyperparameter/c2/tvae/tvae-c2-20260504_174228/tvae-c2-1382-20260504_174245.csv new file mode 100644 index 0000000000000000000000000000000000000000..1eef2401674d55c788c8457160db07fb3ca8f4e4 --- /dev/null +++ b/hyperparameter/c2/tvae/tvae-c2-20260504_174228/tvae-c2-1382-20260504_174245.csv @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:ed8d81c7986042bdc6d46d880cf4b8ecbb4ab544eed3754733fc1ee8424db47d +size 41641 diff --git a/hyperparameter/c2/tvae/tvae-c2-20260504_174228/tvae_metadata.json b/hyperparameter/c2/tvae/tvae-c2-20260504_174228/tvae_metadata.json new file mode 100644 index 0000000000000000000000000000000000000000..183d627ebc98e89233655ec98c9dcbc528c4c328 --- /dev/null +++ b/hyperparameter/c2/tvae/tvae-c2-20260504_174228/tvae_metadata.json @@ -0,0 +1,32 @@ +{ + "columns": [ + { + "name": "buying", + "type": "categorical" + }, + { + "name": "maint", + "type": "categorical" + }, + { + "name": "doors", + "type": "categorical" + }, + { + "name": "persons", + "type": "categorical" + }, + { + "name": "lug_boot", + "type": "categorical" + }, + { + "name": "safety", + "type": "categorical" + }, + { + "name": "class", + "type": "categorical" + } + ] +} \ No newline at end of file diff --git a/hyperparameter/c2/tvae/tvae-c2-20260504_175027/_tvae_generate.py b/hyperparameter/c2/tvae/tvae-c2-20260504_175027/_tvae_generate.py new file mode 100644 index 0000000000000000000000000000000000000000..8104879488e8e7e39b0f1ce35e55b7498a71c718 --- /dev/null +++ b/hyperparameter/c2/tvae/tvae-c2-20260504_175027/_tvae_generate.py @@ -0,0 +1,23 @@ +import os, sys +sys.path.insert(0, "/work") +from src.SpecificModels.ctgan_joblib_parallel_cap import apply_parallel_cap_from_env +apply_parallel_cap_from_env() +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 +os.environ.setdefault("LOKY_MAX_CPU_COUNT", "8") +os.environ.setdefault("OPENBLAS_NUM_THREADS", "8") +os.environ.setdefault("MKL_NUM_THREADS", "8") +model = TVAE.load("/work/output-Benchmark-trainonly-v1/c2/tvae/tvae-c2-20260504_175027/models_300epochs/tvae_300epochs.pt") +total = 1382 +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-Benchmark-trainonly-v1/c2/tvae/tvae-c2-20260504_175027/tvae-c2-1382-20260504_175041.csv", index=False) +print(f"[TVAE] Generated {total} rows (chunks={len(parts)}) -> /work/output-Benchmark-trainonly-v1/c2/tvae/tvae-c2-20260504_175027/tvae-c2-1382-20260504_175041.csv") diff --git a/hyperparameter/c2/tvae/tvae-c2-20260504_175027/_tvae_train.py b/hyperparameter/c2/tvae/tvae-c2-20260504_175027/_tvae_train.py new file mode 100644 index 0000000000000000000000000000000000000000..cb7ef14cbfef58c7485e0f2c428a4de8aa54f4f7 --- /dev/null +++ b/hyperparameter/c2/tvae/tvae-c2-20260504_175027/_tvae_train.py @@ -0,0 +1,39 @@ +import json, os, sys +sys.path.insert(0, "/work") +from src.SpecificModels.ctgan_joblib_parallel_cap import apply_parallel_cap_from_env +apply_parallel_cap_from_env() +import pandas as pd +from ctgan.data import read_csv +from ctgan.synthesizers.tvae import TVAE + +# Keep transform stage parallelism bounded for stability on shared host. +os.environ.setdefault("LOKY_MAX_CPU_COUNT", "8") +os.environ.setdefault("OPENBLAS_NUM_THREADS", "8") +os.environ.setdefault("MKL_NUM_THREADS", "8") +_nj = (os.environ.get("TVAE_CTGAN_JOBTRANS_N_JOBS") or "").strip() +if _nj: + print("[TVAE] joblib Parallel cap ON, TVAE_CTGAN_JOBTRANS_N_JOBS=" + _nj) +else: + print("[TVAE] joblib Parallel cap OFF (unset TVAE_CTGAN_JOBTRANS_N_JOBS)") +print("[TVAE] LOKY_MAX_CPU_COUNT=" + str(os.environ.get("LOKY_MAX_CPU_COUNT", ""))) + +csv_path = "/work/output-Benchmark-trainonly-v1/c2/tvae/tvae-c2-20260504_175027/staged/public/train.csv" +meta_path = "/work/output-Benchmark-trainonly-v1/c2/tvae/tvae-c2-20260504_175027/tvae_metadata.json" +save_path = "/work/output-Benchmark-trainonly-v1/c2/tvae/tvae-c2-20260504_175027/models_300epochs/tvae_300epochs.pt" +epochs = int(os.environ.get("TVAE_EPOCHS", 300)) +batch_size = int(os.environ.get("TVAE_BATCH_SIZE", "500")) +embedding_dim = int(os.environ.get("TVAE_EMBEDDING_DIM", "128")) +def _parse_dims(name, default): + raw = (os.environ.get(name) or "").strip() + if not raw: + return default + return tuple(int(x.strip()) for x in raw.split(",") if x.strip()) +compress_dims = _parse_dims("TVAE_COMPRESS_DIMS", (128, 128)) +decompress_dims = _parse_dims("TVAE_DECOMPRESS_DIMS", (128, 128)) + +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}, batch_size={batch_size}, embedding_dim={embedding_dim}, compress_dims={compress_dims}, decompress_dims={decompress_dims}") +model = TVAE(epochs=epochs, batch_size=batch_size, embedding_dim=embedding_dim, compress_dims=compress_dims, decompress_dims=decompress_dims) +model.fit(data, discrete_columns) +model.save(save_path) +print(f"[TVAE] Model saved -> {save_path}") diff --git a/hyperparameter/c2/tvae/tvae-c2-20260504_175027/gen_20260504_175041.log b/hyperparameter/c2/tvae/tvae-c2-20260504_175027/gen_20260504_175041.log new file mode 100644 index 0000000000000000000000000000000000000000..fc18445fff6eeef90a8c0c788069fa1fc492dd49 --- /dev/null +++ b/hyperparameter/c2/tvae/tvae-c2-20260504_175027/gen_20260504_175041.log @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:a01f4b4e5969a83ef737504dd36e3b52b491552504978f2029b415c1d0899625 +size 404 diff --git a/hyperparameter/c2/tvae/tvae-c2-20260504_175027/input_snapshot.json b/hyperparameter/c2/tvae/tvae-c2-20260504_175027/input_snapshot.json new file mode 100644 index 0000000000000000000000000000000000000000..9e28a5421f2176e174a0659e66a40054269fb2ac --- /dev/null +++ b/hyperparameter/c2/tvae/tvae-c2-20260504_175027/input_snapshot.json @@ -0,0 +1,36 @@ +{ + "dataset_id": "c2", + "model": "tvae", + "inputs": { + "train_csv": { + "path": "/data/jialinzhang/SynthesizePipeline-server/DatasetNew/c2/c2-train.csv", + "exists": true, + "size": 42948, + "sha256": "17bc560fa96bd00fb3b526e1e65bc91210b701d0d0a4e8bb9b4c5196cab56def" + }, + "val_csv": { + "path": "/data/jialinzhang/SynthesizePipeline-server/DatasetNew/c2/c2-val.csv", + "exists": true, + "size": 5349, + "sha256": "61e565eca62e65a7dccd9d51039a3170413379e10fc494e25870e7c4294863c9" + }, + "test_csv": { + "path": "/data/jialinzhang/SynthesizePipeline-server/DatasetNew/c2/c2-test.csv", + "exists": true, + "size": 5448, + "sha256": "cbcbb062a1faf5fa44b66c80532baa229e05b94fc42137269761e6c6d84af20a" + }, + "profile_json": { + "path": "/data/jialinzhang/SynthesizePipeline-server/DatasetNew/artifacts/data_core/tabular/c2/c2-dataset_profile.json", + "exists": true, + "size": 3240, + "sha256": "526b7163b2076c93c0bf4638438081ee8a6907065d5b608faa40d1a3dbc2a27b" + }, + "contract_json": { + "path": "/data/jialinzhang/SynthesizePipeline-server/DatasetNew/artifacts/data_core/tabular/c2/c2-dataset_contract_v1.json", + "exists": true, + "size": 3731, + "sha256": "fb595a876054c2ee9b4e10cfe83a5691588de1d25466cbb9d473c18ad3604009" + } + } +} \ No newline at end of file diff --git a/hyperparameter/c2/tvae/tvae-c2-20260504_175027/models_300epochs/train_20260504_175027.log b/hyperparameter/c2/tvae/tvae-c2-20260504_175027/models_300epochs/train_20260504_175027.log new file mode 100644 index 0000000000000000000000000000000000000000..75d081b6b67b71d98c32792a120f034523c9ed61 --- /dev/null +++ b/hyperparameter/c2/tvae/tvae-c2-20260504_175027/models_300epochs/train_20260504_175027.log @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:27a31e992b3e274f3bef6e36d82e154a1098ee374a42da5d23ba2eb446f2e9d0 +size 615 diff --git a/hyperparameter/c2/tvae/tvae-c2-20260504_175027/models_300epochs/tvae_300epochs.pt b/hyperparameter/c2/tvae/tvae-c2-20260504_175027/models_300epochs/tvae_300epochs.pt new file mode 100644 index 0000000000000000000000000000000000000000..b0e9191e1b878412f955dd1c2f27ac5ec132edbe --- /dev/null +++ b/hyperparameter/c2/tvae/tvae-c2-20260504_175027/models_300epochs/tvae_300epochs.pt @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:7f1e00695ed4fb39555e6e1b9efe1af61665640f750ddca0c6dd743d68f8b55a +size 223404 diff --git a/hyperparameter/c2/tvae/tvae-c2-20260504_175027/public_gate/normalized_schema_snapshot.json b/hyperparameter/c2/tvae/tvae-c2-20260504_175027/public_gate/normalized_schema_snapshot.json new file mode 100644 index 0000000000000000000000000000000000000000..689b1d00d96508e44ba40e58dc4560e19afc2b3b --- /dev/null +++ b/hyperparameter/c2/tvae/tvae-c2-20260504_175027/public_gate/normalized_schema_snapshot.json @@ -0,0 +1,144 @@ +{ + "dataset_id": "c2", + "target_column": "class", + "task_type": "classification", + "columns": [ + { + "name": "buying", + "role": "feature", + "semantic_type": "categorical", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 4, + "unique_ratio": 0.002894, + "example_values": [ + "vhigh", + "med", + "high", + "low" + ] + } + }, + { + "name": "maint", + "role": "feature", + "semantic_type": "categorical", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 4, + "unique_ratio": 0.002894, + "example_values": [ + "vhigh", + "low", + "med", + "high" + ] + } + }, + { + "name": "doors", + "role": "feature", + "semantic_type": "categorical", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 4, + "unique_ratio": 0.002894, + "example_values": [ + "2", + "5more", + "3", + "4" + ] + } + }, + { + "name": "persons", + "role": "feature", + "semantic_type": "categorical", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 3, + "unique_ratio": 0.002171, + "example_values": [ + "2", + "4", + "more" + ] + } + }, + { + "name": "lug_boot", + "role": "feature", + "semantic_type": "categorical", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 3, + "unique_ratio": 0.002171, + "example_values": [ + "small", + "big", + "med" + ] + } + }, + { + "name": "safety", + "role": "feature", + "semantic_type": "categorical", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 3, + "unique_ratio": 0.002171, + "example_values": [ + "low", + "high", + "med" + ] + } + }, + { + "name": "class", + "role": "target", + "semantic_type": "categorical", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 4, + "unique_ratio": 0.002894, + "example_values": [ + "unacc", + "good", + "acc", + "vgood" + ] + } + } + ] +} \ No newline at end of file diff --git a/hyperparameter/c2/tvae/tvae-c2-20260504_175027/public_gate/public_gate_report.json b/hyperparameter/c2/tvae/tvae-c2-20260504_175027/public_gate/public_gate_report.json new file mode 100644 index 0000000000000000000000000000000000000000..2e4cdcb2a4e28e40d59b17a83e773f622b7636a5 --- /dev/null +++ b/hyperparameter/c2/tvae/tvae-c2-20260504_175027/public_gate/public_gate_report.json @@ -0,0 +1,37 @@ +{ + "dataset_id": "c2", + "status": "pass", + "checks": [ + { + "check_id": "PG001_csv_parse_ok", + "status": "pass" + }, + { + "check_id": "PG002_split_header_consistent", + "status": "pass" + }, + { + "check_id": "PG003_profile_header_match", + "status": "pass" + }, + { + "check_id": "PG004_missing_token_normalized", + "status": "pass" + }, + { + "check_id": "PG005_semantic_type_validated", + "status": "pass" + }, + { + "check_id": "PG006_target_defined_and_valid", + "status": "pass" + } + ], + "target_column": "class", + "task_type": "classification", + "input_splits": { + "train": "/data/jialinzhang/SynthesizePipeline-server/DatasetNew/c2/c2-train.csv", + "val": "/data/jialinzhang/SynthesizePipeline-server/DatasetNew/c2/c2-val.csv", + "test": "/data/jialinzhang/SynthesizePipeline-server/DatasetNew/c2/c2-test.csv" + } +} \ No newline at end of file diff --git a/hyperparameter/c2/tvae/tvae-c2-20260504_175027/public_gate/staged_input_manifest.json b/hyperparameter/c2/tvae/tvae-c2-20260504_175027/public_gate/staged_input_manifest.json new file mode 100644 index 0000000000000000000000000000000000000000..2d0396d7a163d0e0292af99bc6584ce15b374c93 --- /dev/null +++ b/hyperparameter/c2/tvae/tvae-c2-20260504_175027/public_gate/staged_input_manifest.json @@ -0,0 +1,149 @@ +{ + "dataset_id": "c2", + "target_column": "class", + "task_type": "classification", + "train_csv": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/c2/tvae/tvae-c2-20260504_175027/staged/public/train.csv", + "val_csv": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/c2/tvae/tvae-c2-20260504_175027/staged/public/val.csv", + "test_csv": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/c2/tvae/tvae-c2-20260504_175027/staged/public/test.csv", + "features_json": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/c2/tvae/tvae-c2-20260504_175027/staged/public/staged_features.json", + "public_gate_report": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/c2/tvae/tvae-c2-20260504_175027/public_gate/public_gate_report.json", + "column_schema": [ + { + "name": "buying", + "role": "feature", + "semantic_type": "categorical", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 4, + "unique_ratio": 0.002894, + "example_values": [ + "vhigh", + "med", + "high", + "low" + ] + } + }, + { + "name": "maint", + "role": "feature", + "semantic_type": "categorical", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 4, + "unique_ratio": 0.002894, + "example_values": [ + "vhigh", + "low", + "med", + "high" + ] + } + }, + { + "name": "doors", + "role": "feature", + "semantic_type": "categorical", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 4, + "unique_ratio": 0.002894, + "example_values": [ + "2", + "5more", + "3", + "4" + ] + } + }, + { + "name": "persons", + "role": "feature", + "semantic_type": "categorical", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 3, + "unique_ratio": 0.002171, + "example_values": [ + "2", + "4", + "more" + ] + } + }, + { + "name": "lug_boot", + "role": "feature", + "semantic_type": "categorical", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 3, + "unique_ratio": 0.002171, + "example_values": [ + "small", + "big", + "med" + ] + } + }, + { + "name": "safety", + "role": "feature", + "semantic_type": "categorical", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 3, + "unique_ratio": 0.002171, + "example_values": [ + "low", + "high", + "med" + ] + } + }, + { + "name": "class", + "role": "target", + "semantic_type": "categorical", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 4, + "unique_ratio": 0.002894, + "example_values": [ + "unacc", + "good", + "acc", + "vgood" + ] + } + } + ] +} \ No newline at end of file diff --git a/hyperparameter/c2/tvae/tvae-c2-20260504_175027/run_config.json b/hyperparameter/c2/tvae/tvae-c2-20260504_175027/run_config.json new file mode 100644 index 0000000000000000000000000000000000000000..3a2d617b169ad852ac43f72a1c4b7cfccfa33466 --- /dev/null +++ b/hyperparameter/c2/tvae/tvae-c2-20260504_175027/run_config.json @@ -0,0 +1,45 @@ +{ + "schema_version": 1, + "recorded_at": "2026-05-04T17:50:27", + "dataset_id": "c2", + "model": "tvae", + "work_dir": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/c2/tvae/tvae-c2-20260504_175027", + "dataset_source_requested": "new", + "dataset_source_resolved": "new", + "cli_args": { + "model": "tvae", + "dataset": "c2", + "dataset_source": "new", + "train": true, + "generate": true, + "num_rows": 0, + "epochs": null, + "output_dir": null, + "model_dir": null, + "work_dir": null, + "resume": false, + "no_stats": false + }, + "resolved": { + "num_rows": 1382, + "model_path": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/c2/tvae/tvae-c2-20260504_175027/models_300epochs/tvae_300epochs.pt", + "output_csv": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/c2/tvae/tvae-c2-20260504_175027/tvae-c2-1382-20260504_175041.csv" + }, + "input_artifacts": { + "public_gate_report": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/c2/tvae/tvae-c2-20260504_175027/public_gate/public_gate_report.json", + "public_manifest": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/c2/tvae/tvae-c2-20260504_175027/public_gate/staged_input_manifest.json", + "model_manifest": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/c2/tvae/tvae-c2-20260504_175027/staged/tvae/model_input_manifest.json", + "train_csv": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/c2/tvae/tvae-c2-20260504_175027/staged/public/train.csv", + "features_json": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/c2/tvae/tvae-c2-20260504_175027/staged/public/staged_features.json", + "target_column": "class", + "task_type": "classification" + }, + "env_overrides": { + "BENCHMARK_TVAE_GPUS": "device=3", + "TVAE_BATCH_SIZE": "256", + "TVAE_COMPRESS_DIMS": "64,64", + "TVAE_DECOMPRESS_DIMS": "64,64", + "TVAE_EMBEDDING_DIM": "32", + "TVAE_EPOCHS": "100" + } +} \ No newline at end of file diff --git a/hyperparameter/c2/tvae/tvae-c2-20260504_175027/runtime_result.json b/hyperparameter/c2/tvae/tvae-c2-20260504_175027/runtime_result.json new file mode 100644 index 0000000000000000000000000000000000000000..5d3a41b107926d16f24d14d77ee75a75add3ae2c --- /dev/null +++ b/hyperparameter/c2/tvae/tvae-c2-20260504_175027/runtime_result.json @@ -0,0 +1,27 @@ +{ + "dataset_id": "c2", + "model": "tvae", + "run_id": "tvae-c2-20260504_175027", + "public_gate_status": "pass", + "adapter_ready_status": "pass", + "train_status": "success", + "generate_status": "success", + "reason_code": null, + "reason_detail": null, + "artifacts": { + "synthetic_csv": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/c2/tvae/tvae-c2-20260504_175027/tvae-c2-1382-20260504_175041.csv", + "model_path": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/c2/tvae/tvae-c2-20260504_175027/models_300epochs/tvae_300epochs.pt" + }, + "timings": { + "train": { + "started_at": "2026-05-04T17:50:27", + "ended_at": "2026-05-04T17:50:41", + "duration_sec": 13.546 + }, + "generate": { + "started_at": "2026-05-04T17:50:41", + "ended_at": "2026-05-04T17:50:46", + "duration_sec": 5.172 + } + } +} \ No newline at end of file diff --git a/hyperparameter/c2/tvae/tvae-c2-20260504_175027/staged/public/staged_features.json b/hyperparameter/c2/tvae/tvae-c2-20260504_175027/staged/public/staged_features.json new file mode 100644 index 0000000000000000000000000000000000000000..61783861dd5de501592f76acb0469cf3f3b2622a --- /dev/null +++ b/hyperparameter/c2/tvae/tvae-c2-20260504_175027/staged/public/staged_features.json @@ -0,0 +1,37 @@ +[ + { + "feature_name": "buying", + "data_type": "categorical", + "is_target": false + }, + { + "feature_name": "maint", + "data_type": "categorical", + "is_target": false + }, + { + "feature_name": "doors", + "data_type": "categorical", + "is_target": false + }, + { + "feature_name": "persons", + "data_type": "categorical", + "is_target": false + }, + { + "feature_name": "lug_boot", + "data_type": "categorical", + "is_target": false + }, + { + "feature_name": "safety", + "data_type": "categorical", + "is_target": false + }, + { + "feature_name": "class", + "data_type": "categorical", + "is_target": true + } +] \ No newline at end of file diff --git a/hyperparameter/c2/tvae/tvae-c2-20260504_175027/staged/public/test.csv b/hyperparameter/c2/tvae/tvae-c2-20260504_175027/staged/public/test.csv new file mode 100644 index 0000000000000000000000000000000000000000..392a0d7189a34d8f13ecf20a99d64b03230d517c --- /dev/null +++ b/hyperparameter/c2/tvae/tvae-c2-20260504_175027/staged/public/test.csv @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:b48114a7d0bc5bd9a07920f903c8d4aba8bf98bf2a66a050da03588b0245ca73 +size 5273 diff --git a/hyperparameter/c2/tvae/tvae-c2-20260504_175027/staged/public/train.csv b/hyperparameter/c2/tvae/tvae-c2-20260504_175027/staged/public/train.csv new file mode 100644 index 0000000000000000000000000000000000000000..da4f4d55134eebc0e51157d0d467536371db1484 --- /dev/null +++ b/hyperparameter/c2/tvae/tvae-c2-20260504_175027/staged/public/train.csv @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:4aed00c2c2b3f88a55a7ebff31b2e1b5e0e32fb0a7267e0b9d2779cd23e434dd +size 41565 diff --git a/hyperparameter/c2/tvae/tvae-c2-20260504_175027/staged/public/val.csv b/hyperparameter/c2/tvae/tvae-c2-20260504_175027/staged/public/val.csv new file mode 100644 index 0000000000000000000000000000000000000000..af8caf7ee42524188534a3daf32996dc491952d9 --- /dev/null +++ b/hyperparameter/c2/tvae/tvae-c2-20260504_175027/staged/public/val.csv @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:26e90c1170a57a14c05832ac88027722b1f3848f9662c7c09ef7c93dcba4cc01 +size 5176 diff --git a/hyperparameter/c2/tvae/tvae-c2-20260504_175027/staged/tvae/adapter_report.json b/hyperparameter/c2/tvae/tvae-c2-20260504_175027/staged/tvae/adapter_report.json new file mode 100644 index 0000000000000000000000000000000000000000..fd315eb1068f5c43dc5617cab4ab1fee932da6f2 --- /dev/null +++ b/hyperparameter/c2/tvae/tvae-c2-20260504_175027/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-Benchmark-trainonly-v1/c2/tvae/tvae-c2-20260504_175027/staged/tvae/model_input_manifest.json" +} \ No newline at end of file diff --git a/hyperparameter/c2/tvae/tvae-c2-20260504_175027/staged/tvae/adapter_transforms_applied.json b/hyperparameter/c2/tvae/tvae-c2-20260504_175027/staged/tvae/adapter_transforms_applied.json new file mode 100644 index 0000000000000000000000000000000000000000..0637a088a01e8ddab3bf3fa98dbe804cbde1a0dc --- /dev/null +++ b/hyperparameter/c2/tvae/tvae-c2-20260504_175027/staged/tvae/adapter_transforms_applied.json @@ -0,0 +1 @@ +[] \ No newline at end of file diff --git a/hyperparameter/c2/tvae/tvae-c2-20260504_175027/staged/tvae/model_input_manifest.json b/hyperparameter/c2/tvae/tvae-c2-20260504_175027/staged/tvae/model_input_manifest.json new file mode 100644 index 0000000000000000000000000000000000000000..afcd3f42f324ce459307b455f3e2a3bb649e77e5 --- /dev/null +++ b/hyperparameter/c2/tvae/tvae-c2-20260504_175027/staged/tvae/model_input_manifest.json @@ -0,0 +1,151 @@ +{ + "dataset_id": "c2", + "model": "tvae", + "target_column": "class", + "task_type": "classification", + "column_schema": [ + { + "name": "buying", + "role": "feature", + "semantic_type": "categorical", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 4, + "unique_ratio": 0.002894, + "example_values": [ + "vhigh", + "med", + "high", + "low" + ] + } + }, + { + "name": "maint", + "role": "feature", + "semantic_type": "categorical", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 4, + "unique_ratio": 0.002894, + "example_values": [ + "vhigh", + "low", + "med", + "high" + ] + } + }, + { + "name": "doors", + "role": "feature", + "semantic_type": "categorical", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 4, + "unique_ratio": 0.002894, + "example_values": [ + "2", + "5more", + "3", + "4" + ] + } + }, + { + "name": "persons", + "role": "feature", + "semantic_type": "categorical", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 3, + "unique_ratio": 0.002171, + "example_values": [ + "2", + "4", + "more" + ] + } + }, + { + "name": "lug_boot", + "role": "feature", + "semantic_type": "categorical", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 3, + "unique_ratio": 0.002171, + "example_values": [ + "small", + "big", + "med" + ] + } + }, + { + "name": "safety", + "role": "feature", + "semantic_type": "categorical", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 3, + "unique_ratio": 0.002171, + "example_values": [ + "low", + "high", + "med" + ] + } + }, + { + "name": "class", + "role": "target", + "semantic_type": "categorical", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 4, + "unique_ratio": 0.002894, + "example_values": [ + "unacc", + "good", + "acc", + "vgood" + ] + } + } + ], + "public_manifest": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/c2/tvae/tvae-c2-20260504_175027/public_gate/staged_input_manifest.json", + "train_csv": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/c2/tvae/tvae-c2-20260504_175027/staged/public/train.csv", + "val_csv": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/c2/tvae/tvae-c2-20260504_175027/staged/public/val.csv", + "test_csv": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/c2/tvae/tvae-c2-20260504_175027/staged/public/test.csv", + "features_json": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/c2/tvae/tvae-c2-20260504_175027/staged/public/staged_features.json", + "public_gate_report": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/c2/tvae/tvae-c2-20260504_175027/public_gate/public_gate_report.json" +} \ No newline at end of file diff --git a/hyperparameter/c2/tvae/tvae-c2-20260504_175027/tvae-c2-1382-20260504_175041.csv b/hyperparameter/c2/tvae/tvae-c2-20260504_175027/tvae-c2-1382-20260504_175041.csv new file mode 100644 index 0000000000000000000000000000000000000000..52de855ad6d8d3bf281e75cf4eed61b1ebb11e07 --- /dev/null +++ b/hyperparameter/c2/tvae/tvae-c2-20260504_175027/tvae-c2-1382-20260504_175041.csv @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:c35716ec2b3678e33bbe0beeafcc0fdc08b695166f0faa60a359cce73fe16eed +size 42288 diff --git a/hyperparameter/c2/tvae/tvae-c2-20260504_175027/tvae_metadata.json b/hyperparameter/c2/tvae/tvae-c2-20260504_175027/tvae_metadata.json new file mode 100644 index 0000000000000000000000000000000000000000..183d627ebc98e89233655ec98c9dcbc528c4c328 --- /dev/null +++ b/hyperparameter/c2/tvae/tvae-c2-20260504_175027/tvae_metadata.json @@ -0,0 +1,32 @@ +{ + "columns": [ + { + "name": "buying", + "type": "categorical" + }, + { + "name": "maint", + "type": "categorical" + }, + { + "name": "doors", + "type": "categorical" + }, + { + "name": "persons", + "type": "categorical" + }, + { + "name": "lug_boot", + "type": "categorical" + }, + { + "name": "safety", + "type": "categorical" + }, + { + "name": "class", + "type": "categorical" + } + ] +} \ No newline at end of file diff --git a/hyperparameter/c2/tvae/tvae-c2-20260504_175059/_tvae_generate.py b/hyperparameter/c2/tvae/tvae-c2-20260504_175059/_tvae_generate.py new file mode 100644 index 0000000000000000000000000000000000000000..9bdfcbea9bd89c4db99013044747122d14480916 --- /dev/null +++ b/hyperparameter/c2/tvae/tvae-c2-20260504_175059/_tvae_generate.py @@ -0,0 +1,23 @@ +import os, sys +sys.path.insert(0, "/work") +from src.SpecificModels.ctgan_joblib_parallel_cap import apply_parallel_cap_from_env +apply_parallel_cap_from_env() +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 +os.environ.setdefault("LOKY_MAX_CPU_COUNT", "8") +os.environ.setdefault("OPENBLAS_NUM_THREADS", "8") +os.environ.setdefault("MKL_NUM_THREADS", "8") +model = TVAE.load("/work/output-Benchmark-trainonly-v1/c2/tvae/tvae-c2-20260504_175059/models_300epochs/tvae_300epochs.pt") +total = 1382 +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-Benchmark-trainonly-v1/c2/tvae/tvae-c2-20260504_175059/tvae-c2-1382-20260504_175116.csv", index=False) +print(f"[TVAE] Generated {total} rows (chunks={len(parts)}) -> /work/output-Benchmark-trainonly-v1/c2/tvae/tvae-c2-20260504_175059/tvae-c2-1382-20260504_175116.csv") diff --git a/hyperparameter/c2/tvae/tvae-c2-20260504_175059/_tvae_train.py b/hyperparameter/c2/tvae/tvae-c2-20260504_175059/_tvae_train.py new file mode 100644 index 0000000000000000000000000000000000000000..16748e54eb9a1ae5a6f60d11a4f52397f67560f6 --- /dev/null +++ b/hyperparameter/c2/tvae/tvae-c2-20260504_175059/_tvae_train.py @@ -0,0 +1,39 @@ +import json, os, sys +sys.path.insert(0, "/work") +from src.SpecificModels.ctgan_joblib_parallel_cap import apply_parallel_cap_from_env +apply_parallel_cap_from_env() +import pandas as pd +from ctgan.data import read_csv +from ctgan.synthesizers.tvae import TVAE + +# Keep transform stage parallelism bounded for stability on shared host. +os.environ.setdefault("LOKY_MAX_CPU_COUNT", "8") +os.environ.setdefault("OPENBLAS_NUM_THREADS", "8") +os.environ.setdefault("MKL_NUM_THREADS", "8") +_nj = (os.environ.get("TVAE_CTGAN_JOBTRANS_N_JOBS") or "").strip() +if _nj: + print("[TVAE] joblib Parallel cap ON, TVAE_CTGAN_JOBTRANS_N_JOBS=" + _nj) +else: + print("[TVAE] joblib Parallel cap OFF (unset TVAE_CTGAN_JOBTRANS_N_JOBS)") +print("[TVAE] LOKY_MAX_CPU_COUNT=" + str(os.environ.get("LOKY_MAX_CPU_COUNT", ""))) + +csv_path = "/work/output-Benchmark-trainonly-v1/c2/tvae/tvae-c2-20260504_175059/staged/public/train.csv" +meta_path = "/work/output-Benchmark-trainonly-v1/c2/tvae/tvae-c2-20260504_175059/tvae_metadata.json" +save_path = "/work/output-Benchmark-trainonly-v1/c2/tvae/tvae-c2-20260504_175059/models_300epochs/tvae_300epochs.pt" +epochs = int(os.environ.get("TVAE_EPOCHS", 300)) +batch_size = int(os.environ.get("TVAE_BATCH_SIZE", "500")) +embedding_dim = int(os.environ.get("TVAE_EMBEDDING_DIM", "128")) +def _parse_dims(name, default): + raw = (os.environ.get(name) or "").strip() + if not raw: + return default + return tuple(int(x.strip()) for x in raw.split(",") if x.strip()) +compress_dims = _parse_dims("TVAE_COMPRESS_DIMS", (128, 128)) +decompress_dims = _parse_dims("TVAE_DECOMPRESS_DIMS", (128, 128)) + +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}, batch_size={batch_size}, embedding_dim={embedding_dim}, compress_dims={compress_dims}, decompress_dims={decompress_dims}") +model = TVAE(epochs=epochs, batch_size=batch_size, embedding_dim=embedding_dim, compress_dims=compress_dims, decompress_dims=decompress_dims) +model.fit(data, discrete_columns) +model.save(save_path) +print(f"[TVAE] Model saved -> {save_path}") diff --git a/hyperparameter/c2/tvae/tvae-c2-20260504_175059/gen_20260504_175116.log b/hyperparameter/c2/tvae/tvae-c2-20260504_175059/gen_20260504_175116.log new file mode 100644 index 0000000000000000000000000000000000000000..d49ada4499e260e32bafa422e2d1facee36f56f7 --- /dev/null +++ b/hyperparameter/c2/tvae/tvae-c2-20260504_175059/gen_20260504_175116.log @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:7273add7930ed5939cafe3d43ea1602d7885408ec8627e3f03bf7ca8aae8d86a +size 404 diff --git a/hyperparameter/c2/tvae/tvae-c2-20260504_175059/input_snapshot.json b/hyperparameter/c2/tvae/tvae-c2-20260504_175059/input_snapshot.json new file mode 100644 index 0000000000000000000000000000000000000000..9e28a5421f2176e174a0659e66a40054269fb2ac --- /dev/null +++ b/hyperparameter/c2/tvae/tvae-c2-20260504_175059/input_snapshot.json @@ -0,0 +1,36 @@ +{ + "dataset_id": "c2", + "model": "tvae", + "inputs": { + "train_csv": { + "path": "/data/jialinzhang/SynthesizePipeline-server/DatasetNew/c2/c2-train.csv", + "exists": true, + "size": 42948, + "sha256": "17bc560fa96bd00fb3b526e1e65bc91210b701d0d0a4e8bb9b4c5196cab56def" + }, + "val_csv": { + "path": "/data/jialinzhang/SynthesizePipeline-server/DatasetNew/c2/c2-val.csv", + "exists": true, + "size": 5349, + "sha256": "61e565eca62e65a7dccd9d51039a3170413379e10fc494e25870e7c4294863c9" + }, + "test_csv": { + "path": "/data/jialinzhang/SynthesizePipeline-server/DatasetNew/c2/c2-test.csv", + "exists": true, + "size": 5448, + "sha256": "cbcbb062a1faf5fa44b66c80532baa229e05b94fc42137269761e6c6d84af20a" + }, + "profile_json": { + "path": "/data/jialinzhang/SynthesizePipeline-server/DatasetNew/artifacts/data_core/tabular/c2/c2-dataset_profile.json", + "exists": true, + "size": 3240, + "sha256": "526b7163b2076c93c0bf4638438081ee8a6907065d5b608faa40d1a3dbc2a27b" + }, + "contract_json": { + "path": "/data/jialinzhang/SynthesizePipeline-server/DatasetNew/artifacts/data_core/tabular/c2/c2-dataset_contract_v1.json", + "exists": true, + "size": 3731, + "sha256": "fb595a876054c2ee9b4e10cfe83a5691588de1d25466cbb9d473c18ad3604009" + } + } +} \ No newline at end of file diff --git a/hyperparameter/c2/tvae/tvae-c2-20260504_175059/models_300epochs/train_20260504_175100.log b/hyperparameter/c2/tvae/tvae-c2-20260504_175059/models_300epochs/train_20260504_175100.log new file mode 100644 index 0000000000000000000000000000000000000000..f4b363f0e40c680a056ef1415fbb43824b139ec1 --- /dev/null +++ b/hyperparameter/c2/tvae/tvae-c2-20260504_175059/models_300epochs/train_20260504_175100.log @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:13d7f892be66207b52dd8124e5bbe5442b4e8fcd0668d9a502ea70381c6bc846 +size 619 diff --git a/hyperparameter/c2/tvae/tvae-c2-20260504_175059/models_300epochs/tvae_300epochs.pt b/hyperparameter/c2/tvae/tvae-c2-20260504_175059/models_300epochs/tvae_300epochs.pt new file mode 100644 index 0000000000000000000000000000000000000000..c1d147d3d16f2d818036c6c7e229480c733a81f1 --- /dev/null +++ b/hyperparameter/c2/tvae/tvae-c2-20260504_175059/models_300epochs/tvae_300epochs.pt @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:05b303a596195c046df86ed9e9dd4aeac7f0072cc58d433b73a2cbafe0c93e12 +size 319852 diff --git a/hyperparameter/c2/tvae/tvae-c2-20260504_175059/public_gate/normalized_schema_snapshot.json b/hyperparameter/c2/tvae/tvae-c2-20260504_175059/public_gate/normalized_schema_snapshot.json new file mode 100644 index 0000000000000000000000000000000000000000..689b1d00d96508e44ba40e58dc4560e19afc2b3b --- /dev/null +++ b/hyperparameter/c2/tvae/tvae-c2-20260504_175059/public_gate/normalized_schema_snapshot.json @@ -0,0 +1,144 @@ +{ + "dataset_id": "c2", + "target_column": "class", + "task_type": "classification", + "columns": [ + { + "name": "buying", + "role": "feature", + "semantic_type": "categorical", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 4, + "unique_ratio": 0.002894, + "example_values": [ + "vhigh", + "med", + "high", + "low" + ] + } + }, + { + "name": "maint", + "role": "feature", + "semantic_type": "categorical", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 4, + "unique_ratio": 0.002894, + "example_values": [ + "vhigh", + "low", + "med", + "high" + ] + } + }, + { + "name": "doors", + "role": "feature", + "semantic_type": "categorical", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 4, + "unique_ratio": 0.002894, + "example_values": [ + "2", + "5more", + "3", + "4" + ] + } + }, + { + "name": "persons", + "role": "feature", + "semantic_type": "categorical", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 3, + "unique_ratio": 0.002171, + "example_values": [ + "2", + "4", + "more" + ] + } + }, + { + "name": "lug_boot", + "role": "feature", + "semantic_type": "categorical", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 3, + "unique_ratio": 0.002171, + "example_values": [ + "small", + "big", + "med" + ] + } + }, + { + "name": "safety", + "role": "feature", + "semantic_type": "categorical", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 3, + "unique_ratio": 0.002171, + "example_values": [ + "low", + "high", + "med" + ] + } + }, + { + "name": "class", + "role": "target", + "semantic_type": "categorical", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 4, + "unique_ratio": 0.002894, + "example_values": [ + "unacc", + "good", + "acc", + "vgood" + ] + } + } + ] +} \ No newline at end of file diff --git a/hyperparameter/c2/tvae/tvae-c2-20260504_175059/public_gate/public_gate_report.json b/hyperparameter/c2/tvae/tvae-c2-20260504_175059/public_gate/public_gate_report.json new file mode 100644 index 0000000000000000000000000000000000000000..2e4cdcb2a4e28e40d59b17a83e773f622b7636a5 --- /dev/null +++ b/hyperparameter/c2/tvae/tvae-c2-20260504_175059/public_gate/public_gate_report.json @@ -0,0 +1,37 @@ +{ + "dataset_id": "c2", + "status": "pass", + "checks": [ + { + "check_id": "PG001_csv_parse_ok", + "status": "pass" + }, + { + "check_id": "PG002_split_header_consistent", + "status": "pass" + }, + { + "check_id": "PG003_profile_header_match", + "status": "pass" + }, + { + "check_id": "PG004_missing_token_normalized", + "status": "pass" + }, + { + "check_id": "PG005_semantic_type_validated", + "status": "pass" + }, + { + "check_id": "PG006_target_defined_and_valid", + "status": "pass" + } + ], + "target_column": "class", + "task_type": "classification", + "input_splits": { + "train": "/data/jialinzhang/SynthesizePipeline-server/DatasetNew/c2/c2-train.csv", + "val": "/data/jialinzhang/SynthesizePipeline-server/DatasetNew/c2/c2-val.csv", + "test": "/data/jialinzhang/SynthesizePipeline-server/DatasetNew/c2/c2-test.csv" + } +} \ No newline at end of file diff --git a/hyperparameter/c2/tvae/tvae-c2-20260504_175059/public_gate/staged_input_manifest.json b/hyperparameter/c2/tvae/tvae-c2-20260504_175059/public_gate/staged_input_manifest.json new file mode 100644 index 0000000000000000000000000000000000000000..a1dd8f289c4edf67a2cd2fb29e1d242f70efeb9a --- /dev/null +++ b/hyperparameter/c2/tvae/tvae-c2-20260504_175059/public_gate/staged_input_manifest.json @@ -0,0 +1,149 @@ +{ + "dataset_id": "c2", + "target_column": "class", + "task_type": "classification", + "train_csv": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/c2/tvae/tvae-c2-20260504_175059/staged/public/train.csv", + "val_csv": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/c2/tvae/tvae-c2-20260504_175059/staged/public/val.csv", + "test_csv": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/c2/tvae/tvae-c2-20260504_175059/staged/public/test.csv", + "features_json": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/c2/tvae/tvae-c2-20260504_175059/staged/public/staged_features.json", + "public_gate_report": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/c2/tvae/tvae-c2-20260504_175059/public_gate/public_gate_report.json", + "column_schema": [ + { + "name": "buying", + "role": "feature", + "semantic_type": "categorical", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 4, + "unique_ratio": 0.002894, + "example_values": [ + "vhigh", + "med", + "high", + "low" + ] + } + }, + { + "name": "maint", + "role": "feature", + "semantic_type": "categorical", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 4, + "unique_ratio": 0.002894, + "example_values": [ + "vhigh", + "low", + "med", + "high" + ] + } + }, + { + "name": "doors", + "role": "feature", + "semantic_type": "categorical", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 4, + "unique_ratio": 0.002894, + "example_values": [ + "2", + "5more", + "3", + "4" + ] + } + }, + { + "name": "persons", + "role": "feature", + "semantic_type": "categorical", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 3, + "unique_ratio": 0.002171, + "example_values": [ + "2", + "4", + "more" + ] + } + }, + { + "name": "lug_boot", + "role": "feature", + "semantic_type": "categorical", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 3, + "unique_ratio": 0.002171, + "example_values": [ + "small", + "big", + "med" + ] + } + }, + { + "name": "safety", + "role": "feature", + "semantic_type": "categorical", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 3, + "unique_ratio": 0.002171, + "example_values": [ + "low", + "high", + "med" + ] + } + }, + { + "name": "class", + "role": "target", + "semantic_type": "categorical", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 4, + "unique_ratio": 0.002894, + "example_values": [ + "unacc", + "good", + "acc", + "vgood" + ] + } + } + ] +} \ No newline at end of file diff --git a/hyperparameter/c2/tvae/tvae-c2-20260504_175059/run_config.json b/hyperparameter/c2/tvae/tvae-c2-20260504_175059/run_config.json new file mode 100644 index 0000000000000000000000000000000000000000..9d5bf1b03dd5312dc8f0b6b480c2d8333e42ff85 --- /dev/null +++ b/hyperparameter/c2/tvae/tvae-c2-20260504_175059/run_config.json @@ -0,0 +1,45 @@ +{ + "schema_version": 1, + "recorded_at": "2026-05-04T17:51:00", + "dataset_id": "c2", + "model": "tvae", + "work_dir": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/c2/tvae/tvae-c2-20260504_175059", + "dataset_source_requested": "new", + "dataset_source_resolved": "new", + "cli_args": { + "model": "tvae", + "dataset": "c2", + "dataset_source": "new", + "train": true, + "generate": true, + "num_rows": 0, + "epochs": null, + "output_dir": null, + "model_dir": null, + "work_dir": null, + "resume": false, + "no_stats": false + }, + "resolved": { + "num_rows": 1382, + "model_path": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/c2/tvae/tvae-c2-20260504_175059/models_300epochs/tvae_300epochs.pt", + "output_csv": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/c2/tvae/tvae-c2-20260504_175059/tvae-c2-1382-20260504_175116.csv" + }, + "input_artifacts": { + "public_gate_report": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/c2/tvae/tvae-c2-20260504_175059/public_gate/public_gate_report.json", + "public_manifest": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/c2/tvae/tvae-c2-20260504_175059/public_gate/staged_input_manifest.json", + "model_manifest": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/c2/tvae/tvae-c2-20260504_175059/staged/tvae/model_input_manifest.json", + "train_csv": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/c2/tvae/tvae-c2-20260504_175059/staged/public/train.csv", + "features_json": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/c2/tvae/tvae-c2-20260504_175059/staged/public/staged_features.json", + "target_column": "class", + "task_type": "classification" + }, + "env_overrides": { + "BENCHMARK_TVAE_GPUS": "device=3", + "TVAE_BATCH_SIZE": "256", + "TVAE_COMPRESS_DIMS": "128,128", + "TVAE_DECOMPRESS_DIMS": "128,128", + "TVAE_EMBEDDING_DIM": "64", + "TVAE_EPOCHS": "200" + } +} \ No newline at end of file diff --git a/hyperparameter/c2/tvae/tvae-c2-20260504_175059/runtime_result.json b/hyperparameter/c2/tvae/tvae-c2-20260504_175059/runtime_result.json new file mode 100644 index 0000000000000000000000000000000000000000..498a194563371d3471c9dc07442f9249c2fb375e --- /dev/null +++ b/hyperparameter/c2/tvae/tvae-c2-20260504_175059/runtime_result.json @@ -0,0 +1,27 @@ +{ + "dataset_id": "c2", + "model": "tvae", + "run_id": "tvae-c2-20260504_175059", + "public_gate_status": "pass", + "adapter_ready_status": "pass", + "train_status": "success", + "generate_status": "success", + "reason_code": null, + "reason_detail": null, + "artifacts": { + "synthetic_csv": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/c2/tvae/tvae-c2-20260504_175059/tvae-c2-1382-20260504_175116.csv", + "model_path": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/c2/tvae/tvae-c2-20260504_175059/models_300epochs/tvae_300epochs.pt" + }, + "timings": { + "train": { + "started_at": "2026-05-04T17:51:00", + "ended_at": "2026-05-04T17:51:16", + "duration_sec": 16.884 + }, + "generate": { + "started_at": "2026-05-04T17:51:16", + "ended_at": "2026-05-04T17:51:21", + "duration_sec": 5.026 + } + } +} \ No newline at end of file diff --git a/hyperparameter/c2/tvae/tvae-c2-20260504_175059/staged/public/staged_features.json b/hyperparameter/c2/tvae/tvae-c2-20260504_175059/staged/public/staged_features.json new file mode 100644 index 0000000000000000000000000000000000000000..61783861dd5de501592f76acb0469cf3f3b2622a --- /dev/null +++ b/hyperparameter/c2/tvae/tvae-c2-20260504_175059/staged/public/staged_features.json @@ -0,0 +1,37 @@ +[ + { + "feature_name": "buying", + "data_type": "categorical", + "is_target": false + }, + { + "feature_name": "maint", + "data_type": "categorical", + "is_target": false + }, + { + "feature_name": "doors", + "data_type": "categorical", + "is_target": false + }, + { + "feature_name": "persons", + "data_type": "categorical", + "is_target": false + }, + { + "feature_name": "lug_boot", + "data_type": "categorical", + "is_target": false + }, + { + "feature_name": "safety", + "data_type": "categorical", + "is_target": false + }, + { + "feature_name": "class", + "data_type": "categorical", + "is_target": true + } +] \ No newline at end of file diff --git a/hyperparameter/c2/tvae/tvae-c2-20260504_175059/staged/public/test.csv b/hyperparameter/c2/tvae/tvae-c2-20260504_175059/staged/public/test.csv new file mode 100644 index 0000000000000000000000000000000000000000..392a0d7189a34d8f13ecf20a99d64b03230d517c --- /dev/null +++ b/hyperparameter/c2/tvae/tvae-c2-20260504_175059/staged/public/test.csv @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:b48114a7d0bc5bd9a07920f903c8d4aba8bf98bf2a66a050da03588b0245ca73 +size 5273 diff --git a/hyperparameter/c2/tvae/tvae-c2-20260504_175059/staged/public/train.csv b/hyperparameter/c2/tvae/tvae-c2-20260504_175059/staged/public/train.csv new file mode 100644 index 0000000000000000000000000000000000000000..da4f4d55134eebc0e51157d0d467536371db1484 --- /dev/null +++ b/hyperparameter/c2/tvae/tvae-c2-20260504_175059/staged/public/train.csv @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:4aed00c2c2b3f88a55a7ebff31b2e1b5e0e32fb0a7267e0b9d2779cd23e434dd +size 41565 diff --git a/hyperparameter/c2/tvae/tvae-c2-20260504_175059/staged/public/val.csv b/hyperparameter/c2/tvae/tvae-c2-20260504_175059/staged/public/val.csv new file mode 100644 index 0000000000000000000000000000000000000000..af8caf7ee42524188534a3daf32996dc491952d9 --- /dev/null +++ b/hyperparameter/c2/tvae/tvae-c2-20260504_175059/staged/public/val.csv @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:26e90c1170a57a14c05832ac88027722b1f3848f9662c7c09ef7c93dcba4cc01 +size 5176 diff --git a/hyperparameter/c2/tvae/tvae-c2-20260504_175059/staged/tvae/adapter_report.json b/hyperparameter/c2/tvae/tvae-c2-20260504_175059/staged/tvae/adapter_report.json new file mode 100644 index 0000000000000000000000000000000000000000..f39e1ab317ffaaa0c489f1d152d3541f687bec20 --- /dev/null +++ b/hyperparameter/c2/tvae/tvae-c2-20260504_175059/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-Benchmark-trainonly-v1/c2/tvae/tvae-c2-20260504_175059/staged/tvae/model_input_manifest.json" +} \ No newline at end of file diff --git a/hyperparameter/c2/tvae/tvae-c2-20260504_175059/staged/tvae/adapter_transforms_applied.json b/hyperparameter/c2/tvae/tvae-c2-20260504_175059/staged/tvae/adapter_transforms_applied.json new file mode 100644 index 0000000000000000000000000000000000000000..0637a088a01e8ddab3bf3fa98dbe804cbde1a0dc --- /dev/null +++ b/hyperparameter/c2/tvae/tvae-c2-20260504_175059/staged/tvae/adapter_transforms_applied.json @@ -0,0 +1 @@ +[] \ No newline at end of file diff --git a/hyperparameter/c2/tvae/tvae-c2-20260504_175059/staged/tvae/model_input_manifest.json b/hyperparameter/c2/tvae/tvae-c2-20260504_175059/staged/tvae/model_input_manifest.json new file mode 100644 index 0000000000000000000000000000000000000000..a3d86b3bcd4548705a5cc753afef3a6d4838e19e --- /dev/null +++ b/hyperparameter/c2/tvae/tvae-c2-20260504_175059/staged/tvae/model_input_manifest.json @@ -0,0 +1,151 @@ +{ + "dataset_id": "c2", + "model": "tvae", + "target_column": "class", + "task_type": "classification", + "column_schema": [ + { + "name": "buying", + "role": "feature", + "semantic_type": "categorical", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 4, + "unique_ratio": 0.002894, + "example_values": [ + "vhigh", + "med", + "high", + "low" + ] + } + }, + { + "name": "maint", + "role": "feature", + "semantic_type": "categorical", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 4, + "unique_ratio": 0.002894, + "example_values": [ + "vhigh", + "low", + "med", + "high" + ] + } + }, + { + "name": "doors", + "role": "feature", + "semantic_type": "categorical", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 4, + "unique_ratio": 0.002894, + "example_values": [ + "2", + "5more", + "3", + "4" + ] + } + }, + { + "name": "persons", + "role": "feature", + "semantic_type": "categorical", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 3, + "unique_ratio": 0.002171, + "example_values": [ + "2", + "4", + "more" + ] + } + }, + { + "name": "lug_boot", + "role": "feature", + "semantic_type": "categorical", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 3, + "unique_ratio": 0.002171, + "example_values": [ + "small", + "big", + "med" + ] + } + }, + { + "name": "safety", + "role": "feature", + "semantic_type": "categorical", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 3, + "unique_ratio": 0.002171, + "example_values": [ + "low", + "high", + "med" + ] + } + }, + { + "name": "class", + "role": "target", + "semantic_type": "categorical", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 4, + "unique_ratio": 0.002894, + "example_values": [ + "unacc", + "good", + "acc", + "vgood" + ] + } + } + ], + "public_manifest": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/c2/tvae/tvae-c2-20260504_175059/public_gate/staged_input_manifest.json", + "train_csv": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/c2/tvae/tvae-c2-20260504_175059/staged/public/train.csv", + "val_csv": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/c2/tvae/tvae-c2-20260504_175059/staged/public/val.csv", + "test_csv": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/c2/tvae/tvae-c2-20260504_175059/staged/public/test.csv", + "features_json": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/c2/tvae/tvae-c2-20260504_175059/staged/public/staged_features.json", + "public_gate_report": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/c2/tvae/tvae-c2-20260504_175059/public_gate/public_gate_report.json" +} \ No newline at end of file diff --git a/hyperparameter/c2/tvae/tvae-c2-20260504_175059/tvae-c2-1382-20260504_175116.csv b/hyperparameter/c2/tvae/tvae-c2-20260504_175059/tvae-c2-1382-20260504_175116.csv new file mode 100644 index 0000000000000000000000000000000000000000..ed1aaacefa064433627b31272a6a0570e43c431a --- /dev/null +++ b/hyperparameter/c2/tvae/tvae-c2-20260504_175059/tvae-c2-1382-20260504_175116.csv @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:31e5e3a91a0418044bc61b09e258d72356c52e332b3e614c0699f5f2962fe56c +size 41725 diff --git a/hyperparameter/c2/tvae/tvae-c2-20260504_175059/tvae_metadata.json b/hyperparameter/c2/tvae/tvae-c2-20260504_175059/tvae_metadata.json new file mode 100644 index 0000000000000000000000000000000000000000..183d627ebc98e89233655ec98c9dcbc528c4c328 --- /dev/null +++ b/hyperparameter/c2/tvae/tvae-c2-20260504_175059/tvae_metadata.json @@ -0,0 +1,32 @@ +{ + "columns": [ + { + "name": "buying", + "type": "categorical" + }, + { + "name": "maint", + "type": "categorical" + }, + { + "name": "doors", + "type": "categorical" + }, + { + "name": "persons", + "type": "categorical" + }, + { + "name": "lug_boot", + "type": "categorical" + }, + { + "name": "safety", + "type": "categorical" + }, + { + "name": "class", + "type": "categorical" + } + ] +} \ No newline at end of file diff --git a/hyperparameter/c2/tvae/tvae-c2-20260504_175134/_tvae_generate.py b/hyperparameter/c2/tvae/tvae-c2-20260504_175134/_tvae_generate.py new file mode 100644 index 0000000000000000000000000000000000000000..c5f94d959d7eeaa29f9d882a3763d81f02da8b2e --- /dev/null +++ b/hyperparameter/c2/tvae/tvae-c2-20260504_175134/_tvae_generate.py @@ -0,0 +1,23 @@ +import os, sys +sys.path.insert(0, "/work") +from src.SpecificModels.ctgan_joblib_parallel_cap import apply_parallel_cap_from_env +apply_parallel_cap_from_env() +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 +os.environ.setdefault("LOKY_MAX_CPU_COUNT", "8") +os.environ.setdefault("OPENBLAS_NUM_THREADS", "8") +os.environ.setdefault("MKL_NUM_THREADS", "8") +model = TVAE.load("/work/output-Benchmark-trainonly-v1/c2/tvae/tvae-c2-20260504_175134/models_300epochs/tvae_300epochs.pt") +total = 1382 +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-Benchmark-trainonly-v1/c2/tvae/tvae-c2-20260504_175134/tvae-c2-1382-20260504_175151.csv", index=False) +print(f"[TVAE] Generated {total} rows (chunks={len(parts)}) -> /work/output-Benchmark-trainonly-v1/c2/tvae/tvae-c2-20260504_175134/tvae-c2-1382-20260504_175151.csv") diff --git a/hyperparameter/c2/tvae/tvae-c2-20260504_175134/_tvae_train.py b/hyperparameter/c2/tvae/tvae-c2-20260504_175134/_tvae_train.py new file mode 100644 index 0000000000000000000000000000000000000000..091e65996ed24436d0d0cec26d6e97b2d8a731cb --- /dev/null +++ b/hyperparameter/c2/tvae/tvae-c2-20260504_175134/_tvae_train.py @@ -0,0 +1,39 @@ +import json, os, sys +sys.path.insert(0, "/work") +from src.SpecificModels.ctgan_joblib_parallel_cap import apply_parallel_cap_from_env +apply_parallel_cap_from_env() +import pandas as pd +from ctgan.data import read_csv +from ctgan.synthesizers.tvae import TVAE + +# Keep transform stage parallelism bounded for stability on shared host. +os.environ.setdefault("LOKY_MAX_CPU_COUNT", "8") +os.environ.setdefault("OPENBLAS_NUM_THREADS", "8") +os.environ.setdefault("MKL_NUM_THREADS", "8") +_nj = (os.environ.get("TVAE_CTGAN_JOBTRANS_N_JOBS") or "").strip() +if _nj: + print("[TVAE] joblib Parallel cap ON, TVAE_CTGAN_JOBTRANS_N_JOBS=" + _nj) +else: + print("[TVAE] joblib Parallel cap OFF (unset TVAE_CTGAN_JOBTRANS_N_JOBS)") +print("[TVAE] LOKY_MAX_CPU_COUNT=" + str(os.environ.get("LOKY_MAX_CPU_COUNT", ""))) + +csv_path = "/work/output-Benchmark-trainonly-v1/c2/tvae/tvae-c2-20260504_175134/staged/public/train.csv" +meta_path = "/work/output-Benchmark-trainonly-v1/c2/tvae/tvae-c2-20260504_175134/tvae_metadata.json" +save_path = "/work/output-Benchmark-trainonly-v1/c2/tvae/tvae-c2-20260504_175134/models_300epochs/tvae_300epochs.pt" +epochs = int(os.environ.get("TVAE_EPOCHS", 300)) +batch_size = int(os.environ.get("TVAE_BATCH_SIZE", "500")) +embedding_dim = int(os.environ.get("TVAE_EMBEDDING_DIM", "128")) +def _parse_dims(name, default): + raw = (os.environ.get(name) or "").strip() + if not raw: + return default + return tuple(int(x.strip()) for x in raw.split(",") if x.strip()) +compress_dims = _parse_dims("TVAE_COMPRESS_DIMS", (128, 128)) +decompress_dims = _parse_dims("TVAE_DECOMPRESS_DIMS", (128, 128)) + +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}, batch_size={batch_size}, embedding_dim={embedding_dim}, compress_dims={compress_dims}, decompress_dims={decompress_dims}") +model = TVAE(epochs=epochs, batch_size=batch_size, embedding_dim=embedding_dim, compress_dims=compress_dims, decompress_dims=decompress_dims) +model.fit(data, discrete_columns) +model.save(save_path) +print(f"[TVAE] Model saved -> {save_path}") diff --git a/hyperparameter/c2/tvae/tvae-c2-20260504_175134/gen_20260504_175151.log b/hyperparameter/c2/tvae/tvae-c2-20260504_175134/gen_20260504_175151.log new file mode 100644 index 0000000000000000000000000000000000000000..7eadd238040dc89416ea5fb86cf52da087bf5a71 --- /dev/null +++ b/hyperparameter/c2/tvae/tvae-c2-20260504_175134/gen_20260504_175151.log @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:40511260bd9eb00dcc35cfc95b37da03e79a617b156ee312d5e0a42d69f03ec5 +size 404 diff --git a/hyperparameter/c2/tvae/tvae-c2-20260504_175134/input_snapshot.json b/hyperparameter/c2/tvae/tvae-c2-20260504_175134/input_snapshot.json new file mode 100644 index 0000000000000000000000000000000000000000..9e28a5421f2176e174a0659e66a40054269fb2ac --- /dev/null +++ b/hyperparameter/c2/tvae/tvae-c2-20260504_175134/input_snapshot.json @@ -0,0 +1,36 @@ +{ + "dataset_id": "c2", + "model": "tvae", + "inputs": { + "train_csv": { + "path": "/data/jialinzhang/SynthesizePipeline-server/DatasetNew/c2/c2-train.csv", + "exists": true, + "size": 42948, + "sha256": "17bc560fa96bd00fb3b526e1e65bc91210b701d0d0a4e8bb9b4c5196cab56def" + }, + "val_csv": { + "path": "/data/jialinzhang/SynthesizePipeline-server/DatasetNew/c2/c2-val.csv", + "exists": true, + "size": 5349, + "sha256": "61e565eca62e65a7dccd9d51039a3170413379e10fc494e25870e7c4294863c9" + }, + "test_csv": { + "path": "/data/jialinzhang/SynthesizePipeline-server/DatasetNew/c2/c2-test.csv", + "exists": true, + "size": 5448, + "sha256": "cbcbb062a1faf5fa44b66c80532baa229e05b94fc42137269761e6c6d84af20a" + }, + "profile_json": { + "path": "/data/jialinzhang/SynthesizePipeline-server/DatasetNew/artifacts/data_core/tabular/c2/c2-dataset_profile.json", + "exists": true, + "size": 3240, + "sha256": "526b7163b2076c93c0bf4638438081ee8a6907065d5b608faa40d1a3dbc2a27b" + }, + "contract_json": { + "path": "/data/jialinzhang/SynthesizePipeline-server/DatasetNew/artifacts/data_core/tabular/c2/c2-dataset_contract_v1.json", + "exists": true, + "size": 3731, + "sha256": "fb595a876054c2ee9b4e10cfe83a5691588de1d25466cbb9d473c18ad3604009" + } + } +} \ No newline at end of file diff --git a/hyperparameter/c2/tvae/tvae-c2-20260504_175134/models_300epochs/train_20260504_175134.log b/hyperparameter/c2/tvae/tvae-c2-20260504_175134/models_300epochs/train_20260504_175134.log new file mode 100644 index 0000000000000000000000000000000000000000..75f36e6e8bc72d6ec568cd3e2d86064d800a9dfe --- /dev/null +++ b/hyperparameter/c2/tvae/tvae-c2-20260504_175134/models_300epochs/train_20260504_175134.log @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:e7d33708ecbb6ef5a07bd3355c804b12ee37c50055d190d2d2034a51d3b6c95e +size 619 diff --git a/hyperparameter/c2/tvae/tvae-c2-20260504_175134/models_300epochs/tvae_300epochs.pt b/hyperparameter/c2/tvae/tvae-c2-20260504_175134/models_300epochs/tvae_300epochs.pt new file mode 100644 index 0000000000000000000000000000000000000000..32e8acd1b1837e47a3c1a4545a9b1765d6996774 --- /dev/null +++ b/hyperparameter/c2/tvae/tvae-c2-20260504_175134/models_300epochs/tvae_300epochs.pt @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:61cb2ff2172d59d7221cfda8f98a518f8db67166a7fc0011342913cc46d7170d +size 620844 diff --git a/hyperparameter/c2/tvae/tvae-c2-20260504_175134/public_gate/normalized_schema_snapshot.json b/hyperparameter/c2/tvae/tvae-c2-20260504_175134/public_gate/normalized_schema_snapshot.json new file mode 100644 index 0000000000000000000000000000000000000000..689b1d00d96508e44ba40e58dc4560e19afc2b3b --- /dev/null +++ b/hyperparameter/c2/tvae/tvae-c2-20260504_175134/public_gate/normalized_schema_snapshot.json @@ -0,0 +1,144 @@ +{ + "dataset_id": "c2", + "target_column": "class", + "task_type": "classification", + "columns": [ + { + "name": "buying", + "role": "feature", + "semantic_type": "categorical", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 4, + "unique_ratio": 0.002894, + "example_values": [ + "vhigh", + "med", + "high", + "low" + ] + } + }, + { + "name": "maint", + "role": "feature", + "semantic_type": "categorical", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 4, + "unique_ratio": 0.002894, + "example_values": [ + "vhigh", + "low", + "med", + "high" + ] + } + }, + { + "name": "doors", + "role": "feature", + "semantic_type": "categorical", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 4, + "unique_ratio": 0.002894, + "example_values": [ + "2", + "5more", + "3", + "4" + ] + } + }, + { + "name": "persons", + "role": "feature", + "semantic_type": "categorical", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 3, + "unique_ratio": 0.002171, + "example_values": [ + "2", + "4", + "more" + ] + } + }, + { + "name": "lug_boot", + "role": "feature", + "semantic_type": "categorical", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 3, + "unique_ratio": 0.002171, + "example_values": [ + "small", + "big", + "med" + ] + } + }, + { + "name": "safety", + "role": "feature", + "semantic_type": "categorical", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 3, + "unique_ratio": 0.002171, + "example_values": [ + "low", + "high", + "med" + ] + } + }, + { + "name": "class", + "role": "target", + "semantic_type": "categorical", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 4, + "unique_ratio": 0.002894, + "example_values": [ + "unacc", + "good", + "acc", + "vgood" + ] + } + } + ] +} \ No newline at end of file diff --git a/hyperparameter/c2/tvae/tvae-c2-20260504_175134/public_gate/public_gate_report.json b/hyperparameter/c2/tvae/tvae-c2-20260504_175134/public_gate/public_gate_report.json new file mode 100644 index 0000000000000000000000000000000000000000..2e4cdcb2a4e28e40d59b17a83e773f622b7636a5 --- /dev/null +++ b/hyperparameter/c2/tvae/tvae-c2-20260504_175134/public_gate/public_gate_report.json @@ -0,0 +1,37 @@ +{ + "dataset_id": "c2", + "status": "pass", + "checks": [ + { + "check_id": "PG001_csv_parse_ok", + "status": "pass" + }, + { + "check_id": "PG002_split_header_consistent", + "status": "pass" + }, + { + "check_id": "PG003_profile_header_match", + "status": "pass" + }, + { + "check_id": "PG004_missing_token_normalized", + "status": "pass" + }, + { + "check_id": "PG005_semantic_type_validated", + "status": "pass" + }, + { + "check_id": "PG006_target_defined_and_valid", + "status": "pass" + } + ], + "target_column": "class", + "task_type": "classification", + "input_splits": { + "train": "/data/jialinzhang/SynthesizePipeline-server/DatasetNew/c2/c2-train.csv", + "val": "/data/jialinzhang/SynthesizePipeline-server/DatasetNew/c2/c2-val.csv", + "test": "/data/jialinzhang/SynthesizePipeline-server/DatasetNew/c2/c2-test.csv" + } +} \ No newline at end of file diff --git a/hyperparameter/c2/tvae/tvae-c2-20260504_175134/public_gate/staged_input_manifest.json b/hyperparameter/c2/tvae/tvae-c2-20260504_175134/public_gate/staged_input_manifest.json new file mode 100644 index 0000000000000000000000000000000000000000..954ee901c436870528834dbd01f691a15d3d9dc7 --- /dev/null +++ b/hyperparameter/c2/tvae/tvae-c2-20260504_175134/public_gate/staged_input_manifest.json @@ -0,0 +1,149 @@ +{ + "dataset_id": "c2", + "target_column": "class", + "task_type": "classification", + "train_csv": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/c2/tvae/tvae-c2-20260504_175134/staged/public/train.csv", + "val_csv": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/c2/tvae/tvae-c2-20260504_175134/staged/public/val.csv", + "test_csv": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/c2/tvae/tvae-c2-20260504_175134/staged/public/test.csv", + "features_json": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/c2/tvae/tvae-c2-20260504_175134/staged/public/staged_features.json", + "public_gate_report": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/c2/tvae/tvae-c2-20260504_175134/public_gate/public_gate_report.json", + "column_schema": [ + { + "name": "buying", + "role": "feature", + "semantic_type": "categorical", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 4, + "unique_ratio": 0.002894, + "example_values": [ + "vhigh", + "med", + "high", + "low" + ] + } + }, + { + "name": "maint", + "role": "feature", + "semantic_type": "categorical", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 4, + "unique_ratio": 0.002894, + "example_values": [ + "vhigh", + "low", + "med", + "high" + ] + } + }, + { + "name": "doors", + "role": "feature", + "semantic_type": "categorical", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 4, + "unique_ratio": 0.002894, + "example_values": [ + "2", + "5more", + "3", + "4" + ] + } + }, + { + "name": "persons", + "role": "feature", + "semantic_type": "categorical", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 3, + "unique_ratio": 0.002171, + "example_values": [ + "2", + "4", + "more" + ] + } + }, + { + "name": "lug_boot", + "role": "feature", + "semantic_type": "categorical", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 3, + "unique_ratio": 0.002171, + "example_values": [ + "small", + "big", + "med" + ] + } + }, + { + "name": "safety", + "role": "feature", + "semantic_type": "categorical", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 3, + "unique_ratio": 0.002171, + "example_values": [ + "low", + "high", + "med" + ] + } + }, + { + "name": "class", + "role": "target", + "semantic_type": "categorical", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 4, + "unique_ratio": 0.002894, + "example_values": [ + "unacc", + "good", + "acc", + "vgood" + ] + } + } + ] +} \ No newline at end of file diff --git a/hyperparameter/c2/tvae/tvae-c2-20260504_175134/run_config.json b/hyperparameter/c2/tvae/tvae-c2-20260504_175134/run_config.json new file mode 100644 index 0000000000000000000000000000000000000000..108d7de688c2694ec1c049e873ddc406ac7190ae --- /dev/null +++ b/hyperparameter/c2/tvae/tvae-c2-20260504_175134/run_config.json @@ -0,0 +1,45 @@ +{ + "schema_version": 1, + "recorded_at": "2026-05-04T17:51:34", + "dataset_id": "c2", + "model": "tvae", + "work_dir": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/c2/tvae/tvae-c2-20260504_175134", + "dataset_source_requested": "new", + "dataset_source_resolved": "new", + "cli_args": { + "model": "tvae", + "dataset": "c2", + "dataset_source": "new", + "train": true, + "generate": true, + "num_rows": 0, + "epochs": null, + "output_dir": null, + "model_dir": null, + "work_dir": null, + "resume": false, + "no_stats": false + }, + "resolved": { + "num_rows": 1382, + "model_path": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/c2/tvae/tvae-c2-20260504_175134/models_300epochs/tvae_300epochs.pt", + "output_csv": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/c2/tvae/tvae-c2-20260504_175134/tvae-c2-1382-20260504_175151.csv" + }, + "input_artifacts": { + "public_gate_report": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/c2/tvae/tvae-c2-20260504_175134/public_gate/public_gate_report.json", + "public_manifest": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/c2/tvae/tvae-c2-20260504_175134/public_gate/staged_input_manifest.json", + "model_manifest": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/c2/tvae/tvae-c2-20260504_175134/staged/tvae/model_input_manifest.json", + "train_csv": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/c2/tvae/tvae-c2-20260504_175134/staged/public/train.csv", + "features_json": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/c2/tvae/tvae-c2-20260504_175134/staged/public/staged_features.json", + "target_column": "class", + "task_type": "classification" + }, + "env_overrides": { + "BENCHMARK_TVAE_GPUS": "device=3", + "TVAE_BATCH_SIZE": "500", + "TVAE_COMPRESS_DIMS": "256,256", + "TVAE_DECOMPRESS_DIMS": "256,256", + "TVAE_EMBEDDING_DIM": "128", + "TVAE_EPOCHS": "300" + } +} \ No newline at end of file diff --git a/hyperparameter/c2/tvae/tvae-c2-20260504_175134/runtime_result.json b/hyperparameter/c2/tvae/tvae-c2-20260504_175134/runtime_result.json new file mode 100644 index 0000000000000000000000000000000000000000..cb5e0c36d106bd81f81366cae2601095a6582ca2 --- /dev/null +++ b/hyperparameter/c2/tvae/tvae-c2-20260504_175134/runtime_result.json @@ -0,0 +1,27 @@ +{ + "dataset_id": "c2", + "model": "tvae", + "run_id": "tvae-c2-20260504_175134", + "public_gate_status": "pass", + "adapter_ready_status": "pass", + "train_status": "success", + "generate_status": "success", + "reason_code": null, + "reason_detail": null, + "artifacts": { + "synthetic_csv": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/c2/tvae/tvae-c2-20260504_175134/tvae-c2-1382-20260504_175151.csv", + "model_path": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/c2/tvae/tvae-c2-20260504_175134/models_300epochs/tvae_300epochs.pt" + }, + "timings": { + "train": { + "started_at": "2026-05-04T17:51:34", + "ended_at": "2026-05-04T17:51:51", + "duration_sec": 16.259 + }, + "generate": { + "started_at": "2026-05-04T17:51:51", + "ended_at": "2026-05-04T17:51:56", + "duration_sec": 5.045 + } + } +} \ No newline at end of file diff --git a/hyperparameter/c2/tvae/tvae-c2-20260504_175134/staged/public/staged_features.json b/hyperparameter/c2/tvae/tvae-c2-20260504_175134/staged/public/staged_features.json new file mode 100644 index 0000000000000000000000000000000000000000..61783861dd5de501592f76acb0469cf3f3b2622a --- /dev/null +++ b/hyperparameter/c2/tvae/tvae-c2-20260504_175134/staged/public/staged_features.json @@ -0,0 +1,37 @@ +[ + { + "feature_name": "buying", + "data_type": "categorical", + "is_target": false + }, + { + "feature_name": "maint", + "data_type": "categorical", + "is_target": false + }, + { + "feature_name": "doors", + "data_type": "categorical", + "is_target": false + }, + { + "feature_name": "persons", + "data_type": "categorical", + "is_target": false + }, + { + "feature_name": "lug_boot", + "data_type": "categorical", + "is_target": false + }, + { + "feature_name": "safety", + "data_type": "categorical", + "is_target": false + }, + { + "feature_name": "class", + "data_type": "categorical", + "is_target": true + } +] \ No newline at end of file diff --git a/hyperparameter/c2/tvae/tvae-c2-20260504_175134/staged/public/test.csv b/hyperparameter/c2/tvae/tvae-c2-20260504_175134/staged/public/test.csv new file mode 100644 index 0000000000000000000000000000000000000000..392a0d7189a34d8f13ecf20a99d64b03230d517c --- /dev/null +++ b/hyperparameter/c2/tvae/tvae-c2-20260504_175134/staged/public/test.csv @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:b48114a7d0bc5bd9a07920f903c8d4aba8bf98bf2a66a050da03588b0245ca73 +size 5273 diff --git a/hyperparameter/c2/tvae/tvae-c2-20260504_175134/staged/public/train.csv b/hyperparameter/c2/tvae/tvae-c2-20260504_175134/staged/public/train.csv new file mode 100644 index 0000000000000000000000000000000000000000..da4f4d55134eebc0e51157d0d467536371db1484 --- /dev/null +++ b/hyperparameter/c2/tvae/tvae-c2-20260504_175134/staged/public/train.csv @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:4aed00c2c2b3f88a55a7ebff31b2e1b5e0e32fb0a7267e0b9d2779cd23e434dd +size 41565 diff --git a/hyperparameter/c2/tvae/tvae-c2-20260504_175134/staged/public/val.csv b/hyperparameter/c2/tvae/tvae-c2-20260504_175134/staged/public/val.csv new file mode 100644 index 0000000000000000000000000000000000000000..af8caf7ee42524188534a3daf32996dc491952d9 --- /dev/null +++ b/hyperparameter/c2/tvae/tvae-c2-20260504_175134/staged/public/val.csv @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:26e90c1170a57a14c05832ac88027722b1f3848f9662c7c09ef7c93dcba4cc01 +size 5176 diff --git a/hyperparameter/c2/tvae/tvae-c2-20260504_175134/staged/tvae/adapter_report.json b/hyperparameter/c2/tvae/tvae-c2-20260504_175134/staged/tvae/adapter_report.json new file mode 100644 index 0000000000000000000000000000000000000000..d15ac7350977f377e07a67ea190641bcb1e59862 --- /dev/null +++ b/hyperparameter/c2/tvae/tvae-c2-20260504_175134/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-Benchmark-trainonly-v1/c2/tvae/tvae-c2-20260504_175134/staged/tvae/model_input_manifest.json" +} \ No newline at end of file diff --git a/hyperparameter/c2/tvae/tvae-c2-20260504_175134/staged/tvae/adapter_transforms_applied.json b/hyperparameter/c2/tvae/tvae-c2-20260504_175134/staged/tvae/adapter_transforms_applied.json new file mode 100644 index 0000000000000000000000000000000000000000..0637a088a01e8ddab3bf3fa98dbe804cbde1a0dc --- /dev/null +++ b/hyperparameter/c2/tvae/tvae-c2-20260504_175134/staged/tvae/adapter_transforms_applied.json @@ -0,0 +1 @@ +[] \ No newline at end of file diff --git a/hyperparameter/c2/tvae/tvae-c2-20260504_175134/staged/tvae/model_input_manifest.json b/hyperparameter/c2/tvae/tvae-c2-20260504_175134/staged/tvae/model_input_manifest.json new file mode 100644 index 0000000000000000000000000000000000000000..3d40ff2b935773ff96bb0fad06628e8a7fd619a9 --- /dev/null +++ b/hyperparameter/c2/tvae/tvae-c2-20260504_175134/staged/tvae/model_input_manifest.json @@ -0,0 +1,151 @@ +{ + "dataset_id": "c2", + "model": "tvae", + "target_column": "class", + "task_type": "classification", + "column_schema": [ + { + "name": "buying", + "role": "feature", + "semantic_type": "categorical", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 4, + "unique_ratio": 0.002894, + "example_values": [ + "vhigh", + "med", + "high", + "low" + ] + } + }, + { + "name": "maint", + "role": "feature", + "semantic_type": "categorical", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 4, + "unique_ratio": 0.002894, + "example_values": [ + "vhigh", + "low", + "med", + "high" + ] + } + }, + { + "name": "doors", + "role": "feature", + "semantic_type": "categorical", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 4, + "unique_ratio": 0.002894, + "example_values": [ + "2", + "5more", + "3", + "4" + ] + } + }, + { + "name": "persons", + "role": "feature", + "semantic_type": "categorical", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 3, + "unique_ratio": 0.002171, + "example_values": [ + "2", + "4", + "more" + ] + } + }, + { + "name": "lug_boot", + "role": "feature", + "semantic_type": "categorical", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 3, + "unique_ratio": 0.002171, + "example_values": [ + "small", + "big", + "med" + ] + } + }, + { + "name": "safety", + "role": "feature", + "semantic_type": "categorical", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 3, + "unique_ratio": 0.002171, + "example_values": [ + "low", + "high", + "med" + ] + } + }, + { + "name": "class", + "role": "target", + "semantic_type": "categorical", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 4, + "unique_ratio": 0.002894, + "example_values": [ + "unacc", + "good", + "acc", + "vgood" + ] + } + } + ], + "public_manifest": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/c2/tvae/tvae-c2-20260504_175134/public_gate/staged_input_manifest.json", + "train_csv": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/c2/tvae/tvae-c2-20260504_175134/staged/public/train.csv", + "val_csv": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/c2/tvae/tvae-c2-20260504_175134/staged/public/val.csv", + "test_csv": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/c2/tvae/tvae-c2-20260504_175134/staged/public/test.csv", + "features_json": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/c2/tvae/tvae-c2-20260504_175134/staged/public/staged_features.json", + "public_gate_report": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/c2/tvae/tvae-c2-20260504_175134/public_gate/public_gate_report.json" +} \ No newline at end of file diff --git a/hyperparameter/c2/tvae/tvae-c2-20260504_175134/tvae-c2-1382-20260504_175151.csv b/hyperparameter/c2/tvae/tvae-c2-20260504_175134/tvae-c2-1382-20260504_175151.csv new file mode 100644 index 0000000000000000000000000000000000000000..f4b76c08fd9e79d194664a18efca7c2da7973dba --- /dev/null +++ b/hyperparameter/c2/tvae/tvae-c2-20260504_175134/tvae-c2-1382-20260504_175151.csv @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:cd6e35a64f02e454c60026dced645a026e8ff462523a2befdd87293700edee0e +size 41542 diff --git a/hyperparameter/c2/tvae/tvae-c2-20260504_175134/tvae_metadata.json b/hyperparameter/c2/tvae/tvae-c2-20260504_175134/tvae_metadata.json new file mode 100644 index 0000000000000000000000000000000000000000..183d627ebc98e89233655ec98c9dcbc528c4c328 --- /dev/null +++ b/hyperparameter/c2/tvae/tvae-c2-20260504_175134/tvae_metadata.json @@ -0,0 +1,32 @@ +{ + "columns": [ + { + "name": "buying", + "type": "categorical" + }, + { + "name": "maint", + "type": "categorical" + }, + { + "name": "doors", + "type": "categorical" + }, + { + "name": "persons", + "type": "categorical" + }, + { + "name": "lug_boot", + "type": "categorical" + }, + { + "name": "safety", + "type": "categorical" + }, + { + "name": "class", + "type": "categorical" + } + ] +} \ No newline at end of file diff --git a/hyperparameter/c2/tvae/tvae-c2-20260504_175208/_tvae_generate.py b/hyperparameter/c2/tvae/tvae-c2-20260504_175208/_tvae_generate.py new file mode 100644 index 0000000000000000000000000000000000000000..15ffa754523d7c1b3a6284549e839113f4d69d20 --- /dev/null +++ b/hyperparameter/c2/tvae/tvae-c2-20260504_175208/_tvae_generate.py @@ -0,0 +1,23 @@ +import os, sys +sys.path.insert(0, "/work") +from src.SpecificModels.ctgan_joblib_parallel_cap import apply_parallel_cap_from_env +apply_parallel_cap_from_env() +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 +os.environ.setdefault("LOKY_MAX_CPU_COUNT", "8") +os.environ.setdefault("OPENBLAS_NUM_THREADS", "8") +os.environ.setdefault("MKL_NUM_THREADS", "8") +model = TVAE.load("/work/output-Benchmark-trainonly-v1/c2/tvae/tvae-c2-20260504_175208/models_300epochs/tvae_300epochs.pt") +total = 1382 +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-Benchmark-trainonly-v1/c2/tvae/tvae-c2-20260504_175208/tvae-c2-1382-20260504_175232.csv", index=False) +print(f"[TVAE] Generated {total} rows (chunks={len(parts)}) -> /work/output-Benchmark-trainonly-v1/c2/tvae/tvae-c2-20260504_175208/tvae-c2-1382-20260504_175232.csv") diff --git a/hyperparameter/c2/tvae/tvae-c2-20260504_175208/_tvae_train.py b/hyperparameter/c2/tvae/tvae-c2-20260504_175208/_tvae_train.py new file mode 100644 index 0000000000000000000000000000000000000000..e493362becc793f8b983b6bd6bfc45c3b7fd1422 --- /dev/null +++ b/hyperparameter/c2/tvae/tvae-c2-20260504_175208/_tvae_train.py @@ -0,0 +1,39 @@ +import json, os, sys +sys.path.insert(0, "/work") +from src.SpecificModels.ctgan_joblib_parallel_cap import apply_parallel_cap_from_env +apply_parallel_cap_from_env() +import pandas as pd +from ctgan.data import read_csv +from ctgan.synthesizers.tvae import TVAE + +# Keep transform stage parallelism bounded for stability on shared host. +os.environ.setdefault("LOKY_MAX_CPU_COUNT", "8") +os.environ.setdefault("OPENBLAS_NUM_THREADS", "8") +os.environ.setdefault("MKL_NUM_THREADS", "8") +_nj = (os.environ.get("TVAE_CTGAN_JOBTRANS_N_JOBS") or "").strip() +if _nj: + print("[TVAE] joblib Parallel cap ON, TVAE_CTGAN_JOBTRANS_N_JOBS=" + _nj) +else: + print("[TVAE] joblib Parallel cap OFF (unset TVAE_CTGAN_JOBTRANS_N_JOBS)") +print("[TVAE] LOKY_MAX_CPU_COUNT=" + str(os.environ.get("LOKY_MAX_CPU_COUNT", ""))) + +csv_path = "/work/output-Benchmark-trainonly-v1/c2/tvae/tvae-c2-20260504_175208/staged/public/train.csv" +meta_path = "/work/output-Benchmark-trainonly-v1/c2/tvae/tvae-c2-20260504_175208/tvae_metadata.json" +save_path = "/work/output-Benchmark-trainonly-v1/c2/tvae/tvae-c2-20260504_175208/models_300epochs/tvae_300epochs.pt" +epochs = int(os.environ.get("TVAE_EPOCHS", 300)) +batch_size = int(os.environ.get("TVAE_BATCH_SIZE", "500")) +embedding_dim = int(os.environ.get("TVAE_EMBEDDING_DIM", "128")) +def _parse_dims(name, default): + raw = (os.environ.get(name) or "").strip() + if not raw: + return default + return tuple(int(x.strip()) for x in raw.split(",") if x.strip()) +compress_dims = _parse_dims("TVAE_COMPRESS_DIMS", (128, 128)) +decompress_dims = _parse_dims("TVAE_DECOMPRESS_DIMS", (128, 128)) + +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}, batch_size={batch_size}, embedding_dim={embedding_dim}, compress_dims={compress_dims}, decompress_dims={decompress_dims}") +model = TVAE(epochs=epochs, batch_size=batch_size, embedding_dim=embedding_dim, compress_dims=compress_dims, decompress_dims=decompress_dims) +model.fit(data, discrete_columns) +model.save(save_path) +print(f"[TVAE] Model saved -> {save_path}") diff --git a/hyperparameter/c2/tvae/tvae-c2-20260504_175208/gen_20260504_175232.log b/hyperparameter/c2/tvae/tvae-c2-20260504_175208/gen_20260504_175232.log new file mode 100644 index 0000000000000000000000000000000000000000..e96d2b0bb30e659460d8b3287452895d64ac6b35 --- /dev/null +++ b/hyperparameter/c2/tvae/tvae-c2-20260504_175208/gen_20260504_175232.log @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:b8ff2fdb44fa6e18bdeb7130618b3ebdd47cd7c82320e407c9cad2778a38258b +size 404 diff --git a/hyperparameter/c2/tvae/tvae-c2-20260504_175208/input_snapshot.json b/hyperparameter/c2/tvae/tvae-c2-20260504_175208/input_snapshot.json new file mode 100644 index 0000000000000000000000000000000000000000..9e28a5421f2176e174a0659e66a40054269fb2ac --- /dev/null +++ b/hyperparameter/c2/tvae/tvae-c2-20260504_175208/input_snapshot.json @@ -0,0 +1,36 @@ +{ + "dataset_id": "c2", + "model": "tvae", + "inputs": { + "train_csv": { + "path": "/data/jialinzhang/SynthesizePipeline-server/DatasetNew/c2/c2-train.csv", + "exists": true, + "size": 42948, + "sha256": "17bc560fa96bd00fb3b526e1e65bc91210b701d0d0a4e8bb9b4c5196cab56def" + }, + "val_csv": { + "path": "/data/jialinzhang/SynthesizePipeline-server/DatasetNew/c2/c2-val.csv", + "exists": true, + "size": 5349, + "sha256": "61e565eca62e65a7dccd9d51039a3170413379e10fc494e25870e7c4294863c9" + }, + "test_csv": { + "path": "/data/jialinzhang/SynthesizePipeline-server/DatasetNew/c2/c2-test.csv", + "exists": true, + "size": 5448, + "sha256": "cbcbb062a1faf5fa44b66c80532baa229e05b94fc42137269761e6c6d84af20a" + }, + "profile_json": { + "path": "/data/jialinzhang/SynthesizePipeline-server/DatasetNew/artifacts/data_core/tabular/c2/c2-dataset_profile.json", + "exists": true, + "size": 3240, + "sha256": "526b7163b2076c93c0bf4638438081ee8a6907065d5b608faa40d1a3dbc2a27b" + }, + "contract_json": { + "path": "/data/jialinzhang/SynthesizePipeline-server/DatasetNew/artifacts/data_core/tabular/c2/c2-dataset_contract_v1.json", + "exists": true, + "size": 3731, + "sha256": "fb595a876054c2ee9b4e10cfe83a5691588de1d25466cbb9d473c18ad3604009" + } + } +} \ No newline at end of file diff --git a/hyperparameter/c2/tvae/tvae-c2-20260504_175208/models_300epochs/train_20260504_175208.log b/hyperparameter/c2/tvae/tvae-c2-20260504_175208/models_300epochs/train_20260504_175208.log new file mode 100644 index 0000000000000000000000000000000000000000..bd12ed223dd5717571a179c201d36a613606c8c5 --- /dev/null +++ b/hyperparameter/c2/tvae/tvae-c2-20260504_175208/models_300epochs/train_20260504_175208.log @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:59dac04cf25233b63c8854c0f2a0cc19f76ce5ccba7c3ea8bc62496c7595041f +size 620 diff --git a/hyperparameter/c2/tvae/tvae-c2-20260504_175208/models_300epochs/tvae_300epochs.pt b/hyperparameter/c2/tvae/tvae-c2-20260504_175208/models_300epochs/tvae_300epochs.pt new file mode 100644 index 0000000000000000000000000000000000000000..1d25793602500f1b942c6b9c92013786108ee57c --- /dev/null +++ b/hyperparameter/c2/tvae/tvae-c2-20260504_175208/models_300epochs/tvae_300epochs.pt @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:fe6ba0f4654657fae90688f2455aa63a74fd0dbacc1fa20576c3921a6e802c90 +size 675500 diff --git a/hyperparameter/c2/tvae/tvae-c2-20260504_175208/public_gate/normalized_schema_snapshot.json b/hyperparameter/c2/tvae/tvae-c2-20260504_175208/public_gate/normalized_schema_snapshot.json new file mode 100644 index 0000000000000000000000000000000000000000..689b1d00d96508e44ba40e58dc4560e19afc2b3b --- /dev/null +++ b/hyperparameter/c2/tvae/tvae-c2-20260504_175208/public_gate/normalized_schema_snapshot.json @@ -0,0 +1,144 @@ +{ + "dataset_id": "c2", + "target_column": "class", + "task_type": "classification", + "columns": [ + { + "name": "buying", + "role": "feature", + "semantic_type": "categorical", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 4, + "unique_ratio": 0.002894, + "example_values": [ + "vhigh", + "med", + "high", + "low" + ] + } + }, + { + "name": "maint", + "role": "feature", + "semantic_type": "categorical", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 4, + "unique_ratio": 0.002894, + "example_values": [ + "vhigh", + "low", + "med", + "high" + ] + } + }, + { + "name": "doors", + "role": "feature", + "semantic_type": "categorical", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 4, + "unique_ratio": 0.002894, + "example_values": [ + "2", + "5more", + "3", + "4" + ] + } + }, + { + "name": "persons", + "role": "feature", + "semantic_type": "categorical", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 3, + "unique_ratio": 0.002171, + "example_values": [ + "2", + "4", + "more" + ] + } + }, + { + "name": "lug_boot", + "role": "feature", + "semantic_type": "categorical", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 3, + "unique_ratio": 0.002171, + "example_values": [ + "small", + "big", + "med" + ] + } + }, + { + "name": "safety", + "role": "feature", + "semantic_type": "categorical", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 3, + "unique_ratio": 0.002171, + "example_values": [ + "low", + "high", + "med" + ] + } + }, + { + "name": "class", + "role": "target", + "semantic_type": "categorical", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 4, + "unique_ratio": 0.002894, + "example_values": [ + "unacc", + "good", + "acc", + "vgood" + ] + } + } + ] +} \ No newline at end of file diff --git a/hyperparameter/c2/tvae/tvae-c2-20260504_175208/public_gate/public_gate_report.json b/hyperparameter/c2/tvae/tvae-c2-20260504_175208/public_gate/public_gate_report.json new file mode 100644 index 0000000000000000000000000000000000000000..2e4cdcb2a4e28e40d59b17a83e773f622b7636a5 --- /dev/null +++ b/hyperparameter/c2/tvae/tvae-c2-20260504_175208/public_gate/public_gate_report.json @@ -0,0 +1,37 @@ +{ + "dataset_id": "c2", + "status": "pass", + "checks": [ + { + "check_id": "PG001_csv_parse_ok", + "status": "pass" + }, + { + "check_id": "PG002_split_header_consistent", + "status": "pass" + }, + { + "check_id": "PG003_profile_header_match", + "status": "pass" + }, + { + "check_id": "PG004_missing_token_normalized", + "status": "pass" + }, + { + "check_id": "PG005_semantic_type_validated", + "status": "pass" + }, + { + "check_id": "PG006_target_defined_and_valid", + "status": "pass" + } + ], + "target_column": "class", + "task_type": "classification", + "input_splits": { + "train": "/data/jialinzhang/SynthesizePipeline-server/DatasetNew/c2/c2-train.csv", + "val": "/data/jialinzhang/SynthesizePipeline-server/DatasetNew/c2/c2-val.csv", + "test": "/data/jialinzhang/SynthesizePipeline-server/DatasetNew/c2/c2-test.csv" + } +} \ No newline at end of file diff --git a/hyperparameter/c2/tvae/tvae-c2-20260504_175208/public_gate/staged_input_manifest.json b/hyperparameter/c2/tvae/tvae-c2-20260504_175208/public_gate/staged_input_manifest.json new file mode 100644 index 0000000000000000000000000000000000000000..6600bdfdf9a7e545696eeb926d8ceb33799e8760 --- /dev/null +++ b/hyperparameter/c2/tvae/tvae-c2-20260504_175208/public_gate/staged_input_manifest.json @@ -0,0 +1,149 @@ +{ + "dataset_id": "c2", + "target_column": "class", + "task_type": "classification", + "train_csv": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/c2/tvae/tvae-c2-20260504_175208/staged/public/train.csv", + "val_csv": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/c2/tvae/tvae-c2-20260504_175208/staged/public/val.csv", + "test_csv": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/c2/tvae/tvae-c2-20260504_175208/staged/public/test.csv", + "features_json": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/c2/tvae/tvae-c2-20260504_175208/staged/public/staged_features.json", + "public_gate_report": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/c2/tvae/tvae-c2-20260504_175208/public_gate/public_gate_report.json", + "column_schema": [ + { + "name": "buying", + "role": "feature", + "semantic_type": "categorical", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 4, + "unique_ratio": 0.002894, + "example_values": [ + "vhigh", + "med", + "high", + "low" + ] + } + }, + { + "name": "maint", + "role": "feature", + "semantic_type": "categorical", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 4, + "unique_ratio": 0.002894, + "example_values": [ + "vhigh", + "low", + "med", + "high" + ] + } + }, + { + "name": "doors", + "role": "feature", + "semantic_type": "categorical", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 4, + "unique_ratio": 0.002894, + "example_values": [ + "2", + "5more", + "3", + "4" + ] + } + }, + { + "name": "persons", + "role": "feature", + "semantic_type": "categorical", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 3, + "unique_ratio": 0.002171, + "example_values": [ + "2", + "4", + "more" + ] + } + }, + { + "name": "lug_boot", + "role": "feature", + "semantic_type": "categorical", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 3, + "unique_ratio": 0.002171, + "example_values": [ + "small", + "big", + "med" + ] + } + }, + { + "name": "safety", + "role": "feature", + "semantic_type": "categorical", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 3, + "unique_ratio": 0.002171, + "example_values": [ + "low", + "high", + "med" + ] + } + }, + { + "name": "class", + "role": "target", + "semantic_type": "categorical", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 4, + "unique_ratio": 0.002894, + "example_values": [ + "unacc", + "good", + "acc", + "vgood" + ] + } + } + ] +} \ No newline at end of file diff --git a/hyperparameter/c2/tvae/tvae-c2-20260504_175208/run_config.json b/hyperparameter/c2/tvae/tvae-c2-20260504_175208/run_config.json new file mode 100644 index 0000000000000000000000000000000000000000..1324de920f33ee421e8de3a00d82d7ad3411227a --- /dev/null +++ b/hyperparameter/c2/tvae/tvae-c2-20260504_175208/run_config.json @@ -0,0 +1,45 @@ +{ + "schema_version": 1, + "recorded_at": "2026-05-04T17:52:08", + "dataset_id": "c2", + "model": "tvae", + "work_dir": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/c2/tvae/tvae-c2-20260504_175208", + "dataset_source_requested": "new", + "dataset_source_resolved": "new", + "cli_args": { + "model": "tvae", + "dataset": "c2", + "dataset_source": "new", + "train": true, + "generate": true, + "num_rows": 0, + "epochs": null, + "output_dir": null, + "model_dir": null, + "work_dir": null, + "resume": false, + "no_stats": false + }, + "resolved": { + "num_rows": 1382, + "model_path": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/c2/tvae/tvae-c2-20260504_175208/models_300epochs/tvae_300epochs.pt", + "output_csv": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/c2/tvae/tvae-c2-20260504_175208/tvae-c2-1382-20260504_175232.csv" + }, + "input_artifacts": { + "public_gate_report": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/c2/tvae/tvae-c2-20260504_175208/public_gate/public_gate_report.json", + "public_manifest": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/c2/tvae/tvae-c2-20260504_175208/public_gate/staged_input_manifest.json", + "model_manifest": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/c2/tvae/tvae-c2-20260504_175208/staged/tvae/model_input_manifest.json", + "train_csv": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/c2/tvae/tvae-c2-20260504_175208/staged/public/train.csv", + "features_json": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/c2/tvae/tvae-c2-20260504_175208/staged/public/staged_features.json", + "target_column": "class", + "task_type": "classification" + }, + "env_overrides": { + "BENCHMARK_TVAE_GPUS": "device=3", + "TVAE_BATCH_SIZE": "256", + "TVAE_COMPRESS_DIMS": "256,256", + "TVAE_DECOMPRESS_DIMS": "256,256", + "TVAE_EMBEDDING_DIM": "128", + "TVAE_EPOCHS": "500" + } +} \ No newline at end of file diff --git a/hyperparameter/c2/tvae/tvae-c2-20260504_175208/runtime_result.json b/hyperparameter/c2/tvae/tvae-c2-20260504_175208/runtime_result.json new file mode 100644 index 0000000000000000000000000000000000000000..2571fd685f2ca86d9026a5aeb4b2d5d2135271e0 --- /dev/null +++ b/hyperparameter/c2/tvae/tvae-c2-20260504_175208/runtime_result.json @@ -0,0 +1,27 @@ +{ + "dataset_id": "c2", + "model": "tvae", + "run_id": "tvae-c2-20260504_175208", + "public_gate_status": "pass", + "adapter_ready_status": "pass", + "train_status": "success", + "generate_status": "success", + "reason_code": null, + "reason_detail": null, + "artifacts": { + "synthetic_csv": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/c2/tvae/tvae-c2-20260504_175208/tvae-c2-1382-20260504_175232.csv", + "model_path": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/c2/tvae/tvae-c2-20260504_175208/models_300epochs/tvae_300epochs.pt" + }, + "timings": { + "train": { + "started_at": "2026-05-04T17:52:08", + "ended_at": "2026-05-04T17:52:32", + "duration_sec": 24.013 + }, + "generate": { + "started_at": "2026-05-04T17:52:32", + "ended_at": "2026-05-04T17:52:37", + "duration_sec": 5.103 + } + } +} \ No newline at end of file diff --git a/hyperparameter/c2/tvae/tvae-c2-20260504_175208/staged/public/staged_features.json b/hyperparameter/c2/tvae/tvae-c2-20260504_175208/staged/public/staged_features.json new file mode 100644 index 0000000000000000000000000000000000000000..61783861dd5de501592f76acb0469cf3f3b2622a --- /dev/null +++ b/hyperparameter/c2/tvae/tvae-c2-20260504_175208/staged/public/staged_features.json @@ -0,0 +1,37 @@ +[ + { + "feature_name": "buying", + "data_type": "categorical", + "is_target": false + }, + { + "feature_name": "maint", + "data_type": "categorical", + "is_target": false + }, + { + "feature_name": "doors", + "data_type": "categorical", + "is_target": false + }, + { + "feature_name": "persons", + "data_type": "categorical", + "is_target": false + }, + { + "feature_name": "lug_boot", + "data_type": "categorical", + "is_target": false + }, + { + "feature_name": "safety", + "data_type": "categorical", + "is_target": false + }, + { + "feature_name": "class", + "data_type": "categorical", + "is_target": true + } +] \ No newline at end of file diff --git a/hyperparameter/c2/tvae/tvae-c2-20260504_175208/staged/public/test.csv b/hyperparameter/c2/tvae/tvae-c2-20260504_175208/staged/public/test.csv new file mode 100644 index 0000000000000000000000000000000000000000..392a0d7189a34d8f13ecf20a99d64b03230d517c --- /dev/null +++ b/hyperparameter/c2/tvae/tvae-c2-20260504_175208/staged/public/test.csv @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:b48114a7d0bc5bd9a07920f903c8d4aba8bf98bf2a66a050da03588b0245ca73 +size 5273 diff --git a/hyperparameter/c2/tvae/tvae-c2-20260504_175208/staged/public/train.csv b/hyperparameter/c2/tvae/tvae-c2-20260504_175208/staged/public/train.csv new file mode 100644 index 0000000000000000000000000000000000000000..da4f4d55134eebc0e51157d0d467536371db1484 --- /dev/null +++ b/hyperparameter/c2/tvae/tvae-c2-20260504_175208/staged/public/train.csv @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:4aed00c2c2b3f88a55a7ebff31b2e1b5e0e32fb0a7267e0b9d2779cd23e434dd +size 41565 diff --git a/hyperparameter/c2/tvae/tvae-c2-20260504_175208/staged/public/val.csv b/hyperparameter/c2/tvae/tvae-c2-20260504_175208/staged/public/val.csv new file mode 100644 index 0000000000000000000000000000000000000000..af8caf7ee42524188534a3daf32996dc491952d9 --- /dev/null +++ b/hyperparameter/c2/tvae/tvae-c2-20260504_175208/staged/public/val.csv @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:26e90c1170a57a14c05832ac88027722b1f3848f9662c7c09ef7c93dcba4cc01 +size 5176 diff --git a/hyperparameter/c2/tvae/tvae-c2-20260504_175208/staged/tvae/adapter_report.json b/hyperparameter/c2/tvae/tvae-c2-20260504_175208/staged/tvae/adapter_report.json new file mode 100644 index 0000000000000000000000000000000000000000..dd934cb8736896aea413f6c1ee693f46b6a150f2 --- /dev/null +++ b/hyperparameter/c2/tvae/tvae-c2-20260504_175208/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-Benchmark-trainonly-v1/c2/tvae/tvae-c2-20260504_175208/staged/tvae/model_input_manifest.json" +} \ No newline at end of file diff --git a/hyperparameter/c2/tvae/tvae-c2-20260504_175208/staged/tvae/adapter_transforms_applied.json b/hyperparameter/c2/tvae/tvae-c2-20260504_175208/staged/tvae/adapter_transforms_applied.json new file mode 100644 index 0000000000000000000000000000000000000000..0637a088a01e8ddab3bf3fa98dbe804cbde1a0dc --- /dev/null +++ b/hyperparameter/c2/tvae/tvae-c2-20260504_175208/staged/tvae/adapter_transforms_applied.json @@ -0,0 +1 @@ +[] \ No newline at end of file diff --git a/hyperparameter/c2/tvae/tvae-c2-20260504_175208/staged/tvae/model_input_manifest.json b/hyperparameter/c2/tvae/tvae-c2-20260504_175208/staged/tvae/model_input_manifest.json new file mode 100644 index 0000000000000000000000000000000000000000..b2dfb70e860332f2d4729abbb0e5335fa3f2fa58 --- /dev/null +++ b/hyperparameter/c2/tvae/tvae-c2-20260504_175208/staged/tvae/model_input_manifest.json @@ -0,0 +1,151 @@ +{ + "dataset_id": "c2", + "model": "tvae", + "target_column": "class", + "task_type": "classification", + "column_schema": [ + { + "name": "buying", + "role": "feature", + "semantic_type": "categorical", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 4, + "unique_ratio": 0.002894, + "example_values": [ + "vhigh", + "med", + "high", + "low" + ] + } + }, + { + "name": "maint", + "role": "feature", + "semantic_type": "categorical", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 4, + "unique_ratio": 0.002894, + "example_values": [ + "vhigh", + "low", + "med", + "high" + ] + } + }, + { + "name": "doors", + "role": "feature", + "semantic_type": "categorical", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 4, + "unique_ratio": 0.002894, + "example_values": [ + "2", + "5more", + "3", + "4" + ] + } + }, + { + "name": "persons", + "role": "feature", + "semantic_type": "categorical", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 3, + "unique_ratio": 0.002171, + "example_values": [ + "2", + "4", + "more" + ] + } + }, + { + "name": "lug_boot", + "role": "feature", + "semantic_type": "categorical", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 3, + "unique_ratio": 0.002171, + "example_values": [ + "small", + "big", + "med" + ] + } + }, + { + "name": "safety", + "role": "feature", + "semantic_type": "categorical", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 3, + "unique_ratio": 0.002171, + "example_values": [ + "low", + "high", + "med" + ] + } + }, + { + "name": "class", + "role": "target", + "semantic_type": "categorical", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 4, + "unique_ratio": 0.002894, + "example_values": [ + "unacc", + "good", + "acc", + "vgood" + ] + } + } + ], + "public_manifest": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/c2/tvae/tvae-c2-20260504_175208/public_gate/staged_input_manifest.json", + "train_csv": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/c2/tvae/tvae-c2-20260504_175208/staged/public/train.csv", + "val_csv": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/c2/tvae/tvae-c2-20260504_175208/staged/public/val.csv", + "test_csv": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/c2/tvae/tvae-c2-20260504_175208/staged/public/test.csv", + "features_json": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/c2/tvae/tvae-c2-20260504_175208/staged/public/staged_features.json", + "public_gate_report": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/c2/tvae/tvae-c2-20260504_175208/public_gate/public_gate_report.json" +} \ No newline at end of file diff --git a/hyperparameter/c2/tvae/tvae-c2-20260504_175208/tvae-c2-1382-20260504_175232.csv b/hyperparameter/c2/tvae/tvae-c2-20260504_175208/tvae-c2-1382-20260504_175232.csv new file mode 100644 index 0000000000000000000000000000000000000000..f87119bdc86f96e711c84b1e0e548aef02373279 --- /dev/null +++ b/hyperparameter/c2/tvae/tvae-c2-20260504_175208/tvae-c2-1382-20260504_175232.csv @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:dfa0ee0f5edf291d4a1440b73cc43eb64a1bef6799cdf66405b3384a12031f3f +size 41049 diff --git a/hyperparameter/c2/tvae/tvae-c2-20260504_175208/tvae_metadata.json b/hyperparameter/c2/tvae/tvae-c2-20260504_175208/tvae_metadata.json new file mode 100644 index 0000000000000000000000000000000000000000..183d627ebc98e89233655ec98c9dcbc528c4c328 --- /dev/null +++ b/hyperparameter/c2/tvae/tvae-c2-20260504_175208/tvae_metadata.json @@ -0,0 +1,32 @@ +{ + "columns": [ + { + "name": "buying", + "type": "categorical" + }, + { + "name": "maint", + "type": "categorical" + }, + { + "name": "doors", + "type": "categorical" + }, + { + "name": "persons", + "type": "categorical" + }, + { + "name": "lug_boot", + "type": "categorical" + }, + { + "name": "safety", + "type": "categorical" + }, + { + "name": "class", + "type": "categorical" + } + ] +} \ No newline at end of file diff --git a/hyperparameter/c2/tvae/tvae-c2-20260504_175249/_tvae_generate.py b/hyperparameter/c2/tvae/tvae-c2-20260504_175249/_tvae_generate.py new file mode 100644 index 0000000000000000000000000000000000000000..e07148c1ba4ddca992b0f7e20cf0df0dcdeb69c0 --- /dev/null +++ b/hyperparameter/c2/tvae/tvae-c2-20260504_175249/_tvae_generate.py @@ -0,0 +1,23 @@ +import os, sys +sys.path.insert(0, "/work") +from src.SpecificModels.ctgan_joblib_parallel_cap import apply_parallel_cap_from_env +apply_parallel_cap_from_env() +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 +os.environ.setdefault("LOKY_MAX_CPU_COUNT", "8") +os.environ.setdefault("OPENBLAS_NUM_THREADS", "8") +os.environ.setdefault("MKL_NUM_THREADS", "8") +model = TVAE.load("/work/output-Benchmark-trainonly-v1/c2/tvae/tvae-c2-20260504_175249/models_300epochs/tvae_300epochs.pt") +total = 1382 +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-Benchmark-trainonly-v1/c2/tvae/tvae-c2-20260504_175249/tvae-c2-1382-20260504_175313.csv", index=False) +print(f"[TVAE] Generated {total} rows (chunks={len(parts)}) -> /work/output-Benchmark-trainonly-v1/c2/tvae/tvae-c2-20260504_175249/tvae-c2-1382-20260504_175313.csv") diff --git a/hyperparameter/c2/tvae/tvae-c2-20260504_175249/_tvae_train.py b/hyperparameter/c2/tvae/tvae-c2-20260504_175249/_tvae_train.py new file mode 100644 index 0000000000000000000000000000000000000000..c032455229e3f6f5d8909e0b2a91cfe61ca5b48b --- /dev/null +++ b/hyperparameter/c2/tvae/tvae-c2-20260504_175249/_tvae_train.py @@ -0,0 +1,39 @@ +import json, os, sys +sys.path.insert(0, "/work") +from src.SpecificModels.ctgan_joblib_parallel_cap import apply_parallel_cap_from_env +apply_parallel_cap_from_env() +import pandas as pd +from ctgan.data import read_csv +from ctgan.synthesizers.tvae import TVAE + +# Keep transform stage parallelism bounded for stability on shared host. +os.environ.setdefault("LOKY_MAX_CPU_COUNT", "8") +os.environ.setdefault("OPENBLAS_NUM_THREADS", "8") +os.environ.setdefault("MKL_NUM_THREADS", "8") +_nj = (os.environ.get("TVAE_CTGAN_JOBTRANS_N_JOBS") or "").strip() +if _nj: + print("[TVAE] joblib Parallel cap ON, TVAE_CTGAN_JOBTRANS_N_JOBS=" + _nj) +else: + print("[TVAE] joblib Parallel cap OFF (unset TVAE_CTGAN_JOBTRANS_N_JOBS)") +print("[TVAE] LOKY_MAX_CPU_COUNT=" + str(os.environ.get("LOKY_MAX_CPU_COUNT", ""))) + +csv_path = "/work/output-Benchmark-trainonly-v1/c2/tvae/tvae-c2-20260504_175249/staged/public/train.csv" +meta_path = "/work/output-Benchmark-trainonly-v1/c2/tvae/tvae-c2-20260504_175249/tvae_metadata.json" +save_path = "/work/output-Benchmark-trainonly-v1/c2/tvae/tvae-c2-20260504_175249/models_300epochs/tvae_300epochs.pt" +epochs = int(os.environ.get("TVAE_EPOCHS", 300)) +batch_size = int(os.environ.get("TVAE_BATCH_SIZE", "500")) +embedding_dim = int(os.environ.get("TVAE_EMBEDDING_DIM", "128")) +def _parse_dims(name, default): + raw = (os.environ.get(name) or "").strip() + if not raw: + return default + return tuple(int(x.strip()) for x in raw.split(",") if x.strip()) +compress_dims = _parse_dims("TVAE_COMPRESS_DIMS", (128, 128)) +decompress_dims = _parse_dims("TVAE_DECOMPRESS_DIMS", (128, 128)) + +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}, batch_size={batch_size}, embedding_dim={embedding_dim}, compress_dims={compress_dims}, decompress_dims={decompress_dims}") +model = TVAE(epochs=epochs, batch_size=batch_size, embedding_dim=embedding_dim, compress_dims=compress_dims, decompress_dims=decompress_dims) +model.fit(data, discrete_columns) +model.save(save_path) +print(f"[TVAE] Model saved -> {save_path}") diff --git a/hyperparameter/c2/tvae/tvae-c2-20260504_175249/gen_20260504_175313.log b/hyperparameter/c2/tvae/tvae-c2-20260504_175249/gen_20260504_175313.log new file mode 100644 index 0000000000000000000000000000000000000000..aba55b7de57d2847ab08ab93541dc182fd99c817 --- /dev/null +++ b/hyperparameter/c2/tvae/tvae-c2-20260504_175249/gen_20260504_175313.log @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:6fd3a537a0edd5fbdc6f85ba4458aafb0b13c7a9e94d15ec3e50395e2b28182b +size 404 diff --git a/hyperparameter/c2/tvae/tvae-c2-20260504_175249/input_snapshot.json b/hyperparameter/c2/tvae/tvae-c2-20260504_175249/input_snapshot.json new file mode 100644 index 0000000000000000000000000000000000000000..9e28a5421f2176e174a0659e66a40054269fb2ac --- /dev/null +++ b/hyperparameter/c2/tvae/tvae-c2-20260504_175249/input_snapshot.json @@ -0,0 +1,36 @@ +{ + "dataset_id": "c2", + "model": "tvae", + "inputs": { + "train_csv": { + "path": "/data/jialinzhang/SynthesizePipeline-server/DatasetNew/c2/c2-train.csv", + "exists": true, + "size": 42948, + "sha256": "17bc560fa96bd00fb3b526e1e65bc91210b701d0d0a4e8bb9b4c5196cab56def" + }, + "val_csv": { + "path": "/data/jialinzhang/SynthesizePipeline-server/DatasetNew/c2/c2-val.csv", + "exists": true, + "size": 5349, + "sha256": "61e565eca62e65a7dccd9d51039a3170413379e10fc494e25870e7c4294863c9" + }, + "test_csv": { + "path": "/data/jialinzhang/SynthesizePipeline-server/DatasetNew/c2/c2-test.csv", + "exists": true, + "size": 5448, + "sha256": "cbcbb062a1faf5fa44b66c80532baa229e05b94fc42137269761e6c6d84af20a" + }, + "profile_json": { + "path": "/data/jialinzhang/SynthesizePipeline-server/DatasetNew/artifacts/data_core/tabular/c2/c2-dataset_profile.json", + "exists": true, + "size": 3240, + "sha256": "526b7163b2076c93c0bf4638438081ee8a6907065d5b608faa40d1a3dbc2a27b" + }, + "contract_json": { + "path": "/data/jialinzhang/SynthesizePipeline-server/DatasetNew/artifacts/data_core/tabular/c2/c2-dataset_contract_v1.json", + "exists": true, + "size": 3731, + "sha256": "fb595a876054c2ee9b4e10cfe83a5691588de1d25466cbb9d473c18ad3604009" + } + } +} \ No newline at end of file diff --git a/hyperparameter/c2/tvae/tvae-c2-20260504_175249/models_300epochs/train_20260504_175249.log b/hyperparameter/c2/tvae/tvae-c2-20260504_175249/models_300epochs/train_20260504_175249.log new file mode 100644 index 0000000000000000000000000000000000000000..4d871338efdc74e0d6149b21cbb781486f4d93bb --- /dev/null +++ b/hyperparameter/c2/tvae/tvae-c2-20260504_175249/models_300epochs/train_20260504_175249.log @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:36225451e64c28e079e1ffc5a02a1ff4755ba438ebe0f77dc8c5e87cafc124df +size 619 diff --git a/hyperparameter/c2/tvae/tvae-c2-20260504_175249/models_300epochs/tvae_300epochs.pt b/hyperparameter/c2/tvae/tvae-c2-20260504_175249/models_300epochs/tvae_300epochs.pt new file mode 100644 index 0000000000000000000000000000000000000000..c83492b85c2b473e1c5456cd62dd742606c08223 --- /dev/null +++ b/hyperparameter/c2/tvae/tvae-c2-20260504_175249/models_300epochs/tvae_300epochs.pt @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:6784c6b8e4a0d3d2654f738df5614002347068fc0f6512daf0970b15d29c6106 +size 806572 diff --git a/hyperparameter/c2/tvae/tvae-c2-20260504_175249/public_gate/normalized_schema_snapshot.json b/hyperparameter/c2/tvae/tvae-c2-20260504_175249/public_gate/normalized_schema_snapshot.json new file mode 100644 index 0000000000000000000000000000000000000000..689b1d00d96508e44ba40e58dc4560e19afc2b3b --- /dev/null +++ b/hyperparameter/c2/tvae/tvae-c2-20260504_175249/public_gate/normalized_schema_snapshot.json @@ -0,0 +1,144 @@ +{ + "dataset_id": "c2", + "target_column": "class", + "task_type": "classification", + "columns": [ + { + "name": "buying", + "role": "feature", + "semantic_type": "categorical", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 4, + "unique_ratio": 0.002894, + "example_values": [ + "vhigh", + "med", + "high", + "low" + ] + } + }, + { + "name": "maint", + "role": "feature", + "semantic_type": "categorical", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 4, + "unique_ratio": 0.002894, + "example_values": [ + "vhigh", + "low", + "med", + "high" + ] + } + }, + { + "name": "doors", + "role": "feature", + "semantic_type": "categorical", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 4, + "unique_ratio": 0.002894, + "example_values": [ + "2", + "5more", + "3", + "4" + ] + } + }, + { + "name": "persons", + "role": "feature", + "semantic_type": "categorical", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 3, + "unique_ratio": 0.002171, + "example_values": [ + "2", + "4", + "more" + ] + } + }, + { + "name": "lug_boot", + "role": "feature", + "semantic_type": "categorical", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 3, + "unique_ratio": 0.002171, + "example_values": [ + "small", + "big", + "med" + ] + } + }, + { + "name": "safety", + "role": "feature", + "semantic_type": "categorical", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 3, + "unique_ratio": 0.002171, + "example_values": [ + "low", + "high", + "med" + ] + } + }, + { + "name": "class", + "role": "target", + "semantic_type": "categorical", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 4, + "unique_ratio": 0.002894, + "example_values": [ + "unacc", + "good", + "acc", + "vgood" + ] + } + } + ] +} \ No newline at end of file diff --git a/hyperparameter/c2/tvae/tvae-c2-20260504_175249/public_gate/public_gate_report.json b/hyperparameter/c2/tvae/tvae-c2-20260504_175249/public_gate/public_gate_report.json new file mode 100644 index 0000000000000000000000000000000000000000..2e4cdcb2a4e28e40d59b17a83e773f622b7636a5 --- /dev/null +++ b/hyperparameter/c2/tvae/tvae-c2-20260504_175249/public_gate/public_gate_report.json @@ -0,0 +1,37 @@ +{ + "dataset_id": "c2", + "status": "pass", + "checks": [ + { + "check_id": "PG001_csv_parse_ok", + "status": "pass" + }, + { + "check_id": "PG002_split_header_consistent", + "status": "pass" + }, + { + "check_id": "PG003_profile_header_match", + "status": "pass" + }, + { + "check_id": "PG004_missing_token_normalized", + "status": "pass" + }, + { + "check_id": "PG005_semantic_type_validated", + "status": "pass" + }, + { + "check_id": "PG006_target_defined_and_valid", + "status": "pass" + } + ], + "target_column": "class", + "task_type": "classification", + "input_splits": { + "train": "/data/jialinzhang/SynthesizePipeline-server/DatasetNew/c2/c2-train.csv", + "val": "/data/jialinzhang/SynthesizePipeline-server/DatasetNew/c2/c2-val.csv", + "test": "/data/jialinzhang/SynthesizePipeline-server/DatasetNew/c2/c2-test.csv" + } +} \ No newline at end of file diff --git a/hyperparameter/c2/tvae/tvae-c2-20260504_175249/public_gate/staged_input_manifest.json b/hyperparameter/c2/tvae/tvae-c2-20260504_175249/public_gate/staged_input_manifest.json new file mode 100644 index 0000000000000000000000000000000000000000..75e186f4667b8837057d5c45d32abccf2e5dd0e4 --- /dev/null +++ b/hyperparameter/c2/tvae/tvae-c2-20260504_175249/public_gate/staged_input_manifest.json @@ -0,0 +1,149 @@ +{ + "dataset_id": "c2", + "target_column": "class", + "task_type": "classification", + "train_csv": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/c2/tvae/tvae-c2-20260504_175249/staged/public/train.csv", + "val_csv": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/c2/tvae/tvae-c2-20260504_175249/staged/public/val.csv", + "test_csv": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/c2/tvae/tvae-c2-20260504_175249/staged/public/test.csv", + "features_json": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/c2/tvae/tvae-c2-20260504_175249/staged/public/staged_features.json", + "public_gate_report": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/c2/tvae/tvae-c2-20260504_175249/public_gate/public_gate_report.json", + "column_schema": [ + { + "name": "buying", + "role": "feature", + "semantic_type": "categorical", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 4, + "unique_ratio": 0.002894, + "example_values": [ + "vhigh", + "med", + "high", + "low" + ] + } + }, + { + "name": "maint", + "role": "feature", + "semantic_type": "categorical", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 4, + "unique_ratio": 0.002894, + "example_values": [ + "vhigh", + "low", + "med", + "high" + ] + } + }, + { + "name": "doors", + "role": "feature", + "semantic_type": "categorical", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 4, + "unique_ratio": 0.002894, + "example_values": [ + "2", + "5more", + "3", + "4" + ] + } + }, + { + "name": "persons", + "role": "feature", + "semantic_type": "categorical", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 3, + "unique_ratio": 0.002171, + "example_values": [ + "2", + "4", + "more" + ] + } + }, + { + "name": "lug_boot", + "role": "feature", + "semantic_type": "categorical", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 3, + "unique_ratio": 0.002171, + "example_values": [ + "small", + "big", + "med" + ] + } + }, + { + "name": "safety", + "role": "feature", + "semantic_type": "categorical", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 3, + "unique_ratio": 0.002171, + "example_values": [ + "low", + "high", + "med" + ] + } + }, + { + "name": "class", + "role": "target", + "semantic_type": "categorical", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 4, + "unique_ratio": 0.002894, + "example_values": [ + "unacc", + "good", + "acc", + "vgood" + ] + } + } + ] +} \ No newline at end of file diff --git a/hyperparameter/c2/tvae/tvae-c2-20260504_175249/run_config.json b/hyperparameter/c2/tvae/tvae-c2-20260504_175249/run_config.json new file mode 100644 index 0000000000000000000000000000000000000000..fc3643ef5c96749e6ef0e5aacb3ae517516134be --- /dev/null +++ b/hyperparameter/c2/tvae/tvae-c2-20260504_175249/run_config.json @@ -0,0 +1,45 @@ +{ + "schema_version": 1, + "recorded_at": "2026-05-04T17:52:49", + "dataset_id": "c2", + "model": "tvae", + "work_dir": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/c2/tvae/tvae-c2-20260504_175249", + "dataset_source_requested": "new", + "dataset_source_resolved": "new", + "cli_args": { + "model": "tvae", + "dataset": "c2", + "dataset_source": "new", + "train": true, + "generate": true, + "num_rows": 0, + "epochs": null, + "output_dir": null, + "model_dir": null, + "work_dir": null, + "resume": false, + "no_stats": false + }, + "resolved": { + "num_rows": 1382, + "model_path": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/c2/tvae/tvae-c2-20260504_175249/models_300epochs/tvae_300epochs.pt", + "output_csv": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/c2/tvae/tvae-c2-20260504_175249/tvae-c2-1382-20260504_175313.csv" + }, + "input_artifacts": { + "public_gate_report": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/c2/tvae/tvae-c2-20260504_175249/public_gate/public_gate_report.json", + "public_manifest": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/c2/tvae/tvae-c2-20260504_175249/public_gate/staged_input_manifest.json", + "model_manifest": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/c2/tvae/tvae-c2-20260504_175249/staged/tvae/model_input_manifest.json", + "train_csv": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/c2/tvae/tvae-c2-20260504_175249/staged/public/train.csv", + "features_json": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/c2/tvae/tvae-c2-20260504_175249/staged/public/staged_features.json", + "target_column": "class", + "task_type": "classification" + }, + "env_overrides": { + "BENCHMARK_TVAE_GPUS": "device=3", + "TVAE_BATCH_SIZE": "256", + "TVAE_COMPRESS_DIMS": "256,256", + "TVAE_DECOMPRESS_DIMS": "256,256", + "TVAE_EMBEDDING_DIM": "256", + "TVAE_EPOCHS": "500" + } +} \ No newline at end of file diff --git a/hyperparameter/c2/tvae/tvae-c2-20260504_175249/runtime_result.json b/hyperparameter/c2/tvae/tvae-c2-20260504_175249/runtime_result.json new file mode 100644 index 0000000000000000000000000000000000000000..0cb85f7daa3338b4f0cbada27e90ac334c284ed3 --- /dev/null +++ b/hyperparameter/c2/tvae/tvae-c2-20260504_175249/runtime_result.json @@ -0,0 +1,27 @@ +{ + "dataset_id": "c2", + "model": "tvae", + "run_id": "tvae-c2-20260504_175249", + "public_gate_status": "pass", + "adapter_ready_status": "pass", + "train_status": "success", + "generate_status": "success", + "reason_code": null, + "reason_detail": null, + "artifacts": { + "synthetic_csv": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/c2/tvae/tvae-c2-20260504_175249/tvae-c2-1382-20260504_175313.csv", + "model_path": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/c2/tvae/tvae-c2-20260504_175249/models_300epochs/tvae_300epochs.pt" + }, + "timings": { + "train": { + "started_at": "2026-05-04T17:52:49", + "ended_at": "2026-05-04T17:53:13", + "duration_sec": 23.837 + }, + "generate": { + "started_at": "2026-05-04T17:53:13", + "ended_at": "2026-05-04T17:53:18", + "duration_sec": 5.187 + } + } +} \ No newline at end of file diff --git a/hyperparameter/c2/tvae/tvae-c2-20260504_175249/staged/public/staged_features.json b/hyperparameter/c2/tvae/tvae-c2-20260504_175249/staged/public/staged_features.json new file mode 100644 index 0000000000000000000000000000000000000000..61783861dd5de501592f76acb0469cf3f3b2622a --- /dev/null +++ b/hyperparameter/c2/tvae/tvae-c2-20260504_175249/staged/public/staged_features.json @@ -0,0 +1,37 @@ +[ + { + "feature_name": "buying", + "data_type": "categorical", + "is_target": false + }, + { + "feature_name": "maint", + "data_type": "categorical", + "is_target": false + }, + { + "feature_name": "doors", + "data_type": "categorical", + "is_target": false + }, + { + "feature_name": "persons", + "data_type": "categorical", + "is_target": false + }, + { + "feature_name": "lug_boot", + "data_type": "categorical", + "is_target": false + }, + { + "feature_name": "safety", + "data_type": "categorical", + "is_target": false + }, + { + "feature_name": "class", + "data_type": "categorical", + "is_target": true + } +] \ No newline at end of file diff --git a/hyperparameter/c2/tvae/tvae-c2-20260504_175249/staged/public/test.csv b/hyperparameter/c2/tvae/tvae-c2-20260504_175249/staged/public/test.csv new file mode 100644 index 0000000000000000000000000000000000000000..392a0d7189a34d8f13ecf20a99d64b03230d517c --- /dev/null +++ b/hyperparameter/c2/tvae/tvae-c2-20260504_175249/staged/public/test.csv @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:b48114a7d0bc5bd9a07920f903c8d4aba8bf98bf2a66a050da03588b0245ca73 +size 5273 diff --git a/hyperparameter/c2/tvae/tvae-c2-20260504_175249/staged/public/train.csv b/hyperparameter/c2/tvae/tvae-c2-20260504_175249/staged/public/train.csv new file mode 100644 index 0000000000000000000000000000000000000000..da4f4d55134eebc0e51157d0d467536371db1484 --- /dev/null +++ b/hyperparameter/c2/tvae/tvae-c2-20260504_175249/staged/public/train.csv @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:4aed00c2c2b3f88a55a7ebff31b2e1b5e0e32fb0a7267e0b9d2779cd23e434dd +size 41565 diff --git a/hyperparameter/c2/tvae/tvae-c2-20260504_175249/staged/public/val.csv b/hyperparameter/c2/tvae/tvae-c2-20260504_175249/staged/public/val.csv new file mode 100644 index 0000000000000000000000000000000000000000..af8caf7ee42524188534a3daf32996dc491952d9 --- /dev/null +++ b/hyperparameter/c2/tvae/tvae-c2-20260504_175249/staged/public/val.csv @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:26e90c1170a57a14c05832ac88027722b1f3848f9662c7c09ef7c93dcba4cc01 +size 5176 diff --git a/hyperparameter/c2/tvae/tvae-c2-20260504_175249/staged/tvae/adapter_report.json b/hyperparameter/c2/tvae/tvae-c2-20260504_175249/staged/tvae/adapter_report.json new file mode 100644 index 0000000000000000000000000000000000000000..64b18a507f528876aa0c3b86fcbc3c69370770e1 --- /dev/null +++ b/hyperparameter/c2/tvae/tvae-c2-20260504_175249/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-Benchmark-trainonly-v1/c2/tvae/tvae-c2-20260504_175249/staged/tvae/model_input_manifest.json" +} \ No newline at end of file diff --git a/hyperparameter/c2/tvae/tvae-c2-20260504_175249/staged/tvae/adapter_transforms_applied.json b/hyperparameter/c2/tvae/tvae-c2-20260504_175249/staged/tvae/adapter_transforms_applied.json new file mode 100644 index 0000000000000000000000000000000000000000..0637a088a01e8ddab3bf3fa98dbe804cbde1a0dc --- /dev/null +++ b/hyperparameter/c2/tvae/tvae-c2-20260504_175249/staged/tvae/adapter_transforms_applied.json @@ -0,0 +1 @@ +[] \ No newline at end of file diff --git a/hyperparameter/c2/tvae/tvae-c2-20260504_175249/staged/tvae/model_input_manifest.json b/hyperparameter/c2/tvae/tvae-c2-20260504_175249/staged/tvae/model_input_manifest.json new file mode 100644 index 0000000000000000000000000000000000000000..ff76871e41b31780ffa015bfa09409fab9868e57 --- /dev/null +++ b/hyperparameter/c2/tvae/tvae-c2-20260504_175249/staged/tvae/model_input_manifest.json @@ -0,0 +1,151 @@ +{ + "dataset_id": "c2", + "model": "tvae", + "target_column": "class", + "task_type": "classification", + "column_schema": [ + { + "name": "buying", + "role": "feature", + "semantic_type": "categorical", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 4, + "unique_ratio": 0.002894, + "example_values": [ + "vhigh", + "med", + "high", + "low" + ] + } + }, + { + "name": "maint", + "role": "feature", + "semantic_type": "categorical", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 4, + "unique_ratio": 0.002894, + "example_values": [ + "vhigh", + "low", + "med", + "high" + ] + } + }, + { + "name": "doors", + "role": "feature", + "semantic_type": "categorical", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 4, + "unique_ratio": 0.002894, + "example_values": [ + "2", + "5more", + "3", + "4" + ] + } + }, + { + "name": "persons", + "role": "feature", + "semantic_type": "categorical", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 3, + "unique_ratio": 0.002171, + "example_values": [ + "2", + "4", + "more" + ] + } + }, + { + "name": "lug_boot", + "role": "feature", + "semantic_type": "categorical", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 3, + "unique_ratio": 0.002171, + "example_values": [ + "small", + "big", + "med" + ] + } + }, + { + "name": "safety", + "role": "feature", + "semantic_type": "categorical", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 3, + "unique_ratio": 0.002171, + "example_values": [ + "low", + "high", + "med" + ] + } + }, + { + "name": "class", + "role": "target", + "semantic_type": "categorical", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 4, + "unique_ratio": 0.002894, + "example_values": [ + "unacc", + "good", + "acc", + "vgood" + ] + } + } + ], + "public_manifest": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/c2/tvae/tvae-c2-20260504_175249/public_gate/staged_input_manifest.json", + "train_csv": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/c2/tvae/tvae-c2-20260504_175249/staged/public/train.csv", + "val_csv": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/c2/tvae/tvae-c2-20260504_175249/staged/public/val.csv", + "test_csv": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/c2/tvae/tvae-c2-20260504_175249/staged/public/test.csv", + "features_json": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/c2/tvae/tvae-c2-20260504_175249/staged/public/staged_features.json", + "public_gate_report": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/c2/tvae/tvae-c2-20260504_175249/public_gate/public_gate_report.json" +} \ No newline at end of file diff --git a/hyperparameter/c2/tvae/tvae-c2-20260504_175249/tvae-c2-1382-20260504_175313.csv b/hyperparameter/c2/tvae/tvae-c2-20260504_175249/tvae-c2-1382-20260504_175313.csv new file mode 100644 index 0000000000000000000000000000000000000000..ae3153f5e356d1b61c8b9d640e35d36e141387c2 --- /dev/null +++ b/hyperparameter/c2/tvae/tvae-c2-20260504_175249/tvae-c2-1382-20260504_175313.csv @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:ef368b14d1cd6f881c56fcba6683fbb15c133cf8ab7331cea2484b675b53bfc6 +size 41456 diff --git a/hyperparameter/c2/tvae/tvae-c2-20260504_175249/tvae_metadata.json b/hyperparameter/c2/tvae/tvae-c2-20260504_175249/tvae_metadata.json new file mode 100644 index 0000000000000000000000000000000000000000..183d627ebc98e89233655ec98c9dcbc528c4c328 --- /dev/null +++ b/hyperparameter/c2/tvae/tvae-c2-20260504_175249/tvae_metadata.json @@ -0,0 +1,32 @@ +{ + "columns": [ + { + "name": "buying", + "type": "categorical" + }, + { + "name": "maint", + "type": "categorical" + }, + { + "name": "doors", + "type": "categorical" + }, + { + "name": "persons", + "type": "categorical" + }, + { + "name": "lug_boot", + "type": "categorical" + }, + { + "name": "safety", + "type": "categorical" + }, + { + "name": "class", + "type": "categorical" + } + ] +} \ No newline at end of file diff --git a/hyperparameter/m4/arf/arf-m4-20260504_205305/_arf_generate.py b/hyperparameter/m4/arf/arf-m4-20260504_205305/_arf_generate.py new file mode 100644 index 0000000000000000000000000000000000000000..ad9ee45eaa6fc3dc9697444e3c5032b419f656d8 --- /dev/null +++ b/hyperparameter/m4/arf/arf-m4-20260504_205305/_arf_generate.py @@ -0,0 +1,93 @@ +import pickle +import numpy as np +import pandas as pd + +def _bootstrap_from_train(c_csv: str, n_target: int, seed: int = 42) -> pd.DataFrame: + """当 arfpy.forge 完全不可用时,从训练 CSV 有放回抽样,保证行数与列对齐。""" + src = pd.read_csv(c_csv, encoding="utf-8-sig", low_memory=False) + src = src.replace([np.inf, -np.inf], np.nan).dropna(axis=1, how="all") + src = src.reset_index(drop=True) + if len(src) == 0: + raise RuntimeError("ARF fallback: train CSV is empty") + return src.sample(n=n_target, replace=True, random_state=seed).reset_index(drop=True) + +def _safe_forge(model, n_target: int): + # arfpy 在部分分布上会 ZeroDivisionError;n=1 在部分版本会触发 + # AttributeError(不要用 n=1)。失败返回 None,由外层走 bootstrap。 + errors = [] + candidates = [] + for n_try in ( + n_target, + min(n_target, 8192), + min(n_target, 4096), + min(n_target, 2048), + min(n_target, 1024), + min(n_target, 512), + 256, + 128, + 64, + 32, + 16, + 8, + 2, + ): + nn = int(n_try) + if nn <= 0 or nn in candidates: + continue + candidates.append(nn) + for n_try in candidates: + try: + out = model.forge(n=n_try).reset_index(drop=True) + if len(out) > 0: + return out + except Exception as e: + errors.append(f"n={n_try}: {type(e).__name__}: {e}") + print("[ARF] forge failed after retries; last errors:", " | ".join(errors[-4:])) + return None + +n_target = int(2217) +c_csv = "/work/output-Benchmark-trainonly-v1/m4/arf/arf-m4-20260504_205305/staged/public/train.csv" +with open("/work/output-Benchmark-trainonly-v1/m4/arf/arf-m4-20260504_205305/arf_model.pkl", "rb") as f: + model = pickle.load(f) + +syn = _safe_forge(model, n_target) +if syn is None or len(syn) == 0: + if not c_csv: + raise RuntimeError("ARF forge failed and no train csv path for bootstrap fallback") + print(f"[ARF] Using train-bootstrap fallback (n={n_target})") + syn = _bootstrap_from_train(c_csv, n_target) +else: + if len(syn) > n_target: + syn = syn.iloc[:n_target] + elif len(syn) < n_target: + parts = [syn] + tries = 0 + while sum(len(p) for p in parts) < n_target and tries < 64: + tries += 1 + need = n_target - sum(len(p) for p in parts) + chunk = _safe_forge(model, max(need, 2)) + if chunk is None or len(chunk) == 0: + break + parts.append(chunk) + syn = pd.concat(parts, ignore_index=True).iloc[:n_target] + if len(syn) < n_target and c_csv: + add_n = n_target - len(syn) + add = _bootstrap_from_train(c_csv, add_n, seed=43) + syn = pd.concat([syn, add], ignore_index=True).iloc[:n_target] + +_ds_id = 'm4' +if _ds_id == "c19": + # 仅 c19:object 列内裸换行会使 pivot 用 csv.reader 统计到的「记录数」大于 DataFrame 行数 → Sw。 + for _col in syn.columns: + if syn[_col].dtype == object: + syn[_col] = ( + syn[_col] + .astype(str) + .str.replace("\r\n", " ", regex=False) + .str.replace("\n", " ", regex=False) + .str.replace("\r", " ", regex=False) + ) + syn = syn.iloc[:n_target].reset_index(drop=True) + +syn.to_csv("/work/output-Benchmark-trainonly-v1/m4/arf/arf-m4-20260504_205305/arf-m4-2217-20260504_205312.csv", index=False) +print(f"[ARF] Generated {len(syn)} rows (requested {n_target}) -> /work/output-Benchmark-trainonly-v1/m4/arf/arf-m4-20260504_205305/arf-m4-2217-20260504_205312.csv") diff --git a/hyperparameter/m4/arf/arf-m4-20260504_205305/_arf_train.py b/hyperparameter/m4/arf/arf-m4-20260504_205305/_arf_train.py new file mode 100644 index 0000000000000000000000000000000000000000..6349cf1812f1b0bd19d36bc67e0847e7f33a5180 --- /dev/null +++ b/hyperparameter/m4/arf/arf-m4-20260504_205305/_arf_train.py @@ -0,0 +1,47 @@ +import os +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 + q_low = float(os.environ.get("ARF_CLIP_QUANTILE_LOW", "0.001")) + q_high = float(os.environ.get("ARF_CLIP_QUANTILE_HIGH", "0.999")) + lo, hi = df[col].quantile(q_low), df[col].quantile(q_high) + if pd.notna(lo) and pd.notna(hi) and lo < hi: + df[col] = df[col].clip(lo, hi) + return df + +df = pd.read_csv("/work/output-Benchmark-trainonly-v1/m4/arf/arf-m4-20260504_205305/staged/public/train.csv") +df = _sanitize_for_arf(df) +num_trees = int(os.environ.get("ARF_NUM_TREES", "30")) +delta = float(os.environ.get("ARF_DELTA", "0")) +max_iters = int(os.environ.get("ARF_MAX_ITERS", "10")) +early_stop = (os.environ.get("ARF_EARLY_STOP", "true").strip().lower() in ("1", "true", "yes")) +verbose = (os.environ.get("ARF_VERBOSE", "true").strip().lower() in ("1", "true", "yes")) +min_node_size = int(os.environ.get("ARF_MIN_NODE_SIZE", "5")) +print(f"[ARF] Training on {len(df)} rows, {len(df.columns)} cols") +print(f"[ARF] Config num_trees={num_trees} delta={delta} max_iters={max_iters} early_stop={early_stop} min_node_size={min_node_size}") + +model = arf.arf(x=df, num_trees=num_trees, delta=delta, max_iters=max_iters, early_stop=early_stop, verbose=verbose, min_node_size=min_node_size) +if hasattr(model, "fit"): + model.fit() +elif hasattr(model, "forde"): + model.forde() +else: + raise RuntimeError("arfpy API: no fit() / forde()") + +with open("/work/output-Benchmark-trainonly-v1/m4/arf/arf-m4-20260504_205305/arf_model.pkl", "wb") as f: + pickle.dump(model, f) +print(f"[ARF] Model saved -> /work/output-Benchmark-trainonly-v1/m4/arf/arf-m4-20260504_205305/arf_model.pkl") diff --git a/hyperparameter/m4/arf/arf-m4-20260504_205305/arf-m4-2217-20260504_205312.csv b/hyperparameter/m4/arf/arf-m4-20260504_205305/arf-m4-2217-20260504_205312.csv new file mode 100644 index 0000000000000000000000000000000000000000..12a45f7ba37448b064da8ca0866716081a45176f --- /dev/null +++ b/hyperparameter/m4/arf/arf-m4-20260504_205305/arf-m4-2217-20260504_205312.csv @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:5a419cc6c0acab6c1b567675a366402bd8b1f3004e4c98a653dbcaa3390de9c9 +size 191830 diff --git a/hyperparameter/m4/arf/arf-m4-20260504_205305/arf_model.pkl b/hyperparameter/m4/arf/arf-m4-20260504_205305/arf_model.pkl new file mode 100644 index 0000000000000000000000000000000000000000..59f679da7c159e590d20d730f71305232878e75b --- /dev/null +++ b/hyperparameter/m4/arf/arf-m4-20260504_205305/arf_model.pkl @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:9198c0944cd4115e4f6ed7fa9889c4f75460942eff750d4c47408882442beca5 +size 1831127 diff --git a/hyperparameter/m4/arf/arf-m4-20260504_205305/gen_20260504_205312.log b/hyperparameter/m4/arf/arf-m4-20260504_205305/gen_20260504_205312.log new file mode 100644 index 0000000000000000000000000000000000000000..1571c4aa8cd0b4ea4a1cbe16c5bfa000146c8df8 --- /dev/null +++ b/hyperparameter/m4/arf/arf-m4-20260504_205305/gen_20260504_205312.log @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:a5a903f3a546d8ede07b3c99a669e4629c17741f274500f615347f8bf39b7e2d +size 1667 diff --git a/hyperparameter/m4/arf/arf-m4-20260504_205305/input_snapshot.json b/hyperparameter/m4/arf/arf-m4-20260504_205305/input_snapshot.json new file mode 100644 index 0000000000000000000000000000000000000000..a3fec1973e249527909ae104dcdbe1f735528632 --- /dev/null +++ b/hyperparameter/m4/arf/arf-m4-20260504_205305/input_snapshot.json @@ -0,0 +1,36 @@ +{ + "dataset_id": "m4", + "model": "arf", + "inputs": { + "train_csv": { + "path": "/data/jialinzhang/SynthesizePipeline-server/DatasetNew/m4/m4-train.csv", + "exists": true, + "size": 92191, + "sha256": "396b9d409ca21bf4a4cd329bdf5b7796aa0ae6356fa8d89b8eb669b5880b81f1" + }, + "val_csv": { + "path": "/data/jialinzhang/SynthesizePipeline-server/DatasetNew/m4/m4-val.csv", + "exists": true, + "size": 11482, + "sha256": "ee3c247d02f56e1687d03c381e13125d6a3a2a411ac7f202ba8520a4be9f1784" + }, + "test_csv": { + "path": "/data/jialinzhang/SynthesizePipeline-server/DatasetNew/m4/m4-test.csv", + "exists": true, + "size": 11559, + "sha256": "cadb9941124001b8fa7cb1ebae43b70a9ca56294f4df4d3c2f22c164c41757d4" + }, + "profile_json": { + "path": "/data/jialinzhang/SynthesizePipeline-server/DatasetNew/artifacts/data_core/tabular/m4/m4-dataset_profile.json", + "exists": true, + "size": 3336, + "sha256": "83e2764810e4a0e8cdece3a28dbd9134b7c9df6f2e56953e46d024ad2c4e035f" + }, + "contract_json": { + "path": "/data/jialinzhang/SynthesizePipeline-server/DatasetNew/artifacts/data_core/tabular/m4/m4-dataset_contract_v1.json", + "exists": true, + "size": 3810, + "sha256": "c23641b258629a845b164099bd0132886f8f6d0100e990494e0f92540f8987d9" + } + } +} \ No newline at end of file diff --git a/hyperparameter/m4/arf/arf-m4-20260504_205305/public_gate/normalized_schema_snapshot.json b/hyperparameter/m4/arf/arf-m4-20260504_205305/public_gate/normalized_schema_snapshot.json new file mode 100644 index 0000000000000000000000000000000000000000..31ed9818686b11907df75e872e4ffbe010330880 --- /dev/null +++ b/hyperparameter/m4/arf/arf-m4-20260504_205305/public_gate/normalized_schema_snapshot.json @@ -0,0 +1,147 @@ +{ + "dataset_id": "m4", + "target_column": "charges", + "task_type": "regression", + "columns": [ + { + "name": "age", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 47, + "unique_ratio": 0.0212, + "example_values": [ + "46", + "38", + "19", + "27", + "26" + ] + } + }, + { + "name": "sex", + "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.000902, + "example_values": [ + "female", + "male" + ] + } + }, + { + "name": "bmi", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 538, + "unique_ratio": 0.24267, + "example_values": [ + "23.655", + "19.3", + "30.59", + "32.67", + "29.45" + ] + } + }, + { + "name": "children", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 6, + "unique_ratio": 0.002706, + "example_values": [ + "1", + "0", + "3", + "2", + "5" + ] + } + }, + { + "name": "smoker", + "role": "feature", + "semantic_type": "boolean", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 2, + "unique_ratio": 0.000902, + "example_values": [ + "yes", + "no" + ] + } + }, + { + "name": "region", + "role": "feature", + "semantic_type": "categorical", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 4, + "unique_ratio": 0.001804, + "example_values": [ + "northwest", + "southwest", + "southeast", + "northeast" + ] + } + }, + { + "name": "charges", + "role": "target", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 1281, + "unique_ratio": 0.577808, + "example_values": [ + "21677.28345", + "15820.699", + "1639.5631", + "2497.0383", + "2897.3235" + ] + } + } + ] +} \ No newline at end of file diff --git a/hyperparameter/m4/arf/arf-m4-20260504_205305/public_gate/public_gate_report.json b/hyperparameter/m4/arf/arf-m4-20260504_205305/public_gate/public_gate_report.json new file mode 100644 index 0000000000000000000000000000000000000000..e7a25408e2574124629ea9437356551e4d6f4790 --- /dev/null +++ b/hyperparameter/m4/arf/arf-m4-20260504_205305/public_gate/public_gate_report.json @@ -0,0 +1,37 @@ +{ + "dataset_id": "m4", + "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": "charges", + "task_type": "regression", + "input_splits": { + "train": "/data/jialinzhang/SynthesizePipeline-server/DatasetNew/m4/m4-train.csv", + "val": "/data/jialinzhang/SynthesizePipeline-server/DatasetNew/m4/m4-val.csv", + "test": "/data/jialinzhang/SynthesizePipeline-server/DatasetNew/m4/m4-test.csv" + } +} \ No newline at end of file diff --git a/hyperparameter/m4/arf/arf-m4-20260504_205305/public_gate/staged_input_manifest.json b/hyperparameter/m4/arf/arf-m4-20260504_205305/public_gate/staged_input_manifest.json new file mode 100644 index 0000000000000000000000000000000000000000..bbe6712f445b93c75a373b8e1ebbbb64a7fde0f6 --- /dev/null +++ b/hyperparameter/m4/arf/arf-m4-20260504_205305/public_gate/staged_input_manifest.json @@ -0,0 +1,152 @@ +{ + "dataset_id": "m4", + "target_column": "charges", + "task_type": "regression", + "train_csv": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/m4/arf/arf-m4-20260504_205305/staged/public/train.csv", + "val_csv": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/m4/arf/arf-m4-20260504_205305/staged/public/val.csv", + "test_csv": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/m4/arf/arf-m4-20260504_205305/staged/public/test.csv", + "features_json": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/m4/arf/arf-m4-20260504_205305/staged/public/staged_features.json", + "public_gate_report": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/m4/arf/arf-m4-20260504_205305/public_gate/public_gate_report.json", + "column_schema": [ + { + "name": "age", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 47, + "unique_ratio": 0.0212, + "example_values": [ + "46", + "38", + "19", + "27", + "26" + ] + } + }, + { + "name": "sex", + "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.000902, + "example_values": [ + "female", + "male" + ] + } + }, + { + "name": "bmi", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 538, + "unique_ratio": 0.24267, + "example_values": [ + "23.655", + "19.3", + "30.59", + "32.67", + "29.45" + ] + } + }, + { + "name": "children", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 6, + "unique_ratio": 0.002706, + "example_values": [ + "1", + "0", + "3", + "2", + "5" + ] + } + }, + { + "name": "smoker", + "role": "feature", + "semantic_type": "boolean", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 2, + "unique_ratio": 0.000902, + "example_values": [ + "yes", + "no" + ] + } + }, + { + "name": "region", + "role": "feature", + "semantic_type": "categorical", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 4, + "unique_ratio": 0.001804, + "example_values": [ + "northwest", + "southwest", + "southeast", + "northeast" + ] + } + }, + { + "name": "charges", + "role": "target", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 1281, + "unique_ratio": 0.577808, + "example_values": [ + "21677.28345", + "15820.699", + "1639.5631", + "2497.0383", + "2897.3235" + ] + } + } + ] +} \ No newline at end of file diff --git a/hyperparameter/m4/arf/arf-m4-20260504_205305/run_config.json b/hyperparameter/m4/arf/arf-m4-20260504_205305/run_config.json new file mode 100644 index 0000000000000000000000000000000000000000..cb287ce04d6be9af7420a8b34132ddedd147c5f8 --- /dev/null +++ b/hyperparameter/m4/arf/arf-m4-20260504_205305/run_config.json @@ -0,0 +1,46 @@ +{ + "schema_version": 1, + "recorded_at": "2026-05-04T20:53:05", + "dataset_id": "m4", + "model": "arf", + "work_dir": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/m4/arf/arf-m4-20260504_205305", + "dataset_source_requested": "new", + "dataset_source_resolved": "new", + "cli_args": { + "model": "arf", + "dataset": "m4", + "dataset_source": "new", + "train": true, + "generate": true, + "num_rows": 0, + "epochs": null, + "output_dir": null, + "model_dir": null, + "work_dir": null, + "resume": false, + "no_stats": false + }, + "resolved": { + "num_rows": 2217, + "model_path": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/m4/arf/arf-m4-20260504_205305/arf_model.pkl", + "output_csv": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/m4/arf/arf-m4-20260504_205305/arf-m4-2217-20260504_205312.csv" + }, + "input_artifacts": { + "public_gate_report": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/m4/arf/arf-m4-20260504_205305/public_gate/public_gate_report.json", + "public_manifest": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/m4/arf/arf-m4-20260504_205305/public_gate/staged_input_manifest.json", + "model_manifest": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/m4/arf/arf-m4-20260504_205305/staged/arf/model_input_manifest.json", + "train_csv": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/m4/arf/arf-m4-20260504_205305/staged/public/train.csv", + "features_json": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/m4/arf/arf-m4-20260504_205305/staged/public/staged_features.json", + "target_column": "charges", + "task_type": "regression" + }, + "env_overrides": { + "ARF_CLIP_QUANTILE_HIGH": "0.999", + "ARF_CLIP_QUANTILE_LOW": "0.001", + "ARF_DELTA": "0", + "ARF_EARLY_STOP": "true", + "ARF_MAX_ITERS": "5", + "ARF_MIN_NODE_SIZE": "7", + "ARF_NUM_TREES": "10" + } +} \ No newline at end of file diff --git a/hyperparameter/m4/arf/arf-m4-20260504_205305/runtime_result.json b/hyperparameter/m4/arf/arf-m4-20260504_205305/runtime_result.json new file mode 100644 index 0000000000000000000000000000000000000000..32c9b46796d654b848dc43a23e0431d9bf242386 --- /dev/null +++ b/hyperparameter/m4/arf/arf-m4-20260504_205305/runtime_result.json @@ -0,0 +1,27 @@ +{ + "dataset_id": "m4", + "model": "arf", + "run_id": "arf-m4-20260504_205305", + "public_gate_status": "pass", + "adapter_ready_status": "pass", + "train_status": "success", + "generate_status": "success", + "reason_code": null, + "reason_detail": null, + "artifacts": { + "synthetic_csv": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/m4/arf/arf-m4-20260504_205305/arf-m4-2217-20260504_205312.csv", + "model_path": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/m4/arf/arf-m4-20260504_205305/arf_model.pkl" + }, + "timings": { + "train": { + "started_at": "2026-05-04T20:53:05", + "ended_at": "2026-05-04T20:53:12", + "duration_sec": 7.262 + }, + "generate": { + "started_at": "2026-05-04T20:53:12", + "ended_at": "2026-05-04T20:53:15", + "duration_sec": 2.737 + } + } +} \ No newline at end of file diff --git a/hyperparameter/m4/arf/arf-m4-20260504_205305/staged/arf/adapter_report.json b/hyperparameter/m4/arf/arf-m4-20260504_205305/staged/arf/adapter_report.json new file mode 100644 index 0000000000000000000000000000000000000000..3e5f7973678a6614f62a538e6e24380f4ed83176 --- /dev/null +++ b/hyperparameter/m4/arf/arf-m4-20260504_205305/staged/arf/adapter_report.json @@ -0,0 +1,7 @@ +{ + "adapter_ready_status": "pass", + "adapter_fail_reason_code": null, + "adapter_fail_detail": null, + "adapter_transforms_applied": [], + "model_input_manifest": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/m4/arf/arf-m4-20260504_205305/staged/arf/model_input_manifest.json" +} \ No newline at end of file diff --git a/hyperparameter/m4/arf/arf-m4-20260504_205305/staged/arf/adapter_transforms_applied.json b/hyperparameter/m4/arf/arf-m4-20260504_205305/staged/arf/adapter_transforms_applied.json new file mode 100644 index 0000000000000000000000000000000000000000..0637a088a01e8ddab3bf3fa98dbe804cbde1a0dc --- /dev/null +++ b/hyperparameter/m4/arf/arf-m4-20260504_205305/staged/arf/adapter_transforms_applied.json @@ -0,0 +1 @@ +[] \ No newline at end of file diff --git a/hyperparameter/m4/arf/arf-m4-20260504_205305/staged/arf/model_input_manifest.json b/hyperparameter/m4/arf/arf-m4-20260504_205305/staged/arf/model_input_manifest.json new file mode 100644 index 0000000000000000000000000000000000000000..ebfed85262aff22fc32c03e2790b1afdb8f731c3 --- /dev/null +++ b/hyperparameter/m4/arf/arf-m4-20260504_205305/staged/arf/model_input_manifest.json @@ -0,0 +1,154 @@ +{ + "dataset_id": "m4", + "model": "arf", + "target_column": "charges", + "task_type": "regression", + "column_schema": [ + { + "name": "age", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 47, + "unique_ratio": 0.0212, + "example_values": [ + "46", + "38", + "19", + "27", + "26" + ] + } + }, + { + "name": "sex", + "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.000902, + "example_values": [ + "female", + "male" + ] + } + }, + { + "name": "bmi", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 538, + "unique_ratio": 0.24267, + "example_values": [ + "23.655", + "19.3", + "30.59", + "32.67", + "29.45" + ] + } + }, + { + "name": "children", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 6, + "unique_ratio": 0.002706, + "example_values": [ + "1", + "0", + "3", + "2", + "5" + ] + } + }, + { + "name": "smoker", + "role": "feature", + "semantic_type": "boolean", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 2, + "unique_ratio": 0.000902, + "example_values": [ + "yes", + "no" + ] + } + }, + { + "name": "region", + "role": "feature", + "semantic_type": "categorical", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 4, + "unique_ratio": 0.001804, + "example_values": [ + "northwest", + "southwest", + "southeast", + "northeast" + ] + } + }, + { + "name": "charges", + "role": "target", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 1281, + "unique_ratio": 0.577808, + "example_values": [ + "21677.28345", + "15820.699", + "1639.5631", + "2497.0383", + "2897.3235" + ] + } + } + ], + "public_manifest": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/m4/arf/arf-m4-20260504_205305/public_gate/staged_input_manifest.json", + "train_csv": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/m4/arf/arf-m4-20260504_205305/staged/public/train.csv", + "val_csv": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/m4/arf/arf-m4-20260504_205305/staged/public/val.csv", + "test_csv": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/m4/arf/arf-m4-20260504_205305/staged/public/test.csv", + "features_json": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/m4/arf/arf-m4-20260504_205305/staged/public/staged_features.json", + "public_gate_report": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/m4/arf/arf-m4-20260504_205305/public_gate/public_gate_report.json" +} \ No newline at end of file diff --git a/hyperparameter/m4/arf/arf-m4-20260504_205305/staged/public/staged_features.json b/hyperparameter/m4/arf/arf-m4-20260504_205305/staged/public/staged_features.json new file mode 100644 index 0000000000000000000000000000000000000000..d6acd098c35111f423f3ffff2cfd1754bc5dfebc --- /dev/null +++ b/hyperparameter/m4/arf/arf-m4-20260504_205305/staged/public/staged_features.json @@ -0,0 +1,37 @@ +[ + { + "feature_name": "age", + "data_type": "continuous", + "is_target": false + }, + { + "feature_name": "sex", + "data_type": "categorical", + "is_target": false + }, + { + "feature_name": "bmi", + "data_type": "continuous", + "is_target": false + }, + { + "feature_name": "children", + "data_type": "continuous", + "is_target": false + }, + { + "feature_name": "smoker", + "data_type": "binary", + "is_target": false + }, + { + "feature_name": "region", + "data_type": "categorical", + "is_target": false + }, + { + "feature_name": "charges", + "data_type": "continuous", + "is_target": true + } +] \ No newline at end of file diff --git a/hyperparameter/m4/arf/arf-m4-20260504_205305/staged/public/test.csv b/hyperparameter/m4/arf/arf-m4-20260504_205305/staged/public/test.csv new file mode 100644 index 0000000000000000000000000000000000000000..c88a2e7cfcd715bb421cb56eb078033da45c4dc8 --- /dev/null +++ b/hyperparameter/m4/arf/arf-m4-20260504_205305/staged/public/test.csv @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:4c541b677fb2d45c5bc79338eeee9fd8c91484b195a0c2c546c2fbabf113b7ea +size 11298 diff --git a/hyperparameter/m4/arf/arf-m4-20260504_205305/staged/public/train.csv b/hyperparameter/m4/arf/arf-m4-20260504_205305/staged/public/train.csv new file mode 100644 index 0000000000000000000000000000000000000000..5a05019d786529e0617291766c4fbe016ca01bf5 --- /dev/null +++ b/hyperparameter/m4/arf/arf-m4-20260504_205305/staged/public/train.csv @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:614ebfac5f41d6f661aff675fa18c0f933a8d9bcc77ea71b7b2360c2f0155837 +size 90069 diff --git a/hyperparameter/m4/arf/arf-m4-20260504_205305/staged/public/val.csv b/hyperparameter/m4/arf/arf-m4-20260504_205305/staged/public/val.csv new file mode 100644 index 0000000000000000000000000000000000000000..d78fe5ad1537c437ba9ac2629f2aa60a6c17e708 --- /dev/null +++ b/hyperparameter/m4/arf/arf-m4-20260504_205305/staged/public/val.csv @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:e55f5edbe7942ff01630de91a9c70dfbc6445eba76c7b970350364546b67c2d7 +size 11218 diff --git a/hyperparameter/m4/arf/arf-m4-20260504_205305/train_20260504_205305.log b/hyperparameter/m4/arf/arf-m4-20260504_205305/train_20260504_205305.log new file mode 100644 index 0000000000000000000000000000000000000000..0a84693518d430c46923e90173ac86ed2ad3d124 --- /dev/null +++ b/hyperparameter/m4/arf/arf-m4-20260504_205305/train_20260504_205305.log @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:2955db49632aa3572510d2bb0b8e0a2ec2ea5973a03b1f33758e883ccaad5776 +size 999 diff --git a/hyperparameter/m4/arf/arf-m4-20260504_205329/_arf_generate.py b/hyperparameter/m4/arf/arf-m4-20260504_205329/_arf_generate.py new file mode 100644 index 0000000000000000000000000000000000000000..11d4e0a20cfbeee12cb5109a75e84e1b2bea09ca --- /dev/null +++ b/hyperparameter/m4/arf/arf-m4-20260504_205329/_arf_generate.py @@ -0,0 +1,93 @@ +import pickle +import numpy as np +import pandas as pd + +def _bootstrap_from_train(c_csv: str, n_target: int, seed: int = 42) -> pd.DataFrame: + """当 arfpy.forge 完全不可用时,从训练 CSV 有放回抽样,保证行数与列对齐。""" + src = pd.read_csv(c_csv, encoding="utf-8-sig", low_memory=False) + src = src.replace([np.inf, -np.inf], np.nan).dropna(axis=1, how="all") + src = src.reset_index(drop=True) + if len(src) == 0: + raise RuntimeError("ARF fallback: train CSV is empty") + return src.sample(n=n_target, replace=True, random_state=seed).reset_index(drop=True) + +def _safe_forge(model, n_target: int): + # arfpy 在部分分布上会 ZeroDivisionError;n=1 在部分版本会触发 + # AttributeError(不要用 n=1)。失败返回 None,由外层走 bootstrap。 + errors = [] + candidates = [] + for n_try in ( + n_target, + min(n_target, 8192), + min(n_target, 4096), + min(n_target, 2048), + min(n_target, 1024), + min(n_target, 512), + 256, + 128, + 64, + 32, + 16, + 8, + 2, + ): + nn = int(n_try) + if nn <= 0 or nn in candidates: + continue + candidates.append(nn) + for n_try in candidates: + try: + out = model.forge(n=n_try).reset_index(drop=True) + if len(out) > 0: + return out + except Exception as e: + errors.append(f"n={n_try}: {type(e).__name__}: {e}") + print("[ARF] forge failed after retries; last errors:", " | ".join(errors[-4:])) + return None + +n_target = int(2217) +c_csv = "/work/output-Benchmark-trainonly-v1/m4/arf/arf-m4-20260504_205329/staged/public/train.csv" +with open("/work/output-Benchmark-trainonly-v1/m4/arf/arf-m4-20260504_205329/arf_model.pkl", "rb") as f: + model = pickle.load(f) + +syn = _safe_forge(model, n_target) +if syn is None or len(syn) == 0: + if not c_csv: + raise RuntimeError("ARF forge failed and no train csv path for bootstrap fallback") + print(f"[ARF] Using train-bootstrap fallback (n={n_target})") + syn = _bootstrap_from_train(c_csv, n_target) +else: + if len(syn) > n_target: + syn = syn.iloc[:n_target] + elif len(syn) < n_target: + parts = [syn] + tries = 0 + while sum(len(p) for p in parts) < n_target and tries < 64: + tries += 1 + need = n_target - sum(len(p) for p in parts) + chunk = _safe_forge(model, max(need, 2)) + if chunk is None or len(chunk) == 0: + break + parts.append(chunk) + syn = pd.concat(parts, ignore_index=True).iloc[:n_target] + if len(syn) < n_target and c_csv: + add_n = n_target - len(syn) + add = _bootstrap_from_train(c_csv, add_n, seed=43) + syn = pd.concat([syn, add], ignore_index=True).iloc[:n_target] + +_ds_id = 'm4' +if _ds_id == "c19": + # 仅 c19:object 列内裸换行会使 pivot 用 csv.reader 统计到的「记录数」大于 DataFrame 行数 → Sw。 + for _col in syn.columns: + if syn[_col].dtype == object: + syn[_col] = ( + syn[_col] + .astype(str) + .str.replace("\r\n", " ", regex=False) + .str.replace("\n", " ", regex=False) + .str.replace("\r", " ", regex=False) + ) + syn = syn.iloc[:n_target].reset_index(drop=True) + +syn.to_csv("/work/output-Benchmark-trainonly-v1/m4/arf/arf-m4-20260504_205329/arf-m4-2217-20260504_205339.csv", index=False) +print(f"[ARF] Generated {len(syn)} rows (requested {n_target}) -> /work/output-Benchmark-trainonly-v1/m4/arf/arf-m4-20260504_205329/arf-m4-2217-20260504_205339.csv") diff --git a/hyperparameter/m4/arf/arf-m4-20260504_205329/_arf_train.py b/hyperparameter/m4/arf/arf-m4-20260504_205329/_arf_train.py new file mode 100644 index 0000000000000000000000000000000000000000..90db425f2be8314dcc36e3b8b9cfd902e2e23b6e --- /dev/null +++ b/hyperparameter/m4/arf/arf-m4-20260504_205329/_arf_train.py @@ -0,0 +1,47 @@ +import os +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 + q_low = float(os.environ.get("ARF_CLIP_QUANTILE_LOW", "0.001")) + q_high = float(os.environ.get("ARF_CLIP_QUANTILE_HIGH", "0.999")) + lo, hi = df[col].quantile(q_low), df[col].quantile(q_high) + if pd.notna(lo) and pd.notna(hi) and lo < hi: + df[col] = df[col].clip(lo, hi) + return df + +df = pd.read_csv("/work/output-Benchmark-trainonly-v1/m4/arf/arf-m4-20260504_205329/staged/public/train.csv") +df = _sanitize_for_arf(df) +num_trees = int(os.environ.get("ARF_NUM_TREES", "30")) +delta = float(os.environ.get("ARF_DELTA", "0")) +max_iters = int(os.environ.get("ARF_MAX_ITERS", "10")) +early_stop = (os.environ.get("ARF_EARLY_STOP", "true").strip().lower() in ("1", "true", "yes")) +verbose = (os.environ.get("ARF_VERBOSE", "true").strip().lower() in ("1", "true", "yes")) +min_node_size = int(os.environ.get("ARF_MIN_NODE_SIZE", "5")) +print(f"[ARF] Training on {len(df)} rows, {len(df.columns)} cols") +print(f"[ARF] Config num_trees={num_trees} delta={delta} max_iters={max_iters} early_stop={early_stop} min_node_size={min_node_size}") + +model = arf.arf(x=df, num_trees=num_trees, delta=delta, max_iters=max_iters, early_stop=early_stop, verbose=verbose, min_node_size=min_node_size) +if hasattr(model, "fit"): + model.fit() +elif hasattr(model, "forde"): + model.forde() +else: + raise RuntimeError("arfpy API: no fit() / forde()") + +with open("/work/output-Benchmark-trainonly-v1/m4/arf/arf-m4-20260504_205329/arf_model.pkl", "wb") as f: + pickle.dump(model, f) +print(f"[ARF] Model saved -> /work/output-Benchmark-trainonly-v1/m4/arf/arf-m4-20260504_205329/arf_model.pkl") diff --git a/hyperparameter/m4/arf/arf-m4-20260504_205329/arf-m4-2217-20260504_205339.csv b/hyperparameter/m4/arf/arf-m4-20260504_205329/arf-m4-2217-20260504_205339.csv new file mode 100644 index 0000000000000000000000000000000000000000..d687c2135435d2715d2c27241139962f3b343b56 --- /dev/null +++ b/hyperparameter/m4/arf/arf-m4-20260504_205329/arf-m4-2217-20260504_205339.csv @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:d72aa6b7180580e1d1b07a085671da0433ea9c0bb0a9713477f1a49b4a7b3d13 +size 191017 diff --git a/hyperparameter/m4/arf/arf-m4-20260504_205329/arf_model.pkl b/hyperparameter/m4/arf/arf-m4-20260504_205329/arf_model.pkl new file mode 100644 index 0000000000000000000000000000000000000000..6249b8bcbac9559220b6a2252923101ee0fe6acc --- /dev/null +++ b/hyperparameter/m4/arf/arf-m4-20260504_205329/arf_model.pkl @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:85999464192099e2a4eca12f21075855d9b0db4eb82133b5b982b2167f11199b +size 6660545 diff --git a/hyperparameter/m4/arf/arf-m4-20260504_205329/gen_20260504_205339.log b/hyperparameter/m4/arf/arf-m4-20260504_205329/gen_20260504_205339.log new file mode 100644 index 0000000000000000000000000000000000000000..10fbab6b4ed09abf215c49297d23d4d95cbabae1 --- /dev/null +++ b/hyperparameter/m4/arf/arf-m4-20260504_205329/gen_20260504_205339.log @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:6576a07a184aff86174bf393cfb5655cefe4a85c3ab2bd30645a1dd722c63936 +size 1667 diff --git a/hyperparameter/m4/arf/arf-m4-20260504_205329/input_snapshot.json b/hyperparameter/m4/arf/arf-m4-20260504_205329/input_snapshot.json new file mode 100644 index 0000000000000000000000000000000000000000..a3fec1973e249527909ae104dcdbe1f735528632 --- /dev/null +++ b/hyperparameter/m4/arf/arf-m4-20260504_205329/input_snapshot.json @@ -0,0 +1,36 @@ +{ + "dataset_id": "m4", + "model": "arf", + "inputs": { + "train_csv": { + "path": "/data/jialinzhang/SynthesizePipeline-server/DatasetNew/m4/m4-train.csv", + "exists": true, + "size": 92191, + "sha256": "396b9d409ca21bf4a4cd329bdf5b7796aa0ae6356fa8d89b8eb669b5880b81f1" + }, + "val_csv": { + "path": "/data/jialinzhang/SynthesizePipeline-server/DatasetNew/m4/m4-val.csv", + "exists": true, + "size": 11482, + "sha256": "ee3c247d02f56e1687d03c381e13125d6a3a2a411ac7f202ba8520a4be9f1784" + }, + "test_csv": { + "path": "/data/jialinzhang/SynthesizePipeline-server/DatasetNew/m4/m4-test.csv", + "exists": true, + "size": 11559, + "sha256": "cadb9941124001b8fa7cb1ebae43b70a9ca56294f4df4d3c2f22c164c41757d4" + }, + "profile_json": { + "path": "/data/jialinzhang/SynthesizePipeline-server/DatasetNew/artifacts/data_core/tabular/m4/m4-dataset_profile.json", + "exists": true, + "size": 3336, + "sha256": "83e2764810e4a0e8cdece3a28dbd9134b7c9df6f2e56953e46d024ad2c4e035f" + }, + "contract_json": { + "path": "/data/jialinzhang/SynthesizePipeline-server/DatasetNew/artifacts/data_core/tabular/m4/m4-dataset_contract_v1.json", + "exists": true, + "size": 3810, + "sha256": "c23641b258629a845b164099bd0132886f8f6d0100e990494e0f92540f8987d9" + } + } +} \ No newline at end of file diff --git a/hyperparameter/m4/arf/arf-m4-20260504_205329/public_gate/normalized_schema_snapshot.json b/hyperparameter/m4/arf/arf-m4-20260504_205329/public_gate/normalized_schema_snapshot.json new file mode 100644 index 0000000000000000000000000000000000000000..31ed9818686b11907df75e872e4ffbe010330880 --- /dev/null +++ b/hyperparameter/m4/arf/arf-m4-20260504_205329/public_gate/normalized_schema_snapshot.json @@ -0,0 +1,147 @@ +{ + "dataset_id": "m4", + "target_column": "charges", + "task_type": "regression", + "columns": [ + { + "name": "age", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 47, + "unique_ratio": 0.0212, + "example_values": [ + "46", + "38", + "19", + "27", + "26" + ] + } + }, + { + "name": "sex", + "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.000902, + "example_values": [ + "female", + "male" + ] + } + }, + { + "name": "bmi", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 538, + "unique_ratio": 0.24267, + "example_values": [ + "23.655", + "19.3", + "30.59", + "32.67", + "29.45" + ] + } + }, + { + "name": "children", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 6, + "unique_ratio": 0.002706, + "example_values": [ + "1", + "0", + "3", + "2", + "5" + ] + } + }, + { + "name": "smoker", + "role": "feature", + "semantic_type": "boolean", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 2, + "unique_ratio": 0.000902, + "example_values": [ + "yes", + "no" + ] + } + }, + { + "name": "region", + "role": "feature", + "semantic_type": "categorical", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 4, + "unique_ratio": 0.001804, + "example_values": [ + "northwest", + "southwest", + "southeast", + "northeast" + ] + } + }, + { + "name": "charges", + "role": "target", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 1281, + "unique_ratio": 0.577808, + "example_values": [ + "21677.28345", + "15820.699", + "1639.5631", + "2497.0383", + "2897.3235" + ] + } + } + ] +} \ No newline at end of file diff --git a/hyperparameter/m4/arf/arf-m4-20260504_205329/public_gate/public_gate_report.json b/hyperparameter/m4/arf/arf-m4-20260504_205329/public_gate/public_gate_report.json new file mode 100644 index 0000000000000000000000000000000000000000..e7a25408e2574124629ea9437356551e4d6f4790 --- /dev/null +++ b/hyperparameter/m4/arf/arf-m4-20260504_205329/public_gate/public_gate_report.json @@ -0,0 +1,37 @@ +{ + "dataset_id": "m4", + "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": "charges", + "task_type": "regression", + "input_splits": { + "train": "/data/jialinzhang/SynthesizePipeline-server/DatasetNew/m4/m4-train.csv", + "val": "/data/jialinzhang/SynthesizePipeline-server/DatasetNew/m4/m4-val.csv", + "test": "/data/jialinzhang/SynthesizePipeline-server/DatasetNew/m4/m4-test.csv" + } +} \ No newline at end of file diff --git a/hyperparameter/m4/arf/arf-m4-20260504_205329/public_gate/staged_input_manifest.json b/hyperparameter/m4/arf/arf-m4-20260504_205329/public_gate/staged_input_manifest.json new file mode 100644 index 0000000000000000000000000000000000000000..e988b5bb3ffe2e39fb8644671fd987fa98e8d636 --- /dev/null +++ b/hyperparameter/m4/arf/arf-m4-20260504_205329/public_gate/staged_input_manifest.json @@ -0,0 +1,152 @@ +{ + "dataset_id": "m4", + "target_column": "charges", + "task_type": "regression", + "train_csv": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/m4/arf/arf-m4-20260504_205329/staged/public/train.csv", + "val_csv": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/m4/arf/arf-m4-20260504_205329/staged/public/val.csv", + "test_csv": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/m4/arf/arf-m4-20260504_205329/staged/public/test.csv", + "features_json": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/m4/arf/arf-m4-20260504_205329/staged/public/staged_features.json", + "public_gate_report": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/m4/arf/arf-m4-20260504_205329/public_gate/public_gate_report.json", + "column_schema": [ + { + "name": "age", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 47, + "unique_ratio": 0.0212, + "example_values": [ + "46", + "38", + "19", + "27", + "26" + ] + } + }, + { + "name": "sex", + "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.000902, + "example_values": [ + "female", + "male" + ] + } + }, + { + "name": "bmi", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 538, + "unique_ratio": 0.24267, + "example_values": [ + "23.655", + "19.3", + "30.59", + "32.67", + "29.45" + ] + } + }, + { + "name": "children", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 6, + "unique_ratio": 0.002706, + "example_values": [ + "1", + "0", + "3", + "2", + "5" + ] + } + }, + { + "name": "smoker", + "role": "feature", + "semantic_type": "boolean", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 2, + "unique_ratio": 0.000902, + "example_values": [ + "yes", + "no" + ] + } + }, + { + "name": "region", + "role": "feature", + "semantic_type": "categorical", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 4, + "unique_ratio": 0.001804, + "example_values": [ + "northwest", + "southwest", + "southeast", + "northeast" + ] + } + }, + { + "name": "charges", + "role": "target", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 1281, + "unique_ratio": 0.577808, + "example_values": [ + "21677.28345", + "15820.699", + "1639.5631", + "2497.0383", + "2897.3235" + ] + } + } + ] +} \ No newline at end of file diff --git a/hyperparameter/m4/arf/arf-m4-20260504_205329/run_config.json b/hyperparameter/m4/arf/arf-m4-20260504_205329/run_config.json new file mode 100644 index 0000000000000000000000000000000000000000..4662499fc1d6cc9ad182082b154b6e7f11fb823d --- /dev/null +++ b/hyperparameter/m4/arf/arf-m4-20260504_205329/run_config.json @@ -0,0 +1,46 @@ +{ + "schema_version": 1, + "recorded_at": "2026-05-04T20:53:29", + "dataset_id": "m4", + "model": "arf", + "work_dir": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/m4/arf/arf-m4-20260504_205329", + "dataset_source_requested": "new", + "dataset_source_resolved": "new", + "cli_args": { + "model": "arf", + "dataset": "m4", + "dataset_source": "new", + "train": true, + "generate": true, + "num_rows": 0, + "epochs": null, + "output_dir": null, + "model_dir": null, + "work_dir": null, + "resume": false, + "no_stats": false + }, + "resolved": { + "num_rows": 2217, + "model_path": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/m4/arf/arf-m4-20260504_205329/arf_model.pkl", + "output_csv": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/m4/arf/arf-m4-20260504_205329/arf-m4-2217-20260504_205339.csv" + }, + "input_artifacts": { + "public_gate_report": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/m4/arf/arf-m4-20260504_205329/public_gate/public_gate_report.json", + "public_manifest": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/m4/arf/arf-m4-20260504_205329/public_gate/staged_input_manifest.json", + "model_manifest": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/m4/arf/arf-m4-20260504_205329/staged/arf/model_input_manifest.json", + "train_csv": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/m4/arf/arf-m4-20260504_205329/staged/public/train.csv", + "features_json": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/m4/arf/arf-m4-20260504_205329/staged/public/staged_features.json", + "target_column": "charges", + "task_type": "regression" + }, + "env_overrides": { + "ARF_CLIP_QUANTILE_HIGH": "0.999", + "ARF_CLIP_QUANTILE_LOW": "0.001", + "ARF_DELTA": "0", + "ARF_EARLY_STOP": "true", + "ARF_MAX_ITERS": "10", + "ARF_MIN_NODE_SIZE": "5", + "ARF_NUM_TREES": "30" + } +} \ No newline at end of file diff --git a/hyperparameter/m4/arf/arf-m4-20260504_205329/runtime_result.json b/hyperparameter/m4/arf/arf-m4-20260504_205329/runtime_result.json new file mode 100644 index 0000000000000000000000000000000000000000..5ec316a66b1aefc525b101fe5d0de1a7192684e0 --- /dev/null +++ b/hyperparameter/m4/arf/arf-m4-20260504_205329/runtime_result.json @@ -0,0 +1,27 @@ +{ + "dataset_id": "m4", + "model": "arf", + "run_id": "arf-m4-20260504_205329", + "public_gate_status": "pass", + "adapter_ready_status": "pass", + "train_status": "success", + "generate_status": "success", + "reason_code": null, + "reason_detail": null, + "artifacts": { + "synthetic_csv": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/m4/arf/arf-m4-20260504_205329/arf-m4-2217-20260504_205339.csv", + "model_path": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/m4/arf/arf-m4-20260504_205329/arf_model.pkl" + }, + "timings": { + "train": { + "started_at": "2026-05-04T20:53:29", + "ended_at": "2026-05-04T20:53:39", + "duration_sec": 10.353 + }, + "generate": { + "started_at": "2026-05-04T20:53:39", + "ended_at": "2026-05-04T20:53:42", + "duration_sec": 2.605 + } + } +} \ No newline at end of file diff --git a/hyperparameter/m4/arf/arf-m4-20260504_205329/staged/arf/adapter_report.json b/hyperparameter/m4/arf/arf-m4-20260504_205329/staged/arf/adapter_report.json new file mode 100644 index 0000000000000000000000000000000000000000..90af931ca8bf4563e63ce0a92dab948c581dafdf --- /dev/null +++ b/hyperparameter/m4/arf/arf-m4-20260504_205329/staged/arf/adapter_report.json @@ -0,0 +1,7 @@ +{ + "adapter_ready_status": "pass", + "adapter_fail_reason_code": null, + "adapter_fail_detail": null, + "adapter_transforms_applied": [], + "model_input_manifest": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/m4/arf/arf-m4-20260504_205329/staged/arf/model_input_manifest.json" +} \ No newline at end of file diff --git a/hyperparameter/m4/arf/arf-m4-20260504_205329/staged/arf/adapter_transforms_applied.json b/hyperparameter/m4/arf/arf-m4-20260504_205329/staged/arf/adapter_transforms_applied.json new file mode 100644 index 0000000000000000000000000000000000000000..0637a088a01e8ddab3bf3fa98dbe804cbde1a0dc --- /dev/null +++ b/hyperparameter/m4/arf/arf-m4-20260504_205329/staged/arf/adapter_transforms_applied.json @@ -0,0 +1 @@ +[] \ No newline at end of file diff --git a/hyperparameter/m4/arf/arf-m4-20260504_205329/staged/arf/model_input_manifest.json b/hyperparameter/m4/arf/arf-m4-20260504_205329/staged/arf/model_input_manifest.json new file mode 100644 index 0000000000000000000000000000000000000000..7b0c2c0168a1f1171a4d3ad54c1641ed57b60da0 --- /dev/null +++ b/hyperparameter/m4/arf/arf-m4-20260504_205329/staged/arf/model_input_manifest.json @@ -0,0 +1,154 @@ +{ + "dataset_id": "m4", + "model": "arf", + "target_column": "charges", + "task_type": "regression", + "column_schema": [ + { + "name": "age", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 47, + "unique_ratio": 0.0212, + "example_values": [ + "46", + "38", + "19", + "27", + "26" + ] + } + }, + { + "name": "sex", + "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.000902, + "example_values": [ + "female", + "male" + ] + } + }, + { + "name": "bmi", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 538, + "unique_ratio": 0.24267, + "example_values": [ + "23.655", + "19.3", + "30.59", + "32.67", + "29.45" + ] + } + }, + { + "name": "children", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 6, + "unique_ratio": 0.002706, + "example_values": [ + "1", + "0", + "3", + "2", + "5" + ] + } + }, + { + "name": "smoker", + "role": "feature", + "semantic_type": "boolean", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 2, + "unique_ratio": 0.000902, + "example_values": [ + "yes", + "no" + ] + } + }, + { + "name": "region", + "role": "feature", + "semantic_type": "categorical", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 4, + "unique_ratio": 0.001804, + "example_values": [ + "northwest", + "southwest", + "southeast", + "northeast" + ] + } + }, + { + "name": "charges", + "role": "target", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 1281, + "unique_ratio": 0.577808, + "example_values": [ + "21677.28345", + "15820.699", + "1639.5631", + "2497.0383", + "2897.3235" + ] + } + } + ], + "public_manifest": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/m4/arf/arf-m4-20260504_205329/public_gate/staged_input_manifest.json", + "train_csv": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/m4/arf/arf-m4-20260504_205329/staged/public/train.csv", + "val_csv": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/m4/arf/arf-m4-20260504_205329/staged/public/val.csv", + "test_csv": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/m4/arf/arf-m4-20260504_205329/staged/public/test.csv", + "features_json": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/m4/arf/arf-m4-20260504_205329/staged/public/staged_features.json", + "public_gate_report": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/m4/arf/arf-m4-20260504_205329/public_gate/public_gate_report.json" +} \ No newline at end of file diff --git a/hyperparameter/m4/arf/arf-m4-20260504_205329/staged/public/staged_features.json b/hyperparameter/m4/arf/arf-m4-20260504_205329/staged/public/staged_features.json new file mode 100644 index 0000000000000000000000000000000000000000..d6acd098c35111f423f3ffff2cfd1754bc5dfebc --- /dev/null +++ b/hyperparameter/m4/arf/arf-m4-20260504_205329/staged/public/staged_features.json @@ -0,0 +1,37 @@ +[ + { + "feature_name": "age", + "data_type": "continuous", + "is_target": false + }, + { + "feature_name": "sex", + "data_type": "categorical", + "is_target": false + }, + { + "feature_name": "bmi", + "data_type": "continuous", + "is_target": false + }, + { + "feature_name": "children", + "data_type": "continuous", + "is_target": false + }, + { + "feature_name": "smoker", + "data_type": "binary", + "is_target": false + }, + { + "feature_name": "region", + "data_type": "categorical", + "is_target": false + }, + { + "feature_name": "charges", + "data_type": "continuous", + "is_target": true + } +] \ No newline at end of file diff --git a/hyperparameter/m4/arf/arf-m4-20260504_205329/staged/public/test.csv b/hyperparameter/m4/arf/arf-m4-20260504_205329/staged/public/test.csv new file mode 100644 index 0000000000000000000000000000000000000000..c88a2e7cfcd715bb421cb56eb078033da45c4dc8 --- /dev/null +++ b/hyperparameter/m4/arf/arf-m4-20260504_205329/staged/public/test.csv @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:4c541b677fb2d45c5bc79338eeee9fd8c91484b195a0c2c546c2fbabf113b7ea +size 11298 diff --git a/hyperparameter/m4/arf/arf-m4-20260504_205329/staged/public/train.csv b/hyperparameter/m4/arf/arf-m4-20260504_205329/staged/public/train.csv new file mode 100644 index 0000000000000000000000000000000000000000..5a05019d786529e0617291766c4fbe016ca01bf5 --- /dev/null +++ b/hyperparameter/m4/arf/arf-m4-20260504_205329/staged/public/train.csv @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:614ebfac5f41d6f661aff675fa18c0f933a8d9bcc77ea71b7b2360c2f0155837 +size 90069 diff --git a/hyperparameter/m4/arf/arf-m4-20260504_205329/staged/public/val.csv b/hyperparameter/m4/arf/arf-m4-20260504_205329/staged/public/val.csv new file mode 100644 index 0000000000000000000000000000000000000000..d78fe5ad1537c437ba9ac2629f2aa60a6c17e708 --- /dev/null +++ b/hyperparameter/m4/arf/arf-m4-20260504_205329/staged/public/val.csv @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:e55f5edbe7942ff01630de91a9c70dfbc6445eba76c7b970350364546b67c2d7 +size 11218 diff --git a/hyperparameter/m4/arf/arf-m4-20260504_205329/train_20260504_205329.log b/hyperparameter/m4/arf/arf-m4-20260504_205329/train_20260504_205329.log new file mode 100644 index 0000000000000000000000000000000000000000..63603a17ecca9d1719620cac67ce41866ba39c11 --- /dev/null +++ b/hyperparameter/m4/arf/arf-m4-20260504_205329/train_20260504_205329.log @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:e3d7c33623752ce79385f065cb70bad3f52d7b8a1cd8594641d6a0f0c3e5b336 +size 576 diff --git a/hyperparameter/m4/arf/arf-m4-20260504_205355/_arf_generate.py b/hyperparameter/m4/arf/arf-m4-20260504_205355/_arf_generate.py new file mode 100644 index 0000000000000000000000000000000000000000..302a720e1ba1b3a3683750e2c9f916538103c27b --- /dev/null +++ b/hyperparameter/m4/arf/arf-m4-20260504_205355/_arf_generate.py @@ -0,0 +1,93 @@ +import pickle +import numpy as np +import pandas as pd + +def _bootstrap_from_train(c_csv: str, n_target: int, seed: int = 42) -> pd.DataFrame: + """当 arfpy.forge 完全不可用时,从训练 CSV 有放回抽样,保证行数与列对齐。""" + src = pd.read_csv(c_csv, encoding="utf-8-sig", low_memory=False) + src = src.replace([np.inf, -np.inf], np.nan).dropna(axis=1, how="all") + src = src.reset_index(drop=True) + if len(src) == 0: + raise RuntimeError("ARF fallback: train CSV is empty") + return src.sample(n=n_target, replace=True, random_state=seed).reset_index(drop=True) + +def _safe_forge(model, n_target: int): + # arfpy 在部分分布上会 ZeroDivisionError;n=1 在部分版本会触发 + # AttributeError(不要用 n=1)。失败返回 None,由外层走 bootstrap。 + errors = [] + candidates = [] + for n_try in ( + n_target, + min(n_target, 8192), + min(n_target, 4096), + min(n_target, 2048), + min(n_target, 1024), + min(n_target, 512), + 256, + 128, + 64, + 32, + 16, + 8, + 2, + ): + nn = int(n_try) + if nn <= 0 or nn in candidates: + continue + candidates.append(nn) + for n_try in candidates: + try: + out = model.forge(n=n_try).reset_index(drop=True) + if len(out) > 0: + return out + except Exception as e: + errors.append(f"n={n_try}: {type(e).__name__}: {e}") + print("[ARF] forge failed after retries; last errors:", " | ".join(errors[-4:])) + return None + +n_target = int(2217) +c_csv = "/work/output-Benchmark-trainonly-v1/m4/arf/arf-m4-20260504_205355/staged/public/train.csv" +with open("/work/output-Benchmark-trainonly-v1/m4/arf/arf-m4-20260504_205355/arf_model.pkl", "rb") as f: + model = pickle.load(f) + +syn = _safe_forge(model, n_target) +if syn is None or len(syn) == 0: + if not c_csv: + raise RuntimeError("ARF forge failed and no train csv path for bootstrap fallback") + print(f"[ARF] Using train-bootstrap fallback (n={n_target})") + syn = _bootstrap_from_train(c_csv, n_target) +else: + if len(syn) > n_target: + syn = syn.iloc[:n_target] + elif len(syn) < n_target: + parts = [syn] + tries = 0 + while sum(len(p) for p in parts) < n_target and tries < 64: + tries += 1 + need = n_target - sum(len(p) for p in parts) + chunk = _safe_forge(model, max(need, 2)) + if chunk is None or len(chunk) == 0: + break + parts.append(chunk) + syn = pd.concat(parts, ignore_index=True).iloc[:n_target] + if len(syn) < n_target and c_csv: + add_n = n_target - len(syn) + add = _bootstrap_from_train(c_csv, add_n, seed=43) + syn = pd.concat([syn, add], ignore_index=True).iloc[:n_target] + +_ds_id = 'm4' +if _ds_id == "c19": + # 仅 c19:object 列内裸换行会使 pivot 用 csv.reader 统计到的「记录数」大于 DataFrame 行数 → Sw。 + for _col in syn.columns: + if syn[_col].dtype == object: + syn[_col] = ( + syn[_col] + .astype(str) + .str.replace("\r\n", " ", regex=False) + .str.replace("\n", " ", regex=False) + .str.replace("\r", " ", regex=False) + ) + syn = syn.iloc[:n_target].reset_index(drop=True) + +syn.to_csv("/work/output-Benchmark-trainonly-v1/m4/arf/arf-m4-20260504_205355/arf-m4-2217-20260504_205409.csv", index=False) +print(f"[ARF] Generated {len(syn)} rows (requested {n_target}) -> /work/output-Benchmark-trainonly-v1/m4/arf/arf-m4-20260504_205355/arf-m4-2217-20260504_205409.csv") diff --git a/hyperparameter/m4/arf/arf-m4-20260504_205355/_arf_train.py b/hyperparameter/m4/arf/arf-m4-20260504_205355/_arf_train.py new file mode 100644 index 0000000000000000000000000000000000000000..359ff84ff37fe643f569df6d7860c8cc220d7efa --- /dev/null +++ b/hyperparameter/m4/arf/arf-m4-20260504_205355/_arf_train.py @@ -0,0 +1,47 @@ +import os +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 + q_low = float(os.environ.get("ARF_CLIP_QUANTILE_LOW", "0.001")) + q_high = float(os.environ.get("ARF_CLIP_QUANTILE_HIGH", "0.999")) + lo, hi = df[col].quantile(q_low), df[col].quantile(q_high) + if pd.notna(lo) and pd.notna(hi) and lo < hi: + df[col] = df[col].clip(lo, hi) + return df + +df = pd.read_csv("/work/output-Benchmark-trainonly-v1/m4/arf/arf-m4-20260504_205355/staged/public/train.csv") +df = _sanitize_for_arf(df) +num_trees = int(os.environ.get("ARF_NUM_TREES", "30")) +delta = float(os.environ.get("ARF_DELTA", "0")) +max_iters = int(os.environ.get("ARF_MAX_ITERS", "10")) +early_stop = (os.environ.get("ARF_EARLY_STOP", "true").strip().lower() in ("1", "true", "yes")) +verbose = (os.environ.get("ARF_VERBOSE", "true").strip().lower() in ("1", "true", "yes")) +min_node_size = int(os.environ.get("ARF_MIN_NODE_SIZE", "5")) +print(f"[ARF] Training on {len(df)} rows, {len(df.columns)} cols") +print(f"[ARF] Config num_trees={num_trees} delta={delta} max_iters={max_iters} early_stop={early_stop} min_node_size={min_node_size}") + +model = arf.arf(x=df, num_trees=num_trees, delta=delta, max_iters=max_iters, early_stop=early_stop, verbose=verbose, min_node_size=min_node_size) +if hasattr(model, "fit"): + model.fit() +elif hasattr(model, "forde"): + model.forde() +else: + raise RuntimeError("arfpy API: no fit() / forde()") + +with open("/work/output-Benchmark-trainonly-v1/m4/arf/arf-m4-20260504_205355/arf_model.pkl", "wb") as f: + pickle.dump(model, f) +print(f"[ARF] Model saved -> /work/output-Benchmark-trainonly-v1/m4/arf/arf-m4-20260504_205355/arf_model.pkl") diff --git a/hyperparameter/m4/arf/arf-m4-20260504_205355/arf-m4-2217-20260504_205409.csv b/hyperparameter/m4/arf/arf-m4-20260504_205355/arf-m4-2217-20260504_205409.csv new file mode 100644 index 0000000000000000000000000000000000000000..bba514e30ba81046bfba52e2d5f90bd9a2563f95 --- /dev/null +++ b/hyperparameter/m4/arf/arf-m4-20260504_205355/arf-m4-2217-20260504_205409.csv @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:f8aa6c55bb900a11e799751616373f0d749384740bd0efcfe57e7eb0d33ac9c5 +size 188337 diff --git a/hyperparameter/m4/arf/arf-m4-20260504_205355/arf_model.pkl b/hyperparameter/m4/arf/arf-m4-20260504_205355/arf_model.pkl new file mode 100644 index 0000000000000000000000000000000000000000..68bfcb728589fcf085c1a9ab6017fa676189d7a7 --- /dev/null +++ b/hyperparameter/m4/arf/arf-m4-20260504_205355/arf_model.pkl @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:e75fed15baa2c44022000e54cc6b851d5f30eebd3f7ae3701aba438cceee78ba +size 15175634 diff --git a/hyperparameter/m4/arf/arf-m4-20260504_205355/gen_20260504_205409.log b/hyperparameter/m4/arf/arf-m4-20260504_205355/gen_20260504_205409.log new file mode 100644 index 0000000000000000000000000000000000000000..5f4ef03d4a2640ad876d3e5158dcccf232cadc40 --- /dev/null +++ b/hyperparameter/m4/arf/arf-m4-20260504_205355/gen_20260504_205409.log @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:5e3295b9af829068a3e40179724bbe3741c27f0e9f3e31076d683e82a140e203 +size 3563 diff --git a/hyperparameter/m4/arf/arf-m4-20260504_205355/input_snapshot.json b/hyperparameter/m4/arf/arf-m4-20260504_205355/input_snapshot.json new file mode 100644 index 0000000000000000000000000000000000000000..a3fec1973e249527909ae104dcdbe1f735528632 --- /dev/null +++ b/hyperparameter/m4/arf/arf-m4-20260504_205355/input_snapshot.json @@ -0,0 +1,36 @@ +{ + "dataset_id": "m4", + "model": "arf", + "inputs": { + "train_csv": { + "path": "/data/jialinzhang/SynthesizePipeline-server/DatasetNew/m4/m4-train.csv", + "exists": true, + "size": 92191, + "sha256": "396b9d409ca21bf4a4cd329bdf5b7796aa0ae6356fa8d89b8eb669b5880b81f1" + }, + "val_csv": { + "path": "/data/jialinzhang/SynthesizePipeline-server/DatasetNew/m4/m4-val.csv", + "exists": true, + "size": 11482, + "sha256": "ee3c247d02f56e1687d03c381e13125d6a3a2a411ac7f202ba8520a4be9f1784" + }, + "test_csv": { + "path": "/data/jialinzhang/SynthesizePipeline-server/DatasetNew/m4/m4-test.csv", + "exists": true, + "size": 11559, + "sha256": "cadb9941124001b8fa7cb1ebae43b70a9ca56294f4df4d3c2f22c164c41757d4" + }, + "profile_json": { + "path": "/data/jialinzhang/SynthesizePipeline-server/DatasetNew/artifacts/data_core/tabular/m4/m4-dataset_profile.json", + "exists": true, + "size": 3336, + "sha256": "83e2764810e4a0e8cdece3a28dbd9134b7c9df6f2e56953e46d024ad2c4e035f" + }, + "contract_json": { + "path": "/data/jialinzhang/SynthesizePipeline-server/DatasetNew/artifacts/data_core/tabular/m4/m4-dataset_contract_v1.json", + "exists": true, + "size": 3810, + "sha256": "c23641b258629a845b164099bd0132886f8f6d0100e990494e0f92540f8987d9" + } + } +} \ No newline at end of file diff --git a/hyperparameter/m4/arf/arf-m4-20260504_205355/public_gate/normalized_schema_snapshot.json b/hyperparameter/m4/arf/arf-m4-20260504_205355/public_gate/normalized_schema_snapshot.json new file mode 100644 index 0000000000000000000000000000000000000000..31ed9818686b11907df75e872e4ffbe010330880 --- /dev/null +++ b/hyperparameter/m4/arf/arf-m4-20260504_205355/public_gate/normalized_schema_snapshot.json @@ -0,0 +1,147 @@ +{ + "dataset_id": "m4", + "target_column": "charges", + "task_type": "regression", + "columns": [ + { + "name": "age", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 47, + "unique_ratio": 0.0212, + "example_values": [ + "46", + "38", + "19", + "27", + "26" + ] + } + }, + { + "name": "sex", + "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.000902, + "example_values": [ + "female", + "male" + ] + } + }, + { + "name": "bmi", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 538, + "unique_ratio": 0.24267, + "example_values": [ + "23.655", + "19.3", + "30.59", + "32.67", + "29.45" + ] + } + }, + { + "name": "children", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 6, + "unique_ratio": 0.002706, + "example_values": [ + "1", + "0", + "3", + "2", + "5" + ] + } + }, + { + "name": "smoker", + "role": "feature", + "semantic_type": "boolean", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 2, + "unique_ratio": 0.000902, + "example_values": [ + "yes", + "no" + ] + } + }, + { + "name": "region", + "role": "feature", + "semantic_type": "categorical", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 4, + "unique_ratio": 0.001804, + "example_values": [ + "northwest", + "southwest", + "southeast", + "northeast" + ] + } + }, + { + "name": "charges", + "role": "target", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 1281, + "unique_ratio": 0.577808, + "example_values": [ + "21677.28345", + "15820.699", + "1639.5631", + "2497.0383", + "2897.3235" + ] + } + } + ] +} \ No newline at end of file diff --git a/hyperparameter/m4/arf/arf-m4-20260504_205355/public_gate/public_gate_report.json b/hyperparameter/m4/arf/arf-m4-20260504_205355/public_gate/public_gate_report.json new file mode 100644 index 0000000000000000000000000000000000000000..e7a25408e2574124629ea9437356551e4d6f4790 --- /dev/null +++ b/hyperparameter/m4/arf/arf-m4-20260504_205355/public_gate/public_gate_report.json @@ -0,0 +1,37 @@ +{ + "dataset_id": "m4", + "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": "charges", + "task_type": "regression", + "input_splits": { + "train": "/data/jialinzhang/SynthesizePipeline-server/DatasetNew/m4/m4-train.csv", + "val": "/data/jialinzhang/SynthesizePipeline-server/DatasetNew/m4/m4-val.csv", + "test": "/data/jialinzhang/SynthesizePipeline-server/DatasetNew/m4/m4-test.csv" + } +} \ No newline at end of file diff --git a/hyperparameter/m4/arf/arf-m4-20260504_205355/public_gate/staged_input_manifest.json b/hyperparameter/m4/arf/arf-m4-20260504_205355/public_gate/staged_input_manifest.json new file mode 100644 index 0000000000000000000000000000000000000000..6d3f93c104e271cc1f6cf7361919703235b8c625 --- /dev/null +++ b/hyperparameter/m4/arf/arf-m4-20260504_205355/public_gate/staged_input_manifest.json @@ -0,0 +1,152 @@ +{ + "dataset_id": "m4", + "target_column": "charges", + "task_type": "regression", + "train_csv": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/m4/arf/arf-m4-20260504_205355/staged/public/train.csv", + "val_csv": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/m4/arf/arf-m4-20260504_205355/staged/public/val.csv", + "test_csv": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/m4/arf/arf-m4-20260504_205355/staged/public/test.csv", + "features_json": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/m4/arf/arf-m4-20260504_205355/staged/public/staged_features.json", + "public_gate_report": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/m4/arf/arf-m4-20260504_205355/public_gate/public_gate_report.json", + "column_schema": [ + { + "name": "age", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 47, + "unique_ratio": 0.0212, + "example_values": [ + "46", + "38", + "19", + "27", + "26" + ] + } + }, + { + "name": "sex", + "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.000902, + "example_values": [ + "female", + "male" + ] + } + }, + { + "name": "bmi", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 538, + "unique_ratio": 0.24267, + "example_values": [ + "23.655", + "19.3", + "30.59", + "32.67", + "29.45" + ] + } + }, + { + "name": "children", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 6, + "unique_ratio": 0.002706, + "example_values": [ + "1", + "0", + "3", + "2", + "5" + ] + } + }, + { + "name": "smoker", + "role": "feature", + "semantic_type": "boolean", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 2, + "unique_ratio": 0.000902, + "example_values": [ + "yes", + "no" + ] + } + }, + { + "name": "region", + "role": "feature", + "semantic_type": "categorical", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 4, + "unique_ratio": 0.001804, + "example_values": [ + "northwest", + "southwest", + "southeast", + "northeast" + ] + } + }, + { + "name": "charges", + "role": "target", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 1281, + "unique_ratio": 0.577808, + "example_values": [ + "21677.28345", + "15820.699", + "1639.5631", + "2497.0383", + "2897.3235" + ] + } + } + ] +} \ No newline at end of file diff --git a/hyperparameter/m4/arf/arf-m4-20260504_205355/run_config.json b/hyperparameter/m4/arf/arf-m4-20260504_205355/run_config.json new file mode 100644 index 0000000000000000000000000000000000000000..099e77ec2b0c76a1a8214bf2c8161373c0f58bb4 --- /dev/null +++ b/hyperparameter/m4/arf/arf-m4-20260504_205355/run_config.json @@ -0,0 +1,46 @@ +{ + "schema_version": 1, + "recorded_at": "2026-05-04T20:53:55", + "dataset_id": "m4", + "model": "arf", + "work_dir": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/m4/arf/arf-m4-20260504_205355", + "dataset_source_requested": "new", + "dataset_source_resolved": "new", + "cli_args": { + "model": "arf", + "dataset": "m4", + "dataset_source": "new", + "train": true, + "generate": true, + "num_rows": 0, + "epochs": null, + "output_dir": null, + "model_dir": null, + "work_dir": null, + "resume": false, + "no_stats": false + }, + "resolved": { + "num_rows": 2217, + "model_path": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/m4/arf/arf-m4-20260504_205355/arf_model.pkl", + "output_csv": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/m4/arf/arf-m4-20260504_205355/arf-m4-2217-20260504_205409.csv" + }, + "input_artifacts": { + "public_gate_report": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/m4/arf/arf-m4-20260504_205355/public_gate/public_gate_report.json", + "public_manifest": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/m4/arf/arf-m4-20260504_205355/public_gate/staged_input_manifest.json", + "model_manifest": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/m4/arf/arf-m4-20260504_205355/staged/arf/model_input_manifest.json", + "train_csv": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/m4/arf/arf-m4-20260504_205355/staged/public/train.csv", + "features_json": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/m4/arf/arf-m4-20260504_205355/staged/public/staged_features.json", + "target_column": "charges", + "task_type": "regression" + }, + "env_overrides": { + "ARF_CLIP_QUANTILE_HIGH": "0.999", + "ARF_CLIP_QUANTILE_LOW": "0.001", + "ARF_DELTA": "0", + "ARF_EARLY_STOP": "true", + "ARF_MAX_ITERS": "10", + "ARF_MIN_NODE_SIZE": "3", + "ARF_NUM_TREES": "50" + } +} \ No newline at end of file diff --git a/hyperparameter/m4/arf/arf-m4-20260504_205355/runtime_result.json b/hyperparameter/m4/arf/arf-m4-20260504_205355/runtime_result.json new file mode 100644 index 0000000000000000000000000000000000000000..06f192895e5f1dfe4981af3dfd34350bb8a5cbc1 --- /dev/null +++ b/hyperparameter/m4/arf/arf-m4-20260504_205355/runtime_result.json @@ -0,0 +1,27 @@ +{ + "dataset_id": "m4", + "model": "arf", + "run_id": "arf-m4-20260504_205355", + "public_gate_status": "pass", + "adapter_ready_status": "pass", + "train_status": "success", + "generate_status": "success", + "reason_code": null, + "reason_detail": null, + "artifacts": { + "synthetic_csv": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/m4/arf/arf-m4-20260504_205355/arf-m4-2217-20260504_205409.csv", + "model_path": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/m4/arf/arf-m4-20260504_205355/arf_model.pkl" + }, + "timings": { + "train": { + "started_at": "2026-05-04T20:53:55", + "ended_at": "2026-05-04T20:54:09", + "duration_sec": 13.2 + }, + "generate": { + "started_at": "2026-05-04T20:54:09", + "ended_at": "2026-05-04T20:54:12", + "duration_sec": 3.003 + } + } +} \ No newline at end of file diff --git a/hyperparameter/m4/arf/arf-m4-20260504_205355/staged/arf/adapter_report.json b/hyperparameter/m4/arf/arf-m4-20260504_205355/staged/arf/adapter_report.json new file mode 100644 index 0000000000000000000000000000000000000000..6af95cb1d3a5ced14622c21c89ffb5e1ffcc5853 --- /dev/null +++ b/hyperparameter/m4/arf/arf-m4-20260504_205355/staged/arf/adapter_report.json @@ -0,0 +1,7 @@ +{ + "adapter_ready_status": "pass", + "adapter_fail_reason_code": null, + "adapter_fail_detail": null, + "adapter_transforms_applied": [], + "model_input_manifest": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/m4/arf/arf-m4-20260504_205355/staged/arf/model_input_manifest.json" +} \ No newline at end of file diff --git a/hyperparameter/m4/arf/arf-m4-20260504_205355/staged/arf/adapter_transforms_applied.json b/hyperparameter/m4/arf/arf-m4-20260504_205355/staged/arf/adapter_transforms_applied.json new file mode 100644 index 0000000000000000000000000000000000000000..0637a088a01e8ddab3bf3fa98dbe804cbde1a0dc --- /dev/null +++ b/hyperparameter/m4/arf/arf-m4-20260504_205355/staged/arf/adapter_transforms_applied.json @@ -0,0 +1 @@ +[] \ No newline at end of file diff --git a/hyperparameter/m4/arf/arf-m4-20260504_205355/staged/arf/model_input_manifest.json b/hyperparameter/m4/arf/arf-m4-20260504_205355/staged/arf/model_input_manifest.json new file mode 100644 index 0000000000000000000000000000000000000000..eb345f1736001d9a9c1cc8b3cb799b290ad7ef35 --- /dev/null +++ b/hyperparameter/m4/arf/arf-m4-20260504_205355/staged/arf/model_input_manifest.json @@ -0,0 +1,154 @@ +{ + "dataset_id": "m4", + "model": "arf", + "target_column": "charges", + "task_type": "regression", + "column_schema": [ + { + "name": "age", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 47, + "unique_ratio": 0.0212, + "example_values": [ + "46", + "38", + "19", + "27", + "26" + ] + } + }, + { + "name": "sex", + "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.000902, + "example_values": [ + "female", + "male" + ] + } + }, + { + "name": "bmi", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 538, + "unique_ratio": 0.24267, + "example_values": [ + "23.655", + "19.3", + "30.59", + "32.67", + "29.45" + ] + } + }, + { + "name": "children", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 6, + "unique_ratio": 0.002706, + "example_values": [ + "1", + "0", + "3", + "2", + "5" + ] + } + }, + { + "name": "smoker", + "role": "feature", + "semantic_type": "boolean", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 2, + "unique_ratio": 0.000902, + "example_values": [ + "yes", + "no" + ] + } + }, + { + "name": "region", + "role": "feature", + "semantic_type": "categorical", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 4, + "unique_ratio": 0.001804, + "example_values": [ + "northwest", + "southwest", + "southeast", + "northeast" + ] + } + }, + { + "name": "charges", + "role": "target", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 1281, + "unique_ratio": 0.577808, + "example_values": [ + "21677.28345", + "15820.699", + "1639.5631", + "2497.0383", + "2897.3235" + ] + } + } + ], + "public_manifest": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/m4/arf/arf-m4-20260504_205355/public_gate/staged_input_manifest.json", + "train_csv": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/m4/arf/arf-m4-20260504_205355/staged/public/train.csv", + "val_csv": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/m4/arf/arf-m4-20260504_205355/staged/public/val.csv", + "test_csv": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/m4/arf/arf-m4-20260504_205355/staged/public/test.csv", + "features_json": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/m4/arf/arf-m4-20260504_205355/staged/public/staged_features.json", + "public_gate_report": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/m4/arf/arf-m4-20260504_205355/public_gate/public_gate_report.json" +} \ No newline at end of file diff --git a/hyperparameter/m4/arf/arf-m4-20260504_205355/staged/public/staged_features.json b/hyperparameter/m4/arf/arf-m4-20260504_205355/staged/public/staged_features.json new file mode 100644 index 0000000000000000000000000000000000000000..d6acd098c35111f423f3ffff2cfd1754bc5dfebc --- /dev/null +++ b/hyperparameter/m4/arf/arf-m4-20260504_205355/staged/public/staged_features.json @@ -0,0 +1,37 @@ +[ + { + "feature_name": "age", + "data_type": "continuous", + "is_target": false + }, + { + "feature_name": "sex", + "data_type": "categorical", + "is_target": false + }, + { + "feature_name": "bmi", + "data_type": "continuous", + "is_target": false + }, + { + "feature_name": "children", + "data_type": "continuous", + "is_target": false + }, + { + "feature_name": "smoker", + "data_type": "binary", + "is_target": false + }, + { + "feature_name": "region", + "data_type": "categorical", + "is_target": false + }, + { + "feature_name": "charges", + "data_type": "continuous", + "is_target": true + } +] \ No newline at end of file diff --git a/hyperparameter/m4/arf/arf-m4-20260504_205355/staged/public/test.csv b/hyperparameter/m4/arf/arf-m4-20260504_205355/staged/public/test.csv new file mode 100644 index 0000000000000000000000000000000000000000..c88a2e7cfcd715bb421cb56eb078033da45c4dc8 --- /dev/null +++ b/hyperparameter/m4/arf/arf-m4-20260504_205355/staged/public/test.csv @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:4c541b677fb2d45c5bc79338eeee9fd8c91484b195a0c2c546c2fbabf113b7ea +size 11298 diff --git a/hyperparameter/m4/arf/arf-m4-20260504_205355/staged/public/train.csv b/hyperparameter/m4/arf/arf-m4-20260504_205355/staged/public/train.csv new file mode 100644 index 0000000000000000000000000000000000000000..5a05019d786529e0617291766c4fbe016ca01bf5 --- /dev/null +++ b/hyperparameter/m4/arf/arf-m4-20260504_205355/staged/public/train.csv @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:614ebfac5f41d6f661aff675fa18c0f933a8d9bcc77ea71b7b2360c2f0155837 +size 90069 diff --git a/hyperparameter/m4/arf/arf-m4-20260504_205355/staged/public/val.csv b/hyperparameter/m4/arf/arf-m4-20260504_205355/staged/public/val.csv new file mode 100644 index 0000000000000000000000000000000000000000..d78fe5ad1537c437ba9ac2629f2aa60a6c17e708 --- /dev/null +++ b/hyperparameter/m4/arf/arf-m4-20260504_205355/staged/public/val.csv @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:e55f5edbe7942ff01630de91a9c70dfbc6445eba76c7b970350364546b67c2d7 +size 11218 diff --git a/hyperparameter/m4/arf/arf-m4-20260504_205355/train_20260504_205355.log b/hyperparameter/m4/arf/arf-m4-20260504_205355/train_20260504_205355.log new file mode 100644 index 0000000000000000000000000000000000000000..e614e604a76ae6a554f5efdda63acee673ee6a55 --- /dev/null +++ b/hyperparameter/m4/arf/arf-m4-20260504_205355/train_20260504_205355.log @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:a1b6818431b1ace9254e69e5dec5eee854f9541507f504bdd47e64a5e8b39a9f +size 576 diff --git a/hyperparameter/m4/arf/arf-m4-20260504_205426/_arf_generate.py b/hyperparameter/m4/arf/arf-m4-20260504_205426/_arf_generate.py new file mode 100644 index 0000000000000000000000000000000000000000..21eed4cb2434b7b1c66193680df4bc46689ef14a --- /dev/null +++ b/hyperparameter/m4/arf/arf-m4-20260504_205426/_arf_generate.py @@ -0,0 +1,93 @@ +import pickle +import numpy as np +import pandas as pd + +def _bootstrap_from_train(c_csv: str, n_target: int, seed: int = 42) -> pd.DataFrame: + """当 arfpy.forge 完全不可用时,从训练 CSV 有放回抽样,保证行数与列对齐。""" + src = pd.read_csv(c_csv, encoding="utf-8-sig", low_memory=False) + src = src.replace([np.inf, -np.inf], np.nan).dropna(axis=1, how="all") + src = src.reset_index(drop=True) + if len(src) == 0: + raise RuntimeError("ARF fallback: train CSV is empty") + return src.sample(n=n_target, replace=True, random_state=seed).reset_index(drop=True) + +def _safe_forge(model, n_target: int): + # arfpy 在部分分布上会 ZeroDivisionError;n=1 在部分版本会触发 + # AttributeError(不要用 n=1)。失败返回 None,由外层走 bootstrap。 + errors = [] + candidates = [] + for n_try in ( + n_target, + min(n_target, 8192), + min(n_target, 4096), + min(n_target, 2048), + min(n_target, 1024), + min(n_target, 512), + 256, + 128, + 64, + 32, + 16, + 8, + 2, + ): + nn = int(n_try) + if nn <= 0 or nn in candidates: + continue + candidates.append(nn) + for n_try in candidates: + try: + out = model.forge(n=n_try).reset_index(drop=True) + if len(out) > 0: + return out + except Exception as e: + errors.append(f"n={n_try}: {type(e).__name__}: {e}") + print("[ARF] forge failed after retries; last errors:", " | ".join(errors[-4:])) + return None + +n_target = int(2217) +c_csv = "/work/output-Benchmark-trainonly-v1/m4/arf/arf-m4-20260504_205426/staged/public/train.csv" +with open("/work/output-Benchmark-trainonly-v1/m4/arf/arf-m4-20260504_205426/arf_model.pkl", "rb") as f: + model = pickle.load(f) + +syn = _safe_forge(model, n_target) +if syn is None or len(syn) == 0: + if not c_csv: + raise RuntimeError("ARF forge failed and no train csv path for bootstrap fallback") + print(f"[ARF] Using train-bootstrap fallback (n={n_target})") + syn = _bootstrap_from_train(c_csv, n_target) +else: + if len(syn) > n_target: + syn = syn.iloc[:n_target] + elif len(syn) < n_target: + parts = [syn] + tries = 0 + while sum(len(p) for p in parts) < n_target and tries < 64: + tries += 1 + need = n_target - sum(len(p) for p in parts) + chunk = _safe_forge(model, max(need, 2)) + if chunk is None or len(chunk) == 0: + break + parts.append(chunk) + syn = pd.concat(parts, ignore_index=True).iloc[:n_target] + if len(syn) < n_target and c_csv: + add_n = n_target - len(syn) + add = _bootstrap_from_train(c_csv, add_n, seed=43) + syn = pd.concat([syn, add], ignore_index=True).iloc[:n_target] + +_ds_id = 'm4' +if _ds_id == "c19": + # 仅 c19:object 列内裸换行会使 pivot 用 csv.reader 统计到的「记录数」大于 DataFrame 行数 → Sw。 + for _col in syn.columns: + if syn[_col].dtype == object: + syn[_col] = ( + syn[_col] + .astype(str) + .str.replace("\r\n", " ", regex=False) + .str.replace("\n", " ", regex=False) + .str.replace("\r", " ", regex=False) + ) + syn = syn.iloc[:n_target].reset_index(drop=True) + +syn.to_csv("/work/output-Benchmark-trainonly-v1/m4/arf/arf-m4-20260504_205426/arf-m4-2217-20260504_205447.csv", index=False) +print(f"[ARF] Generated {len(syn)} rows (requested {n_target}) -> /work/output-Benchmark-trainonly-v1/m4/arf/arf-m4-20260504_205426/arf-m4-2217-20260504_205447.csv") diff --git a/hyperparameter/m4/arf/arf-m4-20260504_205426/_arf_train.py b/hyperparameter/m4/arf/arf-m4-20260504_205426/_arf_train.py new file mode 100644 index 0000000000000000000000000000000000000000..0e5b3236a535f8ac2f54359e817a73eb9d30e99d --- /dev/null +++ b/hyperparameter/m4/arf/arf-m4-20260504_205426/_arf_train.py @@ -0,0 +1,47 @@ +import os +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 + q_low = float(os.environ.get("ARF_CLIP_QUANTILE_LOW", "0.001")) + q_high = float(os.environ.get("ARF_CLIP_QUANTILE_HIGH", "0.999")) + lo, hi = df[col].quantile(q_low), df[col].quantile(q_high) + if pd.notna(lo) and pd.notna(hi) and lo < hi: + df[col] = df[col].clip(lo, hi) + return df + +df = pd.read_csv("/work/output-Benchmark-trainonly-v1/m4/arf/arf-m4-20260504_205426/staged/public/train.csv") +df = _sanitize_for_arf(df) +num_trees = int(os.environ.get("ARF_NUM_TREES", "30")) +delta = float(os.environ.get("ARF_DELTA", "0")) +max_iters = int(os.environ.get("ARF_MAX_ITERS", "10")) +early_stop = (os.environ.get("ARF_EARLY_STOP", "true").strip().lower() in ("1", "true", "yes")) +verbose = (os.environ.get("ARF_VERBOSE", "true").strip().lower() in ("1", "true", "yes")) +min_node_size = int(os.environ.get("ARF_MIN_NODE_SIZE", "5")) +print(f"[ARF] Training on {len(df)} rows, {len(df.columns)} cols") +print(f"[ARF] Config num_trees={num_trees} delta={delta} max_iters={max_iters} early_stop={early_stop} min_node_size={min_node_size}") + +model = arf.arf(x=df, num_trees=num_trees, delta=delta, max_iters=max_iters, early_stop=early_stop, verbose=verbose, min_node_size=min_node_size) +if hasattr(model, "fit"): + model.fit() +elif hasattr(model, "forde"): + model.forde() +else: + raise RuntimeError("arfpy API: no fit() / forde()") + +with open("/work/output-Benchmark-trainonly-v1/m4/arf/arf-m4-20260504_205426/arf_model.pkl", "wb") as f: + pickle.dump(model, f) +print(f"[ARF] Model saved -> /work/output-Benchmark-trainonly-v1/m4/arf/arf-m4-20260504_205426/arf_model.pkl") diff --git a/hyperparameter/m4/arf/arf-m4-20260504_205426/arf-m4-2217-20260504_205447.csv b/hyperparameter/m4/arf/arf-m4-20260504_205426/arf-m4-2217-20260504_205447.csv new file mode 100644 index 0000000000000000000000000000000000000000..af4f4cf7df4f233b9bf303533c3d238c90e9f609 --- /dev/null +++ b/hyperparameter/m4/arf/arf-m4-20260504_205426/arf-m4-2217-20260504_205447.csv @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:a0182b20bcee272c6f3856af4ff12bce9efd4a04170be459f9c666907fdd0c0f +size 187690 diff --git a/hyperparameter/m4/arf/arf-m4-20260504_205426/arf_model.pkl b/hyperparameter/m4/arf/arf-m4-20260504_205426/arf_model.pkl new file mode 100644 index 0000000000000000000000000000000000000000..33cdf01598000ab0c9b01305fa2564b31199c75c --- /dev/null +++ b/hyperparameter/m4/arf/arf-m4-20260504_205426/arf_model.pkl @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:8e768c97019cd1ac75fd9e0f385d9c3000d36bafab0bc35b5317a733a853a540 +size 30797854 diff --git a/hyperparameter/m4/arf/arf-m4-20260504_205426/gen_20260504_205447.log b/hyperparameter/m4/arf/arf-m4-20260504_205426/gen_20260504_205447.log new file mode 100644 index 0000000000000000000000000000000000000000..eb2c43dd880f874672c87157cba19cb001d2f336 --- /dev/null +++ b/hyperparameter/m4/arf/arf-m4-20260504_205426/gen_20260504_205447.log @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:fb567a8804cce6fda0eadcda15db2c165cc300c6f1e35b5f85f6718e3cef4f62 +size 1667 diff --git a/hyperparameter/m4/arf/arf-m4-20260504_205426/input_snapshot.json b/hyperparameter/m4/arf/arf-m4-20260504_205426/input_snapshot.json new file mode 100644 index 0000000000000000000000000000000000000000..a3fec1973e249527909ae104dcdbe1f735528632 --- /dev/null +++ b/hyperparameter/m4/arf/arf-m4-20260504_205426/input_snapshot.json @@ -0,0 +1,36 @@ +{ + "dataset_id": "m4", + "model": "arf", + "inputs": { + "train_csv": { + "path": "/data/jialinzhang/SynthesizePipeline-server/DatasetNew/m4/m4-train.csv", + "exists": true, + "size": 92191, + "sha256": "396b9d409ca21bf4a4cd329bdf5b7796aa0ae6356fa8d89b8eb669b5880b81f1" + }, + "val_csv": { + "path": "/data/jialinzhang/SynthesizePipeline-server/DatasetNew/m4/m4-val.csv", + "exists": true, + "size": 11482, + "sha256": "ee3c247d02f56e1687d03c381e13125d6a3a2a411ac7f202ba8520a4be9f1784" + }, + "test_csv": { + "path": "/data/jialinzhang/SynthesizePipeline-server/DatasetNew/m4/m4-test.csv", + "exists": true, + "size": 11559, + "sha256": "cadb9941124001b8fa7cb1ebae43b70a9ca56294f4df4d3c2f22c164c41757d4" + }, + "profile_json": { + "path": "/data/jialinzhang/SynthesizePipeline-server/DatasetNew/artifacts/data_core/tabular/m4/m4-dataset_profile.json", + "exists": true, + "size": 3336, + "sha256": "83e2764810e4a0e8cdece3a28dbd9134b7c9df6f2e56953e46d024ad2c4e035f" + }, + "contract_json": { + "path": "/data/jialinzhang/SynthesizePipeline-server/DatasetNew/artifacts/data_core/tabular/m4/m4-dataset_contract_v1.json", + "exists": true, + "size": 3810, + "sha256": "c23641b258629a845b164099bd0132886f8f6d0100e990494e0f92540f8987d9" + } + } +} \ No newline at end of file diff --git a/hyperparameter/m4/arf/arf-m4-20260504_205426/public_gate/normalized_schema_snapshot.json b/hyperparameter/m4/arf/arf-m4-20260504_205426/public_gate/normalized_schema_snapshot.json new file mode 100644 index 0000000000000000000000000000000000000000..31ed9818686b11907df75e872e4ffbe010330880 --- /dev/null +++ b/hyperparameter/m4/arf/arf-m4-20260504_205426/public_gate/normalized_schema_snapshot.json @@ -0,0 +1,147 @@ +{ + "dataset_id": "m4", + "target_column": "charges", + "task_type": "regression", + "columns": [ + { + "name": "age", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 47, + "unique_ratio": 0.0212, + "example_values": [ + "46", + "38", + "19", + "27", + "26" + ] + } + }, + { + "name": "sex", + "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.000902, + "example_values": [ + "female", + "male" + ] + } + }, + { + "name": "bmi", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 538, + "unique_ratio": 0.24267, + "example_values": [ + "23.655", + "19.3", + "30.59", + "32.67", + "29.45" + ] + } + }, + { + "name": "children", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 6, + "unique_ratio": 0.002706, + "example_values": [ + "1", + "0", + "3", + "2", + "5" + ] + } + }, + { + "name": "smoker", + "role": "feature", + "semantic_type": "boolean", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 2, + "unique_ratio": 0.000902, + "example_values": [ + "yes", + "no" + ] + } + }, + { + "name": "region", + "role": "feature", + "semantic_type": "categorical", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 4, + "unique_ratio": 0.001804, + "example_values": [ + "northwest", + "southwest", + "southeast", + "northeast" + ] + } + }, + { + "name": "charges", + "role": "target", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 1281, + "unique_ratio": 0.577808, + "example_values": [ + "21677.28345", + "15820.699", + "1639.5631", + "2497.0383", + "2897.3235" + ] + } + } + ] +} \ No newline at end of file diff --git a/hyperparameter/m4/arf/arf-m4-20260504_205426/public_gate/public_gate_report.json b/hyperparameter/m4/arf/arf-m4-20260504_205426/public_gate/public_gate_report.json new file mode 100644 index 0000000000000000000000000000000000000000..e7a25408e2574124629ea9437356551e4d6f4790 --- /dev/null +++ b/hyperparameter/m4/arf/arf-m4-20260504_205426/public_gate/public_gate_report.json @@ -0,0 +1,37 @@ +{ + "dataset_id": "m4", + "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": "charges", + "task_type": "regression", + "input_splits": { + "train": "/data/jialinzhang/SynthesizePipeline-server/DatasetNew/m4/m4-train.csv", + "val": "/data/jialinzhang/SynthesizePipeline-server/DatasetNew/m4/m4-val.csv", + "test": "/data/jialinzhang/SynthesizePipeline-server/DatasetNew/m4/m4-test.csv" + } +} \ No newline at end of file diff --git a/hyperparameter/m4/arf/arf-m4-20260504_205426/public_gate/staged_input_manifest.json b/hyperparameter/m4/arf/arf-m4-20260504_205426/public_gate/staged_input_manifest.json new file mode 100644 index 0000000000000000000000000000000000000000..3caf5ea926f17140ac469c7462e8cf6e2ee35d39 --- /dev/null +++ b/hyperparameter/m4/arf/arf-m4-20260504_205426/public_gate/staged_input_manifest.json @@ -0,0 +1,152 @@ +{ + "dataset_id": "m4", + "target_column": "charges", + "task_type": "regression", + "train_csv": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/m4/arf/arf-m4-20260504_205426/staged/public/train.csv", + "val_csv": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/m4/arf/arf-m4-20260504_205426/staged/public/val.csv", + "test_csv": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/m4/arf/arf-m4-20260504_205426/staged/public/test.csv", + "features_json": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/m4/arf/arf-m4-20260504_205426/staged/public/staged_features.json", + "public_gate_report": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/m4/arf/arf-m4-20260504_205426/public_gate/public_gate_report.json", + "column_schema": [ + { + "name": "age", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 47, + "unique_ratio": 0.0212, + "example_values": [ + "46", + "38", + "19", + "27", + "26" + ] + } + }, + { + "name": "sex", + "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.000902, + "example_values": [ + "female", + "male" + ] + } + }, + { + "name": "bmi", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 538, + "unique_ratio": 0.24267, + "example_values": [ + "23.655", + "19.3", + "30.59", + "32.67", + "29.45" + ] + } + }, + { + "name": "children", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 6, + "unique_ratio": 0.002706, + "example_values": [ + "1", + "0", + "3", + "2", + "5" + ] + } + }, + { + "name": "smoker", + "role": "feature", + "semantic_type": "boolean", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 2, + "unique_ratio": 0.000902, + "example_values": [ + "yes", + "no" + ] + } + }, + { + "name": "region", + "role": "feature", + "semantic_type": "categorical", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 4, + "unique_ratio": 0.001804, + "example_values": [ + "northwest", + "southwest", + "southeast", + "northeast" + ] + } + }, + { + "name": "charges", + "role": "target", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 1281, + "unique_ratio": 0.577808, + "example_values": [ + "21677.28345", + "15820.699", + "1639.5631", + "2497.0383", + "2897.3235" + ] + } + } + ] +} \ No newline at end of file diff --git a/hyperparameter/m4/arf/arf-m4-20260504_205426/run_config.json b/hyperparameter/m4/arf/arf-m4-20260504_205426/run_config.json new file mode 100644 index 0000000000000000000000000000000000000000..bbfbcaae0e7274d25d58b22fba211c1a0bc2581b --- /dev/null +++ b/hyperparameter/m4/arf/arf-m4-20260504_205426/run_config.json @@ -0,0 +1,46 @@ +{ + "schema_version": 1, + "recorded_at": "2026-05-04T20:54:26", + "dataset_id": "m4", + "model": "arf", + "work_dir": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/m4/arf/arf-m4-20260504_205426", + "dataset_source_requested": "new", + "dataset_source_resolved": "new", + "cli_args": { + "model": "arf", + "dataset": "m4", + "dataset_source": "new", + "train": true, + "generate": true, + "num_rows": 0, + "epochs": null, + "output_dir": null, + "model_dir": null, + "work_dir": null, + "resume": false, + "no_stats": false + }, + "resolved": { + "num_rows": 2217, + "model_path": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/m4/arf/arf-m4-20260504_205426/arf_model.pkl", + "output_csv": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/m4/arf/arf-m4-20260504_205426/arf-m4-2217-20260504_205447.csv" + }, + "input_artifacts": { + "public_gate_report": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/m4/arf/arf-m4-20260504_205426/public_gate/public_gate_report.json", + "public_manifest": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/m4/arf/arf-m4-20260504_205426/public_gate/staged_input_manifest.json", + "model_manifest": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/m4/arf/arf-m4-20260504_205426/staged/arf/model_input_manifest.json", + "train_csv": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/m4/arf/arf-m4-20260504_205426/staged/public/train.csv", + "features_json": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/m4/arf/arf-m4-20260504_205426/staged/public/staged_features.json", + "target_column": "charges", + "task_type": "regression" + }, + "env_overrides": { + "ARF_CLIP_QUANTILE_HIGH": "0.999", + "ARF_CLIP_QUANTILE_LOW": "0.001", + "ARF_DELTA": "0.01", + "ARF_EARLY_STOP": "true", + "ARF_MAX_ITERS": "15", + "ARF_MIN_NODE_SIZE": "3", + "ARF_NUM_TREES": "100" + } +} \ No newline at end of file diff --git a/hyperparameter/m4/arf/arf-m4-20260504_205426/runtime_result.json b/hyperparameter/m4/arf/arf-m4-20260504_205426/runtime_result.json new file mode 100644 index 0000000000000000000000000000000000000000..2ea2182a785b9131587efb6961b82de235e00d7f --- /dev/null +++ b/hyperparameter/m4/arf/arf-m4-20260504_205426/runtime_result.json @@ -0,0 +1,27 @@ +{ + "dataset_id": "m4", + "model": "arf", + "run_id": "arf-m4-20260504_205426", + "public_gate_status": "pass", + "adapter_ready_status": "pass", + "train_status": "success", + "generate_status": "success", + "reason_code": null, + "reason_detail": null, + "artifacts": { + "synthetic_csv": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/m4/arf/arf-m4-20260504_205426/arf-m4-2217-20260504_205447.csv", + "model_path": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/m4/arf/arf-m4-20260504_205426/arf_model.pkl" + }, + "timings": { + "train": { + "started_at": "2026-05-04T20:54:26", + "ended_at": "2026-05-04T20:54:47", + "duration_sec": 21.466 + }, + "generate": { + "started_at": "2026-05-04T20:54:47", + "ended_at": "2026-05-04T20:54:50", + "duration_sec": 2.827 + } + } +} \ No newline at end of file diff --git a/hyperparameter/m4/arf/arf-m4-20260504_205426/staged/arf/adapter_report.json b/hyperparameter/m4/arf/arf-m4-20260504_205426/staged/arf/adapter_report.json new file mode 100644 index 0000000000000000000000000000000000000000..319e4bd0695a7fd28ff705e602c6f5d48e00592e --- /dev/null +++ b/hyperparameter/m4/arf/arf-m4-20260504_205426/staged/arf/adapter_report.json @@ -0,0 +1,7 @@ +{ + "adapter_ready_status": "pass", + "adapter_fail_reason_code": null, + "adapter_fail_detail": null, + "adapter_transforms_applied": [], + "model_input_manifest": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/m4/arf/arf-m4-20260504_205426/staged/arf/model_input_manifest.json" +} \ No newline at end of file diff --git a/hyperparameter/m4/arf/arf-m4-20260504_205426/staged/arf/adapter_transforms_applied.json b/hyperparameter/m4/arf/arf-m4-20260504_205426/staged/arf/adapter_transforms_applied.json new file mode 100644 index 0000000000000000000000000000000000000000..0637a088a01e8ddab3bf3fa98dbe804cbde1a0dc --- /dev/null +++ b/hyperparameter/m4/arf/arf-m4-20260504_205426/staged/arf/adapter_transforms_applied.json @@ -0,0 +1 @@ +[] \ No newline at end of file diff --git a/hyperparameter/m4/arf/arf-m4-20260504_205426/staged/arf/model_input_manifest.json b/hyperparameter/m4/arf/arf-m4-20260504_205426/staged/arf/model_input_manifest.json new file mode 100644 index 0000000000000000000000000000000000000000..bf932b608826989beaa254c01dbff2ec1ab859a8 --- /dev/null +++ b/hyperparameter/m4/arf/arf-m4-20260504_205426/staged/arf/model_input_manifest.json @@ -0,0 +1,154 @@ +{ + "dataset_id": "m4", + "model": "arf", + "target_column": "charges", + "task_type": "regression", + "column_schema": [ + { + "name": "age", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 47, + "unique_ratio": 0.0212, + "example_values": [ + "46", + "38", + "19", + "27", + "26" + ] + } + }, + { + "name": "sex", + "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.000902, + "example_values": [ + "female", + "male" + ] + } + }, + { + "name": "bmi", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 538, + "unique_ratio": 0.24267, + "example_values": [ + "23.655", + "19.3", + "30.59", + "32.67", + "29.45" + ] + } + }, + { + "name": "children", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 6, + "unique_ratio": 0.002706, + "example_values": [ + "1", + "0", + "3", + "2", + "5" + ] + } + }, + { + "name": "smoker", + "role": "feature", + "semantic_type": "boolean", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 2, + "unique_ratio": 0.000902, + "example_values": [ + "yes", + "no" + ] + } + }, + { + "name": "region", + "role": "feature", + "semantic_type": "categorical", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 4, + "unique_ratio": 0.001804, + "example_values": [ + "northwest", + "southwest", + "southeast", + "northeast" + ] + } + }, + { + "name": "charges", + "role": "target", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 1281, + "unique_ratio": 0.577808, + "example_values": [ + "21677.28345", + "15820.699", + "1639.5631", + "2497.0383", + "2897.3235" + ] + } + } + ], + "public_manifest": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/m4/arf/arf-m4-20260504_205426/public_gate/staged_input_manifest.json", + "train_csv": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/m4/arf/arf-m4-20260504_205426/staged/public/train.csv", + "val_csv": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/m4/arf/arf-m4-20260504_205426/staged/public/val.csv", + "test_csv": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/m4/arf/arf-m4-20260504_205426/staged/public/test.csv", + "features_json": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/m4/arf/arf-m4-20260504_205426/staged/public/staged_features.json", + "public_gate_report": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/m4/arf/arf-m4-20260504_205426/public_gate/public_gate_report.json" +} \ No newline at end of file diff --git a/hyperparameter/m4/arf/arf-m4-20260504_205426/staged/public/staged_features.json b/hyperparameter/m4/arf/arf-m4-20260504_205426/staged/public/staged_features.json new file mode 100644 index 0000000000000000000000000000000000000000..d6acd098c35111f423f3ffff2cfd1754bc5dfebc --- /dev/null +++ b/hyperparameter/m4/arf/arf-m4-20260504_205426/staged/public/staged_features.json @@ -0,0 +1,37 @@ +[ + { + "feature_name": "age", + "data_type": "continuous", + "is_target": false + }, + { + "feature_name": "sex", + "data_type": "categorical", + "is_target": false + }, + { + "feature_name": "bmi", + "data_type": "continuous", + "is_target": false + }, + { + "feature_name": "children", + "data_type": "continuous", + "is_target": false + }, + { + "feature_name": "smoker", + "data_type": "binary", + "is_target": false + }, + { + "feature_name": "region", + "data_type": "categorical", + "is_target": false + }, + { + "feature_name": "charges", + "data_type": "continuous", + "is_target": true + } +] \ No newline at end of file diff --git a/hyperparameter/m4/arf/arf-m4-20260504_205426/staged/public/test.csv b/hyperparameter/m4/arf/arf-m4-20260504_205426/staged/public/test.csv new file mode 100644 index 0000000000000000000000000000000000000000..c88a2e7cfcd715bb421cb56eb078033da45c4dc8 --- /dev/null +++ b/hyperparameter/m4/arf/arf-m4-20260504_205426/staged/public/test.csv @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:4c541b677fb2d45c5bc79338eeee9fd8c91484b195a0c2c546c2fbabf113b7ea +size 11298 diff --git a/hyperparameter/m4/arf/arf-m4-20260504_205426/staged/public/train.csv b/hyperparameter/m4/arf/arf-m4-20260504_205426/staged/public/train.csv new file mode 100644 index 0000000000000000000000000000000000000000..5a05019d786529e0617291766c4fbe016ca01bf5 --- /dev/null +++ b/hyperparameter/m4/arf/arf-m4-20260504_205426/staged/public/train.csv @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:614ebfac5f41d6f661aff675fa18c0f933a8d9bcc77ea71b7b2360c2f0155837 +size 90069 diff --git a/hyperparameter/m4/arf/arf-m4-20260504_205426/staged/public/val.csv b/hyperparameter/m4/arf/arf-m4-20260504_205426/staged/public/val.csv new file mode 100644 index 0000000000000000000000000000000000000000..d78fe5ad1537c437ba9ac2629f2aa60a6c17e708 --- /dev/null +++ b/hyperparameter/m4/arf/arf-m4-20260504_205426/staged/public/val.csv @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:e55f5edbe7942ff01630de91a9c70dfbc6445eba76c7b970350364546b67c2d7 +size 11218 diff --git a/hyperparameter/m4/arf/arf-m4-20260504_205426/train_20260504_205426.log b/hyperparameter/m4/arf/arf-m4-20260504_205426/train_20260504_205426.log new file mode 100644 index 0000000000000000000000000000000000000000..08f83648f12f2af09e37b3149ae1a7f780f89983 --- /dev/null +++ b/hyperparameter/m4/arf/arf-m4-20260504_205426/train_20260504_205426.log @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:00842fae2957aac634a982d90db5e350bb482f71618b1255231a98bc16ecf0d9 +size 578 diff --git a/hyperparameter/m4/arf/arf-m4-20260504_205503/_arf_generate.py b/hyperparameter/m4/arf/arf-m4-20260504_205503/_arf_generate.py new file mode 100644 index 0000000000000000000000000000000000000000..ed465e68b35f899ae78da01701cb7da7cdcc2470 --- /dev/null +++ b/hyperparameter/m4/arf/arf-m4-20260504_205503/_arf_generate.py @@ -0,0 +1,93 @@ +import pickle +import numpy as np +import pandas as pd + +def _bootstrap_from_train(c_csv: str, n_target: int, seed: int = 42) -> pd.DataFrame: + """当 arfpy.forge 完全不可用时,从训练 CSV 有放回抽样,保证行数与列对齐。""" + src = pd.read_csv(c_csv, encoding="utf-8-sig", low_memory=False) + src = src.replace([np.inf, -np.inf], np.nan).dropna(axis=1, how="all") + src = src.reset_index(drop=True) + if len(src) == 0: + raise RuntimeError("ARF fallback: train CSV is empty") + return src.sample(n=n_target, replace=True, random_state=seed).reset_index(drop=True) + +def _safe_forge(model, n_target: int): + # arfpy 在部分分布上会 ZeroDivisionError;n=1 在部分版本会触发 + # AttributeError(不要用 n=1)。失败返回 None,由外层走 bootstrap。 + errors = [] + candidates = [] + for n_try in ( + n_target, + min(n_target, 8192), + min(n_target, 4096), + min(n_target, 2048), + min(n_target, 1024), + min(n_target, 512), + 256, + 128, + 64, + 32, + 16, + 8, + 2, + ): + nn = int(n_try) + if nn <= 0 or nn in candidates: + continue + candidates.append(nn) + for n_try in candidates: + try: + out = model.forge(n=n_try).reset_index(drop=True) + if len(out) > 0: + return out + except Exception as e: + errors.append(f"n={n_try}: {type(e).__name__}: {e}") + print("[ARF] forge failed after retries; last errors:", " | ".join(errors[-4:])) + return None + +n_target = int(2217) +c_csv = "/work/output-Benchmark-trainonly-v1/m4/arf/arf-m4-20260504_205503/staged/public/train.csv" +with open("/work/output-Benchmark-trainonly-v1/m4/arf/arf-m4-20260504_205503/arf_model.pkl", "rb") as f: + model = pickle.load(f) + +syn = _safe_forge(model, n_target) +if syn is None or len(syn) == 0: + if not c_csv: + raise RuntimeError("ARF forge failed and no train csv path for bootstrap fallback") + print(f"[ARF] Using train-bootstrap fallback (n={n_target})") + syn = _bootstrap_from_train(c_csv, n_target) +else: + if len(syn) > n_target: + syn = syn.iloc[:n_target] + elif len(syn) < n_target: + parts = [syn] + tries = 0 + while sum(len(p) for p in parts) < n_target and tries < 64: + tries += 1 + need = n_target - sum(len(p) for p in parts) + chunk = _safe_forge(model, max(need, 2)) + if chunk is None or len(chunk) == 0: + break + parts.append(chunk) + syn = pd.concat(parts, ignore_index=True).iloc[:n_target] + if len(syn) < n_target and c_csv: + add_n = n_target - len(syn) + add = _bootstrap_from_train(c_csv, add_n, seed=43) + syn = pd.concat([syn, add], ignore_index=True).iloc[:n_target] + +_ds_id = 'm4' +if _ds_id == "c19": + # 仅 c19:object 列内裸换行会使 pivot 用 csv.reader 统计到的「记录数」大于 DataFrame 行数 → Sw。 + for _col in syn.columns: + if syn[_col].dtype == object: + syn[_col] = ( + syn[_col] + .astype(str) + .str.replace("\r\n", " ", regex=False) + .str.replace("\n", " ", regex=False) + .str.replace("\r", " ", regex=False) + ) + syn = syn.iloc[:n_target].reset_index(drop=True) + +syn.to_csv("/work/output-Benchmark-trainonly-v1/m4/arf/arf-m4-20260504_205503/arf-m4-2217-20260504_205543.csv", index=False) +print(f"[ARF] Generated {len(syn)} rows (requested {n_target}) -> /work/output-Benchmark-trainonly-v1/m4/arf/arf-m4-20260504_205503/arf-m4-2217-20260504_205543.csv") diff --git a/hyperparameter/m4/arf/arf-m4-20260504_205503/_arf_train.py b/hyperparameter/m4/arf/arf-m4-20260504_205503/_arf_train.py new file mode 100644 index 0000000000000000000000000000000000000000..272d2f63aec86e89fcd147f59af6208e4f786c11 --- /dev/null +++ b/hyperparameter/m4/arf/arf-m4-20260504_205503/_arf_train.py @@ -0,0 +1,47 @@ +import os +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 + q_low = float(os.environ.get("ARF_CLIP_QUANTILE_LOW", "0.001")) + q_high = float(os.environ.get("ARF_CLIP_QUANTILE_HIGH", "0.999")) + lo, hi = df[col].quantile(q_low), df[col].quantile(q_high) + if pd.notna(lo) and pd.notna(hi) and lo < hi: + df[col] = df[col].clip(lo, hi) + return df + +df = pd.read_csv("/work/output-Benchmark-trainonly-v1/m4/arf/arf-m4-20260504_205503/staged/public/train.csv") +df = _sanitize_for_arf(df) +num_trees = int(os.environ.get("ARF_NUM_TREES", "30")) +delta = float(os.environ.get("ARF_DELTA", "0")) +max_iters = int(os.environ.get("ARF_MAX_ITERS", "10")) +early_stop = (os.environ.get("ARF_EARLY_STOP", "true").strip().lower() in ("1", "true", "yes")) +verbose = (os.environ.get("ARF_VERBOSE", "true").strip().lower() in ("1", "true", "yes")) +min_node_size = int(os.environ.get("ARF_MIN_NODE_SIZE", "5")) +print(f"[ARF] Training on {len(df)} rows, {len(df.columns)} cols") +print(f"[ARF] Config num_trees={num_trees} delta={delta} max_iters={max_iters} early_stop={early_stop} min_node_size={min_node_size}") + +model = arf.arf(x=df, num_trees=num_trees, delta=delta, max_iters=max_iters, early_stop=early_stop, verbose=verbose, min_node_size=min_node_size) +if hasattr(model, "fit"): + model.fit() +elif hasattr(model, "forde"): + model.forde() +else: + raise RuntimeError("arfpy API: no fit() / forde()") + +with open("/work/output-Benchmark-trainonly-v1/m4/arf/arf-m4-20260504_205503/arf_model.pkl", "wb") as f: + pickle.dump(model, f) +print(f"[ARF] Model saved -> /work/output-Benchmark-trainonly-v1/m4/arf/arf-m4-20260504_205503/arf_model.pkl") diff --git a/hyperparameter/m4/arf/arf-m4-20260504_205503/arf-m4-2217-20260504_205543.csv b/hyperparameter/m4/arf/arf-m4-20260504_205503/arf-m4-2217-20260504_205543.csv new file mode 100644 index 0000000000000000000000000000000000000000..e35078a86093917140b05b44df6dcce09d4559f9 --- /dev/null +++ b/hyperparameter/m4/arf/arf-m4-20260504_205503/arf-m4-2217-20260504_205543.csv @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:72ea395dc38ed8caf8807293d5f906dcd0821b3a2899b8513e650936dfb0705f +size 90083 diff --git a/hyperparameter/m4/arf/arf-m4-20260504_205503/arf_model.pkl b/hyperparameter/m4/arf/arf-m4-20260504_205503/arf_model.pkl new file mode 100644 index 0000000000000000000000000000000000000000..d17deb9da445d7fac83df0167c6d12c27907c6b8 --- /dev/null +++ b/hyperparameter/m4/arf/arf-m4-20260504_205503/arf_model.pkl @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:0b9201d48c1ac513e0c1050763e8345f0e3d2372810fa94fec980e79504d6584 +size 64537508 diff --git a/hyperparameter/m4/arf/arf-m4-20260504_205503/gen_20260504_205543.log b/hyperparameter/m4/arf/arf-m4-20260504_205503/gen_20260504_205543.log new file mode 100644 index 0000000000000000000000000000000000000000..43901bf537aa623bc60e73e9cd4e5d8d00aac953 --- /dev/null +++ b/hyperparameter/m4/arf/arf-m4-20260504_205503/gen_20260504_205543.log @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:05c002f2400a647615393b18ba7dfd7071471b807585e039e886654550f1cb82 +size 691 diff --git a/hyperparameter/m4/arf/arf-m4-20260504_205503/input_snapshot.json b/hyperparameter/m4/arf/arf-m4-20260504_205503/input_snapshot.json new file mode 100644 index 0000000000000000000000000000000000000000..a3fec1973e249527909ae104dcdbe1f735528632 --- /dev/null +++ b/hyperparameter/m4/arf/arf-m4-20260504_205503/input_snapshot.json @@ -0,0 +1,36 @@ +{ + "dataset_id": "m4", + "model": "arf", + "inputs": { + "train_csv": { + "path": "/data/jialinzhang/SynthesizePipeline-server/DatasetNew/m4/m4-train.csv", + "exists": true, + "size": 92191, + "sha256": "396b9d409ca21bf4a4cd329bdf5b7796aa0ae6356fa8d89b8eb669b5880b81f1" + }, + "val_csv": { + "path": "/data/jialinzhang/SynthesizePipeline-server/DatasetNew/m4/m4-val.csv", + "exists": true, + "size": 11482, + "sha256": "ee3c247d02f56e1687d03c381e13125d6a3a2a411ac7f202ba8520a4be9f1784" + }, + "test_csv": { + "path": "/data/jialinzhang/SynthesizePipeline-server/DatasetNew/m4/m4-test.csv", + "exists": true, + "size": 11559, + "sha256": "cadb9941124001b8fa7cb1ebae43b70a9ca56294f4df4d3c2f22c164c41757d4" + }, + "profile_json": { + "path": "/data/jialinzhang/SynthesizePipeline-server/DatasetNew/artifacts/data_core/tabular/m4/m4-dataset_profile.json", + "exists": true, + "size": 3336, + "sha256": "83e2764810e4a0e8cdece3a28dbd9134b7c9df6f2e56953e46d024ad2c4e035f" + }, + "contract_json": { + "path": "/data/jialinzhang/SynthesizePipeline-server/DatasetNew/artifacts/data_core/tabular/m4/m4-dataset_contract_v1.json", + "exists": true, + "size": 3810, + "sha256": "c23641b258629a845b164099bd0132886f8f6d0100e990494e0f92540f8987d9" + } + } +} \ No newline at end of file diff --git a/hyperparameter/m4/arf/arf-m4-20260504_205503/public_gate/normalized_schema_snapshot.json b/hyperparameter/m4/arf/arf-m4-20260504_205503/public_gate/normalized_schema_snapshot.json new file mode 100644 index 0000000000000000000000000000000000000000..31ed9818686b11907df75e872e4ffbe010330880 --- /dev/null +++ b/hyperparameter/m4/arf/arf-m4-20260504_205503/public_gate/normalized_schema_snapshot.json @@ -0,0 +1,147 @@ +{ + "dataset_id": "m4", + "target_column": "charges", + "task_type": "regression", + "columns": [ + { + "name": "age", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 47, + "unique_ratio": 0.0212, + "example_values": [ + "46", + "38", + "19", + "27", + "26" + ] + } + }, + { + "name": "sex", + "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.000902, + "example_values": [ + "female", + "male" + ] + } + }, + { + "name": "bmi", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 538, + "unique_ratio": 0.24267, + "example_values": [ + "23.655", + "19.3", + "30.59", + "32.67", + "29.45" + ] + } + }, + { + "name": "children", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 6, + "unique_ratio": 0.002706, + "example_values": [ + "1", + "0", + "3", + "2", + "5" + ] + } + }, + { + "name": "smoker", + "role": "feature", + "semantic_type": "boolean", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 2, + "unique_ratio": 0.000902, + "example_values": [ + "yes", + "no" + ] + } + }, + { + "name": "region", + "role": "feature", + "semantic_type": "categorical", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 4, + "unique_ratio": 0.001804, + "example_values": [ + "northwest", + "southwest", + "southeast", + "northeast" + ] + } + }, + { + "name": "charges", + "role": "target", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 1281, + "unique_ratio": 0.577808, + "example_values": [ + "21677.28345", + "15820.699", + "1639.5631", + "2497.0383", + "2897.3235" + ] + } + } + ] +} \ No newline at end of file diff --git a/hyperparameter/m4/arf/arf-m4-20260504_205503/public_gate/public_gate_report.json b/hyperparameter/m4/arf/arf-m4-20260504_205503/public_gate/public_gate_report.json new file mode 100644 index 0000000000000000000000000000000000000000..e7a25408e2574124629ea9437356551e4d6f4790 --- /dev/null +++ b/hyperparameter/m4/arf/arf-m4-20260504_205503/public_gate/public_gate_report.json @@ -0,0 +1,37 @@ +{ + "dataset_id": "m4", + "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": "charges", + "task_type": "regression", + "input_splits": { + "train": "/data/jialinzhang/SynthesizePipeline-server/DatasetNew/m4/m4-train.csv", + "val": "/data/jialinzhang/SynthesizePipeline-server/DatasetNew/m4/m4-val.csv", + "test": "/data/jialinzhang/SynthesizePipeline-server/DatasetNew/m4/m4-test.csv" + } +} \ No newline at end of file diff --git a/hyperparameter/m4/arf/arf-m4-20260504_205503/public_gate/staged_input_manifest.json b/hyperparameter/m4/arf/arf-m4-20260504_205503/public_gate/staged_input_manifest.json new file mode 100644 index 0000000000000000000000000000000000000000..4cd3a881d0fa8ab1d968f2b539f5e1fa4381df66 --- /dev/null +++ b/hyperparameter/m4/arf/arf-m4-20260504_205503/public_gate/staged_input_manifest.json @@ -0,0 +1,152 @@ +{ + "dataset_id": "m4", + "target_column": "charges", + "task_type": "regression", + "train_csv": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/m4/arf/arf-m4-20260504_205503/staged/public/train.csv", + "val_csv": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/m4/arf/arf-m4-20260504_205503/staged/public/val.csv", + "test_csv": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/m4/arf/arf-m4-20260504_205503/staged/public/test.csv", + "features_json": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/m4/arf/arf-m4-20260504_205503/staged/public/staged_features.json", + "public_gate_report": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/m4/arf/arf-m4-20260504_205503/public_gate/public_gate_report.json", + "column_schema": [ + { + "name": "age", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 47, + "unique_ratio": 0.0212, + "example_values": [ + "46", + "38", + "19", + "27", + "26" + ] + } + }, + { + "name": "sex", + "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.000902, + "example_values": [ + "female", + "male" + ] + } + }, + { + "name": "bmi", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 538, + "unique_ratio": 0.24267, + "example_values": [ + "23.655", + "19.3", + "30.59", + "32.67", + "29.45" + ] + } + }, + { + "name": "children", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 6, + "unique_ratio": 0.002706, + "example_values": [ + "1", + "0", + "3", + "2", + "5" + ] + } + }, + { + "name": "smoker", + "role": "feature", + "semantic_type": "boolean", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 2, + "unique_ratio": 0.000902, + "example_values": [ + "yes", + "no" + ] + } + }, + { + "name": "region", + "role": "feature", + "semantic_type": "categorical", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 4, + "unique_ratio": 0.001804, + "example_values": [ + "northwest", + "southwest", + "southeast", + "northeast" + ] + } + }, + { + "name": "charges", + "role": "target", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 1281, + "unique_ratio": 0.577808, + "example_values": [ + "21677.28345", + "15820.699", + "1639.5631", + "2497.0383", + "2897.3235" + ] + } + } + ] +} \ No newline at end of file diff --git a/hyperparameter/m4/arf/arf-m4-20260504_205503/run_config.json b/hyperparameter/m4/arf/arf-m4-20260504_205503/run_config.json new file mode 100644 index 0000000000000000000000000000000000000000..f9fe39afcc0be81d24169be3eb3f86fab741337e --- /dev/null +++ b/hyperparameter/m4/arf/arf-m4-20260504_205503/run_config.json @@ -0,0 +1,46 @@ +{ + "schema_version": 1, + "recorded_at": "2026-05-04T20:55:03", + "dataset_id": "m4", + "model": "arf", + "work_dir": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/m4/arf/arf-m4-20260504_205503", + "dataset_source_requested": "new", + "dataset_source_resolved": "new", + "cli_args": { + "model": "arf", + "dataset": "m4", + "dataset_source": "new", + "train": true, + "generate": true, + "num_rows": 0, + "epochs": null, + "output_dir": null, + "model_dir": null, + "work_dir": null, + "resume": false, + "no_stats": false + }, + "resolved": { + "num_rows": 2217, + "model_path": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/m4/arf/arf-m4-20260504_205503/arf_model.pkl", + "output_csv": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/m4/arf/arf-m4-20260504_205503/arf-m4-2217-20260504_205543.csv" + }, + "input_artifacts": { + "public_gate_report": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/m4/arf/arf-m4-20260504_205503/public_gate/public_gate_report.json", + "public_manifest": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/m4/arf/arf-m4-20260504_205503/public_gate/staged_input_manifest.json", + "model_manifest": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/m4/arf/arf-m4-20260504_205503/staged/arf/model_input_manifest.json", + "train_csv": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/m4/arf/arf-m4-20260504_205503/staged/public/train.csv", + "features_json": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/m4/arf/arf-m4-20260504_205503/staged/public/staged_features.json", + "target_column": "charges", + "task_type": "regression" + }, + "env_overrides": { + "ARF_CLIP_QUANTILE_HIGH": "0.9995", + "ARF_CLIP_QUANTILE_LOW": "0.0005", + "ARF_DELTA": "0.02", + "ARF_EARLY_STOP": "false", + "ARF_MAX_ITERS": "20", + "ARF_MIN_NODE_SIZE": "1", + "ARF_NUM_TREES": "150" + } +} \ No newline at end of file diff --git a/hyperparameter/m4/arf/arf-m4-20260504_205503/runtime_result.json b/hyperparameter/m4/arf/arf-m4-20260504_205503/runtime_result.json new file mode 100644 index 0000000000000000000000000000000000000000..ea57cbcb20ab727a219f77ae77244acf03fc3e9a --- /dev/null +++ b/hyperparameter/m4/arf/arf-m4-20260504_205503/runtime_result.json @@ -0,0 +1,27 @@ +{ + "dataset_id": "m4", + "model": "arf", + "run_id": "arf-m4-20260504_205503", + "public_gate_status": "pass", + "adapter_ready_status": "pass", + "train_status": "success", + "generate_status": "success", + "reason_code": null, + "reason_detail": null, + "artifacts": { + "synthetic_csv": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/m4/arf/arf-m4-20260504_205503/arf-m4-2217-20260504_205543.csv", + "model_path": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/m4/arf/arf-m4-20260504_205503/arf_model.pkl" + }, + "timings": { + "train": { + "started_at": "2026-05-04T20:55:03", + "ended_at": "2026-05-04T20:55:43", + "duration_sec": 39.418 + }, + "generate": { + "started_at": "2026-05-04T20:55:43", + "ended_at": "2026-05-04T20:55:46", + "duration_sec": 3.161 + } + } +} \ No newline at end of file diff --git a/hyperparameter/m4/arf/arf-m4-20260504_205503/staged/arf/adapter_report.json b/hyperparameter/m4/arf/arf-m4-20260504_205503/staged/arf/adapter_report.json new file mode 100644 index 0000000000000000000000000000000000000000..735a73a6100731ece81c4f3c9b20cf5ace5c389e --- /dev/null +++ b/hyperparameter/m4/arf/arf-m4-20260504_205503/staged/arf/adapter_report.json @@ -0,0 +1,7 @@ +{ + "adapter_ready_status": "pass", + "adapter_fail_reason_code": null, + "adapter_fail_detail": null, + "adapter_transforms_applied": [], + "model_input_manifest": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/m4/arf/arf-m4-20260504_205503/staged/arf/model_input_manifest.json" +} \ No newline at end of file diff --git a/hyperparameter/m4/arf/arf-m4-20260504_205503/staged/arf/adapter_transforms_applied.json b/hyperparameter/m4/arf/arf-m4-20260504_205503/staged/arf/adapter_transforms_applied.json new file mode 100644 index 0000000000000000000000000000000000000000..0637a088a01e8ddab3bf3fa98dbe804cbde1a0dc --- /dev/null +++ b/hyperparameter/m4/arf/arf-m4-20260504_205503/staged/arf/adapter_transforms_applied.json @@ -0,0 +1 @@ +[] \ No newline at end of file diff --git a/hyperparameter/m4/arf/arf-m4-20260504_205503/staged/arf/model_input_manifest.json b/hyperparameter/m4/arf/arf-m4-20260504_205503/staged/arf/model_input_manifest.json new file mode 100644 index 0000000000000000000000000000000000000000..94059532181c2c8f9f4d36c73e98936a13169346 --- /dev/null +++ b/hyperparameter/m4/arf/arf-m4-20260504_205503/staged/arf/model_input_manifest.json @@ -0,0 +1,154 @@ +{ + "dataset_id": "m4", + "model": "arf", + "target_column": "charges", + "task_type": "regression", + "column_schema": [ + { + "name": "age", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 47, + "unique_ratio": 0.0212, + "example_values": [ + "46", + "38", + "19", + "27", + "26" + ] + } + }, + { + "name": "sex", + "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.000902, + "example_values": [ + "female", + "male" + ] + } + }, + { + "name": "bmi", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 538, + "unique_ratio": 0.24267, + "example_values": [ + "23.655", + "19.3", + "30.59", + "32.67", + "29.45" + ] + } + }, + { + "name": "children", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 6, + "unique_ratio": 0.002706, + "example_values": [ + "1", + "0", + "3", + "2", + "5" + ] + } + }, + { + "name": "smoker", + "role": "feature", + "semantic_type": "boolean", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 2, + "unique_ratio": 0.000902, + "example_values": [ + "yes", + "no" + ] + } + }, + { + "name": "region", + "role": "feature", + "semantic_type": "categorical", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 4, + "unique_ratio": 0.001804, + "example_values": [ + "northwest", + "southwest", + "southeast", + "northeast" + ] + } + }, + { + "name": "charges", + "role": "target", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 1281, + "unique_ratio": 0.577808, + "example_values": [ + "21677.28345", + "15820.699", + "1639.5631", + "2497.0383", + "2897.3235" + ] + } + } + ], + "public_manifest": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/m4/arf/arf-m4-20260504_205503/public_gate/staged_input_manifest.json", + "train_csv": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/m4/arf/arf-m4-20260504_205503/staged/public/train.csv", + "val_csv": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/m4/arf/arf-m4-20260504_205503/staged/public/val.csv", + "test_csv": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/m4/arf/arf-m4-20260504_205503/staged/public/test.csv", + "features_json": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/m4/arf/arf-m4-20260504_205503/staged/public/staged_features.json", + "public_gate_report": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/m4/arf/arf-m4-20260504_205503/public_gate/public_gate_report.json" +} \ No newline at end of file diff --git a/hyperparameter/m4/arf/arf-m4-20260504_205503/staged/public/staged_features.json b/hyperparameter/m4/arf/arf-m4-20260504_205503/staged/public/staged_features.json new file mode 100644 index 0000000000000000000000000000000000000000..d6acd098c35111f423f3ffff2cfd1754bc5dfebc --- /dev/null +++ b/hyperparameter/m4/arf/arf-m4-20260504_205503/staged/public/staged_features.json @@ -0,0 +1,37 @@ +[ + { + "feature_name": "age", + "data_type": "continuous", + "is_target": false + }, + { + "feature_name": "sex", + "data_type": "categorical", + "is_target": false + }, + { + "feature_name": "bmi", + "data_type": "continuous", + "is_target": false + }, + { + "feature_name": "children", + "data_type": "continuous", + "is_target": false + }, + { + "feature_name": "smoker", + "data_type": "binary", + "is_target": false + }, + { + "feature_name": "region", + "data_type": "categorical", + "is_target": false + }, + { + "feature_name": "charges", + "data_type": "continuous", + "is_target": true + } +] \ No newline at end of file diff --git a/hyperparameter/m4/arf/arf-m4-20260504_205503/staged/public/test.csv b/hyperparameter/m4/arf/arf-m4-20260504_205503/staged/public/test.csv new file mode 100644 index 0000000000000000000000000000000000000000..c88a2e7cfcd715bb421cb56eb078033da45c4dc8 --- /dev/null +++ b/hyperparameter/m4/arf/arf-m4-20260504_205503/staged/public/test.csv @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:4c541b677fb2d45c5bc79338eeee9fd8c91484b195a0c2c546c2fbabf113b7ea +size 11298 diff --git a/hyperparameter/m4/arf/arf-m4-20260504_205503/staged/public/train.csv b/hyperparameter/m4/arf/arf-m4-20260504_205503/staged/public/train.csv new file mode 100644 index 0000000000000000000000000000000000000000..5a05019d786529e0617291766c4fbe016ca01bf5 --- /dev/null +++ b/hyperparameter/m4/arf/arf-m4-20260504_205503/staged/public/train.csv @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:614ebfac5f41d6f661aff675fa18c0f933a8d9bcc77ea71b7b2360c2f0155837 +size 90069 diff --git a/hyperparameter/m4/arf/arf-m4-20260504_205503/staged/public/val.csv b/hyperparameter/m4/arf/arf-m4-20260504_205503/staged/public/val.csv new file mode 100644 index 0000000000000000000000000000000000000000..d78fe5ad1537c437ba9ac2629f2aa60a6c17e708 --- /dev/null +++ b/hyperparameter/m4/arf/arf-m4-20260504_205503/staged/public/val.csv @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:e55f5edbe7942ff01630de91a9c70dfbc6445eba76c7b970350364546b67c2d7 +size 11218 diff --git a/hyperparameter/m4/arf/arf-m4-20260504_205503/train_20260504_205503.log b/hyperparameter/m4/arf/arf-m4-20260504_205503/train_20260504_205503.log new file mode 100644 index 0000000000000000000000000000000000000000..736ec75edece310d169fdea58714e89d242631b1 --- /dev/null +++ b/hyperparameter/m4/arf/arf-m4-20260504_205503/train_20260504_205503.log @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:7cbea1d9105d9dc81f5927983d597402e28b37d5c9ff70b70e8ef3f16a369c1d +size 579 diff --git a/hyperparameter/m4/bayesnet/bayesnet-m4-20260504_205559/_bayesnet_generate.py b/hyperparameter/m4/bayesnet/bayesnet-m4-20260504_205559/_bayesnet_generate.py new file mode 100644 index 0000000000000000000000000000000000000000..8c15fdc8c08bf9894ddddb91cdfd385dc34ec4f1 --- /dev/null +++ b/hyperparameter/m4/bayesnet/bayesnet-m4-20260504_205559/_bayesnet_generate.py @@ -0,0 +1,105 @@ + +import pickle +import subprocess +import sys +import warnings + +import numpy as np +import pandas as pd +from pgmpy.sampling import BayesianModelSampling + +warnings.filterwarnings("ignore", category=FutureWarning) + +def _ensure_cloudpickle(): + try: + import cloudpickle # noqa: F401 + except ModuleNotFoundError: + subprocess.check_call( + [sys.executable, "-m", "pip", "install", "--quiet", "cloudpickle"], + ) + +_ensure_cloudpickle() + +with open("/work/output-Benchmark-trainonly-v1/m4/bayesnet/bayesnet-m4-20260504_205559/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(2217) +sampler = BayesianModelSampling(network) +raw = sampler.forward_sample(size=num_rows, show_progress=False) +raw = raw.reset_index(drop=True) +if len(raw) > num_rows: + raw = raw.iloc[:num_rows] +_tries = 0 +while len(raw) < num_rows and _tries < 64: + _tries += 1 + nextra = min(10000, num_rows - len(raw)) + more = sampler.forward_sample(size=max(nextra, 1), show_progress=False) + more = more.reset_index(drop=True) + if len(more) == 0: + break + raw = pd.concat([raw, more], ignore_index=True) + if len(raw) > num_rows: + raw = raw.iloc[:num_rows] + +out = pd.DataFrame(index=raw.index) +rng = np.random.default_rng() + +for c in cols: + if c in inverse["categorical"]: + levels = inverse["categorical"][c] + idx = raw[c].astype(int).to_numpy() + idx = np.clip(idx, 0, max(0, len(levels) - 1)) + out[c] = [levels[i] for i in idx] + else: + edges = np.asarray(inverse["continuous"][c], dtype=float) + if edges.size < 2: + out[c] = 0.0 + else: + nbin = edges.size - 1 + res = [] + for k in raw[c].astype(int).to_numpy(): + k = int(k) + if k < 0: + k = 0 + if k >= nbin: + k = nbin - 1 + lo, hi = float(edges[k]), float(edges[k + 1]) + if hi < lo: + lo, hi = hi, lo + v = rng.uniform(lo, hi) + if c in integer_columns: + v = int(round(v)) + res.append(v) + out[c] = res + +final = pd.DataFrame(index=out.index) +for c in full_order: + if c in const_cols: + final[c] = const_cols[c] + elif c in out.columns: + final[c] = out[c] + +dtypes = bundle.get("original_dtypes") or {} +for c, dts in dtypes.items(): + if c not in final.columns: + continue + try: + if "int" in dts: + final[c] = pd.to_numeric(final[c], errors="coerce").astype("Int64") + elif "float" in dts: + final[c] = pd.to_numeric(final[c], errors="coerce") + except Exception: + pass + +if len(final) != num_rows: + final = final.iloc[:num_rows].copy() +final = final.reset_index(drop=True) +final.to_csv("/work/output-Benchmark-trainonly-v1/m4/bayesnet/bayesnet-m4-20260504_205559/bayesnet-m4-2217-20260504_205607.csv", index=False) +print(f"[BayesNet] Generated {len(final)} rows (requested {num_rows}) -> /work/output-Benchmark-trainonly-v1/m4/bayesnet/bayesnet-m4-20260504_205559/bayesnet-m4-2217-20260504_205607.csv") diff --git a/hyperparameter/m4/bayesnet/bayesnet-m4-20260504_205559/_bayesnet_train.py b/hyperparameter/m4/bayesnet/bayesnet-m4-20260504_205559/_bayesnet_train.py new file mode 100644 index 0000000000000000000000000000000000000000..92df9e083983af73a8c82ee883db3ac159f0b762 --- /dev/null +++ b/hyperparameter/m4/bayesnet/bayesnet-m4-20260504_205559/_bayesnet_train.py @@ -0,0 +1,146 @@ + +import json +import os +import pickle +import subprocess +import sys +import warnings + +import numpy as np +import pandas as pd +from pgmpy.estimators import TreeSearch +from pgmpy.models import DiscreteBayesianNetwork +warnings.filterwarnings("ignore", category=FutureWarning) + +def _ensure_cloudpickle(): + try: + import cloudpickle # noqa: F401 + except ModuleNotFoundError: + subprocess.check_call( + [sys.executable, "-m", "pip", "install", "--quiet", "cloudpickle"], + ) + +_ensure_cloudpickle() + +with open("/work/output-Benchmark-trainonly-v1/m4/bayesnet/bayesnet-m4-20260504_205559/bayesnet_coltypes.json", "r", encoding="utf-8") as _f: + colmeta = json.load(_f) +integer_columns = set(colmeta.get("integer_columns") or []) + +df = pd.read_csv("/work/output-Benchmark-trainonly-v1/m4/bayesnet/bayesnet-m4-20260504_205559/staged/public/train.csv") +df = df.dropna(axis=1, how="all") +full_column_order = list(df.columns) + +const_cols = {} +for col in list(df.columns): + if df[col].nunique(dropna=True) <= 1: + const_cols[col] = df[col].iloc[0] if len(df) > 0 else None + df = df.drop(columns=[col]) + print(f"[BayesNet] Dropped zero-variance column '{col}'") + +const_path = "/work/output-Benchmark-trainonly-v1/m4/bayesnet/bayesnet-m4-20260504_205559/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 = int(os.environ.get("BAYESNET_MAX_BINS", "0")) +max_cat_levels = int(os.environ.get("BAYESNET_MAX_CAT_LEVELS", "0")) +if max_bins <= 0: + max_bins = 10 +if max_cat_levels <= 0: + max_cat_levels = 256 +auto_caps = os.environ.get("BAYESNET_DISABLE_AUTO_CAPS", "0").strip().lower() not in ("1", "true", "yes") +if auto_caps and max_bins == 10 and max_cat_levels == 256: + if _n_plan > 35 or _n_samples > 200000: + max_bins = 5 + max_cat_levels = 64 + if _n_plan > 55: + max_bins = 4 + max_cat_levels = 32 +struct_rows = int(os.environ.get("BAYESNET_STRUCT_ROWS", "25000")) +fit_rows = int(os.environ.get("BAYESNET_FIT_ROWS", "120000")) +estimator_type = (os.environ.get("BAYESNET_ESTIMATOR_TYPE", "chow-liu") or "chow-liu").strip() +edge_weights_fn = (os.environ.get("BAYESNET_EDGE_WEIGHTS_FN", "mutual_info") or "mutual_info").strip() +root_node = (os.environ.get("BAYESNET_ROOT_NODE", "") or "").strip() or None +n_jobs = int(os.environ.get("BAYESNET_N_JOBS", "1")) +print( + f"[BayesNet] max_bins={max_bins}, max_cat_levels={max_cat_levels}, struct_rows={struct_rows}, fit_rows={fit_rows}, estimator_type={estimator_type}, edge_weights_fn={edge_weights_fn}, root_node={root_node}, n_jobs={n_jobs} " + f"(cols_in_df={_n_plan}, rows={_n_samples})" +) + +for entry in colmeta["columns"]: + name = entry["name"] + if name not in df.columns: + continue + kind = entry["type"] + s = df[name] + if kind == "categorical": + s2 = s.astype(str).fillna("__NA__") + counts = s2.value_counts(dropna=False) + if len(counts) > max_cat_levels: + keep = set(counts.index[: max_cat_levels - 1].tolist()) + s2 = s2.map(lambda x: x if x in keep else "__OTHER__") + uniques = sorted(s2.dropna().unique(), key=lambda x: str(x)) + mapping = {str(v): i for i, v in enumerate(uniques)} + inverse["categorical"][name] = [uniques[i] for i in range(len(uniques))] + enc[name] = s2.map(lambda x, m=mapping: m.get(str(x), 0)).astype(int) + else: + s_num = pd.to_numeric(s, errors="coerce") + nu = int(s_num.nunique(dropna=True)) + q = min(max_bins, max(2, nu)) + if nu < 2: + enc[name] = np.zeros(len(s_num), dtype=int) + lo, hi = float(s_num.min()), float(s_num.max()) + inverse["continuous"][name] = [lo, hi] + else: + try: + _, bins = pd.qcut( + s_num, q=q, retbins=True, duplicates="drop" + ) + except Exception: + med = float(s_num.median()) + s2 = s_num.fillna(med) + _, bins = pd.qcut( + s2, q=min(q, 3), retbins=True, duplicates="drop" + ) + bins = np.asarray(bins, dtype=float) + lab = pd.cut( + s_num, bins=bins, labels=False, include_lowest=True + ) + enc[name] = lab.fillna(0).astype(int) + inverse["continuous"][name] = bins.tolist() + +print(f"[BayesNet] Training on {len(enc)} rows, {len(enc.columns)} cols (encoded)") + +enc_struct = enc +if len(enc) > struct_rows: + enc_struct = enc.sample(n=struct_rows, random_state=0, replace=False) + print(f"[BayesNet] TreeSearch on {len(enc_struct)} rows (subsample; full n={len(enc)})") +dag = TreeSearch(enc_struct, root_node=root_node, n_jobs=n_jobs).estimate(estimator_type=estimator_type, edge_weights_fn=edge_weights_fn, show_progress=False) +for col in enc.columns: + if col not in dag.nodes(): + dag.add_node(col) + print(f"[BayesNet] Added isolated node to DAG: {col}") +network = DiscreteBayesianNetwork(dag) +enc_fit = enc +if len(enc) > fit_rows: + enc_fit = enc.sample(n=fit_rows, random_state=1, replace=False) + print(f"[BayesNet] fit() on {len(enc_fit)} rows (full n={len(enc)})") +network.fit(enc_fit) + +bundle = { + "network": network, + "inverse": inverse, + "column_order": list(enc.columns), + "full_column_order": full_column_order, + "integer_columns": list(integer_columns), + "original_dtypes": {c: str(df[c].dtype) for c in enc.columns}, + "const_cols": const_cols, +} +with open("/work/output-Benchmark-trainonly-v1/m4/bayesnet/bayesnet-m4-20260504_205559/bayesnet_model.pkl", "wb") as _f: + pickle.dump(bundle, _f) +print(f"[BayesNet] Model saved -> /work/output-Benchmark-trainonly-v1/m4/bayesnet/bayesnet-m4-20260504_205559/bayesnet_model.pkl") diff --git a/hyperparameter/m4/bayesnet/bayesnet-m4-20260504_205559/bayesnet-m4-2217-20260504_205607.csv b/hyperparameter/m4/bayesnet/bayesnet-m4-20260504_205559/bayesnet-m4-2217-20260504_205607.csv new file mode 100644 index 0000000000000000000000000000000000000000..b1422d0d3670a43f536805293468794789645630 --- /dev/null +++ b/hyperparameter/m4/bayesnet/bayesnet-m4-20260504_205559/bayesnet-m4-2217-20260504_205607.csv @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:a5d9612db6e193b80e988525721f3861d9ffb17ce04b0c416a03227d35506398 +size 207261 diff --git a/hyperparameter/m4/bayesnet/bayesnet-m4-20260504_205559/bayesnet_coltypes.json b/hyperparameter/m4/bayesnet/bayesnet-m4-20260504_205559/bayesnet_coltypes.json new file mode 100644 index 0000000000000000000000000000000000000000..295bb70445b63eea5719ae7c1f72bcdf61849c8d --- /dev/null +++ b/hyperparameter/m4/bayesnet/bayesnet-m4-20260504_205559/bayesnet_coltypes.json @@ -0,0 +1,33 @@ +{ + "columns": [ + { + "name": "age", + "type": "continuous" + }, + { + "name": "sex", + "type": "categorical" + }, + { + "name": "bmi", + "type": "continuous" + }, + { + "name": "children", + "type": "continuous" + }, + { + "name": "smoker", + "type": "categorical" + }, + { + "name": "region", + "type": "categorical" + }, + { + "name": "charges", + "type": "continuous" + } + ], + "integer_columns": [] +} \ No newline at end of file diff --git a/hyperparameter/m4/bayesnet/bayesnet-m4-20260504_205559/bayesnet_model.pkl b/hyperparameter/m4/bayesnet/bayesnet-m4-20260504_205559/bayesnet_model.pkl new file mode 100644 index 0000000000000000000000000000000000000000..350018ced7d0189da2a5d24ce4d62ae9f7536292 --- /dev/null +++ b/hyperparameter/m4/bayesnet/bayesnet-m4-20260504_205559/bayesnet_model.pkl @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:0a0bc0873a86281b86c0d9147024d7b1a25ed19ce6c6bbba5ba0511741705255 +size 4247 diff --git a/hyperparameter/m4/bayesnet/bayesnet-m4-20260504_205559/const_cols.json b/hyperparameter/m4/bayesnet/bayesnet-m4-20260504_205559/const_cols.json new file mode 100644 index 0000000000000000000000000000000000000000..9e26dfeeb6e641a33dae4961196235bdb965b21b --- /dev/null +++ b/hyperparameter/m4/bayesnet/bayesnet-m4-20260504_205559/const_cols.json @@ -0,0 +1 @@ +{} \ No newline at end of file diff --git a/hyperparameter/m4/bayesnet/bayesnet-m4-20260504_205559/gen_20260504_205607.log b/hyperparameter/m4/bayesnet/bayesnet-m4-20260504_205559/gen_20260504_205607.log new file mode 100644 index 0000000000000000000000000000000000000000..ec04f1ff6829e79efddcc61ccc96528fd3df4b47 --- /dev/null +++ b/hyperparameter/m4/bayesnet/bayesnet-m4-20260504_205559/gen_20260504_205607.log @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:96d2a251d8a493681634da08c884f09b9670a1776ffbdc4a71dda46f3d2aa116 +size 3661 diff --git a/hyperparameter/m4/bayesnet/bayesnet-m4-20260504_205559/input_snapshot.json b/hyperparameter/m4/bayesnet/bayesnet-m4-20260504_205559/input_snapshot.json new file mode 100644 index 0000000000000000000000000000000000000000..80a11fda595a83a7857ca988e84c480002e80ddc --- /dev/null +++ b/hyperparameter/m4/bayesnet/bayesnet-m4-20260504_205559/input_snapshot.json @@ -0,0 +1,36 @@ +{ + "dataset_id": "m4", + "model": "bayesnet", + "inputs": { + "train_csv": { + "path": "/data/jialinzhang/SynthesizePipeline-server/DatasetNew/m4/m4-train.csv", + "exists": true, + "size": 92191, + "sha256": "396b9d409ca21bf4a4cd329bdf5b7796aa0ae6356fa8d89b8eb669b5880b81f1" + }, + "val_csv": { + "path": "/data/jialinzhang/SynthesizePipeline-server/DatasetNew/m4/m4-val.csv", + "exists": true, + "size": 11482, + "sha256": "ee3c247d02f56e1687d03c381e13125d6a3a2a411ac7f202ba8520a4be9f1784" + }, + "test_csv": { + "path": "/data/jialinzhang/SynthesizePipeline-server/DatasetNew/m4/m4-test.csv", + "exists": true, + "size": 11559, + "sha256": "cadb9941124001b8fa7cb1ebae43b70a9ca56294f4df4d3c2f22c164c41757d4" + }, + "profile_json": { + "path": "/data/jialinzhang/SynthesizePipeline-server/DatasetNew/artifacts/data_core/tabular/m4/m4-dataset_profile.json", + "exists": true, + "size": 3336, + "sha256": "83e2764810e4a0e8cdece3a28dbd9134b7c9df6f2e56953e46d024ad2c4e035f" + }, + "contract_json": { + "path": "/data/jialinzhang/SynthesizePipeline-server/DatasetNew/artifacts/data_core/tabular/m4/m4-dataset_contract_v1.json", + "exists": true, + "size": 3810, + "sha256": "c23641b258629a845b164099bd0132886f8f6d0100e990494e0f92540f8987d9" + } + } +} \ No newline at end of file diff --git a/hyperparameter/m4/bayesnet/bayesnet-m4-20260504_205559/public_gate/normalized_schema_snapshot.json b/hyperparameter/m4/bayesnet/bayesnet-m4-20260504_205559/public_gate/normalized_schema_snapshot.json new file mode 100644 index 0000000000000000000000000000000000000000..31ed9818686b11907df75e872e4ffbe010330880 --- /dev/null +++ b/hyperparameter/m4/bayesnet/bayesnet-m4-20260504_205559/public_gate/normalized_schema_snapshot.json @@ -0,0 +1,147 @@ +{ + "dataset_id": "m4", + "target_column": "charges", + "task_type": "regression", + "columns": [ + { + "name": "age", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 47, + "unique_ratio": 0.0212, + "example_values": [ + "46", + "38", + "19", + "27", + "26" + ] + } + }, + { + "name": "sex", + "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.000902, + "example_values": [ + "female", + "male" + ] + } + }, + { + "name": "bmi", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 538, + "unique_ratio": 0.24267, + "example_values": [ + "23.655", + "19.3", + "30.59", + "32.67", + "29.45" + ] + } + }, + { + "name": "children", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 6, + "unique_ratio": 0.002706, + "example_values": [ + "1", + "0", + "3", + "2", + "5" + ] + } + }, + { + "name": "smoker", + "role": "feature", + "semantic_type": "boolean", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 2, + "unique_ratio": 0.000902, + "example_values": [ + "yes", + "no" + ] + } + }, + { + "name": "region", + "role": "feature", + "semantic_type": "categorical", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 4, + "unique_ratio": 0.001804, + "example_values": [ + "northwest", + "southwest", + "southeast", + "northeast" + ] + } + }, + { + "name": "charges", + "role": "target", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 1281, + "unique_ratio": 0.577808, + "example_values": [ + "21677.28345", + "15820.699", + "1639.5631", + "2497.0383", + "2897.3235" + ] + } + } + ] +} \ No newline at end of file diff --git a/hyperparameter/m4/bayesnet/bayesnet-m4-20260504_205559/public_gate/public_gate_report.json b/hyperparameter/m4/bayesnet/bayesnet-m4-20260504_205559/public_gate/public_gate_report.json new file mode 100644 index 0000000000000000000000000000000000000000..e7a25408e2574124629ea9437356551e4d6f4790 --- /dev/null +++ b/hyperparameter/m4/bayesnet/bayesnet-m4-20260504_205559/public_gate/public_gate_report.json @@ -0,0 +1,37 @@ +{ + "dataset_id": "m4", + "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": "charges", + "task_type": "regression", + "input_splits": { + "train": "/data/jialinzhang/SynthesizePipeline-server/DatasetNew/m4/m4-train.csv", + "val": "/data/jialinzhang/SynthesizePipeline-server/DatasetNew/m4/m4-val.csv", + "test": "/data/jialinzhang/SynthesizePipeline-server/DatasetNew/m4/m4-test.csv" + } +} \ No newline at end of file diff --git a/hyperparameter/m4/bayesnet/bayesnet-m4-20260504_205559/public_gate/staged_input_manifest.json b/hyperparameter/m4/bayesnet/bayesnet-m4-20260504_205559/public_gate/staged_input_manifest.json new file mode 100644 index 0000000000000000000000000000000000000000..5893e405762ce0a9ebd422698e775d4479f062da --- /dev/null +++ b/hyperparameter/m4/bayesnet/bayesnet-m4-20260504_205559/public_gate/staged_input_manifest.json @@ -0,0 +1,152 @@ +{ + "dataset_id": "m4", + "target_column": "charges", + "task_type": "regression", + "train_csv": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/m4/bayesnet/bayesnet-m4-20260504_205559/staged/public/train.csv", + "val_csv": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/m4/bayesnet/bayesnet-m4-20260504_205559/staged/public/val.csv", + "test_csv": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/m4/bayesnet/bayesnet-m4-20260504_205559/staged/public/test.csv", + "features_json": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/m4/bayesnet/bayesnet-m4-20260504_205559/staged/public/staged_features.json", + "public_gate_report": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/m4/bayesnet/bayesnet-m4-20260504_205559/public_gate/public_gate_report.json", + "column_schema": [ + { + "name": "age", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 47, + "unique_ratio": 0.0212, + "example_values": [ + "46", + "38", + "19", + "27", + "26" + ] + } + }, + { + "name": "sex", + "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.000902, + "example_values": [ + "female", + "male" + ] + } + }, + { + "name": "bmi", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 538, + "unique_ratio": 0.24267, + "example_values": [ + "23.655", + "19.3", + "30.59", + "32.67", + "29.45" + ] + } + }, + { + "name": "children", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 6, + "unique_ratio": 0.002706, + "example_values": [ + "1", + "0", + "3", + "2", + "5" + ] + } + }, + { + "name": "smoker", + "role": "feature", + "semantic_type": "boolean", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 2, + "unique_ratio": 0.000902, + "example_values": [ + "yes", + "no" + ] + } + }, + { + "name": "region", + "role": "feature", + "semantic_type": "categorical", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 4, + "unique_ratio": 0.001804, + "example_values": [ + "northwest", + "southwest", + "southeast", + "northeast" + ] + } + }, + { + "name": "charges", + "role": "target", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 1281, + "unique_ratio": 0.577808, + "example_values": [ + "21677.28345", + "15820.699", + "1639.5631", + "2497.0383", + "2897.3235" + ] + } + } + ] +} \ No newline at end of file diff --git a/hyperparameter/m4/bayesnet/bayesnet-m4-20260504_205559/run_config.json b/hyperparameter/m4/bayesnet/bayesnet-m4-20260504_205559/run_config.json new file mode 100644 index 0000000000000000000000000000000000000000..8e9fe2698ac04437c97151df70746589ecec5f31 --- /dev/null +++ b/hyperparameter/m4/bayesnet/bayesnet-m4-20260504_205559/run_config.json @@ -0,0 +1,47 @@ +{ + "schema_version": 1, + "recorded_at": "2026-05-04T20:55:59", + "dataset_id": "m4", + "model": "bayesnet", + "work_dir": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/m4/bayesnet/bayesnet-m4-20260504_205559", + "dataset_source_requested": "new", + "dataset_source_resolved": "new", + "cli_args": { + "model": "bayesnet", + "dataset": "m4", + "dataset_source": "new", + "train": true, + "generate": true, + "num_rows": 0, + "epochs": null, + "output_dir": null, + "model_dir": null, + "work_dir": null, + "resume": false, + "no_stats": false + }, + "resolved": { + "num_rows": 2217, + "model_path": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/m4/bayesnet/bayesnet-m4-20260504_205559/bayesnet_model.pkl", + "output_csv": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/m4/bayesnet/bayesnet-m4-20260504_205559/bayesnet-m4-2217-20260504_205607.csv" + }, + "input_artifacts": { + "public_gate_report": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/m4/bayesnet/bayesnet-m4-20260504_205559/public_gate/public_gate_report.json", + "public_manifest": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/m4/bayesnet/bayesnet-m4-20260504_205559/public_gate/staged_input_manifest.json", + "model_manifest": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/m4/bayesnet/bayesnet-m4-20260504_205559/staged/bayesnet/model_input_manifest.json", + "train_csv": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/m4/bayesnet/bayesnet-m4-20260504_205559/staged/public/train.csv", + "features_json": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/m4/bayesnet/bayesnet-m4-20260504_205559/staged/public/staged_features.json", + "target_column": "charges", + "task_type": "regression" + }, + "env_overrides": { + "BAYESNET_DISABLE_AUTO_CAPS": "1", + "BAYESNET_EDGE_WEIGHTS_FN": "mutual_info", + "BAYESNET_ESTIMATOR_TYPE": "chow-liu", + "BAYESNET_FIT_ROWS": "50000", + "BAYESNET_MAX_BINS": "4", + "BAYESNET_MAX_CAT_LEVELS": "32", + "BAYESNET_N_JOBS": "1", + "BAYESNET_STRUCT_ROWS": "10000" + } +} \ No newline at end of file diff --git a/hyperparameter/m4/bayesnet/bayesnet-m4-20260504_205559/runtime_result.json b/hyperparameter/m4/bayesnet/bayesnet-m4-20260504_205559/runtime_result.json new file mode 100644 index 0000000000000000000000000000000000000000..7b9995f6ae1faa8f1a074c131d62dc10490f4331 --- /dev/null +++ b/hyperparameter/m4/bayesnet/bayesnet-m4-20260504_205559/runtime_result.json @@ -0,0 +1,27 @@ +{ + "dataset_id": "m4", + "model": "bayesnet", + "run_id": "bayesnet-m4-20260504_205559", + "public_gate_status": "pass", + "adapter_ready_status": "pass", + "train_status": "success", + "generate_status": "success", + "reason_code": null, + "reason_detail": null, + "artifacts": { + "synthetic_csv": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/m4/bayesnet/bayesnet-m4-20260504_205559/bayesnet-m4-2217-20260504_205607.csv", + "model_path": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/m4/bayesnet/bayesnet-m4-20260504_205559/bayesnet_model.pkl" + }, + "timings": { + "train": { + "started_at": "2026-05-04T20:55:59", + "ended_at": "2026-05-04T20:56:07", + "duration_sec": 7.615 + }, + "generate": { + "started_at": "2026-05-04T20:56:07", + "ended_at": "2026-05-04T20:56:15", + "duration_sec": 8.007 + } + } +} \ No newline at end of file diff --git a/hyperparameter/m4/bayesnet/bayesnet-m4-20260504_205559/staged/bayesnet/adapter_report.json b/hyperparameter/m4/bayesnet/bayesnet-m4-20260504_205559/staged/bayesnet/adapter_report.json new file mode 100644 index 0000000000000000000000000000000000000000..c2e83633aab32a15a82e6be96ee55f0b3aa6321e --- /dev/null +++ b/hyperparameter/m4/bayesnet/bayesnet-m4-20260504_205559/staged/bayesnet/adapter_report.json @@ -0,0 +1,7 @@ +{ + "adapter_ready_status": "pass", + "adapter_fail_reason_code": null, + "adapter_fail_detail": null, + "adapter_transforms_applied": [], + "model_input_manifest": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/m4/bayesnet/bayesnet-m4-20260504_205559/staged/bayesnet/model_input_manifest.json" +} \ No newline at end of file diff --git a/hyperparameter/m4/bayesnet/bayesnet-m4-20260504_205559/staged/bayesnet/adapter_transforms_applied.json b/hyperparameter/m4/bayesnet/bayesnet-m4-20260504_205559/staged/bayesnet/adapter_transforms_applied.json new file mode 100644 index 0000000000000000000000000000000000000000..0637a088a01e8ddab3bf3fa98dbe804cbde1a0dc --- /dev/null +++ b/hyperparameter/m4/bayesnet/bayesnet-m4-20260504_205559/staged/bayesnet/adapter_transforms_applied.json @@ -0,0 +1 @@ +[] \ No newline at end of file diff --git a/hyperparameter/m4/bayesnet/bayesnet-m4-20260504_205559/staged/bayesnet/model_input_manifest.json b/hyperparameter/m4/bayesnet/bayesnet-m4-20260504_205559/staged/bayesnet/model_input_manifest.json new file mode 100644 index 0000000000000000000000000000000000000000..4d0595f1df21db7c3985b7963e9181a694c60e95 --- /dev/null +++ b/hyperparameter/m4/bayesnet/bayesnet-m4-20260504_205559/staged/bayesnet/model_input_manifest.json @@ -0,0 +1,154 @@ +{ + "dataset_id": "m4", + "model": "bayesnet", + "target_column": "charges", + "task_type": "regression", + "column_schema": [ + { + "name": "age", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 47, + "unique_ratio": 0.0212, + "example_values": [ + "46", + "38", + "19", + "27", + "26" + ] + } + }, + { + "name": "sex", + "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.000902, + "example_values": [ + "female", + "male" + ] + } + }, + { + "name": "bmi", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 538, + "unique_ratio": 0.24267, + "example_values": [ + "23.655", + "19.3", + "30.59", + "32.67", + "29.45" + ] + } + }, + { + "name": "children", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 6, + "unique_ratio": 0.002706, + "example_values": [ + "1", + "0", + "3", + "2", + "5" + ] + } + }, + { + "name": "smoker", + "role": "feature", + "semantic_type": "boolean", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 2, + "unique_ratio": 0.000902, + "example_values": [ + "yes", + "no" + ] + } + }, + { + "name": "region", + "role": "feature", + "semantic_type": "categorical", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 4, + "unique_ratio": 0.001804, + "example_values": [ + "northwest", + "southwest", + "southeast", + "northeast" + ] + } + }, + { + "name": "charges", + "role": "target", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 1281, + "unique_ratio": 0.577808, + "example_values": [ + "21677.28345", + "15820.699", + "1639.5631", + "2497.0383", + "2897.3235" + ] + } + } + ], + "public_manifest": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/m4/bayesnet/bayesnet-m4-20260504_205559/public_gate/staged_input_manifest.json", + "train_csv": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/m4/bayesnet/bayesnet-m4-20260504_205559/staged/public/train.csv", + "val_csv": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/m4/bayesnet/bayesnet-m4-20260504_205559/staged/public/val.csv", + "test_csv": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/m4/bayesnet/bayesnet-m4-20260504_205559/staged/public/test.csv", + "features_json": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/m4/bayesnet/bayesnet-m4-20260504_205559/staged/public/staged_features.json", + "public_gate_report": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/m4/bayesnet/bayesnet-m4-20260504_205559/public_gate/public_gate_report.json" +} \ No newline at end of file diff --git a/hyperparameter/m4/bayesnet/bayesnet-m4-20260504_205559/staged/public/staged_features.json b/hyperparameter/m4/bayesnet/bayesnet-m4-20260504_205559/staged/public/staged_features.json new file mode 100644 index 0000000000000000000000000000000000000000..d6acd098c35111f423f3ffff2cfd1754bc5dfebc --- /dev/null +++ b/hyperparameter/m4/bayesnet/bayesnet-m4-20260504_205559/staged/public/staged_features.json @@ -0,0 +1,37 @@ +[ + { + "feature_name": "age", + "data_type": "continuous", + "is_target": false + }, + { + "feature_name": "sex", + "data_type": "categorical", + "is_target": false + }, + { + "feature_name": "bmi", + "data_type": "continuous", + "is_target": false + }, + { + "feature_name": "children", + "data_type": "continuous", + "is_target": false + }, + { + "feature_name": "smoker", + "data_type": "binary", + "is_target": false + }, + { + "feature_name": "region", + "data_type": "categorical", + "is_target": false + }, + { + "feature_name": "charges", + "data_type": "continuous", + "is_target": true + } +] \ No newline at end of file diff --git a/hyperparameter/m4/bayesnet/bayesnet-m4-20260504_205559/staged/public/test.csv b/hyperparameter/m4/bayesnet/bayesnet-m4-20260504_205559/staged/public/test.csv new file mode 100644 index 0000000000000000000000000000000000000000..c88a2e7cfcd715bb421cb56eb078033da45c4dc8 --- /dev/null +++ b/hyperparameter/m4/bayesnet/bayesnet-m4-20260504_205559/staged/public/test.csv @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:4c541b677fb2d45c5bc79338eeee9fd8c91484b195a0c2c546c2fbabf113b7ea +size 11298 diff --git a/hyperparameter/m4/bayesnet/bayesnet-m4-20260504_205559/staged/public/train.csv b/hyperparameter/m4/bayesnet/bayesnet-m4-20260504_205559/staged/public/train.csv new file mode 100644 index 0000000000000000000000000000000000000000..5a05019d786529e0617291766c4fbe016ca01bf5 --- /dev/null +++ b/hyperparameter/m4/bayesnet/bayesnet-m4-20260504_205559/staged/public/train.csv @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:614ebfac5f41d6f661aff675fa18c0f933a8d9bcc77ea71b7b2360c2f0155837 +size 90069 diff --git a/hyperparameter/m4/bayesnet/bayesnet-m4-20260504_205559/staged/public/val.csv b/hyperparameter/m4/bayesnet/bayesnet-m4-20260504_205559/staged/public/val.csv new file mode 100644 index 0000000000000000000000000000000000000000..d78fe5ad1537c437ba9ac2629f2aa60a6c17e708 --- /dev/null +++ b/hyperparameter/m4/bayesnet/bayesnet-m4-20260504_205559/staged/public/val.csv @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:e55f5edbe7942ff01630de91a9c70dfbc6445eba76c7b970350364546b67c2d7 +size 11218 diff --git a/hyperparameter/m4/bayesnet/bayesnet-m4-20260504_205559/train_20260504_205559.log b/hyperparameter/m4/bayesnet/bayesnet-m4-20260504_205559/train_20260504_205559.log new file mode 100644 index 0000000000000000000000000000000000000000..a7c012b3fb51a8c33d8fa9012c9ae5964ca44a1e --- /dev/null +++ b/hyperparameter/m4/bayesnet/bayesnet-m4-20260504_205559/train_20260504_205559.log @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:c45adcabd4e5caa4a96c27f5fdae029bbf52024fe8d2b0738d84ef9be8d03d4a +size 3851 diff --git a/hyperparameter/m4/bayesnet/bayesnet-m4-20260504_205629/_bayesnet_generate.py b/hyperparameter/m4/bayesnet/bayesnet-m4-20260504_205629/_bayesnet_generate.py new file mode 100644 index 0000000000000000000000000000000000000000..ae4287a8b9e86f5a2e4a0415e77b2456ca76b202 --- /dev/null +++ b/hyperparameter/m4/bayesnet/bayesnet-m4-20260504_205629/_bayesnet_generate.py @@ -0,0 +1,105 @@ + +import pickle +import subprocess +import sys +import warnings + +import numpy as np +import pandas as pd +from pgmpy.sampling import BayesianModelSampling + +warnings.filterwarnings("ignore", category=FutureWarning) + +def _ensure_cloudpickle(): + try: + import cloudpickle # noqa: F401 + except ModuleNotFoundError: + subprocess.check_call( + [sys.executable, "-m", "pip", "install", "--quiet", "cloudpickle"], + ) + +_ensure_cloudpickle() + +with open("/work/output-Benchmark-trainonly-v1/m4/bayesnet/bayesnet-m4-20260504_205629/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(2217) +sampler = BayesianModelSampling(network) +raw = sampler.forward_sample(size=num_rows, show_progress=False) +raw = raw.reset_index(drop=True) +if len(raw) > num_rows: + raw = raw.iloc[:num_rows] +_tries = 0 +while len(raw) < num_rows and _tries < 64: + _tries += 1 + nextra = min(10000, num_rows - len(raw)) + more = sampler.forward_sample(size=max(nextra, 1), show_progress=False) + more = more.reset_index(drop=True) + if len(more) == 0: + break + raw = pd.concat([raw, more], ignore_index=True) + if len(raw) > num_rows: + raw = raw.iloc[:num_rows] + +out = pd.DataFrame(index=raw.index) +rng = np.random.default_rng() + +for c in cols: + if c in inverse["categorical"]: + levels = inverse["categorical"][c] + idx = raw[c].astype(int).to_numpy() + idx = np.clip(idx, 0, max(0, len(levels) - 1)) + out[c] = [levels[i] for i in idx] + else: + edges = np.asarray(inverse["continuous"][c], dtype=float) + if edges.size < 2: + out[c] = 0.0 + else: + nbin = edges.size - 1 + res = [] + for k in raw[c].astype(int).to_numpy(): + k = int(k) + if k < 0: + k = 0 + if k >= nbin: + k = nbin - 1 + lo, hi = float(edges[k]), float(edges[k + 1]) + if hi < lo: + lo, hi = hi, lo + v = rng.uniform(lo, hi) + if c in integer_columns: + v = int(round(v)) + res.append(v) + out[c] = res + +final = pd.DataFrame(index=out.index) +for c in full_order: + if c in const_cols: + final[c] = const_cols[c] + elif c in out.columns: + final[c] = out[c] + +dtypes = bundle.get("original_dtypes") or {} +for c, dts in dtypes.items(): + if c not in final.columns: + continue + try: + if "int" in dts: + final[c] = pd.to_numeric(final[c], errors="coerce").astype("Int64") + elif "float" in dts: + final[c] = pd.to_numeric(final[c], errors="coerce") + except Exception: + pass + +if len(final) != num_rows: + final = final.iloc[:num_rows].copy() +final = final.reset_index(drop=True) +final.to_csv("/work/output-Benchmark-trainonly-v1/m4/bayesnet/bayesnet-m4-20260504_205629/bayesnet-m4-2217-20260504_205636.csv", index=False) +print(f"[BayesNet] Generated {len(final)} rows (requested {num_rows}) -> /work/output-Benchmark-trainonly-v1/m4/bayesnet/bayesnet-m4-20260504_205629/bayesnet-m4-2217-20260504_205636.csv") diff --git a/hyperparameter/m4/bayesnet/bayesnet-m4-20260504_205629/_bayesnet_train.py b/hyperparameter/m4/bayesnet/bayesnet-m4-20260504_205629/_bayesnet_train.py new file mode 100644 index 0000000000000000000000000000000000000000..7b5793228015cf1a7056604d023ea6af3653b819 --- /dev/null +++ b/hyperparameter/m4/bayesnet/bayesnet-m4-20260504_205629/_bayesnet_train.py @@ -0,0 +1,146 @@ + +import json +import os +import pickle +import subprocess +import sys +import warnings + +import numpy as np +import pandas as pd +from pgmpy.estimators import TreeSearch +from pgmpy.models import DiscreteBayesianNetwork +warnings.filterwarnings("ignore", category=FutureWarning) + +def _ensure_cloudpickle(): + try: + import cloudpickle # noqa: F401 + except ModuleNotFoundError: + subprocess.check_call( + [sys.executable, "-m", "pip", "install", "--quiet", "cloudpickle"], + ) + +_ensure_cloudpickle() + +with open("/work/output-Benchmark-trainonly-v1/m4/bayesnet/bayesnet-m4-20260504_205629/bayesnet_coltypes.json", "r", encoding="utf-8") as _f: + colmeta = json.load(_f) +integer_columns = set(colmeta.get("integer_columns") or []) + +df = pd.read_csv("/work/output-Benchmark-trainonly-v1/m4/bayesnet/bayesnet-m4-20260504_205629/staged/public/train.csv") +df = df.dropna(axis=1, how="all") +full_column_order = list(df.columns) + +const_cols = {} +for col in list(df.columns): + if df[col].nunique(dropna=True) <= 1: + const_cols[col] = df[col].iloc[0] if len(df) > 0 else None + df = df.drop(columns=[col]) + print(f"[BayesNet] Dropped zero-variance column '{col}'") + +const_path = "/work/output-Benchmark-trainonly-v1/m4/bayesnet/bayesnet-m4-20260504_205629/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 = int(os.environ.get("BAYESNET_MAX_BINS", "0")) +max_cat_levels = int(os.environ.get("BAYESNET_MAX_CAT_LEVELS", "0")) +if max_bins <= 0: + max_bins = 10 +if max_cat_levels <= 0: + max_cat_levels = 256 +auto_caps = os.environ.get("BAYESNET_DISABLE_AUTO_CAPS", "0").strip().lower() not in ("1", "true", "yes") +if auto_caps and max_bins == 10 and max_cat_levels == 256: + if _n_plan > 35 or _n_samples > 200000: + max_bins = 5 + max_cat_levels = 64 + if _n_plan > 55: + max_bins = 4 + max_cat_levels = 32 +struct_rows = int(os.environ.get("BAYESNET_STRUCT_ROWS", "25000")) +fit_rows = int(os.environ.get("BAYESNET_FIT_ROWS", "120000")) +estimator_type = (os.environ.get("BAYESNET_ESTIMATOR_TYPE", "chow-liu") or "chow-liu").strip() +edge_weights_fn = (os.environ.get("BAYESNET_EDGE_WEIGHTS_FN", "mutual_info") or "mutual_info").strip() +root_node = (os.environ.get("BAYESNET_ROOT_NODE", "") or "").strip() or None +n_jobs = int(os.environ.get("BAYESNET_N_JOBS", "1")) +print( + f"[BayesNet] max_bins={max_bins}, max_cat_levels={max_cat_levels}, struct_rows={struct_rows}, fit_rows={fit_rows}, estimator_type={estimator_type}, edge_weights_fn={edge_weights_fn}, root_node={root_node}, n_jobs={n_jobs} " + f"(cols_in_df={_n_plan}, rows={_n_samples})" +) + +for entry in colmeta["columns"]: + name = entry["name"] + if name not in df.columns: + continue + kind = entry["type"] + s = df[name] + if kind == "categorical": + s2 = s.astype(str).fillna("__NA__") + counts = s2.value_counts(dropna=False) + if len(counts) > max_cat_levels: + keep = set(counts.index[: max_cat_levels - 1].tolist()) + s2 = s2.map(lambda x: x if x in keep else "__OTHER__") + uniques = sorted(s2.dropna().unique(), key=lambda x: str(x)) + mapping = {str(v): i for i, v in enumerate(uniques)} + inverse["categorical"][name] = [uniques[i] for i in range(len(uniques))] + enc[name] = s2.map(lambda x, m=mapping: m.get(str(x), 0)).astype(int) + else: + s_num = pd.to_numeric(s, errors="coerce") + nu = int(s_num.nunique(dropna=True)) + q = min(max_bins, max(2, nu)) + if nu < 2: + enc[name] = np.zeros(len(s_num), dtype=int) + lo, hi = float(s_num.min()), float(s_num.max()) + inverse["continuous"][name] = [lo, hi] + else: + try: + _, bins = pd.qcut( + s_num, q=q, retbins=True, duplicates="drop" + ) + except Exception: + med = float(s_num.median()) + s2 = s_num.fillna(med) + _, bins = pd.qcut( + s2, q=min(q, 3), retbins=True, duplicates="drop" + ) + bins = np.asarray(bins, dtype=float) + lab = pd.cut( + s_num, bins=bins, labels=False, include_lowest=True + ) + enc[name] = lab.fillna(0).astype(int) + inverse["continuous"][name] = bins.tolist() + +print(f"[BayesNet] Training on {len(enc)} rows, {len(enc.columns)} cols (encoded)") + +enc_struct = enc +if len(enc) > struct_rows: + enc_struct = enc.sample(n=struct_rows, random_state=0, replace=False) + print(f"[BayesNet] TreeSearch on {len(enc_struct)} rows (subsample; full n={len(enc)})") +dag = TreeSearch(enc_struct, root_node=root_node, n_jobs=n_jobs).estimate(estimator_type=estimator_type, edge_weights_fn=edge_weights_fn, show_progress=False) +for col in enc.columns: + if col not in dag.nodes(): + dag.add_node(col) + print(f"[BayesNet] Added isolated node to DAG: {col}") +network = DiscreteBayesianNetwork(dag) +enc_fit = enc +if len(enc) > fit_rows: + enc_fit = enc.sample(n=fit_rows, random_state=1, replace=False) + print(f"[BayesNet] fit() on {len(enc_fit)} rows (full n={len(enc)})") +network.fit(enc_fit) + +bundle = { + "network": network, + "inverse": inverse, + "column_order": list(enc.columns), + "full_column_order": full_column_order, + "integer_columns": list(integer_columns), + "original_dtypes": {c: str(df[c].dtype) for c in enc.columns}, + "const_cols": const_cols, +} +with open("/work/output-Benchmark-trainonly-v1/m4/bayesnet/bayesnet-m4-20260504_205629/bayesnet_model.pkl", "wb") as _f: + pickle.dump(bundle, _f) +print(f"[BayesNet] Model saved -> /work/output-Benchmark-trainonly-v1/m4/bayesnet/bayesnet-m4-20260504_205629/bayesnet_model.pkl") diff --git a/hyperparameter/m4/bayesnet/bayesnet-m4-20260504_205629/bayesnet-m4-2217-20260504_205636.csv b/hyperparameter/m4/bayesnet/bayesnet-m4-20260504_205629/bayesnet-m4-2217-20260504_205636.csv new file mode 100644 index 0000000000000000000000000000000000000000..a1b439c3183a1cb808a55618359db932b3e40522 --- /dev/null +++ b/hyperparameter/m4/bayesnet/bayesnet-m4-20260504_205629/bayesnet-m4-2217-20260504_205636.csv @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:cc9d211b795a6bd7032af7e12a7490994f9fcd9a3f7bef68aca63952bc710359 +size 207044 diff --git a/hyperparameter/m4/bayesnet/bayesnet-m4-20260504_205629/bayesnet_coltypes.json b/hyperparameter/m4/bayesnet/bayesnet-m4-20260504_205629/bayesnet_coltypes.json new file mode 100644 index 0000000000000000000000000000000000000000..295bb70445b63eea5719ae7c1f72bcdf61849c8d --- /dev/null +++ b/hyperparameter/m4/bayesnet/bayesnet-m4-20260504_205629/bayesnet_coltypes.json @@ -0,0 +1,33 @@ +{ + "columns": [ + { + "name": "age", + "type": "continuous" + }, + { + "name": "sex", + "type": "categorical" + }, + { + "name": "bmi", + "type": "continuous" + }, + { + "name": "children", + "type": "continuous" + }, + { + "name": "smoker", + "type": "categorical" + }, + { + "name": "region", + "type": "categorical" + }, + { + "name": "charges", + "type": "continuous" + } + ], + "integer_columns": [] +} \ No newline at end of file diff --git a/hyperparameter/m4/bayesnet/bayesnet-m4-20260504_205629/bayesnet_model.pkl b/hyperparameter/m4/bayesnet/bayesnet-m4-20260504_205629/bayesnet_model.pkl new file mode 100644 index 0000000000000000000000000000000000000000..279c544a228de35c86995bc924aeb3ce918bfc3b --- /dev/null +++ b/hyperparameter/m4/bayesnet/bayesnet-m4-20260504_205629/bayesnet_model.pkl @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:85b9ea706eb7d6e707bf6a8d121b9b09bc705dbdac97841bc5902237f6e6834b +size 4655 diff --git a/hyperparameter/m4/bayesnet/bayesnet-m4-20260504_205629/const_cols.json b/hyperparameter/m4/bayesnet/bayesnet-m4-20260504_205629/const_cols.json new file mode 100644 index 0000000000000000000000000000000000000000..9e26dfeeb6e641a33dae4961196235bdb965b21b --- /dev/null +++ b/hyperparameter/m4/bayesnet/bayesnet-m4-20260504_205629/const_cols.json @@ -0,0 +1 @@ +{} \ No newline at end of file diff --git a/hyperparameter/m4/bayesnet/bayesnet-m4-20260504_205629/gen_20260504_205636.log b/hyperparameter/m4/bayesnet/bayesnet-m4-20260504_205629/gen_20260504_205636.log new file mode 100644 index 0000000000000000000000000000000000000000..7e5a001681022b5f311225c7605665289181837e --- /dev/null +++ b/hyperparameter/m4/bayesnet/bayesnet-m4-20260504_205629/gen_20260504_205636.log @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:22c5f1bff719947d3866628bdbb7532c82c8e73de8c6a7d49a84e9382259fa0a +size 3661 diff --git a/hyperparameter/m4/bayesnet/bayesnet-m4-20260504_205629/input_snapshot.json b/hyperparameter/m4/bayesnet/bayesnet-m4-20260504_205629/input_snapshot.json new file mode 100644 index 0000000000000000000000000000000000000000..80a11fda595a83a7857ca988e84c480002e80ddc --- /dev/null +++ b/hyperparameter/m4/bayesnet/bayesnet-m4-20260504_205629/input_snapshot.json @@ -0,0 +1,36 @@ +{ + "dataset_id": "m4", + "model": "bayesnet", + "inputs": { + "train_csv": { + "path": "/data/jialinzhang/SynthesizePipeline-server/DatasetNew/m4/m4-train.csv", + "exists": true, + "size": 92191, + "sha256": "396b9d409ca21bf4a4cd329bdf5b7796aa0ae6356fa8d89b8eb669b5880b81f1" + }, + "val_csv": { + "path": "/data/jialinzhang/SynthesizePipeline-server/DatasetNew/m4/m4-val.csv", + "exists": true, + "size": 11482, + "sha256": "ee3c247d02f56e1687d03c381e13125d6a3a2a411ac7f202ba8520a4be9f1784" + }, + "test_csv": { + "path": "/data/jialinzhang/SynthesizePipeline-server/DatasetNew/m4/m4-test.csv", + "exists": true, + "size": 11559, + "sha256": "cadb9941124001b8fa7cb1ebae43b70a9ca56294f4df4d3c2f22c164c41757d4" + }, + "profile_json": { + "path": "/data/jialinzhang/SynthesizePipeline-server/DatasetNew/artifacts/data_core/tabular/m4/m4-dataset_profile.json", + "exists": true, + "size": 3336, + "sha256": "83e2764810e4a0e8cdece3a28dbd9134b7c9df6f2e56953e46d024ad2c4e035f" + }, + "contract_json": { + "path": "/data/jialinzhang/SynthesizePipeline-server/DatasetNew/artifacts/data_core/tabular/m4/m4-dataset_contract_v1.json", + "exists": true, + "size": 3810, + "sha256": "c23641b258629a845b164099bd0132886f8f6d0100e990494e0f92540f8987d9" + } + } +} \ No newline at end of file diff --git a/hyperparameter/m4/bayesnet/bayesnet-m4-20260504_205629/public_gate/normalized_schema_snapshot.json b/hyperparameter/m4/bayesnet/bayesnet-m4-20260504_205629/public_gate/normalized_schema_snapshot.json new file mode 100644 index 0000000000000000000000000000000000000000..31ed9818686b11907df75e872e4ffbe010330880 --- /dev/null +++ b/hyperparameter/m4/bayesnet/bayesnet-m4-20260504_205629/public_gate/normalized_schema_snapshot.json @@ -0,0 +1,147 @@ +{ + "dataset_id": "m4", + "target_column": "charges", + "task_type": "regression", + "columns": [ + { + "name": "age", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 47, + "unique_ratio": 0.0212, + "example_values": [ + "46", + "38", + "19", + "27", + "26" + ] + } + }, + { + "name": "sex", + "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.000902, + "example_values": [ + "female", + "male" + ] + } + }, + { + "name": "bmi", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 538, + "unique_ratio": 0.24267, + "example_values": [ + "23.655", + "19.3", + "30.59", + "32.67", + "29.45" + ] + } + }, + { + "name": "children", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 6, + "unique_ratio": 0.002706, + "example_values": [ + "1", + "0", + "3", + "2", + "5" + ] + } + }, + { + "name": "smoker", + "role": "feature", + "semantic_type": "boolean", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 2, + "unique_ratio": 0.000902, + "example_values": [ + "yes", + "no" + ] + } + }, + { + "name": "region", + "role": "feature", + "semantic_type": "categorical", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 4, + "unique_ratio": 0.001804, + "example_values": [ + "northwest", + "southwest", + "southeast", + "northeast" + ] + } + }, + { + "name": "charges", + "role": "target", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 1281, + "unique_ratio": 0.577808, + "example_values": [ + "21677.28345", + "15820.699", + "1639.5631", + "2497.0383", + "2897.3235" + ] + } + } + ] +} \ No newline at end of file diff --git a/hyperparameter/m4/bayesnet/bayesnet-m4-20260504_205629/public_gate/public_gate_report.json b/hyperparameter/m4/bayesnet/bayesnet-m4-20260504_205629/public_gate/public_gate_report.json new file mode 100644 index 0000000000000000000000000000000000000000..e7a25408e2574124629ea9437356551e4d6f4790 --- /dev/null +++ b/hyperparameter/m4/bayesnet/bayesnet-m4-20260504_205629/public_gate/public_gate_report.json @@ -0,0 +1,37 @@ +{ + "dataset_id": "m4", + "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": "charges", + "task_type": "regression", + "input_splits": { + "train": "/data/jialinzhang/SynthesizePipeline-server/DatasetNew/m4/m4-train.csv", + "val": "/data/jialinzhang/SynthesizePipeline-server/DatasetNew/m4/m4-val.csv", + "test": "/data/jialinzhang/SynthesizePipeline-server/DatasetNew/m4/m4-test.csv" + } +} \ No newline at end of file diff --git a/hyperparameter/m4/bayesnet/bayesnet-m4-20260504_205629/public_gate/staged_input_manifest.json b/hyperparameter/m4/bayesnet/bayesnet-m4-20260504_205629/public_gate/staged_input_manifest.json new file mode 100644 index 0000000000000000000000000000000000000000..39542a5c2cd3a702610efa658ab87549fa06964f --- /dev/null +++ b/hyperparameter/m4/bayesnet/bayesnet-m4-20260504_205629/public_gate/staged_input_manifest.json @@ -0,0 +1,152 @@ +{ + "dataset_id": "m4", + "target_column": "charges", + "task_type": "regression", + "train_csv": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/m4/bayesnet/bayesnet-m4-20260504_205629/staged/public/train.csv", + "val_csv": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/m4/bayesnet/bayesnet-m4-20260504_205629/staged/public/val.csv", + "test_csv": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/m4/bayesnet/bayesnet-m4-20260504_205629/staged/public/test.csv", + "features_json": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/m4/bayesnet/bayesnet-m4-20260504_205629/staged/public/staged_features.json", + "public_gate_report": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/m4/bayesnet/bayesnet-m4-20260504_205629/public_gate/public_gate_report.json", + "column_schema": [ + { + "name": "age", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 47, + "unique_ratio": 0.0212, + "example_values": [ + "46", + "38", + "19", + "27", + "26" + ] + } + }, + { + "name": "sex", + "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.000902, + "example_values": [ + "female", + "male" + ] + } + }, + { + "name": "bmi", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 538, + "unique_ratio": 0.24267, + "example_values": [ + "23.655", + "19.3", + "30.59", + "32.67", + "29.45" + ] + } + }, + { + "name": "children", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 6, + "unique_ratio": 0.002706, + "example_values": [ + "1", + "0", + "3", + "2", + "5" + ] + } + }, + { + "name": "smoker", + "role": "feature", + "semantic_type": "boolean", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 2, + "unique_ratio": 0.000902, + "example_values": [ + "yes", + "no" + ] + } + }, + { + "name": "region", + "role": "feature", + "semantic_type": "categorical", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 4, + "unique_ratio": 0.001804, + "example_values": [ + "northwest", + "southwest", + "southeast", + "northeast" + ] + } + }, + { + "name": "charges", + "role": "target", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 1281, + "unique_ratio": 0.577808, + "example_values": [ + "21677.28345", + "15820.699", + "1639.5631", + "2497.0383", + "2897.3235" + ] + } + } + ] +} \ No newline at end of file diff --git a/hyperparameter/m4/bayesnet/bayesnet-m4-20260504_205629/run_config.json b/hyperparameter/m4/bayesnet/bayesnet-m4-20260504_205629/run_config.json new file mode 100644 index 0000000000000000000000000000000000000000..a71111ead143f271c99eca8cf7b7ed6ef8c6e556 --- /dev/null +++ b/hyperparameter/m4/bayesnet/bayesnet-m4-20260504_205629/run_config.json @@ -0,0 +1,47 @@ +{ + "schema_version": 1, + "recorded_at": "2026-05-04T20:56:29", + "dataset_id": "m4", + "model": "bayesnet", + "work_dir": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/m4/bayesnet/bayesnet-m4-20260504_205629", + "dataset_source_requested": "new", + "dataset_source_resolved": "new", + "cli_args": { + "model": "bayesnet", + "dataset": "m4", + "dataset_source": "new", + "train": true, + "generate": true, + "num_rows": 0, + "epochs": null, + "output_dir": null, + "model_dir": null, + "work_dir": null, + "resume": false, + "no_stats": false + }, + "resolved": { + "num_rows": 2217, + "model_path": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/m4/bayesnet/bayesnet-m4-20260504_205629/bayesnet_model.pkl", + "output_csv": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/m4/bayesnet/bayesnet-m4-20260504_205629/bayesnet-m4-2217-20260504_205636.csv" + }, + "input_artifacts": { + "public_gate_report": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/m4/bayesnet/bayesnet-m4-20260504_205629/public_gate/public_gate_report.json", + "public_manifest": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/m4/bayesnet/bayesnet-m4-20260504_205629/public_gate/staged_input_manifest.json", + "model_manifest": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/m4/bayesnet/bayesnet-m4-20260504_205629/staged/bayesnet/model_input_manifest.json", + "train_csv": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/m4/bayesnet/bayesnet-m4-20260504_205629/staged/public/train.csv", + "features_json": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/m4/bayesnet/bayesnet-m4-20260504_205629/staged/public/staged_features.json", + "target_column": "charges", + "task_type": "regression" + }, + "env_overrides": { + "BAYESNET_DISABLE_AUTO_CAPS": "1", + "BAYESNET_EDGE_WEIGHTS_FN": "mutual_info", + "BAYESNET_ESTIMATOR_TYPE": "chow-liu", + "BAYESNET_FIT_ROWS": "80000", + "BAYESNET_MAX_BINS": "5", + "BAYESNET_MAX_CAT_LEVELS": "64", + "BAYESNET_N_JOBS": "1", + "BAYESNET_STRUCT_ROWS": "20000" + } +} \ No newline at end of file diff --git a/hyperparameter/m4/bayesnet/bayesnet-m4-20260504_205629/runtime_result.json b/hyperparameter/m4/bayesnet/bayesnet-m4-20260504_205629/runtime_result.json new file mode 100644 index 0000000000000000000000000000000000000000..35186937a3970e10a8339b8040b443307a8b1294 --- /dev/null +++ b/hyperparameter/m4/bayesnet/bayesnet-m4-20260504_205629/runtime_result.json @@ -0,0 +1,27 @@ +{ + "dataset_id": "m4", + "model": "bayesnet", + "run_id": "bayesnet-m4-20260504_205629", + "public_gate_status": "pass", + "adapter_ready_status": "pass", + "train_status": "success", + "generate_status": "success", + "reason_code": null, + "reason_detail": null, + "artifacts": { + "synthetic_csv": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/m4/bayesnet/bayesnet-m4-20260504_205629/bayesnet-m4-2217-20260504_205636.csv", + "model_path": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/m4/bayesnet/bayesnet-m4-20260504_205629/bayesnet_model.pkl" + }, + "timings": { + "train": { + "started_at": "2026-05-04T20:56:29", + "ended_at": "2026-05-04T20:56:36", + "duration_sec": 7.305 + }, + "generate": { + "started_at": "2026-05-04T20:56:36", + "ended_at": "2026-05-04T20:56:44", + "duration_sec": 7.95 + } + } +} \ No newline at end of file diff --git a/hyperparameter/m4/bayesnet/bayesnet-m4-20260504_205629/staged/bayesnet/adapter_report.json b/hyperparameter/m4/bayesnet/bayesnet-m4-20260504_205629/staged/bayesnet/adapter_report.json new file mode 100644 index 0000000000000000000000000000000000000000..7de59bafab49ea59eef870004a3f317f6b5d95bc --- /dev/null +++ b/hyperparameter/m4/bayesnet/bayesnet-m4-20260504_205629/staged/bayesnet/adapter_report.json @@ -0,0 +1,7 @@ +{ + "adapter_ready_status": "pass", + "adapter_fail_reason_code": null, + "adapter_fail_detail": null, + "adapter_transforms_applied": [], + "model_input_manifest": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/m4/bayesnet/bayesnet-m4-20260504_205629/staged/bayesnet/model_input_manifest.json" +} \ No newline at end of file diff --git a/hyperparameter/m4/bayesnet/bayesnet-m4-20260504_205629/staged/bayesnet/adapter_transforms_applied.json b/hyperparameter/m4/bayesnet/bayesnet-m4-20260504_205629/staged/bayesnet/adapter_transforms_applied.json new file mode 100644 index 0000000000000000000000000000000000000000..0637a088a01e8ddab3bf3fa98dbe804cbde1a0dc --- /dev/null +++ b/hyperparameter/m4/bayesnet/bayesnet-m4-20260504_205629/staged/bayesnet/adapter_transforms_applied.json @@ -0,0 +1 @@ +[] \ No newline at end of file diff --git a/hyperparameter/m4/bayesnet/bayesnet-m4-20260504_205629/staged/bayesnet/model_input_manifest.json b/hyperparameter/m4/bayesnet/bayesnet-m4-20260504_205629/staged/bayesnet/model_input_manifest.json new file mode 100644 index 0000000000000000000000000000000000000000..03cecbbf38848586c57c667a5518eb16f7988f2c --- /dev/null +++ b/hyperparameter/m4/bayesnet/bayesnet-m4-20260504_205629/staged/bayesnet/model_input_manifest.json @@ -0,0 +1,154 @@ +{ + "dataset_id": "m4", + "model": "bayesnet", + "target_column": "charges", + "task_type": "regression", + "column_schema": [ + { + "name": "age", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 47, + "unique_ratio": 0.0212, + "example_values": [ + "46", + "38", + "19", + "27", + "26" + ] + } + }, + { + "name": "sex", + "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.000902, + "example_values": [ + "female", + "male" + ] + } + }, + { + "name": "bmi", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 538, + "unique_ratio": 0.24267, + "example_values": [ + "23.655", + "19.3", + "30.59", + "32.67", + "29.45" + ] + } + }, + { + "name": "children", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 6, + "unique_ratio": 0.002706, + "example_values": [ + "1", + "0", + "3", + "2", + "5" + ] + } + }, + { + "name": "smoker", + "role": "feature", + "semantic_type": "boolean", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 2, + "unique_ratio": 0.000902, + "example_values": [ + "yes", + "no" + ] + } + }, + { + "name": "region", + "role": "feature", + "semantic_type": "categorical", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 4, + "unique_ratio": 0.001804, + "example_values": [ + "northwest", + "southwest", + "southeast", + "northeast" + ] + } + }, + { + "name": "charges", + "role": "target", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 1281, + "unique_ratio": 0.577808, + "example_values": [ + "21677.28345", + "15820.699", + "1639.5631", + "2497.0383", + "2897.3235" + ] + } + } + ], + "public_manifest": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/m4/bayesnet/bayesnet-m4-20260504_205629/public_gate/staged_input_manifest.json", + "train_csv": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/m4/bayesnet/bayesnet-m4-20260504_205629/staged/public/train.csv", + "val_csv": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/m4/bayesnet/bayesnet-m4-20260504_205629/staged/public/val.csv", + "test_csv": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/m4/bayesnet/bayesnet-m4-20260504_205629/staged/public/test.csv", + "features_json": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/m4/bayesnet/bayesnet-m4-20260504_205629/staged/public/staged_features.json", + "public_gate_report": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/m4/bayesnet/bayesnet-m4-20260504_205629/public_gate/public_gate_report.json" +} \ No newline at end of file diff --git a/hyperparameter/m4/bayesnet/bayesnet-m4-20260504_205629/staged/public/staged_features.json b/hyperparameter/m4/bayesnet/bayesnet-m4-20260504_205629/staged/public/staged_features.json new file mode 100644 index 0000000000000000000000000000000000000000..d6acd098c35111f423f3ffff2cfd1754bc5dfebc --- /dev/null +++ b/hyperparameter/m4/bayesnet/bayesnet-m4-20260504_205629/staged/public/staged_features.json @@ -0,0 +1,37 @@ +[ + { + "feature_name": "age", + "data_type": "continuous", + "is_target": false + }, + { + "feature_name": "sex", + "data_type": "categorical", + "is_target": false + }, + { + "feature_name": "bmi", + "data_type": "continuous", + "is_target": false + }, + { + "feature_name": "children", + "data_type": "continuous", + "is_target": false + }, + { + "feature_name": "smoker", + "data_type": "binary", + "is_target": false + }, + { + "feature_name": "region", + "data_type": "categorical", + "is_target": false + }, + { + "feature_name": "charges", + "data_type": "continuous", + "is_target": true + } +] \ No newline at end of file diff --git a/hyperparameter/m4/bayesnet/bayesnet-m4-20260504_205629/staged/public/test.csv b/hyperparameter/m4/bayesnet/bayesnet-m4-20260504_205629/staged/public/test.csv new file mode 100644 index 0000000000000000000000000000000000000000..c88a2e7cfcd715bb421cb56eb078033da45c4dc8 --- /dev/null +++ b/hyperparameter/m4/bayesnet/bayesnet-m4-20260504_205629/staged/public/test.csv @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:4c541b677fb2d45c5bc79338eeee9fd8c91484b195a0c2c546c2fbabf113b7ea +size 11298 diff --git a/hyperparameter/m4/bayesnet/bayesnet-m4-20260504_205629/staged/public/train.csv b/hyperparameter/m4/bayesnet/bayesnet-m4-20260504_205629/staged/public/train.csv new file mode 100644 index 0000000000000000000000000000000000000000..5a05019d786529e0617291766c4fbe016ca01bf5 --- /dev/null +++ b/hyperparameter/m4/bayesnet/bayesnet-m4-20260504_205629/staged/public/train.csv @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:614ebfac5f41d6f661aff675fa18c0f933a8d9bcc77ea71b7b2360c2f0155837 +size 90069 diff --git a/hyperparameter/m4/bayesnet/bayesnet-m4-20260504_205629/staged/public/val.csv b/hyperparameter/m4/bayesnet/bayesnet-m4-20260504_205629/staged/public/val.csv new file mode 100644 index 0000000000000000000000000000000000000000..d78fe5ad1537c437ba9ac2629f2aa60a6c17e708 --- /dev/null +++ b/hyperparameter/m4/bayesnet/bayesnet-m4-20260504_205629/staged/public/val.csv @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:e55f5edbe7942ff01630de91a9c70dfbc6445eba76c7b970350364546b67c2d7 +size 11218 diff --git a/hyperparameter/m4/bayesnet/bayesnet-m4-20260504_205629/train_20260504_205629.log b/hyperparameter/m4/bayesnet/bayesnet-m4-20260504_205629/train_20260504_205629.log new file mode 100644 index 0000000000000000000000000000000000000000..1bacfd2d5116cc3da2219cc0ef63627edb322abb --- /dev/null +++ b/hyperparameter/m4/bayesnet/bayesnet-m4-20260504_205629/train_20260504_205629.log @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:16676da7bfd4384fbd25b88bce18888b3b16cdb4fd7175725106d01d5eaa97d4 +size 3851 diff --git a/hyperparameter/m4/bayesnet/bayesnet-m4-20260504_205658/_bayesnet_generate.py b/hyperparameter/m4/bayesnet/bayesnet-m4-20260504_205658/_bayesnet_generate.py new file mode 100644 index 0000000000000000000000000000000000000000..9e34d4a2783460163ce53c62f68c0ef06071e75a --- /dev/null +++ b/hyperparameter/m4/bayesnet/bayesnet-m4-20260504_205658/_bayesnet_generate.py @@ -0,0 +1,105 @@ + +import pickle +import subprocess +import sys +import warnings + +import numpy as np +import pandas as pd +from pgmpy.sampling import BayesianModelSampling + +warnings.filterwarnings("ignore", category=FutureWarning) + +def _ensure_cloudpickle(): + try: + import cloudpickle # noqa: F401 + except ModuleNotFoundError: + subprocess.check_call( + [sys.executable, "-m", "pip", "install", "--quiet", "cloudpickle"], + ) + +_ensure_cloudpickle() + +with open("/work/output-Benchmark-trainonly-v1/m4/bayesnet/bayesnet-m4-20260504_205658/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(2217) +sampler = BayesianModelSampling(network) +raw = sampler.forward_sample(size=num_rows, show_progress=False) +raw = raw.reset_index(drop=True) +if len(raw) > num_rows: + raw = raw.iloc[:num_rows] +_tries = 0 +while len(raw) < num_rows and _tries < 64: + _tries += 1 + nextra = min(10000, num_rows - len(raw)) + more = sampler.forward_sample(size=max(nextra, 1), show_progress=False) + more = more.reset_index(drop=True) + if len(more) == 0: + break + raw = pd.concat([raw, more], ignore_index=True) + if len(raw) > num_rows: + raw = raw.iloc[:num_rows] + +out = pd.DataFrame(index=raw.index) +rng = np.random.default_rng() + +for c in cols: + if c in inverse["categorical"]: + levels = inverse["categorical"][c] + idx = raw[c].astype(int).to_numpy() + idx = np.clip(idx, 0, max(0, len(levels) - 1)) + out[c] = [levels[i] for i in idx] + else: + edges = np.asarray(inverse["continuous"][c], dtype=float) + if edges.size < 2: + out[c] = 0.0 + else: + nbin = edges.size - 1 + res = [] + for k in raw[c].astype(int).to_numpy(): + k = int(k) + if k < 0: + k = 0 + if k >= nbin: + k = nbin - 1 + lo, hi = float(edges[k]), float(edges[k + 1]) + if hi < lo: + lo, hi = hi, lo + v = rng.uniform(lo, hi) + if c in integer_columns: + v = int(round(v)) + res.append(v) + out[c] = res + +final = pd.DataFrame(index=out.index) +for c in full_order: + if c in const_cols: + final[c] = const_cols[c] + elif c in out.columns: + final[c] = out[c] + +dtypes = bundle.get("original_dtypes") or {} +for c, dts in dtypes.items(): + if c not in final.columns: + continue + try: + if "int" in dts: + final[c] = pd.to_numeric(final[c], errors="coerce").astype("Int64") + elif "float" in dts: + final[c] = pd.to_numeric(final[c], errors="coerce") + except Exception: + pass + +if len(final) != num_rows: + final = final.iloc[:num_rows].copy() +final = final.reset_index(drop=True) +final.to_csv("/work/output-Benchmark-trainonly-v1/m4/bayesnet/bayesnet-m4-20260504_205658/bayesnet-m4-2217-20260504_205706.csv", index=False) +print(f"[BayesNet] Generated {len(final)} rows (requested {num_rows}) -> /work/output-Benchmark-trainonly-v1/m4/bayesnet/bayesnet-m4-20260504_205658/bayesnet-m4-2217-20260504_205706.csv") diff --git a/hyperparameter/m4/bayesnet/bayesnet-m4-20260504_205658/_bayesnet_train.py b/hyperparameter/m4/bayesnet/bayesnet-m4-20260504_205658/_bayesnet_train.py new file mode 100644 index 0000000000000000000000000000000000000000..a1936af6fea5cfda05039b4180eb0078786bfe10 --- /dev/null +++ b/hyperparameter/m4/bayesnet/bayesnet-m4-20260504_205658/_bayesnet_train.py @@ -0,0 +1,146 @@ + +import json +import os +import pickle +import subprocess +import sys +import warnings + +import numpy as np +import pandas as pd +from pgmpy.estimators import TreeSearch +from pgmpy.models import DiscreteBayesianNetwork +warnings.filterwarnings("ignore", category=FutureWarning) + +def _ensure_cloudpickle(): + try: + import cloudpickle # noqa: F401 + except ModuleNotFoundError: + subprocess.check_call( + [sys.executable, "-m", "pip", "install", "--quiet", "cloudpickle"], + ) + +_ensure_cloudpickle() + +with open("/work/output-Benchmark-trainonly-v1/m4/bayesnet/bayesnet-m4-20260504_205658/bayesnet_coltypes.json", "r", encoding="utf-8") as _f: + colmeta = json.load(_f) +integer_columns = set(colmeta.get("integer_columns") or []) + +df = pd.read_csv("/work/output-Benchmark-trainonly-v1/m4/bayesnet/bayesnet-m4-20260504_205658/staged/public/train.csv") +df = df.dropna(axis=1, how="all") +full_column_order = list(df.columns) + +const_cols = {} +for col in list(df.columns): + if df[col].nunique(dropna=True) <= 1: + const_cols[col] = df[col].iloc[0] if len(df) > 0 else None + df = df.drop(columns=[col]) + print(f"[BayesNet] Dropped zero-variance column '{col}'") + +const_path = "/work/output-Benchmark-trainonly-v1/m4/bayesnet/bayesnet-m4-20260504_205658/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 = int(os.environ.get("BAYESNET_MAX_BINS", "0")) +max_cat_levels = int(os.environ.get("BAYESNET_MAX_CAT_LEVELS", "0")) +if max_bins <= 0: + max_bins = 10 +if max_cat_levels <= 0: + max_cat_levels = 256 +auto_caps = os.environ.get("BAYESNET_DISABLE_AUTO_CAPS", "0").strip().lower() not in ("1", "true", "yes") +if auto_caps and max_bins == 10 and max_cat_levels == 256: + if _n_plan > 35 or _n_samples > 200000: + max_bins = 5 + max_cat_levels = 64 + if _n_plan > 55: + max_bins = 4 + max_cat_levels = 32 +struct_rows = int(os.environ.get("BAYESNET_STRUCT_ROWS", "25000")) +fit_rows = int(os.environ.get("BAYESNET_FIT_ROWS", "120000")) +estimator_type = (os.environ.get("BAYESNET_ESTIMATOR_TYPE", "chow-liu") or "chow-liu").strip() +edge_weights_fn = (os.environ.get("BAYESNET_EDGE_WEIGHTS_FN", "mutual_info") or "mutual_info").strip() +root_node = (os.environ.get("BAYESNET_ROOT_NODE", "") or "").strip() or None +n_jobs = int(os.environ.get("BAYESNET_N_JOBS", "1")) +print( + f"[BayesNet] max_bins={max_bins}, max_cat_levels={max_cat_levels}, struct_rows={struct_rows}, fit_rows={fit_rows}, estimator_type={estimator_type}, edge_weights_fn={edge_weights_fn}, root_node={root_node}, n_jobs={n_jobs} " + f"(cols_in_df={_n_plan}, rows={_n_samples})" +) + +for entry in colmeta["columns"]: + name = entry["name"] + if name not in df.columns: + continue + kind = entry["type"] + s = df[name] + if kind == "categorical": + s2 = s.astype(str).fillna("__NA__") + counts = s2.value_counts(dropna=False) + if len(counts) > max_cat_levels: + keep = set(counts.index[: max_cat_levels - 1].tolist()) + s2 = s2.map(lambda x: x if x in keep else "__OTHER__") + uniques = sorted(s2.dropna().unique(), key=lambda x: str(x)) + mapping = {str(v): i for i, v in enumerate(uniques)} + inverse["categorical"][name] = [uniques[i] for i in range(len(uniques))] + enc[name] = s2.map(lambda x, m=mapping: m.get(str(x), 0)).astype(int) + else: + s_num = pd.to_numeric(s, errors="coerce") + nu = int(s_num.nunique(dropna=True)) + q = min(max_bins, max(2, nu)) + if nu < 2: + enc[name] = np.zeros(len(s_num), dtype=int) + lo, hi = float(s_num.min()), float(s_num.max()) + inverse["continuous"][name] = [lo, hi] + else: + try: + _, bins = pd.qcut( + s_num, q=q, retbins=True, duplicates="drop" + ) + except Exception: + med = float(s_num.median()) + s2 = s_num.fillna(med) + _, bins = pd.qcut( + s2, q=min(q, 3), retbins=True, duplicates="drop" + ) + bins = np.asarray(bins, dtype=float) + lab = pd.cut( + s_num, bins=bins, labels=False, include_lowest=True + ) + enc[name] = lab.fillna(0).astype(int) + inverse["continuous"][name] = bins.tolist() + +print(f"[BayesNet] Training on {len(enc)} rows, {len(enc.columns)} cols (encoded)") + +enc_struct = enc +if len(enc) > struct_rows: + enc_struct = enc.sample(n=struct_rows, random_state=0, replace=False) + print(f"[BayesNet] TreeSearch on {len(enc_struct)} rows (subsample; full n={len(enc)})") +dag = TreeSearch(enc_struct, root_node=root_node, n_jobs=n_jobs).estimate(estimator_type=estimator_type, edge_weights_fn=edge_weights_fn, show_progress=False) +for col in enc.columns: + if col not in dag.nodes(): + dag.add_node(col) + print(f"[BayesNet] Added isolated node to DAG: {col}") +network = DiscreteBayesianNetwork(dag) +enc_fit = enc +if len(enc) > fit_rows: + enc_fit = enc.sample(n=fit_rows, random_state=1, replace=False) + print(f"[BayesNet] fit() on {len(enc_fit)} rows (full n={len(enc)})") +network.fit(enc_fit) + +bundle = { + "network": network, + "inverse": inverse, + "column_order": list(enc.columns), + "full_column_order": full_column_order, + "integer_columns": list(integer_columns), + "original_dtypes": {c: str(df[c].dtype) for c in enc.columns}, + "const_cols": const_cols, +} +with open("/work/output-Benchmark-trainonly-v1/m4/bayesnet/bayesnet-m4-20260504_205658/bayesnet_model.pkl", "wb") as _f: + pickle.dump(bundle, _f) +print(f"[BayesNet] Model saved -> /work/output-Benchmark-trainonly-v1/m4/bayesnet/bayesnet-m4-20260504_205658/bayesnet_model.pkl") diff --git a/hyperparameter/m4/bayesnet/bayesnet-m4-20260504_205658/bayesnet-m4-2217-20260504_205706.csv b/hyperparameter/m4/bayesnet/bayesnet-m4-20260504_205658/bayesnet-m4-2217-20260504_205706.csv new file mode 100644 index 0000000000000000000000000000000000000000..6e177403c40369f7eae5c364123eafa70b11b285 --- /dev/null +++ b/hyperparameter/m4/bayesnet/bayesnet-m4-20260504_205658/bayesnet-m4-2217-20260504_205706.csv @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:051a3f1de1b35303b823ec33a0a8fa0fc357570ebeb3110a516996e23c669fc7 +size 207056 diff --git a/hyperparameter/m4/bayesnet/bayesnet-m4-20260504_205658/bayesnet_coltypes.json b/hyperparameter/m4/bayesnet/bayesnet-m4-20260504_205658/bayesnet_coltypes.json new file mode 100644 index 0000000000000000000000000000000000000000..295bb70445b63eea5719ae7c1f72bcdf61849c8d --- /dev/null +++ b/hyperparameter/m4/bayesnet/bayesnet-m4-20260504_205658/bayesnet_coltypes.json @@ -0,0 +1,33 @@ +{ + "columns": [ + { + "name": "age", + "type": "continuous" + }, + { + "name": "sex", + "type": "categorical" + }, + { + "name": "bmi", + "type": "continuous" + }, + { + "name": "children", + "type": "continuous" + }, + { + "name": "smoker", + "type": "categorical" + }, + { + "name": "region", + "type": "categorical" + }, + { + "name": "charges", + "type": "continuous" + } + ], + "integer_columns": [] +} \ No newline at end of file diff --git a/hyperparameter/m4/bayesnet/bayesnet-m4-20260504_205658/bayesnet_model.pkl b/hyperparameter/m4/bayesnet/bayesnet-m4-20260504_205658/bayesnet_model.pkl new file mode 100644 index 0000000000000000000000000000000000000000..129ec19fa36887418d8d1fa2a659a7facd9daf5a --- /dev/null +++ b/hyperparameter/m4/bayesnet/bayesnet-m4-20260504_205658/bayesnet_model.pkl @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:31322881b7c0265a1f6a7e0bc3773213e8d15790d091f376279098278f7c5a82 +size 6098 diff --git a/hyperparameter/m4/bayesnet/bayesnet-m4-20260504_205658/const_cols.json b/hyperparameter/m4/bayesnet/bayesnet-m4-20260504_205658/const_cols.json new file mode 100644 index 0000000000000000000000000000000000000000..9e26dfeeb6e641a33dae4961196235bdb965b21b --- /dev/null +++ b/hyperparameter/m4/bayesnet/bayesnet-m4-20260504_205658/const_cols.json @@ -0,0 +1 @@ +{} \ No newline at end of file diff --git a/hyperparameter/m4/bayesnet/bayesnet-m4-20260504_205658/gen_20260504_205706.log b/hyperparameter/m4/bayesnet/bayesnet-m4-20260504_205658/gen_20260504_205706.log new file mode 100644 index 0000000000000000000000000000000000000000..f4ce296a7371bd392c02647777f85912f02eff3c --- /dev/null +++ b/hyperparameter/m4/bayesnet/bayesnet-m4-20260504_205658/gen_20260504_205706.log @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:a718c10c0d013c4c0e5f1f0e3b302d7a19467a910cd1ffeddec8aa216bc3def5 +size 3661 diff --git a/hyperparameter/m4/bayesnet/bayesnet-m4-20260504_205658/input_snapshot.json b/hyperparameter/m4/bayesnet/bayesnet-m4-20260504_205658/input_snapshot.json new file mode 100644 index 0000000000000000000000000000000000000000..80a11fda595a83a7857ca988e84c480002e80ddc --- /dev/null +++ b/hyperparameter/m4/bayesnet/bayesnet-m4-20260504_205658/input_snapshot.json @@ -0,0 +1,36 @@ +{ + "dataset_id": "m4", + "model": "bayesnet", + "inputs": { + "train_csv": { + "path": "/data/jialinzhang/SynthesizePipeline-server/DatasetNew/m4/m4-train.csv", + "exists": true, + "size": 92191, + "sha256": "396b9d409ca21bf4a4cd329bdf5b7796aa0ae6356fa8d89b8eb669b5880b81f1" + }, + "val_csv": { + "path": "/data/jialinzhang/SynthesizePipeline-server/DatasetNew/m4/m4-val.csv", + "exists": true, + "size": 11482, + "sha256": "ee3c247d02f56e1687d03c381e13125d6a3a2a411ac7f202ba8520a4be9f1784" + }, + "test_csv": { + "path": "/data/jialinzhang/SynthesizePipeline-server/DatasetNew/m4/m4-test.csv", + "exists": true, + "size": 11559, + "sha256": "cadb9941124001b8fa7cb1ebae43b70a9ca56294f4df4d3c2f22c164c41757d4" + }, + "profile_json": { + "path": "/data/jialinzhang/SynthesizePipeline-server/DatasetNew/artifacts/data_core/tabular/m4/m4-dataset_profile.json", + "exists": true, + "size": 3336, + "sha256": "83e2764810e4a0e8cdece3a28dbd9134b7c9df6f2e56953e46d024ad2c4e035f" + }, + "contract_json": { + "path": "/data/jialinzhang/SynthesizePipeline-server/DatasetNew/artifacts/data_core/tabular/m4/m4-dataset_contract_v1.json", + "exists": true, + "size": 3810, + "sha256": "c23641b258629a845b164099bd0132886f8f6d0100e990494e0f92540f8987d9" + } + } +} \ No newline at end of file diff --git a/hyperparameter/m4/bayesnet/bayesnet-m4-20260504_205658/public_gate/normalized_schema_snapshot.json b/hyperparameter/m4/bayesnet/bayesnet-m4-20260504_205658/public_gate/normalized_schema_snapshot.json new file mode 100644 index 0000000000000000000000000000000000000000..31ed9818686b11907df75e872e4ffbe010330880 --- /dev/null +++ b/hyperparameter/m4/bayesnet/bayesnet-m4-20260504_205658/public_gate/normalized_schema_snapshot.json @@ -0,0 +1,147 @@ +{ + "dataset_id": "m4", + "target_column": "charges", + "task_type": "regression", + "columns": [ + { + "name": "age", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 47, + "unique_ratio": 0.0212, + "example_values": [ + "46", + "38", + "19", + "27", + "26" + ] + } + }, + { + "name": "sex", + "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.000902, + "example_values": [ + "female", + "male" + ] + } + }, + { + "name": "bmi", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 538, + "unique_ratio": 0.24267, + "example_values": [ + "23.655", + "19.3", + "30.59", + "32.67", + "29.45" + ] + } + }, + { + "name": "children", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 6, + "unique_ratio": 0.002706, + "example_values": [ + "1", + "0", + "3", + "2", + "5" + ] + } + }, + { + "name": "smoker", + "role": "feature", + "semantic_type": "boolean", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 2, + "unique_ratio": 0.000902, + "example_values": [ + "yes", + "no" + ] + } + }, + { + "name": "region", + "role": "feature", + "semantic_type": "categorical", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 4, + "unique_ratio": 0.001804, + "example_values": [ + "northwest", + "southwest", + "southeast", + "northeast" + ] + } + }, + { + "name": "charges", + "role": "target", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 1281, + "unique_ratio": 0.577808, + "example_values": [ + "21677.28345", + "15820.699", + "1639.5631", + "2497.0383", + "2897.3235" + ] + } + } + ] +} \ No newline at end of file diff --git a/hyperparameter/m4/bayesnet/bayesnet-m4-20260504_205658/public_gate/public_gate_report.json b/hyperparameter/m4/bayesnet/bayesnet-m4-20260504_205658/public_gate/public_gate_report.json new file mode 100644 index 0000000000000000000000000000000000000000..e7a25408e2574124629ea9437356551e4d6f4790 --- /dev/null +++ b/hyperparameter/m4/bayesnet/bayesnet-m4-20260504_205658/public_gate/public_gate_report.json @@ -0,0 +1,37 @@ +{ + "dataset_id": "m4", + "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": "charges", + "task_type": "regression", + "input_splits": { + "train": "/data/jialinzhang/SynthesizePipeline-server/DatasetNew/m4/m4-train.csv", + "val": "/data/jialinzhang/SynthesizePipeline-server/DatasetNew/m4/m4-val.csv", + "test": "/data/jialinzhang/SynthesizePipeline-server/DatasetNew/m4/m4-test.csv" + } +} \ No newline at end of file diff --git a/hyperparameter/m4/bayesnet/bayesnet-m4-20260504_205658/public_gate/staged_input_manifest.json b/hyperparameter/m4/bayesnet/bayesnet-m4-20260504_205658/public_gate/staged_input_manifest.json new file mode 100644 index 0000000000000000000000000000000000000000..ed37262f0a2c52da06a1a62bab91e6a74ac8178e --- /dev/null +++ b/hyperparameter/m4/bayesnet/bayesnet-m4-20260504_205658/public_gate/staged_input_manifest.json @@ -0,0 +1,152 @@ +{ + "dataset_id": "m4", + "target_column": "charges", + "task_type": "regression", + "train_csv": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/m4/bayesnet/bayesnet-m4-20260504_205658/staged/public/train.csv", + "val_csv": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/m4/bayesnet/bayesnet-m4-20260504_205658/staged/public/val.csv", + "test_csv": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/m4/bayesnet/bayesnet-m4-20260504_205658/staged/public/test.csv", + "features_json": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/m4/bayesnet/bayesnet-m4-20260504_205658/staged/public/staged_features.json", + "public_gate_report": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/m4/bayesnet/bayesnet-m4-20260504_205658/public_gate/public_gate_report.json", + "column_schema": [ + { + "name": "age", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 47, + "unique_ratio": 0.0212, + "example_values": [ + "46", + "38", + "19", + "27", + "26" + ] + } + }, + { + "name": "sex", + "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.000902, + "example_values": [ + "female", + "male" + ] + } + }, + { + "name": "bmi", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 538, + "unique_ratio": 0.24267, + "example_values": [ + "23.655", + "19.3", + "30.59", + "32.67", + "29.45" + ] + } + }, + { + "name": "children", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 6, + "unique_ratio": 0.002706, + "example_values": [ + "1", + "0", + "3", + "2", + "5" + ] + } + }, + { + "name": "smoker", + "role": "feature", + "semantic_type": "boolean", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 2, + "unique_ratio": 0.000902, + "example_values": [ + "yes", + "no" + ] + } + }, + { + "name": "region", + "role": "feature", + "semantic_type": "categorical", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 4, + "unique_ratio": 0.001804, + "example_values": [ + "northwest", + "southwest", + "southeast", + "northeast" + ] + } + }, + { + "name": "charges", + "role": "target", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 1281, + "unique_ratio": 0.577808, + "example_values": [ + "21677.28345", + "15820.699", + "1639.5631", + "2497.0383", + "2897.3235" + ] + } + } + ] +} \ No newline at end of file diff --git a/hyperparameter/m4/bayesnet/bayesnet-m4-20260504_205658/run_config.json b/hyperparameter/m4/bayesnet/bayesnet-m4-20260504_205658/run_config.json new file mode 100644 index 0000000000000000000000000000000000000000..4e7939aa7cf04a7aff9e9d6badc551af1e84cc7b --- /dev/null +++ b/hyperparameter/m4/bayesnet/bayesnet-m4-20260504_205658/run_config.json @@ -0,0 +1,47 @@ +{ + "schema_version": 1, + "recorded_at": "2026-05-04T20:56:58", + "dataset_id": "m4", + "model": "bayesnet", + "work_dir": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/m4/bayesnet/bayesnet-m4-20260504_205658", + "dataset_source_requested": "new", + "dataset_source_resolved": "new", + "cli_args": { + "model": "bayesnet", + "dataset": "m4", + "dataset_source": "new", + "train": true, + "generate": true, + "num_rows": 0, + "epochs": null, + "output_dir": null, + "model_dir": null, + "work_dir": null, + "resume": false, + "no_stats": false + }, + "resolved": { + "num_rows": 2217, + "model_path": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/m4/bayesnet/bayesnet-m4-20260504_205658/bayesnet_model.pkl", + "output_csv": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/m4/bayesnet/bayesnet-m4-20260504_205658/bayesnet-m4-2217-20260504_205706.csv" + }, + "input_artifacts": { + "public_gate_report": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/m4/bayesnet/bayesnet-m4-20260504_205658/public_gate/public_gate_report.json", + "public_manifest": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/m4/bayesnet/bayesnet-m4-20260504_205658/public_gate/staged_input_manifest.json", + "model_manifest": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/m4/bayesnet/bayesnet-m4-20260504_205658/staged/bayesnet/model_input_manifest.json", + "train_csv": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/m4/bayesnet/bayesnet-m4-20260504_205658/staged/public/train.csv", + "features_json": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/m4/bayesnet/bayesnet-m4-20260504_205658/staged/public/staged_features.json", + "target_column": "charges", + "task_type": "regression" + }, + "env_overrides": { + "BAYESNET_DISABLE_AUTO_CAPS": "1", + "BAYESNET_EDGE_WEIGHTS_FN": "mutual_info", + "BAYESNET_ESTIMATOR_TYPE": "chow-liu", + "BAYESNET_FIT_ROWS": "120000", + "BAYESNET_MAX_BINS": "8", + "BAYESNET_MAX_CAT_LEVELS": "128", + "BAYESNET_N_JOBS": "1", + "BAYESNET_STRUCT_ROWS": "25000" + } +} \ No newline at end of file diff --git a/hyperparameter/m4/bayesnet/bayesnet-m4-20260504_205658/runtime_result.json b/hyperparameter/m4/bayesnet/bayesnet-m4-20260504_205658/runtime_result.json new file mode 100644 index 0000000000000000000000000000000000000000..0350216edeea111c12c64ec31595d2ffddf46886 --- /dev/null +++ b/hyperparameter/m4/bayesnet/bayesnet-m4-20260504_205658/runtime_result.json @@ -0,0 +1,27 @@ +{ + "dataset_id": "m4", + "model": "bayesnet", + "run_id": "bayesnet-m4-20260504_205658", + "public_gate_status": "pass", + "adapter_ready_status": "pass", + "train_status": "success", + "generate_status": "success", + "reason_code": null, + "reason_detail": null, + "artifacts": { + "synthetic_csv": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/m4/bayesnet/bayesnet-m4-20260504_205658/bayesnet-m4-2217-20260504_205706.csv", + "model_path": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/m4/bayesnet/bayesnet-m4-20260504_205658/bayesnet_model.pkl" + }, + "timings": { + "train": { + "started_at": "2026-05-04T20:56:58", + "ended_at": "2026-05-04T20:57:06", + "duration_sec": 7.918 + }, + "generate": { + "started_at": "2026-05-04T20:57:06", + "ended_at": "2026-05-04T20:57:13", + "duration_sec": 7.565 + } + } +} \ No newline at end of file diff --git a/hyperparameter/m4/bayesnet/bayesnet-m4-20260504_205658/staged/bayesnet/adapter_report.json b/hyperparameter/m4/bayesnet/bayesnet-m4-20260504_205658/staged/bayesnet/adapter_report.json new file mode 100644 index 0000000000000000000000000000000000000000..36f1fafd27243251a77acd81e74802d020d278c4 --- /dev/null +++ b/hyperparameter/m4/bayesnet/bayesnet-m4-20260504_205658/staged/bayesnet/adapter_report.json @@ -0,0 +1,7 @@ +{ + "adapter_ready_status": "pass", + "adapter_fail_reason_code": null, + "adapter_fail_detail": null, + "adapter_transforms_applied": [], + "model_input_manifest": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/m4/bayesnet/bayesnet-m4-20260504_205658/staged/bayesnet/model_input_manifest.json" +} \ No newline at end of file diff --git a/hyperparameter/m4/bayesnet/bayesnet-m4-20260504_205658/staged/bayesnet/adapter_transforms_applied.json b/hyperparameter/m4/bayesnet/bayesnet-m4-20260504_205658/staged/bayesnet/adapter_transforms_applied.json new file mode 100644 index 0000000000000000000000000000000000000000..0637a088a01e8ddab3bf3fa98dbe804cbde1a0dc --- /dev/null +++ b/hyperparameter/m4/bayesnet/bayesnet-m4-20260504_205658/staged/bayesnet/adapter_transforms_applied.json @@ -0,0 +1 @@ +[] \ No newline at end of file diff --git a/hyperparameter/m4/bayesnet/bayesnet-m4-20260504_205658/staged/bayesnet/model_input_manifest.json b/hyperparameter/m4/bayesnet/bayesnet-m4-20260504_205658/staged/bayesnet/model_input_manifest.json new file mode 100644 index 0000000000000000000000000000000000000000..b93ba544cb55d97c9e0519f050dead76f5ebfc73 --- /dev/null +++ b/hyperparameter/m4/bayesnet/bayesnet-m4-20260504_205658/staged/bayesnet/model_input_manifest.json @@ -0,0 +1,154 @@ +{ + "dataset_id": "m4", + "model": "bayesnet", + "target_column": "charges", + "task_type": "regression", + "column_schema": [ + { + "name": "age", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 47, + "unique_ratio": 0.0212, + "example_values": [ + "46", + "38", + "19", + "27", + "26" + ] + } + }, + { + "name": "sex", + "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.000902, + "example_values": [ + "female", + "male" + ] + } + }, + { + "name": "bmi", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 538, + "unique_ratio": 0.24267, + "example_values": [ + "23.655", + "19.3", + "30.59", + "32.67", + "29.45" + ] + } + }, + { + "name": "children", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 6, + "unique_ratio": 0.002706, + "example_values": [ + "1", + "0", + "3", + "2", + "5" + ] + } + }, + { + "name": "smoker", + "role": "feature", + "semantic_type": "boolean", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 2, + "unique_ratio": 0.000902, + "example_values": [ + "yes", + "no" + ] + } + }, + { + "name": "region", + "role": "feature", + "semantic_type": "categorical", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 4, + "unique_ratio": 0.001804, + "example_values": [ + "northwest", + "southwest", + "southeast", + "northeast" + ] + } + }, + { + "name": "charges", + "role": "target", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 1281, + "unique_ratio": 0.577808, + "example_values": [ + "21677.28345", + "15820.699", + "1639.5631", + "2497.0383", + "2897.3235" + ] + } + } + ], + "public_manifest": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/m4/bayesnet/bayesnet-m4-20260504_205658/public_gate/staged_input_manifest.json", + "train_csv": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/m4/bayesnet/bayesnet-m4-20260504_205658/staged/public/train.csv", + "val_csv": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/m4/bayesnet/bayesnet-m4-20260504_205658/staged/public/val.csv", + "test_csv": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/m4/bayesnet/bayesnet-m4-20260504_205658/staged/public/test.csv", + "features_json": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/m4/bayesnet/bayesnet-m4-20260504_205658/staged/public/staged_features.json", + "public_gate_report": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/m4/bayesnet/bayesnet-m4-20260504_205658/public_gate/public_gate_report.json" +} \ No newline at end of file diff --git a/hyperparameter/m4/bayesnet/bayesnet-m4-20260504_205658/staged/public/staged_features.json b/hyperparameter/m4/bayesnet/bayesnet-m4-20260504_205658/staged/public/staged_features.json new file mode 100644 index 0000000000000000000000000000000000000000..d6acd098c35111f423f3ffff2cfd1754bc5dfebc --- /dev/null +++ b/hyperparameter/m4/bayesnet/bayesnet-m4-20260504_205658/staged/public/staged_features.json @@ -0,0 +1,37 @@ +[ + { + "feature_name": "age", + "data_type": "continuous", + "is_target": false + }, + { + "feature_name": "sex", + "data_type": "categorical", + "is_target": false + }, + { + "feature_name": "bmi", + "data_type": "continuous", + "is_target": false + }, + { + "feature_name": "children", + "data_type": "continuous", + "is_target": false + }, + { + "feature_name": "smoker", + "data_type": "binary", + "is_target": false + }, + { + "feature_name": "region", + "data_type": "categorical", + "is_target": false + }, + { + "feature_name": "charges", + "data_type": "continuous", + "is_target": true + } +] \ No newline at end of file diff --git a/hyperparameter/m4/bayesnet/bayesnet-m4-20260504_205658/staged/public/test.csv b/hyperparameter/m4/bayesnet/bayesnet-m4-20260504_205658/staged/public/test.csv new file mode 100644 index 0000000000000000000000000000000000000000..c88a2e7cfcd715bb421cb56eb078033da45c4dc8 --- /dev/null +++ b/hyperparameter/m4/bayesnet/bayesnet-m4-20260504_205658/staged/public/test.csv @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:4c541b677fb2d45c5bc79338eeee9fd8c91484b195a0c2c546c2fbabf113b7ea +size 11298 diff --git a/hyperparameter/m4/bayesnet/bayesnet-m4-20260504_205658/staged/public/train.csv b/hyperparameter/m4/bayesnet/bayesnet-m4-20260504_205658/staged/public/train.csv new file mode 100644 index 0000000000000000000000000000000000000000..5a05019d786529e0617291766c4fbe016ca01bf5 --- /dev/null +++ b/hyperparameter/m4/bayesnet/bayesnet-m4-20260504_205658/staged/public/train.csv @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:614ebfac5f41d6f661aff675fa18c0f933a8d9bcc77ea71b7b2360c2f0155837 +size 90069 diff --git a/hyperparameter/m4/bayesnet/bayesnet-m4-20260504_205658/staged/public/val.csv b/hyperparameter/m4/bayesnet/bayesnet-m4-20260504_205658/staged/public/val.csv new file mode 100644 index 0000000000000000000000000000000000000000..d78fe5ad1537c437ba9ac2629f2aa60a6c17e708 --- /dev/null +++ b/hyperparameter/m4/bayesnet/bayesnet-m4-20260504_205658/staged/public/val.csv @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:e55f5edbe7942ff01630de91a9c70dfbc6445eba76c7b970350364546b67c2d7 +size 11218 diff --git a/hyperparameter/m4/bayesnet/bayesnet-m4-20260504_205658/train_20260504_205658.log b/hyperparameter/m4/bayesnet/bayesnet-m4-20260504_205658/train_20260504_205658.log new file mode 100644 index 0000000000000000000000000000000000000000..6e877a4040799b7586d1540618c07749363bd3e8 --- /dev/null +++ b/hyperparameter/m4/bayesnet/bayesnet-m4-20260504_205658/train_20260504_205658.log @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:842cc7eedb2f4376cb9f041fbc400a2163718f8b1cf65f0489063dba6c7c33e2 +size 3853 diff --git a/hyperparameter/m4/bayesnet/bayesnet-m4-20260504_205727/_bayesnet_generate.py b/hyperparameter/m4/bayesnet/bayesnet-m4-20260504_205727/_bayesnet_generate.py new file mode 100644 index 0000000000000000000000000000000000000000..71e7485e66b732e9ed2d6084e61f072cea5b2049 --- /dev/null +++ b/hyperparameter/m4/bayesnet/bayesnet-m4-20260504_205727/_bayesnet_generate.py @@ -0,0 +1,105 @@ + +import pickle +import subprocess +import sys +import warnings + +import numpy as np +import pandas as pd +from pgmpy.sampling import BayesianModelSampling + +warnings.filterwarnings("ignore", category=FutureWarning) + +def _ensure_cloudpickle(): + try: + import cloudpickle # noqa: F401 + except ModuleNotFoundError: + subprocess.check_call( + [sys.executable, "-m", "pip", "install", "--quiet", "cloudpickle"], + ) + +_ensure_cloudpickle() + +with open("/work/output-Benchmark-trainonly-v1/m4/bayesnet/bayesnet-m4-20260504_205727/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(2217) +sampler = BayesianModelSampling(network) +raw = sampler.forward_sample(size=num_rows, show_progress=False) +raw = raw.reset_index(drop=True) +if len(raw) > num_rows: + raw = raw.iloc[:num_rows] +_tries = 0 +while len(raw) < num_rows and _tries < 64: + _tries += 1 + nextra = min(10000, num_rows - len(raw)) + more = sampler.forward_sample(size=max(nextra, 1), show_progress=False) + more = more.reset_index(drop=True) + if len(more) == 0: + break + raw = pd.concat([raw, more], ignore_index=True) + if len(raw) > num_rows: + raw = raw.iloc[:num_rows] + +out = pd.DataFrame(index=raw.index) +rng = np.random.default_rng() + +for c in cols: + if c in inverse["categorical"]: + levels = inverse["categorical"][c] + idx = raw[c].astype(int).to_numpy() + idx = np.clip(idx, 0, max(0, len(levels) - 1)) + out[c] = [levels[i] for i in idx] + else: + edges = np.asarray(inverse["continuous"][c], dtype=float) + if edges.size < 2: + out[c] = 0.0 + else: + nbin = edges.size - 1 + res = [] + for k in raw[c].astype(int).to_numpy(): + k = int(k) + if k < 0: + k = 0 + if k >= nbin: + k = nbin - 1 + lo, hi = float(edges[k]), float(edges[k + 1]) + if hi < lo: + lo, hi = hi, lo + v = rng.uniform(lo, hi) + if c in integer_columns: + v = int(round(v)) + res.append(v) + out[c] = res + +final = pd.DataFrame(index=out.index) +for c in full_order: + if c in const_cols: + final[c] = const_cols[c] + elif c in out.columns: + final[c] = out[c] + +dtypes = bundle.get("original_dtypes") or {} +for c, dts in dtypes.items(): + if c not in final.columns: + continue + try: + if "int" in dts: + final[c] = pd.to_numeric(final[c], errors="coerce").astype("Int64") + elif "float" in dts: + final[c] = pd.to_numeric(final[c], errors="coerce") + except Exception: + pass + +if len(final) != num_rows: + final = final.iloc[:num_rows].copy() +final = final.reset_index(drop=True) +final.to_csv("/work/output-Benchmark-trainonly-v1/m4/bayesnet/bayesnet-m4-20260504_205727/bayesnet-m4-2217-20260504_205735.csv", index=False) +print(f"[BayesNet] Generated {len(final)} rows (requested {num_rows}) -> /work/output-Benchmark-trainonly-v1/m4/bayesnet/bayesnet-m4-20260504_205727/bayesnet-m4-2217-20260504_205735.csv") diff --git a/hyperparameter/m4/bayesnet/bayesnet-m4-20260504_205727/_bayesnet_train.py b/hyperparameter/m4/bayesnet/bayesnet-m4-20260504_205727/_bayesnet_train.py new file mode 100644 index 0000000000000000000000000000000000000000..fa2f6896ca8c945632e960f4aee83dbce46e1274 --- /dev/null +++ b/hyperparameter/m4/bayesnet/bayesnet-m4-20260504_205727/_bayesnet_train.py @@ -0,0 +1,146 @@ + +import json +import os +import pickle +import subprocess +import sys +import warnings + +import numpy as np +import pandas as pd +from pgmpy.estimators import TreeSearch +from pgmpy.models import DiscreteBayesianNetwork +warnings.filterwarnings("ignore", category=FutureWarning) + +def _ensure_cloudpickle(): + try: + import cloudpickle # noqa: F401 + except ModuleNotFoundError: + subprocess.check_call( + [sys.executable, "-m", "pip", "install", "--quiet", "cloudpickle"], + ) + +_ensure_cloudpickle() + +with open("/work/output-Benchmark-trainonly-v1/m4/bayesnet/bayesnet-m4-20260504_205727/bayesnet_coltypes.json", "r", encoding="utf-8") as _f: + colmeta = json.load(_f) +integer_columns = set(colmeta.get("integer_columns") or []) + +df = pd.read_csv("/work/output-Benchmark-trainonly-v1/m4/bayesnet/bayesnet-m4-20260504_205727/staged/public/train.csv") +df = df.dropna(axis=1, how="all") +full_column_order = list(df.columns) + +const_cols = {} +for col in list(df.columns): + if df[col].nunique(dropna=True) <= 1: + const_cols[col] = df[col].iloc[0] if len(df) > 0 else None + df = df.drop(columns=[col]) + print(f"[BayesNet] Dropped zero-variance column '{col}'") + +const_path = "/work/output-Benchmark-trainonly-v1/m4/bayesnet/bayesnet-m4-20260504_205727/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 = int(os.environ.get("BAYESNET_MAX_BINS", "0")) +max_cat_levels = int(os.environ.get("BAYESNET_MAX_CAT_LEVELS", "0")) +if max_bins <= 0: + max_bins = 10 +if max_cat_levels <= 0: + max_cat_levels = 256 +auto_caps = os.environ.get("BAYESNET_DISABLE_AUTO_CAPS", "0").strip().lower() not in ("1", "true", "yes") +if auto_caps and max_bins == 10 and max_cat_levels == 256: + if _n_plan > 35 or _n_samples > 200000: + max_bins = 5 + max_cat_levels = 64 + if _n_plan > 55: + max_bins = 4 + max_cat_levels = 32 +struct_rows = int(os.environ.get("BAYESNET_STRUCT_ROWS", "25000")) +fit_rows = int(os.environ.get("BAYESNET_FIT_ROWS", "120000")) +estimator_type = (os.environ.get("BAYESNET_ESTIMATOR_TYPE", "chow-liu") or "chow-liu").strip() +edge_weights_fn = (os.environ.get("BAYESNET_EDGE_WEIGHTS_FN", "mutual_info") or "mutual_info").strip() +root_node = (os.environ.get("BAYESNET_ROOT_NODE", "") or "").strip() or None +n_jobs = int(os.environ.get("BAYESNET_N_JOBS", "1")) +print( + f"[BayesNet] max_bins={max_bins}, max_cat_levels={max_cat_levels}, struct_rows={struct_rows}, fit_rows={fit_rows}, estimator_type={estimator_type}, edge_weights_fn={edge_weights_fn}, root_node={root_node}, n_jobs={n_jobs} " + f"(cols_in_df={_n_plan}, rows={_n_samples})" +) + +for entry in colmeta["columns"]: + name = entry["name"] + if name not in df.columns: + continue + kind = entry["type"] + s = df[name] + if kind == "categorical": + s2 = s.astype(str).fillna("__NA__") + counts = s2.value_counts(dropna=False) + if len(counts) > max_cat_levels: + keep = set(counts.index[: max_cat_levels - 1].tolist()) + s2 = s2.map(lambda x: x if x in keep else "__OTHER__") + uniques = sorted(s2.dropna().unique(), key=lambda x: str(x)) + mapping = {str(v): i for i, v in enumerate(uniques)} + inverse["categorical"][name] = [uniques[i] for i in range(len(uniques))] + enc[name] = s2.map(lambda x, m=mapping: m.get(str(x), 0)).astype(int) + else: + s_num = pd.to_numeric(s, errors="coerce") + nu = int(s_num.nunique(dropna=True)) + q = min(max_bins, max(2, nu)) + if nu < 2: + enc[name] = np.zeros(len(s_num), dtype=int) + lo, hi = float(s_num.min()), float(s_num.max()) + inverse["continuous"][name] = [lo, hi] + else: + try: + _, bins = pd.qcut( + s_num, q=q, retbins=True, duplicates="drop" + ) + except Exception: + med = float(s_num.median()) + s2 = s_num.fillna(med) + _, bins = pd.qcut( + s2, q=min(q, 3), retbins=True, duplicates="drop" + ) + bins = np.asarray(bins, dtype=float) + lab = pd.cut( + s_num, bins=bins, labels=False, include_lowest=True + ) + enc[name] = lab.fillna(0).astype(int) + inverse["continuous"][name] = bins.tolist() + +print(f"[BayesNet] Training on {len(enc)} rows, {len(enc.columns)} cols (encoded)") + +enc_struct = enc +if len(enc) > struct_rows: + enc_struct = enc.sample(n=struct_rows, random_state=0, replace=False) + print(f"[BayesNet] TreeSearch on {len(enc_struct)} rows (subsample; full n={len(enc)})") +dag = TreeSearch(enc_struct, root_node=root_node, n_jobs=n_jobs).estimate(estimator_type=estimator_type, edge_weights_fn=edge_weights_fn, show_progress=False) +for col in enc.columns: + if col not in dag.nodes(): + dag.add_node(col) + print(f"[BayesNet] Added isolated node to DAG: {col}") +network = DiscreteBayesianNetwork(dag) +enc_fit = enc +if len(enc) > fit_rows: + enc_fit = enc.sample(n=fit_rows, random_state=1, replace=False) + print(f"[BayesNet] fit() on {len(enc_fit)} rows (full n={len(enc)})") +network.fit(enc_fit) + +bundle = { + "network": network, + "inverse": inverse, + "column_order": list(enc.columns), + "full_column_order": full_column_order, + "integer_columns": list(integer_columns), + "original_dtypes": {c: str(df[c].dtype) for c in enc.columns}, + "const_cols": const_cols, +} +with open("/work/output-Benchmark-trainonly-v1/m4/bayesnet/bayesnet-m4-20260504_205727/bayesnet_model.pkl", "wb") as _f: + pickle.dump(bundle, _f) +print(f"[BayesNet] Model saved -> /work/output-Benchmark-trainonly-v1/m4/bayesnet/bayesnet-m4-20260504_205727/bayesnet_model.pkl") diff --git a/hyperparameter/m4/bayesnet/bayesnet-m4-20260504_205727/bayesnet-m4-2217-20260504_205735.csv b/hyperparameter/m4/bayesnet/bayesnet-m4-20260504_205727/bayesnet-m4-2217-20260504_205735.csv new file mode 100644 index 0000000000000000000000000000000000000000..2270da63d9e6ee65aebccfe199387355254c39fa --- /dev/null +++ b/hyperparameter/m4/bayesnet/bayesnet-m4-20260504_205727/bayesnet-m4-2217-20260504_205735.csv @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:a81b9d6efb8599576ceb153a27c73d0285f4e47e5d7b2c7550e957aabbf0e703 +size 207113 diff --git a/hyperparameter/m4/bayesnet/bayesnet-m4-20260504_205727/bayesnet_coltypes.json b/hyperparameter/m4/bayesnet/bayesnet-m4-20260504_205727/bayesnet_coltypes.json new file mode 100644 index 0000000000000000000000000000000000000000..295bb70445b63eea5719ae7c1f72bcdf61849c8d --- /dev/null +++ b/hyperparameter/m4/bayesnet/bayesnet-m4-20260504_205727/bayesnet_coltypes.json @@ -0,0 +1,33 @@ +{ + "columns": [ + { + "name": "age", + "type": "continuous" + }, + { + "name": "sex", + "type": "categorical" + }, + { + "name": "bmi", + "type": "continuous" + }, + { + "name": "children", + "type": "continuous" + }, + { + "name": "smoker", + "type": "categorical" + }, + { + "name": "region", + "type": "categorical" + }, + { + "name": "charges", + "type": "continuous" + } + ], + "integer_columns": [] +} \ No newline at end of file diff --git a/hyperparameter/m4/bayesnet/bayesnet-m4-20260504_205727/bayesnet_model.pkl b/hyperparameter/m4/bayesnet/bayesnet-m4-20260504_205727/bayesnet_model.pkl new file mode 100644 index 0000000000000000000000000000000000000000..129ec19fa36887418d8d1fa2a659a7facd9daf5a --- /dev/null +++ b/hyperparameter/m4/bayesnet/bayesnet-m4-20260504_205727/bayesnet_model.pkl @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:31322881b7c0265a1f6a7e0bc3773213e8d15790d091f376279098278f7c5a82 +size 6098 diff --git a/hyperparameter/m4/bayesnet/bayesnet-m4-20260504_205727/const_cols.json b/hyperparameter/m4/bayesnet/bayesnet-m4-20260504_205727/const_cols.json new file mode 100644 index 0000000000000000000000000000000000000000..9e26dfeeb6e641a33dae4961196235bdb965b21b --- /dev/null +++ b/hyperparameter/m4/bayesnet/bayesnet-m4-20260504_205727/const_cols.json @@ -0,0 +1 @@ +{} \ No newline at end of file diff --git a/hyperparameter/m4/bayesnet/bayesnet-m4-20260504_205727/gen_20260504_205735.log b/hyperparameter/m4/bayesnet/bayesnet-m4-20260504_205727/gen_20260504_205735.log new file mode 100644 index 0000000000000000000000000000000000000000..dda98367c8f277a845dc7afa64c78db7693c5a57 --- /dev/null +++ b/hyperparameter/m4/bayesnet/bayesnet-m4-20260504_205727/gen_20260504_205735.log @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:c3af3cc3154bf64b37b920b84a86c5772af0f2eff01ddd18e84c87448dd4736c +size 3661 diff --git a/hyperparameter/m4/bayesnet/bayesnet-m4-20260504_205727/input_snapshot.json b/hyperparameter/m4/bayesnet/bayesnet-m4-20260504_205727/input_snapshot.json new file mode 100644 index 0000000000000000000000000000000000000000..80a11fda595a83a7857ca988e84c480002e80ddc --- /dev/null +++ b/hyperparameter/m4/bayesnet/bayesnet-m4-20260504_205727/input_snapshot.json @@ -0,0 +1,36 @@ +{ + "dataset_id": "m4", + "model": "bayesnet", + "inputs": { + "train_csv": { + "path": "/data/jialinzhang/SynthesizePipeline-server/DatasetNew/m4/m4-train.csv", + "exists": true, + "size": 92191, + "sha256": "396b9d409ca21bf4a4cd329bdf5b7796aa0ae6356fa8d89b8eb669b5880b81f1" + }, + "val_csv": { + "path": "/data/jialinzhang/SynthesizePipeline-server/DatasetNew/m4/m4-val.csv", + "exists": true, + "size": 11482, + "sha256": "ee3c247d02f56e1687d03c381e13125d6a3a2a411ac7f202ba8520a4be9f1784" + }, + "test_csv": { + "path": "/data/jialinzhang/SynthesizePipeline-server/DatasetNew/m4/m4-test.csv", + "exists": true, + "size": 11559, + "sha256": "cadb9941124001b8fa7cb1ebae43b70a9ca56294f4df4d3c2f22c164c41757d4" + }, + "profile_json": { + "path": "/data/jialinzhang/SynthesizePipeline-server/DatasetNew/artifacts/data_core/tabular/m4/m4-dataset_profile.json", + "exists": true, + "size": 3336, + "sha256": "83e2764810e4a0e8cdece3a28dbd9134b7c9df6f2e56953e46d024ad2c4e035f" + }, + "contract_json": { + "path": "/data/jialinzhang/SynthesizePipeline-server/DatasetNew/artifacts/data_core/tabular/m4/m4-dataset_contract_v1.json", + "exists": true, + "size": 3810, + "sha256": "c23641b258629a845b164099bd0132886f8f6d0100e990494e0f92540f8987d9" + } + } +} \ No newline at end of file diff --git a/hyperparameter/m4/bayesnet/bayesnet-m4-20260504_205727/public_gate/normalized_schema_snapshot.json b/hyperparameter/m4/bayesnet/bayesnet-m4-20260504_205727/public_gate/normalized_schema_snapshot.json new file mode 100644 index 0000000000000000000000000000000000000000..31ed9818686b11907df75e872e4ffbe010330880 --- /dev/null +++ b/hyperparameter/m4/bayesnet/bayesnet-m4-20260504_205727/public_gate/normalized_schema_snapshot.json @@ -0,0 +1,147 @@ +{ + "dataset_id": "m4", + "target_column": "charges", + "task_type": "regression", + "columns": [ + { + "name": "age", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 47, + "unique_ratio": 0.0212, + "example_values": [ + "46", + "38", + "19", + "27", + "26" + ] + } + }, + { + "name": "sex", + "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.000902, + "example_values": [ + "female", + "male" + ] + } + }, + { + "name": "bmi", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 538, + "unique_ratio": 0.24267, + "example_values": [ + "23.655", + "19.3", + "30.59", + "32.67", + "29.45" + ] + } + }, + { + "name": "children", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 6, + "unique_ratio": 0.002706, + "example_values": [ + "1", + "0", + "3", + "2", + "5" + ] + } + }, + { + "name": "smoker", + "role": "feature", + "semantic_type": "boolean", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 2, + "unique_ratio": 0.000902, + "example_values": [ + "yes", + "no" + ] + } + }, + { + "name": "region", + "role": "feature", + "semantic_type": "categorical", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 4, + "unique_ratio": 0.001804, + "example_values": [ + "northwest", + "southwest", + "southeast", + "northeast" + ] + } + }, + { + "name": "charges", + "role": "target", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 1281, + "unique_ratio": 0.577808, + "example_values": [ + "21677.28345", + "15820.699", + "1639.5631", + "2497.0383", + "2897.3235" + ] + } + } + ] +} \ No newline at end of file diff --git a/hyperparameter/m4/bayesnet/bayesnet-m4-20260504_205727/public_gate/public_gate_report.json b/hyperparameter/m4/bayesnet/bayesnet-m4-20260504_205727/public_gate/public_gate_report.json new file mode 100644 index 0000000000000000000000000000000000000000..e7a25408e2574124629ea9437356551e4d6f4790 --- /dev/null +++ b/hyperparameter/m4/bayesnet/bayesnet-m4-20260504_205727/public_gate/public_gate_report.json @@ -0,0 +1,37 @@ +{ + "dataset_id": "m4", + "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": "charges", + "task_type": "regression", + "input_splits": { + "train": "/data/jialinzhang/SynthesizePipeline-server/DatasetNew/m4/m4-train.csv", + "val": "/data/jialinzhang/SynthesizePipeline-server/DatasetNew/m4/m4-val.csv", + "test": "/data/jialinzhang/SynthesizePipeline-server/DatasetNew/m4/m4-test.csv" + } +} \ No newline at end of file diff --git a/hyperparameter/m4/bayesnet/bayesnet-m4-20260504_205727/public_gate/staged_input_manifest.json b/hyperparameter/m4/bayesnet/bayesnet-m4-20260504_205727/public_gate/staged_input_manifest.json new file mode 100644 index 0000000000000000000000000000000000000000..7221ca85f5f73da4cdbb4405d82b2c8a54205467 --- /dev/null +++ b/hyperparameter/m4/bayesnet/bayesnet-m4-20260504_205727/public_gate/staged_input_manifest.json @@ -0,0 +1,152 @@ +{ + "dataset_id": "m4", + "target_column": "charges", + "task_type": "regression", + "train_csv": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/m4/bayesnet/bayesnet-m4-20260504_205727/staged/public/train.csv", + "val_csv": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/m4/bayesnet/bayesnet-m4-20260504_205727/staged/public/val.csv", + "test_csv": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/m4/bayesnet/bayesnet-m4-20260504_205727/staged/public/test.csv", + "features_json": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/m4/bayesnet/bayesnet-m4-20260504_205727/staged/public/staged_features.json", + "public_gate_report": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/m4/bayesnet/bayesnet-m4-20260504_205727/public_gate/public_gate_report.json", + "column_schema": [ + { + "name": "age", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 47, + "unique_ratio": 0.0212, + "example_values": [ + "46", + "38", + "19", + "27", + "26" + ] + } + }, + { + "name": "sex", + "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.000902, + "example_values": [ + "female", + "male" + ] + } + }, + { + "name": "bmi", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 538, + "unique_ratio": 0.24267, + "example_values": [ + "23.655", + "19.3", + "30.59", + "32.67", + "29.45" + ] + } + }, + { + "name": "children", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 6, + "unique_ratio": 0.002706, + "example_values": [ + "1", + "0", + "3", + "2", + "5" + ] + } + }, + { + "name": "smoker", + "role": "feature", + "semantic_type": "boolean", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 2, + "unique_ratio": 0.000902, + "example_values": [ + "yes", + "no" + ] + } + }, + { + "name": "region", + "role": "feature", + "semantic_type": "categorical", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 4, + "unique_ratio": 0.001804, + "example_values": [ + "northwest", + "southwest", + "southeast", + "northeast" + ] + } + }, + { + "name": "charges", + "role": "target", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 1281, + "unique_ratio": 0.577808, + "example_values": [ + "21677.28345", + "15820.699", + "1639.5631", + "2497.0383", + "2897.3235" + ] + } + } + ] +} \ No newline at end of file diff --git a/hyperparameter/m4/bayesnet/bayesnet-m4-20260504_205727/run_config.json b/hyperparameter/m4/bayesnet/bayesnet-m4-20260504_205727/run_config.json new file mode 100644 index 0000000000000000000000000000000000000000..d155565b871a336ed3fd5d3beda5dd9edd209cd0 --- /dev/null +++ b/hyperparameter/m4/bayesnet/bayesnet-m4-20260504_205727/run_config.json @@ -0,0 +1,47 @@ +{ + "schema_version": 1, + "recorded_at": "2026-05-04T20:57:27", + "dataset_id": "m4", + "model": "bayesnet", + "work_dir": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/m4/bayesnet/bayesnet-m4-20260504_205727", + "dataset_source_requested": "new", + "dataset_source_resolved": "new", + "cli_args": { + "model": "bayesnet", + "dataset": "m4", + "dataset_source": "new", + "train": true, + "generate": true, + "num_rows": 0, + "epochs": null, + "output_dir": null, + "model_dir": null, + "work_dir": null, + "resume": false, + "no_stats": false + }, + "resolved": { + "num_rows": 2217, + "model_path": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/m4/bayesnet/bayesnet-m4-20260504_205727/bayesnet_model.pkl", + "output_csv": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/m4/bayesnet/bayesnet-m4-20260504_205727/bayesnet-m4-2217-20260504_205735.csv" + }, + "input_artifacts": { + "public_gate_report": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/m4/bayesnet/bayesnet-m4-20260504_205727/public_gate/public_gate_report.json", + "public_manifest": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/m4/bayesnet/bayesnet-m4-20260504_205727/public_gate/staged_input_manifest.json", + "model_manifest": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/m4/bayesnet/bayesnet-m4-20260504_205727/staged/bayesnet/model_input_manifest.json", + "train_csv": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/m4/bayesnet/bayesnet-m4-20260504_205727/staged/public/train.csv", + "features_json": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/m4/bayesnet/bayesnet-m4-20260504_205727/staged/public/staged_features.json", + "target_column": "charges", + "task_type": "regression" + }, + "env_overrides": { + "BAYESNET_DISABLE_AUTO_CAPS": "1", + "BAYESNET_EDGE_WEIGHTS_FN": "adjusted_mutual_info", + "BAYESNET_ESTIMATOR_TYPE": "chow-liu", + "BAYESNET_FIT_ROWS": "120000", + "BAYESNET_MAX_BINS": "8", + "BAYESNET_MAX_CAT_LEVELS": "64", + "BAYESNET_N_JOBS": "1", + "BAYESNET_STRUCT_ROWS": "25000" + } +} \ No newline at end of file diff --git a/hyperparameter/m4/bayesnet/bayesnet-m4-20260504_205727/runtime_result.json b/hyperparameter/m4/bayesnet/bayesnet-m4-20260504_205727/runtime_result.json new file mode 100644 index 0000000000000000000000000000000000000000..98ba8f7458300f4cde8abb0ee714039c682c7198 --- /dev/null +++ b/hyperparameter/m4/bayesnet/bayesnet-m4-20260504_205727/runtime_result.json @@ -0,0 +1,27 @@ +{ + "dataset_id": "m4", + "model": "bayesnet", + "run_id": "bayesnet-m4-20260504_205727", + "public_gate_status": "pass", + "adapter_ready_status": "pass", + "train_status": "success", + "generate_status": "success", + "reason_code": null, + "reason_detail": null, + "artifacts": { + "synthetic_csv": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/m4/bayesnet/bayesnet-m4-20260504_205727/bayesnet-m4-2217-20260504_205735.csv", + "model_path": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/m4/bayesnet/bayesnet-m4-20260504_205727/bayesnet_model.pkl" + }, + "timings": { + "train": { + "started_at": "2026-05-04T20:57:27", + "ended_at": "2026-05-04T20:57:35", + "duration_sec": 7.932 + }, + "generate": { + "started_at": "2026-05-04T20:57:35", + "ended_at": "2026-05-04T20:57:42", + "duration_sec": 7.322 + } + } +} \ No newline at end of file diff --git a/hyperparameter/m4/bayesnet/bayesnet-m4-20260504_205727/staged/bayesnet/adapter_report.json b/hyperparameter/m4/bayesnet/bayesnet-m4-20260504_205727/staged/bayesnet/adapter_report.json new file mode 100644 index 0000000000000000000000000000000000000000..ade69028d19d58de670d1bb3f5ec59b586e0c391 --- /dev/null +++ b/hyperparameter/m4/bayesnet/bayesnet-m4-20260504_205727/staged/bayesnet/adapter_report.json @@ -0,0 +1,7 @@ +{ + "adapter_ready_status": "pass", + "adapter_fail_reason_code": null, + "adapter_fail_detail": null, + "adapter_transforms_applied": [], + "model_input_manifest": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/m4/bayesnet/bayesnet-m4-20260504_205727/staged/bayesnet/model_input_manifest.json" +} \ No newline at end of file diff --git a/hyperparameter/m4/bayesnet/bayesnet-m4-20260504_205727/staged/bayesnet/adapter_transforms_applied.json b/hyperparameter/m4/bayesnet/bayesnet-m4-20260504_205727/staged/bayesnet/adapter_transforms_applied.json new file mode 100644 index 0000000000000000000000000000000000000000..0637a088a01e8ddab3bf3fa98dbe804cbde1a0dc --- /dev/null +++ b/hyperparameter/m4/bayesnet/bayesnet-m4-20260504_205727/staged/bayesnet/adapter_transforms_applied.json @@ -0,0 +1 @@ +[] \ No newline at end of file diff --git a/hyperparameter/m4/bayesnet/bayesnet-m4-20260504_205727/staged/bayesnet/model_input_manifest.json b/hyperparameter/m4/bayesnet/bayesnet-m4-20260504_205727/staged/bayesnet/model_input_manifest.json new file mode 100644 index 0000000000000000000000000000000000000000..678f46a660c3df9d7689fbf67ebb30c9df3cd66f --- /dev/null +++ b/hyperparameter/m4/bayesnet/bayesnet-m4-20260504_205727/staged/bayesnet/model_input_manifest.json @@ -0,0 +1,154 @@ +{ + "dataset_id": "m4", + "model": "bayesnet", + "target_column": "charges", + "task_type": "regression", + "column_schema": [ + { + "name": "age", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 47, + "unique_ratio": 0.0212, + "example_values": [ + "46", + "38", + "19", + "27", + "26" + ] + } + }, + { + "name": "sex", + "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.000902, + "example_values": [ + "female", + "male" + ] + } + }, + { + "name": "bmi", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 538, + "unique_ratio": 0.24267, + "example_values": [ + "23.655", + "19.3", + "30.59", + "32.67", + "29.45" + ] + } + }, + { + "name": "children", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 6, + "unique_ratio": 0.002706, + "example_values": [ + "1", + "0", + "3", + "2", + "5" + ] + } + }, + { + "name": "smoker", + "role": "feature", + "semantic_type": "boolean", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 2, + "unique_ratio": 0.000902, + "example_values": [ + "yes", + "no" + ] + } + }, + { + "name": "region", + "role": "feature", + "semantic_type": "categorical", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 4, + "unique_ratio": 0.001804, + "example_values": [ + "northwest", + "southwest", + "southeast", + "northeast" + ] + } + }, + { + "name": "charges", + "role": "target", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 1281, + "unique_ratio": 0.577808, + "example_values": [ + "21677.28345", + "15820.699", + "1639.5631", + "2497.0383", + "2897.3235" + ] + } + } + ], + "public_manifest": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/m4/bayesnet/bayesnet-m4-20260504_205727/public_gate/staged_input_manifest.json", + "train_csv": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/m4/bayesnet/bayesnet-m4-20260504_205727/staged/public/train.csv", + "val_csv": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/m4/bayesnet/bayesnet-m4-20260504_205727/staged/public/val.csv", + "test_csv": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/m4/bayesnet/bayesnet-m4-20260504_205727/staged/public/test.csv", + "features_json": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/m4/bayesnet/bayesnet-m4-20260504_205727/staged/public/staged_features.json", + "public_gate_report": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/m4/bayesnet/bayesnet-m4-20260504_205727/public_gate/public_gate_report.json" +} \ No newline at end of file diff --git a/hyperparameter/m4/bayesnet/bayesnet-m4-20260504_205727/staged/public/staged_features.json b/hyperparameter/m4/bayesnet/bayesnet-m4-20260504_205727/staged/public/staged_features.json new file mode 100644 index 0000000000000000000000000000000000000000..d6acd098c35111f423f3ffff2cfd1754bc5dfebc --- /dev/null +++ b/hyperparameter/m4/bayesnet/bayesnet-m4-20260504_205727/staged/public/staged_features.json @@ -0,0 +1,37 @@ +[ + { + "feature_name": "age", + "data_type": "continuous", + "is_target": false + }, + { + "feature_name": "sex", + "data_type": "categorical", + "is_target": false + }, + { + "feature_name": "bmi", + "data_type": "continuous", + "is_target": false + }, + { + "feature_name": "children", + "data_type": "continuous", + "is_target": false + }, + { + "feature_name": "smoker", + "data_type": "binary", + "is_target": false + }, + { + "feature_name": "region", + "data_type": "categorical", + "is_target": false + }, + { + "feature_name": "charges", + "data_type": "continuous", + "is_target": true + } +] \ No newline at end of file diff --git a/hyperparameter/m4/bayesnet/bayesnet-m4-20260504_205727/staged/public/test.csv b/hyperparameter/m4/bayesnet/bayesnet-m4-20260504_205727/staged/public/test.csv new file mode 100644 index 0000000000000000000000000000000000000000..c88a2e7cfcd715bb421cb56eb078033da45c4dc8 --- /dev/null +++ b/hyperparameter/m4/bayesnet/bayesnet-m4-20260504_205727/staged/public/test.csv @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:4c541b677fb2d45c5bc79338eeee9fd8c91484b195a0c2c546c2fbabf113b7ea +size 11298 diff --git a/hyperparameter/m4/bayesnet/bayesnet-m4-20260504_205727/staged/public/train.csv b/hyperparameter/m4/bayesnet/bayesnet-m4-20260504_205727/staged/public/train.csv new file mode 100644 index 0000000000000000000000000000000000000000..5a05019d786529e0617291766c4fbe016ca01bf5 --- /dev/null +++ b/hyperparameter/m4/bayesnet/bayesnet-m4-20260504_205727/staged/public/train.csv @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:614ebfac5f41d6f661aff675fa18c0f933a8d9bcc77ea71b7b2360c2f0155837 +size 90069 diff --git a/hyperparameter/m4/bayesnet/bayesnet-m4-20260504_205727/staged/public/val.csv b/hyperparameter/m4/bayesnet/bayesnet-m4-20260504_205727/staged/public/val.csv new file mode 100644 index 0000000000000000000000000000000000000000..d78fe5ad1537c437ba9ac2629f2aa60a6c17e708 --- /dev/null +++ b/hyperparameter/m4/bayesnet/bayesnet-m4-20260504_205727/staged/public/val.csv @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:e55f5edbe7942ff01630de91a9c70dfbc6445eba76c7b970350364546b67c2d7 +size 11218 diff --git a/hyperparameter/m4/bayesnet/bayesnet-m4-20260504_205727/train_20260504_205727.log b/hyperparameter/m4/bayesnet/bayesnet-m4-20260504_205727/train_20260504_205727.log new file mode 100644 index 0000000000000000000000000000000000000000..0e48deaae1dd0495b184bce9f07dd1e826163be4 --- /dev/null +++ b/hyperparameter/m4/bayesnet/bayesnet-m4-20260504_205727/train_20260504_205727.log @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:ab55c3f003c1b6bfdbe343730de023ece61d9a6fede4975cf888a4e7c438f86c +size 3861 diff --git a/hyperparameter/m4/bayesnet/bayesnet-m4-20260504_205755/_bayesnet_generate.py b/hyperparameter/m4/bayesnet/bayesnet-m4-20260504_205755/_bayesnet_generate.py new file mode 100644 index 0000000000000000000000000000000000000000..375613ee36c0eb4e6d5342e7be6eaa838b1185d5 --- /dev/null +++ b/hyperparameter/m4/bayesnet/bayesnet-m4-20260504_205755/_bayesnet_generate.py @@ -0,0 +1,105 @@ + +import pickle +import subprocess +import sys +import warnings + +import numpy as np +import pandas as pd +from pgmpy.sampling import BayesianModelSampling + +warnings.filterwarnings("ignore", category=FutureWarning) + +def _ensure_cloudpickle(): + try: + import cloudpickle # noqa: F401 + except ModuleNotFoundError: + subprocess.check_call( + [sys.executable, "-m", "pip", "install", "--quiet", "cloudpickle"], + ) + +_ensure_cloudpickle() + +with open("/work/output-Benchmark-trainonly-v1/m4/bayesnet/bayesnet-m4-20260504_205755/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(2217) +sampler = BayesianModelSampling(network) +raw = sampler.forward_sample(size=num_rows, show_progress=False) +raw = raw.reset_index(drop=True) +if len(raw) > num_rows: + raw = raw.iloc[:num_rows] +_tries = 0 +while len(raw) < num_rows and _tries < 64: + _tries += 1 + nextra = min(10000, num_rows - len(raw)) + more = sampler.forward_sample(size=max(nextra, 1), show_progress=False) + more = more.reset_index(drop=True) + if len(more) == 0: + break + raw = pd.concat([raw, more], ignore_index=True) + if len(raw) > num_rows: + raw = raw.iloc[:num_rows] + +out = pd.DataFrame(index=raw.index) +rng = np.random.default_rng() + +for c in cols: + if c in inverse["categorical"]: + levels = inverse["categorical"][c] + idx = raw[c].astype(int).to_numpy() + idx = np.clip(idx, 0, max(0, len(levels) - 1)) + out[c] = [levels[i] for i in idx] + else: + edges = np.asarray(inverse["continuous"][c], dtype=float) + if edges.size < 2: + out[c] = 0.0 + else: + nbin = edges.size - 1 + res = [] + for k in raw[c].astype(int).to_numpy(): + k = int(k) + if k < 0: + k = 0 + if k >= nbin: + k = nbin - 1 + lo, hi = float(edges[k]), float(edges[k + 1]) + if hi < lo: + lo, hi = hi, lo + v = rng.uniform(lo, hi) + if c in integer_columns: + v = int(round(v)) + res.append(v) + out[c] = res + +final = pd.DataFrame(index=out.index) +for c in full_order: + if c in const_cols: + final[c] = const_cols[c] + elif c in out.columns: + final[c] = out[c] + +dtypes = bundle.get("original_dtypes") or {} +for c, dts in dtypes.items(): + if c not in final.columns: + continue + try: + if "int" in dts: + final[c] = pd.to_numeric(final[c], errors="coerce").astype("Int64") + elif "float" in dts: + final[c] = pd.to_numeric(final[c], errors="coerce") + except Exception: + pass + +if len(final) != num_rows: + final = final.iloc[:num_rows].copy() +final = final.reset_index(drop=True) +final.to_csv("/work/output-Benchmark-trainonly-v1/m4/bayesnet/bayesnet-m4-20260504_205755/bayesnet-m4-2217-20260504_205803.csv", index=False) +print(f"[BayesNet] Generated {len(final)} rows (requested {num_rows}) -> /work/output-Benchmark-trainonly-v1/m4/bayesnet/bayesnet-m4-20260504_205755/bayesnet-m4-2217-20260504_205803.csv") diff --git a/hyperparameter/m4/bayesnet/bayesnet-m4-20260504_205755/_bayesnet_train.py b/hyperparameter/m4/bayesnet/bayesnet-m4-20260504_205755/_bayesnet_train.py new file mode 100644 index 0000000000000000000000000000000000000000..8e6a1243780fc6cce188c35f3c293263cbba5a6f --- /dev/null +++ b/hyperparameter/m4/bayesnet/bayesnet-m4-20260504_205755/_bayesnet_train.py @@ -0,0 +1,146 @@ + +import json +import os +import pickle +import subprocess +import sys +import warnings + +import numpy as np +import pandas as pd +from pgmpy.estimators import TreeSearch +from pgmpy.models import DiscreteBayesianNetwork +warnings.filterwarnings("ignore", category=FutureWarning) + +def _ensure_cloudpickle(): + try: + import cloudpickle # noqa: F401 + except ModuleNotFoundError: + subprocess.check_call( + [sys.executable, "-m", "pip", "install", "--quiet", "cloudpickle"], + ) + +_ensure_cloudpickle() + +with open("/work/output-Benchmark-trainonly-v1/m4/bayesnet/bayesnet-m4-20260504_205755/bayesnet_coltypes.json", "r", encoding="utf-8") as _f: + colmeta = json.load(_f) +integer_columns = set(colmeta.get("integer_columns") or []) + +df = pd.read_csv("/work/output-Benchmark-trainonly-v1/m4/bayesnet/bayesnet-m4-20260504_205755/staged/public/train.csv") +df = df.dropna(axis=1, how="all") +full_column_order = list(df.columns) + +const_cols = {} +for col in list(df.columns): + if df[col].nunique(dropna=True) <= 1: + const_cols[col] = df[col].iloc[0] if len(df) > 0 else None + df = df.drop(columns=[col]) + print(f"[BayesNet] Dropped zero-variance column '{col}'") + +const_path = "/work/output-Benchmark-trainonly-v1/m4/bayesnet/bayesnet-m4-20260504_205755/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 = int(os.environ.get("BAYESNET_MAX_BINS", "0")) +max_cat_levels = int(os.environ.get("BAYESNET_MAX_CAT_LEVELS", "0")) +if max_bins <= 0: + max_bins = 10 +if max_cat_levels <= 0: + max_cat_levels = 256 +auto_caps = os.environ.get("BAYESNET_DISABLE_AUTO_CAPS", "0").strip().lower() not in ("1", "true", "yes") +if auto_caps and max_bins == 10 and max_cat_levels == 256: + if _n_plan > 35 or _n_samples > 200000: + max_bins = 5 + max_cat_levels = 64 + if _n_plan > 55: + max_bins = 4 + max_cat_levels = 32 +struct_rows = int(os.environ.get("BAYESNET_STRUCT_ROWS", "25000")) +fit_rows = int(os.environ.get("BAYESNET_FIT_ROWS", "120000")) +estimator_type = (os.environ.get("BAYESNET_ESTIMATOR_TYPE", "chow-liu") or "chow-liu").strip() +edge_weights_fn = (os.environ.get("BAYESNET_EDGE_WEIGHTS_FN", "mutual_info") or "mutual_info").strip() +root_node = (os.environ.get("BAYESNET_ROOT_NODE", "") or "").strip() or None +n_jobs = int(os.environ.get("BAYESNET_N_JOBS", "1")) +print( + f"[BayesNet] max_bins={max_bins}, max_cat_levels={max_cat_levels}, struct_rows={struct_rows}, fit_rows={fit_rows}, estimator_type={estimator_type}, edge_weights_fn={edge_weights_fn}, root_node={root_node}, n_jobs={n_jobs} " + f"(cols_in_df={_n_plan}, rows={_n_samples})" +) + +for entry in colmeta["columns"]: + name = entry["name"] + if name not in df.columns: + continue + kind = entry["type"] + s = df[name] + if kind == "categorical": + s2 = s.astype(str).fillna("__NA__") + counts = s2.value_counts(dropna=False) + if len(counts) > max_cat_levels: + keep = set(counts.index[: max_cat_levels - 1].tolist()) + s2 = s2.map(lambda x: x if x in keep else "__OTHER__") + uniques = sorted(s2.dropna().unique(), key=lambda x: str(x)) + mapping = {str(v): i for i, v in enumerate(uniques)} + inverse["categorical"][name] = [uniques[i] for i in range(len(uniques))] + enc[name] = s2.map(lambda x, m=mapping: m.get(str(x), 0)).astype(int) + else: + s_num = pd.to_numeric(s, errors="coerce") + nu = int(s_num.nunique(dropna=True)) + q = min(max_bins, max(2, nu)) + if nu < 2: + enc[name] = np.zeros(len(s_num), dtype=int) + lo, hi = float(s_num.min()), float(s_num.max()) + inverse["continuous"][name] = [lo, hi] + else: + try: + _, bins = pd.qcut( + s_num, q=q, retbins=True, duplicates="drop" + ) + except Exception: + med = float(s_num.median()) + s2 = s_num.fillna(med) + _, bins = pd.qcut( + s2, q=min(q, 3), retbins=True, duplicates="drop" + ) + bins = np.asarray(bins, dtype=float) + lab = pd.cut( + s_num, bins=bins, labels=False, include_lowest=True + ) + enc[name] = lab.fillna(0).astype(int) + inverse["continuous"][name] = bins.tolist() + +print(f"[BayesNet] Training on {len(enc)} rows, {len(enc.columns)} cols (encoded)") + +enc_struct = enc +if len(enc) > struct_rows: + enc_struct = enc.sample(n=struct_rows, random_state=0, replace=False) + print(f"[BayesNet] TreeSearch on {len(enc_struct)} rows (subsample; full n={len(enc)})") +dag = TreeSearch(enc_struct, root_node=root_node, n_jobs=n_jobs).estimate(estimator_type=estimator_type, edge_weights_fn=edge_weights_fn, show_progress=False) +for col in enc.columns: + if col not in dag.nodes(): + dag.add_node(col) + print(f"[BayesNet] Added isolated node to DAG: {col}") +network = DiscreteBayesianNetwork(dag) +enc_fit = enc +if len(enc) > fit_rows: + enc_fit = enc.sample(n=fit_rows, random_state=1, replace=False) + print(f"[BayesNet] fit() on {len(enc_fit)} rows (full n={len(enc)})") +network.fit(enc_fit) + +bundle = { + "network": network, + "inverse": inverse, + "column_order": list(enc.columns), + "full_column_order": full_column_order, + "integer_columns": list(integer_columns), + "original_dtypes": {c: str(df[c].dtype) for c in enc.columns}, + "const_cols": const_cols, +} +with open("/work/output-Benchmark-trainonly-v1/m4/bayesnet/bayesnet-m4-20260504_205755/bayesnet_model.pkl", "wb") as _f: + pickle.dump(bundle, _f) +print(f"[BayesNet] Model saved -> /work/output-Benchmark-trainonly-v1/m4/bayesnet/bayesnet-m4-20260504_205755/bayesnet_model.pkl") diff --git a/hyperparameter/m4/bayesnet/bayesnet-m4-20260504_205755/bayesnet-m4-2217-20260504_205803.csv b/hyperparameter/m4/bayesnet/bayesnet-m4-20260504_205755/bayesnet-m4-2217-20260504_205803.csv new file mode 100644 index 0000000000000000000000000000000000000000..3ae7bcba921b8798105ba8d9742cab7d62f751f3 --- /dev/null +++ b/hyperparameter/m4/bayesnet/bayesnet-m4-20260504_205755/bayesnet-m4-2217-20260504_205803.csv @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:8906e1760b27741017a80038f01b13f577f599dd905a3c1cde43f614f5bcde16 +size 207100 diff --git a/hyperparameter/m4/bayesnet/bayesnet-m4-20260504_205755/bayesnet_coltypes.json b/hyperparameter/m4/bayesnet/bayesnet-m4-20260504_205755/bayesnet_coltypes.json new file mode 100644 index 0000000000000000000000000000000000000000..295bb70445b63eea5719ae7c1f72bcdf61849c8d --- /dev/null +++ b/hyperparameter/m4/bayesnet/bayesnet-m4-20260504_205755/bayesnet_coltypes.json @@ -0,0 +1,33 @@ +{ + "columns": [ + { + "name": "age", + "type": "continuous" + }, + { + "name": "sex", + "type": "categorical" + }, + { + "name": "bmi", + "type": "continuous" + }, + { + "name": "children", + "type": "continuous" + }, + { + "name": "smoker", + "type": "categorical" + }, + { + "name": "region", + "type": "categorical" + }, + { + "name": "charges", + "type": "continuous" + } + ], + "integer_columns": [] +} \ No newline at end of file diff --git a/hyperparameter/m4/bayesnet/bayesnet-m4-20260504_205755/bayesnet_model.pkl b/hyperparameter/m4/bayesnet/bayesnet-m4-20260504_205755/bayesnet_model.pkl new file mode 100644 index 0000000000000000000000000000000000000000..129ec19fa36887418d8d1fa2a659a7facd9daf5a --- /dev/null +++ b/hyperparameter/m4/bayesnet/bayesnet-m4-20260504_205755/bayesnet_model.pkl @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:31322881b7c0265a1f6a7e0bc3773213e8d15790d091f376279098278f7c5a82 +size 6098 diff --git a/hyperparameter/m4/bayesnet/bayesnet-m4-20260504_205755/const_cols.json b/hyperparameter/m4/bayesnet/bayesnet-m4-20260504_205755/const_cols.json new file mode 100644 index 0000000000000000000000000000000000000000..9e26dfeeb6e641a33dae4961196235bdb965b21b --- /dev/null +++ b/hyperparameter/m4/bayesnet/bayesnet-m4-20260504_205755/const_cols.json @@ -0,0 +1 @@ +{} \ No newline at end of file diff --git a/hyperparameter/m4/bayesnet/bayesnet-m4-20260504_205755/gen_20260504_205803.log b/hyperparameter/m4/bayesnet/bayesnet-m4-20260504_205755/gen_20260504_205803.log new file mode 100644 index 0000000000000000000000000000000000000000..88e442f2ed4fc6f50e11e88e54034b66f3825e7c --- /dev/null +++ b/hyperparameter/m4/bayesnet/bayesnet-m4-20260504_205755/gen_20260504_205803.log @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:6614411555953689783b4f7629648db70a729a3589fef558a66c849c060d17ef +size 3661 diff --git a/hyperparameter/m4/bayesnet/bayesnet-m4-20260504_205755/input_snapshot.json b/hyperparameter/m4/bayesnet/bayesnet-m4-20260504_205755/input_snapshot.json new file mode 100644 index 0000000000000000000000000000000000000000..80a11fda595a83a7857ca988e84c480002e80ddc --- /dev/null +++ b/hyperparameter/m4/bayesnet/bayesnet-m4-20260504_205755/input_snapshot.json @@ -0,0 +1,36 @@ +{ + "dataset_id": "m4", + "model": "bayesnet", + "inputs": { + "train_csv": { + "path": "/data/jialinzhang/SynthesizePipeline-server/DatasetNew/m4/m4-train.csv", + "exists": true, + "size": 92191, + "sha256": "396b9d409ca21bf4a4cd329bdf5b7796aa0ae6356fa8d89b8eb669b5880b81f1" + }, + "val_csv": { + "path": "/data/jialinzhang/SynthesizePipeline-server/DatasetNew/m4/m4-val.csv", + "exists": true, + "size": 11482, + "sha256": "ee3c247d02f56e1687d03c381e13125d6a3a2a411ac7f202ba8520a4be9f1784" + }, + "test_csv": { + "path": "/data/jialinzhang/SynthesizePipeline-server/DatasetNew/m4/m4-test.csv", + "exists": true, + "size": 11559, + "sha256": "cadb9941124001b8fa7cb1ebae43b70a9ca56294f4df4d3c2f22c164c41757d4" + }, + "profile_json": { + "path": "/data/jialinzhang/SynthesizePipeline-server/DatasetNew/artifacts/data_core/tabular/m4/m4-dataset_profile.json", + "exists": true, + "size": 3336, + "sha256": "83e2764810e4a0e8cdece3a28dbd9134b7c9df6f2e56953e46d024ad2c4e035f" + }, + "contract_json": { + "path": "/data/jialinzhang/SynthesizePipeline-server/DatasetNew/artifacts/data_core/tabular/m4/m4-dataset_contract_v1.json", + "exists": true, + "size": 3810, + "sha256": "c23641b258629a845b164099bd0132886f8f6d0100e990494e0f92540f8987d9" + } + } +} \ No newline at end of file diff --git a/hyperparameter/m4/bayesnet/bayesnet-m4-20260504_205755/public_gate/normalized_schema_snapshot.json b/hyperparameter/m4/bayesnet/bayesnet-m4-20260504_205755/public_gate/normalized_schema_snapshot.json new file mode 100644 index 0000000000000000000000000000000000000000..31ed9818686b11907df75e872e4ffbe010330880 --- /dev/null +++ b/hyperparameter/m4/bayesnet/bayesnet-m4-20260504_205755/public_gate/normalized_schema_snapshot.json @@ -0,0 +1,147 @@ +{ + "dataset_id": "m4", + "target_column": "charges", + "task_type": "regression", + "columns": [ + { + "name": "age", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 47, + "unique_ratio": 0.0212, + "example_values": [ + "46", + "38", + "19", + "27", + "26" + ] + } + }, + { + "name": "sex", + "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.000902, + "example_values": [ + "female", + "male" + ] + } + }, + { + "name": "bmi", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 538, + "unique_ratio": 0.24267, + "example_values": [ + "23.655", + "19.3", + "30.59", + "32.67", + "29.45" + ] + } + }, + { + "name": "children", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 6, + "unique_ratio": 0.002706, + "example_values": [ + "1", + "0", + "3", + "2", + "5" + ] + } + }, + { + "name": "smoker", + "role": "feature", + "semantic_type": "boolean", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 2, + "unique_ratio": 0.000902, + "example_values": [ + "yes", + "no" + ] + } + }, + { + "name": "region", + "role": "feature", + "semantic_type": "categorical", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 4, + "unique_ratio": 0.001804, + "example_values": [ + "northwest", + "southwest", + "southeast", + "northeast" + ] + } + }, + { + "name": "charges", + "role": "target", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 1281, + "unique_ratio": 0.577808, + "example_values": [ + "21677.28345", + "15820.699", + "1639.5631", + "2497.0383", + "2897.3235" + ] + } + } + ] +} \ No newline at end of file diff --git a/hyperparameter/m4/bayesnet/bayesnet-m4-20260504_205755/public_gate/public_gate_report.json b/hyperparameter/m4/bayesnet/bayesnet-m4-20260504_205755/public_gate/public_gate_report.json new file mode 100644 index 0000000000000000000000000000000000000000..e7a25408e2574124629ea9437356551e4d6f4790 --- /dev/null +++ b/hyperparameter/m4/bayesnet/bayesnet-m4-20260504_205755/public_gate/public_gate_report.json @@ -0,0 +1,37 @@ +{ + "dataset_id": "m4", + "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": "charges", + "task_type": "regression", + "input_splits": { + "train": "/data/jialinzhang/SynthesizePipeline-server/DatasetNew/m4/m4-train.csv", + "val": "/data/jialinzhang/SynthesizePipeline-server/DatasetNew/m4/m4-val.csv", + "test": "/data/jialinzhang/SynthesizePipeline-server/DatasetNew/m4/m4-test.csv" + } +} \ No newline at end of file diff --git a/hyperparameter/m4/bayesnet/bayesnet-m4-20260504_205755/public_gate/staged_input_manifest.json b/hyperparameter/m4/bayesnet/bayesnet-m4-20260504_205755/public_gate/staged_input_manifest.json new file mode 100644 index 0000000000000000000000000000000000000000..82d0a0054ec23d586561def8da757aec60a05d2e --- /dev/null +++ b/hyperparameter/m4/bayesnet/bayesnet-m4-20260504_205755/public_gate/staged_input_manifest.json @@ -0,0 +1,152 @@ +{ + "dataset_id": "m4", + "target_column": "charges", + "task_type": "regression", + "train_csv": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/m4/bayesnet/bayesnet-m4-20260504_205755/staged/public/train.csv", + "val_csv": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/m4/bayesnet/bayesnet-m4-20260504_205755/staged/public/val.csv", + "test_csv": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/m4/bayesnet/bayesnet-m4-20260504_205755/staged/public/test.csv", + "features_json": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/m4/bayesnet/bayesnet-m4-20260504_205755/staged/public/staged_features.json", + "public_gate_report": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/m4/bayesnet/bayesnet-m4-20260504_205755/public_gate/public_gate_report.json", + "column_schema": [ + { + "name": "age", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 47, + "unique_ratio": 0.0212, + "example_values": [ + "46", + "38", + "19", + "27", + "26" + ] + } + }, + { + "name": "sex", + "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.000902, + "example_values": [ + "female", + "male" + ] + } + }, + { + "name": "bmi", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 538, + "unique_ratio": 0.24267, + "example_values": [ + "23.655", + "19.3", + "30.59", + "32.67", + "29.45" + ] + } + }, + { + "name": "children", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 6, + "unique_ratio": 0.002706, + "example_values": [ + "1", + "0", + "3", + "2", + "5" + ] + } + }, + { + "name": "smoker", + "role": "feature", + "semantic_type": "boolean", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 2, + "unique_ratio": 0.000902, + "example_values": [ + "yes", + "no" + ] + } + }, + { + "name": "region", + "role": "feature", + "semantic_type": "categorical", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 4, + "unique_ratio": 0.001804, + "example_values": [ + "northwest", + "southwest", + "southeast", + "northeast" + ] + } + }, + { + "name": "charges", + "role": "target", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 1281, + "unique_ratio": 0.577808, + "example_values": [ + "21677.28345", + "15820.699", + "1639.5631", + "2497.0383", + "2897.3235" + ] + } + } + ] +} \ No newline at end of file diff --git a/hyperparameter/m4/bayesnet/bayesnet-m4-20260504_205755/run_config.json b/hyperparameter/m4/bayesnet/bayesnet-m4-20260504_205755/run_config.json new file mode 100644 index 0000000000000000000000000000000000000000..40fd1ba4577b8322ee20f242e83dccc5752a54c4 --- /dev/null +++ b/hyperparameter/m4/bayesnet/bayesnet-m4-20260504_205755/run_config.json @@ -0,0 +1,47 @@ +{ + "schema_version": 1, + "recorded_at": "2026-05-04T20:57:55", + "dataset_id": "m4", + "model": "bayesnet", + "work_dir": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/m4/bayesnet/bayesnet-m4-20260504_205755", + "dataset_source_requested": "new", + "dataset_source_resolved": "new", + "cli_args": { + "model": "bayesnet", + "dataset": "m4", + "dataset_source": "new", + "train": true, + "generate": true, + "num_rows": 0, + "epochs": null, + "output_dir": null, + "model_dir": null, + "work_dir": null, + "resume": false, + "no_stats": false + }, + "resolved": { + "num_rows": 2217, + "model_path": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/m4/bayesnet/bayesnet-m4-20260504_205755/bayesnet_model.pkl", + "output_csv": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/m4/bayesnet/bayesnet-m4-20260504_205755/bayesnet-m4-2217-20260504_205803.csv" + }, + "input_artifacts": { + "public_gate_report": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/m4/bayesnet/bayesnet-m4-20260504_205755/public_gate/public_gate_report.json", + "public_manifest": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/m4/bayesnet/bayesnet-m4-20260504_205755/public_gate/staged_input_manifest.json", + "model_manifest": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/m4/bayesnet/bayesnet-m4-20260504_205755/staged/bayesnet/model_input_manifest.json", + "train_csv": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/m4/bayesnet/bayesnet-m4-20260504_205755/staged/public/train.csv", + "features_json": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/m4/bayesnet/bayesnet-m4-20260504_205755/staged/public/staged_features.json", + "target_column": "charges", + "task_type": "regression" + }, + "env_overrides": { + "BAYESNET_DISABLE_AUTO_CAPS": "1", + "BAYESNET_EDGE_WEIGHTS_FN": "normalized_mutual_info", + "BAYESNET_ESTIMATOR_TYPE": "chow-liu", + "BAYESNET_FIT_ROWS": "120000", + "BAYESNET_MAX_BINS": "8", + "BAYESNET_MAX_CAT_LEVELS": "64", + "BAYESNET_N_JOBS": "1", + "BAYESNET_STRUCT_ROWS": "25000" + } +} \ No newline at end of file diff --git a/hyperparameter/m4/bayesnet/bayesnet-m4-20260504_205755/runtime_result.json b/hyperparameter/m4/bayesnet/bayesnet-m4-20260504_205755/runtime_result.json new file mode 100644 index 0000000000000000000000000000000000000000..1908f04ae5cb83871b5b2457fada0510bf9713bf --- /dev/null +++ b/hyperparameter/m4/bayesnet/bayesnet-m4-20260504_205755/runtime_result.json @@ -0,0 +1,27 @@ +{ + "dataset_id": "m4", + "model": "bayesnet", + "run_id": "bayesnet-m4-20260504_205755", + "public_gate_status": "pass", + "adapter_ready_status": "pass", + "train_status": "success", + "generate_status": "success", + "reason_code": null, + "reason_detail": null, + "artifacts": { + "synthetic_csv": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/m4/bayesnet/bayesnet-m4-20260504_205755/bayesnet-m4-2217-20260504_205803.csv", + "model_path": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/m4/bayesnet/bayesnet-m4-20260504_205755/bayesnet_model.pkl" + }, + "timings": { + "train": { + "started_at": "2026-05-04T20:57:55", + "ended_at": "2026-05-04T20:58:03", + "duration_sec": 7.718 + }, + "generate": { + "started_at": "2026-05-04T20:58:03", + "ended_at": "2026-05-04T20:58:11", + "duration_sec": 8.0 + } + } +} \ No newline at end of file diff --git a/hyperparameter/m4/bayesnet/bayesnet-m4-20260504_205755/staged/bayesnet/adapter_report.json b/hyperparameter/m4/bayesnet/bayesnet-m4-20260504_205755/staged/bayesnet/adapter_report.json new file mode 100644 index 0000000000000000000000000000000000000000..ec263170804e16483b753368ed6aa4721573880a --- /dev/null +++ b/hyperparameter/m4/bayesnet/bayesnet-m4-20260504_205755/staged/bayesnet/adapter_report.json @@ -0,0 +1,7 @@ +{ + "adapter_ready_status": "pass", + "adapter_fail_reason_code": null, + "adapter_fail_detail": null, + "adapter_transforms_applied": [], + "model_input_manifest": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/m4/bayesnet/bayesnet-m4-20260504_205755/staged/bayesnet/model_input_manifest.json" +} \ No newline at end of file diff --git a/hyperparameter/m4/bayesnet/bayesnet-m4-20260504_205755/staged/bayesnet/adapter_transforms_applied.json b/hyperparameter/m4/bayesnet/bayesnet-m4-20260504_205755/staged/bayesnet/adapter_transforms_applied.json new file mode 100644 index 0000000000000000000000000000000000000000..0637a088a01e8ddab3bf3fa98dbe804cbde1a0dc --- /dev/null +++ b/hyperparameter/m4/bayesnet/bayesnet-m4-20260504_205755/staged/bayesnet/adapter_transforms_applied.json @@ -0,0 +1 @@ +[] \ No newline at end of file diff --git a/hyperparameter/m4/bayesnet/bayesnet-m4-20260504_205755/staged/bayesnet/model_input_manifest.json b/hyperparameter/m4/bayesnet/bayesnet-m4-20260504_205755/staged/bayesnet/model_input_manifest.json new file mode 100644 index 0000000000000000000000000000000000000000..1b81f4336be0e183a58b7db2e5a1e700ce6aa2b6 --- /dev/null +++ b/hyperparameter/m4/bayesnet/bayesnet-m4-20260504_205755/staged/bayesnet/model_input_manifest.json @@ -0,0 +1,154 @@ +{ + "dataset_id": "m4", + "model": "bayesnet", + "target_column": "charges", + "task_type": "regression", + "column_schema": [ + { + "name": "age", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 47, + "unique_ratio": 0.0212, + "example_values": [ + "46", + "38", + "19", + "27", + "26" + ] + } + }, + { + "name": "sex", + "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.000902, + "example_values": [ + "female", + "male" + ] + } + }, + { + "name": "bmi", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 538, + "unique_ratio": 0.24267, + "example_values": [ + "23.655", + "19.3", + "30.59", + "32.67", + "29.45" + ] + } + }, + { + "name": "children", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 6, + "unique_ratio": 0.002706, + "example_values": [ + "1", + "0", + "3", + "2", + "5" + ] + } + }, + { + "name": "smoker", + "role": "feature", + "semantic_type": "boolean", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 2, + "unique_ratio": 0.000902, + "example_values": [ + "yes", + "no" + ] + } + }, + { + "name": "region", + "role": "feature", + "semantic_type": "categorical", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 4, + "unique_ratio": 0.001804, + "example_values": [ + "northwest", + "southwest", + "southeast", + "northeast" + ] + } + }, + { + "name": "charges", + "role": "target", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 1281, + "unique_ratio": 0.577808, + "example_values": [ + "21677.28345", + "15820.699", + "1639.5631", + "2497.0383", + "2897.3235" + ] + } + } + ], + "public_manifest": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/m4/bayesnet/bayesnet-m4-20260504_205755/public_gate/staged_input_manifest.json", + "train_csv": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/m4/bayesnet/bayesnet-m4-20260504_205755/staged/public/train.csv", + "val_csv": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/m4/bayesnet/bayesnet-m4-20260504_205755/staged/public/val.csv", + "test_csv": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/m4/bayesnet/bayesnet-m4-20260504_205755/staged/public/test.csv", + "features_json": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/m4/bayesnet/bayesnet-m4-20260504_205755/staged/public/staged_features.json", + "public_gate_report": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/m4/bayesnet/bayesnet-m4-20260504_205755/public_gate/public_gate_report.json" +} \ No newline at end of file diff --git a/hyperparameter/m4/bayesnet/bayesnet-m4-20260504_205755/staged/public/staged_features.json b/hyperparameter/m4/bayesnet/bayesnet-m4-20260504_205755/staged/public/staged_features.json new file mode 100644 index 0000000000000000000000000000000000000000..d6acd098c35111f423f3ffff2cfd1754bc5dfebc --- /dev/null +++ b/hyperparameter/m4/bayesnet/bayesnet-m4-20260504_205755/staged/public/staged_features.json @@ -0,0 +1,37 @@ +[ + { + "feature_name": "age", + "data_type": "continuous", + "is_target": false + }, + { + "feature_name": "sex", + "data_type": "categorical", + "is_target": false + }, + { + "feature_name": "bmi", + "data_type": "continuous", + "is_target": false + }, + { + "feature_name": "children", + "data_type": "continuous", + "is_target": false + }, + { + "feature_name": "smoker", + "data_type": "binary", + "is_target": false + }, + { + "feature_name": "region", + "data_type": "categorical", + "is_target": false + }, + { + "feature_name": "charges", + "data_type": "continuous", + "is_target": true + } +] \ No newline at end of file diff --git a/hyperparameter/m4/bayesnet/bayesnet-m4-20260504_205755/staged/public/test.csv b/hyperparameter/m4/bayesnet/bayesnet-m4-20260504_205755/staged/public/test.csv new file mode 100644 index 0000000000000000000000000000000000000000..c88a2e7cfcd715bb421cb56eb078033da45c4dc8 --- /dev/null +++ b/hyperparameter/m4/bayesnet/bayesnet-m4-20260504_205755/staged/public/test.csv @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:4c541b677fb2d45c5bc79338eeee9fd8c91484b195a0c2c546c2fbabf113b7ea +size 11298 diff --git a/hyperparameter/m4/bayesnet/bayesnet-m4-20260504_205755/staged/public/train.csv b/hyperparameter/m4/bayesnet/bayesnet-m4-20260504_205755/staged/public/train.csv new file mode 100644 index 0000000000000000000000000000000000000000..5a05019d786529e0617291766c4fbe016ca01bf5 --- /dev/null +++ b/hyperparameter/m4/bayesnet/bayesnet-m4-20260504_205755/staged/public/train.csv @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:614ebfac5f41d6f661aff675fa18c0f933a8d9bcc77ea71b7b2360c2f0155837 +size 90069 diff --git a/hyperparameter/m4/bayesnet/bayesnet-m4-20260504_205755/staged/public/val.csv b/hyperparameter/m4/bayesnet/bayesnet-m4-20260504_205755/staged/public/val.csv new file mode 100644 index 0000000000000000000000000000000000000000..d78fe5ad1537c437ba9ac2629f2aa60a6c17e708 --- /dev/null +++ b/hyperparameter/m4/bayesnet/bayesnet-m4-20260504_205755/staged/public/val.csv @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:e55f5edbe7942ff01630de91a9c70dfbc6445eba76c7b970350364546b67c2d7 +size 11218 diff --git a/hyperparameter/m4/bayesnet/bayesnet-m4-20260504_205755/train_20260504_205755.log b/hyperparameter/m4/bayesnet/bayesnet-m4-20260504_205755/train_20260504_205755.log new file mode 100644 index 0000000000000000000000000000000000000000..70852fed45c01312d145882533e68727c55bb794 --- /dev/null +++ b/hyperparameter/m4/bayesnet/bayesnet-m4-20260504_205755/train_20260504_205755.log @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:0cc4b16acc295190761a677a600e61292a2c451dd5e5158929c35c55e3195a0f +size 3863 diff --git a/hyperparameter/m4/ctgan/ctgan-m4-20260504_162455/_ctgan_generate.py b/hyperparameter/m4/ctgan/ctgan-m4-20260504_162455/_ctgan_generate.py new file mode 100644 index 0000000000000000000000000000000000000000..563f6bea6aa8d6a1a16da4850ba8a90c0cfc96a1 --- /dev/null +++ b/hyperparameter/m4/ctgan/ctgan-m4-20260504_162455/_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-Benchmark-trainonly-v1/m4/ctgan/ctgan-m4-20260504_162455/models_50epochs/ctgan_50epochs.pt") +total = 2217 +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-Benchmark-trainonly-v1/m4/ctgan/ctgan-m4-20260504_162455/ctgan-m4-2217-20260504_162609.csv", index=False) +print("[CTGAN] Generated", total, "rows in", len(parts), "chunks ->", "/work/output-Benchmark-trainonly-v1/m4/ctgan/ctgan-m4-20260504_162455/ctgan-m4-2217-20260504_162609.csv") \ No newline at end of file diff --git a/hyperparameter/m4/ctgan/ctgan-m4-20260504_162455/_ctgan_train.py b/hyperparameter/m4/ctgan/ctgan-m4-20260504_162455/_ctgan_train.py new file mode 100644 index 0000000000000000000000000000000000000000..90d9736982b710db248ddd882246ba9562d061c8 --- /dev/null +++ b/hyperparameter/m4/ctgan/ctgan-m4-20260504_162455/_ctgan_train.py @@ -0,0 +1,17 @@ +import pandas as pd +from ctgan.synthesizers.ctgan import CTGAN + +data = pd.read_csv("/work/output-Benchmark-trainonly-v1/m4/ctgan/ctgan-m4-20260504_162455/staged/public/train.csv") +discrete_columns = ['sex', 'smoker', 'region'] +model = CTGAN( + embedding_dim=8, + generator_dim=(16, 16), + discriminator_dim=(16, 16), + batch_size=32, + pac=1, + epochs=50, + verbose=True, +) +model.fit(data, discrete_columns) +model.save("/work/output-Benchmark-trainonly-v1/m4/ctgan/ctgan-m4-20260504_162455/models_50epochs/ctgan_50epochs.pt") +print("[CTGAN] Saved model ->", "/work/output-Benchmark-trainonly-v1/m4/ctgan/ctgan-m4-20260504_162455/models_50epochs/ctgan_50epochs.pt") \ No newline at end of file diff --git a/hyperparameter/m4/ctgan/ctgan-m4-20260504_162455/ctgan-m4-2217-20260504_162609.csv b/hyperparameter/m4/ctgan/ctgan-m4-20260504_162455/ctgan-m4-2217-20260504_162609.csv new file mode 100644 index 0000000000000000000000000000000000000000..5c047df18e289162d7342334349e940f451dc505 --- /dev/null +++ b/hyperparameter/m4/ctgan/ctgan-m4-20260504_162455/ctgan-m4-2217-20260504_162609.csv @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:9d5b1fd2a8f637e700f3164b1aa7833a9eeba0084237d900006fbf35829a1009 +size 135963 diff --git a/hyperparameter/m4/ctgan/ctgan-m4-20260504_162455/ctgan_metadata.json b/hyperparameter/m4/ctgan/ctgan-m4-20260504_162455/ctgan_metadata.json new file mode 100644 index 0000000000000000000000000000000000000000..d89b1e0b3095638c982d4d3321d21a8bedcd33ae --- /dev/null +++ b/hyperparameter/m4/ctgan/ctgan-m4-20260504_162455/ctgan_metadata.json @@ -0,0 +1,32 @@ +{ + "columns": [ + { + "name": "age", + "type": "continuous" + }, + { + "name": "sex", + "type": "categorical" + }, + { + "name": "bmi", + "type": "continuous" + }, + { + "name": "children", + "type": "continuous" + }, + { + "name": "smoker", + "type": "categorical" + }, + { + "name": "region", + "type": "categorical" + }, + { + "name": "charges", + "type": "continuous" + } + ] +} \ No newline at end of file diff --git a/hyperparameter/m4/ctgan/ctgan-m4-20260504_162455/gen_20260504_162609.log b/hyperparameter/m4/ctgan/ctgan-m4-20260504_162455/gen_20260504_162609.log new file mode 100644 index 0000000000000000000000000000000000000000..4dec0f96e5a80b73bcae9d62fe3758231d7ad60d --- /dev/null +++ b/hyperparameter/m4/ctgan/ctgan-m4-20260504_162455/gen_20260504_162609.log @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:631cad7bb802b05edec1212c5654bc3cf2b87f637cb37bb0269c684a86a0a78b +size 297 diff --git a/hyperparameter/m4/ctgan/ctgan-m4-20260504_162455/input_snapshot.json b/hyperparameter/m4/ctgan/ctgan-m4-20260504_162455/input_snapshot.json new file mode 100644 index 0000000000000000000000000000000000000000..f11278f1ffa8959e7869f70def91d0284f7dd656 --- /dev/null +++ b/hyperparameter/m4/ctgan/ctgan-m4-20260504_162455/input_snapshot.json @@ -0,0 +1,36 @@ +{ + "dataset_id": "m4", + "model": "ctgan", + "inputs": { + "train_csv": { + "path": "/data/jialinzhang/SynthesizePipeline-server/DatasetNew/m4/m4-train.csv", + "exists": true, + "size": 92191, + "sha256": "396b9d409ca21bf4a4cd329bdf5b7796aa0ae6356fa8d89b8eb669b5880b81f1" + }, + "val_csv": { + "path": "/data/jialinzhang/SynthesizePipeline-server/DatasetNew/m4/m4-val.csv", + "exists": true, + "size": 11482, + "sha256": "ee3c247d02f56e1687d03c381e13125d6a3a2a411ac7f202ba8520a4be9f1784" + }, + "test_csv": { + "path": "/data/jialinzhang/SynthesizePipeline-server/DatasetNew/m4/m4-test.csv", + "exists": true, + "size": 11559, + "sha256": "cadb9941124001b8fa7cb1ebae43b70a9ca56294f4df4d3c2f22c164c41757d4" + }, + "profile_json": { + "path": "/data/jialinzhang/SynthesizePipeline-server/DatasetNew/artifacts/data_core/tabular/m4/m4-dataset_profile.json", + "exists": true, + "size": 3336, + "sha256": "83e2764810e4a0e8cdece3a28dbd9134b7c9df6f2e56953e46d024ad2c4e035f" + }, + "contract_json": { + "path": "/data/jialinzhang/SynthesizePipeline-server/DatasetNew/artifacts/data_core/tabular/m4/m4-dataset_contract_v1.json", + "exists": true, + "size": 3810, + "sha256": "c23641b258629a845b164099bd0132886f8f6d0100e990494e0f92540f8987d9" + } + } +} \ No newline at end of file diff --git a/hyperparameter/m4/ctgan/ctgan-m4-20260504_162455/models_50epochs/ctgan_50epochs.pt b/hyperparameter/m4/ctgan/ctgan-m4-20260504_162455/models_50epochs/ctgan_50epochs.pt new file mode 100644 index 0000000000000000000000000000000000000000..74d60aada6757cb50756979c746af4977a01a3d5 --- /dev/null +++ b/hyperparameter/m4/ctgan/ctgan-m4-20260504_162455/models_50epochs/ctgan_50epochs.pt @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:0fcbc1eca52b300da8de0000993e73b4d58d44408c58f5e94824b040a9312f97 +size 280461 diff --git a/hyperparameter/m4/ctgan/ctgan-m4-20260504_162455/models_50epochs/train_20260504_162455.log b/hyperparameter/m4/ctgan/ctgan-m4-20260504_162455/models_50epochs/train_20260504_162455.log new file mode 100644 index 0000000000000000000000000000000000000000..b862c69bf2d88bf63062508f45c2c94c1b1f0a63 --- /dev/null +++ b/hyperparameter/m4/ctgan/ctgan-m4-20260504_162455/models_50epochs/train_20260504_162455.log @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:421ee609e428857108a8ef1840b7d88d9b1a05532c27ba8b20235b9b582126f8 +size 10928 diff --git a/hyperparameter/m4/ctgan/ctgan-m4-20260504_162455/public_gate/normalized_schema_snapshot.json b/hyperparameter/m4/ctgan/ctgan-m4-20260504_162455/public_gate/normalized_schema_snapshot.json new file mode 100644 index 0000000000000000000000000000000000000000..31ed9818686b11907df75e872e4ffbe010330880 --- /dev/null +++ b/hyperparameter/m4/ctgan/ctgan-m4-20260504_162455/public_gate/normalized_schema_snapshot.json @@ -0,0 +1,147 @@ +{ + "dataset_id": "m4", + "target_column": "charges", + "task_type": "regression", + "columns": [ + { + "name": "age", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 47, + "unique_ratio": 0.0212, + "example_values": [ + "46", + "38", + "19", + "27", + "26" + ] + } + }, + { + "name": "sex", + "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.000902, + "example_values": [ + "female", + "male" + ] + } + }, + { + "name": "bmi", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 538, + "unique_ratio": 0.24267, + "example_values": [ + "23.655", + "19.3", + "30.59", + "32.67", + "29.45" + ] + } + }, + { + "name": "children", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 6, + "unique_ratio": 0.002706, + "example_values": [ + "1", + "0", + "3", + "2", + "5" + ] + } + }, + { + "name": "smoker", + "role": "feature", + "semantic_type": "boolean", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 2, + "unique_ratio": 0.000902, + "example_values": [ + "yes", + "no" + ] + } + }, + { + "name": "region", + "role": "feature", + "semantic_type": "categorical", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 4, + "unique_ratio": 0.001804, + "example_values": [ + "northwest", + "southwest", + "southeast", + "northeast" + ] + } + }, + { + "name": "charges", + "role": "target", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 1281, + "unique_ratio": 0.577808, + "example_values": [ + "21677.28345", + "15820.699", + "1639.5631", + "2497.0383", + "2897.3235" + ] + } + } + ] +} \ No newline at end of file diff --git a/hyperparameter/m4/ctgan/ctgan-m4-20260504_162455/public_gate/public_gate_report.json b/hyperparameter/m4/ctgan/ctgan-m4-20260504_162455/public_gate/public_gate_report.json new file mode 100644 index 0000000000000000000000000000000000000000..e7a25408e2574124629ea9437356551e4d6f4790 --- /dev/null +++ b/hyperparameter/m4/ctgan/ctgan-m4-20260504_162455/public_gate/public_gate_report.json @@ -0,0 +1,37 @@ +{ + "dataset_id": "m4", + "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": "charges", + "task_type": "regression", + "input_splits": { + "train": "/data/jialinzhang/SynthesizePipeline-server/DatasetNew/m4/m4-train.csv", + "val": "/data/jialinzhang/SynthesizePipeline-server/DatasetNew/m4/m4-val.csv", + "test": "/data/jialinzhang/SynthesizePipeline-server/DatasetNew/m4/m4-test.csv" + } +} \ No newline at end of file diff --git a/hyperparameter/m4/ctgan/ctgan-m4-20260504_162455/public_gate/staged_input_manifest.json b/hyperparameter/m4/ctgan/ctgan-m4-20260504_162455/public_gate/staged_input_manifest.json new file mode 100644 index 0000000000000000000000000000000000000000..de8fec055242a76a46100b112369488b7a1a3b54 --- /dev/null +++ b/hyperparameter/m4/ctgan/ctgan-m4-20260504_162455/public_gate/staged_input_manifest.json @@ -0,0 +1,152 @@ +{ + "dataset_id": "m4", + "target_column": "charges", + "task_type": "regression", + "train_csv": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/m4/ctgan/ctgan-m4-20260504_162455/staged/public/train.csv", + "val_csv": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/m4/ctgan/ctgan-m4-20260504_162455/staged/public/val.csv", + "test_csv": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/m4/ctgan/ctgan-m4-20260504_162455/staged/public/test.csv", + "features_json": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/m4/ctgan/ctgan-m4-20260504_162455/staged/public/staged_features.json", + "public_gate_report": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/m4/ctgan/ctgan-m4-20260504_162455/public_gate/public_gate_report.json", + "column_schema": [ + { + "name": "age", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 47, + "unique_ratio": 0.0212, + "example_values": [ + "46", + "38", + "19", + "27", + "26" + ] + } + }, + { + "name": "sex", + "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.000902, + "example_values": [ + "female", + "male" + ] + } + }, + { + "name": "bmi", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 538, + "unique_ratio": 0.24267, + "example_values": [ + "23.655", + "19.3", + "30.59", + "32.67", + "29.45" + ] + } + }, + { + "name": "children", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 6, + "unique_ratio": 0.002706, + "example_values": [ + "1", + "0", + "3", + "2", + "5" + ] + } + }, + { + "name": "smoker", + "role": "feature", + "semantic_type": "boolean", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 2, + "unique_ratio": 0.000902, + "example_values": [ + "yes", + "no" + ] + } + }, + { + "name": "region", + "role": "feature", + "semantic_type": "categorical", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 4, + "unique_ratio": 0.001804, + "example_values": [ + "northwest", + "southwest", + "southeast", + "northeast" + ] + } + }, + { + "name": "charges", + "role": "target", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 1281, + "unique_ratio": 0.577808, + "example_values": [ + "21677.28345", + "15820.699", + "1639.5631", + "2497.0383", + "2897.3235" + ] + } + } + ] +} \ No newline at end of file diff --git a/hyperparameter/m4/ctgan/ctgan-m4-20260504_162455/run_config.json b/hyperparameter/m4/ctgan/ctgan-m4-20260504_162455/run_config.json new file mode 100644 index 0000000000000000000000000000000000000000..65b52b73614d057167e888ab36f2fa74e106b161 --- /dev/null +++ b/hyperparameter/m4/ctgan/ctgan-m4-20260504_162455/run_config.json @@ -0,0 +1,46 @@ +{ + "schema_version": 1, + "recorded_at": "2026-05-04T16:24:55", + "dataset_id": "m4", + "model": "ctgan", + "work_dir": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/m4/ctgan/ctgan-m4-20260504_162455", + "dataset_source_requested": "new", + "dataset_source_resolved": "new", + "cli_args": { + "model": "ctgan", + "dataset": "m4", + "dataset_source": "new", + "train": true, + "generate": true, + "num_rows": 0, + "epochs": null, + "output_dir": null, + "model_dir": null, + "work_dir": null, + "resume": false, + "no_stats": false + }, + "resolved": { + "num_rows": 2217, + "model_path": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/m4/ctgan/ctgan-m4-20260504_162455/models_50epochs/ctgan_50epochs.pt", + "output_csv": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/m4/ctgan/ctgan-m4-20260504_162455/ctgan-m4-2217-20260504_162609.csv" + }, + "input_artifacts": { + "public_gate_report": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/m4/ctgan/ctgan-m4-20260504_162455/public_gate/public_gate_report.json", + "public_manifest": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/m4/ctgan/ctgan-m4-20260504_162455/public_gate/staged_input_manifest.json", + "model_manifest": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/m4/ctgan/ctgan-m4-20260504_162455/staged/ctgan/model_input_manifest.json", + "train_csv": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/m4/ctgan/ctgan-m4-20260504_162455/staged/public/train.csv", + "features_json": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/m4/ctgan/ctgan-m4-20260504_162455/staged/public/staged_features.json", + "target_column": "charges", + "task_type": "regression" + }, + "env_overrides": { + "BENCHMARK_CTGAN_GPUS": "device=3", + "CTGAN_BATCH_SIZE": "32", + "CTGAN_DEFAULT_EPOCHS": "50", + "CTGAN_DISCRIMINATOR_DIMS": "16,16", + "CTGAN_EMBEDDING_DIM": "8", + "CTGAN_GENERATOR_DIMS": "16,16", + "CTGAN_PAC": "1" + } +} \ No newline at end of file diff --git a/hyperparameter/m4/ctgan/ctgan-m4-20260504_162455/runtime_result.json b/hyperparameter/m4/ctgan/ctgan-m4-20260504_162455/runtime_result.json new file mode 100644 index 0000000000000000000000000000000000000000..68cb13745d1370732ba3f4f2b3936fde950009e4 --- /dev/null +++ b/hyperparameter/m4/ctgan/ctgan-m4-20260504_162455/runtime_result.json @@ -0,0 +1,27 @@ +{ + "dataset_id": "m4", + "model": "ctgan", + "run_id": "ctgan-m4-20260504_162455", + "public_gate_status": "pass", + "adapter_ready_status": "pass", + "train_status": "success", + "generate_status": "success", + "reason_code": null, + "reason_detail": null, + "artifacts": { + "synthetic_csv": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/m4/ctgan/ctgan-m4-20260504_162455/ctgan-m4-2217-20260504_162609.csv", + "model_path": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/m4/ctgan/ctgan-m4-20260504_162455/models_50epochs/ctgan_50epochs.pt" + }, + "timings": { + "train": { + "started_at": "2026-05-04T16:24:55", + "ended_at": "2026-05-04T16:26:09", + "duration_sec": 74.098 + }, + "generate": { + "started_at": "2026-05-04T16:26:09", + "ended_at": "2026-05-04T16:26:15", + "duration_sec": 5.73 + } + } +} \ No newline at end of file diff --git a/hyperparameter/m4/ctgan/ctgan-m4-20260504_162455/staged/ctgan/adapter_report.json b/hyperparameter/m4/ctgan/ctgan-m4-20260504_162455/staged/ctgan/adapter_report.json new file mode 100644 index 0000000000000000000000000000000000000000..b9d0293168cdd6f75a7982799521ddd525f21883 --- /dev/null +++ b/hyperparameter/m4/ctgan/ctgan-m4-20260504_162455/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-Benchmark-trainonly-v1/m4/ctgan/ctgan-m4-20260504_162455/staged/ctgan/model_input_manifest.json" +} \ No newline at end of file diff --git a/hyperparameter/m4/ctgan/ctgan-m4-20260504_162455/staged/ctgan/adapter_transforms_applied.json b/hyperparameter/m4/ctgan/ctgan-m4-20260504_162455/staged/ctgan/adapter_transforms_applied.json new file mode 100644 index 0000000000000000000000000000000000000000..0637a088a01e8ddab3bf3fa98dbe804cbde1a0dc --- /dev/null +++ b/hyperparameter/m4/ctgan/ctgan-m4-20260504_162455/staged/ctgan/adapter_transforms_applied.json @@ -0,0 +1 @@ +[] \ No newline at end of file diff --git a/hyperparameter/m4/ctgan/ctgan-m4-20260504_162455/staged/ctgan/model_input_manifest.json b/hyperparameter/m4/ctgan/ctgan-m4-20260504_162455/staged/ctgan/model_input_manifest.json new file mode 100644 index 0000000000000000000000000000000000000000..113d24a0e03711e2cee69ee4ebfa63e6f8632a90 --- /dev/null +++ b/hyperparameter/m4/ctgan/ctgan-m4-20260504_162455/staged/ctgan/model_input_manifest.json @@ -0,0 +1,154 @@ +{ + "dataset_id": "m4", + "model": "ctgan", + "target_column": "charges", + "task_type": "regression", + "column_schema": [ + { + "name": "age", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 47, + "unique_ratio": 0.0212, + "example_values": [ + "46", + "38", + "19", + "27", + "26" + ] + } + }, + { + "name": "sex", + "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.000902, + "example_values": [ + "female", + "male" + ] + } + }, + { + "name": "bmi", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 538, + "unique_ratio": 0.24267, + "example_values": [ + "23.655", + "19.3", + "30.59", + "32.67", + "29.45" + ] + } + }, + { + "name": "children", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 6, + "unique_ratio": 0.002706, + "example_values": [ + "1", + "0", + "3", + "2", + "5" + ] + } + }, + { + "name": "smoker", + "role": "feature", + "semantic_type": "boolean", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 2, + "unique_ratio": 0.000902, + "example_values": [ + "yes", + "no" + ] + } + }, + { + "name": "region", + "role": "feature", + "semantic_type": "categorical", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 4, + "unique_ratio": 0.001804, + "example_values": [ + "northwest", + "southwest", + "southeast", + "northeast" + ] + } + }, + { + "name": "charges", + "role": "target", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 1281, + "unique_ratio": 0.577808, + "example_values": [ + "21677.28345", + "15820.699", + "1639.5631", + "2497.0383", + "2897.3235" + ] + } + } + ], + "public_manifest": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/m4/ctgan/ctgan-m4-20260504_162455/public_gate/staged_input_manifest.json", + "train_csv": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/m4/ctgan/ctgan-m4-20260504_162455/staged/public/train.csv", + "val_csv": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/m4/ctgan/ctgan-m4-20260504_162455/staged/public/val.csv", + "test_csv": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/m4/ctgan/ctgan-m4-20260504_162455/staged/public/test.csv", + "features_json": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/m4/ctgan/ctgan-m4-20260504_162455/staged/public/staged_features.json", + "public_gate_report": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/m4/ctgan/ctgan-m4-20260504_162455/public_gate/public_gate_report.json" +} \ No newline at end of file diff --git a/hyperparameter/m4/ctgan/ctgan-m4-20260504_162455/staged/public/staged_features.json b/hyperparameter/m4/ctgan/ctgan-m4-20260504_162455/staged/public/staged_features.json new file mode 100644 index 0000000000000000000000000000000000000000..d6acd098c35111f423f3ffff2cfd1754bc5dfebc --- /dev/null +++ b/hyperparameter/m4/ctgan/ctgan-m4-20260504_162455/staged/public/staged_features.json @@ -0,0 +1,37 @@ +[ + { + "feature_name": "age", + "data_type": "continuous", + "is_target": false + }, + { + "feature_name": "sex", + "data_type": "categorical", + "is_target": false + }, + { + "feature_name": "bmi", + "data_type": "continuous", + "is_target": false + }, + { + "feature_name": "children", + "data_type": "continuous", + "is_target": false + }, + { + "feature_name": "smoker", + "data_type": "binary", + "is_target": false + }, + { + "feature_name": "region", + "data_type": "categorical", + "is_target": false + }, + { + "feature_name": "charges", + "data_type": "continuous", + "is_target": true + } +] \ No newline at end of file diff --git a/hyperparameter/m4/ctgan/ctgan-m4-20260504_162455/staged/public/test.csv b/hyperparameter/m4/ctgan/ctgan-m4-20260504_162455/staged/public/test.csv new file mode 100644 index 0000000000000000000000000000000000000000..c88a2e7cfcd715bb421cb56eb078033da45c4dc8 --- /dev/null +++ b/hyperparameter/m4/ctgan/ctgan-m4-20260504_162455/staged/public/test.csv @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:4c541b677fb2d45c5bc79338eeee9fd8c91484b195a0c2c546c2fbabf113b7ea +size 11298 diff --git a/hyperparameter/m4/ctgan/ctgan-m4-20260504_162455/staged/public/train.csv b/hyperparameter/m4/ctgan/ctgan-m4-20260504_162455/staged/public/train.csv new file mode 100644 index 0000000000000000000000000000000000000000..5a05019d786529e0617291766c4fbe016ca01bf5 --- /dev/null +++ b/hyperparameter/m4/ctgan/ctgan-m4-20260504_162455/staged/public/train.csv @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:614ebfac5f41d6f661aff675fa18c0f933a8d9bcc77ea71b7b2360c2f0155837 +size 90069 diff --git a/hyperparameter/m4/ctgan/ctgan-m4-20260504_162455/staged/public/val.csv b/hyperparameter/m4/ctgan/ctgan-m4-20260504_162455/staged/public/val.csv new file mode 100644 index 0000000000000000000000000000000000000000..d78fe5ad1537c437ba9ac2629f2aa60a6c17e708 --- /dev/null +++ b/hyperparameter/m4/ctgan/ctgan-m4-20260504_162455/staged/public/val.csv @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:e55f5edbe7942ff01630de91a9c70dfbc6445eba76c7b970350364546b67c2d7 +size 11218 diff --git a/hyperparameter/m4/ctgan/ctgan-m4-20260504_162628/_ctgan_generate.py b/hyperparameter/m4/ctgan/ctgan-m4-20260504_162628/_ctgan_generate.py new file mode 100644 index 0000000000000000000000000000000000000000..cdef9a9fbb89b21fb93106f5cba82484dc209f91 --- /dev/null +++ b/hyperparameter/m4/ctgan/ctgan-m4-20260504_162628/_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-Benchmark-trainonly-v1/m4/ctgan/ctgan-m4-20260504_162628/models_100epochs/ctgan_100epochs.pt") +total = 2217 +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-Benchmark-trainonly-v1/m4/ctgan/ctgan-m4-20260504_162628/ctgan-m4-2217-20260504_162744.csv", index=False) +print("[CTGAN] Generated", total, "rows in", len(parts), "chunks ->", "/work/output-Benchmark-trainonly-v1/m4/ctgan/ctgan-m4-20260504_162628/ctgan-m4-2217-20260504_162744.csv") \ No newline at end of file diff --git a/hyperparameter/m4/ctgan/ctgan-m4-20260504_162628/_ctgan_train.py b/hyperparameter/m4/ctgan/ctgan-m4-20260504_162628/_ctgan_train.py new file mode 100644 index 0000000000000000000000000000000000000000..641f6347bdb1791cfb4d69ab521cbb669f678005 --- /dev/null +++ b/hyperparameter/m4/ctgan/ctgan-m4-20260504_162628/_ctgan_train.py @@ -0,0 +1,17 @@ +import pandas as pd +from ctgan.synthesizers.ctgan import CTGAN + +data = pd.read_csv("/work/output-Benchmark-trainonly-v1/m4/ctgan/ctgan-m4-20260504_162628/staged/public/train.csv") +discrete_columns = ['sex', 'smoker', 'region'] +model = CTGAN( + embedding_dim=16, + generator_dim=(32, 32), + discriminator_dim=(32, 32), + batch_size=64, + pac=1, + epochs=100, + verbose=True, +) +model.fit(data, discrete_columns) +model.save("/work/output-Benchmark-trainonly-v1/m4/ctgan/ctgan-m4-20260504_162628/models_100epochs/ctgan_100epochs.pt") +print("[CTGAN] Saved model ->", "/work/output-Benchmark-trainonly-v1/m4/ctgan/ctgan-m4-20260504_162628/models_100epochs/ctgan_100epochs.pt") \ No newline at end of file diff --git a/hyperparameter/m4/ctgan/ctgan-m4-20260504_162628/ctgan-m4-2217-20260504_162744.csv b/hyperparameter/m4/ctgan/ctgan-m4-20260504_162628/ctgan-m4-2217-20260504_162744.csv new file mode 100644 index 0000000000000000000000000000000000000000..324aa30fc8c04f9c70c6622270c46f790870065b --- /dev/null +++ b/hyperparameter/m4/ctgan/ctgan-m4-20260504_162628/ctgan-m4-2217-20260504_162744.csv @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:d4ad246572c9acdde64b136e255d90992eee5bac1408041de15f542602d5f7c5 +size 135924 diff --git a/hyperparameter/m4/ctgan/ctgan-m4-20260504_162628/ctgan_metadata.json b/hyperparameter/m4/ctgan/ctgan-m4-20260504_162628/ctgan_metadata.json new file mode 100644 index 0000000000000000000000000000000000000000..d89b1e0b3095638c982d4d3321d21a8bedcd33ae --- /dev/null +++ b/hyperparameter/m4/ctgan/ctgan-m4-20260504_162628/ctgan_metadata.json @@ -0,0 +1,32 @@ +{ + "columns": [ + { + "name": "age", + "type": "continuous" + }, + { + "name": "sex", + "type": "categorical" + }, + { + "name": "bmi", + "type": "continuous" + }, + { + "name": "children", + "type": "continuous" + }, + { + "name": "smoker", + "type": "categorical" + }, + { + "name": "region", + "type": "categorical" + }, + { + "name": "charges", + "type": "continuous" + } + ] +} \ No newline at end of file diff --git a/hyperparameter/m4/ctgan/ctgan-m4-20260504_162628/gen_20260504_162744.log b/hyperparameter/m4/ctgan/ctgan-m4-20260504_162628/gen_20260504_162744.log new file mode 100644 index 0000000000000000000000000000000000000000..e98d9fa7af6300f34a8e3494acba4027d4a29136 --- /dev/null +++ b/hyperparameter/m4/ctgan/ctgan-m4-20260504_162628/gen_20260504_162744.log @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:c4078474fb8d9cc0dc9820a2d898eb02a6930796acfda171c2dca2cae431ca45 +size 297 diff --git a/hyperparameter/m4/ctgan/ctgan-m4-20260504_162628/input_snapshot.json b/hyperparameter/m4/ctgan/ctgan-m4-20260504_162628/input_snapshot.json new file mode 100644 index 0000000000000000000000000000000000000000..f11278f1ffa8959e7869f70def91d0284f7dd656 --- /dev/null +++ b/hyperparameter/m4/ctgan/ctgan-m4-20260504_162628/input_snapshot.json @@ -0,0 +1,36 @@ +{ + "dataset_id": "m4", + "model": "ctgan", + "inputs": { + "train_csv": { + "path": "/data/jialinzhang/SynthesizePipeline-server/DatasetNew/m4/m4-train.csv", + "exists": true, + "size": 92191, + "sha256": "396b9d409ca21bf4a4cd329bdf5b7796aa0ae6356fa8d89b8eb669b5880b81f1" + }, + "val_csv": { + "path": "/data/jialinzhang/SynthesizePipeline-server/DatasetNew/m4/m4-val.csv", + "exists": true, + "size": 11482, + "sha256": "ee3c247d02f56e1687d03c381e13125d6a3a2a411ac7f202ba8520a4be9f1784" + }, + "test_csv": { + "path": "/data/jialinzhang/SynthesizePipeline-server/DatasetNew/m4/m4-test.csv", + "exists": true, + "size": 11559, + "sha256": "cadb9941124001b8fa7cb1ebae43b70a9ca56294f4df4d3c2f22c164c41757d4" + }, + "profile_json": { + "path": "/data/jialinzhang/SynthesizePipeline-server/DatasetNew/artifacts/data_core/tabular/m4/m4-dataset_profile.json", + "exists": true, + "size": 3336, + "sha256": "83e2764810e4a0e8cdece3a28dbd9134b7c9df6f2e56953e46d024ad2c4e035f" + }, + "contract_json": { + "path": "/data/jialinzhang/SynthesizePipeline-server/DatasetNew/artifacts/data_core/tabular/m4/m4-dataset_contract_v1.json", + "exists": true, + "size": 3810, + "sha256": "c23641b258629a845b164099bd0132886f8f6d0100e990494e0f92540f8987d9" + } + } +} \ No newline at end of file diff --git a/hyperparameter/m4/ctgan/ctgan-m4-20260504_162628/models_100epochs/ctgan_100epochs.pt b/hyperparameter/m4/ctgan/ctgan-m4-20260504_162628/models_100epochs/ctgan_100epochs.pt new file mode 100644 index 0000000000000000000000000000000000000000..c5854a45badcccb4d8052678fe5b87d7fd145019 --- /dev/null +++ b/hyperparameter/m4/ctgan/ctgan-m4-20260504_162628/models_100epochs/ctgan_100epochs.pt @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:29799bc301c47b2edeb651132d03a7091181e08c93c9f9fa3187b2f78aba517c +size 296675 diff --git a/hyperparameter/m4/ctgan/ctgan-m4-20260504_162628/models_100epochs/train_20260504_162628.log b/hyperparameter/m4/ctgan/ctgan-m4-20260504_162628/models_100epochs/train_20260504_162628.log new file mode 100644 index 0000000000000000000000000000000000000000..f77332fe3e25a652b5ed704200376dd7167d6802 --- /dev/null +++ b/hyperparameter/m4/ctgan/ctgan-m4-20260504_162628/models_100epochs/train_20260504_162628.log @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:d8b60ecb9e48817e50d61f794e78bfddf29823d27d102e8ead5ed0b3069ad070 +size 20368 diff --git a/hyperparameter/m4/ctgan/ctgan-m4-20260504_162628/public_gate/normalized_schema_snapshot.json b/hyperparameter/m4/ctgan/ctgan-m4-20260504_162628/public_gate/normalized_schema_snapshot.json new file mode 100644 index 0000000000000000000000000000000000000000..31ed9818686b11907df75e872e4ffbe010330880 --- /dev/null +++ b/hyperparameter/m4/ctgan/ctgan-m4-20260504_162628/public_gate/normalized_schema_snapshot.json @@ -0,0 +1,147 @@ +{ + "dataset_id": "m4", + "target_column": "charges", + "task_type": "regression", + "columns": [ + { + "name": "age", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 47, + "unique_ratio": 0.0212, + "example_values": [ + "46", + "38", + "19", + "27", + "26" + ] + } + }, + { + "name": "sex", + "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.000902, + "example_values": [ + "female", + "male" + ] + } + }, + { + "name": "bmi", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 538, + "unique_ratio": 0.24267, + "example_values": [ + "23.655", + "19.3", + "30.59", + "32.67", + "29.45" + ] + } + }, + { + "name": "children", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 6, + "unique_ratio": 0.002706, + "example_values": [ + "1", + "0", + "3", + "2", + "5" + ] + } + }, + { + "name": "smoker", + "role": "feature", + "semantic_type": "boolean", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 2, + "unique_ratio": 0.000902, + "example_values": [ + "yes", + "no" + ] + } + }, + { + "name": "region", + "role": "feature", + "semantic_type": "categorical", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 4, + "unique_ratio": 0.001804, + "example_values": [ + "northwest", + "southwest", + "southeast", + "northeast" + ] + } + }, + { + "name": "charges", + "role": "target", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 1281, + "unique_ratio": 0.577808, + "example_values": [ + "21677.28345", + "15820.699", + "1639.5631", + "2497.0383", + "2897.3235" + ] + } + } + ] +} \ No newline at end of file diff --git a/hyperparameter/m4/ctgan/ctgan-m4-20260504_162628/public_gate/public_gate_report.json b/hyperparameter/m4/ctgan/ctgan-m4-20260504_162628/public_gate/public_gate_report.json new file mode 100644 index 0000000000000000000000000000000000000000..e7a25408e2574124629ea9437356551e4d6f4790 --- /dev/null +++ b/hyperparameter/m4/ctgan/ctgan-m4-20260504_162628/public_gate/public_gate_report.json @@ -0,0 +1,37 @@ +{ + "dataset_id": "m4", + "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": "charges", + "task_type": "regression", + "input_splits": { + "train": "/data/jialinzhang/SynthesizePipeline-server/DatasetNew/m4/m4-train.csv", + "val": "/data/jialinzhang/SynthesizePipeline-server/DatasetNew/m4/m4-val.csv", + "test": "/data/jialinzhang/SynthesizePipeline-server/DatasetNew/m4/m4-test.csv" + } +} \ No newline at end of file diff --git a/hyperparameter/m4/ctgan/ctgan-m4-20260504_162628/public_gate/staged_input_manifest.json b/hyperparameter/m4/ctgan/ctgan-m4-20260504_162628/public_gate/staged_input_manifest.json new file mode 100644 index 0000000000000000000000000000000000000000..951a91deb548648001acebfdf0cf14ab1aac1da0 --- /dev/null +++ b/hyperparameter/m4/ctgan/ctgan-m4-20260504_162628/public_gate/staged_input_manifest.json @@ -0,0 +1,152 @@ +{ + "dataset_id": "m4", + "target_column": "charges", + "task_type": "regression", + "train_csv": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/m4/ctgan/ctgan-m4-20260504_162628/staged/public/train.csv", + "val_csv": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/m4/ctgan/ctgan-m4-20260504_162628/staged/public/val.csv", + "test_csv": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/m4/ctgan/ctgan-m4-20260504_162628/staged/public/test.csv", + "features_json": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/m4/ctgan/ctgan-m4-20260504_162628/staged/public/staged_features.json", + "public_gate_report": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/m4/ctgan/ctgan-m4-20260504_162628/public_gate/public_gate_report.json", + "column_schema": [ + { + "name": "age", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 47, + "unique_ratio": 0.0212, + "example_values": [ + "46", + "38", + "19", + "27", + "26" + ] + } + }, + { + "name": "sex", + "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.000902, + "example_values": [ + "female", + "male" + ] + } + }, + { + "name": "bmi", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 538, + "unique_ratio": 0.24267, + "example_values": [ + "23.655", + "19.3", + "30.59", + "32.67", + "29.45" + ] + } + }, + { + "name": "children", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 6, + "unique_ratio": 0.002706, + "example_values": [ + "1", + "0", + "3", + "2", + "5" + ] + } + }, + { + "name": "smoker", + "role": "feature", + "semantic_type": "boolean", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 2, + "unique_ratio": 0.000902, + "example_values": [ + "yes", + "no" + ] + } + }, + { + "name": "region", + "role": "feature", + "semantic_type": "categorical", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 4, + "unique_ratio": 0.001804, + "example_values": [ + "northwest", + "southwest", + "southeast", + "northeast" + ] + } + }, + { + "name": "charges", + "role": "target", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 1281, + "unique_ratio": 0.577808, + "example_values": [ + "21677.28345", + "15820.699", + "1639.5631", + "2497.0383", + "2897.3235" + ] + } + } + ] +} \ No newline at end of file diff --git a/hyperparameter/m4/ctgan/ctgan-m4-20260504_162628/run_config.json b/hyperparameter/m4/ctgan/ctgan-m4-20260504_162628/run_config.json new file mode 100644 index 0000000000000000000000000000000000000000..99605f6c543fb6ce9f66a0a604a21f03d390d63f --- /dev/null +++ b/hyperparameter/m4/ctgan/ctgan-m4-20260504_162628/run_config.json @@ -0,0 +1,46 @@ +{ + "schema_version": 1, + "recorded_at": "2026-05-04T16:26:28", + "dataset_id": "m4", + "model": "ctgan", + "work_dir": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/m4/ctgan/ctgan-m4-20260504_162628", + "dataset_source_requested": "new", + "dataset_source_resolved": "new", + "cli_args": { + "model": "ctgan", + "dataset": "m4", + "dataset_source": "new", + "train": true, + "generate": true, + "num_rows": 0, + "epochs": null, + "output_dir": null, + "model_dir": null, + "work_dir": null, + "resume": false, + "no_stats": false + }, + "resolved": { + "num_rows": 2217, + "model_path": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/m4/ctgan/ctgan-m4-20260504_162628/models_100epochs/ctgan_100epochs.pt", + "output_csv": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/m4/ctgan/ctgan-m4-20260504_162628/ctgan-m4-2217-20260504_162744.csv" + }, + "input_artifacts": { + "public_gate_report": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/m4/ctgan/ctgan-m4-20260504_162628/public_gate/public_gate_report.json", + "public_manifest": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/m4/ctgan/ctgan-m4-20260504_162628/public_gate/staged_input_manifest.json", + "model_manifest": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/m4/ctgan/ctgan-m4-20260504_162628/staged/ctgan/model_input_manifest.json", + "train_csv": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/m4/ctgan/ctgan-m4-20260504_162628/staged/public/train.csv", + "features_json": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/m4/ctgan/ctgan-m4-20260504_162628/staged/public/staged_features.json", + "target_column": "charges", + "task_type": "regression" + }, + "env_overrides": { + "BENCHMARK_CTGAN_GPUS": "device=3", + "CTGAN_BATCH_SIZE": "64", + "CTGAN_DEFAULT_EPOCHS": "100", + "CTGAN_DISCRIMINATOR_DIMS": "32,32", + "CTGAN_EMBEDDING_DIM": "16", + "CTGAN_GENERATOR_DIMS": "32,32", + "CTGAN_PAC": "1" + } +} \ No newline at end of file diff --git a/hyperparameter/m4/ctgan/ctgan-m4-20260504_162628/runtime_result.json b/hyperparameter/m4/ctgan/ctgan-m4-20260504_162628/runtime_result.json new file mode 100644 index 0000000000000000000000000000000000000000..b2c7143635c4f190a941973d83a91fa0e27ac498 --- /dev/null +++ b/hyperparameter/m4/ctgan/ctgan-m4-20260504_162628/runtime_result.json @@ -0,0 +1,27 @@ +{ + "dataset_id": "m4", + "model": "ctgan", + "run_id": "ctgan-m4-20260504_162628", + "public_gate_status": "pass", + "adapter_ready_status": "pass", + "train_status": "success", + "generate_status": "success", + "reason_code": null, + "reason_detail": null, + "artifacts": { + "synthetic_csv": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/m4/ctgan/ctgan-m4-20260504_162628/ctgan-m4-2217-20260504_162744.csv", + "model_path": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/m4/ctgan/ctgan-m4-20260504_162628/models_100epochs/ctgan_100epochs.pt" + }, + "timings": { + "train": { + "started_at": "2026-05-04T16:26:28", + "ended_at": "2026-05-04T16:27:44", + "duration_sec": 76.234 + }, + "generate": { + "started_at": "2026-05-04T16:27:44", + "ended_at": "2026-05-04T16:27:50", + "duration_sec": 5.742 + } + } +} \ No newline at end of file diff --git a/hyperparameter/m4/ctgan/ctgan-m4-20260504_162628/staged/ctgan/adapter_report.json b/hyperparameter/m4/ctgan/ctgan-m4-20260504_162628/staged/ctgan/adapter_report.json new file mode 100644 index 0000000000000000000000000000000000000000..9d5f3fbb9ed2a280ba0125577a7ef0295565b112 --- /dev/null +++ b/hyperparameter/m4/ctgan/ctgan-m4-20260504_162628/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-Benchmark-trainonly-v1/m4/ctgan/ctgan-m4-20260504_162628/staged/ctgan/model_input_manifest.json" +} \ No newline at end of file diff --git a/hyperparameter/m4/ctgan/ctgan-m4-20260504_162628/staged/ctgan/adapter_transforms_applied.json b/hyperparameter/m4/ctgan/ctgan-m4-20260504_162628/staged/ctgan/adapter_transforms_applied.json new file mode 100644 index 0000000000000000000000000000000000000000..0637a088a01e8ddab3bf3fa98dbe804cbde1a0dc --- /dev/null +++ b/hyperparameter/m4/ctgan/ctgan-m4-20260504_162628/staged/ctgan/adapter_transforms_applied.json @@ -0,0 +1 @@ +[] \ No newline at end of file diff --git a/hyperparameter/m4/ctgan/ctgan-m4-20260504_162628/staged/ctgan/model_input_manifest.json b/hyperparameter/m4/ctgan/ctgan-m4-20260504_162628/staged/ctgan/model_input_manifest.json new file mode 100644 index 0000000000000000000000000000000000000000..643730be588f337790c3330908ab3b54be6a6105 --- /dev/null +++ b/hyperparameter/m4/ctgan/ctgan-m4-20260504_162628/staged/ctgan/model_input_manifest.json @@ -0,0 +1,154 @@ +{ + "dataset_id": "m4", + "model": "ctgan", + "target_column": "charges", + "task_type": "regression", + "column_schema": [ + { + "name": "age", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 47, + "unique_ratio": 0.0212, + "example_values": [ + "46", + "38", + "19", + "27", + "26" + ] + } + }, + { + "name": "sex", + "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.000902, + "example_values": [ + "female", + "male" + ] + } + }, + { + "name": "bmi", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 538, + "unique_ratio": 0.24267, + "example_values": [ + "23.655", + "19.3", + "30.59", + "32.67", + "29.45" + ] + } + }, + { + "name": "children", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 6, + "unique_ratio": 0.002706, + "example_values": [ + "1", + "0", + "3", + "2", + "5" + ] + } + }, + { + "name": "smoker", + "role": "feature", + "semantic_type": "boolean", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 2, + "unique_ratio": 0.000902, + "example_values": [ + "yes", + "no" + ] + } + }, + { + "name": "region", + "role": "feature", + "semantic_type": "categorical", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 4, + "unique_ratio": 0.001804, + "example_values": [ + "northwest", + "southwest", + "southeast", + "northeast" + ] + } + }, + { + "name": "charges", + "role": "target", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 1281, + "unique_ratio": 0.577808, + "example_values": [ + "21677.28345", + "15820.699", + "1639.5631", + "2497.0383", + "2897.3235" + ] + } + } + ], + "public_manifest": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/m4/ctgan/ctgan-m4-20260504_162628/public_gate/staged_input_manifest.json", + "train_csv": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/m4/ctgan/ctgan-m4-20260504_162628/staged/public/train.csv", + "val_csv": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/m4/ctgan/ctgan-m4-20260504_162628/staged/public/val.csv", + "test_csv": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/m4/ctgan/ctgan-m4-20260504_162628/staged/public/test.csv", + "features_json": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/m4/ctgan/ctgan-m4-20260504_162628/staged/public/staged_features.json", + "public_gate_report": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/m4/ctgan/ctgan-m4-20260504_162628/public_gate/public_gate_report.json" +} \ No newline at end of file diff --git a/hyperparameter/m4/ctgan/ctgan-m4-20260504_162628/staged/public/staged_features.json b/hyperparameter/m4/ctgan/ctgan-m4-20260504_162628/staged/public/staged_features.json new file mode 100644 index 0000000000000000000000000000000000000000..d6acd098c35111f423f3ffff2cfd1754bc5dfebc --- /dev/null +++ b/hyperparameter/m4/ctgan/ctgan-m4-20260504_162628/staged/public/staged_features.json @@ -0,0 +1,37 @@ +[ + { + "feature_name": "age", + "data_type": "continuous", + "is_target": false + }, + { + "feature_name": "sex", + "data_type": "categorical", + "is_target": false + }, + { + "feature_name": "bmi", + "data_type": "continuous", + "is_target": false + }, + { + "feature_name": "children", + "data_type": "continuous", + "is_target": false + }, + { + "feature_name": "smoker", + "data_type": "binary", + "is_target": false + }, + { + "feature_name": "region", + "data_type": "categorical", + "is_target": false + }, + { + "feature_name": "charges", + "data_type": "continuous", + "is_target": true + } +] \ No newline at end of file diff --git a/hyperparameter/m4/ctgan/ctgan-m4-20260504_162628/staged/public/test.csv b/hyperparameter/m4/ctgan/ctgan-m4-20260504_162628/staged/public/test.csv new file mode 100644 index 0000000000000000000000000000000000000000..c88a2e7cfcd715bb421cb56eb078033da45c4dc8 --- /dev/null +++ b/hyperparameter/m4/ctgan/ctgan-m4-20260504_162628/staged/public/test.csv @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:4c541b677fb2d45c5bc79338eeee9fd8c91484b195a0c2c546c2fbabf113b7ea +size 11298 diff --git a/hyperparameter/m4/ctgan/ctgan-m4-20260504_162628/staged/public/train.csv b/hyperparameter/m4/ctgan/ctgan-m4-20260504_162628/staged/public/train.csv new file mode 100644 index 0000000000000000000000000000000000000000..5a05019d786529e0617291766c4fbe016ca01bf5 --- /dev/null +++ b/hyperparameter/m4/ctgan/ctgan-m4-20260504_162628/staged/public/train.csv @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:614ebfac5f41d6f661aff675fa18c0f933a8d9bcc77ea71b7b2360c2f0155837 +size 90069 diff --git a/hyperparameter/m4/ctgan/ctgan-m4-20260504_162628/staged/public/val.csv b/hyperparameter/m4/ctgan/ctgan-m4-20260504_162628/staged/public/val.csv new file mode 100644 index 0000000000000000000000000000000000000000..d78fe5ad1537c437ba9ac2629f2aa60a6c17e708 --- /dev/null +++ b/hyperparameter/m4/ctgan/ctgan-m4-20260504_162628/staged/public/val.csv @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:e55f5edbe7942ff01630de91a9c70dfbc6445eba76c7b970350364546b67c2d7 +size 11218 diff --git a/hyperparameter/m4/ctgan/ctgan-m4-20260504_162802/_ctgan_generate.py b/hyperparameter/m4/ctgan/ctgan-m4-20260504_162802/_ctgan_generate.py new file mode 100644 index 0000000000000000000000000000000000000000..56154cfced3a7c24b394769111b46be23741c05f --- /dev/null +++ b/hyperparameter/m4/ctgan/ctgan-m4-20260504_162802/_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-Benchmark-trainonly-v1/m4/ctgan/ctgan-m4-20260504_162802/models_150epochs/ctgan_150epochs.pt") +total = 2217 +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-Benchmark-trainonly-v1/m4/ctgan/ctgan-m4-20260504_162802/ctgan-m4-2217-20260504_162901.csv", index=False) +print("[CTGAN] Generated", total, "rows in", len(parts), "chunks ->", "/work/output-Benchmark-trainonly-v1/m4/ctgan/ctgan-m4-20260504_162802/ctgan-m4-2217-20260504_162901.csv") \ No newline at end of file diff --git a/hyperparameter/m4/ctgan/ctgan-m4-20260504_162802/_ctgan_train.py b/hyperparameter/m4/ctgan/ctgan-m4-20260504_162802/_ctgan_train.py new file mode 100644 index 0000000000000000000000000000000000000000..b461b498a3b3fe0aa2e514b9cbe2736069c01a87 --- /dev/null +++ b/hyperparameter/m4/ctgan/ctgan-m4-20260504_162802/_ctgan_train.py @@ -0,0 +1,17 @@ +import pandas as pd +from ctgan.synthesizers.ctgan import CTGAN + +data = pd.read_csv("/work/output-Benchmark-trainonly-v1/m4/ctgan/ctgan-m4-20260504_162802/staged/public/train.csv") +discrete_columns = ['sex', 'smoker', 'region'] +model = CTGAN( + embedding_dim=32, + generator_dim=(64, 64), + discriminator_dim=(64, 64), + batch_size=128, + pac=1, + epochs=150, + verbose=True, +) +model.fit(data, discrete_columns) +model.save("/work/output-Benchmark-trainonly-v1/m4/ctgan/ctgan-m4-20260504_162802/models_150epochs/ctgan_150epochs.pt") +print("[CTGAN] Saved model ->", "/work/output-Benchmark-trainonly-v1/m4/ctgan/ctgan-m4-20260504_162802/models_150epochs/ctgan_150epochs.pt") \ No newline at end of file diff --git a/hyperparameter/m4/ctgan/ctgan-m4-20260504_162802/ctgan-m4-2217-20260504_162901.csv b/hyperparameter/m4/ctgan/ctgan-m4-20260504_162802/ctgan-m4-2217-20260504_162901.csv new file mode 100644 index 0000000000000000000000000000000000000000..50880bc8444a2e81313982a10d35af8dd5ecc7c4 --- /dev/null +++ b/hyperparameter/m4/ctgan/ctgan-m4-20260504_162802/ctgan-m4-2217-20260504_162901.csv @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:384120f54add6d314fafdc5938da22645316ce9201f4847812c063015d105e86 +size 135501 diff --git a/hyperparameter/m4/ctgan/ctgan-m4-20260504_162802/ctgan_metadata.json b/hyperparameter/m4/ctgan/ctgan-m4-20260504_162802/ctgan_metadata.json new file mode 100644 index 0000000000000000000000000000000000000000..d89b1e0b3095638c982d4d3321d21a8bedcd33ae --- /dev/null +++ b/hyperparameter/m4/ctgan/ctgan-m4-20260504_162802/ctgan_metadata.json @@ -0,0 +1,32 @@ +{ + "columns": [ + { + "name": "age", + "type": "continuous" + }, + { + "name": "sex", + "type": "categorical" + }, + { + "name": "bmi", + "type": "continuous" + }, + { + "name": "children", + "type": "continuous" + }, + { + "name": "smoker", + "type": "categorical" + }, + { + "name": "region", + "type": "categorical" + }, + { + "name": "charges", + "type": "continuous" + } + ] +} \ No newline at end of file diff --git a/hyperparameter/m4/ctgan/ctgan-m4-20260504_162802/gen_20260504_162901.log b/hyperparameter/m4/ctgan/ctgan-m4-20260504_162802/gen_20260504_162901.log new file mode 100644 index 0000000000000000000000000000000000000000..2c8740823b955b36adbc1e5f820b0819bea3b9bf --- /dev/null +++ b/hyperparameter/m4/ctgan/ctgan-m4-20260504_162802/gen_20260504_162901.log @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:53c84f13415a31957dfe62320cf0a57fc913c8b4622039b492c928ea4ee09517 +size 297 diff --git a/hyperparameter/m4/ctgan/ctgan-m4-20260504_162802/input_snapshot.json b/hyperparameter/m4/ctgan/ctgan-m4-20260504_162802/input_snapshot.json new file mode 100644 index 0000000000000000000000000000000000000000..f11278f1ffa8959e7869f70def91d0284f7dd656 --- /dev/null +++ b/hyperparameter/m4/ctgan/ctgan-m4-20260504_162802/input_snapshot.json @@ -0,0 +1,36 @@ +{ + "dataset_id": "m4", + "model": "ctgan", + "inputs": { + "train_csv": { + "path": "/data/jialinzhang/SynthesizePipeline-server/DatasetNew/m4/m4-train.csv", + "exists": true, + "size": 92191, + "sha256": "396b9d409ca21bf4a4cd329bdf5b7796aa0ae6356fa8d89b8eb669b5880b81f1" + }, + "val_csv": { + "path": "/data/jialinzhang/SynthesizePipeline-server/DatasetNew/m4/m4-val.csv", + "exists": true, + "size": 11482, + "sha256": "ee3c247d02f56e1687d03c381e13125d6a3a2a411ac7f202ba8520a4be9f1784" + }, + "test_csv": { + "path": "/data/jialinzhang/SynthesizePipeline-server/DatasetNew/m4/m4-test.csv", + "exists": true, + "size": 11559, + "sha256": "cadb9941124001b8fa7cb1ebae43b70a9ca56294f4df4d3c2f22c164c41757d4" + }, + "profile_json": { + "path": "/data/jialinzhang/SynthesizePipeline-server/DatasetNew/artifacts/data_core/tabular/m4/m4-dataset_profile.json", + "exists": true, + "size": 3336, + "sha256": "83e2764810e4a0e8cdece3a28dbd9134b7c9df6f2e56953e46d024ad2c4e035f" + }, + "contract_json": { + "path": "/data/jialinzhang/SynthesizePipeline-server/DatasetNew/artifacts/data_core/tabular/m4/m4-dataset_contract_v1.json", + "exists": true, + "size": 3810, + "sha256": "c23641b258629a845b164099bd0132886f8f6d0100e990494e0f92540f8987d9" + } + } +} \ No newline at end of file diff --git a/hyperparameter/m4/ctgan/ctgan-m4-20260504_162802/models_150epochs/ctgan_150epochs.pt b/hyperparameter/m4/ctgan/ctgan-m4-20260504_162802/models_150epochs/ctgan_150epochs.pt new file mode 100644 index 0000000000000000000000000000000000000000..217f090ca1b40d37dd79db4d92718f4b8ade52d1 --- /dev/null +++ b/hyperparameter/m4/ctgan/ctgan-m4-20260504_162802/models_150epochs/ctgan_150epochs.pt @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:a5f0ddb51de8e66d1bb73ba247bb8d3781b7eb35a4fbd45c3e76624bbf2adb18 +size 339811 diff --git a/hyperparameter/m4/ctgan/ctgan-m4-20260504_162802/models_150epochs/train_20260504_162802.log b/hyperparameter/m4/ctgan/ctgan-m4-20260504_162802/models_150epochs/train_20260504_162802.log new file mode 100644 index 0000000000000000000000000000000000000000..c61563e139d4cee1fd2b83fbc0d7e3c8fdf9d1a4 --- /dev/null +++ b/hyperparameter/m4/ctgan/ctgan-m4-20260504_162802/models_150epochs/train_20260504_162802.log @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:621ab279edd3d52657cce8c48d67b29b97b292b746ad59317fcc87329dbf9f98 +size 29629 diff --git a/hyperparameter/m4/ctgan/ctgan-m4-20260504_162802/public_gate/normalized_schema_snapshot.json b/hyperparameter/m4/ctgan/ctgan-m4-20260504_162802/public_gate/normalized_schema_snapshot.json new file mode 100644 index 0000000000000000000000000000000000000000..31ed9818686b11907df75e872e4ffbe010330880 --- /dev/null +++ b/hyperparameter/m4/ctgan/ctgan-m4-20260504_162802/public_gate/normalized_schema_snapshot.json @@ -0,0 +1,147 @@ +{ + "dataset_id": "m4", + "target_column": "charges", + "task_type": "regression", + "columns": [ + { + "name": "age", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 47, + "unique_ratio": 0.0212, + "example_values": [ + "46", + "38", + "19", + "27", + "26" + ] + } + }, + { + "name": "sex", + "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.000902, + "example_values": [ + "female", + "male" + ] + } + }, + { + "name": "bmi", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 538, + "unique_ratio": 0.24267, + "example_values": [ + "23.655", + "19.3", + "30.59", + "32.67", + "29.45" + ] + } + }, + { + "name": "children", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 6, + "unique_ratio": 0.002706, + "example_values": [ + "1", + "0", + "3", + "2", + "5" + ] + } + }, + { + "name": "smoker", + "role": "feature", + "semantic_type": "boolean", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 2, + "unique_ratio": 0.000902, + "example_values": [ + "yes", + "no" + ] + } + }, + { + "name": "region", + "role": "feature", + "semantic_type": "categorical", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 4, + "unique_ratio": 0.001804, + "example_values": [ + "northwest", + "southwest", + "southeast", + "northeast" + ] + } + }, + { + "name": "charges", + "role": "target", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 1281, + "unique_ratio": 0.577808, + "example_values": [ + "21677.28345", + "15820.699", + "1639.5631", + "2497.0383", + "2897.3235" + ] + } + } + ] +} \ No newline at end of file diff --git a/hyperparameter/m4/ctgan/ctgan-m4-20260504_162802/public_gate/public_gate_report.json b/hyperparameter/m4/ctgan/ctgan-m4-20260504_162802/public_gate/public_gate_report.json new file mode 100644 index 0000000000000000000000000000000000000000..e7a25408e2574124629ea9437356551e4d6f4790 --- /dev/null +++ b/hyperparameter/m4/ctgan/ctgan-m4-20260504_162802/public_gate/public_gate_report.json @@ -0,0 +1,37 @@ +{ + "dataset_id": "m4", + "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": "charges", + "task_type": "regression", + "input_splits": { + "train": "/data/jialinzhang/SynthesizePipeline-server/DatasetNew/m4/m4-train.csv", + "val": "/data/jialinzhang/SynthesizePipeline-server/DatasetNew/m4/m4-val.csv", + "test": "/data/jialinzhang/SynthesizePipeline-server/DatasetNew/m4/m4-test.csv" + } +} \ No newline at end of file diff --git a/hyperparameter/m4/ctgan/ctgan-m4-20260504_162802/public_gate/staged_input_manifest.json b/hyperparameter/m4/ctgan/ctgan-m4-20260504_162802/public_gate/staged_input_manifest.json new file mode 100644 index 0000000000000000000000000000000000000000..a7acbe7288ea212067cd072ed988c4511e9ae1c5 --- /dev/null +++ b/hyperparameter/m4/ctgan/ctgan-m4-20260504_162802/public_gate/staged_input_manifest.json @@ -0,0 +1,152 @@ +{ + "dataset_id": "m4", + "target_column": "charges", + "task_type": "regression", + "train_csv": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/m4/ctgan/ctgan-m4-20260504_162802/staged/public/train.csv", + "val_csv": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/m4/ctgan/ctgan-m4-20260504_162802/staged/public/val.csv", + "test_csv": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/m4/ctgan/ctgan-m4-20260504_162802/staged/public/test.csv", + "features_json": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/m4/ctgan/ctgan-m4-20260504_162802/staged/public/staged_features.json", + "public_gate_report": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/m4/ctgan/ctgan-m4-20260504_162802/public_gate/public_gate_report.json", + "column_schema": [ + { + "name": "age", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 47, + "unique_ratio": 0.0212, + "example_values": [ + "46", + "38", + "19", + "27", + "26" + ] + } + }, + { + "name": "sex", + "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.000902, + "example_values": [ + "female", + "male" + ] + } + }, + { + "name": "bmi", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 538, + "unique_ratio": 0.24267, + "example_values": [ + "23.655", + "19.3", + "30.59", + "32.67", + "29.45" + ] + } + }, + { + "name": "children", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 6, + "unique_ratio": 0.002706, + "example_values": [ + "1", + "0", + "3", + "2", + "5" + ] + } + }, + { + "name": "smoker", + "role": "feature", + "semantic_type": "boolean", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 2, + "unique_ratio": 0.000902, + "example_values": [ + "yes", + "no" + ] + } + }, + { + "name": "region", + "role": "feature", + "semantic_type": "categorical", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 4, + "unique_ratio": 0.001804, + "example_values": [ + "northwest", + "southwest", + "southeast", + "northeast" + ] + } + }, + { + "name": "charges", + "role": "target", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 1281, + "unique_ratio": 0.577808, + "example_values": [ + "21677.28345", + "15820.699", + "1639.5631", + "2497.0383", + "2897.3235" + ] + } + } + ] +} \ No newline at end of file diff --git a/hyperparameter/m4/ctgan/ctgan-m4-20260504_162802/run_config.json b/hyperparameter/m4/ctgan/ctgan-m4-20260504_162802/run_config.json new file mode 100644 index 0000000000000000000000000000000000000000..7199dfd8d3dc5af78632834ddd98a1a2b0af2579 --- /dev/null +++ b/hyperparameter/m4/ctgan/ctgan-m4-20260504_162802/run_config.json @@ -0,0 +1,46 @@ +{ + "schema_version": 1, + "recorded_at": "2026-05-04T16:28:02", + "dataset_id": "m4", + "model": "ctgan", + "work_dir": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/m4/ctgan/ctgan-m4-20260504_162802", + "dataset_source_requested": "new", + "dataset_source_resolved": "new", + "cli_args": { + "model": "ctgan", + "dataset": "m4", + "dataset_source": "new", + "train": true, + "generate": true, + "num_rows": 0, + "epochs": null, + "output_dir": null, + "model_dir": null, + "work_dir": null, + "resume": false, + "no_stats": false + }, + "resolved": { + "num_rows": 2217, + "model_path": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/m4/ctgan/ctgan-m4-20260504_162802/models_150epochs/ctgan_150epochs.pt", + "output_csv": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/m4/ctgan/ctgan-m4-20260504_162802/ctgan-m4-2217-20260504_162901.csv" + }, + "input_artifacts": { + "public_gate_report": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/m4/ctgan/ctgan-m4-20260504_162802/public_gate/public_gate_report.json", + "public_manifest": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/m4/ctgan/ctgan-m4-20260504_162802/public_gate/staged_input_manifest.json", + "model_manifest": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/m4/ctgan/ctgan-m4-20260504_162802/staged/ctgan/model_input_manifest.json", + "train_csv": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/m4/ctgan/ctgan-m4-20260504_162802/staged/public/train.csv", + "features_json": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/m4/ctgan/ctgan-m4-20260504_162802/staged/public/staged_features.json", + "target_column": "charges", + "task_type": "regression" + }, + "env_overrides": { + "BENCHMARK_CTGAN_GPUS": "device=3", + "CTGAN_BATCH_SIZE": "128", + "CTGAN_DEFAULT_EPOCHS": "150", + "CTGAN_DISCRIMINATOR_DIMS": "64,64", + "CTGAN_EMBEDDING_DIM": "32", + "CTGAN_GENERATOR_DIMS": "64,64", + "CTGAN_PAC": "1" + } +} \ No newline at end of file diff --git a/hyperparameter/m4/ctgan/ctgan-m4-20260504_162802/runtime_result.json b/hyperparameter/m4/ctgan/ctgan-m4-20260504_162802/runtime_result.json new file mode 100644 index 0000000000000000000000000000000000000000..1d742290655adc88c195d0a4d1430817f337102b --- /dev/null +++ b/hyperparameter/m4/ctgan/ctgan-m4-20260504_162802/runtime_result.json @@ -0,0 +1,27 @@ +{ + "dataset_id": "m4", + "model": "ctgan", + "run_id": "ctgan-m4-20260504_162802", + "public_gate_status": "pass", + "adapter_ready_status": "pass", + "train_status": "success", + "generate_status": "success", + "reason_code": null, + "reason_detail": null, + "artifacts": { + "synthetic_csv": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/m4/ctgan/ctgan-m4-20260504_162802/ctgan-m4-2217-20260504_162901.csv", + "model_path": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/m4/ctgan/ctgan-m4-20260504_162802/models_150epochs/ctgan_150epochs.pt" + }, + "timings": { + "train": { + "started_at": "2026-05-04T16:28:02", + "ended_at": "2026-05-04T16:29:01", + "duration_sec": 58.433 + }, + "generate": { + "started_at": "2026-05-04T16:29:01", + "ended_at": "2026-05-04T16:29:07", + "duration_sec": 6.047 + } + } +} \ No newline at end of file diff --git a/hyperparameter/m4/ctgan/ctgan-m4-20260504_162802/staged/ctgan/adapter_report.json b/hyperparameter/m4/ctgan/ctgan-m4-20260504_162802/staged/ctgan/adapter_report.json new file mode 100644 index 0000000000000000000000000000000000000000..c3029518606f6993d8f6e8c961a0afd76cf5989b --- /dev/null +++ b/hyperparameter/m4/ctgan/ctgan-m4-20260504_162802/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-Benchmark-trainonly-v1/m4/ctgan/ctgan-m4-20260504_162802/staged/ctgan/model_input_manifest.json" +} \ No newline at end of file diff --git a/hyperparameter/m4/ctgan/ctgan-m4-20260504_162802/staged/ctgan/adapter_transforms_applied.json b/hyperparameter/m4/ctgan/ctgan-m4-20260504_162802/staged/ctgan/adapter_transforms_applied.json new file mode 100644 index 0000000000000000000000000000000000000000..0637a088a01e8ddab3bf3fa98dbe804cbde1a0dc --- /dev/null +++ b/hyperparameter/m4/ctgan/ctgan-m4-20260504_162802/staged/ctgan/adapter_transforms_applied.json @@ -0,0 +1 @@ +[] \ No newline at end of file diff --git a/hyperparameter/m4/ctgan/ctgan-m4-20260504_162802/staged/ctgan/model_input_manifest.json b/hyperparameter/m4/ctgan/ctgan-m4-20260504_162802/staged/ctgan/model_input_manifest.json new file mode 100644 index 0000000000000000000000000000000000000000..b322f966a05e8955544dcb79ac90ae5da186b160 --- /dev/null +++ b/hyperparameter/m4/ctgan/ctgan-m4-20260504_162802/staged/ctgan/model_input_manifest.json @@ -0,0 +1,154 @@ +{ + "dataset_id": "m4", + "model": "ctgan", + "target_column": "charges", + "task_type": "regression", + "column_schema": [ + { + "name": "age", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 47, + "unique_ratio": 0.0212, + "example_values": [ + "46", + "38", + "19", + "27", + "26" + ] + } + }, + { + "name": "sex", + "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.000902, + "example_values": [ + "female", + "male" + ] + } + }, + { + "name": "bmi", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 538, + "unique_ratio": 0.24267, + "example_values": [ + "23.655", + "19.3", + "30.59", + "32.67", + "29.45" + ] + } + }, + { + "name": "children", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 6, + "unique_ratio": 0.002706, + "example_values": [ + "1", + "0", + "3", + "2", + "5" + ] + } + }, + { + "name": "smoker", + "role": "feature", + "semantic_type": "boolean", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 2, + "unique_ratio": 0.000902, + "example_values": [ + "yes", + "no" + ] + } + }, + { + "name": "region", + "role": "feature", + "semantic_type": "categorical", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 4, + "unique_ratio": 0.001804, + "example_values": [ + "northwest", + "southwest", + "southeast", + "northeast" + ] + } + }, + { + "name": "charges", + "role": "target", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 1281, + "unique_ratio": 0.577808, + "example_values": [ + "21677.28345", + "15820.699", + "1639.5631", + "2497.0383", + "2897.3235" + ] + } + } + ], + "public_manifest": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/m4/ctgan/ctgan-m4-20260504_162802/public_gate/staged_input_manifest.json", + "train_csv": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/m4/ctgan/ctgan-m4-20260504_162802/staged/public/train.csv", + "val_csv": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/m4/ctgan/ctgan-m4-20260504_162802/staged/public/val.csv", + "test_csv": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/m4/ctgan/ctgan-m4-20260504_162802/staged/public/test.csv", + "features_json": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/m4/ctgan/ctgan-m4-20260504_162802/staged/public/staged_features.json", + "public_gate_report": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/m4/ctgan/ctgan-m4-20260504_162802/public_gate/public_gate_report.json" +} \ No newline at end of file diff --git a/hyperparameter/m4/ctgan/ctgan-m4-20260504_162802/staged/public/staged_features.json b/hyperparameter/m4/ctgan/ctgan-m4-20260504_162802/staged/public/staged_features.json new file mode 100644 index 0000000000000000000000000000000000000000..d6acd098c35111f423f3ffff2cfd1754bc5dfebc --- /dev/null +++ b/hyperparameter/m4/ctgan/ctgan-m4-20260504_162802/staged/public/staged_features.json @@ -0,0 +1,37 @@ +[ + { + "feature_name": "age", + "data_type": "continuous", + "is_target": false + }, + { + "feature_name": "sex", + "data_type": "categorical", + "is_target": false + }, + { + "feature_name": "bmi", + "data_type": "continuous", + "is_target": false + }, + { + "feature_name": "children", + "data_type": "continuous", + "is_target": false + }, + { + "feature_name": "smoker", + "data_type": "binary", + "is_target": false + }, + { + "feature_name": "region", + "data_type": "categorical", + "is_target": false + }, + { + "feature_name": "charges", + "data_type": "continuous", + "is_target": true + } +] \ No newline at end of file diff --git a/hyperparameter/m4/ctgan/ctgan-m4-20260504_162802/staged/public/test.csv b/hyperparameter/m4/ctgan/ctgan-m4-20260504_162802/staged/public/test.csv new file mode 100644 index 0000000000000000000000000000000000000000..c88a2e7cfcd715bb421cb56eb078033da45c4dc8 --- /dev/null +++ b/hyperparameter/m4/ctgan/ctgan-m4-20260504_162802/staged/public/test.csv @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:4c541b677fb2d45c5bc79338eeee9fd8c91484b195a0c2c546c2fbabf113b7ea +size 11298 diff --git a/hyperparameter/m4/ctgan/ctgan-m4-20260504_162802/staged/public/train.csv b/hyperparameter/m4/ctgan/ctgan-m4-20260504_162802/staged/public/train.csv new file mode 100644 index 0000000000000000000000000000000000000000..5a05019d786529e0617291766c4fbe016ca01bf5 --- /dev/null +++ b/hyperparameter/m4/ctgan/ctgan-m4-20260504_162802/staged/public/train.csv @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:614ebfac5f41d6f661aff675fa18c0f933a8d9bcc77ea71b7b2360c2f0155837 +size 90069 diff --git a/hyperparameter/m4/ctgan/ctgan-m4-20260504_162802/staged/public/val.csv b/hyperparameter/m4/ctgan/ctgan-m4-20260504_162802/staged/public/val.csv new file mode 100644 index 0000000000000000000000000000000000000000..d78fe5ad1537c437ba9ac2629f2aa60a6c17e708 --- /dev/null +++ b/hyperparameter/m4/ctgan/ctgan-m4-20260504_162802/staged/public/val.csv @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:e55f5edbe7942ff01630de91a9c70dfbc6445eba76c7b970350364546b67c2d7 +size 11218 diff --git a/hyperparameter/m4/ctgan/ctgan-m4-20260504_162920/_ctgan_generate.py b/hyperparameter/m4/ctgan/ctgan-m4-20260504_162920/_ctgan_generate.py new file mode 100644 index 0000000000000000000000000000000000000000..1c6869a3fe44882e4389b3896ee6dfd20585ca25 --- /dev/null +++ b/hyperparameter/m4/ctgan/ctgan-m4-20260504_162920/_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-Benchmark-trainonly-v1/m4/ctgan/ctgan-m4-20260504_162920/models_100epochs/ctgan_100epochs.pt") +total = 2217 +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-Benchmark-trainonly-v1/m4/ctgan/ctgan-m4-20260504_162920/ctgan-m4-2217-20260504_163019.csv", index=False) +print("[CTGAN] Generated", total, "rows in", len(parts), "chunks ->", "/work/output-Benchmark-trainonly-v1/m4/ctgan/ctgan-m4-20260504_162920/ctgan-m4-2217-20260504_163019.csv") \ No newline at end of file diff --git a/hyperparameter/m4/ctgan/ctgan-m4-20260504_162920/_ctgan_train.py b/hyperparameter/m4/ctgan/ctgan-m4-20260504_162920/_ctgan_train.py new file mode 100644 index 0000000000000000000000000000000000000000..1b7c20d0b22c8b49a0901ad3141ca60eb2badbdf --- /dev/null +++ b/hyperparameter/m4/ctgan/ctgan-m4-20260504_162920/_ctgan_train.py @@ -0,0 +1,17 @@ +import pandas as pd +from ctgan.synthesizers.ctgan import CTGAN + +data = pd.read_csv("/work/output-Benchmark-trainonly-v1/m4/ctgan/ctgan-m4-20260504_162920/staged/public/train.csv") +discrete_columns = ['sex', 'smoker', 'region'] +model = CTGAN( + embedding_dim=16, + generator_dim=(32, 32), + discriminator_dim=(32, 32), + batch_size=80, + pac=5, + epochs=100, + verbose=True, +) +model.fit(data, discrete_columns) +model.save("/work/output-Benchmark-trainonly-v1/m4/ctgan/ctgan-m4-20260504_162920/models_100epochs/ctgan_100epochs.pt") +print("[CTGAN] Saved model ->", "/work/output-Benchmark-trainonly-v1/m4/ctgan/ctgan-m4-20260504_162920/models_100epochs/ctgan_100epochs.pt") \ No newline at end of file diff --git a/hyperparameter/m4/ctgan/ctgan-m4-20260504_162920/ctgan-m4-2217-20260504_163019.csv b/hyperparameter/m4/ctgan/ctgan-m4-20260504_162920/ctgan-m4-2217-20260504_163019.csv new file mode 100644 index 0000000000000000000000000000000000000000..3e72d45b8b8b9317621e27073d49108074f9aef9 --- /dev/null +++ b/hyperparameter/m4/ctgan/ctgan-m4-20260504_162920/ctgan-m4-2217-20260504_163019.csv @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:8c406571e96f9c06734e3b7b6d3ba3c06c0069415306215bf688fab81de6a3f9 +size 135713 diff --git a/hyperparameter/m4/ctgan/ctgan-m4-20260504_162920/ctgan_metadata.json b/hyperparameter/m4/ctgan/ctgan-m4-20260504_162920/ctgan_metadata.json new file mode 100644 index 0000000000000000000000000000000000000000..d89b1e0b3095638c982d4d3321d21a8bedcd33ae --- /dev/null +++ b/hyperparameter/m4/ctgan/ctgan-m4-20260504_162920/ctgan_metadata.json @@ -0,0 +1,32 @@ +{ + "columns": [ + { + "name": "age", + "type": "continuous" + }, + { + "name": "sex", + "type": "categorical" + }, + { + "name": "bmi", + "type": "continuous" + }, + { + "name": "children", + "type": "continuous" + }, + { + "name": "smoker", + "type": "categorical" + }, + { + "name": "region", + "type": "categorical" + }, + { + "name": "charges", + "type": "continuous" + } + ] +} \ No newline at end of file diff --git a/hyperparameter/m4/ctgan/ctgan-m4-20260504_162920/gen_20260504_163019.log b/hyperparameter/m4/ctgan/ctgan-m4-20260504_162920/gen_20260504_163019.log new file mode 100644 index 0000000000000000000000000000000000000000..fbf8afe72b30dd7d2519ba324c9633ffc6d3265b --- /dev/null +++ b/hyperparameter/m4/ctgan/ctgan-m4-20260504_162920/gen_20260504_163019.log @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:1fff1fd92ce19744bd06b418d3b6c357dfa8b03a6e2dadb1c31c75f57762eb18 +size 297 diff --git a/hyperparameter/m4/ctgan/ctgan-m4-20260504_162920/input_snapshot.json b/hyperparameter/m4/ctgan/ctgan-m4-20260504_162920/input_snapshot.json new file mode 100644 index 0000000000000000000000000000000000000000..f11278f1ffa8959e7869f70def91d0284f7dd656 --- /dev/null +++ b/hyperparameter/m4/ctgan/ctgan-m4-20260504_162920/input_snapshot.json @@ -0,0 +1,36 @@ +{ + "dataset_id": "m4", + "model": "ctgan", + "inputs": { + "train_csv": { + "path": "/data/jialinzhang/SynthesizePipeline-server/DatasetNew/m4/m4-train.csv", + "exists": true, + "size": 92191, + "sha256": "396b9d409ca21bf4a4cd329bdf5b7796aa0ae6356fa8d89b8eb669b5880b81f1" + }, + "val_csv": { + "path": "/data/jialinzhang/SynthesizePipeline-server/DatasetNew/m4/m4-val.csv", + "exists": true, + "size": 11482, + "sha256": "ee3c247d02f56e1687d03c381e13125d6a3a2a411ac7f202ba8520a4be9f1784" + }, + "test_csv": { + "path": "/data/jialinzhang/SynthesizePipeline-server/DatasetNew/m4/m4-test.csv", + "exists": true, + "size": 11559, + "sha256": "cadb9941124001b8fa7cb1ebae43b70a9ca56294f4df4d3c2f22c164c41757d4" + }, + "profile_json": { + "path": "/data/jialinzhang/SynthesizePipeline-server/DatasetNew/artifacts/data_core/tabular/m4/m4-dataset_profile.json", + "exists": true, + "size": 3336, + "sha256": "83e2764810e4a0e8cdece3a28dbd9134b7c9df6f2e56953e46d024ad2c4e035f" + }, + "contract_json": { + "path": "/data/jialinzhang/SynthesizePipeline-server/DatasetNew/artifacts/data_core/tabular/m4/m4-dataset_contract_v1.json", + "exists": true, + "size": 3810, + "sha256": "c23641b258629a845b164099bd0132886f8f6d0100e990494e0f92540f8987d9" + } + } +} \ No newline at end of file diff --git a/hyperparameter/m4/ctgan/ctgan-m4-20260504_162920/models_100epochs/ctgan_100epochs.pt b/hyperparameter/m4/ctgan/ctgan-m4-20260504_162920/models_100epochs/ctgan_100epochs.pt new file mode 100644 index 0000000000000000000000000000000000000000..c0f2fdc77c4f3e0788cdd693f2f2bd2ed97a3cb4 --- /dev/null +++ b/hyperparameter/m4/ctgan/ctgan-m4-20260504_162920/models_100epochs/ctgan_100epochs.pt @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:f1735982b8a1196accf5fa3d751028415305c00286b49342dd845ccdf4171edb +size 296675 diff --git a/hyperparameter/m4/ctgan/ctgan-m4-20260504_162920/models_100epochs/train_20260504_162920.log b/hyperparameter/m4/ctgan/ctgan-m4-20260504_162920/models_100epochs/train_20260504_162920.log new file mode 100644 index 0000000000000000000000000000000000000000..6e9831c5270bf75c1e2c4eb4085454182a52e85c --- /dev/null +++ b/hyperparameter/m4/ctgan/ctgan-m4-20260504_162920/models_100epochs/train_20260504_162920.log @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:1f12ac50c989ef88b4b247ec0de8a38cb7d48b186cd47b1ae55ce0e904fe030c +size 20346 diff --git a/hyperparameter/m4/ctgan/ctgan-m4-20260504_162920/public_gate/normalized_schema_snapshot.json b/hyperparameter/m4/ctgan/ctgan-m4-20260504_162920/public_gate/normalized_schema_snapshot.json new file mode 100644 index 0000000000000000000000000000000000000000..31ed9818686b11907df75e872e4ffbe010330880 --- /dev/null +++ b/hyperparameter/m4/ctgan/ctgan-m4-20260504_162920/public_gate/normalized_schema_snapshot.json @@ -0,0 +1,147 @@ +{ + "dataset_id": "m4", + "target_column": "charges", + "task_type": "regression", + "columns": [ + { + "name": "age", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 47, + "unique_ratio": 0.0212, + "example_values": [ + "46", + "38", + "19", + "27", + "26" + ] + } + }, + { + "name": "sex", + "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.000902, + "example_values": [ + "female", + "male" + ] + } + }, + { + "name": "bmi", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 538, + "unique_ratio": 0.24267, + "example_values": [ + "23.655", + "19.3", + "30.59", + "32.67", + "29.45" + ] + } + }, + { + "name": "children", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 6, + "unique_ratio": 0.002706, + "example_values": [ + "1", + "0", + "3", + "2", + "5" + ] + } + }, + { + "name": "smoker", + "role": "feature", + "semantic_type": "boolean", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 2, + "unique_ratio": 0.000902, + "example_values": [ + "yes", + "no" + ] + } + }, + { + "name": "region", + "role": "feature", + "semantic_type": "categorical", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 4, + "unique_ratio": 0.001804, + "example_values": [ + "northwest", + "southwest", + "southeast", + "northeast" + ] + } + }, + { + "name": "charges", + "role": "target", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 1281, + "unique_ratio": 0.577808, + "example_values": [ + "21677.28345", + "15820.699", + "1639.5631", + "2497.0383", + "2897.3235" + ] + } + } + ] +} \ No newline at end of file diff --git a/hyperparameter/m4/ctgan/ctgan-m4-20260504_162920/public_gate/public_gate_report.json b/hyperparameter/m4/ctgan/ctgan-m4-20260504_162920/public_gate/public_gate_report.json new file mode 100644 index 0000000000000000000000000000000000000000..e7a25408e2574124629ea9437356551e4d6f4790 --- /dev/null +++ b/hyperparameter/m4/ctgan/ctgan-m4-20260504_162920/public_gate/public_gate_report.json @@ -0,0 +1,37 @@ +{ + "dataset_id": "m4", + "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": "charges", + "task_type": "regression", + "input_splits": { + "train": "/data/jialinzhang/SynthesizePipeline-server/DatasetNew/m4/m4-train.csv", + "val": "/data/jialinzhang/SynthesizePipeline-server/DatasetNew/m4/m4-val.csv", + "test": "/data/jialinzhang/SynthesizePipeline-server/DatasetNew/m4/m4-test.csv" + } +} \ No newline at end of file diff --git a/hyperparameter/m4/ctgan/ctgan-m4-20260504_162920/public_gate/staged_input_manifest.json b/hyperparameter/m4/ctgan/ctgan-m4-20260504_162920/public_gate/staged_input_manifest.json new file mode 100644 index 0000000000000000000000000000000000000000..d8f24c7fe9e92f7fd58473243d225e823c6ba09e --- /dev/null +++ b/hyperparameter/m4/ctgan/ctgan-m4-20260504_162920/public_gate/staged_input_manifest.json @@ -0,0 +1,152 @@ +{ + "dataset_id": "m4", + "target_column": "charges", + "task_type": "regression", + "train_csv": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/m4/ctgan/ctgan-m4-20260504_162920/staged/public/train.csv", + "val_csv": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/m4/ctgan/ctgan-m4-20260504_162920/staged/public/val.csv", + "test_csv": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/m4/ctgan/ctgan-m4-20260504_162920/staged/public/test.csv", + "features_json": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/m4/ctgan/ctgan-m4-20260504_162920/staged/public/staged_features.json", + "public_gate_report": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/m4/ctgan/ctgan-m4-20260504_162920/public_gate/public_gate_report.json", + "column_schema": [ + { + "name": "age", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 47, + "unique_ratio": 0.0212, + "example_values": [ + "46", + "38", + "19", + "27", + "26" + ] + } + }, + { + "name": "sex", + "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.000902, + "example_values": [ + "female", + "male" + ] + } + }, + { + "name": "bmi", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 538, + "unique_ratio": 0.24267, + "example_values": [ + "23.655", + "19.3", + "30.59", + "32.67", + "29.45" + ] + } + }, + { + "name": "children", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 6, + "unique_ratio": 0.002706, + "example_values": [ + "1", + "0", + "3", + "2", + "5" + ] + } + }, + { + "name": "smoker", + "role": "feature", + "semantic_type": "boolean", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 2, + "unique_ratio": 0.000902, + "example_values": [ + "yes", + "no" + ] + } + }, + { + "name": "region", + "role": "feature", + "semantic_type": "categorical", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 4, + "unique_ratio": 0.001804, + "example_values": [ + "northwest", + "southwest", + "southeast", + "northeast" + ] + } + }, + { + "name": "charges", + "role": "target", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 1281, + "unique_ratio": 0.577808, + "example_values": [ + "21677.28345", + "15820.699", + "1639.5631", + "2497.0383", + "2897.3235" + ] + } + } + ] +} \ No newline at end of file diff --git a/hyperparameter/m4/ctgan/ctgan-m4-20260504_162920/run_config.json b/hyperparameter/m4/ctgan/ctgan-m4-20260504_162920/run_config.json new file mode 100644 index 0000000000000000000000000000000000000000..17026468f7ac98957eac5a7392159a739976006c --- /dev/null +++ b/hyperparameter/m4/ctgan/ctgan-m4-20260504_162920/run_config.json @@ -0,0 +1,46 @@ +{ + "schema_version": 1, + "recorded_at": "2026-05-04T16:29:20", + "dataset_id": "m4", + "model": "ctgan", + "work_dir": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/m4/ctgan/ctgan-m4-20260504_162920", + "dataset_source_requested": "new", + "dataset_source_resolved": "new", + "cli_args": { + "model": "ctgan", + "dataset": "m4", + "dataset_source": "new", + "train": true, + "generate": true, + "num_rows": 0, + "epochs": null, + "output_dir": null, + "model_dir": null, + "work_dir": null, + "resume": false, + "no_stats": false + }, + "resolved": { + "num_rows": 2217, + "model_path": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/m4/ctgan/ctgan-m4-20260504_162920/models_100epochs/ctgan_100epochs.pt", + "output_csv": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/m4/ctgan/ctgan-m4-20260504_162920/ctgan-m4-2217-20260504_163019.csv" + }, + "input_artifacts": { + "public_gate_report": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/m4/ctgan/ctgan-m4-20260504_162920/public_gate/public_gate_report.json", + "public_manifest": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/m4/ctgan/ctgan-m4-20260504_162920/public_gate/staged_input_manifest.json", + "model_manifest": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/m4/ctgan/ctgan-m4-20260504_162920/staged/ctgan/model_input_manifest.json", + "train_csv": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/m4/ctgan/ctgan-m4-20260504_162920/staged/public/train.csv", + "features_json": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/m4/ctgan/ctgan-m4-20260504_162920/staged/public/staged_features.json", + "target_column": "charges", + "task_type": "regression" + }, + "env_overrides": { + "BENCHMARK_CTGAN_GPUS": "device=3", + "CTGAN_BATCH_SIZE": "80", + "CTGAN_DEFAULT_EPOCHS": "100", + "CTGAN_DISCRIMINATOR_DIMS": "32,32", + "CTGAN_EMBEDDING_DIM": "16", + "CTGAN_GENERATOR_DIMS": "32,32", + "CTGAN_PAC": "5" + } +} \ No newline at end of file diff --git a/hyperparameter/m4/ctgan/ctgan-m4-20260504_162920/runtime_result.json b/hyperparameter/m4/ctgan/ctgan-m4-20260504_162920/runtime_result.json new file mode 100644 index 0000000000000000000000000000000000000000..f115cc028f0b74ab7cbc3aa216d7c3eb92534435 --- /dev/null +++ b/hyperparameter/m4/ctgan/ctgan-m4-20260504_162920/runtime_result.json @@ -0,0 +1,27 @@ +{ + "dataset_id": "m4", + "model": "ctgan", + "run_id": "ctgan-m4-20260504_162920", + "public_gate_status": "pass", + "adapter_ready_status": "pass", + "train_status": "success", + "generate_status": "success", + "reason_code": null, + "reason_detail": null, + "artifacts": { + "synthetic_csv": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/m4/ctgan/ctgan-m4-20260504_162920/ctgan-m4-2217-20260504_163019.csv", + "model_path": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/m4/ctgan/ctgan-m4-20260504_162920/models_100epochs/ctgan_100epochs.pt" + }, + "timings": { + "train": { + "started_at": "2026-05-04T16:29:20", + "ended_at": "2026-05-04T16:30:19", + "duration_sec": 59.085 + }, + "generate": { + "started_at": "2026-05-04T16:30:19", + "ended_at": "2026-05-04T16:30:25", + "duration_sec": 5.992 + } + } +} \ No newline at end of file diff --git a/hyperparameter/m4/ctgan/ctgan-m4-20260504_162920/staged/ctgan/adapter_report.json b/hyperparameter/m4/ctgan/ctgan-m4-20260504_162920/staged/ctgan/adapter_report.json new file mode 100644 index 0000000000000000000000000000000000000000..30fa05b5471fe1b2a7a06b2fe5ddfd6182cd1449 --- /dev/null +++ b/hyperparameter/m4/ctgan/ctgan-m4-20260504_162920/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-Benchmark-trainonly-v1/m4/ctgan/ctgan-m4-20260504_162920/staged/ctgan/model_input_manifest.json" +} \ No newline at end of file diff --git a/hyperparameter/m4/ctgan/ctgan-m4-20260504_162920/staged/ctgan/adapter_transforms_applied.json b/hyperparameter/m4/ctgan/ctgan-m4-20260504_162920/staged/ctgan/adapter_transforms_applied.json new file mode 100644 index 0000000000000000000000000000000000000000..0637a088a01e8ddab3bf3fa98dbe804cbde1a0dc --- /dev/null +++ b/hyperparameter/m4/ctgan/ctgan-m4-20260504_162920/staged/ctgan/adapter_transforms_applied.json @@ -0,0 +1 @@ +[] \ No newline at end of file diff --git a/hyperparameter/m4/ctgan/ctgan-m4-20260504_162920/staged/ctgan/model_input_manifest.json b/hyperparameter/m4/ctgan/ctgan-m4-20260504_162920/staged/ctgan/model_input_manifest.json new file mode 100644 index 0000000000000000000000000000000000000000..6605d154467983325f599e76a16d6ae710802bf1 --- /dev/null +++ b/hyperparameter/m4/ctgan/ctgan-m4-20260504_162920/staged/ctgan/model_input_manifest.json @@ -0,0 +1,154 @@ +{ + "dataset_id": "m4", + "model": "ctgan", + "target_column": "charges", + "task_type": "regression", + "column_schema": [ + { + "name": "age", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 47, + "unique_ratio": 0.0212, + "example_values": [ + "46", + "38", + "19", + "27", + "26" + ] + } + }, + { + "name": "sex", + "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.000902, + "example_values": [ + "female", + "male" + ] + } + }, + { + "name": "bmi", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 538, + "unique_ratio": 0.24267, + "example_values": [ + "23.655", + "19.3", + "30.59", + "32.67", + "29.45" + ] + } + }, + { + "name": "children", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 6, + "unique_ratio": 0.002706, + "example_values": [ + "1", + "0", + "3", + "2", + "5" + ] + } + }, + { + "name": "smoker", + "role": "feature", + "semantic_type": "boolean", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 2, + "unique_ratio": 0.000902, + "example_values": [ + "yes", + "no" + ] + } + }, + { + "name": "region", + "role": "feature", + "semantic_type": "categorical", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 4, + "unique_ratio": 0.001804, + "example_values": [ + "northwest", + "southwest", + "southeast", + "northeast" + ] + } + }, + { + "name": "charges", + "role": "target", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 1281, + "unique_ratio": 0.577808, + "example_values": [ + "21677.28345", + "15820.699", + "1639.5631", + "2497.0383", + "2897.3235" + ] + } + } + ], + "public_manifest": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/m4/ctgan/ctgan-m4-20260504_162920/public_gate/staged_input_manifest.json", + "train_csv": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/m4/ctgan/ctgan-m4-20260504_162920/staged/public/train.csv", + "val_csv": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/m4/ctgan/ctgan-m4-20260504_162920/staged/public/val.csv", + "test_csv": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/m4/ctgan/ctgan-m4-20260504_162920/staged/public/test.csv", + "features_json": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/m4/ctgan/ctgan-m4-20260504_162920/staged/public/staged_features.json", + "public_gate_report": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/m4/ctgan/ctgan-m4-20260504_162920/public_gate/public_gate_report.json" +} \ No newline at end of file diff --git a/hyperparameter/m4/ctgan/ctgan-m4-20260504_162920/staged/public/staged_features.json b/hyperparameter/m4/ctgan/ctgan-m4-20260504_162920/staged/public/staged_features.json new file mode 100644 index 0000000000000000000000000000000000000000..d6acd098c35111f423f3ffff2cfd1754bc5dfebc --- /dev/null +++ b/hyperparameter/m4/ctgan/ctgan-m4-20260504_162920/staged/public/staged_features.json @@ -0,0 +1,37 @@ +[ + { + "feature_name": "age", + "data_type": "continuous", + "is_target": false + }, + { + "feature_name": "sex", + "data_type": "categorical", + "is_target": false + }, + { + "feature_name": "bmi", + "data_type": "continuous", + "is_target": false + }, + { + "feature_name": "children", + "data_type": "continuous", + "is_target": false + }, + { + "feature_name": "smoker", + "data_type": "binary", + "is_target": false + }, + { + "feature_name": "region", + "data_type": "categorical", + "is_target": false + }, + { + "feature_name": "charges", + "data_type": "continuous", + "is_target": true + } +] \ No newline at end of file diff --git a/hyperparameter/m4/ctgan/ctgan-m4-20260504_162920/staged/public/test.csv b/hyperparameter/m4/ctgan/ctgan-m4-20260504_162920/staged/public/test.csv new file mode 100644 index 0000000000000000000000000000000000000000..c88a2e7cfcd715bb421cb56eb078033da45c4dc8 --- /dev/null +++ b/hyperparameter/m4/ctgan/ctgan-m4-20260504_162920/staged/public/test.csv @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:4c541b677fb2d45c5bc79338eeee9fd8c91484b195a0c2c546c2fbabf113b7ea +size 11298 diff --git a/hyperparameter/m4/ctgan/ctgan-m4-20260504_162920/staged/public/train.csv b/hyperparameter/m4/ctgan/ctgan-m4-20260504_162920/staged/public/train.csv new file mode 100644 index 0000000000000000000000000000000000000000..5a05019d786529e0617291766c4fbe016ca01bf5 --- /dev/null +++ b/hyperparameter/m4/ctgan/ctgan-m4-20260504_162920/staged/public/train.csv @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:614ebfac5f41d6f661aff675fa18c0f933a8d9bcc77ea71b7b2360c2f0155837 +size 90069 diff --git a/hyperparameter/m4/ctgan/ctgan-m4-20260504_162920/staged/public/val.csv b/hyperparameter/m4/ctgan/ctgan-m4-20260504_162920/staged/public/val.csv new file mode 100644 index 0000000000000000000000000000000000000000..d78fe5ad1537c437ba9ac2629f2aa60a6c17e708 --- /dev/null +++ b/hyperparameter/m4/ctgan/ctgan-m4-20260504_162920/staged/public/val.csv @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:e55f5edbe7942ff01630de91a9c70dfbc6445eba76c7b970350364546b67c2d7 +size 11218 diff --git a/hyperparameter/m4/ctgan/ctgan-m4-20260504_163038/_ctgan_generate.py b/hyperparameter/m4/ctgan/ctgan-m4-20260504_163038/_ctgan_generate.py new file mode 100644 index 0000000000000000000000000000000000000000..9bd1b474a2c4e3a5589188b211b0e6e39efb81f0 --- /dev/null +++ b/hyperparameter/m4/ctgan/ctgan-m4-20260504_163038/_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-Benchmark-trainonly-v1/m4/ctgan/ctgan-m4-20260504_163038/models_200epochs/ctgan_200epochs.pt") +total = 2217 +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-Benchmark-trainonly-v1/m4/ctgan/ctgan-m4-20260504_163038/ctgan-m4-2217-20260504_163207.csv", index=False) +print("[CTGAN] Generated", total, "rows in", len(parts), "chunks ->", "/work/output-Benchmark-trainonly-v1/m4/ctgan/ctgan-m4-20260504_163038/ctgan-m4-2217-20260504_163207.csv") \ No newline at end of file diff --git a/hyperparameter/m4/ctgan/ctgan-m4-20260504_163038/_ctgan_train.py b/hyperparameter/m4/ctgan/ctgan-m4-20260504_163038/_ctgan_train.py new file mode 100644 index 0000000000000000000000000000000000000000..a841856a406bbb3e09660cb7d1a6488fd8eb5858 --- /dev/null +++ b/hyperparameter/m4/ctgan/ctgan-m4-20260504_163038/_ctgan_train.py @@ -0,0 +1,17 @@ +import pandas as pd +from ctgan.synthesizers.ctgan import CTGAN + +data = pd.read_csv("/work/output-Benchmark-trainonly-v1/m4/ctgan/ctgan-m4-20260504_163038/staged/public/train.csv") +discrete_columns = ['sex', 'smoker', 'region'] +model = CTGAN( + embedding_dim=32, + generator_dim=(64, 64), + discriminator_dim=(64, 64), + batch_size=100, + pac=10, + epochs=200, + verbose=True, +) +model.fit(data, discrete_columns) +model.save("/work/output-Benchmark-trainonly-v1/m4/ctgan/ctgan-m4-20260504_163038/models_200epochs/ctgan_200epochs.pt") +print("[CTGAN] Saved model ->", "/work/output-Benchmark-trainonly-v1/m4/ctgan/ctgan-m4-20260504_163038/models_200epochs/ctgan_200epochs.pt") \ No newline at end of file diff --git a/hyperparameter/m4/ctgan/ctgan-m4-20260504_163038/ctgan-m4-2217-20260504_163207.csv b/hyperparameter/m4/ctgan/ctgan-m4-20260504_163038/ctgan-m4-2217-20260504_163207.csv new file mode 100644 index 0000000000000000000000000000000000000000..02a4410b10356bd5136a2b9cbee8b59d63cb1cea --- /dev/null +++ b/hyperparameter/m4/ctgan/ctgan-m4-20260504_163038/ctgan-m4-2217-20260504_163207.csv @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:7baf2650acdb58a6960bf3482afc14f2a59738fbe3de156152a55cc7636ab39e +size 136085 diff --git a/hyperparameter/m4/ctgan/ctgan-m4-20260504_163038/ctgan_metadata.json b/hyperparameter/m4/ctgan/ctgan-m4-20260504_163038/ctgan_metadata.json new file mode 100644 index 0000000000000000000000000000000000000000..d89b1e0b3095638c982d4d3321d21a8bedcd33ae --- /dev/null +++ b/hyperparameter/m4/ctgan/ctgan-m4-20260504_163038/ctgan_metadata.json @@ -0,0 +1,32 @@ +{ + "columns": [ + { + "name": "age", + "type": "continuous" + }, + { + "name": "sex", + "type": "categorical" + }, + { + "name": "bmi", + "type": "continuous" + }, + { + "name": "children", + "type": "continuous" + }, + { + "name": "smoker", + "type": "categorical" + }, + { + "name": "region", + "type": "categorical" + }, + { + "name": "charges", + "type": "continuous" + } + ] +} \ No newline at end of file diff --git a/hyperparameter/m4/ctgan/ctgan-m4-20260504_163038/gen_20260504_163207.log b/hyperparameter/m4/ctgan/ctgan-m4-20260504_163038/gen_20260504_163207.log new file mode 100644 index 0000000000000000000000000000000000000000..1794c145cc281f95b00fe5f46b3d2dc1ff9bc4aa --- /dev/null +++ b/hyperparameter/m4/ctgan/ctgan-m4-20260504_163038/gen_20260504_163207.log @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:843b04a29b1a7c84294fbdad7fafc0ad169db22ca2b2b9ddbd5813e245293903 +size 297 diff --git a/hyperparameter/m4/ctgan/ctgan-m4-20260504_163038/input_snapshot.json b/hyperparameter/m4/ctgan/ctgan-m4-20260504_163038/input_snapshot.json new file mode 100644 index 0000000000000000000000000000000000000000..f11278f1ffa8959e7869f70def91d0284f7dd656 --- /dev/null +++ b/hyperparameter/m4/ctgan/ctgan-m4-20260504_163038/input_snapshot.json @@ -0,0 +1,36 @@ +{ + "dataset_id": "m4", + "model": "ctgan", + "inputs": { + "train_csv": { + "path": "/data/jialinzhang/SynthesizePipeline-server/DatasetNew/m4/m4-train.csv", + "exists": true, + "size": 92191, + "sha256": "396b9d409ca21bf4a4cd329bdf5b7796aa0ae6356fa8d89b8eb669b5880b81f1" + }, + "val_csv": { + "path": "/data/jialinzhang/SynthesizePipeline-server/DatasetNew/m4/m4-val.csv", + "exists": true, + "size": 11482, + "sha256": "ee3c247d02f56e1687d03c381e13125d6a3a2a411ac7f202ba8520a4be9f1784" + }, + "test_csv": { + "path": "/data/jialinzhang/SynthesizePipeline-server/DatasetNew/m4/m4-test.csv", + "exists": true, + "size": 11559, + "sha256": "cadb9941124001b8fa7cb1ebae43b70a9ca56294f4df4d3c2f22c164c41757d4" + }, + "profile_json": { + "path": "/data/jialinzhang/SynthesizePipeline-server/DatasetNew/artifacts/data_core/tabular/m4/m4-dataset_profile.json", + "exists": true, + "size": 3336, + "sha256": "83e2764810e4a0e8cdece3a28dbd9134b7c9df6f2e56953e46d024ad2c4e035f" + }, + "contract_json": { + "path": "/data/jialinzhang/SynthesizePipeline-server/DatasetNew/artifacts/data_core/tabular/m4/m4-dataset_contract_v1.json", + "exists": true, + "size": 3810, + "sha256": "c23641b258629a845b164099bd0132886f8f6d0100e990494e0f92540f8987d9" + } + } +} \ No newline at end of file diff --git a/hyperparameter/m4/ctgan/ctgan-m4-20260504_163038/models_200epochs/ctgan_200epochs.pt b/hyperparameter/m4/ctgan/ctgan-m4-20260504_163038/models_200epochs/ctgan_200epochs.pt new file mode 100644 index 0000000000000000000000000000000000000000..60c1b8863a50d55ea3f90ff4f64bcf1822d472ff --- /dev/null +++ b/hyperparameter/m4/ctgan/ctgan-m4-20260504_163038/models_200epochs/ctgan_200epochs.pt @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:9f7587270ae8535607fd4804d5bf9cf09d651bba7376264c2365fce4e6ce00c6 +size 341411 diff --git a/hyperparameter/m4/ctgan/ctgan-m4-20260504_163038/models_200epochs/train_20260504_163038.log b/hyperparameter/m4/ctgan/ctgan-m4-20260504_163038/models_200epochs/train_20260504_163038.log new file mode 100644 index 0000000000000000000000000000000000000000..de0ac05ad9d6cff23800812ff6879cb55324c8bb --- /dev/null +++ b/hyperparameter/m4/ctgan/ctgan-m4-20260504_163038/models_200epochs/train_20260504_163038.log @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:393ba9d05340b1971bf7f5b702d02a8fee4ed5303a31bd46c1803bf4d6c4ddb6 +size 39009 diff --git a/hyperparameter/m4/ctgan/ctgan-m4-20260504_163038/public_gate/normalized_schema_snapshot.json b/hyperparameter/m4/ctgan/ctgan-m4-20260504_163038/public_gate/normalized_schema_snapshot.json new file mode 100644 index 0000000000000000000000000000000000000000..31ed9818686b11907df75e872e4ffbe010330880 --- /dev/null +++ b/hyperparameter/m4/ctgan/ctgan-m4-20260504_163038/public_gate/normalized_schema_snapshot.json @@ -0,0 +1,147 @@ +{ + "dataset_id": "m4", + "target_column": "charges", + "task_type": "regression", + "columns": [ + { + "name": "age", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 47, + "unique_ratio": 0.0212, + "example_values": [ + "46", + "38", + "19", + "27", + "26" + ] + } + }, + { + "name": "sex", + "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.000902, + "example_values": [ + "female", + "male" + ] + } + }, + { + "name": "bmi", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 538, + "unique_ratio": 0.24267, + "example_values": [ + "23.655", + "19.3", + "30.59", + "32.67", + "29.45" + ] + } + }, + { + "name": "children", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 6, + "unique_ratio": 0.002706, + "example_values": [ + "1", + "0", + "3", + "2", + "5" + ] + } + }, + { + "name": "smoker", + "role": "feature", + "semantic_type": "boolean", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 2, + "unique_ratio": 0.000902, + "example_values": [ + "yes", + "no" + ] + } + }, + { + "name": "region", + "role": "feature", + "semantic_type": "categorical", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 4, + "unique_ratio": 0.001804, + "example_values": [ + "northwest", + "southwest", + "southeast", + "northeast" + ] + } + }, + { + "name": "charges", + "role": "target", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 1281, + "unique_ratio": 0.577808, + "example_values": [ + "21677.28345", + "15820.699", + "1639.5631", + "2497.0383", + "2897.3235" + ] + } + } + ] +} \ No newline at end of file diff --git a/hyperparameter/m4/ctgan/ctgan-m4-20260504_163038/public_gate/public_gate_report.json b/hyperparameter/m4/ctgan/ctgan-m4-20260504_163038/public_gate/public_gate_report.json new file mode 100644 index 0000000000000000000000000000000000000000..e7a25408e2574124629ea9437356551e4d6f4790 --- /dev/null +++ b/hyperparameter/m4/ctgan/ctgan-m4-20260504_163038/public_gate/public_gate_report.json @@ -0,0 +1,37 @@ +{ + "dataset_id": "m4", + "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": "charges", + "task_type": "regression", + "input_splits": { + "train": "/data/jialinzhang/SynthesizePipeline-server/DatasetNew/m4/m4-train.csv", + "val": "/data/jialinzhang/SynthesizePipeline-server/DatasetNew/m4/m4-val.csv", + "test": "/data/jialinzhang/SynthesizePipeline-server/DatasetNew/m4/m4-test.csv" + } +} \ No newline at end of file diff --git a/hyperparameter/m4/ctgan/ctgan-m4-20260504_163038/public_gate/staged_input_manifest.json b/hyperparameter/m4/ctgan/ctgan-m4-20260504_163038/public_gate/staged_input_manifest.json new file mode 100644 index 0000000000000000000000000000000000000000..b816cabf716c275363c4a5a402d22bf38a2108aa --- /dev/null +++ b/hyperparameter/m4/ctgan/ctgan-m4-20260504_163038/public_gate/staged_input_manifest.json @@ -0,0 +1,152 @@ +{ + "dataset_id": "m4", + "target_column": "charges", + "task_type": "regression", + "train_csv": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/m4/ctgan/ctgan-m4-20260504_163038/staged/public/train.csv", + "val_csv": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/m4/ctgan/ctgan-m4-20260504_163038/staged/public/val.csv", + "test_csv": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/m4/ctgan/ctgan-m4-20260504_163038/staged/public/test.csv", + "features_json": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/m4/ctgan/ctgan-m4-20260504_163038/staged/public/staged_features.json", + "public_gate_report": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/m4/ctgan/ctgan-m4-20260504_163038/public_gate/public_gate_report.json", + "column_schema": [ + { + "name": "age", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 47, + "unique_ratio": 0.0212, + "example_values": [ + "46", + "38", + "19", + "27", + "26" + ] + } + }, + { + "name": "sex", + "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.000902, + "example_values": [ + "female", + "male" + ] + } + }, + { + "name": "bmi", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 538, + "unique_ratio": 0.24267, + "example_values": [ + "23.655", + "19.3", + "30.59", + "32.67", + "29.45" + ] + } + }, + { + "name": "children", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 6, + "unique_ratio": 0.002706, + "example_values": [ + "1", + "0", + "3", + "2", + "5" + ] + } + }, + { + "name": "smoker", + "role": "feature", + "semantic_type": "boolean", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 2, + "unique_ratio": 0.000902, + "example_values": [ + "yes", + "no" + ] + } + }, + { + "name": "region", + "role": "feature", + "semantic_type": "categorical", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 4, + "unique_ratio": 0.001804, + "example_values": [ + "northwest", + "southwest", + "southeast", + "northeast" + ] + } + }, + { + "name": "charges", + "role": "target", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 1281, + "unique_ratio": 0.577808, + "example_values": [ + "21677.28345", + "15820.699", + "1639.5631", + "2497.0383", + "2897.3235" + ] + } + } + ] +} \ No newline at end of file diff --git a/hyperparameter/m4/ctgan/ctgan-m4-20260504_163038/run_config.json b/hyperparameter/m4/ctgan/ctgan-m4-20260504_163038/run_config.json new file mode 100644 index 0000000000000000000000000000000000000000..f5b9d4f9b1fb6f4e85065405913c9ceaf536244f --- /dev/null +++ b/hyperparameter/m4/ctgan/ctgan-m4-20260504_163038/run_config.json @@ -0,0 +1,46 @@ +{ + "schema_version": 1, + "recorded_at": "2026-05-04T16:30:38", + "dataset_id": "m4", + "model": "ctgan", + "work_dir": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/m4/ctgan/ctgan-m4-20260504_163038", + "dataset_source_requested": "new", + "dataset_source_resolved": "new", + "cli_args": { + "model": "ctgan", + "dataset": "m4", + "dataset_source": "new", + "train": true, + "generate": true, + "num_rows": 0, + "epochs": null, + "output_dir": null, + "model_dir": null, + "work_dir": null, + "resume": false, + "no_stats": false + }, + "resolved": { + "num_rows": 2217, + "model_path": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/m4/ctgan/ctgan-m4-20260504_163038/models_200epochs/ctgan_200epochs.pt", + "output_csv": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/m4/ctgan/ctgan-m4-20260504_163038/ctgan-m4-2217-20260504_163207.csv" + }, + "input_artifacts": { + "public_gate_report": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/m4/ctgan/ctgan-m4-20260504_163038/public_gate/public_gate_report.json", + "public_manifest": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/m4/ctgan/ctgan-m4-20260504_163038/public_gate/staged_input_manifest.json", + "model_manifest": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/m4/ctgan/ctgan-m4-20260504_163038/staged/ctgan/model_input_manifest.json", + "train_csv": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/m4/ctgan/ctgan-m4-20260504_163038/staged/public/train.csv", + "features_json": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/m4/ctgan/ctgan-m4-20260504_163038/staged/public/staged_features.json", + "target_column": "charges", + "task_type": "regression" + }, + "env_overrides": { + "BENCHMARK_CTGAN_GPUS": "device=3", + "CTGAN_BATCH_SIZE": "100", + "CTGAN_DEFAULT_EPOCHS": "200", + "CTGAN_DISCRIMINATOR_DIMS": "64,64", + "CTGAN_EMBEDDING_DIM": "32", + "CTGAN_GENERATOR_DIMS": "64,64", + "CTGAN_PAC": "10" + } +} \ No newline at end of file diff --git a/hyperparameter/m4/ctgan/ctgan-m4-20260504_163038/runtime_result.json b/hyperparameter/m4/ctgan/ctgan-m4-20260504_163038/runtime_result.json new file mode 100644 index 0000000000000000000000000000000000000000..7db01fc69ae2c574a3aebf602eb5ef1cb959b9e5 --- /dev/null +++ b/hyperparameter/m4/ctgan/ctgan-m4-20260504_163038/runtime_result.json @@ -0,0 +1,27 @@ +{ + "dataset_id": "m4", + "model": "ctgan", + "run_id": "ctgan-m4-20260504_163038", + "public_gate_status": "pass", + "adapter_ready_status": "pass", + "train_status": "success", + "generate_status": "success", + "reason_code": null, + "reason_detail": null, + "artifacts": { + "synthetic_csv": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/m4/ctgan/ctgan-m4-20260504_163038/ctgan-m4-2217-20260504_163207.csv", + "model_path": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/m4/ctgan/ctgan-m4-20260504_163038/models_200epochs/ctgan_200epochs.pt" + }, + "timings": { + "train": { + "started_at": "2026-05-04T16:30:38", + "ended_at": "2026-05-04T16:32:07", + "duration_sec": 88.927 + }, + "generate": { + "started_at": "2026-05-04T16:32:07", + "ended_at": "2026-05-04T16:32:13", + "duration_sec": 5.981 + } + } +} \ No newline at end of file diff --git a/hyperparameter/m4/ctgan/ctgan-m4-20260504_163038/staged/ctgan/adapter_report.json b/hyperparameter/m4/ctgan/ctgan-m4-20260504_163038/staged/ctgan/adapter_report.json new file mode 100644 index 0000000000000000000000000000000000000000..c66b2d5d18b0bd9500d67f443aedbdf219804a82 --- /dev/null +++ b/hyperparameter/m4/ctgan/ctgan-m4-20260504_163038/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-Benchmark-trainonly-v1/m4/ctgan/ctgan-m4-20260504_163038/staged/ctgan/model_input_manifest.json" +} \ No newline at end of file diff --git a/hyperparameter/m4/ctgan/ctgan-m4-20260504_163038/staged/ctgan/adapter_transforms_applied.json b/hyperparameter/m4/ctgan/ctgan-m4-20260504_163038/staged/ctgan/adapter_transforms_applied.json new file mode 100644 index 0000000000000000000000000000000000000000..0637a088a01e8ddab3bf3fa98dbe804cbde1a0dc --- /dev/null +++ b/hyperparameter/m4/ctgan/ctgan-m4-20260504_163038/staged/ctgan/adapter_transforms_applied.json @@ -0,0 +1 @@ +[] \ No newline at end of file diff --git a/hyperparameter/m4/ctgan/ctgan-m4-20260504_163038/staged/ctgan/model_input_manifest.json b/hyperparameter/m4/ctgan/ctgan-m4-20260504_163038/staged/ctgan/model_input_manifest.json new file mode 100644 index 0000000000000000000000000000000000000000..033c4ca1a435c6ec97f441f3886476742ec4be6d --- /dev/null +++ b/hyperparameter/m4/ctgan/ctgan-m4-20260504_163038/staged/ctgan/model_input_manifest.json @@ -0,0 +1,154 @@ +{ + "dataset_id": "m4", + "model": "ctgan", + "target_column": "charges", + "task_type": "regression", + "column_schema": [ + { + "name": "age", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 47, + "unique_ratio": 0.0212, + "example_values": [ + "46", + "38", + "19", + "27", + "26" + ] + } + }, + { + "name": "sex", + "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.000902, + "example_values": [ + "female", + "male" + ] + } + }, + { + "name": "bmi", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 538, + "unique_ratio": 0.24267, + "example_values": [ + "23.655", + "19.3", + "30.59", + "32.67", + "29.45" + ] + } + }, + { + "name": "children", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 6, + "unique_ratio": 0.002706, + "example_values": [ + "1", + "0", + "3", + "2", + "5" + ] + } + }, + { + "name": "smoker", + "role": "feature", + "semantic_type": "boolean", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 2, + "unique_ratio": 0.000902, + "example_values": [ + "yes", + "no" + ] + } + }, + { + "name": "region", + "role": "feature", + "semantic_type": "categorical", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 4, + "unique_ratio": 0.001804, + "example_values": [ + "northwest", + "southwest", + "southeast", + "northeast" + ] + } + }, + { + "name": "charges", + "role": "target", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 1281, + "unique_ratio": 0.577808, + "example_values": [ + "21677.28345", + "15820.699", + "1639.5631", + "2497.0383", + "2897.3235" + ] + } + } + ], + "public_manifest": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/m4/ctgan/ctgan-m4-20260504_163038/public_gate/staged_input_manifest.json", + "train_csv": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/m4/ctgan/ctgan-m4-20260504_163038/staged/public/train.csv", + "val_csv": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/m4/ctgan/ctgan-m4-20260504_163038/staged/public/val.csv", + "test_csv": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/m4/ctgan/ctgan-m4-20260504_163038/staged/public/test.csv", + "features_json": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/m4/ctgan/ctgan-m4-20260504_163038/staged/public/staged_features.json", + "public_gate_report": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/m4/ctgan/ctgan-m4-20260504_163038/public_gate/public_gate_report.json" +} \ No newline at end of file diff --git a/hyperparameter/m4/ctgan/ctgan-m4-20260504_163038/staged/public/staged_features.json b/hyperparameter/m4/ctgan/ctgan-m4-20260504_163038/staged/public/staged_features.json new file mode 100644 index 0000000000000000000000000000000000000000..d6acd098c35111f423f3ffff2cfd1754bc5dfebc --- /dev/null +++ b/hyperparameter/m4/ctgan/ctgan-m4-20260504_163038/staged/public/staged_features.json @@ -0,0 +1,37 @@ +[ + { + "feature_name": "age", + "data_type": "continuous", + "is_target": false + }, + { + "feature_name": "sex", + "data_type": "categorical", + "is_target": false + }, + { + "feature_name": "bmi", + "data_type": "continuous", + "is_target": false + }, + { + "feature_name": "children", + "data_type": "continuous", + "is_target": false + }, + { + "feature_name": "smoker", + "data_type": "binary", + "is_target": false + }, + { + "feature_name": "region", + "data_type": "categorical", + "is_target": false + }, + { + "feature_name": "charges", + "data_type": "continuous", + "is_target": true + } +] \ No newline at end of file diff --git a/hyperparameter/m4/ctgan/ctgan-m4-20260504_163038/staged/public/test.csv b/hyperparameter/m4/ctgan/ctgan-m4-20260504_163038/staged/public/test.csv new file mode 100644 index 0000000000000000000000000000000000000000..c88a2e7cfcd715bb421cb56eb078033da45c4dc8 --- /dev/null +++ b/hyperparameter/m4/ctgan/ctgan-m4-20260504_163038/staged/public/test.csv @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:4c541b677fb2d45c5bc79338eeee9fd8c91484b195a0c2c546c2fbabf113b7ea +size 11298 diff --git a/hyperparameter/m4/ctgan/ctgan-m4-20260504_163038/staged/public/train.csv b/hyperparameter/m4/ctgan/ctgan-m4-20260504_163038/staged/public/train.csv new file mode 100644 index 0000000000000000000000000000000000000000..5a05019d786529e0617291766c4fbe016ca01bf5 --- /dev/null +++ b/hyperparameter/m4/ctgan/ctgan-m4-20260504_163038/staged/public/train.csv @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:614ebfac5f41d6f661aff675fa18c0f933a8d9bcc77ea71b7b2360c2f0155837 +size 90069 diff --git a/hyperparameter/m4/ctgan/ctgan-m4-20260504_163038/staged/public/val.csv b/hyperparameter/m4/ctgan/ctgan-m4-20260504_163038/staged/public/val.csv new file mode 100644 index 0000000000000000000000000000000000000000..d78fe5ad1537c437ba9ac2629f2aa60a6c17e708 --- /dev/null +++ b/hyperparameter/m4/ctgan/ctgan-m4-20260504_163038/staged/public/val.csv @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:e55f5edbe7942ff01630de91a9c70dfbc6445eba76c7b970350364546b67c2d7 +size 11218 diff --git a/hyperparameter/m4/forestdiffusion/forest-m4-20260505_054626/_fd_X_host.npy b/hyperparameter/m4/forestdiffusion/forest-m4-20260505_054626/_fd_X_host.npy new file mode 100644 index 0000000000000000000000000000000000000000..adf7790ed3b5f3fbf003c878147469425b445ed1 --- /dev/null +++ b/hyperparameter/m4/forestdiffusion/forest-m4-20260505_054626/_fd_X_host.npy @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:2075e38ffa201390419d8ba927a30948410d3bae79c47b2d376e0991c42ba455 +size 62204 diff --git a/hyperparameter/m4/forestdiffusion/forest-m4-20260505_054626/_fd_gen.py b/hyperparameter/m4/forestdiffusion/forest-m4-20260505_054626/_fd_gen.py new file mode 100644 index 0000000000000000000000000000000000000000..8461195844e9e59608fb1e081ec03cfac6a974e2 --- /dev/null +++ b/hyperparameter/m4/forestdiffusion/forest-m4-20260505_054626/_fd_gen.py @@ -0,0 +1,8 @@ + +import joblib, pandas as pd +m, meta = joblib.load(r'/work/output-Benchmark-trainonly-v1/m4/forestdiffusion/forest-m4-20260505_054626/forestdiffusion_model.joblib') +# generate:batch_size 为样本数 +arr = m.generate(batch_size=int(2217)) +df = pd.DataFrame(arr, columns=meta["column_names"]) +df.to_csv(r'/work/output-Benchmark-trainonly-v1/m4/forestdiffusion/forest-m4-20260505_054626/forest-m4-2217-20260505_054728.csv', index=False) +print("saved", len(df)) diff --git a/hyperparameter/m4/forestdiffusion/forest-m4-20260505_054626/_fd_meta_host.json b/hyperparameter/m4/forestdiffusion/forest-m4-20260505_054626/_fd_meta_host.json new file mode 100644 index 0000000000000000000000000000000000000000..ee3e9bf77c9008274d3ca5b068e49b142b0bb624 --- /dev/null +++ b/hyperparameter/m4/forestdiffusion/forest-m4-20260505_054626/_fd_meta_host.json @@ -0,0 +1 @@ +{"column_names": ["age", "sex", "bmi", "children", "smoker", "region", "charges"], "cat_indexes": [1, 4, 5]} \ No newline at end of file diff --git a/hyperparameter/m4/forestdiffusion/forest-m4-20260505_054626/_fd_train.py b/hyperparameter/m4/forestdiffusion/forest-m4-20260505_054626/_fd_train.py new file mode 100644 index 0000000000000000000000000000000000000000..ebf266bca658e6ad6b9587f0adc8437183b95240 --- /dev/null +++ b/hyperparameter/m4/forestdiffusion/forest-m4-20260505_054626/_fd_train.py @@ -0,0 +1,36 @@ + +import os, shutil, json +with open('/tmp/pgrep', 'w') as _f: + _f.write("#!/usr/bin/env python3\n") + _f.write("import subprocess, sys\n") + _f.write("ppid = sys.argv[-1]\n") + _f.write("out = subprocess.check_output(['ps', '-o', 'pid=', '--ppid', str(ppid)], text=True)\n") + _f.write("print(out, end='')\n") +os.chmod('/tmp/pgrep', 0o755) +os.environ['PATH'] = '/tmp:' + os.environ.get('PATH', '') +shutil.copy(r'/work/output-Benchmark-trainonly-v1/m4/forestdiffusion/forest-m4-20260505_054626/_fd_X_host.npy', '/tmp/fd_X.npy') +with open(r'/work/output-Benchmark-trainonly-v1/m4/forestdiffusion/forest-m4-20260505_054626/_fd_meta_host.json') as f: + open('/tmp/fd_meta.json','w').write(f.read()) + +import numpy as np, joblib, json, os +from ForestDiffusion import ForestDiffusionModel +X = np.load("/tmp/fd_X.npy") +with open("/tmp/fd_meta.json") as f: + meta = json.load(f) +cat_indexes = meta["cat_indexes"] +print( + "[ForestDiffusion] train config: " + f"rows={X.shape[0]} cols={X.shape[1]} n_t=4 " + f"n_estimators=5 duplicate_K=2 n_jobs=1 " + f"max_depth=3 xgb_verbosity=1", + flush=True, +) +m = ForestDiffusionModel( + X, n_t=4, n_estimators=5, duplicate_K=2, n_jobs=1, + model="xgboost", max_depth=3, tree_method="hist", cat_indexes=cat_indexes, + verbosity=1, +) +joblib.dump((m, meta), "/tmp/fd_model.joblib") +print("ForestDiffusion train OK") + +shutil.copy('/tmp/fd_model.joblib', r'/work/output-Benchmark-trainonly-v1/m4/forestdiffusion/forest-m4-20260505_054626/forestdiffusion_model.joblib') diff --git a/hyperparameter/m4/forestdiffusion/forest-m4-20260505_054626/forest-m4-2217-20260505_054728.csv b/hyperparameter/m4/forestdiffusion/forest-m4-20260505_054626/forest-m4-2217-20260505_054728.csv new file mode 100644 index 0000000000000000000000000000000000000000..f1d2eff9332a3dd7d26ba4ffcdfdc04fc9f660f9 --- /dev/null +++ b/hyperparameter/m4/forestdiffusion/forest-m4-20260505_054626/forest-m4-2217-20260505_054728.csv @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:0bdc905187e139e9a8aa2195be6ea0ead074e0581674f95a0835b0162283efeb +size 187161 diff --git a/hyperparameter/m4/forestdiffusion/forest-m4-20260505_054626/forestdiffusion_model.joblib b/hyperparameter/m4/forestdiffusion/forest-m4-20260505_054626/forestdiffusion_model.joblib new file mode 100644 index 0000000000000000000000000000000000000000..7ae9e2108a91ffcee817101ab5e6c2b1b21b2d29 --- /dev/null +++ b/hyperparameter/m4/forestdiffusion/forest-m4-20260505_054626/forestdiffusion_model.joblib @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:8bcf47681df06aac4a4ab25672bec4d9de816ce4fd54a87d2147263e45cd2a36 +size 388175 diff --git a/hyperparameter/m4/forestdiffusion/forest-m4-20260505_054626/gen_20260505_054728.log b/hyperparameter/m4/forestdiffusion/forest-m4-20260505_054626/gen_20260505_054728.log new file mode 100644 index 0000000000000000000000000000000000000000..0d099294db3ffa5b6be944ddae6f9ebeb7ddf9f1 --- /dev/null +++ b/hyperparameter/m4/forestdiffusion/forest-m4-20260505_054626/gen_20260505_054728.log @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:3b4f5dfe5bcb88fc99f10ac8344d90afca55f103c6c9b5c7672df1bac747a475 +size 294 diff --git a/hyperparameter/m4/forestdiffusion/forest-m4-20260505_054626/input_snapshot.json b/hyperparameter/m4/forestdiffusion/forest-m4-20260505_054626/input_snapshot.json new file mode 100644 index 0000000000000000000000000000000000000000..5daa6d8c1d862349e305d0a5fcbd26d5361342b8 --- /dev/null +++ b/hyperparameter/m4/forestdiffusion/forest-m4-20260505_054626/input_snapshot.json @@ -0,0 +1,36 @@ +{ + "dataset_id": "m4", + "model": "forestdiffusion", + "inputs": { + "train_csv": { + "path": "/data/jialinzhang/SynthesizePipeline-server/DatasetNew/m4/m4-train.csv", + "exists": true, + "size": 92191, + "sha256": "396b9d409ca21bf4a4cd329bdf5b7796aa0ae6356fa8d89b8eb669b5880b81f1" + }, + "val_csv": { + "path": "/data/jialinzhang/SynthesizePipeline-server/DatasetNew/m4/m4-val.csv", + "exists": true, + "size": 11482, + "sha256": "ee3c247d02f56e1687d03c381e13125d6a3a2a411ac7f202ba8520a4be9f1784" + }, + "test_csv": { + "path": "/data/jialinzhang/SynthesizePipeline-server/DatasetNew/m4/m4-test.csv", + "exists": true, + "size": 11559, + "sha256": "cadb9941124001b8fa7cb1ebae43b70a9ca56294f4df4d3c2f22c164c41757d4" + }, + "profile_json": { + "path": "/data/jialinzhang/SynthesizePipeline-server/DatasetNew/artifacts/data_core/tabular/m4/m4-dataset_profile.json", + "exists": true, + "size": 3336, + "sha256": "83e2764810e4a0e8cdece3a28dbd9134b7c9df6f2e56953e46d024ad2c4e035f" + }, + "contract_json": { + "path": "/data/jialinzhang/SynthesizePipeline-server/DatasetNew/artifacts/data_core/tabular/m4/m4-dataset_contract_v1.json", + "exists": true, + "size": 3810, + "sha256": "c23641b258629a845b164099bd0132886f8f6d0100e990494e0f92540f8987d9" + } + } +} \ No newline at end of file diff --git a/hyperparameter/m4/forestdiffusion/forest-m4-20260505_054626/models_fd/model.joblib b/hyperparameter/m4/forestdiffusion/forest-m4-20260505_054626/models_fd/model.joblib new file mode 100644 index 0000000000000000000000000000000000000000..7ae9e2108a91ffcee817101ab5e6c2b1b21b2d29 --- /dev/null +++ b/hyperparameter/m4/forestdiffusion/forest-m4-20260505_054626/models_fd/model.joblib @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:8bcf47681df06aac4a4ab25672bec4d9de816ce4fd54a87d2147263e45cd2a36 +size 388175 diff --git a/hyperparameter/m4/forestdiffusion/forest-m4-20260505_054626/public_gate/normalized_schema_snapshot.json b/hyperparameter/m4/forestdiffusion/forest-m4-20260505_054626/public_gate/normalized_schema_snapshot.json new file mode 100644 index 0000000000000000000000000000000000000000..31ed9818686b11907df75e872e4ffbe010330880 --- /dev/null +++ b/hyperparameter/m4/forestdiffusion/forest-m4-20260505_054626/public_gate/normalized_schema_snapshot.json @@ -0,0 +1,147 @@ +{ + "dataset_id": "m4", + "target_column": "charges", + "task_type": "regression", + "columns": [ + { + "name": "age", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 47, + "unique_ratio": 0.0212, + "example_values": [ + "46", + "38", + "19", + "27", + "26" + ] + } + }, + { + "name": "sex", + "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.000902, + "example_values": [ + "female", + "male" + ] + } + }, + { + "name": "bmi", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 538, + "unique_ratio": 0.24267, + "example_values": [ + "23.655", + "19.3", + "30.59", + "32.67", + "29.45" + ] + } + }, + { + "name": "children", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 6, + "unique_ratio": 0.002706, + "example_values": [ + "1", + "0", + "3", + "2", + "5" + ] + } + }, + { + "name": "smoker", + "role": "feature", + "semantic_type": "boolean", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 2, + "unique_ratio": 0.000902, + "example_values": [ + "yes", + "no" + ] + } + }, + { + "name": "region", + "role": "feature", + "semantic_type": "categorical", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 4, + "unique_ratio": 0.001804, + "example_values": [ + "northwest", + "southwest", + "southeast", + "northeast" + ] + } + }, + { + "name": "charges", + "role": "target", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 1281, + "unique_ratio": 0.577808, + "example_values": [ + "21677.28345", + "15820.699", + "1639.5631", + "2497.0383", + "2897.3235" + ] + } + } + ] +} \ No newline at end of file diff --git a/hyperparameter/m4/forestdiffusion/forest-m4-20260505_054626/public_gate/public_gate_report.json b/hyperparameter/m4/forestdiffusion/forest-m4-20260505_054626/public_gate/public_gate_report.json new file mode 100644 index 0000000000000000000000000000000000000000..e7a25408e2574124629ea9437356551e4d6f4790 --- /dev/null +++ b/hyperparameter/m4/forestdiffusion/forest-m4-20260505_054626/public_gate/public_gate_report.json @@ -0,0 +1,37 @@ +{ + "dataset_id": "m4", + "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": "charges", + "task_type": "regression", + "input_splits": { + "train": "/data/jialinzhang/SynthesizePipeline-server/DatasetNew/m4/m4-train.csv", + "val": "/data/jialinzhang/SynthesizePipeline-server/DatasetNew/m4/m4-val.csv", + "test": "/data/jialinzhang/SynthesizePipeline-server/DatasetNew/m4/m4-test.csv" + } +} \ No newline at end of file diff --git a/hyperparameter/m4/forestdiffusion/forest-m4-20260505_054626/public_gate/staged_input_manifest.json b/hyperparameter/m4/forestdiffusion/forest-m4-20260505_054626/public_gate/staged_input_manifest.json new file mode 100644 index 0000000000000000000000000000000000000000..287c3da3fc3531b225c29efed9fe6259cdc470f8 --- /dev/null +++ b/hyperparameter/m4/forestdiffusion/forest-m4-20260505_054626/public_gate/staged_input_manifest.json @@ -0,0 +1,152 @@ +{ + "dataset_id": "m4", + "target_column": "charges", + "task_type": "regression", + "train_csv": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/m4/forestdiffusion/forest-m4-20260505_054626/staged/public/train.csv", + "val_csv": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/m4/forestdiffusion/forest-m4-20260505_054626/staged/public/val.csv", + "test_csv": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/m4/forestdiffusion/forest-m4-20260505_054626/staged/public/test.csv", + "features_json": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/m4/forestdiffusion/forest-m4-20260505_054626/staged/public/staged_features.json", + "public_gate_report": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/m4/forestdiffusion/forest-m4-20260505_054626/public_gate/public_gate_report.json", + "column_schema": [ + { + "name": "age", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 47, + "unique_ratio": 0.0212, + "example_values": [ + "46", + "38", + "19", + "27", + "26" + ] + } + }, + { + "name": "sex", + "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.000902, + "example_values": [ + "female", + "male" + ] + } + }, + { + "name": "bmi", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 538, + "unique_ratio": 0.24267, + "example_values": [ + "23.655", + "19.3", + "30.59", + "32.67", + "29.45" + ] + } + }, + { + "name": "children", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 6, + "unique_ratio": 0.002706, + "example_values": [ + "1", + "0", + "3", + "2", + "5" + ] + } + }, + { + "name": "smoker", + "role": "feature", + "semantic_type": "boolean", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 2, + "unique_ratio": 0.000902, + "example_values": [ + "yes", + "no" + ] + } + }, + { + "name": "region", + "role": "feature", + "semantic_type": "categorical", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 4, + "unique_ratio": 0.001804, + "example_values": [ + "northwest", + "southwest", + "southeast", + "northeast" + ] + } + }, + { + "name": "charges", + "role": "target", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 1281, + "unique_ratio": 0.577808, + "example_values": [ + "21677.28345", + "15820.699", + "1639.5631", + "2497.0383", + "2897.3235" + ] + } + } + ] +} \ No newline at end of file diff --git a/hyperparameter/m4/forestdiffusion/forest-m4-20260505_054626/run_config.json b/hyperparameter/m4/forestdiffusion/forest-m4-20260505_054626/run_config.json new file mode 100644 index 0000000000000000000000000000000000000000..f230518e8a68247065a0b86568dd1af47fc948f5 --- /dev/null +++ b/hyperparameter/m4/forestdiffusion/forest-m4-20260505_054626/run_config.json @@ -0,0 +1,45 @@ +{ + "schema_version": 1, + "recorded_at": "2026-05-05T05:46:26", + "dataset_id": "m4", + "model": "forestdiffusion", + "work_dir": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/m4/forestdiffusion/forest-m4-20260505_054626", + "dataset_source_requested": "new", + "dataset_source_resolved": "new", + "cli_args": { + "model": "forestdiffusion", + "dataset": "m4", + "dataset_source": "new", + "train": true, + "generate": true, + "num_rows": 0, + "epochs": null, + "output_dir": null, + "model_dir": null, + "work_dir": null, + "resume": false, + "no_stats": false + }, + "resolved": { + "num_rows": 2217, + "model_path": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/m4/forestdiffusion/forest-m4-20260505_054626/models_fd/model.joblib", + "output_csv": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/m4/forestdiffusion/forest-m4-20260505_054626/forest-m4-2217-20260505_054728.csv" + }, + "input_artifacts": { + "public_gate_report": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/m4/forestdiffusion/forest-m4-20260505_054626/public_gate/public_gate_report.json", + "public_manifest": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/m4/forestdiffusion/forest-m4-20260505_054626/public_gate/staged_input_manifest.json", + "model_manifest": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/m4/forestdiffusion/forest-m4-20260505_054626/staged/forestdiffusion/model_input_manifest.json", + "train_csv": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/m4/forestdiffusion/forest-m4-20260505_054626/staged/public/train.csv", + "features_json": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/m4/forestdiffusion/forest-m4-20260505_054626/staged/public/staged_features.json", + "target_column": "charges", + "task_type": "regression" + }, + "env_overrides": { + "FORESTDIFFUSION_DUPLICATE_K": "2", + "FORESTDIFFUSION_MAX_DEPTH": "3", + "FORESTDIFFUSION_MAX_TRAIN_ROWS": "4096", + "FORESTDIFFUSION_N_ESTIMATORS": "5", + "FORESTDIFFUSION_N_JOBS": "1", + "FORESTDIFFUSION_N_T": "4" + } +} \ No newline at end of file diff --git a/hyperparameter/m4/forestdiffusion/forest-m4-20260505_054626/runtime_result.json b/hyperparameter/m4/forestdiffusion/forest-m4-20260505_054626/runtime_result.json new file mode 100644 index 0000000000000000000000000000000000000000..8b429267af5d9fd1c5019b6f53048b72e1bbcfc2 --- /dev/null +++ b/hyperparameter/m4/forestdiffusion/forest-m4-20260505_054626/runtime_result.json @@ -0,0 +1,27 @@ +{ + "dataset_id": "m4", + "model": "forestdiffusion", + "run_id": "forest-m4-20260505_054626", + "public_gate_status": "pass", + "adapter_ready_status": "pass", + "train_status": "success", + "generate_status": "success", + "reason_code": null, + "reason_detail": null, + "artifacts": { + "synthetic_csv": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/m4/forestdiffusion/forest-m4-20260505_054626/forest-m4-2217-20260505_054728.csv", + "model_path": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/m4/forestdiffusion/forest-m4-20260505_054626/models_fd/model.joblib" + }, + "timings": { + "train": { + "started_at": "2026-05-05T05:46:26", + "ended_at": "2026-05-05T05:47:28", + "duration_sec": 62.454 + }, + "generate": { + "started_at": "2026-05-05T05:47:28", + "ended_at": "2026-05-05T05:47:31", + "duration_sec": 2.464 + } + } +} \ No newline at end of file diff --git a/hyperparameter/m4/forestdiffusion/forest-m4-20260505_054626/staged/forestdiffusion/adapter_report.json b/hyperparameter/m4/forestdiffusion/forest-m4-20260505_054626/staged/forestdiffusion/adapter_report.json new file mode 100644 index 0000000000000000000000000000000000000000..8862b07db40af747b0d9e793f7699e08d42b653b --- /dev/null +++ b/hyperparameter/m4/forestdiffusion/forest-m4-20260505_054626/staged/forestdiffusion/adapter_report.json @@ -0,0 +1,7 @@ +{ + "adapter_ready_status": "pass", + "adapter_fail_reason_code": null, + "adapter_fail_detail": null, + "adapter_transforms_applied": [], + "model_input_manifest": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/m4/forestdiffusion/forest-m4-20260505_054626/staged/forestdiffusion/model_input_manifest.json" +} \ No newline at end of file diff --git a/hyperparameter/m4/forestdiffusion/forest-m4-20260505_054626/staged/forestdiffusion/adapter_transforms_applied.json b/hyperparameter/m4/forestdiffusion/forest-m4-20260505_054626/staged/forestdiffusion/adapter_transforms_applied.json new file mode 100644 index 0000000000000000000000000000000000000000..0637a088a01e8ddab3bf3fa98dbe804cbde1a0dc --- /dev/null +++ b/hyperparameter/m4/forestdiffusion/forest-m4-20260505_054626/staged/forestdiffusion/adapter_transforms_applied.json @@ -0,0 +1 @@ +[] \ No newline at end of file diff --git a/hyperparameter/m4/forestdiffusion/forest-m4-20260505_054626/staged/forestdiffusion/model_input_manifest.json b/hyperparameter/m4/forestdiffusion/forest-m4-20260505_054626/staged/forestdiffusion/model_input_manifest.json new file mode 100644 index 0000000000000000000000000000000000000000..fbad75c93bb19dad9aa22c75a081ab5a17095a94 --- /dev/null +++ b/hyperparameter/m4/forestdiffusion/forest-m4-20260505_054626/staged/forestdiffusion/model_input_manifest.json @@ -0,0 +1,154 @@ +{ + "dataset_id": "m4", + "model": "forestdiffusion", + "target_column": "charges", + "task_type": "regression", + "column_schema": [ + { + "name": "age", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 47, + "unique_ratio": 0.0212, + "example_values": [ + "46", + "38", + "19", + "27", + "26" + ] + } + }, + { + "name": "sex", + "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.000902, + "example_values": [ + "female", + "male" + ] + } + }, + { + "name": "bmi", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 538, + "unique_ratio": 0.24267, + "example_values": [ + "23.655", + "19.3", + "30.59", + "32.67", + "29.45" + ] + } + }, + { + "name": "children", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 6, + "unique_ratio": 0.002706, + "example_values": [ + "1", + "0", + "3", + "2", + "5" + ] + } + }, + { + "name": "smoker", + "role": "feature", + "semantic_type": "boolean", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 2, + "unique_ratio": 0.000902, + "example_values": [ + "yes", + "no" + ] + } + }, + { + "name": "region", + "role": "feature", + "semantic_type": "categorical", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 4, + "unique_ratio": 0.001804, + "example_values": [ + "northwest", + "southwest", + "southeast", + "northeast" + ] + } + }, + { + "name": "charges", + "role": "target", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 1281, + "unique_ratio": 0.577808, + "example_values": [ + "21677.28345", + "15820.699", + "1639.5631", + "2497.0383", + "2897.3235" + ] + } + } + ], + "public_manifest": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/m4/forestdiffusion/forest-m4-20260505_054626/public_gate/staged_input_manifest.json", + "train_csv": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/m4/forestdiffusion/forest-m4-20260505_054626/staged/public/train.csv", + "val_csv": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/m4/forestdiffusion/forest-m4-20260505_054626/staged/public/val.csv", + "test_csv": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/m4/forestdiffusion/forest-m4-20260505_054626/staged/public/test.csv", + "features_json": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/m4/forestdiffusion/forest-m4-20260505_054626/staged/public/staged_features.json", + "public_gate_report": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/m4/forestdiffusion/forest-m4-20260505_054626/public_gate/public_gate_report.json" +} \ No newline at end of file diff --git a/hyperparameter/m4/forestdiffusion/forest-m4-20260505_054626/staged/public/staged_features.json b/hyperparameter/m4/forestdiffusion/forest-m4-20260505_054626/staged/public/staged_features.json new file mode 100644 index 0000000000000000000000000000000000000000..d6acd098c35111f423f3ffff2cfd1754bc5dfebc --- /dev/null +++ b/hyperparameter/m4/forestdiffusion/forest-m4-20260505_054626/staged/public/staged_features.json @@ -0,0 +1,37 @@ +[ + { + "feature_name": "age", + "data_type": "continuous", + "is_target": false + }, + { + "feature_name": "sex", + "data_type": "categorical", + "is_target": false + }, + { + "feature_name": "bmi", + "data_type": "continuous", + "is_target": false + }, + { + "feature_name": "children", + "data_type": "continuous", + "is_target": false + }, + { + "feature_name": "smoker", + "data_type": "binary", + "is_target": false + }, + { + "feature_name": "region", + "data_type": "categorical", + "is_target": false + }, + { + "feature_name": "charges", + "data_type": "continuous", + "is_target": true + } +] \ No newline at end of file diff --git a/hyperparameter/m4/forestdiffusion/forest-m4-20260505_054626/staged/public/test.csv b/hyperparameter/m4/forestdiffusion/forest-m4-20260505_054626/staged/public/test.csv new file mode 100644 index 0000000000000000000000000000000000000000..c88a2e7cfcd715bb421cb56eb078033da45c4dc8 --- /dev/null +++ b/hyperparameter/m4/forestdiffusion/forest-m4-20260505_054626/staged/public/test.csv @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:4c541b677fb2d45c5bc79338eeee9fd8c91484b195a0c2c546c2fbabf113b7ea +size 11298 diff --git a/hyperparameter/m4/forestdiffusion/forest-m4-20260505_054626/staged/public/train.csv b/hyperparameter/m4/forestdiffusion/forest-m4-20260505_054626/staged/public/train.csv new file mode 100644 index 0000000000000000000000000000000000000000..5a05019d786529e0617291766c4fbe016ca01bf5 --- /dev/null +++ b/hyperparameter/m4/forestdiffusion/forest-m4-20260505_054626/staged/public/train.csv @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:614ebfac5f41d6f661aff675fa18c0f933a8d9bcc77ea71b7b2360c2f0155837 +size 90069 diff --git a/hyperparameter/m4/forestdiffusion/forest-m4-20260505_054626/staged/public/val.csv b/hyperparameter/m4/forestdiffusion/forest-m4-20260505_054626/staged/public/val.csv new file mode 100644 index 0000000000000000000000000000000000000000..d78fe5ad1537c437ba9ac2629f2aa60a6c17e708 --- /dev/null +++ b/hyperparameter/m4/forestdiffusion/forest-m4-20260505_054626/staged/public/val.csv @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:e55f5edbe7942ff01630de91a9c70dfbc6445eba76c7b970350364546b67c2d7 +size 11218 diff --git a/hyperparameter/m4/forestdiffusion/forest-m4-20260505_054626/train_20260505_054626.log b/hyperparameter/m4/forestdiffusion/forest-m4-20260505_054626/train_20260505_054626.log new file mode 100644 index 0000000000000000000000000000000000000000..f17ddaae773256b16279e9fafb985a56a819affd --- /dev/null +++ b/hyperparameter/m4/forestdiffusion/forest-m4-20260505_054626/train_20260505_054626.log @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:a44365bed894ecdfa5cf1a9a34ee88e79e8f9259a640ccb6676c613e915fc3ea +size 429 diff --git a/hyperparameter/m4/forestdiffusion/forest-m4-20260505_054744/_fd_X_host.npy b/hyperparameter/m4/forestdiffusion/forest-m4-20260505_054744/_fd_X_host.npy new file mode 100644 index 0000000000000000000000000000000000000000..adf7790ed3b5f3fbf003c878147469425b445ed1 --- /dev/null +++ b/hyperparameter/m4/forestdiffusion/forest-m4-20260505_054744/_fd_X_host.npy @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:2075e38ffa201390419d8ba927a30948410d3bae79c47b2d376e0991c42ba455 +size 62204 diff --git a/hyperparameter/m4/forestdiffusion/forest-m4-20260505_054744/_fd_gen.py b/hyperparameter/m4/forestdiffusion/forest-m4-20260505_054744/_fd_gen.py new file mode 100644 index 0000000000000000000000000000000000000000..ec29d9182bf47aae67025a93411974f2ea4f0ea1 --- /dev/null +++ b/hyperparameter/m4/forestdiffusion/forest-m4-20260505_054744/_fd_gen.py @@ -0,0 +1,8 @@ + +import joblib, pandas as pd +m, meta = joblib.load(r'/work/output-Benchmark-trainonly-v1/m4/forestdiffusion/forest-m4-20260505_054744/forestdiffusion_model.joblib') +# generate:batch_size 为样本数 +arr = m.generate(batch_size=int(2217)) +df = pd.DataFrame(arr, columns=meta["column_names"]) +df.to_csv(r'/work/output-Benchmark-trainonly-v1/m4/forestdiffusion/forest-m4-20260505_054744/forest-m4-2217-20260505_055051.csv', index=False) +print("saved", len(df)) diff --git a/hyperparameter/m4/forestdiffusion/forest-m4-20260505_054744/_fd_meta_host.json b/hyperparameter/m4/forestdiffusion/forest-m4-20260505_054744/_fd_meta_host.json new file mode 100644 index 0000000000000000000000000000000000000000..ee3e9bf77c9008274d3ca5b068e49b142b0bb624 --- /dev/null +++ b/hyperparameter/m4/forestdiffusion/forest-m4-20260505_054744/_fd_meta_host.json @@ -0,0 +1 @@ +{"column_names": ["age", "sex", "bmi", "children", "smoker", "region", "charges"], "cat_indexes": [1, 4, 5]} \ No newline at end of file diff --git a/hyperparameter/m4/forestdiffusion/forest-m4-20260505_054744/_fd_train.py b/hyperparameter/m4/forestdiffusion/forest-m4-20260505_054744/_fd_train.py new file mode 100644 index 0000000000000000000000000000000000000000..726c140c6f57df4672d2b930c63be1f8e1d524b7 --- /dev/null +++ b/hyperparameter/m4/forestdiffusion/forest-m4-20260505_054744/_fd_train.py @@ -0,0 +1,36 @@ + +import os, shutil, json +with open('/tmp/pgrep', 'w') as _f: + _f.write("#!/usr/bin/env python3\n") + _f.write("import subprocess, sys\n") + _f.write("ppid = sys.argv[-1]\n") + _f.write("out = subprocess.check_output(['ps', '-o', 'pid=', '--ppid', str(ppid)], text=True)\n") + _f.write("print(out, end='')\n") +os.chmod('/tmp/pgrep', 0o755) +os.environ['PATH'] = '/tmp:' + os.environ.get('PATH', '') +shutil.copy(r'/work/output-Benchmark-trainonly-v1/m4/forestdiffusion/forest-m4-20260505_054744/_fd_X_host.npy', '/tmp/fd_X.npy') +with open(r'/work/output-Benchmark-trainonly-v1/m4/forestdiffusion/forest-m4-20260505_054744/_fd_meta_host.json') as f: + open('/tmp/fd_meta.json','w').write(f.read()) + +import numpy as np, joblib, json, os +from ForestDiffusion import ForestDiffusionModel +X = np.load("/tmp/fd_X.npy") +with open("/tmp/fd_meta.json") as f: + meta = json.load(f) +cat_indexes = meta["cat_indexes"] +print( + "[ForestDiffusion] train config: " + f"rows={X.shape[0]} cols={X.shape[1]} n_t=6 " + f"n_estimators=10 duplicate_K=3 n_jobs=1 " + f"max_depth=3 xgb_verbosity=1", + flush=True, +) +m = ForestDiffusionModel( + X, n_t=6, n_estimators=10, duplicate_K=3, n_jobs=1, + model="xgboost", max_depth=3, tree_method="hist", cat_indexes=cat_indexes, + verbosity=1, +) +joblib.dump((m, meta), "/tmp/fd_model.joblib") +print("ForestDiffusion train OK") + +shutil.copy('/tmp/fd_model.joblib', r'/work/output-Benchmark-trainonly-v1/m4/forestdiffusion/forest-m4-20260505_054744/forestdiffusion_model.joblib') diff --git a/hyperparameter/m4/forestdiffusion/forest-m4-20260505_054744/forest-m4-2217-20260505_055051.csv b/hyperparameter/m4/forestdiffusion/forest-m4-20260505_054744/forest-m4-2217-20260505_055051.csv new file mode 100644 index 0000000000000000000000000000000000000000..3924e39a733eca910ccd18ae7e7f9adcc22fb122 --- /dev/null +++ b/hyperparameter/m4/forestdiffusion/forest-m4-20260505_054744/forest-m4-2217-20260505_055051.csv @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:37b229a926f7785325bd550af1f8c02b0d2d019131bd98c5400e9162bbeea484 +size 189165 diff --git a/hyperparameter/m4/forestdiffusion/forest-m4-20260505_054744/forestdiffusion_model.joblib b/hyperparameter/m4/forestdiffusion/forest-m4-20260505_054744/forestdiffusion_model.joblib new file mode 100644 index 0000000000000000000000000000000000000000..14a52b73e6ed89af2eef7cebaef6389ca59a32a6 --- /dev/null +++ b/hyperparameter/m4/forestdiffusion/forest-m4-20260505_054744/forestdiffusion_model.joblib @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:13a2f7204a678be2500735b9fd0e20452bb11d5e248cdc8bfe788d241f51548a +size 814659 diff --git a/hyperparameter/m4/forestdiffusion/forest-m4-20260505_054744/gen_20260505_055051.log b/hyperparameter/m4/forestdiffusion/forest-m4-20260505_054744/gen_20260505_055051.log new file mode 100644 index 0000000000000000000000000000000000000000..1ca3752a10acf013b0d98b93b25a616a0deabe9e --- /dev/null +++ b/hyperparameter/m4/forestdiffusion/forest-m4-20260505_054744/gen_20260505_055051.log @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:7f72bb35a28dbe32d45f6e806d3b96725efb97624b5ebc0cbc4c50caed39f6dd +size 294 diff --git a/hyperparameter/m4/forestdiffusion/forest-m4-20260505_054744/input_snapshot.json b/hyperparameter/m4/forestdiffusion/forest-m4-20260505_054744/input_snapshot.json new file mode 100644 index 0000000000000000000000000000000000000000..5daa6d8c1d862349e305d0a5fcbd26d5361342b8 --- /dev/null +++ b/hyperparameter/m4/forestdiffusion/forest-m4-20260505_054744/input_snapshot.json @@ -0,0 +1,36 @@ +{ + "dataset_id": "m4", + "model": "forestdiffusion", + "inputs": { + "train_csv": { + "path": "/data/jialinzhang/SynthesizePipeline-server/DatasetNew/m4/m4-train.csv", + "exists": true, + "size": 92191, + "sha256": "396b9d409ca21bf4a4cd329bdf5b7796aa0ae6356fa8d89b8eb669b5880b81f1" + }, + "val_csv": { + "path": "/data/jialinzhang/SynthesizePipeline-server/DatasetNew/m4/m4-val.csv", + "exists": true, + "size": 11482, + "sha256": "ee3c247d02f56e1687d03c381e13125d6a3a2a411ac7f202ba8520a4be9f1784" + }, + "test_csv": { + "path": "/data/jialinzhang/SynthesizePipeline-server/DatasetNew/m4/m4-test.csv", + "exists": true, + "size": 11559, + "sha256": "cadb9941124001b8fa7cb1ebae43b70a9ca56294f4df4d3c2f22c164c41757d4" + }, + "profile_json": { + "path": "/data/jialinzhang/SynthesizePipeline-server/DatasetNew/artifacts/data_core/tabular/m4/m4-dataset_profile.json", + "exists": true, + "size": 3336, + "sha256": "83e2764810e4a0e8cdece3a28dbd9134b7c9df6f2e56953e46d024ad2c4e035f" + }, + "contract_json": { + "path": "/data/jialinzhang/SynthesizePipeline-server/DatasetNew/artifacts/data_core/tabular/m4/m4-dataset_contract_v1.json", + "exists": true, + "size": 3810, + "sha256": "c23641b258629a845b164099bd0132886f8f6d0100e990494e0f92540f8987d9" + } + } +} \ No newline at end of file diff --git a/hyperparameter/m4/forestdiffusion/forest-m4-20260505_054744/models_fd/model.joblib b/hyperparameter/m4/forestdiffusion/forest-m4-20260505_054744/models_fd/model.joblib new file mode 100644 index 0000000000000000000000000000000000000000..14a52b73e6ed89af2eef7cebaef6389ca59a32a6 --- /dev/null +++ b/hyperparameter/m4/forestdiffusion/forest-m4-20260505_054744/models_fd/model.joblib @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:13a2f7204a678be2500735b9fd0e20452bb11d5e248cdc8bfe788d241f51548a +size 814659 diff --git a/hyperparameter/m4/forestdiffusion/forest-m4-20260505_054744/public_gate/normalized_schema_snapshot.json b/hyperparameter/m4/forestdiffusion/forest-m4-20260505_054744/public_gate/normalized_schema_snapshot.json new file mode 100644 index 0000000000000000000000000000000000000000..31ed9818686b11907df75e872e4ffbe010330880 --- /dev/null +++ b/hyperparameter/m4/forestdiffusion/forest-m4-20260505_054744/public_gate/normalized_schema_snapshot.json @@ -0,0 +1,147 @@ +{ + "dataset_id": "m4", + "target_column": "charges", + "task_type": "regression", + "columns": [ + { + "name": "age", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 47, + "unique_ratio": 0.0212, + "example_values": [ + "46", + "38", + "19", + "27", + "26" + ] + } + }, + { + "name": "sex", + "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.000902, + "example_values": [ + "female", + "male" + ] + } + }, + { + "name": "bmi", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 538, + "unique_ratio": 0.24267, + "example_values": [ + "23.655", + "19.3", + "30.59", + "32.67", + "29.45" + ] + } + }, + { + "name": "children", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 6, + "unique_ratio": 0.002706, + "example_values": [ + "1", + "0", + "3", + "2", + "5" + ] + } + }, + { + "name": "smoker", + "role": "feature", + "semantic_type": "boolean", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 2, + "unique_ratio": 0.000902, + "example_values": [ + "yes", + "no" + ] + } + }, + { + "name": "region", + "role": "feature", + "semantic_type": "categorical", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 4, + "unique_ratio": 0.001804, + "example_values": [ + "northwest", + "southwest", + "southeast", + "northeast" + ] + } + }, + { + "name": "charges", + "role": "target", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 1281, + "unique_ratio": 0.577808, + "example_values": [ + "21677.28345", + "15820.699", + "1639.5631", + "2497.0383", + "2897.3235" + ] + } + } + ] +} \ No newline at end of file diff --git a/hyperparameter/m4/forestdiffusion/forest-m4-20260505_054744/public_gate/public_gate_report.json b/hyperparameter/m4/forestdiffusion/forest-m4-20260505_054744/public_gate/public_gate_report.json new file mode 100644 index 0000000000000000000000000000000000000000..e7a25408e2574124629ea9437356551e4d6f4790 --- /dev/null +++ b/hyperparameter/m4/forestdiffusion/forest-m4-20260505_054744/public_gate/public_gate_report.json @@ -0,0 +1,37 @@ +{ + "dataset_id": "m4", + "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": "charges", + "task_type": "regression", + "input_splits": { + "train": "/data/jialinzhang/SynthesizePipeline-server/DatasetNew/m4/m4-train.csv", + "val": "/data/jialinzhang/SynthesizePipeline-server/DatasetNew/m4/m4-val.csv", + "test": "/data/jialinzhang/SynthesizePipeline-server/DatasetNew/m4/m4-test.csv" + } +} \ No newline at end of file diff --git a/hyperparameter/m4/forestdiffusion/forest-m4-20260505_054744/public_gate/staged_input_manifest.json b/hyperparameter/m4/forestdiffusion/forest-m4-20260505_054744/public_gate/staged_input_manifest.json new file mode 100644 index 0000000000000000000000000000000000000000..7c378d9cedace30526dfdca39ac36aa20fa19ef9 --- /dev/null +++ b/hyperparameter/m4/forestdiffusion/forest-m4-20260505_054744/public_gate/staged_input_manifest.json @@ -0,0 +1,152 @@ +{ + "dataset_id": "m4", + "target_column": "charges", + "task_type": "regression", + "train_csv": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/m4/forestdiffusion/forest-m4-20260505_054744/staged/public/train.csv", + "val_csv": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/m4/forestdiffusion/forest-m4-20260505_054744/staged/public/val.csv", + "test_csv": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/m4/forestdiffusion/forest-m4-20260505_054744/staged/public/test.csv", + "features_json": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/m4/forestdiffusion/forest-m4-20260505_054744/staged/public/staged_features.json", + "public_gate_report": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/m4/forestdiffusion/forest-m4-20260505_054744/public_gate/public_gate_report.json", + "column_schema": [ + { + "name": "age", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 47, + "unique_ratio": 0.0212, + "example_values": [ + "46", + "38", + "19", + "27", + "26" + ] + } + }, + { + "name": "sex", + "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.000902, + "example_values": [ + "female", + "male" + ] + } + }, + { + "name": "bmi", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 538, + "unique_ratio": 0.24267, + "example_values": [ + "23.655", + "19.3", + "30.59", + "32.67", + "29.45" + ] + } + }, + { + "name": "children", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 6, + "unique_ratio": 0.002706, + "example_values": [ + "1", + "0", + "3", + "2", + "5" + ] + } + }, + { + "name": "smoker", + "role": "feature", + "semantic_type": "boolean", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 2, + "unique_ratio": 0.000902, + "example_values": [ + "yes", + "no" + ] + } + }, + { + "name": "region", + "role": "feature", + "semantic_type": "categorical", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 4, + "unique_ratio": 0.001804, + "example_values": [ + "northwest", + "southwest", + "southeast", + "northeast" + ] + } + }, + { + "name": "charges", + "role": "target", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 1281, + "unique_ratio": 0.577808, + "example_values": [ + "21677.28345", + "15820.699", + "1639.5631", + "2497.0383", + "2897.3235" + ] + } + } + ] +} \ No newline at end of file diff --git a/hyperparameter/m4/forestdiffusion/forest-m4-20260505_054744/run_config.json b/hyperparameter/m4/forestdiffusion/forest-m4-20260505_054744/run_config.json new file mode 100644 index 0000000000000000000000000000000000000000..385169e379c779f90c70f2b92705f83111992bae --- /dev/null +++ b/hyperparameter/m4/forestdiffusion/forest-m4-20260505_054744/run_config.json @@ -0,0 +1,45 @@ +{ + "schema_version": 1, + "recorded_at": "2026-05-05T05:47:44", + "dataset_id": "m4", + "model": "forestdiffusion", + "work_dir": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/m4/forestdiffusion/forest-m4-20260505_054744", + "dataset_source_requested": "new", + "dataset_source_resolved": "new", + "cli_args": { + "model": "forestdiffusion", + "dataset": "m4", + "dataset_source": "new", + "train": true, + "generate": true, + "num_rows": 0, + "epochs": null, + "output_dir": null, + "model_dir": null, + "work_dir": null, + "resume": false, + "no_stats": false + }, + "resolved": { + "num_rows": 2217, + "model_path": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/m4/forestdiffusion/forest-m4-20260505_054744/models_fd/model.joblib", + "output_csv": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/m4/forestdiffusion/forest-m4-20260505_054744/forest-m4-2217-20260505_055051.csv" + }, + "input_artifacts": { + "public_gate_report": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/m4/forestdiffusion/forest-m4-20260505_054744/public_gate/public_gate_report.json", + "public_manifest": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/m4/forestdiffusion/forest-m4-20260505_054744/public_gate/staged_input_manifest.json", + "model_manifest": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/m4/forestdiffusion/forest-m4-20260505_054744/staged/forestdiffusion/model_input_manifest.json", + "train_csv": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/m4/forestdiffusion/forest-m4-20260505_054744/staged/public/train.csv", + "features_json": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/m4/forestdiffusion/forest-m4-20260505_054744/staged/public/staged_features.json", + "target_column": "charges", + "task_type": "regression" + }, + "env_overrides": { + "FORESTDIFFUSION_DUPLICATE_K": "3", + "FORESTDIFFUSION_MAX_DEPTH": "3", + "FORESTDIFFUSION_MAX_TRAIN_ROWS": "10000", + "FORESTDIFFUSION_N_ESTIMATORS": "10", + "FORESTDIFFUSION_N_JOBS": "1", + "FORESTDIFFUSION_N_T": "6" + } +} \ No newline at end of file diff --git a/hyperparameter/m4/forestdiffusion/forest-m4-20260505_054744/runtime_result.json b/hyperparameter/m4/forestdiffusion/forest-m4-20260505_054744/runtime_result.json new file mode 100644 index 0000000000000000000000000000000000000000..144a82bd289edfc01ee6c1878919c67ae06d669b --- /dev/null +++ b/hyperparameter/m4/forestdiffusion/forest-m4-20260505_054744/runtime_result.json @@ -0,0 +1,27 @@ +{ + "dataset_id": "m4", + "model": "forestdiffusion", + "run_id": "forest-m4-20260505_054744", + "public_gate_status": "pass", + "adapter_ready_status": "pass", + "train_status": "success", + "generate_status": "success", + "reason_code": null, + "reason_detail": null, + "artifacts": { + "synthetic_csv": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/m4/forestdiffusion/forest-m4-20260505_054744/forest-m4-2217-20260505_055051.csv", + "model_path": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/m4/forestdiffusion/forest-m4-20260505_054744/models_fd/model.joblib" + }, + "timings": { + "train": { + "started_at": "2026-05-05T05:47:44", + "ended_at": "2026-05-05T05:50:51", + "duration_sec": 187.055 + }, + "generate": { + "started_at": "2026-05-05T05:50:51", + "ended_at": "2026-05-05T05:50:53", + "duration_sec": 2.588 + } + } +} \ No newline at end of file diff --git a/hyperparameter/m4/forestdiffusion/forest-m4-20260505_054744/staged/forestdiffusion/adapter_report.json b/hyperparameter/m4/forestdiffusion/forest-m4-20260505_054744/staged/forestdiffusion/adapter_report.json new file mode 100644 index 0000000000000000000000000000000000000000..2acd68d5a73c40329a5ea713047ceabbd8fdeb7b --- /dev/null +++ b/hyperparameter/m4/forestdiffusion/forest-m4-20260505_054744/staged/forestdiffusion/adapter_report.json @@ -0,0 +1,7 @@ +{ + "adapter_ready_status": "pass", + "adapter_fail_reason_code": null, + "adapter_fail_detail": null, + "adapter_transforms_applied": [], + "model_input_manifest": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/m4/forestdiffusion/forest-m4-20260505_054744/staged/forestdiffusion/model_input_manifest.json" +} \ No newline at end of file diff --git a/hyperparameter/m4/forestdiffusion/forest-m4-20260505_054744/staged/forestdiffusion/adapter_transforms_applied.json b/hyperparameter/m4/forestdiffusion/forest-m4-20260505_054744/staged/forestdiffusion/adapter_transforms_applied.json new file mode 100644 index 0000000000000000000000000000000000000000..0637a088a01e8ddab3bf3fa98dbe804cbde1a0dc --- /dev/null +++ b/hyperparameter/m4/forestdiffusion/forest-m4-20260505_054744/staged/forestdiffusion/adapter_transforms_applied.json @@ -0,0 +1 @@ +[] \ No newline at end of file diff --git a/hyperparameter/m4/forestdiffusion/forest-m4-20260505_054744/staged/forestdiffusion/model_input_manifest.json b/hyperparameter/m4/forestdiffusion/forest-m4-20260505_054744/staged/forestdiffusion/model_input_manifest.json new file mode 100644 index 0000000000000000000000000000000000000000..243f830d9964ab103894472c2890f0efd25265bf --- /dev/null +++ b/hyperparameter/m4/forestdiffusion/forest-m4-20260505_054744/staged/forestdiffusion/model_input_manifest.json @@ -0,0 +1,154 @@ +{ + "dataset_id": "m4", + "model": "forestdiffusion", + "target_column": "charges", + "task_type": "regression", + "column_schema": [ + { + "name": "age", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 47, + "unique_ratio": 0.0212, + "example_values": [ + "46", + "38", + "19", + "27", + "26" + ] + } + }, + { + "name": "sex", + "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.000902, + "example_values": [ + "female", + "male" + ] + } + }, + { + "name": "bmi", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 538, + "unique_ratio": 0.24267, + "example_values": [ + "23.655", + "19.3", + "30.59", + "32.67", + "29.45" + ] + } + }, + { + "name": "children", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 6, + "unique_ratio": 0.002706, + "example_values": [ + "1", + "0", + "3", + "2", + "5" + ] + } + }, + { + "name": "smoker", + "role": "feature", + "semantic_type": "boolean", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 2, + "unique_ratio": 0.000902, + "example_values": [ + "yes", + "no" + ] + } + }, + { + "name": "region", + "role": "feature", + "semantic_type": "categorical", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 4, + "unique_ratio": 0.001804, + "example_values": [ + "northwest", + "southwest", + "southeast", + "northeast" + ] + } + }, + { + "name": "charges", + "role": "target", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 1281, + "unique_ratio": 0.577808, + "example_values": [ + "21677.28345", + "15820.699", + "1639.5631", + "2497.0383", + "2897.3235" + ] + } + } + ], + "public_manifest": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/m4/forestdiffusion/forest-m4-20260505_054744/public_gate/staged_input_manifest.json", + "train_csv": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/m4/forestdiffusion/forest-m4-20260505_054744/staged/public/train.csv", + "val_csv": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/m4/forestdiffusion/forest-m4-20260505_054744/staged/public/val.csv", + "test_csv": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/m4/forestdiffusion/forest-m4-20260505_054744/staged/public/test.csv", + "features_json": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/m4/forestdiffusion/forest-m4-20260505_054744/staged/public/staged_features.json", + "public_gate_report": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/m4/forestdiffusion/forest-m4-20260505_054744/public_gate/public_gate_report.json" +} \ No newline at end of file diff --git a/hyperparameter/m4/forestdiffusion/forest-m4-20260505_054744/staged/public/staged_features.json b/hyperparameter/m4/forestdiffusion/forest-m4-20260505_054744/staged/public/staged_features.json new file mode 100644 index 0000000000000000000000000000000000000000..d6acd098c35111f423f3ffff2cfd1754bc5dfebc --- /dev/null +++ b/hyperparameter/m4/forestdiffusion/forest-m4-20260505_054744/staged/public/staged_features.json @@ -0,0 +1,37 @@ +[ + { + "feature_name": "age", + "data_type": "continuous", + "is_target": false + }, + { + "feature_name": "sex", + "data_type": "categorical", + "is_target": false + }, + { + "feature_name": "bmi", + "data_type": "continuous", + "is_target": false + }, + { + "feature_name": "children", + "data_type": "continuous", + "is_target": false + }, + { + "feature_name": "smoker", + "data_type": "binary", + "is_target": false + }, + { + "feature_name": "region", + "data_type": "categorical", + "is_target": false + }, + { + "feature_name": "charges", + "data_type": "continuous", + "is_target": true + } +] \ No newline at end of file diff --git a/hyperparameter/m4/forestdiffusion/forest-m4-20260505_054744/staged/public/test.csv b/hyperparameter/m4/forestdiffusion/forest-m4-20260505_054744/staged/public/test.csv new file mode 100644 index 0000000000000000000000000000000000000000..c88a2e7cfcd715bb421cb56eb078033da45c4dc8 --- /dev/null +++ b/hyperparameter/m4/forestdiffusion/forest-m4-20260505_054744/staged/public/test.csv @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:4c541b677fb2d45c5bc79338eeee9fd8c91484b195a0c2c546c2fbabf113b7ea +size 11298 diff --git a/hyperparameter/m4/forestdiffusion/forest-m4-20260505_054744/staged/public/train.csv b/hyperparameter/m4/forestdiffusion/forest-m4-20260505_054744/staged/public/train.csv new file mode 100644 index 0000000000000000000000000000000000000000..5a05019d786529e0617291766c4fbe016ca01bf5 --- /dev/null +++ b/hyperparameter/m4/forestdiffusion/forest-m4-20260505_054744/staged/public/train.csv @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:614ebfac5f41d6f661aff675fa18c0f933a8d9bcc77ea71b7b2360c2f0155837 +size 90069 diff --git a/hyperparameter/m4/forestdiffusion/forest-m4-20260505_054744/staged/public/val.csv b/hyperparameter/m4/forestdiffusion/forest-m4-20260505_054744/staged/public/val.csv new file mode 100644 index 0000000000000000000000000000000000000000..d78fe5ad1537c437ba9ac2629f2aa60a6c17e708 --- /dev/null +++ b/hyperparameter/m4/forestdiffusion/forest-m4-20260505_054744/staged/public/val.csv @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:e55f5edbe7942ff01630de91a9c70dfbc6445eba76c7b970350364546b67c2d7 +size 11218 diff --git a/hyperparameter/m4/forestdiffusion/forest-m4-20260505_054744/train_20260505_054744.log b/hyperparameter/m4/forestdiffusion/forest-m4-20260505_054744/train_20260505_054744.log new file mode 100644 index 0000000000000000000000000000000000000000..95eaccf65be0368ae4d3edc99486b2911370292e --- /dev/null +++ b/hyperparameter/m4/forestdiffusion/forest-m4-20260505_054744/train_20260505_054744.log @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:57b840526d48358c1582d13530566c2af48d0b25f6967deeb5d11ff2fd7f7323 +size 432 diff --git a/hyperparameter/m4/forestdiffusion/forest-m4-20260505_055106/_fd_X_host.npy b/hyperparameter/m4/forestdiffusion/forest-m4-20260505_055106/_fd_X_host.npy new file mode 100644 index 0000000000000000000000000000000000000000..adf7790ed3b5f3fbf003c878147469425b445ed1 --- /dev/null +++ b/hyperparameter/m4/forestdiffusion/forest-m4-20260505_055106/_fd_X_host.npy @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:2075e38ffa201390419d8ba927a30948410d3bae79c47b2d376e0991c42ba455 +size 62204 diff --git a/hyperparameter/m4/forestdiffusion/forest-m4-20260505_055106/_fd_gen.py b/hyperparameter/m4/forestdiffusion/forest-m4-20260505_055106/_fd_gen.py new file mode 100644 index 0000000000000000000000000000000000000000..0978243eacf9bdf1d3f7d3779b4d94495a13b768 --- /dev/null +++ b/hyperparameter/m4/forestdiffusion/forest-m4-20260505_055106/_fd_gen.py @@ -0,0 +1,8 @@ + +import joblib, pandas as pd +m, meta = joblib.load(r'/work/output-Benchmark-trainonly-v1/m4/forestdiffusion/forest-m4-20260505_055106/forestdiffusion_model.joblib') +# generate:batch_size 为样本数 +arr = m.generate(batch_size=int(2217)) +df = pd.DataFrame(arr, columns=meta["column_names"]) +df.to_csv(r'/work/output-Benchmark-trainonly-v1/m4/forestdiffusion/forest-m4-20260505_055106/forest-m4-2217-20260505_055615.csv', index=False) +print("saved", len(df)) diff --git a/hyperparameter/m4/forestdiffusion/forest-m4-20260505_055106/_fd_meta_host.json b/hyperparameter/m4/forestdiffusion/forest-m4-20260505_055106/_fd_meta_host.json new file mode 100644 index 0000000000000000000000000000000000000000..ee3e9bf77c9008274d3ca5b068e49b142b0bb624 --- /dev/null +++ b/hyperparameter/m4/forestdiffusion/forest-m4-20260505_055106/_fd_meta_host.json @@ -0,0 +1 @@ +{"column_names": ["age", "sex", "bmi", "children", "smoker", "region", "charges"], "cat_indexes": [1, 4, 5]} \ No newline at end of file diff --git a/hyperparameter/m4/forestdiffusion/forest-m4-20260505_055106/_fd_train.py b/hyperparameter/m4/forestdiffusion/forest-m4-20260505_055106/_fd_train.py new file mode 100644 index 0000000000000000000000000000000000000000..c0c9213e8aa4b1efa235273dbf14de7e5aa4acc6 --- /dev/null +++ b/hyperparameter/m4/forestdiffusion/forest-m4-20260505_055106/_fd_train.py @@ -0,0 +1,36 @@ + +import os, shutil, json +with open('/tmp/pgrep', 'w') as _f: + _f.write("#!/usr/bin/env python3\n") + _f.write("import subprocess, sys\n") + _f.write("ppid = sys.argv[-1]\n") + _f.write("out = subprocess.check_output(['ps', '-o', 'pid=', '--ppid', str(ppid)], text=True)\n") + _f.write("print(out, end='')\n") +os.chmod('/tmp/pgrep', 0o755) +os.environ['PATH'] = '/tmp:' + os.environ.get('PATH', '') +shutil.copy(r'/work/output-Benchmark-trainonly-v1/m4/forestdiffusion/forest-m4-20260505_055106/_fd_X_host.npy', '/tmp/fd_X.npy') +with open(r'/work/output-Benchmark-trainonly-v1/m4/forestdiffusion/forest-m4-20260505_055106/_fd_meta_host.json') as f: + open('/tmp/fd_meta.json','w').write(f.read()) + +import numpy as np, joblib, json, os +from ForestDiffusion import ForestDiffusionModel +X = np.load("/tmp/fd_X.npy") +with open("/tmp/fd_meta.json") as f: + meta = json.load(f) +cat_indexes = meta["cat_indexes"] +print( + "[ForestDiffusion] train config: " + f"rows={X.shape[0]} cols={X.shape[1]} n_t=8 " + f"n_estimators=10 duplicate_K=4 n_jobs=1 " + f"max_depth=4 xgb_verbosity=1", + flush=True, +) +m = ForestDiffusionModel( + X, n_t=8, n_estimators=10, duplicate_K=4, n_jobs=1, + model="xgboost", max_depth=4, tree_method="hist", cat_indexes=cat_indexes, + verbosity=1, +) +joblib.dump((m, meta), "/tmp/fd_model.joblib") +print("ForestDiffusion train OK") + +shutil.copy('/tmp/fd_model.joblib', r'/work/output-Benchmark-trainonly-v1/m4/forestdiffusion/forest-m4-20260505_055106/forestdiffusion_model.joblib') diff --git a/hyperparameter/m4/forestdiffusion/forest-m4-20260505_055106/forest-m4-2217-20260505_055615.csv b/hyperparameter/m4/forestdiffusion/forest-m4-20260505_055106/forest-m4-2217-20260505_055615.csv new file mode 100644 index 0000000000000000000000000000000000000000..8e191d23480389076db00bc5a3588e52da0114eb --- /dev/null +++ b/hyperparameter/m4/forestdiffusion/forest-m4-20260505_055106/forest-m4-2217-20260505_055615.csv @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:0501d6252a94d5911d0c4ff4883d8b1380a49752983353aa11bff646a18c975a +size 187113 diff --git a/hyperparameter/m4/forestdiffusion/forest-m4-20260505_055106/forestdiffusion_model.joblib b/hyperparameter/m4/forestdiffusion/forest-m4-20260505_055106/forestdiffusion_model.joblib new file mode 100644 index 0000000000000000000000000000000000000000..237a0703fad8a3958d86fc2c7ce5c1f14ec1c0f3 --- /dev/null +++ b/hyperparameter/m4/forestdiffusion/forest-m4-20260505_055106/forestdiffusion_model.joblib @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:9b93f7a2673cefc1403f537d8290dc7ba39b8a469d6168fa4a796f56160f7d06 +size 1417649 diff --git a/hyperparameter/m4/forestdiffusion/forest-m4-20260505_055106/gen_20260505_055615.log b/hyperparameter/m4/forestdiffusion/forest-m4-20260505_055106/gen_20260505_055615.log new file mode 100644 index 0000000000000000000000000000000000000000..f8408040492d6f1383c92e81a83d1691872a8233 --- /dev/null +++ b/hyperparameter/m4/forestdiffusion/forest-m4-20260505_055106/gen_20260505_055615.log @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:e2e7548839d21cfa2dbac8dfa3c4bb8c01b3b0270766c38749a43ea99f8e9d73 +size 294 diff --git a/hyperparameter/m4/forestdiffusion/forest-m4-20260505_055106/input_snapshot.json b/hyperparameter/m4/forestdiffusion/forest-m4-20260505_055106/input_snapshot.json new file mode 100644 index 0000000000000000000000000000000000000000..5daa6d8c1d862349e305d0a5fcbd26d5361342b8 --- /dev/null +++ b/hyperparameter/m4/forestdiffusion/forest-m4-20260505_055106/input_snapshot.json @@ -0,0 +1,36 @@ +{ + "dataset_id": "m4", + "model": "forestdiffusion", + "inputs": { + "train_csv": { + "path": "/data/jialinzhang/SynthesizePipeline-server/DatasetNew/m4/m4-train.csv", + "exists": true, + "size": 92191, + "sha256": "396b9d409ca21bf4a4cd329bdf5b7796aa0ae6356fa8d89b8eb669b5880b81f1" + }, + "val_csv": { + "path": "/data/jialinzhang/SynthesizePipeline-server/DatasetNew/m4/m4-val.csv", + "exists": true, + "size": 11482, + "sha256": "ee3c247d02f56e1687d03c381e13125d6a3a2a411ac7f202ba8520a4be9f1784" + }, + "test_csv": { + "path": "/data/jialinzhang/SynthesizePipeline-server/DatasetNew/m4/m4-test.csv", + "exists": true, + "size": 11559, + "sha256": "cadb9941124001b8fa7cb1ebae43b70a9ca56294f4df4d3c2f22c164c41757d4" + }, + "profile_json": { + "path": "/data/jialinzhang/SynthesizePipeline-server/DatasetNew/artifacts/data_core/tabular/m4/m4-dataset_profile.json", + "exists": true, + "size": 3336, + "sha256": "83e2764810e4a0e8cdece3a28dbd9134b7c9df6f2e56953e46d024ad2c4e035f" + }, + "contract_json": { + "path": "/data/jialinzhang/SynthesizePipeline-server/DatasetNew/artifacts/data_core/tabular/m4/m4-dataset_contract_v1.json", + "exists": true, + "size": 3810, + "sha256": "c23641b258629a845b164099bd0132886f8f6d0100e990494e0f92540f8987d9" + } + } +} \ No newline at end of file diff --git a/hyperparameter/m4/forestdiffusion/forest-m4-20260505_055106/models_fd/model.joblib b/hyperparameter/m4/forestdiffusion/forest-m4-20260505_055106/models_fd/model.joblib new file mode 100644 index 0000000000000000000000000000000000000000..237a0703fad8a3958d86fc2c7ce5c1f14ec1c0f3 --- /dev/null +++ b/hyperparameter/m4/forestdiffusion/forest-m4-20260505_055106/models_fd/model.joblib @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:9b93f7a2673cefc1403f537d8290dc7ba39b8a469d6168fa4a796f56160f7d06 +size 1417649 diff --git a/hyperparameter/m4/forestdiffusion/forest-m4-20260505_055106/public_gate/normalized_schema_snapshot.json b/hyperparameter/m4/forestdiffusion/forest-m4-20260505_055106/public_gate/normalized_schema_snapshot.json new file mode 100644 index 0000000000000000000000000000000000000000..31ed9818686b11907df75e872e4ffbe010330880 --- /dev/null +++ b/hyperparameter/m4/forestdiffusion/forest-m4-20260505_055106/public_gate/normalized_schema_snapshot.json @@ -0,0 +1,147 @@ +{ + "dataset_id": "m4", + "target_column": "charges", + "task_type": "regression", + "columns": [ + { + "name": "age", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 47, + "unique_ratio": 0.0212, + "example_values": [ + "46", + "38", + "19", + "27", + "26" + ] + } + }, + { + "name": "sex", + "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.000902, + "example_values": [ + "female", + "male" + ] + } + }, + { + "name": "bmi", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 538, + "unique_ratio": 0.24267, + "example_values": [ + "23.655", + "19.3", + "30.59", + "32.67", + "29.45" + ] + } + }, + { + "name": "children", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 6, + "unique_ratio": 0.002706, + "example_values": [ + "1", + "0", + "3", + "2", + "5" + ] + } + }, + { + "name": "smoker", + "role": "feature", + "semantic_type": "boolean", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 2, + "unique_ratio": 0.000902, + "example_values": [ + "yes", + "no" + ] + } + }, + { + "name": "region", + "role": "feature", + "semantic_type": "categorical", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 4, + "unique_ratio": 0.001804, + "example_values": [ + "northwest", + "southwest", + "southeast", + "northeast" + ] + } + }, + { + "name": "charges", + "role": "target", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 1281, + "unique_ratio": 0.577808, + "example_values": [ + "21677.28345", + "15820.699", + "1639.5631", + "2497.0383", + "2897.3235" + ] + } + } + ] +} \ No newline at end of file diff --git a/hyperparameter/m4/forestdiffusion/forest-m4-20260505_055106/public_gate/public_gate_report.json b/hyperparameter/m4/forestdiffusion/forest-m4-20260505_055106/public_gate/public_gate_report.json new file mode 100644 index 0000000000000000000000000000000000000000..e7a25408e2574124629ea9437356551e4d6f4790 --- /dev/null +++ b/hyperparameter/m4/forestdiffusion/forest-m4-20260505_055106/public_gate/public_gate_report.json @@ -0,0 +1,37 @@ +{ + "dataset_id": "m4", + "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": "charges", + "task_type": "regression", + "input_splits": { + "train": "/data/jialinzhang/SynthesizePipeline-server/DatasetNew/m4/m4-train.csv", + "val": "/data/jialinzhang/SynthesizePipeline-server/DatasetNew/m4/m4-val.csv", + "test": "/data/jialinzhang/SynthesizePipeline-server/DatasetNew/m4/m4-test.csv" + } +} \ No newline at end of file diff --git a/hyperparameter/m4/forestdiffusion/forest-m4-20260505_055106/public_gate/staged_input_manifest.json b/hyperparameter/m4/forestdiffusion/forest-m4-20260505_055106/public_gate/staged_input_manifest.json new file mode 100644 index 0000000000000000000000000000000000000000..bcc9d2ce93c2ea02e1cfb177369295fda7322da6 --- /dev/null +++ b/hyperparameter/m4/forestdiffusion/forest-m4-20260505_055106/public_gate/staged_input_manifest.json @@ -0,0 +1,152 @@ +{ + "dataset_id": "m4", + "target_column": "charges", + "task_type": "regression", + "train_csv": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/m4/forestdiffusion/forest-m4-20260505_055106/staged/public/train.csv", + "val_csv": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/m4/forestdiffusion/forest-m4-20260505_055106/staged/public/val.csv", + "test_csv": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/m4/forestdiffusion/forest-m4-20260505_055106/staged/public/test.csv", + "features_json": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/m4/forestdiffusion/forest-m4-20260505_055106/staged/public/staged_features.json", + "public_gate_report": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/m4/forestdiffusion/forest-m4-20260505_055106/public_gate/public_gate_report.json", + "column_schema": [ + { + "name": "age", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 47, + "unique_ratio": 0.0212, + "example_values": [ + "46", + "38", + "19", + "27", + "26" + ] + } + }, + { + "name": "sex", + "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.000902, + "example_values": [ + "female", + "male" + ] + } + }, + { + "name": "bmi", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 538, + "unique_ratio": 0.24267, + "example_values": [ + "23.655", + "19.3", + "30.59", + "32.67", + "29.45" + ] + } + }, + { + "name": "children", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 6, + "unique_ratio": 0.002706, + "example_values": [ + "1", + "0", + "3", + "2", + "5" + ] + } + }, + { + "name": "smoker", + "role": "feature", + "semantic_type": "boolean", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 2, + "unique_ratio": 0.000902, + "example_values": [ + "yes", + "no" + ] + } + }, + { + "name": "region", + "role": "feature", + "semantic_type": "categorical", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 4, + "unique_ratio": 0.001804, + "example_values": [ + "northwest", + "southwest", + "southeast", + "northeast" + ] + } + }, + { + "name": "charges", + "role": "target", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 1281, + "unique_ratio": 0.577808, + "example_values": [ + "21677.28345", + "15820.699", + "1639.5631", + "2497.0383", + "2897.3235" + ] + } + } + ] +} \ No newline at end of file diff --git a/hyperparameter/m4/forestdiffusion/forest-m4-20260505_055106/run_config.json b/hyperparameter/m4/forestdiffusion/forest-m4-20260505_055106/run_config.json new file mode 100644 index 0000000000000000000000000000000000000000..3a3843d1b18b3d4ba4fbf3f8861801acc5f4a0a1 --- /dev/null +++ b/hyperparameter/m4/forestdiffusion/forest-m4-20260505_055106/run_config.json @@ -0,0 +1,45 @@ +{ + "schema_version": 1, + "recorded_at": "2026-05-05T05:51:06", + "dataset_id": "m4", + "model": "forestdiffusion", + "work_dir": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/m4/forestdiffusion/forest-m4-20260505_055106", + "dataset_source_requested": "new", + "dataset_source_resolved": "new", + "cli_args": { + "model": "forestdiffusion", + "dataset": "m4", + "dataset_source": "new", + "train": true, + "generate": true, + "num_rows": 0, + "epochs": null, + "output_dir": null, + "model_dir": null, + "work_dir": null, + "resume": false, + "no_stats": false + }, + "resolved": { + "num_rows": 2217, + "model_path": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/m4/forestdiffusion/forest-m4-20260505_055106/models_fd/model.joblib", + "output_csv": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/m4/forestdiffusion/forest-m4-20260505_055106/forest-m4-2217-20260505_055615.csv" + }, + "input_artifacts": { + "public_gate_report": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/m4/forestdiffusion/forest-m4-20260505_055106/public_gate/public_gate_report.json", + "public_manifest": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/m4/forestdiffusion/forest-m4-20260505_055106/public_gate/staged_input_manifest.json", + "model_manifest": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/m4/forestdiffusion/forest-m4-20260505_055106/staged/forestdiffusion/model_input_manifest.json", + "train_csv": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/m4/forestdiffusion/forest-m4-20260505_055106/staged/public/train.csv", + "features_json": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/m4/forestdiffusion/forest-m4-20260505_055106/staged/public/staged_features.json", + "target_column": "charges", + "task_type": "regression" + }, + "env_overrides": { + "FORESTDIFFUSION_DUPLICATE_K": "4", + "FORESTDIFFUSION_MAX_DEPTH": "4", + "FORESTDIFFUSION_MAX_TRAIN_ROWS": "20000", + "FORESTDIFFUSION_N_ESTIMATORS": "10", + "FORESTDIFFUSION_N_JOBS": "1", + "FORESTDIFFUSION_N_T": "8" + } +} \ No newline at end of file diff --git a/hyperparameter/m4/forestdiffusion/forest-m4-20260505_055106/runtime_result.json b/hyperparameter/m4/forestdiffusion/forest-m4-20260505_055106/runtime_result.json new file mode 100644 index 0000000000000000000000000000000000000000..49df61c20db1dbd11bc950fd5378be45551b385c --- /dev/null +++ b/hyperparameter/m4/forestdiffusion/forest-m4-20260505_055106/runtime_result.json @@ -0,0 +1,27 @@ +{ + "dataset_id": "m4", + "model": "forestdiffusion", + "run_id": "forest-m4-20260505_055106", + "public_gate_status": "pass", + "adapter_ready_status": "pass", + "train_status": "success", + "generate_status": "success", + "reason_code": null, + "reason_detail": null, + "artifacts": { + "synthetic_csv": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/m4/forestdiffusion/forest-m4-20260505_055106/forest-m4-2217-20260505_055615.csv", + "model_path": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/m4/forestdiffusion/forest-m4-20260505_055106/models_fd/model.joblib" + }, + "timings": { + "train": { + "started_at": "2026-05-05T05:51:06", + "ended_at": "2026-05-05T05:56:15", + "duration_sec": 308.566 + }, + "generate": { + "started_at": "2026-05-05T05:56:15", + "ended_at": "2026-05-05T05:56:18", + "duration_sec": 3.219 + } + } +} \ No newline at end of file diff --git a/hyperparameter/m4/forestdiffusion/forest-m4-20260505_055106/staged/forestdiffusion/adapter_report.json b/hyperparameter/m4/forestdiffusion/forest-m4-20260505_055106/staged/forestdiffusion/adapter_report.json new file mode 100644 index 0000000000000000000000000000000000000000..b85a1e0a8ed93860dec8e3c6f1b91ce854f9249b --- /dev/null +++ b/hyperparameter/m4/forestdiffusion/forest-m4-20260505_055106/staged/forestdiffusion/adapter_report.json @@ -0,0 +1,7 @@ +{ + "adapter_ready_status": "pass", + "adapter_fail_reason_code": null, + "adapter_fail_detail": null, + "adapter_transforms_applied": [], + "model_input_manifest": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/m4/forestdiffusion/forest-m4-20260505_055106/staged/forestdiffusion/model_input_manifest.json" +} \ No newline at end of file diff --git a/hyperparameter/m4/forestdiffusion/forest-m4-20260505_055106/staged/forestdiffusion/adapter_transforms_applied.json b/hyperparameter/m4/forestdiffusion/forest-m4-20260505_055106/staged/forestdiffusion/adapter_transforms_applied.json new file mode 100644 index 0000000000000000000000000000000000000000..0637a088a01e8ddab3bf3fa98dbe804cbde1a0dc --- /dev/null +++ b/hyperparameter/m4/forestdiffusion/forest-m4-20260505_055106/staged/forestdiffusion/adapter_transforms_applied.json @@ -0,0 +1 @@ +[] \ No newline at end of file diff --git a/hyperparameter/m4/forestdiffusion/forest-m4-20260505_055106/staged/forestdiffusion/model_input_manifest.json b/hyperparameter/m4/forestdiffusion/forest-m4-20260505_055106/staged/forestdiffusion/model_input_manifest.json new file mode 100644 index 0000000000000000000000000000000000000000..33a3592430346dffb120bcf06d0f75c69ae83827 --- /dev/null +++ b/hyperparameter/m4/forestdiffusion/forest-m4-20260505_055106/staged/forestdiffusion/model_input_manifest.json @@ -0,0 +1,154 @@ +{ + "dataset_id": "m4", + "model": "forestdiffusion", + "target_column": "charges", + "task_type": "regression", + "column_schema": [ + { + "name": "age", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 47, + "unique_ratio": 0.0212, + "example_values": [ + "46", + "38", + "19", + "27", + "26" + ] + } + }, + { + "name": "sex", + "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.000902, + "example_values": [ + "female", + "male" + ] + } + }, + { + "name": "bmi", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 538, + "unique_ratio": 0.24267, + "example_values": [ + "23.655", + "19.3", + "30.59", + "32.67", + "29.45" + ] + } + }, + { + "name": "children", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 6, + "unique_ratio": 0.002706, + "example_values": [ + "1", + "0", + "3", + "2", + "5" + ] + } + }, + { + "name": "smoker", + "role": "feature", + "semantic_type": "boolean", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 2, + "unique_ratio": 0.000902, + "example_values": [ + "yes", + "no" + ] + } + }, + { + "name": "region", + "role": "feature", + "semantic_type": "categorical", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 4, + "unique_ratio": 0.001804, + "example_values": [ + "northwest", + "southwest", + "southeast", + "northeast" + ] + } + }, + { + "name": "charges", + "role": "target", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 1281, + "unique_ratio": 0.577808, + "example_values": [ + "21677.28345", + "15820.699", + "1639.5631", + "2497.0383", + "2897.3235" + ] + } + } + ], + "public_manifest": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/m4/forestdiffusion/forest-m4-20260505_055106/public_gate/staged_input_manifest.json", + "train_csv": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/m4/forestdiffusion/forest-m4-20260505_055106/staged/public/train.csv", + "val_csv": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/m4/forestdiffusion/forest-m4-20260505_055106/staged/public/val.csv", + "test_csv": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/m4/forestdiffusion/forest-m4-20260505_055106/staged/public/test.csv", + "features_json": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/m4/forestdiffusion/forest-m4-20260505_055106/staged/public/staged_features.json", + "public_gate_report": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/m4/forestdiffusion/forest-m4-20260505_055106/public_gate/public_gate_report.json" +} \ No newline at end of file diff --git a/hyperparameter/m4/forestdiffusion/forest-m4-20260505_055106/staged/public/staged_features.json b/hyperparameter/m4/forestdiffusion/forest-m4-20260505_055106/staged/public/staged_features.json new file mode 100644 index 0000000000000000000000000000000000000000..d6acd098c35111f423f3ffff2cfd1754bc5dfebc --- /dev/null +++ b/hyperparameter/m4/forestdiffusion/forest-m4-20260505_055106/staged/public/staged_features.json @@ -0,0 +1,37 @@ +[ + { + "feature_name": "age", + "data_type": "continuous", + "is_target": false + }, + { + "feature_name": "sex", + "data_type": "categorical", + "is_target": false + }, + { + "feature_name": "bmi", + "data_type": "continuous", + "is_target": false + }, + { + "feature_name": "children", + "data_type": "continuous", + "is_target": false + }, + { + "feature_name": "smoker", + "data_type": "binary", + "is_target": false + }, + { + "feature_name": "region", + "data_type": "categorical", + "is_target": false + }, + { + "feature_name": "charges", + "data_type": "continuous", + "is_target": true + } +] \ No newline at end of file diff --git a/hyperparameter/m4/forestdiffusion/forest-m4-20260505_055106/staged/public/test.csv b/hyperparameter/m4/forestdiffusion/forest-m4-20260505_055106/staged/public/test.csv new file mode 100644 index 0000000000000000000000000000000000000000..c88a2e7cfcd715bb421cb56eb078033da45c4dc8 --- /dev/null +++ b/hyperparameter/m4/forestdiffusion/forest-m4-20260505_055106/staged/public/test.csv @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:4c541b677fb2d45c5bc79338eeee9fd8c91484b195a0c2c546c2fbabf113b7ea +size 11298 diff --git a/hyperparameter/m4/forestdiffusion/forest-m4-20260505_055106/staged/public/train.csv b/hyperparameter/m4/forestdiffusion/forest-m4-20260505_055106/staged/public/train.csv new file mode 100644 index 0000000000000000000000000000000000000000..5a05019d786529e0617291766c4fbe016ca01bf5 --- /dev/null +++ b/hyperparameter/m4/forestdiffusion/forest-m4-20260505_055106/staged/public/train.csv @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:614ebfac5f41d6f661aff675fa18c0f933a8d9bcc77ea71b7b2360c2f0155837 +size 90069 diff --git a/hyperparameter/m4/forestdiffusion/forest-m4-20260505_055106/staged/public/val.csv b/hyperparameter/m4/forestdiffusion/forest-m4-20260505_055106/staged/public/val.csv new file mode 100644 index 0000000000000000000000000000000000000000..d78fe5ad1537c437ba9ac2629f2aa60a6c17e708 --- /dev/null +++ b/hyperparameter/m4/forestdiffusion/forest-m4-20260505_055106/staged/public/val.csv @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:e55f5edbe7942ff01630de91a9c70dfbc6445eba76c7b970350364546b67c2d7 +size 11218 diff --git a/hyperparameter/m4/forestdiffusion/forest-m4-20260505_055106/train_20260505_055106.log b/hyperparameter/m4/forestdiffusion/forest-m4-20260505_055106/train_20260505_055106.log new file mode 100644 index 0000000000000000000000000000000000000000..421e55cf5321fec30228ae829052197ea3d2a666 --- /dev/null +++ b/hyperparameter/m4/forestdiffusion/forest-m4-20260505_055106/train_20260505_055106.log @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:bbf2ab745381460c98036bf7818b001f232f4949bf9985b6ab827734fe96ca08 +size 432 diff --git a/hyperparameter/m4/forestdiffusion/forest-m4-20260505_055631/_fd_X_host.npy b/hyperparameter/m4/forestdiffusion/forest-m4-20260505_055631/_fd_X_host.npy new file mode 100644 index 0000000000000000000000000000000000000000..adf7790ed3b5f3fbf003c878147469425b445ed1 --- /dev/null +++ b/hyperparameter/m4/forestdiffusion/forest-m4-20260505_055631/_fd_X_host.npy @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:2075e38ffa201390419d8ba927a30948410d3bae79c47b2d376e0991c42ba455 +size 62204 diff --git a/hyperparameter/m4/forestdiffusion/forest-m4-20260505_055631/_fd_gen.py b/hyperparameter/m4/forestdiffusion/forest-m4-20260505_055631/_fd_gen.py new file mode 100644 index 0000000000000000000000000000000000000000..59f0e9e8c87f91430676cd76b03a5e12c8230108 --- /dev/null +++ b/hyperparameter/m4/forestdiffusion/forest-m4-20260505_055631/_fd_gen.py @@ -0,0 +1,8 @@ + +import joblib, pandas as pd +m, meta = joblib.load(r'/work/output-Benchmark-trainonly-v1/m4/forestdiffusion/forest-m4-20260505_055631/forestdiffusion_model.joblib') +# generate:batch_size 为样本数 +arr = m.generate(batch_size=int(2217)) +df = pd.DataFrame(arr, columns=meta["column_names"]) +df.to_csv(r'/work/output-Benchmark-trainonly-v1/m4/forestdiffusion/forest-m4-20260505_055631/forest-m4-2217-20260505_060555.csv', index=False) +print("saved", len(df)) diff --git a/hyperparameter/m4/forestdiffusion/forest-m4-20260505_055631/_fd_meta_host.json b/hyperparameter/m4/forestdiffusion/forest-m4-20260505_055631/_fd_meta_host.json new file mode 100644 index 0000000000000000000000000000000000000000..ee3e9bf77c9008274d3ca5b068e49b142b0bb624 --- /dev/null +++ b/hyperparameter/m4/forestdiffusion/forest-m4-20260505_055631/_fd_meta_host.json @@ -0,0 +1 @@ +{"column_names": ["age", "sex", "bmi", "children", "smoker", "region", "charges"], "cat_indexes": [1, 4, 5]} \ No newline at end of file diff --git a/hyperparameter/m4/forestdiffusion/forest-m4-20260505_055631/_fd_train.py b/hyperparameter/m4/forestdiffusion/forest-m4-20260505_055631/_fd_train.py new file mode 100644 index 0000000000000000000000000000000000000000..a07f4f3e637bf5c4f9404513f027eda9379462f7 --- /dev/null +++ b/hyperparameter/m4/forestdiffusion/forest-m4-20260505_055631/_fd_train.py @@ -0,0 +1,36 @@ + +import os, shutil, json +with open('/tmp/pgrep', 'w') as _f: + _f.write("#!/usr/bin/env python3\n") + _f.write("import subprocess, sys\n") + _f.write("ppid = sys.argv[-1]\n") + _f.write("out = subprocess.check_output(['ps', '-o', 'pid=', '--ppid', str(ppid)], text=True)\n") + _f.write("print(out, end='')\n") +os.chmod('/tmp/pgrep', 0o755) +os.environ['PATH'] = '/tmp:' + os.environ.get('PATH', '') +shutil.copy(r'/work/output-Benchmark-trainonly-v1/m4/forestdiffusion/forest-m4-20260505_055631/_fd_X_host.npy', '/tmp/fd_X.npy') +with open(r'/work/output-Benchmark-trainonly-v1/m4/forestdiffusion/forest-m4-20260505_055631/_fd_meta_host.json') as f: + open('/tmp/fd_meta.json','w').write(f.read()) + +import numpy as np, joblib, json, os +from ForestDiffusion import ForestDiffusionModel +X = np.load("/tmp/fd_X.npy") +with open("/tmp/fd_meta.json") as f: + meta = json.load(f) +cat_indexes = meta["cat_indexes"] +print( + "[ForestDiffusion] train config: " + f"rows={X.shape[0]} cols={X.shape[1]} n_t=10 " + f"n_estimators=15 duplicate_K=5 n_jobs=1 " + f"max_depth=4 xgb_verbosity=1", + flush=True, +) +m = ForestDiffusionModel( + X, n_t=10, n_estimators=15, duplicate_K=5, n_jobs=1, + model="xgboost", max_depth=4, tree_method="hist", cat_indexes=cat_indexes, + verbosity=1, +) +joblib.dump((m, meta), "/tmp/fd_model.joblib") +print("ForestDiffusion train OK") + +shutil.copy('/tmp/fd_model.joblib', r'/work/output-Benchmark-trainonly-v1/m4/forestdiffusion/forest-m4-20260505_055631/forestdiffusion_model.joblib') diff --git a/hyperparameter/m4/forestdiffusion/forest-m4-20260505_055631/forest-m4-2217-20260505_060555.csv b/hyperparameter/m4/forestdiffusion/forest-m4-20260505_055631/forest-m4-2217-20260505_060555.csv new file mode 100644 index 0000000000000000000000000000000000000000..3b2b5502c3bc9e5f6dcfa4d2b311fba30cafa54b --- /dev/null +++ b/hyperparameter/m4/forestdiffusion/forest-m4-20260505_055631/forest-m4-2217-20260505_060555.csv @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:bc829e9136d92981a008f8bf8770f071b49b668134f99618b8d8456173b2e93a +size 186501 diff --git a/hyperparameter/m4/forestdiffusion/forest-m4-20260505_055631/forestdiffusion_model.joblib b/hyperparameter/m4/forestdiffusion/forest-m4-20260505_055631/forestdiffusion_model.joblib new file mode 100644 index 0000000000000000000000000000000000000000..a392076595ea1f3d5443b0f3c1c6ed6b3a2259fa --- /dev/null +++ b/hyperparameter/m4/forestdiffusion/forest-m4-20260505_055631/forestdiffusion_model.joblib @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:0973579ce4b168a5c3070cfc42cf92799f2569c082cdceafbda7502739ad42ad +size 2489015 diff --git a/hyperparameter/m4/forestdiffusion/forest-m4-20260505_055631/gen_20260505_060555.log b/hyperparameter/m4/forestdiffusion/forest-m4-20260505_055631/gen_20260505_060555.log new file mode 100644 index 0000000000000000000000000000000000000000..0affbbd4be9f889ba2d2a02de846767f0902ea89 --- /dev/null +++ b/hyperparameter/m4/forestdiffusion/forest-m4-20260505_055631/gen_20260505_060555.log @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:10387f2403cf2921be75d4937c21c3277b08d1e18f024703143cc0c24eee40a3 +size 294 diff --git a/hyperparameter/m4/forestdiffusion/forest-m4-20260505_055631/input_snapshot.json b/hyperparameter/m4/forestdiffusion/forest-m4-20260505_055631/input_snapshot.json new file mode 100644 index 0000000000000000000000000000000000000000..5daa6d8c1d862349e305d0a5fcbd26d5361342b8 --- /dev/null +++ b/hyperparameter/m4/forestdiffusion/forest-m4-20260505_055631/input_snapshot.json @@ -0,0 +1,36 @@ +{ + "dataset_id": "m4", + "model": "forestdiffusion", + "inputs": { + "train_csv": { + "path": "/data/jialinzhang/SynthesizePipeline-server/DatasetNew/m4/m4-train.csv", + "exists": true, + "size": 92191, + "sha256": "396b9d409ca21bf4a4cd329bdf5b7796aa0ae6356fa8d89b8eb669b5880b81f1" + }, + "val_csv": { + "path": "/data/jialinzhang/SynthesizePipeline-server/DatasetNew/m4/m4-val.csv", + "exists": true, + "size": 11482, + "sha256": "ee3c247d02f56e1687d03c381e13125d6a3a2a411ac7f202ba8520a4be9f1784" + }, + "test_csv": { + "path": "/data/jialinzhang/SynthesizePipeline-server/DatasetNew/m4/m4-test.csv", + "exists": true, + "size": 11559, + "sha256": "cadb9941124001b8fa7cb1ebae43b70a9ca56294f4df4d3c2f22c164c41757d4" + }, + "profile_json": { + "path": "/data/jialinzhang/SynthesizePipeline-server/DatasetNew/artifacts/data_core/tabular/m4/m4-dataset_profile.json", + "exists": true, + "size": 3336, + "sha256": "83e2764810e4a0e8cdece3a28dbd9134b7c9df6f2e56953e46d024ad2c4e035f" + }, + "contract_json": { + "path": "/data/jialinzhang/SynthesizePipeline-server/DatasetNew/artifacts/data_core/tabular/m4/m4-dataset_contract_v1.json", + "exists": true, + "size": 3810, + "sha256": "c23641b258629a845b164099bd0132886f8f6d0100e990494e0f92540f8987d9" + } + } +} \ No newline at end of file diff --git a/hyperparameter/m4/forestdiffusion/forest-m4-20260505_055631/models_fd/model.joblib b/hyperparameter/m4/forestdiffusion/forest-m4-20260505_055631/models_fd/model.joblib new file mode 100644 index 0000000000000000000000000000000000000000..a392076595ea1f3d5443b0f3c1c6ed6b3a2259fa --- /dev/null +++ b/hyperparameter/m4/forestdiffusion/forest-m4-20260505_055631/models_fd/model.joblib @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:0973579ce4b168a5c3070cfc42cf92799f2569c082cdceafbda7502739ad42ad +size 2489015 diff --git a/hyperparameter/m4/forestdiffusion/forest-m4-20260505_055631/public_gate/normalized_schema_snapshot.json b/hyperparameter/m4/forestdiffusion/forest-m4-20260505_055631/public_gate/normalized_schema_snapshot.json new file mode 100644 index 0000000000000000000000000000000000000000..31ed9818686b11907df75e872e4ffbe010330880 --- /dev/null +++ b/hyperparameter/m4/forestdiffusion/forest-m4-20260505_055631/public_gate/normalized_schema_snapshot.json @@ -0,0 +1,147 @@ +{ + "dataset_id": "m4", + "target_column": "charges", + "task_type": "regression", + "columns": [ + { + "name": "age", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 47, + "unique_ratio": 0.0212, + "example_values": [ + "46", + "38", + "19", + "27", + "26" + ] + } + }, + { + "name": "sex", + "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.000902, + "example_values": [ + "female", + "male" + ] + } + }, + { + "name": "bmi", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 538, + "unique_ratio": 0.24267, + "example_values": [ + "23.655", + "19.3", + "30.59", + "32.67", + "29.45" + ] + } + }, + { + "name": "children", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 6, + "unique_ratio": 0.002706, + "example_values": [ + "1", + "0", + "3", + "2", + "5" + ] + } + }, + { + "name": "smoker", + "role": "feature", + "semantic_type": "boolean", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 2, + "unique_ratio": 0.000902, + "example_values": [ + "yes", + "no" + ] + } + }, + { + "name": "region", + "role": "feature", + "semantic_type": "categorical", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 4, + "unique_ratio": 0.001804, + "example_values": [ + "northwest", + "southwest", + "southeast", + "northeast" + ] + } + }, + { + "name": "charges", + "role": "target", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 1281, + "unique_ratio": 0.577808, + "example_values": [ + "21677.28345", + "15820.699", + "1639.5631", + "2497.0383", + "2897.3235" + ] + } + } + ] +} \ No newline at end of file diff --git a/hyperparameter/m4/forestdiffusion/forest-m4-20260505_055631/public_gate/public_gate_report.json b/hyperparameter/m4/forestdiffusion/forest-m4-20260505_055631/public_gate/public_gate_report.json new file mode 100644 index 0000000000000000000000000000000000000000..e7a25408e2574124629ea9437356551e4d6f4790 --- /dev/null +++ b/hyperparameter/m4/forestdiffusion/forest-m4-20260505_055631/public_gate/public_gate_report.json @@ -0,0 +1,37 @@ +{ + "dataset_id": "m4", + "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": "charges", + "task_type": "regression", + "input_splits": { + "train": "/data/jialinzhang/SynthesizePipeline-server/DatasetNew/m4/m4-train.csv", + "val": "/data/jialinzhang/SynthesizePipeline-server/DatasetNew/m4/m4-val.csv", + "test": "/data/jialinzhang/SynthesizePipeline-server/DatasetNew/m4/m4-test.csv" + } +} \ No newline at end of file diff --git a/hyperparameter/m4/forestdiffusion/forest-m4-20260505_055631/public_gate/staged_input_manifest.json b/hyperparameter/m4/forestdiffusion/forest-m4-20260505_055631/public_gate/staged_input_manifest.json new file mode 100644 index 0000000000000000000000000000000000000000..b70d623867c3d02e3a84bdba58ad86081d9e6fa4 --- /dev/null +++ b/hyperparameter/m4/forestdiffusion/forest-m4-20260505_055631/public_gate/staged_input_manifest.json @@ -0,0 +1,152 @@ +{ + "dataset_id": "m4", + "target_column": "charges", + "task_type": "regression", + "train_csv": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/m4/forestdiffusion/forest-m4-20260505_055631/staged/public/train.csv", + "val_csv": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/m4/forestdiffusion/forest-m4-20260505_055631/staged/public/val.csv", + "test_csv": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/m4/forestdiffusion/forest-m4-20260505_055631/staged/public/test.csv", + "features_json": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/m4/forestdiffusion/forest-m4-20260505_055631/staged/public/staged_features.json", + "public_gate_report": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/m4/forestdiffusion/forest-m4-20260505_055631/public_gate/public_gate_report.json", + "column_schema": [ + { + "name": "age", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 47, + "unique_ratio": 0.0212, + "example_values": [ + "46", + "38", + "19", + "27", + "26" + ] + } + }, + { + "name": "sex", + "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.000902, + "example_values": [ + "female", + "male" + ] + } + }, + { + "name": "bmi", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 538, + "unique_ratio": 0.24267, + "example_values": [ + "23.655", + "19.3", + "30.59", + "32.67", + "29.45" + ] + } + }, + { + "name": "children", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 6, + "unique_ratio": 0.002706, + "example_values": [ + "1", + "0", + "3", + "2", + "5" + ] + } + }, + { + "name": "smoker", + "role": "feature", + "semantic_type": "boolean", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 2, + "unique_ratio": 0.000902, + "example_values": [ + "yes", + "no" + ] + } + }, + { + "name": "region", + "role": "feature", + "semantic_type": "categorical", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 4, + "unique_ratio": 0.001804, + "example_values": [ + "northwest", + "southwest", + "southeast", + "northeast" + ] + } + }, + { + "name": "charges", + "role": "target", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 1281, + "unique_ratio": 0.577808, + "example_values": [ + "21677.28345", + "15820.699", + "1639.5631", + "2497.0383", + "2897.3235" + ] + } + } + ] +} \ No newline at end of file diff --git a/hyperparameter/m4/forestdiffusion/forest-m4-20260505_055631/run_config.json b/hyperparameter/m4/forestdiffusion/forest-m4-20260505_055631/run_config.json new file mode 100644 index 0000000000000000000000000000000000000000..640f9eb2a768f285b2382f9901315b0c77dec53b --- /dev/null +++ b/hyperparameter/m4/forestdiffusion/forest-m4-20260505_055631/run_config.json @@ -0,0 +1,45 @@ +{ + "schema_version": 1, + "recorded_at": "2026-05-05T05:56:31", + "dataset_id": "m4", + "model": "forestdiffusion", + "work_dir": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/m4/forestdiffusion/forest-m4-20260505_055631", + "dataset_source_requested": "new", + "dataset_source_resolved": "new", + "cli_args": { + "model": "forestdiffusion", + "dataset": "m4", + "dataset_source": "new", + "train": true, + "generate": true, + "num_rows": 0, + "epochs": null, + "output_dir": null, + "model_dir": null, + "work_dir": null, + "resume": false, + "no_stats": false + }, + "resolved": { + "num_rows": 2217, + "model_path": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/m4/forestdiffusion/forest-m4-20260505_055631/models_fd/model.joblib", + "output_csv": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/m4/forestdiffusion/forest-m4-20260505_055631/forest-m4-2217-20260505_060555.csv" + }, + "input_artifacts": { + "public_gate_report": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/m4/forestdiffusion/forest-m4-20260505_055631/public_gate/public_gate_report.json", + "public_manifest": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/m4/forestdiffusion/forest-m4-20260505_055631/public_gate/staged_input_manifest.json", + "model_manifest": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/m4/forestdiffusion/forest-m4-20260505_055631/staged/forestdiffusion/model_input_manifest.json", + "train_csv": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/m4/forestdiffusion/forest-m4-20260505_055631/staged/public/train.csv", + "features_json": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/m4/forestdiffusion/forest-m4-20260505_055631/staged/public/staged_features.json", + "target_column": "charges", + "task_type": "regression" + }, + "env_overrides": { + "FORESTDIFFUSION_DUPLICATE_K": "5", + "FORESTDIFFUSION_MAX_DEPTH": "4", + "FORESTDIFFUSION_MAX_TRAIN_ROWS": "30000", + "FORESTDIFFUSION_N_ESTIMATORS": "15", + "FORESTDIFFUSION_N_JOBS": "1", + "FORESTDIFFUSION_N_T": "10" + } +} \ No newline at end of file diff --git a/hyperparameter/m4/forestdiffusion/forest-m4-20260505_055631/runtime_result.json b/hyperparameter/m4/forestdiffusion/forest-m4-20260505_055631/runtime_result.json new file mode 100644 index 0000000000000000000000000000000000000000..c9cfd0f11389b84c90fed0e0413b55b53ca9dc6a --- /dev/null +++ b/hyperparameter/m4/forestdiffusion/forest-m4-20260505_055631/runtime_result.json @@ -0,0 +1,27 @@ +{ + "dataset_id": "m4", + "model": "forestdiffusion", + "run_id": "forest-m4-20260505_055631", + "public_gate_status": "pass", + "adapter_ready_status": "pass", + "train_status": "success", + "generate_status": "success", + "reason_code": null, + "reason_detail": null, + "artifacts": { + "synthetic_csv": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/m4/forestdiffusion/forest-m4-20260505_055631/forest-m4-2217-20260505_060555.csv", + "model_path": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/m4/forestdiffusion/forest-m4-20260505_055631/models_fd/model.joblib" + }, + "timings": { + "train": { + "started_at": "2026-05-05T05:56:31", + "ended_at": "2026-05-05T06:05:55", + "duration_sec": 564.211 + }, + "generate": { + "started_at": "2026-05-05T06:05:55", + "ended_at": "2026-05-05T06:05:58", + "duration_sec": 3.31 + } + } +} \ No newline at end of file diff --git a/hyperparameter/m4/forestdiffusion/forest-m4-20260505_055631/staged/forestdiffusion/adapter_report.json b/hyperparameter/m4/forestdiffusion/forest-m4-20260505_055631/staged/forestdiffusion/adapter_report.json new file mode 100644 index 0000000000000000000000000000000000000000..e6728b4eb334cac1f17929181746bd50ca622ebd --- /dev/null +++ b/hyperparameter/m4/forestdiffusion/forest-m4-20260505_055631/staged/forestdiffusion/adapter_report.json @@ -0,0 +1,7 @@ +{ + "adapter_ready_status": "pass", + "adapter_fail_reason_code": null, + "adapter_fail_detail": null, + "adapter_transforms_applied": [], + "model_input_manifest": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/m4/forestdiffusion/forest-m4-20260505_055631/staged/forestdiffusion/model_input_manifest.json" +} \ No newline at end of file diff --git a/hyperparameter/m4/forestdiffusion/forest-m4-20260505_055631/staged/forestdiffusion/adapter_transforms_applied.json b/hyperparameter/m4/forestdiffusion/forest-m4-20260505_055631/staged/forestdiffusion/adapter_transforms_applied.json new file mode 100644 index 0000000000000000000000000000000000000000..0637a088a01e8ddab3bf3fa98dbe804cbde1a0dc --- /dev/null +++ b/hyperparameter/m4/forestdiffusion/forest-m4-20260505_055631/staged/forestdiffusion/adapter_transforms_applied.json @@ -0,0 +1 @@ +[] \ No newline at end of file diff --git a/hyperparameter/m4/forestdiffusion/forest-m4-20260505_055631/staged/forestdiffusion/model_input_manifest.json b/hyperparameter/m4/forestdiffusion/forest-m4-20260505_055631/staged/forestdiffusion/model_input_manifest.json new file mode 100644 index 0000000000000000000000000000000000000000..4cb1542cfefabe1b87e7f26863bf879cca9122eb --- /dev/null +++ b/hyperparameter/m4/forestdiffusion/forest-m4-20260505_055631/staged/forestdiffusion/model_input_manifest.json @@ -0,0 +1,154 @@ +{ + "dataset_id": "m4", + "model": "forestdiffusion", + "target_column": "charges", + "task_type": "regression", + "column_schema": [ + { + "name": "age", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 47, + "unique_ratio": 0.0212, + "example_values": [ + "46", + "38", + "19", + "27", + "26" + ] + } + }, + { + "name": "sex", + "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.000902, + "example_values": [ + "female", + "male" + ] + } + }, + { + "name": "bmi", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 538, + "unique_ratio": 0.24267, + "example_values": [ + "23.655", + "19.3", + "30.59", + "32.67", + "29.45" + ] + } + }, + { + "name": "children", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 6, + "unique_ratio": 0.002706, + "example_values": [ + "1", + "0", + "3", + "2", + "5" + ] + } + }, + { + "name": "smoker", + "role": "feature", + "semantic_type": "boolean", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 2, + "unique_ratio": 0.000902, + "example_values": [ + "yes", + "no" + ] + } + }, + { + "name": "region", + "role": "feature", + "semantic_type": "categorical", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 4, + "unique_ratio": 0.001804, + "example_values": [ + "northwest", + "southwest", + "southeast", + "northeast" + ] + } + }, + { + "name": "charges", + "role": "target", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 1281, + "unique_ratio": 0.577808, + "example_values": [ + "21677.28345", + "15820.699", + "1639.5631", + "2497.0383", + "2897.3235" + ] + } + } + ], + "public_manifest": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/m4/forestdiffusion/forest-m4-20260505_055631/public_gate/staged_input_manifest.json", + "train_csv": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/m4/forestdiffusion/forest-m4-20260505_055631/staged/public/train.csv", + "val_csv": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/m4/forestdiffusion/forest-m4-20260505_055631/staged/public/val.csv", + "test_csv": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/m4/forestdiffusion/forest-m4-20260505_055631/staged/public/test.csv", + "features_json": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/m4/forestdiffusion/forest-m4-20260505_055631/staged/public/staged_features.json", + "public_gate_report": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/m4/forestdiffusion/forest-m4-20260505_055631/public_gate/public_gate_report.json" +} \ No newline at end of file diff --git a/hyperparameter/m4/forestdiffusion/forest-m4-20260505_055631/staged/public/staged_features.json b/hyperparameter/m4/forestdiffusion/forest-m4-20260505_055631/staged/public/staged_features.json new file mode 100644 index 0000000000000000000000000000000000000000..d6acd098c35111f423f3ffff2cfd1754bc5dfebc --- /dev/null +++ b/hyperparameter/m4/forestdiffusion/forest-m4-20260505_055631/staged/public/staged_features.json @@ -0,0 +1,37 @@ +[ + { + "feature_name": "age", + "data_type": "continuous", + "is_target": false + }, + { + "feature_name": "sex", + "data_type": "categorical", + "is_target": false + }, + { + "feature_name": "bmi", + "data_type": "continuous", + "is_target": false + }, + { + "feature_name": "children", + "data_type": "continuous", + "is_target": false + }, + { + "feature_name": "smoker", + "data_type": "binary", + "is_target": false + }, + { + "feature_name": "region", + "data_type": "categorical", + "is_target": false + }, + { + "feature_name": "charges", + "data_type": "continuous", + "is_target": true + } +] \ No newline at end of file diff --git a/hyperparameter/m4/forestdiffusion/forest-m4-20260505_055631/staged/public/test.csv b/hyperparameter/m4/forestdiffusion/forest-m4-20260505_055631/staged/public/test.csv new file mode 100644 index 0000000000000000000000000000000000000000..c88a2e7cfcd715bb421cb56eb078033da45c4dc8 --- /dev/null +++ b/hyperparameter/m4/forestdiffusion/forest-m4-20260505_055631/staged/public/test.csv @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:4c541b677fb2d45c5bc79338eeee9fd8c91484b195a0c2c546c2fbabf113b7ea +size 11298 diff --git a/hyperparameter/m4/forestdiffusion/forest-m4-20260505_055631/staged/public/train.csv b/hyperparameter/m4/forestdiffusion/forest-m4-20260505_055631/staged/public/train.csv new file mode 100644 index 0000000000000000000000000000000000000000..5a05019d786529e0617291766c4fbe016ca01bf5 --- /dev/null +++ b/hyperparameter/m4/forestdiffusion/forest-m4-20260505_055631/staged/public/train.csv @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:614ebfac5f41d6f661aff675fa18c0f933a8d9bcc77ea71b7b2360c2f0155837 +size 90069 diff --git a/hyperparameter/m4/forestdiffusion/forest-m4-20260505_055631/staged/public/val.csv b/hyperparameter/m4/forestdiffusion/forest-m4-20260505_055631/staged/public/val.csv new file mode 100644 index 0000000000000000000000000000000000000000..d78fe5ad1537c437ba9ac2629f2aa60a6c17e708 --- /dev/null +++ b/hyperparameter/m4/forestdiffusion/forest-m4-20260505_055631/staged/public/val.csv @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:e55f5edbe7942ff01630de91a9c70dfbc6445eba76c7b970350364546b67c2d7 +size 11218 diff --git a/hyperparameter/m4/forestdiffusion/forest-m4-20260505_055631/train_20260505_055631.log b/hyperparameter/m4/forestdiffusion/forest-m4-20260505_055631/train_20260505_055631.log new file mode 100644 index 0000000000000000000000000000000000000000..b1772766627efdff4be8087874271fc809749d3d --- /dev/null +++ b/hyperparameter/m4/forestdiffusion/forest-m4-20260505_055631/train_20260505_055631.log @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:35ca1e9bc9c8fbb639965343d712fcffdacbbe1ff0ac3a36e1a22792bfae340e +size 433 diff --git a/hyperparameter/m4/forestdiffusion/forest-m4-20260505_060614/_fd_X_host.npy b/hyperparameter/m4/forestdiffusion/forest-m4-20260505_060614/_fd_X_host.npy new file mode 100644 index 0000000000000000000000000000000000000000..adf7790ed3b5f3fbf003c878147469425b445ed1 --- /dev/null +++ b/hyperparameter/m4/forestdiffusion/forest-m4-20260505_060614/_fd_X_host.npy @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:2075e38ffa201390419d8ba927a30948410d3bae79c47b2d376e0991c42ba455 +size 62204 diff --git a/hyperparameter/m4/forestdiffusion/forest-m4-20260505_060614/_fd_gen.py b/hyperparameter/m4/forestdiffusion/forest-m4-20260505_060614/_fd_gen.py new file mode 100644 index 0000000000000000000000000000000000000000..6ea867dbab1f017db76d718371cb29e6e3492bc7 --- /dev/null +++ b/hyperparameter/m4/forestdiffusion/forest-m4-20260505_060614/_fd_gen.py @@ -0,0 +1,8 @@ + +import joblib, pandas as pd +m, meta = joblib.load(r'/work/output-Benchmark-trainonly-v1/m4/forestdiffusion/forest-m4-20260505_060614/forestdiffusion_model.joblib') +# generate:batch_size 为样本数 +arr = m.generate(batch_size=int(2217)) +df = pd.DataFrame(arr, columns=meta["column_names"]) +df.to_csv(r'/work/output-Benchmark-trainonly-v1/m4/forestdiffusion/forest-m4-20260505_060614/forest-m4-2217-20260505_061917.csv', index=False) +print("saved", len(df)) diff --git a/hyperparameter/m4/forestdiffusion/forest-m4-20260505_060614/_fd_meta_host.json b/hyperparameter/m4/forestdiffusion/forest-m4-20260505_060614/_fd_meta_host.json new file mode 100644 index 0000000000000000000000000000000000000000..ee3e9bf77c9008274d3ca5b068e49b142b0bb624 --- /dev/null +++ b/hyperparameter/m4/forestdiffusion/forest-m4-20260505_060614/_fd_meta_host.json @@ -0,0 +1 @@ +{"column_names": ["age", "sex", "bmi", "children", "smoker", "region", "charges"], "cat_indexes": [1, 4, 5]} \ No newline at end of file diff --git a/hyperparameter/m4/forestdiffusion/forest-m4-20260505_060614/_fd_train.py b/hyperparameter/m4/forestdiffusion/forest-m4-20260505_060614/_fd_train.py new file mode 100644 index 0000000000000000000000000000000000000000..1a6b951eb07d411ba74e67092be9bad1170e2ba6 --- /dev/null +++ b/hyperparameter/m4/forestdiffusion/forest-m4-20260505_060614/_fd_train.py @@ -0,0 +1,36 @@ + +import os, shutil, json +with open('/tmp/pgrep', 'w') as _f: + _f.write("#!/usr/bin/env python3\n") + _f.write("import subprocess, sys\n") + _f.write("ppid = sys.argv[-1]\n") + _f.write("out = subprocess.check_output(['ps', '-o', 'pid=', '--ppid', str(ppid)], text=True)\n") + _f.write("print(out, end='')\n") +os.chmod('/tmp/pgrep', 0o755) +os.environ['PATH'] = '/tmp:' + os.environ.get('PATH', '') +shutil.copy(r'/work/output-Benchmark-trainonly-v1/m4/forestdiffusion/forest-m4-20260505_060614/_fd_X_host.npy', '/tmp/fd_X.npy') +with open(r'/work/output-Benchmark-trainonly-v1/m4/forestdiffusion/forest-m4-20260505_060614/_fd_meta_host.json') as f: + open('/tmp/fd_meta.json','w').write(f.read()) + +import numpy as np, joblib, json, os +from ForestDiffusion import ForestDiffusionModel +X = np.load("/tmp/fd_X.npy") +with open("/tmp/fd_meta.json") as f: + meta = json.load(f) +cat_indexes = meta["cat_indexes"] +print( + "[ForestDiffusion] train config: " + f"rows={X.shape[0]} cols={X.shape[1]} n_t=10 " + f"n_estimators=20 duplicate_K=5 n_jobs=1 " + f"max_depth=4 xgb_verbosity=1", + flush=True, +) +m = ForestDiffusionModel( + X, n_t=10, n_estimators=20, duplicate_K=5, n_jobs=1, + model="xgboost", max_depth=4, tree_method="hist", cat_indexes=cat_indexes, + verbosity=1, +) +joblib.dump((m, meta), "/tmp/fd_model.joblib") +print("ForestDiffusion train OK") + +shutil.copy('/tmp/fd_model.joblib', r'/work/output-Benchmark-trainonly-v1/m4/forestdiffusion/forest-m4-20260505_060614/forestdiffusion_model.joblib') diff --git a/hyperparameter/m4/forestdiffusion/forest-m4-20260505_060614/forest-m4-2217-20260505_061917.csv b/hyperparameter/m4/forestdiffusion/forest-m4-20260505_060614/forest-m4-2217-20260505_061917.csv new file mode 100644 index 0000000000000000000000000000000000000000..db26d53de9bf182692ad5091744898aabcd9b725 --- /dev/null +++ b/hyperparameter/m4/forestdiffusion/forest-m4-20260505_060614/forest-m4-2217-20260505_061917.csv @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:e6714b0b78e847f690be0fb4b2a9b2b5e4bce59ed0abbd7db16aeebea22c70e1 +size 187196 diff --git a/hyperparameter/m4/forestdiffusion/forest-m4-20260505_060614/forestdiffusion_model.joblib b/hyperparameter/m4/forestdiffusion/forest-m4-20260505_060614/forestdiffusion_model.joblib new file mode 100644 index 0000000000000000000000000000000000000000..6df11815d9a78efa31cefd879afe97a8fddd435b --- /dev/null +++ b/hyperparameter/m4/forestdiffusion/forest-m4-20260505_060614/forestdiffusion_model.joblib @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:3d447a75b202d17e4efd4b09605fc4f1575c142283d0228a87633c19dfa9cbaa +size 3244997 diff --git a/hyperparameter/m4/forestdiffusion/forest-m4-20260505_060614/gen_20260505_061917.log b/hyperparameter/m4/forestdiffusion/forest-m4-20260505_060614/gen_20260505_061917.log new file mode 100644 index 0000000000000000000000000000000000000000..1576bc3ec54e015b7159fc946fd9e0a815cc9825 --- /dev/null +++ b/hyperparameter/m4/forestdiffusion/forest-m4-20260505_060614/gen_20260505_061917.log @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:483c59b52c74aeae5a432eccc298fc8fc5769576a38edd132f21e7e0778e3de0 +size 294 diff --git a/hyperparameter/m4/forestdiffusion/forest-m4-20260505_060614/input_snapshot.json b/hyperparameter/m4/forestdiffusion/forest-m4-20260505_060614/input_snapshot.json new file mode 100644 index 0000000000000000000000000000000000000000..5daa6d8c1d862349e305d0a5fcbd26d5361342b8 --- /dev/null +++ b/hyperparameter/m4/forestdiffusion/forest-m4-20260505_060614/input_snapshot.json @@ -0,0 +1,36 @@ +{ + "dataset_id": "m4", + "model": "forestdiffusion", + "inputs": { + "train_csv": { + "path": "/data/jialinzhang/SynthesizePipeline-server/DatasetNew/m4/m4-train.csv", + "exists": true, + "size": 92191, + "sha256": "396b9d409ca21bf4a4cd329bdf5b7796aa0ae6356fa8d89b8eb669b5880b81f1" + }, + "val_csv": { + "path": "/data/jialinzhang/SynthesizePipeline-server/DatasetNew/m4/m4-val.csv", + "exists": true, + "size": 11482, + "sha256": "ee3c247d02f56e1687d03c381e13125d6a3a2a411ac7f202ba8520a4be9f1784" + }, + "test_csv": { + "path": "/data/jialinzhang/SynthesizePipeline-server/DatasetNew/m4/m4-test.csv", + "exists": true, + "size": 11559, + "sha256": "cadb9941124001b8fa7cb1ebae43b70a9ca56294f4df4d3c2f22c164c41757d4" + }, + "profile_json": { + "path": "/data/jialinzhang/SynthesizePipeline-server/DatasetNew/artifacts/data_core/tabular/m4/m4-dataset_profile.json", + "exists": true, + "size": 3336, + "sha256": "83e2764810e4a0e8cdece3a28dbd9134b7c9df6f2e56953e46d024ad2c4e035f" + }, + "contract_json": { + "path": "/data/jialinzhang/SynthesizePipeline-server/DatasetNew/artifacts/data_core/tabular/m4/m4-dataset_contract_v1.json", + "exists": true, + "size": 3810, + "sha256": "c23641b258629a845b164099bd0132886f8f6d0100e990494e0f92540f8987d9" + } + } +} \ No newline at end of file diff --git a/hyperparameter/m4/forestdiffusion/forest-m4-20260505_060614/models_fd/model.joblib b/hyperparameter/m4/forestdiffusion/forest-m4-20260505_060614/models_fd/model.joblib new file mode 100644 index 0000000000000000000000000000000000000000..6df11815d9a78efa31cefd879afe97a8fddd435b --- /dev/null +++ b/hyperparameter/m4/forestdiffusion/forest-m4-20260505_060614/models_fd/model.joblib @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:3d447a75b202d17e4efd4b09605fc4f1575c142283d0228a87633c19dfa9cbaa +size 3244997 diff --git a/hyperparameter/m4/forestdiffusion/forest-m4-20260505_060614/public_gate/normalized_schema_snapshot.json b/hyperparameter/m4/forestdiffusion/forest-m4-20260505_060614/public_gate/normalized_schema_snapshot.json new file mode 100644 index 0000000000000000000000000000000000000000..31ed9818686b11907df75e872e4ffbe010330880 --- /dev/null +++ b/hyperparameter/m4/forestdiffusion/forest-m4-20260505_060614/public_gate/normalized_schema_snapshot.json @@ -0,0 +1,147 @@ +{ + "dataset_id": "m4", + "target_column": "charges", + "task_type": "regression", + "columns": [ + { + "name": "age", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 47, + "unique_ratio": 0.0212, + "example_values": [ + "46", + "38", + "19", + "27", + "26" + ] + } + }, + { + "name": "sex", + "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.000902, + "example_values": [ + "female", + "male" + ] + } + }, + { + "name": "bmi", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 538, + "unique_ratio": 0.24267, + "example_values": [ + "23.655", + "19.3", + "30.59", + "32.67", + "29.45" + ] + } + }, + { + "name": "children", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 6, + "unique_ratio": 0.002706, + "example_values": [ + "1", + "0", + "3", + "2", + "5" + ] + } + }, + { + "name": "smoker", + "role": "feature", + "semantic_type": "boolean", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 2, + "unique_ratio": 0.000902, + "example_values": [ + "yes", + "no" + ] + } + }, + { + "name": "region", + "role": "feature", + "semantic_type": "categorical", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 4, + "unique_ratio": 0.001804, + "example_values": [ + "northwest", + "southwest", + "southeast", + "northeast" + ] + } + }, + { + "name": "charges", + "role": "target", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 1281, + "unique_ratio": 0.577808, + "example_values": [ + "21677.28345", + "15820.699", + "1639.5631", + "2497.0383", + "2897.3235" + ] + } + } + ] +} \ No newline at end of file diff --git a/hyperparameter/m4/forestdiffusion/forest-m4-20260505_060614/public_gate/public_gate_report.json b/hyperparameter/m4/forestdiffusion/forest-m4-20260505_060614/public_gate/public_gate_report.json new file mode 100644 index 0000000000000000000000000000000000000000..e7a25408e2574124629ea9437356551e4d6f4790 --- /dev/null +++ b/hyperparameter/m4/forestdiffusion/forest-m4-20260505_060614/public_gate/public_gate_report.json @@ -0,0 +1,37 @@ +{ + "dataset_id": "m4", + "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": "charges", + "task_type": "regression", + "input_splits": { + "train": "/data/jialinzhang/SynthesizePipeline-server/DatasetNew/m4/m4-train.csv", + "val": "/data/jialinzhang/SynthesizePipeline-server/DatasetNew/m4/m4-val.csv", + "test": "/data/jialinzhang/SynthesizePipeline-server/DatasetNew/m4/m4-test.csv" + } +} \ No newline at end of file diff --git a/hyperparameter/m4/forestdiffusion/forest-m4-20260505_060614/public_gate/staged_input_manifest.json b/hyperparameter/m4/forestdiffusion/forest-m4-20260505_060614/public_gate/staged_input_manifest.json new file mode 100644 index 0000000000000000000000000000000000000000..9007b95eb02cc77bc006af6fdd1ecdd015553f56 --- /dev/null +++ b/hyperparameter/m4/forestdiffusion/forest-m4-20260505_060614/public_gate/staged_input_manifest.json @@ -0,0 +1,152 @@ +{ + "dataset_id": "m4", + "target_column": "charges", + "task_type": "regression", + "train_csv": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/m4/forestdiffusion/forest-m4-20260505_060614/staged/public/train.csv", + "val_csv": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/m4/forestdiffusion/forest-m4-20260505_060614/staged/public/val.csv", + "test_csv": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/m4/forestdiffusion/forest-m4-20260505_060614/staged/public/test.csv", + "features_json": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/m4/forestdiffusion/forest-m4-20260505_060614/staged/public/staged_features.json", + "public_gate_report": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/m4/forestdiffusion/forest-m4-20260505_060614/public_gate/public_gate_report.json", + "column_schema": [ + { + "name": "age", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 47, + "unique_ratio": 0.0212, + "example_values": [ + "46", + "38", + "19", + "27", + "26" + ] + } + }, + { + "name": "sex", + "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.000902, + "example_values": [ + "female", + "male" + ] + } + }, + { + "name": "bmi", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 538, + "unique_ratio": 0.24267, + "example_values": [ + "23.655", + "19.3", + "30.59", + "32.67", + "29.45" + ] + } + }, + { + "name": "children", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 6, + "unique_ratio": 0.002706, + "example_values": [ + "1", + "0", + "3", + "2", + "5" + ] + } + }, + { + "name": "smoker", + "role": "feature", + "semantic_type": "boolean", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 2, + "unique_ratio": 0.000902, + "example_values": [ + "yes", + "no" + ] + } + }, + { + "name": "region", + "role": "feature", + "semantic_type": "categorical", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 4, + "unique_ratio": 0.001804, + "example_values": [ + "northwest", + "southwest", + "southeast", + "northeast" + ] + } + }, + { + "name": "charges", + "role": "target", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 1281, + "unique_ratio": 0.577808, + "example_values": [ + "21677.28345", + "15820.699", + "1639.5631", + "2497.0383", + "2897.3235" + ] + } + } + ] +} \ No newline at end of file diff --git a/hyperparameter/m4/forestdiffusion/forest-m4-20260505_060614/run_config.json b/hyperparameter/m4/forestdiffusion/forest-m4-20260505_060614/run_config.json new file mode 100644 index 0000000000000000000000000000000000000000..7cc1190b01aa122d99255999c34a6c05f3c2373e --- /dev/null +++ b/hyperparameter/m4/forestdiffusion/forest-m4-20260505_060614/run_config.json @@ -0,0 +1,45 @@ +{ + "schema_version": 1, + "recorded_at": "2026-05-05T06:06:14", + "dataset_id": "m4", + "model": "forestdiffusion", + "work_dir": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/m4/forestdiffusion/forest-m4-20260505_060614", + "dataset_source_requested": "new", + "dataset_source_resolved": "new", + "cli_args": { + "model": "forestdiffusion", + "dataset": "m4", + "dataset_source": "new", + "train": true, + "generate": true, + "num_rows": 0, + "epochs": null, + "output_dir": null, + "model_dir": null, + "work_dir": null, + "resume": false, + "no_stats": false + }, + "resolved": { + "num_rows": 2217, + "model_path": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/m4/forestdiffusion/forest-m4-20260505_060614/models_fd/model.joblib", + "output_csv": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/m4/forestdiffusion/forest-m4-20260505_060614/forest-m4-2217-20260505_061917.csv" + }, + "input_artifacts": { + "public_gate_report": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/m4/forestdiffusion/forest-m4-20260505_060614/public_gate/public_gate_report.json", + "public_manifest": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/m4/forestdiffusion/forest-m4-20260505_060614/public_gate/staged_input_manifest.json", + "model_manifest": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/m4/forestdiffusion/forest-m4-20260505_060614/staged/forestdiffusion/model_input_manifest.json", + "train_csv": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/m4/forestdiffusion/forest-m4-20260505_060614/staged/public/train.csv", + "features_json": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/m4/forestdiffusion/forest-m4-20260505_060614/staged/public/staged_features.json", + "target_column": "charges", + "task_type": "regression" + }, + "env_overrides": { + "FORESTDIFFUSION_DUPLICATE_K": "5", + "FORESTDIFFUSION_MAX_DEPTH": "4", + "FORESTDIFFUSION_MAX_TRAIN_ROWS": "50000", + "FORESTDIFFUSION_N_ESTIMATORS": "20", + "FORESTDIFFUSION_N_JOBS": "1", + "FORESTDIFFUSION_N_T": "10" + } +} \ No newline at end of file diff --git a/hyperparameter/m4/forestdiffusion/forest-m4-20260505_060614/runtime_result.json b/hyperparameter/m4/forestdiffusion/forest-m4-20260505_060614/runtime_result.json new file mode 100644 index 0000000000000000000000000000000000000000..1978ddd0adafd9ad5a8532e55ebc3399c55b9514 --- /dev/null +++ b/hyperparameter/m4/forestdiffusion/forest-m4-20260505_060614/runtime_result.json @@ -0,0 +1,27 @@ +{ + "dataset_id": "m4", + "model": "forestdiffusion", + "run_id": "forest-m4-20260505_060614", + "public_gate_status": "pass", + "adapter_ready_status": "pass", + "train_status": "success", + "generate_status": "success", + "reason_code": null, + "reason_detail": null, + "artifacts": { + "synthetic_csv": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/m4/forestdiffusion/forest-m4-20260505_060614/forest-m4-2217-20260505_061917.csv", + "model_path": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/m4/forestdiffusion/forest-m4-20260505_060614/models_fd/model.joblib" + }, + "timings": { + "train": { + "started_at": "2026-05-05T06:06:14", + "ended_at": "2026-05-05T06:19:17", + "duration_sec": 783.623 + }, + "generate": { + "started_at": "2026-05-05T06:19:17", + "ended_at": "2026-05-05T06:19:21", + "duration_sec": 3.43 + } + } +} \ No newline at end of file diff --git a/hyperparameter/m4/forestdiffusion/forest-m4-20260505_060614/staged/forestdiffusion/adapter_report.json b/hyperparameter/m4/forestdiffusion/forest-m4-20260505_060614/staged/forestdiffusion/adapter_report.json new file mode 100644 index 0000000000000000000000000000000000000000..abd10285659599d90b2fae0791b9cabd08f792ef --- /dev/null +++ b/hyperparameter/m4/forestdiffusion/forest-m4-20260505_060614/staged/forestdiffusion/adapter_report.json @@ -0,0 +1,7 @@ +{ + "adapter_ready_status": "pass", + "adapter_fail_reason_code": null, + "adapter_fail_detail": null, + "adapter_transforms_applied": [], + "model_input_manifest": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/m4/forestdiffusion/forest-m4-20260505_060614/staged/forestdiffusion/model_input_manifest.json" +} \ No newline at end of file diff --git a/hyperparameter/m4/forestdiffusion/forest-m4-20260505_060614/staged/forestdiffusion/adapter_transforms_applied.json b/hyperparameter/m4/forestdiffusion/forest-m4-20260505_060614/staged/forestdiffusion/adapter_transforms_applied.json new file mode 100644 index 0000000000000000000000000000000000000000..0637a088a01e8ddab3bf3fa98dbe804cbde1a0dc --- /dev/null +++ b/hyperparameter/m4/forestdiffusion/forest-m4-20260505_060614/staged/forestdiffusion/adapter_transforms_applied.json @@ -0,0 +1 @@ +[] \ No newline at end of file diff --git a/hyperparameter/m4/forestdiffusion/forest-m4-20260505_060614/staged/forestdiffusion/model_input_manifest.json b/hyperparameter/m4/forestdiffusion/forest-m4-20260505_060614/staged/forestdiffusion/model_input_manifest.json new file mode 100644 index 0000000000000000000000000000000000000000..b7838e3a3b78a577cc68a7474895b3f8b71abb8d --- /dev/null +++ b/hyperparameter/m4/forestdiffusion/forest-m4-20260505_060614/staged/forestdiffusion/model_input_manifest.json @@ -0,0 +1,154 @@ +{ + "dataset_id": "m4", + "model": "forestdiffusion", + "target_column": "charges", + "task_type": "regression", + "column_schema": [ + { + "name": "age", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 47, + "unique_ratio": 0.0212, + "example_values": [ + "46", + "38", + "19", + "27", + "26" + ] + } + }, + { + "name": "sex", + "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.000902, + "example_values": [ + "female", + "male" + ] + } + }, + { + "name": "bmi", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 538, + "unique_ratio": 0.24267, + "example_values": [ + "23.655", + "19.3", + "30.59", + "32.67", + "29.45" + ] + } + }, + { + "name": "children", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 6, + "unique_ratio": 0.002706, + "example_values": [ + "1", + "0", + "3", + "2", + "5" + ] + } + }, + { + "name": "smoker", + "role": "feature", + "semantic_type": "boolean", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 2, + "unique_ratio": 0.000902, + "example_values": [ + "yes", + "no" + ] + } + }, + { + "name": "region", + "role": "feature", + "semantic_type": "categorical", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 4, + "unique_ratio": 0.001804, + "example_values": [ + "northwest", + "southwest", + "southeast", + "northeast" + ] + } + }, + { + "name": "charges", + "role": "target", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 1281, + "unique_ratio": 0.577808, + "example_values": [ + "21677.28345", + "15820.699", + "1639.5631", + "2497.0383", + "2897.3235" + ] + } + } + ], + "public_manifest": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/m4/forestdiffusion/forest-m4-20260505_060614/public_gate/staged_input_manifest.json", + "train_csv": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/m4/forestdiffusion/forest-m4-20260505_060614/staged/public/train.csv", + "val_csv": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/m4/forestdiffusion/forest-m4-20260505_060614/staged/public/val.csv", + "test_csv": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/m4/forestdiffusion/forest-m4-20260505_060614/staged/public/test.csv", + "features_json": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/m4/forestdiffusion/forest-m4-20260505_060614/staged/public/staged_features.json", + "public_gate_report": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/m4/forestdiffusion/forest-m4-20260505_060614/public_gate/public_gate_report.json" +} \ No newline at end of file diff --git a/hyperparameter/m4/forestdiffusion/forest-m4-20260505_060614/staged/public/staged_features.json b/hyperparameter/m4/forestdiffusion/forest-m4-20260505_060614/staged/public/staged_features.json new file mode 100644 index 0000000000000000000000000000000000000000..d6acd098c35111f423f3ffff2cfd1754bc5dfebc --- /dev/null +++ b/hyperparameter/m4/forestdiffusion/forest-m4-20260505_060614/staged/public/staged_features.json @@ -0,0 +1,37 @@ +[ + { + "feature_name": "age", + "data_type": "continuous", + "is_target": false + }, + { + "feature_name": "sex", + "data_type": "categorical", + "is_target": false + }, + { + "feature_name": "bmi", + "data_type": "continuous", + "is_target": false + }, + { + "feature_name": "children", + "data_type": "continuous", + "is_target": false + }, + { + "feature_name": "smoker", + "data_type": "binary", + "is_target": false + }, + { + "feature_name": "region", + "data_type": "categorical", + "is_target": false + }, + { + "feature_name": "charges", + "data_type": "continuous", + "is_target": true + } +] \ No newline at end of file diff --git a/hyperparameter/m4/forestdiffusion/forest-m4-20260505_060614/staged/public/test.csv b/hyperparameter/m4/forestdiffusion/forest-m4-20260505_060614/staged/public/test.csv new file mode 100644 index 0000000000000000000000000000000000000000..c88a2e7cfcd715bb421cb56eb078033da45c4dc8 --- /dev/null +++ b/hyperparameter/m4/forestdiffusion/forest-m4-20260505_060614/staged/public/test.csv @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:4c541b677fb2d45c5bc79338eeee9fd8c91484b195a0c2c546c2fbabf113b7ea +size 11298 diff --git a/hyperparameter/m4/forestdiffusion/forest-m4-20260505_060614/staged/public/train.csv b/hyperparameter/m4/forestdiffusion/forest-m4-20260505_060614/staged/public/train.csv new file mode 100644 index 0000000000000000000000000000000000000000..5a05019d786529e0617291766c4fbe016ca01bf5 --- /dev/null +++ b/hyperparameter/m4/forestdiffusion/forest-m4-20260505_060614/staged/public/train.csv @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:614ebfac5f41d6f661aff675fa18c0f933a8d9bcc77ea71b7b2360c2f0155837 +size 90069 diff --git a/hyperparameter/m4/forestdiffusion/forest-m4-20260505_060614/staged/public/val.csv b/hyperparameter/m4/forestdiffusion/forest-m4-20260505_060614/staged/public/val.csv new file mode 100644 index 0000000000000000000000000000000000000000..d78fe5ad1537c437ba9ac2629f2aa60a6c17e708 --- /dev/null +++ b/hyperparameter/m4/forestdiffusion/forest-m4-20260505_060614/staged/public/val.csv @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:e55f5edbe7942ff01630de91a9c70dfbc6445eba76c7b970350364546b67c2d7 +size 11218 diff --git a/hyperparameter/m4/forestdiffusion/forest-m4-20260505_060614/train_20260505_060614.log b/hyperparameter/m4/forestdiffusion/forest-m4-20260505_060614/train_20260505_060614.log new file mode 100644 index 0000000000000000000000000000000000000000..d0f88dc95a00828677e9fbe3224011e7cabc8535 --- /dev/null +++ b/hyperparameter/m4/forestdiffusion/forest-m4-20260505_060614/train_20260505_060614.log @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:35ca27acaf3437fee8af8888972ce1a5f3378423b08e2f68b68800abad6bb572 +size 433 diff --git a/hyperparameter/m4/realtabformer/rtf-m4-20260505_021645/gen_20260505_021728.log b/hyperparameter/m4/realtabformer/rtf-m4-20260505_021645/gen_20260505_021728.log new file mode 100644 index 0000000000000000000000000000000000000000..da2b0c2f1aee195fb55dfe9c725f5517aad3fb02 --- /dev/null +++ b/hyperparameter/m4/realtabformer/rtf-m4-20260505_021645/gen_20260505_021728.log @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:a312c3d043c3781b2c55a15562ad60c0f281607c00648b0c61795c0d978e2619 +size 1731 diff --git a/hyperparameter/m4/realtabformer/rtf-m4-20260505_021645/input_snapshot.json b/hyperparameter/m4/realtabformer/rtf-m4-20260505_021645/input_snapshot.json new file mode 100644 index 0000000000000000000000000000000000000000..9db22a39e5ccaaeedd23cf99efa32e16d4ed388a --- /dev/null +++ b/hyperparameter/m4/realtabformer/rtf-m4-20260505_021645/input_snapshot.json @@ -0,0 +1,36 @@ +{ + "dataset_id": "m4", + "model": "realtabformer", + "inputs": { + "train_csv": { + "path": "/data/jialinzhang/SynthesizePipeline-server/DatasetNew/m4/m4-train.csv", + "exists": true, + "size": 92191, + "sha256": "396b9d409ca21bf4a4cd329bdf5b7796aa0ae6356fa8d89b8eb669b5880b81f1" + }, + "val_csv": { + "path": "/data/jialinzhang/SynthesizePipeline-server/DatasetNew/m4/m4-val.csv", + "exists": true, + "size": 11482, + "sha256": "ee3c247d02f56e1687d03c381e13125d6a3a2a411ac7f202ba8520a4be9f1784" + }, + "test_csv": { + "path": "/data/jialinzhang/SynthesizePipeline-server/DatasetNew/m4/m4-test.csv", + "exists": true, + "size": 11559, + "sha256": "cadb9941124001b8fa7cb1ebae43b70a9ca56294f4df4d3c2f22c164c41757d4" + }, + "profile_json": { + "path": "/data/jialinzhang/SynthesizePipeline-server/DatasetNew/artifacts/data_core/tabular/m4/m4-dataset_profile.json", + "exists": true, + "size": 3336, + "sha256": "83e2764810e4a0e8cdece3a28dbd9134b7c9df6f2e56953e46d024ad2c4e035f" + }, + "contract_json": { + "path": "/data/jialinzhang/SynthesizePipeline-server/DatasetNew/artifacts/data_core/tabular/m4/m4-dataset_contract_v1.json", + "exists": true, + "size": 3810, + "sha256": "c23641b258629a845b164099bd0132886f8f6d0100e990494e0f92540f8987d9" + } + } +} \ No newline at end of file diff --git a/hyperparameter/m4/realtabformer/rtf-m4-20260505_021645/models_5epochs/id000017779186457523093504/rtf_config.json b/hyperparameter/m4/realtabformer/rtf-m4-20260505_021645/models_5epochs/id000017779186457523093504/rtf_config.json new file mode 100644 index 0000000000000000000000000000000000000000..a37daa18192c16b22501a4549b7762f9a548b732 --- /dev/null +++ b/hyperparameter/m4/realtabformer/rtf-m4-20260505_021645/models_5epochs/id000017779186457523093504/rtf_config.json @@ -0,0 +1 @@ +{"model_type": "tabular", "tabular_config": {"transformers_version": "5.5.3", "architectures": ["GPT2LMHeadModel"], "output_hidden_states": false, "return_dict": true, "dtype": "float32", "chunk_size_feed_forward": 0, "is_encoder_decoder": false, "id2label": {"0": "LABEL_0", "1": "LABEL_1"}, "label2id": {"LABEL_0": 0, "LABEL_1": 1}, "problem_type": null, "vocab_size": 167, "n_positions": 1024, "n_embd": 768, "n_layer": 6, "n_head": 12, "n_inner": null, "activation_function": "gelu_new", "resid_pdrop": 0.1, "embd_pdrop": 0.1, "attn_pdrop": 0.1, "layer_norm_epsilon": 1e-05, "initializer_range": 0.02, "summary_type": "cls_index", "summary_use_proj": true, "summary_activation": null, "summary_proj_to_labels": true, "summary_first_dropout": 0.1, "scale_attn_weights": true, "use_cache": false, "bos_token_id": 5, "eos_token_id": 6, "pad_token_id": null, "scale_attn_by_inverse_layer_idx": false, "reorder_and_upcast_attn": false, "add_cross_attention": false, "tie_word_embeddings": true, "_name_or_path": "", "model_type": "gpt2", "output_attentions": false}, "checkpoints_dir": "rtf_checkpoints", "samples_save_dir": "rtf_samples", "full_save_dir": "rtf_full_save", "epochs": 5, "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": 5, "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": ["age", "sex", "bmi", "children", "smoker", "region", "charges"], "column_dtypes": {"age": "int64", "sex": "object", "bmi": "float64", "children": "int64", "smoker": "object", "region": "object", "charges": "float64"}, "column_has_missing": {"age": false, "sex": false, "bmi": false, "children": false, "smoker": false, "region": false, "charges": false}, "drop_na_cols": ["age", "sex", "bmi", "children", "smoker", "region", "charges"], "processed_columns": ["0___NUMERIC___age_00", "0___NUMERIC___age_01", "1___CATEGORICAL___sex", "2___NUMERIC___bmi_00", "2___NUMERIC___bmi_01", "2___NUMERIC___bmi_02", "2___NUMERIC___bmi_03", "2___NUMERIC___bmi_04", "2___NUMERIC___bmi_05", "3___NUMERIC___children_00", "4___CATEGORICAL___smoker", "5___CATEGORICAL___region", "6___NUMERIC___charges_00", "6___NUMERIC___charges_01", "6___NUMERIC___charges_02", "6___NUMERIC___charges_03", "6___NUMERIC___charges_04", "6___NUMERIC___charges_05", "6___NUMERIC___charges_06", "6___NUMERIC___charges_07", "6___NUMERIC___charges_08", "6___NUMERIC___charges_09"], "numeric_columns": ["age", "bmi", "children", "charges"], "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___age_00___1", "12": "0___NUMERIC___age_00___2", "13": "0___NUMERIC___age_00___3", "14": "0___NUMERIC___age_00___4", "15": "0___NUMERIC___age_00___5", "16": "0___NUMERIC___age_00___6", "17": "0___NUMERIC___age_01___0", "18": "0___NUMERIC___age_01___1", "19": "0___NUMERIC___age_01___2", "20": "0___NUMERIC___age_01___3", "21": "0___NUMERIC___age_01___4", "22": "0___NUMERIC___age_01___5", "23": "0___NUMERIC___age_01___6", "24": "0___NUMERIC___age_01___7", "25": "0___NUMERIC___age_01___8", "26": "0___NUMERIC___age_01___9", "27": "1___CATEGORICAL___sex___female", "28": "1___CATEGORICAL___sex___male", "29": "2___NUMERIC___bmi_00___1", "30": "2___NUMERIC___bmi_00___2", "31": "2___NUMERIC___bmi_00___3", "32": "2___NUMERIC___bmi_00___4", "33": "2___NUMERIC___bmi_00___5", "34": "2___NUMERIC___bmi_01___0", "35": "2___NUMERIC___bmi_01___1", "36": "2___NUMERIC___bmi_01___2", "37": "2___NUMERIC___bmi_01___3", "38": "2___NUMERIC___bmi_01___4", "39": "2___NUMERIC___bmi_01___5", "40": "2___NUMERIC___bmi_01___6", "41": "2___NUMERIC___bmi_01___7", "42": "2___NUMERIC___bmi_01___8", "43": "2___NUMERIC___bmi_01___9", "44": "2___NUMERIC___bmi_02___.", "45": "2___NUMERIC___bmi_03___0", "46": "2___NUMERIC___bmi_03___1", "47": "2___NUMERIC___bmi_03___2", "48": "2___NUMERIC___bmi_03___3", "49": "2___NUMERIC___bmi_03___4", "50": "2___NUMERIC___bmi_03___5", "51": "2___NUMERIC___bmi_03___6", "52": "2___NUMERIC___bmi_03___7", "53": "2___NUMERIC___bmi_03___8", "54": "2___NUMERIC___bmi_03___9", "55": "2___NUMERIC___bmi_04___0", "56": "2___NUMERIC___bmi_04___1", "57": "2___NUMERIC___bmi_04___2", "58": "2___NUMERIC___bmi_04___3", "59": "2___NUMERIC___bmi_04___4", "60": "2___NUMERIC___bmi_04___5", "61": "2___NUMERIC___bmi_04___6", "62": "2___NUMERIC___bmi_04___7", "63": "2___NUMERIC___bmi_04___8", "64": "2___NUMERIC___bmi_04___9", "65": "2___NUMERIC___bmi_05___0", "66": "2___NUMERIC___bmi_05___5", "67": "3___NUMERIC___children_00___0", "68": "3___NUMERIC___children_00___1", "69": "3___NUMERIC___children_00___2", "70": "3___NUMERIC___children_00___3", "71": "3___NUMERIC___children_00___4", "72": "3___NUMERIC___children_00___5", "73": "4___CATEGORICAL___smoker___no", "74": "4___CATEGORICAL___smoker___yes", "75": "5___CATEGORICAL___region___northeast", "76": "5___CATEGORICAL___region___northwest", "77": "5___CATEGORICAL___region___southeast", "78": "5___CATEGORICAL___region___southwest", "79": "6___NUMERIC___charges_00___0", "80": "6___NUMERIC___charges_00___1", "81": "6___NUMERIC___charges_00___2", "82": "6___NUMERIC___charges_00___3", "83": "6___NUMERIC___charges_00___4", "84": "6___NUMERIC___charges_00___5", "85": "6___NUMERIC___charges_00___6", "86": "6___NUMERIC___charges_01___0", "87": "6___NUMERIC___charges_01___1", "88": "6___NUMERIC___charges_01___2", "89": "6___NUMERIC___charges_01___3", "90": "6___NUMERIC___charges_01___4", "91": "6___NUMERIC___charges_01___5", "92": "6___NUMERIC___charges_01___6", "93": "6___NUMERIC___charges_01___7", "94": "6___NUMERIC___charges_01___8", "95": "6___NUMERIC___charges_01___9", "96": "6___NUMERIC___charges_02___0", "97": "6___NUMERIC___charges_02___1", "98": "6___NUMERIC___charges_02___2", "99": "6___NUMERIC___charges_02___3", "100": "6___NUMERIC___charges_02___4", "101": "6___NUMERIC___charges_02___5", "102": "6___NUMERIC___charges_02___6", "103": "6___NUMERIC___charges_02___7", "104": "6___NUMERIC___charges_02___8", "105": "6___NUMERIC___charges_02___9", "106": "6___NUMERIC___charges_03___0", "107": "6___NUMERIC___charges_03___1", "108": "6___NUMERIC___charges_03___2", "109": "6___NUMERIC___charges_03___3", "110": "6___NUMERIC___charges_03___4", "111": "6___NUMERIC___charges_03___5", "112": "6___NUMERIC___charges_03___6", "113": "6___NUMERIC___charges_03___7", "114": "6___NUMERIC___charges_03___8", "115": "6___NUMERIC___charges_03___9", "116": "6___NUMERIC___charges_04___0", "117": "6___NUMERIC___charges_04___1", "118": "6___NUMERIC___charges_04___2", "119": "6___NUMERIC___charges_04___3", "120": "6___NUMERIC___charges_04___4", "121": "6___NUMERIC___charges_04___5", "122": "6___NUMERIC___charges_04___6", "123": "6___NUMERIC___charges_04___7", "124": "6___NUMERIC___charges_04___8", "125": "6___NUMERIC___charges_04___9", "126": "6___NUMERIC___charges_05___.", "127": "6___NUMERIC___charges_06___0", "128": "6___NUMERIC___charges_06___1", "129": "6___NUMERIC___charges_06___2", "130": "6___NUMERIC___charges_06___3", "131": "6___NUMERIC___charges_06___4", "132": "6___NUMERIC___charges_06___5", "133": "6___NUMERIC___charges_06___6", "134": "6___NUMERIC___charges_06___7", "135": "6___NUMERIC___charges_06___8", "136": "6___NUMERIC___charges_06___9", "137": "6___NUMERIC___charges_07___0", "138": "6___NUMERIC___charges_07___1", "139": "6___NUMERIC___charges_07___2", "140": "6___NUMERIC___charges_07___3", "141": "6___NUMERIC___charges_07___4", "142": "6___NUMERIC___charges_07___5", "143": "6___NUMERIC___charges_07___6", "144": "6___NUMERIC___charges_07___7", "145": "6___NUMERIC___charges_07___8", "146": "6___NUMERIC___charges_07___9", "147": "6___NUMERIC___charges_08___0", "148": "6___NUMERIC___charges_08___1", "149": "6___NUMERIC___charges_08___2", "150": "6___NUMERIC___charges_08___3", "151": "6___NUMERIC___charges_08___4", "152": "6___NUMERIC___charges_08___5", "153": "6___NUMERIC___charges_08___6", "154": "6___NUMERIC___charges_08___7", "155": "6___NUMERIC___charges_08___8", "156": "6___NUMERIC___charges_08___9", "157": "6___NUMERIC___charges_09___0", "158": "6___NUMERIC___charges_09___1", "159": "6___NUMERIC___charges_09___2", "160": "6___NUMERIC___charges_09___3", "161": "6___NUMERIC___charges_09___4", "162": "6___NUMERIC___charges_09___5", "163": "6___NUMERIC___charges_09___6", "164": "6___NUMERIC___charges_09___7", "165": "6___NUMERIC___charges_09___8", "166": "6___NUMERIC___charges_09___9"}, "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___age_00___1": 11, "0___NUMERIC___age_00___2": 12, "0___NUMERIC___age_00___3": 13, "0___NUMERIC___age_00___4": 14, "0___NUMERIC___age_00___5": 15, "0___NUMERIC___age_00___6": 16, "0___NUMERIC___age_01___0": 17, "0___NUMERIC___age_01___1": 18, "0___NUMERIC___age_01___2": 19, "0___NUMERIC___age_01___3": 20, "0___NUMERIC___age_01___4": 21, "0___NUMERIC___age_01___5": 22, "0___NUMERIC___age_01___6": 23, "0___NUMERIC___age_01___7": 24, "0___NUMERIC___age_01___8": 25, "0___NUMERIC___age_01___9": 26, "1___CATEGORICAL___sex___female": 27, "1___CATEGORICAL___sex___male": 28, "2___NUMERIC___bmi_00___1": 29, "2___NUMERIC___bmi_00___2": 30, "2___NUMERIC___bmi_00___3": 31, "2___NUMERIC___bmi_00___4": 32, "2___NUMERIC___bmi_00___5": 33, "2___NUMERIC___bmi_01___0": 34, "2___NUMERIC___bmi_01___1": 35, "2___NUMERIC___bmi_01___2": 36, "2___NUMERIC___bmi_01___3": 37, "2___NUMERIC___bmi_01___4": 38, "2___NUMERIC___bmi_01___5": 39, "2___NUMERIC___bmi_01___6": 40, "2___NUMERIC___bmi_01___7": 41, "2___NUMERIC___bmi_01___8": 42, "2___NUMERIC___bmi_01___9": 43, "2___NUMERIC___bmi_02___.": 44, "2___NUMERIC___bmi_03___0": 45, "2___NUMERIC___bmi_03___1": 46, "2___NUMERIC___bmi_03___2": 47, "2___NUMERIC___bmi_03___3": 48, "2___NUMERIC___bmi_03___4": 49, "2___NUMERIC___bmi_03___5": 50, "2___NUMERIC___bmi_03___6": 51, "2___NUMERIC___bmi_03___7": 52, "2___NUMERIC___bmi_03___8": 53, "2___NUMERIC___bmi_03___9": 54, "2___NUMERIC___bmi_04___0": 55, "2___NUMERIC___bmi_04___1": 56, "2___NUMERIC___bmi_04___2": 57, "2___NUMERIC___bmi_04___3": 58, "2___NUMERIC___bmi_04___4": 59, "2___NUMERIC___bmi_04___5": 60, "2___NUMERIC___bmi_04___6": 61, "2___NUMERIC___bmi_04___7": 62, "2___NUMERIC___bmi_04___8": 63, "2___NUMERIC___bmi_04___9": 64, "2___NUMERIC___bmi_05___0": 65, "2___NUMERIC___bmi_05___5": 66, "3___NUMERIC___children_00___0": 67, "3___NUMERIC___children_00___1": 68, "3___NUMERIC___children_00___2": 69, "3___NUMERIC___children_00___3": 70, "3___NUMERIC___children_00___4": 71, "3___NUMERIC___children_00___5": 72, "4___CATEGORICAL___smoker___no": 73, "4___CATEGORICAL___smoker___yes": 74, "5___CATEGORICAL___region___northeast": 75, "5___CATEGORICAL___region___northwest": 76, "5___CATEGORICAL___region___southeast": 77, "5___CATEGORICAL___region___southwest": 78, "6___NUMERIC___charges_00___0": 79, "6___NUMERIC___charges_00___1": 80, "6___NUMERIC___charges_00___2": 81, "6___NUMERIC___charges_00___3": 82, "6___NUMERIC___charges_00___4": 83, "6___NUMERIC___charges_00___5": 84, "6___NUMERIC___charges_00___6": 85, "6___NUMERIC___charges_01___0": 86, "6___NUMERIC___charges_01___1": 87, "6___NUMERIC___charges_01___2": 88, "6___NUMERIC___charges_01___3": 89, "6___NUMERIC___charges_01___4": 90, "6___NUMERIC___charges_01___5": 91, "6___NUMERIC___charges_01___6": 92, "6___NUMERIC___charges_01___7": 93, "6___NUMERIC___charges_01___8": 94, "6___NUMERIC___charges_01___9": 95, "6___NUMERIC___charges_02___0": 96, "6___NUMERIC___charges_02___1": 97, "6___NUMERIC___charges_02___2": 98, "6___NUMERIC___charges_02___3": 99, "6___NUMERIC___charges_02___4": 100, "6___NUMERIC___charges_02___5": 101, "6___NUMERIC___charges_02___6": 102, "6___NUMERIC___charges_02___7": 103, "6___NUMERIC___charges_02___8": 104, "6___NUMERIC___charges_02___9": 105, "6___NUMERIC___charges_03___0": 106, "6___NUMERIC___charges_03___1": 107, "6___NUMERIC___charges_03___2": 108, "6___NUMERIC___charges_03___3": 109, "6___NUMERIC___charges_03___4": 110, "6___NUMERIC___charges_03___5": 111, "6___NUMERIC___charges_03___6": 112, "6___NUMERIC___charges_03___7": 113, "6___NUMERIC___charges_03___8": 114, "6___NUMERIC___charges_03___9": 115, "6___NUMERIC___charges_04___0": 116, "6___NUMERIC___charges_04___1": 117, "6___NUMERIC___charges_04___2": 118, "6___NUMERIC___charges_04___3": 119, "6___NUMERIC___charges_04___4": 120, "6___NUMERIC___charges_04___5": 121, "6___NUMERIC___charges_04___6": 122, "6___NUMERIC___charges_04___7": 123, "6___NUMERIC___charges_04___8": 124, "6___NUMERIC___charges_04___9": 125, "6___NUMERIC___charges_05___.": 126, "6___NUMERIC___charges_06___0": 127, "6___NUMERIC___charges_06___1": 128, "6___NUMERIC___charges_06___2": 129, "6___NUMERIC___charges_06___3": 130, "6___NUMERIC___charges_06___4": 131, "6___NUMERIC___charges_06___5": 132, "6___NUMERIC___charges_06___6": 133, "6___NUMERIC___charges_06___7": 134, "6___NUMERIC___charges_06___8": 135, "6___NUMERIC___charges_06___9": 136, "6___NUMERIC___charges_07___0": 137, "6___NUMERIC___charges_07___1": 138, "6___NUMERIC___charges_07___2": 139, "6___NUMERIC___charges_07___3": 140, "6___NUMERIC___charges_07___4": 141, "6___NUMERIC___charges_07___5": 142, "6___NUMERIC___charges_07___6": 143, "6___NUMERIC___charges_07___7": 144, "6___NUMERIC___charges_07___8": 145, "6___NUMERIC___charges_07___9": 146, "6___NUMERIC___charges_08___0": 147, "6___NUMERIC___charges_08___1": 148, "6___NUMERIC___charges_08___2": 149, "6___NUMERIC___charges_08___3": 150, "6___NUMERIC___charges_08___4": 151, "6___NUMERIC___charges_08___5": 152, "6___NUMERIC___charges_08___6": 153, "6___NUMERIC___charges_08___7": 154, "6___NUMERIC___charges_08___8": 155, "6___NUMERIC___charges_08___9": 156, "6___NUMERIC___charges_09___0": 157, "6___NUMERIC___charges_09___1": 158, "6___NUMERIC___charges_09___2": 159, "6___NUMERIC___charges_09___3": 160, "6___NUMERIC___charges_09___4": 161, "6___NUMERIC___charges_09___5": 162, "6___NUMERIC___charges_09___6": 163, "6___NUMERIC___charges_09___7": 164, "6___NUMERIC___charges_09___8": 165, "6___NUMERIC___charges_09___9": 166}, "column_token_ids": {"0___NUMERIC___age_00": [11, 12, 13, 14, 15, 16], "0___NUMERIC___age_01": [17, 18, 19, 20, 21, 22, 23, 24, 25, 26], "1___CATEGORICAL___sex": [27, 28], "2___NUMERIC___bmi_00": [29, 30, 31, 32, 33], "2___NUMERIC___bmi_01": [34, 35, 36, 37, 38, 39, 40, 41, 42, 43], "2___NUMERIC___bmi_02": [44], "2___NUMERIC___bmi_03": [45, 46, 47, 48, 49, 50, 51, 52, 53, 54], "2___NUMERIC___bmi_04": [55, 56, 57, 58, 59, 60, 61, 62, 63, 64], "2___NUMERIC___bmi_05": [65, 66], "3___NUMERIC___children_00": [67, 68, 69, 70, 71, 72], "4___CATEGORICAL___smoker": [73, 74], "5___CATEGORICAL___region": [75, 76, 77, 78], "6___NUMERIC___charges_00": [79, 80, 81, 82, 83, 84, 85], "6___NUMERIC___charges_01": [86, 87, 88, 89, 90, 91, 92, 93, 94, 95], "6___NUMERIC___charges_02": [96, 97, 98, 99, 100, 101, 102, 103, 104, 105], "6___NUMERIC___charges_03": [106, 107, 108, 109, 110, 111, 112, 113, 114, 115], "6___NUMERIC___charges_04": [116, 117, 118, 119, 120, 121, 122, 123, 124, 125], "6___NUMERIC___charges_05": [126], "6___NUMERIC___charges_06": [127, 128, 129, 130, 131, 132, 133, 134, 135, 136], "6___NUMERIC___charges_07": [137, 138, 139, 140, 141, 142, 143, 144, 145, 146], "6___NUMERIC___charges_08": [147, 148, 149, 150, 151, 152, 153, 154, 155, 156], "6___NUMERIC___charges_09": [157, 158, 159, 160, 161, 162, 163, 164, 165, 166]}}, "tabular_max_length": 24, "relational_max_length": null, "tabular_col_size": 2217, "relational_col_size": null, "col_transform_data": {"age": {"max_len": 10, "numeric_precision": 4, "mx_sig": -1, "zfill": 2, "numeric_nparts": 1}, "bmi": {"max_len": 10, "numeric_precision": 4, "mx_sig": 2, "ljust": 6, "numeric_nparts": 1}, "children": {"max_len": 10, "numeric_precision": 4, "mx_sig": -1, "zfill": 1, "numeric_nparts": 1}, "charges": {"max_len": 10, "numeric_precision": 4, "mx_sig": 5, "ljust": 10, "numeric_nparts": 1}}, "in_col_transform_data": null, "col_idx_ids": {"0": [11, 12, 13, 14, 15, 16], "1": [17, 18, 19, 20, 21, 22, 23, 24, 25, 26], "2": [27, 28], "3": [29, 30, 31, 32, 33], "4": [34, 35, 36, 37, 38, 39, 40, 41, 42, 43], "5": [44], "6": [45, 46, 47, 48, 49, 50, 51, 52, 53, 54], "7": [55, 56, 57, 58, 59, 60, 61, 62, 63, 64], "8": [65, 66], "9": [67, 68, 69, 70, 71, 72], "10": [73, 74], "11": [75, 76, 77, 78], "12": [79, 80, 81, 82, 83, 84, 85], "13": [86, 87, 88, 89, 90, 91, 92, 93, 94, 95], "14": [96, 97, 98, 99, 100, 101, 102, 103, 104, 105], "15": [106, 107, 108, 109, 110, 111, 112, 113, 114, 115], "16": [116, 117, 118, 119, 120, 121, 122, 123, 124, 125], "17": [126], "18": [127, 128, 129, 130, 131, 132, 133, 134, 135, 136], "19": [137, 138, 139, 140, 141, 142, 143, 144, 145, 146], "20": [147, 148, 149, 150, 151, 152, 153, 154, 155, 156], "21": [157, 158, 159, 160, 161, 162, 163, 164, 165, 166]}, "random_state": 1029, "numeric_nparts": 1, "numeric_precision": 4, "numeric_max_len": 10, "experiment_id": "id000017779186457523093504", "trainer_state": null, "target_col": null, "realtabformer_version": "0.2.4"} \ No newline at end of file diff --git a/hyperparameter/m4/realtabformer/rtf-m4-20260505_021645/models_5epochs/id000017779186457523093504/rtf_model.pt b/hyperparameter/m4/realtabformer/rtf-m4-20260505_021645/models_5epochs/id000017779186457523093504/rtf_model.pt new file mode 100644 index 0000000000000000000000000000000000000000..769eac1c95a12a6a6eff3797e3a2bdd609b77c3e --- /dev/null +++ b/hyperparameter/m4/realtabformer/rtf-m4-20260505_021645/models_5epochs/id000017779186457523093504/rtf_model.pt @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:8ef6f9d2aefd66bf97f18e0434f33e0580cbe0e25c83f52b783ccd323eb89abb +size 173802979 diff --git a/hyperparameter/m4/realtabformer/rtf-m4-20260505_021645/public_gate/normalized_schema_snapshot.json b/hyperparameter/m4/realtabformer/rtf-m4-20260505_021645/public_gate/normalized_schema_snapshot.json new file mode 100644 index 0000000000000000000000000000000000000000..31ed9818686b11907df75e872e4ffbe010330880 --- /dev/null +++ b/hyperparameter/m4/realtabformer/rtf-m4-20260505_021645/public_gate/normalized_schema_snapshot.json @@ -0,0 +1,147 @@ +{ + "dataset_id": "m4", + "target_column": "charges", + "task_type": "regression", + "columns": [ + { + "name": "age", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 47, + "unique_ratio": 0.0212, + "example_values": [ + "46", + "38", + "19", + "27", + "26" + ] + } + }, + { + "name": "sex", + "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.000902, + "example_values": [ + "female", + "male" + ] + } + }, + { + "name": "bmi", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 538, + "unique_ratio": 0.24267, + "example_values": [ + "23.655", + "19.3", + "30.59", + "32.67", + "29.45" + ] + } + }, + { + "name": "children", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 6, + "unique_ratio": 0.002706, + "example_values": [ + "1", + "0", + "3", + "2", + "5" + ] + } + }, + { + "name": "smoker", + "role": "feature", + "semantic_type": "boolean", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 2, + "unique_ratio": 0.000902, + "example_values": [ + "yes", + "no" + ] + } + }, + { + "name": "region", + "role": "feature", + "semantic_type": "categorical", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 4, + "unique_ratio": 0.001804, + "example_values": [ + "northwest", + "southwest", + "southeast", + "northeast" + ] + } + }, + { + "name": "charges", + "role": "target", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 1281, + "unique_ratio": 0.577808, + "example_values": [ + "21677.28345", + "15820.699", + "1639.5631", + "2497.0383", + "2897.3235" + ] + } + } + ] +} \ No newline at end of file diff --git a/hyperparameter/m4/realtabformer/rtf-m4-20260505_021645/public_gate/public_gate_report.json b/hyperparameter/m4/realtabformer/rtf-m4-20260505_021645/public_gate/public_gate_report.json new file mode 100644 index 0000000000000000000000000000000000000000..e7a25408e2574124629ea9437356551e4d6f4790 --- /dev/null +++ b/hyperparameter/m4/realtabformer/rtf-m4-20260505_021645/public_gate/public_gate_report.json @@ -0,0 +1,37 @@ +{ + "dataset_id": "m4", + "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": "charges", + "task_type": "regression", + "input_splits": { + "train": "/data/jialinzhang/SynthesizePipeline-server/DatasetNew/m4/m4-train.csv", + "val": "/data/jialinzhang/SynthesizePipeline-server/DatasetNew/m4/m4-val.csv", + "test": "/data/jialinzhang/SynthesizePipeline-server/DatasetNew/m4/m4-test.csv" + } +} \ No newline at end of file diff --git a/hyperparameter/m4/realtabformer/rtf-m4-20260505_021645/public_gate/staged_input_manifest.json b/hyperparameter/m4/realtabformer/rtf-m4-20260505_021645/public_gate/staged_input_manifest.json new file mode 100644 index 0000000000000000000000000000000000000000..3667a29b2a573ab906914c8ee79a19d4a81c216a --- /dev/null +++ b/hyperparameter/m4/realtabformer/rtf-m4-20260505_021645/public_gate/staged_input_manifest.json @@ -0,0 +1,152 @@ +{ + "dataset_id": "m4", + "target_column": "charges", + "task_type": "regression", + "train_csv": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/m4/realtabformer/rtf-m4-20260505_021645/staged/public/train.csv", + "val_csv": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/m4/realtabformer/rtf-m4-20260505_021645/staged/public/val.csv", + "test_csv": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/m4/realtabformer/rtf-m4-20260505_021645/staged/public/test.csv", + "features_json": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/m4/realtabformer/rtf-m4-20260505_021645/staged/public/staged_features.json", + "public_gate_report": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/m4/realtabformer/rtf-m4-20260505_021645/public_gate/public_gate_report.json", + "column_schema": [ + { + "name": "age", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 47, + "unique_ratio": 0.0212, + "example_values": [ + "46", + "38", + "19", + "27", + "26" + ] + } + }, + { + "name": "sex", + "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.000902, + "example_values": [ + "female", + "male" + ] + } + }, + { + "name": "bmi", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 538, + "unique_ratio": 0.24267, + "example_values": [ + "23.655", + "19.3", + "30.59", + "32.67", + "29.45" + ] + } + }, + { + "name": "children", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 6, + "unique_ratio": 0.002706, + "example_values": [ + "1", + "0", + "3", + "2", + "5" + ] + } + }, + { + "name": "smoker", + "role": "feature", + "semantic_type": "boolean", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 2, + "unique_ratio": 0.000902, + "example_values": [ + "yes", + "no" + ] + } + }, + { + "name": "region", + "role": "feature", + "semantic_type": "categorical", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 4, + "unique_ratio": 0.001804, + "example_values": [ + "northwest", + "southwest", + "southeast", + "northeast" + ] + } + }, + { + "name": "charges", + "role": "target", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 1281, + "unique_ratio": 0.577808, + "example_values": [ + "21677.28345", + "15820.699", + "1639.5631", + "2497.0383", + "2897.3235" + ] + } + } + ] +} \ No newline at end of file diff --git a/hyperparameter/m4/realtabformer/rtf-m4-20260505_021645/realtabformer_features.json b/hyperparameter/m4/realtabformer/rtf-m4-20260505_021645/realtabformer_features.json new file mode 100644 index 0000000000000000000000000000000000000000..d6acd098c35111f423f3ffff2cfd1754bc5dfebc --- /dev/null +++ b/hyperparameter/m4/realtabformer/rtf-m4-20260505_021645/realtabformer_features.json @@ -0,0 +1,37 @@ +[ + { + "feature_name": "age", + "data_type": "continuous", + "is_target": false + }, + { + "feature_name": "sex", + "data_type": "categorical", + "is_target": false + }, + { + "feature_name": "bmi", + "data_type": "continuous", + "is_target": false + }, + { + "feature_name": "children", + "data_type": "continuous", + "is_target": false + }, + { + "feature_name": "smoker", + "data_type": "binary", + "is_target": false + }, + { + "feature_name": "region", + "data_type": "categorical", + "is_target": false + }, + { + "feature_name": "charges", + "data_type": "continuous", + "is_target": true + } +] \ No newline at end of file diff --git a/hyperparameter/m4/realtabformer/rtf-m4-20260505_021645/rtf-m4-2217-20260505_021728.csv b/hyperparameter/m4/realtabformer/rtf-m4-20260505_021645/rtf-m4-2217-20260505_021728.csv new file mode 100644 index 0000000000000000000000000000000000000000..532108ad73fccec8ecae02c59fe8368e65a46099 --- /dev/null +++ b/hyperparameter/m4/realtabformer/rtf-m4-20260505_021645/rtf-m4-2217-20260505_021728.csv @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:bec53a48d105291c4bca08be94cc12cc055c75b85f0295e7dda162889b741b4c +size 88432 diff --git a/hyperparameter/m4/realtabformer/rtf-m4-20260505_021645/rtf_checkpoints/checkpoint-140/config.json b/hyperparameter/m4/realtabformer/rtf-m4-20260505_021645/rtf_checkpoints/checkpoint-140/config.json new file mode 100644 index 0000000000000000000000000000000000000000..69b1961f0cbafdc846150e71a2d82b4ce3beb94c --- /dev/null +++ b/hyperparameter/m4/realtabformer/rtf-m4-20260505_021645/rtf_checkpoints/checkpoint-140/config.json @@ -0,0 +1,34 @@ +{ + "activation_function": "gelu_new", + "add_cross_attention": false, + "architectures": [ + "GPT2LMHeadModel" + ], + "attn_pdrop": 0.1, + "bos_token_id": 5, + "dtype": "float32", + "embd_pdrop": 0.1, + "eos_token_id": 6, + "initializer_range": 0.02, + "layer_norm_epsilon": 1e-05, + "model_type": "gpt2", + "n_embd": 768, + "n_head": 12, + "n_inner": null, + "n_layer": 6, + "n_positions": 1024, + "pad_token_id": null, + "reorder_and_upcast_attn": false, + "resid_pdrop": 0.1, + "scale_attn_by_inverse_layer_idx": false, + "scale_attn_weights": true, + "summary_activation": null, + "summary_first_dropout": 0.1, + "summary_proj_to_labels": true, + "summary_type": "cls_index", + "summary_use_proj": true, + "tie_word_embeddings": true, + "transformers_version": "5.5.3", + "use_cache": false, + "vocab_size": 167 +} diff --git a/hyperparameter/m4/realtabformer/rtf-m4-20260505_021645/rtf_checkpoints/checkpoint-140/generation_config.json b/hyperparameter/m4/realtabformer/rtf-m4-20260505_021645/rtf_checkpoints/checkpoint-140/generation_config.json new file mode 100644 index 0000000000000000000000000000000000000000..ffe89567780e75b5c22eade9be971483b9618f39 --- /dev/null +++ b/hyperparameter/m4/realtabformer/rtf-m4-20260505_021645/rtf_checkpoints/checkpoint-140/generation_config.json @@ -0,0 +1,9 @@ +{ + "_from_model_config": true, + "bos_token_id": 5, + "eos_token_id": 6, + "output_attentions": false, + "output_hidden_states": false, + "transformers_version": "5.5.3", + "use_cache": true +} diff --git a/hyperparameter/m4/realtabformer/rtf-m4-20260505_021645/rtf_checkpoints/checkpoint-140/model.safetensors b/hyperparameter/m4/realtabformer/rtf-m4-20260505_021645/rtf_checkpoints/checkpoint-140/model.safetensors new file mode 100644 index 0000000000000000000000000000000000000000..563061f05dad9823c9a9e7f88eaaecbff0fe89d1 --- /dev/null +++ b/hyperparameter/m4/realtabformer/rtf-m4-20260505_021645/rtf_checkpoints/checkpoint-140/model.safetensors @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:28c715d4ae5698619ccb4bc3743d9d9b41b7471ffb53c0c090042054c6d0d0be +size 173781448 diff --git a/hyperparameter/m4/realtabformer/rtf-m4-20260505_021645/rtf_checkpoints/checkpoint-140/optimizer.pt b/hyperparameter/m4/realtabformer/rtf-m4-20260505_021645/rtf_checkpoints/checkpoint-140/optimizer.pt new file mode 100644 index 0000000000000000000000000000000000000000..4cba82622e61bee7992c088b52b4257d941238a4 --- /dev/null +++ b/hyperparameter/m4/realtabformer/rtf-m4-20260505_021645/rtf_checkpoints/checkpoint-140/optimizer.pt @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:0bba675a3711e5560713aa8ebfc17e300b6c27bfb0be682fee5d32fab3c46898 +size 347611979 diff --git a/hyperparameter/m4/realtabformer/rtf-m4-20260505_021645/rtf_checkpoints/checkpoint-140/rng_state.pth b/hyperparameter/m4/realtabformer/rtf-m4-20260505_021645/rtf_checkpoints/checkpoint-140/rng_state.pth new file mode 100644 index 0000000000000000000000000000000000000000..fd659b24a52561c7d70d044c4a1b5beb6579d19c --- /dev/null +++ b/hyperparameter/m4/realtabformer/rtf-m4-20260505_021645/rtf_checkpoints/checkpoint-140/rng_state.pth @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:fae85568cee5bb66f9f1fb845353d9b8a62bf599edb68d100a9081ca2785544c +size 14645 diff --git a/hyperparameter/m4/realtabformer/rtf-m4-20260505_021645/rtf_checkpoints/checkpoint-140/scaler.pt b/hyperparameter/m4/realtabformer/rtf-m4-20260505_021645/rtf_checkpoints/checkpoint-140/scaler.pt new file mode 100644 index 0000000000000000000000000000000000000000..773ecf57c02e9caf7e40a912947516fc19eac8f9 --- /dev/null +++ b/hyperparameter/m4/realtabformer/rtf-m4-20260505_021645/rtf_checkpoints/checkpoint-140/scaler.pt @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:7175e91c3bb2211fef63ff60d6bcb56330dc06ab925f9c1d641d686b2da06845 +size 1383 diff --git a/hyperparameter/m4/realtabformer/rtf-m4-20260505_021645/rtf_checkpoints/checkpoint-140/scheduler.pt b/hyperparameter/m4/realtabformer/rtf-m4-20260505_021645/rtf_checkpoints/checkpoint-140/scheduler.pt new file mode 100644 index 0000000000000000000000000000000000000000..af5118dd63b917970664ba50e6c341b63150461d --- /dev/null +++ b/hyperparameter/m4/realtabformer/rtf-m4-20260505_021645/rtf_checkpoints/checkpoint-140/scheduler.pt @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:aa1e8ff512d0bbc6ac8059a616f09f9a3fc8a5cc4957d4ea3e1a5e154176d445 +size 1465 diff --git a/hyperparameter/m4/realtabformer/rtf-m4-20260505_021645/rtf_checkpoints/checkpoint-140/trainer_state.json b/hyperparameter/m4/realtabformer/rtf-m4-20260505_021645/rtf_checkpoints/checkpoint-140/trainer_state.json new file mode 100644 index 0000000000000000000000000000000000000000..2552f59c4638e6194bf8cc9b3af62e59d084a553 --- /dev/null +++ b/hyperparameter/m4/realtabformer/rtf-m4-20260505_021645/rtf_checkpoints/checkpoint-140/trainer_state.json @@ -0,0 +1,41 @@ +{ + "best_global_step": null, + "best_metric": null, + "best_model_checkpoint": null, + "epoch": 2.0, + "eval_steps": 100, + "global_step": 140, + "is_hyper_param_search": false, + "is_local_process_zero": true, + "is_world_process_zero": true, + "log_history": [ + { + "epoch": 1.4316546762589928, + "grad_norm": 0.3629039227962494, + "learning_rate": 3.585714285714286e-05, + "loss": 1.99164794921875, + "step": 100 + } + ], + "logging_steps": 100, + "max_steps": 350, + "num_input_tokens_seen": 0, + "num_train_epochs": 5, + "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": 27154448252928.0, + "train_batch_size": 8, + "trial_name": null, + "trial_params": null +} diff --git a/hyperparameter/m4/realtabformer/rtf-m4-20260505_021645/rtf_checkpoints/checkpoint-140/training_args.bin b/hyperparameter/m4/realtabformer/rtf-m4-20260505_021645/rtf_checkpoints/checkpoint-140/training_args.bin new file mode 100644 index 0000000000000000000000000000000000000000..ed11f716a866dff92bead1d973552e2411221de1 --- /dev/null +++ b/hyperparameter/m4/realtabformer/rtf-m4-20260505_021645/rtf_checkpoints/checkpoint-140/training_args.bin @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:91f70b571caed8698a4d8d0fd35c5241ef347a8d8ebe9d95ba3258b493311a0b +size 5201 diff --git a/hyperparameter/m4/realtabformer/rtf-m4-20260505_021645/rtf_checkpoints/checkpoint-200/config.json b/hyperparameter/m4/realtabformer/rtf-m4-20260505_021645/rtf_checkpoints/checkpoint-200/config.json new file mode 100644 index 0000000000000000000000000000000000000000..69b1961f0cbafdc846150e71a2d82b4ce3beb94c --- /dev/null +++ b/hyperparameter/m4/realtabformer/rtf-m4-20260505_021645/rtf_checkpoints/checkpoint-200/config.json @@ -0,0 +1,34 @@ +{ + "activation_function": "gelu_new", + "add_cross_attention": false, + "architectures": [ + "GPT2LMHeadModel" + ], + "attn_pdrop": 0.1, + "bos_token_id": 5, + "dtype": "float32", + "embd_pdrop": 0.1, + "eos_token_id": 6, + "initializer_range": 0.02, + "layer_norm_epsilon": 1e-05, + "model_type": "gpt2", + "n_embd": 768, + "n_head": 12, + "n_inner": null, + "n_layer": 6, + "n_positions": 1024, + "pad_token_id": null, + "reorder_and_upcast_attn": false, + "resid_pdrop": 0.1, + "scale_attn_by_inverse_layer_idx": false, + "scale_attn_weights": true, + "summary_activation": null, + "summary_first_dropout": 0.1, + "summary_proj_to_labels": true, + "summary_type": "cls_index", + "summary_use_proj": true, + "tie_word_embeddings": true, + "transformers_version": "5.5.3", + "use_cache": false, + "vocab_size": 167 +} diff --git a/hyperparameter/m4/realtabformer/rtf-m4-20260505_021645/rtf_checkpoints/checkpoint-200/generation_config.json b/hyperparameter/m4/realtabformer/rtf-m4-20260505_021645/rtf_checkpoints/checkpoint-200/generation_config.json new file mode 100644 index 0000000000000000000000000000000000000000..ffe89567780e75b5c22eade9be971483b9618f39 --- /dev/null +++ b/hyperparameter/m4/realtabformer/rtf-m4-20260505_021645/rtf_checkpoints/checkpoint-200/generation_config.json @@ -0,0 +1,9 @@ +{ + "_from_model_config": true, + "bos_token_id": 5, + "eos_token_id": 6, + "output_attentions": false, + "output_hidden_states": false, + "transformers_version": "5.5.3", + "use_cache": true +} diff --git a/hyperparameter/m4/realtabformer/rtf-m4-20260505_021645/rtf_checkpoints/checkpoint-200/model.safetensors b/hyperparameter/m4/realtabformer/rtf-m4-20260505_021645/rtf_checkpoints/checkpoint-200/model.safetensors new file mode 100644 index 0000000000000000000000000000000000000000..1e51025a7c539109f546b2c4364aaebd81a8894e --- /dev/null +++ b/hyperparameter/m4/realtabformer/rtf-m4-20260505_021645/rtf_checkpoints/checkpoint-200/model.safetensors @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:2b9f9e14dc275af8363f2f3cb3edfedd555e93ac199ee5ca47cb52b5829910b2 +size 173781448 diff --git a/hyperparameter/m4/realtabformer/rtf-m4-20260505_021645/rtf_checkpoints/checkpoint-200/optimizer.pt b/hyperparameter/m4/realtabformer/rtf-m4-20260505_021645/rtf_checkpoints/checkpoint-200/optimizer.pt new file mode 100644 index 0000000000000000000000000000000000000000..dc9de692f89732dd288df25debf294d6ce1542c1 --- /dev/null +++ b/hyperparameter/m4/realtabformer/rtf-m4-20260505_021645/rtf_checkpoints/checkpoint-200/optimizer.pt @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:d4866725b597bd816700abbc50170a28325b4e5f6303bf7d4f8a755918c022c4 +size 347611979 diff --git a/hyperparameter/m4/realtabformer/rtf-m4-20260505_021645/rtf_checkpoints/checkpoint-200/rng_state.pth b/hyperparameter/m4/realtabformer/rtf-m4-20260505_021645/rtf_checkpoints/checkpoint-200/rng_state.pth new file mode 100644 index 0000000000000000000000000000000000000000..0e3ac3c518fb33a0ac68155006e2ffc804bf7f3f --- /dev/null +++ b/hyperparameter/m4/realtabformer/rtf-m4-20260505_021645/rtf_checkpoints/checkpoint-200/rng_state.pth @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:0d339896317e44b9e33b0839b7f76b65213e72bcad88ec48c258b790f4e1c445 +size 14645 diff --git a/hyperparameter/m4/realtabformer/rtf-m4-20260505_021645/rtf_checkpoints/checkpoint-200/scaler.pt b/hyperparameter/m4/realtabformer/rtf-m4-20260505_021645/rtf_checkpoints/checkpoint-200/scaler.pt new file mode 100644 index 0000000000000000000000000000000000000000..dce3572b315210d751b935f42f897c650110e0c7 --- /dev/null +++ b/hyperparameter/m4/realtabformer/rtf-m4-20260505_021645/rtf_checkpoints/checkpoint-200/scaler.pt @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:124625e167eb28acbfc793cfcb3e8a08b32e7fea06501462bc9e420a5e1beb2a +size 1383 diff --git a/hyperparameter/m4/realtabformer/rtf-m4-20260505_021645/rtf_checkpoints/checkpoint-200/scheduler.pt b/hyperparameter/m4/realtabformer/rtf-m4-20260505_021645/rtf_checkpoints/checkpoint-200/scheduler.pt new file mode 100644 index 0000000000000000000000000000000000000000..77ad216c4f02ffb6a26274928541ff271bdcb0c0 --- /dev/null +++ b/hyperparameter/m4/realtabformer/rtf-m4-20260505_021645/rtf_checkpoints/checkpoint-200/scheduler.pt @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:e605497736b16800f33888f20fd640f472c7facddf2b160995201f2c6075d9df +size 1465 diff --git a/hyperparameter/m4/realtabformer/rtf-m4-20260505_021645/rtf_checkpoints/checkpoint-200/trainer_state.json b/hyperparameter/m4/realtabformer/rtf-m4-20260505_021645/rtf_checkpoints/checkpoint-200/trainer_state.json new file mode 100644 index 0000000000000000000000000000000000000000..4a96c1254f6be47ab1d32bf940fd6ab109e4a769 --- /dev/null +++ b/hyperparameter/m4/realtabformer/rtf-m4-20260505_021645/rtf_checkpoints/checkpoint-200/trainer_state.json @@ -0,0 +1,48 @@ +{ + "best_global_step": null, + "best_metric": null, + "best_model_checkpoint": null, + "epoch": 2.8633093525179856, + "eval_steps": 100, + "global_step": 200, + "is_hyper_param_search": false, + "is_local_process_zero": true, + "is_world_process_zero": true, + "log_history": [ + { + "epoch": 1.4316546762589928, + "grad_norm": 0.3629039227962494, + "learning_rate": 3.585714285714286e-05, + "loss": 1.99164794921875, + "step": 100 + }, + { + "epoch": 2.8633093525179856, + "grad_norm": 0.363282173871994, + "learning_rate": 2.1571428571428574e-05, + "loss": 1.4160968017578126, + "step": 200 + } + ], + "logging_steps": 100, + "max_steps": 350, + "num_input_tokens_seen": 0, + "num_train_epochs": 5, + "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": 38912802029568.0, + "train_batch_size": 8, + "trial_name": null, + "trial_params": null +} diff --git a/hyperparameter/m4/realtabformer/rtf-m4-20260505_021645/rtf_checkpoints/checkpoint-200/training_args.bin b/hyperparameter/m4/realtabformer/rtf-m4-20260505_021645/rtf_checkpoints/checkpoint-200/training_args.bin new file mode 100644 index 0000000000000000000000000000000000000000..ed11f716a866dff92bead1d973552e2411221de1 --- /dev/null +++ b/hyperparameter/m4/realtabformer/rtf-m4-20260505_021645/rtf_checkpoints/checkpoint-200/training_args.bin @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:91f70b571caed8698a4d8d0fd35c5241ef347a8d8ebe9d95ba3258b493311a0b +size 5201 diff --git a/hyperparameter/m4/realtabformer/rtf-m4-20260505_021645/rtf_checkpoints/checkpoint-210/config.json b/hyperparameter/m4/realtabformer/rtf-m4-20260505_021645/rtf_checkpoints/checkpoint-210/config.json new file mode 100644 index 0000000000000000000000000000000000000000..69b1961f0cbafdc846150e71a2d82b4ce3beb94c --- /dev/null +++ b/hyperparameter/m4/realtabformer/rtf-m4-20260505_021645/rtf_checkpoints/checkpoint-210/config.json @@ -0,0 +1,34 @@ +{ + "activation_function": "gelu_new", + "add_cross_attention": false, + "architectures": [ + "GPT2LMHeadModel" + ], + "attn_pdrop": 0.1, + "bos_token_id": 5, + "dtype": "float32", + "embd_pdrop": 0.1, + "eos_token_id": 6, + "initializer_range": 0.02, + "layer_norm_epsilon": 1e-05, + "model_type": "gpt2", + "n_embd": 768, + "n_head": 12, + "n_inner": null, + "n_layer": 6, + "n_positions": 1024, + "pad_token_id": null, + "reorder_and_upcast_attn": false, + "resid_pdrop": 0.1, + "scale_attn_by_inverse_layer_idx": false, + "scale_attn_weights": true, + "summary_activation": null, + "summary_first_dropout": 0.1, + "summary_proj_to_labels": true, + "summary_type": "cls_index", + "summary_use_proj": true, + "tie_word_embeddings": true, + "transformers_version": "5.5.3", + "use_cache": false, + "vocab_size": 167 +} diff --git a/hyperparameter/m4/realtabformer/rtf-m4-20260505_021645/rtf_checkpoints/checkpoint-210/generation_config.json b/hyperparameter/m4/realtabformer/rtf-m4-20260505_021645/rtf_checkpoints/checkpoint-210/generation_config.json new file mode 100644 index 0000000000000000000000000000000000000000..ffe89567780e75b5c22eade9be971483b9618f39 --- /dev/null +++ b/hyperparameter/m4/realtabformer/rtf-m4-20260505_021645/rtf_checkpoints/checkpoint-210/generation_config.json @@ -0,0 +1,9 @@ +{ + "_from_model_config": true, + "bos_token_id": 5, + "eos_token_id": 6, + "output_attentions": false, + "output_hidden_states": false, + "transformers_version": "5.5.3", + "use_cache": true +} diff --git a/hyperparameter/m4/realtabformer/rtf-m4-20260505_021645/rtf_checkpoints/checkpoint-210/model.safetensors b/hyperparameter/m4/realtabformer/rtf-m4-20260505_021645/rtf_checkpoints/checkpoint-210/model.safetensors new file mode 100644 index 0000000000000000000000000000000000000000..5764e58c564b7bc36afd6e31d1034876db52537d --- /dev/null +++ b/hyperparameter/m4/realtabformer/rtf-m4-20260505_021645/rtf_checkpoints/checkpoint-210/model.safetensors @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:296cad034366958b22d7b92e958da8856fa2583563c1b35cef59cf558d615911 +size 173781448 diff --git a/hyperparameter/m4/realtabformer/rtf-m4-20260505_021645/rtf_checkpoints/checkpoint-210/optimizer.pt b/hyperparameter/m4/realtabformer/rtf-m4-20260505_021645/rtf_checkpoints/checkpoint-210/optimizer.pt new file mode 100644 index 0000000000000000000000000000000000000000..2a00f1673ab98dc02e73a05986bf441d933af904 --- /dev/null +++ b/hyperparameter/m4/realtabformer/rtf-m4-20260505_021645/rtf_checkpoints/checkpoint-210/optimizer.pt @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:49a656283ddf7a04488e6421cef342e9881677e08bcaa1c528bcc8c013ea2a50 +size 347611979 diff --git a/hyperparameter/m4/realtabformer/rtf-m4-20260505_021645/rtf_checkpoints/checkpoint-210/rng_state.pth b/hyperparameter/m4/realtabformer/rtf-m4-20260505_021645/rtf_checkpoints/checkpoint-210/rng_state.pth new file mode 100644 index 0000000000000000000000000000000000000000..eb29c157cf7ab32d249806cf3b6d88acebe8903d --- /dev/null +++ b/hyperparameter/m4/realtabformer/rtf-m4-20260505_021645/rtf_checkpoints/checkpoint-210/rng_state.pth @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:99b9b2128dd7f462653c60dcc6eecd92c537ffa646df5de4b46de9477a19136e +size 14645 diff --git a/hyperparameter/m4/realtabformer/rtf-m4-20260505_021645/rtf_checkpoints/checkpoint-210/scaler.pt b/hyperparameter/m4/realtabformer/rtf-m4-20260505_021645/rtf_checkpoints/checkpoint-210/scaler.pt new file mode 100644 index 0000000000000000000000000000000000000000..e30f23e520a44e8e97ed53c979e397fa58ca1f01 --- /dev/null +++ b/hyperparameter/m4/realtabformer/rtf-m4-20260505_021645/rtf_checkpoints/checkpoint-210/scaler.pt @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:851b719b8a617bcc4b7d32c15b963b316fa190c3340fc8fe5e3660e4d00542a1 +size 1383 diff --git a/hyperparameter/m4/realtabformer/rtf-m4-20260505_021645/rtf_checkpoints/checkpoint-210/scheduler.pt b/hyperparameter/m4/realtabformer/rtf-m4-20260505_021645/rtf_checkpoints/checkpoint-210/scheduler.pt new file mode 100644 index 0000000000000000000000000000000000000000..46339f81045a35707a5d4745df40cca8a1a55161 --- /dev/null +++ b/hyperparameter/m4/realtabformer/rtf-m4-20260505_021645/rtf_checkpoints/checkpoint-210/scheduler.pt @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:2c34d191e93000797c49daf50176b2e35eaccd3a1e991a62485c3e094f992366 +size 1465 diff --git a/hyperparameter/m4/realtabformer/rtf-m4-20260505_021645/rtf_checkpoints/checkpoint-210/trainer_state.json b/hyperparameter/m4/realtabformer/rtf-m4-20260505_021645/rtf_checkpoints/checkpoint-210/trainer_state.json new file mode 100644 index 0000000000000000000000000000000000000000..cceb6ce78c2f662621df15fd443c556dcb01fd60 --- /dev/null +++ b/hyperparameter/m4/realtabformer/rtf-m4-20260505_021645/rtf_checkpoints/checkpoint-210/trainer_state.json @@ -0,0 +1,48 @@ +{ + "best_global_step": null, + "best_metric": null, + "best_model_checkpoint": null, + "epoch": 3.0, + "eval_steps": 100, + "global_step": 210, + "is_hyper_param_search": false, + "is_local_process_zero": true, + "is_world_process_zero": true, + "log_history": [ + { + "epoch": 1.4316546762589928, + "grad_norm": 0.3629039227962494, + "learning_rate": 3.585714285714286e-05, + "loss": 1.99164794921875, + "step": 100 + }, + { + "epoch": 2.8633093525179856, + "grad_norm": 0.363282173871994, + "learning_rate": 2.1571428571428574e-05, + "loss": 1.4160968017578126, + "step": 200 + } + ], + "logging_steps": 100, + "max_steps": 350, + "num_input_tokens_seen": 0, + "num_train_epochs": 5, + "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": 40731672379392.0, + "train_batch_size": 8, + "trial_name": null, + "trial_params": null +} diff --git a/hyperparameter/m4/realtabformer/rtf-m4-20260505_021645/rtf_checkpoints/checkpoint-210/training_args.bin b/hyperparameter/m4/realtabformer/rtf-m4-20260505_021645/rtf_checkpoints/checkpoint-210/training_args.bin new file mode 100644 index 0000000000000000000000000000000000000000..ed11f716a866dff92bead1d973552e2411221de1 --- /dev/null +++ b/hyperparameter/m4/realtabformer/rtf-m4-20260505_021645/rtf_checkpoints/checkpoint-210/training_args.bin @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:91f70b571caed8698a4d8d0fd35c5241ef347a8d8ebe9d95ba3258b493311a0b +size 5201 diff --git a/hyperparameter/m4/realtabformer/rtf-m4-20260505_021645/rtf_checkpoints/checkpoint-280/config.json b/hyperparameter/m4/realtabformer/rtf-m4-20260505_021645/rtf_checkpoints/checkpoint-280/config.json new file mode 100644 index 0000000000000000000000000000000000000000..69b1961f0cbafdc846150e71a2d82b4ce3beb94c --- /dev/null +++ b/hyperparameter/m4/realtabformer/rtf-m4-20260505_021645/rtf_checkpoints/checkpoint-280/config.json @@ -0,0 +1,34 @@ +{ + "activation_function": "gelu_new", + "add_cross_attention": false, + "architectures": [ + "GPT2LMHeadModel" + ], + "attn_pdrop": 0.1, + "bos_token_id": 5, + "dtype": "float32", + "embd_pdrop": 0.1, + "eos_token_id": 6, + "initializer_range": 0.02, + "layer_norm_epsilon": 1e-05, + "model_type": "gpt2", + "n_embd": 768, + "n_head": 12, + "n_inner": null, + "n_layer": 6, + "n_positions": 1024, + "pad_token_id": null, + "reorder_and_upcast_attn": false, + "resid_pdrop": 0.1, + "scale_attn_by_inverse_layer_idx": false, + "scale_attn_weights": true, + "summary_activation": null, + "summary_first_dropout": 0.1, + "summary_proj_to_labels": true, + "summary_type": "cls_index", + "summary_use_proj": true, + "tie_word_embeddings": true, + "transformers_version": "5.5.3", + "use_cache": false, + "vocab_size": 167 +} diff --git a/hyperparameter/m4/realtabformer/rtf-m4-20260505_021645/rtf_checkpoints/checkpoint-280/generation_config.json b/hyperparameter/m4/realtabformer/rtf-m4-20260505_021645/rtf_checkpoints/checkpoint-280/generation_config.json new file mode 100644 index 0000000000000000000000000000000000000000..ffe89567780e75b5c22eade9be971483b9618f39 --- /dev/null +++ b/hyperparameter/m4/realtabformer/rtf-m4-20260505_021645/rtf_checkpoints/checkpoint-280/generation_config.json @@ -0,0 +1,9 @@ +{ + "_from_model_config": true, + "bos_token_id": 5, + "eos_token_id": 6, + "output_attentions": false, + "output_hidden_states": false, + "transformers_version": "5.5.3", + "use_cache": true +} diff --git a/hyperparameter/m4/realtabformer/rtf-m4-20260505_021645/rtf_checkpoints/checkpoint-280/model.safetensors b/hyperparameter/m4/realtabformer/rtf-m4-20260505_021645/rtf_checkpoints/checkpoint-280/model.safetensors new file mode 100644 index 0000000000000000000000000000000000000000..219d5e37d8b7ccc5c56caa752802e8c064894463 --- /dev/null +++ b/hyperparameter/m4/realtabformer/rtf-m4-20260505_021645/rtf_checkpoints/checkpoint-280/model.safetensors @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:a9dd48bbd750511d249461737ce39f832f1e339bdd8ee2594ba29913cd4252fa +size 173781448 diff --git a/hyperparameter/m4/realtabformer/rtf-m4-20260505_021645/rtf_checkpoints/checkpoint-280/optimizer.pt b/hyperparameter/m4/realtabformer/rtf-m4-20260505_021645/rtf_checkpoints/checkpoint-280/optimizer.pt new file mode 100644 index 0000000000000000000000000000000000000000..d485e2eb92a58b3ba8a79d00b17ad15a2c6fbe04 --- /dev/null +++ b/hyperparameter/m4/realtabformer/rtf-m4-20260505_021645/rtf_checkpoints/checkpoint-280/optimizer.pt @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:dc25789f55b0c6cd2eff6a49885b561f78cef7ddfb4f1d300dfeed96cada7c93 +size 347611979 diff --git a/hyperparameter/m4/realtabformer/rtf-m4-20260505_021645/rtf_checkpoints/checkpoint-280/rng_state.pth b/hyperparameter/m4/realtabformer/rtf-m4-20260505_021645/rtf_checkpoints/checkpoint-280/rng_state.pth new file mode 100644 index 0000000000000000000000000000000000000000..9bd783d1c384d2d7003fc56e134c8197218de1b4 --- /dev/null +++ b/hyperparameter/m4/realtabformer/rtf-m4-20260505_021645/rtf_checkpoints/checkpoint-280/rng_state.pth @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:7ad34b30a75873cac7e131d2545996fc79e5c6f61694ea6bc4428b32847b5e53 +size 14645 diff --git a/hyperparameter/m4/realtabformer/rtf-m4-20260505_021645/rtf_checkpoints/checkpoint-280/scaler.pt b/hyperparameter/m4/realtabformer/rtf-m4-20260505_021645/rtf_checkpoints/checkpoint-280/scaler.pt new file mode 100644 index 0000000000000000000000000000000000000000..0bb8224038855cad3fe4643b119bdc5ad5665c24 --- /dev/null +++ b/hyperparameter/m4/realtabformer/rtf-m4-20260505_021645/rtf_checkpoints/checkpoint-280/scaler.pt @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:1e7b282e378ec2ced970eb52fe72705cad095a473643b2c866db2de8d14443c9 +size 1383 diff --git a/hyperparameter/m4/realtabformer/rtf-m4-20260505_021645/rtf_checkpoints/checkpoint-280/scheduler.pt b/hyperparameter/m4/realtabformer/rtf-m4-20260505_021645/rtf_checkpoints/checkpoint-280/scheduler.pt new file mode 100644 index 0000000000000000000000000000000000000000..e85c76dcc69cace1c3941d936b272a3782dccba3 --- /dev/null +++ b/hyperparameter/m4/realtabformer/rtf-m4-20260505_021645/rtf_checkpoints/checkpoint-280/scheduler.pt @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:da4781f6b9974523805a4bb9f876c2ae588a8cc76be7c35040db32f0b4118378 +size 1465 diff --git a/hyperparameter/m4/realtabformer/rtf-m4-20260505_021645/rtf_checkpoints/checkpoint-280/trainer_state.json b/hyperparameter/m4/realtabformer/rtf-m4-20260505_021645/rtf_checkpoints/checkpoint-280/trainer_state.json new file mode 100644 index 0000000000000000000000000000000000000000..e4441b2955589b35586acfee1a2526bc34807df4 --- /dev/null +++ b/hyperparameter/m4/realtabformer/rtf-m4-20260505_021645/rtf_checkpoints/checkpoint-280/trainer_state.json @@ -0,0 +1,48 @@ +{ + "best_global_step": null, + "best_metric": null, + "best_model_checkpoint": null, + "epoch": 4.0, + "eval_steps": 100, + "global_step": 280, + "is_hyper_param_search": false, + "is_local_process_zero": true, + "is_world_process_zero": true, + "log_history": [ + { + "epoch": 1.4316546762589928, + "grad_norm": 0.3629039227962494, + "learning_rate": 3.585714285714286e-05, + "loss": 1.99164794921875, + "step": 100 + }, + { + "epoch": 2.8633093525179856, + "grad_norm": 0.363282173871994, + "learning_rate": 2.1571428571428574e-05, + "loss": 1.4160968017578126, + "step": 200 + } + ], + "logging_steps": 100, + "max_steps": 350, + "num_input_tokens_seen": 0, + "num_train_epochs": 5, + "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": 54308896505856.0, + "train_batch_size": 8, + "trial_name": null, + "trial_params": null +} diff --git a/hyperparameter/m4/realtabformer/rtf-m4-20260505_021645/rtf_checkpoints/checkpoint-280/training_args.bin b/hyperparameter/m4/realtabformer/rtf-m4-20260505_021645/rtf_checkpoints/checkpoint-280/training_args.bin new file mode 100644 index 0000000000000000000000000000000000000000..ed11f716a866dff92bead1d973552e2411221de1 --- /dev/null +++ b/hyperparameter/m4/realtabformer/rtf-m4-20260505_021645/rtf_checkpoints/checkpoint-280/training_args.bin @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:91f70b571caed8698a4d8d0fd35c5241ef347a8d8ebe9d95ba3258b493311a0b +size 5201 diff --git a/hyperparameter/m4/realtabformer/rtf-m4-20260505_021645/rtf_checkpoints/checkpoint-300/config.json b/hyperparameter/m4/realtabformer/rtf-m4-20260505_021645/rtf_checkpoints/checkpoint-300/config.json new file mode 100644 index 0000000000000000000000000000000000000000..69b1961f0cbafdc846150e71a2d82b4ce3beb94c --- /dev/null +++ b/hyperparameter/m4/realtabformer/rtf-m4-20260505_021645/rtf_checkpoints/checkpoint-300/config.json @@ -0,0 +1,34 @@ +{ + "activation_function": "gelu_new", + "add_cross_attention": false, + "architectures": [ + "GPT2LMHeadModel" + ], + "attn_pdrop": 0.1, + "bos_token_id": 5, + "dtype": "float32", + "embd_pdrop": 0.1, + "eos_token_id": 6, + "initializer_range": 0.02, + "layer_norm_epsilon": 1e-05, + "model_type": "gpt2", + "n_embd": 768, + "n_head": 12, + "n_inner": null, + "n_layer": 6, + "n_positions": 1024, + "pad_token_id": null, + "reorder_and_upcast_attn": false, + "resid_pdrop": 0.1, + "scale_attn_by_inverse_layer_idx": false, + "scale_attn_weights": true, + "summary_activation": null, + "summary_first_dropout": 0.1, + "summary_proj_to_labels": true, + "summary_type": "cls_index", + "summary_use_proj": true, + "tie_word_embeddings": true, + "transformers_version": "5.5.3", + "use_cache": false, + "vocab_size": 167 +} diff --git a/hyperparameter/m4/realtabformer/rtf-m4-20260505_021645/rtf_checkpoints/checkpoint-300/generation_config.json b/hyperparameter/m4/realtabformer/rtf-m4-20260505_021645/rtf_checkpoints/checkpoint-300/generation_config.json new file mode 100644 index 0000000000000000000000000000000000000000..ffe89567780e75b5c22eade9be971483b9618f39 --- /dev/null +++ b/hyperparameter/m4/realtabformer/rtf-m4-20260505_021645/rtf_checkpoints/checkpoint-300/generation_config.json @@ -0,0 +1,9 @@ +{ + "_from_model_config": true, + "bos_token_id": 5, + "eos_token_id": 6, + "output_attentions": false, + "output_hidden_states": false, + "transformers_version": "5.5.3", + "use_cache": true +} diff --git a/hyperparameter/m4/realtabformer/rtf-m4-20260505_021645/rtf_checkpoints/checkpoint-300/model.safetensors b/hyperparameter/m4/realtabformer/rtf-m4-20260505_021645/rtf_checkpoints/checkpoint-300/model.safetensors new file mode 100644 index 0000000000000000000000000000000000000000..236ddb53f8d4a5c7d48bc83f688e642ec371e493 --- /dev/null +++ b/hyperparameter/m4/realtabformer/rtf-m4-20260505_021645/rtf_checkpoints/checkpoint-300/model.safetensors @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:5faf8ec8531885aef2aeea10a70a94f51505977e8a904e7fd3c4666cca523b32 +size 173781448 diff --git a/hyperparameter/m4/realtabformer/rtf-m4-20260505_021645/rtf_checkpoints/checkpoint-300/optimizer.pt b/hyperparameter/m4/realtabformer/rtf-m4-20260505_021645/rtf_checkpoints/checkpoint-300/optimizer.pt new file mode 100644 index 0000000000000000000000000000000000000000..43b3a3638f10ef5141a53eff8335d80a14866038 --- /dev/null +++ b/hyperparameter/m4/realtabformer/rtf-m4-20260505_021645/rtf_checkpoints/checkpoint-300/optimizer.pt @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:9cf163d55e9c7edc55e7f77eab43205122495971ff3d7978d55cdb7ef1c68d7c +size 347611979 diff --git a/hyperparameter/m4/realtabformer/rtf-m4-20260505_021645/rtf_checkpoints/checkpoint-300/rng_state.pth b/hyperparameter/m4/realtabformer/rtf-m4-20260505_021645/rtf_checkpoints/checkpoint-300/rng_state.pth new file mode 100644 index 0000000000000000000000000000000000000000..491b1e5a6afbc2fca34be4ee16b11d60b902a9d1 --- /dev/null +++ b/hyperparameter/m4/realtabformer/rtf-m4-20260505_021645/rtf_checkpoints/checkpoint-300/rng_state.pth @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:e042e3c08ecd0d8e7a76824286cd9e5084b612f471663c2cbdc0e8e8657f0408 +size 14645 diff --git a/hyperparameter/m4/realtabformer/rtf-m4-20260505_021645/rtf_checkpoints/checkpoint-300/scaler.pt b/hyperparameter/m4/realtabformer/rtf-m4-20260505_021645/rtf_checkpoints/checkpoint-300/scaler.pt new file mode 100644 index 0000000000000000000000000000000000000000..872dde653491aa0ae40076c2acf51d2ae74df8ca --- /dev/null +++ b/hyperparameter/m4/realtabformer/rtf-m4-20260505_021645/rtf_checkpoints/checkpoint-300/scaler.pt @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:30af866df24edce708e1eb20700878b402fa05707fa9bc5f332496baf440dbbb +size 1383 diff --git a/hyperparameter/m4/realtabformer/rtf-m4-20260505_021645/rtf_checkpoints/checkpoint-300/scheduler.pt b/hyperparameter/m4/realtabformer/rtf-m4-20260505_021645/rtf_checkpoints/checkpoint-300/scheduler.pt new file mode 100644 index 0000000000000000000000000000000000000000..94a7e36310c841270730d63d88eccc537cf232e9 --- /dev/null +++ b/hyperparameter/m4/realtabformer/rtf-m4-20260505_021645/rtf_checkpoints/checkpoint-300/scheduler.pt @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:a6bdf4c31c1148b23bc9a430052bc905cfbd412b42e7d135b36bddf0c6f2f43d +size 1465 diff --git a/hyperparameter/m4/realtabformer/rtf-m4-20260505_021645/rtf_checkpoints/checkpoint-300/trainer_state.json b/hyperparameter/m4/realtabformer/rtf-m4-20260505_021645/rtf_checkpoints/checkpoint-300/trainer_state.json new file mode 100644 index 0000000000000000000000000000000000000000..4b70853824596f09e49d36f00f14d6753fee08de --- /dev/null +++ b/hyperparameter/m4/realtabformer/rtf-m4-20260505_021645/rtf_checkpoints/checkpoint-300/trainer_state.json @@ -0,0 +1,55 @@ +{ + "best_global_step": null, + "best_metric": null, + "best_model_checkpoint": null, + "epoch": 4.287769784172662, + "eval_steps": 100, + "global_step": 300, + "is_hyper_param_search": false, + "is_local_process_zero": true, + "is_world_process_zero": true, + "log_history": [ + { + "epoch": 1.4316546762589928, + "grad_norm": 0.3629039227962494, + "learning_rate": 3.585714285714286e-05, + "loss": 1.99164794921875, + "step": 100 + }, + { + "epoch": 2.8633093525179856, + "grad_norm": 0.363282173871994, + "learning_rate": 2.1571428571428574e-05, + "loss": 1.4160968017578126, + "step": 200 + }, + { + "epoch": 4.287769784172662, + "grad_norm": 0.35129308700561523, + "learning_rate": 7.285714285714286e-06, + "loss": 1.3618666076660155, + "step": 300 + } + ], + "logging_steps": 100, + "max_steps": 350, + "num_input_tokens_seen": 0, + "num_train_epochs": 5, + "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": 58228347764736.0, + "train_batch_size": 8, + "trial_name": null, + "trial_params": null +} diff --git a/hyperparameter/m4/realtabformer/rtf-m4-20260505_021645/rtf_checkpoints/checkpoint-300/training_args.bin b/hyperparameter/m4/realtabformer/rtf-m4-20260505_021645/rtf_checkpoints/checkpoint-300/training_args.bin new file mode 100644 index 0000000000000000000000000000000000000000..ed11f716a866dff92bead1d973552e2411221de1 --- /dev/null +++ b/hyperparameter/m4/realtabformer/rtf-m4-20260505_021645/rtf_checkpoints/checkpoint-300/training_args.bin @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:91f70b571caed8698a4d8d0fd35c5241ef347a8d8ebe9d95ba3258b493311a0b +size 5201 diff --git a/hyperparameter/m4/realtabformer/rtf-m4-20260505_021645/rtf_checkpoints/checkpoint-350/config.json b/hyperparameter/m4/realtabformer/rtf-m4-20260505_021645/rtf_checkpoints/checkpoint-350/config.json new file mode 100644 index 0000000000000000000000000000000000000000..69b1961f0cbafdc846150e71a2d82b4ce3beb94c --- /dev/null +++ b/hyperparameter/m4/realtabformer/rtf-m4-20260505_021645/rtf_checkpoints/checkpoint-350/config.json @@ -0,0 +1,34 @@ +{ + "activation_function": "gelu_new", + "add_cross_attention": false, + "architectures": [ + "GPT2LMHeadModel" + ], + "attn_pdrop": 0.1, + "bos_token_id": 5, + "dtype": "float32", + "embd_pdrop": 0.1, + "eos_token_id": 6, + "initializer_range": 0.02, + "layer_norm_epsilon": 1e-05, + "model_type": "gpt2", + "n_embd": 768, + "n_head": 12, + "n_inner": null, + "n_layer": 6, + "n_positions": 1024, + "pad_token_id": null, + "reorder_and_upcast_attn": false, + "resid_pdrop": 0.1, + "scale_attn_by_inverse_layer_idx": false, + "scale_attn_weights": true, + "summary_activation": null, + "summary_first_dropout": 0.1, + "summary_proj_to_labels": true, + "summary_type": "cls_index", + "summary_use_proj": true, + "tie_word_embeddings": true, + "transformers_version": "5.5.3", + "use_cache": false, + "vocab_size": 167 +} diff --git a/hyperparameter/m4/realtabformer/rtf-m4-20260505_021645/rtf_checkpoints/checkpoint-350/generation_config.json b/hyperparameter/m4/realtabformer/rtf-m4-20260505_021645/rtf_checkpoints/checkpoint-350/generation_config.json new file mode 100644 index 0000000000000000000000000000000000000000..ffe89567780e75b5c22eade9be971483b9618f39 --- /dev/null +++ b/hyperparameter/m4/realtabformer/rtf-m4-20260505_021645/rtf_checkpoints/checkpoint-350/generation_config.json @@ -0,0 +1,9 @@ +{ + "_from_model_config": true, + "bos_token_id": 5, + "eos_token_id": 6, + "output_attentions": false, + "output_hidden_states": false, + "transformers_version": "5.5.3", + "use_cache": true +} diff --git a/hyperparameter/m4/realtabformer/rtf-m4-20260505_021645/rtf_checkpoints/checkpoint-350/model.safetensors b/hyperparameter/m4/realtabformer/rtf-m4-20260505_021645/rtf_checkpoints/checkpoint-350/model.safetensors new file mode 100644 index 0000000000000000000000000000000000000000..4b04b113fd7a50aed4f0a99c7747ffd76fd35f23 --- /dev/null +++ b/hyperparameter/m4/realtabformer/rtf-m4-20260505_021645/rtf_checkpoints/checkpoint-350/model.safetensors @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:a2b50130c13d24fde1b2b691f32b07aa033558d355dbe0fa55ec3817a56f7cf3 +size 173781448 diff --git a/hyperparameter/m4/realtabformer/rtf-m4-20260505_021645/rtf_checkpoints/checkpoint-350/optimizer.pt b/hyperparameter/m4/realtabformer/rtf-m4-20260505_021645/rtf_checkpoints/checkpoint-350/optimizer.pt new file mode 100644 index 0000000000000000000000000000000000000000..94ff9a304bf4ea89b2d595f29182f041035a8ed5 --- /dev/null +++ b/hyperparameter/m4/realtabformer/rtf-m4-20260505_021645/rtf_checkpoints/checkpoint-350/optimizer.pt @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:a53d100ced49bc882ccfbec41ef5f73ce43f5a5c6d36e5c646496838fabffa7b +size 347611979 diff --git a/hyperparameter/m4/realtabformer/rtf-m4-20260505_021645/rtf_checkpoints/checkpoint-350/rng_state.pth b/hyperparameter/m4/realtabformer/rtf-m4-20260505_021645/rtf_checkpoints/checkpoint-350/rng_state.pth new file mode 100644 index 0000000000000000000000000000000000000000..e512d020c949d760e08f0c4060b0d6199b672435 --- /dev/null +++ b/hyperparameter/m4/realtabformer/rtf-m4-20260505_021645/rtf_checkpoints/checkpoint-350/rng_state.pth @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:c25aa213fd07c4602a230bd00208fae686142279e5b3bef70562015ed5b594f4 +size 14645 diff --git a/hyperparameter/m4/realtabformer/rtf-m4-20260505_021645/rtf_checkpoints/checkpoint-350/scaler.pt b/hyperparameter/m4/realtabformer/rtf-m4-20260505_021645/rtf_checkpoints/checkpoint-350/scaler.pt new file mode 100644 index 0000000000000000000000000000000000000000..99cb3c49046cab4d891db1e007b526ead3c39248 --- /dev/null +++ b/hyperparameter/m4/realtabformer/rtf-m4-20260505_021645/rtf_checkpoints/checkpoint-350/scaler.pt @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:e7a3b7c7f6ae3d4b9e2fcb0774d91cea73c152177e3f6818dfc11db3a9a74275 +size 1383 diff --git a/hyperparameter/m4/realtabformer/rtf-m4-20260505_021645/rtf_checkpoints/checkpoint-350/scheduler.pt b/hyperparameter/m4/realtabformer/rtf-m4-20260505_021645/rtf_checkpoints/checkpoint-350/scheduler.pt new file mode 100644 index 0000000000000000000000000000000000000000..9e20a23aa137ad71dc26de707eafe9347fa09579 --- /dev/null +++ b/hyperparameter/m4/realtabformer/rtf-m4-20260505_021645/rtf_checkpoints/checkpoint-350/scheduler.pt @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:8e96236e914f2dbc2323c2d651c9ca59727a7b86dffb0d60a36fbd71ecca9e2d +size 1465 diff --git a/hyperparameter/m4/realtabformer/rtf-m4-20260505_021645/rtf_checkpoints/checkpoint-350/trainer_state.json b/hyperparameter/m4/realtabformer/rtf-m4-20260505_021645/rtf_checkpoints/checkpoint-350/trainer_state.json new file mode 100644 index 0000000000000000000000000000000000000000..9c544186de9b9b6dfa860db6c3177931cec3b2f3 --- /dev/null +++ b/hyperparameter/m4/realtabformer/rtf-m4-20260505_021645/rtf_checkpoints/checkpoint-350/trainer_state.json @@ -0,0 +1,55 @@ +{ + "best_global_step": null, + "best_metric": null, + "best_model_checkpoint": null, + "epoch": 5.0, + "eval_steps": 100, + "global_step": 350, + "is_hyper_param_search": false, + "is_local_process_zero": true, + "is_world_process_zero": true, + "log_history": [ + { + "epoch": 1.4316546762589928, + "grad_norm": 0.3629039227962494, + "learning_rate": 3.585714285714286e-05, + "loss": 1.99164794921875, + "step": 100 + }, + { + "epoch": 2.8633093525179856, + "grad_norm": 0.363282173871994, + "learning_rate": 2.1571428571428574e-05, + "loss": 1.4160968017578126, + "step": 200 + }, + { + "epoch": 4.287769784172662, + "grad_norm": 0.35129308700561523, + "learning_rate": 7.285714285714286e-06, + "loss": 1.3618666076660155, + "step": 300 + } + ], + "logging_steps": 100, + "max_steps": 350, + "num_input_tokens_seen": 0, + "num_train_epochs": 5, + "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": 67886120632320.0, + "train_batch_size": 8, + "trial_name": null, + "trial_params": null +} diff --git a/hyperparameter/m4/realtabformer/rtf-m4-20260505_021645/rtf_checkpoints/checkpoint-350/training_args.bin b/hyperparameter/m4/realtabformer/rtf-m4-20260505_021645/rtf_checkpoints/checkpoint-350/training_args.bin new file mode 100644 index 0000000000000000000000000000000000000000..ed11f716a866dff92bead1d973552e2411221de1 --- /dev/null +++ b/hyperparameter/m4/realtabformer/rtf-m4-20260505_021645/rtf_checkpoints/checkpoint-350/training_args.bin @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:91f70b571caed8698a4d8d0fd35c5241ef347a8d8ebe9d95ba3258b493311a0b +size 5201 diff --git a/hyperparameter/m4/realtabformer/rtf-m4-20260505_021645/run_config.json b/hyperparameter/m4/realtabformer/rtf-m4-20260505_021645/run_config.json new file mode 100644 index 0000000000000000000000000000000000000000..1c14f3fb8615c324a6959ea1f56c91b8d451d79f --- /dev/null +++ b/hyperparameter/m4/realtabformer/rtf-m4-20260505_021645/run_config.json @@ -0,0 +1,40 @@ +{ + "schema_version": 1, + "recorded_at": "2026-05-05T02:16:45", + "dataset_id": "m4", + "model": "realtabformer", + "work_dir": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/m4/realtabformer/rtf-m4-20260505_021645", + "dataset_source_requested": "new", + "dataset_source_resolved": "new", + "cli_args": { + "model": "realtabformer", + "dataset": "m4", + "dataset_source": "new", + "train": true, + "generate": true, + "num_rows": 0, + "epochs": 5, + "output_dir": null, + "model_dir": null, + "work_dir": null, + "resume": false, + "no_stats": false + }, + "resolved": { + "num_rows": 2217, + "model_path": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/m4/realtabformer/rtf-m4-20260505_021645/models_5epochs", + "output_csv": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/m4/realtabformer/rtf-m4-20260505_021645/rtf-m4-2217-20260505_021728.csv" + }, + "input_artifacts": { + "public_gate_report": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/m4/realtabformer/rtf-m4-20260505_021645/public_gate/public_gate_report.json", + "public_manifest": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/m4/realtabformer/rtf-m4-20260505_021645/public_gate/staged_input_manifest.json", + "model_manifest": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/m4/realtabformer/rtf-m4-20260505_021645/staged/realtabformer/model_input_manifest.json", + "train_csv": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/m4/realtabformer/rtf-m4-20260505_021645/staged/public/train.csv", + "features_json": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/m4/realtabformer/rtf-m4-20260505_021645/staged/public/staged_features.json", + "target_column": "charges", + "task_type": "regression" + }, + "env_overrides": { + "BENCHMARK_REALTABFORMER_GPUS": "device=3" + } +} \ No newline at end of file diff --git a/hyperparameter/m4/realtabformer/rtf-m4-20260505_021645/runtime_result.json b/hyperparameter/m4/realtabformer/rtf-m4-20260505_021645/runtime_result.json new file mode 100644 index 0000000000000000000000000000000000000000..65c3ccce8f2dd90083da8d48c0df17a548e3daed --- /dev/null +++ b/hyperparameter/m4/realtabformer/rtf-m4-20260505_021645/runtime_result.json @@ -0,0 +1,27 @@ +{ + "dataset_id": "m4", + "model": "realtabformer", + "run_id": "rtf-m4-20260505_021645", + "public_gate_status": "pass", + "adapter_ready_status": "pass", + "train_status": "success", + "generate_status": "success", + "reason_code": null, + "reason_detail": null, + "artifacts": { + "synthetic_csv": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/m4/realtabformer/rtf-m4-20260505_021645/rtf-m4-2217-20260505_021728.csv", + "model_path": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/m4/realtabformer/rtf-m4-20260505_021645/models_5epochs" + }, + "timings": { + "train": { + "started_at": "2026-05-05T02:16:45", + "ended_at": "2026-05-05T02:17:28", + "duration_sec": 43.029 + }, + "generate": { + "started_at": "2026-05-05T02:17:28", + "ended_at": "2026-05-05T02:17:51", + "duration_sec": 23.658 + } + } +} \ No newline at end of file diff --git a/hyperparameter/m4/realtabformer/rtf-m4-20260505_021645/staged/public/staged_features.json b/hyperparameter/m4/realtabformer/rtf-m4-20260505_021645/staged/public/staged_features.json new file mode 100644 index 0000000000000000000000000000000000000000..d6acd098c35111f423f3ffff2cfd1754bc5dfebc --- /dev/null +++ b/hyperparameter/m4/realtabformer/rtf-m4-20260505_021645/staged/public/staged_features.json @@ -0,0 +1,37 @@ +[ + { + "feature_name": "age", + "data_type": "continuous", + "is_target": false + }, + { + "feature_name": "sex", + "data_type": "categorical", + "is_target": false + }, + { + "feature_name": "bmi", + "data_type": "continuous", + "is_target": false + }, + { + "feature_name": "children", + "data_type": "continuous", + "is_target": false + }, + { + "feature_name": "smoker", + "data_type": "binary", + "is_target": false + }, + { + "feature_name": "region", + "data_type": "categorical", + "is_target": false + }, + { + "feature_name": "charges", + "data_type": "continuous", + "is_target": true + } +] \ No newline at end of file diff --git a/hyperparameter/m4/realtabformer/rtf-m4-20260505_021645/staged/public/test.csv b/hyperparameter/m4/realtabformer/rtf-m4-20260505_021645/staged/public/test.csv new file mode 100644 index 0000000000000000000000000000000000000000..c88a2e7cfcd715bb421cb56eb078033da45c4dc8 --- /dev/null +++ b/hyperparameter/m4/realtabformer/rtf-m4-20260505_021645/staged/public/test.csv @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:4c541b677fb2d45c5bc79338eeee9fd8c91484b195a0c2c546c2fbabf113b7ea +size 11298 diff --git a/hyperparameter/m4/realtabformer/rtf-m4-20260505_021645/staged/public/train.csv b/hyperparameter/m4/realtabformer/rtf-m4-20260505_021645/staged/public/train.csv new file mode 100644 index 0000000000000000000000000000000000000000..5a05019d786529e0617291766c4fbe016ca01bf5 --- /dev/null +++ b/hyperparameter/m4/realtabformer/rtf-m4-20260505_021645/staged/public/train.csv @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:614ebfac5f41d6f661aff675fa18c0f933a8d9bcc77ea71b7b2360c2f0155837 +size 90069 diff --git a/hyperparameter/m4/realtabformer/rtf-m4-20260505_021645/staged/public/val.csv b/hyperparameter/m4/realtabformer/rtf-m4-20260505_021645/staged/public/val.csv new file mode 100644 index 0000000000000000000000000000000000000000..d78fe5ad1537c437ba9ac2629f2aa60a6c17e708 --- /dev/null +++ b/hyperparameter/m4/realtabformer/rtf-m4-20260505_021645/staged/public/val.csv @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:e55f5edbe7942ff01630de91a9c70dfbc6445eba76c7b970350364546b67c2d7 +size 11218 diff --git a/hyperparameter/m4/realtabformer/rtf-m4-20260505_021645/staged/realtabformer/adapter_report.json b/hyperparameter/m4/realtabformer/rtf-m4-20260505_021645/staged/realtabformer/adapter_report.json new file mode 100644 index 0000000000000000000000000000000000000000..154c3436084e28d19b96a68790234574d0fe3bce --- /dev/null +++ b/hyperparameter/m4/realtabformer/rtf-m4-20260505_021645/staged/realtabformer/adapter_report.json @@ -0,0 +1,7 @@ +{ + "adapter_ready_status": "pass", + "adapter_fail_reason_code": null, + "adapter_fail_detail": null, + "adapter_transforms_applied": [], + "model_input_manifest": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/m4/realtabformer/rtf-m4-20260505_021645/staged/realtabformer/model_input_manifest.json" +} \ No newline at end of file diff --git a/hyperparameter/m4/realtabformer/rtf-m4-20260505_021645/staged/realtabformer/adapter_transforms_applied.json b/hyperparameter/m4/realtabformer/rtf-m4-20260505_021645/staged/realtabformer/adapter_transforms_applied.json new file mode 100644 index 0000000000000000000000000000000000000000..0637a088a01e8ddab3bf3fa98dbe804cbde1a0dc --- /dev/null +++ b/hyperparameter/m4/realtabformer/rtf-m4-20260505_021645/staged/realtabformer/adapter_transforms_applied.json @@ -0,0 +1 @@ +[] \ No newline at end of file diff --git a/hyperparameter/m4/realtabformer/rtf-m4-20260505_021645/staged/realtabformer/model_input_manifest.json b/hyperparameter/m4/realtabformer/rtf-m4-20260505_021645/staged/realtabformer/model_input_manifest.json new file mode 100644 index 0000000000000000000000000000000000000000..a4294c4b42accca6ebc7b377af3d389042426783 --- /dev/null +++ b/hyperparameter/m4/realtabformer/rtf-m4-20260505_021645/staged/realtabformer/model_input_manifest.json @@ -0,0 +1,154 @@ +{ + "dataset_id": "m4", + "model": "realtabformer", + "target_column": "charges", + "task_type": "regression", + "column_schema": [ + { + "name": "age", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 47, + "unique_ratio": 0.0212, + "example_values": [ + "46", + "38", + "19", + "27", + "26" + ] + } + }, + { + "name": "sex", + "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.000902, + "example_values": [ + "female", + "male" + ] + } + }, + { + "name": "bmi", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 538, + "unique_ratio": 0.24267, + "example_values": [ + "23.655", + "19.3", + "30.59", + "32.67", + "29.45" + ] + } + }, + { + "name": "children", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 6, + "unique_ratio": 0.002706, + "example_values": [ + "1", + "0", + "3", + "2", + "5" + ] + } + }, + { + "name": "smoker", + "role": "feature", + "semantic_type": "boolean", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 2, + "unique_ratio": 0.000902, + "example_values": [ + "yes", + "no" + ] + } + }, + { + "name": "region", + "role": "feature", + "semantic_type": "categorical", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 4, + "unique_ratio": 0.001804, + "example_values": [ + "northwest", + "southwest", + "southeast", + "northeast" + ] + } + }, + { + "name": "charges", + "role": "target", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 1281, + "unique_ratio": 0.577808, + "example_values": [ + "21677.28345", + "15820.699", + "1639.5631", + "2497.0383", + "2897.3235" + ] + } + } + ], + "public_manifest": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/m4/realtabformer/rtf-m4-20260505_021645/public_gate/staged_input_manifest.json", + "train_csv": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/m4/realtabformer/rtf-m4-20260505_021645/staged/public/train.csv", + "val_csv": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/m4/realtabformer/rtf-m4-20260505_021645/staged/public/val.csv", + "test_csv": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/m4/realtabformer/rtf-m4-20260505_021645/staged/public/test.csv", + "features_json": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/m4/realtabformer/rtf-m4-20260505_021645/staged/public/staged_features.json", + "public_gate_report": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/m4/realtabformer/rtf-m4-20260505_021645/public_gate/public_gate_report.json" +} \ No newline at end of file diff --git a/hyperparameter/m4/realtabformer/rtf-m4-20260505_021645/train_20260505_021645.log b/hyperparameter/m4/realtabformer/rtf-m4-20260505_021645/train_20260505_021645.log new file mode 100644 index 0000000000000000000000000000000000000000..188aeb70b06609a4a399e90533e161fa032077c9 --- /dev/null +++ b/hyperparameter/m4/realtabformer/rtf-m4-20260505_021645/train_20260505_021645.log @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:863cb8e5305625b3f52ca1339cc122fb8869fd5e1ece28942ec1abb707bc8454 +size 14821 diff --git a/hyperparameter/m4/realtabformer/rtf-m4-20260505_021804/gen_20260505_021918.log b/hyperparameter/m4/realtabformer/rtf-m4-20260505_021804/gen_20260505_021918.log new file mode 100644 index 0000000000000000000000000000000000000000..16f49fb8ce8be4c76383fd42bb6c319703d8e7fd --- /dev/null +++ b/hyperparameter/m4/realtabformer/rtf-m4-20260505_021804/gen_20260505_021918.log @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:6f8780d87bc68722e4e287f501d2da3411ed8cef632ae4022b2d1a317b3ec6b7 +size 1731 diff --git a/hyperparameter/m4/realtabformer/rtf-m4-20260505_021804/input_snapshot.json b/hyperparameter/m4/realtabformer/rtf-m4-20260505_021804/input_snapshot.json new file mode 100644 index 0000000000000000000000000000000000000000..9db22a39e5ccaaeedd23cf99efa32e16d4ed388a --- /dev/null +++ b/hyperparameter/m4/realtabformer/rtf-m4-20260505_021804/input_snapshot.json @@ -0,0 +1,36 @@ +{ + "dataset_id": "m4", + "model": "realtabformer", + "inputs": { + "train_csv": { + "path": "/data/jialinzhang/SynthesizePipeline-server/DatasetNew/m4/m4-train.csv", + "exists": true, + "size": 92191, + "sha256": "396b9d409ca21bf4a4cd329bdf5b7796aa0ae6356fa8d89b8eb669b5880b81f1" + }, + "val_csv": { + "path": "/data/jialinzhang/SynthesizePipeline-server/DatasetNew/m4/m4-val.csv", + "exists": true, + "size": 11482, + "sha256": "ee3c247d02f56e1687d03c381e13125d6a3a2a411ac7f202ba8520a4be9f1784" + }, + "test_csv": { + "path": "/data/jialinzhang/SynthesizePipeline-server/DatasetNew/m4/m4-test.csv", + "exists": true, + "size": 11559, + "sha256": "cadb9941124001b8fa7cb1ebae43b70a9ca56294f4df4d3c2f22c164c41757d4" + }, + "profile_json": { + "path": "/data/jialinzhang/SynthesizePipeline-server/DatasetNew/artifacts/data_core/tabular/m4/m4-dataset_profile.json", + "exists": true, + "size": 3336, + "sha256": "83e2764810e4a0e8cdece3a28dbd9134b7c9df6f2e56953e46d024ad2c4e035f" + }, + "contract_json": { + "path": "/data/jialinzhang/SynthesizePipeline-server/DatasetNew/artifacts/data_core/tabular/m4/m4-dataset_contract_v1.json", + "exists": true, + "size": 3810, + "sha256": "c23641b258629a845b164099bd0132886f8f6d0100e990494e0f92540f8987d9" + } + } +} \ No newline at end of file diff --git a/hyperparameter/m4/realtabformer/rtf-m4-20260505_021804/models_10epochs/id000017779187550240378880/rtf_config.json b/hyperparameter/m4/realtabformer/rtf-m4-20260505_021804/models_10epochs/id000017779187550240378880/rtf_config.json new file mode 100644 index 0000000000000000000000000000000000000000..a0f1bcfc2c09476dacad1c4cc0fe6eae53c7dde7 --- /dev/null +++ b/hyperparameter/m4/realtabformer/rtf-m4-20260505_021804/models_10epochs/id000017779187550240378880/rtf_config.json @@ -0,0 +1 @@ +{"model_type": "tabular", "tabular_config": {"transformers_version": "5.5.3", "architectures": ["GPT2LMHeadModel"], "output_hidden_states": false, "return_dict": true, "dtype": "float32", "chunk_size_feed_forward": 0, "is_encoder_decoder": false, "id2label": {"0": "LABEL_0", "1": "LABEL_1"}, "label2id": {"LABEL_0": 0, "LABEL_1": 1}, "problem_type": null, "vocab_size": 167, "n_positions": 1024, "n_embd": 768, "n_layer": 6, "n_head": 12, "n_inner": null, "activation_function": "gelu_new", "resid_pdrop": 0.1, "embd_pdrop": 0.1, "attn_pdrop": 0.1, "layer_norm_epsilon": 1e-05, "initializer_range": 0.02, "summary_type": "cls_index", "summary_use_proj": true, "summary_activation": null, "summary_proj_to_labels": true, "summary_first_dropout": 0.1, "scale_attn_weights": true, "use_cache": false, "bos_token_id": 5, "eos_token_id": 6, "pad_token_id": null, "scale_attn_by_inverse_layer_idx": false, "reorder_and_upcast_attn": false, "add_cross_attention": false, "tie_word_embeddings": true, "_name_or_path": "", "model_type": "gpt2", "output_attentions": false}, "checkpoints_dir": "rtf_checkpoints", "samples_save_dir": "rtf_samples", "full_save_dir": "rtf_full_save", "epochs": 10, "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": 10, "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": ["age", "sex", "bmi", "children", "smoker", "region", "charges"], "column_dtypes": {"age": "int64", "sex": "object", "bmi": "float64", "children": "int64", "smoker": "object", "region": "object", "charges": "float64"}, "column_has_missing": {"age": false, "sex": false, "bmi": false, "children": false, "smoker": false, "region": false, "charges": false}, "drop_na_cols": ["age", "sex", "bmi", "children", "smoker", "region", "charges"], "processed_columns": ["0___NUMERIC___age_00", "0___NUMERIC___age_01", "1___CATEGORICAL___sex", "2___NUMERIC___bmi_00", "2___NUMERIC___bmi_01", "2___NUMERIC___bmi_02", "2___NUMERIC___bmi_03", "2___NUMERIC___bmi_04", "2___NUMERIC___bmi_05", "3___NUMERIC___children_00", "4___CATEGORICAL___smoker", "5___CATEGORICAL___region", "6___NUMERIC___charges_00", "6___NUMERIC___charges_01", "6___NUMERIC___charges_02", "6___NUMERIC___charges_03", "6___NUMERIC___charges_04", "6___NUMERIC___charges_05", "6___NUMERIC___charges_06", "6___NUMERIC___charges_07", "6___NUMERIC___charges_08", "6___NUMERIC___charges_09"], "numeric_columns": ["age", "bmi", "children", "charges"], "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___age_00___1", "12": "0___NUMERIC___age_00___2", "13": "0___NUMERIC___age_00___3", "14": "0___NUMERIC___age_00___4", "15": "0___NUMERIC___age_00___5", "16": "0___NUMERIC___age_00___6", "17": "0___NUMERIC___age_01___0", "18": "0___NUMERIC___age_01___1", "19": "0___NUMERIC___age_01___2", "20": "0___NUMERIC___age_01___3", "21": "0___NUMERIC___age_01___4", "22": "0___NUMERIC___age_01___5", "23": "0___NUMERIC___age_01___6", "24": "0___NUMERIC___age_01___7", "25": "0___NUMERIC___age_01___8", "26": "0___NUMERIC___age_01___9", "27": "1___CATEGORICAL___sex___female", "28": "1___CATEGORICAL___sex___male", "29": "2___NUMERIC___bmi_00___1", "30": "2___NUMERIC___bmi_00___2", "31": "2___NUMERIC___bmi_00___3", "32": "2___NUMERIC___bmi_00___4", "33": "2___NUMERIC___bmi_00___5", "34": "2___NUMERIC___bmi_01___0", "35": "2___NUMERIC___bmi_01___1", "36": "2___NUMERIC___bmi_01___2", "37": "2___NUMERIC___bmi_01___3", "38": "2___NUMERIC___bmi_01___4", "39": "2___NUMERIC___bmi_01___5", "40": "2___NUMERIC___bmi_01___6", "41": "2___NUMERIC___bmi_01___7", "42": "2___NUMERIC___bmi_01___8", "43": "2___NUMERIC___bmi_01___9", "44": "2___NUMERIC___bmi_02___.", "45": "2___NUMERIC___bmi_03___0", "46": "2___NUMERIC___bmi_03___1", "47": "2___NUMERIC___bmi_03___2", "48": "2___NUMERIC___bmi_03___3", "49": "2___NUMERIC___bmi_03___4", "50": "2___NUMERIC___bmi_03___5", "51": "2___NUMERIC___bmi_03___6", "52": "2___NUMERIC___bmi_03___7", "53": "2___NUMERIC___bmi_03___8", "54": "2___NUMERIC___bmi_03___9", "55": "2___NUMERIC___bmi_04___0", "56": "2___NUMERIC___bmi_04___1", "57": "2___NUMERIC___bmi_04___2", "58": "2___NUMERIC___bmi_04___3", "59": "2___NUMERIC___bmi_04___4", "60": "2___NUMERIC___bmi_04___5", "61": "2___NUMERIC___bmi_04___6", "62": "2___NUMERIC___bmi_04___7", "63": "2___NUMERIC___bmi_04___8", "64": "2___NUMERIC___bmi_04___9", "65": "2___NUMERIC___bmi_05___0", "66": "2___NUMERIC___bmi_05___5", "67": "3___NUMERIC___children_00___0", "68": "3___NUMERIC___children_00___1", "69": "3___NUMERIC___children_00___2", "70": "3___NUMERIC___children_00___3", "71": "3___NUMERIC___children_00___4", "72": "3___NUMERIC___children_00___5", "73": "4___CATEGORICAL___smoker___no", "74": "4___CATEGORICAL___smoker___yes", "75": "5___CATEGORICAL___region___northeast", "76": "5___CATEGORICAL___region___northwest", "77": "5___CATEGORICAL___region___southeast", "78": "5___CATEGORICAL___region___southwest", "79": "6___NUMERIC___charges_00___0", "80": "6___NUMERIC___charges_00___1", "81": "6___NUMERIC___charges_00___2", "82": "6___NUMERIC___charges_00___3", "83": "6___NUMERIC___charges_00___4", "84": "6___NUMERIC___charges_00___5", "85": "6___NUMERIC___charges_00___6", "86": "6___NUMERIC___charges_01___0", "87": "6___NUMERIC___charges_01___1", "88": "6___NUMERIC___charges_01___2", "89": "6___NUMERIC___charges_01___3", "90": "6___NUMERIC___charges_01___4", "91": "6___NUMERIC___charges_01___5", "92": "6___NUMERIC___charges_01___6", "93": "6___NUMERIC___charges_01___7", "94": "6___NUMERIC___charges_01___8", "95": "6___NUMERIC___charges_01___9", "96": "6___NUMERIC___charges_02___0", "97": "6___NUMERIC___charges_02___1", "98": "6___NUMERIC___charges_02___2", "99": "6___NUMERIC___charges_02___3", "100": "6___NUMERIC___charges_02___4", "101": "6___NUMERIC___charges_02___5", "102": "6___NUMERIC___charges_02___6", "103": "6___NUMERIC___charges_02___7", "104": "6___NUMERIC___charges_02___8", "105": "6___NUMERIC___charges_02___9", "106": "6___NUMERIC___charges_03___0", "107": "6___NUMERIC___charges_03___1", "108": "6___NUMERIC___charges_03___2", "109": "6___NUMERIC___charges_03___3", "110": "6___NUMERIC___charges_03___4", "111": "6___NUMERIC___charges_03___5", "112": "6___NUMERIC___charges_03___6", "113": "6___NUMERIC___charges_03___7", "114": "6___NUMERIC___charges_03___8", "115": "6___NUMERIC___charges_03___9", "116": "6___NUMERIC___charges_04___0", "117": "6___NUMERIC___charges_04___1", "118": "6___NUMERIC___charges_04___2", "119": "6___NUMERIC___charges_04___3", "120": "6___NUMERIC___charges_04___4", "121": "6___NUMERIC___charges_04___5", "122": "6___NUMERIC___charges_04___6", "123": "6___NUMERIC___charges_04___7", "124": "6___NUMERIC___charges_04___8", "125": "6___NUMERIC___charges_04___9", "126": "6___NUMERIC___charges_05___.", "127": "6___NUMERIC___charges_06___0", "128": "6___NUMERIC___charges_06___1", "129": "6___NUMERIC___charges_06___2", "130": "6___NUMERIC___charges_06___3", "131": "6___NUMERIC___charges_06___4", "132": "6___NUMERIC___charges_06___5", "133": "6___NUMERIC___charges_06___6", "134": "6___NUMERIC___charges_06___7", "135": "6___NUMERIC___charges_06___8", "136": "6___NUMERIC___charges_06___9", "137": "6___NUMERIC___charges_07___0", "138": "6___NUMERIC___charges_07___1", "139": "6___NUMERIC___charges_07___2", "140": "6___NUMERIC___charges_07___3", "141": "6___NUMERIC___charges_07___4", "142": "6___NUMERIC___charges_07___5", "143": "6___NUMERIC___charges_07___6", "144": "6___NUMERIC___charges_07___7", "145": "6___NUMERIC___charges_07___8", "146": "6___NUMERIC___charges_07___9", "147": "6___NUMERIC___charges_08___0", "148": "6___NUMERIC___charges_08___1", "149": "6___NUMERIC___charges_08___2", "150": "6___NUMERIC___charges_08___3", "151": "6___NUMERIC___charges_08___4", "152": "6___NUMERIC___charges_08___5", "153": "6___NUMERIC___charges_08___6", "154": "6___NUMERIC___charges_08___7", "155": "6___NUMERIC___charges_08___8", "156": "6___NUMERIC___charges_08___9", "157": "6___NUMERIC___charges_09___0", "158": "6___NUMERIC___charges_09___1", "159": "6___NUMERIC___charges_09___2", "160": "6___NUMERIC___charges_09___3", "161": "6___NUMERIC___charges_09___4", "162": "6___NUMERIC___charges_09___5", "163": "6___NUMERIC___charges_09___6", "164": "6___NUMERIC___charges_09___7", "165": "6___NUMERIC___charges_09___8", "166": "6___NUMERIC___charges_09___9"}, "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___age_00___1": 11, "0___NUMERIC___age_00___2": 12, "0___NUMERIC___age_00___3": 13, "0___NUMERIC___age_00___4": 14, "0___NUMERIC___age_00___5": 15, "0___NUMERIC___age_00___6": 16, "0___NUMERIC___age_01___0": 17, "0___NUMERIC___age_01___1": 18, "0___NUMERIC___age_01___2": 19, "0___NUMERIC___age_01___3": 20, "0___NUMERIC___age_01___4": 21, "0___NUMERIC___age_01___5": 22, "0___NUMERIC___age_01___6": 23, "0___NUMERIC___age_01___7": 24, "0___NUMERIC___age_01___8": 25, "0___NUMERIC___age_01___9": 26, "1___CATEGORICAL___sex___female": 27, "1___CATEGORICAL___sex___male": 28, "2___NUMERIC___bmi_00___1": 29, "2___NUMERIC___bmi_00___2": 30, "2___NUMERIC___bmi_00___3": 31, "2___NUMERIC___bmi_00___4": 32, "2___NUMERIC___bmi_00___5": 33, "2___NUMERIC___bmi_01___0": 34, "2___NUMERIC___bmi_01___1": 35, "2___NUMERIC___bmi_01___2": 36, "2___NUMERIC___bmi_01___3": 37, "2___NUMERIC___bmi_01___4": 38, "2___NUMERIC___bmi_01___5": 39, "2___NUMERIC___bmi_01___6": 40, "2___NUMERIC___bmi_01___7": 41, "2___NUMERIC___bmi_01___8": 42, "2___NUMERIC___bmi_01___9": 43, "2___NUMERIC___bmi_02___.": 44, "2___NUMERIC___bmi_03___0": 45, "2___NUMERIC___bmi_03___1": 46, "2___NUMERIC___bmi_03___2": 47, "2___NUMERIC___bmi_03___3": 48, "2___NUMERIC___bmi_03___4": 49, "2___NUMERIC___bmi_03___5": 50, "2___NUMERIC___bmi_03___6": 51, "2___NUMERIC___bmi_03___7": 52, "2___NUMERIC___bmi_03___8": 53, "2___NUMERIC___bmi_03___9": 54, "2___NUMERIC___bmi_04___0": 55, "2___NUMERIC___bmi_04___1": 56, "2___NUMERIC___bmi_04___2": 57, "2___NUMERIC___bmi_04___3": 58, "2___NUMERIC___bmi_04___4": 59, "2___NUMERIC___bmi_04___5": 60, "2___NUMERIC___bmi_04___6": 61, "2___NUMERIC___bmi_04___7": 62, "2___NUMERIC___bmi_04___8": 63, "2___NUMERIC___bmi_04___9": 64, "2___NUMERIC___bmi_05___0": 65, "2___NUMERIC___bmi_05___5": 66, "3___NUMERIC___children_00___0": 67, "3___NUMERIC___children_00___1": 68, "3___NUMERIC___children_00___2": 69, "3___NUMERIC___children_00___3": 70, "3___NUMERIC___children_00___4": 71, "3___NUMERIC___children_00___5": 72, "4___CATEGORICAL___smoker___no": 73, "4___CATEGORICAL___smoker___yes": 74, "5___CATEGORICAL___region___northeast": 75, "5___CATEGORICAL___region___northwest": 76, "5___CATEGORICAL___region___southeast": 77, "5___CATEGORICAL___region___southwest": 78, "6___NUMERIC___charges_00___0": 79, "6___NUMERIC___charges_00___1": 80, "6___NUMERIC___charges_00___2": 81, "6___NUMERIC___charges_00___3": 82, "6___NUMERIC___charges_00___4": 83, "6___NUMERIC___charges_00___5": 84, "6___NUMERIC___charges_00___6": 85, "6___NUMERIC___charges_01___0": 86, "6___NUMERIC___charges_01___1": 87, "6___NUMERIC___charges_01___2": 88, "6___NUMERIC___charges_01___3": 89, "6___NUMERIC___charges_01___4": 90, "6___NUMERIC___charges_01___5": 91, "6___NUMERIC___charges_01___6": 92, "6___NUMERIC___charges_01___7": 93, "6___NUMERIC___charges_01___8": 94, "6___NUMERIC___charges_01___9": 95, "6___NUMERIC___charges_02___0": 96, "6___NUMERIC___charges_02___1": 97, "6___NUMERIC___charges_02___2": 98, "6___NUMERIC___charges_02___3": 99, "6___NUMERIC___charges_02___4": 100, "6___NUMERIC___charges_02___5": 101, "6___NUMERIC___charges_02___6": 102, "6___NUMERIC___charges_02___7": 103, "6___NUMERIC___charges_02___8": 104, "6___NUMERIC___charges_02___9": 105, "6___NUMERIC___charges_03___0": 106, "6___NUMERIC___charges_03___1": 107, "6___NUMERIC___charges_03___2": 108, "6___NUMERIC___charges_03___3": 109, "6___NUMERIC___charges_03___4": 110, "6___NUMERIC___charges_03___5": 111, "6___NUMERIC___charges_03___6": 112, "6___NUMERIC___charges_03___7": 113, "6___NUMERIC___charges_03___8": 114, "6___NUMERIC___charges_03___9": 115, "6___NUMERIC___charges_04___0": 116, "6___NUMERIC___charges_04___1": 117, "6___NUMERIC___charges_04___2": 118, "6___NUMERIC___charges_04___3": 119, "6___NUMERIC___charges_04___4": 120, "6___NUMERIC___charges_04___5": 121, "6___NUMERIC___charges_04___6": 122, "6___NUMERIC___charges_04___7": 123, "6___NUMERIC___charges_04___8": 124, "6___NUMERIC___charges_04___9": 125, "6___NUMERIC___charges_05___.": 126, "6___NUMERIC___charges_06___0": 127, "6___NUMERIC___charges_06___1": 128, "6___NUMERIC___charges_06___2": 129, "6___NUMERIC___charges_06___3": 130, "6___NUMERIC___charges_06___4": 131, "6___NUMERIC___charges_06___5": 132, "6___NUMERIC___charges_06___6": 133, "6___NUMERIC___charges_06___7": 134, "6___NUMERIC___charges_06___8": 135, "6___NUMERIC___charges_06___9": 136, "6___NUMERIC___charges_07___0": 137, "6___NUMERIC___charges_07___1": 138, "6___NUMERIC___charges_07___2": 139, "6___NUMERIC___charges_07___3": 140, "6___NUMERIC___charges_07___4": 141, "6___NUMERIC___charges_07___5": 142, "6___NUMERIC___charges_07___6": 143, "6___NUMERIC___charges_07___7": 144, "6___NUMERIC___charges_07___8": 145, "6___NUMERIC___charges_07___9": 146, "6___NUMERIC___charges_08___0": 147, "6___NUMERIC___charges_08___1": 148, "6___NUMERIC___charges_08___2": 149, "6___NUMERIC___charges_08___3": 150, "6___NUMERIC___charges_08___4": 151, "6___NUMERIC___charges_08___5": 152, "6___NUMERIC___charges_08___6": 153, "6___NUMERIC___charges_08___7": 154, "6___NUMERIC___charges_08___8": 155, "6___NUMERIC___charges_08___9": 156, "6___NUMERIC___charges_09___0": 157, "6___NUMERIC___charges_09___1": 158, "6___NUMERIC___charges_09___2": 159, "6___NUMERIC___charges_09___3": 160, "6___NUMERIC___charges_09___4": 161, "6___NUMERIC___charges_09___5": 162, "6___NUMERIC___charges_09___6": 163, "6___NUMERIC___charges_09___7": 164, "6___NUMERIC___charges_09___8": 165, "6___NUMERIC___charges_09___9": 166}, "column_token_ids": {"0___NUMERIC___age_00": [11, 12, 13, 14, 15, 16], "0___NUMERIC___age_01": [17, 18, 19, 20, 21, 22, 23, 24, 25, 26], "1___CATEGORICAL___sex": [27, 28], "2___NUMERIC___bmi_00": [29, 30, 31, 32, 33], "2___NUMERIC___bmi_01": [34, 35, 36, 37, 38, 39, 40, 41, 42, 43], "2___NUMERIC___bmi_02": [44], "2___NUMERIC___bmi_03": [45, 46, 47, 48, 49, 50, 51, 52, 53, 54], "2___NUMERIC___bmi_04": [55, 56, 57, 58, 59, 60, 61, 62, 63, 64], "2___NUMERIC___bmi_05": [65, 66], "3___NUMERIC___children_00": [67, 68, 69, 70, 71, 72], "4___CATEGORICAL___smoker": [73, 74], "5___CATEGORICAL___region": [75, 76, 77, 78], "6___NUMERIC___charges_00": [79, 80, 81, 82, 83, 84, 85], "6___NUMERIC___charges_01": [86, 87, 88, 89, 90, 91, 92, 93, 94, 95], "6___NUMERIC___charges_02": [96, 97, 98, 99, 100, 101, 102, 103, 104, 105], "6___NUMERIC___charges_03": [106, 107, 108, 109, 110, 111, 112, 113, 114, 115], "6___NUMERIC___charges_04": [116, 117, 118, 119, 120, 121, 122, 123, 124, 125], "6___NUMERIC___charges_05": [126], "6___NUMERIC___charges_06": [127, 128, 129, 130, 131, 132, 133, 134, 135, 136], "6___NUMERIC___charges_07": [137, 138, 139, 140, 141, 142, 143, 144, 145, 146], "6___NUMERIC___charges_08": [147, 148, 149, 150, 151, 152, 153, 154, 155, 156], "6___NUMERIC___charges_09": [157, 158, 159, 160, 161, 162, 163, 164, 165, 166]}}, "tabular_max_length": 24, "relational_max_length": null, "tabular_col_size": 2217, "relational_col_size": null, "col_transform_data": {"age": {"max_len": 10, "numeric_precision": 4, "mx_sig": -1, "zfill": 2, "numeric_nparts": 1}, "bmi": {"max_len": 10, "numeric_precision": 4, "mx_sig": 2, "ljust": 6, "numeric_nparts": 1}, "children": {"max_len": 10, "numeric_precision": 4, "mx_sig": -1, "zfill": 1, "numeric_nparts": 1}, "charges": {"max_len": 10, "numeric_precision": 4, "mx_sig": 5, "ljust": 10, "numeric_nparts": 1}}, "in_col_transform_data": null, "col_idx_ids": {"0": [11, 12, 13, 14, 15, 16], "1": [17, 18, 19, 20, 21, 22, 23, 24, 25, 26], "2": [27, 28], "3": [29, 30, 31, 32, 33], "4": [34, 35, 36, 37, 38, 39, 40, 41, 42, 43], "5": [44], "6": [45, 46, 47, 48, 49, 50, 51, 52, 53, 54], "7": [55, 56, 57, 58, 59, 60, 61, 62, 63, 64], "8": [65, 66], "9": [67, 68, 69, 70, 71, 72], "10": [73, 74], "11": [75, 76, 77, 78], "12": [79, 80, 81, 82, 83, 84, 85], "13": [86, 87, 88, 89, 90, 91, 92, 93, 94, 95], "14": [96, 97, 98, 99, 100, 101, 102, 103, 104, 105], "15": [106, 107, 108, 109, 110, 111, 112, 113, 114, 115], "16": [116, 117, 118, 119, 120, 121, 122, 123, 124, 125], "17": [126], "18": [127, 128, 129, 130, 131, 132, 133, 134, 135, 136], "19": [137, 138, 139, 140, 141, 142, 143, 144, 145, 146], "20": [147, 148, 149, 150, 151, 152, 153, 154, 155, 156], "21": [157, 158, 159, 160, 161, 162, 163, 164, 165, 166]}, "random_state": 1029, "numeric_nparts": 1, "numeric_precision": 4, "numeric_max_len": 10, "experiment_id": "id000017779187550240378880", "trainer_state": null, "target_col": null, "realtabformer_version": "0.2.4"} \ No newline at end of file diff --git a/hyperparameter/m4/realtabformer/rtf-m4-20260505_021804/models_10epochs/id000017779187550240378880/rtf_model.pt b/hyperparameter/m4/realtabformer/rtf-m4-20260505_021804/models_10epochs/id000017779187550240378880/rtf_model.pt new file mode 100644 index 0000000000000000000000000000000000000000..adbc2f390ff5af0250cab0ff9f019a738d89ae2c --- /dev/null +++ b/hyperparameter/m4/realtabformer/rtf-m4-20260505_021804/models_10epochs/id000017779187550240378880/rtf_model.pt @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:ccec67998e846b4b34fa0d1ec8b1427c896ff90d2b662c867838de959c183c73 +size 173802979 diff --git a/hyperparameter/m4/realtabformer/rtf-m4-20260505_021804/public_gate/normalized_schema_snapshot.json b/hyperparameter/m4/realtabformer/rtf-m4-20260505_021804/public_gate/normalized_schema_snapshot.json new file mode 100644 index 0000000000000000000000000000000000000000..31ed9818686b11907df75e872e4ffbe010330880 --- /dev/null +++ b/hyperparameter/m4/realtabformer/rtf-m4-20260505_021804/public_gate/normalized_schema_snapshot.json @@ -0,0 +1,147 @@ +{ + "dataset_id": "m4", + "target_column": "charges", + "task_type": "regression", + "columns": [ + { + "name": "age", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 47, + "unique_ratio": 0.0212, + "example_values": [ + "46", + "38", + "19", + "27", + "26" + ] + } + }, + { + "name": "sex", + "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.000902, + "example_values": [ + "female", + "male" + ] + } + }, + { + "name": "bmi", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 538, + "unique_ratio": 0.24267, + "example_values": [ + "23.655", + "19.3", + "30.59", + "32.67", + "29.45" + ] + } + }, + { + "name": "children", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 6, + "unique_ratio": 0.002706, + "example_values": [ + "1", + "0", + "3", + "2", + "5" + ] + } + }, + { + "name": "smoker", + "role": "feature", + "semantic_type": "boolean", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 2, + "unique_ratio": 0.000902, + "example_values": [ + "yes", + "no" + ] + } + }, + { + "name": "region", + "role": "feature", + "semantic_type": "categorical", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 4, + "unique_ratio": 0.001804, + "example_values": [ + "northwest", + "southwest", + "southeast", + "northeast" + ] + } + }, + { + "name": "charges", + "role": "target", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 1281, + "unique_ratio": 0.577808, + "example_values": [ + "21677.28345", + "15820.699", + "1639.5631", + "2497.0383", + "2897.3235" + ] + } + } + ] +} \ No newline at end of file diff --git a/hyperparameter/m4/realtabformer/rtf-m4-20260505_021804/public_gate/public_gate_report.json b/hyperparameter/m4/realtabformer/rtf-m4-20260505_021804/public_gate/public_gate_report.json new file mode 100644 index 0000000000000000000000000000000000000000..e7a25408e2574124629ea9437356551e4d6f4790 --- /dev/null +++ b/hyperparameter/m4/realtabformer/rtf-m4-20260505_021804/public_gate/public_gate_report.json @@ -0,0 +1,37 @@ +{ + "dataset_id": "m4", + "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": "charges", + "task_type": "regression", + "input_splits": { + "train": "/data/jialinzhang/SynthesizePipeline-server/DatasetNew/m4/m4-train.csv", + "val": "/data/jialinzhang/SynthesizePipeline-server/DatasetNew/m4/m4-val.csv", + "test": "/data/jialinzhang/SynthesizePipeline-server/DatasetNew/m4/m4-test.csv" + } +} \ No newline at end of file diff --git a/hyperparameter/m4/realtabformer/rtf-m4-20260505_021804/public_gate/staged_input_manifest.json b/hyperparameter/m4/realtabformer/rtf-m4-20260505_021804/public_gate/staged_input_manifest.json new file mode 100644 index 0000000000000000000000000000000000000000..3fbf138d04fa5e7cae8812fc85843d894dc6a84e --- /dev/null +++ b/hyperparameter/m4/realtabformer/rtf-m4-20260505_021804/public_gate/staged_input_manifest.json @@ -0,0 +1,152 @@ +{ + "dataset_id": "m4", + "target_column": "charges", + "task_type": "regression", + "train_csv": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/m4/realtabformer/rtf-m4-20260505_021804/staged/public/train.csv", + "val_csv": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/m4/realtabformer/rtf-m4-20260505_021804/staged/public/val.csv", + "test_csv": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/m4/realtabformer/rtf-m4-20260505_021804/staged/public/test.csv", + "features_json": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/m4/realtabformer/rtf-m4-20260505_021804/staged/public/staged_features.json", + "public_gate_report": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/m4/realtabformer/rtf-m4-20260505_021804/public_gate/public_gate_report.json", + "column_schema": [ + { + "name": "age", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 47, + "unique_ratio": 0.0212, + "example_values": [ + "46", + "38", + "19", + "27", + "26" + ] + } + }, + { + "name": "sex", + "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.000902, + "example_values": [ + "female", + "male" + ] + } + }, + { + "name": "bmi", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 538, + "unique_ratio": 0.24267, + "example_values": [ + "23.655", + "19.3", + "30.59", + "32.67", + "29.45" + ] + } + }, + { + "name": "children", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 6, + "unique_ratio": 0.002706, + "example_values": [ + "1", + "0", + "3", + "2", + "5" + ] + } + }, + { + "name": "smoker", + "role": "feature", + "semantic_type": "boolean", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 2, + "unique_ratio": 0.000902, + "example_values": [ + "yes", + "no" + ] + } + }, + { + "name": "region", + "role": "feature", + "semantic_type": "categorical", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 4, + "unique_ratio": 0.001804, + "example_values": [ + "northwest", + "southwest", + "southeast", + "northeast" + ] + } + }, + { + "name": "charges", + "role": "target", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 1281, + "unique_ratio": 0.577808, + "example_values": [ + "21677.28345", + "15820.699", + "1639.5631", + "2497.0383", + "2897.3235" + ] + } + } + ] +} \ No newline at end of file diff --git a/hyperparameter/m4/realtabformer/rtf-m4-20260505_021804/realtabformer_features.json b/hyperparameter/m4/realtabformer/rtf-m4-20260505_021804/realtabformer_features.json new file mode 100644 index 0000000000000000000000000000000000000000..d6acd098c35111f423f3ffff2cfd1754bc5dfebc --- /dev/null +++ b/hyperparameter/m4/realtabformer/rtf-m4-20260505_021804/realtabformer_features.json @@ -0,0 +1,37 @@ +[ + { + "feature_name": "age", + "data_type": "continuous", + "is_target": false + }, + { + "feature_name": "sex", + "data_type": "categorical", + "is_target": false + }, + { + "feature_name": "bmi", + "data_type": "continuous", + "is_target": false + }, + { + "feature_name": "children", + "data_type": "continuous", + "is_target": false + }, + { + "feature_name": "smoker", + "data_type": "binary", + "is_target": false + }, + { + "feature_name": "region", + "data_type": "categorical", + "is_target": false + }, + { + "feature_name": "charges", + "data_type": "continuous", + "is_target": true + } +] \ No newline at end of file diff --git a/hyperparameter/m4/realtabformer/rtf-m4-20260505_021804/rtf-m4-2217-20260505_021918.csv b/hyperparameter/m4/realtabformer/rtf-m4-20260505_021804/rtf-m4-2217-20260505_021918.csv new file mode 100644 index 0000000000000000000000000000000000000000..8177b097235b9eae8582f46acd6fb9c931e15475 --- /dev/null +++ b/hyperparameter/m4/realtabformer/rtf-m4-20260505_021804/rtf-m4-2217-20260505_021918.csv @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:69a14b3fc27a19359397659712fb3eb7442c46927dd10d3402601b6888591477 +size 89003 diff --git a/hyperparameter/m4/realtabformer/rtf-m4-20260505_021804/rtf_checkpoints/checkpoint-490/config.json b/hyperparameter/m4/realtabformer/rtf-m4-20260505_021804/rtf_checkpoints/checkpoint-490/config.json new file mode 100644 index 0000000000000000000000000000000000000000..69b1961f0cbafdc846150e71a2d82b4ce3beb94c --- /dev/null +++ b/hyperparameter/m4/realtabformer/rtf-m4-20260505_021804/rtf_checkpoints/checkpoint-490/config.json @@ -0,0 +1,34 @@ +{ + "activation_function": "gelu_new", + "add_cross_attention": false, + "architectures": [ + "GPT2LMHeadModel" + ], + "attn_pdrop": 0.1, + "bos_token_id": 5, + "dtype": "float32", + "embd_pdrop": 0.1, + "eos_token_id": 6, + "initializer_range": 0.02, + "layer_norm_epsilon": 1e-05, + "model_type": "gpt2", + "n_embd": 768, + "n_head": 12, + "n_inner": null, + "n_layer": 6, + "n_positions": 1024, + "pad_token_id": null, + "reorder_and_upcast_attn": false, + "resid_pdrop": 0.1, + "scale_attn_by_inverse_layer_idx": false, + "scale_attn_weights": true, + "summary_activation": null, + "summary_first_dropout": 0.1, + "summary_proj_to_labels": true, + "summary_type": "cls_index", + "summary_use_proj": true, + "tie_word_embeddings": true, + "transformers_version": "5.5.3", + "use_cache": false, + "vocab_size": 167 +} diff --git a/hyperparameter/m4/realtabformer/rtf-m4-20260505_021804/rtf_checkpoints/checkpoint-490/generation_config.json b/hyperparameter/m4/realtabformer/rtf-m4-20260505_021804/rtf_checkpoints/checkpoint-490/generation_config.json new file mode 100644 index 0000000000000000000000000000000000000000..ffe89567780e75b5c22eade9be971483b9618f39 --- /dev/null +++ b/hyperparameter/m4/realtabformer/rtf-m4-20260505_021804/rtf_checkpoints/checkpoint-490/generation_config.json @@ -0,0 +1,9 @@ +{ + "_from_model_config": true, + "bos_token_id": 5, + "eos_token_id": 6, + "output_attentions": false, + "output_hidden_states": false, + "transformers_version": "5.5.3", + "use_cache": true +} diff --git a/hyperparameter/m4/realtabformer/rtf-m4-20260505_021804/rtf_checkpoints/checkpoint-490/model.safetensors b/hyperparameter/m4/realtabformer/rtf-m4-20260505_021804/rtf_checkpoints/checkpoint-490/model.safetensors new file mode 100644 index 0000000000000000000000000000000000000000..fe0d101d0a986c37f7f5e524ce752b24721d8bee --- /dev/null +++ b/hyperparameter/m4/realtabformer/rtf-m4-20260505_021804/rtf_checkpoints/checkpoint-490/model.safetensors @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:3af832cd22f78ee50544f4f9daa0f52936bcc3350894992a5ba2b1939ed2ebf0 +size 173781448 diff --git a/hyperparameter/m4/realtabformer/rtf-m4-20260505_021804/rtf_checkpoints/checkpoint-490/optimizer.pt b/hyperparameter/m4/realtabformer/rtf-m4-20260505_021804/rtf_checkpoints/checkpoint-490/optimizer.pt new file mode 100644 index 0000000000000000000000000000000000000000..b8fd5c7d52c5af1857e017f51560e4b1f3465c64 --- /dev/null +++ b/hyperparameter/m4/realtabformer/rtf-m4-20260505_021804/rtf_checkpoints/checkpoint-490/optimizer.pt @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:5eb5fbe3941664f64a49b277583d54e1f2b8307e04f16bff7ce0774cea48642b +size 347611979 diff --git a/hyperparameter/m4/realtabformer/rtf-m4-20260505_021804/rtf_checkpoints/checkpoint-490/rng_state.pth b/hyperparameter/m4/realtabformer/rtf-m4-20260505_021804/rtf_checkpoints/checkpoint-490/rng_state.pth new file mode 100644 index 0000000000000000000000000000000000000000..ca4ff69126286eadc0d2aa374e66581d0e72a603 --- /dev/null +++ b/hyperparameter/m4/realtabformer/rtf-m4-20260505_021804/rtf_checkpoints/checkpoint-490/rng_state.pth @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:6fa1c8e310b0bb4e5fed9b867ba2f564b5d2dd017698f56bcab4571d46ed675b +size 14645 diff --git a/hyperparameter/m4/realtabformer/rtf-m4-20260505_021804/rtf_checkpoints/checkpoint-490/scaler.pt b/hyperparameter/m4/realtabformer/rtf-m4-20260505_021804/rtf_checkpoints/checkpoint-490/scaler.pt new file mode 100644 index 0000000000000000000000000000000000000000..2e782354e6c3d881898e083e06756130f684f374 --- /dev/null +++ b/hyperparameter/m4/realtabformer/rtf-m4-20260505_021804/rtf_checkpoints/checkpoint-490/scaler.pt @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:f1992ea3bf098e43650cdec4c9702d09710b1b566a09c123b480dba8f6266dd0 +size 1383 diff --git a/hyperparameter/m4/realtabformer/rtf-m4-20260505_021804/rtf_checkpoints/checkpoint-490/scheduler.pt b/hyperparameter/m4/realtabformer/rtf-m4-20260505_021804/rtf_checkpoints/checkpoint-490/scheduler.pt new file mode 100644 index 0000000000000000000000000000000000000000..820181ec090ada4a2062b55fc6f8a3a3ca11dc47 --- /dev/null +++ b/hyperparameter/m4/realtabformer/rtf-m4-20260505_021804/rtf_checkpoints/checkpoint-490/scheduler.pt @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:f7f253c17f738e85d06bc7f6e82e5f5157ea46a797c593ec5f2312ff9679e84f +size 1465 diff --git a/hyperparameter/m4/realtabformer/rtf-m4-20260505_021804/rtf_checkpoints/checkpoint-490/trainer_state.json b/hyperparameter/m4/realtabformer/rtf-m4-20260505_021804/rtf_checkpoints/checkpoint-490/trainer_state.json new file mode 100644 index 0000000000000000000000000000000000000000..aa09fd4588b5e0f8d29a01335fca763a9212a8cb --- /dev/null +++ b/hyperparameter/m4/realtabformer/rtf-m4-20260505_021804/rtf_checkpoints/checkpoint-490/trainer_state.json @@ -0,0 +1,62 @@ +{ + "best_global_step": null, + "best_metric": null, + "best_model_checkpoint": null, + "epoch": 7.0, + "eval_steps": 100, + "global_step": 490, + "is_hyper_param_search": false, + "is_local_process_zero": true, + "is_world_process_zero": true, + "log_history": [ + { + "epoch": 1.4316546762589928, + "grad_norm": 0.35994014143943787, + "learning_rate": 4.292857142857143e-05, + "loss": 1.9822434997558593, + "step": 100 + }, + { + "epoch": 2.8633093525179856, + "grad_norm": 0.34749945998191833, + "learning_rate": 3.5785714285714286e-05, + "loss": 1.4072773742675782, + "step": 200 + }, + { + "epoch": 4.287769784172662, + "grad_norm": 0.3795030415058136, + "learning_rate": 2.8642857142857144e-05, + "loss": 1.3483210754394532, + "step": 300 + }, + { + "epoch": 5.719424460431655, + "grad_norm": 0.3804047405719757, + "learning_rate": 2.15e-05, + "loss": 1.3129843139648438, + "step": 400 + } + ], + "logging_steps": 100, + "max_steps": 700, + "num_input_tokens_seen": 0, + "num_train_epochs": 10, + "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": 95040568885248.0, + "train_batch_size": 8, + "trial_name": null, + "trial_params": null +} diff --git a/hyperparameter/m4/realtabformer/rtf-m4-20260505_021804/rtf_checkpoints/checkpoint-490/training_args.bin b/hyperparameter/m4/realtabformer/rtf-m4-20260505_021804/rtf_checkpoints/checkpoint-490/training_args.bin new file mode 100644 index 0000000000000000000000000000000000000000..95761c9b711780eb4f42f7be348858e3a996db4c --- /dev/null +++ b/hyperparameter/m4/realtabformer/rtf-m4-20260505_021804/rtf_checkpoints/checkpoint-490/training_args.bin @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:9fd0ce7594132050805cad78976d67a632518b52037b36e6ef2977b2ee2740a7 +size 5201 diff --git a/hyperparameter/m4/realtabformer/rtf-m4-20260505_021804/rtf_checkpoints/checkpoint-500/config.json b/hyperparameter/m4/realtabformer/rtf-m4-20260505_021804/rtf_checkpoints/checkpoint-500/config.json new file mode 100644 index 0000000000000000000000000000000000000000..69b1961f0cbafdc846150e71a2d82b4ce3beb94c --- /dev/null +++ b/hyperparameter/m4/realtabformer/rtf-m4-20260505_021804/rtf_checkpoints/checkpoint-500/config.json @@ -0,0 +1,34 @@ +{ + "activation_function": "gelu_new", + "add_cross_attention": false, + "architectures": [ + "GPT2LMHeadModel" + ], + "attn_pdrop": 0.1, + "bos_token_id": 5, + "dtype": "float32", + "embd_pdrop": 0.1, + "eos_token_id": 6, + "initializer_range": 0.02, + "layer_norm_epsilon": 1e-05, + "model_type": "gpt2", + "n_embd": 768, + "n_head": 12, + "n_inner": null, + "n_layer": 6, + "n_positions": 1024, + "pad_token_id": null, + "reorder_and_upcast_attn": false, + "resid_pdrop": 0.1, + "scale_attn_by_inverse_layer_idx": false, + "scale_attn_weights": true, + "summary_activation": null, + "summary_first_dropout": 0.1, + "summary_proj_to_labels": true, + "summary_type": "cls_index", + "summary_use_proj": true, + "tie_word_embeddings": true, + "transformers_version": "5.5.3", + "use_cache": false, + "vocab_size": 167 +} diff --git a/hyperparameter/m4/realtabformer/rtf-m4-20260505_021804/rtf_checkpoints/checkpoint-500/generation_config.json b/hyperparameter/m4/realtabformer/rtf-m4-20260505_021804/rtf_checkpoints/checkpoint-500/generation_config.json new file mode 100644 index 0000000000000000000000000000000000000000..ffe89567780e75b5c22eade9be971483b9618f39 --- /dev/null +++ b/hyperparameter/m4/realtabformer/rtf-m4-20260505_021804/rtf_checkpoints/checkpoint-500/generation_config.json @@ -0,0 +1,9 @@ +{ + "_from_model_config": true, + "bos_token_id": 5, + "eos_token_id": 6, + "output_attentions": false, + "output_hidden_states": false, + "transformers_version": "5.5.3", + "use_cache": true +} diff --git a/hyperparameter/m4/realtabformer/rtf-m4-20260505_021804/rtf_checkpoints/checkpoint-500/model.safetensors b/hyperparameter/m4/realtabformer/rtf-m4-20260505_021804/rtf_checkpoints/checkpoint-500/model.safetensors new file mode 100644 index 0000000000000000000000000000000000000000..0724e972244733b1fc27fbfdff90d671fcce09f9 --- /dev/null +++ b/hyperparameter/m4/realtabformer/rtf-m4-20260505_021804/rtf_checkpoints/checkpoint-500/model.safetensors @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:4a90ed41749b98802e99e5e0e335f8b12caa4aa675d6158e24e7ce348504c3c5 +size 173781448 diff --git a/hyperparameter/m4/realtabformer/rtf-m4-20260505_021804/rtf_checkpoints/checkpoint-500/optimizer.pt b/hyperparameter/m4/realtabformer/rtf-m4-20260505_021804/rtf_checkpoints/checkpoint-500/optimizer.pt new file mode 100644 index 0000000000000000000000000000000000000000..02d915d2a24536d3b49a21f3433142a899f53dee --- /dev/null +++ b/hyperparameter/m4/realtabformer/rtf-m4-20260505_021804/rtf_checkpoints/checkpoint-500/optimizer.pt @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:031e5ca4454e65ab63a92060bcc299f2cc33fd686be80e49546e11ee2d6494b4 +size 347611979 diff --git a/hyperparameter/m4/realtabformer/rtf-m4-20260505_021804/rtf_checkpoints/checkpoint-500/rng_state.pth b/hyperparameter/m4/realtabformer/rtf-m4-20260505_021804/rtf_checkpoints/checkpoint-500/rng_state.pth new file mode 100644 index 0000000000000000000000000000000000000000..5c504708ff6d80a89e455ef951687501b06eb7e0 --- /dev/null +++ b/hyperparameter/m4/realtabformer/rtf-m4-20260505_021804/rtf_checkpoints/checkpoint-500/rng_state.pth @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:1a223e5c17b480b3b06544a4d908429c6bf1d7de396aa43da54baf772b5d1b32 +size 14645 diff --git a/hyperparameter/m4/realtabformer/rtf-m4-20260505_021804/rtf_checkpoints/checkpoint-500/scaler.pt b/hyperparameter/m4/realtabformer/rtf-m4-20260505_021804/rtf_checkpoints/checkpoint-500/scaler.pt new file mode 100644 index 0000000000000000000000000000000000000000..86c857e8514e5db52a765434b135695dac4c9c36 --- /dev/null +++ b/hyperparameter/m4/realtabformer/rtf-m4-20260505_021804/rtf_checkpoints/checkpoint-500/scaler.pt @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:f77569c2e850b04af982cc8c1389f1430851448915c593b69e5da36ce05b71d7 +size 1383 diff --git a/hyperparameter/m4/realtabformer/rtf-m4-20260505_021804/rtf_checkpoints/checkpoint-500/scheduler.pt b/hyperparameter/m4/realtabformer/rtf-m4-20260505_021804/rtf_checkpoints/checkpoint-500/scheduler.pt new file mode 100644 index 0000000000000000000000000000000000000000..3fdd8395a626cdd9680ab3edb6ce8c32fcd0c438 --- /dev/null +++ b/hyperparameter/m4/realtabformer/rtf-m4-20260505_021804/rtf_checkpoints/checkpoint-500/scheduler.pt @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:09e813d352e8b2f56007bd3fb20e074d621ed50c4d401c8e59182251db0123da +size 1465 diff --git a/hyperparameter/m4/realtabformer/rtf-m4-20260505_021804/rtf_checkpoints/checkpoint-500/trainer_state.json b/hyperparameter/m4/realtabformer/rtf-m4-20260505_021804/rtf_checkpoints/checkpoint-500/trainer_state.json new file mode 100644 index 0000000000000000000000000000000000000000..5ad4c638f6a50424f8559a864b1cdf11817ab0b3 --- /dev/null +++ b/hyperparameter/m4/realtabformer/rtf-m4-20260505_021804/rtf_checkpoints/checkpoint-500/trainer_state.json @@ -0,0 +1,69 @@ +{ + "best_global_step": null, + "best_metric": null, + "best_model_checkpoint": null, + "epoch": 7.143884892086331, + "eval_steps": 100, + "global_step": 500, + "is_hyper_param_search": false, + "is_local_process_zero": true, + "is_world_process_zero": true, + "log_history": [ + { + "epoch": 1.4316546762589928, + "grad_norm": 0.35994014143943787, + "learning_rate": 4.292857142857143e-05, + "loss": 1.9822434997558593, + "step": 100 + }, + { + "epoch": 2.8633093525179856, + "grad_norm": 0.34749945998191833, + "learning_rate": 3.5785714285714286e-05, + "loss": 1.4072773742675782, + "step": 200 + }, + { + "epoch": 4.287769784172662, + "grad_norm": 0.3795030415058136, + "learning_rate": 2.8642857142857144e-05, + "loss": 1.3483210754394532, + "step": 300 + }, + { + "epoch": 5.719424460431655, + "grad_norm": 0.3804047405719757, + "learning_rate": 2.15e-05, + "loss": 1.3129843139648438, + "step": 400 + }, + { + "epoch": 7.143884892086331, + "grad_norm": 0.40514329075813293, + "learning_rate": 1.4357142857142858e-05, + "loss": 1.2855487060546875, + "step": 500 + } + ], + "logging_steps": 100, + "max_steps": 700, + "num_input_tokens_seen": 0, + "num_train_epochs": 10, + "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": 97000294514688.0, + "train_batch_size": 8, + "trial_name": null, + "trial_params": null +} diff --git a/hyperparameter/m4/realtabformer/rtf-m4-20260505_021804/rtf_checkpoints/checkpoint-500/training_args.bin b/hyperparameter/m4/realtabformer/rtf-m4-20260505_021804/rtf_checkpoints/checkpoint-500/training_args.bin new file mode 100644 index 0000000000000000000000000000000000000000..95761c9b711780eb4f42f7be348858e3a996db4c --- /dev/null +++ b/hyperparameter/m4/realtabformer/rtf-m4-20260505_021804/rtf_checkpoints/checkpoint-500/training_args.bin @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:9fd0ce7594132050805cad78976d67a632518b52037b36e6ef2977b2ee2740a7 +size 5201 diff --git a/hyperparameter/m4/realtabformer/rtf-m4-20260505_021804/rtf_checkpoints/checkpoint-560/config.json b/hyperparameter/m4/realtabformer/rtf-m4-20260505_021804/rtf_checkpoints/checkpoint-560/config.json new file mode 100644 index 0000000000000000000000000000000000000000..69b1961f0cbafdc846150e71a2d82b4ce3beb94c --- /dev/null +++ b/hyperparameter/m4/realtabformer/rtf-m4-20260505_021804/rtf_checkpoints/checkpoint-560/config.json @@ -0,0 +1,34 @@ +{ + "activation_function": "gelu_new", + "add_cross_attention": false, + "architectures": [ + "GPT2LMHeadModel" + ], + "attn_pdrop": 0.1, + "bos_token_id": 5, + "dtype": "float32", + "embd_pdrop": 0.1, + "eos_token_id": 6, + "initializer_range": 0.02, + "layer_norm_epsilon": 1e-05, + "model_type": "gpt2", + "n_embd": 768, + "n_head": 12, + "n_inner": null, + "n_layer": 6, + "n_positions": 1024, + "pad_token_id": null, + "reorder_and_upcast_attn": false, + "resid_pdrop": 0.1, + "scale_attn_by_inverse_layer_idx": false, + "scale_attn_weights": true, + "summary_activation": null, + "summary_first_dropout": 0.1, + "summary_proj_to_labels": true, + "summary_type": "cls_index", + "summary_use_proj": true, + "tie_word_embeddings": true, + "transformers_version": "5.5.3", + "use_cache": false, + "vocab_size": 167 +} diff --git a/hyperparameter/m4/realtabformer/rtf-m4-20260505_021804/rtf_checkpoints/checkpoint-560/generation_config.json b/hyperparameter/m4/realtabformer/rtf-m4-20260505_021804/rtf_checkpoints/checkpoint-560/generation_config.json new file mode 100644 index 0000000000000000000000000000000000000000..ffe89567780e75b5c22eade9be971483b9618f39 --- /dev/null +++ b/hyperparameter/m4/realtabformer/rtf-m4-20260505_021804/rtf_checkpoints/checkpoint-560/generation_config.json @@ -0,0 +1,9 @@ +{ + "_from_model_config": true, + "bos_token_id": 5, + "eos_token_id": 6, + "output_attentions": false, + "output_hidden_states": false, + "transformers_version": "5.5.3", + "use_cache": true +} diff --git a/hyperparameter/m4/realtabformer/rtf-m4-20260505_021804/rtf_checkpoints/checkpoint-560/model.safetensors b/hyperparameter/m4/realtabformer/rtf-m4-20260505_021804/rtf_checkpoints/checkpoint-560/model.safetensors new file mode 100644 index 0000000000000000000000000000000000000000..84ad54360f7ab91647f6f44d0a08b1861c15a46a --- /dev/null +++ b/hyperparameter/m4/realtabformer/rtf-m4-20260505_021804/rtf_checkpoints/checkpoint-560/model.safetensors @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:b0125c0b6dbcbdf46a440bf169e01eb39ec976661aa44026a0f239fef7a2204e +size 173781448 diff --git a/hyperparameter/m4/realtabformer/rtf-m4-20260505_021804/rtf_checkpoints/checkpoint-560/optimizer.pt b/hyperparameter/m4/realtabformer/rtf-m4-20260505_021804/rtf_checkpoints/checkpoint-560/optimizer.pt new file mode 100644 index 0000000000000000000000000000000000000000..bdd437e470761a6b9c960c9b3200c78198d1b012 --- /dev/null +++ b/hyperparameter/m4/realtabformer/rtf-m4-20260505_021804/rtf_checkpoints/checkpoint-560/optimizer.pt @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:2466be77ae1adf78440f02f6ea53c598fafcff0aa07f909aa1fc6d19d3608666 +size 347611979 diff --git a/hyperparameter/m4/realtabformer/rtf-m4-20260505_021804/rtf_checkpoints/checkpoint-560/rng_state.pth b/hyperparameter/m4/realtabformer/rtf-m4-20260505_021804/rtf_checkpoints/checkpoint-560/rng_state.pth new file mode 100644 index 0000000000000000000000000000000000000000..d91d91a33bcff7cbe3324c9728357c74c7ddd47a --- /dev/null +++ b/hyperparameter/m4/realtabformer/rtf-m4-20260505_021804/rtf_checkpoints/checkpoint-560/rng_state.pth @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:711a4e22e8c105c2853f94f6a0f91501ae85e3aa97de70101211822382a73961 +size 14645 diff --git a/hyperparameter/m4/realtabformer/rtf-m4-20260505_021804/rtf_checkpoints/checkpoint-560/scaler.pt b/hyperparameter/m4/realtabformer/rtf-m4-20260505_021804/rtf_checkpoints/checkpoint-560/scaler.pt new file mode 100644 index 0000000000000000000000000000000000000000..2ce6519cb04077c03ce3d58c8d2c2a1d207ec63a --- /dev/null +++ b/hyperparameter/m4/realtabformer/rtf-m4-20260505_021804/rtf_checkpoints/checkpoint-560/scaler.pt @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:4bae45234d52bdd40f33dafb2712e283a3a37fa7841ac854a4a56a9edd34c6e7 +size 1383 diff --git a/hyperparameter/m4/realtabformer/rtf-m4-20260505_021804/rtf_checkpoints/checkpoint-560/scheduler.pt b/hyperparameter/m4/realtabformer/rtf-m4-20260505_021804/rtf_checkpoints/checkpoint-560/scheduler.pt new file mode 100644 index 0000000000000000000000000000000000000000..0f138708ca62dc20cd82eb7e237ef9654f40cf29 --- /dev/null +++ b/hyperparameter/m4/realtabformer/rtf-m4-20260505_021804/rtf_checkpoints/checkpoint-560/scheduler.pt @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:1e2777bcb6c766d27bce08910c325573ed9ef4b2a21a68ff6cfccdbac6d4a839 +size 1465 diff --git a/hyperparameter/m4/realtabformer/rtf-m4-20260505_021804/rtf_checkpoints/checkpoint-560/trainer_state.json b/hyperparameter/m4/realtabformer/rtf-m4-20260505_021804/rtf_checkpoints/checkpoint-560/trainer_state.json new file mode 100644 index 0000000000000000000000000000000000000000..4f03016c886be3759030d415ea8115d3356bc8a1 --- /dev/null +++ b/hyperparameter/m4/realtabformer/rtf-m4-20260505_021804/rtf_checkpoints/checkpoint-560/trainer_state.json @@ -0,0 +1,69 @@ +{ + "best_global_step": null, + "best_metric": null, + "best_model_checkpoint": null, + "epoch": 8.0, + "eval_steps": 100, + "global_step": 560, + "is_hyper_param_search": false, + "is_local_process_zero": true, + "is_world_process_zero": true, + "log_history": [ + { + "epoch": 1.4316546762589928, + "grad_norm": 0.35994014143943787, + "learning_rate": 4.292857142857143e-05, + "loss": 1.9822434997558593, + "step": 100 + }, + { + "epoch": 2.8633093525179856, + "grad_norm": 0.34749945998191833, + "learning_rate": 3.5785714285714286e-05, + "loss": 1.4072773742675782, + "step": 200 + }, + { + "epoch": 4.287769784172662, + "grad_norm": 0.3795030415058136, + "learning_rate": 2.8642857142857144e-05, + "loss": 1.3483210754394532, + "step": 300 + }, + { + "epoch": 5.719424460431655, + "grad_norm": 0.3804047405719757, + "learning_rate": 2.15e-05, + "loss": 1.3129843139648438, + "step": 400 + }, + { + "epoch": 7.143884892086331, + "grad_norm": 0.40514329075813293, + "learning_rate": 1.4357142857142858e-05, + "loss": 1.2855487060546875, + "step": 500 + } + ], + "logging_steps": 100, + "max_steps": 700, + "num_input_tokens_seen": 0, + "num_train_epochs": 10, + "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": 108617793011712.0, + "train_batch_size": 8, + "trial_name": null, + "trial_params": null +} diff --git a/hyperparameter/m4/realtabformer/rtf-m4-20260505_021804/rtf_checkpoints/checkpoint-560/training_args.bin b/hyperparameter/m4/realtabformer/rtf-m4-20260505_021804/rtf_checkpoints/checkpoint-560/training_args.bin new file mode 100644 index 0000000000000000000000000000000000000000..95761c9b711780eb4f42f7be348858e3a996db4c --- /dev/null +++ b/hyperparameter/m4/realtabformer/rtf-m4-20260505_021804/rtf_checkpoints/checkpoint-560/training_args.bin @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:9fd0ce7594132050805cad78976d67a632518b52037b36e6ef2977b2ee2740a7 +size 5201 diff --git a/hyperparameter/m4/realtabformer/rtf-m4-20260505_021804/rtf_checkpoints/checkpoint-600/config.json b/hyperparameter/m4/realtabformer/rtf-m4-20260505_021804/rtf_checkpoints/checkpoint-600/config.json new file mode 100644 index 0000000000000000000000000000000000000000..69b1961f0cbafdc846150e71a2d82b4ce3beb94c --- /dev/null +++ b/hyperparameter/m4/realtabformer/rtf-m4-20260505_021804/rtf_checkpoints/checkpoint-600/config.json @@ -0,0 +1,34 @@ +{ + "activation_function": "gelu_new", + "add_cross_attention": false, + "architectures": [ + "GPT2LMHeadModel" + ], + "attn_pdrop": 0.1, + "bos_token_id": 5, + "dtype": "float32", + "embd_pdrop": 0.1, + "eos_token_id": 6, + "initializer_range": 0.02, + "layer_norm_epsilon": 1e-05, + "model_type": "gpt2", + "n_embd": 768, + "n_head": 12, + "n_inner": null, + "n_layer": 6, + "n_positions": 1024, + "pad_token_id": null, + "reorder_and_upcast_attn": false, + "resid_pdrop": 0.1, + "scale_attn_by_inverse_layer_idx": false, + "scale_attn_weights": true, + "summary_activation": null, + "summary_first_dropout": 0.1, + "summary_proj_to_labels": true, + "summary_type": "cls_index", + "summary_use_proj": true, + "tie_word_embeddings": true, + "transformers_version": "5.5.3", + "use_cache": false, + "vocab_size": 167 +} diff --git a/hyperparameter/m4/realtabformer/rtf-m4-20260505_021804/rtf_checkpoints/checkpoint-600/generation_config.json b/hyperparameter/m4/realtabformer/rtf-m4-20260505_021804/rtf_checkpoints/checkpoint-600/generation_config.json new file mode 100644 index 0000000000000000000000000000000000000000..ffe89567780e75b5c22eade9be971483b9618f39 --- /dev/null +++ b/hyperparameter/m4/realtabformer/rtf-m4-20260505_021804/rtf_checkpoints/checkpoint-600/generation_config.json @@ -0,0 +1,9 @@ +{ + "_from_model_config": true, + "bos_token_id": 5, + "eos_token_id": 6, + "output_attentions": false, + "output_hidden_states": false, + "transformers_version": "5.5.3", + "use_cache": true +} diff --git a/hyperparameter/m4/realtabformer/rtf-m4-20260505_021804/rtf_checkpoints/checkpoint-600/model.safetensors b/hyperparameter/m4/realtabformer/rtf-m4-20260505_021804/rtf_checkpoints/checkpoint-600/model.safetensors new file mode 100644 index 0000000000000000000000000000000000000000..86db4cfc04487ffdbb3f681b9f60dfd1126f8140 --- /dev/null +++ b/hyperparameter/m4/realtabformer/rtf-m4-20260505_021804/rtf_checkpoints/checkpoint-600/model.safetensors @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:1a612376608acb69ec99482a6fe9314e28723c8cec3fe35c70359e7987b9199c +size 173781448 diff --git a/hyperparameter/m4/realtabformer/rtf-m4-20260505_021804/rtf_checkpoints/checkpoint-600/optimizer.pt b/hyperparameter/m4/realtabformer/rtf-m4-20260505_021804/rtf_checkpoints/checkpoint-600/optimizer.pt new file mode 100644 index 0000000000000000000000000000000000000000..335667fdd6068de2a1fe8eea4db4275dea291318 --- /dev/null +++ b/hyperparameter/m4/realtabformer/rtf-m4-20260505_021804/rtf_checkpoints/checkpoint-600/optimizer.pt @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:67275051736e6ef0cccb507df7675bfb5ce1293f19c82bf21772f9922c2e3acf +size 347611979 diff --git a/hyperparameter/m4/realtabformer/rtf-m4-20260505_021804/rtf_checkpoints/checkpoint-600/rng_state.pth b/hyperparameter/m4/realtabformer/rtf-m4-20260505_021804/rtf_checkpoints/checkpoint-600/rng_state.pth new file mode 100644 index 0000000000000000000000000000000000000000..a80c7c2acbb44b49d9fc757885463a0a1e9c2cc3 --- /dev/null +++ b/hyperparameter/m4/realtabformer/rtf-m4-20260505_021804/rtf_checkpoints/checkpoint-600/rng_state.pth @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:7506be7ca372d60382a3d26e455f5cd4e7b42a6e28eac185b8730a8df14f4f8d +size 14645 diff --git a/hyperparameter/m4/realtabformer/rtf-m4-20260505_021804/rtf_checkpoints/checkpoint-600/scaler.pt b/hyperparameter/m4/realtabformer/rtf-m4-20260505_021804/rtf_checkpoints/checkpoint-600/scaler.pt new file mode 100644 index 0000000000000000000000000000000000000000..5154a9cfd1277595e46351427d1764f0d17368e1 --- /dev/null +++ b/hyperparameter/m4/realtabformer/rtf-m4-20260505_021804/rtf_checkpoints/checkpoint-600/scaler.pt @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:cb7fde5111803012042c93a73aa191336bb6e10b3ad44f6bd1d94fc7008a22b6 +size 1383 diff --git a/hyperparameter/m4/realtabformer/rtf-m4-20260505_021804/rtf_checkpoints/checkpoint-600/scheduler.pt b/hyperparameter/m4/realtabformer/rtf-m4-20260505_021804/rtf_checkpoints/checkpoint-600/scheduler.pt new file mode 100644 index 0000000000000000000000000000000000000000..8e630c72c1f6c39f981e1048a506a2d7280e2330 --- /dev/null +++ b/hyperparameter/m4/realtabformer/rtf-m4-20260505_021804/rtf_checkpoints/checkpoint-600/scheduler.pt @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:464d9e31b9a059b1e9b316e50df3f5cc8fd9878eb71c58a30320e8973d80671e +size 1465 diff --git a/hyperparameter/m4/realtabformer/rtf-m4-20260505_021804/rtf_checkpoints/checkpoint-600/trainer_state.json b/hyperparameter/m4/realtabformer/rtf-m4-20260505_021804/rtf_checkpoints/checkpoint-600/trainer_state.json new file mode 100644 index 0000000000000000000000000000000000000000..54c209b938456813ff178b686c91986632f50ff2 --- /dev/null +++ b/hyperparameter/m4/realtabformer/rtf-m4-20260505_021804/rtf_checkpoints/checkpoint-600/trainer_state.json @@ -0,0 +1,76 @@ +{ + "best_global_step": null, + "best_metric": null, + "best_model_checkpoint": null, + "epoch": 8.575539568345324, + "eval_steps": 100, + "global_step": 600, + "is_hyper_param_search": false, + "is_local_process_zero": true, + "is_world_process_zero": true, + "log_history": [ + { + "epoch": 1.4316546762589928, + "grad_norm": 0.35994014143943787, + "learning_rate": 4.292857142857143e-05, + "loss": 1.9822434997558593, + "step": 100 + }, + { + "epoch": 2.8633093525179856, + "grad_norm": 0.34749945998191833, + "learning_rate": 3.5785714285714286e-05, + "loss": 1.4072773742675782, + "step": 200 + }, + { + "epoch": 4.287769784172662, + "grad_norm": 0.3795030415058136, + "learning_rate": 2.8642857142857144e-05, + "loss": 1.3483210754394532, + "step": 300 + }, + { + "epoch": 5.719424460431655, + "grad_norm": 0.3804047405719757, + "learning_rate": 2.15e-05, + "loss": 1.3129843139648438, + "step": 400 + }, + { + "epoch": 7.143884892086331, + "grad_norm": 0.40514329075813293, + "learning_rate": 1.4357142857142858e-05, + "loss": 1.2855487060546875, + "step": 500 + }, + { + "epoch": 8.575539568345324, + "grad_norm": 0.41319629549980164, + "learning_rate": 7.214285714285715e-06, + "loss": 1.2580926513671875, + "step": 600 + } + ], + "logging_steps": 100, + "max_steps": 700, + "num_input_tokens_seen": 0, + "num_train_epochs": 10, + "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": 116456695529472.0, + "train_batch_size": 8, + "trial_name": null, + "trial_params": null +} diff --git a/hyperparameter/m4/realtabformer/rtf-m4-20260505_021804/rtf_checkpoints/checkpoint-600/training_args.bin b/hyperparameter/m4/realtabformer/rtf-m4-20260505_021804/rtf_checkpoints/checkpoint-600/training_args.bin new file mode 100644 index 0000000000000000000000000000000000000000..95761c9b711780eb4f42f7be348858e3a996db4c --- /dev/null +++ b/hyperparameter/m4/realtabformer/rtf-m4-20260505_021804/rtf_checkpoints/checkpoint-600/training_args.bin @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:9fd0ce7594132050805cad78976d67a632518b52037b36e6ef2977b2ee2740a7 +size 5201 diff --git a/hyperparameter/m4/realtabformer/rtf-m4-20260505_021804/rtf_checkpoints/checkpoint-630/config.json b/hyperparameter/m4/realtabformer/rtf-m4-20260505_021804/rtf_checkpoints/checkpoint-630/config.json new file mode 100644 index 0000000000000000000000000000000000000000..69b1961f0cbafdc846150e71a2d82b4ce3beb94c --- /dev/null +++ b/hyperparameter/m4/realtabformer/rtf-m4-20260505_021804/rtf_checkpoints/checkpoint-630/config.json @@ -0,0 +1,34 @@ +{ + "activation_function": "gelu_new", + "add_cross_attention": false, + "architectures": [ + "GPT2LMHeadModel" + ], + "attn_pdrop": 0.1, + "bos_token_id": 5, + "dtype": "float32", + "embd_pdrop": 0.1, + "eos_token_id": 6, + "initializer_range": 0.02, + "layer_norm_epsilon": 1e-05, + "model_type": "gpt2", + "n_embd": 768, + "n_head": 12, + "n_inner": null, + "n_layer": 6, + "n_positions": 1024, + "pad_token_id": null, + "reorder_and_upcast_attn": false, + "resid_pdrop": 0.1, + "scale_attn_by_inverse_layer_idx": false, + "scale_attn_weights": true, + "summary_activation": null, + "summary_first_dropout": 0.1, + "summary_proj_to_labels": true, + "summary_type": "cls_index", + "summary_use_proj": true, + "tie_word_embeddings": true, + "transformers_version": "5.5.3", + "use_cache": false, + "vocab_size": 167 +} diff --git a/hyperparameter/m4/realtabformer/rtf-m4-20260505_021804/rtf_checkpoints/checkpoint-630/generation_config.json b/hyperparameter/m4/realtabformer/rtf-m4-20260505_021804/rtf_checkpoints/checkpoint-630/generation_config.json new file mode 100644 index 0000000000000000000000000000000000000000..ffe89567780e75b5c22eade9be971483b9618f39 --- /dev/null +++ b/hyperparameter/m4/realtabformer/rtf-m4-20260505_021804/rtf_checkpoints/checkpoint-630/generation_config.json @@ -0,0 +1,9 @@ +{ + "_from_model_config": true, + "bos_token_id": 5, + "eos_token_id": 6, + "output_attentions": false, + "output_hidden_states": false, + "transformers_version": "5.5.3", + "use_cache": true +} diff --git a/hyperparameter/m4/realtabformer/rtf-m4-20260505_021804/rtf_checkpoints/checkpoint-630/model.safetensors b/hyperparameter/m4/realtabformer/rtf-m4-20260505_021804/rtf_checkpoints/checkpoint-630/model.safetensors new file mode 100644 index 0000000000000000000000000000000000000000..e4e35bfb1d05ae79ab11c6c0bef93d509ea8ac40 --- /dev/null +++ b/hyperparameter/m4/realtabformer/rtf-m4-20260505_021804/rtf_checkpoints/checkpoint-630/model.safetensors @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:73050ea3d2d19446d247a440db51ea878a0900ade0dd7c4ff9ffd3977e506e07 +size 173781448 diff --git a/hyperparameter/m4/realtabformer/rtf-m4-20260505_021804/rtf_checkpoints/checkpoint-630/optimizer.pt b/hyperparameter/m4/realtabformer/rtf-m4-20260505_021804/rtf_checkpoints/checkpoint-630/optimizer.pt new file mode 100644 index 0000000000000000000000000000000000000000..e23b12bf459cd7d1b9e87e8c3ec117c75a9af44d --- /dev/null +++ b/hyperparameter/m4/realtabformer/rtf-m4-20260505_021804/rtf_checkpoints/checkpoint-630/optimizer.pt @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:ba3e6f4318a951841383575dd9d6ead179b38f4e9d7b77ec16fb415e544a5b4d +size 347611979 diff --git a/hyperparameter/m4/realtabformer/rtf-m4-20260505_021804/rtf_checkpoints/checkpoint-630/rng_state.pth b/hyperparameter/m4/realtabformer/rtf-m4-20260505_021804/rtf_checkpoints/checkpoint-630/rng_state.pth new file mode 100644 index 0000000000000000000000000000000000000000..63490586e3c3b5103c52ecd931291c145af06652 --- /dev/null +++ b/hyperparameter/m4/realtabformer/rtf-m4-20260505_021804/rtf_checkpoints/checkpoint-630/rng_state.pth @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:83f9d69bddb79bef365f37acd637e9cd0689134edfb4d86e43f9bb31acbea626 +size 14645 diff --git a/hyperparameter/m4/realtabformer/rtf-m4-20260505_021804/rtf_checkpoints/checkpoint-630/scaler.pt b/hyperparameter/m4/realtabformer/rtf-m4-20260505_021804/rtf_checkpoints/checkpoint-630/scaler.pt new file mode 100644 index 0000000000000000000000000000000000000000..46617e5040b98a97ddc75ea500724fb46a641c4b --- /dev/null +++ b/hyperparameter/m4/realtabformer/rtf-m4-20260505_021804/rtf_checkpoints/checkpoint-630/scaler.pt @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:8b40356dc87f933072688e24d199ff6f594a63bfd128de071b6824c1e3453a79 +size 1383 diff --git a/hyperparameter/m4/realtabformer/rtf-m4-20260505_021804/rtf_checkpoints/checkpoint-630/scheduler.pt b/hyperparameter/m4/realtabformer/rtf-m4-20260505_021804/rtf_checkpoints/checkpoint-630/scheduler.pt new file mode 100644 index 0000000000000000000000000000000000000000..551fc1fa9c8399a291eba10cbc1a8786622c8519 --- /dev/null +++ b/hyperparameter/m4/realtabformer/rtf-m4-20260505_021804/rtf_checkpoints/checkpoint-630/scheduler.pt @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:e3c8b0a9b3be365fe962a2f261027aa7bb8a90ecdfd384074fda3bc97f0c5e95 +size 1465 diff --git a/hyperparameter/m4/realtabformer/rtf-m4-20260505_021804/rtf_checkpoints/checkpoint-630/trainer_state.json b/hyperparameter/m4/realtabformer/rtf-m4-20260505_021804/rtf_checkpoints/checkpoint-630/trainer_state.json new file mode 100644 index 0000000000000000000000000000000000000000..9b35abc3ba09495915faeda562b1fe1ecc671a83 --- /dev/null +++ b/hyperparameter/m4/realtabformer/rtf-m4-20260505_021804/rtf_checkpoints/checkpoint-630/trainer_state.json @@ -0,0 +1,76 @@ +{ + "best_global_step": null, + "best_metric": null, + "best_model_checkpoint": null, + "epoch": 9.0, + "eval_steps": 100, + "global_step": 630, + "is_hyper_param_search": false, + "is_local_process_zero": true, + "is_world_process_zero": true, + "log_history": [ + { + "epoch": 1.4316546762589928, + "grad_norm": 0.35994014143943787, + "learning_rate": 4.292857142857143e-05, + "loss": 1.9822434997558593, + "step": 100 + }, + { + "epoch": 2.8633093525179856, + "grad_norm": 0.34749945998191833, + "learning_rate": 3.5785714285714286e-05, + "loss": 1.4072773742675782, + "step": 200 + }, + { + "epoch": 4.287769784172662, + "grad_norm": 0.3795030415058136, + "learning_rate": 2.8642857142857144e-05, + "loss": 1.3483210754394532, + "step": 300 + }, + { + "epoch": 5.719424460431655, + "grad_norm": 0.3804047405719757, + "learning_rate": 2.15e-05, + "loss": 1.3129843139648438, + "step": 400 + }, + { + "epoch": 7.143884892086331, + "grad_norm": 0.40514329075813293, + "learning_rate": 1.4357142857142858e-05, + "loss": 1.2855487060546875, + "step": 500 + }, + { + "epoch": 8.575539568345324, + "grad_norm": 0.41319629549980164, + "learning_rate": 7.214285714285715e-06, + "loss": 1.2580926513671875, + "step": 600 + } + ], + "logging_steps": 100, + "max_steps": 700, + "num_input_tokens_seen": 0, + "num_train_epochs": 10, + "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": 122195017138176.0, + "train_batch_size": 8, + "trial_name": null, + "trial_params": null +} diff --git a/hyperparameter/m4/realtabformer/rtf-m4-20260505_021804/rtf_checkpoints/checkpoint-630/training_args.bin b/hyperparameter/m4/realtabformer/rtf-m4-20260505_021804/rtf_checkpoints/checkpoint-630/training_args.bin new file mode 100644 index 0000000000000000000000000000000000000000..95761c9b711780eb4f42f7be348858e3a996db4c --- /dev/null +++ b/hyperparameter/m4/realtabformer/rtf-m4-20260505_021804/rtf_checkpoints/checkpoint-630/training_args.bin @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:9fd0ce7594132050805cad78976d67a632518b52037b36e6ef2977b2ee2740a7 +size 5201 diff --git a/hyperparameter/m4/realtabformer/rtf-m4-20260505_021804/rtf_checkpoints/checkpoint-700/config.json b/hyperparameter/m4/realtabformer/rtf-m4-20260505_021804/rtf_checkpoints/checkpoint-700/config.json new file mode 100644 index 0000000000000000000000000000000000000000..69b1961f0cbafdc846150e71a2d82b4ce3beb94c --- /dev/null +++ b/hyperparameter/m4/realtabformer/rtf-m4-20260505_021804/rtf_checkpoints/checkpoint-700/config.json @@ -0,0 +1,34 @@ +{ + "activation_function": "gelu_new", + "add_cross_attention": false, + "architectures": [ + "GPT2LMHeadModel" + ], + "attn_pdrop": 0.1, + "bos_token_id": 5, + "dtype": "float32", + "embd_pdrop": 0.1, + "eos_token_id": 6, + "initializer_range": 0.02, + "layer_norm_epsilon": 1e-05, + "model_type": "gpt2", + "n_embd": 768, + "n_head": 12, + "n_inner": null, + "n_layer": 6, + "n_positions": 1024, + "pad_token_id": null, + "reorder_and_upcast_attn": false, + "resid_pdrop": 0.1, + "scale_attn_by_inverse_layer_idx": false, + "scale_attn_weights": true, + "summary_activation": null, + "summary_first_dropout": 0.1, + "summary_proj_to_labels": true, + "summary_type": "cls_index", + "summary_use_proj": true, + "tie_word_embeddings": true, + "transformers_version": "5.5.3", + "use_cache": false, + "vocab_size": 167 +} diff --git a/hyperparameter/m4/realtabformer/rtf-m4-20260505_021804/rtf_checkpoints/checkpoint-700/generation_config.json b/hyperparameter/m4/realtabformer/rtf-m4-20260505_021804/rtf_checkpoints/checkpoint-700/generation_config.json new file mode 100644 index 0000000000000000000000000000000000000000..ffe89567780e75b5c22eade9be971483b9618f39 --- /dev/null +++ b/hyperparameter/m4/realtabformer/rtf-m4-20260505_021804/rtf_checkpoints/checkpoint-700/generation_config.json @@ -0,0 +1,9 @@ +{ + "_from_model_config": true, + "bos_token_id": 5, + "eos_token_id": 6, + "output_attentions": false, + "output_hidden_states": false, + "transformers_version": "5.5.3", + "use_cache": true +} diff --git a/hyperparameter/m4/realtabformer/rtf-m4-20260505_021804/rtf_checkpoints/checkpoint-700/model.safetensors b/hyperparameter/m4/realtabformer/rtf-m4-20260505_021804/rtf_checkpoints/checkpoint-700/model.safetensors new file mode 100644 index 0000000000000000000000000000000000000000..31ba1cc37ea038e360c8d3ac9322409cc02df33d --- /dev/null +++ b/hyperparameter/m4/realtabformer/rtf-m4-20260505_021804/rtf_checkpoints/checkpoint-700/model.safetensors @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:3b9c03406d486a1a9be43911cc6aee47a87a57893739dc957ae7772cac19761c +size 173781448 diff --git a/hyperparameter/m4/realtabformer/rtf-m4-20260505_021804/rtf_checkpoints/checkpoint-700/optimizer.pt b/hyperparameter/m4/realtabformer/rtf-m4-20260505_021804/rtf_checkpoints/checkpoint-700/optimizer.pt new file mode 100644 index 0000000000000000000000000000000000000000..b88b2d2efab44a92915e44aa751011f4c2211097 --- /dev/null +++ b/hyperparameter/m4/realtabformer/rtf-m4-20260505_021804/rtf_checkpoints/checkpoint-700/optimizer.pt @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:07aa78a6cb3e73308d30443c34d7beef5877d64d69c6fd779daf384948c66ed6 +size 347611979 diff --git a/hyperparameter/m4/realtabformer/rtf-m4-20260505_021804/rtf_checkpoints/checkpoint-700/rng_state.pth b/hyperparameter/m4/realtabformer/rtf-m4-20260505_021804/rtf_checkpoints/checkpoint-700/rng_state.pth new file mode 100644 index 0000000000000000000000000000000000000000..bdf057d35b81e675af556e249607aa6a8fa15d8b --- /dev/null +++ b/hyperparameter/m4/realtabformer/rtf-m4-20260505_021804/rtf_checkpoints/checkpoint-700/rng_state.pth @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:7e78dfefb1032a6eefa05c89d78f800dba97b8992cf3a7fc2ad1976048c39868 +size 14645 diff --git a/hyperparameter/m4/realtabformer/rtf-m4-20260505_021804/rtf_checkpoints/checkpoint-700/scaler.pt b/hyperparameter/m4/realtabformer/rtf-m4-20260505_021804/rtf_checkpoints/checkpoint-700/scaler.pt new file mode 100644 index 0000000000000000000000000000000000000000..08873e1b922bcedaea9e8ed84f83e0fe850ad40e --- /dev/null +++ b/hyperparameter/m4/realtabformer/rtf-m4-20260505_021804/rtf_checkpoints/checkpoint-700/scaler.pt @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:850c3d909f8a0af6f9b431fac5a25833ab1658c39f899825e3b347b6af8a490b +size 1383 diff --git a/hyperparameter/m4/realtabformer/rtf-m4-20260505_021804/rtf_checkpoints/checkpoint-700/scheduler.pt b/hyperparameter/m4/realtabformer/rtf-m4-20260505_021804/rtf_checkpoints/checkpoint-700/scheduler.pt new file mode 100644 index 0000000000000000000000000000000000000000..484a14aedc562d172dac00629419c01e2740f128 --- /dev/null +++ b/hyperparameter/m4/realtabformer/rtf-m4-20260505_021804/rtf_checkpoints/checkpoint-700/scheduler.pt @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:7c7db382924b347ee30f88bd6a92b61b63b80d4ae2516c0da529f8b5f145583c +size 1465 diff --git a/hyperparameter/m4/realtabformer/rtf-m4-20260505_021804/rtf_checkpoints/checkpoint-700/trainer_state.json b/hyperparameter/m4/realtabformer/rtf-m4-20260505_021804/rtf_checkpoints/checkpoint-700/trainer_state.json new file mode 100644 index 0000000000000000000000000000000000000000..6c16c42669625ecbcfdb07206dc7c71fd5bbd1c9 --- /dev/null +++ b/hyperparameter/m4/realtabformer/rtf-m4-20260505_021804/rtf_checkpoints/checkpoint-700/trainer_state.json @@ -0,0 +1,83 @@ +{ + "best_global_step": null, + "best_metric": null, + "best_model_checkpoint": null, + "epoch": 10.0, + "eval_steps": 100, + "global_step": 700, + "is_hyper_param_search": false, + "is_local_process_zero": true, + "is_world_process_zero": true, + "log_history": [ + { + "epoch": 1.4316546762589928, + "grad_norm": 0.35994014143943787, + "learning_rate": 4.292857142857143e-05, + "loss": 1.9822434997558593, + "step": 100 + }, + { + "epoch": 2.8633093525179856, + "grad_norm": 0.34749945998191833, + "learning_rate": 3.5785714285714286e-05, + "loss": 1.4072773742675782, + "step": 200 + }, + { + "epoch": 4.287769784172662, + "grad_norm": 0.3795030415058136, + "learning_rate": 2.8642857142857144e-05, + "loss": 1.3483210754394532, + "step": 300 + }, + { + "epoch": 5.719424460431655, + "grad_norm": 0.3804047405719757, + "learning_rate": 2.15e-05, + "loss": 1.3129843139648438, + "step": 400 + }, + { + "epoch": 7.143884892086331, + "grad_norm": 0.40514329075813293, + "learning_rate": 1.4357142857142858e-05, + "loss": 1.2855487060546875, + "step": 500 + }, + { + "epoch": 8.575539568345324, + "grad_norm": 0.41319629549980164, + "learning_rate": 7.214285714285715e-06, + "loss": 1.2580926513671875, + "step": 600 + }, + { + "epoch": 10.0, + "grad_norm": 0.7964077591896057, + "learning_rate": 7.142857142857144e-08, + "loss": 1.2447142791748047, + "step": 700 + } + ], + "logging_steps": 100, + "max_steps": 700, + "num_input_tokens_seen": 0, + "num_train_epochs": 10, + "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": 135772241264640.0, + "train_batch_size": 8, + "trial_name": null, + "trial_params": null +} diff --git a/hyperparameter/m4/realtabformer/rtf-m4-20260505_021804/rtf_checkpoints/checkpoint-700/training_args.bin b/hyperparameter/m4/realtabformer/rtf-m4-20260505_021804/rtf_checkpoints/checkpoint-700/training_args.bin new file mode 100644 index 0000000000000000000000000000000000000000..95761c9b711780eb4f42f7be348858e3a996db4c --- /dev/null +++ b/hyperparameter/m4/realtabformer/rtf-m4-20260505_021804/rtf_checkpoints/checkpoint-700/training_args.bin @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:9fd0ce7594132050805cad78976d67a632518b52037b36e6ef2977b2ee2740a7 +size 5201 diff --git a/hyperparameter/m4/realtabformer/rtf-m4-20260505_021804/run_config.json b/hyperparameter/m4/realtabformer/rtf-m4-20260505_021804/run_config.json new file mode 100644 index 0000000000000000000000000000000000000000..abf9d87ceb79d19c6800e222ca903d8629025f2b --- /dev/null +++ b/hyperparameter/m4/realtabformer/rtf-m4-20260505_021804/run_config.json @@ -0,0 +1,40 @@ +{ + "schema_version": 1, + "recorded_at": "2026-05-05T02:18:04", + "dataset_id": "m4", + "model": "realtabformer", + "work_dir": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/m4/realtabformer/rtf-m4-20260505_021804", + "dataset_source_requested": "new", + "dataset_source_resolved": "new", + "cli_args": { + "model": "realtabformer", + "dataset": "m4", + "dataset_source": "new", + "train": true, + "generate": true, + "num_rows": 0, + "epochs": 10, + "output_dir": null, + "model_dir": null, + "work_dir": null, + "resume": false, + "no_stats": false + }, + "resolved": { + "num_rows": 2217, + "model_path": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/m4/realtabformer/rtf-m4-20260505_021804/models_10epochs", + "output_csv": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/m4/realtabformer/rtf-m4-20260505_021804/rtf-m4-2217-20260505_021918.csv" + }, + "input_artifacts": { + "public_gate_report": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/m4/realtabformer/rtf-m4-20260505_021804/public_gate/public_gate_report.json", + "public_manifest": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/m4/realtabformer/rtf-m4-20260505_021804/public_gate/staged_input_manifest.json", + "model_manifest": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/m4/realtabformer/rtf-m4-20260505_021804/staged/realtabformer/model_input_manifest.json", + "train_csv": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/m4/realtabformer/rtf-m4-20260505_021804/staged/public/train.csv", + "features_json": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/m4/realtabformer/rtf-m4-20260505_021804/staged/public/staged_features.json", + "target_column": "charges", + "task_type": "regression" + }, + "env_overrides": { + "BENCHMARK_REALTABFORMER_GPUS": "device=3" + } +} \ No newline at end of file diff --git a/hyperparameter/m4/realtabformer/rtf-m4-20260505_021804/runtime_result.json b/hyperparameter/m4/realtabformer/rtf-m4-20260505_021804/runtime_result.json new file mode 100644 index 0000000000000000000000000000000000000000..2f724b8d0e80699de8a433a774d602fefdaad9e0 --- /dev/null +++ b/hyperparameter/m4/realtabformer/rtf-m4-20260505_021804/runtime_result.json @@ -0,0 +1,27 @@ +{ + "dataset_id": "m4", + "model": "realtabformer", + "run_id": "rtf-m4-20260505_021804", + "public_gate_status": "pass", + "adapter_ready_status": "pass", + "train_status": "success", + "generate_status": "success", + "reason_code": null, + "reason_detail": null, + "artifacts": { + "synthetic_csv": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/m4/realtabformer/rtf-m4-20260505_021804/rtf-m4-2217-20260505_021918.csv", + "model_path": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/m4/realtabformer/rtf-m4-20260505_021804/models_10epochs" + }, + "timings": { + "train": { + "started_at": "2026-05-05T02:18:04", + "ended_at": "2026-05-05T02:19:18", + "duration_sec": 73.185 + }, + "generate": { + "started_at": "2026-05-05T02:19:18", + "ended_at": "2026-05-05T02:19:42", + "duration_sec": 24.422 + } + } +} \ No newline at end of file diff --git a/hyperparameter/m4/realtabformer/rtf-m4-20260505_021804/staged/public/staged_features.json b/hyperparameter/m4/realtabformer/rtf-m4-20260505_021804/staged/public/staged_features.json new file mode 100644 index 0000000000000000000000000000000000000000..d6acd098c35111f423f3ffff2cfd1754bc5dfebc --- /dev/null +++ b/hyperparameter/m4/realtabformer/rtf-m4-20260505_021804/staged/public/staged_features.json @@ -0,0 +1,37 @@ +[ + { + "feature_name": "age", + "data_type": "continuous", + "is_target": false + }, + { + "feature_name": "sex", + "data_type": "categorical", + "is_target": false + }, + { + "feature_name": "bmi", + "data_type": "continuous", + "is_target": false + }, + { + "feature_name": "children", + "data_type": "continuous", + "is_target": false + }, + { + "feature_name": "smoker", + "data_type": "binary", + "is_target": false + }, + { + "feature_name": "region", + "data_type": "categorical", + "is_target": false + }, + { + "feature_name": "charges", + "data_type": "continuous", + "is_target": true + } +] \ No newline at end of file diff --git a/hyperparameter/m4/realtabformer/rtf-m4-20260505_021804/staged/public/test.csv b/hyperparameter/m4/realtabformer/rtf-m4-20260505_021804/staged/public/test.csv new file mode 100644 index 0000000000000000000000000000000000000000..c88a2e7cfcd715bb421cb56eb078033da45c4dc8 --- /dev/null +++ b/hyperparameter/m4/realtabformer/rtf-m4-20260505_021804/staged/public/test.csv @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:4c541b677fb2d45c5bc79338eeee9fd8c91484b195a0c2c546c2fbabf113b7ea +size 11298 diff --git a/hyperparameter/m4/realtabformer/rtf-m4-20260505_021804/staged/public/train.csv b/hyperparameter/m4/realtabformer/rtf-m4-20260505_021804/staged/public/train.csv new file mode 100644 index 0000000000000000000000000000000000000000..5a05019d786529e0617291766c4fbe016ca01bf5 --- /dev/null +++ b/hyperparameter/m4/realtabformer/rtf-m4-20260505_021804/staged/public/train.csv @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:614ebfac5f41d6f661aff675fa18c0f933a8d9bcc77ea71b7b2360c2f0155837 +size 90069 diff --git a/hyperparameter/m4/realtabformer/rtf-m4-20260505_021804/staged/public/val.csv b/hyperparameter/m4/realtabformer/rtf-m4-20260505_021804/staged/public/val.csv new file mode 100644 index 0000000000000000000000000000000000000000..d78fe5ad1537c437ba9ac2629f2aa60a6c17e708 --- /dev/null +++ b/hyperparameter/m4/realtabformer/rtf-m4-20260505_021804/staged/public/val.csv @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:e55f5edbe7942ff01630de91a9c70dfbc6445eba76c7b970350364546b67c2d7 +size 11218 diff --git a/hyperparameter/m4/realtabformer/rtf-m4-20260505_021804/staged/realtabformer/adapter_report.json b/hyperparameter/m4/realtabformer/rtf-m4-20260505_021804/staged/realtabformer/adapter_report.json new file mode 100644 index 0000000000000000000000000000000000000000..f76bac4c89d76ccd21847bbb8f208cd555b87270 --- /dev/null +++ b/hyperparameter/m4/realtabformer/rtf-m4-20260505_021804/staged/realtabformer/adapter_report.json @@ -0,0 +1,7 @@ +{ + "adapter_ready_status": "pass", + "adapter_fail_reason_code": null, + "adapter_fail_detail": null, + "adapter_transforms_applied": [], + "model_input_manifest": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/m4/realtabformer/rtf-m4-20260505_021804/staged/realtabformer/model_input_manifest.json" +} \ No newline at end of file diff --git a/hyperparameter/m4/realtabformer/rtf-m4-20260505_021804/staged/realtabformer/adapter_transforms_applied.json b/hyperparameter/m4/realtabformer/rtf-m4-20260505_021804/staged/realtabformer/adapter_transforms_applied.json new file mode 100644 index 0000000000000000000000000000000000000000..0637a088a01e8ddab3bf3fa98dbe804cbde1a0dc --- /dev/null +++ b/hyperparameter/m4/realtabformer/rtf-m4-20260505_021804/staged/realtabformer/adapter_transforms_applied.json @@ -0,0 +1 @@ +[] \ No newline at end of file diff --git a/hyperparameter/m4/realtabformer/rtf-m4-20260505_021804/staged/realtabformer/model_input_manifest.json b/hyperparameter/m4/realtabformer/rtf-m4-20260505_021804/staged/realtabformer/model_input_manifest.json new file mode 100644 index 0000000000000000000000000000000000000000..1bf6a90111a3377288b2caf241684a25774f61b9 --- /dev/null +++ b/hyperparameter/m4/realtabformer/rtf-m4-20260505_021804/staged/realtabformer/model_input_manifest.json @@ -0,0 +1,154 @@ +{ + "dataset_id": "m4", + "model": "realtabformer", + "target_column": "charges", + "task_type": "regression", + "column_schema": [ + { + "name": "age", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 47, + "unique_ratio": 0.0212, + "example_values": [ + "46", + "38", + "19", + "27", + "26" + ] + } + }, + { + "name": "sex", + "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.000902, + "example_values": [ + "female", + "male" + ] + } + }, + { + "name": "bmi", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 538, + "unique_ratio": 0.24267, + "example_values": [ + "23.655", + "19.3", + "30.59", + "32.67", + "29.45" + ] + } + }, + { + "name": "children", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 6, + "unique_ratio": 0.002706, + "example_values": [ + "1", + "0", + "3", + "2", + "5" + ] + } + }, + { + "name": "smoker", + "role": "feature", + "semantic_type": "boolean", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 2, + "unique_ratio": 0.000902, + "example_values": [ + "yes", + "no" + ] + } + }, + { + "name": "region", + "role": "feature", + "semantic_type": "categorical", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 4, + "unique_ratio": 0.001804, + "example_values": [ + "northwest", + "southwest", + "southeast", + "northeast" + ] + } + }, + { + "name": "charges", + "role": "target", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 1281, + "unique_ratio": 0.577808, + "example_values": [ + "21677.28345", + "15820.699", + "1639.5631", + "2497.0383", + "2897.3235" + ] + } + } + ], + "public_manifest": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/m4/realtabformer/rtf-m4-20260505_021804/public_gate/staged_input_manifest.json", + "train_csv": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/m4/realtabformer/rtf-m4-20260505_021804/staged/public/train.csv", + "val_csv": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/m4/realtabformer/rtf-m4-20260505_021804/staged/public/val.csv", + "test_csv": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/m4/realtabformer/rtf-m4-20260505_021804/staged/public/test.csv", + "features_json": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/m4/realtabformer/rtf-m4-20260505_021804/staged/public/staged_features.json", + "public_gate_report": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/m4/realtabformer/rtf-m4-20260505_021804/public_gate/public_gate_report.json" +} \ No newline at end of file diff --git a/hyperparameter/m4/realtabformer/rtf-m4-20260505_021804/train_20260505_021804.log b/hyperparameter/m4/realtabformer/rtf-m4-20260505_021804/train_20260505_021804.log new file mode 100644 index 0000000000000000000000000000000000000000..63d44f4d2b87f42ad65f00eb34aff5ffaa621890 --- /dev/null +++ b/hyperparameter/m4/realtabformer/rtf-m4-20260505_021804/train_20260505_021804.log @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:63708e46409636ce1efeb9f5bbb8da4ca02ad7fe7b1d491e92bd29c743cb4c71 +size 28218 diff --git a/hyperparameter/m4/realtabformer/rtf-m4-20260505_021955/gen_20260505_022128.log b/hyperparameter/m4/realtabformer/rtf-m4-20260505_021955/gen_20260505_022128.log new file mode 100644 index 0000000000000000000000000000000000000000..3a2db9180fce42fc9b01c15cefcc4406eae3dc0a --- /dev/null +++ b/hyperparameter/m4/realtabformer/rtf-m4-20260505_021955/gen_20260505_022128.log @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:9d4f6fe011675f45758aa607a19d049209be7cbf58f9c5e943c7a978050ba4dc +size 1731 diff --git a/hyperparameter/m4/realtabformer/rtf-m4-20260505_021955/input_snapshot.json b/hyperparameter/m4/realtabformer/rtf-m4-20260505_021955/input_snapshot.json new file mode 100644 index 0000000000000000000000000000000000000000..9db22a39e5ccaaeedd23cf99efa32e16d4ed388a --- /dev/null +++ b/hyperparameter/m4/realtabformer/rtf-m4-20260505_021955/input_snapshot.json @@ -0,0 +1,36 @@ +{ + "dataset_id": "m4", + "model": "realtabformer", + "inputs": { + "train_csv": { + "path": "/data/jialinzhang/SynthesizePipeline-server/DatasetNew/m4/m4-train.csv", + "exists": true, + "size": 92191, + "sha256": "396b9d409ca21bf4a4cd329bdf5b7796aa0ae6356fa8d89b8eb669b5880b81f1" + }, + "val_csv": { + "path": "/data/jialinzhang/SynthesizePipeline-server/DatasetNew/m4/m4-val.csv", + "exists": true, + "size": 11482, + "sha256": "ee3c247d02f56e1687d03c381e13125d6a3a2a411ac7f202ba8520a4be9f1784" + }, + "test_csv": { + "path": "/data/jialinzhang/SynthesizePipeline-server/DatasetNew/m4/m4-test.csv", + "exists": true, + "size": 11559, + "sha256": "cadb9941124001b8fa7cb1ebae43b70a9ca56294f4df4d3c2f22c164c41757d4" + }, + "profile_json": { + "path": "/data/jialinzhang/SynthesizePipeline-server/DatasetNew/artifacts/data_core/tabular/m4/m4-dataset_profile.json", + "exists": true, + "size": 3336, + "sha256": "83e2764810e4a0e8cdece3a28dbd9134b7c9df6f2e56953e46d024ad2c4e035f" + }, + "contract_json": { + "path": "/data/jialinzhang/SynthesizePipeline-server/DatasetNew/artifacts/data_core/tabular/m4/m4-dataset_contract_v1.json", + "exists": true, + "size": 3810, + "sha256": "c23641b258629a845b164099bd0132886f8f6d0100e990494e0f92540f8987d9" + } + } +} \ No newline at end of file diff --git a/hyperparameter/m4/realtabformer/rtf-m4-20260505_021955/models_15epochs/id000017779188862507024384/rtf_config.json b/hyperparameter/m4/realtabformer/rtf-m4-20260505_021955/models_15epochs/id000017779188862507024384/rtf_config.json new file mode 100644 index 0000000000000000000000000000000000000000..063aca6923ad54d0333e0088a3a82643fa96b821 --- /dev/null +++ b/hyperparameter/m4/realtabformer/rtf-m4-20260505_021955/models_15epochs/id000017779188862507024384/rtf_config.json @@ -0,0 +1 @@ +{"model_type": "tabular", "tabular_config": {"transformers_version": "5.5.3", "architectures": ["GPT2LMHeadModel"], "output_hidden_states": false, "return_dict": true, "dtype": "float32", "chunk_size_feed_forward": 0, "is_encoder_decoder": false, "id2label": {"0": "LABEL_0", "1": "LABEL_1"}, "label2id": {"LABEL_0": 0, "LABEL_1": 1}, "problem_type": null, "vocab_size": 167, "n_positions": 1024, "n_embd": 768, "n_layer": 6, "n_head": 12, "n_inner": null, "activation_function": "gelu_new", "resid_pdrop": 0.1, "embd_pdrop": 0.1, "attn_pdrop": 0.1, "layer_norm_epsilon": 1e-05, "initializer_range": 0.02, "summary_type": "cls_index", "summary_use_proj": true, "summary_activation": null, "summary_proj_to_labels": true, "summary_first_dropout": 0.1, "scale_attn_weights": true, "use_cache": false, "bos_token_id": 5, "eos_token_id": 6, "pad_token_id": null, "scale_attn_by_inverse_layer_idx": false, "reorder_and_upcast_attn": false, "add_cross_attention": false, "tie_word_embeddings": true, "_name_or_path": "", "model_type": "gpt2", "output_attentions": false}, "checkpoints_dir": "rtf_checkpoints", "samples_save_dir": "rtf_samples", "full_save_dir": "rtf_full_save", "epochs": 15, "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": 15, "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": ["age", "sex", "bmi", "children", "smoker", "region", "charges"], "column_dtypes": {"age": "int64", "sex": "object", "bmi": "float64", "children": "int64", "smoker": "object", "region": "object", "charges": "float64"}, "column_has_missing": {"age": false, "sex": false, "bmi": false, "children": false, "smoker": false, "region": false, "charges": false}, "drop_na_cols": ["age", "sex", "bmi", "children", "smoker", "region", "charges"], "processed_columns": ["0___NUMERIC___age_00", "0___NUMERIC___age_01", "1___CATEGORICAL___sex", "2___NUMERIC___bmi_00", "2___NUMERIC___bmi_01", "2___NUMERIC___bmi_02", "2___NUMERIC___bmi_03", "2___NUMERIC___bmi_04", "2___NUMERIC___bmi_05", "3___NUMERIC___children_00", "4___CATEGORICAL___smoker", "5___CATEGORICAL___region", "6___NUMERIC___charges_00", "6___NUMERIC___charges_01", "6___NUMERIC___charges_02", "6___NUMERIC___charges_03", "6___NUMERIC___charges_04", "6___NUMERIC___charges_05", "6___NUMERIC___charges_06", "6___NUMERIC___charges_07", "6___NUMERIC___charges_08", "6___NUMERIC___charges_09"], "numeric_columns": ["age", "bmi", "children", "charges"], "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___age_00___1", "12": "0___NUMERIC___age_00___2", "13": "0___NUMERIC___age_00___3", "14": "0___NUMERIC___age_00___4", "15": "0___NUMERIC___age_00___5", "16": "0___NUMERIC___age_00___6", "17": "0___NUMERIC___age_01___0", "18": "0___NUMERIC___age_01___1", "19": "0___NUMERIC___age_01___2", "20": "0___NUMERIC___age_01___3", "21": "0___NUMERIC___age_01___4", "22": "0___NUMERIC___age_01___5", "23": "0___NUMERIC___age_01___6", "24": "0___NUMERIC___age_01___7", "25": "0___NUMERIC___age_01___8", "26": "0___NUMERIC___age_01___9", "27": "1___CATEGORICAL___sex___female", "28": "1___CATEGORICAL___sex___male", "29": "2___NUMERIC___bmi_00___1", "30": "2___NUMERIC___bmi_00___2", "31": "2___NUMERIC___bmi_00___3", "32": "2___NUMERIC___bmi_00___4", "33": "2___NUMERIC___bmi_00___5", "34": "2___NUMERIC___bmi_01___0", "35": "2___NUMERIC___bmi_01___1", "36": "2___NUMERIC___bmi_01___2", "37": "2___NUMERIC___bmi_01___3", "38": "2___NUMERIC___bmi_01___4", "39": "2___NUMERIC___bmi_01___5", "40": "2___NUMERIC___bmi_01___6", "41": "2___NUMERIC___bmi_01___7", "42": "2___NUMERIC___bmi_01___8", "43": "2___NUMERIC___bmi_01___9", "44": "2___NUMERIC___bmi_02___.", "45": "2___NUMERIC___bmi_03___0", "46": "2___NUMERIC___bmi_03___1", "47": "2___NUMERIC___bmi_03___2", "48": "2___NUMERIC___bmi_03___3", "49": "2___NUMERIC___bmi_03___4", "50": "2___NUMERIC___bmi_03___5", "51": "2___NUMERIC___bmi_03___6", "52": "2___NUMERIC___bmi_03___7", "53": "2___NUMERIC___bmi_03___8", "54": "2___NUMERIC___bmi_03___9", "55": "2___NUMERIC___bmi_04___0", "56": "2___NUMERIC___bmi_04___1", "57": "2___NUMERIC___bmi_04___2", "58": "2___NUMERIC___bmi_04___3", "59": "2___NUMERIC___bmi_04___4", "60": "2___NUMERIC___bmi_04___5", "61": "2___NUMERIC___bmi_04___6", "62": "2___NUMERIC___bmi_04___7", "63": "2___NUMERIC___bmi_04___8", "64": "2___NUMERIC___bmi_04___9", "65": "2___NUMERIC___bmi_05___0", "66": "2___NUMERIC___bmi_05___5", "67": "3___NUMERIC___children_00___0", "68": "3___NUMERIC___children_00___1", "69": "3___NUMERIC___children_00___2", "70": "3___NUMERIC___children_00___3", "71": "3___NUMERIC___children_00___4", "72": "3___NUMERIC___children_00___5", "73": "4___CATEGORICAL___smoker___no", "74": "4___CATEGORICAL___smoker___yes", "75": "5___CATEGORICAL___region___northeast", "76": "5___CATEGORICAL___region___northwest", "77": "5___CATEGORICAL___region___southeast", "78": "5___CATEGORICAL___region___southwest", "79": "6___NUMERIC___charges_00___0", "80": "6___NUMERIC___charges_00___1", "81": "6___NUMERIC___charges_00___2", "82": "6___NUMERIC___charges_00___3", "83": "6___NUMERIC___charges_00___4", "84": "6___NUMERIC___charges_00___5", "85": "6___NUMERIC___charges_00___6", "86": "6___NUMERIC___charges_01___0", "87": "6___NUMERIC___charges_01___1", "88": "6___NUMERIC___charges_01___2", "89": "6___NUMERIC___charges_01___3", "90": "6___NUMERIC___charges_01___4", "91": "6___NUMERIC___charges_01___5", "92": "6___NUMERIC___charges_01___6", "93": "6___NUMERIC___charges_01___7", "94": "6___NUMERIC___charges_01___8", "95": "6___NUMERIC___charges_01___9", "96": "6___NUMERIC___charges_02___0", "97": "6___NUMERIC___charges_02___1", "98": "6___NUMERIC___charges_02___2", "99": "6___NUMERIC___charges_02___3", "100": "6___NUMERIC___charges_02___4", "101": "6___NUMERIC___charges_02___5", "102": "6___NUMERIC___charges_02___6", "103": "6___NUMERIC___charges_02___7", "104": "6___NUMERIC___charges_02___8", "105": "6___NUMERIC___charges_02___9", "106": "6___NUMERIC___charges_03___0", "107": "6___NUMERIC___charges_03___1", "108": "6___NUMERIC___charges_03___2", "109": "6___NUMERIC___charges_03___3", "110": "6___NUMERIC___charges_03___4", "111": "6___NUMERIC___charges_03___5", "112": "6___NUMERIC___charges_03___6", "113": "6___NUMERIC___charges_03___7", "114": "6___NUMERIC___charges_03___8", "115": "6___NUMERIC___charges_03___9", "116": "6___NUMERIC___charges_04___0", "117": "6___NUMERIC___charges_04___1", "118": "6___NUMERIC___charges_04___2", "119": "6___NUMERIC___charges_04___3", "120": "6___NUMERIC___charges_04___4", "121": "6___NUMERIC___charges_04___5", "122": "6___NUMERIC___charges_04___6", "123": "6___NUMERIC___charges_04___7", "124": "6___NUMERIC___charges_04___8", "125": "6___NUMERIC___charges_04___9", "126": "6___NUMERIC___charges_05___.", "127": "6___NUMERIC___charges_06___0", "128": "6___NUMERIC___charges_06___1", "129": "6___NUMERIC___charges_06___2", "130": "6___NUMERIC___charges_06___3", "131": "6___NUMERIC___charges_06___4", "132": "6___NUMERIC___charges_06___5", "133": "6___NUMERIC___charges_06___6", "134": "6___NUMERIC___charges_06___7", "135": "6___NUMERIC___charges_06___8", "136": "6___NUMERIC___charges_06___9", "137": "6___NUMERIC___charges_07___0", "138": "6___NUMERIC___charges_07___1", "139": "6___NUMERIC___charges_07___2", "140": "6___NUMERIC___charges_07___3", "141": "6___NUMERIC___charges_07___4", "142": "6___NUMERIC___charges_07___5", "143": "6___NUMERIC___charges_07___6", "144": "6___NUMERIC___charges_07___7", "145": "6___NUMERIC___charges_07___8", "146": "6___NUMERIC___charges_07___9", "147": "6___NUMERIC___charges_08___0", "148": "6___NUMERIC___charges_08___1", "149": "6___NUMERIC___charges_08___2", "150": "6___NUMERIC___charges_08___3", "151": "6___NUMERIC___charges_08___4", "152": "6___NUMERIC___charges_08___5", "153": "6___NUMERIC___charges_08___6", "154": "6___NUMERIC___charges_08___7", "155": "6___NUMERIC___charges_08___8", "156": "6___NUMERIC___charges_08___9", "157": "6___NUMERIC___charges_09___0", "158": "6___NUMERIC___charges_09___1", "159": "6___NUMERIC___charges_09___2", "160": "6___NUMERIC___charges_09___3", "161": "6___NUMERIC___charges_09___4", "162": "6___NUMERIC___charges_09___5", "163": "6___NUMERIC___charges_09___6", "164": "6___NUMERIC___charges_09___7", "165": "6___NUMERIC___charges_09___8", "166": "6___NUMERIC___charges_09___9"}, "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___age_00___1": 11, "0___NUMERIC___age_00___2": 12, "0___NUMERIC___age_00___3": 13, "0___NUMERIC___age_00___4": 14, "0___NUMERIC___age_00___5": 15, "0___NUMERIC___age_00___6": 16, "0___NUMERIC___age_01___0": 17, "0___NUMERIC___age_01___1": 18, "0___NUMERIC___age_01___2": 19, "0___NUMERIC___age_01___3": 20, "0___NUMERIC___age_01___4": 21, "0___NUMERIC___age_01___5": 22, "0___NUMERIC___age_01___6": 23, "0___NUMERIC___age_01___7": 24, "0___NUMERIC___age_01___8": 25, "0___NUMERIC___age_01___9": 26, "1___CATEGORICAL___sex___female": 27, "1___CATEGORICAL___sex___male": 28, "2___NUMERIC___bmi_00___1": 29, "2___NUMERIC___bmi_00___2": 30, "2___NUMERIC___bmi_00___3": 31, "2___NUMERIC___bmi_00___4": 32, "2___NUMERIC___bmi_00___5": 33, "2___NUMERIC___bmi_01___0": 34, "2___NUMERIC___bmi_01___1": 35, "2___NUMERIC___bmi_01___2": 36, "2___NUMERIC___bmi_01___3": 37, "2___NUMERIC___bmi_01___4": 38, "2___NUMERIC___bmi_01___5": 39, "2___NUMERIC___bmi_01___6": 40, "2___NUMERIC___bmi_01___7": 41, "2___NUMERIC___bmi_01___8": 42, "2___NUMERIC___bmi_01___9": 43, "2___NUMERIC___bmi_02___.": 44, "2___NUMERIC___bmi_03___0": 45, "2___NUMERIC___bmi_03___1": 46, "2___NUMERIC___bmi_03___2": 47, "2___NUMERIC___bmi_03___3": 48, "2___NUMERIC___bmi_03___4": 49, "2___NUMERIC___bmi_03___5": 50, "2___NUMERIC___bmi_03___6": 51, "2___NUMERIC___bmi_03___7": 52, "2___NUMERIC___bmi_03___8": 53, "2___NUMERIC___bmi_03___9": 54, "2___NUMERIC___bmi_04___0": 55, "2___NUMERIC___bmi_04___1": 56, "2___NUMERIC___bmi_04___2": 57, "2___NUMERIC___bmi_04___3": 58, "2___NUMERIC___bmi_04___4": 59, "2___NUMERIC___bmi_04___5": 60, "2___NUMERIC___bmi_04___6": 61, "2___NUMERIC___bmi_04___7": 62, "2___NUMERIC___bmi_04___8": 63, "2___NUMERIC___bmi_04___9": 64, "2___NUMERIC___bmi_05___0": 65, "2___NUMERIC___bmi_05___5": 66, "3___NUMERIC___children_00___0": 67, "3___NUMERIC___children_00___1": 68, "3___NUMERIC___children_00___2": 69, "3___NUMERIC___children_00___3": 70, "3___NUMERIC___children_00___4": 71, "3___NUMERIC___children_00___5": 72, "4___CATEGORICAL___smoker___no": 73, "4___CATEGORICAL___smoker___yes": 74, "5___CATEGORICAL___region___northeast": 75, "5___CATEGORICAL___region___northwest": 76, "5___CATEGORICAL___region___southeast": 77, "5___CATEGORICAL___region___southwest": 78, "6___NUMERIC___charges_00___0": 79, "6___NUMERIC___charges_00___1": 80, "6___NUMERIC___charges_00___2": 81, "6___NUMERIC___charges_00___3": 82, "6___NUMERIC___charges_00___4": 83, "6___NUMERIC___charges_00___5": 84, "6___NUMERIC___charges_00___6": 85, "6___NUMERIC___charges_01___0": 86, "6___NUMERIC___charges_01___1": 87, "6___NUMERIC___charges_01___2": 88, "6___NUMERIC___charges_01___3": 89, "6___NUMERIC___charges_01___4": 90, "6___NUMERIC___charges_01___5": 91, "6___NUMERIC___charges_01___6": 92, "6___NUMERIC___charges_01___7": 93, "6___NUMERIC___charges_01___8": 94, "6___NUMERIC___charges_01___9": 95, "6___NUMERIC___charges_02___0": 96, "6___NUMERIC___charges_02___1": 97, "6___NUMERIC___charges_02___2": 98, "6___NUMERIC___charges_02___3": 99, "6___NUMERIC___charges_02___4": 100, "6___NUMERIC___charges_02___5": 101, "6___NUMERIC___charges_02___6": 102, "6___NUMERIC___charges_02___7": 103, "6___NUMERIC___charges_02___8": 104, "6___NUMERIC___charges_02___9": 105, "6___NUMERIC___charges_03___0": 106, "6___NUMERIC___charges_03___1": 107, "6___NUMERIC___charges_03___2": 108, "6___NUMERIC___charges_03___3": 109, "6___NUMERIC___charges_03___4": 110, "6___NUMERIC___charges_03___5": 111, "6___NUMERIC___charges_03___6": 112, "6___NUMERIC___charges_03___7": 113, "6___NUMERIC___charges_03___8": 114, "6___NUMERIC___charges_03___9": 115, "6___NUMERIC___charges_04___0": 116, "6___NUMERIC___charges_04___1": 117, "6___NUMERIC___charges_04___2": 118, "6___NUMERIC___charges_04___3": 119, "6___NUMERIC___charges_04___4": 120, "6___NUMERIC___charges_04___5": 121, "6___NUMERIC___charges_04___6": 122, "6___NUMERIC___charges_04___7": 123, "6___NUMERIC___charges_04___8": 124, "6___NUMERIC___charges_04___9": 125, "6___NUMERIC___charges_05___.": 126, "6___NUMERIC___charges_06___0": 127, "6___NUMERIC___charges_06___1": 128, "6___NUMERIC___charges_06___2": 129, "6___NUMERIC___charges_06___3": 130, "6___NUMERIC___charges_06___4": 131, "6___NUMERIC___charges_06___5": 132, "6___NUMERIC___charges_06___6": 133, "6___NUMERIC___charges_06___7": 134, "6___NUMERIC___charges_06___8": 135, "6___NUMERIC___charges_06___9": 136, "6___NUMERIC___charges_07___0": 137, "6___NUMERIC___charges_07___1": 138, "6___NUMERIC___charges_07___2": 139, "6___NUMERIC___charges_07___3": 140, "6___NUMERIC___charges_07___4": 141, "6___NUMERIC___charges_07___5": 142, "6___NUMERIC___charges_07___6": 143, "6___NUMERIC___charges_07___7": 144, "6___NUMERIC___charges_07___8": 145, "6___NUMERIC___charges_07___9": 146, "6___NUMERIC___charges_08___0": 147, "6___NUMERIC___charges_08___1": 148, "6___NUMERIC___charges_08___2": 149, "6___NUMERIC___charges_08___3": 150, "6___NUMERIC___charges_08___4": 151, "6___NUMERIC___charges_08___5": 152, "6___NUMERIC___charges_08___6": 153, "6___NUMERIC___charges_08___7": 154, "6___NUMERIC___charges_08___8": 155, "6___NUMERIC___charges_08___9": 156, "6___NUMERIC___charges_09___0": 157, "6___NUMERIC___charges_09___1": 158, "6___NUMERIC___charges_09___2": 159, "6___NUMERIC___charges_09___3": 160, "6___NUMERIC___charges_09___4": 161, "6___NUMERIC___charges_09___5": 162, "6___NUMERIC___charges_09___6": 163, "6___NUMERIC___charges_09___7": 164, "6___NUMERIC___charges_09___8": 165, "6___NUMERIC___charges_09___9": 166}, "column_token_ids": {"0___NUMERIC___age_00": [11, 12, 13, 14, 15, 16], "0___NUMERIC___age_01": [17, 18, 19, 20, 21, 22, 23, 24, 25, 26], "1___CATEGORICAL___sex": [27, 28], "2___NUMERIC___bmi_00": [29, 30, 31, 32, 33], "2___NUMERIC___bmi_01": [34, 35, 36, 37, 38, 39, 40, 41, 42, 43], "2___NUMERIC___bmi_02": [44], "2___NUMERIC___bmi_03": [45, 46, 47, 48, 49, 50, 51, 52, 53, 54], "2___NUMERIC___bmi_04": [55, 56, 57, 58, 59, 60, 61, 62, 63, 64], "2___NUMERIC___bmi_05": [65, 66], "3___NUMERIC___children_00": [67, 68, 69, 70, 71, 72], "4___CATEGORICAL___smoker": [73, 74], "5___CATEGORICAL___region": [75, 76, 77, 78], "6___NUMERIC___charges_00": [79, 80, 81, 82, 83, 84, 85], "6___NUMERIC___charges_01": [86, 87, 88, 89, 90, 91, 92, 93, 94, 95], "6___NUMERIC___charges_02": [96, 97, 98, 99, 100, 101, 102, 103, 104, 105], "6___NUMERIC___charges_03": [106, 107, 108, 109, 110, 111, 112, 113, 114, 115], "6___NUMERIC___charges_04": [116, 117, 118, 119, 120, 121, 122, 123, 124, 125], "6___NUMERIC___charges_05": [126], "6___NUMERIC___charges_06": [127, 128, 129, 130, 131, 132, 133, 134, 135, 136], "6___NUMERIC___charges_07": [137, 138, 139, 140, 141, 142, 143, 144, 145, 146], "6___NUMERIC___charges_08": [147, 148, 149, 150, 151, 152, 153, 154, 155, 156], "6___NUMERIC___charges_09": [157, 158, 159, 160, 161, 162, 163, 164, 165, 166]}}, "tabular_max_length": 24, "relational_max_length": null, "tabular_col_size": 2217, "relational_col_size": null, "col_transform_data": {"age": {"max_len": 10, "numeric_precision": 4, "mx_sig": -1, "zfill": 2, "numeric_nparts": 1}, "bmi": {"max_len": 10, "numeric_precision": 4, "mx_sig": 2, "ljust": 6, "numeric_nparts": 1}, "children": {"max_len": 10, "numeric_precision": 4, "mx_sig": -1, "zfill": 1, "numeric_nparts": 1}, "charges": {"max_len": 10, "numeric_precision": 4, "mx_sig": 5, "ljust": 10, "numeric_nparts": 1}}, "in_col_transform_data": null, "col_idx_ids": {"0": [11, 12, 13, 14, 15, 16], "1": [17, 18, 19, 20, 21, 22, 23, 24, 25, 26], "2": [27, 28], "3": [29, 30, 31, 32, 33], "4": [34, 35, 36, 37, 38, 39, 40, 41, 42, 43], "5": [44], "6": [45, 46, 47, 48, 49, 50, 51, 52, 53, 54], "7": [55, 56, 57, 58, 59, 60, 61, 62, 63, 64], "8": [65, 66], "9": [67, 68, 69, 70, 71, 72], "10": [73, 74], "11": [75, 76, 77, 78], "12": [79, 80, 81, 82, 83, 84, 85], "13": [86, 87, 88, 89, 90, 91, 92, 93, 94, 95], "14": [96, 97, 98, 99, 100, 101, 102, 103, 104, 105], "15": [106, 107, 108, 109, 110, 111, 112, 113, 114, 115], "16": [116, 117, 118, 119, 120, 121, 122, 123, 124, 125], "17": [126], "18": [127, 128, 129, 130, 131, 132, 133, 134, 135, 136], "19": [137, 138, 139, 140, 141, 142, 143, 144, 145, 146], "20": [147, 148, 149, 150, 151, 152, 153, 154, 155, 156], "21": [157, 158, 159, 160, 161, 162, 163, 164, 165, 166]}, "random_state": 1029, "numeric_nparts": 1, "numeric_precision": 4, "numeric_max_len": 10, "experiment_id": "id000017779188862507024384", "trainer_state": null, "target_col": null, "realtabformer_version": "0.2.4"} \ No newline at end of file diff --git a/hyperparameter/m4/realtabformer/rtf-m4-20260505_021955/models_15epochs/id000017779188862507024384/rtf_model.pt b/hyperparameter/m4/realtabformer/rtf-m4-20260505_021955/models_15epochs/id000017779188862507024384/rtf_model.pt new file mode 100644 index 0000000000000000000000000000000000000000..fe7cf4b96e27c985609039cc953011d1e8dbf338 --- /dev/null +++ b/hyperparameter/m4/realtabformer/rtf-m4-20260505_021955/models_15epochs/id000017779188862507024384/rtf_model.pt @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:c8ffd22ad966e4fd8186f67f32cc5cd31b879ab75b1b44187fdb2f695b685375 +size 173802979 diff --git a/hyperparameter/m4/realtabformer/rtf-m4-20260505_021955/public_gate/normalized_schema_snapshot.json b/hyperparameter/m4/realtabformer/rtf-m4-20260505_021955/public_gate/normalized_schema_snapshot.json new file mode 100644 index 0000000000000000000000000000000000000000..31ed9818686b11907df75e872e4ffbe010330880 --- /dev/null +++ b/hyperparameter/m4/realtabformer/rtf-m4-20260505_021955/public_gate/normalized_schema_snapshot.json @@ -0,0 +1,147 @@ +{ + "dataset_id": "m4", + "target_column": "charges", + "task_type": "regression", + "columns": [ + { + "name": "age", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 47, + "unique_ratio": 0.0212, + "example_values": [ + "46", + "38", + "19", + "27", + "26" + ] + } + }, + { + "name": "sex", + "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.000902, + "example_values": [ + "female", + "male" + ] + } + }, + { + "name": "bmi", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 538, + "unique_ratio": 0.24267, + "example_values": [ + "23.655", + "19.3", + "30.59", + "32.67", + "29.45" + ] + } + }, + { + "name": "children", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 6, + "unique_ratio": 0.002706, + "example_values": [ + "1", + "0", + "3", + "2", + "5" + ] + } + }, + { + "name": "smoker", + "role": "feature", + "semantic_type": "boolean", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 2, + "unique_ratio": 0.000902, + "example_values": [ + "yes", + "no" + ] + } + }, + { + "name": "region", + "role": "feature", + "semantic_type": "categorical", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 4, + "unique_ratio": 0.001804, + "example_values": [ + "northwest", + "southwest", + "southeast", + "northeast" + ] + } + }, + { + "name": "charges", + "role": "target", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 1281, + "unique_ratio": 0.577808, + "example_values": [ + "21677.28345", + "15820.699", + "1639.5631", + "2497.0383", + "2897.3235" + ] + } + } + ] +} \ No newline at end of file diff --git a/hyperparameter/m4/realtabformer/rtf-m4-20260505_021955/public_gate/public_gate_report.json b/hyperparameter/m4/realtabformer/rtf-m4-20260505_021955/public_gate/public_gate_report.json new file mode 100644 index 0000000000000000000000000000000000000000..e7a25408e2574124629ea9437356551e4d6f4790 --- /dev/null +++ b/hyperparameter/m4/realtabformer/rtf-m4-20260505_021955/public_gate/public_gate_report.json @@ -0,0 +1,37 @@ +{ + "dataset_id": "m4", + "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": "charges", + "task_type": "regression", + "input_splits": { + "train": "/data/jialinzhang/SynthesizePipeline-server/DatasetNew/m4/m4-train.csv", + "val": "/data/jialinzhang/SynthesizePipeline-server/DatasetNew/m4/m4-val.csv", + "test": "/data/jialinzhang/SynthesizePipeline-server/DatasetNew/m4/m4-test.csv" + } +} \ No newline at end of file diff --git a/hyperparameter/m4/realtabformer/rtf-m4-20260505_021955/public_gate/staged_input_manifest.json b/hyperparameter/m4/realtabformer/rtf-m4-20260505_021955/public_gate/staged_input_manifest.json new file mode 100644 index 0000000000000000000000000000000000000000..4b646b9272b52bc7b84fa739c8764b461224db7b --- /dev/null +++ b/hyperparameter/m4/realtabformer/rtf-m4-20260505_021955/public_gate/staged_input_manifest.json @@ -0,0 +1,152 @@ +{ + "dataset_id": "m4", + "target_column": "charges", + "task_type": "regression", + "train_csv": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/m4/realtabformer/rtf-m4-20260505_021955/staged/public/train.csv", + "val_csv": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/m4/realtabformer/rtf-m4-20260505_021955/staged/public/val.csv", + "test_csv": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/m4/realtabformer/rtf-m4-20260505_021955/staged/public/test.csv", + "features_json": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/m4/realtabformer/rtf-m4-20260505_021955/staged/public/staged_features.json", + "public_gate_report": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/m4/realtabformer/rtf-m4-20260505_021955/public_gate/public_gate_report.json", + "column_schema": [ + { + "name": "age", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 47, + "unique_ratio": 0.0212, + "example_values": [ + "46", + "38", + "19", + "27", + "26" + ] + } + }, + { + "name": "sex", + "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.000902, + "example_values": [ + "female", + "male" + ] + } + }, + { + "name": "bmi", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 538, + "unique_ratio": 0.24267, + "example_values": [ + "23.655", + "19.3", + "30.59", + "32.67", + "29.45" + ] + } + }, + { + "name": "children", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 6, + "unique_ratio": 0.002706, + "example_values": [ + "1", + "0", + "3", + "2", + "5" + ] + } + }, + { + "name": "smoker", + "role": "feature", + "semantic_type": "boolean", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 2, + "unique_ratio": 0.000902, + "example_values": [ + "yes", + "no" + ] + } + }, + { + "name": "region", + "role": "feature", + "semantic_type": "categorical", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 4, + "unique_ratio": 0.001804, + "example_values": [ + "northwest", + "southwest", + "southeast", + "northeast" + ] + } + }, + { + "name": "charges", + "role": "target", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 1281, + "unique_ratio": 0.577808, + "example_values": [ + "21677.28345", + "15820.699", + "1639.5631", + "2497.0383", + "2897.3235" + ] + } + } + ] +} \ No newline at end of file diff --git a/hyperparameter/m4/realtabformer/rtf-m4-20260505_021955/realtabformer_features.json b/hyperparameter/m4/realtabformer/rtf-m4-20260505_021955/realtabformer_features.json new file mode 100644 index 0000000000000000000000000000000000000000..d6acd098c35111f423f3ffff2cfd1754bc5dfebc --- /dev/null +++ b/hyperparameter/m4/realtabformer/rtf-m4-20260505_021955/realtabformer_features.json @@ -0,0 +1,37 @@ +[ + { + "feature_name": "age", + "data_type": "continuous", + "is_target": false + }, + { + "feature_name": "sex", + "data_type": "categorical", + "is_target": false + }, + { + "feature_name": "bmi", + "data_type": "continuous", + "is_target": false + }, + { + "feature_name": "children", + "data_type": "continuous", + "is_target": false + }, + { + "feature_name": "smoker", + "data_type": "binary", + "is_target": false + }, + { + "feature_name": "region", + "data_type": "categorical", + "is_target": false + }, + { + "feature_name": "charges", + "data_type": "continuous", + "is_target": true + } +] \ No newline at end of file diff --git a/hyperparameter/m4/realtabformer/rtf-m4-20260505_021955/rtf-m4-2217-20260505_022128.csv b/hyperparameter/m4/realtabformer/rtf-m4-20260505_021955/rtf-m4-2217-20260505_022128.csv new file mode 100644 index 0000000000000000000000000000000000000000..09caa684c012363b8e894d06958c310689d1da9c --- /dev/null +++ b/hyperparameter/m4/realtabformer/rtf-m4-20260505_021955/rtf-m4-2217-20260505_022128.csv @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:08d9c4b26b84dcce581772bf43a726a674dabde0f4b645fc9aa31f41bce9158a +size 88828 diff --git a/hyperparameter/m4/realtabformer/rtf-m4-20260505_021955/rtf_checkpoints/checkpoint-1000/config.json b/hyperparameter/m4/realtabformer/rtf-m4-20260505_021955/rtf_checkpoints/checkpoint-1000/config.json new file mode 100644 index 0000000000000000000000000000000000000000..69b1961f0cbafdc846150e71a2d82b4ce3beb94c --- /dev/null +++ b/hyperparameter/m4/realtabformer/rtf-m4-20260505_021955/rtf_checkpoints/checkpoint-1000/config.json @@ -0,0 +1,34 @@ +{ + "activation_function": "gelu_new", + "add_cross_attention": false, + "architectures": [ + "GPT2LMHeadModel" + ], + "attn_pdrop": 0.1, + "bos_token_id": 5, + "dtype": "float32", + "embd_pdrop": 0.1, + "eos_token_id": 6, + "initializer_range": 0.02, + "layer_norm_epsilon": 1e-05, + "model_type": "gpt2", + "n_embd": 768, + "n_head": 12, + "n_inner": null, + "n_layer": 6, + "n_positions": 1024, + "pad_token_id": null, + "reorder_and_upcast_attn": false, + "resid_pdrop": 0.1, + "scale_attn_by_inverse_layer_idx": false, + "scale_attn_weights": true, + "summary_activation": null, + "summary_first_dropout": 0.1, + "summary_proj_to_labels": true, + "summary_type": "cls_index", + "summary_use_proj": true, + "tie_word_embeddings": true, + "transformers_version": "5.5.3", + "use_cache": false, + "vocab_size": 167 +} diff --git a/hyperparameter/m4/realtabformer/rtf-m4-20260505_021955/rtf_checkpoints/checkpoint-1000/generation_config.json b/hyperparameter/m4/realtabformer/rtf-m4-20260505_021955/rtf_checkpoints/checkpoint-1000/generation_config.json new file mode 100644 index 0000000000000000000000000000000000000000..ffe89567780e75b5c22eade9be971483b9618f39 --- /dev/null +++ b/hyperparameter/m4/realtabformer/rtf-m4-20260505_021955/rtf_checkpoints/checkpoint-1000/generation_config.json @@ -0,0 +1,9 @@ +{ + "_from_model_config": true, + "bos_token_id": 5, + "eos_token_id": 6, + "output_attentions": false, + "output_hidden_states": false, + "transformers_version": "5.5.3", + "use_cache": true +} diff --git a/hyperparameter/m4/realtabformer/rtf-m4-20260505_021955/rtf_checkpoints/checkpoint-1000/model.safetensors b/hyperparameter/m4/realtabformer/rtf-m4-20260505_021955/rtf_checkpoints/checkpoint-1000/model.safetensors new file mode 100644 index 0000000000000000000000000000000000000000..8b1d296b55362fb0abe57483ef676d4eb38ffc6c --- /dev/null +++ b/hyperparameter/m4/realtabformer/rtf-m4-20260505_021955/rtf_checkpoints/checkpoint-1000/model.safetensors @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:bf8301c74ddb6d1b89889c15c1c7b5433d6e26acf03706c9b24e60b0c277ec3a +size 173781448 diff --git a/hyperparameter/m4/realtabformer/rtf-m4-20260505_021955/rtf_checkpoints/checkpoint-1000/optimizer.pt b/hyperparameter/m4/realtabformer/rtf-m4-20260505_021955/rtf_checkpoints/checkpoint-1000/optimizer.pt new file mode 100644 index 0000000000000000000000000000000000000000..21a0129fc18964871acc735bb1147c08abf36245 --- /dev/null +++ b/hyperparameter/m4/realtabformer/rtf-m4-20260505_021955/rtf_checkpoints/checkpoint-1000/optimizer.pt @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:dc9a274294d55baf90b22db0b30df42a0be19e5e76e9f7be606d5d9c79cd8f15 +size 347611979 diff --git a/hyperparameter/m4/realtabformer/rtf-m4-20260505_021955/rtf_checkpoints/checkpoint-1000/rng_state.pth b/hyperparameter/m4/realtabformer/rtf-m4-20260505_021955/rtf_checkpoints/checkpoint-1000/rng_state.pth new file mode 100644 index 0000000000000000000000000000000000000000..7973bd7cc14ce7c2a880447c6c862bdf2c5c2add --- /dev/null +++ b/hyperparameter/m4/realtabformer/rtf-m4-20260505_021955/rtf_checkpoints/checkpoint-1000/rng_state.pth @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:17cf861f562507d9a581e03362cb236bb4feedd1ec48d09fcd8aed4235e8defe +size 14645 diff --git a/hyperparameter/m4/realtabformer/rtf-m4-20260505_021955/rtf_checkpoints/checkpoint-1000/scaler.pt b/hyperparameter/m4/realtabformer/rtf-m4-20260505_021955/rtf_checkpoints/checkpoint-1000/scaler.pt new file mode 100644 index 0000000000000000000000000000000000000000..0405b11307032f43fcf2212da19c52823cc01ac4 --- /dev/null +++ b/hyperparameter/m4/realtabformer/rtf-m4-20260505_021955/rtf_checkpoints/checkpoint-1000/scaler.pt @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:14ae2a2128444abab378aa06c09a61a84665f758fcc19fc46f5789b0bc1b5665 +size 1383 diff --git a/hyperparameter/m4/realtabformer/rtf-m4-20260505_021955/rtf_checkpoints/checkpoint-1000/scheduler.pt b/hyperparameter/m4/realtabformer/rtf-m4-20260505_021955/rtf_checkpoints/checkpoint-1000/scheduler.pt new file mode 100644 index 0000000000000000000000000000000000000000..373ae9173425320f6fba8f705c618bd94415be76 --- /dev/null +++ b/hyperparameter/m4/realtabformer/rtf-m4-20260505_021955/rtf_checkpoints/checkpoint-1000/scheduler.pt @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:6282cf881479849c4ff652ad753aa02c163565fcd2109abf2360e32c147373f6 +size 1465 diff --git a/hyperparameter/m4/realtabformer/rtf-m4-20260505_021955/rtf_checkpoints/checkpoint-1000/trainer_state.json b/hyperparameter/m4/realtabformer/rtf-m4-20260505_021955/rtf_checkpoints/checkpoint-1000/trainer_state.json new file mode 100644 index 0000000000000000000000000000000000000000..f9c0275104c5c87f5c61ab00023be93f1401f835 --- /dev/null +++ b/hyperparameter/m4/realtabformer/rtf-m4-20260505_021955/rtf_checkpoints/checkpoint-1000/trainer_state.json @@ -0,0 +1,104 @@ +{ + "best_global_step": null, + "best_metric": null, + "best_model_checkpoint": null, + "epoch": 14.287769784172662, + "eval_steps": 100, + "global_step": 1000, + "is_hyper_param_search": false, + "is_local_process_zero": true, + "is_world_process_zero": true, + "log_history": [ + { + "epoch": 1.4316546762589928, + "grad_norm": 0.3582758903503418, + "learning_rate": 4.528571428571429e-05, + "loss": 1.9792947387695312, + "step": 100 + }, + { + "epoch": 2.8633093525179856, + "grad_norm": 0.3455997407436371, + "learning_rate": 4.052380952380952e-05, + "loss": 1.40504150390625, + "step": 200 + }, + { + "epoch": 4.287769784172662, + "grad_norm": 0.3883551359176636, + "learning_rate": 3.5761904761904765e-05, + "loss": 1.3453363037109376, + "step": 300 + }, + { + "epoch": 5.719424460431655, + "grad_norm": 0.3889848291873932, + "learning_rate": 3.1e-05, + "loss": 1.3075489807128906, + "step": 400 + }, + { + "epoch": 7.143884892086331, + "grad_norm": 0.41261518001556396, + "learning_rate": 2.623809523809524e-05, + "loss": 1.274782943725586, + "step": 500 + }, + { + "epoch": 8.575539568345324, + "grad_norm": 0.4286814033985138, + "learning_rate": 2.1476190476190477e-05, + "loss": 1.2375662994384766, + "step": 600 + }, + { + "epoch": 10.0, + "grad_norm": 0.8736087679862976, + "learning_rate": 1.6714285714285716e-05, + "loss": 1.2124452209472656, + "step": 700 + }, + { + "epoch": 11.431654676258994, + "grad_norm": 0.45217856764793396, + "learning_rate": 1.1952380952380952e-05, + "loss": 1.184055633544922, + "step": 800 + }, + { + "epoch": 12.863309352517986, + "grad_norm": 0.48745211958885193, + "learning_rate": 7.19047619047619e-06, + "loss": 1.159355926513672, + "step": 900 + }, + { + "epoch": 14.287769784172662, + "grad_norm": 0.4424184262752533, + "learning_rate": 2.428571428571429e-06, + "loss": 1.1421875762939453, + "step": 1000 + } + ], + "logging_steps": 100, + "max_steps": 1050, + "num_input_tokens_seen": 0, + "num_train_epochs": 15, + "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": 194000589029376.0, + "train_batch_size": 8, + "trial_name": null, + "trial_params": null +} diff --git a/hyperparameter/m4/realtabformer/rtf-m4-20260505_021955/rtf_checkpoints/checkpoint-1000/training_args.bin b/hyperparameter/m4/realtabformer/rtf-m4-20260505_021955/rtf_checkpoints/checkpoint-1000/training_args.bin new file mode 100644 index 0000000000000000000000000000000000000000..3b03c5f71fa818875cad290ece2b25ec27903e93 --- /dev/null +++ b/hyperparameter/m4/realtabformer/rtf-m4-20260505_021955/rtf_checkpoints/checkpoint-1000/training_args.bin @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:7e849067e43bb6650fce8e84fcf46f14551abb25b2511ace2d386dd951772602 +size 5201 diff --git a/hyperparameter/m4/realtabformer/rtf-m4-20260505_021955/rtf_checkpoints/checkpoint-1050/config.json b/hyperparameter/m4/realtabformer/rtf-m4-20260505_021955/rtf_checkpoints/checkpoint-1050/config.json new file mode 100644 index 0000000000000000000000000000000000000000..69b1961f0cbafdc846150e71a2d82b4ce3beb94c --- /dev/null +++ b/hyperparameter/m4/realtabformer/rtf-m4-20260505_021955/rtf_checkpoints/checkpoint-1050/config.json @@ -0,0 +1,34 @@ +{ + "activation_function": "gelu_new", + "add_cross_attention": false, + "architectures": [ + "GPT2LMHeadModel" + ], + "attn_pdrop": 0.1, + "bos_token_id": 5, + "dtype": "float32", + "embd_pdrop": 0.1, + "eos_token_id": 6, + "initializer_range": 0.02, + "layer_norm_epsilon": 1e-05, + "model_type": "gpt2", + "n_embd": 768, + "n_head": 12, + "n_inner": null, + "n_layer": 6, + "n_positions": 1024, + "pad_token_id": null, + "reorder_and_upcast_attn": false, + "resid_pdrop": 0.1, + "scale_attn_by_inverse_layer_idx": false, + "scale_attn_weights": true, + "summary_activation": null, + "summary_first_dropout": 0.1, + "summary_proj_to_labels": true, + "summary_type": "cls_index", + "summary_use_proj": true, + "tie_word_embeddings": true, + "transformers_version": "5.5.3", + "use_cache": false, + "vocab_size": 167 +} diff --git a/hyperparameter/m4/realtabformer/rtf-m4-20260505_021955/rtf_checkpoints/checkpoint-1050/generation_config.json b/hyperparameter/m4/realtabformer/rtf-m4-20260505_021955/rtf_checkpoints/checkpoint-1050/generation_config.json new file mode 100644 index 0000000000000000000000000000000000000000..ffe89567780e75b5c22eade9be971483b9618f39 --- /dev/null +++ b/hyperparameter/m4/realtabformer/rtf-m4-20260505_021955/rtf_checkpoints/checkpoint-1050/generation_config.json @@ -0,0 +1,9 @@ +{ + "_from_model_config": true, + "bos_token_id": 5, + "eos_token_id": 6, + "output_attentions": false, + "output_hidden_states": false, + "transformers_version": "5.5.3", + "use_cache": true +} diff --git a/hyperparameter/m4/realtabformer/rtf-m4-20260505_021955/rtf_checkpoints/checkpoint-1050/model.safetensors b/hyperparameter/m4/realtabformer/rtf-m4-20260505_021955/rtf_checkpoints/checkpoint-1050/model.safetensors new file mode 100644 index 0000000000000000000000000000000000000000..e20390cf4e70cbc3a2fa603de2c4a7c96901eb26 --- /dev/null +++ b/hyperparameter/m4/realtabformer/rtf-m4-20260505_021955/rtf_checkpoints/checkpoint-1050/model.safetensors @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:11045fcb555ae2363c109c0032923e1919e59827fed0ac3916c87be78370dc3b +size 173781448 diff --git a/hyperparameter/m4/realtabformer/rtf-m4-20260505_021955/rtf_checkpoints/checkpoint-1050/optimizer.pt b/hyperparameter/m4/realtabformer/rtf-m4-20260505_021955/rtf_checkpoints/checkpoint-1050/optimizer.pt new file mode 100644 index 0000000000000000000000000000000000000000..881999260b694541821ce0d156ea5a810348c613 --- /dev/null +++ b/hyperparameter/m4/realtabformer/rtf-m4-20260505_021955/rtf_checkpoints/checkpoint-1050/optimizer.pt @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:17979e69509f8349b4d95db946c7c3db6d675f2efebbbbf9e434eaf6ae2c33c0 +size 347611979 diff --git a/hyperparameter/m4/realtabformer/rtf-m4-20260505_021955/rtf_checkpoints/checkpoint-1050/rng_state.pth b/hyperparameter/m4/realtabformer/rtf-m4-20260505_021955/rtf_checkpoints/checkpoint-1050/rng_state.pth new file mode 100644 index 0000000000000000000000000000000000000000..265c6e0d2dc47e6198732a80d3ba68002ac67665 --- /dev/null +++ b/hyperparameter/m4/realtabformer/rtf-m4-20260505_021955/rtf_checkpoints/checkpoint-1050/rng_state.pth @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:e29fa60fb827a82c8ca67eb77e37528ecd4510afeff996ef16f9699b9ef0728b +size 14645 diff --git a/hyperparameter/m4/realtabformer/rtf-m4-20260505_021955/rtf_checkpoints/checkpoint-1050/scaler.pt b/hyperparameter/m4/realtabformer/rtf-m4-20260505_021955/rtf_checkpoints/checkpoint-1050/scaler.pt new file mode 100644 index 0000000000000000000000000000000000000000..64bbcf4c7f20391347458392fc33b45883a8e6b6 --- /dev/null +++ b/hyperparameter/m4/realtabformer/rtf-m4-20260505_021955/rtf_checkpoints/checkpoint-1050/scaler.pt @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:1cc309f473469af20c969d47e2eec44633bd68211b9849c48743d5a58c6d919c +size 1383 diff --git a/hyperparameter/m4/realtabformer/rtf-m4-20260505_021955/rtf_checkpoints/checkpoint-1050/scheduler.pt b/hyperparameter/m4/realtabformer/rtf-m4-20260505_021955/rtf_checkpoints/checkpoint-1050/scheduler.pt new file mode 100644 index 0000000000000000000000000000000000000000..3288d1df3a56b2f4007a8d7359ecfd1ef807e1db --- /dev/null +++ b/hyperparameter/m4/realtabformer/rtf-m4-20260505_021955/rtf_checkpoints/checkpoint-1050/scheduler.pt @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:84c99598d768bd3da49fc652b2b59d60fc04f04fa2a2d5d488249ae0b415a495 +size 1465 diff --git a/hyperparameter/m4/realtabformer/rtf-m4-20260505_021955/rtf_checkpoints/checkpoint-1050/trainer_state.json b/hyperparameter/m4/realtabformer/rtf-m4-20260505_021955/rtf_checkpoints/checkpoint-1050/trainer_state.json new file mode 100644 index 0000000000000000000000000000000000000000..89c2b154ea2686378c25e943085f3bc38948dbbe --- /dev/null +++ b/hyperparameter/m4/realtabformer/rtf-m4-20260505_021955/rtf_checkpoints/checkpoint-1050/trainer_state.json @@ -0,0 +1,104 @@ +{ + "best_global_step": null, + "best_metric": null, + "best_model_checkpoint": null, + "epoch": 15.0, + "eval_steps": 100, + "global_step": 1050, + "is_hyper_param_search": false, + "is_local_process_zero": true, + "is_world_process_zero": true, + "log_history": [ + { + "epoch": 1.4316546762589928, + "grad_norm": 0.3582758903503418, + "learning_rate": 4.528571428571429e-05, + "loss": 1.9792947387695312, + "step": 100 + }, + { + "epoch": 2.8633093525179856, + "grad_norm": 0.3455997407436371, + "learning_rate": 4.052380952380952e-05, + "loss": 1.40504150390625, + "step": 200 + }, + { + "epoch": 4.287769784172662, + "grad_norm": 0.3883551359176636, + "learning_rate": 3.5761904761904765e-05, + "loss": 1.3453363037109376, + "step": 300 + }, + { + "epoch": 5.719424460431655, + "grad_norm": 0.3889848291873932, + "learning_rate": 3.1e-05, + "loss": 1.3075489807128906, + "step": 400 + }, + { + "epoch": 7.143884892086331, + "grad_norm": 0.41261518001556396, + "learning_rate": 2.623809523809524e-05, + "loss": 1.274782943725586, + "step": 500 + }, + { + "epoch": 8.575539568345324, + "grad_norm": 0.4286814033985138, + "learning_rate": 2.1476190476190477e-05, + "loss": 1.2375662994384766, + "step": 600 + }, + { + "epoch": 10.0, + "grad_norm": 0.8736087679862976, + "learning_rate": 1.6714285714285716e-05, + "loss": 1.2124452209472656, + "step": 700 + }, + { + "epoch": 11.431654676258994, + "grad_norm": 0.45217856764793396, + "learning_rate": 1.1952380952380952e-05, + "loss": 1.184055633544922, + "step": 800 + }, + { + "epoch": 12.863309352517986, + "grad_norm": 0.48745211958885193, + "learning_rate": 7.19047619047619e-06, + "loss": 1.159355926513672, + "step": 900 + }, + { + "epoch": 14.287769784172662, + "grad_norm": 0.4424184262752533, + "learning_rate": 2.428571428571429e-06, + "loss": 1.1421875762939453, + "step": 1000 + } + ], + "logging_steps": 100, + "max_steps": 1050, + "num_input_tokens_seen": 0, + "num_train_epochs": 15, + "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": 203658361896960.0, + "train_batch_size": 8, + "trial_name": null, + "trial_params": null +} diff --git a/hyperparameter/m4/realtabformer/rtf-m4-20260505_021955/rtf_checkpoints/checkpoint-1050/training_args.bin b/hyperparameter/m4/realtabformer/rtf-m4-20260505_021955/rtf_checkpoints/checkpoint-1050/training_args.bin new file mode 100644 index 0000000000000000000000000000000000000000..3b03c5f71fa818875cad290ece2b25ec27903e93 --- /dev/null +++ b/hyperparameter/m4/realtabformer/rtf-m4-20260505_021955/rtf_checkpoints/checkpoint-1050/training_args.bin @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:7e849067e43bb6650fce8e84fcf46f14551abb25b2511ace2d386dd951772602 +size 5201 diff --git a/hyperparameter/m4/realtabformer/rtf-m4-20260505_021955/rtf_checkpoints/checkpoint-840/config.json b/hyperparameter/m4/realtabformer/rtf-m4-20260505_021955/rtf_checkpoints/checkpoint-840/config.json new file mode 100644 index 0000000000000000000000000000000000000000..69b1961f0cbafdc846150e71a2d82b4ce3beb94c --- /dev/null +++ b/hyperparameter/m4/realtabformer/rtf-m4-20260505_021955/rtf_checkpoints/checkpoint-840/config.json @@ -0,0 +1,34 @@ +{ + "activation_function": "gelu_new", + "add_cross_attention": false, + "architectures": [ + "GPT2LMHeadModel" + ], + "attn_pdrop": 0.1, + "bos_token_id": 5, + "dtype": "float32", + "embd_pdrop": 0.1, + "eos_token_id": 6, + "initializer_range": 0.02, + "layer_norm_epsilon": 1e-05, + "model_type": "gpt2", + "n_embd": 768, + "n_head": 12, + "n_inner": null, + "n_layer": 6, + "n_positions": 1024, + "pad_token_id": null, + "reorder_and_upcast_attn": false, + "resid_pdrop": 0.1, + "scale_attn_by_inverse_layer_idx": false, + "scale_attn_weights": true, + "summary_activation": null, + "summary_first_dropout": 0.1, + "summary_proj_to_labels": true, + "summary_type": "cls_index", + "summary_use_proj": true, + "tie_word_embeddings": true, + "transformers_version": "5.5.3", + "use_cache": false, + "vocab_size": 167 +} diff --git a/hyperparameter/m4/realtabformer/rtf-m4-20260505_021955/rtf_checkpoints/checkpoint-840/generation_config.json b/hyperparameter/m4/realtabformer/rtf-m4-20260505_021955/rtf_checkpoints/checkpoint-840/generation_config.json new file mode 100644 index 0000000000000000000000000000000000000000..ffe89567780e75b5c22eade9be971483b9618f39 --- /dev/null +++ b/hyperparameter/m4/realtabformer/rtf-m4-20260505_021955/rtf_checkpoints/checkpoint-840/generation_config.json @@ -0,0 +1,9 @@ +{ + "_from_model_config": true, + "bos_token_id": 5, + "eos_token_id": 6, + "output_attentions": false, + "output_hidden_states": false, + "transformers_version": "5.5.3", + "use_cache": true +} diff --git a/hyperparameter/m4/realtabformer/rtf-m4-20260505_021955/rtf_checkpoints/checkpoint-840/model.safetensors b/hyperparameter/m4/realtabformer/rtf-m4-20260505_021955/rtf_checkpoints/checkpoint-840/model.safetensors new file mode 100644 index 0000000000000000000000000000000000000000..9d1f347d1b69a0af92f09e74322719ec74611357 --- /dev/null +++ b/hyperparameter/m4/realtabformer/rtf-m4-20260505_021955/rtf_checkpoints/checkpoint-840/model.safetensors @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:8cf405f02a8f8870f462f8e94ea2ced05f3c145e1b5d9e6119bb91e3eed51c28 +size 173781448 diff --git a/hyperparameter/m4/realtabformer/rtf-m4-20260505_021955/rtf_checkpoints/checkpoint-840/optimizer.pt b/hyperparameter/m4/realtabformer/rtf-m4-20260505_021955/rtf_checkpoints/checkpoint-840/optimizer.pt new file mode 100644 index 0000000000000000000000000000000000000000..011a96ed4861cd555d20ddbc8fc31b1841ab7169 --- /dev/null +++ b/hyperparameter/m4/realtabformer/rtf-m4-20260505_021955/rtf_checkpoints/checkpoint-840/optimizer.pt @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:df26cbb4ebeb6c3f0d2ae5beb233543c5d61d9aa699858f3b9e073249c9afcb1 +size 347611979 diff --git a/hyperparameter/m4/realtabformer/rtf-m4-20260505_021955/rtf_checkpoints/checkpoint-840/rng_state.pth b/hyperparameter/m4/realtabformer/rtf-m4-20260505_021955/rtf_checkpoints/checkpoint-840/rng_state.pth new file mode 100644 index 0000000000000000000000000000000000000000..966e254c8bef396163979c13ded47f3ef4d3132e --- /dev/null +++ b/hyperparameter/m4/realtabformer/rtf-m4-20260505_021955/rtf_checkpoints/checkpoint-840/rng_state.pth @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:a135efab77aa5caff45c1034e729eae678ac181625401ecd4e3bbed1f073efd9 +size 14645 diff --git a/hyperparameter/m4/realtabformer/rtf-m4-20260505_021955/rtf_checkpoints/checkpoint-840/scaler.pt b/hyperparameter/m4/realtabformer/rtf-m4-20260505_021955/rtf_checkpoints/checkpoint-840/scaler.pt new file mode 100644 index 0000000000000000000000000000000000000000..4a71b6b8f87163e5af206c9311638f8197573793 --- /dev/null +++ b/hyperparameter/m4/realtabformer/rtf-m4-20260505_021955/rtf_checkpoints/checkpoint-840/scaler.pt @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:37fe9d97d6d21af00d1c8335a3abe36a9edcee7b7c01e459eb702311857d4d02 +size 1383 diff --git a/hyperparameter/m4/realtabformer/rtf-m4-20260505_021955/rtf_checkpoints/checkpoint-840/scheduler.pt b/hyperparameter/m4/realtabformer/rtf-m4-20260505_021955/rtf_checkpoints/checkpoint-840/scheduler.pt new file mode 100644 index 0000000000000000000000000000000000000000..76af3e27a54599e0c5cd04d18541230e206183da --- /dev/null +++ b/hyperparameter/m4/realtabformer/rtf-m4-20260505_021955/rtf_checkpoints/checkpoint-840/scheduler.pt @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:bc1b1a09272021780e6e58b5022eda132540a0d880af5c7743a09a2cbe69c135 +size 1465 diff --git a/hyperparameter/m4/realtabformer/rtf-m4-20260505_021955/rtf_checkpoints/checkpoint-840/trainer_state.json b/hyperparameter/m4/realtabformer/rtf-m4-20260505_021955/rtf_checkpoints/checkpoint-840/trainer_state.json new file mode 100644 index 0000000000000000000000000000000000000000..ec027c64adf3a496be96e35b81628bb6208f63a1 --- /dev/null +++ b/hyperparameter/m4/realtabformer/rtf-m4-20260505_021955/rtf_checkpoints/checkpoint-840/trainer_state.json @@ -0,0 +1,90 @@ +{ + "best_global_step": null, + "best_metric": null, + "best_model_checkpoint": null, + "epoch": 12.0, + "eval_steps": 100, + "global_step": 840, + "is_hyper_param_search": false, + "is_local_process_zero": true, + "is_world_process_zero": true, + "log_history": [ + { + "epoch": 1.4316546762589928, + "grad_norm": 0.3582758903503418, + "learning_rate": 4.528571428571429e-05, + "loss": 1.9792947387695312, + "step": 100 + }, + { + "epoch": 2.8633093525179856, + "grad_norm": 0.3455997407436371, + "learning_rate": 4.052380952380952e-05, + "loss": 1.40504150390625, + "step": 200 + }, + { + "epoch": 4.287769784172662, + "grad_norm": 0.3883551359176636, + "learning_rate": 3.5761904761904765e-05, + "loss": 1.3453363037109376, + "step": 300 + }, + { + "epoch": 5.719424460431655, + "grad_norm": 0.3889848291873932, + "learning_rate": 3.1e-05, + "loss": 1.3075489807128906, + "step": 400 + }, + { + "epoch": 7.143884892086331, + "grad_norm": 0.41261518001556396, + "learning_rate": 2.623809523809524e-05, + "loss": 1.274782943725586, + "step": 500 + }, + { + "epoch": 8.575539568345324, + "grad_norm": 0.4286814033985138, + "learning_rate": 2.1476190476190477e-05, + "loss": 1.2375662994384766, + "step": 600 + }, + { + "epoch": 10.0, + "grad_norm": 0.8736087679862976, + "learning_rate": 1.6714285714285716e-05, + "loss": 1.2124452209472656, + "step": 700 + }, + { + "epoch": 11.431654676258994, + "grad_norm": 0.45217856764793396, + "learning_rate": 1.1952380952380952e-05, + "loss": 1.184055633544922, + "step": 800 + } + ], + "logging_steps": 100, + "max_steps": 1050, + "num_input_tokens_seen": 0, + "num_train_epochs": 15, + "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": 162926689517568.0, + "train_batch_size": 8, + "trial_name": null, + "trial_params": null +} diff --git a/hyperparameter/m4/realtabformer/rtf-m4-20260505_021955/rtf_checkpoints/checkpoint-840/training_args.bin b/hyperparameter/m4/realtabformer/rtf-m4-20260505_021955/rtf_checkpoints/checkpoint-840/training_args.bin new file mode 100644 index 0000000000000000000000000000000000000000..3b03c5f71fa818875cad290ece2b25ec27903e93 --- /dev/null +++ b/hyperparameter/m4/realtabformer/rtf-m4-20260505_021955/rtf_checkpoints/checkpoint-840/training_args.bin @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:7e849067e43bb6650fce8e84fcf46f14551abb25b2511ace2d386dd951772602 +size 5201 diff --git a/hyperparameter/m4/realtabformer/rtf-m4-20260505_021955/rtf_checkpoints/checkpoint-900/config.json b/hyperparameter/m4/realtabformer/rtf-m4-20260505_021955/rtf_checkpoints/checkpoint-900/config.json new file mode 100644 index 0000000000000000000000000000000000000000..69b1961f0cbafdc846150e71a2d82b4ce3beb94c --- /dev/null +++ b/hyperparameter/m4/realtabformer/rtf-m4-20260505_021955/rtf_checkpoints/checkpoint-900/config.json @@ -0,0 +1,34 @@ +{ + "activation_function": "gelu_new", + "add_cross_attention": false, + "architectures": [ + "GPT2LMHeadModel" + ], + "attn_pdrop": 0.1, + "bos_token_id": 5, + "dtype": "float32", + "embd_pdrop": 0.1, + "eos_token_id": 6, + "initializer_range": 0.02, + "layer_norm_epsilon": 1e-05, + "model_type": "gpt2", + "n_embd": 768, + "n_head": 12, + "n_inner": null, + "n_layer": 6, + "n_positions": 1024, + "pad_token_id": null, + "reorder_and_upcast_attn": false, + "resid_pdrop": 0.1, + "scale_attn_by_inverse_layer_idx": false, + "scale_attn_weights": true, + "summary_activation": null, + "summary_first_dropout": 0.1, + "summary_proj_to_labels": true, + "summary_type": "cls_index", + "summary_use_proj": true, + "tie_word_embeddings": true, + "transformers_version": "5.5.3", + "use_cache": false, + "vocab_size": 167 +} diff --git a/hyperparameter/m4/realtabformer/rtf-m4-20260505_021955/rtf_checkpoints/checkpoint-900/generation_config.json b/hyperparameter/m4/realtabformer/rtf-m4-20260505_021955/rtf_checkpoints/checkpoint-900/generation_config.json new file mode 100644 index 0000000000000000000000000000000000000000..ffe89567780e75b5c22eade9be971483b9618f39 --- /dev/null +++ b/hyperparameter/m4/realtabformer/rtf-m4-20260505_021955/rtf_checkpoints/checkpoint-900/generation_config.json @@ -0,0 +1,9 @@ +{ + "_from_model_config": true, + "bos_token_id": 5, + "eos_token_id": 6, + "output_attentions": false, + "output_hidden_states": false, + "transformers_version": "5.5.3", + "use_cache": true +} diff --git a/hyperparameter/m4/realtabformer/rtf-m4-20260505_021955/rtf_checkpoints/checkpoint-900/model.safetensors b/hyperparameter/m4/realtabformer/rtf-m4-20260505_021955/rtf_checkpoints/checkpoint-900/model.safetensors new file mode 100644 index 0000000000000000000000000000000000000000..3fdf04db4d59ae7272e4331677a0e2851e96dc3d --- /dev/null +++ b/hyperparameter/m4/realtabformer/rtf-m4-20260505_021955/rtf_checkpoints/checkpoint-900/model.safetensors @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:444d17f1825a20b0df671d9146b8cbc806a318e55d610c3306d91346469401ef +size 173781448 diff --git a/hyperparameter/m4/realtabformer/rtf-m4-20260505_021955/rtf_checkpoints/checkpoint-900/optimizer.pt b/hyperparameter/m4/realtabformer/rtf-m4-20260505_021955/rtf_checkpoints/checkpoint-900/optimizer.pt new file mode 100644 index 0000000000000000000000000000000000000000..0c4db6508fb63f6f7654440ae2a1b7ea7f9fdeec --- /dev/null +++ b/hyperparameter/m4/realtabformer/rtf-m4-20260505_021955/rtf_checkpoints/checkpoint-900/optimizer.pt @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:6deb33de3250f463007eae53c17e088e4e0c5851c688c1e190c22fdc6592c848 +size 347611979 diff --git a/hyperparameter/m4/realtabformer/rtf-m4-20260505_021955/rtf_checkpoints/checkpoint-900/rng_state.pth b/hyperparameter/m4/realtabformer/rtf-m4-20260505_021955/rtf_checkpoints/checkpoint-900/rng_state.pth new file mode 100644 index 0000000000000000000000000000000000000000..662cfeff25fe4707217f047d775e055de2a2b562 --- /dev/null +++ b/hyperparameter/m4/realtabformer/rtf-m4-20260505_021955/rtf_checkpoints/checkpoint-900/rng_state.pth @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:0996433fc4c68338008c6770a12f4a460a5036fb7804b35633c9fefba4670acc +size 14645 diff --git a/hyperparameter/m4/realtabformer/rtf-m4-20260505_021955/rtf_checkpoints/checkpoint-900/scaler.pt b/hyperparameter/m4/realtabformer/rtf-m4-20260505_021955/rtf_checkpoints/checkpoint-900/scaler.pt new file mode 100644 index 0000000000000000000000000000000000000000..1e4437a955590eb751b51104943fa84acda739f5 --- /dev/null +++ b/hyperparameter/m4/realtabformer/rtf-m4-20260505_021955/rtf_checkpoints/checkpoint-900/scaler.pt @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:4a0b4230f34cfc1b81dc2c15ef8d265bdd348193f5a746ca2018df11549c7ac0 +size 1383 diff --git a/hyperparameter/m4/realtabformer/rtf-m4-20260505_021955/rtf_checkpoints/checkpoint-900/scheduler.pt b/hyperparameter/m4/realtabformer/rtf-m4-20260505_021955/rtf_checkpoints/checkpoint-900/scheduler.pt new file mode 100644 index 0000000000000000000000000000000000000000..e6ae853467e1cca6a3d33fee8b93d468c88d68d6 --- /dev/null +++ b/hyperparameter/m4/realtabformer/rtf-m4-20260505_021955/rtf_checkpoints/checkpoint-900/scheduler.pt @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:a0836a48a3299ac1142053eb725c92ce12862f92dc521b998ae08870a4aa0eaf +size 1465 diff --git a/hyperparameter/m4/realtabformer/rtf-m4-20260505_021955/rtf_checkpoints/checkpoint-900/trainer_state.json b/hyperparameter/m4/realtabformer/rtf-m4-20260505_021955/rtf_checkpoints/checkpoint-900/trainer_state.json new file mode 100644 index 0000000000000000000000000000000000000000..0f01b9f3296f0a27a4bdd3228e9228b542a4b6f3 --- /dev/null +++ b/hyperparameter/m4/realtabformer/rtf-m4-20260505_021955/rtf_checkpoints/checkpoint-900/trainer_state.json @@ -0,0 +1,97 @@ +{ + "best_global_step": null, + "best_metric": null, + "best_model_checkpoint": null, + "epoch": 12.863309352517986, + "eval_steps": 100, + "global_step": 900, + "is_hyper_param_search": false, + "is_local_process_zero": true, + "is_world_process_zero": true, + "log_history": [ + { + "epoch": 1.4316546762589928, + "grad_norm": 0.3582758903503418, + "learning_rate": 4.528571428571429e-05, + "loss": 1.9792947387695312, + "step": 100 + }, + { + "epoch": 2.8633093525179856, + "grad_norm": 0.3455997407436371, + "learning_rate": 4.052380952380952e-05, + "loss": 1.40504150390625, + "step": 200 + }, + { + "epoch": 4.287769784172662, + "grad_norm": 0.3883551359176636, + "learning_rate": 3.5761904761904765e-05, + "loss": 1.3453363037109376, + "step": 300 + }, + { + "epoch": 5.719424460431655, + "grad_norm": 0.3889848291873932, + "learning_rate": 3.1e-05, + "loss": 1.3075489807128906, + "step": 400 + }, + { + "epoch": 7.143884892086331, + "grad_norm": 0.41261518001556396, + "learning_rate": 2.623809523809524e-05, + "loss": 1.274782943725586, + "step": 500 + }, + { + "epoch": 8.575539568345324, + "grad_norm": 0.4286814033985138, + "learning_rate": 2.1476190476190477e-05, + "loss": 1.2375662994384766, + "step": 600 + }, + { + "epoch": 10.0, + "grad_norm": 0.8736087679862976, + "learning_rate": 1.6714285714285716e-05, + "loss": 1.2124452209472656, + "step": 700 + }, + { + "epoch": 11.431654676258994, + "grad_norm": 0.45217856764793396, + "learning_rate": 1.1952380952380952e-05, + "loss": 1.184055633544922, + "step": 800 + }, + { + "epoch": 12.863309352517986, + "grad_norm": 0.48745211958885193, + "learning_rate": 7.19047619047619e-06, + "loss": 1.159355926513672, + "step": 900 + } + ], + "logging_steps": 100, + "max_steps": 1050, + "num_input_tokens_seen": 0, + "num_train_epochs": 15, + "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": 174685043294208.0, + "train_batch_size": 8, + "trial_name": null, + "trial_params": null +} diff --git a/hyperparameter/m4/realtabformer/rtf-m4-20260505_021955/rtf_checkpoints/checkpoint-900/training_args.bin b/hyperparameter/m4/realtabformer/rtf-m4-20260505_021955/rtf_checkpoints/checkpoint-900/training_args.bin new file mode 100644 index 0000000000000000000000000000000000000000..3b03c5f71fa818875cad290ece2b25ec27903e93 --- /dev/null +++ b/hyperparameter/m4/realtabformer/rtf-m4-20260505_021955/rtf_checkpoints/checkpoint-900/training_args.bin @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:7e849067e43bb6650fce8e84fcf46f14551abb25b2511ace2d386dd951772602 +size 5201 diff --git a/hyperparameter/m4/realtabformer/rtf-m4-20260505_021955/rtf_checkpoints/checkpoint-910/config.json b/hyperparameter/m4/realtabformer/rtf-m4-20260505_021955/rtf_checkpoints/checkpoint-910/config.json new file mode 100644 index 0000000000000000000000000000000000000000..69b1961f0cbafdc846150e71a2d82b4ce3beb94c --- /dev/null +++ b/hyperparameter/m4/realtabformer/rtf-m4-20260505_021955/rtf_checkpoints/checkpoint-910/config.json @@ -0,0 +1,34 @@ +{ + "activation_function": "gelu_new", + "add_cross_attention": false, + "architectures": [ + "GPT2LMHeadModel" + ], + "attn_pdrop": 0.1, + "bos_token_id": 5, + "dtype": "float32", + "embd_pdrop": 0.1, + "eos_token_id": 6, + "initializer_range": 0.02, + "layer_norm_epsilon": 1e-05, + "model_type": "gpt2", + "n_embd": 768, + "n_head": 12, + "n_inner": null, + "n_layer": 6, + "n_positions": 1024, + "pad_token_id": null, + "reorder_and_upcast_attn": false, + "resid_pdrop": 0.1, + "scale_attn_by_inverse_layer_idx": false, + "scale_attn_weights": true, + "summary_activation": null, + "summary_first_dropout": 0.1, + "summary_proj_to_labels": true, + "summary_type": "cls_index", + "summary_use_proj": true, + "tie_word_embeddings": true, + "transformers_version": "5.5.3", + "use_cache": false, + "vocab_size": 167 +} diff --git a/hyperparameter/m4/realtabformer/rtf-m4-20260505_021955/rtf_checkpoints/checkpoint-910/generation_config.json b/hyperparameter/m4/realtabformer/rtf-m4-20260505_021955/rtf_checkpoints/checkpoint-910/generation_config.json new file mode 100644 index 0000000000000000000000000000000000000000..ffe89567780e75b5c22eade9be971483b9618f39 --- /dev/null +++ b/hyperparameter/m4/realtabformer/rtf-m4-20260505_021955/rtf_checkpoints/checkpoint-910/generation_config.json @@ -0,0 +1,9 @@ +{ + "_from_model_config": true, + "bos_token_id": 5, + "eos_token_id": 6, + "output_attentions": false, + "output_hidden_states": false, + "transformers_version": "5.5.3", + "use_cache": true +} diff --git a/hyperparameter/m4/realtabformer/rtf-m4-20260505_021955/rtf_checkpoints/checkpoint-910/model.safetensors b/hyperparameter/m4/realtabformer/rtf-m4-20260505_021955/rtf_checkpoints/checkpoint-910/model.safetensors new file mode 100644 index 0000000000000000000000000000000000000000..3d3a8cb6990ec8a4ec047f06d0e0562f8c2f8e8e --- /dev/null +++ b/hyperparameter/m4/realtabformer/rtf-m4-20260505_021955/rtf_checkpoints/checkpoint-910/model.safetensors @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:124c18990cadf5f0b4c68b66f0a23731fec01554568aa84bdc9c58d2c15c4f05 +size 173781448 diff --git a/hyperparameter/m4/realtabformer/rtf-m4-20260505_021955/rtf_checkpoints/checkpoint-910/optimizer.pt b/hyperparameter/m4/realtabformer/rtf-m4-20260505_021955/rtf_checkpoints/checkpoint-910/optimizer.pt new file mode 100644 index 0000000000000000000000000000000000000000..ba22388fdfc1df8d9e4980adbe54b03dd0b76c0e --- /dev/null +++ b/hyperparameter/m4/realtabformer/rtf-m4-20260505_021955/rtf_checkpoints/checkpoint-910/optimizer.pt @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:6a233b6f7a5a7ab415bc64bda256d5cc92605703ac877af993a870bd8554ee42 +size 347611979 diff --git a/hyperparameter/m4/realtabformer/rtf-m4-20260505_021955/rtf_checkpoints/checkpoint-910/rng_state.pth b/hyperparameter/m4/realtabformer/rtf-m4-20260505_021955/rtf_checkpoints/checkpoint-910/rng_state.pth new file mode 100644 index 0000000000000000000000000000000000000000..b9690b0616eb745c1ee6d10c6f56ecb918fb5636 --- /dev/null +++ b/hyperparameter/m4/realtabformer/rtf-m4-20260505_021955/rtf_checkpoints/checkpoint-910/rng_state.pth @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:dd9a0702047c81d843c155d32142131357b57a9ed3444fa887cb058dec733831 +size 14645 diff --git a/hyperparameter/m4/realtabformer/rtf-m4-20260505_021955/rtf_checkpoints/checkpoint-910/scaler.pt b/hyperparameter/m4/realtabformer/rtf-m4-20260505_021955/rtf_checkpoints/checkpoint-910/scaler.pt new file mode 100644 index 0000000000000000000000000000000000000000..92510aa6f58c80816cbf32e7f5b35ea2c6a305e6 --- /dev/null +++ b/hyperparameter/m4/realtabformer/rtf-m4-20260505_021955/rtf_checkpoints/checkpoint-910/scaler.pt @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:9270b4f27ba2d01ae81364742ee4b890719d270e7be24ad01820aabee320f0b5 +size 1383 diff --git a/hyperparameter/m4/realtabformer/rtf-m4-20260505_021955/rtf_checkpoints/checkpoint-910/scheduler.pt b/hyperparameter/m4/realtabformer/rtf-m4-20260505_021955/rtf_checkpoints/checkpoint-910/scheduler.pt new file mode 100644 index 0000000000000000000000000000000000000000..087d45a6d60766c770bcfc0e8db0996cf3cb864f --- /dev/null +++ b/hyperparameter/m4/realtabformer/rtf-m4-20260505_021955/rtf_checkpoints/checkpoint-910/scheduler.pt @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:23017ff9465afbc5e0bfeb49a027af8cd63600332a983f55447d9d5cec1b2a9f +size 1465 diff --git a/hyperparameter/m4/realtabformer/rtf-m4-20260505_021955/rtf_checkpoints/checkpoint-910/trainer_state.json b/hyperparameter/m4/realtabformer/rtf-m4-20260505_021955/rtf_checkpoints/checkpoint-910/trainer_state.json new file mode 100644 index 0000000000000000000000000000000000000000..b2b400099f1206cc00368bc105ec57ba820af3da --- /dev/null +++ b/hyperparameter/m4/realtabformer/rtf-m4-20260505_021955/rtf_checkpoints/checkpoint-910/trainer_state.json @@ -0,0 +1,97 @@ +{ + "best_global_step": null, + "best_metric": null, + "best_model_checkpoint": null, + "epoch": 13.0, + "eval_steps": 100, + "global_step": 910, + "is_hyper_param_search": false, + "is_local_process_zero": true, + "is_world_process_zero": true, + "log_history": [ + { + "epoch": 1.4316546762589928, + "grad_norm": 0.3582758903503418, + "learning_rate": 4.528571428571429e-05, + "loss": 1.9792947387695312, + "step": 100 + }, + { + "epoch": 2.8633093525179856, + "grad_norm": 0.3455997407436371, + "learning_rate": 4.052380952380952e-05, + "loss": 1.40504150390625, + "step": 200 + }, + { + "epoch": 4.287769784172662, + "grad_norm": 0.3883551359176636, + "learning_rate": 3.5761904761904765e-05, + "loss": 1.3453363037109376, + "step": 300 + }, + { + "epoch": 5.719424460431655, + "grad_norm": 0.3889848291873932, + "learning_rate": 3.1e-05, + "loss": 1.3075489807128906, + "step": 400 + }, + { + "epoch": 7.143884892086331, + "grad_norm": 0.41261518001556396, + "learning_rate": 2.623809523809524e-05, + "loss": 1.274782943725586, + "step": 500 + }, + { + "epoch": 8.575539568345324, + "grad_norm": 0.4286814033985138, + "learning_rate": 2.1476190476190477e-05, + "loss": 1.2375662994384766, + "step": 600 + }, + { + "epoch": 10.0, + "grad_norm": 0.8736087679862976, + "learning_rate": 1.6714285714285716e-05, + "loss": 1.2124452209472656, + "step": 700 + }, + { + "epoch": 11.431654676258994, + "grad_norm": 0.45217856764793396, + "learning_rate": 1.1952380952380952e-05, + "loss": 1.184055633544922, + "step": 800 + }, + { + "epoch": 12.863309352517986, + "grad_norm": 0.48745211958885193, + "learning_rate": 7.19047619047619e-06, + "loss": 1.159355926513672, + "step": 900 + } + ], + "logging_steps": 100, + "max_steps": 1050, + "num_input_tokens_seen": 0, + "num_train_epochs": 15, + "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": 176503913644032.0, + "train_batch_size": 8, + "trial_name": null, + "trial_params": null +} diff --git a/hyperparameter/m4/realtabformer/rtf-m4-20260505_021955/rtf_checkpoints/checkpoint-910/training_args.bin b/hyperparameter/m4/realtabformer/rtf-m4-20260505_021955/rtf_checkpoints/checkpoint-910/training_args.bin new file mode 100644 index 0000000000000000000000000000000000000000..3b03c5f71fa818875cad290ece2b25ec27903e93 --- /dev/null +++ b/hyperparameter/m4/realtabformer/rtf-m4-20260505_021955/rtf_checkpoints/checkpoint-910/training_args.bin @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:7e849067e43bb6650fce8e84fcf46f14551abb25b2511ace2d386dd951772602 +size 5201 diff --git a/hyperparameter/m4/realtabformer/rtf-m4-20260505_021955/rtf_checkpoints/checkpoint-980/config.json b/hyperparameter/m4/realtabformer/rtf-m4-20260505_021955/rtf_checkpoints/checkpoint-980/config.json new file mode 100644 index 0000000000000000000000000000000000000000..69b1961f0cbafdc846150e71a2d82b4ce3beb94c --- /dev/null +++ b/hyperparameter/m4/realtabformer/rtf-m4-20260505_021955/rtf_checkpoints/checkpoint-980/config.json @@ -0,0 +1,34 @@ +{ + "activation_function": "gelu_new", + "add_cross_attention": false, + "architectures": [ + "GPT2LMHeadModel" + ], + "attn_pdrop": 0.1, + "bos_token_id": 5, + "dtype": "float32", + "embd_pdrop": 0.1, + "eos_token_id": 6, + "initializer_range": 0.02, + "layer_norm_epsilon": 1e-05, + "model_type": "gpt2", + "n_embd": 768, + "n_head": 12, + "n_inner": null, + "n_layer": 6, + "n_positions": 1024, + "pad_token_id": null, + "reorder_and_upcast_attn": false, + "resid_pdrop": 0.1, + "scale_attn_by_inverse_layer_idx": false, + "scale_attn_weights": true, + "summary_activation": null, + "summary_first_dropout": 0.1, + "summary_proj_to_labels": true, + "summary_type": "cls_index", + "summary_use_proj": true, + "tie_word_embeddings": true, + "transformers_version": "5.5.3", + "use_cache": false, + "vocab_size": 167 +} diff --git a/hyperparameter/m4/realtabformer/rtf-m4-20260505_021955/rtf_checkpoints/checkpoint-980/generation_config.json b/hyperparameter/m4/realtabformer/rtf-m4-20260505_021955/rtf_checkpoints/checkpoint-980/generation_config.json new file mode 100644 index 0000000000000000000000000000000000000000..ffe89567780e75b5c22eade9be971483b9618f39 --- /dev/null +++ b/hyperparameter/m4/realtabformer/rtf-m4-20260505_021955/rtf_checkpoints/checkpoint-980/generation_config.json @@ -0,0 +1,9 @@ +{ + "_from_model_config": true, + "bos_token_id": 5, + "eos_token_id": 6, + "output_attentions": false, + "output_hidden_states": false, + "transformers_version": "5.5.3", + "use_cache": true +} diff --git a/hyperparameter/m4/realtabformer/rtf-m4-20260505_021955/rtf_checkpoints/checkpoint-980/model.safetensors b/hyperparameter/m4/realtabformer/rtf-m4-20260505_021955/rtf_checkpoints/checkpoint-980/model.safetensors new file mode 100644 index 0000000000000000000000000000000000000000..ab536bab018262ce58975d983ae9f53fd2501967 --- /dev/null +++ b/hyperparameter/m4/realtabformer/rtf-m4-20260505_021955/rtf_checkpoints/checkpoint-980/model.safetensors @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:e09600e46cea0186b8dc91bdf2ea02ac49cf126f25fdbd889164e18c622b30b2 +size 173781448 diff --git a/hyperparameter/m4/realtabformer/rtf-m4-20260505_021955/rtf_checkpoints/checkpoint-980/optimizer.pt b/hyperparameter/m4/realtabformer/rtf-m4-20260505_021955/rtf_checkpoints/checkpoint-980/optimizer.pt new file mode 100644 index 0000000000000000000000000000000000000000..dfba07f68a5ccaae328521bbb8641eb40e901e69 --- /dev/null +++ b/hyperparameter/m4/realtabformer/rtf-m4-20260505_021955/rtf_checkpoints/checkpoint-980/optimizer.pt @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:d44ad7f85004055b4a17ae19507db2a60d42ad462210039d31e7ee34bdf2cc3e +size 347611979 diff --git a/hyperparameter/m4/realtabformer/rtf-m4-20260505_021955/rtf_checkpoints/checkpoint-980/rng_state.pth b/hyperparameter/m4/realtabformer/rtf-m4-20260505_021955/rtf_checkpoints/checkpoint-980/rng_state.pth new file mode 100644 index 0000000000000000000000000000000000000000..07b9ee31bc220c38ff899e9c8b78031c05973c61 --- /dev/null +++ b/hyperparameter/m4/realtabformer/rtf-m4-20260505_021955/rtf_checkpoints/checkpoint-980/rng_state.pth @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:2012249b16b3ef1f05f6315c3af9b5e623b7e350c8603c05f4b212c67d714d4d +size 14645 diff --git a/hyperparameter/m4/realtabformer/rtf-m4-20260505_021955/rtf_checkpoints/checkpoint-980/scaler.pt b/hyperparameter/m4/realtabformer/rtf-m4-20260505_021955/rtf_checkpoints/checkpoint-980/scaler.pt new file mode 100644 index 0000000000000000000000000000000000000000..33d636a35d6479dd35d8a5e01df08fd626f97c64 --- /dev/null +++ b/hyperparameter/m4/realtabformer/rtf-m4-20260505_021955/rtf_checkpoints/checkpoint-980/scaler.pt @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:619098a0857a1a7af906e26f664e89f139bfab425f24037b0450428a2feb6236 +size 1383 diff --git a/hyperparameter/m4/realtabformer/rtf-m4-20260505_021955/rtf_checkpoints/checkpoint-980/scheduler.pt b/hyperparameter/m4/realtabformer/rtf-m4-20260505_021955/rtf_checkpoints/checkpoint-980/scheduler.pt new file mode 100644 index 0000000000000000000000000000000000000000..17209e9aac2023e248a48ee9f3a0273c8f15536b --- /dev/null +++ b/hyperparameter/m4/realtabformer/rtf-m4-20260505_021955/rtf_checkpoints/checkpoint-980/scheduler.pt @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:7fd217f3e47825f7a36e7821c61f192f4f102dcc91feea53710ac1fd81de97b5 +size 1465 diff --git a/hyperparameter/m4/realtabformer/rtf-m4-20260505_021955/rtf_checkpoints/checkpoint-980/trainer_state.json b/hyperparameter/m4/realtabformer/rtf-m4-20260505_021955/rtf_checkpoints/checkpoint-980/trainer_state.json new file mode 100644 index 0000000000000000000000000000000000000000..a4c537e3fc84feff6c249a56f87ad4488c538f77 --- /dev/null +++ b/hyperparameter/m4/realtabformer/rtf-m4-20260505_021955/rtf_checkpoints/checkpoint-980/trainer_state.json @@ -0,0 +1,97 @@ +{ + "best_global_step": null, + "best_metric": null, + "best_model_checkpoint": null, + "epoch": 14.0, + "eval_steps": 100, + "global_step": 980, + "is_hyper_param_search": false, + "is_local_process_zero": true, + "is_world_process_zero": true, + "log_history": [ + { + "epoch": 1.4316546762589928, + "grad_norm": 0.3582758903503418, + "learning_rate": 4.528571428571429e-05, + "loss": 1.9792947387695312, + "step": 100 + }, + { + "epoch": 2.8633093525179856, + "grad_norm": 0.3455997407436371, + "learning_rate": 4.052380952380952e-05, + "loss": 1.40504150390625, + "step": 200 + }, + { + "epoch": 4.287769784172662, + "grad_norm": 0.3883551359176636, + "learning_rate": 3.5761904761904765e-05, + "loss": 1.3453363037109376, + "step": 300 + }, + { + "epoch": 5.719424460431655, + "grad_norm": 0.3889848291873932, + "learning_rate": 3.1e-05, + "loss": 1.3075489807128906, + "step": 400 + }, + { + "epoch": 7.143884892086331, + "grad_norm": 0.41261518001556396, + "learning_rate": 2.623809523809524e-05, + "loss": 1.274782943725586, + "step": 500 + }, + { + "epoch": 8.575539568345324, + "grad_norm": 0.4286814033985138, + "learning_rate": 2.1476190476190477e-05, + "loss": 1.2375662994384766, + "step": 600 + }, + { + "epoch": 10.0, + "grad_norm": 0.8736087679862976, + "learning_rate": 1.6714285714285716e-05, + "loss": 1.2124452209472656, + "step": 700 + }, + { + "epoch": 11.431654676258994, + "grad_norm": 0.45217856764793396, + "learning_rate": 1.1952380952380952e-05, + "loss": 1.184055633544922, + "step": 800 + }, + { + "epoch": 12.863309352517986, + "grad_norm": 0.48745211958885193, + "learning_rate": 7.19047619047619e-06, + "loss": 1.159355926513672, + "step": 900 + } + ], + "logging_steps": 100, + "max_steps": 1050, + "num_input_tokens_seen": 0, + "num_train_epochs": 15, + "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": 190081137770496.0, + "train_batch_size": 8, + "trial_name": null, + "trial_params": null +} diff --git a/hyperparameter/m4/realtabformer/rtf-m4-20260505_021955/rtf_checkpoints/checkpoint-980/training_args.bin b/hyperparameter/m4/realtabformer/rtf-m4-20260505_021955/rtf_checkpoints/checkpoint-980/training_args.bin new file mode 100644 index 0000000000000000000000000000000000000000..3b03c5f71fa818875cad290ece2b25ec27903e93 --- /dev/null +++ b/hyperparameter/m4/realtabformer/rtf-m4-20260505_021955/rtf_checkpoints/checkpoint-980/training_args.bin @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:7e849067e43bb6650fce8e84fcf46f14551abb25b2511ace2d386dd951772602 +size 5201 diff --git a/hyperparameter/m4/realtabformer/rtf-m4-20260505_021955/run_config.json b/hyperparameter/m4/realtabformer/rtf-m4-20260505_021955/run_config.json new file mode 100644 index 0000000000000000000000000000000000000000..f23b35bdde046439acb4e238167ab1c093d85869 --- /dev/null +++ b/hyperparameter/m4/realtabformer/rtf-m4-20260505_021955/run_config.json @@ -0,0 +1,40 @@ +{ + "schema_version": 1, + "recorded_at": "2026-05-05T02:19:55", + "dataset_id": "m4", + "model": "realtabformer", + "work_dir": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/m4/realtabformer/rtf-m4-20260505_021955", + "dataset_source_requested": "new", + "dataset_source_resolved": "new", + "cli_args": { + "model": "realtabformer", + "dataset": "m4", + "dataset_source": "new", + "train": true, + "generate": true, + "num_rows": 0, + "epochs": 15, + "output_dir": null, + "model_dir": null, + "work_dir": null, + "resume": false, + "no_stats": false + }, + "resolved": { + "num_rows": 2217, + "model_path": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/m4/realtabformer/rtf-m4-20260505_021955/models_15epochs", + "output_csv": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/m4/realtabformer/rtf-m4-20260505_021955/rtf-m4-2217-20260505_022128.csv" + }, + "input_artifacts": { + "public_gate_report": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/m4/realtabformer/rtf-m4-20260505_021955/public_gate/public_gate_report.json", + "public_manifest": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/m4/realtabformer/rtf-m4-20260505_021955/public_gate/staged_input_manifest.json", + "model_manifest": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/m4/realtabformer/rtf-m4-20260505_021955/staged/realtabformer/model_input_manifest.json", + "train_csv": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/m4/realtabformer/rtf-m4-20260505_021955/staged/public/train.csv", + "features_json": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/m4/realtabformer/rtf-m4-20260505_021955/staged/public/staged_features.json", + "target_column": "charges", + "task_type": "regression" + }, + "env_overrides": { + "BENCHMARK_REALTABFORMER_GPUS": "device=3" + } +} \ No newline at end of file diff --git a/hyperparameter/m4/realtabformer/rtf-m4-20260505_021955/runtime_result.json b/hyperparameter/m4/realtabformer/rtf-m4-20260505_021955/runtime_result.json new file mode 100644 index 0000000000000000000000000000000000000000..2a1522670677e9a4395e73f10b6451c838a253e0 --- /dev/null +++ b/hyperparameter/m4/realtabformer/rtf-m4-20260505_021955/runtime_result.json @@ -0,0 +1,27 @@ +{ + "dataset_id": "m4", + "model": "realtabformer", + "run_id": "rtf-m4-20260505_021955", + "public_gate_status": "pass", + "adapter_ready_status": "pass", + "train_status": "success", + "generate_status": "success", + "reason_code": null, + "reason_detail": null, + "artifacts": { + "synthetic_csv": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/m4/realtabformer/rtf-m4-20260505_021955/rtf-m4-2217-20260505_022128.csv", + "model_path": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/m4/realtabformer/rtf-m4-20260505_021955/models_15epochs" + }, + "timings": { + "train": { + "started_at": "2026-05-05T02:19:55", + "ended_at": "2026-05-05T02:21:28", + "duration_sec": 92.914 + }, + "generate": { + "started_at": "2026-05-05T02:21:28", + "ended_at": "2026-05-05T02:21:53", + "duration_sec": 24.614 + } + } +} \ No newline at end of file diff --git a/hyperparameter/m4/realtabformer/rtf-m4-20260505_021955/staged/public/staged_features.json b/hyperparameter/m4/realtabformer/rtf-m4-20260505_021955/staged/public/staged_features.json new file mode 100644 index 0000000000000000000000000000000000000000..d6acd098c35111f423f3ffff2cfd1754bc5dfebc --- /dev/null +++ b/hyperparameter/m4/realtabformer/rtf-m4-20260505_021955/staged/public/staged_features.json @@ -0,0 +1,37 @@ +[ + { + "feature_name": "age", + "data_type": "continuous", + "is_target": false + }, + { + "feature_name": "sex", + "data_type": "categorical", + "is_target": false + }, + { + "feature_name": "bmi", + "data_type": "continuous", + "is_target": false + }, + { + "feature_name": "children", + "data_type": "continuous", + "is_target": false + }, + { + "feature_name": "smoker", + "data_type": "binary", + "is_target": false + }, + { + "feature_name": "region", + "data_type": "categorical", + "is_target": false + }, + { + "feature_name": "charges", + "data_type": "continuous", + "is_target": true + } +] \ No newline at end of file diff --git a/hyperparameter/m4/realtabformer/rtf-m4-20260505_021955/staged/public/test.csv b/hyperparameter/m4/realtabformer/rtf-m4-20260505_021955/staged/public/test.csv new file mode 100644 index 0000000000000000000000000000000000000000..c88a2e7cfcd715bb421cb56eb078033da45c4dc8 --- /dev/null +++ b/hyperparameter/m4/realtabformer/rtf-m4-20260505_021955/staged/public/test.csv @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:4c541b677fb2d45c5bc79338eeee9fd8c91484b195a0c2c546c2fbabf113b7ea +size 11298 diff --git a/hyperparameter/m4/realtabformer/rtf-m4-20260505_021955/staged/public/train.csv b/hyperparameter/m4/realtabformer/rtf-m4-20260505_021955/staged/public/train.csv new file mode 100644 index 0000000000000000000000000000000000000000..5a05019d786529e0617291766c4fbe016ca01bf5 --- /dev/null +++ b/hyperparameter/m4/realtabformer/rtf-m4-20260505_021955/staged/public/train.csv @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:614ebfac5f41d6f661aff675fa18c0f933a8d9bcc77ea71b7b2360c2f0155837 +size 90069 diff --git a/hyperparameter/m4/realtabformer/rtf-m4-20260505_021955/staged/public/val.csv b/hyperparameter/m4/realtabformer/rtf-m4-20260505_021955/staged/public/val.csv new file mode 100644 index 0000000000000000000000000000000000000000..d78fe5ad1537c437ba9ac2629f2aa60a6c17e708 --- /dev/null +++ b/hyperparameter/m4/realtabformer/rtf-m4-20260505_021955/staged/public/val.csv @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:e55f5edbe7942ff01630de91a9c70dfbc6445eba76c7b970350364546b67c2d7 +size 11218 diff --git a/hyperparameter/m4/realtabformer/rtf-m4-20260505_021955/staged/realtabformer/adapter_report.json b/hyperparameter/m4/realtabformer/rtf-m4-20260505_021955/staged/realtabformer/adapter_report.json new file mode 100644 index 0000000000000000000000000000000000000000..cf73a225ac8ace4dc709cb2157f7d6b4e1e63f85 --- /dev/null +++ b/hyperparameter/m4/realtabformer/rtf-m4-20260505_021955/staged/realtabformer/adapter_report.json @@ -0,0 +1,7 @@ +{ + "adapter_ready_status": "pass", + "adapter_fail_reason_code": null, + "adapter_fail_detail": null, + "adapter_transforms_applied": [], + "model_input_manifest": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/m4/realtabformer/rtf-m4-20260505_021955/staged/realtabformer/model_input_manifest.json" +} \ No newline at end of file diff --git a/hyperparameter/m4/realtabformer/rtf-m4-20260505_021955/staged/realtabformer/adapter_transforms_applied.json b/hyperparameter/m4/realtabformer/rtf-m4-20260505_021955/staged/realtabformer/adapter_transforms_applied.json new file mode 100644 index 0000000000000000000000000000000000000000..0637a088a01e8ddab3bf3fa98dbe804cbde1a0dc --- /dev/null +++ b/hyperparameter/m4/realtabformer/rtf-m4-20260505_021955/staged/realtabformer/adapter_transforms_applied.json @@ -0,0 +1 @@ +[] \ No newline at end of file diff --git a/hyperparameter/m4/realtabformer/rtf-m4-20260505_021955/staged/realtabformer/model_input_manifest.json b/hyperparameter/m4/realtabformer/rtf-m4-20260505_021955/staged/realtabformer/model_input_manifest.json new file mode 100644 index 0000000000000000000000000000000000000000..f4a89f2daeb20ce7e95ac925ee715b824f68d88c --- /dev/null +++ b/hyperparameter/m4/realtabformer/rtf-m4-20260505_021955/staged/realtabformer/model_input_manifest.json @@ -0,0 +1,154 @@ +{ + "dataset_id": "m4", + "model": "realtabformer", + "target_column": "charges", + "task_type": "regression", + "column_schema": [ + { + "name": "age", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 47, + "unique_ratio": 0.0212, + "example_values": [ + "46", + "38", + "19", + "27", + "26" + ] + } + }, + { + "name": "sex", + "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.000902, + "example_values": [ + "female", + "male" + ] + } + }, + { + "name": "bmi", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 538, + "unique_ratio": 0.24267, + "example_values": [ + "23.655", + "19.3", + "30.59", + "32.67", + "29.45" + ] + } + }, + { + "name": "children", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 6, + "unique_ratio": 0.002706, + "example_values": [ + "1", + "0", + "3", + "2", + "5" + ] + } + }, + { + "name": "smoker", + "role": "feature", + "semantic_type": "boolean", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 2, + "unique_ratio": 0.000902, + "example_values": [ + "yes", + "no" + ] + } + }, + { + "name": "region", + "role": "feature", + "semantic_type": "categorical", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 4, + "unique_ratio": 0.001804, + "example_values": [ + "northwest", + "southwest", + "southeast", + "northeast" + ] + } + }, + { + "name": "charges", + "role": "target", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 1281, + "unique_ratio": 0.577808, + "example_values": [ + "21677.28345", + "15820.699", + "1639.5631", + "2497.0383", + "2897.3235" + ] + } + } + ], + "public_manifest": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/m4/realtabformer/rtf-m4-20260505_021955/public_gate/staged_input_manifest.json", + "train_csv": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/m4/realtabformer/rtf-m4-20260505_021955/staged/public/train.csv", + "val_csv": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/m4/realtabformer/rtf-m4-20260505_021955/staged/public/val.csv", + "test_csv": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/m4/realtabformer/rtf-m4-20260505_021955/staged/public/test.csv", + "features_json": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/m4/realtabformer/rtf-m4-20260505_021955/staged/public/staged_features.json", + "public_gate_report": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/m4/realtabformer/rtf-m4-20260505_021955/public_gate/public_gate_report.json" +} \ No newline at end of file diff --git a/hyperparameter/m4/realtabformer/rtf-m4-20260505_021955/train_20260505_021955.log b/hyperparameter/m4/realtabformer/rtf-m4-20260505_021955/train_20260505_021955.log new file mode 100644 index 0000000000000000000000000000000000000000..cbb54ecfcbe71ea25fa211280e799c353a057535 --- /dev/null +++ b/hyperparameter/m4/realtabformer/rtf-m4-20260505_021955/train_20260505_021955.log @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:02377243978def675625dfefba76c10e75c3e8c5923d43952af6905826febed2 +size 41740 diff --git a/hyperparameter/m4/realtabformer/rtf-m4-20260505_022206/gen_20260505_022410.log b/hyperparameter/m4/realtabformer/rtf-m4-20260505_022206/gen_20260505_022410.log new file mode 100644 index 0000000000000000000000000000000000000000..6af05ea5e4f6b2b3b38d61a4b60b3c56e9fa3570 --- /dev/null +++ b/hyperparameter/m4/realtabformer/rtf-m4-20260505_022206/gen_20260505_022410.log @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:7248c85d6ef260bf01446f6f2baff298433b7d2b94e9cde5165ac504ef5fe3fb +size 1731 diff --git a/hyperparameter/m4/realtabformer/rtf-m4-20260505_022206/input_snapshot.json b/hyperparameter/m4/realtabformer/rtf-m4-20260505_022206/input_snapshot.json new file mode 100644 index 0000000000000000000000000000000000000000..9db22a39e5ccaaeedd23cf99efa32e16d4ed388a --- /dev/null +++ b/hyperparameter/m4/realtabformer/rtf-m4-20260505_022206/input_snapshot.json @@ -0,0 +1,36 @@ +{ + "dataset_id": "m4", + "model": "realtabformer", + "inputs": { + "train_csv": { + "path": "/data/jialinzhang/SynthesizePipeline-server/DatasetNew/m4/m4-train.csv", + "exists": true, + "size": 92191, + "sha256": "396b9d409ca21bf4a4cd329bdf5b7796aa0ae6356fa8d89b8eb669b5880b81f1" + }, + "val_csv": { + "path": "/data/jialinzhang/SynthesizePipeline-server/DatasetNew/m4/m4-val.csv", + "exists": true, + "size": 11482, + "sha256": "ee3c247d02f56e1687d03c381e13125d6a3a2a411ac7f202ba8520a4be9f1784" + }, + "test_csv": { + "path": "/data/jialinzhang/SynthesizePipeline-server/DatasetNew/m4/m4-test.csv", + "exists": true, + "size": 11559, + "sha256": "cadb9941124001b8fa7cb1ebae43b70a9ca56294f4df4d3c2f22c164c41757d4" + }, + "profile_json": { + "path": "/data/jialinzhang/SynthesizePipeline-server/DatasetNew/artifacts/data_core/tabular/m4/m4-dataset_profile.json", + "exists": true, + "size": 3336, + "sha256": "83e2764810e4a0e8cdece3a28dbd9134b7c9df6f2e56953e46d024ad2c4e035f" + }, + "contract_json": { + "path": "/data/jialinzhang/SynthesizePipeline-server/DatasetNew/artifacts/data_core/tabular/m4/m4-dataset_contract_v1.json", + "exists": true, + "size": 3810, + "sha256": "c23641b258629a845b164099bd0132886f8f6d0100e990494e0f92540f8987d9" + } + } +} \ No newline at end of file diff --git a/hyperparameter/m4/realtabformer/rtf-m4-20260505_022206/models_20epochs/id000017779190477064347648/rtf_config.json b/hyperparameter/m4/realtabformer/rtf-m4-20260505_022206/models_20epochs/id000017779190477064347648/rtf_config.json new file mode 100644 index 0000000000000000000000000000000000000000..25bcf61237f638247a072562bd6b1bed5def9fa6 --- /dev/null +++ b/hyperparameter/m4/realtabformer/rtf-m4-20260505_022206/models_20epochs/id000017779190477064347648/rtf_config.json @@ -0,0 +1 @@ +{"model_type": "tabular", "tabular_config": {"transformers_version": "5.5.3", "architectures": ["GPT2LMHeadModel"], "output_hidden_states": false, "return_dict": true, "dtype": "float32", "chunk_size_feed_forward": 0, "is_encoder_decoder": false, "id2label": {"0": "LABEL_0", "1": "LABEL_1"}, "label2id": {"LABEL_0": 0, "LABEL_1": 1}, "problem_type": null, "vocab_size": 167, "n_positions": 1024, "n_embd": 768, "n_layer": 6, "n_head": 12, "n_inner": null, "activation_function": "gelu_new", "resid_pdrop": 0.1, "embd_pdrop": 0.1, "attn_pdrop": 0.1, "layer_norm_epsilon": 1e-05, "initializer_range": 0.02, "summary_type": "cls_index", "summary_use_proj": true, "summary_activation": null, "summary_proj_to_labels": true, "summary_first_dropout": 0.1, "scale_attn_weights": true, "use_cache": false, "bos_token_id": 5, "eos_token_id": 6, "pad_token_id": null, "scale_attn_by_inverse_layer_idx": false, "reorder_and_upcast_attn": false, "add_cross_attention": false, "tie_word_embeddings": true, "_name_or_path": "", "model_type": "gpt2", "output_attentions": false}, "checkpoints_dir": "rtf_checkpoints", "samples_save_dir": "rtf_samples", "full_save_dir": "rtf_full_save", "epochs": 20, "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": 20, "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": ["age", "sex", "bmi", "children", "smoker", "region", "charges"], "column_dtypes": {"age": "int64", "sex": "object", "bmi": "float64", "children": "int64", "smoker": "object", "region": "object", "charges": "float64"}, "column_has_missing": {"age": false, "sex": false, "bmi": false, "children": false, "smoker": false, "region": false, "charges": false}, "drop_na_cols": ["age", "sex", "bmi", "children", "smoker", "region", "charges"], "processed_columns": ["0___NUMERIC___age_00", "0___NUMERIC___age_01", "1___CATEGORICAL___sex", "2___NUMERIC___bmi_00", "2___NUMERIC___bmi_01", "2___NUMERIC___bmi_02", "2___NUMERIC___bmi_03", "2___NUMERIC___bmi_04", "2___NUMERIC___bmi_05", "3___NUMERIC___children_00", "4___CATEGORICAL___smoker", "5___CATEGORICAL___region", "6___NUMERIC___charges_00", "6___NUMERIC___charges_01", "6___NUMERIC___charges_02", "6___NUMERIC___charges_03", "6___NUMERIC___charges_04", "6___NUMERIC___charges_05", "6___NUMERIC___charges_06", "6___NUMERIC___charges_07", "6___NUMERIC___charges_08", "6___NUMERIC___charges_09"], "numeric_columns": ["age", "bmi", "children", "charges"], "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___age_00___1", "12": "0___NUMERIC___age_00___2", "13": "0___NUMERIC___age_00___3", "14": "0___NUMERIC___age_00___4", "15": "0___NUMERIC___age_00___5", "16": "0___NUMERIC___age_00___6", "17": "0___NUMERIC___age_01___0", "18": "0___NUMERIC___age_01___1", "19": "0___NUMERIC___age_01___2", "20": "0___NUMERIC___age_01___3", "21": "0___NUMERIC___age_01___4", "22": "0___NUMERIC___age_01___5", "23": "0___NUMERIC___age_01___6", "24": "0___NUMERIC___age_01___7", "25": "0___NUMERIC___age_01___8", "26": "0___NUMERIC___age_01___9", "27": "1___CATEGORICAL___sex___female", "28": "1___CATEGORICAL___sex___male", "29": "2___NUMERIC___bmi_00___1", "30": "2___NUMERIC___bmi_00___2", "31": "2___NUMERIC___bmi_00___3", "32": "2___NUMERIC___bmi_00___4", "33": "2___NUMERIC___bmi_00___5", "34": "2___NUMERIC___bmi_01___0", "35": "2___NUMERIC___bmi_01___1", "36": "2___NUMERIC___bmi_01___2", "37": "2___NUMERIC___bmi_01___3", "38": "2___NUMERIC___bmi_01___4", "39": "2___NUMERIC___bmi_01___5", "40": "2___NUMERIC___bmi_01___6", "41": "2___NUMERIC___bmi_01___7", "42": "2___NUMERIC___bmi_01___8", "43": "2___NUMERIC___bmi_01___9", "44": "2___NUMERIC___bmi_02___.", "45": "2___NUMERIC___bmi_03___0", "46": "2___NUMERIC___bmi_03___1", "47": "2___NUMERIC___bmi_03___2", "48": "2___NUMERIC___bmi_03___3", "49": "2___NUMERIC___bmi_03___4", "50": "2___NUMERIC___bmi_03___5", "51": "2___NUMERIC___bmi_03___6", "52": "2___NUMERIC___bmi_03___7", "53": "2___NUMERIC___bmi_03___8", "54": "2___NUMERIC___bmi_03___9", "55": "2___NUMERIC___bmi_04___0", "56": "2___NUMERIC___bmi_04___1", "57": "2___NUMERIC___bmi_04___2", "58": "2___NUMERIC___bmi_04___3", "59": "2___NUMERIC___bmi_04___4", "60": "2___NUMERIC___bmi_04___5", "61": "2___NUMERIC___bmi_04___6", "62": "2___NUMERIC___bmi_04___7", "63": "2___NUMERIC___bmi_04___8", "64": "2___NUMERIC___bmi_04___9", "65": "2___NUMERIC___bmi_05___0", "66": "2___NUMERIC___bmi_05___5", "67": "3___NUMERIC___children_00___0", "68": "3___NUMERIC___children_00___1", "69": "3___NUMERIC___children_00___2", "70": "3___NUMERIC___children_00___3", "71": "3___NUMERIC___children_00___4", "72": "3___NUMERIC___children_00___5", "73": "4___CATEGORICAL___smoker___no", "74": "4___CATEGORICAL___smoker___yes", "75": "5___CATEGORICAL___region___northeast", "76": "5___CATEGORICAL___region___northwest", "77": "5___CATEGORICAL___region___southeast", "78": "5___CATEGORICAL___region___southwest", "79": "6___NUMERIC___charges_00___0", "80": "6___NUMERIC___charges_00___1", "81": "6___NUMERIC___charges_00___2", "82": "6___NUMERIC___charges_00___3", "83": "6___NUMERIC___charges_00___4", "84": "6___NUMERIC___charges_00___5", "85": "6___NUMERIC___charges_00___6", "86": "6___NUMERIC___charges_01___0", "87": "6___NUMERIC___charges_01___1", "88": "6___NUMERIC___charges_01___2", "89": "6___NUMERIC___charges_01___3", "90": "6___NUMERIC___charges_01___4", "91": "6___NUMERIC___charges_01___5", "92": "6___NUMERIC___charges_01___6", "93": "6___NUMERIC___charges_01___7", "94": "6___NUMERIC___charges_01___8", "95": "6___NUMERIC___charges_01___9", "96": "6___NUMERIC___charges_02___0", "97": "6___NUMERIC___charges_02___1", "98": "6___NUMERIC___charges_02___2", "99": "6___NUMERIC___charges_02___3", "100": "6___NUMERIC___charges_02___4", "101": "6___NUMERIC___charges_02___5", "102": "6___NUMERIC___charges_02___6", "103": "6___NUMERIC___charges_02___7", "104": "6___NUMERIC___charges_02___8", "105": "6___NUMERIC___charges_02___9", "106": "6___NUMERIC___charges_03___0", "107": "6___NUMERIC___charges_03___1", "108": "6___NUMERIC___charges_03___2", "109": "6___NUMERIC___charges_03___3", "110": "6___NUMERIC___charges_03___4", "111": "6___NUMERIC___charges_03___5", "112": "6___NUMERIC___charges_03___6", "113": "6___NUMERIC___charges_03___7", "114": "6___NUMERIC___charges_03___8", "115": "6___NUMERIC___charges_03___9", "116": "6___NUMERIC___charges_04___0", "117": "6___NUMERIC___charges_04___1", "118": "6___NUMERIC___charges_04___2", "119": "6___NUMERIC___charges_04___3", "120": "6___NUMERIC___charges_04___4", "121": "6___NUMERIC___charges_04___5", "122": "6___NUMERIC___charges_04___6", "123": "6___NUMERIC___charges_04___7", "124": "6___NUMERIC___charges_04___8", "125": "6___NUMERIC___charges_04___9", "126": "6___NUMERIC___charges_05___.", "127": "6___NUMERIC___charges_06___0", "128": "6___NUMERIC___charges_06___1", "129": "6___NUMERIC___charges_06___2", "130": "6___NUMERIC___charges_06___3", "131": "6___NUMERIC___charges_06___4", "132": "6___NUMERIC___charges_06___5", "133": "6___NUMERIC___charges_06___6", "134": "6___NUMERIC___charges_06___7", "135": "6___NUMERIC___charges_06___8", "136": "6___NUMERIC___charges_06___9", "137": "6___NUMERIC___charges_07___0", "138": "6___NUMERIC___charges_07___1", "139": "6___NUMERIC___charges_07___2", "140": "6___NUMERIC___charges_07___3", "141": "6___NUMERIC___charges_07___4", "142": "6___NUMERIC___charges_07___5", "143": "6___NUMERIC___charges_07___6", "144": "6___NUMERIC___charges_07___7", "145": "6___NUMERIC___charges_07___8", "146": "6___NUMERIC___charges_07___9", "147": "6___NUMERIC___charges_08___0", "148": "6___NUMERIC___charges_08___1", "149": "6___NUMERIC___charges_08___2", "150": "6___NUMERIC___charges_08___3", "151": "6___NUMERIC___charges_08___4", "152": "6___NUMERIC___charges_08___5", "153": "6___NUMERIC___charges_08___6", "154": "6___NUMERIC___charges_08___7", "155": "6___NUMERIC___charges_08___8", "156": "6___NUMERIC___charges_08___9", "157": "6___NUMERIC___charges_09___0", "158": "6___NUMERIC___charges_09___1", "159": "6___NUMERIC___charges_09___2", "160": "6___NUMERIC___charges_09___3", "161": "6___NUMERIC___charges_09___4", "162": "6___NUMERIC___charges_09___5", "163": "6___NUMERIC___charges_09___6", "164": "6___NUMERIC___charges_09___7", "165": "6___NUMERIC___charges_09___8", "166": "6___NUMERIC___charges_09___9"}, "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___age_00___1": 11, "0___NUMERIC___age_00___2": 12, "0___NUMERIC___age_00___3": 13, "0___NUMERIC___age_00___4": 14, "0___NUMERIC___age_00___5": 15, "0___NUMERIC___age_00___6": 16, "0___NUMERIC___age_01___0": 17, "0___NUMERIC___age_01___1": 18, "0___NUMERIC___age_01___2": 19, "0___NUMERIC___age_01___3": 20, "0___NUMERIC___age_01___4": 21, "0___NUMERIC___age_01___5": 22, "0___NUMERIC___age_01___6": 23, "0___NUMERIC___age_01___7": 24, "0___NUMERIC___age_01___8": 25, "0___NUMERIC___age_01___9": 26, "1___CATEGORICAL___sex___female": 27, "1___CATEGORICAL___sex___male": 28, "2___NUMERIC___bmi_00___1": 29, "2___NUMERIC___bmi_00___2": 30, "2___NUMERIC___bmi_00___3": 31, "2___NUMERIC___bmi_00___4": 32, "2___NUMERIC___bmi_00___5": 33, "2___NUMERIC___bmi_01___0": 34, "2___NUMERIC___bmi_01___1": 35, "2___NUMERIC___bmi_01___2": 36, "2___NUMERIC___bmi_01___3": 37, "2___NUMERIC___bmi_01___4": 38, "2___NUMERIC___bmi_01___5": 39, "2___NUMERIC___bmi_01___6": 40, "2___NUMERIC___bmi_01___7": 41, "2___NUMERIC___bmi_01___8": 42, "2___NUMERIC___bmi_01___9": 43, "2___NUMERIC___bmi_02___.": 44, "2___NUMERIC___bmi_03___0": 45, "2___NUMERIC___bmi_03___1": 46, "2___NUMERIC___bmi_03___2": 47, "2___NUMERIC___bmi_03___3": 48, "2___NUMERIC___bmi_03___4": 49, "2___NUMERIC___bmi_03___5": 50, "2___NUMERIC___bmi_03___6": 51, "2___NUMERIC___bmi_03___7": 52, "2___NUMERIC___bmi_03___8": 53, "2___NUMERIC___bmi_03___9": 54, "2___NUMERIC___bmi_04___0": 55, "2___NUMERIC___bmi_04___1": 56, "2___NUMERIC___bmi_04___2": 57, "2___NUMERIC___bmi_04___3": 58, "2___NUMERIC___bmi_04___4": 59, "2___NUMERIC___bmi_04___5": 60, "2___NUMERIC___bmi_04___6": 61, "2___NUMERIC___bmi_04___7": 62, "2___NUMERIC___bmi_04___8": 63, "2___NUMERIC___bmi_04___9": 64, "2___NUMERIC___bmi_05___0": 65, "2___NUMERIC___bmi_05___5": 66, "3___NUMERIC___children_00___0": 67, "3___NUMERIC___children_00___1": 68, "3___NUMERIC___children_00___2": 69, "3___NUMERIC___children_00___3": 70, "3___NUMERIC___children_00___4": 71, "3___NUMERIC___children_00___5": 72, "4___CATEGORICAL___smoker___no": 73, "4___CATEGORICAL___smoker___yes": 74, "5___CATEGORICAL___region___northeast": 75, "5___CATEGORICAL___region___northwest": 76, "5___CATEGORICAL___region___southeast": 77, "5___CATEGORICAL___region___southwest": 78, "6___NUMERIC___charges_00___0": 79, "6___NUMERIC___charges_00___1": 80, "6___NUMERIC___charges_00___2": 81, "6___NUMERIC___charges_00___3": 82, "6___NUMERIC___charges_00___4": 83, "6___NUMERIC___charges_00___5": 84, "6___NUMERIC___charges_00___6": 85, "6___NUMERIC___charges_01___0": 86, "6___NUMERIC___charges_01___1": 87, "6___NUMERIC___charges_01___2": 88, "6___NUMERIC___charges_01___3": 89, "6___NUMERIC___charges_01___4": 90, "6___NUMERIC___charges_01___5": 91, "6___NUMERIC___charges_01___6": 92, "6___NUMERIC___charges_01___7": 93, "6___NUMERIC___charges_01___8": 94, "6___NUMERIC___charges_01___9": 95, "6___NUMERIC___charges_02___0": 96, "6___NUMERIC___charges_02___1": 97, "6___NUMERIC___charges_02___2": 98, "6___NUMERIC___charges_02___3": 99, "6___NUMERIC___charges_02___4": 100, "6___NUMERIC___charges_02___5": 101, "6___NUMERIC___charges_02___6": 102, "6___NUMERIC___charges_02___7": 103, "6___NUMERIC___charges_02___8": 104, "6___NUMERIC___charges_02___9": 105, "6___NUMERIC___charges_03___0": 106, "6___NUMERIC___charges_03___1": 107, "6___NUMERIC___charges_03___2": 108, "6___NUMERIC___charges_03___3": 109, "6___NUMERIC___charges_03___4": 110, "6___NUMERIC___charges_03___5": 111, "6___NUMERIC___charges_03___6": 112, "6___NUMERIC___charges_03___7": 113, "6___NUMERIC___charges_03___8": 114, "6___NUMERIC___charges_03___9": 115, "6___NUMERIC___charges_04___0": 116, "6___NUMERIC___charges_04___1": 117, "6___NUMERIC___charges_04___2": 118, "6___NUMERIC___charges_04___3": 119, "6___NUMERIC___charges_04___4": 120, "6___NUMERIC___charges_04___5": 121, "6___NUMERIC___charges_04___6": 122, "6___NUMERIC___charges_04___7": 123, "6___NUMERIC___charges_04___8": 124, "6___NUMERIC___charges_04___9": 125, "6___NUMERIC___charges_05___.": 126, "6___NUMERIC___charges_06___0": 127, "6___NUMERIC___charges_06___1": 128, "6___NUMERIC___charges_06___2": 129, "6___NUMERIC___charges_06___3": 130, "6___NUMERIC___charges_06___4": 131, "6___NUMERIC___charges_06___5": 132, "6___NUMERIC___charges_06___6": 133, "6___NUMERIC___charges_06___7": 134, "6___NUMERIC___charges_06___8": 135, "6___NUMERIC___charges_06___9": 136, "6___NUMERIC___charges_07___0": 137, "6___NUMERIC___charges_07___1": 138, "6___NUMERIC___charges_07___2": 139, "6___NUMERIC___charges_07___3": 140, "6___NUMERIC___charges_07___4": 141, "6___NUMERIC___charges_07___5": 142, "6___NUMERIC___charges_07___6": 143, "6___NUMERIC___charges_07___7": 144, "6___NUMERIC___charges_07___8": 145, "6___NUMERIC___charges_07___9": 146, "6___NUMERIC___charges_08___0": 147, "6___NUMERIC___charges_08___1": 148, "6___NUMERIC___charges_08___2": 149, "6___NUMERIC___charges_08___3": 150, "6___NUMERIC___charges_08___4": 151, "6___NUMERIC___charges_08___5": 152, "6___NUMERIC___charges_08___6": 153, "6___NUMERIC___charges_08___7": 154, "6___NUMERIC___charges_08___8": 155, "6___NUMERIC___charges_08___9": 156, "6___NUMERIC___charges_09___0": 157, "6___NUMERIC___charges_09___1": 158, "6___NUMERIC___charges_09___2": 159, "6___NUMERIC___charges_09___3": 160, "6___NUMERIC___charges_09___4": 161, "6___NUMERIC___charges_09___5": 162, "6___NUMERIC___charges_09___6": 163, "6___NUMERIC___charges_09___7": 164, "6___NUMERIC___charges_09___8": 165, "6___NUMERIC___charges_09___9": 166}, "column_token_ids": {"0___NUMERIC___age_00": [11, 12, 13, 14, 15, 16], "0___NUMERIC___age_01": [17, 18, 19, 20, 21, 22, 23, 24, 25, 26], "1___CATEGORICAL___sex": [27, 28], "2___NUMERIC___bmi_00": [29, 30, 31, 32, 33], "2___NUMERIC___bmi_01": [34, 35, 36, 37, 38, 39, 40, 41, 42, 43], "2___NUMERIC___bmi_02": [44], "2___NUMERIC___bmi_03": [45, 46, 47, 48, 49, 50, 51, 52, 53, 54], "2___NUMERIC___bmi_04": [55, 56, 57, 58, 59, 60, 61, 62, 63, 64], "2___NUMERIC___bmi_05": [65, 66], "3___NUMERIC___children_00": [67, 68, 69, 70, 71, 72], "4___CATEGORICAL___smoker": [73, 74], "5___CATEGORICAL___region": [75, 76, 77, 78], "6___NUMERIC___charges_00": [79, 80, 81, 82, 83, 84, 85], "6___NUMERIC___charges_01": [86, 87, 88, 89, 90, 91, 92, 93, 94, 95], "6___NUMERIC___charges_02": [96, 97, 98, 99, 100, 101, 102, 103, 104, 105], "6___NUMERIC___charges_03": [106, 107, 108, 109, 110, 111, 112, 113, 114, 115], "6___NUMERIC___charges_04": [116, 117, 118, 119, 120, 121, 122, 123, 124, 125], "6___NUMERIC___charges_05": [126], "6___NUMERIC___charges_06": [127, 128, 129, 130, 131, 132, 133, 134, 135, 136], "6___NUMERIC___charges_07": [137, 138, 139, 140, 141, 142, 143, 144, 145, 146], "6___NUMERIC___charges_08": [147, 148, 149, 150, 151, 152, 153, 154, 155, 156], "6___NUMERIC___charges_09": [157, 158, 159, 160, 161, 162, 163, 164, 165, 166]}}, "tabular_max_length": 24, "relational_max_length": null, "tabular_col_size": 2217, "relational_col_size": null, "col_transform_data": {"age": {"max_len": 10, "numeric_precision": 4, "mx_sig": -1, "zfill": 2, "numeric_nparts": 1}, "bmi": {"max_len": 10, "numeric_precision": 4, "mx_sig": 2, "ljust": 6, "numeric_nparts": 1}, "children": {"max_len": 10, "numeric_precision": 4, "mx_sig": -1, "zfill": 1, "numeric_nparts": 1}, "charges": {"max_len": 10, "numeric_precision": 4, "mx_sig": 5, "ljust": 10, "numeric_nparts": 1}}, "in_col_transform_data": null, "col_idx_ids": {"0": [11, 12, 13, 14, 15, 16], "1": [17, 18, 19, 20, 21, 22, 23, 24, 25, 26], "2": [27, 28], "3": [29, 30, 31, 32, 33], "4": [34, 35, 36, 37, 38, 39, 40, 41, 42, 43], "5": [44], "6": [45, 46, 47, 48, 49, 50, 51, 52, 53, 54], "7": [55, 56, 57, 58, 59, 60, 61, 62, 63, 64], "8": [65, 66], "9": [67, 68, 69, 70, 71, 72], "10": [73, 74], "11": [75, 76, 77, 78], "12": [79, 80, 81, 82, 83, 84, 85], "13": [86, 87, 88, 89, 90, 91, 92, 93, 94, 95], "14": [96, 97, 98, 99, 100, 101, 102, 103, 104, 105], "15": [106, 107, 108, 109, 110, 111, 112, 113, 114, 115], "16": [116, 117, 118, 119, 120, 121, 122, 123, 124, 125], "17": [126], "18": [127, 128, 129, 130, 131, 132, 133, 134, 135, 136], "19": [137, 138, 139, 140, 141, 142, 143, 144, 145, 146], "20": [147, 148, 149, 150, 151, 152, 153, 154, 155, 156], "21": [157, 158, 159, 160, 161, 162, 163, 164, 165, 166]}, "random_state": 1029, "numeric_nparts": 1, "numeric_precision": 4, "numeric_max_len": 10, "experiment_id": "id000017779190477064347648", "trainer_state": null, "target_col": null, "realtabformer_version": "0.2.4"} \ No newline at end of file diff --git a/hyperparameter/m4/realtabformer/rtf-m4-20260505_022206/models_20epochs/id000017779190477064347648/rtf_model.pt b/hyperparameter/m4/realtabformer/rtf-m4-20260505_022206/models_20epochs/id000017779190477064347648/rtf_model.pt new file mode 100644 index 0000000000000000000000000000000000000000..20a45e334093ed9c4a885a2e14f85e07dc58c93e --- /dev/null +++ b/hyperparameter/m4/realtabformer/rtf-m4-20260505_022206/models_20epochs/id000017779190477064347648/rtf_model.pt @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:fbbe2ad9833c536ab24d106730e1c8879f3402ff2e85d71047764712388a876d +size 173802979 diff --git a/hyperparameter/m4/realtabformer/rtf-m4-20260505_022206/public_gate/normalized_schema_snapshot.json b/hyperparameter/m4/realtabformer/rtf-m4-20260505_022206/public_gate/normalized_schema_snapshot.json new file mode 100644 index 0000000000000000000000000000000000000000..31ed9818686b11907df75e872e4ffbe010330880 --- /dev/null +++ b/hyperparameter/m4/realtabformer/rtf-m4-20260505_022206/public_gate/normalized_schema_snapshot.json @@ -0,0 +1,147 @@ +{ + "dataset_id": "m4", + "target_column": "charges", + "task_type": "regression", + "columns": [ + { + "name": "age", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 47, + "unique_ratio": 0.0212, + "example_values": [ + "46", + "38", + "19", + "27", + "26" + ] + } + }, + { + "name": "sex", + "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.000902, + "example_values": [ + "female", + "male" + ] + } + }, + { + "name": "bmi", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 538, + "unique_ratio": 0.24267, + "example_values": [ + "23.655", + "19.3", + "30.59", + "32.67", + "29.45" + ] + } + }, + { + "name": "children", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 6, + "unique_ratio": 0.002706, + "example_values": [ + "1", + "0", + "3", + "2", + "5" + ] + } + }, + { + "name": "smoker", + "role": "feature", + "semantic_type": "boolean", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 2, + "unique_ratio": 0.000902, + "example_values": [ + "yes", + "no" + ] + } + }, + { + "name": "region", + "role": "feature", + "semantic_type": "categorical", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 4, + "unique_ratio": 0.001804, + "example_values": [ + "northwest", + "southwest", + "southeast", + "northeast" + ] + } + }, + { + "name": "charges", + "role": "target", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 1281, + "unique_ratio": 0.577808, + "example_values": [ + "21677.28345", + "15820.699", + "1639.5631", + "2497.0383", + "2897.3235" + ] + } + } + ] +} \ No newline at end of file diff --git a/hyperparameter/m4/realtabformer/rtf-m4-20260505_022206/public_gate/public_gate_report.json b/hyperparameter/m4/realtabformer/rtf-m4-20260505_022206/public_gate/public_gate_report.json new file mode 100644 index 0000000000000000000000000000000000000000..e7a25408e2574124629ea9437356551e4d6f4790 --- /dev/null +++ b/hyperparameter/m4/realtabformer/rtf-m4-20260505_022206/public_gate/public_gate_report.json @@ -0,0 +1,37 @@ +{ + "dataset_id": "m4", + "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": "charges", + "task_type": "regression", + "input_splits": { + "train": "/data/jialinzhang/SynthesizePipeline-server/DatasetNew/m4/m4-train.csv", + "val": "/data/jialinzhang/SynthesizePipeline-server/DatasetNew/m4/m4-val.csv", + "test": "/data/jialinzhang/SynthesizePipeline-server/DatasetNew/m4/m4-test.csv" + } +} \ No newline at end of file diff --git a/hyperparameter/m4/realtabformer/rtf-m4-20260505_022206/public_gate/staged_input_manifest.json b/hyperparameter/m4/realtabformer/rtf-m4-20260505_022206/public_gate/staged_input_manifest.json new file mode 100644 index 0000000000000000000000000000000000000000..021e8267569c0516563a6830222c6923345a565e --- /dev/null +++ b/hyperparameter/m4/realtabformer/rtf-m4-20260505_022206/public_gate/staged_input_manifest.json @@ -0,0 +1,152 @@ +{ + "dataset_id": "m4", + "target_column": "charges", + "task_type": "regression", + "train_csv": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/m4/realtabformer/rtf-m4-20260505_022206/staged/public/train.csv", + "val_csv": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/m4/realtabformer/rtf-m4-20260505_022206/staged/public/val.csv", + "test_csv": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/m4/realtabformer/rtf-m4-20260505_022206/staged/public/test.csv", + "features_json": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/m4/realtabformer/rtf-m4-20260505_022206/staged/public/staged_features.json", + "public_gate_report": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/m4/realtabformer/rtf-m4-20260505_022206/public_gate/public_gate_report.json", + "column_schema": [ + { + "name": "age", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 47, + "unique_ratio": 0.0212, + "example_values": [ + "46", + "38", + "19", + "27", + "26" + ] + } + }, + { + "name": "sex", + "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.000902, + "example_values": [ + "female", + "male" + ] + } + }, + { + "name": "bmi", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 538, + "unique_ratio": 0.24267, + "example_values": [ + "23.655", + "19.3", + "30.59", + "32.67", + "29.45" + ] + } + }, + { + "name": "children", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 6, + "unique_ratio": 0.002706, + "example_values": [ + "1", + "0", + "3", + "2", + "5" + ] + } + }, + { + "name": "smoker", + "role": "feature", + "semantic_type": "boolean", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 2, + "unique_ratio": 0.000902, + "example_values": [ + "yes", + "no" + ] + } + }, + { + "name": "region", + "role": "feature", + "semantic_type": "categorical", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 4, + "unique_ratio": 0.001804, + "example_values": [ + "northwest", + "southwest", + "southeast", + "northeast" + ] + } + }, + { + "name": "charges", + "role": "target", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 1281, + "unique_ratio": 0.577808, + "example_values": [ + "21677.28345", + "15820.699", + "1639.5631", + "2497.0383", + "2897.3235" + ] + } + } + ] +} \ No newline at end of file diff --git a/hyperparameter/m4/realtabformer/rtf-m4-20260505_022206/realtabformer_features.json b/hyperparameter/m4/realtabformer/rtf-m4-20260505_022206/realtabformer_features.json new file mode 100644 index 0000000000000000000000000000000000000000..d6acd098c35111f423f3ffff2cfd1754bc5dfebc --- /dev/null +++ b/hyperparameter/m4/realtabformer/rtf-m4-20260505_022206/realtabformer_features.json @@ -0,0 +1,37 @@ +[ + { + "feature_name": "age", + "data_type": "continuous", + "is_target": false + }, + { + "feature_name": "sex", + "data_type": "categorical", + "is_target": false + }, + { + "feature_name": "bmi", + "data_type": "continuous", + "is_target": false + }, + { + "feature_name": "children", + "data_type": "continuous", + "is_target": false + }, + { + "feature_name": "smoker", + "data_type": "binary", + "is_target": false + }, + { + "feature_name": "region", + "data_type": "categorical", + "is_target": false + }, + { + "feature_name": "charges", + "data_type": "continuous", + "is_target": true + } +] \ No newline at end of file diff --git a/hyperparameter/m4/realtabformer/rtf-m4-20260505_022206/rtf-m4-2217-20260505_022410.csv b/hyperparameter/m4/realtabformer/rtf-m4-20260505_022206/rtf-m4-2217-20260505_022410.csv new file mode 100644 index 0000000000000000000000000000000000000000..ec8cabea48112cdedb2d64df0bc3eca61c6ce36b --- /dev/null +++ b/hyperparameter/m4/realtabformer/rtf-m4-20260505_022206/rtf-m4-2217-20260505_022410.csv @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:723a92c9bdd8b12c7c36266fd18ab51463f7d477fdc24aeba3936a770063222f +size 89208 diff --git a/hyperparameter/m4/realtabformer/rtf-m4-20260505_022206/rtf_checkpoints/checkpoint-1190/config.json b/hyperparameter/m4/realtabformer/rtf-m4-20260505_022206/rtf_checkpoints/checkpoint-1190/config.json new file mode 100644 index 0000000000000000000000000000000000000000..69b1961f0cbafdc846150e71a2d82b4ce3beb94c --- /dev/null +++ b/hyperparameter/m4/realtabformer/rtf-m4-20260505_022206/rtf_checkpoints/checkpoint-1190/config.json @@ -0,0 +1,34 @@ +{ + "activation_function": "gelu_new", + "add_cross_attention": false, + "architectures": [ + "GPT2LMHeadModel" + ], + "attn_pdrop": 0.1, + "bos_token_id": 5, + "dtype": "float32", + "embd_pdrop": 0.1, + "eos_token_id": 6, + "initializer_range": 0.02, + "layer_norm_epsilon": 1e-05, + "model_type": "gpt2", + "n_embd": 768, + "n_head": 12, + "n_inner": null, + "n_layer": 6, + "n_positions": 1024, + "pad_token_id": null, + "reorder_and_upcast_attn": false, + "resid_pdrop": 0.1, + "scale_attn_by_inverse_layer_idx": false, + "scale_attn_weights": true, + "summary_activation": null, + "summary_first_dropout": 0.1, + "summary_proj_to_labels": true, + "summary_type": "cls_index", + "summary_use_proj": true, + "tie_word_embeddings": true, + "transformers_version": "5.5.3", + "use_cache": false, + "vocab_size": 167 +} diff --git a/hyperparameter/m4/realtabformer/rtf-m4-20260505_022206/rtf_checkpoints/checkpoint-1190/generation_config.json b/hyperparameter/m4/realtabformer/rtf-m4-20260505_022206/rtf_checkpoints/checkpoint-1190/generation_config.json new file mode 100644 index 0000000000000000000000000000000000000000..ffe89567780e75b5c22eade9be971483b9618f39 --- /dev/null +++ b/hyperparameter/m4/realtabformer/rtf-m4-20260505_022206/rtf_checkpoints/checkpoint-1190/generation_config.json @@ -0,0 +1,9 @@ +{ + "_from_model_config": true, + "bos_token_id": 5, + "eos_token_id": 6, + "output_attentions": false, + "output_hidden_states": false, + "transformers_version": "5.5.3", + "use_cache": true +} diff --git a/hyperparameter/m4/realtabformer/rtf-m4-20260505_022206/rtf_checkpoints/checkpoint-1190/model.safetensors b/hyperparameter/m4/realtabformer/rtf-m4-20260505_022206/rtf_checkpoints/checkpoint-1190/model.safetensors new file mode 100644 index 0000000000000000000000000000000000000000..ed448fbcc7bcf1a00fe88940cc960f91cf1845de --- /dev/null +++ b/hyperparameter/m4/realtabformer/rtf-m4-20260505_022206/rtf_checkpoints/checkpoint-1190/model.safetensors @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:b2956a4e6c027449b76274ba8c1452881e9073cb23000b9e4c22a436f1160628 +size 173781448 diff --git a/hyperparameter/m4/realtabformer/rtf-m4-20260505_022206/rtf_checkpoints/checkpoint-1190/optimizer.pt b/hyperparameter/m4/realtabformer/rtf-m4-20260505_022206/rtf_checkpoints/checkpoint-1190/optimizer.pt new file mode 100644 index 0000000000000000000000000000000000000000..fd739cffbd9e4f047f9c92605e6804977b3f6322 --- /dev/null +++ b/hyperparameter/m4/realtabformer/rtf-m4-20260505_022206/rtf_checkpoints/checkpoint-1190/optimizer.pt @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:e1a262973b21464dac8362739393bbf690fca6c33e41219c622e161a749fc9ed +size 347611979 diff --git a/hyperparameter/m4/realtabformer/rtf-m4-20260505_022206/rtf_checkpoints/checkpoint-1190/rng_state.pth b/hyperparameter/m4/realtabformer/rtf-m4-20260505_022206/rtf_checkpoints/checkpoint-1190/rng_state.pth new file mode 100644 index 0000000000000000000000000000000000000000..c7807b4dec0f46f8220a8f3d976a7d8e69e6cf07 --- /dev/null +++ b/hyperparameter/m4/realtabformer/rtf-m4-20260505_022206/rtf_checkpoints/checkpoint-1190/rng_state.pth @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:979abe9ba114cb7d59b6d79c103e7c8433242e6306b6abead59264546d3cf176 +size 14645 diff --git a/hyperparameter/m4/realtabformer/rtf-m4-20260505_022206/rtf_checkpoints/checkpoint-1190/scaler.pt b/hyperparameter/m4/realtabformer/rtf-m4-20260505_022206/rtf_checkpoints/checkpoint-1190/scaler.pt new file mode 100644 index 0000000000000000000000000000000000000000..c0ccb7fd96ca2dfb29588b9a4851884a83ad2d7a --- /dev/null +++ b/hyperparameter/m4/realtabformer/rtf-m4-20260505_022206/rtf_checkpoints/checkpoint-1190/scaler.pt @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:b327c7c6393a98099530fa0d8bd4bf59b97862fe7766cd5f7f469b0f1dda0f89 +size 1383 diff --git a/hyperparameter/m4/realtabformer/rtf-m4-20260505_022206/rtf_checkpoints/checkpoint-1190/scheduler.pt b/hyperparameter/m4/realtabformer/rtf-m4-20260505_022206/rtf_checkpoints/checkpoint-1190/scheduler.pt new file mode 100644 index 0000000000000000000000000000000000000000..c0d52e95e4d02b2edfb8c9601d4a4b18de630ff4 --- /dev/null +++ b/hyperparameter/m4/realtabformer/rtf-m4-20260505_022206/rtf_checkpoints/checkpoint-1190/scheduler.pt @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:a4fa07dca0f040d6afa18cf71ceae149e738e78c8adb29ec47b10012dedf9622 +size 1465 diff --git a/hyperparameter/m4/realtabformer/rtf-m4-20260505_022206/rtf_checkpoints/checkpoint-1190/trainer_state.json b/hyperparameter/m4/realtabformer/rtf-m4-20260505_022206/rtf_checkpoints/checkpoint-1190/trainer_state.json new file mode 100644 index 0000000000000000000000000000000000000000..f0dceb80bf451e03f072e194e36fbd9c05fa5917 --- /dev/null +++ b/hyperparameter/m4/realtabformer/rtf-m4-20260505_022206/rtf_checkpoints/checkpoint-1190/trainer_state.json @@ -0,0 +1,111 @@ +{ + "best_global_step": null, + "best_metric": null, + "best_model_checkpoint": null, + "epoch": 17.0, + "eval_steps": 100, + "global_step": 1190, + "is_hyper_param_search": false, + "is_local_process_zero": true, + "is_world_process_zero": true, + "log_history": [ + { + "epoch": 1.4316546762589928, + "grad_norm": 0.3574489653110504, + "learning_rate": 4.6464285714285714e-05, + "loss": 1.9778610229492188, + "step": 100 + }, + { + "epoch": 2.8633093525179856, + "grad_norm": 0.34496113657951355, + "learning_rate": 4.289285714285715e-05, + "loss": 1.404053955078125, + "step": 200 + }, + { + "epoch": 4.287769784172662, + "grad_norm": 0.38667383790016174, + "learning_rate": 3.9321428571428575e-05, + "loss": 1.343958282470703, + "step": 300 + }, + { + "epoch": 5.719424460431655, + "grad_norm": 0.39105790853500366, + "learning_rate": 3.575e-05, + "loss": 1.3051353454589845, + "step": 400 + }, + { + "epoch": 7.143884892086331, + "grad_norm": 0.4154781997203827, + "learning_rate": 3.217857142857143e-05, + "loss": 1.2700440979003906, + "step": 500 + }, + { + "epoch": 8.575539568345324, + "grad_norm": 0.4416474997997284, + "learning_rate": 2.860714285714286e-05, + "loss": 1.2288393402099609, + "step": 600 + }, + { + "epoch": 10.0, + "grad_norm": 0.9053292870521545, + "learning_rate": 2.5035714285714286e-05, + "loss": 1.1982599639892577, + "step": 700 + }, + { + "epoch": 11.431654676258994, + "grad_norm": 0.4739361107349396, + "learning_rate": 2.1464285714285716e-05, + "loss": 1.1601019287109375, + "step": 800 + }, + { + "epoch": 12.863309352517986, + "grad_norm": 0.5221117734909058, + "learning_rate": 1.7892857142857143e-05, + "loss": 1.1233001708984376, + "step": 900 + }, + { + "epoch": 14.287769784172662, + "grad_norm": 0.4825860559940338, + "learning_rate": 1.4321428571428572e-05, + "loss": 1.0876304626464843, + "step": 1000 + }, + { + "epoch": 15.719424460431654, + "grad_norm": 0.5432465672492981, + "learning_rate": 1.075e-05, + "loss": 1.055580825805664, + "step": 1100 + } + ], + "logging_steps": 100, + "max_steps": 1400, + "num_input_tokens_seen": 0, + "num_train_epochs": 20, + "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": 230812810149888.0, + "train_batch_size": 8, + "trial_name": null, + "trial_params": null +} diff --git a/hyperparameter/m4/realtabformer/rtf-m4-20260505_022206/rtf_checkpoints/checkpoint-1190/training_args.bin b/hyperparameter/m4/realtabformer/rtf-m4-20260505_022206/rtf_checkpoints/checkpoint-1190/training_args.bin new file mode 100644 index 0000000000000000000000000000000000000000..0443202bbc5de94f0d0d09164bf2ca8102a8869f --- /dev/null +++ b/hyperparameter/m4/realtabformer/rtf-m4-20260505_022206/rtf_checkpoints/checkpoint-1190/training_args.bin @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:86d01f2501df27a7bb9ffc25201c399525fb2c1bd2149d56f439c7a738a4ac32 +size 5201 diff --git a/hyperparameter/m4/realtabformer/rtf-m4-20260505_022206/rtf_checkpoints/checkpoint-1200/config.json b/hyperparameter/m4/realtabformer/rtf-m4-20260505_022206/rtf_checkpoints/checkpoint-1200/config.json new file mode 100644 index 0000000000000000000000000000000000000000..69b1961f0cbafdc846150e71a2d82b4ce3beb94c --- /dev/null +++ b/hyperparameter/m4/realtabformer/rtf-m4-20260505_022206/rtf_checkpoints/checkpoint-1200/config.json @@ -0,0 +1,34 @@ +{ + "activation_function": "gelu_new", + "add_cross_attention": false, + "architectures": [ + "GPT2LMHeadModel" + ], + "attn_pdrop": 0.1, + "bos_token_id": 5, + "dtype": "float32", + "embd_pdrop": 0.1, + "eos_token_id": 6, + "initializer_range": 0.02, + "layer_norm_epsilon": 1e-05, + "model_type": "gpt2", + "n_embd": 768, + "n_head": 12, + "n_inner": null, + "n_layer": 6, + "n_positions": 1024, + "pad_token_id": null, + "reorder_and_upcast_attn": false, + "resid_pdrop": 0.1, + "scale_attn_by_inverse_layer_idx": false, + "scale_attn_weights": true, + "summary_activation": null, + "summary_first_dropout": 0.1, + "summary_proj_to_labels": true, + "summary_type": "cls_index", + "summary_use_proj": true, + "tie_word_embeddings": true, + "transformers_version": "5.5.3", + "use_cache": false, + "vocab_size": 167 +} diff --git a/hyperparameter/m4/realtabformer/rtf-m4-20260505_022206/rtf_checkpoints/checkpoint-1200/generation_config.json b/hyperparameter/m4/realtabformer/rtf-m4-20260505_022206/rtf_checkpoints/checkpoint-1200/generation_config.json new file mode 100644 index 0000000000000000000000000000000000000000..ffe89567780e75b5c22eade9be971483b9618f39 --- /dev/null +++ b/hyperparameter/m4/realtabformer/rtf-m4-20260505_022206/rtf_checkpoints/checkpoint-1200/generation_config.json @@ -0,0 +1,9 @@ +{ + "_from_model_config": true, + "bos_token_id": 5, + "eos_token_id": 6, + "output_attentions": false, + "output_hidden_states": false, + "transformers_version": "5.5.3", + "use_cache": true +} diff --git a/hyperparameter/m4/realtabformer/rtf-m4-20260505_022206/rtf_checkpoints/checkpoint-1200/model.safetensors b/hyperparameter/m4/realtabformer/rtf-m4-20260505_022206/rtf_checkpoints/checkpoint-1200/model.safetensors new file mode 100644 index 0000000000000000000000000000000000000000..306249c71e8af78b3a869cafac6967cbfd126f0c --- /dev/null +++ b/hyperparameter/m4/realtabformer/rtf-m4-20260505_022206/rtf_checkpoints/checkpoint-1200/model.safetensors @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:009a0110292d3fb8e2ef2d5fcce2706f730f0a4e3047f7dd97313cea156a3036 +size 173781448 diff --git a/hyperparameter/m4/realtabformer/rtf-m4-20260505_022206/rtf_checkpoints/checkpoint-1200/optimizer.pt b/hyperparameter/m4/realtabformer/rtf-m4-20260505_022206/rtf_checkpoints/checkpoint-1200/optimizer.pt new file mode 100644 index 0000000000000000000000000000000000000000..e387e5464a549bab83c7b966d8f5f0211b6a9d2b --- /dev/null +++ b/hyperparameter/m4/realtabformer/rtf-m4-20260505_022206/rtf_checkpoints/checkpoint-1200/optimizer.pt @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:bd58c082b4c7000c88e26148b3f940174a2405ba331a55d8415593a2d3a69270 +size 347611979 diff --git a/hyperparameter/m4/realtabformer/rtf-m4-20260505_022206/rtf_checkpoints/checkpoint-1200/rng_state.pth b/hyperparameter/m4/realtabformer/rtf-m4-20260505_022206/rtf_checkpoints/checkpoint-1200/rng_state.pth new file mode 100644 index 0000000000000000000000000000000000000000..16909ad07e314d88859977e9ab642d0a7adaafd7 --- /dev/null +++ b/hyperparameter/m4/realtabformer/rtf-m4-20260505_022206/rtf_checkpoints/checkpoint-1200/rng_state.pth @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:725ad418749cc2c4b97bce0aab949d1553a9403b2a688ee8e58215e8e053fdd3 +size 14645 diff --git a/hyperparameter/m4/realtabformer/rtf-m4-20260505_022206/rtf_checkpoints/checkpoint-1200/scaler.pt b/hyperparameter/m4/realtabformer/rtf-m4-20260505_022206/rtf_checkpoints/checkpoint-1200/scaler.pt new file mode 100644 index 0000000000000000000000000000000000000000..3529b9e1021ddc95e3af7b2d72233fab602a2d19 --- /dev/null +++ b/hyperparameter/m4/realtabformer/rtf-m4-20260505_022206/rtf_checkpoints/checkpoint-1200/scaler.pt @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:18783150ac09b6b81cea5af47876a10bfe5f36c3d76aca4ffce5382bdfaf7b28 +size 1383 diff --git a/hyperparameter/m4/realtabformer/rtf-m4-20260505_022206/rtf_checkpoints/checkpoint-1200/scheduler.pt b/hyperparameter/m4/realtabformer/rtf-m4-20260505_022206/rtf_checkpoints/checkpoint-1200/scheduler.pt new file mode 100644 index 0000000000000000000000000000000000000000..bf295333fe00219f52779e2117aed3860849c9a3 --- /dev/null +++ b/hyperparameter/m4/realtabformer/rtf-m4-20260505_022206/rtf_checkpoints/checkpoint-1200/scheduler.pt @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:49adf1b4b2f9683bf1dfdf179ad960b2d254332a8b9b0d564053ff04e85f7ce8 +size 1465 diff --git a/hyperparameter/m4/realtabformer/rtf-m4-20260505_022206/rtf_checkpoints/checkpoint-1200/trainer_state.json b/hyperparameter/m4/realtabformer/rtf-m4-20260505_022206/rtf_checkpoints/checkpoint-1200/trainer_state.json new file mode 100644 index 0000000000000000000000000000000000000000..8e7f386fc11681edbb5226bb67f67edb548a3bb2 --- /dev/null +++ b/hyperparameter/m4/realtabformer/rtf-m4-20260505_022206/rtf_checkpoints/checkpoint-1200/trainer_state.json @@ -0,0 +1,118 @@ +{ + "best_global_step": null, + "best_metric": null, + "best_model_checkpoint": null, + "epoch": 17.14388489208633, + "eval_steps": 100, + "global_step": 1200, + "is_hyper_param_search": false, + "is_local_process_zero": true, + "is_world_process_zero": true, + "log_history": [ + { + "epoch": 1.4316546762589928, + "grad_norm": 0.3574489653110504, + "learning_rate": 4.6464285714285714e-05, + "loss": 1.9778610229492188, + "step": 100 + }, + { + "epoch": 2.8633093525179856, + "grad_norm": 0.34496113657951355, + "learning_rate": 4.289285714285715e-05, + "loss": 1.404053955078125, + "step": 200 + }, + { + "epoch": 4.287769784172662, + "grad_norm": 0.38667383790016174, + "learning_rate": 3.9321428571428575e-05, + "loss": 1.343958282470703, + "step": 300 + }, + { + "epoch": 5.719424460431655, + "grad_norm": 0.39105790853500366, + "learning_rate": 3.575e-05, + "loss": 1.3051353454589845, + "step": 400 + }, + { + "epoch": 7.143884892086331, + "grad_norm": 0.4154781997203827, + "learning_rate": 3.217857142857143e-05, + "loss": 1.2700440979003906, + "step": 500 + }, + { + "epoch": 8.575539568345324, + "grad_norm": 0.4416474997997284, + "learning_rate": 2.860714285714286e-05, + "loss": 1.2288393402099609, + "step": 600 + }, + { + "epoch": 10.0, + "grad_norm": 0.9053292870521545, + "learning_rate": 2.5035714285714286e-05, + "loss": 1.1982599639892577, + "step": 700 + }, + { + "epoch": 11.431654676258994, + "grad_norm": 0.4739361107349396, + "learning_rate": 2.1464285714285716e-05, + "loss": 1.1601019287109375, + "step": 800 + }, + { + "epoch": 12.863309352517986, + "grad_norm": 0.5221117734909058, + "learning_rate": 1.7892857142857143e-05, + "loss": 1.1233001708984376, + "step": 900 + }, + { + "epoch": 14.287769784172662, + "grad_norm": 0.4825860559940338, + "learning_rate": 1.4321428571428572e-05, + "loss": 1.0876304626464843, + "step": 1000 + }, + { + "epoch": 15.719424460431654, + "grad_norm": 0.5432465672492981, + "learning_rate": 1.075e-05, + "loss": 1.055580825805664, + "step": 1100 + }, + { + "epoch": 17.14388489208633, + "grad_norm": 0.4990030527114868, + "learning_rate": 7.178571428571429e-06, + "loss": 1.0283791351318359, + "step": 1200 + } + ], + "logging_steps": 100, + "max_steps": 1400, + "num_input_tokens_seen": 0, + "num_train_epochs": 20, + "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": 232772535779328.0, + "train_batch_size": 8, + "trial_name": null, + "trial_params": null +} diff --git a/hyperparameter/m4/realtabformer/rtf-m4-20260505_022206/rtf_checkpoints/checkpoint-1200/training_args.bin b/hyperparameter/m4/realtabformer/rtf-m4-20260505_022206/rtf_checkpoints/checkpoint-1200/training_args.bin new file mode 100644 index 0000000000000000000000000000000000000000..0443202bbc5de94f0d0d09164bf2ca8102a8869f --- /dev/null +++ b/hyperparameter/m4/realtabformer/rtf-m4-20260505_022206/rtf_checkpoints/checkpoint-1200/training_args.bin @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:86d01f2501df27a7bb9ffc25201c399525fb2c1bd2149d56f439c7a738a4ac32 +size 5201 diff --git a/hyperparameter/m4/realtabformer/rtf-m4-20260505_022206/rtf_checkpoints/checkpoint-1260/config.json b/hyperparameter/m4/realtabformer/rtf-m4-20260505_022206/rtf_checkpoints/checkpoint-1260/config.json new file mode 100644 index 0000000000000000000000000000000000000000..69b1961f0cbafdc846150e71a2d82b4ce3beb94c --- /dev/null +++ b/hyperparameter/m4/realtabformer/rtf-m4-20260505_022206/rtf_checkpoints/checkpoint-1260/config.json @@ -0,0 +1,34 @@ +{ + "activation_function": "gelu_new", + "add_cross_attention": false, + "architectures": [ + "GPT2LMHeadModel" + ], + "attn_pdrop": 0.1, + "bos_token_id": 5, + "dtype": "float32", + "embd_pdrop": 0.1, + "eos_token_id": 6, + "initializer_range": 0.02, + "layer_norm_epsilon": 1e-05, + "model_type": "gpt2", + "n_embd": 768, + "n_head": 12, + "n_inner": null, + "n_layer": 6, + "n_positions": 1024, + "pad_token_id": null, + "reorder_and_upcast_attn": false, + "resid_pdrop": 0.1, + "scale_attn_by_inverse_layer_idx": false, + "scale_attn_weights": true, + "summary_activation": null, + "summary_first_dropout": 0.1, + "summary_proj_to_labels": true, + "summary_type": "cls_index", + "summary_use_proj": true, + "tie_word_embeddings": true, + "transformers_version": "5.5.3", + "use_cache": false, + "vocab_size": 167 +} diff --git a/hyperparameter/m4/realtabformer/rtf-m4-20260505_022206/rtf_checkpoints/checkpoint-1260/generation_config.json b/hyperparameter/m4/realtabformer/rtf-m4-20260505_022206/rtf_checkpoints/checkpoint-1260/generation_config.json new file mode 100644 index 0000000000000000000000000000000000000000..ffe89567780e75b5c22eade9be971483b9618f39 --- /dev/null +++ b/hyperparameter/m4/realtabformer/rtf-m4-20260505_022206/rtf_checkpoints/checkpoint-1260/generation_config.json @@ -0,0 +1,9 @@ +{ + "_from_model_config": true, + "bos_token_id": 5, + "eos_token_id": 6, + "output_attentions": false, + "output_hidden_states": false, + "transformers_version": "5.5.3", + "use_cache": true +} diff --git a/hyperparameter/m4/realtabformer/rtf-m4-20260505_022206/rtf_checkpoints/checkpoint-1260/model.safetensors b/hyperparameter/m4/realtabformer/rtf-m4-20260505_022206/rtf_checkpoints/checkpoint-1260/model.safetensors new file mode 100644 index 0000000000000000000000000000000000000000..030a08a1808feb38656b565eee451377ecd265c7 --- /dev/null +++ b/hyperparameter/m4/realtabformer/rtf-m4-20260505_022206/rtf_checkpoints/checkpoint-1260/model.safetensors @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:f06892c5db3ca70603ca76899bda22ba30fd518ca7065f125dd51cbf062a6095 +size 173781448 diff --git a/hyperparameter/m4/realtabformer/rtf-m4-20260505_022206/rtf_checkpoints/checkpoint-1260/optimizer.pt b/hyperparameter/m4/realtabformer/rtf-m4-20260505_022206/rtf_checkpoints/checkpoint-1260/optimizer.pt new file mode 100644 index 0000000000000000000000000000000000000000..96510aabff31b588b9093520437334611d31c225 --- /dev/null +++ b/hyperparameter/m4/realtabformer/rtf-m4-20260505_022206/rtf_checkpoints/checkpoint-1260/optimizer.pt @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:12d576073150da2153d0b9d36a06717aa50b1341deb79b57dc0510d11045714f +size 347611979 diff --git a/hyperparameter/m4/realtabformer/rtf-m4-20260505_022206/rtf_checkpoints/checkpoint-1260/rng_state.pth b/hyperparameter/m4/realtabformer/rtf-m4-20260505_022206/rtf_checkpoints/checkpoint-1260/rng_state.pth new file mode 100644 index 0000000000000000000000000000000000000000..0a9103944e5046e75789e1e05d93531a1fc75b33 --- /dev/null +++ b/hyperparameter/m4/realtabformer/rtf-m4-20260505_022206/rtf_checkpoints/checkpoint-1260/rng_state.pth @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:c8861d47a54c8ebbcdeec4a2f28f0499466f2e65dd305e61c0837f8ae80bda13 +size 14645 diff --git a/hyperparameter/m4/realtabformer/rtf-m4-20260505_022206/rtf_checkpoints/checkpoint-1260/scaler.pt b/hyperparameter/m4/realtabformer/rtf-m4-20260505_022206/rtf_checkpoints/checkpoint-1260/scaler.pt new file mode 100644 index 0000000000000000000000000000000000000000..b8837c1c299f8b8c613e2f5e3bcf53eb388f0faa --- /dev/null +++ b/hyperparameter/m4/realtabformer/rtf-m4-20260505_022206/rtf_checkpoints/checkpoint-1260/scaler.pt @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:0d16b2bad6c83dc38fe2e47d81b462ac2e93600c3392b34d7bd33aa4a232e00b +size 1383 diff --git a/hyperparameter/m4/realtabformer/rtf-m4-20260505_022206/rtf_checkpoints/checkpoint-1260/scheduler.pt b/hyperparameter/m4/realtabformer/rtf-m4-20260505_022206/rtf_checkpoints/checkpoint-1260/scheduler.pt new file mode 100644 index 0000000000000000000000000000000000000000..9943bc16f6ff5845926dab2b6f3b36b0069a4588 --- /dev/null +++ b/hyperparameter/m4/realtabformer/rtf-m4-20260505_022206/rtf_checkpoints/checkpoint-1260/scheduler.pt @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:c7cc470fdd0d98ae3450f2622aa8c42e77a2cd7edcc9fd804adafa4e09853fa3 +size 1465 diff --git a/hyperparameter/m4/realtabformer/rtf-m4-20260505_022206/rtf_checkpoints/checkpoint-1260/trainer_state.json b/hyperparameter/m4/realtabformer/rtf-m4-20260505_022206/rtf_checkpoints/checkpoint-1260/trainer_state.json new file mode 100644 index 0000000000000000000000000000000000000000..9f8278ffbe0cb195ab3d19c6ce5a5bd1e638bcda --- /dev/null +++ b/hyperparameter/m4/realtabformer/rtf-m4-20260505_022206/rtf_checkpoints/checkpoint-1260/trainer_state.json @@ -0,0 +1,118 @@ +{ + "best_global_step": null, + "best_metric": null, + "best_model_checkpoint": null, + "epoch": 18.0, + "eval_steps": 100, + "global_step": 1260, + "is_hyper_param_search": false, + "is_local_process_zero": true, + "is_world_process_zero": true, + "log_history": [ + { + "epoch": 1.4316546762589928, + "grad_norm": 0.3574489653110504, + "learning_rate": 4.6464285714285714e-05, + "loss": 1.9778610229492188, + "step": 100 + }, + { + "epoch": 2.8633093525179856, + "grad_norm": 0.34496113657951355, + "learning_rate": 4.289285714285715e-05, + "loss": 1.404053955078125, + "step": 200 + }, + { + "epoch": 4.287769784172662, + "grad_norm": 0.38667383790016174, + "learning_rate": 3.9321428571428575e-05, + "loss": 1.343958282470703, + "step": 300 + }, + { + "epoch": 5.719424460431655, + "grad_norm": 0.39105790853500366, + "learning_rate": 3.575e-05, + "loss": 1.3051353454589845, + "step": 400 + }, + { + "epoch": 7.143884892086331, + "grad_norm": 0.4154781997203827, + "learning_rate": 3.217857142857143e-05, + "loss": 1.2700440979003906, + "step": 500 + }, + { + "epoch": 8.575539568345324, + "grad_norm": 0.4416474997997284, + "learning_rate": 2.860714285714286e-05, + "loss": 1.2288393402099609, + "step": 600 + }, + { + "epoch": 10.0, + "grad_norm": 0.9053292870521545, + "learning_rate": 2.5035714285714286e-05, + "loss": 1.1982599639892577, + "step": 700 + }, + { + "epoch": 11.431654676258994, + "grad_norm": 0.4739361107349396, + "learning_rate": 2.1464285714285716e-05, + "loss": 1.1601019287109375, + "step": 800 + }, + { + "epoch": 12.863309352517986, + "grad_norm": 0.5221117734909058, + "learning_rate": 1.7892857142857143e-05, + "loss": 1.1233001708984376, + "step": 900 + }, + { + "epoch": 14.287769784172662, + "grad_norm": 0.4825860559940338, + "learning_rate": 1.4321428571428572e-05, + "loss": 1.0876304626464843, + "step": 1000 + }, + { + "epoch": 15.719424460431654, + "grad_norm": 0.5432465672492981, + "learning_rate": 1.075e-05, + "loss": 1.055580825805664, + "step": 1100 + }, + { + "epoch": 17.14388489208633, + "grad_norm": 0.4990030527114868, + "learning_rate": 7.178571428571429e-06, + "loss": 1.0283791351318359, + "step": 1200 + } + ], + "logging_steps": 100, + "max_steps": 1400, + "num_input_tokens_seen": 0, + "num_train_epochs": 20, + "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": 244390034276352.0, + "train_batch_size": 8, + "trial_name": null, + "trial_params": null +} diff --git a/hyperparameter/m4/realtabformer/rtf-m4-20260505_022206/rtf_checkpoints/checkpoint-1260/training_args.bin b/hyperparameter/m4/realtabformer/rtf-m4-20260505_022206/rtf_checkpoints/checkpoint-1260/training_args.bin new file mode 100644 index 0000000000000000000000000000000000000000..0443202bbc5de94f0d0d09164bf2ca8102a8869f --- /dev/null +++ b/hyperparameter/m4/realtabformer/rtf-m4-20260505_022206/rtf_checkpoints/checkpoint-1260/training_args.bin @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:86d01f2501df27a7bb9ffc25201c399525fb2c1bd2149d56f439c7a738a4ac32 +size 5201 diff --git a/hyperparameter/m4/realtabformer/rtf-m4-20260505_022206/rtf_checkpoints/checkpoint-1300/config.json b/hyperparameter/m4/realtabformer/rtf-m4-20260505_022206/rtf_checkpoints/checkpoint-1300/config.json new file mode 100644 index 0000000000000000000000000000000000000000..69b1961f0cbafdc846150e71a2d82b4ce3beb94c --- /dev/null +++ b/hyperparameter/m4/realtabformer/rtf-m4-20260505_022206/rtf_checkpoints/checkpoint-1300/config.json @@ -0,0 +1,34 @@ +{ + "activation_function": "gelu_new", + "add_cross_attention": false, + "architectures": [ + "GPT2LMHeadModel" + ], + "attn_pdrop": 0.1, + "bos_token_id": 5, + "dtype": "float32", + "embd_pdrop": 0.1, + "eos_token_id": 6, + "initializer_range": 0.02, + "layer_norm_epsilon": 1e-05, + "model_type": "gpt2", + "n_embd": 768, + "n_head": 12, + "n_inner": null, + "n_layer": 6, + "n_positions": 1024, + "pad_token_id": null, + "reorder_and_upcast_attn": false, + "resid_pdrop": 0.1, + "scale_attn_by_inverse_layer_idx": false, + "scale_attn_weights": true, + "summary_activation": null, + "summary_first_dropout": 0.1, + "summary_proj_to_labels": true, + "summary_type": "cls_index", + "summary_use_proj": true, + "tie_word_embeddings": true, + "transformers_version": "5.5.3", + "use_cache": false, + "vocab_size": 167 +} diff --git a/hyperparameter/m4/realtabformer/rtf-m4-20260505_022206/rtf_checkpoints/checkpoint-1300/generation_config.json b/hyperparameter/m4/realtabformer/rtf-m4-20260505_022206/rtf_checkpoints/checkpoint-1300/generation_config.json new file mode 100644 index 0000000000000000000000000000000000000000..ffe89567780e75b5c22eade9be971483b9618f39 --- /dev/null +++ b/hyperparameter/m4/realtabformer/rtf-m4-20260505_022206/rtf_checkpoints/checkpoint-1300/generation_config.json @@ -0,0 +1,9 @@ +{ + "_from_model_config": true, + "bos_token_id": 5, + "eos_token_id": 6, + "output_attentions": false, + "output_hidden_states": false, + "transformers_version": "5.5.3", + "use_cache": true +} diff --git a/hyperparameter/m4/realtabformer/rtf-m4-20260505_022206/rtf_checkpoints/checkpoint-1300/model.safetensors b/hyperparameter/m4/realtabformer/rtf-m4-20260505_022206/rtf_checkpoints/checkpoint-1300/model.safetensors new file mode 100644 index 0000000000000000000000000000000000000000..3d486b416148bf5c13a0aaec998988fa02f7560d --- /dev/null +++ b/hyperparameter/m4/realtabformer/rtf-m4-20260505_022206/rtf_checkpoints/checkpoint-1300/model.safetensors @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:e050377fcdd74fc2f1ebf33622e406b47bb38ec1d5f9d0257b95e0661b76a959 +size 173781448 diff --git a/hyperparameter/m4/realtabformer/rtf-m4-20260505_022206/rtf_checkpoints/checkpoint-1300/optimizer.pt b/hyperparameter/m4/realtabformer/rtf-m4-20260505_022206/rtf_checkpoints/checkpoint-1300/optimizer.pt new file mode 100644 index 0000000000000000000000000000000000000000..c2ae9dc6dcd5a27f87c9b78cd959923efd5a2a3c --- /dev/null +++ b/hyperparameter/m4/realtabformer/rtf-m4-20260505_022206/rtf_checkpoints/checkpoint-1300/optimizer.pt @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:84a123cc6eaef9702b7f774e7d401ad2fa462becb680c22cf2cf10b482dc6d38 +size 347611979 diff --git a/hyperparameter/m4/realtabformer/rtf-m4-20260505_022206/rtf_checkpoints/checkpoint-1300/rng_state.pth b/hyperparameter/m4/realtabformer/rtf-m4-20260505_022206/rtf_checkpoints/checkpoint-1300/rng_state.pth new file mode 100644 index 0000000000000000000000000000000000000000..51a0e9f74fb6744a0bb65dc0aa43aaa360fbeea5 --- /dev/null +++ b/hyperparameter/m4/realtabformer/rtf-m4-20260505_022206/rtf_checkpoints/checkpoint-1300/rng_state.pth @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:ddca7dafd986f2d8dc9460e3df296df8406058f30dd89b9bd2ae0f1d976003cb +size 14645 diff --git a/hyperparameter/m4/realtabformer/rtf-m4-20260505_022206/rtf_checkpoints/checkpoint-1300/scaler.pt b/hyperparameter/m4/realtabformer/rtf-m4-20260505_022206/rtf_checkpoints/checkpoint-1300/scaler.pt new file mode 100644 index 0000000000000000000000000000000000000000..cd1751ee1bd5c26420c720d10acfb383d7829549 --- /dev/null +++ b/hyperparameter/m4/realtabformer/rtf-m4-20260505_022206/rtf_checkpoints/checkpoint-1300/scaler.pt @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:317914e1b0b7e57d42f0fa6759aa19d9a30f1d604cc5192b2404476b6f3f4a62 +size 1383 diff --git a/hyperparameter/m4/realtabformer/rtf-m4-20260505_022206/rtf_checkpoints/checkpoint-1300/scheduler.pt b/hyperparameter/m4/realtabformer/rtf-m4-20260505_022206/rtf_checkpoints/checkpoint-1300/scheduler.pt new file mode 100644 index 0000000000000000000000000000000000000000..f91da6726f85bf9cb9b1ac5b9bec62ef6e7c3439 --- /dev/null +++ b/hyperparameter/m4/realtabformer/rtf-m4-20260505_022206/rtf_checkpoints/checkpoint-1300/scheduler.pt @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:82a7f52a26c7b101038b7f5e849a6a5cabf406847f24af1c611d7c0a27bb5c93 +size 1465 diff --git a/hyperparameter/m4/realtabformer/rtf-m4-20260505_022206/rtf_checkpoints/checkpoint-1300/trainer_state.json b/hyperparameter/m4/realtabformer/rtf-m4-20260505_022206/rtf_checkpoints/checkpoint-1300/trainer_state.json new file mode 100644 index 0000000000000000000000000000000000000000..5a47b19d4943f55497216d9791ba4917ca48bdae --- /dev/null +++ b/hyperparameter/m4/realtabformer/rtf-m4-20260505_022206/rtf_checkpoints/checkpoint-1300/trainer_state.json @@ -0,0 +1,125 @@ +{ + "best_global_step": null, + "best_metric": null, + "best_model_checkpoint": null, + "epoch": 18.575539568345324, + "eval_steps": 100, + "global_step": 1300, + "is_hyper_param_search": false, + "is_local_process_zero": true, + "is_world_process_zero": true, + "log_history": [ + { + "epoch": 1.4316546762589928, + "grad_norm": 0.3574489653110504, + "learning_rate": 4.6464285714285714e-05, + "loss": 1.9778610229492188, + "step": 100 + }, + { + "epoch": 2.8633093525179856, + "grad_norm": 0.34496113657951355, + "learning_rate": 4.289285714285715e-05, + "loss": 1.404053955078125, + "step": 200 + }, + { + "epoch": 4.287769784172662, + "grad_norm": 0.38667383790016174, + "learning_rate": 3.9321428571428575e-05, + "loss": 1.343958282470703, + "step": 300 + }, + { + "epoch": 5.719424460431655, + "grad_norm": 0.39105790853500366, + "learning_rate": 3.575e-05, + "loss": 1.3051353454589845, + "step": 400 + }, + { + "epoch": 7.143884892086331, + "grad_norm": 0.4154781997203827, + "learning_rate": 3.217857142857143e-05, + "loss": 1.2700440979003906, + "step": 500 + }, + { + "epoch": 8.575539568345324, + "grad_norm": 0.4416474997997284, + "learning_rate": 2.860714285714286e-05, + "loss": 1.2288393402099609, + "step": 600 + }, + { + "epoch": 10.0, + "grad_norm": 0.9053292870521545, + "learning_rate": 2.5035714285714286e-05, + "loss": 1.1982599639892577, + "step": 700 + }, + { + "epoch": 11.431654676258994, + "grad_norm": 0.4739361107349396, + "learning_rate": 2.1464285714285716e-05, + "loss": 1.1601019287109375, + "step": 800 + }, + { + "epoch": 12.863309352517986, + "grad_norm": 0.5221117734909058, + "learning_rate": 1.7892857142857143e-05, + "loss": 1.1233001708984376, + "step": 900 + }, + { + "epoch": 14.287769784172662, + "grad_norm": 0.4825860559940338, + "learning_rate": 1.4321428571428572e-05, + "loss": 1.0876304626464843, + "step": 1000 + }, + { + "epoch": 15.719424460431654, + "grad_norm": 0.5432465672492981, + "learning_rate": 1.075e-05, + "loss": 1.055580825805664, + "step": 1100 + }, + { + "epoch": 17.14388489208633, + "grad_norm": 0.4990030527114868, + "learning_rate": 7.178571428571429e-06, + "loss": 1.0283791351318359, + "step": 1200 + }, + { + "epoch": 18.575539568345324, + "grad_norm": 0.5232223272323608, + "learning_rate": 3.6071428571428577e-06, + "loss": 1.0039317321777343, + "step": 1300 + } + ], + "logging_steps": 100, + "max_steps": 1400, + "num_input_tokens_seen": 0, + "num_train_epochs": 20, + "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": 252228936794112.0, + "train_batch_size": 8, + "trial_name": null, + "trial_params": null +} diff --git a/hyperparameter/m4/realtabformer/rtf-m4-20260505_022206/rtf_checkpoints/checkpoint-1300/training_args.bin b/hyperparameter/m4/realtabformer/rtf-m4-20260505_022206/rtf_checkpoints/checkpoint-1300/training_args.bin new file mode 100644 index 0000000000000000000000000000000000000000..0443202bbc5de94f0d0d09164bf2ca8102a8869f --- /dev/null +++ b/hyperparameter/m4/realtabformer/rtf-m4-20260505_022206/rtf_checkpoints/checkpoint-1300/training_args.bin @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:86d01f2501df27a7bb9ffc25201c399525fb2c1bd2149d56f439c7a738a4ac32 +size 5201 diff --git a/hyperparameter/m4/realtabformer/rtf-m4-20260505_022206/rtf_checkpoints/checkpoint-1330/config.json b/hyperparameter/m4/realtabformer/rtf-m4-20260505_022206/rtf_checkpoints/checkpoint-1330/config.json new file mode 100644 index 0000000000000000000000000000000000000000..69b1961f0cbafdc846150e71a2d82b4ce3beb94c --- /dev/null +++ b/hyperparameter/m4/realtabformer/rtf-m4-20260505_022206/rtf_checkpoints/checkpoint-1330/config.json @@ -0,0 +1,34 @@ +{ + "activation_function": "gelu_new", + "add_cross_attention": false, + "architectures": [ + "GPT2LMHeadModel" + ], + "attn_pdrop": 0.1, + "bos_token_id": 5, + "dtype": "float32", + "embd_pdrop": 0.1, + "eos_token_id": 6, + "initializer_range": 0.02, + "layer_norm_epsilon": 1e-05, + "model_type": "gpt2", + "n_embd": 768, + "n_head": 12, + "n_inner": null, + "n_layer": 6, + "n_positions": 1024, + "pad_token_id": null, + "reorder_and_upcast_attn": false, + "resid_pdrop": 0.1, + "scale_attn_by_inverse_layer_idx": false, + "scale_attn_weights": true, + "summary_activation": null, + "summary_first_dropout": 0.1, + "summary_proj_to_labels": true, + "summary_type": "cls_index", + "summary_use_proj": true, + "tie_word_embeddings": true, + "transformers_version": "5.5.3", + "use_cache": false, + "vocab_size": 167 +} diff --git a/hyperparameter/m4/realtabformer/rtf-m4-20260505_022206/rtf_checkpoints/checkpoint-1330/generation_config.json b/hyperparameter/m4/realtabformer/rtf-m4-20260505_022206/rtf_checkpoints/checkpoint-1330/generation_config.json new file mode 100644 index 0000000000000000000000000000000000000000..ffe89567780e75b5c22eade9be971483b9618f39 --- /dev/null +++ b/hyperparameter/m4/realtabformer/rtf-m4-20260505_022206/rtf_checkpoints/checkpoint-1330/generation_config.json @@ -0,0 +1,9 @@ +{ + "_from_model_config": true, + "bos_token_id": 5, + "eos_token_id": 6, + "output_attentions": false, + "output_hidden_states": false, + "transformers_version": "5.5.3", + "use_cache": true +} diff --git a/hyperparameter/m4/realtabformer/rtf-m4-20260505_022206/rtf_checkpoints/checkpoint-1330/model.safetensors b/hyperparameter/m4/realtabformer/rtf-m4-20260505_022206/rtf_checkpoints/checkpoint-1330/model.safetensors new file mode 100644 index 0000000000000000000000000000000000000000..33bd4247b7a8fe5dab9a22a8d14b672265c623a7 --- /dev/null +++ b/hyperparameter/m4/realtabformer/rtf-m4-20260505_022206/rtf_checkpoints/checkpoint-1330/model.safetensors @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:4b8f60d46f1cb0271309e950d881b1a6920cf8b016e7f9db631306daa724d84d +size 173781448 diff --git a/hyperparameter/m4/realtabformer/rtf-m4-20260505_022206/rtf_checkpoints/checkpoint-1330/optimizer.pt b/hyperparameter/m4/realtabformer/rtf-m4-20260505_022206/rtf_checkpoints/checkpoint-1330/optimizer.pt new file mode 100644 index 0000000000000000000000000000000000000000..5d65a737fd94218bfba18db2faccc2e5847823e6 --- /dev/null +++ b/hyperparameter/m4/realtabformer/rtf-m4-20260505_022206/rtf_checkpoints/checkpoint-1330/optimizer.pt @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:47f9533eef801b8cffe9a7bc16c87cffb7610a16e31895fba15668b01bd8a152 +size 347611979 diff --git a/hyperparameter/m4/realtabformer/rtf-m4-20260505_022206/rtf_checkpoints/checkpoint-1330/rng_state.pth b/hyperparameter/m4/realtabformer/rtf-m4-20260505_022206/rtf_checkpoints/checkpoint-1330/rng_state.pth new file mode 100644 index 0000000000000000000000000000000000000000..19230a263f22198c74fb8e0392adc3ccb6d5e539 --- /dev/null +++ b/hyperparameter/m4/realtabformer/rtf-m4-20260505_022206/rtf_checkpoints/checkpoint-1330/rng_state.pth @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:a23e3275fbcdbf82eef9d9827e3176aabf1b73a1ffe5d30d506cc10e52c4d6c8 +size 14645 diff --git a/hyperparameter/m4/realtabformer/rtf-m4-20260505_022206/rtf_checkpoints/checkpoint-1330/scaler.pt b/hyperparameter/m4/realtabformer/rtf-m4-20260505_022206/rtf_checkpoints/checkpoint-1330/scaler.pt new file mode 100644 index 0000000000000000000000000000000000000000..e8658a2e6948aa0b9fb7dcd2e91b364d1ec1e5c0 --- /dev/null +++ b/hyperparameter/m4/realtabformer/rtf-m4-20260505_022206/rtf_checkpoints/checkpoint-1330/scaler.pt @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:435b8b56548ca6366d006c6bdc0e59e5d18211699257600f274ad2ced9df4dfb +size 1383 diff --git a/hyperparameter/m4/realtabformer/rtf-m4-20260505_022206/rtf_checkpoints/checkpoint-1330/scheduler.pt b/hyperparameter/m4/realtabformer/rtf-m4-20260505_022206/rtf_checkpoints/checkpoint-1330/scheduler.pt new file mode 100644 index 0000000000000000000000000000000000000000..6fcdcc3a1584a82f6ffed59ff0e4117ba48a3961 --- /dev/null +++ b/hyperparameter/m4/realtabformer/rtf-m4-20260505_022206/rtf_checkpoints/checkpoint-1330/scheduler.pt @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:a4021ab5c3714e329398d1566a65da8938ed7751e3ddca9b3543c968a11e16ed +size 1465 diff --git a/hyperparameter/m4/realtabformer/rtf-m4-20260505_022206/rtf_checkpoints/checkpoint-1330/trainer_state.json b/hyperparameter/m4/realtabformer/rtf-m4-20260505_022206/rtf_checkpoints/checkpoint-1330/trainer_state.json new file mode 100644 index 0000000000000000000000000000000000000000..7b6b557ce51279512aa65e65e0040f0334298824 --- /dev/null +++ b/hyperparameter/m4/realtabformer/rtf-m4-20260505_022206/rtf_checkpoints/checkpoint-1330/trainer_state.json @@ -0,0 +1,125 @@ +{ + "best_global_step": null, + "best_metric": null, + "best_model_checkpoint": null, + "epoch": 19.0, + "eval_steps": 100, + "global_step": 1330, + "is_hyper_param_search": false, + "is_local_process_zero": true, + "is_world_process_zero": true, + "log_history": [ + { + "epoch": 1.4316546762589928, + "grad_norm": 0.3574489653110504, + "learning_rate": 4.6464285714285714e-05, + "loss": 1.9778610229492188, + "step": 100 + }, + { + "epoch": 2.8633093525179856, + "grad_norm": 0.34496113657951355, + "learning_rate": 4.289285714285715e-05, + "loss": 1.404053955078125, + "step": 200 + }, + { + "epoch": 4.287769784172662, + "grad_norm": 0.38667383790016174, + "learning_rate": 3.9321428571428575e-05, + "loss": 1.343958282470703, + "step": 300 + }, + { + "epoch": 5.719424460431655, + "grad_norm": 0.39105790853500366, + "learning_rate": 3.575e-05, + "loss": 1.3051353454589845, + "step": 400 + }, + { + "epoch": 7.143884892086331, + "grad_norm": 0.4154781997203827, + "learning_rate": 3.217857142857143e-05, + "loss": 1.2700440979003906, + "step": 500 + }, + { + "epoch": 8.575539568345324, + "grad_norm": 0.4416474997997284, + "learning_rate": 2.860714285714286e-05, + "loss": 1.2288393402099609, + "step": 600 + }, + { + "epoch": 10.0, + "grad_norm": 0.9053292870521545, + "learning_rate": 2.5035714285714286e-05, + "loss": 1.1982599639892577, + "step": 700 + }, + { + "epoch": 11.431654676258994, + "grad_norm": 0.4739361107349396, + "learning_rate": 2.1464285714285716e-05, + "loss": 1.1601019287109375, + "step": 800 + }, + { + "epoch": 12.863309352517986, + "grad_norm": 0.5221117734909058, + "learning_rate": 1.7892857142857143e-05, + "loss": 1.1233001708984376, + "step": 900 + }, + { + "epoch": 14.287769784172662, + "grad_norm": 0.4825860559940338, + "learning_rate": 1.4321428571428572e-05, + "loss": 1.0876304626464843, + "step": 1000 + }, + { + "epoch": 15.719424460431654, + "grad_norm": 0.5432465672492981, + "learning_rate": 1.075e-05, + "loss": 1.055580825805664, + "step": 1100 + }, + { + "epoch": 17.14388489208633, + "grad_norm": 0.4990030527114868, + "learning_rate": 7.178571428571429e-06, + "loss": 1.0283791351318359, + "step": 1200 + }, + { + "epoch": 18.575539568345324, + "grad_norm": 0.5232223272323608, + "learning_rate": 3.6071428571428577e-06, + "loss": 1.0039317321777343, + "step": 1300 + } + ], + "logging_steps": 100, + "max_steps": 1400, + "num_input_tokens_seen": 0, + "num_train_epochs": 20, + "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": 257967258402816.0, + "train_batch_size": 8, + "trial_name": null, + "trial_params": null +} diff --git a/hyperparameter/m4/realtabformer/rtf-m4-20260505_022206/rtf_checkpoints/checkpoint-1330/training_args.bin b/hyperparameter/m4/realtabformer/rtf-m4-20260505_022206/rtf_checkpoints/checkpoint-1330/training_args.bin new file mode 100644 index 0000000000000000000000000000000000000000..0443202bbc5de94f0d0d09164bf2ca8102a8869f --- /dev/null +++ b/hyperparameter/m4/realtabformer/rtf-m4-20260505_022206/rtf_checkpoints/checkpoint-1330/training_args.bin @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:86d01f2501df27a7bb9ffc25201c399525fb2c1bd2149d56f439c7a738a4ac32 +size 5201 diff --git a/hyperparameter/m4/realtabformer/rtf-m4-20260505_022206/rtf_checkpoints/checkpoint-1400/config.json b/hyperparameter/m4/realtabformer/rtf-m4-20260505_022206/rtf_checkpoints/checkpoint-1400/config.json new file mode 100644 index 0000000000000000000000000000000000000000..69b1961f0cbafdc846150e71a2d82b4ce3beb94c --- /dev/null +++ b/hyperparameter/m4/realtabformer/rtf-m4-20260505_022206/rtf_checkpoints/checkpoint-1400/config.json @@ -0,0 +1,34 @@ +{ + "activation_function": "gelu_new", + "add_cross_attention": false, + "architectures": [ + "GPT2LMHeadModel" + ], + "attn_pdrop": 0.1, + "bos_token_id": 5, + "dtype": "float32", + "embd_pdrop": 0.1, + "eos_token_id": 6, + "initializer_range": 0.02, + "layer_norm_epsilon": 1e-05, + "model_type": "gpt2", + "n_embd": 768, + "n_head": 12, + "n_inner": null, + "n_layer": 6, + "n_positions": 1024, + "pad_token_id": null, + "reorder_and_upcast_attn": false, + "resid_pdrop": 0.1, + "scale_attn_by_inverse_layer_idx": false, + "scale_attn_weights": true, + "summary_activation": null, + "summary_first_dropout": 0.1, + "summary_proj_to_labels": true, + "summary_type": "cls_index", + "summary_use_proj": true, + "tie_word_embeddings": true, + "transformers_version": "5.5.3", + "use_cache": false, + "vocab_size": 167 +} diff --git a/hyperparameter/m4/realtabformer/rtf-m4-20260505_022206/rtf_checkpoints/checkpoint-1400/generation_config.json b/hyperparameter/m4/realtabformer/rtf-m4-20260505_022206/rtf_checkpoints/checkpoint-1400/generation_config.json new file mode 100644 index 0000000000000000000000000000000000000000..ffe89567780e75b5c22eade9be971483b9618f39 --- /dev/null +++ b/hyperparameter/m4/realtabformer/rtf-m4-20260505_022206/rtf_checkpoints/checkpoint-1400/generation_config.json @@ -0,0 +1,9 @@ +{ + "_from_model_config": true, + "bos_token_id": 5, + "eos_token_id": 6, + "output_attentions": false, + "output_hidden_states": false, + "transformers_version": "5.5.3", + "use_cache": true +} diff --git a/hyperparameter/m4/realtabformer/rtf-m4-20260505_022206/rtf_checkpoints/checkpoint-1400/model.safetensors b/hyperparameter/m4/realtabformer/rtf-m4-20260505_022206/rtf_checkpoints/checkpoint-1400/model.safetensors new file mode 100644 index 0000000000000000000000000000000000000000..e60c663475b72c23317fa277f99b6a3e80d0e7dc --- /dev/null +++ b/hyperparameter/m4/realtabformer/rtf-m4-20260505_022206/rtf_checkpoints/checkpoint-1400/model.safetensors @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:6c4f58989d8b875973e2b2f41b60e85051d5b46f8e320982c91b4cb1d983c0d7 +size 173781448 diff --git a/hyperparameter/m4/realtabformer/rtf-m4-20260505_022206/rtf_checkpoints/checkpoint-1400/optimizer.pt b/hyperparameter/m4/realtabformer/rtf-m4-20260505_022206/rtf_checkpoints/checkpoint-1400/optimizer.pt new file mode 100644 index 0000000000000000000000000000000000000000..1c8dd139f37f57acd470c3b8020a48fa556e4e8a --- /dev/null +++ b/hyperparameter/m4/realtabformer/rtf-m4-20260505_022206/rtf_checkpoints/checkpoint-1400/optimizer.pt @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:1269e99d4cc0f0966b46440a1d9c8b55c29d59288ab23a33e09583a5b0851360 +size 347611979 diff --git a/hyperparameter/m4/realtabformer/rtf-m4-20260505_022206/rtf_checkpoints/checkpoint-1400/rng_state.pth b/hyperparameter/m4/realtabformer/rtf-m4-20260505_022206/rtf_checkpoints/checkpoint-1400/rng_state.pth new file mode 100644 index 0000000000000000000000000000000000000000..fb28c2975a26f8f25009c38809856dbff5d2c732 --- /dev/null +++ b/hyperparameter/m4/realtabformer/rtf-m4-20260505_022206/rtf_checkpoints/checkpoint-1400/rng_state.pth @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:67d44182e445531d584658927f4faa4c8ce75d91a48cbb5d167c1355cdd65f85 +size 14645 diff --git a/hyperparameter/m4/realtabformer/rtf-m4-20260505_022206/rtf_checkpoints/checkpoint-1400/scaler.pt b/hyperparameter/m4/realtabformer/rtf-m4-20260505_022206/rtf_checkpoints/checkpoint-1400/scaler.pt new file mode 100644 index 0000000000000000000000000000000000000000..771c8c66eda07450c5e8f7c75d9e5ae21d649919 --- /dev/null +++ b/hyperparameter/m4/realtabformer/rtf-m4-20260505_022206/rtf_checkpoints/checkpoint-1400/scaler.pt @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:f3b03c8c40e45be48b5956b82e1abb2c1ec5641f4fc77e6fdec0942a77964500 +size 1383 diff --git a/hyperparameter/m4/realtabformer/rtf-m4-20260505_022206/rtf_checkpoints/checkpoint-1400/scheduler.pt b/hyperparameter/m4/realtabformer/rtf-m4-20260505_022206/rtf_checkpoints/checkpoint-1400/scheduler.pt new file mode 100644 index 0000000000000000000000000000000000000000..843af5652a33c3792401e9b10d62bbd2ab23af20 --- /dev/null +++ b/hyperparameter/m4/realtabformer/rtf-m4-20260505_022206/rtf_checkpoints/checkpoint-1400/scheduler.pt @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:d639fa2b2d6fcd30a66e5a5c4866ab3b60c9ef8c9fabef2c694c38cb7f446ab7 +size 1465 diff --git a/hyperparameter/m4/realtabformer/rtf-m4-20260505_022206/rtf_checkpoints/checkpoint-1400/trainer_state.json b/hyperparameter/m4/realtabformer/rtf-m4-20260505_022206/rtf_checkpoints/checkpoint-1400/trainer_state.json new file mode 100644 index 0000000000000000000000000000000000000000..114e9ebde042757b4ca5d446db5dec2644ddcebe --- /dev/null +++ b/hyperparameter/m4/realtabformer/rtf-m4-20260505_022206/rtf_checkpoints/checkpoint-1400/trainer_state.json @@ -0,0 +1,132 @@ +{ + "best_global_step": null, + "best_metric": null, + "best_model_checkpoint": null, + "epoch": 20.0, + "eval_steps": 100, + "global_step": 1400, + "is_hyper_param_search": false, + "is_local_process_zero": true, + "is_world_process_zero": true, + "log_history": [ + { + "epoch": 1.4316546762589928, + "grad_norm": 0.3574489653110504, + "learning_rate": 4.6464285714285714e-05, + "loss": 1.9778610229492188, + "step": 100 + }, + { + "epoch": 2.8633093525179856, + "grad_norm": 0.34496113657951355, + "learning_rate": 4.289285714285715e-05, + "loss": 1.404053955078125, + "step": 200 + }, + { + "epoch": 4.287769784172662, + "grad_norm": 0.38667383790016174, + "learning_rate": 3.9321428571428575e-05, + "loss": 1.343958282470703, + "step": 300 + }, + { + "epoch": 5.719424460431655, + "grad_norm": 0.39105790853500366, + "learning_rate": 3.575e-05, + "loss": 1.3051353454589845, + "step": 400 + }, + { + "epoch": 7.143884892086331, + "grad_norm": 0.4154781997203827, + "learning_rate": 3.217857142857143e-05, + "loss": 1.2700440979003906, + "step": 500 + }, + { + "epoch": 8.575539568345324, + "grad_norm": 0.4416474997997284, + "learning_rate": 2.860714285714286e-05, + "loss": 1.2288393402099609, + "step": 600 + }, + { + "epoch": 10.0, + "grad_norm": 0.9053292870521545, + "learning_rate": 2.5035714285714286e-05, + "loss": 1.1982599639892577, + "step": 700 + }, + { + "epoch": 11.431654676258994, + "grad_norm": 0.4739361107349396, + "learning_rate": 2.1464285714285716e-05, + "loss": 1.1601019287109375, + "step": 800 + }, + { + "epoch": 12.863309352517986, + "grad_norm": 0.5221117734909058, + "learning_rate": 1.7892857142857143e-05, + "loss": 1.1233001708984376, + "step": 900 + }, + { + "epoch": 14.287769784172662, + "grad_norm": 0.4825860559940338, + "learning_rate": 1.4321428571428572e-05, + "loss": 1.0876304626464843, + "step": 1000 + }, + { + "epoch": 15.719424460431654, + "grad_norm": 0.5432465672492981, + "learning_rate": 1.075e-05, + "loss": 1.055580825805664, + "step": 1100 + }, + { + "epoch": 17.14388489208633, + "grad_norm": 0.4990030527114868, + "learning_rate": 7.178571428571429e-06, + "loss": 1.0283791351318359, + "step": 1200 + }, + { + "epoch": 18.575539568345324, + "grad_norm": 0.5232223272323608, + "learning_rate": 3.6071428571428577e-06, + "loss": 1.0039317321777343, + "step": 1300 + }, + { + "epoch": 20.0, + "grad_norm": 1.0128717422485352, + "learning_rate": 3.571428571428572e-08, + "loss": 0.9935001373291016, + "step": 1400 + } + ], + "logging_steps": 100, + "max_steps": 1400, + "num_input_tokens_seen": 0, + "num_train_epochs": 20, + "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": 271544482529280.0, + "train_batch_size": 8, + "trial_name": null, + "trial_params": null +} diff --git a/hyperparameter/m4/realtabformer/rtf-m4-20260505_022206/rtf_checkpoints/checkpoint-1400/training_args.bin b/hyperparameter/m4/realtabformer/rtf-m4-20260505_022206/rtf_checkpoints/checkpoint-1400/training_args.bin new file mode 100644 index 0000000000000000000000000000000000000000..0443202bbc5de94f0d0d09164bf2ca8102a8869f --- /dev/null +++ b/hyperparameter/m4/realtabformer/rtf-m4-20260505_022206/rtf_checkpoints/checkpoint-1400/training_args.bin @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:86d01f2501df27a7bb9ffc25201c399525fb2c1bd2149d56f439c7a738a4ac32 +size 5201 diff --git a/hyperparameter/m4/realtabformer/rtf-m4-20260505_022206/run_config.json b/hyperparameter/m4/realtabformer/rtf-m4-20260505_022206/run_config.json new file mode 100644 index 0000000000000000000000000000000000000000..df659e43c13f37f391186f96e22e68c4a7df1d43 --- /dev/null +++ b/hyperparameter/m4/realtabformer/rtf-m4-20260505_022206/run_config.json @@ -0,0 +1,40 @@ +{ + "schema_version": 1, + "recorded_at": "2026-05-05T02:22:06", + "dataset_id": "m4", + "model": "realtabformer", + "work_dir": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/m4/realtabformer/rtf-m4-20260505_022206", + "dataset_source_requested": "new", + "dataset_source_resolved": "new", + "cli_args": { + "model": "realtabformer", + "dataset": "m4", + "dataset_source": "new", + "train": true, + "generate": true, + "num_rows": 0, + "epochs": 20, + "output_dir": null, + "model_dir": null, + "work_dir": null, + "resume": false, + "no_stats": false + }, + "resolved": { + "num_rows": 2217, + "model_path": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/m4/realtabformer/rtf-m4-20260505_022206/models_20epochs", + "output_csv": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/m4/realtabformer/rtf-m4-20260505_022206/rtf-m4-2217-20260505_022410.csv" + }, + "input_artifacts": { + "public_gate_report": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/m4/realtabformer/rtf-m4-20260505_022206/public_gate/public_gate_report.json", + "public_manifest": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/m4/realtabformer/rtf-m4-20260505_022206/public_gate/staged_input_manifest.json", + "model_manifest": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/m4/realtabformer/rtf-m4-20260505_022206/staged/realtabformer/model_input_manifest.json", + "train_csv": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/m4/realtabformer/rtf-m4-20260505_022206/staged/public/train.csv", + "features_json": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/m4/realtabformer/rtf-m4-20260505_022206/staged/public/staged_features.json", + "target_column": "charges", + "task_type": "regression" + }, + "env_overrides": { + "BENCHMARK_REALTABFORMER_GPUS": "device=3" + } +} \ No newline at end of file diff --git a/hyperparameter/m4/realtabformer/rtf-m4-20260505_022206/runtime_result.json b/hyperparameter/m4/realtabformer/rtf-m4-20260505_022206/runtime_result.json new file mode 100644 index 0000000000000000000000000000000000000000..312e66d0b485aadf3e26eacddae9ed2ada0d8edc --- /dev/null +++ b/hyperparameter/m4/realtabformer/rtf-m4-20260505_022206/runtime_result.json @@ -0,0 +1,27 @@ +{ + "dataset_id": "m4", + "model": "realtabformer", + "run_id": "rtf-m4-20260505_022206", + "public_gate_status": "pass", + "adapter_ready_status": "pass", + "train_status": "success", + "generate_status": "success", + "reason_code": null, + "reason_detail": null, + "artifacts": { + "synthetic_csv": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/m4/realtabformer/rtf-m4-20260505_022206/rtf-m4-2217-20260505_022410.csv", + "model_path": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/m4/realtabformer/rtf-m4-20260505_022206/models_20epochs" + }, + "timings": { + "train": { + "started_at": "2026-05-05T02:22:06", + "ended_at": "2026-05-05T02:24:10", + "duration_sec": 123.738 + }, + "generate": { + "started_at": "2026-05-05T02:24:10", + "ended_at": "2026-05-05T02:24:35", + "duration_sec": 25.183 + } + } +} \ No newline at end of file diff --git a/hyperparameter/m4/realtabformer/rtf-m4-20260505_022206/staged/public/staged_features.json b/hyperparameter/m4/realtabformer/rtf-m4-20260505_022206/staged/public/staged_features.json new file mode 100644 index 0000000000000000000000000000000000000000..d6acd098c35111f423f3ffff2cfd1754bc5dfebc --- /dev/null +++ b/hyperparameter/m4/realtabformer/rtf-m4-20260505_022206/staged/public/staged_features.json @@ -0,0 +1,37 @@ +[ + { + "feature_name": "age", + "data_type": "continuous", + "is_target": false + }, + { + "feature_name": "sex", + "data_type": "categorical", + "is_target": false + }, + { + "feature_name": "bmi", + "data_type": "continuous", + "is_target": false + }, + { + "feature_name": "children", + "data_type": "continuous", + "is_target": false + }, + { + "feature_name": "smoker", + "data_type": "binary", + "is_target": false + }, + { + "feature_name": "region", + "data_type": "categorical", + "is_target": false + }, + { + "feature_name": "charges", + "data_type": "continuous", + "is_target": true + } +] \ No newline at end of file diff --git a/hyperparameter/m4/realtabformer/rtf-m4-20260505_022206/staged/public/test.csv b/hyperparameter/m4/realtabformer/rtf-m4-20260505_022206/staged/public/test.csv new file mode 100644 index 0000000000000000000000000000000000000000..c88a2e7cfcd715bb421cb56eb078033da45c4dc8 --- /dev/null +++ b/hyperparameter/m4/realtabformer/rtf-m4-20260505_022206/staged/public/test.csv @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:4c541b677fb2d45c5bc79338eeee9fd8c91484b195a0c2c546c2fbabf113b7ea +size 11298 diff --git a/hyperparameter/m4/realtabformer/rtf-m4-20260505_022206/staged/public/train.csv b/hyperparameter/m4/realtabformer/rtf-m4-20260505_022206/staged/public/train.csv new file mode 100644 index 0000000000000000000000000000000000000000..5a05019d786529e0617291766c4fbe016ca01bf5 --- /dev/null +++ b/hyperparameter/m4/realtabformer/rtf-m4-20260505_022206/staged/public/train.csv @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:614ebfac5f41d6f661aff675fa18c0f933a8d9bcc77ea71b7b2360c2f0155837 +size 90069 diff --git a/hyperparameter/m4/realtabformer/rtf-m4-20260505_022206/staged/public/val.csv b/hyperparameter/m4/realtabformer/rtf-m4-20260505_022206/staged/public/val.csv new file mode 100644 index 0000000000000000000000000000000000000000..d78fe5ad1537c437ba9ac2629f2aa60a6c17e708 --- /dev/null +++ b/hyperparameter/m4/realtabformer/rtf-m4-20260505_022206/staged/public/val.csv @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:e55f5edbe7942ff01630de91a9c70dfbc6445eba76c7b970350364546b67c2d7 +size 11218 diff --git a/hyperparameter/m4/realtabformer/rtf-m4-20260505_022206/staged/realtabformer/adapter_report.json b/hyperparameter/m4/realtabformer/rtf-m4-20260505_022206/staged/realtabformer/adapter_report.json new file mode 100644 index 0000000000000000000000000000000000000000..9e9d4763956d28aff7008565ead19026c92828c9 --- /dev/null +++ b/hyperparameter/m4/realtabformer/rtf-m4-20260505_022206/staged/realtabformer/adapter_report.json @@ -0,0 +1,7 @@ +{ + "adapter_ready_status": "pass", + "adapter_fail_reason_code": null, + "adapter_fail_detail": null, + "adapter_transforms_applied": [], + "model_input_manifest": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/m4/realtabformer/rtf-m4-20260505_022206/staged/realtabformer/model_input_manifest.json" +} \ No newline at end of file diff --git a/hyperparameter/m4/realtabformer/rtf-m4-20260505_022206/staged/realtabformer/adapter_transforms_applied.json b/hyperparameter/m4/realtabformer/rtf-m4-20260505_022206/staged/realtabformer/adapter_transforms_applied.json new file mode 100644 index 0000000000000000000000000000000000000000..0637a088a01e8ddab3bf3fa98dbe804cbde1a0dc --- /dev/null +++ b/hyperparameter/m4/realtabformer/rtf-m4-20260505_022206/staged/realtabformer/adapter_transforms_applied.json @@ -0,0 +1 @@ +[] \ No newline at end of file diff --git a/hyperparameter/m4/realtabformer/rtf-m4-20260505_022206/staged/realtabformer/model_input_manifest.json b/hyperparameter/m4/realtabformer/rtf-m4-20260505_022206/staged/realtabformer/model_input_manifest.json new file mode 100644 index 0000000000000000000000000000000000000000..cf2ed726ce4050cc193c0f45398a2c4395bf79c0 --- /dev/null +++ b/hyperparameter/m4/realtabformer/rtf-m4-20260505_022206/staged/realtabformer/model_input_manifest.json @@ -0,0 +1,154 @@ +{ + "dataset_id": "m4", + "model": "realtabformer", + "target_column": "charges", + "task_type": "regression", + "column_schema": [ + { + "name": "age", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 47, + "unique_ratio": 0.0212, + "example_values": [ + "46", + "38", + "19", + "27", + "26" + ] + } + }, + { + "name": "sex", + "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.000902, + "example_values": [ + "female", + "male" + ] + } + }, + { + "name": "bmi", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 538, + "unique_ratio": 0.24267, + "example_values": [ + "23.655", + "19.3", + "30.59", + "32.67", + "29.45" + ] + } + }, + { + "name": "children", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 6, + "unique_ratio": 0.002706, + "example_values": [ + "1", + "0", + "3", + "2", + "5" + ] + } + }, + { + "name": "smoker", + "role": "feature", + "semantic_type": "boolean", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 2, + "unique_ratio": 0.000902, + "example_values": [ + "yes", + "no" + ] + } + }, + { + "name": "region", + "role": "feature", + "semantic_type": "categorical", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 4, + "unique_ratio": 0.001804, + "example_values": [ + "northwest", + "southwest", + "southeast", + "northeast" + ] + } + }, + { + "name": "charges", + "role": "target", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 1281, + "unique_ratio": 0.577808, + "example_values": [ + "21677.28345", + "15820.699", + "1639.5631", + "2497.0383", + "2897.3235" + ] + } + } + ], + "public_manifest": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/m4/realtabformer/rtf-m4-20260505_022206/public_gate/staged_input_manifest.json", + "train_csv": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/m4/realtabformer/rtf-m4-20260505_022206/staged/public/train.csv", + "val_csv": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/m4/realtabformer/rtf-m4-20260505_022206/staged/public/val.csv", + "test_csv": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/m4/realtabformer/rtf-m4-20260505_022206/staged/public/test.csv", + "features_json": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/m4/realtabformer/rtf-m4-20260505_022206/staged/public/staged_features.json", + "public_gate_report": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/m4/realtabformer/rtf-m4-20260505_022206/public_gate/public_gate_report.json" +} \ No newline at end of file diff --git a/hyperparameter/m4/realtabformer/rtf-m4-20260505_022206/train_20260505_022206.log b/hyperparameter/m4/realtabformer/rtf-m4-20260505_022206/train_20260505_022206.log new file mode 100644 index 0000000000000000000000000000000000000000..9bee0cd7902115038db0cdf37a22d5b9d086cbfc --- /dev/null +++ b/hyperparameter/m4/realtabformer/rtf-m4-20260505_022206/train_20260505_022206.log @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:6b9c7bea33cf9756bf4eca68d04300b8375c15604a35753906761d05c2e75c69 +size 55432 diff --git a/hyperparameter/m4/realtabformer/rtf-m4-20260505_022448/gen_20260505_022756.log b/hyperparameter/m4/realtabformer/rtf-m4-20260505_022448/gen_20260505_022756.log new file mode 100644 index 0000000000000000000000000000000000000000..41f88af72838eccf65c8e53cfc258c5a1e589466 --- /dev/null +++ b/hyperparameter/m4/realtabformer/rtf-m4-20260505_022448/gen_20260505_022756.log @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:1bcff507e9692743c1f4ddb58eae5fd86eb8b2764d4e0d8c99df0037c01e9c54 +size 1731 diff --git a/hyperparameter/m4/realtabformer/rtf-m4-20260505_022448/input_snapshot.json b/hyperparameter/m4/realtabformer/rtf-m4-20260505_022448/input_snapshot.json new file mode 100644 index 0000000000000000000000000000000000000000..9db22a39e5ccaaeedd23cf99efa32e16d4ed388a --- /dev/null +++ b/hyperparameter/m4/realtabformer/rtf-m4-20260505_022448/input_snapshot.json @@ -0,0 +1,36 @@ +{ + "dataset_id": "m4", + "model": "realtabformer", + "inputs": { + "train_csv": { + "path": "/data/jialinzhang/SynthesizePipeline-server/DatasetNew/m4/m4-train.csv", + "exists": true, + "size": 92191, + "sha256": "396b9d409ca21bf4a4cd329bdf5b7796aa0ae6356fa8d89b8eb669b5880b81f1" + }, + "val_csv": { + "path": "/data/jialinzhang/SynthesizePipeline-server/DatasetNew/m4/m4-val.csv", + "exists": true, + "size": 11482, + "sha256": "ee3c247d02f56e1687d03c381e13125d6a3a2a411ac7f202ba8520a4be9f1784" + }, + "test_csv": { + "path": "/data/jialinzhang/SynthesizePipeline-server/DatasetNew/m4/m4-test.csv", + "exists": true, + "size": 11559, + "sha256": "cadb9941124001b8fa7cb1ebae43b70a9ca56294f4df4d3c2f22c164c41757d4" + }, + "profile_json": { + "path": "/data/jialinzhang/SynthesizePipeline-server/DatasetNew/artifacts/data_core/tabular/m4/m4-dataset_profile.json", + "exists": true, + "size": 3336, + "sha256": "83e2764810e4a0e8cdece3a28dbd9134b7c9df6f2e56953e46d024ad2c4e035f" + }, + "contract_json": { + "path": "/data/jialinzhang/SynthesizePipeline-server/DatasetNew/artifacts/data_core/tabular/m4/m4-dataset_contract_v1.json", + "exists": true, + "size": 3810, + "sha256": "c23641b258629a845b164099bd0132886f8f6d0100e990494e0f92540f8987d9" + } + } +} \ No newline at end of file diff --git a/hyperparameter/m4/realtabformer/rtf-m4-20260505_022448/models_30epochs/id000017779192741692829696/rtf_config.json b/hyperparameter/m4/realtabformer/rtf-m4-20260505_022448/models_30epochs/id000017779192741692829696/rtf_config.json new file mode 100644 index 0000000000000000000000000000000000000000..35a4af4583fd4bdba15a1b0371397f2e03c330cb --- /dev/null +++ b/hyperparameter/m4/realtabformer/rtf-m4-20260505_022448/models_30epochs/id000017779192741692829696/rtf_config.json @@ -0,0 +1 @@ +{"model_type": "tabular", "tabular_config": {"transformers_version": "5.5.3", "architectures": ["GPT2LMHeadModel"], "output_hidden_states": false, "return_dict": true, "dtype": "float32", "chunk_size_feed_forward": 0, "is_encoder_decoder": false, "id2label": {"0": "LABEL_0", "1": "LABEL_1"}, "label2id": {"LABEL_0": 0, "LABEL_1": 1}, "problem_type": null, "vocab_size": 167, "n_positions": 1024, "n_embd": 768, "n_layer": 6, "n_head": 12, "n_inner": null, "activation_function": "gelu_new", "resid_pdrop": 0.1, "embd_pdrop": 0.1, "attn_pdrop": 0.1, "layer_norm_epsilon": 1e-05, "initializer_range": 0.02, "summary_type": "cls_index", "summary_use_proj": true, "summary_activation": null, "summary_proj_to_labels": true, "summary_first_dropout": 0.1, "scale_attn_weights": true, "use_cache": false, "bos_token_id": 5, "eos_token_id": 6, "pad_token_id": null, "scale_attn_by_inverse_layer_idx": false, "reorder_and_upcast_attn": false, "add_cross_attention": false, "tie_word_embeddings": true, "_name_or_path": "", "model_type": "gpt2", "output_attentions": false}, "checkpoints_dir": "rtf_checkpoints", "samples_save_dir": "rtf_samples", "full_save_dir": "rtf_full_save", "epochs": 30, "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": 30, "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": ["age", "sex", "bmi", "children", "smoker", "region", "charges"], "column_dtypes": {"age": "int64", "sex": "object", "bmi": "float64", "children": "int64", "smoker": "object", "region": "object", "charges": "float64"}, "column_has_missing": {"age": false, "sex": false, "bmi": false, "children": false, "smoker": false, "region": false, "charges": false}, "drop_na_cols": ["age", "sex", "bmi", "children", "smoker", "region", "charges"], "processed_columns": ["0___NUMERIC___age_00", "0___NUMERIC___age_01", "1___CATEGORICAL___sex", "2___NUMERIC___bmi_00", "2___NUMERIC___bmi_01", "2___NUMERIC___bmi_02", "2___NUMERIC___bmi_03", "2___NUMERIC___bmi_04", "2___NUMERIC___bmi_05", "3___NUMERIC___children_00", "4___CATEGORICAL___smoker", "5___CATEGORICAL___region", "6___NUMERIC___charges_00", "6___NUMERIC___charges_01", "6___NUMERIC___charges_02", "6___NUMERIC___charges_03", "6___NUMERIC___charges_04", "6___NUMERIC___charges_05", "6___NUMERIC___charges_06", "6___NUMERIC___charges_07", "6___NUMERIC___charges_08", "6___NUMERIC___charges_09"], "numeric_columns": ["age", "bmi", "children", "charges"], "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___age_00___1", "12": "0___NUMERIC___age_00___2", "13": "0___NUMERIC___age_00___3", "14": "0___NUMERIC___age_00___4", "15": "0___NUMERIC___age_00___5", "16": "0___NUMERIC___age_00___6", "17": "0___NUMERIC___age_01___0", "18": "0___NUMERIC___age_01___1", "19": "0___NUMERIC___age_01___2", "20": "0___NUMERIC___age_01___3", "21": "0___NUMERIC___age_01___4", "22": "0___NUMERIC___age_01___5", "23": "0___NUMERIC___age_01___6", "24": "0___NUMERIC___age_01___7", "25": "0___NUMERIC___age_01___8", "26": "0___NUMERIC___age_01___9", "27": "1___CATEGORICAL___sex___female", "28": "1___CATEGORICAL___sex___male", "29": "2___NUMERIC___bmi_00___1", "30": "2___NUMERIC___bmi_00___2", "31": "2___NUMERIC___bmi_00___3", "32": "2___NUMERIC___bmi_00___4", "33": "2___NUMERIC___bmi_00___5", "34": "2___NUMERIC___bmi_01___0", "35": "2___NUMERIC___bmi_01___1", "36": "2___NUMERIC___bmi_01___2", "37": "2___NUMERIC___bmi_01___3", "38": "2___NUMERIC___bmi_01___4", "39": "2___NUMERIC___bmi_01___5", "40": "2___NUMERIC___bmi_01___6", "41": "2___NUMERIC___bmi_01___7", "42": "2___NUMERIC___bmi_01___8", "43": "2___NUMERIC___bmi_01___9", "44": "2___NUMERIC___bmi_02___.", "45": "2___NUMERIC___bmi_03___0", "46": "2___NUMERIC___bmi_03___1", "47": "2___NUMERIC___bmi_03___2", "48": "2___NUMERIC___bmi_03___3", "49": "2___NUMERIC___bmi_03___4", "50": "2___NUMERIC___bmi_03___5", "51": "2___NUMERIC___bmi_03___6", "52": "2___NUMERIC___bmi_03___7", "53": "2___NUMERIC___bmi_03___8", "54": "2___NUMERIC___bmi_03___9", "55": "2___NUMERIC___bmi_04___0", "56": "2___NUMERIC___bmi_04___1", "57": "2___NUMERIC___bmi_04___2", "58": "2___NUMERIC___bmi_04___3", "59": "2___NUMERIC___bmi_04___4", "60": "2___NUMERIC___bmi_04___5", "61": "2___NUMERIC___bmi_04___6", "62": "2___NUMERIC___bmi_04___7", "63": "2___NUMERIC___bmi_04___8", "64": "2___NUMERIC___bmi_04___9", "65": "2___NUMERIC___bmi_05___0", "66": "2___NUMERIC___bmi_05___5", "67": "3___NUMERIC___children_00___0", "68": "3___NUMERIC___children_00___1", "69": "3___NUMERIC___children_00___2", "70": "3___NUMERIC___children_00___3", "71": "3___NUMERIC___children_00___4", "72": "3___NUMERIC___children_00___5", "73": "4___CATEGORICAL___smoker___no", "74": "4___CATEGORICAL___smoker___yes", "75": "5___CATEGORICAL___region___northeast", "76": "5___CATEGORICAL___region___northwest", "77": "5___CATEGORICAL___region___southeast", "78": "5___CATEGORICAL___region___southwest", "79": "6___NUMERIC___charges_00___0", "80": "6___NUMERIC___charges_00___1", "81": "6___NUMERIC___charges_00___2", "82": "6___NUMERIC___charges_00___3", "83": "6___NUMERIC___charges_00___4", "84": "6___NUMERIC___charges_00___5", "85": "6___NUMERIC___charges_00___6", "86": "6___NUMERIC___charges_01___0", "87": "6___NUMERIC___charges_01___1", "88": "6___NUMERIC___charges_01___2", "89": "6___NUMERIC___charges_01___3", "90": "6___NUMERIC___charges_01___4", "91": "6___NUMERIC___charges_01___5", "92": "6___NUMERIC___charges_01___6", "93": "6___NUMERIC___charges_01___7", "94": "6___NUMERIC___charges_01___8", "95": "6___NUMERIC___charges_01___9", "96": "6___NUMERIC___charges_02___0", "97": "6___NUMERIC___charges_02___1", "98": "6___NUMERIC___charges_02___2", "99": "6___NUMERIC___charges_02___3", "100": "6___NUMERIC___charges_02___4", "101": "6___NUMERIC___charges_02___5", "102": "6___NUMERIC___charges_02___6", "103": "6___NUMERIC___charges_02___7", "104": "6___NUMERIC___charges_02___8", "105": "6___NUMERIC___charges_02___9", "106": "6___NUMERIC___charges_03___0", "107": "6___NUMERIC___charges_03___1", "108": "6___NUMERIC___charges_03___2", "109": "6___NUMERIC___charges_03___3", "110": "6___NUMERIC___charges_03___4", "111": "6___NUMERIC___charges_03___5", "112": "6___NUMERIC___charges_03___6", "113": "6___NUMERIC___charges_03___7", "114": "6___NUMERIC___charges_03___8", "115": "6___NUMERIC___charges_03___9", "116": "6___NUMERIC___charges_04___0", "117": "6___NUMERIC___charges_04___1", "118": "6___NUMERIC___charges_04___2", "119": "6___NUMERIC___charges_04___3", "120": "6___NUMERIC___charges_04___4", "121": "6___NUMERIC___charges_04___5", "122": "6___NUMERIC___charges_04___6", "123": "6___NUMERIC___charges_04___7", "124": "6___NUMERIC___charges_04___8", "125": "6___NUMERIC___charges_04___9", "126": "6___NUMERIC___charges_05___.", "127": "6___NUMERIC___charges_06___0", "128": "6___NUMERIC___charges_06___1", "129": "6___NUMERIC___charges_06___2", "130": "6___NUMERIC___charges_06___3", "131": "6___NUMERIC___charges_06___4", "132": "6___NUMERIC___charges_06___5", "133": "6___NUMERIC___charges_06___6", "134": "6___NUMERIC___charges_06___7", "135": "6___NUMERIC___charges_06___8", "136": "6___NUMERIC___charges_06___9", "137": "6___NUMERIC___charges_07___0", "138": "6___NUMERIC___charges_07___1", "139": "6___NUMERIC___charges_07___2", "140": "6___NUMERIC___charges_07___3", "141": "6___NUMERIC___charges_07___4", "142": "6___NUMERIC___charges_07___5", "143": "6___NUMERIC___charges_07___6", "144": "6___NUMERIC___charges_07___7", "145": "6___NUMERIC___charges_07___8", "146": "6___NUMERIC___charges_07___9", "147": "6___NUMERIC___charges_08___0", "148": "6___NUMERIC___charges_08___1", "149": "6___NUMERIC___charges_08___2", "150": "6___NUMERIC___charges_08___3", "151": "6___NUMERIC___charges_08___4", "152": "6___NUMERIC___charges_08___5", "153": "6___NUMERIC___charges_08___6", "154": "6___NUMERIC___charges_08___7", "155": "6___NUMERIC___charges_08___8", "156": "6___NUMERIC___charges_08___9", "157": "6___NUMERIC___charges_09___0", "158": "6___NUMERIC___charges_09___1", "159": "6___NUMERIC___charges_09___2", "160": "6___NUMERIC___charges_09___3", "161": "6___NUMERIC___charges_09___4", "162": "6___NUMERIC___charges_09___5", "163": "6___NUMERIC___charges_09___6", "164": "6___NUMERIC___charges_09___7", "165": "6___NUMERIC___charges_09___8", "166": "6___NUMERIC___charges_09___9"}, "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___age_00___1": 11, "0___NUMERIC___age_00___2": 12, "0___NUMERIC___age_00___3": 13, "0___NUMERIC___age_00___4": 14, "0___NUMERIC___age_00___5": 15, "0___NUMERIC___age_00___6": 16, "0___NUMERIC___age_01___0": 17, "0___NUMERIC___age_01___1": 18, "0___NUMERIC___age_01___2": 19, "0___NUMERIC___age_01___3": 20, "0___NUMERIC___age_01___4": 21, "0___NUMERIC___age_01___5": 22, "0___NUMERIC___age_01___6": 23, "0___NUMERIC___age_01___7": 24, "0___NUMERIC___age_01___8": 25, "0___NUMERIC___age_01___9": 26, "1___CATEGORICAL___sex___female": 27, "1___CATEGORICAL___sex___male": 28, "2___NUMERIC___bmi_00___1": 29, "2___NUMERIC___bmi_00___2": 30, "2___NUMERIC___bmi_00___3": 31, "2___NUMERIC___bmi_00___4": 32, "2___NUMERIC___bmi_00___5": 33, "2___NUMERIC___bmi_01___0": 34, "2___NUMERIC___bmi_01___1": 35, "2___NUMERIC___bmi_01___2": 36, "2___NUMERIC___bmi_01___3": 37, "2___NUMERIC___bmi_01___4": 38, "2___NUMERIC___bmi_01___5": 39, "2___NUMERIC___bmi_01___6": 40, "2___NUMERIC___bmi_01___7": 41, "2___NUMERIC___bmi_01___8": 42, "2___NUMERIC___bmi_01___9": 43, "2___NUMERIC___bmi_02___.": 44, "2___NUMERIC___bmi_03___0": 45, "2___NUMERIC___bmi_03___1": 46, "2___NUMERIC___bmi_03___2": 47, "2___NUMERIC___bmi_03___3": 48, "2___NUMERIC___bmi_03___4": 49, "2___NUMERIC___bmi_03___5": 50, "2___NUMERIC___bmi_03___6": 51, "2___NUMERIC___bmi_03___7": 52, "2___NUMERIC___bmi_03___8": 53, "2___NUMERIC___bmi_03___9": 54, "2___NUMERIC___bmi_04___0": 55, "2___NUMERIC___bmi_04___1": 56, "2___NUMERIC___bmi_04___2": 57, "2___NUMERIC___bmi_04___3": 58, "2___NUMERIC___bmi_04___4": 59, "2___NUMERIC___bmi_04___5": 60, "2___NUMERIC___bmi_04___6": 61, "2___NUMERIC___bmi_04___7": 62, "2___NUMERIC___bmi_04___8": 63, "2___NUMERIC___bmi_04___9": 64, "2___NUMERIC___bmi_05___0": 65, "2___NUMERIC___bmi_05___5": 66, "3___NUMERIC___children_00___0": 67, "3___NUMERIC___children_00___1": 68, "3___NUMERIC___children_00___2": 69, "3___NUMERIC___children_00___3": 70, "3___NUMERIC___children_00___4": 71, "3___NUMERIC___children_00___5": 72, "4___CATEGORICAL___smoker___no": 73, "4___CATEGORICAL___smoker___yes": 74, "5___CATEGORICAL___region___northeast": 75, "5___CATEGORICAL___region___northwest": 76, "5___CATEGORICAL___region___southeast": 77, "5___CATEGORICAL___region___southwest": 78, "6___NUMERIC___charges_00___0": 79, "6___NUMERIC___charges_00___1": 80, "6___NUMERIC___charges_00___2": 81, "6___NUMERIC___charges_00___3": 82, "6___NUMERIC___charges_00___4": 83, "6___NUMERIC___charges_00___5": 84, "6___NUMERIC___charges_00___6": 85, "6___NUMERIC___charges_01___0": 86, "6___NUMERIC___charges_01___1": 87, "6___NUMERIC___charges_01___2": 88, "6___NUMERIC___charges_01___3": 89, "6___NUMERIC___charges_01___4": 90, "6___NUMERIC___charges_01___5": 91, "6___NUMERIC___charges_01___6": 92, "6___NUMERIC___charges_01___7": 93, "6___NUMERIC___charges_01___8": 94, "6___NUMERIC___charges_01___9": 95, "6___NUMERIC___charges_02___0": 96, "6___NUMERIC___charges_02___1": 97, "6___NUMERIC___charges_02___2": 98, "6___NUMERIC___charges_02___3": 99, "6___NUMERIC___charges_02___4": 100, "6___NUMERIC___charges_02___5": 101, "6___NUMERIC___charges_02___6": 102, "6___NUMERIC___charges_02___7": 103, "6___NUMERIC___charges_02___8": 104, "6___NUMERIC___charges_02___9": 105, "6___NUMERIC___charges_03___0": 106, "6___NUMERIC___charges_03___1": 107, "6___NUMERIC___charges_03___2": 108, "6___NUMERIC___charges_03___3": 109, "6___NUMERIC___charges_03___4": 110, "6___NUMERIC___charges_03___5": 111, "6___NUMERIC___charges_03___6": 112, "6___NUMERIC___charges_03___7": 113, "6___NUMERIC___charges_03___8": 114, "6___NUMERIC___charges_03___9": 115, "6___NUMERIC___charges_04___0": 116, "6___NUMERIC___charges_04___1": 117, "6___NUMERIC___charges_04___2": 118, "6___NUMERIC___charges_04___3": 119, "6___NUMERIC___charges_04___4": 120, "6___NUMERIC___charges_04___5": 121, "6___NUMERIC___charges_04___6": 122, "6___NUMERIC___charges_04___7": 123, "6___NUMERIC___charges_04___8": 124, "6___NUMERIC___charges_04___9": 125, "6___NUMERIC___charges_05___.": 126, "6___NUMERIC___charges_06___0": 127, "6___NUMERIC___charges_06___1": 128, "6___NUMERIC___charges_06___2": 129, "6___NUMERIC___charges_06___3": 130, "6___NUMERIC___charges_06___4": 131, "6___NUMERIC___charges_06___5": 132, "6___NUMERIC___charges_06___6": 133, "6___NUMERIC___charges_06___7": 134, "6___NUMERIC___charges_06___8": 135, "6___NUMERIC___charges_06___9": 136, "6___NUMERIC___charges_07___0": 137, "6___NUMERIC___charges_07___1": 138, "6___NUMERIC___charges_07___2": 139, "6___NUMERIC___charges_07___3": 140, "6___NUMERIC___charges_07___4": 141, "6___NUMERIC___charges_07___5": 142, "6___NUMERIC___charges_07___6": 143, "6___NUMERIC___charges_07___7": 144, "6___NUMERIC___charges_07___8": 145, "6___NUMERIC___charges_07___9": 146, "6___NUMERIC___charges_08___0": 147, "6___NUMERIC___charges_08___1": 148, "6___NUMERIC___charges_08___2": 149, "6___NUMERIC___charges_08___3": 150, "6___NUMERIC___charges_08___4": 151, "6___NUMERIC___charges_08___5": 152, "6___NUMERIC___charges_08___6": 153, "6___NUMERIC___charges_08___7": 154, "6___NUMERIC___charges_08___8": 155, "6___NUMERIC___charges_08___9": 156, "6___NUMERIC___charges_09___0": 157, "6___NUMERIC___charges_09___1": 158, "6___NUMERIC___charges_09___2": 159, "6___NUMERIC___charges_09___3": 160, "6___NUMERIC___charges_09___4": 161, "6___NUMERIC___charges_09___5": 162, "6___NUMERIC___charges_09___6": 163, "6___NUMERIC___charges_09___7": 164, "6___NUMERIC___charges_09___8": 165, "6___NUMERIC___charges_09___9": 166}, "column_token_ids": {"0___NUMERIC___age_00": [11, 12, 13, 14, 15, 16], "0___NUMERIC___age_01": [17, 18, 19, 20, 21, 22, 23, 24, 25, 26], "1___CATEGORICAL___sex": [27, 28], "2___NUMERIC___bmi_00": [29, 30, 31, 32, 33], "2___NUMERIC___bmi_01": [34, 35, 36, 37, 38, 39, 40, 41, 42, 43], "2___NUMERIC___bmi_02": [44], "2___NUMERIC___bmi_03": [45, 46, 47, 48, 49, 50, 51, 52, 53, 54], "2___NUMERIC___bmi_04": [55, 56, 57, 58, 59, 60, 61, 62, 63, 64], "2___NUMERIC___bmi_05": [65, 66], "3___NUMERIC___children_00": [67, 68, 69, 70, 71, 72], "4___CATEGORICAL___smoker": [73, 74], "5___CATEGORICAL___region": [75, 76, 77, 78], "6___NUMERIC___charges_00": [79, 80, 81, 82, 83, 84, 85], "6___NUMERIC___charges_01": [86, 87, 88, 89, 90, 91, 92, 93, 94, 95], "6___NUMERIC___charges_02": [96, 97, 98, 99, 100, 101, 102, 103, 104, 105], "6___NUMERIC___charges_03": [106, 107, 108, 109, 110, 111, 112, 113, 114, 115], "6___NUMERIC___charges_04": [116, 117, 118, 119, 120, 121, 122, 123, 124, 125], "6___NUMERIC___charges_05": [126], "6___NUMERIC___charges_06": [127, 128, 129, 130, 131, 132, 133, 134, 135, 136], "6___NUMERIC___charges_07": [137, 138, 139, 140, 141, 142, 143, 144, 145, 146], "6___NUMERIC___charges_08": [147, 148, 149, 150, 151, 152, 153, 154, 155, 156], "6___NUMERIC___charges_09": [157, 158, 159, 160, 161, 162, 163, 164, 165, 166]}}, "tabular_max_length": 24, "relational_max_length": null, "tabular_col_size": 2217, "relational_col_size": null, "col_transform_data": {"age": {"max_len": 10, "numeric_precision": 4, "mx_sig": -1, "zfill": 2, "numeric_nparts": 1}, "bmi": {"max_len": 10, "numeric_precision": 4, "mx_sig": 2, "ljust": 6, "numeric_nparts": 1}, "children": {"max_len": 10, "numeric_precision": 4, "mx_sig": -1, "zfill": 1, "numeric_nparts": 1}, "charges": {"max_len": 10, "numeric_precision": 4, "mx_sig": 5, "ljust": 10, "numeric_nparts": 1}}, "in_col_transform_data": null, "col_idx_ids": {"0": [11, 12, 13, 14, 15, 16], "1": [17, 18, 19, 20, 21, 22, 23, 24, 25, 26], "2": [27, 28], "3": [29, 30, 31, 32, 33], "4": [34, 35, 36, 37, 38, 39, 40, 41, 42, 43], "5": [44], "6": [45, 46, 47, 48, 49, 50, 51, 52, 53, 54], "7": [55, 56, 57, 58, 59, 60, 61, 62, 63, 64], "8": [65, 66], "9": [67, 68, 69, 70, 71, 72], "10": [73, 74], "11": [75, 76, 77, 78], "12": [79, 80, 81, 82, 83, 84, 85], "13": [86, 87, 88, 89, 90, 91, 92, 93, 94, 95], "14": [96, 97, 98, 99, 100, 101, 102, 103, 104, 105], "15": [106, 107, 108, 109, 110, 111, 112, 113, 114, 115], "16": [116, 117, 118, 119, 120, 121, 122, 123, 124, 125], "17": [126], "18": [127, 128, 129, 130, 131, 132, 133, 134, 135, 136], "19": [137, 138, 139, 140, 141, 142, 143, 144, 145, 146], "20": [147, 148, 149, 150, 151, 152, 153, 154, 155, 156], "21": [157, 158, 159, 160, 161, 162, 163, 164, 165, 166]}, "random_state": 1029, "numeric_nparts": 1, "numeric_precision": 4, "numeric_max_len": 10, "experiment_id": "id000017779192741692829696", "trainer_state": null, "target_col": null, "realtabformer_version": "0.2.4"} \ No newline at end of file diff --git a/hyperparameter/m4/realtabformer/rtf-m4-20260505_022448/models_30epochs/id000017779192741692829696/rtf_model.pt b/hyperparameter/m4/realtabformer/rtf-m4-20260505_022448/models_30epochs/id000017779192741692829696/rtf_model.pt new file mode 100644 index 0000000000000000000000000000000000000000..60cd615eb9db31964afad004b4585d5d81279ed6 --- /dev/null +++ b/hyperparameter/m4/realtabformer/rtf-m4-20260505_022448/models_30epochs/id000017779192741692829696/rtf_model.pt @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:9ac06dbf1f3f93af0b88ec97cce3d33095af5d5253370172a75eb119bc83c9e9 +size 173802979 diff --git a/hyperparameter/m4/realtabformer/rtf-m4-20260505_022448/public_gate/normalized_schema_snapshot.json b/hyperparameter/m4/realtabformer/rtf-m4-20260505_022448/public_gate/normalized_schema_snapshot.json new file mode 100644 index 0000000000000000000000000000000000000000..31ed9818686b11907df75e872e4ffbe010330880 --- /dev/null +++ b/hyperparameter/m4/realtabformer/rtf-m4-20260505_022448/public_gate/normalized_schema_snapshot.json @@ -0,0 +1,147 @@ +{ + "dataset_id": "m4", + "target_column": "charges", + "task_type": "regression", + "columns": [ + { + "name": "age", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 47, + "unique_ratio": 0.0212, + "example_values": [ + "46", + "38", + "19", + "27", + "26" + ] + } + }, + { + "name": "sex", + "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.000902, + "example_values": [ + "female", + "male" + ] + } + }, + { + "name": "bmi", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 538, + "unique_ratio": 0.24267, + "example_values": [ + "23.655", + "19.3", + "30.59", + "32.67", + "29.45" + ] + } + }, + { + "name": "children", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 6, + "unique_ratio": 0.002706, + "example_values": [ + "1", + "0", + "3", + "2", + "5" + ] + } + }, + { + "name": "smoker", + "role": "feature", + "semantic_type": "boolean", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 2, + "unique_ratio": 0.000902, + "example_values": [ + "yes", + "no" + ] + } + }, + { + "name": "region", + "role": "feature", + "semantic_type": "categorical", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 4, + "unique_ratio": 0.001804, + "example_values": [ + "northwest", + "southwest", + "southeast", + "northeast" + ] + } + }, + { + "name": "charges", + "role": "target", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 1281, + "unique_ratio": 0.577808, + "example_values": [ + "21677.28345", + "15820.699", + "1639.5631", + "2497.0383", + "2897.3235" + ] + } + } + ] +} \ No newline at end of file diff --git a/hyperparameter/m4/realtabformer/rtf-m4-20260505_022448/public_gate/public_gate_report.json b/hyperparameter/m4/realtabformer/rtf-m4-20260505_022448/public_gate/public_gate_report.json new file mode 100644 index 0000000000000000000000000000000000000000..e7a25408e2574124629ea9437356551e4d6f4790 --- /dev/null +++ b/hyperparameter/m4/realtabformer/rtf-m4-20260505_022448/public_gate/public_gate_report.json @@ -0,0 +1,37 @@ +{ + "dataset_id": "m4", + "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": "charges", + "task_type": "regression", + "input_splits": { + "train": "/data/jialinzhang/SynthesizePipeline-server/DatasetNew/m4/m4-train.csv", + "val": "/data/jialinzhang/SynthesizePipeline-server/DatasetNew/m4/m4-val.csv", + "test": "/data/jialinzhang/SynthesizePipeline-server/DatasetNew/m4/m4-test.csv" + } +} \ No newline at end of file diff --git a/hyperparameter/m4/realtabformer/rtf-m4-20260505_022448/public_gate/staged_input_manifest.json b/hyperparameter/m4/realtabformer/rtf-m4-20260505_022448/public_gate/staged_input_manifest.json new file mode 100644 index 0000000000000000000000000000000000000000..a8a950ae98d905f5a1346101d2c0a5a5d56ac327 --- /dev/null +++ b/hyperparameter/m4/realtabformer/rtf-m4-20260505_022448/public_gate/staged_input_manifest.json @@ -0,0 +1,152 @@ +{ + "dataset_id": "m4", + "target_column": "charges", + "task_type": "regression", + "train_csv": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/m4/realtabformer/rtf-m4-20260505_022448/staged/public/train.csv", + "val_csv": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/m4/realtabformer/rtf-m4-20260505_022448/staged/public/val.csv", + "test_csv": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/m4/realtabformer/rtf-m4-20260505_022448/staged/public/test.csv", + "features_json": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/m4/realtabformer/rtf-m4-20260505_022448/staged/public/staged_features.json", + "public_gate_report": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/m4/realtabformer/rtf-m4-20260505_022448/public_gate/public_gate_report.json", + "column_schema": [ + { + "name": "age", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 47, + "unique_ratio": 0.0212, + "example_values": [ + "46", + "38", + "19", + "27", + "26" + ] + } + }, + { + "name": "sex", + "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.000902, + "example_values": [ + "female", + "male" + ] + } + }, + { + "name": "bmi", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 538, + "unique_ratio": 0.24267, + "example_values": [ + "23.655", + "19.3", + "30.59", + "32.67", + "29.45" + ] + } + }, + { + "name": "children", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 6, + "unique_ratio": 0.002706, + "example_values": [ + "1", + "0", + "3", + "2", + "5" + ] + } + }, + { + "name": "smoker", + "role": "feature", + "semantic_type": "boolean", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 2, + "unique_ratio": 0.000902, + "example_values": [ + "yes", + "no" + ] + } + }, + { + "name": "region", + "role": "feature", + "semantic_type": "categorical", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 4, + "unique_ratio": 0.001804, + "example_values": [ + "northwest", + "southwest", + "southeast", + "northeast" + ] + } + }, + { + "name": "charges", + "role": "target", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 1281, + "unique_ratio": 0.577808, + "example_values": [ + "21677.28345", + "15820.699", + "1639.5631", + "2497.0383", + "2897.3235" + ] + } + } + ] +} \ No newline at end of file diff --git a/hyperparameter/m4/realtabformer/rtf-m4-20260505_022448/realtabformer_features.json b/hyperparameter/m4/realtabformer/rtf-m4-20260505_022448/realtabformer_features.json new file mode 100644 index 0000000000000000000000000000000000000000..d6acd098c35111f423f3ffff2cfd1754bc5dfebc --- /dev/null +++ b/hyperparameter/m4/realtabformer/rtf-m4-20260505_022448/realtabformer_features.json @@ -0,0 +1,37 @@ +[ + { + "feature_name": "age", + "data_type": "continuous", + "is_target": false + }, + { + "feature_name": "sex", + "data_type": "categorical", + "is_target": false + }, + { + "feature_name": "bmi", + "data_type": "continuous", + "is_target": false + }, + { + "feature_name": "children", + "data_type": "continuous", + "is_target": false + }, + { + "feature_name": "smoker", + "data_type": "binary", + "is_target": false + }, + { + "feature_name": "region", + "data_type": "categorical", + "is_target": false + }, + { + "feature_name": "charges", + "data_type": "continuous", + "is_target": true + } +] \ No newline at end of file diff --git a/hyperparameter/m4/realtabformer/rtf-m4-20260505_022448/rtf-m4-2217-20260505_022756.csv b/hyperparameter/m4/realtabformer/rtf-m4-20260505_022448/rtf-m4-2217-20260505_022756.csv new file mode 100644 index 0000000000000000000000000000000000000000..30549b7ab72ce5d58d7e73b1b2102c597f7199aa --- /dev/null +++ b/hyperparameter/m4/realtabformer/rtf-m4-20260505_022448/rtf-m4-2217-20260505_022756.csv @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:748e17e1d73576c9db5a15053bb27fd6220cf438a3d03f344ad854bc3b9928ed +size 89309 diff --git a/hyperparameter/m4/realtabformer/rtf-m4-20260505_022448/rtf_checkpoints/checkpoint-1890/config.json b/hyperparameter/m4/realtabformer/rtf-m4-20260505_022448/rtf_checkpoints/checkpoint-1890/config.json new file mode 100644 index 0000000000000000000000000000000000000000..69b1961f0cbafdc846150e71a2d82b4ce3beb94c --- /dev/null +++ b/hyperparameter/m4/realtabformer/rtf-m4-20260505_022448/rtf_checkpoints/checkpoint-1890/config.json @@ -0,0 +1,34 @@ +{ + "activation_function": "gelu_new", + "add_cross_attention": false, + "architectures": [ + "GPT2LMHeadModel" + ], + "attn_pdrop": 0.1, + "bos_token_id": 5, + "dtype": "float32", + "embd_pdrop": 0.1, + "eos_token_id": 6, + "initializer_range": 0.02, + "layer_norm_epsilon": 1e-05, + "model_type": "gpt2", + "n_embd": 768, + "n_head": 12, + "n_inner": null, + "n_layer": 6, + "n_positions": 1024, + "pad_token_id": null, + "reorder_and_upcast_attn": false, + "resid_pdrop": 0.1, + "scale_attn_by_inverse_layer_idx": false, + "scale_attn_weights": true, + "summary_activation": null, + "summary_first_dropout": 0.1, + "summary_proj_to_labels": true, + "summary_type": "cls_index", + "summary_use_proj": true, + "tie_word_embeddings": true, + "transformers_version": "5.5.3", + "use_cache": false, + "vocab_size": 167 +} diff --git a/hyperparameter/m4/realtabformer/rtf-m4-20260505_022448/rtf_checkpoints/checkpoint-1890/generation_config.json b/hyperparameter/m4/realtabformer/rtf-m4-20260505_022448/rtf_checkpoints/checkpoint-1890/generation_config.json new file mode 100644 index 0000000000000000000000000000000000000000..ffe89567780e75b5c22eade9be971483b9618f39 --- /dev/null +++ b/hyperparameter/m4/realtabformer/rtf-m4-20260505_022448/rtf_checkpoints/checkpoint-1890/generation_config.json @@ -0,0 +1,9 @@ +{ + "_from_model_config": true, + "bos_token_id": 5, + "eos_token_id": 6, + "output_attentions": false, + "output_hidden_states": false, + "transformers_version": "5.5.3", + "use_cache": true +} diff --git a/hyperparameter/m4/realtabformer/rtf-m4-20260505_022448/rtf_checkpoints/checkpoint-1890/model.safetensors b/hyperparameter/m4/realtabformer/rtf-m4-20260505_022448/rtf_checkpoints/checkpoint-1890/model.safetensors new file mode 100644 index 0000000000000000000000000000000000000000..549715243e00f0fe92fb6612349d02fd385af836 --- /dev/null +++ b/hyperparameter/m4/realtabformer/rtf-m4-20260505_022448/rtf_checkpoints/checkpoint-1890/model.safetensors @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:0c148186fc66aa02e74772e63aea0b992674e9ab2e0a3bb3cae7921be4798011 +size 173781448 diff --git a/hyperparameter/m4/realtabformer/rtf-m4-20260505_022448/rtf_checkpoints/checkpoint-1890/optimizer.pt b/hyperparameter/m4/realtabformer/rtf-m4-20260505_022448/rtf_checkpoints/checkpoint-1890/optimizer.pt new file mode 100644 index 0000000000000000000000000000000000000000..2283f392b0d16e32534ea264271d302081e4a0c0 --- /dev/null +++ b/hyperparameter/m4/realtabformer/rtf-m4-20260505_022448/rtf_checkpoints/checkpoint-1890/optimizer.pt @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:a7b1a516e1dde29aebaf5ac91b42bd50a61de464f536b2a8c56cd10cb34f8d92 +size 347611979 diff --git a/hyperparameter/m4/realtabformer/rtf-m4-20260505_022448/rtf_checkpoints/checkpoint-1890/rng_state.pth b/hyperparameter/m4/realtabformer/rtf-m4-20260505_022448/rtf_checkpoints/checkpoint-1890/rng_state.pth new file mode 100644 index 0000000000000000000000000000000000000000..2f4235fc310bb3289eca5b7c66bba0648cd5485a --- /dev/null +++ b/hyperparameter/m4/realtabformer/rtf-m4-20260505_022448/rtf_checkpoints/checkpoint-1890/rng_state.pth @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:01ff30d9137db895111f04a375048726c6e0c1de382068ba70023ffd0fa11d0c +size 14645 diff --git a/hyperparameter/m4/realtabformer/rtf-m4-20260505_022448/rtf_checkpoints/checkpoint-1890/scaler.pt b/hyperparameter/m4/realtabformer/rtf-m4-20260505_022448/rtf_checkpoints/checkpoint-1890/scaler.pt new file mode 100644 index 0000000000000000000000000000000000000000..5aada29404031f804fbc73fd5423fac4e0f3fe33 --- /dev/null +++ b/hyperparameter/m4/realtabformer/rtf-m4-20260505_022448/rtf_checkpoints/checkpoint-1890/scaler.pt @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:4066deb3cf97e4f4e52481de87fd24e29cd6973c2daa9170607cb0444f39e757 +size 1383 diff --git a/hyperparameter/m4/realtabformer/rtf-m4-20260505_022448/rtf_checkpoints/checkpoint-1890/scheduler.pt b/hyperparameter/m4/realtabformer/rtf-m4-20260505_022448/rtf_checkpoints/checkpoint-1890/scheduler.pt new file mode 100644 index 0000000000000000000000000000000000000000..ced29f79187248fdc784cc0f5bb642ff5edd176d --- /dev/null +++ b/hyperparameter/m4/realtabformer/rtf-m4-20260505_022448/rtf_checkpoints/checkpoint-1890/scheduler.pt @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:a65eb6484a5a6b3da67a817baf60b1f693edf0eac8bea3d8152750f96dfe5b83 +size 1465 diff --git a/hyperparameter/m4/realtabformer/rtf-m4-20260505_022448/rtf_checkpoints/checkpoint-1890/trainer_state.json b/hyperparameter/m4/realtabformer/rtf-m4-20260505_022448/rtf_checkpoints/checkpoint-1890/trainer_state.json new file mode 100644 index 0000000000000000000000000000000000000000..358909c96babbd0f3dec6648baeecf4a2e68a1f3 --- /dev/null +++ b/hyperparameter/m4/realtabformer/rtf-m4-20260505_022448/rtf_checkpoints/checkpoint-1890/trainer_state.json @@ -0,0 +1,160 @@ +{ + "best_global_step": null, + "best_metric": null, + "best_model_checkpoint": null, + "epoch": 27.0, + "eval_steps": 100, + "global_step": 1890, + "is_hyper_param_search": false, + "is_local_process_zero": true, + "is_world_process_zero": true, + "log_history": [ + { + "epoch": 1.4316546762589928, + "grad_norm": 0.3565683364868164, + "learning_rate": 4.764285714285715e-05, + "loss": 1.9764512634277345, + "step": 100 + }, + { + "epoch": 2.8633093525179856, + "grad_norm": 0.3443331718444824, + "learning_rate": 4.5261904761904766e-05, + "loss": 1.4031263732910155, + "step": 200 + }, + { + "epoch": 4.287769784172662, + "grad_norm": 0.3818703293800354, + "learning_rate": 4.2880952380952384e-05, + "loss": 1.34267333984375, + "step": 300 + }, + { + "epoch": 5.719424460431655, + "grad_norm": 0.3902508616447449, + "learning_rate": 4.05e-05, + "loss": 1.3028179931640624, + "step": 400 + }, + { + "epoch": 7.143884892086331, + "grad_norm": 0.4177478849887848, + "learning_rate": 3.811904761904762e-05, + "loss": 1.2656465911865233, + "step": 500 + }, + { + "epoch": 8.575539568345324, + "grad_norm": 0.45499929785728455, + "learning_rate": 3.573809523809524e-05, + "loss": 1.2208662414550782, + "step": 600 + }, + { + "epoch": 10.0, + "grad_norm": 0.9257044196128845, + "learning_rate": 3.3357142857142856e-05, + "loss": 1.1849348449707031, + "step": 700 + }, + { + "epoch": 11.431654676258994, + "grad_norm": 0.48045459389686584, + "learning_rate": 3.0976190476190474e-05, + "loss": 1.137085189819336, + "step": 800 + }, + { + "epoch": 12.863309352517986, + "grad_norm": 0.5455576777458191, + "learning_rate": 2.85952380952381e-05, + "loss": 1.0880362701416015, + "step": 900 + }, + { + "epoch": 14.287769784172662, + "grad_norm": 0.5188819766044617, + "learning_rate": 2.6214285714285713e-05, + "loss": 1.0332509613037109, + "step": 1000 + }, + { + "epoch": 15.719424460431654, + "grad_norm": 0.5837603211402893, + "learning_rate": 2.3833333333333334e-05, + "loss": 0.9796466827392578, + "step": 1100 + }, + { + "epoch": 17.14388489208633, + "grad_norm": 0.545587956905365, + "learning_rate": 2.1452380952380956e-05, + "loss": 0.9271060943603515, + "step": 1200 + }, + { + "epoch": 18.575539568345324, + "grad_norm": 0.5845211744308472, + "learning_rate": 1.9071428571428574e-05, + "loss": 0.8723542022705079, + "step": 1300 + }, + { + "epoch": 20.0, + "grad_norm": 1.1792553663253784, + "learning_rate": 1.669047619047619e-05, + "loss": 0.8364682769775391, + "step": 1400 + }, + { + "epoch": 21.431654676258994, + "grad_norm": 0.6324464678764343, + "learning_rate": 1.4309523809523811e-05, + "loss": 0.7877474975585937, + "step": 1500 + }, + { + "epoch": 22.863309352517987, + "grad_norm": 0.5953481197357178, + "learning_rate": 1.192857142857143e-05, + "loss": 0.759727554321289, + "step": 1600 + }, + { + "epoch": 24.28776978417266, + "grad_norm": 0.6249268651008606, + "learning_rate": 9.547619047619049e-06, + "loss": 0.7275640869140625, + "step": 1700 + }, + { + "epoch": 25.719424460431654, + "grad_norm": 0.571466326713562, + "learning_rate": 7.166666666666667e-06, + "loss": 0.7071914672851562, + "step": 1800 + } + ], + "logging_steps": 100, + "max_steps": 2100, + "num_input_tokens_seen": 0, + "num_train_epochs": 30, + "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": 366585051414528.0, + "train_batch_size": 8, + "trial_name": null, + "trial_params": null +} diff --git a/hyperparameter/m4/realtabformer/rtf-m4-20260505_022448/rtf_checkpoints/checkpoint-1890/training_args.bin b/hyperparameter/m4/realtabformer/rtf-m4-20260505_022448/rtf_checkpoints/checkpoint-1890/training_args.bin new file mode 100644 index 0000000000000000000000000000000000000000..3d8b32516bfaeaa087fca28752b0d5ac8a4f9a32 --- /dev/null +++ b/hyperparameter/m4/realtabformer/rtf-m4-20260505_022448/rtf_checkpoints/checkpoint-1890/training_args.bin @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:0d3dc95355536f0383a0f823e8f277b91339a18334832f20d708fd987d139c82 +size 5201 diff --git a/hyperparameter/m4/realtabformer/rtf-m4-20260505_022448/rtf_checkpoints/checkpoint-1900/config.json b/hyperparameter/m4/realtabformer/rtf-m4-20260505_022448/rtf_checkpoints/checkpoint-1900/config.json new file mode 100644 index 0000000000000000000000000000000000000000..69b1961f0cbafdc846150e71a2d82b4ce3beb94c --- /dev/null +++ b/hyperparameter/m4/realtabformer/rtf-m4-20260505_022448/rtf_checkpoints/checkpoint-1900/config.json @@ -0,0 +1,34 @@ +{ + "activation_function": "gelu_new", + "add_cross_attention": false, + "architectures": [ + "GPT2LMHeadModel" + ], + "attn_pdrop": 0.1, + "bos_token_id": 5, + "dtype": "float32", + "embd_pdrop": 0.1, + "eos_token_id": 6, + "initializer_range": 0.02, + "layer_norm_epsilon": 1e-05, + "model_type": "gpt2", + "n_embd": 768, + "n_head": 12, + "n_inner": null, + "n_layer": 6, + "n_positions": 1024, + "pad_token_id": null, + "reorder_and_upcast_attn": false, + "resid_pdrop": 0.1, + "scale_attn_by_inverse_layer_idx": false, + "scale_attn_weights": true, + "summary_activation": null, + "summary_first_dropout": 0.1, + "summary_proj_to_labels": true, + "summary_type": "cls_index", + "summary_use_proj": true, + "tie_word_embeddings": true, + "transformers_version": "5.5.3", + "use_cache": false, + "vocab_size": 167 +} diff --git a/hyperparameter/m4/realtabformer/rtf-m4-20260505_022448/rtf_checkpoints/checkpoint-1900/generation_config.json b/hyperparameter/m4/realtabformer/rtf-m4-20260505_022448/rtf_checkpoints/checkpoint-1900/generation_config.json new file mode 100644 index 0000000000000000000000000000000000000000..ffe89567780e75b5c22eade9be971483b9618f39 --- /dev/null +++ b/hyperparameter/m4/realtabformer/rtf-m4-20260505_022448/rtf_checkpoints/checkpoint-1900/generation_config.json @@ -0,0 +1,9 @@ +{ + "_from_model_config": true, + "bos_token_id": 5, + "eos_token_id": 6, + "output_attentions": false, + "output_hidden_states": false, + "transformers_version": "5.5.3", + "use_cache": true +} diff --git a/hyperparameter/m4/realtabformer/rtf-m4-20260505_022448/rtf_checkpoints/checkpoint-1900/model.safetensors b/hyperparameter/m4/realtabformer/rtf-m4-20260505_022448/rtf_checkpoints/checkpoint-1900/model.safetensors new file mode 100644 index 0000000000000000000000000000000000000000..5e7a2a522a98afc16e4024732fb48b9217ec6d02 --- /dev/null +++ b/hyperparameter/m4/realtabformer/rtf-m4-20260505_022448/rtf_checkpoints/checkpoint-1900/model.safetensors @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:8b0272eefba4674e6b06a4f3afae85f65c98d6f69e2c15a8938b590d20b14352 +size 173781448 diff --git a/hyperparameter/m4/realtabformer/rtf-m4-20260505_022448/rtf_checkpoints/checkpoint-1900/optimizer.pt b/hyperparameter/m4/realtabformer/rtf-m4-20260505_022448/rtf_checkpoints/checkpoint-1900/optimizer.pt new file mode 100644 index 0000000000000000000000000000000000000000..b1e394f7b66afa414a03db0a78d3c3b0a8bfd105 --- /dev/null +++ b/hyperparameter/m4/realtabformer/rtf-m4-20260505_022448/rtf_checkpoints/checkpoint-1900/optimizer.pt @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:13479562962ba479ae086e29a90a6e36eb12811a9fd1ad4a9eeb6b419251ab43 +size 347611979 diff --git a/hyperparameter/m4/realtabformer/rtf-m4-20260505_022448/rtf_checkpoints/checkpoint-1900/rng_state.pth b/hyperparameter/m4/realtabformer/rtf-m4-20260505_022448/rtf_checkpoints/checkpoint-1900/rng_state.pth new file mode 100644 index 0000000000000000000000000000000000000000..dd9c0748a87017e56fb9edc0a7d7cd358e900f76 --- /dev/null +++ b/hyperparameter/m4/realtabformer/rtf-m4-20260505_022448/rtf_checkpoints/checkpoint-1900/rng_state.pth @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:e27d5e124f8766591d250de524ff59e8268e8f84e91826714f0e0d9e024309cd +size 14645 diff --git a/hyperparameter/m4/realtabformer/rtf-m4-20260505_022448/rtf_checkpoints/checkpoint-1900/scaler.pt b/hyperparameter/m4/realtabformer/rtf-m4-20260505_022448/rtf_checkpoints/checkpoint-1900/scaler.pt new file mode 100644 index 0000000000000000000000000000000000000000..3ee47b1ff889acb2e24913753cdee6faad2fe331 --- /dev/null +++ b/hyperparameter/m4/realtabformer/rtf-m4-20260505_022448/rtf_checkpoints/checkpoint-1900/scaler.pt @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:ba37c652862bfa8079be80bdec740c4e7540c07c0e1d53932bdf757c7b90369f +size 1383 diff --git a/hyperparameter/m4/realtabformer/rtf-m4-20260505_022448/rtf_checkpoints/checkpoint-1900/scheduler.pt b/hyperparameter/m4/realtabformer/rtf-m4-20260505_022448/rtf_checkpoints/checkpoint-1900/scheduler.pt new file mode 100644 index 0000000000000000000000000000000000000000..b4b538ce762dcabfd483b317b06ff0b3be9dd13b --- /dev/null +++ b/hyperparameter/m4/realtabformer/rtf-m4-20260505_022448/rtf_checkpoints/checkpoint-1900/scheduler.pt @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:0c952e8521e3096068f6a00a05e97753819996ef5e6903550f5f45f2c6423a6a +size 1465 diff --git a/hyperparameter/m4/realtabformer/rtf-m4-20260505_022448/rtf_checkpoints/checkpoint-1900/trainer_state.json b/hyperparameter/m4/realtabformer/rtf-m4-20260505_022448/rtf_checkpoints/checkpoint-1900/trainer_state.json new file mode 100644 index 0000000000000000000000000000000000000000..cd24ebfb942fe1cb95a3f5eb8fd46046e9fda512 --- /dev/null +++ b/hyperparameter/m4/realtabformer/rtf-m4-20260505_022448/rtf_checkpoints/checkpoint-1900/trainer_state.json @@ -0,0 +1,167 @@ +{ + "best_global_step": null, + "best_metric": null, + "best_model_checkpoint": null, + "epoch": 27.14388489208633, + "eval_steps": 100, + "global_step": 1900, + "is_hyper_param_search": false, + "is_local_process_zero": true, + "is_world_process_zero": true, + "log_history": [ + { + "epoch": 1.4316546762589928, + "grad_norm": 0.3565683364868164, + "learning_rate": 4.764285714285715e-05, + "loss": 1.9764512634277345, + "step": 100 + }, + { + "epoch": 2.8633093525179856, + "grad_norm": 0.3443331718444824, + "learning_rate": 4.5261904761904766e-05, + "loss": 1.4031263732910155, + "step": 200 + }, + { + "epoch": 4.287769784172662, + "grad_norm": 0.3818703293800354, + "learning_rate": 4.2880952380952384e-05, + "loss": 1.34267333984375, + "step": 300 + }, + { + "epoch": 5.719424460431655, + "grad_norm": 0.3902508616447449, + "learning_rate": 4.05e-05, + "loss": 1.3028179931640624, + "step": 400 + }, + { + "epoch": 7.143884892086331, + "grad_norm": 0.4177478849887848, + "learning_rate": 3.811904761904762e-05, + "loss": 1.2656465911865233, + "step": 500 + }, + { + "epoch": 8.575539568345324, + "grad_norm": 0.45499929785728455, + "learning_rate": 3.573809523809524e-05, + "loss": 1.2208662414550782, + "step": 600 + }, + { + "epoch": 10.0, + "grad_norm": 0.9257044196128845, + "learning_rate": 3.3357142857142856e-05, + "loss": 1.1849348449707031, + "step": 700 + }, + { + "epoch": 11.431654676258994, + "grad_norm": 0.48045459389686584, + "learning_rate": 3.0976190476190474e-05, + "loss": 1.137085189819336, + "step": 800 + }, + { + "epoch": 12.863309352517986, + "grad_norm": 0.5455576777458191, + "learning_rate": 2.85952380952381e-05, + "loss": 1.0880362701416015, + "step": 900 + }, + { + "epoch": 14.287769784172662, + "grad_norm": 0.5188819766044617, + "learning_rate": 2.6214285714285713e-05, + "loss": 1.0332509613037109, + "step": 1000 + }, + { + "epoch": 15.719424460431654, + "grad_norm": 0.5837603211402893, + "learning_rate": 2.3833333333333334e-05, + "loss": 0.9796466827392578, + "step": 1100 + }, + { + "epoch": 17.14388489208633, + "grad_norm": 0.545587956905365, + "learning_rate": 2.1452380952380956e-05, + "loss": 0.9271060943603515, + "step": 1200 + }, + { + "epoch": 18.575539568345324, + "grad_norm": 0.5845211744308472, + "learning_rate": 1.9071428571428574e-05, + "loss": 0.8723542022705079, + "step": 1300 + }, + { + "epoch": 20.0, + "grad_norm": 1.1792553663253784, + "learning_rate": 1.669047619047619e-05, + "loss": 0.8364682769775391, + "step": 1400 + }, + { + "epoch": 21.431654676258994, + "grad_norm": 0.6324464678764343, + "learning_rate": 1.4309523809523811e-05, + "loss": 0.7877474975585937, + "step": 1500 + }, + { + "epoch": 22.863309352517987, + "grad_norm": 0.5953481197357178, + "learning_rate": 1.192857142857143e-05, + "loss": 0.759727554321289, + "step": 1600 + }, + { + "epoch": 24.28776978417266, + "grad_norm": 0.6249268651008606, + "learning_rate": 9.547619047619049e-06, + "loss": 0.7275640869140625, + "step": 1700 + }, + { + "epoch": 25.719424460431654, + "grad_norm": 0.571466326713562, + "learning_rate": 7.166666666666667e-06, + "loss": 0.7071914672851562, + "step": 1800 + }, + { + "epoch": 27.14388489208633, + "grad_norm": 0.5459123253822327, + "learning_rate": 4.785714285714286e-06, + "loss": 0.6931022644042969, + "step": 1900 + } + ], + "logging_steps": 100, + "max_steps": 2100, + "num_input_tokens_seen": 0, + "num_train_epochs": 30, + "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": 368544777043968.0, + "train_batch_size": 8, + "trial_name": null, + "trial_params": null +} diff --git a/hyperparameter/m4/realtabformer/rtf-m4-20260505_022448/rtf_checkpoints/checkpoint-1900/training_args.bin b/hyperparameter/m4/realtabformer/rtf-m4-20260505_022448/rtf_checkpoints/checkpoint-1900/training_args.bin new file mode 100644 index 0000000000000000000000000000000000000000..3d8b32516bfaeaa087fca28752b0d5ac8a4f9a32 --- /dev/null +++ b/hyperparameter/m4/realtabformer/rtf-m4-20260505_022448/rtf_checkpoints/checkpoint-1900/training_args.bin @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:0d3dc95355536f0383a0f823e8f277b91339a18334832f20d708fd987d139c82 +size 5201 diff --git a/hyperparameter/m4/realtabformer/rtf-m4-20260505_022448/rtf_checkpoints/checkpoint-1960/config.json b/hyperparameter/m4/realtabformer/rtf-m4-20260505_022448/rtf_checkpoints/checkpoint-1960/config.json new file mode 100644 index 0000000000000000000000000000000000000000..69b1961f0cbafdc846150e71a2d82b4ce3beb94c --- /dev/null +++ b/hyperparameter/m4/realtabformer/rtf-m4-20260505_022448/rtf_checkpoints/checkpoint-1960/config.json @@ -0,0 +1,34 @@ +{ + "activation_function": "gelu_new", + "add_cross_attention": false, + "architectures": [ + "GPT2LMHeadModel" + ], + "attn_pdrop": 0.1, + "bos_token_id": 5, + "dtype": "float32", + "embd_pdrop": 0.1, + "eos_token_id": 6, + "initializer_range": 0.02, + "layer_norm_epsilon": 1e-05, + "model_type": "gpt2", + "n_embd": 768, + "n_head": 12, + "n_inner": null, + "n_layer": 6, + "n_positions": 1024, + "pad_token_id": null, + "reorder_and_upcast_attn": false, + "resid_pdrop": 0.1, + "scale_attn_by_inverse_layer_idx": false, + "scale_attn_weights": true, + "summary_activation": null, + "summary_first_dropout": 0.1, + "summary_proj_to_labels": true, + "summary_type": "cls_index", + "summary_use_proj": true, + "tie_word_embeddings": true, + "transformers_version": "5.5.3", + "use_cache": false, + "vocab_size": 167 +} diff --git a/hyperparameter/m4/realtabformer/rtf-m4-20260505_022448/rtf_checkpoints/checkpoint-1960/generation_config.json b/hyperparameter/m4/realtabformer/rtf-m4-20260505_022448/rtf_checkpoints/checkpoint-1960/generation_config.json new file mode 100644 index 0000000000000000000000000000000000000000..ffe89567780e75b5c22eade9be971483b9618f39 --- /dev/null +++ b/hyperparameter/m4/realtabformer/rtf-m4-20260505_022448/rtf_checkpoints/checkpoint-1960/generation_config.json @@ -0,0 +1,9 @@ +{ + "_from_model_config": true, + "bos_token_id": 5, + "eos_token_id": 6, + "output_attentions": false, + "output_hidden_states": false, + "transformers_version": "5.5.3", + "use_cache": true +} diff --git a/hyperparameter/m4/realtabformer/rtf-m4-20260505_022448/rtf_checkpoints/checkpoint-1960/model.safetensors b/hyperparameter/m4/realtabformer/rtf-m4-20260505_022448/rtf_checkpoints/checkpoint-1960/model.safetensors new file mode 100644 index 0000000000000000000000000000000000000000..41898654e4079e4750a4e9a05f255fa77a12d29d --- /dev/null +++ b/hyperparameter/m4/realtabformer/rtf-m4-20260505_022448/rtf_checkpoints/checkpoint-1960/model.safetensors @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:7d8234c92d58884cff1b8f15dafc7365473dd2681c7271b278c0fe0eda004bd3 +size 173781448 diff --git a/hyperparameter/m4/realtabformer/rtf-m4-20260505_022448/rtf_checkpoints/checkpoint-1960/optimizer.pt b/hyperparameter/m4/realtabformer/rtf-m4-20260505_022448/rtf_checkpoints/checkpoint-1960/optimizer.pt new file mode 100644 index 0000000000000000000000000000000000000000..fca994d14d0e888da7192113b25f4fecdccaf2b3 --- /dev/null +++ b/hyperparameter/m4/realtabformer/rtf-m4-20260505_022448/rtf_checkpoints/checkpoint-1960/optimizer.pt @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:270cd1efcc85a19db6fcdb4f201b1ebb105fbabf142b16798bb241d41cdc61f5 +size 347611979 diff --git a/hyperparameter/m4/realtabformer/rtf-m4-20260505_022448/rtf_checkpoints/checkpoint-1960/rng_state.pth b/hyperparameter/m4/realtabformer/rtf-m4-20260505_022448/rtf_checkpoints/checkpoint-1960/rng_state.pth new file mode 100644 index 0000000000000000000000000000000000000000..9c153d47f45b51f343787cd890477486cf49968d --- /dev/null +++ b/hyperparameter/m4/realtabformer/rtf-m4-20260505_022448/rtf_checkpoints/checkpoint-1960/rng_state.pth @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:08511083ca37877b9d98187ff0786013929107de00a9d51c2f84a9ed539bee2a +size 14645 diff --git a/hyperparameter/m4/realtabformer/rtf-m4-20260505_022448/rtf_checkpoints/checkpoint-1960/scaler.pt b/hyperparameter/m4/realtabformer/rtf-m4-20260505_022448/rtf_checkpoints/checkpoint-1960/scaler.pt new file mode 100644 index 0000000000000000000000000000000000000000..77c67c8b9ed765759d29ccf489f3c8f10b83de42 --- /dev/null +++ b/hyperparameter/m4/realtabformer/rtf-m4-20260505_022448/rtf_checkpoints/checkpoint-1960/scaler.pt @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:934d77a15aa056712eec8e6c06b03f9e22c4a6a4d8f314b59967bbc457c13ff1 +size 1383 diff --git a/hyperparameter/m4/realtabformer/rtf-m4-20260505_022448/rtf_checkpoints/checkpoint-1960/scheduler.pt b/hyperparameter/m4/realtabformer/rtf-m4-20260505_022448/rtf_checkpoints/checkpoint-1960/scheduler.pt new file mode 100644 index 0000000000000000000000000000000000000000..8c07ab3ba5276de6f63e485f27871c34c7414e47 --- /dev/null +++ b/hyperparameter/m4/realtabformer/rtf-m4-20260505_022448/rtf_checkpoints/checkpoint-1960/scheduler.pt @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:110570a1de482b1e4edff8e172a727d74fa84e1849305d298083d743af8711a7 +size 1465 diff --git a/hyperparameter/m4/realtabformer/rtf-m4-20260505_022448/rtf_checkpoints/checkpoint-1960/trainer_state.json b/hyperparameter/m4/realtabformer/rtf-m4-20260505_022448/rtf_checkpoints/checkpoint-1960/trainer_state.json new file mode 100644 index 0000000000000000000000000000000000000000..65cb111c6197804a9e8b1aa20f61dd8f1a029090 --- /dev/null +++ b/hyperparameter/m4/realtabformer/rtf-m4-20260505_022448/rtf_checkpoints/checkpoint-1960/trainer_state.json @@ -0,0 +1,167 @@ +{ + "best_global_step": null, + "best_metric": null, + "best_model_checkpoint": null, + "epoch": 28.0, + "eval_steps": 100, + "global_step": 1960, + "is_hyper_param_search": false, + "is_local_process_zero": true, + "is_world_process_zero": true, + "log_history": [ + { + "epoch": 1.4316546762589928, + "grad_norm": 0.3565683364868164, + "learning_rate": 4.764285714285715e-05, + "loss": 1.9764512634277345, + "step": 100 + }, + { + "epoch": 2.8633093525179856, + "grad_norm": 0.3443331718444824, + "learning_rate": 4.5261904761904766e-05, + "loss": 1.4031263732910155, + "step": 200 + }, + { + "epoch": 4.287769784172662, + "grad_norm": 0.3818703293800354, + "learning_rate": 4.2880952380952384e-05, + "loss": 1.34267333984375, + "step": 300 + }, + { + "epoch": 5.719424460431655, + "grad_norm": 0.3902508616447449, + "learning_rate": 4.05e-05, + "loss": 1.3028179931640624, + "step": 400 + }, + { + "epoch": 7.143884892086331, + "grad_norm": 0.4177478849887848, + "learning_rate": 3.811904761904762e-05, + "loss": 1.2656465911865233, + "step": 500 + }, + { + "epoch": 8.575539568345324, + "grad_norm": 0.45499929785728455, + "learning_rate": 3.573809523809524e-05, + "loss": 1.2208662414550782, + "step": 600 + }, + { + "epoch": 10.0, + "grad_norm": 0.9257044196128845, + "learning_rate": 3.3357142857142856e-05, + "loss": 1.1849348449707031, + "step": 700 + }, + { + "epoch": 11.431654676258994, + "grad_norm": 0.48045459389686584, + "learning_rate": 3.0976190476190474e-05, + "loss": 1.137085189819336, + "step": 800 + }, + { + "epoch": 12.863309352517986, + "grad_norm": 0.5455576777458191, + "learning_rate": 2.85952380952381e-05, + "loss": 1.0880362701416015, + "step": 900 + }, + { + "epoch": 14.287769784172662, + "grad_norm": 0.5188819766044617, + "learning_rate": 2.6214285714285713e-05, + "loss": 1.0332509613037109, + "step": 1000 + }, + { + "epoch": 15.719424460431654, + "grad_norm": 0.5837603211402893, + "learning_rate": 2.3833333333333334e-05, + "loss": 0.9796466827392578, + "step": 1100 + }, + { + "epoch": 17.14388489208633, + "grad_norm": 0.545587956905365, + "learning_rate": 2.1452380952380956e-05, + "loss": 0.9271060943603515, + "step": 1200 + }, + { + "epoch": 18.575539568345324, + "grad_norm": 0.5845211744308472, + "learning_rate": 1.9071428571428574e-05, + "loss": 0.8723542022705079, + "step": 1300 + }, + { + "epoch": 20.0, + "grad_norm": 1.1792553663253784, + "learning_rate": 1.669047619047619e-05, + "loss": 0.8364682769775391, + "step": 1400 + }, + { + "epoch": 21.431654676258994, + "grad_norm": 0.6324464678764343, + "learning_rate": 1.4309523809523811e-05, + "loss": 0.7877474975585937, + "step": 1500 + }, + { + "epoch": 22.863309352517987, + "grad_norm": 0.5953481197357178, + "learning_rate": 1.192857142857143e-05, + "loss": 0.759727554321289, + "step": 1600 + }, + { + "epoch": 24.28776978417266, + "grad_norm": 0.6249268651008606, + "learning_rate": 9.547619047619049e-06, + "loss": 0.7275640869140625, + "step": 1700 + }, + { + "epoch": 25.719424460431654, + "grad_norm": 0.571466326713562, + "learning_rate": 7.166666666666667e-06, + "loss": 0.7071914672851562, + "step": 1800 + }, + { + "epoch": 27.14388489208633, + "grad_norm": 0.5459123253822327, + "learning_rate": 4.785714285714286e-06, + "loss": 0.6931022644042969, + "step": 1900 + } + ], + "logging_steps": 100, + "max_steps": 2100, + "num_input_tokens_seen": 0, + "num_train_epochs": 30, + "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": 380162275540992.0, + "train_batch_size": 8, + "trial_name": null, + "trial_params": null +} diff --git a/hyperparameter/m4/realtabformer/rtf-m4-20260505_022448/rtf_checkpoints/checkpoint-1960/training_args.bin b/hyperparameter/m4/realtabformer/rtf-m4-20260505_022448/rtf_checkpoints/checkpoint-1960/training_args.bin new file mode 100644 index 0000000000000000000000000000000000000000..3d8b32516bfaeaa087fca28752b0d5ac8a4f9a32 --- /dev/null +++ b/hyperparameter/m4/realtabformer/rtf-m4-20260505_022448/rtf_checkpoints/checkpoint-1960/training_args.bin @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:0d3dc95355536f0383a0f823e8f277b91339a18334832f20d708fd987d139c82 +size 5201 diff --git a/hyperparameter/m4/realtabformer/rtf-m4-20260505_022448/rtf_checkpoints/checkpoint-2000/config.json b/hyperparameter/m4/realtabformer/rtf-m4-20260505_022448/rtf_checkpoints/checkpoint-2000/config.json new file mode 100644 index 0000000000000000000000000000000000000000..69b1961f0cbafdc846150e71a2d82b4ce3beb94c --- /dev/null +++ b/hyperparameter/m4/realtabformer/rtf-m4-20260505_022448/rtf_checkpoints/checkpoint-2000/config.json @@ -0,0 +1,34 @@ +{ + "activation_function": "gelu_new", + "add_cross_attention": false, + "architectures": [ + "GPT2LMHeadModel" + ], + "attn_pdrop": 0.1, + "bos_token_id": 5, + "dtype": "float32", + "embd_pdrop": 0.1, + "eos_token_id": 6, + "initializer_range": 0.02, + "layer_norm_epsilon": 1e-05, + "model_type": "gpt2", + "n_embd": 768, + "n_head": 12, + "n_inner": null, + "n_layer": 6, + "n_positions": 1024, + "pad_token_id": null, + "reorder_and_upcast_attn": false, + "resid_pdrop": 0.1, + "scale_attn_by_inverse_layer_idx": false, + "scale_attn_weights": true, + "summary_activation": null, + "summary_first_dropout": 0.1, + "summary_proj_to_labels": true, + "summary_type": "cls_index", + "summary_use_proj": true, + "tie_word_embeddings": true, + "transformers_version": "5.5.3", + "use_cache": false, + "vocab_size": 167 +} diff --git a/hyperparameter/m4/realtabformer/rtf-m4-20260505_022448/rtf_checkpoints/checkpoint-2000/generation_config.json b/hyperparameter/m4/realtabformer/rtf-m4-20260505_022448/rtf_checkpoints/checkpoint-2000/generation_config.json new file mode 100644 index 0000000000000000000000000000000000000000..ffe89567780e75b5c22eade9be971483b9618f39 --- /dev/null +++ b/hyperparameter/m4/realtabformer/rtf-m4-20260505_022448/rtf_checkpoints/checkpoint-2000/generation_config.json @@ -0,0 +1,9 @@ +{ + "_from_model_config": true, + "bos_token_id": 5, + "eos_token_id": 6, + "output_attentions": false, + "output_hidden_states": false, + "transformers_version": "5.5.3", + "use_cache": true +} diff --git a/hyperparameter/m4/realtabformer/rtf-m4-20260505_022448/rtf_checkpoints/checkpoint-2000/model.safetensors b/hyperparameter/m4/realtabformer/rtf-m4-20260505_022448/rtf_checkpoints/checkpoint-2000/model.safetensors new file mode 100644 index 0000000000000000000000000000000000000000..41d883f69667c44c40fc923efb626a80edf359bf --- /dev/null +++ b/hyperparameter/m4/realtabformer/rtf-m4-20260505_022448/rtf_checkpoints/checkpoint-2000/model.safetensors @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:e58ee63e8067de4d02a0d0d2859f86c25a76b72cec169b03ee2e5350cbb33e16 +size 173781448 diff --git a/hyperparameter/m4/realtabformer/rtf-m4-20260505_022448/rtf_checkpoints/checkpoint-2000/optimizer.pt b/hyperparameter/m4/realtabformer/rtf-m4-20260505_022448/rtf_checkpoints/checkpoint-2000/optimizer.pt new file mode 100644 index 0000000000000000000000000000000000000000..40ebe5989297ebb2a3a46d6b16fe10916fab78f6 --- /dev/null +++ b/hyperparameter/m4/realtabformer/rtf-m4-20260505_022448/rtf_checkpoints/checkpoint-2000/optimizer.pt @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:92fe790452e422e4b393a7cf6d6ce96d4cef315922741ce0e825d5493e34d4fd +size 347611979 diff --git a/hyperparameter/m4/realtabformer/rtf-m4-20260505_022448/rtf_checkpoints/checkpoint-2000/rng_state.pth b/hyperparameter/m4/realtabformer/rtf-m4-20260505_022448/rtf_checkpoints/checkpoint-2000/rng_state.pth new file mode 100644 index 0000000000000000000000000000000000000000..80f5274406ba57bca7f01f804f9a4edcec5d36fb --- /dev/null +++ b/hyperparameter/m4/realtabformer/rtf-m4-20260505_022448/rtf_checkpoints/checkpoint-2000/rng_state.pth @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:d3c0cfc22fdaf50c84959dbff07a005fab6104de9faf9312a93d8d98357e3396 +size 14645 diff --git a/hyperparameter/m4/realtabformer/rtf-m4-20260505_022448/rtf_checkpoints/checkpoint-2000/scaler.pt b/hyperparameter/m4/realtabformer/rtf-m4-20260505_022448/rtf_checkpoints/checkpoint-2000/scaler.pt new file mode 100644 index 0000000000000000000000000000000000000000..05c642874425671923b2af80a1aa6317e758b492 --- /dev/null +++ b/hyperparameter/m4/realtabformer/rtf-m4-20260505_022448/rtf_checkpoints/checkpoint-2000/scaler.pt @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:f4aa03f6e0cd07cf67ce1fbe3101d545f5771ef9148b9debf02b11cf6948da5c +size 1383 diff --git a/hyperparameter/m4/realtabformer/rtf-m4-20260505_022448/rtf_checkpoints/checkpoint-2000/scheduler.pt b/hyperparameter/m4/realtabformer/rtf-m4-20260505_022448/rtf_checkpoints/checkpoint-2000/scheduler.pt new file mode 100644 index 0000000000000000000000000000000000000000..b3038cbd044e8354152a42ef5b55684bc089edc3 --- /dev/null +++ b/hyperparameter/m4/realtabformer/rtf-m4-20260505_022448/rtf_checkpoints/checkpoint-2000/scheduler.pt @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:c43bcecad8c31262144c18fac57065986e8a65785364542d0a2afd8acabc1b32 +size 1465 diff --git a/hyperparameter/m4/realtabformer/rtf-m4-20260505_022448/rtf_checkpoints/checkpoint-2000/trainer_state.json b/hyperparameter/m4/realtabformer/rtf-m4-20260505_022448/rtf_checkpoints/checkpoint-2000/trainer_state.json new file mode 100644 index 0000000000000000000000000000000000000000..3ef2e32152b45e8b25e14aeb8a98ffc5bd107fac --- /dev/null +++ b/hyperparameter/m4/realtabformer/rtf-m4-20260505_022448/rtf_checkpoints/checkpoint-2000/trainer_state.json @@ -0,0 +1,174 @@ +{ + "best_global_step": null, + "best_metric": null, + "best_model_checkpoint": null, + "epoch": 28.575539568345324, + "eval_steps": 100, + "global_step": 2000, + "is_hyper_param_search": false, + "is_local_process_zero": true, + "is_world_process_zero": true, + "log_history": [ + { + "epoch": 1.4316546762589928, + "grad_norm": 0.3565683364868164, + "learning_rate": 4.764285714285715e-05, + "loss": 1.9764512634277345, + "step": 100 + }, + { + "epoch": 2.8633093525179856, + "grad_norm": 0.3443331718444824, + "learning_rate": 4.5261904761904766e-05, + "loss": 1.4031263732910155, + "step": 200 + }, + { + "epoch": 4.287769784172662, + "grad_norm": 0.3818703293800354, + "learning_rate": 4.2880952380952384e-05, + "loss": 1.34267333984375, + "step": 300 + }, + { + "epoch": 5.719424460431655, + "grad_norm": 0.3902508616447449, + "learning_rate": 4.05e-05, + "loss": 1.3028179931640624, + "step": 400 + }, + { + "epoch": 7.143884892086331, + "grad_norm": 0.4177478849887848, + "learning_rate": 3.811904761904762e-05, + "loss": 1.2656465911865233, + "step": 500 + }, + { + "epoch": 8.575539568345324, + "grad_norm": 0.45499929785728455, + "learning_rate": 3.573809523809524e-05, + "loss": 1.2208662414550782, + "step": 600 + }, + { + "epoch": 10.0, + "grad_norm": 0.9257044196128845, + "learning_rate": 3.3357142857142856e-05, + "loss": 1.1849348449707031, + "step": 700 + }, + { + "epoch": 11.431654676258994, + "grad_norm": 0.48045459389686584, + "learning_rate": 3.0976190476190474e-05, + "loss": 1.137085189819336, + "step": 800 + }, + { + "epoch": 12.863309352517986, + "grad_norm": 0.5455576777458191, + "learning_rate": 2.85952380952381e-05, + "loss": 1.0880362701416015, + "step": 900 + }, + { + "epoch": 14.287769784172662, + "grad_norm": 0.5188819766044617, + "learning_rate": 2.6214285714285713e-05, + "loss": 1.0332509613037109, + "step": 1000 + }, + { + "epoch": 15.719424460431654, + "grad_norm": 0.5837603211402893, + "learning_rate": 2.3833333333333334e-05, + "loss": 0.9796466827392578, + "step": 1100 + }, + { + "epoch": 17.14388489208633, + "grad_norm": 0.545587956905365, + "learning_rate": 2.1452380952380956e-05, + "loss": 0.9271060943603515, + "step": 1200 + }, + { + "epoch": 18.575539568345324, + "grad_norm": 0.5845211744308472, + "learning_rate": 1.9071428571428574e-05, + "loss": 0.8723542022705079, + "step": 1300 + }, + { + "epoch": 20.0, + "grad_norm": 1.1792553663253784, + "learning_rate": 1.669047619047619e-05, + "loss": 0.8364682769775391, + "step": 1400 + }, + { + "epoch": 21.431654676258994, + "grad_norm": 0.6324464678764343, + "learning_rate": 1.4309523809523811e-05, + "loss": 0.7877474975585937, + "step": 1500 + }, + { + "epoch": 22.863309352517987, + "grad_norm": 0.5953481197357178, + "learning_rate": 1.192857142857143e-05, + "loss": 0.759727554321289, + "step": 1600 + }, + { + "epoch": 24.28776978417266, + "grad_norm": 0.6249268651008606, + "learning_rate": 9.547619047619049e-06, + "loss": 0.7275640869140625, + "step": 1700 + }, + { + "epoch": 25.719424460431654, + "grad_norm": 0.571466326713562, + "learning_rate": 7.166666666666667e-06, + "loss": 0.7071914672851562, + "step": 1800 + }, + { + "epoch": 27.14388489208633, + "grad_norm": 0.5459123253822327, + "learning_rate": 4.785714285714286e-06, + "loss": 0.6931022644042969, + "step": 1900 + }, + { + "epoch": 28.575539568345324, + "grad_norm": 0.546005129814148, + "learning_rate": 2.404761904761905e-06, + "loss": 0.6774418640136719, + "step": 2000 + } + ], + "logging_steps": 100, + "max_steps": 2100, + "num_input_tokens_seen": 0, + "num_train_epochs": 30, + "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": 388001178058752.0, + "train_batch_size": 8, + "trial_name": null, + "trial_params": null +} diff --git a/hyperparameter/m4/realtabformer/rtf-m4-20260505_022448/rtf_checkpoints/checkpoint-2000/training_args.bin b/hyperparameter/m4/realtabformer/rtf-m4-20260505_022448/rtf_checkpoints/checkpoint-2000/training_args.bin new file mode 100644 index 0000000000000000000000000000000000000000..3d8b32516bfaeaa087fca28752b0d5ac8a4f9a32 --- /dev/null +++ b/hyperparameter/m4/realtabformer/rtf-m4-20260505_022448/rtf_checkpoints/checkpoint-2000/training_args.bin @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:0d3dc95355536f0383a0f823e8f277b91339a18334832f20d708fd987d139c82 +size 5201 diff --git a/hyperparameter/m4/realtabformer/rtf-m4-20260505_022448/rtf_checkpoints/checkpoint-2030/config.json b/hyperparameter/m4/realtabformer/rtf-m4-20260505_022448/rtf_checkpoints/checkpoint-2030/config.json new file mode 100644 index 0000000000000000000000000000000000000000..69b1961f0cbafdc846150e71a2d82b4ce3beb94c --- /dev/null +++ b/hyperparameter/m4/realtabformer/rtf-m4-20260505_022448/rtf_checkpoints/checkpoint-2030/config.json @@ -0,0 +1,34 @@ +{ + "activation_function": "gelu_new", + "add_cross_attention": false, + "architectures": [ + "GPT2LMHeadModel" + ], + "attn_pdrop": 0.1, + "bos_token_id": 5, + "dtype": "float32", + "embd_pdrop": 0.1, + "eos_token_id": 6, + "initializer_range": 0.02, + "layer_norm_epsilon": 1e-05, + "model_type": "gpt2", + "n_embd": 768, + "n_head": 12, + "n_inner": null, + "n_layer": 6, + "n_positions": 1024, + "pad_token_id": null, + "reorder_and_upcast_attn": false, + "resid_pdrop": 0.1, + "scale_attn_by_inverse_layer_idx": false, + "scale_attn_weights": true, + "summary_activation": null, + "summary_first_dropout": 0.1, + "summary_proj_to_labels": true, + "summary_type": "cls_index", + "summary_use_proj": true, + "tie_word_embeddings": true, + "transformers_version": "5.5.3", + "use_cache": false, + "vocab_size": 167 +} diff --git a/hyperparameter/m4/realtabformer/rtf-m4-20260505_022448/rtf_checkpoints/checkpoint-2030/generation_config.json b/hyperparameter/m4/realtabformer/rtf-m4-20260505_022448/rtf_checkpoints/checkpoint-2030/generation_config.json new file mode 100644 index 0000000000000000000000000000000000000000..ffe89567780e75b5c22eade9be971483b9618f39 --- /dev/null +++ b/hyperparameter/m4/realtabformer/rtf-m4-20260505_022448/rtf_checkpoints/checkpoint-2030/generation_config.json @@ -0,0 +1,9 @@ +{ + "_from_model_config": true, + "bos_token_id": 5, + "eos_token_id": 6, + "output_attentions": false, + "output_hidden_states": false, + "transformers_version": "5.5.3", + "use_cache": true +} diff --git a/hyperparameter/m4/realtabformer/rtf-m4-20260505_022448/rtf_checkpoints/checkpoint-2030/model.safetensors b/hyperparameter/m4/realtabformer/rtf-m4-20260505_022448/rtf_checkpoints/checkpoint-2030/model.safetensors new file mode 100644 index 0000000000000000000000000000000000000000..c1c035c690d54868941d75aaca789e0970465ce6 --- /dev/null +++ b/hyperparameter/m4/realtabformer/rtf-m4-20260505_022448/rtf_checkpoints/checkpoint-2030/model.safetensors @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:75f4f4fc2e6988940d745c4126d45256fd552f4e99907f466a96c9eb19c842e7 +size 173781448 diff --git a/hyperparameter/m4/realtabformer/rtf-m4-20260505_022448/rtf_checkpoints/checkpoint-2030/optimizer.pt b/hyperparameter/m4/realtabformer/rtf-m4-20260505_022448/rtf_checkpoints/checkpoint-2030/optimizer.pt new file mode 100644 index 0000000000000000000000000000000000000000..02ed991291166d65b7e6fb057ae00d081b4d267a --- /dev/null +++ b/hyperparameter/m4/realtabformer/rtf-m4-20260505_022448/rtf_checkpoints/checkpoint-2030/optimizer.pt @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:61957df16b8e5002a5f2512f39a9fb30b0f0841d1561349fee487cfa89634dbf +size 347611979 diff --git a/hyperparameter/m4/realtabformer/rtf-m4-20260505_022448/rtf_checkpoints/checkpoint-2030/rng_state.pth b/hyperparameter/m4/realtabformer/rtf-m4-20260505_022448/rtf_checkpoints/checkpoint-2030/rng_state.pth new file mode 100644 index 0000000000000000000000000000000000000000..a85a435df8bbd6b37805513d6dbb4c3ef5a55254 --- /dev/null +++ b/hyperparameter/m4/realtabformer/rtf-m4-20260505_022448/rtf_checkpoints/checkpoint-2030/rng_state.pth @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:5e7b2f38c54f1ccef4855cfc88a85fc623e69ed3daa0cd4ef9448c8635c420ca +size 14645 diff --git a/hyperparameter/m4/realtabformer/rtf-m4-20260505_022448/rtf_checkpoints/checkpoint-2030/scaler.pt b/hyperparameter/m4/realtabformer/rtf-m4-20260505_022448/rtf_checkpoints/checkpoint-2030/scaler.pt new file mode 100644 index 0000000000000000000000000000000000000000..9631b94103f7b3957d370c956b4ee2447811c622 --- /dev/null +++ b/hyperparameter/m4/realtabformer/rtf-m4-20260505_022448/rtf_checkpoints/checkpoint-2030/scaler.pt @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:2827dfd5ed4fb059f85622d433ac3be2dd8367200c576ad922e62884733a4475 +size 1383 diff --git a/hyperparameter/m4/realtabformer/rtf-m4-20260505_022448/rtf_checkpoints/checkpoint-2030/scheduler.pt b/hyperparameter/m4/realtabformer/rtf-m4-20260505_022448/rtf_checkpoints/checkpoint-2030/scheduler.pt new file mode 100644 index 0000000000000000000000000000000000000000..25eba3609820b91bf7e2a4ea91fbd7aff85632d7 --- /dev/null +++ b/hyperparameter/m4/realtabformer/rtf-m4-20260505_022448/rtf_checkpoints/checkpoint-2030/scheduler.pt @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:ec1a501e31ddbcde246d81d10aaf2e113c1a1df35efb2c65f3efa84fbd8c6217 +size 1465 diff --git a/hyperparameter/m4/realtabformer/rtf-m4-20260505_022448/rtf_checkpoints/checkpoint-2030/trainer_state.json b/hyperparameter/m4/realtabformer/rtf-m4-20260505_022448/rtf_checkpoints/checkpoint-2030/trainer_state.json new file mode 100644 index 0000000000000000000000000000000000000000..79540ab7b8c338de64623890bd3cb709e40e9d92 --- /dev/null +++ b/hyperparameter/m4/realtabformer/rtf-m4-20260505_022448/rtf_checkpoints/checkpoint-2030/trainer_state.json @@ -0,0 +1,174 @@ +{ + "best_global_step": null, + "best_metric": null, + "best_model_checkpoint": null, + "epoch": 29.0, + "eval_steps": 100, + "global_step": 2030, + "is_hyper_param_search": false, + "is_local_process_zero": true, + "is_world_process_zero": true, + "log_history": [ + { + "epoch": 1.4316546762589928, + "grad_norm": 0.3565683364868164, + "learning_rate": 4.764285714285715e-05, + "loss": 1.9764512634277345, + "step": 100 + }, + { + "epoch": 2.8633093525179856, + "grad_norm": 0.3443331718444824, + "learning_rate": 4.5261904761904766e-05, + "loss": 1.4031263732910155, + "step": 200 + }, + { + "epoch": 4.287769784172662, + "grad_norm": 0.3818703293800354, + "learning_rate": 4.2880952380952384e-05, + "loss": 1.34267333984375, + "step": 300 + }, + { + "epoch": 5.719424460431655, + "grad_norm": 0.3902508616447449, + "learning_rate": 4.05e-05, + "loss": 1.3028179931640624, + "step": 400 + }, + { + "epoch": 7.143884892086331, + "grad_norm": 0.4177478849887848, + "learning_rate": 3.811904761904762e-05, + "loss": 1.2656465911865233, + "step": 500 + }, + { + "epoch": 8.575539568345324, + "grad_norm": 0.45499929785728455, + "learning_rate": 3.573809523809524e-05, + "loss": 1.2208662414550782, + "step": 600 + }, + { + "epoch": 10.0, + "grad_norm": 0.9257044196128845, + "learning_rate": 3.3357142857142856e-05, + "loss": 1.1849348449707031, + "step": 700 + }, + { + "epoch": 11.431654676258994, + "grad_norm": 0.48045459389686584, + "learning_rate": 3.0976190476190474e-05, + "loss": 1.137085189819336, + "step": 800 + }, + { + "epoch": 12.863309352517986, + "grad_norm": 0.5455576777458191, + "learning_rate": 2.85952380952381e-05, + "loss": 1.0880362701416015, + "step": 900 + }, + { + "epoch": 14.287769784172662, + "grad_norm": 0.5188819766044617, + "learning_rate": 2.6214285714285713e-05, + "loss": 1.0332509613037109, + "step": 1000 + }, + { + "epoch": 15.719424460431654, + "grad_norm": 0.5837603211402893, + "learning_rate": 2.3833333333333334e-05, + "loss": 0.9796466827392578, + "step": 1100 + }, + { + "epoch": 17.14388489208633, + "grad_norm": 0.545587956905365, + "learning_rate": 2.1452380952380956e-05, + "loss": 0.9271060943603515, + "step": 1200 + }, + { + "epoch": 18.575539568345324, + "grad_norm": 0.5845211744308472, + "learning_rate": 1.9071428571428574e-05, + "loss": 0.8723542022705079, + "step": 1300 + }, + { + "epoch": 20.0, + "grad_norm": 1.1792553663253784, + "learning_rate": 1.669047619047619e-05, + "loss": 0.8364682769775391, + "step": 1400 + }, + { + "epoch": 21.431654676258994, + "grad_norm": 0.6324464678764343, + "learning_rate": 1.4309523809523811e-05, + "loss": 0.7877474975585937, + "step": 1500 + }, + { + "epoch": 22.863309352517987, + "grad_norm": 0.5953481197357178, + "learning_rate": 1.192857142857143e-05, + "loss": 0.759727554321289, + "step": 1600 + }, + { + "epoch": 24.28776978417266, + "grad_norm": 0.6249268651008606, + "learning_rate": 9.547619047619049e-06, + "loss": 0.7275640869140625, + "step": 1700 + }, + { + "epoch": 25.719424460431654, + "grad_norm": 0.571466326713562, + "learning_rate": 7.166666666666667e-06, + "loss": 0.7071914672851562, + "step": 1800 + }, + { + "epoch": 27.14388489208633, + "grad_norm": 0.5459123253822327, + "learning_rate": 4.785714285714286e-06, + "loss": 0.6931022644042969, + "step": 1900 + }, + { + "epoch": 28.575539568345324, + "grad_norm": 0.546005129814148, + "learning_rate": 2.404761904761905e-06, + "loss": 0.6774418640136719, + "step": 2000 + } + ], + "logging_steps": 100, + "max_steps": 2100, + "num_input_tokens_seen": 0, + "num_train_epochs": 30, + "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": 393739499667456.0, + "train_batch_size": 8, + "trial_name": null, + "trial_params": null +} diff --git a/hyperparameter/m4/realtabformer/rtf-m4-20260505_022448/rtf_checkpoints/checkpoint-2030/training_args.bin b/hyperparameter/m4/realtabformer/rtf-m4-20260505_022448/rtf_checkpoints/checkpoint-2030/training_args.bin new file mode 100644 index 0000000000000000000000000000000000000000..3d8b32516bfaeaa087fca28752b0d5ac8a4f9a32 --- /dev/null +++ b/hyperparameter/m4/realtabformer/rtf-m4-20260505_022448/rtf_checkpoints/checkpoint-2030/training_args.bin @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:0d3dc95355536f0383a0f823e8f277b91339a18334832f20d708fd987d139c82 +size 5201 diff --git a/hyperparameter/m4/realtabformer/rtf-m4-20260505_022448/rtf_checkpoints/checkpoint-2100/config.json b/hyperparameter/m4/realtabformer/rtf-m4-20260505_022448/rtf_checkpoints/checkpoint-2100/config.json new file mode 100644 index 0000000000000000000000000000000000000000..69b1961f0cbafdc846150e71a2d82b4ce3beb94c --- /dev/null +++ b/hyperparameter/m4/realtabformer/rtf-m4-20260505_022448/rtf_checkpoints/checkpoint-2100/config.json @@ -0,0 +1,34 @@ +{ + "activation_function": "gelu_new", + "add_cross_attention": false, + "architectures": [ + "GPT2LMHeadModel" + ], + "attn_pdrop": 0.1, + "bos_token_id": 5, + "dtype": "float32", + "embd_pdrop": 0.1, + "eos_token_id": 6, + "initializer_range": 0.02, + "layer_norm_epsilon": 1e-05, + "model_type": "gpt2", + "n_embd": 768, + "n_head": 12, + "n_inner": null, + "n_layer": 6, + "n_positions": 1024, + "pad_token_id": null, + "reorder_and_upcast_attn": false, + "resid_pdrop": 0.1, + "scale_attn_by_inverse_layer_idx": false, + "scale_attn_weights": true, + "summary_activation": null, + "summary_first_dropout": 0.1, + "summary_proj_to_labels": true, + "summary_type": "cls_index", + "summary_use_proj": true, + "tie_word_embeddings": true, + "transformers_version": "5.5.3", + "use_cache": false, + "vocab_size": 167 +} diff --git a/hyperparameter/m4/realtabformer/rtf-m4-20260505_022448/rtf_checkpoints/checkpoint-2100/generation_config.json b/hyperparameter/m4/realtabformer/rtf-m4-20260505_022448/rtf_checkpoints/checkpoint-2100/generation_config.json new file mode 100644 index 0000000000000000000000000000000000000000..ffe89567780e75b5c22eade9be971483b9618f39 --- /dev/null +++ b/hyperparameter/m4/realtabformer/rtf-m4-20260505_022448/rtf_checkpoints/checkpoint-2100/generation_config.json @@ -0,0 +1,9 @@ +{ + "_from_model_config": true, + "bos_token_id": 5, + "eos_token_id": 6, + "output_attentions": false, + "output_hidden_states": false, + "transformers_version": "5.5.3", + "use_cache": true +} diff --git a/hyperparameter/m4/realtabformer/rtf-m4-20260505_022448/rtf_checkpoints/checkpoint-2100/model.safetensors b/hyperparameter/m4/realtabformer/rtf-m4-20260505_022448/rtf_checkpoints/checkpoint-2100/model.safetensors new file mode 100644 index 0000000000000000000000000000000000000000..1d17e56046d28ed444038558c342bcdb4c75d185 --- /dev/null +++ b/hyperparameter/m4/realtabformer/rtf-m4-20260505_022448/rtf_checkpoints/checkpoint-2100/model.safetensors @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:7fa832dcbfdb755f5b7d6c4bf08f347feb77bb3623fa2925ca1b6760fdc4c05d +size 173781448 diff --git a/hyperparameter/m4/realtabformer/rtf-m4-20260505_022448/rtf_checkpoints/checkpoint-2100/optimizer.pt b/hyperparameter/m4/realtabformer/rtf-m4-20260505_022448/rtf_checkpoints/checkpoint-2100/optimizer.pt new file mode 100644 index 0000000000000000000000000000000000000000..f4c55e68f0475c74399f0930fcca1fafa93a395e --- /dev/null +++ b/hyperparameter/m4/realtabformer/rtf-m4-20260505_022448/rtf_checkpoints/checkpoint-2100/optimizer.pt @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:d385448b32d487ef252d4a6abb881f7f1d79d4c2ac32abf30e3d60a98230e5cc +size 347611979 diff --git a/hyperparameter/m4/realtabformer/rtf-m4-20260505_022448/rtf_checkpoints/checkpoint-2100/rng_state.pth b/hyperparameter/m4/realtabformer/rtf-m4-20260505_022448/rtf_checkpoints/checkpoint-2100/rng_state.pth new file mode 100644 index 0000000000000000000000000000000000000000..6ed6fa60ea7445481ceb8c612ffb84a65253cb49 --- /dev/null +++ b/hyperparameter/m4/realtabformer/rtf-m4-20260505_022448/rtf_checkpoints/checkpoint-2100/rng_state.pth @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:90f94b1b72f5bc4f17de3d91ff98f914f8f8b35932c31b9e1f843b9efb8388a8 +size 14645 diff --git a/hyperparameter/m4/realtabformer/rtf-m4-20260505_022448/rtf_checkpoints/checkpoint-2100/scaler.pt b/hyperparameter/m4/realtabformer/rtf-m4-20260505_022448/rtf_checkpoints/checkpoint-2100/scaler.pt new file mode 100644 index 0000000000000000000000000000000000000000..87a5ec82ad218f74d34bd931273c58ddf90a067b --- /dev/null +++ b/hyperparameter/m4/realtabformer/rtf-m4-20260505_022448/rtf_checkpoints/checkpoint-2100/scaler.pt @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:bc99556bf27209385963813e3570510732839e6002d61d657266050e280a33eb +size 1383 diff --git a/hyperparameter/m4/realtabformer/rtf-m4-20260505_022448/rtf_checkpoints/checkpoint-2100/scheduler.pt b/hyperparameter/m4/realtabformer/rtf-m4-20260505_022448/rtf_checkpoints/checkpoint-2100/scheduler.pt new file mode 100644 index 0000000000000000000000000000000000000000..cc32770999b7776c3f73d72652108b8338813941 --- /dev/null +++ b/hyperparameter/m4/realtabformer/rtf-m4-20260505_022448/rtf_checkpoints/checkpoint-2100/scheduler.pt @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:387357708739cc74f948ed9a90447f687cec7897dda04dc7bbdf5c5661771bc2 +size 1465 diff --git a/hyperparameter/m4/realtabformer/rtf-m4-20260505_022448/rtf_checkpoints/checkpoint-2100/trainer_state.json b/hyperparameter/m4/realtabformer/rtf-m4-20260505_022448/rtf_checkpoints/checkpoint-2100/trainer_state.json new file mode 100644 index 0000000000000000000000000000000000000000..72f810c6b9a157f486559df66bc2f12a385e02ae --- /dev/null +++ b/hyperparameter/m4/realtabformer/rtf-m4-20260505_022448/rtf_checkpoints/checkpoint-2100/trainer_state.json @@ -0,0 +1,181 @@ +{ + "best_global_step": null, + "best_metric": null, + "best_model_checkpoint": null, + "epoch": 30.0, + "eval_steps": 100, + "global_step": 2100, + "is_hyper_param_search": false, + "is_local_process_zero": true, + "is_world_process_zero": true, + "log_history": [ + { + "epoch": 1.4316546762589928, + "grad_norm": 0.3565683364868164, + "learning_rate": 4.764285714285715e-05, + "loss": 1.9764512634277345, + "step": 100 + }, + { + "epoch": 2.8633093525179856, + "grad_norm": 0.3443331718444824, + "learning_rate": 4.5261904761904766e-05, + "loss": 1.4031263732910155, + "step": 200 + }, + { + "epoch": 4.287769784172662, + "grad_norm": 0.3818703293800354, + "learning_rate": 4.2880952380952384e-05, + "loss": 1.34267333984375, + "step": 300 + }, + { + "epoch": 5.719424460431655, + "grad_norm": 0.3902508616447449, + "learning_rate": 4.05e-05, + "loss": 1.3028179931640624, + "step": 400 + }, + { + "epoch": 7.143884892086331, + "grad_norm": 0.4177478849887848, + "learning_rate": 3.811904761904762e-05, + "loss": 1.2656465911865233, + "step": 500 + }, + { + "epoch": 8.575539568345324, + "grad_norm": 0.45499929785728455, + "learning_rate": 3.573809523809524e-05, + "loss": 1.2208662414550782, + "step": 600 + }, + { + "epoch": 10.0, + "grad_norm": 0.9257044196128845, + "learning_rate": 3.3357142857142856e-05, + "loss": 1.1849348449707031, + "step": 700 + }, + { + "epoch": 11.431654676258994, + "grad_norm": 0.48045459389686584, + "learning_rate": 3.0976190476190474e-05, + "loss": 1.137085189819336, + "step": 800 + }, + { + "epoch": 12.863309352517986, + "grad_norm": 0.5455576777458191, + "learning_rate": 2.85952380952381e-05, + "loss": 1.0880362701416015, + "step": 900 + }, + { + "epoch": 14.287769784172662, + "grad_norm": 0.5188819766044617, + "learning_rate": 2.6214285714285713e-05, + "loss": 1.0332509613037109, + "step": 1000 + }, + { + "epoch": 15.719424460431654, + "grad_norm": 0.5837603211402893, + "learning_rate": 2.3833333333333334e-05, + "loss": 0.9796466827392578, + "step": 1100 + }, + { + "epoch": 17.14388489208633, + "grad_norm": 0.545587956905365, + "learning_rate": 2.1452380952380956e-05, + "loss": 0.9271060943603515, + "step": 1200 + }, + { + "epoch": 18.575539568345324, + "grad_norm": 0.5845211744308472, + "learning_rate": 1.9071428571428574e-05, + "loss": 0.8723542022705079, + "step": 1300 + }, + { + "epoch": 20.0, + "grad_norm": 1.1792553663253784, + "learning_rate": 1.669047619047619e-05, + "loss": 0.8364682769775391, + "step": 1400 + }, + { + "epoch": 21.431654676258994, + "grad_norm": 0.6324464678764343, + "learning_rate": 1.4309523809523811e-05, + "loss": 0.7877474975585937, + "step": 1500 + }, + { + "epoch": 22.863309352517987, + "grad_norm": 0.5953481197357178, + "learning_rate": 1.192857142857143e-05, + "loss": 0.759727554321289, + "step": 1600 + }, + { + "epoch": 24.28776978417266, + "grad_norm": 0.6249268651008606, + "learning_rate": 9.547619047619049e-06, + "loss": 0.7275640869140625, + "step": 1700 + }, + { + "epoch": 25.719424460431654, + "grad_norm": 0.571466326713562, + "learning_rate": 7.166666666666667e-06, + "loss": 0.7071914672851562, + "step": 1800 + }, + { + "epoch": 27.14388489208633, + "grad_norm": 0.5459123253822327, + "learning_rate": 4.785714285714286e-06, + "loss": 0.6931022644042969, + "step": 1900 + }, + { + "epoch": 28.575539568345324, + "grad_norm": 0.546005129814148, + "learning_rate": 2.404761904761905e-06, + "loss": 0.6774418640136719, + "step": 2000 + }, + { + "epoch": 30.0, + "grad_norm": 1.1137502193450928, + "learning_rate": 2.380952380952381e-08, + "loss": 0.6662735748291015, + "step": 2100 + } + ], + "logging_steps": 100, + "max_steps": 2100, + "num_input_tokens_seen": 0, + "num_train_epochs": 30, + "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": 407316723793920.0, + "train_batch_size": 8, + "trial_name": null, + "trial_params": null +} diff --git a/hyperparameter/m4/realtabformer/rtf-m4-20260505_022448/rtf_checkpoints/checkpoint-2100/training_args.bin b/hyperparameter/m4/realtabformer/rtf-m4-20260505_022448/rtf_checkpoints/checkpoint-2100/training_args.bin new file mode 100644 index 0000000000000000000000000000000000000000..3d8b32516bfaeaa087fca28752b0d5ac8a4f9a32 --- /dev/null +++ b/hyperparameter/m4/realtabformer/rtf-m4-20260505_022448/rtf_checkpoints/checkpoint-2100/training_args.bin @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:0d3dc95355536f0383a0f823e8f277b91339a18334832f20d708fd987d139c82 +size 5201 diff --git a/hyperparameter/m4/realtabformer/rtf-m4-20260505_022448/run_config.json b/hyperparameter/m4/realtabformer/rtf-m4-20260505_022448/run_config.json new file mode 100644 index 0000000000000000000000000000000000000000..740168085021d8bb02b8e1d423c3314bfa0e99a8 --- /dev/null +++ b/hyperparameter/m4/realtabformer/rtf-m4-20260505_022448/run_config.json @@ -0,0 +1,40 @@ +{ + "schema_version": 1, + "recorded_at": "2026-05-05T02:24:48", + "dataset_id": "m4", + "model": "realtabformer", + "work_dir": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/m4/realtabformer/rtf-m4-20260505_022448", + "dataset_source_requested": "new", + "dataset_source_resolved": "new", + "cli_args": { + "model": "realtabformer", + "dataset": "m4", + "dataset_source": "new", + "train": true, + "generate": true, + "num_rows": 0, + "epochs": 30, + "output_dir": null, + "model_dir": null, + "work_dir": null, + "resume": false, + "no_stats": false + }, + "resolved": { + "num_rows": 2217, + "model_path": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/m4/realtabformer/rtf-m4-20260505_022448/models_30epochs", + "output_csv": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/m4/realtabformer/rtf-m4-20260505_022448/rtf-m4-2217-20260505_022756.csv" + }, + "input_artifacts": { + "public_gate_report": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/m4/realtabformer/rtf-m4-20260505_022448/public_gate/public_gate_report.json", + "public_manifest": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/m4/realtabformer/rtf-m4-20260505_022448/public_gate/staged_input_manifest.json", + "model_manifest": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/m4/realtabformer/rtf-m4-20260505_022448/staged/realtabformer/model_input_manifest.json", + "train_csv": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/m4/realtabformer/rtf-m4-20260505_022448/staged/public/train.csv", + "features_json": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/m4/realtabformer/rtf-m4-20260505_022448/staged/public/staged_features.json", + "target_column": "charges", + "task_type": "regression" + }, + "env_overrides": { + "BENCHMARK_REALTABFORMER_GPUS": "device=3" + } +} \ No newline at end of file diff --git a/hyperparameter/m4/realtabformer/rtf-m4-20260505_022448/runtime_result.json b/hyperparameter/m4/realtabformer/rtf-m4-20260505_022448/runtime_result.json new file mode 100644 index 0000000000000000000000000000000000000000..c0d39bbb745cf8e24571dc178dbfe95c7a1d1f45 --- /dev/null +++ b/hyperparameter/m4/realtabformer/rtf-m4-20260505_022448/runtime_result.json @@ -0,0 +1,27 @@ +{ + "dataset_id": "m4", + "model": "realtabformer", + "run_id": "rtf-m4-20260505_022448", + "public_gate_status": "pass", + "adapter_ready_status": "pass", + "train_status": "success", + "generate_status": "success", + "reason_code": null, + "reason_detail": null, + "artifacts": { + "synthetic_csv": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/m4/realtabformer/rtf-m4-20260505_022448/rtf-m4-2217-20260505_022756.csv", + "model_path": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/m4/realtabformer/rtf-m4-20260505_022448/models_30epochs" + }, + "timings": { + "train": { + "started_at": "2026-05-05T02:24:48", + "ended_at": "2026-05-05T02:27:56", + "duration_sec": 187.9 + }, + "generate": { + "started_at": "2026-05-05T02:27:56", + "ended_at": "2026-05-05T02:28:20", + "duration_sec": 24.233 + } + } +} \ No newline at end of file diff --git a/hyperparameter/m4/realtabformer/rtf-m4-20260505_022448/staged/public/staged_features.json b/hyperparameter/m4/realtabformer/rtf-m4-20260505_022448/staged/public/staged_features.json new file mode 100644 index 0000000000000000000000000000000000000000..d6acd098c35111f423f3ffff2cfd1754bc5dfebc --- /dev/null +++ b/hyperparameter/m4/realtabformer/rtf-m4-20260505_022448/staged/public/staged_features.json @@ -0,0 +1,37 @@ +[ + { + "feature_name": "age", + "data_type": "continuous", + "is_target": false + }, + { + "feature_name": "sex", + "data_type": "categorical", + "is_target": false + }, + { + "feature_name": "bmi", + "data_type": "continuous", + "is_target": false + }, + { + "feature_name": "children", + "data_type": "continuous", + "is_target": false + }, + { + "feature_name": "smoker", + "data_type": "binary", + "is_target": false + }, + { + "feature_name": "region", + "data_type": "categorical", + "is_target": false + }, + { + "feature_name": "charges", + "data_type": "continuous", + "is_target": true + } +] \ No newline at end of file diff --git a/hyperparameter/m4/realtabformer/rtf-m4-20260505_022448/staged/public/test.csv b/hyperparameter/m4/realtabformer/rtf-m4-20260505_022448/staged/public/test.csv new file mode 100644 index 0000000000000000000000000000000000000000..c88a2e7cfcd715bb421cb56eb078033da45c4dc8 --- /dev/null +++ b/hyperparameter/m4/realtabformer/rtf-m4-20260505_022448/staged/public/test.csv @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:4c541b677fb2d45c5bc79338eeee9fd8c91484b195a0c2c546c2fbabf113b7ea +size 11298 diff --git a/hyperparameter/m4/realtabformer/rtf-m4-20260505_022448/staged/public/train.csv b/hyperparameter/m4/realtabformer/rtf-m4-20260505_022448/staged/public/train.csv new file mode 100644 index 0000000000000000000000000000000000000000..5a05019d786529e0617291766c4fbe016ca01bf5 --- /dev/null +++ b/hyperparameter/m4/realtabformer/rtf-m4-20260505_022448/staged/public/train.csv @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:614ebfac5f41d6f661aff675fa18c0f933a8d9bcc77ea71b7b2360c2f0155837 +size 90069 diff --git a/hyperparameter/m4/realtabformer/rtf-m4-20260505_022448/staged/public/val.csv b/hyperparameter/m4/realtabformer/rtf-m4-20260505_022448/staged/public/val.csv new file mode 100644 index 0000000000000000000000000000000000000000..d78fe5ad1537c437ba9ac2629f2aa60a6c17e708 --- /dev/null +++ b/hyperparameter/m4/realtabformer/rtf-m4-20260505_022448/staged/public/val.csv @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:e55f5edbe7942ff01630de91a9c70dfbc6445eba76c7b970350364546b67c2d7 +size 11218 diff --git a/hyperparameter/m4/realtabformer/rtf-m4-20260505_022448/staged/realtabformer/adapter_report.json b/hyperparameter/m4/realtabformer/rtf-m4-20260505_022448/staged/realtabformer/adapter_report.json new file mode 100644 index 0000000000000000000000000000000000000000..9dc9d9bd5a2bcd90ea041bace536c99c0f657ffa --- /dev/null +++ b/hyperparameter/m4/realtabformer/rtf-m4-20260505_022448/staged/realtabformer/adapter_report.json @@ -0,0 +1,7 @@ +{ + "adapter_ready_status": "pass", + "adapter_fail_reason_code": null, + "adapter_fail_detail": null, + "adapter_transforms_applied": [], + "model_input_manifest": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/m4/realtabformer/rtf-m4-20260505_022448/staged/realtabformer/model_input_manifest.json" +} \ No newline at end of file diff --git a/hyperparameter/m4/realtabformer/rtf-m4-20260505_022448/staged/realtabformer/adapter_transforms_applied.json b/hyperparameter/m4/realtabformer/rtf-m4-20260505_022448/staged/realtabformer/adapter_transforms_applied.json new file mode 100644 index 0000000000000000000000000000000000000000..0637a088a01e8ddab3bf3fa98dbe804cbde1a0dc --- /dev/null +++ b/hyperparameter/m4/realtabformer/rtf-m4-20260505_022448/staged/realtabformer/adapter_transforms_applied.json @@ -0,0 +1 @@ +[] \ No newline at end of file diff --git a/hyperparameter/m4/realtabformer/rtf-m4-20260505_022448/staged/realtabformer/model_input_manifest.json b/hyperparameter/m4/realtabformer/rtf-m4-20260505_022448/staged/realtabformer/model_input_manifest.json new file mode 100644 index 0000000000000000000000000000000000000000..91b4b76004bd74fce38af1db819887f01ded5493 --- /dev/null +++ b/hyperparameter/m4/realtabformer/rtf-m4-20260505_022448/staged/realtabformer/model_input_manifest.json @@ -0,0 +1,154 @@ +{ + "dataset_id": "m4", + "model": "realtabformer", + "target_column": "charges", + "task_type": "regression", + "column_schema": [ + { + "name": "age", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 47, + "unique_ratio": 0.0212, + "example_values": [ + "46", + "38", + "19", + "27", + "26" + ] + } + }, + { + "name": "sex", + "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.000902, + "example_values": [ + "female", + "male" + ] + } + }, + { + "name": "bmi", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 538, + "unique_ratio": 0.24267, + "example_values": [ + "23.655", + "19.3", + "30.59", + "32.67", + "29.45" + ] + } + }, + { + "name": "children", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 6, + "unique_ratio": 0.002706, + "example_values": [ + "1", + "0", + "3", + "2", + "5" + ] + } + }, + { + "name": "smoker", + "role": "feature", + "semantic_type": "boolean", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 2, + "unique_ratio": 0.000902, + "example_values": [ + "yes", + "no" + ] + } + }, + { + "name": "region", + "role": "feature", + "semantic_type": "categorical", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 4, + "unique_ratio": 0.001804, + "example_values": [ + "northwest", + "southwest", + "southeast", + "northeast" + ] + } + }, + { + "name": "charges", + "role": "target", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 1281, + "unique_ratio": 0.577808, + "example_values": [ + "21677.28345", + "15820.699", + "1639.5631", + "2497.0383", + "2897.3235" + ] + } + } + ], + "public_manifest": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/m4/realtabformer/rtf-m4-20260505_022448/public_gate/staged_input_manifest.json", + "train_csv": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/m4/realtabformer/rtf-m4-20260505_022448/staged/public/train.csv", + "val_csv": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/m4/realtabformer/rtf-m4-20260505_022448/staged/public/val.csv", + "test_csv": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/m4/realtabformer/rtf-m4-20260505_022448/staged/public/test.csv", + "features_json": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/m4/realtabformer/rtf-m4-20260505_022448/staged/public/staged_features.json", + "public_gate_report": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/m4/realtabformer/rtf-m4-20260505_022448/public_gate/public_gate_report.json" +} \ No newline at end of file diff --git a/hyperparameter/m4/realtabformer/rtf-m4-20260505_022448/train_20260505_022448.log b/hyperparameter/m4/realtabformer/rtf-m4-20260505_022448/train_20260505_022448.log new file mode 100644 index 0000000000000000000000000000000000000000..da950d4d6d1c0bef367b81ffae81ae39df3f6705 --- /dev/null +++ b/hyperparameter/m4/realtabformer/rtf-m4-20260505_022448/train_20260505_022448.log @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:03b39ba71c144f5dd8ca357e7face356d2933685cc937656fdad3d77bdbdf43b +size 83454 diff --git a/hyperparameter/m4/tabbyflow/tabbyflow-m4-20260505_002825/_tabbyflow_gen.py b/hyperparameter/m4/tabbyflow/tabbyflow-m4-20260505_002825/_tabbyflow_gen.py new file mode 100644 index 0000000000000000000000000000000000000000..ba4fa3f8f32d4373e69ee42b105477ed78a7b2d4 --- /dev/null +++ b/hyperparameter/m4/tabbyflow/tabbyflow-m4-20260505_002825/_tabbyflow_gen.py @@ -0,0 +1,34 @@ + +import os, shutil, subprocess, sys +root = r"/workspace/ef-vfm" +name = r"pipeline_m4" +src = r"/work/output-Benchmark-trainonly-v1/m4/tabbyflow/tabbyflow-m4-20260505_002825/tabular_bundle/pipeline_m4" +dst_data = os.path.join(root, "data", name) +shutil.rmtree(dst_data, ignore_errors=True) +shutil.copytree(src, dst_data) +dst_syn = os.path.join(root, "synthetic", name) +os.makedirs(dst_syn, exist_ok=True) +for fn in ("real.csv", "test.csv", "val.csv"): + shutil.copy(os.path.join(src, fn), os.path.join(dst_syn, fn)) +os.chdir(root) +os.environ["PYTHONPATH"] = root + os.pathsep + os.environ.get("PYTHONPATH", "") +os.environ.setdefault("EFVFM_SAMPLE_BATCH_SIZE", "128") +subprocess.check_call([ + sys.executable, "main.py", + "--dataname", name, "--mode", "test", "--gpu", "0", + "--no_wandb", "--exp_name", r"adapter_efvfm", + "--ckpt_path", r"/workspace/ef-vfm/ef_vfm/ckpt/pipeline_m4/adapter_efvfm/model_100.pt", + "--num_samples_to_generate", str(int(2217)), +]) +base = os.path.join(root, "ef_vfm", "result", name, r"adapter_efvfm") +best = None +best_t = -1.0 +for r, _, files in os.walk(base): + if "samples.csv" in files: + p = os.path.join(r, "samples.csv") + t = os.path.getmtime(p) + if t > best_t: + best_t, best = t, p +if not best: + raise SystemExit("tabbyflow: no samples.csv in " + base) +shutil.copy(best, r"/work/output-Benchmark-trainonly-v1/m4/tabbyflow/tabbyflow-m4-20260505_002825/tabbyflow-m4-2217-20260505_003023.csv") diff --git a/hyperparameter/m4/tabbyflow/tabbyflow-m4-20260505_002825/_tabbyflow_train.py b/hyperparameter/m4/tabbyflow/tabbyflow-m4-20260505_002825/_tabbyflow_train.py new file mode 100644 index 0000000000000000000000000000000000000000..8c74a2194b73d6dfb20f494bb7f7de1d2e616ff6 --- /dev/null +++ b/hyperparameter/m4/tabbyflow/tabbyflow-m4-20260505_002825/_tabbyflow_train.py @@ -0,0 +1,24 @@ + +import os, shutil, subprocess, sys +root = r"/workspace/ef-vfm" +name = r"pipeline_m4" +src = r"/work/output-Benchmark-trainonly-v1/m4/tabbyflow/tabbyflow-m4-20260505_002825/tabular_bundle/pipeline_m4" +os.makedirs(os.path.join(root, "data", name), exist_ok=True) +dst_data = os.path.join(root, "data", name) +dst_syn = os.path.join(root, "synthetic", name) +shutil.rmtree(dst_data, ignore_errors=True) +shutil.copytree(src, dst_data) +os.makedirs(dst_syn, exist_ok=True) +for fn in ("real.csv", "test.csv", "val.csv"): + shutil.copy(os.path.join(src, fn), os.path.join(dst_syn, fn)) +os.chdir(root) +os.environ["PYTHONPATH"] = root + os.pathsep + os.environ.get("PYTHONPATH", "") +os.environ["EFVFM_SMOKE_STEPS"] = "100" +os.environ["EFVFM_ADAPTER_TRAIN"] = "1" +os.environ.setdefault("EFVFM_SAMPLE_BATCH_SIZE", "128") +os.environ.setdefault("EFVFM_EVAL_NUM_SAMPLES", "512") +subprocess.check_call([ + sys.executable, "main.py", + "--dataname", name, "--mode", "train", "--gpu", "0", + "--no_wandb", "--exp_name", r"adapter_efvfm", +]) diff --git a/hyperparameter/m4/tabbyflow/tabbyflow-m4-20260505_002825/gen_20260505_003023.log b/hyperparameter/m4/tabbyflow/tabbyflow-m4-20260505_002825/gen_20260505_003023.log new file mode 100644 index 0000000000000000000000000000000000000000..3aa4f47fb0215250d022dbcc157a4c1eeec39dcc --- /dev/null +++ b/hyperparameter/m4/tabbyflow/tabbyflow-m4-20260505_002825/gen_20260505_003023.log @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:3ff00cc474b015a53ab657d830e3523511cf89aa66dc64522d232be3ad411379 +size 3570 diff --git a/hyperparameter/m4/tabbyflow/tabbyflow-m4-20260505_002825/input_snapshot.json b/hyperparameter/m4/tabbyflow/tabbyflow-m4-20260505_002825/input_snapshot.json new file mode 100644 index 0000000000000000000000000000000000000000..a8e6cea3720f9c9515d0f6647d3de14221c42d45 --- /dev/null +++ b/hyperparameter/m4/tabbyflow/tabbyflow-m4-20260505_002825/input_snapshot.json @@ -0,0 +1,36 @@ +{ + "dataset_id": "m4", + "model": "tabbyflow", + "inputs": { + "train_csv": { + "path": "/data/jialinzhang/SynthesizePipeline-server/DatasetNew/m4/m4-train.csv", + "exists": true, + "size": 92191, + "sha256": "396b9d409ca21bf4a4cd329bdf5b7796aa0ae6356fa8d89b8eb669b5880b81f1" + }, + "val_csv": { + "path": "/data/jialinzhang/SynthesizePipeline-server/DatasetNew/m4/m4-val.csv", + "exists": true, + "size": 11482, + "sha256": "ee3c247d02f56e1687d03c381e13125d6a3a2a411ac7f202ba8520a4be9f1784" + }, + "test_csv": { + "path": "/data/jialinzhang/SynthesizePipeline-server/DatasetNew/m4/m4-test.csv", + "exists": true, + "size": 11559, + "sha256": "cadb9941124001b8fa7cb1ebae43b70a9ca56294f4df4d3c2f22c164c41757d4" + }, + "profile_json": { + "path": "/data/jialinzhang/SynthesizePipeline-server/DatasetNew/artifacts/data_core/tabular/m4/m4-dataset_profile.json", + "exists": true, + "size": 3336, + "sha256": "83e2764810e4a0e8cdece3a28dbd9134b7c9df6f2e56953e46d024ad2c4e035f" + }, + "contract_json": { + "path": "/data/jialinzhang/SynthesizePipeline-server/DatasetNew/artifacts/data_core/tabular/m4/m4-dataset_contract_v1.json", + "exists": true, + "size": 3810, + "sha256": "c23641b258629a845b164099bd0132886f8f6d0100e990494e0f92540f8987d9" + } + } +} \ No newline at end of file diff --git a/hyperparameter/m4/tabbyflow/tabbyflow-m4-20260505_002825/models_tabbyflow/trained.pt b/hyperparameter/m4/tabbyflow/tabbyflow-m4-20260505_002825/models_tabbyflow/trained.pt new file mode 100644 index 0000000000000000000000000000000000000000..f063a878c470d9d40f79db79881596e1e497dffd --- /dev/null +++ b/hyperparameter/m4/tabbyflow/tabbyflow-m4-20260505_002825/models_tabbyflow/trained.pt @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:adb734fec12f2251befd371dca69e481b19464aded2a6823105a01b4be6ddbe5 +size 40 diff --git a/hyperparameter/m4/tabbyflow/tabbyflow-m4-20260505_002825/public_gate/normalized_schema_snapshot.json b/hyperparameter/m4/tabbyflow/tabbyflow-m4-20260505_002825/public_gate/normalized_schema_snapshot.json new file mode 100644 index 0000000000000000000000000000000000000000..31ed9818686b11907df75e872e4ffbe010330880 --- /dev/null +++ b/hyperparameter/m4/tabbyflow/tabbyflow-m4-20260505_002825/public_gate/normalized_schema_snapshot.json @@ -0,0 +1,147 @@ +{ + "dataset_id": "m4", + "target_column": "charges", + "task_type": "regression", + "columns": [ + { + "name": "age", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 47, + "unique_ratio": 0.0212, + "example_values": [ + "46", + "38", + "19", + "27", + "26" + ] + } + }, + { + "name": "sex", + "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.000902, + "example_values": [ + "female", + "male" + ] + } + }, + { + "name": "bmi", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 538, + "unique_ratio": 0.24267, + "example_values": [ + "23.655", + "19.3", + "30.59", + "32.67", + "29.45" + ] + } + }, + { + "name": "children", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 6, + "unique_ratio": 0.002706, + "example_values": [ + "1", + "0", + "3", + "2", + "5" + ] + } + }, + { + "name": "smoker", + "role": "feature", + "semantic_type": "boolean", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 2, + "unique_ratio": 0.000902, + "example_values": [ + "yes", + "no" + ] + } + }, + { + "name": "region", + "role": "feature", + "semantic_type": "categorical", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 4, + "unique_ratio": 0.001804, + "example_values": [ + "northwest", + "southwest", + "southeast", + "northeast" + ] + } + }, + { + "name": "charges", + "role": "target", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 1281, + "unique_ratio": 0.577808, + "example_values": [ + "21677.28345", + "15820.699", + "1639.5631", + "2497.0383", + "2897.3235" + ] + } + } + ] +} \ No newline at end of file diff --git a/hyperparameter/m4/tabbyflow/tabbyflow-m4-20260505_002825/public_gate/public_gate_report.json b/hyperparameter/m4/tabbyflow/tabbyflow-m4-20260505_002825/public_gate/public_gate_report.json new file mode 100644 index 0000000000000000000000000000000000000000..e7a25408e2574124629ea9437356551e4d6f4790 --- /dev/null +++ b/hyperparameter/m4/tabbyflow/tabbyflow-m4-20260505_002825/public_gate/public_gate_report.json @@ -0,0 +1,37 @@ +{ + "dataset_id": "m4", + "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": "charges", + "task_type": "regression", + "input_splits": { + "train": "/data/jialinzhang/SynthesizePipeline-server/DatasetNew/m4/m4-train.csv", + "val": "/data/jialinzhang/SynthesizePipeline-server/DatasetNew/m4/m4-val.csv", + "test": "/data/jialinzhang/SynthesizePipeline-server/DatasetNew/m4/m4-test.csv" + } +} \ No newline at end of file diff --git a/hyperparameter/m4/tabbyflow/tabbyflow-m4-20260505_002825/public_gate/staged_input_manifest.json b/hyperparameter/m4/tabbyflow/tabbyflow-m4-20260505_002825/public_gate/staged_input_manifest.json new file mode 100644 index 0000000000000000000000000000000000000000..fac9cc8a2b0dd831e0a41906295e499a1ca8ccc5 --- /dev/null +++ b/hyperparameter/m4/tabbyflow/tabbyflow-m4-20260505_002825/public_gate/staged_input_manifest.json @@ -0,0 +1,152 @@ +{ + "dataset_id": "m4", + "target_column": "charges", + "task_type": "regression", + "train_csv": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/m4/tabbyflow/tabbyflow-m4-20260505_002825/staged/public/train.csv", + "val_csv": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/m4/tabbyflow/tabbyflow-m4-20260505_002825/staged/public/val.csv", + "test_csv": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/m4/tabbyflow/tabbyflow-m4-20260505_002825/staged/public/test.csv", + "features_json": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/m4/tabbyflow/tabbyflow-m4-20260505_002825/staged/public/staged_features.json", + "public_gate_report": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/m4/tabbyflow/tabbyflow-m4-20260505_002825/public_gate/public_gate_report.json", + "column_schema": [ + { + "name": "age", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 47, + "unique_ratio": 0.0212, + "example_values": [ + "46", + "38", + "19", + "27", + "26" + ] + } + }, + { + "name": "sex", + "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.000902, + "example_values": [ + "female", + "male" + ] + } + }, + { + "name": "bmi", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 538, + "unique_ratio": 0.24267, + "example_values": [ + "23.655", + "19.3", + "30.59", + "32.67", + "29.45" + ] + } + }, + { + "name": "children", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 6, + "unique_ratio": 0.002706, + "example_values": [ + "1", + "0", + "3", + "2", + "5" + ] + } + }, + { + "name": "smoker", + "role": "feature", + "semantic_type": "boolean", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 2, + "unique_ratio": 0.000902, + "example_values": [ + "yes", + "no" + ] + } + }, + { + "name": "region", + "role": "feature", + "semantic_type": "categorical", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 4, + "unique_ratio": 0.001804, + "example_values": [ + "northwest", + "southwest", + "southeast", + "northeast" + ] + } + }, + { + "name": "charges", + "role": "target", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 1281, + "unique_ratio": 0.577808, + "example_values": [ + "21677.28345", + "15820.699", + "1639.5631", + "2497.0383", + "2897.3235" + ] + } + } + ] +} \ No newline at end of file diff --git a/hyperparameter/m4/tabbyflow/tabbyflow-m4-20260505_002825/run_config.json b/hyperparameter/m4/tabbyflow/tabbyflow-m4-20260505_002825/run_config.json new file mode 100644 index 0000000000000000000000000000000000000000..7b3146bcd51af8b9ef88ff40b897d98d0af15c7e --- /dev/null +++ b/hyperparameter/m4/tabbyflow/tabbyflow-m4-20260505_002825/run_config.json @@ -0,0 +1,42 @@ +{ + "schema_version": 1, + "recorded_at": "2026-05-05T00:28:25", + "dataset_id": "m4", + "model": "tabbyflow", + "work_dir": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/m4/tabbyflow/tabbyflow-m4-20260505_002825", + "dataset_source_requested": "new", + "dataset_source_resolved": "new", + "cli_args": { + "model": "tabbyflow", + "dataset": "m4", + "dataset_source": "new", + "train": true, + "generate": true, + "num_rows": 0, + "epochs": 100, + "output_dir": null, + "model_dir": null, + "work_dir": null, + "resume": false, + "no_stats": false + }, + "resolved": { + "num_rows": 2217, + "model_path": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/m4/tabbyflow/tabbyflow-m4-20260505_002825/models_tabbyflow/trained.pt", + "output_csv": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/m4/tabbyflow/tabbyflow-m4-20260505_002825/tabbyflow-m4-2217-20260505_003023.csv" + }, + "input_artifacts": { + "public_gate_report": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/m4/tabbyflow/tabbyflow-m4-20260505_002825/public_gate/public_gate_report.json", + "public_manifest": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/m4/tabbyflow/tabbyflow-m4-20260505_002825/public_gate/staged_input_manifest.json", + "model_manifest": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/m4/tabbyflow/tabbyflow-m4-20260505_002825/staged/tabbyflow/model_input_manifest.json", + "train_csv": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/m4/tabbyflow/tabbyflow-m4-20260505_002825/staged/public/train.csv", + "features_json": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/m4/tabbyflow/tabbyflow-m4-20260505_002825/staged/public/staged_features.json", + "target_column": "charges", + "task_type": "regression" + }, + "env_overrides": { + "BENCHMARK_TABBYFLOW_GPUS": "device=0", + "EFVFM_EVAL_NUM_SAMPLES": "512", + "EFVFM_SAMPLE_BATCH_SIZE": "64" + } +} \ No newline at end of file diff --git a/hyperparameter/m4/tabbyflow/tabbyflow-m4-20260505_002825/runtime_result.json b/hyperparameter/m4/tabbyflow/tabbyflow-m4-20260505_002825/runtime_result.json new file mode 100644 index 0000000000000000000000000000000000000000..37cc84afcd83c7af134ded71be2c6fad53e2ee18 --- /dev/null +++ b/hyperparameter/m4/tabbyflow/tabbyflow-m4-20260505_002825/runtime_result.json @@ -0,0 +1,27 @@ +{ + "dataset_id": "m4", + "model": "tabbyflow", + "run_id": "tabbyflow-m4-20260505_002825", + "public_gate_status": "pass", + "adapter_ready_status": "pass", + "train_status": "success", + "generate_status": "success", + "reason_code": null, + "reason_detail": null, + "artifacts": { + "synthetic_csv": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/m4/tabbyflow/tabbyflow-m4-20260505_002825/tabbyflow-m4-2217-20260505_003023.csv", + "model_path": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/m4/tabbyflow/tabbyflow-m4-20260505_002825/models_tabbyflow/trained.pt" + }, + "timings": { + "train": { + "started_at": "2026-05-05T00:28:25", + "ended_at": "2026-05-05T00:30:23", + "duration_sec": 118.103 + }, + "generate": { + "started_at": "2026-05-05T00:30:23", + "ended_at": "2026-05-05T00:30:46", + "duration_sec": 23.327 + } + } +} \ No newline at end of file diff --git a/hyperparameter/m4/tabbyflow/tabbyflow-m4-20260505_002825/staged/public/staged_features.json b/hyperparameter/m4/tabbyflow/tabbyflow-m4-20260505_002825/staged/public/staged_features.json new file mode 100644 index 0000000000000000000000000000000000000000..d6acd098c35111f423f3ffff2cfd1754bc5dfebc --- /dev/null +++ b/hyperparameter/m4/tabbyflow/tabbyflow-m4-20260505_002825/staged/public/staged_features.json @@ -0,0 +1,37 @@ +[ + { + "feature_name": "age", + "data_type": "continuous", + "is_target": false + }, + { + "feature_name": "sex", + "data_type": "categorical", + "is_target": false + }, + { + "feature_name": "bmi", + "data_type": "continuous", + "is_target": false + }, + { + "feature_name": "children", + "data_type": "continuous", + "is_target": false + }, + { + "feature_name": "smoker", + "data_type": "binary", + "is_target": false + }, + { + "feature_name": "region", + "data_type": "categorical", + "is_target": false + }, + { + "feature_name": "charges", + "data_type": "continuous", + "is_target": true + } +] \ No newline at end of file diff --git a/hyperparameter/m4/tabbyflow/tabbyflow-m4-20260505_002825/staged/public/test.csv b/hyperparameter/m4/tabbyflow/tabbyflow-m4-20260505_002825/staged/public/test.csv new file mode 100644 index 0000000000000000000000000000000000000000..c88a2e7cfcd715bb421cb56eb078033da45c4dc8 --- /dev/null +++ b/hyperparameter/m4/tabbyflow/tabbyflow-m4-20260505_002825/staged/public/test.csv @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:4c541b677fb2d45c5bc79338eeee9fd8c91484b195a0c2c546c2fbabf113b7ea +size 11298 diff --git a/hyperparameter/m4/tabbyflow/tabbyflow-m4-20260505_002825/staged/public/train.csv b/hyperparameter/m4/tabbyflow/tabbyflow-m4-20260505_002825/staged/public/train.csv new file mode 100644 index 0000000000000000000000000000000000000000..5a05019d786529e0617291766c4fbe016ca01bf5 --- /dev/null +++ b/hyperparameter/m4/tabbyflow/tabbyflow-m4-20260505_002825/staged/public/train.csv @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:614ebfac5f41d6f661aff675fa18c0f933a8d9bcc77ea71b7b2360c2f0155837 +size 90069 diff --git a/hyperparameter/m4/tabbyflow/tabbyflow-m4-20260505_002825/staged/public/val.csv b/hyperparameter/m4/tabbyflow/tabbyflow-m4-20260505_002825/staged/public/val.csv new file mode 100644 index 0000000000000000000000000000000000000000..d78fe5ad1537c437ba9ac2629f2aa60a6c17e708 --- /dev/null +++ b/hyperparameter/m4/tabbyflow/tabbyflow-m4-20260505_002825/staged/public/val.csv @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:e55f5edbe7942ff01630de91a9c70dfbc6445eba76c7b970350364546b67c2d7 +size 11218 diff --git a/hyperparameter/m4/tabbyflow/tabbyflow-m4-20260505_002825/staged/tabbyflow/adapter_report.json b/hyperparameter/m4/tabbyflow/tabbyflow-m4-20260505_002825/staged/tabbyflow/adapter_report.json new file mode 100644 index 0000000000000000000000000000000000000000..4c47de45c794e92e87c8991c84a70f4692dbacb5 --- /dev/null +++ b/hyperparameter/m4/tabbyflow/tabbyflow-m4-20260505_002825/staged/tabbyflow/adapter_report.json @@ -0,0 +1,7 @@ +{ + "adapter_ready_status": "pass", + "adapter_fail_reason_code": null, + "adapter_fail_detail": null, + "adapter_transforms_applied": [], + "model_input_manifest": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/m4/tabbyflow/tabbyflow-m4-20260505_002825/staged/tabbyflow/model_input_manifest.json" +} \ No newline at end of file diff --git a/hyperparameter/m4/tabbyflow/tabbyflow-m4-20260505_002825/staged/tabbyflow/adapter_transforms_applied.json b/hyperparameter/m4/tabbyflow/tabbyflow-m4-20260505_002825/staged/tabbyflow/adapter_transforms_applied.json new file mode 100644 index 0000000000000000000000000000000000000000..0637a088a01e8ddab3bf3fa98dbe804cbde1a0dc --- /dev/null +++ b/hyperparameter/m4/tabbyflow/tabbyflow-m4-20260505_002825/staged/tabbyflow/adapter_transforms_applied.json @@ -0,0 +1 @@ +[] \ No newline at end of file diff --git a/hyperparameter/m4/tabbyflow/tabbyflow-m4-20260505_002825/staged/tabbyflow/model_input_manifest.json b/hyperparameter/m4/tabbyflow/tabbyflow-m4-20260505_002825/staged/tabbyflow/model_input_manifest.json new file mode 100644 index 0000000000000000000000000000000000000000..dc873a7cadd252213e7bd44b113c3904f2bf1557 --- /dev/null +++ b/hyperparameter/m4/tabbyflow/tabbyflow-m4-20260505_002825/staged/tabbyflow/model_input_manifest.json @@ -0,0 +1,154 @@ +{ + "dataset_id": "m4", + "model": "tabbyflow", + "target_column": "charges", + "task_type": "regression", + "column_schema": [ + { + "name": "age", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 47, + "unique_ratio": 0.0212, + "example_values": [ + "46", + "38", + "19", + "27", + "26" + ] + } + }, + { + "name": "sex", + "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.000902, + "example_values": [ + "female", + "male" + ] + } + }, + { + "name": "bmi", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 538, + "unique_ratio": 0.24267, + "example_values": [ + "23.655", + "19.3", + "30.59", + "32.67", + "29.45" + ] + } + }, + { + "name": "children", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 6, + "unique_ratio": 0.002706, + "example_values": [ + "1", + "0", + "3", + "2", + "5" + ] + } + }, + { + "name": "smoker", + "role": "feature", + "semantic_type": "boolean", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 2, + "unique_ratio": 0.000902, + "example_values": [ + "yes", + "no" + ] + } + }, + { + "name": "region", + "role": "feature", + "semantic_type": "categorical", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 4, + "unique_ratio": 0.001804, + "example_values": [ + "northwest", + "southwest", + "southeast", + "northeast" + ] + } + }, + { + "name": "charges", + "role": "target", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 1281, + "unique_ratio": 0.577808, + "example_values": [ + "21677.28345", + "15820.699", + "1639.5631", + "2497.0383", + "2897.3235" + ] + } + } + ], + "public_manifest": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/m4/tabbyflow/tabbyflow-m4-20260505_002825/public_gate/staged_input_manifest.json", + "train_csv": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/m4/tabbyflow/tabbyflow-m4-20260505_002825/staged/public/train.csv", + "val_csv": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/m4/tabbyflow/tabbyflow-m4-20260505_002825/staged/public/val.csv", + "test_csv": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/m4/tabbyflow/tabbyflow-m4-20260505_002825/staged/public/test.csv", + "features_json": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/m4/tabbyflow/tabbyflow-m4-20260505_002825/staged/public/staged_features.json", + "public_gate_report": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/m4/tabbyflow/tabbyflow-m4-20260505_002825/public_gate/public_gate_report.json" +} \ No newline at end of file diff --git a/hyperparameter/m4/tabbyflow/tabbyflow-m4-20260505_002825/tabbyflow-m4-2217-20260505_003023.csv b/hyperparameter/m4/tabbyflow/tabbyflow-m4-20260505_002825/tabbyflow-m4-2217-20260505_003023.csv new file mode 100644 index 0000000000000000000000000000000000000000..d3984f4319f0ed135d7cfe817b4aaeccbc065742 --- /dev/null +++ b/hyperparameter/m4/tabbyflow/tabbyflow-m4-20260505_002825/tabbyflow-m4-2217-20260505_003023.csv @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:ae9aa578f6726d89ede65ca475a6d6257293f13316bcd53517a488474e220cd5 +size 84139 diff --git a/hyperparameter/m4/tabbyflow/tabbyflow-m4-20260505_002825/tabbyflow_train_meta.json b/hyperparameter/m4/tabbyflow/tabbyflow-m4-20260505_002825/tabbyflow_train_meta.json new file mode 100644 index 0000000000000000000000000000000000000000..7649f700be081f9381a952b8803a1cd42a67c597 --- /dev/null +++ b/hyperparameter/m4/tabbyflow/tabbyflow-m4-20260505_002825/tabbyflow_train_meta.json @@ -0,0 +1,5 @@ +{ + "exp_name": "adapter_efvfm", + "dataname": "pipeline_m4", + "steps": 100 +} \ No newline at end of file diff --git a/hyperparameter/m4/tabbyflow/tabbyflow-m4-20260505_002825/tabular_bundle/pipeline_m4/X_cat_test.npy b/hyperparameter/m4/tabbyflow/tabbyflow-m4-20260505_002825/tabular_bundle/pipeline_m4/X_cat_test.npy new file mode 100644 index 0000000000000000000000000000000000000000..2f6b8b23f5768174aab4879e2a30371e9a3d0ead --- /dev/null +++ b/hyperparameter/m4/tabbyflow/tabbyflow-m4-20260505_002825/tabular_bundle/pipeline_m4/X_cat_test.npy @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:c91af7ac26382e392a70536d3dbb592c04ba5e4f495d1e3c364416b9ef704a07 +size 53336 diff --git a/hyperparameter/m4/tabbyflow/tabbyflow-m4-20260505_002825/tabular_bundle/pipeline_m4/X_cat_train.npy b/hyperparameter/m4/tabbyflow/tabbyflow-m4-20260505_002825/tabular_bundle/pipeline_m4/X_cat_train.npy new file mode 100644 index 0000000000000000000000000000000000000000..2f6b8b23f5768174aab4879e2a30371e9a3d0ead --- /dev/null +++ b/hyperparameter/m4/tabbyflow/tabbyflow-m4-20260505_002825/tabular_bundle/pipeline_m4/X_cat_train.npy @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:c91af7ac26382e392a70536d3dbb592c04ba5e4f495d1e3c364416b9ef704a07 +size 53336 diff --git a/hyperparameter/m4/tabbyflow/tabbyflow-m4-20260505_002825/tabular_bundle/pipeline_m4/X_cat_val.npy b/hyperparameter/m4/tabbyflow/tabbyflow-m4-20260505_002825/tabular_bundle/pipeline_m4/X_cat_val.npy new file mode 100644 index 0000000000000000000000000000000000000000..2f6b8b23f5768174aab4879e2a30371e9a3d0ead --- /dev/null +++ b/hyperparameter/m4/tabbyflow/tabbyflow-m4-20260505_002825/tabular_bundle/pipeline_m4/X_cat_val.npy @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:c91af7ac26382e392a70536d3dbb592c04ba5e4f495d1e3c364416b9ef704a07 +size 53336 diff --git a/hyperparameter/m4/tabbyflow/tabbyflow-m4-20260505_002825/tabular_bundle/pipeline_m4/X_num_test.npy b/hyperparameter/m4/tabbyflow/tabbyflow-m4-20260505_002825/tabular_bundle/pipeline_m4/X_num_test.npy new file mode 100644 index 0000000000000000000000000000000000000000..dc149960a879e21fd1aeed7de2419851175627e7 --- /dev/null +++ b/hyperparameter/m4/tabbyflow/tabbyflow-m4-20260505_002825/tabular_bundle/pipeline_m4/X_num_test.npy @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:4a21bd2fd5a226c07d543ddf78616a8edb2d52b51097fc7a5df5b05612267af8 +size 26732 diff --git a/hyperparameter/m4/tabbyflow/tabbyflow-m4-20260505_002825/tabular_bundle/pipeline_m4/X_num_train.npy b/hyperparameter/m4/tabbyflow/tabbyflow-m4-20260505_002825/tabular_bundle/pipeline_m4/X_num_train.npy new file mode 100644 index 0000000000000000000000000000000000000000..dc149960a879e21fd1aeed7de2419851175627e7 --- /dev/null +++ b/hyperparameter/m4/tabbyflow/tabbyflow-m4-20260505_002825/tabular_bundle/pipeline_m4/X_num_train.npy @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:4a21bd2fd5a226c07d543ddf78616a8edb2d52b51097fc7a5df5b05612267af8 +size 26732 diff --git a/hyperparameter/m4/tabbyflow/tabbyflow-m4-20260505_002825/tabular_bundle/pipeline_m4/X_num_val.npy b/hyperparameter/m4/tabbyflow/tabbyflow-m4-20260505_002825/tabular_bundle/pipeline_m4/X_num_val.npy new file mode 100644 index 0000000000000000000000000000000000000000..dc149960a879e21fd1aeed7de2419851175627e7 --- /dev/null +++ b/hyperparameter/m4/tabbyflow/tabbyflow-m4-20260505_002825/tabular_bundle/pipeline_m4/X_num_val.npy @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:4a21bd2fd5a226c07d543ddf78616a8edb2d52b51097fc7a5df5b05612267af8 +size 26732 diff --git a/hyperparameter/m4/tabbyflow/tabbyflow-m4-20260505_002825/tabular_bundle/pipeline_m4/info.json b/hyperparameter/m4/tabbyflow/tabbyflow-m4-20260505_002825/tabular_bundle/pipeline_m4/info.json new file mode 100644 index 0000000000000000000000000000000000000000..1ccad8d2dc3c60feacc99d202a75e21be3afa7b5 --- /dev/null +++ b/hyperparameter/m4/tabbyflow/tabbyflow-m4-20260505_002825/tabular_bundle/pipeline_m4/info.json @@ -0,0 +1,92 @@ +{ + "name": "pipeline_m4", + "task_type": "regression", + "n_num_features": 3, + "n_cat_features": 3, + "train_size": 2217, + "test_num": 2217, + "val_num": 2217, + "train_num": 2217, + "bundle_note": "val/test matrices are train copies (train-only policy; no real held-out rows).", + "num_col_idx": [ + 0, + 1, + 2 + ], + "cat_col_idx": [ + 3, + 4, + 5 + ], + "target_col_idx": [ + 6 + ], + "column_names": [ + "age", + "bmi", + "children", + "sex", + "smoker", + "region", + "charges" + ], + "int_col_idx": [], + "int_columns": [], + "int_col_idx_wrt_num": [], + "metadata": { + "columns": { + "0": { + "sdtype": "numerical", + "computer_representation": "Float" + }, + "1": { + "sdtype": "numerical", + "computer_representation": "Float" + }, + "2": { + "sdtype": "numerical", + "computer_representation": "Float" + }, + "3": { + "sdtype": "categorical" + }, + "4": { + "sdtype": "categorical" + }, + "5": { + "sdtype": "categorical" + }, + "6": { + "sdtype": "numerical", + "computer_representation": "Float" + } + } + }, + "idx_mapping": { + "0": 0, + "1": 1, + "2": 2, + "3": 3, + "4": 4, + "5": 5, + "6": 6 + }, + "inverse_idx_mapping": { + "0": 0, + "1": 1, + "2": 2, + "3": 3, + "4": 4, + "5": 5, + "6": 6 + }, + "idx_name_mapping": { + "0": "age", + "1": "bmi", + "2": "children", + "3": "sex", + "4": "smoker", + "5": "region", + "6": "charges" + } +} \ No newline at end of file diff --git a/hyperparameter/m4/tabbyflow/tabbyflow-m4-20260505_002825/tabular_bundle/pipeline_m4/real.csv b/hyperparameter/m4/tabbyflow/tabbyflow-m4-20260505_002825/tabular_bundle/pipeline_m4/real.csv new file mode 100644 index 0000000000000000000000000000000000000000..85ff7f4464fa73c1d58767739e7b259f9371a55b --- /dev/null +++ b/hyperparameter/m4/tabbyflow/tabbyflow-m4-20260505_002825/tabular_bundle/pipeline_m4/real.csv @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:e031e2816aa79e4e5fab4c7fe470741eb2d287e493d74b9cfda68441799e07fa +size 60773 diff --git a/hyperparameter/m4/tabbyflow/tabbyflow-m4-20260505_002825/tabular_bundle/pipeline_m4/test.csv b/hyperparameter/m4/tabbyflow/tabbyflow-m4-20260505_002825/tabular_bundle/pipeline_m4/test.csv new file mode 100644 index 0000000000000000000000000000000000000000..85ff7f4464fa73c1d58767739e7b259f9371a55b --- /dev/null +++ b/hyperparameter/m4/tabbyflow/tabbyflow-m4-20260505_002825/tabular_bundle/pipeline_m4/test.csv @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:e031e2816aa79e4e5fab4c7fe470741eb2d287e493d74b9cfda68441799e07fa +size 60773 diff --git a/hyperparameter/m4/tabbyflow/tabbyflow-m4-20260505_002825/tabular_bundle/pipeline_m4/val.csv b/hyperparameter/m4/tabbyflow/tabbyflow-m4-20260505_002825/tabular_bundle/pipeline_m4/val.csv new file mode 100644 index 0000000000000000000000000000000000000000..85ff7f4464fa73c1d58767739e7b259f9371a55b --- /dev/null +++ b/hyperparameter/m4/tabbyflow/tabbyflow-m4-20260505_002825/tabular_bundle/pipeline_m4/val.csv @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:e031e2816aa79e4e5fab4c7fe470741eb2d287e493d74b9cfda68441799e07fa +size 60773 diff --git a/hyperparameter/m4/tabbyflow/tabbyflow-m4-20260505_002825/tabular_bundle/pipeline_m4/y_test.npy b/hyperparameter/m4/tabbyflow/tabbyflow-m4-20260505_002825/tabular_bundle/pipeline_m4/y_test.npy new file mode 100644 index 0000000000000000000000000000000000000000..717f965e62bd5595d6df01d1ad7851fc5768dc29 --- /dev/null +++ b/hyperparameter/m4/tabbyflow/tabbyflow-m4-20260505_002825/tabular_bundle/pipeline_m4/y_test.npy @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:0c64fea6ad5ed2f8441ef5212c726195dbf53e1c81298427bddd18eb20e35cf2 +size 8996 diff --git a/hyperparameter/m4/tabbyflow/tabbyflow-m4-20260505_002825/tabular_bundle/pipeline_m4/y_train.npy b/hyperparameter/m4/tabbyflow/tabbyflow-m4-20260505_002825/tabular_bundle/pipeline_m4/y_train.npy new file mode 100644 index 0000000000000000000000000000000000000000..717f965e62bd5595d6df01d1ad7851fc5768dc29 --- /dev/null +++ b/hyperparameter/m4/tabbyflow/tabbyflow-m4-20260505_002825/tabular_bundle/pipeline_m4/y_train.npy @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:0c64fea6ad5ed2f8441ef5212c726195dbf53e1c81298427bddd18eb20e35cf2 +size 8996 diff --git a/hyperparameter/m4/tabbyflow/tabbyflow-m4-20260505_002825/tabular_bundle/pipeline_m4/y_val.npy b/hyperparameter/m4/tabbyflow/tabbyflow-m4-20260505_002825/tabular_bundle/pipeline_m4/y_val.npy new file mode 100644 index 0000000000000000000000000000000000000000..717f965e62bd5595d6df01d1ad7851fc5768dc29 --- /dev/null +++ b/hyperparameter/m4/tabbyflow/tabbyflow-m4-20260505_002825/tabular_bundle/pipeline_m4/y_val.npy @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:0c64fea6ad5ed2f8441ef5212c726195dbf53e1c81298427bddd18eb20e35cf2 +size 8996 diff --git a/hyperparameter/m4/tabbyflow/tabbyflow-m4-20260505_002825/train_20260505_002825.log b/hyperparameter/m4/tabbyflow/tabbyflow-m4-20260505_002825/train_20260505_002825.log new file mode 100644 index 0000000000000000000000000000000000000000..4876df3ce7025d9a22243ebdc2c6f7e00e4a42c8 --- /dev/null +++ b/hyperparameter/m4/tabbyflow/tabbyflow-m4-20260505_002825/train_20260505_002825.log @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:6cb417c854a539dea3cf859cb1308733ffbbe89af4218bb64ef63d56cb814a1f +size 62288 diff --git a/hyperparameter/m4/tabbyflow/tabbyflow-m4-20260505_003100/_tabbyflow_gen.py b/hyperparameter/m4/tabbyflow/tabbyflow-m4-20260505_003100/_tabbyflow_gen.py new file mode 100644 index 0000000000000000000000000000000000000000..0a5ed2fcf2a49dd28edbd6b08de6fba2b1f3300c --- /dev/null +++ b/hyperparameter/m4/tabbyflow/tabbyflow-m4-20260505_003100/_tabbyflow_gen.py @@ -0,0 +1,34 @@ + +import os, shutil, subprocess, sys +root = r"/workspace/ef-vfm" +name = r"pipeline_m4" +src = r"/work/output-Benchmark-trainonly-v1/m4/tabbyflow/tabbyflow-m4-20260505_003100/tabular_bundle/pipeline_m4" +dst_data = os.path.join(root, "data", name) +shutil.rmtree(dst_data, ignore_errors=True) +shutil.copytree(src, dst_data) +dst_syn = os.path.join(root, "synthetic", name) +os.makedirs(dst_syn, exist_ok=True) +for fn in ("real.csv", "test.csv", "val.csv"): + shutil.copy(os.path.join(src, fn), os.path.join(dst_syn, fn)) +os.chdir(root) +os.environ["PYTHONPATH"] = root + os.pathsep + os.environ.get("PYTHONPATH", "") +os.environ.setdefault("EFVFM_SAMPLE_BATCH_SIZE", "128") +subprocess.check_call([ + sys.executable, "main.py", + "--dataname", name, "--mode", "test", "--gpu", "0", + "--no_wandb", "--exp_name", r"adapter_efvfm", + "--ckpt_path", r"/workspace/ef-vfm/ef_vfm/ckpt/pipeline_m4/adapter_efvfm/model_200.pt", + "--num_samples_to_generate", str(int(2217)), +]) +base = os.path.join(root, "ef_vfm", "result", name, r"adapter_efvfm") +best = None +best_t = -1.0 +for r, _, files in os.walk(base): + if "samples.csv" in files: + p = os.path.join(r, "samples.csv") + t = os.path.getmtime(p) + if t > best_t: + best_t, best = t, p +if not best: + raise SystemExit("tabbyflow: no samples.csv in " + base) +shutil.copy(best, r"/work/output-Benchmark-trainonly-v1/m4/tabbyflow/tabbyflow-m4-20260505_003100/tabbyflow-m4-2217-20260505_003434.csv") diff --git a/hyperparameter/m4/tabbyflow/tabbyflow-m4-20260505_003100/_tabbyflow_train.py b/hyperparameter/m4/tabbyflow/tabbyflow-m4-20260505_003100/_tabbyflow_train.py new file mode 100644 index 0000000000000000000000000000000000000000..7369e4e838bbdaaac506bdcaba17882ed8cee658 --- /dev/null +++ b/hyperparameter/m4/tabbyflow/tabbyflow-m4-20260505_003100/_tabbyflow_train.py @@ -0,0 +1,24 @@ + +import os, shutil, subprocess, sys +root = r"/workspace/ef-vfm" +name = r"pipeline_m4" +src = r"/work/output-Benchmark-trainonly-v1/m4/tabbyflow/tabbyflow-m4-20260505_003100/tabular_bundle/pipeline_m4" +os.makedirs(os.path.join(root, "data", name), exist_ok=True) +dst_data = os.path.join(root, "data", name) +dst_syn = os.path.join(root, "synthetic", name) +shutil.rmtree(dst_data, ignore_errors=True) +shutil.copytree(src, dst_data) +os.makedirs(dst_syn, exist_ok=True) +for fn in ("real.csv", "test.csv", "val.csv"): + shutil.copy(os.path.join(src, fn), os.path.join(dst_syn, fn)) +os.chdir(root) +os.environ["PYTHONPATH"] = root + os.pathsep + os.environ.get("PYTHONPATH", "") +os.environ["EFVFM_SMOKE_STEPS"] = "200" +os.environ["EFVFM_ADAPTER_TRAIN"] = "1" +os.environ.setdefault("EFVFM_SAMPLE_BATCH_SIZE", "128") +os.environ.setdefault("EFVFM_EVAL_NUM_SAMPLES", "512") +subprocess.check_call([ + sys.executable, "main.py", + "--dataname", name, "--mode", "train", "--gpu", "0", + "--no_wandb", "--exp_name", r"adapter_efvfm", +]) diff --git a/hyperparameter/m4/tabbyflow/tabbyflow-m4-20260505_003100/gen_20260505_003434.log b/hyperparameter/m4/tabbyflow/tabbyflow-m4-20260505_003100/gen_20260505_003434.log new file mode 100644 index 0000000000000000000000000000000000000000..0681dbc10d0151a138c1c0f9a0630a5cc1a5c7e5 --- /dev/null +++ b/hyperparameter/m4/tabbyflow/tabbyflow-m4-20260505_003100/gen_20260505_003434.log @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:0ad83c4056da0e2c40f7683dc166cc05de3c3da16a2baa62e8fa5a5b4cecb9e1 +size 3571 diff --git a/hyperparameter/m4/tabbyflow/tabbyflow-m4-20260505_003100/input_snapshot.json b/hyperparameter/m4/tabbyflow/tabbyflow-m4-20260505_003100/input_snapshot.json new file mode 100644 index 0000000000000000000000000000000000000000..a8e6cea3720f9c9515d0f6647d3de14221c42d45 --- /dev/null +++ b/hyperparameter/m4/tabbyflow/tabbyflow-m4-20260505_003100/input_snapshot.json @@ -0,0 +1,36 @@ +{ + "dataset_id": "m4", + "model": "tabbyflow", + "inputs": { + "train_csv": { + "path": "/data/jialinzhang/SynthesizePipeline-server/DatasetNew/m4/m4-train.csv", + "exists": true, + "size": 92191, + "sha256": "396b9d409ca21bf4a4cd329bdf5b7796aa0ae6356fa8d89b8eb669b5880b81f1" + }, + "val_csv": { + "path": "/data/jialinzhang/SynthesizePipeline-server/DatasetNew/m4/m4-val.csv", + "exists": true, + "size": 11482, + "sha256": "ee3c247d02f56e1687d03c381e13125d6a3a2a411ac7f202ba8520a4be9f1784" + }, + "test_csv": { + "path": "/data/jialinzhang/SynthesizePipeline-server/DatasetNew/m4/m4-test.csv", + "exists": true, + "size": 11559, + "sha256": "cadb9941124001b8fa7cb1ebae43b70a9ca56294f4df4d3c2f22c164c41757d4" + }, + "profile_json": { + "path": "/data/jialinzhang/SynthesizePipeline-server/DatasetNew/artifacts/data_core/tabular/m4/m4-dataset_profile.json", + "exists": true, + "size": 3336, + "sha256": "83e2764810e4a0e8cdece3a28dbd9134b7c9df6f2e56953e46d024ad2c4e035f" + }, + "contract_json": { + "path": "/data/jialinzhang/SynthesizePipeline-server/DatasetNew/artifacts/data_core/tabular/m4/m4-dataset_contract_v1.json", + "exists": true, + "size": 3810, + "sha256": "c23641b258629a845b164099bd0132886f8f6d0100e990494e0f92540f8987d9" + } + } +} \ No newline at end of file diff --git a/hyperparameter/m4/tabbyflow/tabbyflow-m4-20260505_003100/models_tabbyflow/trained.pt b/hyperparameter/m4/tabbyflow/tabbyflow-m4-20260505_003100/models_tabbyflow/trained.pt new file mode 100644 index 0000000000000000000000000000000000000000..f063a878c470d9d40f79db79881596e1e497dffd --- /dev/null +++ b/hyperparameter/m4/tabbyflow/tabbyflow-m4-20260505_003100/models_tabbyflow/trained.pt @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:adb734fec12f2251befd371dca69e481b19464aded2a6823105a01b4be6ddbe5 +size 40 diff --git a/hyperparameter/m4/tabbyflow/tabbyflow-m4-20260505_003100/public_gate/normalized_schema_snapshot.json b/hyperparameter/m4/tabbyflow/tabbyflow-m4-20260505_003100/public_gate/normalized_schema_snapshot.json new file mode 100644 index 0000000000000000000000000000000000000000..31ed9818686b11907df75e872e4ffbe010330880 --- /dev/null +++ b/hyperparameter/m4/tabbyflow/tabbyflow-m4-20260505_003100/public_gate/normalized_schema_snapshot.json @@ -0,0 +1,147 @@ +{ + "dataset_id": "m4", + "target_column": "charges", + "task_type": "regression", + "columns": [ + { + "name": "age", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 47, + "unique_ratio": 0.0212, + "example_values": [ + "46", + "38", + "19", + "27", + "26" + ] + } + }, + { + "name": "sex", + "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.000902, + "example_values": [ + "female", + "male" + ] + } + }, + { + "name": "bmi", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 538, + "unique_ratio": 0.24267, + "example_values": [ + "23.655", + "19.3", + "30.59", + "32.67", + "29.45" + ] + } + }, + { + "name": "children", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 6, + "unique_ratio": 0.002706, + "example_values": [ + "1", + "0", + "3", + "2", + "5" + ] + } + }, + { + "name": "smoker", + "role": "feature", + "semantic_type": "boolean", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 2, + "unique_ratio": 0.000902, + "example_values": [ + "yes", + "no" + ] + } + }, + { + "name": "region", + "role": "feature", + "semantic_type": "categorical", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 4, + "unique_ratio": 0.001804, + "example_values": [ + "northwest", + "southwest", + "southeast", + "northeast" + ] + } + }, + { + "name": "charges", + "role": "target", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 1281, + "unique_ratio": 0.577808, + "example_values": [ + "21677.28345", + "15820.699", + "1639.5631", + "2497.0383", + "2897.3235" + ] + } + } + ] +} \ No newline at end of file diff --git a/hyperparameter/m4/tabbyflow/tabbyflow-m4-20260505_003100/public_gate/public_gate_report.json b/hyperparameter/m4/tabbyflow/tabbyflow-m4-20260505_003100/public_gate/public_gate_report.json new file mode 100644 index 0000000000000000000000000000000000000000..e7a25408e2574124629ea9437356551e4d6f4790 --- /dev/null +++ b/hyperparameter/m4/tabbyflow/tabbyflow-m4-20260505_003100/public_gate/public_gate_report.json @@ -0,0 +1,37 @@ +{ + "dataset_id": "m4", + "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": "charges", + "task_type": "regression", + "input_splits": { + "train": "/data/jialinzhang/SynthesizePipeline-server/DatasetNew/m4/m4-train.csv", + "val": "/data/jialinzhang/SynthesizePipeline-server/DatasetNew/m4/m4-val.csv", + "test": "/data/jialinzhang/SynthesizePipeline-server/DatasetNew/m4/m4-test.csv" + } +} \ No newline at end of file diff --git a/hyperparameter/m4/tabbyflow/tabbyflow-m4-20260505_003100/public_gate/staged_input_manifest.json b/hyperparameter/m4/tabbyflow/tabbyflow-m4-20260505_003100/public_gate/staged_input_manifest.json new file mode 100644 index 0000000000000000000000000000000000000000..6ee1a7d32962082609b8302fde8304ba71e7222b --- /dev/null +++ b/hyperparameter/m4/tabbyflow/tabbyflow-m4-20260505_003100/public_gate/staged_input_manifest.json @@ -0,0 +1,152 @@ +{ + "dataset_id": "m4", + "target_column": "charges", + "task_type": "regression", + "train_csv": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/m4/tabbyflow/tabbyflow-m4-20260505_003100/staged/public/train.csv", + "val_csv": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/m4/tabbyflow/tabbyflow-m4-20260505_003100/staged/public/val.csv", + "test_csv": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/m4/tabbyflow/tabbyflow-m4-20260505_003100/staged/public/test.csv", + "features_json": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/m4/tabbyflow/tabbyflow-m4-20260505_003100/staged/public/staged_features.json", + "public_gate_report": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/m4/tabbyflow/tabbyflow-m4-20260505_003100/public_gate/public_gate_report.json", + "column_schema": [ + { + "name": "age", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 47, + "unique_ratio": 0.0212, + "example_values": [ + "46", + "38", + "19", + "27", + "26" + ] + } + }, + { + "name": "sex", + "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.000902, + "example_values": [ + "female", + "male" + ] + } + }, + { + "name": "bmi", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 538, + "unique_ratio": 0.24267, + "example_values": [ + "23.655", + "19.3", + "30.59", + "32.67", + "29.45" + ] + } + }, + { + "name": "children", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 6, + "unique_ratio": 0.002706, + "example_values": [ + "1", + "0", + "3", + "2", + "5" + ] + } + }, + { + "name": "smoker", + "role": "feature", + "semantic_type": "boolean", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 2, + "unique_ratio": 0.000902, + "example_values": [ + "yes", + "no" + ] + } + }, + { + "name": "region", + "role": "feature", + "semantic_type": "categorical", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 4, + "unique_ratio": 0.001804, + "example_values": [ + "northwest", + "southwest", + "southeast", + "northeast" + ] + } + }, + { + "name": "charges", + "role": "target", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 1281, + "unique_ratio": 0.577808, + "example_values": [ + "21677.28345", + "15820.699", + "1639.5631", + "2497.0383", + "2897.3235" + ] + } + } + ] +} \ No newline at end of file diff --git a/hyperparameter/m4/tabbyflow/tabbyflow-m4-20260505_003100/run_config.json b/hyperparameter/m4/tabbyflow/tabbyflow-m4-20260505_003100/run_config.json new file mode 100644 index 0000000000000000000000000000000000000000..392d49dc48da9274370c74e223c38bd12b40dcda --- /dev/null +++ b/hyperparameter/m4/tabbyflow/tabbyflow-m4-20260505_003100/run_config.json @@ -0,0 +1,42 @@ +{ + "schema_version": 1, + "recorded_at": "2026-05-05T00:31:00", + "dataset_id": "m4", + "model": "tabbyflow", + "work_dir": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/m4/tabbyflow/tabbyflow-m4-20260505_003100", + "dataset_source_requested": "new", + "dataset_source_resolved": "new", + "cli_args": { + "model": "tabbyflow", + "dataset": "m4", + "dataset_source": "new", + "train": true, + "generate": true, + "num_rows": 0, + "epochs": 200, + "output_dir": null, + "model_dir": null, + "work_dir": null, + "resume": false, + "no_stats": false + }, + "resolved": { + "num_rows": 2217, + "model_path": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/m4/tabbyflow/tabbyflow-m4-20260505_003100/models_tabbyflow/trained.pt", + "output_csv": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/m4/tabbyflow/tabbyflow-m4-20260505_003100/tabbyflow-m4-2217-20260505_003434.csv" + }, + "input_artifacts": { + "public_gate_report": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/m4/tabbyflow/tabbyflow-m4-20260505_003100/public_gate/public_gate_report.json", + "public_manifest": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/m4/tabbyflow/tabbyflow-m4-20260505_003100/public_gate/staged_input_manifest.json", + "model_manifest": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/m4/tabbyflow/tabbyflow-m4-20260505_003100/staged/tabbyflow/model_input_manifest.json", + "train_csv": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/m4/tabbyflow/tabbyflow-m4-20260505_003100/staged/public/train.csv", + "features_json": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/m4/tabbyflow/tabbyflow-m4-20260505_003100/staged/public/staged_features.json", + "target_column": "charges", + "task_type": "regression" + }, + "env_overrides": { + "BENCHMARK_TABBYFLOW_GPUS": "device=0", + "EFVFM_EVAL_NUM_SAMPLES": "512", + "EFVFM_SAMPLE_BATCH_SIZE": "64" + } +} \ No newline at end of file diff --git a/hyperparameter/m4/tabbyflow/tabbyflow-m4-20260505_003100/runtime_result.json b/hyperparameter/m4/tabbyflow/tabbyflow-m4-20260505_003100/runtime_result.json new file mode 100644 index 0000000000000000000000000000000000000000..6a8699faf9d0bb08905f939fb15b5e55da932097 --- /dev/null +++ b/hyperparameter/m4/tabbyflow/tabbyflow-m4-20260505_003100/runtime_result.json @@ -0,0 +1,27 @@ +{ + "dataset_id": "m4", + "model": "tabbyflow", + "run_id": "tabbyflow-m4-20260505_003100", + "public_gate_status": "pass", + "adapter_ready_status": "pass", + "train_status": "success", + "generate_status": "success", + "reason_code": null, + "reason_detail": null, + "artifacts": { + "synthetic_csv": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/m4/tabbyflow/tabbyflow-m4-20260505_003100/tabbyflow-m4-2217-20260505_003434.csv", + "model_path": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/m4/tabbyflow/tabbyflow-m4-20260505_003100/models_tabbyflow/trained.pt" + }, + "timings": { + "train": { + "started_at": "2026-05-05T00:31:00", + "ended_at": "2026-05-05T00:34:34", + "duration_sec": 214.47 + }, + "generate": { + "started_at": "2026-05-05T00:34:34", + "ended_at": "2026-05-05T00:34:55", + "duration_sec": 20.575 + } + } +} \ No newline at end of file diff --git a/hyperparameter/m4/tabbyflow/tabbyflow-m4-20260505_003100/staged/public/staged_features.json b/hyperparameter/m4/tabbyflow/tabbyflow-m4-20260505_003100/staged/public/staged_features.json new file mode 100644 index 0000000000000000000000000000000000000000..d6acd098c35111f423f3ffff2cfd1754bc5dfebc --- /dev/null +++ b/hyperparameter/m4/tabbyflow/tabbyflow-m4-20260505_003100/staged/public/staged_features.json @@ -0,0 +1,37 @@ +[ + { + "feature_name": "age", + "data_type": "continuous", + "is_target": false + }, + { + "feature_name": "sex", + "data_type": "categorical", + "is_target": false + }, + { + "feature_name": "bmi", + "data_type": "continuous", + "is_target": false + }, + { + "feature_name": "children", + "data_type": "continuous", + "is_target": false + }, + { + "feature_name": "smoker", + "data_type": "binary", + "is_target": false + }, + { + "feature_name": "region", + "data_type": "categorical", + "is_target": false + }, + { + "feature_name": "charges", + "data_type": "continuous", + "is_target": true + } +] \ No newline at end of file diff --git a/hyperparameter/m4/tabbyflow/tabbyflow-m4-20260505_003100/staged/public/test.csv b/hyperparameter/m4/tabbyflow/tabbyflow-m4-20260505_003100/staged/public/test.csv new file mode 100644 index 0000000000000000000000000000000000000000..c88a2e7cfcd715bb421cb56eb078033da45c4dc8 --- /dev/null +++ b/hyperparameter/m4/tabbyflow/tabbyflow-m4-20260505_003100/staged/public/test.csv @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:4c541b677fb2d45c5bc79338eeee9fd8c91484b195a0c2c546c2fbabf113b7ea +size 11298 diff --git a/hyperparameter/m4/tabbyflow/tabbyflow-m4-20260505_003100/staged/public/train.csv b/hyperparameter/m4/tabbyflow/tabbyflow-m4-20260505_003100/staged/public/train.csv new file mode 100644 index 0000000000000000000000000000000000000000..5a05019d786529e0617291766c4fbe016ca01bf5 --- /dev/null +++ b/hyperparameter/m4/tabbyflow/tabbyflow-m4-20260505_003100/staged/public/train.csv @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:614ebfac5f41d6f661aff675fa18c0f933a8d9bcc77ea71b7b2360c2f0155837 +size 90069 diff --git a/hyperparameter/m4/tabbyflow/tabbyflow-m4-20260505_003100/staged/public/val.csv b/hyperparameter/m4/tabbyflow/tabbyflow-m4-20260505_003100/staged/public/val.csv new file mode 100644 index 0000000000000000000000000000000000000000..d78fe5ad1537c437ba9ac2629f2aa60a6c17e708 --- /dev/null +++ b/hyperparameter/m4/tabbyflow/tabbyflow-m4-20260505_003100/staged/public/val.csv @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:e55f5edbe7942ff01630de91a9c70dfbc6445eba76c7b970350364546b67c2d7 +size 11218 diff --git a/hyperparameter/m4/tabbyflow/tabbyflow-m4-20260505_003100/staged/tabbyflow/adapter_report.json b/hyperparameter/m4/tabbyflow/tabbyflow-m4-20260505_003100/staged/tabbyflow/adapter_report.json new file mode 100644 index 0000000000000000000000000000000000000000..02804bc1bef51e2c48d68d799531e9ce1e81d681 --- /dev/null +++ b/hyperparameter/m4/tabbyflow/tabbyflow-m4-20260505_003100/staged/tabbyflow/adapter_report.json @@ -0,0 +1,7 @@ +{ + "adapter_ready_status": "pass", + "adapter_fail_reason_code": null, + "adapter_fail_detail": null, + "adapter_transforms_applied": [], + "model_input_manifest": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/m4/tabbyflow/tabbyflow-m4-20260505_003100/staged/tabbyflow/model_input_manifest.json" +} \ No newline at end of file diff --git a/hyperparameter/m4/tabbyflow/tabbyflow-m4-20260505_003100/staged/tabbyflow/adapter_transforms_applied.json b/hyperparameter/m4/tabbyflow/tabbyflow-m4-20260505_003100/staged/tabbyflow/adapter_transforms_applied.json new file mode 100644 index 0000000000000000000000000000000000000000..0637a088a01e8ddab3bf3fa98dbe804cbde1a0dc --- /dev/null +++ b/hyperparameter/m4/tabbyflow/tabbyflow-m4-20260505_003100/staged/tabbyflow/adapter_transforms_applied.json @@ -0,0 +1 @@ +[] \ No newline at end of file diff --git a/hyperparameter/m4/tabbyflow/tabbyflow-m4-20260505_003100/staged/tabbyflow/model_input_manifest.json b/hyperparameter/m4/tabbyflow/tabbyflow-m4-20260505_003100/staged/tabbyflow/model_input_manifest.json new file mode 100644 index 0000000000000000000000000000000000000000..69ccc17b6b83a0c0236838b68734298817dbd104 --- /dev/null +++ b/hyperparameter/m4/tabbyflow/tabbyflow-m4-20260505_003100/staged/tabbyflow/model_input_manifest.json @@ -0,0 +1,154 @@ +{ + "dataset_id": "m4", + "model": "tabbyflow", + "target_column": "charges", + "task_type": "regression", + "column_schema": [ + { + "name": "age", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 47, + "unique_ratio": 0.0212, + "example_values": [ + "46", + "38", + "19", + "27", + "26" + ] + } + }, + { + "name": "sex", + "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.000902, + "example_values": [ + "female", + "male" + ] + } + }, + { + "name": "bmi", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 538, + "unique_ratio": 0.24267, + "example_values": [ + "23.655", + "19.3", + "30.59", + "32.67", + "29.45" + ] + } + }, + { + "name": "children", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 6, + "unique_ratio": 0.002706, + "example_values": [ + "1", + "0", + "3", + "2", + "5" + ] + } + }, + { + "name": "smoker", + "role": "feature", + "semantic_type": "boolean", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 2, + "unique_ratio": 0.000902, + "example_values": [ + "yes", + "no" + ] + } + }, + { + "name": "region", + "role": "feature", + "semantic_type": "categorical", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 4, + "unique_ratio": 0.001804, + "example_values": [ + "northwest", + "southwest", + "southeast", + "northeast" + ] + } + }, + { + "name": "charges", + "role": "target", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 1281, + "unique_ratio": 0.577808, + "example_values": [ + "21677.28345", + "15820.699", + "1639.5631", + "2497.0383", + "2897.3235" + ] + } + } + ], + "public_manifest": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/m4/tabbyflow/tabbyflow-m4-20260505_003100/public_gate/staged_input_manifest.json", + "train_csv": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/m4/tabbyflow/tabbyflow-m4-20260505_003100/staged/public/train.csv", + "val_csv": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/m4/tabbyflow/tabbyflow-m4-20260505_003100/staged/public/val.csv", + "test_csv": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/m4/tabbyflow/tabbyflow-m4-20260505_003100/staged/public/test.csv", + "features_json": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/m4/tabbyflow/tabbyflow-m4-20260505_003100/staged/public/staged_features.json", + "public_gate_report": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/m4/tabbyflow/tabbyflow-m4-20260505_003100/public_gate/public_gate_report.json" +} \ No newline at end of file diff --git a/hyperparameter/m4/tabbyflow/tabbyflow-m4-20260505_003100/tabbyflow-m4-2217-20260505_003434.csv b/hyperparameter/m4/tabbyflow/tabbyflow-m4-20260505_003100/tabbyflow-m4-2217-20260505_003434.csv new file mode 100644 index 0000000000000000000000000000000000000000..6a64c8d7b5b164ac46d09232d710e32d28238b46 --- /dev/null +++ b/hyperparameter/m4/tabbyflow/tabbyflow-m4-20260505_003100/tabbyflow-m4-2217-20260505_003434.csv @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:2ae5b73069ddd1ef317fe870ee0fb83a387a8959bfd4b7957e6de31d96943681 +size 83215 diff --git a/hyperparameter/m4/tabbyflow/tabbyflow-m4-20260505_003100/tabbyflow_train_meta.json b/hyperparameter/m4/tabbyflow/tabbyflow-m4-20260505_003100/tabbyflow_train_meta.json new file mode 100644 index 0000000000000000000000000000000000000000..21b25de32285bb3de1007eb7cf8b07d73e6ce826 --- /dev/null +++ b/hyperparameter/m4/tabbyflow/tabbyflow-m4-20260505_003100/tabbyflow_train_meta.json @@ -0,0 +1,5 @@ +{ + "exp_name": "adapter_efvfm", + "dataname": "pipeline_m4", + "steps": 200 +} \ No newline at end of file diff --git a/hyperparameter/m4/tabbyflow/tabbyflow-m4-20260505_003100/tabular_bundle/pipeline_m4/X_cat_test.npy b/hyperparameter/m4/tabbyflow/tabbyflow-m4-20260505_003100/tabular_bundle/pipeline_m4/X_cat_test.npy new file mode 100644 index 0000000000000000000000000000000000000000..2f6b8b23f5768174aab4879e2a30371e9a3d0ead --- /dev/null +++ b/hyperparameter/m4/tabbyflow/tabbyflow-m4-20260505_003100/tabular_bundle/pipeline_m4/X_cat_test.npy @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:c91af7ac26382e392a70536d3dbb592c04ba5e4f495d1e3c364416b9ef704a07 +size 53336 diff --git a/hyperparameter/m4/tabbyflow/tabbyflow-m4-20260505_003100/tabular_bundle/pipeline_m4/X_cat_train.npy b/hyperparameter/m4/tabbyflow/tabbyflow-m4-20260505_003100/tabular_bundle/pipeline_m4/X_cat_train.npy new file mode 100644 index 0000000000000000000000000000000000000000..2f6b8b23f5768174aab4879e2a30371e9a3d0ead --- /dev/null +++ b/hyperparameter/m4/tabbyflow/tabbyflow-m4-20260505_003100/tabular_bundle/pipeline_m4/X_cat_train.npy @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:c91af7ac26382e392a70536d3dbb592c04ba5e4f495d1e3c364416b9ef704a07 +size 53336 diff --git a/hyperparameter/m4/tabbyflow/tabbyflow-m4-20260505_003100/tabular_bundle/pipeline_m4/X_cat_val.npy b/hyperparameter/m4/tabbyflow/tabbyflow-m4-20260505_003100/tabular_bundle/pipeline_m4/X_cat_val.npy new file mode 100644 index 0000000000000000000000000000000000000000..2f6b8b23f5768174aab4879e2a30371e9a3d0ead --- /dev/null +++ b/hyperparameter/m4/tabbyflow/tabbyflow-m4-20260505_003100/tabular_bundle/pipeline_m4/X_cat_val.npy @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:c91af7ac26382e392a70536d3dbb592c04ba5e4f495d1e3c364416b9ef704a07 +size 53336 diff --git a/hyperparameter/m4/tabbyflow/tabbyflow-m4-20260505_003100/tabular_bundle/pipeline_m4/X_num_test.npy b/hyperparameter/m4/tabbyflow/tabbyflow-m4-20260505_003100/tabular_bundle/pipeline_m4/X_num_test.npy new file mode 100644 index 0000000000000000000000000000000000000000..dc149960a879e21fd1aeed7de2419851175627e7 --- /dev/null +++ b/hyperparameter/m4/tabbyflow/tabbyflow-m4-20260505_003100/tabular_bundle/pipeline_m4/X_num_test.npy @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:4a21bd2fd5a226c07d543ddf78616a8edb2d52b51097fc7a5df5b05612267af8 +size 26732 diff --git a/hyperparameter/m4/tabbyflow/tabbyflow-m4-20260505_003100/tabular_bundle/pipeline_m4/X_num_train.npy b/hyperparameter/m4/tabbyflow/tabbyflow-m4-20260505_003100/tabular_bundle/pipeline_m4/X_num_train.npy new file mode 100644 index 0000000000000000000000000000000000000000..dc149960a879e21fd1aeed7de2419851175627e7 --- /dev/null +++ b/hyperparameter/m4/tabbyflow/tabbyflow-m4-20260505_003100/tabular_bundle/pipeline_m4/X_num_train.npy @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:4a21bd2fd5a226c07d543ddf78616a8edb2d52b51097fc7a5df5b05612267af8 +size 26732 diff --git a/hyperparameter/m4/tabbyflow/tabbyflow-m4-20260505_003100/tabular_bundle/pipeline_m4/X_num_val.npy b/hyperparameter/m4/tabbyflow/tabbyflow-m4-20260505_003100/tabular_bundle/pipeline_m4/X_num_val.npy new file mode 100644 index 0000000000000000000000000000000000000000..dc149960a879e21fd1aeed7de2419851175627e7 --- /dev/null +++ b/hyperparameter/m4/tabbyflow/tabbyflow-m4-20260505_003100/tabular_bundle/pipeline_m4/X_num_val.npy @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:4a21bd2fd5a226c07d543ddf78616a8edb2d52b51097fc7a5df5b05612267af8 +size 26732 diff --git a/hyperparameter/m4/tabbyflow/tabbyflow-m4-20260505_003100/tabular_bundle/pipeline_m4/info.json b/hyperparameter/m4/tabbyflow/tabbyflow-m4-20260505_003100/tabular_bundle/pipeline_m4/info.json new file mode 100644 index 0000000000000000000000000000000000000000..1ccad8d2dc3c60feacc99d202a75e21be3afa7b5 --- /dev/null +++ b/hyperparameter/m4/tabbyflow/tabbyflow-m4-20260505_003100/tabular_bundle/pipeline_m4/info.json @@ -0,0 +1,92 @@ +{ + "name": "pipeline_m4", + "task_type": "regression", + "n_num_features": 3, + "n_cat_features": 3, + "train_size": 2217, + "test_num": 2217, + "val_num": 2217, + "train_num": 2217, + "bundle_note": "val/test matrices are train copies (train-only policy; no real held-out rows).", + "num_col_idx": [ + 0, + 1, + 2 + ], + "cat_col_idx": [ + 3, + 4, + 5 + ], + "target_col_idx": [ + 6 + ], + "column_names": [ + "age", + "bmi", + "children", + "sex", + "smoker", + "region", + "charges" + ], + "int_col_idx": [], + "int_columns": [], + "int_col_idx_wrt_num": [], + "metadata": { + "columns": { + "0": { + "sdtype": "numerical", + "computer_representation": "Float" + }, + "1": { + "sdtype": "numerical", + "computer_representation": "Float" + }, + "2": { + "sdtype": "numerical", + "computer_representation": "Float" + }, + "3": { + "sdtype": "categorical" + }, + "4": { + "sdtype": "categorical" + }, + "5": { + "sdtype": "categorical" + }, + "6": { + "sdtype": "numerical", + "computer_representation": "Float" + } + } + }, + "idx_mapping": { + "0": 0, + "1": 1, + "2": 2, + "3": 3, + "4": 4, + "5": 5, + "6": 6 + }, + "inverse_idx_mapping": { + "0": 0, + "1": 1, + "2": 2, + "3": 3, + "4": 4, + "5": 5, + "6": 6 + }, + "idx_name_mapping": { + "0": "age", + "1": "bmi", + "2": "children", + "3": "sex", + "4": "smoker", + "5": "region", + "6": "charges" + } +} \ No newline at end of file diff --git a/hyperparameter/m4/tabbyflow/tabbyflow-m4-20260505_003100/tabular_bundle/pipeline_m4/real.csv b/hyperparameter/m4/tabbyflow/tabbyflow-m4-20260505_003100/tabular_bundle/pipeline_m4/real.csv new file mode 100644 index 0000000000000000000000000000000000000000..85ff7f4464fa73c1d58767739e7b259f9371a55b --- /dev/null +++ b/hyperparameter/m4/tabbyflow/tabbyflow-m4-20260505_003100/tabular_bundle/pipeline_m4/real.csv @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:e031e2816aa79e4e5fab4c7fe470741eb2d287e493d74b9cfda68441799e07fa +size 60773 diff --git a/hyperparameter/m4/tabbyflow/tabbyflow-m4-20260505_003100/tabular_bundle/pipeline_m4/test.csv b/hyperparameter/m4/tabbyflow/tabbyflow-m4-20260505_003100/tabular_bundle/pipeline_m4/test.csv new file mode 100644 index 0000000000000000000000000000000000000000..85ff7f4464fa73c1d58767739e7b259f9371a55b --- /dev/null +++ b/hyperparameter/m4/tabbyflow/tabbyflow-m4-20260505_003100/tabular_bundle/pipeline_m4/test.csv @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:e031e2816aa79e4e5fab4c7fe470741eb2d287e493d74b9cfda68441799e07fa +size 60773 diff --git a/hyperparameter/m4/tabbyflow/tabbyflow-m4-20260505_003100/tabular_bundle/pipeline_m4/val.csv b/hyperparameter/m4/tabbyflow/tabbyflow-m4-20260505_003100/tabular_bundle/pipeline_m4/val.csv new file mode 100644 index 0000000000000000000000000000000000000000..85ff7f4464fa73c1d58767739e7b259f9371a55b --- /dev/null +++ b/hyperparameter/m4/tabbyflow/tabbyflow-m4-20260505_003100/tabular_bundle/pipeline_m4/val.csv @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:e031e2816aa79e4e5fab4c7fe470741eb2d287e493d74b9cfda68441799e07fa +size 60773 diff --git a/hyperparameter/m4/tabbyflow/tabbyflow-m4-20260505_003100/tabular_bundle/pipeline_m4/y_test.npy b/hyperparameter/m4/tabbyflow/tabbyflow-m4-20260505_003100/tabular_bundle/pipeline_m4/y_test.npy new file mode 100644 index 0000000000000000000000000000000000000000..717f965e62bd5595d6df01d1ad7851fc5768dc29 --- /dev/null +++ b/hyperparameter/m4/tabbyflow/tabbyflow-m4-20260505_003100/tabular_bundle/pipeline_m4/y_test.npy @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:0c64fea6ad5ed2f8441ef5212c726195dbf53e1c81298427bddd18eb20e35cf2 +size 8996 diff --git a/hyperparameter/m4/tabbyflow/tabbyflow-m4-20260505_003100/tabular_bundle/pipeline_m4/y_train.npy b/hyperparameter/m4/tabbyflow/tabbyflow-m4-20260505_003100/tabular_bundle/pipeline_m4/y_train.npy new file mode 100644 index 0000000000000000000000000000000000000000..717f965e62bd5595d6df01d1ad7851fc5768dc29 --- /dev/null +++ b/hyperparameter/m4/tabbyflow/tabbyflow-m4-20260505_003100/tabular_bundle/pipeline_m4/y_train.npy @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:0c64fea6ad5ed2f8441ef5212c726195dbf53e1c81298427bddd18eb20e35cf2 +size 8996 diff --git a/hyperparameter/m4/tabbyflow/tabbyflow-m4-20260505_003100/tabular_bundle/pipeline_m4/y_val.npy b/hyperparameter/m4/tabbyflow/tabbyflow-m4-20260505_003100/tabular_bundle/pipeline_m4/y_val.npy new file mode 100644 index 0000000000000000000000000000000000000000..717f965e62bd5595d6df01d1ad7851fc5768dc29 --- /dev/null +++ b/hyperparameter/m4/tabbyflow/tabbyflow-m4-20260505_003100/tabular_bundle/pipeline_m4/y_val.npy @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:0c64fea6ad5ed2f8441ef5212c726195dbf53e1c81298427bddd18eb20e35cf2 +size 8996 diff --git a/hyperparameter/m4/tabbyflow/tabbyflow-m4-20260505_003100/train_20260505_003100.log b/hyperparameter/m4/tabbyflow/tabbyflow-m4-20260505_003100/train_20260505_003100.log new file mode 100644 index 0000000000000000000000000000000000000000..8e14a1a843cac89f950965d5f0b75c3b927cfb7a --- /dev/null +++ b/hyperparameter/m4/tabbyflow/tabbyflow-m4-20260505_003100/train_20260505_003100.log @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:898c3e3a4b1640dbebc34a5ed18fdde07aee68759cd96c0c63be18442e29116e +size 118658 diff --git a/hyperparameter/m4/tabbyflow/tabbyflow-m4-20260505_003507/_tabbyflow_gen.py b/hyperparameter/m4/tabbyflow/tabbyflow-m4-20260505_003507/_tabbyflow_gen.py new file mode 100644 index 0000000000000000000000000000000000000000..d98a7b934607c36eb22a776e92df322a392ddfa1 --- /dev/null +++ b/hyperparameter/m4/tabbyflow/tabbyflow-m4-20260505_003507/_tabbyflow_gen.py @@ -0,0 +1,34 @@ + +import os, shutil, subprocess, sys +root = r"/workspace/ef-vfm" +name = r"pipeline_m4" +src = r"/work/output-Benchmark-trainonly-v1/m4/tabbyflow/tabbyflow-m4-20260505_003507/tabular_bundle/pipeline_m4" +dst_data = os.path.join(root, "data", name) +shutil.rmtree(dst_data, ignore_errors=True) +shutil.copytree(src, dst_data) +dst_syn = os.path.join(root, "synthetic", name) +os.makedirs(dst_syn, exist_ok=True) +for fn in ("real.csv", "test.csv", "val.csv"): + shutil.copy(os.path.join(src, fn), os.path.join(dst_syn, fn)) +os.chdir(root) +os.environ["PYTHONPATH"] = root + os.pathsep + os.environ.get("PYTHONPATH", "") +os.environ.setdefault("EFVFM_SAMPLE_BATCH_SIZE", "128") +subprocess.check_call([ + sys.executable, "main.py", + "--dataname", name, "--mode", "test", "--gpu", "0", + "--no_wandb", "--exp_name", r"adapter_efvfm", + "--ckpt_path", r"/workspace/ef-vfm/ef_vfm/ckpt/pipeline_m4/adapter_efvfm/model_300.pt", + "--num_samples_to_generate", str(int(2217)), +]) +base = os.path.join(root, "ef_vfm", "result", name, r"adapter_efvfm") +best = None +best_t = -1.0 +for r, _, files in os.walk(base): + if "samples.csv" in files: + p = os.path.join(r, "samples.csv") + t = os.path.getmtime(p) + if t > best_t: + best_t, best = t, p +if not best: + raise SystemExit("tabbyflow: no samples.csv in " + base) +shutil.copy(best, r"/work/output-Benchmark-trainonly-v1/m4/tabbyflow/tabbyflow-m4-20260505_003507/tabbyflow-m4-2217-20260505_004055.csv") diff --git a/hyperparameter/m4/tabbyflow/tabbyflow-m4-20260505_003507/_tabbyflow_train.py b/hyperparameter/m4/tabbyflow/tabbyflow-m4-20260505_003507/_tabbyflow_train.py new file mode 100644 index 0000000000000000000000000000000000000000..6218a0f02f6a9586b6b53dd56df0b58092541475 --- /dev/null +++ b/hyperparameter/m4/tabbyflow/tabbyflow-m4-20260505_003507/_tabbyflow_train.py @@ -0,0 +1,24 @@ + +import os, shutil, subprocess, sys +root = r"/workspace/ef-vfm" +name = r"pipeline_m4" +src = r"/work/output-Benchmark-trainonly-v1/m4/tabbyflow/tabbyflow-m4-20260505_003507/tabular_bundle/pipeline_m4" +os.makedirs(os.path.join(root, "data", name), exist_ok=True) +dst_data = os.path.join(root, "data", name) +dst_syn = os.path.join(root, "synthetic", name) +shutil.rmtree(dst_data, ignore_errors=True) +shutil.copytree(src, dst_data) +os.makedirs(dst_syn, exist_ok=True) +for fn in ("real.csv", "test.csv", "val.csv"): + shutil.copy(os.path.join(src, fn), os.path.join(dst_syn, fn)) +os.chdir(root) +os.environ["PYTHONPATH"] = root + os.pathsep + os.environ.get("PYTHONPATH", "") +os.environ["EFVFM_SMOKE_STEPS"] = "300" +os.environ["EFVFM_ADAPTER_TRAIN"] = "1" +os.environ.setdefault("EFVFM_SAMPLE_BATCH_SIZE", "128") +os.environ.setdefault("EFVFM_EVAL_NUM_SAMPLES", "512") +subprocess.check_call([ + sys.executable, "main.py", + "--dataname", name, "--mode", "train", "--gpu", "0", + "--no_wandb", "--exp_name", r"adapter_efvfm", +]) diff --git a/hyperparameter/m4/tabbyflow/tabbyflow-m4-20260505_003507/gen_20260505_004055.log b/hyperparameter/m4/tabbyflow/tabbyflow-m4-20260505_003507/gen_20260505_004055.log new file mode 100644 index 0000000000000000000000000000000000000000..5acce39e217334420d18441f8bb2fd1d2cfb4ffd --- /dev/null +++ b/hyperparameter/m4/tabbyflow/tabbyflow-m4-20260505_003507/gen_20260505_004055.log @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:28b24fc237445e5f99c53a4fd52b4c1d366b66cc7574aae7383cad03c2035040 +size 3570 diff --git a/hyperparameter/m4/tabbyflow/tabbyflow-m4-20260505_003507/input_snapshot.json b/hyperparameter/m4/tabbyflow/tabbyflow-m4-20260505_003507/input_snapshot.json new file mode 100644 index 0000000000000000000000000000000000000000..a8e6cea3720f9c9515d0f6647d3de14221c42d45 --- /dev/null +++ b/hyperparameter/m4/tabbyflow/tabbyflow-m4-20260505_003507/input_snapshot.json @@ -0,0 +1,36 @@ +{ + "dataset_id": "m4", + "model": "tabbyflow", + "inputs": { + "train_csv": { + "path": "/data/jialinzhang/SynthesizePipeline-server/DatasetNew/m4/m4-train.csv", + "exists": true, + "size": 92191, + "sha256": "396b9d409ca21bf4a4cd329bdf5b7796aa0ae6356fa8d89b8eb669b5880b81f1" + }, + "val_csv": { + "path": "/data/jialinzhang/SynthesizePipeline-server/DatasetNew/m4/m4-val.csv", + "exists": true, + "size": 11482, + "sha256": "ee3c247d02f56e1687d03c381e13125d6a3a2a411ac7f202ba8520a4be9f1784" + }, + "test_csv": { + "path": "/data/jialinzhang/SynthesizePipeline-server/DatasetNew/m4/m4-test.csv", + "exists": true, + "size": 11559, + "sha256": "cadb9941124001b8fa7cb1ebae43b70a9ca56294f4df4d3c2f22c164c41757d4" + }, + "profile_json": { + "path": "/data/jialinzhang/SynthesizePipeline-server/DatasetNew/artifacts/data_core/tabular/m4/m4-dataset_profile.json", + "exists": true, + "size": 3336, + "sha256": "83e2764810e4a0e8cdece3a28dbd9134b7c9df6f2e56953e46d024ad2c4e035f" + }, + "contract_json": { + "path": "/data/jialinzhang/SynthesizePipeline-server/DatasetNew/artifacts/data_core/tabular/m4/m4-dataset_contract_v1.json", + "exists": true, + "size": 3810, + "sha256": "c23641b258629a845b164099bd0132886f8f6d0100e990494e0f92540f8987d9" + } + } +} \ No newline at end of file diff --git a/hyperparameter/m4/tabbyflow/tabbyflow-m4-20260505_003507/models_tabbyflow/trained.pt b/hyperparameter/m4/tabbyflow/tabbyflow-m4-20260505_003507/models_tabbyflow/trained.pt new file mode 100644 index 0000000000000000000000000000000000000000..f063a878c470d9d40f79db79881596e1e497dffd --- /dev/null +++ b/hyperparameter/m4/tabbyflow/tabbyflow-m4-20260505_003507/models_tabbyflow/trained.pt @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:adb734fec12f2251befd371dca69e481b19464aded2a6823105a01b4be6ddbe5 +size 40 diff --git a/hyperparameter/m4/tabbyflow/tabbyflow-m4-20260505_003507/public_gate/normalized_schema_snapshot.json b/hyperparameter/m4/tabbyflow/tabbyflow-m4-20260505_003507/public_gate/normalized_schema_snapshot.json new file mode 100644 index 0000000000000000000000000000000000000000..31ed9818686b11907df75e872e4ffbe010330880 --- /dev/null +++ b/hyperparameter/m4/tabbyflow/tabbyflow-m4-20260505_003507/public_gate/normalized_schema_snapshot.json @@ -0,0 +1,147 @@ +{ + "dataset_id": "m4", + "target_column": "charges", + "task_type": "regression", + "columns": [ + { + "name": "age", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 47, + "unique_ratio": 0.0212, + "example_values": [ + "46", + "38", + "19", + "27", + "26" + ] + } + }, + { + "name": "sex", + "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.000902, + "example_values": [ + "female", + "male" + ] + } + }, + { + "name": "bmi", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 538, + "unique_ratio": 0.24267, + "example_values": [ + "23.655", + "19.3", + "30.59", + "32.67", + "29.45" + ] + } + }, + { + "name": "children", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 6, + "unique_ratio": 0.002706, + "example_values": [ + "1", + "0", + "3", + "2", + "5" + ] + } + }, + { + "name": "smoker", + "role": "feature", + "semantic_type": "boolean", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 2, + "unique_ratio": 0.000902, + "example_values": [ + "yes", + "no" + ] + } + }, + { + "name": "region", + "role": "feature", + "semantic_type": "categorical", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 4, + "unique_ratio": 0.001804, + "example_values": [ + "northwest", + "southwest", + "southeast", + "northeast" + ] + } + }, + { + "name": "charges", + "role": "target", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 1281, + "unique_ratio": 0.577808, + "example_values": [ + "21677.28345", + "15820.699", + "1639.5631", + "2497.0383", + "2897.3235" + ] + } + } + ] +} \ No newline at end of file diff --git a/hyperparameter/m4/tabbyflow/tabbyflow-m4-20260505_003507/public_gate/public_gate_report.json b/hyperparameter/m4/tabbyflow/tabbyflow-m4-20260505_003507/public_gate/public_gate_report.json new file mode 100644 index 0000000000000000000000000000000000000000..e7a25408e2574124629ea9437356551e4d6f4790 --- /dev/null +++ b/hyperparameter/m4/tabbyflow/tabbyflow-m4-20260505_003507/public_gate/public_gate_report.json @@ -0,0 +1,37 @@ +{ + "dataset_id": "m4", + "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": "charges", + "task_type": "regression", + "input_splits": { + "train": "/data/jialinzhang/SynthesizePipeline-server/DatasetNew/m4/m4-train.csv", + "val": "/data/jialinzhang/SynthesizePipeline-server/DatasetNew/m4/m4-val.csv", + "test": "/data/jialinzhang/SynthesizePipeline-server/DatasetNew/m4/m4-test.csv" + } +} \ No newline at end of file diff --git a/hyperparameter/m4/tabbyflow/tabbyflow-m4-20260505_003507/public_gate/staged_input_manifest.json b/hyperparameter/m4/tabbyflow/tabbyflow-m4-20260505_003507/public_gate/staged_input_manifest.json new file mode 100644 index 0000000000000000000000000000000000000000..f1a12f4988cdd82545a68c22fa6d2cc4117c9864 --- /dev/null +++ b/hyperparameter/m4/tabbyflow/tabbyflow-m4-20260505_003507/public_gate/staged_input_manifest.json @@ -0,0 +1,152 @@ +{ + "dataset_id": "m4", + "target_column": "charges", + "task_type": "regression", + "train_csv": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/m4/tabbyflow/tabbyflow-m4-20260505_003507/staged/public/train.csv", + "val_csv": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/m4/tabbyflow/tabbyflow-m4-20260505_003507/staged/public/val.csv", + "test_csv": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/m4/tabbyflow/tabbyflow-m4-20260505_003507/staged/public/test.csv", + "features_json": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/m4/tabbyflow/tabbyflow-m4-20260505_003507/staged/public/staged_features.json", + "public_gate_report": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/m4/tabbyflow/tabbyflow-m4-20260505_003507/public_gate/public_gate_report.json", + "column_schema": [ + { + "name": "age", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 47, + "unique_ratio": 0.0212, + "example_values": [ + "46", + "38", + "19", + "27", + "26" + ] + } + }, + { + "name": "sex", + "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.000902, + "example_values": [ + "female", + "male" + ] + } + }, + { + "name": "bmi", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 538, + "unique_ratio": 0.24267, + "example_values": [ + "23.655", + "19.3", + "30.59", + "32.67", + "29.45" + ] + } + }, + { + "name": "children", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 6, + "unique_ratio": 0.002706, + "example_values": [ + "1", + "0", + "3", + "2", + "5" + ] + } + }, + { + "name": "smoker", + "role": "feature", + "semantic_type": "boolean", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 2, + "unique_ratio": 0.000902, + "example_values": [ + "yes", + "no" + ] + } + }, + { + "name": "region", + "role": "feature", + "semantic_type": "categorical", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 4, + "unique_ratio": 0.001804, + "example_values": [ + "northwest", + "southwest", + "southeast", + "northeast" + ] + } + }, + { + "name": "charges", + "role": "target", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 1281, + "unique_ratio": 0.577808, + "example_values": [ + "21677.28345", + "15820.699", + "1639.5631", + "2497.0383", + "2897.3235" + ] + } + } + ] +} \ No newline at end of file diff --git a/hyperparameter/m4/tabbyflow/tabbyflow-m4-20260505_003507/run_config.json b/hyperparameter/m4/tabbyflow/tabbyflow-m4-20260505_003507/run_config.json new file mode 100644 index 0000000000000000000000000000000000000000..97f88166c0e8da30141c86a0f2211c9f9803b813 --- /dev/null +++ b/hyperparameter/m4/tabbyflow/tabbyflow-m4-20260505_003507/run_config.json @@ -0,0 +1,42 @@ +{ + "schema_version": 1, + "recorded_at": "2026-05-05T00:35:07", + "dataset_id": "m4", + "model": "tabbyflow", + "work_dir": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/m4/tabbyflow/tabbyflow-m4-20260505_003507", + "dataset_source_requested": "new", + "dataset_source_resolved": "new", + "cli_args": { + "model": "tabbyflow", + "dataset": "m4", + "dataset_source": "new", + "train": true, + "generate": true, + "num_rows": 0, + "epochs": 300, + "output_dir": null, + "model_dir": null, + "work_dir": null, + "resume": false, + "no_stats": false + }, + "resolved": { + "num_rows": 2217, + "model_path": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/m4/tabbyflow/tabbyflow-m4-20260505_003507/models_tabbyflow/trained.pt", + "output_csv": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/m4/tabbyflow/tabbyflow-m4-20260505_003507/tabbyflow-m4-2217-20260505_004055.csv" + }, + "input_artifacts": { + "public_gate_report": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/m4/tabbyflow/tabbyflow-m4-20260505_003507/public_gate/public_gate_report.json", + "public_manifest": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/m4/tabbyflow/tabbyflow-m4-20260505_003507/public_gate/staged_input_manifest.json", + "model_manifest": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/m4/tabbyflow/tabbyflow-m4-20260505_003507/staged/tabbyflow/model_input_manifest.json", + "train_csv": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/m4/tabbyflow/tabbyflow-m4-20260505_003507/staged/public/train.csv", + "features_json": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/m4/tabbyflow/tabbyflow-m4-20260505_003507/staged/public/staged_features.json", + "target_column": "charges", + "task_type": "regression" + }, + "env_overrides": { + "BENCHMARK_TABBYFLOW_GPUS": "device=0", + "EFVFM_EVAL_NUM_SAMPLES": "1024", + "EFVFM_SAMPLE_BATCH_SIZE": "64" + } +} \ No newline at end of file diff --git a/hyperparameter/m4/tabbyflow/tabbyflow-m4-20260505_003507/runtime_result.json b/hyperparameter/m4/tabbyflow/tabbyflow-m4-20260505_003507/runtime_result.json new file mode 100644 index 0000000000000000000000000000000000000000..db3859202d2d27f52fda10075bec9706b6015859 --- /dev/null +++ b/hyperparameter/m4/tabbyflow/tabbyflow-m4-20260505_003507/runtime_result.json @@ -0,0 +1,27 @@ +{ + "dataset_id": "m4", + "model": "tabbyflow", + "run_id": "tabbyflow-m4-20260505_003507", + "public_gate_status": "pass", + "adapter_ready_status": "pass", + "train_status": "success", + "generate_status": "success", + "reason_code": null, + "reason_detail": null, + "artifacts": { + "synthetic_csv": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/m4/tabbyflow/tabbyflow-m4-20260505_003507/tabbyflow-m4-2217-20260505_004055.csv", + "model_path": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/m4/tabbyflow/tabbyflow-m4-20260505_003507/models_tabbyflow/trained.pt" + }, + "timings": { + "train": { + "started_at": "2026-05-05T00:35:07", + "ended_at": "2026-05-05T00:40:55", + "duration_sec": 347.533 + }, + "generate": { + "started_at": "2026-05-05T00:40:55", + "ended_at": "2026-05-05T00:41:27", + "duration_sec": 32.626 + } + } +} \ No newline at end of file diff --git a/hyperparameter/m4/tabbyflow/tabbyflow-m4-20260505_003507/staged/public/staged_features.json b/hyperparameter/m4/tabbyflow/tabbyflow-m4-20260505_003507/staged/public/staged_features.json new file mode 100644 index 0000000000000000000000000000000000000000..d6acd098c35111f423f3ffff2cfd1754bc5dfebc --- /dev/null +++ b/hyperparameter/m4/tabbyflow/tabbyflow-m4-20260505_003507/staged/public/staged_features.json @@ -0,0 +1,37 @@ +[ + { + "feature_name": "age", + "data_type": "continuous", + "is_target": false + }, + { + "feature_name": "sex", + "data_type": "categorical", + "is_target": false + }, + { + "feature_name": "bmi", + "data_type": "continuous", + "is_target": false + }, + { + "feature_name": "children", + "data_type": "continuous", + "is_target": false + }, + { + "feature_name": "smoker", + "data_type": "binary", + "is_target": false + }, + { + "feature_name": "region", + "data_type": "categorical", + "is_target": false + }, + { + "feature_name": "charges", + "data_type": "continuous", + "is_target": true + } +] \ No newline at end of file diff --git a/hyperparameter/m4/tabbyflow/tabbyflow-m4-20260505_003507/staged/public/test.csv b/hyperparameter/m4/tabbyflow/tabbyflow-m4-20260505_003507/staged/public/test.csv new file mode 100644 index 0000000000000000000000000000000000000000..c88a2e7cfcd715bb421cb56eb078033da45c4dc8 --- /dev/null +++ b/hyperparameter/m4/tabbyflow/tabbyflow-m4-20260505_003507/staged/public/test.csv @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:4c541b677fb2d45c5bc79338eeee9fd8c91484b195a0c2c546c2fbabf113b7ea +size 11298 diff --git a/hyperparameter/m4/tabbyflow/tabbyflow-m4-20260505_003507/staged/public/train.csv b/hyperparameter/m4/tabbyflow/tabbyflow-m4-20260505_003507/staged/public/train.csv new file mode 100644 index 0000000000000000000000000000000000000000..5a05019d786529e0617291766c4fbe016ca01bf5 --- /dev/null +++ b/hyperparameter/m4/tabbyflow/tabbyflow-m4-20260505_003507/staged/public/train.csv @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:614ebfac5f41d6f661aff675fa18c0f933a8d9bcc77ea71b7b2360c2f0155837 +size 90069 diff --git a/hyperparameter/m4/tabbyflow/tabbyflow-m4-20260505_003507/staged/public/val.csv b/hyperparameter/m4/tabbyflow/tabbyflow-m4-20260505_003507/staged/public/val.csv new file mode 100644 index 0000000000000000000000000000000000000000..d78fe5ad1537c437ba9ac2629f2aa60a6c17e708 --- /dev/null +++ b/hyperparameter/m4/tabbyflow/tabbyflow-m4-20260505_003507/staged/public/val.csv @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:e55f5edbe7942ff01630de91a9c70dfbc6445eba76c7b970350364546b67c2d7 +size 11218 diff --git a/hyperparameter/m4/tabbyflow/tabbyflow-m4-20260505_003507/staged/tabbyflow/adapter_report.json b/hyperparameter/m4/tabbyflow/tabbyflow-m4-20260505_003507/staged/tabbyflow/adapter_report.json new file mode 100644 index 0000000000000000000000000000000000000000..6e466374fafbcb4fc9ec0e266a8a88f51bd918b0 --- /dev/null +++ b/hyperparameter/m4/tabbyflow/tabbyflow-m4-20260505_003507/staged/tabbyflow/adapter_report.json @@ -0,0 +1,7 @@ +{ + "adapter_ready_status": "pass", + "adapter_fail_reason_code": null, + "adapter_fail_detail": null, + "adapter_transforms_applied": [], + "model_input_manifest": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/m4/tabbyflow/tabbyflow-m4-20260505_003507/staged/tabbyflow/model_input_manifest.json" +} \ No newline at end of file diff --git a/hyperparameter/m4/tabbyflow/tabbyflow-m4-20260505_003507/staged/tabbyflow/adapter_transforms_applied.json b/hyperparameter/m4/tabbyflow/tabbyflow-m4-20260505_003507/staged/tabbyflow/adapter_transforms_applied.json new file mode 100644 index 0000000000000000000000000000000000000000..0637a088a01e8ddab3bf3fa98dbe804cbde1a0dc --- /dev/null +++ b/hyperparameter/m4/tabbyflow/tabbyflow-m4-20260505_003507/staged/tabbyflow/adapter_transforms_applied.json @@ -0,0 +1 @@ +[] \ No newline at end of file diff --git a/hyperparameter/m4/tabbyflow/tabbyflow-m4-20260505_003507/staged/tabbyflow/model_input_manifest.json b/hyperparameter/m4/tabbyflow/tabbyflow-m4-20260505_003507/staged/tabbyflow/model_input_manifest.json new file mode 100644 index 0000000000000000000000000000000000000000..2ba5b635c79d39cc983d128b6a81adb8a686a9f8 --- /dev/null +++ b/hyperparameter/m4/tabbyflow/tabbyflow-m4-20260505_003507/staged/tabbyflow/model_input_manifest.json @@ -0,0 +1,154 @@ +{ + "dataset_id": "m4", + "model": "tabbyflow", + "target_column": "charges", + "task_type": "regression", + "column_schema": [ + { + "name": "age", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 47, + "unique_ratio": 0.0212, + "example_values": [ + "46", + "38", + "19", + "27", + "26" + ] + } + }, + { + "name": "sex", + "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.000902, + "example_values": [ + "female", + "male" + ] + } + }, + { + "name": "bmi", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 538, + "unique_ratio": 0.24267, + "example_values": [ + "23.655", + "19.3", + "30.59", + "32.67", + "29.45" + ] + } + }, + { + "name": "children", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 6, + "unique_ratio": 0.002706, + "example_values": [ + "1", + "0", + "3", + "2", + "5" + ] + } + }, + { + "name": "smoker", + "role": "feature", + "semantic_type": "boolean", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 2, + "unique_ratio": 0.000902, + "example_values": [ + "yes", + "no" + ] + } + }, + { + "name": "region", + "role": "feature", + "semantic_type": "categorical", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 4, + "unique_ratio": 0.001804, + "example_values": [ + "northwest", + "southwest", + "southeast", + "northeast" + ] + } + }, + { + "name": "charges", + "role": "target", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 1281, + "unique_ratio": 0.577808, + "example_values": [ + "21677.28345", + "15820.699", + "1639.5631", + "2497.0383", + "2897.3235" + ] + } + } + ], + "public_manifest": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/m4/tabbyflow/tabbyflow-m4-20260505_003507/public_gate/staged_input_manifest.json", + "train_csv": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/m4/tabbyflow/tabbyflow-m4-20260505_003507/staged/public/train.csv", + "val_csv": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/m4/tabbyflow/tabbyflow-m4-20260505_003507/staged/public/val.csv", + "test_csv": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/m4/tabbyflow/tabbyflow-m4-20260505_003507/staged/public/test.csv", + "features_json": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/m4/tabbyflow/tabbyflow-m4-20260505_003507/staged/public/staged_features.json", + "public_gate_report": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/m4/tabbyflow/tabbyflow-m4-20260505_003507/public_gate/public_gate_report.json" +} \ No newline at end of file diff --git a/hyperparameter/m4/tabbyflow/tabbyflow-m4-20260505_003507/tabbyflow-m4-2217-20260505_004055.csv b/hyperparameter/m4/tabbyflow/tabbyflow-m4-20260505_003507/tabbyflow-m4-2217-20260505_004055.csv new file mode 100644 index 0000000000000000000000000000000000000000..bab0bc1307125c194a6fdd3410bcf3cf533a7073 --- /dev/null +++ b/hyperparameter/m4/tabbyflow/tabbyflow-m4-20260505_003507/tabbyflow-m4-2217-20260505_004055.csv @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:2de44868a429b14068c2127e73ae90064103b56cc4310d4197d4adbab1412807 +size 81800 diff --git a/hyperparameter/m4/tabbyflow/tabbyflow-m4-20260505_003507/tabbyflow_train_meta.json b/hyperparameter/m4/tabbyflow/tabbyflow-m4-20260505_003507/tabbyflow_train_meta.json new file mode 100644 index 0000000000000000000000000000000000000000..8b4332a05178491bfd60732d15f03f29e66332c0 --- /dev/null +++ b/hyperparameter/m4/tabbyflow/tabbyflow-m4-20260505_003507/tabbyflow_train_meta.json @@ -0,0 +1,5 @@ +{ + "exp_name": "adapter_efvfm", + "dataname": "pipeline_m4", + "steps": 300 +} \ No newline at end of file diff --git a/hyperparameter/m4/tabbyflow/tabbyflow-m4-20260505_003507/tabular_bundle/pipeline_m4/X_cat_test.npy b/hyperparameter/m4/tabbyflow/tabbyflow-m4-20260505_003507/tabular_bundle/pipeline_m4/X_cat_test.npy new file mode 100644 index 0000000000000000000000000000000000000000..2f6b8b23f5768174aab4879e2a30371e9a3d0ead --- /dev/null +++ b/hyperparameter/m4/tabbyflow/tabbyflow-m4-20260505_003507/tabular_bundle/pipeline_m4/X_cat_test.npy @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:c91af7ac26382e392a70536d3dbb592c04ba5e4f495d1e3c364416b9ef704a07 +size 53336 diff --git a/hyperparameter/m4/tabbyflow/tabbyflow-m4-20260505_003507/tabular_bundle/pipeline_m4/X_cat_train.npy b/hyperparameter/m4/tabbyflow/tabbyflow-m4-20260505_003507/tabular_bundle/pipeline_m4/X_cat_train.npy new file mode 100644 index 0000000000000000000000000000000000000000..2f6b8b23f5768174aab4879e2a30371e9a3d0ead --- /dev/null +++ b/hyperparameter/m4/tabbyflow/tabbyflow-m4-20260505_003507/tabular_bundle/pipeline_m4/X_cat_train.npy @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:c91af7ac26382e392a70536d3dbb592c04ba5e4f495d1e3c364416b9ef704a07 +size 53336 diff --git a/hyperparameter/m4/tabbyflow/tabbyflow-m4-20260505_003507/tabular_bundle/pipeline_m4/X_cat_val.npy b/hyperparameter/m4/tabbyflow/tabbyflow-m4-20260505_003507/tabular_bundle/pipeline_m4/X_cat_val.npy new file mode 100644 index 0000000000000000000000000000000000000000..2f6b8b23f5768174aab4879e2a30371e9a3d0ead --- /dev/null +++ b/hyperparameter/m4/tabbyflow/tabbyflow-m4-20260505_003507/tabular_bundle/pipeline_m4/X_cat_val.npy @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:c91af7ac26382e392a70536d3dbb592c04ba5e4f495d1e3c364416b9ef704a07 +size 53336 diff --git a/hyperparameter/m4/tabbyflow/tabbyflow-m4-20260505_003507/tabular_bundle/pipeline_m4/X_num_test.npy b/hyperparameter/m4/tabbyflow/tabbyflow-m4-20260505_003507/tabular_bundle/pipeline_m4/X_num_test.npy new file mode 100644 index 0000000000000000000000000000000000000000..dc149960a879e21fd1aeed7de2419851175627e7 --- /dev/null +++ b/hyperparameter/m4/tabbyflow/tabbyflow-m4-20260505_003507/tabular_bundle/pipeline_m4/X_num_test.npy @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:4a21bd2fd5a226c07d543ddf78616a8edb2d52b51097fc7a5df5b05612267af8 +size 26732 diff --git a/hyperparameter/m4/tabbyflow/tabbyflow-m4-20260505_003507/tabular_bundle/pipeline_m4/X_num_train.npy b/hyperparameter/m4/tabbyflow/tabbyflow-m4-20260505_003507/tabular_bundle/pipeline_m4/X_num_train.npy new file mode 100644 index 0000000000000000000000000000000000000000..dc149960a879e21fd1aeed7de2419851175627e7 --- /dev/null +++ b/hyperparameter/m4/tabbyflow/tabbyflow-m4-20260505_003507/tabular_bundle/pipeline_m4/X_num_train.npy @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:4a21bd2fd5a226c07d543ddf78616a8edb2d52b51097fc7a5df5b05612267af8 +size 26732 diff --git a/hyperparameter/m4/tabbyflow/tabbyflow-m4-20260505_003507/tabular_bundle/pipeline_m4/X_num_val.npy b/hyperparameter/m4/tabbyflow/tabbyflow-m4-20260505_003507/tabular_bundle/pipeline_m4/X_num_val.npy new file mode 100644 index 0000000000000000000000000000000000000000..dc149960a879e21fd1aeed7de2419851175627e7 --- /dev/null +++ b/hyperparameter/m4/tabbyflow/tabbyflow-m4-20260505_003507/tabular_bundle/pipeline_m4/X_num_val.npy @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:4a21bd2fd5a226c07d543ddf78616a8edb2d52b51097fc7a5df5b05612267af8 +size 26732 diff --git a/hyperparameter/m4/tabbyflow/tabbyflow-m4-20260505_003507/tabular_bundle/pipeline_m4/info.json b/hyperparameter/m4/tabbyflow/tabbyflow-m4-20260505_003507/tabular_bundle/pipeline_m4/info.json new file mode 100644 index 0000000000000000000000000000000000000000..1ccad8d2dc3c60feacc99d202a75e21be3afa7b5 --- /dev/null +++ b/hyperparameter/m4/tabbyflow/tabbyflow-m4-20260505_003507/tabular_bundle/pipeline_m4/info.json @@ -0,0 +1,92 @@ +{ + "name": "pipeline_m4", + "task_type": "regression", + "n_num_features": 3, + "n_cat_features": 3, + "train_size": 2217, + "test_num": 2217, + "val_num": 2217, + "train_num": 2217, + "bundle_note": "val/test matrices are train copies (train-only policy; no real held-out rows).", + "num_col_idx": [ + 0, + 1, + 2 + ], + "cat_col_idx": [ + 3, + 4, + 5 + ], + "target_col_idx": [ + 6 + ], + "column_names": [ + "age", + "bmi", + "children", + "sex", + "smoker", + "region", + "charges" + ], + "int_col_idx": [], + "int_columns": [], + "int_col_idx_wrt_num": [], + "metadata": { + "columns": { + "0": { + "sdtype": "numerical", + "computer_representation": "Float" + }, + "1": { + "sdtype": "numerical", + "computer_representation": "Float" + }, + "2": { + "sdtype": "numerical", + "computer_representation": "Float" + }, + "3": { + "sdtype": "categorical" + }, + "4": { + "sdtype": "categorical" + }, + "5": { + "sdtype": "categorical" + }, + "6": { + "sdtype": "numerical", + "computer_representation": "Float" + } + } + }, + "idx_mapping": { + "0": 0, + "1": 1, + "2": 2, + "3": 3, + "4": 4, + "5": 5, + "6": 6 + }, + "inverse_idx_mapping": { + "0": 0, + "1": 1, + "2": 2, + "3": 3, + "4": 4, + "5": 5, + "6": 6 + }, + "idx_name_mapping": { + "0": "age", + "1": "bmi", + "2": "children", + "3": "sex", + "4": "smoker", + "5": "region", + "6": "charges" + } +} \ No newline at end of file diff --git a/hyperparameter/m4/tabbyflow/tabbyflow-m4-20260505_003507/tabular_bundle/pipeline_m4/real.csv b/hyperparameter/m4/tabbyflow/tabbyflow-m4-20260505_003507/tabular_bundle/pipeline_m4/real.csv new file mode 100644 index 0000000000000000000000000000000000000000..85ff7f4464fa73c1d58767739e7b259f9371a55b --- /dev/null +++ b/hyperparameter/m4/tabbyflow/tabbyflow-m4-20260505_003507/tabular_bundle/pipeline_m4/real.csv @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:e031e2816aa79e4e5fab4c7fe470741eb2d287e493d74b9cfda68441799e07fa +size 60773 diff --git a/hyperparameter/m4/tabbyflow/tabbyflow-m4-20260505_003507/tabular_bundle/pipeline_m4/test.csv b/hyperparameter/m4/tabbyflow/tabbyflow-m4-20260505_003507/tabular_bundle/pipeline_m4/test.csv new file mode 100644 index 0000000000000000000000000000000000000000..85ff7f4464fa73c1d58767739e7b259f9371a55b --- /dev/null +++ b/hyperparameter/m4/tabbyflow/tabbyflow-m4-20260505_003507/tabular_bundle/pipeline_m4/test.csv @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:e031e2816aa79e4e5fab4c7fe470741eb2d287e493d74b9cfda68441799e07fa +size 60773 diff --git a/hyperparameter/m4/tabbyflow/tabbyflow-m4-20260505_003507/tabular_bundle/pipeline_m4/val.csv b/hyperparameter/m4/tabbyflow/tabbyflow-m4-20260505_003507/tabular_bundle/pipeline_m4/val.csv new file mode 100644 index 0000000000000000000000000000000000000000..85ff7f4464fa73c1d58767739e7b259f9371a55b --- /dev/null +++ b/hyperparameter/m4/tabbyflow/tabbyflow-m4-20260505_003507/tabular_bundle/pipeline_m4/val.csv @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:e031e2816aa79e4e5fab4c7fe470741eb2d287e493d74b9cfda68441799e07fa +size 60773 diff --git a/hyperparameter/m4/tabbyflow/tabbyflow-m4-20260505_003507/tabular_bundle/pipeline_m4/y_test.npy b/hyperparameter/m4/tabbyflow/tabbyflow-m4-20260505_003507/tabular_bundle/pipeline_m4/y_test.npy new file mode 100644 index 0000000000000000000000000000000000000000..717f965e62bd5595d6df01d1ad7851fc5768dc29 --- /dev/null +++ b/hyperparameter/m4/tabbyflow/tabbyflow-m4-20260505_003507/tabular_bundle/pipeline_m4/y_test.npy @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:0c64fea6ad5ed2f8441ef5212c726195dbf53e1c81298427bddd18eb20e35cf2 +size 8996 diff --git a/hyperparameter/m4/tabbyflow/tabbyflow-m4-20260505_003507/tabular_bundle/pipeline_m4/y_train.npy b/hyperparameter/m4/tabbyflow/tabbyflow-m4-20260505_003507/tabular_bundle/pipeline_m4/y_train.npy new file mode 100644 index 0000000000000000000000000000000000000000..717f965e62bd5595d6df01d1ad7851fc5768dc29 --- /dev/null +++ b/hyperparameter/m4/tabbyflow/tabbyflow-m4-20260505_003507/tabular_bundle/pipeline_m4/y_train.npy @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:0c64fea6ad5ed2f8441ef5212c726195dbf53e1c81298427bddd18eb20e35cf2 +size 8996 diff --git a/hyperparameter/m4/tabbyflow/tabbyflow-m4-20260505_003507/tabular_bundle/pipeline_m4/y_val.npy b/hyperparameter/m4/tabbyflow/tabbyflow-m4-20260505_003507/tabular_bundle/pipeline_m4/y_val.npy new file mode 100644 index 0000000000000000000000000000000000000000..717f965e62bd5595d6df01d1ad7851fc5768dc29 --- /dev/null +++ b/hyperparameter/m4/tabbyflow/tabbyflow-m4-20260505_003507/tabular_bundle/pipeline_m4/y_val.npy @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:0c64fea6ad5ed2f8441ef5212c726195dbf53e1c81298427bddd18eb20e35cf2 +size 8996 diff --git a/hyperparameter/m4/tabbyflow/tabbyflow-m4-20260505_003507/train_20260505_003507.log b/hyperparameter/m4/tabbyflow/tabbyflow-m4-20260505_003507/train_20260505_003507.log new file mode 100644 index 0000000000000000000000000000000000000000..358eb5a5f809a43b67d92aa2bb96e13d9b27c7b2 --- /dev/null +++ b/hyperparameter/m4/tabbyflow/tabbyflow-m4-20260505_003507/train_20260505_003507.log @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:122258462ca0fae1bcc8be8b190c967fb45b08711adfcb7b5e7484469df41ae5 +size 175285 diff --git a/hyperparameter/m4/tabbyflow/tabbyflow-m4-20260505_004140/_tabbyflow_gen.py b/hyperparameter/m4/tabbyflow/tabbyflow-m4-20260505_004140/_tabbyflow_gen.py new file mode 100644 index 0000000000000000000000000000000000000000..7dd97c79924138f6493c400d2c382e6d72f7aca0 --- /dev/null +++ b/hyperparameter/m4/tabbyflow/tabbyflow-m4-20260505_004140/_tabbyflow_gen.py @@ -0,0 +1,34 @@ + +import os, shutil, subprocess, sys +root = r"/workspace/ef-vfm" +name = r"pipeline_m4" +src = r"/work/output-Benchmark-trainonly-v1/m4/tabbyflow/tabbyflow-m4-20260505_004140/tabular_bundle/pipeline_m4" +dst_data = os.path.join(root, "data", name) +shutil.rmtree(dst_data, ignore_errors=True) +shutil.copytree(src, dst_data) +dst_syn = os.path.join(root, "synthetic", name) +os.makedirs(dst_syn, exist_ok=True) +for fn in ("real.csv", "test.csv", "val.csv"): + shutil.copy(os.path.join(src, fn), os.path.join(dst_syn, fn)) +os.chdir(root) +os.environ["PYTHONPATH"] = root + os.pathsep + os.environ.get("PYTHONPATH", "") +os.environ.setdefault("EFVFM_SAMPLE_BATCH_SIZE", "128") +subprocess.check_call([ + sys.executable, "main.py", + "--dataname", name, "--mode", "test", "--gpu", "0", + "--no_wandb", "--exp_name", r"adapter_efvfm", + "--ckpt_path", r"/workspace/ef-vfm/ef_vfm/ckpt/pipeline_m4/adapter_efvfm/model_500.pt", + "--num_samples_to_generate", str(int(2217)), +]) +base = os.path.join(root, "ef_vfm", "result", name, r"adapter_efvfm") +best = None +best_t = -1.0 +for r, _, files in os.walk(base): + if "samples.csv" in files: + p = os.path.join(r, "samples.csv") + t = os.path.getmtime(p) + if t > best_t: + best_t, best = t, p +if not best: + raise SystemExit("tabbyflow: no samples.csv in " + base) +shutil.copy(best, r"/work/output-Benchmark-trainonly-v1/m4/tabbyflow/tabbyflow-m4-20260505_004140/tabbyflow-m4-2217-20260505_005022.csv") diff --git a/hyperparameter/m4/tabbyflow/tabbyflow-m4-20260505_004140/_tabbyflow_train.py b/hyperparameter/m4/tabbyflow/tabbyflow-m4-20260505_004140/_tabbyflow_train.py new file mode 100644 index 0000000000000000000000000000000000000000..fd64179df4109c651c643ca1e269b10fb088abad --- /dev/null +++ b/hyperparameter/m4/tabbyflow/tabbyflow-m4-20260505_004140/_tabbyflow_train.py @@ -0,0 +1,24 @@ + +import os, shutil, subprocess, sys +root = r"/workspace/ef-vfm" +name = r"pipeline_m4" +src = r"/work/output-Benchmark-trainonly-v1/m4/tabbyflow/tabbyflow-m4-20260505_004140/tabular_bundle/pipeline_m4" +os.makedirs(os.path.join(root, "data", name), exist_ok=True) +dst_data = os.path.join(root, "data", name) +dst_syn = os.path.join(root, "synthetic", name) +shutil.rmtree(dst_data, ignore_errors=True) +shutil.copytree(src, dst_data) +os.makedirs(dst_syn, exist_ok=True) +for fn in ("real.csv", "test.csv", "val.csv"): + shutil.copy(os.path.join(src, fn), os.path.join(dst_syn, fn)) +os.chdir(root) +os.environ["PYTHONPATH"] = root + os.pathsep + os.environ.get("PYTHONPATH", "") +os.environ["EFVFM_SMOKE_STEPS"] = "500" +os.environ["EFVFM_ADAPTER_TRAIN"] = "1" +os.environ.setdefault("EFVFM_SAMPLE_BATCH_SIZE", "128") +os.environ.setdefault("EFVFM_EVAL_NUM_SAMPLES", "512") +subprocess.check_call([ + sys.executable, "main.py", + "--dataname", name, "--mode", "train", "--gpu", "0", + "--no_wandb", "--exp_name", r"adapter_efvfm", +]) diff --git a/hyperparameter/m4/tabbyflow/tabbyflow-m4-20260505_004140/gen_20260505_005022.log b/hyperparameter/m4/tabbyflow/tabbyflow-m4-20260505_004140/gen_20260505_005022.log new file mode 100644 index 0000000000000000000000000000000000000000..a6000f9d107b71b160fb0476f2593fb39560d869 --- /dev/null +++ b/hyperparameter/m4/tabbyflow/tabbyflow-m4-20260505_004140/gen_20260505_005022.log @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:f866bc890d2f98868a950f6cb999cbbd0ad2c49d7d2efca56308e79bd2217521 +size 3571 diff --git a/hyperparameter/m4/tabbyflow/tabbyflow-m4-20260505_004140/input_snapshot.json b/hyperparameter/m4/tabbyflow/tabbyflow-m4-20260505_004140/input_snapshot.json new file mode 100644 index 0000000000000000000000000000000000000000..a8e6cea3720f9c9515d0f6647d3de14221c42d45 --- /dev/null +++ b/hyperparameter/m4/tabbyflow/tabbyflow-m4-20260505_004140/input_snapshot.json @@ -0,0 +1,36 @@ +{ + "dataset_id": "m4", + "model": "tabbyflow", + "inputs": { + "train_csv": { + "path": "/data/jialinzhang/SynthesizePipeline-server/DatasetNew/m4/m4-train.csv", + "exists": true, + "size": 92191, + "sha256": "396b9d409ca21bf4a4cd329bdf5b7796aa0ae6356fa8d89b8eb669b5880b81f1" + }, + "val_csv": { + "path": "/data/jialinzhang/SynthesizePipeline-server/DatasetNew/m4/m4-val.csv", + "exists": true, + "size": 11482, + "sha256": "ee3c247d02f56e1687d03c381e13125d6a3a2a411ac7f202ba8520a4be9f1784" + }, + "test_csv": { + "path": "/data/jialinzhang/SynthesizePipeline-server/DatasetNew/m4/m4-test.csv", + "exists": true, + "size": 11559, + "sha256": "cadb9941124001b8fa7cb1ebae43b70a9ca56294f4df4d3c2f22c164c41757d4" + }, + "profile_json": { + "path": "/data/jialinzhang/SynthesizePipeline-server/DatasetNew/artifacts/data_core/tabular/m4/m4-dataset_profile.json", + "exists": true, + "size": 3336, + "sha256": "83e2764810e4a0e8cdece3a28dbd9134b7c9df6f2e56953e46d024ad2c4e035f" + }, + "contract_json": { + "path": "/data/jialinzhang/SynthesizePipeline-server/DatasetNew/artifacts/data_core/tabular/m4/m4-dataset_contract_v1.json", + "exists": true, + "size": 3810, + "sha256": "c23641b258629a845b164099bd0132886f8f6d0100e990494e0f92540f8987d9" + } + } +} \ No newline at end of file diff --git a/hyperparameter/m4/tabbyflow/tabbyflow-m4-20260505_004140/models_tabbyflow/trained.pt b/hyperparameter/m4/tabbyflow/tabbyflow-m4-20260505_004140/models_tabbyflow/trained.pt new file mode 100644 index 0000000000000000000000000000000000000000..f063a878c470d9d40f79db79881596e1e497dffd --- /dev/null +++ b/hyperparameter/m4/tabbyflow/tabbyflow-m4-20260505_004140/models_tabbyflow/trained.pt @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:adb734fec12f2251befd371dca69e481b19464aded2a6823105a01b4be6ddbe5 +size 40 diff --git a/hyperparameter/m4/tabbyflow/tabbyflow-m4-20260505_004140/public_gate/normalized_schema_snapshot.json b/hyperparameter/m4/tabbyflow/tabbyflow-m4-20260505_004140/public_gate/normalized_schema_snapshot.json new file mode 100644 index 0000000000000000000000000000000000000000..31ed9818686b11907df75e872e4ffbe010330880 --- /dev/null +++ b/hyperparameter/m4/tabbyflow/tabbyflow-m4-20260505_004140/public_gate/normalized_schema_snapshot.json @@ -0,0 +1,147 @@ +{ + "dataset_id": "m4", + "target_column": "charges", + "task_type": "regression", + "columns": [ + { + "name": "age", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 47, + "unique_ratio": 0.0212, + "example_values": [ + "46", + "38", + "19", + "27", + "26" + ] + } + }, + { + "name": "sex", + "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.000902, + "example_values": [ + "female", + "male" + ] + } + }, + { + "name": "bmi", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 538, + "unique_ratio": 0.24267, + "example_values": [ + "23.655", + "19.3", + "30.59", + "32.67", + "29.45" + ] + } + }, + { + "name": "children", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 6, + "unique_ratio": 0.002706, + "example_values": [ + "1", + "0", + "3", + "2", + "5" + ] + } + }, + { + "name": "smoker", + "role": "feature", + "semantic_type": "boolean", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 2, + "unique_ratio": 0.000902, + "example_values": [ + "yes", + "no" + ] + } + }, + { + "name": "region", + "role": "feature", + "semantic_type": "categorical", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 4, + "unique_ratio": 0.001804, + "example_values": [ + "northwest", + "southwest", + "southeast", + "northeast" + ] + } + }, + { + "name": "charges", + "role": "target", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 1281, + "unique_ratio": 0.577808, + "example_values": [ + "21677.28345", + "15820.699", + "1639.5631", + "2497.0383", + "2897.3235" + ] + } + } + ] +} \ No newline at end of file diff --git a/hyperparameter/m4/tabbyflow/tabbyflow-m4-20260505_004140/public_gate/public_gate_report.json b/hyperparameter/m4/tabbyflow/tabbyflow-m4-20260505_004140/public_gate/public_gate_report.json new file mode 100644 index 0000000000000000000000000000000000000000..e7a25408e2574124629ea9437356551e4d6f4790 --- /dev/null +++ b/hyperparameter/m4/tabbyflow/tabbyflow-m4-20260505_004140/public_gate/public_gate_report.json @@ -0,0 +1,37 @@ +{ + "dataset_id": "m4", + "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": "charges", + "task_type": "regression", + "input_splits": { + "train": "/data/jialinzhang/SynthesizePipeline-server/DatasetNew/m4/m4-train.csv", + "val": "/data/jialinzhang/SynthesizePipeline-server/DatasetNew/m4/m4-val.csv", + "test": "/data/jialinzhang/SynthesizePipeline-server/DatasetNew/m4/m4-test.csv" + } +} \ No newline at end of file diff --git a/hyperparameter/m4/tabbyflow/tabbyflow-m4-20260505_004140/public_gate/staged_input_manifest.json b/hyperparameter/m4/tabbyflow/tabbyflow-m4-20260505_004140/public_gate/staged_input_manifest.json new file mode 100644 index 0000000000000000000000000000000000000000..c03ee1118256d1cfef2acb1a6d2d120ff85c8a70 --- /dev/null +++ b/hyperparameter/m4/tabbyflow/tabbyflow-m4-20260505_004140/public_gate/staged_input_manifest.json @@ -0,0 +1,152 @@ +{ + "dataset_id": "m4", + "target_column": "charges", + "task_type": "regression", + "train_csv": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/m4/tabbyflow/tabbyflow-m4-20260505_004140/staged/public/train.csv", + "val_csv": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/m4/tabbyflow/tabbyflow-m4-20260505_004140/staged/public/val.csv", + "test_csv": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/m4/tabbyflow/tabbyflow-m4-20260505_004140/staged/public/test.csv", + "features_json": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/m4/tabbyflow/tabbyflow-m4-20260505_004140/staged/public/staged_features.json", + "public_gate_report": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/m4/tabbyflow/tabbyflow-m4-20260505_004140/public_gate/public_gate_report.json", + "column_schema": [ + { + "name": "age", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 47, + "unique_ratio": 0.0212, + "example_values": [ + "46", + "38", + "19", + "27", + "26" + ] + } + }, + { + "name": "sex", + "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.000902, + "example_values": [ + "female", + "male" + ] + } + }, + { + "name": "bmi", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 538, + "unique_ratio": 0.24267, + "example_values": [ + "23.655", + "19.3", + "30.59", + "32.67", + "29.45" + ] + } + }, + { + "name": "children", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 6, + "unique_ratio": 0.002706, + "example_values": [ + "1", + "0", + "3", + "2", + "5" + ] + } + }, + { + "name": "smoker", + "role": "feature", + "semantic_type": "boolean", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 2, + "unique_ratio": 0.000902, + "example_values": [ + "yes", + "no" + ] + } + }, + { + "name": "region", + "role": "feature", + "semantic_type": "categorical", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 4, + "unique_ratio": 0.001804, + "example_values": [ + "northwest", + "southwest", + "southeast", + "northeast" + ] + } + }, + { + "name": "charges", + "role": "target", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 1281, + "unique_ratio": 0.577808, + "example_values": [ + "21677.28345", + "15820.699", + "1639.5631", + "2497.0383", + "2897.3235" + ] + } + } + ] +} \ No newline at end of file diff --git a/hyperparameter/m4/tabbyflow/tabbyflow-m4-20260505_004140/run_config.json b/hyperparameter/m4/tabbyflow/tabbyflow-m4-20260505_004140/run_config.json new file mode 100644 index 0000000000000000000000000000000000000000..44aca604a5963600edef8a9a87ffa8b4f9a0d8df --- /dev/null +++ b/hyperparameter/m4/tabbyflow/tabbyflow-m4-20260505_004140/run_config.json @@ -0,0 +1,42 @@ +{ + "schema_version": 1, + "recorded_at": "2026-05-05T00:41:40", + "dataset_id": "m4", + "model": "tabbyflow", + "work_dir": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/m4/tabbyflow/tabbyflow-m4-20260505_004140", + "dataset_source_requested": "new", + "dataset_source_resolved": "new", + "cli_args": { + "model": "tabbyflow", + "dataset": "m4", + "dataset_source": "new", + "train": true, + "generate": true, + "num_rows": 0, + "epochs": 500, + "output_dir": null, + "model_dir": null, + "work_dir": null, + "resume": false, + "no_stats": false + }, + "resolved": { + "num_rows": 2217, + "model_path": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/m4/tabbyflow/tabbyflow-m4-20260505_004140/models_tabbyflow/trained.pt", + "output_csv": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/m4/tabbyflow/tabbyflow-m4-20260505_004140/tabbyflow-m4-2217-20260505_005022.csv" + }, + "input_artifacts": { + "public_gate_report": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/m4/tabbyflow/tabbyflow-m4-20260505_004140/public_gate/public_gate_report.json", + "public_manifest": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/m4/tabbyflow/tabbyflow-m4-20260505_004140/public_gate/staged_input_manifest.json", + "model_manifest": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/m4/tabbyflow/tabbyflow-m4-20260505_004140/staged/tabbyflow/model_input_manifest.json", + "train_csv": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/m4/tabbyflow/tabbyflow-m4-20260505_004140/staged/public/train.csv", + "features_json": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/m4/tabbyflow/tabbyflow-m4-20260505_004140/staged/public/staged_features.json", + "target_column": "charges", + "task_type": "regression" + }, + "env_overrides": { + "BENCHMARK_TABBYFLOW_GPUS": "device=0", + "EFVFM_EVAL_NUM_SAMPLES": "1024", + "EFVFM_SAMPLE_BATCH_SIZE": "128" + } +} \ No newline at end of file diff --git a/hyperparameter/m4/tabbyflow/tabbyflow-m4-20260505_004140/runtime_result.json b/hyperparameter/m4/tabbyflow/tabbyflow-m4-20260505_004140/runtime_result.json new file mode 100644 index 0000000000000000000000000000000000000000..705d219339dc69dab53d3c07089e6fa6db3f5e3e --- /dev/null +++ b/hyperparameter/m4/tabbyflow/tabbyflow-m4-20260505_004140/runtime_result.json @@ -0,0 +1,27 @@ +{ + "dataset_id": "m4", + "model": "tabbyflow", + "run_id": "tabbyflow-m4-20260505_004140", + "public_gate_status": "pass", + "adapter_ready_status": "pass", + "train_status": "success", + "generate_status": "success", + "reason_code": null, + "reason_detail": null, + "artifacts": { + "synthetic_csv": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/m4/tabbyflow/tabbyflow-m4-20260505_004140/tabbyflow-m4-2217-20260505_005022.csv", + "model_path": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/m4/tabbyflow/tabbyflow-m4-20260505_004140/models_tabbyflow/trained.pt" + }, + "timings": { + "train": { + "started_at": "2026-05-05T00:41:40", + "ended_at": "2026-05-05T00:50:22", + "duration_sec": 521.111 + }, + "generate": { + "started_at": "2026-05-05T00:50:22", + "ended_at": "2026-05-05T00:50:42", + "duration_sec": 20.85 + } + } +} \ No newline at end of file diff --git a/hyperparameter/m4/tabbyflow/tabbyflow-m4-20260505_004140/staged/public/staged_features.json b/hyperparameter/m4/tabbyflow/tabbyflow-m4-20260505_004140/staged/public/staged_features.json new file mode 100644 index 0000000000000000000000000000000000000000..d6acd098c35111f423f3ffff2cfd1754bc5dfebc --- /dev/null +++ b/hyperparameter/m4/tabbyflow/tabbyflow-m4-20260505_004140/staged/public/staged_features.json @@ -0,0 +1,37 @@ +[ + { + "feature_name": "age", + "data_type": "continuous", + "is_target": false + }, + { + "feature_name": "sex", + "data_type": "categorical", + "is_target": false + }, + { + "feature_name": "bmi", + "data_type": "continuous", + "is_target": false + }, + { + "feature_name": "children", + "data_type": "continuous", + "is_target": false + }, + { + "feature_name": "smoker", + "data_type": "binary", + "is_target": false + }, + { + "feature_name": "region", + "data_type": "categorical", + "is_target": false + }, + { + "feature_name": "charges", + "data_type": "continuous", + "is_target": true + } +] \ No newline at end of file diff --git a/hyperparameter/m4/tabbyflow/tabbyflow-m4-20260505_004140/staged/public/test.csv b/hyperparameter/m4/tabbyflow/tabbyflow-m4-20260505_004140/staged/public/test.csv new file mode 100644 index 0000000000000000000000000000000000000000..c88a2e7cfcd715bb421cb56eb078033da45c4dc8 --- /dev/null +++ b/hyperparameter/m4/tabbyflow/tabbyflow-m4-20260505_004140/staged/public/test.csv @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:4c541b677fb2d45c5bc79338eeee9fd8c91484b195a0c2c546c2fbabf113b7ea +size 11298 diff --git a/hyperparameter/m4/tabbyflow/tabbyflow-m4-20260505_004140/staged/public/train.csv b/hyperparameter/m4/tabbyflow/tabbyflow-m4-20260505_004140/staged/public/train.csv new file mode 100644 index 0000000000000000000000000000000000000000..5a05019d786529e0617291766c4fbe016ca01bf5 --- /dev/null +++ b/hyperparameter/m4/tabbyflow/tabbyflow-m4-20260505_004140/staged/public/train.csv @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:614ebfac5f41d6f661aff675fa18c0f933a8d9bcc77ea71b7b2360c2f0155837 +size 90069 diff --git a/hyperparameter/m4/tabbyflow/tabbyflow-m4-20260505_004140/staged/public/val.csv b/hyperparameter/m4/tabbyflow/tabbyflow-m4-20260505_004140/staged/public/val.csv new file mode 100644 index 0000000000000000000000000000000000000000..d78fe5ad1537c437ba9ac2629f2aa60a6c17e708 --- /dev/null +++ b/hyperparameter/m4/tabbyflow/tabbyflow-m4-20260505_004140/staged/public/val.csv @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:e55f5edbe7942ff01630de91a9c70dfbc6445eba76c7b970350364546b67c2d7 +size 11218 diff --git a/hyperparameter/m4/tabbyflow/tabbyflow-m4-20260505_004140/staged/tabbyflow/adapter_report.json b/hyperparameter/m4/tabbyflow/tabbyflow-m4-20260505_004140/staged/tabbyflow/adapter_report.json new file mode 100644 index 0000000000000000000000000000000000000000..2381cae934f7fa92e1af475365dff89c5b34ec9e --- /dev/null +++ b/hyperparameter/m4/tabbyflow/tabbyflow-m4-20260505_004140/staged/tabbyflow/adapter_report.json @@ -0,0 +1,7 @@ +{ + "adapter_ready_status": "pass", + "adapter_fail_reason_code": null, + "adapter_fail_detail": null, + "adapter_transforms_applied": [], + "model_input_manifest": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/m4/tabbyflow/tabbyflow-m4-20260505_004140/staged/tabbyflow/model_input_manifest.json" +} \ No newline at end of file diff --git a/hyperparameter/m4/tabbyflow/tabbyflow-m4-20260505_004140/staged/tabbyflow/adapter_transforms_applied.json b/hyperparameter/m4/tabbyflow/tabbyflow-m4-20260505_004140/staged/tabbyflow/adapter_transforms_applied.json new file mode 100644 index 0000000000000000000000000000000000000000..0637a088a01e8ddab3bf3fa98dbe804cbde1a0dc --- /dev/null +++ b/hyperparameter/m4/tabbyflow/tabbyflow-m4-20260505_004140/staged/tabbyflow/adapter_transforms_applied.json @@ -0,0 +1 @@ +[] \ No newline at end of file diff --git a/hyperparameter/m4/tabbyflow/tabbyflow-m4-20260505_004140/staged/tabbyflow/model_input_manifest.json b/hyperparameter/m4/tabbyflow/tabbyflow-m4-20260505_004140/staged/tabbyflow/model_input_manifest.json new file mode 100644 index 0000000000000000000000000000000000000000..9de2797f84db02304870633fc9a6dbc03fdcbcc3 --- /dev/null +++ b/hyperparameter/m4/tabbyflow/tabbyflow-m4-20260505_004140/staged/tabbyflow/model_input_manifest.json @@ -0,0 +1,154 @@ +{ + "dataset_id": "m4", + "model": "tabbyflow", + "target_column": "charges", + "task_type": "regression", + "column_schema": [ + { + "name": "age", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 47, + "unique_ratio": 0.0212, + "example_values": [ + "46", + "38", + "19", + "27", + "26" + ] + } + }, + { + "name": "sex", + "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.000902, + "example_values": [ + "female", + "male" + ] + } + }, + { + "name": "bmi", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 538, + "unique_ratio": 0.24267, + "example_values": [ + "23.655", + "19.3", + "30.59", + "32.67", + "29.45" + ] + } + }, + { + "name": "children", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 6, + "unique_ratio": 0.002706, + "example_values": [ + "1", + "0", + "3", + "2", + "5" + ] + } + }, + { + "name": "smoker", + "role": "feature", + "semantic_type": "boolean", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 2, + "unique_ratio": 0.000902, + "example_values": [ + "yes", + "no" + ] + } + }, + { + "name": "region", + "role": "feature", + "semantic_type": "categorical", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 4, + "unique_ratio": 0.001804, + "example_values": [ + "northwest", + "southwest", + "southeast", + "northeast" + ] + } + }, + { + "name": "charges", + "role": "target", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 1281, + "unique_ratio": 0.577808, + "example_values": [ + "21677.28345", + "15820.699", + "1639.5631", + "2497.0383", + "2897.3235" + ] + } + } + ], + "public_manifest": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/m4/tabbyflow/tabbyflow-m4-20260505_004140/public_gate/staged_input_manifest.json", + "train_csv": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/m4/tabbyflow/tabbyflow-m4-20260505_004140/staged/public/train.csv", + "val_csv": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/m4/tabbyflow/tabbyflow-m4-20260505_004140/staged/public/val.csv", + "test_csv": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/m4/tabbyflow/tabbyflow-m4-20260505_004140/staged/public/test.csv", + "features_json": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/m4/tabbyflow/tabbyflow-m4-20260505_004140/staged/public/staged_features.json", + "public_gate_report": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/m4/tabbyflow/tabbyflow-m4-20260505_004140/public_gate/public_gate_report.json" +} \ No newline at end of file diff --git a/hyperparameter/m4/tabbyflow/tabbyflow-m4-20260505_004140/tabbyflow-m4-2217-20260505_005022.csv b/hyperparameter/m4/tabbyflow/tabbyflow-m4-20260505_004140/tabbyflow-m4-2217-20260505_005022.csv new file mode 100644 index 0000000000000000000000000000000000000000..6faad532933d392c881e81045ec6fdeb4ddb7b14 --- /dev/null +++ b/hyperparameter/m4/tabbyflow/tabbyflow-m4-20260505_004140/tabbyflow-m4-2217-20260505_005022.csv @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:02fc757b0d94afc5a051368f9a7fda29399fbfe857b2ba8df9fae815ec70037b +size 83331 diff --git a/hyperparameter/m4/tabbyflow/tabbyflow-m4-20260505_004140/tabbyflow_train_meta.json b/hyperparameter/m4/tabbyflow/tabbyflow-m4-20260505_004140/tabbyflow_train_meta.json new file mode 100644 index 0000000000000000000000000000000000000000..8d3a617aae8500a09e05fd3d4514b0ab7eca0ac3 --- /dev/null +++ b/hyperparameter/m4/tabbyflow/tabbyflow-m4-20260505_004140/tabbyflow_train_meta.json @@ -0,0 +1,5 @@ +{ + "exp_name": "adapter_efvfm", + "dataname": "pipeline_m4", + "steps": 500 +} \ No newline at end of file diff --git a/hyperparameter/m4/tabbyflow/tabbyflow-m4-20260505_004140/tabular_bundle/pipeline_m4/X_cat_test.npy b/hyperparameter/m4/tabbyflow/tabbyflow-m4-20260505_004140/tabular_bundle/pipeline_m4/X_cat_test.npy new file mode 100644 index 0000000000000000000000000000000000000000..2f6b8b23f5768174aab4879e2a30371e9a3d0ead --- /dev/null +++ b/hyperparameter/m4/tabbyflow/tabbyflow-m4-20260505_004140/tabular_bundle/pipeline_m4/X_cat_test.npy @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:c91af7ac26382e392a70536d3dbb592c04ba5e4f495d1e3c364416b9ef704a07 +size 53336 diff --git a/hyperparameter/m4/tabbyflow/tabbyflow-m4-20260505_004140/tabular_bundle/pipeline_m4/X_cat_train.npy b/hyperparameter/m4/tabbyflow/tabbyflow-m4-20260505_004140/tabular_bundle/pipeline_m4/X_cat_train.npy new file mode 100644 index 0000000000000000000000000000000000000000..2f6b8b23f5768174aab4879e2a30371e9a3d0ead --- /dev/null +++ b/hyperparameter/m4/tabbyflow/tabbyflow-m4-20260505_004140/tabular_bundle/pipeline_m4/X_cat_train.npy @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:c91af7ac26382e392a70536d3dbb592c04ba5e4f495d1e3c364416b9ef704a07 +size 53336 diff --git a/hyperparameter/m4/tabbyflow/tabbyflow-m4-20260505_004140/tabular_bundle/pipeline_m4/X_cat_val.npy b/hyperparameter/m4/tabbyflow/tabbyflow-m4-20260505_004140/tabular_bundle/pipeline_m4/X_cat_val.npy new file mode 100644 index 0000000000000000000000000000000000000000..2f6b8b23f5768174aab4879e2a30371e9a3d0ead --- /dev/null +++ b/hyperparameter/m4/tabbyflow/tabbyflow-m4-20260505_004140/tabular_bundle/pipeline_m4/X_cat_val.npy @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:c91af7ac26382e392a70536d3dbb592c04ba5e4f495d1e3c364416b9ef704a07 +size 53336 diff --git a/hyperparameter/m4/tabbyflow/tabbyflow-m4-20260505_004140/tabular_bundle/pipeline_m4/X_num_test.npy b/hyperparameter/m4/tabbyflow/tabbyflow-m4-20260505_004140/tabular_bundle/pipeline_m4/X_num_test.npy new file mode 100644 index 0000000000000000000000000000000000000000..dc149960a879e21fd1aeed7de2419851175627e7 --- /dev/null +++ b/hyperparameter/m4/tabbyflow/tabbyflow-m4-20260505_004140/tabular_bundle/pipeline_m4/X_num_test.npy @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:4a21bd2fd5a226c07d543ddf78616a8edb2d52b51097fc7a5df5b05612267af8 +size 26732 diff --git a/hyperparameter/m4/tabbyflow/tabbyflow-m4-20260505_004140/tabular_bundle/pipeline_m4/X_num_train.npy b/hyperparameter/m4/tabbyflow/tabbyflow-m4-20260505_004140/tabular_bundle/pipeline_m4/X_num_train.npy new file mode 100644 index 0000000000000000000000000000000000000000..dc149960a879e21fd1aeed7de2419851175627e7 --- /dev/null +++ b/hyperparameter/m4/tabbyflow/tabbyflow-m4-20260505_004140/tabular_bundle/pipeline_m4/X_num_train.npy @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:4a21bd2fd5a226c07d543ddf78616a8edb2d52b51097fc7a5df5b05612267af8 +size 26732 diff --git a/hyperparameter/m4/tabbyflow/tabbyflow-m4-20260505_004140/tabular_bundle/pipeline_m4/X_num_val.npy b/hyperparameter/m4/tabbyflow/tabbyflow-m4-20260505_004140/tabular_bundle/pipeline_m4/X_num_val.npy new file mode 100644 index 0000000000000000000000000000000000000000..dc149960a879e21fd1aeed7de2419851175627e7 --- /dev/null +++ b/hyperparameter/m4/tabbyflow/tabbyflow-m4-20260505_004140/tabular_bundle/pipeline_m4/X_num_val.npy @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:4a21bd2fd5a226c07d543ddf78616a8edb2d52b51097fc7a5df5b05612267af8 +size 26732 diff --git a/hyperparameter/m4/tabbyflow/tabbyflow-m4-20260505_004140/tabular_bundle/pipeline_m4/info.json b/hyperparameter/m4/tabbyflow/tabbyflow-m4-20260505_004140/tabular_bundle/pipeline_m4/info.json new file mode 100644 index 0000000000000000000000000000000000000000..1ccad8d2dc3c60feacc99d202a75e21be3afa7b5 --- /dev/null +++ b/hyperparameter/m4/tabbyflow/tabbyflow-m4-20260505_004140/tabular_bundle/pipeline_m4/info.json @@ -0,0 +1,92 @@ +{ + "name": "pipeline_m4", + "task_type": "regression", + "n_num_features": 3, + "n_cat_features": 3, + "train_size": 2217, + "test_num": 2217, + "val_num": 2217, + "train_num": 2217, + "bundle_note": "val/test matrices are train copies (train-only policy; no real held-out rows).", + "num_col_idx": [ + 0, + 1, + 2 + ], + "cat_col_idx": [ + 3, + 4, + 5 + ], + "target_col_idx": [ + 6 + ], + "column_names": [ + "age", + "bmi", + "children", + "sex", + "smoker", + "region", + "charges" + ], + "int_col_idx": [], + "int_columns": [], + "int_col_idx_wrt_num": [], + "metadata": { + "columns": { + "0": { + "sdtype": "numerical", + "computer_representation": "Float" + }, + "1": { + "sdtype": "numerical", + "computer_representation": "Float" + }, + "2": { + "sdtype": "numerical", + "computer_representation": "Float" + }, + "3": { + "sdtype": "categorical" + }, + "4": { + "sdtype": "categorical" + }, + "5": { + "sdtype": "categorical" + }, + "6": { + "sdtype": "numerical", + "computer_representation": "Float" + } + } + }, + "idx_mapping": { + "0": 0, + "1": 1, + "2": 2, + "3": 3, + "4": 4, + "5": 5, + "6": 6 + }, + "inverse_idx_mapping": { + "0": 0, + "1": 1, + "2": 2, + "3": 3, + "4": 4, + "5": 5, + "6": 6 + }, + "idx_name_mapping": { + "0": "age", + "1": "bmi", + "2": "children", + "3": "sex", + "4": "smoker", + "5": "region", + "6": "charges" + } +} \ No newline at end of file diff --git a/hyperparameter/m4/tabbyflow/tabbyflow-m4-20260505_004140/tabular_bundle/pipeline_m4/real.csv b/hyperparameter/m4/tabbyflow/tabbyflow-m4-20260505_004140/tabular_bundle/pipeline_m4/real.csv new file mode 100644 index 0000000000000000000000000000000000000000..85ff7f4464fa73c1d58767739e7b259f9371a55b --- /dev/null +++ b/hyperparameter/m4/tabbyflow/tabbyflow-m4-20260505_004140/tabular_bundle/pipeline_m4/real.csv @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:e031e2816aa79e4e5fab4c7fe470741eb2d287e493d74b9cfda68441799e07fa +size 60773 diff --git a/hyperparameter/m4/tabbyflow/tabbyflow-m4-20260505_004140/tabular_bundle/pipeline_m4/test.csv b/hyperparameter/m4/tabbyflow/tabbyflow-m4-20260505_004140/tabular_bundle/pipeline_m4/test.csv new file mode 100644 index 0000000000000000000000000000000000000000..85ff7f4464fa73c1d58767739e7b259f9371a55b --- /dev/null +++ b/hyperparameter/m4/tabbyflow/tabbyflow-m4-20260505_004140/tabular_bundle/pipeline_m4/test.csv @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:e031e2816aa79e4e5fab4c7fe470741eb2d287e493d74b9cfda68441799e07fa +size 60773 diff --git a/hyperparameter/m4/tabbyflow/tabbyflow-m4-20260505_004140/tabular_bundle/pipeline_m4/val.csv b/hyperparameter/m4/tabbyflow/tabbyflow-m4-20260505_004140/tabular_bundle/pipeline_m4/val.csv new file mode 100644 index 0000000000000000000000000000000000000000..85ff7f4464fa73c1d58767739e7b259f9371a55b --- /dev/null +++ b/hyperparameter/m4/tabbyflow/tabbyflow-m4-20260505_004140/tabular_bundle/pipeline_m4/val.csv @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:e031e2816aa79e4e5fab4c7fe470741eb2d287e493d74b9cfda68441799e07fa +size 60773 diff --git a/hyperparameter/m4/tabbyflow/tabbyflow-m4-20260505_004140/tabular_bundle/pipeline_m4/y_test.npy b/hyperparameter/m4/tabbyflow/tabbyflow-m4-20260505_004140/tabular_bundle/pipeline_m4/y_test.npy new file mode 100644 index 0000000000000000000000000000000000000000..717f965e62bd5595d6df01d1ad7851fc5768dc29 --- /dev/null +++ b/hyperparameter/m4/tabbyflow/tabbyflow-m4-20260505_004140/tabular_bundle/pipeline_m4/y_test.npy @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:0c64fea6ad5ed2f8441ef5212c726195dbf53e1c81298427bddd18eb20e35cf2 +size 8996 diff --git a/hyperparameter/m4/tabbyflow/tabbyflow-m4-20260505_004140/tabular_bundle/pipeline_m4/y_train.npy b/hyperparameter/m4/tabbyflow/tabbyflow-m4-20260505_004140/tabular_bundle/pipeline_m4/y_train.npy new file mode 100644 index 0000000000000000000000000000000000000000..717f965e62bd5595d6df01d1ad7851fc5768dc29 --- /dev/null +++ b/hyperparameter/m4/tabbyflow/tabbyflow-m4-20260505_004140/tabular_bundle/pipeline_m4/y_train.npy @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:0c64fea6ad5ed2f8441ef5212c726195dbf53e1c81298427bddd18eb20e35cf2 +size 8996 diff --git a/hyperparameter/m4/tabbyflow/tabbyflow-m4-20260505_004140/tabular_bundle/pipeline_m4/y_val.npy b/hyperparameter/m4/tabbyflow/tabbyflow-m4-20260505_004140/tabular_bundle/pipeline_m4/y_val.npy new file mode 100644 index 0000000000000000000000000000000000000000..717f965e62bd5595d6df01d1ad7851fc5768dc29 --- /dev/null +++ b/hyperparameter/m4/tabbyflow/tabbyflow-m4-20260505_004140/tabular_bundle/pipeline_m4/y_val.npy @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:0c64fea6ad5ed2f8441ef5212c726195dbf53e1c81298427bddd18eb20e35cf2 +size 8996 diff --git a/hyperparameter/m4/tabbyflow/tabbyflow-m4-20260505_004140/train_20260505_004140.log b/hyperparameter/m4/tabbyflow/tabbyflow-m4-20260505_004140/train_20260505_004140.log new file mode 100644 index 0000000000000000000000000000000000000000..93b1ba296e7fa6498dfa77c4dc5af577ad966cb7 --- /dev/null +++ b/hyperparameter/m4/tabbyflow/tabbyflow-m4-20260505_004140/train_20260505_004140.log @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:1e17a74a6b23db3de74288dd7956ea0bbfa918690b3302d4d700b80be6897bf3 +size 288287 diff --git a/hyperparameter/m4/tabbyflow/tabbyflow-m4-20260505_005055/_tabbyflow_gen.py b/hyperparameter/m4/tabbyflow/tabbyflow-m4-20260505_005055/_tabbyflow_gen.py new file mode 100644 index 0000000000000000000000000000000000000000..770507a8abd7485b410f385791c66ad771517811 --- /dev/null +++ b/hyperparameter/m4/tabbyflow/tabbyflow-m4-20260505_005055/_tabbyflow_gen.py @@ -0,0 +1,34 @@ + +import os, shutil, subprocess, sys +root = r"/workspace/ef-vfm" +name = r"pipeline_m4" +src = r"/work/output-Benchmark-trainonly-v1/m4/tabbyflow/tabbyflow-m4-20260505_005055/tabular_bundle/pipeline_m4" +dst_data = os.path.join(root, "data", name) +shutil.rmtree(dst_data, ignore_errors=True) +shutil.copytree(src, dst_data) +dst_syn = os.path.join(root, "synthetic", name) +os.makedirs(dst_syn, exist_ok=True) +for fn in ("real.csv", "test.csv", "val.csv"): + shutil.copy(os.path.join(src, fn), os.path.join(dst_syn, fn)) +os.chdir(root) +os.environ["PYTHONPATH"] = root + os.pathsep + os.environ.get("PYTHONPATH", "") +os.environ.setdefault("EFVFM_SAMPLE_BATCH_SIZE", "128") +subprocess.check_call([ + sys.executable, "main.py", + "--dataname", name, "--mode", "test", "--gpu", "0", + "--no_wandb", "--exp_name", r"adapter_efvfm", + "--ckpt_path", r"/workspace/ef-vfm/ef_vfm/ckpt/pipeline_m4/adapter_efvfm/model_700.pt", + "--num_samples_to_generate", str(int(2217)), +]) +base = os.path.join(root, "ef_vfm", "result", name, r"adapter_efvfm") +best = None +best_t = -1.0 +for r, _, files in os.walk(base): + if "samples.csv" in files: + p = os.path.join(r, "samples.csv") + t = os.path.getmtime(p) + if t > best_t: + best_t, best = t, p +if not best: + raise SystemExit("tabbyflow: no samples.csv in " + base) +shutil.copy(best, r"/work/output-Benchmark-trainonly-v1/m4/tabbyflow/tabbyflow-m4-20260505_005055/tabbyflow-m4-2217-20260505_010225.csv") diff --git a/hyperparameter/m4/tabbyflow/tabbyflow-m4-20260505_005055/_tabbyflow_train.py b/hyperparameter/m4/tabbyflow/tabbyflow-m4-20260505_005055/_tabbyflow_train.py new file mode 100644 index 0000000000000000000000000000000000000000..0ccdd159ae1979542da4684eb4dd6c46d57bcbe9 --- /dev/null +++ b/hyperparameter/m4/tabbyflow/tabbyflow-m4-20260505_005055/_tabbyflow_train.py @@ -0,0 +1,24 @@ + +import os, shutil, subprocess, sys +root = r"/workspace/ef-vfm" +name = r"pipeline_m4" +src = r"/work/output-Benchmark-trainonly-v1/m4/tabbyflow/tabbyflow-m4-20260505_005055/tabular_bundle/pipeline_m4" +os.makedirs(os.path.join(root, "data", name), exist_ok=True) +dst_data = os.path.join(root, "data", name) +dst_syn = os.path.join(root, "synthetic", name) +shutil.rmtree(dst_data, ignore_errors=True) +shutil.copytree(src, dst_data) +os.makedirs(dst_syn, exist_ok=True) +for fn in ("real.csv", "test.csv", "val.csv"): + shutil.copy(os.path.join(src, fn), os.path.join(dst_syn, fn)) +os.chdir(root) +os.environ["PYTHONPATH"] = root + os.pathsep + os.environ.get("PYTHONPATH", "") +os.environ["EFVFM_SMOKE_STEPS"] = "700" +os.environ["EFVFM_ADAPTER_TRAIN"] = "1" +os.environ.setdefault("EFVFM_SAMPLE_BATCH_SIZE", "128") +os.environ.setdefault("EFVFM_EVAL_NUM_SAMPLES", "512") +subprocess.check_call([ + sys.executable, "main.py", + "--dataname", name, "--mode", "train", "--gpu", "0", + "--no_wandb", "--exp_name", r"adapter_efvfm", +]) diff --git a/hyperparameter/m4/tabbyflow/tabbyflow-m4-20260505_005055/gen_20260505_010225.log b/hyperparameter/m4/tabbyflow/tabbyflow-m4-20260505_005055/gen_20260505_010225.log new file mode 100644 index 0000000000000000000000000000000000000000..902609bac9a81482caad0884657c812ddda54f4a --- /dev/null +++ b/hyperparameter/m4/tabbyflow/tabbyflow-m4-20260505_005055/gen_20260505_010225.log @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:56844fc5cc51695c0d9b3fb2374ed0c7477d0ff694ab291546050190ed5e305c +size 3571 diff --git a/hyperparameter/m4/tabbyflow/tabbyflow-m4-20260505_005055/input_snapshot.json b/hyperparameter/m4/tabbyflow/tabbyflow-m4-20260505_005055/input_snapshot.json new file mode 100644 index 0000000000000000000000000000000000000000..a8e6cea3720f9c9515d0f6647d3de14221c42d45 --- /dev/null +++ b/hyperparameter/m4/tabbyflow/tabbyflow-m4-20260505_005055/input_snapshot.json @@ -0,0 +1,36 @@ +{ + "dataset_id": "m4", + "model": "tabbyflow", + "inputs": { + "train_csv": { + "path": "/data/jialinzhang/SynthesizePipeline-server/DatasetNew/m4/m4-train.csv", + "exists": true, + "size": 92191, + "sha256": "396b9d409ca21bf4a4cd329bdf5b7796aa0ae6356fa8d89b8eb669b5880b81f1" + }, + "val_csv": { + "path": "/data/jialinzhang/SynthesizePipeline-server/DatasetNew/m4/m4-val.csv", + "exists": true, + "size": 11482, + "sha256": "ee3c247d02f56e1687d03c381e13125d6a3a2a411ac7f202ba8520a4be9f1784" + }, + "test_csv": { + "path": "/data/jialinzhang/SynthesizePipeline-server/DatasetNew/m4/m4-test.csv", + "exists": true, + "size": 11559, + "sha256": "cadb9941124001b8fa7cb1ebae43b70a9ca56294f4df4d3c2f22c164c41757d4" + }, + "profile_json": { + "path": "/data/jialinzhang/SynthesizePipeline-server/DatasetNew/artifacts/data_core/tabular/m4/m4-dataset_profile.json", + "exists": true, + "size": 3336, + "sha256": "83e2764810e4a0e8cdece3a28dbd9134b7c9df6f2e56953e46d024ad2c4e035f" + }, + "contract_json": { + "path": "/data/jialinzhang/SynthesizePipeline-server/DatasetNew/artifacts/data_core/tabular/m4/m4-dataset_contract_v1.json", + "exists": true, + "size": 3810, + "sha256": "c23641b258629a845b164099bd0132886f8f6d0100e990494e0f92540f8987d9" + } + } +} \ No newline at end of file diff --git a/hyperparameter/m4/tabbyflow/tabbyflow-m4-20260505_005055/models_tabbyflow/trained.pt b/hyperparameter/m4/tabbyflow/tabbyflow-m4-20260505_005055/models_tabbyflow/trained.pt new file mode 100644 index 0000000000000000000000000000000000000000..f063a878c470d9d40f79db79881596e1e497dffd --- /dev/null +++ b/hyperparameter/m4/tabbyflow/tabbyflow-m4-20260505_005055/models_tabbyflow/trained.pt @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:adb734fec12f2251befd371dca69e481b19464aded2a6823105a01b4be6ddbe5 +size 40 diff --git a/hyperparameter/m4/tabbyflow/tabbyflow-m4-20260505_005055/public_gate/normalized_schema_snapshot.json b/hyperparameter/m4/tabbyflow/tabbyflow-m4-20260505_005055/public_gate/normalized_schema_snapshot.json new file mode 100644 index 0000000000000000000000000000000000000000..31ed9818686b11907df75e872e4ffbe010330880 --- /dev/null +++ b/hyperparameter/m4/tabbyflow/tabbyflow-m4-20260505_005055/public_gate/normalized_schema_snapshot.json @@ -0,0 +1,147 @@ +{ + "dataset_id": "m4", + "target_column": "charges", + "task_type": "regression", + "columns": [ + { + "name": "age", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 47, + "unique_ratio": 0.0212, + "example_values": [ + "46", + "38", + "19", + "27", + "26" + ] + } + }, + { + "name": "sex", + "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.000902, + "example_values": [ + "female", + "male" + ] + } + }, + { + "name": "bmi", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 538, + "unique_ratio": 0.24267, + "example_values": [ + "23.655", + "19.3", + "30.59", + "32.67", + "29.45" + ] + } + }, + { + "name": "children", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 6, + "unique_ratio": 0.002706, + "example_values": [ + "1", + "0", + "3", + "2", + "5" + ] + } + }, + { + "name": "smoker", + "role": "feature", + "semantic_type": "boolean", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 2, + "unique_ratio": 0.000902, + "example_values": [ + "yes", + "no" + ] + } + }, + { + "name": "region", + "role": "feature", + "semantic_type": "categorical", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 4, + "unique_ratio": 0.001804, + "example_values": [ + "northwest", + "southwest", + "southeast", + "northeast" + ] + } + }, + { + "name": "charges", + "role": "target", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 1281, + "unique_ratio": 0.577808, + "example_values": [ + "21677.28345", + "15820.699", + "1639.5631", + "2497.0383", + "2897.3235" + ] + } + } + ] +} \ No newline at end of file diff --git a/hyperparameter/m4/tabbyflow/tabbyflow-m4-20260505_005055/public_gate/public_gate_report.json b/hyperparameter/m4/tabbyflow/tabbyflow-m4-20260505_005055/public_gate/public_gate_report.json new file mode 100644 index 0000000000000000000000000000000000000000..e7a25408e2574124629ea9437356551e4d6f4790 --- /dev/null +++ b/hyperparameter/m4/tabbyflow/tabbyflow-m4-20260505_005055/public_gate/public_gate_report.json @@ -0,0 +1,37 @@ +{ + "dataset_id": "m4", + "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": "charges", + "task_type": "regression", + "input_splits": { + "train": "/data/jialinzhang/SynthesizePipeline-server/DatasetNew/m4/m4-train.csv", + "val": "/data/jialinzhang/SynthesizePipeline-server/DatasetNew/m4/m4-val.csv", + "test": "/data/jialinzhang/SynthesizePipeline-server/DatasetNew/m4/m4-test.csv" + } +} \ No newline at end of file diff --git a/hyperparameter/m4/tabbyflow/tabbyflow-m4-20260505_005055/public_gate/staged_input_manifest.json b/hyperparameter/m4/tabbyflow/tabbyflow-m4-20260505_005055/public_gate/staged_input_manifest.json new file mode 100644 index 0000000000000000000000000000000000000000..697717017bbe17790b8292a1b1b8812414c2cbb6 --- /dev/null +++ b/hyperparameter/m4/tabbyflow/tabbyflow-m4-20260505_005055/public_gate/staged_input_manifest.json @@ -0,0 +1,152 @@ +{ + "dataset_id": "m4", + "target_column": "charges", + "task_type": "regression", + "train_csv": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/m4/tabbyflow/tabbyflow-m4-20260505_005055/staged/public/train.csv", + "val_csv": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/m4/tabbyflow/tabbyflow-m4-20260505_005055/staged/public/val.csv", + "test_csv": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/m4/tabbyflow/tabbyflow-m4-20260505_005055/staged/public/test.csv", + "features_json": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/m4/tabbyflow/tabbyflow-m4-20260505_005055/staged/public/staged_features.json", + "public_gate_report": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/m4/tabbyflow/tabbyflow-m4-20260505_005055/public_gate/public_gate_report.json", + "column_schema": [ + { + "name": "age", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 47, + "unique_ratio": 0.0212, + "example_values": [ + "46", + "38", + "19", + "27", + "26" + ] + } + }, + { + "name": "sex", + "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.000902, + "example_values": [ + "female", + "male" + ] + } + }, + { + "name": "bmi", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 538, + "unique_ratio": 0.24267, + "example_values": [ + "23.655", + "19.3", + "30.59", + "32.67", + "29.45" + ] + } + }, + { + "name": "children", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 6, + "unique_ratio": 0.002706, + "example_values": [ + "1", + "0", + "3", + "2", + "5" + ] + } + }, + { + "name": "smoker", + "role": "feature", + "semantic_type": "boolean", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 2, + "unique_ratio": 0.000902, + "example_values": [ + "yes", + "no" + ] + } + }, + { + "name": "region", + "role": "feature", + "semantic_type": "categorical", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 4, + "unique_ratio": 0.001804, + "example_values": [ + "northwest", + "southwest", + "southeast", + "northeast" + ] + } + }, + { + "name": "charges", + "role": "target", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 1281, + "unique_ratio": 0.577808, + "example_values": [ + "21677.28345", + "15820.699", + "1639.5631", + "2497.0383", + "2897.3235" + ] + } + } + ] +} \ No newline at end of file diff --git a/hyperparameter/m4/tabbyflow/tabbyflow-m4-20260505_005055/run_config.json b/hyperparameter/m4/tabbyflow/tabbyflow-m4-20260505_005055/run_config.json new file mode 100644 index 0000000000000000000000000000000000000000..fa3ba06f0303782ad71a5ed9b09e515cf19b9b17 --- /dev/null +++ b/hyperparameter/m4/tabbyflow/tabbyflow-m4-20260505_005055/run_config.json @@ -0,0 +1,42 @@ +{ + "schema_version": 1, + "recorded_at": "2026-05-05T00:50:55", + "dataset_id": "m4", + "model": "tabbyflow", + "work_dir": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/m4/tabbyflow/tabbyflow-m4-20260505_005055", + "dataset_source_requested": "new", + "dataset_source_resolved": "new", + "cli_args": { + "model": "tabbyflow", + "dataset": "m4", + "dataset_source": "new", + "train": true, + "generate": true, + "num_rows": 0, + "epochs": 700, + "output_dir": null, + "model_dir": null, + "work_dir": null, + "resume": false, + "no_stats": false + }, + "resolved": { + "num_rows": 2217, + "model_path": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/m4/tabbyflow/tabbyflow-m4-20260505_005055/models_tabbyflow/trained.pt", + "output_csv": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/m4/tabbyflow/tabbyflow-m4-20260505_005055/tabbyflow-m4-2217-20260505_010225.csv" + }, + "input_artifacts": { + "public_gate_report": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/m4/tabbyflow/tabbyflow-m4-20260505_005055/public_gate/public_gate_report.json", + "public_manifest": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/m4/tabbyflow/tabbyflow-m4-20260505_005055/public_gate/staged_input_manifest.json", + "model_manifest": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/m4/tabbyflow/tabbyflow-m4-20260505_005055/staged/tabbyflow/model_input_manifest.json", + "train_csv": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/m4/tabbyflow/tabbyflow-m4-20260505_005055/staged/public/train.csv", + "features_json": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/m4/tabbyflow/tabbyflow-m4-20260505_005055/staged/public/staged_features.json", + "target_column": "charges", + "task_type": "regression" + }, + "env_overrides": { + "BENCHMARK_TABBYFLOW_GPUS": "device=0", + "EFVFM_EVAL_NUM_SAMPLES": "2048", + "EFVFM_SAMPLE_BATCH_SIZE": "128" + } +} \ No newline at end of file diff --git a/hyperparameter/m4/tabbyflow/tabbyflow-m4-20260505_005055/runtime_result.json b/hyperparameter/m4/tabbyflow/tabbyflow-m4-20260505_005055/runtime_result.json new file mode 100644 index 0000000000000000000000000000000000000000..87e2193b88e9f7f0ef251ecd3adb575d1b650935 --- /dev/null +++ b/hyperparameter/m4/tabbyflow/tabbyflow-m4-20260505_005055/runtime_result.json @@ -0,0 +1,27 @@ +{ + "dataset_id": "m4", + "model": "tabbyflow", + "run_id": "tabbyflow-m4-20260505_005055", + "public_gate_status": "pass", + "adapter_ready_status": "pass", + "train_status": "success", + "generate_status": "success", + "reason_code": null, + "reason_detail": null, + "artifacts": { + "synthetic_csv": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/m4/tabbyflow/tabbyflow-m4-20260505_005055/tabbyflow-m4-2217-20260505_010225.csv", + "model_path": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/m4/tabbyflow/tabbyflow-m4-20260505_005055/models_tabbyflow/trained.pt" + }, + "timings": { + "train": { + "started_at": "2026-05-05T00:50:55", + "ended_at": "2026-05-05T01:02:25", + "duration_sec": 690.227 + }, + "generate": { + "started_at": "2026-05-05T01:02:25", + "ended_at": "2026-05-05T01:02:47", + "duration_sec": 21.739 + } + } +} \ No newline at end of file diff --git a/hyperparameter/m4/tabbyflow/tabbyflow-m4-20260505_005055/staged/public/staged_features.json b/hyperparameter/m4/tabbyflow/tabbyflow-m4-20260505_005055/staged/public/staged_features.json new file mode 100644 index 0000000000000000000000000000000000000000..d6acd098c35111f423f3ffff2cfd1754bc5dfebc --- /dev/null +++ b/hyperparameter/m4/tabbyflow/tabbyflow-m4-20260505_005055/staged/public/staged_features.json @@ -0,0 +1,37 @@ +[ + { + "feature_name": "age", + "data_type": "continuous", + "is_target": false + }, + { + "feature_name": "sex", + "data_type": "categorical", + "is_target": false + }, + { + "feature_name": "bmi", + "data_type": "continuous", + "is_target": false + }, + { + "feature_name": "children", + "data_type": "continuous", + "is_target": false + }, + { + "feature_name": "smoker", + "data_type": "binary", + "is_target": false + }, + { + "feature_name": "region", + "data_type": "categorical", + "is_target": false + }, + { + "feature_name": "charges", + "data_type": "continuous", + "is_target": true + } +] \ No newline at end of file diff --git a/hyperparameter/m4/tabbyflow/tabbyflow-m4-20260505_005055/staged/public/test.csv b/hyperparameter/m4/tabbyflow/tabbyflow-m4-20260505_005055/staged/public/test.csv new file mode 100644 index 0000000000000000000000000000000000000000..c88a2e7cfcd715bb421cb56eb078033da45c4dc8 --- /dev/null +++ b/hyperparameter/m4/tabbyflow/tabbyflow-m4-20260505_005055/staged/public/test.csv @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:4c541b677fb2d45c5bc79338eeee9fd8c91484b195a0c2c546c2fbabf113b7ea +size 11298 diff --git a/hyperparameter/m4/tabbyflow/tabbyflow-m4-20260505_005055/staged/public/train.csv b/hyperparameter/m4/tabbyflow/tabbyflow-m4-20260505_005055/staged/public/train.csv new file mode 100644 index 0000000000000000000000000000000000000000..5a05019d786529e0617291766c4fbe016ca01bf5 --- /dev/null +++ b/hyperparameter/m4/tabbyflow/tabbyflow-m4-20260505_005055/staged/public/train.csv @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:614ebfac5f41d6f661aff675fa18c0f933a8d9bcc77ea71b7b2360c2f0155837 +size 90069 diff --git a/hyperparameter/m4/tabbyflow/tabbyflow-m4-20260505_005055/staged/public/val.csv b/hyperparameter/m4/tabbyflow/tabbyflow-m4-20260505_005055/staged/public/val.csv new file mode 100644 index 0000000000000000000000000000000000000000..d78fe5ad1537c437ba9ac2629f2aa60a6c17e708 --- /dev/null +++ b/hyperparameter/m4/tabbyflow/tabbyflow-m4-20260505_005055/staged/public/val.csv @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:e55f5edbe7942ff01630de91a9c70dfbc6445eba76c7b970350364546b67c2d7 +size 11218 diff --git a/hyperparameter/m4/tabbyflow/tabbyflow-m4-20260505_005055/staged/tabbyflow/adapter_report.json b/hyperparameter/m4/tabbyflow/tabbyflow-m4-20260505_005055/staged/tabbyflow/adapter_report.json new file mode 100644 index 0000000000000000000000000000000000000000..a2b4ba746e7b99ceb1addf6ff422a1764be1047c --- /dev/null +++ b/hyperparameter/m4/tabbyflow/tabbyflow-m4-20260505_005055/staged/tabbyflow/adapter_report.json @@ -0,0 +1,7 @@ +{ + "adapter_ready_status": "pass", + "adapter_fail_reason_code": null, + "adapter_fail_detail": null, + "adapter_transforms_applied": [], + "model_input_manifest": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/m4/tabbyflow/tabbyflow-m4-20260505_005055/staged/tabbyflow/model_input_manifest.json" +} \ No newline at end of file diff --git a/hyperparameter/m4/tabbyflow/tabbyflow-m4-20260505_005055/staged/tabbyflow/adapter_transforms_applied.json b/hyperparameter/m4/tabbyflow/tabbyflow-m4-20260505_005055/staged/tabbyflow/adapter_transforms_applied.json new file mode 100644 index 0000000000000000000000000000000000000000..0637a088a01e8ddab3bf3fa98dbe804cbde1a0dc --- /dev/null +++ b/hyperparameter/m4/tabbyflow/tabbyflow-m4-20260505_005055/staged/tabbyflow/adapter_transforms_applied.json @@ -0,0 +1 @@ +[] \ No newline at end of file diff --git a/hyperparameter/m4/tabbyflow/tabbyflow-m4-20260505_005055/staged/tabbyflow/model_input_manifest.json b/hyperparameter/m4/tabbyflow/tabbyflow-m4-20260505_005055/staged/tabbyflow/model_input_manifest.json new file mode 100644 index 0000000000000000000000000000000000000000..23569a9d28b2affccfc1da47fedfb9007e12957c --- /dev/null +++ b/hyperparameter/m4/tabbyflow/tabbyflow-m4-20260505_005055/staged/tabbyflow/model_input_manifest.json @@ -0,0 +1,154 @@ +{ + "dataset_id": "m4", + "model": "tabbyflow", + "target_column": "charges", + "task_type": "regression", + "column_schema": [ + { + "name": "age", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 47, + "unique_ratio": 0.0212, + "example_values": [ + "46", + "38", + "19", + "27", + "26" + ] + } + }, + { + "name": "sex", + "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.000902, + "example_values": [ + "female", + "male" + ] + } + }, + { + "name": "bmi", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 538, + "unique_ratio": 0.24267, + "example_values": [ + "23.655", + "19.3", + "30.59", + "32.67", + "29.45" + ] + } + }, + { + "name": "children", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 6, + "unique_ratio": 0.002706, + "example_values": [ + "1", + "0", + "3", + "2", + "5" + ] + } + }, + { + "name": "smoker", + "role": "feature", + "semantic_type": "boolean", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 2, + "unique_ratio": 0.000902, + "example_values": [ + "yes", + "no" + ] + } + }, + { + "name": "region", + "role": "feature", + "semantic_type": "categorical", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 4, + "unique_ratio": 0.001804, + "example_values": [ + "northwest", + "southwest", + "southeast", + "northeast" + ] + } + }, + { + "name": "charges", + "role": "target", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 1281, + "unique_ratio": 0.577808, + "example_values": [ + "21677.28345", + "15820.699", + "1639.5631", + "2497.0383", + "2897.3235" + ] + } + } + ], + "public_manifest": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/m4/tabbyflow/tabbyflow-m4-20260505_005055/public_gate/staged_input_manifest.json", + "train_csv": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/m4/tabbyflow/tabbyflow-m4-20260505_005055/staged/public/train.csv", + "val_csv": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/m4/tabbyflow/tabbyflow-m4-20260505_005055/staged/public/val.csv", + "test_csv": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/m4/tabbyflow/tabbyflow-m4-20260505_005055/staged/public/test.csv", + "features_json": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/m4/tabbyflow/tabbyflow-m4-20260505_005055/staged/public/staged_features.json", + "public_gate_report": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/m4/tabbyflow/tabbyflow-m4-20260505_005055/public_gate/public_gate_report.json" +} \ No newline at end of file diff --git a/hyperparameter/m4/tabbyflow/tabbyflow-m4-20260505_005055/tabbyflow-m4-2217-20260505_010225.csv b/hyperparameter/m4/tabbyflow/tabbyflow-m4-20260505_005055/tabbyflow-m4-2217-20260505_010225.csv new file mode 100644 index 0000000000000000000000000000000000000000..913b6dd210e6318b607b52dc9070606926e012a6 --- /dev/null +++ b/hyperparameter/m4/tabbyflow/tabbyflow-m4-20260505_005055/tabbyflow-m4-2217-20260505_010225.csv @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:fbecd40649c3039a7e21ad650daff7dd636af25b263983599c1b1c21246c320d +size 83958 diff --git a/hyperparameter/m4/tabbyflow/tabbyflow-m4-20260505_005055/tabbyflow_train_meta.json b/hyperparameter/m4/tabbyflow/tabbyflow-m4-20260505_005055/tabbyflow_train_meta.json new file mode 100644 index 0000000000000000000000000000000000000000..a98ad03547910a1274edb4a48b6afc24c4c37205 --- /dev/null +++ b/hyperparameter/m4/tabbyflow/tabbyflow-m4-20260505_005055/tabbyflow_train_meta.json @@ -0,0 +1,5 @@ +{ + "exp_name": "adapter_efvfm", + "dataname": "pipeline_m4", + "steps": 700 +} \ No newline at end of file diff --git a/hyperparameter/m4/tabbyflow/tabbyflow-m4-20260505_005055/tabular_bundle/pipeline_m4/X_cat_test.npy b/hyperparameter/m4/tabbyflow/tabbyflow-m4-20260505_005055/tabular_bundle/pipeline_m4/X_cat_test.npy new file mode 100644 index 0000000000000000000000000000000000000000..2f6b8b23f5768174aab4879e2a30371e9a3d0ead --- /dev/null +++ b/hyperparameter/m4/tabbyflow/tabbyflow-m4-20260505_005055/tabular_bundle/pipeline_m4/X_cat_test.npy @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:c91af7ac26382e392a70536d3dbb592c04ba5e4f495d1e3c364416b9ef704a07 +size 53336 diff --git a/hyperparameter/m4/tabbyflow/tabbyflow-m4-20260505_005055/tabular_bundle/pipeline_m4/X_cat_train.npy b/hyperparameter/m4/tabbyflow/tabbyflow-m4-20260505_005055/tabular_bundle/pipeline_m4/X_cat_train.npy new file mode 100644 index 0000000000000000000000000000000000000000..2f6b8b23f5768174aab4879e2a30371e9a3d0ead --- /dev/null +++ b/hyperparameter/m4/tabbyflow/tabbyflow-m4-20260505_005055/tabular_bundle/pipeline_m4/X_cat_train.npy @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:c91af7ac26382e392a70536d3dbb592c04ba5e4f495d1e3c364416b9ef704a07 +size 53336 diff --git a/hyperparameter/m4/tabbyflow/tabbyflow-m4-20260505_005055/tabular_bundle/pipeline_m4/X_cat_val.npy b/hyperparameter/m4/tabbyflow/tabbyflow-m4-20260505_005055/tabular_bundle/pipeline_m4/X_cat_val.npy new file mode 100644 index 0000000000000000000000000000000000000000..2f6b8b23f5768174aab4879e2a30371e9a3d0ead --- /dev/null +++ b/hyperparameter/m4/tabbyflow/tabbyflow-m4-20260505_005055/tabular_bundle/pipeline_m4/X_cat_val.npy @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:c91af7ac26382e392a70536d3dbb592c04ba5e4f495d1e3c364416b9ef704a07 +size 53336 diff --git a/hyperparameter/m4/tabbyflow/tabbyflow-m4-20260505_005055/tabular_bundle/pipeline_m4/X_num_test.npy b/hyperparameter/m4/tabbyflow/tabbyflow-m4-20260505_005055/tabular_bundle/pipeline_m4/X_num_test.npy new file mode 100644 index 0000000000000000000000000000000000000000..dc149960a879e21fd1aeed7de2419851175627e7 --- /dev/null +++ b/hyperparameter/m4/tabbyflow/tabbyflow-m4-20260505_005055/tabular_bundle/pipeline_m4/X_num_test.npy @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:4a21bd2fd5a226c07d543ddf78616a8edb2d52b51097fc7a5df5b05612267af8 +size 26732 diff --git a/hyperparameter/m4/tabbyflow/tabbyflow-m4-20260505_005055/tabular_bundle/pipeline_m4/X_num_train.npy b/hyperparameter/m4/tabbyflow/tabbyflow-m4-20260505_005055/tabular_bundle/pipeline_m4/X_num_train.npy new file mode 100644 index 0000000000000000000000000000000000000000..dc149960a879e21fd1aeed7de2419851175627e7 --- /dev/null +++ b/hyperparameter/m4/tabbyflow/tabbyflow-m4-20260505_005055/tabular_bundle/pipeline_m4/X_num_train.npy @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:4a21bd2fd5a226c07d543ddf78616a8edb2d52b51097fc7a5df5b05612267af8 +size 26732 diff --git a/hyperparameter/m4/tabbyflow/tabbyflow-m4-20260505_005055/tabular_bundle/pipeline_m4/X_num_val.npy b/hyperparameter/m4/tabbyflow/tabbyflow-m4-20260505_005055/tabular_bundle/pipeline_m4/X_num_val.npy new file mode 100644 index 0000000000000000000000000000000000000000..dc149960a879e21fd1aeed7de2419851175627e7 --- /dev/null +++ b/hyperparameter/m4/tabbyflow/tabbyflow-m4-20260505_005055/tabular_bundle/pipeline_m4/X_num_val.npy @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:4a21bd2fd5a226c07d543ddf78616a8edb2d52b51097fc7a5df5b05612267af8 +size 26732 diff --git a/hyperparameter/m4/tabbyflow/tabbyflow-m4-20260505_005055/tabular_bundle/pipeline_m4/info.json b/hyperparameter/m4/tabbyflow/tabbyflow-m4-20260505_005055/tabular_bundle/pipeline_m4/info.json new file mode 100644 index 0000000000000000000000000000000000000000..1ccad8d2dc3c60feacc99d202a75e21be3afa7b5 --- /dev/null +++ b/hyperparameter/m4/tabbyflow/tabbyflow-m4-20260505_005055/tabular_bundle/pipeline_m4/info.json @@ -0,0 +1,92 @@ +{ + "name": "pipeline_m4", + "task_type": "regression", + "n_num_features": 3, + "n_cat_features": 3, + "train_size": 2217, + "test_num": 2217, + "val_num": 2217, + "train_num": 2217, + "bundle_note": "val/test matrices are train copies (train-only policy; no real held-out rows).", + "num_col_idx": [ + 0, + 1, + 2 + ], + "cat_col_idx": [ + 3, + 4, + 5 + ], + "target_col_idx": [ + 6 + ], + "column_names": [ + "age", + "bmi", + "children", + "sex", + "smoker", + "region", + "charges" + ], + "int_col_idx": [], + "int_columns": [], + "int_col_idx_wrt_num": [], + "metadata": { + "columns": { + "0": { + "sdtype": "numerical", + "computer_representation": "Float" + }, + "1": { + "sdtype": "numerical", + "computer_representation": "Float" + }, + "2": { + "sdtype": "numerical", + "computer_representation": "Float" + }, + "3": { + "sdtype": "categorical" + }, + "4": { + "sdtype": "categorical" + }, + "5": { + "sdtype": "categorical" + }, + "6": { + "sdtype": "numerical", + "computer_representation": "Float" + } + } + }, + "idx_mapping": { + "0": 0, + "1": 1, + "2": 2, + "3": 3, + "4": 4, + "5": 5, + "6": 6 + }, + "inverse_idx_mapping": { + "0": 0, + "1": 1, + "2": 2, + "3": 3, + "4": 4, + "5": 5, + "6": 6 + }, + "idx_name_mapping": { + "0": "age", + "1": "bmi", + "2": "children", + "3": "sex", + "4": "smoker", + "5": "region", + "6": "charges" + } +} \ No newline at end of file diff --git a/hyperparameter/m4/tabbyflow/tabbyflow-m4-20260505_005055/tabular_bundle/pipeline_m4/real.csv b/hyperparameter/m4/tabbyflow/tabbyflow-m4-20260505_005055/tabular_bundle/pipeline_m4/real.csv new file mode 100644 index 0000000000000000000000000000000000000000..85ff7f4464fa73c1d58767739e7b259f9371a55b --- /dev/null +++ b/hyperparameter/m4/tabbyflow/tabbyflow-m4-20260505_005055/tabular_bundle/pipeline_m4/real.csv @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:e031e2816aa79e4e5fab4c7fe470741eb2d287e493d74b9cfda68441799e07fa +size 60773 diff --git a/hyperparameter/m4/tabbyflow/tabbyflow-m4-20260505_005055/tabular_bundle/pipeline_m4/test.csv b/hyperparameter/m4/tabbyflow/tabbyflow-m4-20260505_005055/tabular_bundle/pipeline_m4/test.csv new file mode 100644 index 0000000000000000000000000000000000000000..85ff7f4464fa73c1d58767739e7b259f9371a55b --- /dev/null +++ b/hyperparameter/m4/tabbyflow/tabbyflow-m4-20260505_005055/tabular_bundle/pipeline_m4/test.csv @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:e031e2816aa79e4e5fab4c7fe470741eb2d287e493d74b9cfda68441799e07fa +size 60773 diff --git a/hyperparameter/m4/tabbyflow/tabbyflow-m4-20260505_005055/tabular_bundle/pipeline_m4/val.csv b/hyperparameter/m4/tabbyflow/tabbyflow-m4-20260505_005055/tabular_bundle/pipeline_m4/val.csv new file mode 100644 index 0000000000000000000000000000000000000000..85ff7f4464fa73c1d58767739e7b259f9371a55b --- /dev/null +++ b/hyperparameter/m4/tabbyflow/tabbyflow-m4-20260505_005055/tabular_bundle/pipeline_m4/val.csv @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:e031e2816aa79e4e5fab4c7fe470741eb2d287e493d74b9cfda68441799e07fa +size 60773 diff --git a/hyperparameter/m4/tabbyflow/tabbyflow-m4-20260505_005055/tabular_bundle/pipeline_m4/y_test.npy b/hyperparameter/m4/tabbyflow/tabbyflow-m4-20260505_005055/tabular_bundle/pipeline_m4/y_test.npy new file mode 100644 index 0000000000000000000000000000000000000000..717f965e62bd5595d6df01d1ad7851fc5768dc29 --- /dev/null +++ b/hyperparameter/m4/tabbyflow/tabbyflow-m4-20260505_005055/tabular_bundle/pipeline_m4/y_test.npy @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:0c64fea6ad5ed2f8441ef5212c726195dbf53e1c81298427bddd18eb20e35cf2 +size 8996 diff --git a/hyperparameter/m4/tabbyflow/tabbyflow-m4-20260505_005055/tabular_bundle/pipeline_m4/y_train.npy b/hyperparameter/m4/tabbyflow/tabbyflow-m4-20260505_005055/tabular_bundle/pipeline_m4/y_train.npy new file mode 100644 index 0000000000000000000000000000000000000000..717f965e62bd5595d6df01d1ad7851fc5768dc29 --- /dev/null +++ b/hyperparameter/m4/tabbyflow/tabbyflow-m4-20260505_005055/tabular_bundle/pipeline_m4/y_train.npy @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:0c64fea6ad5ed2f8441ef5212c726195dbf53e1c81298427bddd18eb20e35cf2 +size 8996 diff --git a/hyperparameter/m4/tabbyflow/tabbyflow-m4-20260505_005055/tabular_bundle/pipeline_m4/y_val.npy b/hyperparameter/m4/tabbyflow/tabbyflow-m4-20260505_005055/tabular_bundle/pipeline_m4/y_val.npy new file mode 100644 index 0000000000000000000000000000000000000000..717f965e62bd5595d6df01d1ad7851fc5768dc29 --- /dev/null +++ b/hyperparameter/m4/tabbyflow/tabbyflow-m4-20260505_005055/tabular_bundle/pipeline_m4/y_val.npy @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:0c64fea6ad5ed2f8441ef5212c726195dbf53e1c81298427bddd18eb20e35cf2 +size 8996 diff --git a/hyperparameter/m4/tabbyflow/tabbyflow-m4-20260505_005055/train_20260505_005055.log b/hyperparameter/m4/tabbyflow/tabbyflow-m4-20260505_005055/train_20260505_005055.log new file mode 100644 index 0000000000000000000000000000000000000000..a16ac0c7090e94c2a133c782c6d1ce600145cd14 --- /dev/null +++ b/hyperparameter/m4/tabbyflow/tabbyflow-m4-20260505_005055/train_20260505_005055.log @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:b3a020b2a3296dbf9970d8b341fe78f69935468eac9751b2ef398b16ca2a54d5 +size 404145 diff --git a/hyperparameter/m4/tabddpm/tabddpm-m4-20260504_182738/_tabddpm_sample_r0.py b/hyperparameter/m4/tabddpm/tabddpm-m4-20260504_182738/_tabddpm_sample_r0.py new file mode 100644 index 0000000000000000000000000000000000000000..da5962863d154916ec4c38c25279dd76a36b08fd --- /dev/null +++ b/hyperparameter/m4/tabddpm/tabddpm-m4-20260504_182738/_tabddpm_sample_r0.py @@ -0,0 +1,66 @@ +import os, sys, subprocess, json +import numpy as np +import pandas as pd + +tabddpm_root = "/workspace/tabddpm/code" +assert os.path.isdir(tabddpm_root), f"TabDDPM source not mounted: {tabddpm_root}" +env = os.environ.copy() +env["PYTHONPATH"] = tabddpm_root + (os.pathsep + env.get("PYTHONPATH", "")) + +# Reuse the compat wrapper (patches collections.Sequence for skorch) +wrapper = os.path.join(tabddpm_root, "_compat_run.py") +if not os.path.exists(wrapper): + with open(wrapper, "w") as f: + f.write( + "import collections, collections.abc\n" + "for _a in ('Sequence','MutableSequence','MutableMapping','Mapping'," + "'MutableSet','Set','Callable','Iterable','Iterator'):\n" + " if not hasattr(collections, _a): setattr(collections, _a, getattr(collections.abc, _a, None))\n" + "import sys, runpy\n" + "sys.argv = sys.argv[1:]\n" + "runpy.run_path(sys.argv[0], run_name='__main__')\n" + ) + +print(f"[TabDDPM] Sampling 2217 rows") +ret = subprocess.run( + [sys.executable, wrapper, "scripts/pipeline.py", + "--config", "/work/output-Benchmark-trainonly-v1/m4/tabddpm/tabddpm-m4-20260504_182738/config_sample_20260504_182808_r0.toml", + "--sample"], + cwd=tabddpm_root, + env=env +) +if ret.returncode != 0: + sys.exit(ret.returncode) + +# 将 .npy 输出转为 CSV(npy 在 TabDDPM 的 parent_dir,即 npy_dir) +info_path = "/work/output-Benchmark-trainonly-v1/m4/tabddpm/tabddpm-m4-20260504_182738/data/info.json" +with open(info_path) as f: + info = json.load(f) + +output_dir = "/work/output-Benchmark-trainonly-v1/m4/tabddpm/tabddpm-m4-20260504_182738/output" +col_names = info.get("column_names", []) + +parts = [] +x_num_path = os.path.join(output_dir, "X_num_train.npy") +x_cat_path = os.path.join(output_dir, "X_cat_train.npy") +y_path = os.path.join(output_dir, "y_train.npy") + +if os.path.exists(x_num_path): + parts.append(np.load(x_num_path, allow_pickle=True)) +if os.path.exists(x_cat_path): + parts.append(np.load(x_cat_path, allow_pickle=True).astype(float)) +if os.path.exists(y_path): + y = np.load(y_path, allow_pickle=True) + parts.append(y.reshape(-1, 1) if y.ndim == 1 else y) + +if parts: + combined = np.concatenate(parts, axis=1) + if col_names and len(col_names) == combined.shape[1]: + df = pd.DataFrame(combined, columns=col_names) + else: + df = pd.DataFrame(combined) + df.to_csv("/work/output-Benchmark-trainonly-v1/m4/tabddpm/tabddpm-m4-20260504_182738/tabddpm-m4-2217-20260504_182808.csv", index=False) + print(f"[TabDDPM] Saved {len(df)} rows -> /work/output-Benchmark-trainonly-v1/m4/tabddpm/tabddpm-m4-20260504_182738/tabddpm-m4-2217-20260504_182808.csv") +else: + print("[TabDDPM] WARNING: No output .npy files found") + sys.exit(1) diff --git a/hyperparameter/m4/tabddpm/tabddpm-m4-20260504_182738/_tabddpm_train.py b/hyperparameter/m4/tabddpm/tabddpm-m4-20260504_182738/_tabddpm_train.py new file mode 100644 index 0000000000000000000000000000000000000000..b5d6bf71e10654cab9ca3552c8d76447ff3ca745 --- /dev/null +++ b/hyperparameter/m4/tabddpm/tabddpm-m4-20260504_182738/_tabddpm_train.py @@ -0,0 +1,32 @@ +import os, sys, subprocess + +tabddpm_root = "/workspace/tabddpm/code" +assert os.path.isdir(tabddpm_root), f"TabDDPM source not mounted: {tabddpm_root}" +env = os.environ.copy() +env["PYTHONPATH"] = tabddpm_root + (os.pathsep + env.get("PYTHONPATH", "")) + +# Write a wrapper that patches collections.Sequence (removed in Python 3.10+) +# before running pipeline.py - needed because skorch uses old API +wrapper = os.path.join(tabddpm_root, "_compat_run.py") +with open(wrapper, "w") as f: + f.write( + "import collections, collections.abc\n" + "for _a in ('Sequence','MutableSequence','MutableMapping','Mapping'," + "'MutableSet','Set','Callable','Iterable','Iterator'):\n" + " if not hasattr(collections, _a): setattr(collections, _a, getattr(collections.abc, _a, None))\n" + "import sys, runpy\n" + "sys.argv = sys.argv[1:]\n" + "runpy.run_path(sys.argv[0], run_name='__main__')\n" + ) + +print(f"[TabDDPM] Training, config=/work/output-Benchmark-trainonly-v1/m4/tabddpm/tabddpm-m4-20260504_182738/config.toml") +ret = subprocess.run( + [sys.executable, wrapper, "scripts/pipeline.py", + "--config", "/work/output-Benchmark-trainonly-v1/m4/tabddpm/tabddpm-m4-20260504_182738/config.toml", + "--train"], + cwd=tabddpm_root, + env=env +) +if ret.returncode != 0: + sys.exit(ret.returncode) +print("[TabDDPM] Training complete") diff --git a/hyperparameter/m4/tabddpm/tabddpm-m4-20260504_182738/config.toml b/hyperparameter/m4/tabddpm/tabddpm-m4-20260504_182738/config.toml new file mode 100644 index 0000000000000000000000000000000000000000..1003b8ba7b51c17b77dd3469708ca3eff0d3256d --- /dev/null +++ b/hyperparameter/m4/tabddpm/tabddpm-m4-20260504_182738/config.toml @@ -0,0 +1,39 @@ +seed = 0 +parent_dir = "/work/output-Benchmark-trainonly-v1/m4/tabddpm/tabddpm-m4-20260504_182738/output" +real_data_path = "/work/output-Benchmark-trainonly-v1/m4/tabddpm/tabddpm-m4-20260504_182738/data" +model_type = "mlp" +num_numerical_features = 3 +device = "cuda:0" + +[model_params] +d_in = 6 +num_classes = 0 +is_y_cond = true + +[model_params.rtdl_params] +d_layers = [256, 256] +dropout = 0.0 + +[diffusion_params] +num_timesteps = 200 +gaussian_loss_type = "mse" + +[train.main] +steps = 2000 +lr = 0.001 +weight_decay = 0.0 +batch_size = 256 + +[train.T] +seed = 0 +normalization = "quantile" +num_nan_policy = "__none__" +cat_nan_policy = "__none__" +cat_min_frequency = "__none__" +cat_encoding = "__none__" +y_policy = "default" + +[sample] +num_samples = 1000 +batch_size = 256 +seed = 0 diff --git a/hyperparameter/m4/tabddpm/tabddpm-m4-20260504_182738/config_sample_20260504_182808_r0.toml b/hyperparameter/m4/tabddpm/tabddpm-m4-20260504_182738/config_sample_20260504_182808_r0.toml new file mode 100644 index 0000000000000000000000000000000000000000..54436c9e16db03b86c3ced56e841274fd8d2e5d5 --- /dev/null +++ b/hyperparameter/m4/tabddpm/tabddpm-m4-20260504_182738/config_sample_20260504_182808_r0.toml @@ -0,0 +1,39 @@ +seed = 0 +parent_dir = "/work/output-Benchmark-trainonly-v1/m4/tabddpm/tabddpm-m4-20260504_182738/output" +real_data_path = "/work/output-Benchmark-trainonly-v1/m4/tabddpm/tabddpm-m4-20260504_182738/data" +model_type = "mlp" +num_numerical_features = 3 +device = "cuda:0" + +[model_params] +d_in = 6 +num_classes = 0 +is_y_cond = true + +[model_params.rtdl_params] +d_layers = [256, 256] +dropout = 0.0 + +[diffusion_params] +num_timesteps = 200 +gaussian_loss_type = "mse" + +[train.main] +steps = 2000 +lr = 0.001 +weight_decay = 0.0 +batch_size = 256 + +[train.T] +seed = 0 +normalization = "quantile" +num_nan_policy = "__none__" +cat_nan_policy = "__none__" +cat_min_frequency = "__none__" +cat_encoding = "__none__" +y_policy = "default" + +[sample] +num_samples = 2217 +batch_size = 256 +seed = 0 diff --git a/hyperparameter/m4/tabddpm/tabddpm-m4-20260504_182738/data/X_cat_train.npy b/hyperparameter/m4/tabddpm/tabddpm-m4-20260504_182738/data/X_cat_train.npy new file mode 100644 index 0000000000000000000000000000000000000000..2f6b8b23f5768174aab4879e2a30371e9a3d0ead --- /dev/null +++ b/hyperparameter/m4/tabddpm/tabddpm-m4-20260504_182738/data/X_cat_train.npy @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:c91af7ac26382e392a70536d3dbb592c04ba5e4f495d1e3c364416b9ef704a07 +size 53336 diff --git a/hyperparameter/m4/tabddpm/tabddpm-m4-20260504_182738/data/X_num_train.npy b/hyperparameter/m4/tabddpm/tabddpm-m4-20260504_182738/data/X_num_train.npy new file mode 100644 index 0000000000000000000000000000000000000000..dc149960a879e21fd1aeed7de2419851175627e7 --- /dev/null +++ b/hyperparameter/m4/tabddpm/tabddpm-m4-20260504_182738/data/X_num_train.npy @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:4a21bd2fd5a226c07d543ddf78616a8edb2d52b51097fc7a5df5b05612267af8 +size 26732 diff --git a/hyperparameter/m4/tabddpm/tabddpm-m4-20260504_182738/data/info.json b/hyperparameter/m4/tabddpm/tabddpm-m4-20260504_182738/data/info.json new file mode 100644 index 0000000000000000000000000000000000000000..fdcf5357ff78dd47dfcca0748443a009323ebfba --- /dev/null +++ b/hyperparameter/m4/tabddpm/tabddpm-m4-20260504_182738/data/info.json @@ -0,0 +1,29 @@ +{ + "name": "benchmark_dataset", + "task_type": "regression", + "n_num_features": 3, + "n_cat_features": 3, + "train_size": 2217, + "num_col_idx": [ + 0, + 1, + 2 + ], + "cat_col_idx": [ + 3, + 4, + 5 + ], + "target_col_idx": [ + 6 + ], + "column_names": [ + "age", + "bmi", + "children", + "sex", + "smoker", + "region", + "charges" + ] +} \ No newline at end of file diff --git a/hyperparameter/m4/tabddpm/tabddpm-m4-20260504_182738/data/y_train.npy b/hyperparameter/m4/tabddpm/tabddpm-m4-20260504_182738/data/y_train.npy new file mode 100644 index 0000000000000000000000000000000000000000..717f965e62bd5595d6df01d1ad7851fc5768dc29 --- /dev/null +++ b/hyperparameter/m4/tabddpm/tabddpm-m4-20260504_182738/data/y_train.npy @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:0c64fea6ad5ed2f8441ef5212c726195dbf53e1c81298427bddd18eb20e35cf2 +size 8996 diff --git a/hyperparameter/m4/tabddpm/tabddpm-m4-20260504_182738/gen_20260504_182808_r0.log b/hyperparameter/m4/tabddpm/tabddpm-m4-20260504_182738/gen_20260504_182808_r0.log new file mode 100644 index 0000000000000000000000000000000000000000..fb431f66ff80e7f03f1c121ad87f62b8b8e1c53c --- /dev/null +++ b/hyperparameter/m4/tabddpm/tabddpm-m4-20260504_182738/gen_20260504_182808_r0.log @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:2620d8c41bd7774fcb19a296b930dea543326d3f02b68ccc4e5c2094b6c1101a +size 38464 diff --git a/hyperparameter/m4/tabddpm/tabddpm-m4-20260504_182738/input_snapshot.json b/hyperparameter/m4/tabddpm/tabddpm-m4-20260504_182738/input_snapshot.json new file mode 100644 index 0000000000000000000000000000000000000000..e4dd477396c560c94b19cc8b62c2e927481b290f --- /dev/null +++ b/hyperparameter/m4/tabddpm/tabddpm-m4-20260504_182738/input_snapshot.json @@ -0,0 +1,36 @@ +{ + "dataset_id": "m4", + "model": "tabddpm", + "inputs": { + "train_csv": { + "path": "/data/jialinzhang/SynthesizePipeline-server/DatasetNew/m4/m4-train.csv", + "exists": true, + "size": 92191, + "sha256": "396b9d409ca21bf4a4cd329bdf5b7796aa0ae6356fa8d89b8eb669b5880b81f1" + }, + "val_csv": { + "path": "/data/jialinzhang/SynthesizePipeline-server/DatasetNew/m4/m4-val.csv", + "exists": true, + "size": 11482, + "sha256": "ee3c247d02f56e1687d03c381e13125d6a3a2a411ac7f202ba8520a4be9f1784" + }, + "test_csv": { + "path": "/data/jialinzhang/SynthesizePipeline-server/DatasetNew/m4/m4-test.csv", + "exists": true, + "size": 11559, + "sha256": "cadb9941124001b8fa7cb1ebae43b70a9ca56294f4df4d3c2f22c164c41757d4" + }, + "profile_json": { + "path": "/data/jialinzhang/SynthesizePipeline-server/DatasetNew/artifacts/data_core/tabular/m4/m4-dataset_profile.json", + "exists": true, + "size": 3336, + "sha256": "83e2764810e4a0e8cdece3a28dbd9134b7c9df6f2e56953e46d024ad2c4e035f" + }, + "contract_json": { + "path": "/data/jialinzhang/SynthesizePipeline-server/DatasetNew/artifacts/data_core/tabular/m4/m4-dataset_contract_v1.json", + "exists": true, + "size": 3810, + "sha256": "c23641b258629a845b164099bd0132886f8f6d0100e990494e0f92540f8987d9" + } + } +} \ No newline at end of file diff --git a/hyperparameter/m4/tabddpm/tabddpm-m4-20260504_182738/output/X_cat_train.npy b/hyperparameter/m4/tabddpm/tabddpm-m4-20260504_182738/output/X_cat_train.npy new file mode 100644 index 0000000000000000000000000000000000000000..afc9b8b5c9018a7ad0e20061d228c1f07e59fc66 --- /dev/null +++ b/hyperparameter/m4/tabddpm/tabddpm-m4-20260504_182738/output/X_cat_train.npy @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:28aff691a85817f1743b22046ae49c896f483c8259dbf7aa5b0ee9488207a69f +size 13599 diff --git a/hyperparameter/m4/tabddpm/tabddpm-m4-20260504_182738/output/X_cat_unnorm.npy b/hyperparameter/m4/tabddpm/tabddpm-m4-20260504_182738/output/X_cat_unnorm.npy new file mode 100644 index 0000000000000000000000000000000000000000..e0bfe0bf75a9481ecf6bb0703ae95e5d783b52e9 --- /dev/null +++ b/hyperparameter/m4/tabddpm/tabddpm-m4-20260504_182738/output/X_cat_unnorm.npy @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:f02b2b8b4e881b68f6c4063dac525abb5e5d581493c78aa64c837bdfac052007 +size 53336 diff --git a/hyperparameter/m4/tabddpm/tabddpm-m4-20260504_182738/output/X_num_train.npy b/hyperparameter/m4/tabddpm/tabddpm-m4-20260504_182738/output/X_num_train.npy new file mode 100644 index 0000000000000000000000000000000000000000..c48bd1c9a93d80b713b474f22bf8c3b2d8c9d384 --- /dev/null +++ b/hyperparameter/m4/tabddpm/tabddpm-m4-20260504_182738/output/X_num_train.npy @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:60d248749a55906a1e07515505d6a22ee18580267f82022c57f9368af00dcada +size 53336 diff --git a/hyperparameter/m4/tabddpm/tabddpm-m4-20260504_182738/output/X_num_unnorm.npy b/hyperparameter/m4/tabddpm/tabddpm-m4-20260504_182738/output/X_num_unnorm.npy new file mode 100644 index 0000000000000000000000000000000000000000..d373efa6fc48d503000009cdd55882b6e620c9a0 --- /dev/null +++ b/hyperparameter/m4/tabddpm/tabddpm-m4-20260504_182738/output/X_num_unnorm.npy @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:e0540e54ecb9a5e1bdd9e3459365ce8e5d5cc1b025746c05e9a59a694b9f402b +size 53336 diff --git a/hyperparameter/m4/tabddpm/tabddpm-m4-20260504_182738/output/config.toml b/hyperparameter/m4/tabddpm/tabddpm-m4-20260504_182738/output/config.toml new file mode 100644 index 0000000000000000000000000000000000000000..54436c9e16db03b86c3ced56e841274fd8d2e5d5 --- /dev/null +++ b/hyperparameter/m4/tabddpm/tabddpm-m4-20260504_182738/output/config.toml @@ -0,0 +1,39 @@ +seed = 0 +parent_dir = "/work/output-Benchmark-trainonly-v1/m4/tabddpm/tabddpm-m4-20260504_182738/output" +real_data_path = "/work/output-Benchmark-trainonly-v1/m4/tabddpm/tabddpm-m4-20260504_182738/data" +model_type = "mlp" +num_numerical_features = 3 +device = "cuda:0" + +[model_params] +d_in = 6 +num_classes = 0 +is_y_cond = true + +[model_params.rtdl_params] +d_layers = [256, 256] +dropout = 0.0 + +[diffusion_params] +num_timesteps = 200 +gaussian_loss_type = "mse" + +[train.main] +steps = 2000 +lr = 0.001 +weight_decay = 0.0 +batch_size = 256 + +[train.T] +seed = 0 +normalization = "quantile" +num_nan_policy = "__none__" +cat_nan_policy = "__none__" +cat_min_frequency = "__none__" +cat_encoding = "__none__" +y_policy = "default" + +[sample] +num_samples = 2217 +batch_size = 256 +seed = 0 diff --git a/hyperparameter/m4/tabddpm/tabddpm-m4-20260504_182738/output/info.json b/hyperparameter/m4/tabddpm/tabddpm-m4-20260504_182738/output/info.json new file mode 100644 index 0000000000000000000000000000000000000000..fdcf5357ff78dd47dfcca0748443a009323ebfba --- /dev/null +++ b/hyperparameter/m4/tabddpm/tabddpm-m4-20260504_182738/output/info.json @@ -0,0 +1,29 @@ +{ + "name": "benchmark_dataset", + "task_type": "regression", + "n_num_features": 3, + "n_cat_features": 3, + "train_size": 2217, + "num_col_idx": [ + 0, + 1, + 2 + ], + "cat_col_idx": [ + 3, + 4, + 5 + ], + "target_col_idx": [ + 6 + ], + "column_names": [ + "age", + "bmi", + "children", + "sex", + "smoker", + "region", + "charges" + ] +} \ No newline at end of file diff --git a/hyperparameter/m4/tabddpm/tabddpm-m4-20260504_182738/output/loss.csv b/hyperparameter/m4/tabddpm/tabddpm-m4-20260504_182738/output/loss.csv new file mode 100644 index 0000000000000000000000000000000000000000..2566e25c20ff6bafbf16b2216c6b12d907fb41c7 --- /dev/null +++ b/hyperparameter/m4/tabddpm/tabddpm-m4-20260504_182738/output/loss.csv @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:b750cc56590467541720f26698ca5eacdae2b063b309cd95eeae78753a1717f1 +size 614 diff --git a/hyperparameter/m4/tabddpm/tabddpm-m4-20260504_182738/output/model.pt b/hyperparameter/m4/tabddpm/tabddpm-m4-20260504_182738/output/model.pt new file mode 100644 index 0000000000000000000000000000000000000000..335123e3b75b098c6fc63692098d7302f00459f3 --- /dev/null +++ b/hyperparameter/m4/tabddpm/tabddpm-m4-20260504_182738/output/model.pt @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:79b9211a79d22cc4cf94a76ccdc43c64f21a997fabbb7e63e6ed6f0306565a56 +size 550673 diff --git a/hyperparameter/m4/tabddpm/tabddpm-m4-20260504_182738/output/model_ema.pt b/hyperparameter/m4/tabddpm/tabddpm-m4-20260504_182738/output/model_ema.pt new file mode 100644 index 0000000000000000000000000000000000000000..f01b8cf3d63b4702020412e081d745d5252059fc --- /dev/null +++ b/hyperparameter/m4/tabddpm/tabddpm-m4-20260504_182738/output/model_ema.pt @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:e40475e1343ae9a8787d195aed50039c12124afd1cb3811d0b55646c2d4fcef2 +size 551585 diff --git a/hyperparameter/m4/tabddpm/tabddpm-m4-20260504_182738/output/y_train.npy b/hyperparameter/m4/tabddpm/tabddpm-m4-20260504_182738/output/y_train.npy new file mode 100644 index 0000000000000000000000000000000000000000..73b8d6c3258989047d17afc0bc8c231f615e8ab6 --- /dev/null +++ b/hyperparameter/m4/tabddpm/tabddpm-m4-20260504_182738/output/y_train.npy @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:2ebaf2c1bb96a0e9e9032e11c3367eecbbb27dc5b5ef037fd4406551fcf68b7e +size 17864 diff --git a/hyperparameter/m4/tabddpm/tabddpm-m4-20260504_182738/public_gate/normalized_schema_snapshot.json b/hyperparameter/m4/tabddpm/tabddpm-m4-20260504_182738/public_gate/normalized_schema_snapshot.json new file mode 100644 index 0000000000000000000000000000000000000000..31ed9818686b11907df75e872e4ffbe010330880 --- /dev/null +++ b/hyperparameter/m4/tabddpm/tabddpm-m4-20260504_182738/public_gate/normalized_schema_snapshot.json @@ -0,0 +1,147 @@ +{ + "dataset_id": "m4", + "target_column": "charges", + "task_type": "regression", + "columns": [ + { + "name": "age", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 47, + "unique_ratio": 0.0212, + "example_values": [ + "46", + "38", + "19", + "27", + "26" + ] + } + }, + { + "name": "sex", + "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.000902, + "example_values": [ + "female", + "male" + ] + } + }, + { + "name": "bmi", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 538, + "unique_ratio": 0.24267, + "example_values": [ + "23.655", + "19.3", + "30.59", + "32.67", + "29.45" + ] + } + }, + { + "name": "children", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 6, + "unique_ratio": 0.002706, + "example_values": [ + "1", + "0", + "3", + "2", + "5" + ] + } + }, + { + "name": "smoker", + "role": "feature", + "semantic_type": "boolean", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 2, + "unique_ratio": 0.000902, + "example_values": [ + "yes", + "no" + ] + } + }, + { + "name": "region", + "role": "feature", + "semantic_type": "categorical", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 4, + "unique_ratio": 0.001804, + "example_values": [ + "northwest", + "southwest", + "southeast", + "northeast" + ] + } + }, + { + "name": "charges", + "role": "target", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 1281, + "unique_ratio": 0.577808, + "example_values": [ + "21677.28345", + "15820.699", + "1639.5631", + "2497.0383", + "2897.3235" + ] + } + } + ] +} \ No newline at end of file diff --git a/hyperparameter/m4/tabddpm/tabddpm-m4-20260504_182738/public_gate/public_gate_report.json b/hyperparameter/m4/tabddpm/tabddpm-m4-20260504_182738/public_gate/public_gate_report.json new file mode 100644 index 0000000000000000000000000000000000000000..e7a25408e2574124629ea9437356551e4d6f4790 --- /dev/null +++ b/hyperparameter/m4/tabddpm/tabddpm-m4-20260504_182738/public_gate/public_gate_report.json @@ -0,0 +1,37 @@ +{ + "dataset_id": "m4", + "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": "charges", + "task_type": "regression", + "input_splits": { + "train": "/data/jialinzhang/SynthesizePipeline-server/DatasetNew/m4/m4-train.csv", + "val": "/data/jialinzhang/SynthesizePipeline-server/DatasetNew/m4/m4-val.csv", + "test": "/data/jialinzhang/SynthesizePipeline-server/DatasetNew/m4/m4-test.csv" + } +} \ No newline at end of file diff --git a/hyperparameter/m4/tabddpm/tabddpm-m4-20260504_182738/public_gate/staged_input_manifest.json b/hyperparameter/m4/tabddpm/tabddpm-m4-20260504_182738/public_gate/staged_input_manifest.json new file mode 100644 index 0000000000000000000000000000000000000000..e36ae58e57fb69ee4b7cba5a61bc700d55d36e19 --- /dev/null +++ b/hyperparameter/m4/tabddpm/tabddpm-m4-20260504_182738/public_gate/staged_input_manifest.json @@ -0,0 +1,152 @@ +{ + "dataset_id": "m4", + "target_column": "charges", + "task_type": "regression", + "train_csv": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/m4/tabddpm/tabddpm-m4-20260504_182738/staged/public/train.csv", + "val_csv": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/m4/tabddpm/tabddpm-m4-20260504_182738/staged/public/val.csv", + "test_csv": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/m4/tabddpm/tabddpm-m4-20260504_182738/staged/public/test.csv", + "features_json": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/m4/tabddpm/tabddpm-m4-20260504_182738/staged/public/staged_features.json", + "public_gate_report": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/m4/tabddpm/tabddpm-m4-20260504_182738/public_gate/public_gate_report.json", + "column_schema": [ + { + "name": "age", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 47, + "unique_ratio": 0.0212, + "example_values": [ + "46", + "38", + "19", + "27", + "26" + ] + } + }, + { + "name": "sex", + "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.000902, + "example_values": [ + "female", + "male" + ] + } + }, + { + "name": "bmi", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 538, + "unique_ratio": 0.24267, + "example_values": [ + "23.655", + "19.3", + "30.59", + "32.67", + "29.45" + ] + } + }, + { + "name": "children", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 6, + "unique_ratio": 0.002706, + "example_values": [ + "1", + "0", + "3", + "2", + "5" + ] + } + }, + { + "name": "smoker", + "role": "feature", + "semantic_type": "boolean", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 2, + "unique_ratio": 0.000902, + "example_values": [ + "yes", + "no" + ] + } + }, + { + "name": "region", + "role": "feature", + "semantic_type": "categorical", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 4, + "unique_ratio": 0.001804, + "example_values": [ + "northwest", + "southwest", + "southeast", + "northeast" + ] + } + }, + { + "name": "charges", + "role": "target", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 1281, + "unique_ratio": 0.577808, + "example_values": [ + "21677.28345", + "15820.699", + "1639.5631", + "2497.0383", + "2897.3235" + ] + } + } + ] +} \ No newline at end of file diff --git a/hyperparameter/m4/tabddpm/tabddpm-m4-20260504_182738/run_config.json b/hyperparameter/m4/tabddpm/tabddpm-m4-20260504_182738/run_config.json new file mode 100644 index 0000000000000000000000000000000000000000..c661c0be92a14e06b3d83ed030c34a2dda4077eb --- /dev/null +++ b/hyperparameter/m4/tabddpm/tabddpm-m4-20260504_182738/run_config.json @@ -0,0 +1,45 @@ +{ + "schema_version": 1, + "recorded_at": "2026-05-04T18:27:38", + "dataset_id": "m4", + "model": "tabddpm", + "work_dir": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/m4/tabddpm/tabddpm-m4-20260504_182738", + "dataset_source_requested": "new", + "dataset_source_resolved": "new", + "cli_args": { + "model": "tabddpm", + "dataset": "m4", + "dataset_source": "new", + "train": true, + "generate": true, + "num_rows": 0, + "epochs": null, + "output_dir": null, + "model_dir": null, + "work_dir": null, + "resume": false, + "no_stats": false + }, + "resolved": { + "num_rows": 2217, + "model_path": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/m4/tabddpm/tabddpm-m4-20260504_182738", + "output_csv": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/m4/tabddpm/tabddpm-m4-20260504_182738/tabddpm-m4-2217-20260504_182808.csv" + }, + "input_artifacts": { + "public_gate_report": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/m4/tabddpm/tabddpm-m4-20260504_182738/public_gate/public_gate_report.json", + "public_manifest": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/m4/tabddpm/tabddpm-m4-20260504_182738/public_gate/staged_input_manifest.json", + "model_manifest": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/m4/tabddpm/tabddpm-m4-20260504_182738/staged/tabddpm/model_input_manifest.json", + "train_csv": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/m4/tabddpm/tabddpm-m4-20260504_182738/staged/public/train.csv", + "features_json": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/m4/tabddpm/tabddpm-m4-20260504_182738/staged/public/staged_features.json", + "target_column": "charges", + "task_type": "regression" + }, + "env_overrides": { + "BENCHMARK_TABDDPM_GPUS": "device=3", + "TABDDPM_NUM_TIMESTEPS": "200", + "TABDDPM_SAMPLE_BATCH_SIZE": "256", + "TABDDPM_STEPS_PER_EPOCH": "40", + "TABDDPM_TRAIN_BATCH_SIZE": "256", + "TABDDPM_TRAIN_LR": "0.001" + } +} \ No newline at end of file diff --git a/hyperparameter/m4/tabddpm/tabddpm-m4-20260504_182738/runtime_result.json b/hyperparameter/m4/tabddpm/tabddpm-m4-20260504_182738/runtime_result.json new file mode 100644 index 0000000000000000000000000000000000000000..5d706e3640de0673f68b57f1fd72b499891b22fc --- /dev/null +++ b/hyperparameter/m4/tabddpm/tabddpm-m4-20260504_182738/runtime_result.json @@ -0,0 +1,27 @@ +{ + "dataset_id": "m4", + "model": "tabddpm", + "run_id": "tabddpm-m4-20260504_182738", + "public_gate_status": "pass", + "adapter_ready_status": "pass", + "train_status": "success", + "generate_status": "success", + "reason_code": null, + "reason_detail": null, + "artifacts": { + "synthetic_csv": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/m4/tabddpm/tabddpm-m4-20260504_182738/tabddpm-m4-2217-20260504_182808.csv", + "model_path": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/m4/tabddpm/tabddpm-m4-20260504_182738" + }, + "timings": { + "train": { + "started_at": "2026-05-04T18:27:38", + "ended_at": "2026-05-04T18:28:08", + "duration_sec": 30.04 + }, + "generate": { + "started_at": "2026-05-04T18:28:08", + "ended_at": "2026-05-04T18:28:23", + "duration_sec": 15.11 + } + } +} \ No newline at end of file diff --git a/hyperparameter/m4/tabddpm/tabddpm-m4-20260504_182738/staged/public/staged_features.json b/hyperparameter/m4/tabddpm/tabddpm-m4-20260504_182738/staged/public/staged_features.json new file mode 100644 index 0000000000000000000000000000000000000000..d6acd098c35111f423f3ffff2cfd1754bc5dfebc --- /dev/null +++ b/hyperparameter/m4/tabddpm/tabddpm-m4-20260504_182738/staged/public/staged_features.json @@ -0,0 +1,37 @@ +[ + { + "feature_name": "age", + "data_type": "continuous", + "is_target": false + }, + { + "feature_name": "sex", + "data_type": "categorical", + "is_target": false + }, + { + "feature_name": "bmi", + "data_type": "continuous", + "is_target": false + }, + { + "feature_name": "children", + "data_type": "continuous", + "is_target": false + }, + { + "feature_name": "smoker", + "data_type": "binary", + "is_target": false + }, + { + "feature_name": "region", + "data_type": "categorical", + "is_target": false + }, + { + "feature_name": "charges", + "data_type": "continuous", + "is_target": true + } +] \ No newline at end of file diff --git a/hyperparameter/m4/tabddpm/tabddpm-m4-20260504_182738/staged/public/test.csv b/hyperparameter/m4/tabddpm/tabddpm-m4-20260504_182738/staged/public/test.csv new file mode 100644 index 0000000000000000000000000000000000000000..c88a2e7cfcd715bb421cb56eb078033da45c4dc8 --- /dev/null +++ b/hyperparameter/m4/tabddpm/tabddpm-m4-20260504_182738/staged/public/test.csv @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:4c541b677fb2d45c5bc79338eeee9fd8c91484b195a0c2c546c2fbabf113b7ea +size 11298 diff --git a/hyperparameter/m4/tabddpm/tabddpm-m4-20260504_182738/staged/public/train.csv b/hyperparameter/m4/tabddpm/tabddpm-m4-20260504_182738/staged/public/train.csv new file mode 100644 index 0000000000000000000000000000000000000000..5a05019d786529e0617291766c4fbe016ca01bf5 --- /dev/null +++ b/hyperparameter/m4/tabddpm/tabddpm-m4-20260504_182738/staged/public/train.csv @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:614ebfac5f41d6f661aff675fa18c0f933a8d9bcc77ea71b7b2360c2f0155837 +size 90069 diff --git a/hyperparameter/m4/tabddpm/tabddpm-m4-20260504_182738/staged/public/val.csv b/hyperparameter/m4/tabddpm/tabddpm-m4-20260504_182738/staged/public/val.csv new file mode 100644 index 0000000000000000000000000000000000000000..d78fe5ad1537c437ba9ac2629f2aa60a6c17e708 --- /dev/null +++ b/hyperparameter/m4/tabddpm/tabddpm-m4-20260504_182738/staged/public/val.csv @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:e55f5edbe7942ff01630de91a9c70dfbc6445eba76c7b970350364546b67c2d7 +size 11218 diff --git a/hyperparameter/m4/tabddpm/tabddpm-m4-20260504_182738/staged/tabddpm/adapter_report.json b/hyperparameter/m4/tabddpm/tabddpm-m4-20260504_182738/staged/tabddpm/adapter_report.json new file mode 100644 index 0000000000000000000000000000000000000000..a5ddb4b2facdad244961516fffd505658e1e0b1c --- /dev/null +++ b/hyperparameter/m4/tabddpm/tabddpm-m4-20260504_182738/staged/tabddpm/adapter_report.json @@ -0,0 +1,7 @@ +{ + "adapter_ready_status": "pass", + "adapter_fail_reason_code": null, + "adapter_fail_detail": null, + "adapter_transforms_applied": [], + "model_input_manifest": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/m4/tabddpm/tabddpm-m4-20260504_182738/staged/tabddpm/model_input_manifest.json" +} \ No newline at end of file diff --git a/hyperparameter/m4/tabddpm/tabddpm-m4-20260504_182738/staged/tabddpm/adapter_transforms_applied.json b/hyperparameter/m4/tabddpm/tabddpm-m4-20260504_182738/staged/tabddpm/adapter_transforms_applied.json new file mode 100644 index 0000000000000000000000000000000000000000..0637a088a01e8ddab3bf3fa98dbe804cbde1a0dc --- /dev/null +++ b/hyperparameter/m4/tabddpm/tabddpm-m4-20260504_182738/staged/tabddpm/adapter_transforms_applied.json @@ -0,0 +1 @@ +[] \ No newline at end of file diff --git a/hyperparameter/m4/tabddpm/tabddpm-m4-20260504_182738/staged/tabddpm/model_input_manifest.json b/hyperparameter/m4/tabddpm/tabddpm-m4-20260504_182738/staged/tabddpm/model_input_manifest.json new file mode 100644 index 0000000000000000000000000000000000000000..ae1c727c7ab4296dc05ad8846d9e360ab8e83cef --- /dev/null +++ b/hyperparameter/m4/tabddpm/tabddpm-m4-20260504_182738/staged/tabddpm/model_input_manifest.json @@ -0,0 +1,154 @@ +{ + "dataset_id": "m4", + "model": "tabddpm", + "target_column": "charges", + "task_type": "regression", + "column_schema": [ + { + "name": "age", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 47, + "unique_ratio": 0.0212, + "example_values": [ + "46", + "38", + "19", + "27", + "26" + ] + } + }, + { + "name": "sex", + "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.000902, + "example_values": [ + "female", + "male" + ] + } + }, + { + "name": "bmi", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 538, + "unique_ratio": 0.24267, + "example_values": [ + "23.655", + "19.3", + "30.59", + "32.67", + "29.45" + ] + } + }, + { + "name": "children", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 6, + "unique_ratio": 0.002706, + "example_values": [ + "1", + "0", + "3", + "2", + "5" + ] + } + }, + { + "name": "smoker", + "role": "feature", + "semantic_type": "boolean", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 2, + "unique_ratio": 0.000902, + "example_values": [ + "yes", + "no" + ] + } + }, + { + "name": "region", + "role": "feature", + "semantic_type": "categorical", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 4, + "unique_ratio": 0.001804, + "example_values": [ + "northwest", + "southwest", + "southeast", + "northeast" + ] + } + }, + { + "name": "charges", + "role": "target", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 1281, + "unique_ratio": 0.577808, + "example_values": [ + "21677.28345", + "15820.699", + "1639.5631", + "2497.0383", + "2897.3235" + ] + } + } + ], + "public_manifest": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/m4/tabddpm/tabddpm-m4-20260504_182738/public_gate/staged_input_manifest.json", + "train_csv": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/m4/tabddpm/tabddpm-m4-20260504_182738/staged/public/train.csv", + "val_csv": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/m4/tabddpm/tabddpm-m4-20260504_182738/staged/public/val.csv", + "test_csv": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/m4/tabddpm/tabddpm-m4-20260504_182738/staged/public/test.csv", + "features_json": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/m4/tabddpm/tabddpm-m4-20260504_182738/staged/public/staged_features.json", + "public_gate_report": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/m4/tabddpm/tabddpm-m4-20260504_182738/public_gate/public_gate_report.json" +} \ No newline at end of file diff --git a/hyperparameter/m4/tabddpm/tabddpm-m4-20260504_182738/tabddpm-m4-2217-20260504_182808.csv b/hyperparameter/m4/tabddpm/tabddpm-m4-20260504_182738/tabddpm-m4-2217-20260504_182808.csv new file mode 100644 index 0000000000000000000000000000000000000000..aeaeaa2a209111bd2dffed109a3a420b29d8f6b4 --- /dev/null +++ b/hyperparameter/m4/tabddpm/tabddpm-m4-20260504_182738/tabddpm-m4-2217-20260504_182808.csv @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:7e2510f6c3edfc60e8881716835a35c681c33df9b6d98cdb819d5edbfbca3999 +size 102535 diff --git a/hyperparameter/m4/tabddpm/tabddpm-m4-20260504_182738/train_20260504_182738.log b/hyperparameter/m4/tabddpm/tabddpm-m4-20260504_182738/train_20260504_182738.log new file mode 100644 index 0000000000000000000000000000000000000000..a8dd10a583a909b9ef233e741a3c12c74f2a0320 --- /dev/null +++ b/hyperparameter/m4/tabddpm/tabddpm-m4-20260504_182738/train_20260504_182738.log @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:94ca6f955a055ce3d2f486a8129976e3c364a7360075e8e62767bbd99acce534 +size 3990 diff --git a/hyperparameter/m4/tabddpm/tabddpm-m4-20260504_182836/_tabddpm_sample_r0.py b/hyperparameter/m4/tabddpm/tabddpm-m4-20260504_182836/_tabddpm_sample_r0.py new file mode 100644 index 0000000000000000000000000000000000000000..e040ae031ad981805c4e1a846fc382f4549df904 --- /dev/null +++ b/hyperparameter/m4/tabddpm/tabddpm-m4-20260504_182836/_tabddpm_sample_r0.py @@ -0,0 +1,66 @@ +import os, sys, subprocess, json +import numpy as np +import pandas as pd + +tabddpm_root = "/workspace/tabddpm/code" +assert os.path.isdir(tabddpm_root), f"TabDDPM source not mounted: {tabddpm_root}" +env = os.environ.copy() +env["PYTHONPATH"] = tabddpm_root + (os.pathsep + env.get("PYTHONPATH", "")) + +# Reuse the compat wrapper (patches collections.Sequence for skorch) +wrapper = os.path.join(tabddpm_root, "_compat_run.py") +if not os.path.exists(wrapper): + with open(wrapper, "w") as f: + f.write( + "import collections, collections.abc\n" + "for _a in ('Sequence','MutableSequence','MutableMapping','Mapping'," + "'MutableSet','Set','Callable','Iterable','Iterator'):\n" + " if not hasattr(collections, _a): setattr(collections, _a, getattr(collections.abc, _a, None))\n" + "import sys, runpy\n" + "sys.argv = sys.argv[1:]\n" + "runpy.run_path(sys.argv[0], run_name='__main__')\n" + ) + +print(f"[TabDDPM] Sampling 2217 rows") +ret = subprocess.run( + [sys.executable, wrapper, "scripts/pipeline.py", + "--config", "/work/output-Benchmark-trainonly-v1/m4/tabddpm/tabddpm-m4-20260504_182836/config_sample_20260504_182943_r0.toml", + "--sample"], + cwd=tabddpm_root, + env=env +) +if ret.returncode != 0: + sys.exit(ret.returncode) + +# 将 .npy 输出转为 CSV(npy 在 TabDDPM 的 parent_dir,即 npy_dir) +info_path = "/work/output-Benchmark-trainonly-v1/m4/tabddpm/tabddpm-m4-20260504_182836/data/info.json" +with open(info_path) as f: + info = json.load(f) + +output_dir = "/work/output-Benchmark-trainonly-v1/m4/tabddpm/tabddpm-m4-20260504_182836/output" +col_names = info.get("column_names", []) + +parts = [] +x_num_path = os.path.join(output_dir, "X_num_train.npy") +x_cat_path = os.path.join(output_dir, "X_cat_train.npy") +y_path = os.path.join(output_dir, "y_train.npy") + +if os.path.exists(x_num_path): + parts.append(np.load(x_num_path, allow_pickle=True)) +if os.path.exists(x_cat_path): + parts.append(np.load(x_cat_path, allow_pickle=True).astype(float)) +if os.path.exists(y_path): + y = np.load(y_path, allow_pickle=True) + parts.append(y.reshape(-1, 1) if y.ndim == 1 else y) + +if parts: + combined = np.concatenate(parts, axis=1) + if col_names and len(col_names) == combined.shape[1]: + df = pd.DataFrame(combined, columns=col_names) + else: + df = pd.DataFrame(combined) + df.to_csv("/work/output-Benchmark-trainonly-v1/m4/tabddpm/tabddpm-m4-20260504_182836/tabddpm-m4-2217-20260504_182943.csv", index=False) + print(f"[TabDDPM] Saved {len(df)} rows -> /work/output-Benchmark-trainonly-v1/m4/tabddpm/tabddpm-m4-20260504_182836/tabddpm-m4-2217-20260504_182943.csv") +else: + print("[TabDDPM] WARNING: No output .npy files found") + sys.exit(1) diff --git a/hyperparameter/m4/tabddpm/tabddpm-m4-20260504_182836/_tabddpm_train.py b/hyperparameter/m4/tabddpm/tabddpm-m4-20260504_182836/_tabddpm_train.py new file mode 100644 index 0000000000000000000000000000000000000000..7ec1bcd2c5441b9e204fbe8d16e70a1ac6ecd4ef --- /dev/null +++ b/hyperparameter/m4/tabddpm/tabddpm-m4-20260504_182836/_tabddpm_train.py @@ -0,0 +1,32 @@ +import os, sys, subprocess + +tabddpm_root = "/workspace/tabddpm/code" +assert os.path.isdir(tabddpm_root), f"TabDDPM source not mounted: {tabddpm_root}" +env = os.environ.copy() +env["PYTHONPATH"] = tabddpm_root + (os.pathsep + env.get("PYTHONPATH", "")) + +# Write a wrapper that patches collections.Sequence (removed in Python 3.10+) +# before running pipeline.py - needed because skorch uses old API +wrapper = os.path.join(tabddpm_root, "_compat_run.py") +with open(wrapper, "w") as f: + f.write( + "import collections, collections.abc\n" + "for _a in ('Sequence','MutableSequence','MutableMapping','Mapping'," + "'MutableSet','Set','Callable','Iterable','Iterator'):\n" + " if not hasattr(collections, _a): setattr(collections, _a, getattr(collections.abc, _a, None))\n" + "import sys, runpy\n" + "sys.argv = sys.argv[1:]\n" + "runpy.run_path(sys.argv[0], run_name='__main__')\n" + ) + +print(f"[TabDDPM] Training, config=/work/output-Benchmark-trainonly-v1/m4/tabddpm/tabddpm-m4-20260504_182836/config.toml") +ret = subprocess.run( + [sys.executable, wrapper, "scripts/pipeline.py", + "--config", "/work/output-Benchmark-trainonly-v1/m4/tabddpm/tabddpm-m4-20260504_182836/config.toml", + "--train"], + cwd=tabddpm_root, + env=env +) +if ret.returncode != 0: + sys.exit(ret.returncode) +print("[TabDDPM] Training complete") diff --git a/hyperparameter/m4/tabddpm/tabddpm-m4-20260504_182836/config.toml b/hyperparameter/m4/tabddpm/tabddpm-m4-20260504_182836/config.toml new file mode 100644 index 0000000000000000000000000000000000000000..44e64d78bdd1d2283361e8588ecaf40dfd9bc952 --- /dev/null +++ b/hyperparameter/m4/tabddpm/tabddpm-m4-20260504_182836/config.toml @@ -0,0 +1,39 @@ +seed = 0 +parent_dir = "/work/output-Benchmark-trainonly-v1/m4/tabddpm/tabddpm-m4-20260504_182836/output" +real_data_path = "/work/output-Benchmark-trainonly-v1/m4/tabddpm/tabddpm-m4-20260504_182836/data" +model_type = "mlp" +num_numerical_features = 3 +device = "cuda:0" + +[model_params] +d_in = 6 +num_classes = 0 +is_y_cond = true + +[model_params.rtdl_params] +d_layers = [256, 256] +dropout = 0.0 + +[diffusion_params] +num_timesteps = 1000 +gaussian_loss_type = "mse" + +[train.main] +steps = 5000 +lr = 0.001 +weight_decay = 0.0 +batch_size = 256 + +[train.T] +seed = 0 +normalization = "quantile" +num_nan_policy = "__none__" +cat_nan_policy = "__none__" +cat_min_frequency = "__none__" +cat_encoding = "__none__" +y_policy = "default" + +[sample] +num_samples = 1000 +batch_size = 256 +seed = 0 diff --git a/hyperparameter/m4/tabddpm/tabddpm-m4-20260504_182836/config_sample_20260504_182943_r0.toml b/hyperparameter/m4/tabddpm/tabddpm-m4-20260504_182836/config_sample_20260504_182943_r0.toml new file mode 100644 index 0000000000000000000000000000000000000000..dfafface9f55429eedcb0ad629dea1490723b3ef --- /dev/null +++ b/hyperparameter/m4/tabddpm/tabddpm-m4-20260504_182836/config_sample_20260504_182943_r0.toml @@ -0,0 +1,39 @@ +seed = 0 +parent_dir = "/work/output-Benchmark-trainonly-v1/m4/tabddpm/tabddpm-m4-20260504_182836/output" +real_data_path = "/work/output-Benchmark-trainonly-v1/m4/tabddpm/tabddpm-m4-20260504_182836/data" +model_type = "mlp" +num_numerical_features = 3 +device = "cuda:0" + +[model_params] +d_in = 6 +num_classes = 0 +is_y_cond = true + +[model_params.rtdl_params] +d_layers = [256, 256] +dropout = 0.0 + +[diffusion_params] +num_timesteps = 1000 +gaussian_loss_type = "mse" + +[train.main] +steps = 5000 +lr = 0.001 +weight_decay = 0.0 +batch_size = 256 + +[train.T] +seed = 0 +normalization = "quantile" +num_nan_policy = "__none__" +cat_nan_policy = "__none__" +cat_min_frequency = "__none__" +cat_encoding = "__none__" +y_policy = "default" + +[sample] +num_samples = 2217 +batch_size = 256 +seed = 0 diff --git a/hyperparameter/m4/tabddpm/tabddpm-m4-20260504_182836/data/X_cat_train.npy b/hyperparameter/m4/tabddpm/tabddpm-m4-20260504_182836/data/X_cat_train.npy new file mode 100644 index 0000000000000000000000000000000000000000..2f6b8b23f5768174aab4879e2a30371e9a3d0ead --- /dev/null +++ b/hyperparameter/m4/tabddpm/tabddpm-m4-20260504_182836/data/X_cat_train.npy @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:c91af7ac26382e392a70536d3dbb592c04ba5e4f495d1e3c364416b9ef704a07 +size 53336 diff --git a/hyperparameter/m4/tabddpm/tabddpm-m4-20260504_182836/data/X_num_train.npy b/hyperparameter/m4/tabddpm/tabddpm-m4-20260504_182836/data/X_num_train.npy new file mode 100644 index 0000000000000000000000000000000000000000..dc149960a879e21fd1aeed7de2419851175627e7 --- /dev/null +++ b/hyperparameter/m4/tabddpm/tabddpm-m4-20260504_182836/data/X_num_train.npy @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:4a21bd2fd5a226c07d543ddf78616a8edb2d52b51097fc7a5df5b05612267af8 +size 26732 diff --git a/hyperparameter/m4/tabddpm/tabddpm-m4-20260504_182836/data/info.json b/hyperparameter/m4/tabddpm/tabddpm-m4-20260504_182836/data/info.json new file mode 100644 index 0000000000000000000000000000000000000000..fdcf5357ff78dd47dfcca0748443a009323ebfba --- /dev/null +++ b/hyperparameter/m4/tabddpm/tabddpm-m4-20260504_182836/data/info.json @@ -0,0 +1,29 @@ +{ + "name": "benchmark_dataset", + "task_type": "regression", + "n_num_features": 3, + "n_cat_features": 3, + "train_size": 2217, + "num_col_idx": [ + 0, + 1, + 2 + ], + "cat_col_idx": [ + 3, + 4, + 5 + ], + "target_col_idx": [ + 6 + ], + "column_names": [ + "age", + "bmi", + "children", + "sex", + "smoker", + "region", + "charges" + ] +} \ No newline at end of file diff --git a/hyperparameter/m4/tabddpm/tabddpm-m4-20260504_182836/data/y_train.npy b/hyperparameter/m4/tabddpm/tabddpm-m4-20260504_182836/data/y_train.npy new file mode 100644 index 0000000000000000000000000000000000000000..717f965e62bd5595d6df01d1ad7851fc5768dc29 --- /dev/null +++ b/hyperparameter/m4/tabddpm/tabddpm-m4-20260504_182836/data/y_train.npy @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:0c64fea6ad5ed2f8441ef5212c726195dbf53e1c81298427bddd18eb20e35cf2 +size 8996 diff --git a/hyperparameter/m4/tabddpm/tabddpm-m4-20260504_182836/gen_20260504_182943_r0.log b/hyperparameter/m4/tabddpm/tabddpm-m4-20260504_182836/gen_20260504_182943_r0.log new file mode 100644 index 0000000000000000000000000000000000000000..d055e84540653e4024cac8bd01e1dd0ace054033 --- /dev/null +++ b/hyperparameter/m4/tabddpm/tabddpm-m4-20260504_182836/gen_20260504_182943_r0.log @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:de127dcdfe6746262c5b92240f14ecdd716c05d3020c147beec21e2a20e93342 +size 189664 diff --git a/hyperparameter/m4/tabddpm/tabddpm-m4-20260504_182836/input_snapshot.json b/hyperparameter/m4/tabddpm/tabddpm-m4-20260504_182836/input_snapshot.json new file mode 100644 index 0000000000000000000000000000000000000000..e4dd477396c560c94b19cc8b62c2e927481b290f --- /dev/null +++ b/hyperparameter/m4/tabddpm/tabddpm-m4-20260504_182836/input_snapshot.json @@ -0,0 +1,36 @@ +{ + "dataset_id": "m4", + "model": "tabddpm", + "inputs": { + "train_csv": { + "path": "/data/jialinzhang/SynthesizePipeline-server/DatasetNew/m4/m4-train.csv", + "exists": true, + "size": 92191, + "sha256": "396b9d409ca21bf4a4cd329bdf5b7796aa0ae6356fa8d89b8eb669b5880b81f1" + }, + "val_csv": { + "path": "/data/jialinzhang/SynthesizePipeline-server/DatasetNew/m4/m4-val.csv", + "exists": true, + "size": 11482, + "sha256": "ee3c247d02f56e1687d03c381e13125d6a3a2a411ac7f202ba8520a4be9f1784" + }, + "test_csv": { + "path": "/data/jialinzhang/SynthesizePipeline-server/DatasetNew/m4/m4-test.csv", + "exists": true, + "size": 11559, + "sha256": "cadb9941124001b8fa7cb1ebae43b70a9ca56294f4df4d3c2f22c164c41757d4" + }, + "profile_json": { + "path": "/data/jialinzhang/SynthesizePipeline-server/DatasetNew/artifacts/data_core/tabular/m4/m4-dataset_profile.json", + "exists": true, + "size": 3336, + "sha256": "83e2764810e4a0e8cdece3a28dbd9134b7c9df6f2e56953e46d024ad2c4e035f" + }, + "contract_json": { + "path": "/data/jialinzhang/SynthesizePipeline-server/DatasetNew/artifacts/data_core/tabular/m4/m4-dataset_contract_v1.json", + "exists": true, + "size": 3810, + "sha256": "c23641b258629a845b164099bd0132886f8f6d0100e990494e0f92540f8987d9" + } + } +} \ No newline at end of file diff --git a/hyperparameter/m4/tabddpm/tabddpm-m4-20260504_182836/output/X_cat_train.npy b/hyperparameter/m4/tabddpm/tabddpm-m4-20260504_182836/output/X_cat_train.npy new file mode 100644 index 0000000000000000000000000000000000000000..04acc7148645f2d252109ee741b555d22a2311f2 --- /dev/null +++ b/hyperparameter/m4/tabddpm/tabddpm-m4-20260504_182836/output/X_cat_train.npy @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:66a1afd4845a5c212f0a1ff4302ac1736ca8f1b176209005abea9d16afd6f8a2 +size 13599 diff --git a/hyperparameter/m4/tabddpm/tabddpm-m4-20260504_182836/output/X_cat_unnorm.npy b/hyperparameter/m4/tabddpm/tabddpm-m4-20260504_182836/output/X_cat_unnorm.npy new file mode 100644 index 0000000000000000000000000000000000000000..2943bb00ef38d8a9c85227f90e89860951bdd0b1 --- /dev/null +++ b/hyperparameter/m4/tabddpm/tabddpm-m4-20260504_182836/output/X_cat_unnorm.npy @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:5deceebc33cdca776eed431cf6d6c8b87b8169f1a55eb7b64a8dd0b32b4a8304 +size 53336 diff --git a/hyperparameter/m4/tabddpm/tabddpm-m4-20260504_182836/output/X_num_train.npy b/hyperparameter/m4/tabddpm/tabddpm-m4-20260504_182836/output/X_num_train.npy new file mode 100644 index 0000000000000000000000000000000000000000..6eaa2a5fb5317fce872aa037de4bdd0d277c150c --- /dev/null +++ b/hyperparameter/m4/tabddpm/tabddpm-m4-20260504_182836/output/X_num_train.npy @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:c7cd67b6e77e0a0e3d30572f13cb2515e024c13c5820ad75bfa7580bae668abd +size 53336 diff --git a/hyperparameter/m4/tabddpm/tabddpm-m4-20260504_182836/output/X_num_unnorm.npy b/hyperparameter/m4/tabddpm/tabddpm-m4-20260504_182836/output/X_num_unnorm.npy new file mode 100644 index 0000000000000000000000000000000000000000..d7197d744fd26bf6f5125ff90b1962a8aa797e04 --- /dev/null +++ b/hyperparameter/m4/tabddpm/tabddpm-m4-20260504_182836/output/X_num_unnorm.npy @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:48e8b4a27519c1eaab56620aa0694f0bad3f9277fe83da56e77a11410a7ef1b6 +size 53336 diff --git a/hyperparameter/m4/tabddpm/tabddpm-m4-20260504_182836/output/config.toml b/hyperparameter/m4/tabddpm/tabddpm-m4-20260504_182836/output/config.toml new file mode 100644 index 0000000000000000000000000000000000000000..dfafface9f55429eedcb0ad629dea1490723b3ef --- /dev/null +++ b/hyperparameter/m4/tabddpm/tabddpm-m4-20260504_182836/output/config.toml @@ -0,0 +1,39 @@ +seed = 0 +parent_dir = "/work/output-Benchmark-trainonly-v1/m4/tabddpm/tabddpm-m4-20260504_182836/output" +real_data_path = "/work/output-Benchmark-trainonly-v1/m4/tabddpm/tabddpm-m4-20260504_182836/data" +model_type = "mlp" +num_numerical_features = 3 +device = "cuda:0" + +[model_params] +d_in = 6 +num_classes = 0 +is_y_cond = true + +[model_params.rtdl_params] +d_layers = [256, 256] +dropout = 0.0 + +[diffusion_params] +num_timesteps = 1000 +gaussian_loss_type = "mse" + +[train.main] +steps = 5000 +lr = 0.001 +weight_decay = 0.0 +batch_size = 256 + +[train.T] +seed = 0 +normalization = "quantile" +num_nan_policy = "__none__" +cat_nan_policy = "__none__" +cat_min_frequency = "__none__" +cat_encoding = "__none__" +y_policy = "default" + +[sample] +num_samples = 2217 +batch_size = 256 +seed = 0 diff --git a/hyperparameter/m4/tabddpm/tabddpm-m4-20260504_182836/output/info.json b/hyperparameter/m4/tabddpm/tabddpm-m4-20260504_182836/output/info.json new file mode 100644 index 0000000000000000000000000000000000000000..fdcf5357ff78dd47dfcca0748443a009323ebfba --- /dev/null +++ b/hyperparameter/m4/tabddpm/tabddpm-m4-20260504_182836/output/info.json @@ -0,0 +1,29 @@ +{ + "name": "benchmark_dataset", + "task_type": "regression", + "n_num_features": 3, + "n_cat_features": 3, + "train_size": 2217, + "num_col_idx": [ + 0, + 1, + 2 + ], + "cat_col_idx": [ + 3, + 4, + 5 + ], + "target_col_idx": [ + 6 + ], + "column_names": [ + "age", + "bmi", + "children", + "sex", + "smoker", + "region", + "charges" + ] +} \ No newline at end of file diff --git a/hyperparameter/m4/tabddpm/tabddpm-m4-20260504_182836/output/loss.csv b/hyperparameter/m4/tabddpm/tabddpm-m4-20260504_182836/output/loss.csv new file mode 100644 index 0000000000000000000000000000000000000000..3da7c73f9d0ba838deb25b723a91815a61aab204 --- /dev/null +++ b/hyperparameter/m4/tabddpm/tabddpm-m4-20260504_182836/output/loss.csv @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:edfe9e49b81be848f13488d277888ef9fa80dba0b1aaea3db0d973487be57faf +size 1502 diff --git a/hyperparameter/m4/tabddpm/tabddpm-m4-20260504_182836/output/model.pt b/hyperparameter/m4/tabddpm/tabddpm-m4-20260504_182836/output/model.pt new file mode 100644 index 0000000000000000000000000000000000000000..ee1c6f8c5af9337e71c6d3f6f8879ed9682a3f57 --- /dev/null +++ b/hyperparameter/m4/tabddpm/tabddpm-m4-20260504_182836/output/model.pt @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:9d48fe15a35c8b63f73a2053ccc3691a347d09aa4e28b6f2a335cb5c8623ba1b +size 550673 diff --git a/hyperparameter/m4/tabddpm/tabddpm-m4-20260504_182836/output/model_ema.pt b/hyperparameter/m4/tabddpm/tabddpm-m4-20260504_182836/output/model_ema.pt new file mode 100644 index 0000000000000000000000000000000000000000..97bdf6a93e97345e5a8c17918ecda3d30c770730 --- /dev/null +++ b/hyperparameter/m4/tabddpm/tabddpm-m4-20260504_182836/output/model_ema.pt @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:2bcb545f8e3ff78e5f2f2a5beed22a6146629e04bdf80c5a975a62aaf542f625 +size 551585 diff --git a/hyperparameter/m4/tabddpm/tabddpm-m4-20260504_182836/output/y_train.npy b/hyperparameter/m4/tabddpm/tabddpm-m4-20260504_182836/output/y_train.npy new file mode 100644 index 0000000000000000000000000000000000000000..73b8d6c3258989047d17afc0bc8c231f615e8ab6 --- /dev/null +++ b/hyperparameter/m4/tabddpm/tabddpm-m4-20260504_182836/output/y_train.npy @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:2ebaf2c1bb96a0e9e9032e11c3367eecbbb27dc5b5ef037fd4406551fcf68b7e +size 17864 diff --git a/hyperparameter/m4/tabddpm/tabddpm-m4-20260504_182836/public_gate/normalized_schema_snapshot.json b/hyperparameter/m4/tabddpm/tabddpm-m4-20260504_182836/public_gate/normalized_schema_snapshot.json new file mode 100644 index 0000000000000000000000000000000000000000..31ed9818686b11907df75e872e4ffbe010330880 --- /dev/null +++ b/hyperparameter/m4/tabddpm/tabddpm-m4-20260504_182836/public_gate/normalized_schema_snapshot.json @@ -0,0 +1,147 @@ +{ + "dataset_id": "m4", + "target_column": "charges", + "task_type": "regression", + "columns": [ + { + "name": "age", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 47, + "unique_ratio": 0.0212, + "example_values": [ + "46", + "38", + "19", + "27", + "26" + ] + } + }, + { + "name": "sex", + "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.000902, + "example_values": [ + "female", + "male" + ] + } + }, + { + "name": "bmi", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 538, + "unique_ratio": 0.24267, + "example_values": [ + "23.655", + "19.3", + "30.59", + "32.67", + "29.45" + ] + } + }, + { + "name": "children", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 6, + "unique_ratio": 0.002706, + "example_values": [ + "1", + "0", + "3", + "2", + "5" + ] + } + }, + { + "name": "smoker", + "role": "feature", + "semantic_type": "boolean", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 2, + "unique_ratio": 0.000902, + "example_values": [ + "yes", + "no" + ] + } + }, + { + "name": "region", + "role": "feature", + "semantic_type": "categorical", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 4, + "unique_ratio": 0.001804, + "example_values": [ + "northwest", + "southwest", + "southeast", + "northeast" + ] + } + }, + { + "name": "charges", + "role": "target", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 1281, + "unique_ratio": 0.577808, + "example_values": [ + "21677.28345", + "15820.699", + "1639.5631", + "2497.0383", + "2897.3235" + ] + } + } + ] +} \ No newline at end of file diff --git a/hyperparameter/m4/tabddpm/tabddpm-m4-20260504_182836/public_gate/public_gate_report.json b/hyperparameter/m4/tabddpm/tabddpm-m4-20260504_182836/public_gate/public_gate_report.json new file mode 100644 index 0000000000000000000000000000000000000000..e7a25408e2574124629ea9437356551e4d6f4790 --- /dev/null +++ b/hyperparameter/m4/tabddpm/tabddpm-m4-20260504_182836/public_gate/public_gate_report.json @@ -0,0 +1,37 @@ +{ + "dataset_id": "m4", + "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": "charges", + "task_type": "regression", + "input_splits": { + "train": "/data/jialinzhang/SynthesizePipeline-server/DatasetNew/m4/m4-train.csv", + "val": "/data/jialinzhang/SynthesizePipeline-server/DatasetNew/m4/m4-val.csv", + "test": "/data/jialinzhang/SynthesizePipeline-server/DatasetNew/m4/m4-test.csv" + } +} \ No newline at end of file diff --git a/hyperparameter/m4/tabddpm/tabddpm-m4-20260504_182836/public_gate/staged_input_manifest.json b/hyperparameter/m4/tabddpm/tabddpm-m4-20260504_182836/public_gate/staged_input_manifest.json new file mode 100644 index 0000000000000000000000000000000000000000..92c671fb71e0e4ced632fa3f924fd130aebcbd55 --- /dev/null +++ b/hyperparameter/m4/tabddpm/tabddpm-m4-20260504_182836/public_gate/staged_input_manifest.json @@ -0,0 +1,152 @@ +{ + "dataset_id": "m4", + "target_column": "charges", + "task_type": "regression", + "train_csv": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/m4/tabddpm/tabddpm-m4-20260504_182836/staged/public/train.csv", + "val_csv": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/m4/tabddpm/tabddpm-m4-20260504_182836/staged/public/val.csv", + "test_csv": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/m4/tabddpm/tabddpm-m4-20260504_182836/staged/public/test.csv", + "features_json": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/m4/tabddpm/tabddpm-m4-20260504_182836/staged/public/staged_features.json", + "public_gate_report": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/m4/tabddpm/tabddpm-m4-20260504_182836/public_gate/public_gate_report.json", + "column_schema": [ + { + "name": "age", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 47, + "unique_ratio": 0.0212, + "example_values": [ + "46", + "38", + "19", + "27", + "26" + ] + } + }, + { + "name": "sex", + "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.000902, + "example_values": [ + "female", + "male" + ] + } + }, + { + "name": "bmi", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 538, + "unique_ratio": 0.24267, + "example_values": [ + "23.655", + "19.3", + "30.59", + "32.67", + "29.45" + ] + } + }, + { + "name": "children", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 6, + "unique_ratio": 0.002706, + "example_values": [ + "1", + "0", + "3", + "2", + "5" + ] + } + }, + { + "name": "smoker", + "role": "feature", + "semantic_type": "boolean", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 2, + "unique_ratio": 0.000902, + "example_values": [ + "yes", + "no" + ] + } + }, + { + "name": "region", + "role": "feature", + "semantic_type": "categorical", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 4, + "unique_ratio": 0.001804, + "example_values": [ + "northwest", + "southwest", + "southeast", + "northeast" + ] + } + }, + { + "name": "charges", + "role": "target", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 1281, + "unique_ratio": 0.577808, + "example_values": [ + "21677.28345", + "15820.699", + "1639.5631", + "2497.0383", + "2897.3235" + ] + } + } + ] +} \ No newline at end of file diff --git a/hyperparameter/m4/tabddpm/tabddpm-m4-20260504_182836/run_config.json b/hyperparameter/m4/tabddpm/tabddpm-m4-20260504_182836/run_config.json new file mode 100644 index 0000000000000000000000000000000000000000..413bb3a2492aa71eb9a28a005c94abd5cb0ea981 --- /dev/null +++ b/hyperparameter/m4/tabddpm/tabddpm-m4-20260504_182836/run_config.json @@ -0,0 +1,45 @@ +{ + "schema_version": 1, + "recorded_at": "2026-05-04T18:28:36", + "dataset_id": "m4", + "model": "tabddpm", + "work_dir": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/m4/tabddpm/tabddpm-m4-20260504_182836", + "dataset_source_requested": "new", + "dataset_source_resolved": "new", + "cli_args": { + "model": "tabddpm", + "dataset": "m4", + "dataset_source": "new", + "train": true, + "generate": true, + "num_rows": 0, + "epochs": null, + "output_dir": null, + "model_dir": null, + "work_dir": null, + "resume": false, + "no_stats": false + }, + "resolved": { + "num_rows": 2217, + "model_path": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/m4/tabddpm/tabddpm-m4-20260504_182836", + "output_csv": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/m4/tabddpm/tabddpm-m4-20260504_182836/tabddpm-m4-2217-20260504_182943.csv" + }, + "input_artifacts": { + "public_gate_report": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/m4/tabddpm/tabddpm-m4-20260504_182836/public_gate/public_gate_report.json", + "public_manifest": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/m4/tabddpm/tabddpm-m4-20260504_182836/public_gate/staged_input_manifest.json", + "model_manifest": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/m4/tabddpm/tabddpm-m4-20260504_182836/staged/tabddpm/model_input_manifest.json", + "train_csv": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/m4/tabddpm/tabddpm-m4-20260504_182836/staged/public/train.csv", + "features_json": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/m4/tabddpm/tabddpm-m4-20260504_182836/staged/public/staged_features.json", + "target_column": "charges", + "task_type": "regression" + }, + "env_overrides": { + "BENCHMARK_TABDDPM_GPUS": "device=3", + "TABDDPM_NUM_TIMESTEPS": "1000", + "TABDDPM_SAMPLE_BATCH_SIZE": "256", + "TABDDPM_STEPS_PER_EPOCH": "100", + "TABDDPM_TRAIN_BATCH_SIZE": "256", + "TABDDPM_TRAIN_LR": "0.001" + } +} \ No newline at end of file diff --git a/hyperparameter/m4/tabddpm/tabddpm-m4-20260504_182836/runtime_result.json b/hyperparameter/m4/tabddpm/tabddpm-m4-20260504_182836/runtime_result.json new file mode 100644 index 0000000000000000000000000000000000000000..7fb77fea92f6859842766dc506f5c37a1a2dc357 --- /dev/null +++ b/hyperparameter/m4/tabddpm/tabddpm-m4-20260504_182836/runtime_result.json @@ -0,0 +1,27 @@ +{ + "dataset_id": "m4", + "model": "tabddpm", + "run_id": "tabddpm-m4-20260504_182836", + "public_gate_status": "pass", + "adapter_ready_status": "pass", + "train_status": "success", + "generate_status": "success", + "reason_code": null, + "reason_detail": null, + "artifacts": { + "synthetic_csv": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/m4/tabddpm/tabddpm-m4-20260504_182836/tabddpm-m4-2217-20260504_182943.csv", + "model_path": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/m4/tabddpm/tabddpm-m4-20260504_182836" + }, + "timings": { + "train": { + "started_at": "2026-05-04T18:28:36", + "ended_at": "2026-05-04T18:29:43", + "duration_sec": 67.184 + }, + "generate": { + "started_at": "2026-05-04T18:29:43", + "ended_at": "2026-05-04T18:30:33", + "duration_sec": 49.259 + } + } +} \ No newline at end of file diff --git a/hyperparameter/m4/tabddpm/tabddpm-m4-20260504_182836/staged/public/staged_features.json b/hyperparameter/m4/tabddpm/tabddpm-m4-20260504_182836/staged/public/staged_features.json new file mode 100644 index 0000000000000000000000000000000000000000..d6acd098c35111f423f3ffff2cfd1754bc5dfebc --- /dev/null +++ b/hyperparameter/m4/tabddpm/tabddpm-m4-20260504_182836/staged/public/staged_features.json @@ -0,0 +1,37 @@ +[ + { + "feature_name": "age", + "data_type": "continuous", + "is_target": false + }, + { + "feature_name": "sex", + "data_type": "categorical", + "is_target": false + }, + { + "feature_name": "bmi", + "data_type": "continuous", + "is_target": false + }, + { + "feature_name": "children", + "data_type": "continuous", + "is_target": false + }, + { + "feature_name": "smoker", + "data_type": "binary", + "is_target": false + }, + { + "feature_name": "region", + "data_type": "categorical", + "is_target": false + }, + { + "feature_name": "charges", + "data_type": "continuous", + "is_target": true + } +] \ No newline at end of file diff --git a/hyperparameter/m4/tabddpm/tabddpm-m4-20260504_182836/staged/public/test.csv b/hyperparameter/m4/tabddpm/tabddpm-m4-20260504_182836/staged/public/test.csv new file mode 100644 index 0000000000000000000000000000000000000000..c88a2e7cfcd715bb421cb56eb078033da45c4dc8 --- /dev/null +++ b/hyperparameter/m4/tabddpm/tabddpm-m4-20260504_182836/staged/public/test.csv @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:4c541b677fb2d45c5bc79338eeee9fd8c91484b195a0c2c546c2fbabf113b7ea +size 11298 diff --git a/hyperparameter/m4/tabddpm/tabddpm-m4-20260504_182836/staged/public/train.csv b/hyperparameter/m4/tabddpm/tabddpm-m4-20260504_182836/staged/public/train.csv new file mode 100644 index 0000000000000000000000000000000000000000..5a05019d786529e0617291766c4fbe016ca01bf5 --- /dev/null +++ b/hyperparameter/m4/tabddpm/tabddpm-m4-20260504_182836/staged/public/train.csv @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:614ebfac5f41d6f661aff675fa18c0f933a8d9bcc77ea71b7b2360c2f0155837 +size 90069 diff --git a/hyperparameter/m4/tabddpm/tabddpm-m4-20260504_182836/staged/public/val.csv b/hyperparameter/m4/tabddpm/tabddpm-m4-20260504_182836/staged/public/val.csv new file mode 100644 index 0000000000000000000000000000000000000000..d78fe5ad1537c437ba9ac2629f2aa60a6c17e708 --- /dev/null +++ b/hyperparameter/m4/tabddpm/tabddpm-m4-20260504_182836/staged/public/val.csv @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:e55f5edbe7942ff01630de91a9c70dfbc6445eba76c7b970350364546b67c2d7 +size 11218 diff --git a/hyperparameter/m4/tabddpm/tabddpm-m4-20260504_182836/staged/tabddpm/adapter_report.json b/hyperparameter/m4/tabddpm/tabddpm-m4-20260504_182836/staged/tabddpm/adapter_report.json new file mode 100644 index 0000000000000000000000000000000000000000..cb054430fddc2057418850a966412fa12ed62450 --- /dev/null +++ b/hyperparameter/m4/tabddpm/tabddpm-m4-20260504_182836/staged/tabddpm/adapter_report.json @@ -0,0 +1,7 @@ +{ + "adapter_ready_status": "pass", + "adapter_fail_reason_code": null, + "adapter_fail_detail": null, + "adapter_transforms_applied": [], + "model_input_manifest": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/m4/tabddpm/tabddpm-m4-20260504_182836/staged/tabddpm/model_input_manifest.json" +} \ No newline at end of file diff --git a/hyperparameter/m4/tabddpm/tabddpm-m4-20260504_182836/staged/tabddpm/adapter_transforms_applied.json b/hyperparameter/m4/tabddpm/tabddpm-m4-20260504_182836/staged/tabddpm/adapter_transforms_applied.json new file mode 100644 index 0000000000000000000000000000000000000000..0637a088a01e8ddab3bf3fa98dbe804cbde1a0dc --- /dev/null +++ b/hyperparameter/m4/tabddpm/tabddpm-m4-20260504_182836/staged/tabddpm/adapter_transforms_applied.json @@ -0,0 +1 @@ +[] \ No newline at end of file diff --git a/hyperparameter/m4/tabddpm/tabddpm-m4-20260504_182836/staged/tabddpm/model_input_manifest.json b/hyperparameter/m4/tabddpm/tabddpm-m4-20260504_182836/staged/tabddpm/model_input_manifest.json new file mode 100644 index 0000000000000000000000000000000000000000..08ee81bd166a7883e28ab5eda3775dc9b709fb9f --- /dev/null +++ b/hyperparameter/m4/tabddpm/tabddpm-m4-20260504_182836/staged/tabddpm/model_input_manifest.json @@ -0,0 +1,154 @@ +{ + "dataset_id": "m4", + "model": "tabddpm", + "target_column": "charges", + "task_type": "regression", + "column_schema": [ + { + "name": "age", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 47, + "unique_ratio": 0.0212, + "example_values": [ + "46", + "38", + "19", + "27", + "26" + ] + } + }, + { + "name": "sex", + "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.000902, + "example_values": [ + "female", + "male" + ] + } + }, + { + "name": "bmi", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 538, + "unique_ratio": 0.24267, + "example_values": [ + "23.655", + "19.3", + "30.59", + "32.67", + "29.45" + ] + } + }, + { + "name": "children", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 6, + "unique_ratio": 0.002706, + "example_values": [ + "1", + "0", + "3", + "2", + "5" + ] + } + }, + { + "name": "smoker", + "role": "feature", + "semantic_type": "boolean", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 2, + "unique_ratio": 0.000902, + "example_values": [ + "yes", + "no" + ] + } + }, + { + "name": "region", + "role": "feature", + "semantic_type": "categorical", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 4, + "unique_ratio": 0.001804, + "example_values": [ + "northwest", + "southwest", + "southeast", + "northeast" + ] + } + }, + { + "name": "charges", + "role": "target", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 1281, + "unique_ratio": 0.577808, + "example_values": [ + "21677.28345", + "15820.699", + "1639.5631", + "2497.0383", + "2897.3235" + ] + } + } + ], + "public_manifest": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/m4/tabddpm/tabddpm-m4-20260504_182836/public_gate/staged_input_manifest.json", + "train_csv": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/m4/tabddpm/tabddpm-m4-20260504_182836/staged/public/train.csv", + "val_csv": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/m4/tabddpm/tabddpm-m4-20260504_182836/staged/public/val.csv", + "test_csv": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/m4/tabddpm/tabddpm-m4-20260504_182836/staged/public/test.csv", + "features_json": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/m4/tabddpm/tabddpm-m4-20260504_182836/staged/public/staged_features.json", + "public_gate_report": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/m4/tabddpm/tabddpm-m4-20260504_182836/public_gate/public_gate_report.json" +} \ No newline at end of file diff --git a/hyperparameter/m4/tabddpm/tabddpm-m4-20260504_182836/tabddpm-m4-2217-20260504_182943.csv b/hyperparameter/m4/tabddpm/tabddpm-m4-20260504_182836/tabddpm-m4-2217-20260504_182943.csv new file mode 100644 index 0000000000000000000000000000000000000000..d7ab2b8fba9d59359cf0a15e1bb2a09d7879cfb7 --- /dev/null +++ b/hyperparameter/m4/tabddpm/tabddpm-m4-20260504_182836/tabddpm-m4-2217-20260504_182943.csv @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:587d350f963f532d1da118bf30f3db84b96b33ef3b0aa2964451e3619cf42c34 +size 102447 diff --git a/hyperparameter/m4/tabddpm/tabddpm-m4-20260504_182836/train_20260504_182836.log b/hyperparameter/m4/tabddpm/tabddpm-m4-20260504_182836/train_20260504_182836.log new file mode 100644 index 0000000000000000000000000000000000000000..5805600d0839b02cb945e9d6c9bcfe022c3e3fbf --- /dev/null +++ b/hyperparameter/m4/tabddpm/tabddpm-m4-20260504_182836/train_20260504_182836.log @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:269a870443ea417a64480f444213f892b702d5ef99b015923c86a2250370655b +size 9176 diff --git a/hyperparameter/m4/tabddpm/tabddpm-m4-20260504_183046/_tabddpm_sample_r0.py b/hyperparameter/m4/tabddpm/tabddpm-m4-20260504_183046/_tabddpm_sample_r0.py new file mode 100644 index 0000000000000000000000000000000000000000..cac4233685e536de2ddae2daf487aae2d0c5279d --- /dev/null +++ b/hyperparameter/m4/tabddpm/tabddpm-m4-20260504_183046/_tabddpm_sample_r0.py @@ -0,0 +1,66 @@ +import os, sys, subprocess, json +import numpy as np +import pandas as pd + +tabddpm_root = "/workspace/tabddpm/code" +assert os.path.isdir(tabddpm_root), f"TabDDPM source not mounted: {tabddpm_root}" +env = os.environ.copy() +env["PYTHONPATH"] = tabddpm_root + (os.pathsep + env.get("PYTHONPATH", "")) + +# Reuse the compat wrapper (patches collections.Sequence for skorch) +wrapper = os.path.join(tabddpm_root, "_compat_run.py") +if not os.path.exists(wrapper): + with open(wrapper, "w") as f: + f.write( + "import collections, collections.abc\n" + "for _a in ('Sequence','MutableSequence','MutableMapping','Mapping'," + "'MutableSet','Set','Callable','Iterable','Iterator'):\n" + " if not hasattr(collections, _a): setattr(collections, _a, getattr(collections.abc, _a, None))\n" + "import sys, runpy\n" + "sys.argv = sys.argv[1:]\n" + "runpy.run_path(sys.argv[0], run_name='__main__')\n" + ) + +print(f"[TabDDPM] Sampling 2217 rows") +ret = subprocess.run( + [sys.executable, wrapper, "scripts/pipeline.py", + "--config", "/work/output-Benchmark-trainonly-v1/m4/tabddpm/tabddpm-m4-20260504_183046/config_sample_20260504_183226_r0.toml", + "--sample"], + cwd=tabddpm_root, + env=env +) +if ret.returncode != 0: + sys.exit(ret.returncode) + +# 将 .npy 输出转为 CSV(npy 在 TabDDPM 的 parent_dir,即 npy_dir) +info_path = "/work/output-Benchmark-trainonly-v1/m4/tabddpm/tabddpm-m4-20260504_183046/data/info.json" +with open(info_path) as f: + info = json.load(f) + +output_dir = "/work/output-Benchmark-trainonly-v1/m4/tabddpm/tabddpm-m4-20260504_183046/output" +col_names = info.get("column_names", []) + +parts = [] +x_num_path = os.path.join(output_dir, "X_num_train.npy") +x_cat_path = os.path.join(output_dir, "X_cat_train.npy") +y_path = os.path.join(output_dir, "y_train.npy") + +if os.path.exists(x_num_path): + parts.append(np.load(x_num_path, allow_pickle=True)) +if os.path.exists(x_cat_path): + parts.append(np.load(x_cat_path, allow_pickle=True).astype(float)) +if os.path.exists(y_path): + y = np.load(y_path, allow_pickle=True) + parts.append(y.reshape(-1, 1) if y.ndim == 1 else y) + +if parts: + combined = np.concatenate(parts, axis=1) + if col_names and len(col_names) == combined.shape[1]: + df = pd.DataFrame(combined, columns=col_names) + else: + df = pd.DataFrame(combined) + df.to_csv("/work/output-Benchmark-trainonly-v1/m4/tabddpm/tabddpm-m4-20260504_183046/tabddpm-m4-2217-20260504_183226.csv", index=False) + print(f"[TabDDPM] Saved {len(df)} rows -> /work/output-Benchmark-trainonly-v1/m4/tabddpm/tabddpm-m4-20260504_183046/tabddpm-m4-2217-20260504_183226.csv") +else: + print("[TabDDPM] WARNING: No output .npy files found") + sys.exit(1) diff --git a/hyperparameter/m4/tabddpm/tabddpm-m4-20260504_183046/_tabddpm_train.py b/hyperparameter/m4/tabddpm/tabddpm-m4-20260504_183046/_tabddpm_train.py new file mode 100644 index 0000000000000000000000000000000000000000..13fe78a81c56f44d844019cdec4d5a6e29034dc4 --- /dev/null +++ b/hyperparameter/m4/tabddpm/tabddpm-m4-20260504_183046/_tabddpm_train.py @@ -0,0 +1,32 @@ +import os, sys, subprocess + +tabddpm_root = "/workspace/tabddpm/code" +assert os.path.isdir(tabddpm_root), f"TabDDPM source not mounted: {tabddpm_root}" +env = os.environ.copy() +env["PYTHONPATH"] = tabddpm_root + (os.pathsep + env.get("PYTHONPATH", "")) + +# Write a wrapper that patches collections.Sequence (removed in Python 3.10+) +# before running pipeline.py - needed because skorch uses old API +wrapper = os.path.join(tabddpm_root, "_compat_run.py") +with open(wrapper, "w") as f: + f.write( + "import collections, collections.abc\n" + "for _a in ('Sequence','MutableSequence','MutableMapping','Mapping'," + "'MutableSet','Set','Callable','Iterable','Iterator'):\n" + " if not hasattr(collections, _a): setattr(collections, _a, getattr(collections.abc, _a, None))\n" + "import sys, runpy\n" + "sys.argv = sys.argv[1:]\n" + "runpy.run_path(sys.argv[0], run_name='__main__')\n" + ) + +print(f"[TabDDPM] Training, config=/work/output-Benchmark-trainonly-v1/m4/tabddpm/tabddpm-m4-20260504_183046/config.toml") +ret = subprocess.run( + [sys.executable, wrapper, "scripts/pipeline.py", + "--config", "/work/output-Benchmark-trainonly-v1/m4/tabddpm/tabddpm-m4-20260504_183046/config.toml", + "--train"], + cwd=tabddpm_root, + env=env +) +if ret.returncode != 0: + sys.exit(ret.returncode) +print("[TabDDPM] Training complete") diff --git a/hyperparameter/m4/tabddpm/tabddpm-m4-20260504_183046/config.toml b/hyperparameter/m4/tabddpm/tabddpm-m4-20260504_183046/config.toml new file mode 100644 index 0000000000000000000000000000000000000000..d12cd0ee556c635e0f9fa68ebafe322040257c34 --- /dev/null +++ b/hyperparameter/m4/tabddpm/tabddpm-m4-20260504_183046/config.toml @@ -0,0 +1,39 @@ +seed = 0 +parent_dir = "/work/output-Benchmark-trainonly-v1/m4/tabddpm/tabddpm-m4-20260504_183046/output" +real_data_path = "/work/output-Benchmark-trainonly-v1/m4/tabddpm/tabddpm-m4-20260504_183046/data" +model_type = "mlp" +num_numerical_features = 3 +device = "cuda:0" + +[model_params] +d_in = 6 +num_classes = 0 +is_y_cond = true + +[model_params.rtdl_params] +d_layers = [256, 256] +dropout = 0.0 + +[diffusion_params] +num_timesteps = 1000 +gaussian_loss_type = "mse" + +[train.main] +steps = 8000 +lr = 0.0005 +weight_decay = 0.0 +batch_size = 128 + +[train.T] +seed = 0 +normalization = "quantile" +num_nan_policy = "__none__" +cat_nan_policy = "__none__" +cat_min_frequency = "__none__" +cat_encoding = "__none__" +y_policy = "default" + +[sample] +num_samples = 1000 +batch_size = 128 +seed = 0 diff --git a/hyperparameter/m4/tabddpm/tabddpm-m4-20260504_183046/config_sample_20260504_183226_r0.toml b/hyperparameter/m4/tabddpm/tabddpm-m4-20260504_183046/config_sample_20260504_183226_r0.toml new file mode 100644 index 0000000000000000000000000000000000000000..5df348143f765986ff4aeb11e1aebc772e33f5d8 --- /dev/null +++ b/hyperparameter/m4/tabddpm/tabddpm-m4-20260504_183046/config_sample_20260504_183226_r0.toml @@ -0,0 +1,39 @@ +seed = 0 +parent_dir = "/work/output-Benchmark-trainonly-v1/m4/tabddpm/tabddpm-m4-20260504_183046/output" +real_data_path = "/work/output-Benchmark-trainonly-v1/m4/tabddpm/tabddpm-m4-20260504_183046/data" +model_type = "mlp" +num_numerical_features = 3 +device = "cuda:0" + +[model_params] +d_in = 6 +num_classes = 0 +is_y_cond = true + +[model_params.rtdl_params] +d_layers = [256, 256] +dropout = 0.0 + +[diffusion_params] +num_timesteps = 1000 +gaussian_loss_type = "mse" + +[train.main] +steps = 8000 +lr = 0.0005 +weight_decay = 0.0 +batch_size = 128 + +[train.T] +seed = 0 +normalization = "quantile" +num_nan_policy = "__none__" +cat_nan_policy = "__none__" +cat_min_frequency = "__none__" +cat_encoding = "__none__" +y_policy = "default" + +[sample] +num_samples = 2217 +batch_size = 128 +seed = 0 diff --git a/hyperparameter/m4/tabddpm/tabddpm-m4-20260504_183046/data/X_cat_train.npy b/hyperparameter/m4/tabddpm/tabddpm-m4-20260504_183046/data/X_cat_train.npy new file mode 100644 index 0000000000000000000000000000000000000000..2f6b8b23f5768174aab4879e2a30371e9a3d0ead --- /dev/null +++ b/hyperparameter/m4/tabddpm/tabddpm-m4-20260504_183046/data/X_cat_train.npy @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:c91af7ac26382e392a70536d3dbb592c04ba5e4f495d1e3c364416b9ef704a07 +size 53336 diff --git a/hyperparameter/m4/tabddpm/tabddpm-m4-20260504_183046/data/X_num_train.npy b/hyperparameter/m4/tabddpm/tabddpm-m4-20260504_183046/data/X_num_train.npy new file mode 100644 index 0000000000000000000000000000000000000000..dc149960a879e21fd1aeed7de2419851175627e7 --- /dev/null +++ b/hyperparameter/m4/tabddpm/tabddpm-m4-20260504_183046/data/X_num_train.npy @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:4a21bd2fd5a226c07d543ddf78616a8edb2d52b51097fc7a5df5b05612267af8 +size 26732 diff --git a/hyperparameter/m4/tabddpm/tabddpm-m4-20260504_183046/data/info.json b/hyperparameter/m4/tabddpm/tabddpm-m4-20260504_183046/data/info.json new file mode 100644 index 0000000000000000000000000000000000000000..fdcf5357ff78dd47dfcca0748443a009323ebfba --- /dev/null +++ b/hyperparameter/m4/tabddpm/tabddpm-m4-20260504_183046/data/info.json @@ -0,0 +1,29 @@ +{ + "name": "benchmark_dataset", + "task_type": "regression", + "n_num_features": 3, + "n_cat_features": 3, + "train_size": 2217, + "num_col_idx": [ + 0, + 1, + 2 + ], + "cat_col_idx": [ + 3, + 4, + 5 + ], + "target_col_idx": [ + 6 + ], + "column_names": [ + "age", + "bmi", + "children", + "sex", + "smoker", + "region", + "charges" + ] +} \ No newline at end of file diff --git a/hyperparameter/m4/tabddpm/tabddpm-m4-20260504_183046/data/y_train.npy b/hyperparameter/m4/tabddpm/tabddpm-m4-20260504_183046/data/y_train.npy new file mode 100644 index 0000000000000000000000000000000000000000..717f965e62bd5595d6df01d1ad7851fc5768dc29 --- /dev/null +++ b/hyperparameter/m4/tabddpm/tabddpm-m4-20260504_183046/data/y_train.npy @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:0c64fea6ad5ed2f8441ef5212c726195dbf53e1c81298427bddd18eb20e35cf2 +size 8996 diff --git a/hyperparameter/m4/tabddpm/tabddpm-m4-20260504_183046/gen_20260504_183226_r0.log b/hyperparameter/m4/tabddpm/tabddpm-m4-20260504_183046/gen_20260504_183226_r0.log new file mode 100644 index 0000000000000000000000000000000000000000..25db19ed82ddf7a20d5ae9ddb4d4131e00d097d1 --- /dev/null +++ b/hyperparameter/m4/tabddpm/tabddpm-m4-20260504_183046/gen_20260504_183226_r0.log @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:e53812fbc6e6ba2623b8e1e845a154a2b31588c05ab40dfcc047ffd10d556f7b +size 378664 diff --git a/hyperparameter/m4/tabddpm/tabddpm-m4-20260504_183046/input_snapshot.json b/hyperparameter/m4/tabddpm/tabddpm-m4-20260504_183046/input_snapshot.json new file mode 100644 index 0000000000000000000000000000000000000000..e4dd477396c560c94b19cc8b62c2e927481b290f --- /dev/null +++ b/hyperparameter/m4/tabddpm/tabddpm-m4-20260504_183046/input_snapshot.json @@ -0,0 +1,36 @@ +{ + "dataset_id": "m4", + "model": "tabddpm", + "inputs": { + "train_csv": { + "path": "/data/jialinzhang/SynthesizePipeline-server/DatasetNew/m4/m4-train.csv", + "exists": true, + "size": 92191, + "sha256": "396b9d409ca21bf4a4cd329bdf5b7796aa0ae6356fa8d89b8eb669b5880b81f1" + }, + "val_csv": { + "path": "/data/jialinzhang/SynthesizePipeline-server/DatasetNew/m4/m4-val.csv", + "exists": true, + "size": 11482, + "sha256": "ee3c247d02f56e1687d03c381e13125d6a3a2a411ac7f202ba8520a4be9f1784" + }, + "test_csv": { + "path": "/data/jialinzhang/SynthesizePipeline-server/DatasetNew/m4/m4-test.csv", + "exists": true, + "size": 11559, + "sha256": "cadb9941124001b8fa7cb1ebae43b70a9ca56294f4df4d3c2f22c164c41757d4" + }, + "profile_json": { + "path": "/data/jialinzhang/SynthesizePipeline-server/DatasetNew/artifacts/data_core/tabular/m4/m4-dataset_profile.json", + "exists": true, + "size": 3336, + "sha256": "83e2764810e4a0e8cdece3a28dbd9134b7c9df6f2e56953e46d024ad2c4e035f" + }, + "contract_json": { + "path": "/data/jialinzhang/SynthesizePipeline-server/DatasetNew/artifacts/data_core/tabular/m4/m4-dataset_contract_v1.json", + "exists": true, + "size": 3810, + "sha256": "c23641b258629a845b164099bd0132886f8f6d0100e990494e0f92540f8987d9" + } + } +} \ No newline at end of file diff --git a/hyperparameter/m4/tabddpm/tabddpm-m4-20260504_183046/output/X_cat_train.npy b/hyperparameter/m4/tabddpm/tabddpm-m4-20260504_183046/output/X_cat_train.npy new file mode 100644 index 0000000000000000000000000000000000000000..cf92d4bf537d0bcfefa54729bc02d1e05c6fb014 --- /dev/null +++ b/hyperparameter/m4/tabddpm/tabddpm-m4-20260504_183046/output/X_cat_train.npy @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:c0de818fbc27e56d7f7e0db93d0a61cc048d6559abb4d5729ab0a622c6e25896 +size 13599 diff --git a/hyperparameter/m4/tabddpm/tabddpm-m4-20260504_183046/output/X_cat_unnorm.npy b/hyperparameter/m4/tabddpm/tabddpm-m4-20260504_183046/output/X_cat_unnorm.npy new file mode 100644 index 0000000000000000000000000000000000000000..826f747ec693c020f5a8b5656e80c16312a53b42 --- /dev/null +++ b/hyperparameter/m4/tabddpm/tabddpm-m4-20260504_183046/output/X_cat_unnorm.npy @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:0dd675668f7bc5ce7b963aab0246503f31cd1e57dd82f30980d3b5aae9e9d6b7 +size 53336 diff --git a/hyperparameter/m4/tabddpm/tabddpm-m4-20260504_183046/output/X_num_train.npy b/hyperparameter/m4/tabddpm/tabddpm-m4-20260504_183046/output/X_num_train.npy new file mode 100644 index 0000000000000000000000000000000000000000..510333f4779b288a4e2d350aee5675ec0efae009 --- /dev/null +++ b/hyperparameter/m4/tabddpm/tabddpm-m4-20260504_183046/output/X_num_train.npy @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:2d8babd0fad89d12bce67b3dd02a971752c2a37bb068e61f66996460f9dd4229 +size 53336 diff --git a/hyperparameter/m4/tabddpm/tabddpm-m4-20260504_183046/output/X_num_unnorm.npy b/hyperparameter/m4/tabddpm/tabddpm-m4-20260504_183046/output/X_num_unnorm.npy new file mode 100644 index 0000000000000000000000000000000000000000..ca2cb607b1952eef568d4ff3a2fcfb6b8f55a76e --- /dev/null +++ b/hyperparameter/m4/tabddpm/tabddpm-m4-20260504_183046/output/X_num_unnorm.npy @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:172c3c4f9d8a02c970a9d0791f3b2f3baea7d5a851e55469184fef3ae6e7b693 +size 53336 diff --git a/hyperparameter/m4/tabddpm/tabddpm-m4-20260504_183046/output/config.toml b/hyperparameter/m4/tabddpm/tabddpm-m4-20260504_183046/output/config.toml new file mode 100644 index 0000000000000000000000000000000000000000..5df348143f765986ff4aeb11e1aebc772e33f5d8 --- /dev/null +++ b/hyperparameter/m4/tabddpm/tabddpm-m4-20260504_183046/output/config.toml @@ -0,0 +1,39 @@ +seed = 0 +parent_dir = "/work/output-Benchmark-trainonly-v1/m4/tabddpm/tabddpm-m4-20260504_183046/output" +real_data_path = "/work/output-Benchmark-trainonly-v1/m4/tabddpm/tabddpm-m4-20260504_183046/data" +model_type = "mlp" +num_numerical_features = 3 +device = "cuda:0" + +[model_params] +d_in = 6 +num_classes = 0 +is_y_cond = true + +[model_params.rtdl_params] +d_layers = [256, 256] +dropout = 0.0 + +[diffusion_params] +num_timesteps = 1000 +gaussian_loss_type = "mse" + +[train.main] +steps = 8000 +lr = 0.0005 +weight_decay = 0.0 +batch_size = 128 + +[train.T] +seed = 0 +normalization = "quantile" +num_nan_policy = "__none__" +cat_nan_policy = "__none__" +cat_min_frequency = "__none__" +cat_encoding = "__none__" +y_policy = "default" + +[sample] +num_samples = 2217 +batch_size = 128 +seed = 0 diff --git a/hyperparameter/m4/tabddpm/tabddpm-m4-20260504_183046/output/info.json b/hyperparameter/m4/tabddpm/tabddpm-m4-20260504_183046/output/info.json new file mode 100644 index 0000000000000000000000000000000000000000..fdcf5357ff78dd47dfcca0748443a009323ebfba --- /dev/null +++ b/hyperparameter/m4/tabddpm/tabddpm-m4-20260504_183046/output/info.json @@ -0,0 +1,29 @@ +{ + "name": "benchmark_dataset", + "task_type": "regression", + "n_num_features": 3, + "n_cat_features": 3, + "train_size": 2217, + "num_col_idx": [ + 0, + 1, + 2 + ], + "cat_col_idx": [ + 3, + 4, + 5 + ], + "target_col_idx": [ + 6 + ], + "column_names": [ + "age", + "bmi", + "children", + "sex", + "smoker", + "region", + "charges" + ] +} \ No newline at end of file diff --git a/hyperparameter/m4/tabddpm/tabddpm-m4-20260504_183046/output/loss.csv b/hyperparameter/m4/tabddpm/tabddpm-m4-20260504_183046/output/loss.csv new file mode 100644 index 0000000000000000000000000000000000000000..cf078d11258af203a0d5024e2dbbc3333dbdb9f8 --- /dev/null +++ b/hyperparameter/m4/tabddpm/tabddpm-m4-20260504_183046/output/loss.csv @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:c97b89592da0c16eb5ffc8e6a57c0b59281f5097af30b1cd8801da6e2a75ef0b +size 2447 diff --git a/hyperparameter/m4/tabddpm/tabddpm-m4-20260504_183046/output/model.pt b/hyperparameter/m4/tabddpm/tabddpm-m4-20260504_183046/output/model.pt new file mode 100644 index 0000000000000000000000000000000000000000..f195a6fab864c3227c2ece731db18b3423563732 --- /dev/null +++ b/hyperparameter/m4/tabddpm/tabddpm-m4-20260504_183046/output/model.pt @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:10e7a1043957148c94148cfc2b1551b197e9c5a5b6e12f33ecbc608359d7808b +size 550673 diff --git a/hyperparameter/m4/tabddpm/tabddpm-m4-20260504_183046/output/model_ema.pt b/hyperparameter/m4/tabddpm/tabddpm-m4-20260504_183046/output/model_ema.pt new file mode 100644 index 0000000000000000000000000000000000000000..78464c72fa34a63a4e3eed0dfc13f232f697b100 --- /dev/null +++ b/hyperparameter/m4/tabddpm/tabddpm-m4-20260504_183046/output/model_ema.pt @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:e7c7405218923118b46068c2c12c0f54f496bee2e4c2b9e813b14e886fab1b97 +size 551585 diff --git a/hyperparameter/m4/tabddpm/tabddpm-m4-20260504_183046/output/y_train.npy b/hyperparameter/m4/tabddpm/tabddpm-m4-20260504_183046/output/y_train.npy new file mode 100644 index 0000000000000000000000000000000000000000..73b8d6c3258989047d17afc0bc8c231f615e8ab6 --- /dev/null +++ b/hyperparameter/m4/tabddpm/tabddpm-m4-20260504_183046/output/y_train.npy @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:2ebaf2c1bb96a0e9e9032e11c3367eecbbb27dc5b5ef037fd4406551fcf68b7e +size 17864 diff --git a/hyperparameter/m4/tabddpm/tabddpm-m4-20260504_183046/public_gate/normalized_schema_snapshot.json b/hyperparameter/m4/tabddpm/tabddpm-m4-20260504_183046/public_gate/normalized_schema_snapshot.json new file mode 100644 index 0000000000000000000000000000000000000000..31ed9818686b11907df75e872e4ffbe010330880 --- /dev/null +++ b/hyperparameter/m4/tabddpm/tabddpm-m4-20260504_183046/public_gate/normalized_schema_snapshot.json @@ -0,0 +1,147 @@ +{ + "dataset_id": "m4", + "target_column": "charges", + "task_type": "regression", + "columns": [ + { + "name": "age", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 47, + "unique_ratio": 0.0212, + "example_values": [ + "46", + "38", + "19", + "27", + "26" + ] + } + }, + { + "name": "sex", + "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.000902, + "example_values": [ + "female", + "male" + ] + } + }, + { + "name": "bmi", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 538, + "unique_ratio": 0.24267, + "example_values": [ + "23.655", + "19.3", + "30.59", + "32.67", + "29.45" + ] + } + }, + { + "name": "children", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 6, + "unique_ratio": 0.002706, + "example_values": [ + "1", + "0", + "3", + "2", + "5" + ] + } + }, + { + "name": "smoker", + "role": "feature", + "semantic_type": "boolean", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 2, + "unique_ratio": 0.000902, + "example_values": [ + "yes", + "no" + ] + } + }, + { + "name": "region", + "role": "feature", + "semantic_type": "categorical", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 4, + "unique_ratio": 0.001804, + "example_values": [ + "northwest", + "southwest", + "southeast", + "northeast" + ] + } + }, + { + "name": "charges", + "role": "target", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 1281, + "unique_ratio": 0.577808, + "example_values": [ + "21677.28345", + "15820.699", + "1639.5631", + "2497.0383", + "2897.3235" + ] + } + } + ] +} \ No newline at end of file diff --git a/hyperparameter/m4/tabddpm/tabddpm-m4-20260504_183046/public_gate/public_gate_report.json b/hyperparameter/m4/tabddpm/tabddpm-m4-20260504_183046/public_gate/public_gate_report.json new file mode 100644 index 0000000000000000000000000000000000000000..e7a25408e2574124629ea9437356551e4d6f4790 --- /dev/null +++ b/hyperparameter/m4/tabddpm/tabddpm-m4-20260504_183046/public_gate/public_gate_report.json @@ -0,0 +1,37 @@ +{ + "dataset_id": "m4", + "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": "charges", + "task_type": "regression", + "input_splits": { + "train": "/data/jialinzhang/SynthesizePipeline-server/DatasetNew/m4/m4-train.csv", + "val": "/data/jialinzhang/SynthesizePipeline-server/DatasetNew/m4/m4-val.csv", + "test": "/data/jialinzhang/SynthesizePipeline-server/DatasetNew/m4/m4-test.csv" + } +} \ No newline at end of file diff --git a/hyperparameter/m4/tabddpm/tabddpm-m4-20260504_183046/public_gate/staged_input_manifest.json b/hyperparameter/m4/tabddpm/tabddpm-m4-20260504_183046/public_gate/staged_input_manifest.json new file mode 100644 index 0000000000000000000000000000000000000000..e445bbf645156e338aa27cf7722a919ce7a45daf --- /dev/null +++ b/hyperparameter/m4/tabddpm/tabddpm-m4-20260504_183046/public_gate/staged_input_manifest.json @@ -0,0 +1,152 @@ +{ + "dataset_id": "m4", + "target_column": "charges", + "task_type": "regression", + "train_csv": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/m4/tabddpm/tabddpm-m4-20260504_183046/staged/public/train.csv", + "val_csv": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/m4/tabddpm/tabddpm-m4-20260504_183046/staged/public/val.csv", + "test_csv": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/m4/tabddpm/tabddpm-m4-20260504_183046/staged/public/test.csv", + "features_json": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/m4/tabddpm/tabddpm-m4-20260504_183046/staged/public/staged_features.json", + "public_gate_report": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/m4/tabddpm/tabddpm-m4-20260504_183046/public_gate/public_gate_report.json", + "column_schema": [ + { + "name": "age", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 47, + "unique_ratio": 0.0212, + "example_values": [ + "46", + "38", + "19", + "27", + "26" + ] + } + }, + { + "name": "sex", + "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.000902, + "example_values": [ + "female", + "male" + ] + } + }, + { + "name": "bmi", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 538, + "unique_ratio": 0.24267, + "example_values": [ + "23.655", + "19.3", + "30.59", + "32.67", + "29.45" + ] + } + }, + { + "name": "children", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 6, + "unique_ratio": 0.002706, + "example_values": [ + "1", + "0", + "3", + "2", + "5" + ] + } + }, + { + "name": "smoker", + "role": "feature", + "semantic_type": "boolean", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 2, + "unique_ratio": 0.000902, + "example_values": [ + "yes", + "no" + ] + } + }, + { + "name": "region", + "role": "feature", + "semantic_type": "categorical", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 4, + "unique_ratio": 0.001804, + "example_values": [ + "northwest", + "southwest", + "southeast", + "northeast" + ] + } + }, + { + "name": "charges", + "role": "target", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 1281, + "unique_ratio": 0.577808, + "example_values": [ + "21677.28345", + "15820.699", + "1639.5631", + "2497.0383", + "2897.3235" + ] + } + } + ] +} \ No newline at end of file diff --git a/hyperparameter/m4/tabddpm/tabddpm-m4-20260504_183046/run_config.json b/hyperparameter/m4/tabddpm/tabddpm-m4-20260504_183046/run_config.json new file mode 100644 index 0000000000000000000000000000000000000000..51187555d7e605322a612eb6567784ef2d40efd3 --- /dev/null +++ b/hyperparameter/m4/tabddpm/tabddpm-m4-20260504_183046/run_config.json @@ -0,0 +1,45 @@ +{ + "schema_version": 1, + "recorded_at": "2026-05-04T18:30:46", + "dataset_id": "m4", + "model": "tabddpm", + "work_dir": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/m4/tabddpm/tabddpm-m4-20260504_183046", + "dataset_source_requested": "new", + "dataset_source_resolved": "new", + "cli_args": { + "model": "tabddpm", + "dataset": "m4", + "dataset_source": "new", + "train": true, + "generate": true, + "num_rows": 0, + "epochs": null, + "output_dir": null, + "model_dir": null, + "work_dir": null, + "resume": false, + "no_stats": false + }, + "resolved": { + "num_rows": 2217, + "model_path": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/m4/tabddpm/tabddpm-m4-20260504_183046", + "output_csv": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/m4/tabddpm/tabddpm-m4-20260504_183046/tabddpm-m4-2217-20260504_183226.csv" + }, + "input_artifacts": { + "public_gate_report": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/m4/tabddpm/tabddpm-m4-20260504_183046/public_gate/public_gate_report.json", + "public_manifest": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/m4/tabddpm/tabddpm-m4-20260504_183046/public_gate/staged_input_manifest.json", + "model_manifest": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/m4/tabddpm/tabddpm-m4-20260504_183046/staged/tabddpm/model_input_manifest.json", + "train_csv": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/m4/tabddpm/tabddpm-m4-20260504_183046/staged/public/train.csv", + "features_json": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/m4/tabddpm/tabddpm-m4-20260504_183046/staged/public/staged_features.json", + "target_column": "charges", + "task_type": "regression" + }, + "env_overrides": { + "BENCHMARK_TABDDPM_GPUS": "device=3", + "TABDDPM_NUM_TIMESTEPS": "1000", + "TABDDPM_SAMPLE_BATCH_SIZE": "128", + "TABDDPM_STEPS_PER_EPOCH": "160", + "TABDDPM_TRAIN_BATCH_SIZE": "128", + "TABDDPM_TRAIN_LR": "0.0005" + } +} \ No newline at end of file diff --git a/hyperparameter/m4/tabddpm/tabddpm-m4-20260504_183046/runtime_result.json b/hyperparameter/m4/tabddpm/tabddpm-m4-20260504_183046/runtime_result.json new file mode 100644 index 0000000000000000000000000000000000000000..45854e4ebe52715ba2d84674bf11f482b87a4791 --- /dev/null +++ b/hyperparameter/m4/tabddpm/tabddpm-m4-20260504_183046/runtime_result.json @@ -0,0 +1,27 @@ +{ + "dataset_id": "m4", + "model": "tabddpm", + "run_id": "tabddpm-m4-20260504_183046", + "public_gate_status": "pass", + "adapter_ready_status": "pass", + "train_status": "success", + "generate_status": "success", + "reason_code": null, + "reason_detail": null, + "artifacts": { + "synthetic_csv": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/m4/tabddpm/tabddpm-m4-20260504_183046/tabddpm-m4-2217-20260504_183226.csv", + "model_path": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/m4/tabddpm/tabddpm-m4-20260504_183046" + }, + "timings": { + "train": { + "started_at": "2026-05-04T18:30:46", + "ended_at": "2026-05-04T18:32:26", + "duration_sec": 100.304 + }, + "generate": { + "started_at": "2026-05-04T18:32:26", + "ended_at": "2026-05-04T18:33:53", + "duration_sec": 87.148 + } + } +} \ No newline at end of file diff --git a/hyperparameter/m4/tabddpm/tabddpm-m4-20260504_183046/staged/public/staged_features.json b/hyperparameter/m4/tabddpm/tabddpm-m4-20260504_183046/staged/public/staged_features.json new file mode 100644 index 0000000000000000000000000000000000000000..d6acd098c35111f423f3ffff2cfd1754bc5dfebc --- /dev/null +++ b/hyperparameter/m4/tabddpm/tabddpm-m4-20260504_183046/staged/public/staged_features.json @@ -0,0 +1,37 @@ +[ + { + "feature_name": "age", + "data_type": "continuous", + "is_target": false + }, + { + "feature_name": "sex", + "data_type": "categorical", + "is_target": false + }, + { + "feature_name": "bmi", + "data_type": "continuous", + "is_target": false + }, + { + "feature_name": "children", + "data_type": "continuous", + "is_target": false + }, + { + "feature_name": "smoker", + "data_type": "binary", + "is_target": false + }, + { + "feature_name": "region", + "data_type": "categorical", + "is_target": false + }, + { + "feature_name": "charges", + "data_type": "continuous", + "is_target": true + } +] \ No newline at end of file diff --git a/hyperparameter/m4/tabddpm/tabddpm-m4-20260504_183046/staged/public/test.csv b/hyperparameter/m4/tabddpm/tabddpm-m4-20260504_183046/staged/public/test.csv new file mode 100644 index 0000000000000000000000000000000000000000..c88a2e7cfcd715bb421cb56eb078033da45c4dc8 --- /dev/null +++ b/hyperparameter/m4/tabddpm/tabddpm-m4-20260504_183046/staged/public/test.csv @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:4c541b677fb2d45c5bc79338eeee9fd8c91484b195a0c2c546c2fbabf113b7ea +size 11298 diff --git a/hyperparameter/m4/tabddpm/tabddpm-m4-20260504_183046/staged/public/train.csv b/hyperparameter/m4/tabddpm/tabddpm-m4-20260504_183046/staged/public/train.csv new file mode 100644 index 0000000000000000000000000000000000000000..5a05019d786529e0617291766c4fbe016ca01bf5 --- /dev/null +++ b/hyperparameter/m4/tabddpm/tabddpm-m4-20260504_183046/staged/public/train.csv @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:614ebfac5f41d6f661aff675fa18c0f933a8d9bcc77ea71b7b2360c2f0155837 +size 90069 diff --git a/hyperparameter/m4/tabddpm/tabddpm-m4-20260504_183046/staged/public/val.csv b/hyperparameter/m4/tabddpm/tabddpm-m4-20260504_183046/staged/public/val.csv new file mode 100644 index 0000000000000000000000000000000000000000..d78fe5ad1537c437ba9ac2629f2aa60a6c17e708 --- /dev/null +++ b/hyperparameter/m4/tabddpm/tabddpm-m4-20260504_183046/staged/public/val.csv @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:e55f5edbe7942ff01630de91a9c70dfbc6445eba76c7b970350364546b67c2d7 +size 11218 diff --git a/hyperparameter/m4/tabddpm/tabddpm-m4-20260504_183046/staged/tabddpm/adapter_report.json b/hyperparameter/m4/tabddpm/tabddpm-m4-20260504_183046/staged/tabddpm/adapter_report.json new file mode 100644 index 0000000000000000000000000000000000000000..191804865aa9b55d71ace35dbb964eb5fd2d7d12 --- /dev/null +++ b/hyperparameter/m4/tabddpm/tabddpm-m4-20260504_183046/staged/tabddpm/adapter_report.json @@ -0,0 +1,7 @@ +{ + "adapter_ready_status": "pass", + "adapter_fail_reason_code": null, + "adapter_fail_detail": null, + "adapter_transforms_applied": [], + "model_input_manifest": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/m4/tabddpm/tabddpm-m4-20260504_183046/staged/tabddpm/model_input_manifest.json" +} \ No newline at end of file diff --git a/hyperparameter/m4/tabddpm/tabddpm-m4-20260504_183046/staged/tabddpm/adapter_transforms_applied.json b/hyperparameter/m4/tabddpm/tabddpm-m4-20260504_183046/staged/tabddpm/adapter_transforms_applied.json new file mode 100644 index 0000000000000000000000000000000000000000..0637a088a01e8ddab3bf3fa98dbe804cbde1a0dc --- /dev/null +++ b/hyperparameter/m4/tabddpm/tabddpm-m4-20260504_183046/staged/tabddpm/adapter_transforms_applied.json @@ -0,0 +1 @@ +[] \ No newline at end of file diff --git a/hyperparameter/m4/tabddpm/tabddpm-m4-20260504_183046/staged/tabddpm/model_input_manifest.json b/hyperparameter/m4/tabddpm/tabddpm-m4-20260504_183046/staged/tabddpm/model_input_manifest.json new file mode 100644 index 0000000000000000000000000000000000000000..dda46177fd245567974bbae5d6fc1301ccd545d7 --- /dev/null +++ b/hyperparameter/m4/tabddpm/tabddpm-m4-20260504_183046/staged/tabddpm/model_input_manifest.json @@ -0,0 +1,154 @@ +{ + "dataset_id": "m4", + "model": "tabddpm", + "target_column": "charges", + "task_type": "regression", + "column_schema": [ + { + "name": "age", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 47, + "unique_ratio": 0.0212, + "example_values": [ + "46", + "38", + "19", + "27", + "26" + ] + } + }, + { + "name": "sex", + "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.000902, + "example_values": [ + "female", + "male" + ] + } + }, + { + "name": "bmi", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 538, + "unique_ratio": 0.24267, + "example_values": [ + "23.655", + "19.3", + "30.59", + "32.67", + "29.45" + ] + } + }, + { + "name": "children", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 6, + "unique_ratio": 0.002706, + "example_values": [ + "1", + "0", + "3", + "2", + "5" + ] + } + }, + { + "name": "smoker", + "role": "feature", + "semantic_type": "boolean", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 2, + "unique_ratio": 0.000902, + "example_values": [ + "yes", + "no" + ] + } + }, + { + "name": "region", + "role": "feature", + "semantic_type": "categorical", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 4, + "unique_ratio": 0.001804, + "example_values": [ + "northwest", + "southwest", + "southeast", + "northeast" + ] + } + }, + { + "name": "charges", + "role": "target", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 1281, + "unique_ratio": 0.577808, + "example_values": [ + "21677.28345", + "15820.699", + "1639.5631", + "2497.0383", + "2897.3235" + ] + } + } + ], + "public_manifest": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/m4/tabddpm/tabddpm-m4-20260504_183046/public_gate/staged_input_manifest.json", + "train_csv": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/m4/tabddpm/tabddpm-m4-20260504_183046/staged/public/train.csv", + "val_csv": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/m4/tabddpm/tabddpm-m4-20260504_183046/staged/public/val.csv", + "test_csv": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/m4/tabddpm/tabddpm-m4-20260504_183046/staged/public/test.csv", + "features_json": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/m4/tabddpm/tabddpm-m4-20260504_183046/staged/public/staged_features.json", + "public_gate_report": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/m4/tabddpm/tabddpm-m4-20260504_183046/public_gate/public_gate_report.json" +} \ No newline at end of file diff --git a/hyperparameter/m4/tabddpm/tabddpm-m4-20260504_183046/tabddpm-m4-2217-20260504_183226.csv b/hyperparameter/m4/tabddpm/tabddpm-m4-20260504_183046/tabddpm-m4-2217-20260504_183226.csv new file mode 100644 index 0000000000000000000000000000000000000000..e0ec0b701d89dbb253ec6b05077dc34165e406e5 --- /dev/null +++ b/hyperparameter/m4/tabddpm/tabddpm-m4-20260504_183046/tabddpm-m4-2217-20260504_183226.csv @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:78b7e8ffc1d98e16a96fa551460fabbbbe63e92376d8053fa7ee861cc8fd977a +size 102397 diff --git a/hyperparameter/m4/tabddpm/tabddpm-m4-20260504_183046/train_20260504_183046.log b/hyperparameter/m4/tabddpm/tabddpm-m4-20260504_183046/train_20260504_183046.log new file mode 100644 index 0000000000000000000000000000000000000000..99204b1743281e05387789a1eed6e1ed066b375a --- /dev/null +++ b/hyperparameter/m4/tabddpm/tabddpm-m4-20260504_183046/train_20260504_183046.log @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:fb48235070f3224f6151f72a60329e0c136a80dceb12c6887440f22ced38866b +size 14370 diff --git a/hyperparameter/m4/tabddpm/tabddpm-m4-20260504_183406/_tabddpm_sample_r0.py b/hyperparameter/m4/tabddpm/tabddpm-m4-20260504_183406/_tabddpm_sample_r0.py new file mode 100644 index 0000000000000000000000000000000000000000..2b5b1f4e7674961a8b4decd569cf078a2fcb28bd --- /dev/null +++ b/hyperparameter/m4/tabddpm/tabddpm-m4-20260504_183406/_tabddpm_sample_r0.py @@ -0,0 +1,66 @@ +import os, sys, subprocess, json +import numpy as np +import pandas as pd + +tabddpm_root = "/workspace/tabddpm/code" +assert os.path.isdir(tabddpm_root), f"TabDDPM source not mounted: {tabddpm_root}" +env = os.environ.copy() +env["PYTHONPATH"] = tabddpm_root + (os.pathsep + env.get("PYTHONPATH", "")) + +# Reuse the compat wrapper (patches collections.Sequence for skorch) +wrapper = os.path.join(tabddpm_root, "_compat_run.py") +if not os.path.exists(wrapper): + with open(wrapper, "w") as f: + f.write( + "import collections, collections.abc\n" + "for _a in ('Sequence','MutableSequence','MutableMapping','Mapping'," + "'MutableSet','Set','Callable','Iterable','Iterator'):\n" + " if not hasattr(collections, _a): setattr(collections, _a, getattr(collections.abc, _a, None))\n" + "import sys, runpy\n" + "sys.argv = sys.argv[1:]\n" + "runpy.run_path(sys.argv[0], run_name='__main__')\n" + ) + +print(f"[TabDDPM] Sampling 2217 rows") +ret = subprocess.run( + [sys.executable, wrapper, "scripts/pipeline.py", + "--config", "/work/output-Benchmark-trainonly-v1/m4/tabddpm/tabddpm-m4-20260504_183406/config_sample_20260504_183600_r0.toml", + "--sample"], + cwd=tabddpm_root, + env=env +) +if ret.returncode != 0: + sys.exit(ret.returncode) + +# 将 .npy 输出转为 CSV(npy 在 TabDDPM 的 parent_dir,即 npy_dir) +info_path = "/work/output-Benchmark-trainonly-v1/m4/tabddpm/tabddpm-m4-20260504_183406/data/info.json" +with open(info_path) as f: + info = json.load(f) + +output_dir = "/work/output-Benchmark-trainonly-v1/m4/tabddpm/tabddpm-m4-20260504_183406/output" +col_names = info.get("column_names", []) + +parts = [] +x_num_path = os.path.join(output_dir, "X_num_train.npy") +x_cat_path = os.path.join(output_dir, "X_cat_train.npy") +y_path = os.path.join(output_dir, "y_train.npy") + +if os.path.exists(x_num_path): + parts.append(np.load(x_num_path, allow_pickle=True)) +if os.path.exists(x_cat_path): + parts.append(np.load(x_cat_path, allow_pickle=True).astype(float)) +if os.path.exists(y_path): + y = np.load(y_path, allow_pickle=True) + parts.append(y.reshape(-1, 1) if y.ndim == 1 else y) + +if parts: + combined = np.concatenate(parts, axis=1) + if col_names and len(col_names) == combined.shape[1]: + df = pd.DataFrame(combined, columns=col_names) + else: + df = pd.DataFrame(combined) + df.to_csv("/work/output-Benchmark-trainonly-v1/m4/tabddpm/tabddpm-m4-20260504_183406/tabddpm-m4-2217-20260504_183600.csv", index=False) + print(f"[TabDDPM] Saved {len(df)} rows -> /work/output-Benchmark-trainonly-v1/m4/tabddpm/tabddpm-m4-20260504_183406/tabddpm-m4-2217-20260504_183600.csv") +else: + print("[TabDDPM] WARNING: No output .npy files found") + sys.exit(1) diff --git a/hyperparameter/m4/tabddpm/tabddpm-m4-20260504_183406/_tabddpm_train.py b/hyperparameter/m4/tabddpm/tabddpm-m4-20260504_183406/_tabddpm_train.py new file mode 100644 index 0000000000000000000000000000000000000000..42d03b54b85746e1e8feee9a74c5f040ce070010 --- /dev/null +++ b/hyperparameter/m4/tabddpm/tabddpm-m4-20260504_183406/_tabddpm_train.py @@ -0,0 +1,32 @@ +import os, sys, subprocess + +tabddpm_root = "/workspace/tabddpm/code" +assert os.path.isdir(tabddpm_root), f"TabDDPM source not mounted: {tabddpm_root}" +env = os.environ.copy() +env["PYTHONPATH"] = tabddpm_root + (os.pathsep + env.get("PYTHONPATH", "")) + +# Write a wrapper that patches collections.Sequence (removed in Python 3.10+) +# before running pipeline.py - needed because skorch uses old API +wrapper = os.path.join(tabddpm_root, "_compat_run.py") +with open(wrapper, "w") as f: + f.write( + "import collections, collections.abc\n" + "for _a in ('Sequence','MutableSequence','MutableMapping','Mapping'," + "'MutableSet','Set','Callable','Iterable','Iterator'):\n" + " if not hasattr(collections, _a): setattr(collections, _a, getattr(collections.abc, _a, None))\n" + "import sys, runpy\n" + "sys.argv = sys.argv[1:]\n" + "runpy.run_path(sys.argv[0], run_name='__main__')\n" + ) + +print(f"[TabDDPM] Training, config=/work/output-Benchmark-trainonly-v1/m4/tabddpm/tabddpm-m4-20260504_183406/config.toml") +ret = subprocess.run( + [sys.executable, wrapper, "scripts/pipeline.py", + "--config", "/work/output-Benchmark-trainonly-v1/m4/tabddpm/tabddpm-m4-20260504_183406/config.toml", + "--train"], + cwd=tabddpm_root, + env=env +) +if ret.returncode != 0: + sys.exit(ret.returncode) +print("[TabDDPM] Training complete") diff --git a/hyperparameter/m4/tabddpm/tabddpm-m4-20260504_183406/config.toml b/hyperparameter/m4/tabddpm/tabddpm-m4-20260504_183406/config.toml new file mode 100644 index 0000000000000000000000000000000000000000..a47070259d7442c068a8d85160c38f4c3867479b --- /dev/null +++ b/hyperparameter/m4/tabddpm/tabddpm-m4-20260504_183406/config.toml @@ -0,0 +1,39 @@ +seed = 0 +parent_dir = "/work/output-Benchmark-trainonly-v1/m4/tabddpm/tabddpm-m4-20260504_183406/output" +real_data_path = "/work/output-Benchmark-trainonly-v1/m4/tabddpm/tabddpm-m4-20260504_183406/data" +model_type = "mlp" +num_numerical_features = 3 +device = "cuda:0" + +[model_params] +d_in = 6 +num_classes = 0 +is_y_cond = true + +[model_params.rtdl_params] +d_layers = [256, 256] +dropout = 0.0 + +[diffusion_params] +num_timesteps = 1000 +gaussian_loss_type = "mse" + +[train.main] +steps = 10000 +lr = 0.0001 +weight_decay = 0.0 +batch_size = 128 + +[train.T] +seed = 0 +normalization = "quantile" +num_nan_policy = "__none__" +cat_nan_policy = "__none__" +cat_min_frequency = "__none__" +cat_encoding = "__none__" +y_policy = "default" + +[sample] +num_samples = 1000 +batch_size = 128 +seed = 0 diff --git a/hyperparameter/m4/tabddpm/tabddpm-m4-20260504_183406/config_sample_20260504_183600_r0.toml b/hyperparameter/m4/tabddpm/tabddpm-m4-20260504_183406/config_sample_20260504_183600_r0.toml new file mode 100644 index 0000000000000000000000000000000000000000..090592d97cfe1f2572ba82dd1657071f865ec074 --- /dev/null +++ b/hyperparameter/m4/tabddpm/tabddpm-m4-20260504_183406/config_sample_20260504_183600_r0.toml @@ -0,0 +1,39 @@ +seed = 0 +parent_dir = "/work/output-Benchmark-trainonly-v1/m4/tabddpm/tabddpm-m4-20260504_183406/output" +real_data_path = "/work/output-Benchmark-trainonly-v1/m4/tabddpm/tabddpm-m4-20260504_183406/data" +model_type = "mlp" +num_numerical_features = 3 +device = "cuda:0" + +[model_params] +d_in = 6 +num_classes = 0 +is_y_cond = true + +[model_params.rtdl_params] +d_layers = [256, 256] +dropout = 0.0 + +[diffusion_params] +num_timesteps = 1000 +gaussian_loss_type = "mse" + +[train.main] +steps = 10000 +lr = 0.0001 +weight_decay = 0.0 +batch_size = 128 + +[train.T] +seed = 0 +normalization = "quantile" +num_nan_policy = "__none__" +cat_nan_policy = "__none__" +cat_min_frequency = "__none__" +cat_encoding = "__none__" +y_policy = "default" + +[sample] +num_samples = 2217 +batch_size = 128 +seed = 0 diff --git a/hyperparameter/m4/tabddpm/tabddpm-m4-20260504_183406/data/X_cat_train.npy b/hyperparameter/m4/tabddpm/tabddpm-m4-20260504_183406/data/X_cat_train.npy new file mode 100644 index 0000000000000000000000000000000000000000..2f6b8b23f5768174aab4879e2a30371e9a3d0ead --- /dev/null +++ b/hyperparameter/m4/tabddpm/tabddpm-m4-20260504_183406/data/X_cat_train.npy @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:c91af7ac26382e392a70536d3dbb592c04ba5e4f495d1e3c364416b9ef704a07 +size 53336 diff --git a/hyperparameter/m4/tabddpm/tabddpm-m4-20260504_183406/data/X_num_train.npy b/hyperparameter/m4/tabddpm/tabddpm-m4-20260504_183406/data/X_num_train.npy new file mode 100644 index 0000000000000000000000000000000000000000..dc149960a879e21fd1aeed7de2419851175627e7 --- /dev/null +++ b/hyperparameter/m4/tabddpm/tabddpm-m4-20260504_183406/data/X_num_train.npy @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:4a21bd2fd5a226c07d543ddf78616a8edb2d52b51097fc7a5df5b05612267af8 +size 26732 diff --git a/hyperparameter/m4/tabddpm/tabddpm-m4-20260504_183406/data/info.json b/hyperparameter/m4/tabddpm/tabddpm-m4-20260504_183406/data/info.json new file mode 100644 index 0000000000000000000000000000000000000000..fdcf5357ff78dd47dfcca0748443a009323ebfba --- /dev/null +++ b/hyperparameter/m4/tabddpm/tabddpm-m4-20260504_183406/data/info.json @@ -0,0 +1,29 @@ +{ + "name": "benchmark_dataset", + "task_type": "regression", + "n_num_features": 3, + "n_cat_features": 3, + "train_size": 2217, + "num_col_idx": [ + 0, + 1, + 2 + ], + "cat_col_idx": [ + 3, + 4, + 5 + ], + "target_col_idx": [ + 6 + ], + "column_names": [ + "age", + "bmi", + "children", + "sex", + "smoker", + "region", + "charges" + ] +} \ No newline at end of file diff --git a/hyperparameter/m4/tabddpm/tabddpm-m4-20260504_183406/data/y_train.npy b/hyperparameter/m4/tabddpm/tabddpm-m4-20260504_183406/data/y_train.npy new file mode 100644 index 0000000000000000000000000000000000000000..717f965e62bd5595d6df01d1ad7851fc5768dc29 --- /dev/null +++ b/hyperparameter/m4/tabddpm/tabddpm-m4-20260504_183406/data/y_train.npy @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:0c64fea6ad5ed2f8441ef5212c726195dbf53e1c81298427bddd18eb20e35cf2 +size 8996 diff --git a/hyperparameter/m4/tabddpm/tabddpm-m4-20260504_183406/gen_20260504_183600_r0.log b/hyperparameter/m4/tabddpm/tabddpm-m4-20260504_183406/gen_20260504_183600_r0.log new file mode 100644 index 0000000000000000000000000000000000000000..e6a89a622455d214a93caf633b8f7ce4e1364726 --- /dev/null +++ b/hyperparameter/m4/tabddpm/tabddpm-m4-20260504_183406/gen_20260504_183600_r0.log @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:3abe93b9e51b5780039c39af313c24005f6d95e41b06661b61b92898503c08ee +size 378664 diff --git a/hyperparameter/m4/tabddpm/tabddpm-m4-20260504_183406/input_snapshot.json b/hyperparameter/m4/tabddpm/tabddpm-m4-20260504_183406/input_snapshot.json new file mode 100644 index 0000000000000000000000000000000000000000..e4dd477396c560c94b19cc8b62c2e927481b290f --- /dev/null +++ b/hyperparameter/m4/tabddpm/tabddpm-m4-20260504_183406/input_snapshot.json @@ -0,0 +1,36 @@ +{ + "dataset_id": "m4", + "model": "tabddpm", + "inputs": { + "train_csv": { + "path": "/data/jialinzhang/SynthesizePipeline-server/DatasetNew/m4/m4-train.csv", + "exists": true, + "size": 92191, + "sha256": "396b9d409ca21bf4a4cd329bdf5b7796aa0ae6356fa8d89b8eb669b5880b81f1" + }, + "val_csv": { + "path": "/data/jialinzhang/SynthesizePipeline-server/DatasetNew/m4/m4-val.csv", + "exists": true, + "size": 11482, + "sha256": "ee3c247d02f56e1687d03c381e13125d6a3a2a411ac7f202ba8520a4be9f1784" + }, + "test_csv": { + "path": "/data/jialinzhang/SynthesizePipeline-server/DatasetNew/m4/m4-test.csv", + "exists": true, + "size": 11559, + "sha256": "cadb9941124001b8fa7cb1ebae43b70a9ca56294f4df4d3c2f22c164c41757d4" + }, + "profile_json": { + "path": "/data/jialinzhang/SynthesizePipeline-server/DatasetNew/artifacts/data_core/tabular/m4/m4-dataset_profile.json", + "exists": true, + "size": 3336, + "sha256": "83e2764810e4a0e8cdece3a28dbd9134b7c9df6f2e56953e46d024ad2c4e035f" + }, + "contract_json": { + "path": "/data/jialinzhang/SynthesizePipeline-server/DatasetNew/artifacts/data_core/tabular/m4/m4-dataset_contract_v1.json", + "exists": true, + "size": 3810, + "sha256": "c23641b258629a845b164099bd0132886f8f6d0100e990494e0f92540f8987d9" + } + } +} \ No newline at end of file diff --git a/hyperparameter/m4/tabddpm/tabddpm-m4-20260504_183406/output/X_cat_train.npy b/hyperparameter/m4/tabddpm/tabddpm-m4-20260504_183406/output/X_cat_train.npy new file mode 100644 index 0000000000000000000000000000000000000000..7f4fe6c3e9af2b61c715157121803e23b5e4edaf --- /dev/null +++ b/hyperparameter/m4/tabddpm/tabddpm-m4-20260504_183406/output/X_cat_train.npy @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:22c6fe37e8b8ef3f020e1bf5f79f98b482c0feb95b423f2abebe6b8212d4e518 +size 13599 diff --git a/hyperparameter/m4/tabddpm/tabddpm-m4-20260504_183406/output/X_cat_unnorm.npy b/hyperparameter/m4/tabddpm/tabddpm-m4-20260504_183406/output/X_cat_unnorm.npy new file mode 100644 index 0000000000000000000000000000000000000000..c37beda4ee7f6f47ac1a2df89d0afff94cfb3862 --- /dev/null +++ b/hyperparameter/m4/tabddpm/tabddpm-m4-20260504_183406/output/X_cat_unnorm.npy @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:ec318a2d6d24286792479e5ce29804b6dadca8eff14d81156b29f97aeb82912f +size 53336 diff --git a/hyperparameter/m4/tabddpm/tabddpm-m4-20260504_183406/output/X_num_train.npy b/hyperparameter/m4/tabddpm/tabddpm-m4-20260504_183406/output/X_num_train.npy new file mode 100644 index 0000000000000000000000000000000000000000..8ec7b4af429c1f8b094f5e38e19c2e089eb59c40 --- /dev/null +++ b/hyperparameter/m4/tabddpm/tabddpm-m4-20260504_183406/output/X_num_train.npy @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:c09defdab36af25e36e395b01bbaca9a99ee0aa4dd6d2077bc15db9f755d459c +size 53336 diff --git a/hyperparameter/m4/tabddpm/tabddpm-m4-20260504_183406/output/X_num_unnorm.npy b/hyperparameter/m4/tabddpm/tabddpm-m4-20260504_183406/output/X_num_unnorm.npy new file mode 100644 index 0000000000000000000000000000000000000000..3967af8070776f3ba3c57dd56c762f4241f6186b --- /dev/null +++ b/hyperparameter/m4/tabddpm/tabddpm-m4-20260504_183406/output/X_num_unnorm.npy @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:0d3cd009530854bb5c4061eecf16422f6eadc441e85e1b3e8dc62a56a773119c +size 53336 diff --git a/hyperparameter/m4/tabddpm/tabddpm-m4-20260504_183406/output/config.toml b/hyperparameter/m4/tabddpm/tabddpm-m4-20260504_183406/output/config.toml new file mode 100644 index 0000000000000000000000000000000000000000..090592d97cfe1f2572ba82dd1657071f865ec074 --- /dev/null +++ b/hyperparameter/m4/tabddpm/tabddpm-m4-20260504_183406/output/config.toml @@ -0,0 +1,39 @@ +seed = 0 +parent_dir = "/work/output-Benchmark-trainonly-v1/m4/tabddpm/tabddpm-m4-20260504_183406/output" +real_data_path = "/work/output-Benchmark-trainonly-v1/m4/tabddpm/tabddpm-m4-20260504_183406/data" +model_type = "mlp" +num_numerical_features = 3 +device = "cuda:0" + +[model_params] +d_in = 6 +num_classes = 0 +is_y_cond = true + +[model_params.rtdl_params] +d_layers = [256, 256] +dropout = 0.0 + +[diffusion_params] +num_timesteps = 1000 +gaussian_loss_type = "mse" + +[train.main] +steps = 10000 +lr = 0.0001 +weight_decay = 0.0 +batch_size = 128 + +[train.T] +seed = 0 +normalization = "quantile" +num_nan_policy = "__none__" +cat_nan_policy = "__none__" +cat_min_frequency = "__none__" +cat_encoding = "__none__" +y_policy = "default" + +[sample] +num_samples = 2217 +batch_size = 128 +seed = 0 diff --git a/hyperparameter/m4/tabddpm/tabddpm-m4-20260504_183406/output/info.json b/hyperparameter/m4/tabddpm/tabddpm-m4-20260504_183406/output/info.json new file mode 100644 index 0000000000000000000000000000000000000000..fdcf5357ff78dd47dfcca0748443a009323ebfba --- /dev/null +++ b/hyperparameter/m4/tabddpm/tabddpm-m4-20260504_183406/output/info.json @@ -0,0 +1,29 @@ +{ + "name": "benchmark_dataset", + "task_type": "regression", + "n_num_features": 3, + "n_cat_features": 3, + "train_size": 2217, + "num_col_idx": [ + 0, + 1, + 2 + ], + "cat_col_idx": [ + 3, + 4, + 5 + ], + "target_col_idx": [ + 6 + ], + "column_names": [ + "age", + "bmi", + "children", + "sex", + "smoker", + "region", + "charges" + ] +} \ No newline at end of file diff --git a/hyperparameter/m4/tabddpm/tabddpm-m4-20260504_183406/output/loss.csv b/hyperparameter/m4/tabddpm/tabddpm-m4-20260504_183406/output/loss.csv new file mode 100644 index 0000000000000000000000000000000000000000..ef44aaf9fc4a87d9fbeb08b94b87f914b4cbe9ad --- /dev/null +++ b/hyperparameter/m4/tabddpm/tabddpm-m4-20260504_183406/output/loss.csv @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:34d1b97ab40a89dea07d672c01b70a59c3cf3443996088ff88e75a3a6a11ce1e +size 3032 diff --git a/hyperparameter/m4/tabddpm/tabddpm-m4-20260504_183406/output/model.pt b/hyperparameter/m4/tabddpm/tabddpm-m4-20260504_183406/output/model.pt new file mode 100644 index 0000000000000000000000000000000000000000..74498a1d13f9d2bf3ece633656ffcf42478606b7 --- /dev/null +++ b/hyperparameter/m4/tabddpm/tabddpm-m4-20260504_183406/output/model.pt @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:8b6e6cf25308e496863648efe27d1debebf7b3f2e5c60529fcb29bdfd33d4b43 +size 550673 diff --git a/hyperparameter/m4/tabddpm/tabddpm-m4-20260504_183406/output/model_ema.pt b/hyperparameter/m4/tabddpm/tabddpm-m4-20260504_183406/output/model_ema.pt new file mode 100644 index 0000000000000000000000000000000000000000..66ff5fa720b6275bf05eaa07bfc8c61ac17c3d11 --- /dev/null +++ b/hyperparameter/m4/tabddpm/tabddpm-m4-20260504_183406/output/model_ema.pt @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:31b802430aecabca5c66b27b7bd91a7369527c513085533882d138b92cde8390 +size 551585 diff --git a/hyperparameter/m4/tabddpm/tabddpm-m4-20260504_183406/output/y_train.npy b/hyperparameter/m4/tabddpm/tabddpm-m4-20260504_183406/output/y_train.npy new file mode 100644 index 0000000000000000000000000000000000000000..73b8d6c3258989047d17afc0bc8c231f615e8ab6 --- /dev/null +++ b/hyperparameter/m4/tabddpm/tabddpm-m4-20260504_183406/output/y_train.npy @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:2ebaf2c1bb96a0e9e9032e11c3367eecbbb27dc5b5ef037fd4406551fcf68b7e +size 17864 diff --git a/hyperparameter/m4/tabddpm/tabddpm-m4-20260504_183406/public_gate/normalized_schema_snapshot.json b/hyperparameter/m4/tabddpm/tabddpm-m4-20260504_183406/public_gate/normalized_schema_snapshot.json new file mode 100644 index 0000000000000000000000000000000000000000..31ed9818686b11907df75e872e4ffbe010330880 --- /dev/null +++ b/hyperparameter/m4/tabddpm/tabddpm-m4-20260504_183406/public_gate/normalized_schema_snapshot.json @@ -0,0 +1,147 @@ +{ + "dataset_id": "m4", + "target_column": "charges", + "task_type": "regression", + "columns": [ + { + "name": "age", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 47, + "unique_ratio": 0.0212, + "example_values": [ + "46", + "38", + "19", + "27", + "26" + ] + } + }, + { + "name": "sex", + "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.000902, + "example_values": [ + "female", + "male" + ] + } + }, + { + "name": "bmi", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 538, + "unique_ratio": 0.24267, + "example_values": [ + "23.655", + "19.3", + "30.59", + "32.67", + "29.45" + ] + } + }, + { + "name": "children", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 6, + "unique_ratio": 0.002706, + "example_values": [ + "1", + "0", + "3", + "2", + "5" + ] + } + }, + { + "name": "smoker", + "role": "feature", + "semantic_type": "boolean", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 2, + "unique_ratio": 0.000902, + "example_values": [ + "yes", + "no" + ] + } + }, + { + "name": "region", + "role": "feature", + "semantic_type": "categorical", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 4, + "unique_ratio": 0.001804, + "example_values": [ + "northwest", + "southwest", + "southeast", + "northeast" + ] + } + }, + { + "name": "charges", + "role": "target", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 1281, + "unique_ratio": 0.577808, + "example_values": [ + "21677.28345", + "15820.699", + "1639.5631", + "2497.0383", + "2897.3235" + ] + } + } + ] +} \ No newline at end of file diff --git a/hyperparameter/m4/tabddpm/tabddpm-m4-20260504_183406/public_gate/public_gate_report.json b/hyperparameter/m4/tabddpm/tabddpm-m4-20260504_183406/public_gate/public_gate_report.json new file mode 100644 index 0000000000000000000000000000000000000000..e7a25408e2574124629ea9437356551e4d6f4790 --- /dev/null +++ b/hyperparameter/m4/tabddpm/tabddpm-m4-20260504_183406/public_gate/public_gate_report.json @@ -0,0 +1,37 @@ +{ + "dataset_id": "m4", + "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": "charges", + "task_type": "regression", + "input_splits": { + "train": "/data/jialinzhang/SynthesizePipeline-server/DatasetNew/m4/m4-train.csv", + "val": "/data/jialinzhang/SynthesizePipeline-server/DatasetNew/m4/m4-val.csv", + "test": "/data/jialinzhang/SynthesizePipeline-server/DatasetNew/m4/m4-test.csv" + } +} \ No newline at end of file diff --git a/hyperparameter/m4/tabddpm/tabddpm-m4-20260504_183406/public_gate/staged_input_manifest.json b/hyperparameter/m4/tabddpm/tabddpm-m4-20260504_183406/public_gate/staged_input_manifest.json new file mode 100644 index 0000000000000000000000000000000000000000..f90ccbce17377611509449fa8b156c59de8434fa --- /dev/null +++ b/hyperparameter/m4/tabddpm/tabddpm-m4-20260504_183406/public_gate/staged_input_manifest.json @@ -0,0 +1,152 @@ +{ + "dataset_id": "m4", + "target_column": "charges", + "task_type": "regression", + "train_csv": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/m4/tabddpm/tabddpm-m4-20260504_183406/staged/public/train.csv", + "val_csv": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/m4/tabddpm/tabddpm-m4-20260504_183406/staged/public/val.csv", + "test_csv": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/m4/tabddpm/tabddpm-m4-20260504_183406/staged/public/test.csv", + "features_json": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/m4/tabddpm/tabddpm-m4-20260504_183406/staged/public/staged_features.json", + "public_gate_report": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/m4/tabddpm/tabddpm-m4-20260504_183406/public_gate/public_gate_report.json", + "column_schema": [ + { + "name": "age", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 47, + "unique_ratio": 0.0212, + "example_values": [ + "46", + "38", + "19", + "27", + "26" + ] + } + }, + { + "name": "sex", + "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.000902, + "example_values": [ + "female", + "male" + ] + } + }, + { + "name": "bmi", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 538, + "unique_ratio": 0.24267, + "example_values": [ + "23.655", + "19.3", + "30.59", + "32.67", + "29.45" + ] + } + }, + { + "name": "children", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 6, + "unique_ratio": 0.002706, + "example_values": [ + "1", + "0", + "3", + "2", + "5" + ] + } + }, + { + "name": "smoker", + "role": "feature", + "semantic_type": "boolean", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 2, + "unique_ratio": 0.000902, + "example_values": [ + "yes", + "no" + ] + } + }, + { + "name": "region", + "role": "feature", + "semantic_type": "categorical", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 4, + "unique_ratio": 0.001804, + "example_values": [ + "northwest", + "southwest", + "southeast", + "northeast" + ] + } + }, + { + "name": "charges", + "role": "target", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 1281, + "unique_ratio": 0.577808, + "example_values": [ + "21677.28345", + "15820.699", + "1639.5631", + "2497.0383", + "2897.3235" + ] + } + } + ] +} \ No newline at end of file diff --git a/hyperparameter/m4/tabddpm/tabddpm-m4-20260504_183406/run_config.json b/hyperparameter/m4/tabddpm/tabddpm-m4-20260504_183406/run_config.json new file mode 100644 index 0000000000000000000000000000000000000000..04a8f7607268f2b5c20c5168b93472e8c62bb49c --- /dev/null +++ b/hyperparameter/m4/tabddpm/tabddpm-m4-20260504_183406/run_config.json @@ -0,0 +1,45 @@ +{ + "schema_version": 1, + "recorded_at": "2026-05-04T18:34:06", + "dataset_id": "m4", + "model": "tabddpm", + "work_dir": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/m4/tabddpm/tabddpm-m4-20260504_183406", + "dataset_source_requested": "new", + "dataset_source_resolved": "new", + "cli_args": { + "model": "tabddpm", + "dataset": "m4", + "dataset_source": "new", + "train": true, + "generate": true, + "num_rows": 0, + "epochs": null, + "output_dir": null, + "model_dir": null, + "work_dir": null, + "resume": false, + "no_stats": false + }, + "resolved": { + "num_rows": 2217, + "model_path": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/m4/tabddpm/tabddpm-m4-20260504_183406", + "output_csv": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/m4/tabddpm/tabddpm-m4-20260504_183406/tabddpm-m4-2217-20260504_183600.csv" + }, + "input_artifacts": { + "public_gate_report": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/m4/tabddpm/tabddpm-m4-20260504_183406/public_gate/public_gate_report.json", + "public_manifest": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/m4/tabddpm/tabddpm-m4-20260504_183406/public_gate/staged_input_manifest.json", + "model_manifest": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/m4/tabddpm/tabddpm-m4-20260504_183406/staged/tabddpm/model_input_manifest.json", + "train_csv": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/m4/tabddpm/tabddpm-m4-20260504_183406/staged/public/train.csv", + "features_json": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/m4/tabddpm/tabddpm-m4-20260504_183406/staged/public/staged_features.json", + "target_column": "charges", + "task_type": "regression" + }, + "env_overrides": { + "BENCHMARK_TABDDPM_GPUS": "device=3", + "TABDDPM_NUM_TIMESTEPS": "1000", + "TABDDPM_SAMPLE_BATCH_SIZE": "128", + "TABDDPM_STEPS_PER_EPOCH": "200", + "TABDDPM_TRAIN_BATCH_SIZE": "128", + "TABDDPM_TRAIN_LR": "0.0001" + } +} \ No newline at end of file diff --git a/hyperparameter/m4/tabddpm/tabddpm-m4-20260504_183406/runtime_result.json b/hyperparameter/m4/tabddpm/tabddpm-m4-20260504_183406/runtime_result.json new file mode 100644 index 0000000000000000000000000000000000000000..1e2dfa4bbe77a1d8b06b3868f8d0d72b03de2c87 --- /dev/null +++ b/hyperparameter/m4/tabddpm/tabddpm-m4-20260504_183406/runtime_result.json @@ -0,0 +1,27 @@ +{ + "dataset_id": "m4", + "model": "tabddpm", + "run_id": "tabddpm-m4-20260504_183406", + "public_gate_status": "pass", + "adapter_ready_status": "pass", + "train_status": "success", + "generate_status": "success", + "reason_code": null, + "reason_detail": null, + "artifacts": { + "synthetic_csv": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/m4/tabddpm/tabddpm-m4-20260504_183406/tabddpm-m4-2217-20260504_183600.csv", + "model_path": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/m4/tabddpm/tabddpm-m4-20260504_183406" + }, + "timings": { + "train": { + "started_at": "2026-05-04T18:34:06", + "ended_at": "2026-05-04T18:36:00", + "duration_sec": 113.875 + }, + "generate": { + "started_at": "2026-05-04T18:36:00", + "ended_at": "2026-05-04T18:37:27", + "duration_sec": 87.915 + } + } +} \ No newline at end of file diff --git a/hyperparameter/m4/tabddpm/tabddpm-m4-20260504_183406/staged/public/staged_features.json b/hyperparameter/m4/tabddpm/tabddpm-m4-20260504_183406/staged/public/staged_features.json new file mode 100644 index 0000000000000000000000000000000000000000..d6acd098c35111f423f3ffff2cfd1754bc5dfebc --- /dev/null +++ b/hyperparameter/m4/tabddpm/tabddpm-m4-20260504_183406/staged/public/staged_features.json @@ -0,0 +1,37 @@ +[ + { + "feature_name": "age", + "data_type": "continuous", + "is_target": false + }, + { + "feature_name": "sex", + "data_type": "categorical", + "is_target": false + }, + { + "feature_name": "bmi", + "data_type": "continuous", + "is_target": false + }, + { + "feature_name": "children", + "data_type": "continuous", + "is_target": false + }, + { + "feature_name": "smoker", + "data_type": "binary", + "is_target": false + }, + { + "feature_name": "region", + "data_type": "categorical", + "is_target": false + }, + { + "feature_name": "charges", + "data_type": "continuous", + "is_target": true + } +] \ No newline at end of file diff --git a/hyperparameter/m4/tabddpm/tabddpm-m4-20260504_183406/staged/public/test.csv b/hyperparameter/m4/tabddpm/tabddpm-m4-20260504_183406/staged/public/test.csv new file mode 100644 index 0000000000000000000000000000000000000000..c88a2e7cfcd715bb421cb56eb078033da45c4dc8 --- /dev/null +++ b/hyperparameter/m4/tabddpm/tabddpm-m4-20260504_183406/staged/public/test.csv @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:4c541b677fb2d45c5bc79338eeee9fd8c91484b195a0c2c546c2fbabf113b7ea +size 11298 diff --git a/hyperparameter/m4/tabddpm/tabddpm-m4-20260504_183406/staged/public/train.csv b/hyperparameter/m4/tabddpm/tabddpm-m4-20260504_183406/staged/public/train.csv new file mode 100644 index 0000000000000000000000000000000000000000..5a05019d786529e0617291766c4fbe016ca01bf5 --- /dev/null +++ b/hyperparameter/m4/tabddpm/tabddpm-m4-20260504_183406/staged/public/train.csv @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:614ebfac5f41d6f661aff675fa18c0f933a8d9bcc77ea71b7b2360c2f0155837 +size 90069 diff --git a/hyperparameter/m4/tabddpm/tabddpm-m4-20260504_183406/staged/public/val.csv b/hyperparameter/m4/tabddpm/tabddpm-m4-20260504_183406/staged/public/val.csv new file mode 100644 index 0000000000000000000000000000000000000000..d78fe5ad1537c437ba9ac2629f2aa60a6c17e708 --- /dev/null +++ b/hyperparameter/m4/tabddpm/tabddpm-m4-20260504_183406/staged/public/val.csv @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:e55f5edbe7942ff01630de91a9c70dfbc6445eba76c7b970350364546b67c2d7 +size 11218 diff --git a/hyperparameter/m4/tabddpm/tabddpm-m4-20260504_183406/staged/tabddpm/adapter_report.json b/hyperparameter/m4/tabddpm/tabddpm-m4-20260504_183406/staged/tabddpm/adapter_report.json new file mode 100644 index 0000000000000000000000000000000000000000..63a96ab40a1e97bb8529f6e60c877b9c18b904d5 --- /dev/null +++ b/hyperparameter/m4/tabddpm/tabddpm-m4-20260504_183406/staged/tabddpm/adapter_report.json @@ -0,0 +1,7 @@ +{ + "adapter_ready_status": "pass", + "adapter_fail_reason_code": null, + "adapter_fail_detail": null, + "adapter_transforms_applied": [], + "model_input_manifest": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/m4/tabddpm/tabddpm-m4-20260504_183406/staged/tabddpm/model_input_manifest.json" +} \ No newline at end of file diff --git a/hyperparameter/m4/tabddpm/tabddpm-m4-20260504_183406/staged/tabddpm/adapter_transforms_applied.json b/hyperparameter/m4/tabddpm/tabddpm-m4-20260504_183406/staged/tabddpm/adapter_transforms_applied.json new file mode 100644 index 0000000000000000000000000000000000000000..0637a088a01e8ddab3bf3fa98dbe804cbde1a0dc --- /dev/null +++ b/hyperparameter/m4/tabddpm/tabddpm-m4-20260504_183406/staged/tabddpm/adapter_transforms_applied.json @@ -0,0 +1 @@ +[] \ No newline at end of file diff --git a/hyperparameter/m4/tabddpm/tabddpm-m4-20260504_183406/staged/tabddpm/model_input_manifest.json b/hyperparameter/m4/tabddpm/tabddpm-m4-20260504_183406/staged/tabddpm/model_input_manifest.json new file mode 100644 index 0000000000000000000000000000000000000000..fd0cfcbe5ab608c10f8ada1dcf18063cef6110b6 --- /dev/null +++ b/hyperparameter/m4/tabddpm/tabddpm-m4-20260504_183406/staged/tabddpm/model_input_manifest.json @@ -0,0 +1,154 @@ +{ + "dataset_id": "m4", + "model": "tabddpm", + "target_column": "charges", + "task_type": "regression", + "column_schema": [ + { + "name": "age", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 47, + "unique_ratio": 0.0212, + "example_values": [ + "46", + "38", + "19", + "27", + "26" + ] + } + }, + { + "name": "sex", + "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.000902, + "example_values": [ + "female", + "male" + ] + } + }, + { + "name": "bmi", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 538, + "unique_ratio": 0.24267, + "example_values": [ + "23.655", + "19.3", + "30.59", + "32.67", + "29.45" + ] + } + }, + { + "name": "children", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 6, + "unique_ratio": 0.002706, + "example_values": [ + "1", + "0", + "3", + "2", + "5" + ] + } + }, + { + "name": "smoker", + "role": "feature", + "semantic_type": "boolean", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 2, + "unique_ratio": 0.000902, + "example_values": [ + "yes", + "no" + ] + } + }, + { + "name": "region", + "role": "feature", + "semantic_type": "categorical", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 4, + "unique_ratio": 0.001804, + "example_values": [ + "northwest", + "southwest", + "southeast", + "northeast" + ] + } + }, + { + "name": "charges", + "role": "target", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 1281, + "unique_ratio": 0.577808, + "example_values": [ + "21677.28345", + "15820.699", + "1639.5631", + "2497.0383", + "2897.3235" + ] + } + } + ], + "public_manifest": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/m4/tabddpm/tabddpm-m4-20260504_183406/public_gate/staged_input_manifest.json", + "train_csv": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/m4/tabddpm/tabddpm-m4-20260504_183406/staged/public/train.csv", + "val_csv": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/m4/tabddpm/tabddpm-m4-20260504_183406/staged/public/val.csv", + "test_csv": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/m4/tabddpm/tabddpm-m4-20260504_183406/staged/public/test.csv", + "features_json": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/m4/tabddpm/tabddpm-m4-20260504_183406/staged/public/staged_features.json", + "public_gate_report": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/m4/tabddpm/tabddpm-m4-20260504_183406/public_gate/public_gate_report.json" +} \ No newline at end of file diff --git a/hyperparameter/m4/tabddpm/tabddpm-m4-20260504_183406/tabddpm-m4-2217-20260504_183600.csv b/hyperparameter/m4/tabddpm/tabddpm-m4-20260504_183406/tabddpm-m4-2217-20260504_183600.csv new file mode 100644 index 0000000000000000000000000000000000000000..916a56500a96d55e69553678a9fbdd457d0f480e --- /dev/null +++ b/hyperparameter/m4/tabddpm/tabddpm-m4-20260504_183406/tabddpm-m4-2217-20260504_183600.csv @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:c2760b055214265d143df01127129d643ef2c1579ff6f9fa7ccde65245ef6a38 +size 102282 diff --git a/hyperparameter/m4/tabddpm/tabddpm-m4-20260504_183406/train_20260504_183406.log b/hyperparameter/m4/tabddpm/tabddpm-m4-20260504_183406/train_20260504_183406.log new file mode 100644 index 0000000000000000000000000000000000000000..dde869f1a9e65959e53558d9190cd16dba550563 --- /dev/null +++ b/hyperparameter/m4/tabddpm/tabddpm-m4-20260504_183406/train_20260504_183406.log @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:debd6b2642babb77944591337bf38f4326c5ceb7a4153476fa6b7aba9cc20cab +size 17831 diff --git a/hyperparameter/m4/tabddpm/tabddpm-m4-20260504_183740/_tabddpm_sample_r0.py b/hyperparameter/m4/tabddpm/tabddpm-m4-20260504_183740/_tabddpm_sample_r0.py new file mode 100644 index 0000000000000000000000000000000000000000..10809adc3797cb0a5e3c20fc944eb007411ca43f --- /dev/null +++ b/hyperparameter/m4/tabddpm/tabddpm-m4-20260504_183740/_tabddpm_sample_r0.py @@ -0,0 +1,66 @@ +import os, sys, subprocess, json +import numpy as np +import pandas as pd + +tabddpm_root = "/workspace/tabddpm/code" +assert os.path.isdir(tabddpm_root), f"TabDDPM source not mounted: {tabddpm_root}" +env = os.environ.copy() +env["PYTHONPATH"] = tabddpm_root + (os.pathsep + env.get("PYTHONPATH", "")) + +# Reuse the compat wrapper (patches collections.Sequence for skorch) +wrapper = os.path.join(tabddpm_root, "_compat_run.py") +if not os.path.exists(wrapper): + with open(wrapper, "w") as f: + f.write( + "import collections, collections.abc\n" + "for _a in ('Sequence','MutableSequence','MutableMapping','Mapping'," + "'MutableSet','Set','Callable','Iterable','Iterator'):\n" + " if not hasattr(collections, _a): setattr(collections, _a, getattr(collections.abc, _a, None))\n" + "import sys, runpy\n" + "sys.argv = sys.argv[1:]\n" + "runpy.run_path(sys.argv[0], run_name='__main__')\n" + ) + +print(f"[TabDDPM] Sampling 2217 rows") +ret = subprocess.run( + [sys.executable, wrapper, "scripts/pipeline.py", + "--config", "/work/output-Benchmark-trainonly-v1/m4/tabddpm/tabddpm-m4-20260504_183740/config_sample_20260504_184027_r0.toml", + "--sample"], + cwd=tabddpm_root, + env=env +) +if ret.returncode != 0: + sys.exit(ret.returncode) + +# 将 .npy 输出转为 CSV(npy 在 TabDDPM 的 parent_dir,即 npy_dir) +info_path = "/work/output-Benchmark-trainonly-v1/m4/tabddpm/tabddpm-m4-20260504_183740/data/info.json" +with open(info_path) as f: + info = json.load(f) + +output_dir = "/work/output-Benchmark-trainonly-v1/m4/tabddpm/tabddpm-m4-20260504_183740/output" +col_names = info.get("column_names", []) + +parts = [] +x_num_path = os.path.join(output_dir, "X_num_train.npy") +x_cat_path = os.path.join(output_dir, "X_cat_train.npy") +y_path = os.path.join(output_dir, "y_train.npy") + +if os.path.exists(x_num_path): + parts.append(np.load(x_num_path, allow_pickle=True)) +if os.path.exists(x_cat_path): + parts.append(np.load(x_cat_path, allow_pickle=True).astype(float)) +if os.path.exists(y_path): + y = np.load(y_path, allow_pickle=True) + parts.append(y.reshape(-1, 1) if y.ndim == 1 else y) + +if parts: + combined = np.concatenate(parts, axis=1) + if col_names and len(col_names) == combined.shape[1]: + df = pd.DataFrame(combined, columns=col_names) + else: + df = pd.DataFrame(combined) + df.to_csv("/work/output-Benchmark-trainonly-v1/m4/tabddpm/tabddpm-m4-20260504_183740/tabddpm-m4-2217-20260504_184027.csv", index=False) + print(f"[TabDDPM] Saved {len(df)} rows -> /work/output-Benchmark-trainonly-v1/m4/tabddpm/tabddpm-m4-20260504_183740/tabddpm-m4-2217-20260504_184027.csv") +else: + print("[TabDDPM] WARNING: No output .npy files found") + sys.exit(1) diff --git a/hyperparameter/m4/tabddpm/tabddpm-m4-20260504_183740/_tabddpm_train.py b/hyperparameter/m4/tabddpm/tabddpm-m4-20260504_183740/_tabddpm_train.py new file mode 100644 index 0000000000000000000000000000000000000000..87afbb902a11937b7c80c6cca825c5aa9e633ac9 --- /dev/null +++ b/hyperparameter/m4/tabddpm/tabddpm-m4-20260504_183740/_tabddpm_train.py @@ -0,0 +1,32 @@ +import os, sys, subprocess + +tabddpm_root = "/workspace/tabddpm/code" +assert os.path.isdir(tabddpm_root), f"TabDDPM source not mounted: {tabddpm_root}" +env = os.environ.copy() +env["PYTHONPATH"] = tabddpm_root + (os.pathsep + env.get("PYTHONPATH", "")) + +# Write a wrapper that patches collections.Sequence (removed in Python 3.10+) +# before running pipeline.py - needed because skorch uses old API +wrapper = os.path.join(tabddpm_root, "_compat_run.py") +with open(wrapper, "w") as f: + f.write( + "import collections, collections.abc\n" + "for _a in ('Sequence','MutableSequence','MutableMapping','Mapping'," + "'MutableSet','Set','Callable','Iterable','Iterator'):\n" + " if not hasattr(collections, _a): setattr(collections, _a, getattr(collections.abc, _a, None))\n" + "import sys, runpy\n" + "sys.argv = sys.argv[1:]\n" + "runpy.run_path(sys.argv[0], run_name='__main__')\n" + ) + +print(f"[TabDDPM] Training, config=/work/output-Benchmark-trainonly-v1/m4/tabddpm/tabddpm-m4-20260504_183740/config.toml") +ret = subprocess.run( + [sys.executable, wrapper, "scripts/pipeline.py", + "--config", "/work/output-Benchmark-trainonly-v1/m4/tabddpm/tabddpm-m4-20260504_183740/config.toml", + "--train"], + cwd=tabddpm_root, + env=env +) +if ret.returncode != 0: + sys.exit(ret.returncode) +print("[TabDDPM] Training complete") diff --git a/hyperparameter/m4/tabddpm/tabddpm-m4-20260504_183740/config.toml b/hyperparameter/m4/tabddpm/tabddpm-m4-20260504_183740/config.toml new file mode 100644 index 0000000000000000000000000000000000000000..014e9f57634ed9262b84878748ffc4941b56e143 --- /dev/null +++ b/hyperparameter/m4/tabddpm/tabddpm-m4-20260504_183740/config.toml @@ -0,0 +1,39 @@ +seed = 0 +parent_dir = "/work/output-Benchmark-trainonly-v1/m4/tabddpm/tabddpm-m4-20260504_183740/output" +real_data_path = "/work/output-Benchmark-trainonly-v1/m4/tabddpm/tabddpm-m4-20260504_183740/data" +model_type = "mlp" +num_numerical_features = 3 +device = "cuda:0" + +[model_params] +d_in = 6 +num_classes = 0 +is_y_cond = true + +[model_params.rtdl_params] +d_layers = [256, 256] +dropout = 0.0 + +[diffusion_params] +num_timesteps = 1000 +gaussian_loss_type = "mse" + +[train.main] +steps = 15000 +lr = 0.0001 +weight_decay = 0.0 +batch_size = 64 + +[train.T] +seed = 0 +normalization = "quantile" +num_nan_policy = "__none__" +cat_nan_policy = "__none__" +cat_min_frequency = "__none__" +cat_encoding = "__none__" +y_policy = "default" + +[sample] +num_samples = 1000 +batch_size = 64 +seed = 0 diff --git a/hyperparameter/m4/tabddpm/tabddpm-m4-20260504_183740/config_sample_20260504_184027_r0.toml b/hyperparameter/m4/tabddpm/tabddpm-m4-20260504_183740/config_sample_20260504_184027_r0.toml new file mode 100644 index 0000000000000000000000000000000000000000..a326a295a755e0ca753b6ec3b23040a85f79af8d --- /dev/null +++ b/hyperparameter/m4/tabddpm/tabddpm-m4-20260504_183740/config_sample_20260504_184027_r0.toml @@ -0,0 +1,39 @@ +seed = 0 +parent_dir = "/work/output-Benchmark-trainonly-v1/m4/tabddpm/tabddpm-m4-20260504_183740/output" +real_data_path = "/work/output-Benchmark-trainonly-v1/m4/tabddpm/tabddpm-m4-20260504_183740/data" +model_type = "mlp" +num_numerical_features = 3 +device = "cuda:0" + +[model_params] +d_in = 6 +num_classes = 0 +is_y_cond = true + +[model_params.rtdl_params] +d_layers = [256, 256] +dropout = 0.0 + +[diffusion_params] +num_timesteps = 1000 +gaussian_loss_type = "mse" + +[train.main] +steps = 15000 +lr = 0.0001 +weight_decay = 0.0 +batch_size = 64 + +[train.T] +seed = 0 +normalization = "quantile" +num_nan_policy = "__none__" +cat_nan_policy = "__none__" +cat_min_frequency = "__none__" +cat_encoding = "__none__" +y_policy = "default" + +[sample] +num_samples = 2217 +batch_size = 64 +seed = 0 diff --git a/hyperparameter/m4/tabddpm/tabddpm-m4-20260504_183740/data/X_cat_train.npy b/hyperparameter/m4/tabddpm/tabddpm-m4-20260504_183740/data/X_cat_train.npy new file mode 100644 index 0000000000000000000000000000000000000000..2f6b8b23f5768174aab4879e2a30371e9a3d0ead --- /dev/null +++ b/hyperparameter/m4/tabddpm/tabddpm-m4-20260504_183740/data/X_cat_train.npy @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:c91af7ac26382e392a70536d3dbb592c04ba5e4f495d1e3c364416b9ef704a07 +size 53336 diff --git a/hyperparameter/m4/tabddpm/tabddpm-m4-20260504_183740/data/X_num_train.npy b/hyperparameter/m4/tabddpm/tabddpm-m4-20260504_183740/data/X_num_train.npy new file mode 100644 index 0000000000000000000000000000000000000000..dc149960a879e21fd1aeed7de2419851175627e7 --- /dev/null +++ b/hyperparameter/m4/tabddpm/tabddpm-m4-20260504_183740/data/X_num_train.npy @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:4a21bd2fd5a226c07d543ddf78616a8edb2d52b51097fc7a5df5b05612267af8 +size 26732 diff --git a/hyperparameter/m4/tabddpm/tabddpm-m4-20260504_183740/data/info.json b/hyperparameter/m4/tabddpm/tabddpm-m4-20260504_183740/data/info.json new file mode 100644 index 0000000000000000000000000000000000000000..fdcf5357ff78dd47dfcca0748443a009323ebfba --- /dev/null +++ b/hyperparameter/m4/tabddpm/tabddpm-m4-20260504_183740/data/info.json @@ -0,0 +1,29 @@ +{ + "name": "benchmark_dataset", + "task_type": "regression", + "n_num_features": 3, + "n_cat_features": 3, + "train_size": 2217, + "num_col_idx": [ + 0, + 1, + 2 + ], + "cat_col_idx": [ + 3, + 4, + 5 + ], + "target_col_idx": [ + 6 + ], + "column_names": [ + "age", + "bmi", + "children", + "sex", + "smoker", + "region", + "charges" + ] +} \ No newline at end of file diff --git a/hyperparameter/m4/tabddpm/tabddpm-m4-20260504_183740/data/y_train.npy b/hyperparameter/m4/tabddpm/tabddpm-m4-20260504_183740/data/y_train.npy new file mode 100644 index 0000000000000000000000000000000000000000..717f965e62bd5595d6df01d1ad7851fc5768dc29 --- /dev/null +++ b/hyperparameter/m4/tabddpm/tabddpm-m4-20260504_183740/data/y_train.npy @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:0c64fea6ad5ed2f8441ef5212c726195dbf53e1c81298427bddd18eb20e35cf2 +size 8996 diff --git a/hyperparameter/m4/tabddpm/tabddpm-m4-20260504_183740/gen_20260504_184027_r0.log b/hyperparameter/m4/tabddpm/tabddpm-m4-20260504_183740/gen_20260504_184027_r0.log new file mode 100644 index 0000000000000000000000000000000000000000..da9577648e35153883318e80fa564a3531c80286 --- /dev/null +++ b/hyperparameter/m4/tabddpm/tabddpm-m4-20260504_183740/gen_20260504_184027_r0.log @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:d1b0883a16ad9616ba22cedcd3a626e1224243aa41a60bc11f1d0188cd8016cc +size 735665 diff --git a/hyperparameter/m4/tabddpm/tabddpm-m4-20260504_183740/input_snapshot.json b/hyperparameter/m4/tabddpm/tabddpm-m4-20260504_183740/input_snapshot.json new file mode 100644 index 0000000000000000000000000000000000000000..e4dd477396c560c94b19cc8b62c2e927481b290f --- /dev/null +++ b/hyperparameter/m4/tabddpm/tabddpm-m4-20260504_183740/input_snapshot.json @@ -0,0 +1,36 @@ +{ + "dataset_id": "m4", + "model": "tabddpm", + "inputs": { + "train_csv": { + "path": "/data/jialinzhang/SynthesizePipeline-server/DatasetNew/m4/m4-train.csv", + "exists": true, + "size": 92191, + "sha256": "396b9d409ca21bf4a4cd329bdf5b7796aa0ae6356fa8d89b8eb669b5880b81f1" + }, + "val_csv": { + "path": "/data/jialinzhang/SynthesizePipeline-server/DatasetNew/m4/m4-val.csv", + "exists": true, + "size": 11482, + "sha256": "ee3c247d02f56e1687d03c381e13125d6a3a2a411ac7f202ba8520a4be9f1784" + }, + "test_csv": { + "path": "/data/jialinzhang/SynthesizePipeline-server/DatasetNew/m4/m4-test.csv", + "exists": true, + "size": 11559, + "sha256": "cadb9941124001b8fa7cb1ebae43b70a9ca56294f4df4d3c2f22c164c41757d4" + }, + "profile_json": { + "path": "/data/jialinzhang/SynthesizePipeline-server/DatasetNew/artifacts/data_core/tabular/m4/m4-dataset_profile.json", + "exists": true, + "size": 3336, + "sha256": "83e2764810e4a0e8cdece3a28dbd9134b7c9df6f2e56953e46d024ad2c4e035f" + }, + "contract_json": { + "path": "/data/jialinzhang/SynthesizePipeline-server/DatasetNew/artifacts/data_core/tabular/m4/m4-dataset_contract_v1.json", + "exists": true, + "size": 3810, + "sha256": "c23641b258629a845b164099bd0132886f8f6d0100e990494e0f92540f8987d9" + } + } +} \ No newline at end of file diff --git a/hyperparameter/m4/tabddpm/tabddpm-m4-20260504_183740/output/X_cat_train.npy b/hyperparameter/m4/tabddpm/tabddpm-m4-20260504_183740/output/X_cat_train.npy new file mode 100644 index 0000000000000000000000000000000000000000..2f3edc6a63ac54192c74dcaa5ab5565b8402d029 --- /dev/null +++ b/hyperparameter/m4/tabddpm/tabddpm-m4-20260504_183740/output/X_cat_train.npy @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:bfc747f038fbe0e633d472522da981c4ae502bd564c9ed379c2c01ddb1acab3b +size 13599 diff --git a/hyperparameter/m4/tabddpm/tabddpm-m4-20260504_183740/output/X_cat_unnorm.npy b/hyperparameter/m4/tabddpm/tabddpm-m4-20260504_183740/output/X_cat_unnorm.npy new file mode 100644 index 0000000000000000000000000000000000000000..5f40751b426e9924bd877827a306cda0ba1ba051 --- /dev/null +++ b/hyperparameter/m4/tabddpm/tabddpm-m4-20260504_183740/output/X_cat_unnorm.npy @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:3a6651d8f624e27289fc2c862db8ea8f7223c3db818b545f711715155ee8801d +size 53336 diff --git a/hyperparameter/m4/tabddpm/tabddpm-m4-20260504_183740/output/X_num_train.npy b/hyperparameter/m4/tabddpm/tabddpm-m4-20260504_183740/output/X_num_train.npy new file mode 100644 index 0000000000000000000000000000000000000000..e9b7cdd4c60c8e241ce04ad0656c62b53318f7a7 --- /dev/null +++ b/hyperparameter/m4/tabddpm/tabddpm-m4-20260504_183740/output/X_num_train.npy @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:83b8beb6ccb14783171d976da59f50e49155b69438d1d768a8fe1be18996344b +size 53336 diff --git a/hyperparameter/m4/tabddpm/tabddpm-m4-20260504_183740/output/X_num_unnorm.npy b/hyperparameter/m4/tabddpm/tabddpm-m4-20260504_183740/output/X_num_unnorm.npy new file mode 100644 index 0000000000000000000000000000000000000000..5bb476d7040a00cf1c10d1316bb4ea78e9daf886 --- /dev/null +++ b/hyperparameter/m4/tabddpm/tabddpm-m4-20260504_183740/output/X_num_unnorm.npy @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:e498e45565f16e8f424bcd0cfda37ccef33168092cc4215c898121552254c25c +size 53336 diff --git a/hyperparameter/m4/tabddpm/tabddpm-m4-20260504_183740/output/config.toml b/hyperparameter/m4/tabddpm/tabddpm-m4-20260504_183740/output/config.toml new file mode 100644 index 0000000000000000000000000000000000000000..a326a295a755e0ca753b6ec3b23040a85f79af8d --- /dev/null +++ b/hyperparameter/m4/tabddpm/tabddpm-m4-20260504_183740/output/config.toml @@ -0,0 +1,39 @@ +seed = 0 +parent_dir = "/work/output-Benchmark-trainonly-v1/m4/tabddpm/tabddpm-m4-20260504_183740/output" +real_data_path = "/work/output-Benchmark-trainonly-v1/m4/tabddpm/tabddpm-m4-20260504_183740/data" +model_type = "mlp" +num_numerical_features = 3 +device = "cuda:0" + +[model_params] +d_in = 6 +num_classes = 0 +is_y_cond = true + +[model_params.rtdl_params] +d_layers = [256, 256] +dropout = 0.0 + +[diffusion_params] +num_timesteps = 1000 +gaussian_loss_type = "mse" + +[train.main] +steps = 15000 +lr = 0.0001 +weight_decay = 0.0 +batch_size = 64 + +[train.T] +seed = 0 +normalization = "quantile" +num_nan_policy = "__none__" +cat_nan_policy = "__none__" +cat_min_frequency = "__none__" +cat_encoding = "__none__" +y_policy = "default" + +[sample] +num_samples = 2217 +batch_size = 64 +seed = 0 diff --git a/hyperparameter/m4/tabddpm/tabddpm-m4-20260504_183740/output/info.json b/hyperparameter/m4/tabddpm/tabddpm-m4-20260504_183740/output/info.json new file mode 100644 index 0000000000000000000000000000000000000000..fdcf5357ff78dd47dfcca0748443a009323ebfba --- /dev/null +++ b/hyperparameter/m4/tabddpm/tabddpm-m4-20260504_183740/output/info.json @@ -0,0 +1,29 @@ +{ + "name": "benchmark_dataset", + "task_type": "regression", + "n_num_features": 3, + "n_cat_features": 3, + "train_size": 2217, + "num_col_idx": [ + 0, + 1, + 2 + ], + "cat_col_idx": [ + 3, + 4, + 5 + ], + "target_col_idx": [ + 6 + ], + "column_names": [ + "age", + "bmi", + "children", + "sex", + "smoker", + "region", + "charges" + ] +} \ No newline at end of file diff --git a/hyperparameter/m4/tabddpm/tabddpm-m4-20260504_183740/output/loss.csv b/hyperparameter/m4/tabddpm/tabddpm-m4-20260504_183740/output/loss.csv new file mode 100644 index 0000000000000000000000000000000000000000..f6b093142ab814fe348af9b3088f8e1db297cf31 --- /dev/null +++ b/hyperparameter/m4/tabddpm/tabddpm-m4-20260504_183740/output/loss.csv @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:4b895ee0687b6a724c38eef92b313da8df263fe1f320bebd5aa9609e8982a56c +size 4753 diff --git a/hyperparameter/m4/tabddpm/tabddpm-m4-20260504_183740/output/model.pt b/hyperparameter/m4/tabddpm/tabddpm-m4-20260504_183740/output/model.pt new file mode 100644 index 0000000000000000000000000000000000000000..e6ab05f6e1286b0c881d18cb5d313ddfda45b47a --- /dev/null +++ b/hyperparameter/m4/tabddpm/tabddpm-m4-20260504_183740/output/model.pt @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:f4c7785bb7ae638d55100315233c324f94192a7155e6e916ee81aeecad3f16f4 +size 550673 diff --git a/hyperparameter/m4/tabddpm/tabddpm-m4-20260504_183740/output/model_ema.pt b/hyperparameter/m4/tabddpm/tabddpm-m4-20260504_183740/output/model_ema.pt new file mode 100644 index 0000000000000000000000000000000000000000..9e60e992903bcc058fce3a61415de267c55c0eb4 --- /dev/null +++ b/hyperparameter/m4/tabddpm/tabddpm-m4-20260504_183740/output/model_ema.pt @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:4e8acc1768e8dcbf83dfe7f05a6179c7e2c96dbaacb13ba4fa29fca407e879a2 +size 551585 diff --git a/hyperparameter/m4/tabddpm/tabddpm-m4-20260504_183740/output/y_train.npy b/hyperparameter/m4/tabddpm/tabddpm-m4-20260504_183740/output/y_train.npy new file mode 100644 index 0000000000000000000000000000000000000000..73b8d6c3258989047d17afc0bc8c231f615e8ab6 --- /dev/null +++ b/hyperparameter/m4/tabddpm/tabddpm-m4-20260504_183740/output/y_train.npy @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:2ebaf2c1bb96a0e9e9032e11c3367eecbbb27dc5b5ef037fd4406551fcf68b7e +size 17864 diff --git a/hyperparameter/m4/tabddpm/tabddpm-m4-20260504_183740/public_gate/normalized_schema_snapshot.json b/hyperparameter/m4/tabddpm/tabddpm-m4-20260504_183740/public_gate/normalized_schema_snapshot.json new file mode 100644 index 0000000000000000000000000000000000000000..31ed9818686b11907df75e872e4ffbe010330880 --- /dev/null +++ b/hyperparameter/m4/tabddpm/tabddpm-m4-20260504_183740/public_gate/normalized_schema_snapshot.json @@ -0,0 +1,147 @@ +{ + "dataset_id": "m4", + "target_column": "charges", + "task_type": "regression", + "columns": [ + { + "name": "age", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 47, + "unique_ratio": 0.0212, + "example_values": [ + "46", + "38", + "19", + "27", + "26" + ] + } + }, + { + "name": "sex", + "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.000902, + "example_values": [ + "female", + "male" + ] + } + }, + { + "name": "bmi", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 538, + "unique_ratio": 0.24267, + "example_values": [ + "23.655", + "19.3", + "30.59", + "32.67", + "29.45" + ] + } + }, + { + "name": "children", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 6, + "unique_ratio": 0.002706, + "example_values": [ + "1", + "0", + "3", + "2", + "5" + ] + } + }, + { + "name": "smoker", + "role": "feature", + "semantic_type": "boolean", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 2, + "unique_ratio": 0.000902, + "example_values": [ + "yes", + "no" + ] + } + }, + { + "name": "region", + "role": "feature", + "semantic_type": "categorical", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 4, + "unique_ratio": 0.001804, + "example_values": [ + "northwest", + "southwest", + "southeast", + "northeast" + ] + } + }, + { + "name": "charges", + "role": "target", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 1281, + "unique_ratio": 0.577808, + "example_values": [ + "21677.28345", + "15820.699", + "1639.5631", + "2497.0383", + "2897.3235" + ] + } + } + ] +} \ No newline at end of file diff --git a/hyperparameter/m4/tabddpm/tabddpm-m4-20260504_183740/public_gate/public_gate_report.json b/hyperparameter/m4/tabddpm/tabddpm-m4-20260504_183740/public_gate/public_gate_report.json new file mode 100644 index 0000000000000000000000000000000000000000..e7a25408e2574124629ea9437356551e4d6f4790 --- /dev/null +++ b/hyperparameter/m4/tabddpm/tabddpm-m4-20260504_183740/public_gate/public_gate_report.json @@ -0,0 +1,37 @@ +{ + "dataset_id": "m4", + "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": "charges", + "task_type": "regression", + "input_splits": { + "train": "/data/jialinzhang/SynthesizePipeline-server/DatasetNew/m4/m4-train.csv", + "val": "/data/jialinzhang/SynthesizePipeline-server/DatasetNew/m4/m4-val.csv", + "test": "/data/jialinzhang/SynthesizePipeline-server/DatasetNew/m4/m4-test.csv" + } +} \ No newline at end of file diff --git a/hyperparameter/m4/tabddpm/tabddpm-m4-20260504_183740/public_gate/staged_input_manifest.json b/hyperparameter/m4/tabddpm/tabddpm-m4-20260504_183740/public_gate/staged_input_manifest.json new file mode 100644 index 0000000000000000000000000000000000000000..da778afa4dc2ae09872bc3511f7df0006538a946 --- /dev/null +++ b/hyperparameter/m4/tabddpm/tabddpm-m4-20260504_183740/public_gate/staged_input_manifest.json @@ -0,0 +1,152 @@ +{ + "dataset_id": "m4", + "target_column": "charges", + "task_type": "regression", + "train_csv": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/m4/tabddpm/tabddpm-m4-20260504_183740/staged/public/train.csv", + "val_csv": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/m4/tabddpm/tabddpm-m4-20260504_183740/staged/public/val.csv", + "test_csv": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/m4/tabddpm/tabddpm-m4-20260504_183740/staged/public/test.csv", + "features_json": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/m4/tabddpm/tabddpm-m4-20260504_183740/staged/public/staged_features.json", + "public_gate_report": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/m4/tabddpm/tabddpm-m4-20260504_183740/public_gate/public_gate_report.json", + "column_schema": [ + { + "name": "age", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 47, + "unique_ratio": 0.0212, + "example_values": [ + "46", + "38", + "19", + "27", + "26" + ] + } + }, + { + "name": "sex", + "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.000902, + "example_values": [ + "female", + "male" + ] + } + }, + { + "name": "bmi", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 538, + "unique_ratio": 0.24267, + "example_values": [ + "23.655", + "19.3", + "30.59", + "32.67", + "29.45" + ] + } + }, + { + "name": "children", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 6, + "unique_ratio": 0.002706, + "example_values": [ + "1", + "0", + "3", + "2", + "5" + ] + } + }, + { + "name": "smoker", + "role": "feature", + "semantic_type": "boolean", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 2, + "unique_ratio": 0.000902, + "example_values": [ + "yes", + "no" + ] + } + }, + { + "name": "region", + "role": "feature", + "semantic_type": "categorical", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 4, + "unique_ratio": 0.001804, + "example_values": [ + "northwest", + "southwest", + "southeast", + "northeast" + ] + } + }, + { + "name": "charges", + "role": "target", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 1281, + "unique_ratio": 0.577808, + "example_values": [ + "21677.28345", + "15820.699", + "1639.5631", + "2497.0383", + "2897.3235" + ] + } + } + ] +} \ No newline at end of file diff --git a/hyperparameter/m4/tabddpm/tabddpm-m4-20260504_183740/run_config.json b/hyperparameter/m4/tabddpm/tabddpm-m4-20260504_183740/run_config.json new file mode 100644 index 0000000000000000000000000000000000000000..a58c1edab1309d44bc66897861f3b1a354b119fd --- /dev/null +++ b/hyperparameter/m4/tabddpm/tabddpm-m4-20260504_183740/run_config.json @@ -0,0 +1,45 @@ +{ + "schema_version": 1, + "recorded_at": "2026-05-04T18:37:40", + "dataset_id": "m4", + "model": "tabddpm", + "work_dir": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/m4/tabddpm/tabddpm-m4-20260504_183740", + "dataset_source_requested": "new", + "dataset_source_resolved": "new", + "cli_args": { + "model": "tabddpm", + "dataset": "m4", + "dataset_source": "new", + "train": true, + "generate": true, + "num_rows": 0, + "epochs": null, + "output_dir": null, + "model_dir": null, + "work_dir": null, + "resume": false, + "no_stats": false + }, + "resolved": { + "num_rows": 2217, + "model_path": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/m4/tabddpm/tabddpm-m4-20260504_183740", + "output_csv": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/m4/tabddpm/tabddpm-m4-20260504_183740/tabddpm-m4-2217-20260504_184027.csv" + }, + "input_artifacts": { + "public_gate_report": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/m4/tabddpm/tabddpm-m4-20260504_183740/public_gate/public_gate_report.json", + "public_manifest": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/m4/tabddpm/tabddpm-m4-20260504_183740/public_gate/staged_input_manifest.json", + "model_manifest": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/m4/tabddpm/tabddpm-m4-20260504_183740/staged/tabddpm/model_input_manifest.json", + "train_csv": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/m4/tabddpm/tabddpm-m4-20260504_183740/staged/public/train.csv", + "features_json": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/m4/tabddpm/tabddpm-m4-20260504_183740/staged/public/staged_features.json", + "target_column": "charges", + "task_type": "regression" + }, + "env_overrides": { + "BENCHMARK_TABDDPM_GPUS": "device=3", + "TABDDPM_NUM_TIMESTEPS": "1000", + "TABDDPM_SAMPLE_BATCH_SIZE": "64", + "TABDDPM_STEPS_PER_EPOCH": "300", + "TABDDPM_TRAIN_BATCH_SIZE": "64", + "TABDDPM_TRAIN_LR": "0.0001" + } +} \ No newline at end of file diff --git a/hyperparameter/m4/tabddpm/tabddpm-m4-20260504_183740/runtime_result.json b/hyperparameter/m4/tabddpm/tabddpm-m4-20260504_183740/runtime_result.json new file mode 100644 index 0000000000000000000000000000000000000000..a5f28d35973a726878790f3f9b25e0ed063d19a6 --- /dev/null +++ b/hyperparameter/m4/tabddpm/tabddpm-m4-20260504_183740/runtime_result.json @@ -0,0 +1,27 @@ +{ + "dataset_id": "m4", + "model": "tabddpm", + "run_id": "tabddpm-m4-20260504_183740", + "public_gate_status": "pass", + "adapter_ready_status": "pass", + "train_status": "success", + "generate_status": "success", + "reason_code": null, + "reason_detail": null, + "artifacts": { + "synthetic_csv": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/m4/tabddpm/tabddpm-m4-20260504_183740/tabddpm-m4-2217-20260504_184027.csv", + "model_path": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/m4/tabddpm/tabddpm-m4-20260504_183740" + }, + "timings": { + "train": { + "started_at": "2026-05-04T18:37:40", + "ended_at": "2026-05-04T18:40:27", + "duration_sec": 166.778 + }, + "generate": { + "started_at": "2026-05-04T18:40:27", + "ended_at": "2026-05-04T18:43:06", + "duration_sec": 159.881 + } + } +} \ No newline at end of file diff --git a/hyperparameter/m4/tabddpm/tabddpm-m4-20260504_183740/staged/public/staged_features.json b/hyperparameter/m4/tabddpm/tabddpm-m4-20260504_183740/staged/public/staged_features.json new file mode 100644 index 0000000000000000000000000000000000000000..d6acd098c35111f423f3ffff2cfd1754bc5dfebc --- /dev/null +++ b/hyperparameter/m4/tabddpm/tabddpm-m4-20260504_183740/staged/public/staged_features.json @@ -0,0 +1,37 @@ +[ + { + "feature_name": "age", + "data_type": "continuous", + "is_target": false + }, + { + "feature_name": "sex", + "data_type": "categorical", + "is_target": false + }, + { + "feature_name": "bmi", + "data_type": "continuous", + "is_target": false + }, + { + "feature_name": "children", + "data_type": "continuous", + "is_target": false + }, + { + "feature_name": "smoker", + "data_type": "binary", + "is_target": false + }, + { + "feature_name": "region", + "data_type": "categorical", + "is_target": false + }, + { + "feature_name": "charges", + "data_type": "continuous", + "is_target": true + } +] \ No newline at end of file diff --git a/hyperparameter/m4/tabddpm/tabddpm-m4-20260504_183740/staged/public/test.csv b/hyperparameter/m4/tabddpm/tabddpm-m4-20260504_183740/staged/public/test.csv new file mode 100644 index 0000000000000000000000000000000000000000..c88a2e7cfcd715bb421cb56eb078033da45c4dc8 --- /dev/null +++ b/hyperparameter/m4/tabddpm/tabddpm-m4-20260504_183740/staged/public/test.csv @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:4c541b677fb2d45c5bc79338eeee9fd8c91484b195a0c2c546c2fbabf113b7ea +size 11298 diff --git a/hyperparameter/m4/tabddpm/tabddpm-m4-20260504_183740/staged/public/train.csv b/hyperparameter/m4/tabddpm/tabddpm-m4-20260504_183740/staged/public/train.csv new file mode 100644 index 0000000000000000000000000000000000000000..5a05019d786529e0617291766c4fbe016ca01bf5 --- /dev/null +++ b/hyperparameter/m4/tabddpm/tabddpm-m4-20260504_183740/staged/public/train.csv @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:614ebfac5f41d6f661aff675fa18c0f933a8d9bcc77ea71b7b2360c2f0155837 +size 90069 diff --git a/hyperparameter/m4/tabddpm/tabddpm-m4-20260504_183740/staged/public/val.csv b/hyperparameter/m4/tabddpm/tabddpm-m4-20260504_183740/staged/public/val.csv new file mode 100644 index 0000000000000000000000000000000000000000..d78fe5ad1537c437ba9ac2629f2aa60a6c17e708 --- /dev/null +++ b/hyperparameter/m4/tabddpm/tabddpm-m4-20260504_183740/staged/public/val.csv @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:e55f5edbe7942ff01630de91a9c70dfbc6445eba76c7b970350364546b67c2d7 +size 11218 diff --git a/hyperparameter/m4/tabddpm/tabddpm-m4-20260504_183740/staged/tabddpm/adapter_report.json b/hyperparameter/m4/tabddpm/tabddpm-m4-20260504_183740/staged/tabddpm/adapter_report.json new file mode 100644 index 0000000000000000000000000000000000000000..383b86497246010cdc61d0500647b9ea8298e52d --- /dev/null +++ b/hyperparameter/m4/tabddpm/tabddpm-m4-20260504_183740/staged/tabddpm/adapter_report.json @@ -0,0 +1,7 @@ +{ + "adapter_ready_status": "pass", + "adapter_fail_reason_code": null, + "adapter_fail_detail": null, + "adapter_transforms_applied": [], + "model_input_manifest": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/m4/tabddpm/tabddpm-m4-20260504_183740/staged/tabddpm/model_input_manifest.json" +} \ No newline at end of file diff --git a/hyperparameter/m4/tabddpm/tabddpm-m4-20260504_183740/staged/tabddpm/adapter_transforms_applied.json b/hyperparameter/m4/tabddpm/tabddpm-m4-20260504_183740/staged/tabddpm/adapter_transforms_applied.json new file mode 100644 index 0000000000000000000000000000000000000000..0637a088a01e8ddab3bf3fa98dbe804cbde1a0dc --- /dev/null +++ b/hyperparameter/m4/tabddpm/tabddpm-m4-20260504_183740/staged/tabddpm/adapter_transforms_applied.json @@ -0,0 +1 @@ +[] \ No newline at end of file diff --git a/hyperparameter/m4/tabddpm/tabddpm-m4-20260504_183740/staged/tabddpm/model_input_manifest.json b/hyperparameter/m4/tabddpm/tabddpm-m4-20260504_183740/staged/tabddpm/model_input_manifest.json new file mode 100644 index 0000000000000000000000000000000000000000..bb7fc4e5c0fe096af42dbcd5c0af109cc1d13da8 --- /dev/null +++ b/hyperparameter/m4/tabddpm/tabddpm-m4-20260504_183740/staged/tabddpm/model_input_manifest.json @@ -0,0 +1,154 @@ +{ + "dataset_id": "m4", + "model": "tabddpm", + "target_column": "charges", + "task_type": "regression", + "column_schema": [ + { + "name": "age", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 47, + "unique_ratio": 0.0212, + "example_values": [ + "46", + "38", + "19", + "27", + "26" + ] + } + }, + { + "name": "sex", + "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.000902, + "example_values": [ + "female", + "male" + ] + } + }, + { + "name": "bmi", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 538, + "unique_ratio": 0.24267, + "example_values": [ + "23.655", + "19.3", + "30.59", + "32.67", + "29.45" + ] + } + }, + { + "name": "children", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 6, + "unique_ratio": 0.002706, + "example_values": [ + "1", + "0", + "3", + "2", + "5" + ] + } + }, + { + "name": "smoker", + "role": "feature", + "semantic_type": "boolean", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 2, + "unique_ratio": 0.000902, + "example_values": [ + "yes", + "no" + ] + } + }, + { + "name": "region", + "role": "feature", + "semantic_type": "categorical", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 4, + "unique_ratio": 0.001804, + "example_values": [ + "northwest", + "southwest", + "southeast", + "northeast" + ] + } + }, + { + "name": "charges", + "role": "target", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 1281, + "unique_ratio": 0.577808, + "example_values": [ + "21677.28345", + "15820.699", + "1639.5631", + "2497.0383", + "2897.3235" + ] + } + } + ], + "public_manifest": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/m4/tabddpm/tabddpm-m4-20260504_183740/public_gate/staged_input_manifest.json", + "train_csv": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/m4/tabddpm/tabddpm-m4-20260504_183740/staged/public/train.csv", + "val_csv": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/m4/tabddpm/tabddpm-m4-20260504_183740/staged/public/val.csv", + "test_csv": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/m4/tabddpm/tabddpm-m4-20260504_183740/staged/public/test.csv", + "features_json": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/m4/tabddpm/tabddpm-m4-20260504_183740/staged/public/staged_features.json", + "public_gate_report": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/m4/tabddpm/tabddpm-m4-20260504_183740/public_gate/public_gate_report.json" +} \ No newline at end of file diff --git a/hyperparameter/m4/tabddpm/tabddpm-m4-20260504_183740/tabddpm-m4-2217-20260504_184027.csv b/hyperparameter/m4/tabddpm/tabddpm-m4-20260504_183740/tabddpm-m4-2217-20260504_184027.csv new file mode 100644 index 0000000000000000000000000000000000000000..df6b06113626acc81ade807a8a3cc33208752c1a --- /dev/null +++ b/hyperparameter/m4/tabddpm/tabddpm-m4-20260504_183740/tabddpm-m4-2217-20260504_184027.csv @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:ca7be730fb53548efec8cc8671b5fd51c264d48f9c2e695293fd4c34837ddc62 +size 102404 diff --git a/hyperparameter/m4/tabddpm/tabddpm-m4-20260504_183740/train_20260504_183740.log b/hyperparameter/m4/tabddpm/tabddpm-m4-20260504_183740/train_20260504_183740.log new file mode 100644 index 0000000000000000000000000000000000000000..a290d096a52bc97a500649cea656b8a62042b0c9 --- /dev/null +++ b/hyperparameter/m4/tabddpm/tabddpm-m4-20260504_183740/train_20260504_183740.log @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:54b12fbf4164fa17c4281eae2ea39296ae097f9f87b313724ab489c50f4b9f8b +size 26495 diff --git a/hyperparameter/m4/tabdiff/tabdiff-m4-20260504_195148/_tabdiff_gen.py b/hyperparameter/m4/tabdiff/tabdiff-m4-20260504_195148/_tabdiff_gen.py new file mode 100644 index 0000000000000000000000000000000000000000..34181a2f9a08255977eab60ddcfec899c081bb9e --- /dev/null +++ b/hyperparameter/m4/tabdiff/tabdiff-m4-20260504_195148/_tabdiff_gen.py @@ -0,0 +1,36 @@ + +import os, shutil, subprocess, sys +td = r"/workspace/TabDiff" +name = r"pipeline_m4" +src = r"/work/output-Benchmark-trainonly-v1/m4/tabdiff/tabdiff-m4-20260504_195148/tabular_bundle/pipeline_m4" +dst_data = os.path.join(td, "data", name) +dst_syn = os.path.join(td, "synthetic", name) +shutil.rmtree(dst_data, ignore_errors=True) +shutil.copytree(src, dst_data) +os.makedirs(dst_syn, exist_ok=True) +for fn in ("real.csv", "test.csv", "val.csv"): + shutil.copy(os.path.join(src, fn), os.path.join(dst_syn, fn)) +os.chdir(td) +os.environ["PYTHONPATH"] = td + os.pathsep + os.environ.get("PYTHONPATH", "") +subprocess.check_call([ + sys.executable, "-m", "tabdiff.main", + "--dataname", name, "--mode", "test", "--gpu", "0", + "--no_wandb", "--exp_name", r"adapter_learnable", + "--ckpt_path", r"/workspace/TabDiff/tabdiff/ckpt/pipeline_m4/adapter_learnable/model_500.pt", + "--num_samples_to_generate", str(int(2217)), +]) +# test() 写入 tabdiff/result////samples.csv +import glob as g +base = os.path.join(td, "tabdiff", "result", name, r"adapter_learnable") +best = None +best_t = -1.0 +for root, _, files in os.walk(base): + if "samples.csv" in files: + p = os.path.join(root, "samples.csv") + t = os.path.getmtime(p) + if t > best_t: + best_t = t + best = p +if not best: + raise SystemExit("tabdiff: no samples.csv under " + base) +shutil.copy(best, r"/work/output-Benchmark-trainonly-v1/m4/tabdiff/tabdiff-m4-20260504_195148/tabdiff-m4-2217-20260504_195330.csv") diff --git a/hyperparameter/m4/tabdiff/tabdiff-m4-20260504_195148/_tabdiff_train.py b/hyperparameter/m4/tabdiff/tabdiff-m4-20260504_195148/_tabdiff_train.py new file mode 100644 index 0000000000000000000000000000000000000000..812c966e6f8db3b40be8e5c6d03b9bf54d8e928f --- /dev/null +++ b/hyperparameter/m4/tabdiff/tabdiff-m4-20260504_195148/_tabdiff_train.py @@ -0,0 +1,21 @@ + +import os, shutil, subprocess, sys +td = r"/workspace/TabDiff" +name = r"pipeline_m4" +src = r"/work/output-Benchmark-trainonly-v1/m4/tabdiff/tabdiff-m4-20260504_195148/tabular_bundle/pipeline_m4" +dst_data = os.path.join(td, "data", name) +dst_syn = os.path.join(td, "synthetic", name) +shutil.rmtree(dst_data, ignore_errors=True) +shutil.copytree(src, dst_data) +os.makedirs(dst_syn, exist_ok=True) +for fn in ("real.csv", "test.csv", "val.csv"): + shutil.copy(os.path.join(src, fn), os.path.join(dst_syn, fn)) +os.chdir(td) +os.environ["PYTHONPATH"] = td + os.pathsep + os.environ.get("PYTHONPATH", "") +os.environ["TABDIFF_SMOKE_STEPS"] = "100" +os.environ["TABDIFF_ADAPTER_TRAIN"] = "1" +subprocess.check_call([ + sys.executable, "-m", "tabdiff.main", + "--dataname", name, "--mode", "train", "--gpu", "0", + "--no_wandb", "--exp_name", r"adapter_learnable", +]) diff --git a/hyperparameter/m4/tabdiff/tabdiff-m4-20260504_195148/gen_20260504_195330.log b/hyperparameter/m4/tabdiff/tabdiff-m4-20260504_195148/gen_20260504_195330.log new file mode 100644 index 0000000000000000000000000000000000000000..1e8fe23ed4011a8842e59dae03c8723ffa619dc8 --- /dev/null +++ b/hyperparameter/m4/tabdiff/tabdiff-m4-20260504_195148/gen_20260504_195330.log @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:0c53a84cecb3fb61d4b513eeed23fbd5d5f451901e36e52981e1ab6746134890 +size 4557 diff --git a/hyperparameter/m4/tabdiff/tabdiff-m4-20260504_195148/input_snapshot.json b/hyperparameter/m4/tabdiff/tabdiff-m4-20260504_195148/input_snapshot.json new file mode 100644 index 0000000000000000000000000000000000000000..28cd3a4d75d18efdf20f8d2e0b931a2ecdef48e9 --- /dev/null +++ b/hyperparameter/m4/tabdiff/tabdiff-m4-20260504_195148/input_snapshot.json @@ -0,0 +1,36 @@ +{ + "dataset_id": "m4", + "model": "tabdiff", + "inputs": { + "train_csv": { + "path": "/data/jialinzhang/SynthesizePipeline-server/DatasetNew/m4/m4-train.csv", + "exists": true, + "size": 92191, + "sha256": "396b9d409ca21bf4a4cd329bdf5b7796aa0ae6356fa8d89b8eb669b5880b81f1" + }, + "val_csv": { + "path": "/data/jialinzhang/SynthesizePipeline-server/DatasetNew/m4/m4-val.csv", + "exists": true, + "size": 11482, + "sha256": "ee3c247d02f56e1687d03c381e13125d6a3a2a411ac7f202ba8520a4be9f1784" + }, + "test_csv": { + "path": "/data/jialinzhang/SynthesizePipeline-server/DatasetNew/m4/m4-test.csv", + "exists": true, + "size": 11559, + "sha256": "cadb9941124001b8fa7cb1ebae43b70a9ca56294f4df4d3c2f22c164c41757d4" + }, + "profile_json": { + "path": "/data/jialinzhang/SynthesizePipeline-server/DatasetNew/artifacts/data_core/tabular/m4/m4-dataset_profile.json", + "exists": true, + "size": 3336, + "sha256": "83e2764810e4a0e8cdece3a28dbd9134b7c9df6f2e56953e46d024ad2c4e035f" + }, + "contract_json": { + "path": "/data/jialinzhang/SynthesizePipeline-server/DatasetNew/artifacts/data_core/tabular/m4/m4-dataset_contract_v1.json", + "exists": true, + "size": 3810, + "sha256": "c23641b258629a845b164099bd0132886f8f6d0100e990494e0f92540f8987d9" + } + } +} \ No newline at end of file diff --git a/hyperparameter/m4/tabdiff/tabdiff-m4-20260504_195148/models_tabdiff/trained.pt b/hyperparameter/m4/tabdiff/tabdiff-m4-20260504_195148/models_tabdiff/trained.pt new file mode 100644 index 0000000000000000000000000000000000000000..bc319a55a9c7152a1137f968b6fa1c735125ad11 --- /dev/null +++ b/hyperparameter/m4/tabdiff/tabdiff-m4-20260504_195148/models_tabdiff/trained.pt @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:306660b8aad4549267c68390b017e15ddb9bc06a02c80515eb72a97ae31a81eb +size 74 diff --git a/hyperparameter/m4/tabdiff/tabdiff-m4-20260504_195148/public_gate/normalized_schema_snapshot.json b/hyperparameter/m4/tabdiff/tabdiff-m4-20260504_195148/public_gate/normalized_schema_snapshot.json new file mode 100644 index 0000000000000000000000000000000000000000..31ed9818686b11907df75e872e4ffbe010330880 --- /dev/null +++ b/hyperparameter/m4/tabdiff/tabdiff-m4-20260504_195148/public_gate/normalized_schema_snapshot.json @@ -0,0 +1,147 @@ +{ + "dataset_id": "m4", + "target_column": "charges", + "task_type": "regression", + "columns": [ + { + "name": "age", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 47, + "unique_ratio": 0.0212, + "example_values": [ + "46", + "38", + "19", + "27", + "26" + ] + } + }, + { + "name": "sex", + "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.000902, + "example_values": [ + "female", + "male" + ] + } + }, + { + "name": "bmi", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 538, + "unique_ratio": 0.24267, + "example_values": [ + "23.655", + "19.3", + "30.59", + "32.67", + "29.45" + ] + } + }, + { + "name": "children", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 6, + "unique_ratio": 0.002706, + "example_values": [ + "1", + "0", + "3", + "2", + "5" + ] + } + }, + { + "name": "smoker", + "role": "feature", + "semantic_type": "boolean", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 2, + "unique_ratio": 0.000902, + "example_values": [ + "yes", + "no" + ] + } + }, + { + "name": "region", + "role": "feature", + "semantic_type": "categorical", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 4, + "unique_ratio": 0.001804, + "example_values": [ + "northwest", + "southwest", + "southeast", + "northeast" + ] + } + }, + { + "name": "charges", + "role": "target", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 1281, + "unique_ratio": 0.577808, + "example_values": [ + "21677.28345", + "15820.699", + "1639.5631", + "2497.0383", + "2897.3235" + ] + } + } + ] +} \ No newline at end of file diff --git a/hyperparameter/m4/tabdiff/tabdiff-m4-20260504_195148/public_gate/public_gate_report.json b/hyperparameter/m4/tabdiff/tabdiff-m4-20260504_195148/public_gate/public_gate_report.json new file mode 100644 index 0000000000000000000000000000000000000000..e7a25408e2574124629ea9437356551e4d6f4790 --- /dev/null +++ b/hyperparameter/m4/tabdiff/tabdiff-m4-20260504_195148/public_gate/public_gate_report.json @@ -0,0 +1,37 @@ +{ + "dataset_id": "m4", + "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": "charges", + "task_type": "regression", + "input_splits": { + "train": "/data/jialinzhang/SynthesizePipeline-server/DatasetNew/m4/m4-train.csv", + "val": "/data/jialinzhang/SynthesizePipeline-server/DatasetNew/m4/m4-val.csv", + "test": "/data/jialinzhang/SynthesizePipeline-server/DatasetNew/m4/m4-test.csv" + } +} \ No newline at end of file diff --git a/hyperparameter/m4/tabdiff/tabdiff-m4-20260504_195148/public_gate/staged_input_manifest.json b/hyperparameter/m4/tabdiff/tabdiff-m4-20260504_195148/public_gate/staged_input_manifest.json new file mode 100644 index 0000000000000000000000000000000000000000..2689d5b2ca9f04c1956c4946f1b493a93ef11df2 --- /dev/null +++ b/hyperparameter/m4/tabdiff/tabdiff-m4-20260504_195148/public_gate/staged_input_manifest.json @@ -0,0 +1,152 @@ +{ + "dataset_id": "m4", + "target_column": "charges", + "task_type": "regression", + "train_csv": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/m4/tabdiff/tabdiff-m4-20260504_195148/staged/public/train.csv", + "val_csv": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/m4/tabdiff/tabdiff-m4-20260504_195148/staged/public/val.csv", + "test_csv": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/m4/tabdiff/tabdiff-m4-20260504_195148/staged/public/test.csv", + "features_json": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/m4/tabdiff/tabdiff-m4-20260504_195148/staged/public/staged_features.json", + "public_gate_report": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/m4/tabdiff/tabdiff-m4-20260504_195148/public_gate/public_gate_report.json", + "column_schema": [ + { + "name": "age", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 47, + "unique_ratio": 0.0212, + "example_values": [ + "46", + "38", + "19", + "27", + "26" + ] + } + }, + { + "name": "sex", + "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.000902, + "example_values": [ + "female", + "male" + ] + } + }, + { + "name": "bmi", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 538, + "unique_ratio": 0.24267, + "example_values": [ + "23.655", + "19.3", + "30.59", + "32.67", + "29.45" + ] + } + }, + { + "name": "children", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 6, + "unique_ratio": 0.002706, + "example_values": [ + "1", + "0", + "3", + "2", + "5" + ] + } + }, + { + "name": "smoker", + "role": "feature", + "semantic_type": "boolean", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 2, + "unique_ratio": 0.000902, + "example_values": [ + "yes", + "no" + ] + } + }, + { + "name": "region", + "role": "feature", + "semantic_type": "categorical", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 4, + "unique_ratio": 0.001804, + "example_values": [ + "northwest", + "southwest", + "southeast", + "northeast" + ] + } + }, + { + "name": "charges", + "role": "target", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 1281, + "unique_ratio": 0.577808, + "example_values": [ + "21677.28345", + "15820.699", + "1639.5631", + "2497.0383", + "2897.3235" + ] + } + } + ] +} \ No newline at end of file diff --git a/hyperparameter/m4/tabdiff/tabdiff-m4-20260504_195148/run_config.json b/hyperparameter/m4/tabdiff/tabdiff-m4-20260504_195148/run_config.json new file mode 100644 index 0000000000000000000000000000000000000000..5ac47c10917bec38ed6e7abe77250a02f2d1ce60 --- /dev/null +++ b/hyperparameter/m4/tabdiff/tabdiff-m4-20260504_195148/run_config.json @@ -0,0 +1,40 @@ +{ + "schema_version": 1, + "recorded_at": "2026-05-04T19:51:48", + "dataset_id": "m4", + "model": "tabdiff", + "work_dir": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/m4/tabdiff/tabdiff-m4-20260504_195148", + "dataset_source_requested": "new", + "dataset_source_resolved": "new", + "cli_args": { + "model": "tabdiff", + "dataset": "m4", + "dataset_source": "new", + "train": true, + "generate": true, + "num_rows": 0, + "epochs": 100, + "output_dir": null, + "model_dir": null, + "work_dir": null, + "resume": false, + "no_stats": false + }, + "resolved": { + "num_rows": 2217, + "model_path": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/m4/tabdiff/tabdiff-m4-20260504_195148/models_tabdiff/trained.pt", + "output_csv": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/m4/tabdiff/tabdiff-m4-20260504_195148/tabdiff-m4-2217-20260504_195330.csv" + }, + "input_artifacts": { + "public_gate_report": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/m4/tabdiff/tabdiff-m4-20260504_195148/public_gate/public_gate_report.json", + "public_manifest": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/m4/tabdiff/tabdiff-m4-20260504_195148/public_gate/staged_input_manifest.json", + "model_manifest": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/m4/tabdiff/tabdiff-m4-20260504_195148/staged/tabdiff/model_input_manifest.json", + "train_csv": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/m4/tabdiff/tabdiff-m4-20260504_195148/staged/public/train.csv", + "features_json": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/m4/tabdiff/tabdiff-m4-20260504_195148/staged/public/staged_features.json", + "target_column": "charges", + "task_type": "regression" + }, + "env_overrides": { + "BENCHMARK_TABDIFF_GPUS": "device=3" + } +} \ No newline at end of file diff --git a/hyperparameter/m4/tabdiff/tabdiff-m4-20260504_195148/runtime_result.json b/hyperparameter/m4/tabdiff/tabdiff-m4-20260504_195148/runtime_result.json new file mode 100644 index 0000000000000000000000000000000000000000..4689399fd35911672197f6622b403d9b468a23d0 --- /dev/null +++ b/hyperparameter/m4/tabdiff/tabdiff-m4-20260504_195148/runtime_result.json @@ -0,0 +1,27 @@ +{ + "dataset_id": "m4", + "model": "tabdiff", + "run_id": "tabdiff-m4-20260504_195148", + "public_gate_status": "pass", + "adapter_ready_status": "pass", + "train_status": "success", + "generate_status": "success", + "reason_code": null, + "reason_detail": null, + "artifacts": { + "synthetic_csv": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/m4/tabdiff/tabdiff-m4-20260504_195148/tabdiff-m4-2217-20260504_195330.csv", + "model_path": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/m4/tabdiff/tabdiff-m4-20260504_195148/models_tabdiff/trained.pt" + }, + "timings": { + "train": { + "started_at": "2026-05-04T19:51:48", + "ended_at": "2026-05-04T19:53:30", + "duration_sec": 102.364 + }, + "generate": { + "started_at": "2026-05-04T19:53:30", + "ended_at": "2026-05-04T19:53:40", + "duration_sec": 9.583 + } + } +} \ No newline at end of file diff --git a/hyperparameter/m4/tabdiff/tabdiff-m4-20260504_195148/staged/public/staged_features.json b/hyperparameter/m4/tabdiff/tabdiff-m4-20260504_195148/staged/public/staged_features.json new file mode 100644 index 0000000000000000000000000000000000000000..d6acd098c35111f423f3ffff2cfd1754bc5dfebc --- /dev/null +++ b/hyperparameter/m4/tabdiff/tabdiff-m4-20260504_195148/staged/public/staged_features.json @@ -0,0 +1,37 @@ +[ + { + "feature_name": "age", + "data_type": "continuous", + "is_target": false + }, + { + "feature_name": "sex", + "data_type": "categorical", + "is_target": false + }, + { + "feature_name": "bmi", + "data_type": "continuous", + "is_target": false + }, + { + "feature_name": "children", + "data_type": "continuous", + "is_target": false + }, + { + "feature_name": "smoker", + "data_type": "binary", + "is_target": false + }, + { + "feature_name": "region", + "data_type": "categorical", + "is_target": false + }, + { + "feature_name": "charges", + "data_type": "continuous", + "is_target": true + } +] \ No newline at end of file diff --git a/hyperparameter/m4/tabdiff/tabdiff-m4-20260504_195148/staged/public/test.csv b/hyperparameter/m4/tabdiff/tabdiff-m4-20260504_195148/staged/public/test.csv new file mode 100644 index 0000000000000000000000000000000000000000..c88a2e7cfcd715bb421cb56eb078033da45c4dc8 --- /dev/null +++ b/hyperparameter/m4/tabdiff/tabdiff-m4-20260504_195148/staged/public/test.csv @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:4c541b677fb2d45c5bc79338eeee9fd8c91484b195a0c2c546c2fbabf113b7ea +size 11298 diff --git a/hyperparameter/m4/tabdiff/tabdiff-m4-20260504_195148/staged/public/train.csv b/hyperparameter/m4/tabdiff/tabdiff-m4-20260504_195148/staged/public/train.csv new file mode 100644 index 0000000000000000000000000000000000000000..5a05019d786529e0617291766c4fbe016ca01bf5 --- /dev/null +++ b/hyperparameter/m4/tabdiff/tabdiff-m4-20260504_195148/staged/public/train.csv @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:614ebfac5f41d6f661aff675fa18c0f933a8d9bcc77ea71b7b2360c2f0155837 +size 90069 diff --git a/hyperparameter/m4/tabdiff/tabdiff-m4-20260504_195148/staged/public/val.csv b/hyperparameter/m4/tabdiff/tabdiff-m4-20260504_195148/staged/public/val.csv new file mode 100644 index 0000000000000000000000000000000000000000..d78fe5ad1537c437ba9ac2629f2aa60a6c17e708 --- /dev/null +++ b/hyperparameter/m4/tabdiff/tabdiff-m4-20260504_195148/staged/public/val.csv @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:e55f5edbe7942ff01630de91a9c70dfbc6445eba76c7b970350364546b67c2d7 +size 11218 diff --git a/hyperparameter/m4/tabdiff/tabdiff-m4-20260504_195148/staged/tabdiff/adapter_report.json b/hyperparameter/m4/tabdiff/tabdiff-m4-20260504_195148/staged/tabdiff/adapter_report.json new file mode 100644 index 0000000000000000000000000000000000000000..3a7a3d6a9e71cf1a21a808af4c395bc96d1c5488 --- /dev/null +++ b/hyperparameter/m4/tabdiff/tabdiff-m4-20260504_195148/staged/tabdiff/adapter_report.json @@ -0,0 +1,7 @@ +{ + "adapter_ready_status": "pass", + "adapter_fail_reason_code": null, + "adapter_fail_detail": null, + "adapter_transforms_applied": [], + "model_input_manifest": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/m4/tabdiff/tabdiff-m4-20260504_195148/staged/tabdiff/model_input_manifest.json" +} \ No newline at end of file diff --git a/hyperparameter/m4/tabdiff/tabdiff-m4-20260504_195148/staged/tabdiff/adapter_transforms_applied.json b/hyperparameter/m4/tabdiff/tabdiff-m4-20260504_195148/staged/tabdiff/adapter_transforms_applied.json new file mode 100644 index 0000000000000000000000000000000000000000..0637a088a01e8ddab3bf3fa98dbe804cbde1a0dc --- /dev/null +++ b/hyperparameter/m4/tabdiff/tabdiff-m4-20260504_195148/staged/tabdiff/adapter_transforms_applied.json @@ -0,0 +1 @@ +[] \ No newline at end of file diff --git a/hyperparameter/m4/tabdiff/tabdiff-m4-20260504_195148/staged/tabdiff/model_input_manifest.json b/hyperparameter/m4/tabdiff/tabdiff-m4-20260504_195148/staged/tabdiff/model_input_manifest.json new file mode 100644 index 0000000000000000000000000000000000000000..f66fe365e8dcfb6ff9648bda433a344312b43966 --- /dev/null +++ b/hyperparameter/m4/tabdiff/tabdiff-m4-20260504_195148/staged/tabdiff/model_input_manifest.json @@ -0,0 +1,154 @@ +{ + "dataset_id": "m4", + "model": "tabdiff", + "target_column": "charges", + "task_type": "regression", + "column_schema": [ + { + "name": "age", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 47, + "unique_ratio": 0.0212, + "example_values": [ + "46", + "38", + "19", + "27", + "26" + ] + } + }, + { + "name": "sex", + "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.000902, + "example_values": [ + "female", + "male" + ] + } + }, + { + "name": "bmi", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 538, + "unique_ratio": 0.24267, + "example_values": [ + "23.655", + "19.3", + "30.59", + "32.67", + "29.45" + ] + } + }, + { + "name": "children", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 6, + "unique_ratio": 0.002706, + "example_values": [ + "1", + "0", + "3", + "2", + "5" + ] + } + }, + { + "name": "smoker", + "role": "feature", + "semantic_type": "boolean", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 2, + "unique_ratio": 0.000902, + "example_values": [ + "yes", + "no" + ] + } + }, + { + "name": "region", + "role": "feature", + "semantic_type": "categorical", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 4, + "unique_ratio": 0.001804, + "example_values": [ + "northwest", + "southwest", + "southeast", + "northeast" + ] + } + }, + { + "name": "charges", + "role": "target", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 1281, + "unique_ratio": 0.577808, + "example_values": [ + "21677.28345", + "15820.699", + "1639.5631", + "2497.0383", + "2897.3235" + ] + } + } + ], + "public_manifest": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/m4/tabdiff/tabdiff-m4-20260504_195148/public_gate/staged_input_manifest.json", + "train_csv": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/m4/tabdiff/tabdiff-m4-20260504_195148/staged/public/train.csv", + "val_csv": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/m4/tabdiff/tabdiff-m4-20260504_195148/staged/public/val.csv", + "test_csv": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/m4/tabdiff/tabdiff-m4-20260504_195148/staged/public/test.csv", + "features_json": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/m4/tabdiff/tabdiff-m4-20260504_195148/staged/public/staged_features.json", + "public_gate_report": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/m4/tabdiff/tabdiff-m4-20260504_195148/public_gate/public_gate_report.json" +} \ No newline at end of file diff --git a/hyperparameter/m4/tabdiff/tabdiff-m4-20260504_195148/tabdiff-m4-2217-20260504_195330.csv b/hyperparameter/m4/tabdiff/tabdiff-m4-20260504_195148/tabdiff-m4-2217-20260504_195330.csv new file mode 100644 index 0000000000000000000000000000000000000000..5a9ef2734abeb33cb83acd429f57801c8ed1b981 --- /dev/null +++ b/hyperparameter/m4/tabdiff/tabdiff-m4-20260504_195148/tabdiff-m4-2217-20260504_195330.csv @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:d1842905951118b5228b54020949111d267694117fe01644b47bb5e9467bf003 +size 83452 diff --git a/hyperparameter/m4/tabdiff/tabdiff-m4-20260504_195148/tabdiff_train_meta.json b/hyperparameter/m4/tabdiff/tabdiff-m4-20260504_195148/tabdiff_train_meta.json new file mode 100644 index 0000000000000000000000000000000000000000..5ced08440a4065d867b4bee6acdbb4d32c2ef638 --- /dev/null +++ b/hyperparameter/m4/tabdiff/tabdiff-m4-20260504_195148/tabdiff_train_meta.json @@ -0,0 +1,5 @@ +{ + "exp_name": "adapter_learnable", + "dataname": "pipeline_m4", + "steps": 100 +} \ No newline at end of file diff --git a/hyperparameter/m4/tabdiff/tabdiff-m4-20260504_195148/tabular_bundle/pipeline_m4/X_cat_test.npy b/hyperparameter/m4/tabdiff/tabdiff-m4-20260504_195148/tabular_bundle/pipeline_m4/X_cat_test.npy new file mode 100644 index 0000000000000000000000000000000000000000..2f6b8b23f5768174aab4879e2a30371e9a3d0ead --- /dev/null +++ b/hyperparameter/m4/tabdiff/tabdiff-m4-20260504_195148/tabular_bundle/pipeline_m4/X_cat_test.npy @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:c91af7ac26382e392a70536d3dbb592c04ba5e4f495d1e3c364416b9ef704a07 +size 53336 diff --git a/hyperparameter/m4/tabdiff/tabdiff-m4-20260504_195148/tabular_bundle/pipeline_m4/X_cat_train.npy b/hyperparameter/m4/tabdiff/tabdiff-m4-20260504_195148/tabular_bundle/pipeline_m4/X_cat_train.npy new file mode 100644 index 0000000000000000000000000000000000000000..2f6b8b23f5768174aab4879e2a30371e9a3d0ead --- /dev/null +++ b/hyperparameter/m4/tabdiff/tabdiff-m4-20260504_195148/tabular_bundle/pipeline_m4/X_cat_train.npy @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:c91af7ac26382e392a70536d3dbb592c04ba5e4f495d1e3c364416b9ef704a07 +size 53336 diff --git a/hyperparameter/m4/tabdiff/tabdiff-m4-20260504_195148/tabular_bundle/pipeline_m4/X_cat_val.npy b/hyperparameter/m4/tabdiff/tabdiff-m4-20260504_195148/tabular_bundle/pipeline_m4/X_cat_val.npy new file mode 100644 index 0000000000000000000000000000000000000000..2f6b8b23f5768174aab4879e2a30371e9a3d0ead --- /dev/null +++ b/hyperparameter/m4/tabdiff/tabdiff-m4-20260504_195148/tabular_bundle/pipeline_m4/X_cat_val.npy @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:c91af7ac26382e392a70536d3dbb592c04ba5e4f495d1e3c364416b9ef704a07 +size 53336 diff --git a/hyperparameter/m4/tabdiff/tabdiff-m4-20260504_195148/tabular_bundle/pipeline_m4/X_num_test.npy b/hyperparameter/m4/tabdiff/tabdiff-m4-20260504_195148/tabular_bundle/pipeline_m4/X_num_test.npy new file mode 100644 index 0000000000000000000000000000000000000000..dc149960a879e21fd1aeed7de2419851175627e7 --- /dev/null +++ b/hyperparameter/m4/tabdiff/tabdiff-m4-20260504_195148/tabular_bundle/pipeline_m4/X_num_test.npy @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:4a21bd2fd5a226c07d543ddf78616a8edb2d52b51097fc7a5df5b05612267af8 +size 26732 diff --git a/hyperparameter/m4/tabdiff/tabdiff-m4-20260504_195148/tabular_bundle/pipeline_m4/X_num_train.npy b/hyperparameter/m4/tabdiff/tabdiff-m4-20260504_195148/tabular_bundle/pipeline_m4/X_num_train.npy new file mode 100644 index 0000000000000000000000000000000000000000..dc149960a879e21fd1aeed7de2419851175627e7 --- /dev/null +++ b/hyperparameter/m4/tabdiff/tabdiff-m4-20260504_195148/tabular_bundle/pipeline_m4/X_num_train.npy @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:4a21bd2fd5a226c07d543ddf78616a8edb2d52b51097fc7a5df5b05612267af8 +size 26732 diff --git a/hyperparameter/m4/tabdiff/tabdiff-m4-20260504_195148/tabular_bundle/pipeline_m4/X_num_val.npy b/hyperparameter/m4/tabdiff/tabdiff-m4-20260504_195148/tabular_bundle/pipeline_m4/X_num_val.npy new file mode 100644 index 0000000000000000000000000000000000000000..dc149960a879e21fd1aeed7de2419851175627e7 --- /dev/null +++ b/hyperparameter/m4/tabdiff/tabdiff-m4-20260504_195148/tabular_bundle/pipeline_m4/X_num_val.npy @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:4a21bd2fd5a226c07d543ddf78616a8edb2d52b51097fc7a5df5b05612267af8 +size 26732 diff --git a/hyperparameter/m4/tabdiff/tabdiff-m4-20260504_195148/tabular_bundle/pipeline_m4/info.json b/hyperparameter/m4/tabdiff/tabdiff-m4-20260504_195148/tabular_bundle/pipeline_m4/info.json new file mode 100644 index 0000000000000000000000000000000000000000..1ccad8d2dc3c60feacc99d202a75e21be3afa7b5 --- /dev/null +++ b/hyperparameter/m4/tabdiff/tabdiff-m4-20260504_195148/tabular_bundle/pipeline_m4/info.json @@ -0,0 +1,92 @@ +{ + "name": "pipeline_m4", + "task_type": "regression", + "n_num_features": 3, + "n_cat_features": 3, + "train_size": 2217, + "test_num": 2217, + "val_num": 2217, + "train_num": 2217, + "bundle_note": "val/test matrices are train copies (train-only policy; no real held-out rows).", + "num_col_idx": [ + 0, + 1, + 2 + ], + "cat_col_idx": [ + 3, + 4, + 5 + ], + "target_col_idx": [ + 6 + ], + "column_names": [ + "age", + "bmi", + "children", + "sex", + "smoker", + "region", + "charges" + ], + "int_col_idx": [], + "int_columns": [], + "int_col_idx_wrt_num": [], + "metadata": { + "columns": { + "0": { + "sdtype": "numerical", + "computer_representation": "Float" + }, + "1": { + "sdtype": "numerical", + "computer_representation": "Float" + }, + "2": { + "sdtype": "numerical", + "computer_representation": "Float" + }, + "3": { + "sdtype": "categorical" + }, + "4": { + "sdtype": "categorical" + }, + "5": { + "sdtype": "categorical" + }, + "6": { + "sdtype": "numerical", + "computer_representation": "Float" + } + } + }, + "idx_mapping": { + "0": 0, + "1": 1, + "2": 2, + "3": 3, + "4": 4, + "5": 5, + "6": 6 + }, + "inverse_idx_mapping": { + "0": 0, + "1": 1, + "2": 2, + "3": 3, + "4": 4, + "5": 5, + "6": 6 + }, + "idx_name_mapping": { + "0": "age", + "1": "bmi", + "2": "children", + "3": "sex", + "4": "smoker", + "5": "region", + "6": "charges" + } +} \ No newline at end of file diff --git a/hyperparameter/m4/tabdiff/tabdiff-m4-20260504_195148/tabular_bundle/pipeline_m4/real.csv b/hyperparameter/m4/tabdiff/tabdiff-m4-20260504_195148/tabular_bundle/pipeline_m4/real.csv new file mode 100644 index 0000000000000000000000000000000000000000..85ff7f4464fa73c1d58767739e7b259f9371a55b --- /dev/null +++ b/hyperparameter/m4/tabdiff/tabdiff-m4-20260504_195148/tabular_bundle/pipeline_m4/real.csv @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:e031e2816aa79e4e5fab4c7fe470741eb2d287e493d74b9cfda68441799e07fa +size 60773 diff --git a/hyperparameter/m4/tabdiff/tabdiff-m4-20260504_195148/tabular_bundle/pipeline_m4/test.csv b/hyperparameter/m4/tabdiff/tabdiff-m4-20260504_195148/tabular_bundle/pipeline_m4/test.csv new file mode 100644 index 0000000000000000000000000000000000000000..85ff7f4464fa73c1d58767739e7b259f9371a55b --- /dev/null +++ b/hyperparameter/m4/tabdiff/tabdiff-m4-20260504_195148/tabular_bundle/pipeline_m4/test.csv @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:e031e2816aa79e4e5fab4c7fe470741eb2d287e493d74b9cfda68441799e07fa +size 60773 diff --git a/hyperparameter/m4/tabdiff/tabdiff-m4-20260504_195148/tabular_bundle/pipeline_m4/val.csv b/hyperparameter/m4/tabdiff/tabdiff-m4-20260504_195148/tabular_bundle/pipeline_m4/val.csv new file mode 100644 index 0000000000000000000000000000000000000000..85ff7f4464fa73c1d58767739e7b259f9371a55b --- /dev/null +++ b/hyperparameter/m4/tabdiff/tabdiff-m4-20260504_195148/tabular_bundle/pipeline_m4/val.csv @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:e031e2816aa79e4e5fab4c7fe470741eb2d287e493d74b9cfda68441799e07fa +size 60773 diff --git a/hyperparameter/m4/tabdiff/tabdiff-m4-20260504_195148/tabular_bundle/pipeline_m4/y_test.npy b/hyperparameter/m4/tabdiff/tabdiff-m4-20260504_195148/tabular_bundle/pipeline_m4/y_test.npy new file mode 100644 index 0000000000000000000000000000000000000000..717f965e62bd5595d6df01d1ad7851fc5768dc29 --- /dev/null +++ b/hyperparameter/m4/tabdiff/tabdiff-m4-20260504_195148/tabular_bundle/pipeline_m4/y_test.npy @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:0c64fea6ad5ed2f8441ef5212c726195dbf53e1c81298427bddd18eb20e35cf2 +size 8996 diff --git a/hyperparameter/m4/tabdiff/tabdiff-m4-20260504_195148/tabular_bundle/pipeline_m4/y_train.npy b/hyperparameter/m4/tabdiff/tabdiff-m4-20260504_195148/tabular_bundle/pipeline_m4/y_train.npy new file mode 100644 index 0000000000000000000000000000000000000000..717f965e62bd5595d6df01d1ad7851fc5768dc29 --- /dev/null +++ b/hyperparameter/m4/tabdiff/tabdiff-m4-20260504_195148/tabular_bundle/pipeline_m4/y_train.npy @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:0c64fea6ad5ed2f8441ef5212c726195dbf53e1c81298427bddd18eb20e35cf2 +size 8996 diff --git a/hyperparameter/m4/tabdiff/tabdiff-m4-20260504_195148/tabular_bundle/pipeline_m4/y_val.npy b/hyperparameter/m4/tabdiff/tabdiff-m4-20260504_195148/tabular_bundle/pipeline_m4/y_val.npy new file mode 100644 index 0000000000000000000000000000000000000000..717f965e62bd5595d6df01d1ad7851fc5768dc29 --- /dev/null +++ b/hyperparameter/m4/tabdiff/tabdiff-m4-20260504_195148/tabular_bundle/pipeline_m4/y_val.npy @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:0c64fea6ad5ed2f8441ef5212c726195dbf53e1c81298427bddd18eb20e35cf2 +size 8996 diff --git a/hyperparameter/m4/tabdiff/tabdiff-m4-20260504_195148/train_20260504_195148.log b/hyperparameter/m4/tabdiff/tabdiff-m4-20260504_195148/train_20260504_195148.log new file mode 100644 index 0000000000000000000000000000000000000000..29c8eb6daddbf5b908ff15a9d3ba56753e0b55fd --- /dev/null +++ b/hyperparameter/m4/tabdiff/tabdiff-m4-20260504_195148/train_20260504_195148.log @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:2eb025c85032cef748eb98c28214a0243fac7a18ac17fc4403178120444f93e4 +size 64000 diff --git a/hyperparameter/m4/tabdiff/tabdiff-m4-20260504_195352/_tabdiff_gen.py b/hyperparameter/m4/tabdiff/tabdiff-m4-20260504_195352/_tabdiff_gen.py new file mode 100644 index 0000000000000000000000000000000000000000..eefebf2b2729435ea174a03cf601e16feb75bd0d --- /dev/null +++ b/hyperparameter/m4/tabdiff/tabdiff-m4-20260504_195352/_tabdiff_gen.py @@ -0,0 +1,36 @@ + +import os, shutil, subprocess, sys +td = r"/workspace/TabDiff" +name = r"pipeline_m4" +src = r"/work/output-Benchmark-trainonly-v1/m4/tabdiff/tabdiff-m4-20260504_195352/tabular_bundle/pipeline_m4" +dst_data = os.path.join(td, "data", name) +dst_syn = os.path.join(td, "synthetic", name) +shutil.rmtree(dst_data, ignore_errors=True) +shutil.copytree(src, dst_data) +os.makedirs(dst_syn, exist_ok=True) +for fn in ("real.csv", "test.csv", "val.csv"): + shutil.copy(os.path.join(src, fn), os.path.join(dst_syn, fn)) +os.chdir(td) +os.environ["PYTHONPATH"] = td + os.pathsep + os.environ.get("PYTHONPATH", "") +subprocess.check_call([ + sys.executable, "-m", "tabdiff.main", + "--dataname", name, "--mode", "test", "--gpu", "0", + "--no_wandb", "--exp_name", r"adapter_learnable", + "--ckpt_path", r"/workspace/TabDiff/tabdiff/ckpt/pipeline_m4/adapter_learnable/model_500.pt", + "--num_samples_to_generate", str(int(2217)), +]) +# test() 写入 tabdiff/result////samples.csv +import glob as g +base = os.path.join(td, "tabdiff", "result", name, r"adapter_learnable") +best = None +best_t = -1.0 +for root, _, files in os.walk(base): + if "samples.csv" in files: + p = os.path.join(root, "samples.csv") + t = os.path.getmtime(p) + if t > best_t: + best_t = t + best = p +if not best: + raise SystemExit("tabdiff: no samples.csv under " + base) +shutil.copy(best, r"/work/output-Benchmark-trainonly-v1/m4/tabdiff/tabdiff-m4-20260504_195352/tabdiff-m4-2217-20260504_195627.csv") diff --git a/hyperparameter/m4/tabdiff/tabdiff-m4-20260504_195352/_tabdiff_train.py b/hyperparameter/m4/tabdiff/tabdiff-m4-20260504_195352/_tabdiff_train.py new file mode 100644 index 0000000000000000000000000000000000000000..7a6169b97b8946d8a910da749c9902ec064e1718 --- /dev/null +++ b/hyperparameter/m4/tabdiff/tabdiff-m4-20260504_195352/_tabdiff_train.py @@ -0,0 +1,21 @@ + +import os, shutil, subprocess, sys +td = r"/workspace/TabDiff" +name = r"pipeline_m4" +src = r"/work/output-Benchmark-trainonly-v1/m4/tabdiff/tabdiff-m4-20260504_195352/tabular_bundle/pipeline_m4" +dst_data = os.path.join(td, "data", name) +dst_syn = os.path.join(td, "synthetic", name) +shutil.rmtree(dst_data, ignore_errors=True) +shutil.copytree(src, dst_data) +os.makedirs(dst_syn, exist_ok=True) +for fn in ("real.csv", "test.csv", "val.csv"): + shutil.copy(os.path.join(src, fn), os.path.join(dst_syn, fn)) +os.chdir(td) +os.environ["PYTHONPATH"] = td + os.pathsep + os.environ.get("PYTHONPATH", "") +os.environ["TABDIFF_SMOKE_STEPS"] = "200" +os.environ["TABDIFF_ADAPTER_TRAIN"] = "1" +subprocess.check_call([ + sys.executable, "-m", "tabdiff.main", + "--dataname", name, "--mode", "train", "--gpu", "0", + "--no_wandb", "--exp_name", r"adapter_learnable", +]) diff --git a/hyperparameter/m4/tabdiff/tabdiff-m4-20260504_195352/gen_20260504_195627.log b/hyperparameter/m4/tabdiff/tabdiff-m4-20260504_195352/gen_20260504_195627.log new file mode 100644 index 0000000000000000000000000000000000000000..7247b62a5a00222da3e6b91b6bb670b1acf8b36c --- /dev/null +++ b/hyperparameter/m4/tabdiff/tabdiff-m4-20260504_195352/gen_20260504_195627.log @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:367003da7e1f414a1622333df41e08c12e50cbcb20d4f8da24cbc6cfcea7bafd +size 4555 diff --git a/hyperparameter/m4/tabdiff/tabdiff-m4-20260504_195352/input_snapshot.json b/hyperparameter/m4/tabdiff/tabdiff-m4-20260504_195352/input_snapshot.json new file mode 100644 index 0000000000000000000000000000000000000000..28cd3a4d75d18efdf20f8d2e0b931a2ecdef48e9 --- /dev/null +++ b/hyperparameter/m4/tabdiff/tabdiff-m4-20260504_195352/input_snapshot.json @@ -0,0 +1,36 @@ +{ + "dataset_id": "m4", + "model": "tabdiff", + "inputs": { + "train_csv": { + "path": "/data/jialinzhang/SynthesizePipeline-server/DatasetNew/m4/m4-train.csv", + "exists": true, + "size": 92191, + "sha256": "396b9d409ca21bf4a4cd329bdf5b7796aa0ae6356fa8d89b8eb669b5880b81f1" + }, + "val_csv": { + "path": "/data/jialinzhang/SynthesizePipeline-server/DatasetNew/m4/m4-val.csv", + "exists": true, + "size": 11482, + "sha256": "ee3c247d02f56e1687d03c381e13125d6a3a2a411ac7f202ba8520a4be9f1784" + }, + "test_csv": { + "path": "/data/jialinzhang/SynthesizePipeline-server/DatasetNew/m4/m4-test.csv", + "exists": true, + "size": 11559, + "sha256": "cadb9941124001b8fa7cb1ebae43b70a9ca56294f4df4d3c2f22c164c41757d4" + }, + "profile_json": { + "path": "/data/jialinzhang/SynthesizePipeline-server/DatasetNew/artifacts/data_core/tabular/m4/m4-dataset_profile.json", + "exists": true, + "size": 3336, + "sha256": "83e2764810e4a0e8cdece3a28dbd9134b7c9df6f2e56953e46d024ad2c4e035f" + }, + "contract_json": { + "path": "/data/jialinzhang/SynthesizePipeline-server/DatasetNew/artifacts/data_core/tabular/m4/m4-dataset_contract_v1.json", + "exists": true, + "size": 3810, + "sha256": "c23641b258629a845b164099bd0132886f8f6d0100e990494e0f92540f8987d9" + } + } +} \ No newline at end of file diff --git a/hyperparameter/m4/tabdiff/tabdiff-m4-20260504_195352/models_tabdiff/trained.pt b/hyperparameter/m4/tabdiff/tabdiff-m4-20260504_195352/models_tabdiff/trained.pt new file mode 100644 index 0000000000000000000000000000000000000000..bc319a55a9c7152a1137f968b6fa1c735125ad11 --- /dev/null +++ b/hyperparameter/m4/tabdiff/tabdiff-m4-20260504_195352/models_tabdiff/trained.pt @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:306660b8aad4549267c68390b017e15ddb9bc06a02c80515eb72a97ae31a81eb +size 74 diff --git a/hyperparameter/m4/tabdiff/tabdiff-m4-20260504_195352/public_gate/normalized_schema_snapshot.json b/hyperparameter/m4/tabdiff/tabdiff-m4-20260504_195352/public_gate/normalized_schema_snapshot.json new file mode 100644 index 0000000000000000000000000000000000000000..31ed9818686b11907df75e872e4ffbe010330880 --- /dev/null +++ b/hyperparameter/m4/tabdiff/tabdiff-m4-20260504_195352/public_gate/normalized_schema_snapshot.json @@ -0,0 +1,147 @@ +{ + "dataset_id": "m4", + "target_column": "charges", + "task_type": "regression", + "columns": [ + { + "name": "age", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 47, + "unique_ratio": 0.0212, + "example_values": [ + "46", + "38", + "19", + "27", + "26" + ] + } + }, + { + "name": "sex", + "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.000902, + "example_values": [ + "female", + "male" + ] + } + }, + { + "name": "bmi", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 538, + "unique_ratio": 0.24267, + "example_values": [ + "23.655", + "19.3", + "30.59", + "32.67", + "29.45" + ] + } + }, + { + "name": "children", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 6, + "unique_ratio": 0.002706, + "example_values": [ + "1", + "0", + "3", + "2", + "5" + ] + } + }, + { + "name": "smoker", + "role": "feature", + "semantic_type": "boolean", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 2, + "unique_ratio": 0.000902, + "example_values": [ + "yes", + "no" + ] + } + }, + { + "name": "region", + "role": "feature", + "semantic_type": "categorical", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 4, + "unique_ratio": 0.001804, + "example_values": [ + "northwest", + "southwest", + "southeast", + "northeast" + ] + } + }, + { + "name": "charges", + "role": "target", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 1281, + "unique_ratio": 0.577808, + "example_values": [ + "21677.28345", + "15820.699", + "1639.5631", + "2497.0383", + "2897.3235" + ] + } + } + ] +} \ No newline at end of file diff --git a/hyperparameter/m4/tabdiff/tabdiff-m4-20260504_195352/public_gate/public_gate_report.json b/hyperparameter/m4/tabdiff/tabdiff-m4-20260504_195352/public_gate/public_gate_report.json new file mode 100644 index 0000000000000000000000000000000000000000..e7a25408e2574124629ea9437356551e4d6f4790 --- /dev/null +++ b/hyperparameter/m4/tabdiff/tabdiff-m4-20260504_195352/public_gate/public_gate_report.json @@ -0,0 +1,37 @@ +{ + "dataset_id": "m4", + "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": "charges", + "task_type": "regression", + "input_splits": { + "train": "/data/jialinzhang/SynthesizePipeline-server/DatasetNew/m4/m4-train.csv", + "val": "/data/jialinzhang/SynthesizePipeline-server/DatasetNew/m4/m4-val.csv", + "test": "/data/jialinzhang/SynthesizePipeline-server/DatasetNew/m4/m4-test.csv" + } +} \ No newline at end of file diff --git a/hyperparameter/m4/tabdiff/tabdiff-m4-20260504_195352/public_gate/staged_input_manifest.json b/hyperparameter/m4/tabdiff/tabdiff-m4-20260504_195352/public_gate/staged_input_manifest.json new file mode 100644 index 0000000000000000000000000000000000000000..c7540fa6aeead6ce0e0c4a54f333848401989931 --- /dev/null +++ b/hyperparameter/m4/tabdiff/tabdiff-m4-20260504_195352/public_gate/staged_input_manifest.json @@ -0,0 +1,152 @@ +{ + "dataset_id": "m4", + "target_column": "charges", + "task_type": "regression", + "train_csv": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/m4/tabdiff/tabdiff-m4-20260504_195352/staged/public/train.csv", + "val_csv": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/m4/tabdiff/tabdiff-m4-20260504_195352/staged/public/val.csv", + "test_csv": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/m4/tabdiff/tabdiff-m4-20260504_195352/staged/public/test.csv", + "features_json": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/m4/tabdiff/tabdiff-m4-20260504_195352/staged/public/staged_features.json", + "public_gate_report": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/m4/tabdiff/tabdiff-m4-20260504_195352/public_gate/public_gate_report.json", + "column_schema": [ + { + "name": "age", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 47, + "unique_ratio": 0.0212, + "example_values": [ + "46", + "38", + "19", + "27", + "26" + ] + } + }, + { + "name": "sex", + "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.000902, + "example_values": [ + "female", + "male" + ] + } + }, + { + "name": "bmi", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 538, + "unique_ratio": 0.24267, + "example_values": [ + "23.655", + "19.3", + "30.59", + "32.67", + "29.45" + ] + } + }, + { + "name": "children", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 6, + "unique_ratio": 0.002706, + "example_values": [ + "1", + "0", + "3", + "2", + "5" + ] + } + }, + { + "name": "smoker", + "role": "feature", + "semantic_type": "boolean", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 2, + "unique_ratio": 0.000902, + "example_values": [ + "yes", + "no" + ] + } + }, + { + "name": "region", + "role": "feature", + "semantic_type": "categorical", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 4, + "unique_ratio": 0.001804, + "example_values": [ + "northwest", + "southwest", + "southeast", + "northeast" + ] + } + }, + { + "name": "charges", + "role": "target", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 1281, + "unique_ratio": 0.577808, + "example_values": [ + "21677.28345", + "15820.699", + "1639.5631", + "2497.0383", + "2897.3235" + ] + } + } + ] +} \ No newline at end of file diff --git a/hyperparameter/m4/tabdiff/tabdiff-m4-20260504_195352/run_config.json b/hyperparameter/m4/tabdiff/tabdiff-m4-20260504_195352/run_config.json new file mode 100644 index 0000000000000000000000000000000000000000..96c7ad902b0a31d34731a82febdb080508776b01 --- /dev/null +++ b/hyperparameter/m4/tabdiff/tabdiff-m4-20260504_195352/run_config.json @@ -0,0 +1,40 @@ +{ + "schema_version": 1, + "recorded_at": "2026-05-04T19:53:52", + "dataset_id": "m4", + "model": "tabdiff", + "work_dir": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/m4/tabdiff/tabdiff-m4-20260504_195352", + "dataset_source_requested": "new", + "dataset_source_resolved": "new", + "cli_args": { + "model": "tabdiff", + "dataset": "m4", + "dataset_source": "new", + "train": true, + "generate": true, + "num_rows": 0, + "epochs": 200, + "output_dir": null, + "model_dir": null, + "work_dir": null, + "resume": false, + "no_stats": false + }, + "resolved": { + "num_rows": 2217, + "model_path": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/m4/tabdiff/tabdiff-m4-20260504_195352/models_tabdiff/trained.pt", + "output_csv": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/m4/tabdiff/tabdiff-m4-20260504_195352/tabdiff-m4-2217-20260504_195627.csv" + }, + "input_artifacts": { + "public_gate_report": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/m4/tabdiff/tabdiff-m4-20260504_195352/public_gate/public_gate_report.json", + "public_manifest": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/m4/tabdiff/tabdiff-m4-20260504_195352/public_gate/staged_input_manifest.json", + "model_manifest": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/m4/tabdiff/tabdiff-m4-20260504_195352/staged/tabdiff/model_input_manifest.json", + "train_csv": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/m4/tabdiff/tabdiff-m4-20260504_195352/staged/public/train.csv", + "features_json": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/m4/tabdiff/tabdiff-m4-20260504_195352/staged/public/staged_features.json", + "target_column": "charges", + "task_type": "regression" + }, + "env_overrides": { + "BENCHMARK_TABDIFF_GPUS": "device=3" + } +} \ No newline at end of file diff --git a/hyperparameter/m4/tabdiff/tabdiff-m4-20260504_195352/runtime_result.json b/hyperparameter/m4/tabdiff/tabdiff-m4-20260504_195352/runtime_result.json new file mode 100644 index 0000000000000000000000000000000000000000..c8bb0dbc9448df66b2ca4eb3ea9395dd467ada91 --- /dev/null +++ b/hyperparameter/m4/tabdiff/tabdiff-m4-20260504_195352/runtime_result.json @@ -0,0 +1,27 @@ +{ + "dataset_id": "m4", + "model": "tabdiff", + "run_id": "tabdiff-m4-20260504_195352", + "public_gate_status": "pass", + "adapter_ready_status": "pass", + "train_status": "success", + "generate_status": "success", + "reason_code": null, + "reason_detail": null, + "artifacts": { + "synthetic_csv": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/m4/tabdiff/tabdiff-m4-20260504_195352/tabdiff-m4-2217-20260504_195627.csv", + "model_path": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/m4/tabdiff/tabdiff-m4-20260504_195352/models_tabdiff/trained.pt" + }, + "timings": { + "train": { + "started_at": "2026-05-04T19:53:52", + "ended_at": "2026-05-04T19:56:27", + "duration_sec": 154.949 + }, + "generate": { + "started_at": "2026-05-04T19:56:27", + "ended_at": "2026-05-04T19:56:37", + "duration_sec": 9.617 + } + } +} \ No newline at end of file diff --git a/hyperparameter/m4/tabdiff/tabdiff-m4-20260504_195352/staged/public/staged_features.json b/hyperparameter/m4/tabdiff/tabdiff-m4-20260504_195352/staged/public/staged_features.json new file mode 100644 index 0000000000000000000000000000000000000000..d6acd098c35111f423f3ffff2cfd1754bc5dfebc --- /dev/null +++ b/hyperparameter/m4/tabdiff/tabdiff-m4-20260504_195352/staged/public/staged_features.json @@ -0,0 +1,37 @@ +[ + { + "feature_name": "age", + "data_type": "continuous", + "is_target": false + }, + { + "feature_name": "sex", + "data_type": "categorical", + "is_target": false + }, + { + "feature_name": "bmi", + "data_type": "continuous", + "is_target": false + }, + { + "feature_name": "children", + "data_type": "continuous", + "is_target": false + }, + { + "feature_name": "smoker", + "data_type": "binary", + "is_target": false + }, + { + "feature_name": "region", + "data_type": "categorical", + "is_target": false + }, + { + "feature_name": "charges", + "data_type": "continuous", + "is_target": true + } +] \ No newline at end of file diff --git a/hyperparameter/m4/tabdiff/tabdiff-m4-20260504_195352/staged/public/test.csv b/hyperparameter/m4/tabdiff/tabdiff-m4-20260504_195352/staged/public/test.csv new file mode 100644 index 0000000000000000000000000000000000000000..c88a2e7cfcd715bb421cb56eb078033da45c4dc8 --- /dev/null +++ b/hyperparameter/m4/tabdiff/tabdiff-m4-20260504_195352/staged/public/test.csv @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:4c541b677fb2d45c5bc79338eeee9fd8c91484b195a0c2c546c2fbabf113b7ea +size 11298 diff --git a/hyperparameter/m4/tabdiff/tabdiff-m4-20260504_195352/staged/public/train.csv b/hyperparameter/m4/tabdiff/tabdiff-m4-20260504_195352/staged/public/train.csv new file mode 100644 index 0000000000000000000000000000000000000000..5a05019d786529e0617291766c4fbe016ca01bf5 --- /dev/null +++ b/hyperparameter/m4/tabdiff/tabdiff-m4-20260504_195352/staged/public/train.csv @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:614ebfac5f41d6f661aff675fa18c0f933a8d9bcc77ea71b7b2360c2f0155837 +size 90069 diff --git a/hyperparameter/m4/tabdiff/tabdiff-m4-20260504_195352/staged/public/val.csv b/hyperparameter/m4/tabdiff/tabdiff-m4-20260504_195352/staged/public/val.csv new file mode 100644 index 0000000000000000000000000000000000000000..d78fe5ad1537c437ba9ac2629f2aa60a6c17e708 --- /dev/null +++ b/hyperparameter/m4/tabdiff/tabdiff-m4-20260504_195352/staged/public/val.csv @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:e55f5edbe7942ff01630de91a9c70dfbc6445eba76c7b970350364546b67c2d7 +size 11218 diff --git a/hyperparameter/m4/tabdiff/tabdiff-m4-20260504_195352/staged/tabdiff/adapter_report.json b/hyperparameter/m4/tabdiff/tabdiff-m4-20260504_195352/staged/tabdiff/adapter_report.json new file mode 100644 index 0000000000000000000000000000000000000000..44173a051c76faacb8828097927f8acb8b691ba5 --- /dev/null +++ b/hyperparameter/m4/tabdiff/tabdiff-m4-20260504_195352/staged/tabdiff/adapter_report.json @@ -0,0 +1,7 @@ +{ + "adapter_ready_status": "pass", + "adapter_fail_reason_code": null, + "adapter_fail_detail": null, + "adapter_transforms_applied": [], + "model_input_manifest": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/m4/tabdiff/tabdiff-m4-20260504_195352/staged/tabdiff/model_input_manifest.json" +} \ No newline at end of file diff --git a/hyperparameter/m4/tabdiff/tabdiff-m4-20260504_195352/staged/tabdiff/adapter_transforms_applied.json b/hyperparameter/m4/tabdiff/tabdiff-m4-20260504_195352/staged/tabdiff/adapter_transforms_applied.json new file mode 100644 index 0000000000000000000000000000000000000000..0637a088a01e8ddab3bf3fa98dbe804cbde1a0dc --- /dev/null +++ b/hyperparameter/m4/tabdiff/tabdiff-m4-20260504_195352/staged/tabdiff/adapter_transforms_applied.json @@ -0,0 +1 @@ +[] \ No newline at end of file diff --git a/hyperparameter/m4/tabdiff/tabdiff-m4-20260504_195352/staged/tabdiff/model_input_manifest.json b/hyperparameter/m4/tabdiff/tabdiff-m4-20260504_195352/staged/tabdiff/model_input_manifest.json new file mode 100644 index 0000000000000000000000000000000000000000..8a020f765d121be7d8a7e64e4de72d5dfe8457f7 --- /dev/null +++ b/hyperparameter/m4/tabdiff/tabdiff-m4-20260504_195352/staged/tabdiff/model_input_manifest.json @@ -0,0 +1,154 @@ +{ + "dataset_id": "m4", + "model": "tabdiff", + "target_column": "charges", + "task_type": "regression", + "column_schema": [ + { + "name": "age", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 47, + "unique_ratio": 0.0212, + "example_values": [ + "46", + "38", + "19", + "27", + "26" + ] + } + }, + { + "name": "sex", + "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.000902, + "example_values": [ + "female", + "male" + ] + } + }, + { + "name": "bmi", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 538, + "unique_ratio": 0.24267, + "example_values": [ + "23.655", + "19.3", + "30.59", + "32.67", + "29.45" + ] + } + }, + { + "name": "children", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 6, + "unique_ratio": 0.002706, + "example_values": [ + "1", + "0", + "3", + "2", + "5" + ] + } + }, + { + "name": "smoker", + "role": "feature", + "semantic_type": "boolean", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 2, + "unique_ratio": 0.000902, + "example_values": [ + "yes", + "no" + ] + } + }, + { + "name": "region", + "role": "feature", + "semantic_type": "categorical", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 4, + "unique_ratio": 0.001804, + "example_values": [ + "northwest", + "southwest", + "southeast", + "northeast" + ] + } + }, + { + "name": "charges", + "role": "target", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 1281, + "unique_ratio": 0.577808, + "example_values": [ + "21677.28345", + "15820.699", + "1639.5631", + "2497.0383", + "2897.3235" + ] + } + } + ], + "public_manifest": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/m4/tabdiff/tabdiff-m4-20260504_195352/public_gate/staged_input_manifest.json", + "train_csv": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/m4/tabdiff/tabdiff-m4-20260504_195352/staged/public/train.csv", + "val_csv": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/m4/tabdiff/tabdiff-m4-20260504_195352/staged/public/val.csv", + "test_csv": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/m4/tabdiff/tabdiff-m4-20260504_195352/staged/public/test.csv", + "features_json": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/m4/tabdiff/tabdiff-m4-20260504_195352/staged/public/staged_features.json", + "public_gate_report": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/m4/tabdiff/tabdiff-m4-20260504_195352/public_gate/public_gate_report.json" +} \ No newline at end of file diff --git a/hyperparameter/m4/tabdiff/tabdiff-m4-20260504_195352/tabdiff-m4-2217-20260504_195627.csv b/hyperparameter/m4/tabdiff/tabdiff-m4-20260504_195352/tabdiff-m4-2217-20260504_195627.csv new file mode 100644 index 0000000000000000000000000000000000000000..a6c93e69850e2bb49319ee515f909b8d5b72194f --- /dev/null +++ b/hyperparameter/m4/tabdiff/tabdiff-m4-20260504_195352/tabdiff-m4-2217-20260504_195627.csv @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:2d70868c3ac268884a0704952beb6ea7049446104c7f987c6ab49b7bcce91632 +size 83644 diff --git a/hyperparameter/m4/tabdiff/tabdiff-m4-20260504_195352/tabdiff_train_meta.json b/hyperparameter/m4/tabdiff/tabdiff-m4-20260504_195352/tabdiff_train_meta.json new file mode 100644 index 0000000000000000000000000000000000000000..fdd79738a13ec14d988f75b1b82af4cd85be6fe9 --- /dev/null +++ b/hyperparameter/m4/tabdiff/tabdiff-m4-20260504_195352/tabdiff_train_meta.json @@ -0,0 +1,5 @@ +{ + "exp_name": "adapter_learnable", + "dataname": "pipeline_m4", + "steps": 200 +} \ No newline at end of file diff --git a/hyperparameter/m4/tabdiff/tabdiff-m4-20260504_195352/tabular_bundle/pipeline_m4/X_cat_test.npy b/hyperparameter/m4/tabdiff/tabdiff-m4-20260504_195352/tabular_bundle/pipeline_m4/X_cat_test.npy new file mode 100644 index 0000000000000000000000000000000000000000..2f6b8b23f5768174aab4879e2a30371e9a3d0ead --- /dev/null +++ b/hyperparameter/m4/tabdiff/tabdiff-m4-20260504_195352/tabular_bundle/pipeline_m4/X_cat_test.npy @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:c91af7ac26382e392a70536d3dbb592c04ba5e4f495d1e3c364416b9ef704a07 +size 53336 diff --git a/hyperparameter/m4/tabdiff/tabdiff-m4-20260504_195352/tabular_bundle/pipeline_m4/X_cat_train.npy b/hyperparameter/m4/tabdiff/tabdiff-m4-20260504_195352/tabular_bundle/pipeline_m4/X_cat_train.npy new file mode 100644 index 0000000000000000000000000000000000000000..2f6b8b23f5768174aab4879e2a30371e9a3d0ead --- /dev/null +++ b/hyperparameter/m4/tabdiff/tabdiff-m4-20260504_195352/tabular_bundle/pipeline_m4/X_cat_train.npy @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:c91af7ac26382e392a70536d3dbb592c04ba5e4f495d1e3c364416b9ef704a07 +size 53336 diff --git a/hyperparameter/m4/tabdiff/tabdiff-m4-20260504_195352/tabular_bundle/pipeline_m4/X_cat_val.npy b/hyperparameter/m4/tabdiff/tabdiff-m4-20260504_195352/tabular_bundle/pipeline_m4/X_cat_val.npy new file mode 100644 index 0000000000000000000000000000000000000000..2f6b8b23f5768174aab4879e2a30371e9a3d0ead --- /dev/null +++ b/hyperparameter/m4/tabdiff/tabdiff-m4-20260504_195352/tabular_bundle/pipeline_m4/X_cat_val.npy @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:c91af7ac26382e392a70536d3dbb592c04ba5e4f495d1e3c364416b9ef704a07 +size 53336 diff --git a/hyperparameter/m4/tabdiff/tabdiff-m4-20260504_195352/tabular_bundle/pipeline_m4/X_num_test.npy b/hyperparameter/m4/tabdiff/tabdiff-m4-20260504_195352/tabular_bundle/pipeline_m4/X_num_test.npy new file mode 100644 index 0000000000000000000000000000000000000000..dc149960a879e21fd1aeed7de2419851175627e7 --- /dev/null +++ b/hyperparameter/m4/tabdiff/tabdiff-m4-20260504_195352/tabular_bundle/pipeline_m4/X_num_test.npy @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:4a21bd2fd5a226c07d543ddf78616a8edb2d52b51097fc7a5df5b05612267af8 +size 26732 diff --git a/hyperparameter/m4/tabdiff/tabdiff-m4-20260504_195352/tabular_bundle/pipeline_m4/X_num_train.npy b/hyperparameter/m4/tabdiff/tabdiff-m4-20260504_195352/tabular_bundle/pipeline_m4/X_num_train.npy new file mode 100644 index 0000000000000000000000000000000000000000..dc149960a879e21fd1aeed7de2419851175627e7 --- /dev/null +++ b/hyperparameter/m4/tabdiff/tabdiff-m4-20260504_195352/tabular_bundle/pipeline_m4/X_num_train.npy @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:4a21bd2fd5a226c07d543ddf78616a8edb2d52b51097fc7a5df5b05612267af8 +size 26732 diff --git a/hyperparameter/m4/tabdiff/tabdiff-m4-20260504_195352/tabular_bundle/pipeline_m4/X_num_val.npy b/hyperparameter/m4/tabdiff/tabdiff-m4-20260504_195352/tabular_bundle/pipeline_m4/X_num_val.npy new file mode 100644 index 0000000000000000000000000000000000000000..dc149960a879e21fd1aeed7de2419851175627e7 --- /dev/null +++ b/hyperparameter/m4/tabdiff/tabdiff-m4-20260504_195352/tabular_bundle/pipeline_m4/X_num_val.npy @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:4a21bd2fd5a226c07d543ddf78616a8edb2d52b51097fc7a5df5b05612267af8 +size 26732 diff --git a/hyperparameter/m4/tabdiff/tabdiff-m4-20260504_195352/tabular_bundle/pipeline_m4/info.json b/hyperparameter/m4/tabdiff/tabdiff-m4-20260504_195352/tabular_bundle/pipeline_m4/info.json new file mode 100644 index 0000000000000000000000000000000000000000..1ccad8d2dc3c60feacc99d202a75e21be3afa7b5 --- /dev/null +++ b/hyperparameter/m4/tabdiff/tabdiff-m4-20260504_195352/tabular_bundle/pipeline_m4/info.json @@ -0,0 +1,92 @@ +{ + "name": "pipeline_m4", + "task_type": "regression", + "n_num_features": 3, + "n_cat_features": 3, + "train_size": 2217, + "test_num": 2217, + "val_num": 2217, + "train_num": 2217, + "bundle_note": "val/test matrices are train copies (train-only policy; no real held-out rows).", + "num_col_idx": [ + 0, + 1, + 2 + ], + "cat_col_idx": [ + 3, + 4, + 5 + ], + "target_col_idx": [ + 6 + ], + "column_names": [ + "age", + "bmi", + "children", + "sex", + "smoker", + "region", + "charges" + ], + "int_col_idx": [], + "int_columns": [], + "int_col_idx_wrt_num": [], + "metadata": { + "columns": { + "0": { + "sdtype": "numerical", + "computer_representation": "Float" + }, + "1": { + "sdtype": "numerical", + "computer_representation": "Float" + }, + "2": { + "sdtype": "numerical", + "computer_representation": "Float" + }, + "3": { + "sdtype": "categorical" + }, + "4": { + "sdtype": "categorical" + }, + "5": { + "sdtype": "categorical" + }, + "6": { + "sdtype": "numerical", + "computer_representation": "Float" + } + } + }, + "idx_mapping": { + "0": 0, + "1": 1, + "2": 2, + "3": 3, + "4": 4, + "5": 5, + "6": 6 + }, + "inverse_idx_mapping": { + "0": 0, + "1": 1, + "2": 2, + "3": 3, + "4": 4, + "5": 5, + "6": 6 + }, + "idx_name_mapping": { + "0": "age", + "1": "bmi", + "2": "children", + "3": "sex", + "4": "smoker", + "5": "region", + "6": "charges" + } +} \ No newline at end of file diff --git a/hyperparameter/m4/tabdiff/tabdiff-m4-20260504_195352/tabular_bundle/pipeline_m4/real.csv b/hyperparameter/m4/tabdiff/tabdiff-m4-20260504_195352/tabular_bundle/pipeline_m4/real.csv new file mode 100644 index 0000000000000000000000000000000000000000..85ff7f4464fa73c1d58767739e7b259f9371a55b --- /dev/null +++ b/hyperparameter/m4/tabdiff/tabdiff-m4-20260504_195352/tabular_bundle/pipeline_m4/real.csv @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:e031e2816aa79e4e5fab4c7fe470741eb2d287e493d74b9cfda68441799e07fa +size 60773 diff --git a/hyperparameter/m4/tabdiff/tabdiff-m4-20260504_195352/tabular_bundle/pipeline_m4/test.csv b/hyperparameter/m4/tabdiff/tabdiff-m4-20260504_195352/tabular_bundle/pipeline_m4/test.csv new file mode 100644 index 0000000000000000000000000000000000000000..85ff7f4464fa73c1d58767739e7b259f9371a55b --- /dev/null +++ b/hyperparameter/m4/tabdiff/tabdiff-m4-20260504_195352/tabular_bundle/pipeline_m4/test.csv @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:e031e2816aa79e4e5fab4c7fe470741eb2d287e493d74b9cfda68441799e07fa +size 60773 diff --git a/hyperparameter/m4/tabdiff/tabdiff-m4-20260504_195352/tabular_bundle/pipeline_m4/val.csv b/hyperparameter/m4/tabdiff/tabdiff-m4-20260504_195352/tabular_bundle/pipeline_m4/val.csv new file mode 100644 index 0000000000000000000000000000000000000000..85ff7f4464fa73c1d58767739e7b259f9371a55b --- /dev/null +++ b/hyperparameter/m4/tabdiff/tabdiff-m4-20260504_195352/tabular_bundle/pipeline_m4/val.csv @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:e031e2816aa79e4e5fab4c7fe470741eb2d287e493d74b9cfda68441799e07fa +size 60773 diff --git a/hyperparameter/m4/tabdiff/tabdiff-m4-20260504_195352/tabular_bundle/pipeline_m4/y_test.npy b/hyperparameter/m4/tabdiff/tabdiff-m4-20260504_195352/tabular_bundle/pipeline_m4/y_test.npy new file mode 100644 index 0000000000000000000000000000000000000000..717f965e62bd5595d6df01d1ad7851fc5768dc29 --- /dev/null +++ b/hyperparameter/m4/tabdiff/tabdiff-m4-20260504_195352/tabular_bundle/pipeline_m4/y_test.npy @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:0c64fea6ad5ed2f8441ef5212c726195dbf53e1c81298427bddd18eb20e35cf2 +size 8996 diff --git a/hyperparameter/m4/tabdiff/tabdiff-m4-20260504_195352/tabular_bundle/pipeline_m4/y_train.npy b/hyperparameter/m4/tabdiff/tabdiff-m4-20260504_195352/tabular_bundle/pipeline_m4/y_train.npy new file mode 100644 index 0000000000000000000000000000000000000000..717f965e62bd5595d6df01d1ad7851fc5768dc29 --- /dev/null +++ b/hyperparameter/m4/tabdiff/tabdiff-m4-20260504_195352/tabular_bundle/pipeline_m4/y_train.npy @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:0c64fea6ad5ed2f8441ef5212c726195dbf53e1c81298427bddd18eb20e35cf2 +size 8996 diff --git a/hyperparameter/m4/tabdiff/tabdiff-m4-20260504_195352/tabular_bundle/pipeline_m4/y_val.npy b/hyperparameter/m4/tabdiff/tabdiff-m4-20260504_195352/tabular_bundle/pipeline_m4/y_val.npy new file mode 100644 index 0000000000000000000000000000000000000000..717f965e62bd5595d6df01d1ad7851fc5768dc29 --- /dev/null +++ b/hyperparameter/m4/tabdiff/tabdiff-m4-20260504_195352/tabular_bundle/pipeline_m4/y_val.npy @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:0c64fea6ad5ed2f8441ef5212c726195dbf53e1c81298427bddd18eb20e35cf2 +size 8996 diff --git a/hyperparameter/m4/tabdiff/tabdiff-m4-20260504_195352/train_20260504_195352.log b/hyperparameter/m4/tabdiff/tabdiff-m4-20260504_195352/train_20260504_195352.log new file mode 100644 index 0000000000000000000000000000000000000000..ae3a052fe96d7ecf1f4345d6adb35efc65b30da1 --- /dev/null +++ b/hyperparameter/m4/tabdiff/tabdiff-m4-20260504_195352/train_20260504_195352.log @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:25d4897dae32e0ef4ab51ff6bb56308d34ff685bc2771e947040e48202b65901 +size 121024 diff --git a/hyperparameter/m4/tabdiff/tabdiff-m4-20260504_195649/_tabdiff_gen.py b/hyperparameter/m4/tabdiff/tabdiff-m4-20260504_195649/_tabdiff_gen.py new file mode 100644 index 0000000000000000000000000000000000000000..9650c4e7ee69af0d206f41d1301d7aca0e48f1c8 --- /dev/null +++ b/hyperparameter/m4/tabdiff/tabdiff-m4-20260504_195649/_tabdiff_gen.py @@ -0,0 +1,36 @@ + +import os, shutil, subprocess, sys +td = r"/workspace/TabDiff" +name = r"pipeline_m4" +src = r"/work/output-Benchmark-trainonly-v1/m4/tabdiff/tabdiff-m4-20260504_195649/tabular_bundle/pipeline_m4" +dst_data = os.path.join(td, "data", name) +dst_syn = os.path.join(td, "synthetic", name) +shutil.rmtree(dst_data, ignore_errors=True) +shutil.copytree(src, dst_data) +os.makedirs(dst_syn, exist_ok=True) +for fn in ("real.csv", "test.csv", "val.csv"): + shutil.copy(os.path.join(src, fn), os.path.join(dst_syn, fn)) +os.chdir(td) +os.environ["PYTHONPATH"] = td + os.pathsep + os.environ.get("PYTHONPATH", "") +subprocess.check_call([ + sys.executable, "-m", "tabdiff.main", + "--dataname", name, "--mode", "test", "--gpu", "0", + "--no_wandb", "--exp_name", r"adapter_learnable", + "--ckpt_path", r"/workspace/TabDiff/tabdiff/ckpt/pipeline_m4/adapter_learnable/model_500.pt", + "--num_samples_to_generate", str(int(2217)), +]) +# test() 写入 tabdiff/result////samples.csv +import glob as g +base = os.path.join(td, "tabdiff", "result", name, r"adapter_learnable") +best = None +best_t = -1.0 +for root, _, files in os.walk(base): + if "samples.csv" in files: + p = os.path.join(root, "samples.csv") + t = os.path.getmtime(p) + if t > best_t: + best_t = t + best = p +if not best: + raise SystemExit("tabdiff: no samples.csv under " + base) +shutil.copy(best, r"/work/output-Benchmark-trainonly-v1/m4/tabdiff/tabdiff-m4-20260504_195649/tabdiff-m4-2217-20260504_200522.csv") diff --git a/hyperparameter/m4/tabdiff/tabdiff-m4-20260504_195649/_tabdiff_train.py b/hyperparameter/m4/tabdiff/tabdiff-m4-20260504_195649/_tabdiff_train.py new file mode 100644 index 0000000000000000000000000000000000000000..6569ede081c60a013a52202d4411bbca1d0864db --- /dev/null +++ b/hyperparameter/m4/tabdiff/tabdiff-m4-20260504_195649/_tabdiff_train.py @@ -0,0 +1,21 @@ + +import os, shutil, subprocess, sys +td = r"/workspace/TabDiff" +name = r"pipeline_m4" +src = r"/work/output-Benchmark-trainonly-v1/m4/tabdiff/tabdiff-m4-20260504_195649/tabular_bundle/pipeline_m4" +dst_data = os.path.join(td, "data", name) +dst_syn = os.path.join(td, "synthetic", name) +shutil.rmtree(dst_data, ignore_errors=True) +shutil.copytree(src, dst_data) +os.makedirs(dst_syn, exist_ok=True) +for fn in ("real.csv", "test.csv", "val.csv"): + shutil.copy(os.path.join(src, fn), os.path.join(dst_syn, fn)) +os.chdir(td) +os.environ["PYTHONPATH"] = td + os.pathsep + os.environ.get("PYTHONPATH", "") +os.environ["TABDIFF_SMOKE_STEPS"] = "500" +os.environ["TABDIFF_ADAPTER_TRAIN"] = "1" +subprocess.check_call([ + sys.executable, "-m", "tabdiff.main", + "--dataname", name, "--mode", "train", "--gpu", "0", + "--no_wandb", "--exp_name", r"adapter_learnable", +]) diff --git a/hyperparameter/m4/tabdiff/tabdiff-m4-20260504_195649/gen_20260504_200522.log b/hyperparameter/m4/tabdiff/tabdiff-m4-20260504_195649/gen_20260504_200522.log new file mode 100644 index 0000000000000000000000000000000000000000..b5d06a0cdafcf7bfd7e028c6a009b5f029ab908c --- /dev/null +++ b/hyperparameter/m4/tabdiff/tabdiff-m4-20260504_195649/gen_20260504_200522.log @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:55f4f46b23684fcba9cfc9fdd8b9ead326867328b42191d215eb2fd279ec1671 +size 4715 diff --git a/hyperparameter/m4/tabdiff/tabdiff-m4-20260504_195649/input_snapshot.json b/hyperparameter/m4/tabdiff/tabdiff-m4-20260504_195649/input_snapshot.json new file mode 100644 index 0000000000000000000000000000000000000000..28cd3a4d75d18efdf20f8d2e0b931a2ecdef48e9 --- /dev/null +++ b/hyperparameter/m4/tabdiff/tabdiff-m4-20260504_195649/input_snapshot.json @@ -0,0 +1,36 @@ +{ + "dataset_id": "m4", + "model": "tabdiff", + "inputs": { + "train_csv": { + "path": "/data/jialinzhang/SynthesizePipeline-server/DatasetNew/m4/m4-train.csv", + "exists": true, + "size": 92191, + "sha256": "396b9d409ca21bf4a4cd329bdf5b7796aa0ae6356fa8d89b8eb669b5880b81f1" + }, + "val_csv": { + "path": "/data/jialinzhang/SynthesizePipeline-server/DatasetNew/m4/m4-val.csv", + "exists": true, + "size": 11482, + "sha256": "ee3c247d02f56e1687d03c381e13125d6a3a2a411ac7f202ba8520a4be9f1784" + }, + "test_csv": { + "path": "/data/jialinzhang/SynthesizePipeline-server/DatasetNew/m4/m4-test.csv", + "exists": true, + "size": 11559, + "sha256": "cadb9941124001b8fa7cb1ebae43b70a9ca56294f4df4d3c2f22c164c41757d4" + }, + "profile_json": { + "path": "/data/jialinzhang/SynthesizePipeline-server/DatasetNew/artifacts/data_core/tabular/m4/m4-dataset_profile.json", + "exists": true, + "size": 3336, + "sha256": "83e2764810e4a0e8cdece3a28dbd9134b7c9df6f2e56953e46d024ad2c4e035f" + }, + "contract_json": { + "path": "/data/jialinzhang/SynthesizePipeline-server/DatasetNew/artifacts/data_core/tabular/m4/m4-dataset_contract_v1.json", + "exists": true, + "size": 3810, + "sha256": "c23641b258629a845b164099bd0132886f8f6d0100e990494e0f92540f8987d9" + } + } +} \ No newline at end of file diff --git a/hyperparameter/m4/tabdiff/tabdiff-m4-20260504_195649/models_tabdiff/trained.pt b/hyperparameter/m4/tabdiff/tabdiff-m4-20260504_195649/models_tabdiff/trained.pt new file mode 100644 index 0000000000000000000000000000000000000000..bc319a55a9c7152a1137f968b6fa1c735125ad11 --- /dev/null +++ b/hyperparameter/m4/tabdiff/tabdiff-m4-20260504_195649/models_tabdiff/trained.pt @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:306660b8aad4549267c68390b017e15ddb9bc06a02c80515eb72a97ae31a81eb +size 74 diff --git a/hyperparameter/m4/tabdiff/tabdiff-m4-20260504_195649/public_gate/normalized_schema_snapshot.json b/hyperparameter/m4/tabdiff/tabdiff-m4-20260504_195649/public_gate/normalized_schema_snapshot.json new file mode 100644 index 0000000000000000000000000000000000000000..31ed9818686b11907df75e872e4ffbe010330880 --- /dev/null +++ b/hyperparameter/m4/tabdiff/tabdiff-m4-20260504_195649/public_gate/normalized_schema_snapshot.json @@ -0,0 +1,147 @@ +{ + "dataset_id": "m4", + "target_column": "charges", + "task_type": "regression", + "columns": [ + { + "name": "age", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 47, + "unique_ratio": 0.0212, + "example_values": [ + "46", + "38", + "19", + "27", + "26" + ] + } + }, + { + "name": "sex", + "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.000902, + "example_values": [ + "female", + "male" + ] + } + }, + { + "name": "bmi", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 538, + "unique_ratio": 0.24267, + "example_values": [ + "23.655", + "19.3", + "30.59", + "32.67", + "29.45" + ] + } + }, + { + "name": "children", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 6, + "unique_ratio": 0.002706, + "example_values": [ + "1", + "0", + "3", + "2", + "5" + ] + } + }, + { + "name": "smoker", + "role": "feature", + "semantic_type": "boolean", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 2, + "unique_ratio": 0.000902, + "example_values": [ + "yes", + "no" + ] + } + }, + { + "name": "region", + "role": "feature", + "semantic_type": "categorical", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 4, + "unique_ratio": 0.001804, + "example_values": [ + "northwest", + "southwest", + "southeast", + "northeast" + ] + } + }, + { + "name": "charges", + "role": "target", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 1281, + "unique_ratio": 0.577808, + "example_values": [ + "21677.28345", + "15820.699", + "1639.5631", + "2497.0383", + "2897.3235" + ] + } + } + ] +} \ No newline at end of file diff --git a/hyperparameter/m4/tabdiff/tabdiff-m4-20260504_195649/public_gate/public_gate_report.json b/hyperparameter/m4/tabdiff/tabdiff-m4-20260504_195649/public_gate/public_gate_report.json new file mode 100644 index 0000000000000000000000000000000000000000..e7a25408e2574124629ea9437356551e4d6f4790 --- /dev/null +++ b/hyperparameter/m4/tabdiff/tabdiff-m4-20260504_195649/public_gate/public_gate_report.json @@ -0,0 +1,37 @@ +{ + "dataset_id": "m4", + "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": "charges", + "task_type": "regression", + "input_splits": { + "train": "/data/jialinzhang/SynthesizePipeline-server/DatasetNew/m4/m4-train.csv", + "val": "/data/jialinzhang/SynthesizePipeline-server/DatasetNew/m4/m4-val.csv", + "test": "/data/jialinzhang/SynthesizePipeline-server/DatasetNew/m4/m4-test.csv" + } +} \ No newline at end of file diff --git a/hyperparameter/m4/tabdiff/tabdiff-m4-20260504_195649/public_gate/staged_input_manifest.json b/hyperparameter/m4/tabdiff/tabdiff-m4-20260504_195649/public_gate/staged_input_manifest.json new file mode 100644 index 0000000000000000000000000000000000000000..26640e508fc879e1c6053afad406c973fd0f2d54 --- /dev/null +++ b/hyperparameter/m4/tabdiff/tabdiff-m4-20260504_195649/public_gate/staged_input_manifest.json @@ -0,0 +1,152 @@ +{ + "dataset_id": "m4", + "target_column": "charges", + "task_type": "regression", + "train_csv": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/m4/tabdiff/tabdiff-m4-20260504_195649/staged/public/train.csv", + "val_csv": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/m4/tabdiff/tabdiff-m4-20260504_195649/staged/public/val.csv", + "test_csv": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/m4/tabdiff/tabdiff-m4-20260504_195649/staged/public/test.csv", + "features_json": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/m4/tabdiff/tabdiff-m4-20260504_195649/staged/public/staged_features.json", + "public_gate_report": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/m4/tabdiff/tabdiff-m4-20260504_195649/public_gate/public_gate_report.json", + "column_schema": [ + { + "name": "age", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 47, + "unique_ratio": 0.0212, + "example_values": [ + "46", + "38", + "19", + "27", + "26" + ] + } + }, + { + "name": "sex", + "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.000902, + "example_values": [ + "female", + "male" + ] + } + }, + { + "name": "bmi", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 538, + "unique_ratio": 0.24267, + "example_values": [ + "23.655", + "19.3", + "30.59", + "32.67", + "29.45" + ] + } + }, + { + "name": "children", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 6, + "unique_ratio": 0.002706, + "example_values": [ + "1", + "0", + "3", + "2", + "5" + ] + } + }, + { + "name": "smoker", + "role": "feature", + "semantic_type": "boolean", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 2, + "unique_ratio": 0.000902, + "example_values": [ + "yes", + "no" + ] + } + }, + { + "name": "region", + "role": "feature", + "semantic_type": "categorical", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 4, + "unique_ratio": 0.001804, + "example_values": [ + "northwest", + "southwest", + "southeast", + "northeast" + ] + } + }, + { + "name": "charges", + "role": "target", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 1281, + "unique_ratio": 0.577808, + "example_values": [ + "21677.28345", + "15820.699", + "1639.5631", + "2497.0383", + "2897.3235" + ] + } + } + ] +} \ No newline at end of file diff --git a/hyperparameter/m4/tabdiff/tabdiff-m4-20260504_195649/run_config.json b/hyperparameter/m4/tabdiff/tabdiff-m4-20260504_195649/run_config.json new file mode 100644 index 0000000000000000000000000000000000000000..0768d40bf5b2e4e296e193157ab4dac215f18291 --- /dev/null +++ b/hyperparameter/m4/tabdiff/tabdiff-m4-20260504_195649/run_config.json @@ -0,0 +1,40 @@ +{ + "schema_version": 1, + "recorded_at": "2026-05-04T19:56:49", + "dataset_id": "m4", + "model": "tabdiff", + "work_dir": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/m4/tabdiff/tabdiff-m4-20260504_195649", + "dataset_source_requested": "new", + "dataset_source_resolved": "new", + "cli_args": { + "model": "tabdiff", + "dataset": "m4", + "dataset_source": "new", + "train": true, + "generate": true, + "num_rows": 0, + "epochs": 500, + "output_dir": null, + "model_dir": null, + "work_dir": null, + "resume": false, + "no_stats": false + }, + "resolved": { + "num_rows": 2217, + "model_path": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/m4/tabdiff/tabdiff-m4-20260504_195649/models_tabdiff/trained.pt", + "output_csv": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/m4/tabdiff/tabdiff-m4-20260504_195649/tabdiff-m4-2217-20260504_200522.csv" + }, + "input_artifacts": { + "public_gate_report": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/m4/tabdiff/tabdiff-m4-20260504_195649/public_gate/public_gate_report.json", + "public_manifest": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/m4/tabdiff/tabdiff-m4-20260504_195649/public_gate/staged_input_manifest.json", + "model_manifest": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/m4/tabdiff/tabdiff-m4-20260504_195649/staged/tabdiff/model_input_manifest.json", + "train_csv": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/m4/tabdiff/tabdiff-m4-20260504_195649/staged/public/train.csv", + "features_json": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/m4/tabdiff/tabdiff-m4-20260504_195649/staged/public/staged_features.json", + "target_column": "charges", + "task_type": "regression" + }, + "env_overrides": { + "BENCHMARK_TABDIFF_GPUS": "device=3" + } +} \ No newline at end of file diff --git a/hyperparameter/m4/tabdiff/tabdiff-m4-20260504_195649/runtime_result.json b/hyperparameter/m4/tabdiff/tabdiff-m4-20260504_195649/runtime_result.json new file mode 100644 index 0000000000000000000000000000000000000000..50e72f33fa63ca7a5f32fee7724088b8176b8f71 --- /dev/null +++ b/hyperparameter/m4/tabdiff/tabdiff-m4-20260504_195649/runtime_result.json @@ -0,0 +1,27 @@ +{ + "dataset_id": "m4", + "model": "tabdiff", + "run_id": "tabdiff-m4-20260504_195649", + "public_gate_status": "pass", + "adapter_ready_status": "pass", + "train_status": "success", + "generate_status": "success", + "reason_code": null, + "reason_detail": null, + "artifacts": { + "synthetic_csv": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/m4/tabdiff/tabdiff-m4-20260504_195649/tabdiff-m4-2217-20260504_200522.csv", + "model_path": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/m4/tabdiff/tabdiff-m4-20260504_195649/models_tabdiff/trained.pt" + }, + "timings": { + "train": { + "started_at": "2026-05-04T19:56:49", + "ended_at": "2026-05-04T20:05:22", + "duration_sec": 512.98 + }, + "generate": { + "started_at": "2026-05-04T20:05:22", + "ended_at": "2026-05-04T20:05:32", + "duration_sec": 9.324 + } + } +} \ No newline at end of file diff --git a/hyperparameter/m4/tabdiff/tabdiff-m4-20260504_195649/staged/public/staged_features.json b/hyperparameter/m4/tabdiff/tabdiff-m4-20260504_195649/staged/public/staged_features.json new file mode 100644 index 0000000000000000000000000000000000000000..d6acd098c35111f423f3ffff2cfd1754bc5dfebc --- /dev/null +++ b/hyperparameter/m4/tabdiff/tabdiff-m4-20260504_195649/staged/public/staged_features.json @@ -0,0 +1,37 @@ +[ + { + "feature_name": "age", + "data_type": "continuous", + "is_target": false + }, + { + "feature_name": "sex", + "data_type": "categorical", + "is_target": false + }, + { + "feature_name": "bmi", + "data_type": "continuous", + "is_target": false + }, + { + "feature_name": "children", + "data_type": "continuous", + "is_target": false + }, + { + "feature_name": "smoker", + "data_type": "binary", + "is_target": false + }, + { + "feature_name": "region", + "data_type": "categorical", + "is_target": false + }, + { + "feature_name": "charges", + "data_type": "continuous", + "is_target": true + } +] \ No newline at end of file diff --git a/hyperparameter/m4/tabdiff/tabdiff-m4-20260504_195649/staged/public/test.csv b/hyperparameter/m4/tabdiff/tabdiff-m4-20260504_195649/staged/public/test.csv new file mode 100644 index 0000000000000000000000000000000000000000..c88a2e7cfcd715bb421cb56eb078033da45c4dc8 --- /dev/null +++ b/hyperparameter/m4/tabdiff/tabdiff-m4-20260504_195649/staged/public/test.csv @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:4c541b677fb2d45c5bc79338eeee9fd8c91484b195a0c2c546c2fbabf113b7ea +size 11298 diff --git a/hyperparameter/m4/tabdiff/tabdiff-m4-20260504_195649/staged/public/train.csv b/hyperparameter/m4/tabdiff/tabdiff-m4-20260504_195649/staged/public/train.csv new file mode 100644 index 0000000000000000000000000000000000000000..5a05019d786529e0617291766c4fbe016ca01bf5 --- /dev/null +++ b/hyperparameter/m4/tabdiff/tabdiff-m4-20260504_195649/staged/public/train.csv @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:614ebfac5f41d6f661aff675fa18c0f933a8d9bcc77ea71b7b2360c2f0155837 +size 90069 diff --git a/hyperparameter/m4/tabdiff/tabdiff-m4-20260504_195649/staged/public/val.csv b/hyperparameter/m4/tabdiff/tabdiff-m4-20260504_195649/staged/public/val.csv new file mode 100644 index 0000000000000000000000000000000000000000..d78fe5ad1537c437ba9ac2629f2aa60a6c17e708 --- /dev/null +++ b/hyperparameter/m4/tabdiff/tabdiff-m4-20260504_195649/staged/public/val.csv @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:e55f5edbe7942ff01630de91a9c70dfbc6445eba76c7b970350364546b67c2d7 +size 11218 diff --git a/hyperparameter/m4/tabdiff/tabdiff-m4-20260504_195649/staged/tabdiff/adapter_report.json b/hyperparameter/m4/tabdiff/tabdiff-m4-20260504_195649/staged/tabdiff/adapter_report.json new file mode 100644 index 0000000000000000000000000000000000000000..49a45f393c109a63fd72f6d931191addacdfdf7e --- /dev/null +++ b/hyperparameter/m4/tabdiff/tabdiff-m4-20260504_195649/staged/tabdiff/adapter_report.json @@ -0,0 +1,7 @@ +{ + "adapter_ready_status": "pass", + "adapter_fail_reason_code": null, + "adapter_fail_detail": null, + "adapter_transforms_applied": [], + "model_input_manifest": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/m4/tabdiff/tabdiff-m4-20260504_195649/staged/tabdiff/model_input_manifest.json" +} \ No newline at end of file diff --git a/hyperparameter/m4/tabdiff/tabdiff-m4-20260504_195649/staged/tabdiff/adapter_transforms_applied.json b/hyperparameter/m4/tabdiff/tabdiff-m4-20260504_195649/staged/tabdiff/adapter_transforms_applied.json new file mode 100644 index 0000000000000000000000000000000000000000..0637a088a01e8ddab3bf3fa98dbe804cbde1a0dc --- /dev/null +++ b/hyperparameter/m4/tabdiff/tabdiff-m4-20260504_195649/staged/tabdiff/adapter_transforms_applied.json @@ -0,0 +1 @@ +[] \ No newline at end of file diff --git a/hyperparameter/m4/tabdiff/tabdiff-m4-20260504_195649/staged/tabdiff/model_input_manifest.json b/hyperparameter/m4/tabdiff/tabdiff-m4-20260504_195649/staged/tabdiff/model_input_manifest.json new file mode 100644 index 0000000000000000000000000000000000000000..48ff2126046a05aca9886a3beb6d7250aa486c01 --- /dev/null +++ b/hyperparameter/m4/tabdiff/tabdiff-m4-20260504_195649/staged/tabdiff/model_input_manifest.json @@ -0,0 +1,154 @@ +{ + "dataset_id": "m4", + "model": "tabdiff", + "target_column": "charges", + "task_type": "regression", + "column_schema": [ + { + "name": "age", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 47, + "unique_ratio": 0.0212, + "example_values": [ + "46", + "38", + "19", + "27", + "26" + ] + } + }, + { + "name": "sex", + "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.000902, + "example_values": [ + "female", + "male" + ] + } + }, + { + "name": "bmi", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 538, + "unique_ratio": 0.24267, + "example_values": [ + "23.655", + "19.3", + "30.59", + "32.67", + "29.45" + ] + } + }, + { + "name": "children", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 6, + "unique_ratio": 0.002706, + "example_values": [ + "1", + "0", + "3", + "2", + "5" + ] + } + }, + { + "name": "smoker", + "role": "feature", + "semantic_type": "boolean", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 2, + "unique_ratio": 0.000902, + "example_values": [ + "yes", + "no" + ] + } + }, + { + "name": "region", + "role": "feature", + "semantic_type": "categorical", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 4, + "unique_ratio": 0.001804, + "example_values": [ + "northwest", + "southwest", + "southeast", + "northeast" + ] + } + }, + { + "name": "charges", + "role": "target", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 1281, + "unique_ratio": 0.577808, + "example_values": [ + "21677.28345", + "15820.699", + "1639.5631", + "2497.0383", + "2897.3235" + ] + } + } + ], + "public_manifest": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/m4/tabdiff/tabdiff-m4-20260504_195649/public_gate/staged_input_manifest.json", + "train_csv": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/m4/tabdiff/tabdiff-m4-20260504_195649/staged/public/train.csv", + "val_csv": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/m4/tabdiff/tabdiff-m4-20260504_195649/staged/public/val.csv", + "test_csv": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/m4/tabdiff/tabdiff-m4-20260504_195649/staged/public/test.csv", + "features_json": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/m4/tabdiff/tabdiff-m4-20260504_195649/staged/public/staged_features.json", + "public_gate_report": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/m4/tabdiff/tabdiff-m4-20260504_195649/public_gate/public_gate_report.json" +} \ No newline at end of file diff --git a/hyperparameter/m4/tabdiff/tabdiff-m4-20260504_195649/tabdiff-m4-2217-20260504_200522.csv b/hyperparameter/m4/tabdiff/tabdiff-m4-20260504_195649/tabdiff-m4-2217-20260504_200522.csv new file mode 100644 index 0000000000000000000000000000000000000000..cdc06575d7ab7a7f3a7d8b8f7b210325725e83f4 --- /dev/null +++ b/hyperparameter/m4/tabdiff/tabdiff-m4-20260504_195649/tabdiff-m4-2217-20260504_200522.csv @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:9cd13fd65bc1858e9fb580dc4fe6dc248b5023d8ed73f1812f728f5d473de413 +size 83821 diff --git a/hyperparameter/m4/tabdiff/tabdiff-m4-20260504_195649/tabdiff_train_meta.json b/hyperparameter/m4/tabdiff/tabdiff-m4-20260504_195649/tabdiff_train_meta.json new file mode 100644 index 0000000000000000000000000000000000000000..50b960046ba7cb1cf57499cc34e3cd3bf6e9db6e --- /dev/null +++ b/hyperparameter/m4/tabdiff/tabdiff-m4-20260504_195649/tabdiff_train_meta.json @@ -0,0 +1,5 @@ +{ + "exp_name": "adapter_learnable", + "dataname": "pipeline_m4", + "steps": 500 +} \ No newline at end of file diff --git a/hyperparameter/m4/tabdiff/tabdiff-m4-20260504_195649/tabular_bundle/pipeline_m4/X_cat_test.npy b/hyperparameter/m4/tabdiff/tabdiff-m4-20260504_195649/tabular_bundle/pipeline_m4/X_cat_test.npy new file mode 100644 index 0000000000000000000000000000000000000000..2f6b8b23f5768174aab4879e2a30371e9a3d0ead --- /dev/null +++ b/hyperparameter/m4/tabdiff/tabdiff-m4-20260504_195649/tabular_bundle/pipeline_m4/X_cat_test.npy @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:c91af7ac26382e392a70536d3dbb592c04ba5e4f495d1e3c364416b9ef704a07 +size 53336 diff --git a/hyperparameter/m4/tabdiff/tabdiff-m4-20260504_195649/tabular_bundle/pipeline_m4/X_cat_train.npy b/hyperparameter/m4/tabdiff/tabdiff-m4-20260504_195649/tabular_bundle/pipeline_m4/X_cat_train.npy new file mode 100644 index 0000000000000000000000000000000000000000..2f6b8b23f5768174aab4879e2a30371e9a3d0ead --- /dev/null +++ b/hyperparameter/m4/tabdiff/tabdiff-m4-20260504_195649/tabular_bundle/pipeline_m4/X_cat_train.npy @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:c91af7ac26382e392a70536d3dbb592c04ba5e4f495d1e3c364416b9ef704a07 +size 53336 diff --git a/hyperparameter/m4/tabdiff/tabdiff-m4-20260504_195649/tabular_bundle/pipeline_m4/X_cat_val.npy b/hyperparameter/m4/tabdiff/tabdiff-m4-20260504_195649/tabular_bundle/pipeline_m4/X_cat_val.npy new file mode 100644 index 0000000000000000000000000000000000000000..2f6b8b23f5768174aab4879e2a30371e9a3d0ead --- /dev/null +++ b/hyperparameter/m4/tabdiff/tabdiff-m4-20260504_195649/tabular_bundle/pipeline_m4/X_cat_val.npy @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:c91af7ac26382e392a70536d3dbb592c04ba5e4f495d1e3c364416b9ef704a07 +size 53336 diff --git a/hyperparameter/m4/tabdiff/tabdiff-m4-20260504_195649/tabular_bundle/pipeline_m4/X_num_test.npy b/hyperparameter/m4/tabdiff/tabdiff-m4-20260504_195649/tabular_bundle/pipeline_m4/X_num_test.npy new file mode 100644 index 0000000000000000000000000000000000000000..dc149960a879e21fd1aeed7de2419851175627e7 --- /dev/null +++ b/hyperparameter/m4/tabdiff/tabdiff-m4-20260504_195649/tabular_bundle/pipeline_m4/X_num_test.npy @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:4a21bd2fd5a226c07d543ddf78616a8edb2d52b51097fc7a5df5b05612267af8 +size 26732 diff --git a/hyperparameter/m4/tabdiff/tabdiff-m4-20260504_195649/tabular_bundle/pipeline_m4/X_num_train.npy b/hyperparameter/m4/tabdiff/tabdiff-m4-20260504_195649/tabular_bundle/pipeline_m4/X_num_train.npy new file mode 100644 index 0000000000000000000000000000000000000000..dc149960a879e21fd1aeed7de2419851175627e7 --- /dev/null +++ b/hyperparameter/m4/tabdiff/tabdiff-m4-20260504_195649/tabular_bundle/pipeline_m4/X_num_train.npy @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:4a21bd2fd5a226c07d543ddf78616a8edb2d52b51097fc7a5df5b05612267af8 +size 26732 diff --git a/hyperparameter/m4/tabdiff/tabdiff-m4-20260504_195649/tabular_bundle/pipeline_m4/X_num_val.npy b/hyperparameter/m4/tabdiff/tabdiff-m4-20260504_195649/tabular_bundle/pipeline_m4/X_num_val.npy new file mode 100644 index 0000000000000000000000000000000000000000..dc149960a879e21fd1aeed7de2419851175627e7 --- /dev/null +++ b/hyperparameter/m4/tabdiff/tabdiff-m4-20260504_195649/tabular_bundle/pipeline_m4/X_num_val.npy @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:4a21bd2fd5a226c07d543ddf78616a8edb2d52b51097fc7a5df5b05612267af8 +size 26732 diff --git a/hyperparameter/m4/tabdiff/tabdiff-m4-20260504_195649/tabular_bundle/pipeline_m4/info.json b/hyperparameter/m4/tabdiff/tabdiff-m4-20260504_195649/tabular_bundle/pipeline_m4/info.json new file mode 100644 index 0000000000000000000000000000000000000000..1ccad8d2dc3c60feacc99d202a75e21be3afa7b5 --- /dev/null +++ b/hyperparameter/m4/tabdiff/tabdiff-m4-20260504_195649/tabular_bundle/pipeline_m4/info.json @@ -0,0 +1,92 @@ +{ + "name": "pipeline_m4", + "task_type": "regression", + "n_num_features": 3, + "n_cat_features": 3, + "train_size": 2217, + "test_num": 2217, + "val_num": 2217, + "train_num": 2217, + "bundle_note": "val/test matrices are train copies (train-only policy; no real held-out rows).", + "num_col_idx": [ + 0, + 1, + 2 + ], + "cat_col_idx": [ + 3, + 4, + 5 + ], + "target_col_idx": [ + 6 + ], + "column_names": [ + "age", + "bmi", + "children", + "sex", + "smoker", + "region", + "charges" + ], + "int_col_idx": [], + "int_columns": [], + "int_col_idx_wrt_num": [], + "metadata": { + "columns": { + "0": { + "sdtype": "numerical", + "computer_representation": "Float" + }, + "1": { + "sdtype": "numerical", + "computer_representation": "Float" + }, + "2": { + "sdtype": "numerical", + "computer_representation": "Float" + }, + "3": { + "sdtype": "categorical" + }, + "4": { + "sdtype": "categorical" + }, + "5": { + "sdtype": "categorical" + }, + "6": { + "sdtype": "numerical", + "computer_representation": "Float" + } + } + }, + "idx_mapping": { + "0": 0, + "1": 1, + "2": 2, + "3": 3, + "4": 4, + "5": 5, + "6": 6 + }, + "inverse_idx_mapping": { + "0": 0, + "1": 1, + "2": 2, + "3": 3, + "4": 4, + "5": 5, + "6": 6 + }, + "idx_name_mapping": { + "0": "age", + "1": "bmi", + "2": "children", + "3": "sex", + "4": "smoker", + "5": "region", + "6": "charges" + } +} \ No newline at end of file diff --git a/hyperparameter/m4/tabdiff/tabdiff-m4-20260504_195649/tabular_bundle/pipeline_m4/real.csv b/hyperparameter/m4/tabdiff/tabdiff-m4-20260504_195649/tabular_bundle/pipeline_m4/real.csv new file mode 100644 index 0000000000000000000000000000000000000000..85ff7f4464fa73c1d58767739e7b259f9371a55b --- /dev/null +++ b/hyperparameter/m4/tabdiff/tabdiff-m4-20260504_195649/tabular_bundle/pipeline_m4/real.csv @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:e031e2816aa79e4e5fab4c7fe470741eb2d287e493d74b9cfda68441799e07fa +size 60773 diff --git a/hyperparameter/m4/tabdiff/tabdiff-m4-20260504_195649/tabular_bundle/pipeline_m4/test.csv b/hyperparameter/m4/tabdiff/tabdiff-m4-20260504_195649/tabular_bundle/pipeline_m4/test.csv new file mode 100644 index 0000000000000000000000000000000000000000..85ff7f4464fa73c1d58767739e7b259f9371a55b --- /dev/null +++ b/hyperparameter/m4/tabdiff/tabdiff-m4-20260504_195649/tabular_bundle/pipeline_m4/test.csv @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:e031e2816aa79e4e5fab4c7fe470741eb2d287e493d74b9cfda68441799e07fa +size 60773 diff --git a/hyperparameter/m4/tabdiff/tabdiff-m4-20260504_195649/tabular_bundle/pipeline_m4/val.csv b/hyperparameter/m4/tabdiff/tabdiff-m4-20260504_195649/tabular_bundle/pipeline_m4/val.csv new file mode 100644 index 0000000000000000000000000000000000000000..85ff7f4464fa73c1d58767739e7b259f9371a55b --- /dev/null +++ b/hyperparameter/m4/tabdiff/tabdiff-m4-20260504_195649/tabular_bundle/pipeline_m4/val.csv @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:e031e2816aa79e4e5fab4c7fe470741eb2d287e493d74b9cfda68441799e07fa +size 60773 diff --git a/hyperparameter/m4/tabdiff/tabdiff-m4-20260504_195649/tabular_bundle/pipeline_m4/y_test.npy b/hyperparameter/m4/tabdiff/tabdiff-m4-20260504_195649/tabular_bundle/pipeline_m4/y_test.npy new file mode 100644 index 0000000000000000000000000000000000000000..717f965e62bd5595d6df01d1ad7851fc5768dc29 --- /dev/null +++ b/hyperparameter/m4/tabdiff/tabdiff-m4-20260504_195649/tabular_bundle/pipeline_m4/y_test.npy @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:0c64fea6ad5ed2f8441ef5212c726195dbf53e1c81298427bddd18eb20e35cf2 +size 8996 diff --git a/hyperparameter/m4/tabdiff/tabdiff-m4-20260504_195649/tabular_bundle/pipeline_m4/y_train.npy b/hyperparameter/m4/tabdiff/tabdiff-m4-20260504_195649/tabular_bundle/pipeline_m4/y_train.npy new file mode 100644 index 0000000000000000000000000000000000000000..717f965e62bd5595d6df01d1ad7851fc5768dc29 --- /dev/null +++ b/hyperparameter/m4/tabdiff/tabdiff-m4-20260504_195649/tabular_bundle/pipeline_m4/y_train.npy @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:0c64fea6ad5ed2f8441ef5212c726195dbf53e1c81298427bddd18eb20e35cf2 +size 8996 diff --git a/hyperparameter/m4/tabdiff/tabdiff-m4-20260504_195649/tabular_bundle/pipeline_m4/y_val.npy b/hyperparameter/m4/tabdiff/tabdiff-m4-20260504_195649/tabular_bundle/pipeline_m4/y_val.npy new file mode 100644 index 0000000000000000000000000000000000000000..717f965e62bd5595d6df01d1ad7851fc5768dc29 --- /dev/null +++ b/hyperparameter/m4/tabdiff/tabdiff-m4-20260504_195649/tabular_bundle/pipeline_m4/y_val.npy @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:0c64fea6ad5ed2f8441ef5212c726195dbf53e1c81298427bddd18eb20e35cf2 +size 8996 diff --git a/hyperparameter/m4/tabdiff/tabdiff-m4-20260504_195649/train_20260504_195649.log b/hyperparameter/m4/tabdiff/tabdiff-m4-20260504_195649/train_20260504_195649.log new file mode 100644 index 0000000000000000000000000000000000000000..9f1d224081f3f477526aca0d054b8e88c8c4bb12 --- /dev/null +++ b/hyperparameter/m4/tabdiff/tabdiff-m4-20260504_195649/train_20260504_195649.log @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:b09b9b01dc4fd8a3b9890d4c8605027dcb4730d140bbde8c511646056c72861c +size 296468 diff --git a/hyperparameter/m4/tabdiff/tabdiff-m4-20260504_200544/_tabdiff_gen.py b/hyperparameter/m4/tabdiff/tabdiff-m4-20260504_200544/_tabdiff_gen.py new file mode 100644 index 0000000000000000000000000000000000000000..ed1909463c84a9ff6b59e57d3185aa988bb03979 --- /dev/null +++ b/hyperparameter/m4/tabdiff/tabdiff-m4-20260504_200544/_tabdiff_gen.py @@ -0,0 +1,36 @@ + +import os, shutil, subprocess, sys +td = r"/workspace/TabDiff" +name = r"pipeline_m4" +src = r"/work/output-Benchmark-trainonly-v1/m4/tabdiff/tabdiff-m4-20260504_200544/tabular_bundle/pipeline_m4" +dst_data = os.path.join(td, "data", name) +dst_syn = os.path.join(td, "synthetic", name) +shutil.rmtree(dst_data, ignore_errors=True) +shutil.copytree(src, dst_data) +os.makedirs(dst_syn, exist_ok=True) +for fn in ("real.csv", "test.csv", "val.csv"): + shutil.copy(os.path.join(src, fn), os.path.join(dst_syn, fn)) +os.chdir(td) +os.environ["PYTHONPATH"] = td + os.pathsep + os.environ.get("PYTHONPATH", "") +subprocess.check_call([ + sys.executable, "-m", "tabdiff.main", + "--dataname", name, "--mode", "test", "--gpu", "0", + "--no_wandb", "--exp_name", r"adapter_learnable", + "--ckpt_path", r"/workspace/TabDiff/tabdiff/ckpt/pipeline_m4/adapter_learnable/model_800.pt", + "--num_samples_to_generate", str(int(2217)), +]) +# test() 写入 tabdiff/result////samples.csv +import glob as g +base = os.path.join(td, "tabdiff", "result", name, r"adapter_learnable") +best = None +best_t = -1.0 +for root, _, files in os.walk(base): + if "samples.csv" in files: + p = os.path.join(root, "samples.csv") + t = os.path.getmtime(p) + if t > best_t: + best_t = t + best = p +if not best: + raise SystemExit("tabdiff: no samples.csv under " + base) +shutil.copy(best, r"/work/output-Benchmark-trainonly-v1/m4/tabdiff/tabdiff-m4-20260504_200544/tabdiff-m4-2217-20260504_201541.csv") diff --git a/hyperparameter/m4/tabdiff/tabdiff-m4-20260504_200544/_tabdiff_train.py b/hyperparameter/m4/tabdiff/tabdiff-m4-20260504_200544/_tabdiff_train.py new file mode 100644 index 0000000000000000000000000000000000000000..8041e2fe642dbbfb4df7b7688d4c1c42d56f930d --- /dev/null +++ b/hyperparameter/m4/tabdiff/tabdiff-m4-20260504_200544/_tabdiff_train.py @@ -0,0 +1,21 @@ + +import os, shutil, subprocess, sys +td = r"/workspace/TabDiff" +name = r"pipeline_m4" +src = r"/work/output-Benchmark-trainonly-v1/m4/tabdiff/tabdiff-m4-20260504_200544/tabular_bundle/pipeline_m4" +dst_data = os.path.join(td, "data", name) +dst_syn = os.path.join(td, "synthetic", name) +shutil.rmtree(dst_data, ignore_errors=True) +shutil.copytree(src, dst_data) +os.makedirs(dst_syn, exist_ok=True) +for fn in ("real.csv", "test.csv", "val.csv"): + shutil.copy(os.path.join(src, fn), os.path.join(dst_syn, fn)) +os.chdir(td) +os.environ["PYTHONPATH"] = td + os.pathsep + os.environ.get("PYTHONPATH", "") +os.environ["TABDIFF_SMOKE_STEPS"] = "800" +os.environ["TABDIFF_ADAPTER_TRAIN"] = "1" +subprocess.check_call([ + sys.executable, "-m", "tabdiff.main", + "--dataname", name, "--mode", "train", "--gpu", "0", + "--no_wandb", "--exp_name", r"adapter_learnable", +]) diff --git a/hyperparameter/m4/tabdiff/tabdiff-m4-20260504_200544/gen_20260504_201541.log b/hyperparameter/m4/tabdiff/tabdiff-m4-20260504_200544/gen_20260504_201541.log new file mode 100644 index 0000000000000000000000000000000000000000..2f670aeb99dc23d501ea56ff74df148ad5768648 --- /dev/null +++ b/hyperparameter/m4/tabdiff/tabdiff-m4-20260504_200544/gen_20260504_201541.log @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:fe41ce38a5e1f9983f47f8f1e33e478f932d264085ffc6ecc6a65a2e3c9d3578 +size 6893 diff --git a/hyperparameter/m4/tabdiff/tabdiff-m4-20260504_200544/input_snapshot.json b/hyperparameter/m4/tabdiff/tabdiff-m4-20260504_200544/input_snapshot.json new file mode 100644 index 0000000000000000000000000000000000000000..28cd3a4d75d18efdf20f8d2e0b931a2ecdef48e9 --- /dev/null +++ b/hyperparameter/m4/tabdiff/tabdiff-m4-20260504_200544/input_snapshot.json @@ -0,0 +1,36 @@ +{ + "dataset_id": "m4", + "model": "tabdiff", + "inputs": { + "train_csv": { + "path": "/data/jialinzhang/SynthesizePipeline-server/DatasetNew/m4/m4-train.csv", + "exists": true, + "size": 92191, + "sha256": "396b9d409ca21bf4a4cd329bdf5b7796aa0ae6356fa8d89b8eb669b5880b81f1" + }, + "val_csv": { + "path": "/data/jialinzhang/SynthesizePipeline-server/DatasetNew/m4/m4-val.csv", + "exists": true, + "size": 11482, + "sha256": "ee3c247d02f56e1687d03c381e13125d6a3a2a411ac7f202ba8520a4be9f1784" + }, + "test_csv": { + "path": "/data/jialinzhang/SynthesizePipeline-server/DatasetNew/m4/m4-test.csv", + "exists": true, + "size": 11559, + "sha256": "cadb9941124001b8fa7cb1ebae43b70a9ca56294f4df4d3c2f22c164c41757d4" + }, + "profile_json": { + "path": "/data/jialinzhang/SynthesizePipeline-server/DatasetNew/artifacts/data_core/tabular/m4/m4-dataset_profile.json", + "exists": true, + "size": 3336, + "sha256": "83e2764810e4a0e8cdece3a28dbd9134b7c9df6f2e56953e46d024ad2c4e035f" + }, + "contract_json": { + "path": "/data/jialinzhang/SynthesizePipeline-server/DatasetNew/artifacts/data_core/tabular/m4/m4-dataset_contract_v1.json", + "exists": true, + "size": 3810, + "sha256": "c23641b258629a845b164099bd0132886f8f6d0100e990494e0f92540f8987d9" + } + } +} \ No newline at end of file diff --git a/hyperparameter/m4/tabdiff/tabdiff-m4-20260504_200544/models_tabdiff/trained.pt b/hyperparameter/m4/tabdiff/tabdiff-m4-20260504_200544/models_tabdiff/trained.pt new file mode 100644 index 0000000000000000000000000000000000000000..bc319a55a9c7152a1137f968b6fa1c735125ad11 --- /dev/null +++ b/hyperparameter/m4/tabdiff/tabdiff-m4-20260504_200544/models_tabdiff/trained.pt @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:306660b8aad4549267c68390b017e15ddb9bc06a02c80515eb72a97ae31a81eb +size 74 diff --git a/hyperparameter/m4/tabdiff/tabdiff-m4-20260504_200544/public_gate/normalized_schema_snapshot.json b/hyperparameter/m4/tabdiff/tabdiff-m4-20260504_200544/public_gate/normalized_schema_snapshot.json new file mode 100644 index 0000000000000000000000000000000000000000..31ed9818686b11907df75e872e4ffbe010330880 --- /dev/null +++ b/hyperparameter/m4/tabdiff/tabdiff-m4-20260504_200544/public_gate/normalized_schema_snapshot.json @@ -0,0 +1,147 @@ +{ + "dataset_id": "m4", + "target_column": "charges", + "task_type": "regression", + "columns": [ + { + "name": "age", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 47, + "unique_ratio": 0.0212, + "example_values": [ + "46", + "38", + "19", + "27", + "26" + ] + } + }, + { + "name": "sex", + "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.000902, + "example_values": [ + "female", + "male" + ] + } + }, + { + "name": "bmi", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 538, + "unique_ratio": 0.24267, + "example_values": [ + "23.655", + "19.3", + "30.59", + "32.67", + "29.45" + ] + } + }, + { + "name": "children", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 6, + "unique_ratio": 0.002706, + "example_values": [ + "1", + "0", + "3", + "2", + "5" + ] + } + }, + { + "name": "smoker", + "role": "feature", + "semantic_type": "boolean", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 2, + "unique_ratio": 0.000902, + "example_values": [ + "yes", + "no" + ] + } + }, + { + "name": "region", + "role": "feature", + "semantic_type": "categorical", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 4, + "unique_ratio": 0.001804, + "example_values": [ + "northwest", + "southwest", + "southeast", + "northeast" + ] + } + }, + { + "name": "charges", + "role": "target", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 1281, + "unique_ratio": 0.577808, + "example_values": [ + "21677.28345", + "15820.699", + "1639.5631", + "2497.0383", + "2897.3235" + ] + } + } + ] +} \ No newline at end of file diff --git a/hyperparameter/m4/tabdiff/tabdiff-m4-20260504_200544/public_gate/public_gate_report.json b/hyperparameter/m4/tabdiff/tabdiff-m4-20260504_200544/public_gate/public_gate_report.json new file mode 100644 index 0000000000000000000000000000000000000000..e7a25408e2574124629ea9437356551e4d6f4790 --- /dev/null +++ b/hyperparameter/m4/tabdiff/tabdiff-m4-20260504_200544/public_gate/public_gate_report.json @@ -0,0 +1,37 @@ +{ + "dataset_id": "m4", + "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": "charges", + "task_type": "regression", + "input_splits": { + "train": "/data/jialinzhang/SynthesizePipeline-server/DatasetNew/m4/m4-train.csv", + "val": "/data/jialinzhang/SynthesizePipeline-server/DatasetNew/m4/m4-val.csv", + "test": "/data/jialinzhang/SynthesizePipeline-server/DatasetNew/m4/m4-test.csv" + } +} \ No newline at end of file diff --git a/hyperparameter/m4/tabdiff/tabdiff-m4-20260504_200544/public_gate/staged_input_manifest.json b/hyperparameter/m4/tabdiff/tabdiff-m4-20260504_200544/public_gate/staged_input_manifest.json new file mode 100644 index 0000000000000000000000000000000000000000..6cb4eb5e772fa146225eaaa83e8a88329b37a47c --- /dev/null +++ b/hyperparameter/m4/tabdiff/tabdiff-m4-20260504_200544/public_gate/staged_input_manifest.json @@ -0,0 +1,152 @@ +{ + "dataset_id": "m4", + "target_column": "charges", + "task_type": "regression", + "train_csv": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/m4/tabdiff/tabdiff-m4-20260504_200544/staged/public/train.csv", + "val_csv": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/m4/tabdiff/tabdiff-m4-20260504_200544/staged/public/val.csv", + "test_csv": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/m4/tabdiff/tabdiff-m4-20260504_200544/staged/public/test.csv", + "features_json": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/m4/tabdiff/tabdiff-m4-20260504_200544/staged/public/staged_features.json", + "public_gate_report": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/m4/tabdiff/tabdiff-m4-20260504_200544/public_gate/public_gate_report.json", + "column_schema": [ + { + "name": "age", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 47, + "unique_ratio": 0.0212, + "example_values": [ + "46", + "38", + "19", + "27", + "26" + ] + } + }, + { + "name": "sex", + "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.000902, + "example_values": [ + "female", + "male" + ] + } + }, + { + "name": "bmi", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 538, + "unique_ratio": 0.24267, + "example_values": [ + "23.655", + "19.3", + "30.59", + "32.67", + "29.45" + ] + } + }, + { + "name": "children", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 6, + "unique_ratio": 0.002706, + "example_values": [ + "1", + "0", + "3", + "2", + "5" + ] + } + }, + { + "name": "smoker", + "role": "feature", + "semantic_type": "boolean", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 2, + "unique_ratio": 0.000902, + "example_values": [ + "yes", + "no" + ] + } + }, + { + "name": "region", + "role": "feature", + "semantic_type": "categorical", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 4, + "unique_ratio": 0.001804, + "example_values": [ + "northwest", + "southwest", + "southeast", + "northeast" + ] + } + }, + { + "name": "charges", + "role": "target", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 1281, + "unique_ratio": 0.577808, + "example_values": [ + "21677.28345", + "15820.699", + "1639.5631", + "2497.0383", + "2897.3235" + ] + } + } + ] +} \ No newline at end of file diff --git a/hyperparameter/m4/tabdiff/tabdiff-m4-20260504_200544/run_config.json b/hyperparameter/m4/tabdiff/tabdiff-m4-20260504_200544/run_config.json new file mode 100644 index 0000000000000000000000000000000000000000..8918bb18523da6f9ce1bc4e0380f110cf44162ef --- /dev/null +++ b/hyperparameter/m4/tabdiff/tabdiff-m4-20260504_200544/run_config.json @@ -0,0 +1,40 @@ +{ + "schema_version": 1, + "recorded_at": "2026-05-04T20:05:44", + "dataset_id": "m4", + "model": "tabdiff", + "work_dir": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/m4/tabdiff/tabdiff-m4-20260504_200544", + "dataset_source_requested": "new", + "dataset_source_resolved": "new", + "cli_args": { + "model": "tabdiff", + "dataset": "m4", + "dataset_source": "new", + "train": true, + "generate": true, + "num_rows": 0, + "epochs": 800, + "output_dir": null, + "model_dir": null, + "work_dir": null, + "resume": false, + "no_stats": false + }, + "resolved": { + "num_rows": 2217, + "model_path": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/m4/tabdiff/tabdiff-m4-20260504_200544/models_tabdiff/trained.pt", + "output_csv": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/m4/tabdiff/tabdiff-m4-20260504_200544/tabdiff-m4-2217-20260504_201541.csv" + }, + "input_artifacts": { + "public_gate_report": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/m4/tabdiff/tabdiff-m4-20260504_200544/public_gate/public_gate_report.json", + "public_manifest": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/m4/tabdiff/tabdiff-m4-20260504_200544/public_gate/staged_input_manifest.json", + "model_manifest": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/m4/tabdiff/tabdiff-m4-20260504_200544/staged/tabdiff/model_input_manifest.json", + "train_csv": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/m4/tabdiff/tabdiff-m4-20260504_200544/staged/public/train.csv", + "features_json": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/m4/tabdiff/tabdiff-m4-20260504_200544/staged/public/staged_features.json", + "target_column": "charges", + "task_type": "regression" + }, + "env_overrides": { + "BENCHMARK_TABDIFF_GPUS": "device=3" + } +} \ No newline at end of file diff --git a/hyperparameter/m4/tabdiff/tabdiff-m4-20260504_200544/runtime_result.json b/hyperparameter/m4/tabdiff/tabdiff-m4-20260504_200544/runtime_result.json new file mode 100644 index 0000000000000000000000000000000000000000..182d64d3fe89f51a36513127eaa081c5fb7bedd2 --- /dev/null +++ b/hyperparameter/m4/tabdiff/tabdiff-m4-20260504_200544/runtime_result.json @@ -0,0 +1,27 @@ +{ + "dataset_id": "m4", + "model": "tabdiff", + "run_id": "tabdiff-m4-20260504_200544", + "public_gate_status": "pass", + "adapter_ready_status": "pass", + "train_status": "success", + "generate_status": "success", + "reason_code": null, + "reason_detail": null, + "artifacts": { + "synthetic_csv": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/m4/tabdiff/tabdiff-m4-20260504_200544/tabdiff-m4-2217-20260504_201541.csv", + "model_path": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/m4/tabdiff/tabdiff-m4-20260504_200544/models_tabdiff/trained.pt" + }, + "timings": { + "train": { + "started_at": "2026-05-04T20:05:44", + "ended_at": "2026-05-04T20:15:41", + "duration_sec": 597.203 + }, + "generate": { + "started_at": "2026-05-04T20:15:41", + "ended_at": "2026-05-04T20:15:54", + "duration_sec": 12.358 + } + } +} \ No newline at end of file diff --git a/hyperparameter/m4/tabdiff/tabdiff-m4-20260504_200544/staged/public/staged_features.json b/hyperparameter/m4/tabdiff/tabdiff-m4-20260504_200544/staged/public/staged_features.json new file mode 100644 index 0000000000000000000000000000000000000000..d6acd098c35111f423f3ffff2cfd1754bc5dfebc --- /dev/null +++ b/hyperparameter/m4/tabdiff/tabdiff-m4-20260504_200544/staged/public/staged_features.json @@ -0,0 +1,37 @@ +[ + { + "feature_name": "age", + "data_type": "continuous", + "is_target": false + }, + { + "feature_name": "sex", + "data_type": "categorical", + "is_target": false + }, + { + "feature_name": "bmi", + "data_type": "continuous", + "is_target": false + }, + { + "feature_name": "children", + "data_type": "continuous", + "is_target": false + }, + { + "feature_name": "smoker", + "data_type": "binary", + "is_target": false + }, + { + "feature_name": "region", + "data_type": "categorical", + "is_target": false + }, + { + "feature_name": "charges", + "data_type": "continuous", + "is_target": true + } +] \ No newline at end of file diff --git a/hyperparameter/m4/tabdiff/tabdiff-m4-20260504_200544/staged/public/test.csv b/hyperparameter/m4/tabdiff/tabdiff-m4-20260504_200544/staged/public/test.csv new file mode 100644 index 0000000000000000000000000000000000000000..c88a2e7cfcd715bb421cb56eb078033da45c4dc8 --- /dev/null +++ b/hyperparameter/m4/tabdiff/tabdiff-m4-20260504_200544/staged/public/test.csv @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:4c541b677fb2d45c5bc79338eeee9fd8c91484b195a0c2c546c2fbabf113b7ea +size 11298 diff --git a/hyperparameter/m4/tabdiff/tabdiff-m4-20260504_200544/staged/public/train.csv b/hyperparameter/m4/tabdiff/tabdiff-m4-20260504_200544/staged/public/train.csv new file mode 100644 index 0000000000000000000000000000000000000000..5a05019d786529e0617291766c4fbe016ca01bf5 --- /dev/null +++ b/hyperparameter/m4/tabdiff/tabdiff-m4-20260504_200544/staged/public/train.csv @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:614ebfac5f41d6f661aff675fa18c0f933a8d9bcc77ea71b7b2360c2f0155837 +size 90069 diff --git a/hyperparameter/m4/tabdiff/tabdiff-m4-20260504_200544/staged/public/val.csv b/hyperparameter/m4/tabdiff/tabdiff-m4-20260504_200544/staged/public/val.csv new file mode 100644 index 0000000000000000000000000000000000000000..d78fe5ad1537c437ba9ac2629f2aa60a6c17e708 --- /dev/null +++ b/hyperparameter/m4/tabdiff/tabdiff-m4-20260504_200544/staged/public/val.csv @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:e55f5edbe7942ff01630de91a9c70dfbc6445eba76c7b970350364546b67c2d7 +size 11218 diff --git a/hyperparameter/m4/tabdiff/tabdiff-m4-20260504_200544/staged/tabdiff/adapter_report.json b/hyperparameter/m4/tabdiff/tabdiff-m4-20260504_200544/staged/tabdiff/adapter_report.json new file mode 100644 index 0000000000000000000000000000000000000000..5880ea779d04f940a9075bb04bd71d89f11c5546 --- /dev/null +++ b/hyperparameter/m4/tabdiff/tabdiff-m4-20260504_200544/staged/tabdiff/adapter_report.json @@ -0,0 +1,7 @@ +{ + "adapter_ready_status": "pass", + "adapter_fail_reason_code": null, + "adapter_fail_detail": null, + "adapter_transforms_applied": [], + "model_input_manifest": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/m4/tabdiff/tabdiff-m4-20260504_200544/staged/tabdiff/model_input_manifest.json" +} \ No newline at end of file diff --git a/hyperparameter/m4/tabdiff/tabdiff-m4-20260504_200544/staged/tabdiff/adapter_transforms_applied.json b/hyperparameter/m4/tabdiff/tabdiff-m4-20260504_200544/staged/tabdiff/adapter_transforms_applied.json new file mode 100644 index 0000000000000000000000000000000000000000..0637a088a01e8ddab3bf3fa98dbe804cbde1a0dc --- /dev/null +++ b/hyperparameter/m4/tabdiff/tabdiff-m4-20260504_200544/staged/tabdiff/adapter_transforms_applied.json @@ -0,0 +1 @@ +[] \ No newline at end of file diff --git a/hyperparameter/m4/tabdiff/tabdiff-m4-20260504_200544/staged/tabdiff/model_input_manifest.json b/hyperparameter/m4/tabdiff/tabdiff-m4-20260504_200544/staged/tabdiff/model_input_manifest.json new file mode 100644 index 0000000000000000000000000000000000000000..f9c50148c83e8c5629e3c273164efb330ba9c9ca --- /dev/null +++ b/hyperparameter/m4/tabdiff/tabdiff-m4-20260504_200544/staged/tabdiff/model_input_manifest.json @@ -0,0 +1,154 @@ +{ + "dataset_id": "m4", + "model": "tabdiff", + "target_column": "charges", + "task_type": "regression", + "column_schema": [ + { + "name": "age", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 47, + "unique_ratio": 0.0212, + "example_values": [ + "46", + "38", + "19", + "27", + "26" + ] + } + }, + { + "name": "sex", + "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.000902, + "example_values": [ + "female", + "male" + ] + } + }, + { + "name": "bmi", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 538, + "unique_ratio": 0.24267, + "example_values": [ + "23.655", + "19.3", + "30.59", + "32.67", + "29.45" + ] + } + }, + { + "name": "children", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 6, + "unique_ratio": 0.002706, + "example_values": [ + "1", + "0", + "3", + "2", + "5" + ] + } + }, + { + "name": "smoker", + "role": "feature", + "semantic_type": "boolean", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 2, + "unique_ratio": 0.000902, + "example_values": [ + "yes", + "no" + ] + } + }, + { + "name": "region", + "role": "feature", + "semantic_type": "categorical", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 4, + "unique_ratio": 0.001804, + "example_values": [ + "northwest", + "southwest", + "southeast", + "northeast" + ] + } + }, + { + "name": "charges", + "role": "target", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 1281, + "unique_ratio": 0.577808, + "example_values": [ + "21677.28345", + "15820.699", + "1639.5631", + "2497.0383", + "2897.3235" + ] + } + } + ], + "public_manifest": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/m4/tabdiff/tabdiff-m4-20260504_200544/public_gate/staged_input_manifest.json", + "train_csv": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/m4/tabdiff/tabdiff-m4-20260504_200544/staged/public/train.csv", + "val_csv": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/m4/tabdiff/tabdiff-m4-20260504_200544/staged/public/val.csv", + "test_csv": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/m4/tabdiff/tabdiff-m4-20260504_200544/staged/public/test.csv", + "features_json": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/m4/tabdiff/tabdiff-m4-20260504_200544/staged/public/staged_features.json", + "public_gate_report": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/m4/tabdiff/tabdiff-m4-20260504_200544/public_gate/public_gate_report.json" +} \ No newline at end of file diff --git a/hyperparameter/m4/tabdiff/tabdiff-m4-20260504_200544/tabdiff-m4-2217-20260504_201541.csv b/hyperparameter/m4/tabdiff/tabdiff-m4-20260504_200544/tabdiff-m4-2217-20260504_201541.csv new file mode 100644 index 0000000000000000000000000000000000000000..5c465375528e1088b5977741e94d6882e3c4018f --- /dev/null +++ b/hyperparameter/m4/tabdiff/tabdiff-m4-20260504_200544/tabdiff-m4-2217-20260504_201541.csv @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:659ec186bf571bed98478664ec95aa99c6afb29d31ea29f9b73117a38ac65786 +size 83895 diff --git a/hyperparameter/m4/tabdiff/tabdiff-m4-20260504_200544/tabdiff_train_meta.json b/hyperparameter/m4/tabdiff/tabdiff-m4-20260504_200544/tabdiff_train_meta.json new file mode 100644 index 0000000000000000000000000000000000000000..f3cca36ec1fe43f843226e2bb92f316e327c6c7f --- /dev/null +++ b/hyperparameter/m4/tabdiff/tabdiff-m4-20260504_200544/tabdiff_train_meta.json @@ -0,0 +1,5 @@ +{ + "exp_name": "adapter_learnable", + "dataname": "pipeline_m4", + "steps": 800 +} \ No newline at end of file diff --git a/hyperparameter/m4/tabdiff/tabdiff-m4-20260504_200544/tabular_bundle/pipeline_m4/X_cat_test.npy b/hyperparameter/m4/tabdiff/tabdiff-m4-20260504_200544/tabular_bundle/pipeline_m4/X_cat_test.npy new file mode 100644 index 0000000000000000000000000000000000000000..2f6b8b23f5768174aab4879e2a30371e9a3d0ead --- /dev/null +++ b/hyperparameter/m4/tabdiff/tabdiff-m4-20260504_200544/tabular_bundle/pipeline_m4/X_cat_test.npy @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:c91af7ac26382e392a70536d3dbb592c04ba5e4f495d1e3c364416b9ef704a07 +size 53336 diff --git a/hyperparameter/m4/tabdiff/tabdiff-m4-20260504_200544/tabular_bundle/pipeline_m4/X_cat_train.npy b/hyperparameter/m4/tabdiff/tabdiff-m4-20260504_200544/tabular_bundle/pipeline_m4/X_cat_train.npy new file mode 100644 index 0000000000000000000000000000000000000000..2f6b8b23f5768174aab4879e2a30371e9a3d0ead --- /dev/null +++ b/hyperparameter/m4/tabdiff/tabdiff-m4-20260504_200544/tabular_bundle/pipeline_m4/X_cat_train.npy @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:c91af7ac26382e392a70536d3dbb592c04ba5e4f495d1e3c364416b9ef704a07 +size 53336 diff --git a/hyperparameter/m4/tabdiff/tabdiff-m4-20260504_200544/tabular_bundle/pipeline_m4/X_cat_val.npy b/hyperparameter/m4/tabdiff/tabdiff-m4-20260504_200544/tabular_bundle/pipeline_m4/X_cat_val.npy new file mode 100644 index 0000000000000000000000000000000000000000..2f6b8b23f5768174aab4879e2a30371e9a3d0ead --- /dev/null +++ b/hyperparameter/m4/tabdiff/tabdiff-m4-20260504_200544/tabular_bundle/pipeline_m4/X_cat_val.npy @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:c91af7ac26382e392a70536d3dbb592c04ba5e4f495d1e3c364416b9ef704a07 +size 53336 diff --git a/hyperparameter/m4/tabdiff/tabdiff-m4-20260504_200544/tabular_bundle/pipeline_m4/X_num_test.npy b/hyperparameter/m4/tabdiff/tabdiff-m4-20260504_200544/tabular_bundle/pipeline_m4/X_num_test.npy new file mode 100644 index 0000000000000000000000000000000000000000..dc149960a879e21fd1aeed7de2419851175627e7 --- /dev/null +++ b/hyperparameter/m4/tabdiff/tabdiff-m4-20260504_200544/tabular_bundle/pipeline_m4/X_num_test.npy @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:4a21bd2fd5a226c07d543ddf78616a8edb2d52b51097fc7a5df5b05612267af8 +size 26732 diff --git a/hyperparameter/m4/tabdiff/tabdiff-m4-20260504_200544/tabular_bundle/pipeline_m4/X_num_train.npy b/hyperparameter/m4/tabdiff/tabdiff-m4-20260504_200544/tabular_bundle/pipeline_m4/X_num_train.npy new file mode 100644 index 0000000000000000000000000000000000000000..dc149960a879e21fd1aeed7de2419851175627e7 --- /dev/null +++ b/hyperparameter/m4/tabdiff/tabdiff-m4-20260504_200544/tabular_bundle/pipeline_m4/X_num_train.npy @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:4a21bd2fd5a226c07d543ddf78616a8edb2d52b51097fc7a5df5b05612267af8 +size 26732 diff --git a/hyperparameter/m4/tabdiff/tabdiff-m4-20260504_200544/tabular_bundle/pipeline_m4/X_num_val.npy b/hyperparameter/m4/tabdiff/tabdiff-m4-20260504_200544/tabular_bundle/pipeline_m4/X_num_val.npy new file mode 100644 index 0000000000000000000000000000000000000000..dc149960a879e21fd1aeed7de2419851175627e7 --- /dev/null +++ b/hyperparameter/m4/tabdiff/tabdiff-m4-20260504_200544/tabular_bundle/pipeline_m4/X_num_val.npy @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:4a21bd2fd5a226c07d543ddf78616a8edb2d52b51097fc7a5df5b05612267af8 +size 26732 diff --git a/hyperparameter/m4/tabdiff/tabdiff-m4-20260504_200544/tabular_bundle/pipeline_m4/info.json b/hyperparameter/m4/tabdiff/tabdiff-m4-20260504_200544/tabular_bundle/pipeline_m4/info.json new file mode 100644 index 0000000000000000000000000000000000000000..1ccad8d2dc3c60feacc99d202a75e21be3afa7b5 --- /dev/null +++ b/hyperparameter/m4/tabdiff/tabdiff-m4-20260504_200544/tabular_bundle/pipeline_m4/info.json @@ -0,0 +1,92 @@ +{ + "name": "pipeline_m4", + "task_type": "regression", + "n_num_features": 3, + "n_cat_features": 3, + "train_size": 2217, + "test_num": 2217, + "val_num": 2217, + "train_num": 2217, + "bundle_note": "val/test matrices are train copies (train-only policy; no real held-out rows).", + "num_col_idx": [ + 0, + 1, + 2 + ], + "cat_col_idx": [ + 3, + 4, + 5 + ], + "target_col_idx": [ + 6 + ], + "column_names": [ + "age", + "bmi", + "children", + "sex", + "smoker", + "region", + "charges" + ], + "int_col_idx": [], + "int_columns": [], + "int_col_idx_wrt_num": [], + "metadata": { + "columns": { + "0": { + "sdtype": "numerical", + "computer_representation": "Float" + }, + "1": { + "sdtype": "numerical", + "computer_representation": "Float" + }, + "2": { + "sdtype": "numerical", + "computer_representation": "Float" + }, + "3": { + "sdtype": "categorical" + }, + "4": { + "sdtype": "categorical" + }, + "5": { + "sdtype": "categorical" + }, + "6": { + "sdtype": "numerical", + "computer_representation": "Float" + } + } + }, + "idx_mapping": { + "0": 0, + "1": 1, + "2": 2, + "3": 3, + "4": 4, + "5": 5, + "6": 6 + }, + "inverse_idx_mapping": { + "0": 0, + "1": 1, + "2": 2, + "3": 3, + "4": 4, + "5": 5, + "6": 6 + }, + "idx_name_mapping": { + "0": "age", + "1": "bmi", + "2": "children", + "3": "sex", + "4": "smoker", + "5": "region", + "6": "charges" + } +} \ No newline at end of file diff --git a/hyperparameter/m4/tabdiff/tabdiff-m4-20260504_200544/tabular_bundle/pipeline_m4/real.csv b/hyperparameter/m4/tabdiff/tabdiff-m4-20260504_200544/tabular_bundle/pipeline_m4/real.csv new file mode 100644 index 0000000000000000000000000000000000000000..85ff7f4464fa73c1d58767739e7b259f9371a55b --- /dev/null +++ b/hyperparameter/m4/tabdiff/tabdiff-m4-20260504_200544/tabular_bundle/pipeline_m4/real.csv @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:e031e2816aa79e4e5fab4c7fe470741eb2d287e493d74b9cfda68441799e07fa +size 60773 diff --git a/hyperparameter/m4/tabdiff/tabdiff-m4-20260504_200544/tabular_bundle/pipeline_m4/test.csv b/hyperparameter/m4/tabdiff/tabdiff-m4-20260504_200544/tabular_bundle/pipeline_m4/test.csv new file mode 100644 index 0000000000000000000000000000000000000000..85ff7f4464fa73c1d58767739e7b259f9371a55b --- /dev/null +++ b/hyperparameter/m4/tabdiff/tabdiff-m4-20260504_200544/tabular_bundle/pipeline_m4/test.csv @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:e031e2816aa79e4e5fab4c7fe470741eb2d287e493d74b9cfda68441799e07fa +size 60773 diff --git a/hyperparameter/m4/tabdiff/tabdiff-m4-20260504_200544/tabular_bundle/pipeline_m4/val.csv b/hyperparameter/m4/tabdiff/tabdiff-m4-20260504_200544/tabular_bundle/pipeline_m4/val.csv new file mode 100644 index 0000000000000000000000000000000000000000..85ff7f4464fa73c1d58767739e7b259f9371a55b --- /dev/null +++ b/hyperparameter/m4/tabdiff/tabdiff-m4-20260504_200544/tabular_bundle/pipeline_m4/val.csv @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:e031e2816aa79e4e5fab4c7fe470741eb2d287e493d74b9cfda68441799e07fa +size 60773 diff --git a/hyperparameter/m4/tabdiff/tabdiff-m4-20260504_200544/tabular_bundle/pipeline_m4/y_test.npy b/hyperparameter/m4/tabdiff/tabdiff-m4-20260504_200544/tabular_bundle/pipeline_m4/y_test.npy new file mode 100644 index 0000000000000000000000000000000000000000..717f965e62bd5595d6df01d1ad7851fc5768dc29 --- /dev/null +++ b/hyperparameter/m4/tabdiff/tabdiff-m4-20260504_200544/tabular_bundle/pipeline_m4/y_test.npy @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:0c64fea6ad5ed2f8441ef5212c726195dbf53e1c81298427bddd18eb20e35cf2 +size 8996 diff --git a/hyperparameter/m4/tabdiff/tabdiff-m4-20260504_200544/tabular_bundle/pipeline_m4/y_train.npy b/hyperparameter/m4/tabdiff/tabdiff-m4-20260504_200544/tabular_bundle/pipeline_m4/y_train.npy new file mode 100644 index 0000000000000000000000000000000000000000..717f965e62bd5595d6df01d1ad7851fc5768dc29 --- /dev/null +++ b/hyperparameter/m4/tabdiff/tabdiff-m4-20260504_200544/tabular_bundle/pipeline_m4/y_train.npy @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:0c64fea6ad5ed2f8441ef5212c726195dbf53e1c81298427bddd18eb20e35cf2 +size 8996 diff --git a/hyperparameter/m4/tabdiff/tabdiff-m4-20260504_200544/tabular_bundle/pipeline_m4/y_val.npy b/hyperparameter/m4/tabdiff/tabdiff-m4-20260504_200544/tabular_bundle/pipeline_m4/y_val.npy new file mode 100644 index 0000000000000000000000000000000000000000..717f965e62bd5595d6df01d1ad7851fc5768dc29 --- /dev/null +++ b/hyperparameter/m4/tabdiff/tabdiff-m4-20260504_200544/tabular_bundle/pipeline_m4/y_val.npy @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:0c64fea6ad5ed2f8441ef5212c726195dbf53e1c81298427bddd18eb20e35cf2 +size 8996 diff --git a/hyperparameter/m4/tabdiff/tabdiff-m4-20260504_200544/train_20260504_200544.log b/hyperparameter/m4/tabdiff/tabdiff-m4-20260504_200544/train_20260504_200544.log new file mode 100644 index 0000000000000000000000000000000000000000..8a767e6fb681de6ac5764cdeb4ec44ce1d36ad10 --- /dev/null +++ b/hyperparameter/m4/tabdiff/tabdiff-m4-20260504_200544/train_20260504_200544.log @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:078c01e8a0435d455a40b8861e45cf4d3985d3394f911ac66ca128eaf244ba00 +size 465876 diff --git a/hyperparameter/m4/tabdiff/tabdiff-m4-20260504_201603/_tabdiff_gen.py b/hyperparameter/m4/tabdiff/tabdiff-m4-20260504_201603/_tabdiff_gen.py new file mode 100644 index 0000000000000000000000000000000000000000..28a66a04060caa38fb9dc0c2522206fa05d83deb --- /dev/null +++ b/hyperparameter/m4/tabdiff/tabdiff-m4-20260504_201603/_tabdiff_gen.py @@ -0,0 +1,36 @@ + +import os, shutil, subprocess, sys +td = r"/workspace/TabDiff" +name = r"pipeline_m4" +src = r"/work/output-Benchmark-trainonly-v1/m4/tabdiff/tabdiff-m4-20260504_201603/tabular_bundle/pipeline_m4" +dst_data = os.path.join(td, "data", name) +dst_syn = os.path.join(td, "synthetic", name) +shutil.rmtree(dst_data, ignore_errors=True) +shutil.copytree(src, dst_data) +os.makedirs(dst_syn, exist_ok=True) +for fn in ("real.csv", "test.csv", "val.csv"): + shutil.copy(os.path.join(src, fn), os.path.join(dst_syn, fn)) +os.chdir(td) +os.environ["PYTHONPATH"] = td + os.pathsep + os.environ.get("PYTHONPATH", "") +subprocess.check_call([ + sys.executable, "-m", "tabdiff.main", + "--dataname", name, "--mode", "test", "--gpu", "0", + "--no_wandb", "--exp_name", r"adapter_learnable", + "--ckpt_path", r"/workspace/TabDiff/tabdiff/ckpt/pipeline_m4/adapter_learnable/model_800.pt", + "--num_samples_to_generate", str(int(2217)), +]) +# test() 写入 tabdiff/result////samples.csv +import glob as g +base = os.path.join(td, "tabdiff", "result", name, r"adapter_learnable") +best = None +best_t = -1.0 +for root, _, files in os.walk(base): + if "samples.csv" in files: + p = os.path.join(root, "samples.csv") + t = os.path.getmtime(p) + if t > best_t: + best_t = t + best = p +if not best: + raise SystemExit("tabdiff: no samples.csv under " + base) +shutil.copy(best, r"/work/output-Benchmark-trainonly-v1/m4/tabdiff/tabdiff-m4-20260504_201603/tabdiff-m4-2217-20260504_203038.csv") diff --git a/hyperparameter/m4/tabdiff/tabdiff-m4-20260504_201603/_tabdiff_train.py b/hyperparameter/m4/tabdiff/tabdiff-m4-20260504_201603/_tabdiff_train.py new file mode 100644 index 0000000000000000000000000000000000000000..e89c9d5cae2d0d0a3ffad675ad4d3d6793a5bb4e --- /dev/null +++ b/hyperparameter/m4/tabdiff/tabdiff-m4-20260504_201603/_tabdiff_train.py @@ -0,0 +1,21 @@ + +import os, shutil, subprocess, sys +td = r"/workspace/TabDiff" +name = r"pipeline_m4" +src = r"/work/output-Benchmark-trainonly-v1/m4/tabdiff/tabdiff-m4-20260504_201603/tabular_bundle/pipeline_m4" +dst_data = os.path.join(td, "data", name) +dst_syn = os.path.join(td, "synthetic", name) +shutil.rmtree(dst_data, ignore_errors=True) +shutil.copytree(src, dst_data) +os.makedirs(dst_syn, exist_ok=True) +for fn in ("real.csv", "test.csv", "val.csv"): + shutil.copy(os.path.join(src, fn), os.path.join(dst_syn, fn)) +os.chdir(td) +os.environ["PYTHONPATH"] = td + os.pathsep + os.environ.get("PYTHONPATH", "") +os.environ["TABDIFF_SMOKE_STEPS"] = "1000" +os.environ["TABDIFF_ADAPTER_TRAIN"] = "1" +subprocess.check_call([ + sys.executable, "-m", "tabdiff.main", + "--dataname", name, "--mode", "train", "--gpu", "0", + "--no_wandb", "--exp_name", r"adapter_learnable", +]) diff --git a/hyperparameter/m4/tabdiff/tabdiff-m4-20260504_201603/gen_20260504_203038.log b/hyperparameter/m4/tabdiff/tabdiff-m4-20260504_201603/gen_20260504_203038.log new file mode 100644 index 0000000000000000000000000000000000000000..33561038399d96140e26bbc6cfdc58e27a42152e --- /dev/null +++ b/hyperparameter/m4/tabdiff/tabdiff-m4-20260504_201603/gen_20260504_203038.log @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:e8ef2ac385ef21af82d3d19043b965c593520bcd5860d0c78eb4f0aadabfe92b +size 6653 diff --git a/hyperparameter/m4/tabdiff/tabdiff-m4-20260504_201603/input_snapshot.json b/hyperparameter/m4/tabdiff/tabdiff-m4-20260504_201603/input_snapshot.json new file mode 100644 index 0000000000000000000000000000000000000000..28cd3a4d75d18efdf20f8d2e0b931a2ecdef48e9 --- /dev/null +++ b/hyperparameter/m4/tabdiff/tabdiff-m4-20260504_201603/input_snapshot.json @@ -0,0 +1,36 @@ +{ + "dataset_id": "m4", + "model": "tabdiff", + "inputs": { + "train_csv": { + "path": "/data/jialinzhang/SynthesizePipeline-server/DatasetNew/m4/m4-train.csv", + "exists": true, + "size": 92191, + "sha256": "396b9d409ca21bf4a4cd329bdf5b7796aa0ae6356fa8d89b8eb669b5880b81f1" + }, + "val_csv": { + "path": "/data/jialinzhang/SynthesizePipeline-server/DatasetNew/m4/m4-val.csv", + "exists": true, + "size": 11482, + "sha256": "ee3c247d02f56e1687d03c381e13125d6a3a2a411ac7f202ba8520a4be9f1784" + }, + "test_csv": { + "path": "/data/jialinzhang/SynthesizePipeline-server/DatasetNew/m4/m4-test.csv", + "exists": true, + "size": 11559, + "sha256": "cadb9941124001b8fa7cb1ebae43b70a9ca56294f4df4d3c2f22c164c41757d4" + }, + "profile_json": { + "path": "/data/jialinzhang/SynthesizePipeline-server/DatasetNew/artifacts/data_core/tabular/m4/m4-dataset_profile.json", + "exists": true, + "size": 3336, + "sha256": "83e2764810e4a0e8cdece3a28dbd9134b7c9df6f2e56953e46d024ad2c4e035f" + }, + "contract_json": { + "path": "/data/jialinzhang/SynthesizePipeline-server/DatasetNew/artifacts/data_core/tabular/m4/m4-dataset_contract_v1.json", + "exists": true, + "size": 3810, + "sha256": "c23641b258629a845b164099bd0132886f8f6d0100e990494e0f92540f8987d9" + } + } +} \ No newline at end of file diff --git a/hyperparameter/m4/tabdiff/tabdiff-m4-20260504_201603/models_tabdiff/trained.pt b/hyperparameter/m4/tabdiff/tabdiff-m4-20260504_201603/models_tabdiff/trained.pt new file mode 100644 index 0000000000000000000000000000000000000000..bc319a55a9c7152a1137f968b6fa1c735125ad11 --- /dev/null +++ b/hyperparameter/m4/tabdiff/tabdiff-m4-20260504_201603/models_tabdiff/trained.pt @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:306660b8aad4549267c68390b017e15ddb9bc06a02c80515eb72a97ae31a81eb +size 74 diff --git a/hyperparameter/m4/tabdiff/tabdiff-m4-20260504_201603/public_gate/normalized_schema_snapshot.json b/hyperparameter/m4/tabdiff/tabdiff-m4-20260504_201603/public_gate/normalized_schema_snapshot.json new file mode 100644 index 0000000000000000000000000000000000000000..31ed9818686b11907df75e872e4ffbe010330880 --- /dev/null +++ b/hyperparameter/m4/tabdiff/tabdiff-m4-20260504_201603/public_gate/normalized_schema_snapshot.json @@ -0,0 +1,147 @@ +{ + "dataset_id": "m4", + "target_column": "charges", + "task_type": "regression", + "columns": [ + { + "name": "age", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 47, + "unique_ratio": 0.0212, + "example_values": [ + "46", + "38", + "19", + "27", + "26" + ] + } + }, + { + "name": "sex", + "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.000902, + "example_values": [ + "female", + "male" + ] + } + }, + { + "name": "bmi", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 538, + "unique_ratio": 0.24267, + "example_values": [ + "23.655", + "19.3", + "30.59", + "32.67", + "29.45" + ] + } + }, + { + "name": "children", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 6, + "unique_ratio": 0.002706, + "example_values": [ + "1", + "0", + "3", + "2", + "5" + ] + } + }, + { + "name": "smoker", + "role": "feature", + "semantic_type": "boolean", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 2, + "unique_ratio": 0.000902, + "example_values": [ + "yes", + "no" + ] + } + }, + { + "name": "region", + "role": "feature", + "semantic_type": "categorical", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 4, + "unique_ratio": 0.001804, + "example_values": [ + "northwest", + "southwest", + "southeast", + "northeast" + ] + } + }, + { + "name": "charges", + "role": "target", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 1281, + "unique_ratio": 0.577808, + "example_values": [ + "21677.28345", + "15820.699", + "1639.5631", + "2497.0383", + "2897.3235" + ] + } + } + ] +} \ No newline at end of file diff --git a/hyperparameter/m4/tabdiff/tabdiff-m4-20260504_201603/public_gate/public_gate_report.json b/hyperparameter/m4/tabdiff/tabdiff-m4-20260504_201603/public_gate/public_gate_report.json new file mode 100644 index 0000000000000000000000000000000000000000..e7a25408e2574124629ea9437356551e4d6f4790 --- /dev/null +++ b/hyperparameter/m4/tabdiff/tabdiff-m4-20260504_201603/public_gate/public_gate_report.json @@ -0,0 +1,37 @@ +{ + "dataset_id": "m4", + "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": "charges", + "task_type": "regression", + "input_splits": { + "train": "/data/jialinzhang/SynthesizePipeline-server/DatasetNew/m4/m4-train.csv", + "val": "/data/jialinzhang/SynthesizePipeline-server/DatasetNew/m4/m4-val.csv", + "test": "/data/jialinzhang/SynthesizePipeline-server/DatasetNew/m4/m4-test.csv" + } +} \ No newline at end of file diff --git a/hyperparameter/m4/tabdiff/tabdiff-m4-20260504_201603/public_gate/staged_input_manifest.json b/hyperparameter/m4/tabdiff/tabdiff-m4-20260504_201603/public_gate/staged_input_manifest.json new file mode 100644 index 0000000000000000000000000000000000000000..bd083900940a4bc1dd73c07143285d713cb3062d --- /dev/null +++ b/hyperparameter/m4/tabdiff/tabdiff-m4-20260504_201603/public_gate/staged_input_manifest.json @@ -0,0 +1,152 @@ +{ + "dataset_id": "m4", + "target_column": "charges", + "task_type": "regression", + "train_csv": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/m4/tabdiff/tabdiff-m4-20260504_201603/staged/public/train.csv", + "val_csv": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/m4/tabdiff/tabdiff-m4-20260504_201603/staged/public/val.csv", + "test_csv": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/m4/tabdiff/tabdiff-m4-20260504_201603/staged/public/test.csv", + "features_json": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/m4/tabdiff/tabdiff-m4-20260504_201603/staged/public/staged_features.json", + "public_gate_report": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/m4/tabdiff/tabdiff-m4-20260504_201603/public_gate/public_gate_report.json", + "column_schema": [ + { + "name": "age", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 47, + "unique_ratio": 0.0212, + "example_values": [ + "46", + "38", + "19", + "27", + "26" + ] + } + }, + { + "name": "sex", + "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.000902, + "example_values": [ + "female", + "male" + ] + } + }, + { + "name": "bmi", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 538, + "unique_ratio": 0.24267, + "example_values": [ + "23.655", + "19.3", + "30.59", + "32.67", + "29.45" + ] + } + }, + { + "name": "children", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 6, + "unique_ratio": 0.002706, + "example_values": [ + "1", + "0", + "3", + "2", + "5" + ] + } + }, + { + "name": "smoker", + "role": "feature", + "semantic_type": "boolean", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 2, + "unique_ratio": 0.000902, + "example_values": [ + "yes", + "no" + ] + } + }, + { + "name": "region", + "role": "feature", + "semantic_type": "categorical", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 4, + "unique_ratio": 0.001804, + "example_values": [ + "northwest", + "southwest", + "southeast", + "northeast" + ] + } + }, + { + "name": "charges", + "role": "target", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 1281, + "unique_ratio": 0.577808, + "example_values": [ + "21677.28345", + "15820.699", + "1639.5631", + "2497.0383", + "2897.3235" + ] + } + } + ] +} \ No newline at end of file diff --git a/hyperparameter/m4/tabdiff/tabdiff-m4-20260504_201603/run_config.json b/hyperparameter/m4/tabdiff/tabdiff-m4-20260504_201603/run_config.json new file mode 100644 index 0000000000000000000000000000000000000000..d603322b53d06ab316aa3a09eae2b6a8a6094962 --- /dev/null +++ b/hyperparameter/m4/tabdiff/tabdiff-m4-20260504_201603/run_config.json @@ -0,0 +1,40 @@ +{ + "schema_version": 1, + "recorded_at": "2026-05-04T20:16:03", + "dataset_id": "m4", + "model": "tabdiff", + "work_dir": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/m4/tabdiff/tabdiff-m4-20260504_201603", + "dataset_source_requested": "new", + "dataset_source_resolved": "new", + "cli_args": { + "model": "tabdiff", + "dataset": "m4", + "dataset_source": "new", + "train": true, + "generate": true, + "num_rows": 0, + "epochs": 1000, + "output_dir": null, + "model_dir": null, + "work_dir": null, + "resume": false, + "no_stats": false + }, + "resolved": { + "num_rows": 2217, + "model_path": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/m4/tabdiff/tabdiff-m4-20260504_201603/models_tabdiff/trained.pt", + "output_csv": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/m4/tabdiff/tabdiff-m4-20260504_201603/tabdiff-m4-2217-20260504_203038.csv" + }, + "input_artifacts": { + "public_gate_report": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/m4/tabdiff/tabdiff-m4-20260504_201603/public_gate/public_gate_report.json", + "public_manifest": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/m4/tabdiff/tabdiff-m4-20260504_201603/public_gate/staged_input_manifest.json", + "model_manifest": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/m4/tabdiff/tabdiff-m4-20260504_201603/staged/tabdiff/model_input_manifest.json", + "train_csv": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/m4/tabdiff/tabdiff-m4-20260504_201603/staged/public/train.csv", + "features_json": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/m4/tabdiff/tabdiff-m4-20260504_201603/staged/public/staged_features.json", + "target_column": "charges", + "task_type": "regression" + }, + "env_overrides": { + "BENCHMARK_TABDIFF_GPUS": "device=3" + } +} \ No newline at end of file diff --git a/hyperparameter/m4/tabdiff/tabdiff-m4-20260504_201603/runtime_result.json b/hyperparameter/m4/tabdiff/tabdiff-m4-20260504_201603/runtime_result.json new file mode 100644 index 0000000000000000000000000000000000000000..b7f344194287eeeae4ec09486576da18742f35e9 --- /dev/null +++ b/hyperparameter/m4/tabdiff/tabdiff-m4-20260504_201603/runtime_result.json @@ -0,0 +1,27 @@ +{ + "dataset_id": "m4", + "model": "tabdiff", + "run_id": "tabdiff-m4-20260504_201603", + "public_gate_status": "pass", + "adapter_ready_status": "pass", + "train_status": "success", + "generate_status": "success", + "reason_code": null, + "reason_detail": null, + "artifacts": { + "synthetic_csv": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/m4/tabdiff/tabdiff-m4-20260504_201603/tabdiff-m4-2217-20260504_203038.csv", + "model_path": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/m4/tabdiff/tabdiff-m4-20260504_201603/models_tabdiff/trained.pt" + }, + "timings": { + "train": { + "started_at": "2026-05-04T20:16:03", + "ended_at": "2026-05-04T20:30:38", + "duration_sec": 874.805 + }, + "generate": { + "started_at": "2026-05-04T20:30:38", + "ended_at": "2026-05-04T20:30:53", + "duration_sec": 15.445 + } + } +} \ No newline at end of file diff --git a/hyperparameter/m4/tabdiff/tabdiff-m4-20260504_201603/staged/public/staged_features.json b/hyperparameter/m4/tabdiff/tabdiff-m4-20260504_201603/staged/public/staged_features.json new file mode 100644 index 0000000000000000000000000000000000000000..d6acd098c35111f423f3ffff2cfd1754bc5dfebc --- /dev/null +++ b/hyperparameter/m4/tabdiff/tabdiff-m4-20260504_201603/staged/public/staged_features.json @@ -0,0 +1,37 @@ +[ + { + "feature_name": "age", + "data_type": "continuous", + "is_target": false + }, + { + "feature_name": "sex", + "data_type": "categorical", + "is_target": false + }, + { + "feature_name": "bmi", + "data_type": "continuous", + "is_target": false + }, + { + "feature_name": "children", + "data_type": "continuous", + "is_target": false + }, + { + "feature_name": "smoker", + "data_type": "binary", + "is_target": false + }, + { + "feature_name": "region", + "data_type": "categorical", + "is_target": false + }, + { + "feature_name": "charges", + "data_type": "continuous", + "is_target": true + } +] \ No newline at end of file diff --git a/hyperparameter/m4/tabdiff/tabdiff-m4-20260504_201603/staged/public/test.csv b/hyperparameter/m4/tabdiff/tabdiff-m4-20260504_201603/staged/public/test.csv new file mode 100644 index 0000000000000000000000000000000000000000..c88a2e7cfcd715bb421cb56eb078033da45c4dc8 --- /dev/null +++ b/hyperparameter/m4/tabdiff/tabdiff-m4-20260504_201603/staged/public/test.csv @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:4c541b677fb2d45c5bc79338eeee9fd8c91484b195a0c2c546c2fbabf113b7ea +size 11298 diff --git a/hyperparameter/m4/tabdiff/tabdiff-m4-20260504_201603/staged/public/train.csv b/hyperparameter/m4/tabdiff/tabdiff-m4-20260504_201603/staged/public/train.csv new file mode 100644 index 0000000000000000000000000000000000000000..5a05019d786529e0617291766c4fbe016ca01bf5 --- /dev/null +++ b/hyperparameter/m4/tabdiff/tabdiff-m4-20260504_201603/staged/public/train.csv @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:614ebfac5f41d6f661aff675fa18c0f933a8d9bcc77ea71b7b2360c2f0155837 +size 90069 diff --git a/hyperparameter/m4/tabdiff/tabdiff-m4-20260504_201603/staged/public/val.csv b/hyperparameter/m4/tabdiff/tabdiff-m4-20260504_201603/staged/public/val.csv new file mode 100644 index 0000000000000000000000000000000000000000..d78fe5ad1537c437ba9ac2629f2aa60a6c17e708 --- /dev/null +++ b/hyperparameter/m4/tabdiff/tabdiff-m4-20260504_201603/staged/public/val.csv @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:e55f5edbe7942ff01630de91a9c70dfbc6445eba76c7b970350364546b67c2d7 +size 11218 diff --git a/hyperparameter/m4/tabdiff/tabdiff-m4-20260504_201603/staged/tabdiff/adapter_report.json b/hyperparameter/m4/tabdiff/tabdiff-m4-20260504_201603/staged/tabdiff/adapter_report.json new file mode 100644 index 0000000000000000000000000000000000000000..4e77ca5d37667c3673540b301b6a9777a23aca71 --- /dev/null +++ b/hyperparameter/m4/tabdiff/tabdiff-m4-20260504_201603/staged/tabdiff/adapter_report.json @@ -0,0 +1,7 @@ +{ + "adapter_ready_status": "pass", + "adapter_fail_reason_code": null, + "adapter_fail_detail": null, + "adapter_transforms_applied": [], + "model_input_manifest": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/m4/tabdiff/tabdiff-m4-20260504_201603/staged/tabdiff/model_input_manifest.json" +} \ No newline at end of file diff --git a/hyperparameter/m4/tabdiff/tabdiff-m4-20260504_201603/staged/tabdiff/adapter_transforms_applied.json b/hyperparameter/m4/tabdiff/tabdiff-m4-20260504_201603/staged/tabdiff/adapter_transforms_applied.json new file mode 100644 index 0000000000000000000000000000000000000000..0637a088a01e8ddab3bf3fa98dbe804cbde1a0dc --- /dev/null +++ b/hyperparameter/m4/tabdiff/tabdiff-m4-20260504_201603/staged/tabdiff/adapter_transforms_applied.json @@ -0,0 +1 @@ +[] \ No newline at end of file diff --git a/hyperparameter/m4/tabdiff/tabdiff-m4-20260504_201603/staged/tabdiff/model_input_manifest.json b/hyperparameter/m4/tabdiff/tabdiff-m4-20260504_201603/staged/tabdiff/model_input_manifest.json new file mode 100644 index 0000000000000000000000000000000000000000..63eb55125ced70325f757776bc878fd22bf02763 --- /dev/null +++ b/hyperparameter/m4/tabdiff/tabdiff-m4-20260504_201603/staged/tabdiff/model_input_manifest.json @@ -0,0 +1,154 @@ +{ + "dataset_id": "m4", + "model": "tabdiff", + "target_column": "charges", + "task_type": "regression", + "column_schema": [ + { + "name": "age", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 47, + "unique_ratio": 0.0212, + "example_values": [ + "46", + "38", + "19", + "27", + "26" + ] + } + }, + { + "name": "sex", + "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.000902, + "example_values": [ + "female", + "male" + ] + } + }, + { + "name": "bmi", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 538, + "unique_ratio": 0.24267, + "example_values": [ + "23.655", + "19.3", + "30.59", + "32.67", + "29.45" + ] + } + }, + { + "name": "children", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 6, + "unique_ratio": 0.002706, + "example_values": [ + "1", + "0", + "3", + "2", + "5" + ] + } + }, + { + "name": "smoker", + "role": "feature", + "semantic_type": "boolean", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 2, + "unique_ratio": 0.000902, + "example_values": [ + "yes", + "no" + ] + } + }, + { + "name": "region", + "role": "feature", + "semantic_type": "categorical", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 4, + "unique_ratio": 0.001804, + "example_values": [ + "northwest", + "southwest", + "southeast", + "northeast" + ] + } + }, + { + "name": "charges", + "role": "target", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 1281, + "unique_ratio": 0.577808, + "example_values": [ + "21677.28345", + "15820.699", + "1639.5631", + "2497.0383", + "2897.3235" + ] + } + } + ], + "public_manifest": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/m4/tabdiff/tabdiff-m4-20260504_201603/public_gate/staged_input_manifest.json", + "train_csv": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/m4/tabdiff/tabdiff-m4-20260504_201603/staged/public/train.csv", + "val_csv": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/m4/tabdiff/tabdiff-m4-20260504_201603/staged/public/val.csv", + "test_csv": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/m4/tabdiff/tabdiff-m4-20260504_201603/staged/public/test.csv", + "features_json": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/m4/tabdiff/tabdiff-m4-20260504_201603/staged/public/staged_features.json", + "public_gate_report": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/m4/tabdiff/tabdiff-m4-20260504_201603/public_gate/public_gate_report.json" +} \ No newline at end of file diff --git a/hyperparameter/m4/tabdiff/tabdiff-m4-20260504_201603/tabdiff-m4-2217-20260504_203038.csv b/hyperparameter/m4/tabdiff/tabdiff-m4-20260504_201603/tabdiff-m4-2217-20260504_203038.csv new file mode 100644 index 0000000000000000000000000000000000000000..bfe04a242aff7268457b083e24862220465955e9 --- /dev/null +++ b/hyperparameter/m4/tabdiff/tabdiff-m4-20260504_201603/tabdiff-m4-2217-20260504_203038.csv @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:1749302f9e8a1c1f41226bfccd34f036d64cb4f48c66a101b0c384759f97cf15 +size 84165 diff --git a/hyperparameter/m4/tabdiff/tabdiff-m4-20260504_201603/tabdiff_train_meta.json b/hyperparameter/m4/tabdiff/tabdiff-m4-20260504_201603/tabdiff_train_meta.json new file mode 100644 index 0000000000000000000000000000000000000000..7abf773b01690b4ff1574157dc06860d9c07dda2 --- /dev/null +++ b/hyperparameter/m4/tabdiff/tabdiff-m4-20260504_201603/tabdiff_train_meta.json @@ -0,0 +1,5 @@ +{ + "exp_name": "adapter_learnable", + "dataname": "pipeline_m4", + "steps": 1000 +} \ No newline at end of file diff --git a/hyperparameter/m4/tabdiff/tabdiff-m4-20260504_201603/tabular_bundle/pipeline_m4/X_cat_test.npy b/hyperparameter/m4/tabdiff/tabdiff-m4-20260504_201603/tabular_bundle/pipeline_m4/X_cat_test.npy new file mode 100644 index 0000000000000000000000000000000000000000..2f6b8b23f5768174aab4879e2a30371e9a3d0ead --- /dev/null +++ b/hyperparameter/m4/tabdiff/tabdiff-m4-20260504_201603/tabular_bundle/pipeline_m4/X_cat_test.npy @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:c91af7ac26382e392a70536d3dbb592c04ba5e4f495d1e3c364416b9ef704a07 +size 53336 diff --git a/hyperparameter/m4/tabdiff/tabdiff-m4-20260504_201603/tabular_bundle/pipeline_m4/X_cat_train.npy b/hyperparameter/m4/tabdiff/tabdiff-m4-20260504_201603/tabular_bundle/pipeline_m4/X_cat_train.npy new file mode 100644 index 0000000000000000000000000000000000000000..2f6b8b23f5768174aab4879e2a30371e9a3d0ead --- /dev/null +++ b/hyperparameter/m4/tabdiff/tabdiff-m4-20260504_201603/tabular_bundle/pipeline_m4/X_cat_train.npy @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:c91af7ac26382e392a70536d3dbb592c04ba5e4f495d1e3c364416b9ef704a07 +size 53336 diff --git a/hyperparameter/m4/tabdiff/tabdiff-m4-20260504_201603/tabular_bundle/pipeline_m4/X_cat_val.npy b/hyperparameter/m4/tabdiff/tabdiff-m4-20260504_201603/tabular_bundle/pipeline_m4/X_cat_val.npy new file mode 100644 index 0000000000000000000000000000000000000000..2f6b8b23f5768174aab4879e2a30371e9a3d0ead --- /dev/null +++ b/hyperparameter/m4/tabdiff/tabdiff-m4-20260504_201603/tabular_bundle/pipeline_m4/X_cat_val.npy @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:c91af7ac26382e392a70536d3dbb592c04ba5e4f495d1e3c364416b9ef704a07 +size 53336 diff --git a/hyperparameter/m4/tabdiff/tabdiff-m4-20260504_201603/tabular_bundle/pipeline_m4/X_num_test.npy b/hyperparameter/m4/tabdiff/tabdiff-m4-20260504_201603/tabular_bundle/pipeline_m4/X_num_test.npy new file mode 100644 index 0000000000000000000000000000000000000000..dc149960a879e21fd1aeed7de2419851175627e7 --- /dev/null +++ b/hyperparameter/m4/tabdiff/tabdiff-m4-20260504_201603/tabular_bundle/pipeline_m4/X_num_test.npy @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:4a21bd2fd5a226c07d543ddf78616a8edb2d52b51097fc7a5df5b05612267af8 +size 26732 diff --git a/hyperparameter/m4/tabdiff/tabdiff-m4-20260504_201603/tabular_bundle/pipeline_m4/X_num_train.npy b/hyperparameter/m4/tabdiff/tabdiff-m4-20260504_201603/tabular_bundle/pipeline_m4/X_num_train.npy new file mode 100644 index 0000000000000000000000000000000000000000..dc149960a879e21fd1aeed7de2419851175627e7 --- /dev/null +++ b/hyperparameter/m4/tabdiff/tabdiff-m4-20260504_201603/tabular_bundle/pipeline_m4/X_num_train.npy @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:4a21bd2fd5a226c07d543ddf78616a8edb2d52b51097fc7a5df5b05612267af8 +size 26732 diff --git a/hyperparameter/m4/tabdiff/tabdiff-m4-20260504_201603/tabular_bundle/pipeline_m4/X_num_val.npy b/hyperparameter/m4/tabdiff/tabdiff-m4-20260504_201603/tabular_bundle/pipeline_m4/X_num_val.npy new file mode 100644 index 0000000000000000000000000000000000000000..dc149960a879e21fd1aeed7de2419851175627e7 --- /dev/null +++ b/hyperparameter/m4/tabdiff/tabdiff-m4-20260504_201603/tabular_bundle/pipeline_m4/X_num_val.npy @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:4a21bd2fd5a226c07d543ddf78616a8edb2d52b51097fc7a5df5b05612267af8 +size 26732 diff --git a/hyperparameter/m4/tabdiff/tabdiff-m4-20260504_201603/tabular_bundle/pipeline_m4/info.json b/hyperparameter/m4/tabdiff/tabdiff-m4-20260504_201603/tabular_bundle/pipeline_m4/info.json new file mode 100644 index 0000000000000000000000000000000000000000..1ccad8d2dc3c60feacc99d202a75e21be3afa7b5 --- /dev/null +++ b/hyperparameter/m4/tabdiff/tabdiff-m4-20260504_201603/tabular_bundle/pipeline_m4/info.json @@ -0,0 +1,92 @@ +{ + "name": "pipeline_m4", + "task_type": "regression", + "n_num_features": 3, + "n_cat_features": 3, + "train_size": 2217, + "test_num": 2217, + "val_num": 2217, + "train_num": 2217, + "bundle_note": "val/test matrices are train copies (train-only policy; no real held-out rows).", + "num_col_idx": [ + 0, + 1, + 2 + ], + "cat_col_idx": [ + 3, + 4, + 5 + ], + "target_col_idx": [ + 6 + ], + "column_names": [ + "age", + "bmi", + "children", + "sex", + "smoker", + "region", + "charges" + ], + "int_col_idx": [], + "int_columns": [], + "int_col_idx_wrt_num": [], + "metadata": { + "columns": { + "0": { + "sdtype": "numerical", + "computer_representation": "Float" + }, + "1": { + "sdtype": "numerical", + "computer_representation": "Float" + }, + "2": { + "sdtype": "numerical", + "computer_representation": "Float" + }, + "3": { + "sdtype": "categorical" + }, + "4": { + "sdtype": "categorical" + }, + "5": { + "sdtype": "categorical" + }, + "6": { + "sdtype": "numerical", + "computer_representation": "Float" + } + } + }, + "idx_mapping": { + "0": 0, + "1": 1, + "2": 2, + "3": 3, + "4": 4, + "5": 5, + "6": 6 + }, + "inverse_idx_mapping": { + "0": 0, + "1": 1, + "2": 2, + "3": 3, + "4": 4, + "5": 5, + "6": 6 + }, + "idx_name_mapping": { + "0": "age", + "1": "bmi", + "2": "children", + "3": "sex", + "4": "smoker", + "5": "region", + "6": "charges" + } +} \ No newline at end of file diff --git a/hyperparameter/m4/tabdiff/tabdiff-m4-20260504_201603/tabular_bundle/pipeline_m4/real.csv b/hyperparameter/m4/tabdiff/tabdiff-m4-20260504_201603/tabular_bundle/pipeline_m4/real.csv new file mode 100644 index 0000000000000000000000000000000000000000..85ff7f4464fa73c1d58767739e7b259f9371a55b --- /dev/null +++ b/hyperparameter/m4/tabdiff/tabdiff-m4-20260504_201603/tabular_bundle/pipeline_m4/real.csv @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:e031e2816aa79e4e5fab4c7fe470741eb2d287e493d74b9cfda68441799e07fa +size 60773 diff --git a/hyperparameter/m4/tabdiff/tabdiff-m4-20260504_201603/tabular_bundle/pipeline_m4/test.csv b/hyperparameter/m4/tabdiff/tabdiff-m4-20260504_201603/tabular_bundle/pipeline_m4/test.csv new file mode 100644 index 0000000000000000000000000000000000000000..85ff7f4464fa73c1d58767739e7b259f9371a55b --- /dev/null +++ b/hyperparameter/m4/tabdiff/tabdiff-m4-20260504_201603/tabular_bundle/pipeline_m4/test.csv @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:e031e2816aa79e4e5fab4c7fe470741eb2d287e493d74b9cfda68441799e07fa +size 60773 diff --git a/hyperparameter/m4/tabdiff/tabdiff-m4-20260504_201603/tabular_bundle/pipeline_m4/val.csv b/hyperparameter/m4/tabdiff/tabdiff-m4-20260504_201603/tabular_bundle/pipeline_m4/val.csv new file mode 100644 index 0000000000000000000000000000000000000000..85ff7f4464fa73c1d58767739e7b259f9371a55b --- /dev/null +++ b/hyperparameter/m4/tabdiff/tabdiff-m4-20260504_201603/tabular_bundle/pipeline_m4/val.csv @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:e031e2816aa79e4e5fab4c7fe470741eb2d287e493d74b9cfda68441799e07fa +size 60773 diff --git a/hyperparameter/m4/tabdiff/tabdiff-m4-20260504_201603/tabular_bundle/pipeline_m4/y_test.npy b/hyperparameter/m4/tabdiff/tabdiff-m4-20260504_201603/tabular_bundle/pipeline_m4/y_test.npy new file mode 100644 index 0000000000000000000000000000000000000000..717f965e62bd5595d6df01d1ad7851fc5768dc29 --- /dev/null +++ b/hyperparameter/m4/tabdiff/tabdiff-m4-20260504_201603/tabular_bundle/pipeline_m4/y_test.npy @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:0c64fea6ad5ed2f8441ef5212c726195dbf53e1c81298427bddd18eb20e35cf2 +size 8996 diff --git a/hyperparameter/m4/tabdiff/tabdiff-m4-20260504_201603/tabular_bundle/pipeline_m4/y_train.npy b/hyperparameter/m4/tabdiff/tabdiff-m4-20260504_201603/tabular_bundle/pipeline_m4/y_train.npy new file mode 100644 index 0000000000000000000000000000000000000000..717f965e62bd5595d6df01d1ad7851fc5768dc29 --- /dev/null +++ b/hyperparameter/m4/tabdiff/tabdiff-m4-20260504_201603/tabular_bundle/pipeline_m4/y_train.npy @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:0c64fea6ad5ed2f8441ef5212c726195dbf53e1c81298427bddd18eb20e35cf2 +size 8996 diff --git a/hyperparameter/m4/tabdiff/tabdiff-m4-20260504_201603/tabular_bundle/pipeline_m4/y_val.npy b/hyperparameter/m4/tabdiff/tabdiff-m4-20260504_201603/tabular_bundle/pipeline_m4/y_val.npy new file mode 100644 index 0000000000000000000000000000000000000000..717f965e62bd5595d6df01d1ad7851fc5768dc29 --- /dev/null +++ b/hyperparameter/m4/tabdiff/tabdiff-m4-20260504_201603/tabular_bundle/pipeline_m4/y_val.npy @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:0c64fea6ad5ed2f8441ef5212c726195dbf53e1c81298427bddd18eb20e35cf2 +size 8996 diff --git a/hyperparameter/m4/tabdiff/tabdiff-m4-20260504_201603/train_20260504_201603.log b/hyperparameter/m4/tabdiff/tabdiff-m4-20260504_201603/train_20260504_201603.log new file mode 100644 index 0000000000000000000000000000000000000000..e40b175a5490f4b94d292ca2f2546606784105e1 --- /dev/null +++ b/hyperparameter/m4/tabdiff/tabdiff-m4-20260504_201603/train_20260504_201603.log @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:57a69d2c09c1c566bc693048eea1434b7a7e285051c436bd2348e14524718b0d +size 584154 diff --git a/hyperparameter/m4/tabpfgen/tabpfgen-m4-20260505_030045/_tabpfgen_generate.py b/hyperparameter/m4/tabpfgen/tabpfgen-m4-20260505_030045/_tabpfgen_generate.py new file mode 100644 index 0000000000000000000000000000000000000000..d977c8cd6fa00b8209a876eef79c658b9c2d0a05 --- /dev/null +++ b/hyperparameter/m4/tabpfgen/tabpfgen-m4-20260505_030045/_tabpfgen_generate.py @@ -0,0 +1,122 @@ +import os +import numpy as np +import pandas as pd +import json +from tabpfgen import TabPFGen + +df = pd.read_csv("/work/output-Benchmark-trainonly-v1/m4/tabpfgen/tabpfgen-m4-20260505_030045/staged/public/train.csv") +target_col = "charges" + +target_missing = df[target_col].isna() +if target_missing.any(): + dropped = int(target_missing.sum()) + df = df.loc[~target_missing].copy() + print( + f"[TabPFGen] Dropped {dropped} rows with missing target '{target_col}'" + ) +if df.empty: + raise ValueError( + f"[TabPFGen] No rows remain after dropping missing target '{target_col}'" + ) + +feature_cols = [c for c in df.columns if c != target_col] + +cat_encodings = {} +for col in feature_cols: + if df[col].dtype == object or str(df[col].dtype) == 'category': + cats = sorted(df[col].dropna().unique().tolist(), key=str) + cat_map = {v: i for i, v in enumerate(cats)} + df[col] = df[col].map(cat_map).astype(float) + cat_encodings[col] = cats + print(f"[TabPFGen] Label-encoded '{col}' ({len(cats)} categories)") + +target_cats = None +if df[target_col].dtype == object or str(df[target_col].dtype) == 'category': + cats = sorted(df[target_col].dropna().unique().tolist(), key=str) + t_map = {v: i for i, v in enumerate(cats)} + df[target_col] = df[target_col].map(t_map).astype(float) + target_cats = cats + print(f"[TabPFGen] Label-encoded target '{target_col}' ({len(cats)} categories)") + +X = df[feature_cols].values.astype(np.float32) +y = df[target_col].values +fit_rows_cap = max(1, int(os.environ.get("TABPFGEN_FIT_MAX_ROWS", "50000"))) +if len(X) > fit_rows_cap: + rng = np.random.default_rng(42) + idx = np.sort(rng.choice(len(X), size=fit_rows_cap, replace=False)) + X = X[idx] + y = y[idx] + print(f"[TabPFGen] Downsampled fit rows -> {len(X)} (cap={fit_rows_cap})") +target_n = int(2217) + +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 + +chunk_rows = max(1, int(os.environ.get("TABPFGEN_GEN_CHUNK_ROWS", "256"))) +device = (os.environ.get("TABPFGEN_DEVICE") or "auto").strip() or "auto" + +# TabPFGen v0.1.x API:仅支持 n_sgld_steps / sgld_* / device。 +# (旧版脚本中的 energy_*_chunk 与上游 TabPFGen 不一致,会导致 TypeError。) +gen = TabPFGen( + n_sgld_steps=1000, + sgld_step_size=0.01, + sgld_noise_scale=0.01, + device=device, +) + +print(f"[TabPFGen] Generating {target_n} rows via generate_regression (chunk_rows={chunk_rows}, device={device})") +x_parts = [] +y_parts = [] +remaining = target_n +while remaining > 0: + take = min(chunk_rows, remaining) + X_part, y_part = gen.generate_regression(X, y, n_samples=take) + x_parts.append(np.asarray(X_part)) + y_parts.append(np.asarray(y_part)) + remaining -= take + print(f"[TabPFGen] chunk done: take={take}, remaining={remaining}") + +X_syn = np.concatenate(x_parts, axis=0) +y_syn = np.concatenate(y_parts, axis=0) + +syn_df = pd.DataFrame(X_syn, columns=feature_cols) +syn_df[target_col] = y_syn + +for col, cats in cat_encodings.items(): + codes = np.round(syn_df[col].values).astype(int) + codes = np.clip(codes, 0, len(cats) - 1) + syn_df[col] = [cats[c] for c in codes] + +if target_cats is not None: + codes = np.round(syn_df[target_col].values).astype(int) + codes = np.clip(codes, 0, len(target_cats) - 1) + syn_df[target_col] = [target_cats[c] for c in codes] + +if len(syn_df) > target_n: + print(f"[TabPFGen] Trimming rows: {len(syn_df)} -> {target_n}") + syn_df = syn_df.iloc[:target_n].copy() +elif len(syn_df) < target_n: + deficit = target_n - len(syn_df) + print(f"[TabPFGen] Padding rows: {len(syn_df)} -> {target_n} (deficit={deficit})") + if len(syn_df) > 0: + extra = syn_df.sample(n=deficit, replace=True, random_state=42) + syn_df = pd.concat( + [syn_df.reset_index(drop=True), extra.reset_index(drop=True)], + ignore_index=True, + ) + else: + syn_df = df[feature_cols + [target_col]].sample( + n=target_n, replace=True, random_state=42 + ).reset_index(drop=True) + +syn_df = syn_df[list(df.columns)] +if len(syn_df) != target_n: + raise RuntimeError( + f"[TabPFGen] Row alignment failed: got {len(syn_df)}, expected {target_n}" + ) +syn_df.to_csv("/work/output-Benchmark-trainonly-v1/m4/tabpfgen/tabpfgen-m4-20260505_030045/tabpfgen-m4-2217-20260505_030045.csv", index=False) +print(f"[TabPFGen] Saved {len(syn_df)} rows -> /work/output-Benchmark-trainonly-v1/m4/tabpfgen/tabpfgen-m4-20260505_030045/tabpfgen-m4-2217-20260505_030045.csv") diff --git a/hyperparameter/m4/tabpfgen/tabpfgen-m4-20260505_030045/gen_20260505_030045.log b/hyperparameter/m4/tabpfgen/tabpfgen-m4-20260505_030045/gen_20260505_030045.log new file mode 100644 index 0000000000000000000000000000000000000000..ef322b704a54bc27c5786dcd4a0c591448cf999c --- /dev/null +++ b/hyperparameter/m4/tabpfgen/tabpfgen-m4-20260505_030045/gen_20260505_030045.log @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:4ef77b5880a636abd915bbe84664112d39942074f1573086a9915d465bb0124c +size 7438 diff --git a/hyperparameter/m4/tabpfgen/tabpfgen-m4-20260505_030045/input_snapshot.json b/hyperparameter/m4/tabpfgen/tabpfgen-m4-20260505_030045/input_snapshot.json new file mode 100644 index 0000000000000000000000000000000000000000..0e4ec9d0bc32394ab638c94bcf784b81478f2f39 --- /dev/null +++ b/hyperparameter/m4/tabpfgen/tabpfgen-m4-20260505_030045/input_snapshot.json @@ -0,0 +1,36 @@ +{ + "dataset_id": "m4", + "model": "tabpfgen", + "inputs": { + "train_csv": { + "path": "/data/jialinzhang/SynthesizePipeline-server/DatasetNew/m4/m4-train.csv", + "exists": true, + "size": 92191, + "sha256": "396b9d409ca21bf4a4cd329bdf5b7796aa0ae6356fa8d89b8eb669b5880b81f1" + }, + "val_csv": { + "path": "/data/jialinzhang/SynthesizePipeline-server/DatasetNew/m4/m4-val.csv", + "exists": true, + "size": 11482, + "sha256": "ee3c247d02f56e1687d03c381e13125d6a3a2a411ac7f202ba8520a4be9f1784" + }, + "test_csv": { + "path": "/data/jialinzhang/SynthesizePipeline-server/DatasetNew/m4/m4-test.csv", + "exists": true, + "size": 11559, + "sha256": "cadb9941124001b8fa7cb1ebae43b70a9ca56294f4df4d3c2f22c164c41757d4" + }, + "profile_json": { + "path": "/data/jialinzhang/SynthesizePipeline-server/DatasetNew/artifacts/data_core/tabular/m4/m4-dataset_profile.json", + "exists": true, + "size": 3336, + "sha256": "83e2764810e4a0e8cdece3a28dbd9134b7c9df6f2e56953e46d024ad2c4e035f" + }, + "contract_json": { + "path": "/data/jialinzhang/SynthesizePipeline-server/DatasetNew/artifacts/data_core/tabular/m4/m4-dataset_contract_v1.json", + "exists": true, + "size": 3810, + "sha256": "c23641b258629a845b164099bd0132886f8f6d0100e990494e0f92540f8987d9" + } + } +} \ No newline at end of file diff --git a/hyperparameter/m4/tabpfgen/tabpfgen-m4-20260505_030045/public_gate/normalized_schema_snapshot.json b/hyperparameter/m4/tabpfgen/tabpfgen-m4-20260505_030045/public_gate/normalized_schema_snapshot.json new file mode 100644 index 0000000000000000000000000000000000000000..31ed9818686b11907df75e872e4ffbe010330880 --- /dev/null +++ b/hyperparameter/m4/tabpfgen/tabpfgen-m4-20260505_030045/public_gate/normalized_schema_snapshot.json @@ -0,0 +1,147 @@ +{ + "dataset_id": "m4", + "target_column": "charges", + "task_type": "regression", + "columns": [ + { + "name": "age", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 47, + "unique_ratio": 0.0212, + "example_values": [ + "46", + "38", + "19", + "27", + "26" + ] + } + }, + { + "name": "sex", + "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.000902, + "example_values": [ + "female", + "male" + ] + } + }, + { + "name": "bmi", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 538, + "unique_ratio": 0.24267, + "example_values": [ + "23.655", + "19.3", + "30.59", + "32.67", + "29.45" + ] + } + }, + { + "name": "children", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 6, + "unique_ratio": 0.002706, + "example_values": [ + "1", + "0", + "3", + "2", + "5" + ] + } + }, + { + "name": "smoker", + "role": "feature", + "semantic_type": "boolean", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 2, + "unique_ratio": 0.000902, + "example_values": [ + "yes", + "no" + ] + } + }, + { + "name": "region", + "role": "feature", + "semantic_type": "categorical", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 4, + "unique_ratio": 0.001804, + "example_values": [ + "northwest", + "southwest", + "southeast", + "northeast" + ] + } + }, + { + "name": "charges", + "role": "target", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 1281, + "unique_ratio": 0.577808, + "example_values": [ + "21677.28345", + "15820.699", + "1639.5631", + "2497.0383", + "2897.3235" + ] + } + } + ] +} \ No newline at end of file diff --git a/hyperparameter/m4/tabpfgen/tabpfgen-m4-20260505_030045/public_gate/public_gate_report.json b/hyperparameter/m4/tabpfgen/tabpfgen-m4-20260505_030045/public_gate/public_gate_report.json new file mode 100644 index 0000000000000000000000000000000000000000..e7a25408e2574124629ea9437356551e4d6f4790 --- /dev/null +++ b/hyperparameter/m4/tabpfgen/tabpfgen-m4-20260505_030045/public_gate/public_gate_report.json @@ -0,0 +1,37 @@ +{ + "dataset_id": "m4", + "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": "charges", + "task_type": "regression", + "input_splits": { + "train": "/data/jialinzhang/SynthesizePipeline-server/DatasetNew/m4/m4-train.csv", + "val": "/data/jialinzhang/SynthesizePipeline-server/DatasetNew/m4/m4-val.csv", + "test": "/data/jialinzhang/SynthesizePipeline-server/DatasetNew/m4/m4-test.csv" + } +} \ No newline at end of file diff --git a/hyperparameter/m4/tabpfgen/tabpfgen-m4-20260505_030045/public_gate/staged_input_manifest.json b/hyperparameter/m4/tabpfgen/tabpfgen-m4-20260505_030045/public_gate/staged_input_manifest.json new file mode 100644 index 0000000000000000000000000000000000000000..ad15ab5c6258eb896ecdab89ef92bfa625af5fcc --- /dev/null +++ b/hyperparameter/m4/tabpfgen/tabpfgen-m4-20260505_030045/public_gate/staged_input_manifest.json @@ -0,0 +1,152 @@ +{ + "dataset_id": "m4", + "target_column": "charges", + "task_type": "regression", + "train_csv": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/m4/tabpfgen/tabpfgen-m4-20260505_030045/staged/public/train.csv", + "val_csv": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/m4/tabpfgen/tabpfgen-m4-20260505_030045/staged/public/val.csv", + "test_csv": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/m4/tabpfgen/tabpfgen-m4-20260505_030045/staged/public/test.csv", + "features_json": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/m4/tabpfgen/tabpfgen-m4-20260505_030045/staged/public/staged_features.json", + "public_gate_report": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/m4/tabpfgen/tabpfgen-m4-20260505_030045/public_gate/public_gate_report.json", + "column_schema": [ + { + "name": "age", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 47, + "unique_ratio": 0.0212, + "example_values": [ + "46", + "38", + "19", + "27", + "26" + ] + } + }, + { + "name": "sex", + "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.000902, + "example_values": [ + "female", + "male" + ] + } + }, + { + "name": "bmi", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 538, + "unique_ratio": 0.24267, + "example_values": [ + "23.655", + "19.3", + "30.59", + "32.67", + "29.45" + ] + } + }, + { + "name": "children", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 6, + "unique_ratio": 0.002706, + "example_values": [ + "1", + "0", + "3", + "2", + "5" + ] + } + }, + { + "name": "smoker", + "role": "feature", + "semantic_type": "boolean", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 2, + "unique_ratio": 0.000902, + "example_values": [ + "yes", + "no" + ] + } + }, + { + "name": "region", + "role": "feature", + "semantic_type": "categorical", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 4, + "unique_ratio": 0.001804, + "example_values": [ + "northwest", + "southwest", + "southeast", + "northeast" + ] + } + }, + { + "name": "charges", + "role": "target", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 1281, + "unique_ratio": 0.577808, + "example_values": [ + "21677.28345", + "15820.699", + "1639.5631", + "2497.0383", + "2897.3235" + ] + } + } + ] +} \ No newline at end of file diff --git a/hyperparameter/m4/tabpfgen/tabpfgen-m4-20260505_030045/run_config.json b/hyperparameter/m4/tabpfgen/tabpfgen-m4-20260505_030045/run_config.json new file mode 100644 index 0000000000000000000000000000000000000000..a769fe528440321f223090e4286300236ab864f6 --- /dev/null +++ b/hyperparameter/m4/tabpfgen/tabpfgen-m4-20260505_030045/run_config.json @@ -0,0 +1,43 @@ +{ + "schema_version": 1, + "recorded_at": "2026-05-05T03:00:45", + "dataset_id": "m4", + "model": "tabpfgen", + "work_dir": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/m4/tabpfgen/tabpfgen-m4-20260505_030045", + "dataset_source_requested": "new", + "dataset_source_resolved": "new", + "cli_args": { + "model": "tabpfgen", + "dataset": "m4", + "dataset_source": "new", + "train": true, + "generate": true, + "num_rows": 0, + "epochs": null, + "output_dir": null, + "model_dir": null, + "work_dir": null, + "resume": false, + "no_stats": false + }, + "resolved": { + "num_rows": 2217, + "model_path": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/m4/tabpfgen/tabpfgen-m4-20260505_030045", + "output_csv": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/m4/tabpfgen/tabpfgen-m4-20260505_030045/tabpfgen-m4-2217-20260505_030045.csv" + }, + "input_artifacts": { + "public_gate_report": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/m4/tabpfgen/tabpfgen-m4-20260505_030045/public_gate/public_gate_report.json", + "public_manifest": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/m4/tabpfgen/tabpfgen-m4-20260505_030045/public_gate/staged_input_manifest.json", + "model_manifest": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/m4/tabpfgen/tabpfgen-m4-20260505_030045/staged/tabpfgen/model_input_manifest.json", + "train_csv": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/m4/tabpfgen/tabpfgen-m4-20260505_030045/staged/public/train.csv", + "features_json": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/m4/tabpfgen/tabpfgen-m4-20260505_030045/staged/public/staged_features.json", + "target_column": "charges", + "task_type": "regression" + }, + "env_overrides": { + "BENCHMARK_TABPFGEN_GPUS": "device=3", + "TABPFGEN_DEVICE": "cuda", + "TABPFGEN_FIT_MAX_ROWS": "512", + "TABPFGEN_GEN_CHUNK_ROWS": "64" + } +} \ No newline at end of file diff --git a/hyperparameter/m4/tabpfgen/tabpfgen-m4-20260505_030045/runtime_result.json b/hyperparameter/m4/tabpfgen/tabpfgen-m4-20260505_030045/runtime_result.json new file mode 100644 index 0000000000000000000000000000000000000000..35f3a9c173a282893b2aed2a544a619ae862b31f --- /dev/null +++ b/hyperparameter/m4/tabpfgen/tabpfgen-m4-20260505_030045/runtime_result.json @@ -0,0 +1,27 @@ +{ + "dataset_id": "m4", + "model": "tabpfgen", + "run_id": "tabpfgen-m4-20260505_030045", + "public_gate_status": "pass", + "adapter_ready_status": "pass", + "train_status": "success", + "generate_status": "success", + "reason_code": null, + "reason_detail": null, + "artifacts": { + "synthetic_csv": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/m4/tabpfgen/tabpfgen-m4-20260505_030045/tabpfgen-m4-2217-20260505_030045.csv", + "model_path": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/m4/tabpfgen/tabpfgen-m4-20260505_030045" + }, + "timings": { + "train": { + "started_at": "2026-05-05T03:00:45", + "ended_at": "2026-05-05T03:00:45", + "duration_sec": 0.006 + }, + "generate": { + "started_at": "2026-05-05T03:00:45", + "ended_at": "2026-05-05T03:02:12", + "duration_sec": 86.543 + } + } +} \ No newline at end of file diff --git a/hyperparameter/m4/tabpfgen/tabpfgen-m4-20260505_030045/staged/public/staged_features.json b/hyperparameter/m4/tabpfgen/tabpfgen-m4-20260505_030045/staged/public/staged_features.json new file mode 100644 index 0000000000000000000000000000000000000000..d6acd098c35111f423f3ffff2cfd1754bc5dfebc --- /dev/null +++ b/hyperparameter/m4/tabpfgen/tabpfgen-m4-20260505_030045/staged/public/staged_features.json @@ -0,0 +1,37 @@ +[ + { + "feature_name": "age", + "data_type": "continuous", + "is_target": false + }, + { + "feature_name": "sex", + "data_type": "categorical", + "is_target": false + }, + { + "feature_name": "bmi", + "data_type": "continuous", + "is_target": false + }, + { + "feature_name": "children", + "data_type": "continuous", + "is_target": false + }, + { + "feature_name": "smoker", + "data_type": "binary", + "is_target": false + }, + { + "feature_name": "region", + "data_type": "categorical", + "is_target": false + }, + { + "feature_name": "charges", + "data_type": "continuous", + "is_target": true + } +] \ No newline at end of file diff --git a/hyperparameter/m4/tabpfgen/tabpfgen-m4-20260505_030045/staged/public/test.csv b/hyperparameter/m4/tabpfgen/tabpfgen-m4-20260505_030045/staged/public/test.csv new file mode 100644 index 0000000000000000000000000000000000000000..c88a2e7cfcd715bb421cb56eb078033da45c4dc8 --- /dev/null +++ b/hyperparameter/m4/tabpfgen/tabpfgen-m4-20260505_030045/staged/public/test.csv @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:4c541b677fb2d45c5bc79338eeee9fd8c91484b195a0c2c546c2fbabf113b7ea +size 11298 diff --git a/hyperparameter/m4/tabpfgen/tabpfgen-m4-20260505_030045/staged/public/train.csv b/hyperparameter/m4/tabpfgen/tabpfgen-m4-20260505_030045/staged/public/train.csv new file mode 100644 index 0000000000000000000000000000000000000000..5a05019d786529e0617291766c4fbe016ca01bf5 --- /dev/null +++ b/hyperparameter/m4/tabpfgen/tabpfgen-m4-20260505_030045/staged/public/train.csv @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:614ebfac5f41d6f661aff675fa18c0f933a8d9bcc77ea71b7b2360c2f0155837 +size 90069 diff --git a/hyperparameter/m4/tabpfgen/tabpfgen-m4-20260505_030045/staged/public/val.csv b/hyperparameter/m4/tabpfgen/tabpfgen-m4-20260505_030045/staged/public/val.csv new file mode 100644 index 0000000000000000000000000000000000000000..d78fe5ad1537c437ba9ac2629f2aa60a6c17e708 --- /dev/null +++ b/hyperparameter/m4/tabpfgen/tabpfgen-m4-20260505_030045/staged/public/val.csv @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:e55f5edbe7942ff01630de91a9c70dfbc6445eba76c7b970350364546b67c2d7 +size 11218 diff --git a/hyperparameter/m4/tabpfgen/tabpfgen-m4-20260505_030045/staged/tabpfgen/adapter_report.json b/hyperparameter/m4/tabpfgen/tabpfgen-m4-20260505_030045/staged/tabpfgen/adapter_report.json new file mode 100644 index 0000000000000000000000000000000000000000..1ad1fca86764972a29bff5248b5f1a760b158459 --- /dev/null +++ b/hyperparameter/m4/tabpfgen/tabpfgen-m4-20260505_030045/staged/tabpfgen/adapter_report.json @@ -0,0 +1,7 @@ +{ + "adapter_ready_status": "pass", + "adapter_fail_reason_code": null, + "adapter_fail_detail": null, + "adapter_transforms_applied": [], + "model_input_manifest": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/m4/tabpfgen/tabpfgen-m4-20260505_030045/staged/tabpfgen/model_input_manifest.json" +} \ No newline at end of file diff --git a/hyperparameter/m4/tabpfgen/tabpfgen-m4-20260505_030045/staged/tabpfgen/adapter_transforms_applied.json b/hyperparameter/m4/tabpfgen/tabpfgen-m4-20260505_030045/staged/tabpfgen/adapter_transforms_applied.json new file mode 100644 index 0000000000000000000000000000000000000000..0637a088a01e8ddab3bf3fa98dbe804cbde1a0dc --- /dev/null +++ b/hyperparameter/m4/tabpfgen/tabpfgen-m4-20260505_030045/staged/tabpfgen/adapter_transforms_applied.json @@ -0,0 +1 @@ +[] \ No newline at end of file diff --git a/hyperparameter/m4/tabpfgen/tabpfgen-m4-20260505_030045/staged/tabpfgen/model_input_manifest.json b/hyperparameter/m4/tabpfgen/tabpfgen-m4-20260505_030045/staged/tabpfgen/model_input_manifest.json new file mode 100644 index 0000000000000000000000000000000000000000..7823902e750e1cd4e7d76fb812a6e47dc0d2191d --- /dev/null +++ b/hyperparameter/m4/tabpfgen/tabpfgen-m4-20260505_030045/staged/tabpfgen/model_input_manifest.json @@ -0,0 +1,154 @@ +{ + "dataset_id": "m4", + "model": "tabpfgen", + "target_column": "charges", + "task_type": "regression", + "column_schema": [ + { + "name": "age", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 47, + "unique_ratio": 0.0212, + "example_values": [ + "46", + "38", + "19", + "27", + "26" + ] + } + }, + { + "name": "sex", + "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.000902, + "example_values": [ + "female", + "male" + ] + } + }, + { + "name": "bmi", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 538, + "unique_ratio": 0.24267, + "example_values": [ + "23.655", + "19.3", + "30.59", + "32.67", + "29.45" + ] + } + }, + { + "name": "children", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 6, + "unique_ratio": 0.002706, + "example_values": [ + "1", + "0", + "3", + "2", + "5" + ] + } + }, + { + "name": "smoker", + "role": "feature", + "semantic_type": "boolean", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 2, + "unique_ratio": 0.000902, + "example_values": [ + "yes", + "no" + ] + } + }, + { + "name": "region", + "role": "feature", + "semantic_type": "categorical", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 4, + "unique_ratio": 0.001804, + "example_values": [ + "northwest", + "southwest", + "southeast", + "northeast" + ] + } + }, + { + "name": "charges", + "role": "target", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 1281, + "unique_ratio": 0.577808, + "example_values": [ + "21677.28345", + "15820.699", + "1639.5631", + "2497.0383", + "2897.3235" + ] + } + } + ], + "public_manifest": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/m4/tabpfgen/tabpfgen-m4-20260505_030045/public_gate/staged_input_manifest.json", + "train_csv": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/m4/tabpfgen/tabpfgen-m4-20260505_030045/staged/public/train.csv", + "val_csv": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/m4/tabpfgen/tabpfgen-m4-20260505_030045/staged/public/val.csv", + "test_csv": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/m4/tabpfgen/tabpfgen-m4-20260505_030045/staged/public/test.csv", + "features_json": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/m4/tabpfgen/tabpfgen-m4-20260505_030045/staged/public/staged_features.json", + "public_gate_report": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/m4/tabpfgen/tabpfgen-m4-20260505_030045/public_gate/public_gate_report.json" +} \ No newline at end of file diff --git a/hyperparameter/m4/tabpfgen/tabpfgen-m4-20260505_030045/tabpfgen-m4-2217-20260505_030045.csv b/hyperparameter/m4/tabpfgen/tabpfgen-m4-20260505_030045/tabpfgen-m4-2217-20260505_030045.csv new file mode 100644 index 0000000000000000000000000000000000000000..8a84cbca0d525984eab670a0d4dfb4937a09056e --- /dev/null +++ b/hyperparameter/m4/tabpfgen/tabpfgen-m4-20260505_030045/tabpfgen-m4-2217-20260505_030045.csv @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:06ee24856ee7900cbc066749783deffbad62040b9ee4c5e3e6a5bb67b2ecbc0e +size 151356 diff --git a/hyperparameter/m4/tabpfgen/tabpfgen-m4-20260505_030045/tabpfgen_meta.json b/hyperparameter/m4/tabpfgen/tabpfgen-m4-20260505_030045/tabpfgen_meta.json new file mode 100644 index 0000000000000000000000000000000000000000..28087051be0aa25f61613f4d3a0037395b12ac84 --- /dev/null +++ b/hyperparameter/m4/tabpfgen/tabpfgen-m4-20260505_030045/tabpfgen_meta.json @@ -0,0 +1,9 @@ +{ + "csv_path": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/m4/tabpfgen/tabpfgen-m4-20260505_030045/staged/public/train.csv", + "json_path": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/m4/tabpfgen/tabpfgen-m4-20260505_030045/staged/public/staged_features.json", + "target_col": "charges", + "is_classification": false, + "task_type": "regression", + "n_rows": 2217, + "n_cols": 7 +} \ No newline at end of file diff --git a/hyperparameter/m4/tabpfgen/tabpfgen-m4-20260505_030045/train_20260505_030045.log b/hyperparameter/m4/tabpfgen/tabpfgen-m4-20260505_030045/train_20260505_030045.log new file mode 100644 index 0000000000000000000000000000000000000000..3f12688f516f759bd8b6584e3c114ea9e59febd9 --- /dev/null +++ b/hyperparameter/m4/tabpfgen/tabpfgen-m4-20260505_030045/train_20260505_030045.log @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:1ed6d0531de8f1146b0eb8ed6451f9bca5bb00c00712f7dae30e0d0d9800b118 +size 595 diff --git a/hyperparameter/m4/tabpfgen/tabpfgen-m4-20260505_030225/_tabpfgen_generate.py b/hyperparameter/m4/tabpfgen/tabpfgen-m4-20260505_030225/_tabpfgen_generate.py new file mode 100644 index 0000000000000000000000000000000000000000..3d2a00c619697d6910fb41674f66d7552108840c --- /dev/null +++ b/hyperparameter/m4/tabpfgen/tabpfgen-m4-20260505_030225/_tabpfgen_generate.py @@ -0,0 +1,122 @@ +import os +import numpy as np +import pandas as pd +import json +from tabpfgen import TabPFGen + +df = pd.read_csv("/work/output-Benchmark-trainonly-v1/m4/tabpfgen/tabpfgen-m4-20260505_030225/staged/public/train.csv") +target_col = "charges" + +target_missing = df[target_col].isna() +if target_missing.any(): + dropped = int(target_missing.sum()) + df = df.loc[~target_missing].copy() + print( + f"[TabPFGen] Dropped {dropped} rows with missing target '{target_col}'" + ) +if df.empty: + raise ValueError( + f"[TabPFGen] No rows remain after dropping missing target '{target_col}'" + ) + +feature_cols = [c for c in df.columns if c != target_col] + +cat_encodings = {} +for col in feature_cols: + if df[col].dtype == object or str(df[col].dtype) == 'category': + cats = sorted(df[col].dropna().unique().tolist(), key=str) + cat_map = {v: i for i, v in enumerate(cats)} + df[col] = df[col].map(cat_map).astype(float) + cat_encodings[col] = cats + print(f"[TabPFGen] Label-encoded '{col}' ({len(cats)} categories)") + +target_cats = None +if df[target_col].dtype == object or str(df[target_col].dtype) == 'category': + cats = sorted(df[target_col].dropna().unique().tolist(), key=str) + t_map = {v: i for i, v in enumerate(cats)} + df[target_col] = df[target_col].map(t_map).astype(float) + target_cats = cats + print(f"[TabPFGen] Label-encoded target '{target_col}' ({len(cats)} categories)") + +X = df[feature_cols].values.astype(np.float32) +y = df[target_col].values +fit_rows_cap = max(1, int(os.environ.get("TABPFGEN_FIT_MAX_ROWS", "50000"))) +if len(X) > fit_rows_cap: + rng = np.random.default_rng(42) + idx = np.sort(rng.choice(len(X), size=fit_rows_cap, replace=False)) + X = X[idx] + y = y[idx] + print(f"[TabPFGen] Downsampled fit rows -> {len(X)} (cap={fit_rows_cap})") +target_n = int(2217) + +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 + +chunk_rows = max(1, int(os.environ.get("TABPFGEN_GEN_CHUNK_ROWS", "256"))) +device = (os.environ.get("TABPFGEN_DEVICE") or "auto").strip() or "auto" + +# TabPFGen v0.1.x API:仅支持 n_sgld_steps / sgld_* / device。 +# (旧版脚本中的 energy_*_chunk 与上游 TabPFGen 不一致,会导致 TypeError。) +gen = TabPFGen( + n_sgld_steps=1000, + sgld_step_size=0.01, + sgld_noise_scale=0.01, + device=device, +) + +print(f"[TabPFGen] Generating {target_n} rows via generate_regression (chunk_rows={chunk_rows}, device={device})") +x_parts = [] +y_parts = [] +remaining = target_n +while remaining > 0: + take = min(chunk_rows, remaining) + X_part, y_part = gen.generate_regression(X, y, n_samples=take) + x_parts.append(np.asarray(X_part)) + y_parts.append(np.asarray(y_part)) + remaining -= take + print(f"[TabPFGen] chunk done: take={take}, remaining={remaining}") + +X_syn = np.concatenate(x_parts, axis=0) +y_syn = np.concatenate(y_parts, axis=0) + +syn_df = pd.DataFrame(X_syn, columns=feature_cols) +syn_df[target_col] = y_syn + +for col, cats in cat_encodings.items(): + codes = np.round(syn_df[col].values).astype(int) + codes = np.clip(codes, 0, len(cats) - 1) + syn_df[col] = [cats[c] for c in codes] + +if target_cats is not None: + codes = np.round(syn_df[target_col].values).astype(int) + codes = np.clip(codes, 0, len(target_cats) - 1) + syn_df[target_col] = [target_cats[c] for c in codes] + +if len(syn_df) > target_n: + print(f"[TabPFGen] Trimming rows: {len(syn_df)} -> {target_n}") + syn_df = syn_df.iloc[:target_n].copy() +elif len(syn_df) < target_n: + deficit = target_n - len(syn_df) + print(f"[TabPFGen] Padding rows: {len(syn_df)} -> {target_n} (deficit={deficit})") + if len(syn_df) > 0: + extra = syn_df.sample(n=deficit, replace=True, random_state=42) + syn_df = pd.concat( + [syn_df.reset_index(drop=True), extra.reset_index(drop=True)], + ignore_index=True, + ) + else: + syn_df = df[feature_cols + [target_col]].sample( + n=target_n, replace=True, random_state=42 + ).reset_index(drop=True) + +syn_df = syn_df[list(df.columns)] +if len(syn_df) != target_n: + raise RuntimeError( + f"[TabPFGen] Row alignment failed: got {len(syn_df)}, expected {target_n}" + ) +syn_df.to_csv("/work/output-Benchmark-trainonly-v1/m4/tabpfgen/tabpfgen-m4-20260505_030225/tabpfgen-m4-2217-20260505_030225.csv", index=False) +print(f"[TabPFGen] Saved {len(syn_df)} rows -> /work/output-Benchmark-trainonly-v1/m4/tabpfgen/tabpfgen-m4-20260505_030225/tabpfgen-m4-2217-20260505_030225.csv") diff --git a/hyperparameter/m4/tabpfgen/tabpfgen-m4-20260505_030225/gen_20260505_030225.log b/hyperparameter/m4/tabpfgen/tabpfgen-m4-20260505_030225/gen_20260505_030225.log new file mode 100644 index 0000000000000000000000000000000000000000..0e5c7ca54079b38f3c50b055f614a8950b22c598 --- /dev/null +++ b/hyperparameter/m4/tabpfgen/tabpfgen-m4-20260505_030225/gen_20260505_030225.log @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:b6580001583c1c0704b41554e91bc208af2e855556277b6d5542f51d26cd20c2 +size 7438 diff --git a/hyperparameter/m4/tabpfgen/tabpfgen-m4-20260505_030225/input_snapshot.json b/hyperparameter/m4/tabpfgen/tabpfgen-m4-20260505_030225/input_snapshot.json new file mode 100644 index 0000000000000000000000000000000000000000..0e4ec9d0bc32394ab638c94bcf784b81478f2f39 --- /dev/null +++ b/hyperparameter/m4/tabpfgen/tabpfgen-m4-20260505_030225/input_snapshot.json @@ -0,0 +1,36 @@ +{ + "dataset_id": "m4", + "model": "tabpfgen", + "inputs": { + "train_csv": { + "path": "/data/jialinzhang/SynthesizePipeline-server/DatasetNew/m4/m4-train.csv", + "exists": true, + "size": 92191, + "sha256": "396b9d409ca21bf4a4cd329bdf5b7796aa0ae6356fa8d89b8eb669b5880b81f1" + }, + "val_csv": { + "path": "/data/jialinzhang/SynthesizePipeline-server/DatasetNew/m4/m4-val.csv", + "exists": true, + "size": 11482, + "sha256": "ee3c247d02f56e1687d03c381e13125d6a3a2a411ac7f202ba8520a4be9f1784" + }, + "test_csv": { + "path": "/data/jialinzhang/SynthesizePipeline-server/DatasetNew/m4/m4-test.csv", + "exists": true, + "size": 11559, + "sha256": "cadb9941124001b8fa7cb1ebae43b70a9ca56294f4df4d3c2f22c164c41757d4" + }, + "profile_json": { + "path": "/data/jialinzhang/SynthesizePipeline-server/DatasetNew/artifacts/data_core/tabular/m4/m4-dataset_profile.json", + "exists": true, + "size": 3336, + "sha256": "83e2764810e4a0e8cdece3a28dbd9134b7c9df6f2e56953e46d024ad2c4e035f" + }, + "contract_json": { + "path": "/data/jialinzhang/SynthesizePipeline-server/DatasetNew/artifacts/data_core/tabular/m4/m4-dataset_contract_v1.json", + "exists": true, + "size": 3810, + "sha256": "c23641b258629a845b164099bd0132886f8f6d0100e990494e0f92540f8987d9" + } + } +} \ No newline at end of file diff --git a/hyperparameter/m4/tabpfgen/tabpfgen-m4-20260505_030225/public_gate/normalized_schema_snapshot.json b/hyperparameter/m4/tabpfgen/tabpfgen-m4-20260505_030225/public_gate/normalized_schema_snapshot.json new file mode 100644 index 0000000000000000000000000000000000000000..31ed9818686b11907df75e872e4ffbe010330880 --- /dev/null +++ b/hyperparameter/m4/tabpfgen/tabpfgen-m4-20260505_030225/public_gate/normalized_schema_snapshot.json @@ -0,0 +1,147 @@ +{ + "dataset_id": "m4", + "target_column": "charges", + "task_type": "regression", + "columns": [ + { + "name": "age", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 47, + "unique_ratio": 0.0212, + "example_values": [ + "46", + "38", + "19", + "27", + "26" + ] + } + }, + { + "name": "sex", + "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.000902, + "example_values": [ + "female", + "male" + ] + } + }, + { + "name": "bmi", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 538, + "unique_ratio": 0.24267, + "example_values": [ + "23.655", + "19.3", + "30.59", + "32.67", + "29.45" + ] + } + }, + { + "name": "children", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 6, + "unique_ratio": 0.002706, + "example_values": [ + "1", + "0", + "3", + "2", + "5" + ] + } + }, + { + "name": "smoker", + "role": "feature", + "semantic_type": "boolean", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 2, + "unique_ratio": 0.000902, + "example_values": [ + "yes", + "no" + ] + } + }, + { + "name": "region", + "role": "feature", + "semantic_type": "categorical", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 4, + "unique_ratio": 0.001804, + "example_values": [ + "northwest", + "southwest", + "southeast", + "northeast" + ] + } + }, + { + "name": "charges", + "role": "target", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 1281, + "unique_ratio": 0.577808, + "example_values": [ + "21677.28345", + "15820.699", + "1639.5631", + "2497.0383", + "2897.3235" + ] + } + } + ] +} \ No newline at end of file diff --git a/hyperparameter/m4/tabpfgen/tabpfgen-m4-20260505_030225/public_gate/public_gate_report.json b/hyperparameter/m4/tabpfgen/tabpfgen-m4-20260505_030225/public_gate/public_gate_report.json new file mode 100644 index 0000000000000000000000000000000000000000..e7a25408e2574124629ea9437356551e4d6f4790 --- /dev/null +++ b/hyperparameter/m4/tabpfgen/tabpfgen-m4-20260505_030225/public_gate/public_gate_report.json @@ -0,0 +1,37 @@ +{ + "dataset_id": "m4", + "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": "charges", + "task_type": "regression", + "input_splits": { + "train": "/data/jialinzhang/SynthesizePipeline-server/DatasetNew/m4/m4-train.csv", + "val": "/data/jialinzhang/SynthesizePipeline-server/DatasetNew/m4/m4-val.csv", + "test": "/data/jialinzhang/SynthesizePipeline-server/DatasetNew/m4/m4-test.csv" + } +} \ No newline at end of file diff --git a/hyperparameter/m4/tabpfgen/tabpfgen-m4-20260505_030225/public_gate/staged_input_manifest.json b/hyperparameter/m4/tabpfgen/tabpfgen-m4-20260505_030225/public_gate/staged_input_manifest.json new file mode 100644 index 0000000000000000000000000000000000000000..e867cdb813df7ce34ab7084a15c90504e2110c9a --- /dev/null +++ b/hyperparameter/m4/tabpfgen/tabpfgen-m4-20260505_030225/public_gate/staged_input_manifest.json @@ -0,0 +1,152 @@ +{ + "dataset_id": "m4", + "target_column": "charges", + "task_type": "regression", + "train_csv": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/m4/tabpfgen/tabpfgen-m4-20260505_030225/staged/public/train.csv", + "val_csv": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/m4/tabpfgen/tabpfgen-m4-20260505_030225/staged/public/val.csv", + "test_csv": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/m4/tabpfgen/tabpfgen-m4-20260505_030225/staged/public/test.csv", + "features_json": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/m4/tabpfgen/tabpfgen-m4-20260505_030225/staged/public/staged_features.json", + "public_gate_report": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/m4/tabpfgen/tabpfgen-m4-20260505_030225/public_gate/public_gate_report.json", + "column_schema": [ + { + "name": "age", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 47, + "unique_ratio": 0.0212, + "example_values": [ + "46", + "38", + "19", + "27", + "26" + ] + } + }, + { + "name": "sex", + "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.000902, + "example_values": [ + "female", + "male" + ] + } + }, + { + "name": "bmi", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 538, + "unique_ratio": 0.24267, + "example_values": [ + "23.655", + "19.3", + "30.59", + "32.67", + "29.45" + ] + } + }, + { + "name": "children", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 6, + "unique_ratio": 0.002706, + "example_values": [ + "1", + "0", + "3", + "2", + "5" + ] + } + }, + { + "name": "smoker", + "role": "feature", + "semantic_type": "boolean", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 2, + "unique_ratio": 0.000902, + "example_values": [ + "yes", + "no" + ] + } + }, + { + "name": "region", + "role": "feature", + "semantic_type": "categorical", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 4, + "unique_ratio": 0.001804, + "example_values": [ + "northwest", + "southwest", + "southeast", + "northeast" + ] + } + }, + { + "name": "charges", + "role": "target", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 1281, + "unique_ratio": 0.577808, + "example_values": [ + "21677.28345", + "15820.699", + "1639.5631", + "2497.0383", + "2897.3235" + ] + } + } + ] +} \ No newline at end of file diff --git a/hyperparameter/m4/tabpfgen/tabpfgen-m4-20260505_030225/run_config.json b/hyperparameter/m4/tabpfgen/tabpfgen-m4-20260505_030225/run_config.json new file mode 100644 index 0000000000000000000000000000000000000000..f44f7a87252cce199b1a35f15f963ecf38844217 --- /dev/null +++ b/hyperparameter/m4/tabpfgen/tabpfgen-m4-20260505_030225/run_config.json @@ -0,0 +1,43 @@ +{ + "schema_version": 1, + "recorded_at": "2026-05-05T03:02:25", + "dataset_id": "m4", + "model": "tabpfgen", + "work_dir": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/m4/tabpfgen/tabpfgen-m4-20260505_030225", + "dataset_source_requested": "new", + "dataset_source_resolved": "new", + "cli_args": { + "model": "tabpfgen", + "dataset": "m4", + "dataset_source": "new", + "train": true, + "generate": true, + "num_rows": 0, + "epochs": null, + "output_dir": null, + "model_dir": null, + "work_dir": null, + "resume": false, + "no_stats": false + }, + "resolved": { + "num_rows": 2217, + "model_path": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/m4/tabpfgen/tabpfgen-m4-20260505_030225", + "output_csv": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/m4/tabpfgen/tabpfgen-m4-20260505_030225/tabpfgen-m4-2217-20260505_030225.csv" + }, + "input_artifacts": { + "public_gate_report": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/m4/tabpfgen/tabpfgen-m4-20260505_030225/public_gate/public_gate_report.json", + "public_manifest": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/m4/tabpfgen/tabpfgen-m4-20260505_030225/public_gate/staged_input_manifest.json", + "model_manifest": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/m4/tabpfgen/tabpfgen-m4-20260505_030225/staged/tabpfgen/model_input_manifest.json", + "train_csv": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/m4/tabpfgen/tabpfgen-m4-20260505_030225/staged/public/train.csv", + "features_json": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/m4/tabpfgen/tabpfgen-m4-20260505_030225/staged/public/staged_features.json", + "target_column": "charges", + "task_type": "regression" + }, + "env_overrides": { + "BENCHMARK_TABPFGEN_GPUS": "device=3", + "TABPFGEN_DEVICE": "cuda", + "TABPFGEN_FIT_MAX_ROWS": "1024", + "TABPFGEN_GEN_CHUNK_ROWS": "64" + } +} \ No newline at end of file diff --git a/hyperparameter/m4/tabpfgen/tabpfgen-m4-20260505_030225/runtime_result.json b/hyperparameter/m4/tabpfgen/tabpfgen-m4-20260505_030225/runtime_result.json new file mode 100644 index 0000000000000000000000000000000000000000..4b2340e7b27831795726f0d2a291cc990f27d72d --- /dev/null +++ b/hyperparameter/m4/tabpfgen/tabpfgen-m4-20260505_030225/runtime_result.json @@ -0,0 +1,27 @@ +{ + "dataset_id": "m4", + "model": "tabpfgen", + "run_id": "tabpfgen-m4-20260505_030225", + "public_gate_status": "pass", + "adapter_ready_status": "pass", + "train_status": "success", + "generate_status": "success", + "reason_code": null, + "reason_detail": null, + "artifacts": { + "synthetic_csv": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/m4/tabpfgen/tabpfgen-m4-20260505_030225/tabpfgen-m4-2217-20260505_030225.csv", + "model_path": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/m4/tabpfgen/tabpfgen-m4-20260505_030225" + }, + "timings": { + "train": { + "started_at": "2026-05-05T03:02:25", + "ended_at": "2026-05-05T03:02:25", + "duration_sec": 0.007 + }, + "generate": { + "started_at": "2026-05-05T03:02:25", + "ended_at": "2026-05-05T03:03:50", + "duration_sec": 84.974 + } + } +} \ No newline at end of file diff --git a/hyperparameter/m4/tabpfgen/tabpfgen-m4-20260505_030225/staged/public/staged_features.json b/hyperparameter/m4/tabpfgen/tabpfgen-m4-20260505_030225/staged/public/staged_features.json new file mode 100644 index 0000000000000000000000000000000000000000..d6acd098c35111f423f3ffff2cfd1754bc5dfebc --- /dev/null +++ b/hyperparameter/m4/tabpfgen/tabpfgen-m4-20260505_030225/staged/public/staged_features.json @@ -0,0 +1,37 @@ +[ + { + "feature_name": "age", + "data_type": "continuous", + "is_target": false + }, + { + "feature_name": "sex", + "data_type": "categorical", + "is_target": false + }, + { + "feature_name": "bmi", + "data_type": "continuous", + "is_target": false + }, + { + "feature_name": "children", + "data_type": "continuous", + "is_target": false + }, + { + "feature_name": "smoker", + "data_type": "binary", + "is_target": false + }, + { + "feature_name": "region", + "data_type": "categorical", + "is_target": false + }, + { + "feature_name": "charges", + "data_type": "continuous", + "is_target": true + } +] \ No newline at end of file diff --git a/hyperparameter/m4/tabpfgen/tabpfgen-m4-20260505_030225/staged/public/test.csv b/hyperparameter/m4/tabpfgen/tabpfgen-m4-20260505_030225/staged/public/test.csv new file mode 100644 index 0000000000000000000000000000000000000000..c88a2e7cfcd715bb421cb56eb078033da45c4dc8 --- /dev/null +++ b/hyperparameter/m4/tabpfgen/tabpfgen-m4-20260505_030225/staged/public/test.csv @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:4c541b677fb2d45c5bc79338eeee9fd8c91484b195a0c2c546c2fbabf113b7ea +size 11298 diff --git a/hyperparameter/m4/tabpfgen/tabpfgen-m4-20260505_030225/staged/public/train.csv b/hyperparameter/m4/tabpfgen/tabpfgen-m4-20260505_030225/staged/public/train.csv new file mode 100644 index 0000000000000000000000000000000000000000..5a05019d786529e0617291766c4fbe016ca01bf5 --- /dev/null +++ b/hyperparameter/m4/tabpfgen/tabpfgen-m4-20260505_030225/staged/public/train.csv @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:614ebfac5f41d6f661aff675fa18c0f933a8d9bcc77ea71b7b2360c2f0155837 +size 90069 diff --git a/hyperparameter/m4/tabpfgen/tabpfgen-m4-20260505_030225/staged/public/val.csv b/hyperparameter/m4/tabpfgen/tabpfgen-m4-20260505_030225/staged/public/val.csv new file mode 100644 index 0000000000000000000000000000000000000000..d78fe5ad1537c437ba9ac2629f2aa60a6c17e708 --- /dev/null +++ b/hyperparameter/m4/tabpfgen/tabpfgen-m4-20260505_030225/staged/public/val.csv @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:e55f5edbe7942ff01630de91a9c70dfbc6445eba76c7b970350364546b67c2d7 +size 11218 diff --git a/hyperparameter/m4/tabpfgen/tabpfgen-m4-20260505_030225/staged/tabpfgen/adapter_report.json b/hyperparameter/m4/tabpfgen/tabpfgen-m4-20260505_030225/staged/tabpfgen/adapter_report.json new file mode 100644 index 0000000000000000000000000000000000000000..7cd49cd028aaf3d4aa50bb6c4ba2f1b23e5a7f32 --- /dev/null +++ b/hyperparameter/m4/tabpfgen/tabpfgen-m4-20260505_030225/staged/tabpfgen/adapter_report.json @@ -0,0 +1,7 @@ +{ + "adapter_ready_status": "pass", + "adapter_fail_reason_code": null, + "adapter_fail_detail": null, + "adapter_transforms_applied": [], + "model_input_manifest": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/m4/tabpfgen/tabpfgen-m4-20260505_030225/staged/tabpfgen/model_input_manifest.json" +} \ No newline at end of file diff --git a/hyperparameter/m4/tabpfgen/tabpfgen-m4-20260505_030225/staged/tabpfgen/adapter_transforms_applied.json b/hyperparameter/m4/tabpfgen/tabpfgen-m4-20260505_030225/staged/tabpfgen/adapter_transforms_applied.json new file mode 100644 index 0000000000000000000000000000000000000000..0637a088a01e8ddab3bf3fa98dbe804cbde1a0dc --- /dev/null +++ b/hyperparameter/m4/tabpfgen/tabpfgen-m4-20260505_030225/staged/tabpfgen/adapter_transforms_applied.json @@ -0,0 +1 @@ +[] \ No newline at end of file diff --git a/hyperparameter/m4/tabpfgen/tabpfgen-m4-20260505_030225/staged/tabpfgen/model_input_manifest.json b/hyperparameter/m4/tabpfgen/tabpfgen-m4-20260505_030225/staged/tabpfgen/model_input_manifest.json new file mode 100644 index 0000000000000000000000000000000000000000..678bdb21ddbbab0f3f01c714b57aee828f490878 --- /dev/null +++ b/hyperparameter/m4/tabpfgen/tabpfgen-m4-20260505_030225/staged/tabpfgen/model_input_manifest.json @@ -0,0 +1,154 @@ +{ + "dataset_id": "m4", + "model": "tabpfgen", + "target_column": "charges", + "task_type": "regression", + "column_schema": [ + { + "name": "age", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 47, + "unique_ratio": 0.0212, + "example_values": [ + "46", + "38", + "19", + "27", + "26" + ] + } + }, + { + "name": "sex", + "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.000902, + "example_values": [ + "female", + "male" + ] + } + }, + { + "name": "bmi", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 538, + "unique_ratio": 0.24267, + "example_values": [ + "23.655", + "19.3", + "30.59", + "32.67", + "29.45" + ] + } + }, + { + "name": "children", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 6, + "unique_ratio": 0.002706, + "example_values": [ + "1", + "0", + "3", + "2", + "5" + ] + } + }, + { + "name": "smoker", + "role": "feature", + "semantic_type": "boolean", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 2, + "unique_ratio": 0.000902, + "example_values": [ + "yes", + "no" + ] + } + }, + { + "name": "region", + "role": "feature", + "semantic_type": "categorical", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 4, + "unique_ratio": 0.001804, + "example_values": [ + "northwest", + "southwest", + "southeast", + "northeast" + ] + } + }, + { + "name": "charges", + "role": "target", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 1281, + "unique_ratio": 0.577808, + "example_values": [ + "21677.28345", + "15820.699", + "1639.5631", + "2497.0383", + "2897.3235" + ] + } + } + ], + "public_manifest": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/m4/tabpfgen/tabpfgen-m4-20260505_030225/public_gate/staged_input_manifest.json", + "train_csv": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/m4/tabpfgen/tabpfgen-m4-20260505_030225/staged/public/train.csv", + "val_csv": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/m4/tabpfgen/tabpfgen-m4-20260505_030225/staged/public/val.csv", + "test_csv": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/m4/tabpfgen/tabpfgen-m4-20260505_030225/staged/public/test.csv", + "features_json": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/m4/tabpfgen/tabpfgen-m4-20260505_030225/staged/public/staged_features.json", + "public_gate_report": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/m4/tabpfgen/tabpfgen-m4-20260505_030225/public_gate/public_gate_report.json" +} \ No newline at end of file diff --git a/hyperparameter/m4/tabpfgen/tabpfgen-m4-20260505_030225/tabpfgen-m4-2217-20260505_030225.csv b/hyperparameter/m4/tabpfgen/tabpfgen-m4-20260505_030225/tabpfgen-m4-2217-20260505_030225.csv new file mode 100644 index 0000000000000000000000000000000000000000..27169a4266fa8c6d9971afc15c4a9f6f100c1b5b --- /dev/null +++ b/hyperparameter/m4/tabpfgen/tabpfgen-m4-20260505_030225/tabpfgen-m4-2217-20260505_030225.csv @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:b4c0c13ac1cbf18b17e0667a942c83ea71fde2c166ef1e918bb89ba0fd4ce2df +size 151485 diff --git a/hyperparameter/m4/tabpfgen/tabpfgen-m4-20260505_030225/tabpfgen_meta.json b/hyperparameter/m4/tabpfgen/tabpfgen-m4-20260505_030225/tabpfgen_meta.json new file mode 100644 index 0000000000000000000000000000000000000000..9fa876bf63685ed749c8891959f3b88373ae02ee --- /dev/null +++ b/hyperparameter/m4/tabpfgen/tabpfgen-m4-20260505_030225/tabpfgen_meta.json @@ -0,0 +1,9 @@ +{ + "csv_path": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/m4/tabpfgen/tabpfgen-m4-20260505_030225/staged/public/train.csv", + "json_path": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/m4/tabpfgen/tabpfgen-m4-20260505_030225/staged/public/staged_features.json", + "target_col": "charges", + "is_classification": false, + "task_type": "regression", + "n_rows": 2217, + "n_cols": 7 +} \ No newline at end of file diff --git a/hyperparameter/m4/tabpfgen/tabpfgen-m4-20260505_030225/train_20260505_030225.log b/hyperparameter/m4/tabpfgen/tabpfgen-m4-20260505_030225/train_20260505_030225.log new file mode 100644 index 0000000000000000000000000000000000000000..c7e45383d6da258cf12355c175b327638c1418eb --- /dev/null +++ b/hyperparameter/m4/tabpfgen/tabpfgen-m4-20260505_030225/train_20260505_030225.log @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:e0e080b1b30975dc81ec4667ba1a26d54aa1e5166e8667083ad70b642286aad4 +size 595 diff --git a/hyperparameter/m4/tabpfgen/tabpfgen-m4-20260505_030403/_tabpfgen_generate.py b/hyperparameter/m4/tabpfgen/tabpfgen-m4-20260505_030403/_tabpfgen_generate.py new file mode 100644 index 0000000000000000000000000000000000000000..ce27a9003d44421bc4724f5c380b2fe3fe5fa51f --- /dev/null +++ b/hyperparameter/m4/tabpfgen/tabpfgen-m4-20260505_030403/_tabpfgen_generate.py @@ -0,0 +1,122 @@ +import os +import numpy as np +import pandas as pd +import json +from tabpfgen import TabPFGen + +df = pd.read_csv("/work/output-Benchmark-trainonly-v1/m4/tabpfgen/tabpfgen-m4-20260505_030403/staged/public/train.csv") +target_col = "charges" + +target_missing = df[target_col].isna() +if target_missing.any(): + dropped = int(target_missing.sum()) + df = df.loc[~target_missing].copy() + print( + f"[TabPFGen] Dropped {dropped} rows with missing target '{target_col}'" + ) +if df.empty: + raise ValueError( + f"[TabPFGen] No rows remain after dropping missing target '{target_col}'" + ) + +feature_cols = [c for c in df.columns if c != target_col] + +cat_encodings = {} +for col in feature_cols: + if df[col].dtype == object or str(df[col].dtype) == 'category': + cats = sorted(df[col].dropna().unique().tolist(), key=str) + cat_map = {v: i for i, v in enumerate(cats)} + df[col] = df[col].map(cat_map).astype(float) + cat_encodings[col] = cats + print(f"[TabPFGen] Label-encoded '{col}' ({len(cats)} categories)") + +target_cats = None +if df[target_col].dtype == object or str(df[target_col].dtype) == 'category': + cats = sorted(df[target_col].dropna().unique().tolist(), key=str) + t_map = {v: i for i, v in enumerate(cats)} + df[target_col] = df[target_col].map(t_map).astype(float) + target_cats = cats + print(f"[TabPFGen] Label-encoded target '{target_col}' ({len(cats)} categories)") + +X = df[feature_cols].values.astype(np.float32) +y = df[target_col].values +fit_rows_cap = max(1, int(os.environ.get("TABPFGEN_FIT_MAX_ROWS", "50000"))) +if len(X) > fit_rows_cap: + rng = np.random.default_rng(42) + idx = np.sort(rng.choice(len(X), size=fit_rows_cap, replace=False)) + X = X[idx] + y = y[idx] + print(f"[TabPFGen] Downsampled fit rows -> {len(X)} (cap={fit_rows_cap})") +target_n = int(2217) + +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 + +chunk_rows = max(1, int(os.environ.get("TABPFGEN_GEN_CHUNK_ROWS", "256"))) +device = (os.environ.get("TABPFGEN_DEVICE") or "auto").strip() or "auto" + +# TabPFGen v0.1.x API:仅支持 n_sgld_steps / sgld_* / device。 +# (旧版脚本中的 energy_*_chunk 与上游 TabPFGen 不一致,会导致 TypeError。) +gen = TabPFGen( + n_sgld_steps=1000, + sgld_step_size=0.01, + sgld_noise_scale=0.01, + device=device, +) + +print(f"[TabPFGen] Generating {target_n} rows via generate_regression (chunk_rows={chunk_rows}, device={device})") +x_parts = [] +y_parts = [] +remaining = target_n +while remaining > 0: + take = min(chunk_rows, remaining) + X_part, y_part = gen.generate_regression(X, y, n_samples=take) + x_parts.append(np.asarray(X_part)) + y_parts.append(np.asarray(y_part)) + remaining -= take + print(f"[TabPFGen] chunk done: take={take}, remaining={remaining}") + +X_syn = np.concatenate(x_parts, axis=0) +y_syn = np.concatenate(y_parts, axis=0) + +syn_df = pd.DataFrame(X_syn, columns=feature_cols) +syn_df[target_col] = y_syn + +for col, cats in cat_encodings.items(): + codes = np.round(syn_df[col].values).astype(int) + codes = np.clip(codes, 0, len(cats) - 1) + syn_df[col] = [cats[c] for c in codes] + +if target_cats is not None: + codes = np.round(syn_df[target_col].values).astype(int) + codes = np.clip(codes, 0, len(target_cats) - 1) + syn_df[target_col] = [target_cats[c] for c in codes] + +if len(syn_df) > target_n: + print(f"[TabPFGen] Trimming rows: {len(syn_df)} -> {target_n}") + syn_df = syn_df.iloc[:target_n].copy() +elif len(syn_df) < target_n: + deficit = target_n - len(syn_df) + print(f"[TabPFGen] Padding rows: {len(syn_df)} -> {target_n} (deficit={deficit})") + if len(syn_df) > 0: + extra = syn_df.sample(n=deficit, replace=True, random_state=42) + syn_df = pd.concat( + [syn_df.reset_index(drop=True), extra.reset_index(drop=True)], + ignore_index=True, + ) + else: + syn_df = df[feature_cols + [target_col]].sample( + n=target_n, replace=True, random_state=42 + ).reset_index(drop=True) + +syn_df = syn_df[list(df.columns)] +if len(syn_df) != target_n: + raise RuntimeError( + f"[TabPFGen] Row alignment failed: got {len(syn_df)}, expected {target_n}" + ) +syn_df.to_csv("/work/output-Benchmark-trainonly-v1/m4/tabpfgen/tabpfgen-m4-20260505_030403/tabpfgen-m4-2217-20260505_030403.csv", index=False) +print(f"[TabPFGen] Saved {len(syn_df)} rows -> /work/output-Benchmark-trainonly-v1/m4/tabpfgen/tabpfgen-m4-20260505_030403/tabpfgen-m4-2217-20260505_030403.csv") diff --git a/hyperparameter/m4/tabpfgen/tabpfgen-m4-20260505_030403/gen_20260505_030403.log b/hyperparameter/m4/tabpfgen/tabpfgen-m4-20260505_030403/gen_20260505_030403.log new file mode 100644 index 0000000000000000000000000000000000000000..8a99c95e77b5ad36a2a8505e9052a76a74cad371 --- /dev/null +++ b/hyperparameter/m4/tabpfgen/tabpfgen-m4-20260505_030403/gen_20260505_030403.log @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:14041ed1dbffad8712f876083db1ad8631d5ab7fdc27a4074407bbc2c6508992 +size 4318 diff --git a/hyperparameter/m4/tabpfgen/tabpfgen-m4-20260505_030403/input_snapshot.json b/hyperparameter/m4/tabpfgen/tabpfgen-m4-20260505_030403/input_snapshot.json new file mode 100644 index 0000000000000000000000000000000000000000..0e4ec9d0bc32394ab638c94bcf784b81478f2f39 --- /dev/null +++ b/hyperparameter/m4/tabpfgen/tabpfgen-m4-20260505_030403/input_snapshot.json @@ -0,0 +1,36 @@ +{ + "dataset_id": "m4", + "model": "tabpfgen", + "inputs": { + "train_csv": { + "path": "/data/jialinzhang/SynthesizePipeline-server/DatasetNew/m4/m4-train.csv", + "exists": true, + "size": 92191, + "sha256": "396b9d409ca21bf4a4cd329bdf5b7796aa0ae6356fa8d89b8eb669b5880b81f1" + }, + "val_csv": { + "path": "/data/jialinzhang/SynthesizePipeline-server/DatasetNew/m4/m4-val.csv", + "exists": true, + "size": 11482, + "sha256": "ee3c247d02f56e1687d03c381e13125d6a3a2a411ac7f202ba8520a4be9f1784" + }, + "test_csv": { + "path": "/data/jialinzhang/SynthesizePipeline-server/DatasetNew/m4/m4-test.csv", + "exists": true, + "size": 11559, + "sha256": "cadb9941124001b8fa7cb1ebae43b70a9ca56294f4df4d3c2f22c164c41757d4" + }, + "profile_json": { + "path": "/data/jialinzhang/SynthesizePipeline-server/DatasetNew/artifacts/data_core/tabular/m4/m4-dataset_profile.json", + "exists": true, + "size": 3336, + "sha256": "83e2764810e4a0e8cdece3a28dbd9134b7c9df6f2e56953e46d024ad2c4e035f" + }, + "contract_json": { + "path": "/data/jialinzhang/SynthesizePipeline-server/DatasetNew/artifacts/data_core/tabular/m4/m4-dataset_contract_v1.json", + "exists": true, + "size": 3810, + "sha256": "c23641b258629a845b164099bd0132886f8f6d0100e990494e0f92540f8987d9" + } + } +} \ No newline at end of file diff --git a/hyperparameter/m4/tabpfgen/tabpfgen-m4-20260505_030403/public_gate/normalized_schema_snapshot.json b/hyperparameter/m4/tabpfgen/tabpfgen-m4-20260505_030403/public_gate/normalized_schema_snapshot.json new file mode 100644 index 0000000000000000000000000000000000000000..31ed9818686b11907df75e872e4ffbe010330880 --- /dev/null +++ b/hyperparameter/m4/tabpfgen/tabpfgen-m4-20260505_030403/public_gate/normalized_schema_snapshot.json @@ -0,0 +1,147 @@ +{ + "dataset_id": "m4", + "target_column": "charges", + "task_type": "regression", + "columns": [ + { + "name": "age", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 47, + "unique_ratio": 0.0212, + "example_values": [ + "46", + "38", + "19", + "27", + "26" + ] + } + }, + { + "name": "sex", + "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.000902, + "example_values": [ + "female", + "male" + ] + } + }, + { + "name": "bmi", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 538, + "unique_ratio": 0.24267, + "example_values": [ + "23.655", + "19.3", + "30.59", + "32.67", + "29.45" + ] + } + }, + { + "name": "children", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 6, + "unique_ratio": 0.002706, + "example_values": [ + "1", + "0", + "3", + "2", + "5" + ] + } + }, + { + "name": "smoker", + "role": "feature", + "semantic_type": "boolean", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 2, + "unique_ratio": 0.000902, + "example_values": [ + "yes", + "no" + ] + } + }, + { + "name": "region", + "role": "feature", + "semantic_type": "categorical", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 4, + "unique_ratio": 0.001804, + "example_values": [ + "northwest", + "southwest", + "southeast", + "northeast" + ] + } + }, + { + "name": "charges", + "role": "target", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 1281, + "unique_ratio": 0.577808, + "example_values": [ + "21677.28345", + "15820.699", + "1639.5631", + "2497.0383", + "2897.3235" + ] + } + } + ] +} \ No newline at end of file diff --git a/hyperparameter/m4/tabpfgen/tabpfgen-m4-20260505_030403/public_gate/public_gate_report.json b/hyperparameter/m4/tabpfgen/tabpfgen-m4-20260505_030403/public_gate/public_gate_report.json new file mode 100644 index 0000000000000000000000000000000000000000..e7a25408e2574124629ea9437356551e4d6f4790 --- /dev/null +++ b/hyperparameter/m4/tabpfgen/tabpfgen-m4-20260505_030403/public_gate/public_gate_report.json @@ -0,0 +1,37 @@ +{ + "dataset_id": "m4", + "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": "charges", + "task_type": "regression", + "input_splits": { + "train": "/data/jialinzhang/SynthesizePipeline-server/DatasetNew/m4/m4-train.csv", + "val": "/data/jialinzhang/SynthesizePipeline-server/DatasetNew/m4/m4-val.csv", + "test": "/data/jialinzhang/SynthesizePipeline-server/DatasetNew/m4/m4-test.csv" + } +} \ No newline at end of file diff --git a/hyperparameter/m4/tabpfgen/tabpfgen-m4-20260505_030403/public_gate/staged_input_manifest.json b/hyperparameter/m4/tabpfgen/tabpfgen-m4-20260505_030403/public_gate/staged_input_manifest.json new file mode 100644 index 0000000000000000000000000000000000000000..a6c44e22b1b80d2349123063686c65e7774de4c6 --- /dev/null +++ b/hyperparameter/m4/tabpfgen/tabpfgen-m4-20260505_030403/public_gate/staged_input_manifest.json @@ -0,0 +1,152 @@ +{ + "dataset_id": "m4", + "target_column": "charges", + "task_type": "regression", + "train_csv": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/m4/tabpfgen/tabpfgen-m4-20260505_030403/staged/public/train.csv", + "val_csv": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/m4/tabpfgen/tabpfgen-m4-20260505_030403/staged/public/val.csv", + "test_csv": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/m4/tabpfgen/tabpfgen-m4-20260505_030403/staged/public/test.csv", + "features_json": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/m4/tabpfgen/tabpfgen-m4-20260505_030403/staged/public/staged_features.json", + "public_gate_report": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/m4/tabpfgen/tabpfgen-m4-20260505_030403/public_gate/public_gate_report.json", + "column_schema": [ + { + "name": "age", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 47, + "unique_ratio": 0.0212, + "example_values": [ + "46", + "38", + "19", + "27", + "26" + ] + } + }, + { + "name": "sex", + "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.000902, + "example_values": [ + "female", + "male" + ] + } + }, + { + "name": "bmi", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 538, + "unique_ratio": 0.24267, + "example_values": [ + "23.655", + "19.3", + "30.59", + "32.67", + "29.45" + ] + } + }, + { + "name": "children", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 6, + "unique_ratio": 0.002706, + "example_values": [ + "1", + "0", + "3", + "2", + "5" + ] + } + }, + { + "name": "smoker", + "role": "feature", + "semantic_type": "boolean", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 2, + "unique_ratio": 0.000902, + "example_values": [ + "yes", + "no" + ] + } + }, + { + "name": "region", + "role": "feature", + "semantic_type": "categorical", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 4, + "unique_ratio": 0.001804, + "example_values": [ + "northwest", + "southwest", + "southeast", + "northeast" + ] + } + }, + { + "name": "charges", + "role": "target", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 1281, + "unique_ratio": 0.577808, + "example_values": [ + "21677.28345", + "15820.699", + "1639.5631", + "2497.0383", + "2897.3235" + ] + } + } + ] +} \ No newline at end of file diff --git a/hyperparameter/m4/tabpfgen/tabpfgen-m4-20260505_030403/run_config.json b/hyperparameter/m4/tabpfgen/tabpfgen-m4-20260505_030403/run_config.json new file mode 100644 index 0000000000000000000000000000000000000000..66f4e03eaabac996bb15811c0524681b6d894c0e --- /dev/null +++ b/hyperparameter/m4/tabpfgen/tabpfgen-m4-20260505_030403/run_config.json @@ -0,0 +1,43 @@ +{ + "schema_version": 1, + "recorded_at": "2026-05-05T03:04:03", + "dataset_id": "m4", + "model": "tabpfgen", + "work_dir": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/m4/tabpfgen/tabpfgen-m4-20260505_030403", + "dataset_source_requested": "new", + "dataset_source_resolved": "new", + "cli_args": { + "model": "tabpfgen", + "dataset": "m4", + "dataset_source": "new", + "train": true, + "generate": true, + "num_rows": 0, + "epochs": null, + "output_dir": null, + "model_dir": null, + "work_dir": null, + "resume": false, + "no_stats": false + }, + "resolved": { + "num_rows": 2217, + "model_path": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/m4/tabpfgen/tabpfgen-m4-20260505_030403", + "output_csv": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/m4/tabpfgen/tabpfgen-m4-20260505_030403/tabpfgen-m4-2217-20260505_030403.csv" + }, + "input_artifacts": { + "public_gate_report": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/m4/tabpfgen/tabpfgen-m4-20260505_030403/public_gate/public_gate_report.json", + "public_manifest": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/m4/tabpfgen/tabpfgen-m4-20260505_030403/public_gate/staged_input_manifest.json", + "model_manifest": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/m4/tabpfgen/tabpfgen-m4-20260505_030403/staged/tabpfgen/model_input_manifest.json", + "train_csv": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/m4/tabpfgen/tabpfgen-m4-20260505_030403/staged/public/train.csv", + "features_json": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/m4/tabpfgen/tabpfgen-m4-20260505_030403/staged/public/staged_features.json", + "target_column": "charges", + "task_type": "regression" + }, + "env_overrides": { + "BENCHMARK_TABPFGEN_GPUS": "device=3", + "TABPFGEN_DEVICE": "cuda", + "TABPFGEN_FIT_MAX_ROWS": "2048", + "TABPFGEN_GEN_CHUNK_ROWS": "128" + } +} \ No newline at end of file diff --git a/hyperparameter/m4/tabpfgen/tabpfgen-m4-20260505_030403/runtime_result.json b/hyperparameter/m4/tabpfgen/tabpfgen-m4-20260505_030403/runtime_result.json new file mode 100644 index 0000000000000000000000000000000000000000..bd2d99c6ee06494ba64e58ac19511db30cfd03f9 --- /dev/null +++ b/hyperparameter/m4/tabpfgen/tabpfgen-m4-20260505_030403/runtime_result.json @@ -0,0 +1,27 @@ +{ + "dataset_id": "m4", + "model": "tabpfgen", + "run_id": "tabpfgen-m4-20260505_030403", + "public_gate_status": "pass", + "adapter_ready_status": "pass", + "train_status": "success", + "generate_status": "success", + "reason_code": null, + "reason_detail": null, + "artifacts": { + "synthetic_csv": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/m4/tabpfgen/tabpfgen-m4-20260505_030403/tabpfgen-m4-2217-20260505_030403.csv", + "model_path": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/m4/tabpfgen/tabpfgen-m4-20260505_030403" + }, + "timings": { + "train": { + "started_at": "2026-05-05T03:04:03", + "ended_at": "2026-05-05T03:04:03", + "duration_sec": 0.006 + }, + "generate": { + "started_at": "2026-05-05T03:04:03", + "ended_at": "2026-05-05T03:04:54", + "duration_sec": 51.333 + } + } +} \ No newline at end of file diff --git a/hyperparameter/m4/tabpfgen/tabpfgen-m4-20260505_030403/staged/public/staged_features.json b/hyperparameter/m4/tabpfgen/tabpfgen-m4-20260505_030403/staged/public/staged_features.json new file mode 100644 index 0000000000000000000000000000000000000000..d6acd098c35111f423f3ffff2cfd1754bc5dfebc --- /dev/null +++ b/hyperparameter/m4/tabpfgen/tabpfgen-m4-20260505_030403/staged/public/staged_features.json @@ -0,0 +1,37 @@ +[ + { + "feature_name": "age", + "data_type": "continuous", + "is_target": false + }, + { + "feature_name": "sex", + "data_type": "categorical", + "is_target": false + }, + { + "feature_name": "bmi", + "data_type": "continuous", + "is_target": false + }, + { + "feature_name": "children", + "data_type": "continuous", + "is_target": false + }, + { + "feature_name": "smoker", + "data_type": "binary", + "is_target": false + }, + { + "feature_name": "region", + "data_type": "categorical", + "is_target": false + }, + { + "feature_name": "charges", + "data_type": "continuous", + "is_target": true + } +] \ No newline at end of file diff --git a/hyperparameter/m4/tabpfgen/tabpfgen-m4-20260505_030403/staged/public/test.csv b/hyperparameter/m4/tabpfgen/tabpfgen-m4-20260505_030403/staged/public/test.csv new file mode 100644 index 0000000000000000000000000000000000000000..c88a2e7cfcd715bb421cb56eb078033da45c4dc8 --- /dev/null +++ b/hyperparameter/m4/tabpfgen/tabpfgen-m4-20260505_030403/staged/public/test.csv @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:4c541b677fb2d45c5bc79338eeee9fd8c91484b195a0c2c546c2fbabf113b7ea +size 11298 diff --git a/hyperparameter/m4/tabpfgen/tabpfgen-m4-20260505_030403/staged/public/train.csv b/hyperparameter/m4/tabpfgen/tabpfgen-m4-20260505_030403/staged/public/train.csv new file mode 100644 index 0000000000000000000000000000000000000000..5a05019d786529e0617291766c4fbe016ca01bf5 --- /dev/null +++ b/hyperparameter/m4/tabpfgen/tabpfgen-m4-20260505_030403/staged/public/train.csv @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:614ebfac5f41d6f661aff675fa18c0f933a8d9bcc77ea71b7b2360c2f0155837 +size 90069 diff --git a/hyperparameter/m4/tabpfgen/tabpfgen-m4-20260505_030403/staged/public/val.csv b/hyperparameter/m4/tabpfgen/tabpfgen-m4-20260505_030403/staged/public/val.csv new file mode 100644 index 0000000000000000000000000000000000000000..d78fe5ad1537c437ba9ac2629f2aa60a6c17e708 --- /dev/null +++ b/hyperparameter/m4/tabpfgen/tabpfgen-m4-20260505_030403/staged/public/val.csv @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:e55f5edbe7942ff01630de91a9c70dfbc6445eba76c7b970350364546b67c2d7 +size 11218 diff --git a/hyperparameter/m4/tabpfgen/tabpfgen-m4-20260505_030403/staged/tabpfgen/adapter_report.json b/hyperparameter/m4/tabpfgen/tabpfgen-m4-20260505_030403/staged/tabpfgen/adapter_report.json new file mode 100644 index 0000000000000000000000000000000000000000..a9e055c0a17140f08e4fcc3ec44bd5241a632eb9 --- /dev/null +++ b/hyperparameter/m4/tabpfgen/tabpfgen-m4-20260505_030403/staged/tabpfgen/adapter_report.json @@ -0,0 +1,7 @@ +{ + "adapter_ready_status": "pass", + "adapter_fail_reason_code": null, + "adapter_fail_detail": null, + "adapter_transforms_applied": [], + "model_input_manifest": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/m4/tabpfgen/tabpfgen-m4-20260505_030403/staged/tabpfgen/model_input_manifest.json" +} \ No newline at end of file diff --git a/hyperparameter/m4/tabpfgen/tabpfgen-m4-20260505_030403/staged/tabpfgen/adapter_transforms_applied.json b/hyperparameter/m4/tabpfgen/tabpfgen-m4-20260505_030403/staged/tabpfgen/adapter_transforms_applied.json new file mode 100644 index 0000000000000000000000000000000000000000..0637a088a01e8ddab3bf3fa98dbe804cbde1a0dc --- /dev/null +++ b/hyperparameter/m4/tabpfgen/tabpfgen-m4-20260505_030403/staged/tabpfgen/adapter_transforms_applied.json @@ -0,0 +1 @@ +[] \ No newline at end of file diff --git a/hyperparameter/m4/tabpfgen/tabpfgen-m4-20260505_030403/staged/tabpfgen/model_input_manifest.json b/hyperparameter/m4/tabpfgen/tabpfgen-m4-20260505_030403/staged/tabpfgen/model_input_manifest.json new file mode 100644 index 0000000000000000000000000000000000000000..cb470149ef44eb01deaa99ecbea008d94872f0cc --- /dev/null +++ b/hyperparameter/m4/tabpfgen/tabpfgen-m4-20260505_030403/staged/tabpfgen/model_input_manifest.json @@ -0,0 +1,154 @@ +{ + "dataset_id": "m4", + "model": "tabpfgen", + "target_column": "charges", + "task_type": "regression", + "column_schema": [ + { + "name": "age", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 47, + "unique_ratio": 0.0212, + "example_values": [ + "46", + "38", + "19", + "27", + "26" + ] + } + }, + { + "name": "sex", + "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.000902, + "example_values": [ + "female", + "male" + ] + } + }, + { + "name": "bmi", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 538, + "unique_ratio": 0.24267, + "example_values": [ + "23.655", + "19.3", + "30.59", + "32.67", + "29.45" + ] + } + }, + { + "name": "children", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 6, + "unique_ratio": 0.002706, + "example_values": [ + "1", + "0", + "3", + "2", + "5" + ] + } + }, + { + "name": "smoker", + "role": "feature", + "semantic_type": "boolean", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 2, + "unique_ratio": 0.000902, + "example_values": [ + "yes", + "no" + ] + } + }, + { + "name": "region", + "role": "feature", + "semantic_type": "categorical", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 4, + "unique_ratio": 0.001804, + "example_values": [ + "northwest", + "southwest", + "southeast", + "northeast" + ] + } + }, + { + "name": "charges", + "role": "target", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 1281, + "unique_ratio": 0.577808, + "example_values": [ + "21677.28345", + "15820.699", + "1639.5631", + "2497.0383", + "2897.3235" + ] + } + } + ], + "public_manifest": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/m4/tabpfgen/tabpfgen-m4-20260505_030403/public_gate/staged_input_manifest.json", + "train_csv": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/m4/tabpfgen/tabpfgen-m4-20260505_030403/staged/public/train.csv", + "val_csv": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/m4/tabpfgen/tabpfgen-m4-20260505_030403/staged/public/val.csv", + "test_csv": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/m4/tabpfgen/tabpfgen-m4-20260505_030403/staged/public/test.csv", + "features_json": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/m4/tabpfgen/tabpfgen-m4-20260505_030403/staged/public/staged_features.json", + "public_gate_report": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/m4/tabpfgen/tabpfgen-m4-20260505_030403/public_gate/public_gate_report.json" +} \ No newline at end of file diff --git a/hyperparameter/m4/tabpfgen/tabpfgen-m4-20260505_030403/tabpfgen-m4-2217-20260505_030403.csv b/hyperparameter/m4/tabpfgen/tabpfgen-m4-20260505_030403/tabpfgen-m4-2217-20260505_030403.csv new file mode 100644 index 0000000000000000000000000000000000000000..3f0bda0329c0dd4d3ce7a033d21cc5a233de14b7 --- /dev/null +++ b/hyperparameter/m4/tabpfgen/tabpfgen-m4-20260505_030403/tabpfgen-m4-2217-20260505_030403.csv @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:2a93a30366d886d4d5e1daebcc998a215f76054116d0609ceb3f138611385a2e +size 151426 diff --git a/hyperparameter/m4/tabpfgen/tabpfgen-m4-20260505_030403/tabpfgen_meta.json b/hyperparameter/m4/tabpfgen/tabpfgen-m4-20260505_030403/tabpfgen_meta.json new file mode 100644 index 0000000000000000000000000000000000000000..0246edf8d7c82a8ff61b78c1f53a65d3ae041bad --- /dev/null +++ b/hyperparameter/m4/tabpfgen/tabpfgen-m4-20260505_030403/tabpfgen_meta.json @@ -0,0 +1,9 @@ +{ + "csv_path": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/m4/tabpfgen/tabpfgen-m4-20260505_030403/staged/public/train.csv", + "json_path": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/m4/tabpfgen/tabpfgen-m4-20260505_030403/staged/public/staged_features.json", + "target_col": "charges", + "is_classification": false, + "task_type": "regression", + "n_rows": 2217, + "n_cols": 7 +} \ No newline at end of file diff --git a/hyperparameter/m4/tabpfgen/tabpfgen-m4-20260505_030403/train_20260505_030403.log b/hyperparameter/m4/tabpfgen/tabpfgen-m4-20260505_030403/train_20260505_030403.log new file mode 100644 index 0000000000000000000000000000000000000000..479b10a82d028513deba8e1534774db861c3f466 --- /dev/null +++ b/hyperparameter/m4/tabpfgen/tabpfgen-m4-20260505_030403/train_20260505_030403.log @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:ce94face8378a92275ddc373d0661a1e7dcdc8224fe79a8c63183fc5e1eb8baf +size 595 diff --git a/hyperparameter/m4/tabpfgen/tabpfgen-m4-20260505_030507/_tabpfgen_generate.py b/hyperparameter/m4/tabpfgen/tabpfgen-m4-20260505_030507/_tabpfgen_generate.py new file mode 100644 index 0000000000000000000000000000000000000000..5d95448517ea1b87bb3e6cb50f664cad861a28ec --- /dev/null +++ b/hyperparameter/m4/tabpfgen/tabpfgen-m4-20260505_030507/_tabpfgen_generate.py @@ -0,0 +1,122 @@ +import os +import numpy as np +import pandas as pd +import json +from tabpfgen import TabPFGen + +df = pd.read_csv("/work/output-Benchmark-trainonly-v1/m4/tabpfgen/tabpfgen-m4-20260505_030507/staged/public/train.csv") +target_col = "charges" + +target_missing = df[target_col].isna() +if target_missing.any(): + dropped = int(target_missing.sum()) + df = df.loc[~target_missing].copy() + print( + f"[TabPFGen] Dropped {dropped} rows with missing target '{target_col}'" + ) +if df.empty: + raise ValueError( + f"[TabPFGen] No rows remain after dropping missing target '{target_col}'" + ) + +feature_cols = [c for c in df.columns if c != target_col] + +cat_encodings = {} +for col in feature_cols: + if df[col].dtype == object or str(df[col].dtype) == 'category': + cats = sorted(df[col].dropna().unique().tolist(), key=str) + cat_map = {v: i for i, v in enumerate(cats)} + df[col] = df[col].map(cat_map).astype(float) + cat_encodings[col] = cats + print(f"[TabPFGen] Label-encoded '{col}' ({len(cats)} categories)") + +target_cats = None +if df[target_col].dtype == object or str(df[target_col].dtype) == 'category': + cats = sorted(df[target_col].dropna().unique().tolist(), key=str) + t_map = {v: i for i, v in enumerate(cats)} + df[target_col] = df[target_col].map(t_map).astype(float) + target_cats = cats + print(f"[TabPFGen] Label-encoded target '{target_col}' ({len(cats)} categories)") + +X = df[feature_cols].values.astype(np.float32) +y = df[target_col].values +fit_rows_cap = max(1, int(os.environ.get("TABPFGEN_FIT_MAX_ROWS", "50000"))) +if len(X) > fit_rows_cap: + rng = np.random.default_rng(42) + idx = np.sort(rng.choice(len(X), size=fit_rows_cap, replace=False)) + X = X[idx] + y = y[idx] + print(f"[TabPFGen] Downsampled fit rows -> {len(X)} (cap={fit_rows_cap})") +target_n = int(2217) + +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 + +chunk_rows = max(1, int(os.environ.get("TABPFGEN_GEN_CHUNK_ROWS", "256"))) +device = (os.environ.get("TABPFGEN_DEVICE") or "auto").strip() or "auto" + +# TabPFGen v0.1.x API:仅支持 n_sgld_steps / sgld_* / device。 +# (旧版脚本中的 energy_*_chunk 与上游 TabPFGen 不一致,会导致 TypeError。) +gen = TabPFGen( + n_sgld_steps=1000, + sgld_step_size=0.01, + sgld_noise_scale=0.01, + device=device, +) + +print(f"[TabPFGen] Generating {target_n} rows via generate_regression (chunk_rows={chunk_rows}, device={device})") +x_parts = [] +y_parts = [] +remaining = target_n +while remaining > 0: + take = min(chunk_rows, remaining) + X_part, y_part = gen.generate_regression(X, y, n_samples=take) + x_parts.append(np.asarray(X_part)) + y_parts.append(np.asarray(y_part)) + remaining -= take + print(f"[TabPFGen] chunk done: take={take}, remaining={remaining}") + +X_syn = np.concatenate(x_parts, axis=0) +y_syn = np.concatenate(y_parts, axis=0) + +syn_df = pd.DataFrame(X_syn, columns=feature_cols) +syn_df[target_col] = y_syn + +for col, cats in cat_encodings.items(): + codes = np.round(syn_df[col].values).astype(int) + codes = np.clip(codes, 0, len(cats) - 1) + syn_df[col] = [cats[c] for c in codes] + +if target_cats is not None: + codes = np.round(syn_df[target_col].values).astype(int) + codes = np.clip(codes, 0, len(target_cats) - 1) + syn_df[target_col] = [target_cats[c] for c in codes] + +if len(syn_df) > target_n: + print(f"[TabPFGen] Trimming rows: {len(syn_df)} -> {target_n}") + syn_df = syn_df.iloc[:target_n].copy() +elif len(syn_df) < target_n: + deficit = target_n - len(syn_df) + print(f"[TabPFGen] Padding rows: {len(syn_df)} -> {target_n} (deficit={deficit})") + if len(syn_df) > 0: + extra = syn_df.sample(n=deficit, replace=True, random_state=42) + syn_df = pd.concat( + [syn_df.reset_index(drop=True), extra.reset_index(drop=True)], + ignore_index=True, + ) + else: + syn_df = df[feature_cols + [target_col]].sample( + n=target_n, replace=True, random_state=42 + ).reset_index(drop=True) + +syn_df = syn_df[list(df.columns)] +if len(syn_df) != target_n: + raise RuntimeError( + f"[TabPFGen] Row alignment failed: got {len(syn_df)}, expected {target_n}" + ) +syn_df.to_csv("/work/output-Benchmark-trainonly-v1/m4/tabpfgen/tabpfgen-m4-20260505_030507/tabpfgen-m4-2217-20260505_030507.csv", index=False) +print(f"[TabPFGen] Saved {len(syn_df)} rows -> /work/output-Benchmark-trainonly-v1/m4/tabpfgen/tabpfgen-m4-20260505_030507/tabpfgen-m4-2217-20260505_030507.csv") diff --git a/hyperparameter/m4/tabpfgen/tabpfgen-m4-20260505_030507/gen_20260505_030507.log b/hyperparameter/m4/tabpfgen/tabpfgen-m4-20260505_030507/gen_20260505_030507.log new file mode 100644 index 0000000000000000000000000000000000000000..e1111b7e02bbebeac34903ebd4c07fb40ed7e0f0 --- /dev/null +++ b/hyperparameter/m4/tabpfgen/tabpfgen-m4-20260505_030507/gen_20260505_030507.log @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:11b5bd6221459a2f8271de20e576c341877f1aa773254c1af662ead62d34f067 +size 4318 diff --git a/hyperparameter/m4/tabpfgen/tabpfgen-m4-20260505_030507/input_snapshot.json b/hyperparameter/m4/tabpfgen/tabpfgen-m4-20260505_030507/input_snapshot.json new file mode 100644 index 0000000000000000000000000000000000000000..0e4ec9d0bc32394ab638c94bcf784b81478f2f39 --- /dev/null +++ b/hyperparameter/m4/tabpfgen/tabpfgen-m4-20260505_030507/input_snapshot.json @@ -0,0 +1,36 @@ +{ + "dataset_id": "m4", + "model": "tabpfgen", + "inputs": { + "train_csv": { + "path": "/data/jialinzhang/SynthesizePipeline-server/DatasetNew/m4/m4-train.csv", + "exists": true, + "size": 92191, + "sha256": "396b9d409ca21bf4a4cd329bdf5b7796aa0ae6356fa8d89b8eb669b5880b81f1" + }, + "val_csv": { + "path": "/data/jialinzhang/SynthesizePipeline-server/DatasetNew/m4/m4-val.csv", + "exists": true, + "size": 11482, + "sha256": "ee3c247d02f56e1687d03c381e13125d6a3a2a411ac7f202ba8520a4be9f1784" + }, + "test_csv": { + "path": "/data/jialinzhang/SynthesizePipeline-server/DatasetNew/m4/m4-test.csv", + "exists": true, + "size": 11559, + "sha256": "cadb9941124001b8fa7cb1ebae43b70a9ca56294f4df4d3c2f22c164c41757d4" + }, + "profile_json": { + "path": "/data/jialinzhang/SynthesizePipeline-server/DatasetNew/artifacts/data_core/tabular/m4/m4-dataset_profile.json", + "exists": true, + "size": 3336, + "sha256": "83e2764810e4a0e8cdece3a28dbd9134b7c9df6f2e56953e46d024ad2c4e035f" + }, + "contract_json": { + "path": "/data/jialinzhang/SynthesizePipeline-server/DatasetNew/artifacts/data_core/tabular/m4/m4-dataset_contract_v1.json", + "exists": true, + "size": 3810, + "sha256": "c23641b258629a845b164099bd0132886f8f6d0100e990494e0f92540f8987d9" + } + } +} \ No newline at end of file diff --git a/hyperparameter/m4/tabpfgen/tabpfgen-m4-20260505_030507/public_gate/normalized_schema_snapshot.json b/hyperparameter/m4/tabpfgen/tabpfgen-m4-20260505_030507/public_gate/normalized_schema_snapshot.json new file mode 100644 index 0000000000000000000000000000000000000000..31ed9818686b11907df75e872e4ffbe010330880 --- /dev/null +++ b/hyperparameter/m4/tabpfgen/tabpfgen-m4-20260505_030507/public_gate/normalized_schema_snapshot.json @@ -0,0 +1,147 @@ +{ + "dataset_id": "m4", + "target_column": "charges", + "task_type": "regression", + "columns": [ + { + "name": "age", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 47, + "unique_ratio": 0.0212, + "example_values": [ + "46", + "38", + "19", + "27", + "26" + ] + } + }, + { + "name": "sex", + "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.000902, + "example_values": [ + "female", + "male" + ] + } + }, + { + "name": "bmi", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 538, + "unique_ratio": 0.24267, + "example_values": [ + "23.655", + "19.3", + "30.59", + "32.67", + "29.45" + ] + } + }, + { + "name": "children", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 6, + "unique_ratio": 0.002706, + "example_values": [ + "1", + "0", + "3", + "2", + "5" + ] + } + }, + { + "name": "smoker", + "role": "feature", + "semantic_type": "boolean", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 2, + "unique_ratio": 0.000902, + "example_values": [ + "yes", + "no" + ] + } + }, + { + "name": "region", + "role": "feature", + "semantic_type": "categorical", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 4, + "unique_ratio": 0.001804, + "example_values": [ + "northwest", + "southwest", + "southeast", + "northeast" + ] + } + }, + { + "name": "charges", + "role": "target", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 1281, + "unique_ratio": 0.577808, + "example_values": [ + "21677.28345", + "15820.699", + "1639.5631", + "2497.0383", + "2897.3235" + ] + } + } + ] +} \ No newline at end of file diff --git a/hyperparameter/m4/tabpfgen/tabpfgen-m4-20260505_030507/public_gate/public_gate_report.json b/hyperparameter/m4/tabpfgen/tabpfgen-m4-20260505_030507/public_gate/public_gate_report.json new file mode 100644 index 0000000000000000000000000000000000000000..e7a25408e2574124629ea9437356551e4d6f4790 --- /dev/null +++ b/hyperparameter/m4/tabpfgen/tabpfgen-m4-20260505_030507/public_gate/public_gate_report.json @@ -0,0 +1,37 @@ +{ + "dataset_id": "m4", + "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": "charges", + "task_type": "regression", + "input_splits": { + "train": "/data/jialinzhang/SynthesizePipeline-server/DatasetNew/m4/m4-train.csv", + "val": "/data/jialinzhang/SynthesizePipeline-server/DatasetNew/m4/m4-val.csv", + "test": "/data/jialinzhang/SynthesizePipeline-server/DatasetNew/m4/m4-test.csv" + } +} \ No newline at end of file diff --git a/hyperparameter/m4/tabpfgen/tabpfgen-m4-20260505_030507/public_gate/staged_input_manifest.json b/hyperparameter/m4/tabpfgen/tabpfgen-m4-20260505_030507/public_gate/staged_input_manifest.json new file mode 100644 index 0000000000000000000000000000000000000000..68716b2ccae3f84f6a098185c72b4559e3d3bc8c --- /dev/null +++ b/hyperparameter/m4/tabpfgen/tabpfgen-m4-20260505_030507/public_gate/staged_input_manifest.json @@ -0,0 +1,152 @@ +{ + "dataset_id": "m4", + "target_column": "charges", + "task_type": "regression", + "train_csv": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/m4/tabpfgen/tabpfgen-m4-20260505_030507/staged/public/train.csv", + "val_csv": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/m4/tabpfgen/tabpfgen-m4-20260505_030507/staged/public/val.csv", + "test_csv": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/m4/tabpfgen/tabpfgen-m4-20260505_030507/staged/public/test.csv", + "features_json": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/m4/tabpfgen/tabpfgen-m4-20260505_030507/staged/public/staged_features.json", + "public_gate_report": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/m4/tabpfgen/tabpfgen-m4-20260505_030507/public_gate/public_gate_report.json", + "column_schema": [ + { + "name": "age", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 47, + "unique_ratio": 0.0212, + "example_values": [ + "46", + "38", + "19", + "27", + "26" + ] + } + }, + { + "name": "sex", + "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.000902, + "example_values": [ + "female", + "male" + ] + } + }, + { + "name": "bmi", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 538, + "unique_ratio": 0.24267, + "example_values": [ + "23.655", + "19.3", + "30.59", + "32.67", + "29.45" + ] + } + }, + { + "name": "children", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 6, + "unique_ratio": 0.002706, + "example_values": [ + "1", + "0", + "3", + "2", + "5" + ] + } + }, + { + "name": "smoker", + "role": "feature", + "semantic_type": "boolean", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 2, + "unique_ratio": 0.000902, + "example_values": [ + "yes", + "no" + ] + } + }, + { + "name": "region", + "role": "feature", + "semantic_type": "categorical", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 4, + "unique_ratio": 0.001804, + "example_values": [ + "northwest", + "southwest", + "southeast", + "northeast" + ] + } + }, + { + "name": "charges", + "role": "target", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 1281, + "unique_ratio": 0.577808, + "example_values": [ + "21677.28345", + "15820.699", + "1639.5631", + "2497.0383", + "2897.3235" + ] + } + } + ] +} \ No newline at end of file diff --git a/hyperparameter/m4/tabpfgen/tabpfgen-m4-20260505_030507/run_config.json b/hyperparameter/m4/tabpfgen/tabpfgen-m4-20260505_030507/run_config.json new file mode 100644 index 0000000000000000000000000000000000000000..6c00dc09cd437520a2452f8336bd0e5eca53cb59 --- /dev/null +++ b/hyperparameter/m4/tabpfgen/tabpfgen-m4-20260505_030507/run_config.json @@ -0,0 +1,43 @@ +{ + "schema_version": 1, + "recorded_at": "2026-05-05T03:05:07", + "dataset_id": "m4", + "model": "tabpfgen", + "work_dir": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/m4/tabpfgen/tabpfgen-m4-20260505_030507", + "dataset_source_requested": "new", + "dataset_source_resolved": "new", + "cli_args": { + "model": "tabpfgen", + "dataset": "m4", + "dataset_source": "new", + "train": true, + "generate": true, + "num_rows": 0, + "epochs": null, + "output_dir": null, + "model_dir": null, + "work_dir": null, + "resume": false, + "no_stats": false + }, + "resolved": { + "num_rows": 2217, + "model_path": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/m4/tabpfgen/tabpfgen-m4-20260505_030507", + "output_csv": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/m4/tabpfgen/tabpfgen-m4-20260505_030507/tabpfgen-m4-2217-20260505_030507.csv" + }, + "input_artifacts": { + "public_gate_report": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/m4/tabpfgen/tabpfgen-m4-20260505_030507/public_gate/public_gate_report.json", + "public_manifest": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/m4/tabpfgen/tabpfgen-m4-20260505_030507/public_gate/staged_input_manifest.json", + "model_manifest": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/m4/tabpfgen/tabpfgen-m4-20260505_030507/staged/tabpfgen/model_input_manifest.json", + "train_csv": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/m4/tabpfgen/tabpfgen-m4-20260505_030507/staged/public/train.csv", + "features_json": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/m4/tabpfgen/tabpfgen-m4-20260505_030507/staged/public/staged_features.json", + "target_column": "charges", + "task_type": "regression" + }, + "env_overrides": { + "BENCHMARK_TABPFGEN_GPUS": "device=3", + "TABPFGEN_DEVICE": "cuda", + "TABPFGEN_FIT_MAX_ROWS": "3072", + "TABPFGEN_GEN_CHUNK_ROWS": "128" + } +} \ No newline at end of file diff --git a/hyperparameter/m4/tabpfgen/tabpfgen-m4-20260505_030507/runtime_result.json b/hyperparameter/m4/tabpfgen/tabpfgen-m4-20260505_030507/runtime_result.json new file mode 100644 index 0000000000000000000000000000000000000000..1a25e465680a6ff77f24d1e595b3c55e6c979c6f --- /dev/null +++ b/hyperparameter/m4/tabpfgen/tabpfgen-m4-20260505_030507/runtime_result.json @@ -0,0 +1,27 @@ +{ + "dataset_id": "m4", + "model": "tabpfgen", + "run_id": "tabpfgen-m4-20260505_030507", + "public_gate_status": "pass", + "adapter_ready_status": "pass", + "train_status": "success", + "generate_status": "success", + "reason_code": null, + "reason_detail": null, + "artifacts": { + "synthetic_csv": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/m4/tabpfgen/tabpfgen-m4-20260505_030507/tabpfgen-m4-2217-20260505_030507.csv", + "model_path": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/m4/tabpfgen/tabpfgen-m4-20260505_030507" + }, + "timings": { + "train": { + "started_at": "2026-05-05T03:05:07", + "ended_at": "2026-05-05T03:05:07", + "duration_sec": 0.008 + }, + "generate": { + "started_at": "2026-05-05T03:05:07", + "ended_at": "2026-05-05T03:05:59", + "duration_sec": 52.563 + } + } +} \ No newline at end of file diff --git a/hyperparameter/m4/tabpfgen/tabpfgen-m4-20260505_030507/staged/public/staged_features.json b/hyperparameter/m4/tabpfgen/tabpfgen-m4-20260505_030507/staged/public/staged_features.json new file mode 100644 index 0000000000000000000000000000000000000000..d6acd098c35111f423f3ffff2cfd1754bc5dfebc --- /dev/null +++ b/hyperparameter/m4/tabpfgen/tabpfgen-m4-20260505_030507/staged/public/staged_features.json @@ -0,0 +1,37 @@ +[ + { + "feature_name": "age", + "data_type": "continuous", + "is_target": false + }, + { + "feature_name": "sex", + "data_type": "categorical", + "is_target": false + }, + { + "feature_name": "bmi", + "data_type": "continuous", + "is_target": false + }, + { + "feature_name": "children", + "data_type": "continuous", + "is_target": false + }, + { + "feature_name": "smoker", + "data_type": "binary", + "is_target": false + }, + { + "feature_name": "region", + "data_type": "categorical", + "is_target": false + }, + { + "feature_name": "charges", + "data_type": "continuous", + "is_target": true + } +] \ No newline at end of file diff --git a/hyperparameter/m4/tabpfgen/tabpfgen-m4-20260505_030507/staged/public/test.csv b/hyperparameter/m4/tabpfgen/tabpfgen-m4-20260505_030507/staged/public/test.csv new file mode 100644 index 0000000000000000000000000000000000000000..c88a2e7cfcd715bb421cb56eb078033da45c4dc8 --- /dev/null +++ b/hyperparameter/m4/tabpfgen/tabpfgen-m4-20260505_030507/staged/public/test.csv @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:4c541b677fb2d45c5bc79338eeee9fd8c91484b195a0c2c546c2fbabf113b7ea +size 11298 diff --git a/hyperparameter/m4/tabpfgen/tabpfgen-m4-20260505_030507/staged/public/train.csv b/hyperparameter/m4/tabpfgen/tabpfgen-m4-20260505_030507/staged/public/train.csv new file mode 100644 index 0000000000000000000000000000000000000000..5a05019d786529e0617291766c4fbe016ca01bf5 --- /dev/null +++ b/hyperparameter/m4/tabpfgen/tabpfgen-m4-20260505_030507/staged/public/train.csv @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:614ebfac5f41d6f661aff675fa18c0f933a8d9bcc77ea71b7b2360c2f0155837 +size 90069 diff --git a/hyperparameter/m4/tabpfgen/tabpfgen-m4-20260505_030507/staged/public/val.csv b/hyperparameter/m4/tabpfgen/tabpfgen-m4-20260505_030507/staged/public/val.csv new file mode 100644 index 0000000000000000000000000000000000000000..d78fe5ad1537c437ba9ac2629f2aa60a6c17e708 --- /dev/null +++ b/hyperparameter/m4/tabpfgen/tabpfgen-m4-20260505_030507/staged/public/val.csv @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:e55f5edbe7942ff01630de91a9c70dfbc6445eba76c7b970350364546b67c2d7 +size 11218 diff --git a/hyperparameter/m4/tabpfgen/tabpfgen-m4-20260505_030507/staged/tabpfgen/adapter_report.json b/hyperparameter/m4/tabpfgen/tabpfgen-m4-20260505_030507/staged/tabpfgen/adapter_report.json new file mode 100644 index 0000000000000000000000000000000000000000..bf8c6c690927ebfd3bf89aaaf8e7e1f7333dd0bb --- /dev/null +++ b/hyperparameter/m4/tabpfgen/tabpfgen-m4-20260505_030507/staged/tabpfgen/adapter_report.json @@ -0,0 +1,7 @@ +{ + "adapter_ready_status": "pass", + "adapter_fail_reason_code": null, + "adapter_fail_detail": null, + "adapter_transforms_applied": [], + "model_input_manifest": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/m4/tabpfgen/tabpfgen-m4-20260505_030507/staged/tabpfgen/model_input_manifest.json" +} \ No newline at end of file diff --git a/hyperparameter/m4/tabpfgen/tabpfgen-m4-20260505_030507/staged/tabpfgen/adapter_transforms_applied.json b/hyperparameter/m4/tabpfgen/tabpfgen-m4-20260505_030507/staged/tabpfgen/adapter_transforms_applied.json new file mode 100644 index 0000000000000000000000000000000000000000..0637a088a01e8ddab3bf3fa98dbe804cbde1a0dc --- /dev/null +++ b/hyperparameter/m4/tabpfgen/tabpfgen-m4-20260505_030507/staged/tabpfgen/adapter_transforms_applied.json @@ -0,0 +1 @@ +[] \ No newline at end of file diff --git a/hyperparameter/m4/tabpfgen/tabpfgen-m4-20260505_030507/staged/tabpfgen/model_input_manifest.json b/hyperparameter/m4/tabpfgen/tabpfgen-m4-20260505_030507/staged/tabpfgen/model_input_manifest.json new file mode 100644 index 0000000000000000000000000000000000000000..76e67d774fefa745f158610034f1649f510aa8fc --- /dev/null +++ b/hyperparameter/m4/tabpfgen/tabpfgen-m4-20260505_030507/staged/tabpfgen/model_input_manifest.json @@ -0,0 +1,154 @@ +{ + "dataset_id": "m4", + "model": "tabpfgen", + "target_column": "charges", + "task_type": "regression", + "column_schema": [ + { + "name": "age", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 47, + "unique_ratio": 0.0212, + "example_values": [ + "46", + "38", + "19", + "27", + "26" + ] + } + }, + { + "name": "sex", + "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.000902, + "example_values": [ + "female", + "male" + ] + } + }, + { + "name": "bmi", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 538, + "unique_ratio": 0.24267, + "example_values": [ + "23.655", + "19.3", + "30.59", + "32.67", + "29.45" + ] + } + }, + { + "name": "children", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 6, + "unique_ratio": 0.002706, + "example_values": [ + "1", + "0", + "3", + "2", + "5" + ] + } + }, + { + "name": "smoker", + "role": "feature", + "semantic_type": "boolean", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 2, + "unique_ratio": 0.000902, + "example_values": [ + "yes", + "no" + ] + } + }, + { + "name": "region", + "role": "feature", + "semantic_type": "categorical", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 4, + "unique_ratio": 0.001804, + "example_values": [ + "northwest", + "southwest", + "southeast", + "northeast" + ] + } + }, + { + "name": "charges", + "role": "target", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 1281, + "unique_ratio": 0.577808, + "example_values": [ + "21677.28345", + "15820.699", + "1639.5631", + "2497.0383", + "2897.3235" + ] + } + } + ], + "public_manifest": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/m4/tabpfgen/tabpfgen-m4-20260505_030507/public_gate/staged_input_manifest.json", + "train_csv": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/m4/tabpfgen/tabpfgen-m4-20260505_030507/staged/public/train.csv", + "val_csv": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/m4/tabpfgen/tabpfgen-m4-20260505_030507/staged/public/val.csv", + "test_csv": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/m4/tabpfgen/tabpfgen-m4-20260505_030507/staged/public/test.csv", + "features_json": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/m4/tabpfgen/tabpfgen-m4-20260505_030507/staged/public/staged_features.json", + "public_gate_report": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/m4/tabpfgen/tabpfgen-m4-20260505_030507/public_gate/public_gate_report.json" +} \ No newline at end of file diff --git a/hyperparameter/m4/tabpfgen/tabpfgen-m4-20260505_030507/tabpfgen-m4-2217-20260505_030507.csv b/hyperparameter/m4/tabpfgen/tabpfgen-m4-20260505_030507/tabpfgen-m4-2217-20260505_030507.csv new file mode 100644 index 0000000000000000000000000000000000000000..8ec700582bc9cb89d4b92b3b8282453eb2e0342e --- /dev/null +++ b/hyperparameter/m4/tabpfgen/tabpfgen-m4-20260505_030507/tabpfgen-m4-2217-20260505_030507.csv @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:f04f5f91e94c4f995af939fd67aa8f326ba22026251ff655d2805c16efb646b6 +size 151490 diff --git a/hyperparameter/m4/tabpfgen/tabpfgen-m4-20260505_030507/tabpfgen_meta.json b/hyperparameter/m4/tabpfgen/tabpfgen-m4-20260505_030507/tabpfgen_meta.json new file mode 100644 index 0000000000000000000000000000000000000000..0fbeb0529f1bc6e9b22cb64123bf0f5b704d423e --- /dev/null +++ b/hyperparameter/m4/tabpfgen/tabpfgen-m4-20260505_030507/tabpfgen_meta.json @@ -0,0 +1,9 @@ +{ + "csv_path": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/m4/tabpfgen/tabpfgen-m4-20260505_030507/staged/public/train.csv", + "json_path": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/m4/tabpfgen/tabpfgen-m4-20260505_030507/staged/public/staged_features.json", + "target_col": "charges", + "is_classification": false, + "task_type": "regression", + "n_rows": 2217, + "n_cols": 7 +} \ No newline at end of file diff --git a/hyperparameter/m4/tabpfgen/tabpfgen-m4-20260505_030507/train_20260505_030507.log b/hyperparameter/m4/tabpfgen/tabpfgen-m4-20260505_030507/train_20260505_030507.log new file mode 100644 index 0000000000000000000000000000000000000000..2df481b0f139758ac3fcf492c85cff1e2969c6b3 --- /dev/null +++ b/hyperparameter/m4/tabpfgen/tabpfgen-m4-20260505_030507/train_20260505_030507.log @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:f0abd3df54883ee83344917f73cc7c77b976ea8a9fe4bbcab78bc0be4cf3e9d9 +size 595 diff --git a/hyperparameter/m4/tabpfgen/tabpfgen-m4-20260505_030613/_tabpfgen_generate.py b/hyperparameter/m4/tabpfgen/tabpfgen-m4-20260505_030613/_tabpfgen_generate.py new file mode 100644 index 0000000000000000000000000000000000000000..172e70f44599e4f4fc9a3bb8a0479bb23ff33237 --- /dev/null +++ b/hyperparameter/m4/tabpfgen/tabpfgen-m4-20260505_030613/_tabpfgen_generate.py @@ -0,0 +1,122 @@ +import os +import numpy as np +import pandas as pd +import json +from tabpfgen import TabPFGen + +df = pd.read_csv("/work/output-Benchmark-trainonly-v1/m4/tabpfgen/tabpfgen-m4-20260505_030613/staged/public/train.csv") +target_col = "charges" + +target_missing = df[target_col].isna() +if target_missing.any(): + dropped = int(target_missing.sum()) + df = df.loc[~target_missing].copy() + print( + f"[TabPFGen] Dropped {dropped} rows with missing target '{target_col}'" + ) +if df.empty: + raise ValueError( + f"[TabPFGen] No rows remain after dropping missing target '{target_col}'" + ) + +feature_cols = [c for c in df.columns if c != target_col] + +cat_encodings = {} +for col in feature_cols: + if df[col].dtype == object or str(df[col].dtype) == 'category': + cats = sorted(df[col].dropna().unique().tolist(), key=str) + cat_map = {v: i for i, v in enumerate(cats)} + df[col] = df[col].map(cat_map).astype(float) + cat_encodings[col] = cats + print(f"[TabPFGen] Label-encoded '{col}' ({len(cats)} categories)") + +target_cats = None +if df[target_col].dtype == object or str(df[target_col].dtype) == 'category': + cats = sorted(df[target_col].dropna().unique().tolist(), key=str) + t_map = {v: i for i, v in enumerate(cats)} + df[target_col] = df[target_col].map(t_map).astype(float) + target_cats = cats + print(f"[TabPFGen] Label-encoded target '{target_col}' ({len(cats)} categories)") + +X = df[feature_cols].values.astype(np.float32) +y = df[target_col].values +fit_rows_cap = max(1, int(os.environ.get("TABPFGEN_FIT_MAX_ROWS", "50000"))) +if len(X) > fit_rows_cap: + rng = np.random.default_rng(42) + idx = np.sort(rng.choice(len(X), size=fit_rows_cap, replace=False)) + X = X[idx] + y = y[idx] + print(f"[TabPFGen] Downsampled fit rows -> {len(X)} (cap={fit_rows_cap})") +target_n = int(2217) + +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 + +chunk_rows = max(1, int(os.environ.get("TABPFGEN_GEN_CHUNK_ROWS", "256"))) +device = (os.environ.get("TABPFGEN_DEVICE") or "auto").strip() or "auto" + +# TabPFGen v0.1.x API:仅支持 n_sgld_steps / sgld_* / device。 +# (旧版脚本中的 energy_*_chunk 与上游 TabPFGen 不一致,会导致 TypeError。) +gen = TabPFGen( + n_sgld_steps=1000, + sgld_step_size=0.01, + sgld_noise_scale=0.01, + device=device, +) + +print(f"[TabPFGen] Generating {target_n} rows via generate_regression (chunk_rows={chunk_rows}, device={device})") +x_parts = [] +y_parts = [] +remaining = target_n +while remaining > 0: + take = min(chunk_rows, remaining) + X_part, y_part = gen.generate_regression(X, y, n_samples=take) + x_parts.append(np.asarray(X_part)) + y_parts.append(np.asarray(y_part)) + remaining -= take + print(f"[TabPFGen] chunk done: take={take}, remaining={remaining}") + +X_syn = np.concatenate(x_parts, axis=0) +y_syn = np.concatenate(y_parts, axis=0) + +syn_df = pd.DataFrame(X_syn, columns=feature_cols) +syn_df[target_col] = y_syn + +for col, cats in cat_encodings.items(): + codes = np.round(syn_df[col].values).astype(int) + codes = np.clip(codes, 0, len(cats) - 1) + syn_df[col] = [cats[c] for c in codes] + +if target_cats is not None: + codes = np.round(syn_df[target_col].values).astype(int) + codes = np.clip(codes, 0, len(target_cats) - 1) + syn_df[target_col] = [target_cats[c] for c in codes] + +if len(syn_df) > target_n: + print(f"[TabPFGen] Trimming rows: {len(syn_df)} -> {target_n}") + syn_df = syn_df.iloc[:target_n].copy() +elif len(syn_df) < target_n: + deficit = target_n - len(syn_df) + print(f"[TabPFGen] Padding rows: {len(syn_df)} -> {target_n} (deficit={deficit})") + if len(syn_df) > 0: + extra = syn_df.sample(n=deficit, replace=True, random_state=42) + syn_df = pd.concat( + [syn_df.reset_index(drop=True), extra.reset_index(drop=True)], + ignore_index=True, + ) + else: + syn_df = df[feature_cols + [target_col]].sample( + n=target_n, replace=True, random_state=42 + ).reset_index(drop=True) + +syn_df = syn_df[list(df.columns)] +if len(syn_df) != target_n: + raise RuntimeError( + f"[TabPFGen] Row alignment failed: got {len(syn_df)}, expected {target_n}" + ) +syn_df.to_csv("/work/output-Benchmark-trainonly-v1/m4/tabpfgen/tabpfgen-m4-20260505_030613/tabpfgen-m4-2217-20260505_030613.csv", index=False) +print(f"[TabPFGen] Saved {len(syn_df)} rows -> /work/output-Benchmark-trainonly-v1/m4/tabpfgen/tabpfgen-m4-20260505_030613/tabpfgen-m4-2217-20260505_030613.csv") diff --git a/hyperparameter/m4/tabpfgen/tabpfgen-m4-20260505_030613/gen_20260505_030613.log b/hyperparameter/m4/tabpfgen/tabpfgen-m4-20260505_030613/gen_20260505_030613.log new file mode 100644 index 0000000000000000000000000000000000000000..0c66486eeff0b894593c8f5850e837b6d8bb807e --- /dev/null +++ b/hyperparameter/m4/tabpfgen/tabpfgen-m4-20260505_030613/gen_20260505_030613.log @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:6daf4f42db7dae3abc897663fde9b3764edff1c4d29e66c34e7ed39c7cee2244 +size 2649 diff --git a/hyperparameter/m4/tabpfgen/tabpfgen-m4-20260505_030613/input_snapshot.json b/hyperparameter/m4/tabpfgen/tabpfgen-m4-20260505_030613/input_snapshot.json new file mode 100644 index 0000000000000000000000000000000000000000..0e4ec9d0bc32394ab638c94bcf784b81478f2f39 --- /dev/null +++ b/hyperparameter/m4/tabpfgen/tabpfgen-m4-20260505_030613/input_snapshot.json @@ -0,0 +1,36 @@ +{ + "dataset_id": "m4", + "model": "tabpfgen", + "inputs": { + "train_csv": { + "path": "/data/jialinzhang/SynthesizePipeline-server/DatasetNew/m4/m4-train.csv", + "exists": true, + "size": 92191, + "sha256": "396b9d409ca21bf4a4cd329bdf5b7796aa0ae6356fa8d89b8eb669b5880b81f1" + }, + "val_csv": { + "path": "/data/jialinzhang/SynthesizePipeline-server/DatasetNew/m4/m4-val.csv", + "exists": true, + "size": 11482, + "sha256": "ee3c247d02f56e1687d03c381e13125d6a3a2a411ac7f202ba8520a4be9f1784" + }, + "test_csv": { + "path": "/data/jialinzhang/SynthesizePipeline-server/DatasetNew/m4/m4-test.csv", + "exists": true, + "size": 11559, + "sha256": "cadb9941124001b8fa7cb1ebae43b70a9ca56294f4df4d3c2f22c164c41757d4" + }, + "profile_json": { + "path": "/data/jialinzhang/SynthesizePipeline-server/DatasetNew/artifacts/data_core/tabular/m4/m4-dataset_profile.json", + "exists": true, + "size": 3336, + "sha256": "83e2764810e4a0e8cdece3a28dbd9134b7c9df6f2e56953e46d024ad2c4e035f" + }, + "contract_json": { + "path": "/data/jialinzhang/SynthesizePipeline-server/DatasetNew/artifacts/data_core/tabular/m4/m4-dataset_contract_v1.json", + "exists": true, + "size": 3810, + "sha256": "c23641b258629a845b164099bd0132886f8f6d0100e990494e0f92540f8987d9" + } + } +} \ No newline at end of file diff --git a/hyperparameter/m4/tabpfgen/tabpfgen-m4-20260505_030613/public_gate/normalized_schema_snapshot.json b/hyperparameter/m4/tabpfgen/tabpfgen-m4-20260505_030613/public_gate/normalized_schema_snapshot.json new file mode 100644 index 0000000000000000000000000000000000000000..31ed9818686b11907df75e872e4ffbe010330880 --- /dev/null +++ b/hyperparameter/m4/tabpfgen/tabpfgen-m4-20260505_030613/public_gate/normalized_schema_snapshot.json @@ -0,0 +1,147 @@ +{ + "dataset_id": "m4", + "target_column": "charges", + "task_type": "regression", + "columns": [ + { + "name": "age", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 47, + "unique_ratio": 0.0212, + "example_values": [ + "46", + "38", + "19", + "27", + "26" + ] + } + }, + { + "name": "sex", + "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.000902, + "example_values": [ + "female", + "male" + ] + } + }, + { + "name": "bmi", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 538, + "unique_ratio": 0.24267, + "example_values": [ + "23.655", + "19.3", + "30.59", + "32.67", + "29.45" + ] + } + }, + { + "name": "children", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 6, + "unique_ratio": 0.002706, + "example_values": [ + "1", + "0", + "3", + "2", + "5" + ] + } + }, + { + "name": "smoker", + "role": "feature", + "semantic_type": "boolean", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 2, + "unique_ratio": 0.000902, + "example_values": [ + "yes", + "no" + ] + } + }, + { + "name": "region", + "role": "feature", + "semantic_type": "categorical", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 4, + "unique_ratio": 0.001804, + "example_values": [ + "northwest", + "southwest", + "southeast", + "northeast" + ] + } + }, + { + "name": "charges", + "role": "target", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 1281, + "unique_ratio": 0.577808, + "example_values": [ + "21677.28345", + "15820.699", + "1639.5631", + "2497.0383", + "2897.3235" + ] + } + } + ] +} \ No newline at end of file diff --git a/hyperparameter/m4/tabpfgen/tabpfgen-m4-20260505_030613/public_gate/public_gate_report.json b/hyperparameter/m4/tabpfgen/tabpfgen-m4-20260505_030613/public_gate/public_gate_report.json new file mode 100644 index 0000000000000000000000000000000000000000..e7a25408e2574124629ea9437356551e4d6f4790 --- /dev/null +++ b/hyperparameter/m4/tabpfgen/tabpfgen-m4-20260505_030613/public_gate/public_gate_report.json @@ -0,0 +1,37 @@ +{ + "dataset_id": "m4", + "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": "charges", + "task_type": "regression", + "input_splits": { + "train": "/data/jialinzhang/SynthesizePipeline-server/DatasetNew/m4/m4-train.csv", + "val": "/data/jialinzhang/SynthesizePipeline-server/DatasetNew/m4/m4-val.csv", + "test": "/data/jialinzhang/SynthesizePipeline-server/DatasetNew/m4/m4-test.csv" + } +} \ No newline at end of file diff --git a/hyperparameter/m4/tabpfgen/tabpfgen-m4-20260505_030613/public_gate/staged_input_manifest.json b/hyperparameter/m4/tabpfgen/tabpfgen-m4-20260505_030613/public_gate/staged_input_manifest.json new file mode 100644 index 0000000000000000000000000000000000000000..371355ef62d2439cb4ea15fed87fb32751403653 --- /dev/null +++ b/hyperparameter/m4/tabpfgen/tabpfgen-m4-20260505_030613/public_gate/staged_input_manifest.json @@ -0,0 +1,152 @@ +{ + "dataset_id": "m4", + "target_column": "charges", + "task_type": "regression", + "train_csv": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/m4/tabpfgen/tabpfgen-m4-20260505_030613/staged/public/train.csv", + "val_csv": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/m4/tabpfgen/tabpfgen-m4-20260505_030613/staged/public/val.csv", + "test_csv": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/m4/tabpfgen/tabpfgen-m4-20260505_030613/staged/public/test.csv", + "features_json": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/m4/tabpfgen/tabpfgen-m4-20260505_030613/staged/public/staged_features.json", + "public_gate_report": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/m4/tabpfgen/tabpfgen-m4-20260505_030613/public_gate/public_gate_report.json", + "column_schema": [ + { + "name": "age", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 47, + "unique_ratio": 0.0212, + "example_values": [ + "46", + "38", + "19", + "27", + "26" + ] + } + }, + { + "name": "sex", + "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.000902, + "example_values": [ + "female", + "male" + ] + } + }, + { + "name": "bmi", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 538, + "unique_ratio": 0.24267, + "example_values": [ + "23.655", + "19.3", + "30.59", + "32.67", + "29.45" + ] + } + }, + { + "name": "children", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 6, + "unique_ratio": 0.002706, + "example_values": [ + "1", + "0", + "3", + "2", + "5" + ] + } + }, + { + "name": "smoker", + "role": "feature", + "semantic_type": "boolean", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 2, + "unique_ratio": 0.000902, + "example_values": [ + "yes", + "no" + ] + } + }, + { + "name": "region", + "role": "feature", + "semantic_type": "categorical", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 4, + "unique_ratio": 0.001804, + "example_values": [ + "northwest", + "southwest", + "southeast", + "northeast" + ] + } + }, + { + "name": "charges", + "role": "target", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 1281, + "unique_ratio": 0.577808, + "example_values": [ + "21677.28345", + "15820.699", + "1639.5631", + "2497.0383", + "2897.3235" + ] + } + } + ] +} \ No newline at end of file diff --git a/hyperparameter/m4/tabpfgen/tabpfgen-m4-20260505_030613/run_config.json b/hyperparameter/m4/tabpfgen/tabpfgen-m4-20260505_030613/run_config.json new file mode 100644 index 0000000000000000000000000000000000000000..4bd022257285cefd3ee41056984698faf94d60a2 --- /dev/null +++ b/hyperparameter/m4/tabpfgen/tabpfgen-m4-20260505_030613/run_config.json @@ -0,0 +1,43 @@ +{ + "schema_version": 1, + "recorded_at": "2026-05-05T03:06:13", + "dataset_id": "m4", + "model": "tabpfgen", + "work_dir": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/m4/tabpfgen/tabpfgen-m4-20260505_030613", + "dataset_source_requested": "new", + "dataset_source_resolved": "new", + "cli_args": { + "model": "tabpfgen", + "dataset": "m4", + "dataset_source": "new", + "train": true, + "generate": true, + "num_rows": 0, + "epochs": null, + "output_dir": null, + "model_dir": null, + "work_dir": null, + "resume": false, + "no_stats": false + }, + "resolved": { + "num_rows": 2217, + "model_path": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/m4/tabpfgen/tabpfgen-m4-20260505_030613", + "output_csv": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/m4/tabpfgen/tabpfgen-m4-20260505_030613/tabpfgen-m4-2217-20260505_030613.csv" + }, + "input_artifacts": { + "public_gate_report": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/m4/tabpfgen/tabpfgen-m4-20260505_030613/public_gate/public_gate_report.json", + "public_manifest": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/m4/tabpfgen/tabpfgen-m4-20260505_030613/public_gate/staged_input_manifest.json", + "model_manifest": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/m4/tabpfgen/tabpfgen-m4-20260505_030613/staged/tabpfgen/model_input_manifest.json", + "train_csv": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/m4/tabpfgen/tabpfgen-m4-20260505_030613/staged/public/train.csv", + "features_json": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/m4/tabpfgen/tabpfgen-m4-20260505_030613/staged/public/staged_features.json", + "target_column": "charges", + "task_type": "regression" + }, + "env_overrides": { + "BENCHMARK_TABPFGEN_GPUS": "device=3", + "TABPFGEN_DEVICE": "cuda", + "TABPFGEN_FIT_MAX_ROWS": "4096", + "TABPFGEN_GEN_CHUNK_ROWS": "256" + } +} \ No newline at end of file diff --git a/hyperparameter/m4/tabpfgen/tabpfgen-m4-20260505_030613/runtime_result.json b/hyperparameter/m4/tabpfgen/tabpfgen-m4-20260505_030613/runtime_result.json new file mode 100644 index 0000000000000000000000000000000000000000..4a0897904effeeb83721710226093d38ba28ea23 --- /dev/null +++ b/hyperparameter/m4/tabpfgen/tabpfgen-m4-20260505_030613/runtime_result.json @@ -0,0 +1,27 @@ +{ + "dataset_id": "m4", + "model": "tabpfgen", + "run_id": "tabpfgen-m4-20260505_030613", + "public_gate_status": "pass", + "adapter_ready_status": "pass", + "train_status": "success", + "generate_status": "success", + "reason_code": null, + "reason_detail": null, + "artifacts": { + "synthetic_csv": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/m4/tabpfgen/tabpfgen-m4-20260505_030613/tabpfgen-m4-2217-20260505_030613.csv", + "model_path": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/m4/tabpfgen/tabpfgen-m4-20260505_030613" + }, + "timings": { + "train": { + "started_at": "2026-05-05T03:06:13", + "ended_at": "2026-05-05T03:06:13", + "duration_sec": 0.021 + }, + "generate": { + "started_at": "2026-05-05T03:06:13", + "ended_at": "2026-05-05T03:06:49", + "duration_sec": 36.791 + } + } +} \ No newline at end of file diff --git a/hyperparameter/m4/tabpfgen/tabpfgen-m4-20260505_030613/staged/public/staged_features.json b/hyperparameter/m4/tabpfgen/tabpfgen-m4-20260505_030613/staged/public/staged_features.json new file mode 100644 index 0000000000000000000000000000000000000000..d6acd098c35111f423f3ffff2cfd1754bc5dfebc --- /dev/null +++ b/hyperparameter/m4/tabpfgen/tabpfgen-m4-20260505_030613/staged/public/staged_features.json @@ -0,0 +1,37 @@ +[ + { + "feature_name": "age", + "data_type": "continuous", + "is_target": false + }, + { + "feature_name": "sex", + "data_type": "categorical", + "is_target": false + }, + { + "feature_name": "bmi", + "data_type": "continuous", + "is_target": false + }, + { + "feature_name": "children", + "data_type": "continuous", + "is_target": false + }, + { + "feature_name": "smoker", + "data_type": "binary", + "is_target": false + }, + { + "feature_name": "region", + "data_type": "categorical", + "is_target": false + }, + { + "feature_name": "charges", + "data_type": "continuous", + "is_target": true + } +] \ No newline at end of file diff --git a/hyperparameter/m4/tabpfgen/tabpfgen-m4-20260505_030613/staged/public/test.csv b/hyperparameter/m4/tabpfgen/tabpfgen-m4-20260505_030613/staged/public/test.csv new file mode 100644 index 0000000000000000000000000000000000000000..c88a2e7cfcd715bb421cb56eb078033da45c4dc8 --- /dev/null +++ b/hyperparameter/m4/tabpfgen/tabpfgen-m4-20260505_030613/staged/public/test.csv @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:4c541b677fb2d45c5bc79338eeee9fd8c91484b195a0c2c546c2fbabf113b7ea +size 11298 diff --git a/hyperparameter/m4/tabpfgen/tabpfgen-m4-20260505_030613/staged/public/train.csv b/hyperparameter/m4/tabpfgen/tabpfgen-m4-20260505_030613/staged/public/train.csv new file mode 100644 index 0000000000000000000000000000000000000000..5a05019d786529e0617291766c4fbe016ca01bf5 --- /dev/null +++ b/hyperparameter/m4/tabpfgen/tabpfgen-m4-20260505_030613/staged/public/train.csv @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:614ebfac5f41d6f661aff675fa18c0f933a8d9bcc77ea71b7b2360c2f0155837 +size 90069 diff --git a/hyperparameter/m4/tabpfgen/tabpfgen-m4-20260505_030613/staged/public/val.csv b/hyperparameter/m4/tabpfgen/tabpfgen-m4-20260505_030613/staged/public/val.csv new file mode 100644 index 0000000000000000000000000000000000000000..d78fe5ad1537c437ba9ac2629f2aa60a6c17e708 --- /dev/null +++ b/hyperparameter/m4/tabpfgen/tabpfgen-m4-20260505_030613/staged/public/val.csv @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:e55f5edbe7942ff01630de91a9c70dfbc6445eba76c7b970350364546b67c2d7 +size 11218 diff --git a/hyperparameter/m4/tabpfgen/tabpfgen-m4-20260505_030613/staged/tabpfgen/adapter_report.json b/hyperparameter/m4/tabpfgen/tabpfgen-m4-20260505_030613/staged/tabpfgen/adapter_report.json new file mode 100644 index 0000000000000000000000000000000000000000..5d9a26ae90021abdc0cfebb7eafcbfa9b8de227a --- /dev/null +++ b/hyperparameter/m4/tabpfgen/tabpfgen-m4-20260505_030613/staged/tabpfgen/adapter_report.json @@ -0,0 +1,7 @@ +{ + "adapter_ready_status": "pass", + "adapter_fail_reason_code": null, + "adapter_fail_detail": null, + "adapter_transforms_applied": [], + "model_input_manifest": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/m4/tabpfgen/tabpfgen-m4-20260505_030613/staged/tabpfgen/model_input_manifest.json" +} \ No newline at end of file diff --git a/hyperparameter/m4/tabpfgen/tabpfgen-m4-20260505_030613/staged/tabpfgen/adapter_transforms_applied.json b/hyperparameter/m4/tabpfgen/tabpfgen-m4-20260505_030613/staged/tabpfgen/adapter_transforms_applied.json new file mode 100644 index 0000000000000000000000000000000000000000..0637a088a01e8ddab3bf3fa98dbe804cbde1a0dc --- /dev/null +++ b/hyperparameter/m4/tabpfgen/tabpfgen-m4-20260505_030613/staged/tabpfgen/adapter_transforms_applied.json @@ -0,0 +1 @@ +[] \ No newline at end of file diff --git a/hyperparameter/m4/tabpfgen/tabpfgen-m4-20260505_030613/staged/tabpfgen/model_input_manifest.json b/hyperparameter/m4/tabpfgen/tabpfgen-m4-20260505_030613/staged/tabpfgen/model_input_manifest.json new file mode 100644 index 0000000000000000000000000000000000000000..4f844cd87e830f19e198f3d85cdd01853d748263 --- /dev/null +++ b/hyperparameter/m4/tabpfgen/tabpfgen-m4-20260505_030613/staged/tabpfgen/model_input_manifest.json @@ -0,0 +1,154 @@ +{ + "dataset_id": "m4", + "model": "tabpfgen", + "target_column": "charges", + "task_type": "regression", + "column_schema": [ + { + "name": "age", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 47, + "unique_ratio": 0.0212, + "example_values": [ + "46", + "38", + "19", + "27", + "26" + ] + } + }, + { + "name": "sex", + "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.000902, + "example_values": [ + "female", + "male" + ] + } + }, + { + "name": "bmi", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 538, + "unique_ratio": 0.24267, + "example_values": [ + "23.655", + "19.3", + "30.59", + "32.67", + "29.45" + ] + } + }, + { + "name": "children", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 6, + "unique_ratio": 0.002706, + "example_values": [ + "1", + "0", + "3", + "2", + "5" + ] + } + }, + { + "name": "smoker", + "role": "feature", + "semantic_type": "boolean", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 2, + "unique_ratio": 0.000902, + "example_values": [ + "yes", + "no" + ] + } + }, + { + "name": "region", + "role": "feature", + "semantic_type": "categorical", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 4, + "unique_ratio": 0.001804, + "example_values": [ + "northwest", + "southwest", + "southeast", + "northeast" + ] + } + }, + { + "name": "charges", + "role": "target", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 1281, + "unique_ratio": 0.577808, + "example_values": [ + "21677.28345", + "15820.699", + "1639.5631", + "2497.0383", + "2897.3235" + ] + } + } + ], + "public_manifest": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/m4/tabpfgen/tabpfgen-m4-20260505_030613/public_gate/staged_input_manifest.json", + "train_csv": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/m4/tabpfgen/tabpfgen-m4-20260505_030613/staged/public/train.csv", + "val_csv": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/m4/tabpfgen/tabpfgen-m4-20260505_030613/staged/public/val.csv", + "test_csv": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/m4/tabpfgen/tabpfgen-m4-20260505_030613/staged/public/test.csv", + "features_json": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/m4/tabpfgen/tabpfgen-m4-20260505_030613/staged/public/staged_features.json", + "public_gate_report": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/m4/tabpfgen/tabpfgen-m4-20260505_030613/public_gate/public_gate_report.json" +} \ No newline at end of file diff --git a/hyperparameter/m4/tabpfgen/tabpfgen-m4-20260505_030613/tabpfgen-m4-2217-20260505_030613.csv b/hyperparameter/m4/tabpfgen/tabpfgen-m4-20260505_030613/tabpfgen-m4-2217-20260505_030613.csv new file mode 100644 index 0000000000000000000000000000000000000000..1d66500db9d42df89e23364ef05300a1821eeef8 --- /dev/null +++ b/hyperparameter/m4/tabpfgen/tabpfgen-m4-20260505_030613/tabpfgen-m4-2217-20260505_030613.csv @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:2fc9c407f88eab84fad91349a1d1d5ed21bffbe1c1e2925d94c9c3c9fa65762e +size 151325 diff --git a/hyperparameter/m4/tabpfgen/tabpfgen-m4-20260505_030613/tabpfgen_meta.json b/hyperparameter/m4/tabpfgen/tabpfgen-m4-20260505_030613/tabpfgen_meta.json new file mode 100644 index 0000000000000000000000000000000000000000..e38df456175aa38b17f24a9b8e3343ec1d291d23 --- /dev/null +++ b/hyperparameter/m4/tabpfgen/tabpfgen-m4-20260505_030613/tabpfgen_meta.json @@ -0,0 +1,9 @@ +{ + "csv_path": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/m4/tabpfgen/tabpfgen-m4-20260505_030613/staged/public/train.csv", + "json_path": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/m4/tabpfgen/tabpfgen-m4-20260505_030613/staged/public/staged_features.json", + "target_col": "charges", + "is_classification": false, + "task_type": "regression", + "n_rows": 2217, + "n_cols": 7 +} \ No newline at end of file diff --git a/hyperparameter/m4/tabpfgen/tabpfgen-m4-20260505_030613/train_20260505_030613.log b/hyperparameter/m4/tabpfgen/tabpfgen-m4-20260505_030613/train_20260505_030613.log new file mode 100644 index 0000000000000000000000000000000000000000..a8ad9eebf29c42b01eed819dd01524cf420336ec --- /dev/null +++ b/hyperparameter/m4/tabpfgen/tabpfgen-m4-20260505_030613/train_20260505_030613.log @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:14aea4672cf7c13dc2a5a28db1da48549b8cfba2404a3e71c4f829e2884de765 +size 595 diff --git a/hyperparameter/m4/tabsyn/tabsyn-m4-20260505_082359/_tabsyn_sample.py b/hyperparameter/m4/tabsyn/tabsyn-m4-20260505_082359/_tabsyn_sample.py new file mode 100644 index 0000000000000000000000000000000000000000..cb869c2a3783fa7e7a4201e027a17f50964c32b5 --- /dev/null +++ b/hyperparameter/m4/tabsyn/tabsyn-m4-20260505_082359/_tabsyn_sample.py @@ -0,0 +1,43 @@ +import os, sys, subprocess + +work_dir = "/work/output-Benchmark-trainonly-v1/m4/tabsyn/tabsyn-m4-20260505_082359" +dataname = "tabsyn_m4" +output_csv = "/work/output-Benchmark-trainonly-v1/m4/tabsyn/tabsyn-m4-20260505_082359/tabsyn-m4-2217-20260505_093640.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 2217 rows") +env = os.environ.copy() +env.setdefault("TABSYN_RESUME", "0") +env.setdefault("TABSYN_VAE_BATCH_SIZE", "32") +env.setdefault("TABSYN_VAE_EVAL_BATCH_SIZE", env["TABSYN_VAE_BATCH_SIZE"]) +env.setdefault("TABSYN_VAE_INFER_BATCH_SIZE", env["TABSYN_VAE_BATCH_SIZE"]) +env.setdefault("TABSYN_VAE_ENCODE_BATCH_SIZE", env["TABSYN_VAE_BATCH_SIZE"]) +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/hyperparameter/m4/tabsyn/tabsyn-m4-20260505_082359/_tabsyn_train.py b/hyperparameter/m4/tabsyn/tabsyn-m4-20260505_082359/_tabsyn_train.py new file mode 100644 index 0000000000000000000000000000000000000000..e1a899354189cd9d2db5ec9cb1cff89a6881ad28 --- /dev/null +++ b/hyperparameter/m4/tabsyn/tabsyn-m4-20260505_082359/_tabsyn_train.py @@ -0,0 +1,69 @@ +import os, sys, subprocess + +work_dir = "/work/output-Benchmark-trainonly-v1/m4/tabsyn/tabsyn-m4-20260505_082359" +dataname = "tabsyn_m4" +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", "0") +env.setdefault("TABSYN_VAE_BATCH_SIZE", "32") +env.setdefault("TABSYN_VAE_NUM_WORKERS", "0") +env.setdefault("TABSYN_VAE_EVAL_BATCH_SIZE", env["TABSYN_VAE_BATCH_SIZE"]) +env.setdefault("TABSYN_VAE_INFER_BATCH_SIZE", env["TABSYN_VAE_BATCH_SIZE"]) +env.setdefault("TABSYN_VAE_ENCODE_BATCH_SIZE", env["TABSYN_VAE_BATCH_SIZE"]) +# Safer defaults for wide tables on Docker: reduce shared-memory pressure in diffusion DataLoader. +env.setdefault("TABSYN_DIFFUSION_NUM_WORKERS", "0") +_te = None +if _te is not None: + env["TABSYN_VAE_EPOCHS"] = str(_te) + env["TABSYN_DIFFUSION_MAX_EPOCHS"] = str(max(_te + 1, 2)) + +# Data preprocessing is done on the host side (_prepare_data_dir) +# which creates .npy files, train/test CSVs, and info.json + +# Step 1: Train VAE (produces latent embeddings) +print(f"[TabSyn] Step 1/2: Training VAE in {tabsyn_root}, dataname={dataname}") +ret = subprocess.run( + [sys.executable, "main.py", + "--dataname", dataname, + "--mode", "train", + "--method", "vae", + "--gpu", "0"], + cwd=tabsyn_root, + env=env +) +if ret.returncode != 0: + print("[TabSyn] VAE training failed") + sys.exit(ret.returncode) + +# Step 2: Train diffusion model on latent space +print(f"[TabSyn] Step 2/2: Training diffusion model") +ret = subprocess.run( + [sys.executable, "main.py", + "--dataname", dataname, + "--mode", "train", + "--method", "tabsyn", + "--gpu", "0"], + cwd=tabsyn_root, + env=env +) +if ret.returncode != 0: + print("[TabSyn] Diffusion training failed") + sys.exit(ret.returncode) +print("[TabSyn] Training complete (VAE + Diffusion)") diff --git a/hyperparameter/m4/tabsyn/tabsyn-m4-20260505_082359/data/tabsyn_m4/X_cat_test.npy b/hyperparameter/m4/tabsyn/tabsyn-m4-20260505_082359/data/tabsyn_m4/X_cat_test.npy new file mode 100644 index 0000000000000000000000000000000000000000..35977ccea6d36736d37a5000108e57633f2bb227 --- /dev/null +++ b/hyperparameter/m4/tabsyn/tabsyn-m4-20260505_082359/data/tabsyn_m4/X_cat_test.npy @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:d8893cf5626d7469e90c946b0f59fca148a445e109a27fa5a2acdd425b6bb7d2 +size 53336 diff --git a/hyperparameter/m4/tabsyn/tabsyn-m4-20260505_082359/data/tabsyn_m4/X_cat_train.npy b/hyperparameter/m4/tabsyn/tabsyn-m4-20260505_082359/data/tabsyn_m4/X_cat_train.npy new file mode 100644 index 0000000000000000000000000000000000000000..35977ccea6d36736d37a5000108e57633f2bb227 --- /dev/null +++ b/hyperparameter/m4/tabsyn/tabsyn-m4-20260505_082359/data/tabsyn_m4/X_cat_train.npy @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:d8893cf5626d7469e90c946b0f59fca148a445e109a27fa5a2acdd425b6bb7d2 +size 53336 diff --git a/hyperparameter/m4/tabsyn/tabsyn-m4-20260505_082359/data/tabsyn_m4/X_num_test.npy b/hyperparameter/m4/tabsyn/tabsyn-m4-20260505_082359/data/tabsyn_m4/X_num_test.npy new file mode 100644 index 0000000000000000000000000000000000000000..dc149960a879e21fd1aeed7de2419851175627e7 --- /dev/null +++ b/hyperparameter/m4/tabsyn/tabsyn-m4-20260505_082359/data/tabsyn_m4/X_num_test.npy @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:4a21bd2fd5a226c07d543ddf78616a8edb2d52b51097fc7a5df5b05612267af8 +size 26732 diff --git a/hyperparameter/m4/tabsyn/tabsyn-m4-20260505_082359/data/tabsyn_m4/X_num_train.npy b/hyperparameter/m4/tabsyn/tabsyn-m4-20260505_082359/data/tabsyn_m4/X_num_train.npy new file mode 100644 index 0000000000000000000000000000000000000000..dc149960a879e21fd1aeed7de2419851175627e7 --- /dev/null +++ b/hyperparameter/m4/tabsyn/tabsyn-m4-20260505_082359/data/tabsyn_m4/X_num_train.npy @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:4a21bd2fd5a226c07d543ddf78616a8edb2d52b51097fc7a5df5b05612267af8 +size 26732 diff --git a/hyperparameter/m4/tabsyn/tabsyn-m4-20260505_082359/data/tabsyn_m4/info.json b/hyperparameter/m4/tabsyn/tabsyn-m4-20260505_082359/data/tabsyn_m4/info.json new file mode 100644 index 0000000000000000000000000000000000000000..a6affaecfbfc8f45e63d3ab86bbffb378c04caa5 --- /dev/null +++ b/hyperparameter/m4/tabsyn/tabsyn-m4-20260505_082359/data/tabsyn_m4/info.json @@ -0,0 +1,91 @@ +{ + "name": "tabsyn_m4", + "task_type": "regression", + "n_num_features": 3, + "n_cat_features": 3, + "train_size": 2217, + "num_col_idx": [ + 0, + 2, + 3 + ], + "cat_col_idx": [ + 1, + 4, + 5 + ], + "target_col_idx": [ + 6 + ], + "column_names": [ + "age", + "sex", + "bmi", + "children", + "smoker", + "region", + "charges" + ], + "train_num": 2217, + "test_num": 2217, + "header": 0, + "file_type": "csv", + "data_path": "data/tabsyn_m4/train.csv", + "test_path": null, + "idx_mapping": { + "0": 0, + "1": 3, + "2": 1, + "3": 2, + "4": 4, + "5": 5, + "6": 6 + }, + "inverse_idx_mapping": { + "0": 0, + "3": 1, + "1": 2, + "2": 3, + "4": 4, + "5": 5, + "6": 6 + }, + "idx_name_mapping": { + "0": "age", + "1": "sex", + "2": "bmi", + "3": "children", + "4": "smoker", + "5": "region", + "6": "charges" + }, + "metadata": { + "columns": { + "0": { + "sdtype": "numerical", + "computer_representation": "Float" + }, + "2": { + "sdtype": "numerical", + "computer_representation": "Float" + }, + "3": { + "sdtype": "numerical", + "computer_representation": "Float" + }, + "1": { + "sdtype": "categorical" + }, + "4": { + "sdtype": "categorical" + }, + "5": { + "sdtype": "categorical" + }, + "6": { + "sdtype": "numerical", + "computer_representation": "Float" + } + } + } +} \ No newline at end of file diff --git a/hyperparameter/m4/tabsyn/tabsyn-m4-20260505_082359/data/tabsyn_m4/test.csv b/hyperparameter/m4/tabsyn/tabsyn-m4-20260505_082359/data/tabsyn_m4/test.csv new file mode 100644 index 0000000000000000000000000000000000000000..152c9a200d3e5ce590ed1621c80749a36fc97e13 --- /dev/null +++ b/hyperparameter/m4/tabsyn/tabsyn-m4-20260505_082359/data/tabsyn_m4/test.csv @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:67f64f75063e2f8d838d7f7040ebc12f8c46df4dc54450874b851786224ba875 +size 60802 diff --git a/hyperparameter/m4/tabsyn/tabsyn-m4-20260505_082359/data/tabsyn_m4/train.csv b/hyperparameter/m4/tabsyn/tabsyn-m4-20260505_082359/data/tabsyn_m4/train.csv new file mode 100644 index 0000000000000000000000000000000000000000..152c9a200d3e5ce590ed1621c80749a36fc97e13 --- /dev/null +++ b/hyperparameter/m4/tabsyn/tabsyn-m4-20260505_082359/data/tabsyn_m4/train.csv @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:67f64f75063e2f8d838d7f7040ebc12f8c46df4dc54450874b851786224ba875 +size 60802 diff --git a/hyperparameter/m4/tabsyn/tabsyn-m4-20260505_082359/data/tabsyn_m4/y_test.npy b/hyperparameter/m4/tabsyn/tabsyn-m4-20260505_082359/data/tabsyn_m4/y_test.npy new file mode 100644 index 0000000000000000000000000000000000000000..c1d23d8e35b403e2d772e5544af9d68ff32a8ea0 --- /dev/null +++ b/hyperparameter/m4/tabsyn/tabsyn-m4-20260505_082359/data/tabsyn_m4/y_test.npy @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:4d6e4ad93beee28740cc25ee808a180c01fa94a053f79ff383504888f2d8f39e +size 17864 diff --git a/hyperparameter/m4/tabsyn/tabsyn-m4-20260505_082359/data/tabsyn_m4/y_train.npy b/hyperparameter/m4/tabsyn/tabsyn-m4-20260505_082359/data/tabsyn_m4/y_train.npy new file mode 100644 index 0000000000000000000000000000000000000000..c1d23d8e35b403e2d772e5544af9d68ff32a8ea0 --- /dev/null +++ b/hyperparameter/m4/tabsyn/tabsyn-m4-20260505_082359/data/tabsyn_m4/y_train.npy @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:4d6e4ad93beee28740cc25ee808a180c01fa94a053f79ff383504888f2d8f39e +size 17864 diff --git a/hyperparameter/m4/tabsyn/tabsyn-m4-20260505_082359/gen_20260505_093640.log b/hyperparameter/m4/tabsyn/tabsyn-m4-20260505_082359/gen_20260505_093640.log new file mode 100644 index 0000000000000000000000000000000000000000..7141213fccf81441c511b29e717a0e3a9432c969 --- /dev/null +++ b/hyperparameter/m4/tabsyn/tabsyn-m4-20260505_082359/gen_20260505_093640.log @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:ed2b152067232d4a367002e7369730a2481174a65b61c6a54fdd2dcae1592544 +size 929 diff --git a/hyperparameter/m4/tabsyn/tabsyn-m4-20260505_082359/input_snapshot.json b/hyperparameter/m4/tabsyn/tabsyn-m4-20260505_082359/input_snapshot.json new file mode 100644 index 0000000000000000000000000000000000000000..21fe15b6e6863f7441ca4017d82218a03e3a90b4 --- /dev/null +++ b/hyperparameter/m4/tabsyn/tabsyn-m4-20260505_082359/input_snapshot.json @@ -0,0 +1,36 @@ +{ + "dataset_id": "m4", + "model": "tabsyn", + "inputs": { + "train_csv": { + "path": "/data/jialinzhang/SynthesizePipeline-server/DatasetNew/m4/m4-train.csv", + "exists": true, + "size": 92191, + "sha256": "396b9d409ca21bf4a4cd329bdf5b7796aa0ae6356fa8d89b8eb669b5880b81f1" + }, + "val_csv": { + "path": "/data/jialinzhang/SynthesizePipeline-server/DatasetNew/m4/m4-val.csv", + "exists": true, + "size": 11482, + "sha256": "ee3c247d02f56e1687d03c381e13125d6a3a2a411ac7f202ba8520a4be9f1784" + }, + "test_csv": { + "path": "/data/jialinzhang/SynthesizePipeline-server/DatasetNew/m4/m4-test.csv", + "exists": true, + "size": 11559, + "sha256": "cadb9941124001b8fa7cb1ebae43b70a9ca56294f4df4d3c2f22c164c41757d4" + }, + "profile_json": { + "path": "/data/jialinzhang/SynthesizePipeline-server/DatasetNew/artifacts/data_core/tabular/m4/m4-dataset_profile.json", + "exists": true, + "size": 3336, + "sha256": "83e2764810e4a0e8cdece3a28dbd9134b7c9df6f2e56953e46d024ad2c4e035f" + }, + "contract_json": { + "path": "/data/jialinzhang/SynthesizePipeline-server/DatasetNew/artifacts/data_core/tabular/m4/m4-dataset_contract_v1.json", + "exists": true, + "size": 3810, + "sha256": "c23641b258629a845b164099bd0132886f8f6d0100e990494e0f92540f8987d9" + } + } +} \ No newline at end of file diff --git a/hyperparameter/m4/tabsyn/tabsyn-m4-20260505_082359/public_gate/normalized_schema_snapshot.json b/hyperparameter/m4/tabsyn/tabsyn-m4-20260505_082359/public_gate/normalized_schema_snapshot.json new file mode 100644 index 0000000000000000000000000000000000000000..31ed9818686b11907df75e872e4ffbe010330880 --- /dev/null +++ b/hyperparameter/m4/tabsyn/tabsyn-m4-20260505_082359/public_gate/normalized_schema_snapshot.json @@ -0,0 +1,147 @@ +{ + "dataset_id": "m4", + "target_column": "charges", + "task_type": "regression", + "columns": [ + { + "name": "age", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 47, + "unique_ratio": 0.0212, + "example_values": [ + "46", + "38", + "19", + "27", + "26" + ] + } + }, + { + "name": "sex", + "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.000902, + "example_values": [ + "female", + "male" + ] + } + }, + { + "name": "bmi", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 538, + "unique_ratio": 0.24267, + "example_values": [ + "23.655", + "19.3", + "30.59", + "32.67", + "29.45" + ] + } + }, + { + "name": "children", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 6, + "unique_ratio": 0.002706, + "example_values": [ + "1", + "0", + "3", + "2", + "5" + ] + } + }, + { + "name": "smoker", + "role": "feature", + "semantic_type": "boolean", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 2, + "unique_ratio": 0.000902, + "example_values": [ + "yes", + "no" + ] + } + }, + { + "name": "region", + "role": "feature", + "semantic_type": "categorical", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 4, + "unique_ratio": 0.001804, + "example_values": [ + "northwest", + "southwest", + "southeast", + "northeast" + ] + } + }, + { + "name": "charges", + "role": "target", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 1281, + "unique_ratio": 0.577808, + "example_values": [ + "21677.28345", + "15820.699", + "1639.5631", + "2497.0383", + "2897.3235" + ] + } + } + ] +} \ No newline at end of file diff --git a/hyperparameter/m4/tabsyn/tabsyn-m4-20260505_082359/public_gate/public_gate_report.json b/hyperparameter/m4/tabsyn/tabsyn-m4-20260505_082359/public_gate/public_gate_report.json new file mode 100644 index 0000000000000000000000000000000000000000..e7a25408e2574124629ea9437356551e4d6f4790 --- /dev/null +++ b/hyperparameter/m4/tabsyn/tabsyn-m4-20260505_082359/public_gate/public_gate_report.json @@ -0,0 +1,37 @@ +{ + "dataset_id": "m4", + "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": "charges", + "task_type": "regression", + "input_splits": { + "train": "/data/jialinzhang/SynthesizePipeline-server/DatasetNew/m4/m4-train.csv", + "val": "/data/jialinzhang/SynthesizePipeline-server/DatasetNew/m4/m4-val.csv", + "test": "/data/jialinzhang/SynthesizePipeline-server/DatasetNew/m4/m4-test.csv" + } +} \ No newline at end of file diff --git a/hyperparameter/m4/tabsyn/tabsyn-m4-20260505_082359/public_gate/staged_input_manifest.json b/hyperparameter/m4/tabsyn/tabsyn-m4-20260505_082359/public_gate/staged_input_manifest.json new file mode 100644 index 0000000000000000000000000000000000000000..2f745cc5da4a0326e6ae18f555b4a459102cc029 --- /dev/null +++ b/hyperparameter/m4/tabsyn/tabsyn-m4-20260505_082359/public_gate/staged_input_manifest.json @@ -0,0 +1,152 @@ +{ + "dataset_id": "m4", + "target_column": "charges", + "task_type": "regression", + "train_csv": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/m4/tabsyn/tabsyn-m4-20260505_082359/staged/public/train.csv", + "val_csv": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/m4/tabsyn/tabsyn-m4-20260505_082359/staged/public/val.csv", + "test_csv": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/m4/tabsyn/tabsyn-m4-20260505_082359/staged/public/test.csv", + "features_json": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/m4/tabsyn/tabsyn-m4-20260505_082359/staged/public/staged_features.json", + "public_gate_report": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/m4/tabsyn/tabsyn-m4-20260505_082359/public_gate/public_gate_report.json", + "column_schema": [ + { + "name": "age", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 47, + "unique_ratio": 0.0212, + "example_values": [ + "46", + "38", + "19", + "27", + "26" + ] + } + }, + { + "name": "sex", + "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.000902, + "example_values": [ + "female", + "male" + ] + } + }, + { + "name": "bmi", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 538, + "unique_ratio": 0.24267, + "example_values": [ + "23.655", + "19.3", + "30.59", + "32.67", + "29.45" + ] + } + }, + { + "name": "children", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 6, + "unique_ratio": 0.002706, + "example_values": [ + "1", + "0", + "3", + "2", + "5" + ] + } + }, + { + "name": "smoker", + "role": "feature", + "semantic_type": "boolean", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 2, + "unique_ratio": 0.000902, + "example_values": [ + "yes", + "no" + ] + } + }, + { + "name": "region", + "role": "feature", + "semantic_type": "categorical", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 4, + "unique_ratio": 0.001804, + "example_values": [ + "northwest", + "southwest", + "southeast", + "northeast" + ] + } + }, + { + "name": "charges", + "role": "target", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 1281, + "unique_ratio": 0.577808, + "example_values": [ + "21677.28345", + "15820.699", + "1639.5631", + "2497.0383", + "2897.3235" + ] + } + } + ] +} \ No newline at end of file diff --git a/hyperparameter/m4/tabsyn/tabsyn-m4-20260505_082359/run_config.json b/hyperparameter/m4/tabsyn/tabsyn-m4-20260505_082359/run_config.json new file mode 100644 index 0000000000000000000000000000000000000000..b54f04fed07c8f78f239da8f8c64524e50c82d5d --- /dev/null +++ b/hyperparameter/m4/tabsyn/tabsyn-m4-20260505_082359/run_config.json @@ -0,0 +1,48 @@ +{ + "schema_version": 1, + "recorded_at": "2026-05-05T08:23:59", + "dataset_id": "m4", + "model": "tabsyn", + "work_dir": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/m4/tabsyn/tabsyn-m4-20260505_082359", + "dataset_source_requested": "new", + "dataset_source_resolved": "new", + "cli_args": { + "model": "tabsyn", + "dataset": "m4", + "dataset_source": "new", + "train": true, + "generate": true, + "num_rows": 0, + "epochs": null, + "output_dir": null, + "model_dir": null, + "work_dir": null, + "resume": false, + "no_stats": false + }, + "resolved": { + "num_rows": 2217, + "model_path": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/m4/tabsyn/tabsyn-m4-20260505_082359", + "output_csv": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/m4/tabsyn/tabsyn-m4-20260505_082359/tabsyn-m4-2217-20260505_093640.csv" + }, + "input_artifacts": { + "public_gate_report": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/m4/tabsyn/tabsyn-m4-20260505_082359/public_gate/public_gate_report.json", + "public_manifest": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/m4/tabsyn/tabsyn-m4-20260505_082359/public_gate/staged_input_manifest.json", + "model_manifest": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/m4/tabsyn/tabsyn-m4-20260505_082359/staged/tabsyn/model_input_manifest.json", + "train_csv": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/m4/tabsyn/tabsyn-m4-20260505_082359/staged/public/train.csv", + "features_json": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/m4/tabsyn/tabsyn-m4-20260505_082359/staged/public/staged_features.json", + "target_column": "charges", + "task_type": "regression" + }, + "env_overrides": { + "BENCHMARK_TABSYN_GPUS": "device=3", + "TABSYN_DIFFUSION_MAX_EPOCHS": "3", + "TABSYN_RESUME": "0", + "TABSYN_VAE_BATCH_SIZE": "128", + "TABSYN_VAE_ENCODE_BATCH_SIZE": "256", + "TABSYN_VAE_EPOCHS": "3", + "TABSYN_VAE_EVAL_BATCH_SIZE": "256", + "TABSYN_VAE_INFER_BATCH_SIZE": "256", + "TABSYN_VAE_NUM_WORKERS": "0" + } +} \ No newline at end of file diff --git a/hyperparameter/m4/tabsyn/tabsyn-m4-20260505_082359/runtime_result.json b/hyperparameter/m4/tabsyn/tabsyn-m4-20260505_082359/runtime_result.json new file mode 100644 index 0000000000000000000000000000000000000000..dba0d2391a0da89e57ecc073694b0867f7b8f8c3 --- /dev/null +++ b/hyperparameter/m4/tabsyn/tabsyn-m4-20260505_082359/runtime_result.json @@ -0,0 +1,27 @@ +{ + "dataset_id": "m4", + "model": "tabsyn", + "run_id": "tabsyn-m4-20260505_082359", + "public_gate_status": "pass", + "adapter_ready_status": "pass", + "train_status": "success", + "generate_status": "success", + "reason_code": null, + "reason_detail": null, + "artifacts": { + "synthetic_csv": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/m4/tabsyn/tabsyn-m4-20260505_082359/tabsyn-m4-2217-20260505_093640.csv", + "model_path": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/m4/tabsyn/tabsyn-m4-20260505_082359" + }, + "timings": { + "train": { + "started_at": "2026-05-05T08:23:59", + "ended_at": "2026-05-05T09:36:40", + "duration_sec": 4360.671 + }, + "generate": { + "started_at": "2026-05-05T09:36:40", + "ended_at": "2026-05-05T09:36:45", + "duration_sec": 5.278 + } + } +} \ No newline at end of file diff --git a/hyperparameter/m4/tabsyn/tabsyn-m4-20260505_082359/staged/public/staged_features.json b/hyperparameter/m4/tabsyn/tabsyn-m4-20260505_082359/staged/public/staged_features.json new file mode 100644 index 0000000000000000000000000000000000000000..d6acd098c35111f423f3ffff2cfd1754bc5dfebc --- /dev/null +++ b/hyperparameter/m4/tabsyn/tabsyn-m4-20260505_082359/staged/public/staged_features.json @@ -0,0 +1,37 @@ +[ + { + "feature_name": "age", + "data_type": "continuous", + "is_target": false + }, + { + "feature_name": "sex", + "data_type": "categorical", + "is_target": false + }, + { + "feature_name": "bmi", + "data_type": "continuous", + "is_target": false + }, + { + "feature_name": "children", + "data_type": "continuous", + "is_target": false + }, + { + "feature_name": "smoker", + "data_type": "binary", + "is_target": false + }, + { + "feature_name": "region", + "data_type": "categorical", + "is_target": false + }, + { + "feature_name": "charges", + "data_type": "continuous", + "is_target": true + } +] \ No newline at end of file diff --git a/hyperparameter/m4/tabsyn/tabsyn-m4-20260505_082359/staged/public/test.csv b/hyperparameter/m4/tabsyn/tabsyn-m4-20260505_082359/staged/public/test.csv new file mode 100644 index 0000000000000000000000000000000000000000..c88a2e7cfcd715bb421cb56eb078033da45c4dc8 --- /dev/null +++ b/hyperparameter/m4/tabsyn/tabsyn-m4-20260505_082359/staged/public/test.csv @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:4c541b677fb2d45c5bc79338eeee9fd8c91484b195a0c2c546c2fbabf113b7ea +size 11298 diff --git a/hyperparameter/m4/tabsyn/tabsyn-m4-20260505_082359/staged/public/train.csv b/hyperparameter/m4/tabsyn/tabsyn-m4-20260505_082359/staged/public/train.csv new file mode 100644 index 0000000000000000000000000000000000000000..5a05019d786529e0617291766c4fbe016ca01bf5 --- /dev/null +++ b/hyperparameter/m4/tabsyn/tabsyn-m4-20260505_082359/staged/public/train.csv @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:614ebfac5f41d6f661aff675fa18c0f933a8d9bcc77ea71b7b2360c2f0155837 +size 90069 diff --git a/hyperparameter/m4/tabsyn/tabsyn-m4-20260505_082359/staged/public/val.csv b/hyperparameter/m4/tabsyn/tabsyn-m4-20260505_082359/staged/public/val.csv new file mode 100644 index 0000000000000000000000000000000000000000..d78fe5ad1537c437ba9ac2629f2aa60a6c17e708 --- /dev/null +++ b/hyperparameter/m4/tabsyn/tabsyn-m4-20260505_082359/staged/public/val.csv @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:e55f5edbe7942ff01630de91a9c70dfbc6445eba76c7b970350364546b67c2d7 +size 11218 diff --git a/hyperparameter/m4/tabsyn/tabsyn-m4-20260505_082359/staged/tabsyn/adapter_report.json b/hyperparameter/m4/tabsyn/tabsyn-m4-20260505_082359/staged/tabsyn/adapter_report.json new file mode 100644 index 0000000000000000000000000000000000000000..42869da0358400da628815432b17f17ec190594d --- /dev/null +++ b/hyperparameter/m4/tabsyn/tabsyn-m4-20260505_082359/staged/tabsyn/adapter_report.json @@ -0,0 +1,7 @@ +{ + "adapter_ready_status": "pass", + "adapter_fail_reason_code": null, + "adapter_fail_detail": null, + "adapter_transforms_applied": [], + "model_input_manifest": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/m4/tabsyn/tabsyn-m4-20260505_082359/staged/tabsyn/model_input_manifest.json" +} \ No newline at end of file diff --git a/hyperparameter/m4/tabsyn/tabsyn-m4-20260505_082359/staged/tabsyn/adapter_transforms_applied.json b/hyperparameter/m4/tabsyn/tabsyn-m4-20260505_082359/staged/tabsyn/adapter_transforms_applied.json new file mode 100644 index 0000000000000000000000000000000000000000..0637a088a01e8ddab3bf3fa98dbe804cbde1a0dc --- /dev/null +++ b/hyperparameter/m4/tabsyn/tabsyn-m4-20260505_082359/staged/tabsyn/adapter_transforms_applied.json @@ -0,0 +1 @@ +[] \ No newline at end of file diff --git a/hyperparameter/m4/tabsyn/tabsyn-m4-20260505_082359/staged/tabsyn/model_input_manifest.json b/hyperparameter/m4/tabsyn/tabsyn-m4-20260505_082359/staged/tabsyn/model_input_manifest.json new file mode 100644 index 0000000000000000000000000000000000000000..283df4bae83f66545dfe012b3710aeda296babb3 --- /dev/null +++ b/hyperparameter/m4/tabsyn/tabsyn-m4-20260505_082359/staged/tabsyn/model_input_manifest.json @@ -0,0 +1,154 @@ +{ + "dataset_id": "m4", + "model": "tabsyn", + "target_column": "charges", + "task_type": "regression", + "column_schema": [ + { + "name": "age", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 47, + "unique_ratio": 0.0212, + "example_values": [ + "46", + "38", + "19", + "27", + "26" + ] + } + }, + { + "name": "sex", + "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.000902, + "example_values": [ + "female", + "male" + ] + } + }, + { + "name": "bmi", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 538, + "unique_ratio": 0.24267, + "example_values": [ + "23.655", + "19.3", + "30.59", + "32.67", + "29.45" + ] + } + }, + { + "name": "children", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 6, + "unique_ratio": 0.002706, + "example_values": [ + "1", + "0", + "3", + "2", + "5" + ] + } + }, + { + "name": "smoker", + "role": "feature", + "semantic_type": "boolean", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 2, + "unique_ratio": 0.000902, + "example_values": [ + "yes", + "no" + ] + } + }, + { + "name": "region", + "role": "feature", + "semantic_type": "categorical", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 4, + "unique_ratio": 0.001804, + "example_values": [ + "northwest", + "southwest", + "southeast", + "northeast" + ] + } + }, + { + "name": "charges", + "role": "target", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 1281, + "unique_ratio": 0.577808, + "example_values": [ + "21677.28345", + "15820.699", + "1639.5631", + "2497.0383", + "2897.3235" + ] + } + } + ], + "public_manifest": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/m4/tabsyn/tabsyn-m4-20260505_082359/public_gate/staged_input_manifest.json", + "train_csv": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/m4/tabsyn/tabsyn-m4-20260505_082359/staged/public/train.csv", + "val_csv": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/m4/tabsyn/tabsyn-m4-20260505_082359/staged/public/val.csv", + "test_csv": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/m4/tabsyn/tabsyn-m4-20260505_082359/staged/public/test.csv", + "features_json": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/m4/tabsyn/tabsyn-m4-20260505_082359/staged/public/staged_features.json", + "public_gate_report": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/m4/tabsyn/tabsyn-m4-20260505_082359/public_gate/public_gate_report.json" +} \ No newline at end of file diff --git a/hyperparameter/m4/tabsyn/tabsyn-m4-20260505_082359/synthetic/tabsyn_m4/real.csv b/hyperparameter/m4/tabsyn/tabsyn-m4-20260505_082359/synthetic/tabsyn_m4/real.csv new file mode 100644 index 0000000000000000000000000000000000000000..152c9a200d3e5ce590ed1621c80749a36fc97e13 --- /dev/null +++ b/hyperparameter/m4/tabsyn/tabsyn-m4-20260505_082359/synthetic/tabsyn_m4/real.csv @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:67f64f75063e2f8d838d7f7040ebc12f8c46df4dc54450874b851786224ba875 +size 60802 diff --git a/hyperparameter/m4/tabsyn/tabsyn-m4-20260505_082359/synthetic/tabsyn_m4/test.csv b/hyperparameter/m4/tabsyn/tabsyn-m4-20260505_082359/synthetic/tabsyn_m4/test.csv new file mode 100644 index 0000000000000000000000000000000000000000..152c9a200d3e5ce590ed1621c80749a36fc97e13 --- /dev/null +++ b/hyperparameter/m4/tabsyn/tabsyn-m4-20260505_082359/synthetic/tabsyn_m4/test.csv @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:67f64f75063e2f8d838d7f7040ebc12f8c46df4dc54450874b851786224ba875 +size 60802 diff --git a/hyperparameter/m4/tabsyn/tabsyn-m4-20260505_082359/tabsyn-m4-2217-20260505_093640.csv b/hyperparameter/m4/tabsyn/tabsyn-m4-20260505_082359/tabsyn-m4-2217-20260505_093640.csv new file mode 100644 index 0000000000000000000000000000000000000000..854ff5efe78943a4b8c2516f7df1d797e9af1f81 --- /dev/null +++ b/hyperparameter/m4/tabsyn/tabsyn-m4-20260505_082359/tabsyn-m4-2217-20260505_093640.csv @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:292b0e32b46c48502eb96fdbdb958f17a727ab376e054e27d2df5b36f347f0f4 +size 83400 diff --git a/hyperparameter/m4/tabsyn/tabsyn-m4-20260505_082359/train_20260505_082359.log b/hyperparameter/m4/tabsyn/tabsyn-m4-20260505_082359/train_20260505_082359.log new file mode 100644 index 0000000000000000000000000000000000000000..8ebfbaf8e4c0d2f750612ba9db5b31c023dfed70 --- /dev/null +++ b/hyperparameter/m4/tabsyn/tabsyn-m4-20260505_082359/train_20260505_082359.log @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:4c8c880efe4a8fd4241f4b8d706056c471e4f2909a1f9445b8e00463c06a6767 +size 4086914 diff --git a/hyperparameter/m4/tabsyn/tabsyn-m4-20260505_182735/_tabsyn_sample.py b/hyperparameter/m4/tabsyn/tabsyn-m4-20260505_182735/_tabsyn_sample.py new file mode 100644 index 0000000000000000000000000000000000000000..c56b2e52759e2abbe70ee8f6e4b33d07f13e2973 --- /dev/null +++ b/hyperparameter/m4/tabsyn/tabsyn-m4-20260505_182735/_tabsyn_sample.py @@ -0,0 +1,43 @@ +import os, sys, subprocess + +work_dir = "/work/output-Benchmark-trainonly-v1/m4/tabsyn/tabsyn-m4-20260505_182735" +dataname = "tabsyn_m4_tabsyn_m4_20260505_182735" +output_csv = "/work/output-Benchmark-trainonly-v1/m4/tabsyn/tabsyn-m4-20260505_182735/tabsyn-m4-2217-20260505_182747.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 2217 rows") +env = os.environ.copy() +env.setdefault("TABSYN_RESUME", "0") +env.setdefault("TABSYN_VAE_BATCH_SIZE", "32") +env.setdefault("TABSYN_VAE_EVAL_BATCH_SIZE", env["TABSYN_VAE_BATCH_SIZE"]) +env.setdefault("TABSYN_VAE_INFER_BATCH_SIZE", env["TABSYN_VAE_BATCH_SIZE"]) +env.setdefault("TABSYN_VAE_ENCODE_BATCH_SIZE", env["TABSYN_VAE_BATCH_SIZE"]) +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/hyperparameter/m4/tabsyn/tabsyn-m4-20260505_182735/_tabsyn_train.py b/hyperparameter/m4/tabsyn/tabsyn-m4-20260505_182735/_tabsyn_train.py new file mode 100644 index 0000000000000000000000000000000000000000..e50dfe87b466ce7cecdd9e8755988b6b7932c421 --- /dev/null +++ b/hyperparameter/m4/tabsyn/tabsyn-m4-20260505_182735/_tabsyn_train.py @@ -0,0 +1,69 @@ +import os, sys, subprocess + +work_dir = "/work/output-Benchmark-trainonly-v1/m4/tabsyn/tabsyn-m4-20260505_182735" +dataname = "tabsyn_m4_tabsyn_m4_20260505_182735" +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", "0") +env.setdefault("TABSYN_VAE_BATCH_SIZE", "32") +env.setdefault("TABSYN_VAE_NUM_WORKERS", "0") +env.setdefault("TABSYN_VAE_EVAL_BATCH_SIZE", env["TABSYN_VAE_BATCH_SIZE"]) +env.setdefault("TABSYN_VAE_INFER_BATCH_SIZE", env["TABSYN_VAE_BATCH_SIZE"]) +env.setdefault("TABSYN_VAE_ENCODE_BATCH_SIZE", env["TABSYN_VAE_BATCH_SIZE"]) +# Safer defaults for wide tables on Docker: reduce shared-memory pressure in diffusion DataLoader. +env.setdefault("TABSYN_DIFFUSION_NUM_WORKERS", "0") +_te = None +if _te is not None: + env["TABSYN_VAE_EPOCHS"] = str(_te) + env["TABSYN_DIFFUSION_MAX_EPOCHS"] = str(max(_te + 1, 2)) + +# Data preprocessing is done on the host side (_prepare_data_dir) +# which creates .npy files, train/test CSVs, and info.json + +# Step 1: Train VAE (produces latent embeddings) +print(f"[TabSyn] Step 1/2: Training VAE in {tabsyn_root}, dataname={dataname}") +ret = subprocess.run( + [sys.executable, "main.py", + "--dataname", dataname, + "--mode", "train", + "--method", "vae", + "--gpu", "0"], + cwd=tabsyn_root, + env=env +) +if ret.returncode != 0: + print("[TabSyn] VAE training failed") + sys.exit(ret.returncode) + +# Step 2: Train diffusion model on latent space +print(f"[TabSyn] Step 2/2: Training diffusion model") +ret = subprocess.run( + [sys.executable, "main.py", + "--dataname", dataname, + "--mode", "train", + "--method", "tabsyn", + "--gpu", "0"], + cwd=tabsyn_root, + env=env +) +if ret.returncode != 0: + print("[TabSyn] Diffusion training failed") + sys.exit(ret.returncode) +print("[TabSyn] Training complete (VAE + Diffusion)") diff --git a/hyperparameter/m4/tabsyn/tabsyn-m4-20260505_182735/data/tabsyn_m4_tabsyn_m4_20260505_182735/X_cat_test.npy b/hyperparameter/m4/tabsyn/tabsyn-m4-20260505_182735/data/tabsyn_m4_tabsyn_m4_20260505_182735/X_cat_test.npy new file mode 100644 index 0000000000000000000000000000000000000000..35977ccea6d36736d37a5000108e57633f2bb227 --- /dev/null +++ b/hyperparameter/m4/tabsyn/tabsyn-m4-20260505_182735/data/tabsyn_m4_tabsyn_m4_20260505_182735/X_cat_test.npy @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:d8893cf5626d7469e90c946b0f59fca148a445e109a27fa5a2acdd425b6bb7d2 +size 53336 diff --git a/hyperparameter/m4/tabsyn/tabsyn-m4-20260505_182735/data/tabsyn_m4_tabsyn_m4_20260505_182735/X_cat_train.npy b/hyperparameter/m4/tabsyn/tabsyn-m4-20260505_182735/data/tabsyn_m4_tabsyn_m4_20260505_182735/X_cat_train.npy new file mode 100644 index 0000000000000000000000000000000000000000..35977ccea6d36736d37a5000108e57633f2bb227 --- /dev/null +++ b/hyperparameter/m4/tabsyn/tabsyn-m4-20260505_182735/data/tabsyn_m4_tabsyn_m4_20260505_182735/X_cat_train.npy @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:d8893cf5626d7469e90c946b0f59fca148a445e109a27fa5a2acdd425b6bb7d2 +size 53336 diff --git a/hyperparameter/m4/tabsyn/tabsyn-m4-20260505_182735/data/tabsyn_m4_tabsyn_m4_20260505_182735/X_num_test.npy b/hyperparameter/m4/tabsyn/tabsyn-m4-20260505_182735/data/tabsyn_m4_tabsyn_m4_20260505_182735/X_num_test.npy new file mode 100644 index 0000000000000000000000000000000000000000..dc149960a879e21fd1aeed7de2419851175627e7 --- /dev/null +++ b/hyperparameter/m4/tabsyn/tabsyn-m4-20260505_182735/data/tabsyn_m4_tabsyn_m4_20260505_182735/X_num_test.npy @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:4a21bd2fd5a226c07d543ddf78616a8edb2d52b51097fc7a5df5b05612267af8 +size 26732 diff --git a/hyperparameter/m4/tabsyn/tabsyn-m4-20260505_182735/data/tabsyn_m4_tabsyn_m4_20260505_182735/X_num_train.npy b/hyperparameter/m4/tabsyn/tabsyn-m4-20260505_182735/data/tabsyn_m4_tabsyn_m4_20260505_182735/X_num_train.npy new file mode 100644 index 0000000000000000000000000000000000000000..dc149960a879e21fd1aeed7de2419851175627e7 --- /dev/null +++ b/hyperparameter/m4/tabsyn/tabsyn-m4-20260505_182735/data/tabsyn_m4_tabsyn_m4_20260505_182735/X_num_train.npy @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:4a21bd2fd5a226c07d543ddf78616a8edb2d52b51097fc7a5df5b05612267af8 +size 26732 diff --git a/hyperparameter/m4/tabsyn/tabsyn-m4-20260505_182735/data/tabsyn_m4_tabsyn_m4_20260505_182735/info.json b/hyperparameter/m4/tabsyn/tabsyn-m4-20260505_182735/data/tabsyn_m4_tabsyn_m4_20260505_182735/info.json new file mode 100644 index 0000000000000000000000000000000000000000..da8f4f7780c3e86969acfcc6614255b9147268a9 --- /dev/null +++ b/hyperparameter/m4/tabsyn/tabsyn-m4-20260505_182735/data/tabsyn_m4_tabsyn_m4_20260505_182735/info.json @@ -0,0 +1,91 @@ +{ + "name": "tabsyn_m4_tabsyn_m4_20260505_182735", + "task_type": "regression", + "n_num_features": 3, + "n_cat_features": 3, + "train_size": 2217, + "num_col_idx": [ + 0, + 2, + 3 + ], + "cat_col_idx": [ + 1, + 4, + 5 + ], + "target_col_idx": [ + 6 + ], + "column_names": [ + "age", + "sex", + "bmi", + "children", + "smoker", + "region", + "charges" + ], + "train_num": 2217, + "test_num": 2217, + "header": 0, + "file_type": "csv", + "data_path": "data/tabsyn_m4_tabsyn_m4_20260505_182735/train.csv", + "test_path": null, + "idx_mapping": { + "0": 0, + "1": 3, + "2": 1, + "3": 2, + "4": 4, + "5": 5, + "6": 6 + }, + "inverse_idx_mapping": { + "0": 0, + "3": 1, + "1": 2, + "2": 3, + "4": 4, + "5": 5, + "6": 6 + }, + "idx_name_mapping": { + "0": "age", + "1": "sex", + "2": "bmi", + "3": "children", + "4": "smoker", + "5": "region", + "6": "charges" + }, + "metadata": { + "columns": { + "0": { + "sdtype": "numerical", + "computer_representation": "Float" + }, + "2": { + "sdtype": "numerical", + "computer_representation": "Float" + }, + "3": { + "sdtype": "numerical", + "computer_representation": "Float" + }, + "1": { + "sdtype": "categorical" + }, + "4": { + "sdtype": "categorical" + }, + "5": { + "sdtype": "categorical" + }, + "6": { + "sdtype": "numerical", + "computer_representation": "Float" + } + } + } +} \ No newline at end of file diff --git a/hyperparameter/m4/tabsyn/tabsyn-m4-20260505_182735/data/tabsyn_m4_tabsyn_m4_20260505_182735/test.csv b/hyperparameter/m4/tabsyn/tabsyn-m4-20260505_182735/data/tabsyn_m4_tabsyn_m4_20260505_182735/test.csv new file mode 100644 index 0000000000000000000000000000000000000000..152c9a200d3e5ce590ed1621c80749a36fc97e13 --- /dev/null +++ b/hyperparameter/m4/tabsyn/tabsyn-m4-20260505_182735/data/tabsyn_m4_tabsyn_m4_20260505_182735/test.csv @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:67f64f75063e2f8d838d7f7040ebc12f8c46df4dc54450874b851786224ba875 +size 60802 diff --git a/hyperparameter/m4/tabsyn/tabsyn-m4-20260505_182735/data/tabsyn_m4_tabsyn_m4_20260505_182735/train.csv b/hyperparameter/m4/tabsyn/tabsyn-m4-20260505_182735/data/tabsyn_m4_tabsyn_m4_20260505_182735/train.csv new file mode 100644 index 0000000000000000000000000000000000000000..152c9a200d3e5ce590ed1621c80749a36fc97e13 --- /dev/null +++ b/hyperparameter/m4/tabsyn/tabsyn-m4-20260505_182735/data/tabsyn_m4_tabsyn_m4_20260505_182735/train.csv @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:67f64f75063e2f8d838d7f7040ebc12f8c46df4dc54450874b851786224ba875 +size 60802 diff --git a/hyperparameter/m4/tabsyn/tabsyn-m4-20260505_182735/data/tabsyn_m4_tabsyn_m4_20260505_182735/y_test.npy b/hyperparameter/m4/tabsyn/tabsyn-m4-20260505_182735/data/tabsyn_m4_tabsyn_m4_20260505_182735/y_test.npy new file mode 100644 index 0000000000000000000000000000000000000000..c1d23d8e35b403e2d772e5544af9d68ff32a8ea0 --- /dev/null +++ b/hyperparameter/m4/tabsyn/tabsyn-m4-20260505_182735/data/tabsyn_m4_tabsyn_m4_20260505_182735/y_test.npy @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:4d6e4ad93beee28740cc25ee808a180c01fa94a053f79ff383504888f2d8f39e +size 17864 diff --git a/hyperparameter/m4/tabsyn/tabsyn-m4-20260505_182735/data/tabsyn_m4_tabsyn_m4_20260505_182735/y_train.npy b/hyperparameter/m4/tabsyn/tabsyn-m4-20260505_182735/data/tabsyn_m4_tabsyn_m4_20260505_182735/y_train.npy new file mode 100644 index 0000000000000000000000000000000000000000..c1d23d8e35b403e2d772e5544af9d68ff32a8ea0 --- /dev/null +++ b/hyperparameter/m4/tabsyn/tabsyn-m4-20260505_182735/data/tabsyn_m4_tabsyn_m4_20260505_182735/y_train.npy @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:4d6e4ad93beee28740cc25ee808a180c01fa94a053f79ff383504888f2d8f39e +size 17864 diff --git a/hyperparameter/m4/tabsyn/tabsyn-m4-20260505_182735/gen_20260505_182747.log b/hyperparameter/m4/tabsyn/tabsyn-m4-20260505_182735/gen_20260505_182747.log new file mode 100644 index 0000000000000000000000000000000000000000..bafed64f5993d18674e4609b3dd9f0439f75cdf5 --- /dev/null +++ b/hyperparameter/m4/tabsyn/tabsyn-m4-20260505_182735/gen_20260505_182747.log @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:842fcebcd92d7dfd3f5bcbb3796b6cff113f32bef6316b136188602762bbb367 +size 930 diff --git a/hyperparameter/m4/tabsyn/tabsyn-m4-20260505_182735/input_snapshot.json b/hyperparameter/m4/tabsyn/tabsyn-m4-20260505_182735/input_snapshot.json new file mode 100644 index 0000000000000000000000000000000000000000..21fe15b6e6863f7441ca4017d82218a03e3a90b4 --- /dev/null +++ b/hyperparameter/m4/tabsyn/tabsyn-m4-20260505_182735/input_snapshot.json @@ -0,0 +1,36 @@ +{ + "dataset_id": "m4", + "model": "tabsyn", + "inputs": { + "train_csv": { + "path": "/data/jialinzhang/SynthesizePipeline-server/DatasetNew/m4/m4-train.csv", + "exists": true, + "size": 92191, + "sha256": "396b9d409ca21bf4a4cd329bdf5b7796aa0ae6356fa8d89b8eb669b5880b81f1" + }, + "val_csv": { + "path": "/data/jialinzhang/SynthesizePipeline-server/DatasetNew/m4/m4-val.csv", + "exists": true, + "size": 11482, + "sha256": "ee3c247d02f56e1687d03c381e13125d6a3a2a411ac7f202ba8520a4be9f1784" + }, + "test_csv": { + "path": "/data/jialinzhang/SynthesizePipeline-server/DatasetNew/m4/m4-test.csv", + "exists": true, + "size": 11559, + "sha256": "cadb9941124001b8fa7cb1ebae43b70a9ca56294f4df4d3c2f22c164c41757d4" + }, + "profile_json": { + "path": "/data/jialinzhang/SynthesizePipeline-server/DatasetNew/artifacts/data_core/tabular/m4/m4-dataset_profile.json", + "exists": true, + "size": 3336, + "sha256": "83e2764810e4a0e8cdece3a28dbd9134b7c9df6f2e56953e46d024ad2c4e035f" + }, + "contract_json": { + "path": "/data/jialinzhang/SynthesizePipeline-server/DatasetNew/artifacts/data_core/tabular/m4/m4-dataset_contract_v1.json", + "exists": true, + "size": 3810, + "sha256": "c23641b258629a845b164099bd0132886f8f6d0100e990494e0f92540f8987d9" + } + } +} \ No newline at end of file diff --git a/hyperparameter/m4/tabsyn/tabsyn-m4-20260505_182735/public_gate/normalized_schema_snapshot.json b/hyperparameter/m4/tabsyn/tabsyn-m4-20260505_182735/public_gate/normalized_schema_snapshot.json new file mode 100644 index 0000000000000000000000000000000000000000..31ed9818686b11907df75e872e4ffbe010330880 --- /dev/null +++ b/hyperparameter/m4/tabsyn/tabsyn-m4-20260505_182735/public_gate/normalized_schema_snapshot.json @@ -0,0 +1,147 @@ +{ + "dataset_id": "m4", + "target_column": "charges", + "task_type": "regression", + "columns": [ + { + "name": "age", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 47, + "unique_ratio": 0.0212, + "example_values": [ + "46", + "38", + "19", + "27", + "26" + ] + } + }, + { + "name": "sex", + "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.000902, + "example_values": [ + "female", + "male" + ] + } + }, + { + "name": "bmi", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 538, + "unique_ratio": 0.24267, + "example_values": [ + "23.655", + "19.3", + "30.59", + "32.67", + "29.45" + ] + } + }, + { + "name": "children", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 6, + "unique_ratio": 0.002706, + "example_values": [ + "1", + "0", + "3", + "2", + "5" + ] + } + }, + { + "name": "smoker", + "role": "feature", + "semantic_type": "boolean", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 2, + "unique_ratio": 0.000902, + "example_values": [ + "yes", + "no" + ] + } + }, + { + "name": "region", + "role": "feature", + "semantic_type": "categorical", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 4, + "unique_ratio": 0.001804, + "example_values": [ + "northwest", + "southwest", + "southeast", + "northeast" + ] + } + }, + { + "name": "charges", + "role": "target", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 1281, + "unique_ratio": 0.577808, + "example_values": [ + "21677.28345", + "15820.699", + "1639.5631", + "2497.0383", + "2897.3235" + ] + } + } + ] +} \ No newline at end of file diff --git a/hyperparameter/m4/tabsyn/tabsyn-m4-20260505_182735/public_gate/public_gate_report.json b/hyperparameter/m4/tabsyn/tabsyn-m4-20260505_182735/public_gate/public_gate_report.json new file mode 100644 index 0000000000000000000000000000000000000000..e7a25408e2574124629ea9437356551e4d6f4790 --- /dev/null +++ b/hyperparameter/m4/tabsyn/tabsyn-m4-20260505_182735/public_gate/public_gate_report.json @@ -0,0 +1,37 @@ +{ + "dataset_id": "m4", + "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": "charges", + "task_type": "regression", + "input_splits": { + "train": "/data/jialinzhang/SynthesizePipeline-server/DatasetNew/m4/m4-train.csv", + "val": "/data/jialinzhang/SynthesizePipeline-server/DatasetNew/m4/m4-val.csv", + "test": "/data/jialinzhang/SynthesizePipeline-server/DatasetNew/m4/m4-test.csv" + } +} \ No newline at end of file diff --git a/hyperparameter/m4/tabsyn/tabsyn-m4-20260505_182735/public_gate/staged_input_manifest.json b/hyperparameter/m4/tabsyn/tabsyn-m4-20260505_182735/public_gate/staged_input_manifest.json new file mode 100644 index 0000000000000000000000000000000000000000..e3c8da5cad1daceb23393f838549a2899bbc6ecf --- /dev/null +++ b/hyperparameter/m4/tabsyn/tabsyn-m4-20260505_182735/public_gate/staged_input_manifest.json @@ -0,0 +1,152 @@ +{ + "dataset_id": "m4", + "target_column": "charges", + "task_type": "regression", + "train_csv": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/m4/tabsyn/tabsyn-m4-20260505_182735/staged/public/train.csv", + "val_csv": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/m4/tabsyn/tabsyn-m4-20260505_182735/staged/public/val.csv", + "test_csv": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/m4/tabsyn/tabsyn-m4-20260505_182735/staged/public/test.csv", + "features_json": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/m4/tabsyn/tabsyn-m4-20260505_182735/staged/public/staged_features.json", + "public_gate_report": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/m4/tabsyn/tabsyn-m4-20260505_182735/public_gate/public_gate_report.json", + "column_schema": [ + { + "name": "age", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 47, + "unique_ratio": 0.0212, + "example_values": [ + "46", + "38", + "19", + "27", + "26" + ] + } + }, + { + "name": "sex", + "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.000902, + "example_values": [ + "female", + "male" + ] + } + }, + { + "name": "bmi", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 538, + "unique_ratio": 0.24267, + "example_values": [ + "23.655", + "19.3", + "30.59", + "32.67", + "29.45" + ] + } + }, + { + "name": "children", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 6, + "unique_ratio": 0.002706, + "example_values": [ + "1", + "0", + "3", + "2", + "5" + ] + } + }, + { + "name": "smoker", + "role": "feature", + "semantic_type": "boolean", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 2, + "unique_ratio": 0.000902, + "example_values": [ + "yes", + "no" + ] + } + }, + { + "name": "region", + "role": "feature", + "semantic_type": "categorical", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 4, + "unique_ratio": 0.001804, + "example_values": [ + "northwest", + "southwest", + "southeast", + "northeast" + ] + } + }, + { + "name": "charges", + "role": "target", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 1281, + "unique_ratio": 0.577808, + "example_values": [ + "21677.28345", + "15820.699", + "1639.5631", + "2497.0383", + "2897.3235" + ] + } + } + ] +} \ No newline at end of file diff --git a/hyperparameter/m4/tabsyn/tabsyn-m4-20260505_182735/run_config.json b/hyperparameter/m4/tabsyn/tabsyn-m4-20260505_182735/run_config.json new file mode 100644 index 0000000000000000000000000000000000000000..609560dc32a0790ecad9b7ed20ad7a6d2bc3c280 --- /dev/null +++ b/hyperparameter/m4/tabsyn/tabsyn-m4-20260505_182735/run_config.json @@ -0,0 +1,49 @@ +{ + "schema_version": 1, + "recorded_at": "2026-05-05T18:27:35", + "dataset_id": "m4", + "model": "tabsyn", + "work_dir": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/m4/tabsyn/tabsyn-m4-20260505_182735", + "dataset_source_requested": "new", + "dataset_source_resolved": "new", + "cli_args": { + "model": "tabsyn", + "dataset": "m4", + "dataset_source": "new", + "train": true, + "generate": true, + "num_rows": 0, + "epochs": null, + "output_dir": null, + "model_dir": null, + "work_dir": null, + "resume": false, + "no_stats": false + }, + "resolved": { + "num_rows": 2217, + "model_path": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/m4/tabsyn/tabsyn-m4-20260505_182735", + "output_csv": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/m4/tabsyn/tabsyn-m4-20260505_182735/tabsyn-m4-2217-20260505_182747.csv" + }, + "input_artifacts": { + "public_gate_report": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/m4/tabsyn/tabsyn-m4-20260505_182735/public_gate/public_gate_report.json", + "public_manifest": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/m4/tabsyn/tabsyn-m4-20260505_182735/public_gate/staged_input_manifest.json", + "model_manifest": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/m4/tabsyn/tabsyn-m4-20260505_182735/staged/tabsyn/model_input_manifest.json", + "train_csv": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/m4/tabsyn/tabsyn-m4-20260505_182735/staged/public/train.csv", + "features_json": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/m4/tabsyn/tabsyn-m4-20260505_182735/staged/public/staged_features.json", + "target_column": "charges", + "task_type": "regression" + }, + "env_overrides": { + "BENCHMARK_TABSYN_GPUS": "device=3", + "TABSYN_DIFFUSION_MAX_EPOCHS": "5", + "TABSYN_DIFFUSION_NUM_WORKERS": "0", + "TABSYN_RESUME": "0", + "TABSYN_VAE_BATCH_SIZE": "128", + "TABSYN_VAE_ENCODE_BATCH_SIZE": "256", + "TABSYN_VAE_EPOCHS": "5", + "TABSYN_VAE_EVAL_BATCH_SIZE": "256", + "TABSYN_VAE_INFER_BATCH_SIZE": "256", + "TABSYN_VAE_NUM_WORKERS": "0" + } +} \ No newline at end of file diff --git a/hyperparameter/m4/tabsyn/tabsyn-m4-20260505_182735/runtime_result.json b/hyperparameter/m4/tabsyn/tabsyn-m4-20260505_182735/runtime_result.json new file mode 100644 index 0000000000000000000000000000000000000000..a6c418321bc1c5b39234a8944c9e4a32df2d53ae --- /dev/null +++ b/hyperparameter/m4/tabsyn/tabsyn-m4-20260505_182735/runtime_result.json @@ -0,0 +1,27 @@ +{ + "dataset_id": "m4", + "model": "tabsyn", + "run_id": "tabsyn-m4-20260505_182735", + "public_gate_status": "pass", + "adapter_ready_status": "pass", + "train_status": "success", + "generate_status": "success", + "reason_code": null, + "reason_detail": null, + "artifacts": { + "synthetic_csv": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/m4/tabsyn/tabsyn-m4-20260505_182735/tabsyn-m4-2217-20260505_182747.csv", + "model_path": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/m4/tabsyn/tabsyn-m4-20260505_182735" + }, + "timings": { + "train": { + "started_at": "2026-05-05T18:27:35", + "ended_at": "2026-05-05T18:27:47", + "duration_sec": 12.36 + }, + "generate": { + "started_at": "2026-05-05T18:27:47", + "ended_at": "2026-05-05T18:27:52", + "duration_sec": 4.576 + } + } +} \ No newline at end of file diff --git a/hyperparameter/m4/tabsyn/tabsyn-m4-20260505_182735/staged/public/staged_features.json b/hyperparameter/m4/tabsyn/tabsyn-m4-20260505_182735/staged/public/staged_features.json new file mode 100644 index 0000000000000000000000000000000000000000..d6acd098c35111f423f3ffff2cfd1754bc5dfebc --- /dev/null +++ b/hyperparameter/m4/tabsyn/tabsyn-m4-20260505_182735/staged/public/staged_features.json @@ -0,0 +1,37 @@ +[ + { + "feature_name": "age", + "data_type": "continuous", + "is_target": false + }, + { + "feature_name": "sex", + "data_type": "categorical", + "is_target": false + }, + { + "feature_name": "bmi", + "data_type": "continuous", + "is_target": false + }, + { + "feature_name": "children", + "data_type": "continuous", + "is_target": false + }, + { + "feature_name": "smoker", + "data_type": "binary", + "is_target": false + }, + { + "feature_name": "region", + "data_type": "categorical", + "is_target": false + }, + { + "feature_name": "charges", + "data_type": "continuous", + "is_target": true + } +] \ No newline at end of file diff --git a/hyperparameter/m4/tabsyn/tabsyn-m4-20260505_182735/staged/public/test.csv b/hyperparameter/m4/tabsyn/tabsyn-m4-20260505_182735/staged/public/test.csv new file mode 100644 index 0000000000000000000000000000000000000000..c88a2e7cfcd715bb421cb56eb078033da45c4dc8 --- /dev/null +++ b/hyperparameter/m4/tabsyn/tabsyn-m4-20260505_182735/staged/public/test.csv @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:4c541b677fb2d45c5bc79338eeee9fd8c91484b195a0c2c546c2fbabf113b7ea +size 11298 diff --git a/hyperparameter/m4/tabsyn/tabsyn-m4-20260505_182735/staged/public/train.csv b/hyperparameter/m4/tabsyn/tabsyn-m4-20260505_182735/staged/public/train.csv new file mode 100644 index 0000000000000000000000000000000000000000..5a05019d786529e0617291766c4fbe016ca01bf5 --- /dev/null +++ b/hyperparameter/m4/tabsyn/tabsyn-m4-20260505_182735/staged/public/train.csv @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:614ebfac5f41d6f661aff675fa18c0f933a8d9bcc77ea71b7b2360c2f0155837 +size 90069 diff --git a/hyperparameter/m4/tabsyn/tabsyn-m4-20260505_182735/staged/public/val.csv b/hyperparameter/m4/tabsyn/tabsyn-m4-20260505_182735/staged/public/val.csv new file mode 100644 index 0000000000000000000000000000000000000000..d78fe5ad1537c437ba9ac2629f2aa60a6c17e708 --- /dev/null +++ b/hyperparameter/m4/tabsyn/tabsyn-m4-20260505_182735/staged/public/val.csv @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:e55f5edbe7942ff01630de91a9c70dfbc6445eba76c7b970350364546b67c2d7 +size 11218 diff --git a/hyperparameter/m4/tabsyn/tabsyn-m4-20260505_182735/staged/tabsyn/adapter_report.json b/hyperparameter/m4/tabsyn/tabsyn-m4-20260505_182735/staged/tabsyn/adapter_report.json new file mode 100644 index 0000000000000000000000000000000000000000..43aa23f454356ff9c10937125b039d45869e2da9 --- /dev/null +++ b/hyperparameter/m4/tabsyn/tabsyn-m4-20260505_182735/staged/tabsyn/adapter_report.json @@ -0,0 +1,7 @@ +{ + "adapter_ready_status": "pass", + "adapter_fail_reason_code": null, + "adapter_fail_detail": null, + "adapter_transforms_applied": [], + "model_input_manifest": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/m4/tabsyn/tabsyn-m4-20260505_182735/staged/tabsyn/model_input_manifest.json" +} \ No newline at end of file diff --git a/hyperparameter/m4/tabsyn/tabsyn-m4-20260505_182735/staged/tabsyn/adapter_transforms_applied.json b/hyperparameter/m4/tabsyn/tabsyn-m4-20260505_182735/staged/tabsyn/adapter_transforms_applied.json new file mode 100644 index 0000000000000000000000000000000000000000..0637a088a01e8ddab3bf3fa98dbe804cbde1a0dc --- /dev/null +++ b/hyperparameter/m4/tabsyn/tabsyn-m4-20260505_182735/staged/tabsyn/adapter_transforms_applied.json @@ -0,0 +1 @@ +[] \ No newline at end of file diff --git a/hyperparameter/m4/tabsyn/tabsyn-m4-20260505_182735/staged/tabsyn/model_input_manifest.json b/hyperparameter/m4/tabsyn/tabsyn-m4-20260505_182735/staged/tabsyn/model_input_manifest.json new file mode 100644 index 0000000000000000000000000000000000000000..f2542e13b153d951584f80f6ac4cf528883ff64a --- /dev/null +++ b/hyperparameter/m4/tabsyn/tabsyn-m4-20260505_182735/staged/tabsyn/model_input_manifest.json @@ -0,0 +1,154 @@ +{ + "dataset_id": "m4", + "model": "tabsyn", + "target_column": "charges", + "task_type": "regression", + "column_schema": [ + { + "name": "age", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 47, + "unique_ratio": 0.0212, + "example_values": [ + "46", + "38", + "19", + "27", + "26" + ] + } + }, + { + "name": "sex", + "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.000902, + "example_values": [ + "female", + "male" + ] + } + }, + { + "name": "bmi", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 538, + "unique_ratio": 0.24267, + "example_values": [ + "23.655", + "19.3", + "30.59", + "32.67", + "29.45" + ] + } + }, + { + "name": "children", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 6, + "unique_ratio": 0.002706, + "example_values": [ + "1", + "0", + "3", + "2", + "5" + ] + } + }, + { + "name": "smoker", + "role": "feature", + "semantic_type": "boolean", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 2, + "unique_ratio": 0.000902, + "example_values": [ + "yes", + "no" + ] + } + }, + { + "name": "region", + "role": "feature", + "semantic_type": "categorical", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 4, + "unique_ratio": 0.001804, + "example_values": [ + "northwest", + "southwest", + "southeast", + "northeast" + ] + } + }, + { + "name": "charges", + "role": "target", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 1281, + "unique_ratio": 0.577808, + "example_values": [ + "21677.28345", + "15820.699", + "1639.5631", + "2497.0383", + "2897.3235" + ] + } + } + ], + "public_manifest": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/m4/tabsyn/tabsyn-m4-20260505_182735/public_gate/staged_input_manifest.json", + "train_csv": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/m4/tabsyn/tabsyn-m4-20260505_182735/staged/public/train.csv", + "val_csv": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/m4/tabsyn/tabsyn-m4-20260505_182735/staged/public/val.csv", + "test_csv": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/m4/tabsyn/tabsyn-m4-20260505_182735/staged/public/test.csv", + "features_json": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/m4/tabsyn/tabsyn-m4-20260505_182735/staged/public/staged_features.json", + "public_gate_report": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/m4/tabsyn/tabsyn-m4-20260505_182735/public_gate/public_gate_report.json" +} \ No newline at end of file diff --git a/hyperparameter/m4/tabsyn/tabsyn-m4-20260505_182735/synthetic/tabsyn_m4_tabsyn_m4_20260505_182735/real.csv b/hyperparameter/m4/tabsyn/tabsyn-m4-20260505_182735/synthetic/tabsyn_m4_tabsyn_m4_20260505_182735/real.csv new file mode 100644 index 0000000000000000000000000000000000000000..152c9a200d3e5ce590ed1621c80749a36fc97e13 --- /dev/null +++ b/hyperparameter/m4/tabsyn/tabsyn-m4-20260505_182735/synthetic/tabsyn_m4_tabsyn_m4_20260505_182735/real.csv @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:67f64f75063e2f8d838d7f7040ebc12f8c46df4dc54450874b851786224ba875 +size 60802 diff --git a/hyperparameter/m4/tabsyn/tabsyn-m4-20260505_182735/synthetic/tabsyn_m4_tabsyn_m4_20260505_182735/test.csv b/hyperparameter/m4/tabsyn/tabsyn-m4-20260505_182735/synthetic/tabsyn_m4_tabsyn_m4_20260505_182735/test.csv new file mode 100644 index 0000000000000000000000000000000000000000..152c9a200d3e5ce590ed1621c80749a36fc97e13 --- /dev/null +++ b/hyperparameter/m4/tabsyn/tabsyn-m4-20260505_182735/synthetic/tabsyn_m4_tabsyn_m4_20260505_182735/test.csv @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:67f64f75063e2f8d838d7f7040ebc12f8c46df4dc54450874b851786224ba875 +size 60802 diff --git a/hyperparameter/m4/tabsyn/tabsyn-m4-20260505_182735/tabsyn-m4-2217-20260505_182747.csv b/hyperparameter/m4/tabsyn/tabsyn-m4-20260505_182735/tabsyn-m4-2217-20260505_182747.csv new file mode 100644 index 0000000000000000000000000000000000000000..26a8e0bc81374165d63dbc0786881c8614a64620 --- /dev/null +++ b/hyperparameter/m4/tabsyn/tabsyn-m4-20260505_182735/tabsyn-m4-2217-20260505_182747.csv @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:a4427d3d46652b8afaa0b51f81ec889605ca5dabb37208fab661d450bb13f799 +size 82234 diff --git a/hyperparameter/m4/tabsyn/tabsyn-m4-20260505_182735/tabsyn_ckpt/diffusion/tabsyn_m4_tabsyn_m4_20260505_182735/model.pt b/hyperparameter/m4/tabsyn/tabsyn-m4-20260505_182735/tabsyn_ckpt/diffusion/tabsyn_m4_tabsyn_m4_20260505_182735/model.pt new file mode 100644 index 0000000000000000000000000000000000000000..f2d15c337f4672069f1d9f448cd1ca1d72146613 --- /dev/null +++ b/hyperparameter/m4/tabsyn/tabsyn-m4-20260505_182735/tabsyn_ckpt/diffusion/tabsyn_m4_tabsyn_m4_20260505_182735/model.pt @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:253ea1b7ac2fbc245500d91f5412a2fe8611873e2fdda7f2ae298d54663b09a2 +size 42210705 diff --git a/hyperparameter/m4/tabsyn/tabsyn-m4-20260505_182735/tabsyn_ckpt/diffusion/tabsyn_m4_tabsyn_m4_20260505_182735/model_0.pt b/hyperparameter/m4/tabsyn/tabsyn-m4-20260505_182735/tabsyn_ckpt/diffusion/tabsyn_m4_tabsyn_m4_20260505_182735/model_0.pt new file mode 100644 index 0000000000000000000000000000000000000000..a013b5ecc853410f4d04d0bc6e10aa9d54ed1169 --- /dev/null +++ b/hyperparameter/m4/tabsyn/tabsyn-m4-20260505_182735/tabsyn_ckpt/diffusion/tabsyn_m4_tabsyn_m4_20260505_182735/model_0.pt @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:e3dde4cfe39ea4cd87d37ce431dd3d9cfea543bac30f3e968730f2d5fa5a4530 +size 42211001 diff --git a/hyperparameter/m4/tabsyn/tabsyn-m4-20260505_182735/tabsyn_ckpt/vae/tabsyn_m4_tabsyn_m4_20260505_182735/decoder.pt b/hyperparameter/m4/tabsyn/tabsyn-m4-20260505_182735/tabsyn_ckpt/vae/tabsyn_m4_tabsyn_m4_20260505_182735/decoder.pt new file mode 100644 index 0000000000000000000000000000000000000000..ef00078318fd2b3f5fce659d0e3d951f139b3cba --- /dev/null +++ b/hyperparameter/m4/tabsyn/tabsyn-m4-20260505_182735/tabsyn_ckpt/vae/tabsyn_m4_tabsyn_m4_20260505_182735/decoder.pt @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:9e83653f6ab6ae7b6528b26235fa7f4e961d6290344db6c613b508102b8646cf +size 23284 diff --git a/hyperparameter/m4/tabsyn/tabsyn-m4-20260505_182735/tabsyn_ckpt/vae/tabsyn_m4_tabsyn_m4_20260505_182735/encoder.pt b/hyperparameter/m4/tabsyn/tabsyn-m4-20260505_182735/tabsyn_ckpt/vae/tabsyn_m4_tabsyn_m4_20260505_182735/encoder.pt new file mode 100644 index 0000000000000000000000000000000000000000..1e272ca3255879b7087e6ce87e927910173e7247 --- /dev/null +++ b/hyperparameter/m4/tabsyn/tabsyn-m4-20260505_182735/tabsyn_ckpt/vae/tabsyn_m4_tabsyn_m4_20260505_182735/encoder.pt @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:ca2125ef55802e855f1b23c7d6f693c0232098803506d1a02626cd4f785cb12b +size 22461 diff --git a/hyperparameter/m4/tabsyn/tabsyn-m4-20260505_182735/tabsyn_ckpt/vae/tabsyn_m4_tabsyn_m4_20260505_182735/model.pt b/hyperparameter/m4/tabsyn/tabsyn-m4-20260505_182735/tabsyn_ckpt/vae/tabsyn_m4_tabsyn_m4_20260505_182735/model.pt new file mode 100644 index 0000000000000000000000000000000000000000..4a8aa7a55b84d9dfbc61c4b7f436efc800dd0fc3 --- /dev/null +++ b/hyperparameter/m4/tabsyn/tabsyn-m4-20260505_182735/tabsyn_ckpt/vae/tabsyn_m4_tabsyn_m4_20260505_182735/model.pt @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:37057b1ef69b970040058bb64ded4c8df2677e4a973fc193352bc0a55f88048c +size 63903 diff --git a/hyperparameter/m4/tabsyn/tabsyn-m4-20260505_182735/tabsyn_ckpt/vae/tabsyn_m4_tabsyn_m4_20260505_182735/train_z.npy b/hyperparameter/m4/tabsyn/tabsyn-m4-20260505_182735/tabsyn_ckpt/vae/tabsyn_m4_tabsyn_m4_20260505_182735/train_z.npy new file mode 100644 index 0000000000000000000000000000000000000000..b9d1edf30601b9683768e107aa1cf2f60b067a29 --- /dev/null +++ b/hyperparameter/m4/tabsyn/tabsyn-m4-20260505_182735/tabsyn_ckpt/vae/tabsyn_m4_tabsyn_m4_20260505_182735/train_z.npy @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:ea8ce6a56a22ecca5de32d8a49cf65af34a43f98cdc220bc0c8225dbf6ee6357 +size 283904 diff --git a/hyperparameter/m4/tabsyn/tabsyn-m4-20260505_182735/train_20260505_182735.log b/hyperparameter/m4/tabsyn/tabsyn-m4-20260505_182735/train_20260505_182735.log new file mode 100644 index 0000000000000000000000000000000000000000..441decb0666a0e748719f8893258fed6becaf184 --- /dev/null +++ b/hyperparameter/m4/tabsyn/tabsyn-m4-20260505_182735/train_20260505_182735.log @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:9c26f6b547d256b10948ab1cf429b9ac2f1e56fedaa279e88f0ccab233453919 +size 5633 diff --git a/hyperparameter/m4/tabsyn/tabsyn-m4-20260505_182804/_tabsyn_sample.py b/hyperparameter/m4/tabsyn/tabsyn-m4-20260505_182804/_tabsyn_sample.py new file mode 100644 index 0000000000000000000000000000000000000000..35b600800c7cd46e0f5092fadf6fc4ed744e366b --- /dev/null +++ b/hyperparameter/m4/tabsyn/tabsyn-m4-20260505_182804/_tabsyn_sample.py @@ -0,0 +1,43 @@ +import os, sys, subprocess + +work_dir = "/work/output-Benchmark-trainonly-v1/m4/tabsyn/tabsyn-m4-20260505_182804" +dataname = "tabsyn_m4_tabsyn_m4_20260505_182804" +output_csv = "/work/output-Benchmark-trainonly-v1/m4/tabsyn/tabsyn-m4-20260505_182804/tabsyn-m4-2217-20260505_182816.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 2217 rows") +env = os.environ.copy() +env.setdefault("TABSYN_RESUME", "0") +env.setdefault("TABSYN_VAE_BATCH_SIZE", "32") +env.setdefault("TABSYN_VAE_EVAL_BATCH_SIZE", env["TABSYN_VAE_BATCH_SIZE"]) +env.setdefault("TABSYN_VAE_INFER_BATCH_SIZE", env["TABSYN_VAE_BATCH_SIZE"]) +env.setdefault("TABSYN_VAE_ENCODE_BATCH_SIZE", env["TABSYN_VAE_BATCH_SIZE"]) +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/hyperparameter/m4/tabsyn/tabsyn-m4-20260505_182804/_tabsyn_train.py b/hyperparameter/m4/tabsyn/tabsyn-m4-20260505_182804/_tabsyn_train.py new file mode 100644 index 0000000000000000000000000000000000000000..046025dddcf25370cecf83b99654cbb54f811c88 --- /dev/null +++ b/hyperparameter/m4/tabsyn/tabsyn-m4-20260505_182804/_tabsyn_train.py @@ -0,0 +1,69 @@ +import os, sys, subprocess + +work_dir = "/work/output-Benchmark-trainonly-v1/m4/tabsyn/tabsyn-m4-20260505_182804" +dataname = "tabsyn_m4_tabsyn_m4_20260505_182804" +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", "0") +env.setdefault("TABSYN_VAE_BATCH_SIZE", "32") +env.setdefault("TABSYN_VAE_NUM_WORKERS", "0") +env.setdefault("TABSYN_VAE_EVAL_BATCH_SIZE", env["TABSYN_VAE_BATCH_SIZE"]) +env.setdefault("TABSYN_VAE_INFER_BATCH_SIZE", env["TABSYN_VAE_BATCH_SIZE"]) +env.setdefault("TABSYN_VAE_ENCODE_BATCH_SIZE", env["TABSYN_VAE_BATCH_SIZE"]) +# Safer defaults for wide tables on Docker: reduce shared-memory pressure in diffusion DataLoader. +env.setdefault("TABSYN_DIFFUSION_NUM_WORKERS", "0") +_te = None +if _te is not None: + env["TABSYN_VAE_EPOCHS"] = str(_te) + env["TABSYN_DIFFUSION_MAX_EPOCHS"] = str(max(_te + 1, 2)) + +# Data preprocessing is done on the host side (_prepare_data_dir) +# which creates .npy files, train/test CSVs, and info.json + +# Step 1: Train VAE (produces latent embeddings) +print(f"[TabSyn] Step 1/2: Training VAE in {tabsyn_root}, dataname={dataname}") +ret = subprocess.run( + [sys.executable, "main.py", + "--dataname", dataname, + "--mode", "train", + "--method", "vae", + "--gpu", "0"], + cwd=tabsyn_root, + env=env +) +if ret.returncode != 0: + print("[TabSyn] VAE training failed") + sys.exit(ret.returncode) + +# Step 2: Train diffusion model on latent space +print(f"[TabSyn] Step 2/2: Training diffusion model") +ret = subprocess.run( + [sys.executable, "main.py", + "--dataname", dataname, + "--mode", "train", + "--method", "tabsyn", + "--gpu", "0"], + cwd=tabsyn_root, + env=env +) +if ret.returncode != 0: + print("[TabSyn] Diffusion training failed") + sys.exit(ret.returncode) +print("[TabSyn] Training complete (VAE + Diffusion)") diff --git a/hyperparameter/m4/tabsyn/tabsyn-m4-20260505_182804/data/tabsyn_m4_tabsyn_m4_20260505_182804/X_cat_test.npy b/hyperparameter/m4/tabsyn/tabsyn-m4-20260505_182804/data/tabsyn_m4_tabsyn_m4_20260505_182804/X_cat_test.npy new file mode 100644 index 0000000000000000000000000000000000000000..35977ccea6d36736d37a5000108e57633f2bb227 --- /dev/null +++ b/hyperparameter/m4/tabsyn/tabsyn-m4-20260505_182804/data/tabsyn_m4_tabsyn_m4_20260505_182804/X_cat_test.npy @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:d8893cf5626d7469e90c946b0f59fca148a445e109a27fa5a2acdd425b6bb7d2 +size 53336 diff --git a/hyperparameter/m4/tabsyn/tabsyn-m4-20260505_182804/data/tabsyn_m4_tabsyn_m4_20260505_182804/X_cat_train.npy b/hyperparameter/m4/tabsyn/tabsyn-m4-20260505_182804/data/tabsyn_m4_tabsyn_m4_20260505_182804/X_cat_train.npy new file mode 100644 index 0000000000000000000000000000000000000000..35977ccea6d36736d37a5000108e57633f2bb227 --- /dev/null +++ b/hyperparameter/m4/tabsyn/tabsyn-m4-20260505_182804/data/tabsyn_m4_tabsyn_m4_20260505_182804/X_cat_train.npy @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:d8893cf5626d7469e90c946b0f59fca148a445e109a27fa5a2acdd425b6bb7d2 +size 53336 diff --git a/hyperparameter/m4/tabsyn/tabsyn-m4-20260505_182804/data/tabsyn_m4_tabsyn_m4_20260505_182804/X_num_test.npy b/hyperparameter/m4/tabsyn/tabsyn-m4-20260505_182804/data/tabsyn_m4_tabsyn_m4_20260505_182804/X_num_test.npy new file mode 100644 index 0000000000000000000000000000000000000000..dc149960a879e21fd1aeed7de2419851175627e7 --- /dev/null +++ b/hyperparameter/m4/tabsyn/tabsyn-m4-20260505_182804/data/tabsyn_m4_tabsyn_m4_20260505_182804/X_num_test.npy @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:4a21bd2fd5a226c07d543ddf78616a8edb2d52b51097fc7a5df5b05612267af8 +size 26732 diff --git a/hyperparameter/m4/tabsyn/tabsyn-m4-20260505_182804/data/tabsyn_m4_tabsyn_m4_20260505_182804/X_num_train.npy b/hyperparameter/m4/tabsyn/tabsyn-m4-20260505_182804/data/tabsyn_m4_tabsyn_m4_20260505_182804/X_num_train.npy new file mode 100644 index 0000000000000000000000000000000000000000..dc149960a879e21fd1aeed7de2419851175627e7 --- /dev/null +++ b/hyperparameter/m4/tabsyn/tabsyn-m4-20260505_182804/data/tabsyn_m4_tabsyn_m4_20260505_182804/X_num_train.npy @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:4a21bd2fd5a226c07d543ddf78616a8edb2d52b51097fc7a5df5b05612267af8 +size 26732 diff --git a/hyperparameter/m4/tabsyn/tabsyn-m4-20260505_182804/data/tabsyn_m4_tabsyn_m4_20260505_182804/info.json b/hyperparameter/m4/tabsyn/tabsyn-m4-20260505_182804/data/tabsyn_m4_tabsyn_m4_20260505_182804/info.json new file mode 100644 index 0000000000000000000000000000000000000000..6789747c0f677360f1d34305e3c051135cb48118 --- /dev/null +++ b/hyperparameter/m4/tabsyn/tabsyn-m4-20260505_182804/data/tabsyn_m4_tabsyn_m4_20260505_182804/info.json @@ -0,0 +1,91 @@ +{ + "name": "tabsyn_m4_tabsyn_m4_20260505_182804", + "task_type": "regression", + "n_num_features": 3, + "n_cat_features": 3, + "train_size": 2217, + "num_col_idx": [ + 0, + 2, + 3 + ], + "cat_col_idx": [ + 1, + 4, + 5 + ], + "target_col_idx": [ + 6 + ], + "column_names": [ + "age", + "sex", + "bmi", + "children", + "smoker", + "region", + "charges" + ], + "train_num": 2217, + "test_num": 2217, + "header": 0, + "file_type": "csv", + "data_path": "data/tabsyn_m4_tabsyn_m4_20260505_182804/train.csv", + "test_path": null, + "idx_mapping": { + "0": 0, + "1": 3, + "2": 1, + "3": 2, + "4": 4, + "5": 5, + "6": 6 + }, + "inverse_idx_mapping": { + "0": 0, + "3": 1, + "1": 2, + "2": 3, + "4": 4, + "5": 5, + "6": 6 + }, + "idx_name_mapping": { + "0": "age", + "1": "sex", + "2": "bmi", + "3": "children", + "4": "smoker", + "5": "region", + "6": "charges" + }, + "metadata": { + "columns": { + "0": { + "sdtype": "numerical", + "computer_representation": "Float" + }, + "2": { + "sdtype": "numerical", + "computer_representation": "Float" + }, + "3": { + "sdtype": "numerical", + "computer_representation": "Float" + }, + "1": { + "sdtype": "categorical" + }, + "4": { + "sdtype": "categorical" + }, + "5": { + "sdtype": "categorical" + }, + "6": { + "sdtype": "numerical", + "computer_representation": "Float" + } + } + } +} \ No newline at end of file diff --git a/hyperparameter/m4/tabsyn/tabsyn-m4-20260505_182804/data/tabsyn_m4_tabsyn_m4_20260505_182804/test.csv b/hyperparameter/m4/tabsyn/tabsyn-m4-20260505_182804/data/tabsyn_m4_tabsyn_m4_20260505_182804/test.csv new file mode 100644 index 0000000000000000000000000000000000000000..152c9a200d3e5ce590ed1621c80749a36fc97e13 --- /dev/null +++ b/hyperparameter/m4/tabsyn/tabsyn-m4-20260505_182804/data/tabsyn_m4_tabsyn_m4_20260505_182804/test.csv @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:67f64f75063e2f8d838d7f7040ebc12f8c46df4dc54450874b851786224ba875 +size 60802 diff --git a/hyperparameter/m4/tabsyn/tabsyn-m4-20260505_182804/data/tabsyn_m4_tabsyn_m4_20260505_182804/train.csv b/hyperparameter/m4/tabsyn/tabsyn-m4-20260505_182804/data/tabsyn_m4_tabsyn_m4_20260505_182804/train.csv new file mode 100644 index 0000000000000000000000000000000000000000..152c9a200d3e5ce590ed1621c80749a36fc97e13 --- /dev/null +++ b/hyperparameter/m4/tabsyn/tabsyn-m4-20260505_182804/data/tabsyn_m4_tabsyn_m4_20260505_182804/train.csv @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:67f64f75063e2f8d838d7f7040ebc12f8c46df4dc54450874b851786224ba875 +size 60802 diff --git a/hyperparameter/m4/tabsyn/tabsyn-m4-20260505_182804/data/tabsyn_m4_tabsyn_m4_20260505_182804/y_test.npy b/hyperparameter/m4/tabsyn/tabsyn-m4-20260505_182804/data/tabsyn_m4_tabsyn_m4_20260505_182804/y_test.npy new file mode 100644 index 0000000000000000000000000000000000000000..c1d23d8e35b403e2d772e5544af9d68ff32a8ea0 --- /dev/null +++ b/hyperparameter/m4/tabsyn/tabsyn-m4-20260505_182804/data/tabsyn_m4_tabsyn_m4_20260505_182804/y_test.npy @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:4d6e4ad93beee28740cc25ee808a180c01fa94a053f79ff383504888f2d8f39e +size 17864 diff --git a/hyperparameter/m4/tabsyn/tabsyn-m4-20260505_182804/data/tabsyn_m4_tabsyn_m4_20260505_182804/y_train.npy b/hyperparameter/m4/tabsyn/tabsyn-m4-20260505_182804/data/tabsyn_m4_tabsyn_m4_20260505_182804/y_train.npy new file mode 100644 index 0000000000000000000000000000000000000000..c1d23d8e35b403e2d772e5544af9d68ff32a8ea0 --- /dev/null +++ b/hyperparameter/m4/tabsyn/tabsyn-m4-20260505_182804/data/tabsyn_m4_tabsyn_m4_20260505_182804/y_train.npy @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:4d6e4ad93beee28740cc25ee808a180c01fa94a053f79ff383504888f2d8f39e +size 17864 diff --git a/hyperparameter/m4/tabsyn/tabsyn-m4-20260505_182804/gen_20260505_182816.log b/hyperparameter/m4/tabsyn/tabsyn-m4-20260505_182804/gen_20260505_182816.log new file mode 100644 index 0000000000000000000000000000000000000000..1c7aa5c44cea10ac1abbacac8a5e02597f6c87d7 --- /dev/null +++ b/hyperparameter/m4/tabsyn/tabsyn-m4-20260505_182804/gen_20260505_182816.log @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:7867a4baf33826edf14e8275d4f019838d6a3a426bcb0e4d8b34e1c63121b6e9 +size 930 diff --git a/hyperparameter/m4/tabsyn/tabsyn-m4-20260505_182804/input_snapshot.json b/hyperparameter/m4/tabsyn/tabsyn-m4-20260505_182804/input_snapshot.json new file mode 100644 index 0000000000000000000000000000000000000000..21fe15b6e6863f7441ca4017d82218a03e3a90b4 --- /dev/null +++ b/hyperparameter/m4/tabsyn/tabsyn-m4-20260505_182804/input_snapshot.json @@ -0,0 +1,36 @@ +{ + "dataset_id": "m4", + "model": "tabsyn", + "inputs": { + "train_csv": { + "path": "/data/jialinzhang/SynthesizePipeline-server/DatasetNew/m4/m4-train.csv", + "exists": true, + "size": 92191, + "sha256": "396b9d409ca21bf4a4cd329bdf5b7796aa0ae6356fa8d89b8eb669b5880b81f1" + }, + "val_csv": { + "path": "/data/jialinzhang/SynthesizePipeline-server/DatasetNew/m4/m4-val.csv", + "exists": true, + "size": 11482, + "sha256": "ee3c247d02f56e1687d03c381e13125d6a3a2a411ac7f202ba8520a4be9f1784" + }, + "test_csv": { + "path": "/data/jialinzhang/SynthesizePipeline-server/DatasetNew/m4/m4-test.csv", + "exists": true, + "size": 11559, + "sha256": "cadb9941124001b8fa7cb1ebae43b70a9ca56294f4df4d3c2f22c164c41757d4" + }, + "profile_json": { + "path": "/data/jialinzhang/SynthesizePipeline-server/DatasetNew/artifacts/data_core/tabular/m4/m4-dataset_profile.json", + "exists": true, + "size": 3336, + "sha256": "83e2764810e4a0e8cdece3a28dbd9134b7c9df6f2e56953e46d024ad2c4e035f" + }, + "contract_json": { + "path": "/data/jialinzhang/SynthesizePipeline-server/DatasetNew/artifacts/data_core/tabular/m4/m4-dataset_contract_v1.json", + "exists": true, + "size": 3810, + "sha256": "c23641b258629a845b164099bd0132886f8f6d0100e990494e0f92540f8987d9" + } + } +} \ No newline at end of file diff --git a/hyperparameter/m4/tabsyn/tabsyn-m4-20260505_182804/public_gate/normalized_schema_snapshot.json b/hyperparameter/m4/tabsyn/tabsyn-m4-20260505_182804/public_gate/normalized_schema_snapshot.json new file mode 100644 index 0000000000000000000000000000000000000000..31ed9818686b11907df75e872e4ffbe010330880 --- /dev/null +++ b/hyperparameter/m4/tabsyn/tabsyn-m4-20260505_182804/public_gate/normalized_schema_snapshot.json @@ -0,0 +1,147 @@ +{ + "dataset_id": "m4", + "target_column": "charges", + "task_type": "regression", + "columns": [ + { + "name": "age", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 47, + "unique_ratio": 0.0212, + "example_values": [ + "46", + "38", + "19", + "27", + "26" + ] + } + }, + { + "name": "sex", + "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.000902, + "example_values": [ + "female", + "male" + ] + } + }, + { + "name": "bmi", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 538, + "unique_ratio": 0.24267, + "example_values": [ + "23.655", + "19.3", + "30.59", + "32.67", + "29.45" + ] + } + }, + { + "name": "children", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 6, + "unique_ratio": 0.002706, + "example_values": [ + "1", + "0", + "3", + "2", + "5" + ] + } + }, + { + "name": "smoker", + "role": "feature", + "semantic_type": "boolean", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 2, + "unique_ratio": 0.000902, + "example_values": [ + "yes", + "no" + ] + } + }, + { + "name": "region", + "role": "feature", + "semantic_type": "categorical", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 4, + "unique_ratio": 0.001804, + "example_values": [ + "northwest", + "southwest", + "southeast", + "northeast" + ] + } + }, + { + "name": "charges", + "role": "target", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 1281, + "unique_ratio": 0.577808, + "example_values": [ + "21677.28345", + "15820.699", + "1639.5631", + "2497.0383", + "2897.3235" + ] + } + } + ] +} \ No newline at end of file diff --git a/hyperparameter/m4/tabsyn/tabsyn-m4-20260505_182804/public_gate/public_gate_report.json b/hyperparameter/m4/tabsyn/tabsyn-m4-20260505_182804/public_gate/public_gate_report.json new file mode 100644 index 0000000000000000000000000000000000000000..e7a25408e2574124629ea9437356551e4d6f4790 --- /dev/null +++ b/hyperparameter/m4/tabsyn/tabsyn-m4-20260505_182804/public_gate/public_gate_report.json @@ -0,0 +1,37 @@ +{ + "dataset_id": "m4", + "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": "charges", + "task_type": "regression", + "input_splits": { + "train": "/data/jialinzhang/SynthesizePipeline-server/DatasetNew/m4/m4-train.csv", + "val": "/data/jialinzhang/SynthesizePipeline-server/DatasetNew/m4/m4-val.csv", + "test": "/data/jialinzhang/SynthesizePipeline-server/DatasetNew/m4/m4-test.csv" + } +} \ No newline at end of file diff --git a/hyperparameter/m4/tabsyn/tabsyn-m4-20260505_182804/public_gate/staged_input_manifest.json b/hyperparameter/m4/tabsyn/tabsyn-m4-20260505_182804/public_gate/staged_input_manifest.json new file mode 100644 index 0000000000000000000000000000000000000000..8cb7cb3520c032749d045db1b15fb01a6621efc4 --- /dev/null +++ b/hyperparameter/m4/tabsyn/tabsyn-m4-20260505_182804/public_gate/staged_input_manifest.json @@ -0,0 +1,152 @@ +{ + "dataset_id": "m4", + "target_column": "charges", + "task_type": "regression", + "train_csv": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/m4/tabsyn/tabsyn-m4-20260505_182804/staged/public/train.csv", + "val_csv": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/m4/tabsyn/tabsyn-m4-20260505_182804/staged/public/val.csv", + "test_csv": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/m4/tabsyn/tabsyn-m4-20260505_182804/staged/public/test.csv", + "features_json": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/m4/tabsyn/tabsyn-m4-20260505_182804/staged/public/staged_features.json", + "public_gate_report": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/m4/tabsyn/tabsyn-m4-20260505_182804/public_gate/public_gate_report.json", + "column_schema": [ + { + "name": "age", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 47, + "unique_ratio": 0.0212, + "example_values": [ + "46", + "38", + "19", + "27", + "26" + ] + } + }, + { + "name": "sex", + "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.000902, + "example_values": [ + "female", + "male" + ] + } + }, + { + "name": "bmi", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 538, + "unique_ratio": 0.24267, + "example_values": [ + "23.655", + "19.3", + "30.59", + "32.67", + "29.45" + ] + } + }, + { + "name": "children", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 6, + "unique_ratio": 0.002706, + "example_values": [ + "1", + "0", + "3", + "2", + "5" + ] + } + }, + { + "name": "smoker", + "role": "feature", + "semantic_type": "boolean", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 2, + "unique_ratio": 0.000902, + "example_values": [ + "yes", + "no" + ] + } + }, + { + "name": "region", + "role": "feature", + "semantic_type": "categorical", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 4, + "unique_ratio": 0.001804, + "example_values": [ + "northwest", + "southwest", + "southeast", + "northeast" + ] + } + }, + { + "name": "charges", + "role": "target", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 1281, + "unique_ratio": 0.577808, + "example_values": [ + "21677.28345", + "15820.699", + "1639.5631", + "2497.0383", + "2897.3235" + ] + } + } + ] +} \ No newline at end of file diff --git a/hyperparameter/m4/tabsyn/tabsyn-m4-20260505_182804/run_config.json b/hyperparameter/m4/tabsyn/tabsyn-m4-20260505_182804/run_config.json new file mode 100644 index 0000000000000000000000000000000000000000..04592aafb544b9f48aa0c97389bb2d31643e184a --- /dev/null +++ b/hyperparameter/m4/tabsyn/tabsyn-m4-20260505_182804/run_config.json @@ -0,0 +1,49 @@ +{ + "schema_version": 1, + "recorded_at": "2026-05-05T18:28:04", + "dataset_id": "m4", + "model": "tabsyn", + "work_dir": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/m4/tabsyn/tabsyn-m4-20260505_182804", + "dataset_source_requested": "new", + "dataset_source_resolved": "new", + "cli_args": { + "model": "tabsyn", + "dataset": "m4", + "dataset_source": "new", + "train": true, + "generate": true, + "num_rows": 0, + "epochs": null, + "output_dir": null, + "model_dir": null, + "work_dir": null, + "resume": false, + "no_stats": false + }, + "resolved": { + "num_rows": 2217, + "model_path": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/m4/tabsyn/tabsyn-m4-20260505_182804", + "output_csv": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/m4/tabsyn/tabsyn-m4-20260505_182804/tabsyn-m4-2217-20260505_182816.csv" + }, + "input_artifacts": { + "public_gate_report": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/m4/tabsyn/tabsyn-m4-20260505_182804/public_gate/public_gate_report.json", + "public_manifest": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/m4/tabsyn/tabsyn-m4-20260505_182804/public_gate/staged_input_manifest.json", + "model_manifest": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/m4/tabsyn/tabsyn-m4-20260505_182804/staged/tabsyn/model_input_manifest.json", + "train_csv": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/m4/tabsyn/tabsyn-m4-20260505_182804/staged/public/train.csv", + "features_json": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/m4/tabsyn/tabsyn-m4-20260505_182804/staged/public/staged_features.json", + "target_column": "charges", + "task_type": "regression" + }, + "env_overrides": { + "BENCHMARK_TABSYN_GPUS": "device=3", + "TABSYN_DIFFUSION_MAX_EPOCHS": "8", + "TABSYN_DIFFUSION_NUM_WORKERS": "0", + "TABSYN_RESUME": "0", + "TABSYN_VAE_BATCH_SIZE": "128", + "TABSYN_VAE_ENCODE_BATCH_SIZE": "256", + "TABSYN_VAE_EPOCHS": "8", + "TABSYN_VAE_EVAL_BATCH_SIZE": "256", + "TABSYN_VAE_INFER_BATCH_SIZE": "256", + "TABSYN_VAE_NUM_WORKERS": "0" + } +} \ No newline at end of file diff --git a/hyperparameter/m4/tabsyn/tabsyn-m4-20260505_182804/runtime_result.json b/hyperparameter/m4/tabsyn/tabsyn-m4-20260505_182804/runtime_result.json new file mode 100644 index 0000000000000000000000000000000000000000..af4212e9a5f76664b7e0b479359d66bf6fff1097 --- /dev/null +++ b/hyperparameter/m4/tabsyn/tabsyn-m4-20260505_182804/runtime_result.json @@ -0,0 +1,27 @@ +{ + "dataset_id": "m4", + "model": "tabsyn", + "run_id": "tabsyn-m4-20260505_182804", + "public_gate_status": "pass", + "adapter_ready_status": "pass", + "train_status": "success", + "generate_status": "success", + "reason_code": null, + "reason_detail": null, + "artifacts": { + "synthetic_csv": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/m4/tabsyn/tabsyn-m4-20260505_182804/tabsyn-m4-2217-20260505_182816.csv", + "model_path": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/m4/tabsyn/tabsyn-m4-20260505_182804" + }, + "timings": { + "train": { + "started_at": "2026-05-05T18:28:04", + "ended_at": "2026-05-05T18:28:16", + "duration_sec": 12.808 + }, + "generate": { + "started_at": "2026-05-05T18:28:16", + "ended_at": "2026-05-05T18:28:21", + "duration_sec": 4.634 + } + } +} \ No newline at end of file diff --git a/hyperparameter/m4/tabsyn/tabsyn-m4-20260505_182804/staged/public/staged_features.json b/hyperparameter/m4/tabsyn/tabsyn-m4-20260505_182804/staged/public/staged_features.json new file mode 100644 index 0000000000000000000000000000000000000000..d6acd098c35111f423f3ffff2cfd1754bc5dfebc --- /dev/null +++ b/hyperparameter/m4/tabsyn/tabsyn-m4-20260505_182804/staged/public/staged_features.json @@ -0,0 +1,37 @@ +[ + { + "feature_name": "age", + "data_type": "continuous", + "is_target": false + }, + { + "feature_name": "sex", + "data_type": "categorical", + "is_target": false + }, + { + "feature_name": "bmi", + "data_type": "continuous", + "is_target": false + }, + { + "feature_name": "children", + "data_type": "continuous", + "is_target": false + }, + { + "feature_name": "smoker", + "data_type": "binary", + "is_target": false + }, + { + "feature_name": "region", + "data_type": "categorical", + "is_target": false + }, + { + "feature_name": "charges", + "data_type": "continuous", + "is_target": true + } +] \ No newline at end of file diff --git a/hyperparameter/m4/tabsyn/tabsyn-m4-20260505_182804/staged/public/test.csv b/hyperparameter/m4/tabsyn/tabsyn-m4-20260505_182804/staged/public/test.csv new file mode 100644 index 0000000000000000000000000000000000000000..c88a2e7cfcd715bb421cb56eb078033da45c4dc8 --- /dev/null +++ b/hyperparameter/m4/tabsyn/tabsyn-m4-20260505_182804/staged/public/test.csv @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:4c541b677fb2d45c5bc79338eeee9fd8c91484b195a0c2c546c2fbabf113b7ea +size 11298 diff --git a/hyperparameter/m4/tabsyn/tabsyn-m4-20260505_182804/staged/public/train.csv b/hyperparameter/m4/tabsyn/tabsyn-m4-20260505_182804/staged/public/train.csv new file mode 100644 index 0000000000000000000000000000000000000000..5a05019d786529e0617291766c4fbe016ca01bf5 --- /dev/null +++ b/hyperparameter/m4/tabsyn/tabsyn-m4-20260505_182804/staged/public/train.csv @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:614ebfac5f41d6f661aff675fa18c0f933a8d9bcc77ea71b7b2360c2f0155837 +size 90069 diff --git a/hyperparameter/m4/tabsyn/tabsyn-m4-20260505_182804/staged/public/val.csv b/hyperparameter/m4/tabsyn/tabsyn-m4-20260505_182804/staged/public/val.csv new file mode 100644 index 0000000000000000000000000000000000000000..d78fe5ad1537c437ba9ac2629f2aa60a6c17e708 --- /dev/null +++ b/hyperparameter/m4/tabsyn/tabsyn-m4-20260505_182804/staged/public/val.csv @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:e55f5edbe7942ff01630de91a9c70dfbc6445eba76c7b970350364546b67c2d7 +size 11218 diff --git a/hyperparameter/m4/tabsyn/tabsyn-m4-20260505_182804/staged/tabsyn/adapter_report.json b/hyperparameter/m4/tabsyn/tabsyn-m4-20260505_182804/staged/tabsyn/adapter_report.json new file mode 100644 index 0000000000000000000000000000000000000000..00763d1a62dbb6fe4e2795af1efba4af878547b9 --- /dev/null +++ b/hyperparameter/m4/tabsyn/tabsyn-m4-20260505_182804/staged/tabsyn/adapter_report.json @@ -0,0 +1,7 @@ +{ + "adapter_ready_status": "pass", + "adapter_fail_reason_code": null, + "adapter_fail_detail": null, + "adapter_transforms_applied": [], + "model_input_manifest": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/m4/tabsyn/tabsyn-m4-20260505_182804/staged/tabsyn/model_input_manifest.json" +} \ No newline at end of file diff --git a/hyperparameter/m4/tabsyn/tabsyn-m4-20260505_182804/staged/tabsyn/adapter_transforms_applied.json b/hyperparameter/m4/tabsyn/tabsyn-m4-20260505_182804/staged/tabsyn/adapter_transforms_applied.json new file mode 100644 index 0000000000000000000000000000000000000000..0637a088a01e8ddab3bf3fa98dbe804cbde1a0dc --- /dev/null +++ b/hyperparameter/m4/tabsyn/tabsyn-m4-20260505_182804/staged/tabsyn/adapter_transforms_applied.json @@ -0,0 +1 @@ +[] \ No newline at end of file diff --git a/hyperparameter/m4/tabsyn/tabsyn-m4-20260505_182804/staged/tabsyn/model_input_manifest.json b/hyperparameter/m4/tabsyn/tabsyn-m4-20260505_182804/staged/tabsyn/model_input_manifest.json new file mode 100644 index 0000000000000000000000000000000000000000..a4fb1b1132501b4bb42b9b417a7234b3847d21f0 --- /dev/null +++ b/hyperparameter/m4/tabsyn/tabsyn-m4-20260505_182804/staged/tabsyn/model_input_manifest.json @@ -0,0 +1,154 @@ +{ + "dataset_id": "m4", + "model": "tabsyn", + "target_column": "charges", + "task_type": "regression", + "column_schema": [ + { + "name": "age", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 47, + "unique_ratio": 0.0212, + "example_values": [ + "46", + "38", + "19", + "27", + "26" + ] + } + }, + { + "name": "sex", + "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.000902, + "example_values": [ + "female", + "male" + ] + } + }, + { + "name": "bmi", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 538, + "unique_ratio": 0.24267, + "example_values": [ + "23.655", + "19.3", + "30.59", + "32.67", + "29.45" + ] + } + }, + { + "name": "children", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 6, + "unique_ratio": 0.002706, + "example_values": [ + "1", + "0", + "3", + "2", + "5" + ] + } + }, + { + "name": "smoker", + "role": "feature", + "semantic_type": "boolean", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 2, + "unique_ratio": 0.000902, + "example_values": [ + "yes", + "no" + ] + } + }, + { + "name": "region", + "role": "feature", + "semantic_type": "categorical", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 4, + "unique_ratio": 0.001804, + "example_values": [ + "northwest", + "southwest", + "southeast", + "northeast" + ] + } + }, + { + "name": "charges", + "role": "target", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 1281, + "unique_ratio": 0.577808, + "example_values": [ + "21677.28345", + "15820.699", + "1639.5631", + "2497.0383", + "2897.3235" + ] + } + } + ], + "public_manifest": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/m4/tabsyn/tabsyn-m4-20260505_182804/public_gate/staged_input_manifest.json", + "train_csv": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/m4/tabsyn/tabsyn-m4-20260505_182804/staged/public/train.csv", + "val_csv": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/m4/tabsyn/tabsyn-m4-20260505_182804/staged/public/val.csv", + "test_csv": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/m4/tabsyn/tabsyn-m4-20260505_182804/staged/public/test.csv", + "features_json": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/m4/tabsyn/tabsyn-m4-20260505_182804/staged/public/staged_features.json", + "public_gate_report": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/m4/tabsyn/tabsyn-m4-20260505_182804/public_gate/public_gate_report.json" +} \ No newline at end of file diff --git a/hyperparameter/m4/tabsyn/tabsyn-m4-20260505_182804/synthetic/tabsyn_m4_tabsyn_m4_20260505_182804/real.csv b/hyperparameter/m4/tabsyn/tabsyn-m4-20260505_182804/synthetic/tabsyn_m4_tabsyn_m4_20260505_182804/real.csv new file mode 100644 index 0000000000000000000000000000000000000000..152c9a200d3e5ce590ed1621c80749a36fc97e13 --- /dev/null +++ b/hyperparameter/m4/tabsyn/tabsyn-m4-20260505_182804/synthetic/tabsyn_m4_tabsyn_m4_20260505_182804/real.csv @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:67f64f75063e2f8d838d7f7040ebc12f8c46df4dc54450874b851786224ba875 +size 60802 diff --git a/hyperparameter/m4/tabsyn/tabsyn-m4-20260505_182804/synthetic/tabsyn_m4_tabsyn_m4_20260505_182804/test.csv b/hyperparameter/m4/tabsyn/tabsyn-m4-20260505_182804/synthetic/tabsyn_m4_tabsyn_m4_20260505_182804/test.csv new file mode 100644 index 0000000000000000000000000000000000000000..152c9a200d3e5ce590ed1621c80749a36fc97e13 --- /dev/null +++ b/hyperparameter/m4/tabsyn/tabsyn-m4-20260505_182804/synthetic/tabsyn_m4_tabsyn_m4_20260505_182804/test.csv @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:67f64f75063e2f8d838d7f7040ebc12f8c46df4dc54450874b851786224ba875 +size 60802 diff --git a/hyperparameter/m4/tabsyn/tabsyn-m4-20260505_182804/tabsyn-m4-2217-20260505_182816.csv b/hyperparameter/m4/tabsyn/tabsyn-m4-20260505_182804/tabsyn-m4-2217-20260505_182816.csv new file mode 100644 index 0000000000000000000000000000000000000000..208a60ddeef8aab980cba3e0c9f28e9d0febf99c --- /dev/null +++ b/hyperparameter/m4/tabsyn/tabsyn-m4-20260505_182804/tabsyn-m4-2217-20260505_182816.csv @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:9092c8c388979db162f1fc40663292376c25ce72abfbbc1c58d019834aaf685a +size 83400 diff --git a/hyperparameter/m4/tabsyn/tabsyn-m4-20260505_182804/tabsyn_ckpt/diffusion/tabsyn_m4_tabsyn_m4_20260505_182804/model.pt b/hyperparameter/m4/tabsyn/tabsyn-m4-20260505_182804/tabsyn_ckpt/diffusion/tabsyn_m4_tabsyn_m4_20260505_182804/model.pt new file mode 100644 index 0000000000000000000000000000000000000000..69974ab764f0176bbbd3f389c8c00932d1238fb7 --- /dev/null +++ b/hyperparameter/m4/tabsyn/tabsyn-m4-20260505_182804/tabsyn_ckpt/diffusion/tabsyn_m4_tabsyn_m4_20260505_182804/model.pt @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:559d2c1b5a72c689fe36a22273ce5df1729599f35ce151156e56550716bfa134 +size 42210705 diff --git a/hyperparameter/m4/tabsyn/tabsyn-m4-20260505_182804/tabsyn_ckpt/diffusion/tabsyn_m4_tabsyn_m4_20260505_182804/model_0.pt b/hyperparameter/m4/tabsyn/tabsyn-m4-20260505_182804/tabsyn_ckpt/diffusion/tabsyn_m4_tabsyn_m4_20260505_182804/model_0.pt new file mode 100644 index 0000000000000000000000000000000000000000..6912f7a9a0cb45e82559ae6cc2a3d315f842ed5a --- /dev/null +++ b/hyperparameter/m4/tabsyn/tabsyn-m4-20260505_182804/tabsyn_ckpt/diffusion/tabsyn_m4_tabsyn_m4_20260505_182804/model_0.pt @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:6359e0b8925998ef4fa64b2aac939d48b65e475466df9ac555280f110fb554c8 +size 42211001 diff --git a/hyperparameter/m4/tabsyn/tabsyn-m4-20260505_182804/tabsyn_ckpt/vae/tabsyn_m4_tabsyn_m4_20260505_182804/decoder.pt b/hyperparameter/m4/tabsyn/tabsyn-m4-20260505_182804/tabsyn_ckpt/vae/tabsyn_m4_tabsyn_m4_20260505_182804/decoder.pt new file mode 100644 index 0000000000000000000000000000000000000000..0d33e673c4f3a37e5fa5df8e75fdc69b3cbee028 --- /dev/null +++ b/hyperparameter/m4/tabsyn/tabsyn-m4-20260505_182804/tabsyn_ckpt/vae/tabsyn_m4_tabsyn_m4_20260505_182804/decoder.pt @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:97bbff1f9898dd09bc431a89319b379a6b24d87eb2b6d0b58dc387d158b1e098 +size 23284 diff --git a/hyperparameter/m4/tabsyn/tabsyn-m4-20260505_182804/tabsyn_ckpt/vae/tabsyn_m4_tabsyn_m4_20260505_182804/encoder.pt b/hyperparameter/m4/tabsyn/tabsyn-m4-20260505_182804/tabsyn_ckpt/vae/tabsyn_m4_tabsyn_m4_20260505_182804/encoder.pt new file mode 100644 index 0000000000000000000000000000000000000000..e4073072caa2d57b6ff4356cc7c2959b3f8add0b --- /dev/null +++ b/hyperparameter/m4/tabsyn/tabsyn-m4-20260505_182804/tabsyn_ckpt/vae/tabsyn_m4_tabsyn_m4_20260505_182804/encoder.pt @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:541d334e1ab9afc699081d88f9c365437f4ec1da2ea7947fce26c2f7978dad0c +size 22461 diff --git a/hyperparameter/m4/tabsyn/tabsyn-m4-20260505_182804/tabsyn_ckpt/vae/tabsyn_m4_tabsyn_m4_20260505_182804/model.pt b/hyperparameter/m4/tabsyn/tabsyn-m4-20260505_182804/tabsyn_ckpt/vae/tabsyn_m4_tabsyn_m4_20260505_182804/model.pt new file mode 100644 index 0000000000000000000000000000000000000000..1824d54567c08e3ed50c7e77ec5ffed89dae060f --- /dev/null +++ b/hyperparameter/m4/tabsyn/tabsyn-m4-20260505_182804/tabsyn_ckpt/vae/tabsyn_m4_tabsyn_m4_20260505_182804/model.pt @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:10ba11c580bf1727a565551f31adf871b0883ad5a522eef1e9fe6bd14a001fa4 +size 63903 diff --git a/hyperparameter/m4/tabsyn/tabsyn-m4-20260505_182804/tabsyn_ckpt/vae/tabsyn_m4_tabsyn_m4_20260505_182804/train_z.npy b/hyperparameter/m4/tabsyn/tabsyn-m4-20260505_182804/tabsyn_ckpt/vae/tabsyn_m4_tabsyn_m4_20260505_182804/train_z.npy new file mode 100644 index 0000000000000000000000000000000000000000..28ae6906fdf2cf1927c504d0b1f8ecb0590e6b7e --- /dev/null +++ b/hyperparameter/m4/tabsyn/tabsyn-m4-20260505_182804/tabsyn_ckpt/vae/tabsyn_m4_tabsyn_m4_20260505_182804/train_z.npy @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:48b17ccfcf7738d2777dd618b810246221b6bbba235dbfecb5dfaa36f7078c64 +size 283904 diff --git a/hyperparameter/m4/tabsyn/tabsyn-m4-20260505_182804/train_20260505_182804.log b/hyperparameter/m4/tabsyn/tabsyn-m4-20260505_182804/train_20260505_182804.log new file mode 100644 index 0000000000000000000000000000000000000000..cb80bb94075b1d04eec2e6073166e35757156760 --- /dev/null +++ b/hyperparameter/m4/tabsyn/tabsyn-m4-20260505_182804/train_20260505_182804.log @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:d34bae85176347ce00119f0fad709584e0b7e7d59f6de88114cb270c3901aa39 +size 7626 diff --git a/hyperparameter/m4/tabsyn/tabsyn-m4-20260505_182833/_tabsyn_sample.py b/hyperparameter/m4/tabsyn/tabsyn-m4-20260505_182833/_tabsyn_sample.py new file mode 100644 index 0000000000000000000000000000000000000000..f2fb14a08e45e6cc9b3ac34c6ad30186b485095b --- /dev/null +++ b/hyperparameter/m4/tabsyn/tabsyn-m4-20260505_182833/_tabsyn_sample.py @@ -0,0 +1,43 @@ +import os, sys, subprocess + +work_dir = "/work/output-Benchmark-trainonly-v1/m4/tabsyn/tabsyn-m4-20260505_182833" +dataname = "tabsyn_m4_tabsyn_m4_20260505_182833" +output_csv = "/work/output-Benchmark-trainonly-v1/m4/tabsyn/tabsyn-m4-20260505_182833/tabsyn-m4-2217-20260505_182846.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 2217 rows") +env = os.environ.copy() +env.setdefault("TABSYN_RESUME", "0") +env.setdefault("TABSYN_VAE_BATCH_SIZE", "32") +env.setdefault("TABSYN_VAE_EVAL_BATCH_SIZE", env["TABSYN_VAE_BATCH_SIZE"]) +env.setdefault("TABSYN_VAE_INFER_BATCH_SIZE", env["TABSYN_VAE_BATCH_SIZE"]) +env.setdefault("TABSYN_VAE_ENCODE_BATCH_SIZE", env["TABSYN_VAE_BATCH_SIZE"]) +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/hyperparameter/m4/tabsyn/tabsyn-m4-20260505_182833/_tabsyn_train.py b/hyperparameter/m4/tabsyn/tabsyn-m4-20260505_182833/_tabsyn_train.py new file mode 100644 index 0000000000000000000000000000000000000000..c3b8331fe2c35b39c458ffc175056fc9cbc5e6c8 --- /dev/null +++ b/hyperparameter/m4/tabsyn/tabsyn-m4-20260505_182833/_tabsyn_train.py @@ -0,0 +1,69 @@ +import os, sys, subprocess + +work_dir = "/work/output-Benchmark-trainonly-v1/m4/tabsyn/tabsyn-m4-20260505_182833" +dataname = "tabsyn_m4_tabsyn_m4_20260505_182833" +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", "0") +env.setdefault("TABSYN_VAE_BATCH_SIZE", "32") +env.setdefault("TABSYN_VAE_NUM_WORKERS", "0") +env.setdefault("TABSYN_VAE_EVAL_BATCH_SIZE", env["TABSYN_VAE_BATCH_SIZE"]) +env.setdefault("TABSYN_VAE_INFER_BATCH_SIZE", env["TABSYN_VAE_BATCH_SIZE"]) +env.setdefault("TABSYN_VAE_ENCODE_BATCH_SIZE", env["TABSYN_VAE_BATCH_SIZE"]) +# Safer defaults for wide tables on Docker: reduce shared-memory pressure in diffusion DataLoader. +env.setdefault("TABSYN_DIFFUSION_NUM_WORKERS", "0") +_te = None +if _te is not None: + env["TABSYN_VAE_EPOCHS"] = str(_te) + env["TABSYN_DIFFUSION_MAX_EPOCHS"] = str(max(_te + 1, 2)) + +# Data preprocessing is done on the host side (_prepare_data_dir) +# which creates .npy files, train/test CSVs, and info.json + +# Step 1: Train VAE (produces latent embeddings) +print(f"[TabSyn] Step 1/2: Training VAE in {tabsyn_root}, dataname={dataname}") +ret = subprocess.run( + [sys.executable, "main.py", + "--dataname", dataname, + "--mode", "train", + "--method", "vae", + "--gpu", "0"], + cwd=tabsyn_root, + env=env +) +if ret.returncode != 0: + print("[TabSyn] VAE training failed") + sys.exit(ret.returncode) + +# Step 2: Train diffusion model on latent space +print(f"[TabSyn] Step 2/2: Training diffusion model") +ret = subprocess.run( + [sys.executable, "main.py", + "--dataname", dataname, + "--mode", "train", + "--method", "tabsyn", + "--gpu", "0"], + cwd=tabsyn_root, + env=env +) +if ret.returncode != 0: + print("[TabSyn] Diffusion training failed") + sys.exit(ret.returncode) +print("[TabSyn] Training complete (VAE + Diffusion)") diff --git a/hyperparameter/m4/tabsyn/tabsyn-m4-20260505_182833/data/tabsyn_m4_tabsyn_m4_20260505_182833/X_cat_test.npy b/hyperparameter/m4/tabsyn/tabsyn-m4-20260505_182833/data/tabsyn_m4_tabsyn_m4_20260505_182833/X_cat_test.npy new file mode 100644 index 0000000000000000000000000000000000000000..35977ccea6d36736d37a5000108e57633f2bb227 --- /dev/null +++ b/hyperparameter/m4/tabsyn/tabsyn-m4-20260505_182833/data/tabsyn_m4_tabsyn_m4_20260505_182833/X_cat_test.npy @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:d8893cf5626d7469e90c946b0f59fca148a445e109a27fa5a2acdd425b6bb7d2 +size 53336 diff --git a/hyperparameter/m4/tabsyn/tabsyn-m4-20260505_182833/data/tabsyn_m4_tabsyn_m4_20260505_182833/X_cat_train.npy b/hyperparameter/m4/tabsyn/tabsyn-m4-20260505_182833/data/tabsyn_m4_tabsyn_m4_20260505_182833/X_cat_train.npy new file mode 100644 index 0000000000000000000000000000000000000000..35977ccea6d36736d37a5000108e57633f2bb227 --- /dev/null +++ b/hyperparameter/m4/tabsyn/tabsyn-m4-20260505_182833/data/tabsyn_m4_tabsyn_m4_20260505_182833/X_cat_train.npy @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:d8893cf5626d7469e90c946b0f59fca148a445e109a27fa5a2acdd425b6bb7d2 +size 53336 diff --git a/hyperparameter/m4/tabsyn/tabsyn-m4-20260505_182833/data/tabsyn_m4_tabsyn_m4_20260505_182833/X_num_test.npy b/hyperparameter/m4/tabsyn/tabsyn-m4-20260505_182833/data/tabsyn_m4_tabsyn_m4_20260505_182833/X_num_test.npy new file mode 100644 index 0000000000000000000000000000000000000000..dc149960a879e21fd1aeed7de2419851175627e7 --- /dev/null +++ b/hyperparameter/m4/tabsyn/tabsyn-m4-20260505_182833/data/tabsyn_m4_tabsyn_m4_20260505_182833/X_num_test.npy @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:4a21bd2fd5a226c07d543ddf78616a8edb2d52b51097fc7a5df5b05612267af8 +size 26732 diff --git a/hyperparameter/m4/tabsyn/tabsyn-m4-20260505_182833/data/tabsyn_m4_tabsyn_m4_20260505_182833/X_num_train.npy b/hyperparameter/m4/tabsyn/tabsyn-m4-20260505_182833/data/tabsyn_m4_tabsyn_m4_20260505_182833/X_num_train.npy new file mode 100644 index 0000000000000000000000000000000000000000..dc149960a879e21fd1aeed7de2419851175627e7 --- /dev/null +++ b/hyperparameter/m4/tabsyn/tabsyn-m4-20260505_182833/data/tabsyn_m4_tabsyn_m4_20260505_182833/X_num_train.npy @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:4a21bd2fd5a226c07d543ddf78616a8edb2d52b51097fc7a5df5b05612267af8 +size 26732 diff --git a/hyperparameter/m4/tabsyn/tabsyn-m4-20260505_182833/data/tabsyn_m4_tabsyn_m4_20260505_182833/info.json b/hyperparameter/m4/tabsyn/tabsyn-m4-20260505_182833/data/tabsyn_m4_tabsyn_m4_20260505_182833/info.json new file mode 100644 index 0000000000000000000000000000000000000000..22c96008cffd5dd78a7d25ff45c998bdfc8fe3a7 --- /dev/null +++ b/hyperparameter/m4/tabsyn/tabsyn-m4-20260505_182833/data/tabsyn_m4_tabsyn_m4_20260505_182833/info.json @@ -0,0 +1,91 @@ +{ + "name": "tabsyn_m4_tabsyn_m4_20260505_182833", + "task_type": "regression", + "n_num_features": 3, + "n_cat_features": 3, + "train_size": 2217, + "num_col_idx": [ + 0, + 2, + 3 + ], + "cat_col_idx": [ + 1, + 4, + 5 + ], + "target_col_idx": [ + 6 + ], + "column_names": [ + "age", + "sex", + "bmi", + "children", + "smoker", + "region", + "charges" + ], + "train_num": 2217, + "test_num": 2217, + "header": 0, + "file_type": "csv", + "data_path": "data/tabsyn_m4_tabsyn_m4_20260505_182833/train.csv", + "test_path": null, + "idx_mapping": { + "0": 0, + "1": 3, + "2": 1, + "3": 2, + "4": 4, + "5": 5, + "6": 6 + }, + "inverse_idx_mapping": { + "0": 0, + "3": 1, + "1": 2, + "2": 3, + "4": 4, + "5": 5, + "6": 6 + }, + "idx_name_mapping": { + "0": "age", + "1": "sex", + "2": "bmi", + "3": "children", + "4": "smoker", + "5": "region", + "6": "charges" + }, + "metadata": { + "columns": { + "0": { + "sdtype": "numerical", + "computer_representation": "Float" + }, + "2": { + "sdtype": "numerical", + "computer_representation": "Float" + }, + "3": { + "sdtype": "numerical", + "computer_representation": "Float" + }, + "1": { + "sdtype": "categorical" + }, + "4": { + "sdtype": "categorical" + }, + "5": { + "sdtype": "categorical" + }, + "6": { + "sdtype": "numerical", + "computer_representation": "Float" + } + } + } +} \ No newline at end of file diff --git a/hyperparameter/m4/tabsyn/tabsyn-m4-20260505_182833/data/tabsyn_m4_tabsyn_m4_20260505_182833/test.csv b/hyperparameter/m4/tabsyn/tabsyn-m4-20260505_182833/data/tabsyn_m4_tabsyn_m4_20260505_182833/test.csv new file mode 100644 index 0000000000000000000000000000000000000000..152c9a200d3e5ce590ed1621c80749a36fc97e13 --- /dev/null +++ b/hyperparameter/m4/tabsyn/tabsyn-m4-20260505_182833/data/tabsyn_m4_tabsyn_m4_20260505_182833/test.csv @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:67f64f75063e2f8d838d7f7040ebc12f8c46df4dc54450874b851786224ba875 +size 60802 diff --git a/hyperparameter/m4/tabsyn/tabsyn-m4-20260505_182833/data/tabsyn_m4_tabsyn_m4_20260505_182833/train.csv b/hyperparameter/m4/tabsyn/tabsyn-m4-20260505_182833/data/tabsyn_m4_tabsyn_m4_20260505_182833/train.csv new file mode 100644 index 0000000000000000000000000000000000000000..152c9a200d3e5ce590ed1621c80749a36fc97e13 --- /dev/null +++ b/hyperparameter/m4/tabsyn/tabsyn-m4-20260505_182833/data/tabsyn_m4_tabsyn_m4_20260505_182833/train.csv @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:67f64f75063e2f8d838d7f7040ebc12f8c46df4dc54450874b851786224ba875 +size 60802 diff --git a/hyperparameter/m4/tabsyn/tabsyn-m4-20260505_182833/data/tabsyn_m4_tabsyn_m4_20260505_182833/y_test.npy b/hyperparameter/m4/tabsyn/tabsyn-m4-20260505_182833/data/tabsyn_m4_tabsyn_m4_20260505_182833/y_test.npy new file mode 100644 index 0000000000000000000000000000000000000000..c1d23d8e35b403e2d772e5544af9d68ff32a8ea0 --- /dev/null +++ b/hyperparameter/m4/tabsyn/tabsyn-m4-20260505_182833/data/tabsyn_m4_tabsyn_m4_20260505_182833/y_test.npy @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:4d6e4ad93beee28740cc25ee808a180c01fa94a053f79ff383504888f2d8f39e +size 17864 diff --git a/hyperparameter/m4/tabsyn/tabsyn-m4-20260505_182833/data/tabsyn_m4_tabsyn_m4_20260505_182833/y_train.npy b/hyperparameter/m4/tabsyn/tabsyn-m4-20260505_182833/data/tabsyn_m4_tabsyn_m4_20260505_182833/y_train.npy new file mode 100644 index 0000000000000000000000000000000000000000..c1d23d8e35b403e2d772e5544af9d68ff32a8ea0 --- /dev/null +++ b/hyperparameter/m4/tabsyn/tabsyn-m4-20260505_182833/data/tabsyn_m4_tabsyn_m4_20260505_182833/y_train.npy @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:4d6e4ad93beee28740cc25ee808a180c01fa94a053f79ff383504888f2d8f39e +size 17864 diff --git a/hyperparameter/m4/tabsyn/tabsyn-m4-20260505_182833/gen_20260505_182846.log b/hyperparameter/m4/tabsyn/tabsyn-m4-20260505_182833/gen_20260505_182846.log new file mode 100644 index 0000000000000000000000000000000000000000..a21009a78c4d30aab2cf48f3ce5dd5da0469ba59 --- /dev/null +++ b/hyperparameter/m4/tabsyn/tabsyn-m4-20260505_182833/gen_20260505_182846.log @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:aad5832b60c080687b144c3f5bbc8109ae58e5855b78ed47a76a9ae6976f3768 +size 930 diff --git a/hyperparameter/m4/tabsyn/tabsyn-m4-20260505_182833/input_snapshot.json b/hyperparameter/m4/tabsyn/tabsyn-m4-20260505_182833/input_snapshot.json new file mode 100644 index 0000000000000000000000000000000000000000..21fe15b6e6863f7441ca4017d82218a03e3a90b4 --- /dev/null +++ b/hyperparameter/m4/tabsyn/tabsyn-m4-20260505_182833/input_snapshot.json @@ -0,0 +1,36 @@ +{ + "dataset_id": "m4", + "model": "tabsyn", + "inputs": { + "train_csv": { + "path": "/data/jialinzhang/SynthesizePipeline-server/DatasetNew/m4/m4-train.csv", + "exists": true, + "size": 92191, + "sha256": "396b9d409ca21bf4a4cd329bdf5b7796aa0ae6356fa8d89b8eb669b5880b81f1" + }, + "val_csv": { + "path": "/data/jialinzhang/SynthesizePipeline-server/DatasetNew/m4/m4-val.csv", + "exists": true, + "size": 11482, + "sha256": "ee3c247d02f56e1687d03c381e13125d6a3a2a411ac7f202ba8520a4be9f1784" + }, + "test_csv": { + "path": "/data/jialinzhang/SynthesizePipeline-server/DatasetNew/m4/m4-test.csv", + "exists": true, + "size": 11559, + "sha256": "cadb9941124001b8fa7cb1ebae43b70a9ca56294f4df4d3c2f22c164c41757d4" + }, + "profile_json": { + "path": "/data/jialinzhang/SynthesizePipeline-server/DatasetNew/artifacts/data_core/tabular/m4/m4-dataset_profile.json", + "exists": true, + "size": 3336, + "sha256": "83e2764810e4a0e8cdece3a28dbd9134b7c9df6f2e56953e46d024ad2c4e035f" + }, + "contract_json": { + "path": "/data/jialinzhang/SynthesizePipeline-server/DatasetNew/artifacts/data_core/tabular/m4/m4-dataset_contract_v1.json", + "exists": true, + "size": 3810, + "sha256": "c23641b258629a845b164099bd0132886f8f6d0100e990494e0f92540f8987d9" + } + } +} \ No newline at end of file diff --git a/hyperparameter/m4/tabsyn/tabsyn-m4-20260505_182833/public_gate/normalized_schema_snapshot.json b/hyperparameter/m4/tabsyn/tabsyn-m4-20260505_182833/public_gate/normalized_schema_snapshot.json new file mode 100644 index 0000000000000000000000000000000000000000..31ed9818686b11907df75e872e4ffbe010330880 --- /dev/null +++ b/hyperparameter/m4/tabsyn/tabsyn-m4-20260505_182833/public_gate/normalized_schema_snapshot.json @@ -0,0 +1,147 @@ +{ + "dataset_id": "m4", + "target_column": "charges", + "task_type": "regression", + "columns": [ + { + "name": "age", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 47, + "unique_ratio": 0.0212, + "example_values": [ + "46", + "38", + "19", + "27", + "26" + ] + } + }, + { + "name": "sex", + "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.000902, + "example_values": [ + "female", + "male" + ] + } + }, + { + "name": "bmi", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 538, + "unique_ratio": 0.24267, + "example_values": [ + "23.655", + "19.3", + "30.59", + "32.67", + "29.45" + ] + } + }, + { + "name": "children", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 6, + "unique_ratio": 0.002706, + "example_values": [ + "1", + "0", + "3", + "2", + "5" + ] + } + }, + { + "name": "smoker", + "role": "feature", + "semantic_type": "boolean", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 2, + "unique_ratio": 0.000902, + "example_values": [ + "yes", + "no" + ] + } + }, + { + "name": "region", + "role": "feature", + "semantic_type": "categorical", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 4, + "unique_ratio": 0.001804, + "example_values": [ + "northwest", + "southwest", + "southeast", + "northeast" + ] + } + }, + { + "name": "charges", + "role": "target", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 1281, + "unique_ratio": 0.577808, + "example_values": [ + "21677.28345", + "15820.699", + "1639.5631", + "2497.0383", + "2897.3235" + ] + } + } + ] +} \ No newline at end of file diff --git a/hyperparameter/m4/tabsyn/tabsyn-m4-20260505_182833/public_gate/public_gate_report.json b/hyperparameter/m4/tabsyn/tabsyn-m4-20260505_182833/public_gate/public_gate_report.json new file mode 100644 index 0000000000000000000000000000000000000000..e7a25408e2574124629ea9437356551e4d6f4790 --- /dev/null +++ b/hyperparameter/m4/tabsyn/tabsyn-m4-20260505_182833/public_gate/public_gate_report.json @@ -0,0 +1,37 @@ +{ + "dataset_id": "m4", + "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": "charges", + "task_type": "regression", + "input_splits": { + "train": "/data/jialinzhang/SynthesizePipeline-server/DatasetNew/m4/m4-train.csv", + "val": "/data/jialinzhang/SynthesizePipeline-server/DatasetNew/m4/m4-val.csv", + "test": "/data/jialinzhang/SynthesizePipeline-server/DatasetNew/m4/m4-test.csv" + } +} \ No newline at end of file diff --git a/hyperparameter/m4/tabsyn/tabsyn-m4-20260505_182833/public_gate/staged_input_manifest.json b/hyperparameter/m4/tabsyn/tabsyn-m4-20260505_182833/public_gate/staged_input_manifest.json new file mode 100644 index 0000000000000000000000000000000000000000..5895f6954a90c073f1bf3f0932cedb329f69b5bb --- /dev/null +++ b/hyperparameter/m4/tabsyn/tabsyn-m4-20260505_182833/public_gate/staged_input_manifest.json @@ -0,0 +1,152 @@ +{ + "dataset_id": "m4", + "target_column": "charges", + "task_type": "regression", + "train_csv": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/m4/tabsyn/tabsyn-m4-20260505_182833/staged/public/train.csv", + "val_csv": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/m4/tabsyn/tabsyn-m4-20260505_182833/staged/public/val.csv", + "test_csv": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/m4/tabsyn/tabsyn-m4-20260505_182833/staged/public/test.csv", + "features_json": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/m4/tabsyn/tabsyn-m4-20260505_182833/staged/public/staged_features.json", + "public_gate_report": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/m4/tabsyn/tabsyn-m4-20260505_182833/public_gate/public_gate_report.json", + "column_schema": [ + { + "name": "age", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 47, + "unique_ratio": 0.0212, + "example_values": [ + "46", + "38", + "19", + "27", + "26" + ] + } + }, + { + "name": "sex", + "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.000902, + "example_values": [ + "female", + "male" + ] + } + }, + { + "name": "bmi", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 538, + "unique_ratio": 0.24267, + "example_values": [ + "23.655", + "19.3", + "30.59", + "32.67", + "29.45" + ] + } + }, + { + "name": "children", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 6, + "unique_ratio": 0.002706, + "example_values": [ + "1", + "0", + "3", + "2", + "5" + ] + } + }, + { + "name": "smoker", + "role": "feature", + "semantic_type": "boolean", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 2, + "unique_ratio": 0.000902, + "example_values": [ + "yes", + "no" + ] + } + }, + { + "name": "region", + "role": "feature", + "semantic_type": "categorical", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 4, + "unique_ratio": 0.001804, + "example_values": [ + "northwest", + "southwest", + "southeast", + "northeast" + ] + } + }, + { + "name": "charges", + "role": "target", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 1281, + "unique_ratio": 0.577808, + "example_values": [ + "21677.28345", + "15820.699", + "1639.5631", + "2497.0383", + "2897.3235" + ] + } + } + ] +} \ No newline at end of file diff --git a/hyperparameter/m4/tabsyn/tabsyn-m4-20260505_182833/run_config.json b/hyperparameter/m4/tabsyn/tabsyn-m4-20260505_182833/run_config.json new file mode 100644 index 0000000000000000000000000000000000000000..5bfcfe13df615fbbee5152c2723ec5efd2bbf3bc --- /dev/null +++ b/hyperparameter/m4/tabsyn/tabsyn-m4-20260505_182833/run_config.json @@ -0,0 +1,49 @@ +{ + "schema_version": 1, + "recorded_at": "2026-05-05T18:28:33", + "dataset_id": "m4", + "model": "tabsyn", + "work_dir": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/m4/tabsyn/tabsyn-m4-20260505_182833", + "dataset_source_requested": "new", + "dataset_source_resolved": "new", + "cli_args": { + "model": "tabsyn", + "dataset": "m4", + "dataset_source": "new", + "train": true, + "generate": true, + "num_rows": 0, + "epochs": null, + "output_dir": null, + "model_dir": null, + "work_dir": null, + "resume": false, + "no_stats": false + }, + "resolved": { + "num_rows": 2217, + "model_path": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/m4/tabsyn/tabsyn-m4-20260505_182833", + "output_csv": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/m4/tabsyn/tabsyn-m4-20260505_182833/tabsyn-m4-2217-20260505_182846.csv" + }, + "input_artifacts": { + "public_gate_report": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/m4/tabsyn/tabsyn-m4-20260505_182833/public_gate/public_gate_report.json", + "public_manifest": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/m4/tabsyn/tabsyn-m4-20260505_182833/public_gate/staged_input_manifest.json", + "model_manifest": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/m4/tabsyn/tabsyn-m4-20260505_182833/staged/tabsyn/model_input_manifest.json", + "train_csv": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/m4/tabsyn/tabsyn-m4-20260505_182833/staged/public/train.csv", + "features_json": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/m4/tabsyn/tabsyn-m4-20260505_182833/staged/public/staged_features.json", + "target_column": "charges", + "task_type": "regression" + }, + "env_overrides": { + "BENCHMARK_TABSYN_GPUS": "device=3", + "TABSYN_DIFFUSION_MAX_EPOCHS": "10", + "TABSYN_DIFFUSION_NUM_WORKERS": "0", + "TABSYN_RESUME": "0", + "TABSYN_VAE_BATCH_SIZE": "256", + "TABSYN_VAE_ENCODE_BATCH_SIZE": "256", + "TABSYN_VAE_EPOCHS": "10", + "TABSYN_VAE_EVAL_BATCH_SIZE": "256", + "TABSYN_VAE_INFER_BATCH_SIZE": "256", + "TABSYN_VAE_NUM_WORKERS": "0" + } +} \ No newline at end of file diff --git a/hyperparameter/m4/tabsyn/tabsyn-m4-20260505_182833/runtime_result.json b/hyperparameter/m4/tabsyn/tabsyn-m4-20260505_182833/runtime_result.json new file mode 100644 index 0000000000000000000000000000000000000000..56caee648d40c1aa2a97762faf32c41f2ec4d341 --- /dev/null +++ b/hyperparameter/m4/tabsyn/tabsyn-m4-20260505_182833/runtime_result.json @@ -0,0 +1,27 @@ +{ + "dataset_id": "m4", + "model": "tabsyn", + "run_id": "tabsyn-m4-20260505_182833", + "public_gate_status": "pass", + "adapter_ready_status": "pass", + "train_status": "success", + "generate_status": "success", + "reason_code": null, + "reason_detail": null, + "artifacts": { + "synthetic_csv": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/m4/tabsyn/tabsyn-m4-20260505_182833/tabsyn-m4-2217-20260505_182846.csv", + "model_path": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/m4/tabsyn/tabsyn-m4-20260505_182833" + }, + "timings": { + "train": { + "started_at": "2026-05-05T18:28:33", + "ended_at": "2026-05-05T18:28:46", + "duration_sec": 12.802 + }, + "generate": { + "started_at": "2026-05-05T18:28:46", + "ended_at": "2026-05-05T18:28:51", + "duration_sec": 4.655 + } + } +} \ No newline at end of file diff --git a/hyperparameter/m4/tabsyn/tabsyn-m4-20260505_182833/staged/public/staged_features.json b/hyperparameter/m4/tabsyn/tabsyn-m4-20260505_182833/staged/public/staged_features.json new file mode 100644 index 0000000000000000000000000000000000000000..d6acd098c35111f423f3ffff2cfd1754bc5dfebc --- /dev/null +++ b/hyperparameter/m4/tabsyn/tabsyn-m4-20260505_182833/staged/public/staged_features.json @@ -0,0 +1,37 @@ +[ + { + "feature_name": "age", + "data_type": "continuous", + "is_target": false + }, + { + "feature_name": "sex", + "data_type": "categorical", + "is_target": false + }, + { + "feature_name": "bmi", + "data_type": "continuous", + "is_target": false + }, + { + "feature_name": "children", + "data_type": "continuous", + "is_target": false + }, + { + "feature_name": "smoker", + "data_type": "binary", + "is_target": false + }, + { + "feature_name": "region", + "data_type": "categorical", + "is_target": false + }, + { + "feature_name": "charges", + "data_type": "continuous", + "is_target": true + } +] \ No newline at end of file diff --git a/hyperparameter/m4/tabsyn/tabsyn-m4-20260505_182833/staged/public/test.csv b/hyperparameter/m4/tabsyn/tabsyn-m4-20260505_182833/staged/public/test.csv new file mode 100644 index 0000000000000000000000000000000000000000..c88a2e7cfcd715bb421cb56eb078033da45c4dc8 --- /dev/null +++ b/hyperparameter/m4/tabsyn/tabsyn-m4-20260505_182833/staged/public/test.csv @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:4c541b677fb2d45c5bc79338eeee9fd8c91484b195a0c2c546c2fbabf113b7ea +size 11298 diff --git a/hyperparameter/m4/tabsyn/tabsyn-m4-20260505_182833/staged/public/train.csv b/hyperparameter/m4/tabsyn/tabsyn-m4-20260505_182833/staged/public/train.csv new file mode 100644 index 0000000000000000000000000000000000000000..5a05019d786529e0617291766c4fbe016ca01bf5 --- /dev/null +++ b/hyperparameter/m4/tabsyn/tabsyn-m4-20260505_182833/staged/public/train.csv @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:614ebfac5f41d6f661aff675fa18c0f933a8d9bcc77ea71b7b2360c2f0155837 +size 90069 diff --git a/hyperparameter/m4/tabsyn/tabsyn-m4-20260505_182833/staged/public/val.csv b/hyperparameter/m4/tabsyn/tabsyn-m4-20260505_182833/staged/public/val.csv new file mode 100644 index 0000000000000000000000000000000000000000..d78fe5ad1537c437ba9ac2629f2aa60a6c17e708 --- /dev/null +++ b/hyperparameter/m4/tabsyn/tabsyn-m4-20260505_182833/staged/public/val.csv @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:e55f5edbe7942ff01630de91a9c70dfbc6445eba76c7b970350364546b67c2d7 +size 11218 diff --git a/hyperparameter/m4/tabsyn/tabsyn-m4-20260505_182833/staged/tabsyn/adapter_report.json b/hyperparameter/m4/tabsyn/tabsyn-m4-20260505_182833/staged/tabsyn/adapter_report.json new file mode 100644 index 0000000000000000000000000000000000000000..5d5f2722f0c77138245383166d609b2eedee216a --- /dev/null +++ b/hyperparameter/m4/tabsyn/tabsyn-m4-20260505_182833/staged/tabsyn/adapter_report.json @@ -0,0 +1,7 @@ +{ + "adapter_ready_status": "pass", + "adapter_fail_reason_code": null, + "adapter_fail_detail": null, + "adapter_transforms_applied": [], + "model_input_manifest": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/m4/tabsyn/tabsyn-m4-20260505_182833/staged/tabsyn/model_input_manifest.json" +} \ No newline at end of file diff --git a/hyperparameter/m4/tabsyn/tabsyn-m4-20260505_182833/staged/tabsyn/adapter_transforms_applied.json b/hyperparameter/m4/tabsyn/tabsyn-m4-20260505_182833/staged/tabsyn/adapter_transforms_applied.json new file mode 100644 index 0000000000000000000000000000000000000000..0637a088a01e8ddab3bf3fa98dbe804cbde1a0dc --- /dev/null +++ b/hyperparameter/m4/tabsyn/tabsyn-m4-20260505_182833/staged/tabsyn/adapter_transforms_applied.json @@ -0,0 +1 @@ +[] \ No newline at end of file diff --git a/hyperparameter/m4/tabsyn/tabsyn-m4-20260505_182833/staged/tabsyn/model_input_manifest.json b/hyperparameter/m4/tabsyn/tabsyn-m4-20260505_182833/staged/tabsyn/model_input_manifest.json new file mode 100644 index 0000000000000000000000000000000000000000..568161d0a4a5d2e2ef0b2c8329c934867fa2e4f4 --- /dev/null +++ b/hyperparameter/m4/tabsyn/tabsyn-m4-20260505_182833/staged/tabsyn/model_input_manifest.json @@ -0,0 +1,154 @@ +{ + "dataset_id": "m4", + "model": "tabsyn", + "target_column": "charges", + "task_type": "regression", + "column_schema": [ + { + "name": "age", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 47, + "unique_ratio": 0.0212, + "example_values": [ + "46", + "38", + "19", + "27", + "26" + ] + } + }, + { + "name": "sex", + "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.000902, + "example_values": [ + "female", + "male" + ] + } + }, + { + "name": "bmi", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 538, + "unique_ratio": 0.24267, + "example_values": [ + "23.655", + "19.3", + "30.59", + "32.67", + "29.45" + ] + } + }, + { + "name": "children", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 6, + "unique_ratio": 0.002706, + "example_values": [ + "1", + "0", + "3", + "2", + "5" + ] + } + }, + { + "name": "smoker", + "role": "feature", + "semantic_type": "boolean", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 2, + "unique_ratio": 0.000902, + "example_values": [ + "yes", + "no" + ] + } + }, + { + "name": "region", + "role": "feature", + "semantic_type": "categorical", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 4, + "unique_ratio": 0.001804, + "example_values": [ + "northwest", + "southwest", + "southeast", + "northeast" + ] + } + }, + { + "name": "charges", + "role": "target", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 1281, + "unique_ratio": 0.577808, + "example_values": [ + "21677.28345", + "15820.699", + "1639.5631", + "2497.0383", + "2897.3235" + ] + } + } + ], + "public_manifest": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/m4/tabsyn/tabsyn-m4-20260505_182833/public_gate/staged_input_manifest.json", + "train_csv": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/m4/tabsyn/tabsyn-m4-20260505_182833/staged/public/train.csv", + "val_csv": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/m4/tabsyn/tabsyn-m4-20260505_182833/staged/public/val.csv", + "test_csv": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/m4/tabsyn/tabsyn-m4-20260505_182833/staged/public/test.csv", + "features_json": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/m4/tabsyn/tabsyn-m4-20260505_182833/staged/public/staged_features.json", + "public_gate_report": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/m4/tabsyn/tabsyn-m4-20260505_182833/public_gate/public_gate_report.json" +} \ No newline at end of file diff --git a/hyperparameter/m4/tabsyn/tabsyn-m4-20260505_182833/synthetic/tabsyn_m4_tabsyn_m4_20260505_182833/real.csv b/hyperparameter/m4/tabsyn/tabsyn-m4-20260505_182833/synthetic/tabsyn_m4_tabsyn_m4_20260505_182833/real.csv new file mode 100644 index 0000000000000000000000000000000000000000..152c9a200d3e5ce590ed1621c80749a36fc97e13 --- /dev/null +++ b/hyperparameter/m4/tabsyn/tabsyn-m4-20260505_182833/synthetic/tabsyn_m4_tabsyn_m4_20260505_182833/real.csv @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:67f64f75063e2f8d838d7f7040ebc12f8c46df4dc54450874b851786224ba875 +size 60802 diff --git a/hyperparameter/m4/tabsyn/tabsyn-m4-20260505_182833/synthetic/tabsyn_m4_tabsyn_m4_20260505_182833/test.csv b/hyperparameter/m4/tabsyn/tabsyn-m4-20260505_182833/synthetic/tabsyn_m4_tabsyn_m4_20260505_182833/test.csv new file mode 100644 index 0000000000000000000000000000000000000000..152c9a200d3e5ce590ed1621c80749a36fc97e13 --- /dev/null +++ b/hyperparameter/m4/tabsyn/tabsyn-m4-20260505_182833/synthetic/tabsyn_m4_tabsyn_m4_20260505_182833/test.csv @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:67f64f75063e2f8d838d7f7040ebc12f8c46df4dc54450874b851786224ba875 +size 60802 diff --git a/hyperparameter/m4/tabsyn/tabsyn-m4-20260505_182833/tabsyn-m4-2217-20260505_182846.csv b/hyperparameter/m4/tabsyn/tabsyn-m4-20260505_182833/tabsyn-m4-2217-20260505_182846.csv new file mode 100644 index 0000000000000000000000000000000000000000..bc9222eb2f5e580c6dc9c7e33e68a6d64c8d67eb --- /dev/null +++ b/hyperparameter/m4/tabsyn/tabsyn-m4-20260505_182833/tabsyn-m4-2217-20260505_182846.csv @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:48e7d76f0590eecc0b6266b58f3424f8fab39bcaf0f60789028ccdfa17667984 +size 82655 diff --git a/hyperparameter/m4/tabsyn/tabsyn-m4-20260505_182833/tabsyn_ckpt/diffusion/tabsyn_m4_tabsyn_m4_20260505_182833/model.pt b/hyperparameter/m4/tabsyn/tabsyn-m4-20260505_182833/tabsyn_ckpt/diffusion/tabsyn_m4_tabsyn_m4_20260505_182833/model.pt new file mode 100644 index 0000000000000000000000000000000000000000..c92133a018e5b9b35cf773c09dc0501f0729f967 --- /dev/null +++ b/hyperparameter/m4/tabsyn/tabsyn-m4-20260505_182833/tabsyn_ckpt/diffusion/tabsyn_m4_tabsyn_m4_20260505_182833/model.pt @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:9bda11be8e87423d474a82f79716340ea752da840438f47f5664fb082eb5b4e4 +size 42210705 diff --git a/hyperparameter/m4/tabsyn/tabsyn-m4-20260505_182833/tabsyn_ckpt/diffusion/tabsyn_m4_tabsyn_m4_20260505_182833/model_0.pt b/hyperparameter/m4/tabsyn/tabsyn-m4-20260505_182833/tabsyn_ckpt/diffusion/tabsyn_m4_tabsyn_m4_20260505_182833/model_0.pt new file mode 100644 index 0000000000000000000000000000000000000000..df2487e9c7d9c1bed7d29e8d22a83be938fb0d00 --- /dev/null +++ b/hyperparameter/m4/tabsyn/tabsyn-m4-20260505_182833/tabsyn_ckpt/diffusion/tabsyn_m4_tabsyn_m4_20260505_182833/model_0.pt @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:99db51e2d3a729ed30d9a3056babd82dcaf3686cf0ae38a1866f111b82fd42aa +size 42211001 diff --git a/hyperparameter/m4/tabsyn/tabsyn-m4-20260505_182833/tabsyn_ckpt/vae/tabsyn_m4_tabsyn_m4_20260505_182833/decoder.pt b/hyperparameter/m4/tabsyn/tabsyn-m4-20260505_182833/tabsyn_ckpt/vae/tabsyn_m4_tabsyn_m4_20260505_182833/decoder.pt new file mode 100644 index 0000000000000000000000000000000000000000..4c5e04714f7d627c35d957a227c16d04c2922f82 --- /dev/null +++ b/hyperparameter/m4/tabsyn/tabsyn-m4-20260505_182833/tabsyn_ckpt/vae/tabsyn_m4_tabsyn_m4_20260505_182833/decoder.pt @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:a740d58b97b3247d3adcc3f423a77fbec6fbf0654ff8c6118925e459e91c1f84 +size 23284 diff --git a/hyperparameter/m4/tabsyn/tabsyn-m4-20260505_182833/tabsyn_ckpt/vae/tabsyn_m4_tabsyn_m4_20260505_182833/encoder.pt b/hyperparameter/m4/tabsyn/tabsyn-m4-20260505_182833/tabsyn_ckpt/vae/tabsyn_m4_tabsyn_m4_20260505_182833/encoder.pt new file mode 100644 index 0000000000000000000000000000000000000000..7826758963fd637ce168c815115635a1b8fdf4b7 --- /dev/null +++ b/hyperparameter/m4/tabsyn/tabsyn-m4-20260505_182833/tabsyn_ckpt/vae/tabsyn_m4_tabsyn_m4_20260505_182833/encoder.pt @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:0cb87798852be801062628232609465f6da1ecf023dacf37401c5a0fe86a5a17 +size 22461 diff --git a/hyperparameter/m4/tabsyn/tabsyn-m4-20260505_182833/tabsyn_ckpt/vae/tabsyn_m4_tabsyn_m4_20260505_182833/model.pt b/hyperparameter/m4/tabsyn/tabsyn-m4-20260505_182833/tabsyn_ckpt/vae/tabsyn_m4_tabsyn_m4_20260505_182833/model.pt new file mode 100644 index 0000000000000000000000000000000000000000..65064feae7021bcb41ceaa17e98251c2bd8c0128 --- /dev/null +++ b/hyperparameter/m4/tabsyn/tabsyn-m4-20260505_182833/tabsyn_ckpt/vae/tabsyn_m4_tabsyn_m4_20260505_182833/model.pt @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:a637a031c28113e4cea9c78f00ab15bb30bc835a477f1cfa44803477f1a29bc4 +size 63903 diff --git a/hyperparameter/m4/tabsyn/tabsyn-m4-20260505_182833/tabsyn_ckpt/vae/tabsyn_m4_tabsyn_m4_20260505_182833/train_z.npy b/hyperparameter/m4/tabsyn/tabsyn-m4-20260505_182833/tabsyn_ckpt/vae/tabsyn_m4_tabsyn_m4_20260505_182833/train_z.npy new file mode 100644 index 0000000000000000000000000000000000000000..028f99bb487216dbc70cc6238ca77de4a348c4be --- /dev/null +++ b/hyperparameter/m4/tabsyn/tabsyn-m4-20260505_182833/tabsyn_ckpt/vae/tabsyn_m4_tabsyn_m4_20260505_182833/train_z.npy @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:84ccf9e6ecf101a34483cbef6b7e40923e7fbec222d2e5e295b91a18b2588d83 +size 283904 diff --git a/hyperparameter/m4/tabsyn/tabsyn-m4-20260505_182833/train_20260505_182833.log b/hyperparameter/m4/tabsyn/tabsyn-m4-20260505_182833/train_20260505_182833.log new file mode 100644 index 0000000000000000000000000000000000000000..8616e3605e86d1db82468cf18bdedfa54260432d --- /dev/null +++ b/hyperparameter/m4/tabsyn/tabsyn-m4-20260505_182833/train_20260505_182833.log @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:4e463fa150fe8ab392bbd31cc1ae75efde3731a8edf599aefff306f6939879d3 +size 8418 diff --git a/hyperparameter/m4/tabsyn/tabsyn-m4-20260505_182903/_tabsyn_sample.py b/hyperparameter/m4/tabsyn/tabsyn-m4-20260505_182903/_tabsyn_sample.py new file mode 100644 index 0000000000000000000000000000000000000000..0bc6e87f45586e26ad0e763acbf5cb34a6143cb1 --- /dev/null +++ b/hyperparameter/m4/tabsyn/tabsyn-m4-20260505_182903/_tabsyn_sample.py @@ -0,0 +1,43 @@ +import os, sys, subprocess + +work_dir = "/work/output-Benchmark-trainonly-v1/m4/tabsyn/tabsyn-m4-20260505_182903" +dataname = "tabsyn_m4_tabsyn_m4_20260505_182903" +output_csv = "/work/output-Benchmark-trainonly-v1/m4/tabsyn/tabsyn-m4-20260505_182903/tabsyn-m4-2217-20260505_182916.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 2217 rows") +env = os.environ.copy() +env.setdefault("TABSYN_RESUME", "0") +env.setdefault("TABSYN_VAE_BATCH_SIZE", "32") +env.setdefault("TABSYN_VAE_EVAL_BATCH_SIZE", env["TABSYN_VAE_BATCH_SIZE"]) +env.setdefault("TABSYN_VAE_INFER_BATCH_SIZE", env["TABSYN_VAE_BATCH_SIZE"]) +env.setdefault("TABSYN_VAE_ENCODE_BATCH_SIZE", env["TABSYN_VAE_BATCH_SIZE"]) +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/hyperparameter/m4/tabsyn/tabsyn-m4-20260505_182903/_tabsyn_train.py b/hyperparameter/m4/tabsyn/tabsyn-m4-20260505_182903/_tabsyn_train.py new file mode 100644 index 0000000000000000000000000000000000000000..ba4d48e60fe5a6532037587876cba19863ea149d --- /dev/null +++ b/hyperparameter/m4/tabsyn/tabsyn-m4-20260505_182903/_tabsyn_train.py @@ -0,0 +1,69 @@ +import os, sys, subprocess + +work_dir = "/work/output-Benchmark-trainonly-v1/m4/tabsyn/tabsyn-m4-20260505_182903" +dataname = "tabsyn_m4_tabsyn_m4_20260505_182903" +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", "0") +env.setdefault("TABSYN_VAE_BATCH_SIZE", "32") +env.setdefault("TABSYN_VAE_NUM_WORKERS", "0") +env.setdefault("TABSYN_VAE_EVAL_BATCH_SIZE", env["TABSYN_VAE_BATCH_SIZE"]) +env.setdefault("TABSYN_VAE_INFER_BATCH_SIZE", env["TABSYN_VAE_BATCH_SIZE"]) +env.setdefault("TABSYN_VAE_ENCODE_BATCH_SIZE", env["TABSYN_VAE_BATCH_SIZE"]) +# Safer defaults for wide tables on Docker: reduce shared-memory pressure in diffusion DataLoader. +env.setdefault("TABSYN_DIFFUSION_NUM_WORKERS", "0") +_te = None +if _te is not None: + env["TABSYN_VAE_EPOCHS"] = str(_te) + env["TABSYN_DIFFUSION_MAX_EPOCHS"] = str(max(_te + 1, 2)) + +# Data preprocessing is done on the host side (_prepare_data_dir) +# which creates .npy files, train/test CSVs, and info.json + +# Step 1: Train VAE (produces latent embeddings) +print(f"[TabSyn] Step 1/2: Training VAE in {tabsyn_root}, dataname={dataname}") +ret = subprocess.run( + [sys.executable, "main.py", + "--dataname", dataname, + "--mode", "train", + "--method", "vae", + "--gpu", "0"], + cwd=tabsyn_root, + env=env +) +if ret.returncode != 0: + print("[TabSyn] VAE training failed") + sys.exit(ret.returncode) + +# Step 2: Train diffusion model on latent space +print(f"[TabSyn] Step 2/2: Training diffusion model") +ret = subprocess.run( + [sys.executable, "main.py", + "--dataname", dataname, + "--mode", "train", + "--method", "tabsyn", + "--gpu", "0"], + cwd=tabsyn_root, + env=env +) +if ret.returncode != 0: + print("[TabSyn] Diffusion training failed") + sys.exit(ret.returncode) +print("[TabSyn] Training complete (VAE + Diffusion)") diff --git a/hyperparameter/m4/tabsyn/tabsyn-m4-20260505_182903/data/tabsyn_m4_tabsyn_m4_20260505_182903/X_cat_test.npy b/hyperparameter/m4/tabsyn/tabsyn-m4-20260505_182903/data/tabsyn_m4_tabsyn_m4_20260505_182903/X_cat_test.npy new file mode 100644 index 0000000000000000000000000000000000000000..35977ccea6d36736d37a5000108e57633f2bb227 --- /dev/null +++ b/hyperparameter/m4/tabsyn/tabsyn-m4-20260505_182903/data/tabsyn_m4_tabsyn_m4_20260505_182903/X_cat_test.npy @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:d8893cf5626d7469e90c946b0f59fca148a445e109a27fa5a2acdd425b6bb7d2 +size 53336 diff --git a/hyperparameter/m4/tabsyn/tabsyn-m4-20260505_182903/data/tabsyn_m4_tabsyn_m4_20260505_182903/X_cat_train.npy b/hyperparameter/m4/tabsyn/tabsyn-m4-20260505_182903/data/tabsyn_m4_tabsyn_m4_20260505_182903/X_cat_train.npy new file mode 100644 index 0000000000000000000000000000000000000000..35977ccea6d36736d37a5000108e57633f2bb227 --- /dev/null +++ b/hyperparameter/m4/tabsyn/tabsyn-m4-20260505_182903/data/tabsyn_m4_tabsyn_m4_20260505_182903/X_cat_train.npy @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:d8893cf5626d7469e90c946b0f59fca148a445e109a27fa5a2acdd425b6bb7d2 +size 53336 diff --git a/hyperparameter/m4/tabsyn/tabsyn-m4-20260505_182903/data/tabsyn_m4_tabsyn_m4_20260505_182903/X_num_test.npy b/hyperparameter/m4/tabsyn/tabsyn-m4-20260505_182903/data/tabsyn_m4_tabsyn_m4_20260505_182903/X_num_test.npy new file mode 100644 index 0000000000000000000000000000000000000000..dc149960a879e21fd1aeed7de2419851175627e7 --- /dev/null +++ b/hyperparameter/m4/tabsyn/tabsyn-m4-20260505_182903/data/tabsyn_m4_tabsyn_m4_20260505_182903/X_num_test.npy @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:4a21bd2fd5a226c07d543ddf78616a8edb2d52b51097fc7a5df5b05612267af8 +size 26732 diff --git a/hyperparameter/m4/tabsyn/tabsyn-m4-20260505_182903/data/tabsyn_m4_tabsyn_m4_20260505_182903/X_num_train.npy b/hyperparameter/m4/tabsyn/tabsyn-m4-20260505_182903/data/tabsyn_m4_tabsyn_m4_20260505_182903/X_num_train.npy new file mode 100644 index 0000000000000000000000000000000000000000..dc149960a879e21fd1aeed7de2419851175627e7 --- /dev/null +++ b/hyperparameter/m4/tabsyn/tabsyn-m4-20260505_182903/data/tabsyn_m4_tabsyn_m4_20260505_182903/X_num_train.npy @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:4a21bd2fd5a226c07d543ddf78616a8edb2d52b51097fc7a5df5b05612267af8 +size 26732 diff --git a/hyperparameter/m4/tabsyn/tabsyn-m4-20260505_182903/data/tabsyn_m4_tabsyn_m4_20260505_182903/info.json b/hyperparameter/m4/tabsyn/tabsyn-m4-20260505_182903/data/tabsyn_m4_tabsyn_m4_20260505_182903/info.json new file mode 100644 index 0000000000000000000000000000000000000000..dcb48b8ebd26a53759bbbca26c9db97e2c3b9667 --- /dev/null +++ b/hyperparameter/m4/tabsyn/tabsyn-m4-20260505_182903/data/tabsyn_m4_tabsyn_m4_20260505_182903/info.json @@ -0,0 +1,91 @@ +{ + "name": "tabsyn_m4_tabsyn_m4_20260505_182903", + "task_type": "regression", + "n_num_features": 3, + "n_cat_features": 3, + "train_size": 2217, + "num_col_idx": [ + 0, + 2, + 3 + ], + "cat_col_idx": [ + 1, + 4, + 5 + ], + "target_col_idx": [ + 6 + ], + "column_names": [ + "age", + "sex", + "bmi", + "children", + "smoker", + "region", + "charges" + ], + "train_num": 2217, + "test_num": 2217, + "header": 0, + "file_type": "csv", + "data_path": "data/tabsyn_m4_tabsyn_m4_20260505_182903/train.csv", + "test_path": null, + "idx_mapping": { + "0": 0, + "1": 3, + "2": 1, + "3": 2, + "4": 4, + "5": 5, + "6": 6 + }, + "inverse_idx_mapping": { + "0": 0, + "3": 1, + "1": 2, + "2": 3, + "4": 4, + "5": 5, + "6": 6 + }, + "idx_name_mapping": { + "0": "age", + "1": "sex", + "2": "bmi", + "3": "children", + "4": "smoker", + "5": "region", + "6": "charges" + }, + "metadata": { + "columns": { + "0": { + "sdtype": "numerical", + "computer_representation": "Float" + }, + "2": { + "sdtype": "numerical", + "computer_representation": "Float" + }, + "3": { + "sdtype": "numerical", + "computer_representation": "Float" + }, + "1": { + "sdtype": "categorical" + }, + "4": { + "sdtype": "categorical" + }, + "5": { + "sdtype": "categorical" + }, + "6": { + "sdtype": "numerical", + "computer_representation": "Float" + } + } + } +} \ No newline at end of file diff --git a/hyperparameter/m4/tabsyn/tabsyn-m4-20260505_182903/data/tabsyn_m4_tabsyn_m4_20260505_182903/test.csv b/hyperparameter/m4/tabsyn/tabsyn-m4-20260505_182903/data/tabsyn_m4_tabsyn_m4_20260505_182903/test.csv new file mode 100644 index 0000000000000000000000000000000000000000..152c9a200d3e5ce590ed1621c80749a36fc97e13 --- /dev/null +++ b/hyperparameter/m4/tabsyn/tabsyn-m4-20260505_182903/data/tabsyn_m4_tabsyn_m4_20260505_182903/test.csv @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:67f64f75063e2f8d838d7f7040ebc12f8c46df4dc54450874b851786224ba875 +size 60802 diff --git a/hyperparameter/m4/tabsyn/tabsyn-m4-20260505_182903/data/tabsyn_m4_tabsyn_m4_20260505_182903/train.csv b/hyperparameter/m4/tabsyn/tabsyn-m4-20260505_182903/data/tabsyn_m4_tabsyn_m4_20260505_182903/train.csv new file mode 100644 index 0000000000000000000000000000000000000000..152c9a200d3e5ce590ed1621c80749a36fc97e13 --- /dev/null +++ b/hyperparameter/m4/tabsyn/tabsyn-m4-20260505_182903/data/tabsyn_m4_tabsyn_m4_20260505_182903/train.csv @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:67f64f75063e2f8d838d7f7040ebc12f8c46df4dc54450874b851786224ba875 +size 60802 diff --git a/hyperparameter/m4/tabsyn/tabsyn-m4-20260505_182903/data/tabsyn_m4_tabsyn_m4_20260505_182903/y_test.npy b/hyperparameter/m4/tabsyn/tabsyn-m4-20260505_182903/data/tabsyn_m4_tabsyn_m4_20260505_182903/y_test.npy new file mode 100644 index 0000000000000000000000000000000000000000..c1d23d8e35b403e2d772e5544af9d68ff32a8ea0 --- /dev/null +++ b/hyperparameter/m4/tabsyn/tabsyn-m4-20260505_182903/data/tabsyn_m4_tabsyn_m4_20260505_182903/y_test.npy @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:4d6e4ad93beee28740cc25ee808a180c01fa94a053f79ff383504888f2d8f39e +size 17864 diff --git a/hyperparameter/m4/tabsyn/tabsyn-m4-20260505_182903/data/tabsyn_m4_tabsyn_m4_20260505_182903/y_train.npy b/hyperparameter/m4/tabsyn/tabsyn-m4-20260505_182903/data/tabsyn_m4_tabsyn_m4_20260505_182903/y_train.npy new file mode 100644 index 0000000000000000000000000000000000000000..c1d23d8e35b403e2d772e5544af9d68ff32a8ea0 --- /dev/null +++ b/hyperparameter/m4/tabsyn/tabsyn-m4-20260505_182903/data/tabsyn_m4_tabsyn_m4_20260505_182903/y_train.npy @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:4d6e4ad93beee28740cc25ee808a180c01fa94a053f79ff383504888f2d8f39e +size 17864 diff --git a/hyperparameter/m4/tabsyn/tabsyn-m4-20260505_182903/gen_20260505_182916.log b/hyperparameter/m4/tabsyn/tabsyn-m4-20260505_182903/gen_20260505_182916.log new file mode 100644 index 0000000000000000000000000000000000000000..7d313ae214e49611ca63d698eaa209c3a7b69109 --- /dev/null +++ b/hyperparameter/m4/tabsyn/tabsyn-m4-20260505_182903/gen_20260505_182916.log @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:156618dcd11fb2e4ae96f6ce40b6f97ab823b508647ad18cb196b2088bcbb2f4 +size 928 diff --git a/hyperparameter/m4/tabsyn/tabsyn-m4-20260505_182903/input_snapshot.json b/hyperparameter/m4/tabsyn/tabsyn-m4-20260505_182903/input_snapshot.json new file mode 100644 index 0000000000000000000000000000000000000000..21fe15b6e6863f7441ca4017d82218a03e3a90b4 --- /dev/null +++ b/hyperparameter/m4/tabsyn/tabsyn-m4-20260505_182903/input_snapshot.json @@ -0,0 +1,36 @@ +{ + "dataset_id": "m4", + "model": "tabsyn", + "inputs": { + "train_csv": { + "path": "/data/jialinzhang/SynthesizePipeline-server/DatasetNew/m4/m4-train.csv", + "exists": true, + "size": 92191, + "sha256": "396b9d409ca21bf4a4cd329bdf5b7796aa0ae6356fa8d89b8eb669b5880b81f1" + }, + "val_csv": { + "path": "/data/jialinzhang/SynthesizePipeline-server/DatasetNew/m4/m4-val.csv", + "exists": true, + "size": 11482, + "sha256": "ee3c247d02f56e1687d03c381e13125d6a3a2a411ac7f202ba8520a4be9f1784" + }, + "test_csv": { + "path": "/data/jialinzhang/SynthesizePipeline-server/DatasetNew/m4/m4-test.csv", + "exists": true, + "size": 11559, + "sha256": "cadb9941124001b8fa7cb1ebae43b70a9ca56294f4df4d3c2f22c164c41757d4" + }, + "profile_json": { + "path": "/data/jialinzhang/SynthesizePipeline-server/DatasetNew/artifacts/data_core/tabular/m4/m4-dataset_profile.json", + "exists": true, + "size": 3336, + "sha256": "83e2764810e4a0e8cdece3a28dbd9134b7c9df6f2e56953e46d024ad2c4e035f" + }, + "contract_json": { + "path": "/data/jialinzhang/SynthesizePipeline-server/DatasetNew/artifacts/data_core/tabular/m4/m4-dataset_contract_v1.json", + "exists": true, + "size": 3810, + "sha256": "c23641b258629a845b164099bd0132886f8f6d0100e990494e0f92540f8987d9" + } + } +} \ No newline at end of file diff --git a/hyperparameter/m4/tabsyn/tabsyn-m4-20260505_182903/public_gate/normalized_schema_snapshot.json b/hyperparameter/m4/tabsyn/tabsyn-m4-20260505_182903/public_gate/normalized_schema_snapshot.json new file mode 100644 index 0000000000000000000000000000000000000000..31ed9818686b11907df75e872e4ffbe010330880 --- /dev/null +++ b/hyperparameter/m4/tabsyn/tabsyn-m4-20260505_182903/public_gate/normalized_schema_snapshot.json @@ -0,0 +1,147 @@ +{ + "dataset_id": "m4", + "target_column": "charges", + "task_type": "regression", + "columns": [ + { + "name": "age", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 47, + "unique_ratio": 0.0212, + "example_values": [ + "46", + "38", + "19", + "27", + "26" + ] + } + }, + { + "name": "sex", + "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.000902, + "example_values": [ + "female", + "male" + ] + } + }, + { + "name": "bmi", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 538, + "unique_ratio": 0.24267, + "example_values": [ + "23.655", + "19.3", + "30.59", + "32.67", + "29.45" + ] + } + }, + { + "name": "children", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 6, + "unique_ratio": 0.002706, + "example_values": [ + "1", + "0", + "3", + "2", + "5" + ] + } + }, + { + "name": "smoker", + "role": "feature", + "semantic_type": "boolean", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 2, + "unique_ratio": 0.000902, + "example_values": [ + "yes", + "no" + ] + } + }, + { + "name": "region", + "role": "feature", + "semantic_type": "categorical", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 4, + "unique_ratio": 0.001804, + "example_values": [ + "northwest", + "southwest", + "southeast", + "northeast" + ] + } + }, + { + "name": "charges", + "role": "target", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 1281, + "unique_ratio": 0.577808, + "example_values": [ + "21677.28345", + "15820.699", + "1639.5631", + "2497.0383", + "2897.3235" + ] + } + } + ] +} \ No newline at end of file diff --git a/hyperparameter/m4/tabsyn/tabsyn-m4-20260505_182903/public_gate/public_gate_report.json b/hyperparameter/m4/tabsyn/tabsyn-m4-20260505_182903/public_gate/public_gate_report.json new file mode 100644 index 0000000000000000000000000000000000000000..e7a25408e2574124629ea9437356551e4d6f4790 --- /dev/null +++ b/hyperparameter/m4/tabsyn/tabsyn-m4-20260505_182903/public_gate/public_gate_report.json @@ -0,0 +1,37 @@ +{ + "dataset_id": "m4", + "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": "charges", + "task_type": "regression", + "input_splits": { + "train": "/data/jialinzhang/SynthesizePipeline-server/DatasetNew/m4/m4-train.csv", + "val": "/data/jialinzhang/SynthesizePipeline-server/DatasetNew/m4/m4-val.csv", + "test": "/data/jialinzhang/SynthesizePipeline-server/DatasetNew/m4/m4-test.csv" + } +} \ No newline at end of file diff --git a/hyperparameter/m4/tabsyn/tabsyn-m4-20260505_182903/public_gate/staged_input_manifest.json b/hyperparameter/m4/tabsyn/tabsyn-m4-20260505_182903/public_gate/staged_input_manifest.json new file mode 100644 index 0000000000000000000000000000000000000000..3158e9100188c0faa51ab7c4917cb179f1c4b1c6 --- /dev/null +++ b/hyperparameter/m4/tabsyn/tabsyn-m4-20260505_182903/public_gate/staged_input_manifest.json @@ -0,0 +1,152 @@ +{ + "dataset_id": "m4", + "target_column": "charges", + "task_type": "regression", + "train_csv": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/m4/tabsyn/tabsyn-m4-20260505_182903/staged/public/train.csv", + "val_csv": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/m4/tabsyn/tabsyn-m4-20260505_182903/staged/public/val.csv", + "test_csv": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/m4/tabsyn/tabsyn-m4-20260505_182903/staged/public/test.csv", + "features_json": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/m4/tabsyn/tabsyn-m4-20260505_182903/staged/public/staged_features.json", + "public_gate_report": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/m4/tabsyn/tabsyn-m4-20260505_182903/public_gate/public_gate_report.json", + "column_schema": [ + { + "name": "age", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 47, + "unique_ratio": 0.0212, + "example_values": [ + "46", + "38", + "19", + "27", + "26" + ] + } + }, + { + "name": "sex", + "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.000902, + "example_values": [ + "female", + "male" + ] + } + }, + { + "name": "bmi", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 538, + "unique_ratio": 0.24267, + "example_values": [ + "23.655", + "19.3", + "30.59", + "32.67", + "29.45" + ] + } + }, + { + "name": "children", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 6, + "unique_ratio": 0.002706, + "example_values": [ + "1", + "0", + "3", + "2", + "5" + ] + } + }, + { + "name": "smoker", + "role": "feature", + "semantic_type": "boolean", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 2, + "unique_ratio": 0.000902, + "example_values": [ + "yes", + "no" + ] + } + }, + { + "name": "region", + "role": "feature", + "semantic_type": "categorical", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 4, + "unique_ratio": 0.001804, + "example_values": [ + "northwest", + "southwest", + "southeast", + "northeast" + ] + } + }, + { + "name": "charges", + "role": "target", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 1281, + "unique_ratio": 0.577808, + "example_values": [ + "21677.28345", + "15820.699", + "1639.5631", + "2497.0383", + "2897.3235" + ] + } + } + ] +} \ No newline at end of file diff --git a/hyperparameter/m4/tabsyn/tabsyn-m4-20260505_182903/run_config.json b/hyperparameter/m4/tabsyn/tabsyn-m4-20260505_182903/run_config.json new file mode 100644 index 0000000000000000000000000000000000000000..a2f2d8cfabb88cc39baf3f70268a97311b971785 --- /dev/null +++ b/hyperparameter/m4/tabsyn/tabsyn-m4-20260505_182903/run_config.json @@ -0,0 +1,49 @@ +{ + "schema_version": 1, + "recorded_at": "2026-05-05T18:29:03", + "dataset_id": "m4", + "model": "tabsyn", + "work_dir": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/m4/tabsyn/tabsyn-m4-20260505_182903", + "dataset_source_requested": "new", + "dataset_source_resolved": "new", + "cli_args": { + "model": "tabsyn", + "dataset": "m4", + "dataset_source": "new", + "train": true, + "generate": true, + "num_rows": 0, + "epochs": null, + "output_dir": null, + "model_dir": null, + "work_dir": null, + "resume": false, + "no_stats": false + }, + "resolved": { + "num_rows": 2217, + "model_path": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/m4/tabsyn/tabsyn-m4-20260505_182903", + "output_csv": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/m4/tabsyn/tabsyn-m4-20260505_182903/tabsyn-m4-2217-20260505_182916.csv" + }, + "input_artifacts": { + "public_gate_report": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/m4/tabsyn/tabsyn-m4-20260505_182903/public_gate/public_gate_report.json", + "public_manifest": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/m4/tabsyn/tabsyn-m4-20260505_182903/public_gate/staged_input_manifest.json", + "model_manifest": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/m4/tabsyn/tabsyn-m4-20260505_182903/staged/tabsyn/model_input_manifest.json", + "train_csv": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/m4/tabsyn/tabsyn-m4-20260505_182903/staged/public/train.csv", + "features_json": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/m4/tabsyn/tabsyn-m4-20260505_182903/staged/public/staged_features.json", + "target_column": "charges", + "task_type": "regression" + }, + "env_overrides": { + "BENCHMARK_TABSYN_GPUS": "device=3", + "TABSYN_DIFFUSION_MAX_EPOCHS": "15", + "TABSYN_DIFFUSION_NUM_WORKERS": "0", + "TABSYN_RESUME": "0", + "TABSYN_VAE_BATCH_SIZE": "256", + "TABSYN_VAE_ENCODE_BATCH_SIZE": "256", + "TABSYN_VAE_EPOCHS": "15", + "TABSYN_VAE_EVAL_BATCH_SIZE": "256", + "TABSYN_VAE_INFER_BATCH_SIZE": "256", + "TABSYN_VAE_NUM_WORKERS": "0" + } +} \ No newline at end of file diff --git a/hyperparameter/m4/tabsyn/tabsyn-m4-20260505_182903/runtime_result.json b/hyperparameter/m4/tabsyn/tabsyn-m4-20260505_182903/runtime_result.json new file mode 100644 index 0000000000000000000000000000000000000000..870bb792e32bd14593ac1bc996a0464fa1919b5b --- /dev/null +++ b/hyperparameter/m4/tabsyn/tabsyn-m4-20260505_182903/runtime_result.json @@ -0,0 +1,27 @@ +{ + "dataset_id": "m4", + "model": "tabsyn", + "run_id": "tabsyn-m4-20260505_182903", + "public_gate_status": "pass", + "adapter_ready_status": "pass", + "train_status": "success", + "generate_status": "success", + "reason_code": null, + "reason_detail": null, + "artifacts": { + "synthetic_csv": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/m4/tabsyn/tabsyn-m4-20260505_182903/tabsyn-m4-2217-20260505_182916.csv", + "model_path": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/m4/tabsyn/tabsyn-m4-20260505_182903" + }, + "timings": { + "train": { + "started_at": "2026-05-05T18:29:03", + "ended_at": "2026-05-05T18:29:16", + "duration_sec": 13.614 + }, + "generate": { + "started_at": "2026-05-05T18:29:16", + "ended_at": "2026-05-05T18:29:21", + "duration_sec": 4.729 + } + } +} \ No newline at end of file diff --git a/hyperparameter/m4/tabsyn/tabsyn-m4-20260505_182903/staged/public/staged_features.json b/hyperparameter/m4/tabsyn/tabsyn-m4-20260505_182903/staged/public/staged_features.json new file mode 100644 index 0000000000000000000000000000000000000000..d6acd098c35111f423f3ffff2cfd1754bc5dfebc --- /dev/null +++ b/hyperparameter/m4/tabsyn/tabsyn-m4-20260505_182903/staged/public/staged_features.json @@ -0,0 +1,37 @@ +[ + { + "feature_name": "age", + "data_type": "continuous", + "is_target": false + }, + { + "feature_name": "sex", + "data_type": "categorical", + "is_target": false + }, + { + "feature_name": "bmi", + "data_type": "continuous", + "is_target": false + }, + { + "feature_name": "children", + "data_type": "continuous", + "is_target": false + }, + { + "feature_name": "smoker", + "data_type": "binary", + "is_target": false + }, + { + "feature_name": "region", + "data_type": "categorical", + "is_target": false + }, + { + "feature_name": "charges", + "data_type": "continuous", + "is_target": true + } +] \ No newline at end of file diff --git a/hyperparameter/m4/tabsyn/tabsyn-m4-20260505_182903/staged/public/test.csv b/hyperparameter/m4/tabsyn/tabsyn-m4-20260505_182903/staged/public/test.csv new file mode 100644 index 0000000000000000000000000000000000000000..c88a2e7cfcd715bb421cb56eb078033da45c4dc8 --- /dev/null +++ b/hyperparameter/m4/tabsyn/tabsyn-m4-20260505_182903/staged/public/test.csv @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:4c541b677fb2d45c5bc79338eeee9fd8c91484b195a0c2c546c2fbabf113b7ea +size 11298 diff --git a/hyperparameter/m4/tabsyn/tabsyn-m4-20260505_182903/staged/public/train.csv b/hyperparameter/m4/tabsyn/tabsyn-m4-20260505_182903/staged/public/train.csv new file mode 100644 index 0000000000000000000000000000000000000000..5a05019d786529e0617291766c4fbe016ca01bf5 --- /dev/null +++ b/hyperparameter/m4/tabsyn/tabsyn-m4-20260505_182903/staged/public/train.csv @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:614ebfac5f41d6f661aff675fa18c0f933a8d9bcc77ea71b7b2360c2f0155837 +size 90069 diff --git a/hyperparameter/m4/tabsyn/tabsyn-m4-20260505_182903/staged/public/val.csv b/hyperparameter/m4/tabsyn/tabsyn-m4-20260505_182903/staged/public/val.csv new file mode 100644 index 0000000000000000000000000000000000000000..d78fe5ad1537c437ba9ac2629f2aa60a6c17e708 --- /dev/null +++ b/hyperparameter/m4/tabsyn/tabsyn-m4-20260505_182903/staged/public/val.csv @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:e55f5edbe7942ff01630de91a9c70dfbc6445eba76c7b970350364546b67c2d7 +size 11218 diff --git a/hyperparameter/m4/tabsyn/tabsyn-m4-20260505_182903/staged/tabsyn/adapter_report.json b/hyperparameter/m4/tabsyn/tabsyn-m4-20260505_182903/staged/tabsyn/adapter_report.json new file mode 100644 index 0000000000000000000000000000000000000000..002e468861aebeeae0e6ac47e6424765c5e41eac --- /dev/null +++ b/hyperparameter/m4/tabsyn/tabsyn-m4-20260505_182903/staged/tabsyn/adapter_report.json @@ -0,0 +1,7 @@ +{ + "adapter_ready_status": "pass", + "adapter_fail_reason_code": null, + "adapter_fail_detail": null, + "adapter_transforms_applied": [], + "model_input_manifest": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/m4/tabsyn/tabsyn-m4-20260505_182903/staged/tabsyn/model_input_manifest.json" +} \ No newline at end of file diff --git a/hyperparameter/m4/tabsyn/tabsyn-m4-20260505_182903/staged/tabsyn/adapter_transforms_applied.json b/hyperparameter/m4/tabsyn/tabsyn-m4-20260505_182903/staged/tabsyn/adapter_transforms_applied.json new file mode 100644 index 0000000000000000000000000000000000000000..0637a088a01e8ddab3bf3fa98dbe804cbde1a0dc --- /dev/null +++ b/hyperparameter/m4/tabsyn/tabsyn-m4-20260505_182903/staged/tabsyn/adapter_transforms_applied.json @@ -0,0 +1 @@ +[] \ No newline at end of file diff --git a/hyperparameter/m4/tabsyn/tabsyn-m4-20260505_182903/staged/tabsyn/model_input_manifest.json b/hyperparameter/m4/tabsyn/tabsyn-m4-20260505_182903/staged/tabsyn/model_input_manifest.json new file mode 100644 index 0000000000000000000000000000000000000000..905101aa50d59cbfcbef16c887bc833994ea2562 --- /dev/null +++ b/hyperparameter/m4/tabsyn/tabsyn-m4-20260505_182903/staged/tabsyn/model_input_manifest.json @@ -0,0 +1,154 @@ +{ + "dataset_id": "m4", + "model": "tabsyn", + "target_column": "charges", + "task_type": "regression", + "column_schema": [ + { + "name": "age", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 47, + "unique_ratio": 0.0212, + "example_values": [ + "46", + "38", + "19", + "27", + "26" + ] + } + }, + { + "name": "sex", + "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.000902, + "example_values": [ + "female", + "male" + ] + } + }, + { + "name": "bmi", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 538, + "unique_ratio": 0.24267, + "example_values": [ + "23.655", + "19.3", + "30.59", + "32.67", + "29.45" + ] + } + }, + { + "name": "children", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 6, + "unique_ratio": 0.002706, + "example_values": [ + "1", + "0", + "3", + "2", + "5" + ] + } + }, + { + "name": "smoker", + "role": "feature", + "semantic_type": "boolean", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 2, + "unique_ratio": 0.000902, + "example_values": [ + "yes", + "no" + ] + } + }, + { + "name": "region", + "role": "feature", + "semantic_type": "categorical", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 4, + "unique_ratio": 0.001804, + "example_values": [ + "northwest", + "southwest", + "southeast", + "northeast" + ] + } + }, + { + "name": "charges", + "role": "target", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 1281, + "unique_ratio": 0.577808, + "example_values": [ + "21677.28345", + "15820.699", + "1639.5631", + "2497.0383", + "2897.3235" + ] + } + } + ], + "public_manifest": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/m4/tabsyn/tabsyn-m4-20260505_182903/public_gate/staged_input_manifest.json", + "train_csv": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/m4/tabsyn/tabsyn-m4-20260505_182903/staged/public/train.csv", + "val_csv": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/m4/tabsyn/tabsyn-m4-20260505_182903/staged/public/val.csv", + "test_csv": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/m4/tabsyn/tabsyn-m4-20260505_182903/staged/public/test.csv", + "features_json": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/m4/tabsyn/tabsyn-m4-20260505_182903/staged/public/staged_features.json", + "public_gate_report": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/m4/tabsyn/tabsyn-m4-20260505_182903/public_gate/public_gate_report.json" +} \ No newline at end of file diff --git a/hyperparameter/m4/tabsyn/tabsyn-m4-20260505_182903/synthetic/tabsyn_m4_tabsyn_m4_20260505_182903/real.csv b/hyperparameter/m4/tabsyn/tabsyn-m4-20260505_182903/synthetic/tabsyn_m4_tabsyn_m4_20260505_182903/real.csv new file mode 100644 index 0000000000000000000000000000000000000000..152c9a200d3e5ce590ed1621c80749a36fc97e13 --- /dev/null +++ b/hyperparameter/m4/tabsyn/tabsyn-m4-20260505_182903/synthetic/tabsyn_m4_tabsyn_m4_20260505_182903/real.csv @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:67f64f75063e2f8d838d7f7040ebc12f8c46df4dc54450874b851786224ba875 +size 60802 diff --git a/hyperparameter/m4/tabsyn/tabsyn-m4-20260505_182903/synthetic/tabsyn_m4_tabsyn_m4_20260505_182903/test.csv b/hyperparameter/m4/tabsyn/tabsyn-m4-20260505_182903/synthetic/tabsyn_m4_tabsyn_m4_20260505_182903/test.csv new file mode 100644 index 0000000000000000000000000000000000000000..152c9a200d3e5ce590ed1621c80749a36fc97e13 --- /dev/null +++ b/hyperparameter/m4/tabsyn/tabsyn-m4-20260505_182903/synthetic/tabsyn_m4_tabsyn_m4_20260505_182903/test.csv @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:67f64f75063e2f8d838d7f7040ebc12f8c46df4dc54450874b851786224ba875 +size 60802 diff --git a/hyperparameter/m4/tabsyn/tabsyn-m4-20260505_182903/tabsyn-m4-2217-20260505_182916.csv b/hyperparameter/m4/tabsyn/tabsyn-m4-20260505_182903/tabsyn-m4-2217-20260505_182916.csv new file mode 100644 index 0000000000000000000000000000000000000000..48f20c58ac12123961a04ebe3748bdf3e9d29728 --- /dev/null +++ b/hyperparameter/m4/tabsyn/tabsyn-m4-20260505_182903/tabsyn-m4-2217-20260505_182916.csv @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:50710d3329d0f52ea446e96cf25fa9f945208eaa5b6e4b1f76b5c03d840fb010 +size 82401 diff --git a/hyperparameter/m4/tabsyn/tabsyn-m4-20260505_182903/tabsyn_ckpt/diffusion/tabsyn_m4_tabsyn_m4_20260505_182903/model.pt b/hyperparameter/m4/tabsyn/tabsyn-m4-20260505_182903/tabsyn_ckpt/diffusion/tabsyn_m4_tabsyn_m4_20260505_182903/model.pt new file mode 100644 index 0000000000000000000000000000000000000000..8d9300411f65fc2eb2eb845cd500c851b441cd3b --- /dev/null +++ b/hyperparameter/m4/tabsyn/tabsyn-m4-20260505_182903/tabsyn_ckpt/diffusion/tabsyn_m4_tabsyn_m4_20260505_182903/model.pt @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:d1664807dae948a0ea8a798a3cfe108d34d4a90a7fed7405dc9745eea2269f3d +size 42210705 diff --git a/hyperparameter/m4/tabsyn/tabsyn-m4-20260505_182903/tabsyn_ckpt/diffusion/tabsyn_m4_tabsyn_m4_20260505_182903/model_0.pt b/hyperparameter/m4/tabsyn/tabsyn-m4-20260505_182903/tabsyn_ckpt/diffusion/tabsyn_m4_tabsyn_m4_20260505_182903/model_0.pt new file mode 100644 index 0000000000000000000000000000000000000000..f9e683a0ec625f0dcca55b1e64f50be67cbee00e --- /dev/null +++ b/hyperparameter/m4/tabsyn/tabsyn-m4-20260505_182903/tabsyn_ckpt/diffusion/tabsyn_m4_tabsyn_m4_20260505_182903/model_0.pt @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:1634363169fd1c18e14c07fe008e06d7fe975a6d51b2ae408fe0ec556ab0ff88 +size 42211001 diff --git a/hyperparameter/m4/tabsyn/tabsyn-m4-20260505_182903/tabsyn_ckpt/vae/tabsyn_m4_tabsyn_m4_20260505_182903/decoder.pt b/hyperparameter/m4/tabsyn/tabsyn-m4-20260505_182903/tabsyn_ckpt/vae/tabsyn_m4_tabsyn_m4_20260505_182903/decoder.pt new file mode 100644 index 0000000000000000000000000000000000000000..83fd98a036698b1c1fc1c661b702bf7f90797374 --- /dev/null +++ b/hyperparameter/m4/tabsyn/tabsyn-m4-20260505_182903/tabsyn_ckpt/vae/tabsyn_m4_tabsyn_m4_20260505_182903/decoder.pt @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:dd1dd9413f41c56e43204fdc2361017f2be6257874e70517862d3a8663bd1d18 +size 23284 diff --git a/hyperparameter/m4/tabsyn/tabsyn-m4-20260505_182903/tabsyn_ckpt/vae/tabsyn_m4_tabsyn_m4_20260505_182903/encoder.pt b/hyperparameter/m4/tabsyn/tabsyn-m4-20260505_182903/tabsyn_ckpt/vae/tabsyn_m4_tabsyn_m4_20260505_182903/encoder.pt new file mode 100644 index 0000000000000000000000000000000000000000..3627435c2a4402be8cfe18b961a8ff0b086519f8 --- /dev/null +++ b/hyperparameter/m4/tabsyn/tabsyn-m4-20260505_182903/tabsyn_ckpt/vae/tabsyn_m4_tabsyn_m4_20260505_182903/encoder.pt @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:65de13cfe0394d1b8f4effca1fd93cc66d5f4b0c90988a7627a19587adfcfc55 +size 22461 diff --git a/hyperparameter/m4/tabsyn/tabsyn-m4-20260505_182903/tabsyn_ckpt/vae/tabsyn_m4_tabsyn_m4_20260505_182903/model.pt b/hyperparameter/m4/tabsyn/tabsyn-m4-20260505_182903/tabsyn_ckpt/vae/tabsyn_m4_tabsyn_m4_20260505_182903/model.pt new file mode 100644 index 0000000000000000000000000000000000000000..a7da98519386c6f145eceb22674b505c011fd679 --- /dev/null +++ b/hyperparameter/m4/tabsyn/tabsyn-m4-20260505_182903/tabsyn_ckpt/vae/tabsyn_m4_tabsyn_m4_20260505_182903/model.pt @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:6dc5a40c5f28318dada2bac69073fe6538dfdf12fb991c838797e2298879ed68 +size 63903 diff --git a/hyperparameter/m4/tabsyn/tabsyn-m4-20260505_182903/tabsyn_ckpt/vae/tabsyn_m4_tabsyn_m4_20260505_182903/train_z.npy b/hyperparameter/m4/tabsyn/tabsyn-m4-20260505_182903/tabsyn_ckpt/vae/tabsyn_m4_tabsyn_m4_20260505_182903/train_z.npy new file mode 100644 index 0000000000000000000000000000000000000000..9abb0bd2f1966c0acfc7e3714b25a1876785bc4d --- /dev/null +++ b/hyperparameter/m4/tabsyn/tabsyn-m4-20260505_182903/tabsyn_ckpt/vae/tabsyn_m4_tabsyn_m4_20260505_182903/train_z.npy @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:ee2ad741a9eb72310c31481f3e1ebde7ff106df75658e4a0d0a741022d94854b +size 283904 diff --git a/hyperparameter/m4/tabsyn/tabsyn-m4-20260505_182903/train_20260505_182903.log b/hyperparameter/m4/tabsyn/tabsyn-m4-20260505_182903/train_20260505_182903.log new file mode 100644 index 0000000000000000000000000000000000000000..d1e8f38884a1382c72b2a985dc83b7bf97510f98 --- /dev/null +++ b/hyperparameter/m4/tabsyn/tabsyn-m4-20260505_182903/train_20260505_182903.log @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:2a85239f52cd105b4793b8aceac8b312dfbd7fdf6a33082be8f851b576a2eeba +size 11675 diff --git a/hyperparameter/m4/tvae/tvae-m4-20260504_172924/_tvae_generate.py b/hyperparameter/m4/tvae/tvae-m4-20260504_172924/_tvae_generate.py new file mode 100644 index 0000000000000000000000000000000000000000..64d07e128ef6dbb294fc5e3083f11bfa36692685 --- /dev/null +++ b/hyperparameter/m4/tvae/tvae-m4-20260504_172924/_tvae_generate.py @@ -0,0 +1,23 @@ +import os, sys +sys.path.insert(0, "/work") +from src.SpecificModels.ctgan_joblib_parallel_cap import apply_parallel_cap_from_env +apply_parallel_cap_from_env() +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 +os.environ.setdefault("LOKY_MAX_CPU_COUNT", "8") +os.environ.setdefault("OPENBLAS_NUM_THREADS", "8") +os.environ.setdefault("MKL_NUM_THREADS", "8") +model = TVAE.load("/work/output-Benchmark-trainonly-v1/m4/tvae/tvae-m4-20260504_172924/models_300epochs/tvae_300epochs.pt") +total = 2217 +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-Benchmark-trainonly-v1/m4/tvae/tvae-m4-20260504_172924/tvae-m4-2217-20260504_172948.csv", index=False) +print(f"[TVAE] Generated {total} rows (chunks={len(parts)}) -> /work/output-Benchmark-trainonly-v1/m4/tvae/tvae-m4-20260504_172924/tvae-m4-2217-20260504_172948.csv") diff --git a/hyperparameter/m4/tvae/tvae-m4-20260504_172924/_tvae_train.py b/hyperparameter/m4/tvae/tvae-m4-20260504_172924/_tvae_train.py new file mode 100644 index 0000000000000000000000000000000000000000..d28215e962c43113cd7268680d82572ec243c015 --- /dev/null +++ b/hyperparameter/m4/tvae/tvae-m4-20260504_172924/_tvae_train.py @@ -0,0 +1,30 @@ +import json, os, sys +sys.path.insert(0, "/work") +from src.SpecificModels.ctgan_joblib_parallel_cap import apply_parallel_cap_from_env +apply_parallel_cap_from_env() +import pandas as pd +from ctgan.data import read_csv +from ctgan.synthesizers.tvae import TVAE + +# Keep transform stage parallelism bounded for stability on shared host. +os.environ.setdefault("LOKY_MAX_CPU_COUNT", "8") +os.environ.setdefault("OPENBLAS_NUM_THREADS", "8") +os.environ.setdefault("MKL_NUM_THREADS", "8") +_nj = (os.environ.get("TVAE_CTGAN_JOBTRANS_N_JOBS") or "").strip() +if _nj: + print("[TVAE] joblib Parallel cap ON, TVAE_CTGAN_JOBTRANS_N_JOBS=" + _nj) +else: + print("[TVAE] joblib Parallel cap OFF (unset TVAE_CTGAN_JOBTRANS_N_JOBS)") +print("[TVAE] LOKY_MAX_CPU_COUNT=" + str(os.environ.get("LOKY_MAX_CPU_COUNT", ""))) + +csv_path = "/work/output-Benchmark-trainonly-v1/m4/tvae/tvae-m4-20260504_172924/staged/public/train.csv" +meta_path = "/work/output-Benchmark-trainonly-v1/m4/tvae/tvae-m4-20260504_172924/tvae_metadata.json" +save_path = "/work/output-Benchmark-trainonly-v1/m4/tvae/tvae-m4-20260504_172924/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/hyperparameter/m4/tvae/tvae-m4-20260504_172924/gen_20260504_172948.log b/hyperparameter/m4/tvae/tvae-m4-20260504_172924/gen_20260504_172948.log new file mode 100644 index 0000000000000000000000000000000000000000..9cb264d80125eb9865bcf1ff211a5f47e5408296 --- /dev/null +++ b/hyperparameter/m4/tvae/tvae-m4-20260504_172924/gen_20260504_172948.log @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:21074009efaaf889eeada81da04fe08875f77e84e1c9ad6863c7e7801d6f0f96 +size 404 diff --git a/hyperparameter/m4/tvae/tvae-m4-20260504_172924/input_snapshot.json b/hyperparameter/m4/tvae/tvae-m4-20260504_172924/input_snapshot.json new file mode 100644 index 0000000000000000000000000000000000000000..60c34c26acabd61c3c87a32ef8cbe89659d8c727 --- /dev/null +++ b/hyperparameter/m4/tvae/tvae-m4-20260504_172924/input_snapshot.json @@ -0,0 +1,36 @@ +{ + "dataset_id": "m4", + "model": "tvae", + "inputs": { + "train_csv": { + "path": "/data/jialinzhang/SynthesizePipeline-server/DatasetNew/m4/m4-train.csv", + "exists": true, + "size": 92191, + "sha256": "396b9d409ca21bf4a4cd329bdf5b7796aa0ae6356fa8d89b8eb669b5880b81f1" + }, + "val_csv": { + "path": "/data/jialinzhang/SynthesizePipeline-server/DatasetNew/m4/m4-val.csv", + "exists": true, + "size": 11482, + "sha256": "ee3c247d02f56e1687d03c381e13125d6a3a2a411ac7f202ba8520a4be9f1784" + }, + "test_csv": { + "path": "/data/jialinzhang/SynthesizePipeline-server/DatasetNew/m4/m4-test.csv", + "exists": true, + "size": 11559, + "sha256": "cadb9941124001b8fa7cb1ebae43b70a9ca56294f4df4d3c2f22c164c41757d4" + }, + "profile_json": { + "path": "/data/jialinzhang/SynthesizePipeline-server/DatasetNew/artifacts/data_core/tabular/m4/m4-dataset_profile.json", + "exists": true, + "size": 3336, + "sha256": "83e2764810e4a0e8cdece3a28dbd9134b7c9df6f2e56953e46d024ad2c4e035f" + }, + "contract_json": { + "path": "/data/jialinzhang/SynthesizePipeline-server/DatasetNew/artifacts/data_core/tabular/m4/m4-dataset_contract_v1.json", + "exists": true, + "size": 3810, + "sha256": "c23641b258629a845b164099bd0132886f8f6d0100e990494e0f92540f8987d9" + } + } +} \ No newline at end of file diff --git a/hyperparameter/m4/tvae/tvae-m4-20260504_172924/models_300epochs/train_20260504_172924.log b/hyperparameter/m4/tvae/tvae-m4-20260504_172924/models_300epochs/train_20260504_172924.log new file mode 100644 index 0000000000000000000000000000000000000000..6c02affe89b895eda841ba107e0c4e50dd4dedbe --- /dev/null +++ b/hyperparameter/m4/tvae/tvae-m4-20260504_172924/models_300epochs/train_20260504_172924.log @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:1d9cd060818ff6f5d72a3e1faf866cdd5ff16bf2b6638e45612e08b00d03d6ad +size 531 diff --git a/hyperparameter/m4/tvae/tvae-m4-20260504_172924/models_300epochs/tvae_300epochs.pt b/hyperparameter/m4/tvae/tvae-m4-20260504_172924/models_300epochs/tvae_300epochs.pt new file mode 100644 index 0000000000000000000000000000000000000000..478a3a8f355a5b127ef8fcf413a992ab9007af33 --- /dev/null +++ b/hyperparameter/m4/tvae/tvae-m4-20260504_172924/models_300epochs/tvae_300epochs.pt @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:5aac3416f42e1ad8ca96be12c0e3109c90b138a711112aa88c40b0929a04f049 +size 399084 diff --git a/hyperparameter/m4/tvae/tvae-m4-20260504_172924/public_gate/normalized_schema_snapshot.json b/hyperparameter/m4/tvae/tvae-m4-20260504_172924/public_gate/normalized_schema_snapshot.json new file mode 100644 index 0000000000000000000000000000000000000000..31ed9818686b11907df75e872e4ffbe010330880 --- /dev/null +++ b/hyperparameter/m4/tvae/tvae-m4-20260504_172924/public_gate/normalized_schema_snapshot.json @@ -0,0 +1,147 @@ +{ + "dataset_id": "m4", + "target_column": "charges", + "task_type": "regression", + "columns": [ + { + "name": "age", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 47, + "unique_ratio": 0.0212, + "example_values": [ + "46", + "38", + "19", + "27", + "26" + ] + } + }, + { + "name": "sex", + "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.000902, + "example_values": [ + "female", + "male" + ] + } + }, + { + "name": "bmi", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 538, + "unique_ratio": 0.24267, + "example_values": [ + "23.655", + "19.3", + "30.59", + "32.67", + "29.45" + ] + } + }, + { + "name": "children", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 6, + "unique_ratio": 0.002706, + "example_values": [ + "1", + "0", + "3", + "2", + "5" + ] + } + }, + { + "name": "smoker", + "role": "feature", + "semantic_type": "boolean", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 2, + "unique_ratio": 0.000902, + "example_values": [ + "yes", + "no" + ] + } + }, + { + "name": "region", + "role": "feature", + "semantic_type": "categorical", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 4, + "unique_ratio": 0.001804, + "example_values": [ + "northwest", + "southwest", + "southeast", + "northeast" + ] + } + }, + { + "name": "charges", + "role": "target", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 1281, + "unique_ratio": 0.577808, + "example_values": [ + "21677.28345", + "15820.699", + "1639.5631", + "2497.0383", + "2897.3235" + ] + } + } + ] +} \ No newline at end of file diff --git a/hyperparameter/m4/tvae/tvae-m4-20260504_172924/public_gate/public_gate_report.json b/hyperparameter/m4/tvae/tvae-m4-20260504_172924/public_gate/public_gate_report.json new file mode 100644 index 0000000000000000000000000000000000000000..e7a25408e2574124629ea9437356551e4d6f4790 --- /dev/null +++ b/hyperparameter/m4/tvae/tvae-m4-20260504_172924/public_gate/public_gate_report.json @@ -0,0 +1,37 @@ +{ + "dataset_id": "m4", + "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": "charges", + "task_type": "regression", + "input_splits": { + "train": "/data/jialinzhang/SynthesizePipeline-server/DatasetNew/m4/m4-train.csv", + "val": "/data/jialinzhang/SynthesizePipeline-server/DatasetNew/m4/m4-val.csv", + "test": "/data/jialinzhang/SynthesizePipeline-server/DatasetNew/m4/m4-test.csv" + } +} \ No newline at end of file diff --git a/hyperparameter/m4/tvae/tvae-m4-20260504_172924/public_gate/staged_input_manifest.json b/hyperparameter/m4/tvae/tvae-m4-20260504_172924/public_gate/staged_input_manifest.json new file mode 100644 index 0000000000000000000000000000000000000000..c0ce0d6de2936b789a292c39df659d63d078edfc --- /dev/null +++ b/hyperparameter/m4/tvae/tvae-m4-20260504_172924/public_gate/staged_input_manifest.json @@ -0,0 +1,152 @@ +{ + "dataset_id": "m4", + "target_column": "charges", + "task_type": "regression", + "train_csv": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/m4/tvae/tvae-m4-20260504_172924/staged/public/train.csv", + "val_csv": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/m4/tvae/tvae-m4-20260504_172924/staged/public/val.csv", + "test_csv": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/m4/tvae/tvae-m4-20260504_172924/staged/public/test.csv", + "features_json": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/m4/tvae/tvae-m4-20260504_172924/staged/public/staged_features.json", + "public_gate_report": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/m4/tvae/tvae-m4-20260504_172924/public_gate/public_gate_report.json", + "column_schema": [ + { + "name": "age", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 47, + "unique_ratio": 0.0212, + "example_values": [ + "46", + "38", + "19", + "27", + "26" + ] + } + }, + { + "name": "sex", + "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.000902, + "example_values": [ + "female", + "male" + ] + } + }, + { + "name": "bmi", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 538, + "unique_ratio": 0.24267, + "example_values": [ + "23.655", + "19.3", + "30.59", + "32.67", + "29.45" + ] + } + }, + { + "name": "children", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 6, + "unique_ratio": 0.002706, + "example_values": [ + "1", + "0", + "3", + "2", + "5" + ] + } + }, + { + "name": "smoker", + "role": "feature", + "semantic_type": "boolean", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 2, + "unique_ratio": 0.000902, + "example_values": [ + "yes", + "no" + ] + } + }, + { + "name": "region", + "role": "feature", + "semantic_type": "categorical", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 4, + "unique_ratio": 0.001804, + "example_values": [ + "northwest", + "southwest", + "southeast", + "northeast" + ] + } + }, + { + "name": "charges", + "role": "target", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 1281, + "unique_ratio": 0.577808, + "example_values": [ + "21677.28345", + "15820.699", + "1639.5631", + "2497.0383", + "2897.3235" + ] + } + } + ] +} \ No newline at end of file diff --git a/hyperparameter/m4/tvae/tvae-m4-20260504_172924/run_config.json b/hyperparameter/m4/tvae/tvae-m4-20260504_172924/run_config.json new file mode 100644 index 0000000000000000000000000000000000000000..df2a1021195b5f94824e84627e5fb1d294f0bc16 --- /dev/null +++ b/hyperparameter/m4/tvae/tvae-m4-20260504_172924/run_config.json @@ -0,0 +1,40 @@ +{ + "schema_version": 1, + "recorded_at": "2026-05-04T17:29:24", + "dataset_id": "m4", + "model": "tvae", + "work_dir": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/m4/tvae/tvae-m4-20260504_172924", + "dataset_source_requested": "new", + "dataset_source_resolved": "new", + "cli_args": { + "model": "tvae", + "dataset": "m4", + "dataset_source": "new", + "train": true, + "generate": true, + "num_rows": 0, + "epochs": null, + "output_dir": null, + "model_dir": null, + "work_dir": null, + "resume": false, + "no_stats": false + }, + "resolved": { + "num_rows": 2217, + "model_path": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/m4/tvae/tvae-m4-20260504_172924/models_300epochs/tvae_300epochs.pt", + "output_csv": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/m4/tvae/tvae-m4-20260504_172924/tvae-m4-2217-20260504_172948.csv" + }, + "input_artifacts": { + "public_gate_report": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/m4/tvae/tvae-m4-20260504_172924/public_gate/public_gate_report.json", + "public_manifest": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/m4/tvae/tvae-m4-20260504_172924/public_gate/staged_input_manifest.json", + "model_manifest": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/m4/tvae/tvae-m4-20260504_172924/staged/tvae/model_input_manifest.json", + "train_csv": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/m4/tvae/tvae-m4-20260504_172924/staged/public/train.csv", + "features_json": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/m4/tvae/tvae-m4-20260504_172924/staged/public/staged_features.json", + "target_column": "charges", + "task_type": "regression" + }, + "env_overrides": { + "BENCHMARK_TVAE_GPUS": "device=3" + } +} \ No newline at end of file diff --git a/hyperparameter/m4/tvae/tvae-m4-20260504_172924/runtime_result.json b/hyperparameter/m4/tvae/tvae-m4-20260504_172924/runtime_result.json new file mode 100644 index 0000000000000000000000000000000000000000..069b138b0a41ccfe020e455a197d44d0e8e3b66c --- /dev/null +++ b/hyperparameter/m4/tvae/tvae-m4-20260504_172924/runtime_result.json @@ -0,0 +1,27 @@ +{ + "dataset_id": "m4", + "model": "tvae", + "run_id": "tvae-m4-20260504_172924", + "public_gate_status": "pass", + "adapter_ready_status": "pass", + "train_status": "success", + "generate_status": "success", + "reason_code": null, + "reason_detail": null, + "artifacts": { + "synthetic_csv": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/m4/tvae/tvae-m4-20260504_172924/tvae-m4-2217-20260504_172948.csv", + "model_path": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/m4/tvae/tvae-m4-20260504_172924/models_300epochs/tvae_300epochs.pt" + }, + "timings": { + "train": { + "started_at": "2026-05-04T17:29:24", + "ended_at": "2026-05-04T17:29:48", + "duration_sec": 23.27 + }, + "generate": { + "started_at": "2026-05-04T17:29:48", + "ended_at": "2026-05-04T17:29:53", + "duration_sec": 5.352 + } + } +} \ No newline at end of file diff --git a/hyperparameter/m4/tvae/tvae-m4-20260504_172924/staged/public/staged_features.json b/hyperparameter/m4/tvae/tvae-m4-20260504_172924/staged/public/staged_features.json new file mode 100644 index 0000000000000000000000000000000000000000..d6acd098c35111f423f3ffff2cfd1754bc5dfebc --- /dev/null +++ b/hyperparameter/m4/tvae/tvae-m4-20260504_172924/staged/public/staged_features.json @@ -0,0 +1,37 @@ +[ + { + "feature_name": "age", + "data_type": "continuous", + "is_target": false + }, + { + "feature_name": "sex", + "data_type": "categorical", + "is_target": false + }, + { + "feature_name": "bmi", + "data_type": "continuous", + "is_target": false + }, + { + "feature_name": "children", + "data_type": "continuous", + "is_target": false + }, + { + "feature_name": "smoker", + "data_type": "binary", + "is_target": false + }, + { + "feature_name": "region", + "data_type": "categorical", + "is_target": false + }, + { + "feature_name": "charges", + "data_type": "continuous", + "is_target": true + } +] \ No newline at end of file diff --git a/hyperparameter/m4/tvae/tvae-m4-20260504_172924/staged/public/test.csv b/hyperparameter/m4/tvae/tvae-m4-20260504_172924/staged/public/test.csv new file mode 100644 index 0000000000000000000000000000000000000000..c88a2e7cfcd715bb421cb56eb078033da45c4dc8 --- /dev/null +++ b/hyperparameter/m4/tvae/tvae-m4-20260504_172924/staged/public/test.csv @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:4c541b677fb2d45c5bc79338eeee9fd8c91484b195a0c2c546c2fbabf113b7ea +size 11298 diff --git a/hyperparameter/m4/tvae/tvae-m4-20260504_172924/staged/public/train.csv b/hyperparameter/m4/tvae/tvae-m4-20260504_172924/staged/public/train.csv new file mode 100644 index 0000000000000000000000000000000000000000..5a05019d786529e0617291766c4fbe016ca01bf5 --- /dev/null +++ b/hyperparameter/m4/tvae/tvae-m4-20260504_172924/staged/public/train.csv @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:614ebfac5f41d6f661aff675fa18c0f933a8d9bcc77ea71b7b2360c2f0155837 +size 90069 diff --git a/hyperparameter/m4/tvae/tvae-m4-20260504_172924/staged/public/val.csv b/hyperparameter/m4/tvae/tvae-m4-20260504_172924/staged/public/val.csv new file mode 100644 index 0000000000000000000000000000000000000000..d78fe5ad1537c437ba9ac2629f2aa60a6c17e708 --- /dev/null +++ b/hyperparameter/m4/tvae/tvae-m4-20260504_172924/staged/public/val.csv @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:e55f5edbe7942ff01630de91a9c70dfbc6445eba76c7b970350364546b67c2d7 +size 11218 diff --git a/hyperparameter/m4/tvae/tvae-m4-20260504_172924/staged/tvae/adapter_report.json b/hyperparameter/m4/tvae/tvae-m4-20260504_172924/staged/tvae/adapter_report.json new file mode 100644 index 0000000000000000000000000000000000000000..d7463f2b76fda0bb44764663ad8e881e19398e60 --- /dev/null +++ b/hyperparameter/m4/tvae/tvae-m4-20260504_172924/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-Benchmark-trainonly-v1/m4/tvae/tvae-m4-20260504_172924/staged/tvae/model_input_manifest.json" +} \ No newline at end of file diff --git a/hyperparameter/m4/tvae/tvae-m4-20260504_172924/staged/tvae/adapter_transforms_applied.json b/hyperparameter/m4/tvae/tvae-m4-20260504_172924/staged/tvae/adapter_transforms_applied.json new file mode 100644 index 0000000000000000000000000000000000000000..0637a088a01e8ddab3bf3fa98dbe804cbde1a0dc --- /dev/null +++ b/hyperparameter/m4/tvae/tvae-m4-20260504_172924/staged/tvae/adapter_transforms_applied.json @@ -0,0 +1 @@ +[] \ No newline at end of file diff --git a/hyperparameter/m4/tvae/tvae-m4-20260504_172924/staged/tvae/model_input_manifest.json b/hyperparameter/m4/tvae/tvae-m4-20260504_172924/staged/tvae/model_input_manifest.json new file mode 100644 index 0000000000000000000000000000000000000000..88352edb6469f4386dd47bc9b6c6413f5efba165 --- /dev/null +++ b/hyperparameter/m4/tvae/tvae-m4-20260504_172924/staged/tvae/model_input_manifest.json @@ -0,0 +1,154 @@ +{ + "dataset_id": "m4", + "model": "tvae", + "target_column": "charges", + "task_type": "regression", + "column_schema": [ + { + "name": "age", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 47, + "unique_ratio": 0.0212, + "example_values": [ + "46", + "38", + "19", + "27", + "26" + ] + } + }, + { + "name": "sex", + "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.000902, + "example_values": [ + "female", + "male" + ] + } + }, + { + "name": "bmi", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 538, + "unique_ratio": 0.24267, + "example_values": [ + "23.655", + "19.3", + "30.59", + "32.67", + "29.45" + ] + } + }, + { + "name": "children", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 6, + "unique_ratio": 0.002706, + "example_values": [ + "1", + "0", + "3", + "2", + "5" + ] + } + }, + { + "name": "smoker", + "role": "feature", + "semantic_type": "boolean", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 2, + "unique_ratio": 0.000902, + "example_values": [ + "yes", + "no" + ] + } + }, + { + "name": "region", + "role": "feature", + "semantic_type": "categorical", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 4, + "unique_ratio": 0.001804, + "example_values": [ + "northwest", + "southwest", + "southeast", + "northeast" + ] + } + }, + { + "name": "charges", + "role": "target", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 1281, + "unique_ratio": 0.577808, + "example_values": [ + "21677.28345", + "15820.699", + "1639.5631", + "2497.0383", + "2897.3235" + ] + } + } + ], + "public_manifest": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/m4/tvae/tvae-m4-20260504_172924/public_gate/staged_input_manifest.json", + "train_csv": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/m4/tvae/tvae-m4-20260504_172924/staged/public/train.csv", + "val_csv": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/m4/tvae/tvae-m4-20260504_172924/staged/public/val.csv", + "test_csv": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/m4/tvae/tvae-m4-20260504_172924/staged/public/test.csv", + "features_json": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/m4/tvae/tvae-m4-20260504_172924/staged/public/staged_features.json", + "public_gate_report": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/m4/tvae/tvae-m4-20260504_172924/public_gate/public_gate_report.json" +} \ No newline at end of file diff --git a/hyperparameter/m4/tvae/tvae-m4-20260504_172924/tvae-m4-2217-20260504_172948.csv b/hyperparameter/m4/tvae/tvae-m4-20260504_172924/tvae-m4-2217-20260504_172948.csv new file mode 100644 index 0000000000000000000000000000000000000000..a3d27569151d13175f6106f0b9ec16a29ecd454b --- /dev/null +++ b/hyperparameter/m4/tvae/tvae-m4-20260504_172924/tvae-m4-2217-20260504_172948.csv @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:cc71fa06a7efd6b7984554097fbac50bc8364689311279a95ec83b921ea69076 +size 134967 diff --git a/hyperparameter/m4/tvae/tvae-m4-20260504_172924/tvae_metadata.json b/hyperparameter/m4/tvae/tvae-m4-20260504_172924/tvae_metadata.json new file mode 100644 index 0000000000000000000000000000000000000000..d89b1e0b3095638c982d4d3321d21a8bedcd33ae --- /dev/null +++ b/hyperparameter/m4/tvae/tvae-m4-20260504_172924/tvae_metadata.json @@ -0,0 +1,32 @@ +{ + "columns": [ + { + "name": "age", + "type": "continuous" + }, + { + "name": "sex", + "type": "categorical" + }, + { + "name": "bmi", + "type": "continuous" + }, + { + "name": "children", + "type": "continuous" + }, + { + "name": "smoker", + "type": "categorical" + }, + { + "name": "region", + "type": "categorical" + }, + { + "name": "charges", + "type": "continuous" + } + ] +} \ No newline at end of file diff --git a/hyperparameter/m4/tvae/tvae-m4-20260504_174302/_tvae_generate.py b/hyperparameter/m4/tvae/tvae-m4-20260504_174302/_tvae_generate.py new file mode 100644 index 0000000000000000000000000000000000000000..81b1295a580f8a6f079ccfcc3c40e66fb290a4a7 --- /dev/null +++ b/hyperparameter/m4/tvae/tvae-m4-20260504_174302/_tvae_generate.py @@ -0,0 +1,23 @@ +import os, sys +sys.path.insert(0, "/work") +from src.SpecificModels.ctgan_joblib_parallel_cap import apply_parallel_cap_from_env +apply_parallel_cap_from_env() +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 +os.environ.setdefault("LOKY_MAX_CPU_COUNT", "8") +os.environ.setdefault("OPENBLAS_NUM_THREADS", "8") +os.environ.setdefault("MKL_NUM_THREADS", "8") +model = TVAE.load("/work/output-Benchmark-trainonly-v1/m4/tvae/tvae-m4-20260504_174302/models_300epochs/tvae_300epochs.pt") +total = 2217 +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-Benchmark-trainonly-v1/m4/tvae/tvae-m4-20260504_174302/tvae-m4-2217-20260504_174327.csv", index=False) +print(f"[TVAE] Generated {total} rows (chunks={len(parts)}) -> /work/output-Benchmark-trainonly-v1/m4/tvae/tvae-m4-20260504_174302/tvae-m4-2217-20260504_174327.csv") diff --git a/hyperparameter/m4/tvae/tvae-m4-20260504_174302/_tvae_train.py b/hyperparameter/m4/tvae/tvae-m4-20260504_174302/_tvae_train.py new file mode 100644 index 0000000000000000000000000000000000000000..1aa090f428d3524915512adaba16283538755528 --- /dev/null +++ b/hyperparameter/m4/tvae/tvae-m4-20260504_174302/_tvae_train.py @@ -0,0 +1,39 @@ +import json, os, sys +sys.path.insert(0, "/work") +from src.SpecificModels.ctgan_joblib_parallel_cap import apply_parallel_cap_from_env +apply_parallel_cap_from_env() +import pandas as pd +from ctgan.data import read_csv +from ctgan.synthesizers.tvae import TVAE + +# Keep transform stage parallelism bounded for stability on shared host. +os.environ.setdefault("LOKY_MAX_CPU_COUNT", "8") +os.environ.setdefault("OPENBLAS_NUM_THREADS", "8") +os.environ.setdefault("MKL_NUM_THREADS", "8") +_nj = (os.environ.get("TVAE_CTGAN_JOBTRANS_N_JOBS") or "").strip() +if _nj: + print("[TVAE] joblib Parallel cap ON, TVAE_CTGAN_JOBTRANS_N_JOBS=" + _nj) +else: + print("[TVAE] joblib Parallel cap OFF (unset TVAE_CTGAN_JOBTRANS_N_JOBS)") +print("[TVAE] LOKY_MAX_CPU_COUNT=" + str(os.environ.get("LOKY_MAX_CPU_COUNT", ""))) + +csv_path = "/work/output-Benchmark-trainonly-v1/m4/tvae/tvae-m4-20260504_174302/staged/public/train.csv" +meta_path = "/work/output-Benchmark-trainonly-v1/m4/tvae/tvae-m4-20260504_174302/tvae_metadata.json" +save_path = "/work/output-Benchmark-trainonly-v1/m4/tvae/tvae-m4-20260504_174302/models_300epochs/tvae_300epochs.pt" +epochs = int(os.environ.get("TVAE_EPOCHS", 300)) +batch_size = int(os.environ.get("TVAE_BATCH_SIZE", "500")) +embedding_dim = int(os.environ.get("TVAE_EMBEDDING_DIM", "128")) +def _parse_dims(name, default): + raw = (os.environ.get(name) or "").strip() + if not raw: + return default + return tuple(int(x.strip()) for x in raw.split(",") if x.strip()) +compress_dims = _parse_dims("TVAE_COMPRESS_DIMS", (128, 128)) +decompress_dims = _parse_dims("TVAE_DECOMPRESS_DIMS", (128, 128)) + +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}, batch_size={batch_size}, embedding_dim={embedding_dim}, compress_dims={compress_dims}, decompress_dims={decompress_dims}") +model = TVAE(epochs=epochs, batch_size=batch_size, embedding_dim=embedding_dim, compress_dims=compress_dims, decompress_dims=decompress_dims) +model.fit(data, discrete_columns) +model.save(save_path) +print(f"[TVAE] Model saved -> {save_path}") diff --git a/hyperparameter/m4/tvae/tvae-m4-20260504_174302/gen_20260504_174327.log b/hyperparameter/m4/tvae/tvae-m4-20260504_174302/gen_20260504_174327.log new file mode 100644 index 0000000000000000000000000000000000000000..60c093f4fc68d51d4270c47f02ced7614c438a31 --- /dev/null +++ b/hyperparameter/m4/tvae/tvae-m4-20260504_174302/gen_20260504_174327.log @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:af461c511bf86e5d1de31bd40d8796e533698a811681c73ac90e6480905b46d5 +size 404 diff --git a/hyperparameter/m4/tvae/tvae-m4-20260504_174302/input_snapshot.json b/hyperparameter/m4/tvae/tvae-m4-20260504_174302/input_snapshot.json new file mode 100644 index 0000000000000000000000000000000000000000..60c34c26acabd61c3c87a32ef8cbe89659d8c727 --- /dev/null +++ b/hyperparameter/m4/tvae/tvae-m4-20260504_174302/input_snapshot.json @@ -0,0 +1,36 @@ +{ + "dataset_id": "m4", + "model": "tvae", + "inputs": { + "train_csv": { + "path": "/data/jialinzhang/SynthesizePipeline-server/DatasetNew/m4/m4-train.csv", + "exists": true, + "size": 92191, + "sha256": "396b9d409ca21bf4a4cd329bdf5b7796aa0ae6356fa8d89b8eb669b5880b81f1" + }, + "val_csv": { + "path": "/data/jialinzhang/SynthesizePipeline-server/DatasetNew/m4/m4-val.csv", + "exists": true, + "size": 11482, + "sha256": "ee3c247d02f56e1687d03c381e13125d6a3a2a411ac7f202ba8520a4be9f1784" + }, + "test_csv": { + "path": "/data/jialinzhang/SynthesizePipeline-server/DatasetNew/m4/m4-test.csv", + "exists": true, + "size": 11559, + "sha256": "cadb9941124001b8fa7cb1ebae43b70a9ca56294f4df4d3c2f22c164c41757d4" + }, + "profile_json": { + "path": "/data/jialinzhang/SynthesizePipeline-server/DatasetNew/artifacts/data_core/tabular/m4/m4-dataset_profile.json", + "exists": true, + "size": 3336, + "sha256": "83e2764810e4a0e8cdece3a28dbd9134b7c9df6f2e56953e46d024ad2c4e035f" + }, + "contract_json": { + "path": "/data/jialinzhang/SynthesizePipeline-server/DatasetNew/artifacts/data_core/tabular/m4/m4-dataset_contract_v1.json", + "exists": true, + "size": 3810, + "sha256": "c23641b258629a845b164099bd0132886f8f6d0100e990494e0f92540f8987d9" + } + } +} \ No newline at end of file diff --git a/hyperparameter/m4/tvae/tvae-m4-20260504_174302/models_300epochs/train_20260504_174302.log b/hyperparameter/m4/tvae/tvae-m4-20260504_174302/models_300epochs/train_20260504_174302.log new file mode 100644 index 0000000000000000000000000000000000000000..07fcade7ce7aa7bc4269426a8a925a7ef169b3ce --- /dev/null +++ b/hyperparameter/m4/tvae/tvae-m4-20260504_174302/models_300epochs/train_20260504_174302.log @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:683a06ca92238c36301c9b1f7f7deb14006752d9a9b57b1e9313fb9933a379ef +size 620 diff --git a/hyperparameter/m4/tvae/tvae-m4-20260504_174302/models_300epochs/tvae_300epochs.pt b/hyperparameter/m4/tvae/tvae-m4-20260504_174302/models_300epochs/tvae_300epochs.pt new file mode 100644 index 0000000000000000000000000000000000000000..16b24bb489870d2ce6bead2362af3bf11f079ff6 --- /dev/null +++ b/hyperparameter/m4/tvae/tvae-m4-20260504_174302/models_300epochs/tvae_300epochs.pt @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:51665a4e34a979ffcc118e07a61e66b7ff84eda7587c6ebd1fe903b01015b6ab +size 399148 diff --git a/hyperparameter/m4/tvae/tvae-m4-20260504_174302/public_gate/normalized_schema_snapshot.json b/hyperparameter/m4/tvae/tvae-m4-20260504_174302/public_gate/normalized_schema_snapshot.json new file mode 100644 index 0000000000000000000000000000000000000000..31ed9818686b11907df75e872e4ffbe010330880 --- /dev/null +++ b/hyperparameter/m4/tvae/tvae-m4-20260504_174302/public_gate/normalized_schema_snapshot.json @@ -0,0 +1,147 @@ +{ + "dataset_id": "m4", + "target_column": "charges", + "task_type": "regression", + "columns": [ + { + "name": "age", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 47, + "unique_ratio": 0.0212, + "example_values": [ + "46", + "38", + "19", + "27", + "26" + ] + } + }, + { + "name": "sex", + "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.000902, + "example_values": [ + "female", + "male" + ] + } + }, + { + "name": "bmi", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 538, + "unique_ratio": 0.24267, + "example_values": [ + "23.655", + "19.3", + "30.59", + "32.67", + "29.45" + ] + } + }, + { + "name": "children", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 6, + "unique_ratio": 0.002706, + "example_values": [ + "1", + "0", + "3", + "2", + "5" + ] + } + }, + { + "name": "smoker", + "role": "feature", + "semantic_type": "boolean", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 2, + "unique_ratio": 0.000902, + "example_values": [ + "yes", + "no" + ] + } + }, + { + "name": "region", + "role": "feature", + "semantic_type": "categorical", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 4, + "unique_ratio": 0.001804, + "example_values": [ + "northwest", + "southwest", + "southeast", + "northeast" + ] + } + }, + { + "name": "charges", + "role": "target", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 1281, + "unique_ratio": 0.577808, + "example_values": [ + "21677.28345", + "15820.699", + "1639.5631", + "2497.0383", + "2897.3235" + ] + } + } + ] +} \ No newline at end of file diff --git a/hyperparameter/m4/tvae/tvae-m4-20260504_174302/public_gate/public_gate_report.json b/hyperparameter/m4/tvae/tvae-m4-20260504_174302/public_gate/public_gate_report.json new file mode 100644 index 0000000000000000000000000000000000000000..e7a25408e2574124629ea9437356551e4d6f4790 --- /dev/null +++ b/hyperparameter/m4/tvae/tvae-m4-20260504_174302/public_gate/public_gate_report.json @@ -0,0 +1,37 @@ +{ + "dataset_id": "m4", + "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": "charges", + "task_type": "regression", + "input_splits": { + "train": "/data/jialinzhang/SynthesizePipeline-server/DatasetNew/m4/m4-train.csv", + "val": "/data/jialinzhang/SynthesizePipeline-server/DatasetNew/m4/m4-val.csv", + "test": "/data/jialinzhang/SynthesizePipeline-server/DatasetNew/m4/m4-test.csv" + } +} \ No newline at end of file diff --git a/hyperparameter/m4/tvae/tvae-m4-20260504_174302/public_gate/staged_input_manifest.json b/hyperparameter/m4/tvae/tvae-m4-20260504_174302/public_gate/staged_input_manifest.json new file mode 100644 index 0000000000000000000000000000000000000000..66a493d45188588761c51eab52795cfad070bf87 --- /dev/null +++ b/hyperparameter/m4/tvae/tvae-m4-20260504_174302/public_gate/staged_input_manifest.json @@ -0,0 +1,152 @@ +{ + "dataset_id": "m4", + "target_column": "charges", + "task_type": "regression", + "train_csv": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/m4/tvae/tvae-m4-20260504_174302/staged/public/train.csv", + "val_csv": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/m4/tvae/tvae-m4-20260504_174302/staged/public/val.csv", + "test_csv": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/m4/tvae/tvae-m4-20260504_174302/staged/public/test.csv", + "features_json": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/m4/tvae/tvae-m4-20260504_174302/staged/public/staged_features.json", + "public_gate_report": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/m4/tvae/tvae-m4-20260504_174302/public_gate/public_gate_report.json", + "column_schema": [ + { + "name": "age", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 47, + "unique_ratio": 0.0212, + "example_values": [ + "46", + "38", + "19", + "27", + "26" + ] + } + }, + { + "name": "sex", + "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.000902, + "example_values": [ + "female", + "male" + ] + } + }, + { + "name": "bmi", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 538, + "unique_ratio": 0.24267, + "example_values": [ + "23.655", + "19.3", + "30.59", + "32.67", + "29.45" + ] + } + }, + { + "name": "children", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 6, + "unique_ratio": 0.002706, + "example_values": [ + "1", + "0", + "3", + "2", + "5" + ] + } + }, + { + "name": "smoker", + "role": "feature", + "semantic_type": "boolean", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 2, + "unique_ratio": 0.000902, + "example_values": [ + "yes", + "no" + ] + } + }, + { + "name": "region", + "role": "feature", + "semantic_type": "categorical", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 4, + "unique_ratio": 0.001804, + "example_values": [ + "northwest", + "southwest", + "southeast", + "northeast" + ] + } + }, + { + "name": "charges", + "role": "target", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 1281, + "unique_ratio": 0.577808, + "example_values": [ + "21677.28345", + "15820.699", + "1639.5631", + "2497.0383", + "2897.3235" + ] + } + } + ] +} \ No newline at end of file diff --git a/hyperparameter/m4/tvae/tvae-m4-20260504_174302/run_config.json b/hyperparameter/m4/tvae/tvae-m4-20260504_174302/run_config.json new file mode 100644 index 0000000000000000000000000000000000000000..435f7cd9c975afc4a9b23a62dc58674a4b1f98c1 --- /dev/null +++ b/hyperparameter/m4/tvae/tvae-m4-20260504_174302/run_config.json @@ -0,0 +1,45 @@ +{ + "schema_version": 1, + "recorded_at": "2026-05-04T17:43:02", + "dataset_id": "m4", + "model": "tvae", + "work_dir": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/m4/tvae/tvae-m4-20260504_174302", + "dataset_source_requested": "new", + "dataset_source_resolved": "new", + "cli_args": { + "model": "tvae", + "dataset": "m4", + "dataset_source": "new", + "train": true, + "generate": true, + "num_rows": 0, + "epochs": null, + "output_dir": null, + "model_dir": null, + "work_dir": null, + "resume": false, + "no_stats": false + }, + "resolved": { + "num_rows": 2217, + "model_path": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/m4/tvae/tvae-m4-20260504_174302/models_300epochs/tvae_300epochs.pt", + "output_csv": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/m4/tvae/tvae-m4-20260504_174302/tvae-m4-2217-20260504_174327.csv" + }, + "input_artifacts": { + "public_gate_report": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/m4/tvae/tvae-m4-20260504_174302/public_gate/public_gate_report.json", + "public_manifest": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/m4/tvae/tvae-m4-20260504_174302/public_gate/staged_input_manifest.json", + "model_manifest": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/m4/tvae/tvae-m4-20260504_174302/staged/tvae/model_input_manifest.json", + "train_csv": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/m4/tvae/tvae-m4-20260504_174302/staged/public/train.csv", + "features_json": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/m4/tvae/tvae-m4-20260504_174302/staged/public/staged_features.json", + "target_column": "charges", + "task_type": "regression" + }, + "env_overrides": { + "BENCHMARK_TVAE_GPUS": "device=3", + "TVAE_BATCH_SIZE": "256", + "TVAE_COMPRESS_DIMS": "64,64", + "TVAE_DECOMPRESS_DIMS": "64,64", + "TVAE_EMBEDDING_DIM": "32", + "TVAE_EPOCHS": "100" + } +} \ No newline at end of file diff --git a/hyperparameter/m4/tvae/tvae-m4-20260504_174302/runtime_result.json b/hyperparameter/m4/tvae/tvae-m4-20260504_174302/runtime_result.json new file mode 100644 index 0000000000000000000000000000000000000000..cb553f8c827cd5d12fe1aa3ab0e87b8651244569 --- /dev/null +++ b/hyperparameter/m4/tvae/tvae-m4-20260504_174302/runtime_result.json @@ -0,0 +1,27 @@ +{ + "dataset_id": "m4", + "model": "tvae", + "run_id": "tvae-m4-20260504_174302", + "public_gate_status": "pass", + "adapter_ready_status": "pass", + "train_status": "success", + "generate_status": "success", + "reason_code": null, + "reason_detail": null, + "artifacts": { + "synthetic_csv": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/m4/tvae/tvae-m4-20260504_174302/tvae-m4-2217-20260504_174327.csv", + "model_path": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/m4/tvae/tvae-m4-20260504_174302/models_300epochs/tvae_300epochs.pt" + }, + "timings": { + "train": { + "started_at": "2026-05-04T17:43:02", + "ended_at": "2026-05-04T17:43:27", + "duration_sec": 24.249 + }, + "generate": { + "started_at": "2026-05-04T17:43:27", + "ended_at": "2026-05-04T17:43:32", + "duration_sec": 5.407 + } + } +} \ No newline at end of file diff --git a/hyperparameter/m4/tvae/tvae-m4-20260504_174302/staged/public/staged_features.json b/hyperparameter/m4/tvae/tvae-m4-20260504_174302/staged/public/staged_features.json new file mode 100644 index 0000000000000000000000000000000000000000..d6acd098c35111f423f3ffff2cfd1754bc5dfebc --- /dev/null +++ b/hyperparameter/m4/tvae/tvae-m4-20260504_174302/staged/public/staged_features.json @@ -0,0 +1,37 @@ +[ + { + "feature_name": "age", + "data_type": "continuous", + "is_target": false + }, + { + "feature_name": "sex", + "data_type": "categorical", + "is_target": false + }, + { + "feature_name": "bmi", + "data_type": "continuous", + "is_target": false + }, + { + "feature_name": "children", + "data_type": "continuous", + "is_target": false + }, + { + "feature_name": "smoker", + "data_type": "binary", + "is_target": false + }, + { + "feature_name": "region", + "data_type": "categorical", + "is_target": false + }, + { + "feature_name": "charges", + "data_type": "continuous", + "is_target": true + } +] \ No newline at end of file diff --git a/hyperparameter/m4/tvae/tvae-m4-20260504_174302/staged/public/test.csv b/hyperparameter/m4/tvae/tvae-m4-20260504_174302/staged/public/test.csv new file mode 100644 index 0000000000000000000000000000000000000000..c88a2e7cfcd715bb421cb56eb078033da45c4dc8 --- /dev/null +++ b/hyperparameter/m4/tvae/tvae-m4-20260504_174302/staged/public/test.csv @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:4c541b677fb2d45c5bc79338eeee9fd8c91484b195a0c2c546c2fbabf113b7ea +size 11298 diff --git a/hyperparameter/m4/tvae/tvae-m4-20260504_174302/staged/public/train.csv b/hyperparameter/m4/tvae/tvae-m4-20260504_174302/staged/public/train.csv new file mode 100644 index 0000000000000000000000000000000000000000..5a05019d786529e0617291766c4fbe016ca01bf5 --- /dev/null +++ b/hyperparameter/m4/tvae/tvae-m4-20260504_174302/staged/public/train.csv @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:614ebfac5f41d6f661aff675fa18c0f933a8d9bcc77ea71b7b2360c2f0155837 +size 90069 diff --git a/hyperparameter/m4/tvae/tvae-m4-20260504_174302/staged/public/val.csv b/hyperparameter/m4/tvae/tvae-m4-20260504_174302/staged/public/val.csv new file mode 100644 index 0000000000000000000000000000000000000000..d78fe5ad1537c437ba9ac2629f2aa60a6c17e708 --- /dev/null +++ b/hyperparameter/m4/tvae/tvae-m4-20260504_174302/staged/public/val.csv @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:e55f5edbe7942ff01630de91a9c70dfbc6445eba76c7b970350364546b67c2d7 +size 11218 diff --git a/hyperparameter/m4/tvae/tvae-m4-20260504_174302/staged/tvae/adapter_report.json b/hyperparameter/m4/tvae/tvae-m4-20260504_174302/staged/tvae/adapter_report.json new file mode 100644 index 0000000000000000000000000000000000000000..5a09a4742de3a8b219cf8df46bd0846a8ec726d2 --- /dev/null +++ b/hyperparameter/m4/tvae/tvae-m4-20260504_174302/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-Benchmark-trainonly-v1/m4/tvae/tvae-m4-20260504_174302/staged/tvae/model_input_manifest.json" +} \ No newline at end of file diff --git a/hyperparameter/m4/tvae/tvae-m4-20260504_174302/staged/tvae/adapter_transforms_applied.json b/hyperparameter/m4/tvae/tvae-m4-20260504_174302/staged/tvae/adapter_transforms_applied.json new file mode 100644 index 0000000000000000000000000000000000000000..0637a088a01e8ddab3bf3fa98dbe804cbde1a0dc --- /dev/null +++ b/hyperparameter/m4/tvae/tvae-m4-20260504_174302/staged/tvae/adapter_transforms_applied.json @@ -0,0 +1 @@ +[] \ No newline at end of file diff --git a/hyperparameter/m4/tvae/tvae-m4-20260504_174302/staged/tvae/model_input_manifest.json b/hyperparameter/m4/tvae/tvae-m4-20260504_174302/staged/tvae/model_input_manifest.json new file mode 100644 index 0000000000000000000000000000000000000000..068bb0b9d0b426739333b63a6ec98858fc30bda9 --- /dev/null +++ b/hyperparameter/m4/tvae/tvae-m4-20260504_174302/staged/tvae/model_input_manifest.json @@ -0,0 +1,154 @@ +{ + "dataset_id": "m4", + "model": "tvae", + "target_column": "charges", + "task_type": "regression", + "column_schema": [ + { + "name": "age", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 47, + "unique_ratio": 0.0212, + "example_values": [ + "46", + "38", + "19", + "27", + "26" + ] + } + }, + { + "name": "sex", + "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.000902, + "example_values": [ + "female", + "male" + ] + } + }, + { + "name": "bmi", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 538, + "unique_ratio": 0.24267, + "example_values": [ + "23.655", + "19.3", + "30.59", + "32.67", + "29.45" + ] + } + }, + { + "name": "children", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 6, + "unique_ratio": 0.002706, + "example_values": [ + "1", + "0", + "3", + "2", + "5" + ] + } + }, + { + "name": "smoker", + "role": "feature", + "semantic_type": "boolean", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 2, + "unique_ratio": 0.000902, + "example_values": [ + "yes", + "no" + ] + } + }, + { + "name": "region", + "role": "feature", + "semantic_type": "categorical", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 4, + "unique_ratio": 0.001804, + "example_values": [ + "northwest", + "southwest", + "southeast", + "northeast" + ] + } + }, + { + "name": "charges", + "role": "target", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 1281, + "unique_ratio": 0.577808, + "example_values": [ + "21677.28345", + "15820.699", + "1639.5631", + "2497.0383", + "2897.3235" + ] + } + } + ], + "public_manifest": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/m4/tvae/tvae-m4-20260504_174302/public_gate/staged_input_manifest.json", + "train_csv": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/m4/tvae/tvae-m4-20260504_174302/staged/public/train.csv", + "val_csv": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/m4/tvae/tvae-m4-20260504_174302/staged/public/val.csv", + "test_csv": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/m4/tvae/tvae-m4-20260504_174302/staged/public/test.csv", + "features_json": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/m4/tvae/tvae-m4-20260504_174302/staged/public/staged_features.json", + "public_gate_report": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/m4/tvae/tvae-m4-20260504_174302/public_gate/public_gate_report.json" +} \ No newline at end of file diff --git a/hyperparameter/m4/tvae/tvae-m4-20260504_174302/tvae-m4-2217-20260504_174327.csv b/hyperparameter/m4/tvae/tvae-m4-20260504_174302/tvae-m4-2217-20260504_174327.csv new file mode 100644 index 0000000000000000000000000000000000000000..cc89d367bbc77fcaa87035697f57afb63c3dd0f5 --- /dev/null +++ b/hyperparameter/m4/tvae/tvae-m4-20260504_174302/tvae-m4-2217-20260504_174327.csv @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:18426a62b60277585bdaec0b71059b5102ff55a45beba0836da8fbf8759b3a39 +size 135340 diff --git a/hyperparameter/m4/tvae/tvae-m4-20260504_174302/tvae_metadata.json b/hyperparameter/m4/tvae/tvae-m4-20260504_174302/tvae_metadata.json new file mode 100644 index 0000000000000000000000000000000000000000..d89b1e0b3095638c982d4d3321d21a8bedcd33ae --- /dev/null +++ b/hyperparameter/m4/tvae/tvae-m4-20260504_174302/tvae_metadata.json @@ -0,0 +1,32 @@ +{ + "columns": [ + { + "name": "age", + "type": "continuous" + }, + { + "name": "sex", + "type": "categorical" + }, + { + "name": "bmi", + "type": "continuous" + }, + { + "name": "children", + "type": "continuous" + }, + { + "name": "smoker", + "type": "categorical" + }, + { + "name": "region", + "type": "categorical" + }, + { + "name": "charges", + "type": "continuous" + } + ] +} \ No newline at end of file diff --git a/hyperparameter/m4/tvae/tvae-m4-20260504_174345/_tvae_generate.py b/hyperparameter/m4/tvae/tvae-m4-20260504_174345/_tvae_generate.py new file mode 100644 index 0000000000000000000000000000000000000000..5752f6a3066cdfc5f9df8ba23e3090b04584f4d8 --- /dev/null +++ b/hyperparameter/m4/tvae/tvae-m4-20260504_174345/_tvae_generate.py @@ -0,0 +1,23 @@ +import os, sys +sys.path.insert(0, "/work") +from src.SpecificModels.ctgan_joblib_parallel_cap import apply_parallel_cap_from_env +apply_parallel_cap_from_env() +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 +os.environ.setdefault("LOKY_MAX_CPU_COUNT", "8") +os.environ.setdefault("OPENBLAS_NUM_THREADS", "8") +os.environ.setdefault("MKL_NUM_THREADS", "8") +model = TVAE.load("/work/output-Benchmark-trainonly-v1/m4/tvae/tvae-m4-20260504_174345/models_300epochs/tvae_300epochs.pt") +total = 2217 +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-Benchmark-trainonly-v1/m4/tvae/tvae-m4-20260504_174345/tvae-m4-2217-20260504_174408.csv", index=False) +print(f"[TVAE] Generated {total} rows (chunks={len(parts)}) -> /work/output-Benchmark-trainonly-v1/m4/tvae/tvae-m4-20260504_174345/tvae-m4-2217-20260504_174408.csv") diff --git a/hyperparameter/m4/tvae/tvae-m4-20260504_174345/_tvae_train.py b/hyperparameter/m4/tvae/tvae-m4-20260504_174345/_tvae_train.py new file mode 100644 index 0000000000000000000000000000000000000000..aca9f4cee652b8d957c0618750c8f79706afa308 --- /dev/null +++ b/hyperparameter/m4/tvae/tvae-m4-20260504_174345/_tvae_train.py @@ -0,0 +1,39 @@ +import json, os, sys +sys.path.insert(0, "/work") +from src.SpecificModels.ctgan_joblib_parallel_cap import apply_parallel_cap_from_env +apply_parallel_cap_from_env() +import pandas as pd +from ctgan.data import read_csv +from ctgan.synthesizers.tvae import TVAE + +# Keep transform stage parallelism bounded for stability on shared host. +os.environ.setdefault("LOKY_MAX_CPU_COUNT", "8") +os.environ.setdefault("OPENBLAS_NUM_THREADS", "8") +os.environ.setdefault("MKL_NUM_THREADS", "8") +_nj = (os.environ.get("TVAE_CTGAN_JOBTRANS_N_JOBS") or "").strip() +if _nj: + print("[TVAE] joblib Parallel cap ON, TVAE_CTGAN_JOBTRANS_N_JOBS=" + _nj) +else: + print("[TVAE] joblib Parallel cap OFF (unset TVAE_CTGAN_JOBTRANS_N_JOBS)") +print("[TVAE] LOKY_MAX_CPU_COUNT=" + str(os.environ.get("LOKY_MAX_CPU_COUNT", ""))) + +csv_path = "/work/output-Benchmark-trainonly-v1/m4/tvae/tvae-m4-20260504_174345/staged/public/train.csv" +meta_path = "/work/output-Benchmark-trainonly-v1/m4/tvae/tvae-m4-20260504_174345/tvae_metadata.json" +save_path = "/work/output-Benchmark-trainonly-v1/m4/tvae/tvae-m4-20260504_174345/models_300epochs/tvae_300epochs.pt" +epochs = int(os.environ.get("TVAE_EPOCHS", 300)) +batch_size = int(os.environ.get("TVAE_BATCH_SIZE", "500")) +embedding_dim = int(os.environ.get("TVAE_EMBEDDING_DIM", "128")) +def _parse_dims(name, default): + raw = (os.environ.get(name) or "").strip() + if not raw: + return default + return tuple(int(x.strip()) for x in raw.split(",") if x.strip()) +compress_dims = _parse_dims("TVAE_COMPRESS_DIMS", (128, 128)) +decompress_dims = _parse_dims("TVAE_DECOMPRESS_DIMS", (128, 128)) + +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}, batch_size={batch_size}, embedding_dim={embedding_dim}, compress_dims={compress_dims}, decompress_dims={decompress_dims}") +model = TVAE(epochs=epochs, batch_size=batch_size, embedding_dim=embedding_dim, compress_dims=compress_dims, decompress_dims=decompress_dims) +model.fit(data, discrete_columns) +model.save(save_path) +print(f"[TVAE] Model saved -> {save_path}") diff --git a/hyperparameter/m4/tvae/tvae-m4-20260504_174345/gen_20260504_174408.log b/hyperparameter/m4/tvae/tvae-m4-20260504_174345/gen_20260504_174408.log new file mode 100644 index 0000000000000000000000000000000000000000..8fc5e6292cb4d277e08212280353a2066877709f --- /dev/null +++ b/hyperparameter/m4/tvae/tvae-m4-20260504_174345/gen_20260504_174408.log @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:6a4497f79ab8d0c7ce135c4864c2a53a2e7353da7444daaf7b0e9dde72e02f5e +size 404 diff --git a/hyperparameter/m4/tvae/tvae-m4-20260504_174345/input_snapshot.json b/hyperparameter/m4/tvae/tvae-m4-20260504_174345/input_snapshot.json new file mode 100644 index 0000000000000000000000000000000000000000..60c34c26acabd61c3c87a32ef8cbe89659d8c727 --- /dev/null +++ b/hyperparameter/m4/tvae/tvae-m4-20260504_174345/input_snapshot.json @@ -0,0 +1,36 @@ +{ + "dataset_id": "m4", + "model": "tvae", + "inputs": { + "train_csv": { + "path": "/data/jialinzhang/SynthesizePipeline-server/DatasetNew/m4/m4-train.csv", + "exists": true, + "size": 92191, + "sha256": "396b9d409ca21bf4a4cd329bdf5b7796aa0ae6356fa8d89b8eb669b5880b81f1" + }, + "val_csv": { + "path": "/data/jialinzhang/SynthesizePipeline-server/DatasetNew/m4/m4-val.csv", + "exists": true, + "size": 11482, + "sha256": "ee3c247d02f56e1687d03c381e13125d6a3a2a411ac7f202ba8520a4be9f1784" + }, + "test_csv": { + "path": "/data/jialinzhang/SynthesizePipeline-server/DatasetNew/m4/m4-test.csv", + "exists": true, + "size": 11559, + "sha256": "cadb9941124001b8fa7cb1ebae43b70a9ca56294f4df4d3c2f22c164c41757d4" + }, + "profile_json": { + "path": "/data/jialinzhang/SynthesizePipeline-server/DatasetNew/artifacts/data_core/tabular/m4/m4-dataset_profile.json", + "exists": true, + "size": 3336, + "sha256": "83e2764810e4a0e8cdece3a28dbd9134b7c9df6f2e56953e46d024ad2c4e035f" + }, + "contract_json": { + "path": "/data/jialinzhang/SynthesizePipeline-server/DatasetNew/artifacts/data_core/tabular/m4/m4-dataset_contract_v1.json", + "exists": true, + "size": 3810, + "sha256": "c23641b258629a845b164099bd0132886f8f6d0100e990494e0f92540f8987d9" + } + } +} \ No newline at end of file diff --git a/hyperparameter/m4/tvae/tvae-m4-20260504_174345/models_300epochs/train_20260504_174345.log b/hyperparameter/m4/tvae/tvae-m4-20260504_174345/models_300epochs/train_20260504_174345.log new file mode 100644 index 0000000000000000000000000000000000000000..d9c3fff9bb4dbe5599922e1d080551aca2b86361 --- /dev/null +++ b/hyperparameter/m4/tvae/tvae-m4-20260504_174345/models_300epochs/train_20260504_174345.log @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:c494110b8fec6c70cf01186532504c957a2de78d8140a7fb363f74601b4b2a18 +size 619 diff --git a/hyperparameter/m4/tvae/tvae-m4-20260504_174345/models_300epochs/tvae_300epochs.pt b/hyperparameter/m4/tvae/tvae-m4-20260504_174345/models_300epochs/tvae_300epochs.pt new file mode 100644 index 0000000000000000000000000000000000000000..0c28da14e1cbc85fc7636e69a71272a7c7923f92 --- /dev/null +++ b/hyperparameter/m4/tvae/tvae-m4-20260504_174345/models_300epochs/tvae_300epochs.pt @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:81942ae13ef96a3ad65261194e36070237c40e9a5c95b8dc18ed277045304175 +size 399020 diff --git a/hyperparameter/m4/tvae/tvae-m4-20260504_174345/public_gate/normalized_schema_snapshot.json b/hyperparameter/m4/tvae/tvae-m4-20260504_174345/public_gate/normalized_schema_snapshot.json new file mode 100644 index 0000000000000000000000000000000000000000..31ed9818686b11907df75e872e4ffbe010330880 --- /dev/null +++ b/hyperparameter/m4/tvae/tvae-m4-20260504_174345/public_gate/normalized_schema_snapshot.json @@ -0,0 +1,147 @@ +{ + "dataset_id": "m4", + "target_column": "charges", + "task_type": "regression", + "columns": [ + { + "name": "age", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 47, + "unique_ratio": 0.0212, + "example_values": [ + "46", + "38", + "19", + "27", + "26" + ] + } + }, + { + "name": "sex", + "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.000902, + "example_values": [ + "female", + "male" + ] + } + }, + { + "name": "bmi", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 538, + "unique_ratio": 0.24267, + "example_values": [ + "23.655", + "19.3", + "30.59", + "32.67", + "29.45" + ] + } + }, + { + "name": "children", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 6, + "unique_ratio": 0.002706, + "example_values": [ + "1", + "0", + "3", + "2", + "5" + ] + } + }, + { + "name": "smoker", + "role": "feature", + "semantic_type": "boolean", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 2, + "unique_ratio": 0.000902, + "example_values": [ + "yes", + "no" + ] + } + }, + { + "name": "region", + "role": "feature", + "semantic_type": "categorical", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 4, + "unique_ratio": 0.001804, + "example_values": [ + "northwest", + "southwest", + "southeast", + "northeast" + ] + } + }, + { + "name": "charges", + "role": "target", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 1281, + "unique_ratio": 0.577808, + "example_values": [ + "21677.28345", + "15820.699", + "1639.5631", + "2497.0383", + "2897.3235" + ] + } + } + ] +} \ No newline at end of file diff --git a/hyperparameter/m4/tvae/tvae-m4-20260504_174345/public_gate/public_gate_report.json b/hyperparameter/m4/tvae/tvae-m4-20260504_174345/public_gate/public_gate_report.json new file mode 100644 index 0000000000000000000000000000000000000000..e7a25408e2574124629ea9437356551e4d6f4790 --- /dev/null +++ b/hyperparameter/m4/tvae/tvae-m4-20260504_174345/public_gate/public_gate_report.json @@ -0,0 +1,37 @@ +{ + "dataset_id": "m4", + "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": "charges", + "task_type": "regression", + "input_splits": { + "train": "/data/jialinzhang/SynthesizePipeline-server/DatasetNew/m4/m4-train.csv", + "val": "/data/jialinzhang/SynthesizePipeline-server/DatasetNew/m4/m4-val.csv", + "test": "/data/jialinzhang/SynthesizePipeline-server/DatasetNew/m4/m4-test.csv" + } +} \ No newline at end of file diff --git a/hyperparameter/m4/tvae/tvae-m4-20260504_174345/public_gate/staged_input_manifest.json b/hyperparameter/m4/tvae/tvae-m4-20260504_174345/public_gate/staged_input_manifest.json new file mode 100644 index 0000000000000000000000000000000000000000..b0b82386d8afde67d57d61d34d14967820ba36bc --- /dev/null +++ b/hyperparameter/m4/tvae/tvae-m4-20260504_174345/public_gate/staged_input_manifest.json @@ -0,0 +1,152 @@ +{ + "dataset_id": "m4", + "target_column": "charges", + "task_type": "regression", + "train_csv": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/m4/tvae/tvae-m4-20260504_174345/staged/public/train.csv", + "val_csv": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/m4/tvae/tvae-m4-20260504_174345/staged/public/val.csv", + "test_csv": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/m4/tvae/tvae-m4-20260504_174345/staged/public/test.csv", + "features_json": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/m4/tvae/tvae-m4-20260504_174345/staged/public/staged_features.json", + "public_gate_report": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/m4/tvae/tvae-m4-20260504_174345/public_gate/public_gate_report.json", + "column_schema": [ + { + "name": "age", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 47, + "unique_ratio": 0.0212, + "example_values": [ + "46", + "38", + "19", + "27", + "26" + ] + } + }, + { + "name": "sex", + "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.000902, + "example_values": [ + "female", + "male" + ] + } + }, + { + "name": "bmi", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 538, + "unique_ratio": 0.24267, + "example_values": [ + "23.655", + "19.3", + "30.59", + "32.67", + "29.45" + ] + } + }, + { + "name": "children", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 6, + "unique_ratio": 0.002706, + "example_values": [ + "1", + "0", + "3", + "2", + "5" + ] + } + }, + { + "name": "smoker", + "role": "feature", + "semantic_type": "boolean", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 2, + "unique_ratio": 0.000902, + "example_values": [ + "yes", + "no" + ] + } + }, + { + "name": "region", + "role": "feature", + "semantic_type": "categorical", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 4, + "unique_ratio": 0.001804, + "example_values": [ + "northwest", + "southwest", + "southeast", + "northeast" + ] + } + }, + { + "name": "charges", + "role": "target", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 1281, + "unique_ratio": 0.577808, + "example_values": [ + "21677.28345", + "15820.699", + "1639.5631", + "2497.0383", + "2897.3235" + ] + } + } + ] +} \ No newline at end of file diff --git a/hyperparameter/m4/tvae/tvae-m4-20260504_174345/run_config.json b/hyperparameter/m4/tvae/tvae-m4-20260504_174345/run_config.json new file mode 100644 index 0000000000000000000000000000000000000000..6a0d856803666f7f8f0fd1b32a1a8b71d17c669c --- /dev/null +++ b/hyperparameter/m4/tvae/tvae-m4-20260504_174345/run_config.json @@ -0,0 +1,45 @@ +{ + "schema_version": 1, + "recorded_at": "2026-05-04T17:43:45", + "dataset_id": "m4", + "model": "tvae", + "work_dir": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/m4/tvae/tvae-m4-20260504_174345", + "dataset_source_requested": "new", + "dataset_source_resolved": "new", + "cli_args": { + "model": "tvae", + "dataset": "m4", + "dataset_source": "new", + "train": true, + "generate": true, + "num_rows": 0, + "epochs": null, + "output_dir": null, + "model_dir": null, + "work_dir": null, + "resume": false, + "no_stats": false + }, + "resolved": { + "num_rows": 2217, + "model_path": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/m4/tvae/tvae-m4-20260504_174345/models_300epochs/tvae_300epochs.pt", + "output_csv": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/m4/tvae/tvae-m4-20260504_174345/tvae-m4-2217-20260504_174408.csv" + }, + "input_artifacts": { + "public_gate_report": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/m4/tvae/tvae-m4-20260504_174345/public_gate/public_gate_report.json", + "public_manifest": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/m4/tvae/tvae-m4-20260504_174345/public_gate/staged_input_manifest.json", + "model_manifest": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/m4/tvae/tvae-m4-20260504_174345/staged/tvae/model_input_manifest.json", + "train_csv": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/m4/tvae/tvae-m4-20260504_174345/staged/public/train.csv", + "features_json": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/m4/tvae/tvae-m4-20260504_174345/staged/public/staged_features.json", + "target_column": "charges", + "task_type": "regression" + }, + "env_overrides": { + "BENCHMARK_TVAE_GPUS": "device=3", + "TVAE_BATCH_SIZE": "256", + "TVAE_COMPRESS_DIMS": "128,128", + "TVAE_DECOMPRESS_DIMS": "128,128", + "TVAE_EMBEDDING_DIM": "64", + "TVAE_EPOCHS": "200" + } +} \ No newline at end of file diff --git a/hyperparameter/m4/tvae/tvae-m4-20260504_174345/runtime_result.json b/hyperparameter/m4/tvae/tvae-m4-20260504_174345/runtime_result.json new file mode 100644 index 0000000000000000000000000000000000000000..018199b620d8be1125db7cf1c4d80366a23151f7 --- /dev/null +++ b/hyperparameter/m4/tvae/tvae-m4-20260504_174345/runtime_result.json @@ -0,0 +1,27 @@ +{ + "dataset_id": "m4", + "model": "tvae", + "run_id": "tvae-m4-20260504_174345", + "public_gate_status": "pass", + "adapter_ready_status": "pass", + "train_status": "success", + "generate_status": "success", + "reason_code": null, + "reason_detail": null, + "artifacts": { + "synthetic_csv": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/m4/tvae/tvae-m4-20260504_174345/tvae-m4-2217-20260504_174408.csv", + "model_path": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/m4/tvae/tvae-m4-20260504_174345/models_300epochs/tvae_300epochs.pt" + }, + "timings": { + "train": { + "started_at": "2026-05-04T17:43:45", + "ended_at": "2026-05-04T17:44:08", + "duration_sec": 23.351 + }, + "generate": { + "started_at": "2026-05-04T17:44:08", + "ended_at": "2026-05-04T17:44:13", + "duration_sec": 5.268 + } + } +} \ No newline at end of file diff --git a/hyperparameter/m4/tvae/tvae-m4-20260504_174345/staged/public/staged_features.json b/hyperparameter/m4/tvae/tvae-m4-20260504_174345/staged/public/staged_features.json new file mode 100644 index 0000000000000000000000000000000000000000..d6acd098c35111f423f3ffff2cfd1754bc5dfebc --- /dev/null +++ b/hyperparameter/m4/tvae/tvae-m4-20260504_174345/staged/public/staged_features.json @@ -0,0 +1,37 @@ +[ + { + "feature_name": "age", + "data_type": "continuous", + "is_target": false + }, + { + "feature_name": "sex", + "data_type": "categorical", + "is_target": false + }, + { + "feature_name": "bmi", + "data_type": "continuous", + "is_target": false + }, + { + "feature_name": "children", + "data_type": "continuous", + "is_target": false + }, + { + "feature_name": "smoker", + "data_type": "binary", + "is_target": false + }, + { + "feature_name": "region", + "data_type": "categorical", + "is_target": false + }, + { + "feature_name": "charges", + "data_type": "continuous", + "is_target": true + } +] \ No newline at end of file diff --git a/hyperparameter/m4/tvae/tvae-m4-20260504_174345/staged/public/test.csv b/hyperparameter/m4/tvae/tvae-m4-20260504_174345/staged/public/test.csv new file mode 100644 index 0000000000000000000000000000000000000000..c88a2e7cfcd715bb421cb56eb078033da45c4dc8 --- /dev/null +++ b/hyperparameter/m4/tvae/tvae-m4-20260504_174345/staged/public/test.csv @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:4c541b677fb2d45c5bc79338eeee9fd8c91484b195a0c2c546c2fbabf113b7ea +size 11298 diff --git a/hyperparameter/m4/tvae/tvae-m4-20260504_174345/staged/public/train.csv b/hyperparameter/m4/tvae/tvae-m4-20260504_174345/staged/public/train.csv new file mode 100644 index 0000000000000000000000000000000000000000..5a05019d786529e0617291766c4fbe016ca01bf5 --- /dev/null +++ b/hyperparameter/m4/tvae/tvae-m4-20260504_174345/staged/public/train.csv @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:614ebfac5f41d6f661aff675fa18c0f933a8d9bcc77ea71b7b2360c2f0155837 +size 90069 diff --git a/hyperparameter/m4/tvae/tvae-m4-20260504_174345/staged/public/val.csv b/hyperparameter/m4/tvae/tvae-m4-20260504_174345/staged/public/val.csv new file mode 100644 index 0000000000000000000000000000000000000000..d78fe5ad1537c437ba9ac2629f2aa60a6c17e708 --- /dev/null +++ b/hyperparameter/m4/tvae/tvae-m4-20260504_174345/staged/public/val.csv @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:e55f5edbe7942ff01630de91a9c70dfbc6445eba76c7b970350364546b67c2d7 +size 11218 diff --git a/hyperparameter/m4/tvae/tvae-m4-20260504_174345/staged/tvae/adapter_report.json b/hyperparameter/m4/tvae/tvae-m4-20260504_174345/staged/tvae/adapter_report.json new file mode 100644 index 0000000000000000000000000000000000000000..8c95e5df24a3ad9d5cecc4a4ab707a886869ef49 --- /dev/null +++ b/hyperparameter/m4/tvae/tvae-m4-20260504_174345/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-Benchmark-trainonly-v1/m4/tvae/tvae-m4-20260504_174345/staged/tvae/model_input_manifest.json" +} \ No newline at end of file diff --git a/hyperparameter/m4/tvae/tvae-m4-20260504_174345/staged/tvae/adapter_transforms_applied.json b/hyperparameter/m4/tvae/tvae-m4-20260504_174345/staged/tvae/adapter_transforms_applied.json new file mode 100644 index 0000000000000000000000000000000000000000..0637a088a01e8ddab3bf3fa98dbe804cbde1a0dc --- /dev/null +++ b/hyperparameter/m4/tvae/tvae-m4-20260504_174345/staged/tvae/adapter_transforms_applied.json @@ -0,0 +1 @@ +[] \ No newline at end of file diff --git a/hyperparameter/m4/tvae/tvae-m4-20260504_174345/staged/tvae/model_input_manifest.json b/hyperparameter/m4/tvae/tvae-m4-20260504_174345/staged/tvae/model_input_manifest.json new file mode 100644 index 0000000000000000000000000000000000000000..8310da218087853e3398cb155bdf4b9c096a06bc --- /dev/null +++ b/hyperparameter/m4/tvae/tvae-m4-20260504_174345/staged/tvae/model_input_manifest.json @@ -0,0 +1,154 @@ +{ + "dataset_id": "m4", + "model": "tvae", + "target_column": "charges", + "task_type": "regression", + "column_schema": [ + { + "name": "age", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 47, + "unique_ratio": 0.0212, + "example_values": [ + "46", + "38", + "19", + "27", + "26" + ] + } + }, + { + "name": "sex", + "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.000902, + "example_values": [ + "female", + "male" + ] + } + }, + { + "name": "bmi", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 538, + "unique_ratio": 0.24267, + "example_values": [ + "23.655", + "19.3", + "30.59", + "32.67", + "29.45" + ] + } + }, + { + "name": "children", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 6, + "unique_ratio": 0.002706, + "example_values": [ + "1", + "0", + "3", + "2", + "5" + ] + } + }, + { + "name": "smoker", + "role": "feature", + "semantic_type": "boolean", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 2, + "unique_ratio": 0.000902, + "example_values": [ + "yes", + "no" + ] + } + }, + { + "name": "region", + "role": "feature", + "semantic_type": "categorical", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 4, + "unique_ratio": 0.001804, + "example_values": [ + "northwest", + "southwest", + "southeast", + "northeast" + ] + } + }, + { + "name": "charges", + "role": "target", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 1281, + "unique_ratio": 0.577808, + "example_values": [ + "21677.28345", + "15820.699", + "1639.5631", + "2497.0383", + "2897.3235" + ] + } + } + ], + "public_manifest": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/m4/tvae/tvae-m4-20260504_174345/public_gate/staged_input_manifest.json", + "train_csv": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/m4/tvae/tvae-m4-20260504_174345/staged/public/train.csv", + "val_csv": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/m4/tvae/tvae-m4-20260504_174345/staged/public/val.csv", + "test_csv": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/m4/tvae/tvae-m4-20260504_174345/staged/public/test.csv", + "features_json": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/m4/tvae/tvae-m4-20260504_174345/staged/public/staged_features.json", + "public_gate_report": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/m4/tvae/tvae-m4-20260504_174345/public_gate/public_gate_report.json" +} \ No newline at end of file diff --git a/hyperparameter/m4/tvae/tvae-m4-20260504_174345/tvae-m4-2217-20260504_174408.csv b/hyperparameter/m4/tvae/tvae-m4-20260504_174345/tvae-m4-2217-20260504_174408.csv new file mode 100644 index 0000000000000000000000000000000000000000..57b7a745bd77beb6a86f026fe8306bda5886a559 --- /dev/null +++ b/hyperparameter/m4/tvae/tvae-m4-20260504_174345/tvae-m4-2217-20260504_174408.csv @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:083f6155edb8f495beff37d43146b53d55fbeb8eedb579e53a6ff1db820317d5 +size 135606 diff --git a/hyperparameter/m4/tvae/tvae-m4-20260504_174345/tvae_metadata.json b/hyperparameter/m4/tvae/tvae-m4-20260504_174345/tvae_metadata.json new file mode 100644 index 0000000000000000000000000000000000000000..d89b1e0b3095638c982d4d3321d21a8bedcd33ae --- /dev/null +++ b/hyperparameter/m4/tvae/tvae-m4-20260504_174345/tvae_metadata.json @@ -0,0 +1,32 @@ +{ + "columns": [ + { + "name": "age", + "type": "continuous" + }, + { + "name": "sex", + "type": "categorical" + }, + { + "name": "bmi", + "type": "continuous" + }, + { + "name": "children", + "type": "continuous" + }, + { + "name": "smoker", + "type": "categorical" + }, + { + "name": "region", + "type": "categorical" + }, + { + "name": "charges", + "type": "continuous" + } + ] +} \ No newline at end of file diff --git a/hyperparameter/m4/tvae/tvae-m4-20260504_174426/_tvae_generate.py b/hyperparameter/m4/tvae/tvae-m4-20260504_174426/_tvae_generate.py new file mode 100644 index 0000000000000000000000000000000000000000..986470909887e64074ae7b5468923539ce59c61e --- /dev/null +++ b/hyperparameter/m4/tvae/tvae-m4-20260504_174426/_tvae_generate.py @@ -0,0 +1,23 @@ +import os, sys +sys.path.insert(0, "/work") +from src.SpecificModels.ctgan_joblib_parallel_cap import apply_parallel_cap_from_env +apply_parallel_cap_from_env() +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 +os.environ.setdefault("LOKY_MAX_CPU_COUNT", "8") +os.environ.setdefault("OPENBLAS_NUM_THREADS", "8") +os.environ.setdefault("MKL_NUM_THREADS", "8") +model = TVAE.load("/work/output-Benchmark-trainonly-v1/m4/tvae/tvae-m4-20260504_174426/models_300epochs/tvae_300epochs.pt") +total = 2217 +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-Benchmark-trainonly-v1/m4/tvae/tvae-m4-20260504_174426/tvae-m4-2217-20260504_174448.csv", index=False) +print(f"[TVAE] Generated {total} rows (chunks={len(parts)}) -> /work/output-Benchmark-trainonly-v1/m4/tvae/tvae-m4-20260504_174426/tvae-m4-2217-20260504_174448.csv") diff --git a/hyperparameter/m4/tvae/tvae-m4-20260504_174426/_tvae_train.py b/hyperparameter/m4/tvae/tvae-m4-20260504_174426/_tvae_train.py new file mode 100644 index 0000000000000000000000000000000000000000..51849963b3e68038221e8e94145da119f0101e40 --- /dev/null +++ b/hyperparameter/m4/tvae/tvae-m4-20260504_174426/_tvae_train.py @@ -0,0 +1,39 @@ +import json, os, sys +sys.path.insert(0, "/work") +from src.SpecificModels.ctgan_joblib_parallel_cap import apply_parallel_cap_from_env +apply_parallel_cap_from_env() +import pandas as pd +from ctgan.data import read_csv +from ctgan.synthesizers.tvae import TVAE + +# Keep transform stage parallelism bounded for stability on shared host. +os.environ.setdefault("LOKY_MAX_CPU_COUNT", "8") +os.environ.setdefault("OPENBLAS_NUM_THREADS", "8") +os.environ.setdefault("MKL_NUM_THREADS", "8") +_nj = (os.environ.get("TVAE_CTGAN_JOBTRANS_N_JOBS") or "").strip() +if _nj: + print("[TVAE] joblib Parallel cap ON, TVAE_CTGAN_JOBTRANS_N_JOBS=" + _nj) +else: + print("[TVAE] joblib Parallel cap OFF (unset TVAE_CTGAN_JOBTRANS_N_JOBS)") +print("[TVAE] LOKY_MAX_CPU_COUNT=" + str(os.environ.get("LOKY_MAX_CPU_COUNT", ""))) + +csv_path = "/work/output-Benchmark-trainonly-v1/m4/tvae/tvae-m4-20260504_174426/staged/public/train.csv" +meta_path = "/work/output-Benchmark-trainonly-v1/m4/tvae/tvae-m4-20260504_174426/tvae_metadata.json" +save_path = "/work/output-Benchmark-trainonly-v1/m4/tvae/tvae-m4-20260504_174426/models_300epochs/tvae_300epochs.pt" +epochs = int(os.environ.get("TVAE_EPOCHS", 300)) +batch_size = int(os.environ.get("TVAE_BATCH_SIZE", "500")) +embedding_dim = int(os.environ.get("TVAE_EMBEDDING_DIM", "128")) +def _parse_dims(name, default): + raw = (os.environ.get(name) or "").strip() + if not raw: + return default + return tuple(int(x.strip()) for x in raw.split(",") if x.strip()) +compress_dims = _parse_dims("TVAE_COMPRESS_DIMS", (128, 128)) +decompress_dims = _parse_dims("TVAE_DECOMPRESS_DIMS", (128, 128)) + +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}, batch_size={batch_size}, embedding_dim={embedding_dim}, compress_dims={compress_dims}, decompress_dims={decompress_dims}") +model = TVAE(epochs=epochs, batch_size=batch_size, embedding_dim=embedding_dim, compress_dims=compress_dims, decompress_dims=decompress_dims) +model.fit(data, discrete_columns) +model.save(save_path) +print(f"[TVAE] Model saved -> {save_path}") diff --git a/hyperparameter/m4/tvae/tvae-m4-20260504_174426/gen_20260504_174448.log b/hyperparameter/m4/tvae/tvae-m4-20260504_174426/gen_20260504_174448.log new file mode 100644 index 0000000000000000000000000000000000000000..bf3bec0ffb0b16650e96487ab6aef4b913e7cf21 --- /dev/null +++ b/hyperparameter/m4/tvae/tvae-m4-20260504_174426/gen_20260504_174448.log @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:a129533a2ad4f0771f09c7c1113903202b4304c36ffa3260f021cba649543cbe +size 404 diff --git a/hyperparameter/m4/tvae/tvae-m4-20260504_174426/input_snapshot.json b/hyperparameter/m4/tvae/tvae-m4-20260504_174426/input_snapshot.json new file mode 100644 index 0000000000000000000000000000000000000000..60c34c26acabd61c3c87a32ef8cbe89659d8c727 --- /dev/null +++ b/hyperparameter/m4/tvae/tvae-m4-20260504_174426/input_snapshot.json @@ -0,0 +1,36 @@ +{ + "dataset_id": "m4", + "model": "tvae", + "inputs": { + "train_csv": { + "path": "/data/jialinzhang/SynthesizePipeline-server/DatasetNew/m4/m4-train.csv", + "exists": true, + "size": 92191, + "sha256": "396b9d409ca21bf4a4cd329bdf5b7796aa0ae6356fa8d89b8eb669b5880b81f1" + }, + "val_csv": { + "path": "/data/jialinzhang/SynthesizePipeline-server/DatasetNew/m4/m4-val.csv", + "exists": true, + "size": 11482, + "sha256": "ee3c247d02f56e1687d03c381e13125d6a3a2a411ac7f202ba8520a4be9f1784" + }, + "test_csv": { + "path": "/data/jialinzhang/SynthesizePipeline-server/DatasetNew/m4/m4-test.csv", + "exists": true, + "size": 11559, + "sha256": "cadb9941124001b8fa7cb1ebae43b70a9ca56294f4df4d3c2f22c164c41757d4" + }, + "profile_json": { + "path": "/data/jialinzhang/SynthesizePipeline-server/DatasetNew/artifacts/data_core/tabular/m4/m4-dataset_profile.json", + "exists": true, + "size": 3336, + "sha256": "83e2764810e4a0e8cdece3a28dbd9134b7c9df6f2e56953e46d024ad2c4e035f" + }, + "contract_json": { + "path": "/data/jialinzhang/SynthesizePipeline-server/DatasetNew/artifacts/data_core/tabular/m4/m4-dataset_contract_v1.json", + "exists": true, + "size": 3810, + "sha256": "c23641b258629a845b164099bd0132886f8f6d0100e990494e0f92540f8987d9" + } + } +} \ No newline at end of file diff --git a/hyperparameter/m4/tvae/tvae-m4-20260504_174426/models_300epochs/train_20260504_174426.log b/hyperparameter/m4/tvae/tvae-m4-20260504_174426/models_300epochs/train_20260504_174426.log new file mode 100644 index 0000000000000000000000000000000000000000..3aaedef345ca67f0cd8136ae4946e016390d447b --- /dev/null +++ b/hyperparameter/m4/tvae/tvae-m4-20260504_174426/models_300epochs/train_20260504_174426.log @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:131de4dfe1a2d5ce638b8f5ba437d185fecbcc78924c59ec2071c9ab1a059d50 +size 620 diff --git a/hyperparameter/m4/tvae/tvae-m4-20260504_174426/models_300epochs/tvae_300epochs.pt b/hyperparameter/m4/tvae/tvae-m4-20260504_174426/models_300epochs/tvae_300epochs.pt new file mode 100644 index 0000000000000000000000000000000000000000..e16266a5a93d9224447326b03ce66256a1e2b41b --- /dev/null +++ b/hyperparameter/m4/tvae/tvae-m4-20260504_174426/models_300epochs/tvae_300epochs.pt @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:08da8f0a648e3fdfb1e1c8b1ea7d76832c8955a5b3f523c056b91db92405d19a +size 684524 diff --git a/hyperparameter/m4/tvae/tvae-m4-20260504_174426/public_gate/normalized_schema_snapshot.json b/hyperparameter/m4/tvae/tvae-m4-20260504_174426/public_gate/normalized_schema_snapshot.json new file mode 100644 index 0000000000000000000000000000000000000000..31ed9818686b11907df75e872e4ffbe010330880 --- /dev/null +++ b/hyperparameter/m4/tvae/tvae-m4-20260504_174426/public_gate/normalized_schema_snapshot.json @@ -0,0 +1,147 @@ +{ + "dataset_id": "m4", + "target_column": "charges", + "task_type": "regression", + "columns": [ + { + "name": "age", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 47, + "unique_ratio": 0.0212, + "example_values": [ + "46", + "38", + "19", + "27", + "26" + ] + } + }, + { + "name": "sex", + "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.000902, + "example_values": [ + "female", + "male" + ] + } + }, + { + "name": "bmi", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 538, + "unique_ratio": 0.24267, + "example_values": [ + "23.655", + "19.3", + "30.59", + "32.67", + "29.45" + ] + } + }, + { + "name": "children", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 6, + "unique_ratio": 0.002706, + "example_values": [ + "1", + "0", + "3", + "2", + "5" + ] + } + }, + { + "name": "smoker", + "role": "feature", + "semantic_type": "boolean", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 2, + "unique_ratio": 0.000902, + "example_values": [ + "yes", + "no" + ] + } + }, + { + "name": "region", + "role": "feature", + "semantic_type": "categorical", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 4, + "unique_ratio": 0.001804, + "example_values": [ + "northwest", + "southwest", + "southeast", + "northeast" + ] + } + }, + { + "name": "charges", + "role": "target", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 1281, + "unique_ratio": 0.577808, + "example_values": [ + "21677.28345", + "15820.699", + "1639.5631", + "2497.0383", + "2897.3235" + ] + } + } + ] +} \ No newline at end of file diff --git a/hyperparameter/m4/tvae/tvae-m4-20260504_174426/public_gate/public_gate_report.json b/hyperparameter/m4/tvae/tvae-m4-20260504_174426/public_gate/public_gate_report.json new file mode 100644 index 0000000000000000000000000000000000000000..e7a25408e2574124629ea9437356551e4d6f4790 --- /dev/null +++ b/hyperparameter/m4/tvae/tvae-m4-20260504_174426/public_gate/public_gate_report.json @@ -0,0 +1,37 @@ +{ + "dataset_id": "m4", + "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": "charges", + "task_type": "regression", + "input_splits": { + "train": "/data/jialinzhang/SynthesizePipeline-server/DatasetNew/m4/m4-train.csv", + "val": "/data/jialinzhang/SynthesizePipeline-server/DatasetNew/m4/m4-val.csv", + "test": "/data/jialinzhang/SynthesizePipeline-server/DatasetNew/m4/m4-test.csv" + } +} \ No newline at end of file diff --git a/hyperparameter/m4/tvae/tvae-m4-20260504_174426/public_gate/staged_input_manifest.json b/hyperparameter/m4/tvae/tvae-m4-20260504_174426/public_gate/staged_input_manifest.json new file mode 100644 index 0000000000000000000000000000000000000000..cd39515addd348f9fcb2b4c8ba4ef09d43238433 --- /dev/null +++ b/hyperparameter/m4/tvae/tvae-m4-20260504_174426/public_gate/staged_input_manifest.json @@ -0,0 +1,152 @@ +{ + "dataset_id": "m4", + "target_column": "charges", + "task_type": "regression", + "train_csv": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/m4/tvae/tvae-m4-20260504_174426/staged/public/train.csv", + "val_csv": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/m4/tvae/tvae-m4-20260504_174426/staged/public/val.csv", + "test_csv": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/m4/tvae/tvae-m4-20260504_174426/staged/public/test.csv", + "features_json": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/m4/tvae/tvae-m4-20260504_174426/staged/public/staged_features.json", + "public_gate_report": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/m4/tvae/tvae-m4-20260504_174426/public_gate/public_gate_report.json", + "column_schema": [ + { + "name": "age", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 47, + "unique_ratio": 0.0212, + "example_values": [ + "46", + "38", + "19", + "27", + "26" + ] + } + }, + { + "name": "sex", + "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.000902, + "example_values": [ + "female", + "male" + ] + } + }, + { + "name": "bmi", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 538, + "unique_ratio": 0.24267, + "example_values": [ + "23.655", + "19.3", + "30.59", + "32.67", + "29.45" + ] + } + }, + { + "name": "children", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 6, + "unique_ratio": 0.002706, + "example_values": [ + "1", + "0", + "3", + "2", + "5" + ] + } + }, + { + "name": "smoker", + "role": "feature", + "semantic_type": "boolean", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 2, + "unique_ratio": 0.000902, + "example_values": [ + "yes", + "no" + ] + } + }, + { + "name": "region", + "role": "feature", + "semantic_type": "categorical", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 4, + "unique_ratio": 0.001804, + "example_values": [ + "northwest", + "southwest", + "southeast", + "northeast" + ] + } + }, + { + "name": "charges", + "role": "target", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 1281, + "unique_ratio": 0.577808, + "example_values": [ + "21677.28345", + "15820.699", + "1639.5631", + "2497.0383", + "2897.3235" + ] + } + } + ] +} \ No newline at end of file diff --git a/hyperparameter/m4/tvae/tvae-m4-20260504_174426/run_config.json b/hyperparameter/m4/tvae/tvae-m4-20260504_174426/run_config.json new file mode 100644 index 0000000000000000000000000000000000000000..20792d803cbf316b3142e9ed6f42bc28fa626586 --- /dev/null +++ b/hyperparameter/m4/tvae/tvae-m4-20260504_174426/run_config.json @@ -0,0 +1,45 @@ +{ + "schema_version": 1, + "recorded_at": "2026-05-04T17:44:26", + "dataset_id": "m4", + "model": "tvae", + "work_dir": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/m4/tvae/tvae-m4-20260504_174426", + "dataset_source_requested": "new", + "dataset_source_resolved": "new", + "cli_args": { + "model": "tvae", + "dataset": "m4", + "dataset_source": "new", + "train": true, + "generate": true, + "num_rows": 0, + "epochs": null, + "output_dir": null, + "model_dir": null, + "work_dir": null, + "resume": false, + "no_stats": false + }, + "resolved": { + "num_rows": 2217, + "model_path": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/m4/tvae/tvae-m4-20260504_174426/models_300epochs/tvae_300epochs.pt", + "output_csv": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/m4/tvae/tvae-m4-20260504_174426/tvae-m4-2217-20260504_174448.csv" + }, + "input_artifacts": { + "public_gate_report": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/m4/tvae/tvae-m4-20260504_174426/public_gate/public_gate_report.json", + "public_manifest": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/m4/tvae/tvae-m4-20260504_174426/public_gate/staged_input_manifest.json", + "model_manifest": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/m4/tvae/tvae-m4-20260504_174426/staged/tvae/model_input_manifest.json", + "train_csv": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/m4/tvae/tvae-m4-20260504_174426/staged/public/train.csv", + "features_json": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/m4/tvae/tvae-m4-20260504_174426/staged/public/staged_features.json", + "target_column": "charges", + "task_type": "regression" + }, + "env_overrides": { + "BENCHMARK_TVAE_GPUS": "device=3", + "TVAE_BATCH_SIZE": "500", + "TVAE_COMPRESS_DIMS": "256,256", + "TVAE_DECOMPRESS_DIMS": "256,256", + "TVAE_EMBEDDING_DIM": "128", + "TVAE_EPOCHS": "300" + } +} \ No newline at end of file diff --git a/hyperparameter/m4/tvae/tvae-m4-20260504_174426/runtime_result.json b/hyperparameter/m4/tvae/tvae-m4-20260504_174426/runtime_result.json new file mode 100644 index 0000000000000000000000000000000000000000..7b2e9d42f8215da9a9728e78bb081221cbec76dd --- /dev/null +++ b/hyperparameter/m4/tvae/tvae-m4-20260504_174426/runtime_result.json @@ -0,0 +1,27 @@ +{ + "dataset_id": "m4", + "model": "tvae", + "run_id": "tvae-m4-20260504_174426", + "public_gate_status": "pass", + "adapter_ready_status": "pass", + "train_status": "success", + "generate_status": "success", + "reason_code": null, + "reason_detail": null, + "artifacts": { + "synthetic_csv": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/m4/tvae/tvae-m4-20260504_174426/tvae-m4-2217-20260504_174448.csv", + "model_path": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/m4/tvae/tvae-m4-20260504_174426/models_300epochs/tvae_300epochs.pt" + }, + "timings": { + "train": { + "started_at": "2026-05-04T17:44:26", + "ended_at": "2026-05-04T17:44:48", + "duration_sec": 22.417 + }, + "generate": { + "started_at": "2026-05-04T17:44:48", + "ended_at": "2026-05-04T17:44:53", + "duration_sec": 5.005 + } + } +} \ No newline at end of file diff --git a/hyperparameter/m4/tvae/tvae-m4-20260504_174426/staged/public/staged_features.json b/hyperparameter/m4/tvae/tvae-m4-20260504_174426/staged/public/staged_features.json new file mode 100644 index 0000000000000000000000000000000000000000..d6acd098c35111f423f3ffff2cfd1754bc5dfebc --- /dev/null +++ b/hyperparameter/m4/tvae/tvae-m4-20260504_174426/staged/public/staged_features.json @@ -0,0 +1,37 @@ +[ + { + "feature_name": "age", + "data_type": "continuous", + "is_target": false + }, + { + "feature_name": "sex", + "data_type": "categorical", + "is_target": false + }, + { + "feature_name": "bmi", + "data_type": "continuous", + "is_target": false + }, + { + "feature_name": "children", + "data_type": "continuous", + "is_target": false + }, + { + "feature_name": "smoker", + "data_type": "binary", + "is_target": false + }, + { + "feature_name": "region", + "data_type": "categorical", + "is_target": false + }, + { + "feature_name": "charges", + "data_type": "continuous", + "is_target": true + } +] \ No newline at end of file diff --git a/hyperparameter/m4/tvae/tvae-m4-20260504_174426/staged/public/test.csv b/hyperparameter/m4/tvae/tvae-m4-20260504_174426/staged/public/test.csv new file mode 100644 index 0000000000000000000000000000000000000000..c88a2e7cfcd715bb421cb56eb078033da45c4dc8 --- /dev/null +++ b/hyperparameter/m4/tvae/tvae-m4-20260504_174426/staged/public/test.csv @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:4c541b677fb2d45c5bc79338eeee9fd8c91484b195a0c2c546c2fbabf113b7ea +size 11298 diff --git a/hyperparameter/m4/tvae/tvae-m4-20260504_174426/staged/public/train.csv b/hyperparameter/m4/tvae/tvae-m4-20260504_174426/staged/public/train.csv new file mode 100644 index 0000000000000000000000000000000000000000..5a05019d786529e0617291766c4fbe016ca01bf5 --- /dev/null +++ b/hyperparameter/m4/tvae/tvae-m4-20260504_174426/staged/public/train.csv @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:614ebfac5f41d6f661aff675fa18c0f933a8d9bcc77ea71b7b2360c2f0155837 +size 90069 diff --git a/hyperparameter/m4/tvae/tvae-m4-20260504_174426/staged/public/val.csv b/hyperparameter/m4/tvae/tvae-m4-20260504_174426/staged/public/val.csv new file mode 100644 index 0000000000000000000000000000000000000000..d78fe5ad1537c437ba9ac2629f2aa60a6c17e708 --- /dev/null +++ b/hyperparameter/m4/tvae/tvae-m4-20260504_174426/staged/public/val.csv @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:e55f5edbe7942ff01630de91a9c70dfbc6445eba76c7b970350364546b67c2d7 +size 11218 diff --git a/hyperparameter/m4/tvae/tvae-m4-20260504_174426/staged/tvae/adapter_report.json b/hyperparameter/m4/tvae/tvae-m4-20260504_174426/staged/tvae/adapter_report.json new file mode 100644 index 0000000000000000000000000000000000000000..d5a01ea2a5b209d961dfbffde36d77b4193c82e5 --- /dev/null +++ b/hyperparameter/m4/tvae/tvae-m4-20260504_174426/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-Benchmark-trainonly-v1/m4/tvae/tvae-m4-20260504_174426/staged/tvae/model_input_manifest.json" +} \ No newline at end of file diff --git a/hyperparameter/m4/tvae/tvae-m4-20260504_174426/staged/tvae/adapter_transforms_applied.json b/hyperparameter/m4/tvae/tvae-m4-20260504_174426/staged/tvae/adapter_transforms_applied.json new file mode 100644 index 0000000000000000000000000000000000000000..0637a088a01e8ddab3bf3fa98dbe804cbde1a0dc --- /dev/null +++ b/hyperparameter/m4/tvae/tvae-m4-20260504_174426/staged/tvae/adapter_transforms_applied.json @@ -0,0 +1 @@ +[] \ No newline at end of file diff --git a/hyperparameter/m4/tvae/tvae-m4-20260504_174426/staged/tvae/model_input_manifest.json b/hyperparameter/m4/tvae/tvae-m4-20260504_174426/staged/tvae/model_input_manifest.json new file mode 100644 index 0000000000000000000000000000000000000000..b155a31733b6d5835127d8d34920b3e34bf262ef --- /dev/null +++ b/hyperparameter/m4/tvae/tvae-m4-20260504_174426/staged/tvae/model_input_manifest.json @@ -0,0 +1,154 @@ +{ + "dataset_id": "m4", + "model": "tvae", + "target_column": "charges", + "task_type": "regression", + "column_schema": [ + { + "name": "age", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 47, + "unique_ratio": 0.0212, + "example_values": [ + "46", + "38", + "19", + "27", + "26" + ] + } + }, + { + "name": "sex", + "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.000902, + "example_values": [ + "female", + "male" + ] + } + }, + { + "name": "bmi", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 538, + "unique_ratio": 0.24267, + "example_values": [ + "23.655", + "19.3", + "30.59", + "32.67", + "29.45" + ] + } + }, + { + "name": "children", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 6, + "unique_ratio": 0.002706, + "example_values": [ + "1", + "0", + "3", + "2", + "5" + ] + } + }, + { + "name": "smoker", + "role": "feature", + "semantic_type": "boolean", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 2, + "unique_ratio": 0.000902, + "example_values": [ + "yes", + "no" + ] + } + }, + { + "name": "region", + "role": "feature", + "semantic_type": "categorical", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 4, + "unique_ratio": 0.001804, + "example_values": [ + "northwest", + "southwest", + "southeast", + "northeast" + ] + } + }, + { + "name": "charges", + "role": "target", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 1281, + "unique_ratio": 0.577808, + "example_values": [ + "21677.28345", + "15820.699", + "1639.5631", + "2497.0383", + "2897.3235" + ] + } + } + ], + "public_manifest": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/m4/tvae/tvae-m4-20260504_174426/public_gate/staged_input_manifest.json", + "train_csv": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/m4/tvae/tvae-m4-20260504_174426/staged/public/train.csv", + "val_csv": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/m4/tvae/tvae-m4-20260504_174426/staged/public/val.csv", + "test_csv": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/m4/tvae/tvae-m4-20260504_174426/staged/public/test.csv", + "features_json": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/m4/tvae/tvae-m4-20260504_174426/staged/public/staged_features.json", + "public_gate_report": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/m4/tvae/tvae-m4-20260504_174426/public_gate/public_gate_report.json" +} \ No newline at end of file diff --git a/hyperparameter/m4/tvae/tvae-m4-20260504_174426/tvae-m4-2217-20260504_174448.csv b/hyperparameter/m4/tvae/tvae-m4-20260504_174426/tvae-m4-2217-20260504_174448.csv new file mode 100644 index 0000000000000000000000000000000000000000..224d4c92d849978c5d816faa4fda791406550bce --- /dev/null +++ b/hyperparameter/m4/tvae/tvae-m4-20260504_174426/tvae-m4-2217-20260504_174448.csv @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:bcf9234a7900b6ed86dbc6178935c16a0f4ba186b337d1c84cff04c15a40e1f4 +size 135512 diff --git a/hyperparameter/m4/tvae/tvae-m4-20260504_174426/tvae_metadata.json b/hyperparameter/m4/tvae/tvae-m4-20260504_174426/tvae_metadata.json new file mode 100644 index 0000000000000000000000000000000000000000..d89b1e0b3095638c982d4d3321d21a8bedcd33ae --- /dev/null +++ b/hyperparameter/m4/tvae/tvae-m4-20260504_174426/tvae_metadata.json @@ -0,0 +1,32 @@ +{ + "columns": [ + { + "name": "age", + "type": "continuous" + }, + { + "name": "sex", + "type": "categorical" + }, + { + "name": "bmi", + "type": "continuous" + }, + { + "name": "children", + "type": "continuous" + }, + { + "name": "smoker", + "type": "categorical" + }, + { + "name": "region", + "type": "categorical" + }, + { + "name": "charges", + "type": "continuous" + } + ] +} \ No newline at end of file diff --git a/hyperparameter/m4/tvae/tvae-m4-20260504_175331/_tvae_generate.py b/hyperparameter/m4/tvae/tvae-m4-20260504_175331/_tvae_generate.py new file mode 100644 index 0000000000000000000000000000000000000000..b70a0b4d228b99bd6d3e71c9b31701fd7efe7eea --- /dev/null +++ b/hyperparameter/m4/tvae/tvae-m4-20260504_175331/_tvae_generate.py @@ -0,0 +1,23 @@ +import os, sys +sys.path.insert(0, "/work") +from src.SpecificModels.ctgan_joblib_parallel_cap import apply_parallel_cap_from_env +apply_parallel_cap_from_env() +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 +os.environ.setdefault("LOKY_MAX_CPU_COUNT", "8") +os.environ.setdefault("OPENBLAS_NUM_THREADS", "8") +os.environ.setdefault("MKL_NUM_THREADS", "8") +model = TVAE.load("/work/output-Benchmark-trainonly-v1/m4/tvae/tvae-m4-20260504_175331/models_300epochs/tvae_300epochs.pt") +total = 2217 +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-Benchmark-trainonly-v1/m4/tvae/tvae-m4-20260504_175331/tvae-m4-2217-20260504_175349.csv", index=False) +print(f"[TVAE] Generated {total} rows (chunks={len(parts)}) -> /work/output-Benchmark-trainonly-v1/m4/tvae/tvae-m4-20260504_175331/tvae-m4-2217-20260504_175349.csv") diff --git a/hyperparameter/m4/tvae/tvae-m4-20260504_175331/_tvae_train.py b/hyperparameter/m4/tvae/tvae-m4-20260504_175331/_tvae_train.py new file mode 100644 index 0000000000000000000000000000000000000000..72d435e2a4019187fa552c7ef6488a04c198cb74 --- /dev/null +++ b/hyperparameter/m4/tvae/tvae-m4-20260504_175331/_tvae_train.py @@ -0,0 +1,39 @@ +import json, os, sys +sys.path.insert(0, "/work") +from src.SpecificModels.ctgan_joblib_parallel_cap import apply_parallel_cap_from_env +apply_parallel_cap_from_env() +import pandas as pd +from ctgan.data import read_csv +from ctgan.synthesizers.tvae import TVAE + +# Keep transform stage parallelism bounded for stability on shared host. +os.environ.setdefault("LOKY_MAX_CPU_COUNT", "8") +os.environ.setdefault("OPENBLAS_NUM_THREADS", "8") +os.environ.setdefault("MKL_NUM_THREADS", "8") +_nj = (os.environ.get("TVAE_CTGAN_JOBTRANS_N_JOBS") or "").strip() +if _nj: + print("[TVAE] joblib Parallel cap ON, TVAE_CTGAN_JOBTRANS_N_JOBS=" + _nj) +else: + print("[TVAE] joblib Parallel cap OFF (unset TVAE_CTGAN_JOBTRANS_N_JOBS)") +print("[TVAE] LOKY_MAX_CPU_COUNT=" + str(os.environ.get("LOKY_MAX_CPU_COUNT", ""))) + +csv_path = "/work/output-Benchmark-trainonly-v1/m4/tvae/tvae-m4-20260504_175331/staged/public/train.csv" +meta_path = "/work/output-Benchmark-trainonly-v1/m4/tvae/tvae-m4-20260504_175331/tvae_metadata.json" +save_path = "/work/output-Benchmark-trainonly-v1/m4/tvae/tvae-m4-20260504_175331/models_300epochs/tvae_300epochs.pt" +epochs = int(os.environ.get("TVAE_EPOCHS", 300)) +batch_size = int(os.environ.get("TVAE_BATCH_SIZE", "500")) +embedding_dim = int(os.environ.get("TVAE_EMBEDDING_DIM", "128")) +def _parse_dims(name, default): + raw = (os.environ.get(name) or "").strip() + if not raw: + return default + return tuple(int(x.strip()) for x in raw.split(",") if x.strip()) +compress_dims = _parse_dims("TVAE_COMPRESS_DIMS", (128, 128)) +decompress_dims = _parse_dims("TVAE_DECOMPRESS_DIMS", (128, 128)) + +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}, batch_size={batch_size}, embedding_dim={embedding_dim}, compress_dims={compress_dims}, decompress_dims={decompress_dims}") +model = TVAE(epochs=epochs, batch_size=batch_size, embedding_dim=embedding_dim, compress_dims=compress_dims, decompress_dims=decompress_dims) +model.fit(data, discrete_columns) +model.save(save_path) +print(f"[TVAE] Model saved -> {save_path}") diff --git a/hyperparameter/m4/tvae/tvae-m4-20260504_175331/gen_20260504_175349.log b/hyperparameter/m4/tvae/tvae-m4-20260504_175331/gen_20260504_175349.log new file mode 100644 index 0000000000000000000000000000000000000000..d80b9a01a901102579202b4593edb4c4ee21e77f --- /dev/null +++ b/hyperparameter/m4/tvae/tvae-m4-20260504_175331/gen_20260504_175349.log @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:198de309a988fdec10f4dd85fbbc1f0f354ac22664545de9e229b6a40353e304 +size 404 diff --git a/hyperparameter/m4/tvae/tvae-m4-20260504_175331/input_snapshot.json b/hyperparameter/m4/tvae/tvae-m4-20260504_175331/input_snapshot.json new file mode 100644 index 0000000000000000000000000000000000000000..60c34c26acabd61c3c87a32ef8cbe89659d8c727 --- /dev/null +++ b/hyperparameter/m4/tvae/tvae-m4-20260504_175331/input_snapshot.json @@ -0,0 +1,36 @@ +{ + "dataset_id": "m4", + "model": "tvae", + "inputs": { + "train_csv": { + "path": "/data/jialinzhang/SynthesizePipeline-server/DatasetNew/m4/m4-train.csv", + "exists": true, + "size": 92191, + "sha256": "396b9d409ca21bf4a4cd329bdf5b7796aa0ae6356fa8d89b8eb669b5880b81f1" + }, + "val_csv": { + "path": "/data/jialinzhang/SynthesizePipeline-server/DatasetNew/m4/m4-val.csv", + "exists": true, + "size": 11482, + "sha256": "ee3c247d02f56e1687d03c381e13125d6a3a2a411ac7f202ba8520a4be9f1784" + }, + "test_csv": { + "path": "/data/jialinzhang/SynthesizePipeline-server/DatasetNew/m4/m4-test.csv", + "exists": true, + "size": 11559, + "sha256": "cadb9941124001b8fa7cb1ebae43b70a9ca56294f4df4d3c2f22c164c41757d4" + }, + "profile_json": { + "path": "/data/jialinzhang/SynthesizePipeline-server/DatasetNew/artifacts/data_core/tabular/m4/m4-dataset_profile.json", + "exists": true, + "size": 3336, + "sha256": "83e2764810e4a0e8cdece3a28dbd9134b7c9df6f2e56953e46d024ad2c4e035f" + }, + "contract_json": { + "path": "/data/jialinzhang/SynthesizePipeline-server/DatasetNew/artifacts/data_core/tabular/m4/m4-dataset_contract_v1.json", + "exists": true, + "size": 3810, + "sha256": "c23641b258629a845b164099bd0132886f8f6d0100e990494e0f92540f8987d9" + } + } +} \ No newline at end of file diff --git a/hyperparameter/m4/tvae/tvae-m4-20260504_175331/models_300epochs/train_20260504_175331.log b/hyperparameter/m4/tvae/tvae-m4-20260504_175331/models_300epochs/train_20260504_175331.log new file mode 100644 index 0000000000000000000000000000000000000000..84b1f25f76db42e58f5013b6169e84d8a08f70ae --- /dev/null +++ b/hyperparameter/m4/tvae/tvae-m4-20260504_175331/models_300epochs/train_20260504_175331.log @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:ef9355f3042f9be1f1e24f023ec141d00b5472f85f7b583ac3988e3bd9ecf510 +size 614 diff --git a/hyperparameter/m4/tvae/tvae-m4-20260504_175331/models_300epochs/tvae_300epochs.pt b/hyperparameter/m4/tvae/tvae-m4-20260504_175331/models_300epochs/tvae_300epochs.pt new file mode 100644 index 0000000000000000000000000000000000000000..e229cbd8af4127f12660e01a5dc741635c564f0e --- /dev/null +++ b/hyperparameter/m4/tvae/tvae-m4-20260504_175331/models_300epochs/tvae_300epochs.pt @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:f00efa1443d564da74605e9f2b5702368cf97a6e2495daf901b29414f34e9ecf +size 264748 diff --git a/hyperparameter/m4/tvae/tvae-m4-20260504_175331/public_gate/normalized_schema_snapshot.json b/hyperparameter/m4/tvae/tvae-m4-20260504_175331/public_gate/normalized_schema_snapshot.json new file mode 100644 index 0000000000000000000000000000000000000000..31ed9818686b11907df75e872e4ffbe010330880 --- /dev/null +++ b/hyperparameter/m4/tvae/tvae-m4-20260504_175331/public_gate/normalized_schema_snapshot.json @@ -0,0 +1,147 @@ +{ + "dataset_id": "m4", + "target_column": "charges", + "task_type": "regression", + "columns": [ + { + "name": "age", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 47, + "unique_ratio": 0.0212, + "example_values": [ + "46", + "38", + "19", + "27", + "26" + ] + } + }, + { + "name": "sex", + "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.000902, + "example_values": [ + "female", + "male" + ] + } + }, + { + "name": "bmi", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 538, + "unique_ratio": 0.24267, + "example_values": [ + "23.655", + "19.3", + "30.59", + "32.67", + "29.45" + ] + } + }, + { + "name": "children", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 6, + "unique_ratio": 0.002706, + "example_values": [ + "1", + "0", + "3", + "2", + "5" + ] + } + }, + { + "name": "smoker", + "role": "feature", + "semantic_type": "boolean", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 2, + "unique_ratio": 0.000902, + "example_values": [ + "yes", + "no" + ] + } + }, + { + "name": "region", + "role": "feature", + "semantic_type": "categorical", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 4, + "unique_ratio": 0.001804, + "example_values": [ + "northwest", + "southwest", + "southeast", + "northeast" + ] + } + }, + { + "name": "charges", + "role": "target", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 1281, + "unique_ratio": 0.577808, + "example_values": [ + "21677.28345", + "15820.699", + "1639.5631", + "2497.0383", + "2897.3235" + ] + } + } + ] +} \ No newline at end of file diff --git a/hyperparameter/m4/tvae/tvae-m4-20260504_175331/public_gate/public_gate_report.json b/hyperparameter/m4/tvae/tvae-m4-20260504_175331/public_gate/public_gate_report.json new file mode 100644 index 0000000000000000000000000000000000000000..e7a25408e2574124629ea9437356551e4d6f4790 --- /dev/null +++ b/hyperparameter/m4/tvae/tvae-m4-20260504_175331/public_gate/public_gate_report.json @@ -0,0 +1,37 @@ +{ + "dataset_id": "m4", + "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": "charges", + "task_type": "regression", + "input_splits": { + "train": "/data/jialinzhang/SynthesizePipeline-server/DatasetNew/m4/m4-train.csv", + "val": "/data/jialinzhang/SynthesizePipeline-server/DatasetNew/m4/m4-val.csv", + "test": "/data/jialinzhang/SynthesizePipeline-server/DatasetNew/m4/m4-test.csv" + } +} \ No newline at end of file diff --git a/hyperparameter/m4/tvae/tvae-m4-20260504_175331/public_gate/staged_input_manifest.json b/hyperparameter/m4/tvae/tvae-m4-20260504_175331/public_gate/staged_input_manifest.json new file mode 100644 index 0000000000000000000000000000000000000000..1dde719e8651a2477d097a3c5f1c1d7f39230457 --- /dev/null +++ b/hyperparameter/m4/tvae/tvae-m4-20260504_175331/public_gate/staged_input_manifest.json @@ -0,0 +1,152 @@ +{ + "dataset_id": "m4", + "target_column": "charges", + "task_type": "regression", + "train_csv": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/m4/tvae/tvae-m4-20260504_175331/staged/public/train.csv", + "val_csv": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/m4/tvae/tvae-m4-20260504_175331/staged/public/val.csv", + "test_csv": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/m4/tvae/tvae-m4-20260504_175331/staged/public/test.csv", + "features_json": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/m4/tvae/tvae-m4-20260504_175331/staged/public/staged_features.json", + "public_gate_report": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/m4/tvae/tvae-m4-20260504_175331/public_gate/public_gate_report.json", + "column_schema": [ + { + "name": "age", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 47, + "unique_ratio": 0.0212, + "example_values": [ + "46", + "38", + "19", + "27", + "26" + ] + } + }, + { + "name": "sex", + "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.000902, + "example_values": [ + "female", + "male" + ] + } + }, + { + "name": "bmi", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 538, + "unique_ratio": 0.24267, + "example_values": [ + "23.655", + "19.3", + "30.59", + "32.67", + "29.45" + ] + } + }, + { + "name": "children", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 6, + "unique_ratio": 0.002706, + "example_values": [ + "1", + "0", + "3", + "2", + "5" + ] + } + }, + { + "name": "smoker", + "role": "feature", + "semantic_type": "boolean", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 2, + "unique_ratio": 0.000902, + "example_values": [ + "yes", + "no" + ] + } + }, + { + "name": "region", + "role": "feature", + "semantic_type": "categorical", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 4, + "unique_ratio": 0.001804, + "example_values": [ + "northwest", + "southwest", + "southeast", + "northeast" + ] + } + }, + { + "name": "charges", + "role": "target", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 1281, + "unique_ratio": 0.577808, + "example_values": [ + "21677.28345", + "15820.699", + "1639.5631", + "2497.0383", + "2897.3235" + ] + } + } + ] +} \ No newline at end of file diff --git a/hyperparameter/m4/tvae/tvae-m4-20260504_175331/run_config.json b/hyperparameter/m4/tvae/tvae-m4-20260504_175331/run_config.json new file mode 100644 index 0000000000000000000000000000000000000000..71797307e0a97f2af74b7c2cf967ace2547d9bad --- /dev/null +++ b/hyperparameter/m4/tvae/tvae-m4-20260504_175331/run_config.json @@ -0,0 +1,45 @@ +{ + "schema_version": 1, + "recorded_at": "2026-05-04T17:53:31", + "dataset_id": "m4", + "model": "tvae", + "work_dir": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/m4/tvae/tvae-m4-20260504_175331", + "dataset_source_requested": "new", + "dataset_source_resolved": "new", + "cli_args": { + "model": "tvae", + "dataset": "m4", + "dataset_source": "new", + "train": true, + "generate": true, + "num_rows": 0, + "epochs": null, + "output_dir": null, + "model_dir": null, + "work_dir": null, + "resume": false, + "no_stats": false + }, + "resolved": { + "num_rows": 2217, + "model_path": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/m4/tvae/tvae-m4-20260504_175331/models_300epochs/tvae_300epochs.pt", + "output_csv": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/m4/tvae/tvae-m4-20260504_175331/tvae-m4-2217-20260504_175349.csv" + }, + "input_artifacts": { + "public_gate_report": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/m4/tvae/tvae-m4-20260504_175331/public_gate/public_gate_report.json", + "public_manifest": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/m4/tvae/tvae-m4-20260504_175331/public_gate/staged_input_manifest.json", + "model_manifest": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/m4/tvae/tvae-m4-20260504_175331/staged/tvae/model_input_manifest.json", + "train_csv": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/m4/tvae/tvae-m4-20260504_175331/staged/public/train.csv", + "features_json": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/m4/tvae/tvae-m4-20260504_175331/staged/public/staged_features.json", + "target_column": "charges", + "task_type": "regression" + }, + "env_overrides": { + "BENCHMARK_TVAE_GPUS": "device=3", + "TVAE_BATCH_SIZE": "256", + "TVAE_COMPRESS_DIMS": "64,64", + "TVAE_DECOMPRESS_DIMS": "64,64", + "TVAE_EMBEDDING_DIM": "32", + "TVAE_EPOCHS": "100" + } +} \ No newline at end of file diff --git a/hyperparameter/m4/tvae/tvae-m4-20260504_175331/runtime_result.json b/hyperparameter/m4/tvae/tvae-m4-20260504_175331/runtime_result.json new file mode 100644 index 0000000000000000000000000000000000000000..8d9fff1d4d3a73f0ab5c57ec96df348e154dbb2f --- /dev/null +++ b/hyperparameter/m4/tvae/tvae-m4-20260504_175331/runtime_result.json @@ -0,0 +1,27 @@ +{ + "dataset_id": "m4", + "model": "tvae", + "run_id": "tvae-m4-20260504_175331", + "public_gate_status": "pass", + "adapter_ready_status": "pass", + "train_status": "success", + "generate_status": "success", + "reason_code": null, + "reason_detail": null, + "artifacts": { + "synthetic_csv": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/m4/tvae/tvae-m4-20260504_175331/tvae-m4-2217-20260504_175349.csv", + "model_path": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/m4/tvae/tvae-m4-20260504_175331/models_300epochs/tvae_300epochs.pt" + }, + "timings": { + "train": { + "started_at": "2026-05-04T17:53:31", + "ended_at": "2026-05-04T17:53:49", + "duration_sec": 18.291 + }, + "generate": { + "started_at": "2026-05-04T17:53:49", + "ended_at": "2026-05-04T17:53:54", + "duration_sec": 4.931 + } + } +} \ No newline at end of file diff --git a/hyperparameter/m4/tvae/tvae-m4-20260504_175331/staged/public/staged_features.json b/hyperparameter/m4/tvae/tvae-m4-20260504_175331/staged/public/staged_features.json new file mode 100644 index 0000000000000000000000000000000000000000..d6acd098c35111f423f3ffff2cfd1754bc5dfebc --- /dev/null +++ b/hyperparameter/m4/tvae/tvae-m4-20260504_175331/staged/public/staged_features.json @@ -0,0 +1,37 @@ +[ + { + "feature_name": "age", + "data_type": "continuous", + "is_target": false + }, + { + "feature_name": "sex", + "data_type": "categorical", + "is_target": false + }, + { + "feature_name": "bmi", + "data_type": "continuous", + "is_target": false + }, + { + "feature_name": "children", + "data_type": "continuous", + "is_target": false + }, + { + "feature_name": "smoker", + "data_type": "binary", + "is_target": false + }, + { + "feature_name": "region", + "data_type": "categorical", + "is_target": false + }, + { + "feature_name": "charges", + "data_type": "continuous", + "is_target": true + } +] \ No newline at end of file diff --git a/hyperparameter/m4/tvae/tvae-m4-20260504_175331/staged/public/test.csv b/hyperparameter/m4/tvae/tvae-m4-20260504_175331/staged/public/test.csv new file mode 100644 index 0000000000000000000000000000000000000000..c88a2e7cfcd715bb421cb56eb078033da45c4dc8 --- /dev/null +++ b/hyperparameter/m4/tvae/tvae-m4-20260504_175331/staged/public/test.csv @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:4c541b677fb2d45c5bc79338eeee9fd8c91484b195a0c2c546c2fbabf113b7ea +size 11298 diff --git a/hyperparameter/m4/tvae/tvae-m4-20260504_175331/staged/public/train.csv b/hyperparameter/m4/tvae/tvae-m4-20260504_175331/staged/public/train.csv new file mode 100644 index 0000000000000000000000000000000000000000..5a05019d786529e0617291766c4fbe016ca01bf5 --- /dev/null +++ b/hyperparameter/m4/tvae/tvae-m4-20260504_175331/staged/public/train.csv @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:614ebfac5f41d6f661aff675fa18c0f933a8d9bcc77ea71b7b2360c2f0155837 +size 90069 diff --git a/hyperparameter/m4/tvae/tvae-m4-20260504_175331/staged/public/val.csv b/hyperparameter/m4/tvae/tvae-m4-20260504_175331/staged/public/val.csv new file mode 100644 index 0000000000000000000000000000000000000000..d78fe5ad1537c437ba9ac2629f2aa60a6c17e708 --- /dev/null +++ b/hyperparameter/m4/tvae/tvae-m4-20260504_175331/staged/public/val.csv @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:e55f5edbe7942ff01630de91a9c70dfbc6445eba76c7b970350364546b67c2d7 +size 11218 diff --git a/hyperparameter/m4/tvae/tvae-m4-20260504_175331/staged/tvae/adapter_report.json b/hyperparameter/m4/tvae/tvae-m4-20260504_175331/staged/tvae/adapter_report.json new file mode 100644 index 0000000000000000000000000000000000000000..470c1d0d8debe339dfbb1574cee4a3eafe1c899e --- /dev/null +++ b/hyperparameter/m4/tvae/tvae-m4-20260504_175331/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-Benchmark-trainonly-v1/m4/tvae/tvae-m4-20260504_175331/staged/tvae/model_input_manifest.json" +} \ No newline at end of file diff --git a/hyperparameter/m4/tvae/tvae-m4-20260504_175331/staged/tvae/adapter_transforms_applied.json b/hyperparameter/m4/tvae/tvae-m4-20260504_175331/staged/tvae/adapter_transforms_applied.json new file mode 100644 index 0000000000000000000000000000000000000000..0637a088a01e8ddab3bf3fa98dbe804cbde1a0dc --- /dev/null +++ b/hyperparameter/m4/tvae/tvae-m4-20260504_175331/staged/tvae/adapter_transforms_applied.json @@ -0,0 +1 @@ +[] \ No newline at end of file diff --git a/hyperparameter/m4/tvae/tvae-m4-20260504_175331/staged/tvae/model_input_manifest.json b/hyperparameter/m4/tvae/tvae-m4-20260504_175331/staged/tvae/model_input_manifest.json new file mode 100644 index 0000000000000000000000000000000000000000..a10b01ee4c8705e73edbac3554347b0446b4fbd4 --- /dev/null +++ b/hyperparameter/m4/tvae/tvae-m4-20260504_175331/staged/tvae/model_input_manifest.json @@ -0,0 +1,154 @@ +{ + "dataset_id": "m4", + "model": "tvae", + "target_column": "charges", + "task_type": "regression", + "column_schema": [ + { + "name": "age", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 47, + "unique_ratio": 0.0212, + "example_values": [ + "46", + "38", + "19", + "27", + "26" + ] + } + }, + { + "name": "sex", + "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.000902, + "example_values": [ + "female", + "male" + ] + } + }, + { + "name": "bmi", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 538, + "unique_ratio": 0.24267, + "example_values": [ + "23.655", + "19.3", + "30.59", + "32.67", + "29.45" + ] + } + }, + { + "name": "children", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 6, + "unique_ratio": 0.002706, + "example_values": [ + "1", + "0", + "3", + "2", + "5" + ] + } + }, + { + "name": "smoker", + "role": "feature", + "semantic_type": "boolean", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 2, + "unique_ratio": 0.000902, + "example_values": [ + "yes", + "no" + ] + } + }, + { + "name": "region", + "role": "feature", + "semantic_type": "categorical", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 4, + "unique_ratio": 0.001804, + "example_values": [ + "northwest", + "southwest", + "southeast", + "northeast" + ] + } + }, + { + "name": "charges", + "role": "target", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 1281, + "unique_ratio": 0.577808, + "example_values": [ + "21677.28345", + "15820.699", + "1639.5631", + "2497.0383", + "2897.3235" + ] + } + } + ], + "public_manifest": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/m4/tvae/tvae-m4-20260504_175331/public_gate/staged_input_manifest.json", + "train_csv": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/m4/tvae/tvae-m4-20260504_175331/staged/public/train.csv", + "val_csv": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/m4/tvae/tvae-m4-20260504_175331/staged/public/val.csv", + "test_csv": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/m4/tvae/tvae-m4-20260504_175331/staged/public/test.csv", + "features_json": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/m4/tvae/tvae-m4-20260504_175331/staged/public/staged_features.json", + "public_gate_report": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/m4/tvae/tvae-m4-20260504_175331/public_gate/public_gate_report.json" +} \ No newline at end of file diff --git a/hyperparameter/m4/tvae/tvae-m4-20260504_175331/tvae-m4-2217-20260504_175349.csv b/hyperparameter/m4/tvae/tvae-m4-20260504_175331/tvae-m4-2217-20260504_175349.csv new file mode 100644 index 0000000000000000000000000000000000000000..b4180a57b42d16ad5884478676d597804f2a2abc --- /dev/null +++ b/hyperparameter/m4/tvae/tvae-m4-20260504_175331/tvae-m4-2217-20260504_175349.csv @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:b3901b669115b3a46120c956bc92e368c0b0ebe459743844f643091b7d2c6b1c +size 135479 diff --git a/hyperparameter/m4/tvae/tvae-m4-20260504_175331/tvae_metadata.json b/hyperparameter/m4/tvae/tvae-m4-20260504_175331/tvae_metadata.json new file mode 100644 index 0000000000000000000000000000000000000000..d89b1e0b3095638c982d4d3321d21a8bedcd33ae --- /dev/null +++ b/hyperparameter/m4/tvae/tvae-m4-20260504_175331/tvae_metadata.json @@ -0,0 +1,32 @@ +{ + "columns": [ + { + "name": "age", + "type": "continuous" + }, + { + "name": "sex", + "type": "categorical" + }, + { + "name": "bmi", + "type": "continuous" + }, + { + "name": "children", + "type": "continuous" + }, + { + "name": "smoker", + "type": "categorical" + }, + { + "name": "region", + "type": "categorical" + }, + { + "name": "charges", + "type": "continuous" + } + ] +} \ No newline at end of file diff --git a/hyperparameter/m4/tvae/tvae-m4-20260504_175407/_tvae_generate.py b/hyperparameter/m4/tvae/tvae-m4-20260504_175407/_tvae_generate.py new file mode 100644 index 0000000000000000000000000000000000000000..ce22b690c0cf1d6a0c43dff49a21a99b4a9955a0 --- /dev/null +++ b/hyperparameter/m4/tvae/tvae-m4-20260504_175407/_tvae_generate.py @@ -0,0 +1,23 @@ +import os, sys +sys.path.insert(0, "/work") +from src.SpecificModels.ctgan_joblib_parallel_cap import apply_parallel_cap_from_env +apply_parallel_cap_from_env() +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 +os.environ.setdefault("LOKY_MAX_CPU_COUNT", "8") +os.environ.setdefault("OPENBLAS_NUM_THREADS", "8") +os.environ.setdefault("MKL_NUM_THREADS", "8") +model = TVAE.load("/work/output-Benchmark-trainonly-v1/m4/tvae/tvae-m4-20260504_175407/models_300epochs/tvae_300epochs.pt") +total = 2217 +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-Benchmark-trainonly-v1/m4/tvae/tvae-m4-20260504_175407/tvae-m4-2217-20260504_175431.csv", index=False) +print(f"[TVAE] Generated {total} rows (chunks={len(parts)}) -> /work/output-Benchmark-trainonly-v1/m4/tvae/tvae-m4-20260504_175407/tvae-m4-2217-20260504_175431.csv") diff --git a/hyperparameter/m4/tvae/tvae-m4-20260504_175407/_tvae_train.py b/hyperparameter/m4/tvae/tvae-m4-20260504_175407/_tvae_train.py new file mode 100644 index 0000000000000000000000000000000000000000..d145109f933ae3ccfbc8e5969da96387a97fcd43 --- /dev/null +++ b/hyperparameter/m4/tvae/tvae-m4-20260504_175407/_tvae_train.py @@ -0,0 +1,39 @@ +import json, os, sys +sys.path.insert(0, "/work") +from src.SpecificModels.ctgan_joblib_parallel_cap import apply_parallel_cap_from_env +apply_parallel_cap_from_env() +import pandas as pd +from ctgan.data import read_csv +from ctgan.synthesizers.tvae import TVAE + +# Keep transform stage parallelism bounded for stability on shared host. +os.environ.setdefault("LOKY_MAX_CPU_COUNT", "8") +os.environ.setdefault("OPENBLAS_NUM_THREADS", "8") +os.environ.setdefault("MKL_NUM_THREADS", "8") +_nj = (os.environ.get("TVAE_CTGAN_JOBTRANS_N_JOBS") or "").strip() +if _nj: + print("[TVAE] joblib Parallel cap ON, TVAE_CTGAN_JOBTRANS_N_JOBS=" + _nj) +else: + print("[TVAE] joblib Parallel cap OFF (unset TVAE_CTGAN_JOBTRANS_N_JOBS)") +print("[TVAE] LOKY_MAX_CPU_COUNT=" + str(os.environ.get("LOKY_MAX_CPU_COUNT", ""))) + +csv_path = "/work/output-Benchmark-trainonly-v1/m4/tvae/tvae-m4-20260504_175407/staged/public/train.csv" +meta_path = "/work/output-Benchmark-trainonly-v1/m4/tvae/tvae-m4-20260504_175407/tvae_metadata.json" +save_path = "/work/output-Benchmark-trainonly-v1/m4/tvae/tvae-m4-20260504_175407/models_300epochs/tvae_300epochs.pt" +epochs = int(os.environ.get("TVAE_EPOCHS", 300)) +batch_size = int(os.environ.get("TVAE_BATCH_SIZE", "500")) +embedding_dim = int(os.environ.get("TVAE_EMBEDDING_DIM", "128")) +def _parse_dims(name, default): + raw = (os.environ.get(name) or "").strip() + if not raw: + return default + return tuple(int(x.strip()) for x in raw.split(",") if x.strip()) +compress_dims = _parse_dims("TVAE_COMPRESS_DIMS", (128, 128)) +decompress_dims = _parse_dims("TVAE_DECOMPRESS_DIMS", (128, 128)) + +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}, batch_size={batch_size}, embedding_dim={embedding_dim}, compress_dims={compress_dims}, decompress_dims={decompress_dims}") +model = TVAE(epochs=epochs, batch_size=batch_size, embedding_dim=embedding_dim, compress_dims=compress_dims, decompress_dims=decompress_dims) +model.fit(data, discrete_columns) +model.save(save_path) +print(f"[TVAE] Model saved -> {save_path}") diff --git a/hyperparameter/m4/tvae/tvae-m4-20260504_175407/gen_20260504_175431.log b/hyperparameter/m4/tvae/tvae-m4-20260504_175407/gen_20260504_175431.log new file mode 100644 index 0000000000000000000000000000000000000000..7a2bdd2a830702ca913ec67da6b9cb26556e1acc --- /dev/null +++ b/hyperparameter/m4/tvae/tvae-m4-20260504_175407/gen_20260504_175431.log @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:2d559e320b3bee74da788cc285a06ae8720e75230a0db1eb51ca71e53784f832 +size 404 diff --git a/hyperparameter/m4/tvae/tvae-m4-20260504_175407/input_snapshot.json b/hyperparameter/m4/tvae/tvae-m4-20260504_175407/input_snapshot.json new file mode 100644 index 0000000000000000000000000000000000000000..60c34c26acabd61c3c87a32ef8cbe89659d8c727 --- /dev/null +++ b/hyperparameter/m4/tvae/tvae-m4-20260504_175407/input_snapshot.json @@ -0,0 +1,36 @@ +{ + "dataset_id": "m4", + "model": "tvae", + "inputs": { + "train_csv": { + "path": "/data/jialinzhang/SynthesizePipeline-server/DatasetNew/m4/m4-train.csv", + "exists": true, + "size": 92191, + "sha256": "396b9d409ca21bf4a4cd329bdf5b7796aa0ae6356fa8d89b8eb669b5880b81f1" + }, + "val_csv": { + "path": "/data/jialinzhang/SynthesizePipeline-server/DatasetNew/m4/m4-val.csv", + "exists": true, + "size": 11482, + "sha256": "ee3c247d02f56e1687d03c381e13125d6a3a2a411ac7f202ba8520a4be9f1784" + }, + "test_csv": { + "path": "/data/jialinzhang/SynthesizePipeline-server/DatasetNew/m4/m4-test.csv", + "exists": true, + "size": 11559, + "sha256": "cadb9941124001b8fa7cb1ebae43b70a9ca56294f4df4d3c2f22c164c41757d4" + }, + "profile_json": { + "path": "/data/jialinzhang/SynthesizePipeline-server/DatasetNew/artifacts/data_core/tabular/m4/m4-dataset_profile.json", + "exists": true, + "size": 3336, + "sha256": "83e2764810e4a0e8cdece3a28dbd9134b7c9df6f2e56953e46d024ad2c4e035f" + }, + "contract_json": { + "path": "/data/jialinzhang/SynthesizePipeline-server/DatasetNew/artifacts/data_core/tabular/m4/m4-dataset_contract_v1.json", + "exists": true, + "size": 3810, + "sha256": "c23641b258629a845b164099bd0132886f8f6d0100e990494e0f92540f8987d9" + } + } +} \ No newline at end of file diff --git a/hyperparameter/m4/tvae/tvae-m4-20260504_175407/models_300epochs/train_20260504_175407.log b/hyperparameter/m4/tvae/tvae-m4-20260504_175407/models_300epochs/train_20260504_175407.log new file mode 100644 index 0000000000000000000000000000000000000000..bf83b297fb071d15ff04372380dabc4196db60fb --- /dev/null +++ b/hyperparameter/m4/tvae/tvae-m4-20260504_175407/models_300epochs/train_20260504_175407.log @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:ff90102b17458f07ebfe6886f6d8c47f1fc7cc1fcc52d06a233551c0e38f3ad7 +size 618 diff --git a/hyperparameter/m4/tvae/tvae-m4-20260504_175407/models_300epochs/tvae_300epochs.pt b/hyperparameter/m4/tvae/tvae-m4-20260504_175407/models_300epochs/tvae_300epochs.pt new file mode 100644 index 0000000000000000000000000000000000000000..be3d93001c2e864bd637815838434984f24da1b3 --- /dev/null +++ b/hyperparameter/m4/tvae/tvae-m4-20260504_175407/models_300epochs/tvae_300epochs.pt @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:c165ac7b339973e99bbef1131338c6c945532187a0e2bbfd9de49bc2313bbe68 +size 374508 diff --git a/hyperparameter/m4/tvae/tvae-m4-20260504_175407/public_gate/normalized_schema_snapshot.json b/hyperparameter/m4/tvae/tvae-m4-20260504_175407/public_gate/normalized_schema_snapshot.json new file mode 100644 index 0000000000000000000000000000000000000000..31ed9818686b11907df75e872e4ffbe010330880 --- /dev/null +++ b/hyperparameter/m4/tvae/tvae-m4-20260504_175407/public_gate/normalized_schema_snapshot.json @@ -0,0 +1,147 @@ +{ + "dataset_id": "m4", + "target_column": "charges", + "task_type": "regression", + "columns": [ + { + "name": "age", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 47, + "unique_ratio": 0.0212, + "example_values": [ + "46", + "38", + "19", + "27", + "26" + ] + } + }, + { + "name": "sex", + "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.000902, + "example_values": [ + "female", + "male" + ] + } + }, + { + "name": "bmi", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 538, + "unique_ratio": 0.24267, + "example_values": [ + "23.655", + "19.3", + "30.59", + "32.67", + "29.45" + ] + } + }, + { + "name": "children", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 6, + "unique_ratio": 0.002706, + "example_values": [ + "1", + "0", + "3", + "2", + "5" + ] + } + }, + { + "name": "smoker", + "role": "feature", + "semantic_type": "boolean", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 2, + "unique_ratio": 0.000902, + "example_values": [ + "yes", + "no" + ] + } + }, + { + "name": "region", + "role": "feature", + "semantic_type": "categorical", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 4, + "unique_ratio": 0.001804, + "example_values": [ + "northwest", + "southwest", + "southeast", + "northeast" + ] + } + }, + { + "name": "charges", + "role": "target", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 1281, + "unique_ratio": 0.577808, + "example_values": [ + "21677.28345", + "15820.699", + "1639.5631", + "2497.0383", + "2897.3235" + ] + } + } + ] +} \ No newline at end of file diff --git a/hyperparameter/m4/tvae/tvae-m4-20260504_175407/public_gate/public_gate_report.json b/hyperparameter/m4/tvae/tvae-m4-20260504_175407/public_gate/public_gate_report.json new file mode 100644 index 0000000000000000000000000000000000000000..e7a25408e2574124629ea9437356551e4d6f4790 --- /dev/null +++ b/hyperparameter/m4/tvae/tvae-m4-20260504_175407/public_gate/public_gate_report.json @@ -0,0 +1,37 @@ +{ + "dataset_id": "m4", + "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": "charges", + "task_type": "regression", + "input_splits": { + "train": "/data/jialinzhang/SynthesizePipeline-server/DatasetNew/m4/m4-train.csv", + "val": "/data/jialinzhang/SynthesizePipeline-server/DatasetNew/m4/m4-val.csv", + "test": "/data/jialinzhang/SynthesizePipeline-server/DatasetNew/m4/m4-test.csv" + } +} \ No newline at end of file diff --git a/hyperparameter/m4/tvae/tvae-m4-20260504_175407/public_gate/staged_input_manifest.json b/hyperparameter/m4/tvae/tvae-m4-20260504_175407/public_gate/staged_input_manifest.json new file mode 100644 index 0000000000000000000000000000000000000000..eb0801ec96685c9a9fbae813d6242ec57c5340d2 --- /dev/null +++ b/hyperparameter/m4/tvae/tvae-m4-20260504_175407/public_gate/staged_input_manifest.json @@ -0,0 +1,152 @@ +{ + "dataset_id": "m4", + "target_column": "charges", + "task_type": "regression", + "train_csv": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/m4/tvae/tvae-m4-20260504_175407/staged/public/train.csv", + "val_csv": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/m4/tvae/tvae-m4-20260504_175407/staged/public/val.csv", + "test_csv": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/m4/tvae/tvae-m4-20260504_175407/staged/public/test.csv", + "features_json": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/m4/tvae/tvae-m4-20260504_175407/staged/public/staged_features.json", + "public_gate_report": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/m4/tvae/tvae-m4-20260504_175407/public_gate/public_gate_report.json", + "column_schema": [ + { + "name": "age", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 47, + "unique_ratio": 0.0212, + "example_values": [ + "46", + "38", + "19", + "27", + "26" + ] + } + }, + { + "name": "sex", + "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.000902, + "example_values": [ + "female", + "male" + ] + } + }, + { + "name": "bmi", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 538, + "unique_ratio": 0.24267, + "example_values": [ + "23.655", + "19.3", + "30.59", + "32.67", + "29.45" + ] + } + }, + { + "name": "children", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 6, + "unique_ratio": 0.002706, + "example_values": [ + "1", + "0", + "3", + "2", + "5" + ] + } + }, + { + "name": "smoker", + "role": "feature", + "semantic_type": "boolean", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 2, + "unique_ratio": 0.000902, + "example_values": [ + "yes", + "no" + ] + } + }, + { + "name": "region", + "role": "feature", + "semantic_type": "categorical", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 4, + "unique_ratio": 0.001804, + "example_values": [ + "northwest", + "southwest", + "southeast", + "northeast" + ] + } + }, + { + "name": "charges", + "role": "target", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 1281, + "unique_ratio": 0.577808, + "example_values": [ + "21677.28345", + "15820.699", + "1639.5631", + "2497.0383", + "2897.3235" + ] + } + } + ] +} \ No newline at end of file diff --git a/hyperparameter/m4/tvae/tvae-m4-20260504_175407/run_config.json b/hyperparameter/m4/tvae/tvae-m4-20260504_175407/run_config.json new file mode 100644 index 0000000000000000000000000000000000000000..85e0fb54421528c038fb188663a3ffb8c0a503c0 --- /dev/null +++ b/hyperparameter/m4/tvae/tvae-m4-20260504_175407/run_config.json @@ -0,0 +1,45 @@ +{ + "schema_version": 1, + "recorded_at": "2026-05-04T17:54:07", + "dataset_id": "m4", + "model": "tvae", + "work_dir": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/m4/tvae/tvae-m4-20260504_175407", + "dataset_source_requested": "new", + "dataset_source_resolved": "new", + "cli_args": { + "model": "tvae", + "dataset": "m4", + "dataset_source": "new", + "train": true, + "generate": true, + "num_rows": 0, + "epochs": null, + "output_dir": null, + "model_dir": null, + "work_dir": null, + "resume": false, + "no_stats": false + }, + "resolved": { + "num_rows": 2217, + "model_path": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/m4/tvae/tvae-m4-20260504_175407/models_300epochs/tvae_300epochs.pt", + "output_csv": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/m4/tvae/tvae-m4-20260504_175407/tvae-m4-2217-20260504_175431.csv" + }, + "input_artifacts": { + "public_gate_report": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/m4/tvae/tvae-m4-20260504_175407/public_gate/public_gate_report.json", + "public_manifest": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/m4/tvae/tvae-m4-20260504_175407/public_gate/staged_input_manifest.json", + "model_manifest": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/m4/tvae/tvae-m4-20260504_175407/staged/tvae/model_input_manifest.json", + "train_csv": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/m4/tvae/tvae-m4-20260504_175407/staged/public/train.csv", + "features_json": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/m4/tvae/tvae-m4-20260504_175407/staged/public/staged_features.json", + "target_column": "charges", + "task_type": "regression" + }, + "env_overrides": { + "BENCHMARK_TVAE_GPUS": "device=3", + "TVAE_BATCH_SIZE": "256", + "TVAE_COMPRESS_DIMS": "128,128", + "TVAE_DECOMPRESS_DIMS": "128,128", + "TVAE_EMBEDDING_DIM": "64", + "TVAE_EPOCHS": "200" + } +} \ No newline at end of file diff --git a/hyperparameter/m4/tvae/tvae-m4-20260504_175407/runtime_result.json b/hyperparameter/m4/tvae/tvae-m4-20260504_175407/runtime_result.json new file mode 100644 index 0000000000000000000000000000000000000000..8155ff06da6f1b94c81f9bec4b973b83ff1680c5 --- /dev/null +++ b/hyperparameter/m4/tvae/tvae-m4-20260504_175407/runtime_result.json @@ -0,0 +1,27 @@ +{ + "dataset_id": "m4", + "model": "tvae", + "run_id": "tvae-m4-20260504_175407", + "public_gate_status": "pass", + "adapter_ready_status": "pass", + "train_status": "success", + "generate_status": "success", + "reason_code": null, + "reason_detail": null, + "artifacts": { + "synthetic_csv": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/m4/tvae/tvae-m4-20260504_175407/tvae-m4-2217-20260504_175431.csv", + "model_path": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/m4/tvae/tvae-m4-20260504_175407/models_300epochs/tvae_300epochs.pt" + }, + "timings": { + "train": { + "started_at": "2026-05-04T17:54:07", + "ended_at": "2026-05-04T17:54:31", + "duration_sec": 23.982 + }, + "generate": { + "started_at": "2026-05-04T17:54:31", + "ended_at": "2026-05-04T17:54:37", + "duration_sec": 5.22 + } + } +} \ No newline at end of file diff --git a/hyperparameter/m4/tvae/tvae-m4-20260504_175407/staged/public/staged_features.json b/hyperparameter/m4/tvae/tvae-m4-20260504_175407/staged/public/staged_features.json new file mode 100644 index 0000000000000000000000000000000000000000..d6acd098c35111f423f3ffff2cfd1754bc5dfebc --- /dev/null +++ b/hyperparameter/m4/tvae/tvae-m4-20260504_175407/staged/public/staged_features.json @@ -0,0 +1,37 @@ +[ + { + "feature_name": "age", + "data_type": "continuous", + "is_target": false + }, + { + "feature_name": "sex", + "data_type": "categorical", + "is_target": false + }, + { + "feature_name": "bmi", + "data_type": "continuous", + "is_target": false + }, + { + "feature_name": "children", + "data_type": "continuous", + "is_target": false + }, + { + "feature_name": "smoker", + "data_type": "binary", + "is_target": false + }, + { + "feature_name": "region", + "data_type": "categorical", + "is_target": false + }, + { + "feature_name": "charges", + "data_type": "continuous", + "is_target": true + } +] \ No newline at end of file diff --git a/hyperparameter/m4/tvae/tvae-m4-20260504_175407/staged/public/test.csv b/hyperparameter/m4/tvae/tvae-m4-20260504_175407/staged/public/test.csv new file mode 100644 index 0000000000000000000000000000000000000000..c88a2e7cfcd715bb421cb56eb078033da45c4dc8 --- /dev/null +++ b/hyperparameter/m4/tvae/tvae-m4-20260504_175407/staged/public/test.csv @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:4c541b677fb2d45c5bc79338eeee9fd8c91484b195a0c2c546c2fbabf113b7ea +size 11298 diff --git a/hyperparameter/m4/tvae/tvae-m4-20260504_175407/staged/public/train.csv b/hyperparameter/m4/tvae/tvae-m4-20260504_175407/staged/public/train.csv new file mode 100644 index 0000000000000000000000000000000000000000..5a05019d786529e0617291766c4fbe016ca01bf5 --- /dev/null +++ b/hyperparameter/m4/tvae/tvae-m4-20260504_175407/staged/public/train.csv @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:614ebfac5f41d6f661aff675fa18c0f933a8d9bcc77ea71b7b2360c2f0155837 +size 90069 diff --git a/hyperparameter/m4/tvae/tvae-m4-20260504_175407/staged/public/val.csv b/hyperparameter/m4/tvae/tvae-m4-20260504_175407/staged/public/val.csv new file mode 100644 index 0000000000000000000000000000000000000000..d78fe5ad1537c437ba9ac2629f2aa60a6c17e708 --- /dev/null +++ b/hyperparameter/m4/tvae/tvae-m4-20260504_175407/staged/public/val.csv @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:e55f5edbe7942ff01630de91a9c70dfbc6445eba76c7b970350364546b67c2d7 +size 11218 diff --git a/hyperparameter/m4/tvae/tvae-m4-20260504_175407/staged/tvae/adapter_report.json b/hyperparameter/m4/tvae/tvae-m4-20260504_175407/staged/tvae/adapter_report.json new file mode 100644 index 0000000000000000000000000000000000000000..d3ceab1d24b3a337a6729c31a8caf961eecd2506 --- /dev/null +++ b/hyperparameter/m4/tvae/tvae-m4-20260504_175407/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-Benchmark-trainonly-v1/m4/tvae/tvae-m4-20260504_175407/staged/tvae/model_input_manifest.json" +} \ No newline at end of file diff --git a/hyperparameter/m4/tvae/tvae-m4-20260504_175407/staged/tvae/adapter_transforms_applied.json b/hyperparameter/m4/tvae/tvae-m4-20260504_175407/staged/tvae/adapter_transforms_applied.json new file mode 100644 index 0000000000000000000000000000000000000000..0637a088a01e8ddab3bf3fa98dbe804cbde1a0dc --- /dev/null +++ b/hyperparameter/m4/tvae/tvae-m4-20260504_175407/staged/tvae/adapter_transforms_applied.json @@ -0,0 +1 @@ +[] \ No newline at end of file diff --git a/hyperparameter/m4/tvae/tvae-m4-20260504_175407/staged/tvae/model_input_manifest.json b/hyperparameter/m4/tvae/tvae-m4-20260504_175407/staged/tvae/model_input_manifest.json new file mode 100644 index 0000000000000000000000000000000000000000..77943e13a9d58931e45134d53195514fa45fbec9 --- /dev/null +++ b/hyperparameter/m4/tvae/tvae-m4-20260504_175407/staged/tvae/model_input_manifest.json @@ -0,0 +1,154 @@ +{ + "dataset_id": "m4", + "model": "tvae", + "target_column": "charges", + "task_type": "regression", + "column_schema": [ + { + "name": "age", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 47, + "unique_ratio": 0.0212, + "example_values": [ + "46", + "38", + "19", + "27", + "26" + ] + } + }, + { + "name": "sex", + "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.000902, + "example_values": [ + "female", + "male" + ] + } + }, + { + "name": "bmi", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 538, + "unique_ratio": 0.24267, + "example_values": [ + "23.655", + "19.3", + "30.59", + "32.67", + "29.45" + ] + } + }, + { + "name": "children", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 6, + "unique_ratio": 0.002706, + "example_values": [ + "1", + "0", + "3", + "2", + "5" + ] + } + }, + { + "name": "smoker", + "role": "feature", + "semantic_type": "boolean", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 2, + "unique_ratio": 0.000902, + "example_values": [ + "yes", + "no" + ] + } + }, + { + "name": "region", + "role": "feature", + "semantic_type": "categorical", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 4, + "unique_ratio": 0.001804, + "example_values": [ + "northwest", + "southwest", + "southeast", + "northeast" + ] + } + }, + { + "name": "charges", + "role": "target", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 1281, + "unique_ratio": 0.577808, + "example_values": [ + "21677.28345", + "15820.699", + "1639.5631", + "2497.0383", + "2897.3235" + ] + } + } + ], + "public_manifest": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/m4/tvae/tvae-m4-20260504_175407/public_gate/staged_input_manifest.json", + "train_csv": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/m4/tvae/tvae-m4-20260504_175407/staged/public/train.csv", + "val_csv": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/m4/tvae/tvae-m4-20260504_175407/staged/public/val.csv", + "test_csv": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/m4/tvae/tvae-m4-20260504_175407/staged/public/test.csv", + "features_json": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/m4/tvae/tvae-m4-20260504_175407/staged/public/staged_features.json", + "public_gate_report": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/m4/tvae/tvae-m4-20260504_175407/public_gate/public_gate_report.json" +} \ No newline at end of file diff --git a/hyperparameter/m4/tvae/tvae-m4-20260504_175407/tvae-m4-2217-20260504_175431.csv b/hyperparameter/m4/tvae/tvae-m4-20260504_175407/tvae-m4-2217-20260504_175431.csv new file mode 100644 index 0000000000000000000000000000000000000000..6782c785f5ba68b4490045ef62ffb08322d5d0f1 --- /dev/null +++ b/hyperparameter/m4/tvae/tvae-m4-20260504_175407/tvae-m4-2217-20260504_175431.csv @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:d1beaf0f631c81739f92d94d2b563d598045876727c2857bc5d562accd79a344 +size 135440 diff --git a/hyperparameter/m4/tvae/tvae-m4-20260504_175407/tvae_metadata.json b/hyperparameter/m4/tvae/tvae-m4-20260504_175407/tvae_metadata.json new file mode 100644 index 0000000000000000000000000000000000000000..d89b1e0b3095638c982d4d3321d21a8bedcd33ae --- /dev/null +++ b/hyperparameter/m4/tvae/tvae-m4-20260504_175407/tvae_metadata.json @@ -0,0 +1,32 @@ +{ + "columns": [ + { + "name": "age", + "type": "continuous" + }, + { + "name": "sex", + "type": "categorical" + }, + { + "name": "bmi", + "type": "continuous" + }, + { + "name": "children", + "type": "continuous" + }, + { + "name": "smoker", + "type": "categorical" + }, + { + "name": "region", + "type": "categorical" + }, + { + "name": "charges", + "type": "continuous" + } + ] +} \ No newline at end of file diff --git a/hyperparameter/m4/tvae/tvae-m4-20260504_175449/_tvae_generate.py b/hyperparameter/m4/tvae/tvae-m4-20260504_175449/_tvae_generate.py new file mode 100644 index 0000000000000000000000000000000000000000..8ce529c5975d8135d8bc87e2d902ce1cd0a5fab7 --- /dev/null +++ b/hyperparameter/m4/tvae/tvae-m4-20260504_175449/_tvae_generate.py @@ -0,0 +1,23 @@ +import os, sys +sys.path.insert(0, "/work") +from src.SpecificModels.ctgan_joblib_parallel_cap import apply_parallel_cap_from_env +apply_parallel_cap_from_env() +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 +os.environ.setdefault("LOKY_MAX_CPU_COUNT", "8") +os.environ.setdefault("OPENBLAS_NUM_THREADS", "8") +os.environ.setdefault("MKL_NUM_THREADS", "8") +model = TVAE.load("/work/output-Benchmark-trainonly-v1/m4/tvae/tvae-m4-20260504_175449/models_300epochs/tvae_300epochs.pt") +total = 2217 +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-Benchmark-trainonly-v1/m4/tvae/tvae-m4-20260504_175449/tvae-m4-2217-20260504_175513.csv", index=False) +print(f"[TVAE] Generated {total} rows (chunks={len(parts)}) -> /work/output-Benchmark-trainonly-v1/m4/tvae/tvae-m4-20260504_175449/tvae-m4-2217-20260504_175513.csv") diff --git a/hyperparameter/m4/tvae/tvae-m4-20260504_175449/_tvae_train.py b/hyperparameter/m4/tvae/tvae-m4-20260504_175449/_tvae_train.py new file mode 100644 index 0000000000000000000000000000000000000000..0ddb2b7321a12d3aff39be0c0f3c4c23e022d041 --- /dev/null +++ b/hyperparameter/m4/tvae/tvae-m4-20260504_175449/_tvae_train.py @@ -0,0 +1,39 @@ +import json, os, sys +sys.path.insert(0, "/work") +from src.SpecificModels.ctgan_joblib_parallel_cap import apply_parallel_cap_from_env +apply_parallel_cap_from_env() +import pandas as pd +from ctgan.data import read_csv +from ctgan.synthesizers.tvae import TVAE + +# Keep transform stage parallelism bounded for stability on shared host. +os.environ.setdefault("LOKY_MAX_CPU_COUNT", "8") +os.environ.setdefault("OPENBLAS_NUM_THREADS", "8") +os.environ.setdefault("MKL_NUM_THREADS", "8") +_nj = (os.environ.get("TVAE_CTGAN_JOBTRANS_N_JOBS") or "").strip() +if _nj: + print("[TVAE] joblib Parallel cap ON, TVAE_CTGAN_JOBTRANS_N_JOBS=" + _nj) +else: + print("[TVAE] joblib Parallel cap OFF (unset TVAE_CTGAN_JOBTRANS_N_JOBS)") +print("[TVAE] LOKY_MAX_CPU_COUNT=" + str(os.environ.get("LOKY_MAX_CPU_COUNT", ""))) + +csv_path = "/work/output-Benchmark-trainonly-v1/m4/tvae/tvae-m4-20260504_175449/staged/public/train.csv" +meta_path = "/work/output-Benchmark-trainonly-v1/m4/tvae/tvae-m4-20260504_175449/tvae_metadata.json" +save_path = "/work/output-Benchmark-trainonly-v1/m4/tvae/tvae-m4-20260504_175449/models_300epochs/tvae_300epochs.pt" +epochs = int(os.environ.get("TVAE_EPOCHS", 300)) +batch_size = int(os.environ.get("TVAE_BATCH_SIZE", "500")) +embedding_dim = int(os.environ.get("TVAE_EMBEDDING_DIM", "128")) +def _parse_dims(name, default): + raw = (os.environ.get(name) or "").strip() + if not raw: + return default + return tuple(int(x.strip()) for x in raw.split(",") if x.strip()) +compress_dims = _parse_dims("TVAE_COMPRESS_DIMS", (128, 128)) +decompress_dims = _parse_dims("TVAE_DECOMPRESS_DIMS", (128, 128)) + +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}, batch_size={batch_size}, embedding_dim={embedding_dim}, compress_dims={compress_dims}, decompress_dims={decompress_dims}") +model = TVAE(epochs=epochs, batch_size=batch_size, embedding_dim=embedding_dim, compress_dims=compress_dims, decompress_dims=decompress_dims) +model.fit(data, discrete_columns) +model.save(save_path) +print(f"[TVAE] Model saved -> {save_path}") diff --git a/hyperparameter/m4/tvae/tvae-m4-20260504_175449/gen_20260504_175513.log b/hyperparameter/m4/tvae/tvae-m4-20260504_175449/gen_20260504_175513.log new file mode 100644 index 0000000000000000000000000000000000000000..a9e912bdc4026a088ea34ccdeb07d10973cd5245 --- /dev/null +++ b/hyperparameter/m4/tvae/tvae-m4-20260504_175449/gen_20260504_175513.log @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:506bc0358a88c82bed1b729b7efcaccb73aea52807b692c21a5262b6c5c6854c +size 404 diff --git a/hyperparameter/m4/tvae/tvae-m4-20260504_175449/input_snapshot.json b/hyperparameter/m4/tvae/tvae-m4-20260504_175449/input_snapshot.json new file mode 100644 index 0000000000000000000000000000000000000000..60c34c26acabd61c3c87a32ef8cbe89659d8c727 --- /dev/null +++ b/hyperparameter/m4/tvae/tvae-m4-20260504_175449/input_snapshot.json @@ -0,0 +1,36 @@ +{ + "dataset_id": "m4", + "model": "tvae", + "inputs": { + "train_csv": { + "path": "/data/jialinzhang/SynthesizePipeline-server/DatasetNew/m4/m4-train.csv", + "exists": true, + "size": 92191, + "sha256": "396b9d409ca21bf4a4cd329bdf5b7796aa0ae6356fa8d89b8eb669b5880b81f1" + }, + "val_csv": { + "path": "/data/jialinzhang/SynthesizePipeline-server/DatasetNew/m4/m4-val.csv", + "exists": true, + "size": 11482, + "sha256": "ee3c247d02f56e1687d03c381e13125d6a3a2a411ac7f202ba8520a4be9f1784" + }, + "test_csv": { + "path": "/data/jialinzhang/SynthesizePipeline-server/DatasetNew/m4/m4-test.csv", + "exists": true, + "size": 11559, + "sha256": "cadb9941124001b8fa7cb1ebae43b70a9ca56294f4df4d3c2f22c164c41757d4" + }, + "profile_json": { + "path": "/data/jialinzhang/SynthesizePipeline-server/DatasetNew/artifacts/data_core/tabular/m4/m4-dataset_profile.json", + "exists": true, + "size": 3336, + "sha256": "83e2764810e4a0e8cdece3a28dbd9134b7c9df6f2e56953e46d024ad2c4e035f" + }, + "contract_json": { + "path": "/data/jialinzhang/SynthesizePipeline-server/DatasetNew/artifacts/data_core/tabular/m4/m4-dataset_contract_v1.json", + "exists": true, + "size": 3810, + "sha256": "c23641b258629a845b164099bd0132886f8f6d0100e990494e0f92540f8987d9" + } + } +} \ No newline at end of file diff --git a/hyperparameter/m4/tvae/tvae-m4-20260504_175449/models_300epochs/train_20260504_175449.log b/hyperparameter/m4/tvae/tvae-m4-20260504_175449/models_300epochs/train_20260504_175449.log new file mode 100644 index 0000000000000000000000000000000000000000..68c1a34e689a2d713886f2cc826e6c9f60bbf379 --- /dev/null +++ b/hyperparameter/m4/tvae/tvae-m4-20260504_175449/models_300epochs/train_20260504_175449.log @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:0e03fc03009b999dc1131d532847efc117ab94d363f9730f715066728ae278fb +size 620 diff --git a/hyperparameter/m4/tvae/tvae-m4-20260504_175449/models_300epochs/tvae_300epochs.pt b/hyperparameter/m4/tvae/tvae-m4-20260504_175449/models_300epochs/tvae_300epochs.pt new file mode 100644 index 0000000000000000000000000000000000000000..09fa703d767213aaac45b0e81a2180a81d6e5db5 --- /dev/null +++ b/hyperparameter/m4/tvae/tvae-m4-20260504_175449/models_300epochs/tvae_300epochs.pt @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:13f1bc9bbe9511781fbaebc70c932da3e4ffb82b1eb24a2d7326a204046dc8b8 +size 684524 diff --git a/hyperparameter/m4/tvae/tvae-m4-20260504_175449/public_gate/normalized_schema_snapshot.json b/hyperparameter/m4/tvae/tvae-m4-20260504_175449/public_gate/normalized_schema_snapshot.json new file mode 100644 index 0000000000000000000000000000000000000000..31ed9818686b11907df75e872e4ffbe010330880 --- /dev/null +++ b/hyperparameter/m4/tvae/tvae-m4-20260504_175449/public_gate/normalized_schema_snapshot.json @@ -0,0 +1,147 @@ +{ + "dataset_id": "m4", + "target_column": "charges", + "task_type": "regression", + "columns": [ + { + "name": "age", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 47, + "unique_ratio": 0.0212, + "example_values": [ + "46", + "38", + "19", + "27", + "26" + ] + } + }, + { + "name": "sex", + "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.000902, + "example_values": [ + "female", + "male" + ] + } + }, + { + "name": "bmi", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 538, + "unique_ratio": 0.24267, + "example_values": [ + "23.655", + "19.3", + "30.59", + "32.67", + "29.45" + ] + } + }, + { + "name": "children", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 6, + "unique_ratio": 0.002706, + "example_values": [ + "1", + "0", + "3", + "2", + "5" + ] + } + }, + { + "name": "smoker", + "role": "feature", + "semantic_type": "boolean", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 2, + "unique_ratio": 0.000902, + "example_values": [ + "yes", + "no" + ] + } + }, + { + "name": "region", + "role": "feature", + "semantic_type": "categorical", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 4, + "unique_ratio": 0.001804, + "example_values": [ + "northwest", + "southwest", + "southeast", + "northeast" + ] + } + }, + { + "name": "charges", + "role": "target", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 1281, + "unique_ratio": 0.577808, + "example_values": [ + "21677.28345", + "15820.699", + "1639.5631", + "2497.0383", + "2897.3235" + ] + } + } + ] +} \ No newline at end of file diff --git a/hyperparameter/m4/tvae/tvae-m4-20260504_175449/public_gate/public_gate_report.json b/hyperparameter/m4/tvae/tvae-m4-20260504_175449/public_gate/public_gate_report.json new file mode 100644 index 0000000000000000000000000000000000000000..e7a25408e2574124629ea9437356551e4d6f4790 --- /dev/null +++ b/hyperparameter/m4/tvae/tvae-m4-20260504_175449/public_gate/public_gate_report.json @@ -0,0 +1,37 @@ +{ + "dataset_id": "m4", + "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": "charges", + "task_type": "regression", + "input_splits": { + "train": "/data/jialinzhang/SynthesizePipeline-server/DatasetNew/m4/m4-train.csv", + "val": "/data/jialinzhang/SynthesizePipeline-server/DatasetNew/m4/m4-val.csv", + "test": "/data/jialinzhang/SynthesizePipeline-server/DatasetNew/m4/m4-test.csv" + } +} \ No newline at end of file diff --git a/hyperparameter/m4/tvae/tvae-m4-20260504_175449/public_gate/staged_input_manifest.json b/hyperparameter/m4/tvae/tvae-m4-20260504_175449/public_gate/staged_input_manifest.json new file mode 100644 index 0000000000000000000000000000000000000000..6c44a4622897b6a80eac1f92d52e00343f0eacc6 --- /dev/null +++ b/hyperparameter/m4/tvae/tvae-m4-20260504_175449/public_gate/staged_input_manifest.json @@ -0,0 +1,152 @@ +{ + "dataset_id": "m4", + "target_column": "charges", + "task_type": "regression", + "train_csv": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/m4/tvae/tvae-m4-20260504_175449/staged/public/train.csv", + "val_csv": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/m4/tvae/tvae-m4-20260504_175449/staged/public/val.csv", + "test_csv": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/m4/tvae/tvae-m4-20260504_175449/staged/public/test.csv", + "features_json": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/m4/tvae/tvae-m4-20260504_175449/staged/public/staged_features.json", + "public_gate_report": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/m4/tvae/tvae-m4-20260504_175449/public_gate/public_gate_report.json", + "column_schema": [ + { + "name": "age", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 47, + "unique_ratio": 0.0212, + "example_values": [ + "46", + "38", + "19", + "27", + "26" + ] + } + }, + { + "name": "sex", + "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.000902, + "example_values": [ + "female", + "male" + ] + } + }, + { + "name": "bmi", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 538, + "unique_ratio": 0.24267, + "example_values": [ + "23.655", + "19.3", + "30.59", + "32.67", + "29.45" + ] + } + }, + { + "name": "children", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 6, + "unique_ratio": 0.002706, + "example_values": [ + "1", + "0", + "3", + "2", + "5" + ] + } + }, + { + "name": "smoker", + "role": "feature", + "semantic_type": "boolean", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 2, + "unique_ratio": 0.000902, + "example_values": [ + "yes", + "no" + ] + } + }, + { + "name": "region", + "role": "feature", + "semantic_type": "categorical", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 4, + "unique_ratio": 0.001804, + "example_values": [ + "northwest", + "southwest", + "southeast", + "northeast" + ] + } + }, + { + "name": "charges", + "role": "target", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 1281, + "unique_ratio": 0.577808, + "example_values": [ + "21677.28345", + "15820.699", + "1639.5631", + "2497.0383", + "2897.3235" + ] + } + } + ] +} \ No newline at end of file diff --git a/hyperparameter/m4/tvae/tvae-m4-20260504_175449/run_config.json b/hyperparameter/m4/tvae/tvae-m4-20260504_175449/run_config.json new file mode 100644 index 0000000000000000000000000000000000000000..0a50da50b87dcf497b64842d9af4be2b2664156c --- /dev/null +++ b/hyperparameter/m4/tvae/tvae-m4-20260504_175449/run_config.json @@ -0,0 +1,45 @@ +{ + "schema_version": 1, + "recorded_at": "2026-05-04T17:54:49", + "dataset_id": "m4", + "model": "tvae", + "work_dir": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/m4/tvae/tvae-m4-20260504_175449", + "dataset_source_requested": "new", + "dataset_source_resolved": "new", + "cli_args": { + "model": "tvae", + "dataset": "m4", + "dataset_source": "new", + "train": true, + "generate": true, + "num_rows": 0, + "epochs": null, + "output_dir": null, + "model_dir": null, + "work_dir": null, + "resume": false, + "no_stats": false + }, + "resolved": { + "num_rows": 2217, + "model_path": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/m4/tvae/tvae-m4-20260504_175449/models_300epochs/tvae_300epochs.pt", + "output_csv": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/m4/tvae/tvae-m4-20260504_175449/tvae-m4-2217-20260504_175513.csv" + }, + "input_artifacts": { + "public_gate_report": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/m4/tvae/tvae-m4-20260504_175449/public_gate/public_gate_report.json", + "public_manifest": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/m4/tvae/tvae-m4-20260504_175449/public_gate/staged_input_manifest.json", + "model_manifest": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/m4/tvae/tvae-m4-20260504_175449/staged/tvae/model_input_manifest.json", + "train_csv": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/m4/tvae/tvae-m4-20260504_175449/staged/public/train.csv", + "features_json": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/m4/tvae/tvae-m4-20260504_175449/staged/public/staged_features.json", + "target_column": "charges", + "task_type": "regression" + }, + "env_overrides": { + "BENCHMARK_TVAE_GPUS": "device=3", + "TVAE_BATCH_SIZE": "500", + "TVAE_COMPRESS_DIMS": "256,256", + "TVAE_DECOMPRESS_DIMS": "256,256", + "TVAE_EMBEDDING_DIM": "128", + "TVAE_EPOCHS": "300" + } +} \ No newline at end of file diff --git a/hyperparameter/m4/tvae/tvae-m4-20260504_175449/runtime_result.json b/hyperparameter/m4/tvae/tvae-m4-20260504_175449/runtime_result.json new file mode 100644 index 0000000000000000000000000000000000000000..c3792a3ec28b2df18468254616f76eed6e51ce7f --- /dev/null +++ b/hyperparameter/m4/tvae/tvae-m4-20260504_175449/runtime_result.json @@ -0,0 +1,27 @@ +{ + "dataset_id": "m4", + "model": "tvae", + "run_id": "tvae-m4-20260504_175449", + "public_gate_status": "pass", + "adapter_ready_status": "pass", + "train_status": "success", + "generate_status": "success", + "reason_code": null, + "reason_detail": null, + "artifacts": { + "synthetic_csv": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/m4/tvae/tvae-m4-20260504_175449/tvae-m4-2217-20260504_175513.csv", + "model_path": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/m4/tvae/tvae-m4-20260504_175449/models_300epochs/tvae_300epochs.pt" + }, + "timings": { + "train": { + "started_at": "2026-05-04T17:54:49", + "ended_at": "2026-05-04T17:55:13", + "duration_sec": 23.522 + }, + "generate": { + "started_at": "2026-05-04T17:55:13", + "ended_at": "2026-05-04T17:55:18", + "duration_sec": 5.229 + } + } +} \ No newline at end of file diff --git a/hyperparameter/m4/tvae/tvae-m4-20260504_175449/staged/public/staged_features.json b/hyperparameter/m4/tvae/tvae-m4-20260504_175449/staged/public/staged_features.json new file mode 100644 index 0000000000000000000000000000000000000000..d6acd098c35111f423f3ffff2cfd1754bc5dfebc --- /dev/null +++ b/hyperparameter/m4/tvae/tvae-m4-20260504_175449/staged/public/staged_features.json @@ -0,0 +1,37 @@ +[ + { + "feature_name": "age", + "data_type": "continuous", + "is_target": false + }, + { + "feature_name": "sex", + "data_type": "categorical", + "is_target": false + }, + { + "feature_name": "bmi", + "data_type": "continuous", + "is_target": false + }, + { + "feature_name": "children", + "data_type": "continuous", + "is_target": false + }, + { + "feature_name": "smoker", + "data_type": "binary", + "is_target": false + }, + { + "feature_name": "region", + "data_type": "categorical", + "is_target": false + }, + { + "feature_name": "charges", + "data_type": "continuous", + "is_target": true + } +] \ No newline at end of file diff --git a/hyperparameter/m4/tvae/tvae-m4-20260504_175449/staged/public/test.csv b/hyperparameter/m4/tvae/tvae-m4-20260504_175449/staged/public/test.csv new file mode 100644 index 0000000000000000000000000000000000000000..c88a2e7cfcd715bb421cb56eb078033da45c4dc8 --- /dev/null +++ b/hyperparameter/m4/tvae/tvae-m4-20260504_175449/staged/public/test.csv @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:4c541b677fb2d45c5bc79338eeee9fd8c91484b195a0c2c546c2fbabf113b7ea +size 11298 diff --git a/hyperparameter/m4/tvae/tvae-m4-20260504_175449/staged/public/train.csv b/hyperparameter/m4/tvae/tvae-m4-20260504_175449/staged/public/train.csv new file mode 100644 index 0000000000000000000000000000000000000000..5a05019d786529e0617291766c4fbe016ca01bf5 --- /dev/null +++ b/hyperparameter/m4/tvae/tvae-m4-20260504_175449/staged/public/train.csv @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:614ebfac5f41d6f661aff675fa18c0f933a8d9bcc77ea71b7b2360c2f0155837 +size 90069 diff --git a/hyperparameter/m4/tvae/tvae-m4-20260504_175449/staged/public/val.csv b/hyperparameter/m4/tvae/tvae-m4-20260504_175449/staged/public/val.csv new file mode 100644 index 0000000000000000000000000000000000000000..d78fe5ad1537c437ba9ac2629f2aa60a6c17e708 --- /dev/null +++ b/hyperparameter/m4/tvae/tvae-m4-20260504_175449/staged/public/val.csv @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:e55f5edbe7942ff01630de91a9c70dfbc6445eba76c7b970350364546b67c2d7 +size 11218 diff --git a/hyperparameter/m4/tvae/tvae-m4-20260504_175449/staged/tvae/adapter_report.json b/hyperparameter/m4/tvae/tvae-m4-20260504_175449/staged/tvae/adapter_report.json new file mode 100644 index 0000000000000000000000000000000000000000..879d3f0289b8638013ac026e0da5150aa5c0b9f0 --- /dev/null +++ b/hyperparameter/m4/tvae/tvae-m4-20260504_175449/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-Benchmark-trainonly-v1/m4/tvae/tvae-m4-20260504_175449/staged/tvae/model_input_manifest.json" +} \ No newline at end of file diff --git a/hyperparameter/m4/tvae/tvae-m4-20260504_175449/staged/tvae/adapter_transforms_applied.json b/hyperparameter/m4/tvae/tvae-m4-20260504_175449/staged/tvae/adapter_transforms_applied.json new file mode 100644 index 0000000000000000000000000000000000000000..0637a088a01e8ddab3bf3fa98dbe804cbde1a0dc --- /dev/null +++ b/hyperparameter/m4/tvae/tvae-m4-20260504_175449/staged/tvae/adapter_transforms_applied.json @@ -0,0 +1 @@ +[] \ No newline at end of file diff --git a/hyperparameter/m4/tvae/tvae-m4-20260504_175449/staged/tvae/model_input_manifest.json b/hyperparameter/m4/tvae/tvae-m4-20260504_175449/staged/tvae/model_input_manifest.json new file mode 100644 index 0000000000000000000000000000000000000000..c3c9d78fcce98d02acf18fdedf44445fe601e6b1 --- /dev/null +++ b/hyperparameter/m4/tvae/tvae-m4-20260504_175449/staged/tvae/model_input_manifest.json @@ -0,0 +1,154 @@ +{ + "dataset_id": "m4", + "model": "tvae", + "target_column": "charges", + "task_type": "regression", + "column_schema": [ + { + "name": "age", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 47, + "unique_ratio": 0.0212, + "example_values": [ + "46", + "38", + "19", + "27", + "26" + ] + } + }, + { + "name": "sex", + "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.000902, + "example_values": [ + "female", + "male" + ] + } + }, + { + "name": "bmi", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 538, + "unique_ratio": 0.24267, + "example_values": [ + "23.655", + "19.3", + "30.59", + "32.67", + "29.45" + ] + } + }, + { + "name": "children", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 6, + "unique_ratio": 0.002706, + "example_values": [ + "1", + "0", + "3", + "2", + "5" + ] + } + }, + { + "name": "smoker", + "role": "feature", + "semantic_type": "boolean", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 2, + "unique_ratio": 0.000902, + "example_values": [ + "yes", + "no" + ] + } + }, + { + "name": "region", + "role": "feature", + "semantic_type": "categorical", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 4, + "unique_ratio": 0.001804, + "example_values": [ + "northwest", + "southwest", + "southeast", + "northeast" + ] + } + }, + { + "name": "charges", + "role": "target", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 1281, + "unique_ratio": 0.577808, + "example_values": [ + "21677.28345", + "15820.699", + "1639.5631", + "2497.0383", + "2897.3235" + ] + } + } + ], + "public_manifest": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/m4/tvae/tvae-m4-20260504_175449/public_gate/staged_input_manifest.json", + "train_csv": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/m4/tvae/tvae-m4-20260504_175449/staged/public/train.csv", + "val_csv": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/m4/tvae/tvae-m4-20260504_175449/staged/public/val.csv", + "test_csv": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/m4/tvae/tvae-m4-20260504_175449/staged/public/test.csv", + "features_json": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/m4/tvae/tvae-m4-20260504_175449/staged/public/staged_features.json", + "public_gate_report": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/m4/tvae/tvae-m4-20260504_175449/public_gate/public_gate_report.json" +} \ No newline at end of file diff --git a/hyperparameter/m4/tvae/tvae-m4-20260504_175449/tvae-m4-2217-20260504_175513.csv b/hyperparameter/m4/tvae/tvae-m4-20260504_175449/tvae-m4-2217-20260504_175513.csv new file mode 100644 index 0000000000000000000000000000000000000000..0f5c77368d7ce704a1accc5fa2633d69ea7b94dd --- /dev/null +++ b/hyperparameter/m4/tvae/tvae-m4-20260504_175449/tvae-m4-2217-20260504_175513.csv @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:e98a12bdd925dfd2cb11667b7709d30496bb352aa2a492439db83409ec7f05da +size 135526 diff --git a/hyperparameter/m4/tvae/tvae-m4-20260504_175449/tvae_metadata.json b/hyperparameter/m4/tvae/tvae-m4-20260504_175449/tvae_metadata.json new file mode 100644 index 0000000000000000000000000000000000000000..d89b1e0b3095638c982d4d3321d21a8bedcd33ae --- /dev/null +++ b/hyperparameter/m4/tvae/tvae-m4-20260504_175449/tvae_metadata.json @@ -0,0 +1,32 @@ +{ + "columns": [ + { + "name": "age", + "type": "continuous" + }, + { + "name": "sex", + "type": "categorical" + }, + { + "name": "bmi", + "type": "continuous" + }, + { + "name": "children", + "type": "continuous" + }, + { + "name": "smoker", + "type": "categorical" + }, + { + "name": "region", + "type": "categorical" + }, + { + "name": "charges", + "type": "continuous" + } + ] +} \ No newline at end of file diff --git a/hyperparameter/m4/tvae/tvae-m4-20260504_175530/_tvae_generate.py b/hyperparameter/m4/tvae/tvae-m4-20260504_175530/_tvae_generate.py new file mode 100644 index 0000000000000000000000000000000000000000..5630436cb207679ca36a2faa95aed68d8b90e70c --- /dev/null +++ b/hyperparameter/m4/tvae/tvae-m4-20260504_175530/_tvae_generate.py @@ -0,0 +1,23 @@ +import os, sys +sys.path.insert(0, "/work") +from src.SpecificModels.ctgan_joblib_parallel_cap import apply_parallel_cap_from_env +apply_parallel_cap_from_env() +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 +os.environ.setdefault("LOKY_MAX_CPU_COUNT", "8") +os.environ.setdefault("OPENBLAS_NUM_THREADS", "8") +os.environ.setdefault("MKL_NUM_THREADS", "8") +model = TVAE.load("/work/output-Benchmark-trainonly-v1/m4/tvae/tvae-m4-20260504_175530/models_300epochs/tvae_300epochs.pt") +total = 2217 +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-Benchmark-trainonly-v1/m4/tvae/tvae-m4-20260504_175530/tvae-m4-2217-20260504_175610.csv", index=False) +print(f"[TVAE] Generated {total} rows (chunks={len(parts)}) -> /work/output-Benchmark-trainonly-v1/m4/tvae/tvae-m4-20260504_175530/tvae-m4-2217-20260504_175610.csv") diff --git a/hyperparameter/m4/tvae/tvae-m4-20260504_175530/_tvae_train.py b/hyperparameter/m4/tvae/tvae-m4-20260504_175530/_tvae_train.py new file mode 100644 index 0000000000000000000000000000000000000000..8bddc1e2fca3b1f61308cc45e156164c030dd8b2 --- /dev/null +++ b/hyperparameter/m4/tvae/tvae-m4-20260504_175530/_tvae_train.py @@ -0,0 +1,39 @@ +import json, os, sys +sys.path.insert(0, "/work") +from src.SpecificModels.ctgan_joblib_parallel_cap import apply_parallel_cap_from_env +apply_parallel_cap_from_env() +import pandas as pd +from ctgan.data import read_csv +from ctgan.synthesizers.tvae import TVAE + +# Keep transform stage parallelism bounded for stability on shared host. +os.environ.setdefault("LOKY_MAX_CPU_COUNT", "8") +os.environ.setdefault("OPENBLAS_NUM_THREADS", "8") +os.environ.setdefault("MKL_NUM_THREADS", "8") +_nj = (os.environ.get("TVAE_CTGAN_JOBTRANS_N_JOBS") or "").strip() +if _nj: + print("[TVAE] joblib Parallel cap ON, TVAE_CTGAN_JOBTRANS_N_JOBS=" + _nj) +else: + print("[TVAE] joblib Parallel cap OFF (unset TVAE_CTGAN_JOBTRANS_N_JOBS)") +print("[TVAE] LOKY_MAX_CPU_COUNT=" + str(os.environ.get("LOKY_MAX_CPU_COUNT", ""))) + +csv_path = "/work/output-Benchmark-trainonly-v1/m4/tvae/tvae-m4-20260504_175530/staged/public/train.csv" +meta_path = "/work/output-Benchmark-trainonly-v1/m4/tvae/tvae-m4-20260504_175530/tvae_metadata.json" +save_path = "/work/output-Benchmark-trainonly-v1/m4/tvae/tvae-m4-20260504_175530/models_300epochs/tvae_300epochs.pt" +epochs = int(os.environ.get("TVAE_EPOCHS", 300)) +batch_size = int(os.environ.get("TVAE_BATCH_SIZE", "500")) +embedding_dim = int(os.environ.get("TVAE_EMBEDDING_DIM", "128")) +def _parse_dims(name, default): + raw = (os.environ.get(name) or "").strip() + if not raw: + return default + return tuple(int(x.strip()) for x in raw.split(",") if x.strip()) +compress_dims = _parse_dims("TVAE_COMPRESS_DIMS", (128, 128)) +decompress_dims = _parse_dims("TVAE_DECOMPRESS_DIMS", (128, 128)) + +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}, batch_size={batch_size}, embedding_dim={embedding_dim}, compress_dims={compress_dims}, decompress_dims={decompress_dims}") +model = TVAE(epochs=epochs, batch_size=batch_size, embedding_dim=embedding_dim, compress_dims=compress_dims, decompress_dims=decompress_dims) +model.fit(data, discrete_columns) +model.save(save_path) +print(f"[TVAE] Model saved -> {save_path}") diff --git a/hyperparameter/m4/tvae/tvae-m4-20260504_175530/gen_20260504_175610.log b/hyperparameter/m4/tvae/tvae-m4-20260504_175530/gen_20260504_175610.log new file mode 100644 index 0000000000000000000000000000000000000000..4b1bb491e22a5f18459632adf927b43ede912e80 --- /dev/null +++ b/hyperparameter/m4/tvae/tvae-m4-20260504_175530/gen_20260504_175610.log @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:5cf0eef736ccb09b775ee91e91bf1cecff4d38769b05d4bf2e40228f12f99156 +size 404 diff --git a/hyperparameter/m4/tvae/tvae-m4-20260504_175530/input_snapshot.json b/hyperparameter/m4/tvae/tvae-m4-20260504_175530/input_snapshot.json new file mode 100644 index 0000000000000000000000000000000000000000..60c34c26acabd61c3c87a32ef8cbe89659d8c727 --- /dev/null +++ b/hyperparameter/m4/tvae/tvae-m4-20260504_175530/input_snapshot.json @@ -0,0 +1,36 @@ +{ + "dataset_id": "m4", + "model": "tvae", + "inputs": { + "train_csv": { + "path": "/data/jialinzhang/SynthesizePipeline-server/DatasetNew/m4/m4-train.csv", + "exists": true, + "size": 92191, + "sha256": "396b9d409ca21bf4a4cd329bdf5b7796aa0ae6356fa8d89b8eb669b5880b81f1" + }, + "val_csv": { + "path": "/data/jialinzhang/SynthesizePipeline-server/DatasetNew/m4/m4-val.csv", + "exists": true, + "size": 11482, + "sha256": "ee3c247d02f56e1687d03c381e13125d6a3a2a411ac7f202ba8520a4be9f1784" + }, + "test_csv": { + "path": "/data/jialinzhang/SynthesizePipeline-server/DatasetNew/m4/m4-test.csv", + "exists": true, + "size": 11559, + "sha256": "cadb9941124001b8fa7cb1ebae43b70a9ca56294f4df4d3c2f22c164c41757d4" + }, + "profile_json": { + "path": "/data/jialinzhang/SynthesizePipeline-server/DatasetNew/artifacts/data_core/tabular/m4/m4-dataset_profile.json", + "exists": true, + "size": 3336, + "sha256": "83e2764810e4a0e8cdece3a28dbd9134b7c9df6f2e56953e46d024ad2c4e035f" + }, + "contract_json": { + "path": "/data/jialinzhang/SynthesizePipeline-server/DatasetNew/artifacts/data_core/tabular/m4/m4-dataset_contract_v1.json", + "exists": true, + "size": 3810, + "sha256": "c23641b258629a845b164099bd0132886f8f6d0100e990494e0f92540f8987d9" + } + } +} \ No newline at end of file diff --git a/hyperparameter/m4/tvae/tvae-m4-20260504_175530/models_300epochs/train_20260504_175531.log b/hyperparameter/m4/tvae/tvae-m4-20260504_175530/models_300epochs/train_20260504_175531.log new file mode 100644 index 0000000000000000000000000000000000000000..ab63c7540b64e9f038a5e7f537de8ffa11294c20 --- /dev/null +++ b/hyperparameter/m4/tvae/tvae-m4-20260504_175530/models_300epochs/train_20260504_175531.log @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:eee2f0fc9338e7e8903f28b8c9484dae9bd01ffaaf28d9ca7d689b117e9646d2 +size 620 diff --git a/hyperparameter/m4/tvae/tvae-m4-20260504_175530/models_300epochs/tvae_300epochs.pt b/hyperparameter/m4/tvae/tvae-m4-20260504_175530/models_300epochs/tvae_300epochs.pt new file mode 100644 index 0000000000000000000000000000000000000000..2f0cecc3a52a25f09009f0d041d9abed7a4eda90 --- /dev/null +++ b/hyperparameter/m4/tvae/tvae-m4-20260504_175530/models_300epochs/tvae_300epochs.pt @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:312b6cfa7a04181e1c825c875e767675a86c53ef0f51a073830ebdeafb82b715 +size 765292 diff --git a/hyperparameter/m4/tvae/tvae-m4-20260504_175530/public_gate/normalized_schema_snapshot.json b/hyperparameter/m4/tvae/tvae-m4-20260504_175530/public_gate/normalized_schema_snapshot.json new file mode 100644 index 0000000000000000000000000000000000000000..31ed9818686b11907df75e872e4ffbe010330880 --- /dev/null +++ b/hyperparameter/m4/tvae/tvae-m4-20260504_175530/public_gate/normalized_schema_snapshot.json @@ -0,0 +1,147 @@ +{ + "dataset_id": "m4", + "target_column": "charges", + "task_type": "regression", + "columns": [ + { + "name": "age", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 47, + "unique_ratio": 0.0212, + "example_values": [ + "46", + "38", + "19", + "27", + "26" + ] + } + }, + { + "name": "sex", + "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.000902, + "example_values": [ + "female", + "male" + ] + } + }, + { + "name": "bmi", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 538, + "unique_ratio": 0.24267, + "example_values": [ + "23.655", + "19.3", + "30.59", + "32.67", + "29.45" + ] + } + }, + { + "name": "children", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 6, + "unique_ratio": 0.002706, + "example_values": [ + "1", + "0", + "3", + "2", + "5" + ] + } + }, + { + "name": "smoker", + "role": "feature", + "semantic_type": "boolean", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 2, + "unique_ratio": 0.000902, + "example_values": [ + "yes", + "no" + ] + } + }, + { + "name": "region", + "role": "feature", + "semantic_type": "categorical", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 4, + "unique_ratio": 0.001804, + "example_values": [ + "northwest", + "southwest", + "southeast", + "northeast" + ] + } + }, + { + "name": "charges", + "role": "target", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 1281, + "unique_ratio": 0.577808, + "example_values": [ + "21677.28345", + "15820.699", + "1639.5631", + "2497.0383", + "2897.3235" + ] + } + } + ] +} \ No newline at end of file diff --git a/hyperparameter/m4/tvae/tvae-m4-20260504_175530/public_gate/public_gate_report.json b/hyperparameter/m4/tvae/tvae-m4-20260504_175530/public_gate/public_gate_report.json new file mode 100644 index 0000000000000000000000000000000000000000..e7a25408e2574124629ea9437356551e4d6f4790 --- /dev/null +++ b/hyperparameter/m4/tvae/tvae-m4-20260504_175530/public_gate/public_gate_report.json @@ -0,0 +1,37 @@ +{ + "dataset_id": "m4", + "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": "charges", + "task_type": "regression", + "input_splits": { + "train": "/data/jialinzhang/SynthesizePipeline-server/DatasetNew/m4/m4-train.csv", + "val": "/data/jialinzhang/SynthesizePipeline-server/DatasetNew/m4/m4-val.csv", + "test": "/data/jialinzhang/SynthesizePipeline-server/DatasetNew/m4/m4-test.csv" + } +} \ No newline at end of file diff --git a/hyperparameter/m4/tvae/tvae-m4-20260504_175530/public_gate/staged_input_manifest.json b/hyperparameter/m4/tvae/tvae-m4-20260504_175530/public_gate/staged_input_manifest.json new file mode 100644 index 0000000000000000000000000000000000000000..1ccf316d39cda13b861175fe16fcd94babb6fe6a --- /dev/null +++ b/hyperparameter/m4/tvae/tvae-m4-20260504_175530/public_gate/staged_input_manifest.json @@ -0,0 +1,152 @@ +{ + "dataset_id": "m4", + "target_column": "charges", + "task_type": "regression", + "train_csv": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/m4/tvae/tvae-m4-20260504_175530/staged/public/train.csv", + "val_csv": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/m4/tvae/tvae-m4-20260504_175530/staged/public/val.csv", + "test_csv": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/m4/tvae/tvae-m4-20260504_175530/staged/public/test.csv", + "features_json": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/m4/tvae/tvae-m4-20260504_175530/staged/public/staged_features.json", + "public_gate_report": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/m4/tvae/tvae-m4-20260504_175530/public_gate/public_gate_report.json", + "column_schema": [ + { + "name": "age", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 47, + "unique_ratio": 0.0212, + "example_values": [ + "46", + "38", + "19", + "27", + "26" + ] + } + }, + { + "name": "sex", + "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.000902, + "example_values": [ + "female", + "male" + ] + } + }, + { + "name": "bmi", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 538, + "unique_ratio": 0.24267, + "example_values": [ + "23.655", + "19.3", + "30.59", + "32.67", + "29.45" + ] + } + }, + { + "name": "children", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 6, + "unique_ratio": 0.002706, + "example_values": [ + "1", + "0", + "3", + "2", + "5" + ] + } + }, + { + "name": "smoker", + "role": "feature", + "semantic_type": "boolean", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 2, + "unique_ratio": 0.000902, + "example_values": [ + "yes", + "no" + ] + } + }, + { + "name": "region", + "role": "feature", + "semantic_type": "categorical", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 4, + "unique_ratio": 0.001804, + "example_values": [ + "northwest", + "southwest", + "southeast", + "northeast" + ] + } + }, + { + "name": "charges", + "role": "target", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 1281, + "unique_ratio": 0.577808, + "example_values": [ + "21677.28345", + "15820.699", + "1639.5631", + "2497.0383", + "2897.3235" + ] + } + } + ] +} \ No newline at end of file diff --git a/hyperparameter/m4/tvae/tvae-m4-20260504_175530/run_config.json b/hyperparameter/m4/tvae/tvae-m4-20260504_175530/run_config.json new file mode 100644 index 0000000000000000000000000000000000000000..21e8788fec3a6356cd17b49ec03f3ea82d3406fa --- /dev/null +++ b/hyperparameter/m4/tvae/tvae-m4-20260504_175530/run_config.json @@ -0,0 +1,45 @@ +{ + "schema_version": 1, + "recorded_at": "2026-05-04T17:55:31", + "dataset_id": "m4", + "model": "tvae", + "work_dir": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/m4/tvae/tvae-m4-20260504_175530", + "dataset_source_requested": "new", + "dataset_source_resolved": "new", + "cli_args": { + "model": "tvae", + "dataset": "m4", + "dataset_source": "new", + "train": true, + "generate": true, + "num_rows": 0, + "epochs": null, + "output_dir": null, + "model_dir": null, + "work_dir": null, + "resume": false, + "no_stats": false + }, + "resolved": { + "num_rows": 2217, + "model_path": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/m4/tvae/tvae-m4-20260504_175530/models_300epochs/tvae_300epochs.pt", + "output_csv": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/m4/tvae/tvae-m4-20260504_175530/tvae-m4-2217-20260504_175610.csv" + }, + "input_artifacts": { + "public_gate_report": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/m4/tvae/tvae-m4-20260504_175530/public_gate/public_gate_report.json", + "public_manifest": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/m4/tvae/tvae-m4-20260504_175530/public_gate/staged_input_manifest.json", + "model_manifest": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/m4/tvae/tvae-m4-20260504_175530/staged/tvae/model_input_manifest.json", + "train_csv": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/m4/tvae/tvae-m4-20260504_175530/staged/public/train.csv", + "features_json": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/m4/tvae/tvae-m4-20260504_175530/staged/public/staged_features.json", + "target_column": "charges", + "task_type": "regression" + }, + "env_overrides": { + "BENCHMARK_TVAE_GPUS": "device=3", + "TVAE_BATCH_SIZE": "256", + "TVAE_COMPRESS_DIMS": "256,256", + "TVAE_DECOMPRESS_DIMS": "256,256", + "TVAE_EMBEDDING_DIM": "128", + "TVAE_EPOCHS": "500" + } +} \ No newline at end of file diff --git a/hyperparameter/m4/tvae/tvae-m4-20260504_175530/runtime_result.json b/hyperparameter/m4/tvae/tvae-m4-20260504_175530/runtime_result.json new file mode 100644 index 0000000000000000000000000000000000000000..65b42c7cb5ae1dc51773c686c000d66f14213373 --- /dev/null +++ b/hyperparameter/m4/tvae/tvae-m4-20260504_175530/runtime_result.json @@ -0,0 +1,27 @@ +{ + "dataset_id": "m4", + "model": "tvae", + "run_id": "tvae-m4-20260504_175530", + "public_gate_status": "pass", + "adapter_ready_status": "pass", + "train_status": "success", + "generate_status": "success", + "reason_code": null, + "reason_detail": null, + "artifacts": { + "synthetic_csv": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/m4/tvae/tvae-m4-20260504_175530/tvae-m4-2217-20260504_175610.csv", + "model_path": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/m4/tvae/tvae-m4-20260504_175530/models_300epochs/tvae_300epochs.pt" + }, + "timings": { + "train": { + "started_at": "2026-05-04T17:55:31", + "ended_at": "2026-05-04T17:56:10", + "duration_sec": 39.917 + }, + "generate": { + "started_at": "2026-05-04T17:56:10", + "ended_at": "2026-05-04T17:56:16", + "duration_sec": 5.502 + } + } +} \ No newline at end of file diff --git a/hyperparameter/m4/tvae/tvae-m4-20260504_175530/staged/public/staged_features.json b/hyperparameter/m4/tvae/tvae-m4-20260504_175530/staged/public/staged_features.json new file mode 100644 index 0000000000000000000000000000000000000000..d6acd098c35111f423f3ffff2cfd1754bc5dfebc --- /dev/null +++ b/hyperparameter/m4/tvae/tvae-m4-20260504_175530/staged/public/staged_features.json @@ -0,0 +1,37 @@ +[ + { + "feature_name": "age", + "data_type": "continuous", + "is_target": false + }, + { + "feature_name": "sex", + "data_type": "categorical", + "is_target": false + }, + { + "feature_name": "bmi", + "data_type": "continuous", + "is_target": false + }, + { + "feature_name": "children", + "data_type": "continuous", + "is_target": false + }, + { + "feature_name": "smoker", + "data_type": "binary", + "is_target": false + }, + { + "feature_name": "region", + "data_type": "categorical", + "is_target": false + }, + { + "feature_name": "charges", + "data_type": "continuous", + "is_target": true + } +] \ No newline at end of file diff --git a/hyperparameter/m4/tvae/tvae-m4-20260504_175530/staged/public/test.csv b/hyperparameter/m4/tvae/tvae-m4-20260504_175530/staged/public/test.csv new file mode 100644 index 0000000000000000000000000000000000000000..c88a2e7cfcd715bb421cb56eb078033da45c4dc8 --- /dev/null +++ b/hyperparameter/m4/tvae/tvae-m4-20260504_175530/staged/public/test.csv @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:4c541b677fb2d45c5bc79338eeee9fd8c91484b195a0c2c546c2fbabf113b7ea +size 11298 diff --git a/hyperparameter/m4/tvae/tvae-m4-20260504_175530/staged/public/train.csv b/hyperparameter/m4/tvae/tvae-m4-20260504_175530/staged/public/train.csv new file mode 100644 index 0000000000000000000000000000000000000000..5a05019d786529e0617291766c4fbe016ca01bf5 --- /dev/null +++ b/hyperparameter/m4/tvae/tvae-m4-20260504_175530/staged/public/train.csv @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:614ebfac5f41d6f661aff675fa18c0f933a8d9bcc77ea71b7b2360c2f0155837 +size 90069 diff --git a/hyperparameter/m4/tvae/tvae-m4-20260504_175530/staged/public/val.csv b/hyperparameter/m4/tvae/tvae-m4-20260504_175530/staged/public/val.csv new file mode 100644 index 0000000000000000000000000000000000000000..d78fe5ad1537c437ba9ac2629f2aa60a6c17e708 --- /dev/null +++ b/hyperparameter/m4/tvae/tvae-m4-20260504_175530/staged/public/val.csv @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:e55f5edbe7942ff01630de91a9c70dfbc6445eba76c7b970350364546b67c2d7 +size 11218 diff --git a/hyperparameter/m4/tvae/tvae-m4-20260504_175530/staged/tvae/adapter_report.json b/hyperparameter/m4/tvae/tvae-m4-20260504_175530/staged/tvae/adapter_report.json new file mode 100644 index 0000000000000000000000000000000000000000..37f886a4c807fe8b69e99c1104f0e36d6c6adf2e --- /dev/null +++ b/hyperparameter/m4/tvae/tvae-m4-20260504_175530/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-Benchmark-trainonly-v1/m4/tvae/tvae-m4-20260504_175530/staged/tvae/model_input_manifest.json" +} \ No newline at end of file diff --git a/hyperparameter/m4/tvae/tvae-m4-20260504_175530/staged/tvae/adapter_transforms_applied.json b/hyperparameter/m4/tvae/tvae-m4-20260504_175530/staged/tvae/adapter_transforms_applied.json new file mode 100644 index 0000000000000000000000000000000000000000..0637a088a01e8ddab3bf3fa98dbe804cbde1a0dc --- /dev/null +++ b/hyperparameter/m4/tvae/tvae-m4-20260504_175530/staged/tvae/adapter_transforms_applied.json @@ -0,0 +1 @@ +[] \ No newline at end of file diff --git a/hyperparameter/m4/tvae/tvae-m4-20260504_175530/staged/tvae/model_input_manifest.json b/hyperparameter/m4/tvae/tvae-m4-20260504_175530/staged/tvae/model_input_manifest.json new file mode 100644 index 0000000000000000000000000000000000000000..cb351c79f41d5f0ba4ad75267366eb75b2b99a89 --- /dev/null +++ b/hyperparameter/m4/tvae/tvae-m4-20260504_175530/staged/tvae/model_input_manifest.json @@ -0,0 +1,154 @@ +{ + "dataset_id": "m4", + "model": "tvae", + "target_column": "charges", + "task_type": "regression", + "column_schema": [ + { + "name": "age", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 47, + "unique_ratio": 0.0212, + "example_values": [ + "46", + "38", + "19", + "27", + "26" + ] + } + }, + { + "name": "sex", + "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.000902, + "example_values": [ + "female", + "male" + ] + } + }, + { + "name": "bmi", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 538, + "unique_ratio": 0.24267, + "example_values": [ + "23.655", + "19.3", + "30.59", + "32.67", + "29.45" + ] + } + }, + { + "name": "children", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 6, + "unique_ratio": 0.002706, + "example_values": [ + "1", + "0", + "3", + "2", + "5" + ] + } + }, + { + "name": "smoker", + "role": "feature", + "semantic_type": "boolean", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 2, + "unique_ratio": 0.000902, + "example_values": [ + "yes", + "no" + ] + } + }, + { + "name": "region", + "role": "feature", + "semantic_type": "categorical", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 4, + "unique_ratio": 0.001804, + "example_values": [ + "northwest", + "southwest", + "southeast", + "northeast" + ] + } + }, + { + "name": "charges", + "role": "target", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 1281, + "unique_ratio": 0.577808, + "example_values": [ + "21677.28345", + "15820.699", + "1639.5631", + "2497.0383", + "2897.3235" + ] + } + } + ], + "public_manifest": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/m4/tvae/tvae-m4-20260504_175530/public_gate/staged_input_manifest.json", + "train_csv": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/m4/tvae/tvae-m4-20260504_175530/staged/public/train.csv", + "val_csv": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/m4/tvae/tvae-m4-20260504_175530/staged/public/val.csv", + "test_csv": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/m4/tvae/tvae-m4-20260504_175530/staged/public/test.csv", + "features_json": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/m4/tvae/tvae-m4-20260504_175530/staged/public/staged_features.json", + "public_gate_report": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/m4/tvae/tvae-m4-20260504_175530/public_gate/public_gate_report.json" +} \ No newline at end of file diff --git a/hyperparameter/m4/tvae/tvae-m4-20260504_175530/tvae-m4-2217-20260504_175610.csv b/hyperparameter/m4/tvae/tvae-m4-20260504_175530/tvae-m4-2217-20260504_175610.csv new file mode 100644 index 0000000000000000000000000000000000000000..606a7d02f0adf19904c4d4ba33d3a4dfea5ca992 --- /dev/null +++ b/hyperparameter/m4/tvae/tvae-m4-20260504_175530/tvae-m4-2217-20260504_175610.csv @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:2fb289413b48175dafe06bf13265b44045456603a5d208e7fe589e2889bdb54b +size 135518 diff --git a/hyperparameter/m4/tvae/tvae-m4-20260504_175530/tvae_metadata.json b/hyperparameter/m4/tvae/tvae-m4-20260504_175530/tvae_metadata.json new file mode 100644 index 0000000000000000000000000000000000000000..d89b1e0b3095638c982d4d3321d21a8bedcd33ae --- /dev/null +++ b/hyperparameter/m4/tvae/tvae-m4-20260504_175530/tvae_metadata.json @@ -0,0 +1,32 @@ +{ + "columns": [ + { + "name": "age", + "type": "continuous" + }, + { + "name": "sex", + "type": "categorical" + }, + { + "name": "bmi", + "type": "continuous" + }, + { + "name": "children", + "type": "continuous" + }, + { + "name": "smoker", + "type": "categorical" + }, + { + "name": "region", + "type": "categorical" + }, + { + "name": "charges", + "type": "continuous" + } + ] +} \ No newline at end of file diff --git a/hyperparameter/m4/tvae/tvae-m4-20260504_175629/_tvae_generate.py b/hyperparameter/m4/tvae/tvae-m4-20260504_175629/_tvae_generate.py new file mode 100644 index 0000000000000000000000000000000000000000..39004fb75945aac1f990221a91985deb650fa5a0 --- /dev/null +++ b/hyperparameter/m4/tvae/tvae-m4-20260504_175629/_tvae_generate.py @@ -0,0 +1,23 @@ +import os, sys +sys.path.insert(0, "/work") +from src.SpecificModels.ctgan_joblib_parallel_cap import apply_parallel_cap_from_env +apply_parallel_cap_from_env() +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 +os.environ.setdefault("LOKY_MAX_CPU_COUNT", "8") +os.environ.setdefault("OPENBLAS_NUM_THREADS", "8") +os.environ.setdefault("MKL_NUM_THREADS", "8") +model = TVAE.load("/work/output-Benchmark-trainonly-v1/m4/tvae/tvae-m4-20260504_175629/models_300epochs/tvae_300epochs.pt") +total = 2217 +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-Benchmark-trainonly-v1/m4/tvae/tvae-m4-20260504_175629/tvae-m4-2217-20260504_175710.csv", index=False) +print(f"[TVAE] Generated {total} rows (chunks={len(parts)}) -> /work/output-Benchmark-trainonly-v1/m4/tvae/tvae-m4-20260504_175629/tvae-m4-2217-20260504_175710.csv") diff --git a/hyperparameter/m4/tvae/tvae-m4-20260504_175629/_tvae_train.py b/hyperparameter/m4/tvae/tvae-m4-20260504_175629/_tvae_train.py new file mode 100644 index 0000000000000000000000000000000000000000..024f990670dcbc746aaa55122c04dee9d8ff3a9e --- /dev/null +++ b/hyperparameter/m4/tvae/tvae-m4-20260504_175629/_tvae_train.py @@ -0,0 +1,39 @@ +import json, os, sys +sys.path.insert(0, "/work") +from src.SpecificModels.ctgan_joblib_parallel_cap import apply_parallel_cap_from_env +apply_parallel_cap_from_env() +import pandas as pd +from ctgan.data import read_csv +from ctgan.synthesizers.tvae import TVAE + +# Keep transform stage parallelism bounded for stability on shared host. +os.environ.setdefault("LOKY_MAX_CPU_COUNT", "8") +os.environ.setdefault("OPENBLAS_NUM_THREADS", "8") +os.environ.setdefault("MKL_NUM_THREADS", "8") +_nj = (os.environ.get("TVAE_CTGAN_JOBTRANS_N_JOBS") or "").strip() +if _nj: + print("[TVAE] joblib Parallel cap ON, TVAE_CTGAN_JOBTRANS_N_JOBS=" + _nj) +else: + print("[TVAE] joblib Parallel cap OFF (unset TVAE_CTGAN_JOBTRANS_N_JOBS)") +print("[TVAE] LOKY_MAX_CPU_COUNT=" + str(os.environ.get("LOKY_MAX_CPU_COUNT", ""))) + +csv_path = "/work/output-Benchmark-trainonly-v1/m4/tvae/tvae-m4-20260504_175629/staged/public/train.csv" +meta_path = "/work/output-Benchmark-trainonly-v1/m4/tvae/tvae-m4-20260504_175629/tvae_metadata.json" +save_path = "/work/output-Benchmark-trainonly-v1/m4/tvae/tvae-m4-20260504_175629/models_300epochs/tvae_300epochs.pt" +epochs = int(os.environ.get("TVAE_EPOCHS", 300)) +batch_size = int(os.environ.get("TVAE_BATCH_SIZE", "500")) +embedding_dim = int(os.environ.get("TVAE_EMBEDDING_DIM", "128")) +def _parse_dims(name, default): + raw = (os.environ.get(name) or "").strip() + if not raw: + return default + return tuple(int(x.strip()) for x in raw.split(",") if x.strip()) +compress_dims = _parse_dims("TVAE_COMPRESS_DIMS", (128, 128)) +decompress_dims = _parse_dims("TVAE_DECOMPRESS_DIMS", (128, 128)) + +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}, batch_size={batch_size}, embedding_dim={embedding_dim}, compress_dims={compress_dims}, decompress_dims={decompress_dims}") +model = TVAE(epochs=epochs, batch_size=batch_size, embedding_dim=embedding_dim, compress_dims=compress_dims, decompress_dims=decompress_dims) +model.fit(data, discrete_columns) +model.save(save_path) +print(f"[TVAE] Model saved -> {save_path}") diff --git a/hyperparameter/m4/tvae/tvae-m4-20260504_175629/gen_20260504_175710.log b/hyperparameter/m4/tvae/tvae-m4-20260504_175629/gen_20260504_175710.log new file mode 100644 index 0000000000000000000000000000000000000000..a795a8030882a84a26d73a4c573aaeb8f8e885c9 --- /dev/null +++ b/hyperparameter/m4/tvae/tvae-m4-20260504_175629/gen_20260504_175710.log @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:d622877b81551b0ad684e4a5085c2911727d027af9a46fc420364324caa62b56 +size 404 diff --git a/hyperparameter/m4/tvae/tvae-m4-20260504_175629/input_snapshot.json b/hyperparameter/m4/tvae/tvae-m4-20260504_175629/input_snapshot.json new file mode 100644 index 0000000000000000000000000000000000000000..60c34c26acabd61c3c87a32ef8cbe89659d8c727 --- /dev/null +++ b/hyperparameter/m4/tvae/tvae-m4-20260504_175629/input_snapshot.json @@ -0,0 +1,36 @@ +{ + "dataset_id": "m4", + "model": "tvae", + "inputs": { + "train_csv": { + "path": "/data/jialinzhang/SynthesizePipeline-server/DatasetNew/m4/m4-train.csv", + "exists": true, + "size": 92191, + "sha256": "396b9d409ca21bf4a4cd329bdf5b7796aa0ae6356fa8d89b8eb669b5880b81f1" + }, + "val_csv": { + "path": "/data/jialinzhang/SynthesizePipeline-server/DatasetNew/m4/m4-val.csv", + "exists": true, + "size": 11482, + "sha256": "ee3c247d02f56e1687d03c381e13125d6a3a2a411ac7f202ba8520a4be9f1784" + }, + "test_csv": { + "path": "/data/jialinzhang/SynthesizePipeline-server/DatasetNew/m4/m4-test.csv", + "exists": true, + "size": 11559, + "sha256": "cadb9941124001b8fa7cb1ebae43b70a9ca56294f4df4d3c2f22c164c41757d4" + }, + "profile_json": { + "path": "/data/jialinzhang/SynthesizePipeline-server/DatasetNew/artifacts/data_core/tabular/m4/m4-dataset_profile.json", + "exists": true, + "size": 3336, + "sha256": "83e2764810e4a0e8cdece3a28dbd9134b7c9df6f2e56953e46d024ad2c4e035f" + }, + "contract_json": { + "path": "/data/jialinzhang/SynthesizePipeline-server/DatasetNew/artifacts/data_core/tabular/m4/m4-dataset_contract_v1.json", + "exists": true, + "size": 3810, + "sha256": "c23641b258629a845b164099bd0132886f8f6d0100e990494e0f92540f8987d9" + } + } +} \ No newline at end of file diff --git a/hyperparameter/m4/tvae/tvae-m4-20260504_175629/models_300epochs/train_20260504_175629.log b/hyperparameter/m4/tvae/tvae-m4-20260504_175629/models_300epochs/train_20260504_175629.log new file mode 100644 index 0000000000000000000000000000000000000000..27900ca9d641e9523358a5597637ab7644edf35b --- /dev/null +++ b/hyperparameter/m4/tvae/tvae-m4-20260504_175629/models_300epochs/train_20260504_175629.log @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:320957d0779658cd00032ad2ad674c5da8cf66cf3de6c185b2919b669f0d319e +size 620 diff --git a/hyperparameter/m4/tvae/tvae-m4-20260504_175629/models_300epochs/tvae_300epochs.pt b/hyperparameter/m4/tvae/tvae-m4-20260504_175629/models_300epochs/tvae_300epochs.pt new file mode 100644 index 0000000000000000000000000000000000000000..3cc976141c8eb3bb7f28b0ada7070e0b9b6d8632 --- /dev/null +++ b/hyperparameter/m4/tvae/tvae-m4-20260504_175629/models_300epochs/tvae_300epochs.pt @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:b777c51e837561a377d700aa332ff47b5f936225dec80dde0479ca8c348aeba5 +size 895788 diff --git a/hyperparameter/m4/tvae/tvae-m4-20260504_175629/public_gate/normalized_schema_snapshot.json b/hyperparameter/m4/tvae/tvae-m4-20260504_175629/public_gate/normalized_schema_snapshot.json new file mode 100644 index 0000000000000000000000000000000000000000..31ed9818686b11907df75e872e4ffbe010330880 --- /dev/null +++ b/hyperparameter/m4/tvae/tvae-m4-20260504_175629/public_gate/normalized_schema_snapshot.json @@ -0,0 +1,147 @@ +{ + "dataset_id": "m4", + "target_column": "charges", + "task_type": "regression", + "columns": [ + { + "name": "age", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 47, + "unique_ratio": 0.0212, + "example_values": [ + "46", + "38", + "19", + "27", + "26" + ] + } + }, + { + "name": "sex", + "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.000902, + "example_values": [ + "female", + "male" + ] + } + }, + { + "name": "bmi", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 538, + "unique_ratio": 0.24267, + "example_values": [ + "23.655", + "19.3", + "30.59", + "32.67", + "29.45" + ] + } + }, + { + "name": "children", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 6, + "unique_ratio": 0.002706, + "example_values": [ + "1", + "0", + "3", + "2", + "5" + ] + } + }, + { + "name": "smoker", + "role": "feature", + "semantic_type": "boolean", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 2, + "unique_ratio": 0.000902, + "example_values": [ + "yes", + "no" + ] + } + }, + { + "name": "region", + "role": "feature", + "semantic_type": "categorical", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 4, + "unique_ratio": 0.001804, + "example_values": [ + "northwest", + "southwest", + "southeast", + "northeast" + ] + } + }, + { + "name": "charges", + "role": "target", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 1281, + "unique_ratio": 0.577808, + "example_values": [ + "21677.28345", + "15820.699", + "1639.5631", + "2497.0383", + "2897.3235" + ] + } + } + ] +} \ No newline at end of file diff --git a/hyperparameter/m4/tvae/tvae-m4-20260504_175629/public_gate/public_gate_report.json b/hyperparameter/m4/tvae/tvae-m4-20260504_175629/public_gate/public_gate_report.json new file mode 100644 index 0000000000000000000000000000000000000000..e7a25408e2574124629ea9437356551e4d6f4790 --- /dev/null +++ b/hyperparameter/m4/tvae/tvae-m4-20260504_175629/public_gate/public_gate_report.json @@ -0,0 +1,37 @@ +{ + "dataset_id": "m4", + "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": "charges", + "task_type": "regression", + "input_splits": { + "train": "/data/jialinzhang/SynthesizePipeline-server/DatasetNew/m4/m4-train.csv", + "val": "/data/jialinzhang/SynthesizePipeline-server/DatasetNew/m4/m4-val.csv", + "test": "/data/jialinzhang/SynthesizePipeline-server/DatasetNew/m4/m4-test.csv" + } +} \ No newline at end of file diff --git a/hyperparameter/m4/tvae/tvae-m4-20260504_175629/public_gate/staged_input_manifest.json b/hyperparameter/m4/tvae/tvae-m4-20260504_175629/public_gate/staged_input_manifest.json new file mode 100644 index 0000000000000000000000000000000000000000..0bde7a4febf07fdb8780f652af167f5f9405b7c2 --- /dev/null +++ b/hyperparameter/m4/tvae/tvae-m4-20260504_175629/public_gate/staged_input_manifest.json @@ -0,0 +1,152 @@ +{ + "dataset_id": "m4", + "target_column": "charges", + "task_type": "regression", + "train_csv": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/m4/tvae/tvae-m4-20260504_175629/staged/public/train.csv", + "val_csv": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/m4/tvae/tvae-m4-20260504_175629/staged/public/val.csv", + "test_csv": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/m4/tvae/tvae-m4-20260504_175629/staged/public/test.csv", + "features_json": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/m4/tvae/tvae-m4-20260504_175629/staged/public/staged_features.json", + "public_gate_report": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/m4/tvae/tvae-m4-20260504_175629/public_gate/public_gate_report.json", + "column_schema": [ + { + "name": "age", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 47, + "unique_ratio": 0.0212, + "example_values": [ + "46", + "38", + "19", + "27", + "26" + ] + } + }, + { + "name": "sex", + "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.000902, + "example_values": [ + "female", + "male" + ] + } + }, + { + "name": "bmi", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 538, + "unique_ratio": 0.24267, + "example_values": [ + "23.655", + "19.3", + "30.59", + "32.67", + "29.45" + ] + } + }, + { + "name": "children", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 6, + "unique_ratio": 0.002706, + "example_values": [ + "1", + "0", + "3", + "2", + "5" + ] + } + }, + { + "name": "smoker", + "role": "feature", + "semantic_type": "boolean", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 2, + "unique_ratio": 0.000902, + "example_values": [ + "yes", + "no" + ] + } + }, + { + "name": "region", + "role": "feature", + "semantic_type": "categorical", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 4, + "unique_ratio": 0.001804, + "example_values": [ + "northwest", + "southwest", + "southeast", + "northeast" + ] + } + }, + { + "name": "charges", + "role": "target", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 1281, + "unique_ratio": 0.577808, + "example_values": [ + "21677.28345", + "15820.699", + "1639.5631", + "2497.0383", + "2897.3235" + ] + } + } + ] +} \ No newline at end of file diff --git a/hyperparameter/m4/tvae/tvae-m4-20260504_175629/run_config.json b/hyperparameter/m4/tvae/tvae-m4-20260504_175629/run_config.json new file mode 100644 index 0000000000000000000000000000000000000000..705b37f42cbc60a30de4fe4a4b0df2f4a0340311 --- /dev/null +++ b/hyperparameter/m4/tvae/tvae-m4-20260504_175629/run_config.json @@ -0,0 +1,45 @@ +{ + "schema_version": 1, + "recorded_at": "2026-05-04T17:56:29", + "dataset_id": "m4", + "model": "tvae", + "work_dir": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/m4/tvae/tvae-m4-20260504_175629", + "dataset_source_requested": "new", + "dataset_source_resolved": "new", + "cli_args": { + "model": "tvae", + "dataset": "m4", + "dataset_source": "new", + "train": true, + "generate": true, + "num_rows": 0, + "epochs": null, + "output_dir": null, + "model_dir": null, + "work_dir": null, + "resume": false, + "no_stats": false + }, + "resolved": { + "num_rows": 2217, + "model_path": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/m4/tvae/tvae-m4-20260504_175629/models_300epochs/tvae_300epochs.pt", + "output_csv": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/m4/tvae/tvae-m4-20260504_175629/tvae-m4-2217-20260504_175710.csv" + }, + "input_artifacts": { + "public_gate_report": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/m4/tvae/tvae-m4-20260504_175629/public_gate/public_gate_report.json", + "public_manifest": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/m4/tvae/tvae-m4-20260504_175629/public_gate/staged_input_manifest.json", + "model_manifest": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/m4/tvae/tvae-m4-20260504_175629/staged/tvae/model_input_manifest.json", + "train_csv": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/m4/tvae/tvae-m4-20260504_175629/staged/public/train.csv", + "features_json": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/m4/tvae/tvae-m4-20260504_175629/staged/public/staged_features.json", + "target_column": "charges", + "task_type": "regression" + }, + "env_overrides": { + "BENCHMARK_TVAE_GPUS": "device=3", + "TVAE_BATCH_SIZE": "256", + "TVAE_COMPRESS_DIMS": "256,256", + "TVAE_DECOMPRESS_DIMS": "256,256", + "TVAE_EMBEDDING_DIM": "256", + "TVAE_EPOCHS": "500" + } +} \ No newline at end of file diff --git a/hyperparameter/m4/tvae/tvae-m4-20260504_175629/runtime_result.json b/hyperparameter/m4/tvae/tvae-m4-20260504_175629/runtime_result.json new file mode 100644 index 0000000000000000000000000000000000000000..617455803da9ab7119a01451262c6b607ec6b6c0 --- /dev/null +++ b/hyperparameter/m4/tvae/tvae-m4-20260504_175629/runtime_result.json @@ -0,0 +1,27 @@ +{ + "dataset_id": "m4", + "model": "tvae", + "run_id": "tvae-m4-20260504_175629", + "public_gate_status": "pass", + "adapter_ready_status": "pass", + "train_status": "success", + "generate_status": "success", + "reason_code": null, + "reason_detail": null, + "artifacts": { + "synthetic_csv": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/m4/tvae/tvae-m4-20260504_175629/tvae-m4-2217-20260504_175710.csv", + "model_path": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/m4/tvae/tvae-m4-20260504_175629/models_300epochs/tvae_300epochs.pt" + }, + "timings": { + "train": { + "started_at": "2026-05-04T17:56:29", + "ended_at": "2026-05-04T17:57:10", + "duration_sec": 40.056 + }, + "generate": { + "started_at": "2026-05-04T17:57:10", + "ended_at": "2026-05-04T17:57:15", + "duration_sec": 5.089 + } + } +} \ No newline at end of file diff --git a/hyperparameter/m4/tvae/tvae-m4-20260504_175629/staged/public/staged_features.json b/hyperparameter/m4/tvae/tvae-m4-20260504_175629/staged/public/staged_features.json new file mode 100644 index 0000000000000000000000000000000000000000..d6acd098c35111f423f3ffff2cfd1754bc5dfebc --- /dev/null +++ b/hyperparameter/m4/tvae/tvae-m4-20260504_175629/staged/public/staged_features.json @@ -0,0 +1,37 @@ +[ + { + "feature_name": "age", + "data_type": "continuous", + "is_target": false + }, + { + "feature_name": "sex", + "data_type": "categorical", + "is_target": false + }, + { + "feature_name": "bmi", + "data_type": "continuous", + "is_target": false + }, + { + "feature_name": "children", + "data_type": "continuous", + "is_target": false + }, + { + "feature_name": "smoker", + "data_type": "binary", + "is_target": false + }, + { + "feature_name": "region", + "data_type": "categorical", + "is_target": false + }, + { + "feature_name": "charges", + "data_type": "continuous", + "is_target": true + } +] \ No newline at end of file diff --git a/hyperparameter/m4/tvae/tvae-m4-20260504_175629/staged/public/test.csv b/hyperparameter/m4/tvae/tvae-m4-20260504_175629/staged/public/test.csv new file mode 100644 index 0000000000000000000000000000000000000000..c88a2e7cfcd715bb421cb56eb078033da45c4dc8 --- /dev/null +++ b/hyperparameter/m4/tvae/tvae-m4-20260504_175629/staged/public/test.csv @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:4c541b677fb2d45c5bc79338eeee9fd8c91484b195a0c2c546c2fbabf113b7ea +size 11298 diff --git a/hyperparameter/m4/tvae/tvae-m4-20260504_175629/staged/public/train.csv b/hyperparameter/m4/tvae/tvae-m4-20260504_175629/staged/public/train.csv new file mode 100644 index 0000000000000000000000000000000000000000..5a05019d786529e0617291766c4fbe016ca01bf5 --- /dev/null +++ b/hyperparameter/m4/tvae/tvae-m4-20260504_175629/staged/public/train.csv @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:614ebfac5f41d6f661aff675fa18c0f933a8d9bcc77ea71b7b2360c2f0155837 +size 90069 diff --git a/hyperparameter/m4/tvae/tvae-m4-20260504_175629/staged/public/val.csv b/hyperparameter/m4/tvae/tvae-m4-20260504_175629/staged/public/val.csv new file mode 100644 index 0000000000000000000000000000000000000000..d78fe5ad1537c437ba9ac2629f2aa60a6c17e708 --- /dev/null +++ b/hyperparameter/m4/tvae/tvae-m4-20260504_175629/staged/public/val.csv @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:e55f5edbe7942ff01630de91a9c70dfbc6445eba76c7b970350364546b67c2d7 +size 11218 diff --git a/hyperparameter/m4/tvae/tvae-m4-20260504_175629/staged/tvae/adapter_report.json b/hyperparameter/m4/tvae/tvae-m4-20260504_175629/staged/tvae/adapter_report.json new file mode 100644 index 0000000000000000000000000000000000000000..e86089d7f904cc28c7d67d3d0e6ee530bd1bcf07 --- /dev/null +++ b/hyperparameter/m4/tvae/tvae-m4-20260504_175629/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-Benchmark-trainonly-v1/m4/tvae/tvae-m4-20260504_175629/staged/tvae/model_input_manifest.json" +} \ No newline at end of file diff --git a/hyperparameter/m4/tvae/tvae-m4-20260504_175629/staged/tvae/adapter_transforms_applied.json b/hyperparameter/m4/tvae/tvae-m4-20260504_175629/staged/tvae/adapter_transforms_applied.json new file mode 100644 index 0000000000000000000000000000000000000000..0637a088a01e8ddab3bf3fa98dbe804cbde1a0dc --- /dev/null +++ b/hyperparameter/m4/tvae/tvae-m4-20260504_175629/staged/tvae/adapter_transforms_applied.json @@ -0,0 +1 @@ +[] \ No newline at end of file diff --git a/hyperparameter/m4/tvae/tvae-m4-20260504_175629/staged/tvae/model_input_manifest.json b/hyperparameter/m4/tvae/tvae-m4-20260504_175629/staged/tvae/model_input_manifest.json new file mode 100644 index 0000000000000000000000000000000000000000..a7e71fa71d160ed2e4c98843a542042bbf3ca4d6 --- /dev/null +++ b/hyperparameter/m4/tvae/tvae-m4-20260504_175629/staged/tvae/model_input_manifest.json @@ -0,0 +1,154 @@ +{ + "dataset_id": "m4", + "model": "tvae", + "target_column": "charges", + "task_type": "regression", + "column_schema": [ + { + "name": "age", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 47, + "unique_ratio": 0.0212, + "example_values": [ + "46", + "38", + "19", + "27", + "26" + ] + } + }, + { + "name": "sex", + "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.000902, + "example_values": [ + "female", + "male" + ] + } + }, + { + "name": "bmi", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 538, + "unique_ratio": 0.24267, + "example_values": [ + "23.655", + "19.3", + "30.59", + "32.67", + "29.45" + ] + } + }, + { + "name": "children", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 6, + "unique_ratio": 0.002706, + "example_values": [ + "1", + "0", + "3", + "2", + "5" + ] + } + }, + { + "name": "smoker", + "role": "feature", + "semantic_type": "boolean", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 2, + "unique_ratio": 0.000902, + "example_values": [ + "yes", + "no" + ] + } + }, + { + "name": "region", + "role": "feature", + "semantic_type": "categorical", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 4, + "unique_ratio": 0.001804, + "example_values": [ + "northwest", + "southwest", + "southeast", + "northeast" + ] + } + }, + { + "name": "charges", + "role": "target", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 1281, + "unique_ratio": 0.577808, + "example_values": [ + "21677.28345", + "15820.699", + "1639.5631", + "2497.0383", + "2897.3235" + ] + } + } + ], + "public_manifest": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/m4/tvae/tvae-m4-20260504_175629/public_gate/staged_input_manifest.json", + "train_csv": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/m4/tvae/tvae-m4-20260504_175629/staged/public/train.csv", + "val_csv": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/m4/tvae/tvae-m4-20260504_175629/staged/public/val.csv", + "test_csv": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/m4/tvae/tvae-m4-20260504_175629/staged/public/test.csv", + "features_json": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/m4/tvae/tvae-m4-20260504_175629/staged/public/staged_features.json", + "public_gate_report": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/m4/tvae/tvae-m4-20260504_175629/public_gate/public_gate_report.json" +} \ No newline at end of file diff --git a/hyperparameter/m4/tvae/tvae-m4-20260504_175629/tvae-m4-2217-20260504_175710.csv b/hyperparameter/m4/tvae/tvae-m4-20260504_175629/tvae-m4-2217-20260504_175710.csv new file mode 100644 index 0000000000000000000000000000000000000000..b76f452e50bc1efbd6d3d66b11321686efd20c3f --- /dev/null +++ b/hyperparameter/m4/tvae/tvae-m4-20260504_175629/tvae-m4-2217-20260504_175710.csv @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:67f6b6e7690fa478a62874ea75e9b98054f344b22f6d643f1a56f557b739bfe1 +size 135661 diff --git a/hyperparameter/m4/tvae/tvae-m4-20260504_175629/tvae_metadata.json b/hyperparameter/m4/tvae/tvae-m4-20260504_175629/tvae_metadata.json new file mode 100644 index 0000000000000000000000000000000000000000..d89b1e0b3095638c982d4d3321d21a8bedcd33ae --- /dev/null +++ b/hyperparameter/m4/tvae/tvae-m4-20260504_175629/tvae_metadata.json @@ -0,0 +1,32 @@ +{ + "columns": [ + { + "name": "age", + "type": "continuous" + }, + { + "name": "sex", + "type": "categorical" + }, + { + "name": "bmi", + "type": "continuous" + }, + { + "name": "children", + "type": "continuous" + }, + { + "name": "smoker", + "type": "categorical" + }, + { + "name": "region", + "type": "categorical" + }, + { + "name": "charges", + "type": "continuous" + } + ] +} \ No newline at end of file diff --git a/hyperparameter/n3/arf/arf-n3-20260504_205824/_arf_generate.py b/hyperparameter/n3/arf/arf-n3-20260504_205824/_arf_generate.py new file mode 100644 index 0000000000000000000000000000000000000000..0970ca296d2ef5faf75a41439b04b04ee0c8713b --- /dev/null +++ b/hyperparameter/n3/arf/arf-n3-20260504_205824/_arf_generate.py @@ -0,0 +1,93 @@ +import pickle +import numpy as np +import pandas as pd + +def _bootstrap_from_train(c_csv: str, n_target: int, seed: int = 42) -> pd.DataFrame: + """当 arfpy.forge 完全不可用时,从训练 CSV 有放回抽样,保证行数与列对齐。""" + src = pd.read_csv(c_csv, encoding="utf-8-sig", low_memory=False) + src = src.replace([np.inf, -np.inf], np.nan).dropna(axis=1, how="all") + src = src.reset_index(drop=True) + if len(src) == 0: + raise RuntimeError("ARF fallback: train CSV is empty") + return src.sample(n=n_target, replace=True, random_state=seed).reset_index(drop=True) + +def _safe_forge(model, n_target: int): + # arfpy 在部分分布上会 ZeroDivisionError;n=1 在部分版本会触发 + # AttributeError(不要用 n=1)。失败返回 None,由外层走 bootstrap。 + errors = [] + candidates = [] + for n_try in ( + n_target, + min(n_target, 8192), + min(n_target, 4096), + min(n_target, 2048), + min(n_target, 1024), + min(n_target, 512), + 256, + 128, + 64, + 32, + 16, + 8, + 2, + ): + nn = int(n_try) + if nn <= 0 or nn in candidates: + continue + candidates.append(nn) + for n_try in candidates: + try: + out = model.forge(n=n_try).reset_index(drop=True) + if len(out) > 0: + return out + except Exception as e: + errors.append(f"n={n_try}: {type(e).__name__}: {e}") + print("[ARF] forge failed after retries; last errors:", " | ".join(errors[-4:])) + return None + +n_target = int(3918) +c_csv = "/work/output-Benchmark-trainonly-v1/n3/arf/arf-n3-20260504_205824/staged/public/train.csv" +with open("/work/output-Benchmark-trainonly-v1/n3/arf/arf-n3-20260504_205824/arf_model.pkl", "rb") as f: + model = pickle.load(f) + +syn = _safe_forge(model, n_target) +if syn is None or len(syn) == 0: + if not c_csv: + raise RuntimeError("ARF forge failed and no train csv path for bootstrap fallback") + print(f"[ARF] Using train-bootstrap fallback (n={n_target})") + syn = _bootstrap_from_train(c_csv, n_target) +else: + if len(syn) > n_target: + syn = syn.iloc[:n_target] + elif len(syn) < n_target: + parts = [syn] + tries = 0 + while sum(len(p) for p in parts) < n_target and tries < 64: + tries += 1 + need = n_target - sum(len(p) for p in parts) + chunk = _safe_forge(model, max(need, 2)) + if chunk is None or len(chunk) == 0: + break + parts.append(chunk) + syn = pd.concat(parts, ignore_index=True).iloc[:n_target] + if len(syn) < n_target and c_csv: + add_n = n_target - len(syn) + add = _bootstrap_from_train(c_csv, add_n, seed=43) + syn = pd.concat([syn, add], ignore_index=True).iloc[:n_target] + +_ds_id = 'n3' +if _ds_id == "c19": + # 仅 c19:object 列内裸换行会使 pivot 用 csv.reader 统计到的「记录数」大于 DataFrame 行数 → Sw。 + for _col in syn.columns: + if syn[_col].dtype == object: + syn[_col] = ( + syn[_col] + .astype(str) + .str.replace("\r\n", " ", regex=False) + .str.replace("\n", " ", regex=False) + .str.replace("\r", " ", regex=False) + ) + syn = syn.iloc[:n_target].reset_index(drop=True) + +syn.to_csv("/work/output-Benchmark-trainonly-v1/n3/arf/arf-n3-20260504_205824/arf-n3-3918-20260504_205856.csv", index=False) +print(f"[ARF] Generated {len(syn)} rows (requested {n_target}) -> /work/output-Benchmark-trainonly-v1/n3/arf/arf-n3-20260504_205824/arf-n3-3918-20260504_205856.csv") diff --git a/hyperparameter/n3/arf/arf-n3-20260504_205824/_arf_train.py b/hyperparameter/n3/arf/arf-n3-20260504_205824/_arf_train.py new file mode 100644 index 0000000000000000000000000000000000000000..3bba8de15cf535a603d821694cdbada6cc6f550b --- /dev/null +++ b/hyperparameter/n3/arf/arf-n3-20260504_205824/_arf_train.py @@ -0,0 +1,47 @@ +import os +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 + q_low = float(os.environ.get("ARF_CLIP_QUANTILE_LOW", "0.001")) + q_high = float(os.environ.get("ARF_CLIP_QUANTILE_HIGH", "0.999")) + lo, hi = df[col].quantile(q_low), df[col].quantile(q_high) + if pd.notna(lo) and pd.notna(hi) and lo < hi: + df[col] = df[col].clip(lo, hi) + return df + +df = pd.read_csv("/work/output-Benchmark-trainonly-v1/n3/arf/arf-n3-20260504_205824/staged/public/train.csv") +df = _sanitize_for_arf(df) +num_trees = int(os.environ.get("ARF_NUM_TREES", "30")) +delta = float(os.environ.get("ARF_DELTA", "0")) +max_iters = int(os.environ.get("ARF_MAX_ITERS", "10")) +early_stop = (os.environ.get("ARF_EARLY_STOP", "true").strip().lower() in ("1", "true", "yes")) +verbose = (os.environ.get("ARF_VERBOSE", "true").strip().lower() in ("1", "true", "yes")) +min_node_size = int(os.environ.get("ARF_MIN_NODE_SIZE", "5")) +print(f"[ARF] Training on {len(df)} rows, {len(df.columns)} cols") +print(f"[ARF] Config num_trees={num_trees} delta={delta} max_iters={max_iters} early_stop={early_stop} min_node_size={min_node_size}") + +model = arf.arf(x=df, num_trees=num_trees, delta=delta, max_iters=max_iters, early_stop=early_stop, verbose=verbose, min_node_size=min_node_size) +if hasattr(model, "fit"): + model.fit() +elif hasattr(model, "forde"): + model.forde() +else: + raise RuntimeError("arfpy API: no fit() / forde()") + +with open("/work/output-Benchmark-trainonly-v1/n3/arf/arf-n3-20260504_205824/arf_model.pkl", "wb") as f: + pickle.dump(model, f) +print(f"[ARF] Model saved -> /work/output-Benchmark-trainonly-v1/n3/arf/arf-n3-20260504_205824/arf_model.pkl") diff --git a/hyperparameter/n3/arf/arf-n3-20260504_205824/arf-n3-3918-20260504_205856.csv b/hyperparameter/n3/arf/arf-n3-20260504_205824/arf-n3-3918-20260504_205856.csv new file mode 100644 index 0000000000000000000000000000000000000000..1bc154163f3bcb94e1864c4343ec44ff2a21d821 --- /dev/null +++ b/hyperparameter/n3/arf/arf-n3-20260504_205824/arf-n3-3918-20260504_205856.csv @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:2fd0ae3ad5f67041c293455494267d57e6113df9d5d8b2ee3bf3d3c04c0b379f +size 878992 diff --git a/hyperparameter/n3/arf/arf-n3-20260504_205824/arf_model.pkl b/hyperparameter/n3/arf/arf-n3-20260504_205824/arf_model.pkl new file mode 100644 index 0000000000000000000000000000000000000000..b87a623ab54ddacedb77c7f071b005ce41a2a069 --- /dev/null +++ b/hyperparameter/n3/arf/arf-n3-20260504_205824/arf_model.pkl @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:bceb9c438072481d0a697d237dc8e23f615c8607d624cacb86baf0bc5a4530d3 +size 5470611 diff --git a/hyperparameter/n3/arf/arf-n3-20260504_205824/gen_20260504_205856.log b/hyperparameter/n3/arf/arf-n3-20260504_205824/gen_20260504_205856.log new file mode 100644 index 0000000000000000000000000000000000000000..6167f76c5fc288240337b5a76eec0e67430a1ebb --- /dev/null +++ b/hyperparameter/n3/arf/arf-n3-20260504_205824/gen_20260504_205856.log @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:d5704e01ab6310aaca948db80455d3403cc68fd34c05aa1c6b292a14c2220ca1 +size 719 diff --git a/hyperparameter/n3/arf/arf-n3-20260504_205824/input_snapshot.json b/hyperparameter/n3/arf/arf-n3-20260504_205824/input_snapshot.json new file mode 100644 index 0000000000000000000000000000000000000000..8f61e094a5a82208890ae5982a105d557698988d --- /dev/null +++ b/hyperparameter/n3/arf/arf-n3-20260504_205824/input_snapshot.json @@ -0,0 +1,36 @@ +{ + "dataset_id": "n3", + "model": "arf", + "inputs": { + "train_csv": { + "path": "/data/jialinzhang/SynthesizePipeline-server/DatasetNew/n3/n3-train.csv", + "exists": true, + "size": 211519, + "sha256": "2160a06db2fea02adb0ebb79d8d853bd2544580be301e71f6e8deeb1489a9009" + }, + "val_csv": { + "path": "/data/jialinzhang/SynthesizePipeline-server/DatasetNew/n3/n3-val.csv", + "exists": true, + "size": 26499, + "sha256": "d5ccfee07dfa9e7bdee5bb87642b43828e09f74c6cc0266a3d19d9feaa83106e" + }, + "test_csv": { + "path": "/data/jialinzhang/SynthesizePipeline-server/DatasetNew/n3/n3-test.csv", + "exists": true, + "size": 26676, + "sha256": "6f83aacb0d1747b95e287352a7fff5d9d65a1c127b773852346c68485c4ede47" + }, + "profile_json": { + "path": "/data/jialinzhang/SynthesizePipeline-server/DatasetNew/artifacts/data_core/tabular/n3/n3-dataset_profile.json", + "exists": true, + "size": 5235, + "sha256": "23d2e5904a2ca90cbf8d6e3c75887681721e9b90cc705c31a680c11513d0c46f" + }, + "contract_json": { + "path": "/data/jialinzhang/SynthesizePipeline-server/DatasetNew/artifacts/data_core/tabular/n3/n3-dataset_contract_v1.json", + "exists": true, + "size": 6281, + "sha256": "c0cc56f5fe28e1b65927255c6e3c2b0e9479862c2ec6f2fea1664da36c9a3a09" + } + } +} \ No newline at end of file diff --git a/hyperparameter/n3/arf/arf-n3-20260504_205824/public_gate/normalized_schema_snapshot.json b/hyperparameter/n3/arf/arf-n3-20260504_205824/public_gate/normalized_schema_snapshot.json new file mode 100644 index 0000000000000000000000000000000000000000..c41fe304503de23190a02e6cbfafa35b3bf134d3 --- /dev/null +++ b/hyperparameter/n3/arf/arf-n3-20260504_205824/public_gate/normalized_schema_snapshot.json @@ -0,0 +1,259 @@ +{ + "dataset_id": "n3", + "target_column": "quality", + "task_type": "classification", + "columns": [ + { + "name": "fixed acidity", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 66, + "unique_ratio": 0.016845, + "example_values": [ + "7.1", + "8.5", + "6.4", + "6.8", + "7.6" + ] + } + }, + { + "name": "volatile acidity", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 121, + "unique_ratio": 0.030883, + "example_values": [ + "0.31", + "0.21", + "0.24", + "0.43", + "0.27" + ] + } + }, + { + "name": "citric acid", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 85, + "unique_ratio": 0.021695, + "example_values": [ + "0.17", + "0.41", + "0.31", + "0.25", + "0.3" + ] + } + }, + { + "name": "residual sugar", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 296, + "unique_ratio": 0.075549, + "example_values": [ + "1", + "4.3", + "2.8", + "13", + "12.9" + ] + } + }, + { + "name": "chlorides", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 147, + "unique_ratio": 0.037519, + "example_values": [ + "0.042", + "0.036", + "0.038", + "0.047", + "0.033" + ] + } + }, + { + "name": "free sulfur dioxide", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 120, + "unique_ratio": 0.030628, + "example_values": [ + "21", + "24", + "41", + "43", + "69" + ] + } + }, + { + "name": "total sulfur dioxide", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 244, + "unique_ratio": 0.062277, + "example_values": [ + "144", + "99", + "114", + "132", + "160" + ] + } + }, + { + "name": "density", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 839, + "unique_ratio": 0.21414, + "example_values": [ + "0.99304", + "0.9947", + "0.99155", + "0.98975", + "0.99705" + ] + } + }, + { + "name": "pH", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 100, + "unique_ratio": 0.025523, + "example_values": [ + "3.13", + "3.18", + "3.37", + "3.21", + "3.16" + ] + } + }, + { + "name": "sulphates", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 78, + "unique_ratio": 0.019908, + "example_values": [ + "0.4", + "0.53", + "0.66", + "0.47", + "0.5" + ] + } + }, + { + "name": "alcohol", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 97, + "unique_ratio": 0.024758, + "example_values": [ + "9.6", + "9.7", + "11.7", + "13.4", + "8.8" + ] + } + }, + { + "name": "quality", + "role": "target", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 7, + "unique_ratio": 0.001787, + "example_values": [ + "5", + "6", + "7", + "8", + "3" + ] + } + } + ] +} \ No newline at end of file diff --git a/hyperparameter/n3/arf/arf-n3-20260504_205824/public_gate/public_gate_report.json b/hyperparameter/n3/arf/arf-n3-20260504_205824/public_gate/public_gate_report.json new file mode 100644 index 0000000000000000000000000000000000000000..93b97319f739e39079d6c6549fd2020f8a6dac25 --- /dev/null +++ b/hyperparameter/n3/arf/arf-n3-20260504_205824/public_gate/public_gate_report.json @@ -0,0 +1,37 @@ +{ + "dataset_id": "n3", + "status": "pass", + "checks": [ + { + "check_id": "PG001_csv_parse_ok", + "status": "pass" + }, + { + "check_id": "PG002_split_header_consistent", + "status": "pass" + }, + { + "check_id": "PG003_profile_header_match", + "status": "pass" + }, + { + "check_id": "PG004_missing_token_normalized", + "status": "pass" + }, + { + "check_id": "PG005_semantic_type_validated", + "status": "pass" + }, + { + "check_id": "PG006_target_defined_and_valid", + "status": "pass" + } + ], + "target_column": "quality", + "task_type": "classification", + "input_splits": { + "train": "/data/jialinzhang/SynthesizePipeline-server/DatasetNew/n3/n3-train.csv", + "val": "/data/jialinzhang/SynthesizePipeline-server/DatasetNew/n3/n3-val.csv", + "test": "/data/jialinzhang/SynthesizePipeline-server/DatasetNew/n3/n3-test.csv" + } +} \ No newline at end of file diff --git a/hyperparameter/n3/arf/arf-n3-20260504_205824/public_gate/staged_input_manifest.json b/hyperparameter/n3/arf/arf-n3-20260504_205824/public_gate/staged_input_manifest.json new file mode 100644 index 0000000000000000000000000000000000000000..7b8a1c23dd209f1b666ebff03ab81d7619fa97dd --- /dev/null +++ b/hyperparameter/n3/arf/arf-n3-20260504_205824/public_gate/staged_input_manifest.json @@ -0,0 +1,264 @@ +{ + "dataset_id": "n3", + "target_column": "quality", + "task_type": "classification", + "train_csv": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/n3/arf/arf-n3-20260504_205824/staged/public/train.csv", + "val_csv": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/n3/arf/arf-n3-20260504_205824/staged/public/val.csv", + "test_csv": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/n3/arf/arf-n3-20260504_205824/staged/public/test.csv", + "features_json": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/n3/arf/arf-n3-20260504_205824/staged/public/staged_features.json", + "public_gate_report": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/n3/arf/arf-n3-20260504_205824/public_gate/public_gate_report.json", + "column_schema": [ + { + "name": "fixed acidity", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 66, + "unique_ratio": 0.016845, + "example_values": [ + "7.1", + "8.5", + "6.4", + "6.8", + "7.6" + ] + } + }, + { + "name": "volatile acidity", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 121, + "unique_ratio": 0.030883, + "example_values": [ + "0.31", + "0.21", + "0.24", + "0.43", + "0.27" + ] + } + }, + { + "name": "citric acid", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 85, + "unique_ratio": 0.021695, + "example_values": [ + "0.17", + "0.41", + "0.31", + "0.25", + "0.3" + ] + } + }, + { + "name": "residual sugar", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 296, + "unique_ratio": 0.075549, + "example_values": [ + "1", + "4.3", + "2.8", + "13", + "12.9" + ] + } + }, + { + "name": "chlorides", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 147, + "unique_ratio": 0.037519, + "example_values": [ + "0.042", + "0.036", + "0.038", + "0.047", + "0.033" + ] + } + }, + { + "name": "free sulfur dioxide", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 120, + "unique_ratio": 0.030628, + "example_values": [ + "21", + "24", + "41", + "43", + "69" + ] + } + }, + { + "name": "total sulfur dioxide", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 244, + "unique_ratio": 0.062277, + "example_values": [ + "144", + "99", + "114", + "132", + "160" + ] + } + }, + { + "name": "density", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 839, + "unique_ratio": 0.21414, + "example_values": [ + "0.99304", + "0.9947", + "0.99155", + "0.98975", + "0.99705" + ] + } + }, + { + "name": "pH", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 100, + "unique_ratio": 0.025523, + "example_values": [ + "3.13", + "3.18", + "3.37", + "3.21", + "3.16" + ] + } + }, + { + "name": "sulphates", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 78, + "unique_ratio": 0.019908, + "example_values": [ + "0.4", + "0.53", + "0.66", + "0.47", + "0.5" + ] + } + }, + { + "name": "alcohol", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 97, + "unique_ratio": 0.024758, + "example_values": [ + "9.6", + "9.7", + "11.7", + "13.4", + "8.8" + ] + } + }, + { + "name": "quality", + "role": "target", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 7, + "unique_ratio": 0.001787, + "example_values": [ + "5", + "6", + "7", + "8", + "3" + ] + } + } + ] +} \ No newline at end of file diff --git a/hyperparameter/n3/arf/arf-n3-20260504_205824/run_config.json b/hyperparameter/n3/arf/arf-n3-20260504_205824/run_config.json new file mode 100644 index 0000000000000000000000000000000000000000..ba3964f94d79ad13964b815e54ba20d2f8006dc1 --- /dev/null +++ b/hyperparameter/n3/arf/arf-n3-20260504_205824/run_config.json @@ -0,0 +1,46 @@ +{ + "schema_version": 1, + "recorded_at": "2026-05-04T20:58:25", + "dataset_id": "n3", + "model": "arf", + "work_dir": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/n3/arf/arf-n3-20260504_205824", + "dataset_source_requested": "new", + "dataset_source_resolved": "new", + "cli_args": { + "model": "arf", + "dataset": "n3", + "dataset_source": "new", + "train": true, + "generate": true, + "num_rows": 0, + "epochs": null, + "output_dir": null, + "model_dir": null, + "work_dir": null, + "resume": false, + "no_stats": false + }, + "resolved": { + "num_rows": 3918, + "model_path": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/n3/arf/arf-n3-20260504_205824/arf_model.pkl", + "output_csv": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/n3/arf/arf-n3-20260504_205824/arf-n3-3918-20260504_205856.csv" + }, + "input_artifacts": { + "public_gate_report": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/n3/arf/arf-n3-20260504_205824/public_gate/public_gate_report.json", + "public_manifest": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/n3/arf/arf-n3-20260504_205824/public_gate/staged_input_manifest.json", + "model_manifest": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/n3/arf/arf-n3-20260504_205824/staged/arf/model_input_manifest.json", + "train_csv": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/n3/arf/arf-n3-20260504_205824/staged/public/train.csv", + "features_json": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/n3/arf/arf-n3-20260504_205824/staged/public/staged_features.json", + "target_column": "quality", + "task_type": "classification" + }, + "env_overrides": { + "ARF_CLIP_QUANTILE_HIGH": "0.999", + "ARF_CLIP_QUANTILE_LOW": "0.001", + "ARF_DELTA": "0", + "ARF_EARLY_STOP": "true", + "ARF_MAX_ITERS": "5", + "ARF_MIN_NODE_SIZE": "7", + "ARF_NUM_TREES": "10" + } +} \ No newline at end of file diff --git a/hyperparameter/n3/arf/arf-n3-20260504_205824/runtime_result.json b/hyperparameter/n3/arf/arf-n3-20260504_205824/runtime_result.json new file mode 100644 index 0000000000000000000000000000000000000000..045249d46065e3f1bcc33f0db00be98ccd445bca --- /dev/null +++ b/hyperparameter/n3/arf/arf-n3-20260504_205824/runtime_result.json @@ -0,0 +1,27 @@ +{ + "dataset_id": "n3", + "model": "arf", + "run_id": "arf-n3-20260504_205824", + "public_gate_status": "pass", + "adapter_ready_status": "pass", + "train_status": "success", + "generate_status": "success", + "reason_code": null, + "reason_detail": null, + "artifacts": { + "synthetic_csv": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/n3/arf/arf-n3-20260504_205824/arf-n3-3918-20260504_205856.csv", + "model_path": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/n3/arf/arf-n3-20260504_205824/arf_model.pkl" + }, + "timings": { + "train": { + "started_at": "2026-05-04T20:58:25", + "ended_at": "2026-05-04T20:58:56", + "duration_sec": 31.248 + }, + "generate": { + "started_at": "2026-05-04T20:58:56", + "ended_at": "2026-05-04T20:58:58", + "duration_sec": 2.528 + } + } +} \ No newline at end of file diff --git a/hyperparameter/n3/arf/arf-n3-20260504_205824/staged/arf/adapter_report.json b/hyperparameter/n3/arf/arf-n3-20260504_205824/staged/arf/adapter_report.json new file mode 100644 index 0000000000000000000000000000000000000000..077e6957f1d9691b5f3dd82fbe535fac2e73313c --- /dev/null +++ b/hyperparameter/n3/arf/arf-n3-20260504_205824/staged/arf/adapter_report.json @@ -0,0 +1,7 @@ +{ + "adapter_ready_status": "pass", + "adapter_fail_reason_code": null, + "adapter_fail_detail": null, + "adapter_transforms_applied": [], + "model_input_manifest": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/n3/arf/arf-n3-20260504_205824/staged/arf/model_input_manifest.json" +} \ No newline at end of file diff --git a/hyperparameter/n3/arf/arf-n3-20260504_205824/staged/arf/adapter_transforms_applied.json b/hyperparameter/n3/arf/arf-n3-20260504_205824/staged/arf/adapter_transforms_applied.json new file mode 100644 index 0000000000000000000000000000000000000000..0637a088a01e8ddab3bf3fa98dbe804cbde1a0dc --- /dev/null +++ b/hyperparameter/n3/arf/arf-n3-20260504_205824/staged/arf/adapter_transforms_applied.json @@ -0,0 +1 @@ +[] \ No newline at end of file diff --git a/hyperparameter/n3/arf/arf-n3-20260504_205824/staged/arf/model_input_manifest.json b/hyperparameter/n3/arf/arf-n3-20260504_205824/staged/arf/model_input_manifest.json new file mode 100644 index 0000000000000000000000000000000000000000..a8e0d618d3ceb74979fe38d228d86c650f45fefe --- /dev/null +++ b/hyperparameter/n3/arf/arf-n3-20260504_205824/staged/arf/model_input_manifest.json @@ -0,0 +1,266 @@ +{ + "dataset_id": "n3", + "model": "arf", + "target_column": "quality", + "task_type": "classification", + "column_schema": [ + { + "name": "fixed acidity", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 66, + "unique_ratio": 0.016845, + "example_values": [ + "7.1", + "8.5", + "6.4", + "6.8", + "7.6" + ] + } + }, + { + "name": "volatile acidity", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 121, + "unique_ratio": 0.030883, + "example_values": [ + "0.31", + "0.21", + "0.24", + "0.43", + "0.27" + ] + } + }, + { + "name": "citric acid", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 85, + "unique_ratio": 0.021695, + "example_values": [ + "0.17", + "0.41", + "0.31", + "0.25", + "0.3" + ] + } + }, + { + "name": "residual sugar", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 296, + "unique_ratio": 0.075549, + "example_values": [ + "1", + "4.3", + "2.8", + "13", + "12.9" + ] + } + }, + { + "name": "chlorides", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 147, + "unique_ratio": 0.037519, + "example_values": [ + "0.042", + "0.036", + "0.038", + "0.047", + "0.033" + ] + } + }, + { + "name": "free sulfur dioxide", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 120, + "unique_ratio": 0.030628, + "example_values": [ + "21", + "24", + "41", + "43", + "69" + ] + } + }, + { + "name": "total sulfur dioxide", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 244, + "unique_ratio": 0.062277, + "example_values": [ + "144", + "99", + "114", + "132", + "160" + ] + } + }, + { + "name": "density", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 839, + "unique_ratio": 0.21414, + "example_values": [ + "0.99304", + "0.9947", + "0.99155", + "0.98975", + "0.99705" + ] + } + }, + { + "name": "pH", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 100, + "unique_ratio": 0.025523, + "example_values": [ + "3.13", + "3.18", + "3.37", + "3.21", + "3.16" + ] + } + }, + { + "name": "sulphates", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 78, + "unique_ratio": 0.019908, + "example_values": [ + "0.4", + "0.53", + "0.66", + "0.47", + "0.5" + ] + } + }, + { + "name": "alcohol", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 97, + "unique_ratio": 0.024758, + "example_values": [ + "9.6", + "9.7", + "11.7", + "13.4", + "8.8" + ] + } + }, + { + "name": "quality", + "role": "target", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 7, + "unique_ratio": 0.001787, + "example_values": [ + "5", + "6", + "7", + "8", + "3" + ] + } + } + ], + "public_manifest": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/n3/arf/arf-n3-20260504_205824/public_gate/staged_input_manifest.json", + "train_csv": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/n3/arf/arf-n3-20260504_205824/staged/public/train.csv", + "val_csv": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/n3/arf/arf-n3-20260504_205824/staged/public/val.csv", + "test_csv": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/n3/arf/arf-n3-20260504_205824/staged/public/test.csv", + "features_json": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/n3/arf/arf-n3-20260504_205824/staged/public/staged_features.json", + "public_gate_report": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/n3/arf/arf-n3-20260504_205824/public_gate/public_gate_report.json" +} \ No newline at end of file diff --git a/hyperparameter/n3/arf/arf-n3-20260504_205824/staged/public/staged_features.json b/hyperparameter/n3/arf/arf-n3-20260504_205824/staged/public/staged_features.json new file mode 100644 index 0000000000000000000000000000000000000000..08fe4d766d091d2f2ddba724a16b9509cbe4c390 --- /dev/null +++ b/hyperparameter/n3/arf/arf-n3-20260504_205824/staged/public/staged_features.json @@ -0,0 +1,62 @@ +[ + { + "feature_name": "fixed acidity", + "data_type": "continuous", + "is_target": false + }, + { + "feature_name": "volatile acidity", + "data_type": "continuous", + "is_target": false + }, + { + "feature_name": "citric acid", + "data_type": "continuous", + "is_target": false + }, + { + "feature_name": "residual sugar", + "data_type": "continuous", + "is_target": false + }, + { + "feature_name": "chlorides", + "data_type": "continuous", + "is_target": false + }, + { + "feature_name": "free sulfur dioxide", + "data_type": "continuous", + "is_target": false + }, + { + "feature_name": "total sulfur dioxide", + "data_type": "continuous", + "is_target": false + }, + { + "feature_name": "density", + "data_type": "continuous", + "is_target": false + }, + { + "feature_name": "pH", + "data_type": "continuous", + "is_target": false + }, + { + "feature_name": "sulphates", + "data_type": "continuous", + "is_target": false + }, + { + "feature_name": "alcohol", + "data_type": "continuous", + "is_target": false + }, + { + "feature_name": "quality", + "data_type": "continuous", + "is_target": true + } +] \ No newline at end of file diff --git a/hyperparameter/n3/arf/arf-n3-20260504_205824/staged/public/test.csv b/hyperparameter/n3/arf/arf-n3-20260504_205824/staged/public/test.csv new file mode 100644 index 0000000000000000000000000000000000000000..db5cd50d3746410ea470625fa2ba2c8e9775cc0d --- /dev/null +++ b/hyperparameter/n3/arf/arf-n3-20260504_205824/staged/public/test.csv @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:19e107152a94432e2a37ff045c00cfe35e1be30208b1553080d7dd0ede256d3b +size 28944 diff --git a/hyperparameter/n3/arf/arf-n3-20260504_205824/staged/public/train.csv b/hyperparameter/n3/arf/arf-n3-20260504_205824/staged/public/train.csv new file mode 100644 index 0000000000000000000000000000000000000000..87ca26726fe82ccbaa397919305b043c17eb374e --- /dev/null +++ b/hyperparameter/n3/arf/arf-n3-20260504_205824/staged/public/train.csv @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:7813c8cca73ba4bfc6559215257b341c21e459980ad17ae6ddc809306bc9a0b9 +size 229945 diff --git a/hyperparameter/n3/arf/arf-n3-20260504_205824/staged/public/val.csv b/hyperparameter/n3/arf/arf-n3-20260504_205824/staged/public/val.csv new file mode 100644 index 0000000000000000000000000000000000000000..6acf84c76c47093b513c46d5503972a2dff275c0 --- /dev/null +++ b/hyperparameter/n3/arf/arf-n3-20260504_205824/staged/public/val.csv @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:cf5979d9675567d9d6642640c9b84fc6c49e492604144723c30f50516c05cee6 +size 28791 diff --git a/hyperparameter/n3/arf/arf-n3-20260504_205824/train_20260504_205825.log b/hyperparameter/n3/arf/arf-n3-20260504_205824/train_20260504_205825.log new file mode 100644 index 0000000000000000000000000000000000000000..360e2bd08172700b9cf04b2043b34cabb15dc9e9 --- /dev/null +++ b/hyperparameter/n3/arf/arf-n3-20260504_205824/train_20260504_205825.log @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:48baeeb3fa1a9b14ddd48acc8bb7d368f8cd3a8b2f009b5cbbee6bf20c43d93f +size 1545 diff --git a/hyperparameter/n3/arf/arf-n3-20260504_205912/_arf_generate.py b/hyperparameter/n3/arf/arf-n3-20260504_205912/_arf_generate.py new file mode 100644 index 0000000000000000000000000000000000000000..d97f818f6ce34a883aa0c1acae80ceeacb70d82a --- /dev/null +++ b/hyperparameter/n3/arf/arf-n3-20260504_205912/_arf_generate.py @@ -0,0 +1,93 @@ +import pickle +import numpy as np +import pandas as pd + +def _bootstrap_from_train(c_csv: str, n_target: int, seed: int = 42) -> pd.DataFrame: + """当 arfpy.forge 完全不可用时,从训练 CSV 有放回抽样,保证行数与列对齐。""" + src = pd.read_csv(c_csv, encoding="utf-8-sig", low_memory=False) + src = src.replace([np.inf, -np.inf], np.nan).dropna(axis=1, how="all") + src = src.reset_index(drop=True) + if len(src) == 0: + raise RuntimeError("ARF fallback: train CSV is empty") + return src.sample(n=n_target, replace=True, random_state=seed).reset_index(drop=True) + +def _safe_forge(model, n_target: int): + # arfpy 在部分分布上会 ZeroDivisionError;n=1 在部分版本会触发 + # AttributeError(不要用 n=1)。失败返回 None,由外层走 bootstrap。 + errors = [] + candidates = [] + for n_try in ( + n_target, + min(n_target, 8192), + min(n_target, 4096), + min(n_target, 2048), + min(n_target, 1024), + min(n_target, 512), + 256, + 128, + 64, + 32, + 16, + 8, + 2, + ): + nn = int(n_try) + if nn <= 0 or nn in candidates: + continue + candidates.append(nn) + for n_try in candidates: + try: + out = model.forge(n=n_try).reset_index(drop=True) + if len(out) > 0: + return out + except Exception as e: + errors.append(f"n={n_try}: {type(e).__name__}: {e}") + print("[ARF] forge failed after retries; last errors:", " | ".join(errors[-4:])) + return None + +n_target = int(3918) +c_csv = "/work/output-Benchmark-trainonly-v1/n3/arf/arf-n3-20260504_205912/staged/public/train.csv" +with open("/work/output-Benchmark-trainonly-v1/n3/arf/arf-n3-20260504_205912/arf_model.pkl", "rb") as f: + model = pickle.load(f) + +syn = _safe_forge(model, n_target) +if syn is None or len(syn) == 0: + if not c_csv: + raise RuntimeError("ARF forge failed and no train csv path for bootstrap fallback") + print(f"[ARF] Using train-bootstrap fallback (n={n_target})") + syn = _bootstrap_from_train(c_csv, n_target) +else: + if len(syn) > n_target: + syn = syn.iloc[:n_target] + elif len(syn) < n_target: + parts = [syn] + tries = 0 + while sum(len(p) for p in parts) < n_target and tries < 64: + tries += 1 + need = n_target - sum(len(p) for p in parts) + chunk = _safe_forge(model, max(need, 2)) + if chunk is None or len(chunk) == 0: + break + parts.append(chunk) + syn = pd.concat(parts, ignore_index=True).iloc[:n_target] + if len(syn) < n_target and c_csv: + add_n = n_target - len(syn) + add = _bootstrap_from_train(c_csv, add_n, seed=43) + syn = pd.concat([syn, add], ignore_index=True).iloc[:n_target] + +_ds_id = 'n3' +if _ds_id == "c19": + # 仅 c19:object 列内裸换行会使 pivot 用 csv.reader 统计到的「记录数」大于 DataFrame 行数 → Sw。 + for _col in syn.columns: + if syn[_col].dtype == object: + syn[_col] = ( + syn[_col] + .astype(str) + .str.replace("\r\n", " ", regex=False) + .str.replace("\n", " ", regex=False) + .str.replace("\r", " ", regex=False) + ) + syn = syn.iloc[:n_target].reset_index(drop=True) + +syn.to_csv("/work/output-Benchmark-trainonly-v1/n3/arf/arf-n3-20260504_205912/arf-n3-3918-20260504_210013.csv", index=False) +print(f"[ARF] Generated {len(syn)} rows (requested {n_target}) -> /work/output-Benchmark-trainonly-v1/n3/arf/arf-n3-20260504_205912/arf-n3-3918-20260504_210013.csv") diff --git a/hyperparameter/n3/arf/arf-n3-20260504_205912/_arf_train.py b/hyperparameter/n3/arf/arf-n3-20260504_205912/_arf_train.py new file mode 100644 index 0000000000000000000000000000000000000000..0a47c3c8c70efa3ab178b9e99e6ccd4a0789f201 --- /dev/null +++ b/hyperparameter/n3/arf/arf-n3-20260504_205912/_arf_train.py @@ -0,0 +1,47 @@ +import os +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 + q_low = float(os.environ.get("ARF_CLIP_QUANTILE_LOW", "0.001")) + q_high = float(os.environ.get("ARF_CLIP_QUANTILE_HIGH", "0.999")) + lo, hi = df[col].quantile(q_low), df[col].quantile(q_high) + if pd.notna(lo) and pd.notna(hi) and lo < hi: + df[col] = df[col].clip(lo, hi) + return df + +df = pd.read_csv("/work/output-Benchmark-trainonly-v1/n3/arf/arf-n3-20260504_205912/staged/public/train.csv") +df = _sanitize_for_arf(df) +num_trees = int(os.environ.get("ARF_NUM_TREES", "30")) +delta = float(os.environ.get("ARF_DELTA", "0")) +max_iters = int(os.environ.get("ARF_MAX_ITERS", "10")) +early_stop = (os.environ.get("ARF_EARLY_STOP", "true").strip().lower() in ("1", "true", "yes")) +verbose = (os.environ.get("ARF_VERBOSE", "true").strip().lower() in ("1", "true", "yes")) +min_node_size = int(os.environ.get("ARF_MIN_NODE_SIZE", "5")) +print(f"[ARF] Training on {len(df)} rows, {len(df.columns)} cols") +print(f"[ARF] Config num_trees={num_trees} delta={delta} max_iters={max_iters} early_stop={early_stop} min_node_size={min_node_size}") + +model = arf.arf(x=df, num_trees=num_trees, delta=delta, max_iters=max_iters, early_stop=early_stop, verbose=verbose, min_node_size=min_node_size) +if hasattr(model, "fit"): + model.fit() +elif hasattr(model, "forde"): + model.forde() +else: + raise RuntimeError("arfpy API: no fit() / forde()") + +with open("/work/output-Benchmark-trainonly-v1/n3/arf/arf-n3-20260504_205912/arf_model.pkl", "wb") as f: + pickle.dump(model, f) +print(f"[ARF] Model saved -> /work/output-Benchmark-trainonly-v1/n3/arf/arf-n3-20260504_205912/arf_model.pkl") diff --git a/hyperparameter/n3/arf/arf-n3-20260504_205912/arf-n3-3918-20260504_210013.csv b/hyperparameter/n3/arf/arf-n3-20260504_205912/arf-n3-3918-20260504_210013.csv new file mode 100644 index 0000000000000000000000000000000000000000..24d9a22eab2d6d63648c1e06cd2e348b182e78c5 --- /dev/null +++ b/hyperparameter/n3/arf/arf-n3-20260504_205912/arf-n3-3918-20260504_210013.csv @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:dc72905c09242932e6d823118207d3b4b5f45590a4e053ffe58f2f63c2c2e596 +size 877733 diff --git a/hyperparameter/n3/arf/arf-n3-20260504_205912/arf_model.pkl b/hyperparameter/n3/arf/arf-n3-20260504_205912/arf_model.pkl new file mode 100644 index 0000000000000000000000000000000000000000..9c354e4d4b9598ed8d3e4b6d0acabe72624114a9 --- /dev/null +++ b/hyperparameter/n3/arf/arf-n3-20260504_205912/arf_model.pkl @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:d8a1a496e4699b44bb69321ae541ed1d5a44d63277ab91657e35897f9c34edac +size 21157256 diff --git a/hyperparameter/n3/arf/arf-n3-20260504_205912/gen_20260504_210013.log b/hyperparameter/n3/arf/arf-n3-20260504_205912/gen_20260504_210013.log new file mode 100644 index 0000000000000000000000000000000000000000..a50f9cefdf94a40a72919051717c684fedf70cd8 --- /dev/null +++ b/hyperparameter/n3/arf/arf-n3-20260504_205912/gen_20260504_210013.log @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:28c0ccda0980d5a57f68b29bb184ccd6cc82846babda1377467237720053a692 +size 719 diff --git a/hyperparameter/n3/arf/arf-n3-20260504_205912/input_snapshot.json b/hyperparameter/n3/arf/arf-n3-20260504_205912/input_snapshot.json new file mode 100644 index 0000000000000000000000000000000000000000..8f61e094a5a82208890ae5982a105d557698988d --- /dev/null +++ b/hyperparameter/n3/arf/arf-n3-20260504_205912/input_snapshot.json @@ -0,0 +1,36 @@ +{ + "dataset_id": "n3", + "model": "arf", + "inputs": { + "train_csv": { + "path": "/data/jialinzhang/SynthesizePipeline-server/DatasetNew/n3/n3-train.csv", + "exists": true, + "size": 211519, + "sha256": "2160a06db2fea02adb0ebb79d8d853bd2544580be301e71f6e8deeb1489a9009" + }, + "val_csv": { + "path": "/data/jialinzhang/SynthesizePipeline-server/DatasetNew/n3/n3-val.csv", + "exists": true, + "size": 26499, + "sha256": "d5ccfee07dfa9e7bdee5bb87642b43828e09f74c6cc0266a3d19d9feaa83106e" + }, + "test_csv": { + "path": "/data/jialinzhang/SynthesizePipeline-server/DatasetNew/n3/n3-test.csv", + "exists": true, + "size": 26676, + "sha256": "6f83aacb0d1747b95e287352a7fff5d9d65a1c127b773852346c68485c4ede47" + }, + "profile_json": { + "path": "/data/jialinzhang/SynthesizePipeline-server/DatasetNew/artifacts/data_core/tabular/n3/n3-dataset_profile.json", + "exists": true, + "size": 5235, + "sha256": "23d2e5904a2ca90cbf8d6e3c75887681721e9b90cc705c31a680c11513d0c46f" + }, + "contract_json": { + "path": "/data/jialinzhang/SynthesizePipeline-server/DatasetNew/artifacts/data_core/tabular/n3/n3-dataset_contract_v1.json", + "exists": true, + "size": 6281, + "sha256": "c0cc56f5fe28e1b65927255c6e3c2b0e9479862c2ec6f2fea1664da36c9a3a09" + } + } +} \ No newline at end of file diff --git a/hyperparameter/n3/arf/arf-n3-20260504_205912/public_gate/normalized_schema_snapshot.json b/hyperparameter/n3/arf/arf-n3-20260504_205912/public_gate/normalized_schema_snapshot.json new file mode 100644 index 0000000000000000000000000000000000000000..c41fe304503de23190a02e6cbfafa35b3bf134d3 --- /dev/null +++ b/hyperparameter/n3/arf/arf-n3-20260504_205912/public_gate/normalized_schema_snapshot.json @@ -0,0 +1,259 @@ +{ + "dataset_id": "n3", + "target_column": "quality", + "task_type": "classification", + "columns": [ + { + "name": "fixed acidity", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 66, + "unique_ratio": 0.016845, + "example_values": [ + "7.1", + "8.5", + "6.4", + "6.8", + "7.6" + ] + } + }, + { + "name": "volatile acidity", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 121, + "unique_ratio": 0.030883, + "example_values": [ + "0.31", + "0.21", + "0.24", + "0.43", + "0.27" + ] + } + }, + { + "name": "citric acid", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 85, + "unique_ratio": 0.021695, + "example_values": [ + "0.17", + "0.41", + "0.31", + "0.25", + "0.3" + ] + } + }, + { + "name": "residual sugar", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 296, + "unique_ratio": 0.075549, + "example_values": [ + "1", + "4.3", + "2.8", + "13", + "12.9" + ] + } + }, + { + "name": "chlorides", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 147, + "unique_ratio": 0.037519, + "example_values": [ + "0.042", + "0.036", + "0.038", + "0.047", + "0.033" + ] + } + }, + { + "name": "free sulfur dioxide", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 120, + "unique_ratio": 0.030628, + "example_values": [ + "21", + "24", + "41", + "43", + "69" + ] + } + }, + { + "name": "total sulfur dioxide", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 244, + "unique_ratio": 0.062277, + "example_values": [ + "144", + "99", + "114", + "132", + "160" + ] + } + }, + { + "name": "density", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 839, + "unique_ratio": 0.21414, + "example_values": [ + "0.99304", + "0.9947", + "0.99155", + "0.98975", + "0.99705" + ] + } + }, + { + "name": "pH", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 100, + "unique_ratio": 0.025523, + "example_values": [ + "3.13", + "3.18", + "3.37", + "3.21", + "3.16" + ] + } + }, + { + "name": "sulphates", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 78, + "unique_ratio": 0.019908, + "example_values": [ + "0.4", + "0.53", + "0.66", + "0.47", + "0.5" + ] + } + }, + { + "name": "alcohol", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 97, + "unique_ratio": 0.024758, + "example_values": [ + "9.6", + "9.7", + "11.7", + "13.4", + "8.8" + ] + } + }, + { + "name": "quality", + "role": "target", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 7, + "unique_ratio": 0.001787, + "example_values": [ + "5", + "6", + "7", + "8", + "3" + ] + } + } + ] +} \ No newline at end of file diff --git a/hyperparameter/n3/arf/arf-n3-20260504_205912/public_gate/public_gate_report.json b/hyperparameter/n3/arf/arf-n3-20260504_205912/public_gate/public_gate_report.json new file mode 100644 index 0000000000000000000000000000000000000000..93b97319f739e39079d6c6549fd2020f8a6dac25 --- /dev/null +++ b/hyperparameter/n3/arf/arf-n3-20260504_205912/public_gate/public_gate_report.json @@ -0,0 +1,37 @@ +{ + "dataset_id": "n3", + "status": "pass", + "checks": [ + { + "check_id": "PG001_csv_parse_ok", + "status": "pass" + }, + { + "check_id": "PG002_split_header_consistent", + "status": "pass" + }, + { + "check_id": "PG003_profile_header_match", + "status": "pass" + }, + { + "check_id": "PG004_missing_token_normalized", + "status": "pass" + }, + { + "check_id": "PG005_semantic_type_validated", + "status": "pass" + }, + { + "check_id": "PG006_target_defined_and_valid", + "status": "pass" + } + ], + "target_column": "quality", + "task_type": "classification", + "input_splits": { + "train": "/data/jialinzhang/SynthesizePipeline-server/DatasetNew/n3/n3-train.csv", + "val": "/data/jialinzhang/SynthesizePipeline-server/DatasetNew/n3/n3-val.csv", + "test": "/data/jialinzhang/SynthesizePipeline-server/DatasetNew/n3/n3-test.csv" + } +} \ No newline at end of file diff --git a/hyperparameter/n3/arf/arf-n3-20260504_205912/public_gate/staged_input_manifest.json b/hyperparameter/n3/arf/arf-n3-20260504_205912/public_gate/staged_input_manifest.json new file mode 100644 index 0000000000000000000000000000000000000000..d4d8001bf539cd209362fb899a39586722b17ffb --- /dev/null +++ b/hyperparameter/n3/arf/arf-n3-20260504_205912/public_gate/staged_input_manifest.json @@ -0,0 +1,264 @@ +{ + "dataset_id": "n3", + "target_column": "quality", + "task_type": "classification", + "train_csv": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/n3/arf/arf-n3-20260504_205912/staged/public/train.csv", + "val_csv": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/n3/arf/arf-n3-20260504_205912/staged/public/val.csv", + "test_csv": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/n3/arf/arf-n3-20260504_205912/staged/public/test.csv", + "features_json": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/n3/arf/arf-n3-20260504_205912/staged/public/staged_features.json", + "public_gate_report": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/n3/arf/arf-n3-20260504_205912/public_gate/public_gate_report.json", + "column_schema": [ + { + "name": "fixed acidity", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 66, + "unique_ratio": 0.016845, + "example_values": [ + "7.1", + "8.5", + "6.4", + "6.8", + "7.6" + ] + } + }, + { + "name": "volatile acidity", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 121, + "unique_ratio": 0.030883, + "example_values": [ + "0.31", + "0.21", + "0.24", + "0.43", + "0.27" + ] + } + }, + { + "name": "citric acid", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 85, + "unique_ratio": 0.021695, + "example_values": [ + "0.17", + "0.41", + "0.31", + "0.25", + "0.3" + ] + } + }, + { + "name": "residual sugar", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 296, + "unique_ratio": 0.075549, + "example_values": [ + "1", + "4.3", + "2.8", + "13", + "12.9" + ] + } + }, + { + "name": "chlorides", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 147, + "unique_ratio": 0.037519, + "example_values": [ + "0.042", + "0.036", + "0.038", + "0.047", + "0.033" + ] + } + }, + { + "name": "free sulfur dioxide", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 120, + "unique_ratio": 0.030628, + "example_values": [ + "21", + "24", + "41", + "43", + "69" + ] + } + }, + { + "name": "total sulfur dioxide", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 244, + "unique_ratio": 0.062277, + "example_values": [ + "144", + "99", + "114", + "132", + "160" + ] + } + }, + { + "name": "density", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 839, + "unique_ratio": 0.21414, + "example_values": [ + "0.99304", + "0.9947", + "0.99155", + "0.98975", + "0.99705" + ] + } + }, + { + "name": "pH", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 100, + "unique_ratio": 0.025523, + "example_values": [ + "3.13", + "3.18", + "3.37", + "3.21", + "3.16" + ] + } + }, + { + "name": "sulphates", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 78, + "unique_ratio": 0.019908, + "example_values": [ + "0.4", + "0.53", + "0.66", + "0.47", + "0.5" + ] + } + }, + { + "name": "alcohol", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 97, + "unique_ratio": 0.024758, + "example_values": [ + "9.6", + "9.7", + "11.7", + "13.4", + "8.8" + ] + } + }, + { + "name": "quality", + "role": "target", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 7, + "unique_ratio": 0.001787, + "example_values": [ + "5", + "6", + "7", + "8", + "3" + ] + } + } + ] +} \ No newline at end of file diff --git a/hyperparameter/n3/arf/arf-n3-20260504_205912/run_config.json b/hyperparameter/n3/arf/arf-n3-20260504_205912/run_config.json new file mode 100644 index 0000000000000000000000000000000000000000..a12717278bff74b9df3fb47b528ea144cd23d5fc --- /dev/null +++ b/hyperparameter/n3/arf/arf-n3-20260504_205912/run_config.json @@ -0,0 +1,46 @@ +{ + "schema_version": 1, + "recorded_at": "2026-05-04T20:59:12", + "dataset_id": "n3", + "model": "arf", + "work_dir": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/n3/arf/arf-n3-20260504_205912", + "dataset_source_requested": "new", + "dataset_source_resolved": "new", + "cli_args": { + "model": "arf", + "dataset": "n3", + "dataset_source": "new", + "train": true, + "generate": true, + "num_rows": 0, + "epochs": null, + "output_dir": null, + "model_dir": null, + "work_dir": null, + "resume": false, + "no_stats": false + }, + "resolved": { + "num_rows": 3918, + "model_path": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/n3/arf/arf-n3-20260504_205912/arf_model.pkl", + "output_csv": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/n3/arf/arf-n3-20260504_205912/arf-n3-3918-20260504_210013.csv" + }, + "input_artifacts": { + "public_gate_report": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/n3/arf/arf-n3-20260504_205912/public_gate/public_gate_report.json", + "public_manifest": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/n3/arf/arf-n3-20260504_205912/public_gate/staged_input_manifest.json", + "model_manifest": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/n3/arf/arf-n3-20260504_205912/staged/arf/model_input_manifest.json", + "train_csv": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/n3/arf/arf-n3-20260504_205912/staged/public/train.csv", + "features_json": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/n3/arf/arf-n3-20260504_205912/staged/public/staged_features.json", + "target_column": "quality", + "task_type": "classification" + }, + "env_overrides": { + "ARF_CLIP_QUANTILE_HIGH": "0.999", + "ARF_CLIP_QUANTILE_LOW": "0.001", + "ARF_DELTA": "0", + "ARF_EARLY_STOP": "true", + "ARF_MAX_ITERS": "10", + "ARF_MIN_NODE_SIZE": "5", + "ARF_NUM_TREES": "30" + } +} \ No newline at end of file diff --git a/hyperparameter/n3/arf/arf-n3-20260504_205912/runtime_result.json b/hyperparameter/n3/arf/arf-n3-20260504_205912/runtime_result.json new file mode 100644 index 0000000000000000000000000000000000000000..2fe9a84d7d9c0760fffff49c77e7a5363b1a4e71 --- /dev/null +++ b/hyperparameter/n3/arf/arf-n3-20260504_205912/runtime_result.json @@ -0,0 +1,27 @@ +{ + "dataset_id": "n3", + "model": "arf", + "run_id": "arf-n3-20260504_205912", + "public_gate_status": "pass", + "adapter_ready_status": "pass", + "train_status": "success", + "generate_status": "success", + "reason_code": null, + "reason_detail": null, + "artifacts": { + "synthetic_csv": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/n3/arf/arf-n3-20260504_205912/arf-n3-3918-20260504_210013.csv", + "model_path": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/n3/arf/arf-n3-20260504_205912/arf_model.pkl" + }, + "timings": { + "train": { + "started_at": "2026-05-04T20:59:12", + "ended_at": "2026-05-04T21:00:13", + "duration_sec": 61.667 + }, + "generate": { + "started_at": "2026-05-04T21:00:13", + "ended_at": "2026-05-04T21:00:16", + "duration_sec": 2.497 + } + } +} \ No newline at end of file diff --git a/hyperparameter/n3/arf/arf-n3-20260504_205912/staged/arf/adapter_report.json b/hyperparameter/n3/arf/arf-n3-20260504_205912/staged/arf/adapter_report.json new file mode 100644 index 0000000000000000000000000000000000000000..c31e80603764e9921f7f476536685c06cdb7716a --- /dev/null +++ b/hyperparameter/n3/arf/arf-n3-20260504_205912/staged/arf/adapter_report.json @@ -0,0 +1,7 @@ +{ + "adapter_ready_status": "pass", + "adapter_fail_reason_code": null, + "adapter_fail_detail": null, + "adapter_transforms_applied": [], + "model_input_manifest": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/n3/arf/arf-n3-20260504_205912/staged/arf/model_input_manifest.json" +} \ No newline at end of file diff --git a/hyperparameter/n3/arf/arf-n3-20260504_205912/staged/arf/adapter_transforms_applied.json b/hyperparameter/n3/arf/arf-n3-20260504_205912/staged/arf/adapter_transforms_applied.json new file mode 100644 index 0000000000000000000000000000000000000000..0637a088a01e8ddab3bf3fa98dbe804cbde1a0dc --- /dev/null +++ b/hyperparameter/n3/arf/arf-n3-20260504_205912/staged/arf/adapter_transforms_applied.json @@ -0,0 +1 @@ +[] \ No newline at end of file diff --git a/hyperparameter/n3/arf/arf-n3-20260504_205912/staged/arf/model_input_manifest.json b/hyperparameter/n3/arf/arf-n3-20260504_205912/staged/arf/model_input_manifest.json new file mode 100644 index 0000000000000000000000000000000000000000..cc394e9161eb2dde7507cc7949024a2a83e94a3b --- /dev/null +++ b/hyperparameter/n3/arf/arf-n3-20260504_205912/staged/arf/model_input_manifest.json @@ -0,0 +1,266 @@ +{ + "dataset_id": "n3", + "model": "arf", + "target_column": "quality", + "task_type": "classification", + "column_schema": [ + { + "name": "fixed acidity", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 66, + "unique_ratio": 0.016845, + "example_values": [ + "7.1", + "8.5", + "6.4", + "6.8", + "7.6" + ] + } + }, + { + "name": "volatile acidity", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 121, + "unique_ratio": 0.030883, + "example_values": [ + "0.31", + "0.21", + "0.24", + "0.43", + "0.27" + ] + } + }, + { + "name": "citric acid", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 85, + "unique_ratio": 0.021695, + "example_values": [ + "0.17", + "0.41", + "0.31", + "0.25", + "0.3" + ] + } + }, + { + "name": "residual sugar", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 296, + "unique_ratio": 0.075549, + "example_values": [ + "1", + "4.3", + "2.8", + "13", + "12.9" + ] + } + }, + { + "name": "chlorides", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 147, + "unique_ratio": 0.037519, + "example_values": [ + "0.042", + "0.036", + "0.038", + "0.047", + "0.033" + ] + } + }, + { + "name": "free sulfur dioxide", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 120, + "unique_ratio": 0.030628, + "example_values": [ + "21", + "24", + "41", + "43", + "69" + ] + } + }, + { + "name": "total sulfur dioxide", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 244, + "unique_ratio": 0.062277, + "example_values": [ + "144", + "99", + "114", + "132", + "160" + ] + } + }, + { + "name": "density", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 839, + "unique_ratio": 0.21414, + "example_values": [ + "0.99304", + "0.9947", + "0.99155", + "0.98975", + "0.99705" + ] + } + }, + { + "name": "pH", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 100, + "unique_ratio": 0.025523, + "example_values": [ + "3.13", + "3.18", + "3.37", + "3.21", + "3.16" + ] + } + }, + { + "name": "sulphates", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 78, + "unique_ratio": 0.019908, + "example_values": [ + "0.4", + "0.53", + "0.66", + "0.47", + "0.5" + ] + } + }, + { + "name": "alcohol", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 97, + "unique_ratio": 0.024758, + "example_values": [ + "9.6", + "9.7", + "11.7", + "13.4", + "8.8" + ] + } + }, + { + "name": "quality", + "role": "target", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 7, + "unique_ratio": 0.001787, + "example_values": [ + "5", + "6", + "7", + "8", + "3" + ] + } + } + ], + "public_manifest": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/n3/arf/arf-n3-20260504_205912/public_gate/staged_input_manifest.json", + "train_csv": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/n3/arf/arf-n3-20260504_205912/staged/public/train.csv", + "val_csv": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/n3/arf/arf-n3-20260504_205912/staged/public/val.csv", + "test_csv": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/n3/arf/arf-n3-20260504_205912/staged/public/test.csv", + "features_json": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/n3/arf/arf-n3-20260504_205912/staged/public/staged_features.json", + "public_gate_report": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/n3/arf/arf-n3-20260504_205912/public_gate/public_gate_report.json" +} \ No newline at end of file diff --git a/hyperparameter/n3/arf/arf-n3-20260504_205912/staged/public/staged_features.json b/hyperparameter/n3/arf/arf-n3-20260504_205912/staged/public/staged_features.json new file mode 100644 index 0000000000000000000000000000000000000000..08fe4d766d091d2f2ddba724a16b9509cbe4c390 --- /dev/null +++ b/hyperparameter/n3/arf/arf-n3-20260504_205912/staged/public/staged_features.json @@ -0,0 +1,62 @@ +[ + { + "feature_name": "fixed acidity", + "data_type": "continuous", + "is_target": false + }, + { + "feature_name": "volatile acidity", + "data_type": "continuous", + "is_target": false + }, + { + "feature_name": "citric acid", + "data_type": "continuous", + "is_target": false + }, + { + "feature_name": "residual sugar", + "data_type": "continuous", + "is_target": false + }, + { + "feature_name": "chlorides", + "data_type": "continuous", + "is_target": false + }, + { + "feature_name": "free sulfur dioxide", + "data_type": "continuous", + "is_target": false + }, + { + "feature_name": "total sulfur dioxide", + "data_type": "continuous", + "is_target": false + }, + { + "feature_name": "density", + "data_type": "continuous", + "is_target": false + }, + { + "feature_name": "pH", + "data_type": "continuous", + "is_target": false + }, + { + "feature_name": "sulphates", + "data_type": "continuous", + "is_target": false + }, + { + "feature_name": "alcohol", + "data_type": "continuous", + "is_target": false + }, + { + "feature_name": "quality", + "data_type": "continuous", + "is_target": true + } +] \ No newline at end of file diff --git a/hyperparameter/n3/arf/arf-n3-20260504_205912/staged/public/test.csv b/hyperparameter/n3/arf/arf-n3-20260504_205912/staged/public/test.csv new file mode 100644 index 0000000000000000000000000000000000000000..db5cd50d3746410ea470625fa2ba2c8e9775cc0d --- /dev/null +++ b/hyperparameter/n3/arf/arf-n3-20260504_205912/staged/public/test.csv @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:19e107152a94432e2a37ff045c00cfe35e1be30208b1553080d7dd0ede256d3b +size 28944 diff --git a/hyperparameter/n3/arf/arf-n3-20260504_205912/staged/public/train.csv b/hyperparameter/n3/arf/arf-n3-20260504_205912/staged/public/train.csv new file mode 100644 index 0000000000000000000000000000000000000000..87ca26726fe82ccbaa397919305b043c17eb374e --- /dev/null +++ b/hyperparameter/n3/arf/arf-n3-20260504_205912/staged/public/train.csv @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:7813c8cca73ba4bfc6559215257b341c21e459980ad17ae6ddc809306bc9a0b9 +size 229945 diff --git a/hyperparameter/n3/arf/arf-n3-20260504_205912/staged/public/val.csv b/hyperparameter/n3/arf/arf-n3-20260504_205912/staged/public/val.csv new file mode 100644 index 0000000000000000000000000000000000000000..6acf84c76c47093b513c46d5503972a2dff275c0 --- /dev/null +++ b/hyperparameter/n3/arf/arf-n3-20260504_205912/staged/public/val.csv @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:cf5979d9675567d9d6642640c9b84fc6c49e492604144723c30f50516c05cee6 +size 28791 diff --git a/hyperparameter/n3/arf/arf-n3-20260504_205912/train_20260504_205912.log b/hyperparameter/n3/arf/arf-n3-20260504_205912/train_20260504_205912.log new file mode 100644 index 0000000000000000000000000000000000000000..6c4e73ca70590a275d871dd6252979cdc92276ba --- /dev/null +++ b/hyperparameter/n3/arf/arf-n3-20260504_205912/train_20260504_205912.log @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:9ff76c558a3b98f78cb490370f935607a19339f0061c129a430eb31103c898fa +size 754 diff --git a/hyperparameter/n3/arf/arf-n3-20260504_210029/_arf_generate.py b/hyperparameter/n3/arf/arf-n3-20260504_210029/_arf_generate.py new file mode 100644 index 0000000000000000000000000000000000000000..c9797b9586a2339050e09d786df875bf97b6cd6d --- /dev/null +++ b/hyperparameter/n3/arf/arf-n3-20260504_210029/_arf_generate.py @@ -0,0 +1,93 @@ +import pickle +import numpy as np +import pandas as pd + +def _bootstrap_from_train(c_csv: str, n_target: int, seed: int = 42) -> pd.DataFrame: + """当 arfpy.forge 完全不可用时,从训练 CSV 有放回抽样,保证行数与列对齐。""" + src = pd.read_csv(c_csv, encoding="utf-8-sig", low_memory=False) + src = src.replace([np.inf, -np.inf], np.nan).dropna(axis=1, how="all") + src = src.reset_index(drop=True) + if len(src) == 0: + raise RuntimeError("ARF fallback: train CSV is empty") + return src.sample(n=n_target, replace=True, random_state=seed).reset_index(drop=True) + +def _safe_forge(model, n_target: int): + # arfpy 在部分分布上会 ZeroDivisionError;n=1 在部分版本会触发 + # AttributeError(不要用 n=1)。失败返回 None,由外层走 bootstrap。 + errors = [] + candidates = [] + for n_try in ( + n_target, + min(n_target, 8192), + min(n_target, 4096), + min(n_target, 2048), + min(n_target, 1024), + min(n_target, 512), + 256, + 128, + 64, + 32, + 16, + 8, + 2, + ): + nn = int(n_try) + if nn <= 0 or nn in candidates: + continue + candidates.append(nn) + for n_try in candidates: + try: + out = model.forge(n=n_try).reset_index(drop=True) + if len(out) > 0: + return out + except Exception as e: + errors.append(f"n={n_try}: {type(e).__name__}: {e}") + print("[ARF] forge failed after retries; last errors:", " | ".join(errors[-4:])) + return None + +n_target = int(3918) +c_csv = "/work/output-Benchmark-trainonly-v1/n3/arf/arf-n3-20260504_210029/staged/public/train.csv" +with open("/work/output-Benchmark-trainonly-v1/n3/arf/arf-n3-20260504_210029/arf_model.pkl", "rb") as f: + model = pickle.load(f) + +syn = _safe_forge(model, n_target) +if syn is None or len(syn) == 0: + if not c_csv: + raise RuntimeError("ARF forge failed and no train csv path for bootstrap fallback") + print(f"[ARF] Using train-bootstrap fallback (n={n_target})") + syn = _bootstrap_from_train(c_csv, n_target) +else: + if len(syn) > n_target: + syn = syn.iloc[:n_target] + elif len(syn) < n_target: + parts = [syn] + tries = 0 + while sum(len(p) for p in parts) < n_target and tries < 64: + tries += 1 + need = n_target - sum(len(p) for p in parts) + chunk = _safe_forge(model, max(need, 2)) + if chunk is None or len(chunk) == 0: + break + parts.append(chunk) + syn = pd.concat(parts, ignore_index=True).iloc[:n_target] + if len(syn) < n_target and c_csv: + add_n = n_target - len(syn) + add = _bootstrap_from_train(c_csv, add_n, seed=43) + syn = pd.concat([syn, add], ignore_index=True).iloc[:n_target] + +_ds_id = 'n3' +if _ds_id == "c19": + # 仅 c19:object 列内裸换行会使 pivot 用 csv.reader 统计到的「记录数」大于 DataFrame 行数 → Sw。 + for _col in syn.columns: + if syn[_col].dtype == object: + syn[_col] = ( + syn[_col] + .astype(str) + .str.replace("\r\n", " ", regex=False) + .str.replace("\n", " ", regex=False) + .str.replace("\r", " ", regex=False) + ) + syn = syn.iloc[:n_target].reset_index(drop=True) + +syn.to_csv("/work/output-Benchmark-trainonly-v1/n3/arf/arf-n3-20260504_210029/arf-n3-3918-20260504_210110.csv", index=False) +print(f"[ARF] Generated {len(syn)} rows (requested {n_target}) -> /work/output-Benchmark-trainonly-v1/n3/arf/arf-n3-20260504_210029/arf-n3-3918-20260504_210110.csv") diff --git a/hyperparameter/n3/arf/arf-n3-20260504_210029/_arf_train.py b/hyperparameter/n3/arf/arf-n3-20260504_210029/_arf_train.py new file mode 100644 index 0000000000000000000000000000000000000000..17aa0d718fb7d182d0f344d9aa5e28e4763aaeec --- /dev/null +++ b/hyperparameter/n3/arf/arf-n3-20260504_210029/_arf_train.py @@ -0,0 +1,47 @@ +import os +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 + q_low = float(os.environ.get("ARF_CLIP_QUANTILE_LOW", "0.001")) + q_high = float(os.environ.get("ARF_CLIP_QUANTILE_HIGH", "0.999")) + lo, hi = df[col].quantile(q_low), df[col].quantile(q_high) + if pd.notna(lo) and pd.notna(hi) and lo < hi: + df[col] = df[col].clip(lo, hi) + return df + +df = pd.read_csv("/work/output-Benchmark-trainonly-v1/n3/arf/arf-n3-20260504_210029/staged/public/train.csv") +df = _sanitize_for_arf(df) +num_trees = int(os.environ.get("ARF_NUM_TREES", "30")) +delta = float(os.environ.get("ARF_DELTA", "0")) +max_iters = int(os.environ.get("ARF_MAX_ITERS", "10")) +early_stop = (os.environ.get("ARF_EARLY_STOP", "true").strip().lower() in ("1", "true", "yes")) +verbose = (os.environ.get("ARF_VERBOSE", "true").strip().lower() in ("1", "true", "yes")) +min_node_size = int(os.environ.get("ARF_MIN_NODE_SIZE", "5")) +print(f"[ARF] Training on {len(df)} rows, {len(df.columns)} cols") +print(f"[ARF] Config num_trees={num_trees} delta={delta} max_iters={max_iters} early_stop={early_stop} min_node_size={min_node_size}") + +model = arf.arf(x=df, num_trees=num_trees, delta=delta, max_iters=max_iters, early_stop=early_stop, verbose=verbose, min_node_size=min_node_size) +if hasattr(model, "fit"): + model.fit() +elif hasattr(model, "forde"): + model.forde() +else: + raise RuntimeError("arfpy API: no fit() / forde()") + +with open("/work/output-Benchmark-trainonly-v1/n3/arf/arf-n3-20260504_210029/arf_model.pkl", "wb") as f: + pickle.dump(model, f) +print(f"[ARF] Model saved -> /work/output-Benchmark-trainonly-v1/n3/arf/arf-n3-20260504_210029/arf_model.pkl") diff --git a/hyperparameter/n3/arf/arf-n3-20260504_210029/arf-n3-3918-20260504_210110.csv b/hyperparameter/n3/arf/arf-n3-20260504_210029/arf-n3-3918-20260504_210110.csv new file mode 100644 index 0000000000000000000000000000000000000000..db28cb6a108603ea9d12ac81450656666d2737f8 --- /dev/null +++ b/hyperparameter/n3/arf/arf-n3-20260504_210029/arf-n3-3918-20260504_210110.csv @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:d65812de4cb805a3cb96e76643f6a164fa583bd90ed53bb4506466a68bb3b94d +size 868915 diff --git a/hyperparameter/n3/arf/arf-n3-20260504_210029/arf_model.pkl b/hyperparameter/n3/arf/arf-n3-20260504_210029/arf_model.pkl new file mode 100644 index 0000000000000000000000000000000000000000..387da44901555d8cfb53f5af2f08a6ebc9932795 --- /dev/null +++ b/hyperparameter/n3/arf/arf-n3-20260504_210029/arf_model.pkl @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:2cf6617744597907b3fe38bbd16462e092086450f6f72da071eea3ee9be9f528 +size 51261576 diff --git a/hyperparameter/n3/arf/arf-n3-20260504_210029/gen_20260504_210110.log b/hyperparameter/n3/arf/arf-n3-20260504_210029/gen_20260504_210110.log new file mode 100644 index 0000000000000000000000000000000000000000..3d62fd476bac15b31fc7137b201a510673c43890 --- /dev/null +++ b/hyperparameter/n3/arf/arf-n3-20260504_210029/gen_20260504_210110.log @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:0fb80f9a9577c35ba2631e2feeba2ecd05fdb0325780ffa4b602e40cd733bff2 +size 719 diff --git a/hyperparameter/n3/arf/arf-n3-20260504_210029/input_snapshot.json b/hyperparameter/n3/arf/arf-n3-20260504_210029/input_snapshot.json new file mode 100644 index 0000000000000000000000000000000000000000..8f61e094a5a82208890ae5982a105d557698988d --- /dev/null +++ b/hyperparameter/n3/arf/arf-n3-20260504_210029/input_snapshot.json @@ -0,0 +1,36 @@ +{ + "dataset_id": "n3", + "model": "arf", + "inputs": { + "train_csv": { + "path": "/data/jialinzhang/SynthesizePipeline-server/DatasetNew/n3/n3-train.csv", + "exists": true, + "size": 211519, + "sha256": "2160a06db2fea02adb0ebb79d8d853bd2544580be301e71f6e8deeb1489a9009" + }, + "val_csv": { + "path": "/data/jialinzhang/SynthesizePipeline-server/DatasetNew/n3/n3-val.csv", + "exists": true, + "size": 26499, + "sha256": "d5ccfee07dfa9e7bdee5bb87642b43828e09f74c6cc0266a3d19d9feaa83106e" + }, + "test_csv": { + "path": "/data/jialinzhang/SynthesizePipeline-server/DatasetNew/n3/n3-test.csv", + "exists": true, + "size": 26676, + "sha256": "6f83aacb0d1747b95e287352a7fff5d9d65a1c127b773852346c68485c4ede47" + }, + "profile_json": { + "path": "/data/jialinzhang/SynthesizePipeline-server/DatasetNew/artifacts/data_core/tabular/n3/n3-dataset_profile.json", + "exists": true, + "size": 5235, + "sha256": "23d2e5904a2ca90cbf8d6e3c75887681721e9b90cc705c31a680c11513d0c46f" + }, + "contract_json": { + "path": "/data/jialinzhang/SynthesizePipeline-server/DatasetNew/artifacts/data_core/tabular/n3/n3-dataset_contract_v1.json", + "exists": true, + "size": 6281, + "sha256": "c0cc56f5fe28e1b65927255c6e3c2b0e9479862c2ec6f2fea1664da36c9a3a09" + } + } +} \ No newline at end of file diff --git a/hyperparameter/n3/arf/arf-n3-20260504_210029/public_gate/normalized_schema_snapshot.json b/hyperparameter/n3/arf/arf-n3-20260504_210029/public_gate/normalized_schema_snapshot.json new file mode 100644 index 0000000000000000000000000000000000000000..c41fe304503de23190a02e6cbfafa35b3bf134d3 --- /dev/null +++ b/hyperparameter/n3/arf/arf-n3-20260504_210029/public_gate/normalized_schema_snapshot.json @@ -0,0 +1,259 @@ +{ + "dataset_id": "n3", + "target_column": "quality", + "task_type": "classification", + "columns": [ + { + "name": "fixed acidity", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 66, + "unique_ratio": 0.016845, + "example_values": [ + "7.1", + "8.5", + "6.4", + "6.8", + "7.6" + ] + } + }, + { + "name": "volatile acidity", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 121, + "unique_ratio": 0.030883, + "example_values": [ + "0.31", + "0.21", + "0.24", + "0.43", + "0.27" + ] + } + }, + { + "name": "citric acid", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 85, + "unique_ratio": 0.021695, + "example_values": [ + "0.17", + "0.41", + "0.31", + "0.25", + "0.3" + ] + } + }, + { + "name": "residual sugar", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 296, + "unique_ratio": 0.075549, + "example_values": [ + "1", + "4.3", + "2.8", + "13", + "12.9" + ] + } + }, + { + "name": "chlorides", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 147, + "unique_ratio": 0.037519, + "example_values": [ + "0.042", + "0.036", + "0.038", + "0.047", + "0.033" + ] + } + }, + { + "name": "free sulfur dioxide", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 120, + "unique_ratio": 0.030628, + "example_values": [ + "21", + "24", + "41", + "43", + "69" + ] + } + }, + { + "name": "total sulfur dioxide", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 244, + "unique_ratio": 0.062277, + "example_values": [ + "144", + "99", + "114", + "132", + "160" + ] + } + }, + { + "name": "density", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 839, + "unique_ratio": 0.21414, + "example_values": [ + "0.99304", + "0.9947", + "0.99155", + "0.98975", + "0.99705" + ] + } + }, + { + "name": "pH", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 100, + "unique_ratio": 0.025523, + "example_values": [ + "3.13", + "3.18", + "3.37", + "3.21", + "3.16" + ] + } + }, + { + "name": "sulphates", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 78, + "unique_ratio": 0.019908, + "example_values": [ + "0.4", + "0.53", + "0.66", + "0.47", + "0.5" + ] + } + }, + { + "name": "alcohol", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 97, + "unique_ratio": 0.024758, + "example_values": [ + "9.6", + "9.7", + "11.7", + "13.4", + "8.8" + ] + } + }, + { + "name": "quality", + "role": "target", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 7, + "unique_ratio": 0.001787, + "example_values": [ + "5", + "6", + "7", + "8", + "3" + ] + } + } + ] +} \ No newline at end of file diff --git a/hyperparameter/n3/arf/arf-n3-20260504_210029/public_gate/public_gate_report.json b/hyperparameter/n3/arf/arf-n3-20260504_210029/public_gate/public_gate_report.json new file mode 100644 index 0000000000000000000000000000000000000000..93b97319f739e39079d6c6549fd2020f8a6dac25 --- /dev/null +++ b/hyperparameter/n3/arf/arf-n3-20260504_210029/public_gate/public_gate_report.json @@ -0,0 +1,37 @@ +{ + "dataset_id": "n3", + "status": "pass", + "checks": [ + { + "check_id": "PG001_csv_parse_ok", + "status": "pass" + }, + { + "check_id": "PG002_split_header_consistent", + "status": "pass" + }, + { + "check_id": "PG003_profile_header_match", + "status": "pass" + }, + { + "check_id": "PG004_missing_token_normalized", + "status": "pass" + }, + { + "check_id": "PG005_semantic_type_validated", + "status": "pass" + }, + { + "check_id": "PG006_target_defined_and_valid", + "status": "pass" + } + ], + "target_column": "quality", + "task_type": "classification", + "input_splits": { + "train": "/data/jialinzhang/SynthesizePipeline-server/DatasetNew/n3/n3-train.csv", + "val": "/data/jialinzhang/SynthesizePipeline-server/DatasetNew/n3/n3-val.csv", + "test": "/data/jialinzhang/SynthesizePipeline-server/DatasetNew/n3/n3-test.csv" + } +} \ No newline at end of file diff --git a/hyperparameter/n3/arf/arf-n3-20260504_210029/public_gate/staged_input_manifest.json b/hyperparameter/n3/arf/arf-n3-20260504_210029/public_gate/staged_input_manifest.json new file mode 100644 index 0000000000000000000000000000000000000000..2cfa2c16074d6e03c04201fcddb15bbf8a4720e9 --- /dev/null +++ b/hyperparameter/n3/arf/arf-n3-20260504_210029/public_gate/staged_input_manifest.json @@ -0,0 +1,264 @@ +{ + "dataset_id": "n3", + "target_column": "quality", + "task_type": "classification", + "train_csv": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/n3/arf/arf-n3-20260504_210029/staged/public/train.csv", + "val_csv": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/n3/arf/arf-n3-20260504_210029/staged/public/val.csv", + "test_csv": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/n3/arf/arf-n3-20260504_210029/staged/public/test.csv", + "features_json": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/n3/arf/arf-n3-20260504_210029/staged/public/staged_features.json", + "public_gate_report": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/n3/arf/arf-n3-20260504_210029/public_gate/public_gate_report.json", + "column_schema": [ + { + "name": "fixed acidity", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 66, + "unique_ratio": 0.016845, + "example_values": [ + "7.1", + "8.5", + "6.4", + "6.8", + "7.6" + ] + } + }, + { + "name": "volatile acidity", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 121, + "unique_ratio": 0.030883, + "example_values": [ + "0.31", + "0.21", + "0.24", + "0.43", + "0.27" + ] + } + }, + { + "name": "citric acid", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 85, + "unique_ratio": 0.021695, + "example_values": [ + "0.17", + "0.41", + "0.31", + "0.25", + "0.3" + ] + } + }, + { + "name": "residual sugar", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 296, + "unique_ratio": 0.075549, + "example_values": [ + "1", + "4.3", + "2.8", + "13", + "12.9" + ] + } + }, + { + "name": "chlorides", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 147, + "unique_ratio": 0.037519, + "example_values": [ + "0.042", + "0.036", + "0.038", + "0.047", + "0.033" + ] + } + }, + { + "name": "free sulfur dioxide", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 120, + "unique_ratio": 0.030628, + "example_values": [ + "21", + "24", + "41", + "43", + "69" + ] + } + }, + { + "name": "total sulfur dioxide", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 244, + "unique_ratio": 0.062277, + "example_values": [ + "144", + "99", + "114", + "132", + "160" + ] + } + }, + { + "name": "density", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 839, + "unique_ratio": 0.21414, + "example_values": [ + "0.99304", + "0.9947", + "0.99155", + "0.98975", + "0.99705" + ] + } + }, + { + "name": "pH", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 100, + "unique_ratio": 0.025523, + "example_values": [ + "3.13", + "3.18", + "3.37", + "3.21", + "3.16" + ] + } + }, + { + "name": "sulphates", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 78, + "unique_ratio": 0.019908, + "example_values": [ + "0.4", + "0.53", + "0.66", + "0.47", + "0.5" + ] + } + }, + { + "name": "alcohol", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 97, + "unique_ratio": 0.024758, + "example_values": [ + "9.6", + "9.7", + "11.7", + "13.4", + "8.8" + ] + } + }, + { + "name": "quality", + "role": "target", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 7, + "unique_ratio": 0.001787, + "example_values": [ + "5", + "6", + "7", + "8", + "3" + ] + } + } + ] +} \ No newline at end of file diff --git a/hyperparameter/n3/arf/arf-n3-20260504_210029/run_config.json b/hyperparameter/n3/arf/arf-n3-20260504_210029/run_config.json new file mode 100644 index 0000000000000000000000000000000000000000..86c244b2a6aa2ad04cc18ba889fb933310ebd10d --- /dev/null +++ b/hyperparameter/n3/arf/arf-n3-20260504_210029/run_config.json @@ -0,0 +1,46 @@ +{ + "schema_version": 1, + "recorded_at": "2026-05-04T21:00:29", + "dataset_id": "n3", + "model": "arf", + "work_dir": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/n3/arf/arf-n3-20260504_210029", + "dataset_source_requested": "new", + "dataset_source_resolved": "new", + "cli_args": { + "model": "arf", + "dataset": "n3", + "dataset_source": "new", + "train": true, + "generate": true, + "num_rows": 0, + "epochs": null, + "output_dir": null, + "model_dir": null, + "work_dir": null, + "resume": false, + "no_stats": false + }, + "resolved": { + "num_rows": 3918, + "model_path": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/n3/arf/arf-n3-20260504_210029/arf_model.pkl", + "output_csv": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/n3/arf/arf-n3-20260504_210029/arf-n3-3918-20260504_210110.csv" + }, + "input_artifacts": { + "public_gate_report": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/n3/arf/arf-n3-20260504_210029/public_gate/public_gate_report.json", + "public_manifest": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/n3/arf/arf-n3-20260504_210029/public_gate/staged_input_manifest.json", + "model_manifest": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/n3/arf/arf-n3-20260504_210029/staged/arf/model_input_manifest.json", + "train_csv": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/n3/arf/arf-n3-20260504_210029/staged/public/train.csv", + "features_json": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/n3/arf/arf-n3-20260504_210029/staged/public/staged_features.json", + "target_column": "quality", + "task_type": "classification" + }, + "env_overrides": { + "ARF_CLIP_QUANTILE_HIGH": "0.999", + "ARF_CLIP_QUANTILE_LOW": "0.001", + "ARF_DELTA": "0", + "ARF_EARLY_STOP": "true", + "ARF_MAX_ITERS": "10", + "ARF_MIN_NODE_SIZE": "3", + "ARF_NUM_TREES": "50" + } +} \ No newline at end of file diff --git a/hyperparameter/n3/arf/arf-n3-20260504_210029/runtime_result.json b/hyperparameter/n3/arf/arf-n3-20260504_210029/runtime_result.json new file mode 100644 index 0000000000000000000000000000000000000000..02c5a1d8112686337959b7bbe085ea7638972524 --- /dev/null +++ b/hyperparameter/n3/arf/arf-n3-20260504_210029/runtime_result.json @@ -0,0 +1,27 @@ +{ + "dataset_id": "n3", + "model": "arf", + "run_id": "arf-n3-20260504_210029", + "public_gate_status": "pass", + "adapter_ready_status": "pass", + "train_status": "success", + "generate_status": "success", + "reason_code": null, + "reason_detail": null, + "artifacts": { + "synthetic_csv": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/n3/arf/arf-n3-20260504_210029/arf-n3-3918-20260504_210110.csv", + "model_path": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/n3/arf/arf-n3-20260504_210029/arf_model.pkl" + }, + "timings": { + "train": { + "started_at": "2026-05-04T21:00:29", + "ended_at": "2026-05-04T21:01:10", + "duration_sec": 41.296 + }, + "generate": { + "started_at": "2026-05-04T21:01:10", + "ended_at": "2026-05-04T21:01:13", + "duration_sec": 2.687 + } + } +} \ No newline at end of file diff --git a/hyperparameter/n3/arf/arf-n3-20260504_210029/staged/arf/adapter_report.json b/hyperparameter/n3/arf/arf-n3-20260504_210029/staged/arf/adapter_report.json new file mode 100644 index 0000000000000000000000000000000000000000..6e9e79cd3e5620b0aa47d60ced1c8b65711a7349 --- /dev/null +++ b/hyperparameter/n3/arf/arf-n3-20260504_210029/staged/arf/adapter_report.json @@ -0,0 +1,7 @@ +{ + "adapter_ready_status": "pass", + "adapter_fail_reason_code": null, + "adapter_fail_detail": null, + "adapter_transforms_applied": [], + "model_input_manifest": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/n3/arf/arf-n3-20260504_210029/staged/arf/model_input_manifest.json" +} \ No newline at end of file diff --git a/hyperparameter/n3/arf/arf-n3-20260504_210029/staged/arf/adapter_transforms_applied.json b/hyperparameter/n3/arf/arf-n3-20260504_210029/staged/arf/adapter_transforms_applied.json new file mode 100644 index 0000000000000000000000000000000000000000..0637a088a01e8ddab3bf3fa98dbe804cbde1a0dc --- /dev/null +++ b/hyperparameter/n3/arf/arf-n3-20260504_210029/staged/arf/adapter_transforms_applied.json @@ -0,0 +1 @@ +[] \ No newline at end of file diff --git a/hyperparameter/n3/arf/arf-n3-20260504_210029/staged/arf/model_input_manifest.json b/hyperparameter/n3/arf/arf-n3-20260504_210029/staged/arf/model_input_manifest.json new file mode 100644 index 0000000000000000000000000000000000000000..cdf3c6ae2d0f2440084a5e1b01277ed7d5bd4567 --- /dev/null +++ b/hyperparameter/n3/arf/arf-n3-20260504_210029/staged/arf/model_input_manifest.json @@ -0,0 +1,266 @@ +{ + "dataset_id": "n3", + "model": "arf", + "target_column": "quality", + "task_type": "classification", + "column_schema": [ + { + "name": "fixed acidity", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 66, + "unique_ratio": 0.016845, + "example_values": [ + "7.1", + "8.5", + "6.4", + "6.8", + "7.6" + ] + } + }, + { + "name": "volatile acidity", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 121, + "unique_ratio": 0.030883, + "example_values": [ + "0.31", + "0.21", + "0.24", + "0.43", + "0.27" + ] + } + }, + { + "name": "citric acid", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 85, + "unique_ratio": 0.021695, + "example_values": [ + "0.17", + "0.41", + "0.31", + "0.25", + "0.3" + ] + } + }, + { + "name": "residual sugar", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 296, + "unique_ratio": 0.075549, + "example_values": [ + "1", + "4.3", + "2.8", + "13", + "12.9" + ] + } + }, + { + "name": "chlorides", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 147, + "unique_ratio": 0.037519, + "example_values": [ + "0.042", + "0.036", + "0.038", + "0.047", + "0.033" + ] + } + }, + { + "name": "free sulfur dioxide", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 120, + "unique_ratio": 0.030628, + "example_values": [ + "21", + "24", + "41", + "43", + "69" + ] + } + }, + { + "name": "total sulfur dioxide", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 244, + "unique_ratio": 0.062277, + "example_values": [ + "144", + "99", + "114", + "132", + "160" + ] + } + }, + { + "name": "density", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 839, + "unique_ratio": 0.21414, + "example_values": [ + "0.99304", + "0.9947", + "0.99155", + "0.98975", + "0.99705" + ] + } + }, + { + "name": "pH", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 100, + "unique_ratio": 0.025523, + "example_values": [ + "3.13", + "3.18", + "3.37", + "3.21", + "3.16" + ] + } + }, + { + "name": "sulphates", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 78, + "unique_ratio": 0.019908, + "example_values": [ + "0.4", + "0.53", + "0.66", + "0.47", + "0.5" + ] + } + }, + { + "name": "alcohol", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 97, + "unique_ratio": 0.024758, + "example_values": [ + "9.6", + "9.7", + "11.7", + "13.4", + "8.8" + ] + } + }, + { + "name": "quality", + "role": "target", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 7, + "unique_ratio": 0.001787, + "example_values": [ + "5", + "6", + "7", + "8", + "3" + ] + } + } + ], + "public_manifest": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/n3/arf/arf-n3-20260504_210029/public_gate/staged_input_manifest.json", + "train_csv": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/n3/arf/arf-n3-20260504_210029/staged/public/train.csv", + "val_csv": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/n3/arf/arf-n3-20260504_210029/staged/public/val.csv", + "test_csv": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/n3/arf/arf-n3-20260504_210029/staged/public/test.csv", + "features_json": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/n3/arf/arf-n3-20260504_210029/staged/public/staged_features.json", + "public_gate_report": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/n3/arf/arf-n3-20260504_210029/public_gate/public_gate_report.json" +} \ No newline at end of file diff --git a/hyperparameter/n3/arf/arf-n3-20260504_210029/staged/public/staged_features.json b/hyperparameter/n3/arf/arf-n3-20260504_210029/staged/public/staged_features.json new file mode 100644 index 0000000000000000000000000000000000000000..08fe4d766d091d2f2ddba724a16b9509cbe4c390 --- /dev/null +++ b/hyperparameter/n3/arf/arf-n3-20260504_210029/staged/public/staged_features.json @@ -0,0 +1,62 @@ +[ + { + "feature_name": "fixed acidity", + "data_type": "continuous", + "is_target": false + }, + { + "feature_name": "volatile acidity", + "data_type": "continuous", + "is_target": false + }, + { + "feature_name": "citric acid", + "data_type": "continuous", + "is_target": false + }, + { + "feature_name": "residual sugar", + "data_type": "continuous", + "is_target": false + }, + { + "feature_name": "chlorides", + "data_type": "continuous", + "is_target": false + }, + { + "feature_name": "free sulfur dioxide", + "data_type": "continuous", + "is_target": false + }, + { + "feature_name": "total sulfur dioxide", + "data_type": "continuous", + "is_target": false + }, + { + "feature_name": "density", + "data_type": "continuous", + "is_target": false + }, + { + "feature_name": "pH", + "data_type": "continuous", + "is_target": false + }, + { + "feature_name": "sulphates", + "data_type": "continuous", + "is_target": false + }, + { + "feature_name": "alcohol", + "data_type": "continuous", + "is_target": false + }, + { + "feature_name": "quality", + "data_type": "continuous", + "is_target": true + } +] \ No newline at end of file diff --git a/hyperparameter/n3/arf/arf-n3-20260504_210029/staged/public/test.csv b/hyperparameter/n3/arf/arf-n3-20260504_210029/staged/public/test.csv new file mode 100644 index 0000000000000000000000000000000000000000..db5cd50d3746410ea470625fa2ba2c8e9775cc0d --- /dev/null +++ b/hyperparameter/n3/arf/arf-n3-20260504_210029/staged/public/test.csv @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:19e107152a94432e2a37ff045c00cfe35e1be30208b1553080d7dd0ede256d3b +size 28944 diff --git a/hyperparameter/n3/arf/arf-n3-20260504_210029/staged/public/train.csv b/hyperparameter/n3/arf/arf-n3-20260504_210029/staged/public/train.csv new file mode 100644 index 0000000000000000000000000000000000000000..87ca26726fe82ccbaa397919305b043c17eb374e --- /dev/null +++ b/hyperparameter/n3/arf/arf-n3-20260504_210029/staged/public/train.csv @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:7813c8cca73ba4bfc6559215257b341c21e459980ad17ae6ddc809306bc9a0b9 +size 229945 diff --git a/hyperparameter/n3/arf/arf-n3-20260504_210029/staged/public/val.csv b/hyperparameter/n3/arf/arf-n3-20260504_210029/staged/public/val.csv new file mode 100644 index 0000000000000000000000000000000000000000..6acf84c76c47093b513c46d5503972a2dff275c0 --- /dev/null +++ b/hyperparameter/n3/arf/arf-n3-20260504_210029/staged/public/val.csv @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:cf5979d9675567d9d6642640c9b84fc6c49e492604144723c30f50516c05cee6 +size 28791 diff --git a/hyperparameter/n3/arf/arf-n3-20260504_210029/train_20260504_210029.log b/hyperparameter/n3/arf/arf-n3-20260504_210029/train_20260504_210029.log new file mode 100644 index 0000000000000000000000000000000000000000..41ec4c98e6db62ecd2df17186ef46f556fedb712 --- /dev/null +++ b/hyperparameter/n3/arf/arf-n3-20260504_210029/train_20260504_210029.log @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:bd5c29756014ceb933326ab3bf1f8e653bc80aa79321f96b34fcd3d3df2a48e6 +size 635 diff --git a/hyperparameter/n3/arf/arf-n3-20260504_210125/_arf_generate.py b/hyperparameter/n3/arf/arf-n3-20260504_210125/_arf_generate.py new file mode 100644 index 0000000000000000000000000000000000000000..20ced6a16e441fe7e56843fb798b43745629ea86 --- /dev/null +++ b/hyperparameter/n3/arf/arf-n3-20260504_210125/_arf_generate.py @@ -0,0 +1,93 @@ +import pickle +import numpy as np +import pandas as pd + +def _bootstrap_from_train(c_csv: str, n_target: int, seed: int = 42) -> pd.DataFrame: + """当 arfpy.forge 完全不可用时,从训练 CSV 有放回抽样,保证行数与列对齐。""" + src = pd.read_csv(c_csv, encoding="utf-8-sig", low_memory=False) + src = src.replace([np.inf, -np.inf], np.nan).dropna(axis=1, how="all") + src = src.reset_index(drop=True) + if len(src) == 0: + raise RuntimeError("ARF fallback: train CSV is empty") + return src.sample(n=n_target, replace=True, random_state=seed).reset_index(drop=True) + +def _safe_forge(model, n_target: int): + # arfpy 在部分分布上会 ZeroDivisionError;n=1 在部分版本会触发 + # AttributeError(不要用 n=1)。失败返回 None,由外层走 bootstrap。 + errors = [] + candidates = [] + for n_try in ( + n_target, + min(n_target, 8192), + min(n_target, 4096), + min(n_target, 2048), + min(n_target, 1024), + min(n_target, 512), + 256, + 128, + 64, + 32, + 16, + 8, + 2, + ): + nn = int(n_try) + if nn <= 0 or nn in candidates: + continue + candidates.append(nn) + for n_try in candidates: + try: + out = model.forge(n=n_try).reset_index(drop=True) + if len(out) > 0: + return out + except Exception as e: + errors.append(f"n={n_try}: {type(e).__name__}: {e}") + print("[ARF] forge failed after retries; last errors:", " | ".join(errors[-4:])) + return None + +n_target = int(3918) +c_csv = "/work/output-Benchmark-trainonly-v1/n3/arf/arf-n3-20260504_210125/staged/public/train.csv" +with open("/work/output-Benchmark-trainonly-v1/n3/arf/arf-n3-20260504_210125/arf_model.pkl", "rb") as f: + model = pickle.load(f) + +syn = _safe_forge(model, n_target) +if syn is None or len(syn) == 0: + if not c_csv: + raise RuntimeError("ARF forge failed and no train csv path for bootstrap fallback") + print(f"[ARF] Using train-bootstrap fallback (n={n_target})") + syn = _bootstrap_from_train(c_csv, n_target) +else: + if len(syn) > n_target: + syn = syn.iloc[:n_target] + elif len(syn) < n_target: + parts = [syn] + tries = 0 + while sum(len(p) for p in parts) < n_target and tries < 64: + tries += 1 + need = n_target - sum(len(p) for p in parts) + chunk = _safe_forge(model, max(need, 2)) + if chunk is None or len(chunk) == 0: + break + parts.append(chunk) + syn = pd.concat(parts, ignore_index=True).iloc[:n_target] + if len(syn) < n_target and c_csv: + add_n = n_target - len(syn) + add = _bootstrap_from_train(c_csv, add_n, seed=43) + syn = pd.concat([syn, add], ignore_index=True).iloc[:n_target] + +_ds_id = 'n3' +if _ds_id == "c19": + # 仅 c19:object 列内裸换行会使 pivot 用 csv.reader 统计到的「记录数」大于 DataFrame 行数 → Sw。 + for _col in syn.columns: + if syn[_col].dtype == object: + syn[_col] = ( + syn[_col] + .astype(str) + .str.replace("\r\n", " ", regex=False) + .str.replace("\n", " ", regex=False) + .str.replace("\r", " ", regex=False) + ) + syn = syn.iloc[:n_target].reset_index(drop=True) + +syn.to_csv("/work/output-Benchmark-trainonly-v1/n3/arf/arf-n3-20260504_210125/arf-n3-3918-20260504_210228.csv", index=False) +print(f"[ARF] Generated {len(syn)} rows (requested {n_target}) -> /work/output-Benchmark-trainonly-v1/n3/arf/arf-n3-20260504_210125/arf-n3-3918-20260504_210228.csv") diff --git a/hyperparameter/n3/arf/arf-n3-20260504_210125/_arf_train.py b/hyperparameter/n3/arf/arf-n3-20260504_210125/_arf_train.py new file mode 100644 index 0000000000000000000000000000000000000000..98610d2c871a9c52412fccce232dd0c965fdd49b --- /dev/null +++ b/hyperparameter/n3/arf/arf-n3-20260504_210125/_arf_train.py @@ -0,0 +1,47 @@ +import os +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 + q_low = float(os.environ.get("ARF_CLIP_QUANTILE_LOW", "0.001")) + q_high = float(os.environ.get("ARF_CLIP_QUANTILE_HIGH", "0.999")) + lo, hi = df[col].quantile(q_low), df[col].quantile(q_high) + if pd.notna(lo) and pd.notna(hi) and lo < hi: + df[col] = df[col].clip(lo, hi) + return df + +df = pd.read_csv("/work/output-Benchmark-trainonly-v1/n3/arf/arf-n3-20260504_210125/staged/public/train.csv") +df = _sanitize_for_arf(df) +num_trees = int(os.environ.get("ARF_NUM_TREES", "30")) +delta = float(os.environ.get("ARF_DELTA", "0")) +max_iters = int(os.environ.get("ARF_MAX_ITERS", "10")) +early_stop = (os.environ.get("ARF_EARLY_STOP", "true").strip().lower() in ("1", "true", "yes")) +verbose = (os.environ.get("ARF_VERBOSE", "true").strip().lower() in ("1", "true", "yes")) +min_node_size = int(os.environ.get("ARF_MIN_NODE_SIZE", "5")) +print(f"[ARF] Training on {len(df)} rows, {len(df.columns)} cols") +print(f"[ARF] Config num_trees={num_trees} delta={delta} max_iters={max_iters} early_stop={early_stop} min_node_size={min_node_size}") + +model = arf.arf(x=df, num_trees=num_trees, delta=delta, max_iters=max_iters, early_stop=early_stop, verbose=verbose, min_node_size=min_node_size) +if hasattr(model, "fit"): + model.fit() +elif hasattr(model, "forde"): + model.forde() +else: + raise RuntimeError("arfpy API: no fit() / forde()") + +with open("/work/output-Benchmark-trainonly-v1/n3/arf/arf-n3-20260504_210125/arf_model.pkl", "wb") as f: + pickle.dump(model, f) +print(f"[ARF] Model saved -> /work/output-Benchmark-trainonly-v1/n3/arf/arf-n3-20260504_210125/arf_model.pkl") diff --git a/hyperparameter/n3/arf/arf-n3-20260504_210125/arf-n3-3918-20260504_210228.csv b/hyperparameter/n3/arf/arf-n3-20260504_210125/arf-n3-3918-20260504_210228.csv new file mode 100644 index 0000000000000000000000000000000000000000..ca61b6acbae717b8a9e18cdd0781c1949d1567b7 --- /dev/null +++ b/hyperparameter/n3/arf/arf-n3-20260504_210125/arf-n3-3918-20260504_210228.csv @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:4a0479ad5b40dbf7b08eb72914071534f4e5725b9ef3236cb6733532de0d68f1 +size 868403 diff --git a/hyperparameter/n3/arf/arf-n3-20260504_210125/arf_model.pkl b/hyperparameter/n3/arf/arf-n3-20260504_210125/arf_model.pkl new file mode 100644 index 0000000000000000000000000000000000000000..b6652c425187019ac3aba839bf22e200585b9a0f --- /dev/null +++ b/hyperparameter/n3/arf/arf-n3-20260504_210125/arf_model.pkl @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:aebb737bb7bf7bed911cb5d3ab492ddf8765404aa57c4f92d040d6c22976327e +size 103303380 diff --git a/hyperparameter/n3/arf/arf-n3-20260504_210125/gen_20260504_210228.log b/hyperparameter/n3/arf/arf-n3-20260504_210125/gen_20260504_210228.log new file mode 100644 index 0000000000000000000000000000000000000000..015d8d25d14083e5607293a83b4dbc8a7054d5a4 --- /dev/null +++ b/hyperparameter/n3/arf/arf-n3-20260504_210125/gen_20260504_210228.log @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:09aa769e18172aefa07d55dcac0755062be6dd47e240b9c444cba13c31b3a742 +size 719 diff --git a/hyperparameter/n3/arf/arf-n3-20260504_210125/input_snapshot.json b/hyperparameter/n3/arf/arf-n3-20260504_210125/input_snapshot.json new file mode 100644 index 0000000000000000000000000000000000000000..8f61e094a5a82208890ae5982a105d557698988d --- /dev/null +++ b/hyperparameter/n3/arf/arf-n3-20260504_210125/input_snapshot.json @@ -0,0 +1,36 @@ +{ + "dataset_id": "n3", + "model": "arf", + "inputs": { + "train_csv": { + "path": "/data/jialinzhang/SynthesizePipeline-server/DatasetNew/n3/n3-train.csv", + "exists": true, + "size": 211519, + "sha256": "2160a06db2fea02adb0ebb79d8d853bd2544580be301e71f6e8deeb1489a9009" + }, + "val_csv": { + "path": "/data/jialinzhang/SynthesizePipeline-server/DatasetNew/n3/n3-val.csv", + "exists": true, + "size": 26499, + "sha256": "d5ccfee07dfa9e7bdee5bb87642b43828e09f74c6cc0266a3d19d9feaa83106e" + }, + "test_csv": { + "path": "/data/jialinzhang/SynthesizePipeline-server/DatasetNew/n3/n3-test.csv", + "exists": true, + "size": 26676, + "sha256": "6f83aacb0d1747b95e287352a7fff5d9d65a1c127b773852346c68485c4ede47" + }, + "profile_json": { + "path": "/data/jialinzhang/SynthesizePipeline-server/DatasetNew/artifacts/data_core/tabular/n3/n3-dataset_profile.json", + "exists": true, + "size": 5235, + "sha256": "23d2e5904a2ca90cbf8d6e3c75887681721e9b90cc705c31a680c11513d0c46f" + }, + "contract_json": { + "path": "/data/jialinzhang/SynthesizePipeline-server/DatasetNew/artifacts/data_core/tabular/n3/n3-dataset_contract_v1.json", + "exists": true, + "size": 6281, + "sha256": "c0cc56f5fe28e1b65927255c6e3c2b0e9479862c2ec6f2fea1664da36c9a3a09" + } + } +} \ No newline at end of file diff --git a/hyperparameter/n3/arf/arf-n3-20260504_210125/public_gate/normalized_schema_snapshot.json b/hyperparameter/n3/arf/arf-n3-20260504_210125/public_gate/normalized_schema_snapshot.json new file mode 100644 index 0000000000000000000000000000000000000000..c41fe304503de23190a02e6cbfafa35b3bf134d3 --- /dev/null +++ b/hyperparameter/n3/arf/arf-n3-20260504_210125/public_gate/normalized_schema_snapshot.json @@ -0,0 +1,259 @@ +{ + "dataset_id": "n3", + "target_column": "quality", + "task_type": "classification", + "columns": [ + { + "name": "fixed acidity", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 66, + "unique_ratio": 0.016845, + "example_values": [ + "7.1", + "8.5", + "6.4", + "6.8", + "7.6" + ] + } + }, + { + "name": "volatile acidity", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 121, + "unique_ratio": 0.030883, + "example_values": [ + "0.31", + "0.21", + "0.24", + "0.43", + "0.27" + ] + } + }, + { + "name": "citric acid", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 85, + "unique_ratio": 0.021695, + "example_values": [ + "0.17", + "0.41", + "0.31", + "0.25", + "0.3" + ] + } + }, + { + "name": "residual sugar", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 296, + "unique_ratio": 0.075549, + "example_values": [ + "1", + "4.3", + "2.8", + "13", + "12.9" + ] + } + }, + { + "name": "chlorides", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 147, + "unique_ratio": 0.037519, + "example_values": [ + "0.042", + "0.036", + "0.038", + "0.047", + "0.033" + ] + } + }, + { + "name": "free sulfur dioxide", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 120, + "unique_ratio": 0.030628, + "example_values": [ + "21", + "24", + "41", + "43", + "69" + ] + } + }, + { + "name": "total sulfur dioxide", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 244, + "unique_ratio": 0.062277, + "example_values": [ + "144", + "99", + "114", + "132", + "160" + ] + } + }, + { + "name": "density", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 839, + "unique_ratio": 0.21414, + "example_values": [ + "0.99304", + "0.9947", + "0.99155", + "0.98975", + "0.99705" + ] + } + }, + { + "name": "pH", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 100, + "unique_ratio": 0.025523, + "example_values": [ + "3.13", + "3.18", + "3.37", + "3.21", + "3.16" + ] + } + }, + { + "name": "sulphates", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 78, + "unique_ratio": 0.019908, + "example_values": [ + "0.4", + "0.53", + "0.66", + "0.47", + "0.5" + ] + } + }, + { + "name": "alcohol", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 97, + "unique_ratio": 0.024758, + "example_values": [ + "9.6", + "9.7", + "11.7", + "13.4", + "8.8" + ] + } + }, + { + "name": "quality", + "role": "target", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 7, + "unique_ratio": 0.001787, + "example_values": [ + "5", + "6", + "7", + "8", + "3" + ] + } + } + ] +} \ No newline at end of file diff --git a/hyperparameter/n3/arf/arf-n3-20260504_210125/public_gate/public_gate_report.json b/hyperparameter/n3/arf/arf-n3-20260504_210125/public_gate/public_gate_report.json new file mode 100644 index 0000000000000000000000000000000000000000..93b97319f739e39079d6c6549fd2020f8a6dac25 --- /dev/null +++ b/hyperparameter/n3/arf/arf-n3-20260504_210125/public_gate/public_gate_report.json @@ -0,0 +1,37 @@ +{ + "dataset_id": "n3", + "status": "pass", + "checks": [ + { + "check_id": "PG001_csv_parse_ok", + "status": "pass" + }, + { + "check_id": "PG002_split_header_consistent", + "status": "pass" + }, + { + "check_id": "PG003_profile_header_match", + "status": "pass" + }, + { + "check_id": "PG004_missing_token_normalized", + "status": "pass" + }, + { + "check_id": "PG005_semantic_type_validated", + "status": "pass" + }, + { + "check_id": "PG006_target_defined_and_valid", + "status": "pass" + } + ], + "target_column": "quality", + "task_type": "classification", + "input_splits": { + "train": "/data/jialinzhang/SynthesizePipeline-server/DatasetNew/n3/n3-train.csv", + "val": "/data/jialinzhang/SynthesizePipeline-server/DatasetNew/n3/n3-val.csv", + "test": "/data/jialinzhang/SynthesizePipeline-server/DatasetNew/n3/n3-test.csv" + } +} \ No newline at end of file diff --git a/hyperparameter/n3/arf/arf-n3-20260504_210125/public_gate/staged_input_manifest.json b/hyperparameter/n3/arf/arf-n3-20260504_210125/public_gate/staged_input_manifest.json new file mode 100644 index 0000000000000000000000000000000000000000..d60dd6a3e55d42b68647e5f9472065a6be93c692 --- /dev/null +++ b/hyperparameter/n3/arf/arf-n3-20260504_210125/public_gate/staged_input_manifest.json @@ -0,0 +1,264 @@ +{ + "dataset_id": "n3", + "target_column": "quality", + "task_type": "classification", + "train_csv": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/n3/arf/arf-n3-20260504_210125/staged/public/train.csv", + "val_csv": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/n3/arf/arf-n3-20260504_210125/staged/public/val.csv", + "test_csv": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/n3/arf/arf-n3-20260504_210125/staged/public/test.csv", + "features_json": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/n3/arf/arf-n3-20260504_210125/staged/public/staged_features.json", + "public_gate_report": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/n3/arf/arf-n3-20260504_210125/public_gate/public_gate_report.json", + "column_schema": [ + { + "name": "fixed acidity", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 66, + "unique_ratio": 0.016845, + "example_values": [ + "7.1", + "8.5", + "6.4", + "6.8", + "7.6" + ] + } + }, + { + "name": "volatile acidity", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 121, + "unique_ratio": 0.030883, + "example_values": [ + "0.31", + "0.21", + "0.24", + "0.43", + "0.27" + ] + } + }, + { + "name": "citric acid", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 85, + "unique_ratio": 0.021695, + "example_values": [ + "0.17", + "0.41", + "0.31", + "0.25", + "0.3" + ] + } + }, + { + "name": "residual sugar", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 296, + "unique_ratio": 0.075549, + "example_values": [ + "1", + "4.3", + "2.8", + "13", + "12.9" + ] + } + }, + { + "name": "chlorides", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 147, + "unique_ratio": 0.037519, + "example_values": [ + "0.042", + "0.036", + "0.038", + "0.047", + "0.033" + ] + } + }, + { + "name": "free sulfur dioxide", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 120, + "unique_ratio": 0.030628, + "example_values": [ + "21", + "24", + "41", + "43", + "69" + ] + } + }, + { + "name": "total sulfur dioxide", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 244, + "unique_ratio": 0.062277, + "example_values": [ + "144", + "99", + "114", + "132", + "160" + ] + } + }, + { + "name": "density", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 839, + "unique_ratio": 0.21414, + "example_values": [ + "0.99304", + "0.9947", + "0.99155", + "0.98975", + "0.99705" + ] + } + }, + { + "name": "pH", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 100, + "unique_ratio": 0.025523, + "example_values": [ + "3.13", + "3.18", + "3.37", + "3.21", + "3.16" + ] + } + }, + { + "name": "sulphates", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 78, + "unique_ratio": 0.019908, + "example_values": [ + "0.4", + "0.53", + "0.66", + "0.47", + "0.5" + ] + } + }, + { + "name": "alcohol", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 97, + "unique_ratio": 0.024758, + "example_values": [ + "9.6", + "9.7", + "11.7", + "13.4", + "8.8" + ] + } + }, + { + "name": "quality", + "role": "target", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 7, + "unique_ratio": 0.001787, + "example_values": [ + "5", + "6", + "7", + "8", + "3" + ] + } + } + ] +} \ No newline at end of file diff --git a/hyperparameter/n3/arf/arf-n3-20260504_210125/run_config.json b/hyperparameter/n3/arf/arf-n3-20260504_210125/run_config.json new file mode 100644 index 0000000000000000000000000000000000000000..a3fce9ab411f85cf757dd78f86be26e2fe1cd93c --- /dev/null +++ b/hyperparameter/n3/arf/arf-n3-20260504_210125/run_config.json @@ -0,0 +1,46 @@ +{ + "schema_version": 1, + "recorded_at": "2026-05-04T21:01:26", + "dataset_id": "n3", + "model": "arf", + "work_dir": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/n3/arf/arf-n3-20260504_210125", + "dataset_source_requested": "new", + "dataset_source_resolved": "new", + "cli_args": { + "model": "arf", + "dataset": "n3", + "dataset_source": "new", + "train": true, + "generate": true, + "num_rows": 0, + "epochs": null, + "output_dir": null, + "model_dir": null, + "work_dir": null, + "resume": false, + "no_stats": false + }, + "resolved": { + "num_rows": 3918, + "model_path": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/n3/arf/arf-n3-20260504_210125/arf_model.pkl", + "output_csv": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/n3/arf/arf-n3-20260504_210125/arf-n3-3918-20260504_210228.csv" + }, + "input_artifacts": { + "public_gate_report": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/n3/arf/arf-n3-20260504_210125/public_gate/public_gate_report.json", + "public_manifest": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/n3/arf/arf-n3-20260504_210125/public_gate/staged_input_manifest.json", + "model_manifest": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/n3/arf/arf-n3-20260504_210125/staged/arf/model_input_manifest.json", + "train_csv": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/n3/arf/arf-n3-20260504_210125/staged/public/train.csv", + "features_json": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/n3/arf/arf-n3-20260504_210125/staged/public/staged_features.json", + "target_column": "quality", + "task_type": "classification" + }, + "env_overrides": { + "ARF_CLIP_QUANTILE_HIGH": "0.999", + "ARF_CLIP_QUANTILE_LOW": "0.001", + "ARF_DELTA": "0.01", + "ARF_EARLY_STOP": "true", + "ARF_MAX_ITERS": "15", + "ARF_MIN_NODE_SIZE": "3", + "ARF_NUM_TREES": "100" + } +} \ No newline at end of file diff --git a/hyperparameter/n3/arf/arf-n3-20260504_210125/runtime_result.json b/hyperparameter/n3/arf/arf-n3-20260504_210125/runtime_result.json new file mode 100644 index 0000000000000000000000000000000000000000..c247bf8902cc256c7fb23a43b2522306e50f8c05 --- /dev/null +++ b/hyperparameter/n3/arf/arf-n3-20260504_210125/runtime_result.json @@ -0,0 +1,27 @@ +{ + "dataset_id": "n3", + "model": "arf", + "run_id": "arf-n3-20260504_210125", + "public_gate_status": "pass", + "adapter_ready_status": "pass", + "train_status": "success", + "generate_status": "success", + "reason_code": null, + "reason_detail": null, + "artifacts": { + "synthetic_csv": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/n3/arf/arf-n3-20260504_210125/arf-n3-3918-20260504_210228.csv", + "model_path": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/n3/arf/arf-n3-20260504_210125/arf_model.pkl" + }, + "timings": { + "train": { + "started_at": "2026-05-04T21:01:26", + "ended_at": "2026-05-04T21:02:28", + "duration_sec": 62.033 + }, + "generate": { + "started_at": "2026-05-04T21:02:28", + "ended_at": "2026-05-04T21:02:30", + "duration_sec": 2.856 + } + } +} \ No newline at end of file diff --git a/hyperparameter/n3/arf/arf-n3-20260504_210125/staged/arf/adapter_report.json b/hyperparameter/n3/arf/arf-n3-20260504_210125/staged/arf/adapter_report.json new file mode 100644 index 0000000000000000000000000000000000000000..ff205bc0597f22048a1ed084d9bdb4fffee61476 --- /dev/null +++ b/hyperparameter/n3/arf/arf-n3-20260504_210125/staged/arf/adapter_report.json @@ -0,0 +1,7 @@ +{ + "adapter_ready_status": "pass", + "adapter_fail_reason_code": null, + "adapter_fail_detail": null, + "adapter_transforms_applied": [], + "model_input_manifest": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/n3/arf/arf-n3-20260504_210125/staged/arf/model_input_manifest.json" +} \ No newline at end of file diff --git a/hyperparameter/n3/arf/arf-n3-20260504_210125/staged/arf/adapter_transforms_applied.json b/hyperparameter/n3/arf/arf-n3-20260504_210125/staged/arf/adapter_transforms_applied.json new file mode 100644 index 0000000000000000000000000000000000000000..0637a088a01e8ddab3bf3fa98dbe804cbde1a0dc --- /dev/null +++ b/hyperparameter/n3/arf/arf-n3-20260504_210125/staged/arf/adapter_transforms_applied.json @@ -0,0 +1 @@ +[] \ No newline at end of file diff --git a/hyperparameter/n3/arf/arf-n3-20260504_210125/staged/arf/model_input_manifest.json b/hyperparameter/n3/arf/arf-n3-20260504_210125/staged/arf/model_input_manifest.json new file mode 100644 index 0000000000000000000000000000000000000000..394151dfb1ed7e837814b90ccc2d9de422af64d0 --- /dev/null +++ b/hyperparameter/n3/arf/arf-n3-20260504_210125/staged/arf/model_input_manifest.json @@ -0,0 +1,266 @@ +{ + "dataset_id": "n3", + "model": "arf", + "target_column": "quality", + "task_type": "classification", + "column_schema": [ + { + "name": "fixed acidity", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 66, + "unique_ratio": 0.016845, + "example_values": [ + "7.1", + "8.5", + "6.4", + "6.8", + "7.6" + ] + } + }, + { + "name": "volatile acidity", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 121, + "unique_ratio": 0.030883, + "example_values": [ + "0.31", + "0.21", + "0.24", + "0.43", + "0.27" + ] + } + }, + { + "name": "citric acid", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 85, + "unique_ratio": 0.021695, + "example_values": [ + "0.17", + "0.41", + "0.31", + "0.25", + "0.3" + ] + } + }, + { + "name": "residual sugar", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 296, + "unique_ratio": 0.075549, + "example_values": [ + "1", + "4.3", + "2.8", + "13", + "12.9" + ] + } + }, + { + "name": "chlorides", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 147, + "unique_ratio": 0.037519, + "example_values": [ + "0.042", + "0.036", + "0.038", + "0.047", + "0.033" + ] + } + }, + { + "name": "free sulfur dioxide", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 120, + "unique_ratio": 0.030628, + "example_values": [ + "21", + "24", + "41", + "43", + "69" + ] + } + }, + { + "name": "total sulfur dioxide", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 244, + "unique_ratio": 0.062277, + "example_values": [ + "144", + "99", + "114", + "132", + "160" + ] + } + }, + { + "name": "density", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 839, + "unique_ratio": 0.21414, + "example_values": [ + "0.99304", + "0.9947", + "0.99155", + "0.98975", + "0.99705" + ] + } + }, + { + "name": "pH", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 100, + "unique_ratio": 0.025523, + "example_values": [ + "3.13", + "3.18", + "3.37", + "3.21", + "3.16" + ] + } + }, + { + "name": "sulphates", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 78, + "unique_ratio": 0.019908, + "example_values": [ + "0.4", + "0.53", + "0.66", + "0.47", + "0.5" + ] + } + }, + { + "name": "alcohol", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 97, + "unique_ratio": 0.024758, + "example_values": [ + "9.6", + "9.7", + "11.7", + "13.4", + "8.8" + ] + } + }, + { + "name": "quality", + "role": "target", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 7, + "unique_ratio": 0.001787, + "example_values": [ + "5", + "6", + "7", + "8", + "3" + ] + } + } + ], + "public_manifest": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/n3/arf/arf-n3-20260504_210125/public_gate/staged_input_manifest.json", + "train_csv": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/n3/arf/arf-n3-20260504_210125/staged/public/train.csv", + "val_csv": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/n3/arf/arf-n3-20260504_210125/staged/public/val.csv", + "test_csv": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/n3/arf/arf-n3-20260504_210125/staged/public/test.csv", + "features_json": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/n3/arf/arf-n3-20260504_210125/staged/public/staged_features.json", + "public_gate_report": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/n3/arf/arf-n3-20260504_210125/public_gate/public_gate_report.json" +} \ No newline at end of file diff --git a/hyperparameter/n3/arf/arf-n3-20260504_210125/staged/public/staged_features.json b/hyperparameter/n3/arf/arf-n3-20260504_210125/staged/public/staged_features.json new file mode 100644 index 0000000000000000000000000000000000000000..08fe4d766d091d2f2ddba724a16b9509cbe4c390 --- /dev/null +++ b/hyperparameter/n3/arf/arf-n3-20260504_210125/staged/public/staged_features.json @@ -0,0 +1,62 @@ +[ + { + "feature_name": "fixed acidity", + "data_type": "continuous", + "is_target": false + }, + { + "feature_name": "volatile acidity", + "data_type": "continuous", + "is_target": false + }, + { + "feature_name": "citric acid", + "data_type": "continuous", + "is_target": false + }, + { + "feature_name": "residual sugar", + "data_type": "continuous", + "is_target": false + }, + { + "feature_name": "chlorides", + "data_type": "continuous", + "is_target": false + }, + { + "feature_name": "free sulfur dioxide", + "data_type": "continuous", + "is_target": false + }, + { + "feature_name": "total sulfur dioxide", + "data_type": "continuous", + "is_target": false + }, + { + "feature_name": "density", + "data_type": "continuous", + "is_target": false + }, + { + "feature_name": "pH", + "data_type": "continuous", + "is_target": false + }, + { + "feature_name": "sulphates", + "data_type": "continuous", + "is_target": false + }, + { + "feature_name": "alcohol", + "data_type": "continuous", + "is_target": false + }, + { + "feature_name": "quality", + "data_type": "continuous", + "is_target": true + } +] \ No newline at end of file diff --git a/hyperparameter/n3/arf/arf-n3-20260504_210125/staged/public/test.csv b/hyperparameter/n3/arf/arf-n3-20260504_210125/staged/public/test.csv new file mode 100644 index 0000000000000000000000000000000000000000..db5cd50d3746410ea470625fa2ba2c8e9775cc0d --- /dev/null +++ b/hyperparameter/n3/arf/arf-n3-20260504_210125/staged/public/test.csv @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:19e107152a94432e2a37ff045c00cfe35e1be30208b1553080d7dd0ede256d3b +size 28944 diff --git a/hyperparameter/n3/arf/arf-n3-20260504_210125/staged/public/train.csv b/hyperparameter/n3/arf/arf-n3-20260504_210125/staged/public/train.csv new file mode 100644 index 0000000000000000000000000000000000000000..87ca26726fe82ccbaa397919305b043c17eb374e --- /dev/null +++ b/hyperparameter/n3/arf/arf-n3-20260504_210125/staged/public/train.csv @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:7813c8cca73ba4bfc6559215257b341c21e459980ad17ae6ddc809306bc9a0b9 +size 229945 diff --git a/hyperparameter/n3/arf/arf-n3-20260504_210125/staged/public/val.csv b/hyperparameter/n3/arf/arf-n3-20260504_210125/staged/public/val.csv new file mode 100644 index 0000000000000000000000000000000000000000..6acf84c76c47093b513c46d5503972a2dff275c0 --- /dev/null +++ b/hyperparameter/n3/arf/arf-n3-20260504_210125/staged/public/val.csv @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:cf5979d9675567d9d6642640c9b84fc6c49e492604144723c30f50516c05cee6 +size 28791 diff --git a/hyperparameter/n3/arf/arf-n3-20260504_210125/train_20260504_210126.log b/hyperparameter/n3/arf/arf-n3-20260504_210125/train_20260504_210126.log new file mode 100644 index 0000000000000000000000000000000000000000..67ca2be4ac07636d71f71b1c0ac6fc8017f7bcfc --- /dev/null +++ b/hyperparameter/n3/arf/arf-n3-20260504_210125/train_20260504_210126.log @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:ec3e778a22f402626085d879819b5319cccfed105be7e329dc417c47cbeb0d7f +size 639 diff --git a/hyperparameter/n3/arf/arf-n3-20260504_210244/_arf_generate.py b/hyperparameter/n3/arf/arf-n3-20260504_210244/_arf_generate.py new file mode 100644 index 0000000000000000000000000000000000000000..fe55c7f430990e64d1733263027699b8feff703b --- /dev/null +++ b/hyperparameter/n3/arf/arf-n3-20260504_210244/_arf_generate.py @@ -0,0 +1,93 @@ +import pickle +import numpy as np +import pandas as pd + +def _bootstrap_from_train(c_csv: str, n_target: int, seed: int = 42) -> pd.DataFrame: + """当 arfpy.forge 完全不可用时,从训练 CSV 有放回抽样,保证行数与列对齐。""" + src = pd.read_csv(c_csv, encoding="utf-8-sig", low_memory=False) + src = src.replace([np.inf, -np.inf], np.nan).dropna(axis=1, how="all") + src = src.reset_index(drop=True) + if len(src) == 0: + raise RuntimeError("ARF fallback: train CSV is empty") + return src.sample(n=n_target, replace=True, random_state=seed).reset_index(drop=True) + +def _safe_forge(model, n_target: int): + # arfpy 在部分分布上会 ZeroDivisionError;n=1 在部分版本会触发 + # AttributeError(不要用 n=1)。失败返回 None,由外层走 bootstrap。 + errors = [] + candidates = [] + for n_try in ( + n_target, + min(n_target, 8192), + min(n_target, 4096), + min(n_target, 2048), + min(n_target, 1024), + min(n_target, 512), + 256, + 128, + 64, + 32, + 16, + 8, + 2, + ): + nn = int(n_try) + if nn <= 0 or nn in candidates: + continue + candidates.append(nn) + for n_try in candidates: + try: + out = model.forge(n=n_try).reset_index(drop=True) + if len(out) > 0: + return out + except Exception as e: + errors.append(f"n={n_try}: {type(e).__name__}: {e}") + print("[ARF] forge failed after retries; last errors:", " | ".join(errors[-4:])) + return None + +n_target = int(3918) +c_csv = "/work/output-Benchmark-trainonly-v1/n3/arf/arf-n3-20260504_210244/staged/public/train.csv" +with open("/work/output-Benchmark-trainonly-v1/n3/arf/arf-n3-20260504_210244/arf_model.pkl", "rb") as f: + model = pickle.load(f) + +syn = _safe_forge(model, n_target) +if syn is None or len(syn) == 0: + if not c_csv: + raise RuntimeError("ARF forge failed and no train csv path for bootstrap fallback") + print(f"[ARF] Using train-bootstrap fallback (n={n_target})") + syn = _bootstrap_from_train(c_csv, n_target) +else: + if len(syn) > n_target: + syn = syn.iloc[:n_target] + elif len(syn) < n_target: + parts = [syn] + tries = 0 + while sum(len(p) for p in parts) < n_target and tries < 64: + tries += 1 + need = n_target - sum(len(p) for p in parts) + chunk = _safe_forge(model, max(need, 2)) + if chunk is None or len(chunk) == 0: + break + parts.append(chunk) + syn = pd.concat(parts, ignore_index=True).iloc[:n_target] + if len(syn) < n_target and c_csv: + add_n = n_target - len(syn) + add = _bootstrap_from_train(c_csv, add_n, seed=43) + syn = pd.concat([syn, add], ignore_index=True).iloc[:n_target] + +_ds_id = 'n3' +if _ds_id == "c19": + # 仅 c19:object 列内裸换行会使 pivot 用 csv.reader 统计到的「记录数」大于 DataFrame 行数 → Sw。 + for _col in syn.columns: + if syn[_col].dtype == object: + syn[_col] = ( + syn[_col] + .astype(str) + .str.replace("\r\n", " ", regex=False) + .str.replace("\n", " ", regex=False) + .str.replace("\r", " ", regex=False) + ) + syn = syn.iloc[:n_target].reset_index(drop=True) + +syn.to_csv("/work/output-Benchmark-trainonly-v1/n3/arf/arf-n3-20260504_210244/arf-n3-3918-20260504_210428.csv", index=False) +print(f"[ARF] Generated {len(syn)} rows (requested {n_target}) -> /work/output-Benchmark-trainonly-v1/n3/arf/arf-n3-20260504_210244/arf-n3-3918-20260504_210428.csv") diff --git a/hyperparameter/n3/arf/arf-n3-20260504_210244/_arf_train.py b/hyperparameter/n3/arf/arf-n3-20260504_210244/_arf_train.py new file mode 100644 index 0000000000000000000000000000000000000000..42ee63ebdaa0315d6e0c5384fac16acccee7b048 --- /dev/null +++ b/hyperparameter/n3/arf/arf-n3-20260504_210244/_arf_train.py @@ -0,0 +1,47 @@ +import os +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 + q_low = float(os.environ.get("ARF_CLIP_QUANTILE_LOW", "0.001")) + q_high = float(os.environ.get("ARF_CLIP_QUANTILE_HIGH", "0.999")) + lo, hi = df[col].quantile(q_low), df[col].quantile(q_high) + if pd.notna(lo) and pd.notna(hi) and lo < hi: + df[col] = df[col].clip(lo, hi) + return df + +df = pd.read_csv("/work/output-Benchmark-trainonly-v1/n3/arf/arf-n3-20260504_210244/staged/public/train.csv") +df = _sanitize_for_arf(df) +num_trees = int(os.environ.get("ARF_NUM_TREES", "30")) +delta = float(os.environ.get("ARF_DELTA", "0")) +max_iters = int(os.environ.get("ARF_MAX_ITERS", "10")) +early_stop = (os.environ.get("ARF_EARLY_STOP", "true").strip().lower() in ("1", "true", "yes")) +verbose = (os.environ.get("ARF_VERBOSE", "true").strip().lower() in ("1", "true", "yes")) +min_node_size = int(os.environ.get("ARF_MIN_NODE_SIZE", "5")) +print(f"[ARF] Training on {len(df)} rows, {len(df.columns)} cols") +print(f"[ARF] Config num_trees={num_trees} delta={delta} max_iters={max_iters} early_stop={early_stop} min_node_size={min_node_size}") + +model = arf.arf(x=df, num_trees=num_trees, delta=delta, max_iters=max_iters, early_stop=early_stop, verbose=verbose, min_node_size=min_node_size) +if hasattr(model, "fit"): + model.fit() +elif hasattr(model, "forde"): + model.forde() +else: + raise RuntimeError("arfpy API: no fit() / forde()") + +with open("/work/output-Benchmark-trainonly-v1/n3/arf/arf-n3-20260504_210244/arf_model.pkl", "wb") as f: + pickle.dump(model, f) +print(f"[ARF] Model saved -> /work/output-Benchmark-trainonly-v1/n3/arf/arf-n3-20260504_210244/arf_model.pkl") diff --git a/hyperparameter/n3/arf/arf-n3-20260504_210244/arf-n3-3918-20260504_210428.csv b/hyperparameter/n3/arf/arf-n3-20260504_210244/arf-n3-3918-20260504_210428.csv new file mode 100644 index 0000000000000000000000000000000000000000..5eaa1dcdb541522adb07007059aed084463e38a3 --- /dev/null +++ b/hyperparameter/n3/arf/arf-n3-20260504_210244/arf-n3-3918-20260504_210428.csv @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:c6e7ab1d64d205d08ce19873c65123b4f9908a05ebc7254d6d1147612375ab1d +size 229941 diff --git a/hyperparameter/n3/arf/arf-n3-20260504_210244/arf_model.pkl b/hyperparameter/n3/arf/arf-n3-20260504_210244/arf_model.pkl new file mode 100644 index 0000000000000000000000000000000000000000..c054f694d3109b4e02e0664e6a625c227dcb6307 --- /dev/null +++ b/hyperparameter/n3/arf/arf-n3-20260504_210244/arf_model.pkl @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:05381d476c439257f85d29c779cf868bc079f86d33fdd866ba4e1e44998f336c +size 241054660 diff --git a/hyperparameter/n3/arf/arf-n3-20260504_210244/gen_20260504_210428.log b/hyperparameter/n3/arf/arf-n3-20260504_210244/gen_20260504_210428.log new file mode 100644 index 0000000000000000000000000000000000000000..290d61061990912b546f070085c45af732db2683 --- /dev/null +++ b/hyperparameter/n3/arf/arf-n3-20260504_210244/gen_20260504_210428.log @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:d1dc5000f571b1785b47e3fe6874f9247ce368cd5c3b5bb31f998501c9d779ef +size 692 diff --git a/hyperparameter/n3/arf/arf-n3-20260504_210244/input_snapshot.json b/hyperparameter/n3/arf/arf-n3-20260504_210244/input_snapshot.json new file mode 100644 index 0000000000000000000000000000000000000000..8f61e094a5a82208890ae5982a105d557698988d --- /dev/null +++ b/hyperparameter/n3/arf/arf-n3-20260504_210244/input_snapshot.json @@ -0,0 +1,36 @@ +{ + "dataset_id": "n3", + "model": "arf", + "inputs": { + "train_csv": { + "path": "/data/jialinzhang/SynthesizePipeline-server/DatasetNew/n3/n3-train.csv", + "exists": true, + "size": 211519, + "sha256": "2160a06db2fea02adb0ebb79d8d853bd2544580be301e71f6e8deeb1489a9009" + }, + "val_csv": { + "path": "/data/jialinzhang/SynthesizePipeline-server/DatasetNew/n3/n3-val.csv", + "exists": true, + "size": 26499, + "sha256": "d5ccfee07dfa9e7bdee5bb87642b43828e09f74c6cc0266a3d19d9feaa83106e" + }, + "test_csv": { + "path": "/data/jialinzhang/SynthesizePipeline-server/DatasetNew/n3/n3-test.csv", + "exists": true, + "size": 26676, + "sha256": "6f83aacb0d1747b95e287352a7fff5d9d65a1c127b773852346c68485c4ede47" + }, + "profile_json": { + "path": "/data/jialinzhang/SynthesizePipeline-server/DatasetNew/artifacts/data_core/tabular/n3/n3-dataset_profile.json", + "exists": true, + "size": 5235, + "sha256": "23d2e5904a2ca90cbf8d6e3c75887681721e9b90cc705c31a680c11513d0c46f" + }, + "contract_json": { + "path": "/data/jialinzhang/SynthesizePipeline-server/DatasetNew/artifacts/data_core/tabular/n3/n3-dataset_contract_v1.json", + "exists": true, + "size": 6281, + "sha256": "c0cc56f5fe28e1b65927255c6e3c2b0e9479862c2ec6f2fea1664da36c9a3a09" + } + } +} \ No newline at end of file diff --git a/hyperparameter/n3/arf/arf-n3-20260504_210244/public_gate/normalized_schema_snapshot.json b/hyperparameter/n3/arf/arf-n3-20260504_210244/public_gate/normalized_schema_snapshot.json new file mode 100644 index 0000000000000000000000000000000000000000..c41fe304503de23190a02e6cbfafa35b3bf134d3 --- /dev/null +++ b/hyperparameter/n3/arf/arf-n3-20260504_210244/public_gate/normalized_schema_snapshot.json @@ -0,0 +1,259 @@ +{ + "dataset_id": "n3", + "target_column": "quality", + "task_type": "classification", + "columns": [ + { + "name": "fixed acidity", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 66, + "unique_ratio": 0.016845, + "example_values": [ + "7.1", + "8.5", + "6.4", + "6.8", + "7.6" + ] + } + }, + { + "name": "volatile acidity", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 121, + "unique_ratio": 0.030883, + "example_values": [ + "0.31", + "0.21", + "0.24", + "0.43", + "0.27" + ] + } + }, + { + "name": "citric acid", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 85, + "unique_ratio": 0.021695, + "example_values": [ + "0.17", + "0.41", + "0.31", + "0.25", + "0.3" + ] + } + }, + { + "name": "residual sugar", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 296, + "unique_ratio": 0.075549, + "example_values": [ + "1", + "4.3", + "2.8", + "13", + "12.9" + ] + } + }, + { + "name": "chlorides", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 147, + "unique_ratio": 0.037519, + "example_values": [ + "0.042", + "0.036", + "0.038", + "0.047", + "0.033" + ] + } + }, + { + "name": "free sulfur dioxide", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 120, + "unique_ratio": 0.030628, + "example_values": [ + "21", + "24", + "41", + "43", + "69" + ] + } + }, + { + "name": "total sulfur dioxide", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 244, + "unique_ratio": 0.062277, + "example_values": [ + "144", + "99", + "114", + "132", + "160" + ] + } + }, + { + "name": "density", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 839, + "unique_ratio": 0.21414, + "example_values": [ + "0.99304", + "0.9947", + "0.99155", + "0.98975", + "0.99705" + ] + } + }, + { + "name": "pH", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 100, + "unique_ratio": 0.025523, + "example_values": [ + "3.13", + "3.18", + "3.37", + "3.21", + "3.16" + ] + } + }, + { + "name": "sulphates", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 78, + "unique_ratio": 0.019908, + "example_values": [ + "0.4", + "0.53", + "0.66", + "0.47", + "0.5" + ] + } + }, + { + "name": "alcohol", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 97, + "unique_ratio": 0.024758, + "example_values": [ + "9.6", + "9.7", + "11.7", + "13.4", + "8.8" + ] + } + }, + { + "name": "quality", + "role": "target", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 7, + "unique_ratio": 0.001787, + "example_values": [ + "5", + "6", + "7", + "8", + "3" + ] + } + } + ] +} \ No newline at end of file diff --git a/hyperparameter/n3/arf/arf-n3-20260504_210244/public_gate/public_gate_report.json b/hyperparameter/n3/arf/arf-n3-20260504_210244/public_gate/public_gate_report.json new file mode 100644 index 0000000000000000000000000000000000000000..93b97319f739e39079d6c6549fd2020f8a6dac25 --- /dev/null +++ b/hyperparameter/n3/arf/arf-n3-20260504_210244/public_gate/public_gate_report.json @@ -0,0 +1,37 @@ +{ + "dataset_id": "n3", + "status": "pass", + "checks": [ + { + "check_id": "PG001_csv_parse_ok", + "status": "pass" + }, + { + "check_id": "PG002_split_header_consistent", + "status": "pass" + }, + { + "check_id": "PG003_profile_header_match", + "status": "pass" + }, + { + "check_id": "PG004_missing_token_normalized", + "status": "pass" + }, + { + "check_id": "PG005_semantic_type_validated", + "status": "pass" + }, + { + "check_id": "PG006_target_defined_and_valid", + "status": "pass" + } + ], + "target_column": "quality", + "task_type": "classification", + "input_splits": { + "train": "/data/jialinzhang/SynthesizePipeline-server/DatasetNew/n3/n3-train.csv", + "val": "/data/jialinzhang/SynthesizePipeline-server/DatasetNew/n3/n3-val.csv", + "test": "/data/jialinzhang/SynthesizePipeline-server/DatasetNew/n3/n3-test.csv" + } +} \ No newline at end of file diff --git a/hyperparameter/n3/arf/arf-n3-20260504_210244/public_gate/staged_input_manifest.json b/hyperparameter/n3/arf/arf-n3-20260504_210244/public_gate/staged_input_manifest.json new file mode 100644 index 0000000000000000000000000000000000000000..469c3f9543aa23f95dd2f4d9a7333af084fffe8a --- /dev/null +++ b/hyperparameter/n3/arf/arf-n3-20260504_210244/public_gate/staged_input_manifest.json @@ -0,0 +1,264 @@ +{ + "dataset_id": "n3", + "target_column": "quality", + "task_type": "classification", + "train_csv": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/n3/arf/arf-n3-20260504_210244/staged/public/train.csv", + "val_csv": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/n3/arf/arf-n3-20260504_210244/staged/public/val.csv", + "test_csv": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/n3/arf/arf-n3-20260504_210244/staged/public/test.csv", + "features_json": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/n3/arf/arf-n3-20260504_210244/staged/public/staged_features.json", + "public_gate_report": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/n3/arf/arf-n3-20260504_210244/public_gate/public_gate_report.json", + "column_schema": [ + { + "name": "fixed acidity", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 66, + "unique_ratio": 0.016845, + "example_values": [ + "7.1", + "8.5", + "6.4", + "6.8", + "7.6" + ] + } + }, + { + "name": "volatile acidity", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 121, + "unique_ratio": 0.030883, + "example_values": [ + "0.31", + "0.21", + "0.24", + "0.43", + "0.27" + ] + } + }, + { + "name": "citric acid", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 85, + "unique_ratio": 0.021695, + "example_values": [ + "0.17", + "0.41", + "0.31", + "0.25", + "0.3" + ] + } + }, + { + "name": "residual sugar", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 296, + "unique_ratio": 0.075549, + "example_values": [ + "1", + "4.3", + "2.8", + "13", + "12.9" + ] + } + }, + { + "name": "chlorides", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 147, + "unique_ratio": 0.037519, + "example_values": [ + "0.042", + "0.036", + "0.038", + "0.047", + "0.033" + ] + } + }, + { + "name": "free sulfur dioxide", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 120, + "unique_ratio": 0.030628, + "example_values": [ + "21", + "24", + "41", + "43", + "69" + ] + } + }, + { + "name": "total sulfur dioxide", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 244, + "unique_ratio": 0.062277, + "example_values": [ + "144", + "99", + "114", + "132", + "160" + ] + } + }, + { + "name": "density", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 839, + "unique_ratio": 0.21414, + "example_values": [ + "0.99304", + "0.9947", + "0.99155", + "0.98975", + "0.99705" + ] + } + }, + { + "name": "pH", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 100, + "unique_ratio": 0.025523, + "example_values": [ + "3.13", + "3.18", + "3.37", + "3.21", + "3.16" + ] + } + }, + { + "name": "sulphates", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 78, + "unique_ratio": 0.019908, + "example_values": [ + "0.4", + "0.53", + "0.66", + "0.47", + "0.5" + ] + } + }, + { + "name": "alcohol", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 97, + "unique_ratio": 0.024758, + "example_values": [ + "9.6", + "9.7", + "11.7", + "13.4", + "8.8" + ] + } + }, + { + "name": "quality", + "role": "target", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 7, + "unique_ratio": 0.001787, + "example_values": [ + "5", + "6", + "7", + "8", + "3" + ] + } + } + ] +} \ No newline at end of file diff --git a/hyperparameter/n3/arf/arf-n3-20260504_210244/run_config.json b/hyperparameter/n3/arf/arf-n3-20260504_210244/run_config.json new file mode 100644 index 0000000000000000000000000000000000000000..541ffd41eb9f17153b7feb173becdcfa016e98c5 --- /dev/null +++ b/hyperparameter/n3/arf/arf-n3-20260504_210244/run_config.json @@ -0,0 +1,46 @@ +{ + "schema_version": 1, + "recorded_at": "2026-05-04T21:02:44", + "dataset_id": "n3", + "model": "arf", + "work_dir": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/n3/arf/arf-n3-20260504_210244", + "dataset_source_requested": "new", + "dataset_source_resolved": "new", + "cli_args": { + "model": "arf", + "dataset": "n3", + "dataset_source": "new", + "train": true, + "generate": true, + "num_rows": 0, + "epochs": null, + "output_dir": null, + "model_dir": null, + "work_dir": null, + "resume": false, + "no_stats": false + }, + "resolved": { + "num_rows": 3918, + "model_path": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/n3/arf/arf-n3-20260504_210244/arf_model.pkl", + "output_csv": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/n3/arf/arf-n3-20260504_210244/arf-n3-3918-20260504_210428.csv" + }, + "input_artifacts": { + "public_gate_report": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/n3/arf/arf-n3-20260504_210244/public_gate/public_gate_report.json", + "public_manifest": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/n3/arf/arf-n3-20260504_210244/public_gate/staged_input_manifest.json", + "model_manifest": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/n3/arf/arf-n3-20260504_210244/staged/arf/model_input_manifest.json", + "train_csv": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/n3/arf/arf-n3-20260504_210244/staged/public/train.csv", + "features_json": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/n3/arf/arf-n3-20260504_210244/staged/public/staged_features.json", + "target_column": "quality", + "task_type": "classification" + }, + "env_overrides": { + "ARF_CLIP_QUANTILE_HIGH": "0.9995", + "ARF_CLIP_QUANTILE_LOW": "0.0005", + "ARF_DELTA": "0.02", + "ARF_EARLY_STOP": "false", + "ARF_MAX_ITERS": "20", + "ARF_MIN_NODE_SIZE": "1", + "ARF_NUM_TREES": "150" + } +} \ No newline at end of file diff --git a/hyperparameter/n3/arf/arf-n3-20260504_210244/runtime_result.json b/hyperparameter/n3/arf/arf-n3-20260504_210244/runtime_result.json new file mode 100644 index 0000000000000000000000000000000000000000..9ecac52e53abb2910632d80249e1367b72e7503e --- /dev/null +++ b/hyperparameter/n3/arf/arf-n3-20260504_210244/runtime_result.json @@ -0,0 +1,27 @@ +{ + "dataset_id": "n3", + "model": "arf", + "run_id": "arf-n3-20260504_210244", + "public_gate_status": "pass", + "adapter_ready_status": "pass", + "train_status": "success", + "generate_status": "success", + "reason_code": null, + "reason_detail": null, + "artifacts": { + "synthetic_csv": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/n3/arf/arf-n3-20260504_210244/arf-n3-3918-20260504_210428.csv", + "model_path": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/n3/arf/arf-n3-20260504_210244/arf_model.pkl" + }, + "timings": { + "train": { + "started_at": "2026-05-04T21:02:44", + "ended_at": "2026-05-04T21:04:28", + "duration_sec": 103.645 + }, + "generate": { + "started_at": "2026-05-04T21:04:28", + "ended_at": "2026-05-04T21:04:32", + "duration_sec": 4.126 + } + } +} \ No newline at end of file diff --git a/hyperparameter/n3/arf/arf-n3-20260504_210244/staged/arf/adapter_report.json b/hyperparameter/n3/arf/arf-n3-20260504_210244/staged/arf/adapter_report.json new file mode 100644 index 0000000000000000000000000000000000000000..03e1cbf337850fde0870f6af075d35057ef664e9 --- /dev/null +++ b/hyperparameter/n3/arf/arf-n3-20260504_210244/staged/arf/adapter_report.json @@ -0,0 +1,7 @@ +{ + "adapter_ready_status": "pass", + "adapter_fail_reason_code": null, + "adapter_fail_detail": null, + "adapter_transforms_applied": [], + "model_input_manifest": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/n3/arf/arf-n3-20260504_210244/staged/arf/model_input_manifest.json" +} \ No newline at end of file diff --git a/hyperparameter/n3/arf/arf-n3-20260504_210244/staged/arf/adapter_transforms_applied.json b/hyperparameter/n3/arf/arf-n3-20260504_210244/staged/arf/adapter_transforms_applied.json new file mode 100644 index 0000000000000000000000000000000000000000..0637a088a01e8ddab3bf3fa98dbe804cbde1a0dc --- /dev/null +++ b/hyperparameter/n3/arf/arf-n3-20260504_210244/staged/arf/adapter_transforms_applied.json @@ -0,0 +1 @@ +[] \ No newline at end of file diff --git a/hyperparameter/n3/arf/arf-n3-20260504_210244/staged/arf/model_input_manifest.json b/hyperparameter/n3/arf/arf-n3-20260504_210244/staged/arf/model_input_manifest.json new file mode 100644 index 0000000000000000000000000000000000000000..29a84e7c3a7143f73096a825c754d9cf33c2a899 --- /dev/null +++ b/hyperparameter/n3/arf/arf-n3-20260504_210244/staged/arf/model_input_manifest.json @@ -0,0 +1,266 @@ +{ + "dataset_id": "n3", + "model": "arf", + "target_column": "quality", + "task_type": "classification", + "column_schema": [ + { + "name": "fixed acidity", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 66, + "unique_ratio": 0.016845, + "example_values": [ + "7.1", + "8.5", + "6.4", + "6.8", + "7.6" + ] + } + }, + { + "name": "volatile acidity", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 121, + "unique_ratio": 0.030883, + "example_values": [ + "0.31", + "0.21", + "0.24", + "0.43", + "0.27" + ] + } + }, + { + "name": "citric acid", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 85, + "unique_ratio": 0.021695, + "example_values": [ + "0.17", + "0.41", + "0.31", + "0.25", + "0.3" + ] + } + }, + { + "name": "residual sugar", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 296, + "unique_ratio": 0.075549, + "example_values": [ + "1", + "4.3", + "2.8", + "13", + "12.9" + ] + } + }, + { + "name": "chlorides", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 147, + "unique_ratio": 0.037519, + "example_values": [ + "0.042", + "0.036", + "0.038", + "0.047", + "0.033" + ] + } + }, + { + "name": "free sulfur dioxide", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 120, + "unique_ratio": 0.030628, + "example_values": [ + "21", + "24", + "41", + "43", + "69" + ] + } + }, + { + "name": "total sulfur dioxide", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 244, + "unique_ratio": 0.062277, + "example_values": [ + "144", + "99", + "114", + "132", + "160" + ] + } + }, + { + "name": "density", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 839, + "unique_ratio": 0.21414, + "example_values": [ + "0.99304", + "0.9947", + "0.99155", + "0.98975", + "0.99705" + ] + } + }, + { + "name": "pH", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 100, + "unique_ratio": 0.025523, + "example_values": [ + "3.13", + "3.18", + "3.37", + "3.21", + "3.16" + ] + } + }, + { + "name": "sulphates", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 78, + "unique_ratio": 0.019908, + "example_values": [ + "0.4", + "0.53", + "0.66", + "0.47", + "0.5" + ] + } + }, + { + "name": "alcohol", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 97, + "unique_ratio": 0.024758, + "example_values": [ + "9.6", + "9.7", + "11.7", + "13.4", + "8.8" + ] + } + }, + { + "name": "quality", + "role": "target", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 7, + "unique_ratio": 0.001787, + "example_values": [ + "5", + "6", + "7", + "8", + "3" + ] + } + } + ], + "public_manifest": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/n3/arf/arf-n3-20260504_210244/public_gate/staged_input_manifest.json", + "train_csv": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/n3/arf/arf-n3-20260504_210244/staged/public/train.csv", + "val_csv": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/n3/arf/arf-n3-20260504_210244/staged/public/val.csv", + "test_csv": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/n3/arf/arf-n3-20260504_210244/staged/public/test.csv", + "features_json": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/n3/arf/arf-n3-20260504_210244/staged/public/staged_features.json", + "public_gate_report": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/n3/arf/arf-n3-20260504_210244/public_gate/public_gate_report.json" +} \ No newline at end of file diff --git a/hyperparameter/n3/arf/arf-n3-20260504_210244/staged/public/staged_features.json b/hyperparameter/n3/arf/arf-n3-20260504_210244/staged/public/staged_features.json new file mode 100644 index 0000000000000000000000000000000000000000..08fe4d766d091d2f2ddba724a16b9509cbe4c390 --- /dev/null +++ b/hyperparameter/n3/arf/arf-n3-20260504_210244/staged/public/staged_features.json @@ -0,0 +1,62 @@ +[ + { + "feature_name": "fixed acidity", + "data_type": "continuous", + "is_target": false + }, + { + "feature_name": "volatile acidity", + "data_type": "continuous", + "is_target": false + }, + { + "feature_name": "citric acid", + "data_type": "continuous", + "is_target": false + }, + { + "feature_name": "residual sugar", + "data_type": "continuous", + "is_target": false + }, + { + "feature_name": "chlorides", + "data_type": "continuous", + "is_target": false + }, + { + "feature_name": "free sulfur dioxide", + "data_type": "continuous", + "is_target": false + }, + { + "feature_name": "total sulfur dioxide", + "data_type": "continuous", + "is_target": false + }, + { + "feature_name": "density", + "data_type": "continuous", + "is_target": false + }, + { + "feature_name": "pH", + "data_type": "continuous", + "is_target": false + }, + { + "feature_name": "sulphates", + "data_type": "continuous", + "is_target": false + }, + { + "feature_name": "alcohol", + "data_type": "continuous", + "is_target": false + }, + { + "feature_name": "quality", + "data_type": "continuous", + "is_target": true + } +] \ No newline at end of file diff --git a/hyperparameter/n3/arf/arf-n3-20260504_210244/staged/public/test.csv b/hyperparameter/n3/arf/arf-n3-20260504_210244/staged/public/test.csv new file mode 100644 index 0000000000000000000000000000000000000000..db5cd50d3746410ea470625fa2ba2c8e9775cc0d --- /dev/null +++ b/hyperparameter/n3/arf/arf-n3-20260504_210244/staged/public/test.csv @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:19e107152a94432e2a37ff045c00cfe35e1be30208b1553080d7dd0ede256d3b +size 28944 diff --git a/hyperparameter/n3/arf/arf-n3-20260504_210244/staged/public/train.csv b/hyperparameter/n3/arf/arf-n3-20260504_210244/staged/public/train.csv new file mode 100644 index 0000000000000000000000000000000000000000..87ca26726fe82ccbaa397919305b043c17eb374e --- /dev/null +++ b/hyperparameter/n3/arf/arf-n3-20260504_210244/staged/public/train.csv @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:7813c8cca73ba4bfc6559215257b341c21e459980ad17ae6ddc809306bc9a0b9 +size 229945 diff --git a/hyperparameter/n3/arf/arf-n3-20260504_210244/staged/public/val.csv b/hyperparameter/n3/arf/arf-n3-20260504_210244/staged/public/val.csv new file mode 100644 index 0000000000000000000000000000000000000000..6acf84c76c47093b513c46d5503972a2dff275c0 --- /dev/null +++ b/hyperparameter/n3/arf/arf-n3-20260504_210244/staged/public/val.csv @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:cf5979d9675567d9d6642640c9b84fc6c49e492604144723c30f50516c05cee6 +size 28791 diff --git a/hyperparameter/n3/arf/arf-n3-20260504_210244/train_20260504_210244.log b/hyperparameter/n3/arf/arf-n3-20260504_210244/train_20260504_210244.log new file mode 100644 index 0000000000000000000000000000000000000000..f03379b7233d2eaa0bfdc5366f501793db225049 --- /dev/null +++ b/hyperparameter/n3/arf/arf-n3-20260504_210244/train_20260504_210244.log @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:7150e1f066145db1cffdeeac246bb8c1c298cd0f524fd7ef687784b41825f908 +size 640 diff --git a/hyperparameter/n3/bayesnet/bayesnet-n3-20260504_210445/_bayesnet_generate.py b/hyperparameter/n3/bayesnet/bayesnet-n3-20260504_210445/_bayesnet_generate.py new file mode 100644 index 0000000000000000000000000000000000000000..21b62d267788893c0176a7dcef41ee6b976495ab --- /dev/null +++ b/hyperparameter/n3/bayesnet/bayesnet-n3-20260504_210445/_bayesnet_generate.py @@ -0,0 +1,105 @@ + +import pickle +import subprocess +import sys +import warnings + +import numpy as np +import pandas as pd +from pgmpy.sampling import BayesianModelSampling + +warnings.filterwarnings("ignore", category=FutureWarning) + +def _ensure_cloudpickle(): + try: + import cloudpickle # noqa: F401 + except ModuleNotFoundError: + subprocess.check_call( + [sys.executable, "-m", "pip", "install", "--quiet", "cloudpickle"], + ) + +_ensure_cloudpickle() + +with open("/work/output-Benchmark-trainonly-v1/n3/bayesnet/bayesnet-n3-20260504_210445/bayesnet_model.pkl", "rb") as f: + bundle = pickle.load(f) + +network = bundle["network"] +inverse = bundle["inverse"] +cols = bundle["column_order"] +integer_columns = set(bundle.get("integer_columns") or []) +full_order = bundle.get("full_column_order") or cols +const_cols = bundle.get("const_cols") or {} + +num_rows = int(3918) +sampler = BayesianModelSampling(network) +raw = sampler.forward_sample(size=num_rows, show_progress=False) +raw = raw.reset_index(drop=True) +if len(raw) > num_rows: + raw = raw.iloc[:num_rows] +_tries = 0 +while len(raw) < num_rows and _tries < 64: + _tries += 1 + nextra = min(10000, num_rows - len(raw)) + more = sampler.forward_sample(size=max(nextra, 1), show_progress=False) + more = more.reset_index(drop=True) + if len(more) == 0: + break + raw = pd.concat([raw, more], ignore_index=True) + if len(raw) > num_rows: + raw = raw.iloc[:num_rows] + +out = pd.DataFrame(index=raw.index) +rng = np.random.default_rng() + +for c in cols: + if c in inverse["categorical"]: + levels = inverse["categorical"][c] + idx = raw[c].astype(int).to_numpy() + idx = np.clip(idx, 0, max(0, len(levels) - 1)) + out[c] = [levels[i] for i in idx] + else: + edges = np.asarray(inverse["continuous"][c], dtype=float) + if edges.size < 2: + out[c] = 0.0 + else: + nbin = edges.size - 1 + res = [] + for k in raw[c].astype(int).to_numpy(): + k = int(k) + if k < 0: + k = 0 + if k >= nbin: + k = nbin - 1 + lo, hi = float(edges[k]), float(edges[k + 1]) + if hi < lo: + lo, hi = hi, lo + v = rng.uniform(lo, hi) + if c in integer_columns: + v = int(round(v)) + res.append(v) + out[c] = res + +final = pd.DataFrame(index=out.index) +for c in full_order: + if c in const_cols: + final[c] = const_cols[c] + elif c in out.columns: + final[c] = out[c] + +dtypes = bundle.get("original_dtypes") or {} +for c, dts in dtypes.items(): + if c not in final.columns: + continue + try: + if "int" in dts: + final[c] = pd.to_numeric(final[c], errors="coerce").astype("Int64") + elif "float" in dts: + final[c] = pd.to_numeric(final[c], errors="coerce") + except Exception: + pass + +if len(final) != num_rows: + final = final.iloc[:num_rows].copy() +final = final.reset_index(drop=True) +final.to_csv("/work/output-Benchmark-trainonly-v1/n3/bayesnet/bayesnet-n3-20260504_210445/bayesnet-n3-3918-20260504_210452.csv", index=False) +print(f"[BayesNet] Generated {len(final)} rows (requested {num_rows}) -> /work/output-Benchmark-trainonly-v1/n3/bayesnet/bayesnet-n3-20260504_210445/bayesnet-n3-3918-20260504_210452.csv") diff --git a/hyperparameter/n3/bayesnet/bayesnet-n3-20260504_210445/_bayesnet_train.py b/hyperparameter/n3/bayesnet/bayesnet-n3-20260504_210445/_bayesnet_train.py new file mode 100644 index 0000000000000000000000000000000000000000..2461a4ad1e22fb24a55039cac6da43a420b12714 --- /dev/null +++ b/hyperparameter/n3/bayesnet/bayesnet-n3-20260504_210445/_bayesnet_train.py @@ -0,0 +1,146 @@ + +import json +import os +import pickle +import subprocess +import sys +import warnings + +import numpy as np +import pandas as pd +from pgmpy.estimators import TreeSearch +from pgmpy.models import DiscreteBayesianNetwork +warnings.filterwarnings("ignore", category=FutureWarning) + +def _ensure_cloudpickle(): + try: + import cloudpickle # noqa: F401 + except ModuleNotFoundError: + subprocess.check_call( + [sys.executable, "-m", "pip", "install", "--quiet", "cloudpickle"], + ) + +_ensure_cloudpickle() + +with open("/work/output-Benchmark-trainonly-v1/n3/bayesnet/bayesnet-n3-20260504_210445/bayesnet_coltypes.json", "r", encoding="utf-8") as _f: + colmeta = json.load(_f) +integer_columns = set(colmeta.get("integer_columns") or []) + +df = pd.read_csv("/work/output-Benchmark-trainonly-v1/n3/bayesnet/bayesnet-n3-20260504_210445/staged/public/train.csv") +df = df.dropna(axis=1, how="all") +full_column_order = list(df.columns) + +const_cols = {} +for col in list(df.columns): + if df[col].nunique(dropna=True) <= 1: + const_cols[col] = df[col].iloc[0] if len(df) > 0 else None + df = df.drop(columns=[col]) + print(f"[BayesNet] Dropped zero-variance column '{col}'") + +const_path = "/work/output-Benchmark-trainonly-v1/n3/bayesnet/bayesnet-n3-20260504_210445/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 = int(os.environ.get("BAYESNET_MAX_BINS", "0")) +max_cat_levels = int(os.environ.get("BAYESNET_MAX_CAT_LEVELS", "0")) +if max_bins <= 0: + max_bins = 10 +if max_cat_levels <= 0: + max_cat_levels = 256 +auto_caps = os.environ.get("BAYESNET_DISABLE_AUTO_CAPS", "0").strip().lower() not in ("1", "true", "yes") +if auto_caps and max_bins == 10 and max_cat_levels == 256: + if _n_plan > 35 or _n_samples > 200000: + max_bins = 5 + max_cat_levels = 64 + if _n_plan > 55: + max_bins = 4 + max_cat_levels = 32 +struct_rows = int(os.environ.get("BAYESNET_STRUCT_ROWS", "25000")) +fit_rows = int(os.environ.get("BAYESNET_FIT_ROWS", "120000")) +estimator_type = (os.environ.get("BAYESNET_ESTIMATOR_TYPE", "chow-liu") or "chow-liu").strip() +edge_weights_fn = (os.environ.get("BAYESNET_EDGE_WEIGHTS_FN", "mutual_info") or "mutual_info").strip() +root_node = (os.environ.get("BAYESNET_ROOT_NODE", "") or "").strip() or None +n_jobs = int(os.environ.get("BAYESNET_N_JOBS", "1")) +print( + f"[BayesNet] max_bins={max_bins}, max_cat_levels={max_cat_levels}, struct_rows={struct_rows}, fit_rows={fit_rows}, estimator_type={estimator_type}, edge_weights_fn={edge_weights_fn}, root_node={root_node}, n_jobs={n_jobs} " + f"(cols_in_df={_n_plan}, rows={_n_samples})" +) + +for entry in colmeta["columns"]: + name = entry["name"] + if name not in df.columns: + continue + kind = entry["type"] + s = df[name] + if kind == "categorical": + s2 = s.astype(str).fillna("__NA__") + counts = s2.value_counts(dropna=False) + if len(counts) > max_cat_levels: + keep = set(counts.index[: max_cat_levels - 1].tolist()) + s2 = s2.map(lambda x: x if x in keep else "__OTHER__") + uniques = sorted(s2.dropna().unique(), key=lambda x: str(x)) + mapping = {str(v): i for i, v in enumerate(uniques)} + inverse["categorical"][name] = [uniques[i] for i in range(len(uniques))] + enc[name] = s2.map(lambda x, m=mapping: m.get(str(x), 0)).astype(int) + else: + s_num = pd.to_numeric(s, errors="coerce") + nu = int(s_num.nunique(dropna=True)) + q = min(max_bins, max(2, nu)) + if nu < 2: + enc[name] = np.zeros(len(s_num), dtype=int) + lo, hi = float(s_num.min()), float(s_num.max()) + inverse["continuous"][name] = [lo, hi] + else: + try: + _, bins = pd.qcut( + s_num, q=q, retbins=True, duplicates="drop" + ) + except Exception: + med = float(s_num.median()) + s2 = s_num.fillna(med) + _, bins = pd.qcut( + s2, q=min(q, 3), retbins=True, duplicates="drop" + ) + bins = np.asarray(bins, dtype=float) + lab = pd.cut( + s_num, bins=bins, labels=False, include_lowest=True + ) + enc[name] = lab.fillna(0).astype(int) + inverse["continuous"][name] = bins.tolist() + +print(f"[BayesNet] Training on {len(enc)} rows, {len(enc.columns)} cols (encoded)") + +enc_struct = enc +if len(enc) > struct_rows: + enc_struct = enc.sample(n=struct_rows, random_state=0, replace=False) + print(f"[BayesNet] TreeSearch on {len(enc_struct)} rows (subsample; full n={len(enc)})") +dag = TreeSearch(enc_struct, root_node=root_node, n_jobs=n_jobs).estimate(estimator_type=estimator_type, edge_weights_fn=edge_weights_fn, show_progress=False) +for col in enc.columns: + if col not in dag.nodes(): + dag.add_node(col) + print(f"[BayesNet] Added isolated node to DAG: {col}") +network = DiscreteBayesianNetwork(dag) +enc_fit = enc +if len(enc) > fit_rows: + enc_fit = enc.sample(n=fit_rows, random_state=1, replace=False) + print(f"[BayesNet] fit() on {len(enc_fit)} rows (full n={len(enc)})") +network.fit(enc_fit) + +bundle = { + "network": network, + "inverse": inverse, + "column_order": list(enc.columns), + "full_column_order": full_column_order, + "integer_columns": list(integer_columns), + "original_dtypes": {c: str(df[c].dtype) for c in enc.columns}, + "const_cols": const_cols, +} +with open("/work/output-Benchmark-trainonly-v1/n3/bayesnet/bayesnet-n3-20260504_210445/bayesnet_model.pkl", "wb") as _f: + pickle.dump(bundle, _f) +print(f"[BayesNet] Model saved -> /work/output-Benchmark-trainonly-v1/n3/bayesnet/bayesnet-n3-20260504_210445/bayesnet_model.pkl") diff --git a/hyperparameter/n3/bayesnet/bayesnet-n3-20260504_210445/bayesnet-n3-3918-20260504_210452.csv b/hyperparameter/n3/bayesnet/bayesnet-n3-20260504_210445/bayesnet-n3-3918-20260504_210452.csv new file mode 100644 index 0000000000000000000000000000000000000000..c782b3b245d5a8e3d41e1364cf760520ea8a10db --- /dev/null +++ b/hyperparameter/n3/bayesnet/bayesnet-n3-20260504_210445/bayesnet-n3-3918-20260504_210452.csv @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:a470ccc8229c508b08717e61164cb6d287fb10f89f3f6fd073e288d909340bc5 +size 883743 diff --git a/hyperparameter/n3/bayesnet/bayesnet-n3-20260504_210445/bayesnet_coltypes.json b/hyperparameter/n3/bayesnet/bayesnet-n3-20260504_210445/bayesnet_coltypes.json new file mode 100644 index 0000000000000000000000000000000000000000..59893d873ed1f60d3bbb17d18abfda70729fe810 --- /dev/null +++ b/hyperparameter/n3/bayesnet/bayesnet-n3-20260504_210445/bayesnet_coltypes.json @@ -0,0 +1,53 @@ +{ + "columns": [ + { + "name": "fixed acidity", + "type": "continuous" + }, + { + "name": "volatile acidity", + "type": "continuous" + }, + { + "name": "citric acid", + "type": "continuous" + }, + { + "name": "residual sugar", + "type": "continuous" + }, + { + "name": "chlorides", + "type": "continuous" + }, + { + "name": "free sulfur dioxide", + "type": "continuous" + }, + { + "name": "total sulfur dioxide", + "type": "continuous" + }, + { + "name": "density", + "type": "continuous" + }, + { + "name": "pH", + "type": "continuous" + }, + { + "name": "sulphates", + "type": "continuous" + }, + { + "name": "alcohol", + "type": "continuous" + }, + { + "name": "quality", + "type": "continuous" + } + ], + "integer_columns": [] +} \ No newline at end of file diff --git a/hyperparameter/n3/bayesnet/bayesnet-n3-20260504_210445/bayesnet_model.pkl b/hyperparameter/n3/bayesnet/bayesnet-n3-20260504_210445/bayesnet_model.pkl new file mode 100644 index 0000000000000000000000000000000000000000..3dc29155f0e37ee3627bd065fe43ca04a7ffb728 --- /dev/null +++ b/hyperparameter/n3/bayesnet/bayesnet-n3-20260504_210445/bayesnet_model.pkl @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:03e9078c9c8c1468b8437d7730ea8a89050bb5196f7e093a9778e17d29f8d5da +size 7682 diff --git a/hyperparameter/n3/bayesnet/bayesnet-n3-20260504_210445/const_cols.json b/hyperparameter/n3/bayesnet/bayesnet-n3-20260504_210445/const_cols.json new file mode 100644 index 0000000000000000000000000000000000000000..9e26dfeeb6e641a33dae4961196235bdb965b21b --- /dev/null +++ b/hyperparameter/n3/bayesnet/bayesnet-n3-20260504_210445/const_cols.json @@ -0,0 +1 @@ +{} \ No newline at end of file diff --git a/hyperparameter/n3/bayesnet/bayesnet-n3-20260504_210445/gen_20260504_210452.log b/hyperparameter/n3/bayesnet/bayesnet-n3-20260504_210445/gen_20260504_210452.log new file mode 100644 index 0000000000000000000000000000000000000000..7d1932457eff285473ae09a12f58bcc17b2a0421 --- /dev/null +++ b/hyperparameter/n3/bayesnet/bayesnet-n3-20260504_210445/gen_20260504_210452.log @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:3bf08121b4dd22ac9e6f07af013bb75fde1c9df0731daf091a2a9f42cbc3546c +size 3661 diff --git a/hyperparameter/n3/bayesnet/bayesnet-n3-20260504_210445/input_snapshot.json b/hyperparameter/n3/bayesnet/bayesnet-n3-20260504_210445/input_snapshot.json new file mode 100644 index 0000000000000000000000000000000000000000..527cf133718a3c780f9b12547e302d03bea557f3 --- /dev/null +++ b/hyperparameter/n3/bayesnet/bayesnet-n3-20260504_210445/input_snapshot.json @@ -0,0 +1,36 @@ +{ + "dataset_id": "n3", + "model": "bayesnet", + "inputs": { + "train_csv": { + "path": "/data/jialinzhang/SynthesizePipeline-server/DatasetNew/n3/n3-train.csv", + "exists": true, + "size": 211519, + "sha256": "2160a06db2fea02adb0ebb79d8d853bd2544580be301e71f6e8deeb1489a9009" + }, + "val_csv": { + "path": "/data/jialinzhang/SynthesizePipeline-server/DatasetNew/n3/n3-val.csv", + "exists": true, + "size": 26499, + "sha256": "d5ccfee07dfa9e7bdee5bb87642b43828e09f74c6cc0266a3d19d9feaa83106e" + }, + "test_csv": { + "path": "/data/jialinzhang/SynthesizePipeline-server/DatasetNew/n3/n3-test.csv", + "exists": true, + "size": 26676, + "sha256": "6f83aacb0d1747b95e287352a7fff5d9d65a1c127b773852346c68485c4ede47" + }, + "profile_json": { + "path": "/data/jialinzhang/SynthesizePipeline-server/DatasetNew/artifacts/data_core/tabular/n3/n3-dataset_profile.json", + "exists": true, + "size": 5235, + "sha256": "23d2e5904a2ca90cbf8d6e3c75887681721e9b90cc705c31a680c11513d0c46f" + }, + "contract_json": { + "path": "/data/jialinzhang/SynthesizePipeline-server/DatasetNew/artifacts/data_core/tabular/n3/n3-dataset_contract_v1.json", + "exists": true, + "size": 6281, + "sha256": "c0cc56f5fe28e1b65927255c6e3c2b0e9479862c2ec6f2fea1664da36c9a3a09" + } + } +} \ No newline at end of file diff --git a/hyperparameter/n3/bayesnet/bayesnet-n3-20260504_210445/public_gate/normalized_schema_snapshot.json b/hyperparameter/n3/bayesnet/bayesnet-n3-20260504_210445/public_gate/normalized_schema_snapshot.json new file mode 100644 index 0000000000000000000000000000000000000000..c41fe304503de23190a02e6cbfafa35b3bf134d3 --- /dev/null +++ b/hyperparameter/n3/bayesnet/bayesnet-n3-20260504_210445/public_gate/normalized_schema_snapshot.json @@ -0,0 +1,259 @@ +{ + "dataset_id": "n3", + "target_column": "quality", + "task_type": "classification", + "columns": [ + { + "name": "fixed acidity", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 66, + "unique_ratio": 0.016845, + "example_values": [ + "7.1", + "8.5", + "6.4", + "6.8", + "7.6" + ] + } + }, + { + "name": "volatile acidity", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 121, + "unique_ratio": 0.030883, + "example_values": [ + "0.31", + "0.21", + "0.24", + "0.43", + "0.27" + ] + } + }, + { + "name": "citric acid", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 85, + "unique_ratio": 0.021695, + "example_values": [ + "0.17", + "0.41", + "0.31", + "0.25", + "0.3" + ] + } + }, + { + "name": "residual sugar", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 296, + "unique_ratio": 0.075549, + "example_values": [ + "1", + "4.3", + "2.8", + "13", + "12.9" + ] + } + }, + { + "name": "chlorides", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 147, + "unique_ratio": 0.037519, + "example_values": [ + "0.042", + "0.036", + "0.038", + "0.047", + "0.033" + ] + } + }, + { + "name": "free sulfur dioxide", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 120, + "unique_ratio": 0.030628, + "example_values": [ + "21", + "24", + "41", + "43", + "69" + ] + } + }, + { + "name": "total sulfur dioxide", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 244, + "unique_ratio": 0.062277, + "example_values": [ + "144", + "99", + "114", + "132", + "160" + ] + } + }, + { + "name": "density", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 839, + "unique_ratio": 0.21414, + "example_values": [ + "0.99304", + "0.9947", + "0.99155", + "0.98975", + "0.99705" + ] + } + }, + { + "name": "pH", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 100, + "unique_ratio": 0.025523, + "example_values": [ + "3.13", + "3.18", + "3.37", + "3.21", + "3.16" + ] + } + }, + { + "name": "sulphates", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 78, + "unique_ratio": 0.019908, + "example_values": [ + "0.4", + "0.53", + "0.66", + "0.47", + "0.5" + ] + } + }, + { + "name": "alcohol", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 97, + "unique_ratio": 0.024758, + "example_values": [ + "9.6", + "9.7", + "11.7", + "13.4", + "8.8" + ] + } + }, + { + "name": "quality", + "role": "target", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 7, + "unique_ratio": 0.001787, + "example_values": [ + "5", + "6", + "7", + "8", + "3" + ] + } + } + ] +} \ No newline at end of file diff --git a/hyperparameter/n3/bayesnet/bayesnet-n3-20260504_210445/public_gate/public_gate_report.json b/hyperparameter/n3/bayesnet/bayesnet-n3-20260504_210445/public_gate/public_gate_report.json new file mode 100644 index 0000000000000000000000000000000000000000..93b97319f739e39079d6c6549fd2020f8a6dac25 --- /dev/null +++ b/hyperparameter/n3/bayesnet/bayesnet-n3-20260504_210445/public_gate/public_gate_report.json @@ -0,0 +1,37 @@ +{ + "dataset_id": "n3", + "status": "pass", + "checks": [ + { + "check_id": "PG001_csv_parse_ok", + "status": "pass" + }, + { + "check_id": "PG002_split_header_consistent", + "status": "pass" + }, + { + "check_id": "PG003_profile_header_match", + "status": "pass" + }, + { + "check_id": "PG004_missing_token_normalized", + "status": "pass" + }, + { + "check_id": "PG005_semantic_type_validated", + "status": "pass" + }, + { + "check_id": "PG006_target_defined_and_valid", + "status": "pass" + } + ], + "target_column": "quality", + "task_type": "classification", + "input_splits": { + "train": "/data/jialinzhang/SynthesizePipeline-server/DatasetNew/n3/n3-train.csv", + "val": "/data/jialinzhang/SynthesizePipeline-server/DatasetNew/n3/n3-val.csv", + "test": "/data/jialinzhang/SynthesizePipeline-server/DatasetNew/n3/n3-test.csv" + } +} \ No newline at end of file diff --git a/hyperparameter/n3/bayesnet/bayesnet-n3-20260504_210445/public_gate/staged_input_manifest.json b/hyperparameter/n3/bayesnet/bayesnet-n3-20260504_210445/public_gate/staged_input_manifest.json new file mode 100644 index 0000000000000000000000000000000000000000..98547bdae02a9131fcfe30f664453d56cb1b3f9f --- /dev/null +++ b/hyperparameter/n3/bayesnet/bayesnet-n3-20260504_210445/public_gate/staged_input_manifest.json @@ -0,0 +1,264 @@ +{ + "dataset_id": "n3", + "target_column": "quality", + "task_type": "classification", + "train_csv": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/n3/bayesnet/bayesnet-n3-20260504_210445/staged/public/train.csv", + "val_csv": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/n3/bayesnet/bayesnet-n3-20260504_210445/staged/public/val.csv", + "test_csv": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/n3/bayesnet/bayesnet-n3-20260504_210445/staged/public/test.csv", + "features_json": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/n3/bayesnet/bayesnet-n3-20260504_210445/staged/public/staged_features.json", + "public_gate_report": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/n3/bayesnet/bayesnet-n3-20260504_210445/public_gate/public_gate_report.json", + "column_schema": [ + { + "name": "fixed acidity", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 66, + "unique_ratio": 0.016845, + "example_values": [ + "7.1", + "8.5", + "6.4", + "6.8", + "7.6" + ] + } + }, + { + "name": "volatile acidity", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 121, + "unique_ratio": 0.030883, + "example_values": [ + "0.31", + "0.21", + "0.24", + "0.43", + "0.27" + ] + } + }, + { + "name": "citric acid", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 85, + "unique_ratio": 0.021695, + "example_values": [ + "0.17", + "0.41", + "0.31", + "0.25", + "0.3" + ] + } + }, + { + "name": "residual sugar", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 296, + "unique_ratio": 0.075549, + "example_values": [ + "1", + "4.3", + "2.8", + "13", + "12.9" + ] + } + }, + { + "name": "chlorides", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 147, + "unique_ratio": 0.037519, + "example_values": [ + "0.042", + "0.036", + "0.038", + "0.047", + "0.033" + ] + } + }, + { + "name": "free sulfur dioxide", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 120, + "unique_ratio": 0.030628, + "example_values": [ + "21", + "24", + "41", + "43", + "69" + ] + } + }, + { + "name": "total sulfur dioxide", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 244, + "unique_ratio": 0.062277, + "example_values": [ + "144", + "99", + "114", + "132", + "160" + ] + } + }, + { + "name": "density", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 839, + "unique_ratio": 0.21414, + "example_values": [ + "0.99304", + "0.9947", + "0.99155", + "0.98975", + "0.99705" + ] + } + }, + { + "name": "pH", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 100, + "unique_ratio": 0.025523, + "example_values": [ + "3.13", + "3.18", + "3.37", + "3.21", + "3.16" + ] + } + }, + { + "name": "sulphates", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 78, + "unique_ratio": 0.019908, + "example_values": [ + "0.4", + "0.53", + "0.66", + "0.47", + "0.5" + ] + } + }, + { + "name": "alcohol", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 97, + "unique_ratio": 0.024758, + "example_values": [ + "9.6", + "9.7", + "11.7", + "13.4", + "8.8" + ] + } + }, + { + "name": "quality", + "role": "target", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 7, + "unique_ratio": 0.001787, + "example_values": [ + "5", + "6", + "7", + "8", + "3" + ] + } + } + ] +} \ No newline at end of file diff --git a/hyperparameter/n3/bayesnet/bayesnet-n3-20260504_210445/run_config.json b/hyperparameter/n3/bayesnet/bayesnet-n3-20260504_210445/run_config.json new file mode 100644 index 0000000000000000000000000000000000000000..5575e4b9abe38f9963b900bd902f93f773970017 --- /dev/null +++ b/hyperparameter/n3/bayesnet/bayesnet-n3-20260504_210445/run_config.json @@ -0,0 +1,47 @@ +{ + "schema_version": 1, + "recorded_at": "2026-05-04T21:04:45", + "dataset_id": "n3", + "model": "bayesnet", + "work_dir": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/n3/bayesnet/bayesnet-n3-20260504_210445", + "dataset_source_requested": "new", + "dataset_source_resolved": "new", + "cli_args": { + "model": "bayesnet", + "dataset": "n3", + "dataset_source": "new", + "train": true, + "generate": true, + "num_rows": 0, + "epochs": null, + "output_dir": null, + "model_dir": null, + "work_dir": null, + "resume": false, + "no_stats": false + }, + "resolved": { + "num_rows": 3918, + "model_path": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/n3/bayesnet/bayesnet-n3-20260504_210445/bayesnet_model.pkl", + "output_csv": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/n3/bayesnet/bayesnet-n3-20260504_210445/bayesnet-n3-3918-20260504_210452.csv" + }, + "input_artifacts": { + "public_gate_report": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/n3/bayesnet/bayesnet-n3-20260504_210445/public_gate/public_gate_report.json", + "public_manifest": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/n3/bayesnet/bayesnet-n3-20260504_210445/public_gate/staged_input_manifest.json", + "model_manifest": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/n3/bayesnet/bayesnet-n3-20260504_210445/staged/bayesnet/model_input_manifest.json", + "train_csv": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/n3/bayesnet/bayesnet-n3-20260504_210445/staged/public/train.csv", + "features_json": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/n3/bayesnet/bayesnet-n3-20260504_210445/staged/public/staged_features.json", + "target_column": "quality", + "task_type": "classification" + }, + "env_overrides": { + "BAYESNET_DISABLE_AUTO_CAPS": "1", + "BAYESNET_EDGE_WEIGHTS_FN": "mutual_info", + "BAYESNET_ESTIMATOR_TYPE": "chow-liu", + "BAYESNET_FIT_ROWS": "50000", + "BAYESNET_MAX_BINS": "4", + "BAYESNET_MAX_CAT_LEVELS": "32", + "BAYESNET_N_JOBS": "1", + "BAYESNET_STRUCT_ROWS": "10000" + } +} \ No newline at end of file diff --git a/hyperparameter/n3/bayesnet/bayesnet-n3-20260504_210445/runtime_result.json b/hyperparameter/n3/bayesnet/bayesnet-n3-20260504_210445/runtime_result.json new file mode 100644 index 0000000000000000000000000000000000000000..d80d5ff9b6cf339ba35defd302e077ea24d73a86 --- /dev/null +++ b/hyperparameter/n3/bayesnet/bayesnet-n3-20260504_210445/runtime_result.json @@ -0,0 +1,27 @@ +{ + "dataset_id": "n3", + "model": "bayesnet", + "run_id": "bayesnet-n3-20260504_210445", + "public_gate_status": "pass", + "adapter_ready_status": "pass", + "train_status": "success", + "generate_status": "success", + "reason_code": null, + "reason_detail": null, + "artifacts": { + "synthetic_csv": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/n3/bayesnet/bayesnet-n3-20260504_210445/bayesnet-n3-3918-20260504_210452.csv", + "model_path": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/n3/bayesnet/bayesnet-n3-20260504_210445/bayesnet_model.pkl" + }, + "timings": { + "train": { + "started_at": "2026-05-04T21:04:45", + "ended_at": "2026-05-04T21:04:52", + "duration_sec": 7.292 + }, + "generate": { + "started_at": "2026-05-04T21:04:52", + "ended_at": "2026-05-04T21:05:00", + "duration_sec": 7.376 + } + } +} \ No newline at end of file diff --git a/hyperparameter/n3/bayesnet/bayesnet-n3-20260504_210445/staged/bayesnet/adapter_report.json b/hyperparameter/n3/bayesnet/bayesnet-n3-20260504_210445/staged/bayesnet/adapter_report.json new file mode 100644 index 0000000000000000000000000000000000000000..005e47849836497b2d00462b2afce56b5837d031 --- /dev/null +++ b/hyperparameter/n3/bayesnet/bayesnet-n3-20260504_210445/staged/bayesnet/adapter_report.json @@ -0,0 +1,7 @@ +{ + "adapter_ready_status": "pass", + "adapter_fail_reason_code": null, + "adapter_fail_detail": null, + "adapter_transforms_applied": [], + "model_input_manifest": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/n3/bayesnet/bayesnet-n3-20260504_210445/staged/bayesnet/model_input_manifest.json" +} \ No newline at end of file diff --git a/hyperparameter/n3/bayesnet/bayesnet-n3-20260504_210445/staged/bayesnet/adapter_transforms_applied.json b/hyperparameter/n3/bayesnet/bayesnet-n3-20260504_210445/staged/bayesnet/adapter_transforms_applied.json new file mode 100644 index 0000000000000000000000000000000000000000..0637a088a01e8ddab3bf3fa98dbe804cbde1a0dc --- /dev/null +++ b/hyperparameter/n3/bayesnet/bayesnet-n3-20260504_210445/staged/bayesnet/adapter_transforms_applied.json @@ -0,0 +1 @@ +[] \ No newline at end of file diff --git a/hyperparameter/n3/bayesnet/bayesnet-n3-20260504_210445/staged/bayesnet/model_input_manifest.json b/hyperparameter/n3/bayesnet/bayesnet-n3-20260504_210445/staged/bayesnet/model_input_manifest.json new file mode 100644 index 0000000000000000000000000000000000000000..cf5a596dd55638884606ead331e6aa1da839ffed --- /dev/null +++ b/hyperparameter/n3/bayesnet/bayesnet-n3-20260504_210445/staged/bayesnet/model_input_manifest.json @@ -0,0 +1,266 @@ +{ + "dataset_id": "n3", + "model": "bayesnet", + "target_column": "quality", + "task_type": "classification", + "column_schema": [ + { + "name": "fixed acidity", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 66, + "unique_ratio": 0.016845, + "example_values": [ + "7.1", + "8.5", + "6.4", + "6.8", + "7.6" + ] + } + }, + { + "name": "volatile acidity", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 121, + "unique_ratio": 0.030883, + "example_values": [ + "0.31", + "0.21", + "0.24", + "0.43", + "0.27" + ] + } + }, + { + "name": "citric acid", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 85, + "unique_ratio": 0.021695, + "example_values": [ + "0.17", + "0.41", + "0.31", + "0.25", + "0.3" + ] + } + }, + { + "name": "residual sugar", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 296, + "unique_ratio": 0.075549, + "example_values": [ + "1", + "4.3", + "2.8", + "13", + "12.9" + ] + } + }, + { + "name": "chlorides", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 147, + "unique_ratio": 0.037519, + "example_values": [ + "0.042", + "0.036", + "0.038", + "0.047", + "0.033" + ] + } + }, + { + "name": "free sulfur dioxide", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 120, + "unique_ratio": 0.030628, + "example_values": [ + "21", + "24", + "41", + "43", + "69" + ] + } + }, + { + "name": "total sulfur dioxide", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 244, + "unique_ratio": 0.062277, + "example_values": [ + "144", + "99", + "114", + "132", + "160" + ] + } + }, + { + "name": "density", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 839, + "unique_ratio": 0.21414, + "example_values": [ + "0.99304", + "0.9947", + "0.99155", + "0.98975", + "0.99705" + ] + } + }, + { + "name": "pH", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 100, + "unique_ratio": 0.025523, + "example_values": [ + "3.13", + "3.18", + "3.37", + "3.21", + "3.16" + ] + } + }, + { + "name": "sulphates", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 78, + "unique_ratio": 0.019908, + "example_values": [ + "0.4", + "0.53", + "0.66", + "0.47", + "0.5" + ] + } + }, + { + "name": "alcohol", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 97, + "unique_ratio": 0.024758, + "example_values": [ + "9.6", + "9.7", + "11.7", + "13.4", + "8.8" + ] + } + }, + { + "name": "quality", + "role": "target", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 7, + "unique_ratio": 0.001787, + "example_values": [ + "5", + "6", + "7", + "8", + "3" + ] + } + } + ], + "public_manifest": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/n3/bayesnet/bayesnet-n3-20260504_210445/public_gate/staged_input_manifest.json", + "train_csv": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/n3/bayesnet/bayesnet-n3-20260504_210445/staged/public/train.csv", + "val_csv": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/n3/bayesnet/bayesnet-n3-20260504_210445/staged/public/val.csv", + "test_csv": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/n3/bayesnet/bayesnet-n3-20260504_210445/staged/public/test.csv", + "features_json": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/n3/bayesnet/bayesnet-n3-20260504_210445/staged/public/staged_features.json", + "public_gate_report": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/n3/bayesnet/bayesnet-n3-20260504_210445/public_gate/public_gate_report.json" +} \ No newline at end of file diff --git a/hyperparameter/n3/bayesnet/bayesnet-n3-20260504_210445/staged/public/staged_features.json b/hyperparameter/n3/bayesnet/bayesnet-n3-20260504_210445/staged/public/staged_features.json new file mode 100644 index 0000000000000000000000000000000000000000..08fe4d766d091d2f2ddba724a16b9509cbe4c390 --- /dev/null +++ b/hyperparameter/n3/bayesnet/bayesnet-n3-20260504_210445/staged/public/staged_features.json @@ -0,0 +1,62 @@ +[ + { + "feature_name": "fixed acidity", + "data_type": "continuous", + "is_target": false + }, + { + "feature_name": "volatile acidity", + "data_type": "continuous", + "is_target": false + }, + { + "feature_name": "citric acid", + "data_type": "continuous", + "is_target": false + }, + { + "feature_name": "residual sugar", + "data_type": "continuous", + "is_target": false + }, + { + "feature_name": "chlorides", + "data_type": "continuous", + "is_target": false + }, + { + "feature_name": "free sulfur dioxide", + "data_type": "continuous", + "is_target": false + }, + { + "feature_name": "total sulfur dioxide", + "data_type": "continuous", + "is_target": false + }, + { + "feature_name": "density", + "data_type": "continuous", + "is_target": false + }, + { + "feature_name": "pH", + "data_type": "continuous", + "is_target": false + }, + { + "feature_name": "sulphates", + "data_type": "continuous", + "is_target": false + }, + { + "feature_name": "alcohol", + "data_type": "continuous", + "is_target": false + }, + { + "feature_name": "quality", + "data_type": "continuous", + "is_target": true + } +] \ No newline at end of file diff --git a/hyperparameter/n3/bayesnet/bayesnet-n3-20260504_210445/staged/public/test.csv b/hyperparameter/n3/bayesnet/bayesnet-n3-20260504_210445/staged/public/test.csv new file mode 100644 index 0000000000000000000000000000000000000000..db5cd50d3746410ea470625fa2ba2c8e9775cc0d --- /dev/null +++ b/hyperparameter/n3/bayesnet/bayesnet-n3-20260504_210445/staged/public/test.csv @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:19e107152a94432e2a37ff045c00cfe35e1be30208b1553080d7dd0ede256d3b +size 28944 diff --git a/hyperparameter/n3/bayesnet/bayesnet-n3-20260504_210445/staged/public/train.csv b/hyperparameter/n3/bayesnet/bayesnet-n3-20260504_210445/staged/public/train.csv new file mode 100644 index 0000000000000000000000000000000000000000..87ca26726fe82ccbaa397919305b043c17eb374e --- /dev/null +++ b/hyperparameter/n3/bayesnet/bayesnet-n3-20260504_210445/staged/public/train.csv @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:7813c8cca73ba4bfc6559215257b341c21e459980ad17ae6ddc809306bc9a0b9 +size 229945 diff --git a/hyperparameter/n3/bayesnet/bayesnet-n3-20260504_210445/staged/public/val.csv b/hyperparameter/n3/bayesnet/bayesnet-n3-20260504_210445/staged/public/val.csv new file mode 100644 index 0000000000000000000000000000000000000000..6acf84c76c47093b513c46d5503972a2dff275c0 --- /dev/null +++ b/hyperparameter/n3/bayesnet/bayesnet-n3-20260504_210445/staged/public/val.csv @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:cf5979d9675567d9d6642640c9b84fc6c49e492604144723c30f50516c05cee6 +size 28791 diff --git a/hyperparameter/n3/bayesnet/bayesnet-n3-20260504_210445/train_20260504_210445.log b/hyperparameter/n3/bayesnet/bayesnet-n3-20260504_210445/train_20260504_210445.log new file mode 100644 index 0000000000000000000000000000000000000000..fb9b386db1937ff4e9e3e0796fd5342539ae5d83 --- /dev/null +++ b/hyperparameter/n3/bayesnet/bayesnet-n3-20260504_210445/train_20260504_210445.log @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:af540394fec4c83b343af755500931fa54c7fb166ef345d211ebd4403f075beb +size 3853 diff --git a/hyperparameter/n3/bayesnet/bayesnet-n3-20260504_210513/_bayesnet_generate.py b/hyperparameter/n3/bayesnet/bayesnet-n3-20260504_210513/_bayesnet_generate.py new file mode 100644 index 0000000000000000000000000000000000000000..2fde47d4e72ef075a1cbb45261e0fbd0a3d7a7ec --- /dev/null +++ b/hyperparameter/n3/bayesnet/bayesnet-n3-20260504_210513/_bayesnet_generate.py @@ -0,0 +1,105 @@ + +import pickle +import subprocess +import sys +import warnings + +import numpy as np +import pandas as pd +from pgmpy.sampling import BayesianModelSampling + +warnings.filterwarnings("ignore", category=FutureWarning) + +def _ensure_cloudpickle(): + try: + import cloudpickle # noqa: F401 + except ModuleNotFoundError: + subprocess.check_call( + [sys.executable, "-m", "pip", "install", "--quiet", "cloudpickle"], + ) + +_ensure_cloudpickle() + +with open("/work/output-Benchmark-trainonly-v1/n3/bayesnet/bayesnet-n3-20260504_210513/bayesnet_model.pkl", "rb") as f: + bundle = pickle.load(f) + +network = bundle["network"] +inverse = bundle["inverse"] +cols = bundle["column_order"] +integer_columns = set(bundle.get("integer_columns") or []) +full_order = bundle.get("full_column_order") or cols +const_cols = bundle.get("const_cols") or {} + +num_rows = int(3918) +sampler = BayesianModelSampling(network) +raw = sampler.forward_sample(size=num_rows, show_progress=False) +raw = raw.reset_index(drop=True) +if len(raw) > num_rows: + raw = raw.iloc[:num_rows] +_tries = 0 +while len(raw) < num_rows and _tries < 64: + _tries += 1 + nextra = min(10000, num_rows - len(raw)) + more = sampler.forward_sample(size=max(nextra, 1), show_progress=False) + more = more.reset_index(drop=True) + if len(more) == 0: + break + raw = pd.concat([raw, more], ignore_index=True) + if len(raw) > num_rows: + raw = raw.iloc[:num_rows] + +out = pd.DataFrame(index=raw.index) +rng = np.random.default_rng() + +for c in cols: + if c in inverse["categorical"]: + levels = inverse["categorical"][c] + idx = raw[c].astype(int).to_numpy() + idx = np.clip(idx, 0, max(0, len(levels) - 1)) + out[c] = [levels[i] for i in idx] + else: + edges = np.asarray(inverse["continuous"][c], dtype=float) + if edges.size < 2: + out[c] = 0.0 + else: + nbin = edges.size - 1 + res = [] + for k in raw[c].astype(int).to_numpy(): + k = int(k) + if k < 0: + k = 0 + if k >= nbin: + k = nbin - 1 + lo, hi = float(edges[k]), float(edges[k + 1]) + if hi < lo: + lo, hi = hi, lo + v = rng.uniform(lo, hi) + if c in integer_columns: + v = int(round(v)) + res.append(v) + out[c] = res + +final = pd.DataFrame(index=out.index) +for c in full_order: + if c in const_cols: + final[c] = const_cols[c] + elif c in out.columns: + final[c] = out[c] + +dtypes = bundle.get("original_dtypes") or {} +for c, dts in dtypes.items(): + if c not in final.columns: + continue + try: + if "int" in dts: + final[c] = pd.to_numeric(final[c], errors="coerce").astype("Int64") + elif "float" in dts: + final[c] = pd.to_numeric(final[c], errors="coerce") + except Exception: + pass + +if len(final) != num_rows: + final = final.iloc[:num_rows].copy() +final = final.reset_index(drop=True) +final.to_csv("/work/output-Benchmark-trainonly-v1/n3/bayesnet/bayesnet-n3-20260504_210513/bayesnet-n3-3918-20260504_210520.csv", index=False) +print(f"[BayesNet] Generated {len(final)} rows (requested {num_rows}) -> /work/output-Benchmark-trainonly-v1/n3/bayesnet/bayesnet-n3-20260504_210513/bayesnet-n3-3918-20260504_210520.csv") diff --git a/hyperparameter/n3/bayesnet/bayesnet-n3-20260504_210513/_bayesnet_train.py b/hyperparameter/n3/bayesnet/bayesnet-n3-20260504_210513/_bayesnet_train.py new file mode 100644 index 0000000000000000000000000000000000000000..c074ffd0e4225b646aa9ef64be6e8d4a2a8cb693 --- /dev/null +++ b/hyperparameter/n3/bayesnet/bayesnet-n3-20260504_210513/_bayesnet_train.py @@ -0,0 +1,146 @@ + +import json +import os +import pickle +import subprocess +import sys +import warnings + +import numpy as np +import pandas as pd +from pgmpy.estimators import TreeSearch +from pgmpy.models import DiscreteBayesianNetwork +warnings.filterwarnings("ignore", category=FutureWarning) + +def _ensure_cloudpickle(): + try: + import cloudpickle # noqa: F401 + except ModuleNotFoundError: + subprocess.check_call( + [sys.executable, "-m", "pip", "install", "--quiet", "cloudpickle"], + ) + +_ensure_cloudpickle() + +with open("/work/output-Benchmark-trainonly-v1/n3/bayesnet/bayesnet-n3-20260504_210513/bayesnet_coltypes.json", "r", encoding="utf-8") as _f: + colmeta = json.load(_f) +integer_columns = set(colmeta.get("integer_columns") or []) + +df = pd.read_csv("/work/output-Benchmark-trainonly-v1/n3/bayesnet/bayesnet-n3-20260504_210513/staged/public/train.csv") +df = df.dropna(axis=1, how="all") +full_column_order = list(df.columns) + +const_cols = {} +for col in list(df.columns): + if df[col].nunique(dropna=True) <= 1: + const_cols[col] = df[col].iloc[0] if len(df) > 0 else None + df = df.drop(columns=[col]) + print(f"[BayesNet] Dropped zero-variance column '{col}'") + +const_path = "/work/output-Benchmark-trainonly-v1/n3/bayesnet/bayesnet-n3-20260504_210513/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 = int(os.environ.get("BAYESNET_MAX_BINS", "0")) +max_cat_levels = int(os.environ.get("BAYESNET_MAX_CAT_LEVELS", "0")) +if max_bins <= 0: + max_bins = 10 +if max_cat_levels <= 0: + max_cat_levels = 256 +auto_caps = os.environ.get("BAYESNET_DISABLE_AUTO_CAPS", "0").strip().lower() not in ("1", "true", "yes") +if auto_caps and max_bins == 10 and max_cat_levels == 256: + if _n_plan > 35 or _n_samples > 200000: + max_bins = 5 + max_cat_levels = 64 + if _n_plan > 55: + max_bins = 4 + max_cat_levels = 32 +struct_rows = int(os.environ.get("BAYESNET_STRUCT_ROWS", "25000")) +fit_rows = int(os.environ.get("BAYESNET_FIT_ROWS", "120000")) +estimator_type = (os.environ.get("BAYESNET_ESTIMATOR_TYPE", "chow-liu") or "chow-liu").strip() +edge_weights_fn = (os.environ.get("BAYESNET_EDGE_WEIGHTS_FN", "mutual_info") or "mutual_info").strip() +root_node = (os.environ.get("BAYESNET_ROOT_NODE", "") or "").strip() or None +n_jobs = int(os.environ.get("BAYESNET_N_JOBS", "1")) +print( + f"[BayesNet] max_bins={max_bins}, max_cat_levels={max_cat_levels}, struct_rows={struct_rows}, fit_rows={fit_rows}, estimator_type={estimator_type}, edge_weights_fn={edge_weights_fn}, root_node={root_node}, n_jobs={n_jobs} " + f"(cols_in_df={_n_plan}, rows={_n_samples})" +) + +for entry in colmeta["columns"]: + name = entry["name"] + if name not in df.columns: + continue + kind = entry["type"] + s = df[name] + if kind == "categorical": + s2 = s.astype(str).fillna("__NA__") + counts = s2.value_counts(dropna=False) + if len(counts) > max_cat_levels: + keep = set(counts.index[: max_cat_levels - 1].tolist()) + s2 = s2.map(lambda x: x if x in keep else "__OTHER__") + uniques = sorted(s2.dropna().unique(), key=lambda x: str(x)) + mapping = {str(v): i for i, v in enumerate(uniques)} + inverse["categorical"][name] = [uniques[i] for i in range(len(uniques))] + enc[name] = s2.map(lambda x, m=mapping: m.get(str(x), 0)).astype(int) + else: + s_num = pd.to_numeric(s, errors="coerce") + nu = int(s_num.nunique(dropna=True)) + q = min(max_bins, max(2, nu)) + if nu < 2: + enc[name] = np.zeros(len(s_num), dtype=int) + lo, hi = float(s_num.min()), float(s_num.max()) + inverse["continuous"][name] = [lo, hi] + else: + try: + _, bins = pd.qcut( + s_num, q=q, retbins=True, duplicates="drop" + ) + except Exception: + med = float(s_num.median()) + s2 = s_num.fillna(med) + _, bins = pd.qcut( + s2, q=min(q, 3), retbins=True, duplicates="drop" + ) + bins = np.asarray(bins, dtype=float) + lab = pd.cut( + s_num, bins=bins, labels=False, include_lowest=True + ) + enc[name] = lab.fillna(0).astype(int) + inverse["continuous"][name] = bins.tolist() + +print(f"[BayesNet] Training on {len(enc)} rows, {len(enc.columns)} cols (encoded)") + +enc_struct = enc +if len(enc) > struct_rows: + enc_struct = enc.sample(n=struct_rows, random_state=0, replace=False) + print(f"[BayesNet] TreeSearch on {len(enc_struct)} rows (subsample; full n={len(enc)})") +dag = TreeSearch(enc_struct, root_node=root_node, n_jobs=n_jobs).estimate(estimator_type=estimator_type, edge_weights_fn=edge_weights_fn, show_progress=False) +for col in enc.columns: + if col not in dag.nodes(): + dag.add_node(col) + print(f"[BayesNet] Added isolated node to DAG: {col}") +network = DiscreteBayesianNetwork(dag) +enc_fit = enc +if len(enc) > fit_rows: + enc_fit = enc.sample(n=fit_rows, random_state=1, replace=False) + print(f"[BayesNet] fit() on {len(enc_fit)} rows (full n={len(enc)})") +network.fit(enc_fit) + +bundle = { + "network": network, + "inverse": inverse, + "column_order": list(enc.columns), + "full_column_order": full_column_order, + "integer_columns": list(integer_columns), + "original_dtypes": {c: str(df[c].dtype) for c in enc.columns}, + "const_cols": const_cols, +} +with open("/work/output-Benchmark-trainonly-v1/n3/bayesnet/bayesnet-n3-20260504_210513/bayesnet_model.pkl", "wb") as _f: + pickle.dump(bundle, _f) +print(f"[BayesNet] Model saved -> /work/output-Benchmark-trainonly-v1/n3/bayesnet/bayesnet-n3-20260504_210513/bayesnet_model.pkl") diff --git a/hyperparameter/n3/bayesnet/bayesnet-n3-20260504_210513/bayesnet-n3-3918-20260504_210520.csv b/hyperparameter/n3/bayesnet/bayesnet-n3-20260504_210513/bayesnet-n3-3918-20260504_210520.csv new file mode 100644 index 0000000000000000000000000000000000000000..e2363ddeae1a6d42a6598fa1ae4609188f6b0fcc --- /dev/null +++ b/hyperparameter/n3/bayesnet/bayesnet-n3-20260504_210513/bayesnet-n3-3918-20260504_210520.csv @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:dc81ac57adba606c3a81e4e3e6b4dbda54b3dd167c8c095acd285ac4693a8787 +size 883995 diff --git a/hyperparameter/n3/bayesnet/bayesnet-n3-20260504_210513/bayesnet_coltypes.json b/hyperparameter/n3/bayesnet/bayesnet-n3-20260504_210513/bayesnet_coltypes.json new file mode 100644 index 0000000000000000000000000000000000000000..59893d873ed1f60d3bbb17d18abfda70729fe810 --- /dev/null +++ b/hyperparameter/n3/bayesnet/bayesnet-n3-20260504_210513/bayesnet_coltypes.json @@ -0,0 +1,53 @@ +{ + "columns": [ + { + "name": "fixed acidity", + "type": "continuous" + }, + { + "name": "volatile acidity", + "type": "continuous" + }, + { + "name": "citric acid", + "type": "continuous" + }, + { + "name": "residual sugar", + "type": "continuous" + }, + { + "name": "chlorides", + "type": "continuous" + }, + { + "name": "free sulfur dioxide", + "type": "continuous" + }, + { + "name": "total sulfur dioxide", + "type": "continuous" + }, + { + "name": "density", + "type": "continuous" + }, + { + "name": "pH", + "type": "continuous" + }, + { + "name": "sulphates", + "type": "continuous" + }, + { + "name": "alcohol", + "type": "continuous" + }, + { + "name": "quality", + "type": "continuous" + } + ], + "integer_columns": [] +} \ No newline at end of file diff --git a/hyperparameter/n3/bayesnet/bayesnet-n3-20260504_210513/bayesnet_model.pkl b/hyperparameter/n3/bayesnet/bayesnet-n3-20260504_210513/bayesnet_model.pkl new file mode 100644 index 0000000000000000000000000000000000000000..56f9335ccaa9cac2c5cb90e7e90d44f7f9419656 --- /dev/null +++ b/hyperparameter/n3/bayesnet/bayesnet-n3-20260504_210513/bayesnet_model.pkl @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:14fe486610fa6edabc307f05282f06363d355e600b30ce9a7cf49e260d0d39fc +size 9132 diff --git a/hyperparameter/n3/bayesnet/bayesnet-n3-20260504_210513/const_cols.json b/hyperparameter/n3/bayesnet/bayesnet-n3-20260504_210513/const_cols.json new file mode 100644 index 0000000000000000000000000000000000000000..9e26dfeeb6e641a33dae4961196235bdb965b21b --- /dev/null +++ b/hyperparameter/n3/bayesnet/bayesnet-n3-20260504_210513/const_cols.json @@ -0,0 +1 @@ +{} \ No newline at end of file diff --git a/hyperparameter/n3/bayesnet/bayesnet-n3-20260504_210513/gen_20260504_210520.log b/hyperparameter/n3/bayesnet/bayesnet-n3-20260504_210513/gen_20260504_210520.log new file mode 100644 index 0000000000000000000000000000000000000000..032130e71f7d34b1cfb0539ade7c6a65359413bd --- /dev/null +++ b/hyperparameter/n3/bayesnet/bayesnet-n3-20260504_210513/gen_20260504_210520.log @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:3f881b8d0f4f1318b3310f007c0f44249461e37cefa688e38428fb0a48d998b4 +size 3661 diff --git a/hyperparameter/n3/bayesnet/bayesnet-n3-20260504_210513/input_snapshot.json b/hyperparameter/n3/bayesnet/bayesnet-n3-20260504_210513/input_snapshot.json new file mode 100644 index 0000000000000000000000000000000000000000..527cf133718a3c780f9b12547e302d03bea557f3 --- /dev/null +++ b/hyperparameter/n3/bayesnet/bayesnet-n3-20260504_210513/input_snapshot.json @@ -0,0 +1,36 @@ +{ + "dataset_id": "n3", + "model": "bayesnet", + "inputs": { + "train_csv": { + "path": "/data/jialinzhang/SynthesizePipeline-server/DatasetNew/n3/n3-train.csv", + "exists": true, + "size": 211519, + "sha256": "2160a06db2fea02adb0ebb79d8d853bd2544580be301e71f6e8deeb1489a9009" + }, + "val_csv": { + "path": "/data/jialinzhang/SynthesizePipeline-server/DatasetNew/n3/n3-val.csv", + "exists": true, + "size": 26499, + "sha256": "d5ccfee07dfa9e7bdee5bb87642b43828e09f74c6cc0266a3d19d9feaa83106e" + }, + "test_csv": { + "path": "/data/jialinzhang/SynthesizePipeline-server/DatasetNew/n3/n3-test.csv", + "exists": true, + "size": 26676, + "sha256": "6f83aacb0d1747b95e287352a7fff5d9d65a1c127b773852346c68485c4ede47" + }, + "profile_json": { + "path": "/data/jialinzhang/SynthesizePipeline-server/DatasetNew/artifacts/data_core/tabular/n3/n3-dataset_profile.json", + "exists": true, + "size": 5235, + "sha256": "23d2e5904a2ca90cbf8d6e3c75887681721e9b90cc705c31a680c11513d0c46f" + }, + "contract_json": { + "path": "/data/jialinzhang/SynthesizePipeline-server/DatasetNew/artifacts/data_core/tabular/n3/n3-dataset_contract_v1.json", + "exists": true, + "size": 6281, + "sha256": "c0cc56f5fe28e1b65927255c6e3c2b0e9479862c2ec6f2fea1664da36c9a3a09" + } + } +} \ No newline at end of file diff --git a/hyperparameter/n3/bayesnet/bayesnet-n3-20260504_210513/public_gate/normalized_schema_snapshot.json b/hyperparameter/n3/bayesnet/bayesnet-n3-20260504_210513/public_gate/normalized_schema_snapshot.json new file mode 100644 index 0000000000000000000000000000000000000000..c41fe304503de23190a02e6cbfafa35b3bf134d3 --- /dev/null +++ b/hyperparameter/n3/bayesnet/bayesnet-n3-20260504_210513/public_gate/normalized_schema_snapshot.json @@ -0,0 +1,259 @@ +{ + "dataset_id": "n3", + "target_column": "quality", + "task_type": "classification", + "columns": [ + { + "name": "fixed acidity", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 66, + "unique_ratio": 0.016845, + "example_values": [ + "7.1", + "8.5", + "6.4", + "6.8", + "7.6" + ] + } + }, + { + "name": "volatile acidity", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 121, + "unique_ratio": 0.030883, + "example_values": [ + "0.31", + "0.21", + "0.24", + "0.43", + "0.27" + ] + } + }, + { + "name": "citric acid", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 85, + "unique_ratio": 0.021695, + "example_values": [ + "0.17", + "0.41", + "0.31", + "0.25", + "0.3" + ] + } + }, + { + "name": "residual sugar", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 296, + "unique_ratio": 0.075549, + "example_values": [ + "1", + "4.3", + "2.8", + "13", + "12.9" + ] + } + }, + { + "name": "chlorides", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 147, + "unique_ratio": 0.037519, + "example_values": [ + "0.042", + "0.036", + "0.038", + "0.047", + "0.033" + ] + } + }, + { + "name": "free sulfur dioxide", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 120, + "unique_ratio": 0.030628, + "example_values": [ + "21", + "24", + "41", + "43", + "69" + ] + } + }, + { + "name": "total sulfur dioxide", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 244, + "unique_ratio": 0.062277, + "example_values": [ + "144", + "99", + "114", + "132", + "160" + ] + } + }, + { + "name": "density", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 839, + "unique_ratio": 0.21414, + "example_values": [ + "0.99304", + "0.9947", + "0.99155", + "0.98975", + "0.99705" + ] + } + }, + { + "name": "pH", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 100, + "unique_ratio": 0.025523, + "example_values": [ + "3.13", + "3.18", + "3.37", + "3.21", + "3.16" + ] + } + }, + { + "name": "sulphates", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 78, + "unique_ratio": 0.019908, + "example_values": [ + "0.4", + "0.53", + "0.66", + "0.47", + "0.5" + ] + } + }, + { + "name": "alcohol", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 97, + "unique_ratio": 0.024758, + "example_values": [ + "9.6", + "9.7", + "11.7", + "13.4", + "8.8" + ] + } + }, + { + "name": "quality", + "role": "target", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 7, + "unique_ratio": 0.001787, + "example_values": [ + "5", + "6", + "7", + "8", + "3" + ] + } + } + ] +} \ No newline at end of file diff --git a/hyperparameter/n3/bayesnet/bayesnet-n3-20260504_210513/public_gate/public_gate_report.json b/hyperparameter/n3/bayesnet/bayesnet-n3-20260504_210513/public_gate/public_gate_report.json new file mode 100644 index 0000000000000000000000000000000000000000..93b97319f739e39079d6c6549fd2020f8a6dac25 --- /dev/null +++ b/hyperparameter/n3/bayesnet/bayesnet-n3-20260504_210513/public_gate/public_gate_report.json @@ -0,0 +1,37 @@ +{ + "dataset_id": "n3", + "status": "pass", + "checks": [ + { + "check_id": "PG001_csv_parse_ok", + "status": "pass" + }, + { + "check_id": "PG002_split_header_consistent", + "status": "pass" + }, + { + "check_id": "PG003_profile_header_match", + "status": "pass" + }, + { + "check_id": "PG004_missing_token_normalized", + "status": "pass" + }, + { + "check_id": "PG005_semantic_type_validated", + "status": "pass" + }, + { + "check_id": "PG006_target_defined_and_valid", + "status": "pass" + } + ], + "target_column": "quality", + "task_type": "classification", + "input_splits": { + "train": "/data/jialinzhang/SynthesizePipeline-server/DatasetNew/n3/n3-train.csv", + "val": "/data/jialinzhang/SynthesizePipeline-server/DatasetNew/n3/n3-val.csv", + "test": "/data/jialinzhang/SynthesizePipeline-server/DatasetNew/n3/n3-test.csv" + } +} \ No newline at end of file diff --git a/hyperparameter/n3/bayesnet/bayesnet-n3-20260504_210513/public_gate/staged_input_manifest.json b/hyperparameter/n3/bayesnet/bayesnet-n3-20260504_210513/public_gate/staged_input_manifest.json new file mode 100644 index 0000000000000000000000000000000000000000..b7c336ae4eaa0dfa324975618a45c76accae1215 --- /dev/null +++ b/hyperparameter/n3/bayesnet/bayesnet-n3-20260504_210513/public_gate/staged_input_manifest.json @@ -0,0 +1,264 @@ +{ + "dataset_id": "n3", + "target_column": "quality", + "task_type": "classification", + "train_csv": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/n3/bayesnet/bayesnet-n3-20260504_210513/staged/public/train.csv", + "val_csv": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/n3/bayesnet/bayesnet-n3-20260504_210513/staged/public/val.csv", + "test_csv": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/n3/bayesnet/bayesnet-n3-20260504_210513/staged/public/test.csv", + "features_json": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/n3/bayesnet/bayesnet-n3-20260504_210513/staged/public/staged_features.json", + "public_gate_report": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/n3/bayesnet/bayesnet-n3-20260504_210513/public_gate/public_gate_report.json", + "column_schema": [ + { + "name": "fixed acidity", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 66, + "unique_ratio": 0.016845, + "example_values": [ + "7.1", + "8.5", + "6.4", + "6.8", + "7.6" + ] + } + }, + { + "name": "volatile acidity", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 121, + "unique_ratio": 0.030883, + "example_values": [ + "0.31", + "0.21", + "0.24", + "0.43", + "0.27" + ] + } + }, + { + "name": "citric acid", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 85, + "unique_ratio": 0.021695, + "example_values": [ + "0.17", + "0.41", + "0.31", + "0.25", + "0.3" + ] + } + }, + { + "name": "residual sugar", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 296, + "unique_ratio": 0.075549, + "example_values": [ + "1", + "4.3", + "2.8", + "13", + "12.9" + ] + } + }, + { + "name": "chlorides", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 147, + "unique_ratio": 0.037519, + "example_values": [ + "0.042", + "0.036", + "0.038", + "0.047", + "0.033" + ] + } + }, + { + "name": "free sulfur dioxide", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 120, + "unique_ratio": 0.030628, + "example_values": [ + "21", + "24", + "41", + "43", + "69" + ] + } + }, + { + "name": "total sulfur dioxide", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 244, + "unique_ratio": 0.062277, + "example_values": [ + "144", + "99", + "114", + "132", + "160" + ] + } + }, + { + "name": "density", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 839, + "unique_ratio": 0.21414, + "example_values": [ + "0.99304", + "0.9947", + "0.99155", + "0.98975", + "0.99705" + ] + } + }, + { + "name": "pH", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 100, + "unique_ratio": 0.025523, + "example_values": [ + "3.13", + "3.18", + "3.37", + "3.21", + "3.16" + ] + } + }, + { + "name": "sulphates", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 78, + "unique_ratio": 0.019908, + "example_values": [ + "0.4", + "0.53", + "0.66", + "0.47", + "0.5" + ] + } + }, + { + "name": "alcohol", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 97, + "unique_ratio": 0.024758, + "example_values": [ + "9.6", + "9.7", + "11.7", + "13.4", + "8.8" + ] + } + }, + { + "name": "quality", + "role": "target", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 7, + "unique_ratio": 0.001787, + "example_values": [ + "5", + "6", + "7", + "8", + "3" + ] + } + } + ] +} \ No newline at end of file diff --git a/hyperparameter/n3/bayesnet/bayesnet-n3-20260504_210513/run_config.json b/hyperparameter/n3/bayesnet/bayesnet-n3-20260504_210513/run_config.json new file mode 100644 index 0000000000000000000000000000000000000000..09533fabca755a251d49c66ff48b1746c032ec24 --- /dev/null +++ b/hyperparameter/n3/bayesnet/bayesnet-n3-20260504_210513/run_config.json @@ -0,0 +1,47 @@ +{ + "schema_version": 1, + "recorded_at": "2026-05-04T21:05:13", + "dataset_id": "n3", + "model": "bayesnet", + "work_dir": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/n3/bayesnet/bayesnet-n3-20260504_210513", + "dataset_source_requested": "new", + "dataset_source_resolved": "new", + "cli_args": { + "model": "bayesnet", + "dataset": "n3", + "dataset_source": "new", + "train": true, + "generate": true, + "num_rows": 0, + "epochs": null, + "output_dir": null, + "model_dir": null, + "work_dir": null, + "resume": false, + "no_stats": false + }, + "resolved": { + "num_rows": 3918, + "model_path": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/n3/bayesnet/bayesnet-n3-20260504_210513/bayesnet_model.pkl", + "output_csv": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/n3/bayesnet/bayesnet-n3-20260504_210513/bayesnet-n3-3918-20260504_210520.csv" + }, + "input_artifacts": { + "public_gate_report": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/n3/bayesnet/bayesnet-n3-20260504_210513/public_gate/public_gate_report.json", + "public_manifest": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/n3/bayesnet/bayesnet-n3-20260504_210513/public_gate/staged_input_manifest.json", + "model_manifest": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/n3/bayesnet/bayesnet-n3-20260504_210513/staged/bayesnet/model_input_manifest.json", + "train_csv": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/n3/bayesnet/bayesnet-n3-20260504_210513/staged/public/train.csv", + "features_json": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/n3/bayesnet/bayesnet-n3-20260504_210513/staged/public/staged_features.json", + "target_column": "quality", + "task_type": "classification" + }, + "env_overrides": { + "BAYESNET_DISABLE_AUTO_CAPS": "1", + "BAYESNET_EDGE_WEIGHTS_FN": "mutual_info", + "BAYESNET_ESTIMATOR_TYPE": "chow-liu", + "BAYESNET_FIT_ROWS": "80000", + "BAYESNET_MAX_BINS": "5", + "BAYESNET_MAX_CAT_LEVELS": "64", + "BAYESNET_N_JOBS": "1", + "BAYESNET_STRUCT_ROWS": "20000" + } +} \ No newline at end of file diff --git a/hyperparameter/n3/bayesnet/bayesnet-n3-20260504_210513/runtime_result.json b/hyperparameter/n3/bayesnet/bayesnet-n3-20260504_210513/runtime_result.json new file mode 100644 index 0000000000000000000000000000000000000000..d060455370b481a1ea7e40cc3daf8a74c776e571 --- /dev/null +++ b/hyperparameter/n3/bayesnet/bayesnet-n3-20260504_210513/runtime_result.json @@ -0,0 +1,27 @@ +{ + "dataset_id": "n3", + "model": "bayesnet", + "run_id": "bayesnet-n3-20260504_210513", + "public_gate_status": "pass", + "adapter_ready_status": "pass", + "train_status": "success", + "generate_status": "success", + "reason_code": null, + "reason_detail": null, + "artifacts": { + "synthetic_csv": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/n3/bayesnet/bayesnet-n3-20260504_210513/bayesnet-n3-3918-20260504_210520.csv", + "model_path": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/n3/bayesnet/bayesnet-n3-20260504_210513/bayesnet_model.pkl" + }, + "timings": { + "train": { + "started_at": "2026-05-04T21:05:13", + "ended_at": "2026-05-04T21:05:20", + "duration_sec": 7.392 + }, + "generate": { + "started_at": "2026-05-04T21:05:20", + "ended_at": "2026-05-04T21:05:28", + "duration_sec": 7.708 + } + } +} \ No newline at end of file diff --git a/hyperparameter/n3/bayesnet/bayesnet-n3-20260504_210513/staged/bayesnet/adapter_report.json b/hyperparameter/n3/bayesnet/bayesnet-n3-20260504_210513/staged/bayesnet/adapter_report.json new file mode 100644 index 0000000000000000000000000000000000000000..d41ea7180b5b4fad968408fea8fe6370d81eb331 --- /dev/null +++ b/hyperparameter/n3/bayesnet/bayesnet-n3-20260504_210513/staged/bayesnet/adapter_report.json @@ -0,0 +1,7 @@ +{ + "adapter_ready_status": "pass", + "adapter_fail_reason_code": null, + "adapter_fail_detail": null, + "adapter_transforms_applied": [], + "model_input_manifest": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/n3/bayesnet/bayesnet-n3-20260504_210513/staged/bayesnet/model_input_manifest.json" +} \ No newline at end of file diff --git a/hyperparameter/n3/bayesnet/bayesnet-n3-20260504_210513/staged/bayesnet/adapter_transforms_applied.json b/hyperparameter/n3/bayesnet/bayesnet-n3-20260504_210513/staged/bayesnet/adapter_transforms_applied.json new file mode 100644 index 0000000000000000000000000000000000000000..0637a088a01e8ddab3bf3fa98dbe804cbde1a0dc --- /dev/null +++ b/hyperparameter/n3/bayesnet/bayesnet-n3-20260504_210513/staged/bayesnet/adapter_transforms_applied.json @@ -0,0 +1 @@ +[] \ No newline at end of file diff --git a/hyperparameter/n3/bayesnet/bayesnet-n3-20260504_210513/staged/bayesnet/model_input_manifest.json b/hyperparameter/n3/bayesnet/bayesnet-n3-20260504_210513/staged/bayesnet/model_input_manifest.json new file mode 100644 index 0000000000000000000000000000000000000000..28b0a4e8766f1eb5bd9a938713e3283d41e794f8 --- /dev/null +++ b/hyperparameter/n3/bayesnet/bayesnet-n3-20260504_210513/staged/bayesnet/model_input_manifest.json @@ -0,0 +1,266 @@ +{ + "dataset_id": "n3", + "model": "bayesnet", + "target_column": "quality", + "task_type": "classification", + "column_schema": [ + { + "name": "fixed acidity", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 66, + "unique_ratio": 0.016845, + "example_values": [ + "7.1", + "8.5", + "6.4", + "6.8", + "7.6" + ] + } + }, + { + "name": "volatile acidity", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 121, + "unique_ratio": 0.030883, + "example_values": [ + "0.31", + "0.21", + "0.24", + "0.43", + "0.27" + ] + } + }, + { + "name": "citric acid", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 85, + "unique_ratio": 0.021695, + "example_values": [ + "0.17", + "0.41", + "0.31", + "0.25", + "0.3" + ] + } + }, + { + "name": "residual sugar", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 296, + "unique_ratio": 0.075549, + "example_values": [ + "1", + "4.3", + "2.8", + "13", + "12.9" + ] + } + }, + { + "name": "chlorides", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 147, + "unique_ratio": 0.037519, + "example_values": [ + "0.042", + "0.036", + "0.038", + "0.047", + "0.033" + ] + } + }, + { + "name": "free sulfur dioxide", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 120, + "unique_ratio": 0.030628, + "example_values": [ + "21", + "24", + "41", + "43", + "69" + ] + } + }, + { + "name": "total sulfur dioxide", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 244, + "unique_ratio": 0.062277, + "example_values": [ + "144", + "99", + "114", + "132", + "160" + ] + } + }, + { + "name": "density", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 839, + "unique_ratio": 0.21414, + "example_values": [ + "0.99304", + "0.9947", + "0.99155", + "0.98975", + "0.99705" + ] + } + }, + { + "name": "pH", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 100, + "unique_ratio": 0.025523, + "example_values": [ + "3.13", + "3.18", + "3.37", + "3.21", + "3.16" + ] + } + }, + { + "name": "sulphates", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 78, + "unique_ratio": 0.019908, + "example_values": [ + "0.4", + "0.53", + "0.66", + "0.47", + "0.5" + ] + } + }, + { + "name": "alcohol", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 97, + "unique_ratio": 0.024758, + "example_values": [ + "9.6", + "9.7", + "11.7", + "13.4", + "8.8" + ] + } + }, + { + "name": "quality", + "role": "target", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 7, + "unique_ratio": 0.001787, + "example_values": [ + "5", + "6", + "7", + "8", + "3" + ] + } + } + ], + "public_manifest": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/n3/bayesnet/bayesnet-n3-20260504_210513/public_gate/staged_input_manifest.json", + "train_csv": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/n3/bayesnet/bayesnet-n3-20260504_210513/staged/public/train.csv", + "val_csv": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/n3/bayesnet/bayesnet-n3-20260504_210513/staged/public/val.csv", + "test_csv": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/n3/bayesnet/bayesnet-n3-20260504_210513/staged/public/test.csv", + "features_json": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/n3/bayesnet/bayesnet-n3-20260504_210513/staged/public/staged_features.json", + "public_gate_report": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/n3/bayesnet/bayesnet-n3-20260504_210513/public_gate/public_gate_report.json" +} \ No newline at end of file diff --git a/hyperparameter/n3/bayesnet/bayesnet-n3-20260504_210513/staged/public/staged_features.json b/hyperparameter/n3/bayesnet/bayesnet-n3-20260504_210513/staged/public/staged_features.json new file mode 100644 index 0000000000000000000000000000000000000000..08fe4d766d091d2f2ddba724a16b9509cbe4c390 --- /dev/null +++ b/hyperparameter/n3/bayesnet/bayesnet-n3-20260504_210513/staged/public/staged_features.json @@ -0,0 +1,62 @@ +[ + { + "feature_name": "fixed acidity", + "data_type": "continuous", + "is_target": false + }, + { + "feature_name": "volatile acidity", + "data_type": "continuous", + "is_target": false + }, + { + "feature_name": "citric acid", + "data_type": "continuous", + "is_target": false + }, + { + "feature_name": "residual sugar", + "data_type": "continuous", + "is_target": false + }, + { + "feature_name": "chlorides", + "data_type": "continuous", + "is_target": false + }, + { + "feature_name": "free sulfur dioxide", + "data_type": "continuous", + "is_target": false + }, + { + "feature_name": "total sulfur dioxide", + "data_type": "continuous", + "is_target": false + }, + { + "feature_name": "density", + "data_type": "continuous", + "is_target": false + }, + { + "feature_name": "pH", + "data_type": "continuous", + "is_target": false + }, + { + "feature_name": "sulphates", + "data_type": "continuous", + "is_target": false + }, + { + "feature_name": "alcohol", + "data_type": "continuous", + "is_target": false + }, + { + "feature_name": "quality", + "data_type": "continuous", + "is_target": true + } +] \ No newline at end of file diff --git a/hyperparameter/n3/bayesnet/bayesnet-n3-20260504_210513/staged/public/test.csv b/hyperparameter/n3/bayesnet/bayesnet-n3-20260504_210513/staged/public/test.csv new file mode 100644 index 0000000000000000000000000000000000000000..db5cd50d3746410ea470625fa2ba2c8e9775cc0d --- /dev/null +++ b/hyperparameter/n3/bayesnet/bayesnet-n3-20260504_210513/staged/public/test.csv @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:19e107152a94432e2a37ff045c00cfe35e1be30208b1553080d7dd0ede256d3b +size 28944 diff --git a/hyperparameter/n3/bayesnet/bayesnet-n3-20260504_210513/staged/public/train.csv b/hyperparameter/n3/bayesnet/bayesnet-n3-20260504_210513/staged/public/train.csv new file mode 100644 index 0000000000000000000000000000000000000000..87ca26726fe82ccbaa397919305b043c17eb374e --- /dev/null +++ b/hyperparameter/n3/bayesnet/bayesnet-n3-20260504_210513/staged/public/train.csv @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:7813c8cca73ba4bfc6559215257b341c21e459980ad17ae6ddc809306bc9a0b9 +size 229945 diff --git a/hyperparameter/n3/bayesnet/bayesnet-n3-20260504_210513/staged/public/val.csv b/hyperparameter/n3/bayesnet/bayesnet-n3-20260504_210513/staged/public/val.csv new file mode 100644 index 0000000000000000000000000000000000000000..6acf84c76c47093b513c46d5503972a2dff275c0 --- /dev/null +++ b/hyperparameter/n3/bayesnet/bayesnet-n3-20260504_210513/staged/public/val.csv @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:cf5979d9675567d9d6642640c9b84fc6c49e492604144723c30f50516c05cee6 +size 28791 diff --git a/hyperparameter/n3/bayesnet/bayesnet-n3-20260504_210513/train_20260504_210513.log b/hyperparameter/n3/bayesnet/bayesnet-n3-20260504_210513/train_20260504_210513.log new file mode 100644 index 0000000000000000000000000000000000000000..aeb6d84435b0d2af03e85779a17462a09f877da5 --- /dev/null +++ b/hyperparameter/n3/bayesnet/bayesnet-n3-20260504_210513/train_20260504_210513.log @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:af72e4a06fb613f12c476cad7c631b1ea8640e0a732ba7fb005b0e8e9974c434 +size 3853 diff --git a/hyperparameter/n3/bayesnet/bayesnet-n3-20260504_210542/_bayesnet_generate.py b/hyperparameter/n3/bayesnet/bayesnet-n3-20260504_210542/_bayesnet_generate.py new file mode 100644 index 0000000000000000000000000000000000000000..e48eddde452565739e98bae6e93bebaea1e7a7eb --- /dev/null +++ b/hyperparameter/n3/bayesnet/bayesnet-n3-20260504_210542/_bayesnet_generate.py @@ -0,0 +1,105 @@ + +import pickle +import subprocess +import sys +import warnings + +import numpy as np +import pandas as pd +from pgmpy.sampling import BayesianModelSampling + +warnings.filterwarnings("ignore", category=FutureWarning) + +def _ensure_cloudpickle(): + try: + import cloudpickle # noqa: F401 + except ModuleNotFoundError: + subprocess.check_call( + [sys.executable, "-m", "pip", "install", "--quiet", "cloudpickle"], + ) + +_ensure_cloudpickle() + +with open("/work/output-Benchmark-trainonly-v1/n3/bayesnet/bayesnet-n3-20260504_210542/bayesnet_model.pkl", "rb") as f: + bundle = pickle.load(f) + +network = bundle["network"] +inverse = bundle["inverse"] +cols = bundle["column_order"] +integer_columns = set(bundle.get("integer_columns") or []) +full_order = bundle.get("full_column_order") or cols +const_cols = bundle.get("const_cols") or {} + +num_rows = int(3918) +sampler = BayesianModelSampling(network) +raw = sampler.forward_sample(size=num_rows, show_progress=False) +raw = raw.reset_index(drop=True) +if len(raw) > num_rows: + raw = raw.iloc[:num_rows] +_tries = 0 +while len(raw) < num_rows and _tries < 64: + _tries += 1 + nextra = min(10000, num_rows - len(raw)) + more = sampler.forward_sample(size=max(nextra, 1), show_progress=False) + more = more.reset_index(drop=True) + if len(more) == 0: + break + raw = pd.concat([raw, more], ignore_index=True) + if len(raw) > num_rows: + raw = raw.iloc[:num_rows] + +out = pd.DataFrame(index=raw.index) +rng = np.random.default_rng() + +for c in cols: + if c in inverse["categorical"]: + levels = inverse["categorical"][c] + idx = raw[c].astype(int).to_numpy() + idx = np.clip(idx, 0, max(0, len(levels) - 1)) + out[c] = [levels[i] for i in idx] + else: + edges = np.asarray(inverse["continuous"][c], dtype=float) + if edges.size < 2: + out[c] = 0.0 + else: + nbin = edges.size - 1 + res = [] + for k in raw[c].astype(int).to_numpy(): + k = int(k) + if k < 0: + k = 0 + if k >= nbin: + k = nbin - 1 + lo, hi = float(edges[k]), float(edges[k + 1]) + if hi < lo: + lo, hi = hi, lo + v = rng.uniform(lo, hi) + if c in integer_columns: + v = int(round(v)) + res.append(v) + out[c] = res + +final = pd.DataFrame(index=out.index) +for c in full_order: + if c in const_cols: + final[c] = const_cols[c] + elif c in out.columns: + final[c] = out[c] + +dtypes = bundle.get("original_dtypes") or {} +for c, dts in dtypes.items(): + if c not in final.columns: + continue + try: + if "int" in dts: + final[c] = pd.to_numeric(final[c], errors="coerce").astype("Int64") + elif "float" in dts: + final[c] = pd.to_numeric(final[c], errors="coerce") + except Exception: + pass + +if len(final) != num_rows: + final = final.iloc[:num_rows].copy() +final = final.reset_index(drop=True) +final.to_csv("/work/output-Benchmark-trainonly-v1/n3/bayesnet/bayesnet-n3-20260504_210542/bayesnet-n3-3918-20260504_210549.csv", index=False) +print(f"[BayesNet] Generated {len(final)} rows (requested {num_rows}) -> /work/output-Benchmark-trainonly-v1/n3/bayesnet/bayesnet-n3-20260504_210542/bayesnet-n3-3918-20260504_210549.csv") diff --git a/hyperparameter/n3/bayesnet/bayesnet-n3-20260504_210542/_bayesnet_train.py b/hyperparameter/n3/bayesnet/bayesnet-n3-20260504_210542/_bayesnet_train.py new file mode 100644 index 0000000000000000000000000000000000000000..968ce1714215b6e8d87fa48141ec145285cf0e7d --- /dev/null +++ b/hyperparameter/n3/bayesnet/bayesnet-n3-20260504_210542/_bayesnet_train.py @@ -0,0 +1,146 @@ + +import json +import os +import pickle +import subprocess +import sys +import warnings + +import numpy as np +import pandas as pd +from pgmpy.estimators import TreeSearch +from pgmpy.models import DiscreteBayesianNetwork +warnings.filterwarnings("ignore", category=FutureWarning) + +def _ensure_cloudpickle(): + try: + import cloudpickle # noqa: F401 + except ModuleNotFoundError: + subprocess.check_call( + [sys.executable, "-m", "pip", "install", "--quiet", "cloudpickle"], + ) + +_ensure_cloudpickle() + +with open("/work/output-Benchmark-trainonly-v1/n3/bayesnet/bayesnet-n3-20260504_210542/bayesnet_coltypes.json", "r", encoding="utf-8") as _f: + colmeta = json.load(_f) +integer_columns = set(colmeta.get("integer_columns") or []) + +df = pd.read_csv("/work/output-Benchmark-trainonly-v1/n3/bayesnet/bayesnet-n3-20260504_210542/staged/public/train.csv") +df = df.dropna(axis=1, how="all") +full_column_order = list(df.columns) + +const_cols = {} +for col in list(df.columns): + if df[col].nunique(dropna=True) <= 1: + const_cols[col] = df[col].iloc[0] if len(df) > 0 else None + df = df.drop(columns=[col]) + print(f"[BayesNet] Dropped zero-variance column '{col}'") + +const_path = "/work/output-Benchmark-trainonly-v1/n3/bayesnet/bayesnet-n3-20260504_210542/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 = int(os.environ.get("BAYESNET_MAX_BINS", "0")) +max_cat_levels = int(os.environ.get("BAYESNET_MAX_CAT_LEVELS", "0")) +if max_bins <= 0: + max_bins = 10 +if max_cat_levels <= 0: + max_cat_levels = 256 +auto_caps = os.environ.get("BAYESNET_DISABLE_AUTO_CAPS", "0").strip().lower() not in ("1", "true", "yes") +if auto_caps and max_bins == 10 and max_cat_levels == 256: + if _n_plan > 35 or _n_samples > 200000: + max_bins = 5 + max_cat_levels = 64 + if _n_plan > 55: + max_bins = 4 + max_cat_levels = 32 +struct_rows = int(os.environ.get("BAYESNET_STRUCT_ROWS", "25000")) +fit_rows = int(os.environ.get("BAYESNET_FIT_ROWS", "120000")) +estimator_type = (os.environ.get("BAYESNET_ESTIMATOR_TYPE", "chow-liu") or "chow-liu").strip() +edge_weights_fn = (os.environ.get("BAYESNET_EDGE_WEIGHTS_FN", "mutual_info") or "mutual_info").strip() +root_node = (os.environ.get("BAYESNET_ROOT_NODE", "") or "").strip() or None +n_jobs = int(os.environ.get("BAYESNET_N_JOBS", "1")) +print( + f"[BayesNet] max_bins={max_bins}, max_cat_levels={max_cat_levels}, struct_rows={struct_rows}, fit_rows={fit_rows}, estimator_type={estimator_type}, edge_weights_fn={edge_weights_fn}, root_node={root_node}, n_jobs={n_jobs} " + f"(cols_in_df={_n_plan}, rows={_n_samples})" +) + +for entry in colmeta["columns"]: + name = entry["name"] + if name not in df.columns: + continue + kind = entry["type"] + s = df[name] + if kind == "categorical": + s2 = s.astype(str).fillna("__NA__") + counts = s2.value_counts(dropna=False) + if len(counts) > max_cat_levels: + keep = set(counts.index[: max_cat_levels - 1].tolist()) + s2 = s2.map(lambda x: x if x in keep else "__OTHER__") + uniques = sorted(s2.dropna().unique(), key=lambda x: str(x)) + mapping = {str(v): i for i, v in enumerate(uniques)} + inverse["categorical"][name] = [uniques[i] for i in range(len(uniques))] + enc[name] = s2.map(lambda x, m=mapping: m.get(str(x), 0)).astype(int) + else: + s_num = pd.to_numeric(s, errors="coerce") + nu = int(s_num.nunique(dropna=True)) + q = min(max_bins, max(2, nu)) + if nu < 2: + enc[name] = np.zeros(len(s_num), dtype=int) + lo, hi = float(s_num.min()), float(s_num.max()) + inverse["continuous"][name] = [lo, hi] + else: + try: + _, bins = pd.qcut( + s_num, q=q, retbins=True, duplicates="drop" + ) + except Exception: + med = float(s_num.median()) + s2 = s_num.fillna(med) + _, bins = pd.qcut( + s2, q=min(q, 3), retbins=True, duplicates="drop" + ) + bins = np.asarray(bins, dtype=float) + lab = pd.cut( + s_num, bins=bins, labels=False, include_lowest=True + ) + enc[name] = lab.fillna(0).astype(int) + inverse["continuous"][name] = bins.tolist() + +print(f"[BayesNet] Training on {len(enc)} rows, {len(enc.columns)} cols (encoded)") + +enc_struct = enc +if len(enc) > struct_rows: + enc_struct = enc.sample(n=struct_rows, random_state=0, replace=False) + print(f"[BayesNet] TreeSearch on {len(enc_struct)} rows (subsample; full n={len(enc)})") +dag = TreeSearch(enc_struct, root_node=root_node, n_jobs=n_jobs).estimate(estimator_type=estimator_type, edge_weights_fn=edge_weights_fn, show_progress=False) +for col in enc.columns: + if col not in dag.nodes(): + dag.add_node(col) + print(f"[BayesNet] Added isolated node to DAG: {col}") +network = DiscreteBayesianNetwork(dag) +enc_fit = enc +if len(enc) > fit_rows: + enc_fit = enc.sample(n=fit_rows, random_state=1, replace=False) + print(f"[BayesNet] fit() on {len(enc_fit)} rows (full n={len(enc)})") +network.fit(enc_fit) + +bundle = { + "network": network, + "inverse": inverse, + "column_order": list(enc.columns), + "full_column_order": full_column_order, + "integer_columns": list(integer_columns), + "original_dtypes": {c: str(df[c].dtype) for c in enc.columns}, + "const_cols": const_cols, +} +with open("/work/output-Benchmark-trainonly-v1/n3/bayesnet/bayesnet-n3-20260504_210542/bayesnet_model.pkl", "wb") as _f: + pickle.dump(bundle, _f) +print(f"[BayesNet] Model saved -> /work/output-Benchmark-trainonly-v1/n3/bayesnet/bayesnet-n3-20260504_210542/bayesnet_model.pkl") diff --git a/hyperparameter/n3/bayesnet/bayesnet-n3-20260504_210542/bayesnet-n3-3918-20260504_210549.csv b/hyperparameter/n3/bayesnet/bayesnet-n3-20260504_210542/bayesnet-n3-3918-20260504_210549.csv new file mode 100644 index 0000000000000000000000000000000000000000..8e4c5f769670d862afa7b08a30ba6ee591f9bee8 --- /dev/null +++ b/hyperparameter/n3/bayesnet/bayesnet-n3-20260504_210542/bayesnet-n3-3918-20260504_210549.csv @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:bef2ba3fbfe9b584895b771aa3d1f0ad47344c6cc03ade7ec03b903021c397ad +size 884107 diff --git a/hyperparameter/n3/bayesnet/bayesnet-n3-20260504_210542/bayesnet_coltypes.json b/hyperparameter/n3/bayesnet/bayesnet-n3-20260504_210542/bayesnet_coltypes.json new file mode 100644 index 0000000000000000000000000000000000000000..59893d873ed1f60d3bbb17d18abfda70729fe810 --- /dev/null +++ b/hyperparameter/n3/bayesnet/bayesnet-n3-20260504_210542/bayesnet_coltypes.json @@ -0,0 +1,53 @@ +{ + "columns": [ + { + "name": "fixed acidity", + "type": "continuous" + }, + { + "name": "volatile acidity", + "type": "continuous" + }, + { + "name": "citric acid", + "type": "continuous" + }, + { + "name": "residual sugar", + "type": "continuous" + }, + { + "name": "chlorides", + "type": "continuous" + }, + { + "name": "free sulfur dioxide", + "type": "continuous" + }, + { + "name": "total sulfur dioxide", + "type": "continuous" + }, + { + "name": "density", + "type": "continuous" + }, + { + "name": "pH", + "type": "continuous" + }, + { + "name": "sulphates", + "type": "continuous" + }, + { + "name": "alcohol", + "type": "continuous" + }, + { + "name": "quality", + "type": "continuous" + } + ], + "integer_columns": [] +} \ No newline at end of file diff --git a/hyperparameter/n3/bayesnet/bayesnet-n3-20260504_210542/bayesnet_model.pkl b/hyperparameter/n3/bayesnet/bayesnet-n3-20260504_210542/bayesnet_model.pkl new file mode 100644 index 0000000000000000000000000000000000000000..bb69cd332f67532dd621f240042431c697714cf0 --- /dev/null +++ b/hyperparameter/n3/bayesnet/bayesnet-n3-20260504_210542/bayesnet_model.pkl @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:b514c2ddd92e061a24c3b90710574c1c291baecdf8cba550da95251c0bf695f0 +size 14168 diff --git a/hyperparameter/n3/bayesnet/bayesnet-n3-20260504_210542/const_cols.json b/hyperparameter/n3/bayesnet/bayesnet-n3-20260504_210542/const_cols.json new file mode 100644 index 0000000000000000000000000000000000000000..9e26dfeeb6e641a33dae4961196235bdb965b21b --- /dev/null +++ b/hyperparameter/n3/bayesnet/bayesnet-n3-20260504_210542/const_cols.json @@ -0,0 +1 @@ +{} \ No newline at end of file diff --git a/hyperparameter/n3/bayesnet/bayesnet-n3-20260504_210542/gen_20260504_210549.log b/hyperparameter/n3/bayesnet/bayesnet-n3-20260504_210542/gen_20260504_210549.log new file mode 100644 index 0000000000000000000000000000000000000000..96e3e873ce5219daca901bdca9b491fbccc392e7 --- /dev/null +++ b/hyperparameter/n3/bayesnet/bayesnet-n3-20260504_210542/gen_20260504_210549.log @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:948a9604aa0570be9a850ddf3ad97d5c03f7ba775f55950a7a0fec079db693b9 +size 3661 diff --git a/hyperparameter/n3/bayesnet/bayesnet-n3-20260504_210542/input_snapshot.json b/hyperparameter/n3/bayesnet/bayesnet-n3-20260504_210542/input_snapshot.json new file mode 100644 index 0000000000000000000000000000000000000000..527cf133718a3c780f9b12547e302d03bea557f3 --- /dev/null +++ b/hyperparameter/n3/bayesnet/bayesnet-n3-20260504_210542/input_snapshot.json @@ -0,0 +1,36 @@ +{ + "dataset_id": "n3", + "model": "bayesnet", + "inputs": { + "train_csv": { + "path": "/data/jialinzhang/SynthesizePipeline-server/DatasetNew/n3/n3-train.csv", + "exists": true, + "size": 211519, + "sha256": "2160a06db2fea02adb0ebb79d8d853bd2544580be301e71f6e8deeb1489a9009" + }, + "val_csv": { + "path": "/data/jialinzhang/SynthesizePipeline-server/DatasetNew/n3/n3-val.csv", + "exists": true, + "size": 26499, + "sha256": "d5ccfee07dfa9e7bdee5bb87642b43828e09f74c6cc0266a3d19d9feaa83106e" + }, + "test_csv": { + "path": "/data/jialinzhang/SynthesizePipeline-server/DatasetNew/n3/n3-test.csv", + "exists": true, + "size": 26676, + "sha256": "6f83aacb0d1747b95e287352a7fff5d9d65a1c127b773852346c68485c4ede47" + }, + "profile_json": { + "path": "/data/jialinzhang/SynthesizePipeline-server/DatasetNew/artifacts/data_core/tabular/n3/n3-dataset_profile.json", + "exists": true, + "size": 5235, + "sha256": "23d2e5904a2ca90cbf8d6e3c75887681721e9b90cc705c31a680c11513d0c46f" + }, + "contract_json": { + "path": "/data/jialinzhang/SynthesizePipeline-server/DatasetNew/artifacts/data_core/tabular/n3/n3-dataset_contract_v1.json", + "exists": true, + "size": 6281, + "sha256": "c0cc56f5fe28e1b65927255c6e3c2b0e9479862c2ec6f2fea1664da36c9a3a09" + } + } +} \ No newline at end of file diff --git a/hyperparameter/n3/bayesnet/bayesnet-n3-20260504_210542/public_gate/normalized_schema_snapshot.json b/hyperparameter/n3/bayesnet/bayesnet-n3-20260504_210542/public_gate/normalized_schema_snapshot.json new file mode 100644 index 0000000000000000000000000000000000000000..c41fe304503de23190a02e6cbfafa35b3bf134d3 --- /dev/null +++ b/hyperparameter/n3/bayesnet/bayesnet-n3-20260504_210542/public_gate/normalized_schema_snapshot.json @@ -0,0 +1,259 @@ +{ + "dataset_id": "n3", + "target_column": "quality", + "task_type": "classification", + "columns": [ + { + "name": "fixed acidity", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 66, + "unique_ratio": 0.016845, + "example_values": [ + "7.1", + "8.5", + "6.4", + "6.8", + "7.6" + ] + } + }, + { + "name": "volatile acidity", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 121, + "unique_ratio": 0.030883, + "example_values": [ + "0.31", + "0.21", + "0.24", + "0.43", + "0.27" + ] + } + }, + { + "name": "citric acid", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 85, + "unique_ratio": 0.021695, + "example_values": [ + "0.17", + "0.41", + "0.31", + "0.25", + "0.3" + ] + } + }, + { + "name": "residual sugar", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 296, + "unique_ratio": 0.075549, + "example_values": [ + "1", + "4.3", + "2.8", + "13", + "12.9" + ] + } + }, + { + "name": "chlorides", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 147, + "unique_ratio": 0.037519, + "example_values": [ + "0.042", + "0.036", + "0.038", + "0.047", + "0.033" + ] + } + }, + { + "name": "free sulfur dioxide", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 120, + "unique_ratio": 0.030628, + "example_values": [ + "21", + "24", + "41", + "43", + "69" + ] + } + }, + { + "name": "total sulfur dioxide", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 244, + "unique_ratio": 0.062277, + "example_values": [ + "144", + "99", + "114", + "132", + "160" + ] + } + }, + { + "name": "density", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 839, + "unique_ratio": 0.21414, + "example_values": [ + "0.99304", + "0.9947", + "0.99155", + "0.98975", + "0.99705" + ] + } + }, + { + "name": "pH", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 100, + "unique_ratio": 0.025523, + "example_values": [ + "3.13", + "3.18", + "3.37", + "3.21", + "3.16" + ] + } + }, + { + "name": "sulphates", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 78, + "unique_ratio": 0.019908, + "example_values": [ + "0.4", + "0.53", + "0.66", + "0.47", + "0.5" + ] + } + }, + { + "name": "alcohol", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 97, + "unique_ratio": 0.024758, + "example_values": [ + "9.6", + "9.7", + "11.7", + "13.4", + "8.8" + ] + } + }, + { + "name": "quality", + "role": "target", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 7, + "unique_ratio": 0.001787, + "example_values": [ + "5", + "6", + "7", + "8", + "3" + ] + } + } + ] +} \ No newline at end of file diff --git a/hyperparameter/n3/bayesnet/bayesnet-n3-20260504_210542/public_gate/public_gate_report.json b/hyperparameter/n3/bayesnet/bayesnet-n3-20260504_210542/public_gate/public_gate_report.json new file mode 100644 index 0000000000000000000000000000000000000000..93b97319f739e39079d6c6549fd2020f8a6dac25 --- /dev/null +++ b/hyperparameter/n3/bayesnet/bayesnet-n3-20260504_210542/public_gate/public_gate_report.json @@ -0,0 +1,37 @@ +{ + "dataset_id": "n3", + "status": "pass", + "checks": [ + { + "check_id": "PG001_csv_parse_ok", + "status": "pass" + }, + { + "check_id": "PG002_split_header_consistent", + "status": "pass" + }, + { + "check_id": "PG003_profile_header_match", + "status": "pass" + }, + { + "check_id": "PG004_missing_token_normalized", + "status": "pass" + }, + { + "check_id": "PG005_semantic_type_validated", + "status": "pass" + }, + { + "check_id": "PG006_target_defined_and_valid", + "status": "pass" + } + ], + "target_column": "quality", + "task_type": "classification", + "input_splits": { + "train": "/data/jialinzhang/SynthesizePipeline-server/DatasetNew/n3/n3-train.csv", + "val": "/data/jialinzhang/SynthesizePipeline-server/DatasetNew/n3/n3-val.csv", + "test": "/data/jialinzhang/SynthesizePipeline-server/DatasetNew/n3/n3-test.csv" + } +} \ No newline at end of file diff --git a/hyperparameter/n3/bayesnet/bayesnet-n3-20260504_210542/public_gate/staged_input_manifest.json b/hyperparameter/n3/bayesnet/bayesnet-n3-20260504_210542/public_gate/staged_input_manifest.json new file mode 100644 index 0000000000000000000000000000000000000000..a5b61a4cef481140f62d17f8bb83e89432ec8e65 --- /dev/null +++ b/hyperparameter/n3/bayesnet/bayesnet-n3-20260504_210542/public_gate/staged_input_manifest.json @@ -0,0 +1,264 @@ +{ + "dataset_id": "n3", + "target_column": "quality", + "task_type": "classification", + "train_csv": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/n3/bayesnet/bayesnet-n3-20260504_210542/staged/public/train.csv", + "val_csv": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/n3/bayesnet/bayesnet-n3-20260504_210542/staged/public/val.csv", + "test_csv": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/n3/bayesnet/bayesnet-n3-20260504_210542/staged/public/test.csv", + "features_json": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/n3/bayesnet/bayesnet-n3-20260504_210542/staged/public/staged_features.json", + "public_gate_report": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/n3/bayesnet/bayesnet-n3-20260504_210542/public_gate/public_gate_report.json", + "column_schema": [ + { + "name": "fixed acidity", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 66, + "unique_ratio": 0.016845, + "example_values": [ + "7.1", + "8.5", + "6.4", + "6.8", + "7.6" + ] + } + }, + { + "name": "volatile acidity", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 121, + "unique_ratio": 0.030883, + "example_values": [ + "0.31", + "0.21", + "0.24", + "0.43", + "0.27" + ] + } + }, + { + "name": "citric acid", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 85, + "unique_ratio": 0.021695, + "example_values": [ + "0.17", + "0.41", + "0.31", + "0.25", + "0.3" + ] + } + }, + { + "name": "residual sugar", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 296, + "unique_ratio": 0.075549, + "example_values": [ + "1", + "4.3", + "2.8", + "13", + "12.9" + ] + } + }, + { + "name": "chlorides", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 147, + "unique_ratio": 0.037519, + "example_values": [ + "0.042", + "0.036", + "0.038", + "0.047", + "0.033" + ] + } + }, + { + "name": "free sulfur dioxide", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 120, + "unique_ratio": 0.030628, + "example_values": [ + "21", + "24", + "41", + "43", + "69" + ] + } + }, + { + "name": "total sulfur dioxide", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 244, + "unique_ratio": 0.062277, + "example_values": [ + "144", + "99", + "114", + "132", + "160" + ] + } + }, + { + "name": "density", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 839, + "unique_ratio": 0.21414, + "example_values": [ + "0.99304", + "0.9947", + "0.99155", + "0.98975", + "0.99705" + ] + } + }, + { + "name": "pH", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 100, + "unique_ratio": 0.025523, + "example_values": [ + "3.13", + "3.18", + "3.37", + "3.21", + "3.16" + ] + } + }, + { + "name": "sulphates", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 78, + "unique_ratio": 0.019908, + "example_values": [ + "0.4", + "0.53", + "0.66", + "0.47", + "0.5" + ] + } + }, + { + "name": "alcohol", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 97, + "unique_ratio": 0.024758, + "example_values": [ + "9.6", + "9.7", + "11.7", + "13.4", + "8.8" + ] + } + }, + { + "name": "quality", + "role": "target", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 7, + "unique_ratio": 0.001787, + "example_values": [ + "5", + "6", + "7", + "8", + "3" + ] + } + } + ] +} \ No newline at end of file diff --git a/hyperparameter/n3/bayesnet/bayesnet-n3-20260504_210542/run_config.json b/hyperparameter/n3/bayesnet/bayesnet-n3-20260504_210542/run_config.json new file mode 100644 index 0000000000000000000000000000000000000000..9290442e15c13fa3aee2340956e39c32828aa787 --- /dev/null +++ b/hyperparameter/n3/bayesnet/bayesnet-n3-20260504_210542/run_config.json @@ -0,0 +1,47 @@ +{ + "schema_version": 1, + "recorded_at": "2026-05-04T21:05:42", + "dataset_id": "n3", + "model": "bayesnet", + "work_dir": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/n3/bayesnet/bayesnet-n3-20260504_210542", + "dataset_source_requested": "new", + "dataset_source_resolved": "new", + "cli_args": { + "model": "bayesnet", + "dataset": "n3", + "dataset_source": "new", + "train": true, + "generate": true, + "num_rows": 0, + "epochs": null, + "output_dir": null, + "model_dir": null, + "work_dir": null, + "resume": false, + "no_stats": false + }, + "resolved": { + "num_rows": 3918, + "model_path": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/n3/bayesnet/bayesnet-n3-20260504_210542/bayesnet_model.pkl", + "output_csv": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/n3/bayesnet/bayesnet-n3-20260504_210542/bayesnet-n3-3918-20260504_210549.csv" + }, + "input_artifacts": { + "public_gate_report": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/n3/bayesnet/bayesnet-n3-20260504_210542/public_gate/public_gate_report.json", + "public_manifest": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/n3/bayesnet/bayesnet-n3-20260504_210542/public_gate/staged_input_manifest.json", + "model_manifest": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/n3/bayesnet/bayesnet-n3-20260504_210542/staged/bayesnet/model_input_manifest.json", + "train_csv": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/n3/bayesnet/bayesnet-n3-20260504_210542/staged/public/train.csv", + "features_json": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/n3/bayesnet/bayesnet-n3-20260504_210542/staged/public/staged_features.json", + "target_column": "quality", + "task_type": "classification" + }, + "env_overrides": { + "BAYESNET_DISABLE_AUTO_CAPS": "1", + "BAYESNET_EDGE_WEIGHTS_FN": "mutual_info", + "BAYESNET_ESTIMATOR_TYPE": "chow-liu", + "BAYESNET_FIT_ROWS": "120000", + "BAYESNET_MAX_BINS": "8", + "BAYESNET_MAX_CAT_LEVELS": "128", + "BAYESNET_N_JOBS": "1", + "BAYESNET_STRUCT_ROWS": "25000" + } +} \ No newline at end of file diff --git a/hyperparameter/n3/bayesnet/bayesnet-n3-20260504_210542/runtime_result.json b/hyperparameter/n3/bayesnet/bayesnet-n3-20260504_210542/runtime_result.json new file mode 100644 index 0000000000000000000000000000000000000000..4a299e559c086415a12c336c1ff3e54f53449f9c --- /dev/null +++ b/hyperparameter/n3/bayesnet/bayesnet-n3-20260504_210542/runtime_result.json @@ -0,0 +1,27 @@ +{ + "dataset_id": "n3", + "model": "bayesnet", + "run_id": "bayesnet-n3-20260504_210542", + "public_gate_status": "pass", + "adapter_ready_status": "pass", + "train_status": "success", + "generate_status": "success", + "reason_code": null, + "reason_detail": null, + "artifacts": { + "synthetic_csv": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/n3/bayesnet/bayesnet-n3-20260504_210542/bayesnet-n3-3918-20260504_210549.csv", + "model_path": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/n3/bayesnet/bayesnet-n3-20260504_210542/bayesnet_model.pkl" + }, + "timings": { + "train": { + "started_at": "2026-05-04T21:05:42", + "ended_at": "2026-05-04T21:05:49", + "duration_sec": 7.395 + }, + "generate": { + "started_at": "2026-05-04T21:05:49", + "ended_at": "2026-05-04T21:05:57", + "duration_sec": 7.571 + } + } +} \ No newline at end of file diff --git a/hyperparameter/n3/bayesnet/bayesnet-n3-20260504_210542/staged/bayesnet/adapter_report.json b/hyperparameter/n3/bayesnet/bayesnet-n3-20260504_210542/staged/bayesnet/adapter_report.json new file mode 100644 index 0000000000000000000000000000000000000000..1576df4d20002f8e6cf727e0bdc6832dbfc563e6 --- /dev/null +++ b/hyperparameter/n3/bayesnet/bayesnet-n3-20260504_210542/staged/bayesnet/adapter_report.json @@ -0,0 +1,7 @@ +{ + "adapter_ready_status": "pass", + "adapter_fail_reason_code": null, + "adapter_fail_detail": null, + "adapter_transforms_applied": [], + "model_input_manifest": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/n3/bayesnet/bayesnet-n3-20260504_210542/staged/bayesnet/model_input_manifest.json" +} \ No newline at end of file diff --git a/hyperparameter/n3/bayesnet/bayesnet-n3-20260504_210542/staged/bayesnet/adapter_transforms_applied.json b/hyperparameter/n3/bayesnet/bayesnet-n3-20260504_210542/staged/bayesnet/adapter_transforms_applied.json new file mode 100644 index 0000000000000000000000000000000000000000..0637a088a01e8ddab3bf3fa98dbe804cbde1a0dc --- /dev/null +++ b/hyperparameter/n3/bayesnet/bayesnet-n3-20260504_210542/staged/bayesnet/adapter_transforms_applied.json @@ -0,0 +1 @@ +[] \ No newline at end of file diff --git a/hyperparameter/n3/bayesnet/bayesnet-n3-20260504_210542/staged/bayesnet/model_input_manifest.json b/hyperparameter/n3/bayesnet/bayesnet-n3-20260504_210542/staged/bayesnet/model_input_manifest.json new file mode 100644 index 0000000000000000000000000000000000000000..61f2cd0847646c646ee8cc1ddcc4c0a85cb055db --- /dev/null +++ b/hyperparameter/n3/bayesnet/bayesnet-n3-20260504_210542/staged/bayesnet/model_input_manifest.json @@ -0,0 +1,266 @@ +{ + "dataset_id": "n3", + "model": "bayesnet", + "target_column": "quality", + "task_type": "classification", + "column_schema": [ + { + "name": "fixed acidity", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 66, + "unique_ratio": 0.016845, + "example_values": [ + "7.1", + "8.5", + "6.4", + "6.8", + "7.6" + ] + } + }, + { + "name": "volatile acidity", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 121, + "unique_ratio": 0.030883, + "example_values": [ + "0.31", + "0.21", + "0.24", + "0.43", + "0.27" + ] + } + }, + { + "name": "citric acid", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 85, + "unique_ratio": 0.021695, + "example_values": [ + "0.17", + "0.41", + "0.31", + "0.25", + "0.3" + ] + } + }, + { + "name": "residual sugar", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 296, + "unique_ratio": 0.075549, + "example_values": [ + "1", + "4.3", + "2.8", + "13", + "12.9" + ] + } + }, + { + "name": "chlorides", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 147, + "unique_ratio": 0.037519, + "example_values": [ + "0.042", + "0.036", + "0.038", + "0.047", + "0.033" + ] + } + }, + { + "name": "free sulfur dioxide", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 120, + "unique_ratio": 0.030628, + "example_values": [ + "21", + "24", + "41", + "43", + "69" + ] + } + }, + { + "name": "total sulfur dioxide", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 244, + "unique_ratio": 0.062277, + "example_values": [ + "144", + "99", + "114", + "132", + "160" + ] + } + }, + { + "name": "density", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 839, + "unique_ratio": 0.21414, + "example_values": [ + "0.99304", + "0.9947", + "0.99155", + "0.98975", + "0.99705" + ] + } + }, + { + "name": "pH", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 100, + "unique_ratio": 0.025523, + "example_values": [ + "3.13", + "3.18", + "3.37", + "3.21", + "3.16" + ] + } + }, + { + "name": "sulphates", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 78, + "unique_ratio": 0.019908, + "example_values": [ + "0.4", + "0.53", + "0.66", + "0.47", + "0.5" + ] + } + }, + { + "name": "alcohol", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 97, + "unique_ratio": 0.024758, + "example_values": [ + "9.6", + "9.7", + "11.7", + "13.4", + "8.8" + ] + } + }, + { + "name": "quality", + "role": "target", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 7, + "unique_ratio": 0.001787, + "example_values": [ + "5", + "6", + "7", + "8", + "3" + ] + } + } + ], + "public_manifest": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/n3/bayesnet/bayesnet-n3-20260504_210542/public_gate/staged_input_manifest.json", + "train_csv": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/n3/bayesnet/bayesnet-n3-20260504_210542/staged/public/train.csv", + "val_csv": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/n3/bayesnet/bayesnet-n3-20260504_210542/staged/public/val.csv", + "test_csv": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/n3/bayesnet/bayesnet-n3-20260504_210542/staged/public/test.csv", + "features_json": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/n3/bayesnet/bayesnet-n3-20260504_210542/staged/public/staged_features.json", + "public_gate_report": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/n3/bayesnet/bayesnet-n3-20260504_210542/public_gate/public_gate_report.json" +} \ No newline at end of file diff --git a/hyperparameter/n3/bayesnet/bayesnet-n3-20260504_210542/staged/public/staged_features.json b/hyperparameter/n3/bayesnet/bayesnet-n3-20260504_210542/staged/public/staged_features.json new file mode 100644 index 0000000000000000000000000000000000000000..08fe4d766d091d2f2ddba724a16b9509cbe4c390 --- /dev/null +++ b/hyperparameter/n3/bayesnet/bayesnet-n3-20260504_210542/staged/public/staged_features.json @@ -0,0 +1,62 @@ +[ + { + "feature_name": "fixed acidity", + "data_type": "continuous", + "is_target": false + }, + { + "feature_name": "volatile acidity", + "data_type": "continuous", + "is_target": false + }, + { + "feature_name": "citric acid", + "data_type": "continuous", + "is_target": false + }, + { + "feature_name": "residual sugar", + "data_type": "continuous", + "is_target": false + }, + { + "feature_name": "chlorides", + "data_type": "continuous", + "is_target": false + }, + { + "feature_name": "free sulfur dioxide", + "data_type": "continuous", + "is_target": false + }, + { + "feature_name": "total sulfur dioxide", + "data_type": "continuous", + "is_target": false + }, + { + "feature_name": "density", + "data_type": "continuous", + "is_target": false + }, + { + "feature_name": "pH", + "data_type": "continuous", + "is_target": false + }, + { + "feature_name": "sulphates", + "data_type": "continuous", + "is_target": false + }, + { + "feature_name": "alcohol", + "data_type": "continuous", + "is_target": false + }, + { + "feature_name": "quality", + "data_type": "continuous", + "is_target": true + } +] \ No newline at end of file diff --git a/hyperparameter/n3/bayesnet/bayesnet-n3-20260504_210542/staged/public/test.csv b/hyperparameter/n3/bayesnet/bayesnet-n3-20260504_210542/staged/public/test.csv new file mode 100644 index 0000000000000000000000000000000000000000..db5cd50d3746410ea470625fa2ba2c8e9775cc0d --- /dev/null +++ b/hyperparameter/n3/bayesnet/bayesnet-n3-20260504_210542/staged/public/test.csv @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:19e107152a94432e2a37ff045c00cfe35e1be30208b1553080d7dd0ede256d3b +size 28944 diff --git a/hyperparameter/n3/bayesnet/bayesnet-n3-20260504_210542/staged/public/train.csv b/hyperparameter/n3/bayesnet/bayesnet-n3-20260504_210542/staged/public/train.csv new file mode 100644 index 0000000000000000000000000000000000000000..87ca26726fe82ccbaa397919305b043c17eb374e --- /dev/null +++ b/hyperparameter/n3/bayesnet/bayesnet-n3-20260504_210542/staged/public/train.csv @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:7813c8cca73ba4bfc6559215257b341c21e459980ad17ae6ddc809306bc9a0b9 +size 229945 diff --git a/hyperparameter/n3/bayesnet/bayesnet-n3-20260504_210542/staged/public/val.csv b/hyperparameter/n3/bayesnet/bayesnet-n3-20260504_210542/staged/public/val.csv new file mode 100644 index 0000000000000000000000000000000000000000..6acf84c76c47093b513c46d5503972a2dff275c0 --- /dev/null +++ b/hyperparameter/n3/bayesnet/bayesnet-n3-20260504_210542/staged/public/val.csv @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:cf5979d9675567d9d6642640c9b84fc6c49e492604144723c30f50516c05cee6 +size 28791 diff --git a/hyperparameter/n3/bayesnet/bayesnet-n3-20260504_210542/train_20260504_210542.log b/hyperparameter/n3/bayesnet/bayesnet-n3-20260504_210542/train_20260504_210542.log new file mode 100644 index 0000000000000000000000000000000000000000..8273f50fc14a33f89cb5cbd2cad70d856fabeb6d --- /dev/null +++ b/hyperparameter/n3/bayesnet/bayesnet-n3-20260504_210542/train_20260504_210542.log @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:cbad70772e7ba358882f77db3f7e045d2ab5447a83eab5e995e707091bde22f3 +size 3855 diff --git a/hyperparameter/n3/bayesnet/bayesnet-n3-20260504_210610/_bayesnet_generate.py b/hyperparameter/n3/bayesnet/bayesnet-n3-20260504_210610/_bayesnet_generate.py new file mode 100644 index 0000000000000000000000000000000000000000..8a609e8e1669b087d25bee909698e40ffe45a355 --- /dev/null +++ b/hyperparameter/n3/bayesnet/bayesnet-n3-20260504_210610/_bayesnet_generate.py @@ -0,0 +1,105 @@ + +import pickle +import subprocess +import sys +import warnings + +import numpy as np +import pandas as pd +from pgmpy.sampling import BayesianModelSampling + +warnings.filterwarnings("ignore", category=FutureWarning) + +def _ensure_cloudpickle(): + try: + import cloudpickle # noqa: F401 + except ModuleNotFoundError: + subprocess.check_call( + [sys.executable, "-m", "pip", "install", "--quiet", "cloudpickle"], + ) + +_ensure_cloudpickle() + +with open("/work/output-Benchmark-trainonly-v1/n3/bayesnet/bayesnet-n3-20260504_210610/bayesnet_model.pkl", "rb") as f: + bundle = pickle.load(f) + +network = bundle["network"] +inverse = bundle["inverse"] +cols = bundle["column_order"] +integer_columns = set(bundle.get("integer_columns") or []) +full_order = bundle.get("full_column_order") or cols +const_cols = bundle.get("const_cols") or {} + +num_rows = int(3918) +sampler = BayesianModelSampling(network) +raw = sampler.forward_sample(size=num_rows, show_progress=False) +raw = raw.reset_index(drop=True) +if len(raw) > num_rows: + raw = raw.iloc[:num_rows] +_tries = 0 +while len(raw) < num_rows and _tries < 64: + _tries += 1 + nextra = min(10000, num_rows - len(raw)) + more = sampler.forward_sample(size=max(nextra, 1), show_progress=False) + more = more.reset_index(drop=True) + if len(more) == 0: + break + raw = pd.concat([raw, more], ignore_index=True) + if len(raw) > num_rows: + raw = raw.iloc[:num_rows] + +out = pd.DataFrame(index=raw.index) +rng = np.random.default_rng() + +for c in cols: + if c in inverse["categorical"]: + levels = inverse["categorical"][c] + idx = raw[c].astype(int).to_numpy() + idx = np.clip(idx, 0, max(0, len(levels) - 1)) + out[c] = [levels[i] for i in idx] + else: + edges = np.asarray(inverse["continuous"][c], dtype=float) + if edges.size < 2: + out[c] = 0.0 + else: + nbin = edges.size - 1 + res = [] + for k in raw[c].astype(int).to_numpy(): + k = int(k) + if k < 0: + k = 0 + if k >= nbin: + k = nbin - 1 + lo, hi = float(edges[k]), float(edges[k + 1]) + if hi < lo: + lo, hi = hi, lo + v = rng.uniform(lo, hi) + if c in integer_columns: + v = int(round(v)) + res.append(v) + out[c] = res + +final = pd.DataFrame(index=out.index) +for c in full_order: + if c in const_cols: + final[c] = const_cols[c] + elif c in out.columns: + final[c] = out[c] + +dtypes = bundle.get("original_dtypes") or {} +for c, dts in dtypes.items(): + if c not in final.columns: + continue + try: + if "int" in dts: + final[c] = pd.to_numeric(final[c], errors="coerce").astype("Int64") + elif "float" in dts: + final[c] = pd.to_numeric(final[c], errors="coerce") + except Exception: + pass + +if len(final) != num_rows: + final = final.iloc[:num_rows].copy() +final = final.reset_index(drop=True) +final.to_csv("/work/output-Benchmark-trainonly-v1/n3/bayesnet/bayesnet-n3-20260504_210610/bayesnet-n3-3918-20260504_210618.csv", index=False) +print(f"[BayesNet] Generated {len(final)} rows (requested {num_rows}) -> /work/output-Benchmark-trainonly-v1/n3/bayesnet/bayesnet-n3-20260504_210610/bayesnet-n3-3918-20260504_210618.csv") diff --git a/hyperparameter/n3/bayesnet/bayesnet-n3-20260504_210610/_bayesnet_train.py b/hyperparameter/n3/bayesnet/bayesnet-n3-20260504_210610/_bayesnet_train.py new file mode 100644 index 0000000000000000000000000000000000000000..a4513d34c4ec9ffbcbfdea3ff15fa23bc7b6e345 --- /dev/null +++ b/hyperparameter/n3/bayesnet/bayesnet-n3-20260504_210610/_bayesnet_train.py @@ -0,0 +1,146 @@ + +import json +import os +import pickle +import subprocess +import sys +import warnings + +import numpy as np +import pandas as pd +from pgmpy.estimators import TreeSearch +from pgmpy.models import DiscreteBayesianNetwork +warnings.filterwarnings("ignore", category=FutureWarning) + +def _ensure_cloudpickle(): + try: + import cloudpickle # noqa: F401 + except ModuleNotFoundError: + subprocess.check_call( + [sys.executable, "-m", "pip", "install", "--quiet", "cloudpickle"], + ) + +_ensure_cloudpickle() + +with open("/work/output-Benchmark-trainonly-v1/n3/bayesnet/bayesnet-n3-20260504_210610/bayesnet_coltypes.json", "r", encoding="utf-8") as _f: + colmeta = json.load(_f) +integer_columns = set(colmeta.get("integer_columns") or []) + +df = pd.read_csv("/work/output-Benchmark-trainonly-v1/n3/bayesnet/bayesnet-n3-20260504_210610/staged/public/train.csv") +df = df.dropna(axis=1, how="all") +full_column_order = list(df.columns) + +const_cols = {} +for col in list(df.columns): + if df[col].nunique(dropna=True) <= 1: + const_cols[col] = df[col].iloc[0] if len(df) > 0 else None + df = df.drop(columns=[col]) + print(f"[BayesNet] Dropped zero-variance column '{col}'") + +const_path = "/work/output-Benchmark-trainonly-v1/n3/bayesnet/bayesnet-n3-20260504_210610/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 = int(os.environ.get("BAYESNET_MAX_BINS", "0")) +max_cat_levels = int(os.environ.get("BAYESNET_MAX_CAT_LEVELS", "0")) +if max_bins <= 0: + max_bins = 10 +if max_cat_levels <= 0: + max_cat_levels = 256 +auto_caps = os.environ.get("BAYESNET_DISABLE_AUTO_CAPS", "0").strip().lower() not in ("1", "true", "yes") +if auto_caps and max_bins == 10 and max_cat_levels == 256: + if _n_plan > 35 or _n_samples > 200000: + max_bins = 5 + max_cat_levels = 64 + if _n_plan > 55: + max_bins = 4 + max_cat_levels = 32 +struct_rows = int(os.environ.get("BAYESNET_STRUCT_ROWS", "25000")) +fit_rows = int(os.environ.get("BAYESNET_FIT_ROWS", "120000")) +estimator_type = (os.environ.get("BAYESNET_ESTIMATOR_TYPE", "chow-liu") or "chow-liu").strip() +edge_weights_fn = (os.environ.get("BAYESNET_EDGE_WEIGHTS_FN", "mutual_info") or "mutual_info").strip() +root_node = (os.environ.get("BAYESNET_ROOT_NODE", "") or "").strip() or None +n_jobs = int(os.environ.get("BAYESNET_N_JOBS", "1")) +print( + f"[BayesNet] max_bins={max_bins}, max_cat_levels={max_cat_levels}, struct_rows={struct_rows}, fit_rows={fit_rows}, estimator_type={estimator_type}, edge_weights_fn={edge_weights_fn}, root_node={root_node}, n_jobs={n_jobs} " + f"(cols_in_df={_n_plan}, rows={_n_samples})" +) + +for entry in colmeta["columns"]: + name = entry["name"] + if name not in df.columns: + continue + kind = entry["type"] + s = df[name] + if kind == "categorical": + s2 = s.astype(str).fillna("__NA__") + counts = s2.value_counts(dropna=False) + if len(counts) > max_cat_levels: + keep = set(counts.index[: max_cat_levels - 1].tolist()) + s2 = s2.map(lambda x: x if x in keep else "__OTHER__") + uniques = sorted(s2.dropna().unique(), key=lambda x: str(x)) + mapping = {str(v): i for i, v in enumerate(uniques)} + inverse["categorical"][name] = [uniques[i] for i in range(len(uniques))] + enc[name] = s2.map(lambda x, m=mapping: m.get(str(x), 0)).astype(int) + else: + s_num = pd.to_numeric(s, errors="coerce") + nu = int(s_num.nunique(dropna=True)) + q = min(max_bins, max(2, nu)) + if nu < 2: + enc[name] = np.zeros(len(s_num), dtype=int) + lo, hi = float(s_num.min()), float(s_num.max()) + inverse["continuous"][name] = [lo, hi] + else: + try: + _, bins = pd.qcut( + s_num, q=q, retbins=True, duplicates="drop" + ) + except Exception: + med = float(s_num.median()) + s2 = s_num.fillna(med) + _, bins = pd.qcut( + s2, q=min(q, 3), retbins=True, duplicates="drop" + ) + bins = np.asarray(bins, dtype=float) + lab = pd.cut( + s_num, bins=bins, labels=False, include_lowest=True + ) + enc[name] = lab.fillna(0).astype(int) + inverse["continuous"][name] = bins.tolist() + +print(f"[BayesNet] Training on {len(enc)} rows, {len(enc.columns)} cols (encoded)") + +enc_struct = enc +if len(enc) > struct_rows: + enc_struct = enc.sample(n=struct_rows, random_state=0, replace=False) + print(f"[BayesNet] TreeSearch on {len(enc_struct)} rows (subsample; full n={len(enc)})") +dag = TreeSearch(enc_struct, root_node=root_node, n_jobs=n_jobs).estimate(estimator_type=estimator_type, edge_weights_fn=edge_weights_fn, show_progress=False) +for col in enc.columns: + if col not in dag.nodes(): + dag.add_node(col) + print(f"[BayesNet] Added isolated node to DAG: {col}") +network = DiscreteBayesianNetwork(dag) +enc_fit = enc +if len(enc) > fit_rows: + enc_fit = enc.sample(n=fit_rows, random_state=1, replace=False) + print(f"[BayesNet] fit() on {len(enc_fit)} rows (full n={len(enc)})") +network.fit(enc_fit) + +bundle = { + "network": network, + "inverse": inverse, + "column_order": list(enc.columns), + "full_column_order": full_column_order, + "integer_columns": list(integer_columns), + "original_dtypes": {c: str(df[c].dtype) for c in enc.columns}, + "const_cols": const_cols, +} +with open("/work/output-Benchmark-trainonly-v1/n3/bayesnet/bayesnet-n3-20260504_210610/bayesnet_model.pkl", "wb") as _f: + pickle.dump(bundle, _f) +print(f"[BayesNet] Model saved -> /work/output-Benchmark-trainonly-v1/n3/bayesnet/bayesnet-n3-20260504_210610/bayesnet_model.pkl") diff --git a/hyperparameter/n3/bayesnet/bayesnet-n3-20260504_210610/bayesnet-n3-3918-20260504_210618.csv b/hyperparameter/n3/bayesnet/bayesnet-n3-20260504_210610/bayesnet-n3-3918-20260504_210618.csv new file mode 100644 index 0000000000000000000000000000000000000000..7e937cf86b8d73e1e1509d96ad8cd409a57530d2 --- /dev/null +++ b/hyperparameter/n3/bayesnet/bayesnet-n3-20260504_210610/bayesnet-n3-3918-20260504_210618.csv @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:13ddda900c06883c94cebaefacd5c5d3e1cd2f5ce251e2e4e95305053c39b36c +size 884009 diff --git a/hyperparameter/n3/bayesnet/bayesnet-n3-20260504_210610/bayesnet_coltypes.json b/hyperparameter/n3/bayesnet/bayesnet-n3-20260504_210610/bayesnet_coltypes.json new file mode 100644 index 0000000000000000000000000000000000000000..59893d873ed1f60d3bbb17d18abfda70729fe810 --- /dev/null +++ b/hyperparameter/n3/bayesnet/bayesnet-n3-20260504_210610/bayesnet_coltypes.json @@ -0,0 +1,53 @@ +{ + "columns": [ + { + "name": "fixed acidity", + "type": "continuous" + }, + { + "name": "volatile acidity", + "type": "continuous" + }, + { + "name": "citric acid", + "type": "continuous" + }, + { + "name": "residual sugar", + "type": "continuous" + }, + { + "name": "chlorides", + "type": "continuous" + }, + { + "name": "free sulfur dioxide", + "type": "continuous" + }, + { + "name": "total sulfur dioxide", + "type": "continuous" + }, + { + "name": "density", + "type": "continuous" + }, + { + "name": "pH", + "type": "continuous" + }, + { + "name": "sulphates", + "type": "continuous" + }, + { + "name": "alcohol", + "type": "continuous" + }, + { + "name": "quality", + "type": "continuous" + } + ], + "integer_columns": [] +} \ No newline at end of file diff --git a/hyperparameter/n3/bayesnet/bayesnet-n3-20260504_210610/bayesnet_model.pkl b/hyperparameter/n3/bayesnet/bayesnet-n3-20260504_210610/bayesnet_model.pkl new file mode 100644 index 0000000000000000000000000000000000000000..bb69cd332f67532dd621f240042431c697714cf0 --- /dev/null +++ b/hyperparameter/n3/bayesnet/bayesnet-n3-20260504_210610/bayesnet_model.pkl @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:b514c2ddd92e061a24c3b90710574c1c291baecdf8cba550da95251c0bf695f0 +size 14168 diff --git a/hyperparameter/n3/bayesnet/bayesnet-n3-20260504_210610/const_cols.json b/hyperparameter/n3/bayesnet/bayesnet-n3-20260504_210610/const_cols.json new file mode 100644 index 0000000000000000000000000000000000000000..9e26dfeeb6e641a33dae4961196235bdb965b21b --- /dev/null +++ b/hyperparameter/n3/bayesnet/bayesnet-n3-20260504_210610/const_cols.json @@ -0,0 +1 @@ +{} \ No newline at end of file diff --git a/hyperparameter/n3/bayesnet/bayesnet-n3-20260504_210610/gen_20260504_210618.log b/hyperparameter/n3/bayesnet/bayesnet-n3-20260504_210610/gen_20260504_210618.log new file mode 100644 index 0000000000000000000000000000000000000000..113892981450ec2813ee8c1e0da4ae25796916ac --- /dev/null +++ b/hyperparameter/n3/bayesnet/bayesnet-n3-20260504_210610/gen_20260504_210618.log @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:f5195bde3455c476dfd3c64784eceaec85536a86cd80b2dcf1e80984d8307f1b +size 3661 diff --git a/hyperparameter/n3/bayesnet/bayesnet-n3-20260504_210610/input_snapshot.json b/hyperparameter/n3/bayesnet/bayesnet-n3-20260504_210610/input_snapshot.json new file mode 100644 index 0000000000000000000000000000000000000000..527cf133718a3c780f9b12547e302d03bea557f3 --- /dev/null +++ b/hyperparameter/n3/bayesnet/bayesnet-n3-20260504_210610/input_snapshot.json @@ -0,0 +1,36 @@ +{ + "dataset_id": "n3", + "model": "bayesnet", + "inputs": { + "train_csv": { + "path": "/data/jialinzhang/SynthesizePipeline-server/DatasetNew/n3/n3-train.csv", + "exists": true, + "size": 211519, + "sha256": "2160a06db2fea02adb0ebb79d8d853bd2544580be301e71f6e8deeb1489a9009" + }, + "val_csv": { + "path": "/data/jialinzhang/SynthesizePipeline-server/DatasetNew/n3/n3-val.csv", + "exists": true, + "size": 26499, + "sha256": "d5ccfee07dfa9e7bdee5bb87642b43828e09f74c6cc0266a3d19d9feaa83106e" + }, + "test_csv": { + "path": "/data/jialinzhang/SynthesizePipeline-server/DatasetNew/n3/n3-test.csv", + "exists": true, + "size": 26676, + "sha256": "6f83aacb0d1747b95e287352a7fff5d9d65a1c127b773852346c68485c4ede47" + }, + "profile_json": { + "path": "/data/jialinzhang/SynthesizePipeline-server/DatasetNew/artifacts/data_core/tabular/n3/n3-dataset_profile.json", + "exists": true, + "size": 5235, + "sha256": "23d2e5904a2ca90cbf8d6e3c75887681721e9b90cc705c31a680c11513d0c46f" + }, + "contract_json": { + "path": "/data/jialinzhang/SynthesizePipeline-server/DatasetNew/artifacts/data_core/tabular/n3/n3-dataset_contract_v1.json", + "exists": true, + "size": 6281, + "sha256": "c0cc56f5fe28e1b65927255c6e3c2b0e9479862c2ec6f2fea1664da36c9a3a09" + } + } +} \ No newline at end of file diff --git a/hyperparameter/n3/bayesnet/bayesnet-n3-20260504_210610/public_gate/normalized_schema_snapshot.json b/hyperparameter/n3/bayesnet/bayesnet-n3-20260504_210610/public_gate/normalized_schema_snapshot.json new file mode 100644 index 0000000000000000000000000000000000000000..c41fe304503de23190a02e6cbfafa35b3bf134d3 --- /dev/null +++ b/hyperparameter/n3/bayesnet/bayesnet-n3-20260504_210610/public_gate/normalized_schema_snapshot.json @@ -0,0 +1,259 @@ +{ + "dataset_id": "n3", + "target_column": "quality", + "task_type": "classification", + "columns": [ + { + "name": "fixed acidity", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 66, + "unique_ratio": 0.016845, + "example_values": [ + "7.1", + "8.5", + "6.4", + "6.8", + "7.6" + ] + } + }, + { + "name": "volatile acidity", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 121, + "unique_ratio": 0.030883, + "example_values": [ + "0.31", + "0.21", + "0.24", + "0.43", + "0.27" + ] + } + }, + { + "name": "citric acid", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 85, + "unique_ratio": 0.021695, + "example_values": [ + "0.17", + "0.41", + "0.31", + "0.25", + "0.3" + ] + } + }, + { + "name": "residual sugar", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 296, + "unique_ratio": 0.075549, + "example_values": [ + "1", + "4.3", + "2.8", + "13", + "12.9" + ] + } + }, + { + "name": "chlorides", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 147, + "unique_ratio": 0.037519, + "example_values": [ + "0.042", + "0.036", + "0.038", + "0.047", + "0.033" + ] + } + }, + { + "name": "free sulfur dioxide", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 120, + "unique_ratio": 0.030628, + "example_values": [ + "21", + "24", + "41", + "43", + "69" + ] + } + }, + { + "name": "total sulfur dioxide", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 244, + "unique_ratio": 0.062277, + "example_values": [ + "144", + "99", + "114", + "132", + "160" + ] + } + }, + { + "name": "density", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 839, + "unique_ratio": 0.21414, + "example_values": [ + "0.99304", + "0.9947", + "0.99155", + "0.98975", + "0.99705" + ] + } + }, + { + "name": "pH", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 100, + "unique_ratio": 0.025523, + "example_values": [ + "3.13", + "3.18", + "3.37", + "3.21", + "3.16" + ] + } + }, + { + "name": "sulphates", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 78, + "unique_ratio": 0.019908, + "example_values": [ + "0.4", + "0.53", + "0.66", + "0.47", + "0.5" + ] + } + }, + { + "name": "alcohol", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 97, + "unique_ratio": 0.024758, + "example_values": [ + "9.6", + "9.7", + "11.7", + "13.4", + "8.8" + ] + } + }, + { + "name": "quality", + "role": "target", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 7, + "unique_ratio": 0.001787, + "example_values": [ + "5", + "6", + "7", + "8", + "3" + ] + } + } + ] +} \ No newline at end of file diff --git a/hyperparameter/n3/bayesnet/bayesnet-n3-20260504_210610/public_gate/public_gate_report.json b/hyperparameter/n3/bayesnet/bayesnet-n3-20260504_210610/public_gate/public_gate_report.json new file mode 100644 index 0000000000000000000000000000000000000000..93b97319f739e39079d6c6549fd2020f8a6dac25 --- /dev/null +++ b/hyperparameter/n3/bayesnet/bayesnet-n3-20260504_210610/public_gate/public_gate_report.json @@ -0,0 +1,37 @@ +{ + "dataset_id": "n3", + "status": "pass", + "checks": [ + { + "check_id": "PG001_csv_parse_ok", + "status": "pass" + }, + { + "check_id": "PG002_split_header_consistent", + "status": "pass" + }, + { + "check_id": "PG003_profile_header_match", + "status": "pass" + }, + { + "check_id": "PG004_missing_token_normalized", + "status": "pass" + }, + { + "check_id": "PG005_semantic_type_validated", + "status": "pass" + }, + { + "check_id": "PG006_target_defined_and_valid", + "status": "pass" + } + ], + "target_column": "quality", + "task_type": "classification", + "input_splits": { + "train": "/data/jialinzhang/SynthesizePipeline-server/DatasetNew/n3/n3-train.csv", + "val": "/data/jialinzhang/SynthesizePipeline-server/DatasetNew/n3/n3-val.csv", + "test": "/data/jialinzhang/SynthesizePipeline-server/DatasetNew/n3/n3-test.csv" + } +} \ No newline at end of file diff --git a/hyperparameter/n3/bayesnet/bayesnet-n3-20260504_210610/public_gate/staged_input_manifest.json b/hyperparameter/n3/bayesnet/bayesnet-n3-20260504_210610/public_gate/staged_input_manifest.json new file mode 100644 index 0000000000000000000000000000000000000000..ac5656f833dbf87f861dbe8684ca08e1a57af81f --- /dev/null +++ b/hyperparameter/n3/bayesnet/bayesnet-n3-20260504_210610/public_gate/staged_input_manifest.json @@ -0,0 +1,264 @@ +{ + "dataset_id": "n3", + "target_column": "quality", + "task_type": "classification", + "train_csv": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/n3/bayesnet/bayesnet-n3-20260504_210610/staged/public/train.csv", + "val_csv": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/n3/bayesnet/bayesnet-n3-20260504_210610/staged/public/val.csv", + "test_csv": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/n3/bayesnet/bayesnet-n3-20260504_210610/staged/public/test.csv", + "features_json": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/n3/bayesnet/bayesnet-n3-20260504_210610/staged/public/staged_features.json", + "public_gate_report": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/n3/bayesnet/bayesnet-n3-20260504_210610/public_gate/public_gate_report.json", + "column_schema": [ + { + "name": "fixed acidity", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 66, + "unique_ratio": 0.016845, + "example_values": [ + "7.1", + "8.5", + "6.4", + "6.8", + "7.6" + ] + } + }, + { + "name": "volatile acidity", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 121, + "unique_ratio": 0.030883, + "example_values": [ + "0.31", + "0.21", + "0.24", + "0.43", + "0.27" + ] + } + }, + { + "name": "citric acid", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 85, + "unique_ratio": 0.021695, + "example_values": [ + "0.17", + "0.41", + "0.31", + "0.25", + "0.3" + ] + } + }, + { + "name": "residual sugar", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 296, + "unique_ratio": 0.075549, + "example_values": [ + "1", + "4.3", + "2.8", + "13", + "12.9" + ] + } + }, + { + "name": "chlorides", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 147, + "unique_ratio": 0.037519, + "example_values": [ + "0.042", + "0.036", + "0.038", + "0.047", + "0.033" + ] + } + }, + { + "name": "free sulfur dioxide", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 120, + "unique_ratio": 0.030628, + "example_values": [ + "21", + "24", + "41", + "43", + "69" + ] + } + }, + { + "name": "total sulfur dioxide", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 244, + "unique_ratio": 0.062277, + "example_values": [ + "144", + "99", + "114", + "132", + "160" + ] + } + }, + { + "name": "density", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 839, + "unique_ratio": 0.21414, + "example_values": [ + "0.99304", + "0.9947", + "0.99155", + "0.98975", + "0.99705" + ] + } + }, + { + "name": "pH", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 100, + "unique_ratio": 0.025523, + "example_values": [ + "3.13", + "3.18", + "3.37", + "3.21", + "3.16" + ] + } + }, + { + "name": "sulphates", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 78, + "unique_ratio": 0.019908, + "example_values": [ + "0.4", + "0.53", + "0.66", + "0.47", + "0.5" + ] + } + }, + { + "name": "alcohol", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 97, + "unique_ratio": 0.024758, + "example_values": [ + "9.6", + "9.7", + "11.7", + "13.4", + "8.8" + ] + } + }, + { + "name": "quality", + "role": "target", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 7, + "unique_ratio": 0.001787, + "example_values": [ + "5", + "6", + "7", + "8", + "3" + ] + } + } + ] +} \ No newline at end of file diff --git a/hyperparameter/n3/bayesnet/bayesnet-n3-20260504_210610/run_config.json b/hyperparameter/n3/bayesnet/bayesnet-n3-20260504_210610/run_config.json new file mode 100644 index 0000000000000000000000000000000000000000..91060f7fefff65700ddcf2f22ee5a12c3949e9da --- /dev/null +++ b/hyperparameter/n3/bayesnet/bayesnet-n3-20260504_210610/run_config.json @@ -0,0 +1,47 @@ +{ + "schema_version": 1, + "recorded_at": "2026-05-04T21:06:11", + "dataset_id": "n3", + "model": "bayesnet", + "work_dir": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/n3/bayesnet/bayesnet-n3-20260504_210610", + "dataset_source_requested": "new", + "dataset_source_resolved": "new", + "cli_args": { + "model": "bayesnet", + "dataset": "n3", + "dataset_source": "new", + "train": true, + "generate": true, + "num_rows": 0, + "epochs": null, + "output_dir": null, + "model_dir": null, + "work_dir": null, + "resume": false, + "no_stats": false + }, + "resolved": { + "num_rows": 3918, + "model_path": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/n3/bayesnet/bayesnet-n3-20260504_210610/bayesnet_model.pkl", + "output_csv": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/n3/bayesnet/bayesnet-n3-20260504_210610/bayesnet-n3-3918-20260504_210618.csv" + }, + "input_artifacts": { + "public_gate_report": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/n3/bayesnet/bayesnet-n3-20260504_210610/public_gate/public_gate_report.json", + "public_manifest": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/n3/bayesnet/bayesnet-n3-20260504_210610/public_gate/staged_input_manifest.json", + "model_manifest": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/n3/bayesnet/bayesnet-n3-20260504_210610/staged/bayesnet/model_input_manifest.json", + "train_csv": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/n3/bayesnet/bayesnet-n3-20260504_210610/staged/public/train.csv", + "features_json": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/n3/bayesnet/bayesnet-n3-20260504_210610/staged/public/staged_features.json", + "target_column": "quality", + "task_type": "classification" + }, + "env_overrides": { + "BAYESNET_DISABLE_AUTO_CAPS": "1", + "BAYESNET_EDGE_WEIGHTS_FN": "adjusted_mutual_info", + "BAYESNET_ESTIMATOR_TYPE": "chow-liu", + "BAYESNET_FIT_ROWS": "120000", + "BAYESNET_MAX_BINS": "8", + "BAYESNET_MAX_CAT_LEVELS": "64", + "BAYESNET_N_JOBS": "1", + "BAYESNET_STRUCT_ROWS": "25000" + } +} \ No newline at end of file diff --git a/hyperparameter/n3/bayesnet/bayesnet-n3-20260504_210610/runtime_result.json b/hyperparameter/n3/bayesnet/bayesnet-n3-20260504_210610/runtime_result.json new file mode 100644 index 0000000000000000000000000000000000000000..1cc1eed37ee10abdb9f206c2f49392974ef321f6 --- /dev/null +++ b/hyperparameter/n3/bayesnet/bayesnet-n3-20260504_210610/runtime_result.json @@ -0,0 +1,27 @@ +{ + "dataset_id": "n3", + "model": "bayesnet", + "run_id": "bayesnet-n3-20260504_210610", + "public_gate_status": "pass", + "adapter_ready_status": "pass", + "train_status": "success", + "generate_status": "success", + "reason_code": null, + "reason_detail": null, + "artifacts": { + "synthetic_csv": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/n3/bayesnet/bayesnet-n3-20260504_210610/bayesnet-n3-3918-20260504_210618.csv", + "model_path": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/n3/bayesnet/bayesnet-n3-20260504_210610/bayesnet_model.pkl" + }, + "timings": { + "train": { + "started_at": "2026-05-04T21:06:11", + "ended_at": "2026-05-04T21:06:18", + "duration_sec": 7.439 + }, + "generate": { + "started_at": "2026-05-04T21:06:18", + "ended_at": "2026-05-04T21:06:26", + "duration_sec": 8.085 + } + } +} \ No newline at end of file diff --git a/hyperparameter/n3/bayesnet/bayesnet-n3-20260504_210610/staged/bayesnet/adapter_report.json b/hyperparameter/n3/bayesnet/bayesnet-n3-20260504_210610/staged/bayesnet/adapter_report.json new file mode 100644 index 0000000000000000000000000000000000000000..b8a7e114083a9e1bd7547c68ac47cd2adca60405 --- /dev/null +++ b/hyperparameter/n3/bayesnet/bayesnet-n3-20260504_210610/staged/bayesnet/adapter_report.json @@ -0,0 +1,7 @@ +{ + "adapter_ready_status": "pass", + "adapter_fail_reason_code": null, + "adapter_fail_detail": null, + "adapter_transforms_applied": [], + "model_input_manifest": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/n3/bayesnet/bayesnet-n3-20260504_210610/staged/bayesnet/model_input_manifest.json" +} \ No newline at end of file diff --git a/hyperparameter/n3/bayesnet/bayesnet-n3-20260504_210610/staged/bayesnet/adapter_transforms_applied.json b/hyperparameter/n3/bayesnet/bayesnet-n3-20260504_210610/staged/bayesnet/adapter_transforms_applied.json new file mode 100644 index 0000000000000000000000000000000000000000..0637a088a01e8ddab3bf3fa98dbe804cbde1a0dc --- /dev/null +++ b/hyperparameter/n3/bayesnet/bayesnet-n3-20260504_210610/staged/bayesnet/adapter_transforms_applied.json @@ -0,0 +1 @@ +[] \ No newline at end of file diff --git a/hyperparameter/n3/bayesnet/bayesnet-n3-20260504_210610/staged/bayesnet/model_input_manifest.json b/hyperparameter/n3/bayesnet/bayesnet-n3-20260504_210610/staged/bayesnet/model_input_manifest.json new file mode 100644 index 0000000000000000000000000000000000000000..61de75c54e608400ed661d4598c8529efd0947fe --- /dev/null +++ b/hyperparameter/n3/bayesnet/bayesnet-n3-20260504_210610/staged/bayesnet/model_input_manifest.json @@ -0,0 +1,266 @@ +{ + "dataset_id": "n3", + "model": "bayesnet", + "target_column": "quality", + "task_type": "classification", + "column_schema": [ + { + "name": "fixed acidity", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 66, + "unique_ratio": 0.016845, + "example_values": [ + "7.1", + "8.5", + "6.4", + "6.8", + "7.6" + ] + } + }, + { + "name": "volatile acidity", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 121, + "unique_ratio": 0.030883, + "example_values": [ + "0.31", + "0.21", + "0.24", + "0.43", + "0.27" + ] + } + }, + { + "name": "citric acid", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 85, + "unique_ratio": 0.021695, + "example_values": [ + "0.17", + "0.41", + "0.31", + "0.25", + "0.3" + ] + } + }, + { + "name": "residual sugar", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 296, + "unique_ratio": 0.075549, + "example_values": [ + "1", + "4.3", + "2.8", + "13", + "12.9" + ] + } + }, + { + "name": "chlorides", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 147, + "unique_ratio": 0.037519, + "example_values": [ + "0.042", + "0.036", + "0.038", + "0.047", + "0.033" + ] + } + }, + { + "name": "free sulfur dioxide", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 120, + "unique_ratio": 0.030628, + "example_values": [ + "21", + "24", + "41", + "43", + "69" + ] + } + }, + { + "name": "total sulfur dioxide", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 244, + "unique_ratio": 0.062277, + "example_values": [ + "144", + "99", + "114", + "132", + "160" + ] + } + }, + { + "name": "density", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 839, + "unique_ratio": 0.21414, + "example_values": [ + "0.99304", + "0.9947", + "0.99155", + "0.98975", + "0.99705" + ] + } + }, + { + "name": "pH", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 100, + "unique_ratio": 0.025523, + "example_values": [ + "3.13", + "3.18", + "3.37", + "3.21", + "3.16" + ] + } + }, + { + "name": "sulphates", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 78, + "unique_ratio": 0.019908, + "example_values": [ + "0.4", + "0.53", + "0.66", + "0.47", + "0.5" + ] + } + }, + { + "name": "alcohol", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 97, + "unique_ratio": 0.024758, + "example_values": [ + "9.6", + "9.7", + "11.7", + "13.4", + "8.8" + ] + } + }, + { + "name": "quality", + "role": "target", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 7, + "unique_ratio": 0.001787, + "example_values": [ + "5", + "6", + "7", + "8", + "3" + ] + } + } + ], + "public_manifest": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/n3/bayesnet/bayesnet-n3-20260504_210610/public_gate/staged_input_manifest.json", + "train_csv": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/n3/bayesnet/bayesnet-n3-20260504_210610/staged/public/train.csv", + "val_csv": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/n3/bayesnet/bayesnet-n3-20260504_210610/staged/public/val.csv", + "test_csv": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/n3/bayesnet/bayesnet-n3-20260504_210610/staged/public/test.csv", + "features_json": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/n3/bayesnet/bayesnet-n3-20260504_210610/staged/public/staged_features.json", + "public_gate_report": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/n3/bayesnet/bayesnet-n3-20260504_210610/public_gate/public_gate_report.json" +} \ No newline at end of file diff --git a/hyperparameter/n3/bayesnet/bayesnet-n3-20260504_210610/staged/public/staged_features.json b/hyperparameter/n3/bayesnet/bayesnet-n3-20260504_210610/staged/public/staged_features.json new file mode 100644 index 0000000000000000000000000000000000000000..08fe4d766d091d2f2ddba724a16b9509cbe4c390 --- /dev/null +++ b/hyperparameter/n3/bayesnet/bayesnet-n3-20260504_210610/staged/public/staged_features.json @@ -0,0 +1,62 @@ +[ + { + "feature_name": "fixed acidity", + "data_type": "continuous", + "is_target": false + }, + { + "feature_name": "volatile acidity", + "data_type": "continuous", + "is_target": false + }, + { + "feature_name": "citric acid", + "data_type": "continuous", + "is_target": false + }, + { + "feature_name": "residual sugar", + "data_type": "continuous", + "is_target": false + }, + { + "feature_name": "chlorides", + "data_type": "continuous", + "is_target": false + }, + { + "feature_name": "free sulfur dioxide", + "data_type": "continuous", + "is_target": false + }, + { + "feature_name": "total sulfur dioxide", + "data_type": "continuous", + "is_target": false + }, + { + "feature_name": "density", + "data_type": "continuous", + "is_target": false + }, + { + "feature_name": "pH", + "data_type": "continuous", + "is_target": false + }, + { + "feature_name": "sulphates", + "data_type": "continuous", + "is_target": false + }, + { + "feature_name": "alcohol", + "data_type": "continuous", + "is_target": false + }, + { + "feature_name": "quality", + "data_type": "continuous", + "is_target": true + } +] \ No newline at end of file diff --git a/hyperparameter/n3/bayesnet/bayesnet-n3-20260504_210610/staged/public/test.csv b/hyperparameter/n3/bayesnet/bayesnet-n3-20260504_210610/staged/public/test.csv new file mode 100644 index 0000000000000000000000000000000000000000..db5cd50d3746410ea470625fa2ba2c8e9775cc0d --- /dev/null +++ b/hyperparameter/n3/bayesnet/bayesnet-n3-20260504_210610/staged/public/test.csv @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:19e107152a94432e2a37ff045c00cfe35e1be30208b1553080d7dd0ede256d3b +size 28944 diff --git a/hyperparameter/n3/bayesnet/bayesnet-n3-20260504_210610/staged/public/train.csv b/hyperparameter/n3/bayesnet/bayesnet-n3-20260504_210610/staged/public/train.csv new file mode 100644 index 0000000000000000000000000000000000000000..87ca26726fe82ccbaa397919305b043c17eb374e --- /dev/null +++ b/hyperparameter/n3/bayesnet/bayesnet-n3-20260504_210610/staged/public/train.csv @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:7813c8cca73ba4bfc6559215257b341c21e459980ad17ae6ddc809306bc9a0b9 +size 229945 diff --git a/hyperparameter/n3/bayesnet/bayesnet-n3-20260504_210610/staged/public/val.csv b/hyperparameter/n3/bayesnet/bayesnet-n3-20260504_210610/staged/public/val.csv new file mode 100644 index 0000000000000000000000000000000000000000..6acf84c76c47093b513c46d5503972a2dff275c0 --- /dev/null +++ b/hyperparameter/n3/bayesnet/bayesnet-n3-20260504_210610/staged/public/val.csv @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:cf5979d9675567d9d6642640c9b84fc6c49e492604144723c30f50516c05cee6 +size 28791 diff --git a/hyperparameter/n3/bayesnet/bayesnet-n3-20260504_210610/train_20260504_210611.log b/hyperparameter/n3/bayesnet/bayesnet-n3-20260504_210610/train_20260504_210611.log new file mode 100644 index 0000000000000000000000000000000000000000..4e39f4ed9c97838ec09b091e20b6d22fc2de79f8 --- /dev/null +++ b/hyperparameter/n3/bayesnet/bayesnet-n3-20260504_210610/train_20260504_210611.log @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:4f4ea0890066f3a9b877e8e518a43b6fb9d7c2326bf4586edd02cb10d4340370 +size 3863 diff --git a/hyperparameter/n3/bayesnet/bayesnet-n3-20260504_210640/_bayesnet_generate.py b/hyperparameter/n3/bayesnet/bayesnet-n3-20260504_210640/_bayesnet_generate.py new file mode 100644 index 0000000000000000000000000000000000000000..8bafe25c09d4a55daf560f5b719bc2bcf86ae1d7 --- /dev/null +++ b/hyperparameter/n3/bayesnet/bayesnet-n3-20260504_210640/_bayesnet_generate.py @@ -0,0 +1,105 @@ + +import pickle +import subprocess +import sys +import warnings + +import numpy as np +import pandas as pd +from pgmpy.sampling import BayesianModelSampling + +warnings.filterwarnings("ignore", category=FutureWarning) + +def _ensure_cloudpickle(): + try: + import cloudpickle # noqa: F401 + except ModuleNotFoundError: + subprocess.check_call( + [sys.executable, "-m", "pip", "install", "--quiet", "cloudpickle"], + ) + +_ensure_cloudpickle() + +with open("/work/output-Benchmark-trainonly-v1/n3/bayesnet/bayesnet-n3-20260504_210640/bayesnet_model.pkl", "rb") as f: + bundle = pickle.load(f) + +network = bundle["network"] +inverse = bundle["inverse"] +cols = bundle["column_order"] +integer_columns = set(bundle.get("integer_columns") or []) +full_order = bundle.get("full_column_order") or cols +const_cols = bundle.get("const_cols") or {} + +num_rows = int(3918) +sampler = BayesianModelSampling(network) +raw = sampler.forward_sample(size=num_rows, show_progress=False) +raw = raw.reset_index(drop=True) +if len(raw) > num_rows: + raw = raw.iloc[:num_rows] +_tries = 0 +while len(raw) < num_rows and _tries < 64: + _tries += 1 + nextra = min(10000, num_rows - len(raw)) + more = sampler.forward_sample(size=max(nextra, 1), show_progress=False) + more = more.reset_index(drop=True) + if len(more) == 0: + break + raw = pd.concat([raw, more], ignore_index=True) + if len(raw) > num_rows: + raw = raw.iloc[:num_rows] + +out = pd.DataFrame(index=raw.index) +rng = np.random.default_rng() + +for c in cols: + if c in inverse["categorical"]: + levels = inverse["categorical"][c] + idx = raw[c].astype(int).to_numpy() + idx = np.clip(idx, 0, max(0, len(levels) - 1)) + out[c] = [levels[i] for i in idx] + else: + edges = np.asarray(inverse["continuous"][c], dtype=float) + if edges.size < 2: + out[c] = 0.0 + else: + nbin = edges.size - 1 + res = [] + for k in raw[c].astype(int).to_numpy(): + k = int(k) + if k < 0: + k = 0 + if k >= nbin: + k = nbin - 1 + lo, hi = float(edges[k]), float(edges[k + 1]) + if hi < lo: + lo, hi = hi, lo + v = rng.uniform(lo, hi) + if c in integer_columns: + v = int(round(v)) + res.append(v) + out[c] = res + +final = pd.DataFrame(index=out.index) +for c in full_order: + if c in const_cols: + final[c] = const_cols[c] + elif c in out.columns: + final[c] = out[c] + +dtypes = bundle.get("original_dtypes") or {} +for c, dts in dtypes.items(): + if c not in final.columns: + continue + try: + if "int" in dts: + final[c] = pd.to_numeric(final[c], errors="coerce").astype("Int64") + elif "float" in dts: + final[c] = pd.to_numeric(final[c], errors="coerce") + except Exception: + pass + +if len(final) != num_rows: + final = final.iloc[:num_rows].copy() +final = final.reset_index(drop=True) +final.to_csv("/work/output-Benchmark-trainonly-v1/n3/bayesnet/bayesnet-n3-20260504_210640/bayesnet-n3-3918-20260504_210647.csv", index=False) +print(f"[BayesNet] Generated {len(final)} rows (requested {num_rows}) -> /work/output-Benchmark-trainonly-v1/n3/bayesnet/bayesnet-n3-20260504_210640/bayesnet-n3-3918-20260504_210647.csv") diff --git a/hyperparameter/n3/bayesnet/bayesnet-n3-20260504_210640/_bayesnet_train.py b/hyperparameter/n3/bayesnet/bayesnet-n3-20260504_210640/_bayesnet_train.py new file mode 100644 index 0000000000000000000000000000000000000000..a3bf5347ea37c432dacfeb2901799d629dbb2814 --- /dev/null +++ b/hyperparameter/n3/bayesnet/bayesnet-n3-20260504_210640/_bayesnet_train.py @@ -0,0 +1,146 @@ + +import json +import os +import pickle +import subprocess +import sys +import warnings + +import numpy as np +import pandas as pd +from pgmpy.estimators import TreeSearch +from pgmpy.models import DiscreteBayesianNetwork +warnings.filterwarnings("ignore", category=FutureWarning) + +def _ensure_cloudpickle(): + try: + import cloudpickle # noqa: F401 + except ModuleNotFoundError: + subprocess.check_call( + [sys.executable, "-m", "pip", "install", "--quiet", "cloudpickle"], + ) + +_ensure_cloudpickle() + +with open("/work/output-Benchmark-trainonly-v1/n3/bayesnet/bayesnet-n3-20260504_210640/bayesnet_coltypes.json", "r", encoding="utf-8") as _f: + colmeta = json.load(_f) +integer_columns = set(colmeta.get("integer_columns") or []) + +df = pd.read_csv("/work/output-Benchmark-trainonly-v1/n3/bayesnet/bayesnet-n3-20260504_210640/staged/public/train.csv") +df = df.dropna(axis=1, how="all") +full_column_order = list(df.columns) + +const_cols = {} +for col in list(df.columns): + if df[col].nunique(dropna=True) <= 1: + const_cols[col] = df[col].iloc[0] if len(df) > 0 else None + df = df.drop(columns=[col]) + print(f"[BayesNet] Dropped zero-variance column '{col}'") + +const_path = "/work/output-Benchmark-trainonly-v1/n3/bayesnet/bayesnet-n3-20260504_210640/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 = int(os.environ.get("BAYESNET_MAX_BINS", "0")) +max_cat_levels = int(os.environ.get("BAYESNET_MAX_CAT_LEVELS", "0")) +if max_bins <= 0: + max_bins = 10 +if max_cat_levels <= 0: + max_cat_levels = 256 +auto_caps = os.environ.get("BAYESNET_DISABLE_AUTO_CAPS", "0").strip().lower() not in ("1", "true", "yes") +if auto_caps and max_bins == 10 and max_cat_levels == 256: + if _n_plan > 35 or _n_samples > 200000: + max_bins = 5 + max_cat_levels = 64 + if _n_plan > 55: + max_bins = 4 + max_cat_levels = 32 +struct_rows = int(os.environ.get("BAYESNET_STRUCT_ROWS", "25000")) +fit_rows = int(os.environ.get("BAYESNET_FIT_ROWS", "120000")) +estimator_type = (os.environ.get("BAYESNET_ESTIMATOR_TYPE", "chow-liu") or "chow-liu").strip() +edge_weights_fn = (os.environ.get("BAYESNET_EDGE_WEIGHTS_FN", "mutual_info") or "mutual_info").strip() +root_node = (os.environ.get("BAYESNET_ROOT_NODE", "") or "").strip() or None +n_jobs = int(os.environ.get("BAYESNET_N_JOBS", "1")) +print( + f"[BayesNet] max_bins={max_bins}, max_cat_levels={max_cat_levels}, struct_rows={struct_rows}, fit_rows={fit_rows}, estimator_type={estimator_type}, edge_weights_fn={edge_weights_fn}, root_node={root_node}, n_jobs={n_jobs} " + f"(cols_in_df={_n_plan}, rows={_n_samples})" +) + +for entry in colmeta["columns"]: + name = entry["name"] + if name not in df.columns: + continue + kind = entry["type"] + s = df[name] + if kind == "categorical": + s2 = s.astype(str).fillna("__NA__") + counts = s2.value_counts(dropna=False) + if len(counts) > max_cat_levels: + keep = set(counts.index[: max_cat_levels - 1].tolist()) + s2 = s2.map(lambda x: x if x in keep else "__OTHER__") + uniques = sorted(s2.dropna().unique(), key=lambda x: str(x)) + mapping = {str(v): i for i, v in enumerate(uniques)} + inverse["categorical"][name] = [uniques[i] for i in range(len(uniques))] + enc[name] = s2.map(lambda x, m=mapping: m.get(str(x), 0)).astype(int) + else: + s_num = pd.to_numeric(s, errors="coerce") + nu = int(s_num.nunique(dropna=True)) + q = min(max_bins, max(2, nu)) + if nu < 2: + enc[name] = np.zeros(len(s_num), dtype=int) + lo, hi = float(s_num.min()), float(s_num.max()) + inverse["continuous"][name] = [lo, hi] + else: + try: + _, bins = pd.qcut( + s_num, q=q, retbins=True, duplicates="drop" + ) + except Exception: + med = float(s_num.median()) + s2 = s_num.fillna(med) + _, bins = pd.qcut( + s2, q=min(q, 3), retbins=True, duplicates="drop" + ) + bins = np.asarray(bins, dtype=float) + lab = pd.cut( + s_num, bins=bins, labels=False, include_lowest=True + ) + enc[name] = lab.fillna(0).astype(int) + inverse["continuous"][name] = bins.tolist() + +print(f"[BayesNet] Training on {len(enc)} rows, {len(enc.columns)} cols (encoded)") + +enc_struct = enc +if len(enc) > struct_rows: + enc_struct = enc.sample(n=struct_rows, random_state=0, replace=False) + print(f"[BayesNet] TreeSearch on {len(enc_struct)} rows (subsample; full n={len(enc)})") +dag = TreeSearch(enc_struct, root_node=root_node, n_jobs=n_jobs).estimate(estimator_type=estimator_type, edge_weights_fn=edge_weights_fn, show_progress=False) +for col in enc.columns: + if col not in dag.nodes(): + dag.add_node(col) + print(f"[BayesNet] Added isolated node to DAG: {col}") +network = DiscreteBayesianNetwork(dag) +enc_fit = enc +if len(enc) > fit_rows: + enc_fit = enc.sample(n=fit_rows, random_state=1, replace=False) + print(f"[BayesNet] fit() on {len(enc_fit)} rows (full n={len(enc)})") +network.fit(enc_fit) + +bundle = { + "network": network, + "inverse": inverse, + "column_order": list(enc.columns), + "full_column_order": full_column_order, + "integer_columns": list(integer_columns), + "original_dtypes": {c: str(df[c].dtype) for c in enc.columns}, + "const_cols": const_cols, +} +with open("/work/output-Benchmark-trainonly-v1/n3/bayesnet/bayesnet-n3-20260504_210640/bayesnet_model.pkl", "wb") as _f: + pickle.dump(bundle, _f) +print(f"[BayesNet] Model saved -> /work/output-Benchmark-trainonly-v1/n3/bayesnet/bayesnet-n3-20260504_210640/bayesnet_model.pkl") diff --git a/hyperparameter/n3/bayesnet/bayesnet-n3-20260504_210640/bayesnet-n3-3918-20260504_210647.csv b/hyperparameter/n3/bayesnet/bayesnet-n3-20260504_210640/bayesnet-n3-3918-20260504_210647.csv new file mode 100644 index 0000000000000000000000000000000000000000..0889d4975af1c8b70252bf83b03479dd4f382f6f --- /dev/null +++ b/hyperparameter/n3/bayesnet/bayesnet-n3-20260504_210640/bayesnet-n3-3918-20260504_210647.csv @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:b3b19f5b6e8f4bafd407bacce57bd40e7d30c90b6f3b538573a9ff7967c34c69 +size 884422 diff --git a/hyperparameter/n3/bayesnet/bayesnet-n3-20260504_210640/bayesnet_coltypes.json b/hyperparameter/n3/bayesnet/bayesnet-n3-20260504_210640/bayesnet_coltypes.json new file mode 100644 index 0000000000000000000000000000000000000000..59893d873ed1f60d3bbb17d18abfda70729fe810 --- /dev/null +++ b/hyperparameter/n3/bayesnet/bayesnet-n3-20260504_210640/bayesnet_coltypes.json @@ -0,0 +1,53 @@ +{ + "columns": [ + { + "name": "fixed acidity", + "type": "continuous" + }, + { + "name": "volatile acidity", + "type": "continuous" + }, + { + "name": "citric acid", + "type": "continuous" + }, + { + "name": "residual sugar", + "type": "continuous" + }, + { + "name": "chlorides", + "type": "continuous" + }, + { + "name": "free sulfur dioxide", + "type": "continuous" + }, + { + "name": "total sulfur dioxide", + "type": "continuous" + }, + { + "name": "density", + "type": "continuous" + }, + { + "name": "pH", + "type": "continuous" + }, + { + "name": "sulphates", + "type": "continuous" + }, + { + "name": "alcohol", + "type": "continuous" + }, + { + "name": "quality", + "type": "continuous" + } + ], + "integer_columns": [] +} \ No newline at end of file diff --git a/hyperparameter/n3/bayesnet/bayesnet-n3-20260504_210640/bayesnet_model.pkl b/hyperparameter/n3/bayesnet/bayesnet-n3-20260504_210640/bayesnet_model.pkl new file mode 100644 index 0000000000000000000000000000000000000000..bb69cd332f67532dd621f240042431c697714cf0 --- /dev/null +++ b/hyperparameter/n3/bayesnet/bayesnet-n3-20260504_210640/bayesnet_model.pkl @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:b514c2ddd92e061a24c3b90710574c1c291baecdf8cba550da95251c0bf695f0 +size 14168 diff --git a/hyperparameter/n3/bayesnet/bayesnet-n3-20260504_210640/const_cols.json b/hyperparameter/n3/bayesnet/bayesnet-n3-20260504_210640/const_cols.json new file mode 100644 index 0000000000000000000000000000000000000000..9e26dfeeb6e641a33dae4961196235bdb965b21b --- /dev/null +++ b/hyperparameter/n3/bayesnet/bayesnet-n3-20260504_210640/const_cols.json @@ -0,0 +1 @@ +{} \ No newline at end of file diff --git a/hyperparameter/n3/bayesnet/bayesnet-n3-20260504_210640/gen_20260504_210647.log b/hyperparameter/n3/bayesnet/bayesnet-n3-20260504_210640/gen_20260504_210647.log new file mode 100644 index 0000000000000000000000000000000000000000..0845cbba620861e9162c2236ef89b039e6e15e76 --- /dev/null +++ b/hyperparameter/n3/bayesnet/bayesnet-n3-20260504_210640/gen_20260504_210647.log @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:52e82fa571b0c25cec74c5ce2978d789219dae0b913935135b61206356ce1b30 +size 3661 diff --git a/hyperparameter/n3/bayesnet/bayesnet-n3-20260504_210640/input_snapshot.json b/hyperparameter/n3/bayesnet/bayesnet-n3-20260504_210640/input_snapshot.json new file mode 100644 index 0000000000000000000000000000000000000000..527cf133718a3c780f9b12547e302d03bea557f3 --- /dev/null +++ b/hyperparameter/n3/bayesnet/bayesnet-n3-20260504_210640/input_snapshot.json @@ -0,0 +1,36 @@ +{ + "dataset_id": "n3", + "model": "bayesnet", + "inputs": { + "train_csv": { + "path": "/data/jialinzhang/SynthesizePipeline-server/DatasetNew/n3/n3-train.csv", + "exists": true, + "size": 211519, + "sha256": "2160a06db2fea02adb0ebb79d8d853bd2544580be301e71f6e8deeb1489a9009" + }, + "val_csv": { + "path": "/data/jialinzhang/SynthesizePipeline-server/DatasetNew/n3/n3-val.csv", + "exists": true, + "size": 26499, + "sha256": "d5ccfee07dfa9e7bdee5bb87642b43828e09f74c6cc0266a3d19d9feaa83106e" + }, + "test_csv": { + "path": "/data/jialinzhang/SynthesizePipeline-server/DatasetNew/n3/n3-test.csv", + "exists": true, + "size": 26676, + "sha256": "6f83aacb0d1747b95e287352a7fff5d9d65a1c127b773852346c68485c4ede47" + }, + "profile_json": { + "path": "/data/jialinzhang/SynthesizePipeline-server/DatasetNew/artifacts/data_core/tabular/n3/n3-dataset_profile.json", + "exists": true, + "size": 5235, + "sha256": "23d2e5904a2ca90cbf8d6e3c75887681721e9b90cc705c31a680c11513d0c46f" + }, + "contract_json": { + "path": "/data/jialinzhang/SynthesizePipeline-server/DatasetNew/artifacts/data_core/tabular/n3/n3-dataset_contract_v1.json", + "exists": true, + "size": 6281, + "sha256": "c0cc56f5fe28e1b65927255c6e3c2b0e9479862c2ec6f2fea1664da36c9a3a09" + } + } +} \ No newline at end of file diff --git a/hyperparameter/n3/bayesnet/bayesnet-n3-20260504_210640/public_gate/normalized_schema_snapshot.json b/hyperparameter/n3/bayesnet/bayesnet-n3-20260504_210640/public_gate/normalized_schema_snapshot.json new file mode 100644 index 0000000000000000000000000000000000000000..c41fe304503de23190a02e6cbfafa35b3bf134d3 --- /dev/null +++ b/hyperparameter/n3/bayesnet/bayesnet-n3-20260504_210640/public_gate/normalized_schema_snapshot.json @@ -0,0 +1,259 @@ +{ + "dataset_id": "n3", + "target_column": "quality", + "task_type": "classification", + "columns": [ + { + "name": "fixed acidity", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 66, + "unique_ratio": 0.016845, + "example_values": [ + "7.1", + "8.5", + "6.4", + "6.8", + "7.6" + ] + } + }, + { + "name": "volatile acidity", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 121, + "unique_ratio": 0.030883, + "example_values": [ + "0.31", + "0.21", + "0.24", + "0.43", + "0.27" + ] + } + }, + { + "name": "citric acid", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 85, + "unique_ratio": 0.021695, + "example_values": [ + "0.17", + "0.41", + "0.31", + "0.25", + "0.3" + ] + } + }, + { + "name": "residual sugar", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 296, + "unique_ratio": 0.075549, + "example_values": [ + "1", + "4.3", + "2.8", + "13", + "12.9" + ] + } + }, + { + "name": "chlorides", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 147, + "unique_ratio": 0.037519, + "example_values": [ + "0.042", + "0.036", + "0.038", + "0.047", + "0.033" + ] + } + }, + { + "name": "free sulfur dioxide", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 120, + "unique_ratio": 0.030628, + "example_values": [ + "21", + "24", + "41", + "43", + "69" + ] + } + }, + { + "name": "total sulfur dioxide", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 244, + "unique_ratio": 0.062277, + "example_values": [ + "144", + "99", + "114", + "132", + "160" + ] + } + }, + { + "name": "density", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 839, + "unique_ratio": 0.21414, + "example_values": [ + "0.99304", + "0.9947", + "0.99155", + "0.98975", + "0.99705" + ] + } + }, + { + "name": "pH", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 100, + "unique_ratio": 0.025523, + "example_values": [ + "3.13", + "3.18", + "3.37", + "3.21", + "3.16" + ] + } + }, + { + "name": "sulphates", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 78, + "unique_ratio": 0.019908, + "example_values": [ + "0.4", + "0.53", + "0.66", + "0.47", + "0.5" + ] + } + }, + { + "name": "alcohol", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 97, + "unique_ratio": 0.024758, + "example_values": [ + "9.6", + "9.7", + "11.7", + "13.4", + "8.8" + ] + } + }, + { + "name": "quality", + "role": "target", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 7, + "unique_ratio": 0.001787, + "example_values": [ + "5", + "6", + "7", + "8", + "3" + ] + } + } + ] +} \ No newline at end of file diff --git a/hyperparameter/n3/bayesnet/bayesnet-n3-20260504_210640/public_gate/public_gate_report.json b/hyperparameter/n3/bayesnet/bayesnet-n3-20260504_210640/public_gate/public_gate_report.json new file mode 100644 index 0000000000000000000000000000000000000000..93b97319f739e39079d6c6549fd2020f8a6dac25 --- /dev/null +++ b/hyperparameter/n3/bayesnet/bayesnet-n3-20260504_210640/public_gate/public_gate_report.json @@ -0,0 +1,37 @@ +{ + "dataset_id": "n3", + "status": "pass", + "checks": [ + { + "check_id": "PG001_csv_parse_ok", + "status": "pass" + }, + { + "check_id": "PG002_split_header_consistent", + "status": "pass" + }, + { + "check_id": "PG003_profile_header_match", + "status": "pass" + }, + { + "check_id": "PG004_missing_token_normalized", + "status": "pass" + }, + { + "check_id": "PG005_semantic_type_validated", + "status": "pass" + }, + { + "check_id": "PG006_target_defined_and_valid", + "status": "pass" + } + ], + "target_column": "quality", + "task_type": "classification", + "input_splits": { + "train": "/data/jialinzhang/SynthesizePipeline-server/DatasetNew/n3/n3-train.csv", + "val": "/data/jialinzhang/SynthesizePipeline-server/DatasetNew/n3/n3-val.csv", + "test": "/data/jialinzhang/SynthesizePipeline-server/DatasetNew/n3/n3-test.csv" + } +} \ No newline at end of file diff --git a/hyperparameter/n3/bayesnet/bayesnet-n3-20260504_210640/public_gate/staged_input_manifest.json b/hyperparameter/n3/bayesnet/bayesnet-n3-20260504_210640/public_gate/staged_input_manifest.json new file mode 100644 index 0000000000000000000000000000000000000000..16bbc09ce345b824c6b2a0d79b1f3fc4f9c62912 --- /dev/null +++ b/hyperparameter/n3/bayesnet/bayesnet-n3-20260504_210640/public_gate/staged_input_manifest.json @@ -0,0 +1,264 @@ +{ + "dataset_id": "n3", + "target_column": "quality", + "task_type": "classification", + "train_csv": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/n3/bayesnet/bayesnet-n3-20260504_210640/staged/public/train.csv", + "val_csv": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/n3/bayesnet/bayesnet-n3-20260504_210640/staged/public/val.csv", + "test_csv": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/n3/bayesnet/bayesnet-n3-20260504_210640/staged/public/test.csv", + "features_json": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/n3/bayesnet/bayesnet-n3-20260504_210640/staged/public/staged_features.json", + "public_gate_report": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/n3/bayesnet/bayesnet-n3-20260504_210640/public_gate/public_gate_report.json", + "column_schema": [ + { + "name": "fixed acidity", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 66, + "unique_ratio": 0.016845, + "example_values": [ + "7.1", + "8.5", + "6.4", + "6.8", + "7.6" + ] + } + }, + { + "name": "volatile acidity", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 121, + "unique_ratio": 0.030883, + "example_values": [ + "0.31", + "0.21", + "0.24", + "0.43", + "0.27" + ] + } + }, + { + "name": "citric acid", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 85, + "unique_ratio": 0.021695, + "example_values": [ + "0.17", + "0.41", + "0.31", + "0.25", + "0.3" + ] + } + }, + { + "name": "residual sugar", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 296, + "unique_ratio": 0.075549, + "example_values": [ + "1", + "4.3", + "2.8", + "13", + "12.9" + ] + } + }, + { + "name": "chlorides", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 147, + "unique_ratio": 0.037519, + "example_values": [ + "0.042", + "0.036", + "0.038", + "0.047", + "0.033" + ] + } + }, + { + "name": "free sulfur dioxide", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 120, + "unique_ratio": 0.030628, + "example_values": [ + "21", + "24", + "41", + "43", + "69" + ] + } + }, + { + "name": "total sulfur dioxide", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 244, + "unique_ratio": 0.062277, + "example_values": [ + "144", + "99", + "114", + "132", + "160" + ] + } + }, + { + "name": "density", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 839, + "unique_ratio": 0.21414, + "example_values": [ + "0.99304", + "0.9947", + "0.99155", + "0.98975", + "0.99705" + ] + } + }, + { + "name": "pH", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 100, + "unique_ratio": 0.025523, + "example_values": [ + "3.13", + "3.18", + "3.37", + "3.21", + "3.16" + ] + } + }, + { + "name": "sulphates", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 78, + "unique_ratio": 0.019908, + "example_values": [ + "0.4", + "0.53", + "0.66", + "0.47", + "0.5" + ] + } + }, + { + "name": "alcohol", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 97, + "unique_ratio": 0.024758, + "example_values": [ + "9.6", + "9.7", + "11.7", + "13.4", + "8.8" + ] + } + }, + { + "name": "quality", + "role": "target", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 7, + "unique_ratio": 0.001787, + "example_values": [ + "5", + "6", + "7", + "8", + "3" + ] + } + } + ] +} \ No newline at end of file diff --git a/hyperparameter/n3/bayesnet/bayesnet-n3-20260504_210640/run_config.json b/hyperparameter/n3/bayesnet/bayesnet-n3-20260504_210640/run_config.json new file mode 100644 index 0000000000000000000000000000000000000000..9954a51d19f23da2dadcd77d6fc77ce6ee81beff --- /dev/null +++ b/hyperparameter/n3/bayesnet/bayesnet-n3-20260504_210640/run_config.json @@ -0,0 +1,47 @@ +{ + "schema_version": 1, + "recorded_at": "2026-05-04T21:06:40", + "dataset_id": "n3", + "model": "bayesnet", + "work_dir": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/n3/bayesnet/bayesnet-n3-20260504_210640", + "dataset_source_requested": "new", + "dataset_source_resolved": "new", + "cli_args": { + "model": "bayesnet", + "dataset": "n3", + "dataset_source": "new", + "train": true, + "generate": true, + "num_rows": 0, + "epochs": null, + "output_dir": null, + "model_dir": null, + "work_dir": null, + "resume": false, + "no_stats": false + }, + "resolved": { + "num_rows": 3918, + "model_path": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/n3/bayesnet/bayesnet-n3-20260504_210640/bayesnet_model.pkl", + "output_csv": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/n3/bayesnet/bayesnet-n3-20260504_210640/bayesnet-n3-3918-20260504_210647.csv" + }, + "input_artifacts": { + "public_gate_report": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/n3/bayesnet/bayesnet-n3-20260504_210640/public_gate/public_gate_report.json", + "public_manifest": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/n3/bayesnet/bayesnet-n3-20260504_210640/public_gate/staged_input_manifest.json", + "model_manifest": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/n3/bayesnet/bayesnet-n3-20260504_210640/staged/bayesnet/model_input_manifest.json", + "train_csv": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/n3/bayesnet/bayesnet-n3-20260504_210640/staged/public/train.csv", + "features_json": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/n3/bayesnet/bayesnet-n3-20260504_210640/staged/public/staged_features.json", + "target_column": "quality", + "task_type": "classification" + }, + "env_overrides": { + "BAYESNET_DISABLE_AUTO_CAPS": "1", + "BAYESNET_EDGE_WEIGHTS_FN": "normalized_mutual_info", + "BAYESNET_ESTIMATOR_TYPE": "chow-liu", + "BAYESNET_FIT_ROWS": "120000", + "BAYESNET_MAX_BINS": "8", + "BAYESNET_MAX_CAT_LEVELS": "64", + "BAYESNET_N_JOBS": "1", + "BAYESNET_STRUCT_ROWS": "25000" + } +} \ No newline at end of file diff --git a/hyperparameter/n3/bayesnet/bayesnet-n3-20260504_210640/runtime_result.json b/hyperparameter/n3/bayesnet/bayesnet-n3-20260504_210640/runtime_result.json new file mode 100644 index 0000000000000000000000000000000000000000..3e8b971dedfe638043bee77d4f714d73ecbcaa83 --- /dev/null +++ b/hyperparameter/n3/bayesnet/bayesnet-n3-20260504_210640/runtime_result.json @@ -0,0 +1,27 @@ +{ + "dataset_id": "n3", + "model": "bayesnet", + "run_id": "bayesnet-n3-20260504_210640", + "public_gate_status": "pass", + "adapter_ready_status": "pass", + "train_status": "success", + "generate_status": "success", + "reason_code": null, + "reason_detail": null, + "artifacts": { + "synthetic_csv": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/n3/bayesnet/bayesnet-n3-20260504_210640/bayesnet-n3-3918-20260504_210647.csv", + "model_path": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/n3/bayesnet/bayesnet-n3-20260504_210640/bayesnet_model.pkl" + }, + "timings": { + "train": { + "started_at": "2026-05-04T21:06:40", + "ended_at": "2026-05-04T21:06:47", + "duration_sec": 7.562 + }, + "generate": { + "started_at": "2026-05-04T21:06:47", + "ended_at": "2026-05-04T21:06:55", + "duration_sec": 7.817 + } + } +} \ No newline at end of file diff --git a/hyperparameter/n3/bayesnet/bayesnet-n3-20260504_210640/staged/bayesnet/adapter_report.json b/hyperparameter/n3/bayesnet/bayesnet-n3-20260504_210640/staged/bayesnet/adapter_report.json new file mode 100644 index 0000000000000000000000000000000000000000..c863c4294fcca0705ce648cc5464bd2203256818 --- /dev/null +++ b/hyperparameter/n3/bayesnet/bayesnet-n3-20260504_210640/staged/bayesnet/adapter_report.json @@ -0,0 +1,7 @@ +{ + "adapter_ready_status": "pass", + "adapter_fail_reason_code": null, + "adapter_fail_detail": null, + "adapter_transforms_applied": [], + "model_input_manifest": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/n3/bayesnet/bayesnet-n3-20260504_210640/staged/bayesnet/model_input_manifest.json" +} \ No newline at end of file diff --git a/hyperparameter/n3/bayesnet/bayesnet-n3-20260504_210640/staged/bayesnet/adapter_transforms_applied.json b/hyperparameter/n3/bayesnet/bayesnet-n3-20260504_210640/staged/bayesnet/adapter_transforms_applied.json new file mode 100644 index 0000000000000000000000000000000000000000..0637a088a01e8ddab3bf3fa98dbe804cbde1a0dc --- /dev/null +++ b/hyperparameter/n3/bayesnet/bayesnet-n3-20260504_210640/staged/bayesnet/adapter_transforms_applied.json @@ -0,0 +1 @@ +[] \ No newline at end of file diff --git a/hyperparameter/n3/bayesnet/bayesnet-n3-20260504_210640/staged/bayesnet/model_input_manifest.json b/hyperparameter/n3/bayesnet/bayesnet-n3-20260504_210640/staged/bayesnet/model_input_manifest.json new file mode 100644 index 0000000000000000000000000000000000000000..a7e1da8d2336e292ea3ff30d445a3dc23540e975 --- /dev/null +++ b/hyperparameter/n3/bayesnet/bayesnet-n3-20260504_210640/staged/bayesnet/model_input_manifest.json @@ -0,0 +1,266 @@ +{ + "dataset_id": "n3", + "model": "bayesnet", + "target_column": "quality", + "task_type": "classification", + "column_schema": [ + { + "name": "fixed acidity", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 66, + "unique_ratio": 0.016845, + "example_values": [ + "7.1", + "8.5", + "6.4", + "6.8", + "7.6" + ] + } + }, + { + "name": "volatile acidity", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 121, + "unique_ratio": 0.030883, + "example_values": [ + "0.31", + "0.21", + "0.24", + "0.43", + "0.27" + ] + } + }, + { + "name": "citric acid", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 85, + "unique_ratio": 0.021695, + "example_values": [ + "0.17", + "0.41", + "0.31", + "0.25", + "0.3" + ] + } + }, + { + "name": "residual sugar", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 296, + "unique_ratio": 0.075549, + "example_values": [ + "1", + "4.3", + "2.8", + "13", + "12.9" + ] + } + }, + { + "name": "chlorides", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 147, + "unique_ratio": 0.037519, + "example_values": [ + "0.042", + "0.036", + "0.038", + "0.047", + "0.033" + ] + } + }, + { + "name": "free sulfur dioxide", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 120, + "unique_ratio": 0.030628, + "example_values": [ + "21", + "24", + "41", + "43", + "69" + ] + } + }, + { + "name": "total sulfur dioxide", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 244, + "unique_ratio": 0.062277, + "example_values": [ + "144", + "99", + "114", + "132", + "160" + ] + } + }, + { + "name": "density", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 839, + "unique_ratio": 0.21414, + "example_values": [ + "0.99304", + "0.9947", + "0.99155", + "0.98975", + "0.99705" + ] + } + }, + { + "name": "pH", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 100, + "unique_ratio": 0.025523, + "example_values": [ + "3.13", + "3.18", + "3.37", + "3.21", + "3.16" + ] + } + }, + { + "name": "sulphates", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 78, + "unique_ratio": 0.019908, + "example_values": [ + "0.4", + "0.53", + "0.66", + "0.47", + "0.5" + ] + } + }, + { + "name": "alcohol", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 97, + "unique_ratio": 0.024758, + "example_values": [ + "9.6", + "9.7", + "11.7", + "13.4", + "8.8" + ] + } + }, + { + "name": "quality", + "role": "target", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 7, + "unique_ratio": 0.001787, + "example_values": [ + "5", + "6", + "7", + "8", + "3" + ] + } + } + ], + "public_manifest": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/n3/bayesnet/bayesnet-n3-20260504_210640/public_gate/staged_input_manifest.json", + "train_csv": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/n3/bayesnet/bayesnet-n3-20260504_210640/staged/public/train.csv", + "val_csv": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/n3/bayesnet/bayesnet-n3-20260504_210640/staged/public/val.csv", + "test_csv": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/n3/bayesnet/bayesnet-n3-20260504_210640/staged/public/test.csv", + "features_json": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/n3/bayesnet/bayesnet-n3-20260504_210640/staged/public/staged_features.json", + "public_gate_report": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/n3/bayesnet/bayesnet-n3-20260504_210640/public_gate/public_gate_report.json" +} \ No newline at end of file diff --git a/hyperparameter/n3/bayesnet/bayesnet-n3-20260504_210640/staged/public/staged_features.json b/hyperparameter/n3/bayesnet/bayesnet-n3-20260504_210640/staged/public/staged_features.json new file mode 100644 index 0000000000000000000000000000000000000000..08fe4d766d091d2f2ddba724a16b9509cbe4c390 --- /dev/null +++ b/hyperparameter/n3/bayesnet/bayesnet-n3-20260504_210640/staged/public/staged_features.json @@ -0,0 +1,62 @@ +[ + { + "feature_name": "fixed acidity", + "data_type": "continuous", + "is_target": false + }, + { + "feature_name": "volatile acidity", + "data_type": "continuous", + "is_target": false + }, + { + "feature_name": "citric acid", + "data_type": "continuous", + "is_target": false + }, + { + "feature_name": "residual sugar", + "data_type": "continuous", + "is_target": false + }, + { + "feature_name": "chlorides", + "data_type": "continuous", + "is_target": false + }, + { + "feature_name": "free sulfur dioxide", + "data_type": "continuous", + "is_target": false + }, + { + "feature_name": "total sulfur dioxide", + "data_type": "continuous", + "is_target": false + }, + { + "feature_name": "density", + "data_type": "continuous", + "is_target": false + }, + { + "feature_name": "pH", + "data_type": "continuous", + "is_target": false + }, + { + "feature_name": "sulphates", + "data_type": "continuous", + "is_target": false + }, + { + "feature_name": "alcohol", + "data_type": "continuous", + "is_target": false + }, + { + "feature_name": "quality", + "data_type": "continuous", + "is_target": true + } +] \ No newline at end of file diff --git a/hyperparameter/n3/bayesnet/bayesnet-n3-20260504_210640/staged/public/test.csv b/hyperparameter/n3/bayesnet/bayesnet-n3-20260504_210640/staged/public/test.csv new file mode 100644 index 0000000000000000000000000000000000000000..db5cd50d3746410ea470625fa2ba2c8e9775cc0d --- /dev/null +++ b/hyperparameter/n3/bayesnet/bayesnet-n3-20260504_210640/staged/public/test.csv @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:19e107152a94432e2a37ff045c00cfe35e1be30208b1553080d7dd0ede256d3b +size 28944 diff --git a/hyperparameter/n3/bayesnet/bayesnet-n3-20260504_210640/staged/public/train.csv b/hyperparameter/n3/bayesnet/bayesnet-n3-20260504_210640/staged/public/train.csv new file mode 100644 index 0000000000000000000000000000000000000000..87ca26726fe82ccbaa397919305b043c17eb374e --- /dev/null +++ b/hyperparameter/n3/bayesnet/bayesnet-n3-20260504_210640/staged/public/train.csv @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:7813c8cca73ba4bfc6559215257b341c21e459980ad17ae6ddc809306bc9a0b9 +size 229945 diff --git a/hyperparameter/n3/bayesnet/bayesnet-n3-20260504_210640/staged/public/val.csv b/hyperparameter/n3/bayesnet/bayesnet-n3-20260504_210640/staged/public/val.csv new file mode 100644 index 0000000000000000000000000000000000000000..6acf84c76c47093b513c46d5503972a2dff275c0 --- /dev/null +++ b/hyperparameter/n3/bayesnet/bayesnet-n3-20260504_210640/staged/public/val.csv @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:cf5979d9675567d9d6642640c9b84fc6c49e492604144723c30f50516c05cee6 +size 28791 diff --git a/hyperparameter/n3/bayesnet/bayesnet-n3-20260504_210640/train_20260504_210640.log b/hyperparameter/n3/bayesnet/bayesnet-n3-20260504_210640/train_20260504_210640.log new file mode 100644 index 0000000000000000000000000000000000000000..f3def258cadff93cd3e925a5082c34505c07f8bb --- /dev/null +++ b/hyperparameter/n3/bayesnet/bayesnet-n3-20260504_210640/train_20260504_210640.log @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:f945589b988983162ac6d849d12f0c094606a35199b4728170d06ead747c9538 +size 3865 diff --git a/hyperparameter/n3/ctgan/ctgan-n3-20260504_163226/_ctgan_generate.py b/hyperparameter/n3/ctgan/ctgan-n3-20260504_163226/_ctgan_generate.py new file mode 100644 index 0000000000000000000000000000000000000000..b820b344bc742aa80cfe43715de01bbef1be7c65 --- /dev/null +++ b/hyperparameter/n3/ctgan/ctgan-n3-20260504_163226/_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-Benchmark-trainonly-v1/n3/ctgan/ctgan-n3-20260504_163226/models_50epochs/ctgan_50epochs.pt") +total = 3918 +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-Benchmark-trainonly-v1/n3/ctgan/ctgan-n3-20260504_163226/ctgan-n3-3918-20260504_163441.csv", index=False) +print("[CTGAN] Generated", total, "rows in", len(parts), "chunks ->", "/work/output-Benchmark-trainonly-v1/n3/ctgan/ctgan-n3-20260504_163226/ctgan-n3-3918-20260504_163441.csv") \ No newline at end of file diff --git a/hyperparameter/n3/ctgan/ctgan-n3-20260504_163226/_ctgan_train.py b/hyperparameter/n3/ctgan/ctgan-n3-20260504_163226/_ctgan_train.py new file mode 100644 index 0000000000000000000000000000000000000000..7cdd5c75b05c8b9cba66e0199f95e5ab98dd3c05 --- /dev/null +++ b/hyperparameter/n3/ctgan/ctgan-n3-20260504_163226/_ctgan_train.py @@ -0,0 +1,17 @@ +import pandas as pd +from ctgan.synthesizers.ctgan import CTGAN + +data = pd.read_csv("/work/output-Benchmark-trainonly-v1/n3/ctgan/ctgan-n3-20260504_163226/staged/public/train.csv") +discrete_columns = [] +model = CTGAN( + embedding_dim=8, + generator_dim=(16, 16), + discriminator_dim=(16, 16), + batch_size=32, + pac=1, + epochs=50, + verbose=True, +) +model.fit(data, discrete_columns) +model.save("/work/output-Benchmark-trainonly-v1/n3/ctgan/ctgan-n3-20260504_163226/models_50epochs/ctgan_50epochs.pt") +print("[CTGAN] Saved model ->", "/work/output-Benchmark-trainonly-v1/n3/ctgan/ctgan-n3-20260504_163226/models_50epochs/ctgan_50epochs.pt") \ No newline at end of file diff --git a/hyperparameter/n3/ctgan/ctgan-n3-20260504_163226/ctgan-n3-3918-20260504_163441.csv b/hyperparameter/n3/ctgan/ctgan-n3-20260504_163226/ctgan-n3-3918-20260504_163441.csv new file mode 100644 index 0000000000000000000000000000000000000000..a1d9e9c1d0add5c9ffff28dabcef3a7f5aa6950e --- /dev/null +++ b/hyperparameter/n3/ctgan/ctgan-n3-20260504_163226/ctgan-n3-3918-20260504_163441.csv @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:8f14ad83416025a5455f69cec6d63e5314c344048ab5372353ae3ca5d75ce34a +size 820708 diff --git a/hyperparameter/n3/ctgan/ctgan-n3-20260504_163226/ctgan_metadata.json b/hyperparameter/n3/ctgan/ctgan-n3-20260504_163226/ctgan_metadata.json new file mode 100644 index 0000000000000000000000000000000000000000..40d513aa1aca4c6f5c1be8afc3d6a1a0c75aa74f --- /dev/null +++ b/hyperparameter/n3/ctgan/ctgan-n3-20260504_163226/ctgan_metadata.json @@ -0,0 +1,52 @@ +{ + "columns": [ + { + "name": "fixed acidity", + "type": "continuous" + }, + { + "name": "volatile acidity", + "type": "continuous" + }, + { + "name": "citric acid", + "type": "continuous" + }, + { + "name": "residual sugar", + "type": "continuous" + }, + { + "name": "chlorides", + "type": "continuous" + }, + { + "name": "free sulfur dioxide", + "type": "continuous" + }, + { + "name": "total sulfur dioxide", + "type": "continuous" + }, + { + "name": "density", + "type": "continuous" + }, + { + "name": "pH", + "type": "continuous" + }, + { + "name": "sulphates", + "type": "continuous" + }, + { + "name": "alcohol", + "type": "continuous" + }, + { + "name": "quality", + "type": "continuous" + } + ] +} \ No newline at end of file diff --git a/hyperparameter/n3/ctgan/ctgan-n3-20260504_163226/gen_20260504_163441.log b/hyperparameter/n3/ctgan/ctgan-n3-20260504_163226/gen_20260504_163441.log new file mode 100644 index 0000000000000000000000000000000000000000..8eaf0a5f880a368aac68190507b2428610e0d853 --- /dev/null +++ b/hyperparameter/n3/ctgan/ctgan-n3-20260504_163226/gen_20260504_163441.log @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:dd91dc885739943a172da5fe8f7b656b43c8c09a7a306e321dd06d8bd4651ba3 +size 297 diff --git a/hyperparameter/n3/ctgan/ctgan-n3-20260504_163226/input_snapshot.json b/hyperparameter/n3/ctgan/ctgan-n3-20260504_163226/input_snapshot.json new file mode 100644 index 0000000000000000000000000000000000000000..15f60f257edd5bcdb6b9e07be8cb5182076affc1 --- /dev/null +++ b/hyperparameter/n3/ctgan/ctgan-n3-20260504_163226/input_snapshot.json @@ -0,0 +1,36 @@ +{ + "dataset_id": "n3", + "model": "ctgan", + "inputs": { + "train_csv": { + "path": "/data/jialinzhang/SynthesizePipeline-server/DatasetNew/n3/n3-train.csv", + "exists": true, + "size": 211519, + "sha256": "2160a06db2fea02adb0ebb79d8d853bd2544580be301e71f6e8deeb1489a9009" + }, + "val_csv": { + "path": "/data/jialinzhang/SynthesizePipeline-server/DatasetNew/n3/n3-val.csv", + "exists": true, + "size": 26499, + "sha256": "d5ccfee07dfa9e7bdee5bb87642b43828e09f74c6cc0266a3d19d9feaa83106e" + }, + "test_csv": { + "path": "/data/jialinzhang/SynthesizePipeline-server/DatasetNew/n3/n3-test.csv", + "exists": true, + "size": 26676, + "sha256": "6f83aacb0d1747b95e287352a7fff5d9d65a1c127b773852346c68485c4ede47" + }, + "profile_json": { + "path": "/data/jialinzhang/SynthesizePipeline-server/DatasetNew/artifacts/data_core/tabular/n3/n3-dataset_profile.json", + "exists": true, + "size": 5235, + "sha256": "23d2e5904a2ca90cbf8d6e3c75887681721e9b90cc705c31a680c11513d0c46f" + }, + "contract_json": { + "path": "/data/jialinzhang/SynthesizePipeline-server/DatasetNew/artifacts/data_core/tabular/n3/n3-dataset_contract_v1.json", + "exists": true, + "size": 6281, + "sha256": "c0cc56f5fe28e1b65927255c6e3c2b0e9479862c2ec6f2fea1664da36c9a3a09" + } + } +} \ No newline at end of file diff --git a/hyperparameter/n3/ctgan/ctgan-n3-20260504_163226/models_50epochs/ctgan_50epochs.pt b/hyperparameter/n3/ctgan/ctgan-n3-20260504_163226/models_50epochs/ctgan_50epochs.pt new file mode 100644 index 0000000000000000000000000000000000000000..bbb0cbaacbc817307e5522ddef85dc880bb14d45 --- /dev/null +++ b/hyperparameter/n3/ctgan/ctgan-n3-20260504_163226/models_50epochs/ctgan_50epochs.pt @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:703f7cca3605fab52fcc211a0b02112be0cb8cfd9b8aba51e833ec78623354a5 +size 415565 diff --git a/hyperparameter/n3/ctgan/ctgan-n3-20260504_163226/models_50epochs/train_20260504_163226.log b/hyperparameter/n3/ctgan/ctgan-n3-20260504_163226/models_50epochs/train_20260504_163226.log new file mode 100644 index 0000000000000000000000000000000000000000..21ef5600efcd897a98cbddebf0107f67b35ffa0b --- /dev/null +++ b/hyperparameter/n3/ctgan/ctgan-n3-20260504_163226/models_50epochs/train_20260504_163226.log @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:d7dc02e5f0a183615d8d29de65352b320938677bbc9695ddca5d5550c2338189 +size 11793 diff --git a/hyperparameter/n3/ctgan/ctgan-n3-20260504_163226/public_gate/normalized_schema_snapshot.json b/hyperparameter/n3/ctgan/ctgan-n3-20260504_163226/public_gate/normalized_schema_snapshot.json new file mode 100644 index 0000000000000000000000000000000000000000..c41fe304503de23190a02e6cbfafa35b3bf134d3 --- /dev/null +++ b/hyperparameter/n3/ctgan/ctgan-n3-20260504_163226/public_gate/normalized_schema_snapshot.json @@ -0,0 +1,259 @@ +{ + "dataset_id": "n3", + "target_column": "quality", + "task_type": "classification", + "columns": [ + { + "name": "fixed acidity", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 66, + "unique_ratio": 0.016845, + "example_values": [ + "7.1", + "8.5", + "6.4", + "6.8", + "7.6" + ] + } + }, + { + "name": "volatile acidity", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 121, + "unique_ratio": 0.030883, + "example_values": [ + "0.31", + "0.21", + "0.24", + "0.43", + "0.27" + ] + } + }, + { + "name": "citric acid", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 85, + "unique_ratio": 0.021695, + "example_values": [ + "0.17", + "0.41", + "0.31", + "0.25", + "0.3" + ] + } + }, + { + "name": "residual sugar", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 296, + "unique_ratio": 0.075549, + "example_values": [ + "1", + "4.3", + "2.8", + "13", + "12.9" + ] + } + }, + { + "name": "chlorides", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 147, + "unique_ratio": 0.037519, + "example_values": [ + "0.042", + "0.036", + "0.038", + "0.047", + "0.033" + ] + } + }, + { + "name": "free sulfur dioxide", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 120, + "unique_ratio": 0.030628, + "example_values": [ + "21", + "24", + "41", + "43", + "69" + ] + } + }, + { + "name": "total sulfur dioxide", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 244, + "unique_ratio": 0.062277, + "example_values": [ + "144", + "99", + "114", + "132", + "160" + ] + } + }, + { + "name": "density", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 839, + "unique_ratio": 0.21414, + "example_values": [ + "0.99304", + "0.9947", + "0.99155", + "0.98975", + "0.99705" + ] + } + }, + { + "name": "pH", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 100, + "unique_ratio": 0.025523, + "example_values": [ + "3.13", + "3.18", + "3.37", + "3.21", + "3.16" + ] + } + }, + { + "name": "sulphates", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 78, + "unique_ratio": 0.019908, + "example_values": [ + "0.4", + "0.53", + "0.66", + "0.47", + "0.5" + ] + } + }, + { + "name": "alcohol", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 97, + "unique_ratio": 0.024758, + "example_values": [ + "9.6", + "9.7", + "11.7", + "13.4", + "8.8" + ] + } + }, + { + "name": "quality", + "role": "target", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 7, + "unique_ratio": 0.001787, + "example_values": [ + "5", + "6", + "7", + "8", + "3" + ] + } + } + ] +} \ No newline at end of file diff --git a/hyperparameter/n3/ctgan/ctgan-n3-20260504_163226/public_gate/public_gate_report.json b/hyperparameter/n3/ctgan/ctgan-n3-20260504_163226/public_gate/public_gate_report.json new file mode 100644 index 0000000000000000000000000000000000000000..93b97319f739e39079d6c6549fd2020f8a6dac25 --- /dev/null +++ b/hyperparameter/n3/ctgan/ctgan-n3-20260504_163226/public_gate/public_gate_report.json @@ -0,0 +1,37 @@ +{ + "dataset_id": "n3", + "status": "pass", + "checks": [ + { + "check_id": "PG001_csv_parse_ok", + "status": "pass" + }, + { + "check_id": "PG002_split_header_consistent", + "status": "pass" + }, + { + "check_id": "PG003_profile_header_match", + "status": "pass" + }, + { + "check_id": "PG004_missing_token_normalized", + "status": "pass" + }, + { + "check_id": "PG005_semantic_type_validated", + "status": "pass" + }, + { + "check_id": "PG006_target_defined_and_valid", + "status": "pass" + } + ], + "target_column": "quality", + "task_type": "classification", + "input_splits": { + "train": "/data/jialinzhang/SynthesizePipeline-server/DatasetNew/n3/n3-train.csv", + "val": "/data/jialinzhang/SynthesizePipeline-server/DatasetNew/n3/n3-val.csv", + "test": "/data/jialinzhang/SynthesizePipeline-server/DatasetNew/n3/n3-test.csv" + } +} \ No newline at end of file diff --git a/hyperparameter/n3/ctgan/ctgan-n3-20260504_163226/public_gate/staged_input_manifest.json b/hyperparameter/n3/ctgan/ctgan-n3-20260504_163226/public_gate/staged_input_manifest.json new file mode 100644 index 0000000000000000000000000000000000000000..1ebd95fef90b370776ce4eba1947514c534d65a7 --- /dev/null +++ b/hyperparameter/n3/ctgan/ctgan-n3-20260504_163226/public_gate/staged_input_manifest.json @@ -0,0 +1,264 @@ +{ + "dataset_id": "n3", + "target_column": "quality", + "task_type": "classification", + "train_csv": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/n3/ctgan/ctgan-n3-20260504_163226/staged/public/train.csv", + "val_csv": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/n3/ctgan/ctgan-n3-20260504_163226/staged/public/val.csv", + "test_csv": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/n3/ctgan/ctgan-n3-20260504_163226/staged/public/test.csv", + "features_json": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/n3/ctgan/ctgan-n3-20260504_163226/staged/public/staged_features.json", + "public_gate_report": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/n3/ctgan/ctgan-n3-20260504_163226/public_gate/public_gate_report.json", + "column_schema": [ + { + "name": "fixed acidity", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 66, + "unique_ratio": 0.016845, + "example_values": [ + "7.1", + "8.5", + "6.4", + "6.8", + "7.6" + ] + } + }, + { + "name": "volatile acidity", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 121, + "unique_ratio": 0.030883, + "example_values": [ + "0.31", + "0.21", + "0.24", + "0.43", + "0.27" + ] + } + }, + { + "name": "citric acid", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 85, + "unique_ratio": 0.021695, + "example_values": [ + "0.17", + "0.41", + "0.31", + "0.25", + "0.3" + ] + } + }, + { + "name": "residual sugar", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 296, + "unique_ratio": 0.075549, + "example_values": [ + "1", + "4.3", + "2.8", + "13", + "12.9" + ] + } + }, + { + "name": "chlorides", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 147, + "unique_ratio": 0.037519, + "example_values": [ + "0.042", + "0.036", + "0.038", + "0.047", + "0.033" + ] + } + }, + { + "name": "free sulfur dioxide", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 120, + "unique_ratio": 0.030628, + "example_values": [ + "21", + "24", + "41", + "43", + "69" + ] + } + }, + { + "name": "total sulfur dioxide", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 244, + "unique_ratio": 0.062277, + "example_values": [ + "144", + "99", + "114", + "132", + "160" + ] + } + }, + { + "name": "density", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 839, + "unique_ratio": 0.21414, + "example_values": [ + "0.99304", + "0.9947", + "0.99155", + "0.98975", + "0.99705" + ] + } + }, + { + "name": "pH", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 100, + "unique_ratio": 0.025523, + "example_values": [ + "3.13", + "3.18", + "3.37", + "3.21", + "3.16" + ] + } + }, + { + "name": "sulphates", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 78, + "unique_ratio": 0.019908, + "example_values": [ + "0.4", + "0.53", + "0.66", + "0.47", + "0.5" + ] + } + }, + { + "name": "alcohol", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 97, + "unique_ratio": 0.024758, + "example_values": [ + "9.6", + "9.7", + "11.7", + "13.4", + "8.8" + ] + } + }, + { + "name": "quality", + "role": "target", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 7, + "unique_ratio": 0.001787, + "example_values": [ + "5", + "6", + "7", + "8", + "3" + ] + } + } + ] +} \ No newline at end of file diff --git a/hyperparameter/n3/ctgan/ctgan-n3-20260504_163226/run_config.json b/hyperparameter/n3/ctgan/ctgan-n3-20260504_163226/run_config.json new file mode 100644 index 0000000000000000000000000000000000000000..76a4556977be480393c88ec28330daf7b4c2aa3e --- /dev/null +++ b/hyperparameter/n3/ctgan/ctgan-n3-20260504_163226/run_config.json @@ -0,0 +1,46 @@ +{ + "schema_version": 1, + "recorded_at": "2026-05-04T16:32:26", + "dataset_id": "n3", + "model": "ctgan", + "work_dir": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/n3/ctgan/ctgan-n3-20260504_163226", + "dataset_source_requested": "new", + "dataset_source_resolved": "new", + "cli_args": { + "model": "ctgan", + "dataset": "n3", + "dataset_source": "new", + "train": true, + "generate": true, + "num_rows": 0, + "epochs": null, + "output_dir": null, + "model_dir": null, + "work_dir": null, + "resume": false, + "no_stats": false + }, + "resolved": { + "num_rows": 3918, + "model_path": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/n3/ctgan/ctgan-n3-20260504_163226/models_50epochs/ctgan_50epochs.pt", + "output_csv": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/n3/ctgan/ctgan-n3-20260504_163226/ctgan-n3-3918-20260504_163441.csv" + }, + "input_artifacts": { + "public_gate_report": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/n3/ctgan/ctgan-n3-20260504_163226/public_gate/public_gate_report.json", + "public_manifest": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/n3/ctgan/ctgan-n3-20260504_163226/public_gate/staged_input_manifest.json", + "model_manifest": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/n3/ctgan/ctgan-n3-20260504_163226/staged/ctgan/model_input_manifest.json", + "train_csv": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/n3/ctgan/ctgan-n3-20260504_163226/staged/public/train.csv", + "features_json": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/n3/ctgan/ctgan-n3-20260504_163226/staged/public/staged_features.json", + "target_column": "quality", + "task_type": "classification" + }, + "env_overrides": { + "BENCHMARK_CTGAN_GPUS": "device=3", + "CTGAN_BATCH_SIZE": "32", + "CTGAN_DEFAULT_EPOCHS": "50", + "CTGAN_DISCRIMINATOR_DIMS": "16,16", + "CTGAN_EMBEDDING_DIM": "8", + "CTGAN_GENERATOR_DIMS": "16,16", + "CTGAN_PAC": "1" + } +} \ No newline at end of file diff --git a/hyperparameter/n3/ctgan/ctgan-n3-20260504_163226/runtime_result.json b/hyperparameter/n3/ctgan/ctgan-n3-20260504_163226/runtime_result.json new file mode 100644 index 0000000000000000000000000000000000000000..a5f1ed426bceed10bef8a1102a395b130447821a --- /dev/null +++ b/hyperparameter/n3/ctgan/ctgan-n3-20260504_163226/runtime_result.json @@ -0,0 +1,27 @@ +{ + "dataset_id": "n3", + "model": "ctgan", + "run_id": "ctgan-n3-20260504_163226", + "public_gate_status": "pass", + "adapter_ready_status": "pass", + "train_status": "success", + "generate_status": "success", + "reason_code": null, + "reason_detail": null, + "artifacts": { + "synthetic_csv": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/n3/ctgan/ctgan-n3-20260504_163226/ctgan-n3-3918-20260504_163441.csv", + "model_path": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/n3/ctgan/ctgan-n3-20260504_163226/models_50epochs/ctgan_50epochs.pt" + }, + "timings": { + "train": { + "started_at": "2026-05-04T16:32:26", + "ended_at": "2026-05-04T16:34:41", + "duration_sec": 135.487 + }, + "generate": { + "started_at": "2026-05-04T16:34:41", + "ended_at": "2026-05-04T16:34:47", + "duration_sec": 6.223 + } + } +} \ No newline at end of file diff --git a/hyperparameter/n3/ctgan/ctgan-n3-20260504_163226/staged/ctgan/adapter_report.json b/hyperparameter/n3/ctgan/ctgan-n3-20260504_163226/staged/ctgan/adapter_report.json new file mode 100644 index 0000000000000000000000000000000000000000..b845ea8fcaed64e4f497bc11c0db287851854140 --- /dev/null +++ b/hyperparameter/n3/ctgan/ctgan-n3-20260504_163226/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-Benchmark-trainonly-v1/n3/ctgan/ctgan-n3-20260504_163226/staged/ctgan/model_input_manifest.json" +} \ No newline at end of file diff --git a/hyperparameter/n3/ctgan/ctgan-n3-20260504_163226/staged/ctgan/adapter_transforms_applied.json b/hyperparameter/n3/ctgan/ctgan-n3-20260504_163226/staged/ctgan/adapter_transforms_applied.json new file mode 100644 index 0000000000000000000000000000000000000000..0637a088a01e8ddab3bf3fa98dbe804cbde1a0dc --- /dev/null +++ b/hyperparameter/n3/ctgan/ctgan-n3-20260504_163226/staged/ctgan/adapter_transforms_applied.json @@ -0,0 +1 @@ +[] \ No newline at end of file diff --git a/hyperparameter/n3/ctgan/ctgan-n3-20260504_163226/staged/ctgan/model_input_manifest.json b/hyperparameter/n3/ctgan/ctgan-n3-20260504_163226/staged/ctgan/model_input_manifest.json new file mode 100644 index 0000000000000000000000000000000000000000..ca902293d09878b34dd3f8b7c8a7cc107e2ce39d --- /dev/null +++ b/hyperparameter/n3/ctgan/ctgan-n3-20260504_163226/staged/ctgan/model_input_manifest.json @@ -0,0 +1,266 @@ +{ + "dataset_id": "n3", + "model": "ctgan", + "target_column": "quality", + "task_type": "classification", + "column_schema": [ + { + "name": "fixed acidity", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 66, + "unique_ratio": 0.016845, + "example_values": [ + "7.1", + "8.5", + "6.4", + "6.8", + "7.6" + ] + } + }, + { + "name": "volatile acidity", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 121, + "unique_ratio": 0.030883, + "example_values": [ + "0.31", + "0.21", + "0.24", + "0.43", + "0.27" + ] + } + }, + { + "name": "citric acid", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 85, + "unique_ratio": 0.021695, + "example_values": [ + "0.17", + "0.41", + "0.31", + "0.25", + "0.3" + ] + } + }, + { + "name": "residual sugar", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 296, + "unique_ratio": 0.075549, + "example_values": [ + "1", + "4.3", + "2.8", + "13", + "12.9" + ] + } + }, + { + "name": "chlorides", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 147, + "unique_ratio": 0.037519, + "example_values": [ + "0.042", + "0.036", + "0.038", + "0.047", + "0.033" + ] + } + }, + { + "name": "free sulfur dioxide", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 120, + "unique_ratio": 0.030628, + "example_values": [ + "21", + "24", + "41", + "43", + "69" + ] + } + }, + { + "name": "total sulfur dioxide", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 244, + "unique_ratio": 0.062277, + "example_values": [ + "144", + "99", + "114", + "132", + "160" + ] + } + }, + { + "name": "density", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 839, + "unique_ratio": 0.21414, + "example_values": [ + "0.99304", + "0.9947", + "0.99155", + "0.98975", + "0.99705" + ] + } + }, + { + "name": "pH", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 100, + "unique_ratio": 0.025523, + "example_values": [ + "3.13", + "3.18", + "3.37", + "3.21", + "3.16" + ] + } + }, + { + "name": "sulphates", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 78, + "unique_ratio": 0.019908, + "example_values": [ + "0.4", + "0.53", + "0.66", + "0.47", + "0.5" + ] + } + }, + { + "name": "alcohol", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 97, + "unique_ratio": 0.024758, + "example_values": [ + "9.6", + "9.7", + "11.7", + "13.4", + "8.8" + ] + } + }, + { + "name": "quality", + "role": "target", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 7, + "unique_ratio": 0.001787, + "example_values": [ + "5", + "6", + "7", + "8", + "3" + ] + } + } + ], + "public_manifest": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/n3/ctgan/ctgan-n3-20260504_163226/public_gate/staged_input_manifest.json", + "train_csv": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/n3/ctgan/ctgan-n3-20260504_163226/staged/public/train.csv", + "val_csv": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/n3/ctgan/ctgan-n3-20260504_163226/staged/public/val.csv", + "test_csv": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/n3/ctgan/ctgan-n3-20260504_163226/staged/public/test.csv", + "features_json": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/n3/ctgan/ctgan-n3-20260504_163226/staged/public/staged_features.json", + "public_gate_report": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/n3/ctgan/ctgan-n3-20260504_163226/public_gate/public_gate_report.json" +} \ No newline at end of file diff --git a/hyperparameter/n3/ctgan/ctgan-n3-20260504_163226/staged/public/staged_features.json b/hyperparameter/n3/ctgan/ctgan-n3-20260504_163226/staged/public/staged_features.json new file mode 100644 index 0000000000000000000000000000000000000000..08fe4d766d091d2f2ddba724a16b9509cbe4c390 --- /dev/null +++ b/hyperparameter/n3/ctgan/ctgan-n3-20260504_163226/staged/public/staged_features.json @@ -0,0 +1,62 @@ +[ + { + "feature_name": "fixed acidity", + "data_type": "continuous", + "is_target": false + }, + { + "feature_name": "volatile acidity", + "data_type": "continuous", + "is_target": false + }, + { + "feature_name": "citric acid", + "data_type": "continuous", + "is_target": false + }, + { + "feature_name": "residual sugar", + "data_type": "continuous", + "is_target": false + }, + { + "feature_name": "chlorides", + "data_type": "continuous", + "is_target": false + }, + { + "feature_name": "free sulfur dioxide", + "data_type": "continuous", + "is_target": false + }, + { + "feature_name": "total sulfur dioxide", + "data_type": "continuous", + "is_target": false + }, + { + "feature_name": "density", + "data_type": "continuous", + "is_target": false + }, + { + "feature_name": "pH", + "data_type": "continuous", + "is_target": false + }, + { + "feature_name": "sulphates", + "data_type": "continuous", + "is_target": false + }, + { + "feature_name": "alcohol", + "data_type": "continuous", + "is_target": false + }, + { + "feature_name": "quality", + "data_type": "continuous", + "is_target": true + } +] \ No newline at end of file diff --git a/hyperparameter/n3/ctgan/ctgan-n3-20260504_163226/staged/public/test.csv b/hyperparameter/n3/ctgan/ctgan-n3-20260504_163226/staged/public/test.csv new file mode 100644 index 0000000000000000000000000000000000000000..db5cd50d3746410ea470625fa2ba2c8e9775cc0d --- /dev/null +++ b/hyperparameter/n3/ctgan/ctgan-n3-20260504_163226/staged/public/test.csv @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:19e107152a94432e2a37ff045c00cfe35e1be30208b1553080d7dd0ede256d3b +size 28944 diff --git a/hyperparameter/n3/ctgan/ctgan-n3-20260504_163226/staged/public/train.csv b/hyperparameter/n3/ctgan/ctgan-n3-20260504_163226/staged/public/train.csv new file mode 100644 index 0000000000000000000000000000000000000000..87ca26726fe82ccbaa397919305b043c17eb374e --- /dev/null +++ b/hyperparameter/n3/ctgan/ctgan-n3-20260504_163226/staged/public/train.csv @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:7813c8cca73ba4bfc6559215257b341c21e459980ad17ae6ddc809306bc9a0b9 +size 229945 diff --git a/hyperparameter/n3/ctgan/ctgan-n3-20260504_163226/staged/public/val.csv b/hyperparameter/n3/ctgan/ctgan-n3-20260504_163226/staged/public/val.csv new file mode 100644 index 0000000000000000000000000000000000000000..6acf84c76c47093b513c46d5503972a2dff275c0 --- /dev/null +++ b/hyperparameter/n3/ctgan/ctgan-n3-20260504_163226/staged/public/val.csv @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:cf5979d9675567d9d6642640c9b84fc6c49e492604144723c30f50516c05cee6 +size 28791 diff --git a/hyperparameter/n3/ctgan/ctgan-n3-20260504_163500/_ctgan_generate.py b/hyperparameter/n3/ctgan/ctgan-n3-20260504_163500/_ctgan_generate.py new file mode 100644 index 0000000000000000000000000000000000000000..22ab4eff2cf36a3dbade7c9717bd82f27574e27a --- /dev/null +++ b/hyperparameter/n3/ctgan/ctgan-n3-20260504_163500/_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-Benchmark-trainonly-v1/n3/ctgan/ctgan-n3-20260504_163500/models_100epochs/ctgan_100epochs.pt") +total = 3918 +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-Benchmark-trainonly-v1/n3/ctgan/ctgan-n3-20260504_163500/ctgan-n3-3918-20260504_163716.csv", index=False) +print("[CTGAN] Generated", total, "rows in", len(parts), "chunks ->", "/work/output-Benchmark-trainonly-v1/n3/ctgan/ctgan-n3-20260504_163500/ctgan-n3-3918-20260504_163716.csv") \ No newline at end of file diff --git a/hyperparameter/n3/ctgan/ctgan-n3-20260504_163500/_ctgan_train.py b/hyperparameter/n3/ctgan/ctgan-n3-20260504_163500/_ctgan_train.py new file mode 100644 index 0000000000000000000000000000000000000000..efefe23c3f4c3b677bdbdd9cd49c5023cb93ec59 --- /dev/null +++ b/hyperparameter/n3/ctgan/ctgan-n3-20260504_163500/_ctgan_train.py @@ -0,0 +1,17 @@ +import pandas as pd +from ctgan.synthesizers.ctgan import CTGAN + +data = pd.read_csv("/work/output-Benchmark-trainonly-v1/n3/ctgan/ctgan-n3-20260504_163500/staged/public/train.csv") +discrete_columns = [] +model = CTGAN( + embedding_dim=16, + generator_dim=(32, 32), + discriminator_dim=(32, 32), + batch_size=64, + pac=1, + epochs=100, + verbose=True, +) +model.fit(data, discrete_columns) +model.save("/work/output-Benchmark-trainonly-v1/n3/ctgan/ctgan-n3-20260504_163500/models_100epochs/ctgan_100epochs.pt") +print("[CTGAN] Saved model ->", "/work/output-Benchmark-trainonly-v1/n3/ctgan/ctgan-n3-20260504_163500/models_100epochs/ctgan_100epochs.pt") \ No newline at end of file diff --git a/hyperparameter/n3/ctgan/ctgan-n3-20260504_163500/ctgan-n3-3918-20260504_163716.csv b/hyperparameter/n3/ctgan/ctgan-n3-20260504_163500/ctgan-n3-3918-20260504_163716.csv new file mode 100644 index 0000000000000000000000000000000000000000..6ace7e6d64bae7d23ac937fe14b1aeba2bb87411 --- /dev/null +++ b/hyperparameter/n3/ctgan/ctgan-n3-20260504_163500/ctgan-n3-3918-20260504_163716.csv @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:0af5beb641d31c47be95b72dcde43e1f2257348f4bbe820bc445b54a1373322b +size 820193 diff --git a/hyperparameter/n3/ctgan/ctgan-n3-20260504_163500/ctgan_metadata.json b/hyperparameter/n3/ctgan/ctgan-n3-20260504_163500/ctgan_metadata.json new file mode 100644 index 0000000000000000000000000000000000000000..40d513aa1aca4c6f5c1be8afc3d6a1a0c75aa74f --- /dev/null +++ b/hyperparameter/n3/ctgan/ctgan-n3-20260504_163500/ctgan_metadata.json @@ -0,0 +1,52 @@ +{ + "columns": [ + { + "name": "fixed acidity", + "type": "continuous" + }, + { + "name": "volatile acidity", + "type": "continuous" + }, + { + "name": "citric acid", + "type": "continuous" + }, + { + "name": "residual sugar", + "type": "continuous" + }, + { + "name": "chlorides", + "type": "continuous" + }, + { + "name": "free sulfur dioxide", + "type": "continuous" + }, + { + "name": "total sulfur dioxide", + "type": "continuous" + }, + { + "name": "density", + "type": "continuous" + }, + { + "name": "pH", + "type": "continuous" + }, + { + "name": "sulphates", + "type": "continuous" + }, + { + "name": "alcohol", + "type": "continuous" + }, + { + "name": "quality", + "type": "continuous" + } + ] +} \ No newline at end of file diff --git a/hyperparameter/n3/ctgan/ctgan-n3-20260504_163500/gen_20260504_163716.log b/hyperparameter/n3/ctgan/ctgan-n3-20260504_163500/gen_20260504_163716.log new file mode 100644 index 0000000000000000000000000000000000000000..69a4ef97164584d5346f7a0c46bc6e87b87e9510 --- /dev/null +++ b/hyperparameter/n3/ctgan/ctgan-n3-20260504_163500/gen_20260504_163716.log @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:53729f3a0759d7538eadf40ce5d6b43a2f86e67ee8d865c88495bf00edbf30da +size 297 diff --git a/hyperparameter/n3/ctgan/ctgan-n3-20260504_163500/input_snapshot.json b/hyperparameter/n3/ctgan/ctgan-n3-20260504_163500/input_snapshot.json new file mode 100644 index 0000000000000000000000000000000000000000..15f60f257edd5bcdb6b9e07be8cb5182076affc1 --- /dev/null +++ b/hyperparameter/n3/ctgan/ctgan-n3-20260504_163500/input_snapshot.json @@ -0,0 +1,36 @@ +{ + "dataset_id": "n3", + "model": "ctgan", + "inputs": { + "train_csv": { + "path": "/data/jialinzhang/SynthesizePipeline-server/DatasetNew/n3/n3-train.csv", + "exists": true, + "size": 211519, + "sha256": "2160a06db2fea02adb0ebb79d8d853bd2544580be301e71f6e8deeb1489a9009" + }, + "val_csv": { + "path": "/data/jialinzhang/SynthesizePipeline-server/DatasetNew/n3/n3-val.csv", + "exists": true, + "size": 26499, + "sha256": "d5ccfee07dfa9e7bdee5bb87642b43828e09f74c6cc0266a3d19d9feaa83106e" + }, + "test_csv": { + "path": "/data/jialinzhang/SynthesizePipeline-server/DatasetNew/n3/n3-test.csv", + "exists": true, + "size": 26676, + "sha256": "6f83aacb0d1747b95e287352a7fff5d9d65a1c127b773852346c68485c4ede47" + }, + "profile_json": { + "path": "/data/jialinzhang/SynthesizePipeline-server/DatasetNew/artifacts/data_core/tabular/n3/n3-dataset_profile.json", + "exists": true, + "size": 5235, + "sha256": "23d2e5904a2ca90cbf8d6e3c75887681721e9b90cc705c31a680c11513d0c46f" + }, + "contract_json": { + "path": "/data/jialinzhang/SynthesizePipeline-server/DatasetNew/artifacts/data_core/tabular/n3/n3-dataset_contract_v1.json", + "exists": true, + "size": 6281, + "sha256": "c0cc56f5fe28e1b65927255c6e3c2b0e9479862c2ec6f2fea1664da36c9a3a09" + } + } +} \ No newline at end of file diff --git a/hyperparameter/n3/ctgan/ctgan-n3-20260504_163500/models_100epochs/ctgan_100epochs.pt b/hyperparameter/n3/ctgan/ctgan-n3-20260504_163500/models_100epochs/ctgan_100epochs.pt new file mode 100644 index 0000000000000000000000000000000000000000..8cae7c9f9e86d4a13fd9cf686d254b7c1325432b --- /dev/null +++ b/hyperparameter/n3/ctgan/ctgan-n3-20260504_163500/models_100epochs/ctgan_100epochs.pt @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:f6b319defdbca7ac68458f1b02a5079de9a66fb276c7e650dc5edc6341fac652 +size 441827 diff --git a/hyperparameter/n3/ctgan/ctgan-n3-20260504_163500/models_100epochs/train_20260504_163500.log b/hyperparameter/n3/ctgan/ctgan-n3-20260504_163500/models_100epochs/train_20260504_163500.log new file mode 100644 index 0000000000000000000000000000000000000000..b03100c01d1ea48000143060eedbf87f411ddfa9 --- /dev/null +++ b/hyperparameter/n3/ctgan/ctgan-n3-20260504_163500/models_100epochs/train_20260504_163500.log @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:07a8341d5af0560c0fdf9128b8d26b3934333edd9f985540adbecb32ad24eedf +size 21140 diff --git a/hyperparameter/n3/ctgan/ctgan-n3-20260504_163500/public_gate/normalized_schema_snapshot.json b/hyperparameter/n3/ctgan/ctgan-n3-20260504_163500/public_gate/normalized_schema_snapshot.json new file mode 100644 index 0000000000000000000000000000000000000000..c41fe304503de23190a02e6cbfafa35b3bf134d3 --- /dev/null +++ b/hyperparameter/n3/ctgan/ctgan-n3-20260504_163500/public_gate/normalized_schema_snapshot.json @@ -0,0 +1,259 @@ +{ + "dataset_id": "n3", + "target_column": "quality", + "task_type": "classification", + "columns": [ + { + "name": "fixed acidity", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 66, + "unique_ratio": 0.016845, + "example_values": [ + "7.1", + "8.5", + "6.4", + "6.8", + "7.6" + ] + } + }, + { + "name": "volatile acidity", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 121, + "unique_ratio": 0.030883, + "example_values": [ + "0.31", + "0.21", + "0.24", + "0.43", + "0.27" + ] + } + }, + { + "name": "citric acid", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 85, + "unique_ratio": 0.021695, + "example_values": [ + "0.17", + "0.41", + "0.31", + "0.25", + "0.3" + ] + } + }, + { + "name": "residual sugar", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 296, + "unique_ratio": 0.075549, + "example_values": [ + "1", + "4.3", + "2.8", + "13", + "12.9" + ] + } + }, + { + "name": "chlorides", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 147, + "unique_ratio": 0.037519, + "example_values": [ + "0.042", + "0.036", + "0.038", + "0.047", + "0.033" + ] + } + }, + { + "name": "free sulfur dioxide", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 120, + "unique_ratio": 0.030628, + "example_values": [ + "21", + "24", + "41", + "43", + "69" + ] + } + }, + { + "name": "total sulfur dioxide", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 244, + "unique_ratio": 0.062277, + "example_values": [ + "144", + "99", + "114", + "132", + "160" + ] + } + }, + { + "name": "density", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 839, + "unique_ratio": 0.21414, + "example_values": [ + "0.99304", + "0.9947", + "0.99155", + "0.98975", + "0.99705" + ] + } + }, + { + "name": "pH", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 100, + "unique_ratio": 0.025523, + "example_values": [ + "3.13", + "3.18", + "3.37", + "3.21", + "3.16" + ] + } + }, + { + "name": "sulphates", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 78, + "unique_ratio": 0.019908, + "example_values": [ + "0.4", + "0.53", + "0.66", + "0.47", + "0.5" + ] + } + }, + { + "name": "alcohol", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 97, + "unique_ratio": 0.024758, + "example_values": [ + "9.6", + "9.7", + "11.7", + "13.4", + "8.8" + ] + } + }, + { + "name": "quality", + "role": "target", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 7, + "unique_ratio": 0.001787, + "example_values": [ + "5", + "6", + "7", + "8", + "3" + ] + } + } + ] +} \ No newline at end of file diff --git a/hyperparameter/n3/ctgan/ctgan-n3-20260504_163500/public_gate/public_gate_report.json b/hyperparameter/n3/ctgan/ctgan-n3-20260504_163500/public_gate/public_gate_report.json new file mode 100644 index 0000000000000000000000000000000000000000..93b97319f739e39079d6c6549fd2020f8a6dac25 --- /dev/null +++ b/hyperparameter/n3/ctgan/ctgan-n3-20260504_163500/public_gate/public_gate_report.json @@ -0,0 +1,37 @@ +{ + "dataset_id": "n3", + "status": "pass", + "checks": [ + { + "check_id": "PG001_csv_parse_ok", + "status": "pass" + }, + { + "check_id": "PG002_split_header_consistent", + "status": "pass" + }, + { + "check_id": "PG003_profile_header_match", + "status": "pass" + }, + { + "check_id": "PG004_missing_token_normalized", + "status": "pass" + }, + { + "check_id": "PG005_semantic_type_validated", + "status": "pass" + }, + { + "check_id": "PG006_target_defined_and_valid", + "status": "pass" + } + ], + "target_column": "quality", + "task_type": "classification", + "input_splits": { + "train": "/data/jialinzhang/SynthesizePipeline-server/DatasetNew/n3/n3-train.csv", + "val": "/data/jialinzhang/SynthesizePipeline-server/DatasetNew/n3/n3-val.csv", + "test": "/data/jialinzhang/SynthesizePipeline-server/DatasetNew/n3/n3-test.csv" + } +} \ No newline at end of file diff --git a/hyperparameter/n3/ctgan/ctgan-n3-20260504_163500/public_gate/staged_input_manifest.json b/hyperparameter/n3/ctgan/ctgan-n3-20260504_163500/public_gate/staged_input_manifest.json new file mode 100644 index 0000000000000000000000000000000000000000..48b080f6ee87947110fb4d30dce10e2c1afecad5 --- /dev/null +++ b/hyperparameter/n3/ctgan/ctgan-n3-20260504_163500/public_gate/staged_input_manifest.json @@ -0,0 +1,264 @@ +{ + "dataset_id": "n3", + "target_column": "quality", + "task_type": "classification", + "train_csv": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/n3/ctgan/ctgan-n3-20260504_163500/staged/public/train.csv", + "val_csv": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/n3/ctgan/ctgan-n3-20260504_163500/staged/public/val.csv", + "test_csv": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/n3/ctgan/ctgan-n3-20260504_163500/staged/public/test.csv", + "features_json": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/n3/ctgan/ctgan-n3-20260504_163500/staged/public/staged_features.json", + "public_gate_report": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/n3/ctgan/ctgan-n3-20260504_163500/public_gate/public_gate_report.json", + "column_schema": [ + { + "name": "fixed acidity", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 66, + "unique_ratio": 0.016845, + "example_values": [ + "7.1", + "8.5", + "6.4", + "6.8", + "7.6" + ] + } + }, + { + "name": "volatile acidity", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 121, + "unique_ratio": 0.030883, + "example_values": [ + "0.31", + "0.21", + "0.24", + "0.43", + "0.27" + ] + } + }, + { + "name": "citric acid", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 85, + "unique_ratio": 0.021695, + "example_values": [ + "0.17", + "0.41", + "0.31", + "0.25", + "0.3" + ] + } + }, + { + "name": "residual sugar", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 296, + "unique_ratio": 0.075549, + "example_values": [ + "1", + "4.3", + "2.8", + "13", + "12.9" + ] + } + }, + { + "name": "chlorides", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 147, + "unique_ratio": 0.037519, + "example_values": [ + "0.042", + "0.036", + "0.038", + "0.047", + "0.033" + ] + } + }, + { + "name": "free sulfur dioxide", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 120, + "unique_ratio": 0.030628, + "example_values": [ + "21", + "24", + "41", + "43", + "69" + ] + } + }, + { + "name": "total sulfur dioxide", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 244, + "unique_ratio": 0.062277, + "example_values": [ + "144", + "99", + "114", + "132", + "160" + ] + } + }, + { + "name": "density", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 839, + "unique_ratio": 0.21414, + "example_values": [ + "0.99304", + "0.9947", + "0.99155", + "0.98975", + "0.99705" + ] + } + }, + { + "name": "pH", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 100, + "unique_ratio": 0.025523, + "example_values": [ + "3.13", + "3.18", + "3.37", + "3.21", + "3.16" + ] + } + }, + { + "name": "sulphates", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 78, + "unique_ratio": 0.019908, + "example_values": [ + "0.4", + "0.53", + "0.66", + "0.47", + "0.5" + ] + } + }, + { + "name": "alcohol", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 97, + "unique_ratio": 0.024758, + "example_values": [ + "9.6", + "9.7", + "11.7", + "13.4", + "8.8" + ] + } + }, + { + "name": "quality", + "role": "target", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 7, + "unique_ratio": 0.001787, + "example_values": [ + "5", + "6", + "7", + "8", + "3" + ] + } + } + ] +} \ No newline at end of file diff --git a/hyperparameter/n3/ctgan/ctgan-n3-20260504_163500/run_config.json b/hyperparameter/n3/ctgan/ctgan-n3-20260504_163500/run_config.json new file mode 100644 index 0000000000000000000000000000000000000000..bdb5adc921578c44205b4f57ec918ef36b3e72e2 --- /dev/null +++ b/hyperparameter/n3/ctgan/ctgan-n3-20260504_163500/run_config.json @@ -0,0 +1,46 @@ +{ + "schema_version": 1, + "recorded_at": "2026-05-04T16:35:00", + "dataset_id": "n3", + "model": "ctgan", + "work_dir": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/n3/ctgan/ctgan-n3-20260504_163500", + "dataset_source_requested": "new", + "dataset_source_resolved": "new", + "cli_args": { + "model": "ctgan", + "dataset": "n3", + "dataset_source": "new", + "train": true, + "generate": true, + "num_rows": 0, + "epochs": null, + "output_dir": null, + "model_dir": null, + "work_dir": null, + "resume": false, + "no_stats": false + }, + "resolved": { + "num_rows": 3918, + "model_path": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/n3/ctgan/ctgan-n3-20260504_163500/models_100epochs/ctgan_100epochs.pt", + "output_csv": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/n3/ctgan/ctgan-n3-20260504_163500/ctgan-n3-3918-20260504_163716.csv" + }, + "input_artifacts": { + "public_gate_report": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/n3/ctgan/ctgan-n3-20260504_163500/public_gate/public_gate_report.json", + "public_manifest": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/n3/ctgan/ctgan-n3-20260504_163500/public_gate/staged_input_manifest.json", + "model_manifest": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/n3/ctgan/ctgan-n3-20260504_163500/staged/ctgan/model_input_manifest.json", + "train_csv": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/n3/ctgan/ctgan-n3-20260504_163500/staged/public/train.csv", + "features_json": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/n3/ctgan/ctgan-n3-20260504_163500/staged/public/staged_features.json", + "target_column": "quality", + "task_type": "classification" + }, + "env_overrides": { + "BENCHMARK_CTGAN_GPUS": "device=3", + "CTGAN_BATCH_SIZE": "64", + "CTGAN_DEFAULT_EPOCHS": "100", + "CTGAN_DISCRIMINATOR_DIMS": "32,32", + "CTGAN_EMBEDDING_DIM": "16", + "CTGAN_GENERATOR_DIMS": "32,32", + "CTGAN_PAC": "1" + } +} \ No newline at end of file diff --git a/hyperparameter/n3/ctgan/ctgan-n3-20260504_163500/runtime_result.json b/hyperparameter/n3/ctgan/ctgan-n3-20260504_163500/runtime_result.json new file mode 100644 index 0000000000000000000000000000000000000000..a7f7b88bd571228bf3c14e39259c8ffcf1de3a53 --- /dev/null +++ b/hyperparameter/n3/ctgan/ctgan-n3-20260504_163500/runtime_result.json @@ -0,0 +1,27 @@ +{ + "dataset_id": "n3", + "model": "ctgan", + "run_id": "ctgan-n3-20260504_163500", + "public_gate_status": "pass", + "adapter_ready_status": "pass", + "train_status": "success", + "generate_status": "success", + "reason_code": null, + "reason_detail": null, + "artifacts": { + "synthetic_csv": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/n3/ctgan/ctgan-n3-20260504_163500/ctgan-n3-3918-20260504_163716.csv", + "model_path": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/n3/ctgan/ctgan-n3-20260504_163500/models_100epochs/ctgan_100epochs.pt" + }, + "timings": { + "train": { + "started_at": "2026-05-04T16:35:00", + "ended_at": "2026-05-04T16:37:16", + "duration_sec": 135.911 + }, + "generate": { + "started_at": "2026-05-04T16:37:16", + "ended_at": "2026-05-04T16:37:22", + "duration_sec": 6.302 + } + } +} \ No newline at end of file diff --git a/hyperparameter/n3/ctgan/ctgan-n3-20260504_163500/staged/ctgan/adapter_report.json b/hyperparameter/n3/ctgan/ctgan-n3-20260504_163500/staged/ctgan/adapter_report.json new file mode 100644 index 0000000000000000000000000000000000000000..adf0c5541cafe09b28232934213db710cc57afb0 --- /dev/null +++ b/hyperparameter/n3/ctgan/ctgan-n3-20260504_163500/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-Benchmark-trainonly-v1/n3/ctgan/ctgan-n3-20260504_163500/staged/ctgan/model_input_manifest.json" +} \ No newline at end of file diff --git a/hyperparameter/n3/ctgan/ctgan-n3-20260504_163500/staged/ctgan/adapter_transforms_applied.json b/hyperparameter/n3/ctgan/ctgan-n3-20260504_163500/staged/ctgan/adapter_transforms_applied.json new file mode 100644 index 0000000000000000000000000000000000000000..0637a088a01e8ddab3bf3fa98dbe804cbde1a0dc --- /dev/null +++ b/hyperparameter/n3/ctgan/ctgan-n3-20260504_163500/staged/ctgan/adapter_transforms_applied.json @@ -0,0 +1 @@ +[] \ No newline at end of file diff --git a/hyperparameter/n3/ctgan/ctgan-n3-20260504_163500/staged/ctgan/model_input_manifest.json b/hyperparameter/n3/ctgan/ctgan-n3-20260504_163500/staged/ctgan/model_input_manifest.json new file mode 100644 index 0000000000000000000000000000000000000000..66f05882d6f4384726788905fbddc90af22f11da --- /dev/null +++ b/hyperparameter/n3/ctgan/ctgan-n3-20260504_163500/staged/ctgan/model_input_manifest.json @@ -0,0 +1,266 @@ +{ + "dataset_id": "n3", + "model": "ctgan", + "target_column": "quality", + "task_type": "classification", + "column_schema": [ + { + "name": "fixed acidity", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 66, + "unique_ratio": 0.016845, + "example_values": [ + "7.1", + "8.5", + "6.4", + "6.8", + "7.6" + ] + } + }, + { + "name": "volatile acidity", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 121, + "unique_ratio": 0.030883, + "example_values": [ + "0.31", + "0.21", + "0.24", + "0.43", + "0.27" + ] + } + }, + { + "name": "citric acid", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 85, + "unique_ratio": 0.021695, + "example_values": [ + "0.17", + "0.41", + "0.31", + "0.25", + "0.3" + ] + } + }, + { + "name": "residual sugar", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 296, + "unique_ratio": 0.075549, + "example_values": [ + "1", + "4.3", + "2.8", + "13", + "12.9" + ] + } + }, + { + "name": "chlorides", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 147, + "unique_ratio": 0.037519, + "example_values": [ + "0.042", + "0.036", + "0.038", + "0.047", + "0.033" + ] + } + }, + { + "name": "free sulfur dioxide", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 120, + "unique_ratio": 0.030628, + "example_values": [ + "21", + "24", + "41", + "43", + "69" + ] + } + }, + { + "name": "total sulfur dioxide", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 244, + "unique_ratio": 0.062277, + "example_values": [ + "144", + "99", + "114", + "132", + "160" + ] + } + }, + { + "name": "density", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 839, + "unique_ratio": 0.21414, + "example_values": [ + "0.99304", + "0.9947", + "0.99155", + "0.98975", + "0.99705" + ] + } + }, + { + "name": "pH", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 100, + "unique_ratio": 0.025523, + "example_values": [ + "3.13", + "3.18", + "3.37", + "3.21", + "3.16" + ] + } + }, + { + "name": "sulphates", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 78, + "unique_ratio": 0.019908, + "example_values": [ + "0.4", + "0.53", + "0.66", + "0.47", + "0.5" + ] + } + }, + { + "name": "alcohol", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 97, + "unique_ratio": 0.024758, + "example_values": [ + "9.6", + "9.7", + "11.7", + "13.4", + "8.8" + ] + } + }, + { + "name": "quality", + "role": "target", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 7, + "unique_ratio": 0.001787, + "example_values": [ + "5", + "6", + "7", + "8", + "3" + ] + } + } + ], + "public_manifest": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/n3/ctgan/ctgan-n3-20260504_163500/public_gate/staged_input_manifest.json", + "train_csv": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/n3/ctgan/ctgan-n3-20260504_163500/staged/public/train.csv", + "val_csv": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/n3/ctgan/ctgan-n3-20260504_163500/staged/public/val.csv", + "test_csv": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/n3/ctgan/ctgan-n3-20260504_163500/staged/public/test.csv", + "features_json": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/n3/ctgan/ctgan-n3-20260504_163500/staged/public/staged_features.json", + "public_gate_report": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/n3/ctgan/ctgan-n3-20260504_163500/public_gate/public_gate_report.json" +} \ No newline at end of file diff --git a/hyperparameter/n3/ctgan/ctgan-n3-20260504_163500/staged/public/staged_features.json b/hyperparameter/n3/ctgan/ctgan-n3-20260504_163500/staged/public/staged_features.json new file mode 100644 index 0000000000000000000000000000000000000000..08fe4d766d091d2f2ddba724a16b9509cbe4c390 --- /dev/null +++ b/hyperparameter/n3/ctgan/ctgan-n3-20260504_163500/staged/public/staged_features.json @@ -0,0 +1,62 @@ +[ + { + "feature_name": "fixed acidity", + "data_type": "continuous", + "is_target": false + }, + { + "feature_name": "volatile acidity", + "data_type": "continuous", + "is_target": false + }, + { + "feature_name": "citric acid", + "data_type": "continuous", + "is_target": false + }, + { + "feature_name": "residual sugar", + "data_type": "continuous", + "is_target": false + }, + { + "feature_name": "chlorides", + "data_type": "continuous", + "is_target": false + }, + { + "feature_name": "free sulfur dioxide", + "data_type": "continuous", + "is_target": false + }, + { + "feature_name": "total sulfur dioxide", + "data_type": "continuous", + "is_target": false + }, + { + "feature_name": "density", + "data_type": "continuous", + "is_target": false + }, + { + "feature_name": "pH", + "data_type": "continuous", + "is_target": false + }, + { + "feature_name": "sulphates", + "data_type": "continuous", + "is_target": false + }, + { + "feature_name": "alcohol", + "data_type": "continuous", + "is_target": false + }, + { + "feature_name": "quality", + "data_type": "continuous", + "is_target": true + } +] \ No newline at end of file diff --git a/hyperparameter/n3/ctgan/ctgan-n3-20260504_163500/staged/public/test.csv b/hyperparameter/n3/ctgan/ctgan-n3-20260504_163500/staged/public/test.csv new file mode 100644 index 0000000000000000000000000000000000000000..db5cd50d3746410ea470625fa2ba2c8e9775cc0d --- /dev/null +++ b/hyperparameter/n3/ctgan/ctgan-n3-20260504_163500/staged/public/test.csv @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:19e107152a94432e2a37ff045c00cfe35e1be30208b1553080d7dd0ede256d3b +size 28944 diff --git a/hyperparameter/n3/ctgan/ctgan-n3-20260504_163500/staged/public/train.csv b/hyperparameter/n3/ctgan/ctgan-n3-20260504_163500/staged/public/train.csv new file mode 100644 index 0000000000000000000000000000000000000000..87ca26726fe82ccbaa397919305b043c17eb374e --- /dev/null +++ b/hyperparameter/n3/ctgan/ctgan-n3-20260504_163500/staged/public/train.csv @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:7813c8cca73ba4bfc6559215257b341c21e459980ad17ae6ddc809306bc9a0b9 +size 229945 diff --git a/hyperparameter/n3/ctgan/ctgan-n3-20260504_163500/staged/public/val.csv b/hyperparameter/n3/ctgan/ctgan-n3-20260504_163500/staged/public/val.csv new file mode 100644 index 0000000000000000000000000000000000000000..6acf84c76c47093b513c46d5503972a2dff275c0 --- /dev/null +++ b/hyperparameter/n3/ctgan/ctgan-n3-20260504_163500/staged/public/val.csv @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:cf5979d9675567d9d6642640c9b84fc6c49e492604144723c30f50516c05cee6 +size 28791 diff --git a/hyperparameter/n3/ctgan/ctgan-n3-20260504_163735/_ctgan_generate.py b/hyperparameter/n3/ctgan/ctgan-n3-20260504_163735/_ctgan_generate.py new file mode 100644 index 0000000000000000000000000000000000000000..958966b7d26451c5cec305e5e95d971ad603c9f4 --- /dev/null +++ b/hyperparameter/n3/ctgan/ctgan-n3-20260504_163735/_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-Benchmark-trainonly-v1/n3/ctgan/ctgan-n3-20260504_163735/models_150epochs/ctgan_150epochs.pt") +total = 3918 +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-Benchmark-trainonly-v1/n3/ctgan/ctgan-n3-20260504_163735/ctgan-n3-3918-20260504_163919.csv", index=False) +print("[CTGAN] Generated", total, "rows in", len(parts), "chunks ->", "/work/output-Benchmark-trainonly-v1/n3/ctgan/ctgan-n3-20260504_163735/ctgan-n3-3918-20260504_163919.csv") \ No newline at end of file diff --git a/hyperparameter/n3/ctgan/ctgan-n3-20260504_163735/_ctgan_train.py b/hyperparameter/n3/ctgan/ctgan-n3-20260504_163735/_ctgan_train.py new file mode 100644 index 0000000000000000000000000000000000000000..37981c24b61b6ffbc8d764127aae6a5d20410d3e --- /dev/null +++ b/hyperparameter/n3/ctgan/ctgan-n3-20260504_163735/_ctgan_train.py @@ -0,0 +1,17 @@ +import pandas as pd +from ctgan.synthesizers.ctgan import CTGAN + +data = pd.read_csv("/work/output-Benchmark-trainonly-v1/n3/ctgan/ctgan-n3-20260504_163735/staged/public/train.csv") +discrete_columns = [] +model = CTGAN( + embedding_dim=32, + generator_dim=(64, 64), + discriminator_dim=(64, 64), + batch_size=128, + pac=1, + epochs=150, + verbose=True, +) +model.fit(data, discrete_columns) +model.save("/work/output-Benchmark-trainonly-v1/n3/ctgan/ctgan-n3-20260504_163735/models_150epochs/ctgan_150epochs.pt") +print("[CTGAN] Saved model ->", "/work/output-Benchmark-trainonly-v1/n3/ctgan/ctgan-n3-20260504_163735/models_150epochs/ctgan_150epochs.pt") \ No newline at end of file diff --git a/hyperparameter/n3/ctgan/ctgan-n3-20260504_163735/ctgan-n3-3918-20260504_163919.csv b/hyperparameter/n3/ctgan/ctgan-n3-20260504_163735/ctgan-n3-3918-20260504_163919.csv new file mode 100644 index 0000000000000000000000000000000000000000..d01269246f4056aca40e395921ff81b5b22a970a --- /dev/null +++ b/hyperparameter/n3/ctgan/ctgan-n3-20260504_163735/ctgan-n3-3918-20260504_163919.csv @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:ff18e4b52213da6adbc8c4ced644c1bc2994a3bc04c52d99bd2a9fb3fc4be71d +size 819814 diff --git a/hyperparameter/n3/ctgan/ctgan-n3-20260504_163735/ctgan_metadata.json b/hyperparameter/n3/ctgan/ctgan-n3-20260504_163735/ctgan_metadata.json new file mode 100644 index 0000000000000000000000000000000000000000..40d513aa1aca4c6f5c1be8afc3d6a1a0c75aa74f --- /dev/null +++ b/hyperparameter/n3/ctgan/ctgan-n3-20260504_163735/ctgan_metadata.json @@ -0,0 +1,52 @@ +{ + "columns": [ + { + "name": "fixed acidity", + "type": "continuous" + }, + { + "name": "volatile acidity", + "type": "continuous" + }, + { + "name": "citric acid", + "type": "continuous" + }, + { + "name": "residual sugar", + "type": "continuous" + }, + { + "name": "chlorides", + "type": "continuous" + }, + { + "name": "free sulfur dioxide", + "type": "continuous" + }, + { + "name": "total sulfur dioxide", + "type": "continuous" + }, + { + "name": "density", + "type": "continuous" + }, + { + "name": "pH", + "type": "continuous" + }, + { + "name": "sulphates", + "type": "continuous" + }, + { + "name": "alcohol", + "type": "continuous" + }, + { + "name": "quality", + "type": "continuous" + } + ] +} \ No newline at end of file diff --git a/hyperparameter/n3/ctgan/ctgan-n3-20260504_163735/gen_20260504_163919.log b/hyperparameter/n3/ctgan/ctgan-n3-20260504_163735/gen_20260504_163919.log new file mode 100644 index 0000000000000000000000000000000000000000..c15018523d9b663dbb518ee0443132e2447a3679 --- /dev/null +++ b/hyperparameter/n3/ctgan/ctgan-n3-20260504_163735/gen_20260504_163919.log @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:d4a1b092247ba70ae7e47162bf2690c54df0f896d414770729c5056c19aacf32 +size 297 diff --git a/hyperparameter/n3/ctgan/ctgan-n3-20260504_163735/input_snapshot.json b/hyperparameter/n3/ctgan/ctgan-n3-20260504_163735/input_snapshot.json new file mode 100644 index 0000000000000000000000000000000000000000..15f60f257edd5bcdb6b9e07be8cb5182076affc1 --- /dev/null +++ b/hyperparameter/n3/ctgan/ctgan-n3-20260504_163735/input_snapshot.json @@ -0,0 +1,36 @@ +{ + "dataset_id": "n3", + "model": "ctgan", + "inputs": { + "train_csv": { + "path": "/data/jialinzhang/SynthesizePipeline-server/DatasetNew/n3/n3-train.csv", + "exists": true, + "size": 211519, + "sha256": "2160a06db2fea02adb0ebb79d8d853bd2544580be301e71f6e8deeb1489a9009" + }, + "val_csv": { + "path": "/data/jialinzhang/SynthesizePipeline-server/DatasetNew/n3/n3-val.csv", + "exists": true, + "size": 26499, + "sha256": "d5ccfee07dfa9e7bdee5bb87642b43828e09f74c6cc0266a3d19d9feaa83106e" + }, + "test_csv": { + "path": "/data/jialinzhang/SynthesizePipeline-server/DatasetNew/n3/n3-test.csv", + "exists": true, + "size": 26676, + "sha256": "6f83aacb0d1747b95e287352a7fff5d9d65a1c127b773852346c68485c4ede47" + }, + "profile_json": { + "path": "/data/jialinzhang/SynthesizePipeline-server/DatasetNew/artifacts/data_core/tabular/n3/n3-dataset_profile.json", + "exists": true, + "size": 5235, + "sha256": "23d2e5904a2ca90cbf8d6e3c75887681721e9b90cc705c31a680c11513d0c46f" + }, + "contract_json": { + "path": "/data/jialinzhang/SynthesizePipeline-server/DatasetNew/artifacts/data_core/tabular/n3/n3-dataset_contract_v1.json", + "exists": true, + "size": 6281, + "sha256": "c0cc56f5fe28e1b65927255c6e3c2b0e9479862c2ec6f2fea1664da36c9a3a09" + } + } +} \ No newline at end of file diff --git a/hyperparameter/n3/ctgan/ctgan-n3-20260504_163735/models_150epochs/ctgan_150epochs.pt b/hyperparameter/n3/ctgan/ctgan-n3-20260504_163735/models_150epochs/ctgan_150epochs.pt new file mode 100644 index 0000000000000000000000000000000000000000..4db67a4aeabd2fff80556fe2c44e53e5a8fb81c0 --- /dev/null +++ b/hyperparameter/n3/ctgan/ctgan-n3-20260504_163735/models_150epochs/ctgan_150epochs.pt @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:3a4a33a35f9defe6e6439e7c8b121330e4d256a10c66e3a10ae961c1c85a6ec4 +size 505059 diff --git a/hyperparameter/n3/ctgan/ctgan-n3-20260504_163735/models_150epochs/train_20260504_163735.log b/hyperparameter/n3/ctgan/ctgan-n3-20260504_163735/models_150epochs/train_20260504_163735.log new file mode 100644 index 0000000000000000000000000000000000000000..6b8459c2f3154af1c9ce3e364b77a7ff421577d1 --- /dev/null +++ b/hyperparameter/n3/ctgan/ctgan-n3-20260504_163735/models_150epochs/train_20260504_163735.log @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:220218392a416e873cce66abedb2ed0236db16e1716439b399022e7bef8c542b +size 30539 diff --git a/hyperparameter/n3/ctgan/ctgan-n3-20260504_163735/public_gate/normalized_schema_snapshot.json b/hyperparameter/n3/ctgan/ctgan-n3-20260504_163735/public_gate/normalized_schema_snapshot.json new file mode 100644 index 0000000000000000000000000000000000000000..c41fe304503de23190a02e6cbfafa35b3bf134d3 --- /dev/null +++ b/hyperparameter/n3/ctgan/ctgan-n3-20260504_163735/public_gate/normalized_schema_snapshot.json @@ -0,0 +1,259 @@ +{ + "dataset_id": "n3", + "target_column": "quality", + "task_type": "classification", + "columns": [ + { + "name": "fixed acidity", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 66, + "unique_ratio": 0.016845, + "example_values": [ + "7.1", + "8.5", + "6.4", + "6.8", + "7.6" + ] + } + }, + { + "name": "volatile acidity", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 121, + "unique_ratio": 0.030883, + "example_values": [ + "0.31", + "0.21", + "0.24", + "0.43", + "0.27" + ] + } + }, + { + "name": "citric acid", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 85, + "unique_ratio": 0.021695, + "example_values": [ + "0.17", + "0.41", + "0.31", + "0.25", + "0.3" + ] + } + }, + { + "name": "residual sugar", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 296, + "unique_ratio": 0.075549, + "example_values": [ + "1", + "4.3", + "2.8", + "13", + "12.9" + ] + } + }, + { + "name": "chlorides", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 147, + "unique_ratio": 0.037519, + "example_values": [ + "0.042", + "0.036", + "0.038", + "0.047", + "0.033" + ] + } + }, + { + "name": "free sulfur dioxide", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 120, + "unique_ratio": 0.030628, + "example_values": [ + "21", + "24", + "41", + "43", + "69" + ] + } + }, + { + "name": "total sulfur dioxide", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 244, + "unique_ratio": 0.062277, + "example_values": [ + "144", + "99", + "114", + "132", + "160" + ] + } + }, + { + "name": "density", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 839, + "unique_ratio": 0.21414, + "example_values": [ + "0.99304", + "0.9947", + "0.99155", + "0.98975", + "0.99705" + ] + } + }, + { + "name": "pH", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 100, + "unique_ratio": 0.025523, + "example_values": [ + "3.13", + "3.18", + "3.37", + "3.21", + "3.16" + ] + } + }, + { + "name": "sulphates", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 78, + "unique_ratio": 0.019908, + "example_values": [ + "0.4", + "0.53", + "0.66", + "0.47", + "0.5" + ] + } + }, + { + "name": "alcohol", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 97, + "unique_ratio": 0.024758, + "example_values": [ + "9.6", + "9.7", + "11.7", + "13.4", + "8.8" + ] + } + }, + { + "name": "quality", + "role": "target", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 7, + "unique_ratio": 0.001787, + "example_values": [ + "5", + "6", + "7", + "8", + "3" + ] + } + } + ] +} \ No newline at end of file diff --git a/hyperparameter/n3/ctgan/ctgan-n3-20260504_163735/public_gate/public_gate_report.json b/hyperparameter/n3/ctgan/ctgan-n3-20260504_163735/public_gate/public_gate_report.json new file mode 100644 index 0000000000000000000000000000000000000000..93b97319f739e39079d6c6549fd2020f8a6dac25 --- /dev/null +++ b/hyperparameter/n3/ctgan/ctgan-n3-20260504_163735/public_gate/public_gate_report.json @@ -0,0 +1,37 @@ +{ + "dataset_id": "n3", + "status": "pass", + "checks": [ + { + "check_id": "PG001_csv_parse_ok", + "status": "pass" + }, + { + "check_id": "PG002_split_header_consistent", + "status": "pass" + }, + { + "check_id": "PG003_profile_header_match", + "status": "pass" + }, + { + "check_id": "PG004_missing_token_normalized", + "status": "pass" + }, + { + "check_id": "PG005_semantic_type_validated", + "status": "pass" + }, + { + "check_id": "PG006_target_defined_and_valid", + "status": "pass" + } + ], + "target_column": "quality", + "task_type": "classification", + "input_splits": { + "train": "/data/jialinzhang/SynthesizePipeline-server/DatasetNew/n3/n3-train.csv", + "val": "/data/jialinzhang/SynthesizePipeline-server/DatasetNew/n3/n3-val.csv", + "test": "/data/jialinzhang/SynthesizePipeline-server/DatasetNew/n3/n3-test.csv" + } +} \ No newline at end of file diff --git a/hyperparameter/n3/ctgan/ctgan-n3-20260504_163735/public_gate/staged_input_manifest.json b/hyperparameter/n3/ctgan/ctgan-n3-20260504_163735/public_gate/staged_input_manifest.json new file mode 100644 index 0000000000000000000000000000000000000000..f086dff7a315e8fd37f2438a7615dd2734e2c63f --- /dev/null +++ b/hyperparameter/n3/ctgan/ctgan-n3-20260504_163735/public_gate/staged_input_manifest.json @@ -0,0 +1,264 @@ +{ + "dataset_id": "n3", + "target_column": "quality", + "task_type": "classification", + "train_csv": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/n3/ctgan/ctgan-n3-20260504_163735/staged/public/train.csv", + "val_csv": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/n3/ctgan/ctgan-n3-20260504_163735/staged/public/val.csv", + "test_csv": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/n3/ctgan/ctgan-n3-20260504_163735/staged/public/test.csv", + "features_json": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/n3/ctgan/ctgan-n3-20260504_163735/staged/public/staged_features.json", + "public_gate_report": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/n3/ctgan/ctgan-n3-20260504_163735/public_gate/public_gate_report.json", + "column_schema": [ + { + "name": "fixed acidity", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 66, + "unique_ratio": 0.016845, + "example_values": [ + "7.1", + "8.5", + "6.4", + "6.8", + "7.6" + ] + } + }, + { + "name": "volatile acidity", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 121, + "unique_ratio": 0.030883, + "example_values": [ + "0.31", + "0.21", + "0.24", + "0.43", + "0.27" + ] + } + }, + { + "name": "citric acid", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 85, + "unique_ratio": 0.021695, + "example_values": [ + "0.17", + "0.41", + "0.31", + "0.25", + "0.3" + ] + } + }, + { + "name": "residual sugar", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 296, + "unique_ratio": 0.075549, + "example_values": [ + "1", + "4.3", + "2.8", + "13", + "12.9" + ] + } + }, + { + "name": "chlorides", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 147, + "unique_ratio": 0.037519, + "example_values": [ + "0.042", + "0.036", + "0.038", + "0.047", + "0.033" + ] + } + }, + { + "name": "free sulfur dioxide", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 120, + "unique_ratio": 0.030628, + "example_values": [ + "21", + "24", + "41", + "43", + "69" + ] + } + }, + { + "name": "total sulfur dioxide", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 244, + "unique_ratio": 0.062277, + "example_values": [ + "144", + "99", + "114", + "132", + "160" + ] + } + }, + { + "name": "density", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 839, + "unique_ratio": 0.21414, + "example_values": [ + "0.99304", + "0.9947", + "0.99155", + "0.98975", + "0.99705" + ] + } + }, + { + "name": "pH", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 100, + "unique_ratio": 0.025523, + "example_values": [ + "3.13", + "3.18", + "3.37", + "3.21", + "3.16" + ] + } + }, + { + "name": "sulphates", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 78, + "unique_ratio": 0.019908, + "example_values": [ + "0.4", + "0.53", + "0.66", + "0.47", + "0.5" + ] + } + }, + { + "name": "alcohol", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 97, + "unique_ratio": 0.024758, + "example_values": [ + "9.6", + "9.7", + "11.7", + "13.4", + "8.8" + ] + } + }, + { + "name": "quality", + "role": "target", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 7, + "unique_ratio": 0.001787, + "example_values": [ + "5", + "6", + "7", + "8", + "3" + ] + } + } + ] +} \ No newline at end of file diff --git a/hyperparameter/n3/ctgan/ctgan-n3-20260504_163735/run_config.json b/hyperparameter/n3/ctgan/ctgan-n3-20260504_163735/run_config.json new file mode 100644 index 0000000000000000000000000000000000000000..e37b55dabec637f4ec7e13855b6fb5990a44a7d8 --- /dev/null +++ b/hyperparameter/n3/ctgan/ctgan-n3-20260504_163735/run_config.json @@ -0,0 +1,46 @@ +{ + "schema_version": 1, + "recorded_at": "2026-05-04T16:37:35", + "dataset_id": "n3", + "model": "ctgan", + "work_dir": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/n3/ctgan/ctgan-n3-20260504_163735", + "dataset_source_requested": "new", + "dataset_source_resolved": "new", + "cli_args": { + "model": "ctgan", + "dataset": "n3", + "dataset_source": "new", + "train": true, + "generate": true, + "num_rows": 0, + "epochs": null, + "output_dir": null, + "model_dir": null, + "work_dir": null, + "resume": false, + "no_stats": false + }, + "resolved": { + "num_rows": 3918, + "model_path": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/n3/ctgan/ctgan-n3-20260504_163735/models_150epochs/ctgan_150epochs.pt", + "output_csv": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/n3/ctgan/ctgan-n3-20260504_163735/ctgan-n3-3918-20260504_163919.csv" + }, + "input_artifacts": { + "public_gate_report": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/n3/ctgan/ctgan-n3-20260504_163735/public_gate/public_gate_report.json", + "public_manifest": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/n3/ctgan/ctgan-n3-20260504_163735/public_gate/staged_input_manifest.json", + "model_manifest": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/n3/ctgan/ctgan-n3-20260504_163735/staged/ctgan/model_input_manifest.json", + "train_csv": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/n3/ctgan/ctgan-n3-20260504_163735/staged/public/train.csv", + "features_json": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/n3/ctgan/ctgan-n3-20260504_163735/staged/public/staged_features.json", + "target_column": "quality", + "task_type": "classification" + }, + "env_overrides": { + "BENCHMARK_CTGAN_GPUS": "device=3", + "CTGAN_BATCH_SIZE": "128", + "CTGAN_DEFAULT_EPOCHS": "150", + "CTGAN_DISCRIMINATOR_DIMS": "64,64", + "CTGAN_EMBEDDING_DIM": "32", + "CTGAN_GENERATOR_DIMS": "64,64", + "CTGAN_PAC": "1" + } +} \ No newline at end of file diff --git a/hyperparameter/n3/ctgan/ctgan-n3-20260504_163735/runtime_result.json b/hyperparameter/n3/ctgan/ctgan-n3-20260504_163735/runtime_result.json new file mode 100644 index 0000000000000000000000000000000000000000..13b61ce373b5082e2aae3bba85321ef5109499d9 --- /dev/null +++ b/hyperparameter/n3/ctgan/ctgan-n3-20260504_163735/runtime_result.json @@ -0,0 +1,27 @@ +{ + "dataset_id": "n3", + "model": "ctgan", + "run_id": "ctgan-n3-20260504_163735", + "public_gate_status": "pass", + "adapter_ready_status": "pass", + "train_status": "success", + "generate_status": "success", + "reason_code": null, + "reason_detail": null, + "artifacts": { + "synthetic_csv": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/n3/ctgan/ctgan-n3-20260504_163735/ctgan-n3-3918-20260504_163919.csv", + "model_path": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/n3/ctgan/ctgan-n3-20260504_163735/models_150epochs/ctgan_150epochs.pt" + }, + "timings": { + "train": { + "started_at": "2026-05-04T16:37:35", + "ended_at": "2026-05-04T16:39:19", + "duration_sec": 103.723 + }, + "generate": { + "started_at": "2026-05-04T16:39:19", + "ended_at": "2026-05-04T16:39:25", + "duration_sec": 5.891 + } + } +} \ No newline at end of file diff --git a/hyperparameter/n3/ctgan/ctgan-n3-20260504_163735/staged/ctgan/adapter_report.json b/hyperparameter/n3/ctgan/ctgan-n3-20260504_163735/staged/ctgan/adapter_report.json new file mode 100644 index 0000000000000000000000000000000000000000..248d8f860e0f593028a4ce3aa719ea4008f394c6 --- /dev/null +++ b/hyperparameter/n3/ctgan/ctgan-n3-20260504_163735/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-Benchmark-trainonly-v1/n3/ctgan/ctgan-n3-20260504_163735/staged/ctgan/model_input_manifest.json" +} \ No newline at end of file diff --git a/hyperparameter/n3/ctgan/ctgan-n3-20260504_163735/staged/ctgan/adapter_transforms_applied.json b/hyperparameter/n3/ctgan/ctgan-n3-20260504_163735/staged/ctgan/adapter_transforms_applied.json new file mode 100644 index 0000000000000000000000000000000000000000..0637a088a01e8ddab3bf3fa98dbe804cbde1a0dc --- /dev/null +++ b/hyperparameter/n3/ctgan/ctgan-n3-20260504_163735/staged/ctgan/adapter_transforms_applied.json @@ -0,0 +1 @@ +[] \ No newline at end of file diff --git a/hyperparameter/n3/ctgan/ctgan-n3-20260504_163735/staged/ctgan/model_input_manifest.json b/hyperparameter/n3/ctgan/ctgan-n3-20260504_163735/staged/ctgan/model_input_manifest.json new file mode 100644 index 0000000000000000000000000000000000000000..23e0a6ef05a38d1ee9fac4f54a980b8be2f1bf9d --- /dev/null +++ b/hyperparameter/n3/ctgan/ctgan-n3-20260504_163735/staged/ctgan/model_input_manifest.json @@ -0,0 +1,266 @@ +{ + "dataset_id": "n3", + "model": "ctgan", + "target_column": "quality", + "task_type": "classification", + "column_schema": [ + { + "name": "fixed acidity", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 66, + "unique_ratio": 0.016845, + "example_values": [ + "7.1", + "8.5", + "6.4", + "6.8", + "7.6" + ] + } + }, + { + "name": "volatile acidity", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 121, + "unique_ratio": 0.030883, + "example_values": [ + "0.31", + "0.21", + "0.24", + "0.43", + "0.27" + ] + } + }, + { + "name": "citric acid", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 85, + "unique_ratio": 0.021695, + "example_values": [ + "0.17", + "0.41", + "0.31", + "0.25", + "0.3" + ] + } + }, + { + "name": "residual sugar", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 296, + "unique_ratio": 0.075549, + "example_values": [ + "1", + "4.3", + "2.8", + "13", + "12.9" + ] + } + }, + { + "name": "chlorides", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 147, + "unique_ratio": 0.037519, + "example_values": [ + "0.042", + "0.036", + "0.038", + "0.047", + "0.033" + ] + } + }, + { + "name": "free sulfur dioxide", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 120, + "unique_ratio": 0.030628, + "example_values": [ + "21", + "24", + "41", + "43", + "69" + ] + } + }, + { + "name": "total sulfur dioxide", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 244, + "unique_ratio": 0.062277, + "example_values": [ + "144", + "99", + "114", + "132", + "160" + ] + } + }, + { + "name": "density", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 839, + "unique_ratio": 0.21414, + "example_values": [ + "0.99304", + "0.9947", + "0.99155", + "0.98975", + "0.99705" + ] + } + }, + { + "name": "pH", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 100, + "unique_ratio": 0.025523, + "example_values": [ + "3.13", + "3.18", + "3.37", + "3.21", + "3.16" + ] + } + }, + { + "name": "sulphates", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 78, + "unique_ratio": 0.019908, + "example_values": [ + "0.4", + "0.53", + "0.66", + "0.47", + "0.5" + ] + } + }, + { + "name": "alcohol", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 97, + "unique_ratio": 0.024758, + "example_values": [ + "9.6", + "9.7", + "11.7", + "13.4", + "8.8" + ] + } + }, + { + "name": "quality", + "role": "target", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 7, + "unique_ratio": 0.001787, + "example_values": [ + "5", + "6", + "7", + "8", + "3" + ] + } + } + ], + "public_manifest": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/n3/ctgan/ctgan-n3-20260504_163735/public_gate/staged_input_manifest.json", + "train_csv": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/n3/ctgan/ctgan-n3-20260504_163735/staged/public/train.csv", + "val_csv": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/n3/ctgan/ctgan-n3-20260504_163735/staged/public/val.csv", + "test_csv": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/n3/ctgan/ctgan-n3-20260504_163735/staged/public/test.csv", + "features_json": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/n3/ctgan/ctgan-n3-20260504_163735/staged/public/staged_features.json", + "public_gate_report": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/n3/ctgan/ctgan-n3-20260504_163735/public_gate/public_gate_report.json" +} \ No newline at end of file diff --git a/hyperparameter/n3/ctgan/ctgan-n3-20260504_163735/staged/public/staged_features.json b/hyperparameter/n3/ctgan/ctgan-n3-20260504_163735/staged/public/staged_features.json new file mode 100644 index 0000000000000000000000000000000000000000..08fe4d766d091d2f2ddba724a16b9509cbe4c390 --- /dev/null +++ b/hyperparameter/n3/ctgan/ctgan-n3-20260504_163735/staged/public/staged_features.json @@ -0,0 +1,62 @@ +[ + { + "feature_name": "fixed acidity", + "data_type": "continuous", + "is_target": false + }, + { + "feature_name": "volatile acidity", + "data_type": "continuous", + "is_target": false + }, + { + "feature_name": "citric acid", + "data_type": "continuous", + "is_target": false + }, + { + "feature_name": "residual sugar", + "data_type": "continuous", + "is_target": false + }, + { + "feature_name": "chlorides", + "data_type": "continuous", + "is_target": false + }, + { + "feature_name": "free sulfur dioxide", + "data_type": "continuous", + "is_target": false + }, + { + "feature_name": "total sulfur dioxide", + "data_type": "continuous", + "is_target": false + }, + { + "feature_name": "density", + "data_type": "continuous", + "is_target": false + }, + { + "feature_name": "pH", + "data_type": "continuous", + "is_target": false + }, + { + "feature_name": "sulphates", + "data_type": "continuous", + "is_target": false + }, + { + "feature_name": "alcohol", + "data_type": "continuous", + "is_target": false + }, + { + "feature_name": "quality", + "data_type": "continuous", + "is_target": true + } +] \ No newline at end of file diff --git a/hyperparameter/n3/ctgan/ctgan-n3-20260504_163735/staged/public/test.csv b/hyperparameter/n3/ctgan/ctgan-n3-20260504_163735/staged/public/test.csv new file mode 100644 index 0000000000000000000000000000000000000000..db5cd50d3746410ea470625fa2ba2c8e9775cc0d --- /dev/null +++ b/hyperparameter/n3/ctgan/ctgan-n3-20260504_163735/staged/public/test.csv @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:19e107152a94432e2a37ff045c00cfe35e1be30208b1553080d7dd0ede256d3b +size 28944 diff --git a/hyperparameter/n3/ctgan/ctgan-n3-20260504_163735/staged/public/train.csv b/hyperparameter/n3/ctgan/ctgan-n3-20260504_163735/staged/public/train.csv new file mode 100644 index 0000000000000000000000000000000000000000..87ca26726fe82ccbaa397919305b043c17eb374e --- /dev/null +++ b/hyperparameter/n3/ctgan/ctgan-n3-20260504_163735/staged/public/train.csv @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:7813c8cca73ba4bfc6559215257b341c21e459980ad17ae6ddc809306bc9a0b9 +size 229945 diff --git a/hyperparameter/n3/ctgan/ctgan-n3-20260504_163735/staged/public/val.csv b/hyperparameter/n3/ctgan/ctgan-n3-20260504_163735/staged/public/val.csv new file mode 100644 index 0000000000000000000000000000000000000000..6acf84c76c47093b513c46d5503972a2dff275c0 --- /dev/null +++ b/hyperparameter/n3/ctgan/ctgan-n3-20260504_163735/staged/public/val.csv @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:cf5979d9675567d9d6642640c9b84fc6c49e492604144723c30f50516c05cee6 +size 28791 diff --git a/hyperparameter/n3/ctgan/ctgan-n3-20260504_163938/_ctgan_generate.py b/hyperparameter/n3/ctgan/ctgan-n3-20260504_163938/_ctgan_generate.py new file mode 100644 index 0000000000000000000000000000000000000000..11daec1d2a737e9b2a264f4628dd15c77d08202e --- /dev/null +++ b/hyperparameter/n3/ctgan/ctgan-n3-20260504_163938/_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-Benchmark-trainonly-v1/n3/ctgan/ctgan-n3-20260504_163938/models_100epochs/ctgan_100epochs.pt") +total = 3918 +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-Benchmark-trainonly-v1/n3/ctgan/ctgan-n3-20260504_163938/ctgan-n3-3918-20260504_164128.csv", index=False) +print("[CTGAN] Generated", total, "rows in", len(parts), "chunks ->", "/work/output-Benchmark-trainonly-v1/n3/ctgan/ctgan-n3-20260504_163938/ctgan-n3-3918-20260504_164128.csv") \ No newline at end of file diff --git a/hyperparameter/n3/ctgan/ctgan-n3-20260504_163938/_ctgan_train.py b/hyperparameter/n3/ctgan/ctgan-n3-20260504_163938/_ctgan_train.py new file mode 100644 index 0000000000000000000000000000000000000000..932023a5c4862392815be9d0fa56d2f3dcb84b5c --- /dev/null +++ b/hyperparameter/n3/ctgan/ctgan-n3-20260504_163938/_ctgan_train.py @@ -0,0 +1,17 @@ +import pandas as pd +from ctgan.synthesizers.ctgan import CTGAN + +data = pd.read_csv("/work/output-Benchmark-trainonly-v1/n3/ctgan/ctgan-n3-20260504_163938/staged/public/train.csv") +discrete_columns = [] +model = CTGAN( + embedding_dim=16, + generator_dim=(32, 32), + discriminator_dim=(32, 32), + batch_size=80, + pac=5, + epochs=100, + verbose=True, +) +model.fit(data, discrete_columns) +model.save("/work/output-Benchmark-trainonly-v1/n3/ctgan/ctgan-n3-20260504_163938/models_100epochs/ctgan_100epochs.pt") +print("[CTGAN] Saved model ->", "/work/output-Benchmark-trainonly-v1/n3/ctgan/ctgan-n3-20260504_163938/models_100epochs/ctgan_100epochs.pt") \ No newline at end of file diff --git a/hyperparameter/n3/ctgan/ctgan-n3-20260504_163938/ctgan-n3-3918-20260504_164128.csv b/hyperparameter/n3/ctgan/ctgan-n3-20260504_163938/ctgan-n3-3918-20260504_164128.csv new file mode 100644 index 0000000000000000000000000000000000000000..5506dd849d4d391e8754bc60cff1a6da38745e26 --- /dev/null +++ b/hyperparameter/n3/ctgan/ctgan-n3-20260504_163938/ctgan-n3-3918-20260504_164128.csv @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:93d55cffc061237adad6514ad0b9d5b22ab70147932c96f5cde041ff0f2ce05c +size 821320 diff --git a/hyperparameter/n3/ctgan/ctgan-n3-20260504_163938/ctgan_metadata.json b/hyperparameter/n3/ctgan/ctgan-n3-20260504_163938/ctgan_metadata.json new file mode 100644 index 0000000000000000000000000000000000000000..40d513aa1aca4c6f5c1be8afc3d6a1a0c75aa74f --- /dev/null +++ b/hyperparameter/n3/ctgan/ctgan-n3-20260504_163938/ctgan_metadata.json @@ -0,0 +1,52 @@ +{ + "columns": [ + { + "name": "fixed acidity", + "type": "continuous" + }, + { + "name": "volatile acidity", + "type": "continuous" + }, + { + "name": "citric acid", + "type": "continuous" + }, + { + "name": "residual sugar", + "type": "continuous" + }, + { + "name": "chlorides", + "type": "continuous" + }, + { + "name": "free sulfur dioxide", + "type": "continuous" + }, + { + "name": "total sulfur dioxide", + "type": "continuous" + }, + { + "name": "density", + "type": "continuous" + }, + { + "name": "pH", + "type": "continuous" + }, + { + "name": "sulphates", + "type": "continuous" + }, + { + "name": "alcohol", + "type": "continuous" + }, + { + "name": "quality", + "type": "continuous" + } + ] +} \ No newline at end of file diff --git a/hyperparameter/n3/ctgan/ctgan-n3-20260504_163938/gen_20260504_164128.log b/hyperparameter/n3/ctgan/ctgan-n3-20260504_163938/gen_20260504_164128.log new file mode 100644 index 0000000000000000000000000000000000000000..57879be2cdd4bf15e013811741863132c1797dba --- /dev/null +++ b/hyperparameter/n3/ctgan/ctgan-n3-20260504_163938/gen_20260504_164128.log @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:92e5b04d368e83994eed81d86660bad6611d5497831634fce41b9e8e9b85993c +size 297 diff --git a/hyperparameter/n3/ctgan/ctgan-n3-20260504_163938/input_snapshot.json b/hyperparameter/n3/ctgan/ctgan-n3-20260504_163938/input_snapshot.json new file mode 100644 index 0000000000000000000000000000000000000000..15f60f257edd5bcdb6b9e07be8cb5182076affc1 --- /dev/null +++ b/hyperparameter/n3/ctgan/ctgan-n3-20260504_163938/input_snapshot.json @@ -0,0 +1,36 @@ +{ + "dataset_id": "n3", + "model": "ctgan", + "inputs": { + "train_csv": { + "path": "/data/jialinzhang/SynthesizePipeline-server/DatasetNew/n3/n3-train.csv", + "exists": true, + "size": 211519, + "sha256": "2160a06db2fea02adb0ebb79d8d853bd2544580be301e71f6e8deeb1489a9009" + }, + "val_csv": { + "path": "/data/jialinzhang/SynthesizePipeline-server/DatasetNew/n3/n3-val.csv", + "exists": true, + "size": 26499, + "sha256": "d5ccfee07dfa9e7bdee5bb87642b43828e09f74c6cc0266a3d19d9feaa83106e" + }, + "test_csv": { + "path": "/data/jialinzhang/SynthesizePipeline-server/DatasetNew/n3/n3-test.csv", + "exists": true, + "size": 26676, + "sha256": "6f83aacb0d1747b95e287352a7fff5d9d65a1c127b773852346c68485c4ede47" + }, + "profile_json": { + "path": "/data/jialinzhang/SynthesizePipeline-server/DatasetNew/artifacts/data_core/tabular/n3/n3-dataset_profile.json", + "exists": true, + "size": 5235, + "sha256": "23d2e5904a2ca90cbf8d6e3c75887681721e9b90cc705c31a680c11513d0c46f" + }, + "contract_json": { + "path": "/data/jialinzhang/SynthesizePipeline-server/DatasetNew/artifacts/data_core/tabular/n3/n3-dataset_contract_v1.json", + "exists": true, + "size": 6281, + "sha256": "c0cc56f5fe28e1b65927255c6e3c2b0e9479862c2ec6f2fea1664da36c9a3a09" + } + } +} \ No newline at end of file diff --git a/hyperparameter/n3/ctgan/ctgan-n3-20260504_163938/models_100epochs/ctgan_100epochs.pt b/hyperparameter/n3/ctgan/ctgan-n3-20260504_163938/models_100epochs/ctgan_100epochs.pt new file mode 100644 index 0000000000000000000000000000000000000000..e10bb01ab5a943d3b8f5362eaeab273814da2602 --- /dev/null +++ b/hyperparameter/n3/ctgan/ctgan-n3-20260504_163938/models_100epochs/ctgan_100epochs.pt @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:2b2544f21e5cdec77204a9e3825cdbe1d940087b75dd9cfe564b6f065929ac1d +size 441827 diff --git a/hyperparameter/n3/ctgan/ctgan-n3-20260504_163938/models_100epochs/train_20260504_163938.log b/hyperparameter/n3/ctgan/ctgan-n3-20260504_163938/models_100epochs/train_20260504_163938.log new file mode 100644 index 0000000000000000000000000000000000000000..59e77ff88703915772c30c740890d66f6dabf292 --- /dev/null +++ b/hyperparameter/n3/ctgan/ctgan-n3-20260504_163938/models_100epochs/train_20260504_163938.log @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:0c2f6cef9566b9448c26833415b07408600e7928b8caced2a247d5ed73cad578 +size 21106 diff --git a/hyperparameter/n3/ctgan/ctgan-n3-20260504_163938/public_gate/normalized_schema_snapshot.json b/hyperparameter/n3/ctgan/ctgan-n3-20260504_163938/public_gate/normalized_schema_snapshot.json new file mode 100644 index 0000000000000000000000000000000000000000..c41fe304503de23190a02e6cbfafa35b3bf134d3 --- /dev/null +++ b/hyperparameter/n3/ctgan/ctgan-n3-20260504_163938/public_gate/normalized_schema_snapshot.json @@ -0,0 +1,259 @@ +{ + "dataset_id": "n3", + "target_column": "quality", + "task_type": "classification", + "columns": [ + { + "name": "fixed acidity", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 66, + "unique_ratio": 0.016845, + "example_values": [ + "7.1", + "8.5", + "6.4", + "6.8", + "7.6" + ] + } + }, + { + "name": "volatile acidity", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 121, + "unique_ratio": 0.030883, + "example_values": [ + "0.31", + "0.21", + "0.24", + "0.43", + "0.27" + ] + } + }, + { + "name": "citric acid", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 85, + "unique_ratio": 0.021695, + "example_values": [ + "0.17", + "0.41", + "0.31", + "0.25", + "0.3" + ] + } + }, + { + "name": "residual sugar", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 296, + "unique_ratio": 0.075549, + "example_values": [ + "1", + "4.3", + "2.8", + "13", + "12.9" + ] + } + }, + { + "name": "chlorides", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 147, + "unique_ratio": 0.037519, + "example_values": [ + "0.042", + "0.036", + "0.038", + "0.047", + "0.033" + ] + } + }, + { + "name": "free sulfur dioxide", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 120, + "unique_ratio": 0.030628, + "example_values": [ + "21", + "24", + "41", + "43", + "69" + ] + } + }, + { + "name": "total sulfur dioxide", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 244, + "unique_ratio": 0.062277, + "example_values": [ + "144", + "99", + "114", + "132", + "160" + ] + } + }, + { + "name": "density", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 839, + "unique_ratio": 0.21414, + "example_values": [ + "0.99304", + "0.9947", + "0.99155", + "0.98975", + "0.99705" + ] + } + }, + { + "name": "pH", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 100, + "unique_ratio": 0.025523, + "example_values": [ + "3.13", + "3.18", + "3.37", + "3.21", + "3.16" + ] + } + }, + { + "name": "sulphates", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 78, + "unique_ratio": 0.019908, + "example_values": [ + "0.4", + "0.53", + "0.66", + "0.47", + "0.5" + ] + } + }, + { + "name": "alcohol", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 97, + "unique_ratio": 0.024758, + "example_values": [ + "9.6", + "9.7", + "11.7", + "13.4", + "8.8" + ] + } + }, + { + "name": "quality", + "role": "target", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 7, + "unique_ratio": 0.001787, + "example_values": [ + "5", + "6", + "7", + "8", + "3" + ] + } + } + ] +} \ No newline at end of file diff --git a/hyperparameter/n3/ctgan/ctgan-n3-20260504_163938/public_gate/public_gate_report.json b/hyperparameter/n3/ctgan/ctgan-n3-20260504_163938/public_gate/public_gate_report.json new file mode 100644 index 0000000000000000000000000000000000000000..93b97319f739e39079d6c6549fd2020f8a6dac25 --- /dev/null +++ b/hyperparameter/n3/ctgan/ctgan-n3-20260504_163938/public_gate/public_gate_report.json @@ -0,0 +1,37 @@ +{ + "dataset_id": "n3", + "status": "pass", + "checks": [ + { + "check_id": "PG001_csv_parse_ok", + "status": "pass" + }, + { + "check_id": "PG002_split_header_consistent", + "status": "pass" + }, + { + "check_id": "PG003_profile_header_match", + "status": "pass" + }, + { + "check_id": "PG004_missing_token_normalized", + "status": "pass" + }, + { + "check_id": "PG005_semantic_type_validated", + "status": "pass" + }, + { + "check_id": "PG006_target_defined_and_valid", + "status": "pass" + } + ], + "target_column": "quality", + "task_type": "classification", + "input_splits": { + "train": "/data/jialinzhang/SynthesizePipeline-server/DatasetNew/n3/n3-train.csv", + "val": "/data/jialinzhang/SynthesizePipeline-server/DatasetNew/n3/n3-val.csv", + "test": "/data/jialinzhang/SynthesizePipeline-server/DatasetNew/n3/n3-test.csv" + } +} \ No newline at end of file diff --git a/hyperparameter/n3/ctgan/ctgan-n3-20260504_163938/public_gate/staged_input_manifest.json b/hyperparameter/n3/ctgan/ctgan-n3-20260504_163938/public_gate/staged_input_manifest.json new file mode 100644 index 0000000000000000000000000000000000000000..b7a7573e2cd97ccdb991247365e25cfcec0b26dd --- /dev/null +++ b/hyperparameter/n3/ctgan/ctgan-n3-20260504_163938/public_gate/staged_input_manifest.json @@ -0,0 +1,264 @@ +{ + "dataset_id": "n3", + "target_column": "quality", + "task_type": "classification", + "train_csv": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/n3/ctgan/ctgan-n3-20260504_163938/staged/public/train.csv", + "val_csv": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/n3/ctgan/ctgan-n3-20260504_163938/staged/public/val.csv", + "test_csv": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/n3/ctgan/ctgan-n3-20260504_163938/staged/public/test.csv", + "features_json": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/n3/ctgan/ctgan-n3-20260504_163938/staged/public/staged_features.json", + "public_gate_report": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/n3/ctgan/ctgan-n3-20260504_163938/public_gate/public_gate_report.json", + "column_schema": [ + { + "name": "fixed acidity", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 66, + "unique_ratio": 0.016845, + "example_values": [ + "7.1", + "8.5", + "6.4", + "6.8", + "7.6" + ] + } + }, + { + "name": "volatile acidity", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 121, + "unique_ratio": 0.030883, + "example_values": [ + "0.31", + "0.21", + "0.24", + "0.43", + "0.27" + ] + } + }, + { + "name": "citric acid", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 85, + "unique_ratio": 0.021695, + "example_values": [ + "0.17", + "0.41", + "0.31", + "0.25", + "0.3" + ] + } + }, + { + "name": "residual sugar", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 296, + "unique_ratio": 0.075549, + "example_values": [ + "1", + "4.3", + "2.8", + "13", + "12.9" + ] + } + }, + { + "name": "chlorides", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 147, + "unique_ratio": 0.037519, + "example_values": [ + "0.042", + "0.036", + "0.038", + "0.047", + "0.033" + ] + } + }, + { + "name": "free sulfur dioxide", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 120, + "unique_ratio": 0.030628, + "example_values": [ + "21", + "24", + "41", + "43", + "69" + ] + } + }, + { + "name": "total sulfur dioxide", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 244, + "unique_ratio": 0.062277, + "example_values": [ + "144", + "99", + "114", + "132", + "160" + ] + } + }, + { + "name": "density", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 839, + "unique_ratio": 0.21414, + "example_values": [ + "0.99304", + "0.9947", + "0.99155", + "0.98975", + "0.99705" + ] + } + }, + { + "name": "pH", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 100, + "unique_ratio": 0.025523, + "example_values": [ + "3.13", + "3.18", + "3.37", + "3.21", + "3.16" + ] + } + }, + { + "name": "sulphates", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 78, + "unique_ratio": 0.019908, + "example_values": [ + "0.4", + "0.53", + "0.66", + "0.47", + "0.5" + ] + } + }, + { + "name": "alcohol", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 97, + "unique_ratio": 0.024758, + "example_values": [ + "9.6", + "9.7", + "11.7", + "13.4", + "8.8" + ] + } + }, + { + "name": "quality", + "role": "target", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 7, + "unique_ratio": 0.001787, + "example_values": [ + "5", + "6", + "7", + "8", + "3" + ] + } + } + ] +} \ No newline at end of file diff --git a/hyperparameter/n3/ctgan/ctgan-n3-20260504_163938/run_config.json b/hyperparameter/n3/ctgan/ctgan-n3-20260504_163938/run_config.json new file mode 100644 index 0000000000000000000000000000000000000000..3f4507d19cd409a75629d94ac8f1dafe292f4fb2 --- /dev/null +++ b/hyperparameter/n3/ctgan/ctgan-n3-20260504_163938/run_config.json @@ -0,0 +1,46 @@ +{ + "schema_version": 1, + "recorded_at": "2026-05-04T16:39:38", + "dataset_id": "n3", + "model": "ctgan", + "work_dir": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/n3/ctgan/ctgan-n3-20260504_163938", + "dataset_source_requested": "new", + "dataset_source_resolved": "new", + "cli_args": { + "model": "ctgan", + "dataset": "n3", + "dataset_source": "new", + "train": true, + "generate": true, + "num_rows": 0, + "epochs": null, + "output_dir": null, + "model_dir": null, + "work_dir": null, + "resume": false, + "no_stats": false + }, + "resolved": { + "num_rows": 3918, + "model_path": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/n3/ctgan/ctgan-n3-20260504_163938/models_100epochs/ctgan_100epochs.pt", + "output_csv": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/n3/ctgan/ctgan-n3-20260504_163938/ctgan-n3-3918-20260504_164128.csv" + }, + "input_artifacts": { + "public_gate_report": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/n3/ctgan/ctgan-n3-20260504_163938/public_gate/public_gate_report.json", + "public_manifest": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/n3/ctgan/ctgan-n3-20260504_163938/public_gate/staged_input_manifest.json", + "model_manifest": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/n3/ctgan/ctgan-n3-20260504_163938/staged/ctgan/model_input_manifest.json", + "train_csv": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/n3/ctgan/ctgan-n3-20260504_163938/staged/public/train.csv", + "features_json": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/n3/ctgan/ctgan-n3-20260504_163938/staged/public/staged_features.json", + "target_column": "quality", + "task_type": "classification" + }, + "env_overrides": { + "BENCHMARK_CTGAN_GPUS": "device=3", + "CTGAN_BATCH_SIZE": "80", + "CTGAN_DEFAULT_EPOCHS": "100", + "CTGAN_DISCRIMINATOR_DIMS": "32,32", + "CTGAN_EMBEDDING_DIM": "16", + "CTGAN_GENERATOR_DIMS": "32,32", + "CTGAN_PAC": "5" + } +} \ No newline at end of file diff --git a/hyperparameter/n3/ctgan/ctgan-n3-20260504_163938/runtime_result.json b/hyperparameter/n3/ctgan/ctgan-n3-20260504_163938/runtime_result.json new file mode 100644 index 0000000000000000000000000000000000000000..14c4db9b6a71f0808c83e0d13a0a55db4a3d1f91 --- /dev/null +++ b/hyperparameter/n3/ctgan/ctgan-n3-20260504_163938/runtime_result.json @@ -0,0 +1,27 @@ +{ + "dataset_id": "n3", + "model": "ctgan", + "run_id": "ctgan-n3-20260504_163938", + "public_gate_status": "pass", + "adapter_ready_status": "pass", + "train_status": "success", + "generate_status": "success", + "reason_code": null, + "reason_detail": null, + "artifacts": { + "synthetic_csv": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/n3/ctgan/ctgan-n3-20260504_163938/ctgan-n3-3918-20260504_164128.csv", + "model_path": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/n3/ctgan/ctgan-n3-20260504_163938/models_100epochs/ctgan_100epochs.pt" + }, + "timings": { + "train": { + "started_at": "2026-05-04T16:39:38", + "ended_at": "2026-05-04T16:41:28", + "duration_sec": 110.202 + }, + "generate": { + "started_at": "2026-05-04T16:41:28", + "ended_at": "2026-05-04T16:41:34", + "duration_sec": 6.041 + } + } +} \ No newline at end of file diff --git a/hyperparameter/n3/ctgan/ctgan-n3-20260504_163938/staged/ctgan/adapter_report.json b/hyperparameter/n3/ctgan/ctgan-n3-20260504_163938/staged/ctgan/adapter_report.json new file mode 100644 index 0000000000000000000000000000000000000000..b8485d4663ea6879e2c4a49a9919b70ae9d9efd3 --- /dev/null +++ b/hyperparameter/n3/ctgan/ctgan-n3-20260504_163938/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-Benchmark-trainonly-v1/n3/ctgan/ctgan-n3-20260504_163938/staged/ctgan/model_input_manifest.json" +} \ No newline at end of file diff --git a/hyperparameter/n3/ctgan/ctgan-n3-20260504_163938/staged/ctgan/adapter_transforms_applied.json b/hyperparameter/n3/ctgan/ctgan-n3-20260504_163938/staged/ctgan/adapter_transforms_applied.json new file mode 100644 index 0000000000000000000000000000000000000000..0637a088a01e8ddab3bf3fa98dbe804cbde1a0dc --- /dev/null +++ b/hyperparameter/n3/ctgan/ctgan-n3-20260504_163938/staged/ctgan/adapter_transforms_applied.json @@ -0,0 +1 @@ +[] \ No newline at end of file diff --git a/hyperparameter/n3/ctgan/ctgan-n3-20260504_163938/staged/ctgan/model_input_manifest.json b/hyperparameter/n3/ctgan/ctgan-n3-20260504_163938/staged/ctgan/model_input_manifest.json new file mode 100644 index 0000000000000000000000000000000000000000..c1d03a3ff894a845be3787e65c922fe900543cd5 --- /dev/null +++ b/hyperparameter/n3/ctgan/ctgan-n3-20260504_163938/staged/ctgan/model_input_manifest.json @@ -0,0 +1,266 @@ +{ + "dataset_id": "n3", + "model": "ctgan", + "target_column": "quality", + "task_type": "classification", + "column_schema": [ + { + "name": "fixed acidity", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 66, + "unique_ratio": 0.016845, + "example_values": [ + "7.1", + "8.5", + "6.4", + "6.8", + "7.6" + ] + } + }, + { + "name": "volatile acidity", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 121, + "unique_ratio": 0.030883, + "example_values": [ + "0.31", + "0.21", + "0.24", + "0.43", + "0.27" + ] + } + }, + { + "name": "citric acid", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 85, + "unique_ratio": 0.021695, + "example_values": [ + "0.17", + "0.41", + "0.31", + "0.25", + "0.3" + ] + } + }, + { + "name": "residual sugar", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 296, + "unique_ratio": 0.075549, + "example_values": [ + "1", + "4.3", + "2.8", + "13", + "12.9" + ] + } + }, + { + "name": "chlorides", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 147, + "unique_ratio": 0.037519, + "example_values": [ + "0.042", + "0.036", + "0.038", + "0.047", + "0.033" + ] + } + }, + { + "name": "free sulfur dioxide", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 120, + "unique_ratio": 0.030628, + "example_values": [ + "21", + "24", + "41", + "43", + "69" + ] + } + }, + { + "name": "total sulfur dioxide", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 244, + "unique_ratio": 0.062277, + "example_values": [ + "144", + "99", + "114", + "132", + "160" + ] + } + }, + { + "name": "density", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 839, + "unique_ratio": 0.21414, + "example_values": [ + "0.99304", + "0.9947", + "0.99155", + "0.98975", + "0.99705" + ] + } + }, + { + "name": "pH", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 100, + "unique_ratio": 0.025523, + "example_values": [ + "3.13", + "3.18", + "3.37", + "3.21", + "3.16" + ] + } + }, + { + "name": "sulphates", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 78, + "unique_ratio": 0.019908, + "example_values": [ + "0.4", + "0.53", + "0.66", + "0.47", + "0.5" + ] + } + }, + { + "name": "alcohol", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 97, + "unique_ratio": 0.024758, + "example_values": [ + "9.6", + "9.7", + "11.7", + "13.4", + "8.8" + ] + } + }, + { + "name": "quality", + "role": "target", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 7, + "unique_ratio": 0.001787, + "example_values": [ + "5", + "6", + "7", + "8", + "3" + ] + } + } + ], + "public_manifest": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/n3/ctgan/ctgan-n3-20260504_163938/public_gate/staged_input_manifest.json", + "train_csv": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/n3/ctgan/ctgan-n3-20260504_163938/staged/public/train.csv", + "val_csv": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/n3/ctgan/ctgan-n3-20260504_163938/staged/public/val.csv", + "test_csv": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/n3/ctgan/ctgan-n3-20260504_163938/staged/public/test.csv", + "features_json": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/n3/ctgan/ctgan-n3-20260504_163938/staged/public/staged_features.json", + "public_gate_report": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/n3/ctgan/ctgan-n3-20260504_163938/public_gate/public_gate_report.json" +} \ No newline at end of file diff --git a/hyperparameter/n3/ctgan/ctgan-n3-20260504_163938/staged/public/staged_features.json b/hyperparameter/n3/ctgan/ctgan-n3-20260504_163938/staged/public/staged_features.json new file mode 100644 index 0000000000000000000000000000000000000000..08fe4d766d091d2f2ddba724a16b9509cbe4c390 --- /dev/null +++ b/hyperparameter/n3/ctgan/ctgan-n3-20260504_163938/staged/public/staged_features.json @@ -0,0 +1,62 @@ +[ + { + "feature_name": "fixed acidity", + "data_type": "continuous", + "is_target": false + }, + { + "feature_name": "volatile acidity", + "data_type": "continuous", + "is_target": false + }, + { + "feature_name": "citric acid", + "data_type": "continuous", + "is_target": false + }, + { + "feature_name": "residual sugar", + "data_type": "continuous", + "is_target": false + }, + { + "feature_name": "chlorides", + "data_type": "continuous", + "is_target": false + }, + { + "feature_name": "free sulfur dioxide", + "data_type": "continuous", + "is_target": false + }, + { + "feature_name": "total sulfur dioxide", + "data_type": "continuous", + "is_target": false + }, + { + "feature_name": "density", + "data_type": "continuous", + "is_target": false + }, + { + "feature_name": "pH", + "data_type": "continuous", + "is_target": false + }, + { + "feature_name": "sulphates", + "data_type": "continuous", + "is_target": false + }, + { + "feature_name": "alcohol", + "data_type": "continuous", + "is_target": false + }, + { + "feature_name": "quality", + "data_type": "continuous", + "is_target": true + } +] \ No newline at end of file diff --git a/hyperparameter/n3/ctgan/ctgan-n3-20260504_163938/staged/public/test.csv b/hyperparameter/n3/ctgan/ctgan-n3-20260504_163938/staged/public/test.csv new file mode 100644 index 0000000000000000000000000000000000000000..db5cd50d3746410ea470625fa2ba2c8e9775cc0d --- /dev/null +++ b/hyperparameter/n3/ctgan/ctgan-n3-20260504_163938/staged/public/test.csv @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:19e107152a94432e2a37ff045c00cfe35e1be30208b1553080d7dd0ede256d3b +size 28944 diff --git a/hyperparameter/n3/ctgan/ctgan-n3-20260504_163938/staged/public/train.csv b/hyperparameter/n3/ctgan/ctgan-n3-20260504_163938/staged/public/train.csv new file mode 100644 index 0000000000000000000000000000000000000000..87ca26726fe82ccbaa397919305b043c17eb374e --- /dev/null +++ b/hyperparameter/n3/ctgan/ctgan-n3-20260504_163938/staged/public/train.csv @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:7813c8cca73ba4bfc6559215257b341c21e459980ad17ae6ddc809306bc9a0b9 +size 229945 diff --git a/hyperparameter/n3/ctgan/ctgan-n3-20260504_163938/staged/public/val.csv b/hyperparameter/n3/ctgan/ctgan-n3-20260504_163938/staged/public/val.csv new file mode 100644 index 0000000000000000000000000000000000000000..6acf84c76c47093b513c46d5503972a2dff275c0 --- /dev/null +++ b/hyperparameter/n3/ctgan/ctgan-n3-20260504_163938/staged/public/val.csv @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:cf5979d9675567d9d6642640c9b84fc6c49e492604144723c30f50516c05cee6 +size 28791 diff --git a/hyperparameter/n3/ctgan/ctgan-n3-20260504_164147/_ctgan_generate.py b/hyperparameter/n3/ctgan/ctgan-n3-20260504_164147/_ctgan_generate.py new file mode 100644 index 0000000000000000000000000000000000000000..ce16fd64962b33468b0055b7bdf9bc8546696887 --- /dev/null +++ b/hyperparameter/n3/ctgan/ctgan-n3-20260504_164147/_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-Benchmark-trainonly-v1/n3/ctgan/ctgan-n3-20260504_164147/models_200epochs/ctgan_200epochs.pt") +total = 3918 +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-Benchmark-trainonly-v1/n3/ctgan/ctgan-n3-20260504_164147/ctgan-n3-3918-20260504_164434.csv", index=False) +print("[CTGAN] Generated", total, "rows in", len(parts), "chunks ->", "/work/output-Benchmark-trainonly-v1/n3/ctgan/ctgan-n3-20260504_164147/ctgan-n3-3918-20260504_164434.csv") \ No newline at end of file diff --git a/hyperparameter/n3/ctgan/ctgan-n3-20260504_164147/_ctgan_train.py b/hyperparameter/n3/ctgan/ctgan-n3-20260504_164147/_ctgan_train.py new file mode 100644 index 0000000000000000000000000000000000000000..74c218a06e4ff52752bd2e472c3d7754f1d49e1a --- /dev/null +++ b/hyperparameter/n3/ctgan/ctgan-n3-20260504_164147/_ctgan_train.py @@ -0,0 +1,17 @@ +import pandas as pd +from ctgan.synthesizers.ctgan import CTGAN + +data = pd.read_csv("/work/output-Benchmark-trainonly-v1/n3/ctgan/ctgan-n3-20260504_164147/staged/public/train.csv") +discrete_columns = [] +model = CTGAN( + embedding_dim=32, + generator_dim=(64, 64), + discriminator_dim=(64, 64), + batch_size=100, + pac=10, + epochs=200, + verbose=True, +) +model.fit(data, discrete_columns) +model.save("/work/output-Benchmark-trainonly-v1/n3/ctgan/ctgan-n3-20260504_164147/models_200epochs/ctgan_200epochs.pt") +print("[CTGAN] Saved model ->", "/work/output-Benchmark-trainonly-v1/n3/ctgan/ctgan-n3-20260504_164147/models_200epochs/ctgan_200epochs.pt") \ No newline at end of file diff --git a/hyperparameter/n3/ctgan/ctgan-n3-20260504_164147/ctgan-n3-3918-20260504_164434.csv b/hyperparameter/n3/ctgan/ctgan-n3-20260504_164147/ctgan-n3-3918-20260504_164434.csv new file mode 100644 index 0000000000000000000000000000000000000000..f227eb8a8114bb08526db72cb68358776eff32ca --- /dev/null +++ b/hyperparameter/n3/ctgan/ctgan-n3-20260504_164147/ctgan-n3-3918-20260504_164434.csv @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:5cef0aba072b44c34ebff73200196215ccf66da1c54e39ea715d23d26bb30627 +size 820612 diff --git a/hyperparameter/n3/ctgan/ctgan-n3-20260504_164147/ctgan_metadata.json b/hyperparameter/n3/ctgan/ctgan-n3-20260504_164147/ctgan_metadata.json new file mode 100644 index 0000000000000000000000000000000000000000..40d513aa1aca4c6f5c1be8afc3d6a1a0c75aa74f --- /dev/null +++ b/hyperparameter/n3/ctgan/ctgan-n3-20260504_164147/ctgan_metadata.json @@ -0,0 +1,52 @@ +{ + "columns": [ + { + "name": "fixed acidity", + "type": "continuous" + }, + { + "name": "volatile acidity", + "type": "continuous" + }, + { + "name": "citric acid", + "type": "continuous" + }, + { + "name": "residual sugar", + "type": "continuous" + }, + { + "name": "chlorides", + "type": "continuous" + }, + { + "name": "free sulfur dioxide", + "type": "continuous" + }, + { + "name": "total sulfur dioxide", + "type": "continuous" + }, + { + "name": "density", + "type": "continuous" + }, + { + "name": "pH", + "type": "continuous" + }, + { + "name": "sulphates", + "type": "continuous" + }, + { + "name": "alcohol", + "type": "continuous" + }, + { + "name": "quality", + "type": "continuous" + } + ] +} \ No newline at end of file diff --git a/hyperparameter/n3/ctgan/ctgan-n3-20260504_164147/gen_20260504_164434.log b/hyperparameter/n3/ctgan/ctgan-n3-20260504_164147/gen_20260504_164434.log new file mode 100644 index 0000000000000000000000000000000000000000..8749b768b43f35d0ba5e644006219db24e80ffe7 --- /dev/null +++ b/hyperparameter/n3/ctgan/ctgan-n3-20260504_164147/gen_20260504_164434.log @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:539db263dc0c0a18d1e2a1f0521476c20ad046c35ae3d32287acd88d3201d894 +size 297 diff --git a/hyperparameter/n3/ctgan/ctgan-n3-20260504_164147/input_snapshot.json b/hyperparameter/n3/ctgan/ctgan-n3-20260504_164147/input_snapshot.json new file mode 100644 index 0000000000000000000000000000000000000000..15f60f257edd5bcdb6b9e07be8cb5182076affc1 --- /dev/null +++ b/hyperparameter/n3/ctgan/ctgan-n3-20260504_164147/input_snapshot.json @@ -0,0 +1,36 @@ +{ + "dataset_id": "n3", + "model": "ctgan", + "inputs": { + "train_csv": { + "path": "/data/jialinzhang/SynthesizePipeline-server/DatasetNew/n3/n3-train.csv", + "exists": true, + "size": 211519, + "sha256": "2160a06db2fea02adb0ebb79d8d853bd2544580be301e71f6e8deeb1489a9009" + }, + "val_csv": { + "path": "/data/jialinzhang/SynthesizePipeline-server/DatasetNew/n3/n3-val.csv", + "exists": true, + "size": 26499, + "sha256": "d5ccfee07dfa9e7bdee5bb87642b43828e09f74c6cc0266a3d19d9feaa83106e" + }, + "test_csv": { + "path": "/data/jialinzhang/SynthesizePipeline-server/DatasetNew/n3/n3-test.csv", + "exists": true, + "size": 26676, + "sha256": "6f83aacb0d1747b95e287352a7fff5d9d65a1c127b773852346c68485c4ede47" + }, + "profile_json": { + "path": "/data/jialinzhang/SynthesizePipeline-server/DatasetNew/artifacts/data_core/tabular/n3/n3-dataset_profile.json", + "exists": true, + "size": 5235, + "sha256": "23d2e5904a2ca90cbf8d6e3c75887681721e9b90cc705c31a680c11513d0c46f" + }, + "contract_json": { + "path": "/data/jialinzhang/SynthesizePipeline-server/DatasetNew/artifacts/data_core/tabular/n3/n3-dataset_contract_v1.json", + "exists": true, + "size": 6281, + "sha256": "c0cc56f5fe28e1b65927255c6e3c2b0e9479862c2ec6f2fea1664da36c9a3a09" + } + } +} \ No newline at end of file diff --git a/hyperparameter/n3/ctgan/ctgan-n3-20260504_164147/models_200epochs/ctgan_200epochs.pt b/hyperparameter/n3/ctgan/ctgan-n3-20260504_164147/models_200epochs/ctgan_200epochs.pt new file mode 100644 index 0000000000000000000000000000000000000000..ef89ba6c22fd659d361671b73ec6b09934aa8c28 --- /dev/null +++ b/hyperparameter/n3/ctgan/ctgan-n3-20260504_164147/models_200epochs/ctgan_200epochs.pt @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:fa07d691ce56622f2706cacae75e8a32a64d546411caa1ba705dcfebcf99da84 +size 506595 diff --git a/hyperparameter/n3/ctgan/ctgan-n3-20260504_164147/models_200epochs/train_20260504_164147.log b/hyperparameter/n3/ctgan/ctgan-n3-20260504_164147/models_200epochs/train_20260504_164147.log new file mode 100644 index 0000000000000000000000000000000000000000..6af829172e049562d45f3540f7bfebf51480e026 --- /dev/null +++ b/hyperparameter/n3/ctgan/ctgan-n3-20260504_164147/models_200epochs/train_20260504_164147.log @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:55105901e10533ebfec814533857c12e0964326487d34724b0e52896dd00db7e +size 39783 diff --git a/hyperparameter/n3/ctgan/ctgan-n3-20260504_164147/public_gate/normalized_schema_snapshot.json b/hyperparameter/n3/ctgan/ctgan-n3-20260504_164147/public_gate/normalized_schema_snapshot.json new file mode 100644 index 0000000000000000000000000000000000000000..c41fe304503de23190a02e6cbfafa35b3bf134d3 --- /dev/null +++ b/hyperparameter/n3/ctgan/ctgan-n3-20260504_164147/public_gate/normalized_schema_snapshot.json @@ -0,0 +1,259 @@ +{ + "dataset_id": "n3", + "target_column": "quality", + "task_type": "classification", + "columns": [ + { + "name": "fixed acidity", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 66, + "unique_ratio": 0.016845, + "example_values": [ + "7.1", + "8.5", + "6.4", + "6.8", + "7.6" + ] + } + }, + { + "name": "volatile acidity", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 121, + "unique_ratio": 0.030883, + "example_values": [ + "0.31", + "0.21", + "0.24", + "0.43", + "0.27" + ] + } + }, + { + "name": "citric acid", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 85, + "unique_ratio": 0.021695, + "example_values": [ + "0.17", + "0.41", + "0.31", + "0.25", + "0.3" + ] + } + }, + { + "name": "residual sugar", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 296, + "unique_ratio": 0.075549, + "example_values": [ + "1", + "4.3", + "2.8", + "13", + "12.9" + ] + } + }, + { + "name": "chlorides", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 147, + "unique_ratio": 0.037519, + "example_values": [ + "0.042", + "0.036", + "0.038", + "0.047", + "0.033" + ] + } + }, + { + "name": "free sulfur dioxide", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 120, + "unique_ratio": 0.030628, + "example_values": [ + "21", + "24", + "41", + "43", + "69" + ] + } + }, + { + "name": "total sulfur dioxide", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 244, + "unique_ratio": 0.062277, + "example_values": [ + "144", + "99", + "114", + "132", + "160" + ] + } + }, + { + "name": "density", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 839, + "unique_ratio": 0.21414, + "example_values": [ + "0.99304", + "0.9947", + "0.99155", + "0.98975", + "0.99705" + ] + } + }, + { + "name": "pH", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 100, + "unique_ratio": 0.025523, + "example_values": [ + "3.13", + "3.18", + "3.37", + "3.21", + "3.16" + ] + } + }, + { + "name": "sulphates", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 78, + "unique_ratio": 0.019908, + "example_values": [ + "0.4", + "0.53", + "0.66", + "0.47", + "0.5" + ] + } + }, + { + "name": "alcohol", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 97, + "unique_ratio": 0.024758, + "example_values": [ + "9.6", + "9.7", + "11.7", + "13.4", + "8.8" + ] + } + }, + { + "name": "quality", + "role": "target", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 7, + "unique_ratio": 0.001787, + "example_values": [ + "5", + "6", + "7", + "8", + "3" + ] + } + } + ] +} \ No newline at end of file diff --git a/hyperparameter/n3/ctgan/ctgan-n3-20260504_164147/public_gate/public_gate_report.json b/hyperparameter/n3/ctgan/ctgan-n3-20260504_164147/public_gate/public_gate_report.json new file mode 100644 index 0000000000000000000000000000000000000000..93b97319f739e39079d6c6549fd2020f8a6dac25 --- /dev/null +++ b/hyperparameter/n3/ctgan/ctgan-n3-20260504_164147/public_gate/public_gate_report.json @@ -0,0 +1,37 @@ +{ + "dataset_id": "n3", + "status": "pass", + "checks": [ + { + "check_id": "PG001_csv_parse_ok", + "status": "pass" + }, + { + "check_id": "PG002_split_header_consistent", + "status": "pass" + }, + { + "check_id": "PG003_profile_header_match", + "status": "pass" + }, + { + "check_id": "PG004_missing_token_normalized", + "status": "pass" + }, + { + "check_id": "PG005_semantic_type_validated", + "status": "pass" + }, + { + "check_id": "PG006_target_defined_and_valid", + "status": "pass" + } + ], + "target_column": "quality", + "task_type": "classification", + "input_splits": { + "train": "/data/jialinzhang/SynthesizePipeline-server/DatasetNew/n3/n3-train.csv", + "val": "/data/jialinzhang/SynthesizePipeline-server/DatasetNew/n3/n3-val.csv", + "test": "/data/jialinzhang/SynthesizePipeline-server/DatasetNew/n3/n3-test.csv" + } +} \ No newline at end of file diff --git a/hyperparameter/n3/ctgan/ctgan-n3-20260504_164147/public_gate/staged_input_manifest.json b/hyperparameter/n3/ctgan/ctgan-n3-20260504_164147/public_gate/staged_input_manifest.json new file mode 100644 index 0000000000000000000000000000000000000000..d26700f56384919a9b616b29ff8538419807c11e --- /dev/null +++ b/hyperparameter/n3/ctgan/ctgan-n3-20260504_164147/public_gate/staged_input_manifest.json @@ -0,0 +1,264 @@ +{ + "dataset_id": "n3", + "target_column": "quality", + "task_type": "classification", + "train_csv": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/n3/ctgan/ctgan-n3-20260504_164147/staged/public/train.csv", + "val_csv": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/n3/ctgan/ctgan-n3-20260504_164147/staged/public/val.csv", + "test_csv": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/n3/ctgan/ctgan-n3-20260504_164147/staged/public/test.csv", + "features_json": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/n3/ctgan/ctgan-n3-20260504_164147/staged/public/staged_features.json", + "public_gate_report": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/n3/ctgan/ctgan-n3-20260504_164147/public_gate/public_gate_report.json", + "column_schema": [ + { + "name": "fixed acidity", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 66, + "unique_ratio": 0.016845, + "example_values": [ + "7.1", + "8.5", + "6.4", + "6.8", + "7.6" + ] + } + }, + { + "name": "volatile acidity", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 121, + "unique_ratio": 0.030883, + "example_values": [ + "0.31", + "0.21", + "0.24", + "0.43", + "0.27" + ] + } + }, + { + "name": "citric acid", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 85, + "unique_ratio": 0.021695, + "example_values": [ + "0.17", + "0.41", + "0.31", + "0.25", + "0.3" + ] + } + }, + { + "name": "residual sugar", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 296, + "unique_ratio": 0.075549, + "example_values": [ + "1", + "4.3", + "2.8", + "13", + "12.9" + ] + } + }, + { + "name": "chlorides", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 147, + "unique_ratio": 0.037519, + "example_values": [ + "0.042", + "0.036", + "0.038", + "0.047", + "0.033" + ] + } + }, + { + "name": "free sulfur dioxide", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 120, + "unique_ratio": 0.030628, + "example_values": [ + "21", + "24", + "41", + "43", + "69" + ] + } + }, + { + "name": "total sulfur dioxide", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 244, + "unique_ratio": 0.062277, + "example_values": [ + "144", + "99", + "114", + "132", + "160" + ] + } + }, + { + "name": "density", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 839, + "unique_ratio": 0.21414, + "example_values": [ + "0.99304", + "0.9947", + "0.99155", + "0.98975", + "0.99705" + ] + } + }, + { + "name": "pH", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 100, + "unique_ratio": 0.025523, + "example_values": [ + "3.13", + "3.18", + "3.37", + "3.21", + "3.16" + ] + } + }, + { + "name": "sulphates", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 78, + "unique_ratio": 0.019908, + "example_values": [ + "0.4", + "0.53", + "0.66", + "0.47", + "0.5" + ] + } + }, + { + "name": "alcohol", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 97, + "unique_ratio": 0.024758, + "example_values": [ + "9.6", + "9.7", + "11.7", + "13.4", + "8.8" + ] + } + }, + { + "name": "quality", + "role": "target", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 7, + "unique_ratio": 0.001787, + "example_values": [ + "5", + "6", + "7", + "8", + "3" + ] + } + } + ] +} \ No newline at end of file diff --git a/hyperparameter/n3/ctgan/ctgan-n3-20260504_164147/run_config.json b/hyperparameter/n3/ctgan/ctgan-n3-20260504_164147/run_config.json new file mode 100644 index 0000000000000000000000000000000000000000..20cd9ca3a16c8c14ce9aed306bb5c39a752ee086 --- /dev/null +++ b/hyperparameter/n3/ctgan/ctgan-n3-20260504_164147/run_config.json @@ -0,0 +1,46 @@ +{ + "schema_version": 1, + "recorded_at": "2026-05-04T16:41:47", + "dataset_id": "n3", + "model": "ctgan", + "work_dir": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/n3/ctgan/ctgan-n3-20260504_164147", + "dataset_source_requested": "new", + "dataset_source_resolved": "new", + "cli_args": { + "model": "ctgan", + "dataset": "n3", + "dataset_source": "new", + "train": true, + "generate": true, + "num_rows": 0, + "epochs": null, + "output_dir": null, + "model_dir": null, + "work_dir": null, + "resume": false, + "no_stats": false + }, + "resolved": { + "num_rows": 3918, + "model_path": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/n3/ctgan/ctgan-n3-20260504_164147/models_200epochs/ctgan_200epochs.pt", + "output_csv": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/n3/ctgan/ctgan-n3-20260504_164147/ctgan-n3-3918-20260504_164434.csv" + }, + "input_artifacts": { + "public_gate_report": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/n3/ctgan/ctgan-n3-20260504_164147/public_gate/public_gate_report.json", + "public_manifest": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/n3/ctgan/ctgan-n3-20260504_164147/public_gate/staged_input_manifest.json", + "model_manifest": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/n3/ctgan/ctgan-n3-20260504_164147/staged/ctgan/model_input_manifest.json", + "train_csv": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/n3/ctgan/ctgan-n3-20260504_164147/staged/public/train.csv", + "features_json": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/n3/ctgan/ctgan-n3-20260504_164147/staged/public/staged_features.json", + "target_column": "quality", + "task_type": "classification" + }, + "env_overrides": { + "BENCHMARK_CTGAN_GPUS": "device=3", + "CTGAN_BATCH_SIZE": "100", + "CTGAN_DEFAULT_EPOCHS": "200", + "CTGAN_DISCRIMINATOR_DIMS": "64,64", + "CTGAN_EMBEDDING_DIM": "32", + "CTGAN_GENERATOR_DIMS": "64,64", + "CTGAN_PAC": "10" + } +} \ No newline at end of file diff --git a/hyperparameter/n3/ctgan/ctgan-n3-20260504_164147/runtime_result.json b/hyperparameter/n3/ctgan/ctgan-n3-20260504_164147/runtime_result.json new file mode 100644 index 0000000000000000000000000000000000000000..a6eb7b5ff68fee78d836eca8e47636a0cca8b3d4 --- /dev/null +++ b/hyperparameter/n3/ctgan/ctgan-n3-20260504_164147/runtime_result.json @@ -0,0 +1,27 @@ +{ + "dataset_id": "n3", + "model": "ctgan", + "run_id": "ctgan-n3-20260504_164147", + "public_gate_status": "pass", + "adapter_ready_status": "pass", + "train_status": "success", + "generate_status": "success", + "reason_code": null, + "reason_detail": null, + "artifacts": { + "synthetic_csv": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/n3/ctgan/ctgan-n3-20260504_164147/ctgan-n3-3918-20260504_164434.csv", + "model_path": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/n3/ctgan/ctgan-n3-20260504_164147/models_200epochs/ctgan_200epochs.pt" + }, + "timings": { + "train": { + "started_at": "2026-05-04T16:41:47", + "ended_at": "2026-05-04T16:44:34", + "duration_sec": 166.695 + }, + "generate": { + "started_at": "2026-05-04T16:44:34", + "ended_at": "2026-05-04T16:44:40", + "duration_sec": 5.746 + } + } +} \ No newline at end of file diff --git a/hyperparameter/n3/ctgan/ctgan-n3-20260504_164147/staged/ctgan/adapter_report.json b/hyperparameter/n3/ctgan/ctgan-n3-20260504_164147/staged/ctgan/adapter_report.json new file mode 100644 index 0000000000000000000000000000000000000000..b05358b8982cb6b8643b8f1fce66f02c3b70574c --- /dev/null +++ b/hyperparameter/n3/ctgan/ctgan-n3-20260504_164147/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-Benchmark-trainonly-v1/n3/ctgan/ctgan-n3-20260504_164147/staged/ctgan/model_input_manifest.json" +} \ No newline at end of file diff --git a/hyperparameter/n3/ctgan/ctgan-n3-20260504_164147/staged/ctgan/adapter_transforms_applied.json b/hyperparameter/n3/ctgan/ctgan-n3-20260504_164147/staged/ctgan/adapter_transforms_applied.json new file mode 100644 index 0000000000000000000000000000000000000000..0637a088a01e8ddab3bf3fa98dbe804cbde1a0dc --- /dev/null +++ b/hyperparameter/n3/ctgan/ctgan-n3-20260504_164147/staged/ctgan/adapter_transforms_applied.json @@ -0,0 +1 @@ +[] \ No newline at end of file diff --git a/hyperparameter/n3/ctgan/ctgan-n3-20260504_164147/staged/ctgan/model_input_manifest.json b/hyperparameter/n3/ctgan/ctgan-n3-20260504_164147/staged/ctgan/model_input_manifest.json new file mode 100644 index 0000000000000000000000000000000000000000..43d4a7dc16aac46136fb461c1cc04f6ac566f186 --- /dev/null +++ b/hyperparameter/n3/ctgan/ctgan-n3-20260504_164147/staged/ctgan/model_input_manifest.json @@ -0,0 +1,266 @@ +{ + "dataset_id": "n3", + "model": "ctgan", + "target_column": "quality", + "task_type": "classification", + "column_schema": [ + { + "name": "fixed acidity", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 66, + "unique_ratio": 0.016845, + "example_values": [ + "7.1", + "8.5", + "6.4", + "6.8", + "7.6" + ] + } + }, + { + "name": "volatile acidity", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 121, + "unique_ratio": 0.030883, + "example_values": [ + "0.31", + "0.21", + "0.24", + "0.43", + "0.27" + ] + } + }, + { + "name": "citric acid", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 85, + "unique_ratio": 0.021695, + "example_values": [ + "0.17", + "0.41", + "0.31", + "0.25", + "0.3" + ] + } + }, + { + "name": "residual sugar", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 296, + "unique_ratio": 0.075549, + "example_values": [ + "1", + "4.3", + "2.8", + "13", + "12.9" + ] + } + }, + { + "name": "chlorides", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 147, + "unique_ratio": 0.037519, + "example_values": [ + "0.042", + "0.036", + "0.038", + "0.047", + "0.033" + ] + } + }, + { + "name": "free sulfur dioxide", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 120, + "unique_ratio": 0.030628, + "example_values": [ + "21", + "24", + "41", + "43", + "69" + ] + } + }, + { + "name": "total sulfur dioxide", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 244, + "unique_ratio": 0.062277, + "example_values": [ + "144", + "99", + "114", + "132", + "160" + ] + } + }, + { + "name": "density", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 839, + "unique_ratio": 0.21414, + "example_values": [ + "0.99304", + "0.9947", + "0.99155", + "0.98975", + "0.99705" + ] + } + }, + { + "name": "pH", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 100, + "unique_ratio": 0.025523, + "example_values": [ + "3.13", + "3.18", + "3.37", + "3.21", + "3.16" + ] + } + }, + { + "name": "sulphates", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 78, + "unique_ratio": 0.019908, + "example_values": [ + "0.4", + "0.53", + "0.66", + "0.47", + "0.5" + ] + } + }, + { + "name": "alcohol", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 97, + "unique_ratio": 0.024758, + "example_values": [ + "9.6", + "9.7", + "11.7", + "13.4", + "8.8" + ] + } + }, + { + "name": "quality", + "role": "target", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 7, + "unique_ratio": 0.001787, + "example_values": [ + "5", + "6", + "7", + "8", + "3" + ] + } + } + ], + "public_manifest": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/n3/ctgan/ctgan-n3-20260504_164147/public_gate/staged_input_manifest.json", + "train_csv": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/n3/ctgan/ctgan-n3-20260504_164147/staged/public/train.csv", + "val_csv": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/n3/ctgan/ctgan-n3-20260504_164147/staged/public/val.csv", + "test_csv": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/n3/ctgan/ctgan-n3-20260504_164147/staged/public/test.csv", + "features_json": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/n3/ctgan/ctgan-n3-20260504_164147/staged/public/staged_features.json", + "public_gate_report": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/n3/ctgan/ctgan-n3-20260504_164147/public_gate/public_gate_report.json" +} \ No newline at end of file diff --git a/hyperparameter/n3/ctgan/ctgan-n3-20260504_164147/staged/public/staged_features.json b/hyperparameter/n3/ctgan/ctgan-n3-20260504_164147/staged/public/staged_features.json new file mode 100644 index 0000000000000000000000000000000000000000..08fe4d766d091d2f2ddba724a16b9509cbe4c390 --- /dev/null +++ b/hyperparameter/n3/ctgan/ctgan-n3-20260504_164147/staged/public/staged_features.json @@ -0,0 +1,62 @@ +[ + { + "feature_name": "fixed acidity", + "data_type": "continuous", + "is_target": false + }, + { + "feature_name": "volatile acidity", + "data_type": "continuous", + "is_target": false + }, + { + "feature_name": "citric acid", + "data_type": "continuous", + "is_target": false + }, + { + "feature_name": "residual sugar", + "data_type": "continuous", + "is_target": false + }, + { + "feature_name": "chlorides", + "data_type": "continuous", + "is_target": false + }, + { + "feature_name": "free sulfur dioxide", + "data_type": "continuous", + "is_target": false + }, + { + "feature_name": "total sulfur dioxide", + "data_type": "continuous", + "is_target": false + }, + { + "feature_name": "density", + "data_type": "continuous", + "is_target": false + }, + { + "feature_name": "pH", + "data_type": "continuous", + "is_target": false + }, + { + "feature_name": "sulphates", + "data_type": "continuous", + "is_target": false + }, + { + "feature_name": "alcohol", + "data_type": "continuous", + "is_target": false + }, + { + "feature_name": "quality", + "data_type": "continuous", + "is_target": true + } +] \ No newline at end of file diff --git a/hyperparameter/n3/ctgan/ctgan-n3-20260504_164147/staged/public/test.csv b/hyperparameter/n3/ctgan/ctgan-n3-20260504_164147/staged/public/test.csv new file mode 100644 index 0000000000000000000000000000000000000000..db5cd50d3746410ea470625fa2ba2c8e9775cc0d --- /dev/null +++ b/hyperparameter/n3/ctgan/ctgan-n3-20260504_164147/staged/public/test.csv @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:19e107152a94432e2a37ff045c00cfe35e1be30208b1553080d7dd0ede256d3b +size 28944 diff --git a/hyperparameter/n3/ctgan/ctgan-n3-20260504_164147/staged/public/train.csv b/hyperparameter/n3/ctgan/ctgan-n3-20260504_164147/staged/public/train.csv new file mode 100644 index 0000000000000000000000000000000000000000..87ca26726fe82ccbaa397919305b043c17eb374e --- /dev/null +++ b/hyperparameter/n3/ctgan/ctgan-n3-20260504_164147/staged/public/train.csv @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:7813c8cca73ba4bfc6559215257b341c21e459980ad17ae6ddc809306bc9a0b9 +size 229945 diff --git a/hyperparameter/n3/ctgan/ctgan-n3-20260504_164147/staged/public/val.csv b/hyperparameter/n3/ctgan/ctgan-n3-20260504_164147/staged/public/val.csv new file mode 100644 index 0000000000000000000000000000000000000000..6acf84c76c47093b513c46d5503972a2dff275c0 --- /dev/null +++ b/hyperparameter/n3/ctgan/ctgan-n3-20260504_164147/staged/public/val.csv @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:cf5979d9675567d9d6642640c9b84fc6c49e492604144723c30f50516c05cee6 +size 28791 diff --git a/hyperparameter/n3/forestdiffusion/forest-n3-20260505_061933/_fd_X_host.npy b/hyperparameter/n3/forestdiffusion/forest-n3-20260505_061933/_fd_X_host.npy new file mode 100644 index 0000000000000000000000000000000000000000..bb3be252292265fb98716334d40ccfaf8d75d244 --- /dev/null +++ b/hyperparameter/n3/forestdiffusion/forest-n3-20260505_061933/_fd_X_host.npy @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:b15fb02a2af34c0c93fdfe59170a6f8c933a7a529162825116447fdff3efa1ff +size 188192 diff --git a/hyperparameter/n3/forestdiffusion/forest-n3-20260505_061933/_fd_gen.py b/hyperparameter/n3/forestdiffusion/forest-n3-20260505_061933/_fd_gen.py new file mode 100644 index 0000000000000000000000000000000000000000..08176372bed652bdfc877fa24e7d1b333888c020 --- /dev/null +++ b/hyperparameter/n3/forestdiffusion/forest-n3-20260505_061933/_fd_gen.py @@ -0,0 +1,8 @@ + +import joblib, pandas as pd +m, meta = joblib.load(r'/work/output-Benchmark-trainonly-v1/n3/forestdiffusion/forest-n3-20260505_061933/forestdiffusion_model.joblib') +# generate:batch_size 为样本数 +arr = m.generate(batch_size=int(3918)) +df = pd.DataFrame(arr, columns=meta["column_names"]) +df.to_csv(r'/work/output-Benchmark-trainonly-v1/n3/forestdiffusion/forest-n3-20260505_061933/forest-n3-3918-20260505_062054.csv', index=False) +print("saved", len(df)) diff --git a/hyperparameter/n3/forestdiffusion/forest-n3-20260505_061933/_fd_meta_host.json b/hyperparameter/n3/forestdiffusion/forest-n3-20260505_061933/_fd_meta_host.json new file mode 100644 index 0000000000000000000000000000000000000000..c65de394e081438752dd19dc6672d70748924abc --- /dev/null +++ b/hyperparameter/n3/forestdiffusion/forest-n3-20260505_061933/_fd_meta_host.json @@ -0,0 +1 @@ +{"column_names": ["fixed acidity", "volatile acidity", "citric acid", "residual sugar", "chlorides", "free sulfur dioxide", "total sulfur dioxide", "density", "pH", "sulphates", "alcohol", "quality"], "cat_indexes": []} \ No newline at end of file diff --git a/hyperparameter/n3/forestdiffusion/forest-n3-20260505_061933/_fd_train.py b/hyperparameter/n3/forestdiffusion/forest-n3-20260505_061933/_fd_train.py new file mode 100644 index 0000000000000000000000000000000000000000..4dbc87f59a72d817202a2372b69085941ad27e19 --- /dev/null +++ b/hyperparameter/n3/forestdiffusion/forest-n3-20260505_061933/_fd_train.py @@ -0,0 +1,36 @@ + +import os, shutil, json +with open('/tmp/pgrep', 'w') as _f: + _f.write("#!/usr/bin/env python3\n") + _f.write("import subprocess, sys\n") + _f.write("ppid = sys.argv[-1]\n") + _f.write("out = subprocess.check_output(['ps', '-o', 'pid=', '--ppid', str(ppid)], text=True)\n") + _f.write("print(out, end='')\n") +os.chmod('/tmp/pgrep', 0o755) +os.environ['PATH'] = '/tmp:' + os.environ.get('PATH', '') +shutil.copy(r'/work/output-Benchmark-trainonly-v1/n3/forestdiffusion/forest-n3-20260505_061933/_fd_X_host.npy', '/tmp/fd_X.npy') +with open(r'/work/output-Benchmark-trainonly-v1/n3/forestdiffusion/forest-n3-20260505_061933/_fd_meta_host.json') as f: + open('/tmp/fd_meta.json','w').write(f.read()) + +import numpy as np, joblib, json, os +from ForestDiffusion import ForestDiffusionModel +X = np.load("/tmp/fd_X.npy") +with open("/tmp/fd_meta.json") as f: + meta = json.load(f) +cat_indexes = meta["cat_indexes"] +print( + "[ForestDiffusion] train config: " + f"rows={X.shape[0]} cols={X.shape[1]} n_t=4 " + f"n_estimators=5 duplicate_K=2 n_jobs=1 " + f"max_depth=3 xgb_verbosity=1", + flush=True, +) +m = ForestDiffusionModel( + X, n_t=4, n_estimators=5, duplicate_K=2, n_jobs=1, + model="xgboost", max_depth=3, tree_method="hist", cat_indexes=cat_indexes, + verbosity=1, +) +joblib.dump((m, meta), "/tmp/fd_model.joblib") +print("ForestDiffusion train OK") + +shutil.copy('/tmp/fd_model.joblib', r'/work/output-Benchmark-trainonly-v1/n3/forestdiffusion/forest-n3-20260505_061933/forestdiffusion_model.joblib') diff --git a/hyperparameter/n3/forestdiffusion/forest-n3-20260505_061933/forest-n3-3918-20260505_062054.csv b/hyperparameter/n3/forestdiffusion/forest-n3-20260505_061933/forest-n3-3918-20260505_062054.csv new file mode 100644 index 0000000000000000000000000000000000000000..e47ad47195cb81492b7ba264343ba6907bf9e9a4 --- /dev/null +++ b/hyperparameter/n3/forestdiffusion/forest-n3-20260505_061933/forest-n3-3918-20260505_062054.csv @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:11f64ba53624421ad02bcabf737ecdd512b040c34bca5aa82d3e630728cd69d5 +size 884040 diff --git a/hyperparameter/n3/forestdiffusion/forest-n3-20260505_061933/forestdiffusion_model.joblib b/hyperparameter/n3/forestdiffusion/forest-n3-20260505_061933/forestdiffusion_model.joblib new file mode 100644 index 0000000000000000000000000000000000000000..6c3eb2ec261278e63d8f49b9fe18e18abe031a07 --- /dev/null +++ b/hyperparameter/n3/forestdiffusion/forest-n3-20260505_061933/forestdiffusion_model.joblib @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:10ab08d912c8c67f19f9ebb7eba1bda99fe73b2ac41dd3d4ecdc7fe918f2c939 +size 488375 diff --git a/hyperparameter/n3/forestdiffusion/forest-n3-20260505_061933/gen_20260505_062054.log b/hyperparameter/n3/forestdiffusion/forest-n3-20260505_061933/gen_20260505_062054.log new file mode 100644 index 0000000000000000000000000000000000000000..43ba15966b8407787550104140a7679f135b3e11 --- /dev/null +++ b/hyperparameter/n3/forestdiffusion/forest-n3-20260505_061933/gen_20260505_062054.log @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:8e7ba53404e680fd3124a5bbf0be636579bca3884695582084c686ca5ba2eb3b +size 293 diff --git a/hyperparameter/n3/forestdiffusion/forest-n3-20260505_061933/input_snapshot.json b/hyperparameter/n3/forestdiffusion/forest-n3-20260505_061933/input_snapshot.json new file mode 100644 index 0000000000000000000000000000000000000000..1706b1e21e3ea594c0730d0ec7b58ca4e0d54ac2 --- /dev/null +++ b/hyperparameter/n3/forestdiffusion/forest-n3-20260505_061933/input_snapshot.json @@ -0,0 +1,36 @@ +{ + "dataset_id": "n3", + "model": "forestdiffusion", + "inputs": { + "train_csv": { + "path": "/data/jialinzhang/SynthesizePipeline-server/DatasetNew/n3/n3-train.csv", + "exists": true, + "size": 211519, + "sha256": "2160a06db2fea02adb0ebb79d8d853bd2544580be301e71f6e8deeb1489a9009" + }, + "val_csv": { + "path": "/data/jialinzhang/SynthesizePipeline-server/DatasetNew/n3/n3-val.csv", + "exists": true, + "size": 26499, + "sha256": "d5ccfee07dfa9e7bdee5bb87642b43828e09f74c6cc0266a3d19d9feaa83106e" + }, + "test_csv": { + "path": "/data/jialinzhang/SynthesizePipeline-server/DatasetNew/n3/n3-test.csv", + "exists": true, + "size": 26676, + "sha256": "6f83aacb0d1747b95e287352a7fff5d9d65a1c127b773852346c68485c4ede47" + }, + "profile_json": { + "path": "/data/jialinzhang/SynthesizePipeline-server/DatasetNew/artifacts/data_core/tabular/n3/n3-dataset_profile.json", + "exists": true, + "size": 5235, + "sha256": "23d2e5904a2ca90cbf8d6e3c75887681721e9b90cc705c31a680c11513d0c46f" + }, + "contract_json": { + "path": "/data/jialinzhang/SynthesizePipeline-server/DatasetNew/artifacts/data_core/tabular/n3/n3-dataset_contract_v1.json", + "exists": true, + "size": 6281, + "sha256": "c0cc56f5fe28e1b65927255c6e3c2b0e9479862c2ec6f2fea1664da36c9a3a09" + } + } +} \ No newline at end of file diff --git a/hyperparameter/n3/forestdiffusion/forest-n3-20260505_061933/models_fd/model.joblib b/hyperparameter/n3/forestdiffusion/forest-n3-20260505_061933/models_fd/model.joblib new file mode 100644 index 0000000000000000000000000000000000000000..6c3eb2ec261278e63d8f49b9fe18e18abe031a07 --- /dev/null +++ b/hyperparameter/n3/forestdiffusion/forest-n3-20260505_061933/models_fd/model.joblib @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:10ab08d912c8c67f19f9ebb7eba1bda99fe73b2ac41dd3d4ecdc7fe918f2c939 +size 488375 diff --git a/hyperparameter/n3/forestdiffusion/forest-n3-20260505_061933/public_gate/normalized_schema_snapshot.json b/hyperparameter/n3/forestdiffusion/forest-n3-20260505_061933/public_gate/normalized_schema_snapshot.json new file mode 100644 index 0000000000000000000000000000000000000000..c41fe304503de23190a02e6cbfafa35b3bf134d3 --- /dev/null +++ b/hyperparameter/n3/forestdiffusion/forest-n3-20260505_061933/public_gate/normalized_schema_snapshot.json @@ -0,0 +1,259 @@ +{ + "dataset_id": "n3", + "target_column": "quality", + "task_type": "classification", + "columns": [ + { + "name": "fixed acidity", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 66, + "unique_ratio": 0.016845, + "example_values": [ + "7.1", + "8.5", + "6.4", + "6.8", + "7.6" + ] + } + }, + { + "name": "volatile acidity", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 121, + "unique_ratio": 0.030883, + "example_values": [ + "0.31", + "0.21", + "0.24", + "0.43", + "0.27" + ] + } + }, + { + "name": "citric acid", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 85, + "unique_ratio": 0.021695, + "example_values": [ + "0.17", + "0.41", + "0.31", + "0.25", + "0.3" + ] + } + }, + { + "name": "residual sugar", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 296, + "unique_ratio": 0.075549, + "example_values": [ + "1", + "4.3", + "2.8", + "13", + "12.9" + ] + } + }, + { + "name": "chlorides", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 147, + "unique_ratio": 0.037519, + "example_values": [ + "0.042", + "0.036", + "0.038", + "0.047", + "0.033" + ] + } + }, + { + "name": "free sulfur dioxide", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 120, + "unique_ratio": 0.030628, + "example_values": [ + "21", + "24", + "41", + "43", + "69" + ] + } + }, + { + "name": "total sulfur dioxide", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 244, + "unique_ratio": 0.062277, + "example_values": [ + "144", + "99", + "114", + "132", + "160" + ] + } + }, + { + "name": "density", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 839, + "unique_ratio": 0.21414, + "example_values": [ + "0.99304", + "0.9947", + "0.99155", + "0.98975", + "0.99705" + ] + } + }, + { + "name": "pH", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 100, + "unique_ratio": 0.025523, + "example_values": [ + "3.13", + "3.18", + "3.37", + "3.21", + "3.16" + ] + } + }, + { + "name": "sulphates", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 78, + "unique_ratio": 0.019908, + "example_values": [ + "0.4", + "0.53", + "0.66", + "0.47", + "0.5" + ] + } + }, + { + "name": "alcohol", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 97, + "unique_ratio": 0.024758, + "example_values": [ + "9.6", + "9.7", + "11.7", + "13.4", + "8.8" + ] + } + }, + { + "name": "quality", + "role": "target", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 7, + "unique_ratio": 0.001787, + "example_values": [ + "5", + "6", + "7", + "8", + "3" + ] + } + } + ] +} \ No newline at end of file diff --git a/hyperparameter/n3/forestdiffusion/forest-n3-20260505_061933/public_gate/public_gate_report.json b/hyperparameter/n3/forestdiffusion/forest-n3-20260505_061933/public_gate/public_gate_report.json new file mode 100644 index 0000000000000000000000000000000000000000..93b97319f739e39079d6c6549fd2020f8a6dac25 --- /dev/null +++ b/hyperparameter/n3/forestdiffusion/forest-n3-20260505_061933/public_gate/public_gate_report.json @@ -0,0 +1,37 @@ +{ + "dataset_id": "n3", + "status": "pass", + "checks": [ + { + "check_id": "PG001_csv_parse_ok", + "status": "pass" + }, + { + "check_id": "PG002_split_header_consistent", + "status": "pass" + }, + { + "check_id": "PG003_profile_header_match", + "status": "pass" + }, + { + "check_id": "PG004_missing_token_normalized", + "status": "pass" + }, + { + "check_id": "PG005_semantic_type_validated", + "status": "pass" + }, + { + "check_id": "PG006_target_defined_and_valid", + "status": "pass" + } + ], + "target_column": "quality", + "task_type": "classification", + "input_splits": { + "train": "/data/jialinzhang/SynthesizePipeline-server/DatasetNew/n3/n3-train.csv", + "val": "/data/jialinzhang/SynthesizePipeline-server/DatasetNew/n3/n3-val.csv", + "test": "/data/jialinzhang/SynthesizePipeline-server/DatasetNew/n3/n3-test.csv" + } +} \ No newline at end of file diff --git a/hyperparameter/n3/forestdiffusion/forest-n3-20260505_061933/public_gate/staged_input_manifest.json b/hyperparameter/n3/forestdiffusion/forest-n3-20260505_061933/public_gate/staged_input_manifest.json new file mode 100644 index 0000000000000000000000000000000000000000..555364dac3eb6c8ffa52737f2732ef3d0ede194b --- /dev/null +++ b/hyperparameter/n3/forestdiffusion/forest-n3-20260505_061933/public_gate/staged_input_manifest.json @@ -0,0 +1,264 @@ +{ + "dataset_id": "n3", + "target_column": "quality", + "task_type": "classification", + "train_csv": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/n3/forestdiffusion/forest-n3-20260505_061933/staged/public/train.csv", + "val_csv": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/n3/forestdiffusion/forest-n3-20260505_061933/staged/public/val.csv", + "test_csv": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/n3/forestdiffusion/forest-n3-20260505_061933/staged/public/test.csv", + "features_json": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/n3/forestdiffusion/forest-n3-20260505_061933/staged/public/staged_features.json", + "public_gate_report": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/n3/forestdiffusion/forest-n3-20260505_061933/public_gate/public_gate_report.json", + "column_schema": [ + { + "name": "fixed acidity", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 66, + "unique_ratio": 0.016845, + "example_values": [ + "7.1", + "8.5", + "6.4", + "6.8", + "7.6" + ] + } + }, + { + "name": "volatile acidity", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 121, + "unique_ratio": 0.030883, + "example_values": [ + "0.31", + "0.21", + "0.24", + "0.43", + "0.27" + ] + } + }, + { + "name": "citric acid", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 85, + "unique_ratio": 0.021695, + "example_values": [ + "0.17", + "0.41", + "0.31", + "0.25", + "0.3" + ] + } + }, + { + "name": "residual sugar", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 296, + "unique_ratio": 0.075549, + "example_values": [ + "1", + "4.3", + "2.8", + "13", + "12.9" + ] + } + }, + { + "name": "chlorides", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 147, + "unique_ratio": 0.037519, + "example_values": [ + "0.042", + "0.036", + "0.038", + "0.047", + "0.033" + ] + } + }, + { + "name": "free sulfur dioxide", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 120, + "unique_ratio": 0.030628, + "example_values": [ + "21", + "24", + "41", + "43", + "69" + ] + } + }, + { + "name": "total sulfur dioxide", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 244, + "unique_ratio": 0.062277, + "example_values": [ + "144", + "99", + "114", + "132", + "160" + ] + } + }, + { + "name": "density", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 839, + "unique_ratio": 0.21414, + "example_values": [ + "0.99304", + "0.9947", + "0.99155", + "0.98975", + "0.99705" + ] + } + }, + { + "name": "pH", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 100, + "unique_ratio": 0.025523, + "example_values": [ + "3.13", + "3.18", + "3.37", + "3.21", + "3.16" + ] + } + }, + { + "name": "sulphates", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 78, + "unique_ratio": 0.019908, + "example_values": [ + "0.4", + "0.53", + "0.66", + "0.47", + "0.5" + ] + } + }, + { + "name": "alcohol", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 97, + "unique_ratio": 0.024758, + "example_values": [ + "9.6", + "9.7", + "11.7", + "13.4", + "8.8" + ] + } + }, + { + "name": "quality", + "role": "target", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 7, + "unique_ratio": 0.001787, + "example_values": [ + "5", + "6", + "7", + "8", + "3" + ] + } + } + ] +} \ No newline at end of file diff --git a/hyperparameter/n3/forestdiffusion/forest-n3-20260505_061933/run_config.json b/hyperparameter/n3/forestdiffusion/forest-n3-20260505_061933/run_config.json new file mode 100644 index 0000000000000000000000000000000000000000..8fdd774bc846747df30bde70ff249825235478c4 --- /dev/null +++ b/hyperparameter/n3/forestdiffusion/forest-n3-20260505_061933/run_config.json @@ -0,0 +1,45 @@ +{ + "schema_version": 1, + "recorded_at": "2026-05-05T06:19:33", + "dataset_id": "n3", + "model": "forestdiffusion", + "work_dir": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/n3/forestdiffusion/forest-n3-20260505_061933", + "dataset_source_requested": "new", + "dataset_source_resolved": "new", + "cli_args": { + "model": "forestdiffusion", + "dataset": "n3", + "dataset_source": "new", + "train": true, + "generate": true, + "num_rows": 0, + "epochs": null, + "output_dir": null, + "model_dir": null, + "work_dir": null, + "resume": false, + "no_stats": false + }, + "resolved": { + "num_rows": 3918, + "model_path": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/n3/forestdiffusion/forest-n3-20260505_061933/models_fd/model.joblib", + "output_csv": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/n3/forestdiffusion/forest-n3-20260505_061933/forest-n3-3918-20260505_062054.csv" + }, + "input_artifacts": { + "public_gate_report": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/n3/forestdiffusion/forest-n3-20260505_061933/public_gate/public_gate_report.json", + "public_manifest": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/n3/forestdiffusion/forest-n3-20260505_061933/public_gate/staged_input_manifest.json", + "model_manifest": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/n3/forestdiffusion/forest-n3-20260505_061933/staged/forestdiffusion/model_input_manifest.json", + "train_csv": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/n3/forestdiffusion/forest-n3-20260505_061933/staged/public/train.csv", + "features_json": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/n3/forestdiffusion/forest-n3-20260505_061933/staged/public/staged_features.json", + "target_column": "quality", + "task_type": "classification" + }, + "env_overrides": { + "FORESTDIFFUSION_DUPLICATE_K": "2", + "FORESTDIFFUSION_MAX_DEPTH": "3", + "FORESTDIFFUSION_MAX_TRAIN_ROWS": "4096", + "FORESTDIFFUSION_N_ESTIMATORS": "5", + "FORESTDIFFUSION_N_JOBS": "1", + "FORESTDIFFUSION_N_T": "4" + } +} \ No newline at end of file diff --git a/hyperparameter/n3/forestdiffusion/forest-n3-20260505_061933/runtime_result.json b/hyperparameter/n3/forestdiffusion/forest-n3-20260505_061933/runtime_result.json new file mode 100644 index 0000000000000000000000000000000000000000..58a970586a1192ded94d8dbd46a0a2a3c6cd945c --- /dev/null +++ b/hyperparameter/n3/forestdiffusion/forest-n3-20260505_061933/runtime_result.json @@ -0,0 +1,27 @@ +{ + "dataset_id": "n3", + "model": "forestdiffusion", + "run_id": "forest-n3-20260505_061933", + "public_gate_status": "pass", + "adapter_ready_status": "pass", + "train_status": "success", + "generate_status": "success", + "reason_code": null, + "reason_detail": null, + "artifacts": { + "synthetic_csv": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/n3/forestdiffusion/forest-n3-20260505_061933/forest-n3-3918-20260505_062054.csv", + "model_path": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/n3/forestdiffusion/forest-n3-20260505_061933/models_fd/model.joblib" + }, + "timings": { + "train": { + "started_at": "2026-05-05T06:19:33", + "ended_at": "2026-05-05T06:20:54", + "duration_sec": 80.666 + }, + "generate": { + "started_at": "2026-05-05T06:20:54", + "ended_at": "2026-05-05T06:20:56", + "duration_sec": 2.501 + } + } +} \ No newline at end of file diff --git a/hyperparameter/n3/forestdiffusion/forest-n3-20260505_061933/staged/forestdiffusion/adapter_report.json b/hyperparameter/n3/forestdiffusion/forest-n3-20260505_061933/staged/forestdiffusion/adapter_report.json new file mode 100644 index 0000000000000000000000000000000000000000..6e01fdb7499cd332e4d814529f6a286e856dc14a --- /dev/null +++ b/hyperparameter/n3/forestdiffusion/forest-n3-20260505_061933/staged/forestdiffusion/adapter_report.json @@ -0,0 +1,7 @@ +{ + "adapter_ready_status": "pass", + "adapter_fail_reason_code": null, + "adapter_fail_detail": null, + "adapter_transforms_applied": [], + "model_input_manifest": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/n3/forestdiffusion/forest-n3-20260505_061933/staged/forestdiffusion/model_input_manifest.json" +} \ No newline at end of file diff --git a/hyperparameter/n3/forestdiffusion/forest-n3-20260505_061933/staged/forestdiffusion/adapter_transforms_applied.json b/hyperparameter/n3/forestdiffusion/forest-n3-20260505_061933/staged/forestdiffusion/adapter_transforms_applied.json new file mode 100644 index 0000000000000000000000000000000000000000..0637a088a01e8ddab3bf3fa98dbe804cbde1a0dc --- /dev/null +++ b/hyperparameter/n3/forestdiffusion/forest-n3-20260505_061933/staged/forestdiffusion/adapter_transforms_applied.json @@ -0,0 +1 @@ +[] \ No newline at end of file diff --git a/hyperparameter/n3/forestdiffusion/forest-n3-20260505_061933/staged/forestdiffusion/model_input_manifest.json b/hyperparameter/n3/forestdiffusion/forest-n3-20260505_061933/staged/forestdiffusion/model_input_manifest.json new file mode 100644 index 0000000000000000000000000000000000000000..bae662e019b1a111dd3b54b7d50127611cf2dba7 --- /dev/null +++ b/hyperparameter/n3/forestdiffusion/forest-n3-20260505_061933/staged/forestdiffusion/model_input_manifest.json @@ -0,0 +1,266 @@ +{ + "dataset_id": "n3", + "model": "forestdiffusion", + "target_column": "quality", + "task_type": "classification", + "column_schema": [ + { + "name": "fixed acidity", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 66, + "unique_ratio": 0.016845, + "example_values": [ + "7.1", + "8.5", + "6.4", + "6.8", + "7.6" + ] + } + }, + { + "name": "volatile acidity", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 121, + "unique_ratio": 0.030883, + "example_values": [ + "0.31", + "0.21", + "0.24", + "0.43", + "0.27" + ] + } + }, + { + "name": "citric acid", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 85, + "unique_ratio": 0.021695, + "example_values": [ + "0.17", + "0.41", + "0.31", + "0.25", + "0.3" + ] + } + }, + { + "name": "residual sugar", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 296, + "unique_ratio": 0.075549, + "example_values": [ + "1", + "4.3", + "2.8", + "13", + "12.9" + ] + } + }, + { + "name": "chlorides", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 147, + "unique_ratio": 0.037519, + "example_values": [ + "0.042", + "0.036", + "0.038", + "0.047", + "0.033" + ] + } + }, + { + "name": "free sulfur dioxide", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 120, + "unique_ratio": 0.030628, + "example_values": [ + "21", + "24", + "41", + "43", + "69" + ] + } + }, + { + "name": "total sulfur dioxide", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 244, + "unique_ratio": 0.062277, + "example_values": [ + "144", + "99", + "114", + "132", + "160" + ] + } + }, + { + "name": "density", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 839, + "unique_ratio": 0.21414, + "example_values": [ + "0.99304", + "0.9947", + "0.99155", + "0.98975", + "0.99705" + ] + } + }, + { + "name": "pH", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 100, + "unique_ratio": 0.025523, + "example_values": [ + "3.13", + "3.18", + "3.37", + "3.21", + "3.16" + ] + } + }, + { + "name": "sulphates", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 78, + "unique_ratio": 0.019908, + "example_values": [ + "0.4", + "0.53", + "0.66", + "0.47", + "0.5" + ] + } + }, + { + "name": "alcohol", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 97, + "unique_ratio": 0.024758, + "example_values": [ + "9.6", + "9.7", + "11.7", + "13.4", + "8.8" + ] + } + }, + { + "name": "quality", + "role": "target", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 7, + "unique_ratio": 0.001787, + "example_values": [ + "5", + "6", + "7", + "8", + "3" + ] + } + } + ], + "public_manifest": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/n3/forestdiffusion/forest-n3-20260505_061933/public_gate/staged_input_manifest.json", + "train_csv": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/n3/forestdiffusion/forest-n3-20260505_061933/staged/public/train.csv", + "val_csv": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/n3/forestdiffusion/forest-n3-20260505_061933/staged/public/val.csv", + "test_csv": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/n3/forestdiffusion/forest-n3-20260505_061933/staged/public/test.csv", + "features_json": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/n3/forestdiffusion/forest-n3-20260505_061933/staged/public/staged_features.json", + "public_gate_report": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/n3/forestdiffusion/forest-n3-20260505_061933/public_gate/public_gate_report.json" +} \ No newline at end of file diff --git a/hyperparameter/n3/forestdiffusion/forest-n3-20260505_061933/staged/public/staged_features.json b/hyperparameter/n3/forestdiffusion/forest-n3-20260505_061933/staged/public/staged_features.json new file mode 100644 index 0000000000000000000000000000000000000000..08fe4d766d091d2f2ddba724a16b9509cbe4c390 --- /dev/null +++ b/hyperparameter/n3/forestdiffusion/forest-n3-20260505_061933/staged/public/staged_features.json @@ -0,0 +1,62 @@ +[ + { + "feature_name": "fixed acidity", + "data_type": "continuous", + "is_target": false + }, + { + "feature_name": "volatile acidity", + "data_type": "continuous", + "is_target": false + }, + { + "feature_name": "citric acid", + "data_type": "continuous", + "is_target": false + }, + { + "feature_name": "residual sugar", + "data_type": "continuous", + "is_target": false + }, + { + "feature_name": "chlorides", + "data_type": "continuous", + "is_target": false + }, + { + "feature_name": "free sulfur dioxide", + "data_type": "continuous", + "is_target": false + }, + { + "feature_name": "total sulfur dioxide", + "data_type": "continuous", + "is_target": false + }, + { + "feature_name": "density", + "data_type": "continuous", + "is_target": false + }, + { + "feature_name": "pH", + "data_type": "continuous", + "is_target": false + }, + { + "feature_name": "sulphates", + "data_type": "continuous", + "is_target": false + }, + { + "feature_name": "alcohol", + "data_type": "continuous", + "is_target": false + }, + { + "feature_name": "quality", + "data_type": "continuous", + "is_target": true + } +] \ No newline at end of file diff --git a/hyperparameter/n3/forestdiffusion/forest-n3-20260505_061933/staged/public/test.csv b/hyperparameter/n3/forestdiffusion/forest-n3-20260505_061933/staged/public/test.csv new file mode 100644 index 0000000000000000000000000000000000000000..db5cd50d3746410ea470625fa2ba2c8e9775cc0d --- /dev/null +++ b/hyperparameter/n3/forestdiffusion/forest-n3-20260505_061933/staged/public/test.csv @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:19e107152a94432e2a37ff045c00cfe35e1be30208b1553080d7dd0ede256d3b +size 28944 diff --git a/hyperparameter/n3/forestdiffusion/forest-n3-20260505_061933/staged/public/train.csv b/hyperparameter/n3/forestdiffusion/forest-n3-20260505_061933/staged/public/train.csv new file mode 100644 index 0000000000000000000000000000000000000000..87ca26726fe82ccbaa397919305b043c17eb374e --- /dev/null +++ b/hyperparameter/n3/forestdiffusion/forest-n3-20260505_061933/staged/public/train.csv @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:7813c8cca73ba4bfc6559215257b341c21e459980ad17ae6ddc809306bc9a0b9 +size 229945 diff --git a/hyperparameter/n3/forestdiffusion/forest-n3-20260505_061933/staged/public/val.csv b/hyperparameter/n3/forestdiffusion/forest-n3-20260505_061933/staged/public/val.csv new file mode 100644 index 0000000000000000000000000000000000000000..6acf84c76c47093b513c46d5503972a2dff275c0 --- /dev/null +++ b/hyperparameter/n3/forestdiffusion/forest-n3-20260505_061933/staged/public/val.csv @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:cf5979d9675567d9d6642640c9b84fc6c49e492604144723c30f50516c05cee6 +size 28791 diff --git a/hyperparameter/n3/forestdiffusion/forest-n3-20260505_061933/train_20260505_061933.log b/hyperparameter/n3/forestdiffusion/forest-n3-20260505_061933/train_20260505_061933.log new file mode 100644 index 0000000000000000000000000000000000000000..ba2784917e2d87b37614e479a54aae3ae4aeac0b --- /dev/null +++ b/hyperparameter/n3/forestdiffusion/forest-n3-20260505_061933/train_20260505_061933.log @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:0f6c6d1a25e71ee329d5cd3b5d70d013dabfe9858aba498e08dcddd6a644f18f +size 431 diff --git a/hyperparameter/n3/forestdiffusion/forest-n3-20260505_062110/_fd_X_host.npy b/hyperparameter/n3/forestdiffusion/forest-n3-20260505_062110/_fd_X_host.npy new file mode 100644 index 0000000000000000000000000000000000000000..bb3be252292265fb98716334d40ccfaf8d75d244 --- /dev/null +++ b/hyperparameter/n3/forestdiffusion/forest-n3-20260505_062110/_fd_X_host.npy @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:b15fb02a2af34c0c93fdfe59170a6f8c933a7a529162825116447fdff3efa1ff +size 188192 diff --git a/hyperparameter/n3/forestdiffusion/forest-n3-20260505_062110/_fd_gen.py b/hyperparameter/n3/forestdiffusion/forest-n3-20260505_062110/_fd_gen.py new file mode 100644 index 0000000000000000000000000000000000000000..3021d200a39d9ef26941bde91056775a851cc521 --- /dev/null +++ b/hyperparameter/n3/forestdiffusion/forest-n3-20260505_062110/_fd_gen.py @@ -0,0 +1,8 @@ + +import joblib, pandas as pd +m, meta = joblib.load(r'/work/output-Benchmark-trainonly-v1/n3/forestdiffusion/forest-n3-20260505_062110/forestdiffusion_model.joblib') +# generate:batch_size 为样本数 +arr = m.generate(batch_size=int(3918)) +df = pd.DataFrame(arr, columns=meta["column_names"]) +df.to_csv(r'/work/output-Benchmark-trainonly-v1/n3/forestdiffusion/forest-n3-20260505_062110/forest-n3-3918-20260505_062519.csv', index=False) +print("saved", len(df)) diff --git a/hyperparameter/n3/forestdiffusion/forest-n3-20260505_062110/_fd_meta_host.json b/hyperparameter/n3/forestdiffusion/forest-n3-20260505_062110/_fd_meta_host.json new file mode 100644 index 0000000000000000000000000000000000000000..c65de394e081438752dd19dc6672d70748924abc --- /dev/null +++ b/hyperparameter/n3/forestdiffusion/forest-n3-20260505_062110/_fd_meta_host.json @@ -0,0 +1 @@ +{"column_names": ["fixed acidity", "volatile acidity", "citric acid", "residual sugar", "chlorides", "free sulfur dioxide", "total sulfur dioxide", "density", "pH", "sulphates", "alcohol", "quality"], "cat_indexes": []} \ No newline at end of file diff --git a/hyperparameter/n3/forestdiffusion/forest-n3-20260505_062110/_fd_train.py b/hyperparameter/n3/forestdiffusion/forest-n3-20260505_062110/_fd_train.py new file mode 100644 index 0000000000000000000000000000000000000000..617a996ec3b7740c2e05a332bb8f06056742e3dd --- /dev/null +++ b/hyperparameter/n3/forestdiffusion/forest-n3-20260505_062110/_fd_train.py @@ -0,0 +1,36 @@ + +import os, shutil, json +with open('/tmp/pgrep', 'w') as _f: + _f.write("#!/usr/bin/env python3\n") + _f.write("import subprocess, sys\n") + _f.write("ppid = sys.argv[-1]\n") + _f.write("out = subprocess.check_output(['ps', '-o', 'pid=', '--ppid', str(ppid)], text=True)\n") + _f.write("print(out, end='')\n") +os.chmod('/tmp/pgrep', 0o755) +os.environ['PATH'] = '/tmp:' + os.environ.get('PATH', '') +shutil.copy(r'/work/output-Benchmark-trainonly-v1/n3/forestdiffusion/forest-n3-20260505_062110/_fd_X_host.npy', '/tmp/fd_X.npy') +with open(r'/work/output-Benchmark-trainonly-v1/n3/forestdiffusion/forest-n3-20260505_062110/_fd_meta_host.json') as f: + open('/tmp/fd_meta.json','w').write(f.read()) + +import numpy as np, joblib, json, os +from ForestDiffusion import ForestDiffusionModel +X = np.load("/tmp/fd_X.npy") +with open("/tmp/fd_meta.json") as f: + meta = json.load(f) +cat_indexes = meta["cat_indexes"] +print( + "[ForestDiffusion] train config: " + f"rows={X.shape[0]} cols={X.shape[1]} n_t=6 " + f"n_estimators=10 duplicate_K=3 n_jobs=1 " + f"max_depth=3 xgb_verbosity=1", + flush=True, +) +m = ForestDiffusionModel( + X, n_t=6, n_estimators=10, duplicate_K=3, n_jobs=1, + model="xgboost", max_depth=3, tree_method="hist", cat_indexes=cat_indexes, + verbosity=1, +) +joblib.dump((m, meta), "/tmp/fd_model.joblib") +print("ForestDiffusion train OK") + +shutil.copy('/tmp/fd_model.joblib', r'/work/output-Benchmark-trainonly-v1/n3/forestdiffusion/forest-n3-20260505_062110/forestdiffusion_model.joblib') diff --git a/hyperparameter/n3/forestdiffusion/forest-n3-20260505_062110/forest-n3-3918-20260505_062519.csv b/hyperparameter/n3/forestdiffusion/forest-n3-20260505_062110/forest-n3-3918-20260505_062519.csv new file mode 100644 index 0000000000000000000000000000000000000000..d99aaded7ee4e6fddcaca7c3a1131070cee4a501 --- /dev/null +++ b/hyperparameter/n3/forestdiffusion/forest-n3-20260505_062110/forest-n3-3918-20260505_062519.csv @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:7af5e3d897ad837ffdf82e3fde74f7b7dad85e83472d101b290734f0d3425921 +size 884745 diff --git a/hyperparameter/n3/forestdiffusion/forest-n3-20260505_062110/forestdiffusion_model.joblib b/hyperparameter/n3/forestdiffusion/forest-n3-20260505_062110/forestdiffusion_model.joblib new file mode 100644 index 0000000000000000000000000000000000000000..3ec161751f942381084670561b17349eb0dbbfef --- /dev/null +++ b/hyperparameter/n3/forestdiffusion/forest-n3-20260505_062110/forestdiffusion_model.joblib @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:fa4335dde9bec5bdaa17014dc51c693a9db83e187acad00e993692813ff1e5eb +size 1054283 diff --git a/hyperparameter/n3/forestdiffusion/forest-n3-20260505_062110/gen_20260505_062519.log b/hyperparameter/n3/forestdiffusion/forest-n3-20260505_062110/gen_20260505_062519.log new file mode 100644 index 0000000000000000000000000000000000000000..cf99657f49307add731d915282434f73ccce901d --- /dev/null +++ b/hyperparameter/n3/forestdiffusion/forest-n3-20260505_062110/gen_20260505_062519.log @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:db73f7006bb86a6d94a5eed265628391da50a3bd5ce1d8ca93e655b24e126fb8 +size 294 diff --git a/hyperparameter/n3/forestdiffusion/forest-n3-20260505_062110/input_snapshot.json b/hyperparameter/n3/forestdiffusion/forest-n3-20260505_062110/input_snapshot.json new file mode 100644 index 0000000000000000000000000000000000000000..1706b1e21e3ea594c0730d0ec7b58ca4e0d54ac2 --- /dev/null +++ b/hyperparameter/n3/forestdiffusion/forest-n3-20260505_062110/input_snapshot.json @@ -0,0 +1,36 @@ +{ + "dataset_id": "n3", + "model": "forestdiffusion", + "inputs": { + "train_csv": { + "path": "/data/jialinzhang/SynthesizePipeline-server/DatasetNew/n3/n3-train.csv", + "exists": true, + "size": 211519, + "sha256": "2160a06db2fea02adb0ebb79d8d853bd2544580be301e71f6e8deeb1489a9009" + }, + "val_csv": { + "path": "/data/jialinzhang/SynthesizePipeline-server/DatasetNew/n3/n3-val.csv", + "exists": true, + "size": 26499, + "sha256": "d5ccfee07dfa9e7bdee5bb87642b43828e09f74c6cc0266a3d19d9feaa83106e" + }, + "test_csv": { + "path": "/data/jialinzhang/SynthesizePipeline-server/DatasetNew/n3/n3-test.csv", + "exists": true, + "size": 26676, + "sha256": "6f83aacb0d1747b95e287352a7fff5d9d65a1c127b773852346c68485c4ede47" + }, + "profile_json": { + "path": "/data/jialinzhang/SynthesizePipeline-server/DatasetNew/artifacts/data_core/tabular/n3/n3-dataset_profile.json", + "exists": true, + "size": 5235, + "sha256": "23d2e5904a2ca90cbf8d6e3c75887681721e9b90cc705c31a680c11513d0c46f" + }, + "contract_json": { + "path": "/data/jialinzhang/SynthesizePipeline-server/DatasetNew/artifacts/data_core/tabular/n3/n3-dataset_contract_v1.json", + "exists": true, + "size": 6281, + "sha256": "c0cc56f5fe28e1b65927255c6e3c2b0e9479862c2ec6f2fea1664da36c9a3a09" + } + } +} \ No newline at end of file diff --git a/hyperparameter/n3/forestdiffusion/forest-n3-20260505_062110/models_fd/model.joblib b/hyperparameter/n3/forestdiffusion/forest-n3-20260505_062110/models_fd/model.joblib new file mode 100644 index 0000000000000000000000000000000000000000..3ec161751f942381084670561b17349eb0dbbfef --- /dev/null +++ b/hyperparameter/n3/forestdiffusion/forest-n3-20260505_062110/models_fd/model.joblib @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:fa4335dde9bec5bdaa17014dc51c693a9db83e187acad00e993692813ff1e5eb +size 1054283 diff --git a/hyperparameter/n3/forestdiffusion/forest-n3-20260505_062110/public_gate/normalized_schema_snapshot.json b/hyperparameter/n3/forestdiffusion/forest-n3-20260505_062110/public_gate/normalized_schema_snapshot.json new file mode 100644 index 0000000000000000000000000000000000000000..c41fe304503de23190a02e6cbfafa35b3bf134d3 --- /dev/null +++ b/hyperparameter/n3/forestdiffusion/forest-n3-20260505_062110/public_gate/normalized_schema_snapshot.json @@ -0,0 +1,259 @@ +{ + "dataset_id": "n3", + "target_column": "quality", + "task_type": "classification", + "columns": [ + { + "name": "fixed acidity", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 66, + "unique_ratio": 0.016845, + "example_values": [ + "7.1", + "8.5", + "6.4", + "6.8", + "7.6" + ] + } + }, + { + "name": "volatile acidity", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 121, + "unique_ratio": 0.030883, + "example_values": [ + "0.31", + "0.21", + "0.24", + "0.43", + "0.27" + ] + } + }, + { + "name": "citric acid", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 85, + "unique_ratio": 0.021695, + "example_values": [ + "0.17", + "0.41", + "0.31", + "0.25", + "0.3" + ] + } + }, + { + "name": "residual sugar", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 296, + "unique_ratio": 0.075549, + "example_values": [ + "1", + "4.3", + "2.8", + "13", + "12.9" + ] + } + }, + { + "name": "chlorides", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 147, + "unique_ratio": 0.037519, + "example_values": [ + "0.042", + "0.036", + "0.038", + "0.047", + "0.033" + ] + } + }, + { + "name": "free sulfur dioxide", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 120, + "unique_ratio": 0.030628, + "example_values": [ + "21", + "24", + "41", + "43", + "69" + ] + } + }, + { + "name": "total sulfur dioxide", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 244, + "unique_ratio": 0.062277, + "example_values": [ + "144", + "99", + "114", + "132", + "160" + ] + } + }, + { + "name": "density", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 839, + "unique_ratio": 0.21414, + "example_values": [ + "0.99304", + "0.9947", + "0.99155", + "0.98975", + "0.99705" + ] + } + }, + { + "name": "pH", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 100, + "unique_ratio": 0.025523, + "example_values": [ + "3.13", + "3.18", + "3.37", + "3.21", + "3.16" + ] + } + }, + { + "name": "sulphates", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 78, + "unique_ratio": 0.019908, + "example_values": [ + "0.4", + "0.53", + "0.66", + "0.47", + "0.5" + ] + } + }, + { + "name": "alcohol", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 97, + "unique_ratio": 0.024758, + "example_values": [ + "9.6", + "9.7", + "11.7", + "13.4", + "8.8" + ] + } + }, + { + "name": "quality", + "role": "target", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 7, + "unique_ratio": 0.001787, + "example_values": [ + "5", + "6", + "7", + "8", + "3" + ] + } + } + ] +} \ No newline at end of file diff --git a/hyperparameter/n3/forestdiffusion/forest-n3-20260505_062110/public_gate/public_gate_report.json b/hyperparameter/n3/forestdiffusion/forest-n3-20260505_062110/public_gate/public_gate_report.json new file mode 100644 index 0000000000000000000000000000000000000000..93b97319f739e39079d6c6549fd2020f8a6dac25 --- /dev/null +++ b/hyperparameter/n3/forestdiffusion/forest-n3-20260505_062110/public_gate/public_gate_report.json @@ -0,0 +1,37 @@ +{ + "dataset_id": "n3", + "status": "pass", + "checks": [ + { + "check_id": "PG001_csv_parse_ok", + "status": "pass" + }, + { + "check_id": "PG002_split_header_consistent", + "status": "pass" + }, + { + "check_id": "PG003_profile_header_match", + "status": "pass" + }, + { + "check_id": "PG004_missing_token_normalized", + "status": "pass" + }, + { + "check_id": "PG005_semantic_type_validated", + "status": "pass" + }, + { + "check_id": "PG006_target_defined_and_valid", + "status": "pass" + } + ], + "target_column": "quality", + "task_type": "classification", + "input_splits": { + "train": "/data/jialinzhang/SynthesizePipeline-server/DatasetNew/n3/n3-train.csv", + "val": "/data/jialinzhang/SynthesizePipeline-server/DatasetNew/n3/n3-val.csv", + "test": "/data/jialinzhang/SynthesizePipeline-server/DatasetNew/n3/n3-test.csv" + } +} \ No newline at end of file diff --git a/hyperparameter/n3/forestdiffusion/forest-n3-20260505_062110/public_gate/staged_input_manifest.json b/hyperparameter/n3/forestdiffusion/forest-n3-20260505_062110/public_gate/staged_input_manifest.json new file mode 100644 index 0000000000000000000000000000000000000000..e085721ba6cc421fe684e4dfc57b3113aa86903b --- /dev/null +++ b/hyperparameter/n3/forestdiffusion/forest-n3-20260505_062110/public_gate/staged_input_manifest.json @@ -0,0 +1,264 @@ +{ + "dataset_id": "n3", + "target_column": "quality", + "task_type": "classification", + "train_csv": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/n3/forestdiffusion/forest-n3-20260505_062110/staged/public/train.csv", + "val_csv": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/n3/forestdiffusion/forest-n3-20260505_062110/staged/public/val.csv", + "test_csv": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/n3/forestdiffusion/forest-n3-20260505_062110/staged/public/test.csv", + "features_json": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/n3/forestdiffusion/forest-n3-20260505_062110/staged/public/staged_features.json", + "public_gate_report": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/n3/forestdiffusion/forest-n3-20260505_062110/public_gate/public_gate_report.json", + "column_schema": [ + { + "name": "fixed acidity", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 66, + "unique_ratio": 0.016845, + "example_values": [ + "7.1", + "8.5", + "6.4", + "6.8", + "7.6" + ] + } + }, + { + "name": "volatile acidity", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 121, + "unique_ratio": 0.030883, + "example_values": [ + "0.31", + "0.21", + "0.24", + "0.43", + "0.27" + ] + } + }, + { + "name": "citric acid", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 85, + "unique_ratio": 0.021695, + "example_values": [ + "0.17", + "0.41", + "0.31", + "0.25", + "0.3" + ] + } + }, + { + "name": "residual sugar", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 296, + "unique_ratio": 0.075549, + "example_values": [ + "1", + "4.3", + "2.8", + "13", + "12.9" + ] + } + }, + { + "name": "chlorides", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 147, + "unique_ratio": 0.037519, + "example_values": [ + "0.042", + "0.036", + "0.038", + "0.047", + "0.033" + ] + } + }, + { + "name": "free sulfur dioxide", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 120, + "unique_ratio": 0.030628, + "example_values": [ + "21", + "24", + "41", + "43", + "69" + ] + } + }, + { + "name": "total sulfur dioxide", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 244, + "unique_ratio": 0.062277, + "example_values": [ + "144", + "99", + "114", + "132", + "160" + ] + } + }, + { + "name": "density", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 839, + "unique_ratio": 0.21414, + "example_values": [ + "0.99304", + "0.9947", + "0.99155", + "0.98975", + "0.99705" + ] + } + }, + { + "name": "pH", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 100, + "unique_ratio": 0.025523, + "example_values": [ + "3.13", + "3.18", + "3.37", + "3.21", + "3.16" + ] + } + }, + { + "name": "sulphates", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 78, + "unique_ratio": 0.019908, + "example_values": [ + "0.4", + "0.53", + "0.66", + "0.47", + "0.5" + ] + } + }, + { + "name": "alcohol", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 97, + "unique_ratio": 0.024758, + "example_values": [ + "9.6", + "9.7", + "11.7", + "13.4", + "8.8" + ] + } + }, + { + "name": "quality", + "role": "target", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 7, + "unique_ratio": 0.001787, + "example_values": [ + "5", + "6", + "7", + "8", + "3" + ] + } + } + ] +} \ No newline at end of file diff --git a/hyperparameter/n3/forestdiffusion/forest-n3-20260505_062110/run_config.json b/hyperparameter/n3/forestdiffusion/forest-n3-20260505_062110/run_config.json new file mode 100644 index 0000000000000000000000000000000000000000..733cb1e3f6570967cd561893b9d9197dbbe1aa21 --- /dev/null +++ b/hyperparameter/n3/forestdiffusion/forest-n3-20260505_062110/run_config.json @@ -0,0 +1,45 @@ +{ + "schema_version": 1, + "recorded_at": "2026-05-05T06:21:10", + "dataset_id": "n3", + "model": "forestdiffusion", + "work_dir": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/n3/forestdiffusion/forest-n3-20260505_062110", + "dataset_source_requested": "new", + "dataset_source_resolved": "new", + "cli_args": { + "model": "forestdiffusion", + "dataset": "n3", + "dataset_source": "new", + "train": true, + "generate": true, + "num_rows": 0, + "epochs": null, + "output_dir": null, + "model_dir": null, + "work_dir": null, + "resume": false, + "no_stats": false + }, + "resolved": { + "num_rows": 3918, + "model_path": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/n3/forestdiffusion/forest-n3-20260505_062110/models_fd/model.joblib", + "output_csv": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/n3/forestdiffusion/forest-n3-20260505_062110/forest-n3-3918-20260505_062519.csv" + }, + "input_artifacts": { + "public_gate_report": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/n3/forestdiffusion/forest-n3-20260505_062110/public_gate/public_gate_report.json", + "public_manifest": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/n3/forestdiffusion/forest-n3-20260505_062110/public_gate/staged_input_manifest.json", + "model_manifest": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/n3/forestdiffusion/forest-n3-20260505_062110/staged/forestdiffusion/model_input_manifest.json", + "train_csv": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/n3/forestdiffusion/forest-n3-20260505_062110/staged/public/train.csv", + "features_json": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/n3/forestdiffusion/forest-n3-20260505_062110/staged/public/staged_features.json", + "target_column": "quality", + "task_type": "classification" + }, + "env_overrides": { + "FORESTDIFFUSION_DUPLICATE_K": "3", + "FORESTDIFFUSION_MAX_DEPTH": "3", + "FORESTDIFFUSION_MAX_TRAIN_ROWS": "10000", + "FORESTDIFFUSION_N_ESTIMATORS": "10", + "FORESTDIFFUSION_N_JOBS": "1", + "FORESTDIFFUSION_N_T": "6" + } +} \ No newline at end of file diff --git a/hyperparameter/n3/forestdiffusion/forest-n3-20260505_062110/runtime_result.json b/hyperparameter/n3/forestdiffusion/forest-n3-20260505_062110/runtime_result.json new file mode 100644 index 0000000000000000000000000000000000000000..708227daf47af76cd18bc01718051c12921f7d60 --- /dev/null +++ b/hyperparameter/n3/forestdiffusion/forest-n3-20260505_062110/runtime_result.json @@ -0,0 +1,27 @@ +{ + "dataset_id": "n3", + "model": "forestdiffusion", + "run_id": "forest-n3-20260505_062110", + "public_gate_status": "pass", + "adapter_ready_status": "pass", + "train_status": "success", + "generate_status": "success", + "reason_code": null, + "reason_detail": null, + "artifacts": { + "synthetic_csv": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/n3/forestdiffusion/forest-n3-20260505_062110/forest-n3-3918-20260505_062519.csv", + "model_path": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/n3/forestdiffusion/forest-n3-20260505_062110/models_fd/model.joblib" + }, + "timings": { + "train": { + "started_at": "2026-05-05T06:21:10", + "ended_at": "2026-05-05T06:25:19", + "duration_sec": 249.183 + }, + "generate": { + "started_at": "2026-05-05T06:25:19", + "ended_at": "2026-05-05T06:25:22", + "duration_sec": 2.585 + } + } +} \ No newline at end of file diff --git a/hyperparameter/n3/forestdiffusion/forest-n3-20260505_062110/staged/forestdiffusion/adapter_report.json b/hyperparameter/n3/forestdiffusion/forest-n3-20260505_062110/staged/forestdiffusion/adapter_report.json new file mode 100644 index 0000000000000000000000000000000000000000..0c5763ee46635997f2abe2b4b1e2b0d40bc7bbc0 --- /dev/null +++ b/hyperparameter/n3/forestdiffusion/forest-n3-20260505_062110/staged/forestdiffusion/adapter_report.json @@ -0,0 +1,7 @@ +{ + "adapter_ready_status": "pass", + "adapter_fail_reason_code": null, + "adapter_fail_detail": null, + "adapter_transforms_applied": [], + "model_input_manifest": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/n3/forestdiffusion/forest-n3-20260505_062110/staged/forestdiffusion/model_input_manifest.json" +} \ No newline at end of file diff --git a/hyperparameter/n3/forestdiffusion/forest-n3-20260505_062110/staged/forestdiffusion/adapter_transforms_applied.json b/hyperparameter/n3/forestdiffusion/forest-n3-20260505_062110/staged/forestdiffusion/adapter_transforms_applied.json new file mode 100644 index 0000000000000000000000000000000000000000..0637a088a01e8ddab3bf3fa98dbe804cbde1a0dc --- /dev/null +++ b/hyperparameter/n3/forestdiffusion/forest-n3-20260505_062110/staged/forestdiffusion/adapter_transforms_applied.json @@ -0,0 +1 @@ +[] \ No newline at end of file diff --git a/hyperparameter/n3/forestdiffusion/forest-n3-20260505_062110/staged/forestdiffusion/model_input_manifest.json b/hyperparameter/n3/forestdiffusion/forest-n3-20260505_062110/staged/forestdiffusion/model_input_manifest.json new file mode 100644 index 0000000000000000000000000000000000000000..b1e2861d72928b8deba2ee2f309b68017075a76a --- /dev/null +++ b/hyperparameter/n3/forestdiffusion/forest-n3-20260505_062110/staged/forestdiffusion/model_input_manifest.json @@ -0,0 +1,266 @@ +{ + "dataset_id": "n3", + "model": "forestdiffusion", + "target_column": "quality", + "task_type": "classification", + "column_schema": [ + { + "name": "fixed acidity", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 66, + "unique_ratio": 0.016845, + "example_values": [ + "7.1", + "8.5", + "6.4", + "6.8", + "7.6" + ] + } + }, + { + "name": "volatile acidity", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 121, + "unique_ratio": 0.030883, + "example_values": [ + "0.31", + "0.21", + "0.24", + "0.43", + "0.27" + ] + } + }, + { + "name": "citric acid", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 85, + "unique_ratio": 0.021695, + "example_values": [ + "0.17", + "0.41", + "0.31", + "0.25", + "0.3" + ] + } + }, + { + "name": "residual sugar", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 296, + "unique_ratio": 0.075549, + "example_values": [ + "1", + "4.3", + "2.8", + "13", + "12.9" + ] + } + }, + { + "name": "chlorides", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 147, + "unique_ratio": 0.037519, + "example_values": [ + "0.042", + "0.036", + "0.038", + "0.047", + "0.033" + ] + } + }, + { + "name": "free sulfur dioxide", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 120, + "unique_ratio": 0.030628, + "example_values": [ + "21", + "24", + "41", + "43", + "69" + ] + } + }, + { + "name": "total sulfur dioxide", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 244, + "unique_ratio": 0.062277, + "example_values": [ + "144", + "99", + "114", + "132", + "160" + ] + } + }, + { + "name": "density", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 839, + "unique_ratio": 0.21414, + "example_values": [ + "0.99304", + "0.9947", + "0.99155", + "0.98975", + "0.99705" + ] + } + }, + { + "name": "pH", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 100, + "unique_ratio": 0.025523, + "example_values": [ + "3.13", + "3.18", + "3.37", + "3.21", + "3.16" + ] + } + }, + { + "name": "sulphates", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 78, + "unique_ratio": 0.019908, + "example_values": [ + "0.4", + "0.53", + "0.66", + "0.47", + "0.5" + ] + } + }, + { + "name": "alcohol", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 97, + "unique_ratio": 0.024758, + "example_values": [ + "9.6", + "9.7", + "11.7", + "13.4", + "8.8" + ] + } + }, + { + "name": "quality", + "role": "target", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 7, + "unique_ratio": 0.001787, + "example_values": [ + "5", + "6", + "7", + "8", + "3" + ] + } + } + ], + "public_manifest": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/n3/forestdiffusion/forest-n3-20260505_062110/public_gate/staged_input_manifest.json", + "train_csv": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/n3/forestdiffusion/forest-n3-20260505_062110/staged/public/train.csv", + "val_csv": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/n3/forestdiffusion/forest-n3-20260505_062110/staged/public/val.csv", + "test_csv": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/n3/forestdiffusion/forest-n3-20260505_062110/staged/public/test.csv", + "features_json": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/n3/forestdiffusion/forest-n3-20260505_062110/staged/public/staged_features.json", + "public_gate_report": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/n3/forestdiffusion/forest-n3-20260505_062110/public_gate/public_gate_report.json" +} \ No newline at end of file diff --git a/hyperparameter/n3/forestdiffusion/forest-n3-20260505_062110/staged/public/staged_features.json b/hyperparameter/n3/forestdiffusion/forest-n3-20260505_062110/staged/public/staged_features.json new file mode 100644 index 0000000000000000000000000000000000000000..08fe4d766d091d2f2ddba724a16b9509cbe4c390 --- /dev/null +++ b/hyperparameter/n3/forestdiffusion/forest-n3-20260505_062110/staged/public/staged_features.json @@ -0,0 +1,62 @@ +[ + { + "feature_name": "fixed acidity", + "data_type": "continuous", + "is_target": false + }, + { + "feature_name": "volatile acidity", + "data_type": "continuous", + "is_target": false + }, + { + "feature_name": "citric acid", + "data_type": "continuous", + "is_target": false + }, + { + "feature_name": "residual sugar", + "data_type": "continuous", + "is_target": false + }, + { + "feature_name": "chlorides", + "data_type": "continuous", + "is_target": false + }, + { + "feature_name": "free sulfur dioxide", + "data_type": "continuous", + "is_target": false + }, + { + "feature_name": "total sulfur dioxide", + "data_type": "continuous", + "is_target": false + }, + { + "feature_name": "density", + "data_type": "continuous", + "is_target": false + }, + { + "feature_name": "pH", + "data_type": "continuous", + "is_target": false + }, + { + "feature_name": "sulphates", + "data_type": "continuous", + "is_target": false + }, + { + "feature_name": "alcohol", + "data_type": "continuous", + "is_target": false + }, + { + "feature_name": "quality", + "data_type": "continuous", + "is_target": true + } +] \ No newline at end of file diff --git a/hyperparameter/n3/forestdiffusion/forest-n3-20260505_062110/staged/public/test.csv b/hyperparameter/n3/forestdiffusion/forest-n3-20260505_062110/staged/public/test.csv new file mode 100644 index 0000000000000000000000000000000000000000..db5cd50d3746410ea470625fa2ba2c8e9775cc0d --- /dev/null +++ b/hyperparameter/n3/forestdiffusion/forest-n3-20260505_062110/staged/public/test.csv @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:19e107152a94432e2a37ff045c00cfe35e1be30208b1553080d7dd0ede256d3b +size 28944 diff --git a/hyperparameter/n3/forestdiffusion/forest-n3-20260505_062110/staged/public/train.csv b/hyperparameter/n3/forestdiffusion/forest-n3-20260505_062110/staged/public/train.csv new file mode 100644 index 0000000000000000000000000000000000000000..87ca26726fe82ccbaa397919305b043c17eb374e --- /dev/null +++ b/hyperparameter/n3/forestdiffusion/forest-n3-20260505_062110/staged/public/train.csv @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:7813c8cca73ba4bfc6559215257b341c21e459980ad17ae6ddc809306bc9a0b9 +size 229945 diff --git a/hyperparameter/n3/forestdiffusion/forest-n3-20260505_062110/staged/public/val.csv b/hyperparameter/n3/forestdiffusion/forest-n3-20260505_062110/staged/public/val.csv new file mode 100644 index 0000000000000000000000000000000000000000..6acf84c76c47093b513c46d5503972a2dff275c0 --- /dev/null +++ b/hyperparameter/n3/forestdiffusion/forest-n3-20260505_062110/staged/public/val.csv @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:cf5979d9675567d9d6642640c9b84fc6c49e492604144723c30f50516c05cee6 +size 28791 diff --git a/hyperparameter/n3/forestdiffusion/forest-n3-20260505_062110/train_20260505_062110.log b/hyperparameter/n3/forestdiffusion/forest-n3-20260505_062110/train_20260505_062110.log new file mode 100644 index 0000000000000000000000000000000000000000..b6b1d1e4097eae38053af920be6a4d0b1f73173a --- /dev/null +++ b/hyperparameter/n3/forestdiffusion/forest-n3-20260505_062110/train_20260505_062110.log @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:71784c7aa3704a5550ad05bf0fee2e647630f38726ea6710b7b5ade05e90c91e +size 433 diff --git a/hyperparameter/n3/forestdiffusion/forest-n3-20260505_062535/_fd_X_host.npy b/hyperparameter/n3/forestdiffusion/forest-n3-20260505_062535/_fd_X_host.npy new file mode 100644 index 0000000000000000000000000000000000000000..bb3be252292265fb98716334d40ccfaf8d75d244 --- /dev/null +++ b/hyperparameter/n3/forestdiffusion/forest-n3-20260505_062535/_fd_X_host.npy @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:b15fb02a2af34c0c93fdfe59170a6f8c933a7a529162825116447fdff3efa1ff +size 188192 diff --git a/hyperparameter/n3/forestdiffusion/forest-n3-20260505_062535/_fd_gen.py b/hyperparameter/n3/forestdiffusion/forest-n3-20260505_062535/_fd_gen.py new file mode 100644 index 0000000000000000000000000000000000000000..c5de3238bd03eb73e25dedfd351e2bac7fe357eb --- /dev/null +++ b/hyperparameter/n3/forestdiffusion/forest-n3-20260505_062535/_fd_gen.py @@ -0,0 +1,8 @@ + +import joblib, pandas as pd +m, meta = joblib.load(r'/work/output-Benchmark-trainonly-v1/n3/forestdiffusion/forest-n3-20260505_062535/forestdiffusion_model.joblib') +# generate:batch_size 为样本数 +arr = m.generate(batch_size=int(3918)) +df = pd.DataFrame(arr, columns=meta["column_names"]) +df.to_csv(r'/work/output-Benchmark-trainonly-v1/n3/forestdiffusion/forest-n3-20260505_062535/forest-n3-3918-20260505_063224.csv', index=False) +print("saved", len(df)) diff --git a/hyperparameter/n3/forestdiffusion/forest-n3-20260505_062535/_fd_meta_host.json b/hyperparameter/n3/forestdiffusion/forest-n3-20260505_062535/_fd_meta_host.json new file mode 100644 index 0000000000000000000000000000000000000000..c65de394e081438752dd19dc6672d70748924abc --- /dev/null +++ b/hyperparameter/n3/forestdiffusion/forest-n3-20260505_062535/_fd_meta_host.json @@ -0,0 +1 @@ +{"column_names": ["fixed acidity", "volatile acidity", "citric acid", "residual sugar", "chlorides", "free sulfur dioxide", "total sulfur dioxide", "density", "pH", "sulphates", "alcohol", "quality"], "cat_indexes": []} \ No newline at end of file diff --git a/hyperparameter/n3/forestdiffusion/forest-n3-20260505_062535/_fd_train.py b/hyperparameter/n3/forestdiffusion/forest-n3-20260505_062535/_fd_train.py new file mode 100644 index 0000000000000000000000000000000000000000..db4a0deeba3c0768780010ed66ff01f602a67c75 --- /dev/null +++ b/hyperparameter/n3/forestdiffusion/forest-n3-20260505_062535/_fd_train.py @@ -0,0 +1,36 @@ + +import os, shutil, json +with open('/tmp/pgrep', 'w') as _f: + _f.write("#!/usr/bin/env python3\n") + _f.write("import subprocess, sys\n") + _f.write("ppid = sys.argv[-1]\n") + _f.write("out = subprocess.check_output(['ps', '-o', 'pid=', '--ppid', str(ppid)], text=True)\n") + _f.write("print(out, end='')\n") +os.chmod('/tmp/pgrep', 0o755) +os.environ['PATH'] = '/tmp:' + os.environ.get('PATH', '') +shutil.copy(r'/work/output-Benchmark-trainonly-v1/n3/forestdiffusion/forest-n3-20260505_062535/_fd_X_host.npy', '/tmp/fd_X.npy') +with open(r'/work/output-Benchmark-trainonly-v1/n3/forestdiffusion/forest-n3-20260505_062535/_fd_meta_host.json') as f: + open('/tmp/fd_meta.json','w').write(f.read()) + +import numpy as np, joblib, json, os +from ForestDiffusion import ForestDiffusionModel +X = np.load("/tmp/fd_X.npy") +with open("/tmp/fd_meta.json") as f: + meta = json.load(f) +cat_indexes = meta["cat_indexes"] +print( + "[ForestDiffusion] train config: " + f"rows={X.shape[0]} cols={X.shape[1]} n_t=8 " + f"n_estimators=10 duplicate_K=4 n_jobs=1 " + f"max_depth=4 xgb_verbosity=1", + flush=True, +) +m = ForestDiffusionModel( + X, n_t=8, n_estimators=10, duplicate_K=4, n_jobs=1, + model="xgboost", max_depth=4, tree_method="hist", cat_indexes=cat_indexes, + verbosity=1, +) +joblib.dump((m, meta), "/tmp/fd_model.joblib") +print("ForestDiffusion train OK") + +shutil.copy('/tmp/fd_model.joblib', r'/work/output-Benchmark-trainonly-v1/n3/forestdiffusion/forest-n3-20260505_062535/forestdiffusion_model.joblib') diff --git a/hyperparameter/n3/forestdiffusion/forest-n3-20260505_062535/forest-n3-3918-20260505_063224.csv b/hyperparameter/n3/forestdiffusion/forest-n3-20260505_062535/forest-n3-3918-20260505_063224.csv new file mode 100644 index 0000000000000000000000000000000000000000..e8659263d9a3bb0cf78c120ee7299b84d5edfc15 --- /dev/null +++ b/hyperparameter/n3/forestdiffusion/forest-n3-20260505_062535/forest-n3-3918-20260505_063224.csv @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:20d8b32d1420936addbf8d3e7cef2a7d5dbe62a958a0c0a6c02219ab4e0f5c88 +size 884853 diff --git a/hyperparameter/n3/forestdiffusion/forest-n3-20260505_062535/forestdiffusion_model.joblib b/hyperparameter/n3/forestdiffusion/forest-n3-20260505_062535/forestdiffusion_model.joblib new file mode 100644 index 0000000000000000000000000000000000000000..e7ef048da6cbffe804f71bcd60c55f29dd382017 --- /dev/null +++ b/hyperparameter/n3/forestdiffusion/forest-n3-20260505_062535/forestdiffusion_model.joblib @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:883982731dfee6f47a1020d15f22ab02a4819d64e3b7114e924aacaa360a8bab +size 1858151 diff --git a/hyperparameter/n3/forestdiffusion/forest-n3-20260505_062535/gen_20260505_063224.log b/hyperparameter/n3/forestdiffusion/forest-n3-20260505_062535/gen_20260505_063224.log new file mode 100644 index 0000000000000000000000000000000000000000..57596cf7bcba86f7f0322b81b980128cf6646e39 --- /dev/null +++ b/hyperparameter/n3/forestdiffusion/forest-n3-20260505_062535/gen_20260505_063224.log @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:6e3f68bbf2666ec0574ebb73577a7c07a8a2677cbaefa1de6863311444b1ae15 +size 294 diff --git a/hyperparameter/n3/forestdiffusion/forest-n3-20260505_062535/input_snapshot.json b/hyperparameter/n3/forestdiffusion/forest-n3-20260505_062535/input_snapshot.json new file mode 100644 index 0000000000000000000000000000000000000000..1706b1e21e3ea594c0730d0ec7b58ca4e0d54ac2 --- /dev/null +++ b/hyperparameter/n3/forestdiffusion/forest-n3-20260505_062535/input_snapshot.json @@ -0,0 +1,36 @@ +{ + "dataset_id": "n3", + "model": "forestdiffusion", + "inputs": { + "train_csv": { + "path": "/data/jialinzhang/SynthesizePipeline-server/DatasetNew/n3/n3-train.csv", + "exists": true, + "size": 211519, + "sha256": "2160a06db2fea02adb0ebb79d8d853bd2544580be301e71f6e8deeb1489a9009" + }, + "val_csv": { + "path": "/data/jialinzhang/SynthesizePipeline-server/DatasetNew/n3/n3-val.csv", + "exists": true, + "size": 26499, + "sha256": "d5ccfee07dfa9e7bdee5bb87642b43828e09f74c6cc0266a3d19d9feaa83106e" + }, + "test_csv": { + "path": "/data/jialinzhang/SynthesizePipeline-server/DatasetNew/n3/n3-test.csv", + "exists": true, + "size": 26676, + "sha256": "6f83aacb0d1747b95e287352a7fff5d9d65a1c127b773852346c68485c4ede47" + }, + "profile_json": { + "path": "/data/jialinzhang/SynthesizePipeline-server/DatasetNew/artifacts/data_core/tabular/n3/n3-dataset_profile.json", + "exists": true, + "size": 5235, + "sha256": "23d2e5904a2ca90cbf8d6e3c75887681721e9b90cc705c31a680c11513d0c46f" + }, + "contract_json": { + "path": "/data/jialinzhang/SynthesizePipeline-server/DatasetNew/artifacts/data_core/tabular/n3/n3-dataset_contract_v1.json", + "exists": true, + "size": 6281, + "sha256": "c0cc56f5fe28e1b65927255c6e3c2b0e9479862c2ec6f2fea1664da36c9a3a09" + } + } +} \ No newline at end of file diff --git a/hyperparameter/n3/forestdiffusion/forest-n3-20260505_062535/models_fd/model.joblib b/hyperparameter/n3/forestdiffusion/forest-n3-20260505_062535/models_fd/model.joblib new file mode 100644 index 0000000000000000000000000000000000000000..e7ef048da6cbffe804f71bcd60c55f29dd382017 --- /dev/null +++ b/hyperparameter/n3/forestdiffusion/forest-n3-20260505_062535/models_fd/model.joblib @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:883982731dfee6f47a1020d15f22ab02a4819d64e3b7114e924aacaa360a8bab +size 1858151 diff --git a/hyperparameter/n3/forestdiffusion/forest-n3-20260505_062535/public_gate/normalized_schema_snapshot.json b/hyperparameter/n3/forestdiffusion/forest-n3-20260505_062535/public_gate/normalized_schema_snapshot.json new file mode 100644 index 0000000000000000000000000000000000000000..c41fe304503de23190a02e6cbfafa35b3bf134d3 --- /dev/null +++ b/hyperparameter/n3/forestdiffusion/forest-n3-20260505_062535/public_gate/normalized_schema_snapshot.json @@ -0,0 +1,259 @@ +{ + "dataset_id": "n3", + "target_column": "quality", + "task_type": "classification", + "columns": [ + { + "name": "fixed acidity", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 66, + "unique_ratio": 0.016845, + "example_values": [ + "7.1", + "8.5", + "6.4", + "6.8", + "7.6" + ] + } + }, + { + "name": "volatile acidity", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 121, + "unique_ratio": 0.030883, + "example_values": [ + "0.31", + "0.21", + "0.24", + "0.43", + "0.27" + ] + } + }, + { + "name": "citric acid", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 85, + "unique_ratio": 0.021695, + "example_values": [ + "0.17", + "0.41", + "0.31", + "0.25", + "0.3" + ] + } + }, + { + "name": "residual sugar", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 296, + "unique_ratio": 0.075549, + "example_values": [ + "1", + "4.3", + "2.8", + "13", + "12.9" + ] + } + }, + { + "name": "chlorides", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 147, + "unique_ratio": 0.037519, + "example_values": [ + "0.042", + "0.036", + "0.038", + "0.047", + "0.033" + ] + } + }, + { + "name": "free sulfur dioxide", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 120, + "unique_ratio": 0.030628, + "example_values": [ + "21", + "24", + "41", + "43", + "69" + ] + } + }, + { + "name": "total sulfur dioxide", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 244, + "unique_ratio": 0.062277, + "example_values": [ + "144", + "99", + "114", + "132", + "160" + ] + } + }, + { + "name": "density", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 839, + "unique_ratio": 0.21414, + "example_values": [ + "0.99304", + "0.9947", + "0.99155", + "0.98975", + "0.99705" + ] + } + }, + { + "name": "pH", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 100, + "unique_ratio": 0.025523, + "example_values": [ + "3.13", + "3.18", + "3.37", + "3.21", + "3.16" + ] + } + }, + { + "name": "sulphates", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 78, + "unique_ratio": 0.019908, + "example_values": [ + "0.4", + "0.53", + "0.66", + "0.47", + "0.5" + ] + } + }, + { + "name": "alcohol", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 97, + "unique_ratio": 0.024758, + "example_values": [ + "9.6", + "9.7", + "11.7", + "13.4", + "8.8" + ] + } + }, + { + "name": "quality", + "role": "target", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 7, + "unique_ratio": 0.001787, + "example_values": [ + "5", + "6", + "7", + "8", + "3" + ] + } + } + ] +} \ No newline at end of file diff --git a/hyperparameter/n3/forestdiffusion/forest-n3-20260505_062535/public_gate/public_gate_report.json b/hyperparameter/n3/forestdiffusion/forest-n3-20260505_062535/public_gate/public_gate_report.json new file mode 100644 index 0000000000000000000000000000000000000000..93b97319f739e39079d6c6549fd2020f8a6dac25 --- /dev/null +++ b/hyperparameter/n3/forestdiffusion/forest-n3-20260505_062535/public_gate/public_gate_report.json @@ -0,0 +1,37 @@ +{ + "dataset_id": "n3", + "status": "pass", + "checks": [ + { + "check_id": "PG001_csv_parse_ok", + "status": "pass" + }, + { + "check_id": "PG002_split_header_consistent", + "status": "pass" + }, + { + "check_id": "PG003_profile_header_match", + "status": "pass" + }, + { + "check_id": "PG004_missing_token_normalized", + "status": "pass" + }, + { + "check_id": "PG005_semantic_type_validated", + "status": "pass" + }, + { + "check_id": "PG006_target_defined_and_valid", + "status": "pass" + } + ], + "target_column": "quality", + "task_type": "classification", + "input_splits": { + "train": "/data/jialinzhang/SynthesizePipeline-server/DatasetNew/n3/n3-train.csv", + "val": "/data/jialinzhang/SynthesizePipeline-server/DatasetNew/n3/n3-val.csv", + "test": "/data/jialinzhang/SynthesizePipeline-server/DatasetNew/n3/n3-test.csv" + } +} \ No newline at end of file diff --git a/hyperparameter/n3/forestdiffusion/forest-n3-20260505_062535/public_gate/staged_input_manifest.json b/hyperparameter/n3/forestdiffusion/forest-n3-20260505_062535/public_gate/staged_input_manifest.json new file mode 100644 index 0000000000000000000000000000000000000000..25b8dc54f8868bf43e662643e23e7375e6ec4647 --- /dev/null +++ b/hyperparameter/n3/forestdiffusion/forest-n3-20260505_062535/public_gate/staged_input_manifest.json @@ -0,0 +1,264 @@ +{ + "dataset_id": "n3", + "target_column": "quality", + "task_type": "classification", + "train_csv": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/n3/forestdiffusion/forest-n3-20260505_062535/staged/public/train.csv", + "val_csv": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/n3/forestdiffusion/forest-n3-20260505_062535/staged/public/val.csv", + "test_csv": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/n3/forestdiffusion/forest-n3-20260505_062535/staged/public/test.csv", + "features_json": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/n3/forestdiffusion/forest-n3-20260505_062535/staged/public/staged_features.json", + "public_gate_report": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/n3/forestdiffusion/forest-n3-20260505_062535/public_gate/public_gate_report.json", + "column_schema": [ + { + "name": "fixed acidity", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 66, + "unique_ratio": 0.016845, + "example_values": [ + "7.1", + "8.5", + "6.4", + "6.8", + "7.6" + ] + } + }, + { + "name": "volatile acidity", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 121, + "unique_ratio": 0.030883, + "example_values": [ + "0.31", + "0.21", + "0.24", + "0.43", + "0.27" + ] + } + }, + { + "name": "citric acid", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 85, + "unique_ratio": 0.021695, + "example_values": [ + "0.17", + "0.41", + "0.31", + "0.25", + "0.3" + ] + } + }, + { + "name": "residual sugar", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 296, + "unique_ratio": 0.075549, + "example_values": [ + "1", + "4.3", + "2.8", + "13", + "12.9" + ] + } + }, + { + "name": "chlorides", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 147, + "unique_ratio": 0.037519, + "example_values": [ + "0.042", + "0.036", + "0.038", + "0.047", + "0.033" + ] + } + }, + { + "name": "free sulfur dioxide", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 120, + "unique_ratio": 0.030628, + "example_values": [ + "21", + "24", + "41", + "43", + "69" + ] + } + }, + { + "name": "total sulfur dioxide", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 244, + "unique_ratio": 0.062277, + "example_values": [ + "144", + "99", + "114", + "132", + "160" + ] + } + }, + { + "name": "density", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 839, + "unique_ratio": 0.21414, + "example_values": [ + "0.99304", + "0.9947", + "0.99155", + "0.98975", + "0.99705" + ] + } + }, + { + "name": "pH", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 100, + "unique_ratio": 0.025523, + "example_values": [ + "3.13", + "3.18", + "3.37", + "3.21", + "3.16" + ] + } + }, + { + "name": "sulphates", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 78, + "unique_ratio": 0.019908, + "example_values": [ + "0.4", + "0.53", + "0.66", + "0.47", + "0.5" + ] + } + }, + { + "name": "alcohol", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 97, + "unique_ratio": 0.024758, + "example_values": [ + "9.6", + "9.7", + "11.7", + "13.4", + "8.8" + ] + } + }, + { + "name": "quality", + "role": "target", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 7, + "unique_ratio": 0.001787, + "example_values": [ + "5", + "6", + "7", + "8", + "3" + ] + } + } + ] +} \ No newline at end of file diff --git a/hyperparameter/n3/forestdiffusion/forest-n3-20260505_062535/run_config.json b/hyperparameter/n3/forestdiffusion/forest-n3-20260505_062535/run_config.json new file mode 100644 index 0000000000000000000000000000000000000000..9454bd0e51f2c1ba2ea8f70244a37ed5a53abe42 --- /dev/null +++ b/hyperparameter/n3/forestdiffusion/forest-n3-20260505_062535/run_config.json @@ -0,0 +1,45 @@ +{ + "schema_version": 1, + "recorded_at": "2026-05-05T06:25:35", + "dataset_id": "n3", + "model": "forestdiffusion", + "work_dir": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/n3/forestdiffusion/forest-n3-20260505_062535", + "dataset_source_requested": "new", + "dataset_source_resolved": "new", + "cli_args": { + "model": "forestdiffusion", + "dataset": "n3", + "dataset_source": "new", + "train": true, + "generate": true, + "num_rows": 0, + "epochs": null, + "output_dir": null, + "model_dir": null, + "work_dir": null, + "resume": false, + "no_stats": false + }, + "resolved": { + "num_rows": 3918, + "model_path": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/n3/forestdiffusion/forest-n3-20260505_062535/models_fd/model.joblib", + "output_csv": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/n3/forestdiffusion/forest-n3-20260505_062535/forest-n3-3918-20260505_063224.csv" + }, + "input_artifacts": { + "public_gate_report": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/n3/forestdiffusion/forest-n3-20260505_062535/public_gate/public_gate_report.json", + "public_manifest": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/n3/forestdiffusion/forest-n3-20260505_062535/public_gate/staged_input_manifest.json", + "model_manifest": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/n3/forestdiffusion/forest-n3-20260505_062535/staged/forestdiffusion/model_input_manifest.json", + "train_csv": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/n3/forestdiffusion/forest-n3-20260505_062535/staged/public/train.csv", + "features_json": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/n3/forestdiffusion/forest-n3-20260505_062535/staged/public/staged_features.json", + "target_column": "quality", + "task_type": "classification" + }, + "env_overrides": { + "FORESTDIFFUSION_DUPLICATE_K": "4", + "FORESTDIFFUSION_MAX_DEPTH": "4", + "FORESTDIFFUSION_MAX_TRAIN_ROWS": "20000", + "FORESTDIFFUSION_N_ESTIMATORS": "10", + "FORESTDIFFUSION_N_JOBS": "1", + "FORESTDIFFUSION_N_T": "8" + } +} \ No newline at end of file diff --git a/hyperparameter/n3/forestdiffusion/forest-n3-20260505_062535/runtime_result.json b/hyperparameter/n3/forestdiffusion/forest-n3-20260505_062535/runtime_result.json new file mode 100644 index 0000000000000000000000000000000000000000..b0353bfcdc30f55b34a63af2eb85b4d58d3e4f54 --- /dev/null +++ b/hyperparameter/n3/forestdiffusion/forest-n3-20260505_062535/runtime_result.json @@ -0,0 +1,27 @@ +{ + "dataset_id": "n3", + "model": "forestdiffusion", + "run_id": "forest-n3-20260505_062535", + "public_gate_status": "pass", + "adapter_ready_status": "pass", + "train_status": "success", + "generate_status": "success", + "reason_code": null, + "reason_detail": null, + "artifacts": { + "synthetic_csv": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/n3/forestdiffusion/forest-n3-20260505_062535/forest-n3-3918-20260505_063224.csv", + "model_path": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/n3/forestdiffusion/forest-n3-20260505_062535/models_fd/model.joblib" + }, + "timings": { + "train": { + "started_at": "2026-05-05T06:25:35", + "ended_at": "2026-05-05T06:32:24", + "duration_sec": 409.116 + }, + "generate": { + "started_at": "2026-05-05T06:32:24", + "ended_at": "2026-05-05T06:32:27", + "duration_sec": 3.255 + } + } +} \ No newline at end of file diff --git a/hyperparameter/n3/forestdiffusion/forest-n3-20260505_062535/staged/forestdiffusion/adapter_report.json b/hyperparameter/n3/forestdiffusion/forest-n3-20260505_062535/staged/forestdiffusion/adapter_report.json new file mode 100644 index 0000000000000000000000000000000000000000..5392a61f35349fb56696c28ce56d8d986ebbf85e --- /dev/null +++ b/hyperparameter/n3/forestdiffusion/forest-n3-20260505_062535/staged/forestdiffusion/adapter_report.json @@ -0,0 +1,7 @@ +{ + "adapter_ready_status": "pass", + "adapter_fail_reason_code": null, + "adapter_fail_detail": null, + "adapter_transforms_applied": [], + "model_input_manifest": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/n3/forestdiffusion/forest-n3-20260505_062535/staged/forestdiffusion/model_input_manifest.json" +} \ No newline at end of file diff --git a/hyperparameter/n3/forestdiffusion/forest-n3-20260505_062535/staged/forestdiffusion/adapter_transforms_applied.json b/hyperparameter/n3/forestdiffusion/forest-n3-20260505_062535/staged/forestdiffusion/adapter_transforms_applied.json new file mode 100644 index 0000000000000000000000000000000000000000..0637a088a01e8ddab3bf3fa98dbe804cbde1a0dc --- /dev/null +++ b/hyperparameter/n3/forestdiffusion/forest-n3-20260505_062535/staged/forestdiffusion/adapter_transforms_applied.json @@ -0,0 +1 @@ +[] \ No newline at end of file diff --git a/hyperparameter/n3/forestdiffusion/forest-n3-20260505_062535/staged/forestdiffusion/model_input_manifest.json b/hyperparameter/n3/forestdiffusion/forest-n3-20260505_062535/staged/forestdiffusion/model_input_manifest.json new file mode 100644 index 0000000000000000000000000000000000000000..6c955f5413b8544550f70db13340f3b7fef84189 --- /dev/null +++ b/hyperparameter/n3/forestdiffusion/forest-n3-20260505_062535/staged/forestdiffusion/model_input_manifest.json @@ -0,0 +1,266 @@ +{ + "dataset_id": "n3", + "model": "forestdiffusion", + "target_column": "quality", + "task_type": "classification", + "column_schema": [ + { + "name": "fixed acidity", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 66, + "unique_ratio": 0.016845, + "example_values": [ + "7.1", + "8.5", + "6.4", + "6.8", + "7.6" + ] + } + }, + { + "name": "volatile acidity", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 121, + "unique_ratio": 0.030883, + "example_values": [ + "0.31", + "0.21", + "0.24", + "0.43", + "0.27" + ] + } + }, + { + "name": "citric acid", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 85, + "unique_ratio": 0.021695, + "example_values": [ + "0.17", + "0.41", + "0.31", + "0.25", + "0.3" + ] + } + }, + { + "name": "residual sugar", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 296, + "unique_ratio": 0.075549, + "example_values": [ + "1", + "4.3", + "2.8", + "13", + "12.9" + ] + } + }, + { + "name": "chlorides", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 147, + "unique_ratio": 0.037519, + "example_values": [ + "0.042", + "0.036", + "0.038", + "0.047", + "0.033" + ] + } + }, + { + "name": "free sulfur dioxide", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 120, + "unique_ratio": 0.030628, + "example_values": [ + "21", + "24", + "41", + "43", + "69" + ] + } + }, + { + "name": "total sulfur dioxide", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 244, + "unique_ratio": 0.062277, + "example_values": [ + "144", + "99", + "114", + "132", + "160" + ] + } + }, + { + "name": "density", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 839, + "unique_ratio": 0.21414, + "example_values": [ + "0.99304", + "0.9947", + "0.99155", + "0.98975", + "0.99705" + ] + } + }, + { + "name": "pH", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 100, + "unique_ratio": 0.025523, + "example_values": [ + "3.13", + "3.18", + "3.37", + "3.21", + "3.16" + ] + } + }, + { + "name": "sulphates", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 78, + "unique_ratio": 0.019908, + "example_values": [ + "0.4", + "0.53", + "0.66", + "0.47", + "0.5" + ] + } + }, + { + "name": "alcohol", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 97, + "unique_ratio": 0.024758, + "example_values": [ + "9.6", + "9.7", + "11.7", + "13.4", + "8.8" + ] + } + }, + { + "name": "quality", + "role": "target", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 7, + "unique_ratio": 0.001787, + "example_values": [ + "5", + "6", + "7", + "8", + "3" + ] + } + } + ], + "public_manifest": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/n3/forestdiffusion/forest-n3-20260505_062535/public_gate/staged_input_manifest.json", + "train_csv": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/n3/forestdiffusion/forest-n3-20260505_062535/staged/public/train.csv", + "val_csv": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/n3/forestdiffusion/forest-n3-20260505_062535/staged/public/val.csv", + "test_csv": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/n3/forestdiffusion/forest-n3-20260505_062535/staged/public/test.csv", + "features_json": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/n3/forestdiffusion/forest-n3-20260505_062535/staged/public/staged_features.json", + "public_gate_report": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/n3/forestdiffusion/forest-n3-20260505_062535/public_gate/public_gate_report.json" +} \ No newline at end of file diff --git a/hyperparameter/n3/forestdiffusion/forest-n3-20260505_062535/staged/public/staged_features.json b/hyperparameter/n3/forestdiffusion/forest-n3-20260505_062535/staged/public/staged_features.json new file mode 100644 index 0000000000000000000000000000000000000000..08fe4d766d091d2f2ddba724a16b9509cbe4c390 --- /dev/null +++ b/hyperparameter/n3/forestdiffusion/forest-n3-20260505_062535/staged/public/staged_features.json @@ -0,0 +1,62 @@ +[ + { + "feature_name": "fixed acidity", + "data_type": "continuous", + "is_target": false + }, + { + "feature_name": "volatile acidity", + "data_type": "continuous", + "is_target": false + }, + { + "feature_name": "citric acid", + "data_type": "continuous", + "is_target": false + }, + { + "feature_name": "residual sugar", + "data_type": "continuous", + "is_target": false + }, + { + "feature_name": "chlorides", + "data_type": "continuous", + "is_target": false + }, + { + "feature_name": "free sulfur dioxide", + "data_type": "continuous", + "is_target": false + }, + { + "feature_name": "total sulfur dioxide", + "data_type": "continuous", + "is_target": false + }, + { + "feature_name": "density", + "data_type": "continuous", + "is_target": false + }, + { + "feature_name": "pH", + "data_type": "continuous", + "is_target": false + }, + { + "feature_name": "sulphates", + "data_type": "continuous", + "is_target": false + }, + { + "feature_name": "alcohol", + "data_type": "continuous", + "is_target": false + }, + { + "feature_name": "quality", + "data_type": "continuous", + "is_target": true + } +] \ No newline at end of file diff --git a/hyperparameter/n3/forestdiffusion/forest-n3-20260505_062535/staged/public/test.csv b/hyperparameter/n3/forestdiffusion/forest-n3-20260505_062535/staged/public/test.csv new file mode 100644 index 0000000000000000000000000000000000000000..db5cd50d3746410ea470625fa2ba2c8e9775cc0d --- /dev/null +++ b/hyperparameter/n3/forestdiffusion/forest-n3-20260505_062535/staged/public/test.csv @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:19e107152a94432e2a37ff045c00cfe35e1be30208b1553080d7dd0ede256d3b +size 28944 diff --git a/hyperparameter/n3/forestdiffusion/forest-n3-20260505_062535/staged/public/train.csv b/hyperparameter/n3/forestdiffusion/forest-n3-20260505_062535/staged/public/train.csv new file mode 100644 index 0000000000000000000000000000000000000000..87ca26726fe82ccbaa397919305b043c17eb374e --- /dev/null +++ b/hyperparameter/n3/forestdiffusion/forest-n3-20260505_062535/staged/public/train.csv @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:7813c8cca73ba4bfc6559215257b341c21e459980ad17ae6ddc809306bc9a0b9 +size 229945 diff --git a/hyperparameter/n3/forestdiffusion/forest-n3-20260505_062535/staged/public/val.csv b/hyperparameter/n3/forestdiffusion/forest-n3-20260505_062535/staged/public/val.csv new file mode 100644 index 0000000000000000000000000000000000000000..6acf84c76c47093b513c46d5503972a2dff275c0 --- /dev/null +++ b/hyperparameter/n3/forestdiffusion/forest-n3-20260505_062535/staged/public/val.csv @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:cf5979d9675567d9d6642640c9b84fc6c49e492604144723c30f50516c05cee6 +size 28791 diff --git a/hyperparameter/n3/forestdiffusion/forest-n3-20260505_062535/train_20260505_062535.log b/hyperparameter/n3/forestdiffusion/forest-n3-20260505_062535/train_20260505_062535.log new file mode 100644 index 0000000000000000000000000000000000000000..227e84da77ca61ea9b9ef02b6bca88abc113d62e --- /dev/null +++ b/hyperparameter/n3/forestdiffusion/forest-n3-20260505_062535/train_20260505_062535.log @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:eeba4e46a738cd99099f89bf855f94629d2a36eb63dfd3cc9020d58d59b3d854 +size 433 diff --git a/hyperparameter/n3/forestdiffusion/forest-n3-20260505_063240/_fd_X_host.npy b/hyperparameter/n3/forestdiffusion/forest-n3-20260505_063240/_fd_X_host.npy new file mode 100644 index 0000000000000000000000000000000000000000..bb3be252292265fb98716334d40ccfaf8d75d244 --- /dev/null +++ b/hyperparameter/n3/forestdiffusion/forest-n3-20260505_063240/_fd_X_host.npy @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:b15fb02a2af34c0c93fdfe59170a6f8c933a7a529162825116447fdff3efa1ff +size 188192 diff --git a/hyperparameter/n3/forestdiffusion/forest-n3-20260505_063240/_fd_gen.py b/hyperparameter/n3/forestdiffusion/forest-n3-20260505_063240/_fd_gen.py new file mode 100644 index 0000000000000000000000000000000000000000..852b2dcce8c4166c709b014ef7c48fcbac704bbf --- /dev/null +++ b/hyperparameter/n3/forestdiffusion/forest-n3-20260505_063240/_fd_gen.py @@ -0,0 +1,8 @@ + +import joblib, pandas as pd +m, meta = joblib.load(r'/work/output-Benchmark-trainonly-v1/n3/forestdiffusion/forest-n3-20260505_063240/forestdiffusion_model.joblib') +# generate:batch_size 为样本数 +arr = m.generate(batch_size=int(3918)) +df = pd.DataFrame(arr, columns=meta["column_names"]) +df.to_csv(r'/work/output-Benchmark-trainonly-v1/n3/forestdiffusion/forest-n3-20260505_063240/forest-n3-3918-20260505_064509.csv', index=False) +print("saved", len(df)) diff --git a/hyperparameter/n3/forestdiffusion/forest-n3-20260505_063240/_fd_meta_host.json b/hyperparameter/n3/forestdiffusion/forest-n3-20260505_063240/_fd_meta_host.json new file mode 100644 index 0000000000000000000000000000000000000000..c65de394e081438752dd19dc6672d70748924abc --- /dev/null +++ b/hyperparameter/n3/forestdiffusion/forest-n3-20260505_063240/_fd_meta_host.json @@ -0,0 +1 @@ +{"column_names": ["fixed acidity", "volatile acidity", "citric acid", "residual sugar", "chlorides", "free sulfur dioxide", "total sulfur dioxide", "density", "pH", "sulphates", "alcohol", "quality"], "cat_indexes": []} \ No newline at end of file diff --git a/hyperparameter/n3/forestdiffusion/forest-n3-20260505_063240/_fd_train.py b/hyperparameter/n3/forestdiffusion/forest-n3-20260505_063240/_fd_train.py new file mode 100644 index 0000000000000000000000000000000000000000..0d5d8a0469793ffc17d063a633a0f180f1fee8f5 --- /dev/null +++ b/hyperparameter/n3/forestdiffusion/forest-n3-20260505_063240/_fd_train.py @@ -0,0 +1,36 @@ + +import os, shutil, json +with open('/tmp/pgrep', 'w') as _f: + _f.write("#!/usr/bin/env python3\n") + _f.write("import subprocess, sys\n") + _f.write("ppid = sys.argv[-1]\n") + _f.write("out = subprocess.check_output(['ps', '-o', 'pid=', '--ppid', str(ppid)], text=True)\n") + _f.write("print(out, end='')\n") +os.chmod('/tmp/pgrep', 0o755) +os.environ['PATH'] = '/tmp:' + os.environ.get('PATH', '') +shutil.copy(r'/work/output-Benchmark-trainonly-v1/n3/forestdiffusion/forest-n3-20260505_063240/_fd_X_host.npy', '/tmp/fd_X.npy') +with open(r'/work/output-Benchmark-trainonly-v1/n3/forestdiffusion/forest-n3-20260505_063240/_fd_meta_host.json') as f: + open('/tmp/fd_meta.json','w').write(f.read()) + +import numpy as np, joblib, json, os +from ForestDiffusion import ForestDiffusionModel +X = np.load("/tmp/fd_X.npy") +with open("/tmp/fd_meta.json") as f: + meta = json.load(f) +cat_indexes = meta["cat_indexes"] +print( + "[ForestDiffusion] train config: " + f"rows={X.shape[0]} cols={X.shape[1]} n_t=10 " + f"n_estimators=15 duplicate_K=5 n_jobs=1 " + f"max_depth=4 xgb_verbosity=1", + flush=True, +) +m = ForestDiffusionModel( + X, n_t=10, n_estimators=15, duplicate_K=5, n_jobs=1, + model="xgboost", max_depth=4, tree_method="hist", cat_indexes=cat_indexes, + verbosity=1, +) +joblib.dump((m, meta), "/tmp/fd_model.joblib") +print("ForestDiffusion train OK") + +shutil.copy('/tmp/fd_model.joblib', r'/work/output-Benchmark-trainonly-v1/n3/forestdiffusion/forest-n3-20260505_063240/forestdiffusion_model.joblib') diff --git a/hyperparameter/n3/forestdiffusion/forest-n3-20260505_063240/forest-n3-3918-20260505_064509.csv b/hyperparameter/n3/forestdiffusion/forest-n3-20260505_063240/forest-n3-3918-20260505_064509.csv new file mode 100644 index 0000000000000000000000000000000000000000..001ffeee71af7f1ed8ef8d1347e1a41138eacdc8 --- /dev/null +++ b/hyperparameter/n3/forestdiffusion/forest-n3-20260505_063240/forest-n3-3918-20260505_064509.csv @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:7bb19dfb5a2811c73e866921762e49b83f74af5b60dd08434e1fbae9787e2786 +size 884762 diff --git a/hyperparameter/n3/forestdiffusion/forest-n3-20260505_063240/forestdiffusion_model.joblib b/hyperparameter/n3/forestdiffusion/forest-n3-20260505_063240/forestdiffusion_model.joblib new file mode 100644 index 0000000000000000000000000000000000000000..197281e5347a43a3408ee42e64b804354c1fc8fd --- /dev/null +++ b/hyperparameter/n3/forestdiffusion/forest-n3-20260505_063240/forestdiffusion_model.joblib @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:cd67da67764f624b9730f29f1a9e7d941e73a3bfb29f54b91efba060b8fd414a +size 3292061 diff --git a/hyperparameter/n3/forestdiffusion/forest-n3-20260505_063240/gen_20260505_064509.log b/hyperparameter/n3/forestdiffusion/forest-n3-20260505_063240/gen_20260505_064509.log new file mode 100644 index 0000000000000000000000000000000000000000..ce93a96fd3e8e69f6f71cdb723bb3c6a46be380c --- /dev/null +++ b/hyperparameter/n3/forestdiffusion/forest-n3-20260505_063240/gen_20260505_064509.log @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:8d53b3d66aeb494958273c8c829aea19ad5c4970a9b440f99da6e3827f29248e +size 294 diff --git a/hyperparameter/n3/forestdiffusion/forest-n3-20260505_063240/input_snapshot.json b/hyperparameter/n3/forestdiffusion/forest-n3-20260505_063240/input_snapshot.json new file mode 100644 index 0000000000000000000000000000000000000000..1706b1e21e3ea594c0730d0ec7b58ca4e0d54ac2 --- /dev/null +++ b/hyperparameter/n3/forestdiffusion/forest-n3-20260505_063240/input_snapshot.json @@ -0,0 +1,36 @@ +{ + "dataset_id": "n3", + "model": "forestdiffusion", + "inputs": { + "train_csv": { + "path": "/data/jialinzhang/SynthesizePipeline-server/DatasetNew/n3/n3-train.csv", + "exists": true, + "size": 211519, + "sha256": "2160a06db2fea02adb0ebb79d8d853bd2544580be301e71f6e8deeb1489a9009" + }, + "val_csv": { + "path": "/data/jialinzhang/SynthesizePipeline-server/DatasetNew/n3/n3-val.csv", + "exists": true, + "size": 26499, + "sha256": "d5ccfee07dfa9e7bdee5bb87642b43828e09f74c6cc0266a3d19d9feaa83106e" + }, + "test_csv": { + "path": "/data/jialinzhang/SynthesizePipeline-server/DatasetNew/n3/n3-test.csv", + "exists": true, + "size": 26676, + "sha256": "6f83aacb0d1747b95e287352a7fff5d9d65a1c127b773852346c68485c4ede47" + }, + "profile_json": { + "path": "/data/jialinzhang/SynthesizePipeline-server/DatasetNew/artifacts/data_core/tabular/n3/n3-dataset_profile.json", + "exists": true, + "size": 5235, + "sha256": "23d2e5904a2ca90cbf8d6e3c75887681721e9b90cc705c31a680c11513d0c46f" + }, + "contract_json": { + "path": "/data/jialinzhang/SynthesizePipeline-server/DatasetNew/artifacts/data_core/tabular/n3/n3-dataset_contract_v1.json", + "exists": true, + "size": 6281, + "sha256": "c0cc56f5fe28e1b65927255c6e3c2b0e9479862c2ec6f2fea1664da36c9a3a09" + } + } +} \ No newline at end of file diff --git a/hyperparameter/n3/forestdiffusion/forest-n3-20260505_063240/models_fd/model.joblib b/hyperparameter/n3/forestdiffusion/forest-n3-20260505_063240/models_fd/model.joblib new file mode 100644 index 0000000000000000000000000000000000000000..197281e5347a43a3408ee42e64b804354c1fc8fd --- /dev/null +++ b/hyperparameter/n3/forestdiffusion/forest-n3-20260505_063240/models_fd/model.joblib @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:cd67da67764f624b9730f29f1a9e7d941e73a3bfb29f54b91efba060b8fd414a +size 3292061 diff --git a/hyperparameter/n3/forestdiffusion/forest-n3-20260505_063240/public_gate/normalized_schema_snapshot.json b/hyperparameter/n3/forestdiffusion/forest-n3-20260505_063240/public_gate/normalized_schema_snapshot.json new file mode 100644 index 0000000000000000000000000000000000000000..c41fe304503de23190a02e6cbfafa35b3bf134d3 --- /dev/null +++ b/hyperparameter/n3/forestdiffusion/forest-n3-20260505_063240/public_gate/normalized_schema_snapshot.json @@ -0,0 +1,259 @@ +{ + "dataset_id": "n3", + "target_column": "quality", + "task_type": "classification", + "columns": [ + { + "name": "fixed acidity", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 66, + "unique_ratio": 0.016845, + "example_values": [ + "7.1", + "8.5", + "6.4", + "6.8", + "7.6" + ] + } + }, + { + "name": "volatile acidity", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 121, + "unique_ratio": 0.030883, + "example_values": [ + "0.31", + "0.21", + "0.24", + "0.43", + "0.27" + ] + } + }, + { + "name": "citric acid", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 85, + "unique_ratio": 0.021695, + "example_values": [ + "0.17", + "0.41", + "0.31", + "0.25", + "0.3" + ] + } + }, + { + "name": "residual sugar", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 296, + "unique_ratio": 0.075549, + "example_values": [ + "1", + "4.3", + "2.8", + "13", + "12.9" + ] + } + }, + { + "name": "chlorides", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 147, + "unique_ratio": 0.037519, + "example_values": [ + "0.042", + "0.036", + "0.038", + "0.047", + "0.033" + ] + } + }, + { + "name": "free sulfur dioxide", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 120, + "unique_ratio": 0.030628, + "example_values": [ + "21", + "24", + "41", + "43", + "69" + ] + } + }, + { + "name": "total sulfur dioxide", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 244, + "unique_ratio": 0.062277, + "example_values": [ + "144", + "99", + "114", + "132", + "160" + ] + } + }, + { + "name": "density", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 839, + "unique_ratio": 0.21414, + "example_values": [ + "0.99304", + "0.9947", + "0.99155", + "0.98975", + "0.99705" + ] + } + }, + { + "name": "pH", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 100, + "unique_ratio": 0.025523, + "example_values": [ + "3.13", + "3.18", + "3.37", + "3.21", + "3.16" + ] + } + }, + { + "name": "sulphates", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 78, + "unique_ratio": 0.019908, + "example_values": [ + "0.4", + "0.53", + "0.66", + "0.47", + "0.5" + ] + } + }, + { + "name": "alcohol", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 97, + "unique_ratio": 0.024758, + "example_values": [ + "9.6", + "9.7", + "11.7", + "13.4", + "8.8" + ] + } + }, + { + "name": "quality", + "role": "target", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 7, + "unique_ratio": 0.001787, + "example_values": [ + "5", + "6", + "7", + "8", + "3" + ] + } + } + ] +} \ No newline at end of file diff --git a/hyperparameter/n3/forestdiffusion/forest-n3-20260505_063240/public_gate/public_gate_report.json b/hyperparameter/n3/forestdiffusion/forest-n3-20260505_063240/public_gate/public_gate_report.json new file mode 100644 index 0000000000000000000000000000000000000000..93b97319f739e39079d6c6549fd2020f8a6dac25 --- /dev/null +++ b/hyperparameter/n3/forestdiffusion/forest-n3-20260505_063240/public_gate/public_gate_report.json @@ -0,0 +1,37 @@ +{ + "dataset_id": "n3", + "status": "pass", + "checks": [ + { + "check_id": "PG001_csv_parse_ok", + "status": "pass" + }, + { + "check_id": "PG002_split_header_consistent", + "status": "pass" + }, + { + "check_id": "PG003_profile_header_match", + "status": "pass" + }, + { + "check_id": "PG004_missing_token_normalized", + "status": "pass" + }, + { + "check_id": "PG005_semantic_type_validated", + "status": "pass" + }, + { + "check_id": "PG006_target_defined_and_valid", + "status": "pass" + } + ], + "target_column": "quality", + "task_type": "classification", + "input_splits": { + "train": "/data/jialinzhang/SynthesizePipeline-server/DatasetNew/n3/n3-train.csv", + "val": "/data/jialinzhang/SynthesizePipeline-server/DatasetNew/n3/n3-val.csv", + "test": "/data/jialinzhang/SynthesizePipeline-server/DatasetNew/n3/n3-test.csv" + } +} \ No newline at end of file diff --git a/hyperparameter/n3/forestdiffusion/forest-n3-20260505_063240/public_gate/staged_input_manifest.json b/hyperparameter/n3/forestdiffusion/forest-n3-20260505_063240/public_gate/staged_input_manifest.json new file mode 100644 index 0000000000000000000000000000000000000000..36360c7cab58edf9e89b2e0b08e1e86696d8c2b9 --- /dev/null +++ b/hyperparameter/n3/forestdiffusion/forest-n3-20260505_063240/public_gate/staged_input_manifest.json @@ -0,0 +1,264 @@ +{ + "dataset_id": "n3", + "target_column": "quality", + "task_type": "classification", + "train_csv": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/n3/forestdiffusion/forest-n3-20260505_063240/staged/public/train.csv", + "val_csv": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/n3/forestdiffusion/forest-n3-20260505_063240/staged/public/val.csv", + "test_csv": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/n3/forestdiffusion/forest-n3-20260505_063240/staged/public/test.csv", + "features_json": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/n3/forestdiffusion/forest-n3-20260505_063240/staged/public/staged_features.json", + "public_gate_report": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/n3/forestdiffusion/forest-n3-20260505_063240/public_gate/public_gate_report.json", + "column_schema": [ + { + "name": "fixed acidity", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 66, + "unique_ratio": 0.016845, + "example_values": [ + "7.1", + "8.5", + "6.4", + "6.8", + "7.6" + ] + } + }, + { + "name": "volatile acidity", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 121, + "unique_ratio": 0.030883, + "example_values": [ + "0.31", + "0.21", + "0.24", + "0.43", + "0.27" + ] + } + }, + { + "name": "citric acid", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 85, + "unique_ratio": 0.021695, + "example_values": [ + "0.17", + "0.41", + "0.31", + "0.25", + "0.3" + ] + } + }, + { + "name": "residual sugar", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 296, + "unique_ratio": 0.075549, + "example_values": [ + "1", + "4.3", + "2.8", + "13", + "12.9" + ] + } + }, + { + "name": "chlorides", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 147, + "unique_ratio": 0.037519, + "example_values": [ + "0.042", + "0.036", + "0.038", + "0.047", + "0.033" + ] + } + }, + { + "name": "free sulfur dioxide", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 120, + "unique_ratio": 0.030628, + "example_values": [ + "21", + "24", + "41", + "43", + "69" + ] + } + }, + { + "name": "total sulfur dioxide", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 244, + "unique_ratio": 0.062277, + "example_values": [ + "144", + "99", + "114", + "132", + "160" + ] + } + }, + { + "name": "density", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 839, + "unique_ratio": 0.21414, + "example_values": [ + "0.99304", + "0.9947", + "0.99155", + "0.98975", + "0.99705" + ] + } + }, + { + "name": "pH", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 100, + "unique_ratio": 0.025523, + "example_values": [ + "3.13", + "3.18", + "3.37", + "3.21", + "3.16" + ] + } + }, + { + "name": "sulphates", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 78, + "unique_ratio": 0.019908, + "example_values": [ + "0.4", + "0.53", + "0.66", + "0.47", + "0.5" + ] + } + }, + { + "name": "alcohol", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 97, + "unique_ratio": 0.024758, + "example_values": [ + "9.6", + "9.7", + "11.7", + "13.4", + "8.8" + ] + } + }, + { + "name": "quality", + "role": "target", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 7, + "unique_ratio": 0.001787, + "example_values": [ + "5", + "6", + "7", + "8", + "3" + ] + } + } + ] +} \ No newline at end of file diff --git a/hyperparameter/n3/forestdiffusion/forest-n3-20260505_063240/run_config.json b/hyperparameter/n3/forestdiffusion/forest-n3-20260505_063240/run_config.json new file mode 100644 index 0000000000000000000000000000000000000000..15ab3a227bf5e2984b061082dc8c186cfdd6f7a4 --- /dev/null +++ b/hyperparameter/n3/forestdiffusion/forest-n3-20260505_063240/run_config.json @@ -0,0 +1,45 @@ +{ + "schema_version": 1, + "recorded_at": "2026-05-05T06:32:40", + "dataset_id": "n3", + "model": "forestdiffusion", + "work_dir": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/n3/forestdiffusion/forest-n3-20260505_063240", + "dataset_source_requested": "new", + "dataset_source_resolved": "new", + "cli_args": { + "model": "forestdiffusion", + "dataset": "n3", + "dataset_source": "new", + "train": true, + "generate": true, + "num_rows": 0, + "epochs": null, + "output_dir": null, + "model_dir": null, + "work_dir": null, + "resume": false, + "no_stats": false + }, + "resolved": { + "num_rows": 3918, + "model_path": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/n3/forestdiffusion/forest-n3-20260505_063240/models_fd/model.joblib", + "output_csv": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/n3/forestdiffusion/forest-n3-20260505_063240/forest-n3-3918-20260505_064509.csv" + }, + "input_artifacts": { + "public_gate_report": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/n3/forestdiffusion/forest-n3-20260505_063240/public_gate/public_gate_report.json", + "public_manifest": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/n3/forestdiffusion/forest-n3-20260505_063240/public_gate/staged_input_manifest.json", + "model_manifest": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/n3/forestdiffusion/forest-n3-20260505_063240/staged/forestdiffusion/model_input_manifest.json", + "train_csv": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/n3/forestdiffusion/forest-n3-20260505_063240/staged/public/train.csv", + "features_json": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/n3/forestdiffusion/forest-n3-20260505_063240/staged/public/staged_features.json", + "target_column": "quality", + "task_type": "classification" + }, + "env_overrides": { + "FORESTDIFFUSION_DUPLICATE_K": "5", + "FORESTDIFFUSION_MAX_DEPTH": "4", + "FORESTDIFFUSION_MAX_TRAIN_ROWS": "30000", + "FORESTDIFFUSION_N_ESTIMATORS": "15", + "FORESTDIFFUSION_N_JOBS": "1", + "FORESTDIFFUSION_N_T": "10" + } +} \ No newline at end of file diff --git a/hyperparameter/n3/forestdiffusion/forest-n3-20260505_063240/runtime_result.json b/hyperparameter/n3/forestdiffusion/forest-n3-20260505_063240/runtime_result.json new file mode 100644 index 0000000000000000000000000000000000000000..ed662d342776d78f305984dd2937fc6cc565b060 --- /dev/null +++ b/hyperparameter/n3/forestdiffusion/forest-n3-20260505_063240/runtime_result.json @@ -0,0 +1,27 @@ +{ + "dataset_id": "n3", + "model": "forestdiffusion", + "run_id": "forest-n3-20260505_063240", + "public_gate_status": "pass", + "adapter_ready_status": "pass", + "train_status": "success", + "generate_status": "success", + "reason_code": null, + "reason_detail": null, + "artifacts": { + "synthetic_csv": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/n3/forestdiffusion/forest-n3-20260505_063240/forest-n3-3918-20260505_064509.csv", + "model_path": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/n3/forestdiffusion/forest-n3-20260505_063240/models_fd/model.joblib" + }, + "timings": { + "train": { + "started_at": "2026-05-05T06:32:40", + "ended_at": "2026-05-05T06:45:09", + "duration_sec": 748.13 + }, + "generate": { + "started_at": "2026-05-05T06:45:09", + "ended_at": "2026-05-05T06:45:12", + "duration_sec": 3.073 + } + } +} \ No newline at end of file diff --git a/hyperparameter/n3/forestdiffusion/forest-n3-20260505_063240/staged/forestdiffusion/adapter_report.json b/hyperparameter/n3/forestdiffusion/forest-n3-20260505_063240/staged/forestdiffusion/adapter_report.json new file mode 100644 index 0000000000000000000000000000000000000000..4d6732808dd3fbe65cffbc34a976d6718c21de53 --- /dev/null +++ b/hyperparameter/n3/forestdiffusion/forest-n3-20260505_063240/staged/forestdiffusion/adapter_report.json @@ -0,0 +1,7 @@ +{ + "adapter_ready_status": "pass", + "adapter_fail_reason_code": null, + "adapter_fail_detail": null, + "adapter_transforms_applied": [], + "model_input_manifest": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/n3/forestdiffusion/forest-n3-20260505_063240/staged/forestdiffusion/model_input_manifest.json" +} \ No newline at end of file diff --git a/hyperparameter/n3/forestdiffusion/forest-n3-20260505_063240/staged/forestdiffusion/adapter_transforms_applied.json b/hyperparameter/n3/forestdiffusion/forest-n3-20260505_063240/staged/forestdiffusion/adapter_transforms_applied.json new file mode 100644 index 0000000000000000000000000000000000000000..0637a088a01e8ddab3bf3fa98dbe804cbde1a0dc --- /dev/null +++ b/hyperparameter/n3/forestdiffusion/forest-n3-20260505_063240/staged/forestdiffusion/adapter_transforms_applied.json @@ -0,0 +1 @@ +[] \ No newline at end of file diff --git a/hyperparameter/n3/forestdiffusion/forest-n3-20260505_063240/staged/forestdiffusion/model_input_manifest.json b/hyperparameter/n3/forestdiffusion/forest-n3-20260505_063240/staged/forestdiffusion/model_input_manifest.json new file mode 100644 index 0000000000000000000000000000000000000000..db90669d7dae1f2f88b851e21332690f5569861b --- /dev/null +++ b/hyperparameter/n3/forestdiffusion/forest-n3-20260505_063240/staged/forestdiffusion/model_input_manifest.json @@ -0,0 +1,266 @@ +{ + "dataset_id": "n3", + "model": "forestdiffusion", + "target_column": "quality", + "task_type": "classification", + "column_schema": [ + { + "name": "fixed acidity", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 66, + "unique_ratio": 0.016845, + "example_values": [ + "7.1", + "8.5", + "6.4", + "6.8", + "7.6" + ] + } + }, + { + "name": "volatile acidity", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 121, + "unique_ratio": 0.030883, + "example_values": [ + "0.31", + "0.21", + "0.24", + "0.43", + "0.27" + ] + } + }, + { + "name": "citric acid", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 85, + "unique_ratio": 0.021695, + "example_values": [ + "0.17", + "0.41", + "0.31", + "0.25", + "0.3" + ] + } + }, + { + "name": "residual sugar", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 296, + "unique_ratio": 0.075549, + "example_values": [ + "1", + "4.3", + "2.8", + "13", + "12.9" + ] + } + }, + { + "name": "chlorides", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 147, + "unique_ratio": 0.037519, + "example_values": [ + "0.042", + "0.036", + "0.038", + "0.047", + "0.033" + ] + } + }, + { + "name": "free sulfur dioxide", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 120, + "unique_ratio": 0.030628, + "example_values": [ + "21", + "24", + "41", + "43", + "69" + ] + } + }, + { + "name": "total sulfur dioxide", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 244, + "unique_ratio": 0.062277, + "example_values": [ + "144", + "99", + "114", + "132", + "160" + ] + } + }, + { + "name": "density", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 839, + "unique_ratio": 0.21414, + "example_values": [ + "0.99304", + "0.9947", + "0.99155", + "0.98975", + "0.99705" + ] + } + }, + { + "name": "pH", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 100, + "unique_ratio": 0.025523, + "example_values": [ + "3.13", + "3.18", + "3.37", + "3.21", + "3.16" + ] + } + }, + { + "name": "sulphates", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 78, + "unique_ratio": 0.019908, + "example_values": [ + "0.4", + "0.53", + "0.66", + "0.47", + "0.5" + ] + } + }, + { + "name": "alcohol", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 97, + "unique_ratio": 0.024758, + "example_values": [ + "9.6", + "9.7", + "11.7", + "13.4", + "8.8" + ] + } + }, + { + "name": "quality", + "role": "target", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 7, + "unique_ratio": 0.001787, + "example_values": [ + "5", + "6", + "7", + "8", + "3" + ] + } + } + ], + "public_manifest": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/n3/forestdiffusion/forest-n3-20260505_063240/public_gate/staged_input_manifest.json", + "train_csv": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/n3/forestdiffusion/forest-n3-20260505_063240/staged/public/train.csv", + "val_csv": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/n3/forestdiffusion/forest-n3-20260505_063240/staged/public/val.csv", + "test_csv": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/n3/forestdiffusion/forest-n3-20260505_063240/staged/public/test.csv", + "features_json": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/n3/forestdiffusion/forest-n3-20260505_063240/staged/public/staged_features.json", + "public_gate_report": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/n3/forestdiffusion/forest-n3-20260505_063240/public_gate/public_gate_report.json" +} \ No newline at end of file diff --git a/hyperparameter/n3/forestdiffusion/forest-n3-20260505_063240/staged/public/staged_features.json b/hyperparameter/n3/forestdiffusion/forest-n3-20260505_063240/staged/public/staged_features.json new file mode 100644 index 0000000000000000000000000000000000000000..08fe4d766d091d2f2ddba724a16b9509cbe4c390 --- /dev/null +++ b/hyperparameter/n3/forestdiffusion/forest-n3-20260505_063240/staged/public/staged_features.json @@ -0,0 +1,62 @@ +[ + { + "feature_name": "fixed acidity", + "data_type": "continuous", + "is_target": false + }, + { + "feature_name": "volatile acidity", + "data_type": "continuous", + "is_target": false + }, + { + "feature_name": "citric acid", + "data_type": "continuous", + "is_target": false + }, + { + "feature_name": "residual sugar", + "data_type": "continuous", + "is_target": false + }, + { + "feature_name": "chlorides", + "data_type": "continuous", + "is_target": false + }, + { + "feature_name": "free sulfur dioxide", + "data_type": "continuous", + "is_target": false + }, + { + "feature_name": "total sulfur dioxide", + "data_type": "continuous", + "is_target": false + }, + { + "feature_name": "density", + "data_type": "continuous", + "is_target": false + }, + { + "feature_name": "pH", + "data_type": "continuous", + "is_target": false + }, + { + "feature_name": "sulphates", + "data_type": "continuous", + "is_target": false + }, + { + "feature_name": "alcohol", + "data_type": "continuous", + "is_target": false + }, + { + "feature_name": "quality", + "data_type": "continuous", + "is_target": true + } +] \ No newline at end of file diff --git a/hyperparameter/n3/forestdiffusion/forest-n3-20260505_063240/staged/public/test.csv b/hyperparameter/n3/forestdiffusion/forest-n3-20260505_063240/staged/public/test.csv new file mode 100644 index 0000000000000000000000000000000000000000..db5cd50d3746410ea470625fa2ba2c8e9775cc0d --- /dev/null +++ b/hyperparameter/n3/forestdiffusion/forest-n3-20260505_063240/staged/public/test.csv @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:19e107152a94432e2a37ff045c00cfe35e1be30208b1553080d7dd0ede256d3b +size 28944 diff --git a/hyperparameter/n3/forestdiffusion/forest-n3-20260505_063240/staged/public/train.csv b/hyperparameter/n3/forestdiffusion/forest-n3-20260505_063240/staged/public/train.csv new file mode 100644 index 0000000000000000000000000000000000000000..87ca26726fe82ccbaa397919305b043c17eb374e --- /dev/null +++ b/hyperparameter/n3/forestdiffusion/forest-n3-20260505_063240/staged/public/train.csv @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:7813c8cca73ba4bfc6559215257b341c21e459980ad17ae6ddc809306bc9a0b9 +size 229945 diff --git a/hyperparameter/n3/forestdiffusion/forest-n3-20260505_063240/staged/public/val.csv b/hyperparameter/n3/forestdiffusion/forest-n3-20260505_063240/staged/public/val.csv new file mode 100644 index 0000000000000000000000000000000000000000..6acf84c76c47093b513c46d5503972a2dff275c0 --- /dev/null +++ b/hyperparameter/n3/forestdiffusion/forest-n3-20260505_063240/staged/public/val.csv @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:cf5979d9675567d9d6642640c9b84fc6c49e492604144723c30f50516c05cee6 +size 28791 diff --git a/hyperparameter/n3/forestdiffusion/forest-n3-20260505_063240/train_20260505_063240.log b/hyperparameter/n3/forestdiffusion/forest-n3-20260505_063240/train_20260505_063240.log new file mode 100644 index 0000000000000000000000000000000000000000..7e614353f72525a735984267d84f67d705d2a38c --- /dev/null +++ b/hyperparameter/n3/forestdiffusion/forest-n3-20260505_063240/train_20260505_063240.log @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:fe37de51141b277b041f701d5f53b497c58e44777917fdf45a62d8d04aedeb46 +size 434 diff --git a/hyperparameter/n3/forestdiffusion/forest-n3-20260505_064525/_fd_X_host.npy b/hyperparameter/n3/forestdiffusion/forest-n3-20260505_064525/_fd_X_host.npy new file mode 100644 index 0000000000000000000000000000000000000000..bb3be252292265fb98716334d40ccfaf8d75d244 --- /dev/null +++ b/hyperparameter/n3/forestdiffusion/forest-n3-20260505_064525/_fd_X_host.npy @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:b15fb02a2af34c0c93fdfe59170a6f8c933a7a529162825116447fdff3efa1ff +size 188192 diff --git a/hyperparameter/n3/forestdiffusion/forest-n3-20260505_064525/_fd_gen.py b/hyperparameter/n3/forestdiffusion/forest-n3-20260505_064525/_fd_gen.py new file mode 100644 index 0000000000000000000000000000000000000000..72dabec8612ee58716d9b183a5bfb1d944026aee --- /dev/null +++ b/hyperparameter/n3/forestdiffusion/forest-n3-20260505_064525/_fd_gen.py @@ -0,0 +1,8 @@ + +import joblib, pandas as pd +m, meta = joblib.load(r'/work/output-Benchmark-trainonly-v1/n3/forestdiffusion/forest-n3-20260505_064525/forestdiffusion_model.joblib') +# generate:batch_size 为样本数 +arr = m.generate(batch_size=int(3918)) +df = pd.DataFrame(arr, columns=meta["column_names"]) +df.to_csv(r'/work/output-Benchmark-trainonly-v1/n3/forestdiffusion/forest-n3-20260505_064525/forest-n3-3918-20260505_070241.csv', index=False) +print("saved", len(df)) diff --git a/hyperparameter/n3/forestdiffusion/forest-n3-20260505_064525/_fd_meta_host.json b/hyperparameter/n3/forestdiffusion/forest-n3-20260505_064525/_fd_meta_host.json new file mode 100644 index 0000000000000000000000000000000000000000..c65de394e081438752dd19dc6672d70748924abc --- /dev/null +++ b/hyperparameter/n3/forestdiffusion/forest-n3-20260505_064525/_fd_meta_host.json @@ -0,0 +1 @@ +{"column_names": ["fixed acidity", "volatile acidity", "citric acid", "residual sugar", "chlorides", "free sulfur dioxide", "total sulfur dioxide", "density", "pH", "sulphates", "alcohol", "quality"], "cat_indexes": []} \ No newline at end of file diff --git a/hyperparameter/n3/forestdiffusion/forest-n3-20260505_064525/_fd_train.py b/hyperparameter/n3/forestdiffusion/forest-n3-20260505_064525/_fd_train.py new file mode 100644 index 0000000000000000000000000000000000000000..2a22b517b5367ca97106338417e3379ce6c6e47d --- /dev/null +++ b/hyperparameter/n3/forestdiffusion/forest-n3-20260505_064525/_fd_train.py @@ -0,0 +1,36 @@ + +import os, shutil, json +with open('/tmp/pgrep', 'w') as _f: + _f.write("#!/usr/bin/env python3\n") + _f.write("import subprocess, sys\n") + _f.write("ppid = sys.argv[-1]\n") + _f.write("out = subprocess.check_output(['ps', '-o', 'pid=', '--ppid', str(ppid)], text=True)\n") + _f.write("print(out, end='')\n") +os.chmod('/tmp/pgrep', 0o755) +os.environ['PATH'] = '/tmp:' + os.environ.get('PATH', '') +shutil.copy(r'/work/output-Benchmark-trainonly-v1/n3/forestdiffusion/forest-n3-20260505_064525/_fd_X_host.npy', '/tmp/fd_X.npy') +with open(r'/work/output-Benchmark-trainonly-v1/n3/forestdiffusion/forest-n3-20260505_064525/_fd_meta_host.json') as f: + open('/tmp/fd_meta.json','w').write(f.read()) + +import numpy as np, joblib, json, os +from ForestDiffusion import ForestDiffusionModel +X = np.load("/tmp/fd_X.npy") +with open("/tmp/fd_meta.json") as f: + meta = json.load(f) +cat_indexes = meta["cat_indexes"] +print( + "[ForestDiffusion] train config: " + f"rows={X.shape[0]} cols={X.shape[1]} n_t=10 " + f"n_estimators=20 duplicate_K=5 n_jobs=1 " + f"max_depth=4 xgb_verbosity=1", + flush=True, +) +m = ForestDiffusionModel( + X, n_t=10, n_estimators=20, duplicate_K=5, n_jobs=1, + model="xgboost", max_depth=4, tree_method="hist", cat_indexes=cat_indexes, + verbosity=1, +) +joblib.dump((m, meta), "/tmp/fd_model.joblib") +print("ForestDiffusion train OK") + +shutil.copy('/tmp/fd_model.joblib', r'/work/output-Benchmark-trainonly-v1/n3/forestdiffusion/forest-n3-20260505_064525/forestdiffusion_model.joblib') diff --git a/hyperparameter/n3/forestdiffusion/forest-n3-20260505_064525/forest-n3-3918-20260505_070241.csv b/hyperparameter/n3/forestdiffusion/forest-n3-20260505_064525/forest-n3-3918-20260505_070241.csv new file mode 100644 index 0000000000000000000000000000000000000000..aeb85a0d300f3526dadb59765f1d3fee7db281fb --- /dev/null +++ b/hyperparameter/n3/forestdiffusion/forest-n3-20260505_064525/forest-n3-3918-20260505_070241.csv @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:7de12f21b4a0f9e78a91695486d70f2fb79dc61755400e23bf14f8d38e5f9889 +size 885176 diff --git a/hyperparameter/n3/forestdiffusion/forest-n3-20260505_064525/forestdiffusion_model.joblib b/hyperparameter/n3/forestdiffusion/forest-n3-20260505_064525/forestdiffusion_model.joblib new file mode 100644 index 0000000000000000000000000000000000000000..8f2419732a4f5f1e646a08b35d1a68afe0d010a3 --- /dev/null +++ b/hyperparameter/n3/forestdiffusion/forest-n3-20260505_064525/forestdiffusion_model.joblib @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:2c35e821df425eda69081853a53193bd130915dbe151043ac6e3984c70fbd33d +size 4300179 diff --git a/hyperparameter/n3/forestdiffusion/forest-n3-20260505_064525/gen_20260505_070241.log b/hyperparameter/n3/forestdiffusion/forest-n3-20260505_064525/gen_20260505_070241.log new file mode 100644 index 0000000000000000000000000000000000000000..cf5b5aae7698f9b9f4755c9c3839522b89247b80 --- /dev/null +++ b/hyperparameter/n3/forestdiffusion/forest-n3-20260505_064525/gen_20260505_070241.log @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:d4f02ce044a246e51f4d7d1eaad5d5e4991d1cc8efe53f145936005a62431a42 +size 294 diff --git a/hyperparameter/n3/forestdiffusion/forest-n3-20260505_064525/input_snapshot.json b/hyperparameter/n3/forestdiffusion/forest-n3-20260505_064525/input_snapshot.json new file mode 100644 index 0000000000000000000000000000000000000000..1706b1e21e3ea594c0730d0ec7b58ca4e0d54ac2 --- /dev/null +++ b/hyperparameter/n3/forestdiffusion/forest-n3-20260505_064525/input_snapshot.json @@ -0,0 +1,36 @@ +{ + "dataset_id": "n3", + "model": "forestdiffusion", + "inputs": { + "train_csv": { + "path": "/data/jialinzhang/SynthesizePipeline-server/DatasetNew/n3/n3-train.csv", + "exists": true, + "size": 211519, + "sha256": "2160a06db2fea02adb0ebb79d8d853bd2544580be301e71f6e8deeb1489a9009" + }, + "val_csv": { + "path": "/data/jialinzhang/SynthesizePipeline-server/DatasetNew/n3/n3-val.csv", + "exists": true, + "size": 26499, + "sha256": "d5ccfee07dfa9e7bdee5bb87642b43828e09f74c6cc0266a3d19d9feaa83106e" + }, + "test_csv": { + "path": "/data/jialinzhang/SynthesizePipeline-server/DatasetNew/n3/n3-test.csv", + "exists": true, + "size": 26676, + "sha256": "6f83aacb0d1747b95e287352a7fff5d9d65a1c127b773852346c68485c4ede47" + }, + "profile_json": { + "path": "/data/jialinzhang/SynthesizePipeline-server/DatasetNew/artifacts/data_core/tabular/n3/n3-dataset_profile.json", + "exists": true, + "size": 5235, + "sha256": "23d2e5904a2ca90cbf8d6e3c75887681721e9b90cc705c31a680c11513d0c46f" + }, + "contract_json": { + "path": "/data/jialinzhang/SynthesizePipeline-server/DatasetNew/artifacts/data_core/tabular/n3/n3-dataset_contract_v1.json", + "exists": true, + "size": 6281, + "sha256": "c0cc56f5fe28e1b65927255c6e3c2b0e9479862c2ec6f2fea1664da36c9a3a09" + } + } +} \ No newline at end of file diff --git a/hyperparameter/n3/forestdiffusion/forest-n3-20260505_064525/models_fd/model.joblib b/hyperparameter/n3/forestdiffusion/forest-n3-20260505_064525/models_fd/model.joblib new file mode 100644 index 0000000000000000000000000000000000000000..8f2419732a4f5f1e646a08b35d1a68afe0d010a3 --- /dev/null +++ b/hyperparameter/n3/forestdiffusion/forest-n3-20260505_064525/models_fd/model.joblib @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:2c35e821df425eda69081853a53193bd130915dbe151043ac6e3984c70fbd33d +size 4300179 diff --git a/hyperparameter/n3/forestdiffusion/forest-n3-20260505_064525/public_gate/normalized_schema_snapshot.json b/hyperparameter/n3/forestdiffusion/forest-n3-20260505_064525/public_gate/normalized_schema_snapshot.json new file mode 100644 index 0000000000000000000000000000000000000000..c41fe304503de23190a02e6cbfafa35b3bf134d3 --- /dev/null +++ b/hyperparameter/n3/forestdiffusion/forest-n3-20260505_064525/public_gate/normalized_schema_snapshot.json @@ -0,0 +1,259 @@ +{ + "dataset_id": "n3", + "target_column": "quality", + "task_type": "classification", + "columns": [ + { + "name": "fixed acidity", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 66, + "unique_ratio": 0.016845, + "example_values": [ + "7.1", + "8.5", + "6.4", + "6.8", + "7.6" + ] + } + }, + { + "name": "volatile acidity", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 121, + "unique_ratio": 0.030883, + "example_values": [ + "0.31", + "0.21", + "0.24", + "0.43", + "0.27" + ] + } + }, + { + "name": "citric acid", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 85, + "unique_ratio": 0.021695, + "example_values": [ + "0.17", + "0.41", + "0.31", + "0.25", + "0.3" + ] + } + }, + { + "name": "residual sugar", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 296, + "unique_ratio": 0.075549, + "example_values": [ + "1", + "4.3", + "2.8", + "13", + "12.9" + ] + } + }, + { + "name": "chlorides", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 147, + "unique_ratio": 0.037519, + "example_values": [ + "0.042", + "0.036", + "0.038", + "0.047", + "0.033" + ] + } + }, + { + "name": "free sulfur dioxide", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 120, + "unique_ratio": 0.030628, + "example_values": [ + "21", + "24", + "41", + "43", + "69" + ] + } + }, + { + "name": "total sulfur dioxide", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 244, + "unique_ratio": 0.062277, + "example_values": [ + "144", + "99", + "114", + "132", + "160" + ] + } + }, + { + "name": "density", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 839, + "unique_ratio": 0.21414, + "example_values": [ + "0.99304", + "0.9947", + "0.99155", + "0.98975", + "0.99705" + ] + } + }, + { + "name": "pH", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 100, + "unique_ratio": 0.025523, + "example_values": [ + "3.13", + "3.18", + "3.37", + "3.21", + "3.16" + ] + } + }, + { + "name": "sulphates", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 78, + "unique_ratio": 0.019908, + "example_values": [ + "0.4", + "0.53", + "0.66", + "0.47", + "0.5" + ] + } + }, + { + "name": "alcohol", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 97, + "unique_ratio": 0.024758, + "example_values": [ + "9.6", + "9.7", + "11.7", + "13.4", + "8.8" + ] + } + }, + { + "name": "quality", + "role": "target", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 7, + "unique_ratio": 0.001787, + "example_values": [ + "5", + "6", + "7", + "8", + "3" + ] + } + } + ] +} \ No newline at end of file diff --git a/hyperparameter/n3/forestdiffusion/forest-n3-20260505_064525/public_gate/public_gate_report.json b/hyperparameter/n3/forestdiffusion/forest-n3-20260505_064525/public_gate/public_gate_report.json new file mode 100644 index 0000000000000000000000000000000000000000..93b97319f739e39079d6c6549fd2020f8a6dac25 --- /dev/null +++ b/hyperparameter/n3/forestdiffusion/forest-n3-20260505_064525/public_gate/public_gate_report.json @@ -0,0 +1,37 @@ +{ + "dataset_id": "n3", + "status": "pass", + "checks": [ + { + "check_id": "PG001_csv_parse_ok", + "status": "pass" + }, + { + "check_id": "PG002_split_header_consistent", + "status": "pass" + }, + { + "check_id": "PG003_profile_header_match", + "status": "pass" + }, + { + "check_id": "PG004_missing_token_normalized", + "status": "pass" + }, + { + "check_id": "PG005_semantic_type_validated", + "status": "pass" + }, + { + "check_id": "PG006_target_defined_and_valid", + "status": "pass" + } + ], + "target_column": "quality", + "task_type": "classification", + "input_splits": { + "train": "/data/jialinzhang/SynthesizePipeline-server/DatasetNew/n3/n3-train.csv", + "val": "/data/jialinzhang/SynthesizePipeline-server/DatasetNew/n3/n3-val.csv", + "test": "/data/jialinzhang/SynthesizePipeline-server/DatasetNew/n3/n3-test.csv" + } +} \ No newline at end of file diff --git a/hyperparameter/n3/forestdiffusion/forest-n3-20260505_064525/public_gate/staged_input_manifest.json b/hyperparameter/n3/forestdiffusion/forest-n3-20260505_064525/public_gate/staged_input_manifest.json new file mode 100644 index 0000000000000000000000000000000000000000..970e3a275abd8225c99baddff46ba6604523ca03 --- /dev/null +++ b/hyperparameter/n3/forestdiffusion/forest-n3-20260505_064525/public_gate/staged_input_manifest.json @@ -0,0 +1,264 @@ +{ + "dataset_id": "n3", + "target_column": "quality", + "task_type": "classification", + "train_csv": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/n3/forestdiffusion/forest-n3-20260505_064525/staged/public/train.csv", + "val_csv": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/n3/forestdiffusion/forest-n3-20260505_064525/staged/public/val.csv", + "test_csv": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/n3/forestdiffusion/forest-n3-20260505_064525/staged/public/test.csv", + "features_json": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/n3/forestdiffusion/forest-n3-20260505_064525/staged/public/staged_features.json", + "public_gate_report": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/n3/forestdiffusion/forest-n3-20260505_064525/public_gate/public_gate_report.json", + "column_schema": [ + { + "name": "fixed acidity", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 66, + "unique_ratio": 0.016845, + "example_values": [ + "7.1", + "8.5", + "6.4", + "6.8", + "7.6" + ] + } + }, + { + "name": "volatile acidity", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 121, + "unique_ratio": 0.030883, + "example_values": [ + "0.31", + "0.21", + "0.24", + "0.43", + "0.27" + ] + } + }, + { + "name": "citric acid", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 85, + "unique_ratio": 0.021695, + "example_values": [ + "0.17", + "0.41", + "0.31", + "0.25", + "0.3" + ] + } + }, + { + "name": "residual sugar", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 296, + "unique_ratio": 0.075549, + "example_values": [ + "1", + "4.3", + "2.8", + "13", + "12.9" + ] + } + }, + { + "name": "chlorides", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 147, + "unique_ratio": 0.037519, + "example_values": [ + "0.042", + "0.036", + "0.038", + "0.047", + "0.033" + ] + } + }, + { + "name": "free sulfur dioxide", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 120, + "unique_ratio": 0.030628, + "example_values": [ + "21", + "24", + "41", + "43", + "69" + ] + } + }, + { + "name": "total sulfur dioxide", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 244, + "unique_ratio": 0.062277, + "example_values": [ + "144", + "99", + "114", + "132", + "160" + ] + } + }, + { + "name": "density", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 839, + "unique_ratio": 0.21414, + "example_values": [ + "0.99304", + "0.9947", + "0.99155", + "0.98975", + "0.99705" + ] + } + }, + { + "name": "pH", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 100, + "unique_ratio": 0.025523, + "example_values": [ + "3.13", + "3.18", + "3.37", + "3.21", + "3.16" + ] + } + }, + { + "name": "sulphates", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 78, + "unique_ratio": 0.019908, + "example_values": [ + "0.4", + "0.53", + "0.66", + "0.47", + "0.5" + ] + } + }, + { + "name": "alcohol", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 97, + "unique_ratio": 0.024758, + "example_values": [ + "9.6", + "9.7", + "11.7", + "13.4", + "8.8" + ] + } + }, + { + "name": "quality", + "role": "target", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 7, + "unique_ratio": 0.001787, + "example_values": [ + "5", + "6", + "7", + "8", + "3" + ] + } + } + ] +} \ No newline at end of file diff --git a/hyperparameter/n3/forestdiffusion/forest-n3-20260505_064525/run_config.json b/hyperparameter/n3/forestdiffusion/forest-n3-20260505_064525/run_config.json new file mode 100644 index 0000000000000000000000000000000000000000..9e4e72df1802bd9728152a32069ae81d86f04b6b --- /dev/null +++ b/hyperparameter/n3/forestdiffusion/forest-n3-20260505_064525/run_config.json @@ -0,0 +1,45 @@ +{ + "schema_version": 1, + "recorded_at": "2026-05-05T06:45:25", + "dataset_id": "n3", + "model": "forestdiffusion", + "work_dir": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/n3/forestdiffusion/forest-n3-20260505_064525", + "dataset_source_requested": "new", + "dataset_source_resolved": "new", + "cli_args": { + "model": "forestdiffusion", + "dataset": "n3", + "dataset_source": "new", + "train": true, + "generate": true, + "num_rows": 0, + "epochs": null, + "output_dir": null, + "model_dir": null, + "work_dir": null, + "resume": false, + "no_stats": false + }, + "resolved": { + "num_rows": 3918, + "model_path": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/n3/forestdiffusion/forest-n3-20260505_064525/models_fd/model.joblib", + "output_csv": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/n3/forestdiffusion/forest-n3-20260505_064525/forest-n3-3918-20260505_070241.csv" + }, + "input_artifacts": { + "public_gate_report": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/n3/forestdiffusion/forest-n3-20260505_064525/public_gate/public_gate_report.json", + "public_manifest": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/n3/forestdiffusion/forest-n3-20260505_064525/public_gate/staged_input_manifest.json", + "model_manifest": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/n3/forestdiffusion/forest-n3-20260505_064525/staged/forestdiffusion/model_input_manifest.json", + "train_csv": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/n3/forestdiffusion/forest-n3-20260505_064525/staged/public/train.csv", + "features_json": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/n3/forestdiffusion/forest-n3-20260505_064525/staged/public/staged_features.json", + "target_column": "quality", + "task_type": "classification" + }, + "env_overrides": { + "FORESTDIFFUSION_DUPLICATE_K": "5", + "FORESTDIFFUSION_MAX_DEPTH": "4", + "FORESTDIFFUSION_MAX_TRAIN_ROWS": "50000", + "FORESTDIFFUSION_N_ESTIMATORS": "20", + "FORESTDIFFUSION_N_JOBS": "1", + "FORESTDIFFUSION_N_T": "10" + } +} \ No newline at end of file diff --git a/hyperparameter/n3/forestdiffusion/forest-n3-20260505_064525/runtime_result.json b/hyperparameter/n3/forestdiffusion/forest-n3-20260505_064525/runtime_result.json new file mode 100644 index 0000000000000000000000000000000000000000..e287a8bcda280752a5e9751c84071c4d94c410fc --- /dev/null +++ b/hyperparameter/n3/forestdiffusion/forest-n3-20260505_064525/runtime_result.json @@ -0,0 +1,27 @@ +{ + "dataset_id": "n3", + "model": "forestdiffusion", + "run_id": "forest-n3-20260505_064525", + "public_gate_status": "pass", + "adapter_ready_status": "pass", + "train_status": "success", + "generate_status": "success", + "reason_code": null, + "reason_detail": null, + "artifacts": { + "synthetic_csv": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/n3/forestdiffusion/forest-n3-20260505_064525/forest-n3-3918-20260505_070241.csv", + "model_path": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/n3/forestdiffusion/forest-n3-20260505_064525/models_fd/model.joblib" + }, + "timings": { + "train": { + "started_at": "2026-05-05T06:45:25", + "ended_at": "2026-05-05T07:02:41", + "duration_sec": 1035.34 + }, + "generate": { + "started_at": "2026-05-05T07:02:41", + "ended_at": "2026-05-05T07:02:44", + "duration_sec": 3.52 + } + } +} \ No newline at end of file diff --git a/hyperparameter/n3/forestdiffusion/forest-n3-20260505_064525/staged/forestdiffusion/adapter_report.json b/hyperparameter/n3/forestdiffusion/forest-n3-20260505_064525/staged/forestdiffusion/adapter_report.json new file mode 100644 index 0000000000000000000000000000000000000000..0e35565f39e87a22ed235f4ac6e68b049db5f4ad --- /dev/null +++ b/hyperparameter/n3/forestdiffusion/forest-n3-20260505_064525/staged/forestdiffusion/adapter_report.json @@ -0,0 +1,7 @@ +{ + "adapter_ready_status": "pass", + "adapter_fail_reason_code": null, + "adapter_fail_detail": null, + "adapter_transforms_applied": [], + "model_input_manifest": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/n3/forestdiffusion/forest-n3-20260505_064525/staged/forestdiffusion/model_input_manifest.json" +} \ No newline at end of file diff --git a/hyperparameter/n3/forestdiffusion/forest-n3-20260505_064525/staged/forestdiffusion/adapter_transforms_applied.json b/hyperparameter/n3/forestdiffusion/forest-n3-20260505_064525/staged/forestdiffusion/adapter_transforms_applied.json new file mode 100644 index 0000000000000000000000000000000000000000..0637a088a01e8ddab3bf3fa98dbe804cbde1a0dc --- /dev/null +++ b/hyperparameter/n3/forestdiffusion/forest-n3-20260505_064525/staged/forestdiffusion/adapter_transforms_applied.json @@ -0,0 +1 @@ +[] \ No newline at end of file diff --git a/hyperparameter/n3/forestdiffusion/forest-n3-20260505_064525/staged/forestdiffusion/model_input_manifest.json b/hyperparameter/n3/forestdiffusion/forest-n3-20260505_064525/staged/forestdiffusion/model_input_manifest.json new file mode 100644 index 0000000000000000000000000000000000000000..07ccb2ff996565e971cf4bcd1034de02e1ac32c1 --- /dev/null +++ b/hyperparameter/n3/forestdiffusion/forest-n3-20260505_064525/staged/forestdiffusion/model_input_manifest.json @@ -0,0 +1,266 @@ +{ + "dataset_id": "n3", + "model": "forestdiffusion", + "target_column": "quality", + "task_type": "classification", + "column_schema": [ + { + "name": "fixed acidity", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 66, + "unique_ratio": 0.016845, + "example_values": [ + "7.1", + "8.5", + "6.4", + "6.8", + "7.6" + ] + } + }, + { + "name": "volatile acidity", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 121, + "unique_ratio": 0.030883, + "example_values": [ + "0.31", + "0.21", + "0.24", + "0.43", + "0.27" + ] + } + }, + { + "name": "citric acid", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 85, + "unique_ratio": 0.021695, + "example_values": [ + "0.17", + "0.41", + "0.31", + "0.25", + "0.3" + ] + } + }, + { + "name": "residual sugar", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 296, + "unique_ratio": 0.075549, + "example_values": [ + "1", + "4.3", + "2.8", + "13", + "12.9" + ] + } + }, + { + "name": "chlorides", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 147, + "unique_ratio": 0.037519, + "example_values": [ + "0.042", + "0.036", + "0.038", + "0.047", + "0.033" + ] + } + }, + { + "name": "free sulfur dioxide", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 120, + "unique_ratio": 0.030628, + "example_values": [ + "21", + "24", + "41", + "43", + "69" + ] + } + }, + { + "name": "total sulfur dioxide", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 244, + "unique_ratio": 0.062277, + "example_values": [ + "144", + "99", + "114", + "132", + "160" + ] + } + }, + { + "name": "density", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 839, + "unique_ratio": 0.21414, + "example_values": [ + "0.99304", + "0.9947", + "0.99155", + "0.98975", + "0.99705" + ] + } + }, + { + "name": "pH", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 100, + "unique_ratio": 0.025523, + "example_values": [ + "3.13", + "3.18", + "3.37", + "3.21", + "3.16" + ] + } + }, + { + "name": "sulphates", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 78, + "unique_ratio": 0.019908, + "example_values": [ + "0.4", + "0.53", + "0.66", + "0.47", + "0.5" + ] + } + }, + { + "name": "alcohol", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 97, + "unique_ratio": 0.024758, + "example_values": [ + "9.6", + "9.7", + "11.7", + "13.4", + "8.8" + ] + } + }, + { + "name": "quality", + "role": "target", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 7, + "unique_ratio": 0.001787, + "example_values": [ + "5", + "6", + "7", + "8", + "3" + ] + } + } + ], + "public_manifest": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/n3/forestdiffusion/forest-n3-20260505_064525/public_gate/staged_input_manifest.json", + "train_csv": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/n3/forestdiffusion/forest-n3-20260505_064525/staged/public/train.csv", + "val_csv": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/n3/forestdiffusion/forest-n3-20260505_064525/staged/public/val.csv", + "test_csv": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/n3/forestdiffusion/forest-n3-20260505_064525/staged/public/test.csv", + "features_json": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/n3/forestdiffusion/forest-n3-20260505_064525/staged/public/staged_features.json", + "public_gate_report": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/n3/forestdiffusion/forest-n3-20260505_064525/public_gate/public_gate_report.json" +} \ No newline at end of file diff --git a/hyperparameter/n3/forestdiffusion/forest-n3-20260505_064525/staged/public/staged_features.json b/hyperparameter/n3/forestdiffusion/forest-n3-20260505_064525/staged/public/staged_features.json new file mode 100644 index 0000000000000000000000000000000000000000..08fe4d766d091d2f2ddba724a16b9509cbe4c390 --- /dev/null +++ b/hyperparameter/n3/forestdiffusion/forest-n3-20260505_064525/staged/public/staged_features.json @@ -0,0 +1,62 @@ +[ + { + "feature_name": "fixed acidity", + "data_type": "continuous", + "is_target": false + }, + { + "feature_name": "volatile acidity", + "data_type": "continuous", + "is_target": false + }, + { + "feature_name": "citric acid", + "data_type": "continuous", + "is_target": false + }, + { + "feature_name": "residual sugar", + "data_type": "continuous", + "is_target": false + }, + { + "feature_name": "chlorides", + "data_type": "continuous", + "is_target": false + }, + { + "feature_name": "free sulfur dioxide", + "data_type": "continuous", + "is_target": false + }, + { + "feature_name": "total sulfur dioxide", + "data_type": "continuous", + "is_target": false + }, + { + "feature_name": "density", + "data_type": "continuous", + "is_target": false + }, + { + "feature_name": "pH", + "data_type": "continuous", + "is_target": false + }, + { + "feature_name": "sulphates", + "data_type": "continuous", + "is_target": false + }, + { + "feature_name": "alcohol", + "data_type": "continuous", + "is_target": false + }, + { + "feature_name": "quality", + "data_type": "continuous", + "is_target": true + } +] \ No newline at end of file diff --git a/hyperparameter/n3/forestdiffusion/forest-n3-20260505_064525/staged/public/test.csv b/hyperparameter/n3/forestdiffusion/forest-n3-20260505_064525/staged/public/test.csv new file mode 100644 index 0000000000000000000000000000000000000000..db5cd50d3746410ea470625fa2ba2c8e9775cc0d --- /dev/null +++ b/hyperparameter/n3/forestdiffusion/forest-n3-20260505_064525/staged/public/test.csv @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:19e107152a94432e2a37ff045c00cfe35e1be30208b1553080d7dd0ede256d3b +size 28944 diff --git a/hyperparameter/n3/forestdiffusion/forest-n3-20260505_064525/staged/public/train.csv b/hyperparameter/n3/forestdiffusion/forest-n3-20260505_064525/staged/public/train.csv new file mode 100644 index 0000000000000000000000000000000000000000..87ca26726fe82ccbaa397919305b043c17eb374e --- /dev/null +++ b/hyperparameter/n3/forestdiffusion/forest-n3-20260505_064525/staged/public/train.csv @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:7813c8cca73ba4bfc6559215257b341c21e459980ad17ae6ddc809306bc9a0b9 +size 229945 diff --git a/hyperparameter/n3/forestdiffusion/forest-n3-20260505_064525/staged/public/val.csv b/hyperparameter/n3/forestdiffusion/forest-n3-20260505_064525/staged/public/val.csv new file mode 100644 index 0000000000000000000000000000000000000000..6acf84c76c47093b513c46d5503972a2dff275c0 --- /dev/null +++ b/hyperparameter/n3/forestdiffusion/forest-n3-20260505_064525/staged/public/val.csv @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:cf5979d9675567d9d6642640c9b84fc6c49e492604144723c30f50516c05cee6 +size 28791 diff --git a/hyperparameter/n3/forestdiffusion/forest-n3-20260505_064525/train_20260505_064525.log b/hyperparameter/n3/forestdiffusion/forest-n3-20260505_064525/train_20260505_064525.log new file mode 100644 index 0000000000000000000000000000000000000000..8e56b309686cebde5c19cbe49a9f4042dc93156c --- /dev/null +++ b/hyperparameter/n3/forestdiffusion/forest-n3-20260505_064525/train_20260505_064525.log @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:8bc3c4bd978d08730542b96edca77b9c4f938c3d4ad7db3dbd4f63cd5dd2c95a +size 435 diff --git a/hyperparameter/n3/realtabformer/rtf-n3-20260505_022834/gen_20260505_022938.log b/hyperparameter/n3/realtabformer/rtf-n3-20260505_022834/gen_20260505_022938.log new file mode 100644 index 0000000000000000000000000000000000000000..63665fb11a86d16e8c37b6246ffa58f58574455c --- /dev/null +++ b/hyperparameter/n3/realtabformer/rtf-n3-20260505_022834/gen_20260505_022938.log @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:51c7f040c540ac7bd82a1862824fbdf09da685ff117d70f0dd8169e32f28c208 +size 2529 diff --git a/hyperparameter/n3/realtabformer/rtf-n3-20260505_022834/input_snapshot.json b/hyperparameter/n3/realtabformer/rtf-n3-20260505_022834/input_snapshot.json new file mode 100644 index 0000000000000000000000000000000000000000..db9a330f8472dedc095e195fd3a6da0d66be3b17 --- /dev/null +++ b/hyperparameter/n3/realtabformer/rtf-n3-20260505_022834/input_snapshot.json @@ -0,0 +1,36 @@ +{ + "dataset_id": "n3", + "model": "realtabformer", + "inputs": { + "train_csv": { + "path": "/data/jialinzhang/SynthesizePipeline-server/DatasetNew/n3/n3-train.csv", + "exists": true, + "size": 211519, + "sha256": "2160a06db2fea02adb0ebb79d8d853bd2544580be301e71f6e8deeb1489a9009" + }, + "val_csv": { + "path": "/data/jialinzhang/SynthesizePipeline-server/DatasetNew/n3/n3-val.csv", + "exists": true, + "size": 26499, + "sha256": "d5ccfee07dfa9e7bdee5bb87642b43828e09f74c6cc0266a3d19d9feaa83106e" + }, + "test_csv": { + "path": "/data/jialinzhang/SynthesizePipeline-server/DatasetNew/n3/n3-test.csv", + "exists": true, + "size": 26676, + "sha256": "6f83aacb0d1747b95e287352a7fff5d9d65a1c127b773852346c68485c4ede47" + }, + "profile_json": { + "path": "/data/jialinzhang/SynthesizePipeline-server/DatasetNew/artifacts/data_core/tabular/n3/n3-dataset_profile.json", + "exists": true, + "size": 5235, + "sha256": "23d2e5904a2ca90cbf8d6e3c75887681721e9b90cc705c31a680c11513d0c46f" + }, + "contract_json": { + "path": "/data/jialinzhang/SynthesizePipeline-server/DatasetNew/artifacts/data_core/tabular/n3/n3-dataset_contract_v1.json", + "exists": true, + "size": 6281, + "sha256": "c0cc56f5fe28e1b65927255c6e3c2b0e9479862c2ec6f2fea1664da36c9a3a09" + } + } +} \ No newline at end of file diff --git a/hyperparameter/n3/realtabformer/rtf-n3-20260505_022834/models_5epochs/id000017779193761165387776/rtf_config.json b/hyperparameter/n3/realtabformer/rtf-n3-20260505_022834/models_5epochs/id000017779193761165387776/rtf_config.json new file mode 100644 index 0000000000000000000000000000000000000000..21bdedb9d0cb9dd273f6b92c3d320cec3715c178 --- /dev/null +++ b/hyperparameter/n3/realtabformer/rtf-n3-20260505_022834/models_5epochs/id000017779193761165387776/rtf_config.json @@ -0,0 +1 @@ +{"model_type": "tabular", "tabular_config": {"transformers_version": "5.5.3", "architectures": ["GPT2LMHeadModel"], "output_hidden_states": false, "return_dict": true, "dtype": "float32", "chunk_size_feed_forward": 0, "is_encoder_decoder": false, "id2label": {"0": "LABEL_0", "1": "LABEL_1"}, "label2id": {"LABEL_0": 0, "LABEL_1": 1}, "problem_type": null, "vocab_size": 304, "n_positions": 1024, "n_embd": 768, "n_layer": 6, "n_head": 12, "n_inner": null, "activation_function": "gelu_new", "resid_pdrop": 0.1, "embd_pdrop": 0.1, "attn_pdrop": 0.1, "layer_norm_epsilon": 1e-05, "initializer_range": 0.02, "summary_type": "cls_index", "summary_use_proj": true, "summary_activation": null, "summary_proj_to_labels": true, "summary_first_dropout": 0.1, "scale_attn_weights": true, "use_cache": false, "bos_token_id": 5, "eos_token_id": 6, "pad_token_id": null, "scale_attn_by_inverse_layer_idx": false, "reorder_and_upcast_attn": false, "add_cross_attention": false, "tie_word_embeddings": true, "_name_or_path": "", "model_type": "gpt2", "output_attentions": false}, "checkpoints_dir": "rtf_checkpoints", "samples_save_dir": "rtf_samples", "full_save_dir": "rtf_full_save", "epochs": 5, "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": 5, "per_device_train_batch_size": 8, "per_device_eval_batch_size": 8, "gradient_accumulation_steps": 4, "remove_unused_columns": true, "logging_steps": 100, "save_steps": 100, "eval_steps": 100, "load_best_model_at_end": false, "save_total_limit": 6, "optim": "adamw_torch"}, "train_size": 1, "mask_rate": 0, "columns": ["fixed acidity", "volatile acidity", "citric acid", "residual sugar", "chlorides", "free sulfur dioxide", "total sulfur dioxide", "density", "pH", "sulphates", "alcohol", "quality"], "column_dtypes": {"fixed acidity": "float64", "volatile acidity": "float64", "citric acid": "float64", "residual sugar": "float64", "chlorides": "float64", "free sulfur dioxide": "float64", "total sulfur dioxide": "float64", "density": "float64", "pH": "float64", "sulphates": "float64", "alcohol": "float64", "quality": "int64"}, "column_has_missing": {"fixed acidity": false, "volatile acidity": false, "citric acid": false, "residual sugar": false, "chlorides": false, "free sulfur dioxide": false, "total sulfur dioxide": false, "density": false, "pH": false, "sulphates": false, "alcohol": false, "quality": false}, "drop_na_cols": ["fixed acidity", "volatile acidity", "citric acid", "residual sugar", "chlorides", "free sulfur dioxide", "total sulfur dioxide", "density", "pH", "sulphates", "alcohol", "quality"], "processed_columns": ["00___NUMERIC___fixed acidity_00", "00___NUMERIC___fixed acidity_01", "00___NUMERIC___fixed acidity_02", "00___NUMERIC___fixed acidity_03", "00___NUMERIC___fixed acidity_04", "01___NUMERIC___volatile acidity_00", "01___NUMERIC___volatile acidity_01", "01___NUMERIC___volatile acidity_02", "01___NUMERIC___volatile acidity_03", "01___NUMERIC___volatile acidity_04", "02___NUMERIC___citric acid_00", "02___NUMERIC___citric acid_01", "02___NUMERIC___citric acid_02", "02___NUMERIC___citric acid_03", "03___NUMERIC___residual sugar_00", "03___NUMERIC___residual sugar_01", "03___NUMERIC___residual sugar_02", "03___NUMERIC___residual sugar_03", "03___NUMERIC___residual sugar_04", "04___NUMERIC___chlorides_00", "04___NUMERIC___chlorides_01", "04___NUMERIC___chlorides_02", "04___NUMERIC___chlorides_03", "04___NUMERIC___chlorides_04", "05___NUMERIC___free sulfur dioxide_00", "05___NUMERIC___free sulfur dioxide_01", "05___NUMERIC___free sulfur dioxide_02", "05___NUMERIC___free sulfur dioxide_03", "05___NUMERIC___free sulfur dioxide_04", "06___NUMERIC___total sulfur dioxide_00", "06___NUMERIC___total sulfur dioxide_01", "06___NUMERIC___total sulfur dioxide_02", "06___NUMERIC___total sulfur dioxide_03", "06___NUMERIC___total sulfur dioxide_04", "07___NUMERIC___density_00", "07___NUMERIC___density_01", "07___NUMERIC___density_02", "07___NUMERIC___density_03", "07___NUMERIC___density_04", "07___NUMERIC___density_05", "08___NUMERIC___pH_00", "08___NUMERIC___pH_01", "08___NUMERIC___pH_02", "08___NUMERIC___pH_03", "09___NUMERIC___sulphates_00", "09___NUMERIC___sulphates_01", "09___NUMERIC___sulphates_02", "09___NUMERIC___sulphates_03", "10___NUMERIC___alcohol_00", "10___NUMERIC___alcohol_01", "10___NUMERIC___alcohol_02", "10___NUMERIC___alcohol_03", "10___NUMERIC___alcohol_04", "10___NUMERIC___alcohol_05", "10___NUMERIC___alcohol_06", "11___NUMERIC___quality_00"], "numeric_columns": ["fixed acidity", "volatile acidity", "citric acid", "residual sugar", "chlorides", "free sulfur dioxide", "total sulfur dioxide", "density", "pH", "sulphates", "alcohol", "quality"], "datetime_columns": [], "vocab": {"id2token": {"0": "[UNK]", "1": "[SEP]", "2": "[PAD]", "3": "[CLS]", "4": "[MASK]", "5": "[BOS]", "6": "[EOS]", "7": "[BMEM]", "8": "[EMEM]", "9": "[RMASK]", "10": "[SPTYPE]", "11": "00___NUMERIC___fixed acidity_00___0", "12": "00___NUMERIC___fixed acidity_00___1", "13": "00___NUMERIC___fixed acidity_01___0", "14": "00___NUMERIC___fixed acidity_01___1", "15": "00___NUMERIC___fixed acidity_01___3", "16": "00___NUMERIC___fixed acidity_01___4", "17": "00___NUMERIC___fixed acidity_01___5", "18": "00___NUMERIC___fixed acidity_01___6", "19": "00___NUMERIC___fixed acidity_01___7", "20": "00___NUMERIC___fixed acidity_01___8", "21": "00___NUMERIC___fixed acidity_01___9", "22": "00___NUMERIC___fixed acidity_02___.", "23": "00___NUMERIC___fixed acidity_03___0", "24": "00___NUMERIC___fixed acidity_03___1", "25": "00___NUMERIC___fixed acidity_03___2", "26": "00___NUMERIC___fixed acidity_03___3", "27": "00___NUMERIC___fixed acidity_03___4", "28": "00___NUMERIC___fixed acidity_03___5", "29": "00___NUMERIC___fixed acidity_03___6", "30": "00___NUMERIC___fixed acidity_03___7", "31": "00___NUMERIC___fixed acidity_03___8", "32": "00___NUMERIC___fixed acidity_03___9", "33": "00___NUMERIC___fixed acidity_04___0", "34": "00___NUMERIC___fixed acidity_04___5", "35": "01___NUMERIC___volatile acidity_00___0", "36": "01___NUMERIC___volatile acidity_00___1", "37": "01___NUMERIC___volatile acidity_01___.", "38": "01___NUMERIC___volatile acidity_02___0", "39": "01___NUMERIC___volatile acidity_02___1", "40": "01___NUMERIC___volatile acidity_02___2", "41": "01___NUMERIC___volatile acidity_02___3", "42": "01___NUMERIC___volatile acidity_02___4", "43": "01___NUMERIC___volatile acidity_02___5", "44": "01___NUMERIC___volatile acidity_02___6", "45": "01___NUMERIC___volatile acidity_02___7", "46": "01___NUMERIC___volatile acidity_02___8", "47": "01___NUMERIC___volatile acidity_02___9", "48": "01___NUMERIC___volatile acidity_03___0", "49": "01___NUMERIC___volatile acidity_03___1", "50": "01___NUMERIC___volatile acidity_03___2", "51": "01___NUMERIC___volatile acidity_03___3", "52": "01___NUMERIC___volatile acidity_03___4", "53": "01___NUMERIC___volatile acidity_03___5", "54": "01___NUMERIC___volatile acidity_03___6", "55": "01___NUMERIC___volatile acidity_03___7", "56": "01___NUMERIC___volatile acidity_03___8", "57": "01___NUMERIC___volatile acidity_03___9", "58": "01___NUMERIC___volatile acidity_04___0", "59": "01___NUMERIC___volatile acidity_04___5", "60": "02___NUMERIC___citric acid_00___0", "61": "02___NUMERIC___citric acid_00___1", "62": "02___NUMERIC___citric acid_01___.", "63": "02___NUMERIC___citric acid_02___0", "64": "02___NUMERIC___citric acid_02___1", "65": "02___NUMERIC___citric acid_02___2", "66": "02___NUMERIC___citric acid_02___3", "67": "02___NUMERIC___citric acid_02___4", "68": "02___NUMERIC___citric acid_02___5", "69": "02___NUMERIC___citric acid_02___6", "70": "02___NUMERIC___citric acid_02___7", "71": "02___NUMERIC___citric acid_02___8", "72": "02___NUMERIC___citric acid_02___9", "73": "02___NUMERIC___citric acid_03___0", "74": "02___NUMERIC___citric acid_03___1", "75": "02___NUMERIC___citric acid_03___2", "76": "02___NUMERIC___citric acid_03___3", "77": "02___NUMERIC___citric acid_03___4", "78": "02___NUMERIC___citric acid_03___5", "79": "02___NUMERIC___citric acid_03___6", "80": "02___NUMERIC___citric acid_03___7", "81": "02___NUMERIC___citric acid_03___8", "82": "02___NUMERIC___citric acid_03___9", "83": "03___NUMERIC___residual sugar_00___0", "84": "03___NUMERIC___residual sugar_00___1", "85": "03___NUMERIC___residual sugar_00___2", "86": "03___NUMERIC___residual sugar_00___3", "87": "03___NUMERIC___residual sugar_00___6", "88": "03___NUMERIC___residual sugar_01___0", "89": "03___NUMERIC___residual sugar_01___1", "90": "03___NUMERIC___residual sugar_01___2", "91": "03___NUMERIC___residual sugar_01___3", "92": "03___NUMERIC___residual sugar_01___4", "93": "03___NUMERIC___residual sugar_01___5", "94": "03___NUMERIC___residual sugar_01___6", "95": "03___NUMERIC___residual sugar_01___7", "96": "03___NUMERIC___residual sugar_01___8", "97": "03___NUMERIC___residual sugar_01___9", "98": "03___NUMERIC___residual sugar_02___.", "99": "03___NUMERIC___residual sugar_03___0", "100": "03___NUMERIC___residual sugar_03___1", "101": "03___NUMERIC___residual sugar_03___2", "102": "03___NUMERIC___residual sugar_03___3", "103": "03___NUMERIC___residual sugar_03___4", "104": "03___NUMERIC___residual sugar_03___5", "105": "03___NUMERIC___residual sugar_03___6", "106": "03___NUMERIC___residual sugar_03___7", "107": "03___NUMERIC___residual sugar_03___8", "108": "03___NUMERIC___residual sugar_03___9", "109": "03___NUMERIC___residual sugar_04___0", "110": "03___NUMERIC___residual sugar_04___5", "111": "04___NUMERIC___chlorides_00___0", "112": "04___NUMERIC___chlorides_01___.", "113": "04___NUMERIC___chlorides_02___0", "114": "04___NUMERIC___chlorides_02___1", "115": "04___NUMERIC___chlorides_02___2", "116": "04___NUMERIC___chlorides_02___3", "117": "04___NUMERIC___chlorides_03___0", "118": "04___NUMERIC___chlorides_03___1", "119": "04___NUMERIC___chlorides_03___2", "120": "04___NUMERIC___chlorides_03___3", "121": "04___NUMERIC___chlorides_03___4", "122": "04___NUMERIC___chlorides_03___5", "123": "04___NUMERIC___chlorides_03___6", "124": "04___NUMERIC___chlorides_03___7", "125": "04___NUMERIC___chlorides_03___8", "126": "04___NUMERIC___chlorides_03___9", "127": "04___NUMERIC___chlorides_04___0", "128": "04___NUMERIC___chlorides_04___1", "129": "04___NUMERIC___chlorides_04___2", "130": "04___NUMERIC___chlorides_04___3", "131": "04___NUMERIC___chlorides_04___4", "132": "04___NUMERIC___chlorides_04___5", "133": "04___NUMERIC___chlorides_04___6", "134": "04___NUMERIC___chlorides_04___7", "135": "04___NUMERIC___chlorides_04___8", "136": "04___NUMERIC___chlorides_04___9", "137": "05___NUMERIC___free sulfur dioxide_00___0", "138": "05___NUMERIC___free sulfur dioxide_00___1", "139": "05___NUMERIC___free sulfur dioxide_01___0", "140": "05___NUMERIC___free sulfur dioxide_01___1", "141": "05___NUMERIC___free sulfur dioxide_01___2", "142": "05___NUMERIC___free sulfur dioxide_01___3", "143": "05___NUMERIC___free sulfur dioxide_01___4", "144": "05___NUMERIC___free sulfur dioxide_01___5", "145": "05___NUMERIC___free sulfur dioxide_01___6", "146": "05___NUMERIC___free sulfur dioxide_01___7", "147": "05___NUMERIC___free sulfur dioxide_01___8", "148": "05___NUMERIC___free sulfur dioxide_01___9", "149": "05___NUMERIC___free sulfur dioxide_02___0", "150": "05___NUMERIC___free sulfur dioxide_02___1", "151": "05___NUMERIC___free sulfur dioxide_02___2", "152": "05___NUMERIC___free sulfur dioxide_02___3", "153": "05___NUMERIC___free sulfur dioxide_02___4", "154": "05___NUMERIC___free sulfur dioxide_02___5", "155": "05___NUMERIC___free sulfur dioxide_02___6", "156": "05___NUMERIC___free sulfur dioxide_02___7", "157": "05___NUMERIC___free sulfur dioxide_02___8", "158": "05___NUMERIC___free sulfur dioxide_02___9", "159": "05___NUMERIC___free sulfur dioxide_03___.", "160": "05___NUMERIC___free sulfur dioxide_04___0", "161": "05___NUMERIC___free sulfur dioxide_04___5", "162": "06___NUMERIC___total sulfur dioxide_00___0", "163": "06___NUMERIC___total sulfur dioxide_00___1", "164": "06___NUMERIC___total sulfur dioxide_00___2", "165": "06___NUMERIC___total sulfur dioxide_00___3", "166": "06___NUMERIC___total sulfur dioxide_01___0", "167": "06___NUMERIC___total sulfur dioxide_01___1", "168": "06___NUMERIC___total sulfur dioxide_01___2", "169": "06___NUMERIC___total sulfur dioxide_01___3", "170": "06___NUMERIC___total sulfur dioxide_01___4", "171": "06___NUMERIC___total sulfur dioxide_01___5", "172": "06___NUMERIC___total sulfur dioxide_01___6", "173": "06___NUMERIC___total sulfur dioxide_01___7", "174": "06___NUMERIC___total sulfur dioxide_01___8", "175": "06___NUMERIC___total sulfur dioxide_01___9", "176": "06___NUMERIC___total sulfur dioxide_02___0", "177": "06___NUMERIC___total sulfur dioxide_02___1", "178": "06___NUMERIC___total sulfur dioxide_02___2", "179": "06___NUMERIC___total sulfur dioxide_02___3", "180": "06___NUMERIC___total sulfur dioxide_02___4", "181": "06___NUMERIC___total sulfur dioxide_02___5", "182": "06___NUMERIC___total sulfur dioxide_02___6", "183": "06___NUMERIC___total sulfur dioxide_02___7", "184": "06___NUMERIC___total sulfur dioxide_02___8", "185": "06___NUMERIC___total sulfur dioxide_02___9", "186": "06___NUMERIC___total sulfur dioxide_03___.", "187": "06___NUMERIC___total sulfur dioxide_04___0", "188": "06___NUMERIC___total sulfur dioxide_04___5", "189": "07___NUMERIC___density_00___0", "190": "07___NUMERIC___density_00___1", "191": "07___NUMERIC___density_01___.", "192": "07___NUMERIC___density_02___0", "193": "07___NUMERIC___density_02___9", "194": "07___NUMERIC___density_03___0", "195": "07___NUMERIC___density_03___1", "196": "07___NUMERIC___density_03___3", "197": "07___NUMERIC___density_03___8", "198": "07___NUMERIC___density_03___9", "199": "07___NUMERIC___density_04___0", "200": "07___NUMERIC___density_04___1", "201": "07___NUMERIC___density_04___2", "202": "07___NUMERIC___density_04___3", "203": "07___NUMERIC___density_04___4", "204": "07___NUMERIC___density_04___5", "205": "07___NUMERIC___density_04___6", "206": "07___NUMERIC___density_04___7", "207": "07___NUMERIC___density_04___8", "208": "07___NUMERIC___density_04___9", "209": "07___NUMERIC___density_05___0", "210": "07___NUMERIC___density_05___1", "211": "07___NUMERIC___density_05___2", "212": "07___NUMERIC___density_05___3", "213": "07___NUMERIC___density_05___4", "214": "07___NUMERIC___density_05___5", "215": "07___NUMERIC___density_05___6", "216": "07___NUMERIC___density_05___7", "217": "07___NUMERIC___density_05___8", "218": "07___NUMERIC___density_05___9", "219": "08___NUMERIC___pH_00___2", "220": "08___NUMERIC___pH_00___3", "221": "08___NUMERIC___pH_01___.", "222": "08___NUMERIC___pH_02___0", "223": "08___NUMERIC___pH_02___1", "224": "08___NUMERIC___pH_02___2", "225": "08___NUMERIC___pH_02___3", "226": "08___NUMERIC___pH_02___4", "227": "08___NUMERIC___pH_02___5", "228": "08___NUMERIC___pH_02___6", "229": "08___NUMERIC___pH_02___7", "230": "08___NUMERIC___pH_02___8", "231": "08___NUMERIC___pH_02___9", "232": "08___NUMERIC___pH_03___0", "233": "08___NUMERIC___pH_03___1", "234": "08___NUMERIC___pH_03___2", "235": "08___NUMERIC___pH_03___3", "236": "08___NUMERIC___pH_03___4", "237": "08___NUMERIC___pH_03___5", "238": "08___NUMERIC___pH_03___6", "239": "08___NUMERIC___pH_03___7", "240": "08___NUMERIC___pH_03___8", "241": "08___NUMERIC___pH_03___9", "242": "09___NUMERIC___sulphates_00___0", "243": "09___NUMERIC___sulphates_00___1", "244": "09___NUMERIC___sulphates_01___.", "245": "09___NUMERIC___sulphates_02___0", "246": "09___NUMERIC___sulphates_02___2", "247": "09___NUMERIC___sulphates_02___3", "248": "09___NUMERIC___sulphates_02___4", "249": "09___NUMERIC___sulphates_02___5", "250": "09___NUMERIC___sulphates_02___6", "251": "09___NUMERIC___sulphates_02___7", "252": "09___NUMERIC___sulphates_02___8", "253": "09___NUMERIC___sulphates_02___9", "254": "09___NUMERIC___sulphates_03___0", "255": "09___NUMERIC___sulphates_03___1", "256": "09___NUMERIC___sulphates_03___2", "257": "09___NUMERIC___sulphates_03___3", "258": "09___NUMERIC___sulphates_03___4", "259": "09___NUMERIC___sulphates_03___5", "260": "09___NUMERIC___sulphates_03___6", "261": "09___NUMERIC___sulphates_03___7", "262": "09___NUMERIC___sulphates_03___8", "263": "09___NUMERIC___sulphates_03___9", "264": "10___NUMERIC___alcohol_00___0", "265": "10___NUMERIC___alcohol_00___1", "266": "10___NUMERIC___alcohol_01___0", "267": "10___NUMERIC___alcohol_01___1", "268": "10___NUMERIC___alcohol_01___2", "269": "10___NUMERIC___alcohol_01___3", "270": "10___NUMERIC___alcohol_01___4", "271": "10___NUMERIC___alcohol_01___8", "272": "10___NUMERIC___alcohol_01___9", "273": "10___NUMERIC___alcohol_02___.", "274": "10___NUMERIC___alcohol_03___0", "275": "10___NUMERIC___alcohol_03___1", "276": "10___NUMERIC___alcohol_03___2", "277": "10___NUMERIC___alcohol_03___3", "278": "10___NUMERIC___alcohol_03___4", "279": "10___NUMERIC___alcohol_03___5", "280": "10___NUMERIC___alcohol_03___6", "281": "10___NUMERIC___alcohol_03___7", "282": "10___NUMERIC___alcohol_03___8", "283": "10___NUMERIC___alcohol_03___9", "284": "10___NUMERIC___alcohol_04___0", "285": "10___NUMERIC___alcohol_04___3", "286": "10___NUMERIC___alcohol_04___4", "287": "10___NUMERIC___alcohol_04___5", "288": "10___NUMERIC___alcohol_04___6", "289": "10___NUMERIC___alcohol_04___8", "290": "10___NUMERIC___alcohol_04___9", "291": "10___NUMERIC___alcohol_05___0", "292": "10___NUMERIC___alcohol_05___3", "293": "10___NUMERIC___alcohol_05___6", "294": "10___NUMERIC___alcohol_06___0", "295": "10___NUMERIC___alcohol_06___3", "296": "10___NUMERIC___alcohol_06___7", "297": "11___NUMERIC___quality_00___3", "298": "11___NUMERIC___quality_00___4", "299": "11___NUMERIC___quality_00___5", "300": "11___NUMERIC___quality_00___6", "301": "11___NUMERIC___quality_00___7", "302": "11___NUMERIC___quality_00___8", "303": "11___NUMERIC___quality_00___9"}, "token2id": {"[UNK]": 0, "[SEP]": 1, "[PAD]": 2, "[CLS]": 3, "[MASK]": 4, "[BOS]": 5, "[EOS]": 6, "[BMEM]": 7, "[EMEM]": 8, "[RMASK]": 9, "[SPTYPE]": 10, "00___NUMERIC___fixed acidity_00___0": 11, "00___NUMERIC___fixed acidity_00___1": 12, "00___NUMERIC___fixed acidity_01___0": 13, "00___NUMERIC___fixed acidity_01___1": 14, "00___NUMERIC___fixed acidity_01___3": 15, "00___NUMERIC___fixed acidity_01___4": 16, "00___NUMERIC___fixed acidity_01___5": 17, "00___NUMERIC___fixed acidity_01___6": 18, "00___NUMERIC___fixed acidity_01___7": 19, "00___NUMERIC___fixed acidity_01___8": 20, "00___NUMERIC___fixed acidity_01___9": 21, "00___NUMERIC___fixed acidity_02___.": 22, "00___NUMERIC___fixed acidity_03___0": 23, "00___NUMERIC___fixed acidity_03___1": 24, "00___NUMERIC___fixed acidity_03___2": 25, "00___NUMERIC___fixed acidity_03___3": 26, "00___NUMERIC___fixed acidity_03___4": 27, "00___NUMERIC___fixed acidity_03___5": 28, "00___NUMERIC___fixed acidity_03___6": 29, "00___NUMERIC___fixed acidity_03___7": 30, "00___NUMERIC___fixed acidity_03___8": 31, "00___NUMERIC___fixed acidity_03___9": 32, "00___NUMERIC___fixed acidity_04___0": 33, "00___NUMERIC___fixed acidity_04___5": 34, "01___NUMERIC___volatile acidity_00___0": 35, "01___NUMERIC___volatile acidity_00___1": 36, "01___NUMERIC___volatile acidity_01___.": 37, "01___NUMERIC___volatile acidity_02___0": 38, "01___NUMERIC___volatile acidity_02___1": 39, "01___NUMERIC___volatile acidity_02___2": 40, "01___NUMERIC___volatile acidity_02___3": 41, "01___NUMERIC___volatile acidity_02___4": 42, "01___NUMERIC___volatile acidity_02___5": 43, "01___NUMERIC___volatile acidity_02___6": 44, "01___NUMERIC___volatile acidity_02___7": 45, "01___NUMERIC___volatile acidity_02___8": 46, "01___NUMERIC___volatile acidity_02___9": 47, "01___NUMERIC___volatile acidity_03___0": 48, "01___NUMERIC___volatile acidity_03___1": 49, "01___NUMERIC___volatile acidity_03___2": 50, "01___NUMERIC___volatile acidity_03___3": 51, "01___NUMERIC___volatile acidity_03___4": 52, "01___NUMERIC___volatile acidity_03___5": 53, "01___NUMERIC___volatile acidity_03___6": 54, "01___NUMERIC___volatile acidity_03___7": 55, "01___NUMERIC___volatile acidity_03___8": 56, "01___NUMERIC___volatile acidity_03___9": 57, "01___NUMERIC___volatile acidity_04___0": 58, "01___NUMERIC___volatile acidity_04___5": 59, "02___NUMERIC___citric acid_00___0": 60, "02___NUMERIC___citric acid_00___1": 61, "02___NUMERIC___citric acid_01___.": 62, "02___NUMERIC___citric acid_02___0": 63, "02___NUMERIC___citric acid_02___1": 64, "02___NUMERIC___citric acid_02___2": 65, "02___NUMERIC___citric acid_02___3": 66, "02___NUMERIC___citric acid_02___4": 67, "02___NUMERIC___citric acid_02___5": 68, "02___NUMERIC___citric acid_02___6": 69, "02___NUMERIC___citric acid_02___7": 70, "02___NUMERIC___citric acid_02___8": 71, "02___NUMERIC___citric acid_02___9": 72, "02___NUMERIC___citric acid_03___0": 73, "02___NUMERIC___citric acid_03___1": 74, "02___NUMERIC___citric acid_03___2": 75, "02___NUMERIC___citric acid_03___3": 76, "02___NUMERIC___citric acid_03___4": 77, "02___NUMERIC___citric acid_03___5": 78, "02___NUMERIC___citric acid_03___6": 79, "02___NUMERIC___citric acid_03___7": 80, "02___NUMERIC___citric acid_03___8": 81, "02___NUMERIC___citric acid_03___9": 82, "03___NUMERIC___residual sugar_00___0": 83, "03___NUMERIC___residual sugar_00___1": 84, "03___NUMERIC___residual sugar_00___2": 85, "03___NUMERIC___residual sugar_00___3": 86, "03___NUMERIC___residual sugar_00___6": 87, "03___NUMERIC___residual sugar_01___0": 88, "03___NUMERIC___residual sugar_01___1": 89, "03___NUMERIC___residual sugar_01___2": 90, "03___NUMERIC___residual sugar_01___3": 91, "03___NUMERIC___residual sugar_01___4": 92, "03___NUMERIC___residual sugar_01___5": 93, "03___NUMERIC___residual sugar_01___6": 94, "03___NUMERIC___residual sugar_01___7": 95, "03___NUMERIC___residual sugar_01___8": 96, "03___NUMERIC___residual sugar_01___9": 97, "03___NUMERIC___residual sugar_02___.": 98, "03___NUMERIC___residual sugar_03___0": 99, "03___NUMERIC___residual sugar_03___1": 100, "03___NUMERIC___residual sugar_03___2": 101, "03___NUMERIC___residual sugar_03___3": 102, "03___NUMERIC___residual sugar_03___4": 103, "03___NUMERIC___residual sugar_03___5": 104, "03___NUMERIC___residual sugar_03___6": 105, "03___NUMERIC___residual sugar_03___7": 106, "03___NUMERIC___residual sugar_03___8": 107, "03___NUMERIC___residual sugar_03___9": 108, "03___NUMERIC___residual sugar_04___0": 109, "03___NUMERIC___residual sugar_04___5": 110, "04___NUMERIC___chlorides_00___0": 111, "04___NUMERIC___chlorides_01___.": 112, "04___NUMERIC___chlorides_02___0": 113, "04___NUMERIC___chlorides_02___1": 114, "04___NUMERIC___chlorides_02___2": 115, "04___NUMERIC___chlorides_02___3": 116, "04___NUMERIC___chlorides_03___0": 117, "04___NUMERIC___chlorides_03___1": 118, "04___NUMERIC___chlorides_03___2": 119, "04___NUMERIC___chlorides_03___3": 120, "04___NUMERIC___chlorides_03___4": 121, "04___NUMERIC___chlorides_03___5": 122, "04___NUMERIC___chlorides_03___6": 123, "04___NUMERIC___chlorides_03___7": 124, "04___NUMERIC___chlorides_03___8": 125, "04___NUMERIC___chlorides_03___9": 126, "04___NUMERIC___chlorides_04___0": 127, "04___NUMERIC___chlorides_04___1": 128, "04___NUMERIC___chlorides_04___2": 129, "04___NUMERIC___chlorides_04___3": 130, "04___NUMERIC___chlorides_04___4": 131, "04___NUMERIC___chlorides_04___5": 132, "04___NUMERIC___chlorides_04___6": 133, "04___NUMERIC___chlorides_04___7": 134, "04___NUMERIC___chlorides_04___8": 135, "04___NUMERIC___chlorides_04___9": 136, "05___NUMERIC___free sulfur dioxide_00___0": 137, "05___NUMERIC___free sulfur dioxide_00___1": 138, "05___NUMERIC___free sulfur dioxide_01___0": 139, "05___NUMERIC___free sulfur dioxide_01___1": 140, "05___NUMERIC___free sulfur dioxide_01___2": 141, "05___NUMERIC___free sulfur dioxide_01___3": 142, "05___NUMERIC___free sulfur dioxide_01___4": 143, "05___NUMERIC___free sulfur dioxide_01___5": 144, "05___NUMERIC___free sulfur dioxide_01___6": 145, "05___NUMERIC___free sulfur dioxide_01___7": 146, "05___NUMERIC___free sulfur dioxide_01___8": 147, "05___NUMERIC___free sulfur dioxide_01___9": 148, "05___NUMERIC___free sulfur dioxide_02___0": 149, "05___NUMERIC___free sulfur dioxide_02___1": 150, "05___NUMERIC___free sulfur dioxide_02___2": 151, "05___NUMERIC___free sulfur dioxide_02___3": 152, "05___NUMERIC___free sulfur dioxide_02___4": 153, "05___NUMERIC___free sulfur dioxide_02___5": 154, "05___NUMERIC___free sulfur dioxide_02___6": 155, "05___NUMERIC___free sulfur dioxide_02___7": 156, "05___NUMERIC___free sulfur dioxide_02___8": 157, "05___NUMERIC___free sulfur dioxide_02___9": 158, "05___NUMERIC___free sulfur dioxide_03___.": 159, "05___NUMERIC___free sulfur dioxide_04___0": 160, "05___NUMERIC___free sulfur dioxide_04___5": 161, "06___NUMERIC___total sulfur dioxide_00___0": 162, "06___NUMERIC___total sulfur dioxide_00___1": 163, "06___NUMERIC___total sulfur dioxide_00___2": 164, "06___NUMERIC___total sulfur dioxide_00___3": 165, "06___NUMERIC___total sulfur dioxide_01___0": 166, "06___NUMERIC___total sulfur dioxide_01___1": 167, "06___NUMERIC___total sulfur dioxide_01___2": 168, "06___NUMERIC___total sulfur dioxide_01___3": 169, "06___NUMERIC___total sulfur dioxide_01___4": 170, "06___NUMERIC___total sulfur dioxide_01___5": 171, "06___NUMERIC___total sulfur dioxide_01___6": 172, "06___NUMERIC___total sulfur dioxide_01___7": 173, "06___NUMERIC___total sulfur dioxide_01___8": 174, "06___NUMERIC___total sulfur dioxide_01___9": 175, "06___NUMERIC___total sulfur dioxide_02___0": 176, "06___NUMERIC___total sulfur dioxide_02___1": 177, "06___NUMERIC___total sulfur dioxide_02___2": 178, "06___NUMERIC___total sulfur dioxide_02___3": 179, "06___NUMERIC___total sulfur dioxide_02___4": 180, "06___NUMERIC___total sulfur dioxide_02___5": 181, "06___NUMERIC___total sulfur dioxide_02___6": 182, "06___NUMERIC___total sulfur dioxide_02___7": 183, "06___NUMERIC___total sulfur dioxide_02___8": 184, "06___NUMERIC___total sulfur dioxide_02___9": 185, "06___NUMERIC___total sulfur dioxide_03___.": 186, "06___NUMERIC___total sulfur dioxide_04___0": 187, "06___NUMERIC___total sulfur dioxide_04___5": 188, "07___NUMERIC___density_00___0": 189, "07___NUMERIC___density_00___1": 190, "07___NUMERIC___density_01___.": 191, "07___NUMERIC___density_02___0": 192, "07___NUMERIC___density_02___9": 193, "07___NUMERIC___density_03___0": 194, "07___NUMERIC___density_03___1": 195, "07___NUMERIC___density_03___3": 196, "07___NUMERIC___density_03___8": 197, "07___NUMERIC___density_03___9": 198, "07___NUMERIC___density_04___0": 199, "07___NUMERIC___density_04___1": 200, "07___NUMERIC___density_04___2": 201, "07___NUMERIC___density_04___3": 202, "07___NUMERIC___density_04___4": 203, "07___NUMERIC___density_04___5": 204, "07___NUMERIC___density_04___6": 205, "07___NUMERIC___density_04___7": 206, "07___NUMERIC___density_04___8": 207, "07___NUMERIC___density_04___9": 208, "07___NUMERIC___density_05___0": 209, "07___NUMERIC___density_05___1": 210, "07___NUMERIC___density_05___2": 211, "07___NUMERIC___density_05___3": 212, "07___NUMERIC___density_05___4": 213, "07___NUMERIC___density_05___5": 214, "07___NUMERIC___density_05___6": 215, "07___NUMERIC___density_05___7": 216, "07___NUMERIC___density_05___8": 217, "07___NUMERIC___density_05___9": 218, "08___NUMERIC___pH_00___2": 219, "08___NUMERIC___pH_00___3": 220, "08___NUMERIC___pH_01___.": 221, "08___NUMERIC___pH_02___0": 222, "08___NUMERIC___pH_02___1": 223, "08___NUMERIC___pH_02___2": 224, "08___NUMERIC___pH_02___3": 225, "08___NUMERIC___pH_02___4": 226, "08___NUMERIC___pH_02___5": 227, "08___NUMERIC___pH_02___6": 228, "08___NUMERIC___pH_02___7": 229, "08___NUMERIC___pH_02___8": 230, "08___NUMERIC___pH_02___9": 231, "08___NUMERIC___pH_03___0": 232, "08___NUMERIC___pH_03___1": 233, "08___NUMERIC___pH_03___2": 234, "08___NUMERIC___pH_03___3": 235, "08___NUMERIC___pH_03___4": 236, "08___NUMERIC___pH_03___5": 237, "08___NUMERIC___pH_03___6": 238, "08___NUMERIC___pH_03___7": 239, "08___NUMERIC___pH_03___8": 240, "08___NUMERIC___pH_03___9": 241, "09___NUMERIC___sulphates_00___0": 242, "09___NUMERIC___sulphates_00___1": 243, "09___NUMERIC___sulphates_01___.": 244, "09___NUMERIC___sulphates_02___0": 245, "09___NUMERIC___sulphates_02___2": 246, "09___NUMERIC___sulphates_02___3": 247, "09___NUMERIC___sulphates_02___4": 248, "09___NUMERIC___sulphates_02___5": 249, "09___NUMERIC___sulphates_02___6": 250, "09___NUMERIC___sulphates_02___7": 251, "09___NUMERIC___sulphates_02___8": 252, "09___NUMERIC___sulphates_02___9": 253, "09___NUMERIC___sulphates_03___0": 254, "09___NUMERIC___sulphates_03___1": 255, "09___NUMERIC___sulphates_03___2": 256, "09___NUMERIC___sulphates_03___3": 257, "09___NUMERIC___sulphates_03___4": 258, "09___NUMERIC___sulphates_03___5": 259, "09___NUMERIC___sulphates_03___6": 260, "09___NUMERIC___sulphates_03___7": 261, "09___NUMERIC___sulphates_03___8": 262, "09___NUMERIC___sulphates_03___9": 263, "10___NUMERIC___alcohol_00___0": 264, "10___NUMERIC___alcohol_00___1": 265, "10___NUMERIC___alcohol_01___0": 266, "10___NUMERIC___alcohol_01___1": 267, "10___NUMERIC___alcohol_01___2": 268, "10___NUMERIC___alcohol_01___3": 269, "10___NUMERIC___alcohol_01___4": 270, "10___NUMERIC___alcohol_01___8": 271, "10___NUMERIC___alcohol_01___9": 272, "10___NUMERIC___alcohol_02___.": 273, "10___NUMERIC___alcohol_03___0": 274, "10___NUMERIC___alcohol_03___1": 275, "10___NUMERIC___alcohol_03___2": 276, "10___NUMERIC___alcohol_03___3": 277, "10___NUMERIC___alcohol_03___4": 278, "10___NUMERIC___alcohol_03___5": 279, "10___NUMERIC___alcohol_03___6": 280, "10___NUMERIC___alcohol_03___7": 281, "10___NUMERIC___alcohol_03___8": 282, "10___NUMERIC___alcohol_03___9": 283, "10___NUMERIC___alcohol_04___0": 284, "10___NUMERIC___alcohol_04___3": 285, "10___NUMERIC___alcohol_04___4": 286, "10___NUMERIC___alcohol_04___5": 287, "10___NUMERIC___alcohol_04___6": 288, "10___NUMERIC___alcohol_04___8": 289, "10___NUMERIC___alcohol_04___9": 290, "10___NUMERIC___alcohol_05___0": 291, "10___NUMERIC___alcohol_05___3": 292, "10___NUMERIC___alcohol_05___6": 293, "10___NUMERIC___alcohol_06___0": 294, "10___NUMERIC___alcohol_06___3": 295, "10___NUMERIC___alcohol_06___7": 296, "11___NUMERIC___quality_00___3": 297, "11___NUMERIC___quality_00___4": 298, "11___NUMERIC___quality_00___5": 299, "11___NUMERIC___quality_00___6": 300, "11___NUMERIC___quality_00___7": 301, "11___NUMERIC___quality_00___8": 302, "11___NUMERIC___quality_00___9": 303}, "column_token_ids": {"00___NUMERIC___fixed acidity_00": [11, 12], "00___NUMERIC___fixed acidity_01": [13, 14, 15, 16, 17, 18, 19, 20, 21], "00___NUMERIC___fixed acidity_02": [22], "00___NUMERIC___fixed acidity_03": [23, 24, 25, 26, 27, 28, 29, 30, 31, 32], "00___NUMERIC___fixed acidity_04": [33, 34], "01___NUMERIC___volatile acidity_00": [35, 36], "01___NUMERIC___volatile acidity_01": [37], "01___NUMERIC___volatile acidity_02": [38, 39, 40, 41, 42, 43, 44, 45, 46, 47], "01___NUMERIC___volatile acidity_03": [48, 49, 50, 51, 52, 53, 54, 55, 56, 57], "01___NUMERIC___volatile acidity_04": [58, 59], "02___NUMERIC___citric acid_00": [60, 61], "02___NUMERIC___citric acid_01": [62], "02___NUMERIC___citric acid_02": [63, 64, 65, 66, 67, 68, 69, 70, 71, 72], "02___NUMERIC___citric acid_03": [73, 74, 75, 76, 77, 78, 79, 80, 81, 82], "03___NUMERIC___residual sugar_00": [83, 84, 85, 86, 87], "03___NUMERIC___residual sugar_01": [88, 89, 90, 91, 92, 93, 94, 95, 96, 97], "03___NUMERIC___residual sugar_02": [98], "03___NUMERIC___residual sugar_03": [99, 100, 101, 102, 103, 104, 105, 106, 107, 108], "03___NUMERIC___residual sugar_04": [109, 110], "04___NUMERIC___chlorides_00": [111], "04___NUMERIC___chlorides_01": [112], "04___NUMERIC___chlorides_02": [113, 114, 115, 116], "04___NUMERIC___chlorides_03": [117, 118, 119, 120, 121, 122, 123, 124, 125, 126], "04___NUMERIC___chlorides_04": [127, 128, 129, 130, 131, 132, 133, 134, 135, 136], "05___NUMERIC___free sulfur dioxide_00": [137, 138], "05___NUMERIC___free sulfur dioxide_01": [139, 140, 141, 142, 143, 144, 145, 146, 147, 148], "05___NUMERIC___free sulfur dioxide_02": [149, 150, 151, 152, 153, 154, 155, 156, 157, 158], "05___NUMERIC___free sulfur dioxide_03": [159], "05___NUMERIC___free sulfur dioxide_04": [160, 161], "06___NUMERIC___total sulfur dioxide_00": [162, 163, 164, 165], "06___NUMERIC___total sulfur dioxide_01": [166, 167, 168, 169, 170, 171, 172, 173, 174, 175], "06___NUMERIC___total sulfur dioxide_02": [176, 177, 178, 179, 180, 181, 182, 183, 184, 185], "06___NUMERIC___total sulfur dioxide_03": [186], "06___NUMERIC___total sulfur dioxide_04": [187, 188], "07___NUMERIC___density_00": [189, 190], "07___NUMERIC___density_01": [191], "07___NUMERIC___density_02": [192, 193], "07___NUMERIC___density_03": [194, 195, 196, 197, 198], "07___NUMERIC___density_04": [199, 200, 201, 202, 203, 204, 205, 206, 207, 208], "07___NUMERIC___density_05": [209, 210, 211, 212, 213, 214, 215, 216, 217, 218], "08___NUMERIC___pH_00": [219, 220], "08___NUMERIC___pH_01": [221], "08___NUMERIC___pH_02": [222, 223, 224, 225, 226, 227, 228, 229, 230, 231], "08___NUMERIC___pH_03": [232, 233, 234, 235, 236, 237, 238, 239, 240, 241], "09___NUMERIC___sulphates_00": [242, 243], "09___NUMERIC___sulphates_01": [244], "09___NUMERIC___sulphates_02": [245, 246, 247, 248, 249, 250, 251, 252, 253], "09___NUMERIC___sulphates_03": [254, 255, 256, 257, 258, 259, 260, 261, 262, 263], "10___NUMERIC___alcohol_00": [264, 265], "10___NUMERIC___alcohol_01": [266, 267, 268, 269, 270, 271, 272], "10___NUMERIC___alcohol_02": [273], "10___NUMERIC___alcohol_03": [274, 275, 276, 277, 278, 279, 280, 281, 282, 283], "10___NUMERIC___alcohol_04": [284, 285, 286, 287, 288, 289, 290], "10___NUMERIC___alcohol_05": [291, 292, 293], "10___NUMERIC___alcohol_06": [294, 295, 296], "11___NUMERIC___quality_00": [297, 298, 299, 300, 301, 302, 303]}}, "tabular_max_length": 58, "relational_max_length": null, "tabular_col_size": 3918, "relational_col_size": null, "col_transform_data": {"fixed acidity": {"max_len": 10, "numeric_precision": 4, "mx_sig": 2, "ljust": 5, "numeric_nparts": 1}, "volatile acidity": {"max_len": 10, "numeric_precision": 4, "mx_sig": 1, "ljust": 5, "numeric_nparts": 1}, "citric acid": {"max_len": 10, "numeric_precision": 4, "mx_sig": 1, "ljust": 4, "numeric_nparts": 1}, "residual sugar": {"max_len": 10, "numeric_precision": 4, "mx_sig": 2, "ljust": 5, "numeric_nparts": 1}, "chlorides": {"max_len": 10, "numeric_precision": 4, "mx_sig": 1, "ljust": 5, "numeric_nparts": 1}, "free sulfur dioxide": {"max_len": 10, "numeric_precision": 4, "mx_sig": 3, "ljust": 5, "numeric_nparts": 1}, "total sulfur dioxide": {"max_len": 10, "numeric_precision": 4, "mx_sig": 3, "ljust": 5, "numeric_nparts": 1}, "density": {"max_len": 10, "numeric_precision": 4, "mx_sig": 1, "ljust": 6, "numeric_nparts": 1}, "pH": {"max_len": 10, "numeric_precision": 4, "mx_sig": 1, "ljust": 4, "numeric_nparts": 1}, "sulphates": {"max_len": 10, "numeric_precision": 4, "mx_sig": 1, "ljust": 4, "numeric_nparts": 1}, "alcohol": {"max_len": 10, "numeric_precision": 4, "mx_sig": 2, "ljust": 7, "numeric_nparts": 1}, "quality": {"max_len": 10, "numeric_precision": 4, "mx_sig": -1, "zfill": 1, "numeric_nparts": 1}}, "in_col_transform_data": null, "col_idx_ids": {"0": [11, 12], "1": [13, 14, 15, 16, 17, 18, 19, 20, 21], "2": [22], "3": [23, 24, 25, 26, 27, 28, 29, 30, 31, 32], "4": [33, 34], "5": [35, 36], "6": [37], "7": [38, 39, 40, 41, 42, 43, 44, 45, 46, 47], "8": [48, 49, 50, 51, 52, 53, 54, 55, 56, 57], "9": [58, 59], "10": [60, 61], "11": [62], "12": [63, 64, 65, 66, 67, 68, 69, 70, 71, 72], "13": [73, 74, 75, 76, 77, 78, 79, 80, 81, 82], "14": [83, 84, 85, 86, 87], "15": [88, 89, 90, 91, 92, 93, 94, 95, 96, 97], "16": [98], "17": [99, 100, 101, 102, 103, 104, 105, 106, 107, 108], "18": [109, 110], "19": [111], "20": [112], "21": [113, 114, 115, 116], "22": [117, 118, 119, 120, 121, 122, 123, 124, 125, 126], "23": [127, 128, 129, 130, 131, 132, 133, 134, 135, 136], "24": [137, 138], "25": [139, 140, 141, 142, 143, 144, 145, 146, 147, 148], "26": [149, 150, 151, 152, 153, 154, 155, 156, 157, 158], "27": [159], "28": [160, 161], "29": [162, 163, 164, 165], "30": [166, 167, 168, 169, 170, 171, 172, 173, 174, 175], "31": [176, 177, 178, 179, 180, 181, 182, 183, 184, 185], "32": [186], "33": [187, 188], "34": [189, 190], "35": [191], "36": [192, 193], "37": [194, 195, 196, 197, 198], "38": [199, 200, 201, 202, 203, 204, 205, 206, 207, 208], "39": [209, 210, 211, 212, 213, 214, 215, 216, 217, 218], "40": [219, 220], "41": [221], "42": [222, 223, 224, 225, 226, 227, 228, 229, 230, 231], "43": [232, 233, 234, 235, 236, 237, 238, 239, 240, 241], "44": [242, 243], "45": [244], "46": [245, 246, 247, 248, 249, 250, 251, 252, 253], "47": [254, 255, 256, 257, 258, 259, 260, 261, 262, 263], "48": [264, 265], "49": [266, 267, 268, 269, 270, 271, 272], "50": [273], "51": [274, 275, 276, 277, 278, 279, 280, 281, 282, 283], "52": [284, 285, 286, 287, 288, 289, 290], "53": [291, 292, 293], "54": [294, 295, 296], "55": [297, 298, 299, 300, 301, 302, 303]}, "random_state": 1029, "numeric_nparts": 1, "numeric_precision": 4, "numeric_max_len": 10, "experiment_id": "id000017779193761165387776", "trainer_state": null, "target_col": null, "realtabformer_version": "0.2.4"} \ No newline at end of file diff --git a/hyperparameter/n3/realtabformer/rtf-n3-20260505_022834/models_5epochs/id000017779193761165387776/rtf_model.pt b/hyperparameter/n3/realtabformer/rtf-n3-20260505_022834/models_5epochs/id000017779193761165387776/rtf_model.pt new file mode 100644 index 0000000000000000000000000000000000000000..49dafa161a402dc48d971bed6a258eea64061954 --- /dev/null +++ b/hyperparameter/n3/realtabformer/rtf-n3-20260505_022834/models_5epochs/id000017779193761165387776/rtf_model.pt @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:7435bcf87e604d7a1c7595948d0cb714a598ff4d4e7dd0ed37e096560026b4ad +size 174223843 diff --git a/hyperparameter/n3/realtabformer/rtf-n3-20260505_022834/public_gate/normalized_schema_snapshot.json b/hyperparameter/n3/realtabformer/rtf-n3-20260505_022834/public_gate/normalized_schema_snapshot.json new file mode 100644 index 0000000000000000000000000000000000000000..c41fe304503de23190a02e6cbfafa35b3bf134d3 --- /dev/null +++ b/hyperparameter/n3/realtabformer/rtf-n3-20260505_022834/public_gate/normalized_schema_snapshot.json @@ -0,0 +1,259 @@ +{ + "dataset_id": "n3", + "target_column": "quality", + "task_type": "classification", + "columns": [ + { + "name": "fixed acidity", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 66, + "unique_ratio": 0.016845, + "example_values": [ + "7.1", + "8.5", + "6.4", + "6.8", + "7.6" + ] + } + }, + { + "name": "volatile acidity", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 121, + "unique_ratio": 0.030883, + "example_values": [ + "0.31", + "0.21", + "0.24", + "0.43", + "0.27" + ] + } + }, + { + "name": "citric acid", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 85, + "unique_ratio": 0.021695, + "example_values": [ + "0.17", + "0.41", + "0.31", + "0.25", + "0.3" + ] + } + }, + { + "name": "residual sugar", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 296, + "unique_ratio": 0.075549, + "example_values": [ + "1", + "4.3", + "2.8", + "13", + "12.9" + ] + } + }, + { + "name": "chlorides", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 147, + "unique_ratio": 0.037519, + "example_values": [ + "0.042", + "0.036", + "0.038", + "0.047", + "0.033" + ] + } + }, + { + "name": "free sulfur dioxide", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 120, + "unique_ratio": 0.030628, + "example_values": [ + "21", + "24", + "41", + "43", + "69" + ] + } + }, + { + "name": "total sulfur dioxide", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 244, + "unique_ratio": 0.062277, + "example_values": [ + "144", + "99", + "114", + "132", + "160" + ] + } + }, + { + "name": "density", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 839, + "unique_ratio": 0.21414, + "example_values": [ + "0.99304", + "0.9947", + "0.99155", + "0.98975", + "0.99705" + ] + } + }, + { + "name": "pH", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 100, + "unique_ratio": 0.025523, + "example_values": [ + "3.13", + "3.18", + "3.37", + "3.21", + "3.16" + ] + } + }, + { + "name": "sulphates", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 78, + "unique_ratio": 0.019908, + "example_values": [ + "0.4", + "0.53", + "0.66", + "0.47", + "0.5" + ] + } + }, + { + "name": "alcohol", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 97, + "unique_ratio": 0.024758, + "example_values": [ + "9.6", + "9.7", + "11.7", + "13.4", + "8.8" + ] + } + }, + { + "name": "quality", + "role": "target", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 7, + "unique_ratio": 0.001787, + "example_values": [ + "5", + "6", + "7", + "8", + "3" + ] + } + } + ] +} \ No newline at end of file diff --git a/hyperparameter/n3/realtabformer/rtf-n3-20260505_022834/public_gate/public_gate_report.json b/hyperparameter/n3/realtabformer/rtf-n3-20260505_022834/public_gate/public_gate_report.json new file mode 100644 index 0000000000000000000000000000000000000000..93b97319f739e39079d6c6549fd2020f8a6dac25 --- /dev/null +++ b/hyperparameter/n3/realtabformer/rtf-n3-20260505_022834/public_gate/public_gate_report.json @@ -0,0 +1,37 @@ +{ + "dataset_id": "n3", + "status": "pass", + "checks": [ + { + "check_id": "PG001_csv_parse_ok", + "status": "pass" + }, + { + "check_id": "PG002_split_header_consistent", + "status": "pass" + }, + { + "check_id": "PG003_profile_header_match", + "status": "pass" + }, + { + "check_id": "PG004_missing_token_normalized", + "status": "pass" + }, + { + "check_id": "PG005_semantic_type_validated", + "status": "pass" + }, + { + "check_id": "PG006_target_defined_and_valid", + "status": "pass" + } + ], + "target_column": "quality", + "task_type": "classification", + "input_splits": { + "train": "/data/jialinzhang/SynthesizePipeline-server/DatasetNew/n3/n3-train.csv", + "val": "/data/jialinzhang/SynthesizePipeline-server/DatasetNew/n3/n3-val.csv", + "test": "/data/jialinzhang/SynthesizePipeline-server/DatasetNew/n3/n3-test.csv" + } +} \ No newline at end of file diff --git a/hyperparameter/n3/realtabformer/rtf-n3-20260505_022834/public_gate/staged_input_manifest.json b/hyperparameter/n3/realtabformer/rtf-n3-20260505_022834/public_gate/staged_input_manifest.json new file mode 100644 index 0000000000000000000000000000000000000000..87505435a0e43b0b047a885877241d622c5216cf --- /dev/null +++ b/hyperparameter/n3/realtabformer/rtf-n3-20260505_022834/public_gate/staged_input_manifest.json @@ -0,0 +1,264 @@ +{ + "dataset_id": "n3", + "target_column": "quality", + "task_type": "classification", + "train_csv": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/n3/realtabformer/rtf-n3-20260505_022834/staged/public/train.csv", + "val_csv": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/n3/realtabformer/rtf-n3-20260505_022834/staged/public/val.csv", + "test_csv": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/n3/realtabformer/rtf-n3-20260505_022834/staged/public/test.csv", + "features_json": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/n3/realtabformer/rtf-n3-20260505_022834/staged/public/staged_features.json", + "public_gate_report": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/n3/realtabformer/rtf-n3-20260505_022834/public_gate/public_gate_report.json", + "column_schema": [ + { + "name": "fixed acidity", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 66, + "unique_ratio": 0.016845, + "example_values": [ + "7.1", + "8.5", + "6.4", + "6.8", + "7.6" + ] + } + }, + { + "name": "volatile acidity", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 121, + "unique_ratio": 0.030883, + "example_values": [ + "0.31", + "0.21", + "0.24", + "0.43", + "0.27" + ] + } + }, + { + "name": "citric acid", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 85, + "unique_ratio": 0.021695, + "example_values": [ + "0.17", + "0.41", + "0.31", + "0.25", + "0.3" + ] + } + }, + { + "name": "residual sugar", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 296, + "unique_ratio": 0.075549, + "example_values": [ + "1", + "4.3", + "2.8", + "13", + "12.9" + ] + } + }, + { + "name": "chlorides", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 147, + "unique_ratio": 0.037519, + "example_values": [ + "0.042", + "0.036", + "0.038", + "0.047", + "0.033" + ] + } + }, + { + "name": "free sulfur dioxide", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 120, + "unique_ratio": 0.030628, + "example_values": [ + "21", + "24", + "41", + "43", + "69" + ] + } + }, + { + "name": "total sulfur dioxide", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 244, + "unique_ratio": 0.062277, + "example_values": [ + "144", + "99", + "114", + "132", + "160" + ] + } + }, + { + "name": "density", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 839, + "unique_ratio": 0.21414, + "example_values": [ + "0.99304", + "0.9947", + "0.99155", + "0.98975", + "0.99705" + ] + } + }, + { + "name": "pH", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 100, + "unique_ratio": 0.025523, + "example_values": [ + "3.13", + "3.18", + "3.37", + "3.21", + "3.16" + ] + } + }, + { + "name": "sulphates", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 78, + "unique_ratio": 0.019908, + "example_values": [ + "0.4", + "0.53", + "0.66", + "0.47", + "0.5" + ] + } + }, + { + "name": "alcohol", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 97, + "unique_ratio": 0.024758, + "example_values": [ + "9.6", + "9.7", + "11.7", + "13.4", + "8.8" + ] + } + }, + { + "name": "quality", + "role": "target", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 7, + "unique_ratio": 0.001787, + "example_values": [ + "5", + "6", + "7", + "8", + "3" + ] + } + } + ] +} \ No newline at end of file diff --git a/hyperparameter/n3/realtabformer/rtf-n3-20260505_022834/realtabformer_features.json b/hyperparameter/n3/realtabformer/rtf-n3-20260505_022834/realtabformer_features.json new file mode 100644 index 0000000000000000000000000000000000000000..08fe4d766d091d2f2ddba724a16b9509cbe4c390 --- /dev/null +++ b/hyperparameter/n3/realtabformer/rtf-n3-20260505_022834/realtabformer_features.json @@ -0,0 +1,62 @@ +[ + { + "feature_name": "fixed acidity", + "data_type": "continuous", + "is_target": false + }, + { + "feature_name": "volatile acidity", + "data_type": "continuous", + "is_target": false + }, + { + "feature_name": "citric acid", + "data_type": "continuous", + "is_target": false + }, + { + "feature_name": "residual sugar", + "data_type": "continuous", + "is_target": false + }, + { + "feature_name": "chlorides", + "data_type": "continuous", + "is_target": false + }, + { + "feature_name": "free sulfur dioxide", + "data_type": "continuous", + "is_target": false + }, + { + "feature_name": "total sulfur dioxide", + "data_type": "continuous", + "is_target": false + }, + { + "feature_name": "density", + "data_type": "continuous", + "is_target": false + }, + { + "feature_name": "pH", + "data_type": "continuous", + "is_target": false + }, + { + "feature_name": "sulphates", + "data_type": "continuous", + "is_target": false + }, + { + "feature_name": "alcohol", + "data_type": "continuous", + "is_target": false + }, + { + "feature_name": "quality", + "data_type": "continuous", + "is_target": true + } +] \ No newline at end of file diff --git a/hyperparameter/n3/realtabformer/rtf-n3-20260505_022834/rtf-n3-3918-20260505_022938.csv b/hyperparameter/n3/realtabformer/rtf-n3-20260505_022834/rtf-n3-3918-20260505_022938.csv new file mode 100644 index 0000000000000000000000000000000000000000..9441df65748381a7b712fcae116fd163d3237f0e --- /dev/null +++ b/hyperparameter/n3/realtabformer/rtf-n3-20260505_022834/rtf-n3-3918-20260505_022938.csv @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:20bbe0c7389b237097674373c8c54e8b9cfebac88db7d00f9bfa45555ea91081 +size 227345 diff --git a/hyperparameter/n3/realtabformer/rtf-n3-20260505_022834/rtf_checkpoints/checkpoint-369/config.json b/hyperparameter/n3/realtabformer/rtf-n3-20260505_022834/rtf_checkpoints/checkpoint-369/config.json new file mode 100644 index 0000000000000000000000000000000000000000..1876b75d3abc713ca867fe8e643ea273dc9cea87 --- /dev/null +++ b/hyperparameter/n3/realtabformer/rtf-n3-20260505_022834/rtf_checkpoints/checkpoint-369/config.json @@ -0,0 +1,34 @@ +{ + "activation_function": "gelu_new", + "add_cross_attention": false, + "architectures": [ + "GPT2LMHeadModel" + ], + "attn_pdrop": 0.1, + "bos_token_id": 5, + "dtype": "float32", + "embd_pdrop": 0.1, + "eos_token_id": 6, + "initializer_range": 0.02, + "layer_norm_epsilon": 1e-05, + "model_type": "gpt2", + "n_embd": 768, + "n_head": 12, + "n_inner": null, + "n_layer": 6, + "n_positions": 1024, + "pad_token_id": null, + "reorder_and_upcast_attn": false, + "resid_pdrop": 0.1, + "scale_attn_by_inverse_layer_idx": false, + "scale_attn_weights": true, + "summary_activation": null, + "summary_first_dropout": 0.1, + "summary_proj_to_labels": true, + "summary_type": "cls_index", + "summary_use_proj": true, + "tie_word_embeddings": true, + "transformers_version": "5.5.3", + "use_cache": false, + "vocab_size": 304 +} diff --git a/hyperparameter/n3/realtabformer/rtf-n3-20260505_022834/rtf_checkpoints/checkpoint-369/generation_config.json b/hyperparameter/n3/realtabformer/rtf-n3-20260505_022834/rtf_checkpoints/checkpoint-369/generation_config.json new file mode 100644 index 0000000000000000000000000000000000000000..ffe89567780e75b5c22eade9be971483b9618f39 --- /dev/null +++ b/hyperparameter/n3/realtabformer/rtf-n3-20260505_022834/rtf_checkpoints/checkpoint-369/generation_config.json @@ -0,0 +1,9 @@ +{ + "_from_model_config": true, + "bos_token_id": 5, + "eos_token_id": 6, + "output_attentions": false, + "output_hidden_states": false, + "transformers_version": "5.5.3", + "use_cache": true +} diff --git a/hyperparameter/n3/realtabformer/rtf-n3-20260505_022834/rtf_checkpoints/checkpoint-369/model.safetensors b/hyperparameter/n3/realtabformer/rtf-n3-20260505_022834/rtf_checkpoints/checkpoint-369/model.safetensors new file mode 100644 index 0000000000000000000000000000000000000000..8611d798f2eb6fd6336b40bb5f6563cf4527db04 --- /dev/null +++ b/hyperparameter/n3/realtabformer/rtf-n3-20260505_022834/rtf_checkpoints/checkpoint-369/model.safetensors @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:1f6849981416d51452c6474b88633ae6670430e740a0d69f45e4940d0968a273 +size 174202312 diff --git a/hyperparameter/n3/realtabformer/rtf-n3-20260505_022834/rtf_checkpoints/checkpoint-369/optimizer.pt b/hyperparameter/n3/realtabformer/rtf-n3-20260505_022834/rtf_checkpoints/checkpoint-369/optimizer.pt new file mode 100644 index 0000000000000000000000000000000000000000..d1b4bb144e8d9b2e74cc5b2e20ee6f6479ee230b --- /dev/null +++ b/hyperparameter/n3/realtabformer/rtf-n3-20260505_022834/rtf_checkpoints/checkpoint-369/optimizer.pt @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:7b011fbe79cf8f9335a94ce6f95fd1efe44ce31692aa281af1b986dd56ea073a +size 348453707 diff --git a/hyperparameter/n3/realtabformer/rtf-n3-20260505_022834/rtf_checkpoints/checkpoint-369/rng_state.pth b/hyperparameter/n3/realtabformer/rtf-n3-20260505_022834/rtf_checkpoints/checkpoint-369/rng_state.pth new file mode 100644 index 0000000000000000000000000000000000000000..84e1418b1edbef54dcd94edb742d6daadfb63f52 --- /dev/null +++ b/hyperparameter/n3/realtabformer/rtf-n3-20260505_022834/rtf_checkpoints/checkpoint-369/rng_state.pth @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:964a595eb4aa1b624c2b0e1cf924e3977d04e842494ed1aa6c83ef467c58042a +size 14645 diff --git a/hyperparameter/n3/realtabformer/rtf-n3-20260505_022834/rtf_checkpoints/checkpoint-369/scaler.pt b/hyperparameter/n3/realtabformer/rtf-n3-20260505_022834/rtf_checkpoints/checkpoint-369/scaler.pt new file mode 100644 index 0000000000000000000000000000000000000000..3d255ea48c5e763808262ac398fcd4c21a56f6e7 --- /dev/null +++ b/hyperparameter/n3/realtabformer/rtf-n3-20260505_022834/rtf_checkpoints/checkpoint-369/scaler.pt @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:3b0549e0ca60e4a89eed1e746e4e7028d47b6ebbcff7cfb8296c10ac285d6e6e +size 1383 diff --git a/hyperparameter/n3/realtabformer/rtf-n3-20260505_022834/rtf_checkpoints/checkpoint-369/scheduler.pt b/hyperparameter/n3/realtabformer/rtf-n3-20260505_022834/rtf_checkpoints/checkpoint-369/scheduler.pt new file mode 100644 index 0000000000000000000000000000000000000000..5e0d4ccd66da7b0f0be948f6e3b41200d81e0e5a --- /dev/null +++ b/hyperparameter/n3/realtabformer/rtf-n3-20260505_022834/rtf_checkpoints/checkpoint-369/scheduler.pt @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:1c81e194cd01ab9a1aea78e029b86856e9bc03e9dac9cee064dfda5eaf83d372 +size 1465 diff --git a/hyperparameter/n3/realtabformer/rtf-n3-20260505_022834/rtf_checkpoints/checkpoint-369/trainer_state.json b/hyperparameter/n3/realtabformer/rtf-n3-20260505_022834/rtf_checkpoints/checkpoint-369/trainer_state.json new file mode 100644 index 0000000000000000000000000000000000000000..22ce54959affb185e2fb683f4f0ecdf4b9f71c8b --- /dev/null +++ b/hyperparameter/n3/realtabformer/rtf-n3-20260505_022834/rtf_checkpoints/checkpoint-369/trainer_state.json @@ -0,0 +1,55 @@ +{ + "best_global_step": null, + "best_metric": null, + "best_model_checkpoint": null, + "epoch": 3.0, + "eval_steps": 100, + "global_step": 369, + "is_hyper_param_search": false, + "is_local_process_zero": true, + "is_world_process_zero": true, + "log_history": [ + { + "epoch": 0.8163265306122449, + "grad_norm": 0.2069292515516281, + "learning_rate": 4.195121951219512e-05, + "loss": 1.4841798400878907, + "step": 100 + }, + { + "epoch": 1.6285714285714286, + "grad_norm": 0.21345937252044678, + "learning_rate": 3.382113821138211e-05, + "loss": 0.8877475738525391, + "step": 200 + }, + { + "epoch": 2.440816326530612, + "grad_norm": 0.19349557161331177, + "learning_rate": 2.5691056910569107e-05, + "loss": 0.8473557281494141, + "step": 300 + } + ], + "logging_steps": 100, + "max_steps": 615, + "num_input_tokens_seen": 0, + "num_train_epochs": 5, + "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": 173959332397056.0, + "train_batch_size": 8, + "trial_name": null, + "trial_params": null +} diff --git a/hyperparameter/n3/realtabformer/rtf-n3-20260505_022834/rtf_checkpoints/checkpoint-369/training_args.bin b/hyperparameter/n3/realtabformer/rtf-n3-20260505_022834/rtf_checkpoints/checkpoint-369/training_args.bin new file mode 100644 index 0000000000000000000000000000000000000000..ed11f716a866dff92bead1d973552e2411221de1 --- /dev/null +++ b/hyperparameter/n3/realtabformer/rtf-n3-20260505_022834/rtf_checkpoints/checkpoint-369/training_args.bin @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:91f70b571caed8698a4d8d0fd35c5241ef347a8d8ebe9d95ba3258b493311a0b +size 5201 diff --git a/hyperparameter/n3/realtabformer/rtf-n3-20260505_022834/rtf_checkpoints/checkpoint-400/config.json b/hyperparameter/n3/realtabformer/rtf-n3-20260505_022834/rtf_checkpoints/checkpoint-400/config.json new file mode 100644 index 0000000000000000000000000000000000000000..1876b75d3abc713ca867fe8e643ea273dc9cea87 --- /dev/null +++ b/hyperparameter/n3/realtabformer/rtf-n3-20260505_022834/rtf_checkpoints/checkpoint-400/config.json @@ -0,0 +1,34 @@ +{ + "activation_function": "gelu_new", + "add_cross_attention": false, + "architectures": [ + "GPT2LMHeadModel" + ], + "attn_pdrop": 0.1, + "bos_token_id": 5, + "dtype": "float32", + "embd_pdrop": 0.1, + "eos_token_id": 6, + "initializer_range": 0.02, + "layer_norm_epsilon": 1e-05, + "model_type": "gpt2", + "n_embd": 768, + "n_head": 12, + "n_inner": null, + "n_layer": 6, + "n_positions": 1024, + "pad_token_id": null, + "reorder_and_upcast_attn": false, + "resid_pdrop": 0.1, + "scale_attn_by_inverse_layer_idx": false, + "scale_attn_weights": true, + "summary_activation": null, + "summary_first_dropout": 0.1, + "summary_proj_to_labels": true, + "summary_type": "cls_index", + "summary_use_proj": true, + "tie_word_embeddings": true, + "transformers_version": "5.5.3", + "use_cache": false, + "vocab_size": 304 +} diff --git a/hyperparameter/n3/realtabformer/rtf-n3-20260505_022834/rtf_checkpoints/checkpoint-400/generation_config.json b/hyperparameter/n3/realtabformer/rtf-n3-20260505_022834/rtf_checkpoints/checkpoint-400/generation_config.json new file mode 100644 index 0000000000000000000000000000000000000000..ffe89567780e75b5c22eade9be971483b9618f39 --- /dev/null +++ b/hyperparameter/n3/realtabformer/rtf-n3-20260505_022834/rtf_checkpoints/checkpoint-400/generation_config.json @@ -0,0 +1,9 @@ +{ + "_from_model_config": true, + "bos_token_id": 5, + "eos_token_id": 6, + "output_attentions": false, + "output_hidden_states": false, + "transformers_version": "5.5.3", + "use_cache": true +} diff --git a/hyperparameter/n3/realtabformer/rtf-n3-20260505_022834/rtf_checkpoints/checkpoint-400/model.safetensors b/hyperparameter/n3/realtabformer/rtf-n3-20260505_022834/rtf_checkpoints/checkpoint-400/model.safetensors new file mode 100644 index 0000000000000000000000000000000000000000..51fbf400240b909ff222dd017fbdfc2417c0dfb3 --- /dev/null +++ b/hyperparameter/n3/realtabformer/rtf-n3-20260505_022834/rtf_checkpoints/checkpoint-400/model.safetensors @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:bb959ee07d8fd7a294031047de194a8d87e3f243f2b8b55fad26d19cb257978d +size 174202312 diff --git a/hyperparameter/n3/realtabformer/rtf-n3-20260505_022834/rtf_checkpoints/checkpoint-400/optimizer.pt b/hyperparameter/n3/realtabformer/rtf-n3-20260505_022834/rtf_checkpoints/checkpoint-400/optimizer.pt new file mode 100644 index 0000000000000000000000000000000000000000..a7f2bb7711b286718f8893df3bc7e052441bd666 --- /dev/null +++ b/hyperparameter/n3/realtabformer/rtf-n3-20260505_022834/rtf_checkpoints/checkpoint-400/optimizer.pt @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:3768d43fbf21b741cb8d30ebdc3beb012f63edb9076483e0e27cb787a006b2cc +size 348453707 diff --git a/hyperparameter/n3/realtabformer/rtf-n3-20260505_022834/rtf_checkpoints/checkpoint-400/rng_state.pth b/hyperparameter/n3/realtabformer/rtf-n3-20260505_022834/rtf_checkpoints/checkpoint-400/rng_state.pth new file mode 100644 index 0000000000000000000000000000000000000000..f745236c28c4244b624f7bafa4b2fe6cb21c43a8 --- /dev/null +++ b/hyperparameter/n3/realtabformer/rtf-n3-20260505_022834/rtf_checkpoints/checkpoint-400/rng_state.pth @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:a4471383c5d6ac97edc9805e9aa01759109252adc542cacea2a5601fd6e17dfb +size 14645 diff --git a/hyperparameter/n3/realtabformer/rtf-n3-20260505_022834/rtf_checkpoints/checkpoint-400/scaler.pt b/hyperparameter/n3/realtabformer/rtf-n3-20260505_022834/rtf_checkpoints/checkpoint-400/scaler.pt new file mode 100644 index 0000000000000000000000000000000000000000..0b0bfee2584fa7aba2e3ab882380cdc54add60e0 --- /dev/null +++ b/hyperparameter/n3/realtabformer/rtf-n3-20260505_022834/rtf_checkpoints/checkpoint-400/scaler.pt @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:30858f23bcb22d0baef45bd4add9d6fa474141308c12653c706077b87d932e49 +size 1383 diff --git a/hyperparameter/n3/realtabformer/rtf-n3-20260505_022834/rtf_checkpoints/checkpoint-400/scheduler.pt b/hyperparameter/n3/realtabformer/rtf-n3-20260505_022834/rtf_checkpoints/checkpoint-400/scheduler.pt new file mode 100644 index 0000000000000000000000000000000000000000..201a74e0c392dc2b60cdf948661982b9d16cea8b --- /dev/null +++ b/hyperparameter/n3/realtabformer/rtf-n3-20260505_022834/rtf_checkpoints/checkpoint-400/scheduler.pt @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:a7030318e78d6d1a75a96ac369deda783e3b2f3354ff5cf1cc9a8bb935e815fb +size 1465 diff --git a/hyperparameter/n3/realtabformer/rtf-n3-20260505_022834/rtf_checkpoints/checkpoint-400/trainer_state.json b/hyperparameter/n3/realtabformer/rtf-n3-20260505_022834/rtf_checkpoints/checkpoint-400/trainer_state.json new file mode 100644 index 0000000000000000000000000000000000000000..0b227e6489f7fbbadd81ee46d26629b6c177cf24 --- /dev/null +++ b/hyperparameter/n3/realtabformer/rtf-n3-20260505_022834/rtf_checkpoints/checkpoint-400/trainer_state.json @@ -0,0 +1,62 @@ +{ + "best_global_step": null, + "best_metric": null, + "best_model_checkpoint": null, + "epoch": 3.253061224489796, + "eval_steps": 100, + "global_step": 400, + "is_hyper_param_search": false, + "is_local_process_zero": true, + "is_world_process_zero": true, + "log_history": [ + { + "epoch": 0.8163265306122449, + "grad_norm": 0.2069292515516281, + "learning_rate": 4.195121951219512e-05, + "loss": 1.4841798400878907, + "step": 100 + }, + { + "epoch": 1.6285714285714286, + "grad_norm": 0.21345937252044678, + "learning_rate": 3.382113821138211e-05, + "loss": 0.8877475738525391, + "step": 200 + }, + { + "epoch": 2.440816326530612, + "grad_norm": 0.19349557161331177, + "learning_rate": 2.5691056910569107e-05, + "loss": 0.8473557281494141, + "step": 300 + }, + { + "epoch": 3.253061224489796, + "grad_norm": 0.18982812762260437, + "learning_rate": 1.7560975609756096e-05, + "loss": 0.8289322662353515, + "step": 400 + } + ], + "logging_steps": 100, + "max_steps": 615, + "num_input_tokens_seen": 0, + "num_train_epochs": 5, + "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": 188640943570944.0, + "train_batch_size": 8, + "trial_name": null, + "trial_params": null +} diff --git a/hyperparameter/n3/realtabformer/rtf-n3-20260505_022834/rtf_checkpoints/checkpoint-400/training_args.bin b/hyperparameter/n3/realtabformer/rtf-n3-20260505_022834/rtf_checkpoints/checkpoint-400/training_args.bin new file mode 100644 index 0000000000000000000000000000000000000000..ed11f716a866dff92bead1d973552e2411221de1 --- /dev/null +++ b/hyperparameter/n3/realtabformer/rtf-n3-20260505_022834/rtf_checkpoints/checkpoint-400/training_args.bin @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:91f70b571caed8698a4d8d0fd35c5241ef347a8d8ebe9d95ba3258b493311a0b +size 5201 diff --git a/hyperparameter/n3/realtabformer/rtf-n3-20260505_022834/rtf_checkpoints/checkpoint-492/config.json b/hyperparameter/n3/realtabformer/rtf-n3-20260505_022834/rtf_checkpoints/checkpoint-492/config.json new file mode 100644 index 0000000000000000000000000000000000000000..1876b75d3abc713ca867fe8e643ea273dc9cea87 --- /dev/null +++ b/hyperparameter/n3/realtabformer/rtf-n3-20260505_022834/rtf_checkpoints/checkpoint-492/config.json @@ -0,0 +1,34 @@ +{ + "activation_function": "gelu_new", + "add_cross_attention": false, + "architectures": [ + "GPT2LMHeadModel" + ], + "attn_pdrop": 0.1, + "bos_token_id": 5, + "dtype": "float32", + "embd_pdrop": 0.1, + "eos_token_id": 6, + "initializer_range": 0.02, + "layer_norm_epsilon": 1e-05, + "model_type": "gpt2", + "n_embd": 768, + "n_head": 12, + "n_inner": null, + "n_layer": 6, + "n_positions": 1024, + "pad_token_id": null, + "reorder_and_upcast_attn": false, + "resid_pdrop": 0.1, + "scale_attn_by_inverse_layer_idx": false, + "scale_attn_weights": true, + "summary_activation": null, + "summary_first_dropout": 0.1, + "summary_proj_to_labels": true, + "summary_type": "cls_index", + "summary_use_proj": true, + "tie_word_embeddings": true, + "transformers_version": "5.5.3", + "use_cache": false, + "vocab_size": 304 +} diff --git a/hyperparameter/n3/realtabformer/rtf-n3-20260505_022834/rtf_checkpoints/checkpoint-492/generation_config.json b/hyperparameter/n3/realtabformer/rtf-n3-20260505_022834/rtf_checkpoints/checkpoint-492/generation_config.json new file mode 100644 index 0000000000000000000000000000000000000000..ffe89567780e75b5c22eade9be971483b9618f39 --- /dev/null +++ b/hyperparameter/n3/realtabformer/rtf-n3-20260505_022834/rtf_checkpoints/checkpoint-492/generation_config.json @@ -0,0 +1,9 @@ +{ + "_from_model_config": true, + "bos_token_id": 5, + "eos_token_id": 6, + "output_attentions": false, + "output_hidden_states": false, + "transformers_version": "5.5.3", + "use_cache": true +} diff --git a/hyperparameter/n3/realtabformer/rtf-n3-20260505_022834/rtf_checkpoints/checkpoint-492/model.safetensors b/hyperparameter/n3/realtabformer/rtf-n3-20260505_022834/rtf_checkpoints/checkpoint-492/model.safetensors new file mode 100644 index 0000000000000000000000000000000000000000..34d20552a38de07ce362a40b5c12f6ac1b259c26 --- /dev/null +++ b/hyperparameter/n3/realtabformer/rtf-n3-20260505_022834/rtf_checkpoints/checkpoint-492/model.safetensors @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:9213cf4ec22c0e355d1c6cf0b59a6636f050776803b12c6e59a6dda62cc97f1d +size 174202312 diff --git a/hyperparameter/n3/realtabformer/rtf-n3-20260505_022834/rtf_checkpoints/checkpoint-492/optimizer.pt b/hyperparameter/n3/realtabformer/rtf-n3-20260505_022834/rtf_checkpoints/checkpoint-492/optimizer.pt new file mode 100644 index 0000000000000000000000000000000000000000..6af865f7a04bfe8cc90c7bf46ba264c6ee643080 --- /dev/null +++ b/hyperparameter/n3/realtabformer/rtf-n3-20260505_022834/rtf_checkpoints/checkpoint-492/optimizer.pt @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:3862c965fea4c53d4fe3b563880796ba65a6c4dcd337d057813a35f5820e53ff +size 348453707 diff --git a/hyperparameter/n3/realtabformer/rtf-n3-20260505_022834/rtf_checkpoints/checkpoint-492/rng_state.pth b/hyperparameter/n3/realtabformer/rtf-n3-20260505_022834/rtf_checkpoints/checkpoint-492/rng_state.pth new file mode 100644 index 0000000000000000000000000000000000000000..b7a16b26391ae1e903459b86366c25a93af6c03f --- /dev/null +++ b/hyperparameter/n3/realtabformer/rtf-n3-20260505_022834/rtf_checkpoints/checkpoint-492/rng_state.pth @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:378f27435c0c4f8edf89567b2763afefc084e4508f83e14ef047fb55b4a2da2d +size 14645 diff --git a/hyperparameter/n3/realtabformer/rtf-n3-20260505_022834/rtf_checkpoints/checkpoint-492/scaler.pt b/hyperparameter/n3/realtabformer/rtf-n3-20260505_022834/rtf_checkpoints/checkpoint-492/scaler.pt new file mode 100644 index 0000000000000000000000000000000000000000..b55c7485fa56f91139798719914cee4ce3fff6f8 --- /dev/null +++ b/hyperparameter/n3/realtabformer/rtf-n3-20260505_022834/rtf_checkpoints/checkpoint-492/scaler.pt @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:edf646a96df16e08f63350c1f1b553952938bc5496d54c93a92e048555f4641d +size 1383 diff --git a/hyperparameter/n3/realtabformer/rtf-n3-20260505_022834/rtf_checkpoints/checkpoint-492/scheduler.pt b/hyperparameter/n3/realtabformer/rtf-n3-20260505_022834/rtf_checkpoints/checkpoint-492/scheduler.pt new file mode 100644 index 0000000000000000000000000000000000000000..3465ae64151fa9548ca32db3746fea6236289396 --- /dev/null +++ b/hyperparameter/n3/realtabformer/rtf-n3-20260505_022834/rtf_checkpoints/checkpoint-492/scheduler.pt @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:20f4354cf33dc72618d4a2802a7a39404b12b60b83969ae65f9dd257cd0c4e5d +size 1465 diff --git a/hyperparameter/n3/realtabformer/rtf-n3-20260505_022834/rtf_checkpoints/checkpoint-492/trainer_state.json b/hyperparameter/n3/realtabformer/rtf-n3-20260505_022834/rtf_checkpoints/checkpoint-492/trainer_state.json new file mode 100644 index 0000000000000000000000000000000000000000..0510cfbcf4bd201915e878078c37464c6d604168 --- /dev/null +++ b/hyperparameter/n3/realtabformer/rtf-n3-20260505_022834/rtf_checkpoints/checkpoint-492/trainer_state.json @@ -0,0 +1,62 @@ +{ + "best_global_step": null, + "best_metric": null, + "best_model_checkpoint": null, + "epoch": 4.0, + "eval_steps": 100, + "global_step": 492, + "is_hyper_param_search": false, + "is_local_process_zero": true, + "is_world_process_zero": true, + "log_history": [ + { + "epoch": 0.8163265306122449, + "grad_norm": 0.2069292515516281, + "learning_rate": 4.195121951219512e-05, + "loss": 1.4841798400878907, + "step": 100 + }, + { + "epoch": 1.6285714285714286, + "grad_norm": 0.21345937252044678, + "learning_rate": 3.382113821138211e-05, + "loss": 0.8877475738525391, + "step": 200 + }, + { + "epoch": 2.440816326530612, + "grad_norm": 0.19349557161331177, + "learning_rate": 2.5691056910569107e-05, + "loss": 0.8473557281494141, + "step": 300 + }, + { + "epoch": 3.253061224489796, + "grad_norm": 0.18982812762260437, + "learning_rate": 1.7560975609756096e-05, + "loss": 0.8289322662353515, + "step": 400 + } + ], + "logging_steps": 100, + "max_steps": 615, + "num_input_tokens_seen": 0, + "num_train_epochs": 5, + "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": 231945776529408.0, + "train_batch_size": 8, + "trial_name": null, + "trial_params": null +} diff --git a/hyperparameter/n3/realtabformer/rtf-n3-20260505_022834/rtf_checkpoints/checkpoint-492/training_args.bin b/hyperparameter/n3/realtabformer/rtf-n3-20260505_022834/rtf_checkpoints/checkpoint-492/training_args.bin new file mode 100644 index 0000000000000000000000000000000000000000..ed11f716a866dff92bead1d973552e2411221de1 --- /dev/null +++ b/hyperparameter/n3/realtabformer/rtf-n3-20260505_022834/rtf_checkpoints/checkpoint-492/training_args.bin @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:91f70b571caed8698a4d8d0fd35c5241ef347a8d8ebe9d95ba3258b493311a0b +size 5201 diff --git a/hyperparameter/n3/realtabformer/rtf-n3-20260505_022834/rtf_checkpoints/checkpoint-500/config.json b/hyperparameter/n3/realtabformer/rtf-n3-20260505_022834/rtf_checkpoints/checkpoint-500/config.json new file mode 100644 index 0000000000000000000000000000000000000000..1876b75d3abc713ca867fe8e643ea273dc9cea87 --- /dev/null +++ b/hyperparameter/n3/realtabformer/rtf-n3-20260505_022834/rtf_checkpoints/checkpoint-500/config.json @@ -0,0 +1,34 @@ +{ + "activation_function": "gelu_new", + "add_cross_attention": false, + "architectures": [ + "GPT2LMHeadModel" + ], + "attn_pdrop": 0.1, + "bos_token_id": 5, + "dtype": "float32", + "embd_pdrop": 0.1, + "eos_token_id": 6, + "initializer_range": 0.02, + "layer_norm_epsilon": 1e-05, + "model_type": "gpt2", + "n_embd": 768, + "n_head": 12, + "n_inner": null, + "n_layer": 6, + "n_positions": 1024, + "pad_token_id": null, + "reorder_and_upcast_attn": false, + "resid_pdrop": 0.1, + "scale_attn_by_inverse_layer_idx": false, + "scale_attn_weights": true, + "summary_activation": null, + "summary_first_dropout": 0.1, + "summary_proj_to_labels": true, + "summary_type": "cls_index", + "summary_use_proj": true, + "tie_word_embeddings": true, + "transformers_version": "5.5.3", + "use_cache": false, + "vocab_size": 304 +} diff --git a/hyperparameter/n3/realtabformer/rtf-n3-20260505_022834/rtf_checkpoints/checkpoint-500/generation_config.json b/hyperparameter/n3/realtabformer/rtf-n3-20260505_022834/rtf_checkpoints/checkpoint-500/generation_config.json new file mode 100644 index 0000000000000000000000000000000000000000..ffe89567780e75b5c22eade9be971483b9618f39 --- /dev/null +++ b/hyperparameter/n3/realtabformer/rtf-n3-20260505_022834/rtf_checkpoints/checkpoint-500/generation_config.json @@ -0,0 +1,9 @@ +{ + "_from_model_config": true, + "bos_token_id": 5, + "eos_token_id": 6, + "output_attentions": false, + "output_hidden_states": false, + "transformers_version": "5.5.3", + "use_cache": true +} diff --git a/hyperparameter/n3/realtabformer/rtf-n3-20260505_022834/rtf_checkpoints/checkpoint-500/model.safetensors b/hyperparameter/n3/realtabformer/rtf-n3-20260505_022834/rtf_checkpoints/checkpoint-500/model.safetensors new file mode 100644 index 0000000000000000000000000000000000000000..1f002a3857236e62b96979c0de9062ab1267dc72 --- /dev/null +++ b/hyperparameter/n3/realtabformer/rtf-n3-20260505_022834/rtf_checkpoints/checkpoint-500/model.safetensors @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:cdda5d0b7020eec3433c7bbb6773d1911c0d6e1587c00706a16c820a212b1ba2 +size 174202312 diff --git a/hyperparameter/n3/realtabformer/rtf-n3-20260505_022834/rtf_checkpoints/checkpoint-500/optimizer.pt b/hyperparameter/n3/realtabformer/rtf-n3-20260505_022834/rtf_checkpoints/checkpoint-500/optimizer.pt new file mode 100644 index 0000000000000000000000000000000000000000..a955555ce542ffa3187a741556520e4603c9d858 --- /dev/null +++ b/hyperparameter/n3/realtabformer/rtf-n3-20260505_022834/rtf_checkpoints/checkpoint-500/optimizer.pt @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:a8e3a7b3397d598a42bdbac0c8f960cc843c4afd3f9f54b679338090b9e85bfa +size 348453707 diff --git a/hyperparameter/n3/realtabformer/rtf-n3-20260505_022834/rtf_checkpoints/checkpoint-500/rng_state.pth b/hyperparameter/n3/realtabformer/rtf-n3-20260505_022834/rtf_checkpoints/checkpoint-500/rng_state.pth new file mode 100644 index 0000000000000000000000000000000000000000..b69d5367cc0499937d99fb8f7da61d366396d029 --- /dev/null +++ b/hyperparameter/n3/realtabformer/rtf-n3-20260505_022834/rtf_checkpoints/checkpoint-500/rng_state.pth @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:0b371da55c0fa983c7604df20bfb250b952fde6f3195b051cb812f578922a2e7 +size 14645 diff --git a/hyperparameter/n3/realtabformer/rtf-n3-20260505_022834/rtf_checkpoints/checkpoint-500/scaler.pt b/hyperparameter/n3/realtabformer/rtf-n3-20260505_022834/rtf_checkpoints/checkpoint-500/scaler.pt new file mode 100644 index 0000000000000000000000000000000000000000..86c857e8514e5db52a765434b135695dac4c9c36 --- /dev/null +++ b/hyperparameter/n3/realtabformer/rtf-n3-20260505_022834/rtf_checkpoints/checkpoint-500/scaler.pt @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:f77569c2e850b04af982cc8c1389f1430851448915c593b69e5da36ce05b71d7 +size 1383 diff --git a/hyperparameter/n3/realtabformer/rtf-n3-20260505_022834/rtf_checkpoints/checkpoint-500/scheduler.pt b/hyperparameter/n3/realtabformer/rtf-n3-20260505_022834/rtf_checkpoints/checkpoint-500/scheduler.pt new file mode 100644 index 0000000000000000000000000000000000000000..55540a9a3d8bf8b09757b64e97dd1db98ea1b268 --- /dev/null +++ b/hyperparameter/n3/realtabformer/rtf-n3-20260505_022834/rtf_checkpoints/checkpoint-500/scheduler.pt @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:9115724c1e6ebe2df04326f54c1d3a0173467c5990f94d2b8e82db82bcca12d4 +size 1465 diff --git a/hyperparameter/n3/realtabformer/rtf-n3-20260505_022834/rtf_checkpoints/checkpoint-500/trainer_state.json b/hyperparameter/n3/realtabformer/rtf-n3-20260505_022834/rtf_checkpoints/checkpoint-500/trainer_state.json new file mode 100644 index 0000000000000000000000000000000000000000..4ac6fb13dea290ee4a470d5cb3ab7df60677bdfe --- /dev/null +++ b/hyperparameter/n3/realtabformer/rtf-n3-20260505_022834/rtf_checkpoints/checkpoint-500/trainer_state.json @@ -0,0 +1,69 @@ +{ + "best_global_step": null, + "best_metric": null, + "best_model_checkpoint": null, + "epoch": 4.0653061224489795, + "eval_steps": 100, + "global_step": 500, + "is_hyper_param_search": false, + "is_local_process_zero": true, + "is_world_process_zero": true, + "log_history": [ + { + "epoch": 0.8163265306122449, + "grad_norm": 0.2069292515516281, + "learning_rate": 4.195121951219512e-05, + "loss": 1.4841798400878907, + "step": 100 + }, + { + "epoch": 1.6285714285714286, + "grad_norm": 0.21345937252044678, + "learning_rate": 3.382113821138211e-05, + "loss": 0.8877475738525391, + "step": 200 + }, + { + "epoch": 2.440816326530612, + "grad_norm": 0.19349557161331177, + "learning_rate": 2.5691056910569107e-05, + "loss": 0.8473557281494141, + "step": 300 + }, + { + "epoch": 3.253061224489796, + "grad_norm": 0.18982812762260437, + "learning_rate": 1.7560975609756096e-05, + "loss": 0.8289322662353515, + "step": 400 + }, + { + "epoch": 4.0653061224489795, + "grad_norm": 0.16810603439807892, + "learning_rate": 9.43089430894309e-06, + "loss": 0.8152735900878906, + "step": 500 + } + ], + "logging_steps": 100, + "max_steps": 615, + "num_input_tokens_seen": 0, + "num_train_epochs": 5, + "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": 235734579412992.0, + "train_batch_size": 8, + "trial_name": null, + "trial_params": null +} diff --git a/hyperparameter/n3/realtabformer/rtf-n3-20260505_022834/rtf_checkpoints/checkpoint-500/training_args.bin b/hyperparameter/n3/realtabformer/rtf-n3-20260505_022834/rtf_checkpoints/checkpoint-500/training_args.bin new file mode 100644 index 0000000000000000000000000000000000000000..ed11f716a866dff92bead1d973552e2411221de1 --- /dev/null +++ b/hyperparameter/n3/realtabformer/rtf-n3-20260505_022834/rtf_checkpoints/checkpoint-500/training_args.bin @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:91f70b571caed8698a4d8d0fd35c5241ef347a8d8ebe9d95ba3258b493311a0b +size 5201 diff --git a/hyperparameter/n3/realtabformer/rtf-n3-20260505_022834/rtf_checkpoints/checkpoint-600/config.json b/hyperparameter/n3/realtabformer/rtf-n3-20260505_022834/rtf_checkpoints/checkpoint-600/config.json new file mode 100644 index 0000000000000000000000000000000000000000..1876b75d3abc713ca867fe8e643ea273dc9cea87 --- /dev/null +++ b/hyperparameter/n3/realtabformer/rtf-n3-20260505_022834/rtf_checkpoints/checkpoint-600/config.json @@ -0,0 +1,34 @@ +{ + "activation_function": "gelu_new", + "add_cross_attention": false, + "architectures": [ + "GPT2LMHeadModel" + ], + "attn_pdrop": 0.1, + "bos_token_id": 5, + "dtype": "float32", + "embd_pdrop": 0.1, + "eos_token_id": 6, + "initializer_range": 0.02, + "layer_norm_epsilon": 1e-05, + "model_type": "gpt2", + "n_embd": 768, + "n_head": 12, + "n_inner": null, + "n_layer": 6, + "n_positions": 1024, + "pad_token_id": null, + "reorder_and_upcast_attn": false, + "resid_pdrop": 0.1, + "scale_attn_by_inverse_layer_idx": false, + "scale_attn_weights": true, + "summary_activation": null, + "summary_first_dropout": 0.1, + "summary_proj_to_labels": true, + "summary_type": "cls_index", + "summary_use_proj": true, + "tie_word_embeddings": true, + "transformers_version": "5.5.3", + "use_cache": false, + "vocab_size": 304 +} diff --git a/hyperparameter/n3/realtabformer/rtf-n3-20260505_022834/rtf_checkpoints/checkpoint-600/generation_config.json b/hyperparameter/n3/realtabformer/rtf-n3-20260505_022834/rtf_checkpoints/checkpoint-600/generation_config.json new file mode 100644 index 0000000000000000000000000000000000000000..ffe89567780e75b5c22eade9be971483b9618f39 --- /dev/null +++ b/hyperparameter/n3/realtabformer/rtf-n3-20260505_022834/rtf_checkpoints/checkpoint-600/generation_config.json @@ -0,0 +1,9 @@ +{ + "_from_model_config": true, + "bos_token_id": 5, + "eos_token_id": 6, + "output_attentions": false, + "output_hidden_states": false, + "transformers_version": "5.5.3", + "use_cache": true +} diff --git a/hyperparameter/n3/realtabformer/rtf-n3-20260505_022834/rtf_checkpoints/checkpoint-600/model.safetensors b/hyperparameter/n3/realtabformer/rtf-n3-20260505_022834/rtf_checkpoints/checkpoint-600/model.safetensors new file mode 100644 index 0000000000000000000000000000000000000000..61aa5003366fd6447ac048325651386c6feadd2c --- /dev/null +++ b/hyperparameter/n3/realtabformer/rtf-n3-20260505_022834/rtf_checkpoints/checkpoint-600/model.safetensors @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:d6f1c006716baf493ca0b975559e348f8a7a8cf54cf5dfc7af1247a51bd21eb5 +size 174202312 diff --git a/hyperparameter/n3/realtabformer/rtf-n3-20260505_022834/rtf_checkpoints/checkpoint-600/optimizer.pt b/hyperparameter/n3/realtabformer/rtf-n3-20260505_022834/rtf_checkpoints/checkpoint-600/optimizer.pt new file mode 100644 index 0000000000000000000000000000000000000000..5dc2b60c621bbefa78a47e05b81019dd1efb80fa --- /dev/null +++ b/hyperparameter/n3/realtabformer/rtf-n3-20260505_022834/rtf_checkpoints/checkpoint-600/optimizer.pt @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:7d4c57c822d9d571bfe6b44a67b775a3f09aca8db854391ad6d53f1c676ad742 +size 348453707 diff --git a/hyperparameter/n3/realtabformer/rtf-n3-20260505_022834/rtf_checkpoints/checkpoint-600/rng_state.pth b/hyperparameter/n3/realtabformer/rtf-n3-20260505_022834/rtf_checkpoints/checkpoint-600/rng_state.pth new file mode 100644 index 0000000000000000000000000000000000000000..5e5f16253b7cbdd97a8026f7d69de0f26c305b30 --- /dev/null +++ b/hyperparameter/n3/realtabformer/rtf-n3-20260505_022834/rtf_checkpoints/checkpoint-600/rng_state.pth @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:491a568bad473ab8abc9335b493bdf1e5c1f79d4c4b945ffa42321ed10f1227c +size 14645 diff --git a/hyperparameter/n3/realtabformer/rtf-n3-20260505_022834/rtf_checkpoints/checkpoint-600/scaler.pt b/hyperparameter/n3/realtabformer/rtf-n3-20260505_022834/rtf_checkpoints/checkpoint-600/scaler.pt new file mode 100644 index 0000000000000000000000000000000000000000..5154a9cfd1277595e46351427d1764f0d17368e1 --- /dev/null +++ b/hyperparameter/n3/realtabformer/rtf-n3-20260505_022834/rtf_checkpoints/checkpoint-600/scaler.pt @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:cb7fde5111803012042c93a73aa191336bb6e10b3ad44f6bd1d94fc7008a22b6 +size 1383 diff --git a/hyperparameter/n3/realtabformer/rtf-n3-20260505_022834/rtf_checkpoints/checkpoint-600/scheduler.pt b/hyperparameter/n3/realtabformer/rtf-n3-20260505_022834/rtf_checkpoints/checkpoint-600/scheduler.pt new file mode 100644 index 0000000000000000000000000000000000000000..5cde3a3c3f42efc5fac16aa4b77eac23b0485423 --- /dev/null +++ b/hyperparameter/n3/realtabformer/rtf-n3-20260505_022834/rtf_checkpoints/checkpoint-600/scheduler.pt @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:1553d00c994edc7d43a9c6b85709c0c18009a142d257b1140badcce8688f6bdf +size 1465 diff --git a/hyperparameter/n3/realtabformer/rtf-n3-20260505_022834/rtf_checkpoints/checkpoint-600/trainer_state.json b/hyperparameter/n3/realtabformer/rtf-n3-20260505_022834/rtf_checkpoints/checkpoint-600/trainer_state.json new file mode 100644 index 0000000000000000000000000000000000000000..ea1c6ac78cf04b7567a61125a2e92d492e92b560 --- /dev/null +++ b/hyperparameter/n3/realtabformer/rtf-n3-20260505_022834/rtf_checkpoints/checkpoint-600/trainer_state.json @@ -0,0 +1,76 @@ +{ + "best_global_step": null, + "best_metric": null, + "best_model_checkpoint": null, + "epoch": 4.881632653061224, + "eval_steps": 100, + "global_step": 600, + "is_hyper_param_search": false, + "is_local_process_zero": true, + "is_world_process_zero": true, + "log_history": [ + { + "epoch": 0.8163265306122449, + "grad_norm": 0.2069292515516281, + "learning_rate": 4.195121951219512e-05, + "loss": 1.4841798400878907, + "step": 100 + }, + { + "epoch": 1.6285714285714286, + "grad_norm": 0.21345937252044678, + "learning_rate": 3.382113821138211e-05, + "loss": 0.8877475738525391, + "step": 200 + }, + { + "epoch": 2.440816326530612, + "grad_norm": 0.19349557161331177, + "learning_rate": 2.5691056910569107e-05, + "loss": 0.8473557281494141, + "step": 300 + }, + { + "epoch": 3.253061224489796, + "grad_norm": 0.18982812762260437, + "learning_rate": 1.7560975609756096e-05, + "loss": 0.8289322662353515, + "step": 400 + }, + { + "epoch": 4.0653061224489795, + "grad_norm": 0.16810603439807892, + "learning_rate": 9.43089430894309e-06, + "loss": 0.8152735900878906, + "step": 500 + }, + { + "epoch": 4.881632653061224, + "grad_norm": 0.1731482744216919, + "learning_rate": 1.3008130081300815e-06, + "loss": 0.8097333526611328, + "step": 600 + } + ], + "logging_steps": 100, + "max_steps": 615, + "num_input_tokens_seen": 0, + "num_train_epochs": 5, + "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": 283094615457792.0, + "train_batch_size": 8, + "trial_name": null, + "trial_params": null +} diff --git a/hyperparameter/n3/realtabformer/rtf-n3-20260505_022834/rtf_checkpoints/checkpoint-600/training_args.bin b/hyperparameter/n3/realtabformer/rtf-n3-20260505_022834/rtf_checkpoints/checkpoint-600/training_args.bin new file mode 100644 index 0000000000000000000000000000000000000000..ed11f716a866dff92bead1d973552e2411221de1 --- /dev/null +++ b/hyperparameter/n3/realtabformer/rtf-n3-20260505_022834/rtf_checkpoints/checkpoint-600/training_args.bin @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:91f70b571caed8698a4d8d0fd35c5241ef347a8d8ebe9d95ba3258b493311a0b +size 5201 diff --git a/hyperparameter/n3/realtabformer/rtf-n3-20260505_022834/rtf_checkpoints/checkpoint-615/config.json b/hyperparameter/n3/realtabformer/rtf-n3-20260505_022834/rtf_checkpoints/checkpoint-615/config.json new file mode 100644 index 0000000000000000000000000000000000000000..1876b75d3abc713ca867fe8e643ea273dc9cea87 --- /dev/null +++ b/hyperparameter/n3/realtabformer/rtf-n3-20260505_022834/rtf_checkpoints/checkpoint-615/config.json @@ -0,0 +1,34 @@ +{ + "activation_function": "gelu_new", + "add_cross_attention": false, + "architectures": [ + "GPT2LMHeadModel" + ], + "attn_pdrop": 0.1, + "bos_token_id": 5, + "dtype": "float32", + "embd_pdrop": 0.1, + "eos_token_id": 6, + "initializer_range": 0.02, + "layer_norm_epsilon": 1e-05, + "model_type": "gpt2", + "n_embd": 768, + "n_head": 12, + "n_inner": null, + "n_layer": 6, + "n_positions": 1024, + "pad_token_id": null, + "reorder_and_upcast_attn": false, + "resid_pdrop": 0.1, + "scale_attn_by_inverse_layer_idx": false, + "scale_attn_weights": true, + "summary_activation": null, + "summary_first_dropout": 0.1, + "summary_proj_to_labels": true, + "summary_type": "cls_index", + "summary_use_proj": true, + "tie_word_embeddings": true, + "transformers_version": "5.5.3", + "use_cache": false, + "vocab_size": 304 +} diff --git a/hyperparameter/n3/realtabformer/rtf-n3-20260505_022834/rtf_checkpoints/checkpoint-615/generation_config.json b/hyperparameter/n3/realtabformer/rtf-n3-20260505_022834/rtf_checkpoints/checkpoint-615/generation_config.json new file mode 100644 index 0000000000000000000000000000000000000000..ffe89567780e75b5c22eade9be971483b9618f39 --- /dev/null +++ b/hyperparameter/n3/realtabformer/rtf-n3-20260505_022834/rtf_checkpoints/checkpoint-615/generation_config.json @@ -0,0 +1,9 @@ +{ + "_from_model_config": true, + "bos_token_id": 5, + "eos_token_id": 6, + "output_attentions": false, + "output_hidden_states": false, + "transformers_version": "5.5.3", + "use_cache": true +} diff --git a/hyperparameter/n3/realtabformer/rtf-n3-20260505_022834/rtf_checkpoints/checkpoint-615/model.safetensors b/hyperparameter/n3/realtabformer/rtf-n3-20260505_022834/rtf_checkpoints/checkpoint-615/model.safetensors new file mode 100644 index 0000000000000000000000000000000000000000..2b4675208542abdcdb33cca35229bc5bcbd14269 --- /dev/null +++ b/hyperparameter/n3/realtabformer/rtf-n3-20260505_022834/rtf_checkpoints/checkpoint-615/model.safetensors @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:53b8e11f466bd5053d63ac8c07a62712d19d06260e64ea8b7145f1898d2faa60 +size 174202312 diff --git a/hyperparameter/n3/realtabformer/rtf-n3-20260505_022834/rtf_checkpoints/checkpoint-615/optimizer.pt b/hyperparameter/n3/realtabformer/rtf-n3-20260505_022834/rtf_checkpoints/checkpoint-615/optimizer.pt new file mode 100644 index 0000000000000000000000000000000000000000..7d581e4a228994fd92fc6ced3166baa8f577bc41 --- /dev/null +++ b/hyperparameter/n3/realtabformer/rtf-n3-20260505_022834/rtf_checkpoints/checkpoint-615/optimizer.pt @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:cff47ef9a43f3a164145335c2486f1e36d1ee75f5a1c40ccc854ef2687bee2f9 +size 348453707 diff --git a/hyperparameter/n3/realtabformer/rtf-n3-20260505_022834/rtf_checkpoints/checkpoint-615/rng_state.pth b/hyperparameter/n3/realtabformer/rtf-n3-20260505_022834/rtf_checkpoints/checkpoint-615/rng_state.pth new file mode 100644 index 0000000000000000000000000000000000000000..8c7169e2726ddab12782b2206dfa0455dcaf44b5 --- /dev/null +++ b/hyperparameter/n3/realtabformer/rtf-n3-20260505_022834/rtf_checkpoints/checkpoint-615/rng_state.pth @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:cc81fa7c95b32f503626724a1eb8f1573f28201233084461922ca3996b3a66c0 +size 14645 diff --git a/hyperparameter/n3/realtabformer/rtf-n3-20260505_022834/rtf_checkpoints/checkpoint-615/scaler.pt b/hyperparameter/n3/realtabformer/rtf-n3-20260505_022834/rtf_checkpoints/checkpoint-615/scaler.pt new file mode 100644 index 0000000000000000000000000000000000000000..64d8a34919fa29f5fabc5d9a1056cba2d0915036 --- /dev/null +++ b/hyperparameter/n3/realtabformer/rtf-n3-20260505_022834/rtf_checkpoints/checkpoint-615/scaler.pt @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:59bf985af78a95922eb89c5db9a7d99258c9c2d800308c27d8ef439640af7446 +size 1383 diff --git a/hyperparameter/n3/realtabformer/rtf-n3-20260505_022834/rtf_checkpoints/checkpoint-615/scheduler.pt b/hyperparameter/n3/realtabformer/rtf-n3-20260505_022834/rtf_checkpoints/checkpoint-615/scheduler.pt new file mode 100644 index 0000000000000000000000000000000000000000..e5597bbba9bce9a923eac408ddbd85b19e6b2b1e --- /dev/null +++ b/hyperparameter/n3/realtabformer/rtf-n3-20260505_022834/rtf_checkpoints/checkpoint-615/scheduler.pt @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:28dd0a6a9198a3d30dbfe3d75cc8cecbfa904c004b3f8d59f36087515a61e84f +size 1465 diff --git a/hyperparameter/n3/realtabformer/rtf-n3-20260505_022834/rtf_checkpoints/checkpoint-615/trainer_state.json b/hyperparameter/n3/realtabformer/rtf-n3-20260505_022834/rtf_checkpoints/checkpoint-615/trainer_state.json new file mode 100644 index 0000000000000000000000000000000000000000..334e7177a23ac66e20852fe38537b22526df7d93 --- /dev/null +++ b/hyperparameter/n3/realtabformer/rtf-n3-20260505_022834/rtf_checkpoints/checkpoint-615/trainer_state.json @@ -0,0 +1,76 @@ +{ + "best_global_step": null, + "best_metric": null, + "best_model_checkpoint": null, + "epoch": 5.0, + "eval_steps": 100, + "global_step": 615, + "is_hyper_param_search": false, + "is_local_process_zero": true, + "is_world_process_zero": true, + "log_history": [ + { + "epoch": 0.8163265306122449, + "grad_norm": 0.2069292515516281, + "learning_rate": 4.195121951219512e-05, + "loss": 1.4841798400878907, + "step": 100 + }, + { + "epoch": 1.6285714285714286, + "grad_norm": 0.21345937252044678, + "learning_rate": 3.382113821138211e-05, + "loss": 0.8877475738525391, + "step": 200 + }, + { + "epoch": 2.440816326530612, + "grad_norm": 0.19349557161331177, + "learning_rate": 2.5691056910569107e-05, + "loss": 0.8473557281494141, + "step": 300 + }, + { + "epoch": 3.253061224489796, + "grad_norm": 0.18982812762260437, + "learning_rate": 1.7560975609756096e-05, + "loss": 0.8289322662353515, + "step": 400 + }, + { + "epoch": 4.0653061224489795, + "grad_norm": 0.16810603439807892, + "learning_rate": 9.43089430894309e-06, + "loss": 0.8152735900878906, + "step": 500 + }, + { + "epoch": 4.881632653061224, + "grad_norm": 0.1731482744216919, + "learning_rate": 1.3008130081300815e-06, + "loss": 0.8097333526611328, + "step": 600 + } + ], + "logging_steps": 100, + "max_steps": 615, + "num_input_tokens_seen": 0, + "num_train_epochs": 5, + "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": 289932220661760.0, + "train_batch_size": 8, + "trial_name": null, + "trial_params": null +} diff --git a/hyperparameter/n3/realtabformer/rtf-n3-20260505_022834/rtf_checkpoints/checkpoint-615/training_args.bin b/hyperparameter/n3/realtabformer/rtf-n3-20260505_022834/rtf_checkpoints/checkpoint-615/training_args.bin new file mode 100644 index 0000000000000000000000000000000000000000..ed11f716a866dff92bead1d973552e2411221de1 --- /dev/null +++ b/hyperparameter/n3/realtabformer/rtf-n3-20260505_022834/rtf_checkpoints/checkpoint-615/training_args.bin @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:91f70b571caed8698a4d8d0fd35c5241ef347a8d8ebe9d95ba3258b493311a0b +size 5201 diff --git a/hyperparameter/n3/realtabformer/rtf-n3-20260505_022834/run_config.json b/hyperparameter/n3/realtabformer/rtf-n3-20260505_022834/run_config.json new file mode 100644 index 0000000000000000000000000000000000000000..6bc55f747280859e47cf883fc8bec3c785648dd3 --- /dev/null +++ b/hyperparameter/n3/realtabformer/rtf-n3-20260505_022834/run_config.json @@ -0,0 +1,40 @@ +{ + "schema_version": 1, + "recorded_at": "2026-05-05T02:28:34", + "dataset_id": "n3", + "model": "realtabformer", + "work_dir": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/n3/realtabformer/rtf-n3-20260505_022834", + "dataset_source_requested": "new", + "dataset_source_resolved": "new", + "cli_args": { + "model": "realtabformer", + "dataset": "n3", + "dataset_source": "new", + "train": true, + "generate": true, + "num_rows": 0, + "epochs": 5, + "output_dir": null, + "model_dir": null, + "work_dir": null, + "resume": false, + "no_stats": false + }, + "resolved": { + "num_rows": 3918, + "model_path": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/n3/realtabformer/rtf-n3-20260505_022834/models_5epochs", + "output_csv": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/n3/realtabformer/rtf-n3-20260505_022834/rtf-n3-3918-20260505_022938.csv" + }, + "input_artifacts": { + "public_gate_report": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/n3/realtabformer/rtf-n3-20260505_022834/public_gate/public_gate_report.json", + "public_manifest": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/n3/realtabformer/rtf-n3-20260505_022834/public_gate/staged_input_manifest.json", + "model_manifest": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/n3/realtabformer/rtf-n3-20260505_022834/staged/realtabformer/model_input_manifest.json", + "train_csv": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/n3/realtabformer/rtf-n3-20260505_022834/staged/public/train.csv", + "features_json": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/n3/realtabformer/rtf-n3-20260505_022834/staged/public/staged_features.json", + "target_column": "quality", + "task_type": "classification" + }, + "env_overrides": { + "BENCHMARK_REALTABFORMER_GPUS": "device=3" + } +} \ No newline at end of file diff --git a/hyperparameter/n3/realtabformer/rtf-n3-20260505_022834/runtime_result.json b/hyperparameter/n3/realtabformer/rtf-n3-20260505_022834/runtime_result.json new file mode 100644 index 0000000000000000000000000000000000000000..ce3fa014d0a5d7b84667f1d7a82c724e877ac71b --- /dev/null +++ b/hyperparameter/n3/realtabformer/rtf-n3-20260505_022834/runtime_result.json @@ -0,0 +1,27 @@ +{ + "dataset_id": "n3", + "model": "realtabformer", + "run_id": "rtf-n3-20260505_022834", + "public_gate_status": "pass", + "adapter_ready_status": "pass", + "train_status": "success", + "generate_status": "success", + "reason_code": null, + "reason_detail": null, + "artifacts": { + "synthetic_csv": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/n3/realtabformer/rtf-n3-20260505_022834/rtf-n3-3918-20260505_022938.csv", + "model_path": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/n3/realtabformer/rtf-n3-20260505_022834/models_5epochs" + }, + "timings": { + "train": { + "started_at": "2026-05-05T02:28:34", + "ended_at": "2026-05-05T02:29:38", + "duration_sec": 64.534 + }, + "generate": { + "started_at": "2026-05-05T02:29:38", + "ended_at": "2026-05-05T02:30:59", + "duration_sec": 80.49 + } + } +} \ No newline at end of file diff --git a/hyperparameter/n3/realtabformer/rtf-n3-20260505_022834/staged/public/staged_features.json b/hyperparameter/n3/realtabformer/rtf-n3-20260505_022834/staged/public/staged_features.json new file mode 100644 index 0000000000000000000000000000000000000000..08fe4d766d091d2f2ddba724a16b9509cbe4c390 --- /dev/null +++ b/hyperparameter/n3/realtabformer/rtf-n3-20260505_022834/staged/public/staged_features.json @@ -0,0 +1,62 @@ +[ + { + "feature_name": "fixed acidity", + "data_type": "continuous", + "is_target": false + }, + { + "feature_name": "volatile acidity", + "data_type": "continuous", + "is_target": false + }, + { + "feature_name": "citric acid", + "data_type": "continuous", + "is_target": false + }, + { + "feature_name": "residual sugar", + "data_type": "continuous", + "is_target": false + }, + { + "feature_name": "chlorides", + "data_type": "continuous", + "is_target": false + }, + { + "feature_name": "free sulfur dioxide", + "data_type": "continuous", + "is_target": false + }, + { + "feature_name": "total sulfur dioxide", + "data_type": "continuous", + "is_target": false + }, + { + "feature_name": "density", + "data_type": "continuous", + "is_target": false + }, + { + "feature_name": "pH", + "data_type": "continuous", + "is_target": false + }, + { + "feature_name": "sulphates", + "data_type": "continuous", + "is_target": false + }, + { + "feature_name": "alcohol", + "data_type": "continuous", + "is_target": false + }, + { + "feature_name": "quality", + "data_type": "continuous", + "is_target": true + } +] \ No newline at end of file diff --git a/hyperparameter/n3/realtabformer/rtf-n3-20260505_022834/staged/public/test.csv b/hyperparameter/n3/realtabformer/rtf-n3-20260505_022834/staged/public/test.csv new file mode 100644 index 0000000000000000000000000000000000000000..db5cd50d3746410ea470625fa2ba2c8e9775cc0d --- /dev/null +++ b/hyperparameter/n3/realtabformer/rtf-n3-20260505_022834/staged/public/test.csv @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:19e107152a94432e2a37ff045c00cfe35e1be30208b1553080d7dd0ede256d3b +size 28944 diff --git a/hyperparameter/n3/realtabformer/rtf-n3-20260505_022834/staged/public/train.csv b/hyperparameter/n3/realtabformer/rtf-n3-20260505_022834/staged/public/train.csv new file mode 100644 index 0000000000000000000000000000000000000000..87ca26726fe82ccbaa397919305b043c17eb374e --- /dev/null +++ b/hyperparameter/n3/realtabformer/rtf-n3-20260505_022834/staged/public/train.csv @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:7813c8cca73ba4bfc6559215257b341c21e459980ad17ae6ddc809306bc9a0b9 +size 229945 diff --git a/hyperparameter/n3/realtabformer/rtf-n3-20260505_022834/staged/public/val.csv b/hyperparameter/n3/realtabformer/rtf-n3-20260505_022834/staged/public/val.csv new file mode 100644 index 0000000000000000000000000000000000000000..6acf84c76c47093b513c46d5503972a2dff275c0 --- /dev/null +++ b/hyperparameter/n3/realtabformer/rtf-n3-20260505_022834/staged/public/val.csv @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:cf5979d9675567d9d6642640c9b84fc6c49e492604144723c30f50516c05cee6 +size 28791 diff --git a/hyperparameter/n3/realtabformer/rtf-n3-20260505_022834/staged/realtabformer/adapter_report.json b/hyperparameter/n3/realtabformer/rtf-n3-20260505_022834/staged/realtabformer/adapter_report.json new file mode 100644 index 0000000000000000000000000000000000000000..2d3b0c25f31a938700c5b50750d5d0a3cee7cc8a --- /dev/null +++ b/hyperparameter/n3/realtabformer/rtf-n3-20260505_022834/staged/realtabformer/adapter_report.json @@ -0,0 +1,7 @@ +{ + "adapter_ready_status": "pass", + "adapter_fail_reason_code": null, + "adapter_fail_detail": null, + "adapter_transforms_applied": [], + "model_input_manifest": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/n3/realtabformer/rtf-n3-20260505_022834/staged/realtabformer/model_input_manifest.json" +} \ No newline at end of file diff --git a/hyperparameter/n3/realtabformer/rtf-n3-20260505_022834/staged/realtabformer/adapter_transforms_applied.json b/hyperparameter/n3/realtabformer/rtf-n3-20260505_022834/staged/realtabformer/adapter_transforms_applied.json new file mode 100644 index 0000000000000000000000000000000000000000..0637a088a01e8ddab3bf3fa98dbe804cbde1a0dc --- /dev/null +++ b/hyperparameter/n3/realtabformer/rtf-n3-20260505_022834/staged/realtabformer/adapter_transforms_applied.json @@ -0,0 +1 @@ +[] \ No newline at end of file diff --git a/hyperparameter/n3/realtabformer/rtf-n3-20260505_022834/staged/realtabformer/model_input_manifest.json b/hyperparameter/n3/realtabformer/rtf-n3-20260505_022834/staged/realtabformer/model_input_manifest.json new file mode 100644 index 0000000000000000000000000000000000000000..b70a206bb0e15e8d96248bfe6f5fa900bee53536 --- /dev/null +++ b/hyperparameter/n3/realtabformer/rtf-n3-20260505_022834/staged/realtabformer/model_input_manifest.json @@ -0,0 +1,266 @@ +{ + "dataset_id": "n3", + "model": "realtabformer", + "target_column": "quality", + "task_type": "classification", + "column_schema": [ + { + "name": "fixed acidity", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 66, + "unique_ratio": 0.016845, + "example_values": [ + "7.1", + "8.5", + "6.4", + "6.8", + "7.6" + ] + } + }, + { + "name": "volatile acidity", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 121, + "unique_ratio": 0.030883, + "example_values": [ + "0.31", + "0.21", + "0.24", + "0.43", + "0.27" + ] + } + }, + { + "name": "citric acid", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 85, + "unique_ratio": 0.021695, + "example_values": [ + "0.17", + "0.41", + "0.31", + "0.25", + "0.3" + ] + } + }, + { + "name": "residual sugar", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 296, + "unique_ratio": 0.075549, + "example_values": [ + "1", + "4.3", + "2.8", + "13", + "12.9" + ] + } + }, + { + "name": "chlorides", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 147, + "unique_ratio": 0.037519, + "example_values": [ + "0.042", + "0.036", + "0.038", + "0.047", + "0.033" + ] + } + }, + { + "name": "free sulfur dioxide", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 120, + "unique_ratio": 0.030628, + "example_values": [ + "21", + "24", + "41", + "43", + "69" + ] + } + }, + { + "name": "total sulfur dioxide", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 244, + "unique_ratio": 0.062277, + "example_values": [ + "144", + "99", + "114", + "132", + "160" + ] + } + }, + { + "name": "density", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 839, + "unique_ratio": 0.21414, + "example_values": [ + "0.99304", + "0.9947", + "0.99155", + "0.98975", + "0.99705" + ] + } + }, + { + "name": "pH", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 100, + "unique_ratio": 0.025523, + "example_values": [ + "3.13", + "3.18", + "3.37", + "3.21", + "3.16" + ] + } + }, + { + "name": "sulphates", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 78, + "unique_ratio": 0.019908, + "example_values": [ + "0.4", + "0.53", + "0.66", + "0.47", + "0.5" + ] + } + }, + { + "name": "alcohol", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 97, + "unique_ratio": 0.024758, + "example_values": [ + "9.6", + "9.7", + "11.7", + "13.4", + "8.8" + ] + } + }, + { + "name": "quality", + "role": "target", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 7, + "unique_ratio": 0.001787, + "example_values": [ + "5", + "6", + "7", + "8", + "3" + ] + } + } + ], + "public_manifest": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/n3/realtabformer/rtf-n3-20260505_022834/public_gate/staged_input_manifest.json", + "train_csv": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/n3/realtabformer/rtf-n3-20260505_022834/staged/public/train.csv", + "val_csv": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/n3/realtabformer/rtf-n3-20260505_022834/staged/public/val.csv", + "test_csv": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/n3/realtabformer/rtf-n3-20260505_022834/staged/public/test.csv", + "features_json": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/n3/realtabformer/rtf-n3-20260505_022834/staged/public/staged_features.json", + "public_gate_report": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/n3/realtabformer/rtf-n3-20260505_022834/public_gate/public_gate_report.json" +} \ No newline at end of file diff --git a/hyperparameter/n3/realtabformer/rtf-n3-20260505_022834/train_20260505_022834.log b/hyperparameter/n3/realtabformer/rtf-n3-20260505_022834/train_20260505_022834.log new file mode 100644 index 0000000000000000000000000000000000000000..61d6dd8f7aa978e877e92c1cab9671f80c36a151 --- /dev/null +++ b/hyperparameter/n3/realtabformer/rtf-n3-20260505_022834/train_20260505_022834.log @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:95684f08bb703d1b49cd6344a6a97404dbb6fe44f7c2278425a51ae4a8f8b822 +size 25036 diff --git a/hyperparameter/n3/realtabformer/rtf-n3-20260505_023112/gen_20260505_023316.log b/hyperparameter/n3/realtabformer/rtf-n3-20260505_023112/gen_20260505_023316.log new file mode 100644 index 0000000000000000000000000000000000000000..3ec6c6ad22923aba0bc35db383eeb64dabb1d8a0 --- /dev/null +++ b/hyperparameter/n3/realtabformer/rtf-n3-20260505_023112/gen_20260505_023316.log @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:c61a8c42f73ed540f3b04503be21d5a27337dacb7e41a59b33be14db8c37e2cb +size 2529 diff --git a/hyperparameter/n3/realtabformer/rtf-n3-20260505_023112/input_snapshot.json b/hyperparameter/n3/realtabformer/rtf-n3-20260505_023112/input_snapshot.json new file mode 100644 index 0000000000000000000000000000000000000000..db9a330f8472dedc095e195fd3a6da0d66be3b17 --- /dev/null +++ b/hyperparameter/n3/realtabformer/rtf-n3-20260505_023112/input_snapshot.json @@ -0,0 +1,36 @@ +{ + "dataset_id": "n3", + "model": "realtabformer", + "inputs": { + "train_csv": { + "path": "/data/jialinzhang/SynthesizePipeline-server/DatasetNew/n3/n3-train.csv", + "exists": true, + "size": 211519, + "sha256": "2160a06db2fea02adb0ebb79d8d853bd2544580be301e71f6e8deeb1489a9009" + }, + "val_csv": { + "path": "/data/jialinzhang/SynthesizePipeline-server/DatasetNew/n3/n3-val.csv", + "exists": true, + "size": 26499, + "sha256": "d5ccfee07dfa9e7bdee5bb87642b43828e09f74c6cc0266a3d19d9feaa83106e" + }, + "test_csv": { + "path": "/data/jialinzhang/SynthesizePipeline-server/DatasetNew/n3/n3-test.csv", + "exists": true, + "size": 26676, + "sha256": "6f83aacb0d1747b95e287352a7fff5d9d65a1c127b773852346c68485c4ede47" + }, + "profile_json": { + "path": "/data/jialinzhang/SynthesizePipeline-server/DatasetNew/artifacts/data_core/tabular/n3/n3-dataset_profile.json", + "exists": true, + "size": 5235, + "sha256": "23d2e5904a2ca90cbf8d6e3c75887681721e9b90cc705c31a680c11513d0c46f" + }, + "contract_json": { + "path": "/data/jialinzhang/SynthesizePipeline-server/DatasetNew/artifacts/data_core/tabular/n3/n3-dataset_contract_v1.json", + "exists": true, + "size": 6281, + "sha256": "c0cc56f5fe28e1b65927255c6e3c2b0e9479862c2ec6f2fea1664da36c9a3a09" + } + } +} \ No newline at end of file diff --git a/hyperparameter/n3/realtabformer/rtf-n3-20260505_023112/models_10epochs/id000017779195939315021824/rtf_config.json b/hyperparameter/n3/realtabformer/rtf-n3-20260505_023112/models_10epochs/id000017779195939315021824/rtf_config.json new file mode 100644 index 0000000000000000000000000000000000000000..ccb5a464f77bf88d7dc7b583ddfd2f46350a353e --- /dev/null +++ b/hyperparameter/n3/realtabformer/rtf-n3-20260505_023112/models_10epochs/id000017779195939315021824/rtf_config.json @@ -0,0 +1 @@ +{"model_type": "tabular", "tabular_config": {"transformers_version": "5.5.3", "architectures": ["GPT2LMHeadModel"], "output_hidden_states": false, "return_dict": true, "dtype": "float32", "chunk_size_feed_forward": 0, "is_encoder_decoder": false, "id2label": {"0": "LABEL_0", "1": "LABEL_1"}, "label2id": {"LABEL_0": 0, "LABEL_1": 1}, "problem_type": null, "vocab_size": 304, "n_positions": 1024, "n_embd": 768, "n_layer": 6, "n_head": 12, "n_inner": null, "activation_function": "gelu_new", "resid_pdrop": 0.1, "embd_pdrop": 0.1, "attn_pdrop": 0.1, "layer_norm_epsilon": 1e-05, "initializer_range": 0.02, "summary_type": "cls_index", "summary_use_proj": true, "summary_activation": null, "summary_proj_to_labels": true, "summary_first_dropout": 0.1, "scale_attn_weights": true, "use_cache": false, "bos_token_id": 5, "eos_token_id": 6, "pad_token_id": null, "scale_attn_by_inverse_layer_idx": false, "reorder_and_upcast_attn": false, "add_cross_attention": false, "tie_word_embeddings": true, "_name_or_path": "", "model_type": "gpt2", "output_attentions": false}, "checkpoints_dir": "rtf_checkpoints", "samples_save_dir": "rtf_samples", "full_save_dir": "rtf_full_save", "epochs": 10, "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": 10, "per_device_train_batch_size": 8, "per_device_eval_batch_size": 8, "gradient_accumulation_steps": 4, "remove_unused_columns": true, "logging_steps": 100, "save_steps": 100, "eval_steps": 100, "load_best_model_at_end": false, "save_total_limit": 6, "optim": "adamw_torch"}, "train_size": 1, "mask_rate": 0, "columns": ["fixed acidity", "volatile acidity", "citric acid", "residual sugar", "chlorides", "free sulfur dioxide", "total sulfur dioxide", "density", "pH", "sulphates", "alcohol", "quality"], "column_dtypes": {"fixed acidity": "float64", "volatile acidity": "float64", "citric acid": "float64", "residual sugar": "float64", "chlorides": "float64", "free sulfur dioxide": "float64", "total sulfur dioxide": "float64", "density": "float64", "pH": "float64", "sulphates": "float64", "alcohol": "float64", "quality": "int64"}, "column_has_missing": {"fixed acidity": false, "volatile acidity": false, "citric acid": false, "residual sugar": false, "chlorides": false, "free sulfur dioxide": false, "total sulfur dioxide": false, "density": false, "pH": false, "sulphates": false, "alcohol": false, "quality": false}, "drop_na_cols": ["fixed acidity", "volatile acidity", "citric acid", "residual sugar", "chlorides", "free sulfur dioxide", "total sulfur dioxide", "density", "pH", "sulphates", "alcohol", "quality"], "processed_columns": ["00___NUMERIC___fixed acidity_00", "00___NUMERIC___fixed acidity_01", "00___NUMERIC___fixed acidity_02", "00___NUMERIC___fixed acidity_03", "00___NUMERIC___fixed acidity_04", "01___NUMERIC___volatile acidity_00", "01___NUMERIC___volatile acidity_01", "01___NUMERIC___volatile acidity_02", "01___NUMERIC___volatile acidity_03", "01___NUMERIC___volatile acidity_04", "02___NUMERIC___citric acid_00", "02___NUMERIC___citric acid_01", "02___NUMERIC___citric acid_02", "02___NUMERIC___citric acid_03", "03___NUMERIC___residual sugar_00", "03___NUMERIC___residual sugar_01", "03___NUMERIC___residual sugar_02", "03___NUMERIC___residual sugar_03", "03___NUMERIC___residual sugar_04", "04___NUMERIC___chlorides_00", "04___NUMERIC___chlorides_01", "04___NUMERIC___chlorides_02", "04___NUMERIC___chlorides_03", "04___NUMERIC___chlorides_04", "05___NUMERIC___free sulfur dioxide_00", "05___NUMERIC___free sulfur dioxide_01", "05___NUMERIC___free sulfur dioxide_02", "05___NUMERIC___free sulfur dioxide_03", "05___NUMERIC___free sulfur dioxide_04", "06___NUMERIC___total sulfur dioxide_00", "06___NUMERIC___total sulfur dioxide_01", "06___NUMERIC___total sulfur dioxide_02", "06___NUMERIC___total sulfur dioxide_03", "06___NUMERIC___total sulfur dioxide_04", "07___NUMERIC___density_00", "07___NUMERIC___density_01", "07___NUMERIC___density_02", "07___NUMERIC___density_03", "07___NUMERIC___density_04", "07___NUMERIC___density_05", "08___NUMERIC___pH_00", "08___NUMERIC___pH_01", "08___NUMERIC___pH_02", "08___NUMERIC___pH_03", "09___NUMERIC___sulphates_00", "09___NUMERIC___sulphates_01", "09___NUMERIC___sulphates_02", "09___NUMERIC___sulphates_03", "10___NUMERIC___alcohol_00", "10___NUMERIC___alcohol_01", "10___NUMERIC___alcohol_02", "10___NUMERIC___alcohol_03", "10___NUMERIC___alcohol_04", "10___NUMERIC___alcohol_05", "10___NUMERIC___alcohol_06", "11___NUMERIC___quality_00"], "numeric_columns": ["fixed acidity", "volatile acidity", "citric acid", "residual sugar", "chlorides", "free sulfur dioxide", "total sulfur dioxide", "density", "pH", "sulphates", "alcohol", "quality"], "datetime_columns": [], "vocab": {"id2token": {"0": "[UNK]", "1": "[SEP]", "2": "[PAD]", "3": "[CLS]", "4": "[MASK]", "5": "[BOS]", "6": "[EOS]", "7": "[BMEM]", "8": "[EMEM]", "9": "[RMASK]", "10": "[SPTYPE]", "11": "00___NUMERIC___fixed acidity_00___0", "12": "00___NUMERIC___fixed acidity_00___1", "13": "00___NUMERIC___fixed acidity_01___0", "14": "00___NUMERIC___fixed acidity_01___1", "15": "00___NUMERIC___fixed acidity_01___3", "16": "00___NUMERIC___fixed acidity_01___4", "17": "00___NUMERIC___fixed acidity_01___5", "18": "00___NUMERIC___fixed acidity_01___6", "19": "00___NUMERIC___fixed acidity_01___7", "20": "00___NUMERIC___fixed acidity_01___8", "21": "00___NUMERIC___fixed acidity_01___9", "22": "00___NUMERIC___fixed acidity_02___.", "23": "00___NUMERIC___fixed acidity_03___0", "24": "00___NUMERIC___fixed acidity_03___1", "25": "00___NUMERIC___fixed acidity_03___2", "26": "00___NUMERIC___fixed acidity_03___3", "27": "00___NUMERIC___fixed acidity_03___4", "28": "00___NUMERIC___fixed acidity_03___5", "29": "00___NUMERIC___fixed acidity_03___6", "30": "00___NUMERIC___fixed acidity_03___7", "31": "00___NUMERIC___fixed acidity_03___8", "32": "00___NUMERIC___fixed acidity_03___9", "33": "00___NUMERIC___fixed acidity_04___0", "34": "00___NUMERIC___fixed acidity_04___5", "35": "01___NUMERIC___volatile acidity_00___0", "36": "01___NUMERIC___volatile acidity_00___1", "37": "01___NUMERIC___volatile acidity_01___.", "38": "01___NUMERIC___volatile acidity_02___0", "39": "01___NUMERIC___volatile acidity_02___1", "40": "01___NUMERIC___volatile acidity_02___2", "41": "01___NUMERIC___volatile acidity_02___3", "42": "01___NUMERIC___volatile acidity_02___4", "43": "01___NUMERIC___volatile acidity_02___5", "44": "01___NUMERIC___volatile acidity_02___6", "45": "01___NUMERIC___volatile acidity_02___7", "46": "01___NUMERIC___volatile acidity_02___8", "47": "01___NUMERIC___volatile acidity_02___9", "48": "01___NUMERIC___volatile acidity_03___0", "49": "01___NUMERIC___volatile acidity_03___1", "50": "01___NUMERIC___volatile acidity_03___2", "51": "01___NUMERIC___volatile acidity_03___3", "52": "01___NUMERIC___volatile acidity_03___4", "53": "01___NUMERIC___volatile acidity_03___5", "54": "01___NUMERIC___volatile acidity_03___6", "55": "01___NUMERIC___volatile acidity_03___7", "56": "01___NUMERIC___volatile acidity_03___8", "57": "01___NUMERIC___volatile acidity_03___9", "58": "01___NUMERIC___volatile acidity_04___0", "59": "01___NUMERIC___volatile acidity_04___5", "60": "02___NUMERIC___citric acid_00___0", "61": "02___NUMERIC___citric acid_00___1", "62": "02___NUMERIC___citric acid_01___.", "63": "02___NUMERIC___citric acid_02___0", "64": "02___NUMERIC___citric acid_02___1", "65": "02___NUMERIC___citric acid_02___2", "66": "02___NUMERIC___citric acid_02___3", "67": "02___NUMERIC___citric acid_02___4", "68": "02___NUMERIC___citric acid_02___5", "69": "02___NUMERIC___citric acid_02___6", "70": "02___NUMERIC___citric acid_02___7", "71": "02___NUMERIC___citric acid_02___8", "72": "02___NUMERIC___citric acid_02___9", "73": "02___NUMERIC___citric acid_03___0", "74": "02___NUMERIC___citric acid_03___1", "75": "02___NUMERIC___citric acid_03___2", "76": "02___NUMERIC___citric acid_03___3", "77": "02___NUMERIC___citric acid_03___4", "78": "02___NUMERIC___citric acid_03___5", "79": "02___NUMERIC___citric acid_03___6", "80": "02___NUMERIC___citric acid_03___7", "81": "02___NUMERIC___citric acid_03___8", "82": "02___NUMERIC___citric acid_03___9", "83": "03___NUMERIC___residual sugar_00___0", "84": "03___NUMERIC___residual sugar_00___1", "85": "03___NUMERIC___residual sugar_00___2", "86": "03___NUMERIC___residual sugar_00___3", "87": "03___NUMERIC___residual sugar_00___6", "88": "03___NUMERIC___residual sugar_01___0", "89": "03___NUMERIC___residual sugar_01___1", "90": "03___NUMERIC___residual sugar_01___2", "91": "03___NUMERIC___residual sugar_01___3", "92": "03___NUMERIC___residual sugar_01___4", "93": "03___NUMERIC___residual sugar_01___5", "94": "03___NUMERIC___residual sugar_01___6", "95": "03___NUMERIC___residual sugar_01___7", "96": "03___NUMERIC___residual sugar_01___8", "97": "03___NUMERIC___residual sugar_01___9", "98": "03___NUMERIC___residual sugar_02___.", "99": "03___NUMERIC___residual sugar_03___0", "100": "03___NUMERIC___residual sugar_03___1", "101": "03___NUMERIC___residual sugar_03___2", "102": "03___NUMERIC___residual sugar_03___3", "103": "03___NUMERIC___residual sugar_03___4", "104": "03___NUMERIC___residual sugar_03___5", "105": "03___NUMERIC___residual sugar_03___6", "106": "03___NUMERIC___residual sugar_03___7", "107": "03___NUMERIC___residual sugar_03___8", "108": "03___NUMERIC___residual sugar_03___9", "109": "03___NUMERIC___residual sugar_04___0", "110": "03___NUMERIC___residual sugar_04___5", "111": "04___NUMERIC___chlorides_00___0", "112": "04___NUMERIC___chlorides_01___.", "113": "04___NUMERIC___chlorides_02___0", "114": "04___NUMERIC___chlorides_02___1", "115": "04___NUMERIC___chlorides_02___2", "116": "04___NUMERIC___chlorides_02___3", "117": "04___NUMERIC___chlorides_03___0", "118": "04___NUMERIC___chlorides_03___1", "119": "04___NUMERIC___chlorides_03___2", "120": "04___NUMERIC___chlorides_03___3", "121": "04___NUMERIC___chlorides_03___4", "122": "04___NUMERIC___chlorides_03___5", "123": "04___NUMERIC___chlorides_03___6", "124": "04___NUMERIC___chlorides_03___7", "125": "04___NUMERIC___chlorides_03___8", "126": "04___NUMERIC___chlorides_03___9", "127": "04___NUMERIC___chlorides_04___0", "128": "04___NUMERIC___chlorides_04___1", "129": "04___NUMERIC___chlorides_04___2", "130": "04___NUMERIC___chlorides_04___3", "131": "04___NUMERIC___chlorides_04___4", "132": "04___NUMERIC___chlorides_04___5", "133": "04___NUMERIC___chlorides_04___6", "134": "04___NUMERIC___chlorides_04___7", "135": "04___NUMERIC___chlorides_04___8", "136": "04___NUMERIC___chlorides_04___9", "137": "05___NUMERIC___free sulfur dioxide_00___0", "138": "05___NUMERIC___free sulfur dioxide_00___1", "139": "05___NUMERIC___free sulfur dioxide_01___0", "140": "05___NUMERIC___free sulfur dioxide_01___1", "141": "05___NUMERIC___free sulfur dioxide_01___2", "142": "05___NUMERIC___free sulfur dioxide_01___3", "143": "05___NUMERIC___free sulfur dioxide_01___4", "144": "05___NUMERIC___free sulfur dioxide_01___5", "145": "05___NUMERIC___free sulfur dioxide_01___6", "146": "05___NUMERIC___free sulfur dioxide_01___7", "147": "05___NUMERIC___free sulfur dioxide_01___8", "148": "05___NUMERIC___free sulfur dioxide_01___9", "149": "05___NUMERIC___free sulfur dioxide_02___0", "150": "05___NUMERIC___free sulfur dioxide_02___1", "151": "05___NUMERIC___free sulfur dioxide_02___2", "152": "05___NUMERIC___free sulfur dioxide_02___3", "153": "05___NUMERIC___free sulfur dioxide_02___4", "154": "05___NUMERIC___free sulfur dioxide_02___5", "155": "05___NUMERIC___free sulfur dioxide_02___6", "156": "05___NUMERIC___free sulfur dioxide_02___7", "157": "05___NUMERIC___free sulfur dioxide_02___8", "158": "05___NUMERIC___free sulfur dioxide_02___9", "159": "05___NUMERIC___free sulfur dioxide_03___.", "160": "05___NUMERIC___free sulfur dioxide_04___0", "161": "05___NUMERIC___free sulfur dioxide_04___5", "162": "06___NUMERIC___total sulfur dioxide_00___0", "163": "06___NUMERIC___total sulfur dioxide_00___1", "164": "06___NUMERIC___total sulfur dioxide_00___2", "165": "06___NUMERIC___total sulfur dioxide_00___3", "166": "06___NUMERIC___total sulfur dioxide_01___0", "167": "06___NUMERIC___total sulfur dioxide_01___1", "168": "06___NUMERIC___total sulfur dioxide_01___2", "169": "06___NUMERIC___total sulfur dioxide_01___3", "170": "06___NUMERIC___total sulfur dioxide_01___4", "171": "06___NUMERIC___total sulfur dioxide_01___5", "172": "06___NUMERIC___total sulfur dioxide_01___6", "173": "06___NUMERIC___total sulfur dioxide_01___7", "174": "06___NUMERIC___total sulfur dioxide_01___8", "175": "06___NUMERIC___total sulfur dioxide_01___9", "176": "06___NUMERIC___total sulfur dioxide_02___0", "177": "06___NUMERIC___total sulfur dioxide_02___1", "178": "06___NUMERIC___total sulfur dioxide_02___2", "179": "06___NUMERIC___total sulfur dioxide_02___3", "180": "06___NUMERIC___total sulfur dioxide_02___4", "181": "06___NUMERIC___total sulfur dioxide_02___5", "182": "06___NUMERIC___total sulfur dioxide_02___6", "183": "06___NUMERIC___total sulfur dioxide_02___7", "184": "06___NUMERIC___total sulfur dioxide_02___8", "185": "06___NUMERIC___total sulfur dioxide_02___9", "186": "06___NUMERIC___total sulfur dioxide_03___.", "187": "06___NUMERIC___total sulfur dioxide_04___0", "188": "06___NUMERIC___total sulfur dioxide_04___5", "189": "07___NUMERIC___density_00___0", "190": "07___NUMERIC___density_00___1", "191": "07___NUMERIC___density_01___.", "192": "07___NUMERIC___density_02___0", "193": "07___NUMERIC___density_02___9", "194": "07___NUMERIC___density_03___0", "195": "07___NUMERIC___density_03___1", "196": "07___NUMERIC___density_03___3", "197": "07___NUMERIC___density_03___8", "198": "07___NUMERIC___density_03___9", "199": "07___NUMERIC___density_04___0", "200": "07___NUMERIC___density_04___1", "201": "07___NUMERIC___density_04___2", "202": "07___NUMERIC___density_04___3", "203": "07___NUMERIC___density_04___4", "204": "07___NUMERIC___density_04___5", "205": "07___NUMERIC___density_04___6", "206": "07___NUMERIC___density_04___7", "207": "07___NUMERIC___density_04___8", "208": "07___NUMERIC___density_04___9", "209": "07___NUMERIC___density_05___0", "210": "07___NUMERIC___density_05___1", "211": "07___NUMERIC___density_05___2", "212": "07___NUMERIC___density_05___3", "213": "07___NUMERIC___density_05___4", "214": "07___NUMERIC___density_05___5", "215": "07___NUMERIC___density_05___6", "216": "07___NUMERIC___density_05___7", "217": "07___NUMERIC___density_05___8", "218": "07___NUMERIC___density_05___9", "219": "08___NUMERIC___pH_00___2", "220": "08___NUMERIC___pH_00___3", "221": "08___NUMERIC___pH_01___.", "222": "08___NUMERIC___pH_02___0", "223": "08___NUMERIC___pH_02___1", "224": "08___NUMERIC___pH_02___2", "225": "08___NUMERIC___pH_02___3", "226": "08___NUMERIC___pH_02___4", "227": "08___NUMERIC___pH_02___5", "228": "08___NUMERIC___pH_02___6", "229": "08___NUMERIC___pH_02___7", "230": "08___NUMERIC___pH_02___8", "231": "08___NUMERIC___pH_02___9", "232": "08___NUMERIC___pH_03___0", "233": "08___NUMERIC___pH_03___1", "234": "08___NUMERIC___pH_03___2", "235": "08___NUMERIC___pH_03___3", "236": "08___NUMERIC___pH_03___4", "237": "08___NUMERIC___pH_03___5", "238": "08___NUMERIC___pH_03___6", "239": "08___NUMERIC___pH_03___7", "240": "08___NUMERIC___pH_03___8", "241": "08___NUMERIC___pH_03___9", "242": "09___NUMERIC___sulphates_00___0", "243": "09___NUMERIC___sulphates_00___1", "244": "09___NUMERIC___sulphates_01___.", "245": "09___NUMERIC___sulphates_02___0", "246": "09___NUMERIC___sulphates_02___2", "247": "09___NUMERIC___sulphates_02___3", "248": "09___NUMERIC___sulphates_02___4", "249": "09___NUMERIC___sulphates_02___5", "250": "09___NUMERIC___sulphates_02___6", "251": "09___NUMERIC___sulphates_02___7", "252": "09___NUMERIC___sulphates_02___8", "253": "09___NUMERIC___sulphates_02___9", "254": "09___NUMERIC___sulphates_03___0", "255": "09___NUMERIC___sulphates_03___1", "256": "09___NUMERIC___sulphates_03___2", "257": "09___NUMERIC___sulphates_03___3", "258": "09___NUMERIC___sulphates_03___4", "259": "09___NUMERIC___sulphates_03___5", "260": "09___NUMERIC___sulphates_03___6", "261": "09___NUMERIC___sulphates_03___7", "262": "09___NUMERIC___sulphates_03___8", "263": "09___NUMERIC___sulphates_03___9", "264": "10___NUMERIC___alcohol_00___0", "265": "10___NUMERIC___alcohol_00___1", "266": "10___NUMERIC___alcohol_01___0", "267": "10___NUMERIC___alcohol_01___1", "268": "10___NUMERIC___alcohol_01___2", "269": "10___NUMERIC___alcohol_01___3", "270": "10___NUMERIC___alcohol_01___4", "271": "10___NUMERIC___alcohol_01___8", "272": "10___NUMERIC___alcohol_01___9", "273": "10___NUMERIC___alcohol_02___.", "274": "10___NUMERIC___alcohol_03___0", "275": "10___NUMERIC___alcohol_03___1", "276": "10___NUMERIC___alcohol_03___2", "277": "10___NUMERIC___alcohol_03___3", "278": "10___NUMERIC___alcohol_03___4", "279": "10___NUMERIC___alcohol_03___5", "280": "10___NUMERIC___alcohol_03___6", "281": "10___NUMERIC___alcohol_03___7", "282": "10___NUMERIC___alcohol_03___8", "283": "10___NUMERIC___alcohol_03___9", "284": "10___NUMERIC___alcohol_04___0", "285": "10___NUMERIC___alcohol_04___3", "286": "10___NUMERIC___alcohol_04___4", "287": "10___NUMERIC___alcohol_04___5", "288": "10___NUMERIC___alcohol_04___6", "289": "10___NUMERIC___alcohol_04___8", "290": "10___NUMERIC___alcohol_04___9", "291": "10___NUMERIC___alcohol_05___0", "292": "10___NUMERIC___alcohol_05___3", "293": "10___NUMERIC___alcohol_05___6", "294": "10___NUMERIC___alcohol_06___0", "295": "10___NUMERIC___alcohol_06___3", "296": "10___NUMERIC___alcohol_06___7", "297": "11___NUMERIC___quality_00___3", "298": "11___NUMERIC___quality_00___4", "299": "11___NUMERIC___quality_00___5", "300": "11___NUMERIC___quality_00___6", "301": "11___NUMERIC___quality_00___7", "302": "11___NUMERIC___quality_00___8", "303": "11___NUMERIC___quality_00___9"}, "token2id": {"[UNK]": 0, "[SEP]": 1, "[PAD]": 2, "[CLS]": 3, "[MASK]": 4, "[BOS]": 5, "[EOS]": 6, "[BMEM]": 7, "[EMEM]": 8, "[RMASK]": 9, "[SPTYPE]": 10, "00___NUMERIC___fixed acidity_00___0": 11, "00___NUMERIC___fixed acidity_00___1": 12, "00___NUMERIC___fixed acidity_01___0": 13, "00___NUMERIC___fixed acidity_01___1": 14, "00___NUMERIC___fixed acidity_01___3": 15, "00___NUMERIC___fixed acidity_01___4": 16, "00___NUMERIC___fixed acidity_01___5": 17, "00___NUMERIC___fixed acidity_01___6": 18, "00___NUMERIC___fixed acidity_01___7": 19, "00___NUMERIC___fixed acidity_01___8": 20, "00___NUMERIC___fixed acidity_01___9": 21, "00___NUMERIC___fixed acidity_02___.": 22, "00___NUMERIC___fixed acidity_03___0": 23, "00___NUMERIC___fixed acidity_03___1": 24, "00___NUMERIC___fixed acidity_03___2": 25, "00___NUMERIC___fixed acidity_03___3": 26, "00___NUMERIC___fixed acidity_03___4": 27, "00___NUMERIC___fixed acidity_03___5": 28, "00___NUMERIC___fixed acidity_03___6": 29, "00___NUMERIC___fixed acidity_03___7": 30, "00___NUMERIC___fixed acidity_03___8": 31, "00___NUMERIC___fixed acidity_03___9": 32, "00___NUMERIC___fixed acidity_04___0": 33, "00___NUMERIC___fixed acidity_04___5": 34, "01___NUMERIC___volatile acidity_00___0": 35, "01___NUMERIC___volatile acidity_00___1": 36, "01___NUMERIC___volatile acidity_01___.": 37, "01___NUMERIC___volatile acidity_02___0": 38, "01___NUMERIC___volatile acidity_02___1": 39, "01___NUMERIC___volatile acidity_02___2": 40, "01___NUMERIC___volatile acidity_02___3": 41, "01___NUMERIC___volatile acidity_02___4": 42, "01___NUMERIC___volatile acidity_02___5": 43, "01___NUMERIC___volatile acidity_02___6": 44, "01___NUMERIC___volatile acidity_02___7": 45, "01___NUMERIC___volatile acidity_02___8": 46, "01___NUMERIC___volatile acidity_02___9": 47, "01___NUMERIC___volatile acidity_03___0": 48, "01___NUMERIC___volatile acidity_03___1": 49, "01___NUMERIC___volatile acidity_03___2": 50, "01___NUMERIC___volatile acidity_03___3": 51, "01___NUMERIC___volatile acidity_03___4": 52, "01___NUMERIC___volatile acidity_03___5": 53, "01___NUMERIC___volatile acidity_03___6": 54, "01___NUMERIC___volatile acidity_03___7": 55, "01___NUMERIC___volatile acidity_03___8": 56, "01___NUMERIC___volatile acidity_03___9": 57, "01___NUMERIC___volatile acidity_04___0": 58, "01___NUMERIC___volatile acidity_04___5": 59, "02___NUMERIC___citric acid_00___0": 60, "02___NUMERIC___citric acid_00___1": 61, "02___NUMERIC___citric acid_01___.": 62, "02___NUMERIC___citric acid_02___0": 63, "02___NUMERIC___citric acid_02___1": 64, "02___NUMERIC___citric acid_02___2": 65, "02___NUMERIC___citric acid_02___3": 66, "02___NUMERIC___citric acid_02___4": 67, "02___NUMERIC___citric acid_02___5": 68, "02___NUMERIC___citric acid_02___6": 69, "02___NUMERIC___citric acid_02___7": 70, "02___NUMERIC___citric acid_02___8": 71, "02___NUMERIC___citric acid_02___9": 72, "02___NUMERIC___citric acid_03___0": 73, "02___NUMERIC___citric acid_03___1": 74, "02___NUMERIC___citric acid_03___2": 75, "02___NUMERIC___citric acid_03___3": 76, "02___NUMERIC___citric acid_03___4": 77, "02___NUMERIC___citric acid_03___5": 78, "02___NUMERIC___citric acid_03___6": 79, "02___NUMERIC___citric acid_03___7": 80, "02___NUMERIC___citric acid_03___8": 81, "02___NUMERIC___citric acid_03___9": 82, "03___NUMERIC___residual sugar_00___0": 83, "03___NUMERIC___residual sugar_00___1": 84, "03___NUMERIC___residual sugar_00___2": 85, "03___NUMERIC___residual sugar_00___3": 86, "03___NUMERIC___residual sugar_00___6": 87, "03___NUMERIC___residual sugar_01___0": 88, "03___NUMERIC___residual sugar_01___1": 89, "03___NUMERIC___residual sugar_01___2": 90, "03___NUMERIC___residual sugar_01___3": 91, "03___NUMERIC___residual sugar_01___4": 92, "03___NUMERIC___residual sugar_01___5": 93, "03___NUMERIC___residual sugar_01___6": 94, "03___NUMERIC___residual sugar_01___7": 95, "03___NUMERIC___residual sugar_01___8": 96, "03___NUMERIC___residual sugar_01___9": 97, "03___NUMERIC___residual sugar_02___.": 98, "03___NUMERIC___residual sugar_03___0": 99, "03___NUMERIC___residual sugar_03___1": 100, "03___NUMERIC___residual sugar_03___2": 101, "03___NUMERIC___residual sugar_03___3": 102, "03___NUMERIC___residual sugar_03___4": 103, "03___NUMERIC___residual sugar_03___5": 104, "03___NUMERIC___residual sugar_03___6": 105, "03___NUMERIC___residual sugar_03___7": 106, "03___NUMERIC___residual sugar_03___8": 107, "03___NUMERIC___residual sugar_03___9": 108, "03___NUMERIC___residual sugar_04___0": 109, "03___NUMERIC___residual sugar_04___5": 110, "04___NUMERIC___chlorides_00___0": 111, "04___NUMERIC___chlorides_01___.": 112, "04___NUMERIC___chlorides_02___0": 113, "04___NUMERIC___chlorides_02___1": 114, "04___NUMERIC___chlorides_02___2": 115, "04___NUMERIC___chlorides_02___3": 116, "04___NUMERIC___chlorides_03___0": 117, "04___NUMERIC___chlorides_03___1": 118, "04___NUMERIC___chlorides_03___2": 119, "04___NUMERIC___chlorides_03___3": 120, "04___NUMERIC___chlorides_03___4": 121, "04___NUMERIC___chlorides_03___5": 122, "04___NUMERIC___chlorides_03___6": 123, "04___NUMERIC___chlorides_03___7": 124, "04___NUMERIC___chlorides_03___8": 125, "04___NUMERIC___chlorides_03___9": 126, "04___NUMERIC___chlorides_04___0": 127, "04___NUMERIC___chlorides_04___1": 128, "04___NUMERIC___chlorides_04___2": 129, "04___NUMERIC___chlorides_04___3": 130, "04___NUMERIC___chlorides_04___4": 131, "04___NUMERIC___chlorides_04___5": 132, "04___NUMERIC___chlorides_04___6": 133, "04___NUMERIC___chlorides_04___7": 134, "04___NUMERIC___chlorides_04___8": 135, "04___NUMERIC___chlorides_04___9": 136, "05___NUMERIC___free sulfur dioxide_00___0": 137, "05___NUMERIC___free sulfur dioxide_00___1": 138, "05___NUMERIC___free sulfur dioxide_01___0": 139, "05___NUMERIC___free sulfur dioxide_01___1": 140, "05___NUMERIC___free sulfur dioxide_01___2": 141, "05___NUMERIC___free sulfur dioxide_01___3": 142, "05___NUMERIC___free sulfur dioxide_01___4": 143, "05___NUMERIC___free sulfur dioxide_01___5": 144, "05___NUMERIC___free sulfur dioxide_01___6": 145, "05___NUMERIC___free sulfur dioxide_01___7": 146, "05___NUMERIC___free sulfur dioxide_01___8": 147, "05___NUMERIC___free sulfur dioxide_01___9": 148, "05___NUMERIC___free sulfur dioxide_02___0": 149, "05___NUMERIC___free sulfur dioxide_02___1": 150, "05___NUMERIC___free sulfur dioxide_02___2": 151, "05___NUMERIC___free sulfur dioxide_02___3": 152, "05___NUMERIC___free sulfur dioxide_02___4": 153, "05___NUMERIC___free sulfur dioxide_02___5": 154, "05___NUMERIC___free sulfur dioxide_02___6": 155, "05___NUMERIC___free sulfur dioxide_02___7": 156, "05___NUMERIC___free sulfur dioxide_02___8": 157, "05___NUMERIC___free sulfur dioxide_02___9": 158, "05___NUMERIC___free sulfur dioxide_03___.": 159, "05___NUMERIC___free sulfur dioxide_04___0": 160, "05___NUMERIC___free sulfur dioxide_04___5": 161, "06___NUMERIC___total sulfur dioxide_00___0": 162, "06___NUMERIC___total sulfur dioxide_00___1": 163, "06___NUMERIC___total sulfur dioxide_00___2": 164, "06___NUMERIC___total sulfur dioxide_00___3": 165, "06___NUMERIC___total sulfur dioxide_01___0": 166, "06___NUMERIC___total sulfur dioxide_01___1": 167, "06___NUMERIC___total sulfur dioxide_01___2": 168, "06___NUMERIC___total sulfur dioxide_01___3": 169, "06___NUMERIC___total sulfur dioxide_01___4": 170, "06___NUMERIC___total sulfur dioxide_01___5": 171, "06___NUMERIC___total sulfur dioxide_01___6": 172, "06___NUMERIC___total sulfur dioxide_01___7": 173, "06___NUMERIC___total sulfur dioxide_01___8": 174, "06___NUMERIC___total sulfur dioxide_01___9": 175, "06___NUMERIC___total sulfur dioxide_02___0": 176, "06___NUMERIC___total sulfur dioxide_02___1": 177, "06___NUMERIC___total sulfur dioxide_02___2": 178, "06___NUMERIC___total sulfur dioxide_02___3": 179, "06___NUMERIC___total sulfur dioxide_02___4": 180, "06___NUMERIC___total sulfur dioxide_02___5": 181, "06___NUMERIC___total sulfur dioxide_02___6": 182, "06___NUMERIC___total sulfur dioxide_02___7": 183, "06___NUMERIC___total sulfur dioxide_02___8": 184, "06___NUMERIC___total sulfur dioxide_02___9": 185, "06___NUMERIC___total sulfur dioxide_03___.": 186, "06___NUMERIC___total sulfur dioxide_04___0": 187, "06___NUMERIC___total sulfur dioxide_04___5": 188, "07___NUMERIC___density_00___0": 189, "07___NUMERIC___density_00___1": 190, "07___NUMERIC___density_01___.": 191, "07___NUMERIC___density_02___0": 192, "07___NUMERIC___density_02___9": 193, "07___NUMERIC___density_03___0": 194, "07___NUMERIC___density_03___1": 195, "07___NUMERIC___density_03___3": 196, "07___NUMERIC___density_03___8": 197, "07___NUMERIC___density_03___9": 198, "07___NUMERIC___density_04___0": 199, "07___NUMERIC___density_04___1": 200, "07___NUMERIC___density_04___2": 201, "07___NUMERIC___density_04___3": 202, "07___NUMERIC___density_04___4": 203, "07___NUMERIC___density_04___5": 204, "07___NUMERIC___density_04___6": 205, "07___NUMERIC___density_04___7": 206, "07___NUMERIC___density_04___8": 207, "07___NUMERIC___density_04___9": 208, "07___NUMERIC___density_05___0": 209, "07___NUMERIC___density_05___1": 210, "07___NUMERIC___density_05___2": 211, "07___NUMERIC___density_05___3": 212, "07___NUMERIC___density_05___4": 213, "07___NUMERIC___density_05___5": 214, "07___NUMERIC___density_05___6": 215, "07___NUMERIC___density_05___7": 216, "07___NUMERIC___density_05___8": 217, "07___NUMERIC___density_05___9": 218, "08___NUMERIC___pH_00___2": 219, "08___NUMERIC___pH_00___3": 220, "08___NUMERIC___pH_01___.": 221, "08___NUMERIC___pH_02___0": 222, "08___NUMERIC___pH_02___1": 223, "08___NUMERIC___pH_02___2": 224, "08___NUMERIC___pH_02___3": 225, "08___NUMERIC___pH_02___4": 226, "08___NUMERIC___pH_02___5": 227, "08___NUMERIC___pH_02___6": 228, "08___NUMERIC___pH_02___7": 229, "08___NUMERIC___pH_02___8": 230, "08___NUMERIC___pH_02___9": 231, "08___NUMERIC___pH_03___0": 232, "08___NUMERIC___pH_03___1": 233, "08___NUMERIC___pH_03___2": 234, "08___NUMERIC___pH_03___3": 235, "08___NUMERIC___pH_03___4": 236, "08___NUMERIC___pH_03___5": 237, "08___NUMERIC___pH_03___6": 238, "08___NUMERIC___pH_03___7": 239, "08___NUMERIC___pH_03___8": 240, "08___NUMERIC___pH_03___9": 241, "09___NUMERIC___sulphates_00___0": 242, "09___NUMERIC___sulphates_00___1": 243, "09___NUMERIC___sulphates_01___.": 244, "09___NUMERIC___sulphates_02___0": 245, "09___NUMERIC___sulphates_02___2": 246, "09___NUMERIC___sulphates_02___3": 247, "09___NUMERIC___sulphates_02___4": 248, "09___NUMERIC___sulphates_02___5": 249, "09___NUMERIC___sulphates_02___6": 250, "09___NUMERIC___sulphates_02___7": 251, "09___NUMERIC___sulphates_02___8": 252, "09___NUMERIC___sulphates_02___9": 253, "09___NUMERIC___sulphates_03___0": 254, "09___NUMERIC___sulphates_03___1": 255, "09___NUMERIC___sulphates_03___2": 256, "09___NUMERIC___sulphates_03___3": 257, "09___NUMERIC___sulphates_03___4": 258, "09___NUMERIC___sulphates_03___5": 259, "09___NUMERIC___sulphates_03___6": 260, "09___NUMERIC___sulphates_03___7": 261, "09___NUMERIC___sulphates_03___8": 262, "09___NUMERIC___sulphates_03___9": 263, "10___NUMERIC___alcohol_00___0": 264, "10___NUMERIC___alcohol_00___1": 265, "10___NUMERIC___alcohol_01___0": 266, "10___NUMERIC___alcohol_01___1": 267, "10___NUMERIC___alcohol_01___2": 268, "10___NUMERIC___alcohol_01___3": 269, "10___NUMERIC___alcohol_01___4": 270, "10___NUMERIC___alcohol_01___8": 271, "10___NUMERIC___alcohol_01___9": 272, "10___NUMERIC___alcohol_02___.": 273, "10___NUMERIC___alcohol_03___0": 274, "10___NUMERIC___alcohol_03___1": 275, "10___NUMERIC___alcohol_03___2": 276, "10___NUMERIC___alcohol_03___3": 277, "10___NUMERIC___alcohol_03___4": 278, "10___NUMERIC___alcohol_03___5": 279, "10___NUMERIC___alcohol_03___6": 280, "10___NUMERIC___alcohol_03___7": 281, "10___NUMERIC___alcohol_03___8": 282, "10___NUMERIC___alcohol_03___9": 283, "10___NUMERIC___alcohol_04___0": 284, "10___NUMERIC___alcohol_04___3": 285, "10___NUMERIC___alcohol_04___4": 286, "10___NUMERIC___alcohol_04___5": 287, "10___NUMERIC___alcohol_04___6": 288, "10___NUMERIC___alcohol_04___8": 289, "10___NUMERIC___alcohol_04___9": 290, "10___NUMERIC___alcohol_05___0": 291, "10___NUMERIC___alcohol_05___3": 292, "10___NUMERIC___alcohol_05___6": 293, "10___NUMERIC___alcohol_06___0": 294, "10___NUMERIC___alcohol_06___3": 295, "10___NUMERIC___alcohol_06___7": 296, "11___NUMERIC___quality_00___3": 297, "11___NUMERIC___quality_00___4": 298, "11___NUMERIC___quality_00___5": 299, "11___NUMERIC___quality_00___6": 300, "11___NUMERIC___quality_00___7": 301, "11___NUMERIC___quality_00___8": 302, "11___NUMERIC___quality_00___9": 303}, "column_token_ids": {"00___NUMERIC___fixed acidity_00": [11, 12], "00___NUMERIC___fixed acidity_01": [13, 14, 15, 16, 17, 18, 19, 20, 21], "00___NUMERIC___fixed acidity_02": [22], "00___NUMERIC___fixed acidity_03": [23, 24, 25, 26, 27, 28, 29, 30, 31, 32], "00___NUMERIC___fixed acidity_04": [33, 34], "01___NUMERIC___volatile acidity_00": [35, 36], "01___NUMERIC___volatile acidity_01": [37], "01___NUMERIC___volatile acidity_02": [38, 39, 40, 41, 42, 43, 44, 45, 46, 47], "01___NUMERIC___volatile acidity_03": [48, 49, 50, 51, 52, 53, 54, 55, 56, 57], "01___NUMERIC___volatile acidity_04": [58, 59], "02___NUMERIC___citric acid_00": [60, 61], "02___NUMERIC___citric acid_01": [62], "02___NUMERIC___citric acid_02": [63, 64, 65, 66, 67, 68, 69, 70, 71, 72], "02___NUMERIC___citric acid_03": [73, 74, 75, 76, 77, 78, 79, 80, 81, 82], "03___NUMERIC___residual sugar_00": [83, 84, 85, 86, 87], "03___NUMERIC___residual sugar_01": [88, 89, 90, 91, 92, 93, 94, 95, 96, 97], "03___NUMERIC___residual sugar_02": [98], "03___NUMERIC___residual sugar_03": [99, 100, 101, 102, 103, 104, 105, 106, 107, 108], "03___NUMERIC___residual sugar_04": [109, 110], "04___NUMERIC___chlorides_00": [111], "04___NUMERIC___chlorides_01": [112], "04___NUMERIC___chlorides_02": [113, 114, 115, 116], "04___NUMERIC___chlorides_03": [117, 118, 119, 120, 121, 122, 123, 124, 125, 126], "04___NUMERIC___chlorides_04": [127, 128, 129, 130, 131, 132, 133, 134, 135, 136], "05___NUMERIC___free sulfur dioxide_00": [137, 138], "05___NUMERIC___free sulfur dioxide_01": [139, 140, 141, 142, 143, 144, 145, 146, 147, 148], "05___NUMERIC___free sulfur dioxide_02": [149, 150, 151, 152, 153, 154, 155, 156, 157, 158], "05___NUMERIC___free sulfur dioxide_03": [159], "05___NUMERIC___free sulfur dioxide_04": [160, 161], "06___NUMERIC___total sulfur dioxide_00": [162, 163, 164, 165], "06___NUMERIC___total sulfur dioxide_01": [166, 167, 168, 169, 170, 171, 172, 173, 174, 175], "06___NUMERIC___total sulfur dioxide_02": [176, 177, 178, 179, 180, 181, 182, 183, 184, 185], "06___NUMERIC___total sulfur dioxide_03": [186], "06___NUMERIC___total sulfur dioxide_04": [187, 188], "07___NUMERIC___density_00": [189, 190], "07___NUMERIC___density_01": [191], "07___NUMERIC___density_02": [192, 193], "07___NUMERIC___density_03": [194, 195, 196, 197, 198], "07___NUMERIC___density_04": [199, 200, 201, 202, 203, 204, 205, 206, 207, 208], "07___NUMERIC___density_05": [209, 210, 211, 212, 213, 214, 215, 216, 217, 218], "08___NUMERIC___pH_00": [219, 220], "08___NUMERIC___pH_01": [221], "08___NUMERIC___pH_02": [222, 223, 224, 225, 226, 227, 228, 229, 230, 231], "08___NUMERIC___pH_03": [232, 233, 234, 235, 236, 237, 238, 239, 240, 241], "09___NUMERIC___sulphates_00": [242, 243], "09___NUMERIC___sulphates_01": [244], "09___NUMERIC___sulphates_02": [245, 246, 247, 248, 249, 250, 251, 252, 253], "09___NUMERIC___sulphates_03": [254, 255, 256, 257, 258, 259, 260, 261, 262, 263], "10___NUMERIC___alcohol_00": [264, 265], "10___NUMERIC___alcohol_01": [266, 267, 268, 269, 270, 271, 272], "10___NUMERIC___alcohol_02": [273], "10___NUMERIC___alcohol_03": [274, 275, 276, 277, 278, 279, 280, 281, 282, 283], "10___NUMERIC___alcohol_04": [284, 285, 286, 287, 288, 289, 290], "10___NUMERIC___alcohol_05": [291, 292, 293], "10___NUMERIC___alcohol_06": [294, 295, 296], "11___NUMERIC___quality_00": [297, 298, 299, 300, 301, 302, 303]}}, "tabular_max_length": 58, "relational_max_length": null, "tabular_col_size": 3918, "relational_col_size": null, "col_transform_data": {"fixed acidity": {"max_len": 10, "numeric_precision": 4, "mx_sig": 2, "ljust": 5, "numeric_nparts": 1}, "volatile acidity": {"max_len": 10, "numeric_precision": 4, "mx_sig": 1, "ljust": 5, "numeric_nparts": 1}, "citric acid": {"max_len": 10, "numeric_precision": 4, "mx_sig": 1, "ljust": 4, "numeric_nparts": 1}, "residual sugar": {"max_len": 10, "numeric_precision": 4, "mx_sig": 2, "ljust": 5, "numeric_nparts": 1}, "chlorides": {"max_len": 10, "numeric_precision": 4, "mx_sig": 1, "ljust": 5, "numeric_nparts": 1}, "free sulfur dioxide": {"max_len": 10, "numeric_precision": 4, "mx_sig": 3, "ljust": 5, "numeric_nparts": 1}, "total sulfur dioxide": {"max_len": 10, "numeric_precision": 4, "mx_sig": 3, "ljust": 5, "numeric_nparts": 1}, "density": {"max_len": 10, "numeric_precision": 4, "mx_sig": 1, "ljust": 6, "numeric_nparts": 1}, "pH": {"max_len": 10, "numeric_precision": 4, "mx_sig": 1, "ljust": 4, "numeric_nparts": 1}, "sulphates": {"max_len": 10, "numeric_precision": 4, "mx_sig": 1, "ljust": 4, "numeric_nparts": 1}, "alcohol": {"max_len": 10, "numeric_precision": 4, "mx_sig": 2, "ljust": 7, "numeric_nparts": 1}, "quality": {"max_len": 10, "numeric_precision": 4, "mx_sig": -1, "zfill": 1, "numeric_nparts": 1}}, "in_col_transform_data": null, "col_idx_ids": {"0": [11, 12], "1": [13, 14, 15, 16, 17, 18, 19, 20, 21], "2": [22], "3": [23, 24, 25, 26, 27, 28, 29, 30, 31, 32], "4": [33, 34], "5": [35, 36], "6": [37], "7": [38, 39, 40, 41, 42, 43, 44, 45, 46, 47], "8": [48, 49, 50, 51, 52, 53, 54, 55, 56, 57], "9": [58, 59], "10": [60, 61], "11": [62], "12": [63, 64, 65, 66, 67, 68, 69, 70, 71, 72], "13": [73, 74, 75, 76, 77, 78, 79, 80, 81, 82], "14": [83, 84, 85, 86, 87], "15": [88, 89, 90, 91, 92, 93, 94, 95, 96, 97], "16": [98], "17": [99, 100, 101, 102, 103, 104, 105, 106, 107, 108], "18": [109, 110], "19": [111], "20": [112], "21": [113, 114, 115, 116], "22": [117, 118, 119, 120, 121, 122, 123, 124, 125, 126], "23": [127, 128, 129, 130, 131, 132, 133, 134, 135, 136], "24": [137, 138], "25": [139, 140, 141, 142, 143, 144, 145, 146, 147, 148], "26": [149, 150, 151, 152, 153, 154, 155, 156, 157, 158], "27": [159], "28": [160, 161], "29": [162, 163, 164, 165], "30": [166, 167, 168, 169, 170, 171, 172, 173, 174, 175], "31": [176, 177, 178, 179, 180, 181, 182, 183, 184, 185], "32": [186], "33": [187, 188], "34": [189, 190], "35": [191], "36": [192, 193], "37": [194, 195, 196, 197, 198], "38": [199, 200, 201, 202, 203, 204, 205, 206, 207, 208], "39": [209, 210, 211, 212, 213, 214, 215, 216, 217, 218], "40": [219, 220], "41": [221], "42": [222, 223, 224, 225, 226, 227, 228, 229, 230, 231], "43": [232, 233, 234, 235, 236, 237, 238, 239, 240, 241], "44": [242, 243], "45": [244], "46": [245, 246, 247, 248, 249, 250, 251, 252, 253], "47": [254, 255, 256, 257, 258, 259, 260, 261, 262, 263], "48": [264, 265], "49": [266, 267, 268, 269, 270, 271, 272], "50": [273], "51": [274, 275, 276, 277, 278, 279, 280, 281, 282, 283], "52": [284, 285, 286, 287, 288, 289, 290], "53": [291, 292, 293], "54": [294, 295, 296], "55": [297, 298, 299, 300, 301, 302, 303]}, "random_state": 1029, "numeric_nparts": 1, "numeric_precision": 4, "numeric_max_len": 10, "experiment_id": "id000017779195939315021824", "trainer_state": null, "target_col": null, "realtabformer_version": "0.2.4"} \ No newline at end of file diff --git a/hyperparameter/n3/realtabformer/rtf-n3-20260505_023112/models_10epochs/id000017779195939315021824/rtf_model.pt b/hyperparameter/n3/realtabformer/rtf-n3-20260505_023112/models_10epochs/id000017779195939315021824/rtf_model.pt new file mode 100644 index 0000000000000000000000000000000000000000..4ea2c6356a8bd0c6e0d0472945b26ee1c10253bf --- /dev/null +++ b/hyperparameter/n3/realtabformer/rtf-n3-20260505_023112/models_10epochs/id000017779195939315021824/rtf_model.pt @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:a4992fe50eca0cb48e161a2aeb09ddb8e176c118f7050869f067f99b8d2c0ddb +size 174223843 diff --git a/hyperparameter/n3/realtabformer/rtf-n3-20260505_023112/public_gate/normalized_schema_snapshot.json b/hyperparameter/n3/realtabformer/rtf-n3-20260505_023112/public_gate/normalized_schema_snapshot.json new file mode 100644 index 0000000000000000000000000000000000000000..c41fe304503de23190a02e6cbfafa35b3bf134d3 --- /dev/null +++ b/hyperparameter/n3/realtabformer/rtf-n3-20260505_023112/public_gate/normalized_schema_snapshot.json @@ -0,0 +1,259 @@ +{ + "dataset_id": "n3", + "target_column": "quality", + "task_type": "classification", + "columns": [ + { + "name": "fixed acidity", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 66, + "unique_ratio": 0.016845, + "example_values": [ + "7.1", + "8.5", + "6.4", + "6.8", + "7.6" + ] + } + }, + { + "name": "volatile acidity", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 121, + "unique_ratio": 0.030883, + "example_values": [ + "0.31", + "0.21", + "0.24", + "0.43", + "0.27" + ] + } + }, + { + "name": "citric acid", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 85, + "unique_ratio": 0.021695, + "example_values": [ + "0.17", + "0.41", + "0.31", + "0.25", + "0.3" + ] + } + }, + { + "name": "residual sugar", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 296, + "unique_ratio": 0.075549, + "example_values": [ + "1", + "4.3", + "2.8", + "13", + "12.9" + ] + } + }, + { + "name": "chlorides", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 147, + "unique_ratio": 0.037519, + "example_values": [ + "0.042", + "0.036", + "0.038", + "0.047", + "0.033" + ] + } + }, + { + "name": "free sulfur dioxide", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 120, + "unique_ratio": 0.030628, + "example_values": [ + "21", + "24", + "41", + "43", + "69" + ] + } + }, + { + "name": "total sulfur dioxide", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 244, + "unique_ratio": 0.062277, + "example_values": [ + "144", + "99", + "114", + "132", + "160" + ] + } + }, + { + "name": "density", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 839, + "unique_ratio": 0.21414, + "example_values": [ + "0.99304", + "0.9947", + "0.99155", + "0.98975", + "0.99705" + ] + } + }, + { + "name": "pH", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 100, + "unique_ratio": 0.025523, + "example_values": [ + "3.13", + "3.18", + "3.37", + "3.21", + "3.16" + ] + } + }, + { + "name": "sulphates", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 78, + "unique_ratio": 0.019908, + "example_values": [ + "0.4", + "0.53", + "0.66", + "0.47", + "0.5" + ] + } + }, + { + "name": "alcohol", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 97, + "unique_ratio": 0.024758, + "example_values": [ + "9.6", + "9.7", + "11.7", + "13.4", + "8.8" + ] + } + }, + { + "name": "quality", + "role": "target", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 7, + "unique_ratio": 0.001787, + "example_values": [ + "5", + "6", + "7", + "8", + "3" + ] + } + } + ] +} \ No newline at end of file diff --git a/hyperparameter/n3/realtabformer/rtf-n3-20260505_023112/public_gate/public_gate_report.json b/hyperparameter/n3/realtabformer/rtf-n3-20260505_023112/public_gate/public_gate_report.json new file mode 100644 index 0000000000000000000000000000000000000000..93b97319f739e39079d6c6549fd2020f8a6dac25 --- /dev/null +++ b/hyperparameter/n3/realtabformer/rtf-n3-20260505_023112/public_gate/public_gate_report.json @@ -0,0 +1,37 @@ +{ + "dataset_id": "n3", + "status": "pass", + "checks": [ + { + "check_id": "PG001_csv_parse_ok", + "status": "pass" + }, + { + "check_id": "PG002_split_header_consistent", + "status": "pass" + }, + { + "check_id": "PG003_profile_header_match", + "status": "pass" + }, + { + "check_id": "PG004_missing_token_normalized", + "status": "pass" + }, + { + "check_id": "PG005_semantic_type_validated", + "status": "pass" + }, + { + "check_id": "PG006_target_defined_and_valid", + "status": "pass" + } + ], + "target_column": "quality", + "task_type": "classification", + "input_splits": { + "train": "/data/jialinzhang/SynthesizePipeline-server/DatasetNew/n3/n3-train.csv", + "val": "/data/jialinzhang/SynthesizePipeline-server/DatasetNew/n3/n3-val.csv", + "test": "/data/jialinzhang/SynthesizePipeline-server/DatasetNew/n3/n3-test.csv" + } +} \ No newline at end of file diff --git a/hyperparameter/n3/realtabformer/rtf-n3-20260505_023112/public_gate/staged_input_manifest.json b/hyperparameter/n3/realtabformer/rtf-n3-20260505_023112/public_gate/staged_input_manifest.json new file mode 100644 index 0000000000000000000000000000000000000000..f3e4cb4e9f86c3365382b13ea14e42b184a62564 --- /dev/null +++ b/hyperparameter/n3/realtabformer/rtf-n3-20260505_023112/public_gate/staged_input_manifest.json @@ -0,0 +1,264 @@ +{ + "dataset_id": "n3", + "target_column": "quality", + "task_type": "classification", + "train_csv": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/n3/realtabformer/rtf-n3-20260505_023112/staged/public/train.csv", + "val_csv": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/n3/realtabformer/rtf-n3-20260505_023112/staged/public/val.csv", + "test_csv": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/n3/realtabformer/rtf-n3-20260505_023112/staged/public/test.csv", + "features_json": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/n3/realtabformer/rtf-n3-20260505_023112/staged/public/staged_features.json", + "public_gate_report": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/n3/realtabformer/rtf-n3-20260505_023112/public_gate/public_gate_report.json", + "column_schema": [ + { + "name": "fixed acidity", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 66, + "unique_ratio": 0.016845, + "example_values": [ + "7.1", + "8.5", + "6.4", + "6.8", + "7.6" + ] + } + }, + { + "name": "volatile acidity", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 121, + "unique_ratio": 0.030883, + "example_values": [ + "0.31", + "0.21", + "0.24", + "0.43", + "0.27" + ] + } + }, + { + "name": "citric acid", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 85, + "unique_ratio": 0.021695, + "example_values": [ + "0.17", + "0.41", + "0.31", + "0.25", + "0.3" + ] + } + }, + { + "name": "residual sugar", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 296, + "unique_ratio": 0.075549, + "example_values": [ + "1", + "4.3", + "2.8", + "13", + "12.9" + ] + } + }, + { + "name": "chlorides", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 147, + "unique_ratio": 0.037519, + "example_values": [ + "0.042", + "0.036", + "0.038", + "0.047", + "0.033" + ] + } + }, + { + "name": "free sulfur dioxide", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 120, + "unique_ratio": 0.030628, + "example_values": [ + "21", + "24", + "41", + "43", + "69" + ] + } + }, + { + "name": "total sulfur dioxide", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 244, + "unique_ratio": 0.062277, + "example_values": [ + "144", + "99", + "114", + "132", + "160" + ] + } + }, + { + "name": "density", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 839, + "unique_ratio": 0.21414, + "example_values": [ + "0.99304", + "0.9947", + "0.99155", + "0.98975", + "0.99705" + ] + } + }, + { + "name": "pH", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 100, + "unique_ratio": 0.025523, + "example_values": [ + "3.13", + "3.18", + "3.37", + "3.21", + "3.16" + ] + } + }, + { + "name": "sulphates", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 78, + "unique_ratio": 0.019908, + "example_values": [ + "0.4", + "0.53", + "0.66", + "0.47", + "0.5" + ] + } + }, + { + "name": "alcohol", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 97, + "unique_ratio": 0.024758, + "example_values": [ + "9.6", + "9.7", + "11.7", + "13.4", + "8.8" + ] + } + }, + { + "name": "quality", + "role": "target", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 7, + "unique_ratio": 0.001787, + "example_values": [ + "5", + "6", + "7", + "8", + "3" + ] + } + } + ] +} \ No newline at end of file diff --git a/hyperparameter/n3/realtabformer/rtf-n3-20260505_023112/realtabformer_features.json b/hyperparameter/n3/realtabformer/rtf-n3-20260505_023112/realtabformer_features.json new file mode 100644 index 0000000000000000000000000000000000000000..08fe4d766d091d2f2ddba724a16b9509cbe4c390 --- /dev/null +++ b/hyperparameter/n3/realtabformer/rtf-n3-20260505_023112/realtabformer_features.json @@ -0,0 +1,62 @@ +[ + { + "feature_name": "fixed acidity", + "data_type": "continuous", + "is_target": false + }, + { + "feature_name": "volatile acidity", + "data_type": "continuous", + "is_target": false + }, + { + "feature_name": "citric acid", + "data_type": "continuous", + "is_target": false + }, + { + "feature_name": "residual sugar", + "data_type": "continuous", + "is_target": false + }, + { + "feature_name": "chlorides", + "data_type": "continuous", + "is_target": false + }, + { + "feature_name": "free sulfur dioxide", + "data_type": "continuous", + "is_target": false + }, + { + "feature_name": "total sulfur dioxide", + "data_type": "continuous", + "is_target": false + }, + { + "feature_name": "density", + "data_type": "continuous", + "is_target": false + }, + { + "feature_name": "pH", + "data_type": "continuous", + "is_target": false + }, + { + "feature_name": "sulphates", + "data_type": "continuous", + "is_target": false + }, + { + "feature_name": "alcohol", + "data_type": "continuous", + "is_target": false + }, + { + "feature_name": "quality", + "data_type": "continuous", + "is_target": true + } +] \ No newline at end of file diff --git a/hyperparameter/n3/realtabformer/rtf-n3-20260505_023112/rtf-n3-3918-20260505_023316.csv b/hyperparameter/n3/realtabformer/rtf-n3-20260505_023112/rtf-n3-3918-20260505_023316.csv new file mode 100644 index 0000000000000000000000000000000000000000..ff2fa858173c89fe38d2c50e926dc019d2d03ca0 --- /dev/null +++ b/hyperparameter/n3/realtabformer/rtf-n3-20260505_023112/rtf-n3-3918-20260505_023316.csv @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:c01327e9da97568d51bb4f71db2ba94e084c25697904b68fe85bdc4bee858eb7 +size 227378 diff --git a/hyperparameter/n3/realtabformer/rtf-n3-20260505_023112/rtf_checkpoints/checkpoint-1000/config.json b/hyperparameter/n3/realtabformer/rtf-n3-20260505_023112/rtf_checkpoints/checkpoint-1000/config.json new file mode 100644 index 0000000000000000000000000000000000000000..1876b75d3abc713ca867fe8e643ea273dc9cea87 --- /dev/null +++ b/hyperparameter/n3/realtabformer/rtf-n3-20260505_023112/rtf_checkpoints/checkpoint-1000/config.json @@ -0,0 +1,34 @@ +{ + "activation_function": "gelu_new", + "add_cross_attention": false, + "architectures": [ + "GPT2LMHeadModel" + ], + "attn_pdrop": 0.1, + "bos_token_id": 5, + "dtype": "float32", + "embd_pdrop": 0.1, + "eos_token_id": 6, + "initializer_range": 0.02, + "layer_norm_epsilon": 1e-05, + "model_type": "gpt2", + "n_embd": 768, + "n_head": 12, + "n_inner": null, + "n_layer": 6, + "n_positions": 1024, + "pad_token_id": null, + "reorder_and_upcast_attn": false, + "resid_pdrop": 0.1, + "scale_attn_by_inverse_layer_idx": false, + "scale_attn_weights": true, + "summary_activation": null, + "summary_first_dropout": 0.1, + "summary_proj_to_labels": true, + "summary_type": "cls_index", + "summary_use_proj": true, + "tie_word_embeddings": true, + "transformers_version": "5.5.3", + "use_cache": false, + "vocab_size": 304 +} diff --git a/hyperparameter/n3/realtabformer/rtf-n3-20260505_023112/rtf_checkpoints/checkpoint-1000/generation_config.json b/hyperparameter/n3/realtabformer/rtf-n3-20260505_023112/rtf_checkpoints/checkpoint-1000/generation_config.json new file mode 100644 index 0000000000000000000000000000000000000000..ffe89567780e75b5c22eade9be971483b9618f39 --- /dev/null +++ b/hyperparameter/n3/realtabformer/rtf-n3-20260505_023112/rtf_checkpoints/checkpoint-1000/generation_config.json @@ -0,0 +1,9 @@ +{ + "_from_model_config": true, + "bos_token_id": 5, + "eos_token_id": 6, + "output_attentions": false, + "output_hidden_states": false, + "transformers_version": "5.5.3", + "use_cache": true +} diff --git a/hyperparameter/n3/realtabformer/rtf-n3-20260505_023112/rtf_checkpoints/checkpoint-1000/model.safetensors b/hyperparameter/n3/realtabformer/rtf-n3-20260505_023112/rtf_checkpoints/checkpoint-1000/model.safetensors new file mode 100644 index 0000000000000000000000000000000000000000..030ef71f83b6ef5c6c5856940d3ecf97e9872394 --- /dev/null +++ b/hyperparameter/n3/realtabformer/rtf-n3-20260505_023112/rtf_checkpoints/checkpoint-1000/model.safetensors @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:cd0736f7dd0fd6bb71844c6253f540fb3aa0826c31b246aa7d13bad45f6303cc +size 174202312 diff --git a/hyperparameter/n3/realtabformer/rtf-n3-20260505_023112/rtf_checkpoints/checkpoint-1000/optimizer.pt b/hyperparameter/n3/realtabformer/rtf-n3-20260505_023112/rtf_checkpoints/checkpoint-1000/optimizer.pt new file mode 100644 index 0000000000000000000000000000000000000000..47a40fc345028c9da0e8c0a71de15d23be960832 --- /dev/null +++ b/hyperparameter/n3/realtabformer/rtf-n3-20260505_023112/rtf_checkpoints/checkpoint-1000/optimizer.pt @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:b8275c4178afd61d468bb6020006528b37753e286111720abf3f7e5730d4f4d5 +size 348453707 diff --git a/hyperparameter/n3/realtabformer/rtf-n3-20260505_023112/rtf_checkpoints/checkpoint-1000/rng_state.pth b/hyperparameter/n3/realtabformer/rtf-n3-20260505_023112/rtf_checkpoints/checkpoint-1000/rng_state.pth new file mode 100644 index 0000000000000000000000000000000000000000..2c758be9d1cafa452e8567065927c369834a0f8b --- /dev/null +++ b/hyperparameter/n3/realtabformer/rtf-n3-20260505_023112/rtf_checkpoints/checkpoint-1000/rng_state.pth @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:065640fc037f60defba6efdabb63ceb66685888f36abe6823fd188f057473fa1 +size 14645 diff --git a/hyperparameter/n3/realtabformer/rtf-n3-20260505_023112/rtf_checkpoints/checkpoint-1000/scaler.pt b/hyperparameter/n3/realtabformer/rtf-n3-20260505_023112/rtf_checkpoints/checkpoint-1000/scaler.pt new file mode 100644 index 0000000000000000000000000000000000000000..0405b11307032f43fcf2212da19c52823cc01ac4 --- /dev/null +++ b/hyperparameter/n3/realtabformer/rtf-n3-20260505_023112/rtf_checkpoints/checkpoint-1000/scaler.pt @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:14ae2a2128444abab378aa06c09a61a84665f758fcc19fc46f5789b0bc1b5665 +size 1383 diff --git a/hyperparameter/n3/realtabformer/rtf-n3-20260505_023112/rtf_checkpoints/checkpoint-1000/scheduler.pt b/hyperparameter/n3/realtabformer/rtf-n3-20260505_023112/rtf_checkpoints/checkpoint-1000/scheduler.pt new file mode 100644 index 0000000000000000000000000000000000000000..059076b9348a5025b2ff585cffd86e4685894459 --- /dev/null +++ b/hyperparameter/n3/realtabformer/rtf-n3-20260505_023112/rtf_checkpoints/checkpoint-1000/scheduler.pt @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:017f7ee2904223ea4105d0ea7021d2aca4d6d22494e12802a38d46c1ad356255 +size 1465 diff --git a/hyperparameter/n3/realtabformer/rtf-n3-20260505_023112/rtf_checkpoints/checkpoint-1000/trainer_state.json b/hyperparameter/n3/realtabformer/rtf-n3-20260505_023112/rtf_checkpoints/checkpoint-1000/trainer_state.json new file mode 100644 index 0000000000000000000000000000000000000000..8886c62f460fbf3474bdf95a3d9468ebe757a9a7 --- /dev/null +++ b/hyperparameter/n3/realtabformer/rtf-n3-20260505_023112/rtf_checkpoints/checkpoint-1000/trainer_state.json @@ -0,0 +1,104 @@ +{ + "best_global_step": null, + "best_metric": null, + "best_model_checkpoint": null, + "epoch": 8.130612244897959, + "eval_steps": 100, + "global_step": 1000, + "is_hyper_param_search": false, + "is_local_process_zero": true, + "is_world_process_zero": true, + "log_history": [ + { + "epoch": 0.8163265306122449, + "grad_norm": 0.20659293234348297, + "learning_rate": 4.597560975609756e-05, + "loss": 1.479016571044922, + "step": 100 + }, + { + "epoch": 1.6285714285714286, + "grad_norm": 0.20660454034805298, + "learning_rate": 4.1910569105691064e-05, + "loss": 0.8833919525146484, + "step": 200 + }, + { + "epoch": 2.440816326530612, + "grad_norm": 0.19642682373523712, + "learning_rate": 3.784552845528456e-05, + "loss": 0.8421613311767578, + "step": 300 + }, + { + "epoch": 3.253061224489796, + "grad_norm": 0.1837856024503708, + "learning_rate": 3.378048780487805e-05, + "loss": 0.8228292083740234, + "step": 400 + }, + { + "epoch": 4.0653061224489795, + "grad_norm": 0.1759372353553772, + "learning_rate": 2.9715447154471547e-05, + "loss": 0.8085212707519531, + "step": 500 + }, + { + "epoch": 4.881632653061224, + "grad_norm": 0.17737002670764923, + "learning_rate": 2.5650406504065045e-05, + "loss": 0.800329818725586, + "step": 600 + }, + { + "epoch": 5.6938775510204085, + "grad_norm": 0.1900816112756729, + "learning_rate": 2.1585365853658537e-05, + "loss": 0.7936624145507812, + "step": 700 + }, + { + "epoch": 6.506122448979592, + "grad_norm": 0.16500335931777954, + "learning_rate": 1.7520325203252034e-05, + "loss": 0.7881707763671875, + "step": 800 + }, + { + "epoch": 7.318367346938776, + "grad_norm": 0.1695879101753235, + "learning_rate": 1.3455284552845529e-05, + "loss": 0.7837516784667968, + "step": 900 + }, + { + "epoch": 8.130612244897959, + "grad_norm": 0.1788289099931717, + "learning_rate": 9.390243902439025e-06, + "loss": 0.7788165283203125, + "step": 1000 + } + ], + "logging_steps": 100, + "max_steps": 1230, + "num_input_tokens_seen": 0, + "num_train_epochs": 10, + "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": 471469158825984.0, + "train_batch_size": 8, + "trial_name": null, + "trial_params": null +} diff --git a/hyperparameter/n3/realtabformer/rtf-n3-20260505_023112/rtf_checkpoints/checkpoint-1000/training_args.bin b/hyperparameter/n3/realtabformer/rtf-n3-20260505_023112/rtf_checkpoints/checkpoint-1000/training_args.bin new file mode 100644 index 0000000000000000000000000000000000000000..95761c9b711780eb4f42f7be348858e3a996db4c --- /dev/null +++ b/hyperparameter/n3/realtabformer/rtf-n3-20260505_023112/rtf_checkpoints/checkpoint-1000/training_args.bin @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:9fd0ce7594132050805cad78976d67a632518b52037b36e6ef2977b2ee2740a7 +size 5201 diff --git a/hyperparameter/n3/realtabformer/rtf-n3-20260505_023112/rtf_checkpoints/checkpoint-1100/config.json b/hyperparameter/n3/realtabformer/rtf-n3-20260505_023112/rtf_checkpoints/checkpoint-1100/config.json new file mode 100644 index 0000000000000000000000000000000000000000..1876b75d3abc713ca867fe8e643ea273dc9cea87 --- /dev/null +++ b/hyperparameter/n3/realtabformer/rtf-n3-20260505_023112/rtf_checkpoints/checkpoint-1100/config.json @@ -0,0 +1,34 @@ +{ + "activation_function": "gelu_new", + "add_cross_attention": false, + "architectures": [ + "GPT2LMHeadModel" + ], + "attn_pdrop": 0.1, + "bos_token_id": 5, + "dtype": "float32", + "embd_pdrop": 0.1, + "eos_token_id": 6, + "initializer_range": 0.02, + "layer_norm_epsilon": 1e-05, + "model_type": "gpt2", + "n_embd": 768, + "n_head": 12, + "n_inner": null, + "n_layer": 6, + "n_positions": 1024, + "pad_token_id": null, + "reorder_and_upcast_attn": false, + "resid_pdrop": 0.1, + "scale_attn_by_inverse_layer_idx": false, + "scale_attn_weights": true, + "summary_activation": null, + "summary_first_dropout": 0.1, + "summary_proj_to_labels": true, + "summary_type": "cls_index", + "summary_use_proj": true, + "tie_word_embeddings": true, + "transformers_version": "5.5.3", + "use_cache": false, + "vocab_size": 304 +} diff --git a/hyperparameter/n3/realtabformer/rtf-n3-20260505_023112/rtf_checkpoints/checkpoint-1100/generation_config.json b/hyperparameter/n3/realtabformer/rtf-n3-20260505_023112/rtf_checkpoints/checkpoint-1100/generation_config.json new file mode 100644 index 0000000000000000000000000000000000000000..ffe89567780e75b5c22eade9be971483b9618f39 --- /dev/null +++ b/hyperparameter/n3/realtabformer/rtf-n3-20260505_023112/rtf_checkpoints/checkpoint-1100/generation_config.json @@ -0,0 +1,9 @@ +{ + "_from_model_config": true, + "bos_token_id": 5, + "eos_token_id": 6, + "output_attentions": false, + "output_hidden_states": false, + "transformers_version": "5.5.3", + "use_cache": true +} diff --git a/hyperparameter/n3/realtabformer/rtf-n3-20260505_023112/rtf_checkpoints/checkpoint-1100/model.safetensors b/hyperparameter/n3/realtabformer/rtf-n3-20260505_023112/rtf_checkpoints/checkpoint-1100/model.safetensors new file mode 100644 index 0000000000000000000000000000000000000000..1731878ae40d4ee69d9975cf374e19d9485d8641 --- /dev/null +++ b/hyperparameter/n3/realtabformer/rtf-n3-20260505_023112/rtf_checkpoints/checkpoint-1100/model.safetensors @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:ff9797db22bd127d061ebb9feda15d41f55bdc3249be32487c5d7a649c917d11 +size 174202312 diff --git a/hyperparameter/n3/realtabformer/rtf-n3-20260505_023112/rtf_checkpoints/checkpoint-1100/optimizer.pt b/hyperparameter/n3/realtabformer/rtf-n3-20260505_023112/rtf_checkpoints/checkpoint-1100/optimizer.pt new file mode 100644 index 0000000000000000000000000000000000000000..f1d08f1fd1ff895e4cde72ea7bdfa915119ade13 --- /dev/null +++ b/hyperparameter/n3/realtabformer/rtf-n3-20260505_023112/rtf_checkpoints/checkpoint-1100/optimizer.pt @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:072528cacbdf57cc5e90a8f3a12107c7c61a676dc03d99d1d9b8e703dde46686 +size 348453707 diff --git a/hyperparameter/n3/realtabformer/rtf-n3-20260505_023112/rtf_checkpoints/checkpoint-1100/rng_state.pth b/hyperparameter/n3/realtabformer/rtf-n3-20260505_023112/rtf_checkpoints/checkpoint-1100/rng_state.pth new file mode 100644 index 0000000000000000000000000000000000000000..1428fd7ab09b72c9eac80542afe214f4ce2f5b30 --- /dev/null +++ b/hyperparameter/n3/realtabformer/rtf-n3-20260505_023112/rtf_checkpoints/checkpoint-1100/rng_state.pth @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:05b1fd86ae682393c21141301f8084c8f9fa6affa451fc0dcd0ad0403de9a8bb +size 14645 diff --git a/hyperparameter/n3/realtabformer/rtf-n3-20260505_023112/rtf_checkpoints/checkpoint-1100/scaler.pt b/hyperparameter/n3/realtabformer/rtf-n3-20260505_023112/rtf_checkpoints/checkpoint-1100/scaler.pt new file mode 100644 index 0000000000000000000000000000000000000000..5738b706bceb2cc723379a6ae192d03c4b5652b7 --- /dev/null +++ b/hyperparameter/n3/realtabformer/rtf-n3-20260505_023112/rtf_checkpoints/checkpoint-1100/scaler.pt @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:5ecbbd6c6dff6f228661737c64adc040f47ef9a21f9a0d2159df5b5b4adb3e9d +size 1383 diff --git a/hyperparameter/n3/realtabformer/rtf-n3-20260505_023112/rtf_checkpoints/checkpoint-1100/scheduler.pt b/hyperparameter/n3/realtabformer/rtf-n3-20260505_023112/rtf_checkpoints/checkpoint-1100/scheduler.pt new file mode 100644 index 0000000000000000000000000000000000000000..4c1fba85cb4fc6bac6965d0ec4d37c4488f0d8c1 --- /dev/null +++ b/hyperparameter/n3/realtabformer/rtf-n3-20260505_023112/rtf_checkpoints/checkpoint-1100/scheduler.pt @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:505df6ae0869fd57a50e1af198b4343dbe2f6562da05e72c6a44a17bfd28a40c +size 1465 diff --git a/hyperparameter/n3/realtabformer/rtf-n3-20260505_023112/rtf_checkpoints/checkpoint-1100/trainer_state.json b/hyperparameter/n3/realtabformer/rtf-n3-20260505_023112/rtf_checkpoints/checkpoint-1100/trainer_state.json new file mode 100644 index 0000000000000000000000000000000000000000..c80f82fc2ef313c8e2a868607ea641fde65db75a --- /dev/null +++ b/hyperparameter/n3/realtabformer/rtf-n3-20260505_023112/rtf_checkpoints/checkpoint-1100/trainer_state.json @@ -0,0 +1,111 @@ +{ + "best_global_step": null, + "best_metric": null, + "best_model_checkpoint": null, + "epoch": 8.946938775510205, + "eval_steps": 100, + "global_step": 1100, + "is_hyper_param_search": false, + "is_local_process_zero": true, + "is_world_process_zero": true, + "log_history": [ + { + "epoch": 0.8163265306122449, + "grad_norm": 0.20659293234348297, + "learning_rate": 4.597560975609756e-05, + "loss": 1.479016571044922, + "step": 100 + }, + { + "epoch": 1.6285714285714286, + "grad_norm": 0.20660454034805298, + "learning_rate": 4.1910569105691064e-05, + "loss": 0.8833919525146484, + "step": 200 + }, + { + "epoch": 2.440816326530612, + "grad_norm": 0.19642682373523712, + "learning_rate": 3.784552845528456e-05, + "loss": 0.8421613311767578, + "step": 300 + }, + { + "epoch": 3.253061224489796, + "grad_norm": 0.1837856024503708, + "learning_rate": 3.378048780487805e-05, + "loss": 0.8228292083740234, + "step": 400 + }, + { + "epoch": 4.0653061224489795, + "grad_norm": 0.1759372353553772, + "learning_rate": 2.9715447154471547e-05, + "loss": 0.8085212707519531, + "step": 500 + }, + { + "epoch": 4.881632653061224, + "grad_norm": 0.17737002670764923, + "learning_rate": 2.5650406504065045e-05, + "loss": 0.800329818725586, + "step": 600 + }, + { + "epoch": 5.6938775510204085, + "grad_norm": 0.1900816112756729, + "learning_rate": 2.1585365853658537e-05, + "loss": 0.7936624145507812, + "step": 700 + }, + { + "epoch": 6.506122448979592, + "grad_norm": 0.16500335931777954, + "learning_rate": 1.7520325203252034e-05, + "loss": 0.7881707763671875, + "step": 800 + }, + { + "epoch": 7.318367346938776, + "grad_norm": 0.1695879101753235, + "learning_rate": 1.3455284552845529e-05, + "loss": 0.7837516784667968, + "step": 900 + }, + { + "epoch": 8.130612244897959, + "grad_norm": 0.1788289099931717, + "learning_rate": 9.390243902439025e-06, + "loss": 0.7788165283203125, + "step": 1000 + }, + { + "epoch": 8.946938775510205, + "grad_norm": 0.16992908716201782, + "learning_rate": 5.325203252032521e-06, + "loss": 0.7759988403320313, + "step": 1100 + } + ], + "logging_steps": 100, + "max_steps": 1230, + "num_input_tokens_seen": 0, + "num_train_epochs": 10, + "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": 518829194870784.0, + "train_batch_size": 8, + "trial_name": null, + "trial_params": null +} diff --git a/hyperparameter/n3/realtabformer/rtf-n3-20260505_023112/rtf_checkpoints/checkpoint-1100/training_args.bin b/hyperparameter/n3/realtabformer/rtf-n3-20260505_023112/rtf_checkpoints/checkpoint-1100/training_args.bin new file mode 100644 index 0000000000000000000000000000000000000000..95761c9b711780eb4f42f7be348858e3a996db4c --- /dev/null +++ b/hyperparameter/n3/realtabformer/rtf-n3-20260505_023112/rtf_checkpoints/checkpoint-1100/training_args.bin @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:9fd0ce7594132050805cad78976d67a632518b52037b36e6ef2977b2ee2740a7 +size 5201 diff --git a/hyperparameter/n3/realtabformer/rtf-n3-20260505_023112/rtf_checkpoints/checkpoint-1107/config.json b/hyperparameter/n3/realtabformer/rtf-n3-20260505_023112/rtf_checkpoints/checkpoint-1107/config.json new file mode 100644 index 0000000000000000000000000000000000000000..1876b75d3abc713ca867fe8e643ea273dc9cea87 --- /dev/null +++ b/hyperparameter/n3/realtabformer/rtf-n3-20260505_023112/rtf_checkpoints/checkpoint-1107/config.json @@ -0,0 +1,34 @@ +{ + "activation_function": "gelu_new", + "add_cross_attention": false, + "architectures": [ + "GPT2LMHeadModel" + ], + "attn_pdrop": 0.1, + "bos_token_id": 5, + "dtype": "float32", + "embd_pdrop": 0.1, + "eos_token_id": 6, + "initializer_range": 0.02, + "layer_norm_epsilon": 1e-05, + "model_type": "gpt2", + "n_embd": 768, + "n_head": 12, + "n_inner": null, + "n_layer": 6, + "n_positions": 1024, + "pad_token_id": null, + "reorder_and_upcast_attn": false, + "resid_pdrop": 0.1, + "scale_attn_by_inverse_layer_idx": false, + "scale_attn_weights": true, + "summary_activation": null, + "summary_first_dropout": 0.1, + "summary_proj_to_labels": true, + "summary_type": "cls_index", + "summary_use_proj": true, + "tie_word_embeddings": true, + "transformers_version": "5.5.3", + "use_cache": false, + "vocab_size": 304 +} diff --git a/hyperparameter/n3/realtabformer/rtf-n3-20260505_023112/rtf_checkpoints/checkpoint-1107/generation_config.json b/hyperparameter/n3/realtabformer/rtf-n3-20260505_023112/rtf_checkpoints/checkpoint-1107/generation_config.json new file mode 100644 index 0000000000000000000000000000000000000000..ffe89567780e75b5c22eade9be971483b9618f39 --- /dev/null +++ b/hyperparameter/n3/realtabformer/rtf-n3-20260505_023112/rtf_checkpoints/checkpoint-1107/generation_config.json @@ -0,0 +1,9 @@ +{ + "_from_model_config": true, + "bos_token_id": 5, + "eos_token_id": 6, + "output_attentions": false, + "output_hidden_states": false, + "transformers_version": "5.5.3", + "use_cache": true +} diff --git a/hyperparameter/n3/realtabformer/rtf-n3-20260505_023112/rtf_checkpoints/checkpoint-1107/model.safetensors b/hyperparameter/n3/realtabformer/rtf-n3-20260505_023112/rtf_checkpoints/checkpoint-1107/model.safetensors new file mode 100644 index 0000000000000000000000000000000000000000..371c55bd1f4af5c2f314aa52c280ae37e63e343a --- /dev/null +++ b/hyperparameter/n3/realtabformer/rtf-n3-20260505_023112/rtf_checkpoints/checkpoint-1107/model.safetensors @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:cb53a0bc131a1c3f924ac31263ebbf3085a4579be2886e96e2633558abc0dd48 +size 174202312 diff --git a/hyperparameter/n3/realtabformer/rtf-n3-20260505_023112/rtf_checkpoints/checkpoint-1107/optimizer.pt b/hyperparameter/n3/realtabformer/rtf-n3-20260505_023112/rtf_checkpoints/checkpoint-1107/optimizer.pt new file mode 100644 index 0000000000000000000000000000000000000000..0b1aaeddd5490ed1d54beaea679d7dd20cf84dba --- /dev/null +++ b/hyperparameter/n3/realtabformer/rtf-n3-20260505_023112/rtf_checkpoints/checkpoint-1107/optimizer.pt @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:f74b2b7bc7b7419d8996e418209ad327de2bdad0be6d0cb8a97a609aaa7b79b4 +size 348453707 diff --git a/hyperparameter/n3/realtabformer/rtf-n3-20260505_023112/rtf_checkpoints/checkpoint-1107/rng_state.pth b/hyperparameter/n3/realtabformer/rtf-n3-20260505_023112/rtf_checkpoints/checkpoint-1107/rng_state.pth new file mode 100644 index 0000000000000000000000000000000000000000..59847c021f30c0a844411ad16073b3e0225c7086 --- /dev/null +++ b/hyperparameter/n3/realtabformer/rtf-n3-20260505_023112/rtf_checkpoints/checkpoint-1107/rng_state.pth @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:c609c2c4e511ae22e356fecdf2761878dfbbf43bc918e74a55112d36457d4e37 +size 14645 diff --git a/hyperparameter/n3/realtabformer/rtf-n3-20260505_023112/rtf_checkpoints/checkpoint-1107/scaler.pt b/hyperparameter/n3/realtabformer/rtf-n3-20260505_023112/rtf_checkpoints/checkpoint-1107/scaler.pt new file mode 100644 index 0000000000000000000000000000000000000000..eefc05199658391950df18adcfd468f2778b54bd --- /dev/null +++ b/hyperparameter/n3/realtabformer/rtf-n3-20260505_023112/rtf_checkpoints/checkpoint-1107/scaler.pt @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:9485b86511a920273de6d3dd6d59ec20d1c17db65a0eb551a0f9a7c0d535f3c1 +size 1383 diff --git a/hyperparameter/n3/realtabformer/rtf-n3-20260505_023112/rtf_checkpoints/checkpoint-1107/scheduler.pt b/hyperparameter/n3/realtabformer/rtf-n3-20260505_023112/rtf_checkpoints/checkpoint-1107/scheduler.pt new file mode 100644 index 0000000000000000000000000000000000000000..f3376951b1b4ebb1e1f9c8f535b8286184fcf976 --- /dev/null +++ b/hyperparameter/n3/realtabformer/rtf-n3-20260505_023112/rtf_checkpoints/checkpoint-1107/scheduler.pt @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:6937829b2b33f393f2e3a32239360b94e6855145a387d4dfcd6da2acdeb5bb67 +size 1465 diff --git a/hyperparameter/n3/realtabformer/rtf-n3-20260505_023112/rtf_checkpoints/checkpoint-1107/trainer_state.json b/hyperparameter/n3/realtabformer/rtf-n3-20260505_023112/rtf_checkpoints/checkpoint-1107/trainer_state.json new file mode 100644 index 0000000000000000000000000000000000000000..5cda8aeb50197ae4f39d546ea3a94e178d3e3c67 --- /dev/null +++ b/hyperparameter/n3/realtabformer/rtf-n3-20260505_023112/rtf_checkpoints/checkpoint-1107/trainer_state.json @@ -0,0 +1,111 @@ +{ + "best_global_step": null, + "best_metric": null, + "best_model_checkpoint": null, + "epoch": 9.0, + "eval_steps": 100, + "global_step": 1107, + "is_hyper_param_search": false, + "is_local_process_zero": true, + "is_world_process_zero": true, + "log_history": [ + { + "epoch": 0.8163265306122449, + "grad_norm": 0.20659293234348297, + "learning_rate": 4.597560975609756e-05, + "loss": 1.479016571044922, + "step": 100 + }, + { + "epoch": 1.6285714285714286, + "grad_norm": 0.20660454034805298, + "learning_rate": 4.1910569105691064e-05, + "loss": 0.8833919525146484, + "step": 200 + }, + { + "epoch": 2.440816326530612, + "grad_norm": 0.19642682373523712, + "learning_rate": 3.784552845528456e-05, + "loss": 0.8421613311767578, + "step": 300 + }, + { + "epoch": 3.253061224489796, + "grad_norm": 0.1837856024503708, + "learning_rate": 3.378048780487805e-05, + "loss": 0.8228292083740234, + "step": 400 + }, + { + "epoch": 4.0653061224489795, + "grad_norm": 0.1759372353553772, + "learning_rate": 2.9715447154471547e-05, + "loss": 0.8085212707519531, + "step": 500 + }, + { + "epoch": 4.881632653061224, + "grad_norm": 0.17737002670764923, + "learning_rate": 2.5650406504065045e-05, + "loss": 0.800329818725586, + "step": 600 + }, + { + "epoch": 5.6938775510204085, + "grad_norm": 0.1900816112756729, + "learning_rate": 2.1585365853658537e-05, + "loss": 0.7936624145507812, + "step": 700 + }, + { + "epoch": 6.506122448979592, + "grad_norm": 0.16500335931777954, + "learning_rate": 1.7520325203252034e-05, + "loss": 0.7881707763671875, + "step": 800 + }, + { + "epoch": 7.318367346938776, + "grad_norm": 0.1695879101753235, + "learning_rate": 1.3455284552845529e-05, + "loss": 0.7837516784667968, + "step": 900 + }, + { + "epoch": 8.130612244897959, + "grad_norm": 0.1788289099931717, + "learning_rate": 9.390243902439025e-06, + "loss": 0.7788165283203125, + "step": 1000 + }, + { + "epoch": 8.946938775510205, + "grad_norm": 0.16992908716201782, + "learning_rate": 5.325203252032521e-06, + "loss": 0.7759988403320313, + "step": 1100 + } + ], + "logging_steps": 100, + "max_steps": 1230, + "num_input_tokens_seen": 0, + "num_train_epochs": 10, + "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": 521877997191168.0, + "train_batch_size": 8, + "trial_name": null, + "trial_params": null +} diff --git a/hyperparameter/n3/realtabformer/rtf-n3-20260505_023112/rtf_checkpoints/checkpoint-1107/training_args.bin b/hyperparameter/n3/realtabformer/rtf-n3-20260505_023112/rtf_checkpoints/checkpoint-1107/training_args.bin new file mode 100644 index 0000000000000000000000000000000000000000..95761c9b711780eb4f42f7be348858e3a996db4c --- /dev/null +++ b/hyperparameter/n3/realtabformer/rtf-n3-20260505_023112/rtf_checkpoints/checkpoint-1107/training_args.bin @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:9fd0ce7594132050805cad78976d67a632518b52037b36e6ef2977b2ee2740a7 +size 5201 diff --git a/hyperparameter/n3/realtabformer/rtf-n3-20260505_023112/rtf_checkpoints/checkpoint-1200/config.json b/hyperparameter/n3/realtabformer/rtf-n3-20260505_023112/rtf_checkpoints/checkpoint-1200/config.json new file mode 100644 index 0000000000000000000000000000000000000000..1876b75d3abc713ca867fe8e643ea273dc9cea87 --- /dev/null +++ b/hyperparameter/n3/realtabformer/rtf-n3-20260505_023112/rtf_checkpoints/checkpoint-1200/config.json @@ -0,0 +1,34 @@ +{ + "activation_function": "gelu_new", + "add_cross_attention": false, + "architectures": [ + "GPT2LMHeadModel" + ], + "attn_pdrop": 0.1, + "bos_token_id": 5, + "dtype": "float32", + "embd_pdrop": 0.1, + "eos_token_id": 6, + "initializer_range": 0.02, + "layer_norm_epsilon": 1e-05, + "model_type": "gpt2", + "n_embd": 768, + "n_head": 12, + "n_inner": null, + "n_layer": 6, + "n_positions": 1024, + "pad_token_id": null, + "reorder_and_upcast_attn": false, + "resid_pdrop": 0.1, + "scale_attn_by_inverse_layer_idx": false, + "scale_attn_weights": true, + "summary_activation": null, + "summary_first_dropout": 0.1, + "summary_proj_to_labels": true, + "summary_type": "cls_index", + "summary_use_proj": true, + "tie_word_embeddings": true, + "transformers_version": "5.5.3", + "use_cache": false, + "vocab_size": 304 +} diff --git a/hyperparameter/n3/realtabformer/rtf-n3-20260505_023112/rtf_checkpoints/checkpoint-1200/generation_config.json b/hyperparameter/n3/realtabformer/rtf-n3-20260505_023112/rtf_checkpoints/checkpoint-1200/generation_config.json new file mode 100644 index 0000000000000000000000000000000000000000..ffe89567780e75b5c22eade9be971483b9618f39 --- /dev/null +++ b/hyperparameter/n3/realtabformer/rtf-n3-20260505_023112/rtf_checkpoints/checkpoint-1200/generation_config.json @@ -0,0 +1,9 @@ +{ + "_from_model_config": true, + "bos_token_id": 5, + "eos_token_id": 6, + "output_attentions": false, + "output_hidden_states": false, + "transformers_version": "5.5.3", + "use_cache": true +} diff --git a/hyperparameter/n3/realtabformer/rtf-n3-20260505_023112/rtf_checkpoints/checkpoint-1200/model.safetensors b/hyperparameter/n3/realtabformer/rtf-n3-20260505_023112/rtf_checkpoints/checkpoint-1200/model.safetensors new file mode 100644 index 0000000000000000000000000000000000000000..98b637434a2fdaa72ec6e07bdb3637a44cb0340d --- /dev/null +++ b/hyperparameter/n3/realtabformer/rtf-n3-20260505_023112/rtf_checkpoints/checkpoint-1200/model.safetensors @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:80e4b394eeb402ef2d736827aadbc20f9f21ba00834ce3ec15185a856c52279e +size 174202312 diff --git a/hyperparameter/n3/realtabformer/rtf-n3-20260505_023112/rtf_checkpoints/checkpoint-1200/optimizer.pt b/hyperparameter/n3/realtabformer/rtf-n3-20260505_023112/rtf_checkpoints/checkpoint-1200/optimizer.pt new file mode 100644 index 0000000000000000000000000000000000000000..8d89d60620436217221d5c2da03832a62f639d63 --- /dev/null +++ b/hyperparameter/n3/realtabformer/rtf-n3-20260505_023112/rtf_checkpoints/checkpoint-1200/optimizer.pt @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:f1ddb1df0ecb6ac8aaeb508fae43d04054ffc7ab6c93e4d55f1979b27f305a83 +size 348453707 diff --git a/hyperparameter/n3/realtabformer/rtf-n3-20260505_023112/rtf_checkpoints/checkpoint-1200/rng_state.pth b/hyperparameter/n3/realtabformer/rtf-n3-20260505_023112/rtf_checkpoints/checkpoint-1200/rng_state.pth new file mode 100644 index 0000000000000000000000000000000000000000..7d3eac5ff31eac926b18dda4a54fcd510531b3f7 --- /dev/null +++ b/hyperparameter/n3/realtabformer/rtf-n3-20260505_023112/rtf_checkpoints/checkpoint-1200/rng_state.pth @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:46a3ee08d8cef3b930b5f86a9fc5d69cb060369eddc564759c78d134e0375cc3 +size 14645 diff --git a/hyperparameter/n3/realtabformer/rtf-n3-20260505_023112/rtf_checkpoints/checkpoint-1200/scaler.pt b/hyperparameter/n3/realtabformer/rtf-n3-20260505_023112/rtf_checkpoints/checkpoint-1200/scaler.pt new file mode 100644 index 0000000000000000000000000000000000000000..3529b9e1021ddc95e3af7b2d72233fab602a2d19 --- /dev/null +++ b/hyperparameter/n3/realtabformer/rtf-n3-20260505_023112/rtf_checkpoints/checkpoint-1200/scaler.pt @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:18783150ac09b6b81cea5af47876a10bfe5f36c3d76aca4ffce5382bdfaf7b28 +size 1383 diff --git a/hyperparameter/n3/realtabformer/rtf-n3-20260505_023112/rtf_checkpoints/checkpoint-1200/scheduler.pt b/hyperparameter/n3/realtabformer/rtf-n3-20260505_023112/rtf_checkpoints/checkpoint-1200/scheduler.pt new file mode 100644 index 0000000000000000000000000000000000000000..0a209e751c9b5ec7b0e627c7813ac8b5db1c14fe --- /dev/null +++ b/hyperparameter/n3/realtabformer/rtf-n3-20260505_023112/rtf_checkpoints/checkpoint-1200/scheduler.pt @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:e469be73b30f9f41be0aac640a853551eeb79f5a28c07866f2531216e91932a2 +size 1465 diff --git a/hyperparameter/n3/realtabformer/rtf-n3-20260505_023112/rtf_checkpoints/checkpoint-1200/trainer_state.json b/hyperparameter/n3/realtabformer/rtf-n3-20260505_023112/rtf_checkpoints/checkpoint-1200/trainer_state.json new file mode 100644 index 0000000000000000000000000000000000000000..2e54e02c4810e18d08f0f4eed5fe383fc8640822 --- /dev/null +++ b/hyperparameter/n3/realtabformer/rtf-n3-20260505_023112/rtf_checkpoints/checkpoint-1200/trainer_state.json @@ -0,0 +1,118 @@ +{ + "best_global_step": null, + "best_metric": null, + "best_model_checkpoint": null, + "epoch": 9.759183673469387, + "eval_steps": 100, + "global_step": 1200, + "is_hyper_param_search": false, + "is_local_process_zero": true, + "is_world_process_zero": true, + "log_history": [ + { + "epoch": 0.8163265306122449, + "grad_norm": 0.20659293234348297, + "learning_rate": 4.597560975609756e-05, + "loss": 1.479016571044922, + "step": 100 + }, + { + "epoch": 1.6285714285714286, + "grad_norm": 0.20660454034805298, + "learning_rate": 4.1910569105691064e-05, + "loss": 0.8833919525146484, + "step": 200 + }, + { + "epoch": 2.440816326530612, + "grad_norm": 0.19642682373523712, + "learning_rate": 3.784552845528456e-05, + "loss": 0.8421613311767578, + "step": 300 + }, + { + "epoch": 3.253061224489796, + "grad_norm": 0.1837856024503708, + "learning_rate": 3.378048780487805e-05, + "loss": 0.8228292083740234, + "step": 400 + }, + { + "epoch": 4.0653061224489795, + "grad_norm": 0.1759372353553772, + "learning_rate": 2.9715447154471547e-05, + "loss": 0.8085212707519531, + "step": 500 + }, + { + "epoch": 4.881632653061224, + "grad_norm": 0.17737002670764923, + "learning_rate": 2.5650406504065045e-05, + "loss": 0.800329818725586, + "step": 600 + }, + { + "epoch": 5.6938775510204085, + "grad_norm": 0.1900816112756729, + "learning_rate": 2.1585365853658537e-05, + "loss": 0.7936624145507812, + "step": 700 + }, + { + "epoch": 6.506122448979592, + "grad_norm": 0.16500335931777954, + "learning_rate": 1.7520325203252034e-05, + "loss": 0.7881707763671875, + "step": 800 + }, + { + "epoch": 7.318367346938776, + "grad_norm": 0.1695879101753235, + "learning_rate": 1.3455284552845529e-05, + "loss": 0.7837516784667968, + "step": 900 + }, + { + "epoch": 8.130612244897959, + "grad_norm": 0.1788289099931717, + "learning_rate": 9.390243902439025e-06, + "loss": 0.7788165283203125, + "step": 1000 + }, + { + "epoch": 8.946938775510205, + "grad_norm": 0.16992908716201782, + "learning_rate": 5.325203252032521e-06, + "loss": 0.7759988403320313, + "step": 1100 + }, + { + "epoch": 9.759183673469387, + "grad_norm": 0.17391018569469452, + "learning_rate": 1.2601626016260164e-06, + "loss": 0.7725002288818359, + "step": 1200 + } + ], + "logging_steps": 100, + "max_steps": 1230, + "num_input_tokens_seen": 0, + "num_train_epochs": 10, + "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": 565922830712832.0, + "train_batch_size": 8, + "trial_name": null, + "trial_params": null +} diff --git a/hyperparameter/n3/realtabformer/rtf-n3-20260505_023112/rtf_checkpoints/checkpoint-1200/training_args.bin b/hyperparameter/n3/realtabformer/rtf-n3-20260505_023112/rtf_checkpoints/checkpoint-1200/training_args.bin new file mode 100644 index 0000000000000000000000000000000000000000..95761c9b711780eb4f42f7be348858e3a996db4c --- /dev/null +++ b/hyperparameter/n3/realtabformer/rtf-n3-20260505_023112/rtf_checkpoints/checkpoint-1200/training_args.bin @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:9fd0ce7594132050805cad78976d67a632518b52037b36e6ef2977b2ee2740a7 +size 5201 diff --git a/hyperparameter/n3/realtabformer/rtf-n3-20260505_023112/rtf_checkpoints/checkpoint-1230/config.json b/hyperparameter/n3/realtabformer/rtf-n3-20260505_023112/rtf_checkpoints/checkpoint-1230/config.json new file mode 100644 index 0000000000000000000000000000000000000000..1876b75d3abc713ca867fe8e643ea273dc9cea87 --- /dev/null +++ b/hyperparameter/n3/realtabformer/rtf-n3-20260505_023112/rtf_checkpoints/checkpoint-1230/config.json @@ -0,0 +1,34 @@ +{ + "activation_function": "gelu_new", + "add_cross_attention": false, + "architectures": [ + "GPT2LMHeadModel" + ], + "attn_pdrop": 0.1, + "bos_token_id": 5, + "dtype": "float32", + "embd_pdrop": 0.1, + "eos_token_id": 6, + "initializer_range": 0.02, + "layer_norm_epsilon": 1e-05, + "model_type": "gpt2", + "n_embd": 768, + "n_head": 12, + "n_inner": null, + "n_layer": 6, + "n_positions": 1024, + "pad_token_id": null, + "reorder_and_upcast_attn": false, + "resid_pdrop": 0.1, + "scale_attn_by_inverse_layer_idx": false, + "scale_attn_weights": true, + "summary_activation": null, + "summary_first_dropout": 0.1, + "summary_proj_to_labels": true, + "summary_type": "cls_index", + "summary_use_proj": true, + "tie_word_embeddings": true, + "transformers_version": "5.5.3", + "use_cache": false, + "vocab_size": 304 +} diff --git a/hyperparameter/n3/realtabformer/rtf-n3-20260505_023112/rtf_checkpoints/checkpoint-1230/generation_config.json b/hyperparameter/n3/realtabformer/rtf-n3-20260505_023112/rtf_checkpoints/checkpoint-1230/generation_config.json new file mode 100644 index 0000000000000000000000000000000000000000..ffe89567780e75b5c22eade9be971483b9618f39 --- /dev/null +++ b/hyperparameter/n3/realtabformer/rtf-n3-20260505_023112/rtf_checkpoints/checkpoint-1230/generation_config.json @@ -0,0 +1,9 @@ +{ + "_from_model_config": true, + "bos_token_id": 5, + "eos_token_id": 6, + "output_attentions": false, + "output_hidden_states": false, + "transformers_version": "5.5.3", + "use_cache": true +} diff --git a/hyperparameter/n3/realtabformer/rtf-n3-20260505_023112/rtf_checkpoints/checkpoint-1230/model.safetensors b/hyperparameter/n3/realtabformer/rtf-n3-20260505_023112/rtf_checkpoints/checkpoint-1230/model.safetensors new file mode 100644 index 0000000000000000000000000000000000000000..95f01e9eb92335acc3270b4b8bb337f911e163a2 --- /dev/null +++ b/hyperparameter/n3/realtabformer/rtf-n3-20260505_023112/rtf_checkpoints/checkpoint-1230/model.safetensors @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:8ed54a253c6aaab9689fe10fed0710bd29a7bc49397e37b64aed45cfc98b5a7b +size 174202312 diff --git a/hyperparameter/n3/realtabformer/rtf-n3-20260505_023112/rtf_checkpoints/checkpoint-1230/optimizer.pt b/hyperparameter/n3/realtabformer/rtf-n3-20260505_023112/rtf_checkpoints/checkpoint-1230/optimizer.pt new file mode 100644 index 0000000000000000000000000000000000000000..01383719ea52abb4d7468ff685cd9b83f8b1333b --- /dev/null +++ b/hyperparameter/n3/realtabformer/rtf-n3-20260505_023112/rtf_checkpoints/checkpoint-1230/optimizer.pt @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:2bb68470b79750907693cf9efa0fd80ffb201ab4852d587d7101cfcbaf35a94a +size 348453707 diff --git a/hyperparameter/n3/realtabformer/rtf-n3-20260505_023112/rtf_checkpoints/checkpoint-1230/rng_state.pth b/hyperparameter/n3/realtabformer/rtf-n3-20260505_023112/rtf_checkpoints/checkpoint-1230/rng_state.pth new file mode 100644 index 0000000000000000000000000000000000000000..5d8d74eafcf37bd03fa8028a5ffa21e9d6f0f200 --- /dev/null +++ b/hyperparameter/n3/realtabformer/rtf-n3-20260505_023112/rtf_checkpoints/checkpoint-1230/rng_state.pth @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:e04ef0d9def084caf2b84dc3e0d2164ef21b749101c3b4f9f8c0552b471ef867 +size 14645 diff --git a/hyperparameter/n3/realtabformer/rtf-n3-20260505_023112/rtf_checkpoints/checkpoint-1230/scaler.pt b/hyperparameter/n3/realtabformer/rtf-n3-20260505_023112/rtf_checkpoints/checkpoint-1230/scaler.pt new file mode 100644 index 0000000000000000000000000000000000000000..da1d2dd1ca60f4ffc33c78c055a441557dcee5ce --- /dev/null +++ b/hyperparameter/n3/realtabformer/rtf-n3-20260505_023112/rtf_checkpoints/checkpoint-1230/scaler.pt @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:4db5a4208f9240f13cb7594b952e44b3645ffa2bd3885eff7d66c781553462f9 +size 1383 diff --git a/hyperparameter/n3/realtabformer/rtf-n3-20260505_023112/rtf_checkpoints/checkpoint-1230/scheduler.pt b/hyperparameter/n3/realtabformer/rtf-n3-20260505_023112/rtf_checkpoints/checkpoint-1230/scheduler.pt new file mode 100644 index 0000000000000000000000000000000000000000..7f3ca4ed7367787fce3c8bd93578c4d5534a3baa --- /dev/null +++ b/hyperparameter/n3/realtabformer/rtf-n3-20260505_023112/rtf_checkpoints/checkpoint-1230/scheduler.pt @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:2e8c67526bc89761f6357091ab717f15b8d37f892136c0afa35b7a0415f30b26 +size 1465 diff --git a/hyperparameter/n3/realtabformer/rtf-n3-20260505_023112/rtf_checkpoints/checkpoint-1230/trainer_state.json b/hyperparameter/n3/realtabformer/rtf-n3-20260505_023112/rtf_checkpoints/checkpoint-1230/trainer_state.json new file mode 100644 index 0000000000000000000000000000000000000000..54ed328487cf3768ba0d181a6077194f105cd330 --- /dev/null +++ b/hyperparameter/n3/realtabformer/rtf-n3-20260505_023112/rtf_checkpoints/checkpoint-1230/trainer_state.json @@ -0,0 +1,118 @@ +{ + "best_global_step": null, + "best_metric": null, + "best_model_checkpoint": null, + "epoch": 10.0, + "eval_steps": 100, + "global_step": 1230, + "is_hyper_param_search": false, + "is_local_process_zero": true, + "is_world_process_zero": true, + "log_history": [ + { + "epoch": 0.8163265306122449, + "grad_norm": 0.20659293234348297, + "learning_rate": 4.597560975609756e-05, + "loss": 1.479016571044922, + "step": 100 + }, + { + "epoch": 1.6285714285714286, + "grad_norm": 0.20660454034805298, + "learning_rate": 4.1910569105691064e-05, + "loss": 0.8833919525146484, + "step": 200 + }, + { + "epoch": 2.440816326530612, + "grad_norm": 0.19642682373523712, + "learning_rate": 3.784552845528456e-05, + "loss": 0.8421613311767578, + "step": 300 + }, + { + "epoch": 3.253061224489796, + "grad_norm": 0.1837856024503708, + "learning_rate": 3.378048780487805e-05, + "loss": 0.8228292083740234, + "step": 400 + }, + { + "epoch": 4.0653061224489795, + "grad_norm": 0.1759372353553772, + "learning_rate": 2.9715447154471547e-05, + "loss": 0.8085212707519531, + "step": 500 + }, + { + "epoch": 4.881632653061224, + "grad_norm": 0.17737002670764923, + "learning_rate": 2.5650406504065045e-05, + "loss": 0.800329818725586, + "step": 600 + }, + { + "epoch": 5.6938775510204085, + "grad_norm": 0.1900816112756729, + "learning_rate": 2.1585365853658537e-05, + "loss": 0.7936624145507812, + "step": 700 + }, + { + "epoch": 6.506122448979592, + "grad_norm": 0.16500335931777954, + "learning_rate": 1.7520325203252034e-05, + "loss": 0.7881707763671875, + "step": 800 + }, + { + "epoch": 7.318367346938776, + "grad_norm": 0.1695879101753235, + "learning_rate": 1.3455284552845529e-05, + "loss": 0.7837516784667968, + "step": 900 + }, + { + "epoch": 8.130612244897959, + "grad_norm": 0.1788289099931717, + "learning_rate": 9.390243902439025e-06, + "loss": 0.7788165283203125, + "step": 1000 + }, + { + "epoch": 8.946938775510205, + "grad_norm": 0.16992908716201782, + "learning_rate": 5.325203252032521e-06, + "loss": 0.7759988403320313, + "step": 1100 + }, + { + "epoch": 9.759183673469387, + "grad_norm": 0.17391018569469452, + "learning_rate": 1.2601626016260164e-06, + "loss": 0.7725002288818359, + "step": 1200 + } + ], + "logging_steps": 100, + "max_steps": 1230, + "num_input_tokens_seen": 0, + "num_train_epochs": 10, + "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": 579864441323520.0, + "train_batch_size": 8, + "trial_name": null, + "trial_params": null +} diff --git a/hyperparameter/n3/realtabformer/rtf-n3-20260505_023112/rtf_checkpoints/checkpoint-1230/training_args.bin b/hyperparameter/n3/realtabformer/rtf-n3-20260505_023112/rtf_checkpoints/checkpoint-1230/training_args.bin new file mode 100644 index 0000000000000000000000000000000000000000..95761c9b711780eb4f42f7be348858e3a996db4c --- /dev/null +++ b/hyperparameter/n3/realtabformer/rtf-n3-20260505_023112/rtf_checkpoints/checkpoint-1230/training_args.bin @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:9fd0ce7594132050805cad78976d67a632518b52037b36e6ef2977b2ee2740a7 +size 5201 diff --git a/hyperparameter/n3/realtabformer/rtf-n3-20260505_023112/rtf_checkpoints/checkpoint-984/config.json b/hyperparameter/n3/realtabformer/rtf-n3-20260505_023112/rtf_checkpoints/checkpoint-984/config.json new file mode 100644 index 0000000000000000000000000000000000000000..1876b75d3abc713ca867fe8e643ea273dc9cea87 --- /dev/null +++ b/hyperparameter/n3/realtabformer/rtf-n3-20260505_023112/rtf_checkpoints/checkpoint-984/config.json @@ -0,0 +1,34 @@ +{ + "activation_function": "gelu_new", + "add_cross_attention": false, + "architectures": [ + "GPT2LMHeadModel" + ], + "attn_pdrop": 0.1, + "bos_token_id": 5, + "dtype": "float32", + "embd_pdrop": 0.1, + "eos_token_id": 6, + "initializer_range": 0.02, + "layer_norm_epsilon": 1e-05, + "model_type": "gpt2", + "n_embd": 768, + "n_head": 12, + "n_inner": null, + "n_layer": 6, + "n_positions": 1024, + "pad_token_id": null, + "reorder_and_upcast_attn": false, + "resid_pdrop": 0.1, + "scale_attn_by_inverse_layer_idx": false, + "scale_attn_weights": true, + "summary_activation": null, + "summary_first_dropout": 0.1, + "summary_proj_to_labels": true, + "summary_type": "cls_index", + "summary_use_proj": true, + "tie_word_embeddings": true, + "transformers_version": "5.5.3", + "use_cache": false, + "vocab_size": 304 +} diff --git a/hyperparameter/n3/realtabformer/rtf-n3-20260505_023112/rtf_checkpoints/checkpoint-984/generation_config.json b/hyperparameter/n3/realtabformer/rtf-n3-20260505_023112/rtf_checkpoints/checkpoint-984/generation_config.json new file mode 100644 index 0000000000000000000000000000000000000000..ffe89567780e75b5c22eade9be971483b9618f39 --- /dev/null +++ b/hyperparameter/n3/realtabformer/rtf-n3-20260505_023112/rtf_checkpoints/checkpoint-984/generation_config.json @@ -0,0 +1,9 @@ +{ + "_from_model_config": true, + "bos_token_id": 5, + "eos_token_id": 6, + "output_attentions": false, + "output_hidden_states": false, + "transformers_version": "5.5.3", + "use_cache": true +} diff --git a/hyperparameter/n3/realtabformer/rtf-n3-20260505_023112/rtf_checkpoints/checkpoint-984/model.safetensors b/hyperparameter/n3/realtabformer/rtf-n3-20260505_023112/rtf_checkpoints/checkpoint-984/model.safetensors new file mode 100644 index 0000000000000000000000000000000000000000..411f8e0d8b92243d81ab1e844fcdcc48821f993f --- /dev/null +++ b/hyperparameter/n3/realtabformer/rtf-n3-20260505_023112/rtf_checkpoints/checkpoint-984/model.safetensors @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:71e0afe42ee1d4a9a1c88be6349430411524132b70dca123f842e620ab355709 +size 174202312 diff --git a/hyperparameter/n3/realtabformer/rtf-n3-20260505_023112/rtf_checkpoints/checkpoint-984/optimizer.pt b/hyperparameter/n3/realtabformer/rtf-n3-20260505_023112/rtf_checkpoints/checkpoint-984/optimizer.pt new file mode 100644 index 0000000000000000000000000000000000000000..b906e7f3ff5e8c87fe19d070c6febf68c51b911f --- /dev/null +++ b/hyperparameter/n3/realtabformer/rtf-n3-20260505_023112/rtf_checkpoints/checkpoint-984/optimizer.pt @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:7932a1af7ced5300cadc7f4051d5187f70e40e0ffb0893a9fd992eee894ffce1 +size 348453707 diff --git a/hyperparameter/n3/realtabformer/rtf-n3-20260505_023112/rtf_checkpoints/checkpoint-984/rng_state.pth b/hyperparameter/n3/realtabformer/rtf-n3-20260505_023112/rtf_checkpoints/checkpoint-984/rng_state.pth new file mode 100644 index 0000000000000000000000000000000000000000..24ea1023086919f480d92b9022f0c6a17066e1cf --- /dev/null +++ b/hyperparameter/n3/realtabformer/rtf-n3-20260505_023112/rtf_checkpoints/checkpoint-984/rng_state.pth @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:22ee3a038180c5bc250664d7277705ac114b64555a861dd480cba3f5f27724ec +size 14645 diff --git a/hyperparameter/n3/realtabformer/rtf-n3-20260505_023112/rtf_checkpoints/checkpoint-984/scaler.pt b/hyperparameter/n3/realtabformer/rtf-n3-20260505_023112/rtf_checkpoints/checkpoint-984/scaler.pt new file mode 100644 index 0000000000000000000000000000000000000000..715bcd3506de356c01b9f61aea9738244bdb5261 --- /dev/null +++ b/hyperparameter/n3/realtabformer/rtf-n3-20260505_023112/rtf_checkpoints/checkpoint-984/scaler.pt @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:d2d9d5d4744f6ec10599ea5429d4bf1746e8fc591cfa90588be7f520d62f423d +size 1383 diff --git a/hyperparameter/n3/realtabformer/rtf-n3-20260505_023112/rtf_checkpoints/checkpoint-984/scheduler.pt b/hyperparameter/n3/realtabformer/rtf-n3-20260505_023112/rtf_checkpoints/checkpoint-984/scheduler.pt new file mode 100644 index 0000000000000000000000000000000000000000..d5ff4df9036c616b1fc2c5447f41684753ad6eee --- /dev/null +++ b/hyperparameter/n3/realtabformer/rtf-n3-20260505_023112/rtf_checkpoints/checkpoint-984/scheduler.pt @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:7db4d434d4e4b597b4936db0f21e6bb04e48883b9bdd48c3e13435f14e35e837 +size 1465 diff --git a/hyperparameter/n3/realtabformer/rtf-n3-20260505_023112/rtf_checkpoints/checkpoint-984/trainer_state.json b/hyperparameter/n3/realtabformer/rtf-n3-20260505_023112/rtf_checkpoints/checkpoint-984/trainer_state.json new file mode 100644 index 0000000000000000000000000000000000000000..b9524feeab402707190290991cfecc80444e991d --- /dev/null +++ b/hyperparameter/n3/realtabformer/rtf-n3-20260505_023112/rtf_checkpoints/checkpoint-984/trainer_state.json @@ -0,0 +1,97 @@ +{ + "best_global_step": null, + "best_metric": null, + "best_model_checkpoint": null, + "epoch": 8.0, + "eval_steps": 100, + "global_step": 984, + "is_hyper_param_search": false, + "is_local_process_zero": true, + "is_world_process_zero": true, + "log_history": [ + { + "epoch": 0.8163265306122449, + "grad_norm": 0.20659293234348297, + "learning_rate": 4.597560975609756e-05, + "loss": 1.479016571044922, + "step": 100 + }, + { + "epoch": 1.6285714285714286, + "grad_norm": 0.20660454034805298, + "learning_rate": 4.1910569105691064e-05, + "loss": 0.8833919525146484, + "step": 200 + }, + { + "epoch": 2.440816326530612, + "grad_norm": 0.19642682373523712, + "learning_rate": 3.784552845528456e-05, + "loss": 0.8421613311767578, + "step": 300 + }, + { + "epoch": 3.253061224489796, + "grad_norm": 0.1837856024503708, + "learning_rate": 3.378048780487805e-05, + "loss": 0.8228292083740234, + "step": 400 + }, + { + "epoch": 4.0653061224489795, + "grad_norm": 0.1759372353553772, + "learning_rate": 2.9715447154471547e-05, + "loss": 0.8085212707519531, + "step": 500 + }, + { + "epoch": 4.881632653061224, + "grad_norm": 0.17737002670764923, + "learning_rate": 2.5650406504065045e-05, + "loss": 0.800329818725586, + "step": 600 + }, + { + "epoch": 5.6938775510204085, + "grad_norm": 0.1900816112756729, + "learning_rate": 2.1585365853658537e-05, + "loss": 0.7936624145507812, + "step": 700 + }, + { + "epoch": 6.506122448979592, + "grad_norm": 0.16500335931777954, + "learning_rate": 1.7520325203252034e-05, + "loss": 0.7881707763671875, + "step": 800 + }, + { + "epoch": 7.318367346938776, + "grad_norm": 0.1695879101753235, + "learning_rate": 1.3455284552845529e-05, + "loss": 0.7837516784667968, + "step": 900 + } + ], + "logging_steps": 100, + "max_steps": 1230, + "num_input_tokens_seen": 0, + "num_train_epochs": 10, + "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": 463891553058816.0, + "train_batch_size": 8, + "trial_name": null, + "trial_params": null +} diff --git a/hyperparameter/n3/realtabformer/rtf-n3-20260505_023112/rtf_checkpoints/checkpoint-984/training_args.bin b/hyperparameter/n3/realtabformer/rtf-n3-20260505_023112/rtf_checkpoints/checkpoint-984/training_args.bin new file mode 100644 index 0000000000000000000000000000000000000000..95761c9b711780eb4f42f7be348858e3a996db4c --- /dev/null +++ b/hyperparameter/n3/realtabformer/rtf-n3-20260505_023112/rtf_checkpoints/checkpoint-984/training_args.bin @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:9fd0ce7594132050805cad78976d67a632518b52037b36e6ef2977b2ee2740a7 +size 5201 diff --git a/hyperparameter/n3/realtabformer/rtf-n3-20260505_023112/run_config.json b/hyperparameter/n3/realtabformer/rtf-n3-20260505_023112/run_config.json new file mode 100644 index 0000000000000000000000000000000000000000..3887c52ebb19803ca0b6452194e8885f9c6de149 --- /dev/null +++ b/hyperparameter/n3/realtabformer/rtf-n3-20260505_023112/run_config.json @@ -0,0 +1,40 @@ +{ + "schema_version": 1, + "recorded_at": "2026-05-05T02:31:12", + "dataset_id": "n3", + "model": "realtabformer", + "work_dir": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/n3/realtabformer/rtf-n3-20260505_023112", + "dataset_source_requested": "new", + "dataset_source_resolved": "new", + "cli_args": { + "model": "realtabformer", + "dataset": "n3", + "dataset_source": "new", + "train": true, + "generate": true, + "num_rows": 0, + "epochs": 10, + "output_dir": null, + "model_dir": null, + "work_dir": null, + "resume": false, + "no_stats": false + }, + "resolved": { + "num_rows": 3918, + "model_path": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/n3/realtabformer/rtf-n3-20260505_023112/models_10epochs", + "output_csv": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/n3/realtabformer/rtf-n3-20260505_023112/rtf-n3-3918-20260505_023316.csv" + }, + "input_artifacts": { + "public_gate_report": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/n3/realtabformer/rtf-n3-20260505_023112/public_gate/public_gate_report.json", + "public_manifest": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/n3/realtabformer/rtf-n3-20260505_023112/public_gate/staged_input_manifest.json", + "model_manifest": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/n3/realtabformer/rtf-n3-20260505_023112/staged/realtabformer/model_input_manifest.json", + "train_csv": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/n3/realtabformer/rtf-n3-20260505_023112/staged/public/train.csv", + "features_json": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/n3/realtabformer/rtf-n3-20260505_023112/staged/public/staged_features.json", + "target_column": "quality", + "task_type": "classification" + }, + "env_overrides": { + "BENCHMARK_REALTABFORMER_GPUS": "device=3" + } +} \ No newline at end of file diff --git a/hyperparameter/n3/realtabformer/rtf-n3-20260505_023112/runtime_result.json b/hyperparameter/n3/realtabformer/rtf-n3-20260505_023112/runtime_result.json new file mode 100644 index 0000000000000000000000000000000000000000..4a72707570c4dc619084106e6e8990d63f3c13e9 --- /dev/null +++ b/hyperparameter/n3/realtabformer/rtf-n3-20260505_023112/runtime_result.json @@ -0,0 +1,27 @@ +{ + "dataset_id": "n3", + "model": "realtabformer", + "run_id": "rtf-n3-20260505_023112", + "public_gate_status": "pass", + "adapter_ready_status": "pass", + "train_status": "success", + "generate_status": "success", + "reason_code": null, + "reason_detail": null, + "artifacts": { + "synthetic_csv": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/n3/realtabformer/rtf-n3-20260505_023112/rtf-n3-3918-20260505_023316.csv", + "model_path": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/n3/realtabformer/rtf-n3-20260505_023112/models_10epochs" + }, + "timings": { + "train": { + "started_at": "2026-05-05T02:31:12", + "ended_at": "2026-05-05T02:33:16", + "duration_sec": 124.103 + }, + "generate": { + "started_at": "2026-05-05T02:33:16", + "ended_at": "2026-05-05T02:34:34", + "duration_sec": 78.009 + } + } +} \ No newline at end of file diff --git a/hyperparameter/n3/realtabformer/rtf-n3-20260505_023112/staged/public/staged_features.json b/hyperparameter/n3/realtabformer/rtf-n3-20260505_023112/staged/public/staged_features.json new file mode 100644 index 0000000000000000000000000000000000000000..08fe4d766d091d2f2ddba724a16b9509cbe4c390 --- /dev/null +++ b/hyperparameter/n3/realtabformer/rtf-n3-20260505_023112/staged/public/staged_features.json @@ -0,0 +1,62 @@ +[ + { + "feature_name": "fixed acidity", + "data_type": "continuous", + "is_target": false + }, + { + "feature_name": "volatile acidity", + "data_type": "continuous", + "is_target": false + }, + { + "feature_name": "citric acid", + "data_type": "continuous", + "is_target": false + }, + { + "feature_name": "residual sugar", + "data_type": "continuous", + "is_target": false + }, + { + "feature_name": "chlorides", + "data_type": "continuous", + "is_target": false + }, + { + "feature_name": "free sulfur dioxide", + "data_type": "continuous", + "is_target": false + }, + { + "feature_name": "total sulfur dioxide", + "data_type": "continuous", + "is_target": false + }, + { + "feature_name": "density", + "data_type": "continuous", + "is_target": false + }, + { + "feature_name": "pH", + "data_type": "continuous", + "is_target": false + }, + { + "feature_name": "sulphates", + "data_type": "continuous", + "is_target": false + }, + { + "feature_name": "alcohol", + "data_type": "continuous", + "is_target": false + }, + { + "feature_name": "quality", + "data_type": "continuous", + "is_target": true + } +] \ No newline at end of file diff --git a/hyperparameter/n3/realtabformer/rtf-n3-20260505_023112/staged/public/test.csv b/hyperparameter/n3/realtabformer/rtf-n3-20260505_023112/staged/public/test.csv new file mode 100644 index 0000000000000000000000000000000000000000..db5cd50d3746410ea470625fa2ba2c8e9775cc0d --- /dev/null +++ b/hyperparameter/n3/realtabformer/rtf-n3-20260505_023112/staged/public/test.csv @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:19e107152a94432e2a37ff045c00cfe35e1be30208b1553080d7dd0ede256d3b +size 28944 diff --git a/hyperparameter/n3/realtabformer/rtf-n3-20260505_023112/staged/public/train.csv b/hyperparameter/n3/realtabformer/rtf-n3-20260505_023112/staged/public/train.csv new file mode 100644 index 0000000000000000000000000000000000000000..87ca26726fe82ccbaa397919305b043c17eb374e --- /dev/null +++ b/hyperparameter/n3/realtabformer/rtf-n3-20260505_023112/staged/public/train.csv @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:7813c8cca73ba4bfc6559215257b341c21e459980ad17ae6ddc809306bc9a0b9 +size 229945 diff --git a/hyperparameter/n3/realtabformer/rtf-n3-20260505_023112/staged/public/val.csv b/hyperparameter/n3/realtabformer/rtf-n3-20260505_023112/staged/public/val.csv new file mode 100644 index 0000000000000000000000000000000000000000..6acf84c76c47093b513c46d5503972a2dff275c0 --- /dev/null +++ b/hyperparameter/n3/realtabformer/rtf-n3-20260505_023112/staged/public/val.csv @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:cf5979d9675567d9d6642640c9b84fc6c49e492604144723c30f50516c05cee6 +size 28791 diff --git a/hyperparameter/n3/realtabformer/rtf-n3-20260505_023112/staged/realtabformer/adapter_report.json b/hyperparameter/n3/realtabformer/rtf-n3-20260505_023112/staged/realtabformer/adapter_report.json new file mode 100644 index 0000000000000000000000000000000000000000..4466c7b6f2a3151aea720f2ded1337347745a964 --- /dev/null +++ b/hyperparameter/n3/realtabformer/rtf-n3-20260505_023112/staged/realtabformer/adapter_report.json @@ -0,0 +1,7 @@ +{ + "adapter_ready_status": "pass", + "adapter_fail_reason_code": null, + "adapter_fail_detail": null, + "adapter_transforms_applied": [], + "model_input_manifest": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/n3/realtabformer/rtf-n3-20260505_023112/staged/realtabformer/model_input_manifest.json" +} \ No newline at end of file diff --git a/hyperparameter/n3/realtabformer/rtf-n3-20260505_023112/staged/realtabformer/adapter_transforms_applied.json b/hyperparameter/n3/realtabformer/rtf-n3-20260505_023112/staged/realtabformer/adapter_transforms_applied.json new file mode 100644 index 0000000000000000000000000000000000000000..0637a088a01e8ddab3bf3fa98dbe804cbde1a0dc --- /dev/null +++ b/hyperparameter/n3/realtabformer/rtf-n3-20260505_023112/staged/realtabformer/adapter_transforms_applied.json @@ -0,0 +1 @@ +[] \ No newline at end of file diff --git a/hyperparameter/n3/realtabformer/rtf-n3-20260505_023112/staged/realtabformer/model_input_manifest.json b/hyperparameter/n3/realtabformer/rtf-n3-20260505_023112/staged/realtabformer/model_input_manifest.json new file mode 100644 index 0000000000000000000000000000000000000000..c994943d6e3ee644c955500987a0c55624bfe80c --- /dev/null +++ b/hyperparameter/n3/realtabformer/rtf-n3-20260505_023112/staged/realtabformer/model_input_manifest.json @@ -0,0 +1,266 @@ +{ + "dataset_id": "n3", + "model": "realtabformer", + "target_column": "quality", + "task_type": "classification", + "column_schema": [ + { + "name": "fixed acidity", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 66, + "unique_ratio": 0.016845, + "example_values": [ + "7.1", + "8.5", + "6.4", + "6.8", + "7.6" + ] + } + }, + { + "name": "volatile acidity", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 121, + "unique_ratio": 0.030883, + "example_values": [ + "0.31", + "0.21", + "0.24", + "0.43", + "0.27" + ] + } + }, + { + "name": "citric acid", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 85, + "unique_ratio": 0.021695, + "example_values": [ + "0.17", + "0.41", + "0.31", + "0.25", + "0.3" + ] + } + }, + { + "name": "residual sugar", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 296, + "unique_ratio": 0.075549, + "example_values": [ + "1", + "4.3", + "2.8", + "13", + "12.9" + ] + } + }, + { + "name": "chlorides", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 147, + "unique_ratio": 0.037519, + "example_values": [ + "0.042", + "0.036", + "0.038", + "0.047", + "0.033" + ] + } + }, + { + "name": "free sulfur dioxide", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 120, + "unique_ratio": 0.030628, + "example_values": [ + "21", + "24", + "41", + "43", + "69" + ] + } + }, + { + "name": "total sulfur dioxide", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 244, + "unique_ratio": 0.062277, + "example_values": [ + "144", + "99", + "114", + "132", + "160" + ] + } + }, + { + "name": "density", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 839, + "unique_ratio": 0.21414, + "example_values": [ + "0.99304", + "0.9947", + "0.99155", + "0.98975", + "0.99705" + ] + } + }, + { + "name": "pH", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 100, + "unique_ratio": 0.025523, + "example_values": [ + "3.13", + "3.18", + "3.37", + "3.21", + "3.16" + ] + } + }, + { + "name": "sulphates", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 78, + "unique_ratio": 0.019908, + "example_values": [ + "0.4", + "0.53", + "0.66", + "0.47", + "0.5" + ] + } + }, + { + "name": "alcohol", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 97, + "unique_ratio": 0.024758, + "example_values": [ + "9.6", + "9.7", + "11.7", + "13.4", + "8.8" + ] + } + }, + { + "name": "quality", + "role": "target", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 7, + "unique_ratio": 0.001787, + "example_values": [ + "5", + "6", + "7", + "8", + "3" + ] + } + } + ], + "public_manifest": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/n3/realtabformer/rtf-n3-20260505_023112/public_gate/staged_input_manifest.json", + "train_csv": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/n3/realtabformer/rtf-n3-20260505_023112/staged/public/train.csv", + "val_csv": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/n3/realtabformer/rtf-n3-20260505_023112/staged/public/val.csv", + "test_csv": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/n3/realtabformer/rtf-n3-20260505_023112/staged/public/test.csv", + "features_json": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/n3/realtabformer/rtf-n3-20260505_023112/staged/public/staged_features.json", + "public_gate_report": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/n3/realtabformer/rtf-n3-20260505_023112/public_gate/public_gate_report.json" +} \ No newline at end of file diff --git a/hyperparameter/n3/realtabformer/rtf-n3-20260505_023112/train_20260505_023112.log b/hyperparameter/n3/realtabformer/rtf-n3-20260505_023112/train_20260505_023112.log new file mode 100644 index 0000000000000000000000000000000000000000..95630465c1720780c3c85ccea3f4c539ee4b189d --- /dev/null +++ b/hyperparameter/n3/realtabformer/rtf-n3-20260505_023112/train_20260505_023112.log @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:b19f110d8d0b085bafd03a234cdc2358b7b241fe50fb8e50fb266a6b1114125f +size 48402 diff --git a/hyperparameter/n3/realtabformer/rtf-n3-20260505_023447/gen_20260505_023728.log b/hyperparameter/n3/realtabformer/rtf-n3-20260505_023447/gen_20260505_023728.log new file mode 100644 index 0000000000000000000000000000000000000000..4ced19f2af77a579530103993a1785555c55e1a7 --- /dev/null +++ b/hyperparameter/n3/realtabformer/rtf-n3-20260505_023447/gen_20260505_023728.log @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:ace9c1da79dc436149ede6d4f525761fe9475abfedd7030b7fa668831cbe04a5 +size 2529 diff --git a/hyperparameter/n3/realtabformer/rtf-n3-20260505_023447/input_snapshot.json b/hyperparameter/n3/realtabformer/rtf-n3-20260505_023447/input_snapshot.json new file mode 100644 index 0000000000000000000000000000000000000000..db9a330f8472dedc095e195fd3a6da0d66be3b17 --- /dev/null +++ b/hyperparameter/n3/realtabformer/rtf-n3-20260505_023447/input_snapshot.json @@ -0,0 +1,36 @@ +{ + "dataset_id": "n3", + "model": "realtabformer", + "inputs": { + "train_csv": { + "path": "/data/jialinzhang/SynthesizePipeline-server/DatasetNew/n3/n3-train.csv", + "exists": true, + "size": 211519, + "sha256": "2160a06db2fea02adb0ebb79d8d853bd2544580be301e71f6e8deeb1489a9009" + }, + "val_csv": { + "path": "/data/jialinzhang/SynthesizePipeline-server/DatasetNew/n3/n3-val.csv", + "exists": true, + "size": 26499, + "sha256": "d5ccfee07dfa9e7bdee5bb87642b43828e09f74c6cc0266a3d19d9feaa83106e" + }, + "test_csv": { + "path": "/data/jialinzhang/SynthesizePipeline-server/DatasetNew/n3/n3-test.csv", + "exists": true, + "size": 26676, + "sha256": "6f83aacb0d1747b95e287352a7fff5d9d65a1c127b773852346c68485c4ede47" + }, + "profile_json": { + "path": "/data/jialinzhang/SynthesizePipeline-server/DatasetNew/artifacts/data_core/tabular/n3/n3-dataset_profile.json", + "exists": true, + "size": 5235, + "sha256": "23d2e5904a2ca90cbf8d6e3c75887681721e9b90cc705c31a680c11513d0c46f" + }, + "contract_json": { + "path": "/data/jialinzhang/SynthesizePipeline-server/DatasetNew/artifacts/data_core/tabular/n3/n3-dataset_contract_v1.json", + "exists": true, + "size": 6281, + "sha256": "c0cc56f5fe28e1b65927255c6e3c2b0e9479862c2ec6f2fea1664da36c9a3a09" + } + } +} \ No newline at end of file diff --git a/hyperparameter/n3/realtabformer/rtf-n3-20260505_023447/models_15epochs/id000017779198461681285120/rtf_config.json b/hyperparameter/n3/realtabformer/rtf-n3-20260505_023447/models_15epochs/id000017779198461681285120/rtf_config.json new file mode 100644 index 0000000000000000000000000000000000000000..98a9931859ffb6df15d0e2f76cd62f450d0763d1 --- /dev/null +++ b/hyperparameter/n3/realtabformer/rtf-n3-20260505_023447/models_15epochs/id000017779198461681285120/rtf_config.json @@ -0,0 +1 @@ +{"model_type": "tabular", "tabular_config": {"transformers_version": "5.5.3", "architectures": ["GPT2LMHeadModel"], "output_hidden_states": false, "return_dict": true, "dtype": "float32", "chunk_size_feed_forward": 0, "is_encoder_decoder": false, "id2label": {"0": "LABEL_0", "1": "LABEL_1"}, "label2id": {"LABEL_0": 0, "LABEL_1": 1}, "problem_type": null, "vocab_size": 304, "n_positions": 1024, "n_embd": 768, "n_layer": 6, "n_head": 12, "n_inner": null, "activation_function": "gelu_new", "resid_pdrop": 0.1, "embd_pdrop": 0.1, "attn_pdrop": 0.1, "layer_norm_epsilon": 1e-05, "initializer_range": 0.02, "summary_type": "cls_index", "summary_use_proj": true, "summary_activation": null, "summary_proj_to_labels": true, "summary_first_dropout": 0.1, "scale_attn_weights": true, "use_cache": false, "bos_token_id": 5, "eos_token_id": 6, "pad_token_id": null, "scale_attn_by_inverse_layer_idx": false, "reorder_and_upcast_attn": false, "add_cross_attention": false, "tie_word_embeddings": true, "_name_or_path": "", "model_type": "gpt2", "output_attentions": false}, "checkpoints_dir": "rtf_checkpoints", "samples_save_dir": "rtf_samples", "full_save_dir": "rtf_full_save", "epochs": 15, "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": 15, "per_device_train_batch_size": 8, "per_device_eval_batch_size": 8, "gradient_accumulation_steps": 4, "remove_unused_columns": true, "logging_steps": 100, "save_steps": 100, "eval_steps": 100, "load_best_model_at_end": false, "save_total_limit": 6, "optim": "adamw_torch"}, "train_size": 1, "mask_rate": 0, "columns": ["fixed acidity", "volatile acidity", "citric acid", "residual sugar", "chlorides", "free sulfur dioxide", "total sulfur dioxide", "density", "pH", "sulphates", "alcohol", "quality"], "column_dtypes": {"fixed acidity": "float64", "volatile acidity": "float64", "citric acid": "float64", "residual sugar": "float64", "chlorides": "float64", "free sulfur dioxide": "float64", "total sulfur dioxide": "float64", "density": "float64", "pH": "float64", "sulphates": "float64", "alcohol": "float64", "quality": "int64"}, "column_has_missing": {"fixed acidity": false, "volatile acidity": false, "citric acid": false, "residual sugar": false, "chlorides": false, "free sulfur dioxide": false, "total sulfur dioxide": false, "density": false, "pH": false, "sulphates": false, "alcohol": false, "quality": false}, "drop_na_cols": ["fixed acidity", "volatile acidity", "citric acid", "residual sugar", "chlorides", "free sulfur dioxide", "total sulfur dioxide", "density", "pH", "sulphates", "alcohol", "quality"], "processed_columns": ["00___NUMERIC___fixed acidity_00", "00___NUMERIC___fixed acidity_01", "00___NUMERIC___fixed acidity_02", "00___NUMERIC___fixed acidity_03", "00___NUMERIC___fixed acidity_04", "01___NUMERIC___volatile acidity_00", "01___NUMERIC___volatile acidity_01", "01___NUMERIC___volatile acidity_02", "01___NUMERIC___volatile acidity_03", "01___NUMERIC___volatile acidity_04", "02___NUMERIC___citric acid_00", "02___NUMERIC___citric acid_01", "02___NUMERIC___citric acid_02", "02___NUMERIC___citric acid_03", "03___NUMERIC___residual sugar_00", "03___NUMERIC___residual sugar_01", "03___NUMERIC___residual sugar_02", "03___NUMERIC___residual sugar_03", "03___NUMERIC___residual sugar_04", "04___NUMERIC___chlorides_00", "04___NUMERIC___chlorides_01", "04___NUMERIC___chlorides_02", "04___NUMERIC___chlorides_03", "04___NUMERIC___chlorides_04", "05___NUMERIC___free sulfur dioxide_00", "05___NUMERIC___free sulfur dioxide_01", "05___NUMERIC___free sulfur dioxide_02", "05___NUMERIC___free sulfur dioxide_03", "05___NUMERIC___free sulfur dioxide_04", "06___NUMERIC___total sulfur dioxide_00", "06___NUMERIC___total sulfur dioxide_01", "06___NUMERIC___total sulfur dioxide_02", "06___NUMERIC___total sulfur dioxide_03", "06___NUMERIC___total sulfur dioxide_04", "07___NUMERIC___density_00", "07___NUMERIC___density_01", "07___NUMERIC___density_02", "07___NUMERIC___density_03", "07___NUMERIC___density_04", "07___NUMERIC___density_05", "08___NUMERIC___pH_00", "08___NUMERIC___pH_01", "08___NUMERIC___pH_02", "08___NUMERIC___pH_03", "09___NUMERIC___sulphates_00", "09___NUMERIC___sulphates_01", "09___NUMERIC___sulphates_02", "09___NUMERIC___sulphates_03", "10___NUMERIC___alcohol_00", "10___NUMERIC___alcohol_01", "10___NUMERIC___alcohol_02", "10___NUMERIC___alcohol_03", "10___NUMERIC___alcohol_04", "10___NUMERIC___alcohol_05", "10___NUMERIC___alcohol_06", "11___NUMERIC___quality_00"], "numeric_columns": ["fixed acidity", "volatile acidity", "citric acid", "residual sugar", "chlorides", "free sulfur dioxide", "total sulfur dioxide", "density", "pH", "sulphates", "alcohol", "quality"], "datetime_columns": [], "vocab": {"id2token": {"0": "[UNK]", "1": "[SEP]", "2": "[PAD]", "3": "[CLS]", "4": "[MASK]", "5": "[BOS]", "6": "[EOS]", "7": "[BMEM]", "8": "[EMEM]", "9": "[RMASK]", "10": "[SPTYPE]", "11": "00___NUMERIC___fixed acidity_00___0", "12": "00___NUMERIC___fixed acidity_00___1", "13": "00___NUMERIC___fixed acidity_01___0", "14": "00___NUMERIC___fixed acidity_01___1", "15": "00___NUMERIC___fixed acidity_01___3", "16": "00___NUMERIC___fixed acidity_01___4", "17": "00___NUMERIC___fixed acidity_01___5", "18": "00___NUMERIC___fixed acidity_01___6", "19": "00___NUMERIC___fixed acidity_01___7", "20": "00___NUMERIC___fixed acidity_01___8", "21": "00___NUMERIC___fixed acidity_01___9", "22": "00___NUMERIC___fixed acidity_02___.", "23": "00___NUMERIC___fixed acidity_03___0", "24": "00___NUMERIC___fixed acidity_03___1", "25": "00___NUMERIC___fixed acidity_03___2", "26": "00___NUMERIC___fixed acidity_03___3", "27": "00___NUMERIC___fixed acidity_03___4", "28": "00___NUMERIC___fixed acidity_03___5", "29": "00___NUMERIC___fixed acidity_03___6", "30": "00___NUMERIC___fixed acidity_03___7", "31": "00___NUMERIC___fixed acidity_03___8", "32": "00___NUMERIC___fixed acidity_03___9", "33": "00___NUMERIC___fixed acidity_04___0", "34": "00___NUMERIC___fixed acidity_04___5", "35": "01___NUMERIC___volatile acidity_00___0", "36": "01___NUMERIC___volatile acidity_00___1", "37": "01___NUMERIC___volatile acidity_01___.", "38": "01___NUMERIC___volatile acidity_02___0", "39": "01___NUMERIC___volatile acidity_02___1", "40": "01___NUMERIC___volatile acidity_02___2", "41": "01___NUMERIC___volatile acidity_02___3", "42": "01___NUMERIC___volatile acidity_02___4", "43": "01___NUMERIC___volatile acidity_02___5", "44": "01___NUMERIC___volatile acidity_02___6", "45": "01___NUMERIC___volatile acidity_02___7", "46": "01___NUMERIC___volatile acidity_02___8", "47": "01___NUMERIC___volatile acidity_02___9", "48": "01___NUMERIC___volatile acidity_03___0", "49": "01___NUMERIC___volatile acidity_03___1", "50": "01___NUMERIC___volatile acidity_03___2", "51": "01___NUMERIC___volatile acidity_03___3", "52": "01___NUMERIC___volatile acidity_03___4", "53": "01___NUMERIC___volatile acidity_03___5", "54": "01___NUMERIC___volatile acidity_03___6", "55": "01___NUMERIC___volatile acidity_03___7", "56": "01___NUMERIC___volatile acidity_03___8", "57": "01___NUMERIC___volatile acidity_03___9", "58": "01___NUMERIC___volatile acidity_04___0", "59": "01___NUMERIC___volatile acidity_04___5", "60": "02___NUMERIC___citric acid_00___0", "61": "02___NUMERIC___citric acid_00___1", "62": "02___NUMERIC___citric acid_01___.", "63": "02___NUMERIC___citric acid_02___0", "64": "02___NUMERIC___citric acid_02___1", "65": "02___NUMERIC___citric acid_02___2", "66": "02___NUMERIC___citric acid_02___3", "67": "02___NUMERIC___citric acid_02___4", "68": "02___NUMERIC___citric acid_02___5", "69": "02___NUMERIC___citric acid_02___6", "70": "02___NUMERIC___citric acid_02___7", "71": "02___NUMERIC___citric acid_02___8", "72": "02___NUMERIC___citric acid_02___9", "73": "02___NUMERIC___citric acid_03___0", "74": "02___NUMERIC___citric acid_03___1", "75": "02___NUMERIC___citric acid_03___2", "76": "02___NUMERIC___citric acid_03___3", "77": "02___NUMERIC___citric acid_03___4", "78": "02___NUMERIC___citric acid_03___5", "79": "02___NUMERIC___citric acid_03___6", "80": "02___NUMERIC___citric acid_03___7", "81": "02___NUMERIC___citric acid_03___8", "82": "02___NUMERIC___citric acid_03___9", "83": "03___NUMERIC___residual sugar_00___0", "84": "03___NUMERIC___residual sugar_00___1", "85": "03___NUMERIC___residual sugar_00___2", "86": "03___NUMERIC___residual sugar_00___3", "87": "03___NUMERIC___residual sugar_00___6", "88": "03___NUMERIC___residual sugar_01___0", "89": "03___NUMERIC___residual sugar_01___1", "90": "03___NUMERIC___residual sugar_01___2", "91": "03___NUMERIC___residual sugar_01___3", "92": "03___NUMERIC___residual sugar_01___4", "93": "03___NUMERIC___residual sugar_01___5", "94": "03___NUMERIC___residual sugar_01___6", "95": "03___NUMERIC___residual sugar_01___7", "96": "03___NUMERIC___residual sugar_01___8", "97": "03___NUMERIC___residual sugar_01___9", "98": "03___NUMERIC___residual sugar_02___.", "99": "03___NUMERIC___residual sugar_03___0", "100": "03___NUMERIC___residual sugar_03___1", "101": "03___NUMERIC___residual sugar_03___2", "102": "03___NUMERIC___residual sugar_03___3", "103": "03___NUMERIC___residual sugar_03___4", "104": "03___NUMERIC___residual sugar_03___5", "105": "03___NUMERIC___residual sugar_03___6", "106": "03___NUMERIC___residual sugar_03___7", "107": "03___NUMERIC___residual sugar_03___8", "108": "03___NUMERIC___residual sugar_03___9", "109": "03___NUMERIC___residual sugar_04___0", "110": "03___NUMERIC___residual sugar_04___5", "111": "04___NUMERIC___chlorides_00___0", "112": "04___NUMERIC___chlorides_01___.", "113": "04___NUMERIC___chlorides_02___0", "114": "04___NUMERIC___chlorides_02___1", "115": "04___NUMERIC___chlorides_02___2", "116": "04___NUMERIC___chlorides_02___3", "117": "04___NUMERIC___chlorides_03___0", "118": "04___NUMERIC___chlorides_03___1", "119": "04___NUMERIC___chlorides_03___2", "120": "04___NUMERIC___chlorides_03___3", "121": "04___NUMERIC___chlorides_03___4", "122": "04___NUMERIC___chlorides_03___5", "123": "04___NUMERIC___chlorides_03___6", "124": "04___NUMERIC___chlorides_03___7", "125": "04___NUMERIC___chlorides_03___8", "126": "04___NUMERIC___chlorides_03___9", "127": "04___NUMERIC___chlorides_04___0", "128": "04___NUMERIC___chlorides_04___1", "129": "04___NUMERIC___chlorides_04___2", "130": "04___NUMERIC___chlorides_04___3", "131": "04___NUMERIC___chlorides_04___4", "132": "04___NUMERIC___chlorides_04___5", "133": "04___NUMERIC___chlorides_04___6", "134": "04___NUMERIC___chlorides_04___7", "135": "04___NUMERIC___chlorides_04___8", "136": "04___NUMERIC___chlorides_04___9", "137": "05___NUMERIC___free sulfur dioxide_00___0", "138": "05___NUMERIC___free sulfur dioxide_00___1", "139": "05___NUMERIC___free sulfur dioxide_01___0", "140": "05___NUMERIC___free sulfur dioxide_01___1", "141": "05___NUMERIC___free sulfur dioxide_01___2", "142": "05___NUMERIC___free sulfur dioxide_01___3", "143": "05___NUMERIC___free sulfur dioxide_01___4", "144": "05___NUMERIC___free sulfur dioxide_01___5", "145": "05___NUMERIC___free sulfur dioxide_01___6", "146": "05___NUMERIC___free sulfur dioxide_01___7", "147": "05___NUMERIC___free sulfur dioxide_01___8", "148": "05___NUMERIC___free sulfur dioxide_01___9", "149": "05___NUMERIC___free sulfur dioxide_02___0", "150": "05___NUMERIC___free sulfur dioxide_02___1", "151": "05___NUMERIC___free sulfur dioxide_02___2", "152": "05___NUMERIC___free sulfur dioxide_02___3", "153": "05___NUMERIC___free sulfur dioxide_02___4", "154": "05___NUMERIC___free sulfur dioxide_02___5", "155": "05___NUMERIC___free sulfur dioxide_02___6", "156": "05___NUMERIC___free sulfur dioxide_02___7", "157": "05___NUMERIC___free sulfur dioxide_02___8", "158": "05___NUMERIC___free sulfur dioxide_02___9", "159": "05___NUMERIC___free sulfur dioxide_03___.", "160": "05___NUMERIC___free sulfur dioxide_04___0", "161": "05___NUMERIC___free sulfur dioxide_04___5", "162": "06___NUMERIC___total sulfur dioxide_00___0", "163": "06___NUMERIC___total sulfur dioxide_00___1", "164": "06___NUMERIC___total sulfur dioxide_00___2", "165": "06___NUMERIC___total sulfur dioxide_00___3", "166": "06___NUMERIC___total sulfur dioxide_01___0", "167": "06___NUMERIC___total sulfur dioxide_01___1", "168": "06___NUMERIC___total sulfur dioxide_01___2", "169": "06___NUMERIC___total sulfur dioxide_01___3", "170": "06___NUMERIC___total sulfur dioxide_01___4", "171": "06___NUMERIC___total sulfur dioxide_01___5", "172": "06___NUMERIC___total sulfur dioxide_01___6", "173": "06___NUMERIC___total sulfur dioxide_01___7", "174": "06___NUMERIC___total sulfur dioxide_01___8", "175": "06___NUMERIC___total sulfur dioxide_01___9", "176": "06___NUMERIC___total sulfur dioxide_02___0", "177": "06___NUMERIC___total sulfur dioxide_02___1", "178": "06___NUMERIC___total sulfur dioxide_02___2", "179": "06___NUMERIC___total sulfur dioxide_02___3", "180": "06___NUMERIC___total sulfur dioxide_02___4", "181": "06___NUMERIC___total sulfur dioxide_02___5", "182": "06___NUMERIC___total sulfur dioxide_02___6", "183": "06___NUMERIC___total sulfur dioxide_02___7", "184": "06___NUMERIC___total sulfur dioxide_02___8", "185": "06___NUMERIC___total sulfur dioxide_02___9", "186": "06___NUMERIC___total sulfur dioxide_03___.", "187": "06___NUMERIC___total sulfur dioxide_04___0", "188": "06___NUMERIC___total sulfur dioxide_04___5", "189": "07___NUMERIC___density_00___0", "190": "07___NUMERIC___density_00___1", "191": "07___NUMERIC___density_01___.", "192": "07___NUMERIC___density_02___0", "193": "07___NUMERIC___density_02___9", "194": "07___NUMERIC___density_03___0", "195": "07___NUMERIC___density_03___1", "196": "07___NUMERIC___density_03___3", "197": "07___NUMERIC___density_03___8", "198": "07___NUMERIC___density_03___9", "199": "07___NUMERIC___density_04___0", "200": "07___NUMERIC___density_04___1", "201": "07___NUMERIC___density_04___2", "202": "07___NUMERIC___density_04___3", "203": "07___NUMERIC___density_04___4", "204": "07___NUMERIC___density_04___5", "205": "07___NUMERIC___density_04___6", "206": "07___NUMERIC___density_04___7", "207": "07___NUMERIC___density_04___8", "208": "07___NUMERIC___density_04___9", "209": "07___NUMERIC___density_05___0", "210": "07___NUMERIC___density_05___1", "211": "07___NUMERIC___density_05___2", "212": "07___NUMERIC___density_05___3", "213": "07___NUMERIC___density_05___4", "214": "07___NUMERIC___density_05___5", "215": "07___NUMERIC___density_05___6", "216": "07___NUMERIC___density_05___7", "217": "07___NUMERIC___density_05___8", "218": "07___NUMERIC___density_05___9", "219": "08___NUMERIC___pH_00___2", "220": "08___NUMERIC___pH_00___3", "221": "08___NUMERIC___pH_01___.", "222": "08___NUMERIC___pH_02___0", "223": "08___NUMERIC___pH_02___1", "224": "08___NUMERIC___pH_02___2", "225": "08___NUMERIC___pH_02___3", "226": "08___NUMERIC___pH_02___4", "227": "08___NUMERIC___pH_02___5", "228": "08___NUMERIC___pH_02___6", "229": "08___NUMERIC___pH_02___7", "230": "08___NUMERIC___pH_02___8", "231": "08___NUMERIC___pH_02___9", "232": "08___NUMERIC___pH_03___0", "233": "08___NUMERIC___pH_03___1", "234": "08___NUMERIC___pH_03___2", "235": "08___NUMERIC___pH_03___3", "236": "08___NUMERIC___pH_03___4", "237": "08___NUMERIC___pH_03___5", "238": "08___NUMERIC___pH_03___6", "239": "08___NUMERIC___pH_03___7", "240": "08___NUMERIC___pH_03___8", "241": "08___NUMERIC___pH_03___9", "242": "09___NUMERIC___sulphates_00___0", "243": "09___NUMERIC___sulphates_00___1", "244": "09___NUMERIC___sulphates_01___.", "245": "09___NUMERIC___sulphates_02___0", "246": "09___NUMERIC___sulphates_02___2", "247": "09___NUMERIC___sulphates_02___3", "248": "09___NUMERIC___sulphates_02___4", "249": "09___NUMERIC___sulphates_02___5", "250": "09___NUMERIC___sulphates_02___6", "251": "09___NUMERIC___sulphates_02___7", "252": "09___NUMERIC___sulphates_02___8", "253": "09___NUMERIC___sulphates_02___9", "254": "09___NUMERIC___sulphates_03___0", "255": "09___NUMERIC___sulphates_03___1", "256": "09___NUMERIC___sulphates_03___2", "257": "09___NUMERIC___sulphates_03___3", "258": "09___NUMERIC___sulphates_03___4", "259": "09___NUMERIC___sulphates_03___5", "260": "09___NUMERIC___sulphates_03___6", "261": "09___NUMERIC___sulphates_03___7", "262": "09___NUMERIC___sulphates_03___8", "263": "09___NUMERIC___sulphates_03___9", "264": "10___NUMERIC___alcohol_00___0", "265": "10___NUMERIC___alcohol_00___1", "266": "10___NUMERIC___alcohol_01___0", "267": "10___NUMERIC___alcohol_01___1", "268": "10___NUMERIC___alcohol_01___2", "269": "10___NUMERIC___alcohol_01___3", "270": "10___NUMERIC___alcohol_01___4", "271": "10___NUMERIC___alcohol_01___8", "272": "10___NUMERIC___alcohol_01___9", "273": "10___NUMERIC___alcohol_02___.", "274": "10___NUMERIC___alcohol_03___0", "275": "10___NUMERIC___alcohol_03___1", "276": "10___NUMERIC___alcohol_03___2", "277": "10___NUMERIC___alcohol_03___3", "278": "10___NUMERIC___alcohol_03___4", "279": "10___NUMERIC___alcohol_03___5", "280": "10___NUMERIC___alcohol_03___6", "281": "10___NUMERIC___alcohol_03___7", "282": "10___NUMERIC___alcohol_03___8", "283": "10___NUMERIC___alcohol_03___9", "284": "10___NUMERIC___alcohol_04___0", "285": "10___NUMERIC___alcohol_04___3", "286": "10___NUMERIC___alcohol_04___4", "287": "10___NUMERIC___alcohol_04___5", "288": "10___NUMERIC___alcohol_04___6", "289": "10___NUMERIC___alcohol_04___8", "290": "10___NUMERIC___alcohol_04___9", "291": "10___NUMERIC___alcohol_05___0", "292": "10___NUMERIC___alcohol_05___3", "293": "10___NUMERIC___alcohol_05___6", "294": "10___NUMERIC___alcohol_06___0", "295": "10___NUMERIC___alcohol_06___3", "296": "10___NUMERIC___alcohol_06___7", "297": "11___NUMERIC___quality_00___3", "298": "11___NUMERIC___quality_00___4", "299": "11___NUMERIC___quality_00___5", "300": "11___NUMERIC___quality_00___6", "301": "11___NUMERIC___quality_00___7", "302": "11___NUMERIC___quality_00___8", "303": "11___NUMERIC___quality_00___9"}, "token2id": {"[UNK]": 0, "[SEP]": 1, "[PAD]": 2, "[CLS]": 3, "[MASK]": 4, "[BOS]": 5, "[EOS]": 6, "[BMEM]": 7, "[EMEM]": 8, "[RMASK]": 9, "[SPTYPE]": 10, "00___NUMERIC___fixed acidity_00___0": 11, "00___NUMERIC___fixed acidity_00___1": 12, "00___NUMERIC___fixed acidity_01___0": 13, "00___NUMERIC___fixed acidity_01___1": 14, "00___NUMERIC___fixed acidity_01___3": 15, "00___NUMERIC___fixed acidity_01___4": 16, "00___NUMERIC___fixed acidity_01___5": 17, "00___NUMERIC___fixed acidity_01___6": 18, "00___NUMERIC___fixed acidity_01___7": 19, "00___NUMERIC___fixed acidity_01___8": 20, "00___NUMERIC___fixed acidity_01___9": 21, "00___NUMERIC___fixed acidity_02___.": 22, "00___NUMERIC___fixed acidity_03___0": 23, "00___NUMERIC___fixed acidity_03___1": 24, "00___NUMERIC___fixed acidity_03___2": 25, "00___NUMERIC___fixed acidity_03___3": 26, "00___NUMERIC___fixed acidity_03___4": 27, "00___NUMERIC___fixed acidity_03___5": 28, "00___NUMERIC___fixed acidity_03___6": 29, "00___NUMERIC___fixed acidity_03___7": 30, "00___NUMERIC___fixed acidity_03___8": 31, "00___NUMERIC___fixed acidity_03___9": 32, "00___NUMERIC___fixed acidity_04___0": 33, "00___NUMERIC___fixed acidity_04___5": 34, "01___NUMERIC___volatile acidity_00___0": 35, "01___NUMERIC___volatile acidity_00___1": 36, "01___NUMERIC___volatile acidity_01___.": 37, "01___NUMERIC___volatile acidity_02___0": 38, "01___NUMERIC___volatile acidity_02___1": 39, "01___NUMERIC___volatile acidity_02___2": 40, "01___NUMERIC___volatile acidity_02___3": 41, "01___NUMERIC___volatile acidity_02___4": 42, "01___NUMERIC___volatile acidity_02___5": 43, "01___NUMERIC___volatile acidity_02___6": 44, "01___NUMERIC___volatile acidity_02___7": 45, "01___NUMERIC___volatile acidity_02___8": 46, "01___NUMERIC___volatile acidity_02___9": 47, "01___NUMERIC___volatile acidity_03___0": 48, "01___NUMERIC___volatile acidity_03___1": 49, "01___NUMERIC___volatile acidity_03___2": 50, "01___NUMERIC___volatile acidity_03___3": 51, "01___NUMERIC___volatile acidity_03___4": 52, "01___NUMERIC___volatile acidity_03___5": 53, "01___NUMERIC___volatile acidity_03___6": 54, "01___NUMERIC___volatile acidity_03___7": 55, "01___NUMERIC___volatile acidity_03___8": 56, "01___NUMERIC___volatile acidity_03___9": 57, "01___NUMERIC___volatile acidity_04___0": 58, "01___NUMERIC___volatile acidity_04___5": 59, "02___NUMERIC___citric acid_00___0": 60, "02___NUMERIC___citric acid_00___1": 61, "02___NUMERIC___citric acid_01___.": 62, "02___NUMERIC___citric acid_02___0": 63, "02___NUMERIC___citric acid_02___1": 64, "02___NUMERIC___citric acid_02___2": 65, "02___NUMERIC___citric acid_02___3": 66, "02___NUMERIC___citric acid_02___4": 67, "02___NUMERIC___citric acid_02___5": 68, "02___NUMERIC___citric acid_02___6": 69, "02___NUMERIC___citric acid_02___7": 70, "02___NUMERIC___citric acid_02___8": 71, "02___NUMERIC___citric acid_02___9": 72, "02___NUMERIC___citric acid_03___0": 73, "02___NUMERIC___citric acid_03___1": 74, "02___NUMERIC___citric acid_03___2": 75, "02___NUMERIC___citric acid_03___3": 76, "02___NUMERIC___citric acid_03___4": 77, "02___NUMERIC___citric acid_03___5": 78, "02___NUMERIC___citric acid_03___6": 79, "02___NUMERIC___citric acid_03___7": 80, "02___NUMERIC___citric acid_03___8": 81, "02___NUMERIC___citric acid_03___9": 82, "03___NUMERIC___residual sugar_00___0": 83, "03___NUMERIC___residual sugar_00___1": 84, "03___NUMERIC___residual sugar_00___2": 85, "03___NUMERIC___residual sugar_00___3": 86, "03___NUMERIC___residual sugar_00___6": 87, "03___NUMERIC___residual sugar_01___0": 88, "03___NUMERIC___residual sugar_01___1": 89, "03___NUMERIC___residual sugar_01___2": 90, "03___NUMERIC___residual sugar_01___3": 91, "03___NUMERIC___residual sugar_01___4": 92, "03___NUMERIC___residual sugar_01___5": 93, "03___NUMERIC___residual sugar_01___6": 94, "03___NUMERIC___residual sugar_01___7": 95, "03___NUMERIC___residual sugar_01___8": 96, "03___NUMERIC___residual sugar_01___9": 97, "03___NUMERIC___residual sugar_02___.": 98, "03___NUMERIC___residual sugar_03___0": 99, "03___NUMERIC___residual sugar_03___1": 100, "03___NUMERIC___residual sugar_03___2": 101, "03___NUMERIC___residual sugar_03___3": 102, "03___NUMERIC___residual sugar_03___4": 103, "03___NUMERIC___residual sugar_03___5": 104, "03___NUMERIC___residual sugar_03___6": 105, "03___NUMERIC___residual sugar_03___7": 106, "03___NUMERIC___residual sugar_03___8": 107, "03___NUMERIC___residual sugar_03___9": 108, "03___NUMERIC___residual sugar_04___0": 109, "03___NUMERIC___residual sugar_04___5": 110, "04___NUMERIC___chlorides_00___0": 111, "04___NUMERIC___chlorides_01___.": 112, "04___NUMERIC___chlorides_02___0": 113, "04___NUMERIC___chlorides_02___1": 114, "04___NUMERIC___chlorides_02___2": 115, "04___NUMERIC___chlorides_02___3": 116, "04___NUMERIC___chlorides_03___0": 117, "04___NUMERIC___chlorides_03___1": 118, "04___NUMERIC___chlorides_03___2": 119, "04___NUMERIC___chlorides_03___3": 120, "04___NUMERIC___chlorides_03___4": 121, "04___NUMERIC___chlorides_03___5": 122, "04___NUMERIC___chlorides_03___6": 123, "04___NUMERIC___chlorides_03___7": 124, "04___NUMERIC___chlorides_03___8": 125, "04___NUMERIC___chlorides_03___9": 126, "04___NUMERIC___chlorides_04___0": 127, "04___NUMERIC___chlorides_04___1": 128, "04___NUMERIC___chlorides_04___2": 129, "04___NUMERIC___chlorides_04___3": 130, "04___NUMERIC___chlorides_04___4": 131, "04___NUMERIC___chlorides_04___5": 132, "04___NUMERIC___chlorides_04___6": 133, "04___NUMERIC___chlorides_04___7": 134, "04___NUMERIC___chlorides_04___8": 135, "04___NUMERIC___chlorides_04___9": 136, "05___NUMERIC___free sulfur dioxide_00___0": 137, "05___NUMERIC___free sulfur dioxide_00___1": 138, "05___NUMERIC___free sulfur dioxide_01___0": 139, "05___NUMERIC___free sulfur dioxide_01___1": 140, "05___NUMERIC___free sulfur dioxide_01___2": 141, "05___NUMERIC___free sulfur dioxide_01___3": 142, "05___NUMERIC___free sulfur dioxide_01___4": 143, "05___NUMERIC___free sulfur dioxide_01___5": 144, "05___NUMERIC___free sulfur dioxide_01___6": 145, "05___NUMERIC___free sulfur dioxide_01___7": 146, "05___NUMERIC___free sulfur dioxide_01___8": 147, "05___NUMERIC___free sulfur dioxide_01___9": 148, "05___NUMERIC___free sulfur dioxide_02___0": 149, "05___NUMERIC___free sulfur dioxide_02___1": 150, "05___NUMERIC___free sulfur dioxide_02___2": 151, "05___NUMERIC___free sulfur dioxide_02___3": 152, "05___NUMERIC___free sulfur dioxide_02___4": 153, "05___NUMERIC___free sulfur dioxide_02___5": 154, "05___NUMERIC___free sulfur dioxide_02___6": 155, "05___NUMERIC___free sulfur dioxide_02___7": 156, "05___NUMERIC___free sulfur dioxide_02___8": 157, "05___NUMERIC___free sulfur dioxide_02___9": 158, "05___NUMERIC___free sulfur dioxide_03___.": 159, "05___NUMERIC___free sulfur dioxide_04___0": 160, "05___NUMERIC___free sulfur dioxide_04___5": 161, "06___NUMERIC___total sulfur dioxide_00___0": 162, "06___NUMERIC___total sulfur dioxide_00___1": 163, "06___NUMERIC___total sulfur dioxide_00___2": 164, "06___NUMERIC___total sulfur dioxide_00___3": 165, "06___NUMERIC___total sulfur dioxide_01___0": 166, "06___NUMERIC___total sulfur dioxide_01___1": 167, "06___NUMERIC___total sulfur dioxide_01___2": 168, "06___NUMERIC___total sulfur dioxide_01___3": 169, "06___NUMERIC___total sulfur dioxide_01___4": 170, "06___NUMERIC___total sulfur dioxide_01___5": 171, "06___NUMERIC___total sulfur dioxide_01___6": 172, "06___NUMERIC___total sulfur dioxide_01___7": 173, "06___NUMERIC___total sulfur dioxide_01___8": 174, "06___NUMERIC___total sulfur dioxide_01___9": 175, "06___NUMERIC___total sulfur dioxide_02___0": 176, "06___NUMERIC___total sulfur dioxide_02___1": 177, "06___NUMERIC___total sulfur dioxide_02___2": 178, "06___NUMERIC___total sulfur dioxide_02___3": 179, "06___NUMERIC___total sulfur dioxide_02___4": 180, "06___NUMERIC___total sulfur dioxide_02___5": 181, "06___NUMERIC___total sulfur dioxide_02___6": 182, "06___NUMERIC___total sulfur dioxide_02___7": 183, "06___NUMERIC___total sulfur dioxide_02___8": 184, "06___NUMERIC___total sulfur dioxide_02___9": 185, "06___NUMERIC___total sulfur dioxide_03___.": 186, "06___NUMERIC___total sulfur dioxide_04___0": 187, "06___NUMERIC___total sulfur dioxide_04___5": 188, "07___NUMERIC___density_00___0": 189, "07___NUMERIC___density_00___1": 190, "07___NUMERIC___density_01___.": 191, "07___NUMERIC___density_02___0": 192, "07___NUMERIC___density_02___9": 193, "07___NUMERIC___density_03___0": 194, "07___NUMERIC___density_03___1": 195, "07___NUMERIC___density_03___3": 196, "07___NUMERIC___density_03___8": 197, "07___NUMERIC___density_03___9": 198, "07___NUMERIC___density_04___0": 199, "07___NUMERIC___density_04___1": 200, "07___NUMERIC___density_04___2": 201, "07___NUMERIC___density_04___3": 202, "07___NUMERIC___density_04___4": 203, "07___NUMERIC___density_04___5": 204, "07___NUMERIC___density_04___6": 205, "07___NUMERIC___density_04___7": 206, "07___NUMERIC___density_04___8": 207, "07___NUMERIC___density_04___9": 208, "07___NUMERIC___density_05___0": 209, "07___NUMERIC___density_05___1": 210, "07___NUMERIC___density_05___2": 211, "07___NUMERIC___density_05___3": 212, "07___NUMERIC___density_05___4": 213, "07___NUMERIC___density_05___5": 214, "07___NUMERIC___density_05___6": 215, "07___NUMERIC___density_05___7": 216, "07___NUMERIC___density_05___8": 217, "07___NUMERIC___density_05___9": 218, "08___NUMERIC___pH_00___2": 219, "08___NUMERIC___pH_00___3": 220, "08___NUMERIC___pH_01___.": 221, "08___NUMERIC___pH_02___0": 222, "08___NUMERIC___pH_02___1": 223, "08___NUMERIC___pH_02___2": 224, "08___NUMERIC___pH_02___3": 225, "08___NUMERIC___pH_02___4": 226, "08___NUMERIC___pH_02___5": 227, "08___NUMERIC___pH_02___6": 228, "08___NUMERIC___pH_02___7": 229, "08___NUMERIC___pH_02___8": 230, "08___NUMERIC___pH_02___9": 231, "08___NUMERIC___pH_03___0": 232, "08___NUMERIC___pH_03___1": 233, "08___NUMERIC___pH_03___2": 234, "08___NUMERIC___pH_03___3": 235, "08___NUMERIC___pH_03___4": 236, "08___NUMERIC___pH_03___5": 237, "08___NUMERIC___pH_03___6": 238, "08___NUMERIC___pH_03___7": 239, "08___NUMERIC___pH_03___8": 240, "08___NUMERIC___pH_03___9": 241, "09___NUMERIC___sulphates_00___0": 242, "09___NUMERIC___sulphates_00___1": 243, "09___NUMERIC___sulphates_01___.": 244, "09___NUMERIC___sulphates_02___0": 245, "09___NUMERIC___sulphates_02___2": 246, "09___NUMERIC___sulphates_02___3": 247, "09___NUMERIC___sulphates_02___4": 248, "09___NUMERIC___sulphates_02___5": 249, "09___NUMERIC___sulphates_02___6": 250, "09___NUMERIC___sulphates_02___7": 251, "09___NUMERIC___sulphates_02___8": 252, "09___NUMERIC___sulphates_02___9": 253, "09___NUMERIC___sulphates_03___0": 254, "09___NUMERIC___sulphates_03___1": 255, "09___NUMERIC___sulphates_03___2": 256, "09___NUMERIC___sulphates_03___3": 257, "09___NUMERIC___sulphates_03___4": 258, "09___NUMERIC___sulphates_03___5": 259, "09___NUMERIC___sulphates_03___6": 260, "09___NUMERIC___sulphates_03___7": 261, "09___NUMERIC___sulphates_03___8": 262, "09___NUMERIC___sulphates_03___9": 263, "10___NUMERIC___alcohol_00___0": 264, "10___NUMERIC___alcohol_00___1": 265, "10___NUMERIC___alcohol_01___0": 266, "10___NUMERIC___alcohol_01___1": 267, "10___NUMERIC___alcohol_01___2": 268, "10___NUMERIC___alcohol_01___3": 269, "10___NUMERIC___alcohol_01___4": 270, "10___NUMERIC___alcohol_01___8": 271, "10___NUMERIC___alcohol_01___9": 272, "10___NUMERIC___alcohol_02___.": 273, "10___NUMERIC___alcohol_03___0": 274, "10___NUMERIC___alcohol_03___1": 275, "10___NUMERIC___alcohol_03___2": 276, "10___NUMERIC___alcohol_03___3": 277, "10___NUMERIC___alcohol_03___4": 278, "10___NUMERIC___alcohol_03___5": 279, "10___NUMERIC___alcohol_03___6": 280, "10___NUMERIC___alcohol_03___7": 281, "10___NUMERIC___alcohol_03___8": 282, "10___NUMERIC___alcohol_03___9": 283, "10___NUMERIC___alcohol_04___0": 284, "10___NUMERIC___alcohol_04___3": 285, "10___NUMERIC___alcohol_04___4": 286, "10___NUMERIC___alcohol_04___5": 287, "10___NUMERIC___alcohol_04___6": 288, "10___NUMERIC___alcohol_04___8": 289, "10___NUMERIC___alcohol_04___9": 290, "10___NUMERIC___alcohol_05___0": 291, "10___NUMERIC___alcohol_05___3": 292, "10___NUMERIC___alcohol_05___6": 293, "10___NUMERIC___alcohol_06___0": 294, "10___NUMERIC___alcohol_06___3": 295, "10___NUMERIC___alcohol_06___7": 296, "11___NUMERIC___quality_00___3": 297, "11___NUMERIC___quality_00___4": 298, "11___NUMERIC___quality_00___5": 299, "11___NUMERIC___quality_00___6": 300, "11___NUMERIC___quality_00___7": 301, "11___NUMERIC___quality_00___8": 302, "11___NUMERIC___quality_00___9": 303}, "column_token_ids": {"00___NUMERIC___fixed acidity_00": [11, 12], "00___NUMERIC___fixed acidity_01": [13, 14, 15, 16, 17, 18, 19, 20, 21], "00___NUMERIC___fixed acidity_02": [22], "00___NUMERIC___fixed acidity_03": [23, 24, 25, 26, 27, 28, 29, 30, 31, 32], "00___NUMERIC___fixed acidity_04": [33, 34], "01___NUMERIC___volatile acidity_00": [35, 36], "01___NUMERIC___volatile acidity_01": [37], "01___NUMERIC___volatile acidity_02": [38, 39, 40, 41, 42, 43, 44, 45, 46, 47], "01___NUMERIC___volatile acidity_03": [48, 49, 50, 51, 52, 53, 54, 55, 56, 57], "01___NUMERIC___volatile acidity_04": [58, 59], "02___NUMERIC___citric acid_00": [60, 61], "02___NUMERIC___citric acid_01": [62], "02___NUMERIC___citric acid_02": [63, 64, 65, 66, 67, 68, 69, 70, 71, 72], "02___NUMERIC___citric acid_03": [73, 74, 75, 76, 77, 78, 79, 80, 81, 82], "03___NUMERIC___residual sugar_00": [83, 84, 85, 86, 87], "03___NUMERIC___residual sugar_01": [88, 89, 90, 91, 92, 93, 94, 95, 96, 97], "03___NUMERIC___residual sugar_02": [98], "03___NUMERIC___residual sugar_03": [99, 100, 101, 102, 103, 104, 105, 106, 107, 108], "03___NUMERIC___residual sugar_04": [109, 110], "04___NUMERIC___chlorides_00": [111], "04___NUMERIC___chlorides_01": [112], "04___NUMERIC___chlorides_02": [113, 114, 115, 116], "04___NUMERIC___chlorides_03": [117, 118, 119, 120, 121, 122, 123, 124, 125, 126], "04___NUMERIC___chlorides_04": [127, 128, 129, 130, 131, 132, 133, 134, 135, 136], "05___NUMERIC___free sulfur dioxide_00": [137, 138], "05___NUMERIC___free sulfur dioxide_01": [139, 140, 141, 142, 143, 144, 145, 146, 147, 148], "05___NUMERIC___free sulfur dioxide_02": [149, 150, 151, 152, 153, 154, 155, 156, 157, 158], "05___NUMERIC___free sulfur dioxide_03": [159], "05___NUMERIC___free sulfur dioxide_04": [160, 161], "06___NUMERIC___total sulfur dioxide_00": [162, 163, 164, 165], "06___NUMERIC___total sulfur dioxide_01": [166, 167, 168, 169, 170, 171, 172, 173, 174, 175], "06___NUMERIC___total sulfur dioxide_02": [176, 177, 178, 179, 180, 181, 182, 183, 184, 185], "06___NUMERIC___total sulfur dioxide_03": [186], "06___NUMERIC___total sulfur dioxide_04": [187, 188], "07___NUMERIC___density_00": [189, 190], "07___NUMERIC___density_01": [191], "07___NUMERIC___density_02": [192, 193], "07___NUMERIC___density_03": [194, 195, 196, 197, 198], "07___NUMERIC___density_04": [199, 200, 201, 202, 203, 204, 205, 206, 207, 208], "07___NUMERIC___density_05": [209, 210, 211, 212, 213, 214, 215, 216, 217, 218], "08___NUMERIC___pH_00": [219, 220], "08___NUMERIC___pH_01": [221], "08___NUMERIC___pH_02": [222, 223, 224, 225, 226, 227, 228, 229, 230, 231], "08___NUMERIC___pH_03": [232, 233, 234, 235, 236, 237, 238, 239, 240, 241], "09___NUMERIC___sulphates_00": [242, 243], "09___NUMERIC___sulphates_01": [244], "09___NUMERIC___sulphates_02": [245, 246, 247, 248, 249, 250, 251, 252, 253], "09___NUMERIC___sulphates_03": [254, 255, 256, 257, 258, 259, 260, 261, 262, 263], "10___NUMERIC___alcohol_00": [264, 265], "10___NUMERIC___alcohol_01": [266, 267, 268, 269, 270, 271, 272], "10___NUMERIC___alcohol_02": [273], "10___NUMERIC___alcohol_03": [274, 275, 276, 277, 278, 279, 280, 281, 282, 283], "10___NUMERIC___alcohol_04": [284, 285, 286, 287, 288, 289, 290], "10___NUMERIC___alcohol_05": [291, 292, 293], "10___NUMERIC___alcohol_06": [294, 295, 296], "11___NUMERIC___quality_00": [297, 298, 299, 300, 301, 302, 303]}}, "tabular_max_length": 58, "relational_max_length": null, "tabular_col_size": 3918, "relational_col_size": null, "col_transform_data": {"fixed acidity": {"max_len": 10, "numeric_precision": 4, "mx_sig": 2, "ljust": 5, "numeric_nparts": 1}, "volatile acidity": {"max_len": 10, "numeric_precision": 4, "mx_sig": 1, "ljust": 5, "numeric_nparts": 1}, "citric acid": {"max_len": 10, "numeric_precision": 4, "mx_sig": 1, "ljust": 4, "numeric_nparts": 1}, "residual sugar": {"max_len": 10, "numeric_precision": 4, "mx_sig": 2, "ljust": 5, "numeric_nparts": 1}, "chlorides": {"max_len": 10, "numeric_precision": 4, "mx_sig": 1, "ljust": 5, "numeric_nparts": 1}, "free sulfur dioxide": {"max_len": 10, "numeric_precision": 4, "mx_sig": 3, "ljust": 5, "numeric_nparts": 1}, "total sulfur dioxide": {"max_len": 10, "numeric_precision": 4, "mx_sig": 3, "ljust": 5, "numeric_nparts": 1}, "density": {"max_len": 10, "numeric_precision": 4, "mx_sig": 1, "ljust": 6, "numeric_nparts": 1}, "pH": {"max_len": 10, "numeric_precision": 4, "mx_sig": 1, "ljust": 4, "numeric_nparts": 1}, "sulphates": {"max_len": 10, "numeric_precision": 4, "mx_sig": 1, "ljust": 4, "numeric_nparts": 1}, "alcohol": {"max_len": 10, "numeric_precision": 4, "mx_sig": 2, "ljust": 7, "numeric_nparts": 1}, "quality": {"max_len": 10, "numeric_precision": 4, "mx_sig": -1, "zfill": 1, "numeric_nparts": 1}}, "in_col_transform_data": null, "col_idx_ids": {"0": [11, 12], "1": [13, 14, 15, 16, 17, 18, 19, 20, 21], "2": [22], "3": [23, 24, 25, 26, 27, 28, 29, 30, 31, 32], "4": [33, 34], "5": [35, 36], "6": [37], "7": [38, 39, 40, 41, 42, 43, 44, 45, 46, 47], "8": [48, 49, 50, 51, 52, 53, 54, 55, 56, 57], "9": [58, 59], "10": [60, 61], "11": [62], "12": [63, 64, 65, 66, 67, 68, 69, 70, 71, 72], "13": [73, 74, 75, 76, 77, 78, 79, 80, 81, 82], "14": [83, 84, 85, 86, 87], "15": [88, 89, 90, 91, 92, 93, 94, 95, 96, 97], "16": [98], "17": [99, 100, 101, 102, 103, 104, 105, 106, 107, 108], "18": [109, 110], "19": [111], "20": [112], "21": [113, 114, 115, 116], "22": [117, 118, 119, 120, 121, 122, 123, 124, 125, 126], "23": [127, 128, 129, 130, 131, 132, 133, 134, 135, 136], "24": [137, 138], "25": [139, 140, 141, 142, 143, 144, 145, 146, 147, 148], "26": [149, 150, 151, 152, 153, 154, 155, 156, 157, 158], "27": [159], "28": [160, 161], "29": [162, 163, 164, 165], "30": [166, 167, 168, 169, 170, 171, 172, 173, 174, 175], "31": [176, 177, 178, 179, 180, 181, 182, 183, 184, 185], "32": [186], "33": [187, 188], "34": [189, 190], "35": [191], "36": [192, 193], "37": [194, 195, 196, 197, 198], "38": [199, 200, 201, 202, 203, 204, 205, 206, 207, 208], "39": [209, 210, 211, 212, 213, 214, 215, 216, 217, 218], "40": [219, 220], "41": [221], "42": [222, 223, 224, 225, 226, 227, 228, 229, 230, 231], "43": [232, 233, 234, 235, 236, 237, 238, 239, 240, 241], "44": [242, 243], "45": [244], "46": [245, 246, 247, 248, 249, 250, 251, 252, 253], "47": [254, 255, 256, 257, 258, 259, 260, 261, 262, 263], "48": [264, 265], "49": [266, 267, 268, 269, 270, 271, 272], "50": [273], "51": [274, 275, 276, 277, 278, 279, 280, 281, 282, 283], "52": [284, 285, 286, 287, 288, 289, 290], "53": [291, 292, 293], "54": [294, 295, 296], "55": [297, 298, 299, 300, 301, 302, 303]}, "random_state": 1029, "numeric_nparts": 1, "numeric_precision": 4, "numeric_max_len": 10, "experiment_id": "id000017779198461681285120", "trainer_state": null, "target_col": null, "realtabformer_version": "0.2.4"} \ No newline at end of file diff --git a/hyperparameter/n3/realtabformer/rtf-n3-20260505_023447/models_15epochs/id000017779198461681285120/rtf_model.pt b/hyperparameter/n3/realtabformer/rtf-n3-20260505_023447/models_15epochs/id000017779198461681285120/rtf_model.pt new file mode 100644 index 0000000000000000000000000000000000000000..d3a220e0950b34628a695918bd91ce6df280538e --- /dev/null +++ b/hyperparameter/n3/realtabformer/rtf-n3-20260505_023447/models_15epochs/id000017779198461681285120/rtf_model.pt @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:1b7447fec40b9d02c5b240da59b8b9cda31d0f541fe067cb2f87c032b1cbbcce +size 174223843 diff --git a/hyperparameter/n3/realtabformer/rtf-n3-20260505_023447/public_gate/normalized_schema_snapshot.json b/hyperparameter/n3/realtabformer/rtf-n3-20260505_023447/public_gate/normalized_schema_snapshot.json new file mode 100644 index 0000000000000000000000000000000000000000..c41fe304503de23190a02e6cbfafa35b3bf134d3 --- /dev/null +++ b/hyperparameter/n3/realtabformer/rtf-n3-20260505_023447/public_gate/normalized_schema_snapshot.json @@ -0,0 +1,259 @@ +{ + "dataset_id": "n3", + "target_column": "quality", + "task_type": "classification", + "columns": [ + { + "name": "fixed acidity", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 66, + "unique_ratio": 0.016845, + "example_values": [ + "7.1", + "8.5", + "6.4", + "6.8", + "7.6" + ] + } + }, + { + "name": "volatile acidity", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 121, + "unique_ratio": 0.030883, + "example_values": [ + "0.31", + "0.21", + "0.24", + "0.43", + "0.27" + ] + } + }, + { + "name": "citric acid", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 85, + "unique_ratio": 0.021695, + "example_values": [ + "0.17", + "0.41", + "0.31", + "0.25", + "0.3" + ] + } + }, + { + "name": "residual sugar", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 296, + "unique_ratio": 0.075549, + "example_values": [ + "1", + "4.3", + "2.8", + "13", + "12.9" + ] + } + }, + { + "name": "chlorides", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 147, + "unique_ratio": 0.037519, + "example_values": [ + "0.042", + "0.036", + "0.038", + "0.047", + "0.033" + ] + } + }, + { + "name": "free sulfur dioxide", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 120, + "unique_ratio": 0.030628, + "example_values": [ + "21", + "24", + "41", + "43", + "69" + ] + } + }, + { + "name": "total sulfur dioxide", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 244, + "unique_ratio": 0.062277, + "example_values": [ + "144", + "99", + "114", + "132", + "160" + ] + } + }, + { + "name": "density", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 839, + "unique_ratio": 0.21414, + "example_values": [ + "0.99304", + "0.9947", + "0.99155", + "0.98975", + "0.99705" + ] + } + }, + { + "name": "pH", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 100, + "unique_ratio": 0.025523, + "example_values": [ + "3.13", + "3.18", + "3.37", + "3.21", + "3.16" + ] + } + }, + { + "name": "sulphates", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 78, + "unique_ratio": 0.019908, + "example_values": [ + "0.4", + "0.53", + "0.66", + "0.47", + "0.5" + ] + } + }, + { + "name": "alcohol", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 97, + "unique_ratio": 0.024758, + "example_values": [ + "9.6", + "9.7", + "11.7", + "13.4", + "8.8" + ] + } + }, + { + "name": "quality", + "role": "target", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 7, + "unique_ratio": 0.001787, + "example_values": [ + "5", + "6", + "7", + "8", + "3" + ] + } + } + ] +} \ No newline at end of file diff --git a/hyperparameter/n3/realtabformer/rtf-n3-20260505_023447/public_gate/public_gate_report.json b/hyperparameter/n3/realtabformer/rtf-n3-20260505_023447/public_gate/public_gate_report.json new file mode 100644 index 0000000000000000000000000000000000000000..93b97319f739e39079d6c6549fd2020f8a6dac25 --- /dev/null +++ b/hyperparameter/n3/realtabformer/rtf-n3-20260505_023447/public_gate/public_gate_report.json @@ -0,0 +1,37 @@ +{ + "dataset_id": "n3", + "status": "pass", + "checks": [ + { + "check_id": "PG001_csv_parse_ok", + "status": "pass" + }, + { + "check_id": "PG002_split_header_consistent", + "status": "pass" + }, + { + "check_id": "PG003_profile_header_match", + "status": "pass" + }, + { + "check_id": "PG004_missing_token_normalized", + "status": "pass" + }, + { + "check_id": "PG005_semantic_type_validated", + "status": "pass" + }, + { + "check_id": "PG006_target_defined_and_valid", + "status": "pass" + } + ], + "target_column": "quality", + "task_type": "classification", + "input_splits": { + "train": "/data/jialinzhang/SynthesizePipeline-server/DatasetNew/n3/n3-train.csv", + "val": "/data/jialinzhang/SynthesizePipeline-server/DatasetNew/n3/n3-val.csv", + "test": "/data/jialinzhang/SynthesizePipeline-server/DatasetNew/n3/n3-test.csv" + } +} \ No newline at end of file diff --git a/hyperparameter/n3/realtabformer/rtf-n3-20260505_023447/public_gate/staged_input_manifest.json b/hyperparameter/n3/realtabformer/rtf-n3-20260505_023447/public_gate/staged_input_manifest.json new file mode 100644 index 0000000000000000000000000000000000000000..291e02f069acdd2f6f1f3f92b583ba27af61ed7d --- /dev/null +++ b/hyperparameter/n3/realtabformer/rtf-n3-20260505_023447/public_gate/staged_input_manifest.json @@ -0,0 +1,264 @@ +{ + "dataset_id": "n3", + "target_column": "quality", + "task_type": "classification", + "train_csv": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/n3/realtabformer/rtf-n3-20260505_023447/staged/public/train.csv", + "val_csv": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/n3/realtabformer/rtf-n3-20260505_023447/staged/public/val.csv", + "test_csv": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/n3/realtabformer/rtf-n3-20260505_023447/staged/public/test.csv", + "features_json": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/n3/realtabformer/rtf-n3-20260505_023447/staged/public/staged_features.json", + "public_gate_report": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/n3/realtabformer/rtf-n3-20260505_023447/public_gate/public_gate_report.json", + "column_schema": [ + { + "name": "fixed acidity", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 66, + "unique_ratio": 0.016845, + "example_values": [ + "7.1", + "8.5", + "6.4", + "6.8", + "7.6" + ] + } + }, + { + "name": "volatile acidity", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 121, + "unique_ratio": 0.030883, + "example_values": [ + "0.31", + "0.21", + "0.24", + "0.43", + "0.27" + ] + } + }, + { + "name": "citric acid", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 85, + "unique_ratio": 0.021695, + "example_values": [ + "0.17", + "0.41", + "0.31", + "0.25", + "0.3" + ] + } + }, + { + "name": "residual sugar", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 296, + "unique_ratio": 0.075549, + "example_values": [ + "1", + "4.3", + "2.8", + "13", + "12.9" + ] + } + }, + { + "name": "chlorides", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 147, + "unique_ratio": 0.037519, + "example_values": [ + "0.042", + "0.036", + "0.038", + "0.047", + "0.033" + ] + } + }, + { + "name": "free sulfur dioxide", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 120, + "unique_ratio": 0.030628, + "example_values": [ + "21", + "24", + "41", + "43", + "69" + ] + } + }, + { + "name": "total sulfur dioxide", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 244, + "unique_ratio": 0.062277, + "example_values": [ + "144", + "99", + "114", + "132", + "160" + ] + } + }, + { + "name": "density", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 839, + "unique_ratio": 0.21414, + "example_values": [ + "0.99304", + "0.9947", + "0.99155", + "0.98975", + "0.99705" + ] + } + }, + { + "name": "pH", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 100, + "unique_ratio": 0.025523, + "example_values": [ + "3.13", + "3.18", + "3.37", + "3.21", + "3.16" + ] + } + }, + { + "name": "sulphates", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 78, + "unique_ratio": 0.019908, + "example_values": [ + "0.4", + "0.53", + "0.66", + "0.47", + "0.5" + ] + } + }, + { + "name": "alcohol", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 97, + "unique_ratio": 0.024758, + "example_values": [ + "9.6", + "9.7", + "11.7", + "13.4", + "8.8" + ] + } + }, + { + "name": "quality", + "role": "target", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 7, + "unique_ratio": 0.001787, + "example_values": [ + "5", + "6", + "7", + "8", + "3" + ] + } + } + ] +} \ No newline at end of file diff --git a/hyperparameter/n3/realtabformer/rtf-n3-20260505_023447/realtabformer_features.json b/hyperparameter/n3/realtabformer/rtf-n3-20260505_023447/realtabformer_features.json new file mode 100644 index 0000000000000000000000000000000000000000..08fe4d766d091d2f2ddba724a16b9509cbe4c390 --- /dev/null +++ b/hyperparameter/n3/realtabformer/rtf-n3-20260505_023447/realtabformer_features.json @@ -0,0 +1,62 @@ +[ + { + "feature_name": "fixed acidity", + "data_type": "continuous", + "is_target": false + }, + { + "feature_name": "volatile acidity", + "data_type": "continuous", + "is_target": false + }, + { + "feature_name": "citric acid", + "data_type": "continuous", + "is_target": false + }, + { + "feature_name": "residual sugar", + "data_type": "continuous", + "is_target": false + }, + { + "feature_name": "chlorides", + "data_type": "continuous", + "is_target": false + }, + { + "feature_name": "free sulfur dioxide", + "data_type": "continuous", + "is_target": false + }, + { + "feature_name": "total sulfur dioxide", + "data_type": "continuous", + "is_target": false + }, + { + "feature_name": "density", + "data_type": "continuous", + "is_target": false + }, + { + "feature_name": "pH", + "data_type": "continuous", + "is_target": false + }, + { + "feature_name": "sulphates", + "data_type": "continuous", + "is_target": false + }, + { + "feature_name": "alcohol", + "data_type": "continuous", + "is_target": false + }, + { + "feature_name": "quality", + "data_type": "continuous", + "is_target": true + } +] \ No newline at end of file diff --git a/hyperparameter/n3/realtabformer/rtf-n3-20260505_023447/rtf-n3-3918-20260505_023728.csv b/hyperparameter/n3/realtabformer/rtf-n3-20260505_023447/rtf-n3-3918-20260505_023728.csv new file mode 100644 index 0000000000000000000000000000000000000000..5dd0655830b20c2554b89a47b1807a4dc8d4c414 --- /dev/null +++ b/hyperparameter/n3/realtabformer/rtf-n3-20260505_023447/rtf-n3-3918-20260505_023728.csv @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:9679d56e5403c9fce34fd9848d538c1b42f006954bbbba2d0356927ac7f4d6b8 +size 227371 diff --git a/hyperparameter/n3/realtabformer/rtf-n3-20260505_023447/rtf_checkpoints/checkpoint-1599/config.json b/hyperparameter/n3/realtabformer/rtf-n3-20260505_023447/rtf_checkpoints/checkpoint-1599/config.json new file mode 100644 index 0000000000000000000000000000000000000000..1876b75d3abc713ca867fe8e643ea273dc9cea87 --- /dev/null +++ b/hyperparameter/n3/realtabformer/rtf-n3-20260505_023447/rtf_checkpoints/checkpoint-1599/config.json @@ -0,0 +1,34 @@ +{ + "activation_function": "gelu_new", + "add_cross_attention": false, + "architectures": [ + "GPT2LMHeadModel" + ], + "attn_pdrop": 0.1, + "bos_token_id": 5, + "dtype": "float32", + "embd_pdrop": 0.1, + "eos_token_id": 6, + "initializer_range": 0.02, + "layer_norm_epsilon": 1e-05, + "model_type": "gpt2", + "n_embd": 768, + "n_head": 12, + "n_inner": null, + "n_layer": 6, + "n_positions": 1024, + "pad_token_id": null, + "reorder_and_upcast_attn": false, + "resid_pdrop": 0.1, + "scale_attn_by_inverse_layer_idx": false, + "scale_attn_weights": true, + "summary_activation": null, + "summary_first_dropout": 0.1, + "summary_proj_to_labels": true, + "summary_type": "cls_index", + "summary_use_proj": true, + "tie_word_embeddings": true, + "transformers_version": "5.5.3", + "use_cache": false, + "vocab_size": 304 +} diff --git a/hyperparameter/n3/realtabformer/rtf-n3-20260505_023447/rtf_checkpoints/checkpoint-1599/generation_config.json b/hyperparameter/n3/realtabformer/rtf-n3-20260505_023447/rtf_checkpoints/checkpoint-1599/generation_config.json new file mode 100644 index 0000000000000000000000000000000000000000..ffe89567780e75b5c22eade9be971483b9618f39 --- /dev/null +++ b/hyperparameter/n3/realtabformer/rtf-n3-20260505_023447/rtf_checkpoints/checkpoint-1599/generation_config.json @@ -0,0 +1,9 @@ +{ + "_from_model_config": true, + "bos_token_id": 5, + "eos_token_id": 6, + "output_attentions": false, + "output_hidden_states": false, + "transformers_version": "5.5.3", + "use_cache": true +} diff --git a/hyperparameter/n3/realtabformer/rtf-n3-20260505_023447/rtf_checkpoints/checkpoint-1599/model.safetensors b/hyperparameter/n3/realtabformer/rtf-n3-20260505_023447/rtf_checkpoints/checkpoint-1599/model.safetensors new file mode 100644 index 0000000000000000000000000000000000000000..0e2811d5661c1a7899d9d195714628b595063ba4 --- /dev/null +++ b/hyperparameter/n3/realtabformer/rtf-n3-20260505_023447/rtf_checkpoints/checkpoint-1599/model.safetensors @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:9360ec86598add5dbd7a4d787d4a60e88fd87549cb3c211e7bcf9bb2ecf445f7 +size 174202312 diff --git a/hyperparameter/n3/realtabformer/rtf-n3-20260505_023447/rtf_checkpoints/checkpoint-1599/optimizer.pt b/hyperparameter/n3/realtabformer/rtf-n3-20260505_023447/rtf_checkpoints/checkpoint-1599/optimizer.pt new file mode 100644 index 0000000000000000000000000000000000000000..4a0ff9bf04105f8a1122e676af3d5b5777563827 --- /dev/null +++ b/hyperparameter/n3/realtabformer/rtf-n3-20260505_023447/rtf_checkpoints/checkpoint-1599/optimizer.pt @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:4395727484a90199d4b23db13e43af114b1a77cfdd67e94d9f588d734ee4bc95 +size 348453707 diff --git a/hyperparameter/n3/realtabformer/rtf-n3-20260505_023447/rtf_checkpoints/checkpoint-1599/rng_state.pth b/hyperparameter/n3/realtabformer/rtf-n3-20260505_023447/rtf_checkpoints/checkpoint-1599/rng_state.pth new file mode 100644 index 0000000000000000000000000000000000000000..dcc68bf50047d56d8876f997da5f7d44b843edeb --- /dev/null +++ b/hyperparameter/n3/realtabformer/rtf-n3-20260505_023447/rtf_checkpoints/checkpoint-1599/rng_state.pth @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:7c1776ed8bf1fc9fdd6beb01dda20a54160e06a2c1f05757e71d1e01b9c16cc9 +size 14645 diff --git a/hyperparameter/n3/realtabformer/rtf-n3-20260505_023447/rtf_checkpoints/checkpoint-1599/scaler.pt b/hyperparameter/n3/realtabformer/rtf-n3-20260505_023447/rtf_checkpoints/checkpoint-1599/scaler.pt new file mode 100644 index 0000000000000000000000000000000000000000..80f4ff173d29d5591b276960f549682738e730d0 --- /dev/null +++ b/hyperparameter/n3/realtabformer/rtf-n3-20260505_023447/rtf_checkpoints/checkpoint-1599/scaler.pt @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:13e3377ba08d4d8e2840e8571616d712b0c45ca168090d7f1858c11fffeb90b7 +size 1383 diff --git a/hyperparameter/n3/realtabformer/rtf-n3-20260505_023447/rtf_checkpoints/checkpoint-1599/scheduler.pt b/hyperparameter/n3/realtabformer/rtf-n3-20260505_023447/rtf_checkpoints/checkpoint-1599/scheduler.pt new file mode 100644 index 0000000000000000000000000000000000000000..7c0d454d4d1f496360aefa36bae57e0a2e440893 --- /dev/null +++ b/hyperparameter/n3/realtabformer/rtf-n3-20260505_023447/rtf_checkpoints/checkpoint-1599/scheduler.pt @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:b2f11ca06712d12b733aa53b6217aa7d58104119c2c15eeb544a6040ce1ce18d +size 1465 diff --git a/hyperparameter/n3/realtabformer/rtf-n3-20260505_023447/rtf_checkpoints/checkpoint-1599/trainer_state.json b/hyperparameter/n3/realtabformer/rtf-n3-20260505_023447/rtf_checkpoints/checkpoint-1599/trainer_state.json new file mode 100644 index 0000000000000000000000000000000000000000..4da572a6d3d6f5b123bb54432a5a0931f4263e73 --- /dev/null +++ b/hyperparameter/n3/realtabformer/rtf-n3-20260505_023447/rtf_checkpoints/checkpoint-1599/trainer_state.json @@ -0,0 +1,139 @@ +{ + "best_global_step": null, + "best_metric": null, + "best_model_checkpoint": null, + "epoch": 13.0, + "eval_steps": 100, + "global_step": 1599, + "is_hyper_param_search": false, + "is_local_process_zero": true, + "is_world_process_zero": true, + "log_history": [ + { + "epoch": 0.8163265306122449, + "grad_norm": 0.20653633773326874, + "learning_rate": 4.731707317073171e-05, + "loss": 1.4773538208007813, + "step": 100 + }, + { + "epoch": 1.6285714285714286, + "grad_norm": 0.20162753760814667, + "learning_rate": 4.460704607046071e-05, + "loss": 0.8820742034912109, + "step": 200 + }, + { + "epoch": 2.440816326530612, + "grad_norm": 0.19421112537384033, + "learning_rate": 4.1897018970189706e-05, + "loss": 0.840721435546875, + "step": 300 + }, + { + "epoch": 3.253061224489796, + "grad_norm": 0.18170130252838135, + "learning_rate": 3.91869918699187e-05, + "loss": 0.8214681243896484, + "step": 400 + }, + { + "epoch": 4.0653061224489795, + "grad_norm": 0.17708559334278107, + "learning_rate": 3.64769647696477e-05, + "loss": 0.8072810363769531, + "step": 500 + }, + { + "epoch": 4.881632653061224, + "grad_norm": 0.17813192307949066, + "learning_rate": 3.3766937669376695e-05, + "loss": 0.7988162994384765, + "step": 600 + }, + { + "epoch": 5.6938775510204085, + "grad_norm": 0.19233326613903046, + "learning_rate": 3.105691056910569e-05, + "loss": 0.7915788269042969, + "step": 700 + }, + { + "epoch": 6.506122448979592, + "grad_norm": 0.16748736798763275, + "learning_rate": 2.834688346883469e-05, + "loss": 0.785815200805664, + "step": 800 + }, + { + "epoch": 7.318367346938776, + "grad_norm": 0.16784754395484924, + "learning_rate": 2.5636856368563688e-05, + "loss": 0.7810878753662109, + "step": 900 + }, + { + "epoch": 8.130612244897959, + "grad_norm": 0.17746923863887787, + "learning_rate": 2.2926829268292687e-05, + "loss": 0.7754794311523437, + "step": 1000 + }, + { + "epoch": 8.946938775510205, + "grad_norm": 0.18434210121631622, + "learning_rate": 2.0216802168021682e-05, + "loss": 0.7718997955322265, + "step": 1100 + }, + { + "epoch": 9.759183673469387, + "grad_norm": 0.17485855519771576, + "learning_rate": 1.7506775067750677e-05, + "loss": 0.7666468048095703, + "step": 1200 + }, + { + "epoch": 10.571428571428571, + "grad_norm": 0.1655977964401245, + "learning_rate": 1.4796747967479676e-05, + "loss": 0.7619458770751953, + "step": 1300 + }, + { + "epoch": 11.383673469387755, + "grad_norm": 0.17600932717323303, + "learning_rate": 1.2086720867208673e-05, + "loss": 0.7599867248535156, + "step": 1400 + }, + { + "epoch": 12.19591836734694, + "grad_norm": 0.1805613487958908, + "learning_rate": 9.37669376693767e-06, + "loss": 0.7588233184814454, + "step": 1500 + } + ], + "logging_steps": 100, + "max_steps": 1845, + "num_input_tokens_seen": 0, + "num_train_epochs": 15, + "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": 753823773720576.0, + "train_batch_size": 8, + "trial_name": null, + "trial_params": null +} diff --git a/hyperparameter/n3/realtabformer/rtf-n3-20260505_023447/rtf_checkpoints/checkpoint-1599/training_args.bin b/hyperparameter/n3/realtabformer/rtf-n3-20260505_023447/rtf_checkpoints/checkpoint-1599/training_args.bin new file mode 100644 index 0000000000000000000000000000000000000000..3b03c5f71fa818875cad290ece2b25ec27903e93 --- /dev/null +++ b/hyperparameter/n3/realtabformer/rtf-n3-20260505_023447/rtf_checkpoints/checkpoint-1599/training_args.bin @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:7e849067e43bb6650fce8e84fcf46f14551abb25b2511ace2d386dd951772602 +size 5201 diff --git a/hyperparameter/n3/realtabformer/rtf-n3-20260505_023447/rtf_checkpoints/checkpoint-1600/config.json b/hyperparameter/n3/realtabformer/rtf-n3-20260505_023447/rtf_checkpoints/checkpoint-1600/config.json new file mode 100644 index 0000000000000000000000000000000000000000..1876b75d3abc713ca867fe8e643ea273dc9cea87 --- /dev/null +++ b/hyperparameter/n3/realtabformer/rtf-n3-20260505_023447/rtf_checkpoints/checkpoint-1600/config.json @@ -0,0 +1,34 @@ +{ + "activation_function": "gelu_new", + "add_cross_attention": false, + "architectures": [ + "GPT2LMHeadModel" + ], + "attn_pdrop": 0.1, + "bos_token_id": 5, + "dtype": "float32", + "embd_pdrop": 0.1, + "eos_token_id": 6, + "initializer_range": 0.02, + "layer_norm_epsilon": 1e-05, + "model_type": "gpt2", + "n_embd": 768, + "n_head": 12, + "n_inner": null, + "n_layer": 6, + "n_positions": 1024, + "pad_token_id": null, + "reorder_and_upcast_attn": false, + "resid_pdrop": 0.1, + "scale_attn_by_inverse_layer_idx": false, + "scale_attn_weights": true, + "summary_activation": null, + "summary_first_dropout": 0.1, + "summary_proj_to_labels": true, + "summary_type": "cls_index", + "summary_use_proj": true, + "tie_word_embeddings": true, + "transformers_version": "5.5.3", + "use_cache": false, + "vocab_size": 304 +} diff --git a/hyperparameter/n3/realtabformer/rtf-n3-20260505_023447/rtf_checkpoints/checkpoint-1600/generation_config.json b/hyperparameter/n3/realtabformer/rtf-n3-20260505_023447/rtf_checkpoints/checkpoint-1600/generation_config.json new file mode 100644 index 0000000000000000000000000000000000000000..ffe89567780e75b5c22eade9be971483b9618f39 --- /dev/null +++ b/hyperparameter/n3/realtabformer/rtf-n3-20260505_023447/rtf_checkpoints/checkpoint-1600/generation_config.json @@ -0,0 +1,9 @@ +{ + "_from_model_config": true, + "bos_token_id": 5, + "eos_token_id": 6, + "output_attentions": false, + "output_hidden_states": false, + "transformers_version": "5.5.3", + "use_cache": true +} diff --git a/hyperparameter/n3/realtabformer/rtf-n3-20260505_023447/rtf_checkpoints/checkpoint-1600/model.safetensors b/hyperparameter/n3/realtabformer/rtf-n3-20260505_023447/rtf_checkpoints/checkpoint-1600/model.safetensors new file mode 100644 index 0000000000000000000000000000000000000000..cd3584220f32ed67baae6f4bf9bf2f28ae585c0e --- /dev/null +++ b/hyperparameter/n3/realtabformer/rtf-n3-20260505_023447/rtf_checkpoints/checkpoint-1600/model.safetensors @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:b3a437228fdb33adb7fc23190eef6a1aae70e529f197f7375b047815933b85c5 +size 174202312 diff --git a/hyperparameter/n3/realtabformer/rtf-n3-20260505_023447/rtf_checkpoints/checkpoint-1600/optimizer.pt b/hyperparameter/n3/realtabformer/rtf-n3-20260505_023447/rtf_checkpoints/checkpoint-1600/optimizer.pt new file mode 100644 index 0000000000000000000000000000000000000000..55bb76a51f9b1aa718f198f11a67625b3011cb01 --- /dev/null +++ b/hyperparameter/n3/realtabformer/rtf-n3-20260505_023447/rtf_checkpoints/checkpoint-1600/optimizer.pt @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:9af2e4d7cfcd8eed65a23b7990bf22da9fc6ee572b3c76c8986a5f082a60d9e7 +size 348453707 diff --git a/hyperparameter/n3/realtabformer/rtf-n3-20260505_023447/rtf_checkpoints/checkpoint-1600/rng_state.pth b/hyperparameter/n3/realtabformer/rtf-n3-20260505_023447/rtf_checkpoints/checkpoint-1600/rng_state.pth new file mode 100644 index 0000000000000000000000000000000000000000..fc9e1d75418a109d7b7bf8fb3f7a467bf43c0bcb --- /dev/null +++ b/hyperparameter/n3/realtabformer/rtf-n3-20260505_023447/rtf_checkpoints/checkpoint-1600/rng_state.pth @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:9f463f719c37b9f5ff784b3b8918f3dc95e079ee8bdff832116d8d5cea2fe7b8 +size 14645 diff --git a/hyperparameter/n3/realtabformer/rtf-n3-20260505_023447/rtf_checkpoints/checkpoint-1600/scaler.pt b/hyperparameter/n3/realtabformer/rtf-n3-20260505_023447/rtf_checkpoints/checkpoint-1600/scaler.pt new file mode 100644 index 0000000000000000000000000000000000000000..9b178f72ab5bf4b7b9bfecce5af17ade78d93239 --- /dev/null +++ b/hyperparameter/n3/realtabformer/rtf-n3-20260505_023447/rtf_checkpoints/checkpoint-1600/scaler.pt @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:0e4420338904222790575638e536e5d59f25756f58070a9dfc3e73602e7fbef5 +size 1383 diff --git a/hyperparameter/n3/realtabformer/rtf-n3-20260505_023447/rtf_checkpoints/checkpoint-1600/scheduler.pt b/hyperparameter/n3/realtabformer/rtf-n3-20260505_023447/rtf_checkpoints/checkpoint-1600/scheduler.pt new file mode 100644 index 0000000000000000000000000000000000000000..83500a8fe1514ed1b04fcb4d90fae8b9584a5b1b --- /dev/null +++ b/hyperparameter/n3/realtabformer/rtf-n3-20260505_023447/rtf_checkpoints/checkpoint-1600/scheduler.pt @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:13fefe45da3d0f5f01f47b2552ed6591d9f78f39cce6ce75cce320b9e67a528b +size 1465 diff --git a/hyperparameter/n3/realtabformer/rtf-n3-20260505_023447/rtf_checkpoints/checkpoint-1600/trainer_state.json b/hyperparameter/n3/realtabformer/rtf-n3-20260505_023447/rtf_checkpoints/checkpoint-1600/trainer_state.json new file mode 100644 index 0000000000000000000000000000000000000000..8c41d5da558d4422fcd11bd5ff242ff9a4d7c30b --- /dev/null +++ b/hyperparameter/n3/realtabformer/rtf-n3-20260505_023447/rtf_checkpoints/checkpoint-1600/trainer_state.json @@ -0,0 +1,146 @@ +{ + "best_global_step": null, + "best_metric": null, + "best_model_checkpoint": null, + "epoch": 13.008163265306122, + "eval_steps": 100, + "global_step": 1600, + "is_hyper_param_search": false, + "is_local_process_zero": true, + "is_world_process_zero": true, + "log_history": [ + { + "epoch": 0.8163265306122449, + "grad_norm": 0.20653633773326874, + "learning_rate": 4.731707317073171e-05, + "loss": 1.4773538208007813, + "step": 100 + }, + { + "epoch": 1.6285714285714286, + "grad_norm": 0.20162753760814667, + "learning_rate": 4.460704607046071e-05, + "loss": 0.8820742034912109, + "step": 200 + }, + { + "epoch": 2.440816326530612, + "grad_norm": 0.19421112537384033, + "learning_rate": 4.1897018970189706e-05, + "loss": 0.840721435546875, + "step": 300 + }, + { + "epoch": 3.253061224489796, + "grad_norm": 0.18170130252838135, + "learning_rate": 3.91869918699187e-05, + "loss": 0.8214681243896484, + "step": 400 + }, + { + "epoch": 4.0653061224489795, + "grad_norm": 0.17708559334278107, + "learning_rate": 3.64769647696477e-05, + "loss": 0.8072810363769531, + "step": 500 + }, + { + "epoch": 4.881632653061224, + "grad_norm": 0.17813192307949066, + "learning_rate": 3.3766937669376695e-05, + "loss": 0.7988162994384765, + "step": 600 + }, + { + "epoch": 5.6938775510204085, + "grad_norm": 0.19233326613903046, + "learning_rate": 3.105691056910569e-05, + "loss": 0.7915788269042969, + "step": 700 + }, + { + "epoch": 6.506122448979592, + "grad_norm": 0.16748736798763275, + "learning_rate": 2.834688346883469e-05, + "loss": 0.785815200805664, + "step": 800 + }, + { + "epoch": 7.318367346938776, + "grad_norm": 0.16784754395484924, + "learning_rate": 2.5636856368563688e-05, + "loss": 0.7810878753662109, + "step": 900 + }, + { + "epoch": 8.130612244897959, + "grad_norm": 0.17746923863887787, + "learning_rate": 2.2926829268292687e-05, + "loss": 0.7754794311523437, + "step": 1000 + }, + { + "epoch": 8.946938775510205, + "grad_norm": 0.18434210121631622, + "learning_rate": 2.0216802168021682e-05, + "loss": 0.7718997955322265, + "step": 1100 + }, + { + "epoch": 9.759183673469387, + "grad_norm": 0.17485855519771576, + "learning_rate": 1.7506775067750677e-05, + "loss": 0.7666468048095703, + "step": 1200 + }, + { + "epoch": 10.571428571428571, + "grad_norm": 0.1655977964401245, + "learning_rate": 1.4796747967479676e-05, + "loss": 0.7619458770751953, + "step": 1300 + }, + { + "epoch": 11.383673469387755, + "grad_norm": 0.17600932717323303, + "learning_rate": 1.2086720867208673e-05, + "loss": 0.7599867248535156, + "step": 1400 + }, + { + "epoch": 12.19591836734694, + "grad_norm": 0.1805613487958908, + "learning_rate": 9.37669376693767e-06, + "loss": 0.7588233184814454, + "step": 1500 + }, + { + "epoch": 13.008163265306122, + "grad_norm": 0.1721809059381485, + "learning_rate": 6.666666666666667e-06, + "loss": 0.7540016937255859, + "step": 1600 + } + ], + "logging_steps": 100, + "max_steps": 1845, + "num_input_tokens_seen": 0, + "num_train_epochs": 15, + "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": 754297374081024.0, + "train_batch_size": 8, + "trial_name": null, + "trial_params": null +} diff --git a/hyperparameter/n3/realtabformer/rtf-n3-20260505_023447/rtf_checkpoints/checkpoint-1600/training_args.bin b/hyperparameter/n3/realtabformer/rtf-n3-20260505_023447/rtf_checkpoints/checkpoint-1600/training_args.bin new file mode 100644 index 0000000000000000000000000000000000000000..3b03c5f71fa818875cad290ece2b25ec27903e93 --- /dev/null +++ b/hyperparameter/n3/realtabformer/rtf-n3-20260505_023447/rtf_checkpoints/checkpoint-1600/training_args.bin @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:7e849067e43bb6650fce8e84fcf46f14551abb25b2511ace2d386dd951772602 +size 5201 diff --git a/hyperparameter/n3/realtabformer/rtf-n3-20260505_023447/rtf_checkpoints/checkpoint-1700/config.json b/hyperparameter/n3/realtabformer/rtf-n3-20260505_023447/rtf_checkpoints/checkpoint-1700/config.json new file mode 100644 index 0000000000000000000000000000000000000000..1876b75d3abc713ca867fe8e643ea273dc9cea87 --- /dev/null +++ b/hyperparameter/n3/realtabformer/rtf-n3-20260505_023447/rtf_checkpoints/checkpoint-1700/config.json @@ -0,0 +1,34 @@ +{ + "activation_function": "gelu_new", + "add_cross_attention": false, + "architectures": [ + "GPT2LMHeadModel" + ], + "attn_pdrop": 0.1, + "bos_token_id": 5, + "dtype": "float32", + "embd_pdrop": 0.1, + "eos_token_id": 6, + "initializer_range": 0.02, + "layer_norm_epsilon": 1e-05, + "model_type": "gpt2", + "n_embd": 768, + "n_head": 12, + "n_inner": null, + "n_layer": 6, + "n_positions": 1024, + "pad_token_id": null, + "reorder_and_upcast_attn": false, + "resid_pdrop": 0.1, + "scale_attn_by_inverse_layer_idx": false, + "scale_attn_weights": true, + "summary_activation": null, + "summary_first_dropout": 0.1, + "summary_proj_to_labels": true, + "summary_type": "cls_index", + "summary_use_proj": true, + "tie_word_embeddings": true, + "transformers_version": "5.5.3", + "use_cache": false, + "vocab_size": 304 +} diff --git a/hyperparameter/n3/realtabformer/rtf-n3-20260505_023447/rtf_checkpoints/checkpoint-1700/generation_config.json b/hyperparameter/n3/realtabformer/rtf-n3-20260505_023447/rtf_checkpoints/checkpoint-1700/generation_config.json new file mode 100644 index 0000000000000000000000000000000000000000..ffe89567780e75b5c22eade9be971483b9618f39 --- /dev/null +++ b/hyperparameter/n3/realtabformer/rtf-n3-20260505_023447/rtf_checkpoints/checkpoint-1700/generation_config.json @@ -0,0 +1,9 @@ +{ + "_from_model_config": true, + "bos_token_id": 5, + "eos_token_id": 6, + "output_attentions": false, + "output_hidden_states": false, + "transformers_version": "5.5.3", + "use_cache": true +} diff --git a/hyperparameter/n3/realtabformer/rtf-n3-20260505_023447/rtf_checkpoints/checkpoint-1700/model.safetensors b/hyperparameter/n3/realtabformer/rtf-n3-20260505_023447/rtf_checkpoints/checkpoint-1700/model.safetensors new file mode 100644 index 0000000000000000000000000000000000000000..50c4ab794342e4467a1abc952a0ff57761331738 --- /dev/null +++ b/hyperparameter/n3/realtabformer/rtf-n3-20260505_023447/rtf_checkpoints/checkpoint-1700/model.safetensors @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:264a5d6874ca4af8572bc594c74674f5f968ec94c9b710994603c644d7dcdf08 +size 174202312 diff --git a/hyperparameter/n3/realtabformer/rtf-n3-20260505_023447/rtf_checkpoints/checkpoint-1700/optimizer.pt b/hyperparameter/n3/realtabformer/rtf-n3-20260505_023447/rtf_checkpoints/checkpoint-1700/optimizer.pt new file mode 100644 index 0000000000000000000000000000000000000000..d12554348f88fad1220b4f614ed11b20ec395014 --- /dev/null +++ b/hyperparameter/n3/realtabformer/rtf-n3-20260505_023447/rtf_checkpoints/checkpoint-1700/optimizer.pt @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:d202f93665c99d2788f4f876b0c93555c865c74457c2d2602710ab9c277a8d2c +size 348453707 diff --git a/hyperparameter/n3/realtabformer/rtf-n3-20260505_023447/rtf_checkpoints/checkpoint-1700/rng_state.pth b/hyperparameter/n3/realtabformer/rtf-n3-20260505_023447/rtf_checkpoints/checkpoint-1700/rng_state.pth new file mode 100644 index 0000000000000000000000000000000000000000..aadc3e15b1045a422ec13be79968b2c3ce82dced --- /dev/null +++ b/hyperparameter/n3/realtabformer/rtf-n3-20260505_023447/rtf_checkpoints/checkpoint-1700/rng_state.pth @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:cb6b2669e0c4fda3303d46c0058c1ad471409112c4082df89b706b925b356d7a +size 14645 diff --git a/hyperparameter/n3/realtabformer/rtf-n3-20260505_023447/rtf_checkpoints/checkpoint-1700/scaler.pt b/hyperparameter/n3/realtabformer/rtf-n3-20260505_023447/rtf_checkpoints/checkpoint-1700/scaler.pt new file mode 100644 index 0000000000000000000000000000000000000000..27ece9d1d243bbea8fca8f67d7e785fe7f212a1b --- /dev/null +++ b/hyperparameter/n3/realtabformer/rtf-n3-20260505_023447/rtf_checkpoints/checkpoint-1700/scaler.pt @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:fa51844685f0c9eba4b82b43196c2b2110d38e25e38d9a8664bf3dec077ba414 +size 1383 diff --git a/hyperparameter/n3/realtabformer/rtf-n3-20260505_023447/rtf_checkpoints/checkpoint-1700/scheduler.pt b/hyperparameter/n3/realtabformer/rtf-n3-20260505_023447/rtf_checkpoints/checkpoint-1700/scheduler.pt new file mode 100644 index 0000000000000000000000000000000000000000..c5c93ab61df94561be71086b93c1b5c96bcae928 --- /dev/null +++ b/hyperparameter/n3/realtabformer/rtf-n3-20260505_023447/rtf_checkpoints/checkpoint-1700/scheduler.pt @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:bd215d16b1c1f162ba40eabe7999cd9967fcda3e86bd3f8b95727695b2a84b3c +size 1465 diff --git a/hyperparameter/n3/realtabformer/rtf-n3-20260505_023447/rtf_checkpoints/checkpoint-1700/trainer_state.json b/hyperparameter/n3/realtabformer/rtf-n3-20260505_023447/rtf_checkpoints/checkpoint-1700/trainer_state.json new file mode 100644 index 0000000000000000000000000000000000000000..bd8f5ca15341ef223864c8881a71d78701a0564f --- /dev/null +++ b/hyperparameter/n3/realtabformer/rtf-n3-20260505_023447/rtf_checkpoints/checkpoint-1700/trainer_state.json @@ -0,0 +1,153 @@ +{ + "best_global_step": null, + "best_metric": null, + "best_model_checkpoint": null, + "epoch": 13.824489795918367, + "eval_steps": 100, + "global_step": 1700, + "is_hyper_param_search": false, + "is_local_process_zero": true, + "is_world_process_zero": true, + "log_history": [ + { + "epoch": 0.8163265306122449, + "grad_norm": 0.20653633773326874, + "learning_rate": 4.731707317073171e-05, + "loss": 1.4773538208007813, + "step": 100 + }, + { + "epoch": 1.6285714285714286, + "grad_norm": 0.20162753760814667, + "learning_rate": 4.460704607046071e-05, + "loss": 0.8820742034912109, + "step": 200 + }, + { + "epoch": 2.440816326530612, + "grad_norm": 0.19421112537384033, + "learning_rate": 4.1897018970189706e-05, + "loss": 0.840721435546875, + "step": 300 + }, + { + "epoch": 3.253061224489796, + "grad_norm": 0.18170130252838135, + "learning_rate": 3.91869918699187e-05, + "loss": 0.8214681243896484, + "step": 400 + }, + { + "epoch": 4.0653061224489795, + "grad_norm": 0.17708559334278107, + "learning_rate": 3.64769647696477e-05, + "loss": 0.8072810363769531, + "step": 500 + }, + { + "epoch": 4.881632653061224, + "grad_norm": 0.17813192307949066, + "learning_rate": 3.3766937669376695e-05, + "loss": 0.7988162994384765, + "step": 600 + }, + { + "epoch": 5.6938775510204085, + "grad_norm": 0.19233326613903046, + "learning_rate": 3.105691056910569e-05, + "loss": 0.7915788269042969, + "step": 700 + }, + { + "epoch": 6.506122448979592, + "grad_norm": 0.16748736798763275, + "learning_rate": 2.834688346883469e-05, + "loss": 0.785815200805664, + "step": 800 + }, + { + "epoch": 7.318367346938776, + "grad_norm": 0.16784754395484924, + "learning_rate": 2.5636856368563688e-05, + "loss": 0.7810878753662109, + "step": 900 + }, + { + "epoch": 8.130612244897959, + "grad_norm": 0.17746923863887787, + "learning_rate": 2.2926829268292687e-05, + "loss": 0.7754794311523437, + "step": 1000 + }, + { + "epoch": 8.946938775510205, + "grad_norm": 0.18434210121631622, + "learning_rate": 2.0216802168021682e-05, + "loss": 0.7718997955322265, + "step": 1100 + }, + { + "epoch": 9.759183673469387, + "grad_norm": 0.17485855519771576, + "learning_rate": 1.7506775067750677e-05, + "loss": 0.7666468048095703, + "step": 1200 + }, + { + "epoch": 10.571428571428571, + "grad_norm": 0.1655977964401245, + "learning_rate": 1.4796747967479676e-05, + "loss": 0.7619458770751953, + "step": 1300 + }, + { + "epoch": 11.383673469387755, + "grad_norm": 0.17600932717323303, + "learning_rate": 1.2086720867208673e-05, + "loss": 0.7599867248535156, + "step": 1400 + }, + { + "epoch": 12.19591836734694, + "grad_norm": 0.1805613487958908, + "learning_rate": 9.37669376693767e-06, + "loss": 0.7588233184814454, + "step": 1500 + }, + { + "epoch": 13.008163265306122, + "grad_norm": 0.1721809059381485, + "learning_rate": 6.666666666666667e-06, + "loss": 0.7540016937255859, + "step": 1600 + }, + { + "epoch": 13.824489795918367, + "grad_norm": 0.18498310446739197, + "learning_rate": 3.956639566395664e-06, + "loss": 0.7514662170410156, + "step": 1700 + } + ], + "logging_steps": 100, + "max_steps": 1845, + "num_input_tokens_seen": 0, + "num_train_epochs": 15, + "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": 801657410125824.0, + "train_batch_size": 8, + "trial_name": null, + "trial_params": null +} diff --git a/hyperparameter/n3/realtabformer/rtf-n3-20260505_023447/rtf_checkpoints/checkpoint-1700/training_args.bin b/hyperparameter/n3/realtabformer/rtf-n3-20260505_023447/rtf_checkpoints/checkpoint-1700/training_args.bin new file mode 100644 index 0000000000000000000000000000000000000000..3b03c5f71fa818875cad290ece2b25ec27903e93 --- /dev/null +++ b/hyperparameter/n3/realtabformer/rtf-n3-20260505_023447/rtf_checkpoints/checkpoint-1700/training_args.bin @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:7e849067e43bb6650fce8e84fcf46f14551abb25b2511ace2d386dd951772602 +size 5201 diff --git a/hyperparameter/n3/realtabformer/rtf-n3-20260505_023447/rtf_checkpoints/checkpoint-1722/config.json b/hyperparameter/n3/realtabformer/rtf-n3-20260505_023447/rtf_checkpoints/checkpoint-1722/config.json new file mode 100644 index 0000000000000000000000000000000000000000..1876b75d3abc713ca867fe8e643ea273dc9cea87 --- /dev/null +++ b/hyperparameter/n3/realtabformer/rtf-n3-20260505_023447/rtf_checkpoints/checkpoint-1722/config.json @@ -0,0 +1,34 @@ +{ + "activation_function": "gelu_new", + "add_cross_attention": false, + "architectures": [ + "GPT2LMHeadModel" + ], + "attn_pdrop": 0.1, + "bos_token_id": 5, + "dtype": "float32", + "embd_pdrop": 0.1, + "eos_token_id": 6, + "initializer_range": 0.02, + "layer_norm_epsilon": 1e-05, + "model_type": "gpt2", + "n_embd": 768, + "n_head": 12, + "n_inner": null, + "n_layer": 6, + "n_positions": 1024, + "pad_token_id": null, + "reorder_and_upcast_attn": false, + "resid_pdrop": 0.1, + "scale_attn_by_inverse_layer_idx": false, + "scale_attn_weights": true, + "summary_activation": null, + "summary_first_dropout": 0.1, + "summary_proj_to_labels": true, + "summary_type": "cls_index", + "summary_use_proj": true, + "tie_word_embeddings": true, + "transformers_version": "5.5.3", + "use_cache": false, + "vocab_size": 304 +} diff --git a/hyperparameter/n3/realtabformer/rtf-n3-20260505_023447/rtf_checkpoints/checkpoint-1722/generation_config.json b/hyperparameter/n3/realtabformer/rtf-n3-20260505_023447/rtf_checkpoints/checkpoint-1722/generation_config.json new file mode 100644 index 0000000000000000000000000000000000000000..ffe89567780e75b5c22eade9be971483b9618f39 --- /dev/null +++ b/hyperparameter/n3/realtabformer/rtf-n3-20260505_023447/rtf_checkpoints/checkpoint-1722/generation_config.json @@ -0,0 +1,9 @@ +{ + "_from_model_config": true, + "bos_token_id": 5, + "eos_token_id": 6, + "output_attentions": false, + "output_hidden_states": false, + "transformers_version": "5.5.3", + "use_cache": true +} diff --git a/hyperparameter/n3/realtabformer/rtf-n3-20260505_023447/rtf_checkpoints/checkpoint-1722/model.safetensors b/hyperparameter/n3/realtabformer/rtf-n3-20260505_023447/rtf_checkpoints/checkpoint-1722/model.safetensors new file mode 100644 index 0000000000000000000000000000000000000000..a3f6467772f1a2ae91ae0bc81ea0abbf64e7d2f5 --- /dev/null +++ b/hyperparameter/n3/realtabformer/rtf-n3-20260505_023447/rtf_checkpoints/checkpoint-1722/model.safetensors @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:dc4701a23017c7a75259cc16f316cc3c378af080cd64eb8fded46f6dc9778454 +size 174202312 diff --git a/hyperparameter/n3/realtabformer/rtf-n3-20260505_023447/rtf_checkpoints/checkpoint-1722/optimizer.pt b/hyperparameter/n3/realtabformer/rtf-n3-20260505_023447/rtf_checkpoints/checkpoint-1722/optimizer.pt new file mode 100644 index 0000000000000000000000000000000000000000..563ab29cabea636a421e9835f29c6f5195ec94d5 --- /dev/null +++ b/hyperparameter/n3/realtabformer/rtf-n3-20260505_023447/rtf_checkpoints/checkpoint-1722/optimizer.pt @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:b98585885f5c4135fb42eada287e3edb1155bf241cdd2a3a527a84f91a784ece +size 348453707 diff --git a/hyperparameter/n3/realtabformer/rtf-n3-20260505_023447/rtf_checkpoints/checkpoint-1722/rng_state.pth b/hyperparameter/n3/realtabformer/rtf-n3-20260505_023447/rtf_checkpoints/checkpoint-1722/rng_state.pth new file mode 100644 index 0000000000000000000000000000000000000000..dece8766739422241122bdb689082097bf7f5cd4 --- /dev/null +++ b/hyperparameter/n3/realtabformer/rtf-n3-20260505_023447/rtf_checkpoints/checkpoint-1722/rng_state.pth @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:66ea470ea9a10c08a7bcd46202f8c82e283b3c3779e0163405affac7880d41f0 +size 14645 diff --git a/hyperparameter/n3/realtabformer/rtf-n3-20260505_023447/rtf_checkpoints/checkpoint-1722/scaler.pt b/hyperparameter/n3/realtabformer/rtf-n3-20260505_023447/rtf_checkpoints/checkpoint-1722/scaler.pt new file mode 100644 index 0000000000000000000000000000000000000000..3c478bedcd4c4fc5f7594a9ae2267cf92168135e --- /dev/null +++ b/hyperparameter/n3/realtabformer/rtf-n3-20260505_023447/rtf_checkpoints/checkpoint-1722/scaler.pt @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:ecbab866a143ca432fb5a5f1630cae817f953102c2be47557ff952af0a1a6c47 +size 1383 diff --git a/hyperparameter/n3/realtabformer/rtf-n3-20260505_023447/rtf_checkpoints/checkpoint-1722/scheduler.pt b/hyperparameter/n3/realtabformer/rtf-n3-20260505_023447/rtf_checkpoints/checkpoint-1722/scheduler.pt new file mode 100644 index 0000000000000000000000000000000000000000..73099eeb1c8592853e435b8244b33d9ab41f8aca --- /dev/null +++ b/hyperparameter/n3/realtabformer/rtf-n3-20260505_023447/rtf_checkpoints/checkpoint-1722/scheduler.pt @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:b49286eda52f7ab412c094b8c781eb1afcfbd5a4af2ff7d9121dfaf520fc3233 +size 1465 diff --git a/hyperparameter/n3/realtabformer/rtf-n3-20260505_023447/rtf_checkpoints/checkpoint-1722/trainer_state.json b/hyperparameter/n3/realtabformer/rtf-n3-20260505_023447/rtf_checkpoints/checkpoint-1722/trainer_state.json new file mode 100644 index 0000000000000000000000000000000000000000..e6fcde4f26631b55976c0a8adb43a2d51b5a76fa --- /dev/null +++ b/hyperparameter/n3/realtabformer/rtf-n3-20260505_023447/rtf_checkpoints/checkpoint-1722/trainer_state.json @@ -0,0 +1,153 @@ +{ + "best_global_step": null, + "best_metric": null, + "best_model_checkpoint": null, + "epoch": 14.0, + "eval_steps": 100, + "global_step": 1722, + "is_hyper_param_search": false, + "is_local_process_zero": true, + "is_world_process_zero": true, + "log_history": [ + { + "epoch": 0.8163265306122449, + "grad_norm": 0.20653633773326874, + "learning_rate": 4.731707317073171e-05, + "loss": 1.4773538208007813, + "step": 100 + }, + { + "epoch": 1.6285714285714286, + "grad_norm": 0.20162753760814667, + "learning_rate": 4.460704607046071e-05, + "loss": 0.8820742034912109, + "step": 200 + }, + { + "epoch": 2.440816326530612, + "grad_norm": 0.19421112537384033, + "learning_rate": 4.1897018970189706e-05, + "loss": 0.840721435546875, + "step": 300 + }, + { + "epoch": 3.253061224489796, + "grad_norm": 0.18170130252838135, + "learning_rate": 3.91869918699187e-05, + "loss": 0.8214681243896484, + "step": 400 + }, + { + "epoch": 4.0653061224489795, + "grad_norm": 0.17708559334278107, + "learning_rate": 3.64769647696477e-05, + "loss": 0.8072810363769531, + "step": 500 + }, + { + "epoch": 4.881632653061224, + "grad_norm": 0.17813192307949066, + "learning_rate": 3.3766937669376695e-05, + "loss": 0.7988162994384765, + "step": 600 + }, + { + "epoch": 5.6938775510204085, + "grad_norm": 0.19233326613903046, + "learning_rate": 3.105691056910569e-05, + "loss": 0.7915788269042969, + "step": 700 + }, + { + "epoch": 6.506122448979592, + "grad_norm": 0.16748736798763275, + "learning_rate": 2.834688346883469e-05, + "loss": 0.785815200805664, + "step": 800 + }, + { + "epoch": 7.318367346938776, + "grad_norm": 0.16784754395484924, + "learning_rate": 2.5636856368563688e-05, + "loss": 0.7810878753662109, + "step": 900 + }, + { + "epoch": 8.130612244897959, + "grad_norm": 0.17746923863887787, + "learning_rate": 2.2926829268292687e-05, + "loss": 0.7754794311523437, + "step": 1000 + }, + { + "epoch": 8.946938775510205, + "grad_norm": 0.18434210121631622, + "learning_rate": 2.0216802168021682e-05, + "loss": 0.7718997955322265, + "step": 1100 + }, + { + "epoch": 9.759183673469387, + "grad_norm": 0.17485855519771576, + "learning_rate": 1.7506775067750677e-05, + "loss": 0.7666468048095703, + "step": 1200 + }, + { + "epoch": 10.571428571428571, + "grad_norm": 0.1655977964401245, + "learning_rate": 1.4796747967479676e-05, + "loss": 0.7619458770751953, + "step": 1300 + }, + { + "epoch": 11.383673469387755, + "grad_norm": 0.17600932717323303, + "learning_rate": 1.2086720867208673e-05, + "loss": 0.7599867248535156, + "step": 1400 + }, + { + "epoch": 12.19591836734694, + "grad_norm": 0.1805613487958908, + "learning_rate": 9.37669376693767e-06, + "loss": 0.7588233184814454, + "step": 1500 + }, + { + "epoch": 13.008163265306122, + "grad_norm": 0.1721809059381485, + "learning_rate": 6.666666666666667e-06, + "loss": 0.7540016937255859, + "step": 1600 + }, + { + "epoch": 13.824489795918367, + "grad_norm": 0.18498310446739197, + "learning_rate": 3.956639566395664e-06, + "loss": 0.7514662170410156, + "step": 1700 + } + ], + "logging_steps": 100, + "max_steps": 1845, + "num_input_tokens_seen": 0, + "num_train_epochs": 15, + "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": 811810217852928.0, + "train_batch_size": 8, + "trial_name": null, + "trial_params": null +} diff --git a/hyperparameter/n3/realtabformer/rtf-n3-20260505_023447/rtf_checkpoints/checkpoint-1722/training_args.bin b/hyperparameter/n3/realtabformer/rtf-n3-20260505_023447/rtf_checkpoints/checkpoint-1722/training_args.bin new file mode 100644 index 0000000000000000000000000000000000000000..3b03c5f71fa818875cad290ece2b25ec27903e93 --- /dev/null +++ b/hyperparameter/n3/realtabformer/rtf-n3-20260505_023447/rtf_checkpoints/checkpoint-1722/training_args.bin @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:7e849067e43bb6650fce8e84fcf46f14551abb25b2511ace2d386dd951772602 +size 5201 diff --git a/hyperparameter/n3/realtabformer/rtf-n3-20260505_023447/rtf_checkpoints/checkpoint-1800/config.json b/hyperparameter/n3/realtabformer/rtf-n3-20260505_023447/rtf_checkpoints/checkpoint-1800/config.json new file mode 100644 index 0000000000000000000000000000000000000000..1876b75d3abc713ca867fe8e643ea273dc9cea87 --- /dev/null +++ b/hyperparameter/n3/realtabformer/rtf-n3-20260505_023447/rtf_checkpoints/checkpoint-1800/config.json @@ -0,0 +1,34 @@ +{ + "activation_function": "gelu_new", + "add_cross_attention": false, + "architectures": [ + "GPT2LMHeadModel" + ], + "attn_pdrop": 0.1, + "bos_token_id": 5, + "dtype": "float32", + "embd_pdrop": 0.1, + "eos_token_id": 6, + "initializer_range": 0.02, + "layer_norm_epsilon": 1e-05, + "model_type": "gpt2", + "n_embd": 768, + "n_head": 12, + "n_inner": null, + "n_layer": 6, + "n_positions": 1024, + "pad_token_id": null, + "reorder_and_upcast_attn": false, + "resid_pdrop": 0.1, + "scale_attn_by_inverse_layer_idx": false, + "scale_attn_weights": true, + "summary_activation": null, + "summary_first_dropout": 0.1, + "summary_proj_to_labels": true, + "summary_type": "cls_index", + "summary_use_proj": true, + "tie_word_embeddings": true, + "transformers_version": "5.5.3", + "use_cache": false, + "vocab_size": 304 +} diff --git a/hyperparameter/n3/realtabformer/rtf-n3-20260505_023447/rtf_checkpoints/checkpoint-1800/generation_config.json b/hyperparameter/n3/realtabformer/rtf-n3-20260505_023447/rtf_checkpoints/checkpoint-1800/generation_config.json new file mode 100644 index 0000000000000000000000000000000000000000..ffe89567780e75b5c22eade9be971483b9618f39 --- /dev/null +++ b/hyperparameter/n3/realtabformer/rtf-n3-20260505_023447/rtf_checkpoints/checkpoint-1800/generation_config.json @@ -0,0 +1,9 @@ +{ + "_from_model_config": true, + "bos_token_id": 5, + "eos_token_id": 6, + "output_attentions": false, + "output_hidden_states": false, + "transformers_version": "5.5.3", + "use_cache": true +} diff --git a/hyperparameter/n3/realtabformer/rtf-n3-20260505_023447/rtf_checkpoints/checkpoint-1800/model.safetensors b/hyperparameter/n3/realtabformer/rtf-n3-20260505_023447/rtf_checkpoints/checkpoint-1800/model.safetensors new file mode 100644 index 0000000000000000000000000000000000000000..097314d578e0e0987837f452118edc506894d983 --- /dev/null +++ b/hyperparameter/n3/realtabformer/rtf-n3-20260505_023447/rtf_checkpoints/checkpoint-1800/model.safetensors @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:430cbdb1a6b84d3959e239c3c45c790127b1b92a2a18bbc47e182d85a355a118 +size 174202312 diff --git a/hyperparameter/n3/realtabformer/rtf-n3-20260505_023447/rtf_checkpoints/checkpoint-1800/optimizer.pt b/hyperparameter/n3/realtabformer/rtf-n3-20260505_023447/rtf_checkpoints/checkpoint-1800/optimizer.pt new file mode 100644 index 0000000000000000000000000000000000000000..82b78064ee03bb8a32eb40bb18596c1ac8b48198 --- /dev/null +++ b/hyperparameter/n3/realtabformer/rtf-n3-20260505_023447/rtf_checkpoints/checkpoint-1800/optimizer.pt @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:090ffd95c5bfe759a45232734dc6520a26b9171e072d2abdd389ac4b25a17d5d +size 348453707 diff --git a/hyperparameter/n3/realtabformer/rtf-n3-20260505_023447/rtf_checkpoints/checkpoint-1800/rng_state.pth b/hyperparameter/n3/realtabformer/rtf-n3-20260505_023447/rtf_checkpoints/checkpoint-1800/rng_state.pth new file mode 100644 index 0000000000000000000000000000000000000000..a4dc1f126485aa79b4692c098181e3857d8943d3 --- /dev/null +++ b/hyperparameter/n3/realtabformer/rtf-n3-20260505_023447/rtf_checkpoints/checkpoint-1800/rng_state.pth @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:9543e2d1be1373a75f02d2af1cfc02301aa7eb7140f0c83fb5f5c7954c95b40f +size 14645 diff --git a/hyperparameter/n3/realtabformer/rtf-n3-20260505_023447/rtf_checkpoints/checkpoint-1800/scaler.pt b/hyperparameter/n3/realtabformer/rtf-n3-20260505_023447/rtf_checkpoints/checkpoint-1800/scaler.pt new file mode 100644 index 0000000000000000000000000000000000000000..b53b2657eb911de2ffce3990fb65099310727186 --- /dev/null +++ b/hyperparameter/n3/realtabformer/rtf-n3-20260505_023447/rtf_checkpoints/checkpoint-1800/scaler.pt @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:fa0408efb69cab96d5bab9a1aaf44cedbc9fc8d34f4cef378d81605e5c026d5c +size 1383 diff --git a/hyperparameter/n3/realtabformer/rtf-n3-20260505_023447/rtf_checkpoints/checkpoint-1800/scheduler.pt b/hyperparameter/n3/realtabformer/rtf-n3-20260505_023447/rtf_checkpoints/checkpoint-1800/scheduler.pt new file mode 100644 index 0000000000000000000000000000000000000000..3e7b1ab9146371c874aa67cc3244208ec5df3280 --- /dev/null +++ b/hyperparameter/n3/realtabformer/rtf-n3-20260505_023447/rtf_checkpoints/checkpoint-1800/scheduler.pt @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:f543f81f5d301bc6fa3963b35141b86b04e7fccb0f8dfdb80cbb29e16d58ab28 +size 1465 diff --git a/hyperparameter/n3/realtabformer/rtf-n3-20260505_023447/rtf_checkpoints/checkpoint-1800/trainer_state.json b/hyperparameter/n3/realtabformer/rtf-n3-20260505_023447/rtf_checkpoints/checkpoint-1800/trainer_state.json new file mode 100644 index 0000000000000000000000000000000000000000..43fbcbf6193bac5bc8b2ce6f305c1087be1e2cfb --- /dev/null +++ b/hyperparameter/n3/realtabformer/rtf-n3-20260505_023447/rtf_checkpoints/checkpoint-1800/trainer_state.json @@ -0,0 +1,160 @@ +{ + "best_global_step": null, + "best_metric": null, + "best_model_checkpoint": null, + "epoch": 14.636734693877552, + "eval_steps": 100, + "global_step": 1800, + "is_hyper_param_search": false, + "is_local_process_zero": true, + "is_world_process_zero": true, + "log_history": [ + { + "epoch": 0.8163265306122449, + "grad_norm": 0.20653633773326874, + "learning_rate": 4.731707317073171e-05, + "loss": 1.4773538208007813, + "step": 100 + }, + { + "epoch": 1.6285714285714286, + "grad_norm": 0.20162753760814667, + "learning_rate": 4.460704607046071e-05, + "loss": 0.8820742034912109, + "step": 200 + }, + { + "epoch": 2.440816326530612, + "grad_norm": 0.19421112537384033, + "learning_rate": 4.1897018970189706e-05, + "loss": 0.840721435546875, + "step": 300 + }, + { + "epoch": 3.253061224489796, + "grad_norm": 0.18170130252838135, + "learning_rate": 3.91869918699187e-05, + "loss": 0.8214681243896484, + "step": 400 + }, + { + "epoch": 4.0653061224489795, + "grad_norm": 0.17708559334278107, + "learning_rate": 3.64769647696477e-05, + "loss": 0.8072810363769531, + "step": 500 + }, + { + "epoch": 4.881632653061224, + "grad_norm": 0.17813192307949066, + "learning_rate": 3.3766937669376695e-05, + "loss": 0.7988162994384765, + "step": 600 + }, + { + "epoch": 5.6938775510204085, + "grad_norm": 0.19233326613903046, + "learning_rate": 3.105691056910569e-05, + "loss": 0.7915788269042969, + "step": 700 + }, + { + "epoch": 6.506122448979592, + "grad_norm": 0.16748736798763275, + "learning_rate": 2.834688346883469e-05, + "loss": 0.785815200805664, + "step": 800 + }, + { + "epoch": 7.318367346938776, + "grad_norm": 0.16784754395484924, + "learning_rate": 2.5636856368563688e-05, + "loss": 0.7810878753662109, + "step": 900 + }, + { + "epoch": 8.130612244897959, + "grad_norm": 0.17746923863887787, + "learning_rate": 2.2926829268292687e-05, + "loss": 0.7754794311523437, + "step": 1000 + }, + { + "epoch": 8.946938775510205, + "grad_norm": 0.18434210121631622, + "learning_rate": 2.0216802168021682e-05, + "loss": 0.7718997955322265, + "step": 1100 + }, + { + "epoch": 9.759183673469387, + "grad_norm": 0.17485855519771576, + "learning_rate": 1.7506775067750677e-05, + "loss": 0.7666468048095703, + "step": 1200 + }, + { + "epoch": 10.571428571428571, + "grad_norm": 0.1655977964401245, + "learning_rate": 1.4796747967479676e-05, + "loss": 0.7619458770751953, + "step": 1300 + }, + { + "epoch": 11.383673469387755, + "grad_norm": 0.17600932717323303, + "learning_rate": 1.2086720867208673e-05, + "loss": 0.7599867248535156, + "step": 1400 + }, + { + "epoch": 12.19591836734694, + "grad_norm": 0.1805613487958908, + "learning_rate": 9.37669376693767e-06, + "loss": 0.7588233184814454, + "step": 1500 + }, + { + "epoch": 13.008163265306122, + "grad_norm": 0.1721809059381485, + "learning_rate": 6.666666666666667e-06, + "loss": 0.7540016937255859, + "step": 1600 + }, + { + "epoch": 13.824489795918367, + "grad_norm": 0.18498310446739197, + "learning_rate": 3.956639566395664e-06, + "loss": 0.7514662170410156, + "step": 1700 + }, + { + "epoch": 14.636734693877552, + "grad_norm": 0.19196784496307373, + "learning_rate": 1.2466124661246614e-06, + "loss": 0.7486325073242187, + "step": 1800 + } + ], + "logging_steps": 100, + "max_steps": 1845, + "num_input_tokens_seen": 0, + "num_train_epochs": 15, + "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": 848751045967872.0, + "train_batch_size": 8, + "trial_name": null, + "trial_params": null +} diff --git a/hyperparameter/n3/realtabformer/rtf-n3-20260505_023447/rtf_checkpoints/checkpoint-1800/training_args.bin b/hyperparameter/n3/realtabformer/rtf-n3-20260505_023447/rtf_checkpoints/checkpoint-1800/training_args.bin new file mode 100644 index 0000000000000000000000000000000000000000..3b03c5f71fa818875cad290ece2b25ec27903e93 --- /dev/null +++ b/hyperparameter/n3/realtabformer/rtf-n3-20260505_023447/rtf_checkpoints/checkpoint-1800/training_args.bin @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:7e849067e43bb6650fce8e84fcf46f14551abb25b2511ace2d386dd951772602 +size 5201 diff --git a/hyperparameter/n3/realtabformer/rtf-n3-20260505_023447/rtf_checkpoints/checkpoint-1845/config.json b/hyperparameter/n3/realtabformer/rtf-n3-20260505_023447/rtf_checkpoints/checkpoint-1845/config.json new file mode 100644 index 0000000000000000000000000000000000000000..1876b75d3abc713ca867fe8e643ea273dc9cea87 --- /dev/null +++ b/hyperparameter/n3/realtabformer/rtf-n3-20260505_023447/rtf_checkpoints/checkpoint-1845/config.json @@ -0,0 +1,34 @@ +{ + "activation_function": "gelu_new", + "add_cross_attention": false, + "architectures": [ + "GPT2LMHeadModel" + ], + "attn_pdrop": 0.1, + "bos_token_id": 5, + "dtype": "float32", + "embd_pdrop": 0.1, + "eos_token_id": 6, + "initializer_range": 0.02, + "layer_norm_epsilon": 1e-05, + "model_type": "gpt2", + "n_embd": 768, + "n_head": 12, + "n_inner": null, + "n_layer": 6, + "n_positions": 1024, + "pad_token_id": null, + "reorder_and_upcast_attn": false, + "resid_pdrop": 0.1, + "scale_attn_by_inverse_layer_idx": false, + "scale_attn_weights": true, + "summary_activation": null, + "summary_first_dropout": 0.1, + "summary_proj_to_labels": true, + "summary_type": "cls_index", + "summary_use_proj": true, + "tie_word_embeddings": true, + "transformers_version": "5.5.3", + "use_cache": false, + "vocab_size": 304 +} diff --git a/hyperparameter/n3/realtabformer/rtf-n3-20260505_023447/rtf_checkpoints/checkpoint-1845/generation_config.json b/hyperparameter/n3/realtabformer/rtf-n3-20260505_023447/rtf_checkpoints/checkpoint-1845/generation_config.json new file mode 100644 index 0000000000000000000000000000000000000000..ffe89567780e75b5c22eade9be971483b9618f39 --- /dev/null +++ b/hyperparameter/n3/realtabformer/rtf-n3-20260505_023447/rtf_checkpoints/checkpoint-1845/generation_config.json @@ -0,0 +1,9 @@ +{ + "_from_model_config": true, + "bos_token_id": 5, + "eos_token_id": 6, + "output_attentions": false, + "output_hidden_states": false, + "transformers_version": "5.5.3", + "use_cache": true +} diff --git a/hyperparameter/n3/realtabformer/rtf-n3-20260505_023447/rtf_checkpoints/checkpoint-1845/model.safetensors b/hyperparameter/n3/realtabformer/rtf-n3-20260505_023447/rtf_checkpoints/checkpoint-1845/model.safetensors new file mode 100644 index 0000000000000000000000000000000000000000..cd30bcd3ea43f12be5e30602d988c88909924250 --- /dev/null +++ b/hyperparameter/n3/realtabformer/rtf-n3-20260505_023447/rtf_checkpoints/checkpoint-1845/model.safetensors @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:d4a06c327a4e2e5fcc729b9500c4b87cafef6e2274c3d8b671e758c634fb91d2 +size 174202312 diff --git a/hyperparameter/n3/realtabformer/rtf-n3-20260505_023447/rtf_checkpoints/checkpoint-1845/optimizer.pt b/hyperparameter/n3/realtabformer/rtf-n3-20260505_023447/rtf_checkpoints/checkpoint-1845/optimizer.pt new file mode 100644 index 0000000000000000000000000000000000000000..a3f8883f646bea455060c3a5104cf6c8554db9b7 --- /dev/null +++ b/hyperparameter/n3/realtabformer/rtf-n3-20260505_023447/rtf_checkpoints/checkpoint-1845/optimizer.pt @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:b39c94f08dedab88ced82c02e464843831eccece1c6d1268ea8ec63b59e139fa +size 348453707 diff --git a/hyperparameter/n3/realtabformer/rtf-n3-20260505_023447/rtf_checkpoints/checkpoint-1845/rng_state.pth b/hyperparameter/n3/realtabformer/rtf-n3-20260505_023447/rtf_checkpoints/checkpoint-1845/rng_state.pth new file mode 100644 index 0000000000000000000000000000000000000000..b4ee888959e002a0d293720f6ee4570386295d37 --- /dev/null +++ b/hyperparameter/n3/realtabformer/rtf-n3-20260505_023447/rtf_checkpoints/checkpoint-1845/rng_state.pth @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:c2c3317aca8b0ef466034d4eb4783c9c9f13e0ae3f320f91447e4e146335a040 +size 14645 diff --git a/hyperparameter/n3/realtabformer/rtf-n3-20260505_023447/rtf_checkpoints/checkpoint-1845/scaler.pt b/hyperparameter/n3/realtabformer/rtf-n3-20260505_023447/rtf_checkpoints/checkpoint-1845/scaler.pt new file mode 100644 index 0000000000000000000000000000000000000000..7d22be746790a898f7c36f5dfd7f9e9176176de3 --- /dev/null +++ b/hyperparameter/n3/realtabformer/rtf-n3-20260505_023447/rtf_checkpoints/checkpoint-1845/scaler.pt @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:76e09b35248f71fb0237b1411ed9726b134febc1a3d2f7db206e9a0cf8c43177 +size 1383 diff --git a/hyperparameter/n3/realtabformer/rtf-n3-20260505_023447/rtf_checkpoints/checkpoint-1845/scheduler.pt b/hyperparameter/n3/realtabformer/rtf-n3-20260505_023447/rtf_checkpoints/checkpoint-1845/scheduler.pt new file mode 100644 index 0000000000000000000000000000000000000000..dd63f5174d1c0c78b6e595133d3f1e4823221dfe --- /dev/null +++ b/hyperparameter/n3/realtabformer/rtf-n3-20260505_023447/rtf_checkpoints/checkpoint-1845/scheduler.pt @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:a33773f415e97f36da7c170b1c442311c0ccad08026bde21caab2955eb2f4b72 +size 1465 diff --git a/hyperparameter/n3/realtabformer/rtf-n3-20260505_023447/rtf_checkpoints/checkpoint-1845/trainer_state.json b/hyperparameter/n3/realtabformer/rtf-n3-20260505_023447/rtf_checkpoints/checkpoint-1845/trainer_state.json new file mode 100644 index 0000000000000000000000000000000000000000..318e8acc91529b67b462b99a2b53cb76de31d6f1 --- /dev/null +++ b/hyperparameter/n3/realtabformer/rtf-n3-20260505_023447/rtf_checkpoints/checkpoint-1845/trainer_state.json @@ -0,0 +1,160 @@ +{ + "best_global_step": null, + "best_metric": null, + "best_model_checkpoint": null, + "epoch": 15.0, + "eval_steps": 100, + "global_step": 1845, + "is_hyper_param_search": false, + "is_local_process_zero": true, + "is_world_process_zero": true, + "log_history": [ + { + "epoch": 0.8163265306122449, + "grad_norm": 0.20653633773326874, + "learning_rate": 4.731707317073171e-05, + "loss": 1.4773538208007813, + "step": 100 + }, + { + "epoch": 1.6285714285714286, + "grad_norm": 0.20162753760814667, + "learning_rate": 4.460704607046071e-05, + "loss": 0.8820742034912109, + "step": 200 + }, + { + "epoch": 2.440816326530612, + "grad_norm": 0.19421112537384033, + "learning_rate": 4.1897018970189706e-05, + "loss": 0.840721435546875, + "step": 300 + }, + { + "epoch": 3.253061224489796, + "grad_norm": 0.18170130252838135, + "learning_rate": 3.91869918699187e-05, + "loss": 0.8214681243896484, + "step": 400 + }, + { + "epoch": 4.0653061224489795, + "grad_norm": 0.17708559334278107, + "learning_rate": 3.64769647696477e-05, + "loss": 0.8072810363769531, + "step": 500 + }, + { + "epoch": 4.881632653061224, + "grad_norm": 0.17813192307949066, + "learning_rate": 3.3766937669376695e-05, + "loss": 0.7988162994384765, + "step": 600 + }, + { + "epoch": 5.6938775510204085, + "grad_norm": 0.19233326613903046, + "learning_rate": 3.105691056910569e-05, + "loss": 0.7915788269042969, + "step": 700 + }, + { + "epoch": 6.506122448979592, + "grad_norm": 0.16748736798763275, + "learning_rate": 2.834688346883469e-05, + "loss": 0.785815200805664, + "step": 800 + }, + { + "epoch": 7.318367346938776, + "grad_norm": 0.16784754395484924, + "learning_rate": 2.5636856368563688e-05, + "loss": 0.7810878753662109, + "step": 900 + }, + { + "epoch": 8.130612244897959, + "grad_norm": 0.17746923863887787, + "learning_rate": 2.2926829268292687e-05, + "loss": 0.7754794311523437, + "step": 1000 + }, + { + "epoch": 8.946938775510205, + "grad_norm": 0.18434210121631622, + "learning_rate": 2.0216802168021682e-05, + "loss": 0.7718997955322265, + "step": 1100 + }, + { + "epoch": 9.759183673469387, + "grad_norm": 0.17485855519771576, + "learning_rate": 1.7506775067750677e-05, + "loss": 0.7666468048095703, + "step": 1200 + }, + { + "epoch": 10.571428571428571, + "grad_norm": 0.1655977964401245, + "learning_rate": 1.4796747967479676e-05, + "loss": 0.7619458770751953, + "step": 1300 + }, + { + "epoch": 11.383673469387755, + "grad_norm": 0.17600932717323303, + "learning_rate": 1.2086720867208673e-05, + "loss": 0.7599867248535156, + "step": 1400 + }, + { + "epoch": 12.19591836734694, + "grad_norm": 0.1805613487958908, + "learning_rate": 9.37669376693767e-06, + "loss": 0.7588233184814454, + "step": 1500 + }, + { + "epoch": 13.008163265306122, + "grad_norm": 0.1721809059381485, + "learning_rate": 6.666666666666667e-06, + "loss": 0.7540016937255859, + "step": 1600 + }, + { + "epoch": 13.824489795918367, + "grad_norm": 0.18498310446739197, + "learning_rate": 3.956639566395664e-06, + "loss": 0.7514662170410156, + "step": 1700 + }, + { + "epoch": 14.636734693877552, + "grad_norm": 0.19196784496307373, + "learning_rate": 1.2466124661246614e-06, + "loss": 0.7486325073242187, + "step": 1800 + } + ], + "logging_steps": 100, + "max_steps": 1845, + "num_input_tokens_seen": 0, + "num_train_epochs": 15, + "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": 869796661985280.0, + "train_batch_size": 8, + "trial_name": null, + "trial_params": null +} diff --git a/hyperparameter/n3/realtabformer/rtf-n3-20260505_023447/rtf_checkpoints/checkpoint-1845/training_args.bin b/hyperparameter/n3/realtabformer/rtf-n3-20260505_023447/rtf_checkpoints/checkpoint-1845/training_args.bin new file mode 100644 index 0000000000000000000000000000000000000000..3b03c5f71fa818875cad290ece2b25ec27903e93 --- /dev/null +++ b/hyperparameter/n3/realtabformer/rtf-n3-20260505_023447/rtf_checkpoints/checkpoint-1845/training_args.bin @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:7e849067e43bb6650fce8e84fcf46f14551abb25b2511ace2d386dd951772602 +size 5201 diff --git a/hyperparameter/n3/realtabformer/rtf-n3-20260505_023447/run_config.json b/hyperparameter/n3/realtabformer/rtf-n3-20260505_023447/run_config.json new file mode 100644 index 0000000000000000000000000000000000000000..1794044a96a20ab507f32a4f66e981e4121ae87f --- /dev/null +++ b/hyperparameter/n3/realtabformer/rtf-n3-20260505_023447/run_config.json @@ -0,0 +1,40 @@ +{ + "schema_version": 1, + "recorded_at": "2026-05-05T02:34:47", + "dataset_id": "n3", + "model": "realtabformer", + "work_dir": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/n3/realtabformer/rtf-n3-20260505_023447", + "dataset_source_requested": "new", + "dataset_source_resolved": "new", + "cli_args": { + "model": "realtabformer", + "dataset": "n3", + "dataset_source": "new", + "train": true, + "generate": true, + "num_rows": 0, + "epochs": 15, + "output_dir": null, + "model_dir": null, + "work_dir": null, + "resume": false, + "no_stats": false + }, + "resolved": { + "num_rows": 3918, + "model_path": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/n3/realtabformer/rtf-n3-20260505_023447/models_15epochs", + "output_csv": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/n3/realtabformer/rtf-n3-20260505_023447/rtf-n3-3918-20260505_023728.csv" + }, + "input_artifacts": { + "public_gate_report": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/n3/realtabformer/rtf-n3-20260505_023447/public_gate/public_gate_report.json", + "public_manifest": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/n3/realtabformer/rtf-n3-20260505_023447/public_gate/staged_input_manifest.json", + "model_manifest": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/n3/realtabformer/rtf-n3-20260505_023447/staged/realtabformer/model_input_manifest.json", + "train_csv": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/n3/realtabformer/rtf-n3-20260505_023447/staged/public/train.csv", + "features_json": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/n3/realtabformer/rtf-n3-20260505_023447/staged/public/staged_features.json", + "target_column": "quality", + "task_type": "classification" + }, + "env_overrides": { + "BENCHMARK_REALTABFORMER_GPUS": "device=3" + } +} \ No newline at end of file diff --git a/hyperparameter/n3/realtabformer/rtf-n3-20260505_023447/runtime_result.json b/hyperparameter/n3/realtabformer/rtf-n3-20260505_023447/runtime_result.json new file mode 100644 index 0000000000000000000000000000000000000000..7fa8ad14e1e2cac7dc0f8b979064f06b0b855cc3 --- /dev/null +++ b/hyperparameter/n3/realtabformer/rtf-n3-20260505_023447/runtime_result.json @@ -0,0 +1,27 @@ +{ + "dataset_id": "n3", + "model": "realtabformer", + "run_id": "rtf-n3-20260505_023447", + "public_gate_status": "pass", + "adapter_ready_status": "pass", + "train_status": "success", + "generate_status": "success", + "reason_code": null, + "reason_detail": null, + "artifacts": { + "synthetic_csv": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/n3/realtabformer/rtf-n3-20260505_023447/rtf-n3-3918-20260505_023728.csv", + "model_path": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/n3/realtabformer/rtf-n3-20260505_023447/models_15epochs" + }, + "timings": { + "train": { + "started_at": "2026-05-05T02:34:47", + "ended_at": "2026-05-05T02:37:28", + "duration_sec": 160.835 + }, + "generate": { + "started_at": "2026-05-05T02:37:28", + "ended_at": "2026-05-05T02:38:44", + "duration_sec": 75.858 + } + } +} \ No newline at end of file diff --git a/hyperparameter/n3/realtabformer/rtf-n3-20260505_023447/staged/public/staged_features.json b/hyperparameter/n3/realtabformer/rtf-n3-20260505_023447/staged/public/staged_features.json new file mode 100644 index 0000000000000000000000000000000000000000..08fe4d766d091d2f2ddba724a16b9509cbe4c390 --- /dev/null +++ b/hyperparameter/n3/realtabformer/rtf-n3-20260505_023447/staged/public/staged_features.json @@ -0,0 +1,62 @@ +[ + { + "feature_name": "fixed acidity", + "data_type": "continuous", + "is_target": false + }, + { + "feature_name": "volatile acidity", + "data_type": "continuous", + "is_target": false + }, + { + "feature_name": "citric acid", + "data_type": "continuous", + "is_target": false + }, + { + "feature_name": "residual sugar", + "data_type": "continuous", + "is_target": false + }, + { + "feature_name": "chlorides", + "data_type": "continuous", + "is_target": false + }, + { + "feature_name": "free sulfur dioxide", + "data_type": "continuous", + "is_target": false + }, + { + "feature_name": "total sulfur dioxide", + "data_type": "continuous", + "is_target": false + }, + { + "feature_name": "density", + "data_type": "continuous", + "is_target": false + }, + { + "feature_name": "pH", + "data_type": "continuous", + "is_target": false + }, + { + "feature_name": "sulphates", + "data_type": "continuous", + "is_target": false + }, + { + "feature_name": "alcohol", + "data_type": "continuous", + "is_target": false + }, + { + "feature_name": "quality", + "data_type": "continuous", + "is_target": true + } +] \ No newline at end of file diff --git a/hyperparameter/n3/realtabformer/rtf-n3-20260505_023447/staged/public/test.csv b/hyperparameter/n3/realtabformer/rtf-n3-20260505_023447/staged/public/test.csv new file mode 100644 index 0000000000000000000000000000000000000000..db5cd50d3746410ea470625fa2ba2c8e9775cc0d --- /dev/null +++ b/hyperparameter/n3/realtabformer/rtf-n3-20260505_023447/staged/public/test.csv @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:19e107152a94432e2a37ff045c00cfe35e1be30208b1553080d7dd0ede256d3b +size 28944 diff --git a/hyperparameter/n3/realtabformer/rtf-n3-20260505_023447/staged/public/train.csv b/hyperparameter/n3/realtabformer/rtf-n3-20260505_023447/staged/public/train.csv new file mode 100644 index 0000000000000000000000000000000000000000..87ca26726fe82ccbaa397919305b043c17eb374e --- /dev/null +++ b/hyperparameter/n3/realtabformer/rtf-n3-20260505_023447/staged/public/train.csv @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:7813c8cca73ba4bfc6559215257b341c21e459980ad17ae6ddc809306bc9a0b9 +size 229945 diff --git a/hyperparameter/n3/realtabformer/rtf-n3-20260505_023447/staged/public/val.csv b/hyperparameter/n3/realtabformer/rtf-n3-20260505_023447/staged/public/val.csv new file mode 100644 index 0000000000000000000000000000000000000000..6acf84c76c47093b513c46d5503972a2dff275c0 --- /dev/null +++ b/hyperparameter/n3/realtabformer/rtf-n3-20260505_023447/staged/public/val.csv @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:cf5979d9675567d9d6642640c9b84fc6c49e492604144723c30f50516c05cee6 +size 28791 diff --git a/hyperparameter/n3/realtabformer/rtf-n3-20260505_023447/staged/realtabformer/adapter_report.json b/hyperparameter/n3/realtabformer/rtf-n3-20260505_023447/staged/realtabformer/adapter_report.json new file mode 100644 index 0000000000000000000000000000000000000000..6cf5dc383bb5186e916c5efb7df23674e07f0e50 --- /dev/null +++ b/hyperparameter/n3/realtabformer/rtf-n3-20260505_023447/staged/realtabformer/adapter_report.json @@ -0,0 +1,7 @@ +{ + "adapter_ready_status": "pass", + "adapter_fail_reason_code": null, + "adapter_fail_detail": null, + "adapter_transforms_applied": [], + "model_input_manifest": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/n3/realtabformer/rtf-n3-20260505_023447/staged/realtabformer/model_input_manifest.json" +} \ No newline at end of file diff --git a/hyperparameter/n3/realtabformer/rtf-n3-20260505_023447/staged/realtabformer/adapter_transforms_applied.json b/hyperparameter/n3/realtabformer/rtf-n3-20260505_023447/staged/realtabformer/adapter_transforms_applied.json new file mode 100644 index 0000000000000000000000000000000000000000..0637a088a01e8ddab3bf3fa98dbe804cbde1a0dc --- /dev/null +++ b/hyperparameter/n3/realtabformer/rtf-n3-20260505_023447/staged/realtabformer/adapter_transforms_applied.json @@ -0,0 +1 @@ +[] \ No newline at end of file diff --git a/hyperparameter/n3/realtabformer/rtf-n3-20260505_023447/staged/realtabformer/model_input_manifest.json b/hyperparameter/n3/realtabformer/rtf-n3-20260505_023447/staged/realtabformer/model_input_manifest.json new file mode 100644 index 0000000000000000000000000000000000000000..9b8abfbbc581330fb3d0193f7323b28df53ec2e1 --- /dev/null +++ b/hyperparameter/n3/realtabformer/rtf-n3-20260505_023447/staged/realtabformer/model_input_manifest.json @@ -0,0 +1,266 @@ +{ + "dataset_id": "n3", + "model": "realtabformer", + "target_column": "quality", + "task_type": "classification", + "column_schema": [ + { + "name": "fixed acidity", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 66, + "unique_ratio": 0.016845, + "example_values": [ + "7.1", + "8.5", + "6.4", + "6.8", + "7.6" + ] + } + }, + { + "name": "volatile acidity", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 121, + "unique_ratio": 0.030883, + "example_values": [ + "0.31", + "0.21", + "0.24", + "0.43", + "0.27" + ] + } + }, + { + "name": "citric acid", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 85, + "unique_ratio": 0.021695, + "example_values": [ + "0.17", + "0.41", + "0.31", + "0.25", + "0.3" + ] + } + }, + { + "name": "residual sugar", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 296, + "unique_ratio": 0.075549, + "example_values": [ + "1", + "4.3", + "2.8", + "13", + "12.9" + ] + } + }, + { + "name": "chlorides", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 147, + "unique_ratio": 0.037519, + "example_values": [ + "0.042", + "0.036", + "0.038", + "0.047", + "0.033" + ] + } + }, + { + "name": "free sulfur dioxide", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 120, + "unique_ratio": 0.030628, + "example_values": [ + "21", + "24", + "41", + "43", + "69" + ] + } + }, + { + "name": "total sulfur dioxide", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 244, + "unique_ratio": 0.062277, + "example_values": [ + "144", + "99", + "114", + "132", + "160" + ] + } + }, + { + "name": "density", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 839, + "unique_ratio": 0.21414, + "example_values": [ + "0.99304", + "0.9947", + "0.99155", + "0.98975", + "0.99705" + ] + } + }, + { + "name": "pH", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 100, + "unique_ratio": 0.025523, + "example_values": [ + "3.13", + "3.18", + "3.37", + "3.21", + "3.16" + ] + } + }, + { + "name": "sulphates", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 78, + "unique_ratio": 0.019908, + "example_values": [ + "0.4", + "0.53", + "0.66", + "0.47", + "0.5" + ] + } + }, + { + "name": "alcohol", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 97, + "unique_ratio": 0.024758, + "example_values": [ + "9.6", + "9.7", + "11.7", + "13.4", + "8.8" + ] + } + }, + { + "name": "quality", + "role": "target", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 7, + "unique_ratio": 0.001787, + "example_values": [ + "5", + "6", + "7", + "8", + "3" + ] + } + } + ], + "public_manifest": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/n3/realtabformer/rtf-n3-20260505_023447/public_gate/staged_input_manifest.json", + "train_csv": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/n3/realtabformer/rtf-n3-20260505_023447/staged/public/train.csv", + "val_csv": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/n3/realtabformer/rtf-n3-20260505_023447/staged/public/val.csv", + "test_csv": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/n3/realtabformer/rtf-n3-20260505_023447/staged/public/test.csv", + "features_json": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/n3/realtabformer/rtf-n3-20260505_023447/staged/public/staged_features.json", + "public_gate_report": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/n3/realtabformer/rtf-n3-20260505_023447/public_gate/public_gate_report.json" +} \ No newline at end of file diff --git a/hyperparameter/n3/realtabformer/rtf-n3-20260505_023447/train_20260505_023447.log b/hyperparameter/n3/realtabformer/rtf-n3-20260505_023447/train_20260505_023447.log new file mode 100644 index 0000000000000000000000000000000000000000..1dcf39fe52535bf222df8dd26a15dd28e2a9db42 --- /dev/null +++ b/hyperparameter/n3/realtabformer/rtf-n3-20260505_023447/train_20260505_023447.log @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:2378d4bb2eefa170cf1bfe30a267aea7290a42f2bc68911f651009ebf11df231 +size 71534 diff --git a/hyperparameter/n3/realtabformer/rtf-n3-20260505_023857/gen_20260505_024222.log b/hyperparameter/n3/realtabformer/rtf-n3-20260505_023857/gen_20260505_024222.log new file mode 100644 index 0000000000000000000000000000000000000000..414f2167f48cae540aca123bb82872622f5b8a26 --- /dev/null +++ b/hyperparameter/n3/realtabformer/rtf-n3-20260505_023857/gen_20260505_024222.log @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:dfec384d9e72950bbb5b7ceaa0aa8299d4acb9af74a97917b84016bddaa7f195 +size 2529 diff --git a/hyperparameter/n3/realtabformer/rtf-n3-20260505_023857/input_snapshot.json b/hyperparameter/n3/realtabformer/rtf-n3-20260505_023857/input_snapshot.json new file mode 100644 index 0000000000000000000000000000000000000000..db9a330f8472dedc095e195fd3a6da0d66be3b17 --- /dev/null +++ b/hyperparameter/n3/realtabformer/rtf-n3-20260505_023857/input_snapshot.json @@ -0,0 +1,36 @@ +{ + "dataset_id": "n3", + "model": "realtabformer", + "inputs": { + "train_csv": { + "path": "/data/jialinzhang/SynthesizePipeline-server/DatasetNew/n3/n3-train.csv", + "exists": true, + "size": 211519, + "sha256": "2160a06db2fea02adb0ebb79d8d853bd2544580be301e71f6e8deeb1489a9009" + }, + "val_csv": { + "path": "/data/jialinzhang/SynthesizePipeline-server/DatasetNew/n3/n3-val.csv", + "exists": true, + "size": 26499, + "sha256": "d5ccfee07dfa9e7bdee5bb87642b43828e09f74c6cc0266a3d19d9feaa83106e" + }, + "test_csv": { + "path": "/data/jialinzhang/SynthesizePipeline-server/DatasetNew/n3/n3-test.csv", + "exists": true, + "size": 26676, + "sha256": "6f83aacb0d1747b95e287352a7fff5d9d65a1c127b773852346c68485c4ede47" + }, + "profile_json": { + "path": "/data/jialinzhang/SynthesizePipeline-server/DatasetNew/artifacts/data_core/tabular/n3/n3-dataset_profile.json", + "exists": true, + "size": 5235, + "sha256": "23d2e5904a2ca90cbf8d6e3c75887681721e9b90cc705c31a680c11513d0c46f" + }, + "contract_json": { + "path": "/data/jialinzhang/SynthesizePipeline-server/DatasetNew/artifacts/data_core/tabular/n3/n3-dataset_contract_v1.json", + "exists": true, + "size": 6281, + "sha256": "c0cc56f5fe28e1b65927255c6e3c2b0e9479862c2ec6f2fea1664da36c9a3a09" + } + } +} \ No newline at end of file diff --git a/hyperparameter/n3/realtabformer/rtf-n3-20260505_023857/models_20epochs/id000017779201402510297088/rtf_config.json b/hyperparameter/n3/realtabformer/rtf-n3-20260505_023857/models_20epochs/id000017779201402510297088/rtf_config.json new file mode 100644 index 0000000000000000000000000000000000000000..92a79810507e8be8251b9d0add3c4f93c352ec8d --- /dev/null +++ b/hyperparameter/n3/realtabformer/rtf-n3-20260505_023857/models_20epochs/id000017779201402510297088/rtf_config.json @@ -0,0 +1 @@ +{"model_type": "tabular", "tabular_config": {"transformers_version": "5.5.3", "architectures": ["GPT2LMHeadModel"], "output_hidden_states": false, "return_dict": true, "dtype": "float32", "chunk_size_feed_forward": 0, "is_encoder_decoder": false, "id2label": {"0": "LABEL_0", "1": "LABEL_1"}, "label2id": {"LABEL_0": 0, "LABEL_1": 1}, "problem_type": null, "vocab_size": 304, "n_positions": 1024, "n_embd": 768, "n_layer": 6, "n_head": 12, "n_inner": null, "activation_function": "gelu_new", "resid_pdrop": 0.1, "embd_pdrop": 0.1, "attn_pdrop": 0.1, "layer_norm_epsilon": 1e-05, "initializer_range": 0.02, "summary_type": "cls_index", "summary_use_proj": true, "summary_activation": null, "summary_proj_to_labels": true, "summary_first_dropout": 0.1, "scale_attn_weights": true, "use_cache": false, "bos_token_id": 5, "eos_token_id": 6, "pad_token_id": null, "scale_attn_by_inverse_layer_idx": false, "reorder_and_upcast_attn": false, "add_cross_attention": false, "tie_word_embeddings": true, "_name_or_path": "", "model_type": "gpt2", "output_attentions": false}, "checkpoints_dir": "rtf_checkpoints", "samples_save_dir": "rtf_samples", "full_save_dir": "rtf_full_save", "epochs": 20, "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": 20, "per_device_train_batch_size": 8, "per_device_eval_batch_size": 8, "gradient_accumulation_steps": 4, "remove_unused_columns": true, "logging_steps": 100, "save_steps": 100, "eval_steps": 100, "load_best_model_at_end": false, "save_total_limit": 6, "optim": "adamw_torch"}, "train_size": 1, "mask_rate": 0, "columns": ["fixed acidity", "volatile acidity", "citric acid", "residual sugar", "chlorides", "free sulfur dioxide", "total sulfur dioxide", "density", "pH", "sulphates", "alcohol", "quality"], "column_dtypes": {"fixed acidity": "float64", "volatile acidity": "float64", "citric acid": "float64", "residual sugar": "float64", "chlorides": "float64", "free sulfur dioxide": "float64", "total sulfur dioxide": "float64", "density": "float64", "pH": "float64", "sulphates": "float64", "alcohol": "float64", "quality": "int64"}, "column_has_missing": {"fixed acidity": false, "volatile acidity": false, "citric acid": false, "residual sugar": false, "chlorides": false, "free sulfur dioxide": false, "total sulfur dioxide": false, "density": false, "pH": false, "sulphates": false, "alcohol": false, "quality": false}, "drop_na_cols": ["fixed acidity", "volatile acidity", "citric acid", "residual sugar", "chlorides", "free sulfur dioxide", "total sulfur dioxide", "density", "pH", "sulphates", "alcohol", "quality"], "processed_columns": ["00___NUMERIC___fixed acidity_00", "00___NUMERIC___fixed acidity_01", "00___NUMERIC___fixed acidity_02", "00___NUMERIC___fixed acidity_03", "00___NUMERIC___fixed acidity_04", "01___NUMERIC___volatile acidity_00", "01___NUMERIC___volatile acidity_01", "01___NUMERIC___volatile acidity_02", "01___NUMERIC___volatile acidity_03", "01___NUMERIC___volatile acidity_04", "02___NUMERIC___citric acid_00", "02___NUMERIC___citric acid_01", "02___NUMERIC___citric acid_02", "02___NUMERIC___citric acid_03", "03___NUMERIC___residual sugar_00", "03___NUMERIC___residual sugar_01", "03___NUMERIC___residual sugar_02", "03___NUMERIC___residual sugar_03", "03___NUMERIC___residual sugar_04", "04___NUMERIC___chlorides_00", "04___NUMERIC___chlorides_01", "04___NUMERIC___chlorides_02", "04___NUMERIC___chlorides_03", "04___NUMERIC___chlorides_04", "05___NUMERIC___free sulfur dioxide_00", "05___NUMERIC___free sulfur dioxide_01", "05___NUMERIC___free sulfur dioxide_02", "05___NUMERIC___free sulfur dioxide_03", "05___NUMERIC___free sulfur dioxide_04", "06___NUMERIC___total sulfur dioxide_00", "06___NUMERIC___total sulfur dioxide_01", "06___NUMERIC___total sulfur dioxide_02", "06___NUMERIC___total sulfur dioxide_03", "06___NUMERIC___total sulfur dioxide_04", "07___NUMERIC___density_00", "07___NUMERIC___density_01", "07___NUMERIC___density_02", "07___NUMERIC___density_03", "07___NUMERIC___density_04", "07___NUMERIC___density_05", "08___NUMERIC___pH_00", "08___NUMERIC___pH_01", "08___NUMERIC___pH_02", "08___NUMERIC___pH_03", "09___NUMERIC___sulphates_00", "09___NUMERIC___sulphates_01", "09___NUMERIC___sulphates_02", "09___NUMERIC___sulphates_03", "10___NUMERIC___alcohol_00", "10___NUMERIC___alcohol_01", "10___NUMERIC___alcohol_02", "10___NUMERIC___alcohol_03", "10___NUMERIC___alcohol_04", "10___NUMERIC___alcohol_05", "10___NUMERIC___alcohol_06", "11___NUMERIC___quality_00"], "numeric_columns": ["fixed acidity", "volatile acidity", "citric acid", "residual sugar", "chlorides", "free sulfur dioxide", "total sulfur dioxide", "density", "pH", "sulphates", "alcohol", "quality"], "datetime_columns": [], "vocab": {"id2token": {"0": "[UNK]", "1": "[SEP]", "2": "[PAD]", "3": "[CLS]", "4": "[MASK]", "5": "[BOS]", "6": "[EOS]", "7": "[BMEM]", "8": "[EMEM]", "9": "[RMASK]", "10": "[SPTYPE]", "11": "00___NUMERIC___fixed acidity_00___0", "12": "00___NUMERIC___fixed acidity_00___1", "13": "00___NUMERIC___fixed acidity_01___0", "14": "00___NUMERIC___fixed acidity_01___1", "15": "00___NUMERIC___fixed acidity_01___3", "16": "00___NUMERIC___fixed acidity_01___4", "17": "00___NUMERIC___fixed acidity_01___5", "18": "00___NUMERIC___fixed acidity_01___6", "19": "00___NUMERIC___fixed acidity_01___7", "20": "00___NUMERIC___fixed acidity_01___8", "21": "00___NUMERIC___fixed acidity_01___9", "22": "00___NUMERIC___fixed acidity_02___.", "23": "00___NUMERIC___fixed acidity_03___0", "24": "00___NUMERIC___fixed acidity_03___1", "25": "00___NUMERIC___fixed acidity_03___2", "26": "00___NUMERIC___fixed acidity_03___3", "27": "00___NUMERIC___fixed acidity_03___4", "28": "00___NUMERIC___fixed acidity_03___5", "29": "00___NUMERIC___fixed acidity_03___6", "30": "00___NUMERIC___fixed acidity_03___7", "31": "00___NUMERIC___fixed acidity_03___8", "32": "00___NUMERIC___fixed acidity_03___9", "33": "00___NUMERIC___fixed acidity_04___0", "34": "00___NUMERIC___fixed acidity_04___5", "35": "01___NUMERIC___volatile acidity_00___0", "36": "01___NUMERIC___volatile acidity_00___1", "37": "01___NUMERIC___volatile acidity_01___.", "38": "01___NUMERIC___volatile acidity_02___0", "39": "01___NUMERIC___volatile acidity_02___1", "40": "01___NUMERIC___volatile acidity_02___2", "41": "01___NUMERIC___volatile acidity_02___3", "42": "01___NUMERIC___volatile acidity_02___4", "43": "01___NUMERIC___volatile acidity_02___5", "44": "01___NUMERIC___volatile acidity_02___6", "45": "01___NUMERIC___volatile acidity_02___7", "46": "01___NUMERIC___volatile acidity_02___8", "47": "01___NUMERIC___volatile acidity_02___9", "48": "01___NUMERIC___volatile acidity_03___0", "49": "01___NUMERIC___volatile acidity_03___1", "50": "01___NUMERIC___volatile acidity_03___2", "51": "01___NUMERIC___volatile acidity_03___3", "52": "01___NUMERIC___volatile acidity_03___4", "53": "01___NUMERIC___volatile acidity_03___5", "54": "01___NUMERIC___volatile acidity_03___6", "55": "01___NUMERIC___volatile acidity_03___7", "56": "01___NUMERIC___volatile acidity_03___8", "57": "01___NUMERIC___volatile acidity_03___9", "58": "01___NUMERIC___volatile acidity_04___0", "59": "01___NUMERIC___volatile acidity_04___5", "60": "02___NUMERIC___citric acid_00___0", "61": "02___NUMERIC___citric acid_00___1", "62": "02___NUMERIC___citric acid_01___.", "63": "02___NUMERIC___citric acid_02___0", "64": "02___NUMERIC___citric acid_02___1", "65": "02___NUMERIC___citric acid_02___2", "66": "02___NUMERIC___citric acid_02___3", "67": "02___NUMERIC___citric acid_02___4", "68": "02___NUMERIC___citric acid_02___5", "69": "02___NUMERIC___citric acid_02___6", "70": "02___NUMERIC___citric acid_02___7", "71": "02___NUMERIC___citric acid_02___8", "72": "02___NUMERIC___citric acid_02___9", "73": "02___NUMERIC___citric acid_03___0", "74": "02___NUMERIC___citric acid_03___1", "75": "02___NUMERIC___citric acid_03___2", "76": "02___NUMERIC___citric acid_03___3", "77": "02___NUMERIC___citric acid_03___4", "78": "02___NUMERIC___citric acid_03___5", "79": "02___NUMERIC___citric acid_03___6", "80": "02___NUMERIC___citric acid_03___7", "81": "02___NUMERIC___citric acid_03___8", "82": "02___NUMERIC___citric acid_03___9", "83": "03___NUMERIC___residual sugar_00___0", "84": "03___NUMERIC___residual sugar_00___1", "85": "03___NUMERIC___residual sugar_00___2", "86": "03___NUMERIC___residual sugar_00___3", "87": "03___NUMERIC___residual sugar_00___6", "88": "03___NUMERIC___residual sugar_01___0", "89": "03___NUMERIC___residual sugar_01___1", "90": "03___NUMERIC___residual sugar_01___2", "91": "03___NUMERIC___residual sugar_01___3", "92": "03___NUMERIC___residual sugar_01___4", "93": "03___NUMERIC___residual sugar_01___5", "94": "03___NUMERIC___residual sugar_01___6", "95": "03___NUMERIC___residual sugar_01___7", "96": "03___NUMERIC___residual sugar_01___8", "97": "03___NUMERIC___residual sugar_01___9", "98": "03___NUMERIC___residual sugar_02___.", "99": "03___NUMERIC___residual sugar_03___0", "100": "03___NUMERIC___residual sugar_03___1", "101": "03___NUMERIC___residual sugar_03___2", "102": "03___NUMERIC___residual sugar_03___3", "103": "03___NUMERIC___residual sugar_03___4", "104": "03___NUMERIC___residual sugar_03___5", "105": "03___NUMERIC___residual sugar_03___6", "106": "03___NUMERIC___residual sugar_03___7", "107": "03___NUMERIC___residual sugar_03___8", "108": "03___NUMERIC___residual sugar_03___9", "109": "03___NUMERIC___residual sugar_04___0", "110": "03___NUMERIC___residual sugar_04___5", "111": "04___NUMERIC___chlorides_00___0", "112": "04___NUMERIC___chlorides_01___.", "113": "04___NUMERIC___chlorides_02___0", "114": "04___NUMERIC___chlorides_02___1", "115": "04___NUMERIC___chlorides_02___2", "116": "04___NUMERIC___chlorides_02___3", "117": "04___NUMERIC___chlorides_03___0", "118": "04___NUMERIC___chlorides_03___1", "119": "04___NUMERIC___chlorides_03___2", "120": "04___NUMERIC___chlorides_03___3", "121": "04___NUMERIC___chlorides_03___4", "122": "04___NUMERIC___chlorides_03___5", "123": "04___NUMERIC___chlorides_03___6", "124": "04___NUMERIC___chlorides_03___7", "125": "04___NUMERIC___chlorides_03___8", "126": "04___NUMERIC___chlorides_03___9", "127": "04___NUMERIC___chlorides_04___0", "128": "04___NUMERIC___chlorides_04___1", "129": "04___NUMERIC___chlorides_04___2", "130": "04___NUMERIC___chlorides_04___3", "131": "04___NUMERIC___chlorides_04___4", "132": "04___NUMERIC___chlorides_04___5", "133": "04___NUMERIC___chlorides_04___6", "134": "04___NUMERIC___chlorides_04___7", "135": "04___NUMERIC___chlorides_04___8", "136": "04___NUMERIC___chlorides_04___9", "137": "05___NUMERIC___free sulfur dioxide_00___0", "138": "05___NUMERIC___free sulfur dioxide_00___1", "139": "05___NUMERIC___free sulfur dioxide_01___0", "140": "05___NUMERIC___free sulfur dioxide_01___1", "141": "05___NUMERIC___free sulfur dioxide_01___2", "142": "05___NUMERIC___free sulfur dioxide_01___3", "143": "05___NUMERIC___free sulfur dioxide_01___4", "144": "05___NUMERIC___free sulfur dioxide_01___5", "145": "05___NUMERIC___free sulfur dioxide_01___6", "146": "05___NUMERIC___free sulfur dioxide_01___7", "147": "05___NUMERIC___free sulfur dioxide_01___8", "148": "05___NUMERIC___free sulfur dioxide_01___9", "149": "05___NUMERIC___free sulfur dioxide_02___0", "150": "05___NUMERIC___free sulfur dioxide_02___1", "151": "05___NUMERIC___free sulfur dioxide_02___2", "152": "05___NUMERIC___free sulfur dioxide_02___3", "153": "05___NUMERIC___free sulfur dioxide_02___4", "154": "05___NUMERIC___free sulfur dioxide_02___5", "155": "05___NUMERIC___free sulfur dioxide_02___6", "156": "05___NUMERIC___free sulfur dioxide_02___7", "157": "05___NUMERIC___free sulfur dioxide_02___8", "158": "05___NUMERIC___free sulfur dioxide_02___9", "159": "05___NUMERIC___free sulfur dioxide_03___.", "160": "05___NUMERIC___free sulfur dioxide_04___0", "161": "05___NUMERIC___free sulfur dioxide_04___5", "162": "06___NUMERIC___total sulfur dioxide_00___0", "163": "06___NUMERIC___total sulfur dioxide_00___1", "164": "06___NUMERIC___total sulfur dioxide_00___2", "165": "06___NUMERIC___total sulfur dioxide_00___3", "166": "06___NUMERIC___total sulfur dioxide_01___0", "167": "06___NUMERIC___total sulfur dioxide_01___1", "168": "06___NUMERIC___total sulfur dioxide_01___2", "169": "06___NUMERIC___total sulfur dioxide_01___3", "170": "06___NUMERIC___total sulfur dioxide_01___4", "171": "06___NUMERIC___total sulfur dioxide_01___5", "172": "06___NUMERIC___total sulfur dioxide_01___6", "173": "06___NUMERIC___total sulfur dioxide_01___7", "174": "06___NUMERIC___total sulfur dioxide_01___8", "175": "06___NUMERIC___total sulfur dioxide_01___9", "176": "06___NUMERIC___total sulfur dioxide_02___0", "177": "06___NUMERIC___total sulfur dioxide_02___1", "178": "06___NUMERIC___total sulfur dioxide_02___2", "179": "06___NUMERIC___total sulfur dioxide_02___3", "180": "06___NUMERIC___total sulfur dioxide_02___4", "181": "06___NUMERIC___total sulfur dioxide_02___5", "182": "06___NUMERIC___total sulfur dioxide_02___6", "183": "06___NUMERIC___total sulfur dioxide_02___7", "184": "06___NUMERIC___total sulfur dioxide_02___8", "185": "06___NUMERIC___total sulfur dioxide_02___9", "186": "06___NUMERIC___total sulfur dioxide_03___.", "187": "06___NUMERIC___total sulfur dioxide_04___0", "188": "06___NUMERIC___total sulfur dioxide_04___5", "189": "07___NUMERIC___density_00___0", "190": "07___NUMERIC___density_00___1", "191": "07___NUMERIC___density_01___.", "192": "07___NUMERIC___density_02___0", "193": "07___NUMERIC___density_02___9", "194": "07___NUMERIC___density_03___0", "195": "07___NUMERIC___density_03___1", "196": "07___NUMERIC___density_03___3", "197": "07___NUMERIC___density_03___8", "198": "07___NUMERIC___density_03___9", "199": "07___NUMERIC___density_04___0", "200": "07___NUMERIC___density_04___1", "201": "07___NUMERIC___density_04___2", "202": "07___NUMERIC___density_04___3", "203": "07___NUMERIC___density_04___4", "204": "07___NUMERIC___density_04___5", "205": "07___NUMERIC___density_04___6", "206": "07___NUMERIC___density_04___7", "207": "07___NUMERIC___density_04___8", "208": "07___NUMERIC___density_04___9", "209": "07___NUMERIC___density_05___0", "210": "07___NUMERIC___density_05___1", "211": "07___NUMERIC___density_05___2", "212": "07___NUMERIC___density_05___3", "213": "07___NUMERIC___density_05___4", "214": "07___NUMERIC___density_05___5", "215": "07___NUMERIC___density_05___6", "216": "07___NUMERIC___density_05___7", "217": "07___NUMERIC___density_05___8", "218": "07___NUMERIC___density_05___9", "219": "08___NUMERIC___pH_00___2", "220": "08___NUMERIC___pH_00___3", "221": "08___NUMERIC___pH_01___.", "222": "08___NUMERIC___pH_02___0", "223": "08___NUMERIC___pH_02___1", "224": "08___NUMERIC___pH_02___2", "225": "08___NUMERIC___pH_02___3", "226": "08___NUMERIC___pH_02___4", "227": "08___NUMERIC___pH_02___5", "228": "08___NUMERIC___pH_02___6", "229": "08___NUMERIC___pH_02___7", "230": "08___NUMERIC___pH_02___8", "231": "08___NUMERIC___pH_02___9", "232": "08___NUMERIC___pH_03___0", "233": "08___NUMERIC___pH_03___1", "234": "08___NUMERIC___pH_03___2", "235": "08___NUMERIC___pH_03___3", "236": "08___NUMERIC___pH_03___4", "237": "08___NUMERIC___pH_03___5", "238": "08___NUMERIC___pH_03___6", "239": "08___NUMERIC___pH_03___7", "240": "08___NUMERIC___pH_03___8", "241": "08___NUMERIC___pH_03___9", "242": "09___NUMERIC___sulphates_00___0", "243": "09___NUMERIC___sulphates_00___1", "244": "09___NUMERIC___sulphates_01___.", "245": "09___NUMERIC___sulphates_02___0", "246": "09___NUMERIC___sulphates_02___2", "247": "09___NUMERIC___sulphates_02___3", "248": "09___NUMERIC___sulphates_02___4", "249": "09___NUMERIC___sulphates_02___5", "250": "09___NUMERIC___sulphates_02___6", "251": "09___NUMERIC___sulphates_02___7", "252": "09___NUMERIC___sulphates_02___8", "253": "09___NUMERIC___sulphates_02___9", "254": "09___NUMERIC___sulphates_03___0", "255": "09___NUMERIC___sulphates_03___1", "256": "09___NUMERIC___sulphates_03___2", "257": "09___NUMERIC___sulphates_03___3", "258": "09___NUMERIC___sulphates_03___4", "259": "09___NUMERIC___sulphates_03___5", "260": "09___NUMERIC___sulphates_03___6", "261": "09___NUMERIC___sulphates_03___7", "262": "09___NUMERIC___sulphates_03___8", "263": "09___NUMERIC___sulphates_03___9", "264": "10___NUMERIC___alcohol_00___0", "265": "10___NUMERIC___alcohol_00___1", "266": "10___NUMERIC___alcohol_01___0", "267": "10___NUMERIC___alcohol_01___1", "268": "10___NUMERIC___alcohol_01___2", "269": "10___NUMERIC___alcohol_01___3", "270": "10___NUMERIC___alcohol_01___4", "271": "10___NUMERIC___alcohol_01___8", "272": "10___NUMERIC___alcohol_01___9", "273": "10___NUMERIC___alcohol_02___.", "274": "10___NUMERIC___alcohol_03___0", "275": "10___NUMERIC___alcohol_03___1", "276": "10___NUMERIC___alcohol_03___2", "277": "10___NUMERIC___alcohol_03___3", "278": "10___NUMERIC___alcohol_03___4", "279": "10___NUMERIC___alcohol_03___5", "280": "10___NUMERIC___alcohol_03___6", "281": "10___NUMERIC___alcohol_03___7", "282": "10___NUMERIC___alcohol_03___8", "283": "10___NUMERIC___alcohol_03___9", "284": "10___NUMERIC___alcohol_04___0", "285": "10___NUMERIC___alcohol_04___3", "286": "10___NUMERIC___alcohol_04___4", "287": "10___NUMERIC___alcohol_04___5", "288": "10___NUMERIC___alcohol_04___6", "289": "10___NUMERIC___alcohol_04___8", "290": "10___NUMERIC___alcohol_04___9", "291": "10___NUMERIC___alcohol_05___0", "292": "10___NUMERIC___alcohol_05___3", "293": "10___NUMERIC___alcohol_05___6", "294": "10___NUMERIC___alcohol_06___0", "295": "10___NUMERIC___alcohol_06___3", "296": "10___NUMERIC___alcohol_06___7", "297": "11___NUMERIC___quality_00___3", "298": "11___NUMERIC___quality_00___4", "299": "11___NUMERIC___quality_00___5", "300": "11___NUMERIC___quality_00___6", "301": "11___NUMERIC___quality_00___7", "302": "11___NUMERIC___quality_00___8", "303": "11___NUMERIC___quality_00___9"}, "token2id": {"[UNK]": 0, "[SEP]": 1, "[PAD]": 2, "[CLS]": 3, "[MASK]": 4, "[BOS]": 5, "[EOS]": 6, "[BMEM]": 7, "[EMEM]": 8, "[RMASK]": 9, "[SPTYPE]": 10, "00___NUMERIC___fixed acidity_00___0": 11, "00___NUMERIC___fixed acidity_00___1": 12, "00___NUMERIC___fixed acidity_01___0": 13, "00___NUMERIC___fixed acidity_01___1": 14, "00___NUMERIC___fixed acidity_01___3": 15, "00___NUMERIC___fixed acidity_01___4": 16, "00___NUMERIC___fixed acidity_01___5": 17, "00___NUMERIC___fixed acidity_01___6": 18, "00___NUMERIC___fixed acidity_01___7": 19, "00___NUMERIC___fixed acidity_01___8": 20, "00___NUMERIC___fixed acidity_01___9": 21, "00___NUMERIC___fixed acidity_02___.": 22, "00___NUMERIC___fixed acidity_03___0": 23, "00___NUMERIC___fixed acidity_03___1": 24, "00___NUMERIC___fixed acidity_03___2": 25, "00___NUMERIC___fixed acidity_03___3": 26, "00___NUMERIC___fixed acidity_03___4": 27, "00___NUMERIC___fixed acidity_03___5": 28, "00___NUMERIC___fixed acidity_03___6": 29, "00___NUMERIC___fixed acidity_03___7": 30, "00___NUMERIC___fixed acidity_03___8": 31, "00___NUMERIC___fixed acidity_03___9": 32, "00___NUMERIC___fixed acidity_04___0": 33, "00___NUMERIC___fixed acidity_04___5": 34, "01___NUMERIC___volatile acidity_00___0": 35, "01___NUMERIC___volatile acidity_00___1": 36, "01___NUMERIC___volatile acidity_01___.": 37, "01___NUMERIC___volatile acidity_02___0": 38, "01___NUMERIC___volatile acidity_02___1": 39, "01___NUMERIC___volatile acidity_02___2": 40, "01___NUMERIC___volatile acidity_02___3": 41, "01___NUMERIC___volatile acidity_02___4": 42, "01___NUMERIC___volatile acidity_02___5": 43, "01___NUMERIC___volatile acidity_02___6": 44, "01___NUMERIC___volatile acidity_02___7": 45, "01___NUMERIC___volatile acidity_02___8": 46, "01___NUMERIC___volatile acidity_02___9": 47, "01___NUMERIC___volatile acidity_03___0": 48, "01___NUMERIC___volatile acidity_03___1": 49, "01___NUMERIC___volatile acidity_03___2": 50, "01___NUMERIC___volatile acidity_03___3": 51, "01___NUMERIC___volatile acidity_03___4": 52, "01___NUMERIC___volatile acidity_03___5": 53, "01___NUMERIC___volatile acidity_03___6": 54, "01___NUMERIC___volatile acidity_03___7": 55, "01___NUMERIC___volatile acidity_03___8": 56, "01___NUMERIC___volatile acidity_03___9": 57, "01___NUMERIC___volatile acidity_04___0": 58, "01___NUMERIC___volatile acidity_04___5": 59, "02___NUMERIC___citric acid_00___0": 60, "02___NUMERIC___citric acid_00___1": 61, "02___NUMERIC___citric acid_01___.": 62, "02___NUMERIC___citric acid_02___0": 63, "02___NUMERIC___citric acid_02___1": 64, "02___NUMERIC___citric acid_02___2": 65, "02___NUMERIC___citric acid_02___3": 66, "02___NUMERIC___citric acid_02___4": 67, "02___NUMERIC___citric acid_02___5": 68, "02___NUMERIC___citric acid_02___6": 69, "02___NUMERIC___citric acid_02___7": 70, "02___NUMERIC___citric acid_02___8": 71, "02___NUMERIC___citric acid_02___9": 72, "02___NUMERIC___citric acid_03___0": 73, "02___NUMERIC___citric acid_03___1": 74, "02___NUMERIC___citric acid_03___2": 75, "02___NUMERIC___citric acid_03___3": 76, "02___NUMERIC___citric acid_03___4": 77, "02___NUMERIC___citric acid_03___5": 78, "02___NUMERIC___citric acid_03___6": 79, "02___NUMERIC___citric acid_03___7": 80, "02___NUMERIC___citric acid_03___8": 81, "02___NUMERIC___citric acid_03___9": 82, "03___NUMERIC___residual sugar_00___0": 83, "03___NUMERIC___residual sugar_00___1": 84, "03___NUMERIC___residual sugar_00___2": 85, "03___NUMERIC___residual sugar_00___3": 86, "03___NUMERIC___residual sugar_00___6": 87, "03___NUMERIC___residual sugar_01___0": 88, "03___NUMERIC___residual sugar_01___1": 89, "03___NUMERIC___residual sugar_01___2": 90, "03___NUMERIC___residual sugar_01___3": 91, "03___NUMERIC___residual sugar_01___4": 92, "03___NUMERIC___residual sugar_01___5": 93, "03___NUMERIC___residual sugar_01___6": 94, "03___NUMERIC___residual sugar_01___7": 95, "03___NUMERIC___residual sugar_01___8": 96, "03___NUMERIC___residual sugar_01___9": 97, "03___NUMERIC___residual sugar_02___.": 98, "03___NUMERIC___residual sugar_03___0": 99, "03___NUMERIC___residual sugar_03___1": 100, "03___NUMERIC___residual sugar_03___2": 101, "03___NUMERIC___residual sugar_03___3": 102, "03___NUMERIC___residual sugar_03___4": 103, "03___NUMERIC___residual sugar_03___5": 104, "03___NUMERIC___residual sugar_03___6": 105, "03___NUMERIC___residual sugar_03___7": 106, "03___NUMERIC___residual sugar_03___8": 107, "03___NUMERIC___residual sugar_03___9": 108, "03___NUMERIC___residual sugar_04___0": 109, "03___NUMERIC___residual sugar_04___5": 110, "04___NUMERIC___chlorides_00___0": 111, "04___NUMERIC___chlorides_01___.": 112, "04___NUMERIC___chlorides_02___0": 113, "04___NUMERIC___chlorides_02___1": 114, "04___NUMERIC___chlorides_02___2": 115, "04___NUMERIC___chlorides_02___3": 116, "04___NUMERIC___chlorides_03___0": 117, "04___NUMERIC___chlorides_03___1": 118, "04___NUMERIC___chlorides_03___2": 119, "04___NUMERIC___chlorides_03___3": 120, "04___NUMERIC___chlorides_03___4": 121, "04___NUMERIC___chlorides_03___5": 122, "04___NUMERIC___chlorides_03___6": 123, "04___NUMERIC___chlorides_03___7": 124, "04___NUMERIC___chlorides_03___8": 125, "04___NUMERIC___chlorides_03___9": 126, "04___NUMERIC___chlorides_04___0": 127, "04___NUMERIC___chlorides_04___1": 128, "04___NUMERIC___chlorides_04___2": 129, "04___NUMERIC___chlorides_04___3": 130, "04___NUMERIC___chlorides_04___4": 131, "04___NUMERIC___chlorides_04___5": 132, "04___NUMERIC___chlorides_04___6": 133, "04___NUMERIC___chlorides_04___7": 134, "04___NUMERIC___chlorides_04___8": 135, "04___NUMERIC___chlorides_04___9": 136, "05___NUMERIC___free sulfur dioxide_00___0": 137, "05___NUMERIC___free sulfur dioxide_00___1": 138, "05___NUMERIC___free sulfur dioxide_01___0": 139, "05___NUMERIC___free sulfur dioxide_01___1": 140, "05___NUMERIC___free sulfur dioxide_01___2": 141, "05___NUMERIC___free sulfur dioxide_01___3": 142, "05___NUMERIC___free sulfur dioxide_01___4": 143, "05___NUMERIC___free sulfur dioxide_01___5": 144, "05___NUMERIC___free sulfur dioxide_01___6": 145, "05___NUMERIC___free sulfur dioxide_01___7": 146, "05___NUMERIC___free sulfur dioxide_01___8": 147, "05___NUMERIC___free sulfur dioxide_01___9": 148, "05___NUMERIC___free sulfur dioxide_02___0": 149, "05___NUMERIC___free sulfur dioxide_02___1": 150, "05___NUMERIC___free sulfur dioxide_02___2": 151, "05___NUMERIC___free sulfur dioxide_02___3": 152, "05___NUMERIC___free sulfur dioxide_02___4": 153, "05___NUMERIC___free sulfur dioxide_02___5": 154, "05___NUMERIC___free sulfur dioxide_02___6": 155, "05___NUMERIC___free sulfur dioxide_02___7": 156, "05___NUMERIC___free sulfur dioxide_02___8": 157, "05___NUMERIC___free sulfur dioxide_02___9": 158, "05___NUMERIC___free sulfur dioxide_03___.": 159, "05___NUMERIC___free sulfur dioxide_04___0": 160, "05___NUMERIC___free sulfur dioxide_04___5": 161, "06___NUMERIC___total sulfur dioxide_00___0": 162, "06___NUMERIC___total sulfur dioxide_00___1": 163, "06___NUMERIC___total sulfur dioxide_00___2": 164, "06___NUMERIC___total sulfur dioxide_00___3": 165, "06___NUMERIC___total sulfur dioxide_01___0": 166, "06___NUMERIC___total sulfur dioxide_01___1": 167, "06___NUMERIC___total sulfur dioxide_01___2": 168, "06___NUMERIC___total sulfur dioxide_01___3": 169, "06___NUMERIC___total sulfur dioxide_01___4": 170, "06___NUMERIC___total sulfur dioxide_01___5": 171, "06___NUMERIC___total sulfur dioxide_01___6": 172, "06___NUMERIC___total sulfur dioxide_01___7": 173, "06___NUMERIC___total sulfur dioxide_01___8": 174, "06___NUMERIC___total sulfur dioxide_01___9": 175, "06___NUMERIC___total sulfur dioxide_02___0": 176, "06___NUMERIC___total sulfur dioxide_02___1": 177, "06___NUMERIC___total sulfur dioxide_02___2": 178, "06___NUMERIC___total sulfur dioxide_02___3": 179, "06___NUMERIC___total sulfur dioxide_02___4": 180, "06___NUMERIC___total sulfur dioxide_02___5": 181, "06___NUMERIC___total sulfur dioxide_02___6": 182, "06___NUMERIC___total sulfur dioxide_02___7": 183, "06___NUMERIC___total sulfur dioxide_02___8": 184, "06___NUMERIC___total sulfur dioxide_02___9": 185, "06___NUMERIC___total sulfur dioxide_03___.": 186, "06___NUMERIC___total sulfur dioxide_04___0": 187, "06___NUMERIC___total sulfur dioxide_04___5": 188, "07___NUMERIC___density_00___0": 189, "07___NUMERIC___density_00___1": 190, "07___NUMERIC___density_01___.": 191, "07___NUMERIC___density_02___0": 192, "07___NUMERIC___density_02___9": 193, "07___NUMERIC___density_03___0": 194, "07___NUMERIC___density_03___1": 195, "07___NUMERIC___density_03___3": 196, "07___NUMERIC___density_03___8": 197, "07___NUMERIC___density_03___9": 198, "07___NUMERIC___density_04___0": 199, "07___NUMERIC___density_04___1": 200, "07___NUMERIC___density_04___2": 201, "07___NUMERIC___density_04___3": 202, "07___NUMERIC___density_04___4": 203, "07___NUMERIC___density_04___5": 204, "07___NUMERIC___density_04___6": 205, "07___NUMERIC___density_04___7": 206, "07___NUMERIC___density_04___8": 207, "07___NUMERIC___density_04___9": 208, "07___NUMERIC___density_05___0": 209, "07___NUMERIC___density_05___1": 210, "07___NUMERIC___density_05___2": 211, "07___NUMERIC___density_05___3": 212, "07___NUMERIC___density_05___4": 213, "07___NUMERIC___density_05___5": 214, "07___NUMERIC___density_05___6": 215, "07___NUMERIC___density_05___7": 216, "07___NUMERIC___density_05___8": 217, "07___NUMERIC___density_05___9": 218, "08___NUMERIC___pH_00___2": 219, "08___NUMERIC___pH_00___3": 220, "08___NUMERIC___pH_01___.": 221, "08___NUMERIC___pH_02___0": 222, "08___NUMERIC___pH_02___1": 223, "08___NUMERIC___pH_02___2": 224, "08___NUMERIC___pH_02___3": 225, "08___NUMERIC___pH_02___4": 226, "08___NUMERIC___pH_02___5": 227, "08___NUMERIC___pH_02___6": 228, "08___NUMERIC___pH_02___7": 229, "08___NUMERIC___pH_02___8": 230, "08___NUMERIC___pH_02___9": 231, "08___NUMERIC___pH_03___0": 232, "08___NUMERIC___pH_03___1": 233, "08___NUMERIC___pH_03___2": 234, "08___NUMERIC___pH_03___3": 235, "08___NUMERIC___pH_03___4": 236, "08___NUMERIC___pH_03___5": 237, "08___NUMERIC___pH_03___6": 238, "08___NUMERIC___pH_03___7": 239, "08___NUMERIC___pH_03___8": 240, "08___NUMERIC___pH_03___9": 241, "09___NUMERIC___sulphates_00___0": 242, "09___NUMERIC___sulphates_00___1": 243, "09___NUMERIC___sulphates_01___.": 244, "09___NUMERIC___sulphates_02___0": 245, "09___NUMERIC___sulphates_02___2": 246, "09___NUMERIC___sulphates_02___3": 247, "09___NUMERIC___sulphates_02___4": 248, "09___NUMERIC___sulphates_02___5": 249, "09___NUMERIC___sulphates_02___6": 250, "09___NUMERIC___sulphates_02___7": 251, "09___NUMERIC___sulphates_02___8": 252, "09___NUMERIC___sulphates_02___9": 253, "09___NUMERIC___sulphates_03___0": 254, "09___NUMERIC___sulphates_03___1": 255, "09___NUMERIC___sulphates_03___2": 256, "09___NUMERIC___sulphates_03___3": 257, "09___NUMERIC___sulphates_03___4": 258, "09___NUMERIC___sulphates_03___5": 259, "09___NUMERIC___sulphates_03___6": 260, "09___NUMERIC___sulphates_03___7": 261, "09___NUMERIC___sulphates_03___8": 262, "09___NUMERIC___sulphates_03___9": 263, "10___NUMERIC___alcohol_00___0": 264, "10___NUMERIC___alcohol_00___1": 265, "10___NUMERIC___alcohol_01___0": 266, "10___NUMERIC___alcohol_01___1": 267, "10___NUMERIC___alcohol_01___2": 268, "10___NUMERIC___alcohol_01___3": 269, "10___NUMERIC___alcohol_01___4": 270, "10___NUMERIC___alcohol_01___8": 271, "10___NUMERIC___alcohol_01___9": 272, "10___NUMERIC___alcohol_02___.": 273, "10___NUMERIC___alcohol_03___0": 274, "10___NUMERIC___alcohol_03___1": 275, "10___NUMERIC___alcohol_03___2": 276, "10___NUMERIC___alcohol_03___3": 277, "10___NUMERIC___alcohol_03___4": 278, "10___NUMERIC___alcohol_03___5": 279, "10___NUMERIC___alcohol_03___6": 280, "10___NUMERIC___alcohol_03___7": 281, "10___NUMERIC___alcohol_03___8": 282, "10___NUMERIC___alcohol_03___9": 283, "10___NUMERIC___alcohol_04___0": 284, "10___NUMERIC___alcohol_04___3": 285, "10___NUMERIC___alcohol_04___4": 286, "10___NUMERIC___alcohol_04___5": 287, "10___NUMERIC___alcohol_04___6": 288, "10___NUMERIC___alcohol_04___8": 289, "10___NUMERIC___alcohol_04___9": 290, "10___NUMERIC___alcohol_05___0": 291, "10___NUMERIC___alcohol_05___3": 292, "10___NUMERIC___alcohol_05___6": 293, "10___NUMERIC___alcohol_06___0": 294, "10___NUMERIC___alcohol_06___3": 295, "10___NUMERIC___alcohol_06___7": 296, "11___NUMERIC___quality_00___3": 297, "11___NUMERIC___quality_00___4": 298, "11___NUMERIC___quality_00___5": 299, "11___NUMERIC___quality_00___6": 300, "11___NUMERIC___quality_00___7": 301, "11___NUMERIC___quality_00___8": 302, "11___NUMERIC___quality_00___9": 303}, "column_token_ids": {"00___NUMERIC___fixed acidity_00": [11, 12], "00___NUMERIC___fixed acidity_01": [13, 14, 15, 16, 17, 18, 19, 20, 21], "00___NUMERIC___fixed acidity_02": [22], "00___NUMERIC___fixed acidity_03": [23, 24, 25, 26, 27, 28, 29, 30, 31, 32], "00___NUMERIC___fixed acidity_04": [33, 34], "01___NUMERIC___volatile acidity_00": [35, 36], "01___NUMERIC___volatile acidity_01": [37], "01___NUMERIC___volatile acidity_02": [38, 39, 40, 41, 42, 43, 44, 45, 46, 47], "01___NUMERIC___volatile acidity_03": [48, 49, 50, 51, 52, 53, 54, 55, 56, 57], "01___NUMERIC___volatile acidity_04": [58, 59], "02___NUMERIC___citric acid_00": [60, 61], "02___NUMERIC___citric acid_01": [62], "02___NUMERIC___citric acid_02": [63, 64, 65, 66, 67, 68, 69, 70, 71, 72], "02___NUMERIC___citric acid_03": [73, 74, 75, 76, 77, 78, 79, 80, 81, 82], "03___NUMERIC___residual sugar_00": [83, 84, 85, 86, 87], "03___NUMERIC___residual sugar_01": [88, 89, 90, 91, 92, 93, 94, 95, 96, 97], "03___NUMERIC___residual sugar_02": [98], "03___NUMERIC___residual sugar_03": [99, 100, 101, 102, 103, 104, 105, 106, 107, 108], "03___NUMERIC___residual sugar_04": [109, 110], "04___NUMERIC___chlorides_00": [111], "04___NUMERIC___chlorides_01": [112], "04___NUMERIC___chlorides_02": [113, 114, 115, 116], "04___NUMERIC___chlorides_03": [117, 118, 119, 120, 121, 122, 123, 124, 125, 126], "04___NUMERIC___chlorides_04": [127, 128, 129, 130, 131, 132, 133, 134, 135, 136], "05___NUMERIC___free sulfur dioxide_00": [137, 138], "05___NUMERIC___free sulfur dioxide_01": [139, 140, 141, 142, 143, 144, 145, 146, 147, 148], "05___NUMERIC___free sulfur dioxide_02": [149, 150, 151, 152, 153, 154, 155, 156, 157, 158], "05___NUMERIC___free sulfur dioxide_03": [159], "05___NUMERIC___free sulfur dioxide_04": [160, 161], "06___NUMERIC___total sulfur dioxide_00": [162, 163, 164, 165], "06___NUMERIC___total sulfur dioxide_01": [166, 167, 168, 169, 170, 171, 172, 173, 174, 175], "06___NUMERIC___total sulfur dioxide_02": [176, 177, 178, 179, 180, 181, 182, 183, 184, 185], "06___NUMERIC___total sulfur dioxide_03": [186], "06___NUMERIC___total sulfur dioxide_04": [187, 188], "07___NUMERIC___density_00": [189, 190], "07___NUMERIC___density_01": [191], "07___NUMERIC___density_02": [192, 193], "07___NUMERIC___density_03": [194, 195, 196, 197, 198], "07___NUMERIC___density_04": [199, 200, 201, 202, 203, 204, 205, 206, 207, 208], "07___NUMERIC___density_05": [209, 210, 211, 212, 213, 214, 215, 216, 217, 218], "08___NUMERIC___pH_00": [219, 220], "08___NUMERIC___pH_01": [221], "08___NUMERIC___pH_02": [222, 223, 224, 225, 226, 227, 228, 229, 230, 231], "08___NUMERIC___pH_03": [232, 233, 234, 235, 236, 237, 238, 239, 240, 241], "09___NUMERIC___sulphates_00": [242, 243], "09___NUMERIC___sulphates_01": [244], "09___NUMERIC___sulphates_02": [245, 246, 247, 248, 249, 250, 251, 252, 253], "09___NUMERIC___sulphates_03": [254, 255, 256, 257, 258, 259, 260, 261, 262, 263], "10___NUMERIC___alcohol_00": [264, 265], "10___NUMERIC___alcohol_01": [266, 267, 268, 269, 270, 271, 272], "10___NUMERIC___alcohol_02": [273], "10___NUMERIC___alcohol_03": [274, 275, 276, 277, 278, 279, 280, 281, 282, 283], "10___NUMERIC___alcohol_04": [284, 285, 286, 287, 288, 289, 290], "10___NUMERIC___alcohol_05": [291, 292, 293], "10___NUMERIC___alcohol_06": [294, 295, 296], "11___NUMERIC___quality_00": [297, 298, 299, 300, 301, 302, 303]}}, "tabular_max_length": 58, "relational_max_length": null, "tabular_col_size": 3918, "relational_col_size": null, "col_transform_data": {"fixed acidity": {"max_len": 10, "numeric_precision": 4, "mx_sig": 2, "ljust": 5, "numeric_nparts": 1}, "volatile acidity": {"max_len": 10, "numeric_precision": 4, "mx_sig": 1, "ljust": 5, "numeric_nparts": 1}, "citric acid": {"max_len": 10, "numeric_precision": 4, "mx_sig": 1, "ljust": 4, "numeric_nparts": 1}, "residual sugar": {"max_len": 10, "numeric_precision": 4, "mx_sig": 2, "ljust": 5, "numeric_nparts": 1}, "chlorides": {"max_len": 10, "numeric_precision": 4, "mx_sig": 1, "ljust": 5, "numeric_nparts": 1}, "free sulfur dioxide": {"max_len": 10, "numeric_precision": 4, "mx_sig": 3, "ljust": 5, "numeric_nparts": 1}, "total sulfur dioxide": {"max_len": 10, "numeric_precision": 4, "mx_sig": 3, "ljust": 5, "numeric_nparts": 1}, "density": {"max_len": 10, "numeric_precision": 4, "mx_sig": 1, "ljust": 6, "numeric_nparts": 1}, "pH": {"max_len": 10, "numeric_precision": 4, "mx_sig": 1, "ljust": 4, "numeric_nparts": 1}, "sulphates": {"max_len": 10, "numeric_precision": 4, "mx_sig": 1, "ljust": 4, "numeric_nparts": 1}, "alcohol": {"max_len": 10, "numeric_precision": 4, "mx_sig": 2, "ljust": 7, "numeric_nparts": 1}, "quality": {"max_len": 10, "numeric_precision": 4, "mx_sig": -1, "zfill": 1, "numeric_nparts": 1}}, "in_col_transform_data": null, "col_idx_ids": {"0": [11, 12], "1": [13, 14, 15, 16, 17, 18, 19, 20, 21], "2": [22], "3": [23, 24, 25, 26, 27, 28, 29, 30, 31, 32], "4": [33, 34], "5": [35, 36], "6": [37], "7": [38, 39, 40, 41, 42, 43, 44, 45, 46, 47], "8": [48, 49, 50, 51, 52, 53, 54, 55, 56, 57], "9": [58, 59], "10": [60, 61], "11": [62], "12": [63, 64, 65, 66, 67, 68, 69, 70, 71, 72], "13": [73, 74, 75, 76, 77, 78, 79, 80, 81, 82], "14": [83, 84, 85, 86, 87], "15": [88, 89, 90, 91, 92, 93, 94, 95, 96, 97], "16": [98], "17": [99, 100, 101, 102, 103, 104, 105, 106, 107, 108], "18": [109, 110], "19": [111], "20": [112], "21": [113, 114, 115, 116], "22": [117, 118, 119, 120, 121, 122, 123, 124, 125, 126], "23": [127, 128, 129, 130, 131, 132, 133, 134, 135, 136], "24": [137, 138], "25": [139, 140, 141, 142, 143, 144, 145, 146, 147, 148], "26": [149, 150, 151, 152, 153, 154, 155, 156, 157, 158], "27": [159], "28": [160, 161], "29": [162, 163, 164, 165], "30": [166, 167, 168, 169, 170, 171, 172, 173, 174, 175], "31": [176, 177, 178, 179, 180, 181, 182, 183, 184, 185], "32": [186], "33": [187, 188], "34": [189, 190], "35": [191], "36": [192, 193], "37": [194, 195, 196, 197, 198], "38": [199, 200, 201, 202, 203, 204, 205, 206, 207, 208], "39": [209, 210, 211, 212, 213, 214, 215, 216, 217, 218], "40": [219, 220], "41": [221], "42": [222, 223, 224, 225, 226, 227, 228, 229, 230, 231], "43": [232, 233, 234, 235, 236, 237, 238, 239, 240, 241], "44": [242, 243], "45": [244], "46": [245, 246, 247, 248, 249, 250, 251, 252, 253], "47": [254, 255, 256, 257, 258, 259, 260, 261, 262, 263], "48": [264, 265], "49": [266, 267, 268, 269, 270, 271, 272], "50": [273], "51": [274, 275, 276, 277, 278, 279, 280, 281, 282, 283], "52": [284, 285, 286, 287, 288, 289, 290], "53": [291, 292, 293], "54": [294, 295, 296], "55": [297, 298, 299, 300, 301, 302, 303]}, "random_state": 1029, "numeric_nparts": 1, "numeric_precision": 4, "numeric_max_len": 10, "experiment_id": "id000017779201402510297088", "trainer_state": null, "target_col": null, "realtabformer_version": "0.2.4"} \ No newline at end of file diff --git a/hyperparameter/n3/realtabformer/rtf-n3-20260505_023857/models_20epochs/id000017779201402510297088/rtf_model.pt b/hyperparameter/n3/realtabformer/rtf-n3-20260505_023857/models_20epochs/id000017779201402510297088/rtf_model.pt new file mode 100644 index 0000000000000000000000000000000000000000..16dcaa6a69f34f1d7370d669bc9d53b88e749c3a --- /dev/null +++ b/hyperparameter/n3/realtabformer/rtf-n3-20260505_023857/models_20epochs/id000017779201402510297088/rtf_model.pt @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:a2145950258cc9469951a2a5dea3ff23c8c8a018bb59ade51e0bbd339411d851 +size 174223843 diff --git a/hyperparameter/n3/realtabformer/rtf-n3-20260505_023857/public_gate/normalized_schema_snapshot.json b/hyperparameter/n3/realtabformer/rtf-n3-20260505_023857/public_gate/normalized_schema_snapshot.json new file mode 100644 index 0000000000000000000000000000000000000000..c41fe304503de23190a02e6cbfafa35b3bf134d3 --- /dev/null +++ b/hyperparameter/n3/realtabformer/rtf-n3-20260505_023857/public_gate/normalized_schema_snapshot.json @@ -0,0 +1,259 @@ +{ + "dataset_id": "n3", + "target_column": "quality", + "task_type": "classification", + "columns": [ + { + "name": "fixed acidity", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 66, + "unique_ratio": 0.016845, + "example_values": [ + "7.1", + "8.5", + "6.4", + "6.8", + "7.6" + ] + } + }, + { + "name": "volatile acidity", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 121, + "unique_ratio": 0.030883, + "example_values": [ + "0.31", + "0.21", + "0.24", + "0.43", + "0.27" + ] + } + }, + { + "name": "citric acid", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 85, + "unique_ratio": 0.021695, + "example_values": [ + "0.17", + "0.41", + "0.31", + "0.25", + "0.3" + ] + } + }, + { + "name": "residual sugar", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 296, + "unique_ratio": 0.075549, + "example_values": [ + "1", + "4.3", + "2.8", + "13", + "12.9" + ] + } + }, + { + "name": "chlorides", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 147, + "unique_ratio": 0.037519, + "example_values": [ + "0.042", + "0.036", + "0.038", + "0.047", + "0.033" + ] + } + }, + { + "name": "free sulfur dioxide", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 120, + "unique_ratio": 0.030628, + "example_values": [ + "21", + "24", + "41", + "43", + "69" + ] + } + }, + { + "name": "total sulfur dioxide", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 244, + "unique_ratio": 0.062277, + "example_values": [ + "144", + "99", + "114", + "132", + "160" + ] + } + }, + { + "name": "density", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 839, + "unique_ratio": 0.21414, + "example_values": [ + "0.99304", + "0.9947", + "0.99155", + "0.98975", + "0.99705" + ] + } + }, + { + "name": "pH", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 100, + "unique_ratio": 0.025523, + "example_values": [ + "3.13", + "3.18", + "3.37", + "3.21", + "3.16" + ] + } + }, + { + "name": "sulphates", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 78, + "unique_ratio": 0.019908, + "example_values": [ + "0.4", + "0.53", + "0.66", + "0.47", + "0.5" + ] + } + }, + { + "name": "alcohol", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 97, + "unique_ratio": 0.024758, + "example_values": [ + "9.6", + "9.7", + "11.7", + "13.4", + "8.8" + ] + } + }, + { + "name": "quality", + "role": "target", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 7, + "unique_ratio": 0.001787, + "example_values": [ + "5", + "6", + "7", + "8", + "3" + ] + } + } + ] +} \ No newline at end of file diff --git a/hyperparameter/n3/realtabformer/rtf-n3-20260505_023857/public_gate/public_gate_report.json b/hyperparameter/n3/realtabformer/rtf-n3-20260505_023857/public_gate/public_gate_report.json new file mode 100644 index 0000000000000000000000000000000000000000..93b97319f739e39079d6c6549fd2020f8a6dac25 --- /dev/null +++ b/hyperparameter/n3/realtabformer/rtf-n3-20260505_023857/public_gate/public_gate_report.json @@ -0,0 +1,37 @@ +{ + "dataset_id": "n3", + "status": "pass", + "checks": [ + { + "check_id": "PG001_csv_parse_ok", + "status": "pass" + }, + { + "check_id": "PG002_split_header_consistent", + "status": "pass" + }, + { + "check_id": "PG003_profile_header_match", + "status": "pass" + }, + { + "check_id": "PG004_missing_token_normalized", + "status": "pass" + }, + { + "check_id": "PG005_semantic_type_validated", + "status": "pass" + }, + { + "check_id": "PG006_target_defined_and_valid", + "status": "pass" + } + ], + "target_column": "quality", + "task_type": "classification", + "input_splits": { + "train": "/data/jialinzhang/SynthesizePipeline-server/DatasetNew/n3/n3-train.csv", + "val": "/data/jialinzhang/SynthesizePipeline-server/DatasetNew/n3/n3-val.csv", + "test": "/data/jialinzhang/SynthesizePipeline-server/DatasetNew/n3/n3-test.csv" + } +} \ No newline at end of file diff --git a/hyperparameter/n3/realtabformer/rtf-n3-20260505_023857/public_gate/staged_input_manifest.json b/hyperparameter/n3/realtabformer/rtf-n3-20260505_023857/public_gate/staged_input_manifest.json new file mode 100644 index 0000000000000000000000000000000000000000..a3bea27c285b09976ebe072a504371ea6b5b3376 --- /dev/null +++ b/hyperparameter/n3/realtabformer/rtf-n3-20260505_023857/public_gate/staged_input_manifest.json @@ -0,0 +1,264 @@ +{ + "dataset_id": "n3", + "target_column": "quality", + "task_type": "classification", + "train_csv": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/n3/realtabformer/rtf-n3-20260505_023857/staged/public/train.csv", + "val_csv": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/n3/realtabformer/rtf-n3-20260505_023857/staged/public/val.csv", + "test_csv": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/n3/realtabformer/rtf-n3-20260505_023857/staged/public/test.csv", + "features_json": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/n3/realtabformer/rtf-n3-20260505_023857/staged/public/staged_features.json", + "public_gate_report": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/n3/realtabformer/rtf-n3-20260505_023857/public_gate/public_gate_report.json", + "column_schema": [ + { + "name": "fixed acidity", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 66, + "unique_ratio": 0.016845, + "example_values": [ + "7.1", + "8.5", + "6.4", + "6.8", + "7.6" + ] + } + }, + { + "name": "volatile acidity", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 121, + "unique_ratio": 0.030883, + "example_values": [ + "0.31", + "0.21", + "0.24", + "0.43", + "0.27" + ] + } + }, + { + "name": "citric acid", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 85, + "unique_ratio": 0.021695, + "example_values": [ + "0.17", + "0.41", + "0.31", + "0.25", + "0.3" + ] + } + }, + { + "name": "residual sugar", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 296, + "unique_ratio": 0.075549, + "example_values": [ + "1", + "4.3", + "2.8", + "13", + "12.9" + ] + } + }, + { + "name": "chlorides", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 147, + "unique_ratio": 0.037519, + "example_values": [ + "0.042", + "0.036", + "0.038", + "0.047", + "0.033" + ] + } + }, + { + "name": "free sulfur dioxide", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 120, + "unique_ratio": 0.030628, + "example_values": [ + "21", + "24", + "41", + "43", + "69" + ] + } + }, + { + "name": "total sulfur dioxide", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 244, + "unique_ratio": 0.062277, + "example_values": [ + "144", + "99", + "114", + "132", + "160" + ] + } + }, + { + "name": "density", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 839, + "unique_ratio": 0.21414, + "example_values": [ + "0.99304", + "0.9947", + "0.99155", + "0.98975", + "0.99705" + ] + } + }, + { + "name": "pH", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 100, + "unique_ratio": 0.025523, + "example_values": [ + "3.13", + "3.18", + "3.37", + "3.21", + "3.16" + ] + } + }, + { + "name": "sulphates", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 78, + "unique_ratio": 0.019908, + "example_values": [ + "0.4", + "0.53", + "0.66", + "0.47", + "0.5" + ] + } + }, + { + "name": "alcohol", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 97, + "unique_ratio": 0.024758, + "example_values": [ + "9.6", + "9.7", + "11.7", + "13.4", + "8.8" + ] + } + }, + { + "name": "quality", + "role": "target", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 7, + "unique_ratio": 0.001787, + "example_values": [ + "5", + "6", + "7", + "8", + "3" + ] + } + } + ] +} \ No newline at end of file diff --git a/hyperparameter/n3/realtabformer/rtf-n3-20260505_023857/realtabformer_features.json b/hyperparameter/n3/realtabformer/rtf-n3-20260505_023857/realtabformer_features.json new file mode 100644 index 0000000000000000000000000000000000000000..08fe4d766d091d2f2ddba724a16b9509cbe4c390 --- /dev/null +++ b/hyperparameter/n3/realtabformer/rtf-n3-20260505_023857/realtabformer_features.json @@ -0,0 +1,62 @@ +[ + { + "feature_name": "fixed acidity", + "data_type": "continuous", + "is_target": false + }, + { + "feature_name": "volatile acidity", + "data_type": "continuous", + "is_target": false + }, + { + "feature_name": "citric acid", + "data_type": "continuous", + "is_target": false + }, + { + "feature_name": "residual sugar", + "data_type": "continuous", + "is_target": false + }, + { + "feature_name": "chlorides", + "data_type": "continuous", + "is_target": false + }, + { + "feature_name": "free sulfur dioxide", + "data_type": "continuous", + "is_target": false + }, + { + "feature_name": "total sulfur dioxide", + "data_type": "continuous", + "is_target": false + }, + { + "feature_name": "density", + "data_type": "continuous", + "is_target": false + }, + { + "feature_name": "pH", + "data_type": "continuous", + "is_target": false + }, + { + "feature_name": "sulphates", + "data_type": "continuous", + "is_target": false + }, + { + "feature_name": "alcohol", + "data_type": "continuous", + "is_target": false + }, + { + "feature_name": "quality", + "data_type": "continuous", + "is_target": true + } +] \ No newline at end of file diff --git a/hyperparameter/n3/realtabformer/rtf-n3-20260505_023857/rtf-n3-3918-20260505_024222.csv b/hyperparameter/n3/realtabformer/rtf-n3-20260505_023857/rtf-n3-3918-20260505_024222.csv new file mode 100644 index 0000000000000000000000000000000000000000..c74e56bdea1e0033a021d8c46cb7bb4af590a99d --- /dev/null +++ b/hyperparameter/n3/realtabformer/rtf-n3-20260505_023857/rtf-n3-3918-20260505_024222.csv @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:2d77c16f3ce6d5e5dfdc7c50f4083c720883d00329ce809cf1e2880b13b44262 +size 227180 diff --git a/hyperparameter/n3/realtabformer/rtf-n3-20260505_023857/rtf_checkpoints/checkpoint-2200/config.json b/hyperparameter/n3/realtabformer/rtf-n3-20260505_023857/rtf_checkpoints/checkpoint-2200/config.json new file mode 100644 index 0000000000000000000000000000000000000000..1876b75d3abc713ca867fe8e643ea273dc9cea87 --- /dev/null +++ b/hyperparameter/n3/realtabformer/rtf-n3-20260505_023857/rtf_checkpoints/checkpoint-2200/config.json @@ -0,0 +1,34 @@ +{ + "activation_function": "gelu_new", + "add_cross_attention": false, + "architectures": [ + "GPT2LMHeadModel" + ], + "attn_pdrop": 0.1, + "bos_token_id": 5, + "dtype": "float32", + "embd_pdrop": 0.1, + "eos_token_id": 6, + "initializer_range": 0.02, + "layer_norm_epsilon": 1e-05, + "model_type": "gpt2", + "n_embd": 768, + "n_head": 12, + "n_inner": null, + "n_layer": 6, + "n_positions": 1024, + "pad_token_id": null, + "reorder_and_upcast_attn": false, + "resid_pdrop": 0.1, + "scale_attn_by_inverse_layer_idx": false, + "scale_attn_weights": true, + "summary_activation": null, + "summary_first_dropout": 0.1, + "summary_proj_to_labels": true, + "summary_type": "cls_index", + "summary_use_proj": true, + "tie_word_embeddings": true, + "transformers_version": "5.5.3", + "use_cache": false, + "vocab_size": 304 +} diff --git a/hyperparameter/n3/realtabformer/rtf-n3-20260505_023857/rtf_checkpoints/checkpoint-2200/generation_config.json b/hyperparameter/n3/realtabformer/rtf-n3-20260505_023857/rtf_checkpoints/checkpoint-2200/generation_config.json new file mode 100644 index 0000000000000000000000000000000000000000..ffe89567780e75b5c22eade9be971483b9618f39 --- /dev/null +++ b/hyperparameter/n3/realtabformer/rtf-n3-20260505_023857/rtf_checkpoints/checkpoint-2200/generation_config.json @@ -0,0 +1,9 @@ +{ + "_from_model_config": true, + "bos_token_id": 5, + "eos_token_id": 6, + "output_attentions": false, + "output_hidden_states": false, + "transformers_version": "5.5.3", + "use_cache": true +} diff --git a/hyperparameter/n3/realtabformer/rtf-n3-20260505_023857/rtf_checkpoints/checkpoint-2200/model.safetensors b/hyperparameter/n3/realtabformer/rtf-n3-20260505_023857/rtf_checkpoints/checkpoint-2200/model.safetensors new file mode 100644 index 0000000000000000000000000000000000000000..53b3b5e360bea3ef8f0ef3289fac43ef79722e4d --- /dev/null +++ b/hyperparameter/n3/realtabformer/rtf-n3-20260505_023857/rtf_checkpoints/checkpoint-2200/model.safetensors @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:f8eb85abc1a1e688e4b37d65f3cd0d0a58b35f98b1d779076023c1b5a4888798 +size 174202312 diff --git a/hyperparameter/n3/realtabformer/rtf-n3-20260505_023857/rtf_checkpoints/checkpoint-2200/optimizer.pt b/hyperparameter/n3/realtabformer/rtf-n3-20260505_023857/rtf_checkpoints/checkpoint-2200/optimizer.pt new file mode 100644 index 0000000000000000000000000000000000000000..2ba99007286fdb72578e22531886e5bb160850ea --- /dev/null +++ b/hyperparameter/n3/realtabformer/rtf-n3-20260505_023857/rtf_checkpoints/checkpoint-2200/optimizer.pt @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:364372c5707a7f927dbcb8967a7da4911a4d4ca7bf19ab36dedde18f55350536 +size 348453707 diff --git a/hyperparameter/n3/realtabformer/rtf-n3-20260505_023857/rtf_checkpoints/checkpoint-2200/rng_state.pth b/hyperparameter/n3/realtabformer/rtf-n3-20260505_023857/rtf_checkpoints/checkpoint-2200/rng_state.pth new file mode 100644 index 0000000000000000000000000000000000000000..f310f58c38eef2be7066c2c663a949e744e23a0d --- /dev/null +++ b/hyperparameter/n3/realtabformer/rtf-n3-20260505_023857/rtf_checkpoints/checkpoint-2200/rng_state.pth @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:3cbfea85035e15bf3f5f26523846ba467516980337a57ec8b2d880896c5c2d73 +size 14645 diff --git a/hyperparameter/n3/realtabformer/rtf-n3-20260505_023857/rtf_checkpoints/checkpoint-2200/scaler.pt b/hyperparameter/n3/realtabformer/rtf-n3-20260505_023857/rtf_checkpoints/checkpoint-2200/scaler.pt new file mode 100644 index 0000000000000000000000000000000000000000..aec0bc69348cfd6187a712348321e0913de17cc5 --- /dev/null +++ b/hyperparameter/n3/realtabformer/rtf-n3-20260505_023857/rtf_checkpoints/checkpoint-2200/scaler.pt @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:1f6829e47549862e022b4eedf087cf81394f448150e958ad6663988076bf8691 +size 1383 diff --git a/hyperparameter/n3/realtabformer/rtf-n3-20260505_023857/rtf_checkpoints/checkpoint-2200/scheduler.pt b/hyperparameter/n3/realtabformer/rtf-n3-20260505_023857/rtf_checkpoints/checkpoint-2200/scheduler.pt new file mode 100644 index 0000000000000000000000000000000000000000..46ebf73f7046aba813593944783590f15eb15468 --- /dev/null +++ b/hyperparameter/n3/realtabformer/rtf-n3-20260505_023857/rtf_checkpoints/checkpoint-2200/scheduler.pt @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:dd9696767529637083bb1642331b3fce14a20af54db7e5e6495779a56d52f5ac +size 1465 diff --git a/hyperparameter/n3/realtabformer/rtf-n3-20260505_023857/rtf_checkpoints/checkpoint-2200/trainer_state.json b/hyperparameter/n3/realtabformer/rtf-n3-20260505_023857/rtf_checkpoints/checkpoint-2200/trainer_state.json new file mode 100644 index 0000000000000000000000000000000000000000..e048b3345a89dc0efb58925d1c1286996661f193 --- /dev/null +++ b/hyperparameter/n3/realtabformer/rtf-n3-20260505_023857/rtf_checkpoints/checkpoint-2200/trainer_state.json @@ -0,0 +1,188 @@ +{ + "best_global_step": null, + "best_metric": null, + "best_model_checkpoint": null, + "epoch": 17.889795918367348, + "eval_steps": 100, + "global_step": 2200, + "is_hyper_param_search": false, + "is_local_process_zero": true, + "is_world_process_zero": true, + "log_history": [ + { + "epoch": 0.8163265306122449, + "grad_norm": 0.20651009678840637, + "learning_rate": 4.798780487804878e-05, + "loss": 1.4765293884277344, + "step": 100 + }, + { + "epoch": 1.6285714285714286, + "grad_norm": 0.19934388995170593, + "learning_rate": 4.595528455284553e-05, + "loss": 0.8814392852783203, + "step": 200 + }, + { + "epoch": 2.440816326530612, + "grad_norm": 0.19316822290420532, + "learning_rate": 4.3922764227642274e-05, + "loss": 0.840040283203125, + "step": 300 + }, + { + "epoch": 3.253061224489796, + "grad_norm": 0.18033085763454437, + "learning_rate": 4.1890243902439024e-05, + "loss": 0.8208641052246094, + "step": 400 + }, + { + "epoch": 4.0653061224489795, + "grad_norm": 0.17682181298732758, + "learning_rate": 3.9857723577235775e-05, + "loss": 0.8067519378662109, + "step": 500 + }, + { + "epoch": 4.881632653061224, + "grad_norm": 0.17977000772953033, + "learning_rate": 3.782520325203252e-05, + "loss": 0.7982061004638672, + "step": 600 + }, + { + "epoch": 5.6938775510204085, + "grad_norm": 0.1947944313287735, + "learning_rate": 3.579268292682927e-05, + "loss": 0.7905941772460937, + "step": 700 + }, + { + "epoch": 6.506122448979592, + "grad_norm": 0.17018333077430725, + "learning_rate": 3.376016260162601e-05, + "loss": 0.7849921417236329, + "step": 800 + }, + { + "epoch": 7.318367346938776, + "grad_norm": 0.16545553505420685, + "learning_rate": 3.1727642276422764e-05, + "loss": 0.7801763153076172, + "step": 900 + }, + { + "epoch": 8.130612244897959, + "grad_norm": 0.17844344675540924, + "learning_rate": 2.969512195121951e-05, + "loss": 0.7743854522705078, + "step": 1000 + }, + { + "epoch": 8.946938775510205, + "grad_norm": 0.18225695192813873, + "learning_rate": 2.766260162601626e-05, + "loss": 0.7705725860595704, + "step": 1100 + }, + { + "epoch": 9.759183673469387, + "grad_norm": 0.18053610622882843, + "learning_rate": 2.563008130081301e-05, + "loss": 0.7648771667480468, + "step": 1200 + }, + { + "epoch": 10.571428571428571, + "grad_norm": 0.17593175172805786, + "learning_rate": 2.3597560975609757e-05, + "loss": 0.7595262908935547, + "step": 1300 + }, + { + "epoch": 11.383673469387755, + "grad_norm": 0.1804026961326599, + "learning_rate": 2.1565040650406504e-05, + "loss": 0.7568254089355468, + "step": 1400 + }, + { + "epoch": 12.19591836734694, + "grad_norm": 0.18412551283836365, + "learning_rate": 1.953252032520325e-05, + "loss": 0.7550920104980469, + "step": 1500 + }, + { + "epoch": 13.008163265306122, + "grad_norm": 0.18064503371715546, + "learning_rate": 1.75e-05, + "loss": 0.7494178009033203, + "step": 1600 + }, + { + "epoch": 13.824489795918367, + "grad_norm": 0.1948181688785553, + "learning_rate": 1.546747967479675e-05, + "loss": 0.7454795837402344, + "step": 1700 + }, + { + "epoch": 14.636734693877552, + "grad_norm": 0.20210713148117065, + "learning_rate": 1.3434959349593495e-05, + "loss": 0.740928955078125, + "step": 1800 + }, + { + "epoch": 15.448979591836734, + "grad_norm": 0.19284097850322723, + "learning_rate": 1.1402439024390245e-05, + "loss": 0.7396183013916016, + "step": 1900 + }, + { + "epoch": 16.261224489795918, + "grad_norm": 0.19908523559570312, + "learning_rate": 9.369918699186993e-06, + "loss": 0.7346043395996094, + "step": 2000 + }, + { + "epoch": 17.073469387755104, + "grad_norm": 0.1996530443429947, + "learning_rate": 7.337398373983741e-06, + "loss": 0.7345467376708984, + "step": 2100 + }, + { + "epoch": 17.889795918367348, + "grad_norm": 0.19030335545539856, + "learning_rate": 5.304878048780488e-06, + "loss": 0.7297074127197266, + "step": 2200 + } + ], + "logging_steps": 100, + "max_steps": 2460, + "num_input_tokens_seen": 0, + "num_train_epochs": 20, + "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": 1037391989538816.0, + "train_batch_size": 8, + "trial_name": null, + "trial_params": null +} diff --git a/hyperparameter/n3/realtabformer/rtf-n3-20260505_023857/rtf_checkpoints/checkpoint-2200/training_args.bin b/hyperparameter/n3/realtabformer/rtf-n3-20260505_023857/rtf_checkpoints/checkpoint-2200/training_args.bin new file mode 100644 index 0000000000000000000000000000000000000000..0443202bbc5de94f0d0d09164bf2ca8102a8869f --- /dev/null +++ b/hyperparameter/n3/realtabformer/rtf-n3-20260505_023857/rtf_checkpoints/checkpoint-2200/training_args.bin @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:86d01f2501df27a7bb9ffc25201c399525fb2c1bd2149d56f439c7a738a4ac32 +size 5201 diff --git a/hyperparameter/n3/realtabformer/rtf-n3-20260505_023857/rtf_checkpoints/checkpoint-2214/config.json b/hyperparameter/n3/realtabformer/rtf-n3-20260505_023857/rtf_checkpoints/checkpoint-2214/config.json new file mode 100644 index 0000000000000000000000000000000000000000..1876b75d3abc713ca867fe8e643ea273dc9cea87 --- /dev/null +++ b/hyperparameter/n3/realtabformer/rtf-n3-20260505_023857/rtf_checkpoints/checkpoint-2214/config.json @@ -0,0 +1,34 @@ +{ + "activation_function": "gelu_new", + "add_cross_attention": false, + "architectures": [ + "GPT2LMHeadModel" + ], + "attn_pdrop": 0.1, + "bos_token_id": 5, + "dtype": "float32", + "embd_pdrop": 0.1, + "eos_token_id": 6, + "initializer_range": 0.02, + "layer_norm_epsilon": 1e-05, + "model_type": "gpt2", + "n_embd": 768, + "n_head": 12, + "n_inner": null, + "n_layer": 6, + "n_positions": 1024, + "pad_token_id": null, + "reorder_and_upcast_attn": false, + "resid_pdrop": 0.1, + "scale_attn_by_inverse_layer_idx": false, + "scale_attn_weights": true, + "summary_activation": null, + "summary_first_dropout": 0.1, + "summary_proj_to_labels": true, + "summary_type": "cls_index", + "summary_use_proj": true, + "tie_word_embeddings": true, + "transformers_version": "5.5.3", + "use_cache": false, + "vocab_size": 304 +} diff --git a/hyperparameter/n3/realtabformer/rtf-n3-20260505_023857/rtf_checkpoints/checkpoint-2214/generation_config.json b/hyperparameter/n3/realtabformer/rtf-n3-20260505_023857/rtf_checkpoints/checkpoint-2214/generation_config.json new file mode 100644 index 0000000000000000000000000000000000000000..ffe89567780e75b5c22eade9be971483b9618f39 --- /dev/null +++ b/hyperparameter/n3/realtabformer/rtf-n3-20260505_023857/rtf_checkpoints/checkpoint-2214/generation_config.json @@ -0,0 +1,9 @@ +{ + "_from_model_config": true, + "bos_token_id": 5, + "eos_token_id": 6, + "output_attentions": false, + "output_hidden_states": false, + "transformers_version": "5.5.3", + "use_cache": true +} diff --git a/hyperparameter/n3/realtabformer/rtf-n3-20260505_023857/rtf_checkpoints/checkpoint-2214/model.safetensors b/hyperparameter/n3/realtabformer/rtf-n3-20260505_023857/rtf_checkpoints/checkpoint-2214/model.safetensors new file mode 100644 index 0000000000000000000000000000000000000000..43421b3104069a70a2b7533928fede8675fb14bd --- /dev/null +++ b/hyperparameter/n3/realtabformer/rtf-n3-20260505_023857/rtf_checkpoints/checkpoint-2214/model.safetensors @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:a5add5059bb443378bc87af91d4e8cf8f18ce6fd8c919df80a2b06f2de844376 +size 174202312 diff --git a/hyperparameter/n3/realtabformer/rtf-n3-20260505_023857/rtf_checkpoints/checkpoint-2214/optimizer.pt b/hyperparameter/n3/realtabformer/rtf-n3-20260505_023857/rtf_checkpoints/checkpoint-2214/optimizer.pt new file mode 100644 index 0000000000000000000000000000000000000000..a4d1ecae5c906527f9bd65a68811fb15672bd1c7 --- /dev/null +++ b/hyperparameter/n3/realtabformer/rtf-n3-20260505_023857/rtf_checkpoints/checkpoint-2214/optimizer.pt @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:eaee29a790c304cb84410bfa86ca9c6fba305e7de54e12d8cc414cdc631d7915 +size 348453707 diff --git a/hyperparameter/n3/realtabformer/rtf-n3-20260505_023857/rtf_checkpoints/checkpoint-2214/rng_state.pth b/hyperparameter/n3/realtabformer/rtf-n3-20260505_023857/rtf_checkpoints/checkpoint-2214/rng_state.pth new file mode 100644 index 0000000000000000000000000000000000000000..679cccca9eef2d1209a7489169a3285e994b2880 --- /dev/null +++ b/hyperparameter/n3/realtabformer/rtf-n3-20260505_023857/rtf_checkpoints/checkpoint-2214/rng_state.pth @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:8f665cb38e8da37ae1ce0d894d5d684dc1a95404fde77b9c371d7a816855c41d +size 14645 diff --git a/hyperparameter/n3/realtabformer/rtf-n3-20260505_023857/rtf_checkpoints/checkpoint-2214/scaler.pt b/hyperparameter/n3/realtabformer/rtf-n3-20260505_023857/rtf_checkpoints/checkpoint-2214/scaler.pt new file mode 100644 index 0000000000000000000000000000000000000000..b8754e71d1cea575b87f054ba74a3151b73a5923 --- /dev/null +++ b/hyperparameter/n3/realtabformer/rtf-n3-20260505_023857/rtf_checkpoints/checkpoint-2214/scaler.pt @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:863a39a9e0f4335e2feec9c59b5473400d83afb85cbda80403111d5b0cdf099a +size 1383 diff --git a/hyperparameter/n3/realtabformer/rtf-n3-20260505_023857/rtf_checkpoints/checkpoint-2214/scheduler.pt b/hyperparameter/n3/realtabformer/rtf-n3-20260505_023857/rtf_checkpoints/checkpoint-2214/scheduler.pt new file mode 100644 index 0000000000000000000000000000000000000000..19335003c7064953d842f4402f92e7faf512c962 --- /dev/null +++ b/hyperparameter/n3/realtabformer/rtf-n3-20260505_023857/rtf_checkpoints/checkpoint-2214/scheduler.pt @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:11e52d79a6ebe7dd77199d0dbc993093eeaf19060cdc6417869ca8ce806af18c +size 1465 diff --git a/hyperparameter/n3/realtabformer/rtf-n3-20260505_023857/rtf_checkpoints/checkpoint-2214/trainer_state.json b/hyperparameter/n3/realtabformer/rtf-n3-20260505_023857/rtf_checkpoints/checkpoint-2214/trainer_state.json new file mode 100644 index 0000000000000000000000000000000000000000..d880a159f1761c7d0285ebdeff88c1a78b8aa2b6 --- /dev/null +++ b/hyperparameter/n3/realtabformer/rtf-n3-20260505_023857/rtf_checkpoints/checkpoint-2214/trainer_state.json @@ -0,0 +1,188 @@ +{ + "best_global_step": null, + "best_metric": null, + "best_model_checkpoint": null, + "epoch": 18.0, + "eval_steps": 100, + "global_step": 2214, + "is_hyper_param_search": false, + "is_local_process_zero": true, + "is_world_process_zero": true, + "log_history": [ + { + "epoch": 0.8163265306122449, + "grad_norm": 0.20651009678840637, + "learning_rate": 4.798780487804878e-05, + "loss": 1.4765293884277344, + "step": 100 + }, + { + "epoch": 1.6285714285714286, + "grad_norm": 0.19934388995170593, + "learning_rate": 4.595528455284553e-05, + "loss": 0.8814392852783203, + "step": 200 + }, + { + "epoch": 2.440816326530612, + "grad_norm": 0.19316822290420532, + "learning_rate": 4.3922764227642274e-05, + "loss": 0.840040283203125, + "step": 300 + }, + { + "epoch": 3.253061224489796, + "grad_norm": 0.18033085763454437, + "learning_rate": 4.1890243902439024e-05, + "loss": 0.8208641052246094, + "step": 400 + }, + { + "epoch": 4.0653061224489795, + "grad_norm": 0.17682181298732758, + "learning_rate": 3.9857723577235775e-05, + "loss": 0.8067519378662109, + "step": 500 + }, + { + "epoch": 4.881632653061224, + "grad_norm": 0.17977000772953033, + "learning_rate": 3.782520325203252e-05, + "loss": 0.7982061004638672, + "step": 600 + }, + { + "epoch": 5.6938775510204085, + "grad_norm": 0.1947944313287735, + "learning_rate": 3.579268292682927e-05, + "loss": 0.7905941772460937, + "step": 700 + }, + { + "epoch": 6.506122448979592, + "grad_norm": 0.17018333077430725, + "learning_rate": 3.376016260162601e-05, + "loss": 0.7849921417236329, + "step": 800 + }, + { + "epoch": 7.318367346938776, + "grad_norm": 0.16545553505420685, + "learning_rate": 3.1727642276422764e-05, + "loss": 0.7801763153076172, + "step": 900 + }, + { + "epoch": 8.130612244897959, + "grad_norm": 0.17844344675540924, + "learning_rate": 2.969512195121951e-05, + "loss": 0.7743854522705078, + "step": 1000 + }, + { + "epoch": 8.946938775510205, + "grad_norm": 0.18225695192813873, + "learning_rate": 2.766260162601626e-05, + "loss": 0.7705725860595704, + "step": 1100 + }, + { + "epoch": 9.759183673469387, + "grad_norm": 0.18053610622882843, + "learning_rate": 2.563008130081301e-05, + "loss": 0.7648771667480468, + "step": 1200 + }, + { + "epoch": 10.571428571428571, + "grad_norm": 0.17593175172805786, + "learning_rate": 2.3597560975609757e-05, + "loss": 0.7595262908935547, + "step": 1300 + }, + { + "epoch": 11.383673469387755, + "grad_norm": 0.1804026961326599, + "learning_rate": 2.1565040650406504e-05, + "loss": 0.7568254089355468, + "step": 1400 + }, + { + "epoch": 12.19591836734694, + "grad_norm": 0.18412551283836365, + "learning_rate": 1.953252032520325e-05, + "loss": 0.7550920104980469, + "step": 1500 + }, + { + "epoch": 13.008163265306122, + "grad_norm": 0.18064503371715546, + "learning_rate": 1.75e-05, + "loss": 0.7494178009033203, + "step": 1600 + }, + { + "epoch": 13.824489795918367, + "grad_norm": 0.1948181688785553, + "learning_rate": 1.546747967479675e-05, + "loss": 0.7454795837402344, + "step": 1700 + }, + { + "epoch": 14.636734693877552, + "grad_norm": 0.20210713148117065, + "learning_rate": 1.3434959349593495e-05, + "loss": 0.740928955078125, + "step": 1800 + }, + { + "epoch": 15.448979591836734, + "grad_norm": 0.19284097850322723, + "learning_rate": 1.1402439024390245e-05, + "loss": 0.7396183013916016, + "step": 1900 + }, + { + "epoch": 16.261224489795918, + "grad_norm": 0.19908523559570312, + "learning_rate": 9.369918699186993e-06, + "loss": 0.7346043395996094, + "step": 2000 + }, + { + "epoch": 17.073469387755104, + "grad_norm": 0.1996530443429947, + "learning_rate": 7.337398373983741e-06, + "loss": 0.7345467376708984, + "step": 2100 + }, + { + "epoch": 17.889795918367348, + "grad_norm": 0.19030335545539856, + "learning_rate": 5.304878048780488e-06, + "loss": 0.7297074127197266, + "step": 2200 + } + ], + "logging_steps": 100, + "max_steps": 2460, + "num_input_tokens_seen": 0, + "num_train_epochs": 20, + "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": 1043755994382336.0, + "train_batch_size": 8, + "trial_name": null, + "trial_params": null +} diff --git a/hyperparameter/n3/realtabformer/rtf-n3-20260505_023857/rtf_checkpoints/checkpoint-2214/training_args.bin b/hyperparameter/n3/realtabformer/rtf-n3-20260505_023857/rtf_checkpoints/checkpoint-2214/training_args.bin new file mode 100644 index 0000000000000000000000000000000000000000..0443202bbc5de94f0d0d09164bf2ca8102a8869f --- /dev/null +++ b/hyperparameter/n3/realtabformer/rtf-n3-20260505_023857/rtf_checkpoints/checkpoint-2214/training_args.bin @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:86d01f2501df27a7bb9ffc25201c399525fb2c1bd2149d56f439c7a738a4ac32 +size 5201 diff --git a/hyperparameter/n3/realtabformer/rtf-n3-20260505_023857/rtf_checkpoints/checkpoint-2300/config.json b/hyperparameter/n3/realtabformer/rtf-n3-20260505_023857/rtf_checkpoints/checkpoint-2300/config.json new file mode 100644 index 0000000000000000000000000000000000000000..1876b75d3abc713ca867fe8e643ea273dc9cea87 --- /dev/null +++ b/hyperparameter/n3/realtabformer/rtf-n3-20260505_023857/rtf_checkpoints/checkpoint-2300/config.json @@ -0,0 +1,34 @@ +{ + "activation_function": "gelu_new", + "add_cross_attention": false, + "architectures": [ + "GPT2LMHeadModel" + ], + "attn_pdrop": 0.1, + "bos_token_id": 5, + "dtype": "float32", + "embd_pdrop": 0.1, + "eos_token_id": 6, + "initializer_range": 0.02, + "layer_norm_epsilon": 1e-05, + "model_type": "gpt2", + "n_embd": 768, + "n_head": 12, + "n_inner": null, + "n_layer": 6, + "n_positions": 1024, + "pad_token_id": null, + "reorder_and_upcast_attn": false, + "resid_pdrop": 0.1, + "scale_attn_by_inverse_layer_idx": false, + "scale_attn_weights": true, + "summary_activation": null, + "summary_first_dropout": 0.1, + "summary_proj_to_labels": true, + "summary_type": "cls_index", + "summary_use_proj": true, + "tie_word_embeddings": true, + "transformers_version": "5.5.3", + "use_cache": false, + "vocab_size": 304 +} diff --git a/hyperparameter/n3/realtabformer/rtf-n3-20260505_023857/rtf_checkpoints/checkpoint-2300/generation_config.json b/hyperparameter/n3/realtabformer/rtf-n3-20260505_023857/rtf_checkpoints/checkpoint-2300/generation_config.json new file mode 100644 index 0000000000000000000000000000000000000000..ffe89567780e75b5c22eade9be971483b9618f39 --- /dev/null +++ b/hyperparameter/n3/realtabformer/rtf-n3-20260505_023857/rtf_checkpoints/checkpoint-2300/generation_config.json @@ -0,0 +1,9 @@ +{ + "_from_model_config": true, + "bos_token_id": 5, + "eos_token_id": 6, + "output_attentions": false, + "output_hidden_states": false, + "transformers_version": "5.5.3", + "use_cache": true +} diff --git a/hyperparameter/n3/realtabformer/rtf-n3-20260505_023857/rtf_checkpoints/checkpoint-2300/model.safetensors b/hyperparameter/n3/realtabformer/rtf-n3-20260505_023857/rtf_checkpoints/checkpoint-2300/model.safetensors new file mode 100644 index 0000000000000000000000000000000000000000..4b756004b95daca6c17468160eeb87b78696fc4c --- /dev/null +++ b/hyperparameter/n3/realtabformer/rtf-n3-20260505_023857/rtf_checkpoints/checkpoint-2300/model.safetensors @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:ffc9f9a47760089bc6a71c4fb64c25a735eb229bd52f679ec8e495fafe26970c +size 174202312 diff --git a/hyperparameter/n3/realtabformer/rtf-n3-20260505_023857/rtf_checkpoints/checkpoint-2300/optimizer.pt b/hyperparameter/n3/realtabformer/rtf-n3-20260505_023857/rtf_checkpoints/checkpoint-2300/optimizer.pt new file mode 100644 index 0000000000000000000000000000000000000000..7cf962c1ea8eb091b81b5b66a60a013740d82263 --- /dev/null +++ b/hyperparameter/n3/realtabformer/rtf-n3-20260505_023857/rtf_checkpoints/checkpoint-2300/optimizer.pt @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:f0948cc549303a7c18e6720466c971fccf8fbad4f7848052e7415d3998952897 +size 348453707 diff --git a/hyperparameter/n3/realtabformer/rtf-n3-20260505_023857/rtf_checkpoints/checkpoint-2300/rng_state.pth b/hyperparameter/n3/realtabformer/rtf-n3-20260505_023857/rtf_checkpoints/checkpoint-2300/rng_state.pth new file mode 100644 index 0000000000000000000000000000000000000000..3f611ac8f81373f8136e87b53dde9d73c8bf2bc3 --- /dev/null +++ b/hyperparameter/n3/realtabformer/rtf-n3-20260505_023857/rtf_checkpoints/checkpoint-2300/rng_state.pth @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:c1ecf0412bd50defc69a54e2d76e276f01362f7b1223afdca4918ad576883940 +size 14645 diff --git a/hyperparameter/n3/realtabformer/rtf-n3-20260505_023857/rtf_checkpoints/checkpoint-2300/scaler.pt b/hyperparameter/n3/realtabformer/rtf-n3-20260505_023857/rtf_checkpoints/checkpoint-2300/scaler.pt new file mode 100644 index 0000000000000000000000000000000000000000..dfa38287bdec0a64548a1c269e4aa937bef2edec --- /dev/null +++ b/hyperparameter/n3/realtabformer/rtf-n3-20260505_023857/rtf_checkpoints/checkpoint-2300/scaler.pt @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:fd9b4a9496356e2b9baa77ee7dd16dce4e644d0c2b24f1f2ed619fc446f84f7f +size 1383 diff --git a/hyperparameter/n3/realtabformer/rtf-n3-20260505_023857/rtf_checkpoints/checkpoint-2300/scheduler.pt b/hyperparameter/n3/realtabformer/rtf-n3-20260505_023857/rtf_checkpoints/checkpoint-2300/scheduler.pt new file mode 100644 index 0000000000000000000000000000000000000000..15c01d127d60772a0fd6c859d959bc6e2dc726aa --- /dev/null +++ b/hyperparameter/n3/realtabformer/rtf-n3-20260505_023857/rtf_checkpoints/checkpoint-2300/scheduler.pt @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:df05d626723a61708c4b4f9830c710998b95b192150fa9b6418a7c557565b0be +size 1465 diff --git a/hyperparameter/n3/realtabformer/rtf-n3-20260505_023857/rtf_checkpoints/checkpoint-2300/trainer_state.json b/hyperparameter/n3/realtabformer/rtf-n3-20260505_023857/rtf_checkpoints/checkpoint-2300/trainer_state.json new file mode 100644 index 0000000000000000000000000000000000000000..1c4476cac4ede8a55836f832b27a8dab599e127c --- /dev/null +++ b/hyperparameter/n3/realtabformer/rtf-n3-20260505_023857/rtf_checkpoints/checkpoint-2300/trainer_state.json @@ -0,0 +1,195 @@ +{ + "best_global_step": null, + "best_metric": null, + "best_model_checkpoint": null, + "epoch": 18.70204081632653, + "eval_steps": 100, + "global_step": 2300, + "is_hyper_param_search": false, + "is_local_process_zero": true, + "is_world_process_zero": true, + "log_history": [ + { + "epoch": 0.8163265306122449, + "grad_norm": 0.20651009678840637, + "learning_rate": 4.798780487804878e-05, + "loss": 1.4765293884277344, + "step": 100 + }, + { + "epoch": 1.6285714285714286, + "grad_norm": 0.19934388995170593, + "learning_rate": 4.595528455284553e-05, + "loss": 0.8814392852783203, + "step": 200 + }, + { + "epoch": 2.440816326530612, + "grad_norm": 0.19316822290420532, + "learning_rate": 4.3922764227642274e-05, + "loss": 0.840040283203125, + "step": 300 + }, + { + "epoch": 3.253061224489796, + "grad_norm": 0.18033085763454437, + "learning_rate": 4.1890243902439024e-05, + "loss": 0.8208641052246094, + "step": 400 + }, + { + "epoch": 4.0653061224489795, + "grad_norm": 0.17682181298732758, + "learning_rate": 3.9857723577235775e-05, + "loss": 0.8067519378662109, + "step": 500 + }, + { + "epoch": 4.881632653061224, + "grad_norm": 0.17977000772953033, + "learning_rate": 3.782520325203252e-05, + "loss": 0.7982061004638672, + "step": 600 + }, + { + "epoch": 5.6938775510204085, + "grad_norm": 0.1947944313287735, + "learning_rate": 3.579268292682927e-05, + "loss": 0.7905941772460937, + "step": 700 + }, + { + "epoch": 6.506122448979592, + "grad_norm": 0.17018333077430725, + "learning_rate": 3.376016260162601e-05, + "loss": 0.7849921417236329, + "step": 800 + }, + { + "epoch": 7.318367346938776, + "grad_norm": 0.16545553505420685, + "learning_rate": 3.1727642276422764e-05, + "loss": 0.7801763153076172, + "step": 900 + }, + { + "epoch": 8.130612244897959, + "grad_norm": 0.17844344675540924, + "learning_rate": 2.969512195121951e-05, + "loss": 0.7743854522705078, + "step": 1000 + }, + { + "epoch": 8.946938775510205, + "grad_norm": 0.18225695192813873, + "learning_rate": 2.766260162601626e-05, + "loss": 0.7705725860595704, + "step": 1100 + }, + { + "epoch": 9.759183673469387, + "grad_norm": 0.18053610622882843, + "learning_rate": 2.563008130081301e-05, + "loss": 0.7648771667480468, + "step": 1200 + }, + { + "epoch": 10.571428571428571, + "grad_norm": 0.17593175172805786, + "learning_rate": 2.3597560975609757e-05, + "loss": 0.7595262908935547, + "step": 1300 + }, + { + "epoch": 11.383673469387755, + "grad_norm": 0.1804026961326599, + "learning_rate": 2.1565040650406504e-05, + "loss": 0.7568254089355468, + "step": 1400 + }, + { + "epoch": 12.19591836734694, + "grad_norm": 0.18412551283836365, + "learning_rate": 1.953252032520325e-05, + "loss": 0.7550920104980469, + "step": 1500 + }, + { + "epoch": 13.008163265306122, + "grad_norm": 0.18064503371715546, + "learning_rate": 1.75e-05, + "loss": 0.7494178009033203, + "step": 1600 + }, + { + "epoch": 13.824489795918367, + "grad_norm": 0.1948181688785553, + "learning_rate": 1.546747967479675e-05, + "loss": 0.7454795837402344, + "step": 1700 + }, + { + "epoch": 14.636734693877552, + "grad_norm": 0.20210713148117065, + "learning_rate": 1.3434959349593495e-05, + "loss": 0.740928955078125, + "step": 1800 + }, + { + "epoch": 15.448979591836734, + "grad_norm": 0.19284097850322723, + "learning_rate": 1.1402439024390245e-05, + "loss": 0.7396183013916016, + "step": 1900 + }, + { + "epoch": 16.261224489795918, + "grad_norm": 0.19908523559570312, + "learning_rate": 9.369918699186993e-06, + "loss": 0.7346043395996094, + "step": 2000 + }, + { + "epoch": 17.073469387755104, + "grad_norm": 0.1996530443429947, + "learning_rate": 7.337398373983741e-06, + "loss": 0.7345467376708984, + "step": 2100 + }, + { + "epoch": 17.889795918367348, + "grad_norm": 0.19030335545539856, + "learning_rate": 5.304878048780488e-06, + "loss": 0.7297074127197266, + "step": 2200 + }, + { + "epoch": 18.70204081632653, + "grad_norm": 0.20985183119773865, + "learning_rate": 3.272357723577236e-06, + "loss": 0.7269140625, + "step": 2300 + } + ], + "logging_steps": 100, + "max_steps": 2460, + "num_input_tokens_seen": 0, + "num_train_epochs": 20, + "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": 1084485625380864.0, + "train_batch_size": 8, + "trial_name": null, + "trial_params": null +} diff --git a/hyperparameter/n3/realtabformer/rtf-n3-20260505_023857/rtf_checkpoints/checkpoint-2300/training_args.bin b/hyperparameter/n3/realtabformer/rtf-n3-20260505_023857/rtf_checkpoints/checkpoint-2300/training_args.bin new file mode 100644 index 0000000000000000000000000000000000000000..0443202bbc5de94f0d0d09164bf2ca8102a8869f --- /dev/null +++ b/hyperparameter/n3/realtabformer/rtf-n3-20260505_023857/rtf_checkpoints/checkpoint-2300/training_args.bin @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:86d01f2501df27a7bb9ffc25201c399525fb2c1bd2149d56f439c7a738a4ac32 +size 5201 diff --git a/hyperparameter/n3/realtabformer/rtf-n3-20260505_023857/rtf_checkpoints/checkpoint-2337/config.json b/hyperparameter/n3/realtabformer/rtf-n3-20260505_023857/rtf_checkpoints/checkpoint-2337/config.json new file mode 100644 index 0000000000000000000000000000000000000000..1876b75d3abc713ca867fe8e643ea273dc9cea87 --- /dev/null +++ b/hyperparameter/n3/realtabformer/rtf-n3-20260505_023857/rtf_checkpoints/checkpoint-2337/config.json @@ -0,0 +1,34 @@ +{ + "activation_function": "gelu_new", + "add_cross_attention": false, + "architectures": [ + "GPT2LMHeadModel" + ], + "attn_pdrop": 0.1, + "bos_token_id": 5, + "dtype": "float32", + "embd_pdrop": 0.1, + "eos_token_id": 6, + "initializer_range": 0.02, + "layer_norm_epsilon": 1e-05, + "model_type": "gpt2", + "n_embd": 768, + "n_head": 12, + "n_inner": null, + "n_layer": 6, + "n_positions": 1024, + "pad_token_id": null, + "reorder_and_upcast_attn": false, + "resid_pdrop": 0.1, + "scale_attn_by_inverse_layer_idx": false, + "scale_attn_weights": true, + "summary_activation": null, + "summary_first_dropout": 0.1, + "summary_proj_to_labels": true, + "summary_type": "cls_index", + "summary_use_proj": true, + "tie_word_embeddings": true, + "transformers_version": "5.5.3", + "use_cache": false, + "vocab_size": 304 +} diff --git a/hyperparameter/n3/realtabformer/rtf-n3-20260505_023857/rtf_checkpoints/checkpoint-2337/generation_config.json b/hyperparameter/n3/realtabformer/rtf-n3-20260505_023857/rtf_checkpoints/checkpoint-2337/generation_config.json new file mode 100644 index 0000000000000000000000000000000000000000..ffe89567780e75b5c22eade9be971483b9618f39 --- /dev/null +++ b/hyperparameter/n3/realtabformer/rtf-n3-20260505_023857/rtf_checkpoints/checkpoint-2337/generation_config.json @@ -0,0 +1,9 @@ +{ + "_from_model_config": true, + "bos_token_id": 5, + "eos_token_id": 6, + "output_attentions": false, + "output_hidden_states": false, + "transformers_version": "5.5.3", + "use_cache": true +} diff --git a/hyperparameter/n3/realtabformer/rtf-n3-20260505_023857/rtf_checkpoints/checkpoint-2337/model.safetensors b/hyperparameter/n3/realtabformer/rtf-n3-20260505_023857/rtf_checkpoints/checkpoint-2337/model.safetensors new file mode 100644 index 0000000000000000000000000000000000000000..2fa65aecef80134c2945e22e26fff2a02358bc2a --- /dev/null +++ b/hyperparameter/n3/realtabformer/rtf-n3-20260505_023857/rtf_checkpoints/checkpoint-2337/model.safetensors @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:9a7e3ae3f2d36e5352495e0491582f67a23eeaaf3345a454005c50baec847b9e +size 174202312 diff --git a/hyperparameter/n3/realtabformer/rtf-n3-20260505_023857/rtf_checkpoints/checkpoint-2337/optimizer.pt b/hyperparameter/n3/realtabformer/rtf-n3-20260505_023857/rtf_checkpoints/checkpoint-2337/optimizer.pt new file mode 100644 index 0000000000000000000000000000000000000000..8cc99059c4b704080380aa2971cfd6af8b31ce20 --- /dev/null +++ b/hyperparameter/n3/realtabformer/rtf-n3-20260505_023857/rtf_checkpoints/checkpoint-2337/optimizer.pt @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:3a82a6d97811736532de5431a673858b3e95a2c3d4c4778de97a0477b788e761 +size 348453707 diff --git a/hyperparameter/n3/realtabformer/rtf-n3-20260505_023857/rtf_checkpoints/checkpoint-2337/rng_state.pth b/hyperparameter/n3/realtabformer/rtf-n3-20260505_023857/rtf_checkpoints/checkpoint-2337/rng_state.pth new file mode 100644 index 0000000000000000000000000000000000000000..06457b03d7c2b832ae40e807dfabe6fb6ce948a8 --- /dev/null +++ b/hyperparameter/n3/realtabformer/rtf-n3-20260505_023857/rtf_checkpoints/checkpoint-2337/rng_state.pth @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:4c4f02c0728e5a28e19e67742ece35517f21155c370244ac411af3ded576747a +size 14645 diff --git a/hyperparameter/n3/realtabformer/rtf-n3-20260505_023857/rtf_checkpoints/checkpoint-2337/scaler.pt b/hyperparameter/n3/realtabformer/rtf-n3-20260505_023857/rtf_checkpoints/checkpoint-2337/scaler.pt new file mode 100644 index 0000000000000000000000000000000000000000..0dbf6e4c4dcc780358f160f971191ed397cba7cd --- /dev/null +++ b/hyperparameter/n3/realtabformer/rtf-n3-20260505_023857/rtf_checkpoints/checkpoint-2337/scaler.pt @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:0efb3f9ba18cd021db52736085ec9f97920c0ef10e926cc1eeb2ca209f7aff7a +size 1383 diff --git a/hyperparameter/n3/realtabformer/rtf-n3-20260505_023857/rtf_checkpoints/checkpoint-2337/scheduler.pt b/hyperparameter/n3/realtabformer/rtf-n3-20260505_023857/rtf_checkpoints/checkpoint-2337/scheduler.pt new file mode 100644 index 0000000000000000000000000000000000000000..246caf6e0755a8890b97cd35c80544cb8e2a21ac --- /dev/null +++ b/hyperparameter/n3/realtabformer/rtf-n3-20260505_023857/rtf_checkpoints/checkpoint-2337/scheduler.pt @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:88caf7e8111defe2f244caf51789b81b4d889c2a88b7db58ba03ff54ccb1a5a4 +size 1465 diff --git a/hyperparameter/n3/realtabformer/rtf-n3-20260505_023857/rtf_checkpoints/checkpoint-2337/trainer_state.json b/hyperparameter/n3/realtabformer/rtf-n3-20260505_023857/rtf_checkpoints/checkpoint-2337/trainer_state.json new file mode 100644 index 0000000000000000000000000000000000000000..b4857aeb6955d2c8402a4ad2970cc058b7a6b55e --- /dev/null +++ b/hyperparameter/n3/realtabformer/rtf-n3-20260505_023857/rtf_checkpoints/checkpoint-2337/trainer_state.json @@ -0,0 +1,195 @@ +{ + "best_global_step": null, + "best_metric": null, + "best_model_checkpoint": null, + "epoch": 19.0, + "eval_steps": 100, + "global_step": 2337, + "is_hyper_param_search": false, + "is_local_process_zero": true, + "is_world_process_zero": true, + "log_history": [ + { + "epoch": 0.8163265306122449, + "grad_norm": 0.20651009678840637, + "learning_rate": 4.798780487804878e-05, + "loss": 1.4765293884277344, + "step": 100 + }, + { + "epoch": 1.6285714285714286, + "grad_norm": 0.19934388995170593, + "learning_rate": 4.595528455284553e-05, + "loss": 0.8814392852783203, + "step": 200 + }, + { + "epoch": 2.440816326530612, + "grad_norm": 0.19316822290420532, + "learning_rate": 4.3922764227642274e-05, + "loss": 0.840040283203125, + "step": 300 + }, + { + "epoch": 3.253061224489796, + "grad_norm": 0.18033085763454437, + "learning_rate": 4.1890243902439024e-05, + "loss": 0.8208641052246094, + "step": 400 + }, + { + "epoch": 4.0653061224489795, + "grad_norm": 0.17682181298732758, + "learning_rate": 3.9857723577235775e-05, + "loss": 0.8067519378662109, + "step": 500 + }, + { + "epoch": 4.881632653061224, + "grad_norm": 0.17977000772953033, + "learning_rate": 3.782520325203252e-05, + "loss": 0.7982061004638672, + "step": 600 + }, + { + "epoch": 5.6938775510204085, + "grad_norm": 0.1947944313287735, + "learning_rate": 3.579268292682927e-05, + "loss": 0.7905941772460937, + "step": 700 + }, + { + "epoch": 6.506122448979592, + "grad_norm": 0.17018333077430725, + "learning_rate": 3.376016260162601e-05, + "loss": 0.7849921417236329, + "step": 800 + }, + { + "epoch": 7.318367346938776, + "grad_norm": 0.16545553505420685, + "learning_rate": 3.1727642276422764e-05, + "loss": 0.7801763153076172, + "step": 900 + }, + { + "epoch": 8.130612244897959, + "grad_norm": 0.17844344675540924, + "learning_rate": 2.969512195121951e-05, + "loss": 0.7743854522705078, + "step": 1000 + }, + { + "epoch": 8.946938775510205, + "grad_norm": 0.18225695192813873, + "learning_rate": 2.766260162601626e-05, + "loss": 0.7705725860595704, + "step": 1100 + }, + { + "epoch": 9.759183673469387, + "grad_norm": 0.18053610622882843, + "learning_rate": 2.563008130081301e-05, + "loss": 0.7648771667480468, + "step": 1200 + }, + { + "epoch": 10.571428571428571, + "grad_norm": 0.17593175172805786, + "learning_rate": 2.3597560975609757e-05, + "loss": 0.7595262908935547, + "step": 1300 + }, + { + "epoch": 11.383673469387755, + "grad_norm": 0.1804026961326599, + "learning_rate": 2.1565040650406504e-05, + "loss": 0.7568254089355468, + "step": 1400 + }, + { + "epoch": 12.19591836734694, + "grad_norm": 0.18412551283836365, + "learning_rate": 1.953252032520325e-05, + "loss": 0.7550920104980469, + "step": 1500 + }, + { + "epoch": 13.008163265306122, + "grad_norm": 0.18064503371715546, + "learning_rate": 1.75e-05, + "loss": 0.7494178009033203, + "step": 1600 + }, + { + "epoch": 13.824489795918367, + "grad_norm": 0.1948181688785553, + "learning_rate": 1.546747967479675e-05, + "loss": 0.7454795837402344, + "step": 1700 + }, + { + "epoch": 14.636734693877552, + "grad_norm": 0.20210713148117065, + "learning_rate": 1.3434959349593495e-05, + "loss": 0.740928955078125, + "step": 1800 + }, + { + "epoch": 15.448979591836734, + "grad_norm": 0.19284097850322723, + "learning_rate": 1.1402439024390245e-05, + "loss": 0.7396183013916016, + "step": 1900 + }, + { + "epoch": 16.261224489795918, + "grad_norm": 0.19908523559570312, + "learning_rate": 9.369918699186993e-06, + "loss": 0.7346043395996094, + "step": 2000 + }, + { + "epoch": 17.073469387755104, + "grad_norm": 0.1996530443429947, + "learning_rate": 7.337398373983741e-06, + "loss": 0.7345467376708984, + "step": 2100 + }, + { + "epoch": 17.889795918367348, + "grad_norm": 0.19030335545539856, + "learning_rate": 5.304878048780488e-06, + "loss": 0.7297074127197266, + "step": 2200 + }, + { + "epoch": 18.70204081632653, + "grad_norm": 0.20985183119773865, + "learning_rate": 3.272357723577236e-06, + "loss": 0.7269140625, + "step": 2300 + } + ], + "logging_steps": 100, + "max_steps": 2460, + "num_input_tokens_seen": 0, + "num_train_epochs": 20, + "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": 1101742438514688.0, + "train_batch_size": 8, + "trial_name": null, + "trial_params": null +} diff --git a/hyperparameter/n3/realtabformer/rtf-n3-20260505_023857/rtf_checkpoints/checkpoint-2337/training_args.bin b/hyperparameter/n3/realtabformer/rtf-n3-20260505_023857/rtf_checkpoints/checkpoint-2337/training_args.bin new file mode 100644 index 0000000000000000000000000000000000000000..0443202bbc5de94f0d0d09164bf2ca8102a8869f --- /dev/null +++ b/hyperparameter/n3/realtabformer/rtf-n3-20260505_023857/rtf_checkpoints/checkpoint-2337/training_args.bin @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:86d01f2501df27a7bb9ffc25201c399525fb2c1bd2149d56f439c7a738a4ac32 +size 5201 diff --git a/hyperparameter/n3/realtabformer/rtf-n3-20260505_023857/rtf_checkpoints/checkpoint-2400/config.json b/hyperparameter/n3/realtabformer/rtf-n3-20260505_023857/rtf_checkpoints/checkpoint-2400/config.json new file mode 100644 index 0000000000000000000000000000000000000000..1876b75d3abc713ca867fe8e643ea273dc9cea87 --- /dev/null +++ b/hyperparameter/n3/realtabformer/rtf-n3-20260505_023857/rtf_checkpoints/checkpoint-2400/config.json @@ -0,0 +1,34 @@ +{ + "activation_function": "gelu_new", + "add_cross_attention": false, + "architectures": [ + "GPT2LMHeadModel" + ], + "attn_pdrop": 0.1, + "bos_token_id": 5, + "dtype": "float32", + "embd_pdrop": 0.1, + "eos_token_id": 6, + "initializer_range": 0.02, + "layer_norm_epsilon": 1e-05, + "model_type": "gpt2", + "n_embd": 768, + "n_head": 12, + "n_inner": null, + "n_layer": 6, + "n_positions": 1024, + "pad_token_id": null, + "reorder_and_upcast_attn": false, + "resid_pdrop": 0.1, + "scale_attn_by_inverse_layer_idx": false, + "scale_attn_weights": true, + "summary_activation": null, + "summary_first_dropout": 0.1, + "summary_proj_to_labels": true, + "summary_type": "cls_index", + "summary_use_proj": true, + "tie_word_embeddings": true, + "transformers_version": "5.5.3", + "use_cache": false, + "vocab_size": 304 +} diff --git a/hyperparameter/n3/realtabformer/rtf-n3-20260505_023857/rtf_checkpoints/checkpoint-2400/generation_config.json b/hyperparameter/n3/realtabformer/rtf-n3-20260505_023857/rtf_checkpoints/checkpoint-2400/generation_config.json new file mode 100644 index 0000000000000000000000000000000000000000..ffe89567780e75b5c22eade9be971483b9618f39 --- /dev/null +++ b/hyperparameter/n3/realtabformer/rtf-n3-20260505_023857/rtf_checkpoints/checkpoint-2400/generation_config.json @@ -0,0 +1,9 @@ +{ + "_from_model_config": true, + "bos_token_id": 5, + "eos_token_id": 6, + "output_attentions": false, + "output_hidden_states": false, + "transformers_version": "5.5.3", + "use_cache": true +} diff --git a/hyperparameter/n3/realtabformer/rtf-n3-20260505_023857/rtf_checkpoints/checkpoint-2400/model.safetensors b/hyperparameter/n3/realtabformer/rtf-n3-20260505_023857/rtf_checkpoints/checkpoint-2400/model.safetensors new file mode 100644 index 0000000000000000000000000000000000000000..43d5315995556681d764552da98cb9d1cc86dacf --- /dev/null +++ b/hyperparameter/n3/realtabformer/rtf-n3-20260505_023857/rtf_checkpoints/checkpoint-2400/model.safetensors @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:9822ef52c8261b7041f3c1d489caf2512f65bf35bcb786a13cf59cdb27096611 +size 174202312 diff --git a/hyperparameter/n3/realtabformer/rtf-n3-20260505_023857/rtf_checkpoints/checkpoint-2400/optimizer.pt b/hyperparameter/n3/realtabformer/rtf-n3-20260505_023857/rtf_checkpoints/checkpoint-2400/optimizer.pt new file mode 100644 index 0000000000000000000000000000000000000000..9304aff5cc9f0a03507098b9bf63fb335170cd22 --- /dev/null +++ b/hyperparameter/n3/realtabformer/rtf-n3-20260505_023857/rtf_checkpoints/checkpoint-2400/optimizer.pt @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:5535da254b05733edfd596f2fc7bb7f3ad9250dafd9fc9362d39512159887caa +size 348453707 diff --git a/hyperparameter/n3/realtabformer/rtf-n3-20260505_023857/rtf_checkpoints/checkpoint-2400/rng_state.pth b/hyperparameter/n3/realtabformer/rtf-n3-20260505_023857/rtf_checkpoints/checkpoint-2400/rng_state.pth new file mode 100644 index 0000000000000000000000000000000000000000..b9dacf858f8f3703a95ef49449857cae5e1a05db --- /dev/null +++ b/hyperparameter/n3/realtabformer/rtf-n3-20260505_023857/rtf_checkpoints/checkpoint-2400/rng_state.pth @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:8502195123b913ffeee5f8ccf29cda1260dec201b5d171644e9dc6998e9a5fb6 +size 14645 diff --git a/hyperparameter/n3/realtabformer/rtf-n3-20260505_023857/rtf_checkpoints/checkpoint-2400/scaler.pt b/hyperparameter/n3/realtabformer/rtf-n3-20260505_023857/rtf_checkpoints/checkpoint-2400/scaler.pt new file mode 100644 index 0000000000000000000000000000000000000000..c83c039e83183ab3a0678557983f51465fbdff40 --- /dev/null +++ b/hyperparameter/n3/realtabformer/rtf-n3-20260505_023857/rtf_checkpoints/checkpoint-2400/scaler.pt @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:7da7c5085795b13d2bf0030671cbddb9f62ae43221bf1424a3830d4cf8c19012 +size 1383 diff --git a/hyperparameter/n3/realtabformer/rtf-n3-20260505_023857/rtf_checkpoints/checkpoint-2400/scheduler.pt b/hyperparameter/n3/realtabformer/rtf-n3-20260505_023857/rtf_checkpoints/checkpoint-2400/scheduler.pt new file mode 100644 index 0000000000000000000000000000000000000000..a2e594619936e7ae187773ea88cd4ce7899fe592 --- /dev/null +++ b/hyperparameter/n3/realtabformer/rtf-n3-20260505_023857/rtf_checkpoints/checkpoint-2400/scheduler.pt @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:f92b8b7db5c1f79109820d47d17fc62ddc3ba5174de472c590d3406952692095 +size 1465 diff --git a/hyperparameter/n3/realtabformer/rtf-n3-20260505_023857/rtf_checkpoints/checkpoint-2400/trainer_state.json b/hyperparameter/n3/realtabformer/rtf-n3-20260505_023857/rtf_checkpoints/checkpoint-2400/trainer_state.json new file mode 100644 index 0000000000000000000000000000000000000000..a887f971939d420df8ac318fd7ef9f5082d728d6 --- /dev/null +++ b/hyperparameter/n3/realtabformer/rtf-n3-20260505_023857/rtf_checkpoints/checkpoint-2400/trainer_state.json @@ -0,0 +1,202 @@ +{ + "best_global_step": null, + "best_metric": null, + "best_model_checkpoint": null, + "epoch": 19.514285714285712, + "eval_steps": 100, + "global_step": 2400, + "is_hyper_param_search": false, + "is_local_process_zero": true, + "is_world_process_zero": true, + "log_history": [ + { + "epoch": 0.8163265306122449, + "grad_norm": 0.20651009678840637, + "learning_rate": 4.798780487804878e-05, + "loss": 1.4765293884277344, + "step": 100 + }, + { + "epoch": 1.6285714285714286, + "grad_norm": 0.19934388995170593, + "learning_rate": 4.595528455284553e-05, + "loss": 0.8814392852783203, + "step": 200 + }, + { + "epoch": 2.440816326530612, + "grad_norm": 0.19316822290420532, + "learning_rate": 4.3922764227642274e-05, + "loss": 0.840040283203125, + "step": 300 + }, + { + "epoch": 3.253061224489796, + "grad_norm": 0.18033085763454437, + "learning_rate": 4.1890243902439024e-05, + "loss": 0.8208641052246094, + "step": 400 + }, + { + "epoch": 4.0653061224489795, + "grad_norm": 0.17682181298732758, + "learning_rate": 3.9857723577235775e-05, + "loss": 0.8067519378662109, + "step": 500 + }, + { + "epoch": 4.881632653061224, + "grad_norm": 0.17977000772953033, + "learning_rate": 3.782520325203252e-05, + "loss": 0.7982061004638672, + "step": 600 + }, + { + "epoch": 5.6938775510204085, + "grad_norm": 0.1947944313287735, + "learning_rate": 3.579268292682927e-05, + "loss": 0.7905941772460937, + "step": 700 + }, + { + "epoch": 6.506122448979592, + "grad_norm": 0.17018333077430725, + "learning_rate": 3.376016260162601e-05, + "loss": 0.7849921417236329, + "step": 800 + }, + { + "epoch": 7.318367346938776, + "grad_norm": 0.16545553505420685, + "learning_rate": 3.1727642276422764e-05, + "loss": 0.7801763153076172, + "step": 900 + }, + { + "epoch": 8.130612244897959, + "grad_norm": 0.17844344675540924, + "learning_rate": 2.969512195121951e-05, + "loss": 0.7743854522705078, + "step": 1000 + }, + { + "epoch": 8.946938775510205, + "grad_norm": 0.18225695192813873, + "learning_rate": 2.766260162601626e-05, + "loss": 0.7705725860595704, + "step": 1100 + }, + { + "epoch": 9.759183673469387, + "grad_norm": 0.18053610622882843, + "learning_rate": 2.563008130081301e-05, + "loss": 0.7648771667480468, + "step": 1200 + }, + { + "epoch": 10.571428571428571, + "grad_norm": 0.17593175172805786, + "learning_rate": 2.3597560975609757e-05, + "loss": 0.7595262908935547, + "step": 1300 + }, + { + "epoch": 11.383673469387755, + "grad_norm": 0.1804026961326599, + "learning_rate": 2.1565040650406504e-05, + "loss": 0.7568254089355468, + "step": 1400 + }, + { + "epoch": 12.19591836734694, + "grad_norm": 0.18412551283836365, + "learning_rate": 1.953252032520325e-05, + "loss": 0.7550920104980469, + "step": 1500 + }, + { + "epoch": 13.008163265306122, + "grad_norm": 0.18064503371715546, + "learning_rate": 1.75e-05, + "loss": 0.7494178009033203, + "step": 1600 + }, + { + "epoch": 13.824489795918367, + "grad_norm": 0.1948181688785553, + "learning_rate": 1.546747967479675e-05, + "loss": 0.7454795837402344, + "step": 1700 + }, + { + "epoch": 14.636734693877552, + "grad_norm": 0.20210713148117065, + "learning_rate": 1.3434959349593495e-05, + "loss": 0.740928955078125, + "step": 1800 + }, + { + "epoch": 15.448979591836734, + "grad_norm": 0.19284097850322723, + "learning_rate": 1.1402439024390245e-05, + "loss": 0.7396183013916016, + "step": 1900 + }, + { + "epoch": 16.261224489795918, + "grad_norm": 0.19908523559570312, + "learning_rate": 9.369918699186993e-06, + "loss": 0.7346043395996094, + "step": 2000 + }, + { + "epoch": 17.073469387755104, + "grad_norm": 0.1996530443429947, + "learning_rate": 7.337398373983741e-06, + "loss": 0.7345467376708984, + "step": 2100 + }, + { + "epoch": 17.889795918367348, + "grad_norm": 0.19030335545539856, + "learning_rate": 5.304878048780488e-06, + "loss": 0.7297074127197266, + "step": 2200 + }, + { + "epoch": 18.70204081632653, + "grad_norm": 0.20985183119773865, + "learning_rate": 3.272357723577236e-06, + "loss": 0.7269140625, + "step": 2300 + }, + { + "epoch": 19.514285714285712, + "grad_norm": 0.18285846710205078, + "learning_rate": 1.2398373983739838e-06, + "loss": 0.72646240234375, + "step": 2400 + } + ], + "logging_steps": 100, + "max_steps": 2460, + "num_input_tokens_seen": 0, + "num_train_epochs": 20, + "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": 1131579261222912.0, + "train_batch_size": 8, + "trial_name": null, + "trial_params": null +} diff --git a/hyperparameter/n3/realtabformer/rtf-n3-20260505_023857/rtf_checkpoints/checkpoint-2400/training_args.bin b/hyperparameter/n3/realtabformer/rtf-n3-20260505_023857/rtf_checkpoints/checkpoint-2400/training_args.bin new file mode 100644 index 0000000000000000000000000000000000000000..0443202bbc5de94f0d0d09164bf2ca8102a8869f --- /dev/null +++ b/hyperparameter/n3/realtabformer/rtf-n3-20260505_023857/rtf_checkpoints/checkpoint-2400/training_args.bin @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:86d01f2501df27a7bb9ffc25201c399525fb2c1bd2149d56f439c7a738a4ac32 +size 5201 diff --git a/hyperparameter/n3/realtabformer/rtf-n3-20260505_023857/rtf_checkpoints/checkpoint-2460/config.json b/hyperparameter/n3/realtabformer/rtf-n3-20260505_023857/rtf_checkpoints/checkpoint-2460/config.json new file mode 100644 index 0000000000000000000000000000000000000000..1876b75d3abc713ca867fe8e643ea273dc9cea87 --- /dev/null +++ b/hyperparameter/n3/realtabformer/rtf-n3-20260505_023857/rtf_checkpoints/checkpoint-2460/config.json @@ -0,0 +1,34 @@ +{ + "activation_function": "gelu_new", + "add_cross_attention": false, + "architectures": [ + "GPT2LMHeadModel" + ], + "attn_pdrop": 0.1, + "bos_token_id": 5, + "dtype": "float32", + "embd_pdrop": 0.1, + "eos_token_id": 6, + "initializer_range": 0.02, + "layer_norm_epsilon": 1e-05, + "model_type": "gpt2", + "n_embd": 768, + "n_head": 12, + "n_inner": null, + "n_layer": 6, + "n_positions": 1024, + "pad_token_id": null, + "reorder_and_upcast_attn": false, + "resid_pdrop": 0.1, + "scale_attn_by_inverse_layer_idx": false, + "scale_attn_weights": true, + "summary_activation": null, + "summary_first_dropout": 0.1, + "summary_proj_to_labels": true, + "summary_type": "cls_index", + "summary_use_proj": true, + "tie_word_embeddings": true, + "transformers_version": "5.5.3", + "use_cache": false, + "vocab_size": 304 +} diff --git a/hyperparameter/n3/realtabformer/rtf-n3-20260505_023857/rtf_checkpoints/checkpoint-2460/generation_config.json b/hyperparameter/n3/realtabformer/rtf-n3-20260505_023857/rtf_checkpoints/checkpoint-2460/generation_config.json new file mode 100644 index 0000000000000000000000000000000000000000..ffe89567780e75b5c22eade9be971483b9618f39 --- /dev/null +++ b/hyperparameter/n3/realtabformer/rtf-n3-20260505_023857/rtf_checkpoints/checkpoint-2460/generation_config.json @@ -0,0 +1,9 @@ +{ + "_from_model_config": true, + "bos_token_id": 5, + "eos_token_id": 6, + "output_attentions": false, + "output_hidden_states": false, + "transformers_version": "5.5.3", + "use_cache": true +} diff --git a/hyperparameter/n3/realtabformer/rtf-n3-20260505_023857/rtf_checkpoints/checkpoint-2460/model.safetensors b/hyperparameter/n3/realtabformer/rtf-n3-20260505_023857/rtf_checkpoints/checkpoint-2460/model.safetensors new file mode 100644 index 0000000000000000000000000000000000000000..3b4e1cf32fdf5d7b340e11130d90ea27cab98816 --- /dev/null +++ b/hyperparameter/n3/realtabformer/rtf-n3-20260505_023857/rtf_checkpoints/checkpoint-2460/model.safetensors @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:745e887c39e91762d80a952dab4163dd153ce3d6bf6bf3466b26148483ce4138 +size 174202312 diff --git a/hyperparameter/n3/realtabformer/rtf-n3-20260505_023857/rtf_checkpoints/checkpoint-2460/optimizer.pt b/hyperparameter/n3/realtabformer/rtf-n3-20260505_023857/rtf_checkpoints/checkpoint-2460/optimizer.pt new file mode 100644 index 0000000000000000000000000000000000000000..fccd87f3eb3d4a57f89ab1f3595a9fc91f5c5d3e --- /dev/null +++ b/hyperparameter/n3/realtabformer/rtf-n3-20260505_023857/rtf_checkpoints/checkpoint-2460/optimizer.pt @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:f6f24dcef12570b5e6c78552a58521d0c329c9b319fdb49adf6694ab57455d64 +size 348453707 diff --git a/hyperparameter/n3/realtabformer/rtf-n3-20260505_023857/rtf_checkpoints/checkpoint-2460/rng_state.pth b/hyperparameter/n3/realtabformer/rtf-n3-20260505_023857/rtf_checkpoints/checkpoint-2460/rng_state.pth new file mode 100644 index 0000000000000000000000000000000000000000..7f8566b55bba32c0691e04bff7860b2b8cd61152 --- /dev/null +++ b/hyperparameter/n3/realtabformer/rtf-n3-20260505_023857/rtf_checkpoints/checkpoint-2460/rng_state.pth @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:f7dcef721acd615404b5f4cdcd1d05a3bdb2d3b6ca09336126fc0268dc514423 +size 14645 diff --git a/hyperparameter/n3/realtabformer/rtf-n3-20260505_023857/rtf_checkpoints/checkpoint-2460/scaler.pt b/hyperparameter/n3/realtabformer/rtf-n3-20260505_023857/rtf_checkpoints/checkpoint-2460/scaler.pt new file mode 100644 index 0000000000000000000000000000000000000000..2a1d64e1820ac5a0f2f0ef0cf9d11d3fe4d1b56e --- /dev/null +++ b/hyperparameter/n3/realtabformer/rtf-n3-20260505_023857/rtf_checkpoints/checkpoint-2460/scaler.pt @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:65b3dd4337091e04a7da7f9dd919600da3285ddd82153417545a70958e1cd914 +size 1383 diff --git a/hyperparameter/n3/realtabformer/rtf-n3-20260505_023857/rtf_checkpoints/checkpoint-2460/scheduler.pt b/hyperparameter/n3/realtabformer/rtf-n3-20260505_023857/rtf_checkpoints/checkpoint-2460/scheduler.pt new file mode 100644 index 0000000000000000000000000000000000000000..c83c03b8d0f5364d89fb762be0e31828ac0a904a --- /dev/null +++ b/hyperparameter/n3/realtabformer/rtf-n3-20260505_023857/rtf_checkpoints/checkpoint-2460/scheduler.pt @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:64157f959df9abcbd030d70da06737594896aea741b752e9bbc80781d1ac9bd7 +size 1465 diff --git a/hyperparameter/n3/realtabformer/rtf-n3-20260505_023857/rtf_checkpoints/checkpoint-2460/trainer_state.json b/hyperparameter/n3/realtabformer/rtf-n3-20260505_023857/rtf_checkpoints/checkpoint-2460/trainer_state.json new file mode 100644 index 0000000000000000000000000000000000000000..dd9da7056e8c49fd372df9f365d58d6e6f41a158 --- /dev/null +++ b/hyperparameter/n3/realtabformer/rtf-n3-20260505_023857/rtf_checkpoints/checkpoint-2460/trainer_state.json @@ -0,0 +1,202 @@ +{ + "best_global_step": null, + "best_metric": null, + "best_model_checkpoint": null, + "epoch": 20.0, + "eval_steps": 100, + "global_step": 2460, + "is_hyper_param_search": false, + "is_local_process_zero": true, + "is_world_process_zero": true, + "log_history": [ + { + "epoch": 0.8163265306122449, + "grad_norm": 0.20651009678840637, + "learning_rate": 4.798780487804878e-05, + "loss": 1.4765293884277344, + "step": 100 + }, + { + "epoch": 1.6285714285714286, + "grad_norm": 0.19934388995170593, + "learning_rate": 4.595528455284553e-05, + "loss": 0.8814392852783203, + "step": 200 + }, + { + "epoch": 2.440816326530612, + "grad_norm": 0.19316822290420532, + "learning_rate": 4.3922764227642274e-05, + "loss": 0.840040283203125, + "step": 300 + }, + { + "epoch": 3.253061224489796, + "grad_norm": 0.18033085763454437, + "learning_rate": 4.1890243902439024e-05, + "loss": 0.8208641052246094, + "step": 400 + }, + { + "epoch": 4.0653061224489795, + "grad_norm": 0.17682181298732758, + "learning_rate": 3.9857723577235775e-05, + "loss": 0.8067519378662109, + "step": 500 + }, + { + "epoch": 4.881632653061224, + "grad_norm": 0.17977000772953033, + "learning_rate": 3.782520325203252e-05, + "loss": 0.7982061004638672, + "step": 600 + }, + { + "epoch": 5.6938775510204085, + "grad_norm": 0.1947944313287735, + "learning_rate": 3.579268292682927e-05, + "loss": 0.7905941772460937, + "step": 700 + }, + { + "epoch": 6.506122448979592, + "grad_norm": 0.17018333077430725, + "learning_rate": 3.376016260162601e-05, + "loss": 0.7849921417236329, + "step": 800 + }, + { + "epoch": 7.318367346938776, + "grad_norm": 0.16545553505420685, + "learning_rate": 3.1727642276422764e-05, + "loss": 0.7801763153076172, + "step": 900 + }, + { + "epoch": 8.130612244897959, + "grad_norm": 0.17844344675540924, + "learning_rate": 2.969512195121951e-05, + "loss": 0.7743854522705078, + "step": 1000 + }, + { + "epoch": 8.946938775510205, + "grad_norm": 0.18225695192813873, + "learning_rate": 2.766260162601626e-05, + "loss": 0.7705725860595704, + "step": 1100 + }, + { + "epoch": 9.759183673469387, + "grad_norm": 0.18053610622882843, + "learning_rate": 2.563008130081301e-05, + "loss": 0.7648771667480468, + "step": 1200 + }, + { + "epoch": 10.571428571428571, + "grad_norm": 0.17593175172805786, + "learning_rate": 2.3597560975609757e-05, + "loss": 0.7595262908935547, + "step": 1300 + }, + { + "epoch": 11.383673469387755, + "grad_norm": 0.1804026961326599, + "learning_rate": 2.1565040650406504e-05, + "loss": 0.7568254089355468, + "step": 1400 + }, + { + "epoch": 12.19591836734694, + "grad_norm": 0.18412551283836365, + "learning_rate": 1.953252032520325e-05, + "loss": 0.7550920104980469, + "step": 1500 + }, + { + "epoch": 13.008163265306122, + "grad_norm": 0.18064503371715546, + "learning_rate": 1.75e-05, + "loss": 0.7494178009033203, + "step": 1600 + }, + { + "epoch": 13.824489795918367, + "grad_norm": 0.1948181688785553, + "learning_rate": 1.546747967479675e-05, + "loss": 0.7454795837402344, + "step": 1700 + }, + { + "epoch": 14.636734693877552, + "grad_norm": 0.20210713148117065, + "learning_rate": 1.3434959349593495e-05, + "loss": 0.740928955078125, + "step": 1800 + }, + { + "epoch": 15.448979591836734, + "grad_norm": 0.19284097850322723, + "learning_rate": 1.1402439024390245e-05, + "loss": 0.7396183013916016, + "step": 1900 + }, + { + "epoch": 16.261224489795918, + "grad_norm": 0.19908523559570312, + "learning_rate": 9.369918699186993e-06, + "loss": 0.7346043395996094, + "step": 2000 + }, + { + "epoch": 17.073469387755104, + "grad_norm": 0.1996530443429947, + "learning_rate": 7.337398373983741e-06, + "loss": 0.7345467376708984, + "step": 2100 + }, + { + "epoch": 17.889795918367348, + "grad_norm": 0.19030335545539856, + "learning_rate": 5.304878048780488e-06, + "loss": 0.7297074127197266, + "step": 2200 + }, + { + "epoch": 18.70204081632653, + "grad_norm": 0.20985183119773865, + "learning_rate": 3.272357723577236e-06, + "loss": 0.7269140625, + "step": 2300 + }, + { + "epoch": 19.514285714285712, + "grad_norm": 0.18285846710205078, + "learning_rate": 1.2398373983739838e-06, + "loss": 0.72646240234375, + "step": 2400 + } + ], + "logging_steps": 100, + "max_steps": 2460, + "num_input_tokens_seen": 0, + "num_train_epochs": 20, + "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": 1159728882647040.0, + "train_batch_size": 8, + "trial_name": null, + "trial_params": null +} diff --git a/hyperparameter/n3/realtabformer/rtf-n3-20260505_023857/rtf_checkpoints/checkpoint-2460/training_args.bin b/hyperparameter/n3/realtabformer/rtf-n3-20260505_023857/rtf_checkpoints/checkpoint-2460/training_args.bin new file mode 100644 index 0000000000000000000000000000000000000000..0443202bbc5de94f0d0d09164bf2ca8102a8869f --- /dev/null +++ b/hyperparameter/n3/realtabformer/rtf-n3-20260505_023857/rtf_checkpoints/checkpoint-2460/training_args.bin @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:86d01f2501df27a7bb9ffc25201c399525fb2c1bd2149d56f439c7a738a4ac32 +size 5201 diff --git a/hyperparameter/n3/realtabformer/rtf-n3-20260505_023857/run_config.json b/hyperparameter/n3/realtabformer/rtf-n3-20260505_023857/run_config.json new file mode 100644 index 0000000000000000000000000000000000000000..8df0650101e7c65b10f5906891d698258e2d0c23 --- /dev/null +++ b/hyperparameter/n3/realtabformer/rtf-n3-20260505_023857/run_config.json @@ -0,0 +1,40 @@ +{ + "schema_version": 1, + "recorded_at": "2026-05-05T02:38:57", + "dataset_id": "n3", + "model": "realtabformer", + "work_dir": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/n3/realtabformer/rtf-n3-20260505_023857", + "dataset_source_requested": "new", + "dataset_source_resolved": "new", + "cli_args": { + "model": "realtabformer", + "dataset": "n3", + "dataset_source": "new", + "train": true, + "generate": true, + "num_rows": 0, + "epochs": 20, + "output_dir": null, + "model_dir": null, + "work_dir": null, + "resume": false, + "no_stats": false + }, + "resolved": { + "num_rows": 3918, + "model_path": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/n3/realtabformer/rtf-n3-20260505_023857/models_20epochs", + "output_csv": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/n3/realtabformer/rtf-n3-20260505_023857/rtf-n3-3918-20260505_024222.csv" + }, + "input_artifacts": { + "public_gate_report": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/n3/realtabformer/rtf-n3-20260505_023857/public_gate/public_gate_report.json", + "public_manifest": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/n3/realtabformer/rtf-n3-20260505_023857/public_gate/staged_input_manifest.json", + "model_manifest": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/n3/realtabformer/rtf-n3-20260505_023857/staged/realtabformer/model_input_manifest.json", + "train_csv": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/n3/realtabformer/rtf-n3-20260505_023857/staged/public/train.csv", + "features_json": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/n3/realtabformer/rtf-n3-20260505_023857/staged/public/staged_features.json", + "target_column": "quality", + "task_type": "classification" + }, + "env_overrides": { + "BENCHMARK_REALTABFORMER_GPUS": "device=3" + } +} \ No newline at end of file diff --git a/hyperparameter/n3/realtabformer/rtf-n3-20260505_023857/runtime_result.json b/hyperparameter/n3/realtabformer/rtf-n3-20260505_023857/runtime_result.json new file mode 100644 index 0000000000000000000000000000000000000000..960cb13c02fc07e93fdd9fb92cbae06304f4c2fe --- /dev/null +++ b/hyperparameter/n3/realtabformer/rtf-n3-20260505_023857/runtime_result.json @@ -0,0 +1,27 @@ +{ + "dataset_id": "n3", + "model": "realtabformer", + "run_id": "rtf-n3-20260505_023857", + "public_gate_status": "pass", + "adapter_ready_status": "pass", + "train_status": "success", + "generate_status": "success", + "reason_code": null, + "reason_detail": null, + "artifacts": { + "synthetic_csv": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/n3/realtabformer/rtf-n3-20260505_023857/rtf-n3-3918-20260505_024222.csv", + "model_path": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/n3/realtabformer/rtf-n3-20260505_023857/models_20epochs" + }, + "timings": { + "train": { + "started_at": "2026-05-05T02:38:57", + "ended_at": "2026-05-05T02:42:22", + "duration_sec": 205.329 + }, + "generate": { + "started_at": "2026-05-05T02:42:22", + "ended_at": "2026-05-05T02:43:36", + "duration_sec": 73.972 + } + } +} \ No newline at end of file diff --git a/hyperparameter/n3/realtabformer/rtf-n3-20260505_023857/staged/public/staged_features.json b/hyperparameter/n3/realtabformer/rtf-n3-20260505_023857/staged/public/staged_features.json new file mode 100644 index 0000000000000000000000000000000000000000..08fe4d766d091d2f2ddba724a16b9509cbe4c390 --- /dev/null +++ b/hyperparameter/n3/realtabformer/rtf-n3-20260505_023857/staged/public/staged_features.json @@ -0,0 +1,62 @@ +[ + { + "feature_name": "fixed acidity", + "data_type": "continuous", + "is_target": false + }, + { + "feature_name": "volatile acidity", + "data_type": "continuous", + "is_target": false + }, + { + "feature_name": "citric acid", + "data_type": "continuous", + "is_target": false + }, + { + "feature_name": "residual sugar", + "data_type": "continuous", + "is_target": false + }, + { + "feature_name": "chlorides", + "data_type": "continuous", + "is_target": false + }, + { + "feature_name": "free sulfur dioxide", + "data_type": "continuous", + "is_target": false + }, + { + "feature_name": "total sulfur dioxide", + "data_type": "continuous", + "is_target": false + }, + { + "feature_name": "density", + "data_type": "continuous", + "is_target": false + }, + { + "feature_name": "pH", + "data_type": "continuous", + "is_target": false + }, + { + "feature_name": "sulphates", + "data_type": "continuous", + "is_target": false + }, + { + "feature_name": "alcohol", + "data_type": "continuous", + "is_target": false + }, + { + "feature_name": "quality", + "data_type": "continuous", + "is_target": true + } +] \ No newline at end of file diff --git a/hyperparameter/n3/realtabformer/rtf-n3-20260505_023857/staged/public/test.csv b/hyperparameter/n3/realtabformer/rtf-n3-20260505_023857/staged/public/test.csv new file mode 100644 index 0000000000000000000000000000000000000000..db5cd50d3746410ea470625fa2ba2c8e9775cc0d --- /dev/null +++ b/hyperparameter/n3/realtabformer/rtf-n3-20260505_023857/staged/public/test.csv @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:19e107152a94432e2a37ff045c00cfe35e1be30208b1553080d7dd0ede256d3b +size 28944 diff --git a/hyperparameter/n3/realtabformer/rtf-n3-20260505_023857/staged/public/train.csv b/hyperparameter/n3/realtabformer/rtf-n3-20260505_023857/staged/public/train.csv new file mode 100644 index 0000000000000000000000000000000000000000..87ca26726fe82ccbaa397919305b043c17eb374e --- /dev/null +++ b/hyperparameter/n3/realtabformer/rtf-n3-20260505_023857/staged/public/train.csv @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:7813c8cca73ba4bfc6559215257b341c21e459980ad17ae6ddc809306bc9a0b9 +size 229945 diff --git a/hyperparameter/n3/realtabformer/rtf-n3-20260505_023857/staged/public/val.csv b/hyperparameter/n3/realtabformer/rtf-n3-20260505_023857/staged/public/val.csv new file mode 100644 index 0000000000000000000000000000000000000000..6acf84c76c47093b513c46d5503972a2dff275c0 --- /dev/null +++ b/hyperparameter/n3/realtabformer/rtf-n3-20260505_023857/staged/public/val.csv @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:cf5979d9675567d9d6642640c9b84fc6c49e492604144723c30f50516c05cee6 +size 28791 diff --git a/hyperparameter/n3/realtabformer/rtf-n3-20260505_023857/staged/realtabformer/adapter_report.json b/hyperparameter/n3/realtabformer/rtf-n3-20260505_023857/staged/realtabformer/adapter_report.json new file mode 100644 index 0000000000000000000000000000000000000000..9617cca00f40c4a82f6b1c46c854a073419445d4 --- /dev/null +++ b/hyperparameter/n3/realtabformer/rtf-n3-20260505_023857/staged/realtabformer/adapter_report.json @@ -0,0 +1,7 @@ +{ + "adapter_ready_status": "pass", + "adapter_fail_reason_code": null, + "adapter_fail_detail": null, + "adapter_transforms_applied": [], + "model_input_manifest": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/n3/realtabformer/rtf-n3-20260505_023857/staged/realtabformer/model_input_manifest.json" +} \ No newline at end of file diff --git a/hyperparameter/n3/realtabformer/rtf-n3-20260505_023857/staged/realtabformer/adapter_transforms_applied.json b/hyperparameter/n3/realtabformer/rtf-n3-20260505_023857/staged/realtabformer/adapter_transforms_applied.json new file mode 100644 index 0000000000000000000000000000000000000000..0637a088a01e8ddab3bf3fa98dbe804cbde1a0dc --- /dev/null +++ b/hyperparameter/n3/realtabformer/rtf-n3-20260505_023857/staged/realtabformer/adapter_transforms_applied.json @@ -0,0 +1 @@ +[] \ No newline at end of file diff --git a/hyperparameter/n3/realtabformer/rtf-n3-20260505_023857/staged/realtabformer/model_input_manifest.json b/hyperparameter/n3/realtabformer/rtf-n3-20260505_023857/staged/realtabformer/model_input_manifest.json new file mode 100644 index 0000000000000000000000000000000000000000..5d368b61a75c6a97c83edc543c32be461126a307 --- /dev/null +++ b/hyperparameter/n3/realtabformer/rtf-n3-20260505_023857/staged/realtabformer/model_input_manifest.json @@ -0,0 +1,266 @@ +{ + "dataset_id": "n3", + "model": "realtabformer", + "target_column": "quality", + "task_type": "classification", + "column_schema": [ + { + "name": "fixed acidity", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 66, + "unique_ratio": 0.016845, + "example_values": [ + "7.1", + "8.5", + "6.4", + "6.8", + "7.6" + ] + } + }, + { + "name": "volatile acidity", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 121, + "unique_ratio": 0.030883, + "example_values": [ + "0.31", + "0.21", + "0.24", + "0.43", + "0.27" + ] + } + }, + { + "name": "citric acid", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 85, + "unique_ratio": 0.021695, + "example_values": [ + "0.17", + "0.41", + "0.31", + "0.25", + "0.3" + ] + } + }, + { + "name": "residual sugar", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 296, + "unique_ratio": 0.075549, + "example_values": [ + "1", + "4.3", + "2.8", + "13", + "12.9" + ] + } + }, + { + "name": "chlorides", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 147, + "unique_ratio": 0.037519, + "example_values": [ + "0.042", + "0.036", + "0.038", + "0.047", + "0.033" + ] + } + }, + { + "name": "free sulfur dioxide", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 120, + "unique_ratio": 0.030628, + "example_values": [ + "21", + "24", + "41", + "43", + "69" + ] + } + }, + { + "name": "total sulfur dioxide", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 244, + "unique_ratio": 0.062277, + "example_values": [ + "144", + "99", + "114", + "132", + "160" + ] + } + }, + { + "name": "density", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 839, + "unique_ratio": 0.21414, + "example_values": [ + "0.99304", + "0.9947", + "0.99155", + "0.98975", + "0.99705" + ] + } + }, + { + "name": "pH", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 100, + "unique_ratio": 0.025523, + "example_values": [ + "3.13", + "3.18", + "3.37", + "3.21", + "3.16" + ] + } + }, + { + "name": "sulphates", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 78, + "unique_ratio": 0.019908, + "example_values": [ + "0.4", + "0.53", + "0.66", + "0.47", + "0.5" + ] + } + }, + { + "name": "alcohol", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 97, + "unique_ratio": 0.024758, + "example_values": [ + "9.6", + "9.7", + "11.7", + "13.4", + "8.8" + ] + } + }, + { + "name": "quality", + "role": "target", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 7, + "unique_ratio": 0.001787, + "example_values": [ + "5", + "6", + "7", + "8", + "3" + ] + } + } + ], + "public_manifest": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/n3/realtabformer/rtf-n3-20260505_023857/public_gate/staged_input_manifest.json", + "train_csv": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/n3/realtabformer/rtf-n3-20260505_023857/staged/public/train.csv", + "val_csv": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/n3/realtabformer/rtf-n3-20260505_023857/staged/public/val.csv", + "test_csv": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/n3/realtabformer/rtf-n3-20260505_023857/staged/public/test.csv", + "features_json": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/n3/realtabformer/rtf-n3-20260505_023857/staged/public/staged_features.json", + "public_gate_report": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/n3/realtabformer/rtf-n3-20260505_023857/public_gate/public_gate_report.json" +} \ No newline at end of file diff --git a/hyperparameter/n3/realtabformer/rtf-n3-20260505_023857/train_20260505_023857.log b/hyperparameter/n3/realtabformer/rtf-n3-20260505_023857/train_20260505_023857.log new file mode 100644 index 0000000000000000000000000000000000000000..9d6bcdcc9cfa8d855be38ce8dc7c036772b59565 --- /dev/null +++ b/hyperparameter/n3/realtabformer/rtf-n3-20260505_023857/train_20260505_023857.log @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:cc4e4c18786670e4ee0f769222b2527d9bead271eb3e0cd2808becd592778a18 +size 94140 diff --git a/hyperparameter/n3/realtabformer/rtf-n3-20260505_024350/gen_20260505_024849.log b/hyperparameter/n3/realtabformer/rtf-n3-20260505_024350/gen_20260505_024849.log new file mode 100644 index 0000000000000000000000000000000000000000..642f16d2fc7597ba4442ecdce5d3a61045d87db1 --- /dev/null +++ b/hyperparameter/n3/realtabformer/rtf-n3-20260505_024350/gen_20260505_024849.log @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:e4a321519be319e853ec25c357bc6a6fcff5b4c8f64476631247be02965a86be +size 2529 diff --git a/hyperparameter/n3/realtabformer/rtf-n3-20260505_024350/input_snapshot.json b/hyperparameter/n3/realtabformer/rtf-n3-20260505_024350/input_snapshot.json new file mode 100644 index 0000000000000000000000000000000000000000..db9a330f8472dedc095e195fd3a6da0d66be3b17 --- /dev/null +++ b/hyperparameter/n3/realtabformer/rtf-n3-20260505_024350/input_snapshot.json @@ -0,0 +1,36 @@ +{ + "dataset_id": "n3", + "model": "realtabformer", + "inputs": { + "train_csv": { + "path": "/data/jialinzhang/SynthesizePipeline-server/DatasetNew/n3/n3-train.csv", + "exists": true, + "size": 211519, + "sha256": "2160a06db2fea02adb0ebb79d8d853bd2544580be301e71f6e8deeb1489a9009" + }, + "val_csv": { + "path": "/data/jialinzhang/SynthesizePipeline-server/DatasetNew/n3/n3-val.csv", + "exists": true, + "size": 26499, + "sha256": "d5ccfee07dfa9e7bdee5bb87642b43828e09f74c6cc0266a3d19d9feaa83106e" + }, + "test_csv": { + "path": "/data/jialinzhang/SynthesizePipeline-server/DatasetNew/n3/n3-test.csv", + "exists": true, + "size": 26676, + "sha256": "6f83aacb0d1747b95e287352a7fff5d9d65a1c127b773852346c68485c4ede47" + }, + "profile_json": { + "path": "/data/jialinzhang/SynthesizePipeline-server/DatasetNew/artifacts/data_core/tabular/n3/n3-dataset_profile.json", + "exists": true, + "size": 5235, + "sha256": "23d2e5904a2ca90cbf8d6e3c75887681721e9b90cc705c31a680c11513d0c46f" + }, + "contract_json": { + "path": "/data/jialinzhang/SynthesizePipeline-server/DatasetNew/artifacts/data_core/tabular/n3/n3-dataset_contract_v1.json", + "exists": true, + "size": 6281, + "sha256": "c0cc56f5fe28e1b65927255c6e3c2b0e9479862c2ec6f2fea1664da36c9a3a09" + } + } +} \ No newline at end of file diff --git a/hyperparameter/n3/realtabformer/rtf-n3-20260505_024350/models_30epochs/id000017779205273754517504/rtf_config.json b/hyperparameter/n3/realtabformer/rtf-n3-20260505_024350/models_30epochs/id000017779205273754517504/rtf_config.json new file mode 100644 index 0000000000000000000000000000000000000000..106c567795f4b1f8be50d3f7e306aba9e83dd99d --- /dev/null +++ b/hyperparameter/n3/realtabformer/rtf-n3-20260505_024350/models_30epochs/id000017779205273754517504/rtf_config.json @@ -0,0 +1 @@ +{"model_type": "tabular", "tabular_config": {"transformers_version": "5.5.3", "architectures": ["GPT2LMHeadModel"], "output_hidden_states": false, "return_dict": true, "dtype": "float32", "chunk_size_feed_forward": 0, "is_encoder_decoder": false, "id2label": {"0": "LABEL_0", "1": "LABEL_1"}, "label2id": {"LABEL_0": 0, "LABEL_1": 1}, "problem_type": null, "vocab_size": 304, "n_positions": 1024, "n_embd": 768, "n_layer": 6, "n_head": 12, "n_inner": null, "activation_function": "gelu_new", "resid_pdrop": 0.1, "embd_pdrop": 0.1, "attn_pdrop": 0.1, "layer_norm_epsilon": 1e-05, "initializer_range": 0.02, "summary_type": "cls_index", "summary_use_proj": true, "summary_activation": null, "summary_proj_to_labels": true, "summary_first_dropout": 0.1, "scale_attn_weights": true, "use_cache": false, "bos_token_id": 5, "eos_token_id": 6, "pad_token_id": null, "scale_attn_by_inverse_layer_idx": false, "reorder_and_upcast_attn": false, "add_cross_attention": false, "tie_word_embeddings": true, "_name_or_path": "", "model_type": "gpt2", "output_attentions": false}, "checkpoints_dir": "rtf_checkpoints", "samples_save_dir": "rtf_samples", "full_save_dir": "rtf_full_save", "epochs": 30, "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": 30, "per_device_train_batch_size": 8, "per_device_eval_batch_size": 8, "gradient_accumulation_steps": 4, "remove_unused_columns": true, "logging_steps": 100, "save_steps": 100, "eval_steps": 100, "load_best_model_at_end": false, "save_total_limit": 6, "optim": "adamw_torch"}, "train_size": 1, "mask_rate": 0, "columns": ["fixed acidity", "volatile acidity", "citric acid", "residual sugar", "chlorides", "free sulfur dioxide", "total sulfur dioxide", "density", "pH", "sulphates", "alcohol", "quality"], "column_dtypes": {"fixed acidity": "float64", "volatile acidity": "float64", "citric acid": "float64", "residual sugar": "float64", "chlorides": "float64", "free sulfur dioxide": "float64", "total sulfur dioxide": "float64", "density": "float64", "pH": "float64", "sulphates": "float64", "alcohol": "float64", "quality": "int64"}, "column_has_missing": {"fixed acidity": false, "volatile acidity": false, "citric acid": false, "residual sugar": false, "chlorides": false, "free sulfur dioxide": false, "total sulfur dioxide": false, "density": false, "pH": false, "sulphates": false, "alcohol": false, "quality": false}, "drop_na_cols": ["fixed acidity", "volatile acidity", "citric acid", "residual sugar", "chlorides", "free sulfur dioxide", "total sulfur dioxide", "density", "pH", "sulphates", "alcohol", "quality"], "processed_columns": ["00___NUMERIC___fixed acidity_00", "00___NUMERIC___fixed acidity_01", "00___NUMERIC___fixed acidity_02", "00___NUMERIC___fixed acidity_03", "00___NUMERIC___fixed acidity_04", "01___NUMERIC___volatile acidity_00", "01___NUMERIC___volatile acidity_01", "01___NUMERIC___volatile acidity_02", "01___NUMERIC___volatile acidity_03", "01___NUMERIC___volatile acidity_04", "02___NUMERIC___citric acid_00", "02___NUMERIC___citric acid_01", "02___NUMERIC___citric acid_02", "02___NUMERIC___citric acid_03", "03___NUMERIC___residual sugar_00", "03___NUMERIC___residual sugar_01", "03___NUMERIC___residual sugar_02", "03___NUMERIC___residual sugar_03", "03___NUMERIC___residual sugar_04", "04___NUMERIC___chlorides_00", "04___NUMERIC___chlorides_01", "04___NUMERIC___chlorides_02", "04___NUMERIC___chlorides_03", "04___NUMERIC___chlorides_04", "05___NUMERIC___free sulfur dioxide_00", "05___NUMERIC___free sulfur dioxide_01", "05___NUMERIC___free sulfur dioxide_02", "05___NUMERIC___free sulfur dioxide_03", "05___NUMERIC___free sulfur dioxide_04", "06___NUMERIC___total sulfur dioxide_00", "06___NUMERIC___total sulfur dioxide_01", "06___NUMERIC___total sulfur dioxide_02", "06___NUMERIC___total sulfur dioxide_03", "06___NUMERIC___total sulfur dioxide_04", "07___NUMERIC___density_00", "07___NUMERIC___density_01", "07___NUMERIC___density_02", "07___NUMERIC___density_03", "07___NUMERIC___density_04", "07___NUMERIC___density_05", "08___NUMERIC___pH_00", "08___NUMERIC___pH_01", "08___NUMERIC___pH_02", "08___NUMERIC___pH_03", "09___NUMERIC___sulphates_00", "09___NUMERIC___sulphates_01", "09___NUMERIC___sulphates_02", "09___NUMERIC___sulphates_03", "10___NUMERIC___alcohol_00", "10___NUMERIC___alcohol_01", "10___NUMERIC___alcohol_02", "10___NUMERIC___alcohol_03", "10___NUMERIC___alcohol_04", "10___NUMERIC___alcohol_05", "10___NUMERIC___alcohol_06", "11___NUMERIC___quality_00"], "numeric_columns": ["fixed acidity", "volatile acidity", "citric acid", "residual sugar", "chlorides", "free sulfur dioxide", "total sulfur dioxide", "density", "pH", "sulphates", "alcohol", "quality"], "datetime_columns": [], "vocab": {"id2token": {"0": "[UNK]", "1": "[SEP]", "2": "[PAD]", "3": "[CLS]", "4": "[MASK]", "5": "[BOS]", "6": "[EOS]", "7": "[BMEM]", "8": "[EMEM]", "9": "[RMASK]", "10": "[SPTYPE]", "11": "00___NUMERIC___fixed acidity_00___0", "12": "00___NUMERIC___fixed acidity_00___1", "13": "00___NUMERIC___fixed acidity_01___0", "14": "00___NUMERIC___fixed acidity_01___1", "15": "00___NUMERIC___fixed acidity_01___3", "16": "00___NUMERIC___fixed acidity_01___4", "17": "00___NUMERIC___fixed acidity_01___5", "18": "00___NUMERIC___fixed acidity_01___6", "19": "00___NUMERIC___fixed acidity_01___7", "20": "00___NUMERIC___fixed acidity_01___8", "21": "00___NUMERIC___fixed acidity_01___9", "22": "00___NUMERIC___fixed acidity_02___.", "23": "00___NUMERIC___fixed acidity_03___0", "24": "00___NUMERIC___fixed acidity_03___1", "25": "00___NUMERIC___fixed acidity_03___2", "26": "00___NUMERIC___fixed acidity_03___3", "27": "00___NUMERIC___fixed acidity_03___4", "28": "00___NUMERIC___fixed acidity_03___5", "29": "00___NUMERIC___fixed acidity_03___6", "30": "00___NUMERIC___fixed acidity_03___7", "31": "00___NUMERIC___fixed acidity_03___8", "32": "00___NUMERIC___fixed acidity_03___9", "33": "00___NUMERIC___fixed acidity_04___0", "34": "00___NUMERIC___fixed acidity_04___5", "35": "01___NUMERIC___volatile acidity_00___0", "36": "01___NUMERIC___volatile acidity_00___1", "37": "01___NUMERIC___volatile acidity_01___.", "38": "01___NUMERIC___volatile acidity_02___0", "39": "01___NUMERIC___volatile acidity_02___1", "40": "01___NUMERIC___volatile acidity_02___2", "41": "01___NUMERIC___volatile acidity_02___3", "42": "01___NUMERIC___volatile acidity_02___4", "43": "01___NUMERIC___volatile acidity_02___5", "44": "01___NUMERIC___volatile acidity_02___6", "45": "01___NUMERIC___volatile acidity_02___7", "46": "01___NUMERIC___volatile acidity_02___8", "47": "01___NUMERIC___volatile acidity_02___9", "48": "01___NUMERIC___volatile acidity_03___0", "49": "01___NUMERIC___volatile acidity_03___1", "50": "01___NUMERIC___volatile acidity_03___2", "51": "01___NUMERIC___volatile acidity_03___3", "52": "01___NUMERIC___volatile acidity_03___4", "53": "01___NUMERIC___volatile acidity_03___5", "54": "01___NUMERIC___volatile acidity_03___6", "55": "01___NUMERIC___volatile acidity_03___7", "56": "01___NUMERIC___volatile acidity_03___8", "57": "01___NUMERIC___volatile acidity_03___9", "58": "01___NUMERIC___volatile acidity_04___0", "59": "01___NUMERIC___volatile acidity_04___5", "60": "02___NUMERIC___citric acid_00___0", "61": "02___NUMERIC___citric acid_00___1", "62": "02___NUMERIC___citric acid_01___.", "63": "02___NUMERIC___citric acid_02___0", "64": "02___NUMERIC___citric acid_02___1", "65": "02___NUMERIC___citric acid_02___2", "66": "02___NUMERIC___citric acid_02___3", "67": "02___NUMERIC___citric acid_02___4", "68": "02___NUMERIC___citric acid_02___5", "69": "02___NUMERIC___citric acid_02___6", "70": "02___NUMERIC___citric acid_02___7", "71": "02___NUMERIC___citric acid_02___8", "72": "02___NUMERIC___citric acid_02___9", "73": "02___NUMERIC___citric acid_03___0", "74": "02___NUMERIC___citric acid_03___1", "75": "02___NUMERIC___citric acid_03___2", "76": "02___NUMERIC___citric acid_03___3", "77": "02___NUMERIC___citric acid_03___4", "78": "02___NUMERIC___citric acid_03___5", "79": "02___NUMERIC___citric acid_03___6", "80": "02___NUMERIC___citric acid_03___7", "81": "02___NUMERIC___citric acid_03___8", "82": "02___NUMERIC___citric acid_03___9", "83": "03___NUMERIC___residual sugar_00___0", "84": "03___NUMERIC___residual sugar_00___1", "85": "03___NUMERIC___residual sugar_00___2", "86": "03___NUMERIC___residual sugar_00___3", "87": "03___NUMERIC___residual sugar_00___6", "88": "03___NUMERIC___residual sugar_01___0", "89": "03___NUMERIC___residual sugar_01___1", "90": "03___NUMERIC___residual sugar_01___2", "91": "03___NUMERIC___residual sugar_01___3", "92": "03___NUMERIC___residual sugar_01___4", "93": "03___NUMERIC___residual sugar_01___5", "94": "03___NUMERIC___residual sugar_01___6", "95": "03___NUMERIC___residual sugar_01___7", "96": "03___NUMERIC___residual sugar_01___8", "97": "03___NUMERIC___residual sugar_01___9", "98": "03___NUMERIC___residual sugar_02___.", "99": "03___NUMERIC___residual sugar_03___0", "100": "03___NUMERIC___residual sugar_03___1", "101": "03___NUMERIC___residual sugar_03___2", "102": "03___NUMERIC___residual sugar_03___3", "103": "03___NUMERIC___residual sugar_03___4", "104": "03___NUMERIC___residual sugar_03___5", "105": "03___NUMERIC___residual sugar_03___6", "106": "03___NUMERIC___residual sugar_03___7", "107": "03___NUMERIC___residual sugar_03___8", "108": "03___NUMERIC___residual sugar_03___9", "109": "03___NUMERIC___residual sugar_04___0", "110": "03___NUMERIC___residual sugar_04___5", "111": "04___NUMERIC___chlorides_00___0", "112": "04___NUMERIC___chlorides_01___.", "113": "04___NUMERIC___chlorides_02___0", "114": "04___NUMERIC___chlorides_02___1", "115": "04___NUMERIC___chlorides_02___2", "116": "04___NUMERIC___chlorides_02___3", "117": "04___NUMERIC___chlorides_03___0", "118": "04___NUMERIC___chlorides_03___1", "119": "04___NUMERIC___chlorides_03___2", "120": "04___NUMERIC___chlorides_03___3", "121": "04___NUMERIC___chlorides_03___4", "122": "04___NUMERIC___chlorides_03___5", "123": "04___NUMERIC___chlorides_03___6", "124": "04___NUMERIC___chlorides_03___7", "125": "04___NUMERIC___chlorides_03___8", "126": "04___NUMERIC___chlorides_03___9", "127": "04___NUMERIC___chlorides_04___0", "128": "04___NUMERIC___chlorides_04___1", "129": "04___NUMERIC___chlorides_04___2", "130": "04___NUMERIC___chlorides_04___3", "131": "04___NUMERIC___chlorides_04___4", "132": "04___NUMERIC___chlorides_04___5", "133": "04___NUMERIC___chlorides_04___6", "134": "04___NUMERIC___chlorides_04___7", "135": "04___NUMERIC___chlorides_04___8", "136": "04___NUMERIC___chlorides_04___9", "137": "05___NUMERIC___free sulfur dioxide_00___0", "138": "05___NUMERIC___free sulfur dioxide_00___1", "139": "05___NUMERIC___free sulfur dioxide_01___0", "140": "05___NUMERIC___free sulfur dioxide_01___1", "141": "05___NUMERIC___free sulfur dioxide_01___2", "142": "05___NUMERIC___free sulfur dioxide_01___3", "143": "05___NUMERIC___free sulfur dioxide_01___4", "144": "05___NUMERIC___free sulfur dioxide_01___5", "145": "05___NUMERIC___free sulfur dioxide_01___6", "146": "05___NUMERIC___free sulfur dioxide_01___7", "147": "05___NUMERIC___free sulfur dioxide_01___8", "148": "05___NUMERIC___free sulfur dioxide_01___9", "149": "05___NUMERIC___free sulfur dioxide_02___0", "150": "05___NUMERIC___free sulfur dioxide_02___1", "151": "05___NUMERIC___free sulfur dioxide_02___2", "152": "05___NUMERIC___free sulfur dioxide_02___3", "153": "05___NUMERIC___free sulfur dioxide_02___4", "154": "05___NUMERIC___free sulfur dioxide_02___5", "155": "05___NUMERIC___free sulfur dioxide_02___6", "156": "05___NUMERIC___free sulfur dioxide_02___7", "157": "05___NUMERIC___free sulfur dioxide_02___8", "158": "05___NUMERIC___free sulfur dioxide_02___9", "159": "05___NUMERIC___free sulfur dioxide_03___.", "160": "05___NUMERIC___free sulfur dioxide_04___0", "161": "05___NUMERIC___free sulfur dioxide_04___5", "162": "06___NUMERIC___total sulfur dioxide_00___0", "163": "06___NUMERIC___total sulfur dioxide_00___1", "164": "06___NUMERIC___total sulfur dioxide_00___2", "165": "06___NUMERIC___total sulfur dioxide_00___3", "166": "06___NUMERIC___total sulfur dioxide_01___0", "167": "06___NUMERIC___total sulfur dioxide_01___1", "168": "06___NUMERIC___total sulfur dioxide_01___2", "169": "06___NUMERIC___total sulfur dioxide_01___3", "170": "06___NUMERIC___total sulfur dioxide_01___4", "171": "06___NUMERIC___total sulfur dioxide_01___5", "172": "06___NUMERIC___total sulfur dioxide_01___6", "173": "06___NUMERIC___total sulfur dioxide_01___7", "174": "06___NUMERIC___total sulfur dioxide_01___8", "175": "06___NUMERIC___total sulfur dioxide_01___9", "176": "06___NUMERIC___total sulfur dioxide_02___0", "177": "06___NUMERIC___total sulfur dioxide_02___1", "178": "06___NUMERIC___total sulfur dioxide_02___2", "179": "06___NUMERIC___total sulfur dioxide_02___3", "180": "06___NUMERIC___total sulfur dioxide_02___4", "181": "06___NUMERIC___total sulfur dioxide_02___5", "182": "06___NUMERIC___total sulfur dioxide_02___6", "183": "06___NUMERIC___total sulfur dioxide_02___7", "184": "06___NUMERIC___total sulfur dioxide_02___8", "185": "06___NUMERIC___total sulfur dioxide_02___9", "186": "06___NUMERIC___total sulfur dioxide_03___.", "187": "06___NUMERIC___total sulfur dioxide_04___0", "188": "06___NUMERIC___total sulfur dioxide_04___5", "189": "07___NUMERIC___density_00___0", "190": "07___NUMERIC___density_00___1", "191": "07___NUMERIC___density_01___.", "192": "07___NUMERIC___density_02___0", "193": "07___NUMERIC___density_02___9", "194": "07___NUMERIC___density_03___0", "195": "07___NUMERIC___density_03___1", "196": "07___NUMERIC___density_03___3", "197": "07___NUMERIC___density_03___8", "198": "07___NUMERIC___density_03___9", "199": "07___NUMERIC___density_04___0", "200": "07___NUMERIC___density_04___1", "201": "07___NUMERIC___density_04___2", "202": "07___NUMERIC___density_04___3", "203": "07___NUMERIC___density_04___4", "204": "07___NUMERIC___density_04___5", "205": "07___NUMERIC___density_04___6", "206": "07___NUMERIC___density_04___7", "207": "07___NUMERIC___density_04___8", "208": "07___NUMERIC___density_04___9", "209": "07___NUMERIC___density_05___0", "210": "07___NUMERIC___density_05___1", "211": "07___NUMERIC___density_05___2", "212": "07___NUMERIC___density_05___3", "213": "07___NUMERIC___density_05___4", "214": "07___NUMERIC___density_05___5", "215": "07___NUMERIC___density_05___6", "216": "07___NUMERIC___density_05___7", "217": "07___NUMERIC___density_05___8", "218": "07___NUMERIC___density_05___9", "219": "08___NUMERIC___pH_00___2", "220": "08___NUMERIC___pH_00___3", "221": "08___NUMERIC___pH_01___.", "222": "08___NUMERIC___pH_02___0", "223": "08___NUMERIC___pH_02___1", "224": "08___NUMERIC___pH_02___2", "225": "08___NUMERIC___pH_02___3", "226": "08___NUMERIC___pH_02___4", "227": "08___NUMERIC___pH_02___5", "228": "08___NUMERIC___pH_02___6", "229": "08___NUMERIC___pH_02___7", "230": "08___NUMERIC___pH_02___8", "231": "08___NUMERIC___pH_02___9", "232": "08___NUMERIC___pH_03___0", "233": "08___NUMERIC___pH_03___1", "234": "08___NUMERIC___pH_03___2", "235": "08___NUMERIC___pH_03___3", "236": "08___NUMERIC___pH_03___4", "237": "08___NUMERIC___pH_03___5", "238": "08___NUMERIC___pH_03___6", "239": "08___NUMERIC___pH_03___7", "240": "08___NUMERIC___pH_03___8", "241": "08___NUMERIC___pH_03___9", "242": "09___NUMERIC___sulphates_00___0", "243": "09___NUMERIC___sulphates_00___1", "244": "09___NUMERIC___sulphates_01___.", "245": "09___NUMERIC___sulphates_02___0", "246": "09___NUMERIC___sulphates_02___2", "247": "09___NUMERIC___sulphates_02___3", "248": "09___NUMERIC___sulphates_02___4", "249": "09___NUMERIC___sulphates_02___5", "250": "09___NUMERIC___sulphates_02___6", "251": "09___NUMERIC___sulphates_02___7", "252": "09___NUMERIC___sulphates_02___8", "253": "09___NUMERIC___sulphates_02___9", "254": "09___NUMERIC___sulphates_03___0", "255": "09___NUMERIC___sulphates_03___1", "256": "09___NUMERIC___sulphates_03___2", "257": "09___NUMERIC___sulphates_03___3", "258": "09___NUMERIC___sulphates_03___4", "259": "09___NUMERIC___sulphates_03___5", "260": "09___NUMERIC___sulphates_03___6", "261": "09___NUMERIC___sulphates_03___7", "262": "09___NUMERIC___sulphates_03___8", "263": "09___NUMERIC___sulphates_03___9", "264": "10___NUMERIC___alcohol_00___0", "265": "10___NUMERIC___alcohol_00___1", "266": "10___NUMERIC___alcohol_01___0", "267": "10___NUMERIC___alcohol_01___1", "268": "10___NUMERIC___alcohol_01___2", "269": "10___NUMERIC___alcohol_01___3", "270": "10___NUMERIC___alcohol_01___4", "271": "10___NUMERIC___alcohol_01___8", "272": "10___NUMERIC___alcohol_01___9", "273": "10___NUMERIC___alcohol_02___.", "274": "10___NUMERIC___alcohol_03___0", "275": "10___NUMERIC___alcohol_03___1", "276": "10___NUMERIC___alcohol_03___2", "277": "10___NUMERIC___alcohol_03___3", "278": "10___NUMERIC___alcohol_03___4", "279": "10___NUMERIC___alcohol_03___5", "280": "10___NUMERIC___alcohol_03___6", "281": "10___NUMERIC___alcohol_03___7", "282": "10___NUMERIC___alcohol_03___8", "283": "10___NUMERIC___alcohol_03___9", "284": "10___NUMERIC___alcohol_04___0", "285": "10___NUMERIC___alcohol_04___3", "286": "10___NUMERIC___alcohol_04___4", "287": "10___NUMERIC___alcohol_04___5", "288": "10___NUMERIC___alcohol_04___6", "289": "10___NUMERIC___alcohol_04___8", "290": "10___NUMERIC___alcohol_04___9", "291": "10___NUMERIC___alcohol_05___0", "292": "10___NUMERIC___alcohol_05___3", "293": "10___NUMERIC___alcohol_05___6", "294": "10___NUMERIC___alcohol_06___0", "295": "10___NUMERIC___alcohol_06___3", "296": "10___NUMERIC___alcohol_06___7", "297": "11___NUMERIC___quality_00___3", "298": "11___NUMERIC___quality_00___4", "299": "11___NUMERIC___quality_00___5", "300": "11___NUMERIC___quality_00___6", "301": "11___NUMERIC___quality_00___7", "302": "11___NUMERIC___quality_00___8", "303": "11___NUMERIC___quality_00___9"}, "token2id": {"[UNK]": 0, "[SEP]": 1, "[PAD]": 2, "[CLS]": 3, "[MASK]": 4, "[BOS]": 5, "[EOS]": 6, "[BMEM]": 7, "[EMEM]": 8, "[RMASK]": 9, "[SPTYPE]": 10, "00___NUMERIC___fixed acidity_00___0": 11, "00___NUMERIC___fixed acidity_00___1": 12, "00___NUMERIC___fixed acidity_01___0": 13, "00___NUMERIC___fixed acidity_01___1": 14, "00___NUMERIC___fixed acidity_01___3": 15, "00___NUMERIC___fixed acidity_01___4": 16, "00___NUMERIC___fixed acidity_01___5": 17, "00___NUMERIC___fixed acidity_01___6": 18, "00___NUMERIC___fixed acidity_01___7": 19, "00___NUMERIC___fixed acidity_01___8": 20, "00___NUMERIC___fixed acidity_01___9": 21, "00___NUMERIC___fixed acidity_02___.": 22, "00___NUMERIC___fixed acidity_03___0": 23, "00___NUMERIC___fixed acidity_03___1": 24, "00___NUMERIC___fixed acidity_03___2": 25, "00___NUMERIC___fixed acidity_03___3": 26, "00___NUMERIC___fixed acidity_03___4": 27, "00___NUMERIC___fixed acidity_03___5": 28, "00___NUMERIC___fixed acidity_03___6": 29, "00___NUMERIC___fixed acidity_03___7": 30, "00___NUMERIC___fixed acidity_03___8": 31, "00___NUMERIC___fixed acidity_03___9": 32, "00___NUMERIC___fixed acidity_04___0": 33, "00___NUMERIC___fixed acidity_04___5": 34, "01___NUMERIC___volatile acidity_00___0": 35, "01___NUMERIC___volatile acidity_00___1": 36, "01___NUMERIC___volatile acidity_01___.": 37, "01___NUMERIC___volatile acidity_02___0": 38, "01___NUMERIC___volatile acidity_02___1": 39, "01___NUMERIC___volatile acidity_02___2": 40, "01___NUMERIC___volatile acidity_02___3": 41, "01___NUMERIC___volatile acidity_02___4": 42, "01___NUMERIC___volatile acidity_02___5": 43, "01___NUMERIC___volatile acidity_02___6": 44, "01___NUMERIC___volatile acidity_02___7": 45, "01___NUMERIC___volatile acidity_02___8": 46, "01___NUMERIC___volatile acidity_02___9": 47, "01___NUMERIC___volatile acidity_03___0": 48, "01___NUMERIC___volatile acidity_03___1": 49, "01___NUMERIC___volatile acidity_03___2": 50, "01___NUMERIC___volatile acidity_03___3": 51, "01___NUMERIC___volatile acidity_03___4": 52, "01___NUMERIC___volatile acidity_03___5": 53, "01___NUMERIC___volatile acidity_03___6": 54, "01___NUMERIC___volatile acidity_03___7": 55, "01___NUMERIC___volatile acidity_03___8": 56, "01___NUMERIC___volatile acidity_03___9": 57, "01___NUMERIC___volatile acidity_04___0": 58, "01___NUMERIC___volatile acidity_04___5": 59, "02___NUMERIC___citric acid_00___0": 60, "02___NUMERIC___citric acid_00___1": 61, "02___NUMERIC___citric acid_01___.": 62, "02___NUMERIC___citric acid_02___0": 63, "02___NUMERIC___citric acid_02___1": 64, "02___NUMERIC___citric acid_02___2": 65, "02___NUMERIC___citric acid_02___3": 66, "02___NUMERIC___citric acid_02___4": 67, "02___NUMERIC___citric acid_02___5": 68, "02___NUMERIC___citric acid_02___6": 69, "02___NUMERIC___citric acid_02___7": 70, "02___NUMERIC___citric acid_02___8": 71, "02___NUMERIC___citric acid_02___9": 72, "02___NUMERIC___citric acid_03___0": 73, "02___NUMERIC___citric acid_03___1": 74, "02___NUMERIC___citric acid_03___2": 75, "02___NUMERIC___citric acid_03___3": 76, "02___NUMERIC___citric acid_03___4": 77, "02___NUMERIC___citric acid_03___5": 78, "02___NUMERIC___citric acid_03___6": 79, "02___NUMERIC___citric acid_03___7": 80, "02___NUMERIC___citric acid_03___8": 81, "02___NUMERIC___citric acid_03___9": 82, "03___NUMERIC___residual sugar_00___0": 83, "03___NUMERIC___residual sugar_00___1": 84, "03___NUMERIC___residual sugar_00___2": 85, "03___NUMERIC___residual sugar_00___3": 86, "03___NUMERIC___residual sugar_00___6": 87, "03___NUMERIC___residual sugar_01___0": 88, "03___NUMERIC___residual sugar_01___1": 89, "03___NUMERIC___residual sugar_01___2": 90, "03___NUMERIC___residual sugar_01___3": 91, "03___NUMERIC___residual sugar_01___4": 92, "03___NUMERIC___residual sugar_01___5": 93, "03___NUMERIC___residual sugar_01___6": 94, "03___NUMERIC___residual sugar_01___7": 95, "03___NUMERIC___residual sugar_01___8": 96, "03___NUMERIC___residual sugar_01___9": 97, "03___NUMERIC___residual sugar_02___.": 98, "03___NUMERIC___residual sugar_03___0": 99, "03___NUMERIC___residual sugar_03___1": 100, "03___NUMERIC___residual sugar_03___2": 101, "03___NUMERIC___residual sugar_03___3": 102, "03___NUMERIC___residual sugar_03___4": 103, "03___NUMERIC___residual sugar_03___5": 104, "03___NUMERIC___residual sugar_03___6": 105, "03___NUMERIC___residual sugar_03___7": 106, "03___NUMERIC___residual sugar_03___8": 107, "03___NUMERIC___residual sugar_03___9": 108, "03___NUMERIC___residual sugar_04___0": 109, "03___NUMERIC___residual sugar_04___5": 110, "04___NUMERIC___chlorides_00___0": 111, "04___NUMERIC___chlorides_01___.": 112, "04___NUMERIC___chlorides_02___0": 113, "04___NUMERIC___chlorides_02___1": 114, "04___NUMERIC___chlorides_02___2": 115, "04___NUMERIC___chlorides_02___3": 116, "04___NUMERIC___chlorides_03___0": 117, "04___NUMERIC___chlorides_03___1": 118, "04___NUMERIC___chlorides_03___2": 119, "04___NUMERIC___chlorides_03___3": 120, "04___NUMERIC___chlorides_03___4": 121, "04___NUMERIC___chlorides_03___5": 122, "04___NUMERIC___chlorides_03___6": 123, "04___NUMERIC___chlorides_03___7": 124, "04___NUMERIC___chlorides_03___8": 125, "04___NUMERIC___chlorides_03___9": 126, "04___NUMERIC___chlorides_04___0": 127, "04___NUMERIC___chlorides_04___1": 128, "04___NUMERIC___chlorides_04___2": 129, "04___NUMERIC___chlorides_04___3": 130, "04___NUMERIC___chlorides_04___4": 131, "04___NUMERIC___chlorides_04___5": 132, "04___NUMERIC___chlorides_04___6": 133, "04___NUMERIC___chlorides_04___7": 134, "04___NUMERIC___chlorides_04___8": 135, "04___NUMERIC___chlorides_04___9": 136, "05___NUMERIC___free sulfur dioxide_00___0": 137, "05___NUMERIC___free sulfur dioxide_00___1": 138, "05___NUMERIC___free sulfur dioxide_01___0": 139, "05___NUMERIC___free sulfur dioxide_01___1": 140, "05___NUMERIC___free sulfur dioxide_01___2": 141, "05___NUMERIC___free sulfur dioxide_01___3": 142, "05___NUMERIC___free sulfur dioxide_01___4": 143, "05___NUMERIC___free sulfur dioxide_01___5": 144, "05___NUMERIC___free sulfur dioxide_01___6": 145, "05___NUMERIC___free sulfur dioxide_01___7": 146, "05___NUMERIC___free sulfur dioxide_01___8": 147, "05___NUMERIC___free sulfur dioxide_01___9": 148, "05___NUMERIC___free sulfur dioxide_02___0": 149, "05___NUMERIC___free sulfur dioxide_02___1": 150, "05___NUMERIC___free sulfur dioxide_02___2": 151, "05___NUMERIC___free sulfur dioxide_02___3": 152, "05___NUMERIC___free sulfur dioxide_02___4": 153, "05___NUMERIC___free sulfur dioxide_02___5": 154, "05___NUMERIC___free sulfur dioxide_02___6": 155, "05___NUMERIC___free sulfur dioxide_02___7": 156, "05___NUMERIC___free sulfur dioxide_02___8": 157, "05___NUMERIC___free sulfur dioxide_02___9": 158, "05___NUMERIC___free sulfur dioxide_03___.": 159, "05___NUMERIC___free sulfur dioxide_04___0": 160, "05___NUMERIC___free sulfur dioxide_04___5": 161, "06___NUMERIC___total sulfur dioxide_00___0": 162, "06___NUMERIC___total sulfur dioxide_00___1": 163, "06___NUMERIC___total sulfur dioxide_00___2": 164, "06___NUMERIC___total sulfur dioxide_00___3": 165, "06___NUMERIC___total sulfur dioxide_01___0": 166, "06___NUMERIC___total sulfur dioxide_01___1": 167, "06___NUMERIC___total sulfur dioxide_01___2": 168, "06___NUMERIC___total sulfur dioxide_01___3": 169, "06___NUMERIC___total sulfur dioxide_01___4": 170, "06___NUMERIC___total sulfur dioxide_01___5": 171, "06___NUMERIC___total sulfur dioxide_01___6": 172, "06___NUMERIC___total sulfur dioxide_01___7": 173, "06___NUMERIC___total sulfur dioxide_01___8": 174, "06___NUMERIC___total sulfur dioxide_01___9": 175, "06___NUMERIC___total sulfur dioxide_02___0": 176, "06___NUMERIC___total sulfur dioxide_02___1": 177, "06___NUMERIC___total sulfur dioxide_02___2": 178, "06___NUMERIC___total sulfur dioxide_02___3": 179, "06___NUMERIC___total sulfur dioxide_02___4": 180, "06___NUMERIC___total sulfur dioxide_02___5": 181, "06___NUMERIC___total sulfur dioxide_02___6": 182, "06___NUMERIC___total sulfur dioxide_02___7": 183, "06___NUMERIC___total sulfur dioxide_02___8": 184, "06___NUMERIC___total sulfur dioxide_02___9": 185, "06___NUMERIC___total sulfur dioxide_03___.": 186, "06___NUMERIC___total sulfur dioxide_04___0": 187, "06___NUMERIC___total sulfur dioxide_04___5": 188, "07___NUMERIC___density_00___0": 189, "07___NUMERIC___density_00___1": 190, "07___NUMERIC___density_01___.": 191, "07___NUMERIC___density_02___0": 192, "07___NUMERIC___density_02___9": 193, "07___NUMERIC___density_03___0": 194, "07___NUMERIC___density_03___1": 195, "07___NUMERIC___density_03___3": 196, "07___NUMERIC___density_03___8": 197, "07___NUMERIC___density_03___9": 198, "07___NUMERIC___density_04___0": 199, "07___NUMERIC___density_04___1": 200, "07___NUMERIC___density_04___2": 201, "07___NUMERIC___density_04___3": 202, "07___NUMERIC___density_04___4": 203, "07___NUMERIC___density_04___5": 204, "07___NUMERIC___density_04___6": 205, "07___NUMERIC___density_04___7": 206, "07___NUMERIC___density_04___8": 207, "07___NUMERIC___density_04___9": 208, "07___NUMERIC___density_05___0": 209, "07___NUMERIC___density_05___1": 210, "07___NUMERIC___density_05___2": 211, "07___NUMERIC___density_05___3": 212, "07___NUMERIC___density_05___4": 213, "07___NUMERIC___density_05___5": 214, "07___NUMERIC___density_05___6": 215, "07___NUMERIC___density_05___7": 216, "07___NUMERIC___density_05___8": 217, "07___NUMERIC___density_05___9": 218, "08___NUMERIC___pH_00___2": 219, "08___NUMERIC___pH_00___3": 220, "08___NUMERIC___pH_01___.": 221, "08___NUMERIC___pH_02___0": 222, "08___NUMERIC___pH_02___1": 223, "08___NUMERIC___pH_02___2": 224, "08___NUMERIC___pH_02___3": 225, "08___NUMERIC___pH_02___4": 226, "08___NUMERIC___pH_02___5": 227, "08___NUMERIC___pH_02___6": 228, "08___NUMERIC___pH_02___7": 229, "08___NUMERIC___pH_02___8": 230, "08___NUMERIC___pH_02___9": 231, "08___NUMERIC___pH_03___0": 232, "08___NUMERIC___pH_03___1": 233, "08___NUMERIC___pH_03___2": 234, "08___NUMERIC___pH_03___3": 235, "08___NUMERIC___pH_03___4": 236, "08___NUMERIC___pH_03___5": 237, "08___NUMERIC___pH_03___6": 238, "08___NUMERIC___pH_03___7": 239, "08___NUMERIC___pH_03___8": 240, "08___NUMERIC___pH_03___9": 241, "09___NUMERIC___sulphates_00___0": 242, "09___NUMERIC___sulphates_00___1": 243, "09___NUMERIC___sulphates_01___.": 244, "09___NUMERIC___sulphates_02___0": 245, "09___NUMERIC___sulphates_02___2": 246, "09___NUMERIC___sulphates_02___3": 247, "09___NUMERIC___sulphates_02___4": 248, "09___NUMERIC___sulphates_02___5": 249, "09___NUMERIC___sulphates_02___6": 250, "09___NUMERIC___sulphates_02___7": 251, "09___NUMERIC___sulphates_02___8": 252, "09___NUMERIC___sulphates_02___9": 253, "09___NUMERIC___sulphates_03___0": 254, "09___NUMERIC___sulphates_03___1": 255, "09___NUMERIC___sulphates_03___2": 256, "09___NUMERIC___sulphates_03___3": 257, "09___NUMERIC___sulphates_03___4": 258, "09___NUMERIC___sulphates_03___5": 259, "09___NUMERIC___sulphates_03___6": 260, "09___NUMERIC___sulphates_03___7": 261, "09___NUMERIC___sulphates_03___8": 262, "09___NUMERIC___sulphates_03___9": 263, "10___NUMERIC___alcohol_00___0": 264, "10___NUMERIC___alcohol_00___1": 265, "10___NUMERIC___alcohol_01___0": 266, "10___NUMERIC___alcohol_01___1": 267, "10___NUMERIC___alcohol_01___2": 268, "10___NUMERIC___alcohol_01___3": 269, "10___NUMERIC___alcohol_01___4": 270, "10___NUMERIC___alcohol_01___8": 271, "10___NUMERIC___alcohol_01___9": 272, "10___NUMERIC___alcohol_02___.": 273, "10___NUMERIC___alcohol_03___0": 274, "10___NUMERIC___alcohol_03___1": 275, "10___NUMERIC___alcohol_03___2": 276, "10___NUMERIC___alcohol_03___3": 277, "10___NUMERIC___alcohol_03___4": 278, "10___NUMERIC___alcohol_03___5": 279, "10___NUMERIC___alcohol_03___6": 280, "10___NUMERIC___alcohol_03___7": 281, "10___NUMERIC___alcohol_03___8": 282, "10___NUMERIC___alcohol_03___9": 283, "10___NUMERIC___alcohol_04___0": 284, "10___NUMERIC___alcohol_04___3": 285, "10___NUMERIC___alcohol_04___4": 286, "10___NUMERIC___alcohol_04___5": 287, "10___NUMERIC___alcohol_04___6": 288, "10___NUMERIC___alcohol_04___8": 289, "10___NUMERIC___alcohol_04___9": 290, "10___NUMERIC___alcohol_05___0": 291, "10___NUMERIC___alcohol_05___3": 292, "10___NUMERIC___alcohol_05___6": 293, "10___NUMERIC___alcohol_06___0": 294, "10___NUMERIC___alcohol_06___3": 295, "10___NUMERIC___alcohol_06___7": 296, "11___NUMERIC___quality_00___3": 297, "11___NUMERIC___quality_00___4": 298, "11___NUMERIC___quality_00___5": 299, "11___NUMERIC___quality_00___6": 300, "11___NUMERIC___quality_00___7": 301, "11___NUMERIC___quality_00___8": 302, "11___NUMERIC___quality_00___9": 303}, "column_token_ids": {"00___NUMERIC___fixed acidity_00": [11, 12], "00___NUMERIC___fixed acidity_01": [13, 14, 15, 16, 17, 18, 19, 20, 21], "00___NUMERIC___fixed acidity_02": [22], "00___NUMERIC___fixed acidity_03": [23, 24, 25, 26, 27, 28, 29, 30, 31, 32], "00___NUMERIC___fixed acidity_04": [33, 34], "01___NUMERIC___volatile acidity_00": [35, 36], "01___NUMERIC___volatile acidity_01": [37], "01___NUMERIC___volatile acidity_02": [38, 39, 40, 41, 42, 43, 44, 45, 46, 47], "01___NUMERIC___volatile acidity_03": [48, 49, 50, 51, 52, 53, 54, 55, 56, 57], "01___NUMERIC___volatile acidity_04": [58, 59], "02___NUMERIC___citric acid_00": [60, 61], "02___NUMERIC___citric acid_01": [62], "02___NUMERIC___citric acid_02": [63, 64, 65, 66, 67, 68, 69, 70, 71, 72], "02___NUMERIC___citric acid_03": [73, 74, 75, 76, 77, 78, 79, 80, 81, 82], "03___NUMERIC___residual sugar_00": [83, 84, 85, 86, 87], "03___NUMERIC___residual sugar_01": [88, 89, 90, 91, 92, 93, 94, 95, 96, 97], "03___NUMERIC___residual sugar_02": [98], "03___NUMERIC___residual sugar_03": [99, 100, 101, 102, 103, 104, 105, 106, 107, 108], "03___NUMERIC___residual sugar_04": [109, 110], "04___NUMERIC___chlorides_00": [111], "04___NUMERIC___chlorides_01": [112], "04___NUMERIC___chlorides_02": [113, 114, 115, 116], "04___NUMERIC___chlorides_03": [117, 118, 119, 120, 121, 122, 123, 124, 125, 126], "04___NUMERIC___chlorides_04": [127, 128, 129, 130, 131, 132, 133, 134, 135, 136], "05___NUMERIC___free sulfur dioxide_00": [137, 138], "05___NUMERIC___free sulfur dioxide_01": [139, 140, 141, 142, 143, 144, 145, 146, 147, 148], "05___NUMERIC___free sulfur dioxide_02": [149, 150, 151, 152, 153, 154, 155, 156, 157, 158], "05___NUMERIC___free sulfur dioxide_03": [159], "05___NUMERIC___free sulfur dioxide_04": [160, 161], "06___NUMERIC___total sulfur dioxide_00": [162, 163, 164, 165], "06___NUMERIC___total sulfur dioxide_01": [166, 167, 168, 169, 170, 171, 172, 173, 174, 175], "06___NUMERIC___total sulfur dioxide_02": [176, 177, 178, 179, 180, 181, 182, 183, 184, 185], "06___NUMERIC___total sulfur dioxide_03": [186], "06___NUMERIC___total sulfur dioxide_04": [187, 188], "07___NUMERIC___density_00": [189, 190], "07___NUMERIC___density_01": [191], "07___NUMERIC___density_02": [192, 193], "07___NUMERIC___density_03": [194, 195, 196, 197, 198], "07___NUMERIC___density_04": [199, 200, 201, 202, 203, 204, 205, 206, 207, 208], "07___NUMERIC___density_05": [209, 210, 211, 212, 213, 214, 215, 216, 217, 218], "08___NUMERIC___pH_00": [219, 220], "08___NUMERIC___pH_01": [221], "08___NUMERIC___pH_02": [222, 223, 224, 225, 226, 227, 228, 229, 230, 231], "08___NUMERIC___pH_03": [232, 233, 234, 235, 236, 237, 238, 239, 240, 241], "09___NUMERIC___sulphates_00": [242, 243], "09___NUMERIC___sulphates_01": [244], "09___NUMERIC___sulphates_02": [245, 246, 247, 248, 249, 250, 251, 252, 253], "09___NUMERIC___sulphates_03": [254, 255, 256, 257, 258, 259, 260, 261, 262, 263], "10___NUMERIC___alcohol_00": [264, 265], "10___NUMERIC___alcohol_01": [266, 267, 268, 269, 270, 271, 272], "10___NUMERIC___alcohol_02": [273], "10___NUMERIC___alcohol_03": [274, 275, 276, 277, 278, 279, 280, 281, 282, 283], "10___NUMERIC___alcohol_04": [284, 285, 286, 287, 288, 289, 290], "10___NUMERIC___alcohol_05": [291, 292, 293], "10___NUMERIC___alcohol_06": [294, 295, 296], "11___NUMERIC___quality_00": [297, 298, 299, 300, 301, 302, 303]}}, "tabular_max_length": 58, "relational_max_length": null, "tabular_col_size": 3918, "relational_col_size": null, "col_transform_data": {"fixed acidity": {"max_len": 10, "numeric_precision": 4, "mx_sig": 2, "ljust": 5, "numeric_nparts": 1}, "volatile acidity": {"max_len": 10, "numeric_precision": 4, "mx_sig": 1, "ljust": 5, "numeric_nparts": 1}, "citric acid": {"max_len": 10, "numeric_precision": 4, "mx_sig": 1, "ljust": 4, "numeric_nparts": 1}, "residual sugar": {"max_len": 10, "numeric_precision": 4, "mx_sig": 2, "ljust": 5, "numeric_nparts": 1}, "chlorides": {"max_len": 10, "numeric_precision": 4, "mx_sig": 1, "ljust": 5, "numeric_nparts": 1}, "free sulfur dioxide": {"max_len": 10, "numeric_precision": 4, "mx_sig": 3, "ljust": 5, "numeric_nparts": 1}, "total sulfur dioxide": {"max_len": 10, "numeric_precision": 4, "mx_sig": 3, "ljust": 5, "numeric_nparts": 1}, "density": {"max_len": 10, "numeric_precision": 4, "mx_sig": 1, "ljust": 6, "numeric_nparts": 1}, "pH": {"max_len": 10, "numeric_precision": 4, "mx_sig": 1, "ljust": 4, "numeric_nparts": 1}, "sulphates": {"max_len": 10, "numeric_precision": 4, "mx_sig": 1, "ljust": 4, "numeric_nparts": 1}, "alcohol": {"max_len": 10, "numeric_precision": 4, "mx_sig": 2, "ljust": 7, "numeric_nparts": 1}, "quality": {"max_len": 10, "numeric_precision": 4, "mx_sig": -1, "zfill": 1, "numeric_nparts": 1}}, "in_col_transform_data": null, "col_idx_ids": {"0": [11, 12], "1": [13, 14, 15, 16, 17, 18, 19, 20, 21], "2": [22], "3": [23, 24, 25, 26, 27, 28, 29, 30, 31, 32], "4": [33, 34], "5": [35, 36], "6": [37], "7": [38, 39, 40, 41, 42, 43, 44, 45, 46, 47], "8": [48, 49, 50, 51, 52, 53, 54, 55, 56, 57], "9": [58, 59], "10": [60, 61], "11": [62], "12": [63, 64, 65, 66, 67, 68, 69, 70, 71, 72], "13": [73, 74, 75, 76, 77, 78, 79, 80, 81, 82], "14": [83, 84, 85, 86, 87], "15": [88, 89, 90, 91, 92, 93, 94, 95, 96, 97], "16": [98], "17": [99, 100, 101, 102, 103, 104, 105, 106, 107, 108], "18": [109, 110], "19": [111], "20": [112], "21": [113, 114, 115, 116], "22": [117, 118, 119, 120, 121, 122, 123, 124, 125, 126], "23": [127, 128, 129, 130, 131, 132, 133, 134, 135, 136], "24": [137, 138], "25": [139, 140, 141, 142, 143, 144, 145, 146, 147, 148], "26": [149, 150, 151, 152, 153, 154, 155, 156, 157, 158], "27": [159], "28": [160, 161], "29": [162, 163, 164, 165], "30": [166, 167, 168, 169, 170, 171, 172, 173, 174, 175], "31": [176, 177, 178, 179, 180, 181, 182, 183, 184, 185], "32": [186], "33": [187, 188], "34": [189, 190], "35": [191], "36": [192, 193], "37": [194, 195, 196, 197, 198], "38": [199, 200, 201, 202, 203, 204, 205, 206, 207, 208], "39": [209, 210, 211, 212, 213, 214, 215, 216, 217, 218], "40": [219, 220], "41": [221], "42": [222, 223, 224, 225, 226, 227, 228, 229, 230, 231], "43": [232, 233, 234, 235, 236, 237, 238, 239, 240, 241], "44": [242, 243], "45": [244], "46": [245, 246, 247, 248, 249, 250, 251, 252, 253], "47": [254, 255, 256, 257, 258, 259, 260, 261, 262, 263], "48": [264, 265], "49": [266, 267, 268, 269, 270, 271, 272], "50": [273], "51": [274, 275, 276, 277, 278, 279, 280, 281, 282, 283], "52": [284, 285, 286, 287, 288, 289, 290], "53": [291, 292, 293], "54": [294, 295, 296], "55": [297, 298, 299, 300, 301, 302, 303]}, "random_state": 1029, "numeric_nparts": 1, "numeric_precision": 4, "numeric_max_len": 10, "experiment_id": "id000017779205273754517504", "trainer_state": null, "target_col": null, "realtabformer_version": "0.2.4"} \ No newline at end of file diff --git a/hyperparameter/n3/realtabformer/rtf-n3-20260505_024350/models_30epochs/id000017779205273754517504/rtf_model.pt b/hyperparameter/n3/realtabformer/rtf-n3-20260505_024350/models_30epochs/id000017779205273754517504/rtf_model.pt new file mode 100644 index 0000000000000000000000000000000000000000..d5c5e7a2bff31a1cd4375d9a160996bd5c9b2c83 --- /dev/null +++ b/hyperparameter/n3/realtabformer/rtf-n3-20260505_024350/models_30epochs/id000017779205273754517504/rtf_model.pt @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:f3a54a015dcffe611e5b9a7709a63c64d1ecc1c93d7574cc10cbc72984dfe0d7 +size 174223843 diff --git a/hyperparameter/n3/realtabformer/rtf-n3-20260505_024350/public_gate/normalized_schema_snapshot.json b/hyperparameter/n3/realtabformer/rtf-n3-20260505_024350/public_gate/normalized_schema_snapshot.json new file mode 100644 index 0000000000000000000000000000000000000000..c41fe304503de23190a02e6cbfafa35b3bf134d3 --- /dev/null +++ b/hyperparameter/n3/realtabformer/rtf-n3-20260505_024350/public_gate/normalized_schema_snapshot.json @@ -0,0 +1,259 @@ +{ + "dataset_id": "n3", + "target_column": "quality", + "task_type": "classification", + "columns": [ + { + "name": "fixed acidity", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 66, + "unique_ratio": 0.016845, + "example_values": [ + "7.1", + "8.5", + "6.4", + "6.8", + "7.6" + ] + } + }, + { + "name": "volatile acidity", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 121, + "unique_ratio": 0.030883, + "example_values": [ + "0.31", + "0.21", + "0.24", + "0.43", + "0.27" + ] + } + }, + { + "name": "citric acid", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 85, + "unique_ratio": 0.021695, + "example_values": [ + "0.17", + "0.41", + "0.31", + "0.25", + "0.3" + ] + } + }, + { + "name": "residual sugar", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 296, + "unique_ratio": 0.075549, + "example_values": [ + "1", + "4.3", + "2.8", + "13", + "12.9" + ] + } + }, + { + "name": "chlorides", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 147, + "unique_ratio": 0.037519, + "example_values": [ + "0.042", + "0.036", + "0.038", + "0.047", + "0.033" + ] + } + }, + { + "name": "free sulfur dioxide", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 120, + "unique_ratio": 0.030628, + "example_values": [ + "21", + "24", + "41", + "43", + "69" + ] + } + }, + { + "name": "total sulfur dioxide", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 244, + "unique_ratio": 0.062277, + "example_values": [ + "144", + "99", + "114", + "132", + "160" + ] + } + }, + { + "name": "density", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 839, + "unique_ratio": 0.21414, + "example_values": [ + "0.99304", + "0.9947", + "0.99155", + "0.98975", + "0.99705" + ] + } + }, + { + "name": "pH", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 100, + "unique_ratio": 0.025523, + "example_values": [ + "3.13", + "3.18", + "3.37", + "3.21", + "3.16" + ] + } + }, + { + "name": "sulphates", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 78, + "unique_ratio": 0.019908, + "example_values": [ + "0.4", + "0.53", + "0.66", + "0.47", + "0.5" + ] + } + }, + { + "name": "alcohol", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 97, + "unique_ratio": 0.024758, + "example_values": [ + "9.6", + "9.7", + "11.7", + "13.4", + "8.8" + ] + } + }, + { + "name": "quality", + "role": "target", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 7, + "unique_ratio": 0.001787, + "example_values": [ + "5", + "6", + "7", + "8", + "3" + ] + } + } + ] +} \ No newline at end of file diff --git a/hyperparameter/n3/realtabformer/rtf-n3-20260505_024350/public_gate/public_gate_report.json b/hyperparameter/n3/realtabformer/rtf-n3-20260505_024350/public_gate/public_gate_report.json new file mode 100644 index 0000000000000000000000000000000000000000..93b97319f739e39079d6c6549fd2020f8a6dac25 --- /dev/null +++ b/hyperparameter/n3/realtabformer/rtf-n3-20260505_024350/public_gate/public_gate_report.json @@ -0,0 +1,37 @@ +{ + "dataset_id": "n3", + "status": "pass", + "checks": [ + { + "check_id": "PG001_csv_parse_ok", + "status": "pass" + }, + { + "check_id": "PG002_split_header_consistent", + "status": "pass" + }, + { + "check_id": "PG003_profile_header_match", + "status": "pass" + }, + { + "check_id": "PG004_missing_token_normalized", + "status": "pass" + }, + { + "check_id": "PG005_semantic_type_validated", + "status": "pass" + }, + { + "check_id": "PG006_target_defined_and_valid", + "status": "pass" + } + ], + "target_column": "quality", + "task_type": "classification", + "input_splits": { + "train": "/data/jialinzhang/SynthesizePipeline-server/DatasetNew/n3/n3-train.csv", + "val": "/data/jialinzhang/SynthesizePipeline-server/DatasetNew/n3/n3-val.csv", + "test": "/data/jialinzhang/SynthesizePipeline-server/DatasetNew/n3/n3-test.csv" + } +} \ No newline at end of file diff --git a/hyperparameter/n3/realtabformer/rtf-n3-20260505_024350/public_gate/staged_input_manifest.json b/hyperparameter/n3/realtabformer/rtf-n3-20260505_024350/public_gate/staged_input_manifest.json new file mode 100644 index 0000000000000000000000000000000000000000..560a8f926fa8e9765720dc8db2f479d60a1ea9ac --- /dev/null +++ b/hyperparameter/n3/realtabformer/rtf-n3-20260505_024350/public_gate/staged_input_manifest.json @@ -0,0 +1,264 @@ +{ + "dataset_id": "n3", + "target_column": "quality", + "task_type": "classification", + "train_csv": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/n3/realtabformer/rtf-n3-20260505_024350/staged/public/train.csv", + "val_csv": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/n3/realtabformer/rtf-n3-20260505_024350/staged/public/val.csv", + "test_csv": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/n3/realtabformer/rtf-n3-20260505_024350/staged/public/test.csv", + "features_json": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/n3/realtabformer/rtf-n3-20260505_024350/staged/public/staged_features.json", + "public_gate_report": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/n3/realtabformer/rtf-n3-20260505_024350/public_gate/public_gate_report.json", + "column_schema": [ + { + "name": "fixed acidity", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 66, + "unique_ratio": 0.016845, + "example_values": [ + "7.1", + "8.5", + "6.4", + "6.8", + "7.6" + ] + } + }, + { + "name": "volatile acidity", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 121, + "unique_ratio": 0.030883, + "example_values": [ + "0.31", + "0.21", + "0.24", + "0.43", + "0.27" + ] + } + }, + { + "name": "citric acid", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 85, + "unique_ratio": 0.021695, + "example_values": [ + "0.17", + "0.41", + "0.31", + "0.25", + "0.3" + ] + } + }, + { + "name": "residual sugar", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 296, + "unique_ratio": 0.075549, + "example_values": [ + "1", + "4.3", + "2.8", + "13", + "12.9" + ] + } + }, + { + "name": "chlorides", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 147, + "unique_ratio": 0.037519, + "example_values": [ + "0.042", + "0.036", + "0.038", + "0.047", + "0.033" + ] + } + }, + { + "name": "free sulfur dioxide", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 120, + "unique_ratio": 0.030628, + "example_values": [ + "21", + "24", + "41", + "43", + "69" + ] + } + }, + { + "name": "total sulfur dioxide", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 244, + "unique_ratio": 0.062277, + "example_values": [ + "144", + "99", + "114", + "132", + "160" + ] + } + }, + { + "name": "density", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 839, + "unique_ratio": 0.21414, + "example_values": [ + "0.99304", + "0.9947", + "0.99155", + "0.98975", + "0.99705" + ] + } + }, + { + "name": "pH", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 100, + "unique_ratio": 0.025523, + "example_values": [ + "3.13", + "3.18", + "3.37", + "3.21", + "3.16" + ] + } + }, + { + "name": "sulphates", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 78, + "unique_ratio": 0.019908, + "example_values": [ + "0.4", + "0.53", + "0.66", + "0.47", + "0.5" + ] + } + }, + { + "name": "alcohol", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 97, + "unique_ratio": 0.024758, + "example_values": [ + "9.6", + "9.7", + "11.7", + "13.4", + "8.8" + ] + } + }, + { + "name": "quality", + "role": "target", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 7, + "unique_ratio": 0.001787, + "example_values": [ + "5", + "6", + "7", + "8", + "3" + ] + } + } + ] +} \ No newline at end of file diff --git a/hyperparameter/n3/realtabformer/rtf-n3-20260505_024350/realtabformer_features.json b/hyperparameter/n3/realtabformer/rtf-n3-20260505_024350/realtabformer_features.json new file mode 100644 index 0000000000000000000000000000000000000000..08fe4d766d091d2f2ddba724a16b9509cbe4c390 --- /dev/null +++ b/hyperparameter/n3/realtabformer/rtf-n3-20260505_024350/realtabformer_features.json @@ -0,0 +1,62 @@ +[ + { + "feature_name": "fixed acidity", + "data_type": "continuous", + "is_target": false + }, + { + "feature_name": "volatile acidity", + "data_type": "continuous", + "is_target": false + }, + { + "feature_name": "citric acid", + "data_type": "continuous", + "is_target": false + }, + { + "feature_name": "residual sugar", + "data_type": "continuous", + "is_target": false + }, + { + "feature_name": "chlorides", + "data_type": "continuous", + "is_target": false + }, + { + "feature_name": "free sulfur dioxide", + "data_type": "continuous", + "is_target": false + }, + { + "feature_name": "total sulfur dioxide", + "data_type": "continuous", + "is_target": false + }, + { + "feature_name": "density", + "data_type": "continuous", + "is_target": false + }, + { + "feature_name": "pH", + "data_type": "continuous", + "is_target": false + }, + { + "feature_name": "sulphates", + "data_type": "continuous", + "is_target": false + }, + { + "feature_name": "alcohol", + "data_type": "continuous", + "is_target": false + }, + { + "feature_name": "quality", + "data_type": "continuous", + "is_target": true + } +] \ No newline at end of file diff --git a/hyperparameter/n3/realtabformer/rtf-n3-20260505_024350/rtf-n3-3918-20260505_024849.csv b/hyperparameter/n3/realtabformer/rtf-n3-20260505_024350/rtf-n3-3918-20260505_024849.csv new file mode 100644 index 0000000000000000000000000000000000000000..1cb42c1cf8c10269b4adc28e31e9dd94c4dbe987 --- /dev/null +++ b/hyperparameter/n3/realtabformer/rtf-n3-20260505_024350/rtf-n3-3918-20260505_024849.csv @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:12265034857614a37738642ebd9ecfefbdf3b8674f58203a21633a6ce58271b6 +size 227414 diff --git a/hyperparameter/n3/realtabformer/rtf-n3-20260505_024350/rtf_checkpoints/checkpoint-3400/config.json b/hyperparameter/n3/realtabformer/rtf-n3-20260505_024350/rtf_checkpoints/checkpoint-3400/config.json new file mode 100644 index 0000000000000000000000000000000000000000..1876b75d3abc713ca867fe8e643ea273dc9cea87 --- /dev/null +++ b/hyperparameter/n3/realtabformer/rtf-n3-20260505_024350/rtf_checkpoints/checkpoint-3400/config.json @@ -0,0 +1,34 @@ +{ + "activation_function": "gelu_new", + "add_cross_attention": false, + "architectures": [ + "GPT2LMHeadModel" + ], + "attn_pdrop": 0.1, + "bos_token_id": 5, + "dtype": "float32", + "embd_pdrop": 0.1, + "eos_token_id": 6, + "initializer_range": 0.02, + "layer_norm_epsilon": 1e-05, + "model_type": "gpt2", + "n_embd": 768, + "n_head": 12, + "n_inner": null, + "n_layer": 6, + "n_positions": 1024, + "pad_token_id": null, + "reorder_and_upcast_attn": false, + "resid_pdrop": 0.1, + "scale_attn_by_inverse_layer_idx": false, + "scale_attn_weights": true, + "summary_activation": null, + "summary_first_dropout": 0.1, + "summary_proj_to_labels": true, + "summary_type": "cls_index", + "summary_use_proj": true, + "tie_word_embeddings": true, + "transformers_version": "5.5.3", + "use_cache": false, + "vocab_size": 304 +} diff --git a/hyperparameter/n3/realtabformer/rtf-n3-20260505_024350/rtf_checkpoints/checkpoint-3400/generation_config.json b/hyperparameter/n3/realtabformer/rtf-n3-20260505_024350/rtf_checkpoints/checkpoint-3400/generation_config.json new file mode 100644 index 0000000000000000000000000000000000000000..ffe89567780e75b5c22eade9be971483b9618f39 --- /dev/null +++ b/hyperparameter/n3/realtabformer/rtf-n3-20260505_024350/rtf_checkpoints/checkpoint-3400/generation_config.json @@ -0,0 +1,9 @@ +{ + "_from_model_config": true, + "bos_token_id": 5, + "eos_token_id": 6, + "output_attentions": false, + "output_hidden_states": false, + "transformers_version": "5.5.3", + "use_cache": true +} diff --git a/hyperparameter/n3/realtabformer/rtf-n3-20260505_024350/rtf_checkpoints/checkpoint-3400/model.safetensors b/hyperparameter/n3/realtabformer/rtf-n3-20260505_024350/rtf_checkpoints/checkpoint-3400/model.safetensors new file mode 100644 index 0000000000000000000000000000000000000000..220d3d2710dfadea1a2eb554fcdfe8091d73ee4c --- /dev/null +++ b/hyperparameter/n3/realtabformer/rtf-n3-20260505_024350/rtf_checkpoints/checkpoint-3400/model.safetensors @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:bb995cbf40490a22fd0463d267e368e73034ccd16b7358dfbcbe448fe2a4fdc3 +size 174202312 diff --git a/hyperparameter/n3/realtabformer/rtf-n3-20260505_024350/rtf_checkpoints/checkpoint-3400/optimizer.pt b/hyperparameter/n3/realtabformer/rtf-n3-20260505_024350/rtf_checkpoints/checkpoint-3400/optimizer.pt new file mode 100644 index 0000000000000000000000000000000000000000..6cb553100d0332cf1f01ebfdea1130c36a163e9c --- /dev/null +++ b/hyperparameter/n3/realtabformer/rtf-n3-20260505_024350/rtf_checkpoints/checkpoint-3400/optimizer.pt @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:facb9ba9f2b234417dd6354da8d133007c71c6fb5baff57a99c6164c515601d9 +size 348453707 diff --git a/hyperparameter/n3/realtabformer/rtf-n3-20260505_024350/rtf_checkpoints/checkpoint-3400/rng_state.pth b/hyperparameter/n3/realtabformer/rtf-n3-20260505_024350/rtf_checkpoints/checkpoint-3400/rng_state.pth new file mode 100644 index 0000000000000000000000000000000000000000..73f90fc9bd2d8ee5e624521e160ffc6d941b72a0 --- /dev/null +++ b/hyperparameter/n3/realtabformer/rtf-n3-20260505_024350/rtf_checkpoints/checkpoint-3400/rng_state.pth @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:0c3551b3a50e6136bae3d460aaabf8e3e79b6ba81bd554313db17def40dbbafe +size 14645 diff --git a/hyperparameter/n3/realtabformer/rtf-n3-20260505_024350/rtf_checkpoints/checkpoint-3400/scaler.pt b/hyperparameter/n3/realtabformer/rtf-n3-20260505_024350/rtf_checkpoints/checkpoint-3400/scaler.pt new file mode 100644 index 0000000000000000000000000000000000000000..b58f31c53227bdf834dbe365d06abadd7fbd0d70 --- /dev/null +++ b/hyperparameter/n3/realtabformer/rtf-n3-20260505_024350/rtf_checkpoints/checkpoint-3400/scaler.pt @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:a7f0057f1a0cc52de60522c168cd59fee011d5489cd8505c56661af314a337f0 +size 1383 diff --git a/hyperparameter/n3/realtabformer/rtf-n3-20260505_024350/rtf_checkpoints/checkpoint-3400/scheduler.pt b/hyperparameter/n3/realtabformer/rtf-n3-20260505_024350/rtf_checkpoints/checkpoint-3400/scheduler.pt new file mode 100644 index 0000000000000000000000000000000000000000..e616e25831653612069fb746e7fdbadd9e7cca25 --- /dev/null +++ b/hyperparameter/n3/realtabformer/rtf-n3-20260505_024350/rtf_checkpoints/checkpoint-3400/scheduler.pt @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:7155ed77c1d6452ce2565b3e6ca8f83961cfd4d4cd751ef41d048668b5294372 +size 1465 diff --git a/hyperparameter/n3/realtabformer/rtf-n3-20260505_024350/rtf_checkpoints/checkpoint-3400/trainer_state.json b/hyperparameter/n3/realtabformer/rtf-n3-20260505_024350/rtf_checkpoints/checkpoint-3400/trainer_state.json new file mode 100644 index 0000000000000000000000000000000000000000..aee7de3fd4c4d6d440bababa9ac688438a35ef4e --- /dev/null +++ b/hyperparameter/n3/realtabformer/rtf-n3-20260505_024350/rtf_checkpoints/checkpoint-3400/trainer_state.json @@ -0,0 +1,272 @@ +{ + "best_global_step": null, + "best_metric": null, + "best_model_checkpoint": null, + "epoch": 27.644897959183673, + "eval_steps": 100, + "global_step": 3400, + "is_hyper_param_search": false, + "is_local_process_zero": true, + "is_world_process_zero": true, + "log_history": [ + { + "epoch": 0.8163265306122449, + "grad_norm": 0.2064717411994934, + "learning_rate": 4.8658536585365856e-05, + "loss": 1.4757151794433594, + "step": 100 + }, + { + "epoch": 1.6285714285714286, + "grad_norm": 0.19731839001178741, + "learning_rate": 4.730352303523036e-05, + "loss": 0.8808192443847657, + "step": 200 + }, + { + "epoch": 2.440816326530612, + "grad_norm": 0.19233861565589905, + "learning_rate": 4.5948509485094854e-05, + "loss": 0.839388656616211, + "step": 300 + }, + { + "epoch": 3.253061224489796, + "grad_norm": 0.17885564267635345, + "learning_rate": 4.459349593495935e-05, + "loss": 0.820302734375, + "step": 400 + }, + { + "epoch": 4.0653061224489795, + "grad_norm": 0.17553885281085968, + "learning_rate": 4.323848238482385e-05, + "loss": 0.8062593078613282, + "step": 500 + }, + { + "epoch": 4.881632653061224, + "grad_norm": 0.18091662228107452, + "learning_rate": 4.188346883468835e-05, + "loss": 0.7976528167724609, + "step": 600 + }, + { + "epoch": 5.6938775510204085, + "grad_norm": 0.19746601581573486, + "learning_rate": 4.0528455284552845e-05, + "loss": 0.7897119903564453, + "step": 700 + }, + { + "epoch": 6.506122448979592, + "grad_norm": 0.17183995246887207, + "learning_rate": 3.917344173441735e-05, + "loss": 0.7842807006835938, + "step": 800 + }, + { + "epoch": 7.318367346938776, + "grad_norm": 0.16645647585391998, + "learning_rate": 3.7818428184281843e-05, + "loss": 0.7794410705566406, + "step": 900 + }, + { + "epoch": 8.130612244897959, + "grad_norm": 0.1795785129070282, + "learning_rate": 3.646341463414634e-05, + "loss": 0.7734984588623047, + "step": 1000 + }, + { + "epoch": 8.946938775510205, + "grad_norm": 0.17855419218540192, + "learning_rate": 3.510840108401084e-05, + "loss": 0.7694242858886718, + "step": 1100 + }, + { + "epoch": 9.759183673469387, + "grad_norm": 0.17573025822639465, + "learning_rate": 3.375338753387534e-05, + "loss": 0.7633702850341797, + "step": 1200 + }, + { + "epoch": 10.571428571428571, + "grad_norm": 0.17806877195835114, + "learning_rate": 3.239837398373984e-05, + "loss": 0.7575871276855469, + "step": 1300 + }, + { + "epoch": 11.383673469387755, + "grad_norm": 0.1824948489665985, + "learning_rate": 3.104336043360434e-05, + "loss": 0.7541095733642578, + "step": 1400 + }, + { + "epoch": 12.19591836734694, + "grad_norm": 0.18645846843719482, + "learning_rate": 2.9688346883468836e-05, + "loss": 0.7520802307128907, + "step": 1500 + }, + { + "epoch": 13.008163265306122, + "grad_norm": 0.181560218334198, + "learning_rate": 2.8333333333333335e-05, + "loss": 0.7458098602294921, + "step": 1600 + }, + { + "epoch": 13.824489795918367, + "grad_norm": 0.2002779096364975, + "learning_rate": 2.697831978319783e-05, + "loss": 0.7404608917236328, + "step": 1700 + }, + { + "epoch": 14.636734693877552, + "grad_norm": 0.21172501146793365, + "learning_rate": 2.5623306233062334e-05, + "loss": 0.7345017242431641, + "step": 1800 + }, + { + "epoch": 15.448979591836734, + "grad_norm": 0.20012739300727844, + "learning_rate": 2.426829268292683e-05, + "loss": 0.7319316864013672, + "step": 1900 + }, + { + "epoch": 16.261224489795918, + "grad_norm": 0.20821470022201538, + "learning_rate": 2.291327913279133e-05, + "loss": 0.7253572845458984, + "step": 2000 + }, + { + "epoch": 17.073469387755104, + "grad_norm": 0.20355579257011414, + "learning_rate": 2.155826558265583e-05, + "loss": 0.7240914154052734, + "step": 2100 + }, + { + "epoch": 17.889795918367348, + "grad_norm": 0.20155112445354462, + "learning_rate": 2.0203252032520325e-05, + "loss": 0.71626220703125, + "step": 2200 + }, + { + "epoch": 18.70204081632653, + "grad_norm": 0.22867456078529358, + "learning_rate": 1.8848238482384824e-05, + "loss": 0.7096992492675781, + "step": 2300 + }, + { + "epoch": 19.514285714285712, + "grad_norm": 0.20605027675628662, + "learning_rate": 1.7493224932249323e-05, + "loss": 0.7065740203857422, + "step": 2400 + }, + { + "epoch": 20.3265306122449, + "grad_norm": 0.2228800356388092, + "learning_rate": 1.6138211382113823e-05, + "loss": 0.7027207946777344, + "step": 2500 + }, + { + "epoch": 21.13877551020408, + "grad_norm": 0.21112392842769623, + "learning_rate": 1.478319783197832e-05, + "loss": 0.6970812225341797, + "step": 2600 + }, + { + "epoch": 21.955102040816328, + "grad_norm": 0.2215406894683838, + "learning_rate": 1.3428184281842818e-05, + "loss": 0.6916716003417969, + "step": 2700 + }, + { + "epoch": 22.76734693877551, + "grad_norm": 0.23283785581588745, + "learning_rate": 1.2073170731707317e-05, + "loss": 0.68474853515625, + "step": 2800 + }, + { + "epoch": 23.579591836734693, + "grad_norm": 0.24355870485305786, + "learning_rate": 1.0718157181571816e-05, + "loss": 0.682100601196289, + "step": 2900 + }, + { + "epoch": 24.39183673469388, + "grad_norm": 0.23988300561904907, + "learning_rate": 9.363143631436316e-06, + "loss": 0.6743824005126953, + "step": 3000 + }, + { + "epoch": 25.20408163265306, + "grad_norm": 0.23516066372394562, + "learning_rate": 8.008130081300813e-06, + "loss": 0.6735887908935547, + "step": 3100 + }, + { + "epoch": 26.016326530612243, + "grad_norm": 0.2374054342508316, + "learning_rate": 6.653116531165313e-06, + "loss": 0.66905517578125, + "step": 3200 + }, + { + "epoch": 26.83265306122449, + "grad_norm": 0.25294286012649536, + "learning_rate": 5.298102981029811e-06, + "loss": 0.663328857421875, + "step": 3300 + }, + { + "epoch": 27.644897959183673, + "grad_norm": 0.24455367028713226, + "learning_rate": 3.943089430894309e-06, + "loss": 0.661527099609375, + "step": 3400 + } + ], + "logging_steps": 100, + "max_steps": 3690, + "num_input_tokens_seen": 0, + "num_train_epochs": 30, + "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": 1603048420048896.0, + "train_batch_size": 8, + "trial_name": null, + "trial_params": null +} diff --git a/hyperparameter/n3/realtabformer/rtf-n3-20260505_024350/rtf_checkpoints/checkpoint-3400/training_args.bin b/hyperparameter/n3/realtabformer/rtf-n3-20260505_024350/rtf_checkpoints/checkpoint-3400/training_args.bin new file mode 100644 index 0000000000000000000000000000000000000000..3d8b32516bfaeaa087fca28752b0d5ac8a4f9a32 --- /dev/null +++ b/hyperparameter/n3/realtabformer/rtf-n3-20260505_024350/rtf_checkpoints/checkpoint-3400/training_args.bin @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:0d3dc95355536f0383a0f823e8f277b91339a18334832f20d708fd987d139c82 +size 5201 diff --git a/hyperparameter/n3/realtabformer/rtf-n3-20260505_024350/rtf_checkpoints/checkpoint-3444/config.json b/hyperparameter/n3/realtabformer/rtf-n3-20260505_024350/rtf_checkpoints/checkpoint-3444/config.json new file mode 100644 index 0000000000000000000000000000000000000000..1876b75d3abc713ca867fe8e643ea273dc9cea87 --- /dev/null +++ b/hyperparameter/n3/realtabformer/rtf-n3-20260505_024350/rtf_checkpoints/checkpoint-3444/config.json @@ -0,0 +1,34 @@ +{ + "activation_function": "gelu_new", + "add_cross_attention": false, + "architectures": [ + "GPT2LMHeadModel" + ], + "attn_pdrop": 0.1, + "bos_token_id": 5, + "dtype": "float32", + "embd_pdrop": 0.1, + "eos_token_id": 6, + "initializer_range": 0.02, + "layer_norm_epsilon": 1e-05, + "model_type": "gpt2", + "n_embd": 768, + "n_head": 12, + "n_inner": null, + "n_layer": 6, + "n_positions": 1024, + "pad_token_id": null, + "reorder_and_upcast_attn": false, + "resid_pdrop": 0.1, + "scale_attn_by_inverse_layer_idx": false, + "scale_attn_weights": true, + "summary_activation": null, + "summary_first_dropout": 0.1, + "summary_proj_to_labels": true, + "summary_type": "cls_index", + "summary_use_proj": true, + "tie_word_embeddings": true, + "transformers_version": "5.5.3", + "use_cache": false, + "vocab_size": 304 +} diff --git a/hyperparameter/n3/realtabformer/rtf-n3-20260505_024350/rtf_checkpoints/checkpoint-3444/generation_config.json b/hyperparameter/n3/realtabformer/rtf-n3-20260505_024350/rtf_checkpoints/checkpoint-3444/generation_config.json new file mode 100644 index 0000000000000000000000000000000000000000..ffe89567780e75b5c22eade9be971483b9618f39 --- /dev/null +++ b/hyperparameter/n3/realtabformer/rtf-n3-20260505_024350/rtf_checkpoints/checkpoint-3444/generation_config.json @@ -0,0 +1,9 @@ +{ + "_from_model_config": true, + "bos_token_id": 5, + "eos_token_id": 6, + "output_attentions": false, + "output_hidden_states": false, + "transformers_version": "5.5.3", + "use_cache": true +} diff --git a/hyperparameter/n3/realtabformer/rtf-n3-20260505_024350/rtf_checkpoints/checkpoint-3444/model.safetensors b/hyperparameter/n3/realtabformer/rtf-n3-20260505_024350/rtf_checkpoints/checkpoint-3444/model.safetensors new file mode 100644 index 0000000000000000000000000000000000000000..d1dfc8336d5e0998e4d2b4a14a13a3097d5f04c9 --- /dev/null +++ b/hyperparameter/n3/realtabformer/rtf-n3-20260505_024350/rtf_checkpoints/checkpoint-3444/model.safetensors @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:5987bb6cf63ec93250b5056b9a3bee91bb1f3a0a49af7f9a1a2cb041ad22ffd0 +size 174202312 diff --git a/hyperparameter/n3/realtabformer/rtf-n3-20260505_024350/rtf_checkpoints/checkpoint-3444/optimizer.pt b/hyperparameter/n3/realtabformer/rtf-n3-20260505_024350/rtf_checkpoints/checkpoint-3444/optimizer.pt new file mode 100644 index 0000000000000000000000000000000000000000..b742bdf52948eb7f3168a1adda59f9a7eb2e1261 --- /dev/null +++ b/hyperparameter/n3/realtabformer/rtf-n3-20260505_024350/rtf_checkpoints/checkpoint-3444/optimizer.pt @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:234e8536406b036f675859cd113d7ef54187c93cd70881cb29230ab5a0cfbecc +size 348453707 diff --git a/hyperparameter/n3/realtabformer/rtf-n3-20260505_024350/rtf_checkpoints/checkpoint-3444/rng_state.pth b/hyperparameter/n3/realtabformer/rtf-n3-20260505_024350/rtf_checkpoints/checkpoint-3444/rng_state.pth new file mode 100644 index 0000000000000000000000000000000000000000..74b6a0808583891a59ce581c0d06d3abea1396be --- /dev/null +++ b/hyperparameter/n3/realtabformer/rtf-n3-20260505_024350/rtf_checkpoints/checkpoint-3444/rng_state.pth @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:eaa626a2f5725309ee6e2a18116c180445793f8ce1d56cc5057d2f75323c881d +size 14645 diff --git a/hyperparameter/n3/realtabformer/rtf-n3-20260505_024350/rtf_checkpoints/checkpoint-3444/scaler.pt b/hyperparameter/n3/realtabformer/rtf-n3-20260505_024350/rtf_checkpoints/checkpoint-3444/scaler.pt new file mode 100644 index 0000000000000000000000000000000000000000..1b39b9035772168e3692e999cefbb28e68a3d2b8 --- /dev/null +++ b/hyperparameter/n3/realtabformer/rtf-n3-20260505_024350/rtf_checkpoints/checkpoint-3444/scaler.pt @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:cd742063009ee981d5848fe9bf7a543d4a8cbaadadaaa45de6889369e1d15c73 +size 1383 diff --git a/hyperparameter/n3/realtabformer/rtf-n3-20260505_024350/rtf_checkpoints/checkpoint-3444/scheduler.pt b/hyperparameter/n3/realtabformer/rtf-n3-20260505_024350/rtf_checkpoints/checkpoint-3444/scheduler.pt new file mode 100644 index 0000000000000000000000000000000000000000..f0ff5fe2a2b566ebf2f2a8f3bcd2cff0ec6bce70 --- /dev/null +++ b/hyperparameter/n3/realtabformer/rtf-n3-20260505_024350/rtf_checkpoints/checkpoint-3444/scheduler.pt @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:ae40b164423944f5dc928a7a76d9b34f4cc26cf011beb852cddc3293602aba52 +size 1465 diff --git a/hyperparameter/n3/realtabformer/rtf-n3-20260505_024350/rtf_checkpoints/checkpoint-3444/trainer_state.json b/hyperparameter/n3/realtabformer/rtf-n3-20260505_024350/rtf_checkpoints/checkpoint-3444/trainer_state.json new file mode 100644 index 0000000000000000000000000000000000000000..d42ee95335843fdcc291bbd8dd44ae3713c28f57 --- /dev/null +++ b/hyperparameter/n3/realtabformer/rtf-n3-20260505_024350/rtf_checkpoints/checkpoint-3444/trainer_state.json @@ -0,0 +1,272 @@ +{ + "best_global_step": null, + "best_metric": null, + "best_model_checkpoint": null, + "epoch": 28.0, + "eval_steps": 100, + "global_step": 3444, + "is_hyper_param_search": false, + "is_local_process_zero": true, + "is_world_process_zero": true, + "log_history": [ + { + "epoch": 0.8163265306122449, + "grad_norm": 0.2064717411994934, + "learning_rate": 4.8658536585365856e-05, + "loss": 1.4757151794433594, + "step": 100 + }, + { + "epoch": 1.6285714285714286, + "grad_norm": 0.19731839001178741, + "learning_rate": 4.730352303523036e-05, + "loss": 0.8808192443847657, + "step": 200 + }, + { + "epoch": 2.440816326530612, + "grad_norm": 0.19233861565589905, + "learning_rate": 4.5948509485094854e-05, + "loss": 0.839388656616211, + "step": 300 + }, + { + "epoch": 3.253061224489796, + "grad_norm": 0.17885564267635345, + "learning_rate": 4.459349593495935e-05, + "loss": 0.820302734375, + "step": 400 + }, + { + "epoch": 4.0653061224489795, + "grad_norm": 0.17553885281085968, + "learning_rate": 4.323848238482385e-05, + "loss": 0.8062593078613282, + "step": 500 + }, + { + "epoch": 4.881632653061224, + "grad_norm": 0.18091662228107452, + "learning_rate": 4.188346883468835e-05, + "loss": 0.7976528167724609, + "step": 600 + }, + { + "epoch": 5.6938775510204085, + "grad_norm": 0.19746601581573486, + "learning_rate": 4.0528455284552845e-05, + "loss": 0.7897119903564453, + "step": 700 + }, + { + "epoch": 6.506122448979592, + "grad_norm": 0.17183995246887207, + "learning_rate": 3.917344173441735e-05, + "loss": 0.7842807006835938, + "step": 800 + }, + { + "epoch": 7.318367346938776, + "grad_norm": 0.16645647585391998, + "learning_rate": 3.7818428184281843e-05, + "loss": 0.7794410705566406, + "step": 900 + }, + { + "epoch": 8.130612244897959, + "grad_norm": 0.1795785129070282, + "learning_rate": 3.646341463414634e-05, + "loss": 0.7734984588623047, + "step": 1000 + }, + { + "epoch": 8.946938775510205, + "grad_norm": 0.17855419218540192, + "learning_rate": 3.510840108401084e-05, + "loss": 0.7694242858886718, + "step": 1100 + }, + { + "epoch": 9.759183673469387, + "grad_norm": 0.17573025822639465, + "learning_rate": 3.375338753387534e-05, + "loss": 0.7633702850341797, + "step": 1200 + }, + { + "epoch": 10.571428571428571, + "grad_norm": 0.17806877195835114, + "learning_rate": 3.239837398373984e-05, + "loss": 0.7575871276855469, + "step": 1300 + }, + { + "epoch": 11.383673469387755, + "grad_norm": 0.1824948489665985, + "learning_rate": 3.104336043360434e-05, + "loss": 0.7541095733642578, + "step": 1400 + }, + { + "epoch": 12.19591836734694, + "grad_norm": 0.18645846843719482, + "learning_rate": 2.9688346883468836e-05, + "loss": 0.7520802307128907, + "step": 1500 + }, + { + "epoch": 13.008163265306122, + "grad_norm": 0.181560218334198, + "learning_rate": 2.8333333333333335e-05, + "loss": 0.7458098602294921, + "step": 1600 + }, + { + "epoch": 13.824489795918367, + "grad_norm": 0.2002779096364975, + "learning_rate": 2.697831978319783e-05, + "loss": 0.7404608917236328, + "step": 1700 + }, + { + "epoch": 14.636734693877552, + "grad_norm": 0.21172501146793365, + "learning_rate": 2.5623306233062334e-05, + "loss": 0.7345017242431641, + "step": 1800 + }, + { + "epoch": 15.448979591836734, + "grad_norm": 0.20012739300727844, + "learning_rate": 2.426829268292683e-05, + "loss": 0.7319316864013672, + "step": 1900 + }, + { + "epoch": 16.261224489795918, + "grad_norm": 0.20821470022201538, + "learning_rate": 2.291327913279133e-05, + "loss": 0.7253572845458984, + "step": 2000 + }, + { + "epoch": 17.073469387755104, + "grad_norm": 0.20355579257011414, + "learning_rate": 2.155826558265583e-05, + "loss": 0.7240914154052734, + "step": 2100 + }, + { + "epoch": 17.889795918367348, + "grad_norm": 0.20155112445354462, + "learning_rate": 2.0203252032520325e-05, + "loss": 0.71626220703125, + "step": 2200 + }, + { + "epoch": 18.70204081632653, + "grad_norm": 0.22867456078529358, + "learning_rate": 1.8848238482384824e-05, + "loss": 0.7096992492675781, + "step": 2300 + }, + { + "epoch": 19.514285714285712, + "grad_norm": 0.20605027675628662, + "learning_rate": 1.7493224932249323e-05, + "loss": 0.7065740203857422, + "step": 2400 + }, + { + "epoch": 20.3265306122449, + "grad_norm": 0.2228800356388092, + "learning_rate": 1.6138211382113823e-05, + "loss": 0.7027207946777344, + "step": 2500 + }, + { + "epoch": 21.13877551020408, + "grad_norm": 0.21112392842769623, + "learning_rate": 1.478319783197832e-05, + "loss": 0.6970812225341797, + "step": 2600 + }, + { + "epoch": 21.955102040816328, + "grad_norm": 0.2215406894683838, + "learning_rate": 1.3428184281842818e-05, + "loss": 0.6916716003417969, + "step": 2700 + }, + { + "epoch": 22.76734693877551, + "grad_norm": 0.23283785581588745, + "learning_rate": 1.2073170731707317e-05, + "loss": 0.68474853515625, + "step": 2800 + }, + { + "epoch": 23.579591836734693, + "grad_norm": 0.24355870485305786, + "learning_rate": 1.0718157181571816e-05, + "loss": 0.682100601196289, + "step": 2900 + }, + { + "epoch": 24.39183673469388, + "grad_norm": 0.23988300561904907, + "learning_rate": 9.363143631436316e-06, + "loss": 0.6743824005126953, + "step": 3000 + }, + { + "epoch": 25.20408163265306, + "grad_norm": 0.23516066372394562, + "learning_rate": 8.008130081300813e-06, + "loss": 0.6735887908935547, + "step": 3100 + }, + { + "epoch": 26.016326530612243, + "grad_norm": 0.2374054342508316, + "learning_rate": 6.653116531165313e-06, + "loss": 0.66905517578125, + "step": 3200 + }, + { + "epoch": 26.83265306122449, + "grad_norm": 0.25294286012649536, + "learning_rate": 5.298102981029811e-06, + "loss": 0.663328857421875, + "step": 3300 + }, + { + "epoch": 27.644897959183673, + "grad_norm": 0.24455367028713226, + "learning_rate": 3.943089430894309e-06, + "loss": 0.661527099609375, + "step": 3400 + } + ], + "logging_steps": 100, + "max_steps": 3690, + "num_input_tokens_seen": 0, + "num_train_epochs": 30, + "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": 1623620435705856.0, + "train_batch_size": 8, + "trial_name": null, + "trial_params": null +} diff --git a/hyperparameter/n3/realtabformer/rtf-n3-20260505_024350/rtf_checkpoints/checkpoint-3444/training_args.bin b/hyperparameter/n3/realtabformer/rtf-n3-20260505_024350/rtf_checkpoints/checkpoint-3444/training_args.bin new file mode 100644 index 0000000000000000000000000000000000000000..3d8b32516bfaeaa087fca28752b0d5ac8a4f9a32 --- /dev/null +++ b/hyperparameter/n3/realtabformer/rtf-n3-20260505_024350/rtf_checkpoints/checkpoint-3444/training_args.bin @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:0d3dc95355536f0383a0f823e8f277b91339a18334832f20d708fd987d139c82 +size 5201 diff --git a/hyperparameter/n3/realtabformer/rtf-n3-20260505_024350/rtf_checkpoints/checkpoint-3500/config.json b/hyperparameter/n3/realtabformer/rtf-n3-20260505_024350/rtf_checkpoints/checkpoint-3500/config.json new file mode 100644 index 0000000000000000000000000000000000000000..1876b75d3abc713ca867fe8e643ea273dc9cea87 --- /dev/null +++ b/hyperparameter/n3/realtabformer/rtf-n3-20260505_024350/rtf_checkpoints/checkpoint-3500/config.json @@ -0,0 +1,34 @@ +{ + "activation_function": "gelu_new", + "add_cross_attention": false, + "architectures": [ + "GPT2LMHeadModel" + ], + "attn_pdrop": 0.1, + "bos_token_id": 5, + "dtype": "float32", + "embd_pdrop": 0.1, + "eos_token_id": 6, + "initializer_range": 0.02, + "layer_norm_epsilon": 1e-05, + "model_type": "gpt2", + "n_embd": 768, + "n_head": 12, + "n_inner": null, + "n_layer": 6, + "n_positions": 1024, + "pad_token_id": null, + "reorder_and_upcast_attn": false, + "resid_pdrop": 0.1, + "scale_attn_by_inverse_layer_idx": false, + "scale_attn_weights": true, + "summary_activation": null, + "summary_first_dropout": 0.1, + "summary_proj_to_labels": true, + "summary_type": "cls_index", + "summary_use_proj": true, + "tie_word_embeddings": true, + "transformers_version": "5.5.3", + "use_cache": false, + "vocab_size": 304 +} diff --git a/hyperparameter/n3/realtabformer/rtf-n3-20260505_024350/rtf_checkpoints/checkpoint-3500/generation_config.json b/hyperparameter/n3/realtabformer/rtf-n3-20260505_024350/rtf_checkpoints/checkpoint-3500/generation_config.json new file mode 100644 index 0000000000000000000000000000000000000000..ffe89567780e75b5c22eade9be971483b9618f39 --- /dev/null +++ b/hyperparameter/n3/realtabformer/rtf-n3-20260505_024350/rtf_checkpoints/checkpoint-3500/generation_config.json @@ -0,0 +1,9 @@ +{ + "_from_model_config": true, + "bos_token_id": 5, + "eos_token_id": 6, + "output_attentions": false, + "output_hidden_states": false, + "transformers_version": "5.5.3", + "use_cache": true +} diff --git a/hyperparameter/n3/realtabformer/rtf-n3-20260505_024350/rtf_checkpoints/checkpoint-3500/model.safetensors b/hyperparameter/n3/realtabformer/rtf-n3-20260505_024350/rtf_checkpoints/checkpoint-3500/model.safetensors new file mode 100644 index 0000000000000000000000000000000000000000..731b17ca7f8e5feb12833ecd65f3f92ca061bdd0 --- /dev/null +++ b/hyperparameter/n3/realtabformer/rtf-n3-20260505_024350/rtf_checkpoints/checkpoint-3500/model.safetensors @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:4aeb76a717ee18a023be850a24a2a4d510269327bb7db8dabd84fd8846471cae +size 174202312 diff --git a/hyperparameter/n3/realtabformer/rtf-n3-20260505_024350/rtf_checkpoints/checkpoint-3500/optimizer.pt b/hyperparameter/n3/realtabformer/rtf-n3-20260505_024350/rtf_checkpoints/checkpoint-3500/optimizer.pt new file mode 100644 index 0000000000000000000000000000000000000000..5fdff5e7eff69cbd99f82ec17ee25a39807d7523 --- /dev/null +++ b/hyperparameter/n3/realtabformer/rtf-n3-20260505_024350/rtf_checkpoints/checkpoint-3500/optimizer.pt @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:aa4b0dc2689bb9f9461cbf904eab0d6f8076fd90d3d19f984195a5c9d15aa75e +size 348453707 diff --git a/hyperparameter/n3/realtabformer/rtf-n3-20260505_024350/rtf_checkpoints/checkpoint-3500/rng_state.pth b/hyperparameter/n3/realtabformer/rtf-n3-20260505_024350/rtf_checkpoints/checkpoint-3500/rng_state.pth new file mode 100644 index 0000000000000000000000000000000000000000..b45679cdd07c6a496cb97bbb48c7b85c2c49314c --- /dev/null +++ b/hyperparameter/n3/realtabformer/rtf-n3-20260505_024350/rtf_checkpoints/checkpoint-3500/rng_state.pth @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:e497028b706073c2474b829ef70d8798be54aa0189440da379f0fe7e2b3399fc +size 14645 diff --git a/hyperparameter/n3/realtabformer/rtf-n3-20260505_024350/rtf_checkpoints/checkpoint-3500/scaler.pt b/hyperparameter/n3/realtabformer/rtf-n3-20260505_024350/rtf_checkpoints/checkpoint-3500/scaler.pt new file mode 100644 index 0000000000000000000000000000000000000000..ef467e5c4906759d9aacdeed22ae1961557aa5a1 --- /dev/null +++ b/hyperparameter/n3/realtabformer/rtf-n3-20260505_024350/rtf_checkpoints/checkpoint-3500/scaler.pt @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:ac1b9358ab1cb9acff90f4d1d692ac08bbdb1986a66544aed9f6fe9b801b17b3 +size 1383 diff --git a/hyperparameter/n3/realtabformer/rtf-n3-20260505_024350/rtf_checkpoints/checkpoint-3500/scheduler.pt b/hyperparameter/n3/realtabformer/rtf-n3-20260505_024350/rtf_checkpoints/checkpoint-3500/scheduler.pt new file mode 100644 index 0000000000000000000000000000000000000000..b27d001fc85dff24a24436e0b37703492bfc45f9 --- /dev/null +++ b/hyperparameter/n3/realtabformer/rtf-n3-20260505_024350/rtf_checkpoints/checkpoint-3500/scheduler.pt @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:d1f3a28f788d56dc8d08c0b1c818c15b1d7f3796e1340a4a3627abd50ece0d72 +size 1465 diff --git a/hyperparameter/n3/realtabformer/rtf-n3-20260505_024350/rtf_checkpoints/checkpoint-3500/trainer_state.json b/hyperparameter/n3/realtabformer/rtf-n3-20260505_024350/rtf_checkpoints/checkpoint-3500/trainer_state.json new file mode 100644 index 0000000000000000000000000000000000000000..69f30025b4bed059ee3924d0b96cd9f674d97b00 --- /dev/null +++ b/hyperparameter/n3/realtabformer/rtf-n3-20260505_024350/rtf_checkpoints/checkpoint-3500/trainer_state.json @@ -0,0 +1,279 @@ +{ + "best_global_step": null, + "best_metric": null, + "best_model_checkpoint": null, + "epoch": 28.457142857142856, + "eval_steps": 100, + "global_step": 3500, + "is_hyper_param_search": false, + "is_local_process_zero": true, + "is_world_process_zero": true, + "log_history": [ + { + "epoch": 0.8163265306122449, + "grad_norm": 0.2064717411994934, + "learning_rate": 4.8658536585365856e-05, + "loss": 1.4757151794433594, + "step": 100 + }, + { + "epoch": 1.6285714285714286, + "grad_norm": 0.19731839001178741, + "learning_rate": 4.730352303523036e-05, + "loss": 0.8808192443847657, + "step": 200 + }, + { + "epoch": 2.440816326530612, + "grad_norm": 0.19233861565589905, + "learning_rate": 4.5948509485094854e-05, + "loss": 0.839388656616211, + "step": 300 + }, + { + "epoch": 3.253061224489796, + "grad_norm": 0.17885564267635345, + "learning_rate": 4.459349593495935e-05, + "loss": 0.820302734375, + "step": 400 + }, + { + "epoch": 4.0653061224489795, + "grad_norm": 0.17553885281085968, + "learning_rate": 4.323848238482385e-05, + "loss": 0.8062593078613282, + "step": 500 + }, + { + "epoch": 4.881632653061224, + "grad_norm": 0.18091662228107452, + "learning_rate": 4.188346883468835e-05, + "loss": 0.7976528167724609, + "step": 600 + }, + { + "epoch": 5.6938775510204085, + "grad_norm": 0.19746601581573486, + "learning_rate": 4.0528455284552845e-05, + "loss": 0.7897119903564453, + "step": 700 + }, + { + "epoch": 6.506122448979592, + "grad_norm": 0.17183995246887207, + "learning_rate": 3.917344173441735e-05, + "loss": 0.7842807006835938, + "step": 800 + }, + { + "epoch": 7.318367346938776, + "grad_norm": 0.16645647585391998, + "learning_rate": 3.7818428184281843e-05, + "loss": 0.7794410705566406, + "step": 900 + }, + { + "epoch": 8.130612244897959, + "grad_norm": 0.1795785129070282, + "learning_rate": 3.646341463414634e-05, + "loss": 0.7734984588623047, + "step": 1000 + }, + { + "epoch": 8.946938775510205, + "grad_norm": 0.17855419218540192, + "learning_rate": 3.510840108401084e-05, + "loss": 0.7694242858886718, + "step": 1100 + }, + { + "epoch": 9.759183673469387, + "grad_norm": 0.17573025822639465, + "learning_rate": 3.375338753387534e-05, + "loss": 0.7633702850341797, + "step": 1200 + }, + { + "epoch": 10.571428571428571, + "grad_norm": 0.17806877195835114, + "learning_rate": 3.239837398373984e-05, + "loss": 0.7575871276855469, + "step": 1300 + }, + { + "epoch": 11.383673469387755, + "grad_norm": 0.1824948489665985, + "learning_rate": 3.104336043360434e-05, + "loss": 0.7541095733642578, + "step": 1400 + }, + { + "epoch": 12.19591836734694, + "grad_norm": 0.18645846843719482, + "learning_rate": 2.9688346883468836e-05, + "loss": 0.7520802307128907, + "step": 1500 + }, + { + "epoch": 13.008163265306122, + "grad_norm": 0.181560218334198, + "learning_rate": 2.8333333333333335e-05, + "loss": 0.7458098602294921, + "step": 1600 + }, + { + "epoch": 13.824489795918367, + "grad_norm": 0.2002779096364975, + "learning_rate": 2.697831978319783e-05, + "loss": 0.7404608917236328, + "step": 1700 + }, + { + "epoch": 14.636734693877552, + "grad_norm": 0.21172501146793365, + "learning_rate": 2.5623306233062334e-05, + "loss": 0.7345017242431641, + "step": 1800 + }, + { + "epoch": 15.448979591836734, + "grad_norm": 0.20012739300727844, + "learning_rate": 2.426829268292683e-05, + "loss": 0.7319316864013672, + "step": 1900 + }, + { + "epoch": 16.261224489795918, + "grad_norm": 0.20821470022201538, + "learning_rate": 2.291327913279133e-05, + "loss": 0.7253572845458984, + "step": 2000 + }, + { + "epoch": 17.073469387755104, + "grad_norm": 0.20355579257011414, + "learning_rate": 2.155826558265583e-05, + "loss": 0.7240914154052734, + "step": 2100 + }, + { + "epoch": 17.889795918367348, + "grad_norm": 0.20155112445354462, + "learning_rate": 2.0203252032520325e-05, + "loss": 0.71626220703125, + "step": 2200 + }, + { + "epoch": 18.70204081632653, + "grad_norm": 0.22867456078529358, + "learning_rate": 1.8848238482384824e-05, + "loss": 0.7096992492675781, + "step": 2300 + }, + { + "epoch": 19.514285714285712, + "grad_norm": 0.20605027675628662, + "learning_rate": 1.7493224932249323e-05, + "loss": 0.7065740203857422, + "step": 2400 + }, + { + "epoch": 20.3265306122449, + "grad_norm": 0.2228800356388092, + "learning_rate": 1.6138211382113823e-05, + "loss": 0.7027207946777344, + "step": 2500 + }, + { + "epoch": 21.13877551020408, + "grad_norm": 0.21112392842769623, + "learning_rate": 1.478319783197832e-05, + "loss": 0.6970812225341797, + "step": 2600 + }, + { + "epoch": 21.955102040816328, + "grad_norm": 0.2215406894683838, + "learning_rate": 1.3428184281842818e-05, + "loss": 0.6916716003417969, + "step": 2700 + }, + { + "epoch": 22.76734693877551, + "grad_norm": 0.23283785581588745, + "learning_rate": 1.2073170731707317e-05, + "loss": 0.68474853515625, + "step": 2800 + }, + { + "epoch": 23.579591836734693, + "grad_norm": 0.24355870485305786, + "learning_rate": 1.0718157181571816e-05, + "loss": 0.682100601196289, + "step": 2900 + }, + { + "epoch": 24.39183673469388, + "grad_norm": 0.23988300561904907, + "learning_rate": 9.363143631436316e-06, + "loss": 0.6743824005126953, + "step": 3000 + }, + { + "epoch": 25.20408163265306, + "grad_norm": 0.23516066372394562, + "learning_rate": 8.008130081300813e-06, + "loss": 0.6735887908935547, + "step": 3100 + }, + { + "epoch": 26.016326530612243, + "grad_norm": 0.2374054342508316, + "learning_rate": 6.653116531165313e-06, + "loss": 0.66905517578125, + "step": 3200 + }, + { + "epoch": 26.83265306122449, + "grad_norm": 0.25294286012649536, + "learning_rate": 5.298102981029811e-06, + "loss": 0.663328857421875, + "step": 3300 + }, + { + "epoch": 27.644897959183673, + "grad_norm": 0.24455367028713226, + "learning_rate": 3.943089430894309e-06, + "loss": 0.661527099609375, + "step": 3400 + }, + { + "epoch": 28.457142857142856, + "grad_norm": 0.2514946758747101, + "learning_rate": 2.5880758807588077e-06, + "loss": 0.6577124786376953, + "step": 3500 + } + ], + "logging_steps": 100, + "max_steps": 3690, + "num_input_tokens_seen": 0, + "num_train_epochs": 30, + "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": 1650142055890944.0, + "train_batch_size": 8, + "trial_name": null, + "trial_params": null +} diff --git a/hyperparameter/n3/realtabformer/rtf-n3-20260505_024350/rtf_checkpoints/checkpoint-3500/training_args.bin b/hyperparameter/n3/realtabformer/rtf-n3-20260505_024350/rtf_checkpoints/checkpoint-3500/training_args.bin new file mode 100644 index 0000000000000000000000000000000000000000..3d8b32516bfaeaa087fca28752b0d5ac8a4f9a32 --- /dev/null +++ b/hyperparameter/n3/realtabformer/rtf-n3-20260505_024350/rtf_checkpoints/checkpoint-3500/training_args.bin @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:0d3dc95355536f0383a0f823e8f277b91339a18334832f20d708fd987d139c82 +size 5201 diff --git a/hyperparameter/n3/realtabformer/rtf-n3-20260505_024350/rtf_checkpoints/checkpoint-3567/config.json b/hyperparameter/n3/realtabformer/rtf-n3-20260505_024350/rtf_checkpoints/checkpoint-3567/config.json new file mode 100644 index 0000000000000000000000000000000000000000..1876b75d3abc713ca867fe8e643ea273dc9cea87 --- /dev/null +++ b/hyperparameter/n3/realtabformer/rtf-n3-20260505_024350/rtf_checkpoints/checkpoint-3567/config.json @@ -0,0 +1,34 @@ +{ + "activation_function": "gelu_new", + "add_cross_attention": false, + "architectures": [ + "GPT2LMHeadModel" + ], + "attn_pdrop": 0.1, + "bos_token_id": 5, + "dtype": "float32", + "embd_pdrop": 0.1, + "eos_token_id": 6, + "initializer_range": 0.02, + "layer_norm_epsilon": 1e-05, + "model_type": "gpt2", + "n_embd": 768, + "n_head": 12, + "n_inner": null, + "n_layer": 6, + "n_positions": 1024, + "pad_token_id": null, + "reorder_and_upcast_attn": false, + "resid_pdrop": 0.1, + "scale_attn_by_inverse_layer_idx": false, + "scale_attn_weights": true, + "summary_activation": null, + "summary_first_dropout": 0.1, + "summary_proj_to_labels": true, + "summary_type": "cls_index", + "summary_use_proj": true, + "tie_word_embeddings": true, + "transformers_version": "5.5.3", + "use_cache": false, + "vocab_size": 304 +} diff --git a/hyperparameter/n3/realtabformer/rtf-n3-20260505_024350/rtf_checkpoints/checkpoint-3567/generation_config.json b/hyperparameter/n3/realtabformer/rtf-n3-20260505_024350/rtf_checkpoints/checkpoint-3567/generation_config.json new file mode 100644 index 0000000000000000000000000000000000000000..ffe89567780e75b5c22eade9be971483b9618f39 --- /dev/null +++ b/hyperparameter/n3/realtabformer/rtf-n3-20260505_024350/rtf_checkpoints/checkpoint-3567/generation_config.json @@ -0,0 +1,9 @@ +{ + "_from_model_config": true, + "bos_token_id": 5, + "eos_token_id": 6, + "output_attentions": false, + "output_hidden_states": false, + "transformers_version": "5.5.3", + "use_cache": true +} diff --git a/hyperparameter/n3/realtabformer/rtf-n3-20260505_024350/rtf_checkpoints/checkpoint-3567/model.safetensors b/hyperparameter/n3/realtabformer/rtf-n3-20260505_024350/rtf_checkpoints/checkpoint-3567/model.safetensors new file mode 100644 index 0000000000000000000000000000000000000000..5550f0fb95ff5587f5ad7933f548b6d8aabf313d --- /dev/null +++ b/hyperparameter/n3/realtabformer/rtf-n3-20260505_024350/rtf_checkpoints/checkpoint-3567/model.safetensors @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:42cfd45dc3d81877f13d400ecdcb5fda4fa504bb377b0916d8c0c751119cf8e2 +size 174202312 diff --git a/hyperparameter/n3/realtabformer/rtf-n3-20260505_024350/rtf_checkpoints/checkpoint-3567/optimizer.pt b/hyperparameter/n3/realtabformer/rtf-n3-20260505_024350/rtf_checkpoints/checkpoint-3567/optimizer.pt new file mode 100644 index 0000000000000000000000000000000000000000..502df8c6ca636fdc5df42e344b02d3c6f6d39702 --- /dev/null +++ b/hyperparameter/n3/realtabformer/rtf-n3-20260505_024350/rtf_checkpoints/checkpoint-3567/optimizer.pt @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:f16d8157667e4546e9ab7a05dae9263ec32b96171217f874925abdaae200a8ff +size 348453707 diff --git a/hyperparameter/n3/realtabformer/rtf-n3-20260505_024350/rtf_checkpoints/checkpoint-3567/rng_state.pth b/hyperparameter/n3/realtabformer/rtf-n3-20260505_024350/rtf_checkpoints/checkpoint-3567/rng_state.pth new file mode 100644 index 0000000000000000000000000000000000000000..2db2faf9e91d88ea2ad4c116e91f3dd0776cf83c --- /dev/null +++ b/hyperparameter/n3/realtabformer/rtf-n3-20260505_024350/rtf_checkpoints/checkpoint-3567/rng_state.pth @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:5eafaa5a64442f4c419f098382b441c5d7f9789b93a25fea461e409e685032f5 +size 14645 diff --git a/hyperparameter/n3/realtabformer/rtf-n3-20260505_024350/rtf_checkpoints/checkpoint-3567/scaler.pt b/hyperparameter/n3/realtabformer/rtf-n3-20260505_024350/rtf_checkpoints/checkpoint-3567/scaler.pt new file mode 100644 index 0000000000000000000000000000000000000000..8c71ff0f520117d46f04fc22bf209c1e0dcb73b7 --- /dev/null +++ b/hyperparameter/n3/realtabformer/rtf-n3-20260505_024350/rtf_checkpoints/checkpoint-3567/scaler.pt @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:40ab342bbbc9c5868cbe7547727ebb4a5e05f099ac915357ab036200f8f59bf9 +size 1383 diff --git a/hyperparameter/n3/realtabformer/rtf-n3-20260505_024350/rtf_checkpoints/checkpoint-3567/scheduler.pt b/hyperparameter/n3/realtabformer/rtf-n3-20260505_024350/rtf_checkpoints/checkpoint-3567/scheduler.pt new file mode 100644 index 0000000000000000000000000000000000000000..87cb88dc09f04b14eb954a439eec40354fb347a9 --- /dev/null +++ b/hyperparameter/n3/realtabformer/rtf-n3-20260505_024350/rtf_checkpoints/checkpoint-3567/scheduler.pt @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:50d23f52fdcf923102a2233a132f899b66308043ab7251ad713b50f3dcc8292c +size 1465 diff --git a/hyperparameter/n3/realtabformer/rtf-n3-20260505_024350/rtf_checkpoints/checkpoint-3567/trainer_state.json b/hyperparameter/n3/realtabformer/rtf-n3-20260505_024350/rtf_checkpoints/checkpoint-3567/trainer_state.json new file mode 100644 index 0000000000000000000000000000000000000000..8f60fa73452ce76c039288b7be4dc9f88864e092 --- /dev/null +++ b/hyperparameter/n3/realtabformer/rtf-n3-20260505_024350/rtf_checkpoints/checkpoint-3567/trainer_state.json @@ -0,0 +1,279 @@ +{ + "best_global_step": null, + "best_metric": null, + "best_model_checkpoint": null, + "epoch": 29.0, + "eval_steps": 100, + "global_step": 3567, + "is_hyper_param_search": false, + "is_local_process_zero": true, + "is_world_process_zero": true, + "log_history": [ + { + "epoch": 0.8163265306122449, + "grad_norm": 0.2064717411994934, + "learning_rate": 4.8658536585365856e-05, + "loss": 1.4757151794433594, + "step": 100 + }, + { + "epoch": 1.6285714285714286, + "grad_norm": 0.19731839001178741, + "learning_rate": 4.730352303523036e-05, + "loss": 0.8808192443847657, + "step": 200 + }, + { + "epoch": 2.440816326530612, + "grad_norm": 0.19233861565589905, + "learning_rate": 4.5948509485094854e-05, + "loss": 0.839388656616211, + "step": 300 + }, + { + "epoch": 3.253061224489796, + "grad_norm": 0.17885564267635345, + "learning_rate": 4.459349593495935e-05, + "loss": 0.820302734375, + "step": 400 + }, + { + "epoch": 4.0653061224489795, + "grad_norm": 0.17553885281085968, + "learning_rate": 4.323848238482385e-05, + "loss": 0.8062593078613282, + "step": 500 + }, + { + "epoch": 4.881632653061224, + "grad_norm": 0.18091662228107452, + "learning_rate": 4.188346883468835e-05, + "loss": 0.7976528167724609, + "step": 600 + }, + { + "epoch": 5.6938775510204085, + "grad_norm": 0.19746601581573486, + "learning_rate": 4.0528455284552845e-05, + "loss": 0.7897119903564453, + "step": 700 + }, + { + "epoch": 6.506122448979592, + "grad_norm": 0.17183995246887207, + "learning_rate": 3.917344173441735e-05, + "loss": 0.7842807006835938, + "step": 800 + }, + { + "epoch": 7.318367346938776, + "grad_norm": 0.16645647585391998, + "learning_rate": 3.7818428184281843e-05, + "loss": 0.7794410705566406, + "step": 900 + }, + { + "epoch": 8.130612244897959, + "grad_norm": 0.1795785129070282, + "learning_rate": 3.646341463414634e-05, + "loss": 0.7734984588623047, + "step": 1000 + }, + { + "epoch": 8.946938775510205, + "grad_norm": 0.17855419218540192, + "learning_rate": 3.510840108401084e-05, + "loss": 0.7694242858886718, + "step": 1100 + }, + { + "epoch": 9.759183673469387, + "grad_norm": 0.17573025822639465, + "learning_rate": 3.375338753387534e-05, + "loss": 0.7633702850341797, + "step": 1200 + }, + { + "epoch": 10.571428571428571, + "grad_norm": 0.17806877195835114, + "learning_rate": 3.239837398373984e-05, + "loss": 0.7575871276855469, + "step": 1300 + }, + { + "epoch": 11.383673469387755, + "grad_norm": 0.1824948489665985, + "learning_rate": 3.104336043360434e-05, + "loss": 0.7541095733642578, + "step": 1400 + }, + { + "epoch": 12.19591836734694, + "grad_norm": 0.18645846843719482, + "learning_rate": 2.9688346883468836e-05, + "loss": 0.7520802307128907, + "step": 1500 + }, + { + "epoch": 13.008163265306122, + "grad_norm": 0.181560218334198, + "learning_rate": 2.8333333333333335e-05, + "loss": 0.7458098602294921, + "step": 1600 + }, + { + "epoch": 13.824489795918367, + "grad_norm": 0.2002779096364975, + "learning_rate": 2.697831978319783e-05, + "loss": 0.7404608917236328, + "step": 1700 + }, + { + "epoch": 14.636734693877552, + "grad_norm": 0.21172501146793365, + "learning_rate": 2.5623306233062334e-05, + "loss": 0.7345017242431641, + "step": 1800 + }, + { + "epoch": 15.448979591836734, + "grad_norm": 0.20012739300727844, + "learning_rate": 2.426829268292683e-05, + "loss": 0.7319316864013672, + "step": 1900 + }, + { + "epoch": 16.261224489795918, + "grad_norm": 0.20821470022201538, + "learning_rate": 2.291327913279133e-05, + "loss": 0.7253572845458984, + "step": 2000 + }, + { + "epoch": 17.073469387755104, + "grad_norm": 0.20355579257011414, + "learning_rate": 2.155826558265583e-05, + "loss": 0.7240914154052734, + "step": 2100 + }, + { + "epoch": 17.889795918367348, + "grad_norm": 0.20155112445354462, + "learning_rate": 2.0203252032520325e-05, + "loss": 0.71626220703125, + "step": 2200 + }, + { + "epoch": 18.70204081632653, + "grad_norm": 0.22867456078529358, + "learning_rate": 1.8848238482384824e-05, + "loss": 0.7096992492675781, + "step": 2300 + }, + { + "epoch": 19.514285714285712, + "grad_norm": 0.20605027675628662, + "learning_rate": 1.7493224932249323e-05, + "loss": 0.7065740203857422, + "step": 2400 + }, + { + "epoch": 20.3265306122449, + "grad_norm": 0.2228800356388092, + "learning_rate": 1.6138211382113823e-05, + "loss": 0.7027207946777344, + "step": 2500 + }, + { + "epoch": 21.13877551020408, + "grad_norm": 0.21112392842769623, + "learning_rate": 1.478319783197832e-05, + "loss": 0.6970812225341797, + "step": 2600 + }, + { + "epoch": 21.955102040816328, + "grad_norm": 0.2215406894683838, + "learning_rate": 1.3428184281842818e-05, + "loss": 0.6916716003417969, + "step": 2700 + }, + { + "epoch": 22.76734693877551, + "grad_norm": 0.23283785581588745, + "learning_rate": 1.2073170731707317e-05, + "loss": 0.68474853515625, + "step": 2800 + }, + { + "epoch": 23.579591836734693, + "grad_norm": 0.24355870485305786, + "learning_rate": 1.0718157181571816e-05, + "loss": 0.682100601196289, + "step": 2900 + }, + { + "epoch": 24.39183673469388, + "grad_norm": 0.23988300561904907, + "learning_rate": 9.363143631436316e-06, + "loss": 0.6743824005126953, + "step": 3000 + }, + { + "epoch": 25.20408163265306, + "grad_norm": 0.23516066372394562, + "learning_rate": 8.008130081300813e-06, + "loss": 0.6735887908935547, + "step": 3100 + }, + { + "epoch": 26.016326530612243, + "grad_norm": 0.2374054342508316, + "learning_rate": 6.653116531165313e-06, + "loss": 0.66905517578125, + "step": 3200 + }, + { + "epoch": 26.83265306122449, + "grad_norm": 0.25294286012649536, + "learning_rate": 5.298102981029811e-06, + "loss": 0.663328857421875, + "step": 3300 + }, + { + "epoch": 27.644897959183673, + "grad_norm": 0.24455367028713226, + "learning_rate": 3.943089430894309e-06, + "loss": 0.661527099609375, + "step": 3400 + }, + { + "epoch": 28.457142857142856, + "grad_norm": 0.2514946758747101, + "learning_rate": 2.5880758807588077e-06, + "loss": 0.6577124786376953, + "step": 3500 + } + ], + "logging_steps": 100, + "max_steps": 3690, + "num_input_tokens_seen": 0, + "num_train_epochs": 30, + "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": 1681606879838208.0, + "train_batch_size": 8, + "trial_name": null, + "trial_params": null +} diff --git a/hyperparameter/n3/realtabformer/rtf-n3-20260505_024350/rtf_checkpoints/checkpoint-3567/training_args.bin b/hyperparameter/n3/realtabformer/rtf-n3-20260505_024350/rtf_checkpoints/checkpoint-3567/training_args.bin new file mode 100644 index 0000000000000000000000000000000000000000..3d8b32516bfaeaa087fca28752b0d5ac8a4f9a32 --- /dev/null +++ b/hyperparameter/n3/realtabformer/rtf-n3-20260505_024350/rtf_checkpoints/checkpoint-3567/training_args.bin @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:0d3dc95355536f0383a0f823e8f277b91339a18334832f20d708fd987d139c82 +size 5201 diff --git a/hyperparameter/n3/realtabformer/rtf-n3-20260505_024350/rtf_checkpoints/checkpoint-3600/config.json b/hyperparameter/n3/realtabformer/rtf-n3-20260505_024350/rtf_checkpoints/checkpoint-3600/config.json new file mode 100644 index 0000000000000000000000000000000000000000..1876b75d3abc713ca867fe8e643ea273dc9cea87 --- /dev/null +++ b/hyperparameter/n3/realtabformer/rtf-n3-20260505_024350/rtf_checkpoints/checkpoint-3600/config.json @@ -0,0 +1,34 @@ +{ + "activation_function": "gelu_new", + "add_cross_attention": false, + "architectures": [ + "GPT2LMHeadModel" + ], + "attn_pdrop": 0.1, + "bos_token_id": 5, + "dtype": "float32", + "embd_pdrop": 0.1, + "eos_token_id": 6, + "initializer_range": 0.02, + "layer_norm_epsilon": 1e-05, + "model_type": "gpt2", + "n_embd": 768, + "n_head": 12, + "n_inner": null, + "n_layer": 6, + "n_positions": 1024, + "pad_token_id": null, + "reorder_and_upcast_attn": false, + "resid_pdrop": 0.1, + "scale_attn_by_inverse_layer_idx": false, + "scale_attn_weights": true, + "summary_activation": null, + "summary_first_dropout": 0.1, + "summary_proj_to_labels": true, + "summary_type": "cls_index", + "summary_use_proj": true, + "tie_word_embeddings": true, + "transformers_version": "5.5.3", + "use_cache": false, + "vocab_size": 304 +} diff --git a/hyperparameter/n3/realtabformer/rtf-n3-20260505_024350/rtf_checkpoints/checkpoint-3600/generation_config.json b/hyperparameter/n3/realtabformer/rtf-n3-20260505_024350/rtf_checkpoints/checkpoint-3600/generation_config.json new file mode 100644 index 0000000000000000000000000000000000000000..ffe89567780e75b5c22eade9be971483b9618f39 --- /dev/null +++ b/hyperparameter/n3/realtabformer/rtf-n3-20260505_024350/rtf_checkpoints/checkpoint-3600/generation_config.json @@ -0,0 +1,9 @@ +{ + "_from_model_config": true, + "bos_token_id": 5, + "eos_token_id": 6, + "output_attentions": false, + "output_hidden_states": false, + "transformers_version": "5.5.3", + "use_cache": true +} diff --git a/hyperparameter/n3/realtabformer/rtf-n3-20260505_024350/rtf_checkpoints/checkpoint-3600/model.safetensors b/hyperparameter/n3/realtabformer/rtf-n3-20260505_024350/rtf_checkpoints/checkpoint-3600/model.safetensors new file mode 100644 index 0000000000000000000000000000000000000000..bf9ffbbdab3261423301d7610a868fc76044bb80 --- /dev/null +++ b/hyperparameter/n3/realtabformer/rtf-n3-20260505_024350/rtf_checkpoints/checkpoint-3600/model.safetensors @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:aa4d7c5a80078e51b2f68b865960b80e68d2fa6c937729d7ef94a5de59973e54 +size 174202312 diff --git a/hyperparameter/n3/realtabformer/rtf-n3-20260505_024350/rtf_checkpoints/checkpoint-3600/optimizer.pt b/hyperparameter/n3/realtabformer/rtf-n3-20260505_024350/rtf_checkpoints/checkpoint-3600/optimizer.pt new file mode 100644 index 0000000000000000000000000000000000000000..770d77a0570d812f1d2d101e2f187435d6edb39e --- /dev/null +++ b/hyperparameter/n3/realtabformer/rtf-n3-20260505_024350/rtf_checkpoints/checkpoint-3600/optimizer.pt @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:875ce1e0cc76e09605ed7123db79128811f47db3eee3ae12e41eed245f30788a +size 348453707 diff --git a/hyperparameter/n3/realtabformer/rtf-n3-20260505_024350/rtf_checkpoints/checkpoint-3600/rng_state.pth b/hyperparameter/n3/realtabformer/rtf-n3-20260505_024350/rtf_checkpoints/checkpoint-3600/rng_state.pth new file mode 100644 index 0000000000000000000000000000000000000000..e3158ae5e1f5144480e3e521ebdc4ba879732aa6 --- /dev/null +++ b/hyperparameter/n3/realtabformer/rtf-n3-20260505_024350/rtf_checkpoints/checkpoint-3600/rng_state.pth @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:7ddb659f5ff7853c9c61535ca68f8f580e32a058f182ebf0532eee331e07f089 +size 14645 diff --git a/hyperparameter/n3/realtabformer/rtf-n3-20260505_024350/rtf_checkpoints/checkpoint-3600/scaler.pt b/hyperparameter/n3/realtabformer/rtf-n3-20260505_024350/rtf_checkpoints/checkpoint-3600/scaler.pt new file mode 100644 index 0000000000000000000000000000000000000000..db85d2362e55f97838299aab5d5df0133f553828 --- /dev/null +++ b/hyperparameter/n3/realtabformer/rtf-n3-20260505_024350/rtf_checkpoints/checkpoint-3600/scaler.pt @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:7788c7cc60bd991bb584c9a8631c7010707cb818c6f2829b9625a72fb3ec1a89 +size 1383 diff --git a/hyperparameter/n3/realtabformer/rtf-n3-20260505_024350/rtf_checkpoints/checkpoint-3600/scheduler.pt b/hyperparameter/n3/realtabformer/rtf-n3-20260505_024350/rtf_checkpoints/checkpoint-3600/scheduler.pt new file mode 100644 index 0000000000000000000000000000000000000000..3e843a9c2df4afd4320fd53f40bfc282fd2f6ce4 --- /dev/null +++ b/hyperparameter/n3/realtabformer/rtf-n3-20260505_024350/rtf_checkpoints/checkpoint-3600/scheduler.pt @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:e48ea7686aa8fe2c1819cbf16c7fb30f47ed295049ebbc2674c0df95814780f4 +size 1465 diff --git a/hyperparameter/n3/realtabformer/rtf-n3-20260505_024350/rtf_checkpoints/checkpoint-3600/trainer_state.json b/hyperparameter/n3/realtabformer/rtf-n3-20260505_024350/rtf_checkpoints/checkpoint-3600/trainer_state.json new file mode 100644 index 0000000000000000000000000000000000000000..e37798c55bb4bfc6c719d8ac3cd64ae96d495333 --- /dev/null +++ b/hyperparameter/n3/realtabformer/rtf-n3-20260505_024350/rtf_checkpoints/checkpoint-3600/trainer_state.json @@ -0,0 +1,286 @@ +{ + "best_global_step": null, + "best_metric": null, + "best_model_checkpoint": null, + "epoch": 29.26938775510204, + "eval_steps": 100, + "global_step": 3600, + "is_hyper_param_search": false, + "is_local_process_zero": true, + "is_world_process_zero": true, + "log_history": [ + { + "epoch": 0.8163265306122449, + "grad_norm": 0.2064717411994934, + "learning_rate": 4.8658536585365856e-05, + "loss": 1.4757151794433594, + "step": 100 + }, + { + "epoch": 1.6285714285714286, + "grad_norm": 0.19731839001178741, + "learning_rate": 4.730352303523036e-05, + "loss": 0.8808192443847657, + "step": 200 + }, + { + "epoch": 2.440816326530612, + "grad_norm": 0.19233861565589905, + "learning_rate": 4.5948509485094854e-05, + "loss": 0.839388656616211, + "step": 300 + }, + { + "epoch": 3.253061224489796, + "grad_norm": 0.17885564267635345, + "learning_rate": 4.459349593495935e-05, + "loss": 0.820302734375, + "step": 400 + }, + { + "epoch": 4.0653061224489795, + "grad_norm": 0.17553885281085968, + "learning_rate": 4.323848238482385e-05, + "loss": 0.8062593078613282, + "step": 500 + }, + { + "epoch": 4.881632653061224, + "grad_norm": 0.18091662228107452, + "learning_rate": 4.188346883468835e-05, + "loss": 0.7976528167724609, + "step": 600 + }, + { + "epoch": 5.6938775510204085, + "grad_norm": 0.19746601581573486, + "learning_rate": 4.0528455284552845e-05, + "loss": 0.7897119903564453, + "step": 700 + }, + { + "epoch": 6.506122448979592, + "grad_norm": 0.17183995246887207, + "learning_rate": 3.917344173441735e-05, + "loss": 0.7842807006835938, + "step": 800 + }, + { + "epoch": 7.318367346938776, + "grad_norm": 0.16645647585391998, + "learning_rate": 3.7818428184281843e-05, + "loss": 0.7794410705566406, + "step": 900 + }, + { + "epoch": 8.130612244897959, + "grad_norm": 0.1795785129070282, + "learning_rate": 3.646341463414634e-05, + "loss": 0.7734984588623047, + "step": 1000 + }, + { + "epoch": 8.946938775510205, + "grad_norm": 0.17855419218540192, + "learning_rate": 3.510840108401084e-05, + "loss": 0.7694242858886718, + "step": 1100 + }, + { + "epoch": 9.759183673469387, + "grad_norm": 0.17573025822639465, + "learning_rate": 3.375338753387534e-05, + "loss": 0.7633702850341797, + "step": 1200 + }, + { + "epoch": 10.571428571428571, + "grad_norm": 0.17806877195835114, + "learning_rate": 3.239837398373984e-05, + "loss": 0.7575871276855469, + "step": 1300 + }, + { + "epoch": 11.383673469387755, + "grad_norm": 0.1824948489665985, + "learning_rate": 3.104336043360434e-05, + "loss": 0.7541095733642578, + "step": 1400 + }, + { + "epoch": 12.19591836734694, + "grad_norm": 0.18645846843719482, + "learning_rate": 2.9688346883468836e-05, + "loss": 0.7520802307128907, + "step": 1500 + }, + { + "epoch": 13.008163265306122, + "grad_norm": 0.181560218334198, + "learning_rate": 2.8333333333333335e-05, + "loss": 0.7458098602294921, + "step": 1600 + }, + { + "epoch": 13.824489795918367, + "grad_norm": 0.2002779096364975, + "learning_rate": 2.697831978319783e-05, + "loss": 0.7404608917236328, + "step": 1700 + }, + { + "epoch": 14.636734693877552, + "grad_norm": 0.21172501146793365, + "learning_rate": 2.5623306233062334e-05, + "loss": 0.7345017242431641, + "step": 1800 + }, + { + "epoch": 15.448979591836734, + "grad_norm": 0.20012739300727844, + "learning_rate": 2.426829268292683e-05, + "loss": 0.7319316864013672, + "step": 1900 + }, + { + "epoch": 16.261224489795918, + "grad_norm": 0.20821470022201538, + "learning_rate": 2.291327913279133e-05, + "loss": 0.7253572845458984, + "step": 2000 + }, + { + "epoch": 17.073469387755104, + "grad_norm": 0.20355579257011414, + "learning_rate": 2.155826558265583e-05, + "loss": 0.7240914154052734, + "step": 2100 + }, + { + "epoch": 17.889795918367348, + "grad_norm": 0.20155112445354462, + "learning_rate": 2.0203252032520325e-05, + "loss": 0.71626220703125, + "step": 2200 + }, + { + "epoch": 18.70204081632653, + "grad_norm": 0.22867456078529358, + "learning_rate": 1.8848238482384824e-05, + "loss": 0.7096992492675781, + "step": 2300 + }, + { + "epoch": 19.514285714285712, + "grad_norm": 0.20605027675628662, + "learning_rate": 1.7493224932249323e-05, + "loss": 0.7065740203857422, + "step": 2400 + }, + { + "epoch": 20.3265306122449, + "grad_norm": 0.2228800356388092, + "learning_rate": 1.6138211382113823e-05, + "loss": 0.7027207946777344, + "step": 2500 + }, + { + "epoch": 21.13877551020408, + "grad_norm": 0.21112392842769623, + "learning_rate": 1.478319783197832e-05, + "loss": 0.6970812225341797, + "step": 2600 + }, + { + "epoch": 21.955102040816328, + "grad_norm": 0.2215406894683838, + "learning_rate": 1.3428184281842818e-05, + "loss": 0.6916716003417969, + "step": 2700 + }, + { + "epoch": 22.76734693877551, + "grad_norm": 0.23283785581588745, + "learning_rate": 1.2073170731707317e-05, + "loss": 0.68474853515625, + "step": 2800 + }, + { + "epoch": 23.579591836734693, + "grad_norm": 0.24355870485305786, + "learning_rate": 1.0718157181571816e-05, + "loss": 0.682100601196289, + "step": 2900 + }, + { + "epoch": 24.39183673469388, + "grad_norm": 0.23988300561904907, + "learning_rate": 9.363143631436316e-06, + "loss": 0.6743824005126953, + "step": 3000 + }, + { + "epoch": 25.20408163265306, + "grad_norm": 0.23516066372394562, + "learning_rate": 8.008130081300813e-06, + "loss": 0.6735887908935547, + "step": 3100 + }, + { + "epoch": 26.016326530612243, + "grad_norm": 0.2374054342508316, + "learning_rate": 6.653116531165313e-06, + "loss": 0.66905517578125, + "step": 3200 + }, + { + "epoch": 26.83265306122449, + "grad_norm": 0.25294286012649536, + "learning_rate": 5.298102981029811e-06, + "loss": 0.663328857421875, + "step": 3300 + }, + { + "epoch": 27.644897959183673, + "grad_norm": 0.24455367028713226, + "learning_rate": 3.943089430894309e-06, + "loss": 0.661527099609375, + "step": 3400 + }, + { + "epoch": 28.457142857142856, + "grad_norm": 0.2514946758747101, + "learning_rate": 2.5880758807588077e-06, + "loss": 0.6577124786376953, + "step": 3500 + }, + { + "epoch": 29.26938775510204, + "grad_norm": 0.23535680770874023, + "learning_rate": 1.2330623306233062e-06, + "loss": 0.6547808074951171, + "step": 3600 + } + ], + "logging_steps": 100, + "max_steps": 3690, + "num_input_tokens_seen": 0, + "num_train_epochs": 30, + "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": 1697235691732992.0, + "train_batch_size": 8, + "trial_name": null, + "trial_params": null +} diff --git a/hyperparameter/n3/realtabformer/rtf-n3-20260505_024350/rtf_checkpoints/checkpoint-3600/training_args.bin b/hyperparameter/n3/realtabformer/rtf-n3-20260505_024350/rtf_checkpoints/checkpoint-3600/training_args.bin new file mode 100644 index 0000000000000000000000000000000000000000..3d8b32516bfaeaa087fca28752b0d5ac8a4f9a32 --- /dev/null +++ b/hyperparameter/n3/realtabformer/rtf-n3-20260505_024350/rtf_checkpoints/checkpoint-3600/training_args.bin @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:0d3dc95355536f0383a0f823e8f277b91339a18334832f20d708fd987d139c82 +size 5201 diff --git a/hyperparameter/n3/realtabformer/rtf-n3-20260505_024350/rtf_checkpoints/checkpoint-3690/config.json b/hyperparameter/n3/realtabformer/rtf-n3-20260505_024350/rtf_checkpoints/checkpoint-3690/config.json new file mode 100644 index 0000000000000000000000000000000000000000..1876b75d3abc713ca867fe8e643ea273dc9cea87 --- /dev/null +++ b/hyperparameter/n3/realtabformer/rtf-n3-20260505_024350/rtf_checkpoints/checkpoint-3690/config.json @@ -0,0 +1,34 @@ +{ + "activation_function": "gelu_new", + "add_cross_attention": false, + "architectures": [ + "GPT2LMHeadModel" + ], + "attn_pdrop": 0.1, + "bos_token_id": 5, + "dtype": "float32", + "embd_pdrop": 0.1, + "eos_token_id": 6, + "initializer_range": 0.02, + "layer_norm_epsilon": 1e-05, + "model_type": "gpt2", + "n_embd": 768, + "n_head": 12, + "n_inner": null, + "n_layer": 6, + "n_positions": 1024, + "pad_token_id": null, + "reorder_and_upcast_attn": false, + "resid_pdrop": 0.1, + "scale_attn_by_inverse_layer_idx": false, + "scale_attn_weights": true, + "summary_activation": null, + "summary_first_dropout": 0.1, + "summary_proj_to_labels": true, + "summary_type": "cls_index", + "summary_use_proj": true, + "tie_word_embeddings": true, + "transformers_version": "5.5.3", + "use_cache": false, + "vocab_size": 304 +} diff --git a/hyperparameter/n3/realtabformer/rtf-n3-20260505_024350/rtf_checkpoints/checkpoint-3690/generation_config.json b/hyperparameter/n3/realtabformer/rtf-n3-20260505_024350/rtf_checkpoints/checkpoint-3690/generation_config.json new file mode 100644 index 0000000000000000000000000000000000000000..ffe89567780e75b5c22eade9be971483b9618f39 --- /dev/null +++ b/hyperparameter/n3/realtabformer/rtf-n3-20260505_024350/rtf_checkpoints/checkpoint-3690/generation_config.json @@ -0,0 +1,9 @@ +{ + "_from_model_config": true, + "bos_token_id": 5, + "eos_token_id": 6, + "output_attentions": false, + "output_hidden_states": false, + "transformers_version": "5.5.3", + "use_cache": true +} diff --git a/hyperparameter/n3/realtabformer/rtf-n3-20260505_024350/rtf_checkpoints/checkpoint-3690/model.safetensors b/hyperparameter/n3/realtabformer/rtf-n3-20260505_024350/rtf_checkpoints/checkpoint-3690/model.safetensors new file mode 100644 index 0000000000000000000000000000000000000000..8fa27d4d8b337bb8f1a7feb9fd5e670e221dc702 --- /dev/null +++ b/hyperparameter/n3/realtabformer/rtf-n3-20260505_024350/rtf_checkpoints/checkpoint-3690/model.safetensors @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:723bee15487a8b30beca354137c3087aa0f745b459975057e6d661a7979ae4c1 +size 174202312 diff --git a/hyperparameter/n3/realtabformer/rtf-n3-20260505_024350/rtf_checkpoints/checkpoint-3690/optimizer.pt b/hyperparameter/n3/realtabformer/rtf-n3-20260505_024350/rtf_checkpoints/checkpoint-3690/optimizer.pt new file mode 100644 index 0000000000000000000000000000000000000000..be768601707d12bd392e200b6c6d68310df98481 --- /dev/null +++ b/hyperparameter/n3/realtabformer/rtf-n3-20260505_024350/rtf_checkpoints/checkpoint-3690/optimizer.pt @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:dc0091b975dec2e985db49519ea27364ebe3d655138a36f553b62537f3b34f5e +size 348453707 diff --git a/hyperparameter/n3/realtabformer/rtf-n3-20260505_024350/rtf_checkpoints/checkpoint-3690/rng_state.pth b/hyperparameter/n3/realtabformer/rtf-n3-20260505_024350/rtf_checkpoints/checkpoint-3690/rng_state.pth new file mode 100644 index 0000000000000000000000000000000000000000..19e4063459be93386acadbe6adb556941669677b --- /dev/null +++ b/hyperparameter/n3/realtabformer/rtf-n3-20260505_024350/rtf_checkpoints/checkpoint-3690/rng_state.pth @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:df24a1a1c38813e3f90376fb29d0af861ad63d56fd17bc13f60528e248fd0632 +size 14645 diff --git a/hyperparameter/n3/realtabformer/rtf-n3-20260505_024350/rtf_checkpoints/checkpoint-3690/scaler.pt b/hyperparameter/n3/realtabformer/rtf-n3-20260505_024350/rtf_checkpoints/checkpoint-3690/scaler.pt new file mode 100644 index 0000000000000000000000000000000000000000..8b5e4efc607ed0aa348f40ab69644778305f21b8 --- /dev/null +++ b/hyperparameter/n3/realtabformer/rtf-n3-20260505_024350/rtf_checkpoints/checkpoint-3690/scaler.pt @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:7fa545a27c2e949a6143baf933ae5828872e8c4520e2ad831382a38131815c9f +size 1383 diff --git a/hyperparameter/n3/realtabformer/rtf-n3-20260505_024350/rtf_checkpoints/checkpoint-3690/scheduler.pt b/hyperparameter/n3/realtabformer/rtf-n3-20260505_024350/rtf_checkpoints/checkpoint-3690/scheduler.pt new file mode 100644 index 0000000000000000000000000000000000000000..6399ec053c2b229abb62d9171e6b21d0d1aa35df --- /dev/null +++ b/hyperparameter/n3/realtabformer/rtf-n3-20260505_024350/rtf_checkpoints/checkpoint-3690/scheduler.pt @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:7d3f6fcb4c7cfc2767f975e1b6eef8f8b0c959a506a3618f32cb1d3f4ef57858 +size 1465 diff --git a/hyperparameter/n3/realtabformer/rtf-n3-20260505_024350/rtf_checkpoints/checkpoint-3690/trainer_state.json b/hyperparameter/n3/realtabformer/rtf-n3-20260505_024350/rtf_checkpoints/checkpoint-3690/trainer_state.json new file mode 100644 index 0000000000000000000000000000000000000000..53345715610ec11d0d8fc2cbb0a73038be8c35ab --- /dev/null +++ b/hyperparameter/n3/realtabformer/rtf-n3-20260505_024350/rtf_checkpoints/checkpoint-3690/trainer_state.json @@ -0,0 +1,286 @@ +{ + "best_global_step": null, + "best_metric": null, + "best_model_checkpoint": null, + "epoch": 30.0, + "eval_steps": 100, + "global_step": 3690, + "is_hyper_param_search": false, + "is_local_process_zero": true, + "is_world_process_zero": true, + "log_history": [ + { + "epoch": 0.8163265306122449, + "grad_norm": 0.2064717411994934, + "learning_rate": 4.8658536585365856e-05, + "loss": 1.4757151794433594, + "step": 100 + }, + { + "epoch": 1.6285714285714286, + "grad_norm": 0.19731839001178741, + "learning_rate": 4.730352303523036e-05, + "loss": 0.8808192443847657, + "step": 200 + }, + { + "epoch": 2.440816326530612, + "grad_norm": 0.19233861565589905, + "learning_rate": 4.5948509485094854e-05, + "loss": 0.839388656616211, + "step": 300 + }, + { + "epoch": 3.253061224489796, + "grad_norm": 0.17885564267635345, + "learning_rate": 4.459349593495935e-05, + "loss": 0.820302734375, + "step": 400 + }, + { + "epoch": 4.0653061224489795, + "grad_norm": 0.17553885281085968, + "learning_rate": 4.323848238482385e-05, + "loss": 0.8062593078613282, + "step": 500 + }, + { + "epoch": 4.881632653061224, + "grad_norm": 0.18091662228107452, + "learning_rate": 4.188346883468835e-05, + "loss": 0.7976528167724609, + "step": 600 + }, + { + "epoch": 5.6938775510204085, + "grad_norm": 0.19746601581573486, + "learning_rate": 4.0528455284552845e-05, + "loss": 0.7897119903564453, + "step": 700 + }, + { + "epoch": 6.506122448979592, + "grad_norm": 0.17183995246887207, + "learning_rate": 3.917344173441735e-05, + "loss": 0.7842807006835938, + "step": 800 + }, + { + "epoch": 7.318367346938776, + "grad_norm": 0.16645647585391998, + "learning_rate": 3.7818428184281843e-05, + "loss": 0.7794410705566406, + "step": 900 + }, + { + "epoch": 8.130612244897959, + "grad_norm": 0.1795785129070282, + "learning_rate": 3.646341463414634e-05, + "loss": 0.7734984588623047, + "step": 1000 + }, + { + "epoch": 8.946938775510205, + "grad_norm": 0.17855419218540192, + "learning_rate": 3.510840108401084e-05, + "loss": 0.7694242858886718, + "step": 1100 + }, + { + "epoch": 9.759183673469387, + "grad_norm": 0.17573025822639465, + "learning_rate": 3.375338753387534e-05, + "loss": 0.7633702850341797, + "step": 1200 + }, + { + "epoch": 10.571428571428571, + "grad_norm": 0.17806877195835114, + "learning_rate": 3.239837398373984e-05, + "loss": 0.7575871276855469, + "step": 1300 + }, + { + "epoch": 11.383673469387755, + "grad_norm": 0.1824948489665985, + "learning_rate": 3.104336043360434e-05, + "loss": 0.7541095733642578, + "step": 1400 + }, + { + "epoch": 12.19591836734694, + "grad_norm": 0.18645846843719482, + "learning_rate": 2.9688346883468836e-05, + "loss": 0.7520802307128907, + "step": 1500 + }, + { + "epoch": 13.008163265306122, + "grad_norm": 0.181560218334198, + "learning_rate": 2.8333333333333335e-05, + "loss": 0.7458098602294921, + "step": 1600 + }, + { + "epoch": 13.824489795918367, + "grad_norm": 0.2002779096364975, + "learning_rate": 2.697831978319783e-05, + "loss": 0.7404608917236328, + "step": 1700 + }, + { + "epoch": 14.636734693877552, + "grad_norm": 0.21172501146793365, + "learning_rate": 2.5623306233062334e-05, + "loss": 0.7345017242431641, + "step": 1800 + }, + { + "epoch": 15.448979591836734, + "grad_norm": 0.20012739300727844, + "learning_rate": 2.426829268292683e-05, + "loss": 0.7319316864013672, + "step": 1900 + }, + { + "epoch": 16.261224489795918, + "grad_norm": 0.20821470022201538, + "learning_rate": 2.291327913279133e-05, + "loss": 0.7253572845458984, + "step": 2000 + }, + { + "epoch": 17.073469387755104, + "grad_norm": 0.20355579257011414, + "learning_rate": 2.155826558265583e-05, + "loss": 0.7240914154052734, + "step": 2100 + }, + { + "epoch": 17.889795918367348, + "grad_norm": 0.20155112445354462, + "learning_rate": 2.0203252032520325e-05, + "loss": 0.71626220703125, + "step": 2200 + }, + { + "epoch": 18.70204081632653, + "grad_norm": 0.22867456078529358, + "learning_rate": 1.8848238482384824e-05, + "loss": 0.7096992492675781, + "step": 2300 + }, + { + "epoch": 19.514285714285712, + "grad_norm": 0.20605027675628662, + "learning_rate": 1.7493224932249323e-05, + "loss": 0.7065740203857422, + "step": 2400 + }, + { + "epoch": 20.3265306122449, + "grad_norm": 0.2228800356388092, + "learning_rate": 1.6138211382113823e-05, + "loss": 0.7027207946777344, + "step": 2500 + }, + { + "epoch": 21.13877551020408, + "grad_norm": 0.21112392842769623, + "learning_rate": 1.478319783197832e-05, + "loss": 0.6970812225341797, + "step": 2600 + }, + { + "epoch": 21.955102040816328, + "grad_norm": 0.2215406894683838, + "learning_rate": 1.3428184281842818e-05, + "loss": 0.6916716003417969, + "step": 2700 + }, + { + "epoch": 22.76734693877551, + "grad_norm": 0.23283785581588745, + "learning_rate": 1.2073170731707317e-05, + "loss": 0.68474853515625, + "step": 2800 + }, + { + "epoch": 23.579591836734693, + "grad_norm": 0.24355870485305786, + "learning_rate": 1.0718157181571816e-05, + "loss": 0.682100601196289, + "step": 2900 + }, + { + "epoch": 24.39183673469388, + "grad_norm": 0.23988300561904907, + "learning_rate": 9.363143631436316e-06, + "loss": 0.6743824005126953, + "step": 3000 + }, + { + "epoch": 25.20408163265306, + "grad_norm": 0.23516066372394562, + "learning_rate": 8.008130081300813e-06, + "loss": 0.6735887908935547, + "step": 3100 + }, + { + "epoch": 26.016326530612243, + "grad_norm": 0.2374054342508316, + "learning_rate": 6.653116531165313e-06, + "loss": 0.66905517578125, + "step": 3200 + }, + { + "epoch": 26.83265306122449, + "grad_norm": 0.25294286012649536, + "learning_rate": 5.298102981029811e-06, + "loss": 0.663328857421875, + "step": 3300 + }, + { + "epoch": 27.644897959183673, + "grad_norm": 0.24455367028713226, + "learning_rate": 3.943089430894309e-06, + "loss": 0.661527099609375, + "step": 3400 + }, + { + "epoch": 28.457142857142856, + "grad_norm": 0.2514946758747101, + "learning_rate": 2.5880758807588077e-06, + "loss": 0.6577124786376953, + "step": 3500 + }, + { + "epoch": 29.26938775510204, + "grad_norm": 0.23535680770874023, + "learning_rate": 1.2330623306233062e-06, + "loss": 0.6547808074951171, + "step": 3600 + } + ], + "logging_steps": 100, + "max_steps": 3690, + "num_input_tokens_seen": 0, + "num_train_epochs": 30, + "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": 1739593323970560.0, + "train_batch_size": 8, + "trial_name": null, + "trial_params": null +} diff --git a/hyperparameter/n3/realtabformer/rtf-n3-20260505_024350/rtf_checkpoints/checkpoint-3690/training_args.bin b/hyperparameter/n3/realtabformer/rtf-n3-20260505_024350/rtf_checkpoints/checkpoint-3690/training_args.bin new file mode 100644 index 0000000000000000000000000000000000000000..3d8b32516bfaeaa087fca28752b0d5ac8a4f9a32 --- /dev/null +++ b/hyperparameter/n3/realtabformer/rtf-n3-20260505_024350/rtf_checkpoints/checkpoint-3690/training_args.bin @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:0d3dc95355536f0383a0f823e8f277b91339a18334832f20d708fd987d139c82 +size 5201 diff --git a/hyperparameter/n3/realtabformer/rtf-n3-20260505_024350/run_config.json b/hyperparameter/n3/realtabformer/rtf-n3-20260505_024350/run_config.json new file mode 100644 index 0000000000000000000000000000000000000000..0465bcf37d6dd8f42c4ef73672d3c575c8cba89a --- /dev/null +++ b/hyperparameter/n3/realtabformer/rtf-n3-20260505_024350/run_config.json @@ -0,0 +1,40 @@ +{ + "schema_version": 1, + "recorded_at": "2026-05-05T02:43:50", + "dataset_id": "n3", + "model": "realtabformer", + "work_dir": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/n3/realtabformer/rtf-n3-20260505_024350", + "dataset_source_requested": "new", + "dataset_source_resolved": "new", + "cli_args": { + "model": "realtabformer", + "dataset": "n3", + "dataset_source": "new", + "train": true, + "generate": true, + "num_rows": 0, + "epochs": 30, + "output_dir": null, + "model_dir": null, + "work_dir": null, + "resume": false, + "no_stats": false + }, + "resolved": { + "num_rows": 3918, + "model_path": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/n3/realtabformer/rtf-n3-20260505_024350/models_30epochs", + "output_csv": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/n3/realtabformer/rtf-n3-20260505_024350/rtf-n3-3918-20260505_024849.csv" + }, + "input_artifacts": { + "public_gate_report": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/n3/realtabformer/rtf-n3-20260505_024350/public_gate/public_gate_report.json", + "public_manifest": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/n3/realtabformer/rtf-n3-20260505_024350/public_gate/staged_input_manifest.json", + "model_manifest": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/n3/realtabformer/rtf-n3-20260505_024350/staged/realtabformer/model_input_manifest.json", + "train_csv": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/n3/realtabformer/rtf-n3-20260505_024350/staged/public/train.csv", + "features_json": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/n3/realtabformer/rtf-n3-20260505_024350/staged/public/staged_features.json", + "target_column": "quality", + "task_type": "classification" + }, + "env_overrides": { + "BENCHMARK_REALTABFORMER_GPUS": "device=3" + } +} \ No newline at end of file diff --git a/hyperparameter/n3/realtabformer/rtf-n3-20260505_024350/runtime_result.json b/hyperparameter/n3/realtabformer/rtf-n3-20260505_024350/runtime_result.json new file mode 100644 index 0000000000000000000000000000000000000000..7aac2bce7689116041ca3b801fce81642d4201b9 --- /dev/null +++ b/hyperparameter/n3/realtabformer/rtf-n3-20260505_024350/runtime_result.json @@ -0,0 +1,27 @@ +{ + "dataset_id": "n3", + "model": "realtabformer", + "run_id": "rtf-n3-20260505_024350", + "public_gate_status": "pass", + "adapter_ready_status": "pass", + "train_status": "success", + "generate_status": "success", + "reason_code": null, + "reason_detail": null, + "artifacts": { + "synthetic_csv": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/n3/realtabformer/rtf-n3-20260505_024350/rtf-n3-3918-20260505_024849.csv", + "model_path": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/n3/realtabformer/rtf-n3-20260505_024350/models_30epochs" + }, + "timings": { + "train": { + "started_at": "2026-05-05T02:43:50", + "ended_at": "2026-05-05T02:48:49", + "duration_sec": 299.436 + }, + "generate": { + "started_at": "2026-05-05T02:48:49", + "ended_at": "2026-05-05T02:50:10", + "duration_sec": 81.131 + } + } +} \ No newline at end of file diff --git a/hyperparameter/n3/realtabformer/rtf-n3-20260505_024350/staged/public/staged_features.json b/hyperparameter/n3/realtabformer/rtf-n3-20260505_024350/staged/public/staged_features.json new file mode 100644 index 0000000000000000000000000000000000000000..08fe4d766d091d2f2ddba724a16b9509cbe4c390 --- /dev/null +++ b/hyperparameter/n3/realtabformer/rtf-n3-20260505_024350/staged/public/staged_features.json @@ -0,0 +1,62 @@ +[ + { + "feature_name": "fixed acidity", + "data_type": "continuous", + "is_target": false + }, + { + "feature_name": "volatile acidity", + "data_type": "continuous", + "is_target": false + }, + { + "feature_name": "citric acid", + "data_type": "continuous", + "is_target": false + }, + { + "feature_name": "residual sugar", + "data_type": "continuous", + "is_target": false + }, + { + "feature_name": "chlorides", + "data_type": "continuous", + "is_target": false + }, + { + "feature_name": "free sulfur dioxide", + "data_type": "continuous", + "is_target": false + }, + { + "feature_name": "total sulfur dioxide", + "data_type": "continuous", + "is_target": false + }, + { + "feature_name": "density", + "data_type": "continuous", + "is_target": false + }, + { + "feature_name": "pH", + "data_type": "continuous", + "is_target": false + }, + { + "feature_name": "sulphates", + "data_type": "continuous", + "is_target": false + }, + { + "feature_name": "alcohol", + "data_type": "continuous", + "is_target": false + }, + { + "feature_name": "quality", + "data_type": "continuous", + "is_target": true + } +] \ No newline at end of file diff --git a/hyperparameter/n3/realtabformer/rtf-n3-20260505_024350/staged/public/test.csv b/hyperparameter/n3/realtabformer/rtf-n3-20260505_024350/staged/public/test.csv new file mode 100644 index 0000000000000000000000000000000000000000..db5cd50d3746410ea470625fa2ba2c8e9775cc0d --- /dev/null +++ b/hyperparameter/n3/realtabformer/rtf-n3-20260505_024350/staged/public/test.csv @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:19e107152a94432e2a37ff045c00cfe35e1be30208b1553080d7dd0ede256d3b +size 28944 diff --git a/hyperparameter/n3/realtabformer/rtf-n3-20260505_024350/staged/public/train.csv b/hyperparameter/n3/realtabformer/rtf-n3-20260505_024350/staged/public/train.csv new file mode 100644 index 0000000000000000000000000000000000000000..87ca26726fe82ccbaa397919305b043c17eb374e --- /dev/null +++ b/hyperparameter/n3/realtabformer/rtf-n3-20260505_024350/staged/public/train.csv @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:7813c8cca73ba4bfc6559215257b341c21e459980ad17ae6ddc809306bc9a0b9 +size 229945 diff --git a/hyperparameter/n3/realtabformer/rtf-n3-20260505_024350/staged/public/val.csv b/hyperparameter/n3/realtabformer/rtf-n3-20260505_024350/staged/public/val.csv new file mode 100644 index 0000000000000000000000000000000000000000..6acf84c76c47093b513c46d5503972a2dff275c0 --- /dev/null +++ b/hyperparameter/n3/realtabformer/rtf-n3-20260505_024350/staged/public/val.csv @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:cf5979d9675567d9d6642640c9b84fc6c49e492604144723c30f50516c05cee6 +size 28791 diff --git a/hyperparameter/n3/realtabformer/rtf-n3-20260505_024350/staged/realtabformer/adapter_report.json b/hyperparameter/n3/realtabformer/rtf-n3-20260505_024350/staged/realtabformer/adapter_report.json new file mode 100644 index 0000000000000000000000000000000000000000..4bee77ea7546380a25c60bb5968c3c2cb40f1d76 --- /dev/null +++ b/hyperparameter/n3/realtabformer/rtf-n3-20260505_024350/staged/realtabformer/adapter_report.json @@ -0,0 +1,7 @@ +{ + "adapter_ready_status": "pass", + "adapter_fail_reason_code": null, + "adapter_fail_detail": null, + "adapter_transforms_applied": [], + "model_input_manifest": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/n3/realtabformer/rtf-n3-20260505_024350/staged/realtabformer/model_input_manifest.json" +} \ No newline at end of file diff --git a/hyperparameter/n3/realtabformer/rtf-n3-20260505_024350/staged/realtabformer/adapter_transforms_applied.json b/hyperparameter/n3/realtabformer/rtf-n3-20260505_024350/staged/realtabformer/adapter_transforms_applied.json new file mode 100644 index 0000000000000000000000000000000000000000..0637a088a01e8ddab3bf3fa98dbe804cbde1a0dc --- /dev/null +++ b/hyperparameter/n3/realtabformer/rtf-n3-20260505_024350/staged/realtabformer/adapter_transforms_applied.json @@ -0,0 +1 @@ +[] \ No newline at end of file diff --git a/hyperparameter/n3/realtabformer/rtf-n3-20260505_024350/staged/realtabformer/model_input_manifest.json b/hyperparameter/n3/realtabformer/rtf-n3-20260505_024350/staged/realtabformer/model_input_manifest.json new file mode 100644 index 0000000000000000000000000000000000000000..94a4d2334cc76203b11d99f65596e64063f2bdd6 --- /dev/null +++ b/hyperparameter/n3/realtabformer/rtf-n3-20260505_024350/staged/realtabformer/model_input_manifest.json @@ -0,0 +1,266 @@ +{ + "dataset_id": "n3", + "model": "realtabformer", + "target_column": "quality", + "task_type": "classification", + "column_schema": [ + { + "name": "fixed acidity", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 66, + "unique_ratio": 0.016845, + "example_values": [ + "7.1", + "8.5", + "6.4", + "6.8", + "7.6" + ] + } + }, + { + "name": "volatile acidity", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 121, + "unique_ratio": 0.030883, + "example_values": [ + "0.31", + "0.21", + "0.24", + "0.43", + "0.27" + ] + } + }, + { + "name": "citric acid", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 85, + "unique_ratio": 0.021695, + "example_values": [ + "0.17", + "0.41", + "0.31", + "0.25", + "0.3" + ] + } + }, + { + "name": "residual sugar", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 296, + "unique_ratio": 0.075549, + "example_values": [ + "1", + "4.3", + "2.8", + "13", + "12.9" + ] + } + }, + { + "name": "chlorides", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 147, + "unique_ratio": 0.037519, + "example_values": [ + "0.042", + "0.036", + "0.038", + "0.047", + "0.033" + ] + } + }, + { + "name": "free sulfur dioxide", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 120, + "unique_ratio": 0.030628, + "example_values": [ + "21", + "24", + "41", + "43", + "69" + ] + } + }, + { + "name": "total sulfur dioxide", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 244, + "unique_ratio": 0.062277, + "example_values": [ + "144", + "99", + "114", + "132", + "160" + ] + } + }, + { + "name": "density", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 839, + "unique_ratio": 0.21414, + "example_values": [ + "0.99304", + "0.9947", + "0.99155", + "0.98975", + "0.99705" + ] + } + }, + { + "name": "pH", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 100, + "unique_ratio": 0.025523, + "example_values": [ + "3.13", + "3.18", + "3.37", + "3.21", + "3.16" + ] + } + }, + { + "name": "sulphates", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 78, + "unique_ratio": 0.019908, + "example_values": [ + "0.4", + "0.53", + "0.66", + "0.47", + "0.5" + ] + } + }, + { + "name": "alcohol", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 97, + "unique_ratio": 0.024758, + "example_values": [ + "9.6", + "9.7", + "11.7", + "13.4", + "8.8" + ] + } + }, + { + "name": "quality", + "role": "target", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 7, + "unique_ratio": 0.001787, + "example_values": [ + "5", + "6", + "7", + "8", + "3" + ] + } + } + ], + "public_manifest": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/n3/realtabformer/rtf-n3-20260505_024350/public_gate/staged_input_manifest.json", + "train_csv": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/n3/realtabformer/rtf-n3-20260505_024350/staged/public/train.csv", + "val_csv": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/n3/realtabformer/rtf-n3-20260505_024350/staged/public/val.csv", + "test_csv": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/n3/realtabformer/rtf-n3-20260505_024350/staged/public/test.csv", + "features_json": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/n3/realtabformer/rtf-n3-20260505_024350/staged/public/staged_features.json", + "public_gate_report": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/n3/realtabformer/rtf-n3-20260505_024350/public_gate/public_gate_report.json" +} \ No newline at end of file diff --git a/hyperparameter/n3/realtabformer/rtf-n3-20260505_024350/train_20260505_024350.log b/hyperparameter/n3/realtabformer/rtf-n3-20260505_024350/train_20260505_024350.log new file mode 100644 index 0000000000000000000000000000000000000000..4b085b9475585512716014eaa60a88cba7ad99fc --- /dev/null +++ b/hyperparameter/n3/realtabformer/rtf-n3-20260505_024350/train_20260505_024350.log @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:cd8591eff961a4518cbb59a39068fe3c6aa4944852877626b0e6512cd9b71d2d +size 140582 diff --git a/hyperparameter/n3/tabbyflow/tabbyflow-n3-20260505_010259/_tabbyflow_gen.py b/hyperparameter/n3/tabbyflow/tabbyflow-n3-20260505_010259/_tabbyflow_gen.py new file mode 100644 index 0000000000000000000000000000000000000000..59efc60f28085d0ee0d57a7909c2dec3d60740af --- /dev/null +++ b/hyperparameter/n3/tabbyflow/tabbyflow-n3-20260505_010259/_tabbyflow_gen.py @@ -0,0 +1,34 @@ + +import os, shutil, subprocess, sys +root = r"/workspace/ef-vfm" +name = r"pipeline_n3" +src = r"/work/output-Benchmark-trainonly-v1/n3/tabbyflow/tabbyflow-n3-20260505_010259/tabular_bundle/pipeline_n3" +dst_data = os.path.join(root, "data", name) +shutil.rmtree(dst_data, ignore_errors=True) +shutil.copytree(src, dst_data) +dst_syn = os.path.join(root, "synthetic", name) +os.makedirs(dst_syn, exist_ok=True) +for fn in ("real.csv", "test.csv", "val.csv"): + shutil.copy(os.path.join(src, fn), os.path.join(dst_syn, fn)) +os.chdir(root) +os.environ["PYTHONPATH"] = root + os.pathsep + os.environ.get("PYTHONPATH", "") +os.environ.setdefault("EFVFM_SAMPLE_BATCH_SIZE", "128") +subprocess.check_call([ + sys.executable, "main.py", + "--dataname", name, "--mode", "test", "--gpu", "0", + "--no_wandb", "--exp_name", r"adapter_efvfm", + "--ckpt_path", r"/workspace/ef-vfm/ef_vfm/ckpt/pipeline_n3/adapter_efvfm/model_500.pt", + "--num_samples_to_generate", str(int(3918)), +]) +base = os.path.join(root, "ef_vfm", "result", name, r"adapter_efvfm") +best = None +best_t = -1.0 +for r, _, files in os.walk(base): + if "samples.csv" in files: + p = os.path.join(r, "samples.csv") + t = os.path.getmtime(p) + if t > best_t: + best_t, best = t, p +if not best: + raise SystemExit("tabbyflow: no samples.csv in " + base) +shutil.copy(best, r"/work/output-Benchmark-trainonly-v1/n3/tabbyflow/tabbyflow-n3-20260505_010259/tabbyflow-n3-3918-20260505_010451.csv") diff --git a/hyperparameter/n3/tabbyflow/tabbyflow-n3-20260505_010259/_tabbyflow_train.py b/hyperparameter/n3/tabbyflow/tabbyflow-n3-20260505_010259/_tabbyflow_train.py new file mode 100644 index 0000000000000000000000000000000000000000..370484d2d9270254590da221c66ff534621af3b4 --- /dev/null +++ b/hyperparameter/n3/tabbyflow/tabbyflow-n3-20260505_010259/_tabbyflow_train.py @@ -0,0 +1,24 @@ + +import os, shutil, subprocess, sys +root = r"/workspace/ef-vfm" +name = r"pipeline_n3" +src = r"/work/output-Benchmark-trainonly-v1/n3/tabbyflow/tabbyflow-n3-20260505_010259/tabular_bundle/pipeline_n3" +os.makedirs(os.path.join(root, "data", name), exist_ok=True) +dst_data = os.path.join(root, "data", name) +dst_syn = os.path.join(root, "synthetic", name) +shutil.rmtree(dst_data, ignore_errors=True) +shutil.copytree(src, dst_data) +os.makedirs(dst_syn, exist_ok=True) +for fn in ("real.csv", "test.csv", "val.csv"): + shutil.copy(os.path.join(src, fn), os.path.join(dst_syn, fn)) +os.chdir(root) +os.environ["PYTHONPATH"] = root + os.pathsep + os.environ.get("PYTHONPATH", "") +os.environ["EFVFM_SMOKE_STEPS"] = "100" +os.environ["EFVFM_ADAPTER_TRAIN"] = "1" +os.environ.setdefault("EFVFM_SAMPLE_BATCH_SIZE", "128") +os.environ.setdefault("EFVFM_EVAL_NUM_SAMPLES", "512") +subprocess.check_call([ + sys.executable, "main.py", + "--dataname", name, "--mode", "train", "--gpu", "0", + "--no_wandb", "--exp_name", r"adapter_efvfm", +]) diff --git a/hyperparameter/n3/tabbyflow/tabbyflow-n3-20260505_010259/gen_20260505_010451.log b/hyperparameter/n3/tabbyflow/tabbyflow-n3-20260505_010259/gen_20260505_010451.log new file mode 100644 index 0000000000000000000000000000000000000000..c35f5c61d2626b619c57b83bd682b3268de0be90 --- /dev/null +++ b/hyperparameter/n3/tabbyflow/tabbyflow-n3-20260505_010259/gen_20260505_010451.log @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:2207d6f293ecd0e612f9dd8f2b81fd12cf4cd60b1c0e2e76fee2985655f5c5a8 +size 3945 diff --git a/hyperparameter/n3/tabbyflow/tabbyflow-n3-20260505_010259/input_snapshot.json b/hyperparameter/n3/tabbyflow/tabbyflow-n3-20260505_010259/input_snapshot.json new file mode 100644 index 0000000000000000000000000000000000000000..3a0cbc32605f1212374c27c5a11c08064d5b6b53 --- /dev/null +++ b/hyperparameter/n3/tabbyflow/tabbyflow-n3-20260505_010259/input_snapshot.json @@ -0,0 +1,36 @@ +{ + "dataset_id": "n3", + "model": "tabbyflow", + "inputs": { + "train_csv": { + "path": "/data/jialinzhang/SynthesizePipeline-server/DatasetNew/n3/n3-train.csv", + "exists": true, + "size": 211519, + "sha256": "2160a06db2fea02adb0ebb79d8d853bd2544580be301e71f6e8deeb1489a9009" + }, + "val_csv": { + "path": "/data/jialinzhang/SynthesizePipeline-server/DatasetNew/n3/n3-val.csv", + "exists": true, + "size": 26499, + "sha256": "d5ccfee07dfa9e7bdee5bb87642b43828e09f74c6cc0266a3d19d9feaa83106e" + }, + "test_csv": { + "path": "/data/jialinzhang/SynthesizePipeline-server/DatasetNew/n3/n3-test.csv", + "exists": true, + "size": 26676, + "sha256": "6f83aacb0d1747b95e287352a7fff5d9d65a1c127b773852346c68485c4ede47" + }, + "profile_json": { + "path": "/data/jialinzhang/SynthesizePipeline-server/DatasetNew/artifacts/data_core/tabular/n3/n3-dataset_profile.json", + "exists": true, + "size": 5235, + "sha256": "23d2e5904a2ca90cbf8d6e3c75887681721e9b90cc705c31a680c11513d0c46f" + }, + "contract_json": { + "path": "/data/jialinzhang/SynthesizePipeline-server/DatasetNew/artifacts/data_core/tabular/n3/n3-dataset_contract_v1.json", + "exists": true, + "size": 6281, + "sha256": "c0cc56f5fe28e1b65927255c6e3c2b0e9479862c2ec6f2fea1664da36c9a3a09" + } + } +} \ No newline at end of file diff --git a/hyperparameter/n3/tabbyflow/tabbyflow-n3-20260505_010259/models_tabbyflow/trained.pt b/hyperparameter/n3/tabbyflow/tabbyflow-n3-20260505_010259/models_tabbyflow/trained.pt new file mode 100644 index 0000000000000000000000000000000000000000..f063a878c470d9d40f79db79881596e1e497dffd --- /dev/null +++ b/hyperparameter/n3/tabbyflow/tabbyflow-n3-20260505_010259/models_tabbyflow/trained.pt @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:adb734fec12f2251befd371dca69e481b19464aded2a6823105a01b4be6ddbe5 +size 40 diff --git a/hyperparameter/n3/tabbyflow/tabbyflow-n3-20260505_010259/public_gate/normalized_schema_snapshot.json b/hyperparameter/n3/tabbyflow/tabbyflow-n3-20260505_010259/public_gate/normalized_schema_snapshot.json new file mode 100644 index 0000000000000000000000000000000000000000..c41fe304503de23190a02e6cbfafa35b3bf134d3 --- /dev/null +++ b/hyperparameter/n3/tabbyflow/tabbyflow-n3-20260505_010259/public_gate/normalized_schema_snapshot.json @@ -0,0 +1,259 @@ +{ + "dataset_id": "n3", + "target_column": "quality", + "task_type": "classification", + "columns": [ + { + "name": "fixed acidity", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 66, + "unique_ratio": 0.016845, + "example_values": [ + "7.1", + "8.5", + "6.4", + "6.8", + "7.6" + ] + } + }, + { + "name": "volatile acidity", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 121, + "unique_ratio": 0.030883, + "example_values": [ + "0.31", + "0.21", + "0.24", + "0.43", + "0.27" + ] + } + }, + { + "name": "citric acid", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 85, + "unique_ratio": 0.021695, + "example_values": [ + "0.17", + "0.41", + "0.31", + "0.25", + "0.3" + ] + } + }, + { + "name": "residual sugar", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 296, + "unique_ratio": 0.075549, + "example_values": [ + "1", + "4.3", + "2.8", + "13", + "12.9" + ] + } + }, + { + "name": "chlorides", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 147, + "unique_ratio": 0.037519, + "example_values": [ + "0.042", + "0.036", + "0.038", + "0.047", + "0.033" + ] + } + }, + { + "name": "free sulfur dioxide", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 120, + "unique_ratio": 0.030628, + "example_values": [ + "21", + "24", + "41", + "43", + "69" + ] + } + }, + { + "name": "total sulfur dioxide", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 244, + "unique_ratio": 0.062277, + "example_values": [ + "144", + "99", + "114", + "132", + "160" + ] + } + }, + { + "name": "density", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 839, + "unique_ratio": 0.21414, + "example_values": [ + "0.99304", + "0.9947", + "0.99155", + "0.98975", + "0.99705" + ] + } + }, + { + "name": "pH", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 100, + "unique_ratio": 0.025523, + "example_values": [ + "3.13", + "3.18", + "3.37", + "3.21", + "3.16" + ] + } + }, + { + "name": "sulphates", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 78, + "unique_ratio": 0.019908, + "example_values": [ + "0.4", + "0.53", + "0.66", + "0.47", + "0.5" + ] + } + }, + { + "name": "alcohol", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 97, + "unique_ratio": 0.024758, + "example_values": [ + "9.6", + "9.7", + "11.7", + "13.4", + "8.8" + ] + } + }, + { + "name": "quality", + "role": "target", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 7, + "unique_ratio": 0.001787, + "example_values": [ + "5", + "6", + "7", + "8", + "3" + ] + } + } + ] +} \ No newline at end of file diff --git a/hyperparameter/n3/tabbyflow/tabbyflow-n3-20260505_010259/public_gate/public_gate_report.json b/hyperparameter/n3/tabbyflow/tabbyflow-n3-20260505_010259/public_gate/public_gate_report.json new file mode 100644 index 0000000000000000000000000000000000000000..93b97319f739e39079d6c6549fd2020f8a6dac25 --- /dev/null +++ b/hyperparameter/n3/tabbyflow/tabbyflow-n3-20260505_010259/public_gate/public_gate_report.json @@ -0,0 +1,37 @@ +{ + "dataset_id": "n3", + "status": "pass", + "checks": [ + { + "check_id": "PG001_csv_parse_ok", + "status": "pass" + }, + { + "check_id": "PG002_split_header_consistent", + "status": "pass" + }, + { + "check_id": "PG003_profile_header_match", + "status": "pass" + }, + { + "check_id": "PG004_missing_token_normalized", + "status": "pass" + }, + { + "check_id": "PG005_semantic_type_validated", + "status": "pass" + }, + { + "check_id": "PG006_target_defined_and_valid", + "status": "pass" + } + ], + "target_column": "quality", + "task_type": "classification", + "input_splits": { + "train": "/data/jialinzhang/SynthesizePipeline-server/DatasetNew/n3/n3-train.csv", + "val": "/data/jialinzhang/SynthesizePipeline-server/DatasetNew/n3/n3-val.csv", + "test": "/data/jialinzhang/SynthesizePipeline-server/DatasetNew/n3/n3-test.csv" + } +} \ No newline at end of file diff --git a/hyperparameter/n3/tabbyflow/tabbyflow-n3-20260505_010259/public_gate/staged_input_manifest.json b/hyperparameter/n3/tabbyflow/tabbyflow-n3-20260505_010259/public_gate/staged_input_manifest.json new file mode 100644 index 0000000000000000000000000000000000000000..0899f4334deeaf966f51677e19855d2544b8ba74 --- /dev/null +++ b/hyperparameter/n3/tabbyflow/tabbyflow-n3-20260505_010259/public_gate/staged_input_manifest.json @@ -0,0 +1,264 @@ +{ + "dataset_id": "n3", + "target_column": "quality", + "task_type": "classification", + "train_csv": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/n3/tabbyflow/tabbyflow-n3-20260505_010259/staged/public/train.csv", + "val_csv": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/n3/tabbyflow/tabbyflow-n3-20260505_010259/staged/public/val.csv", + "test_csv": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/n3/tabbyflow/tabbyflow-n3-20260505_010259/staged/public/test.csv", + "features_json": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/n3/tabbyflow/tabbyflow-n3-20260505_010259/staged/public/staged_features.json", + "public_gate_report": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/n3/tabbyflow/tabbyflow-n3-20260505_010259/public_gate/public_gate_report.json", + "column_schema": [ + { + "name": "fixed acidity", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 66, + "unique_ratio": 0.016845, + "example_values": [ + "7.1", + "8.5", + "6.4", + "6.8", + "7.6" + ] + } + }, + { + "name": "volatile acidity", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 121, + "unique_ratio": 0.030883, + "example_values": [ + "0.31", + "0.21", + "0.24", + "0.43", + "0.27" + ] + } + }, + { + "name": "citric acid", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 85, + "unique_ratio": 0.021695, + "example_values": [ + "0.17", + "0.41", + "0.31", + "0.25", + "0.3" + ] + } + }, + { + "name": "residual sugar", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 296, + "unique_ratio": 0.075549, + "example_values": [ + "1", + "4.3", + "2.8", + "13", + "12.9" + ] + } + }, + { + "name": "chlorides", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 147, + "unique_ratio": 0.037519, + "example_values": [ + "0.042", + "0.036", + "0.038", + "0.047", + "0.033" + ] + } + }, + { + "name": "free sulfur dioxide", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 120, + "unique_ratio": 0.030628, + "example_values": [ + "21", + "24", + "41", + "43", + "69" + ] + } + }, + { + "name": "total sulfur dioxide", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 244, + "unique_ratio": 0.062277, + "example_values": [ + "144", + "99", + "114", + "132", + "160" + ] + } + }, + { + "name": "density", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 839, + "unique_ratio": 0.21414, + "example_values": [ + "0.99304", + "0.9947", + "0.99155", + "0.98975", + "0.99705" + ] + } + }, + { + "name": "pH", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 100, + "unique_ratio": 0.025523, + "example_values": [ + "3.13", + "3.18", + "3.37", + "3.21", + "3.16" + ] + } + }, + { + "name": "sulphates", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 78, + "unique_ratio": 0.019908, + "example_values": [ + "0.4", + "0.53", + "0.66", + "0.47", + "0.5" + ] + } + }, + { + "name": "alcohol", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 97, + "unique_ratio": 0.024758, + "example_values": [ + "9.6", + "9.7", + "11.7", + "13.4", + "8.8" + ] + } + }, + { + "name": "quality", + "role": "target", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 7, + "unique_ratio": 0.001787, + "example_values": [ + "5", + "6", + "7", + "8", + "3" + ] + } + } + ] +} \ No newline at end of file diff --git a/hyperparameter/n3/tabbyflow/tabbyflow-n3-20260505_010259/run_config.json b/hyperparameter/n3/tabbyflow/tabbyflow-n3-20260505_010259/run_config.json new file mode 100644 index 0000000000000000000000000000000000000000..46c7f49fa22cef65d9e8cc1bda05be48829a1b94 --- /dev/null +++ b/hyperparameter/n3/tabbyflow/tabbyflow-n3-20260505_010259/run_config.json @@ -0,0 +1,42 @@ +{ + "schema_version": 1, + "recorded_at": "2026-05-05T01:03:00", + "dataset_id": "n3", + "model": "tabbyflow", + "work_dir": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/n3/tabbyflow/tabbyflow-n3-20260505_010259", + "dataset_source_requested": "new", + "dataset_source_resolved": "new", + "cli_args": { + "model": "tabbyflow", + "dataset": "n3", + "dataset_source": "new", + "train": true, + "generate": true, + "num_rows": 0, + "epochs": 100, + "output_dir": null, + "model_dir": null, + "work_dir": null, + "resume": false, + "no_stats": false + }, + "resolved": { + "num_rows": 3918, + "model_path": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/n3/tabbyflow/tabbyflow-n3-20260505_010259/models_tabbyflow/trained.pt", + "output_csv": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/n3/tabbyflow/tabbyflow-n3-20260505_010259/tabbyflow-n3-3918-20260505_010451.csv" + }, + "input_artifacts": { + "public_gate_report": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/n3/tabbyflow/tabbyflow-n3-20260505_010259/public_gate/public_gate_report.json", + "public_manifest": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/n3/tabbyflow/tabbyflow-n3-20260505_010259/public_gate/staged_input_manifest.json", + "model_manifest": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/n3/tabbyflow/tabbyflow-n3-20260505_010259/staged/tabbyflow/model_input_manifest.json", + "train_csv": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/n3/tabbyflow/tabbyflow-n3-20260505_010259/staged/public/train.csv", + "features_json": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/n3/tabbyflow/tabbyflow-n3-20260505_010259/staged/public/staged_features.json", + "target_column": "quality", + "task_type": "classification" + }, + "env_overrides": { + "BENCHMARK_TABBYFLOW_GPUS": "device=0", + "EFVFM_EVAL_NUM_SAMPLES": "512", + "EFVFM_SAMPLE_BATCH_SIZE": "64" + } +} \ No newline at end of file diff --git a/hyperparameter/n3/tabbyflow/tabbyflow-n3-20260505_010259/runtime_result.json b/hyperparameter/n3/tabbyflow/tabbyflow-n3-20260505_010259/runtime_result.json new file mode 100644 index 0000000000000000000000000000000000000000..bb3347445e08bbc4361830ec22903e014221302d --- /dev/null +++ b/hyperparameter/n3/tabbyflow/tabbyflow-n3-20260505_010259/runtime_result.json @@ -0,0 +1,27 @@ +{ + "dataset_id": "n3", + "model": "tabbyflow", + "run_id": "tabbyflow-n3-20260505_010259", + "public_gate_status": "pass", + "adapter_ready_status": "pass", + "train_status": "success", + "generate_status": "success", + "reason_code": null, + "reason_detail": null, + "artifacts": { + "synthetic_csv": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/n3/tabbyflow/tabbyflow-n3-20260505_010259/tabbyflow-n3-3918-20260505_010451.csv", + "model_path": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/n3/tabbyflow/tabbyflow-n3-20260505_010259/models_tabbyflow/trained.pt" + }, + "timings": { + "train": { + "started_at": "2026-05-05T01:03:00", + "ended_at": "2026-05-05T01:04:51", + "duration_sec": 111.864 + }, + "generate": { + "started_at": "2026-05-05T01:04:51", + "ended_at": "2026-05-05T01:05:17", + "duration_sec": 25.903 + } + } +} \ No newline at end of file diff --git a/hyperparameter/n3/tabbyflow/tabbyflow-n3-20260505_010259/staged/public/staged_features.json b/hyperparameter/n3/tabbyflow/tabbyflow-n3-20260505_010259/staged/public/staged_features.json new file mode 100644 index 0000000000000000000000000000000000000000..08fe4d766d091d2f2ddba724a16b9509cbe4c390 --- /dev/null +++ b/hyperparameter/n3/tabbyflow/tabbyflow-n3-20260505_010259/staged/public/staged_features.json @@ -0,0 +1,62 @@ +[ + { + "feature_name": "fixed acidity", + "data_type": "continuous", + "is_target": false + }, + { + "feature_name": "volatile acidity", + "data_type": "continuous", + "is_target": false + }, + { + "feature_name": "citric acid", + "data_type": "continuous", + "is_target": false + }, + { + "feature_name": "residual sugar", + "data_type": "continuous", + "is_target": false + }, + { + "feature_name": "chlorides", + "data_type": "continuous", + "is_target": false + }, + { + "feature_name": "free sulfur dioxide", + "data_type": "continuous", + "is_target": false + }, + { + "feature_name": "total sulfur dioxide", + "data_type": "continuous", + "is_target": false + }, + { + "feature_name": "density", + "data_type": "continuous", + "is_target": false + }, + { + "feature_name": "pH", + "data_type": "continuous", + "is_target": false + }, + { + "feature_name": "sulphates", + "data_type": "continuous", + "is_target": false + }, + { + "feature_name": "alcohol", + "data_type": "continuous", + "is_target": false + }, + { + "feature_name": "quality", + "data_type": "continuous", + "is_target": true + } +] \ No newline at end of file diff --git a/hyperparameter/n3/tabbyflow/tabbyflow-n3-20260505_010259/staged/public/test.csv b/hyperparameter/n3/tabbyflow/tabbyflow-n3-20260505_010259/staged/public/test.csv new file mode 100644 index 0000000000000000000000000000000000000000..db5cd50d3746410ea470625fa2ba2c8e9775cc0d --- /dev/null +++ b/hyperparameter/n3/tabbyflow/tabbyflow-n3-20260505_010259/staged/public/test.csv @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:19e107152a94432e2a37ff045c00cfe35e1be30208b1553080d7dd0ede256d3b +size 28944 diff --git a/hyperparameter/n3/tabbyflow/tabbyflow-n3-20260505_010259/staged/public/train.csv b/hyperparameter/n3/tabbyflow/tabbyflow-n3-20260505_010259/staged/public/train.csv new file mode 100644 index 0000000000000000000000000000000000000000..87ca26726fe82ccbaa397919305b043c17eb374e --- /dev/null +++ b/hyperparameter/n3/tabbyflow/tabbyflow-n3-20260505_010259/staged/public/train.csv @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:7813c8cca73ba4bfc6559215257b341c21e459980ad17ae6ddc809306bc9a0b9 +size 229945 diff --git a/hyperparameter/n3/tabbyflow/tabbyflow-n3-20260505_010259/staged/public/val.csv b/hyperparameter/n3/tabbyflow/tabbyflow-n3-20260505_010259/staged/public/val.csv new file mode 100644 index 0000000000000000000000000000000000000000..6acf84c76c47093b513c46d5503972a2dff275c0 --- /dev/null +++ b/hyperparameter/n3/tabbyflow/tabbyflow-n3-20260505_010259/staged/public/val.csv @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:cf5979d9675567d9d6642640c9b84fc6c49e492604144723c30f50516c05cee6 +size 28791 diff --git a/hyperparameter/n3/tabbyflow/tabbyflow-n3-20260505_010259/staged/tabbyflow/adapter_report.json b/hyperparameter/n3/tabbyflow/tabbyflow-n3-20260505_010259/staged/tabbyflow/adapter_report.json new file mode 100644 index 0000000000000000000000000000000000000000..3eafde1e4db7ef943e09085915c0daf0da4563b3 --- /dev/null +++ b/hyperparameter/n3/tabbyflow/tabbyflow-n3-20260505_010259/staged/tabbyflow/adapter_report.json @@ -0,0 +1,7 @@ +{ + "adapter_ready_status": "pass", + "adapter_fail_reason_code": null, + "adapter_fail_detail": null, + "adapter_transforms_applied": [], + "model_input_manifest": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/n3/tabbyflow/tabbyflow-n3-20260505_010259/staged/tabbyflow/model_input_manifest.json" +} \ No newline at end of file diff --git a/hyperparameter/n3/tabbyflow/tabbyflow-n3-20260505_010259/staged/tabbyflow/adapter_transforms_applied.json b/hyperparameter/n3/tabbyflow/tabbyflow-n3-20260505_010259/staged/tabbyflow/adapter_transforms_applied.json new file mode 100644 index 0000000000000000000000000000000000000000..0637a088a01e8ddab3bf3fa98dbe804cbde1a0dc --- /dev/null +++ b/hyperparameter/n3/tabbyflow/tabbyflow-n3-20260505_010259/staged/tabbyflow/adapter_transforms_applied.json @@ -0,0 +1 @@ +[] \ No newline at end of file diff --git a/hyperparameter/n3/tabbyflow/tabbyflow-n3-20260505_010259/staged/tabbyflow/model_input_manifest.json b/hyperparameter/n3/tabbyflow/tabbyflow-n3-20260505_010259/staged/tabbyflow/model_input_manifest.json new file mode 100644 index 0000000000000000000000000000000000000000..9c80db71ddc40ce76cb598ed0f36b8d551eb1af0 --- /dev/null +++ b/hyperparameter/n3/tabbyflow/tabbyflow-n3-20260505_010259/staged/tabbyflow/model_input_manifest.json @@ -0,0 +1,266 @@ +{ + "dataset_id": "n3", + "model": "tabbyflow", + "target_column": "quality", + "task_type": "classification", + "column_schema": [ + { + "name": "fixed acidity", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 66, + "unique_ratio": 0.016845, + "example_values": [ + "7.1", + "8.5", + "6.4", + "6.8", + "7.6" + ] + } + }, + { + "name": "volatile acidity", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 121, + "unique_ratio": 0.030883, + "example_values": [ + "0.31", + "0.21", + "0.24", + "0.43", + "0.27" + ] + } + }, + { + "name": "citric acid", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 85, + "unique_ratio": 0.021695, + "example_values": [ + "0.17", + "0.41", + "0.31", + "0.25", + "0.3" + ] + } + }, + { + "name": "residual sugar", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 296, + "unique_ratio": 0.075549, + "example_values": [ + "1", + "4.3", + "2.8", + "13", + "12.9" + ] + } + }, + { + "name": "chlorides", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 147, + "unique_ratio": 0.037519, + "example_values": [ + "0.042", + "0.036", + "0.038", + "0.047", + "0.033" + ] + } + }, + { + "name": "free sulfur dioxide", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 120, + "unique_ratio": 0.030628, + "example_values": [ + "21", + "24", + "41", + "43", + "69" + ] + } + }, + { + "name": "total sulfur dioxide", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 244, + "unique_ratio": 0.062277, + "example_values": [ + "144", + "99", + "114", + "132", + "160" + ] + } + }, + { + "name": "density", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 839, + "unique_ratio": 0.21414, + "example_values": [ + "0.99304", + "0.9947", + "0.99155", + "0.98975", + "0.99705" + ] + } + }, + { + "name": "pH", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 100, + "unique_ratio": 0.025523, + "example_values": [ + "3.13", + "3.18", + "3.37", + "3.21", + "3.16" + ] + } + }, + { + "name": "sulphates", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 78, + "unique_ratio": 0.019908, + "example_values": [ + "0.4", + "0.53", + "0.66", + "0.47", + "0.5" + ] + } + }, + { + "name": "alcohol", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 97, + "unique_ratio": 0.024758, + "example_values": [ + "9.6", + "9.7", + "11.7", + "13.4", + "8.8" + ] + } + }, + { + "name": "quality", + "role": "target", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 7, + "unique_ratio": 0.001787, + "example_values": [ + "5", + "6", + "7", + "8", + "3" + ] + } + } + ], + "public_manifest": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/n3/tabbyflow/tabbyflow-n3-20260505_010259/public_gate/staged_input_manifest.json", + "train_csv": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/n3/tabbyflow/tabbyflow-n3-20260505_010259/staged/public/train.csv", + "val_csv": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/n3/tabbyflow/tabbyflow-n3-20260505_010259/staged/public/val.csv", + "test_csv": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/n3/tabbyflow/tabbyflow-n3-20260505_010259/staged/public/test.csv", + "features_json": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/n3/tabbyflow/tabbyflow-n3-20260505_010259/staged/public/staged_features.json", + "public_gate_report": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/n3/tabbyflow/tabbyflow-n3-20260505_010259/public_gate/public_gate_report.json" +} \ No newline at end of file diff --git a/hyperparameter/n3/tabbyflow/tabbyflow-n3-20260505_010259/tabbyflow-n3-3918-20260505_010451.csv b/hyperparameter/n3/tabbyflow/tabbyflow-n3-20260505_010259/tabbyflow-n3-3918-20260505_010451.csv new file mode 100644 index 0000000000000000000000000000000000000000..fc47501fe3c2ec421f8e1c903b9df5753a588b6f --- /dev/null +++ b/hyperparameter/n3/tabbyflow/tabbyflow-n3-20260505_010259/tabbyflow-n3-3918-20260505_010451.csv @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:a3b4b268d195cc5709e7077b05971e519c7c4c08a023cf80de526e1b1f163b56 +size 339904 diff --git a/hyperparameter/n3/tabbyflow/tabbyflow-n3-20260505_010259/tabbyflow_train_meta.json b/hyperparameter/n3/tabbyflow/tabbyflow-n3-20260505_010259/tabbyflow_train_meta.json new file mode 100644 index 0000000000000000000000000000000000000000..8e681211f1245eac339cf8267001ec394fbe430b --- /dev/null +++ b/hyperparameter/n3/tabbyflow/tabbyflow-n3-20260505_010259/tabbyflow_train_meta.json @@ -0,0 +1,5 @@ +{ + "exp_name": "adapter_efvfm", + "dataname": "pipeline_n3", + "steps": 100 +} \ No newline at end of file diff --git a/hyperparameter/n3/tabbyflow/tabbyflow-n3-20260505_010259/tabular_bundle/pipeline_n3/X_cat_test.npy b/hyperparameter/n3/tabbyflow/tabbyflow-n3-20260505_010259/tabular_bundle/pipeline_n3/X_cat_test.npy new file mode 100644 index 0000000000000000000000000000000000000000..76306e45faf838d072c21b887a4c1d43d486dc1b --- /dev/null +++ b/hyperparameter/n3/tabbyflow/tabbyflow-n3-20260505_010259/tabular_bundle/pipeline_n3/X_cat_test.npy @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:87f6573fdfd40c6332a9ef925bcb48bc20f08b3a6f72b6dceb949ae36d1871f7 +size 128 diff --git a/hyperparameter/n3/tabbyflow/tabbyflow-n3-20260505_010259/tabular_bundle/pipeline_n3/X_cat_train.npy b/hyperparameter/n3/tabbyflow/tabbyflow-n3-20260505_010259/tabular_bundle/pipeline_n3/X_cat_train.npy new file mode 100644 index 0000000000000000000000000000000000000000..76306e45faf838d072c21b887a4c1d43d486dc1b --- /dev/null +++ b/hyperparameter/n3/tabbyflow/tabbyflow-n3-20260505_010259/tabular_bundle/pipeline_n3/X_cat_train.npy @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:87f6573fdfd40c6332a9ef925bcb48bc20f08b3a6f72b6dceb949ae36d1871f7 +size 128 diff --git a/hyperparameter/n3/tabbyflow/tabbyflow-n3-20260505_010259/tabular_bundle/pipeline_n3/X_cat_val.npy b/hyperparameter/n3/tabbyflow/tabbyflow-n3-20260505_010259/tabular_bundle/pipeline_n3/X_cat_val.npy new file mode 100644 index 0000000000000000000000000000000000000000..76306e45faf838d072c21b887a4c1d43d486dc1b --- /dev/null +++ b/hyperparameter/n3/tabbyflow/tabbyflow-n3-20260505_010259/tabular_bundle/pipeline_n3/X_cat_val.npy @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:87f6573fdfd40c6332a9ef925bcb48bc20f08b3a6f72b6dceb949ae36d1871f7 +size 128 diff --git a/hyperparameter/n3/tabbyflow/tabbyflow-n3-20260505_010259/tabular_bundle/pipeline_n3/X_num_test.npy b/hyperparameter/n3/tabbyflow/tabbyflow-n3-20260505_010259/tabular_bundle/pipeline_n3/X_num_test.npy new file mode 100644 index 0000000000000000000000000000000000000000..94beb8413ef55592710518365965f4cb503523ee --- /dev/null +++ b/hyperparameter/n3/tabbyflow/tabbyflow-n3-20260505_010259/tabular_bundle/pipeline_n3/X_num_test.npy @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:093d8f405d764277d5a007953f25ab6466f0857f71f0d8f3c437463fb5bf240a +size 172520 diff --git a/hyperparameter/n3/tabbyflow/tabbyflow-n3-20260505_010259/tabular_bundle/pipeline_n3/X_num_train.npy b/hyperparameter/n3/tabbyflow/tabbyflow-n3-20260505_010259/tabular_bundle/pipeline_n3/X_num_train.npy new file mode 100644 index 0000000000000000000000000000000000000000..94beb8413ef55592710518365965f4cb503523ee --- /dev/null +++ b/hyperparameter/n3/tabbyflow/tabbyflow-n3-20260505_010259/tabular_bundle/pipeline_n3/X_num_train.npy @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:093d8f405d764277d5a007953f25ab6466f0857f71f0d8f3c437463fb5bf240a +size 172520 diff --git a/hyperparameter/n3/tabbyflow/tabbyflow-n3-20260505_010259/tabular_bundle/pipeline_n3/X_num_val.npy b/hyperparameter/n3/tabbyflow/tabbyflow-n3-20260505_010259/tabular_bundle/pipeline_n3/X_num_val.npy new file mode 100644 index 0000000000000000000000000000000000000000..94beb8413ef55592710518365965f4cb503523ee --- /dev/null +++ b/hyperparameter/n3/tabbyflow/tabbyflow-n3-20260505_010259/tabular_bundle/pipeline_n3/X_num_val.npy @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:093d8f405d764277d5a007953f25ab6466f0857f71f0d8f3c437463fb5bf240a +size 172520 diff --git a/hyperparameter/n3/tabbyflow/tabbyflow-n3-20260505_010259/tabular_bundle/pipeline_n3/info.json b/hyperparameter/n3/tabbyflow/tabbyflow-n3-20260505_010259/tabular_bundle/pipeline_n3/info.json new file mode 100644 index 0000000000000000000000000000000000000000..8b5f7b3a1a0c4ba2d967287826b9f5c5fd7619de --- /dev/null +++ b/hyperparameter/n3/tabbyflow/tabbyflow-n3-20260505_010259/tabular_bundle/pipeline_n3/info.json @@ -0,0 +1,139 @@ +{ + "name": "pipeline_n3", + "task_type": "multiclass", + "n_num_features": 11, + "n_cat_features": 0, + "train_size": 3918, + "test_num": 3918, + "val_num": 3918, + "train_num": 3918, + "bundle_note": "val/test matrices are train copies (train-only policy; no real held-out rows).", + "num_col_idx": [ + 0, + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10 + ], + "cat_col_idx": [], + "target_col_idx": [ + 11 + ], + "column_names": [ + "fixed acidity", + "volatile acidity", + "citric acid", + "residual sugar", + "chlorides", + "free sulfur dioxide", + "total sulfur dioxide", + "density", + "pH", + "sulphates", + "alcohol", + "quality" + ], + "int_col_idx": [], + "int_columns": [], + "int_col_idx_wrt_num": [], + "metadata": { + "columns": { + "0": { + "sdtype": "numerical", + "computer_representation": "Float" + }, + "1": { + "sdtype": "numerical", + "computer_representation": "Float" + }, + "2": { + "sdtype": "numerical", + "computer_representation": "Float" + }, + "3": { + "sdtype": "numerical", + "computer_representation": "Float" + }, + "4": { + "sdtype": "numerical", + "computer_representation": "Float" + }, + "5": { + "sdtype": "numerical", + "computer_representation": "Float" + }, + "6": { + "sdtype": "numerical", + "computer_representation": "Float" + }, + "7": { + "sdtype": "numerical", + "computer_representation": "Float" + }, + "8": { + "sdtype": "numerical", + "computer_representation": "Float" + }, + "9": { + "sdtype": "numerical", + "computer_representation": "Float" + }, + "10": { + "sdtype": "numerical", + "computer_representation": "Float" + }, + "11": { + "sdtype": "categorical" + } + } + }, + "idx_mapping": { + "0": 0, + "1": 1, + "2": 2, + "3": 3, + "4": 4, + "5": 5, + "6": 6, + "7": 7, + "8": 8, + "9": 9, + "10": 10, + "11": 11 + }, + "inverse_idx_mapping": { + "0": 0, + "1": 1, + "2": 2, + "3": 3, + "4": 4, + "5": 5, + "6": 6, + "7": 7, + "8": 8, + "9": 9, + "10": 10, + "11": 11 + }, + "idx_name_mapping": { + "0": "fixed acidity", + "1": "volatile acidity", + "2": "citric acid", + "3": "residual sugar", + "4": "chlorides", + "5": "free sulfur dioxide", + "6": "total sulfur dioxide", + "7": "density", + "8": "pH", + "9": "sulphates", + "10": "alcohol", + "11": "quality" + }, + "n_classes": 7 +} \ No newline at end of file diff --git a/hyperparameter/n3/tabbyflow/tabbyflow-n3-20260505_010259/tabular_bundle/pipeline_n3/real.csv b/hyperparameter/n3/tabbyflow/tabbyflow-n3-20260505_010259/tabular_bundle/pipeline_n3/real.csv new file mode 100644 index 0000000000000000000000000000000000000000..b4297372e8b9b076d6c03efa023cbf23edee4f56 --- /dev/null +++ b/hyperparameter/n3/tabbyflow/tabbyflow-n3-20260505_010259/tabular_bundle/pipeline_n3/real.csv @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:c80ba530c12c66a78530db5d98ead5f78fcdad2fe5eccccbc28d9649ceaa6023 +size 229825 diff --git a/hyperparameter/n3/tabbyflow/tabbyflow-n3-20260505_010259/tabular_bundle/pipeline_n3/test.csv b/hyperparameter/n3/tabbyflow/tabbyflow-n3-20260505_010259/tabular_bundle/pipeline_n3/test.csv new file mode 100644 index 0000000000000000000000000000000000000000..b4297372e8b9b076d6c03efa023cbf23edee4f56 --- /dev/null +++ b/hyperparameter/n3/tabbyflow/tabbyflow-n3-20260505_010259/tabular_bundle/pipeline_n3/test.csv @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:c80ba530c12c66a78530db5d98ead5f78fcdad2fe5eccccbc28d9649ceaa6023 +size 229825 diff --git a/hyperparameter/n3/tabbyflow/tabbyflow-n3-20260505_010259/tabular_bundle/pipeline_n3/val.csv b/hyperparameter/n3/tabbyflow/tabbyflow-n3-20260505_010259/tabular_bundle/pipeline_n3/val.csv new file mode 100644 index 0000000000000000000000000000000000000000..b4297372e8b9b076d6c03efa023cbf23edee4f56 --- /dev/null +++ b/hyperparameter/n3/tabbyflow/tabbyflow-n3-20260505_010259/tabular_bundle/pipeline_n3/val.csv @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:c80ba530c12c66a78530db5d98ead5f78fcdad2fe5eccccbc28d9649ceaa6023 +size 229825 diff --git a/hyperparameter/n3/tabbyflow/tabbyflow-n3-20260505_010259/tabular_bundle/pipeline_n3/y_test.npy b/hyperparameter/n3/tabbyflow/tabbyflow-n3-20260505_010259/tabular_bundle/pipeline_n3/y_test.npy new file mode 100644 index 0000000000000000000000000000000000000000..1f737a58cd26592130c3604aaa90044a451eb576 --- /dev/null +++ b/hyperparameter/n3/tabbyflow/tabbyflow-n3-20260505_010259/tabular_bundle/pipeline_n3/y_test.npy @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:85ed37c52f0ea54dfd3a476dcfafff02d61e92783748e5ee9aadfad20578bcb1 +size 31472 diff --git a/hyperparameter/n3/tabbyflow/tabbyflow-n3-20260505_010259/tabular_bundle/pipeline_n3/y_train.npy b/hyperparameter/n3/tabbyflow/tabbyflow-n3-20260505_010259/tabular_bundle/pipeline_n3/y_train.npy new file mode 100644 index 0000000000000000000000000000000000000000..1f737a58cd26592130c3604aaa90044a451eb576 --- /dev/null +++ b/hyperparameter/n3/tabbyflow/tabbyflow-n3-20260505_010259/tabular_bundle/pipeline_n3/y_train.npy @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:85ed37c52f0ea54dfd3a476dcfafff02d61e92783748e5ee9aadfad20578bcb1 +size 31472 diff --git a/hyperparameter/n3/tabbyflow/tabbyflow-n3-20260505_010259/tabular_bundle/pipeline_n3/y_val.npy b/hyperparameter/n3/tabbyflow/tabbyflow-n3-20260505_010259/tabular_bundle/pipeline_n3/y_val.npy new file mode 100644 index 0000000000000000000000000000000000000000..1f737a58cd26592130c3604aaa90044a451eb576 --- /dev/null +++ b/hyperparameter/n3/tabbyflow/tabbyflow-n3-20260505_010259/tabular_bundle/pipeline_n3/y_val.npy @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:85ed37c52f0ea54dfd3a476dcfafff02d61e92783748e5ee9aadfad20578bcb1 +size 31472 diff --git a/hyperparameter/n3/tabbyflow/tabbyflow-n3-20260505_010259/train_20260505_010300.log b/hyperparameter/n3/tabbyflow/tabbyflow-n3-20260505_010259/train_20260505_010300.log new file mode 100644 index 0000000000000000000000000000000000000000..979adf68b3619b43cf241344a4097a37fdd1d1c2 --- /dev/null +++ b/hyperparameter/n3/tabbyflow/tabbyflow-n3-20260505_010259/train_20260505_010300.log @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:9a062f7da2c99345dfc9ebbef4d662b94cd6de50910c7bf38e9098db09f1560d +size 62704 diff --git a/hyperparameter/n3/tabbyflow/tabbyflow-n3-20260505_010529/_tabbyflow_gen.py b/hyperparameter/n3/tabbyflow/tabbyflow-n3-20260505_010529/_tabbyflow_gen.py new file mode 100644 index 0000000000000000000000000000000000000000..0ecc0b756b3ca39ef2ba0eb5ccdd71fdb1a6ff35 --- /dev/null +++ b/hyperparameter/n3/tabbyflow/tabbyflow-n3-20260505_010529/_tabbyflow_gen.py @@ -0,0 +1,34 @@ + +import os, shutil, subprocess, sys +root = r"/workspace/ef-vfm" +name = r"pipeline_n3" +src = r"/work/output-Benchmark-trainonly-v1/n3/tabbyflow/tabbyflow-n3-20260505_010529/tabular_bundle/pipeline_n3" +dst_data = os.path.join(root, "data", name) +shutil.rmtree(dst_data, ignore_errors=True) +shutil.copytree(src, dst_data) +dst_syn = os.path.join(root, "synthetic", name) +os.makedirs(dst_syn, exist_ok=True) +for fn in ("real.csv", "test.csv", "val.csv"): + shutil.copy(os.path.join(src, fn), os.path.join(dst_syn, fn)) +os.chdir(root) +os.environ["PYTHONPATH"] = root + os.pathsep + os.environ.get("PYTHONPATH", "") +os.environ.setdefault("EFVFM_SAMPLE_BATCH_SIZE", "128") +subprocess.check_call([ + sys.executable, "main.py", + "--dataname", name, "--mode", "test", "--gpu", "0", + "--no_wandb", "--exp_name", r"adapter_efvfm", + "--ckpt_path", r"/workspace/ef-vfm/ef_vfm/ckpt/pipeline_n3/adapter_efvfm/model_500.pt", + "--num_samples_to_generate", str(int(3918)), +]) +base = os.path.join(root, "ef_vfm", "result", name, r"adapter_efvfm") +best = None +best_t = -1.0 +for r, _, files in os.walk(base): + if "samples.csv" in files: + p = os.path.join(r, "samples.csv") + t = os.path.getmtime(p) + if t > best_t: + best_t, best = t, p +if not best: + raise SystemExit("tabbyflow: no samples.csv in " + base) +shutil.copy(best, r"/work/output-Benchmark-trainonly-v1/n3/tabbyflow/tabbyflow-n3-20260505_010529/tabbyflow-n3-3918-20260505_010913.csv") diff --git a/hyperparameter/n3/tabbyflow/tabbyflow-n3-20260505_010529/_tabbyflow_train.py b/hyperparameter/n3/tabbyflow/tabbyflow-n3-20260505_010529/_tabbyflow_train.py new file mode 100644 index 0000000000000000000000000000000000000000..aa7a34e96bd38a0f2ed5381a279cd4e71124c2c0 --- /dev/null +++ b/hyperparameter/n3/tabbyflow/tabbyflow-n3-20260505_010529/_tabbyflow_train.py @@ -0,0 +1,24 @@ + +import os, shutil, subprocess, sys +root = r"/workspace/ef-vfm" +name = r"pipeline_n3" +src = r"/work/output-Benchmark-trainonly-v1/n3/tabbyflow/tabbyflow-n3-20260505_010529/tabular_bundle/pipeline_n3" +os.makedirs(os.path.join(root, "data", name), exist_ok=True) +dst_data = os.path.join(root, "data", name) +dst_syn = os.path.join(root, "synthetic", name) +shutil.rmtree(dst_data, ignore_errors=True) +shutil.copytree(src, dst_data) +os.makedirs(dst_syn, exist_ok=True) +for fn in ("real.csv", "test.csv", "val.csv"): + shutil.copy(os.path.join(src, fn), os.path.join(dst_syn, fn)) +os.chdir(root) +os.environ["PYTHONPATH"] = root + os.pathsep + os.environ.get("PYTHONPATH", "") +os.environ["EFVFM_SMOKE_STEPS"] = "200" +os.environ["EFVFM_ADAPTER_TRAIN"] = "1" +os.environ.setdefault("EFVFM_SAMPLE_BATCH_SIZE", "128") +os.environ.setdefault("EFVFM_EVAL_NUM_SAMPLES", "512") +subprocess.check_call([ + sys.executable, "main.py", + "--dataname", name, "--mode", "train", "--gpu", "0", + "--no_wandb", "--exp_name", r"adapter_efvfm", +]) diff --git a/hyperparameter/n3/tabbyflow/tabbyflow-n3-20260505_010529/gen_20260505_010913.log b/hyperparameter/n3/tabbyflow/tabbyflow-n3-20260505_010529/gen_20260505_010913.log new file mode 100644 index 0000000000000000000000000000000000000000..ed946d61e466db144e949ed3775e24f7ecd4ac99 --- /dev/null +++ b/hyperparameter/n3/tabbyflow/tabbyflow-n3-20260505_010529/gen_20260505_010913.log @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:1a77e6b93f6ee957de7b9b0a82aa518b655746e4535a054d44b94cc2c109f1f6 +size 3946 diff --git a/hyperparameter/n3/tabbyflow/tabbyflow-n3-20260505_010529/input_snapshot.json b/hyperparameter/n3/tabbyflow/tabbyflow-n3-20260505_010529/input_snapshot.json new file mode 100644 index 0000000000000000000000000000000000000000..3a0cbc32605f1212374c27c5a11c08064d5b6b53 --- /dev/null +++ b/hyperparameter/n3/tabbyflow/tabbyflow-n3-20260505_010529/input_snapshot.json @@ -0,0 +1,36 @@ +{ + "dataset_id": "n3", + "model": "tabbyflow", + "inputs": { + "train_csv": { + "path": "/data/jialinzhang/SynthesizePipeline-server/DatasetNew/n3/n3-train.csv", + "exists": true, + "size": 211519, + "sha256": "2160a06db2fea02adb0ebb79d8d853bd2544580be301e71f6e8deeb1489a9009" + }, + "val_csv": { + "path": "/data/jialinzhang/SynthesizePipeline-server/DatasetNew/n3/n3-val.csv", + "exists": true, + "size": 26499, + "sha256": "d5ccfee07dfa9e7bdee5bb87642b43828e09f74c6cc0266a3d19d9feaa83106e" + }, + "test_csv": { + "path": "/data/jialinzhang/SynthesizePipeline-server/DatasetNew/n3/n3-test.csv", + "exists": true, + "size": 26676, + "sha256": "6f83aacb0d1747b95e287352a7fff5d9d65a1c127b773852346c68485c4ede47" + }, + "profile_json": { + "path": "/data/jialinzhang/SynthesizePipeline-server/DatasetNew/artifacts/data_core/tabular/n3/n3-dataset_profile.json", + "exists": true, + "size": 5235, + "sha256": "23d2e5904a2ca90cbf8d6e3c75887681721e9b90cc705c31a680c11513d0c46f" + }, + "contract_json": { + "path": "/data/jialinzhang/SynthesizePipeline-server/DatasetNew/artifacts/data_core/tabular/n3/n3-dataset_contract_v1.json", + "exists": true, + "size": 6281, + "sha256": "c0cc56f5fe28e1b65927255c6e3c2b0e9479862c2ec6f2fea1664da36c9a3a09" + } + } +} \ No newline at end of file diff --git a/hyperparameter/n3/tabbyflow/tabbyflow-n3-20260505_010529/models_tabbyflow/trained.pt b/hyperparameter/n3/tabbyflow/tabbyflow-n3-20260505_010529/models_tabbyflow/trained.pt new file mode 100644 index 0000000000000000000000000000000000000000..f063a878c470d9d40f79db79881596e1e497dffd --- /dev/null +++ b/hyperparameter/n3/tabbyflow/tabbyflow-n3-20260505_010529/models_tabbyflow/trained.pt @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:adb734fec12f2251befd371dca69e481b19464aded2a6823105a01b4be6ddbe5 +size 40 diff --git a/hyperparameter/n3/tabbyflow/tabbyflow-n3-20260505_010529/public_gate/normalized_schema_snapshot.json b/hyperparameter/n3/tabbyflow/tabbyflow-n3-20260505_010529/public_gate/normalized_schema_snapshot.json new file mode 100644 index 0000000000000000000000000000000000000000..c41fe304503de23190a02e6cbfafa35b3bf134d3 --- /dev/null +++ b/hyperparameter/n3/tabbyflow/tabbyflow-n3-20260505_010529/public_gate/normalized_schema_snapshot.json @@ -0,0 +1,259 @@ +{ + "dataset_id": "n3", + "target_column": "quality", + "task_type": "classification", + "columns": [ + { + "name": "fixed acidity", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 66, + "unique_ratio": 0.016845, + "example_values": [ + "7.1", + "8.5", + "6.4", + "6.8", + "7.6" + ] + } + }, + { + "name": "volatile acidity", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 121, + "unique_ratio": 0.030883, + "example_values": [ + "0.31", + "0.21", + "0.24", + "0.43", + "0.27" + ] + } + }, + { + "name": "citric acid", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 85, + "unique_ratio": 0.021695, + "example_values": [ + "0.17", + "0.41", + "0.31", + "0.25", + "0.3" + ] + } + }, + { + "name": "residual sugar", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 296, + "unique_ratio": 0.075549, + "example_values": [ + "1", + "4.3", + "2.8", + "13", + "12.9" + ] + } + }, + { + "name": "chlorides", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 147, + "unique_ratio": 0.037519, + "example_values": [ + "0.042", + "0.036", + "0.038", + "0.047", + "0.033" + ] + } + }, + { + "name": "free sulfur dioxide", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 120, + "unique_ratio": 0.030628, + "example_values": [ + "21", + "24", + "41", + "43", + "69" + ] + } + }, + { + "name": "total sulfur dioxide", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 244, + "unique_ratio": 0.062277, + "example_values": [ + "144", + "99", + "114", + "132", + "160" + ] + } + }, + { + "name": "density", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 839, + "unique_ratio": 0.21414, + "example_values": [ + "0.99304", + "0.9947", + "0.99155", + "0.98975", + "0.99705" + ] + } + }, + { + "name": "pH", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 100, + "unique_ratio": 0.025523, + "example_values": [ + "3.13", + "3.18", + "3.37", + "3.21", + "3.16" + ] + } + }, + { + "name": "sulphates", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 78, + "unique_ratio": 0.019908, + "example_values": [ + "0.4", + "0.53", + "0.66", + "0.47", + "0.5" + ] + } + }, + { + "name": "alcohol", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 97, + "unique_ratio": 0.024758, + "example_values": [ + "9.6", + "9.7", + "11.7", + "13.4", + "8.8" + ] + } + }, + { + "name": "quality", + "role": "target", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 7, + "unique_ratio": 0.001787, + "example_values": [ + "5", + "6", + "7", + "8", + "3" + ] + } + } + ] +} \ No newline at end of file diff --git a/hyperparameter/n3/tabbyflow/tabbyflow-n3-20260505_010529/public_gate/public_gate_report.json b/hyperparameter/n3/tabbyflow/tabbyflow-n3-20260505_010529/public_gate/public_gate_report.json new file mode 100644 index 0000000000000000000000000000000000000000..93b97319f739e39079d6c6549fd2020f8a6dac25 --- /dev/null +++ b/hyperparameter/n3/tabbyflow/tabbyflow-n3-20260505_010529/public_gate/public_gate_report.json @@ -0,0 +1,37 @@ +{ + "dataset_id": "n3", + "status": "pass", + "checks": [ + { + "check_id": "PG001_csv_parse_ok", + "status": "pass" + }, + { + "check_id": "PG002_split_header_consistent", + "status": "pass" + }, + { + "check_id": "PG003_profile_header_match", + "status": "pass" + }, + { + "check_id": "PG004_missing_token_normalized", + "status": "pass" + }, + { + "check_id": "PG005_semantic_type_validated", + "status": "pass" + }, + { + "check_id": "PG006_target_defined_and_valid", + "status": "pass" + } + ], + "target_column": "quality", + "task_type": "classification", + "input_splits": { + "train": "/data/jialinzhang/SynthesizePipeline-server/DatasetNew/n3/n3-train.csv", + "val": "/data/jialinzhang/SynthesizePipeline-server/DatasetNew/n3/n3-val.csv", + "test": "/data/jialinzhang/SynthesizePipeline-server/DatasetNew/n3/n3-test.csv" + } +} \ No newline at end of file diff --git a/hyperparameter/n3/tabbyflow/tabbyflow-n3-20260505_010529/public_gate/staged_input_manifest.json b/hyperparameter/n3/tabbyflow/tabbyflow-n3-20260505_010529/public_gate/staged_input_manifest.json new file mode 100644 index 0000000000000000000000000000000000000000..7cfd80f5a4987cf0cafb12b7c219ab830355c27c --- /dev/null +++ b/hyperparameter/n3/tabbyflow/tabbyflow-n3-20260505_010529/public_gate/staged_input_manifest.json @@ -0,0 +1,264 @@ +{ + "dataset_id": "n3", + "target_column": "quality", + "task_type": "classification", + "train_csv": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/n3/tabbyflow/tabbyflow-n3-20260505_010529/staged/public/train.csv", + "val_csv": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/n3/tabbyflow/tabbyflow-n3-20260505_010529/staged/public/val.csv", + "test_csv": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/n3/tabbyflow/tabbyflow-n3-20260505_010529/staged/public/test.csv", + "features_json": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/n3/tabbyflow/tabbyflow-n3-20260505_010529/staged/public/staged_features.json", + "public_gate_report": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/n3/tabbyflow/tabbyflow-n3-20260505_010529/public_gate/public_gate_report.json", + "column_schema": [ + { + "name": "fixed acidity", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 66, + "unique_ratio": 0.016845, + "example_values": [ + "7.1", + "8.5", + "6.4", + "6.8", + "7.6" + ] + } + }, + { + "name": "volatile acidity", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 121, + "unique_ratio": 0.030883, + "example_values": [ + "0.31", + "0.21", + "0.24", + "0.43", + "0.27" + ] + } + }, + { + "name": "citric acid", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 85, + "unique_ratio": 0.021695, + "example_values": [ + "0.17", + "0.41", + "0.31", + "0.25", + "0.3" + ] + } + }, + { + "name": "residual sugar", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 296, + "unique_ratio": 0.075549, + "example_values": [ + "1", + "4.3", + "2.8", + "13", + "12.9" + ] + } + }, + { + "name": "chlorides", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 147, + "unique_ratio": 0.037519, + "example_values": [ + "0.042", + "0.036", + "0.038", + "0.047", + "0.033" + ] + } + }, + { + "name": "free sulfur dioxide", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 120, + "unique_ratio": 0.030628, + "example_values": [ + "21", + "24", + "41", + "43", + "69" + ] + } + }, + { + "name": "total sulfur dioxide", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 244, + "unique_ratio": 0.062277, + "example_values": [ + "144", + "99", + "114", + "132", + "160" + ] + } + }, + { + "name": "density", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 839, + "unique_ratio": 0.21414, + "example_values": [ + "0.99304", + "0.9947", + "0.99155", + "0.98975", + "0.99705" + ] + } + }, + { + "name": "pH", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 100, + "unique_ratio": 0.025523, + "example_values": [ + "3.13", + "3.18", + "3.37", + "3.21", + "3.16" + ] + } + }, + { + "name": "sulphates", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 78, + "unique_ratio": 0.019908, + "example_values": [ + "0.4", + "0.53", + "0.66", + "0.47", + "0.5" + ] + } + }, + { + "name": "alcohol", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 97, + "unique_ratio": 0.024758, + "example_values": [ + "9.6", + "9.7", + "11.7", + "13.4", + "8.8" + ] + } + }, + { + "name": "quality", + "role": "target", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 7, + "unique_ratio": 0.001787, + "example_values": [ + "5", + "6", + "7", + "8", + "3" + ] + } + } + ] +} \ No newline at end of file diff --git a/hyperparameter/n3/tabbyflow/tabbyflow-n3-20260505_010529/run_config.json b/hyperparameter/n3/tabbyflow/tabbyflow-n3-20260505_010529/run_config.json new file mode 100644 index 0000000000000000000000000000000000000000..df445b37fe9b0af9d423eae9c8be5c060e870677 --- /dev/null +++ b/hyperparameter/n3/tabbyflow/tabbyflow-n3-20260505_010529/run_config.json @@ -0,0 +1,42 @@ +{ + "schema_version": 1, + "recorded_at": "2026-05-05T01:05:30", + "dataset_id": "n3", + "model": "tabbyflow", + "work_dir": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/n3/tabbyflow/tabbyflow-n3-20260505_010529", + "dataset_source_requested": "new", + "dataset_source_resolved": "new", + "cli_args": { + "model": "tabbyflow", + "dataset": "n3", + "dataset_source": "new", + "train": true, + "generate": true, + "num_rows": 0, + "epochs": 200, + "output_dir": null, + "model_dir": null, + "work_dir": null, + "resume": false, + "no_stats": false + }, + "resolved": { + "num_rows": 3918, + "model_path": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/n3/tabbyflow/tabbyflow-n3-20260505_010529/models_tabbyflow/trained.pt", + "output_csv": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/n3/tabbyflow/tabbyflow-n3-20260505_010529/tabbyflow-n3-3918-20260505_010913.csv" + }, + "input_artifacts": { + "public_gate_report": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/n3/tabbyflow/tabbyflow-n3-20260505_010529/public_gate/public_gate_report.json", + "public_manifest": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/n3/tabbyflow/tabbyflow-n3-20260505_010529/public_gate/staged_input_manifest.json", + "model_manifest": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/n3/tabbyflow/tabbyflow-n3-20260505_010529/staged/tabbyflow/model_input_manifest.json", + "train_csv": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/n3/tabbyflow/tabbyflow-n3-20260505_010529/staged/public/train.csv", + "features_json": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/n3/tabbyflow/tabbyflow-n3-20260505_010529/staged/public/staged_features.json", + "target_column": "quality", + "task_type": "classification" + }, + "env_overrides": { + "BENCHMARK_TABBYFLOW_GPUS": "device=0", + "EFVFM_EVAL_NUM_SAMPLES": "512", + "EFVFM_SAMPLE_BATCH_SIZE": "64" + } +} \ No newline at end of file diff --git a/hyperparameter/n3/tabbyflow/tabbyflow-n3-20260505_010529/runtime_result.json b/hyperparameter/n3/tabbyflow/tabbyflow-n3-20260505_010529/runtime_result.json new file mode 100644 index 0000000000000000000000000000000000000000..76df4f308ba712055781e2f515e6e54cdd29d27f --- /dev/null +++ b/hyperparameter/n3/tabbyflow/tabbyflow-n3-20260505_010529/runtime_result.json @@ -0,0 +1,27 @@ +{ + "dataset_id": "n3", + "model": "tabbyflow", + "run_id": "tabbyflow-n3-20260505_010529", + "public_gate_status": "pass", + "adapter_ready_status": "pass", + "train_status": "success", + "generate_status": "success", + "reason_code": null, + "reason_detail": null, + "artifacts": { + "synthetic_csv": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/n3/tabbyflow/tabbyflow-n3-20260505_010529/tabbyflow-n3-3918-20260505_010913.csv", + "model_path": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/n3/tabbyflow/tabbyflow-n3-20260505_010529/models_tabbyflow/trained.pt" + }, + "timings": { + "train": { + "started_at": "2026-05-05T01:05:30", + "ended_at": "2026-05-05T01:09:13", + "duration_sec": 223.839 + }, + "generate": { + "started_at": "2026-05-05T01:09:13", + "ended_at": "2026-05-05T01:09:40", + "duration_sec": 26.523 + } + } +} \ No newline at end of file diff --git a/hyperparameter/n3/tabbyflow/tabbyflow-n3-20260505_010529/staged/public/staged_features.json b/hyperparameter/n3/tabbyflow/tabbyflow-n3-20260505_010529/staged/public/staged_features.json new file mode 100644 index 0000000000000000000000000000000000000000..08fe4d766d091d2f2ddba724a16b9509cbe4c390 --- /dev/null +++ b/hyperparameter/n3/tabbyflow/tabbyflow-n3-20260505_010529/staged/public/staged_features.json @@ -0,0 +1,62 @@ +[ + { + "feature_name": "fixed acidity", + "data_type": "continuous", + "is_target": false + }, + { + "feature_name": "volatile acidity", + "data_type": "continuous", + "is_target": false + }, + { + "feature_name": "citric acid", + "data_type": "continuous", + "is_target": false + }, + { + "feature_name": "residual sugar", + "data_type": "continuous", + "is_target": false + }, + { + "feature_name": "chlorides", + "data_type": "continuous", + "is_target": false + }, + { + "feature_name": "free sulfur dioxide", + "data_type": "continuous", + "is_target": false + }, + { + "feature_name": "total sulfur dioxide", + "data_type": "continuous", + "is_target": false + }, + { + "feature_name": "density", + "data_type": "continuous", + "is_target": false + }, + { + "feature_name": "pH", + "data_type": "continuous", + "is_target": false + }, + { + "feature_name": "sulphates", + "data_type": "continuous", + "is_target": false + }, + { + "feature_name": "alcohol", + "data_type": "continuous", + "is_target": false + }, + { + "feature_name": "quality", + "data_type": "continuous", + "is_target": true + } +] \ No newline at end of file diff --git a/hyperparameter/n3/tabbyflow/tabbyflow-n3-20260505_010529/staged/public/test.csv b/hyperparameter/n3/tabbyflow/tabbyflow-n3-20260505_010529/staged/public/test.csv new file mode 100644 index 0000000000000000000000000000000000000000..db5cd50d3746410ea470625fa2ba2c8e9775cc0d --- /dev/null +++ b/hyperparameter/n3/tabbyflow/tabbyflow-n3-20260505_010529/staged/public/test.csv @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:19e107152a94432e2a37ff045c00cfe35e1be30208b1553080d7dd0ede256d3b +size 28944 diff --git a/hyperparameter/n3/tabbyflow/tabbyflow-n3-20260505_010529/staged/public/train.csv b/hyperparameter/n3/tabbyflow/tabbyflow-n3-20260505_010529/staged/public/train.csv new file mode 100644 index 0000000000000000000000000000000000000000..87ca26726fe82ccbaa397919305b043c17eb374e --- /dev/null +++ b/hyperparameter/n3/tabbyflow/tabbyflow-n3-20260505_010529/staged/public/train.csv @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:7813c8cca73ba4bfc6559215257b341c21e459980ad17ae6ddc809306bc9a0b9 +size 229945 diff --git a/hyperparameter/n3/tabbyflow/tabbyflow-n3-20260505_010529/staged/public/val.csv b/hyperparameter/n3/tabbyflow/tabbyflow-n3-20260505_010529/staged/public/val.csv new file mode 100644 index 0000000000000000000000000000000000000000..6acf84c76c47093b513c46d5503972a2dff275c0 --- /dev/null +++ b/hyperparameter/n3/tabbyflow/tabbyflow-n3-20260505_010529/staged/public/val.csv @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:cf5979d9675567d9d6642640c9b84fc6c49e492604144723c30f50516c05cee6 +size 28791 diff --git a/hyperparameter/n3/tabbyflow/tabbyflow-n3-20260505_010529/staged/tabbyflow/adapter_report.json b/hyperparameter/n3/tabbyflow/tabbyflow-n3-20260505_010529/staged/tabbyflow/adapter_report.json new file mode 100644 index 0000000000000000000000000000000000000000..451ebb3de05e986a8a9be0fe3e7cce0a25b32245 --- /dev/null +++ b/hyperparameter/n3/tabbyflow/tabbyflow-n3-20260505_010529/staged/tabbyflow/adapter_report.json @@ -0,0 +1,7 @@ +{ + "adapter_ready_status": "pass", + "adapter_fail_reason_code": null, + "adapter_fail_detail": null, + "adapter_transforms_applied": [], + "model_input_manifest": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/n3/tabbyflow/tabbyflow-n3-20260505_010529/staged/tabbyflow/model_input_manifest.json" +} \ No newline at end of file diff --git a/hyperparameter/n3/tabbyflow/tabbyflow-n3-20260505_010529/staged/tabbyflow/adapter_transforms_applied.json b/hyperparameter/n3/tabbyflow/tabbyflow-n3-20260505_010529/staged/tabbyflow/adapter_transforms_applied.json new file mode 100644 index 0000000000000000000000000000000000000000..0637a088a01e8ddab3bf3fa98dbe804cbde1a0dc --- /dev/null +++ b/hyperparameter/n3/tabbyflow/tabbyflow-n3-20260505_010529/staged/tabbyflow/adapter_transforms_applied.json @@ -0,0 +1 @@ +[] \ No newline at end of file diff --git a/hyperparameter/n3/tabbyflow/tabbyflow-n3-20260505_010529/staged/tabbyflow/model_input_manifest.json b/hyperparameter/n3/tabbyflow/tabbyflow-n3-20260505_010529/staged/tabbyflow/model_input_manifest.json new file mode 100644 index 0000000000000000000000000000000000000000..9f9dcf0c02df1a9f05894db341a89716e2ad5006 --- /dev/null +++ b/hyperparameter/n3/tabbyflow/tabbyflow-n3-20260505_010529/staged/tabbyflow/model_input_manifest.json @@ -0,0 +1,266 @@ +{ + "dataset_id": "n3", + "model": "tabbyflow", + "target_column": "quality", + "task_type": "classification", + "column_schema": [ + { + "name": "fixed acidity", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 66, + "unique_ratio": 0.016845, + "example_values": [ + "7.1", + "8.5", + "6.4", + "6.8", + "7.6" + ] + } + }, + { + "name": "volatile acidity", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 121, + "unique_ratio": 0.030883, + "example_values": [ + "0.31", + "0.21", + "0.24", + "0.43", + "0.27" + ] + } + }, + { + "name": "citric acid", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 85, + "unique_ratio": 0.021695, + "example_values": [ + "0.17", + "0.41", + "0.31", + "0.25", + "0.3" + ] + } + }, + { + "name": "residual sugar", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 296, + "unique_ratio": 0.075549, + "example_values": [ + "1", + "4.3", + "2.8", + "13", + "12.9" + ] + } + }, + { + "name": "chlorides", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 147, + "unique_ratio": 0.037519, + "example_values": [ + "0.042", + "0.036", + "0.038", + "0.047", + "0.033" + ] + } + }, + { + "name": "free sulfur dioxide", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 120, + "unique_ratio": 0.030628, + "example_values": [ + "21", + "24", + "41", + "43", + "69" + ] + } + }, + { + "name": "total sulfur dioxide", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 244, + "unique_ratio": 0.062277, + "example_values": [ + "144", + "99", + "114", + "132", + "160" + ] + } + }, + { + "name": "density", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 839, + "unique_ratio": 0.21414, + "example_values": [ + "0.99304", + "0.9947", + "0.99155", + "0.98975", + "0.99705" + ] + } + }, + { + "name": "pH", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 100, + "unique_ratio": 0.025523, + "example_values": [ + "3.13", + "3.18", + "3.37", + "3.21", + "3.16" + ] + } + }, + { + "name": "sulphates", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 78, + "unique_ratio": 0.019908, + "example_values": [ + "0.4", + "0.53", + "0.66", + "0.47", + "0.5" + ] + } + }, + { + "name": "alcohol", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 97, + "unique_ratio": 0.024758, + "example_values": [ + "9.6", + "9.7", + "11.7", + "13.4", + "8.8" + ] + } + }, + { + "name": "quality", + "role": "target", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 7, + "unique_ratio": 0.001787, + "example_values": [ + "5", + "6", + "7", + "8", + "3" + ] + } + } + ], + "public_manifest": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/n3/tabbyflow/tabbyflow-n3-20260505_010529/public_gate/staged_input_manifest.json", + "train_csv": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/n3/tabbyflow/tabbyflow-n3-20260505_010529/staged/public/train.csv", + "val_csv": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/n3/tabbyflow/tabbyflow-n3-20260505_010529/staged/public/val.csv", + "test_csv": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/n3/tabbyflow/tabbyflow-n3-20260505_010529/staged/public/test.csv", + "features_json": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/n3/tabbyflow/tabbyflow-n3-20260505_010529/staged/public/staged_features.json", + "public_gate_report": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/n3/tabbyflow/tabbyflow-n3-20260505_010529/public_gate/public_gate_report.json" +} \ No newline at end of file diff --git a/hyperparameter/n3/tabbyflow/tabbyflow-n3-20260505_010529/tabbyflow-n3-3918-20260505_010913.csv b/hyperparameter/n3/tabbyflow/tabbyflow-n3-20260505_010529/tabbyflow-n3-3918-20260505_010913.csv new file mode 100644 index 0000000000000000000000000000000000000000..17a416ed0150a35c859e69f8e6cf47f28f214d3d --- /dev/null +++ b/hyperparameter/n3/tabbyflow/tabbyflow-n3-20260505_010529/tabbyflow-n3-3918-20260505_010913.csv @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:0766c73087d6969b84e58df584a232c091aefea12dd7f0b115a43b9d8b01816b +size 339793 diff --git a/hyperparameter/n3/tabbyflow/tabbyflow-n3-20260505_010529/tabbyflow_train_meta.json b/hyperparameter/n3/tabbyflow/tabbyflow-n3-20260505_010529/tabbyflow_train_meta.json new file mode 100644 index 0000000000000000000000000000000000000000..13793d43b34a820b836fff15d2c89cf1b51d96b1 --- /dev/null +++ b/hyperparameter/n3/tabbyflow/tabbyflow-n3-20260505_010529/tabbyflow_train_meta.json @@ -0,0 +1,5 @@ +{ + "exp_name": "adapter_efvfm", + "dataname": "pipeline_n3", + "steps": 200 +} \ No newline at end of file diff --git a/hyperparameter/n3/tabbyflow/tabbyflow-n3-20260505_010529/tabular_bundle/pipeline_n3/X_cat_test.npy b/hyperparameter/n3/tabbyflow/tabbyflow-n3-20260505_010529/tabular_bundle/pipeline_n3/X_cat_test.npy new file mode 100644 index 0000000000000000000000000000000000000000..76306e45faf838d072c21b887a4c1d43d486dc1b --- /dev/null +++ b/hyperparameter/n3/tabbyflow/tabbyflow-n3-20260505_010529/tabular_bundle/pipeline_n3/X_cat_test.npy @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:87f6573fdfd40c6332a9ef925bcb48bc20f08b3a6f72b6dceb949ae36d1871f7 +size 128 diff --git a/hyperparameter/n3/tabbyflow/tabbyflow-n3-20260505_010529/tabular_bundle/pipeline_n3/X_cat_train.npy b/hyperparameter/n3/tabbyflow/tabbyflow-n3-20260505_010529/tabular_bundle/pipeline_n3/X_cat_train.npy new file mode 100644 index 0000000000000000000000000000000000000000..76306e45faf838d072c21b887a4c1d43d486dc1b --- /dev/null +++ b/hyperparameter/n3/tabbyflow/tabbyflow-n3-20260505_010529/tabular_bundle/pipeline_n3/X_cat_train.npy @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:87f6573fdfd40c6332a9ef925bcb48bc20f08b3a6f72b6dceb949ae36d1871f7 +size 128 diff --git a/hyperparameter/n3/tabbyflow/tabbyflow-n3-20260505_010529/tabular_bundle/pipeline_n3/X_cat_val.npy b/hyperparameter/n3/tabbyflow/tabbyflow-n3-20260505_010529/tabular_bundle/pipeline_n3/X_cat_val.npy new file mode 100644 index 0000000000000000000000000000000000000000..76306e45faf838d072c21b887a4c1d43d486dc1b --- /dev/null +++ b/hyperparameter/n3/tabbyflow/tabbyflow-n3-20260505_010529/tabular_bundle/pipeline_n3/X_cat_val.npy @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:87f6573fdfd40c6332a9ef925bcb48bc20f08b3a6f72b6dceb949ae36d1871f7 +size 128 diff --git a/hyperparameter/n3/tabbyflow/tabbyflow-n3-20260505_010529/tabular_bundle/pipeline_n3/X_num_test.npy b/hyperparameter/n3/tabbyflow/tabbyflow-n3-20260505_010529/tabular_bundle/pipeline_n3/X_num_test.npy new file mode 100644 index 0000000000000000000000000000000000000000..94beb8413ef55592710518365965f4cb503523ee --- /dev/null +++ b/hyperparameter/n3/tabbyflow/tabbyflow-n3-20260505_010529/tabular_bundle/pipeline_n3/X_num_test.npy @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:093d8f405d764277d5a007953f25ab6466f0857f71f0d8f3c437463fb5bf240a +size 172520 diff --git a/hyperparameter/n3/tabbyflow/tabbyflow-n3-20260505_010529/tabular_bundle/pipeline_n3/X_num_train.npy b/hyperparameter/n3/tabbyflow/tabbyflow-n3-20260505_010529/tabular_bundle/pipeline_n3/X_num_train.npy new file mode 100644 index 0000000000000000000000000000000000000000..94beb8413ef55592710518365965f4cb503523ee --- /dev/null +++ b/hyperparameter/n3/tabbyflow/tabbyflow-n3-20260505_010529/tabular_bundle/pipeline_n3/X_num_train.npy @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:093d8f405d764277d5a007953f25ab6466f0857f71f0d8f3c437463fb5bf240a +size 172520 diff --git a/hyperparameter/n3/tabbyflow/tabbyflow-n3-20260505_010529/tabular_bundle/pipeline_n3/X_num_val.npy b/hyperparameter/n3/tabbyflow/tabbyflow-n3-20260505_010529/tabular_bundle/pipeline_n3/X_num_val.npy new file mode 100644 index 0000000000000000000000000000000000000000..94beb8413ef55592710518365965f4cb503523ee --- /dev/null +++ b/hyperparameter/n3/tabbyflow/tabbyflow-n3-20260505_010529/tabular_bundle/pipeline_n3/X_num_val.npy @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:093d8f405d764277d5a007953f25ab6466f0857f71f0d8f3c437463fb5bf240a +size 172520 diff --git a/hyperparameter/n3/tabbyflow/tabbyflow-n3-20260505_010529/tabular_bundle/pipeline_n3/info.json b/hyperparameter/n3/tabbyflow/tabbyflow-n3-20260505_010529/tabular_bundle/pipeline_n3/info.json new file mode 100644 index 0000000000000000000000000000000000000000..8b5f7b3a1a0c4ba2d967287826b9f5c5fd7619de --- /dev/null +++ b/hyperparameter/n3/tabbyflow/tabbyflow-n3-20260505_010529/tabular_bundle/pipeline_n3/info.json @@ -0,0 +1,139 @@ +{ + "name": "pipeline_n3", + "task_type": "multiclass", + "n_num_features": 11, + "n_cat_features": 0, + "train_size": 3918, + "test_num": 3918, + "val_num": 3918, + "train_num": 3918, + "bundle_note": "val/test matrices are train copies (train-only policy; no real held-out rows).", + "num_col_idx": [ + 0, + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10 + ], + "cat_col_idx": [], + "target_col_idx": [ + 11 + ], + "column_names": [ + "fixed acidity", + "volatile acidity", + "citric acid", + "residual sugar", + "chlorides", + "free sulfur dioxide", + "total sulfur dioxide", + "density", + "pH", + "sulphates", + "alcohol", + "quality" + ], + "int_col_idx": [], + "int_columns": [], + "int_col_idx_wrt_num": [], + "metadata": { + "columns": { + "0": { + "sdtype": "numerical", + "computer_representation": "Float" + }, + "1": { + "sdtype": "numerical", + "computer_representation": "Float" + }, + "2": { + "sdtype": "numerical", + "computer_representation": "Float" + }, + "3": { + "sdtype": "numerical", + "computer_representation": "Float" + }, + "4": { + "sdtype": "numerical", + "computer_representation": "Float" + }, + "5": { + "sdtype": "numerical", + "computer_representation": "Float" + }, + "6": { + "sdtype": "numerical", + "computer_representation": "Float" + }, + "7": { + "sdtype": "numerical", + "computer_representation": "Float" + }, + "8": { + "sdtype": "numerical", + "computer_representation": "Float" + }, + "9": { + "sdtype": "numerical", + "computer_representation": "Float" + }, + "10": { + "sdtype": "numerical", + "computer_representation": "Float" + }, + "11": { + "sdtype": "categorical" + } + } + }, + "idx_mapping": { + "0": 0, + "1": 1, + "2": 2, + "3": 3, + "4": 4, + "5": 5, + "6": 6, + "7": 7, + "8": 8, + "9": 9, + "10": 10, + "11": 11 + }, + "inverse_idx_mapping": { + "0": 0, + "1": 1, + "2": 2, + "3": 3, + "4": 4, + "5": 5, + "6": 6, + "7": 7, + "8": 8, + "9": 9, + "10": 10, + "11": 11 + }, + "idx_name_mapping": { + "0": "fixed acidity", + "1": "volatile acidity", + "2": "citric acid", + "3": "residual sugar", + "4": "chlorides", + "5": "free sulfur dioxide", + "6": "total sulfur dioxide", + "7": "density", + "8": "pH", + "9": "sulphates", + "10": "alcohol", + "11": "quality" + }, + "n_classes": 7 +} \ No newline at end of file diff --git a/hyperparameter/n3/tabbyflow/tabbyflow-n3-20260505_010529/tabular_bundle/pipeline_n3/real.csv b/hyperparameter/n3/tabbyflow/tabbyflow-n3-20260505_010529/tabular_bundle/pipeline_n3/real.csv new file mode 100644 index 0000000000000000000000000000000000000000..b4297372e8b9b076d6c03efa023cbf23edee4f56 --- /dev/null +++ b/hyperparameter/n3/tabbyflow/tabbyflow-n3-20260505_010529/tabular_bundle/pipeline_n3/real.csv @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:c80ba530c12c66a78530db5d98ead5f78fcdad2fe5eccccbc28d9649ceaa6023 +size 229825 diff --git a/hyperparameter/n3/tabbyflow/tabbyflow-n3-20260505_010529/tabular_bundle/pipeline_n3/test.csv b/hyperparameter/n3/tabbyflow/tabbyflow-n3-20260505_010529/tabular_bundle/pipeline_n3/test.csv new file mode 100644 index 0000000000000000000000000000000000000000..b4297372e8b9b076d6c03efa023cbf23edee4f56 --- /dev/null +++ b/hyperparameter/n3/tabbyflow/tabbyflow-n3-20260505_010529/tabular_bundle/pipeline_n3/test.csv @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:c80ba530c12c66a78530db5d98ead5f78fcdad2fe5eccccbc28d9649ceaa6023 +size 229825 diff --git a/hyperparameter/n3/tabbyflow/tabbyflow-n3-20260505_010529/tabular_bundle/pipeline_n3/val.csv b/hyperparameter/n3/tabbyflow/tabbyflow-n3-20260505_010529/tabular_bundle/pipeline_n3/val.csv new file mode 100644 index 0000000000000000000000000000000000000000..b4297372e8b9b076d6c03efa023cbf23edee4f56 --- /dev/null +++ b/hyperparameter/n3/tabbyflow/tabbyflow-n3-20260505_010529/tabular_bundle/pipeline_n3/val.csv @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:c80ba530c12c66a78530db5d98ead5f78fcdad2fe5eccccbc28d9649ceaa6023 +size 229825 diff --git a/hyperparameter/n3/tabbyflow/tabbyflow-n3-20260505_010529/tabular_bundle/pipeline_n3/y_test.npy b/hyperparameter/n3/tabbyflow/tabbyflow-n3-20260505_010529/tabular_bundle/pipeline_n3/y_test.npy new file mode 100644 index 0000000000000000000000000000000000000000..1f737a58cd26592130c3604aaa90044a451eb576 --- /dev/null +++ b/hyperparameter/n3/tabbyflow/tabbyflow-n3-20260505_010529/tabular_bundle/pipeline_n3/y_test.npy @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:85ed37c52f0ea54dfd3a476dcfafff02d61e92783748e5ee9aadfad20578bcb1 +size 31472 diff --git a/hyperparameter/n3/tabbyflow/tabbyflow-n3-20260505_010529/tabular_bundle/pipeline_n3/y_train.npy b/hyperparameter/n3/tabbyflow/tabbyflow-n3-20260505_010529/tabular_bundle/pipeline_n3/y_train.npy new file mode 100644 index 0000000000000000000000000000000000000000..1f737a58cd26592130c3604aaa90044a451eb576 --- /dev/null +++ b/hyperparameter/n3/tabbyflow/tabbyflow-n3-20260505_010529/tabular_bundle/pipeline_n3/y_train.npy @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:85ed37c52f0ea54dfd3a476dcfafff02d61e92783748e5ee9aadfad20578bcb1 +size 31472 diff --git a/hyperparameter/n3/tabbyflow/tabbyflow-n3-20260505_010529/tabular_bundle/pipeline_n3/y_val.npy b/hyperparameter/n3/tabbyflow/tabbyflow-n3-20260505_010529/tabular_bundle/pipeline_n3/y_val.npy new file mode 100644 index 0000000000000000000000000000000000000000..1f737a58cd26592130c3604aaa90044a451eb576 --- /dev/null +++ b/hyperparameter/n3/tabbyflow/tabbyflow-n3-20260505_010529/tabular_bundle/pipeline_n3/y_val.npy @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:85ed37c52f0ea54dfd3a476dcfafff02d61e92783748e5ee9aadfad20578bcb1 +size 31472 diff --git a/hyperparameter/n3/tabbyflow/tabbyflow-n3-20260505_010529/train_20260505_010530.log b/hyperparameter/n3/tabbyflow/tabbyflow-n3-20260505_010529/train_20260505_010530.log new file mode 100644 index 0000000000000000000000000000000000000000..38d087e90b150b713c333750b8326b97c22b20cb --- /dev/null +++ b/hyperparameter/n3/tabbyflow/tabbyflow-n3-20260505_010529/train_20260505_010530.log @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:6178fe20384998efb862094d3bbdd4756983946228da1cd1b2787733c9009307 +size 119247 diff --git a/hyperparameter/n3/tabbyflow/tabbyflow-n3-20260505_010953/_tabbyflow_gen.py b/hyperparameter/n3/tabbyflow/tabbyflow-n3-20260505_010953/_tabbyflow_gen.py new file mode 100644 index 0000000000000000000000000000000000000000..7b9b7cee0e795252f05e78c1d487dc52baeb24a5 --- /dev/null +++ b/hyperparameter/n3/tabbyflow/tabbyflow-n3-20260505_010953/_tabbyflow_gen.py @@ -0,0 +1,34 @@ + +import os, shutil, subprocess, sys +root = r"/workspace/ef-vfm" +name = r"pipeline_n3" +src = r"/work/output-Benchmark-trainonly-v1/n3/tabbyflow/tabbyflow-n3-20260505_010953/tabular_bundle/pipeline_n3" +dst_data = os.path.join(root, "data", name) +shutil.rmtree(dst_data, ignore_errors=True) +shutil.copytree(src, dst_data) +dst_syn = os.path.join(root, "synthetic", name) +os.makedirs(dst_syn, exist_ok=True) +for fn in ("real.csv", "test.csv", "val.csv"): + shutil.copy(os.path.join(src, fn), os.path.join(dst_syn, fn)) +os.chdir(root) +os.environ["PYTHONPATH"] = root + os.pathsep + os.environ.get("PYTHONPATH", "") +os.environ.setdefault("EFVFM_SAMPLE_BATCH_SIZE", "128") +subprocess.check_call([ + sys.executable, "main.py", + "--dataname", name, "--mode", "test", "--gpu", "0", + "--no_wandb", "--exp_name", r"adapter_efvfm", + "--ckpt_path", r"/workspace/ef-vfm/ef_vfm/ckpt/pipeline_n3/adapter_efvfm/model_500.pt", + "--num_samples_to_generate", str(int(3918)), +]) +base = os.path.join(root, "ef_vfm", "result", name, r"adapter_efvfm") +best = None +best_t = -1.0 +for r, _, files in os.walk(base): + if "samples.csv" in files: + p = os.path.join(r, "samples.csv") + t = os.path.getmtime(p) + if t > best_t: + best_t, best = t, p +if not best: + raise SystemExit("tabbyflow: no samples.csv in " + base) +shutil.copy(best, r"/work/output-Benchmark-trainonly-v1/n3/tabbyflow/tabbyflow-n3-20260505_010953/tabbyflow-n3-3918-20260505_011500.csv") diff --git a/hyperparameter/n3/tabbyflow/tabbyflow-n3-20260505_010953/_tabbyflow_train.py b/hyperparameter/n3/tabbyflow/tabbyflow-n3-20260505_010953/_tabbyflow_train.py new file mode 100644 index 0000000000000000000000000000000000000000..531f7b0fd0b6b13283c747175d5e72a930b4436a --- /dev/null +++ b/hyperparameter/n3/tabbyflow/tabbyflow-n3-20260505_010953/_tabbyflow_train.py @@ -0,0 +1,24 @@ + +import os, shutil, subprocess, sys +root = r"/workspace/ef-vfm" +name = r"pipeline_n3" +src = r"/work/output-Benchmark-trainonly-v1/n3/tabbyflow/tabbyflow-n3-20260505_010953/tabular_bundle/pipeline_n3" +os.makedirs(os.path.join(root, "data", name), exist_ok=True) +dst_data = os.path.join(root, "data", name) +dst_syn = os.path.join(root, "synthetic", name) +shutil.rmtree(dst_data, ignore_errors=True) +shutil.copytree(src, dst_data) +os.makedirs(dst_syn, exist_ok=True) +for fn in ("real.csv", "test.csv", "val.csv"): + shutil.copy(os.path.join(src, fn), os.path.join(dst_syn, fn)) +os.chdir(root) +os.environ["PYTHONPATH"] = root + os.pathsep + os.environ.get("PYTHONPATH", "") +os.environ["EFVFM_SMOKE_STEPS"] = "300" +os.environ["EFVFM_ADAPTER_TRAIN"] = "1" +os.environ.setdefault("EFVFM_SAMPLE_BATCH_SIZE", "128") +os.environ.setdefault("EFVFM_EVAL_NUM_SAMPLES", "512") +subprocess.check_call([ + sys.executable, "main.py", + "--dataname", name, "--mode", "train", "--gpu", "0", + "--no_wandb", "--exp_name", r"adapter_efvfm", +]) diff --git a/hyperparameter/n3/tabbyflow/tabbyflow-n3-20260505_010953/gen_20260505_011500.log b/hyperparameter/n3/tabbyflow/tabbyflow-n3-20260505_010953/gen_20260505_011500.log new file mode 100644 index 0000000000000000000000000000000000000000..27601ff2261fc7dc4200d6b706f539015f4b8550 --- /dev/null +++ b/hyperparameter/n3/tabbyflow/tabbyflow-n3-20260505_010953/gen_20260505_011500.log @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:cc856fd1334b87c1ecee0579427b1bcfbfaa484c69747fcb7a5a206b492b919a +size 3946 diff --git a/hyperparameter/n3/tabbyflow/tabbyflow-n3-20260505_010953/input_snapshot.json b/hyperparameter/n3/tabbyflow/tabbyflow-n3-20260505_010953/input_snapshot.json new file mode 100644 index 0000000000000000000000000000000000000000..3a0cbc32605f1212374c27c5a11c08064d5b6b53 --- /dev/null +++ b/hyperparameter/n3/tabbyflow/tabbyflow-n3-20260505_010953/input_snapshot.json @@ -0,0 +1,36 @@ +{ + "dataset_id": "n3", + "model": "tabbyflow", + "inputs": { + "train_csv": { + "path": "/data/jialinzhang/SynthesizePipeline-server/DatasetNew/n3/n3-train.csv", + "exists": true, + "size": 211519, + "sha256": "2160a06db2fea02adb0ebb79d8d853bd2544580be301e71f6e8deeb1489a9009" + }, + "val_csv": { + "path": "/data/jialinzhang/SynthesizePipeline-server/DatasetNew/n3/n3-val.csv", + "exists": true, + "size": 26499, + "sha256": "d5ccfee07dfa9e7bdee5bb87642b43828e09f74c6cc0266a3d19d9feaa83106e" + }, + "test_csv": { + "path": "/data/jialinzhang/SynthesizePipeline-server/DatasetNew/n3/n3-test.csv", + "exists": true, + "size": 26676, + "sha256": "6f83aacb0d1747b95e287352a7fff5d9d65a1c127b773852346c68485c4ede47" + }, + "profile_json": { + "path": "/data/jialinzhang/SynthesizePipeline-server/DatasetNew/artifacts/data_core/tabular/n3/n3-dataset_profile.json", + "exists": true, + "size": 5235, + "sha256": "23d2e5904a2ca90cbf8d6e3c75887681721e9b90cc705c31a680c11513d0c46f" + }, + "contract_json": { + "path": "/data/jialinzhang/SynthesizePipeline-server/DatasetNew/artifacts/data_core/tabular/n3/n3-dataset_contract_v1.json", + "exists": true, + "size": 6281, + "sha256": "c0cc56f5fe28e1b65927255c6e3c2b0e9479862c2ec6f2fea1664da36c9a3a09" + } + } +} \ No newline at end of file diff --git a/hyperparameter/n3/tabbyflow/tabbyflow-n3-20260505_010953/models_tabbyflow/trained.pt b/hyperparameter/n3/tabbyflow/tabbyflow-n3-20260505_010953/models_tabbyflow/trained.pt new file mode 100644 index 0000000000000000000000000000000000000000..f063a878c470d9d40f79db79881596e1e497dffd --- /dev/null +++ b/hyperparameter/n3/tabbyflow/tabbyflow-n3-20260505_010953/models_tabbyflow/trained.pt @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:adb734fec12f2251befd371dca69e481b19464aded2a6823105a01b4be6ddbe5 +size 40 diff --git a/hyperparameter/n3/tabbyflow/tabbyflow-n3-20260505_010953/public_gate/normalized_schema_snapshot.json b/hyperparameter/n3/tabbyflow/tabbyflow-n3-20260505_010953/public_gate/normalized_schema_snapshot.json new file mode 100644 index 0000000000000000000000000000000000000000..c41fe304503de23190a02e6cbfafa35b3bf134d3 --- /dev/null +++ b/hyperparameter/n3/tabbyflow/tabbyflow-n3-20260505_010953/public_gate/normalized_schema_snapshot.json @@ -0,0 +1,259 @@ +{ + "dataset_id": "n3", + "target_column": "quality", + "task_type": "classification", + "columns": [ + { + "name": "fixed acidity", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 66, + "unique_ratio": 0.016845, + "example_values": [ + "7.1", + "8.5", + "6.4", + "6.8", + "7.6" + ] + } + }, + { + "name": "volatile acidity", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 121, + "unique_ratio": 0.030883, + "example_values": [ + "0.31", + "0.21", + "0.24", + "0.43", + "0.27" + ] + } + }, + { + "name": "citric acid", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 85, + "unique_ratio": 0.021695, + "example_values": [ + "0.17", + "0.41", + "0.31", + "0.25", + "0.3" + ] + } + }, + { + "name": "residual sugar", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 296, + "unique_ratio": 0.075549, + "example_values": [ + "1", + "4.3", + "2.8", + "13", + "12.9" + ] + } + }, + { + "name": "chlorides", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 147, + "unique_ratio": 0.037519, + "example_values": [ + "0.042", + "0.036", + "0.038", + "0.047", + "0.033" + ] + } + }, + { + "name": "free sulfur dioxide", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 120, + "unique_ratio": 0.030628, + "example_values": [ + "21", + "24", + "41", + "43", + "69" + ] + } + }, + { + "name": "total sulfur dioxide", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 244, + "unique_ratio": 0.062277, + "example_values": [ + "144", + "99", + "114", + "132", + "160" + ] + } + }, + { + "name": "density", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 839, + "unique_ratio": 0.21414, + "example_values": [ + "0.99304", + "0.9947", + "0.99155", + "0.98975", + "0.99705" + ] + } + }, + { + "name": "pH", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 100, + "unique_ratio": 0.025523, + "example_values": [ + "3.13", + "3.18", + "3.37", + "3.21", + "3.16" + ] + } + }, + { + "name": "sulphates", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 78, + "unique_ratio": 0.019908, + "example_values": [ + "0.4", + "0.53", + "0.66", + "0.47", + "0.5" + ] + } + }, + { + "name": "alcohol", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 97, + "unique_ratio": 0.024758, + "example_values": [ + "9.6", + "9.7", + "11.7", + "13.4", + "8.8" + ] + } + }, + { + "name": "quality", + "role": "target", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 7, + "unique_ratio": 0.001787, + "example_values": [ + "5", + "6", + "7", + "8", + "3" + ] + } + } + ] +} \ No newline at end of file diff --git a/hyperparameter/n3/tabbyflow/tabbyflow-n3-20260505_010953/public_gate/public_gate_report.json b/hyperparameter/n3/tabbyflow/tabbyflow-n3-20260505_010953/public_gate/public_gate_report.json new file mode 100644 index 0000000000000000000000000000000000000000..93b97319f739e39079d6c6549fd2020f8a6dac25 --- /dev/null +++ b/hyperparameter/n3/tabbyflow/tabbyflow-n3-20260505_010953/public_gate/public_gate_report.json @@ -0,0 +1,37 @@ +{ + "dataset_id": "n3", + "status": "pass", + "checks": [ + { + "check_id": "PG001_csv_parse_ok", + "status": "pass" + }, + { + "check_id": "PG002_split_header_consistent", + "status": "pass" + }, + { + "check_id": "PG003_profile_header_match", + "status": "pass" + }, + { + "check_id": "PG004_missing_token_normalized", + "status": "pass" + }, + { + "check_id": "PG005_semantic_type_validated", + "status": "pass" + }, + { + "check_id": "PG006_target_defined_and_valid", + "status": "pass" + } + ], + "target_column": "quality", + "task_type": "classification", + "input_splits": { + "train": "/data/jialinzhang/SynthesizePipeline-server/DatasetNew/n3/n3-train.csv", + "val": "/data/jialinzhang/SynthesizePipeline-server/DatasetNew/n3/n3-val.csv", + "test": "/data/jialinzhang/SynthesizePipeline-server/DatasetNew/n3/n3-test.csv" + } +} \ No newline at end of file diff --git a/hyperparameter/n3/tabbyflow/tabbyflow-n3-20260505_010953/public_gate/staged_input_manifest.json b/hyperparameter/n3/tabbyflow/tabbyflow-n3-20260505_010953/public_gate/staged_input_manifest.json new file mode 100644 index 0000000000000000000000000000000000000000..82b2fe01674047860bb437f948187c22791ac40e --- /dev/null +++ b/hyperparameter/n3/tabbyflow/tabbyflow-n3-20260505_010953/public_gate/staged_input_manifest.json @@ -0,0 +1,264 @@ +{ + "dataset_id": "n3", + "target_column": "quality", + "task_type": "classification", + "train_csv": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/n3/tabbyflow/tabbyflow-n3-20260505_010953/staged/public/train.csv", + "val_csv": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/n3/tabbyflow/tabbyflow-n3-20260505_010953/staged/public/val.csv", + "test_csv": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/n3/tabbyflow/tabbyflow-n3-20260505_010953/staged/public/test.csv", + "features_json": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/n3/tabbyflow/tabbyflow-n3-20260505_010953/staged/public/staged_features.json", + "public_gate_report": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/n3/tabbyflow/tabbyflow-n3-20260505_010953/public_gate/public_gate_report.json", + "column_schema": [ + { + "name": "fixed acidity", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 66, + "unique_ratio": 0.016845, + "example_values": [ + "7.1", + "8.5", + "6.4", + "6.8", + "7.6" + ] + } + }, + { + "name": "volatile acidity", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 121, + "unique_ratio": 0.030883, + "example_values": [ + "0.31", + "0.21", + "0.24", + "0.43", + "0.27" + ] + } + }, + { + "name": "citric acid", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 85, + "unique_ratio": 0.021695, + "example_values": [ + "0.17", + "0.41", + "0.31", + "0.25", + "0.3" + ] + } + }, + { + "name": "residual sugar", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 296, + "unique_ratio": 0.075549, + "example_values": [ + "1", + "4.3", + "2.8", + "13", + "12.9" + ] + } + }, + { + "name": "chlorides", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 147, + "unique_ratio": 0.037519, + "example_values": [ + "0.042", + "0.036", + "0.038", + "0.047", + "0.033" + ] + } + }, + { + "name": "free sulfur dioxide", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 120, + "unique_ratio": 0.030628, + "example_values": [ + "21", + "24", + "41", + "43", + "69" + ] + } + }, + { + "name": "total sulfur dioxide", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 244, + "unique_ratio": 0.062277, + "example_values": [ + "144", + "99", + "114", + "132", + "160" + ] + } + }, + { + "name": "density", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 839, + "unique_ratio": 0.21414, + "example_values": [ + "0.99304", + "0.9947", + "0.99155", + "0.98975", + "0.99705" + ] + } + }, + { + "name": "pH", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 100, + "unique_ratio": 0.025523, + "example_values": [ + "3.13", + "3.18", + "3.37", + "3.21", + "3.16" + ] + } + }, + { + "name": "sulphates", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 78, + "unique_ratio": 0.019908, + "example_values": [ + "0.4", + "0.53", + "0.66", + "0.47", + "0.5" + ] + } + }, + { + "name": "alcohol", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 97, + "unique_ratio": 0.024758, + "example_values": [ + "9.6", + "9.7", + "11.7", + "13.4", + "8.8" + ] + } + }, + { + "name": "quality", + "role": "target", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 7, + "unique_ratio": 0.001787, + "example_values": [ + "5", + "6", + "7", + "8", + "3" + ] + } + } + ] +} \ No newline at end of file diff --git a/hyperparameter/n3/tabbyflow/tabbyflow-n3-20260505_010953/run_config.json b/hyperparameter/n3/tabbyflow/tabbyflow-n3-20260505_010953/run_config.json new file mode 100644 index 0000000000000000000000000000000000000000..fbb634b5a7e3170653dbc95f772ce2bffab1f5fe --- /dev/null +++ b/hyperparameter/n3/tabbyflow/tabbyflow-n3-20260505_010953/run_config.json @@ -0,0 +1,42 @@ +{ + "schema_version": 1, + "recorded_at": "2026-05-05T01:09:53", + "dataset_id": "n3", + "model": "tabbyflow", + "work_dir": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/n3/tabbyflow/tabbyflow-n3-20260505_010953", + "dataset_source_requested": "new", + "dataset_source_resolved": "new", + "cli_args": { + "model": "tabbyflow", + "dataset": "n3", + "dataset_source": "new", + "train": true, + "generate": true, + "num_rows": 0, + "epochs": 300, + "output_dir": null, + "model_dir": null, + "work_dir": null, + "resume": false, + "no_stats": false + }, + "resolved": { + "num_rows": 3918, + "model_path": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/n3/tabbyflow/tabbyflow-n3-20260505_010953/models_tabbyflow/trained.pt", + "output_csv": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/n3/tabbyflow/tabbyflow-n3-20260505_010953/tabbyflow-n3-3918-20260505_011500.csv" + }, + "input_artifacts": { + "public_gate_report": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/n3/tabbyflow/tabbyflow-n3-20260505_010953/public_gate/public_gate_report.json", + "public_manifest": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/n3/tabbyflow/tabbyflow-n3-20260505_010953/public_gate/staged_input_manifest.json", + "model_manifest": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/n3/tabbyflow/tabbyflow-n3-20260505_010953/staged/tabbyflow/model_input_manifest.json", + "train_csv": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/n3/tabbyflow/tabbyflow-n3-20260505_010953/staged/public/train.csv", + "features_json": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/n3/tabbyflow/tabbyflow-n3-20260505_010953/staged/public/staged_features.json", + "target_column": "quality", + "task_type": "classification" + }, + "env_overrides": { + "BENCHMARK_TABBYFLOW_GPUS": "device=0", + "EFVFM_EVAL_NUM_SAMPLES": "1024", + "EFVFM_SAMPLE_BATCH_SIZE": "64" + } +} \ No newline at end of file diff --git a/hyperparameter/n3/tabbyflow/tabbyflow-n3-20260505_010953/runtime_result.json b/hyperparameter/n3/tabbyflow/tabbyflow-n3-20260505_010953/runtime_result.json new file mode 100644 index 0000000000000000000000000000000000000000..259d7647dbd9d34d9b81e78a6cc5019acbef5fef --- /dev/null +++ b/hyperparameter/n3/tabbyflow/tabbyflow-n3-20260505_010953/runtime_result.json @@ -0,0 +1,27 @@ +{ + "dataset_id": "n3", + "model": "tabbyflow", + "run_id": "tabbyflow-n3-20260505_010953", + "public_gate_status": "pass", + "adapter_ready_status": "pass", + "train_status": "success", + "generate_status": "success", + "reason_code": null, + "reason_detail": null, + "artifacts": { + "synthetic_csv": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/n3/tabbyflow/tabbyflow-n3-20260505_010953/tabbyflow-n3-3918-20260505_011500.csv", + "model_path": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/n3/tabbyflow/tabbyflow-n3-20260505_010953/models_tabbyflow/trained.pt" + }, + "timings": { + "train": { + "started_at": "2026-05-05T01:09:53", + "ended_at": "2026-05-05T01:15:00", + "duration_sec": 306.921 + }, + "generate": { + "started_at": "2026-05-05T01:15:00", + "ended_at": "2026-05-05T01:15:26", + "duration_sec": 26.368 + } + } +} \ No newline at end of file diff --git a/hyperparameter/n3/tabbyflow/tabbyflow-n3-20260505_010953/staged/public/staged_features.json b/hyperparameter/n3/tabbyflow/tabbyflow-n3-20260505_010953/staged/public/staged_features.json new file mode 100644 index 0000000000000000000000000000000000000000..08fe4d766d091d2f2ddba724a16b9509cbe4c390 --- /dev/null +++ b/hyperparameter/n3/tabbyflow/tabbyflow-n3-20260505_010953/staged/public/staged_features.json @@ -0,0 +1,62 @@ +[ + { + "feature_name": "fixed acidity", + "data_type": "continuous", + "is_target": false + }, + { + "feature_name": "volatile acidity", + "data_type": "continuous", + "is_target": false + }, + { + "feature_name": "citric acid", + "data_type": "continuous", + "is_target": false + }, + { + "feature_name": "residual sugar", + "data_type": "continuous", + "is_target": false + }, + { + "feature_name": "chlorides", + "data_type": "continuous", + "is_target": false + }, + { + "feature_name": "free sulfur dioxide", + "data_type": "continuous", + "is_target": false + }, + { + "feature_name": "total sulfur dioxide", + "data_type": "continuous", + "is_target": false + }, + { + "feature_name": "density", + "data_type": "continuous", + "is_target": false + }, + { + "feature_name": "pH", + "data_type": "continuous", + "is_target": false + }, + { + "feature_name": "sulphates", + "data_type": "continuous", + "is_target": false + }, + { + "feature_name": "alcohol", + "data_type": "continuous", + "is_target": false + }, + { + "feature_name": "quality", + "data_type": "continuous", + "is_target": true + } +] \ No newline at end of file diff --git a/hyperparameter/n3/tabbyflow/tabbyflow-n3-20260505_010953/staged/public/test.csv b/hyperparameter/n3/tabbyflow/tabbyflow-n3-20260505_010953/staged/public/test.csv new file mode 100644 index 0000000000000000000000000000000000000000..db5cd50d3746410ea470625fa2ba2c8e9775cc0d --- /dev/null +++ b/hyperparameter/n3/tabbyflow/tabbyflow-n3-20260505_010953/staged/public/test.csv @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:19e107152a94432e2a37ff045c00cfe35e1be30208b1553080d7dd0ede256d3b +size 28944 diff --git a/hyperparameter/n3/tabbyflow/tabbyflow-n3-20260505_010953/staged/public/train.csv b/hyperparameter/n3/tabbyflow/tabbyflow-n3-20260505_010953/staged/public/train.csv new file mode 100644 index 0000000000000000000000000000000000000000..87ca26726fe82ccbaa397919305b043c17eb374e --- /dev/null +++ b/hyperparameter/n3/tabbyflow/tabbyflow-n3-20260505_010953/staged/public/train.csv @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:7813c8cca73ba4bfc6559215257b341c21e459980ad17ae6ddc809306bc9a0b9 +size 229945 diff --git a/hyperparameter/n3/tabbyflow/tabbyflow-n3-20260505_010953/staged/public/val.csv b/hyperparameter/n3/tabbyflow/tabbyflow-n3-20260505_010953/staged/public/val.csv new file mode 100644 index 0000000000000000000000000000000000000000..6acf84c76c47093b513c46d5503972a2dff275c0 --- /dev/null +++ b/hyperparameter/n3/tabbyflow/tabbyflow-n3-20260505_010953/staged/public/val.csv @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:cf5979d9675567d9d6642640c9b84fc6c49e492604144723c30f50516c05cee6 +size 28791 diff --git a/hyperparameter/n3/tabbyflow/tabbyflow-n3-20260505_010953/staged/tabbyflow/adapter_report.json b/hyperparameter/n3/tabbyflow/tabbyflow-n3-20260505_010953/staged/tabbyflow/adapter_report.json new file mode 100644 index 0000000000000000000000000000000000000000..f18c27f707d60ee43ec65847254e2a18197d6b2d --- /dev/null +++ b/hyperparameter/n3/tabbyflow/tabbyflow-n3-20260505_010953/staged/tabbyflow/adapter_report.json @@ -0,0 +1,7 @@ +{ + "adapter_ready_status": "pass", + "adapter_fail_reason_code": null, + "adapter_fail_detail": null, + "adapter_transforms_applied": [], + "model_input_manifest": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/n3/tabbyflow/tabbyflow-n3-20260505_010953/staged/tabbyflow/model_input_manifest.json" +} \ No newline at end of file diff --git a/hyperparameter/n3/tabbyflow/tabbyflow-n3-20260505_010953/staged/tabbyflow/adapter_transforms_applied.json b/hyperparameter/n3/tabbyflow/tabbyflow-n3-20260505_010953/staged/tabbyflow/adapter_transforms_applied.json new file mode 100644 index 0000000000000000000000000000000000000000..0637a088a01e8ddab3bf3fa98dbe804cbde1a0dc --- /dev/null +++ b/hyperparameter/n3/tabbyflow/tabbyflow-n3-20260505_010953/staged/tabbyflow/adapter_transforms_applied.json @@ -0,0 +1 @@ +[] \ No newline at end of file diff --git a/hyperparameter/n3/tabbyflow/tabbyflow-n3-20260505_010953/staged/tabbyflow/model_input_manifest.json b/hyperparameter/n3/tabbyflow/tabbyflow-n3-20260505_010953/staged/tabbyflow/model_input_manifest.json new file mode 100644 index 0000000000000000000000000000000000000000..7856c75575dc9befc49488e786c2d518f2b714aa --- /dev/null +++ b/hyperparameter/n3/tabbyflow/tabbyflow-n3-20260505_010953/staged/tabbyflow/model_input_manifest.json @@ -0,0 +1,266 @@ +{ + "dataset_id": "n3", + "model": "tabbyflow", + "target_column": "quality", + "task_type": "classification", + "column_schema": [ + { + "name": "fixed acidity", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 66, + "unique_ratio": 0.016845, + "example_values": [ + "7.1", + "8.5", + "6.4", + "6.8", + "7.6" + ] + } + }, + { + "name": "volatile acidity", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 121, + "unique_ratio": 0.030883, + "example_values": [ + "0.31", + "0.21", + "0.24", + "0.43", + "0.27" + ] + } + }, + { + "name": "citric acid", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 85, + "unique_ratio": 0.021695, + "example_values": [ + "0.17", + "0.41", + "0.31", + "0.25", + "0.3" + ] + } + }, + { + "name": "residual sugar", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 296, + "unique_ratio": 0.075549, + "example_values": [ + "1", + "4.3", + "2.8", + "13", + "12.9" + ] + } + }, + { + "name": "chlorides", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 147, + "unique_ratio": 0.037519, + "example_values": [ + "0.042", + "0.036", + "0.038", + "0.047", + "0.033" + ] + } + }, + { + "name": "free sulfur dioxide", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 120, + "unique_ratio": 0.030628, + "example_values": [ + "21", + "24", + "41", + "43", + "69" + ] + } + }, + { + "name": "total sulfur dioxide", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 244, + "unique_ratio": 0.062277, + "example_values": [ + "144", + "99", + "114", + "132", + "160" + ] + } + }, + { + "name": "density", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 839, + "unique_ratio": 0.21414, + "example_values": [ + "0.99304", + "0.9947", + "0.99155", + "0.98975", + "0.99705" + ] + } + }, + { + "name": "pH", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 100, + "unique_ratio": 0.025523, + "example_values": [ + "3.13", + "3.18", + "3.37", + "3.21", + "3.16" + ] + } + }, + { + "name": "sulphates", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 78, + "unique_ratio": 0.019908, + "example_values": [ + "0.4", + "0.53", + "0.66", + "0.47", + "0.5" + ] + } + }, + { + "name": "alcohol", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 97, + "unique_ratio": 0.024758, + "example_values": [ + "9.6", + "9.7", + "11.7", + "13.4", + "8.8" + ] + } + }, + { + "name": "quality", + "role": "target", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 7, + "unique_ratio": 0.001787, + "example_values": [ + "5", + "6", + "7", + "8", + "3" + ] + } + } + ], + "public_manifest": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/n3/tabbyflow/tabbyflow-n3-20260505_010953/public_gate/staged_input_manifest.json", + "train_csv": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/n3/tabbyflow/tabbyflow-n3-20260505_010953/staged/public/train.csv", + "val_csv": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/n3/tabbyflow/tabbyflow-n3-20260505_010953/staged/public/val.csv", + "test_csv": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/n3/tabbyflow/tabbyflow-n3-20260505_010953/staged/public/test.csv", + "features_json": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/n3/tabbyflow/tabbyflow-n3-20260505_010953/staged/public/staged_features.json", + "public_gate_report": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/n3/tabbyflow/tabbyflow-n3-20260505_010953/public_gate/public_gate_report.json" +} \ No newline at end of file diff --git a/hyperparameter/n3/tabbyflow/tabbyflow-n3-20260505_010953/tabbyflow-n3-3918-20260505_011500.csv b/hyperparameter/n3/tabbyflow/tabbyflow-n3-20260505_010953/tabbyflow-n3-3918-20260505_011500.csv new file mode 100644 index 0000000000000000000000000000000000000000..a0837111e7b7e3167fd255681bc1019e0abfba7f --- /dev/null +++ b/hyperparameter/n3/tabbyflow/tabbyflow-n3-20260505_010953/tabbyflow-n3-3918-20260505_011500.csv @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:60638f782275115e214286f42bf9749ff78baa414a7676d96d8dbdc40d75b138 +size 340154 diff --git a/hyperparameter/n3/tabbyflow/tabbyflow-n3-20260505_010953/tabbyflow_train_meta.json b/hyperparameter/n3/tabbyflow/tabbyflow-n3-20260505_010953/tabbyflow_train_meta.json new file mode 100644 index 0000000000000000000000000000000000000000..8e8b28c8797fd2ba73c2d20b136d747008c7e84e --- /dev/null +++ b/hyperparameter/n3/tabbyflow/tabbyflow-n3-20260505_010953/tabbyflow_train_meta.json @@ -0,0 +1,5 @@ +{ + "exp_name": "adapter_efvfm", + "dataname": "pipeline_n3", + "steps": 300 +} \ No newline at end of file diff --git a/hyperparameter/n3/tabbyflow/tabbyflow-n3-20260505_010953/tabular_bundle/pipeline_n3/X_cat_test.npy b/hyperparameter/n3/tabbyflow/tabbyflow-n3-20260505_010953/tabular_bundle/pipeline_n3/X_cat_test.npy new file mode 100644 index 0000000000000000000000000000000000000000..76306e45faf838d072c21b887a4c1d43d486dc1b --- /dev/null +++ b/hyperparameter/n3/tabbyflow/tabbyflow-n3-20260505_010953/tabular_bundle/pipeline_n3/X_cat_test.npy @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:87f6573fdfd40c6332a9ef925bcb48bc20f08b3a6f72b6dceb949ae36d1871f7 +size 128 diff --git a/hyperparameter/n3/tabbyflow/tabbyflow-n3-20260505_010953/tabular_bundle/pipeline_n3/X_cat_train.npy b/hyperparameter/n3/tabbyflow/tabbyflow-n3-20260505_010953/tabular_bundle/pipeline_n3/X_cat_train.npy new file mode 100644 index 0000000000000000000000000000000000000000..76306e45faf838d072c21b887a4c1d43d486dc1b --- /dev/null +++ b/hyperparameter/n3/tabbyflow/tabbyflow-n3-20260505_010953/tabular_bundle/pipeline_n3/X_cat_train.npy @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:87f6573fdfd40c6332a9ef925bcb48bc20f08b3a6f72b6dceb949ae36d1871f7 +size 128 diff --git a/hyperparameter/n3/tabbyflow/tabbyflow-n3-20260505_010953/tabular_bundle/pipeline_n3/X_cat_val.npy b/hyperparameter/n3/tabbyflow/tabbyflow-n3-20260505_010953/tabular_bundle/pipeline_n3/X_cat_val.npy new file mode 100644 index 0000000000000000000000000000000000000000..76306e45faf838d072c21b887a4c1d43d486dc1b --- /dev/null +++ b/hyperparameter/n3/tabbyflow/tabbyflow-n3-20260505_010953/tabular_bundle/pipeline_n3/X_cat_val.npy @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:87f6573fdfd40c6332a9ef925bcb48bc20f08b3a6f72b6dceb949ae36d1871f7 +size 128 diff --git a/hyperparameter/n3/tabbyflow/tabbyflow-n3-20260505_010953/tabular_bundle/pipeline_n3/X_num_test.npy b/hyperparameter/n3/tabbyflow/tabbyflow-n3-20260505_010953/tabular_bundle/pipeline_n3/X_num_test.npy new file mode 100644 index 0000000000000000000000000000000000000000..94beb8413ef55592710518365965f4cb503523ee --- /dev/null +++ b/hyperparameter/n3/tabbyflow/tabbyflow-n3-20260505_010953/tabular_bundle/pipeline_n3/X_num_test.npy @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:093d8f405d764277d5a007953f25ab6466f0857f71f0d8f3c437463fb5bf240a +size 172520 diff --git a/hyperparameter/n3/tabbyflow/tabbyflow-n3-20260505_010953/tabular_bundle/pipeline_n3/X_num_train.npy b/hyperparameter/n3/tabbyflow/tabbyflow-n3-20260505_010953/tabular_bundle/pipeline_n3/X_num_train.npy new file mode 100644 index 0000000000000000000000000000000000000000..94beb8413ef55592710518365965f4cb503523ee --- /dev/null +++ b/hyperparameter/n3/tabbyflow/tabbyflow-n3-20260505_010953/tabular_bundle/pipeline_n3/X_num_train.npy @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:093d8f405d764277d5a007953f25ab6466f0857f71f0d8f3c437463fb5bf240a +size 172520 diff --git a/hyperparameter/n3/tabbyflow/tabbyflow-n3-20260505_010953/tabular_bundle/pipeline_n3/X_num_val.npy b/hyperparameter/n3/tabbyflow/tabbyflow-n3-20260505_010953/tabular_bundle/pipeline_n3/X_num_val.npy new file mode 100644 index 0000000000000000000000000000000000000000..94beb8413ef55592710518365965f4cb503523ee --- /dev/null +++ b/hyperparameter/n3/tabbyflow/tabbyflow-n3-20260505_010953/tabular_bundle/pipeline_n3/X_num_val.npy @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:093d8f405d764277d5a007953f25ab6466f0857f71f0d8f3c437463fb5bf240a +size 172520 diff --git a/hyperparameter/n3/tabbyflow/tabbyflow-n3-20260505_010953/tabular_bundle/pipeline_n3/info.json b/hyperparameter/n3/tabbyflow/tabbyflow-n3-20260505_010953/tabular_bundle/pipeline_n3/info.json new file mode 100644 index 0000000000000000000000000000000000000000..8b5f7b3a1a0c4ba2d967287826b9f5c5fd7619de --- /dev/null +++ b/hyperparameter/n3/tabbyflow/tabbyflow-n3-20260505_010953/tabular_bundle/pipeline_n3/info.json @@ -0,0 +1,139 @@ +{ + "name": "pipeline_n3", + "task_type": "multiclass", + "n_num_features": 11, + "n_cat_features": 0, + "train_size": 3918, + "test_num": 3918, + "val_num": 3918, + "train_num": 3918, + "bundle_note": "val/test matrices are train copies (train-only policy; no real held-out rows).", + "num_col_idx": [ + 0, + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10 + ], + "cat_col_idx": [], + "target_col_idx": [ + 11 + ], + "column_names": [ + "fixed acidity", + "volatile acidity", + "citric acid", + "residual sugar", + "chlorides", + "free sulfur dioxide", + "total sulfur dioxide", + "density", + "pH", + "sulphates", + "alcohol", + "quality" + ], + "int_col_idx": [], + "int_columns": [], + "int_col_idx_wrt_num": [], + "metadata": { + "columns": { + "0": { + "sdtype": "numerical", + "computer_representation": "Float" + }, + "1": { + "sdtype": "numerical", + "computer_representation": "Float" + }, + "2": { + "sdtype": "numerical", + "computer_representation": "Float" + }, + "3": { + "sdtype": "numerical", + "computer_representation": "Float" + }, + "4": { + "sdtype": "numerical", + "computer_representation": "Float" + }, + "5": { + "sdtype": "numerical", + "computer_representation": "Float" + }, + "6": { + "sdtype": "numerical", + "computer_representation": "Float" + }, + "7": { + "sdtype": "numerical", + "computer_representation": "Float" + }, + "8": { + "sdtype": "numerical", + "computer_representation": "Float" + }, + "9": { + "sdtype": "numerical", + "computer_representation": "Float" + }, + "10": { + "sdtype": "numerical", + "computer_representation": "Float" + }, + "11": { + "sdtype": "categorical" + } + } + }, + "idx_mapping": { + "0": 0, + "1": 1, + "2": 2, + "3": 3, + "4": 4, + "5": 5, + "6": 6, + "7": 7, + "8": 8, + "9": 9, + "10": 10, + "11": 11 + }, + "inverse_idx_mapping": { + "0": 0, + "1": 1, + "2": 2, + "3": 3, + "4": 4, + "5": 5, + "6": 6, + "7": 7, + "8": 8, + "9": 9, + "10": 10, + "11": 11 + }, + "idx_name_mapping": { + "0": "fixed acidity", + "1": "volatile acidity", + "2": "citric acid", + "3": "residual sugar", + "4": "chlorides", + "5": "free sulfur dioxide", + "6": "total sulfur dioxide", + "7": "density", + "8": "pH", + "9": "sulphates", + "10": "alcohol", + "11": "quality" + }, + "n_classes": 7 +} \ No newline at end of file diff --git a/hyperparameter/n3/tabbyflow/tabbyflow-n3-20260505_010953/tabular_bundle/pipeline_n3/real.csv b/hyperparameter/n3/tabbyflow/tabbyflow-n3-20260505_010953/tabular_bundle/pipeline_n3/real.csv new file mode 100644 index 0000000000000000000000000000000000000000..b4297372e8b9b076d6c03efa023cbf23edee4f56 --- /dev/null +++ b/hyperparameter/n3/tabbyflow/tabbyflow-n3-20260505_010953/tabular_bundle/pipeline_n3/real.csv @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:c80ba530c12c66a78530db5d98ead5f78fcdad2fe5eccccbc28d9649ceaa6023 +size 229825 diff --git a/hyperparameter/n3/tabbyflow/tabbyflow-n3-20260505_010953/tabular_bundle/pipeline_n3/test.csv b/hyperparameter/n3/tabbyflow/tabbyflow-n3-20260505_010953/tabular_bundle/pipeline_n3/test.csv new file mode 100644 index 0000000000000000000000000000000000000000..b4297372e8b9b076d6c03efa023cbf23edee4f56 --- /dev/null +++ b/hyperparameter/n3/tabbyflow/tabbyflow-n3-20260505_010953/tabular_bundle/pipeline_n3/test.csv @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:c80ba530c12c66a78530db5d98ead5f78fcdad2fe5eccccbc28d9649ceaa6023 +size 229825 diff --git a/hyperparameter/n3/tabbyflow/tabbyflow-n3-20260505_010953/tabular_bundle/pipeline_n3/val.csv b/hyperparameter/n3/tabbyflow/tabbyflow-n3-20260505_010953/tabular_bundle/pipeline_n3/val.csv new file mode 100644 index 0000000000000000000000000000000000000000..b4297372e8b9b076d6c03efa023cbf23edee4f56 --- /dev/null +++ b/hyperparameter/n3/tabbyflow/tabbyflow-n3-20260505_010953/tabular_bundle/pipeline_n3/val.csv @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:c80ba530c12c66a78530db5d98ead5f78fcdad2fe5eccccbc28d9649ceaa6023 +size 229825 diff --git a/hyperparameter/n3/tabbyflow/tabbyflow-n3-20260505_010953/tabular_bundle/pipeline_n3/y_test.npy b/hyperparameter/n3/tabbyflow/tabbyflow-n3-20260505_010953/tabular_bundle/pipeline_n3/y_test.npy new file mode 100644 index 0000000000000000000000000000000000000000..1f737a58cd26592130c3604aaa90044a451eb576 --- /dev/null +++ b/hyperparameter/n3/tabbyflow/tabbyflow-n3-20260505_010953/tabular_bundle/pipeline_n3/y_test.npy @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:85ed37c52f0ea54dfd3a476dcfafff02d61e92783748e5ee9aadfad20578bcb1 +size 31472 diff --git a/hyperparameter/n3/tabbyflow/tabbyflow-n3-20260505_010953/tabular_bundle/pipeline_n3/y_train.npy b/hyperparameter/n3/tabbyflow/tabbyflow-n3-20260505_010953/tabular_bundle/pipeline_n3/y_train.npy new file mode 100644 index 0000000000000000000000000000000000000000..1f737a58cd26592130c3604aaa90044a451eb576 --- /dev/null +++ b/hyperparameter/n3/tabbyflow/tabbyflow-n3-20260505_010953/tabular_bundle/pipeline_n3/y_train.npy @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:85ed37c52f0ea54dfd3a476dcfafff02d61e92783748e5ee9aadfad20578bcb1 +size 31472 diff --git a/hyperparameter/n3/tabbyflow/tabbyflow-n3-20260505_010953/tabular_bundle/pipeline_n3/y_val.npy b/hyperparameter/n3/tabbyflow/tabbyflow-n3-20260505_010953/tabular_bundle/pipeline_n3/y_val.npy new file mode 100644 index 0000000000000000000000000000000000000000..1f737a58cd26592130c3604aaa90044a451eb576 --- /dev/null +++ b/hyperparameter/n3/tabbyflow/tabbyflow-n3-20260505_010953/tabular_bundle/pipeline_n3/y_val.npy @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:85ed37c52f0ea54dfd3a476dcfafff02d61e92783748e5ee9aadfad20578bcb1 +size 31472 diff --git a/hyperparameter/n3/tabbyflow/tabbyflow-n3-20260505_010953/train_20260505_010953.log b/hyperparameter/n3/tabbyflow/tabbyflow-n3-20260505_010953/train_20260505_010953.log new file mode 100644 index 0000000000000000000000000000000000000000..17ba97c5d01ac46ff6aed54bf4dd2d0bccf21d4b --- /dev/null +++ b/hyperparameter/n3/tabbyflow/tabbyflow-n3-20260505_010953/train_20260505_010953.log @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:41e0410f34aeb4fd431a6522c381bd6c092d978de02feb193570263cd11a7b18 +size 175755 diff --git a/hyperparameter/n3/tabbyflow/tabbyflow-n3-20260505_011539/_tabbyflow_gen.py b/hyperparameter/n3/tabbyflow/tabbyflow-n3-20260505_011539/_tabbyflow_gen.py new file mode 100644 index 0000000000000000000000000000000000000000..5d86b2e68160a800069c79722ddfd970f1adf873 --- /dev/null +++ b/hyperparameter/n3/tabbyflow/tabbyflow-n3-20260505_011539/_tabbyflow_gen.py @@ -0,0 +1,34 @@ + +import os, shutil, subprocess, sys +root = r"/workspace/ef-vfm" +name = r"pipeline_n3" +src = r"/work/output-Benchmark-trainonly-v1/n3/tabbyflow/tabbyflow-n3-20260505_011539/tabular_bundle/pipeline_n3" +dst_data = os.path.join(root, "data", name) +shutil.rmtree(dst_data, ignore_errors=True) +shutil.copytree(src, dst_data) +dst_syn = os.path.join(root, "synthetic", name) +os.makedirs(dst_syn, exist_ok=True) +for fn in ("real.csv", "test.csv", "val.csv"): + shutil.copy(os.path.join(src, fn), os.path.join(dst_syn, fn)) +os.chdir(root) +os.environ["PYTHONPATH"] = root + os.pathsep + os.environ.get("PYTHONPATH", "") +os.environ.setdefault("EFVFM_SAMPLE_BATCH_SIZE", "128") +subprocess.check_call([ + sys.executable, "main.py", + "--dataname", name, "--mode", "test", "--gpu", "0", + "--no_wandb", "--exp_name", r"adapter_efvfm", + "--ckpt_path", r"/workspace/ef-vfm/ef_vfm/ckpt/pipeline_n3/adapter_efvfm/model_500.pt", + "--num_samples_to_generate", str(int(3918)), +]) +base = os.path.join(root, "ef_vfm", "result", name, r"adapter_efvfm") +best = None +best_t = -1.0 +for r, _, files in os.walk(base): + if "samples.csv" in files: + p = os.path.join(r, "samples.csv") + t = os.path.getmtime(p) + if t > best_t: + best_t, best = t, p +if not best: + raise SystemExit("tabbyflow: no samples.csv in " + base) +shutil.copy(best, r"/work/output-Benchmark-trainonly-v1/n3/tabbyflow/tabbyflow-n3-20260505_011539/tabbyflow-n3-3918-20260505_012459.csv") diff --git a/hyperparameter/n3/tabbyflow/tabbyflow-n3-20260505_011539/_tabbyflow_train.py b/hyperparameter/n3/tabbyflow/tabbyflow-n3-20260505_011539/_tabbyflow_train.py new file mode 100644 index 0000000000000000000000000000000000000000..d339202e43c54d57c5d75f24edb3ee87d3d61773 --- /dev/null +++ b/hyperparameter/n3/tabbyflow/tabbyflow-n3-20260505_011539/_tabbyflow_train.py @@ -0,0 +1,24 @@ + +import os, shutil, subprocess, sys +root = r"/workspace/ef-vfm" +name = r"pipeline_n3" +src = r"/work/output-Benchmark-trainonly-v1/n3/tabbyflow/tabbyflow-n3-20260505_011539/tabular_bundle/pipeline_n3" +os.makedirs(os.path.join(root, "data", name), exist_ok=True) +dst_data = os.path.join(root, "data", name) +dst_syn = os.path.join(root, "synthetic", name) +shutil.rmtree(dst_data, ignore_errors=True) +shutil.copytree(src, dst_data) +os.makedirs(dst_syn, exist_ok=True) +for fn in ("real.csv", "test.csv", "val.csv"): + shutil.copy(os.path.join(src, fn), os.path.join(dst_syn, fn)) +os.chdir(root) +os.environ["PYTHONPATH"] = root + os.pathsep + os.environ.get("PYTHONPATH", "") +os.environ["EFVFM_SMOKE_STEPS"] = "500" +os.environ["EFVFM_ADAPTER_TRAIN"] = "1" +os.environ.setdefault("EFVFM_SAMPLE_BATCH_SIZE", "128") +os.environ.setdefault("EFVFM_EVAL_NUM_SAMPLES", "512") +subprocess.check_call([ + sys.executable, "main.py", + "--dataname", name, "--mode", "train", "--gpu", "0", + "--no_wandb", "--exp_name", r"adapter_efvfm", +]) diff --git a/hyperparameter/n3/tabbyflow/tabbyflow-n3-20260505_011539/gen_20260505_012459.log b/hyperparameter/n3/tabbyflow/tabbyflow-n3-20260505_011539/gen_20260505_012459.log new file mode 100644 index 0000000000000000000000000000000000000000..a72ee686b3f7a180eae89af73e1a4dbbb5fe5a9b --- /dev/null +++ b/hyperparameter/n3/tabbyflow/tabbyflow-n3-20260505_011539/gen_20260505_012459.log @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:1cf39a59a5f71e31e1393a0734f603f732945f3e520bf6c0039dd5dd8e983e5b +size 3945 diff --git a/hyperparameter/n3/tabbyflow/tabbyflow-n3-20260505_011539/input_snapshot.json b/hyperparameter/n3/tabbyflow/tabbyflow-n3-20260505_011539/input_snapshot.json new file mode 100644 index 0000000000000000000000000000000000000000..3a0cbc32605f1212374c27c5a11c08064d5b6b53 --- /dev/null +++ b/hyperparameter/n3/tabbyflow/tabbyflow-n3-20260505_011539/input_snapshot.json @@ -0,0 +1,36 @@ +{ + "dataset_id": "n3", + "model": "tabbyflow", + "inputs": { + "train_csv": { + "path": "/data/jialinzhang/SynthesizePipeline-server/DatasetNew/n3/n3-train.csv", + "exists": true, + "size": 211519, + "sha256": "2160a06db2fea02adb0ebb79d8d853bd2544580be301e71f6e8deeb1489a9009" + }, + "val_csv": { + "path": "/data/jialinzhang/SynthesizePipeline-server/DatasetNew/n3/n3-val.csv", + "exists": true, + "size": 26499, + "sha256": "d5ccfee07dfa9e7bdee5bb87642b43828e09f74c6cc0266a3d19d9feaa83106e" + }, + "test_csv": { + "path": "/data/jialinzhang/SynthesizePipeline-server/DatasetNew/n3/n3-test.csv", + "exists": true, + "size": 26676, + "sha256": "6f83aacb0d1747b95e287352a7fff5d9d65a1c127b773852346c68485c4ede47" + }, + "profile_json": { + "path": "/data/jialinzhang/SynthesizePipeline-server/DatasetNew/artifacts/data_core/tabular/n3/n3-dataset_profile.json", + "exists": true, + "size": 5235, + "sha256": "23d2e5904a2ca90cbf8d6e3c75887681721e9b90cc705c31a680c11513d0c46f" + }, + "contract_json": { + "path": "/data/jialinzhang/SynthesizePipeline-server/DatasetNew/artifacts/data_core/tabular/n3/n3-dataset_contract_v1.json", + "exists": true, + "size": 6281, + "sha256": "c0cc56f5fe28e1b65927255c6e3c2b0e9479862c2ec6f2fea1664da36c9a3a09" + } + } +} \ No newline at end of file diff --git a/hyperparameter/n3/tabbyflow/tabbyflow-n3-20260505_011539/models_tabbyflow/trained.pt b/hyperparameter/n3/tabbyflow/tabbyflow-n3-20260505_011539/models_tabbyflow/trained.pt new file mode 100644 index 0000000000000000000000000000000000000000..f063a878c470d9d40f79db79881596e1e497dffd --- /dev/null +++ b/hyperparameter/n3/tabbyflow/tabbyflow-n3-20260505_011539/models_tabbyflow/trained.pt @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:adb734fec12f2251befd371dca69e481b19464aded2a6823105a01b4be6ddbe5 +size 40 diff --git a/hyperparameter/n3/tabbyflow/tabbyflow-n3-20260505_011539/public_gate/normalized_schema_snapshot.json b/hyperparameter/n3/tabbyflow/tabbyflow-n3-20260505_011539/public_gate/normalized_schema_snapshot.json new file mode 100644 index 0000000000000000000000000000000000000000..c41fe304503de23190a02e6cbfafa35b3bf134d3 --- /dev/null +++ b/hyperparameter/n3/tabbyflow/tabbyflow-n3-20260505_011539/public_gate/normalized_schema_snapshot.json @@ -0,0 +1,259 @@ +{ + "dataset_id": "n3", + "target_column": "quality", + "task_type": "classification", + "columns": [ + { + "name": "fixed acidity", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 66, + "unique_ratio": 0.016845, + "example_values": [ + "7.1", + "8.5", + "6.4", + "6.8", + "7.6" + ] + } + }, + { + "name": "volatile acidity", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 121, + "unique_ratio": 0.030883, + "example_values": [ + "0.31", + "0.21", + "0.24", + "0.43", + "0.27" + ] + } + }, + { + "name": "citric acid", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 85, + "unique_ratio": 0.021695, + "example_values": [ + "0.17", + "0.41", + "0.31", + "0.25", + "0.3" + ] + } + }, + { + "name": "residual sugar", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 296, + "unique_ratio": 0.075549, + "example_values": [ + "1", + "4.3", + "2.8", + "13", + "12.9" + ] + } + }, + { + "name": "chlorides", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 147, + "unique_ratio": 0.037519, + "example_values": [ + "0.042", + "0.036", + "0.038", + "0.047", + "0.033" + ] + } + }, + { + "name": "free sulfur dioxide", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 120, + "unique_ratio": 0.030628, + "example_values": [ + "21", + "24", + "41", + "43", + "69" + ] + } + }, + { + "name": "total sulfur dioxide", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 244, + "unique_ratio": 0.062277, + "example_values": [ + "144", + "99", + "114", + "132", + "160" + ] + } + }, + { + "name": "density", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 839, + "unique_ratio": 0.21414, + "example_values": [ + "0.99304", + "0.9947", + "0.99155", + "0.98975", + "0.99705" + ] + } + }, + { + "name": "pH", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 100, + "unique_ratio": 0.025523, + "example_values": [ + "3.13", + "3.18", + "3.37", + "3.21", + "3.16" + ] + } + }, + { + "name": "sulphates", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 78, + "unique_ratio": 0.019908, + "example_values": [ + "0.4", + "0.53", + "0.66", + "0.47", + "0.5" + ] + } + }, + { + "name": "alcohol", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 97, + "unique_ratio": 0.024758, + "example_values": [ + "9.6", + "9.7", + "11.7", + "13.4", + "8.8" + ] + } + }, + { + "name": "quality", + "role": "target", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 7, + "unique_ratio": 0.001787, + "example_values": [ + "5", + "6", + "7", + "8", + "3" + ] + } + } + ] +} \ No newline at end of file diff --git a/hyperparameter/n3/tabbyflow/tabbyflow-n3-20260505_011539/public_gate/public_gate_report.json b/hyperparameter/n3/tabbyflow/tabbyflow-n3-20260505_011539/public_gate/public_gate_report.json new file mode 100644 index 0000000000000000000000000000000000000000..93b97319f739e39079d6c6549fd2020f8a6dac25 --- /dev/null +++ b/hyperparameter/n3/tabbyflow/tabbyflow-n3-20260505_011539/public_gate/public_gate_report.json @@ -0,0 +1,37 @@ +{ + "dataset_id": "n3", + "status": "pass", + "checks": [ + { + "check_id": "PG001_csv_parse_ok", + "status": "pass" + }, + { + "check_id": "PG002_split_header_consistent", + "status": "pass" + }, + { + "check_id": "PG003_profile_header_match", + "status": "pass" + }, + { + "check_id": "PG004_missing_token_normalized", + "status": "pass" + }, + { + "check_id": "PG005_semantic_type_validated", + "status": "pass" + }, + { + "check_id": "PG006_target_defined_and_valid", + "status": "pass" + } + ], + "target_column": "quality", + "task_type": "classification", + "input_splits": { + "train": "/data/jialinzhang/SynthesizePipeline-server/DatasetNew/n3/n3-train.csv", + "val": "/data/jialinzhang/SynthesizePipeline-server/DatasetNew/n3/n3-val.csv", + "test": "/data/jialinzhang/SynthesizePipeline-server/DatasetNew/n3/n3-test.csv" + } +} \ No newline at end of file diff --git a/hyperparameter/n3/tabbyflow/tabbyflow-n3-20260505_011539/public_gate/staged_input_manifest.json b/hyperparameter/n3/tabbyflow/tabbyflow-n3-20260505_011539/public_gate/staged_input_manifest.json new file mode 100644 index 0000000000000000000000000000000000000000..7a7f121ee8a18a503a1ed8f7cdc901c5f30133ba --- /dev/null +++ b/hyperparameter/n3/tabbyflow/tabbyflow-n3-20260505_011539/public_gate/staged_input_manifest.json @@ -0,0 +1,264 @@ +{ + "dataset_id": "n3", + "target_column": "quality", + "task_type": "classification", + "train_csv": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/n3/tabbyflow/tabbyflow-n3-20260505_011539/staged/public/train.csv", + "val_csv": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/n3/tabbyflow/tabbyflow-n3-20260505_011539/staged/public/val.csv", + "test_csv": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/n3/tabbyflow/tabbyflow-n3-20260505_011539/staged/public/test.csv", + "features_json": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/n3/tabbyflow/tabbyflow-n3-20260505_011539/staged/public/staged_features.json", + "public_gate_report": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/n3/tabbyflow/tabbyflow-n3-20260505_011539/public_gate/public_gate_report.json", + "column_schema": [ + { + "name": "fixed acidity", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 66, + "unique_ratio": 0.016845, + "example_values": [ + "7.1", + "8.5", + "6.4", + "6.8", + "7.6" + ] + } + }, + { + "name": "volatile acidity", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 121, + "unique_ratio": 0.030883, + "example_values": [ + "0.31", + "0.21", + "0.24", + "0.43", + "0.27" + ] + } + }, + { + "name": "citric acid", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 85, + "unique_ratio": 0.021695, + "example_values": [ + "0.17", + "0.41", + "0.31", + "0.25", + "0.3" + ] + } + }, + { + "name": "residual sugar", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 296, + "unique_ratio": 0.075549, + "example_values": [ + "1", + "4.3", + "2.8", + "13", + "12.9" + ] + } + }, + { + "name": "chlorides", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 147, + "unique_ratio": 0.037519, + "example_values": [ + "0.042", + "0.036", + "0.038", + "0.047", + "0.033" + ] + } + }, + { + "name": "free sulfur dioxide", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 120, + "unique_ratio": 0.030628, + "example_values": [ + "21", + "24", + "41", + "43", + "69" + ] + } + }, + { + "name": "total sulfur dioxide", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 244, + "unique_ratio": 0.062277, + "example_values": [ + "144", + "99", + "114", + "132", + "160" + ] + } + }, + { + "name": "density", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 839, + "unique_ratio": 0.21414, + "example_values": [ + "0.99304", + "0.9947", + "0.99155", + "0.98975", + "0.99705" + ] + } + }, + { + "name": "pH", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 100, + "unique_ratio": 0.025523, + "example_values": [ + "3.13", + "3.18", + "3.37", + "3.21", + "3.16" + ] + } + }, + { + "name": "sulphates", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 78, + "unique_ratio": 0.019908, + "example_values": [ + "0.4", + "0.53", + "0.66", + "0.47", + "0.5" + ] + } + }, + { + "name": "alcohol", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 97, + "unique_ratio": 0.024758, + "example_values": [ + "9.6", + "9.7", + "11.7", + "13.4", + "8.8" + ] + } + }, + { + "name": "quality", + "role": "target", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 7, + "unique_ratio": 0.001787, + "example_values": [ + "5", + "6", + "7", + "8", + "3" + ] + } + } + ] +} \ No newline at end of file diff --git a/hyperparameter/n3/tabbyflow/tabbyflow-n3-20260505_011539/run_config.json b/hyperparameter/n3/tabbyflow/tabbyflow-n3-20260505_011539/run_config.json new file mode 100644 index 0000000000000000000000000000000000000000..9b37d2745890cc919618f0da0ce90a1d6f0b3a2e --- /dev/null +++ b/hyperparameter/n3/tabbyflow/tabbyflow-n3-20260505_011539/run_config.json @@ -0,0 +1,42 @@ +{ + "schema_version": 1, + "recorded_at": "2026-05-05T01:15:39", + "dataset_id": "n3", + "model": "tabbyflow", + "work_dir": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/n3/tabbyflow/tabbyflow-n3-20260505_011539", + "dataset_source_requested": "new", + "dataset_source_resolved": "new", + "cli_args": { + "model": "tabbyflow", + "dataset": "n3", + "dataset_source": "new", + "train": true, + "generate": true, + "num_rows": 0, + "epochs": 500, + "output_dir": null, + "model_dir": null, + "work_dir": null, + "resume": false, + "no_stats": false + }, + "resolved": { + "num_rows": 3918, + "model_path": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/n3/tabbyflow/tabbyflow-n3-20260505_011539/models_tabbyflow/trained.pt", + "output_csv": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/n3/tabbyflow/tabbyflow-n3-20260505_011539/tabbyflow-n3-3918-20260505_012459.csv" + }, + "input_artifacts": { + "public_gate_report": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/n3/tabbyflow/tabbyflow-n3-20260505_011539/public_gate/public_gate_report.json", + "public_manifest": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/n3/tabbyflow/tabbyflow-n3-20260505_011539/public_gate/staged_input_manifest.json", + "model_manifest": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/n3/tabbyflow/tabbyflow-n3-20260505_011539/staged/tabbyflow/model_input_manifest.json", + "train_csv": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/n3/tabbyflow/tabbyflow-n3-20260505_011539/staged/public/train.csv", + "features_json": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/n3/tabbyflow/tabbyflow-n3-20260505_011539/staged/public/staged_features.json", + "target_column": "quality", + "task_type": "classification" + }, + "env_overrides": { + "BENCHMARK_TABBYFLOW_GPUS": "device=0", + "EFVFM_EVAL_NUM_SAMPLES": "1024", + "EFVFM_SAMPLE_BATCH_SIZE": "128" + } +} \ No newline at end of file diff --git a/hyperparameter/n3/tabbyflow/tabbyflow-n3-20260505_011539/runtime_result.json b/hyperparameter/n3/tabbyflow/tabbyflow-n3-20260505_011539/runtime_result.json new file mode 100644 index 0000000000000000000000000000000000000000..2e5646744527a5b878adf9e761de10a6000728f3 --- /dev/null +++ b/hyperparameter/n3/tabbyflow/tabbyflow-n3-20260505_011539/runtime_result.json @@ -0,0 +1,27 @@ +{ + "dataset_id": "n3", + "model": "tabbyflow", + "run_id": "tabbyflow-n3-20260505_011539", + "public_gate_status": "pass", + "adapter_ready_status": "pass", + "train_status": "success", + "generate_status": "success", + "reason_code": null, + "reason_detail": null, + "artifacts": { + "synthetic_csv": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/n3/tabbyflow/tabbyflow-n3-20260505_011539/tabbyflow-n3-3918-20260505_012459.csv", + "model_path": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/n3/tabbyflow/tabbyflow-n3-20260505_011539/models_tabbyflow/trained.pt" + }, + "timings": { + "train": { + "started_at": "2026-05-05T01:15:39", + "ended_at": "2026-05-05T01:24:59", + "duration_sec": 559.875 + }, + "generate": { + "started_at": "2026-05-05T01:24:59", + "ended_at": "2026-05-05T01:25:29", + "duration_sec": 30.354 + } + } +} \ No newline at end of file diff --git a/hyperparameter/n3/tabbyflow/tabbyflow-n3-20260505_011539/staged/public/staged_features.json b/hyperparameter/n3/tabbyflow/tabbyflow-n3-20260505_011539/staged/public/staged_features.json new file mode 100644 index 0000000000000000000000000000000000000000..08fe4d766d091d2f2ddba724a16b9509cbe4c390 --- /dev/null +++ b/hyperparameter/n3/tabbyflow/tabbyflow-n3-20260505_011539/staged/public/staged_features.json @@ -0,0 +1,62 @@ +[ + { + "feature_name": "fixed acidity", + "data_type": "continuous", + "is_target": false + }, + { + "feature_name": "volatile acidity", + "data_type": "continuous", + "is_target": false + }, + { + "feature_name": "citric acid", + "data_type": "continuous", + "is_target": false + }, + { + "feature_name": "residual sugar", + "data_type": "continuous", + "is_target": false + }, + { + "feature_name": "chlorides", + "data_type": "continuous", + "is_target": false + }, + { + "feature_name": "free sulfur dioxide", + "data_type": "continuous", + "is_target": false + }, + { + "feature_name": "total sulfur dioxide", + "data_type": "continuous", + "is_target": false + }, + { + "feature_name": "density", + "data_type": "continuous", + "is_target": false + }, + { + "feature_name": "pH", + "data_type": "continuous", + "is_target": false + }, + { + "feature_name": "sulphates", + "data_type": "continuous", + "is_target": false + }, + { + "feature_name": "alcohol", + "data_type": "continuous", + "is_target": false + }, + { + "feature_name": "quality", + "data_type": "continuous", + "is_target": true + } +] \ No newline at end of file diff --git a/hyperparameter/n3/tabbyflow/tabbyflow-n3-20260505_011539/staged/public/test.csv b/hyperparameter/n3/tabbyflow/tabbyflow-n3-20260505_011539/staged/public/test.csv new file mode 100644 index 0000000000000000000000000000000000000000..db5cd50d3746410ea470625fa2ba2c8e9775cc0d --- /dev/null +++ b/hyperparameter/n3/tabbyflow/tabbyflow-n3-20260505_011539/staged/public/test.csv @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:19e107152a94432e2a37ff045c00cfe35e1be30208b1553080d7dd0ede256d3b +size 28944 diff --git a/hyperparameter/n3/tabbyflow/tabbyflow-n3-20260505_011539/staged/public/train.csv b/hyperparameter/n3/tabbyflow/tabbyflow-n3-20260505_011539/staged/public/train.csv new file mode 100644 index 0000000000000000000000000000000000000000..87ca26726fe82ccbaa397919305b043c17eb374e --- /dev/null +++ b/hyperparameter/n3/tabbyflow/tabbyflow-n3-20260505_011539/staged/public/train.csv @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:7813c8cca73ba4bfc6559215257b341c21e459980ad17ae6ddc809306bc9a0b9 +size 229945 diff --git a/hyperparameter/n3/tabbyflow/tabbyflow-n3-20260505_011539/staged/public/val.csv b/hyperparameter/n3/tabbyflow/tabbyflow-n3-20260505_011539/staged/public/val.csv new file mode 100644 index 0000000000000000000000000000000000000000..6acf84c76c47093b513c46d5503972a2dff275c0 --- /dev/null +++ b/hyperparameter/n3/tabbyflow/tabbyflow-n3-20260505_011539/staged/public/val.csv @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:cf5979d9675567d9d6642640c9b84fc6c49e492604144723c30f50516c05cee6 +size 28791 diff --git a/hyperparameter/n3/tabbyflow/tabbyflow-n3-20260505_011539/staged/tabbyflow/adapter_report.json b/hyperparameter/n3/tabbyflow/tabbyflow-n3-20260505_011539/staged/tabbyflow/adapter_report.json new file mode 100644 index 0000000000000000000000000000000000000000..a280b572568d6643d069568cff3d910516aa80c8 --- /dev/null +++ b/hyperparameter/n3/tabbyflow/tabbyflow-n3-20260505_011539/staged/tabbyflow/adapter_report.json @@ -0,0 +1,7 @@ +{ + "adapter_ready_status": "pass", + "adapter_fail_reason_code": null, + "adapter_fail_detail": null, + "adapter_transforms_applied": [], + "model_input_manifest": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/n3/tabbyflow/tabbyflow-n3-20260505_011539/staged/tabbyflow/model_input_manifest.json" +} \ No newline at end of file diff --git a/hyperparameter/n3/tabbyflow/tabbyflow-n3-20260505_011539/staged/tabbyflow/adapter_transforms_applied.json b/hyperparameter/n3/tabbyflow/tabbyflow-n3-20260505_011539/staged/tabbyflow/adapter_transforms_applied.json new file mode 100644 index 0000000000000000000000000000000000000000..0637a088a01e8ddab3bf3fa98dbe804cbde1a0dc --- /dev/null +++ b/hyperparameter/n3/tabbyflow/tabbyflow-n3-20260505_011539/staged/tabbyflow/adapter_transforms_applied.json @@ -0,0 +1 @@ +[] \ No newline at end of file diff --git a/hyperparameter/n3/tabbyflow/tabbyflow-n3-20260505_011539/staged/tabbyflow/model_input_manifest.json b/hyperparameter/n3/tabbyflow/tabbyflow-n3-20260505_011539/staged/tabbyflow/model_input_manifest.json new file mode 100644 index 0000000000000000000000000000000000000000..32125e808991dc3daf3884f92656cdbd4c17a2f5 --- /dev/null +++ b/hyperparameter/n3/tabbyflow/tabbyflow-n3-20260505_011539/staged/tabbyflow/model_input_manifest.json @@ -0,0 +1,266 @@ +{ + "dataset_id": "n3", + "model": "tabbyflow", + "target_column": "quality", + "task_type": "classification", + "column_schema": [ + { + "name": "fixed acidity", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 66, + "unique_ratio": 0.016845, + "example_values": [ + "7.1", + "8.5", + "6.4", + "6.8", + "7.6" + ] + } + }, + { + "name": "volatile acidity", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 121, + "unique_ratio": 0.030883, + "example_values": [ + "0.31", + "0.21", + "0.24", + "0.43", + "0.27" + ] + } + }, + { + "name": "citric acid", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 85, + "unique_ratio": 0.021695, + "example_values": [ + "0.17", + "0.41", + "0.31", + "0.25", + "0.3" + ] + } + }, + { + "name": "residual sugar", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 296, + "unique_ratio": 0.075549, + "example_values": [ + "1", + "4.3", + "2.8", + "13", + "12.9" + ] + } + }, + { + "name": "chlorides", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 147, + "unique_ratio": 0.037519, + "example_values": [ + "0.042", + "0.036", + "0.038", + "0.047", + "0.033" + ] + } + }, + { + "name": "free sulfur dioxide", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 120, + "unique_ratio": 0.030628, + "example_values": [ + "21", + "24", + "41", + "43", + "69" + ] + } + }, + { + "name": "total sulfur dioxide", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 244, + "unique_ratio": 0.062277, + "example_values": [ + "144", + "99", + "114", + "132", + "160" + ] + } + }, + { + "name": "density", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 839, + "unique_ratio": 0.21414, + "example_values": [ + "0.99304", + "0.9947", + "0.99155", + "0.98975", + "0.99705" + ] + } + }, + { + "name": "pH", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 100, + "unique_ratio": 0.025523, + "example_values": [ + "3.13", + "3.18", + "3.37", + "3.21", + "3.16" + ] + } + }, + { + "name": "sulphates", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 78, + "unique_ratio": 0.019908, + "example_values": [ + "0.4", + "0.53", + "0.66", + "0.47", + "0.5" + ] + } + }, + { + "name": "alcohol", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 97, + "unique_ratio": 0.024758, + "example_values": [ + "9.6", + "9.7", + "11.7", + "13.4", + "8.8" + ] + } + }, + { + "name": "quality", + "role": "target", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 7, + "unique_ratio": 0.001787, + "example_values": [ + "5", + "6", + "7", + "8", + "3" + ] + } + } + ], + "public_manifest": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/n3/tabbyflow/tabbyflow-n3-20260505_011539/public_gate/staged_input_manifest.json", + "train_csv": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/n3/tabbyflow/tabbyflow-n3-20260505_011539/staged/public/train.csv", + "val_csv": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/n3/tabbyflow/tabbyflow-n3-20260505_011539/staged/public/val.csv", + "test_csv": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/n3/tabbyflow/tabbyflow-n3-20260505_011539/staged/public/test.csv", + "features_json": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/n3/tabbyflow/tabbyflow-n3-20260505_011539/staged/public/staged_features.json", + "public_gate_report": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/n3/tabbyflow/tabbyflow-n3-20260505_011539/public_gate/public_gate_report.json" +} \ No newline at end of file diff --git a/hyperparameter/n3/tabbyflow/tabbyflow-n3-20260505_011539/tabbyflow-n3-3918-20260505_012459.csv b/hyperparameter/n3/tabbyflow/tabbyflow-n3-20260505_011539/tabbyflow-n3-3918-20260505_012459.csv new file mode 100644 index 0000000000000000000000000000000000000000..4395ab03094882454caeec0b95aaf2dca37cf598 --- /dev/null +++ b/hyperparameter/n3/tabbyflow/tabbyflow-n3-20260505_011539/tabbyflow-n3-3918-20260505_012459.csv @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:101fc9b49b907e4bd2091e2d907c358fad3848a755c858eca63fc40bcc7fd6d9 +size 340170 diff --git a/hyperparameter/n3/tabbyflow/tabbyflow-n3-20260505_011539/tabbyflow_train_meta.json b/hyperparameter/n3/tabbyflow/tabbyflow-n3-20260505_011539/tabbyflow_train_meta.json new file mode 100644 index 0000000000000000000000000000000000000000..352eb976105907ee1613e7569122a2ca9313f022 --- /dev/null +++ b/hyperparameter/n3/tabbyflow/tabbyflow-n3-20260505_011539/tabbyflow_train_meta.json @@ -0,0 +1,5 @@ +{ + "exp_name": "adapter_efvfm", + "dataname": "pipeline_n3", + "steps": 500 +} \ No newline at end of file diff --git a/hyperparameter/n3/tabbyflow/tabbyflow-n3-20260505_011539/tabular_bundle/pipeline_n3/X_cat_test.npy b/hyperparameter/n3/tabbyflow/tabbyflow-n3-20260505_011539/tabular_bundle/pipeline_n3/X_cat_test.npy new file mode 100644 index 0000000000000000000000000000000000000000..76306e45faf838d072c21b887a4c1d43d486dc1b --- /dev/null +++ b/hyperparameter/n3/tabbyflow/tabbyflow-n3-20260505_011539/tabular_bundle/pipeline_n3/X_cat_test.npy @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:87f6573fdfd40c6332a9ef925bcb48bc20f08b3a6f72b6dceb949ae36d1871f7 +size 128 diff --git a/hyperparameter/n3/tabbyflow/tabbyflow-n3-20260505_011539/tabular_bundle/pipeline_n3/X_cat_train.npy b/hyperparameter/n3/tabbyflow/tabbyflow-n3-20260505_011539/tabular_bundle/pipeline_n3/X_cat_train.npy new file mode 100644 index 0000000000000000000000000000000000000000..76306e45faf838d072c21b887a4c1d43d486dc1b --- /dev/null +++ b/hyperparameter/n3/tabbyflow/tabbyflow-n3-20260505_011539/tabular_bundle/pipeline_n3/X_cat_train.npy @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:87f6573fdfd40c6332a9ef925bcb48bc20f08b3a6f72b6dceb949ae36d1871f7 +size 128 diff --git a/hyperparameter/n3/tabbyflow/tabbyflow-n3-20260505_011539/tabular_bundle/pipeline_n3/X_cat_val.npy b/hyperparameter/n3/tabbyflow/tabbyflow-n3-20260505_011539/tabular_bundle/pipeline_n3/X_cat_val.npy new file mode 100644 index 0000000000000000000000000000000000000000..76306e45faf838d072c21b887a4c1d43d486dc1b --- /dev/null +++ b/hyperparameter/n3/tabbyflow/tabbyflow-n3-20260505_011539/tabular_bundle/pipeline_n3/X_cat_val.npy @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:87f6573fdfd40c6332a9ef925bcb48bc20f08b3a6f72b6dceb949ae36d1871f7 +size 128 diff --git a/hyperparameter/n3/tabbyflow/tabbyflow-n3-20260505_011539/tabular_bundle/pipeline_n3/X_num_test.npy b/hyperparameter/n3/tabbyflow/tabbyflow-n3-20260505_011539/tabular_bundle/pipeline_n3/X_num_test.npy new file mode 100644 index 0000000000000000000000000000000000000000..94beb8413ef55592710518365965f4cb503523ee --- /dev/null +++ b/hyperparameter/n3/tabbyflow/tabbyflow-n3-20260505_011539/tabular_bundle/pipeline_n3/X_num_test.npy @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:093d8f405d764277d5a007953f25ab6466f0857f71f0d8f3c437463fb5bf240a +size 172520 diff --git a/hyperparameter/n3/tabbyflow/tabbyflow-n3-20260505_011539/tabular_bundle/pipeline_n3/X_num_train.npy b/hyperparameter/n3/tabbyflow/tabbyflow-n3-20260505_011539/tabular_bundle/pipeline_n3/X_num_train.npy new file mode 100644 index 0000000000000000000000000000000000000000..94beb8413ef55592710518365965f4cb503523ee --- /dev/null +++ b/hyperparameter/n3/tabbyflow/tabbyflow-n3-20260505_011539/tabular_bundle/pipeline_n3/X_num_train.npy @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:093d8f405d764277d5a007953f25ab6466f0857f71f0d8f3c437463fb5bf240a +size 172520 diff --git a/hyperparameter/n3/tabbyflow/tabbyflow-n3-20260505_011539/tabular_bundle/pipeline_n3/X_num_val.npy b/hyperparameter/n3/tabbyflow/tabbyflow-n3-20260505_011539/tabular_bundle/pipeline_n3/X_num_val.npy new file mode 100644 index 0000000000000000000000000000000000000000..94beb8413ef55592710518365965f4cb503523ee --- /dev/null +++ b/hyperparameter/n3/tabbyflow/tabbyflow-n3-20260505_011539/tabular_bundle/pipeline_n3/X_num_val.npy @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:093d8f405d764277d5a007953f25ab6466f0857f71f0d8f3c437463fb5bf240a +size 172520 diff --git a/hyperparameter/n3/tabbyflow/tabbyflow-n3-20260505_011539/tabular_bundle/pipeline_n3/info.json b/hyperparameter/n3/tabbyflow/tabbyflow-n3-20260505_011539/tabular_bundle/pipeline_n3/info.json new file mode 100644 index 0000000000000000000000000000000000000000..8b5f7b3a1a0c4ba2d967287826b9f5c5fd7619de --- /dev/null +++ b/hyperparameter/n3/tabbyflow/tabbyflow-n3-20260505_011539/tabular_bundle/pipeline_n3/info.json @@ -0,0 +1,139 @@ +{ + "name": "pipeline_n3", + "task_type": "multiclass", + "n_num_features": 11, + "n_cat_features": 0, + "train_size": 3918, + "test_num": 3918, + "val_num": 3918, + "train_num": 3918, + "bundle_note": "val/test matrices are train copies (train-only policy; no real held-out rows).", + "num_col_idx": [ + 0, + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10 + ], + "cat_col_idx": [], + "target_col_idx": [ + 11 + ], + "column_names": [ + "fixed acidity", + "volatile acidity", + "citric acid", + "residual sugar", + "chlorides", + "free sulfur dioxide", + "total sulfur dioxide", + "density", + "pH", + "sulphates", + "alcohol", + "quality" + ], + "int_col_idx": [], + "int_columns": [], + "int_col_idx_wrt_num": [], + "metadata": { + "columns": { + "0": { + "sdtype": "numerical", + "computer_representation": "Float" + }, + "1": { + "sdtype": "numerical", + "computer_representation": "Float" + }, + "2": { + "sdtype": "numerical", + "computer_representation": "Float" + }, + "3": { + "sdtype": "numerical", + "computer_representation": "Float" + }, + "4": { + "sdtype": "numerical", + "computer_representation": "Float" + }, + "5": { + "sdtype": "numerical", + "computer_representation": "Float" + }, + "6": { + "sdtype": "numerical", + "computer_representation": "Float" + }, + "7": { + "sdtype": "numerical", + "computer_representation": "Float" + }, + "8": { + "sdtype": "numerical", + "computer_representation": "Float" + }, + "9": { + "sdtype": "numerical", + "computer_representation": "Float" + }, + "10": { + "sdtype": "numerical", + "computer_representation": "Float" + }, + "11": { + "sdtype": "categorical" + } + } + }, + "idx_mapping": { + "0": 0, + "1": 1, + "2": 2, + "3": 3, + "4": 4, + "5": 5, + "6": 6, + "7": 7, + "8": 8, + "9": 9, + "10": 10, + "11": 11 + }, + "inverse_idx_mapping": { + "0": 0, + "1": 1, + "2": 2, + "3": 3, + "4": 4, + "5": 5, + "6": 6, + "7": 7, + "8": 8, + "9": 9, + "10": 10, + "11": 11 + }, + "idx_name_mapping": { + "0": "fixed acidity", + "1": "volatile acidity", + "2": "citric acid", + "3": "residual sugar", + "4": "chlorides", + "5": "free sulfur dioxide", + "6": "total sulfur dioxide", + "7": "density", + "8": "pH", + "9": "sulphates", + "10": "alcohol", + "11": "quality" + }, + "n_classes": 7 +} \ No newline at end of file diff --git a/hyperparameter/n3/tabbyflow/tabbyflow-n3-20260505_011539/tabular_bundle/pipeline_n3/real.csv b/hyperparameter/n3/tabbyflow/tabbyflow-n3-20260505_011539/tabular_bundle/pipeline_n3/real.csv new file mode 100644 index 0000000000000000000000000000000000000000..b4297372e8b9b076d6c03efa023cbf23edee4f56 --- /dev/null +++ b/hyperparameter/n3/tabbyflow/tabbyflow-n3-20260505_011539/tabular_bundle/pipeline_n3/real.csv @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:c80ba530c12c66a78530db5d98ead5f78fcdad2fe5eccccbc28d9649ceaa6023 +size 229825 diff --git a/hyperparameter/n3/tabbyflow/tabbyflow-n3-20260505_011539/tabular_bundle/pipeline_n3/test.csv b/hyperparameter/n3/tabbyflow/tabbyflow-n3-20260505_011539/tabular_bundle/pipeline_n3/test.csv new file mode 100644 index 0000000000000000000000000000000000000000..b4297372e8b9b076d6c03efa023cbf23edee4f56 --- /dev/null +++ b/hyperparameter/n3/tabbyflow/tabbyflow-n3-20260505_011539/tabular_bundle/pipeline_n3/test.csv @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:c80ba530c12c66a78530db5d98ead5f78fcdad2fe5eccccbc28d9649ceaa6023 +size 229825 diff --git a/hyperparameter/n3/tabbyflow/tabbyflow-n3-20260505_011539/tabular_bundle/pipeline_n3/val.csv b/hyperparameter/n3/tabbyflow/tabbyflow-n3-20260505_011539/tabular_bundle/pipeline_n3/val.csv new file mode 100644 index 0000000000000000000000000000000000000000..b4297372e8b9b076d6c03efa023cbf23edee4f56 --- /dev/null +++ b/hyperparameter/n3/tabbyflow/tabbyflow-n3-20260505_011539/tabular_bundle/pipeline_n3/val.csv @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:c80ba530c12c66a78530db5d98ead5f78fcdad2fe5eccccbc28d9649ceaa6023 +size 229825 diff --git a/hyperparameter/n3/tabbyflow/tabbyflow-n3-20260505_011539/tabular_bundle/pipeline_n3/y_test.npy b/hyperparameter/n3/tabbyflow/tabbyflow-n3-20260505_011539/tabular_bundle/pipeline_n3/y_test.npy new file mode 100644 index 0000000000000000000000000000000000000000..1f737a58cd26592130c3604aaa90044a451eb576 --- /dev/null +++ b/hyperparameter/n3/tabbyflow/tabbyflow-n3-20260505_011539/tabular_bundle/pipeline_n3/y_test.npy @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:85ed37c52f0ea54dfd3a476dcfafff02d61e92783748e5ee9aadfad20578bcb1 +size 31472 diff --git a/hyperparameter/n3/tabbyflow/tabbyflow-n3-20260505_011539/tabular_bundle/pipeline_n3/y_train.npy b/hyperparameter/n3/tabbyflow/tabbyflow-n3-20260505_011539/tabular_bundle/pipeline_n3/y_train.npy new file mode 100644 index 0000000000000000000000000000000000000000..1f737a58cd26592130c3604aaa90044a451eb576 --- /dev/null +++ b/hyperparameter/n3/tabbyflow/tabbyflow-n3-20260505_011539/tabular_bundle/pipeline_n3/y_train.npy @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:85ed37c52f0ea54dfd3a476dcfafff02d61e92783748e5ee9aadfad20578bcb1 +size 31472 diff --git a/hyperparameter/n3/tabbyflow/tabbyflow-n3-20260505_011539/tabular_bundle/pipeline_n3/y_val.npy b/hyperparameter/n3/tabbyflow/tabbyflow-n3-20260505_011539/tabular_bundle/pipeline_n3/y_val.npy new file mode 100644 index 0000000000000000000000000000000000000000..1f737a58cd26592130c3604aaa90044a451eb576 --- /dev/null +++ b/hyperparameter/n3/tabbyflow/tabbyflow-n3-20260505_011539/tabular_bundle/pipeline_n3/y_val.npy @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:85ed37c52f0ea54dfd3a476dcfafff02d61e92783748e5ee9aadfad20578bcb1 +size 31472 diff --git a/hyperparameter/n3/tabbyflow/tabbyflow-n3-20260505_011539/train_20260505_011539.log b/hyperparameter/n3/tabbyflow/tabbyflow-n3-20260505_011539/train_20260505_011539.log new file mode 100644 index 0000000000000000000000000000000000000000..450c450b77634e42833b718c3452fffdb244b7e4 --- /dev/null +++ b/hyperparameter/n3/tabbyflow/tabbyflow-n3-20260505_011539/train_20260505_011539.log @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:4f47184a76cf9f55735dffc81b2027701ae0068d673cbc7e1d548b19bc51d37f +size 290236 diff --git a/hyperparameter/n3/tabbyflow/tabbyflow-n3-20260505_012543/_tabbyflow_gen.py b/hyperparameter/n3/tabbyflow/tabbyflow-n3-20260505_012543/_tabbyflow_gen.py new file mode 100644 index 0000000000000000000000000000000000000000..c5ee7eba5fc2c39504fce599f74d80267f710f87 --- /dev/null +++ b/hyperparameter/n3/tabbyflow/tabbyflow-n3-20260505_012543/_tabbyflow_gen.py @@ -0,0 +1,34 @@ + +import os, shutil, subprocess, sys +root = r"/workspace/ef-vfm" +name = r"pipeline_n3" +src = r"/work/output-Benchmark-trainonly-v1/n3/tabbyflow/tabbyflow-n3-20260505_012543/tabular_bundle/pipeline_n3" +dst_data = os.path.join(root, "data", name) +shutil.rmtree(dst_data, ignore_errors=True) +shutil.copytree(src, dst_data) +dst_syn = os.path.join(root, "synthetic", name) +os.makedirs(dst_syn, exist_ok=True) +for fn in ("real.csv", "test.csv", "val.csv"): + shutil.copy(os.path.join(src, fn), os.path.join(dst_syn, fn)) +os.chdir(root) +os.environ["PYTHONPATH"] = root + os.pathsep + os.environ.get("PYTHONPATH", "") +os.environ.setdefault("EFVFM_SAMPLE_BATCH_SIZE", "128") +subprocess.check_call([ + sys.executable, "main.py", + "--dataname", name, "--mode", "test", "--gpu", "0", + "--no_wandb", "--exp_name", r"adapter_efvfm", + "--ckpt_path", r"/workspace/ef-vfm/ef_vfm/ckpt/pipeline_n3/adapter_efvfm/model_700.pt", + "--num_samples_to_generate", str(int(3918)), +]) +base = os.path.join(root, "ef_vfm", "result", name, r"adapter_efvfm") +best = None +best_t = -1.0 +for r, _, files in os.walk(base): + if "samples.csv" in files: + p = os.path.join(r, "samples.csv") + t = os.path.getmtime(p) + if t > best_t: + best_t, best = t, p +if not best: + raise SystemExit("tabbyflow: no samples.csv in " + base) +shutil.copy(best, r"/work/output-Benchmark-trainonly-v1/n3/tabbyflow/tabbyflow-n3-20260505_012543/tabbyflow-n3-3918-20260505_013725.csv") diff --git a/hyperparameter/n3/tabbyflow/tabbyflow-n3-20260505_012543/_tabbyflow_train.py b/hyperparameter/n3/tabbyflow/tabbyflow-n3-20260505_012543/_tabbyflow_train.py new file mode 100644 index 0000000000000000000000000000000000000000..d9444365122d511807df906a17149156fbffe776 --- /dev/null +++ b/hyperparameter/n3/tabbyflow/tabbyflow-n3-20260505_012543/_tabbyflow_train.py @@ -0,0 +1,24 @@ + +import os, shutil, subprocess, sys +root = r"/workspace/ef-vfm" +name = r"pipeline_n3" +src = r"/work/output-Benchmark-trainonly-v1/n3/tabbyflow/tabbyflow-n3-20260505_012543/tabular_bundle/pipeline_n3" +os.makedirs(os.path.join(root, "data", name), exist_ok=True) +dst_data = os.path.join(root, "data", name) +dst_syn = os.path.join(root, "synthetic", name) +shutil.rmtree(dst_data, ignore_errors=True) +shutil.copytree(src, dst_data) +os.makedirs(dst_syn, exist_ok=True) +for fn in ("real.csv", "test.csv", "val.csv"): + shutil.copy(os.path.join(src, fn), os.path.join(dst_syn, fn)) +os.chdir(root) +os.environ["PYTHONPATH"] = root + os.pathsep + os.environ.get("PYTHONPATH", "") +os.environ["EFVFM_SMOKE_STEPS"] = "700" +os.environ["EFVFM_ADAPTER_TRAIN"] = "1" +os.environ.setdefault("EFVFM_SAMPLE_BATCH_SIZE", "128") +os.environ.setdefault("EFVFM_EVAL_NUM_SAMPLES", "512") +subprocess.check_call([ + sys.executable, "main.py", + "--dataname", name, "--mode", "train", "--gpu", "0", + "--no_wandb", "--exp_name", r"adapter_efvfm", +]) diff --git a/hyperparameter/n3/tabbyflow/tabbyflow-n3-20260505_012543/gen_20260505_013725.log b/hyperparameter/n3/tabbyflow/tabbyflow-n3-20260505_012543/gen_20260505_013725.log new file mode 100644 index 0000000000000000000000000000000000000000..fe77122a836604c9bfeda62d9151c648bc2e4431 --- /dev/null +++ b/hyperparameter/n3/tabbyflow/tabbyflow-n3-20260505_012543/gen_20260505_013725.log @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:1114ff59f09135c24f897b3fe79adb3a29a92082b60689c7a32c11ea6a1c34df +size 3945 diff --git a/hyperparameter/n3/tabbyflow/tabbyflow-n3-20260505_012543/input_snapshot.json b/hyperparameter/n3/tabbyflow/tabbyflow-n3-20260505_012543/input_snapshot.json new file mode 100644 index 0000000000000000000000000000000000000000..3a0cbc32605f1212374c27c5a11c08064d5b6b53 --- /dev/null +++ b/hyperparameter/n3/tabbyflow/tabbyflow-n3-20260505_012543/input_snapshot.json @@ -0,0 +1,36 @@ +{ + "dataset_id": "n3", + "model": "tabbyflow", + "inputs": { + "train_csv": { + "path": "/data/jialinzhang/SynthesizePipeline-server/DatasetNew/n3/n3-train.csv", + "exists": true, + "size": 211519, + "sha256": "2160a06db2fea02adb0ebb79d8d853bd2544580be301e71f6e8deeb1489a9009" + }, + "val_csv": { + "path": "/data/jialinzhang/SynthesizePipeline-server/DatasetNew/n3/n3-val.csv", + "exists": true, + "size": 26499, + "sha256": "d5ccfee07dfa9e7bdee5bb87642b43828e09f74c6cc0266a3d19d9feaa83106e" + }, + "test_csv": { + "path": "/data/jialinzhang/SynthesizePipeline-server/DatasetNew/n3/n3-test.csv", + "exists": true, + "size": 26676, + "sha256": "6f83aacb0d1747b95e287352a7fff5d9d65a1c127b773852346c68485c4ede47" + }, + "profile_json": { + "path": "/data/jialinzhang/SynthesizePipeline-server/DatasetNew/artifacts/data_core/tabular/n3/n3-dataset_profile.json", + "exists": true, + "size": 5235, + "sha256": "23d2e5904a2ca90cbf8d6e3c75887681721e9b90cc705c31a680c11513d0c46f" + }, + "contract_json": { + "path": "/data/jialinzhang/SynthesizePipeline-server/DatasetNew/artifacts/data_core/tabular/n3/n3-dataset_contract_v1.json", + "exists": true, + "size": 6281, + "sha256": "c0cc56f5fe28e1b65927255c6e3c2b0e9479862c2ec6f2fea1664da36c9a3a09" + } + } +} \ No newline at end of file diff --git a/hyperparameter/n3/tabbyflow/tabbyflow-n3-20260505_012543/models_tabbyflow/trained.pt b/hyperparameter/n3/tabbyflow/tabbyflow-n3-20260505_012543/models_tabbyflow/trained.pt new file mode 100644 index 0000000000000000000000000000000000000000..f063a878c470d9d40f79db79881596e1e497dffd --- /dev/null +++ b/hyperparameter/n3/tabbyflow/tabbyflow-n3-20260505_012543/models_tabbyflow/trained.pt @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:adb734fec12f2251befd371dca69e481b19464aded2a6823105a01b4be6ddbe5 +size 40 diff --git a/hyperparameter/n3/tabbyflow/tabbyflow-n3-20260505_012543/public_gate/normalized_schema_snapshot.json b/hyperparameter/n3/tabbyflow/tabbyflow-n3-20260505_012543/public_gate/normalized_schema_snapshot.json new file mode 100644 index 0000000000000000000000000000000000000000..c41fe304503de23190a02e6cbfafa35b3bf134d3 --- /dev/null +++ b/hyperparameter/n3/tabbyflow/tabbyflow-n3-20260505_012543/public_gate/normalized_schema_snapshot.json @@ -0,0 +1,259 @@ +{ + "dataset_id": "n3", + "target_column": "quality", + "task_type": "classification", + "columns": [ + { + "name": "fixed acidity", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 66, + "unique_ratio": 0.016845, + "example_values": [ + "7.1", + "8.5", + "6.4", + "6.8", + "7.6" + ] + } + }, + { + "name": "volatile acidity", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 121, + "unique_ratio": 0.030883, + "example_values": [ + "0.31", + "0.21", + "0.24", + "0.43", + "0.27" + ] + } + }, + { + "name": "citric acid", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 85, + "unique_ratio": 0.021695, + "example_values": [ + "0.17", + "0.41", + "0.31", + "0.25", + "0.3" + ] + } + }, + { + "name": "residual sugar", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 296, + "unique_ratio": 0.075549, + "example_values": [ + "1", + "4.3", + "2.8", + "13", + "12.9" + ] + } + }, + { + "name": "chlorides", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 147, + "unique_ratio": 0.037519, + "example_values": [ + "0.042", + "0.036", + "0.038", + "0.047", + "0.033" + ] + } + }, + { + "name": "free sulfur dioxide", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 120, + "unique_ratio": 0.030628, + "example_values": [ + "21", + "24", + "41", + "43", + "69" + ] + } + }, + { + "name": "total sulfur dioxide", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 244, + "unique_ratio": 0.062277, + "example_values": [ + "144", + "99", + "114", + "132", + "160" + ] + } + }, + { + "name": "density", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 839, + "unique_ratio": 0.21414, + "example_values": [ + "0.99304", + "0.9947", + "0.99155", + "0.98975", + "0.99705" + ] + } + }, + { + "name": "pH", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 100, + "unique_ratio": 0.025523, + "example_values": [ + "3.13", + "3.18", + "3.37", + "3.21", + "3.16" + ] + } + }, + { + "name": "sulphates", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 78, + "unique_ratio": 0.019908, + "example_values": [ + "0.4", + "0.53", + "0.66", + "0.47", + "0.5" + ] + } + }, + { + "name": "alcohol", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 97, + "unique_ratio": 0.024758, + "example_values": [ + "9.6", + "9.7", + "11.7", + "13.4", + "8.8" + ] + } + }, + { + "name": "quality", + "role": "target", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 7, + "unique_ratio": 0.001787, + "example_values": [ + "5", + "6", + "7", + "8", + "3" + ] + } + } + ] +} \ No newline at end of file diff --git a/hyperparameter/n3/tabbyflow/tabbyflow-n3-20260505_012543/public_gate/public_gate_report.json b/hyperparameter/n3/tabbyflow/tabbyflow-n3-20260505_012543/public_gate/public_gate_report.json new file mode 100644 index 0000000000000000000000000000000000000000..93b97319f739e39079d6c6549fd2020f8a6dac25 --- /dev/null +++ b/hyperparameter/n3/tabbyflow/tabbyflow-n3-20260505_012543/public_gate/public_gate_report.json @@ -0,0 +1,37 @@ +{ + "dataset_id": "n3", + "status": "pass", + "checks": [ + { + "check_id": "PG001_csv_parse_ok", + "status": "pass" + }, + { + "check_id": "PG002_split_header_consistent", + "status": "pass" + }, + { + "check_id": "PG003_profile_header_match", + "status": "pass" + }, + { + "check_id": "PG004_missing_token_normalized", + "status": "pass" + }, + { + "check_id": "PG005_semantic_type_validated", + "status": "pass" + }, + { + "check_id": "PG006_target_defined_and_valid", + "status": "pass" + } + ], + "target_column": "quality", + "task_type": "classification", + "input_splits": { + "train": "/data/jialinzhang/SynthesizePipeline-server/DatasetNew/n3/n3-train.csv", + "val": "/data/jialinzhang/SynthesizePipeline-server/DatasetNew/n3/n3-val.csv", + "test": "/data/jialinzhang/SynthesizePipeline-server/DatasetNew/n3/n3-test.csv" + } +} \ No newline at end of file diff --git a/hyperparameter/n3/tabbyflow/tabbyflow-n3-20260505_012543/public_gate/staged_input_manifest.json b/hyperparameter/n3/tabbyflow/tabbyflow-n3-20260505_012543/public_gate/staged_input_manifest.json new file mode 100644 index 0000000000000000000000000000000000000000..66b048d00a4f66ee494a9de5382cc0a09b26a496 --- /dev/null +++ b/hyperparameter/n3/tabbyflow/tabbyflow-n3-20260505_012543/public_gate/staged_input_manifest.json @@ -0,0 +1,264 @@ +{ + "dataset_id": "n3", + "target_column": "quality", + "task_type": "classification", + "train_csv": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/n3/tabbyflow/tabbyflow-n3-20260505_012543/staged/public/train.csv", + "val_csv": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/n3/tabbyflow/tabbyflow-n3-20260505_012543/staged/public/val.csv", + "test_csv": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/n3/tabbyflow/tabbyflow-n3-20260505_012543/staged/public/test.csv", + "features_json": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/n3/tabbyflow/tabbyflow-n3-20260505_012543/staged/public/staged_features.json", + "public_gate_report": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/n3/tabbyflow/tabbyflow-n3-20260505_012543/public_gate/public_gate_report.json", + "column_schema": [ + { + "name": "fixed acidity", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 66, + "unique_ratio": 0.016845, + "example_values": [ + "7.1", + "8.5", + "6.4", + "6.8", + "7.6" + ] + } + }, + { + "name": "volatile acidity", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 121, + "unique_ratio": 0.030883, + "example_values": [ + "0.31", + "0.21", + "0.24", + "0.43", + "0.27" + ] + } + }, + { + "name": "citric acid", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 85, + "unique_ratio": 0.021695, + "example_values": [ + "0.17", + "0.41", + "0.31", + "0.25", + "0.3" + ] + } + }, + { + "name": "residual sugar", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 296, + "unique_ratio": 0.075549, + "example_values": [ + "1", + "4.3", + "2.8", + "13", + "12.9" + ] + } + }, + { + "name": "chlorides", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 147, + "unique_ratio": 0.037519, + "example_values": [ + "0.042", + "0.036", + "0.038", + "0.047", + "0.033" + ] + } + }, + { + "name": "free sulfur dioxide", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 120, + "unique_ratio": 0.030628, + "example_values": [ + "21", + "24", + "41", + "43", + "69" + ] + } + }, + { + "name": "total sulfur dioxide", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 244, + "unique_ratio": 0.062277, + "example_values": [ + "144", + "99", + "114", + "132", + "160" + ] + } + }, + { + "name": "density", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 839, + "unique_ratio": 0.21414, + "example_values": [ + "0.99304", + "0.9947", + "0.99155", + "0.98975", + "0.99705" + ] + } + }, + { + "name": "pH", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 100, + "unique_ratio": 0.025523, + "example_values": [ + "3.13", + "3.18", + "3.37", + "3.21", + "3.16" + ] + } + }, + { + "name": "sulphates", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 78, + "unique_ratio": 0.019908, + "example_values": [ + "0.4", + "0.53", + "0.66", + "0.47", + "0.5" + ] + } + }, + { + "name": "alcohol", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 97, + "unique_ratio": 0.024758, + "example_values": [ + "9.6", + "9.7", + "11.7", + "13.4", + "8.8" + ] + } + }, + { + "name": "quality", + "role": "target", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 7, + "unique_ratio": 0.001787, + "example_values": [ + "5", + "6", + "7", + "8", + "3" + ] + } + } + ] +} \ No newline at end of file diff --git a/hyperparameter/n3/tabbyflow/tabbyflow-n3-20260505_012543/run_config.json b/hyperparameter/n3/tabbyflow/tabbyflow-n3-20260505_012543/run_config.json new file mode 100644 index 0000000000000000000000000000000000000000..459960685146db1766af37d904a0d36ab0d08bb9 --- /dev/null +++ b/hyperparameter/n3/tabbyflow/tabbyflow-n3-20260505_012543/run_config.json @@ -0,0 +1,42 @@ +{ + "schema_version": 1, + "recorded_at": "2026-05-05T01:25:43", + "dataset_id": "n3", + "model": "tabbyflow", + "work_dir": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/n3/tabbyflow/tabbyflow-n3-20260505_012543", + "dataset_source_requested": "new", + "dataset_source_resolved": "new", + "cli_args": { + "model": "tabbyflow", + "dataset": "n3", + "dataset_source": "new", + "train": true, + "generate": true, + "num_rows": 0, + "epochs": 700, + "output_dir": null, + "model_dir": null, + "work_dir": null, + "resume": false, + "no_stats": false + }, + "resolved": { + "num_rows": 3918, + "model_path": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/n3/tabbyflow/tabbyflow-n3-20260505_012543/models_tabbyflow/trained.pt", + "output_csv": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/n3/tabbyflow/tabbyflow-n3-20260505_012543/tabbyflow-n3-3918-20260505_013725.csv" + }, + "input_artifacts": { + "public_gate_report": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/n3/tabbyflow/tabbyflow-n3-20260505_012543/public_gate/public_gate_report.json", + "public_manifest": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/n3/tabbyflow/tabbyflow-n3-20260505_012543/public_gate/staged_input_manifest.json", + "model_manifest": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/n3/tabbyflow/tabbyflow-n3-20260505_012543/staged/tabbyflow/model_input_manifest.json", + "train_csv": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/n3/tabbyflow/tabbyflow-n3-20260505_012543/staged/public/train.csv", + "features_json": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/n3/tabbyflow/tabbyflow-n3-20260505_012543/staged/public/staged_features.json", + "target_column": "quality", + "task_type": "classification" + }, + "env_overrides": { + "BENCHMARK_TABBYFLOW_GPUS": "device=0", + "EFVFM_EVAL_NUM_SAMPLES": "2048", + "EFVFM_SAMPLE_BATCH_SIZE": "128" + } +} \ No newline at end of file diff --git a/hyperparameter/n3/tabbyflow/tabbyflow-n3-20260505_012543/runtime_result.json b/hyperparameter/n3/tabbyflow/tabbyflow-n3-20260505_012543/runtime_result.json new file mode 100644 index 0000000000000000000000000000000000000000..1724827ff3dcad07d9231415f60d200bed8d4d17 --- /dev/null +++ b/hyperparameter/n3/tabbyflow/tabbyflow-n3-20260505_012543/runtime_result.json @@ -0,0 +1,27 @@ +{ + "dataset_id": "n3", + "model": "tabbyflow", + "run_id": "tabbyflow-n3-20260505_012543", + "public_gate_status": "pass", + "adapter_ready_status": "pass", + "train_status": "success", + "generate_status": "success", + "reason_code": null, + "reason_detail": null, + "artifacts": { + "synthetic_csv": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/n3/tabbyflow/tabbyflow-n3-20260505_012543/tabbyflow-n3-3918-20260505_013725.csv", + "model_path": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/n3/tabbyflow/tabbyflow-n3-20260505_012543/models_tabbyflow/trained.pt" + }, + "timings": { + "train": { + "started_at": "2026-05-05T01:25:43", + "ended_at": "2026-05-05T01:37:25", + "duration_sec": 701.532 + }, + "generate": { + "started_at": "2026-05-05T01:37:25", + "ended_at": "2026-05-05T01:37:50", + "duration_sec": 25.26 + } + } +} \ No newline at end of file diff --git a/hyperparameter/n3/tabbyflow/tabbyflow-n3-20260505_012543/staged/public/staged_features.json b/hyperparameter/n3/tabbyflow/tabbyflow-n3-20260505_012543/staged/public/staged_features.json new file mode 100644 index 0000000000000000000000000000000000000000..08fe4d766d091d2f2ddba724a16b9509cbe4c390 --- /dev/null +++ b/hyperparameter/n3/tabbyflow/tabbyflow-n3-20260505_012543/staged/public/staged_features.json @@ -0,0 +1,62 @@ +[ + { + "feature_name": "fixed acidity", + "data_type": "continuous", + "is_target": false + }, + { + "feature_name": "volatile acidity", + "data_type": "continuous", + "is_target": false + }, + { + "feature_name": "citric acid", + "data_type": "continuous", + "is_target": false + }, + { + "feature_name": "residual sugar", + "data_type": "continuous", + "is_target": false + }, + { + "feature_name": "chlorides", + "data_type": "continuous", + "is_target": false + }, + { + "feature_name": "free sulfur dioxide", + "data_type": "continuous", + "is_target": false + }, + { + "feature_name": "total sulfur dioxide", + "data_type": "continuous", + "is_target": false + }, + { + "feature_name": "density", + "data_type": "continuous", + "is_target": false + }, + { + "feature_name": "pH", + "data_type": "continuous", + "is_target": false + }, + { + "feature_name": "sulphates", + "data_type": "continuous", + "is_target": false + }, + { + "feature_name": "alcohol", + "data_type": "continuous", + "is_target": false + }, + { + "feature_name": "quality", + "data_type": "continuous", + "is_target": true + } +] \ No newline at end of file diff --git a/hyperparameter/n3/tabbyflow/tabbyflow-n3-20260505_012543/staged/public/test.csv b/hyperparameter/n3/tabbyflow/tabbyflow-n3-20260505_012543/staged/public/test.csv new file mode 100644 index 0000000000000000000000000000000000000000..db5cd50d3746410ea470625fa2ba2c8e9775cc0d --- /dev/null +++ b/hyperparameter/n3/tabbyflow/tabbyflow-n3-20260505_012543/staged/public/test.csv @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:19e107152a94432e2a37ff045c00cfe35e1be30208b1553080d7dd0ede256d3b +size 28944 diff --git a/hyperparameter/n3/tabbyflow/tabbyflow-n3-20260505_012543/staged/public/train.csv b/hyperparameter/n3/tabbyflow/tabbyflow-n3-20260505_012543/staged/public/train.csv new file mode 100644 index 0000000000000000000000000000000000000000..87ca26726fe82ccbaa397919305b043c17eb374e --- /dev/null +++ b/hyperparameter/n3/tabbyflow/tabbyflow-n3-20260505_012543/staged/public/train.csv @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:7813c8cca73ba4bfc6559215257b341c21e459980ad17ae6ddc809306bc9a0b9 +size 229945 diff --git a/hyperparameter/n3/tabbyflow/tabbyflow-n3-20260505_012543/staged/public/val.csv b/hyperparameter/n3/tabbyflow/tabbyflow-n3-20260505_012543/staged/public/val.csv new file mode 100644 index 0000000000000000000000000000000000000000..6acf84c76c47093b513c46d5503972a2dff275c0 --- /dev/null +++ b/hyperparameter/n3/tabbyflow/tabbyflow-n3-20260505_012543/staged/public/val.csv @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:cf5979d9675567d9d6642640c9b84fc6c49e492604144723c30f50516c05cee6 +size 28791 diff --git a/hyperparameter/n3/tabbyflow/tabbyflow-n3-20260505_012543/staged/tabbyflow/adapter_report.json b/hyperparameter/n3/tabbyflow/tabbyflow-n3-20260505_012543/staged/tabbyflow/adapter_report.json new file mode 100644 index 0000000000000000000000000000000000000000..ade62f1033e209a932c33052ca12143e354b3f9d --- /dev/null +++ b/hyperparameter/n3/tabbyflow/tabbyflow-n3-20260505_012543/staged/tabbyflow/adapter_report.json @@ -0,0 +1,7 @@ +{ + "adapter_ready_status": "pass", + "adapter_fail_reason_code": null, + "adapter_fail_detail": null, + "adapter_transforms_applied": [], + "model_input_manifest": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/n3/tabbyflow/tabbyflow-n3-20260505_012543/staged/tabbyflow/model_input_manifest.json" +} \ No newline at end of file diff --git a/hyperparameter/n3/tabbyflow/tabbyflow-n3-20260505_012543/staged/tabbyflow/adapter_transforms_applied.json b/hyperparameter/n3/tabbyflow/tabbyflow-n3-20260505_012543/staged/tabbyflow/adapter_transforms_applied.json new file mode 100644 index 0000000000000000000000000000000000000000..0637a088a01e8ddab3bf3fa98dbe804cbde1a0dc --- /dev/null +++ b/hyperparameter/n3/tabbyflow/tabbyflow-n3-20260505_012543/staged/tabbyflow/adapter_transforms_applied.json @@ -0,0 +1 @@ +[] \ No newline at end of file diff --git a/hyperparameter/n3/tabbyflow/tabbyflow-n3-20260505_012543/staged/tabbyflow/model_input_manifest.json b/hyperparameter/n3/tabbyflow/tabbyflow-n3-20260505_012543/staged/tabbyflow/model_input_manifest.json new file mode 100644 index 0000000000000000000000000000000000000000..57f29d84de93b8c634b0ee9e4fee7f6a565168d9 --- /dev/null +++ b/hyperparameter/n3/tabbyflow/tabbyflow-n3-20260505_012543/staged/tabbyflow/model_input_manifest.json @@ -0,0 +1,266 @@ +{ + "dataset_id": "n3", + "model": "tabbyflow", + "target_column": "quality", + "task_type": "classification", + "column_schema": [ + { + "name": "fixed acidity", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 66, + "unique_ratio": 0.016845, + "example_values": [ + "7.1", + "8.5", + "6.4", + "6.8", + "7.6" + ] + } + }, + { + "name": "volatile acidity", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 121, + "unique_ratio": 0.030883, + "example_values": [ + "0.31", + "0.21", + "0.24", + "0.43", + "0.27" + ] + } + }, + { + "name": "citric acid", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 85, + "unique_ratio": 0.021695, + "example_values": [ + "0.17", + "0.41", + "0.31", + "0.25", + "0.3" + ] + } + }, + { + "name": "residual sugar", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 296, + "unique_ratio": 0.075549, + "example_values": [ + "1", + "4.3", + "2.8", + "13", + "12.9" + ] + } + }, + { + "name": "chlorides", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 147, + "unique_ratio": 0.037519, + "example_values": [ + "0.042", + "0.036", + "0.038", + "0.047", + "0.033" + ] + } + }, + { + "name": "free sulfur dioxide", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 120, + "unique_ratio": 0.030628, + "example_values": [ + "21", + "24", + "41", + "43", + "69" + ] + } + }, + { + "name": "total sulfur dioxide", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 244, + "unique_ratio": 0.062277, + "example_values": [ + "144", + "99", + "114", + "132", + "160" + ] + } + }, + { + "name": "density", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 839, + "unique_ratio": 0.21414, + "example_values": [ + "0.99304", + "0.9947", + "0.99155", + "0.98975", + "0.99705" + ] + } + }, + { + "name": "pH", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 100, + "unique_ratio": 0.025523, + "example_values": [ + "3.13", + "3.18", + "3.37", + "3.21", + "3.16" + ] + } + }, + { + "name": "sulphates", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 78, + "unique_ratio": 0.019908, + "example_values": [ + "0.4", + "0.53", + "0.66", + "0.47", + "0.5" + ] + } + }, + { + "name": "alcohol", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 97, + "unique_ratio": 0.024758, + "example_values": [ + "9.6", + "9.7", + "11.7", + "13.4", + "8.8" + ] + } + }, + { + "name": "quality", + "role": "target", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 7, + "unique_ratio": 0.001787, + "example_values": [ + "5", + "6", + "7", + "8", + "3" + ] + } + } + ], + "public_manifest": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/n3/tabbyflow/tabbyflow-n3-20260505_012543/public_gate/staged_input_manifest.json", + "train_csv": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/n3/tabbyflow/tabbyflow-n3-20260505_012543/staged/public/train.csv", + "val_csv": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/n3/tabbyflow/tabbyflow-n3-20260505_012543/staged/public/val.csv", + "test_csv": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/n3/tabbyflow/tabbyflow-n3-20260505_012543/staged/public/test.csv", + "features_json": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/n3/tabbyflow/tabbyflow-n3-20260505_012543/staged/public/staged_features.json", + "public_gate_report": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/n3/tabbyflow/tabbyflow-n3-20260505_012543/public_gate/public_gate_report.json" +} \ No newline at end of file diff --git a/hyperparameter/n3/tabbyflow/tabbyflow-n3-20260505_012543/tabbyflow-n3-3918-20260505_013725.csv b/hyperparameter/n3/tabbyflow/tabbyflow-n3-20260505_012543/tabbyflow-n3-3918-20260505_013725.csv new file mode 100644 index 0000000000000000000000000000000000000000..82a63aa260bb127eec66833d3cb260c5235e5736 --- /dev/null +++ b/hyperparameter/n3/tabbyflow/tabbyflow-n3-20260505_012543/tabbyflow-n3-3918-20260505_013725.csv @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:92c44e567d7cf629381476850703484b8817a845d546b8b11d289d602b7d7dd5 +size 340740 diff --git a/hyperparameter/n3/tabbyflow/tabbyflow-n3-20260505_012543/tabbyflow_train_meta.json b/hyperparameter/n3/tabbyflow/tabbyflow-n3-20260505_012543/tabbyflow_train_meta.json new file mode 100644 index 0000000000000000000000000000000000000000..01ccad9f1fb3b4ccb64b48ed88d46fa71c766a85 --- /dev/null +++ b/hyperparameter/n3/tabbyflow/tabbyflow-n3-20260505_012543/tabbyflow_train_meta.json @@ -0,0 +1,5 @@ +{ + "exp_name": "adapter_efvfm", + "dataname": "pipeline_n3", + "steps": 700 +} \ No newline at end of file diff --git a/hyperparameter/n3/tabbyflow/tabbyflow-n3-20260505_012543/tabular_bundle/pipeline_n3/X_cat_test.npy b/hyperparameter/n3/tabbyflow/tabbyflow-n3-20260505_012543/tabular_bundle/pipeline_n3/X_cat_test.npy new file mode 100644 index 0000000000000000000000000000000000000000..76306e45faf838d072c21b887a4c1d43d486dc1b --- /dev/null +++ b/hyperparameter/n3/tabbyflow/tabbyflow-n3-20260505_012543/tabular_bundle/pipeline_n3/X_cat_test.npy @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:87f6573fdfd40c6332a9ef925bcb48bc20f08b3a6f72b6dceb949ae36d1871f7 +size 128 diff --git a/hyperparameter/n3/tabbyflow/tabbyflow-n3-20260505_012543/tabular_bundle/pipeline_n3/X_cat_train.npy b/hyperparameter/n3/tabbyflow/tabbyflow-n3-20260505_012543/tabular_bundle/pipeline_n3/X_cat_train.npy new file mode 100644 index 0000000000000000000000000000000000000000..76306e45faf838d072c21b887a4c1d43d486dc1b --- /dev/null +++ b/hyperparameter/n3/tabbyflow/tabbyflow-n3-20260505_012543/tabular_bundle/pipeline_n3/X_cat_train.npy @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:87f6573fdfd40c6332a9ef925bcb48bc20f08b3a6f72b6dceb949ae36d1871f7 +size 128 diff --git a/hyperparameter/n3/tabbyflow/tabbyflow-n3-20260505_012543/tabular_bundle/pipeline_n3/X_cat_val.npy b/hyperparameter/n3/tabbyflow/tabbyflow-n3-20260505_012543/tabular_bundle/pipeline_n3/X_cat_val.npy new file mode 100644 index 0000000000000000000000000000000000000000..76306e45faf838d072c21b887a4c1d43d486dc1b --- /dev/null +++ b/hyperparameter/n3/tabbyflow/tabbyflow-n3-20260505_012543/tabular_bundle/pipeline_n3/X_cat_val.npy @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:87f6573fdfd40c6332a9ef925bcb48bc20f08b3a6f72b6dceb949ae36d1871f7 +size 128 diff --git a/hyperparameter/n3/tabbyflow/tabbyflow-n3-20260505_012543/tabular_bundle/pipeline_n3/X_num_test.npy b/hyperparameter/n3/tabbyflow/tabbyflow-n3-20260505_012543/tabular_bundle/pipeline_n3/X_num_test.npy new file mode 100644 index 0000000000000000000000000000000000000000..94beb8413ef55592710518365965f4cb503523ee --- /dev/null +++ b/hyperparameter/n3/tabbyflow/tabbyflow-n3-20260505_012543/tabular_bundle/pipeline_n3/X_num_test.npy @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:093d8f405d764277d5a007953f25ab6466f0857f71f0d8f3c437463fb5bf240a +size 172520 diff --git a/hyperparameter/n3/tabbyflow/tabbyflow-n3-20260505_012543/tabular_bundle/pipeline_n3/X_num_train.npy b/hyperparameter/n3/tabbyflow/tabbyflow-n3-20260505_012543/tabular_bundle/pipeline_n3/X_num_train.npy new file mode 100644 index 0000000000000000000000000000000000000000..94beb8413ef55592710518365965f4cb503523ee --- /dev/null +++ b/hyperparameter/n3/tabbyflow/tabbyflow-n3-20260505_012543/tabular_bundle/pipeline_n3/X_num_train.npy @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:093d8f405d764277d5a007953f25ab6466f0857f71f0d8f3c437463fb5bf240a +size 172520 diff --git a/hyperparameter/n3/tabbyflow/tabbyflow-n3-20260505_012543/tabular_bundle/pipeline_n3/X_num_val.npy b/hyperparameter/n3/tabbyflow/tabbyflow-n3-20260505_012543/tabular_bundle/pipeline_n3/X_num_val.npy new file mode 100644 index 0000000000000000000000000000000000000000..94beb8413ef55592710518365965f4cb503523ee --- /dev/null +++ b/hyperparameter/n3/tabbyflow/tabbyflow-n3-20260505_012543/tabular_bundle/pipeline_n3/X_num_val.npy @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:093d8f405d764277d5a007953f25ab6466f0857f71f0d8f3c437463fb5bf240a +size 172520 diff --git a/hyperparameter/n3/tabbyflow/tabbyflow-n3-20260505_012543/tabular_bundle/pipeline_n3/info.json b/hyperparameter/n3/tabbyflow/tabbyflow-n3-20260505_012543/tabular_bundle/pipeline_n3/info.json new file mode 100644 index 0000000000000000000000000000000000000000..8b5f7b3a1a0c4ba2d967287826b9f5c5fd7619de --- /dev/null +++ b/hyperparameter/n3/tabbyflow/tabbyflow-n3-20260505_012543/tabular_bundle/pipeline_n3/info.json @@ -0,0 +1,139 @@ +{ + "name": "pipeline_n3", + "task_type": "multiclass", + "n_num_features": 11, + "n_cat_features": 0, + "train_size": 3918, + "test_num": 3918, + "val_num": 3918, + "train_num": 3918, + "bundle_note": "val/test matrices are train copies (train-only policy; no real held-out rows).", + "num_col_idx": [ + 0, + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10 + ], + "cat_col_idx": [], + "target_col_idx": [ + 11 + ], + "column_names": [ + "fixed acidity", + "volatile acidity", + "citric acid", + "residual sugar", + "chlorides", + "free sulfur dioxide", + "total sulfur dioxide", + "density", + "pH", + "sulphates", + "alcohol", + "quality" + ], + "int_col_idx": [], + "int_columns": [], + "int_col_idx_wrt_num": [], + "metadata": { + "columns": { + "0": { + "sdtype": "numerical", + "computer_representation": "Float" + }, + "1": { + "sdtype": "numerical", + "computer_representation": "Float" + }, + "2": { + "sdtype": "numerical", + "computer_representation": "Float" + }, + "3": { + "sdtype": "numerical", + "computer_representation": "Float" + }, + "4": { + "sdtype": "numerical", + "computer_representation": "Float" + }, + "5": { + "sdtype": "numerical", + "computer_representation": "Float" + }, + "6": { + "sdtype": "numerical", + "computer_representation": "Float" + }, + "7": { + "sdtype": "numerical", + "computer_representation": "Float" + }, + "8": { + "sdtype": "numerical", + "computer_representation": "Float" + }, + "9": { + "sdtype": "numerical", + "computer_representation": "Float" + }, + "10": { + "sdtype": "numerical", + "computer_representation": "Float" + }, + "11": { + "sdtype": "categorical" + } + } + }, + "idx_mapping": { + "0": 0, + "1": 1, + "2": 2, + "3": 3, + "4": 4, + "5": 5, + "6": 6, + "7": 7, + "8": 8, + "9": 9, + "10": 10, + "11": 11 + }, + "inverse_idx_mapping": { + "0": 0, + "1": 1, + "2": 2, + "3": 3, + "4": 4, + "5": 5, + "6": 6, + "7": 7, + "8": 8, + "9": 9, + "10": 10, + "11": 11 + }, + "idx_name_mapping": { + "0": "fixed acidity", + "1": "volatile acidity", + "2": "citric acid", + "3": "residual sugar", + "4": "chlorides", + "5": "free sulfur dioxide", + "6": "total sulfur dioxide", + "7": "density", + "8": "pH", + "9": "sulphates", + "10": "alcohol", + "11": "quality" + }, + "n_classes": 7 +} \ No newline at end of file diff --git a/hyperparameter/n3/tabbyflow/tabbyflow-n3-20260505_012543/tabular_bundle/pipeline_n3/real.csv b/hyperparameter/n3/tabbyflow/tabbyflow-n3-20260505_012543/tabular_bundle/pipeline_n3/real.csv new file mode 100644 index 0000000000000000000000000000000000000000..b4297372e8b9b076d6c03efa023cbf23edee4f56 --- /dev/null +++ b/hyperparameter/n3/tabbyflow/tabbyflow-n3-20260505_012543/tabular_bundle/pipeline_n3/real.csv @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:c80ba530c12c66a78530db5d98ead5f78fcdad2fe5eccccbc28d9649ceaa6023 +size 229825 diff --git a/hyperparameter/n3/tabbyflow/tabbyflow-n3-20260505_012543/tabular_bundle/pipeline_n3/test.csv b/hyperparameter/n3/tabbyflow/tabbyflow-n3-20260505_012543/tabular_bundle/pipeline_n3/test.csv new file mode 100644 index 0000000000000000000000000000000000000000..b4297372e8b9b076d6c03efa023cbf23edee4f56 --- /dev/null +++ b/hyperparameter/n3/tabbyflow/tabbyflow-n3-20260505_012543/tabular_bundle/pipeline_n3/test.csv @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:c80ba530c12c66a78530db5d98ead5f78fcdad2fe5eccccbc28d9649ceaa6023 +size 229825 diff --git a/hyperparameter/n3/tabbyflow/tabbyflow-n3-20260505_012543/tabular_bundle/pipeline_n3/val.csv b/hyperparameter/n3/tabbyflow/tabbyflow-n3-20260505_012543/tabular_bundle/pipeline_n3/val.csv new file mode 100644 index 0000000000000000000000000000000000000000..b4297372e8b9b076d6c03efa023cbf23edee4f56 --- /dev/null +++ b/hyperparameter/n3/tabbyflow/tabbyflow-n3-20260505_012543/tabular_bundle/pipeline_n3/val.csv @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:c80ba530c12c66a78530db5d98ead5f78fcdad2fe5eccccbc28d9649ceaa6023 +size 229825 diff --git a/hyperparameter/n3/tabbyflow/tabbyflow-n3-20260505_012543/tabular_bundle/pipeline_n3/y_test.npy b/hyperparameter/n3/tabbyflow/tabbyflow-n3-20260505_012543/tabular_bundle/pipeline_n3/y_test.npy new file mode 100644 index 0000000000000000000000000000000000000000..1f737a58cd26592130c3604aaa90044a451eb576 --- /dev/null +++ b/hyperparameter/n3/tabbyflow/tabbyflow-n3-20260505_012543/tabular_bundle/pipeline_n3/y_test.npy @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:85ed37c52f0ea54dfd3a476dcfafff02d61e92783748e5ee9aadfad20578bcb1 +size 31472 diff --git a/hyperparameter/n3/tabbyflow/tabbyflow-n3-20260505_012543/tabular_bundle/pipeline_n3/y_train.npy b/hyperparameter/n3/tabbyflow/tabbyflow-n3-20260505_012543/tabular_bundle/pipeline_n3/y_train.npy new file mode 100644 index 0000000000000000000000000000000000000000..1f737a58cd26592130c3604aaa90044a451eb576 --- /dev/null +++ b/hyperparameter/n3/tabbyflow/tabbyflow-n3-20260505_012543/tabular_bundle/pipeline_n3/y_train.npy @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:85ed37c52f0ea54dfd3a476dcfafff02d61e92783748e5ee9aadfad20578bcb1 +size 31472 diff --git a/hyperparameter/n3/tabbyflow/tabbyflow-n3-20260505_012543/tabular_bundle/pipeline_n3/y_val.npy b/hyperparameter/n3/tabbyflow/tabbyflow-n3-20260505_012543/tabular_bundle/pipeline_n3/y_val.npy new file mode 100644 index 0000000000000000000000000000000000000000..1f737a58cd26592130c3604aaa90044a451eb576 --- /dev/null +++ b/hyperparameter/n3/tabbyflow/tabbyflow-n3-20260505_012543/tabular_bundle/pipeline_n3/y_val.npy @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:85ed37c52f0ea54dfd3a476dcfafff02d61e92783748e5ee9aadfad20578bcb1 +size 31472 diff --git a/hyperparameter/n3/tabbyflow/tabbyflow-n3-20260505_012543/train_20260505_012543.log b/hyperparameter/n3/tabbyflow/tabbyflow-n3-20260505_012543/train_20260505_012543.log new file mode 100644 index 0000000000000000000000000000000000000000..337704e99f50e60daa8b680782e4cea3766db810 --- /dev/null +++ b/hyperparameter/n3/tabbyflow/tabbyflow-n3-20260505_012543/train_20260505_012543.log @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:655d2ba9d46b8601a0ca8d709855e6e01fbb3780e0fbdd89d064ee387d169ac6 +size 405514 diff --git a/hyperparameter/n3/tabddpm/tabddpm-n3-20260504_184319/_tabddpm_sample_r0.py b/hyperparameter/n3/tabddpm/tabddpm-n3-20260504_184319/_tabddpm_sample_r0.py new file mode 100644 index 0000000000000000000000000000000000000000..ada50ee76c927a16be6763e23abc7e1e4c6c4464 --- /dev/null +++ b/hyperparameter/n3/tabddpm/tabddpm-n3-20260504_184319/_tabddpm_sample_r0.py @@ -0,0 +1,66 @@ +import os, sys, subprocess, json +import numpy as np +import pandas as pd + +tabddpm_root = "/workspace/tabddpm/code" +assert os.path.isdir(tabddpm_root), f"TabDDPM source not mounted: {tabddpm_root}" +env = os.environ.copy() +env["PYTHONPATH"] = tabddpm_root + (os.pathsep + env.get("PYTHONPATH", "")) + +# Reuse the compat wrapper (patches collections.Sequence for skorch) +wrapper = os.path.join(tabddpm_root, "_compat_run.py") +if not os.path.exists(wrapper): + with open(wrapper, "w") as f: + f.write( + "import collections, collections.abc\n" + "for _a in ('Sequence','MutableSequence','MutableMapping','Mapping'," + "'MutableSet','Set','Callable','Iterable','Iterator'):\n" + " if not hasattr(collections, _a): setattr(collections, _a, getattr(collections.abc, _a, None))\n" + "import sys, runpy\n" + "sys.argv = sys.argv[1:]\n" + "runpy.run_path(sys.argv[0], run_name='__main__')\n" + ) + +print(f"[TabDDPM] Sampling 3918 rows") +ret = subprocess.run( + [sys.executable, wrapper, "scripts/pipeline.py", + "--config", "/work/output-Benchmark-trainonly-v1/n3/tabddpm/tabddpm-n3-20260504_184319/config_sample_20260504_184334_r0.toml", + "--sample"], + cwd=tabddpm_root, + env=env +) +if ret.returncode != 0: + sys.exit(ret.returncode) + +# 将 .npy 输出转为 CSV(npy 在 TabDDPM 的 parent_dir,即 npy_dir) +info_path = "/work/output-Benchmark-trainonly-v1/n3/tabddpm/tabddpm-n3-20260504_184319/data/info.json" +with open(info_path) as f: + info = json.load(f) + +output_dir = "/work/output-Benchmark-trainonly-v1/n3/tabddpm/tabddpm-n3-20260504_184319/output" +col_names = info.get("column_names", []) + +parts = [] +x_num_path = os.path.join(output_dir, "X_num_train.npy") +x_cat_path = os.path.join(output_dir, "X_cat_train.npy") +y_path = os.path.join(output_dir, "y_train.npy") + +if os.path.exists(x_num_path): + parts.append(np.load(x_num_path, allow_pickle=True)) +if os.path.exists(x_cat_path): + parts.append(np.load(x_cat_path, allow_pickle=True).astype(float)) +if os.path.exists(y_path): + y = np.load(y_path, allow_pickle=True) + parts.append(y.reshape(-1, 1) if y.ndim == 1 else y) + +if parts: + combined = np.concatenate(parts, axis=1) + if col_names and len(col_names) == combined.shape[1]: + df = pd.DataFrame(combined, columns=col_names) + else: + df = pd.DataFrame(combined) + df.to_csv("/work/output-Benchmark-trainonly-v1/n3/tabddpm/tabddpm-n3-20260504_184319/tabddpm-n3-3918-20260504_184334.csv", index=False) + print(f"[TabDDPM] Saved {len(df)} rows -> /work/output-Benchmark-trainonly-v1/n3/tabddpm/tabddpm-n3-20260504_184319/tabddpm-n3-3918-20260504_184334.csv") +else: + print("[TabDDPM] WARNING: No output .npy files found") + sys.exit(1) diff --git a/hyperparameter/n3/tabddpm/tabddpm-n3-20260504_184319/_tabddpm_train.py b/hyperparameter/n3/tabddpm/tabddpm-n3-20260504_184319/_tabddpm_train.py new file mode 100644 index 0000000000000000000000000000000000000000..fe53a61471f588b511f792ad82a56804ac821e1c --- /dev/null +++ b/hyperparameter/n3/tabddpm/tabddpm-n3-20260504_184319/_tabddpm_train.py @@ -0,0 +1,32 @@ +import os, sys, subprocess + +tabddpm_root = "/workspace/tabddpm/code" +assert os.path.isdir(tabddpm_root), f"TabDDPM source not mounted: {tabddpm_root}" +env = os.environ.copy() +env["PYTHONPATH"] = tabddpm_root + (os.pathsep + env.get("PYTHONPATH", "")) + +# Write a wrapper that patches collections.Sequence (removed in Python 3.10+) +# before running pipeline.py - needed because skorch uses old API +wrapper = os.path.join(tabddpm_root, "_compat_run.py") +with open(wrapper, "w") as f: + f.write( + "import collections, collections.abc\n" + "for _a in ('Sequence','MutableSequence','MutableMapping','Mapping'," + "'MutableSet','Set','Callable','Iterable','Iterator'):\n" + " if not hasattr(collections, _a): setattr(collections, _a, getattr(collections.abc, _a, None))\n" + "import sys, runpy\n" + "sys.argv = sys.argv[1:]\n" + "runpy.run_path(sys.argv[0], run_name='__main__')\n" + ) + +print(f"[TabDDPM] Training, config=/work/output-Benchmark-trainonly-v1/n3/tabddpm/tabddpm-n3-20260504_184319/config.toml") +ret = subprocess.run( + [sys.executable, wrapper, "scripts/pipeline.py", + "--config", "/work/output-Benchmark-trainonly-v1/n3/tabddpm/tabddpm-n3-20260504_184319/config.toml", + "--train"], + cwd=tabddpm_root, + env=env +) +if ret.returncode != 0: + sys.exit(ret.returncode) +print("[TabDDPM] Training complete") diff --git a/hyperparameter/n3/tabddpm/tabddpm-n3-20260504_184319/config.toml b/hyperparameter/n3/tabddpm/tabddpm-n3-20260504_184319/config.toml new file mode 100644 index 0000000000000000000000000000000000000000..bab2b0f32f2d76add717ff39968a403cdad40802 --- /dev/null +++ b/hyperparameter/n3/tabddpm/tabddpm-n3-20260504_184319/config.toml @@ -0,0 +1,39 @@ +seed = 0 +parent_dir = "/work/output-Benchmark-trainonly-v1/n3/tabddpm/tabddpm-n3-20260504_184319/output" +real_data_path = "/work/output-Benchmark-trainonly-v1/n3/tabddpm/tabddpm-n3-20260504_184319/data" +model_type = "mlp" +num_numerical_features = 11 +device = "cuda:0" + +[model_params] +d_in = 11 +num_classes = 7 +is_y_cond = true + +[model_params.rtdl_params] +d_layers = [256, 256] +dropout = 0.0 + +[diffusion_params] +num_timesteps = 200 +gaussian_loss_type = "mse" + +[train.main] +steps = 2000 +lr = 0.001 +weight_decay = 0.0 +batch_size = 256 + +[train.T] +seed = 0 +normalization = "quantile" +num_nan_policy = "__none__" +cat_nan_policy = "__none__" +cat_min_frequency = "__none__" +cat_encoding = "__none__" +y_policy = "default" + +[sample] +num_samples = 1000 +batch_size = 256 +seed = 0 diff --git a/hyperparameter/n3/tabddpm/tabddpm-n3-20260504_184319/config_sample_20260504_184334_r0.toml b/hyperparameter/n3/tabddpm/tabddpm-n3-20260504_184319/config_sample_20260504_184334_r0.toml new file mode 100644 index 0000000000000000000000000000000000000000..6fa42a3262f6cd3a6f2d1d1921f98d0f7d5628da --- /dev/null +++ b/hyperparameter/n3/tabddpm/tabddpm-n3-20260504_184319/config_sample_20260504_184334_r0.toml @@ -0,0 +1,39 @@ +seed = 0 +parent_dir = "/work/output-Benchmark-trainonly-v1/n3/tabddpm/tabddpm-n3-20260504_184319/output" +real_data_path = "/work/output-Benchmark-trainonly-v1/n3/tabddpm/tabddpm-n3-20260504_184319/data" +model_type = "mlp" +num_numerical_features = 11 +device = "cuda:0" + +[model_params] +d_in = 11 +num_classes = 7 +is_y_cond = true + +[model_params.rtdl_params] +d_layers = [256, 256] +dropout = 0.0 + +[diffusion_params] +num_timesteps = 200 +gaussian_loss_type = "mse" + +[train.main] +steps = 2000 +lr = 0.001 +weight_decay = 0.0 +batch_size = 256 + +[train.T] +seed = 0 +normalization = "quantile" +num_nan_policy = "__none__" +cat_nan_policy = "__none__" +cat_min_frequency = "__none__" +cat_encoding = "__none__" +y_policy = "default" + +[sample] +num_samples = 3918 +batch_size = 256 +seed = 0 diff --git a/hyperparameter/n3/tabddpm/tabddpm-n3-20260504_184319/data/X_num_train.npy b/hyperparameter/n3/tabddpm/tabddpm-n3-20260504_184319/data/X_num_train.npy new file mode 100644 index 0000000000000000000000000000000000000000..94beb8413ef55592710518365965f4cb503523ee --- /dev/null +++ b/hyperparameter/n3/tabddpm/tabddpm-n3-20260504_184319/data/X_num_train.npy @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:093d8f405d764277d5a007953f25ab6466f0857f71f0d8f3c437463fb5bf240a +size 172520 diff --git a/hyperparameter/n3/tabddpm/tabddpm-n3-20260504_184319/data/info.json b/hyperparameter/n3/tabddpm/tabddpm-n3-20260504_184319/data/info.json new file mode 100644 index 0000000000000000000000000000000000000000..45d216717b2847b5a467946053f10b0f41c3148b --- /dev/null +++ b/hyperparameter/n3/tabddpm/tabddpm-n3-20260504_184319/data/info.json @@ -0,0 +1,39 @@ +{ + "name": "benchmark_dataset", + "task_type": "multiclass", + "n_num_features": 11, + "n_cat_features": 0, + "train_size": 3918, + "num_col_idx": [ + 0, + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10 + ], + "cat_col_idx": [], + "target_col_idx": [ + 11 + ], + "column_names": [ + "fixed acidity", + "volatile acidity", + "citric acid", + "residual sugar", + "chlorides", + "free sulfur dioxide", + "total sulfur dioxide", + "density", + "pH", + "sulphates", + "alcohol", + "quality" + ], + "num_classes": 7 +} \ No newline at end of file diff --git a/hyperparameter/n3/tabddpm/tabddpm-n3-20260504_184319/data/y_train.npy b/hyperparameter/n3/tabddpm/tabddpm-n3-20260504_184319/data/y_train.npy new file mode 100644 index 0000000000000000000000000000000000000000..1f737a58cd26592130c3604aaa90044a451eb576 --- /dev/null +++ b/hyperparameter/n3/tabddpm/tabddpm-n3-20260504_184319/data/y_train.npy @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:85ed37c52f0ea54dfd3a476dcfafff02d61e92783748e5ee9aadfad20578bcb1 +size 31472 diff --git a/hyperparameter/n3/tabddpm/tabddpm-n3-20260504_184319/gen_20260504_184334_r0.log b/hyperparameter/n3/tabddpm/tabddpm-n3-20260504_184319/gen_20260504_184334_r0.log new file mode 100644 index 0000000000000000000000000000000000000000..b1e1319aadf2c261120a577f98567ee34d16f6c9 --- /dev/null +++ b/hyperparameter/n3/tabddpm/tabddpm-n3-20260504_184319/gen_20260504_184334_r0.log @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:6656acb88fe007c8814576f3f7db1adb24aa119af65a4bb52d46d035b82857bf +size 67703 diff --git a/hyperparameter/n3/tabddpm/tabddpm-n3-20260504_184319/input_snapshot.json b/hyperparameter/n3/tabddpm/tabddpm-n3-20260504_184319/input_snapshot.json new file mode 100644 index 0000000000000000000000000000000000000000..34d3cbb5018ded64e57cf3350f6ec58dd908f565 --- /dev/null +++ b/hyperparameter/n3/tabddpm/tabddpm-n3-20260504_184319/input_snapshot.json @@ -0,0 +1,36 @@ +{ + "dataset_id": "n3", + "model": "tabddpm", + "inputs": { + "train_csv": { + "path": "/data/jialinzhang/SynthesizePipeline-server/DatasetNew/n3/n3-train.csv", + "exists": true, + "size": 211519, + "sha256": "2160a06db2fea02adb0ebb79d8d853bd2544580be301e71f6e8deeb1489a9009" + }, + "val_csv": { + "path": "/data/jialinzhang/SynthesizePipeline-server/DatasetNew/n3/n3-val.csv", + "exists": true, + "size": 26499, + "sha256": "d5ccfee07dfa9e7bdee5bb87642b43828e09f74c6cc0266a3d19d9feaa83106e" + }, + "test_csv": { + "path": "/data/jialinzhang/SynthesizePipeline-server/DatasetNew/n3/n3-test.csv", + "exists": true, + "size": 26676, + "sha256": "6f83aacb0d1747b95e287352a7fff5d9d65a1c127b773852346c68485c4ede47" + }, + "profile_json": { + "path": "/data/jialinzhang/SynthesizePipeline-server/DatasetNew/artifacts/data_core/tabular/n3/n3-dataset_profile.json", + "exists": true, + "size": 5235, + "sha256": "23d2e5904a2ca90cbf8d6e3c75887681721e9b90cc705c31a680c11513d0c46f" + }, + "contract_json": { + "path": "/data/jialinzhang/SynthesizePipeline-server/DatasetNew/artifacts/data_core/tabular/n3/n3-dataset_contract_v1.json", + "exists": true, + "size": 6281, + "sha256": "c0cc56f5fe28e1b65927255c6e3c2b0e9479862c2ec6f2fea1664da36c9a3a09" + } + } +} \ No newline at end of file diff --git a/hyperparameter/n3/tabddpm/tabddpm-n3-20260504_184319/output/X_num_train.npy b/hyperparameter/n3/tabddpm/tabddpm-n3-20260504_184319/output/X_num_train.npy new file mode 100644 index 0000000000000000000000000000000000000000..ec784faeea39a528baf43033aa4c8cb68eceb1f5 --- /dev/null +++ b/hyperparameter/n3/tabddpm/tabddpm-n3-20260504_184319/output/X_num_train.npy @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:aaed8a7d06ac7e0afc768a6c0afb032234393cc27236f3aa65c7b94e23b1e26d +size 344912 diff --git a/hyperparameter/n3/tabddpm/tabddpm-n3-20260504_184319/output/X_num_unnorm.npy b/hyperparameter/n3/tabddpm/tabddpm-n3-20260504_184319/output/X_num_unnorm.npy new file mode 100644 index 0000000000000000000000000000000000000000..b50cce7b55abe4fe6c687228e96f5a0e12cfa7a1 --- /dev/null +++ b/hyperparameter/n3/tabddpm/tabddpm-n3-20260504_184319/output/X_num_unnorm.npy @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:31e96511aad4d9c106590a5d764d5bccaf26b26079a05a60423a85f07b1d06cd +size 344912 diff --git a/hyperparameter/n3/tabddpm/tabddpm-n3-20260504_184319/output/config.toml b/hyperparameter/n3/tabddpm/tabddpm-n3-20260504_184319/output/config.toml new file mode 100644 index 0000000000000000000000000000000000000000..6fa42a3262f6cd3a6f2d1d1921f98d0f7d5628da --- /dev/null +++ b/hyperparameter/n3/tabddpm/tabddpm-n3-20260504_184319/output/config.toml @@ -0,0 +1,39 @@ +seed = 0 +parent_dir = "/work/output-Benchmark-trainonly-v1/n3/tabddpm/tabddpm-n3-20260504_184319/output" +real_data_path = "/work/output-Benchmark-trainonly-v1/n3/tabddpm/tabddpm-n3-20260504_184319/data" +model_type = "mlp" +num_numerical_features = 11 +device = "cuda:0" + +[model_params] +d_in = 11 +num_classes = 7 +is_y_cond = true + +[model_params.rtdl_params] +d_layers = [256, 256] +dropout = 0.0 + +[diffusion_params] +num_timesteps = 200 +gaussian_loss_type = "mse" + +[train.main] +steps = 2000 +lr = 0.001 +weight_decay = 0.0 +batch_size = 256 + +[train.T] +seed = 0 +normalization = "quantile" +num_nan_policy = "__none__" +cat_nan_policy = "__none__" +cat_min_frequency = "__none__" +cat_encoding = "__none__" +y_policy = "default" + +[sample] +num_samples = 3918 +batch_size = 256 +seed = 0 diff --git a/hyperparameter/n3/tabddpm/tabddpm-n3-20260504_184319/output/info.json b/hyperparameter/n3/tabddpm/tabddpm-n3-20260504_184319/output/info.json new file mode 100644 index 0000000000000000000000000000000000000000..45d216717b2847b5a467946053f10b0f41c3148b --- /dev/null +++ b/hyperparameter/n3/tabddpm/tabddpm-n3-20260504_184319/output/info.json @@ -0,0 +1,39 @@ +{ + "name": "benchmark_dataset", + "task_type": "multiclass", + "n_num_features": 11, + "n_cat_features": 0, + "train_size": 3918, + "num_col_idx": [ + 0, + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10 + ], + "cat_col_idx": [], + "target_col_idx": [ + 11 + ], + "column_names": [ + "fixed acidity", + "volatile acidity", + "citric acid", + "residual sugar", + "chlorides", + "free sulfur dioxide", + "total sulfur dioxide", + "density", + "pH", + "sulphates", + "alcohol", + "quality" + ], + "num_classes": 7 +} \ No newline at end of file diff --git a/hyperparameter/n3/tabddpm/tabddpm-n3-20260504_184319/output/loss.csv b/hyperparameter/n3/tabddpm/tabddpm-n3-20260504_184319/output/loss.csv new file mode 100644 index 0000000000000000000000000000000000000000..1ddac91b9a40dee09cf388aa06652536dc280c15 --- /dev/null +++ b/hyperparameter/n3/tabddpm/tabddpm-n3-20260504_184319/output/loss.csv @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:23c133bd3e48cb639b0b834b88cf2c9fccf217849cc9a005e10aaf0a72f35ee1 +size 507 diff --git a/hyperparameter/n3/tabddpm/tabddpm-n3-20260504_184319/output/model.pt b/hyperparameter/n3/tabddpm/tabddpm-n3-20260504_184319/output/model.pt new file mode 100644 index 0000000000000000000000000000000000000000..8f71de2707a999e92cc67e1c1bcaafbc67985823 --- /dev/null +++ b/hyperparameter/n3/tabddpm/tabddpm-n3-20260504_184319/output/model.pt @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:bc2c1fe10665e78b9c86333cd16b8be37e649e95460f66103604abeed34b0b98 +size 553046 diff --git a/hyperparameter/n3/tabddpm/tabddpm-n3-20260504_184319/output/model_ema.pt b/hyperparameter/n3/tabddpm/tabddpm-n3-20260504_184319/output/model_ema.pt new file mode 100644 index 0000000000000000000000000000000000000000..42f6c879d4aeae4055c90a8a6e46bc9dcb98757f --- /dev/null +++ b/hyperparameter/n3/tabddpm/tabddpm-n3-20260504_184319/output/model_ema.pt @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:5e2c070434a3780241cd9b6ff80a9f96728222b74df2c6ffd1d0a8e66214aafe +size 553890 diff --git a/hyperparameter/n3/tabddpm/tabddpm-n3-20260504_184319/output/y_train.npy b/hyperparameter/n3/tabddpm/tabddpm-n3-20260504_184319/output/y_train.npy new file mode 100644 index 0000000000000000000000000000000000000000..cea6160110d6a403447199b2a250a6ea77ede7b8 --- /dev/null +++ b/hyperparameter/n3/tabddpm/tabddpm-n3-20260504_184319/output/y_train.npy @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:4d886843627c3d1c9944174e0049dcf604cfa5b0b8e0631b955a75ab0e30bc7d +size 31472 diff --git a/hyperparameter/n3/tabddpm/tabddpm-n3-20260504_184319/public_gate/normalized_schema_snapshot.json b/hyperparameter/n3/tabddpm/tabddpm-n3-20260504_184319/public_gate/normalized_schema_snapshot.json new file mode 100644 index 0000000000000000000000000000000000000000..c41fe304503de23190a02e6cbfafa35b3bf134d3 --- /dev/null +++ b/hyperparameter/n3/tabddpm/tabddpm-n3-20260504_184319/public_gate/normalized_schema_snapshot.json @@ -0,0 +1,259 @@ +{ + "dataset_id": "n3", + "target_column": "quality", + "task_type": "classification", + "columns": [ + { + "name": "fixed acidity", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 66, + "unique_ratio": 0.016845, + "example_values": [ + "7.1", + "8.5", + "6.4", + "6.8", + "7.6" + ] + } + }, + { + "name": "volatile acidity", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 121, + "unique_ratio": 0.030883, + "example_values": [ + "0.31", + "0.21", + "0.24", + "0.43", + "0.27" + ] + } + }, + { + "name": "citric acid", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 85, + "unique_ratio": 0.021695, + "example_values": [ + "0.17", + "0.41", + "0.31", + "0.25", + "0.3" + ] + } + }, + { + "name": "residual sugar", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 296, + "unique_ratio": 0.075549, + "example_values": [ + "1", + "4.3", + "2.8", + "13", + "12.9" + ] + } + }, + { + "name": "chlorides", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 147, + "unique_ratio": 0.037519, + "example_values": [ + "0.042", + "0.036", + "0.038", + "0.047", + "0.033" + ] + } + }, + { + "name": "free sulfur dioxide", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 120, + "unique_ratio": 0.030628, + "example_values": [ + "21", + "24", + "41", + "43", + "69" + ] + } + }, + { + "name": "total sulfur dioxide", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 244, + "unique_ratio": 0.062277, + "example_values": [ + "144", + "99", + "114", + "132", + "160" + ] + } + }, + { + "name": "density", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 839, + "unique_ratio": 0.21414, + "example_values": [ + "0.99304", + "0.9947", + "0.99155", + "0.98975", + "0.99705" + ] + } + }, + { + "name": "pH", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 100, + "unique_ratio": 0.025523, + "example_values": [ + "3.13", + "3.18", + "3.37", + "3.21", + "3.16" + ] + } + }, + { + "name": "sulphates", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 78, + "unique_ratio": 0.019908, + "example_values": [ + "0.4", + "0.53", + "0.66", + "0.47", + "0.5" + ] + } + }, + { + "name": "alcohol", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 97, + "unique_ratio": 0.024758, + "example_values": [ + "9.6", + "9.7", + "11.7", + "13.4", + "8.8" + ] + } + }, + { + "name": "quality", + "role": "target", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 7, + "unique_ratio": 0.001787, + "example_values": [ + "5", + "6", + "7", + "8", + "3" + ] + } + } + ] +} \ No newline at end of file diff --git a/hyperparameter/n3/tabddpm/tabddpm-n3-20260504_184319/public_gate/public_gate_report.json b/hyperparameter/n3/tabddpm/tabddpm-n3-20260504_184319/public_gate/public_gate_report.json new file mode 100644 index 0000000000000000000000000000000000000000..93b97319f739e39079d6c6549fd2020f8a6dac25 --- /dev/null +++ b/hyperparameter/n3/tabddpm/tabddpm-n3-20260504_184319/public_gate/public_gate_report.json @@ -0,0 +1,37 @@ +{ + "dataset_id": "n3", + "status": "pass", + "checks": [ + { + "check_id": "PG001_csv_parse_ok", + "status": "pass" + }, + { + "check_id": "PG002_split_header_consistent", + "status": "pass" + }, + { + "check_id": "PG003_profile_header_match", + "status": "pass" + }, + { + "check_id": "PG004_missing_token_normalized", + "status": "pass" + }, + { + "check_id": "PG005_semantic_type_validated", + "status": "pass" + }, + { + "check_id": "PG006_target_defined_and_valid", + "status": "pass" + } + ], + "target_column": "quality", + "task_type": "classification", + "input_splits": { + "train": "/data/jialinzhang/SynthesizePipeline-server/DatasetNew/n3/n3-train.csv", + "val": "/data/jialinzhang/SynthesizePipeline-server/DatasetNew/n3/n3-val.csv", + "test": "/data/jialinzhang/SynthesizePipeline-server/DatasetNew/n3/n3-test.csv" + } +} \ No newline at end of file diff --git a/hyperparameter/n3/tabddpm/tabddpm-n3-20260504_184319/public_gate/staged_input_manifest.json b/hyperparameter/n3/tabddpm/tabddpm-n3-20260504_184319/public_gate/staged_input_manifest.json new file mode 100644 index 0000000000000000000000000000000000000000..d5f4455b94da96ef8600eae3c556370fc1432431 --- /dev/null +++ b/hyperparameter/n3/tabddpm/tabddpm-n3-20260504_184319/public_gate/staged_input_manifest.json @@ -0,0 +1,264 @@ +{ + "dataset_id": "n3", + "target_column": "quality", + "task_type": "classification", + "train_csv": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/n3/tabddpm/tabddpm-n3-20260504_184319/staged/public/train.csv", + "val_csv": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/n3/tabddpm/tabddpm-n3-20260504_184319/staged/public/val.csv", + "test_csv": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/n3/tabddpm/tabddpm-n3-20260504_184319/staged/public/test.csv", + "features_json": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/n3/tabddpm/tabddpm-n3-20260504_184319/staged/public/staged_features.json", + "public_gate_report": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/n3/tabddpm/tabddpm-n3-20260504_184319/public_gate/public_gate_report.json", + "column_schema": [ + { + "name": "fixed acidity", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 66, + "unique_ratio": 0.016845, + "example_values": [ + "7.1", + "8.5", + "6.4", + "6.8", + "7.6" + ] + } + }, + { + "name": "volatile acidity", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 121, + "unique_ratio": 0.030883, + "example_values": [ + "0.31", + "0.21", + "0.24", + "0.43", + "0.27" + ] + } + }, + { + "name": "citric acid", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 85, + "unique_ratio": 0.021695, + "example_values": [ + "0.17", + "0.41", + "0.31", + "0.25", + "0.3" + ] + } + }, + { + "name": "residual sugar", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 296, + "unique_ratio": 0.075549, + "example_values": [ + "1", + "4.3", + "2.8", + "13", + "12.9" + ] + } + }, + { + "name": "chlorides", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 147, + "unique_ratio": 0.037519, + "example_values": [ + "0.042", + "0.036", + "0.038", + "0.047", + "0.033" + ] + } + }, + { + "name": "free sulfur dioxide", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 120, + "unique_ratio": 0.030628, + "example_values": [ + "21", + "24", + "41", + "43", + "69" + ] + } + }, + { + "name": "total sulfur dioxide", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 244, + "unique_ratio": 0.062277, + "example_values": [ + "144", + "99", + "114", + "132", + "160" + ] + } + }, + { + "name": "density", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 839, + "unique_ratio": 0.21414, + "example_values": [ + "0.99304", + "0.9947", + "0.99155", + "0.98975", + "0.99705" + ] + } + }, + { + "name": "pH", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 100, + "unique_ratio": 0.025523, + "example_values": [ + "3.13", + "3.18", + "3.37", + "3.21", + "3.16" + ] + } + }, + { + "name": "sulphates", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 78, + "unique_ratio": 0.019908, + "example_values": [ + "0.4", + "0.53", + "0.66", + "0.47", + "0.5" + ] + } + }, + { + "name": "alcohol", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 97, + "unique_ratio": 0.024758, + "example_values": [ + "9.6", + "9.7", + "11.7", + "13.4", + "8.8" + ] + } + }, + { + "name": "quality", + "role": "target", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 7, + "unique_ratio": 0.001787, + "example_values": [ + "5", + "6", + "7", + "8", + "3" + ] + } + } + ] +} \ No newline at end of file diff --git a/hyperparameter/n3/tabddpm/tabddpm-n3-20260504_184319/run_config.json b/hyperparameter/n3/tabddpm/tabddpm-n3-20260504_184319/run_config.json new file mode 100644 index 0000000000000000000000000000000000000000..ce8320efd21115cca894696b7aa608a9b03412e5 --- /dev/null +++ b/hyperparameter/n3/tabddpm/tabddpm-n3-20260504_184319/run_config.json @@ -0,0 +1,45 @@ +{ + "schema_version": 1, + "recorded_at": "2026-05-04T18:43:19", + "dataset_id": "n3", + "model": "tabddpm", + "work_dir": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/n3/tabddpm/tabddpm-n3-20260504_184319", + "dataset_source_requested": "new", + "dataset_source_resolved": "new", + "cli_args": { + "model": "tabddpm", + "dataset": "n3", + "dataset_source": "new", + "train": true, + "generate": true, + "num_rows": 0, + "epochs": null, + "output_dir": null, + "model_dir": null, + "work_dir": null, + "resume": false, + "no_stats": false + }, + "resolved": { + "num_rows": 3918, + "model_path": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/n3/tabddpm/tabddpm-n3-20260504_184319", + "output_csv": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/n3/tabddpm/tabddpm-n3-20260504_184319/tabddpm-n3-3918-20260504_184334.csv" + }, + "input_artifacts": { + "public_gate_report": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/n3/tabddpm/tabddpm-n3-20260504_184319/public_gate/public_gate_report.json", + "public_manifest": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/n3/tabddpm/tabddpm-n3-20260504_184319/public_gate/staged_input_manifest.json", + "model_manifest": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/n3/tabddpm/tabddpm-n3-20260504_184319/staged/tabddpm/model_input_manifest.json", + "train_csv": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/n3/tabddpm/tabddpm-n3-20260504_184319/staged/public/train.csv", + "features_json": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/n3/tabddpm/tabddpm-n3-20260504_184319/staged/public/staged_features.json", + "target_column": "quality", + "task_type": "classification" + }, + "env_overrides": { + "BENCHMARK_TABDDPM_GPUS": "device=3", + "TABDDPM_NUM_TIMESTEPS": "200", + "TABDDPM_SAMPLE_BATCH_SIZE": "256", + "TABDDPM_STEPS_PER_EPOCH": "40", + "TABDDPM_TRAIN_BATCH_SIZE": "256", + "TABDDPM_TRAIN_LR": "0.001" + } +} \ No newline at end of file diff --git a/hyperparameter/n3/tabddpm/tabddpm-n3-20260504_184319/runtime_result.json b/hyperparameter/n3/tabddpm/tabddpm-n3-20260504_184319/runtime_result.json new file mode 100644 index 0000000000000000000000000000000000000000..acbae9d7110a2eedb36653dffb89e64d4c05fa3c --- /dev/null +++ b/hyperparameter/n3/tabddpm/tabddpm-n3-20260504_184319/runtime_result.json @@ -0,0 +1,27 @@ +{ + "dataset_id": "n3", + "model": "tabddpm", + "run_id": "tabddpm-n3-20260504_184319", + "public_gate_status": "pass", + "adapter_ready_status": "pass", + "train_status": "success", + "generate_status": "success", + "reason_code": null, + "reason_detail": null, + "artifacts": { + "synthetic_csv": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/n3/tabddpm/tabddpm-n3-20260504_184319/tabddpm-n3-3918-20260504_184334.csv", + "model_path": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/n3/tabddpm/tabddpm-n3-20260504_184319" + }, + "timings": { + "train": { + "started_at": "2026-05-04T18:43:19", + "ended_at": "2026-05-04T18:43:34", + "duration_sec": 15.264 + }, + "generate": { + "started_at": "2026-05-04T18:43:34", + "ended_at": "2026-05-04T18:43:45", + "duration_sec": 10.941 + } + } +} \ No newline at end of file diff --git a/hyperparameter/n3/tabddpm/tabddpm-n3-20260504_184319/staged/public/staged_features.json b/hyperparameter/n3/tabddpm/tabddpm-n3-20260504_184319/staged/public/staged_features.json new file mode 100644 index 0000000000000000000000000000000000000000..08fe4d766d091d2f2ddba724a16b9509cbe4c390 --- /dev/null +++ b/hyperparameter/n3/tabddpm/tabddpm-n3-20260504_184319/staged/public/staged_features.json @@ -0,0 +1,62 @@ +[ + { + "feature_name": "fixed acidity", + "data_type": "continuous", + "is_target": false + }, + { + "feature_name": "volatile acidity", + "data_type": "continuous", + "is_target": false + }, + { + "feature_name": "citric acid", + "data_type": "continuous", + "is_target": false + }, + { + "feature_name": "residual sugar", + "data_type": "continuous", + "is_target": false + }, + { + "feature_name": "chlorides", + "data_type": "continuous", + "is_target": false + }, + { + "feature_name": "free sulfur dioxide", + "data_type": "continuous", + "is_target": false + }, + { + "feature_name": "total sulfur dioxide", + "data_type": "continuous", + "is_target": false + }, + { + "feature_name": "density", + "data_type": "continuous", + "is_target": false + }, + { + "feature_name": "pH", + "data_type": "continuous", + "is_target": false + }, + { + "feature_name": "sulphates", + "data_type": "continuous", + "is_target": false + }, + { + "feature_name": "alcohol", + "data_type": "continuous", + "is_target": false + }, + { + "feature_name": "quality", + "data_type": "continuous", + "is_target": true + } +] \ No newline at end of file diff --git a/hyperparameter/n3/tabddpm/tabddpm-n3-20260504_184319/staged/public/test.csv b/hyperparameter/n3/tabddpm/tabddpm-n3-20260504_184319/staged/public/test.csv new file mode 100644 index 0000000000000000000000000000000000000000..db5cd50d3746410ea470625fa2ba2c8e9775cc0d --- /dev/null +++ b/hyperparameter/n3/tabddpm/tabddpm-n3-20260504_184319/staged/public/test.csv @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:19e107152a94432e2a37ff045c00cfe35e1be30208b1553080d7dd0ede256d3b +size 28944 diff --git a/hyperparameter/n3/tabddpm/tabddpm-n3-20260504_184319/staged/public/train.csv b/hyperparameter/n3/tabddpm/tabddpm-n3-20260504_184319/staged/public/train.csv new file mode 100644 index 0000000000000000000000000000000000000000..87ca26726fe82ccbaa397919305b043c17eb374e --- /dev/null +++ b/hyperparameter/n3/tabddpm/tabddpm-n3-20260504_184319/staged/public/train.csv @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:7813c8cca73ba4bfc6559215257b341c21e459980ad17ae6ddc809306bc9a0b9 +size 229945 diff --git a/hyperparameter/n3/tabddpm/tabddpm-n3-20260504_184319/staged/public/val.csv b/hyperparameter/n3/tabddpm/tabddpm-n3-20260504_184319/staged/public/val.csv new file mode 100644 index 0000000000000000000000000000000000000000..6acf84c76c47093b513c46d5503972a2dff275c0 --- /dev/null +++ b/hyperparameter/n3/tabddpm/tabddpm-n3-20260504_184319/staged/public/val.csv @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:cf5979d9675567d9d6642640c9b84fc6c49e492604144723c30f50516c05cee6 +size 28791 diff --git a/hyperparameter/n3/tabddpm/tabddpm-n3-20260504_184319/staged/tabddpm/adapter_report.json b/hyperparameter/n3/tabddpm/tabddpm-n3-20260504_184319/staged/tabddpm/adapter_report.json new file mode 100644 index 0000000000000000000000000000000000000000..36b105ae4fab9d511e7bdac767998a597c849b62 --- /dev/null +++ b/hyperparameter/n3/tabddpm/tabddpm-n3-20260504_184319/staged/tabddpm/adapter_report.json @@ -0,0 +1,7 @@ +{ + "adapter_ready_status": "pass", + "adapter_fail_reason_code": null, + "adapter_fail_detail": null, + "adapter_transforms_applied": [], + "model_input_manifest": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/n3/tabddpm/tabddpm-n3-20260504_184319/staged/tabddpm/model_input_manifest.json" +} \ No newline at end of file diff --git a/hyperparameter/n3/tabddpm/tabddpm-n3-20260504_184319/staged/tabddpm/adapter_transforms_applied.json b/hyperparameter/n3/tabddpm/tabddpm-n3-20260504_184319/staged/tabddpm/adapter_transforms_applied.json new file mode 100644 index 0000000000000000000000000000000000000000..0637a088a01e8ddab3bf3fa98dbe804cbde1a0dc --- /dev/null +++ b/hyperparameter/n3/tabddpm/tabddpm-n3-20260504_184319/staged/tabddpm/adapter_transforms_applied.json @@ -0,0 +1 @@ +[] \ No newline at end of file diff --git a/hyperparameter/n3/tabddpm/tabddpm-n3-20260504_184319/staged/tabddpm/model_input_manifest.json b/hyperparameter/n3/tabddpm/tabddpm-n3-20260504_184319/staged/tabddpm/model_input_manifest.json new file mode 100644 index 0000000000000000000000000000000000000000..8e6abfc542d72eb8b7dd2013f00bb53c0fe6ab8f --- /dev/null +++ b/hyperparameter/n3/tabddpm/tabddpm-n3-20260504_184319/staged/tabddpm/model_input_manifest.json @@ -0,0 +1,266 @@ +{ + "dataset_id": "n3", + "model": "tabddpm", + "target_column": "quality", + "task_type": "classification", + "column_schema": [ + { + "name": "fixed acidity", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 66, + "unique_ratio": 0.016845, + "example_values": [ + "7.1", + "8.5", + "6.4", + "6.8", + "7.6" + ] + } + }, + { + "name": "volatile acidity", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 121, + "unique_ratio": 0.030883, + "example_values": [ + "0.31", + "0.21", + "0.24", + "0.43", + "0.27" + ] + } + }, + { + "name": "citric acid", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 85, + "unique_ratio": 0.021695, + "example_values": [ + "0.17", + "0.41", + "0.31", + "0.25", + "0.3" + ] + } + }, + { + "name": "residual sugar", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 296, + "unique_ratio": 0.075549, + "example_values": [ + "1", + "4.3", + "2.8", + "13", + "12.9" + ] + } + }, + { + "name": "chlorides", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 147, + "unique_ratio": 0.037519, + "example_values": [ + "0.042", + "0.036", + "0.038", + "0.047", + "0.033" + ] + } + }, + { + "name": "free sulfur dioxide", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 120, + "unique_ratio": 0.030628, + "example_values": [ + "21", + "24", + "41", + "43", + "69" + ] + } + }, + { + "name": "total sulfur dioxide", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 244, + "unique_ratio": 0.062277, + "example_values": [ + "144", + "99", + "114", + "132", + "160" + ] + } + }, + { + "name": "density", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 839, + "unique_ratio": 0.21414, + "example_values": [ + "0.99304", + "0.9947", + "0.99155", + "0.98975", + "0.99705" + ] + } + }, + { + "name": "pH", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 100, + "unique_ratio": 0.025523, + "example_values": [ + "3.13", + "3.18", + "3.37", + "3.21", + "3.16" + ] + } + }, + { + "name": "sulphates", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 78, + "unique_ratio": 0.019908, + "example_values": [ + "0.4", + "0.53", + "0.66", + "0.47", + "0.5" + ] + } + }, + { + "name": "alcohol", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 97, + "unique_ratio": 0.024758, + "example_values": [ + "9.6", + "9.7", + "11.7", + "13.4", + "8.8" + ] + } + }, + { + "name": "quality", + "role": "target", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 7, + "unique_ratio": 0.001787, + "example_values": [ + "5", + "6", + "7", + "8", + "3" + ] + } + } + ], + "public_manifest": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/n3/tabddpm/tabddpm-n3-20260504_184319/public_gate/staged_input_manifest.json", + "train_csv": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/n3/tabddpm/tabddpm-n3-20260504_184319/staged/public/train.csv", + "val_csv": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/n3/tabddpm/tabddpm-n3-20260504_184319/staged/public/val.csv", + "test_csv": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/n3/tabddpm/tabddpm-n3-20260504_184319/staged/public/test.csv", + "features_json": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/n3/tabddpm/tabddpm-n3-20260504_184319/staged/public/staged_features.json", + "public_gate_report": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/n3/tabddpm/tabddpm-n3-20260504_184319/public_gate/public_gate_report.json" +} \ No newline at end of file diff --git a/hyperparameter/n3/tabddpm/tabddpm-n3-20260504_184319/tabddpm-n3-3918-20260504_184334.csv b/hyperparameter/n3/tabddpm/tabddpm-n3-20260504_184319/tabddpm-n3-3918-20260504_184334.csv new file mode 100644 index 0000000000000000000000000000000000000000..54d16150d01448aa9f513f9d8a02f5ec9f7ce924 --- /dev/null +++ b/hyperparameter/n3/tabddpm/tabddpm-n3-20260504_184319/tabddpm-n3-3918-20260504_184334.csv @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:29dc630ea6b7349a7f2536d908fe524fc1c2cb39e08c12f1ab0b272aa29c49d6 +size 774035 diff --git a/hyperparameter/n3/tabddpm/tabddpm-n3-20260504_184319/train_20260504_184319.log b/hyperparameter/n3/tabddpm/tabddpm-n3-20260504_184319/train_20260504_184319.log new file mode 100644 index 0000000000000000000000000000000000000000..6958afc1f27470cafd9455eb8cdcc71950b5f26e --- /dev/null +++ b/hyperparameter/n3/tabddpm/tabddpm-n3-20260504_184319/train_20260504_184319.log @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:02a1f186b44029b18f94ee3f9b5b69a4ab2133991e5bb33c2348f284e326d88f +size 756 diff --git a/hyperparameter/n3/tabddpm/tabddpm-n3-20260504_184357/_tabddpm_sample_r0.py b/hyperparameter/n3/tabddpm/tabddpm-n3-20260504_184357/_tabddpm_sample_r0.py new file mode 100644 index 0000000000000000000000000000000000000000..214f41b0fa8957414b1e9ce5244c92f7a43066fd --- /dev/null +++ b/hyperparameter/n3/tabddpm/tabddpm-n3-20260504_184357/_tabddpm_sample_r0.py @@ -0,0 +1,66 @@ +import os, sys, subprocess, json +import numpy as np +import pandas as pd + +tabddpm_root = "/workspace/tabddpm/code" +assert os.path.isdir(tabddpm_root), f"TabDDPM source not mounted: {tabddpm_root}" +env = os.environ.copy() +env["PYTHONPATH"] = tabddpm_root + (os.pathsep + env.get("PYTHONPATH", "")) + +# Reuse the compat wrapper (patches collections.Sequence for skorch) +wrapper = os.path.join(tabddpm_root, "_compat_run.py") +if not os.path.exists(wrapper): + with open(wrapper, "w") as f: + f.write( + "import collections, collections.abc\n" + "for _a in ('Sequence','MutableSequence','MutableMapping','Mapping'," + "'MutableSet','Set','Callable','Iterable','Iterator'):\n" + " if not hasattr(collections, _a): setattr(collections, _a, getattr(collections.abc, _a, None))\n" + "import sys, runpy\n" + "sys.argv = sys.argv[1:]\n" + "runpy.run_path(sys.argv[0], run_name='__main__')\n" + ) + +print(f"[TabDDPM] Sampling 3918 rows") +ret = subprocess.run( + [sys.executable, wrapper, "scripts/pipeline.py", + "--config", "/work/output-Benchmark-trainonly-v1/n3/tabddpm/tabddpm-n3-20260504_184357/config_sample_20260504_184422_r0.toml", + "--sample"], + cwd=tabddpm_root, + env=env +) +if ret.returncode != 0: + sys.exit(ret.returncode) + +# 将 .npy 输出转为 CSV(npy 在 TabDDPM 的 parent_dir,即 npy_dir) +info_path = "/work/output-Benchmark-trainonly-v1/n3/tabddpm/tabddpm-n3-20260504_184357/data/info.json" +with open(info_path) as f: + info = json.load(f) + +output_dir = "/work/output-Benchmark-trainonly-v1/n3/tabddpm/tabddpm-n3-20260504_184357/output" +col_names = info.get("column_names", []) + +parts = [] +x_num_path = os.path.join(output_dir, "X_num_train.npy") +x_cat_path = os.path.join(output_dir, "X_cat_train.npy") +y_path = os.path.join(output_dir, "y_train.npy") + +if os.path.exists(x_num_path): + parts.append(np.load(x_num_path, allow_pickle=True)) +if os.path.exists(x_cat_path): + parts.append(np.load(x_cat_path, allow_pickle=True).astype(float)) +if os.path.exists(y_path): + y = np.load(y_path, allow_pickle=True) + parts.append(y.reshape(-1, 1) if y.ndim == 1 else y) + +if parts: + combined = np.concatenate(parts, axis=1) + if col_names and len(col_names) == combined.shape[1]: + df = pd.DataFrame(combined, columns=col_names) + else: + df = pd.DataFrame(combined) + df.to_csv("/work/output-Benchmark-trainonly-v1/n3/tabddpm/tabddpm-n3-20260504_184357/tabddpm-n3-3918-20260504_184422.csv", index=False) + print(f"[TabDDPM] Saved {len(df)} rows -> /work/output-Benchmark-trainonly-v1/n3/tabddpm/tabddpm-n3-20260504_184357/tabddpm-n3-3918-20260504_184422.csv") +else: + print("[TabDDPM] WARNING: No output .npy files found") + sys.exit(1) diff --git a/hyperparameter/n3/tabddpm/tabddpm-n3-20260504_184357/_tabddpm_train.py b/hyperparameter/n3/tabddpm/tabddpm-n3-20260504_184357/_tabddpm_train.py new file mode 100644 index 0000000000000000000000000000000000000000..4e9930952713c0612c347096656b2983409d15d4 --- /dev/null +++ b/hyperparameter/n3/tabddpm/tabddpm-n3-20260504_184357/_tabddpm_train.py @@ -0,0 +1,32 @@ +import os, sys, subprocess + +tabddpm_root = "/workspace/tabddpm/code" +assert os.path.isdir(tabddpm_root), f"TabDDPM source not mounted: {tabddpm_root}" +env = os.environ.copy() +env["PYTHONPATH"] = tabddpm_root + (os.pathsep + env.get("PYTHONPATH", "")) + +# Write a wrapper that patches collections.Sequence (removed in Python 3.10+) +# before running pipeline.py - needed because skorch uses old API +wrapper = os.path.join(tabddpm_root, "_compat_run.py") +with open(wrapper, "w") as f: + f.write( + "import collections, collections.abc\n" + "for _a in ('Sequence','MutableSequence','MutableMapping','Mapping'," + "'MutableSet','Set','Callable','Iterable','Iterator'):\n" + " if not hasattr(collections, _a): setattr(collections, _a, getattr(collections.abc, _a, None))\n" + "import sys, runpy\n" + "sys.argv = sys.argv[1:]\n" + "runpy.run_path(sys.argv[0], run_name='__main__')\n" + ) + +print(f"[TabDDPM] Training, config=/work/output-Benchmark-trainonly-v1/n3/tabddpm/tabddpm-n3-20260504_184357/config.toml") +ret = subprocess.run( + [sys.executable, wrapper, "scripts/pipeline.py", + "--config", "/work/output-Benchmark-trainonly-v1/n3/tabddpm/tabddpm-n3-20260504_184357/config.toml", + "--train"], + cwd=tabddpm_root, + env=env +) +if ret.returncode != 0: + sys.exit(ret.returncode) +print("[TabDDPM] Training complete") diff --git a/hyperparameter/n3/tabddpm/tabddpm-n3-20260504_184357/config.toml b/hyperparameter/n3/tabddpm/tabddpm-n3-20260504_184357/config.toml new file mode 100644 index 0000000000000000000000000000000000000000..34a3c09db4823c36b31bbd0f04d00e7111d2ee63 --- /dev/null +++ b/hyperparameter/n3/tabddpm/tabddpm-n3-20260504_184357/config.toml @@ -0,0 +1,39 @@ +seed = 0 +parent_dir = "/work/output-Benchmark-trainonly-v1/n3/tabddpm/tabddpm-n3-20260504_184357/output" +real_data_path = "/work/output-Benchmark-trainonly-v1/n3/tabddpm/tabddpm-n3-20260504_184357/data" +model_type = "mlp" +num_numerical_features = 11 +device = "cuda:0" + +[model_params] +d_in = 11 +num_classes = 7 +is_y_cond = true + +[model_params.rtdl_params] +d_layers = [256, 256] +dropout = 0.0 + +[diffusion_params] +num_timesteps = 1000 +gaussian_loss_type = "mse" + +[train.main] +steps = 5000 +lr = 0.001 +weight_decay = 0.0 +batch_size = 256 + +[train.T] +seed = 0 +normalization = "quantile" +num_nan_policy = "__none__" +cat_nan_policy = "__none__" +cat_min_frequency = "__none__" +cat_encoding = "__none__" +y_policy = "default" + +[sample] +num_samples = 1000 +batch_size = 256 +seed = 0 diff --git a/hyperparameter/n3/tabddpm/tabddpm-n3-20260504_184357/config_sample_20260504_184422_r0.toml b/hyperparameter/n3/tabddpm/tabddpm-n3-20260504_184357/config_sample_20260504_184422_r0.toml new file mode 100644 index 0000000000000000000000000000000000000000..368ad6bc866e2ea64e05f1393279bbf242f15663 --- /dev/null +++ b/hyperparameter/n3/tabddpm/tabddpm-n3-20260504_184357/config_sample_20260504_184422_r0.toml @@ -0,0 +1,39 @@ +seed = 0 +parent_dir = "/work/output-Benchmark-trainonly-v1/n3/tabddpm/tabddpm-n3-20260504_184357/output" +real_data_path = "/work/output-Benchmark-trainonly-v1/n3/tabddpm/tabddpm-n3-20260504_184357/data" +model_type = "mlp" +num_numerical_features = 11 +device = "cuda:0" + +[model_params] +d_in = 11 +num_classes = 7 +is_y_cond = true + +[model_params.rtdl_params] +d_layers = [256, 256] +dropout = 0.0 + +[diffusion_params] +num_timesteps = 1000 +gaussian_loss_type = "mse" + +[train.main] +steps = 5000 +lr = 0.001 +weight_decay = 0.0 +batch_size = 256 + +[train.T] +seed = 0 +normalization = "quantile" +num_nan_policy = "__none__" +cat_nan_policy = "__none__" +cat_min_frequency = "__none__" +cat_encoding = "__none__" +y_policy = "default" + +[sample] +num_samples = 3918 +batch_size = 256 +seed = 0 diff --git a/hyperparameter/n3/tabddpm/tabddpm-n3-20260504_184357/data/X_num_train.npy b/hyperparameter/n3/tabddpm/tabddpm-n3-20260504_184357/data/X_num_train.npy new file mode 100644 index 0000000000000000000000000000000000000000..94beb8413ef55592710518365965f4cb503523ee --- /dev/null +++ b/hyperparameter/n3/tabddpm/tabddpm-n3-20260504_184357/data/X_num_train.npy @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:093d8f405d764277d5a007953f25ab6466f0857f71f0d8f3c437463fb5bf240a +size 172520 diff --git a/hyperparameter/n3/tabddpm/tabddpm-n3-20260504_184357/data/info.json b/hyperparameter/n3/tabddpm/tabddpm-n3-20260504_184357/data/info.json new file mode 100644 index 0000000000000000000000000000000000000000..45d216717b2847b5a467946053f10b0f41c3148b --- /dev/null +++ b/hyperparameter/n3/tabddpm/tabddpm-n3-20260504_184357/data/info.json @@ -0,0 +1,39 @@ +{ + "name": "benchmark_dataset", + "task_type": "multiclass", + "n_num_features": 11, + "n_cat_features": 0, + "train_size": 3918, + "num_col_idx": [ + 0, + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10 + ], + "cat_col_idx": [], + "target_col_idx": [ + 11 + ], + "column_names": [ + "fixed acidity", + "volatile acidity", + "citric acid", + "residual sugar", + "chlorides", + "free sulfur dioxide", + "total sulfur dioxide", + "density", + "pH", + "sulphates", + "alcohol", + "quality" + ], + "num_classes": 7 +} \ No newline at end of file diff --git a/hyperparameter/n3/tabddpm/tabddpm-n3-20260504_184357/data/y_train.npy b/hyperparameter/n3/tabddpm/tabddpm-n3-20260504_184357/data/y_train.npy new file mode 100644 index 0000000000000000000000000000000000000000..1f737a58cd26592130c3604aaa90044a451eb576 --- /dev/null +++ b/hyperparameter/n3/tabddpm/tabddpm-n3-20260504_184357/data/y_train.npy @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:85ed37c52f0ea54dfd3a476dcfafff02d61e92783748e5ee9aadfad20578bcb1 +size 31472 diff --git a/hyperparameter/n3/tabddpm/tabddpm-n3-20260504_184357/gen_20260504_184422_r0.log b/hyperparameter/n3/tabddpm/tabddpm-n3-20260504_184357/gen_20260504_184422_r0.log new file mode 100644 index 0000000000000000000000000000000000000000..e1c2cbf7e19774c7a8368ddd0666632e498affe9 --- /dev/null +++ b/hyperparameter/n3/tabddpm/tabddpm-n3-20260504_184357/gen_20260504_184422_r0.log @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:07d5ff253e7bd18ab81059aec34556d8740bb0351734e57297b520499732e1c0 +size 336503 diff --git a/hyperparameter/n3/tabddpm/tabddpm-n3-20260504_184357/input_snapshot.json b/hyperparameter/n3/tabddpm/tabddpm-n3-20260504_184357/input_snapshot.json new file mode 100644 index 0000000000000000000000000000000000000000..34d3cbb5018ded64e57cf3350f6ec58dd908f565 --- /dev/null +++ b/hyperparameter/n3/tabddpm/tabddpm-n3-20260504_184357/input_snapshot.json @@ -0,0 +1,36 @@ +{ + "dataset_id": "n3", + "model": "tabddpm", + "inputs": { + "train_csv": { + "path": "/data/jialinzhang/SynthesizePipeline-server/DatasetNew/n3/n3-train.csv", + "exists": true, + "size": 211519, + "sha256": "2160a06db2fea02adb0ebb79d8d853bd2544580be301e71f6e8deeb1489a9009" + }, + "val_csv": { + "path": "/data/jialinzhang/SynthesizePipeline-server/DatasetNew/n3/n3-val.csv", + "exists": true, + "size": 26499, + "sha256": "d5ccfee07dfa9e7bdee5bb87642b43828e09f74c6cc0266a3d19d9feaa83106e" + }, + "test_csv": { + "path": "/data/jialinzhang/SynthesizePipeline-server/DatasetNew/n3/n3-test.csv", + "exists": true, + "size": 26676, + "sha256": "6f83aacb0d1747b95e287352a7fff5d9d65a1c127b773852346c68485c4ede47" + }, + "profile_json": { + "path": "/data/jialinzhang/SynthesizePipeline-server/DatasetNew/artifacts/data_core/tabular/n3/n3-dataset_profile.json", + "exists": true, + "size": 5235, + "sha256": "23d2e5904a2ca90cbf8d6e3c75887681721e9b90cc705c31a680c11513d0c46f" + }, + "contract_json": { + "path": "/data/jialinzhang/SynthesizePipeline-server/DatasetNew/artifacts/data_core/tabular/n3/n3-dataset_contract_v1.json", + "exists": true, + "size": 6281, + "sha256": "c0cc56f5fe28e1b65927255c6e3c2b0e9479862c2ec6f2fea1664da36c9a3a09" + } + } +} \ No newline at end of file diff --git a/hyperparameter/n3/tabddpm/tabddpm-n3-20260504_184357/output/X_num_train.npy b/hyperparameter/n3/tabddpm/tabddpm-n3-20260504_184357/output/X_num_train.npy new file mode 100644 index 0000000000000000000000000000000000000000..ac16376ba4c2c2edaf5a02790e3baca7fecd4514 --- /dev/null +++ b/hyperparameter/n3/tabddpm/tabddpm-n3-20260504_184357/output/X_num_train.npy @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:c93148e9e629bd21a2afdfa93b72ebf832c7ddc492d4b779586f5f3a532b99cc +size 344912 diff --git a/hyperparameter/n3/tabddpm/tabddpm-n3-20260504_184357/output/X_num_unnorm.npy b/hyperparameter/n3/tabddpm/tabddpm-n3-20260504_184357/output/X_num_unnorm.npy new file mode 100644 index 0000000000000000000000000000000000000000..dc110b918cd47b5fb7af0ce8c426f96223de2879 --- /dev/null +++ b/hyperparameter/n3/tabddpm/tabddpm-n3-20260504_184357/output/X_num_unnorm.npy @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:b67128ca975826d3a961f9449696b818a106a75fa484d575b92c399d0749bc29 +size 344912 diff --git a/hyperparameter/n3/tabddpm/tabddpm-n3-20260504_184357/output/config.toml b/hyperparameter/n3/tabddpm/tabddpm-n3-20260504_184357/output/config.toml new file mode 100644 index 0000000000000000000000000000000000000000..368ad6bc866e2ea64e05f1393279bbf242f15663 --- /dev/null +++ b/hyperparameter/n3/tabddpm/tabddpm-n3-20260504_184357/output/config.toml @@ -0,0 +1,39 @@ +seed = 0 +parent_dir = "/work/output-Benchmark-trainonly-v1/n3/tabddpm/tabddpm-n3-20260504_184357/output" +real_data_path = "/work/output-Benchmark-trainonly-v1/n3/tabddpm/tabddpm-n3-20260504_184357/data" +model_type = "mlp" +num_numerical_features = 11 +device = "cuda:0" + +[model_params] +d_in = 11 +num_classes = 7 +is_y_cond = true + +[model_params.rtdl_params] +d_layers = [256, 256] +dropout = 0.0 + +[diffusion_params] +num_timesteps = 1000 +gaussian_loss_type = "mse" + +[train.main] +steps = 5000 +lr = 0.001 +weight_decay = 0.0 +batch_size = 256 + +[train.T] +seed = 0 +normalization = "quantile" +num_nan_policy = "__none__" +cat_nan_policy = "__none__" +cat_min_frequency = "__none__" +cat_encoding = "__none__" +y_policy = "default" + +[sample] +num_samples = 3918 +batch_size = 256 +seed = 0 diff --git a/hyperparameter/n3/tabddpm/tabddpm-n3-20260504_184357/output/info.json b/hyperparameter/n3/tabddpm/tabddpm-n3-20260504_184357/output/info.json new file mode 100644 index 0000000000000000000000000000000000000000..45d216717b2847b5a467946053f10b0f41c3148b --- /dev/null +++ b/hyperparameter/n3/tabddpm/tabddpm-n3-20260504_184357/output/info.json @@ -0,0 +1,39 @@ +{ + "name": "benchmark_dataset", + "task_type": "multiclass", + "n_num_features": 11, + "n_cat_features": 0, + "train_size": 3918, + "num_col_idx": [ + 0, + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10 + ], + "cat_col_idx": [], + "target_col_idx": [ + 11 + ], + "column_names": [ + "fixed acidity", + "volatile acidity", + "citric acid", + "residual sugar", + "chlorides", + "free sulfur dioxide", + "total sulfur dioxide", + "density", + "pH", + "sulphates", + "alcohol", + "quality" + ], + "num_classes": 7 +} \ No newline at end of file diff --git a/hyperparameter/n3/tabddpm/tabddpm-n3-20260504_184357/output/loss.csv b/hyperparameter/n3/tabddpm/tabddpm-n3-20260504_184357/output/loss.csv new file mode 100644 index 0000000000000000000000000000000000000000..9c1f8a5cfe87ec4f49722de310474f40f89166fb --- /dev/null +++ b/hyperparameter/n3/tabddpm/tabddpm-n3-20260504_184357/output/loss.csv @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:60561b92981d01bad0dfd398877e1189f7186cfa0253f75b7c4f51a80de97196 +size 1251 diff --git a/hyperparameter/n3/tabddpm/tabddpm-n3-20260504_184357/output/model.pt b/hyperparameter/n3/tabddpm/tabddpm-n3-20260504_184357/output/model.pt new file mode 100644 index 0000000000000000000000000000000000000000..83563b06a4db03bc822db334b340e81b0535034f --- /dev/null +++ b/hyperparameter/n3/tabddpm/tabddpm-n3-20260504_184357/output/model.pt @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:32dd76d6d4a0979442d1fa749406835b4bcaa43877c99cc7a53fc7541a5024f9 +size 553046 diff --git a/hyperparameter/n3/tabddpm/tabddpm-n3-20260504_184357/output/model_ema.pt b/hyperparameter/n3/tabddpm/tabddpm-n3-20260504_184357/output/model_ema.pt new file mode 100644 index 0000000000000000000000000000000000000000..7334fbb11efab2f81be838bad3efc2e1812538d6 --- /dev/null +++ b/hyperparameter/n3/tabddpm/tabddpm-n3-20260504_184357/output/model_ema.pt @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:c25a1d1825e3e00ee57fbd097c655e47146b1607d2d84cd78d902f77f3664bd2 +size 553890 diff --git a/hyperparameter/n3/tabddpm/tabddpm-n3-20260504_184357/output/y_train.npy b/hyperparameter/n3/tabddpm/tabddpm-n3-20260504_184357/output/y_train.npy new file mode 100644 index 0000000000000000000000000000000000000000..cea6160110d6a403447199b2a250a6ea77ede7b8 --- /dev/null +++ b/hyperparameter/n3/tabddpm/tabddpm-n3-20260504_184357/output/y_train.npy @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:4d886843627c3d1c9944174e0049dcf604cfa5b0b8e0631b955a75ab0e30bc7d +size 31472 diff --git a/hyperparameter/n3/tabddpm/tabddpm-n3-20260504_184357/public_gate/normalized_schema_snapshot.json b/hyperparameter/n3/tabddpm/tabddpm-n3-20260504_184357/public_gate/normalized_schema_snapshot.json new file mode 100644 index 0000000000000000000000000000000000000000..c41fe304503de23190a02e6cbfafa35b3bf134d3 --- /dev/null +++ b/hyperparameter/n3/tabddpm/tabddpm-n3-20260504_184357/public_gate/normalized_schema_snapshot.json @@ -0,0 +1,259 @@ +{ + "dataset_id": "n3", + "target_column": "quality", + "task_type": "classification", + "columns": [ + { + "name": "fixed acidity", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 66, + "unique_ratio": 0.016845, + "example_values": [ + "7.1", + "8.5", + "6.4", + "6.8", + "7.6" + ] + } + }, + { + "name": "volatile acidity", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 121, + "unique_ratio": 0.030883, + "example_values": [ + "0.31", + "0.21", + "0.24", + "0.43", + "0.27" + ] + } + }, + { + "name": "citric acid", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 85, + "unique_ratio": 0.021695, + "example_values": [ + "0.17", + "0.41", + "0.31", + "0.25", + "0.3" + ] + } + }, + { + "name": "residual sugar", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 296, + "unique_ratio": 0.075549, + "example_values": [ + "1", + "4.3", + "2.8", + "13", + "12.9" + ] + } + }, + { + "name": "chlorides", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 147, + "unique_ratio": 0.037519, + "example_values": [ + "0.042", + "0.036", + "0.038", + "0.047", + "0.033" + ] + } + }, + { + "name": "free sulfur dioxide", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 120, + "unique_ratio": 0.030628, + "example_values": [ + "21", + "24", + "41", + "43", + "69" + ] + } + }, + { + "name": "total sulfur dioxide", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 244, + "unique_ratio": 0.062277, + "example_values": [ + "144", + "99", + "114", + "132", + "160" + ] + } + }, + { + "name": "density", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 839, + "unique_ratio": 0.21414, + "example_values": [ + "0.99304", + "0.9947", + "0.99155", + "0.98975", + "0.99705" + ] + } + }, + { + "name": "pH", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 100, + "unique_ratio": 0.025523, + "example_values": [ + "3.13", + "3.18", + "3.37", + "3.21", + "3.16" + ] + } + }, + { + "name": "sulphates", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 78, + "unique_ratio": 0.019908, + "example_values": [ + "0.4", + "0.53", + "0.66", + "0.47", + "0.5" + ] + } + }, + { + "name": "alcohol", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 97, + "unique_ratio": 0.024758, + "example_values": [ + "9.6", + "9.7", + "11.7", + "13.4", + "8.8" + ] + } + }, + { + "name": "quality", + "role": "target", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 7, + "unique_ratio": 0.001787, + "example_values": [ + "5", + "6", + "7", + "8", + "3" + ] + } + } + ] +} \ No newline at end of file diff --git a/hyperparameter/n3/tabddpm/tabddpm-n3-20260504_184357/public_gate/public_gate_report.json b/hyperparameter/n3/tabddpm/tabddpm-n3-20260504_184357/public_gate/public_gate_report.json new file mode 100644 index 0000000000000000000000000000000000000000..93b97319f739e39079d6c6549fd2020f8a6dac25 --- /dev/null +++ b/hyperparameter/n3/tabddpm/tabddpm-n3-20260504_184357/public_gate/public_gate_report.json @@ -0,0 +1,37 @@ +{ + "dataset_id": "n3", + "status": "pass", + "checks": [ + { + "check_id": "PG001_csv_parse_ok", + "status": "pass" + }, + { + "check_id": "PG002_split_header_consistent", + "status": "pass" + }, + { + "check_id": "PG003_profile_header_match", + "status": "pass" + }, + { + "check_id": "PG004_missing_token_normalized", + "status": "pass" + }, + { + "check_id": "PG005_semantic_type_validated", + "status": "pass" + }, + { + "check_id": "PG006_target_defined_and_valid", + "status": "pass" + } + ], + "target_column": "quality", + "task_type": "classification", + "input_splits": { + "train": "/data/jialinzhang/SynthesizePipeline-server/DatasetNew/n3/n3-train.csv", + "val": "/data/jialinzhang/SynthesizePipeline-server/DatasetNew/n3/n3-val.csv", + "test": "/data/jialinzhang/SynthesizePipeline-server/DatasetNew/n3/n3-test.csv" + } +} \ No newline at end of file diff --git a/hyperparameter/n3/tabddpm/tabddpm-n3-20260504_184357/public_gate/staged_input_manifest.json b/hyperparameter/n3/tabddpm/tabddpm-n3-20260504_184357/public_gate/staged_input_manifest.json new file mode 100644 index 0000000000000000000000000000000000000000..84965f1cf925d38f5bb79f8299a9bba6ed15cc5a --- /dev/null +++ b/hyperparameter/n3/tabddpm/tabddpm-n3-20260504_184357/public_gate/staged_input_manifest.json @@ -0,0 +1,264 @@ +{ + "dataset_id": "n3", + "target_column": "quality", + "task_type": "classification", + "train_csv": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/n3/tabddpm/tabddpm-n3-20260504_184357/staged/public/train.csv", + "val_csv": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/n3/tabddpm/tabddpm-n3-20260504_184357/staged/public/val.csv", + "test_csv": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/n3/tabddpm/tabddpm-n3-20260504_184357/staged/public/test.csv", + "features_json": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/n3/tabddpm/tabddpm-n3-20260504_184357/staged/public/staged_features.json", + "public_gate_report": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/n3/tabddpm/tabddpm-n3-20260504_184357/public_gate/public_gate_report.json", + "column_schema": [ + { + "name": "fixed acidity", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 66, + "unique_ratio": 0.016845, + "example_values": [ + "7.1", + "8.5", + "6.4", + "6.8", + "7.6" + ] + } + }, + { + "name": "volatile acidity", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 121, + "unique_ratio": 0.030883, + "example_values": [ + "0.31", + "0.21", + "0.24", + "0.43", + "0.27" + ] + } + }, + { + "name": "citric acid", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 85, + "unique_ratio": 0.021695, + "example_values": [ + "0.17", + "0.41", + "0.31", + "0.25", + "0.3" + ] + } + }, + { + "name": "residual sugar", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 296, + "unique_ratio": 0.075549, + "example_values": [ + "1", + "4.3", + "2.8", + "13", + "12.9" + ] + } + }, + { + "name": "chlorides", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 147, + "unique_ratio": 0.037519, + "example_values": [ + "0.042", + "0.036", + "0.038", + "0.047", + "0.033" + ] + } + }, + { + "name": "free sulfur dioxide", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 120, + "unique_ratio": 0.030628, + "example_values": [ + "21", + "24", + "41", + "43", + "69" + ] + } + }, + { + "name": "total sulfur dioxide", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 244, + "unique_ratio": 0.062277, + "example_values": [ + "144", + "99", + "114", + "132", + "160" + ] + } + }, + { + "name": "density", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 839, + "unique_ratio": 0.21414, + "example_values": [ + "0.99304", + "0.9947", + "0.99155", + "0.98975", + "0.99705" + ] + } + }, + { + "name": "pH", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 100, + "unique_ratio": 0.025523, + "example_values": [ + "3.13", + "3.18", + "3.37", + "3.21", + "3.16" + ] + } + }, + { + "name": "sulphates", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 78, + "unique_ratio": 0.019908, + "example_values": [ + "0.4", + "0.53", + "0.66", + "0.47", + "0.5" + ] + } + }, + { + "name": "alcohol", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 97, + "unique_ratio": 0.024758, + "example_values": [ + "9.6", + "9.7", + "11.7", + "13.4", + "8.8" + ] + } + }, + { + "name": "quality", + "role": "target", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 7, + "unique_ratio": 0.001787, + "example_values": [ + "5", + "6", + "7", + "8", + "3" + ] + } + } + ] +} \ No newline at end of file diff --git a/hyperparameter/n3/tabddpm/tabddpm-n3-20260504_184357/run_config.json b/hyperparameter/n3/tabddpm/tabddpm-n3-20260504_184357/run_config.json new file mode 100644 index 0000000000000000000000000000000000000000..27b1f24fcf35b88e5c6766925caa4257ee1e3e9a --- /dev/null +++ b/hyperparameter/n3/tabddpm/tabddpm-n3-20260504_184357/run_config.json @@ -0,0 +1,45 @@ +{ + "schema_version": 1, + "recorded_at": "2026-05-04T18:43:57", + "dataset_id": "n3", + "model": "tabddpm", + "work_dir": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/n3/tabddpm/tabddpm-n3-20260504_184357", + "dataset_source_requested": "new", + "dataset_source_resolved": "new", + "cli_args": { + "model": "tabddpm", + "dataset": "n3", + "dataset_source": "new", + "train": true, + "generate": true, + "num_rows": 0, + "epochs": null, + "output_dir": null, + "model_dir": null, + "work_dir": null, + "resume": false, + "no_stats": false + }, + "resolved": { + "num_rows": 3918, + "model_path": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/n3/tabddpm/tabddpm-n3-20260504_184357", + "output_csv": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/n3/tabddpm/tabddpm-n3-20260504_184357/tabddpm-n3-3918-20260504_184422.csv" + }, + "input_artifacts": { + "public_gate_report": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/n3/tabddpm/tabddpm-n3-20260504_184357/public_gate/public_gate_report.json", + "public_manifest": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/n3/tabddpm/tabddpm-n3-20260504_184357/public_gate/staged_input_manifest.json", + "model_manifest": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/n3/tabddpm/tabddpm-n3-20260504_184357/staged/tabddpm/model_input_manifest.json", + "train_csv": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/n3/tabddpm/tabddpm-n3-20260504_184357/staged/public/train.csv", + "features_json": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/n3/tabddpm/tabddpm-n3-20260504_184357/staged/public/staged_features.json", + "target_column": "quality", + "task_type": "classification" + }, + "env_overrides": { + "BENCHMARK_TABDDPM_GPUS": "device=3", + "TABDDPM_NUM_TIMESTEPS": "1000", + "TABDDPM_SAMPLE_BATCH_SIZE": "256", + "TABDDPM_STEPS_PER_EPOCH": "100", + "TABDDPM_TRAIN_BATCH_SIZE": "256", + "TABDDPM_TRAIN_LR": "0.001" + } +} \ No newline at end of file diff --git a/hyperparameter/n3/tabddpm/tabddpm-n3-20260504_184357/runtime_result.json b/hyperparameter/n3/tabddpm/tabddpm-n3-20260504_184357/runtime_result.json new file mode 100644 index 0000000000000000000000000000000000000000..3075d3fe18b4da7dec1debad4bce00f601195be3 --- /dev/null +++ b/hyperparameter/n3/tabddpm/tabddpm-n3-20260504_184357/runtime_result.json @@ -0,0 +1,27 @@ +{ + "dataset_id": "n3", + "model": "tabddpm", + "run_id": "tabddpm-n3-20260504_184357", + "public_gate_status": "pass", + "adapter_ready_status": "pass", + "train_status": "success", + "generate_status": "success", + "reason_code": null, + "reason_detail": null, + "artifacts": { + "synthetic_csv": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/n3/tabddpm/tabddpm-n3-20260504_184357/tabddpm-n3-3918-20260504_184422.csv", + "model_path": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/n3/tabddpm/tabddpm-n3-20260504_184357" + }, + "timings": { + "train": { + "started_at": "2026-05-04T18:43:57", + "ended_at": "2026-05-04T18:44:22", + "duration_sec": 24.306 + }, + "generate": { + "started_at": "2026-05-04T18:44:22", + "ended_at": "2026-05-04T18:44:47", + "duration_sec": 25.547 + } + } +} \ No newline at end of file diff --git a/hyperparameter/n3/tabddpm/tabddpm-n3-20260504_184357/staged/public/staged_features.json b/hyperparameter/n3/tabddpm/tabddpm-n3-20260504_184357/staged/public/staged_features.json new file mode 100644 index 0000000000000000000000000000000000000000..08fe4d766d091d2f2ddba724a16b9509cbe4c390 --- /dev/null +++ b/hyperparameter/n3/tabddpm/tabddpm-n3-20260504_184357/staged/public/staged_features.json @@ -0,0 +1,62 @@ +[ + { + "feature_name": "fixed acidity", + "data_type": "continuous", + "is_target": false + }, + { + "feature_name": "volatile acidity", + "data_type": "continuous", + "is_target": false + }, + { + "feature_name": "citric acid", + "data_type": "continuous", + "is_target": false + }, + { + "feature_name": "residual sugar", + "data_type": "continuous", + "is_target": false + }, + { + "feature_name": "chlorides", + "data_type": "continuous", + "is_target": false + }, + { + "feature_name": "free sulfur dioxide", + "data_type": "continuous", + "is_target": false + }, + { + "feature_name": "total sulfur dioxide", + "data_type": "continuous", + "is_target": false + }, + { + "feature_name": "density", + "data_type": "continuous", + "is_target": false + }, + { + "feature_name": "pH", + "data_type": "continuous", + "is_target": false + }, + { + "feature_name": "sulphates", + "data_type": "continuous", + "is_target": false + }, + { + "feature_name": "alcohol", + "data_type": "continuous", + "is_target": false + }, + { + "feature_name": "quality", + "data_type": "continuous", + "is_target": true + } +] \ No newline at end of file diff --git a/hyperparameter/n3/tabddpm/tabddpm-n3-20260504_184357/staged/public/test.csv b/hyperparameter/n3/tabddpm/tabddpm-n3-20260504_184357/staged/public/test.csv new file mode 100644 index 0000000000000000000000000000000000000000..db5cd50d3746410ea470625fa2ba2c8e9775cc0d --- /dev/null +++ b/hyperparameter/n3/tabddpm/tabddpm-n3-20260504_184357/staged/public/test.csv @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:19e107152a94432e2a37ff045c00cfe35e1be30208b1553080d7dd0ede256d3b +size 28944 diff --git a/hyperparameter/n3/tabddpm/tabddpm-n3-20260504_184357/staged/public/train.csv b/hyperparameter/n3/tabddpm/tabddpm-n3-20260504_184357/staged/public/train.csv new file mode 100644 index 0000000000000000000000000000000000000000..87ca26726fe82ccbaa397919305b043c17eb374e --- /dev/null +++ b/hyperparameter/n3/tabddpm/tabddpm-n3-20260504_184357/staged/public/train.csv @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:7813c8cca73ba4bfc6559215257b341c21e459980ad17ae6ddc809306bc9a0b9 +size 229945 diff --git a/hyperparameter/n3/tabddpm/tabddpm-n3-20260504_184357/staged/public/val.csv b/hyperparameter/n3/tabddpm/tabddpm-n3-20260504_184357/staged/public/val.csv new file mode 100644 index 0000000000000000000000000000000000000000..6acf84c76c47093b513c46d5503972a2dff275c0 --- /dev/null +++ b/hyperparameter/n3/tabddpm/tabddpm-n3-20260504_184357/staged/public/val.csv @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:cf5979d9675567d9d6642640c9b84fc6c49e492604144723c30f50516c05cee6 +size 28791 diff --git a/hyperparameter/n3/tabddpm/tabddpm-n3-20260504_184357/staged/tabddpm/adapter_report.json b/hyperparameter/n3/tabddpm/tabddpm-n3-20260504_184357/staged/tabddpm/adapter_report.json new file mode 100644 index 0000000000000000000000000000000000000000..28e6ca6c1f216006e27a1bcf7fec1033e4bfc6df --- /dev/null +++ b/hyperparameter/n3/tabddpm/tabddpm-n3-20260504_184357/staged/tabddpm/adapter_report.json @@ -0,0 +1,7 @@ +{ + "adapter_ready_status": "pass", + "adapter_fail_reason_code": null, + "adapter_fail_detail": null, + "adapter_transforms_applied": [], + "model_input_manifest": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/n3/tabddpm/tabddpm-n3-20260504_184357/staged/tabddpm/model_input_manifest.json" +} \ No newline at end of file diff --git a/hyperparameter/n3/tabddpm/tabddpm-n3-20260504_184357/staged/tabddpm/adapter_transforms_applied.json b/hyperparameter/n3/tabddpm/tabddpm-n3-20260504_184357/staged/tabddpm/adapter_transforms_applied.json new file mode 100644 index 0000000000000000000000000000000000000000..0637a088a01e8ddab3bf3fa98dbe804cbde1a0dc --- /dev/null +++ b/hyperparameter/n3/tabddpm/tabddpm-n3-20260504_184357/staged/tabddpm/adapter_transforms_applied.json @@ -0,0 +1 @@ +[] \ No newline at end of file diff --git a/hyperparameter/n3/tabddpm/tabddpm-n3-20260504_184357/staged/tabddpm/model_input_manifest.json b/hyperparameter/n3/tabddpm/tabddpm-n3-20260504_184357/staged/tabddpm/model_input_manifest.json new file mode 100644 index 0000000000000000000000000000000000000000..3a9fc3db166523e1c82fed5bc63782b2b149807b --- /dev/null +++ b/hyperparameter/n3/tabddpm/tabddpm-n3-20260504_184357/staged/tabddpm/model_input_manifest.json @@ -0,0 +1,266 @@ +{ + "dataset_id": "n3", + "model": "tabddpm", + "target_column": "quality", + "task_type": "classification", + "column_schema": [ + { + "name": "fixed acidity", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 66, + "unique_ratio": 0.016845, + "example_values": [ + "7.1", + "8.5", + "6.4", + "6.8", + "7.6" + ] + } + }, + { + "name": "volatile acidity", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 121, + "unique_ratio": 0.030883, + "example_values": [ + "0.31", + "0.21", + "0.24", + "0.43", + "0.27" + ] + } + }, + { + "name": "citric acid", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 85, + "unique_ratio": 0.021695, + "example_values": [ + "0.17", + "0.41", + "0.31", + "0.25", + "0.3" + ] + } + }, + { + "name": "residual sugar", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 296, + "unique_ratio": 0.075549, + "example_values": [ + "1", + "4.3", + "2.8", + "13", + "12.9" + ] + } + }, + { + "name": "chlorides", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 147, + "unique_ratio": 0.037519, + "example_values": [ + "0.042", + "0.036", + "0.038", + "0.047", + "0.033" + ] + } + }, + { + "name": "free sulfur dioxide", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 120, + "unique_ratio": 0.030628, + "example_values": [ + "21", + "24", + "41", + "43", + "69" + ] + } + }, + { + "name": "total sulfur dioxide", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 244, + "unique_ratio": 0.062277, + "example_values": [ + "144", + "99", + "114", + "132", + "160" + ] + } + }, + { + "name": "density", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 839, + "unique_ratio": 0.21414, + "example_values": [ + "0.99304", + "0.9947", + "0.99155", + "0.98975", + "0.99705" + ] + } + }, + { + "name": "pH", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 100, + "unique_ratio": 0.025523, + "example_values": [ + "3.13", + "3.18", + "3.37", + "3.21", + "3.16" + ] + } + }, + { + "name": "sulphates", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 78, + "unique_ratio": 0.019908, + "example_values": [ + "0.4", + "0.53", + "0.66", + "0.47", + "0.5" + ] + } + }, + { + "name": "alcohol", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 97, + "unique_ratio": 0.024758, + "example_values": [ + "9.6", + "9.7", + "11.7", + "13.4", + "8.8" + ] + } + }, + { + "name": "quality", + "role": "target", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 7, + "unique_ratio": 0.001787, + "example_values": [ + "5", + "6", + "7", + "8", + "3" + ] + } + } + ], + "public_manifest": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/n3/tabddpm/tabddpm-n3-20260504_184357/public_gate/staged_input_manifest.json", + "train_csv": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/n3/tabddpm/tabddpm-n3-20260504_184357/staged/public/train.csv", + "val_csv": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/n3/tabddpm/tabddpm-n3-20260504_184357/staged/public/val.csv", + "test_csv": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/n3/tabddpm/tabddpm-n3-20260504_184357/staged/public/test.csv", + "features_json": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/n3/tabddpm/tabddpm-n3-20260504_184357/staged/public/staged_features.json", + "public_gate_report": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/n3/tabddpm/tabddpm-n3-20260504_184357/public_gate/public_gate_report.json" +} \ No newline at end of file diff --git a/hyperparameter/n3/tabddpm/tabddpm-n3-20260504_184357/tabddpm-n3-3918-20260504_184422.csv b/hyperparameter/n3/tabddpm/tabddpm-n3-20260504_184357/tabddpm-n3-3918-20260504_184422.csv new file mode 100644 index 0000000000000000000000000000000000000000..44cd8efba2a93b96471a07836f3760d6d5ed26f5 --- /dev/null +++ b/hyperparameter/n3/tabddpm/tabddpm-n3-20260504_184357/tabddpm-n3-3918-20260504_184422.csv @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:5b13bad7cf3f35399afeeafc7f41540415db23674b417f53f018bc5e2822851e +size 773234 diff --git a/hyperparameter/n3/tabddpm/tabddpm-n3-20260504_184357/train_20260504_184357.log b/hyperparameter/n3/tabddpm/tabddpm-n3-20260504_184357/train_20260504_184357.log new file mode 100644 index 0000000000000000000000000000000000000000..df9bfefa8646ec10814526768919ad5273c0fc10 --- /dev/null +++ b/hyperparameter/n3/tabddpm/tabddpm-n3-20260504_184357/train_20260504_184357.log @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:4075163fa1d4c2586dc9a174a453b44393c7f1227905d36d482098e5522385d2 +size 1068 diff --git a/hyperparameter/n3/tabddpm/tabddpm-n3-20260504_184500/_tabddpm_sample_r0.py b/hyperparameter/n3/tabddpm/tabddpm-n3-20260504_184500/_tabddpm_sample_r0.py new file mode 100644 index 0000000000000000000000000000000000000000..65c4b1151471e1de39aeefca66bf240c152c30c8 --- /dev/null +++ b/hyperparameter/n3/tabddpm/tabddpm-n3-20260504_184500/_tabddpm_sample_r0.py @@ -0,0 +1,66 @@ +import os, sys, subprocess, json +import numpy as np +import pandas as pd + +tabddpm_root = "/workspace/tabddpm/code" +assert os.path.isdir(tabddpm_root), f"TabDDPM source not mounted: {tabddpm_root}" +env = os.environ.copy() +env["PYTHONPATH"] = tabddpm_root + (os.pathsep + env.get("PYTHONPATH", "")) + +# Reuse the compat wrapper (patches collections.Sequence for skorch) +wrapper = os.path.join(tabddpm_root, "_compat_run.py") +if not os.path.exists(wrapper): + with open(wrapper, "w") as f: + f.write( + "import collections, collections.abc\n" + "for _a in ('Sequence','MutableSequence','MutableMapping','Mapping'," + "'MutableSet','Set','Callable','Iterable','Iterator'):\n" + " if not hasattr(collections, _a): setattr(collections, _a, getattr(collections.abc, _a, None))\n" + "import sys, runpy\n" + "sys.argv = sys.argv[1:]\n" + "runpy.run_path(sys.argv[0], run_name='__main__')\n" + ) + +print(f"[TabDDPM] Sampling 3918 rows") +ret = subprocess.run( + [sys.executable, wrapper, "scripts/pipeline.py", + "--config", "/work/output-Benchmark-trainonly-v1/n3/tabddpm/tabddpm-n3-20260504_184500/config_sample_20260504_184535_r0.toml", + "--sample"], + cwd=tabddpm_root, + env=env +) +if ret.returncode != 0: + sys.exit(ret.returncode) + +# 将 .npy 输出转为 CSV(npy 在 TabDDPM 的 parent_dir,即 npy_dir) +info_path = "/work/output-Benchmark-trainonly-v1/n3/tabddpm/tabddpm-n3-20260504_184500/data/info.json" +with open(info_path) as f: + info = json.load(f) + +output_dir = "/work/output-Benchmark-trainonly-v1/n3/tabddpm/tabddpm-n3-20260504_184500/output" +col_names = info.get("column_names", []) + +parts = [] +x_num_path = os.path.join(output_dir, "X_num_train.npy") +x_cat_path = os.path.join(output_dir, "X_cat_train.npy") +y_path = os.path.join(output_dir, "y_train.npy") + +if os.path.exists(x_num_path): + parts.append(np.load(x_num_path, allow_pickle=True)) +if os.path.exists(x_cat_path): + parts.append(np.load(x_cat_path, allow_pickle=True).astype(float)) +if os.path.exists(y_path): + y = np.load(y_path, allow_pickle=True) + parts.append(y.reshape(-1, 1) if y.ndim == 1 else y) + +if parts: + combined = np.concatenate(parts, axis=1) + if col_names and len(col_names) == combined.shape[1]: + df = pd.DataFrame(combined, columns=col_names) + else: + df = pd.DataFrame(combined) + df.to_csv("/work/output-Benchmark-trainonly-v1/n3/tabddpm/tabddpm-n3-20260504_184500/tabddpm-n3-3918-20260504_184535.csv", index=False) + print(f"[TabDDPM] Saved {len(df)} rows -> /work/output-Benchmark-trainonly-v1/n3/tabddpm/tabddpm-n3-20260504_184500/tabddpm-n3-3918-20260504_184535.csv") +else: + print("[TabDDPM] WARNING: No output .npy files found") + sys.exit(1) diff --git a/hyperparameter/n3/tabddpm/tabddpm-n3-20260504_184500/_tabddpm_train.py b/hyperparameter/n3/tabddpm/tabddpm-n3-20260504_184500/_tabddpm_train.py new file mode 100644 index 0000000000000000000000000000000000000000..6bfc8641e30566a73a701b19da815034d201fa16 --- /dev/null +++ b/hyperparameter/n3/tabddpm/tabddpm-n3-20260504_184500/_tabddpm_train.py @@ -0,0 +1,32 @@ +import os, sys, subprocess + +tabddpm_root = "/workspace/tabddpm/code" +assert os.path.isdir(tabddpm_root), f"TabDDPM source not mounted: {tabddpm_root}" +env = os.environ.copy() +env["PYTHONPATH"] = tabddpm_root + (os.pathsep + env.get("PYTHONPATH", "")) + +# Write a wrapper that patches collections.Sequence (removed in Python 3.10+) +# before running pipeline.py - needed because skorch uses old API +wrapper = os.path.join(tabddpm_root, "_compat_run.py") +with open(wrapper, "w") as f: + f.write( + "import collections, collections.abc\n" + "for _a in ('Sequence','MutableSequence','MutableMapping','Mapping'," + "'MutableSet','Set','Callable','Iterable','Iterator'):\n" + " if not hasattr(collections, _a): setattr(collections, _a, getattr(collections.abc, _a, None))\n" + "import sys, runpy\n" + "sys.argv = sys.argv[1:]\n" + "runpy.run_path(sys.argv[0], run_name='__main__')\n" + ) + +print(f"[TabDDPM] Training, config=/work/output-Benchmark-trainonly-v1/n3/tabddpm/tabddpm-n3-20260504_184500/config.toml") +ret = subprocess.run( + [sys.executable, wrapper, "scripts/pipeline.py", + "--config", "/work/output-Benchmark-trainonly-v1/n3/tabddpm/tabddpm-n3-20260504_184500/config.toml", + "--train"], + cwd=tabddpm_root, + env=env +) +if ret.returncode != 0: + sys.exit(ret.returncode) +print("[TabDDPM] Training complete") diff --git a/hyperparameter/n3/tabddpm/tabddpm-n3-20260504_184500/config.toml b/hyperparameter/n3/tabddpm/tabddpm-n3-20260504_184500/config.toml new file mode 100644 index 0000000000000000000000000000000000000000..39ab577235215be56ef98703d48a162374033db2 --- /dev/null +++ b/hyperparameter/n3/tabddpm/tabddpm-n3-20260504_184500/config.toml @@ -0,0 +1,39 @@ +seed = 0 +parent_dir = "/work/output-Benchmark-trainonly-v1/n3/tabddpm/tabddpm-n3-20260504_184500/output" +real_data_path = "/work/output-Benchmark-trainonly-v1/n3/tabddpm/tabddpm-n3-20260504_184500/data" +model_type = "mlp" +num_numerical_features = 11 +device = "cuda:0" + +[model_params] +d_in = 11 +num_classes = 7 +is_y_cond = true + +[model_params.rtdl_params] +d_layers = [256, 256] +dropout = 0.0 + +[diffusion_params] +num_timesteps = 1000 +gaussian_loss_type = "mse" + +[train.main] +steps = 8000 +lr = 0.0005 +weight_decay = 0.0 +batch_size = 128 + +[train.T] +seed = 0 +normalization = "quantile" +num_nan_policy = "__none__" +cat_nan_policy = "__none__" +cat_min_frequency = "__none__" +cat_encoding = "__none__" +y_policy = "default" + +[sample] +num_samples = 1000 +batch_size = 128 +seed = 0 diff --git a/hyperparameter/n3/tabddpm/tabddpm-n3-20260504_184500/config_sample_20260504_184535_r0.toml b/hyperparameter/n3/tabddpm/tabddpm-n3-20260504_184500/config_sample_20260504_184535_r0.toml new file mode 100644 index 0000000000000000000000000000000000000000..d64fd0806db36db6883190dd11ddaf19f0aeef79 --- /dev/null +++ b/hyperparameter/n3/tabddpm/tabddpm-n3-20260504_184500/config_sample_20260504_184535_r0.toml @@ -0,0 +1,39 @@ +seed = 0 +parent_dir = "/work/output-Benchmark-trainonly-v1/n3/tabddpm/tabddpm-n3-20260504_184500/output" +real_data_path = "/work/output-Benchmark-trainonly-v1/n3/tabddpm/tabddpm-n3-20260504_184500/data" +model_type = "mlp" +num_numerical_features = 11 +device = "cuda:0" + +[model_params] +d_in = 11 +num_classes = 7 +is_y_cond = true + +[model_params.rtdl_params] +d_layers = [256, 256] +dropout = 0.0 + +[diffusion_params] +num_timesteps = 1000 +gaussian_loss_type = "mse" + +[train.main] +steps = 8000 +lr = 0.0005 +weight_decay = 0.0 +batch_size = 128 + +[train.T] +seed = 0 +normalization = "quantile" +num_nan_policy = "__none__" +cat_nan_policy = "__none__" +cat_min_frequency = "__none__" +cat_encoding = "__none__" +y_policy = "default" + +[sample] +num_samples = 3918 +batch_size = 128 +seed = 0 diff --git a/hyperparameter/n3/tabddpm/tabddpm-n3-20260504_184500/data/X_num_train.npy b/hyperparameter/n3/tabddpm/tabddpm-n3-20260504_184500/data/X_num_train.npy new file mode 100644 index 0000000000000000000000000000000000000000..94beb8413ef55592710518365965f4cb503523ee --- /dev/null +++ b/hyperparameter/n3/tabddpm/tabddpm-n3-20260504_184500/data/X_num_train.npy @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:093d8f405d764277d5a007953f25ab6466f0857f71f0d8f3c437463fb5bf240a +size 172520 diff --git a/hyperparameter/n3/tabddpm/tabddpm-n3-20260504_184500/data/info.json b/hyperparameter/n3/tabddpm/tabddpm-n3-20260504_184500/data/info.json new file mode 100644 index 0000000000000000000000000000000000000000..45d216717b2847b5a467946053f10b0f41c3148b --- /dev/null +++ b/hyperparameter/n3/tabddpm/tabddpm-n3-20260504_184500/data/info.json @@ -0,0 +1,39 @@ +{ + "name": "benchmark_dataset", + "task_type": "multiclass", + "n_num_features": 11, + "n_cat_features": 0, + "train_size": 3918, + "num_col_idx": [ + 0, + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10 + ], + "cat_col_idx": [], + "target_col_idx": [ + 11 + ], + "column_names": [ + "fixed acidity", + "volatile acidity", + "citric acid", + "residual sugar", + "chlorides", + "free sulfur dioxide", + "total sulfur dioxide", + "density", + "pH", + "sulphates", + "alcohol", + "quality" + ], + "num_classes": 7 +} \ No newline at end of file diff --git a/hyperparameter/n3/tabddpm/tabddpm-n3-20260504_184500/data/y_train.npy b/hyperparameter/n3/tabddpm/tabddpm-n3-20260504_184500/data/y_train.npy new file mode 100644 index 0000000000000000000000000000000000000000..1f737a58cd26592130c3604aaa90044a451eb576 --- /dev/null +++ b/hyperparameter/n3/tabddpm/tabddpm-n3-20260504_184500/data/y_train.npy @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:85ed37c52f0ea54dfd3a476dcfafff02d61e92783748e5ee9aadfad20578bcb1 +size 31472 diff --git a/hyperparameter/n3/tabddpm/tabddpm-n3-20260504_184500/gen_20260504_184535_r0.log b/hyperparameter/n3/tabddpm/tabddpm-n3-20260504_184500/gen_20260504_184535_r0.log new file mode 100644 index 0000000000000000000000000000000000000000..5b25880b0d0042c5892411628315d8d42c5dd389 --- /dev/null +++ b/hyperparameter/n3/tabddpm/tabddpm-n3-20260504_184500/gen_20260504_184535_r0.log @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:a9a07f287eec7a61a780f5f2956aac1beb8da7957d732c536069e65fa1142747 +size 651503 diff --git a/hyperparameter/n3/tabddpm/tabddpm-n3-20260504_184500/input_snapshot.json b/hyperparameter/n3/tabddpm/tabddpm-n3-20260504_184500/input_snapshot.json new file mode 100644 index 0000000000000000000000000000000000000000..34d3cbb5018ded64e57cf3350f6ec58dd908f565 --- /dev/null +++ b/hyperparameter/n3/tabddpm/tabddpm-n3-20260504_184500/input_snapshot.json @@ -0,0 +1,36 @@ +{ + "dataset_id": "n3", + "model": "tabddpm", + "inputs": { + "train_csv": { + "path": "/data/jialinzhang/SynthesizePipeline-server/DatasetNew/n3/n3-train.csv", + "exists": true, + "size": 211519, + "sha256": "2160a06db2fea02adb0ebb79d8d853bd2544580be301e71f6e8deeb1489a9009" + }, + "val_csv": { + "path": "/data/jialinzhang/SynthesizePipeline-server/DatasetNew/n3/n3-val.csv", + "exists": true, + "size": 26499, + "sha256": "d5ccfee07dfa9e7bdee5bb87642b43828e09f74c6cc0266a3d19d9feaa83106e" + }, + "test_csv": { + "path": "/data/jialinzhang/SynthesizePipeline-server/DatasetNew/n3/n3-test.csv", + "exists": true, + "size": 26676, + "sha256": "6f83aacb0d1747b95e287352a7fff5d9d65a1c127b773852346c68485c4ede47" + }, + "profile_json": { + "path": "/data/jialinzhang/SynthesizePipeline-server/DatasetNew/artifacts/data_core/tabular/n3/n3-dataset_profile.json", + "exists": true, + "size": 5235, + "sha256": "23d2e5904a2ca90cbf8d6e3c75887681721e9b90cc705c31a680c11513d0c46f" + }, + "contract_json": { + "path": "/data/jialinzhang/SynthesizePipeline-server/DatasetNew/artifacts/data_core/tabular/n3/n3-dataset_contract_v1.json", + "exists": true, + "size": 6281, + "sha256": "c0cc56f5fe28e1b65927255c6e3c2b0e9479862c2ec6f2fea1664da36c9a3a09" + } + } +} \ No newline at end of file diff --git a/hyperparameter/n3/tabddpm/tabddpm-n3-20260504_184500/output/X_num_train.npy b/hyperparameter/n3/tabddpm/tabddpm-n3-20260504_184500/output/X_num_train.npy new file mode 100644 index 0000000000000000000000000000000000000000..3f08ef03708ada63eeac6fb7dfc3c595d7fda41e --- /dev/null +++ b/hyperparameter/n3/tabddpm/tabddpm-n3-20260504_184500/output/X_num_train.npy @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:ef67a7b3a11386af9e146a05c177dbe5a2674fa4e130e2d5a262fd6d567f0330 +size 344912 diff --git a/hyperparameter/n3/tabddpm/tabddpm-n3-20260504_184500/output/X_num_unnorm.npy b/hyperparameter/n3/tabddpm/tabddpm-n3-20260504_184500/output/X_num_unnorm.npy new file mode 100644 index 0000000000000000000000000000000000000000..f3c4646d0b5d9becc73dd74d8281a3bb8f151c8f --- /dev/null +++ b/hyperparameter/n3/tabddpm/tabddpm-n3-20260504_184500/output/X_num_unnorm.npy @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:1792c43379bbaa200b07784c77c99abe83b9d380cde89cb927aca5e4d6fbb6fd +size 344912 diff --git a/hyperparameter/n3/tabddpm/tabddpm-n3-20260504_184500/output/config.toml b/hyperparameter/n3/tabddpm/tabddpm-n3-20260504_184500/output/config.toml new file mode 100644 index 0000000000000000000000000000000000000000..d64fd0806db36db6883190dd11ddaf19f0aeef79 --- /dev/null +++ b/hyperparameter/n3/tabddpm/tabddpm-n3-20260504_184500/output/config.toml @@ -0,0 +1,39 @@ +seed = 0 +parent_dir = "/work/output-Benchmark-trainonly-v1/n3/tabddpm/tabddpm-n3-20260504_184500/output" +real_data_path = "/work/output-Benchmark-trainonly-v1/n3/tabddpm/tabddpm-n3-20260504_184500/data" +model_type = "mlp" +num_numerical_features = 11 +device = "cuda:0" + +[model_params] +d_in = 11 +num_classes = 7 +is_y_cond = true + +[model_params.rtdl_params] +d_layers = [256, 256] +dropout = 0.0 + +[diffusion_params] +num_timesteps = 1000 +gaussian_loss_type = "mse" + +[train.main] +steps = 8000 +lr = 0.0005 +weight_decay = 0.0 +batch_size = 128 + +[train.T] +seed = 0 +normalization = "quantile" +num_nan_policy = "__none__" +cat_nan_policy = "__none__" +cat_min_frequency = "__none__" +cat_encoding = "__none__" +y_policy = "default" + +[sample] +num_samples = 3918 +batch_size = 128 +seed = 0 diff --git a/hyperparameter/n3/tabddpm/tabddpm-n3-20260504_184500/output/info.json b/hyperparameter/n3/tabddpm/tabddpm-n3-20260504_184500/output/info.json new file mode 100644 index 0000000000000000000000000000000000000000..45d216717b2847b5a467946053f10b0f41c3148b --- /dev/null +++ b/hyperparameter/n3/tabddpm/tabddpm-n3-20260504_184500/output/info.json @@ -0,0 +1,39 @@ +{ + "name": "benchmark_dataset", + "task_type": "multiclass", + "n_num_features": 11, + "n_cat_features": 0, + "train_size": 3918, + "num_col_idx": [ + 0, + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10 + ], + "cat_col_idx": [], + "target_col_idx": [ + 11 + ], + "column_names": [ + "fixed acidity", + "volatile acidity", + "citric acid", + "residual sugar", + "chlorides", + "free sulfur dioxide", + "total sulfur dioxide", + "density", + "pH", + "sulphates", + "alcohol", + "quality" + ], + "num_classes": 7 +} \ No newline at end of file diff --git a/hyperparameter/n3/tabddpm/tabddpm-n3-20260504_184500/output/loss.csv b/hyperparameter/n3/tabddpm/tabddpm-n3-20260504_184500/output/loss.csv new file mode 100644 index 0000000000000000000000000000000000000000..8979fa2515d83e06645fe5b75018da3c9c575fb4 --- /dev/null +++ b/hyperparameter/n3/tabddpm/tabddpm-n3-20260504_184500/output/loss.csv @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:b8016ba1e7b537e6cc0f0a3db93240b1aafcd7d44e98f073b15fd79565ed080a +size 1989 diff --git a/hyperparameter/n3/tabddpm/tabddpm-n3-20260504_184500/output/model.pt b/hyperparameter/n3/tabddpm/tabddpm-n3-20260504_184500/output/model.pt new file mode 100644 index 0000000000000000000000000000000000000000..5b15178e15ca2971b8385508f2126acab902ad20 --- /dev/null +++ b/hyperparameter/n3/tabddpm/tabddpm-n3-20260504_184500/output/model.pt @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:fcd4faf267e91d9b239205d58b23b1f2e5135d15c46633aa07e93007932f8872 +size 553046 diff --git a/hyperparameter/n3/tabddpm/tabddpm-n3-20260504_184500/output/model_ema.pt b/hyperparameter/n3/tabddpm/tabddpm-n3-20260504_184500/output/model_ema.pt new file mode 100644 index 0000000000000000000000000000000000000000..d01920be799ea3bccad73d6b07bee0051a0e289c --- /dev/null +++ b/hyperparameter/n3/tabddpm/tabddpm-n3-20260504_184500/output/model_ema.pt @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:9babc08292bd678d2993dae780da08a60a748764d84fb1f9b5e8628cf1442738 +size 553890 diff --git a/hyperparameter/n3/tabddpm/tabddpm-n3-20260504_184500/output/y_train.npy b/hyperparameter/n3/tabddpm/tabddpm-n3-20260504_184500/output/y_train.npy new file mode 100644 index 0000000000000000000000000000000000000000..cea6160110d6a403447199b2a250a6ea77ede7b8 --- /dev/null +++ b/hyperparameter/n3/tabddpm/tabddpm-n3-20260504_184500/output/y_train.npy @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:4d886843627c3d1c9944174e0049dcf604cfa5b0b8e0631b955a75ab0e30bc7d +size 31472 diff --git a/hyperparameter/n3/tabddpm/tabddpm-n3-20260504_184500/public_gate/normalized_schema_snapshot.json b/hyperparameter/n3/tabddpm/tabddpm-n3-20260504_184500/public_gate/normalized_schema_snapshot.json new file mode 100644 index 0000000000000000000000000000000000000000..c41fe304503de23190a02e6cbfafa35b3bf134d3 --- /dev/null +++ b/hyperparameter/n3/tabddpm/tabddpm-n3-20260504_184500/public_gate/normalized_schema_snapshot.json @@ -0,0 +1,259 @@ +{ + "dataset_id": "n3", + "target_column": "quality", + "task_type": "classification", + "columns": [ + { + "name": "fixed acidity", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 66, + "unique_ratio": 0.016845, + "example_values": [ + "7.1", + "8.5", + "6.4", + "6.8", + "7.6" + ] + } + }, + { + "name": "volatile acidity", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 121, + "unique_ratio": 0.030883, + "example_values": [ + "0.31", + "0.21", + "0.24", + "0.43", + "0.27" + ] + } + }, + { + "name": "citric acid", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 85, + "unique_ratio": 0.021695, + "example_values": [ + "0.17", + "0.41", + "0.31", + "0.25", + "0.3" + ] + } + }, + { + "name": "residual sugar", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 296, + "unique_ratio": 0.075549, + "example_values": [ + "1", + "4.3", + "2.8", + "13", + "12.9" + ] + } + }, + { + "name": "chlorides", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 147, + "unique_ratio": 0.037519, + "example_values": [ + "0.042", + "0.036", + "0.038", + "0.047", + "0.033" + ] + } + }, + { + "name": "free sulfur dioxide", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 120, + "unique_ratio": 0.030628, + "example_values": [ + "21", + "24", + "41", + "43", + "69" + ] + } + }, + { + "name": "total sulfur dioxide", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 244, + "unique_ratio": 0.062277, + "example_values": [ + "144", + "99", + "114", + "132", + "160" + ] + } + }, + { + "name": "density", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 839, + "unique_ratio": 0.21414, + "example_values": [ + "0.99304", + "0.9947", + "0.99155", + "0.98975", + "0.99705" + ] + } + }, + { + "name": "pH", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 100, + "unique_ratio": 0.025523, + "example_values": [ + "3.13", + "3.18", + "3.37", + "3.21", + "3.16" + ] + } + }, + { + "name": "sulphates", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 78, + "unique_ratio": 0.019908, + "example_values": [ + "0.4", + "0.53", + "0.66", + "0.47", + "0.5" + ] + } + }, + { + "name": "alcohol", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 97, + "unique_ratio": 0.024758, + "example_values": [ + "9.6", + "9.7", + "11.7", + "13.4", + "8.8" + ] + } + }, + { + "name": "quality", + "role": "target", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 7, + "unique_ratio": 0.001787, + "example_values": [ + "5", + "6", + "7", + "8", + "3" + ] + } + } + ] +} \ No newline at end of file diff --git a/hyperparameter/n3/tabddpm/tabddpm-n3-20260504_184500/public_gate/public_gate_report.json b/hyperparameter/n3/tabddpm/tabddpm-n3-20260504_184500/public_gate/public_gate_report.json new file mode 100644 index 0000000000000000000000000000000000000000..93b97319f739e39079d6c6549fd2020f8a6dac25 --- /dev/null +++ b/hyperparameter/n3/tabddpm/tabddpm-n3-20260504_184500/public_gate/public_gate_report.json @@ -0,0 +1,37 @@ +{ + "dataset_id": "n3", + "status": "pass", + "checks": [ + { + "check_id": "PG001_csv_parse_ok", + "status": "pass" + }, + { + "check_id": "PG002_split_header_consistent", + "status": "pass" + }, + { + "check_id": "PG003_profile_header_match", + "status": "pass" + }, + { + "check_id": "PG004_missing_token_normalized", + "status": "pass" + }, + { + "check_id": "PG005_semantic_type_validated", + "status": "pass" + }, + { + "check_id": "PG006_target_defined_and_valid", + "status": "pass" + } + ], + "target_column": "quality", + "task_type": "classification", + "input_splits": { + "train": "/data/jialinzhang/SynthesizePipeline-server/DatasetNew/n3/n3-train.csv", + "val": "/data/jialinzhang/SynthesizePipeline-server/DatasetNew/n3/n3-val.csv", + "test": "/data/jialinzhang/SynthesizePipeline-server/DatasetNew/n3/n3-test.csv" + } +} \ No newline at end of file diff --git a/hyperparameter/n3/tabddpm/tabddpm-n3-20260504_184500/public_gate/staged_input_manifest.json b/hyperparameter/n3/tabddpm/tabddpm-n3-20260504_184500/public_gate/staged_input_manifest.json new file mode 100644 index 0000000000000000000000000000000000000000..510db8955db4e6581a0a3c980dac050c95b5ee80 --- /dev/null +++ b/hyperparameter/n3/tabddpm/tabddpm-n3-20260504_184500/public_gate/staged_input_manifest.json @@ -0,0 +1,264 @@ +{ + "dataset_id": "n3", + "target_column": "quality", + "task_type": "classification", + "train_csv": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/n3/tabddpm/tabddpm-n3-20260504_184500/staged/public/train.csv", + "val_csv": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/n3/tabddpm/tabddpm-n3-20260504_184500/staged/public/val.csv", + "test_csv": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/n3/tabddpm/tabddpm-n3-20260504_184500/staged/public/test.csv", + "features_json": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/n3/tabddpm/tabddpm-n3-20260504_184500/staged/public/staged_features.json", + "public_gate_report": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/n3/tabddpm/tabddpm-n3-20260504_184500/public_gate/public_gate_report.json", + "column_schema": [ + { + "name": "fixed acidity", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 66, + "unique_ratio": 0.016845, + "example_values": [ + "7.1", + "8.5", + "6.4", + "6.8", + "7.6" + ] + } + }, + { + "name": "volatile acidity", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 121, + "unique_ratio": 0.030883, + "example_values": [ + "0.31", + "0.21", + "0.24", + "0.43", + "0.27" + ] + } + }, + { + "name": "citric acid", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 85, + "unique_ratio": 0.021695, + "example_values": [ + "0.17", + "0.41", + "0.31", + "0.25", + "0.3" + ] + } + }, + { + "name": "residual sugar", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 296, + "unique_ratio": 0.075549, + "example_values": [ + "1", + "4.3", + "2.8", + "13", + "12.9" + ] + } + }, + { + "name": "chlorides", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 147, + "unique_ratio": 0.037519, + "example_values": [ + "0.042", + "0.036", + "0.038", + "0.047", + "0.033" + ] + } + }, + { + "name": "free sulfur dioxide", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 120, + "unique_ratio": 0.030628, + "example_values": [ + "21", + "24", + "41", + "43", + "69" + ] + } + }, + { + "name": "total sulfur dioxide", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 244, + "unique_ratio": 0.062277, + "example_values": [ + "144", + "99", + "114", + "132", + "160" + ] + } + }, + { + "name": "density", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 839, + "unique_ratio": 0.21414, + "example_values": [ + "0.99304", + "0.9947", + "0.99155", + "0.98975", + "0.99705" + ] + } + }, + { + "name": "pH", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 100, + "unique_ratio": 0.025523, + "example_values": [ + "3.13", + "3.18", + "3.37", + "3.21", + "3.16" + ] + } + }, + { + "name": "sulphates", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 78, + "unique_ratio": 0.019908, + "example_values": [ + "0.4", + "0.53", + "0.66", + "0.47", + "0.5" + ] + } + }, + { + "name": "alcohol", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 97, + "unique_ratio": 0.024758, + "example_values": [ + "9.6", + "9.7", + "11.7", + "13.4", + "8.8" + ] + } + }, + { + "name": "quality", + "role": "target", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 7, + "unique_ratio": 0.001787, + "example_values": [ + "5", + "6", + "7", + "8", + "3" + ] + } + } + ] +} \ No newline at end of file diff --git a/hyperparameter/n3/tabddpm/tabddpm-n3-20260504_184500/run_config.json b/hyperparameter/n3/tabddpm/tabddpm-n3-20260504_184500/run_config.json new file mode 100644 index 0000000000000000000000000000000000000000..28d6b4ed6072db80b115a359e12344e9bdf0a35f --- /dev/null +++ b/hyperparameter/n3/tabddpm/tabddpm-n3-20260504_184500/run_config.json @@ -0,0 +1,45 @@ +{ + "schema_version": 1, + "recorded_at": "2026-05-04T18:45:00", + "dataset_id": "n3", + "model": "tabddpm", + "work_dir": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/n3/tabddpm/tabddpm-n3-20260504_184500", + "dataset_source_requested": "new", + "dataset_source_resolved": "new", + "cli_args": { + "model": "tabddpm", + "dataset": "n3", + "dataset_source": "new", + "train": true, + "generate": true, + "num_rows": 0, + "epochs": null, + "output_dir": null, + "model_dir": null, + "work_dir": null, + "resume": false, + "no_stats": false + }, + "resolved": { + "num_rows": 3918, + "model_path": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/n3/tabddpm/tabddpm-n3-20260504_184500", + "output_csv": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/n3/tabddpm/tabddpm-n3-20260504_184500/tabddpm-n3-3918-20260504_184535.csv" + }, + "input_artifacts": { + "public_gate_report": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/n3/tabddpm/tabddpm-n3-20260504_184500/public_gate/public_gate_report.json", + "public_manifest": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/n3/tabddpm/tabddpm-n3-20260504_184500/public_gate/staged_input_manifest.json", + "model_manifest": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/n3/tabddpm/tabddpm-n3-20260504_184500/staged/tabddpm/model_input_manifest.json", + "train_csv": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/n3/tabddpm/tabddpm-n3-20260504_184500/staged/public/train.csv", + "features_json": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/n3/tabddpm/tabddpm-n3-20260504_184500/staged/public/staged_features.json", + "target_column": "quality", + "task_type": "classification" + }, + "env_overrides": { + "BENCHMARK_TABDDPM_GPUS": "device=3", + "TABDDPM_NUM_TIMESTEPS": "1000", + "TABDDPM_SAMPLE_BATCH_SIZE": "128", + "TABDDPM_STEPS_PER_EPOCH": "160", + "TABDDPM_TRAIN_BATCH_SIZE": "128", + "TABDDPM_TRAIN_LR": "0.0005" + } +} \ No newline at end of file diff --git a/hyperparameter/n3/tabddpm/tabddpm-n3-20260504_184500/runtime_result.json b/hyperparameter/n3/tabddpm/tabddpm-n3-20260504_184500/runtime_result.json new file mode 100644 index 0000000000000000000000000000000000000000..e3fc68eddc03d139e7610e5542082dc18356af7b --- /dev/null +++ b/hyperparameter/n3/tabddpm/tabddpm-n3-20260504_184500/runtime_result.json @@ -0,0 +1,27 @@ +{ + "dataset_id": "n3", + "model": "tabddpm", + "run_id": "tabddpm-n3-20260504_184500", + "public_gate_status": "pass", + "adapter_ready_status": "pass", + "train_status": "success", + "generate_status": "success", + "reason_code": null, + "reason_detail": null, + "artifacts": { + "synthetic_csv": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/n3/tabddpm/tabddpm-n3-20260504_184500/tabddpm-n3-3918-20260504_184535.csv", + "model_path": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/n3/tabddpm/tabddpm-n3-20260504_184500" + }, + "timings": { + "train": { + "started_at": "2026-05-04T18:45:00", + "ended_at": "2026-05-04T18:45:35", + "duration_sec": 34.695 + }, + "generate": { + "started_at": "2026-05-04T18:45:35", + "ended_at": "2026-05-04T18:46:18", + "duration_sec": 42.835 + } + } +} \ No newline at end of file diff --git a/hyperparameter/n3/tabddpm/tabddpm-n3-20260504_184500/staged/public/staged_features.json b/hyperparameter/n3/tabddpm/tabddpm-n3-20260504_184500/staged/public/staged_features.json new file mode 100644 index 0000000000000000000000000000000000000000..08fe4d766d091d2f2ddba724a16b9509cbe4c390 --- /dev/null +++ b/hyperparameter/n3/tabddpm/tabddpm-n3-20260504_184500/staged/public/staged_features.json @@ -0,0 +1,62 @@ +[ + { + "feature_name": "fixed acidity", + "data_type": "continuous", + "is_target": false + }, + { + "feature_name": "volatile acidity", + "data_type": "continuous", + "is_target": false + }, + { + "feature_name": "citric acid", + "data_type": "continuous", + "is_target": false + }, + { + "feature_name": "residual sugar", + "data_type": "continuous", + "is_target": false + }, + { + "feature_name": "chlorides", + "data_type": "continuous", + "is_target": false + }, + { + "feature_name": "free sulfur dioxide", + "data_type": "continuous", + "is_target": false + }, + { + "feature_name": "total sulfur dioxide", + "data_type": "continuous", + "is_target": false + }, + { + "feature_name": "density", + "data_type": "continuous", + "is_target": false + }, + { + "feature_name": "pH", + "data_type": "continuous", + "is_target": false + }, + { + "feature_name": "sulphates", + "data_type": "continuous", + "is_target": false + }, + { + "feature_name": "alcohol", + "data_type": "continuous", + "is_target": false + }, + { + "feature_name": "quality", + "data_type": "continuous", + "is_target": true + } +] \ No newline at end of file diff --git a/hyperparameter/n3/tabddpm/tabddpm-n3-20260504_184500/staged/public/test.csv b/hyperparameter/n3/tabddpm/tabddpm-n3-20260504_184500/staged/public/test.csv new file mode 100644 index 0000000000000000000000000000000000000000..db5cd50d3746410ea470625fa2ba2c8e9775cc0d --- /dev/null +++ b/hyperparameter/n3/tabddpm/tabddpm-n3-20260504_184500/staged/public/test.csv @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:19e107152a94432e2a37ff045c00cfe35e1be30208b1553080d7dd0ede256d3b +size 28944 diff --git a/hyperparameter/n3/tabddpm/tabddpm-n3-20260504_184500/staged/public/train.csv b/hyperparameter/n3/tabddpm/tabddpm-n3-20260504_184500/staged/public/train.csv new file mode 100644 index 0000000000000000000000000000000000000000..87ca26726fe82ccbaa397919305b043c17eb374e --- /dev/null +++ b/hyperparameter/n3/tabddpm/tabddpm-n3-20260504_184500/staged/public/train.csv @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:7813c8cca73ba4bfc6559215257b341c21e459980ad17ae6ddc809306bc9a0b9 +size 229945 diff --git a/hyperparameter/n3/tabddpm/tabddpm-n3-20260504_184500/staged/public/val.csv b/hyperparameter/n3/tabddpm/tabddpm-n3-20260504_184500/staged/public/val.csv new file mode 100644 index 0000000000000000000000000000000000000000..6acf84c76c47093b513c46d5503972a2dff275c0 --- /dev/null +++ b/hyperparameter/n3/tabddpm/tabddpm-n3-20260504_184500/staged/public/val.csv @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:cf5979d9675567d9d6642640c9b84fc6c49e492604144723c30f50516c05cee6 +size 28791 diff --git a/hyperparameter/n3/tabddpm/tabddpm-n3-20260504_184500/staged/tabddpm/adapter_report.json b/hyperparameter/n3/tabddpm/tabddpm-n3-20260504_184500/staged/tabddpm/adapter_report.json new file mode 100644 index 0000000000000000000000000000000000000000..ffd44c38cfafd461b5154a877d909070e5ebf48f --- /dev/null +++ b/hyperparameter/n3/tabddpm/tabddpm-n3-20260504_184500/staged/tabddpm/adapter_report.json @@ -0,0 +1,7 @@ +{ + "adapter_ready_status": "pass", + "adapter_fail_reason_code": null, + "adapter_fail_detail": null, + "adapter_transforms_applied": [], + "model_input_manifest": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/n3/tabddpm/tabddpm-n3-20260504_184500/staged/tabddpm/model_input_manifest.json" +} \ No newline at end of file diff --git a/hyperparameter/n3/tabddpm/tabddpm-n3-20260504_184500/staged/tabddpm/adapter_transforms_applied.json b/hyperparameter/n3/tabddpm/tabddpm-n3-20260504_184500/staged/tabddpm/adapter_transforms_applied.json new file mode 100644 index 0000000000000000000000000000000000000000..0637a088a01e8ddab3bf3fa98dbe804cbde1a0dc --- /dev/null +++ b/hyperparameter/n3/tabddpm/tabddpm-n3-20260504_184500/staged/tabddpm/adapter_transforms_applied.json @@ -0,0 +1 @@ +[] \ No newline at end of file diff --git a/hyperparameter/n3/tabddpm/tabddpm-n3-20260504_184500/staged/tabddpm/model_input_manifest.json b/hyperparameter/n3/tabddpm/tabddpm-n3-20260504_184500/staged/tabddpm/model_input_manifest.json new file mode 100644 index 0000000000000000000000000000000000000000..38e1daf7431ac753a7d14e9b6d69ab30a96a4b2e --- /dev/null +++ b/hyperparameter/n3/tabddpm/tabddpm-n3-20260504_184500/staged/tabddpm/model_input_manifest.json @@ -0,0 +1,266 @@ +{ + "dataset_id": "n3", + "model": "tabddpm", + "target_column": "quality", + "task_type": "classification", + "column_schema": [ + { + "name": "fixed acidity", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 66, + "unique_ratio": 0.016845, + "example_values": [ + "7.1", + "8.5", + "6.4", + "6.8", + "7.6" + ] + } + }, + { + "name": "volatile acidity", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 121, + "unique_ratio": 0.030883, + "example_values": [ + "0.31", + "0.21", + "0.24", + "0.43", + "0.27" + ] + } + }, + { + "name": "citric acid", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 85, + "unique_ratio": 0.021695, + "example_values": [ + "0.17", + "0.41", + "0.31", + "0.25", + "0.3" + ] + } + }, + { + "name": "residual sugar", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 296, + "unique_ratio": 0.075549, + "example_values": [ + "1", + "4.3", + "2.8", + "13", + "12.9" + ] + } + }, + { + "name": "chlorides", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 147, + "unique_ratio": 0.037519, + "example_values": [ + "0.042", + "0.036", + "0.038", + "0.047", + "0.033" + ] + } + }, + { + "name": "free sulfur dioxide", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 120, + "unique_ratio": 0.030628, + "example_values": [ + "21", + "24", + "41", + "43", + "69" + ] + } + }, + { + "name": "total sulfur dioxide", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 244, + "unique_ratio": 0.062277, + "example_values": [ + "144", + "99", + "114", + "132", + "160" + ] + } + }, + { + "name": "density", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 839, + "unique_ratio": 0.21414, + "example_values": [ + "0.99304", + "0.9947", + "0.99155", + "0.98975", + "0.99705" + ] + } + }, + { + "name": "pH", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 100, + "unique_ratio": 0.025523, + "example_values": [ + "3.13", + "3.18", + "3.37", + "3.21", + "3.16" + ] + } + }, + { + "name": "sulphates", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 78, + "unique_ratio": 0.019908, + "example_values": [ + "0.4", + "0.53", + "0.66", + "0.47", + "0.5" + ] + } + }, + { + "name": "alcohol", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 97, + "unique_ratio": 0.024758, + "example_values": [ + "9.6", + "9.7", + "11.7", + "13.4", + "8.8" + ] + } + }, + { + "name": "quality", + "role": "target", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 7, + "unique_ratio": 0.001787, + "example_values": [ + "5", + "6", + "7", + "8", + "3" + ] + } + } + ], + "public_manifest": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/n3/tabddpm/tabddpm-n3-20260504_184500/public_gate/staged_input_manifest.json", + "train_csv": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/n3/tabddpm/tabddpm-n3-20260504_184500/staged/public/train.csv", + "val_csv": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/n3/tabddpm/tabddpm-n3-20260504_184500/staged/public/val.csv", + "test_csv": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/n3/tabddpm/tabddpm-n3-20260504_184500/staged/public/test.csv", + "features_json": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/n3/tabddpm/tabddpm-n3-20260504_184500/staged/public/staged_features.json", + "public_gate_report": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/n3/tabddpm/tabddpm-n3-20260504_184500/public_gate/public_gate_report.json" +} \ No newline at end of file diff --git a/hyperparameter/n3/tabddpm/tabddpm-n3-20260504_184500/tabddpm-n3-3918-20260504_184535.csv b/hyperparameter/n3/tabddpm/tabddpm-n3-20260504_184500/tabddpm-n3-3918-20260504_184535.csv new file mode 100644 index 0000000000000000000000000000000000000000..589375cd23bc4433233c0dd2c0401a6cb49dc844 --- /dev/null +++ b/hyperparameter/n3/tabddpm/tabddpm-n3-20260504_184500/tabddpm-n3-3918-20260504_184535.csv @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:c738146e7f0d047733ec58eb2dc833972910c549be56e4e0bd8360335a99e691 +size 772165 diff --git a/hyperparameter/n3/tabddpm/tabddpm-n3-20260504_184500/train_20260504_184500.log b/hyperparameter/n3/tabddpm/tabddpm-n3-20260504_184500/train_20260504_184500.log new file mode 100644 index 0000000000000000000000000000000000000000..d8ecc0d432acd0e9dfcffade25b13b3a3d1ded3c --- /dev/null +++ b/hyperparameter/n3/tabddpm/tabddpm-n3-20260504_184500/train_20260504_184500.log @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:7d2ebb14e4aaf1af57a705b7461578273c89585d3856864bdc6f3c11d01806d1 +size 1376 diff --git a/hyperparameter/n3/tabddpm/tabddpm-n3-20260504_184631/_tabddpm_sample_r0.py b/hyperparameter/n3/tabddpm/tabddpm-n3-20260504_184631/_tabddpm_sample_r0.py new file mode 100644 index 0000000000000000000000000000000000000000..22223c410528a9b46734a68a73d3503c54008315 --- /dev/null +++ b/hyperparameter/n3/tabddpm/tabddpm-n3-20260504_184631/_tabddpm_sample_r0.py @@ -0,0 +1,66 @@ +import os, sys, subprocess, json +import numpy as np +import pandas as pd + +tabddpm_root = "/workspace/tabddpm/code" +assert os.path.isdir(tabddpm_root), f"TabDDPM source not mounted: {tabddpm_root}" +env = os.environ.copy() +env["PYTHONPATH"] = tabddpm_root + (os.pathsep + env.get("PYTHONPATH", "")) + +# Reuse the compat wrapper (patches collections.Sequence for skorch) +wrapper = os.path.join(tabddpm_root, "_compat_run.py") +if not os.path.exists(wrapper): + with open(wrapper, "w") as f: + f.write( + "import collections, collections.abc\n" + "for _a in ('Sequence','MutableSequence','MutableMapping','Mapping'," + "'MutableSet','Set','Callable','Iterable','Iterator'):\n" + " if not hasattr(collections, _a): setattr(collections, _a, getattr(collections.abc, _a, None))\n" + "import sys, runpy\n" + "sys.argv = sys.argv[1:]\n" + "runpy.run_path(sys.argv[0], run_name='__main__')\n" + ) + +print(f"[TabDDPM] Sampling 3918 rows") +ret = subprocess.run( + [sys.executable, wrapper, "scripts/pipeline.py", + "--config", "/work/output-Benchmark-trainonly-v1/n3/tabddpm/tabddpm-n3-20260504_184631/config_sample_20260504_184713_r0.toml", + "--sample"], + cwd=tabddpm_root, + env=env +) +if ret.returncode != 0: + sys.exit(ret.returncode) + +# 将 .npy 输出转为 CSV(npy 在 TabDDPM 的 parent_dir,即 npy_dir) +info_path = "/work/output-Benchmark-trainonly-v1/n3/tabddpm/tabddpm-n3-20260504_184631/data/info.json" +with open(info_path) as f: + info = json.load(f) + +output_dir = "/work/output-Benchmark-trainonly-v1/n3/tabddpm/tabddpm-n3-20260504_184631/output" +col_names = info.get("column_names", []) + +parts = [] +x_num_path = os.path.join(output_dir, "X_num_train.npy") +x_cat_path = os.path.join(output_dir, "X_cat_train.npy") +y_path = os.path.join(output_dir, "y_train.npy") + +if os.path.exists(x_num_path): + parts.append(np.load(x_num_path, allow_pickle=True)) +if os.path.exists(x_cat_path): + parts.append(np.load(x_cat_path, allow_pickle=True).astype(float)) +if os.path.exists(y_path): + y = np.load(y_path, allow_pickle=True) + parts.append(y.reshape(-1, 1) if y.ndim == 1 else y) + +if parts: + combined = np.concatenate(parts, axis=1) + if col_names and len(col_names) == combined.shape[1]: + df = pd.DataFrame(combined, columns=col_names) + else: + df = pd.DataFrame(combined) + df.to_csv("/work/output-Benchmark-trainonly-v1/n3/tabddpm/tabddpm-n3-20260504_184631/tabddpm-n3-3918-20260504_184713.csv", index=False) + print(f"[TabDDPM] Saved {len(df)} rows -> /work/output-Benchmark-trainonly-v1/n3/tabddpm/tabddpm-n3-20260504_184631/tabddpm-n3-3918-20260504_184713.csv") +else: + print("[TabDDPM] WARNING: No output .npy files found") + sys.exit(1) diff --git a/hyperparameter/n3/tabddpm/tabddpm-n3-20260504_184631/_tabddpm_train.py b/hyperparameter/n3/tabddpm/tabddpm-n3-20260504_184631/_tabddpm_train.py new file mode 100644 index 0000000000000000000000000000000000000000..e31d95d63228dca3c45877066cb1ac29b3603b99 --- /dev/null +++ b/hyperparameter/n3/tabddpm/tabddpm-n3-20260504_184631/_tabddpm_train.py @@ -0,0 +1,32 @@ +import os, sys, subprocess + +tabddpm_root = "/workspace/tabddpm/code" +assert os.path.isdir(tabddpm_root), f"TabDDPM source not mounted: {tabddpm_root}" +env = os.environ.copy() +env["PYTHONPATH"] = tabddpm_root + (os.pathsep + env.get("PYTHONPATH", "")) + +# Write a wrapper that patches collections.Sequence (removed in Python 3.10+) +# before running pipeline.py - needed because skorch uses old API +wrapper = os.path.join(tabddpm_root, "_compat_run.py") +with open(wrapper, "w") as f: + f.write( + "import collections, collections.abc\n" + "for _a in ('Sequence','MutableSequence','MutableMapping','Mapping'," + "'MutableSet','Set','Callable','Iterable','Iterator'):\n" + " if not hasattr(collections, _a): setattr(collections, _a, getattr(collections.abc, _a, None))\n" + "import sys, runpy\n" + "sys.argv = sys.argv[1:]\n" + "runpy.run_path(sys.argv[0], run_name='__main__')\n" + ) + +print(f"[TabDDPM] Training, config=/work/output-Benchmark-trainonly-v1/n3/tabddpm/tabddpm-n3-20260504_184631/config.toml") +ret = subprocess.run( + [sys.executable, wrapper, "scripts/pipeline.py", + "--config", "/work/output-Benchmark-trainonly-v1/n3/tabddpm/tabddpm-n3-20260504_184631/config.toml", + "--train"], + cwd=tabddpm_root, + env=env +) +if ret.returncode != 0: + sys.exit(ret.returncode) +print("[TabDDPM] Training complete") diff --git a/hyperparameter/n3/tabddpm/tabddpm-n3-20260504_184631/config.toml b/hyperparameter/n3/tabddpm/tabddpm-n3-20260504_184631/config.toml new file mode 100644 index 0000000000000000000000000000000000000000..779fa03732fc91343c130fc684402248af34c5ae --- /dev/null +++ b/hyperparameter/n3/tabddpm/tabddpm-n3-20260504_184631/config.toml @@ -0,0 +1,39 @@ +seed = 0 +parent_dir = "/work/output-Benchmark-trainonly-v1/n3/tabddpm/tabddpm-n3-20260504_184631/output" +real_data_path = "/work/output-Benchmark-trainonly-v1/n3/tabddpm/tabddpm-n3-20260504_184631/data" +model_type = "mlp" +num_numerical_features = 11 +device = "cuda:0" + +[model_params] +d_in = 11 +num_classes = 7 +is_y_cond = true + +[model_params.rtdl_params] +d_layers = [256, 256] +dropout = 0.0 + +[diffusion_params] +num_timesteps = 1000 +gaussian_loss_type = "mse" + +[train.main] +steps = 10000 +lr = 0.0001 +weight_decay = 0.0 +batch_size = 128 + +[train.T] +seed = 0 +normalization = "quantile" +num_nan_policy = "__none__" +cat_nan_policy = "__none__" +cat_min_frequency = "__none__" +cat_encoding = "__none__" +y_policy = "default" + +[sample] +num_samples = 1000 +batch_size = 128 +seed = 0 diff --git a/hyperparameter/n3/tabddpm/tabddpm-n3-20260504_184631/config_sample_20260504_184713_r0.toml b/hyperparameter/n3/tabddpm/tabddpm-n3-20260504_184631/config_sample_20260504_184713_r0.toml new file mode 100644 index 0000000000000000000000000000000000000000..dac8ec5960f7c255bfd9b6281ebef9ab8d4da82b --- /dev/null +++ b/hyperparameter/n3/tabddpm/tabddpm-n3-20260504_184631/config_sample_20260504_184713_r0.toml @@ -0,0 +1,39 @@ +seed = 0 +parent_dir = "/work/output-Benchmark-trainonly-v1/n3/tabddpm/tabddpm-n3-20260504_184631/output" +real_data_path = "/work/output-Benchmark-trainonly-v1/n3/tabddpm/tabddpm-n3-20260504_184631/data" +model_type = "mlp" +num_numerical_features = 11 +device = "cuda:0" + +[model_params] +d_in = 11 +num_classes = 7 +is_y_cond = true + +[model_params.rtdl_params] +d_layers = [256, 256] +dropout = 0.0 + +[diffusion_params] +num_timesteps = 1000 +gaussian_loss_type = "mse" + +[train.main] +steps = 10000 +lr = 0.0001 +weight_decay = 0.0 +batch_size = 128 + +[train.T] +seed = 0 +normalization = "quantile" +num_nan_policy = "__none__" +cat_nan_policy = "__none__" +cat_min_frequency = "__none__" +cat_encoding = "__none__" +y_policy = "default" + +[sample] +num_samples = 3918 +batch_size = 128 +seed = 0 diff --git a/hyperparameter/n3/tabddpm/tabddpm-n3-20260504_184631/data/X_num_train.npy b/hyperparameter/n3/tabddpm/tabddpm-n3-20260504_184631/data/X_num_train.npy new file mode 100644 index 0000000000000000000000000000000000000000..94beb8413ef55592710518365965f4cb503523ee --- /dev/null +++ b/hyperparameter/n3/tabddpm/tabddpm-n3-20260504_184631/data/X_num_train.npy @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:093d8f405d764277d5a007953f25ab6466f0857f71f0d8f3c437463fb5bf240a +size 172520 diff --git a/hyperparameter/n3/tabddpm/tabddpm-n3-20260504_184631/data/info.json b/hyperparameter/n3/tabddpm/tabddpm-n3-20260504_184631/data/info.json new file mode 100644 index 0000000000000000000000000000000000000000..45d216717b2847b5a467946053f10b0f41c3148b --- /dev/null +++ b/hyperparameter/n3/tabddpm/tabddpm-n3-20260504_184631/data/info.json @@ -0,0 +1,39 @@ +{ + "name": "benchmark_dataset", + "task_type": "multiclass", + "n_num_features": 11, + "n_cat_features": 0, + "train_size": 3918, + "num_col_idx": [ + 0, + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10 + ], + "cat_col_idx": [], + "target_col_idx": [ + 11 + ], + "column_names": [ + "fixed acidity", + "volatile acidity", + "citric acid", + "residual sugar", + "chlorides", + "free sulfur dioxide", + "total sulfur dioxide", + "density", + "pH", + "sulphates", + "alcohol", + "quality" + ], + "num_classes": 7 +} \ No newline at end of file diff --git a/hyperparameter/n3/tabddpm/tabddpm-n3-20260504_184631/data/y_train.npy b/hyperparameter/n3/tabddpm/tabddpm-n3-20260504_184631/data/y_train.npy new file mode 100644 index 0000000000000000000000000000000000000000..1f737a58cd26592130c3604aaa90044a451eb576 --- /dev/null +++ b/hyperparameter/n3/tabddpm/tabddpm-n3-20260504_184631/data/y_train.npy @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:85ed37c52f0ea54dfd3a476dcfafff02d61e92783748e5ee9aadfad20578bcb1 +size 31472 diff --git a/hyperparameter/n3/tabddpm/tabddpm-n3-20260504_184631/gen_20260504_184713_r0.log b/hyperparameter/n3/tabddpm/tabddpm-n3-20260504_184631/gen_20260504_184713_r0.log new file mode 100644 index 0000000000000000000000000000000000000000..039021eb16b21c0088d6fbeaa1e396c97ae10edb --- /dev/null +++ b/hyperparameter/n3/tabddpm/tabddpm-n3-20260504_184631/gen_20260504_184713_r0.log @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:c3c1b66cf54a57ca038219695acb133523dc7de2251d2519655bda51585370d7 +size 651503 diff --git a/hyperparameter/n3/tabddpm/tabddpm-n3-20260504_184631/input_snapshot.json b/hyperparameter/n3/tabddpm/tabddpm-n3-20260504_184631/input_snapshot.json new file mode 100644 index 0000000000000000000000000000000000000000..34d3cbb5018ded64e57cf3350f6ec58dd908f565 --- /dev/null +++ b/hyperparameter/n3/tabddpm/tabddpm-n3-20260504_184631/input_snapshot.json @@ -0,0 +1,36 @@ +{ + "dataset_id": "n3", + "model": "tabddpm", + "inputs": { + "train_csv": { + "path": "/data/jialinzhang/SynthesizePipeline-server/DatasetNew/n3/n3-train.csv", + "exists": true, + "size": 211519, + "sha256": "2160a06db2fea02adb0ebb79d8d853bd2544580be301e71f6e8deeb1489a9009" + }, + "val_csv": { + "path": "/data/jialinzhang/SynthesizePipeline-server/DatasetNew/n3/n3-val.csv", + "exists": true, + "size": 26499, + "sha256": "d5ccfee07dfa9e7bdee5bb87642b43828e09f74c6cc0266a3d19d9feaa83106e" + }, + "test_csv": { + "path": "/data/jialinzhang/SynthesizePipeline-server/DatasetNew/n3/n3-test.csv", + "exists": true, + "size": 26676, + "sha256": "6f83aacb0d1747b95e287352a7fff5d9d65a1c127b773852346c68485c4ede47" + }, + "profile_json": { + "path": "/data/jialinzhang/SynthesizePipeline-server/DatasetNew/artifacts/data_core/tabular/n3/n3-dataset_profile.json", + "exists": true, + "size": 5235, + "sha256": "23d2e5904a2ca90cbf8d6e3c75887681721e9b90cc705c31a680c11513d0c46f" + }, + "contract_json": { + "path": "/data/jialinzhang/SynthesizePipeline-server/DatasetNew/artifacts/data_core/tabular/n3/n3-dataset_contract_v1.json", + "exists": true, + "size": 6281, + "sha256": "c0cc56f5fe28e1b65927255c6e3c2b0e9479862c2ec6f2fea1664da36c9a3a09" + } + } +} \ No newline at end of file diff --git a/hyperparameter/n3/tabddpm/tabddpm-n3-20260504_184631/output/X_num_train.npy b/hyperparameter/n3/tabddpm/tabddpm-n3-20260504_184631/output/X_num_train.npy new file mode 100644 index 0000000000000000000000000000000000000000..b0006327f14608f8d9037a09ee4f5ccd23c834d0 --- /dev/null +++ b/hyperparameter/n3/tabddpm/tabddpm-n3-20260504_184631/output/X_num_train.npy @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:6112bcf98ee3e4ea784a8e43501b738637bdac886f69e13264fdcd702dbb411f +size 344912 diff --git a/hyperparameter/n3/tabddpm/tabddpm-n3-20260504_184631/output/X_num_unnorm.npy b/hyperparameter/n3/tabddpm/tabddpm-n3-20260504_184631/output/X_num_unnorm.npy new file mode 100644 index 0000000000000000000000000000000000000000..7cdca64b4674f3d108905f6fa184d0715114cf0d --- /dev/null +++ b/hyperparameter/n3/tabddpm/tabddpm-n3-20260504_184631/output/X_num_unnorm.npy @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:8354dda9123fb20fbda3ccf6e6b5c3aaeaa9582be7f7c8b212053baad6458613 +size 344912 diff --git a/hyperparameter/n3/tabddpm/tabddpm-n3-20260504_184631/output/config.toml b/hyperparameter/n3/tabddpm/tabddpm-n3-20260504_184631/output/config.toml new file mode 100644 index 0000000000000000000000000000000000000000..dac8ec5960f7c255bfd9b6281ebef9ab8d4da82b --- /dev/null +++ b/hyperparameter/n3/tabddpm/tabddpm-n3-20260504_184631/output/config.toml @@ -0,0 +1,39 @@ +seed = 0 +parent_dir = "/work/output-Benchmark-trainonly-v1/n3/tabddpm/tabddpm-n3-20260504_184631/output" +real_data_path = "/work/output-Benchmark-trainonly-v1/n3/tabddpm/tabddpm-n3-20260504_184631/data" +model_type = "mlp" +num_numerical_features = 11 +device = "cuda:0" + +[model_params] +d_in = 11 +num_classes = 7 +is_y_cond = true + +[model_params.rtdl_params] +d_layers = [256, 256] +dropout = 0.0 + +[diffusion_params] +num_timesteps = 1000 +gaussian_loss_type = "mse" + +[train.main] +steps = 10000 +lr = 0.0001 +weight_decay = 0.0 +batch_size = 128 + +[train.T] +seed = 0 +normalization = "quantile" +num_nan_policy = "__none__" +cat_nan_policy = "__none__" +cat_min_frequency = "__none__" +cat_encoding = "__none__" +y_policy = "default" + +[sample] +num_samples = 3918 +batch_size = 128 +seed = 0 diff --git a/hyperparameter/n3/tabddpm/tabddpm-n3-20260504_184631/output/info.json b/hyperparameter/n3/tabddpm/tabddpm-n3-20260504_184631/output/info.json new file mode 100644 index 0000000000000000000000000000000000000000..45d216717b2847b5a467946053f10b0f41c3148b --- /dev/null +++ b/hyperparameter/n3/tabddpm/tabddpm-n3-20260504_184631/output/info.json @@ -0,0 +1,39 @@ +{ + "name": "benchmark_dataset", + "task_type": "multiclass", + "n_num_features": 11, + "n_cat_features": 0, + "train_size": 3918, + "num_col_idx": [ + 0, + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10 + ], + "cat_col_idx": [], + "target_col_idx": [ + 11 + ], + "column_names": [ + "fixed acidity", + "volatile acidity", + "citric acid", + "residual sugar", + "chlorides", + "free sulfur dioxide", + "total sulfur dioxide", + "density", + "pH", + "sulphates", + "alcohol", + "quality" + ], + "num_classes": 7 +} \ No newline at end of file diff --git a/hyperparameter/n3/tabddpm/tabddpm-n3-20260504_184631/output/loss.csv b/hyperparameter/n3/tabddpm/tabddpm-n3-20260504_184631/output/loss.csv new file mode 100644 index 0000000000000000000000000000000000000000..c42a61feb7747de41b4ae183717264e68ffc8198 --- /dev/null +++ b/hyperparameter/n3/tabddpm/tabddpm-n3-20260504_184631/output/loss.csv @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:66a1c56cd068137367455195270e6ed9d73cadcb8f942acb9d2111a20c6f69c4 +size 2500 diff --git a/hyperparameter/n3/tabddpm/tabddpm-n3-20260504_184631/output/model.pt b/hyperparameter/n3/tabddpm/tabddpm-n3-20260504_184631/output/model.pt new file mode 100644 index 0000000000000000000000000000000000000000..43f208567493419e49100cb27ff29b60b4da2885 --- /dev/null +++ b/hyperparameter/n3/tabddpm/tabddpm-n3-20260504_184631/output/model.pt @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:ecd47e89d225c7885445555e101b25b2a5761d46382f06f90697c143739f5532 +size 553046 diff --git a/hyperparameter/n3/tabddpm/tabddpm-n3-20260504_184631/output/model_ema.pt b/hyperparameter/n3/tabddpm/tabddpm-n3-20260504_184631/output/model_ema.pt new file mode 100644 index 0000000000000000000000000000000000000000..418d2e70e7e8a2e9326cba7905b7863d0fe8b9c5 --- /dev/null +++ b/hyperparameter/n3/tabddpm/tabddpm-n3-20260504_184631/output/model_ema.pt @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:ea393182b8780c0094f5b4864ce70d67e368971813e60b46d59a8be429219eb4 +size 553890 diff --git a/hyperparameter/n3/tabddpm/tabddpm-n3-20260504_184631/output/y_train.npy b/hyperparameter/n3/tabddpm/tabddpm-n3-20260504_184631/output/y_train.npy new file mode 100644 index 0000000000000000000000000000000000000000..cea6160110d6a403447199b2a250a6ea77ede7b8 --- /dev/null +++ b/hyperparameter/n3/tabddpm/tabddpm-n3-20260504_184631/output/y_train.npy @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:4d886843627c3d1c9944174e0049dcf604cfa5b0b8e0631b955a75ab0e30bc7d +size 31472 diff --git a/hyperparameter/n3/tabddpm/tabddpm-n3-20260504_184631/public_gate/normalized_schema_snapshot.json b/hyperparameter/n3/tabddpm/tabddpm-n3-20260504_184631/public_gate/normalized_schema_snapshot.json new file mode 100644 index 0000000000000000000000000000000000000000..c41fe304503de23190a02e6cbfafa35b3bf134d3 --- /dev/null +++ b/hyperparameter/n3/tabddpm/tabddpm-n3-20260504_184631/public_gate/normalized_schema_snapshot.json @@ -0,0 +1,259 @@ +{ + "dataset_id": "n3", + "target_column": "quality", + "task_type": "classification", + "columns": [ + { + "name": "fixed acidity", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 66, + "unique_ratio": 0.016845, + "example_values": [ + "7.1", + "8.5", + "6.4", + "6.8", + "7.6" + ] + } + }, + { + "name": "volatile acidity", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 121, + "unique_ratio": 0.030883, + "example_values": [ + "0.31", + "0.21", + "0.24", + "0.43", + "0.27" + ] + } + }, + { + "name": "citric acid", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 85, + "unique_ratio": 0.021695, + "example_values": [ + "0.17", + "0.41", + "0.31", + "0.25", + "0.3" + ] + } + }, + { + "name": "residual sugar", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 296, + "unique_ratio": 0.075549, + "example_values": [ + "1", + "4.3", + "2.8", + "13", + "12.9" + ] + } + }, + { + "name": "chlorides", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 147, + "unique_ratio": 0.037519, + "example_values": [ + "0.042", + "0.036", + "0.038", + "0.047", + "0.033" + ] + } + }, + { + "name": "free sulfur dioxide", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 120, + "unique_ratio": 0.030628, + "example_values": [ + "21", + "24", + "41", + "43", + "69" + ] + } + }, + { + "name": "total sulfur dioxide", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 244, + "unique_ratio": 0.062277, + "example_values": [ + "144", + "99", + "114", + "132", + "160" + ] + } + }, + { + "name": "density", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 839, + "unique_ratio": 0.21414, + "example_values": [ + "0.99304", + "0.9947", + "0.99155", + "0.98975", + "0.99705" + ] + } + }, + { + "name": "pH", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 100, + "unique_ratio": 0.025523, + "example_values": [ + "3.13", + "3.18", + "3.37", + "3.21", + "3.16" + ] + } + }, + { + "name": "sulphates", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 78, + "unique_ratio": 0.019908, + "example_values": [ + "0.4", + "0.53", + "0.66", + "0.47", + "0.5" + ] + } + }, + { + "name": "alcohol", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 97, + "unique_ratio": 0.024758, + "example_values": [ + "9.6", + "9.7", + "11.7", + "13.4", + "8.8" + ] + } + }, + { + "name": "quality", + "role": "target", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 7, + "unique_ratio": 0.001787, + "example_values": [ + "5", + "6", + "7", + "8", + "3" + ] + } + } + ] +} \ No newline at end of file diff --git a/hyperparameter/n3/tabddpm/tabddpm-n3-20260504_184631/public_gate/public_gate_report.json b/hyperparameter/n3/tabddpm/tabddpm-n3-20260504_184631/public_gate/public_gate_report.json new file mode 100644 index 0000000000000000000000000000000000000000..93b97319f739e39079d6c6549fd2020f8a6dac25 --- /dev/null +++ b/hyperparameter/n3/tabddpm/tabddpm-n3-20260504_184631/public_gate/public_gate_report.json @@ -0,0 +1,37 @@ +{ + "dataset_id": "n3", + "status": "pass", + "checks": [ + { + "check_id": "PG001_csv_parse_ok", + "status": "pass" + }, + { + "check_id": "PG002_split_header_consistent", + "status": "pass" + }, + { + "check_id": "PG003_profile_header_match", + "status": "pass" + }, + { + "check_id": "PG004_missing_token_normalized", + "status": "pass" + }, + { + "check_id": "PG005_semantic_type_validated", + "status": "pass" + }, + { + "check_id": "PG006_target_defined_and_valid", + "status": "pass" + } + ], + "target_column": "quality", + "task_type": "classification", + "input_splits": { + "train": "/data/jialinzhang/SynthesizePipeline-server/DatasetNew/n3/n3-train.csv", + "val": "/data/jialinzhang/SynthesizePipeline-server/DatasetNew/n3/n3-val.csv", + "test": "/data/jialinzhang/SynthesizePipeline-server/DatasetNew/n3/n3-test.csv" + } +} \ No newline at end of file diff --git a/hyperparameter/n3/tabddpm/tabddpm-n3-20260504_184631/public_gate/staged_input_manifest.json b/hyperparameter/n3/tabddpm/tabddpm-n3-20260504_184631/public_gate/staged_input_manifest.json new file mode 100644 index 0000000000000000000000000000000000000000..b045c70b945436b4af8cc7a6a58919b037565be2 --- /dev/null +++ b/hyperparameter/n3/tabddpm/tabddpm-n3-20260504_184631/public_gate/staged_input_manifest.json @@ -0,0 +1,264 @@ +{ + "dataset_id": "n3", + "target_column": "quality", + "task_type": "classification", + "train_csv": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/n3/tabddpm/tabddpm-n3-20260504_184631/staged/public/train.csv", + "val_csv": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/n3/tabddpm/tabddpm-n3-20260504_184631/staged/public/val.csv", + "test_csv": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/n3/tabddpm/tabddpm-n3-20260504_184631/staged/public/test.csv", + "features_json": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/n3/tabddpm/tabddpm-n3-20260504_184631/staged/public/staged_features.json", + "public_gate_report": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/n3/tabddpm/tabddpm-n3-20260504_184631/public_gate/public_gate_report.json", + "column_schema": [ + { + "name": "fixed acidity", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 66, + "unique_ratio": 0.016845, + "example_values": [ + "7.1", + "8.5", + "6.4", + "6.8", + "7.6" + ] + } + }, + { + "name": "volatile acidity", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 121, + "unique_ratio": 0.030883, + "example_values": [ + "0.31", + "0.21", + "0.24", + "0.43", + "0.27" + ] + } + }, + { + "name": "citric acid", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 85, + "unique_ratio": 0.021695, + "example_values": [ + "0.17", + "0.41", + "0.31", + "0.25", + "0.3" + ] + } + }, + { + "name": "residual sugar", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 296, + "unique_ratio": 0.075549, + "example_values": [ + "1", + "4.3", + "2.8", + "13", + "12.9" + ] + } + }, + { + "name": "chlorides", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 147, + "unique_ratio": 0.037519, + "example_values": [ + "0.042", + "0.036", + "0.038", + "0.047", + "0.033" + ] + } + }, + { + "name": "free sulfur dioxide", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 120, + "unique_ratio": 0.030628, + "example_values": [ + "21", + "24", + "41", + "43", + "69" + ] + } + }, + { + "name": "total sulfur dioxide", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 244, + "unique_ratio": 0.062277, + "example_values": [ + "144", + "99", + "114", + "132", + "160" + ] + } + }, + { + "name": "density", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 839, + "unique_ratio": 0.21414, + "example_values": [ + "0.99304", + "0.9947", + "0.99155", + "0.98975", + "0.99705" + ] + } + }, + { + "name": "pH", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 100, + "unique_ratio": 0.025523, + "example_values": [ + "3.13", + "3.18", + "3.37", + "3.21", + "3.16" + ] + } + }, + { + "name": "sulphates", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 78, + "unique_ratio": 0.019908, + "example_values": [ + "0.4", + "0.53", + "0.66", + "0.47", + "0.5" + ] + } + }, + { + "name": "alcohol", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 97, + "unique_ratio": 0.024758, + "example_values": [ + "9.6", + "9.7", + "11.7", + "13.4", + "8.8" + ] + } + }, + { + "name": "quality", + "role": "target", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 7, + "unique_ratio": 0.001787, + "example_values": [ + "5", + "6", + "7", + "8", + "3" + ] + } + } + ] +} \ No newline at end of file diff --git a/hyperparameter/n3/tabddpm/tabddpm-n3-20260504_184631/run_config.json b/hyperparameter/n3/tabddpm/tabddpm-n3-20260504_184631/run_config.json new file mode 100644 index 0000000000000000000000000000000000000000..22fe329d66badb533026ebae68a058ef1fb86486 --- /dev/null +++ b/hyperparameter/n3/tabddpm/tabddpm-n3-20260504_184631/run_config.json @@ -0,0 +1,45 @@ +{ + "schema_version": 1, + "recorded_at": "2026-05-04T18:46:31", + "dataset_id": "n3", + "model": "tabddpm", + "work_dir": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/n3/tabddpm/tabddpm-n3-20260504_184631", + "dataset_source_requested": "new", + "dataset_source_resolved": "new", + "cli_args": { + "model": "tabddpm", + "dataset": "n3", + "dataset_source": "new", + "train": true, + "generate": true, + "num_rows": 0, + "epochs": null, + "output_dir": null, + "model_dir": null, + "work_dir": null, + "resume": false, + "no_stats": false + }, + "resolved": { + "num_rows": 3918, + "model_path": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/n3/tabddpm/tabddpm-n3-20260504_184631", + "output_csv": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/n3/tabddpm/tabddpm-n3-20260504_184631/tabddpm-n3-3918-20260504_184713.csv" + }, + "input_artifacts": { + "public_gate_report": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/n3/tabddpm/tabddpm-n3-20260504_184631/public_gate/public_gate_report.json", + "public_manifest": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/n3/tabddpm/tabddpm-n3-20260504_184631/public_gate/staged_input_manifest.json", + "model_manifest": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/n3/tabddpm/tabddpm-n3-20260504_184631/staged/tabddpm/model_input_manifest.json", + "train_csv": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/n3/tabddpm/tabddpm-n3-20260504_184631/staged/public/train.csv", + "features_json": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/n3/tabddpm/tabddpm-n3-20260504_184631/staged/public/staged_features.json", + "target_column": "quality", + "task_type": "classification" + }, + "env_overrides": { + "BENCHMARK_TABDDPM_GPUS": "device=3", + "TABDDPM_NUM_TIMESTEPS": "1000", + "TABDDPM_SAMPLE_BATCH_SIZE": "128", + "TABDDPM_STEPS_PER_EPOCH": "200", + "TABDDPM_TRAIN_BATCH_SIZE": "128", + "TABDDPM_TRAIN_LR": "0.0001" + } +} \ No newline at end of file diff --git a/hyperparameter/n3/tabddpm/tabddpm-n3-20260504_184631/runtime_result.json b/hyperparameter/n3/tabddpm/tabddpm-n3-20260504_184631/runtime_result.json new file mode 100644 index 0000000000000000000000000000000000000000..ad9876cc0c60fc33c83088540a4c112c678f7382 --- /dev/null +++ b/hyperparameter/n3/tabddpm/tabddpm-n3-20260504_184631/runtime_result.json @@ -0,0 +1,27 @@ +{ + "dataset_id": "n3", + "model": "tabddpm", + "run_id": "tabddpm-n3-20260504_184631", + "public_gate_status": "pass", + "adapter_ready_status": "pass", + "train_status": "success", + "generate_status": "success", + "reason_code": null, + "reason_detail": null, + "artifacts": { + "synthetic_csv": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/n3/tabddpm/tabddpm-n3-20260504_184631/tabddpm-n3-3918-20260504_184713.csv", + "model_path": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/n3/tabddpm/tabddpm-n3-20260504_184631" + }, + "timings": { + "train": { + "started_at": "2026-05-04T18:46:31", + "ended_at": "2026-05-04T18:47:13", + "duration_sec": 42.307 + }, + "generate": { + "started_at": "2026-05-04T18:47:13", + "ended_at": "2026-05-04T18:47:56", + "duration_sec": 43.137 + } + } +} \ No newline at end of file diff --git a/hyperparameter/n3/tabddpm/tabddpm-n3-20260504_184631/staged/public/staged_features.json b/hyperparameter/n3/tabddpm/tabddpm-n3-20260504_184631/staged/public/staged_features.json new file mode 100644 index 0000000000000000000000000000000000000000..08fe4d766d091d2f2ddba724a16b9509cbe4c390 --- /dev/null +++ b/hyperparameter/n3/tabddpm/tabddpm-n3-20260504_184631/staged/public/staged_features.json @@ -0,0 +1,62 @@ +[ + { + "feature_name": "fixed acidity", + "data_type": "continuous", + "is_target": false + }, + { + "feature_name": "volatile acidity", + "data_type": "continuous", + "is_target": false + }, + { + "feature_name": "citric acid", + "data_type": "continuous", + "is_target": false + }, + { + "feature_name": "residual sugar", + "data_type": "continuous", + "is_target": false + }, + { + "feature_name": "chlorides", + "data_type": "continuous", + "is_target": false + }, + { + "feature_name": "free sulfur dioxide", + "data_type": "continuous", + "is_target": false + }, + { + "feature_name": "total sulfur dioxide", + "data_type": "continuous", + "is_target": false + }, + { + "feature_name": "density", + "data_type": "continuous", + "is_target": false + }, + { + "feature_name": "pH", + "data_type": "continuous", + "is_target": false + }, + { + "feature_name": "sulphates", + "data_type": "continuous", + "is_target": false + }, + { + "feature_name": "alcohol", + "data_type": "continuous", + "is_target": false + }, + { + "feature_name": "quality", + "data_type": "continuous", + "is_target": true + } +] \ No newline at end of file diff --git a/hyperparameter/n3/tabddpm/tabddpm-n3-20260504_184631/staged/public/test.csv b/hyperparameter/n3/tabddpm/tabddpm-n3-20260504_184631/staged/public/test.csv new file mode 100644 index 0000000000000000000000000000000000000000..db5cd50d3746410ea470625fa2ba2c8e9775cc0d --- /dev/null +++ b/hyperparameter/n3/tabddpm/tabddpm-n3-20260504_184631/staged/public/test.csv @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:19e107152a94432e2a37ff045c00cfe35e1be30208b1553080d7dd0ede256d3b +size 28944 diff --git a/hyperparameter/n3/tabddpm/tabddpm-n3-20260504_184631/staged/public/train.csv b/hyperparameter/n3/tabddpm/tabddpm-n3-20260504_184631/staged/public/train.csv new file mode 100644 index 0000000000000000000000000000000000000000..87ca26726fe82ccbaa397919305b043c17eb374e --- /dev/null +++ b/hyperparameter/n3/tabddpm/tabddpm-n3-20260504_184631/staged/public/train.csv @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:7813c8cca73ba4bfc6559215257b341c21e459980ad17ae6ddc809306bc9a0b9 +size 229945 diff --git a/hyperparameter/n3/tabddpm/tabddpm-n3-20260504_184631/staged/public/val.csv b/hyperparameter/n3/tabddpm/tabddpm-n3-20260504_184631/staged/public/val.csv new file mode 100644 index 0000000000000000000000000000000000000000..6acf84c76c47093b513c46d5503972a2dff275c0 --- /dev/null +++ b/hyperparameter/n3/tabddpm/tabddpm-n3-20260504_184631/staged/public/val.csv @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:cf5979d9675567d9d6642640c9b84fc6c49e492604144723c30f50516c05cee6 +size 28791 diff --git a/hyperparameter/n3/tabddpm/tabddpm-n3-20260504_184631/staged/tabddpm/adapter_report.json b/hyperparameter/n3/tabddpm/tabddpm-n3-20260504_184631/staged/tabddpm/adapter_report.json new file mode 100644 index 0000000000000000000000000000000000000000..3a5fa5d2b72f00e978c96f8029f6e195fec3bcd4 --- /dev/null +++ b/hyperparameter/n3/tabddpm/tabddpm-n3-20260504_184631/staged/tabddpm/adapter_report.json @@ -0,0 +1,7 @@ +{ + "adapter_ready_status": "pass", + "adapter_fail_reason_code": null, + "adapter_fail_detail": null, + "adapter_transforms_applied": [], + "model_input_manifest": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/n3/tabddpm/tabddpm-n3-20260504_184631/staged/tabddpm/model_input_manifest.json" +} \ No newline at end of file diff --git a/hyperparameter/n3/tabddpm/tabddpm-n3-20260504_184631/staged/tabddpm/adapter_transforms_applied.json b/hyperparameter/n3/tabddpm/tabddpm-n3-20260504_184631/staged/tabddpm/adapter_transforms_applied.json new file mode 100644 index 0000000000000000000000000000000000000000..0637a088a01e8ddab3bf3fa98dbe804cbde1a0dc --- /dev/null +++ b/hyperparameter/n3/tabddpm/tabddpm-n3-20260504_184631/staged/tabddpm/adapter_transforms_applied.json @@ -0,0 +1 @@ +[] \ No newline at end of file diff --git a/hyperparameter/n3/tabddpm/tabddpm-n3-20260504_184631/staged/tabddpm/model_input_manifest.json b/hyperparameter/n3/tabddpm/tabddpm-n3-20260504_184631/staged/tabddpm/model_input_manifest.json new file mode 100644 index 0000000000000000000000000000000000000000..5e801b7249ee40c702769fb596334bbdc74c95a9 --- /dev/null +++ b/hyperparameter/n3/tabddpm/tabddpm-n3-20260504_184631/staged/tabddpm/model_input_manifest.json @@ -0,0 +1,266 @@ +{ + "dataset_id": "n3", + "model": "tabddpm", + "target_column": "quality", + "task_type": "classification", + "column_schema": [ + { + "name": "fixed acidity", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 66, + "unique_ratio": 0.016845, + "example_values": [ + "7.1", + "8.5", + "6.4", + "6.8", + "7.6" + ] + } + }, + { + "name": "volatile acidity", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 121, + "unique_ratio": 0.030883, + "example_values": [ + "0.31", + "0.21", + "0.24", + "0.43", + "0.27" + ] + } + }, + { + "name": "citric acid", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 85, + "unique_ratio": 0.021695, + "example_values": [ + "0.17", + "0.41", + "0.31", + "0.25", + "0.3" + ] + } + }, + { + "name": "residual sugar", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 296, + "unique_ratio": 0.075549, + "example_values": [ + "1", + "4.3", + "2.8", + "13", + "12.9" + ] + } + }, + { + "name": "chlorides", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 147, + "unique_ratio": 0.037519, + "example_values": [ + "0.042", + "0.036", + "0.038", + "0.047", + "0.033" + ] + } + }, + { + "name": "free sulfur dioxide", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 120, + "unique_ratio": 0.030628, + "example_values": [ + "21", + "24", + "41", + "43", + "69" + ] + } + }, + { + "name": "total sulfur dioxide", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 244, + "unique_ratio": 0.062277, + "example_values": [ + "144", + "99", + "114", + "132", + "160" + ] + } + }, + { + "name": "density", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 839, + "unique_ratio": 0.21414, + "example_values": [ + "0.99304", + "0.9947", + "0.99155", + "0.98975", + "0.99705" + ] + } + }, + { + "name": "pH", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 100, + "unique_ratio": 0.025523, + "example_values": [ + "3.13", + "3.18", + "3.37", + "3.21", + "3.16" + ] + } + }, + { + "name": "sulphates", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 78, + "unique_ratio": 0.019908, + "example_values": [ + "0.4", + "0.53", + "0.66", + "0.47", + "0.5" + ] + } + }, + { + "name": "alcohol", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 97, + "unique_ratio": 0.024758, + "example_values": [ + "9.6", + "9.7", + "11.7", + "13.4", + "8.8" + ] + } + }, + { + "name": "quality", + "role": "target", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 7, + "unique_ratio": 0.001787, + "example_values": [ + "5", + "6", + "7", + "8", + "3" + ] + } + } + ], + "public_manifest": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/n3/tabddpm/tabddpm-n3-20260504_184631/public_gate/staged_input_manifest.json", + "train_csv": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/n3/tabddpm/tabddpm-n3-20260504_184631/staged/public/train.csv", + "val_csv": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/n3/tabddpm/tabddpm-n3-20260504_184631/staged/public/val.csv", + "test_csv": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/n3/tabddpm/tabddpm-n3-20260504_184631/staged/public/test.csv", + "features_json": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/n3/tabddpm/tabddpm-n3-20260504_184631/staged/public/staged_features.json", + "public_gate_report": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/n3/tabddpm/tabddpm-n3-20260504_184631/public_gate/public_gate_report.json" +} \ No newline at end of file diff --git a/hyperparameter/n3/tabddpm/tabddpm-n3-20260504_184631/tabddpm-n3-3918-20260504_184713.csv b/hyperparameter/n3/tabddpm/tabddpm-n3-20260504_184631/tabddpm-n3-3918-20260504_184713.csv new file mode 100644 index 0000000000000000000000000000000000000000..7d37ad7c2a899238eb2d9dc05bcd00e382123961 --- /dev/null +++ b/hyperparameter/n3/tabddpm/tabddpm-n3-20260504_184631/tabddpm-n3-3918-20260504_184713.csv @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:8dec6b5138fe85288e1f0b1093ba53b45849a31e11a535a2116f7070129fca6a +size 770496 diff --git a/hyperparameter/n3/tabddpm/tabddpm-n3-20260504_184631/train_20260504_184631.log b/hyperparameter/n3/tabddpm/tabddpm-n3-20260504_184631/train_20260504_184631.log new file mode 100644 index 0000000000000000000000000000000000000000..1393d16faae9e60f0a8c234135e029e70b8b3c37 --- /dev/null +++ b/hyperparameter/n3/tabddpm/tabddpm-n3-20260504_184631/train_20260504_184631.log @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:939ef00007bc6a9126a8313ef3d0dfb9322182e66867bbf806e9e4b8ee7f93f0 +size 1607 diff --git a/hyperparameter/n3/tabddpm/tabddpm-n3-20260504_184809/_tabddpm_sample_r0.py b/hyperparameter/n3/tabddpm/tabddpm-n3-20260504_184809/_tabddpm_sample_r0.py new file mode 100644 index 0000000000000000000000000000000000000000..773c85d52c6bac7073f7b84b780307b4448faa21 --- /dev/null +++ b/hyperparameter/n3/tabddpm/tabddpm-n3-20260504_184809/_tabddpm_sample_r0.py @@ -0,0 +1,66 @@ +import os, sys, subprocess, json +import numpy as np +import pandas as pd + +tabddpm_root = "/workspace/tabddpm/code" +assert os.path.isdir(tabddpm_root), f"TabDDPM source not mounted: {tabddpm_root}" +env = os.environ.copy() +env["PYTHONPATH"] = tabddpm_root + (os.pathsep + env.get("PYTHONPATH", "")) + +# Reuse the compat wrapper (patches collections.Sequence for skorch) +wrapper = os.path.join(tabddpm_root, "_compat_run.py") +if not os.path.exists(wrapper): + with open(wrapper, "w") as f: + f.write( + "import collections, collections.abc\n" + "for _a in ('Sequence','MutableSequence','MutableMapping','Mapping'," + "'MutableSet','Set','Callable','Iterable','Iterator'):\n" + " if not hasattr(collections, _a): setattr(collections, _a, getattr(collections.abc, _a, None))\n" + "import sys, runpy\n" + "sys.argv = sys.argv[1:]\n" + "runpy.run_path(sys.argv[0], run_name='__main__')\n" + ) + +print(f"[TabDDPM] Sampling 3918 rows") +ret = subprocess.run( + [sys.executable, wrapper, "scripts/pipeline.py", + "--config", "/work/output-Benchmark-trainonly-v1/n3/tabddpm/tabddpm-n3-20260504_184809/config_sample_20260504_184906_r0.toml", + "--sample"], + cwd=tabddpm_root, + env=env +) +if ret.returncode != 0: + sys.exit(ret.returncode) + +# 将 .npy 输出转为 CSV(npy 在 TabDDPM 的 parent_dir,即 npy_dir) +info_path = "/work/output-Benchmark-trainonly-v1/n3/tabddpm/tabddpm-n3-20260504_184809/data/info.json" +with open(info_path) as f: + info = json.load(f) + +output_dir = "/work/output-Benchmark-trainonly-v1/n3/tabddpm/tabddpm-n3-20260504_184809/output" +col_names = info.get("column_names", []) + +parts = [] +x_num_path = os.path.join(output_dir, "X_num_train.npy") +x_cat_path = os.path.join(output_dir, "X_cat_train.npy") +y_path = os.path.join(output_dir, "y_train.npy") + +if os.path.exists(x_num_path): + parts.append(np.load(x_num_path, allow_pickle=True)) +if os.path.exists(x_cat_path): + parts.append(np.load(x_cat_path, allow_pickle=True).astype(float)) +if os.path.exists(y_path): + y = np.load(y_path, allow_pickle=True) + parts.append(y.reshape(-1, 1) if y.ndim == 1 else y) + +if parts: + combined = np.concatenate(parts, axis=1) + if col_names and len(col_names) == combined.shape[1]: + df = pd.DataFrame(combined, columns=col_names) + else: + df = pd.DataFrame(combined) + df.to_csv("/work/output-Benchmark-trainonly-v1/n3/tabddpm/tabddpm-n3-20260504_184809/tabddpm-n3-3918-20260504_184906.csv", index=False) + print(f"[TabDDPM] Saved {len(df)} rows -> /work/output-Benchmark-trainonly-v1/n3/tabddpm/tabddpm-n3-20260504_184809/tabddpm-n3-3918-20260504_184906.csv") +else: + print("[TabDDPM] WARNING: No output .npy files found") + sys.exit(1) diff --git a/hyperparameter/n3/tabddpm/tabddpm-n3-20260504_184809/_tabddpm_train.py b/hyperparameter/n3/tabddpm/tabddpm-n3-20260504_184809/_tabddpm_train.py new file mode 100644 index 0000000000000000000000000000000000000000..0f21e12f7103c68aaf6fde4b2afab3f3717aad4b --- /dev/null +++ b/hyperparameter/n3/tabddpm/tabddpm-n3-20260504_184809/_tabddpm_train.py @@ -0,0 +1,32 @@ +import os, sys, subprocess + +tabddpm_root = "/workspace/tabddpm/code" +assert os.path.isdir(tabddpm_root), f"TabDDPM source not mounted: {tabddpm_root}" +env = os.environ.copy() +env["PYTHONPATH"] = tabddpm_root + (os.pathsep + env.get("PYTHONPATH", "")) + +# Write a wrapper that patches collections.Sequence (removed in Python 3.10+) +# before running pipeline.py - needed because skorch uses old API +wrapper = os.path.join(tabddpm_root, "_compat_run.py") +with open(wrapper, "w") as f: + f.write( + "import collections, collections.abc\n" + "for _a in ('Sequence','MutableSequence','MutableMapping','Mapping'," + "'MutableSet','Set','Callable','Iterable','Iterator'):\n" + " if not hasattr(collections, _a): setattr(collections, _a, getattr(collections.abc, _a, None))\n" + "import sys, runpy\n" + "sys.argv = sys.argv[1:]\n" + "runpy.run_path(sys.argv[0], run_name='__main__')\n" + ) + +print(f"[TabDDPM] Training, config=/work/output-Benchmark-trainonly-v1/n3/tabddpm/tabddpm-n3-20260504_184809/config.toml") +ret = subprocess.run( + [sys.executable, wrapper, "scripts/pipeline.py", + "--config", "/work/output-Benchmark-trainonly-v1/n3/tabddpm/tabddpm-n3-20260504_184809/config.toml", + "--train"], + cwd=tabddpm_root, + env=env +) +if ret.returncode != 0: + sys.exit(ret.returncode) +print("[TabDDPM] Training complete") diff --git a/hyperparameter/n3/tabddpm/tabddpm-n3-20260504_184809/config.toml b/hyperparameter/n3/tabddpm/tabddpm-n3-20260504_184809/config.toml new file mode 100644 index 0000000000000000000000000000000000000000..c0d5d3cd28b7ac59bea0ad490f1e28c3f84aa8f7 --- /dev/null +++ b/hyperparameter/n3/tabddpm/tabddpm-n3-20260504_184809/config.toml @@ -0,0 +1,39 @@ +seed = 0 +parent_dir = "/work/output-Benchmark-trainonly-v1/n3/tabddpm/tabddpm-n3-20260504_184809/output" +real_data_path = "/work/output-Benchmark-trainonly-v1/n3/tabddpm/tabddpm-n3-20260504_184809/data" +model_type = "mlp" +num_numerical_features = 11 +device = "cuda:0" + +[model_params] +d_in = 11 +num_classes = 7 +is_y_cond = true + +[model_params.rtdl_params] +d_layers = [256, 256] +dropout = 0.0 + +[diffusion_params] +num_timesteps = 1000 +gaussian_loss_type = "mse" + +[train.main] +steps = 15000 +lr = 0.0001 +weight_decay = 0.0 +batch_size = 64 + +[train.T] +seed = 0 +normalization = "quantile" +num_nan_policy = "__none__" +cat_nan_policy = "__none__" +cat_min_frequency = "__none__" +cat_encoding = "__none__" +y_policy = "default" + +[sample] +num_samples = 1000 +batch_size = 64 +seed = 0 diff --git a/hyperparameter/n3/tabddpm/tabddpm-n3-20260504_184809/config_sample_20260504_184906_r0.toml b/hyperparameter/n3/tabddpm/tabddpm-n3-20260504_184809/config_sample_20260504_184906_r0.toml new file mode 100644 index 0000000000000000000000000000000000000000..dfb5468a6bdeb8cbd90eb128d417f4b4782c4993 --- /dev/null +++ b/hyperparameter/n3/tabddpm/tabddpm-n3-20260504_184809/config_sample_20260504_184906_r0.toml @@ -0,0 +1,39 @@ +seed = 0 +parent_dir = "/work/output-Benchmark-trainonly-v1/n3/tabddpm/tabddpm-n3-20260504_184809/output" +real_data_path = "/work/output-Benchmark-trainonly-v1/n3/tabddpm/tabddpm-n3-20260504_184809/data" +model_type = "mlp" +num_numerical_features = 11 +device = "cuda:0" + +[model_params] +d_in = 11 +num_classes = 7 +is_y_cond = true + +[model_params.rtdl_params] +d_layers = [256, 256] +dropout = 0.0 + +[diffusion_params] +num_timesteps = 1000 +gaussian_loss_type = "mse" + +[train.main] +steps = 15000 +lr = 0.0001 +weight_decay = 0.0 +batch_size = 64 + +[train.T] +seed = 0 +normalization = "quantile" +num_nan_policy = "__none__" +cat_nan_policy = "__none__" +cat_min_frequency = "__none__" +cat_encoding = "__none__" +y_policy = "default" + +[sample] +num_samples = 3918 +batch_size = 64 +seed = 0 diff --git a/hyperparameter/n3/tabddpm/tabddpm-n3-20260504_184809/data/X_num_train.npy b/hyperparameter/n3/tabddpm/tabddpm-n3-20260504_184809/data/X_num_train.npy new file mode 100644 index 0000000000000000000000000000000000000000..94beb8413ef55592710518365965f4cb503523ee --- /dev/null +++ b/hyperparameter/n3/tabddpm/tabddpm-n3-20260504_184809/data/X_num_train.npy @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:093d8f405d764277d5a007953f25ab6466f0857f71f0d8f3c437463fb5bf240a +size 172520 diff --git a/hyperparameter/n3/tabddpm/tabddpm-n3-20260504_184809/data/info.json b/hyperparameter/n3/tabddpm/tabddpm-n3-20260504_184809/data/info.json new file mode 100644 index 0000000000000000000000000000000000000000..45d216717b2847b5a467946053f10b0f41c3148b --- /dev/null +++ b/hyperparameter/n3/tabddpm/tabddpm-n3-20260504_184809/data/info.json @@ -0,0 +1,39 @@ +{ + "name": "benchmark_dataset", + "task_type": "multiclass", + "n_num_features": 11, + "n_cat_features": 0, + "train_size": 3918, + "num_col_idx": [ + 0, + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10 + ], + "cat_col_idx": [], + "target_col_idx": [ + 11 + ], + "column_names": [ + "fixed acidity", + "volatile acidity", + "citric acid", + "residual sugar", + "chlorides", + "free sulfur dioxide", + "total sulfur dioxide", + "density", + "pH", + "sulphates", + "alcohol", + "quality" + ], + "num_classes": 7 +} \ No newline at end of file diff --git a/hyperparameter/n3/tabddpm/tabddpm-n3-20260504_184809/data/y_train.npy b/hyperparameter/n3/tabddpm/tabddpm-n3-20260504_184809/data/y_train.npy new file mode 100644 index 0000000000000000000000000000000000000000..1f737a58cd26592130c3604aaa90044a451eb576 --- /dev/null +++ b/hyperparameter/n3/tabddpm/tabddpm-n3-20260504_184809/data/y_train.npy @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:85ed37c52f0ea54dfd3a476dcfafff02d61e92783748e5ee9aadfad20578bcb1 +size 31472 diff --git a/hyperparameter/n3/tabddpm/tabddpm-n3-20260504_184809/gen_20260504_184906_r0.log b/hyperparameter/n3/tabddpm/tabddpm-n3-20260504_184809/gen_20260504_184906_r0.log new file mode 100644 index 0000000000000000000000000000000000000000..7c17c34b51563fe343aa52d67cd65e0ea7b67fcd --- /dev/null +++ b/hyperparameter/n3/tabddpm/tabddpm-n3-20260504_184809/gen_20260504_184906_r0.log @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:feb2706a5605a2dbb3ca542bb4a5af95277aac1bda9f5d54901ed4f54b09e81a +size 1302503 diff --git a/hyperparameter/n3/tabddpm/tabddpm-n3-20260504_184809/input_snapshot.json b/hyperparameter/n3/tabddpm/tabddpm-n3-20260504_184809/input_snapshot.json new file mode 100644 index 0000000000000000000000000000000000000000..34d3cbb5018ded64e57cf3350f6ec58dd908f565 --- /dev/null +++ b/hyperparameter/n3/tabddpm/tabddpm-n3-20260504_184809/input_snapshot.json @@ -0,0 +1,36 @@ +{ + "dataset_id": "n3", + "model": "tabddpm", + "inputs": { + "train_csv": { + "path": "/data/jialinzhang/SynthesizePipeline-server/DatasetNew/n3/n3-train.csv", + "exists": true, + "size": 211519, + "sha256": "2160a06db2fea02adb0ebb79d8d853bd2544580be301e71f6e8deeb1489a9009" + }, + "val_csv": { + "path": "/data/jialinzhang/SynthesizePipeline-server/DatasetNew/n3/n3-val.csv", + "exists": true, + "size": 26499, + "sha256": "d5ccfee07dfa9e7bdee5bb87642b43828e09f74c6cc0266a3d19d9feaa83106e" + }, + "test_csv": { + "path": "/data/jialinzhang/SynthesizePipeline-server/DatasetNew/n3/n3-test.csv", + "exists": true, + "size": 26676, + "sha256": "6f83aacb0d1747b95e287352a7fff5d9d65a1c127b773852346c68485c4ede47" + }, + "profile_json": { + "path": "/data/jialinzhang/SynthesizePipeline-server/DatasetNew/artifacts/data_core/tabular/n3/n3-dataset_profile.json", + "exists": true, + "size": 5235, + "sha256": "23d2e5904a2ca90cbf8d6e3c75887681721e9b90cc705c31a680c11513d0c46f" + }, + "contract_json": { + "path": "/data/jialinzhang/SynthesizePipeline-server/DatasetNew/artifacts/data_core/tabular/n3/n3-dataset_contract_v1.json", + "exists": true, + "size": 6281, + "sha256": "c0cc56f5fe28e1b65927255c6e3c2b0e9479862c2ec6f2fea1664da36c9a3a09" + } + } +} \ No newline at end of file diff --git a/hyperparameter/n3/tabddpm/tabddpm-n3-20260504_184809/output/X_num_train.npy b/hyperparameter/n3/tabddpm/tabddpm-n3-20260504_184809/output/X_num_train.npy new file mode 100644 index 0000000000000000000000000000000000000000..94fd96b67e24b61e13699c666d6ad06a56331062 --- /dev/null +++ b/hyperparameter/n3/tabddpm/tabddpm-n3-20260504_184809/output/X_num_train.npy @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:dcd608c4cd44a927aeaa66485b0354d65592e762a803990071d965fd3247bfd9 +size 344912 diff --git a/hyperparameter/n3/tabddpm/tabddpm-n3-20260504_184809/output/X_num_unnorm.npy b/hyperparameter/n3/tabddpm/tabddpm-n3-20260504_184809/output/X_num_unnorm.npy new file mode 100644 index 0000000000000000000000000000000000000000..9faf71fcff9fc6b24fac093308b1b318cf32de4f --- /dev/null +++ b/hyperparameter/n3/tabddpm/tabddpm-n3-20260504_184809/output/X_num_unnorm.npy @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:407413749b517dd6f28bfb383b522243bf602218a20d46ce259042084dd3f218 +size 344912 diff --git a/hyperparameter/n3/tabddpm/tabddpm-n3-20260504_184809/output/config.toml b/hyperparameter/n3/tabddpm/tabddpm-n3-20260504_184809/output/config.toml new file mode 100644 index 0000000000000000000000000000000000000000..dfb5468a6bdeb8cbd90eb128d417f4b4782c4993 --- /dev/null +++ b/hyperparameter/n3/tabddpm/tabddpm-n3-20260504_184809/output/config.toml @@ -0,0 +1,39 @@ +seed = 0 +parent_dir = "/work/output-Benchmark-trainonly-v1/n3/tabddpm/tabddpm-n3-20260504_184809/output" +real_data_path = "/work/output-Benchmark-trainonly-v1/n3/tabddpm/tabddpm-n3-20260504_184809/data" +model_type = "mlp" +num_numerical_features = 11 +device = "cuda:0" + +[model_params] +d_in = 11 +num_classes = 7 +is_y_cond = true + +[model_params.rtdl_params] +d_layers = [256, 256] +dropout = 0.0 + +[diffusion_params] +num_timesteps = 1000 +gaussian_loss_type = "mse" + +[train.main] +steps = 15000 +lr = 0.0001 +weight_decay = 0.0 +batch_size = 64 + +[train.T] +seed = 0 +normalization = "quantile" +num_nan_policy = "__none__" +cat_nan_policy = "__none__" +cat_min_frequency = "__none__" +cat_encoding = "__none__" +y_policy = "default" + +[sample] +num_samples = 3918 +batch_size = 64 +seed = 0 diff --git a/hyperparameter/n3/tabddpm/tabddpm-n3-20260504_184809/output/info.json b/hyperparameter/n3/tabddpm/tabddpm-n3-20260504_184809/output/info.json new file mode 100644 index 0000000000000000000000000000000000000000..45d216717b2847b5a467946053f10b0f41c3148b --- /dev/null +++ b/hyperparameter/n3/tabddpm/tabddpm-n3-20260504_184809/output/info.json @@ -0,0 +1,39 @@ +{ + "name": "benchmark_dataset", + "task_type": "multiclass", + "n_num_features": 11, + "n_cat_features": 0, + "train_size": 3918, + "num_col_idx": [ + 0, + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10 + ], + "cat_col_idx": [], + "target_col_idx": [ + 11 + ], + "column_names": [ + "fixed acidity", + "volatile acidity", + "citric acid", + "residual sugar", + "chlorides", + "free sulfur dioxide", + "total sulfur dioxide", + "density", + "pH", + "sulphates", + "alcohol", + "quality" + ], + "num_classes": 7 +} \ No newline at end of file diff --git a/hyperparameter/n3/tabddpm/tabddpm-n3-20260504_184809/output/loss.csv b/hyperparameter/n3/tabddpm/tabddpm-n3-20260504_184809/output/loss.csv new file mode 100644 index 0000000000000000000000000000000000000000..91b3ddfe27db69ca75e9c17e41aae9f838162dda --- /dev/null +++ b/hyperparameter/n3/tabddpm/tabddpm-n3-20260504_184809/output/loss.csv @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:8ff934cc2290079faed8e46c632249d977592d8a487c4c6ca38bf14c258d9698 +size 3774 diff --git a/hyperparameter/n3/tabddpm/tabddpm-n3-20260504_184809/output/model.pt b/hyperparameter/n3/tabddpm/tabddpm-n3-20260504_184809/output/model.pt new file mode 100644 index 0000000000000000000000000000000000000000..674cb4a0aa7b66050690dbc60af9e1677db9aa71 --- /dev/null +++ b/hyperparameter/n3/tabddpm/tabddpm-n3-20260504_184809/output/model.pt @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:39441f6bb2f66f6a539c65e8328fff03399f32d5b5438e2fa73d30a4b06c56bd +size 553046 diff --git a/hyperparameter/n3/tabddpm/tabddpm-n3-20260504_184809/output/model_ema.pt b/hyperparameter/n3/tabddpm/tabddpm-n3-20260504_184809/output/model_ema.pt new file mode 100644 index 0000000000000000000000000000000000000000..bd6341f8695982b9507c4554eae0edb0f4a9b9a0 --- /dev/null +++ b/hyperparameter/n3/tabddpm/tabddpm-n3-20260504_184809/output/model_ema.pt @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:fab27f0f02cc44b9d4e83cb68402afe3700438bc00a4b835dc6d624c25efb833 +size 553890 diff --git a/hyperparameter/n3/tabddpm/tabddpm-n3-20260504_184809/output/y_train.npy b/hyperparameter/n3/tabddpm/tabddpm-n3-20260504_184809/output/y_train.npy new file mode 100644 index 0000000000000000000000000000000000000000..cea6160110d6a403447199b2a250a6ea77ede7b8 --- /dev/null +++ b/hyperparameter/n3/tabddpm/tabddpm-n3-20260504_184809/output/y_train.npy @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:4d886843627c3d1c9944174e0049dcf604cfa5b0b8e0631b955a75ab0e30bc7d +size 31472 diff --git a/hyperparameter/n3/tabddpm/tabddpm-n3-20260504_184809/public_gate/normalized_schema_snapshot.json b/hyperparameter/n3/tabddpm/tabddpm-n3-20260504_184809/public_gate/normalized_schema_snapshot.json new file mode 100644 index 0000000000000000000000000000000000000000..c41fe304503de23190a02e6cbfafa35b3bf134d3 --- /dev/null +++ b/hyperparameter/n3/tabddpm/tabddpm-n3-20260504_184809/public_gate/normalized_schema_snapshot.json @@ -0,0 +1,259 @@ +{ + "dataset_id": "n3", + "target_column": "quality", + "task_type": "classification", + "columns": [ + { + "name": "fixed acidity", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 66, + "unique_ratio": 0.016845, + "example_values": [ + "7.1", + "8.5", + "6.4", + "6.8", + "7.6" + ] + } + }, + { + "name": "volatile acidity", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 121, + "unique_ratio": 0.030883, + "example_values": [ + "0.31", + "0.21", + "0.24", + "0.43", + "0.27" + ] + } + }, + { + "name": "citric acid", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 85, + "unique_ratio": 0.021695, + "example_values": [ + "0.17", + "0.41", + "0.31", + "0.25", + "0.3" + ] + } + }, + { + "name": "residual sugar", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 296, + "unique_ratio": 0.075549, + "example_values": [ + "1", + "4.3", + "2.8", + "13", + "12.9" + ] + } + }, + { + "name": "chlorides", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 147, + "unique_ratio": 0.037519, + "example_values": [ + "0.042", + "0.036", + "0.038", + "0.047", + "0.033" + ] + } + }, + { + "name": "free sulfur dioxide", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 120, + "unique_ratio": 0.030628, + "example_values": [ + "21", + "24", + "41", + "43", + "69" + ] + } + }, + { + "name": "total sulfur dioxide", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 244, + "unique_ratio": 0.062277, + "example_values": [ + "144", + "99", + "114", + "132", + "160" + ] + } + }, + { + "name": "density", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 839, + "unique_ratio": 0.21414, + "example_values": [ + "0.99304", + "0.9947", + "0.99155", + "0.98975", + "0.99705" + ] + } + }, + { + "name": "pH", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 100, + "unique_ratio": 0.025523, + "example_values": [ + "3.13", + "3.18", + "3.37", + "3.21", + "3.16" + ] + } + }, + { + "name": "sulphates", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 78, + "unique_ratio": 0.019908, + "example_values": [ + "0.4", + "0.53", + "0.66", + "0.47", + "0.5" + ] + } + }, + { + "name": "alcohol", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 97, + "unique_ratio": 0.024758, + "example_values": [ + "9.6", + "9.7", + "11.7", + "13.4", + "8.8" + ] + } + }, + { + "name": "quality", + "role": "target", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 7, + "unique_ratio": 0.001787, + "example_values": [ + "5", + "6", + "7", + "8", + "3" + ] + } + } + ] +} \ No newline at end of file diff --git a/hyperparameter/n3/tabddpm/tabddpm-n3-20260504_184809/public_gate/public_gate_report.json b/hyperparameter/n3/tabddpm/tabddpm-n3-20260504_184809/public_gate/public_gate_report.json new file mode 100644 index 0000000000000000000000000000000000000000..93b97319f739e39079d6c6549fd2020f8a6dac25 --- /dev/null +++ b/hyperparameter/n3/tabddpm/tabddpm-n3-20260504_184809/public_gate/public_gate_report.json @@ -0,0 +1,37 @@ +{ + "dataset_id": "n3", + "status": "pass", + "checks": [ + { + "check_id": "PG001_csv_parse_ok", + "status": "pass" + }, + { + "check_id": "PG002_split_header_consistent", + "status": "pass" + }, + { + "check_id": "PG003_profile_header_match", + "status": "pass" + }, + { + "check_id": "PG004_missing_token_normalized", + "status": "pass" + }, + { + "check_id": "PG005_semantic_type_validated", + "status": "pass" + }, + { + "check_id": "PG006_target_defined_and_valid", + "status": "pass" + } + ], + "target_column": "quality", + "task_type": "classification", + "input_splits": { + "train": "/data/jialinzhang/SynthesizePipeline-server/DatasetNew/n3/n3-train.csv", + "val": "/data/jialinzhang/SynthesizePipeline-server/DatasetNew/n3/n3-val.csv", + "test": "/data/jialinzhang/SynthesizePipeline-server/DatasetNew/n3/n3-test.csv" + } +} \ No newline at end of file diff --git a/hyperparameter/n3/tabddpm/tabddpm-n3-20260504_184809/public_gate/staged_input_manifest.json b/hyperparameter/n3/tabddpm/tabddpm-n3-20260504_184809/public_gate/staged_input_manifest.json new file mode 100644 index 0000000000000000000000000000000000000000..3002529529ac50684ec92910d6691bd629d2ca3c --- /dev/null +++ b/hyperparameter/n3/tabddpm/tabddpm-n3-20260504_184809/public_gate/staged_input_manifest.json @@ -0,0 +1,264 @@ +{ + "dataset_id": "n3", + "target_column": "quality", + "task_type": "classification", + "train_csv": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/n3/tabddpm/tabddpm-n3-20260504_184809/staged/public/train.csv", + "val_csv": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/n3/tabddpm/tabddpm-n3-20260504_184809/staged/public/val.csv", + "test_csv": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/n3/tabddpm/tabddpm-n3-20260504_184809/staged/public/test.csv", + "features_json": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/n3/tabddpm/tabddpm-n3-20260504_184809/staged/public/staged_features.json", + "public_gate_report": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/n3/tabddpm/tabddpm-n3-20260504_184809/public_gate/public_gate_report.json", + "column_schema": [ + { + "name": "fixed acidity", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 66, + "unique_ratio": 0.016845, + "example_values": [ + "7.1", + "8.5", + "6.4", + "6.8", + "7.6" + ] + } + }, + { + "name": "volatile acidity", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 121, + "unique_ratio": 0.030883, + "example_values": [ + "0.31", + "0.21", + "0.24", + "0.43", + "0.27" + ] + } + }, + { + "name": "citric acid", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 85, + "unique_ratio": 0.021695, + "example_values": [ + "0.17", + "0.41", + "0.31", + "0.25", + "0.3" + ] + } + }, + { + "name": "residual sugar", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 296, + "unique_ratio": 0.075549, + "example_values": [ + "1", + "4.3", + "2.8", + "13", + "12.9" + ] + } + }, + { + "name": "chlorides", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 147, + "unique_ratio": 0.037519, + "example_values": [ + "0.042", + "0.036", + "0.038", + "0.047", + "0.033" + ] + } + }, + { + "name": "free sulfur dioxide", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 120, + "unique_ratio": 0.030628, + "example_values": [ + "21", + "24", + "41", + "43", + "69" + ] + } + }, + { + "name": "total sulfur dioxide", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 244, + "unique_ratio": 0.062277, + "example_values": [ + "144", + "99", + "114", + "132", + "160" + ] + } + }, + { + "name": "density", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 839, + "unique_ratio": 0.21414, + "example_values": [ + "0.99304", + "0.9947", + "0.99155", + "0.98975", + "0.99705" + ] + } + }, + { + "name": "pH", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 100, + "unique_ratio": 0.025523, + "example_values": [ + "3.13", + "3.18", + "3.37", + "3.21", + "3.16" + ] + } + }, + { + "name": "sulphates", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 78, + "unique_ratio": 0.019908, + "example_values": [ + "0.4", + "0.53", + "0.66", + "0.47", + "0.5" + ] + } + }, + { + "name": "alcohol", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 97, + "unique_ratio": 0.024758, + "example_values": [ + "9.6", + "9.7", + "11.7", + "13.4", + "8.8" + ] + } + }, + { + "name": "quality", + "role": "target", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 7, + "unique_ratio": 0.001787, + "example_values": [ + "5", + "6", + "7", + "8", + "3" + ] + } + } + ] +} \ No newline at end of file diff --git a/hyperparameter/n3/tabddpm/tabddpm-n3-20260504_184809/run_config.json b/hyperparameter/n3/tabddpm/tabddpm-n3-20260504_184809/run_config.json new file mode 100644 index 0000000000000000000000000000000000000000..3dfccc8a00c7e6005aa4d05c9bf854607ce24cf4 --- /dev/null +++ b/hyperparameter/n3/tabddpm/tabddpm-n3-20260504_184809/run_config.json @@ -0,0 +1,45 @@ +{ + "schema_version": 1, + "recorded_at": "2026-05-04T18:48:09", + "dataset_id": "n3", + "model": "tabddpm", + "work_dir": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/n3/tabddpm/tabddpm-n3-20260504_184809", + "dataset_source_requested": "new", + "dataset_source_resolved": "new", + "cli_args": { + "model": "tabddpm", + "dataset": "n3", + "dataset_source": "new", + "train": true, + "generate": true, + "num_rows": 0, + "epochs": null, + "output_dir": null, + "model_dir": null, + "work_dir": null, + "resume": false, + "no_stats": false + }, + "resolved": { + "num_rows": 3918, + "model_path": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/n3/tabddpm/tabddpm-n3-20260504_184809", + "output_csv": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/n3/tabddpm/tabddpm-n3-20260504_184809/tabddpm-n3-3918-20260504_184906.csv" + }, + "input_artifacts": { + "public_gate_report": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/n3/tabddpm/tabddpm-n3-20260504_184809/public_gate/public_gate_report.json", + "public_manifest": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/n3/tabddpm/tabddpm-n3-20260504_184809/public_gate/staged_input_manifest.json", + "model_manifest": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/n3/tabddpm/tabddpm-n3-20260504_184809/staged/tabddpm/model_input_manifest.json", + "train_csv": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/n3/tabddpm/tabddpm-n3-20260504_184809/staged/public/train.csv", + "features_json": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/n3/tabddpm/tabddpm-n3-20260504_184809/staged/public/staged_features.json", + "target_column": "quality", + "task_type": "classification" + }, + "env_overrides": { + "BENCHMARK_TABDDPM_GPUS": "device=3", + "TABDDPM_NUM_TIMESTEPS": "1000", + "TABDDPM_SAMPLE_BATCH_SIZE": "64", + "TABDDPM_STEPS_PER_EPOCH": "300", + "TABDDPM_TRAIN_BATCH_SIZE": "64", + "TABDDPM_TRAIN_LR": "0.0001" + } +} \ No newline at end of file diff --git a/hyperparameter/n3/tabddpm/tabddpm-n3-20260504_184809/runtime_result.json b/hyperparameter/n3/tabddpm/tabddpm-n3-20260504_184809/runtime_result.json new file mode 100644 index 0000000000000000000000000000000000000000..eb6c7f319acab81dfa0cbabdd73652b280dcc97b --- /dev/null +++ b/hyperparameter/n3/tabddpm/tabddpm-n3-20260504_184809/runtime_result.json @@ -0,0 +1,27 @@ +{ + "dataset_id": "n3", + "model": "tabddpm", + "run_id": "tabddpm-n3-20260504_184809", + "public_gate_status": "pass", + "adapter_ready_status": "pass", + "train_status": "success", + "generate_status": "success", + "reason_code": null, + "reason_detail": null, + "artifacts": { + "synthetic_csv": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/n3/tabddpm/tabddpm-n3-20260504_184809/tabddpm-n3-3918-20260504_184906.csv", + "model_path": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/n3/tabddpm/tabddpm-n3-20260504_184809" + }, + "timings": { + "train": { + "started_at": "2026-05-04T18:48:09", + "ended_at": "2026-05-04T18:49:06", + "duration_sec": 56.193 + }, + "generate": { + "started_at": "2026-05-04T18:49:06", + "ended_at": "2026-05-04T18:50:03", + "duration_sec": 57.067 + } + } +} \ No newline at end of file diff --git a/hyperparameter/n3/tabddpm/tabddpm-n3-20260504_184809/staged/public/staged_features.json b/hyperparameter/n3/tabddpm/tabddpm-n3-20260504_184809/staged/public/staged_features.json new file mode 100644 index 0000000000000000000000000000000000000000..08fe4d766d091d2f2ddba724a16b9509cbe4c390 --- /dev/null +++ b/hyperparameter/n3/tabddpm/tabddpm-n3-20260504_184809/staged/public/staged_features.json @@ -0,0 +1,62 @@ +[ + { + "feature_name": "fixed acidity", + "data_type": "continuous", + "is_target": false + }, + { + "feature_name": "volatile acidity", + "data_type": "continuous", + "is_target": false + }, + { + "feature_name": "citric acid", + "data_type": "continuous", + "is_target": false + }, + { + "feature_name": "residual sugar", + "data_type": "continuous", + "is_target": false + }, + { + "feature_name": "chlorides", + "data_type": "continuous", + "is_target": false + }, + { + "feature_name": "free sulfur dioxide", + "data_type": "continuous", + "is_target": false + }, + { + "feature_name": "total sulfur dioxide", + "data_type": "continuous", + "is_target": false + }, + { + "feature_name": "density", + "data_type": "continuous", + "is_target": false + }, + { + "feature_name": "pH", + "data_type": "continuous", + "is_target": false + }, + { + "feature_name": "sulphates", + "data_type": "continuous", + "is_target": false + }, + { + "feature_name": "alcohol", + "data_type": "continuous", + "is_target": false + }, + { + "feature_name": "quality", + "data_type": "continuous", + "is_target": true + } +] \ No newline at end of file diff --git a/hyperparameter/n3/tabddpm/tabddpm-n3-20260504_184809/staged/public/test.csv b/hyperparameter/n3/tabddpm/tabddpm-n3-20260504_184809/staged/public/test.csv new file mode 100644 index 0000000000000000000000000000000000000000..db5cd50d3746410ea470625fa2ba2c8e9775cc0d --- /dev/null +++ b/hyperparameter/n3/tabddpm/tabddpm-n3-20260504_184809/staged/public/test.csv @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:19e107152a94432e2a37ff045c00cfe35e1be30208b1553080d7dd0ede256d3b +size 28944 diff --git a/hyperparameter/n3/tabddpm/tabddpm-n3-20260504_184809/staged/public/train.csv b/hyperparameter/n3/tabddpm/tabddpm-n3-20260504_184809/staged/public/train.csv new file mode 100644 index 0000000000000000000000000000000000000000..87ca26726fe82ccbaa397919305b043c17eb374e --- /dev/null +++ b/hyperparameter/n3/tabddpm/tabddpm-n3-20260504_184809/staged/public/train.csv @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:7813c8cca73ba4bfc6559215257b341c21e459980ad17ae6ddc809306bc9a0b9 +size 229945 diff --git a/hyperparameter/n3/tabddpm/tabddpm-n3-20260504_184809/staged/public/val.csv b/hyperparameter/n3/tabddpm/tabddpm-n3-20260504_184809/staged/public/val.csv new file mode 100644 index 0000000000000000000000000000000000000000..6acf84c76c47093b513c46d5503972a2dff275c0 --- /dev/null +++ b/hyperparameter/n3/tabddpm/tabddpm-n3-20260504_184809/staged/public/val.csv @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:cf5979d9675567d9d6642640c9b84fc6c49e492604144723c30f50516c05cee6 +size 28791 diff --git a/hyperparameter/n3/tabddpm/tabddpm-n3-20260504_184809/staged/tabddpm/adapter_report.json b/hyperparameter/n3/tabddpm/tabddpm-n3-20260504_184809/staged/tabddpm/adapter_report.json new file mode 100644 index 0000000000000000000000000000000000000000..ddd7fe18eda900005ff58d540fadb7f68563a3e8 --- /dev/null +++ b/hyperparameter/n3/tabddpm/tabddpm-n3-20260504_184809/staged/tabddpm/adapter_report.json @@ -0,0 +1,7 @@ +{ + "adapter_ready_status": "pass", + "adapter_fail_reason_code": null, + "adapter_fail_detail": null, + "adapter_transforms_applied": [], + "model_input_manifest": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/n3/tabddpm/tabddpm-n3-20260504_184809/staged/tabddpm/model_input_manifest.json" +} \ No newline at end of file diff --git a/hyperparameter/n3/tabddpm/tabddpm-n3-20260504_184809/staged/tabddpm/adapter_transforms_applied.json b/hyperparameter/n3/tabddpm/tabddpm-n3-20260504_184809/staged/tabddpm/adapter_transforms_applied.json new file mode 100644 index 0000000000000000000000000000000000000000..0637a088a01e8ddab3bf3fa98dbe804cbde1a0dc --- /dev/null +++ b/hyperparameter/n3/tabddpm/tabddpm-n3-20260504_184809/staged/tabddpm/adapter_transforms_applied.json @@ -0,0 +1 @@ +[] \ No newline at end of file diff --git a/hyperparameter/n3/tabddpm/tabddpm-n3-20260504_184809/staged/tabddpm/model_input_manifest.json b/hyperparameter/n3/tabddpm/tabddpm-n3-20260504_184809/staged/tabddpm/model_input_manifest.json new file mode 100644 index 0000000000000000000000000000000000000000..7e26fa5cfb722e6098ad77639c9a4333c25e8ecf --- /dev/null +++ b/hyperparameter/n3/tabddpm/tabddpm-n3-20260504_184809/staged/tabddpm/model_input_manifest.json @@ -0,0 +1,266 @@ +{ + "dataset_id": "n3", + "model": "tabddpm", + "target_column": "quality", + "task_type": "classification", + "column_schema": [ + { + "name": "fixed acidity", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 66, + "unique_ratio": 0.016845, + "example_values": [ + "7.1", + "8.5", + "6.4", + "6.8", + "7.6" + ] + } + }, + { + "name": "volatile acidity", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 121, + "unique_ratio": 0.030883, + "example_values": [ + "0.31", + "0.21", + "0.24", + "0.43", + "0.27" + ] + } + }, + { + "name": "citric acid", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 85, + "unique_ratio": 0.021695, + "example_values": [ + "0.17", + "0.41", + "0.31", + "0.25", + "0.3" + ] + } + }, + { + "name": "residual sugar", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 296, + "unique_ratio": 0.075549, + "example_values": [ + "1", + "4.3", + "2.8", + "13", + "12.9" + ] + } + }, + { + "name": "chlorides", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 147, + "unique_ratio": 0.037519, + "example_values": [ + "0.042", + "0.036", + "0.038", + "0.047", + "0.033" + ] + } + }, + { + "name": "free sulfur dioxide", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 120, + "unique_ratio": 0.030628, + "example_values": [ + "21", + "24", + "41", + "43", + "69" + ] + } + }, + { + "name": "total sulfur dioxide", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 244, + "unique_ratio": 0.062277, + "example_values": [ + "144", + "99", + "114", + "132", + "160" + ] + } + }, + { + "name": "density", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 839, + "unique_ratio": 0.21414, + "example_values": [ + "0.99304", + "0.9947", + "0.99155", + "0.98975", + "0.99705" + ] + } + }, + { + "name": "pH", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 100, + "unique_ratio": 0.025523, + "example_values": [ + "3.13", + "3.18", + "3.37", + "3.21", + "3.16" + ] + } + }, + { + "name": "sulphates", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 78, + "unique_ratio": 0.019908, + "example_values": [ + "0.4", + "0.53", + "0.66", + "0.47", + "0.5" + ] + } + }, + { + "name": "alcohol", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 97, + "unique_ratio": 0.024758, + "example_values": [ + "9.6", + "9.7", + "11.7", + "13.4", + "8.8" + ] + } + }, + { + "name": "quality", + "role": "target", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 7, + "unique_ratio": 0.001787, + "example_values": [ + "5", + "6", + "7", + "8", + "3" + ] + } + } + ], + "public_manifest": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/n3/tabddpm/tabddpm-n3-20260504_184809/public_gate/staged_input_manifest.json", + "train_csv": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/n3/tabddpm/tabddpm-n3-20260504_184809/staged/public/train.csv", + "val_csv": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/n3/tabddpm/tabddpm-n3-20260504_184809/staged/public/val.csv", + "test_csv": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/n3/tabddpm/tabddpm-n3-20260504_184809/staged/public/test.csv", + "features_json": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/n3/tabddpm/tabddpm-n3-20260504_184809/staged/public/staged_features.json", + "public_gate_report": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/n3/tabddpm/tabddpm-n3-20260504_184809/public_gate/public_gate_report.json" +} \ No newline at end of file diff --git a/hyperparameter/n3/tabddpm/tabddpm-n3-20260504_184809/tabddpm-n3-3918-20260504_184906.csv b/hyperparameter/n3/tabddpm/tabddpm-n3-20260504_184809/tabddpm-n3-3918-20260504_184906.csv new file mode 100644 index 0000000000000000000000000000000000000000..d1cbd95581ae0725ef46c9fc913777247da2a476 --- /dev/null +++ b/hyperparameter/n3/tabddpm/tabddpm-n3-20260504_184809/tabddpm-n3-3918-20260504_184906.csv @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:be4118864f6fcdfeffd474590974e21cfe76f829e0b7347aaac024509fb9df80 +size 770974 diff --git a/hyperparameter/n3/tabddpm/tabddpm-n3-20260504_184809/train_20260504_184809.log b/hyperparameter/n3/tabddpm/tabddpm-n3-20260504_184809/train_20260504_184809.log new file mode 100644 index 0000000000000000000000000000000000000000..41bdef814edcd2e85f5c478beb140680b0fb1356 --- /dev/null +++ b/hyperparameter/n3/tabddpm/tabddpm-n3-20260504_184809/train_20260504_184809.log @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:9c309e5eb27853cfdd680d35dc8fce60aa38aa78273bb1e9bed032d07c95a625 +size 2145 diff --git a/hyperparameter/n3/tabdiff/tabdiff-n3-20260504_203107/_tabdiff_gen.py b/hyperparameter/n3/tabdiff/tabdiff-n3-20260504_203107/_tabdiff_gen.py new file mode 100644 index 0000000000000000000000000000000000000000..f8dbc34c2bea2904feb0db610698b50fc933048b --- /dev/null +++ b/hyperparameter/n3/tabdiff/tabdiff-n3-20260504_203107/_tabdiff_gen.py @@ -0,0 +1,36 @@ + +import os, shutil, subprocess, sys +td = r"/workspace/TabDiff" +name = r"pipeline_n3" +src = r"/work/output-Benchmark-trainonly-v1/n3/tabdiff/tabdiff-n3-20260504_203107/tabular_bundle/pipeline_n3" +dst_data = os.path.join(td, "data", name) +dst_syn = os.path.join(td, "synthetic", name) +shutil.rmtree(dst_data, ignore_errors=True) +shutil.copytree(src, dst_data) +os.makedirs(dst_syn, exist_ok=True) +for fn in ("real.csv", "test.csv", "val.csv"): + shutil.copy(os.path.join(src, fn), os.path.join(dst_syn, fn)) +os.chdir(td) +os.environ["PYTHONPATH"] = td + os.pathsep + os.environ.get("PYTHONPATH", "") +subprocess.check_call([ + sys.executable, "-m", "tabdiff.main", + "--dataname", name, "--mode", "test", "--gpu", "0", + "--no_wandb", "--exp_name", r"adapter_learnable", + "--ckpt_path", r"/workspace/TabDiff/tabdiff/ckpt/pipeline_n3/adapter_learnable/model_500.pt", + "--num_samples_to_generate", str(int(3918)), +]) +# test() 写入 tabdiff/result////samples.csv +import glob as g +base = os.path.join(td, "tabdiff", "result", name, r"adapter_learnable") +best = None +best_t = -1.0 +for root, _, files in os.walk(base): + if "samples.csv" in files: + p = os.path.join(root, "samples.csv") + t = os.path.getmtime(p) + if t > best_t: + best_t = t + best = p +if not best: + raise SystemExit("tabdiff: no samples.csv under " + base) +shutil.copy(best, r"/work/output-Benchmark-trainonly-v1/n3/tabdiff/tabdiff-n3-20260504_203107/tabdiff-n3-3918-20260504_203314.csv") diff --git a/hyperparameter/n3/tabdiff/tabdiff-n3-20260504_203107/_tabdiff_train.py b/hyperparameter/n3/tabdiff/tabdiff-n3-20260504_203107/_tabdiff_train.py new file mode 100644 index 0000000000000000000000000000000000000000..61b1adab6bba6a907317207e9bfa3d5762a76ba5 --- /dev/null +++ b/hyperparameter/n3/tabdiff/tabdiff-n3-20260504_203107/_tabdiff_train.py @@ -0,0 +1,21 @@ + +import os, shutil, subprocess, sys +td = r"/workspace/TabDiff" +name = r"pipeline_n3" +src = r"/work/output-Benchmark-trainonly-v1/n3/tabdiff/tabdiff-n3-20260504_203107/tabular_bundle/pipeline_n3" +dst_data = os.path.join(td, "data", name) +dst_syn = os.path.join(td, "synthetic", name) +shutil.rmtree(dst_data, ignore_errors=True) +shutil.copytree(src, dst_data) +os.makedirs(dst_syn, exist_ok=True) +for fn in ("real.csv", "test.csv", "val.csv"): + shutil.copy(os.path.join(src, fn), os.path.join(dst_syn, fn)) +os.chdir(td) +os.environ["PYTHONPATH"] = td + os.pathsep + os.environ.get("PYTHONPATH", "") +os.environ["TABDIFF_SMOKE_STEPS"] = "100" +os.environ["TABDIFF_ADAPTER_TRAIN"] = "1" +subprocess.check_call([ + sys.executable, "-m", "tabdiff.main", + "--dataname", name, "--mode", "train", "--gpu", "0", + "--no_wandb", "--exp_name", r"adapter_learnable", +]) diff --git a/hyperparameter/n3/tabdiff/tabdiff-n3-20260504_203107/gen_20260504_203314.log b/hyperparameter/n3/tabdiff/tabdiff-n3-20260504_203107/gen_20260504_203314.log new file mode 100644 index 0000000000000000000000000000000000000000..ef75d9c7943c7c51bfe0315e287320300616b4c9 --- /dev/null +++ b/hyperparameter/n3/tabdiff/tabdiff-n3-20260504_203107/gen_20260504_203314.log @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:87e522949d9669bd7e1504aa91637c180f3ef03e4b497a9eef14945336710d41 +size 5857 diff --git a/hyperparameter/n3/tabdiff/tabdiff-n3-20260504_203107/input_snapshot.json b/hyperparameter/n3/tabdiff/tabdiff-n3-20260504_203107/input_snapshot.json new file mode 100644 index 0000000000000000000000000000000000000000..751cd5fa38e2fbd0a4680d9f58579382404e5586 --- /dev/null +++ b/hyperparameter/n3/tabdiff/tabdiff-n3-20260504_203107/input_snapshot.json @@ -0,0 +1,36 @@ +{ + "dataset_id": "n3", + "model": "tabdiff", + "inputs": { + "train_csv": { + "path": "/data/jialinzhang/SynthesizePipeline-server/DatasetNew/n3/n3-train.csv", + "exists": true, + "size": 211519, + "sha256": "2160a06db2fea02adb0ebb79d8d853bd2544580be301e71f6e8deeb1489a9009" + }, + "val_csv": { + "path": "/data/jialinzhang/SynthesizePipeline-server/DatasetNew/n3/n3-val.csv", + "exists": true, + "size": 26499, + "sha256": "d5ccfee07dfa9e7bdee5bb87642b43828e09f74c6cc0266a3d19d9feaa83106e" + }, + "test_csv": { + "path": "/data/jialinzhang/SynthesizePipeline-server/DatasetNew/n3/n3-test.csv", + "exists": true, + "size": 26676, + "sha256": "6f83aacb0d1747b95e287352a7fff5d9d65a1c127b773852346c68485c4ede47" + }, + "profile_json": { + "path": "/data/jialinzhang/SynthesizePipeline-server/DatasetNew/artifacts/data_core/tabular/n3/n3-dataset_profile.json", + "exists": true, + "size": 5235, + "sha256": "23d2e5904a2ca90cbf8d6e3c75887681721e9b90cc705c31a680c11513d0c46f" + }, + "contract_json": { + "path": "/data/jialinzhang/SynthesizePipeline-server/DatasetNew/artifacts/data_core/tabular/n3/n3-dataset_contract_v1.json", + "exists": true, + "size": 6281, + "sha256": "c0cc56f5fe28e1b65927255c6e3c2b0e9479862c2ec6f2fea1664da36c9a3a09" + } + } +} \ No newline at end of file diff --git a/hyperparameter/n3/tabdiff/tabdiff-n3-20260504_203107/models_tabdiff/trained.pt b/hyperparameter/n3/tabdiff/tabdiff-n3-20260504_203107/models_tabdiff/trained.pt new file mode 100644 index 0000000000000000000000000000000000000000..bc319a55a9c7152a1137f968b6fa1c735125ad11 --- /dev/null +++ b/hyperparameter/n3/tabdiff/tabdiff-n3-20260504_203107/models_tabdiff/trained.pt @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:306660b8aad4549267c68390b017e15ddb9bc06a02c80515eb72a97ae31a81eb +size 74 diff --git a/hyperparameter/n3/tabdiff/tabdiff-n3-20260504_203107/public_gate/normalized_schema_snapshot.json b/hyperparameter/n3/tabdiff/tabdiff-n3-20260504_203107/public_gate/normalized_schema_snapshot.json new file mode 100644 index 0000000000000000000000000000000000000000..c41fe304503de23190a02e6cbfafa35b3bf134d3 --- /dev/null +++ b/hyperparameter/n3/tabdiff/tabdiff-n3-20260504_203107/public_gate/normalized_schema_snapshot.json @@ -0,0 +1,259 @@ +{ + "dataset_id": "n3", + "target_column": "quality", + "task_type": "classification", + "columns": [ + { + "name": "fixed acidity", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 66, + "unique_ratio": 0.016845, + "example_values": [ + "7.1", + "8.5", + "6.4", + "6.8", + "7.6" + ] + } + }, + { + "name": "volatile acidity", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 121, + "unique_ratio": 0.030883, + "example_values": [ + "0.31", + "0.21", + "0.24", + "0.43", + "0.27" + ] + } + }, + { + "name": "citric acid", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 85, + "unique_ratio": 0.021695, + "example_values": [ + "0.17", + "0.41", + "0.31", + "0.25", + "0.3" + ] + } + }, + { + "name": "residual sugar", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 296, + "unique_ratio": 0.075549, + "example_values": [ + "1", + "4.3", + "2.8", + "13", + "12.9" + ] + } + }, + { + "name": "chlorides", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 147, + "unique_ratio": 0.037519, + "example_values": [ + "0.042", + "0.036", + "0.038", + "0.047", + "0.033" + ] + } + }, + { + "name": "free sulfur dioxide", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 120, + "unique_ratio": 0.030628, + "example_values": [ + "21", + "24", + "41", + "43", + "69" + ] + } + }, + { + "name": "total sulfur dioxide", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 244, + "unique_ratio": 0.062277, + "example_values": [ + "144", + "99", + "114", + "132", + "160" + ] + } + }, + { + "name": "density", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 839, + "unique_ratio": 0.21414, + "example_values": [ + "0.99304", + "0.9947", + "0.99155", + "0.98975", + "0.99705" + ] + } + }, + { + "name": "pH", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 100, + "unique_ratio": 0.025523, + "example_values": [ + "3.13", + "3.18", + "3.37", + "3.21", + "3.16" + ] + } + }, + { + "name": "sulphates", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 78, + "unique_ratio": 0.019908, + "example_values": [ + "0.4", + "0.53", + "0.66", + "0.47", + "0.5" + ] + } + }, + { + "name": "alcohol", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 97, + "unique_ratio": 0.024758, + "example_values": [ + "9.6", + "9.7", + "11.7", + "13.4", + "8.8" + ] + } + }, + { + "name": "quality", + "role": "target", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 7, + "unique_ratio": 0.001787, + "example_values": [ + "5", + "6", + "7", + "8", + "3" + ] + } + } + ] +} \ No newline at end of file diff --git a/hyperparameter/n3/tabdiff/tabdiff-n3-20260504_203107/public_gate/public_gate_report.json b/hyperparameter/n3/tabdiff/tabdiff-n3-20260504_203107/public_gate/public_gate_report.json new file mode 100644 index 0000000000000000000000000000000000000000..93b97319f739e39079d6c6549fd2020f8a6dac25 --- /dev/null +++ b/hyperparameter/n3/tabdiff/tabdiff-n3-20260504_203107/public_gate/public_gate_report.json @@ -0,0 +1,37 @@ +{ + "dataset_id": "n3", + "status": "pass", + "checks": [ + { + "check_id": "PG001_csv_parse_ok", + "status": "pass" + }, + { + "check_id": "PG002_split_header_consistent", + "status": "pass" + }, + { + "check_id": "PG003_profile_header_match", + "status": "pass" + }, + { + "check_id": "PG004_missing_token_normalized", + "status": "pass" + }, + { + "check_id": "PG005_semantic_type_validated", + "status": "pass" + }, + { + "check_id": "PG006_target_defined_and_valid", + "status": "pass" + } + ], + "target_column": "quality", + "task_type": "classification", + "input_splits": { + "train": "/data/jialinzhang/SynthesizePipeline-server/DatasetNew/n3/n3-train.csv", + "val": "/data/jialinzhang/SynthesizePipeline-server/DatasetNew/n3/n3-val.csv", + "test": "/data/jialinzhang/SynthesizePipeline-server/DatasetNew/n3/n3-test.csv" + } +} \ No newline at end of file diff --git a/hyperparameter/n3/tabdiff/tabdiff-n3-20260504_203107/public_gate/staged_input_manifest.json b/hyperparameter/n3/tabdiff/tabdiff-n3-20260504_203107/public_gate/staged_input_manifest.json new file mode 100644 index 0000000000000000000000000000000000000000..bc25143eaf7bb8cd414b56e260c4de80dbd9862e --- /dev/null +++ b/hyperparameter/n3/tabdiff/tabdiff-n3-20260504_203107/public_gate/staged_input_manifest.json @@ -0,0 +1,264 @@ +{ + "dataset_id": "n3", + "target_column": "quality", + "task_type": "classification", + "train_csv": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/n3/tabdiff/tabdiff-n3-20260504_203107/staged/public/train.csv", + "val_csv": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/n3/tabdiff/tabdiff-n3-20260504_203107/staged/public/val.csv", + "test_csv": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/n3/tabdiff/tabdiff-n3-20260504_203107/staged/public/test.csv", + "features_json": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/n3/tabdiff/tabdiff-n3-20260504_203107/staged/public/staged_features.json", + "public_gate_report": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/n3/tabdiff/tabdiff-n3-20260504_203107/public_gate/public_gate_report.json", + "column_schema": [ + { + "name": "fixed acidity", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 66, + "unique_ratio": 0.016845, + "example_values": [ + "7.1", + "8.5", + "6.4", + "6.8", + "7.6" + ] + } + }, + { + "name": "volatile acidity", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 121, + "unique_ratio": 0.030883, + "example_values": [ + "0.31", + "0.21", + "0.24", + "0.43", + "0.27" + ] + } + }, + { + "name": "citric acid", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 85, + "unique_ratio": 0.021695, + "example_values": [ + "0.17", + "0.41", + "0.31", + "0.25", + "0.3" + ] + } + }, + { + "name": "residual sugar", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 296, + "unique_ratio": 0.075549, + "example_values": [ + "1", + "4.3", + "2.8", + "13", + "12.9" + ] + } + }, + { + "name": "chlorides", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 147, + "unique_ratio": 0.037519, + "example_values": [ + "0.042", + "0.036", + "0.038", + "0.047", + "0.033" + ] + } + }, + { + "name": "free sulfur dioxide", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 120, + "unique_ratio": 0.030628, + "example_values": [ + "21", + "24", + "41", + "43", + "69" + ] + } + }, + { + "name": "total sulfur dioxide", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 244, + "unique_ratio": 0.062277, + "example_values": [ + "144", + "99", + "114", + "132", + "160" + ] + } + }, + { + "name": "density", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 839, + "unique_ratio": 0.21414, + "example_values": [ + "0.99304", + "0.9947", + "0.99155", + "0.98975", + "0.99705" + ] + } + }, + { + "name": "pH", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 100, + "unique_ratio": 0.025523, + "example_values": [ + "3.13", + "3.18", + "3.37", + "3.21", + "3.16" + ] + } + }, + { + "name": "sulphates", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 78, + "unique_ratio": 0.019908, + "example_values": [ + "0.4", + "0.53", + "0.66", + "0.47", + "0.5" + ] + } + }, + { + "name": "alcohol", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 97, + "unique_ratio": 0.024758, + "example_values": [ + "9.6", + "9.7", + "11.7", + "13.4", + "8.8" + ] + } + }, + { + "name": "quality", + "role": "target", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 7, + "unique_ratio": 0.001787, + "example_values": [ + "5", + "6", + "7", + "8", + "3" + ] + } + } + ] +} \ No newline at end of file diff --git a/hyperparameter/n3/tabdiff/tabdiff-n3-20260504_203107/run_config.json b/hyperparameter/n3/tabdiff/tabdiff-n3-20260504_203107/run_config.json new file mode 100644 index 0000000000000000000000000000000000000000..209cafc1703d6e0e74823d4378f0ef5a9bfee64c --- /dev/null +++ b/hyperparameter/n3/tabdiff/tabdiff-n3-20260504_203107/run_config.json @@ -0,0 +1,40 @@ +{ + "schema_version": 1, + "recorded_at": "2026-05-04T20:31:07", + "dataset_id": "n3", + "model": "tabdiff", + "work_dir": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/n3/tabdiff/tabdiff-n3-20260504_203107", + "dataset_source_requested": "new", + "dataset_source_resolved": "new", + "cli_args": { + "model": "tabdiff", + "dataset": "n3", + "dataset_source": "new", + "train": true, + "generate": true, + "num_rows": 0, + "epochs": 100, + "output_dir": null, + "model_dir": null, + "work_dir": null, + "resume": false, + "no_stats": false + }, + "resolved": { + "num_rows": 3918, + "model_path": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/n3/tabdiff/tabdiff-n3-20260504_203107/models_tabdiff/trained.pt", + "output_csv": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/n3/tabdiff/tabdiff-n3-20260504_203107/tabdiff-n3-3918-20260504_203314.csv" + }, + "input_artifacts": { + "public_gate_report": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/n3/tabdiff/tabdiff-n3-20260504_203107/public_gate/public_gate_report.json", + "public_manifest": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/n3/tabdiff/tabdiff-n3-20260504_203107/public_gate/staged_input_manifest.json", + "model_manifest": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/n3/tabdiff/tabdiff-n3-20260504_203107/staged/tabdiff/model_input_manifest.json", + "train_csv": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/n3/tabdiff/tabdiff-n3-20260504_203107/staged/public/train.csv", + "features_json": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/n3/tabdiff/tabdiff-n3-20260504_203107/staged/public/staged_features.json", + "target_column": "quality", + "task_type": "classification" + }, + "env_overrides": { + "BENCHMARK_TABDIFF_GPUS": "device=3" + } +} \ No newline at end of file diff --git a/hyperparameter/n3/tabdiff/tabdiff-n3-20260504_203107/runtime_result.json b/hyperparameter/n3/tabdiff/tabdiff-n3-20260504_203107/runtime_result.json new file mode 100644 index 0000000000000000000000000000000000000000..a54141d10663c08261c42daeb3f959b1977db8f2 --- /dev/null +++ b/hyperparameter/n3/tabdiff/tabdiff-n3-20260504_203107/runtime_result.json @@ -0,0 +1,27 @@ +{ + "dataset_id": "n3", + "model": "tabdiff", + "run_id": "tabdiff-n3-20260504_203107", + "public_gate_status": "pass", + "adapter_ready_status": "pass", + "train_status": "success", + "generate_status": "success", + "reason_code": null, + "reason_detail": null, + "artifacts": { + "synthetic_csv": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/n3/tabdiff/tabdiff-n3-20260504_203107/tabdiff-n3-3918-20260504_203314.csv", + "model_path": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/n3/tabdiff/tabdiff-n3-20260504_203107/models_tabdiff/trained.pt" + }, + "timings": { + "train": { + "started_at": "2026-05-04T20:31:07", + "ended_at": "2026-05-04T20:33:14", + "duration_sec": 126.441 + }, + "generate": { + "started_at": "2026-05-04T20:33:14", + "ended_at": "2026-05-04T20:33:28", + "duration_sec": 14.071 + } + } +} \ No newline at end of file diff --git a/hyperparameter/n3/tabdiff/tabdiff-n3-20260504_203107/staged/public/staged_features.json b/hyperparameter/n3/tabdiff/tabdiff-n3-20260504_203107/staged/public/staged_features.json new file mode 100644 index 0000000000000000000000000000000000000000..08fe4d766d091d2f2ddba724a16b9509cbe4c390 --- /dev/null +++ b/hyperparameter/n3/tabdiff/tabdiff-n3-20260504_203107/staged/public/staged_features.json @@ -0,0 +1,62 @@ +[ + { + "feature_name": "fixed acidity", + "data_type": "continuous", + "is_target": false + }, + { + "feature_name": "volatile acidity", + "data_type": "continuous", + "is_target": false + }, + { + "feature_name": "citric acid", + "data_type": "continuous", + "is_target": false + }, + { + "feature_name": "residual sugar", + "data_type": "continuous", + "is_target": false + }, + { + "feature_name": "chlorides", + "data_type": "continuous", + "is_target": false + }, + { + "feature_name": "free sulfur dioxide", + "data_type": "continuous", + "is_target": false + }, + { + "feature_name": "total sulfur dioxide", + "data_type": "continuous", + "is_target": false + }, + { + "feature_name": "density", + "data_type": "continuous", + "is_target": false + }, + { + "feature_name": "pH", + "data_type": "continuous", + "is_target": false + }, + { + "feature_name": "sulphates", + "data_type": "continuous", + "is_target": false + }, + { + "feature_name": "alcohol", + "data_type": "continuous", + "is_target": false + }, + { + "feature_name": "quality", + "data_type": "continuous", + "is_target": true + } +] \ No newline at end of file diff --git a/hyperparameter/n3/tabdiff/tabdiff-n3-20260504_203107/staged/public/test.csv b/hyperparameter/n3/tabdiff/tabdiff-n3-20260504_203107/staged/public/test.csv new file mode 100644 index 0000000000000000000000000000000000000000..db5cd50d3746410ea470625fa2ba2c8e9775cc0d --- /dev/null +++ b/hyperparameter/n3/tabdiff/tabdiff-n3-20260504_203107/staged/public/test.csv @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:19e107152a94432e2a37ff045c00cfe35e1be30208b1553080d7dd0ede256d3b +size 28944 diff --git a/hyperparameter/n3/tabdiff/tabdiff-n3-20260504_203107/staged/public/train.csv b/hyperparameter/n3/tabdiff/tabdiff-n3-20260504_203107/staged/public/train.csv new file mode 100644 index 0000000000000000000000000000000000000000..87ca26726fe82ccbaa397919305b043c17eb374e --- /dev/null +++ b/hyperparameter/n3/tabdiff/tabdiff-n3-20260504_203107/staged/public/train.csv @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:7813c8cca73ba4bfc6559215257b341c21e459980ad17ae6ddc809306bc9a0b9 +size 229945 diff --git a/hyperparameter/n3/tabdiff/tabdiff-n3-20260504_203107/staged/public/val.csv b/hyperparameter/n3/tabdiff/tabdiff-n3-20260504_203107/staged/public/val.csv new file mode 100644 index 0000000000000000000000000000000000000000..6acf84c76c47093b513c46d5503972a2dff275c0 --- /dev/null +++ b/hyperparameter/n3/tabdiff/tabdiff-n3-20260504_203107/staged/public/val.csv @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:cf5979d9675567d9d6642640c9b84fc6c49e492604144723c30f50516c05cee6 +size 28791 diff --git a/hyperparameter/n3/tabdiff/tabdiff-n3-20260504_203107/staged/tabdiff/adapter_report.json b/hyperparameter/n3/tabdiff/tabdiff-n3-20260504_203107/staged/tabdiff/adapter_report.json new file mode 100644 index 0000000000000000000000000000000000000000..9d9784ae107922dc4720832bbb4d4c06b23d033d --- /dev/null +++ b/hyperparameter/n3/tabdiff/tabdiff-n3-20260504_203107/staged/tabdiff/adapter_report.json @@ -0,0 +1,7 @@ +{ + "adapter_ready_status": "pass", + "adapter_fail_reason_code": null, + "adapter_fail_detail": null, + "adapter_transforms_applied": [], + "model_input_manifest": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/n3/tabdiff/tabdiff-n3-20260504_203107/staged/tabdiff/model_input_manifest.json" +} \ No newline at end of file diff --git a/hyperparameter/n3/tabdiff/tabdiff-n3-20260504_203107/staged/tabdiff/adapter_transforms_applied.json b/hyperparameter/n3/tabdiff/tabdiff-n3-20260504_203107/staged/tabdiff/adapter_transforms_applied.json new file mode 100644 index 0000000000000000000000000000000000000000..0637a088a01e8ddab3bf3fa98dbe804cbde1a0dc --- /dev/null +++ b/hyperparameter/n3/tabdiff/tabdiff-n3-20260504_203107/staged/tabdiff/adapter_transforms_applied.json @@ -0,0 +1 @@ +[] \ No newline at end of file diff --git a/hyperparameter/n3/tabdiff/tabdiff-n3-20260504_203107/staged/tabdiff/model_input_manifest.json b/hyperparameter/n3/tabdiff/tabdiff-n3-20260504_203107/staged/tabdiff/model_input_manifest.json new file mode 100644 index 0000000000000000000000000000000000000000..65d441e9f109bd756914c365ed9131cc032489d8 --- /dev/null +++ b/hyperparameter/n3/tabdiff/tabdiff-n3-20260504_203107/staged/tabdiff/model_input_manifest.json @@ -0,0 +1,266 @@ +{ + "dataset_id": "n3", + "model": "tabdiff", + "target_column": "quality", + "task_type": "classification", + "column_schema": [ + { + "name": "fixed acidity", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 66, + "unique_ratio": 0.016845, + "example_values": [ + "7.1", + "8.5", + "6.4", + "6.8", + "7.6" + ] + } + }, + { + "name": "volatile acidity", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 121, + "unique_ratio": 0.030883, + "example_values": [ + "0.31", + "0.21", + "0.24", + "0.43", + "0.27" + ] + } + }, + { + "name": "citric acid", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 85, + "unique_ratio": 0.021695, + "example_values": [ + "0.17", + "0.41", + "0.31", + "0.25", + "0.3" + ] + } + }, + { + "name": "residual sugar", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 296, + "unique_ratio": 0.075549, + "example_values": [ + "1", + "4.3", + "2.8", + "13", + "12.9" + ] + } + }, + { + "name": "chlorides", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 147, + "unique_ratio": 0.037519, + "example_values": [ + "0.042", + "0.036", + "0.038", + "0.047", + "0.033" + ] + } + }, + { + "name": "free sulfur dioxide", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 120, + "unique_ratio": 0.030628, + "example_values": [ + "21", + "24", + "41", + "43", + "69" + ] + } + }, + { + "name": "total sulfur dioxide", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 244, + "unique_ratio": 0.062277, + "example_values": [ + "144", + "99", + "114", + "132", + "160" + ] + } + }, + { + "name": "density", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 839, + "unique_ratio": 0.21414, + "example_values": [ + "0.99304", + "0.9947", + "0.99155", + "0.98975", + "0.99705" + ] + } + }, + { + "name": "pH", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 100, + "unique_ratio": 0.025523, + "example_values": [ + "3.13", + "3.18", + "3.37", + "3.21", + "3.16" + ] + } + }, + { + "name": "sulphates", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 78, + "unique_ratio": 0.019908, + "example_values": [ + "0.4", + "0.53", + "0.66", + "0.47", + "0.5" + ] + } + }, + { + "name": "alcohol", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 97, + "unique_ratio": 0.024758, + "example_values": [ + "9.6", + "9.7", + "11.7", + "13.4", + "8.8" + ] + } + }, + { + "name": "quality", + "role": "target", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 7, + "unique_ratio": 0.001787, + "example_values": [ + "5", + "6", + "7", + "8", + "3" + ] + } + } + ], + "public_manifest": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/n3/tabdiff/tabdiff-n3-20260504_203107/public_gate/staged_input_manifest.json", + "train_csv": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/n3/tabdiff/tabdiff-n3-20260504_203107/staged/public/train.csv", + "val_csv": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/n3/tabdiff/tabdiff-n3-20260504_203107/staged/public/val.csv", + "test_csv": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/n3/tabdiff/tabdiff-n3-20260504_203107/staged/public/test.csv", + "features_json": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/n3/tabdiff/tabdiff-n3-20260504_203107/staged/public/staged_features.json", + "public_gate_report": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/n3/tabdiff/tabdiff-n3-20260504_203107/public_gate/public_gate_report.json" +} \ No newline at end of file diff --git a/hyperparameter/n3/tabdiff/tabdiff-n3-20260504_203107/tabdiff-n3-3918-20260504_203314.csv b/hyperparameter/n3/tabdiff/tabdiff-n3-20260504_203107/tabdiff-n3-3918-20260504_203314.csv new file mode 100644 index 0000000000000000000000000000000000000000..655554acee11ed86ab1e4ca295385deae34a8281 --- /dev/null +++ b/hyperparameter/n3/tabdiff/tabdiff-n3-20260504_203107/tabdiff-n3-3918-20260504_203314.csv @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:0a0d131f1f694bae11f22dffdc9a29e16c21d383dd1c8299ff36a58bfb56b3c4 +size 341089 diff --git a/hyperparameter/n3/tabdiff/tabdiff-n3-20260504_203107/tabdiff_train_meta.json b/hyperparameter/n3/tabdiff/tabdiff-n3-20260504_203107/tabdiff_train_meta.json new file mode 100644 index 0000000000000000000000000000000000000000..e8df01d5d64a6adf37545e3bde8cfe5d684b5a98 --- /dev/null +++ b/hyperparameter/n3/tabdiff/tabdiff-n3-20260504_203107/tabdiff_train_meta.json @@ -0,0 +1,5 @@ +{ + "exp_name": "adapter_learnable", + "dataname": "pipeline_n3", + "steps": 100 +} \ No newline at end of file diff --git a/hyperparameter/n3/tabdiff/tabdiff-n3-20260504_203107/tabular_bundle/pipeline_n3/X_cat_test.npy b/hyperparameter/n3/tabdiff/tabdiff-n3-20260504_203107/tabular_bundle/pipeline_n3/X_cat_test.npy new file mode 100644 index 0000000000000000000000000000000000000000..76306e45faf838d072c21b887a4c1d43d486dc1b --- /dev/null +++ b/hyperparameter/n3/tabdiff/tabdiff-n3-20260504_203107/tabular_bundle/pipeline_n3/X_cat_test.npy @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:87f6573fdfd40c6332a9ef925bcb48bc20f08b3a6f72b6dceb949ae36d1871f7 +size 128 diff --git a/hyperparameter/n3/tabdiff/tabdiff-n3-20260504_203107/tabular_bundle/pipeline_n3/X_cat_train.npy b/hyperparameter/n3/tabdiff/tabdiff-n3-20260504_203107/tabular_bundle/pipeline_n3/X_cat_train.npy new file mode 100644 index 0000000000000000000000000000000000000000..76306e45faf838d072c21b887a4c1d43d486dc1b --- /dev/null +++ b/hyperparameter/n3/tabdiff/tabdiff-n3-20260504_203107/tabular_bundle/pipeline_n3/X_cat_train.npy @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:87f6573fdfd40c6332a9ef925bcb48bc20f08b3a6f72b6dceb949ae36d1871f7 +size 128 diff --git a/hyperparameter/n3/tabdiff/tabdiff-n3-20260504_203107/tabular_bundle/pipeline_n3/X_cat_val.npy b/hyperparameter/n3/tabdiff/tabdiff-n3-20260504_203107/tabular_bundle/pipeline_n3/X_cat_val.npy new file mode 100644 index 0000000000000000000000000000000000000000..76306e45faf838d072c21b887a4c1d43d486dc1b --- /dev/null +++ b/hyperparameter/n3/tabdiff/tabdiff-n3-20260504_203107/tabular_bundle/pipeline_n3/X_cat_val.npy @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:87f6573fdfd40c6332a9ef925bcb48bc20f08b3a6f72b6dceb949ae36d1871f7 +size 128 diff --git a/hyperparameter/n3/tabdiff/tabdiff-n3-20260504_203107/tabular_bundle/pipeline_n3/X_num_test.npy b/hyperparameter/n3/tabdiff/tabdiff-n3-20260504_203107/tabular_bundle/pipeline_n3/X_num_test.npy new file mode 100644 index 0000000000000000000000000000000000000000..94beb8413ef55592710518365965f4cb503523ee --- /dev/null +++ b/hyperparameter/n3/tabdiff/tabdiff-n3-20260504_203107/tabular_bundle/pipeline_n3/X_num_test.npy @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:093d8f405d764277d5a007953f25ab6466f0857f71f0d8f3c437463fb5bf240a +size 172520 diff --git a/hyperparameter/n3/tabdiff/tabdiff-n3-20260504_203107/tabular_bundle/pipeline_n3/X_num_train.npy b/hyperparameter/n3/tabdiff/tabdiff-n3-20260504_203107/tabular_bundle/pipeline_n3/X_num_train.npy new file mode 100644 index 0000000000000000000000000000000000000000..94beb8413ef55592710518365965f4cb503523ee --- /dev/null +++ b/hyperparameter/n3/tabdiff/tabdiff-n3-20260504_203107/tabular_bundle/pipeline_n3/X_num_train.npy @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:093d8f405d764277d5a007953f25ab6466f0857f71f0d8f3c437463fb5bf240a +size 172520 diff --git a/hyperparameter/n3/tabdiff/tabdiff-n3-20260504_203107/tabular_bundle/pipeline_n3/X_num_val.npy b/hyperparameter/n3/tabdiff/tabdiff-n3-20260504_203107/tabular_bundle/pipeline_n3/X_num_val.npy new file mode 100644 index 0000000000000000000000000000000000000000..94beb8413ef55592710518365965f4cb503523ee --- /dev/null +++ b/hyperparameter/n3/tabdiff/tabdiff-n3-20260504_203107/tabular_bundle/pipeline_n3/X_num_val.npy @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:093d8f405d764277d5a007953f25ab6466f0857f71f0d8f3c437463fb5bf240a +size 172520 diff --git a/hyperparameter/n3/tabdiff/tabdiff-n3-20260504_203107/tabular_bundle/pipeline_n3/info.json b/hyperparameter/n3/tabdiff/tabdiff-n3-20260504_203107/tabular_bundle/pipeline_n3/info.json new file mode 100644 index 0000000000000000000000000000000000000000..8b5f7b3a1a0c4ba2d967287826b9f5c5fd7619de --- /dev/null +++ b/hyperparameter/n3/tabdiff/tabdiff-n3-20260504_203107/tabular_bundle/pipeline_n3/info.json @@ -0,0 +1,139 @@ +{ + "name": "pipeline_n3", + "task_type": "multiclass", + "n_num_features": 11, + "n_cat_features": 0, + "train_size": 3918, + "test_num": 3918, + "val_num": 3918, + "train_num": 3918, + "bundle_note": "val/test matrices are train copies (train-only policy; no real held-out rows).", + "num_col_idx": [ + 0, + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10 + ], + "cat_col_idx": [], + "target_col_idx": [ + 11 + ], + "column_names": [ + "fixed acidity", + "volatile acidity", + "citric acid", + "residual sugar", + "chlorides", + "free sulfur dioxide", + "total sulfur dioxide", + "density", + "pH", + "sulphates", + "alcohol", + "quality" + ], + "int_col_idx": [], + "int_columns": [], + "int_col_idx_wrt_num": [], + "metadata": { + "columns": { + "0": { + "sdtype": "numerical", + "computer_representation": "Float" + }, + "1": { + "sdtype": "numerical", + "computer_representation": "Float" + }, + "2": { + "sdtype": "numerical", + "computer_representation": "Float" + }, + "3": { + "sdtype": "numerical", + "computer_representation": "Float" + }, + "4": { + "sdtype": "numerical", + "computer_representation": "Float" + }, + "5": { + "sdtype": "numerical", + "computer_representation": "Float" + }, + "6": { + "sdtype": "numerical", + "computer_representation": "Float" + }, + "7": { + "sdtype": "numerical", + "computer_representation": "Float" + }, + "8": { + "sdtype": "numerical", + "computer_representation": "Float" + }, + "9": { + "sdtype": "numerical", + "computer_representation": "Float" + }, + "10": { + "sdtype": "numerical", + "computer_representation": "Float" + }, + "11": { + "sdtype": "categorical" + } + } + }, + "idx_mapping": { + "0": 0, + "1": 1, + "2": 2, + "3": 3, + "4": 4, + "5": 5, + "6": 6, + "7": 7, + "8": 8, + "9": 9, + "10": 10, + "11": 11 + }, + "inverse_idx_mapping": { + "0": 0, + "1": 1, + "2": 2, + "3": 3, + "4": 4, + "5": 5, + "6": 6, + "7": 7, + "8": 8, + "9": 9, + "10": 10, + "11": 11 + }, + "idx_name_mapping": { + "0": "fixed acidity", + "1": "volatile acidity", + "2": "citric acid", + "3": "residual sugar", + "4": "chlorides", + "5": "free sulfur dioxide", + "6": "total sulfur dioxide", + "7": "density", + "8": "pH", + "9": "sulphates", + "10": "alcohol", + "11": "quality" + }, + "n_classes": 7 +} \ No newline at end of file diff --git a/hyperparameter/n3/tabdiff/tabdiff-n3-20260504_203107/tabular_bundle/pipeline_n3/real.csv b/hyperparameter/n3/tabdiff/tabdiff-n3-20260504_203107/tabular_bundle/pipeline_n3/real.csv new file mode 100644 index 0000000000000000000000000000000000000000..b4297372e8b9b076d6c03efa023cbf23edee4f56 --- /dev/null +++ b/hyperparameter/n3/tabdiff/tabdiff-n3-20260504_203107/tabular_bundle/pipeline_n3/real.csv @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:c80ba530c12c66a78530db5d98ead5f78fcdad2fe5eccccbc28d9649ceaa6023 +size 229825 diff --git a/hyperparameter/n3/tabdiff/tabdiff-n3-20260504_203107/tabular_bundle/pipeline_n3/test.csv b/hyperparameter/n3/tabdiff/tabdiff-n3-20260504_203107/tabular_bundle/pipeline_n3/test.csv new file mode 100644 index 0000000000000000000000000000000000000000..b4297372e8b9b076d6c03efa023cbf23edee4f56 --- /dev/null +++ b/hyperparameter/n3/tabdiff/tabdiff-n3-20260504_203107/tabular_bundle/pipeline_n3/test.csv @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:c80ba530c12c66a78530db5d98ead5f78fcdad2fe5eccccbc28d9649ceaa6023 +size 229825 diff --git a/hyperparameter/n3/tabdiff/tabdiff-n3-20260504_203107/tabular_bundle/pipeline_n3/val.csv b/hyperparameter/n3/tabdiff/tabdiff-n3-20260504_203107/tabular_bundle/pipeline_n3/val.csv new file mode 100644 index 0000000000000000000000000000000000000000..b4297372e8b9b076d6c03efa023cbf23edee4f56 --- /dev/null +++ b/hyperparameter/n3/tabdiff/tabdiff-n3-20260504_203107/tabular_bundle/pipeline_n3/val.csv @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:c80ba530c12c66a78530db5d98ead5f78fcdad2fe5eccccbc28d9649ceaa6023 +size 229825 diff --git a/hyperparameter/n3/tabdiff/tabdiff-n3-20260504_203107/tabular_bundle/pipeline_n3/y_test.npy b/hyperparameter/n3/tabdiff/tabdiff-n3-20260504_203107/tabular_bundle/pipeline_n3/y_test.npy new file mode 100644 index 0000000000000000000000000000000000000000..1f737a58cd26592130c3604aaa90044a451eb576 --- /dev/null +++ b/hyperparameter/n3/tabdiff/tabdiff-n3-20260504_203107/tabular_bundle/pipeline_n3/y_test.npy @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:85ed37c52f0ea54dfd3a476dcfafff02d61e92783748e5ee9aadfad20578bcb1 +size 31472 diff --git a/hyperparameter/n3/tabdiff/tabdiff-n3-20260504_203107/tabular_bundle/pipeline_n3/y_train.npy b/hyperparameter/n3/tabdiff/tabdiff-n3-20260504_203107/tabular_bundle/pipeline_n3/y_train.npy new file mode 100644 index 0000000000000000000000000000000000000000..1f737a58cd26592130c3604aaa90044a451eb576 --- /dev/null +++ b/hyperparameter/n3/tabdiff/tabdiff-n3-20260504_203107/tabular_bundle/pipeline_n3/y_train.npy @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:85ed37c52f0ea54dfd3a476dcfafff02d61e92783748e5ee9aadfad20578bcb1 +size 31472 diff --git a/hyperparameter/n3/tabdiff/tabdiff-n3-20260504_203107/tabular_bundle/pipeline_n3/y_val.npy b/hyperparameter/n3/tabdiff/tabdiff-n3-20260504_203107/tabular_bundle/pipeline_n3/y_val.npy new file mode 100644 index 0000000000000000000000000000000000000000..1f737a58cd26592130c3604aaa90044a451eb576 --- /dev/null +++ b/hyperparameter/n3/tabdiff/tabdiff-n3-20260504_203107/tabular_bundle/pipeline_n3/y_val.npy @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:85ed37c52f0ea54dfd3a476dcfafff02d61e92783748e5ee9aadfad20578bcb1 +size 31472 diff --git a/hyperparameter/n3/tabdiff/tabdiff-n3-20260504_203107/train_20260504_203107.log b/hyperparameter/n3/tabdiff/tabdiff-n3-20260504_203107/train_20260504_203107.log new file mode 100644 index 0000000000000000000000000000000000000000..bb5a2822a502db93dcbcb4519e288b98e385c3db --- /dev/null +++ b/hyperparameter/n3/tabdiff/tabdiff-n3-20260504_203107/train_20260504_203107.log @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:cdf12a619dcc0ee2d68fcc3f1faeb0a3e88782bf435bea902476176b234930e6 +size 66012 diff --git a/hyperparameter/n3/tabdiff/tabdiff-n3-20260504_203341/_tabdiff_gen.py b/hyperparameter/n3/tabdiff/tabdiff-n3-20260504_203341/_tabdiff_gen.py new file mode 100644 index 0000000000000000000000000000000000000000..f668ebaf5dccd1934f486584face3704c35234aa --- /dev/null +++ b/hyperparameter/n3/tabdiff/tabdiff-n3-20260504_203341/_tabdiff_gen.py @@ -0,0 +1,36 @@ + +import os, shutil, subprocess, sys +td = r"/workspace/TabDiff" +name = r"pipeline_n3" +src = r"/work/output-Benchmark-trainonly-v1/n3/tabdiff/tabdiff-n3-20260504_203341/tabular_bundle/pipeline_n3" +dst_data = os.path.join(td, "data", name) +dst_syn = os.path.join(td, "synthetic", name) +shutil.rmtree(dst_data, ignore_errors=True) +shutil.copytree(src, dst_data) +os.makedirs(dst_syn, exist_ok=True) +for fn in ("real.csv", "test.csv", "val.csv"): + shutil.copy(os.path.join(src, fn), os.path.join(dst_syn, fn)) +os.chdir(td) +os.environ["PYTHONPATH"] = td + os.pathsep + os.environ.get("PYTHONPATH", "") +subprocess.check_call([ + sys.executable, "-m", "tabdiff.main", + "--dataname", name, "--mode", "test", "--gpu", "0", + "--no_wandb", "--exp_name", r"adapter_learnable", + "--ckpt_path", r"/workspace/TabDiff/tabdiff/ckpt/pipeline_n3/adapter_learnable/model_500.pt", + "--num_samples_to_generate", str(int(3918)), +]) +# test() 写入 tabdiff/result////samples.csv +import glob as g +base = os.path.join(td, "tabdiff", "result", name, r"adapter_learnable") +best = None +best_t = -1.0 +for root, _, files in os.walk(base): + if "samples.csv" in files: + p = os.path.join(root, "samples.csv") + t = os.path.getmtime(p) + if t > best_t: + best_t = t + best = p +if not best: + raise SystemExit("tabdiff: no samples.csv under " + base) +shutil.copy(best, r"/work/output-Benchmark-trainonly-v1/n3/tabdiff/tabdiff-n3-20260504_203341/tabdiff-n3-3918-20260504_203751.csv") diff --git a/hyperparameter/n3/tabdiff/tabdiff-n3-20260504_203341/_tabdiff_train.py b/hyperparameter/n3/tabdiff/tabdiff-n3-20260504_203341/_tabdiff_train.py new file mode 100644 index 0000000000000000000000000000000000000000..6bfbabbf61d058cce967fcb105bb20f249bb0222 --- /dev/null +++ b/hyperparameter/n3/tabdiff/tabdiff-n3-20260504_203341/_tabdiff_train.py @@ -0,0 +1,21 @@ + +import os, shutil, subprocess, sys +td = r"/workspace/TabDiff" +name = r"pipeline_n3" +src = r"/work/output-Benchmark-trainonly-v1/n3/tabdiff/tabdiff-n3-20260504_203341/tabular_bundle/pipeline_n3" +dst_data = os.path.join(td, "data", name) +dst_syn = os.path.join(td, "synthetic", name) +shutil.rmtree(dst_data, ignore_errors=True) +shutil.copytree(src, dst_data) +os.makedirs(dst_syn, exist_ok=True) +for fn in ("real.csv", "test.csv", "val.csv"): + shutil.copy(os.path.join(src, fn), os.path.join(dst_syn, fn)) +os.chdir(td) +os.environ["PYTHONPATH"] = td + os.pathsep + os.environ.get("PYTHONPATH", "") +os.environ["TABDIFF_SMOKE_STEPS"] = "200" +os.environ["TABDIFF_ADAPTER_TRAIN"] = "1" +subprocess.check_call([ + sys.executable, "-m", "tabdiff.main", + "--dataname", name, "--mode", "train", "--gpu", "0", + "--no_wandb", "--exp_name", r"adapter_learnable", +]) diff --git a/hyperparameter/n3/tabdiff/tabdiff-n3-20260504_203341/gen_20260504_203751.log b/hyperparameter/n3/tabdiff/tabdiff-n3-20260504_203341/gen_20260504_203751.log new file mode 100644 index 0000000000000000000000000000000000000000..b7476b9f7f0da8d157102f944397edf88bba028a --- /dev/null +++ b/hyperparameter/n3/tabdiff/tabdiff-n3-20260504_203341/gen_20260504_203751.log @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:5269501c0d862dfcba54f9e9d1d683884a6d9c2a6cc08c27995e10feea88e457 +size 5863 diff --git a/hyperparameter/n3/tabdiff/tabdiff-n3-20260504_203341/input_snapshot.json b/hyperparameter/n3/tabdiff/tabdiff-n3-20260504_203341/input_snapshot.json new file mode 100644 index 0000000000000000000000000000000000000000..751cd5fa38e2fbd0a4680d9f58579382404e5586 --- /dev/null +++ b/hyperparameter/n3/tabdiff/tabdiff-n3-20260504_203341/input_snapshot.json @@ -0,0 +1,36 @@ +{ + "dataset_id": "n3", + "model": "tabdiff", + "inputs": { + "train_csv": { + "path": "/data/jialinzhang/SynthesizePipeline-server/DatasetNew/n3/n3-train.csv", + "exists": true, + "size": 211519, + "sha256": "2160a06db2fea02adb0ebb79d8d853bd2544580be301e71f6e8deeb1489a9009" + }, + "val_csv": { + "path": "/data/jialinzhang/SynthesizePipeline-server/DatasetNew/n3/n3-val.csv", + "exists": true, + "size": 26499, + "sha256": "d5ccfee07dfa9e7bdee5bb87642b43828e09f74c6cc0266a3d19d9feaa83106e" + }, + "test_csv": { + "path": "/data/jialinzhang/SynthesizePipeline-server/DatasetNew/n3/n3-test.csv", + "exists": true, + "size": 26676, + "sha256": "6f83aacb0d1747b95e287352a7fff5d9d65a1c127b773852346c68485c4ede47" + }, + "profile_json": { + "path": "/data/jialinzhang/SynthesizePipeline-server/DatasetNew/artifacts/data_core/tabular/n3/n3-dataset_profile.json", + "exists": true, + "size": 5235, + "sha256": "23d2e5904a2ca90cbf8d6e3c75887681721e9b90cc705c31a680c11513d0c46f" + }, + "contract_json": { + "path": "/data/jialinzhang/SynthesizePipeline-server/DatasetNew/artifacts/data_core/tabular/n3/n3-dataset_contract_v1.json", + "exists": true, + "size": 6281, + "sha256": "c0cc56f5fe28e1b65927255c6e3c2b0e9479862c2ec6f2fea1664da36c9a3a09" + } + } +} \ No newline at end of file diff --git a/hyperparameter/n3/tabdiff/tabdiff-n3-20260504_203341/models_tabdiff/trained.pt b/hyperparameter/n3/tabdiff/tabdiff-n3-20260504_203341/models_tabdiff/trained.pt new file mode 100644 index 0000000000000000000000000000000000000000..bc319a55a9c7152a1137f968b6fa1c735125ad11 --- /dev/null +++ b/hyperparameter/n3/tabdiff/tabdiff-n3-20260504_203341/models_tabdiff/trained.pt @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:306660b8aad4549267c68390b017e15ddb9bc06a02c80515eb72a97ae31a81eb +size 74 diff --git a/hyperparameter/n3/tabdiff/tabdiff-n3-20260504_203341/public_gate/normalized_schema_snapshot.json b/hyperparameter/n3/tabdiff/tabdiff-n3-20260504_203341/public_gate/normalized_schema_snapshot.json new file mode 100644 index 0000000000000000000000000000000000000000..c41fe304503de23190a02e6cbfafa35b3bf134d3 --- /dev/null +++ b/hyperparameter/n3/tabdiff/tabdiff-n3-20260504_203341/public_gate/normalized_schema_snapshot.json @@ -0,0 +1,259 @@ +{ + "dataset_id": "n3", + "target_column": "quality", + "task_type": "classification", + "columns": [ + { + "name": "fixed acidity", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 66, + "unique_ratio": 0.016845, + "example_values": [ + "7.1", + "8.5", + "6.4", + "6.8", + "7.6" + ] + } + }, + { + "name": "volatile acidity", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 121, + "unique_ratio": 0.030883, + "example_values": [ + "0.31", + "0.21", + "0.24", + "0.43", + "0.27" + ] + } + }, + { + "name": "citric acid", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 85, + "unique_ratio": 0.021695, + "example_values": [ + "0.17", + "0.41", + "0.31", + "0.25", + "0.3" + ] + } + }, + { + "name": "residual sugar", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 296, + "unique_ratio": 0.075549, + "example_values": [ + "1", + "4.3", + "2.8", + "13", + "12.9" + ] + } + }, + { + "name": "chlorides", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 147, + "unique_ratio": 0.037519, + "example_values": [ + "0.042", + "0.036", + "0.038", + "0.047", + "0.033" + ] + } + }, + { + "name": "free sulfur dioxide", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 120, + "unique_ratio": 0.030628, + "example_values": [ + "21", + "24", + "41", + "43", + "69" + ] + } + }, + { + "name": "total sulfur dioxide", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 244, + "unique_ratio": 0.062277, + "example_values": [ + "144", + "99", + "114", + "132", + "160" + ] + } + }, + { + "name": "density", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 839, + "unique_ratio": 0.21414, + "example_values": [ + "0.99304", + "0.9947", + "0.99155", + "0.98975", + "0.99705" + ] + } + }, + { + "name": "pH", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 100, + "unique_ratio": 0.025523, + "example_values": [ + "3.13", + "3.18", + "3.37", + "3.21", + "3.16" + ] + } + }, + { + "name": "sulphates", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 78, + "unique_ratio": 0.019908, + "example_values": [ + "0.4", + "0.53", + "0.66", + "0.47", + "0.5" + ] + } + }, + { + "name": "alcohol", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 97, + "unique_ratio": 0.024758, + "example_values": [ + "9.6", + "9.7", + "11.7", + "13.4", + "8.8" + ] + } + }, + { + "name": "quality", + "role": "target", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 7, + "unique_ratio": 0.001787, + "example_values": [ + "5", + "6", + "7", + "8", + "3" + ] + } + } + ] +} \ No newline at end of file diff --git a/hyperparameter/n3/tabdiff/tabdiff-n3-20260504_203341/public_gate/public_gate_report.json b/hyperparameter/n3/tabdiff/tabdiff-n3-20260504_203341/public_gate/public_gate_report.json new file mode 100644 index 0000000000000000000000000000000000000000..93b97319f739e39079d6c6549fd2020f8a6dac25 --- /dev/null +++ b/hyperparameter/n3/tabdiff/tabdiff-n3-20260504_203341/public_gate/public_gate_report.json @@ -0,0 +1,37 @@ +{ + "dataset_id": "n3", + "status": "pass", + "checks": [ + { + "check_id": "PG001_csv_parse_ok", + "status": "pass" + }, + { + "check_id": "PG002_split_header_consistent", + "status": "pass" + }, + { + "check_id": "PG003_profile_header_match", + "status": "pass" + }, + { + "check_id": "PG004_missing_token_normalized", + "status": "pass" + }, + { + "check_id": "PG005_semantic_type_validated", + "status": "pass" + }, + { + "check_id": "PG006_target_defined_and_valid", + "status": "pass" + } + ], + "target_column": "quality", + "task_type": "classification", + "input_splits": { + "train": "/data/jialinzhang/SynthesizePipeline-server/DatasetNew/n3/n3-train.csv", + "val": "/data/jialinzhang/SynthesizePipeline-server/DatasetNew/n3/n3-val.csv", + "test": "/data/jialinzhang/SynthesizePipeline-server/DatasetNew/n3/n3-test.csv" + } +} \ No newline at end of file diff --git a/hyperparameter/n3/tabdiff/tabdiff-n3-20260504_203341/public_gate/staged_input_manifest.json b/hyperparameter/n3/tabdiff/tabdiff-n3-20260504_203341/public_gate/staged_input_manifest.json new file mode 100644 index 0000000000000000000000000000000000000000..083114ce40985b587b8df94ee77b89c9b25f25ad --- /dev/null +++ b/hyperparameter/n3/tabdiff/tabdiff-n3-20260504_203341/public_gate/staged_input_manifest.json @@ -0,0 +1,264 @@ +{ + "dataset_id": "n3", + "target_column": "quality", + "task_type": "classification", + "train_csv": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/n3/tabdiff/tabdiff-n3-20260504_203341/staged/public/train.csv", + "val_csv": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/n3/tabdiff/tabdiff-n3-20260504_203341/staged/public/val.csv", + "test_csv": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/n3/tabdiff/tabdiff-n3-20260504_203341/staged/public/test.csv", + "features_json": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/n3/tabdiff/tabdiff-n3-20260504_203341/staged/public/staged_features.json", + "public_gate_report": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/n3/tabdiff/tabdiff-n3-20260504_203341/public_gate/public_gate_report.json", + "column_schema": [ + { + "name": "fixed acidity", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 66, + "unique_ratio": 0.016845, + "example_values": [ + "7.1", + "8.5", + "6.4", + "6.8", + "7.6" + ] + } + }, + { + "name": "volatile acidity", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 121, + "unique_ratio": 0.030883, + "example_values": [ + "0.31", + "0.21", + "0.24", + "0.43", + "0.27" + ] + } + }, + { + "name": "citric acid", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 85, + "unique_ratio": 0.021695, + "example_values": [ + "0.17", + "0.41", + "0.31", + "0.25", + "0.3" + ] + } + }, + { + "name": "residual sugar", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 296, + "unique_ratio": 0.075549, + "example_values": [ + "1", + "4.3", + "2.8", + "13", + "12.9" + ] + } + }, + { + "name": "chlorides", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 147, + "unique_ratio": 0.037519, + "example_values": [ + "0.042", + "0.036", + "0.038", + "0.047", + "0.033" + ] + } + }, + { + "name": "free sulfur dioxide", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 120, + "unique_ratio": 0.030628, + "example_values": [ + "21", + "24", + "41", + "43", + "69" + ] + } + }, + { + "name": "total sulfur dioxide", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 244, + "unique_ratio": 0.062277, + "example_values": [ + "144", + "99", + "114", + "132", + "160" + ] + } + }, + { + "name": "density", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 839, + "unique_ratio": 0.21414, + "example_values": [ + "0.99304", + "0.9947", + "0.99155", + "0.98975", + "0.99705" + ] + } + }, + { + "name": "pH", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 100, + "unique_ratio": 0.025523, + "example_values": [ + "3.13", + "3.18", + "3.37", + "3.21", + "3.16" + ] + } + }, + { + "name": "sulphates", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 78, + "unique_ratio": 0.019908, + "example_values": [ + "0.4", + "0.53", + "0.66", + "0.47", + "0.5" + ] + } + }, + { + "name": "alcohol", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 97, + "unique_ratio": 0.024758, + "example_values": [ + "9.6", + "9.7", + "11.7", + "13.4", + "8.8" + ] + } + }, + { + "name": "quality", + "role": "target", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 7, + "unique_ratio": 0.001787, + "example_values": [ + "5", + "6", + "7", + "8", + "3" + ] + } + } + ] +} \ No newline at end of file diff --git a/hyperparameter/n3/tabdiff/tabdiff-n3-20260504_203341/run_config.json b/hyperparameter/n3/tabdiff/tabdiff-n3-20260504_203341/run_config.json new file mode 100644 index 0000000000000000000000000000000000000000..b666ef56a1ea07b78da22de579fb3307991c069b --- /dev/null +++ b/hyperparameter/n3/tabdiff/tabdiff-n3-20260504_203341/run_config.json @@ -0,0 +1,40 @@ +{ + "schema_version": 1, + "recorded_at": "2026-05-04T20:33:41", + "dataset_id": "n3", + "model": "tabdiff", + "work_dir": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/n3/tabdiff/tabdiff-n3-20260504_203341", + "dataset_source_requested": "new", + "dataset_source_resolved": "new", + "cli_args": { + "model": "tabdiff", + "dataset": "n3", + "dataset_source": "new", + "train": true, + "generate": true, + "num_rows": 0, + "epochs": 200, + "output_dir": null, + "model_dir": null, + "work_dir": null, + "resume": false, + "no_stats": false + }, + "resolved": { + "num_rows": 3918, + "model_path": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/n3/tabdiff/tabdiff-n3-20260504_203341/models_tabdiff/trained.pt", + "output_csv": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/n3/tabdiff/tabdiff-n3-20260504_203341/tabdiff-n3-3918-20260504_203751.csv" + }, + "input_artifacts": { + "public_gate_report": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/n3/tabdiff/tabdiff-n3-20260504_203341/public_gate/public_gate_report.json", + "public_manifest": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/n3/tabdiff/tabdiff-n3-20260504_203341/public_gate/staged_input_manifest.json", + "model_manifest": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/n3/tabdiff/tabdiff-n3-20260504_203341/staged/tabdiff/model_input_manifest.json", + "train_csv": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/n3/tabdiff/tabdiff-n3-20260504_203341/staged/public/train.csv", + "features_json": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/n3/tabdiff/tabdiff-n3-20260504_203341/staged/public/staged_features.json", + "target_column": "quality", + "task_type": "classification" + }, + "env_overrides": { + "BENCHMARK_TABDIFF_GPUS": "device=3" + } +} \ No newline at end of file diff --git a/hyperparameter/n3/tabdiff/tabdiff-n3-20260504_203341/runtime_result.json b/hyperparameter/n3/tabdiff/tabdiff-n3-20260504_203341/runtime_result.json new file mode 100644 index 0000000000000000000000000000000000000000..93dcc27d12bdd82ce97345b9b39b1f1d02bd6a8e --- /dev/null +++ b/hyperparameter/n3/tabdiff/tabdiff-n3-20260504_203341/runtime_result.json @@ -0,0 +1,27 @@ +{ + "dataset_id": "n3", + "model": "tabdiff", + "run_id": "tabdiff-n3-20260504_203341", + "public_gate_status": "pass", + "adapter_ready_status": "pass", + "train_status": "success", + "generate_status": "success", + "reason_code": null, + "reason_detail": null, + "artifacts": { + "synthetic_csv": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/n3/tabdiff/tabdiff-n3-20260504_203341/tabdiff-n3-3918-20260504_203751.csv", + "model_path": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/n3/tabdiff/tabdiff-n3-20260504_203341/models_tabdiff/trained.pt" + }, + "timings": { + "train": { + "started_at": "2026-05-04T20:33:41", + "ended_at": "2026-05-04T20:37:51", + "duration_sec": 249.753 + }, + "generate": { + "started_at": "2026-05-04T20:37:51", + "ended_at": "2026-05-04T20:38:05", + "duration_sec": 13.81 + } + } +} \ No newline at end of file diff --git a/hyperparameter/n3/tabdiff/tabdiff-n3-20260504_203341/staged/public/staged_features.json b/hyperparameter/n3/tabdiff/tabdiff-n3-20260504_203341/staged/public/staged_features.json new file mode 100644 index 0000000000000000000000000000000000000000..08fe4d766d091d2f2ddba724a16b9509cbe4c390 --- /dev/null +++ b/hyperparameter/n3/tabdiff/tabdiff-n3-20260504_203341/staged/public/staged_features.json @@ -0,0 +1,62 @@ +[ + { + "feature_name": "fixed acidity", + "data_type": "continuous", + "is_target": false + }, + { + "feature_name": "volatile acidity", + "data_type": "continuous", + "is_target": false + }, + { + "feature_name": "citric acid", + "data_type": "continuous", + "is_target": false + }, + { + "feature_name": "residual sugar", + "data_type": "continuous", + "is_target": false + }, + { + "feature_name": "chlorides", + "data_type": "continuous", + "is_target": false + }, + { + "feature_name": "free sulfur dioxide", + "data_type": "continuous", + "is_target": false + }, + { + "feature_name": "total sulfur dioxide", + "data_type": "continuous", + "is_target": false + }, + { + "feature_name": "density", + "data_type": "continuous", + "is_target": false + }, + { + "feature_name": "pH", + "data_type": "continuous", + "is_target": false + }, + { + "feature_name": "sulphates", + "data_type": "continuous", + "is_target": false + }, + { + "feature_name": "alcohol", + "data_type": "continuous", + "is_target": false + }, + { + "feature_name": "quality", + "data_type": "continuous", + "is_target": true + } +] \ No newline at end of file diff --git a/hyperparameter/n3/tabdiff/tabdiff-n3-20260504_203341/staged/public/test.csv b/hyperparameter/n3/tabdiff/tabdiff-n3-20260504_203341/staged/public/test.csv new file mode 100644 index 0000000000000000000000000000000000000000..db5cd50d3746410ea470625fa2ba2c8e9775cc0d --- /dev/null +++ b/hyperparameter/n3/tabdiff/tabdiff-n3-20260504_203341/staged/public/test.csv @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:19e107152a94432e2a37ff045c00cfe35e1be30208b1553080d7dd0ede256d3b +size 28944 diff --git a/hyperparameter/n3/tabdiff/tabdiff-n3-20260504_203341/staged/public/train.csv b/hyperparameter/n3/tabdiff/tabdiff-n3-20260504_203341/staged/public/train.csv new file mode 100644 index 0000000000000000000000000000000000000000..87ca26726fe82ccbaa397919305b043c17eb374e --- /dev/null +++ b/hyperparameter/n3/tabdiff/tabdiff-n3-20260504_203341/staged/public/train.csv @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:7813c8cca73ba4bfc6559215257b341c21e459980ad17ae6ddc809306bc9a0b9 +size 229945 diff --git a/hyperparameter/n3/tabdiff/tabdiff-n3-20260504_203341/staged/public/val.csv b/hyperparameter/n3/tabdiff/tabdiff-n3-20260504_203341/staged/public/val.csv new file mode 100644 index 0000000000000000000000000000000000000000..6acf84c76c47093b513c46d5503972a2dff275c0 --- /dev/null +++ b/hyperparameter/n3/tabdiff/tabdiff-n3-20260504_203341/staged/public/val.csv @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:cf5979d9675567d9d6642640c9b84fc6c49e492604144723c30f50516c05cee6 +size 28791 diff --git a/hyperparameter/n3/tabdiff/tabdiff-n3-20260504_203341/staged/tabdiff/adapter_report.json b/hyperparameter/n3/tabdiff/tabdiff-n3-20260504_203341/staged/tabdiff/adapter_report.json new file mode 100644 index 0000000000000000000000000000000000000000..03c6a5ddd72d0cb93e0a190e5c90dd651486b570 --- /dev/null +++ b/hyperparameter/n3/tabdiff/tabdiff-n3-20260504_203341/staged/tabdiff/adapter_report.json @@ -0,0 +1,7 @@ +{ + "adapter_ready_status": "pass", + "adapter_fail_reason_code": null, + "adapter_fail_detail": null, + "adapter_transforms_applied": [], + "model_input_manifest": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/n3/tabdiff/tabdiff-n3-20260504_203341/staged/tabdiff/model_input_manifest.json" +} \ No newline at end of file diff --git a/hyperparameter/n3/tabdiff/tabdiff-n3-20260504_203341/staged/tabdiff/adapter_transforms_applied.json b/hyperparameter/n3/tabdiff/tabdiff-n3-20260504_203341/staged/tabdiff/adapter_transforms_applied.json new file mode 100644 index 0000000000000000000000000000000000000000..0637a088a01e8ddab3bf3fa98dbe804cbde1a0dc --- /dev/null +++ b/hyperparameter/n3/tabdiff/tabdiff-n3-20260504_203341/staged/tabdiff/adapter_transforms_applied.json @@ -0,0 +1 @@ +[] \ No newline at end of file diff --git a/hyperparameter/n3/tabdiff/tabdiff-n3-20260504_203341/staged/tabdiff/model_input_manifest.json b/hyperparameter/n3/tabdiff/tabdiff-n3-20260504_203341/staged/tabdiff/model_input_manifest.json new file mode 100644 index 0000000000000000000000000000000000000000..e1ffe3e412a8355382afcdd7a507c3a1c2ec5186 --- /dev/null +++ b/hyperparameter/n3/tabdiff/tabdiff-n3-20260504_203341/staged/tabdiff/model_input_manifest.json @@ -0,0 +1,266 @@ +{ + "dataset_id": "n3", + "model": "tabdiff", + "target_column": "quality", + "task_type": "classification", + "column_schema": [ + { + "name": "fixed acidity", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 66, + "unique_ratio": 0.016845, + "example_values": [ + "7.1", + "8.5", + "6.4", + "6.8", + "7.6" + ] + } + }, + { + "name": "volatile acidity", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 121, + "unique_ratio": 0.030883, + "example_values": [ + "0.31", + "0.21", + "0.24", + "0.43", + "0.27" + ] + } + }, + { + "name": "citric acid", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 85, + "unique_ratio": 0.021695, + "example_values": [ + "0.17", + "0.41", + "0.31", + "0.25", + "0.3" + ] + } + }, + { + "name": "residual sugar", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 296, + "unique_ratio": 0.075549, + "example_values": [ + "1", + "4.3", + "2.8", + "13", + "12.9" + ] + } + }, + { + "name": "chlorides", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 147, + "unique_ratio": 0.037519, + "example_values": [ + "0.042", + "0.036", + "0.038", + "0.047", + "0.033" + ] + } + }, + { + "name": "free sulfur dioxide", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 120, + "unique_ratio": 0.030628, + "example_values": [ + "21", + "24", + "41", + "43", + "69" + ] + } + }, + { + "name": "total sulfur dioxide", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 244, + "unique_ratio": 0.062277, + "example_values": [ + "144", + "99", + "114", + "132", + "160" + ] + } + }, + { + "name": "density", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 839, + "unique_ratio": 0.21414, + "example_values": [ + "0.99304", + "0.9947", + "0.99155", + "0.98975", + "0.99705" + ] + } + }, + { + "name": "pH", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 100, + "unique_ratio": 0.025523, + "example_values": [ + "3.13", + "3.18", + "3.37", + "3.21", + "3.16" + ] + } + }, + { + "name": "sulphates", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 78, + "unique_ratio": 0.019908, + "example_values": [ + "0.4", + "0.53", + "0.66", + "0.47", + "0.5" + ] + } + }, + { + "name": "alcohol", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 97, + "unique_ratio": 0.024758, + "example_values": [ + "9.6", + "9.7", + "11.7", + "13.4", + "8.8" + ] + } + }, + { + "name": "quality", + "role": "target", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 7, + "unique_ratio": 0.001787, + "example_values": [ + "5", + "6", + "7", + "8", + "3" + ] + } + } + ], + "public_manifest": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/n3/tabdiff/tabdiff-n3-20260504_203341/public_gate/staged_input_manifest.json", + "train_csv": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/n3/tabdiff/tabdiff-n3-20260504_203341/staged/public/train.csv", + "val_csv": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/n3/tabdiff/tabdiff-n3-20260504_203341/staged/public/val.csv", + "test_csv": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/n3/tabdiff/tabdiff-n3-20260504_203341/staged/public/test.csv", + "features_json": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/n3/tabdiff/tabdiff-n3-20260504_203341/staged/public/staged_features.json", + "public_gate_report": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/n3/tabdiff/tabdiff-n3-20260504_203341/public_gate/public_gate_report.json" +} \ No newline at end of file diff --git a/hyperparameter/n3/tabdiff/tabdiff-n3-20260504_203341/tabdiff-n3-3918-20260504_203751.csv b/hyperparameter/n3/tabdiff/tabdiff-n3-20260504_203341/tabdiff-n3-3918-20260504_203751.csv new file mode 100644 index 0000000000000000000000000000000000000000..cd97aeb897cb4f9c6c4de3338c73f2a44bffb19f --- /dev/null +++ b/hyperparameter/n3/tabdiff/tabdiff-n3-20260504_203341/tabdiff-n3-3918-20260504_203751.csv @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:4f184c94cafc6a22b86dbac6af7838f0caf054fabdd25e1a8f24bde27031c268 +size 340980 diff --git a/hyperparameter/n3/tabdiff/tabdiff-n3-20260504_203341/tabdiff_train_meta.json b/hyperparameter/n3/tabdiff/tabdiff-n3-20260504_203341/tabdiff_train_meta.json new file mode 100644 index 0000000000000000000000000000000000000000..5189129ca9e352c62945c8a03d613b4a31e9beeb --- /dev/null +++ b/hyperparameter/n3/tabdiff/tabdiff-n3-20260504_203341/tabdiff_train_meta.json @@ -0,0 +1,5 @@ +{ + "exp_name": "adapter_learnable", + "dataname": "pipeline_n3", + "steps": 200 +} \ No newline at end of file diff --git a/hyperparameter/n3/tabdiff/tabdiff-n3-20260504_203341/tabular_bundle/pipeline_n3/X_cat_test.npy b/hyperparameter/n3/tabdiff/tabdiff-n3-20260504_203341/tabular_bundle/pipeline_n3/X_cat_test.npy new file mode 100644 index 0000000000000000000000000000000000000000..76306e45faf838d072c21b887a4c1d43d486dc1b --- /dev/null +++ b/hyperparameter/n3/tabdiff/tabdiff-n3-20260504_203341/tabular_bundle/pipeline_n3/X_cat_test.npy @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:87f6573fdfd40c6332a9ef925bcb48bc20f08b3a6f72b6dceb949ae36d1871f7 +size 128 diff --git a/hyperparameter/n3/tabdiff/tabdiff-n3-20260504_203341/tabular_bundle/pipeline_n3/X_cat_train.npy b/hyperparameter/n3/tabdiff/tabdiff-n3-20260504_203341/tabular_bundle/pipeline_n3/X_cat_train.npy new file mode 100644 index 0000000000000000000000000000000000000000..76306e45faf838d072c21b887a4c1d43d486dc1b --- /dev/null +++ b/hyperparameter/n3/tabdiff/tabdiff-n3-20260504_203341/tabular_bundle/pipeline_n3/X_cat_train.npy @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:87f6573fdfd40c6332a9ef925bcb48bc20f08b3a6f72b6dceb949ae36d1871f7 +size 128 diff --git a/hyperparameter/n3/tabdiff/tabdiff-n3-20260504_203341/tabular_bundle/pipeline_n3/X_cat_val.npy b/hyperparameter/n3/tabdiff/tabdiff-n3-20260504_203341/tabular_bundle/pipeline_n3/X_cat_val.npy new file mode 100644 index 0000000000000000000000000000000000000000..76306e45faf838d072c21b887a4c1d43d486dc1b --- /dev/null +++ b/hyperparameter/n3/tabdiff/tabdiff-n3-20260504_203341/tabular_bundle/pipeline_n3/X_cat_val.npy @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:87f6573fdfd40c6332a9ef925bcb48bc20f08b3a6f72b6dceb949ae36d1871f7 +size 128 diff --git a/hyperparameter/n3/tabdiff/tabdiff-n3-20260504_203341/tabular_bundle/pipeline_n3/X_num_test.npy b/hyperparameter/n3/tabdiff/tabdiff-n3-20260504_203341/tabular_bundle/pipeline_n3/X_num_test.npy new file mode 100644 index 0000000000000000000000000000000000000000..94beb8413ef55592710518365965f4cb503523ee --- /dev/null +++ b/hyperparameter/n3/tabdiff/tabdiff-n3-20260504_203341/tabular_bundle/pipeline_n3/X_num_test.npy @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:093d8f405d764277d5a007953f25ab6466f0857f71f0d8f3c437463fb5bf240a +size 172520 diff --git a/hyperparameter/n3/tabdiff/tabdiff-n3-20260504_203341/tabular_bundle/pipeline_n3/X_num_train.npy b/hyperparameter/n3/tabdiff/tabdiff-n3-20260504_203341/tabular_bundle/pipeline_n3/X_num_train.npy new file mode 100644 index 0000000000000000000000000000000000000000..94beb8413ef55592710518365965f4cb503523ee --- /dev/null +++ b/hyperparameter/n3/tabdiff/tabdiff-n3-20260504_203341/tabular_bundle/pipeline_n3/X_num_train.npy @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:093d8f405d764277d5a007953f25ab6466f0857f71f0d8f3c437463fb5bf240a +size 172520 diff --git a/hyperparameter/n3/tabdiff/tabdiff-n3-20260504_203341/tabular_bundle/pipeline_n3/X_num_val.npy b/hyperparameter/n3/tabdiff/tabdiff-n3-20260504_203341/tabular_bundle/pipeline_n3/X_num_val.npy new file mode 100644 index 0000000000000000000000000000000000000000..94beb8413ef55592710518365965f4cb503523ee --- /dev/null +++ b/hyperparameter/n3/tabdiff/tabdiff-n3-20260504_203341/tabular_bundle/pipeline_n3/X_num_val.npy @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:093d8f405d764277d5a007953f25ab6466f0857f71f0d8f3c437463fb5bf240a +size 172520 diff --git a/hyperparameter/n3/tabdiff/tabdiff-n3-20260504_203341/tabular_bundle/pipeline_n3/info.json b/hyperparameter/n3/tabdiff/tabdiff-n3-20260504_203341/tabular_bundle/pipeline_n3/info.json new file mode 100644 index 0000000000000000000000000000000000000000..8b5f7b3a1a0c4ba2d967287826b9f5c5fd7619de --- /dev/null +++ b/hyperparameter/n3/tabdiff/tabdiff-n3-20260504_203341/tabular_bundle/pipeline_n3/info.json @@ -0,0 +1,139 @@ +{ + "name": "pipeline_n3", + "task_type": "multiclass", + "n_num_features": 11, + "n_cat_features": 0, + "train_size": 3918, + "test_num": 3918, + "val_num": 3918, + "train_num": 3918, + "bundle_note": "val/test matrices are train copies (train-only policy; no real held-out rows).", + "num_col_idx": [ + 0, + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10 + ], + "cat_col_idx": [], + "target_col_idx": [ + 11 + ], + "column_names": [ + "fixed acidity", + "volatile acidity", + "citric acid", + "residual sugar", + "chlorides", + "free sulfur dioxide", + "total sulfur dioxide", + "density", + "pH", + "sulphates", + "alcohol", + "quality" + ], + "int_col_idx": [], + "int_columns": [], + "int_col_idx_wrt_num": [], + "metadata": { + "columns": { + "0": { + "sdtype": "numerical", + "computer_representation": "Float" + }, + "1": { + "sdtype": "numerical", + "computer_representation": "Float" + }, + "2": { + "sdtype": "numerical", + "computer_representation": "Float" + }, + "3": { + "sdtype": "numerical", + "computer_representation": "Float" + }, + "4": { + "sdtype": "numerical", + "computer_representation": "Float" + }, + "5": { + "sdtype": "numerical", + "computer_representation": "Float" + }, + "6": { + "sdtype": "numerical", + "computer_representation": "Float" + }, + "7": { + "sdtype": "numerical", + "computer_representation": "Float" + }, + "8": { + "sdtype": "numerical", + "computer_representation": "Float" + }, + "9": { + "sdtype": "numerical", + "computer_representation": "Float" + }, + "10": { + "sdtype": "numerical", + "computer_representation": "Float" + }, + "11": { + "sdtype": "categorical" + } + } + }, + "idx_mapping": { + "0": 0, + "1": 1, + "2": 2, + "3": 3, + "4": 4, + "5": 5, + "6": 6, + "7": 7, + "8": 8, + "9": 9, + "10": 10, + "11": 11 + }, + "inverse_idx_mapping": { + "0": 0, + "1": 1, + "2": 2, + "3": 3, + "4": 4, + "5": 5, + "6": 6, + "7": 7, + "8": 8, + "9": 9, + "10": 10, + "11": 11 + }, + "idx_name_mapping": { + "0": "fixed acidity", + "1": "volatile acidity", + "2": "citric acid", + "3": "residual sugar", + "4": "chlorides", + "5": "free sulfur dioxide", + "6": "total sulfur dioxide", + "7": "density", + "8": "pH", + "9": "sulphates", + "10": "alcohol", + "11": "quality" + }, + "n_classes": 7 +} \ No newline at end of file diff --git a/hyperparameter/n3/tabdiff/tabdiff-n3-20260504_203341/tabular_bundle/pipeline_n3/real.csv b/hyperparameter/n3/tabdiff/tabdiff-n3-20260504_203341/tabular_bundle/pipeline_n3/real.csv new file mode 100644 index 0000000000000000000000000000000000000000..b4297372e8b9b076d6c03efa023cbf23edee4f56 --- /dev/null +++ b/hyperparameter/n3/tabdiff/tabdiff-n3-20260504_203341/tabular_bundle/pipeline_n3/real.csv @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:c80ba530c12c66a78530db5d98ead5f78fcdad2fe5eccccbc28d9649ceaa6023 +size 229825 diff --git a/hyperparameter/n3/tabdiff/tabdiff-n3-20260504_203341/tabular_bundle/pipeline_n3/test.csv b/hyperparameter/n3/tabdiff/tabdiff-n3-20260504_203341/tabular_bundle/pipeline_n3/test.csv new file mode 100644 index 0000000000000000000000000000000000000000..b4297372e8b9b076d6c03efa023cbf23edee4f56 --- /dev/null +++ b/hyperparameter/n3/tabdiff/tabdiff-n3-20260504_203341/tabular_bundle/pipeline_n3/test.csv @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:c80ba530c12c66a78530db5d98ead5f78fcdad2fe5eccccbc28d9649ceaa6023 +size 229825 diff --git a/hyperparameter/n3/tabdiff/tabdiff-n3-20260504_203341/tabular_bundle/pipeline_n3/val.csv b/hyperparameter/n3/tabdiff/tabdiff-n3-20260504_203341/tabular_bundle/pipeline_n3/val.csv new file mode 100644 index 0000000000000000000000000000000000000000..b4297372e8b9b076d6c03efa023cbf23edee4f56 --- /dev/null +++ b/hyperparameter/n3/tabdiff/tabdiff-n3-20260504_203341/tabular_bundle/pipeline_n3/val.csv @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:c80ba530c12c66a78530db5d98ead5f78fcdad2fe5eccccbc28d9649ceaa6023 +size 229825 diff --git a/hyperparameter/n3/tabdiff/tabdiff-n3-20260504_203341/tabular_bundle/pipeline_n3/y_test.npy b/hyperparameter/n3/tabdiff/tabdiff-n3-20260504_203341/tabular_bundle/pipeline_n3/y_test.npy new file mode 100644 index 0000000000000000000000000000000000000000..1f737a58cd26592130c3604aaa90044a451eb576 --- /dev/null +++ b/hyperparameter/n3/tabdiff/tabdiff-n3-20260504_203341/tabular_bundle/pipeline_n3/y_test.npy @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:85ed37c52f0ea54dfd3a476dcfafff02d61e92783748e5ee9aadfad20578bcb1 +size 31472 diff --git a/hyperparameter/n3/tabdiff/tabdiff-n3-20260504_203341/tabular_bundle/pipeline_n3/y_train.npy b/hyperparameter/n3/tabdiff/tabdiff-n3-20260504_203341/tabular_bundle/pipeline_n3/y_train.npy new file mode 100644 index 0000000000000000000000000000000000000000..1f737a58cd26592130c3604aaa90044a451eb576 --- /dev/null +++ b/hyperparameter/n3/tabdiff/tabdiff-n3-20260504_203341/tabular_bundle/pipeline_n3/y_train.npy @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:85ed37c52f0ea54dfd3a476dcfafff02d61e92783748e5ee9aadfad20578bcb1 +size 31472 diff --git a/hyperparameter/n3/tabdiff/tabdiff-n3-20260504_203341/tabular_bundle/pipeline_n3/y_val.npy b/hyperparameter/n3/tabdiff/tabdiff-n3-20260504_203341/tabular_bundle/pipeline_n3/y_val.npy new file mode 100644 index 0000000000000000000000000000000000000000..1f737a58cd26592130c3604aaa90044a451eb576 --- /dev/null +++ b/hyperparameter/n3/tabdiff/tabdiff-n3-20260504_203341/tabular_bundle/pipeline_n3/y_val.npy @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:85ed37c52f0ea54dfd3a476dcfafff02d61e92783748e5ee9aadfad20578bcb1 +size 31472 diff --git a/hyperparameter/n3/tabdiff/tabdiff-n3-20260504_203341/train_20260504_203341.log b/hyperparameter/n3/tabdiff/tabdiff-n3-20260504_203341/train_20260504_203341.log new file mode 100644 index 0000000000000000000000000000000000000000..6f6810c6952c4a7387123f0f5a6a0e389e7cff9b --- /dev/null +++ b/hyperparameter/n3/tabdiff/tabdiff-n3-20260504_203341/train_20260504_203341.log @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:378ea443a85305e741a7997988b13fda34584b794cfe75c526d836e363ea0f54 +size 121349 diff --git a/hyperparameter/n3/tabdiff/tabdiff-n3-20260504_203818/_tabdiff_gen.py b/hyperparameter/n3/tabdiff/tabdiff-n3-20260504_203818/_tabdiff_gen.py new file mode 100644 index 0000000000000000000000000000000000000000..0c936187be58a3331deabfb41f3275e61040d845 --- /dev/null +++ b/hyperparameter/n3/tabdiff/tabdiff-n3-20260504_203818/_tabdiff_gen.py @@ -0,0 +1,36 @@ + +import os, shutil, subprocess, sys +td = r"/workspace/TabDiff" +name = r"pipeline_n3" +src = r"/work/output-Benchmark-trainonly-v1/n3/tabdiff/tabdiff-n3-20260504_203818/tabular_bundle/pipeline_n3" +dst_data = os.path.join(td, "data", name) +dst_syn = os.path.join(td, "synthetic", name) +shutil.rmtree(dst_data, ignore_errors=True) +shutil.copytree(src, dst_data) +os.makedirs(dst_syn, exist_ok=True) +for fn in ("real.csv", "test.csv", "val.csv"): + shutil.copy(os.path.join(src, fn), os.path.join(dst_syn, fn)) +os.chdir(td) +os.environ["PYTHONPATH"] = td + os.pathsep + os.environ.get("PYTHONPATH", "") +subprocess.check_call([ + sys.executable, "-m", "tabdiff.main", + "--dataname", name, "--mode", "test", "--gpu", "0", + "--no_wandb", "--exp_name", r"adapter_learnable", + "--ckpt_path", r"/workspace/TabDiff/tabdiff/ckpt/pipeline_n3/adapter_learnable/model_500.pt", + "--num_samples_to_generate", str(int(3918)), +]) +# test() 写入 tabdiff/result////samples.csv +import glob as g +base = os.path.join(td, "tabdiff", "result", name, r"adapter_learnable") +best = None +best_t = -1.0 +for root, _, files in os.walk(base): + if "samples.csv" in files: + p = os.path.join(root, "samples.csv") + t = os.path.getmtime(p) + if t > best_t: + best_t = t + best = p +if not best: + raise SystemExit("tabdiff: no samples.csv under " + base) +shutil.copy(best, r"/work/output-Benchmark-trainonly-v1/n3/tabdiff/tabdiff-n3-20260504_203818/tabdiff-n3-3918-20260504_204749.csv") diff --git a/hyperparameter/n3/tabdiff/tabdiff-n3-20260504_203818/_tabdiff_train.py b/hyperparameter/n3/tabdiff/tabdiff-n3-20260504_203818/_tabdiff_train.py new file mode 100644 index 0000000000000000000000000000000000000000..ff5768e9901fcb12387f5548ad2f7fad92bea7fb --- /dev/null +++ b/hyperparameter/n3/tabdiff/tabdiff-n3-20260504_203818/_tabdiff_train.py @@ -0,0 +1,21 @@ + +import os, shutil, subprocess, sys +td = r"/workspace/TabDiff" +name = r"pipeline_n3" +src = r"/work/output-Benchmark-trainonly-v1/n3/tabdiff/tabdiff-n3-20260504_203818/tabular_bundle/pipeline_n3" +dst_data = os.path.join(td, "data", name) +dst_syn = os.path.join(td, "synthetic", name) +shutil.rmtree(dst_data, ignore_errors=True) +shutil.copytree(src, dst_data) +os.makedirs(dst_syn, exist_ok=True) +for fn in ("real.csv", "test.csv", "val.csv"): + shutil.copy(os.path.join(src, fn), os.path.join(dst_syn, fn)) +os.chdir(td) +os.environ["PYTHONPATH"] = td + os.pathsep + os.environ.get("PYTHONPATH", "") +os.environ["TABDIFF_SMOKE_STEPS"] = "500" +os.environ["TABDIFF_ADAPTER_TRAIN"] = "1" +subprocess.check_call([ + sys.executable, "-m", "tabdiff.main", + "--dataname", name, "--mode", "train", "--gpu", "0", + "--no_wandb", "--exp_name", r"adapter_learnable", +]) diff --git a/hyperparameter/n3/tabdiff/tabdiff-n3-20260504_203818/gen_20260504_204749.log b/hyperparameter/n3/tabdiff/tabdiff-n3-20260504_203818/gen_20260504_204749.log new file mode 100644 index 0000000000000000000000000000000000000000..3a3fd2d74ee9f338ce1fc73444a0d919059338c4 --- /dev/null +++ b/hyperparameter/n3/tabdiff/tabdiff-n3-20260504_203818/gen_20260504_204749.log @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:238327bc8bc8b0fbb1b69a7440a4db5e8dda21183bb89745bd235e0b1031bae8 +size 4787 diff --git a/hyperparameter/n3/tabdiff/tabdiff-n3-20260504_203818/input_snapshot.json b/hyperparameter/n3/tabdiff/tabdiff-n3-20260504_203818/input_snapshot.json new file mode 100644 index 0000000000000000000000000000000000000000..751cd5fa38e2fbd0a4680d9f58579382404e5586 --- /dev/null +++ b/hyperparameter/n3/tabdiff/tabdiff-n3-20260504_203818/input_snapshot.json @@ -0,0 +1,36 @@ +{ + "dataset_id": "n3", + "model": "tabdiff", + "inputs": { + "train_csv": { + "path": "/data/jialinzhang/SynthesizePipeline-server/DatasetNew/n3/n3-train.csv", + "exists": true, + "size": 211519, + "sha256": "2160a06db2fea02adb0ebb79d8d853bd2544580be301e71f6e8deeb1489a9009" + }, + "val_csv": { + "path": "/data/jialinzhang/SynthesizePipeline-server/DatasetNew/n3/n3-val.csv", + "exists": true, + "size": 26499, + "sha256": "d5ccfee07dfa9e7bdee5bb87642b43828e09f74c6cc0266a3d19d9feaa83106e" + }, + "test_csv": { + "path": "/data/jialinzhang/SynthesizePipeline-server/DatasetNew/n3/n3-test.csv", + "exists": true, + "size": 26676, + "sha256": "6f83aacb0d1747b95e287352a7fff5d9d65a1c127b773852346c68485c4ede47" + }, + "profile_json": { + "path": "/data/jialinzhang/SynthesizePipeline-server/DatasetNew/artifacts/data_core/tabular/n3/n3-dataset_profile.json", + "exists": true, + "size": 5235, + "sha256": "23d2e5904a2ca90cbf8d6e3c75887681721e9b90cc705c31a680c11513d0c46f" + }, + "contract_json": { + "path": "/data/jialinzhang/SynthesizePipeline-server/DatasetNew/artifacts/data_core/tabular/n3/n3-dataset_contract_v1.json", + "exists": true, + "size": 6281, + "sha256": "c0cc56f5fe28e1b65927255c6e3c2b0e9479862c2ec6f2fea1664da36c9a3a09" + } + } +} \ No newline at end of file diff --git a/hyperparameter/n3/tabdiff/tabdiff-n3-20260504_203818/models_tabdiff/trained.pt b/hyperparameter/n3/tabdiff/tabdiff-n3-20260504_203818/models_tabdiff/trained.pt new file mode 100644 index 0000000000000000000000000000000000000000..bc319a55a9c7152a1137f968b6fa1c735125ad11 --- /dev/null +++ b/hyperparameter/n3/tabdiff/tabdiff-n3-20260504_203818/models_tabdiff/trained.pt @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:306660b8aad4549267c68390b017e15ddb9bc06a02c80515eb72a97ae31a81eb +size 74 diff --git a/hyperparameter/n3/tabdiff/tabdiff-n3-20260504_203818/public_gate/normalized_schema_snapshot.json b/hyperparameter/n3/tabdiff/tabdiff-n3-20260504_203818/public_gate/normalized_schema_snapshot.json new file mode 100644 index 0000000000000000000000000000000000000000..c41fe304503de23190a02e6cbfafa35b3bf134d3 --- /dev/null +++ b/hyperparameter/n3/tabdiff/tabdiff-n3-20260504_203818/public_gate/normalized_schema_snapshot.json @@ -0,0 +1,259 @@ +{ + "dataset_id": "n3", + "target_column": "quality", + "task_type": "classification", + "columns": [ + { + "name": "fixed acidity", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 66, + "unique_ratio": 0.016845, + "example_values": [ + "7.1", + "8.5", + "6.4", + "6.8", + "7.6" + ] + } + }, + { + "name": "volatile acidity", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 121, + "unique_ratio": 0.030883, + "example_values": [ + "0.31", + "0.21", + "0.24", + "0.43", + "0.27" + ] + } + }, + { + "name": "citric acid", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 85, + "unique_ratio": 0.021695, + "example_values": [ + "0.17", + "0.41", + "0.31", + "0.25", + "0.3" + ] + } + }, + { + "name": "residual sugar", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 296, + "unique_ratio": 0.075549, + "example_values": [ + "1", + "4.3", + "2.8", + "13", + "12.9" + ] + } + }, + { + "name": "chlorides", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 147, + "unique_ratio": 0.037519, + "example_values": [ + "0.042", + "0.036", + "0.038", + "0.047", + "0.033" + ] + } + }, + { + "name": "free sulfur dioxide", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 120, + "unique_ratio": 0.030628, + "example_values": [ + "21", + "24", + "41", + "43", + "69" + ] + } + }, + { + "name": "total sulfur dioxide", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 244, + "unique_ratio": 0.062277, + "example_values": [ + "144", + "99", + "114", + "132", + "160" + ] + } + }, + { + "name": "density", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 839, + "unique_ratio": 0.21414, + "example_values": [ + "0.99304", + "0.9947", + "0.99155", + "0.98975", + "0.99705" + ] + } + }, + { + "name": "pH", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 100, + "unique_ratio": 0.025523, + "example_values": [ + "3.13", + "3.18", + "3.37", + "3.21", + "3.16" + ] + } + }, + { + "name": "sulphates", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 78, + "unique_ratio": 0.019908, + "example_values": [ + "0.4", + "0.53", + "0.66", + "0.47", + "0.5" + ] + } + }, + { + "name": "alcohol", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 97, + "unique_ratio": 0.024758, + "example_values": [ + "9.6", + "9.7", + "11.7", + "13.4", + "8.8" + ] + } + }, + { + "name": "quality", + "role": "target", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 7, + "unique_ratio": 0.001787, + "example_values": [ + "5", + "6", + "7", + "8", + "3" + ] + } + } + ] +} \ No newline at end of file diff --git a/hyperparameter/n3/tabdiff/tabdiff-n3-20260504_203818/public_gate/public_gate_report.json b/hyperparameter/n3/tabdiff/tabdiff-n3-20260504_203818/public_gate/public_gate_report.json new file mode 100644 index 0000000000000000000000000000000000000000..93b97319f739e39079d6c6549fd2020f8a6dac25 --- /dev/null +++ b/hyperparameter/n3/tabdiff/tabdiff-n3-20260504_203818/public_gate/public_gate_report.json @@ -0,0 +1,37 @@ +{ + "dataset_id": "n3", + "status": "pass", + "checks": [ + { + "check_id": "PG001_csv_parse_ok", + "status": "pass" + }, + { + "check_id": "PG002_split_header_consistent", + "status": "pass" + }, + { + "check_id": "PG003_profile_header_match", + "status": "pass" + }, + { + "check_id": "PG004_missing_token_normalized", + "status": "pass" + }, + { + "check_id": "PG005_semantic_type_validated", + "status": "pass" + }, + { + "check_id": "PG006_target_defined_and_valid", + "status": "pass" + } + ], + "target_column": "quality", + "task_type": "classification", + "input_splits": { + "train": "/data/jialinzhang/SynthesizePipeline-server/DatasetNew/n3/n3-train.csv", + "val": "/data/jialinzhang/SynthesizePipeline-server/DatasetNew/n3/n3-val.csv", + "test": "/data/jialinzhang/SynthesizePipeline-server/DatasetNew/n3/n3-test.csv" + } +} \ No newline at end of file diff --git a/hyperparameter/n3/tabdiff/tabdiff-n3-20260504_203818/public_gate/staged_input_manifest.json b/hyperparameter/n3/tabdiff/tabdiff-n3-20260504_203818/public_gate/staged_input_manifest.json new file mode 100644 index 0000000000000000000000000000000000000000..7ede96c2e30e8eaf9660fde39afe824bd1a7e22e --- /dev/null +++ b/hyperparameter/n3/tabdiff/tabdiff-n3-20260504_203818/public_gate/staged_input_manifest.json @@ -0,0 +1,264 @@ +{ + "dataset_id": "n3", + "target_column": "quality", + "task_type": "classification", + "train_csv": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/n3/tabdiff/tabdiff-n3-20260504_203818/staged/public/train.csv", + "val_csv": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/n3/tabdiff/tabdiff-n3-20260504_203818/staged/public/val.csv", + "test_csv": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/n3/tabdiff/tabdiff-n3-20260504_203818/staged/public/test.csv", + "features_json": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/n3/tabdiff/tabdiff-n3-20260504_203818/staged/public/staged_features.json", + "public_gate_report": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/n3/tabdiff/tabdiff-n3-20260504_203818/public_gate/public_gate_report.json", + "column_schema": [ + { + "name": "fixed acidity", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 66, + "unique_ratio": 0.016845, + "example_values": [ + "7.1", + "8.5", + "6.4", + "6.8", + "7.6" + ] + } + }, + { + "name": "volatile acidity", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 121, + "unique_ratio": 0.030883, + "example_values": [ + "0.31", + "0.21", + "0.24", + "0.43", + "0.27" + ] + } + }, + { + "name": "citric acid", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 85, + "unique_ratio": 0.021695, + "example_values": [ + "0.17", + "0.41", + "0.31", + "0.25", + "0.3" + ] + } + }, + { + "name": "residual sugar", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 296, + "unique_ratio": 0.075549, + "example_values": [ + "1", + "4.3", + "2.8", + "13", + "12.9" + ] + } + }, + { + "name": "chlorides", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 147, + "unique_ratio": 0.037519, + "example_values": [ + "0.042", + "0.036", + "0.038", + "0.047", + "0.033" + ] + } + }, + { + "name": "free sulfur dioxide", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 120, + "unique_ratio": 0.030628, + "example_values": [ + "21", + "24", + "41", + "43", + "69" + ] + } + }, + { + "name": "total sulfur dioxide", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 244, + "unique_ratio": 0.062277, + "example_values": [ + "144", + "99", + "114", + "132", + "160" + ] + } + }, + { + "name": "density", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 839, + "unique_ratio": 0.21414, + "example_values": [ + "0.99304", + "0.9947", + "0.99155", + "0.98975", + "0.99705" + ] + } + }, + { + "name": "pH", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 100, + "unique_ratio": 0.025523, + "example_values": [ + "3.13", + "3.18", + "3.37", + "3.21", + "3.16" + ] + } + }, + { + "name": "sulphates", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 78, + "unique_ratio": 0.019908, + "example_values": [ + "0.4", + "0.53", + "0.66", + "0.47", + "0.5" + ] + } + }, + { + "name": "alcohol", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 97, + "unique_ratio": 0.024758, + "example_values": [ + "9.6", + "9.7", + "11.7", + "13.4", + "8.8" + ] + } + }, + { + "name": "quality", + "role": "target", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 7, + "unique_ratio": 0.001787, + "example_values": [ + "5", + "6", + "7", + "8", + "3" + ] + } + } + ] +} \ No newline at end of file diff --git a/hyperparameter/n3/tabdiff/tabdiff-n3-20260504_203818/run_config.json b/hyperparameter/n3/tabdiff/tabdiff-n3-20260504_203818/run_config.json new file mode 100644 index 0000000000000000000000000000000000000000..d0f73a1036899ce8a1967711df66d7b361f16735 --- /dev/null +++ b/hyperparameter/n3/tabdiff/tabdiff-n3-20260504_203818/run_config.json @@ -0,0 +1,40 @@ +{ + "schema_version": 1, + "recorded_at": "2026-05-04T20:38:18", + "dataset_id": "n3", + "model": "tabdiff", + "work_dir": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/n3/tabdiff/tabdiff-n3-20260504_203818", + "dataset_source_requested": "new", + "dataset_source_resolved": "new", + "cli_args": { + "model": "tabdiff", + "dataset": "n3", + "dataset_source": "new", + "train": true, + "generate": true, + "num_rows": 0, + "epochs": 500, + "output_dir": null, + "model_dir": null, + "work_dir": null, + "resume": false, + "no_stats": false + }, + "resolved": { + "num_rows": 3918, + "model_path": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/n3/tabdiff/tabdiff-n3-20260504_203818/models_tabdiff/trained.pt", + "output_csv": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/n3/tabdiff/tabdiff-n3-20260504_203818/tabdiff-n3-3918-20260504_204749.csv" + }, + "input_artifacts": { + "public_gate_report": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/n3/tabdiff/tabdiff-n3-20260504_203818/public_gate/public_gate_report.json", + "public_manifest": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/n3/tabdiff/tabdiff-n3-20260504_203818/public_gate/staged_input_manifest.json", + "model_manifest": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/n3/tabdiff/tabdiff-n3-20260504_203818/staged/tabdiff/model_input_manifest.json", + "train_csv": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/n3/tabdiff/tabdiff-n3-20260504_203818/staged/public/train.csv", + "features_json": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/n3/tabdiff/tabdiff-n3-20260504_203818/staged/public/staged_features.json", + "target_column": "quality", + "task_type": "classification" + }, + "env_overrides": { + "BENCHMARK_TABDIFF_GPUS": "device=3" + } +} \ No newline at end of file diff --git a/hyperparameter/n3/tabdiff/tabdiff-n3-20260504_203818/runtime_result.json b/hyperparameter/n3/tabdiff/tabdiff-n3-20260504_203818/runtime_result.json new file mode 100644 index 0000000000000000000000000000000000000000..2e9daec6b315b1107fcc73cce6a5836b2f6cd736 --- /dev/null +++ b/hyperparameter/n3/tabdiff/tabdiff-n3-20260504_203818/runtime_result.json @@ -0,0 +1,27 @@ +{ + "dataset_id": "n3", + "model": "tabdiff", + "run_id": "tabdiff-n3-20260504_203818", + "public_gate_status": "pass", + "adapter_ready_status": "pass", + "train_status": "success", + "generate_status": "success", + "reason_code": null, + "reason_detail": null, + "artifacts": { + "synthetic_csv": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/n3/tabdiff/tabdiff-n3-20260504_203818/tabdiff-n3-3918-20260504_204749.csv", + "model_path": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/n3/tabdiff/tabdiff-n3-20260504_203818/models_tabdiff/trained.pt" + }, + "timings": { + "train": { + "started_at": "2026-05-04T20:38:18", + "ended_at": "2026-05-04T20:47:49", + "duration_sec": 571.204 + }, + "generate": { + "started_at": "2026-05-04T20:47:49", + "ended_at": "2026-05-04T20:48:01", + "duration_sec": 11.779 + } + } +} \ No newline at end of file diff --git a/hyperparameter/n3/tabdiff/tabdiff-n3-20260504_203818/staged/public/staged_features.json b/hyperparameter/n3/tabdiff/tabdiff-n3-20260504_203818/staged/public/staged_features.json new file mode 100644 index 0000000000000000000000000000000000000000..08fe4d766d091d2f2ddba724a16b9509cbe4c390 --- /dev/null +++ b/hyperparameter/n3/tabdiff/tabdiff-n3-20260504_203818/staged/public/staged_features.json @@ -0,0 +1,62 @@ +[ + { + "feature_name": "fixed acidity", + "data_type": "continuous", + "is_target": false + }, + { + "feature_name": "volatile acidity", + "data_type": "continuous", + "is_target": false + }, + { + "feature_name": "citric acid", + "data_type": "continuous", + "is_target": false + }, + { + "feature_name": "residual sugar", + "data_type": "continuous", + "is_target": false + }, + { + "feature_name": "chlorides", + "data_type": "continuous", + "is_target": false + }, + { + "feature_name": "free sulfur dioxide", + "data_type": "continuous", + "is_target": false + }, + { + "feature_name": "total sulfur dioxide", + "data_type": "continuous", + "is_target": false + }, + { + "feature_name": "density", + "data_type": "continuous", + "is_target": false + }, + { + "feature_name": "pH", + "data_type": "continuous", + "is_target": false + }, + { + "feature_name": "sulphates", + "data_type": "continuous", + "is_target": false + }, + { + "feature_name": "alcohol", + "data_type": "continuous", + "is_target": false + }, + { + "feature_name": "quality", + "data_type": "continuous", + "is_target": true + } +] \ No newline at end of file diff --git a/hyperparameter/n3/tabdiff/tabdiff-n3-20260504_203818/staged/public/test.csv b/hyperparameter/n3/tabdiff/tabdiff-n3-20260504_203818/staged/public/test.csv new file mode 100644 index 0000000000000000000000000000000000000000..db5cd50d3746410ea470625fa2ba2c8e9775cc0d --- /dev/null +++ b/hyperparameter/n3/tabdiff/tabdiff-n3-20260504_203818/staged/public/test.csv @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:19e107152a94432e2a37ff045c00cfe35e1be30208b1553080d7dd0ede256d3b +size 28944 diff --git a/hyperparameter/n3/tabdiff/tabdiff-n3-20260504_203818/staged/public/train.csv b/hyperparameter/n3/tabdiff/tabdiff-n3-20260504_203818/staged/public/train.csv new file mode 100644 index 0000000000000000000000000000000000000000..87ca26726fe82ccbaa397919305b043c17eb374e --- /dev/null +++ b/hyperparameter/n3/tabdiff/tabdiff-n3-20260504_203818/staged/public/train.csv @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:7813c8cca73ba4bfc6559215257b341c21e459980ad17ae6ddc809306bc9a0b9 +size 229945 diff --git a/hyperparameter/n3/tabdiff/tabdiff-n3-20260504_203818/staged/public/val.csv b/hyperparameter/n3/tabdiff/tabdiff-n3-20260504_203818/staged/public/val.csv new file mode 100644 index 0000000000000000000000000000000000000000..6acf84c76c47093b513c46d5503972a2dff275c0 --- /dev/null +++ b/hyperparameter/n3/tabdiff/tabdiff-n3-20260504_203818/staged/public/val.csv @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:cf5979d9675567d9d6642640c9b84fc6c49e492604144723c30f50516c05cee6 +size 28791 diff --git a/hyperparameter/n3/tabdiff/tabdiff-n3-20260504_203818/staged/tabdiff/adapter_report.json b/hyperparameter/n3/tabdiff/tabdiff-n3-20260504_203818/staged/tabdiff/adapter_report.json new file mode 100644 index 0000000000000000000000000000000000000000..415896269bd73115c15330e16c074b24b322461f --- /dev/null +++ b/hyperparameter/n3/tabdiff/tabdiff-n3-20260504_203818/staged/tabdiff/adapter_report.json @@ -0,0 +1,7 @@ +{ + "adapter_ready_status": "pass", + "adapter_fail_reason_code": null, + "adapter_fail_detail": null, + "adapter_transforms_applied": [], + "model_input_manifest": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/n3/tabdiff/tabdiff-n3-20260504_203818/staged/tabdiff/model_input_manifest.json" +} \ No newline at end of file diff --git a/hyperparameter/n3/tabdiff/tabdiff-n3-20260504_203818/staged/tabdiff/adapter_transforms_applied.json b/hyperparameter/n3/tabdiff/tabdiff-n3-20260504_203818/staged/tabdiff/adapter_transforms_applied.json new file mode 100644 index 0000000000000000000000000000000000000000..0637a088a01e8ddab3bf3fa98dbe804cbde1a0dc --- /dev/null +++ b/hyperparameter/n3/tabdiff/tabdiff-n3-20260504_203818/staged/tabdiff/adapter_transforms_applied.json @@ -0,0 +1 @@ +[] \ No newline at end of file diff --git a/hyperparameter/n3/tabdiff/tabdiff-n3-20260504_203818/staged/tabdiff/model_input_manifest.json b/hyperparameter/n3/tabdiff/tabdiff-n3-20260504_203818/staged/tabdiff/model_input_manifest.json new file mode 100644 index 0000000000000000000000000000000000000000..744a5a28b60528ed0bfd2a9224f12447c308a6ba --- /dev/null +++ b/hyperparameter/n3/tabdiff/tabdiff-n3-20260504_203818/staged/tabdiff/model_input_manifest.json @@ -0,0 +1,266 @@ +{ + "dataset_id": "n3", + "model": "tabdiff", + "target_column": "quality", + "task_type": "classification", + "column_schema": [ + { + "name": "fixed acidity", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 66, + "unique_ratio": 0.016845, + "example_values": [ + "7.1", + "8.5", + "6.4", + "6.8", + "7.6" + ] + } + }, + { + "name": "volatile acidity", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 121, + "unique_ratio": 0.030883, + "example_values": [ + "0.31", + "0.21", + "0.24", + "0.43", + "0.27" + ] + } + }, + { + "name": "citric acid", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 85, + "unique_ratio": 0.021695, + "example_values": [ + "0.17", + "0.41", + "0.31", + "0.25", + "0.3" + ] + } + }, + { + "name": "residual sugar", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 296, + "unique_ratio": 0.075549, + "example_values": [ + "1", + "4.3", + "2.8", + "13", + "12.9" + ] + } + }, + { + "name": "chlorides", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 147, + "unique_ratio": 0.037519, + "example_values": [ + "0.042", + "0.036", + "0.038", + "0.047", + "0.033" + ] + } + }, + { + "name": "free sulfur dioxide", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 120, + "unique_ratio": 0.030628, + "example_values": [ + "21", + "24", + "41", + "43", + "69" + ] + } + }, + { + "name": "total sulfur dioxide", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 244, + "unique_ratio": 0.062277, + "example_values": [ + "144", + "99", + "114", + "132", + "160" + ] + } + }, + { + "name": "density", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 839, + "unique_ratio": 0.21414, + "example_values": [ + "0.99304", + "0.9947", + "0.99155", + "0.98975", + "0.99705" + ] + } + }, + { + "name": "pH", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 100, + "unique_ratio": 0.025523, + "example_values": [ + "3.13", + "3.18", + "3.37", + "3.21", + "3.16" + ] + } + }, + { + "name": "sulphates", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 78, + "unique_ratio": 0.019908, + "example_values": [ + "0.4", + "0.53", + "0.66", + "0.47", + "0.5" + ] + } + }, + { + "name": "alcohol", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 97, + "unique_ratio": 0.024758, + "example_values": [ + "9.6", + "9.7", + "11.7", + "13.4", + "8.8" + ] + } + }, + { + "name": "quality", + "role": "target", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 7, + "unique_ratio": 0.001787, + "example_values": [ + "5", + "6", + "7", + "8", + "3" + ] + } + } + ], + "public_manifest": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/n3/tabdiff/tabdiff-n3-20260504_203818/public_gate/staged_input_manifest.json", + "train_csv": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/n3/tabdiff/tabdiff-n3-20260504_203818/staged/public/train.csv", + "val_csv": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/n3/tabdiff/tabdiff-n3-20260504_203818/staged/public/val.csv", + "test_csv": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/n3/tabdiff/tabdiff-n3-20260504_203818/staged/public/test.csv", + "features_json": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/n3/tabdiff/tabdiff-n3-20260504_203818/staged/public/staged_features.json", + "public_gate_report": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/n3/tabdiff/tabdiff-n3-20260504_203818/public_gate/public_gate_report.json" +} \ No newline at end of file diff --git a/hyperparameter/n3/tabdiff/tabdiff-n3-20260504_203818/tabdiff-n3-3918-20260504_204749.csv b/hyperparameter/n3/tabdiff/tabdiff-n3-20260504_203818/tabdiff-n3-3918-20260504_204749.csv new file mode 100644 index 0000000000000000000000000000000000000000..c052b40dd03666123981d2a60532eb5d034016b4 --- /dev/null +++ b/hyperparameter/n3/tabdiff/tabdiff-n3-20260504_203818/tabdiff-n3-3918-20260504_204749.csv @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:7c3b85e71614c09f7afd83696caefb3b23d939341627e0cad26842e8602a8663 +size 338900 diff --git a/hyperparameter/n3/tabdiff/tabdiff-n3-20260504_203818/tabdiff_train_meta.json b/hyperparameter/n3/tabdiff/tabdiff-n3-20260504_203818/tabdiff_train_meta.json new file mode 100644 index 0000000000000000000000000000000000000000..776600291d2635685d4b5209ba433eddf0330eb2 --- /dev/null +++ b/hyperparameter/n3/tabdiff/tabdiff-n3-20260504_203818/tabdiff_train_meta.json @@ -0,0 +1,5 @@ +{ + "exp_name": "adapter_learnable", + "dataname": "pipeline_n3", + "steps": 500 +} \ No newline at end of file diff --git a/hyperparameter/n3/tabdiff/tabdiff-n3-20260504_203818/tabular_bundle/pipeline_n3/X_cat_test.npy b/hyperparameter/n3/tabdiff/tabdiff-n3-20260504_203818/tabular_bundle/pipeline_n3/X_cat_test.npy new file mode 100644 index 0000000000000000000000000000000000000000..76306e45faf838d072c21b887a4c1d43d486dc1b --- /dev/null +++ b/hyperparameter/n3/tabdiff/tabdiff-n3-20260504_203818/tabular_bundle/pipeline_n3/X_cat_test.npy @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:87f6573fdfd40c6332a9ef925bcb48bc20f08b3a6f72b6dceb949ae36d1871f7 +size 128 diff --git a/hyperparameter/n3/tabdiff/tabdiff-n3-20260504_203818/tabular_bundle/pipeline_n3/X_cat_train.npy b/hyperparameter/n3/tabdiff/tabdiff-n3-20260504_203818/tabular_bundle/pipeline_n3/X_cat_train.npy new file mode 100644 index 0000000000000000000000000000000000000000..76306e45faf838d072c21b887a4c1d43d486dc1b --- /dev/null +++ b/hyperparameter/n3/tabdiff/tabdiff-n3-20260504_203818/tabular_bundle/pipeline_n3/X_cat_train.npy @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:87f6573fdfd40c6332a9ef925bcb48bc20f08b3a6f72b6dceb949ae36d1871f7 +size 128 diff --git a/hyperparameter/n3/tabdiff/tabdiff-n3-20260504_203818/tabular_bundle/pipeline_n3/X_cat_val.npy b/hyperparameter/n3/tabdiff/tabdiff-n3-20260504_203818/tabular_bundle/pipeline_n3/X_cat_val.npy new file mode 100644 index 0000000000000000000000000000000000000000..76306e45faf838d072c21b887a4c1d43d486dc1b --- /dev/null +++ b/hyperparameter/n3/tabdiff/tabdiff-n3-20260504_203818/tabular_bundle/pipeline_n3/X_cat_val.npy @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:87f6573fdfd40c6332a9ef925bcb48bc20f08b3a6f72b6dceb949ae36d1871f7 +size 128 diff --git a/hyperparameter/n3/tabdiff/tabdiff-n3-20260504_203818/tabular_bundle/pipeline_n3/X_num_test.npy b/hyperparameter/n3/tabdiff/tabdiff-n3-20260504_203818/tabular_bundle/pipeline_n3/X_num_test.npy new file mode 100644 index 0000000000000000000000000000000000000000..94beb8413ef55592710518365965f4cb503523ee --- /dev/null +++ b/hyperparameter/n3/tabdiff/tabdiff-n3-20260504_203818/tabular_bundle/pipeline_n3/X_num_test.npy @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:093d8f405d764277d5a007953f25ab6466f0857f71f0d8f3c437463fb5bf240a +size 172520 diff --git a/hyperparameter/n3/tabdiff/tabdiff-n3-20260504_203818/tabular_bundle/pipeline_n3/X_num_train.npy b/hyperparameter/n3/tabdiff/tabdiff-n3-20260504_203818/tabular_bundle/pipeline_n3/X_num_train.npy new file mode 100644 index 0000000000000000000000000000000000000000..94beb8413ef55592710518365965f4cb503523ee --- /dev/null +++ b/hyperparameter/n3/tabdiff/tabdiff-n3-20260504_203818/tabular_bundle/pipeline_n3/X_num_train.npy @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:093d8f405d764277d5a007953f25ab6466f0857f71f0d8f3c437463fb5bf240a +size 172520 diff --git a/hyperparameter/n3/tabdiff/tabdiff-n3-20260504_203818/tabular_bundle/pipeline_n3/X_num_val.npy b/hyperparameter/n3/tabdiff/tabdiff-n3-20260504_203818/tabular_bundle/pipeline_n3/X_num_val.npy new file mode 100644 index 0000000000000000000000000000000000000000..94beb8413ef55592710518365965f4cb503523ee --- /dev/null +++ b/hyperparameter/n3/tabdiff/tabdiff-n3-20260504_203818/tabular_bundle/pipeline_n3/X_num_val.npy @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:093d8f405d764277d5a007953f25ab6466f0857f71f0d8f3c437463fb5bf240a +size 172520 diff --git a/hyperparameter/n3/tabdiff/tabdiff-n3-20260504_203818/tabular_bundle/pipeline_n3/info.json b/hyperparameter/n3/tabdiff/tabdiff-n3-20260504_203818/tabular_bundle/pipeline_n3/info.json new file mode 100644 index 0000000000000000000000000000000000000000..8b5f7b3a1a0c4ba2d967287826b9f5c5fd7619de --- /dev/null +++ b/hyperparameter/n3/tabdiff/tabdiff-n3-20260504_203818/tabular_bundle/pipeline_n3/info.json @@ -0,0 +1,139 @@ +{ + "name": "pipeline_n3", + "task_type": "multiclass", + "n_num_features": 11, + "n_cat_features": 0, + "train_size": 3918, + "test_num": 3918, + "val_num": 3918, + "train_num": 3918, + "bundle_note": "val/test matrices are train copies (train-only policy; no real held-out rows).", + "num_col_idx": [ + 0, + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10 + ], + "cat_col_idx": [], + "target_col_idx": [ + 11 + ], + "column_names": [ + "fixed acidity", + "volatile acidity", + "citric acid", + "residual sugar", + "chlorides", + "free sulfur dioxide", + "total sulfur dioxide", + "density", + "pH", + "sulphates", + "alcohol", + "quality" + ], + "int_col_idx": [], + "int_columns": [], + "int_col_idx_wrt_num": [], + "metadata": { + "columns": { + "0": { + "sdtype": "numerical", + "computer_representation": "Float" + }, + "1": { + "sdtype": "numerical", + "computer_representation": "Float" + }, + "2": { + "sdtype": "numerical", + "computer_representation": "Float" + }, + "3": { + "sdtype": "numerical", + "computer_representation": "Float" + }, + "4": { + "sdtype": "numerical", + "computer_representation": "Float" + }, + "5": { + "sdtype": "numerical", + "computer_representation": "Float" + }, + "6": { + "sdtype": "numerical", + "computer_representation": "Float" + }, + "7": { + "sdtype": "numerical", + "computer_representation": "Float" + }, + "8": { + "sdtype": "numerical", + "computer_representation": "Float" + }, + "9": { + "sdtype": "numerical", + "computer_representation": "Float" + }, + "10": { + "sdtype": "numerical", + "computer_representation": "Float" + }, + "11": { + "sdtype": "categorical" + } + } + }, + "idx_mapping": { + "0": 0, + "1": 1, + "2": 2, + "3": 3, + "4": 4, + "5": 5, + "6": 6, + "7": 7, + "8": 8, + "9": 9, + "10": 10, + "11": 11 + }, + "inverse_idx_mapping": { + "0": 0, + "1": 1, + "2": 2, + "3": 3, + "4": 4, + "5": 5, + "6": 6, + "7": 7, + "8": 8, + "9": 9, + "10": 10, + "11": 11 + }, + "idx_name_mapping": { + "0": "fixed acidity", + "1": "volatile acidity", + "2": "citric acid", + "3": "residual sugar", + "4": "chlorides", + "5": "free sulfur dioxide", + "6": "total sulfur dioxide", + "7": "density", + "8": "pH", + "9": "sulphates", + "10": "alcohol", + "11": "quality" + }, + "n_classes": 7 +} \ No newline at end of file diff --git a/hyperparameter/n3/tabdiff/tabdiff-n3-20260504_203818/tabular_bundle/pipeline_n3/real.csv b/hyperparameter/n3/tabdiff/tabdiff-n3-20260504_203818/tabular_bundle/pipeline_n3/real.csv new file mode 100644 index 0000000000000000000000000000000000000000..b4297372e8b9b076d6c03efa023cbf23edee4f56 --- /dev/null +++ b/hyperparameter/n3/tabdiff/tabdiff-n3-20260504_203818/tabular_bundle/pipeline_n3/real.csv @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:c80ba530c12c66a78530db5d98ead5f78fcdad2fe5eccccbc28d9649ceaa6023 +size 229825 diff --git a/hyperparameter/n3/tabdiff/tabdiff-n3-20260504_203818/tabular_bundle/pipeline_n3/test.csv b/hyperparameter/n3/tabdiff/tabdiff-n3-20260504_203818/tabular_bundle/pipeline_n3/test.csv new file mode 100644 index 0000000000000000000000000000000000000000..b4297372e8b9b076d6c03efa023cbf23edee4f56 --- /dev/null +++ b/hyperparameter/n3/tabdiff/tabdiff-n3-20260504_203818/tabular_bundle/pipeline_n3/test.csv @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:c80ba530c12c66a78530db5d98ead5f78fcdad2fe5eccccbc28d9649ceaa6023 +size 229825 diff --git a/hyperparameter/n3/tabdiff/tabdiff-n3-20260504_203818/tabular_bundle/pipeline_n3/val.csv b/hyperparameter/n3/tabdiff/tabdiff-n3-20260504_203818/tabular_bundle/pipeline_n3/val.csv new file mode 100644 index 0000000000000000000000000000000000000000..b4297372e8b9b076d6c03efa023cbf23edee4f56 --- /dev/null +++ b/hyperparameter/n3/tabdiff/tabdiff-n3-20260504_203818/tabular_bundle/pipeline_n3/val.csv @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:c80ba530c12c66a78530db5d98ead5f78fcdad2fe5eccccbc28d9649ceaa6023 +size 229825 diff --git a/hyperparameter/n3/tabdiff/tabdiff-n3-20260504_203818/tabular_bundle/pipeline_n3/y_test.npy b/hyperparameter/n3/tabdiff/tabdiff-n3-20260504_203818/tabular_bundle/pipeline_n3/y_test.npy new file mode 100644 index 0000000000000000000000000000000000000000..1f737a58cd26592130c3604aaa90044a451eb576 --- /dev/null +++ b/hyperparameter/n3/tabdiff/tabdiff-n3-20260504_203818/tabular_bundle/pipeline_n3/y_test.npy @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:85ed37c52f0ea54dfd3a476dcfafff02d61e92783748e5ee9aadfad20578bcb1 +size 31472 diff --git a/hyperparameter/n3/tabdiff/tabdiff-n3-20260504_203818/tabular_bundle/pipeline_n3/y_train.npy b/hyperparameter/n3/tabdiff/tabdiff-n3-20260504_203818/tabular_bundle/pipeline_n3/y_train.npy new file mode 100644 index 0000000000000000000000000000000000000000..1f737a58cd26592130c3604aaa90044a451eb576 --- /dev/null +++ b/hyperparameter/n3/tabdiff/tabdiff-n3-20260504_203818/tabular_bundle/pipeline_n3/y_train.npy @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:85ed37c52f0ea54dfd3a476dcfafff02d61e92783748e5ee9aadfad20578bcb1 +size 31472 diff --git a/hyperparameter/n3/tabdiff/tabdiff-n3-20260504_203818/tabular_bundle/pipeline_n3/y_val.npy b/hyperparameter/n3/tabdiff/tabdiff-n3-20260504_203818/tabular_bundle/pipeline_n3/y_val.npy new file mode 100644 index 0000000000000000000000000000000000000000..1f737a58cd26592130c3604aaa90044a451eb576 --- /dev/null +++ b/hyperparameter/n3/tabdiff/tabdiff-n3-20260504_203818/tabular_bundle/pipeline_n3/y_val.npy @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:85ed37c52f0ea54dfd3a476dcfafff02d61e92783748e5ee9aadfad20578bcb1 +size 31472 diff --git a/hyperparameter/n3/tabdiff/tabdiff-n3-20260504_203818/train_20260504_203818.log b/hyperparameter/n3/tabdiff/tabdiff-n3-20260504_203818/train_20260504_203818.log new file mode 100644 index 0000000000000000000000000000000000000000..2f85715cf47779b321e65df58665f77c2d9636f0 --- /dev/null +++ b/hyperparameter/n3/tabdiff/tabdiff-n3-20260504_203818/train_20260504_203818.log @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:bb74f129de046c346074ea50216b1b9644c58dc2eade16914fc73d7af7d76b7b +size 295519 diff --git a/hyperparameter/n3/tabdiff/tabdiff-n3-20260504_204815/_tabdiff_gen.py b/hyperparameter/n3/tabdiff/tabdiff-n3-20260504_204815/_tabdiff_gen.py new file mode 100644 index 0000000000000000000000000000000000000000..0658a9498c867a0896a5b05ee71864e8026bfbed --- /dev/null +++ b/hyperparameter/n3/tabdiff/tabdiff-n3-20260504_204815/_tabdiff_gen.py @@ -0,0 +1,36 @@ + +import os, shutil, subprocess, sys +td = r"/workspace/TabDiff" +name = r"pipeline_n3" +src = r"/work/output-Benchmark-trainonly-v1/n3/tabdiff/tabdiff-n3-20260504_204815/tabular_bundle/pipeline_n3" +dst_data = os.path.join(td, "data", name) +dst_syn = os.path.join(td, "synthetic", name) +shutil.rmtree(dst_data, ignore_errors=True) +shutil.copytree(src, dst_data) +os.makedirs(dst_syn, exist_ok=True) +for fn in ("real.csv", "test.csv", "val.csv"): + shutil.copy(os.path.join(src, fn), os.path.join(dst_syn, fn)) +os.chdir(td) +os.environ["PYTHONPATH"] = td + os.pathsep + os.environ.get("PYTHONPATH", "") +subprocess.check_call([ + sys.executable, "-m", "tabdiff.main", + "--dataname", name, "--mode", "test", "--gpu", "0", + "--no_wandb", "--exp_name", r"adapter_learnable", + "--ckpt_path", r"/workspace/TabDiff/tabdiff/ckpt/pipeline_n3/adapter_learnable/model_800.pt", + "--num_samples_to_generate", str(int(3918)), +]) +# test() 写入 tabdiff/result////samples.csv +import glob as g +base = os.path.join(td, "tabdiff", "result", name, r"adapter_learnable") +best = None +best_t = -1.0 +for root, _, files in os.walk(base): + if "samples.csv" in files: + p = os.path.join(root, "samples.csv") + t = os.path.getmtime(p) + if t > best_t: + best_t = t + best = p +if not best: + raise SystemExit("tabdiff: no samples.csv under " + base) +shutil.copy(best, r"/work/output-Benchmark-trainonly-v1/n3/tabdiff/tabdiff-n3-20260504_204815/tabdiff-n3-3918-20260504_210307.csv") diff --git a/hyperparameter/n3/tabdiff/tabdiff-n3-20260504_204815/_tabdiff_train.py b/hyperparameter/n3/tabdiff/tabdiff-n3-20260504_204815/_tabdiff_train.py new file mode 100644 index 0000000000000000000000000000000000000000..7625b1d6d9fc8659730fbdc31046bbb43ae70440 --- /dev/null +++ b/hyperparameter/n3/tabdiff/tabdiff-n3-20260504_204815/_tabdiff_train.py @@ -0,0 +1,21 @@ + +import os, shutil, subprocess, sys +td = r"/workspace/TabDiff" +name = r"pipeline_n3" +src = r"/work/output-Benchmark-trainonly-v1/n3/tabdiff/tabdiff-n3-20260504_204815/tabular_bundle/pipeline_n3" +dst_data = os.path.join(td, "data", name) +dst_syn = os.path.join(td, "synthetic", name) +shutil.rmtree(dst_data, ignore_errors=True) +shutil.copytree(src, dst_data) +os.makedirs(dst_syn, exist_ok=True) +for fn in ("real.csv", "test.csv", "val.csv"): + shutil.copy(os.path.join(src, fn), os.path.join(dst_syn, fn)) +os.chdir(td) +os.environ["PYTHONPATH"] = td + os.pathsep + os.environ.get("PYTHONPATH", "") +os.environ["TABDIFF_SMOKE_STEPS"] = "800" +os.environ["TABDIFF_ADAPTER_TRAIN"] = "1" +subprocess.check_call([ + sys.executable, "-m", "tabdiff.main", + "--dataname", name, "--mode", "train", "--gpu", "0", + "--no_wandb", "--exp_name", r"adapter_learnable", +]) diff --git a/hyperparameter/n3/tabdiff/tabdiff-n3-20260504_204815/gen_20260504_210307.log b/hyperparameter/n3/tabdiff/tabdiff-n3-20260504_204815/gen_20260504_210307.log new file mode 100644 index 0000000000000000000000000000000000000000..1df44371bef525bde2cecfeeb42c3980c087c811 --- /dev/null +++ b/hyperparameter/n3/tabdiff/tabdiff-n3-20260504_204815/gen_20260504_210307.log @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:59e31faa5408efe1cc443e900d71ca14649c9727f3bc6818f3f554f032a3c9ba +size 5944 diff --git a/hyperparameter/n3/tabdiff/tabdiff-n3-20260504_204815/input_snapshot.json b/hyperparameter/n3/tabdiff/tabdiff-n3-20260504_204815/input_snapshot.json new file mode 100644 index 0000000000000000000000000000000000000000..751cd5fa38e2fbd0a4680d9f58579382404e5586 --- /dev/null +++ b/hyperparameter/n3/tabdiff/tabdiff-n3-20260504_204815/input_snapshot.json @@ -0,0 +1,36 @@ +{ + "dataset_id": "n3", + "model": "tabdiff", + "inputs": { + "train_csv": { + "path": "/data/jialinzhang/SynthesizePipeline-server/DatasetNew/n3/n3-train.csv", + "exists": true, + "size": 211519, + "sha256": "2160a06db2fea02adb0ebb79d8d853bd2544580be301e71f6e8deeb1489a9009" + }, + "val_csv": { + "path": "/data/jialinzhang/SynthesizePipeline-server/DatasetNew/n3/n3-val.csv", + "exists": true, + "size": 26499, + "sha256": "d5ccfee07dfa9e7bdee5bb87642b43828e09f74c6cc0266a3d19d9feaa83106e" + }, + "test_csv": { + "path": "/data/jialinzhang/SynthesizePipeline-server/DatasetNew/n3/n3-test.csv", + "exists": true, + "size": 26676, + "sha256": "6f83aacb0d1747b95e287352a7fff5d9d65a1c127b773852346c68485c4ede47" + }, + "profile_json": { + "path": "/data/jialinzhang/SynthesizePipeline-server/DatasetNew/artifacts/data_core/tabular/n3/n3-dataset_profile.json", + "exists": true, + "size": 5235, + "sha256": "23d2e5904a2ca90cbf8d6e3c75887681721e9b90cc705c31a680c11513d0c46f" + }, + "contract_json": { + "path": "/data/jialinzhang/SynthesizePipeline-server/DatasetNew/artifacts/data_core/tabular/n3/n3-dataset_contract_v1.json", + "exists": true, + "size": 6281, + "sha256": "c0cc56f5fe28e1b65927255c6e3c2b0e9479862c2ec6f2fea1664da36c9a3a09" + } + } +} \ No newline at end of file diff --git a/hyperparameter/n3/tabdiff/tabdiff-n3-20260504_204815/models_tabdiff/trained.pt b/hyperparameter/n3/tabdiff/tabdiff-n3-20260504_204815/models_tabdiff/trained.pt new file mode 100644 index 0000000000000000000000000000000000000000..bc319a55a9c7152a1137f968b6fa1c735125ad11 --- /dev/null +++ b/hyperparameter/n3/tabdiff/tabdiff-n3-20260504_204815/models_tabdiff/trained.pt @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:306660b8aad4549267c68390b017e15ddb9bc06a02c80515eb72a97ae31a81eb +size 74 diff --git a/hyperparameter/n3/tabdiff/tabdiff-n3-20260504_204815/public_gate/normalized_schema_snapshot.json b/hyperparameter/n3/tabdiff/tabdiff-n3-20260504_204815/public_gate/normalized_schema_snapshot.json new file mode 100644 index 0000000000000000000000000000000000000000..c41fe304503de23190a02e6cbfafa35b3bf134d3 --- /dev/null +++ b/hyperparameter/n3/tabdiff/tabdiff-n3-20260504_204815/public_gate/normalized_schema_snapshot.json @@ -0,0 +1,259 @@ +{ + "dataset_id": "n3", + "target_column": "quality", + "task_type": "classification", + "columns": [ + { + "name": "fixed acidity", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 66, + "unique_ratio": 0.016845, + "example_values": [ + "7.1", + "8.5", + "6.4", + "6.8", + "7.6" + ] + } + }, + { + "name": "volatile acidity", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 121, + "unique_ratio": 0.030883, + "example_values": [ + "0.31", + "0.21", + "0.24", + "0.43", + "0.27" + ] + } + }, + { + "name": "citric acid", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 85, + "unique_ratio": 0.021695, + "example_values": [ + "0.17", + "0.41", + "0.31", + "0.25", + "0.3" + ] + } + }, + { + "name": "residual sugar", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 296, + "unique_ratio": 0.075549, + "example_values": [ + "1", + "4.3", + "2.8", + "13", + "12.9" + ] + } + }, + { + "name": "chlorides", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 147, + "unique_ratio": 0.037519, + "example_values": [ + "0.042", + "0.036", + "0.038", + "0.047", + "0.033" + ] + } + }, + { + "name": "free sulfur dioxide", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 120, + "unique_ratio": 0.030628, + "example_values": [ + "21", + "24", + "41", + "43", + "69" + ] + } + }, + { + "name": "total sulfur dioxide", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 244, + "unique_ratio": 0.062277, + "example_values": [ + "144", + "99", + "114", + "132", + "160" + ] + } + }, + { + "name": "density", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 839, + "unique_ratio": 0.21414, + "example_values": [ + "0.99304", + "0.9947", + "0.99155", + "0.98975", + "0.99705" + ] + } + }, + { + "name": "pH", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 100, + "unique_ratio": 0.025523, + "example_values": [ + "3.13", + "3.18", + "3.37", + "3.21", + "3.16" + ] + } + }, + { + "name": "sulphates", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 78, + "unique_ratio": 0.019908, + "example_values": [ + "0.4", + "0.53", + "0.66", + "0.47", + "0.5" + ] + } + }, + { + "name": "alcohol", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 97, + "unique_ratio": 0.024758, + "example_values": [ + "9.6", + "9.7", + "11.7", + "13.4", + "8.8" + ] + } + }, + { + "name": "quality", + "role": "target", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 7, + "unique_ratio": 0.001787, + "example_values": [ + "5", + "6", + "7", + "8", + "3" + ] + } + } + ] +} \ No newline at end of file diff --git a/hyperparameter/n3/tabdiff/tabdiff-n3-20260504_204815/public_gate/public_gate_report.json b/hyperparameter/n3/tabdiff/tabdiff-n3-20260504_204815/public_gate/public_gate_report.json new file mode 100644 index 0000000000000000000000000000000000000000..93b97319f739e39079d6c6549fd2020f8a6dac25 --- /dev/null +++ b/hyperparameter/n3/tabdiff/tabdiff-n3-20260504_204815/public_gate/public_gate_report.json @@ -0,0 +1,37 @@ +{ + "dataset_id": "n3", + "status": "pass", + "checks": [ + { + "check_id": "PG001_csv_parse_ok", + "status": "pass" + }, + { + "check_id": "PG002_split_header_consistent", + "status": "pass" + }, + { + "check_id": "PG003_profile_header_match", + "status": "pass" + }, + { + "check_id": "PG004_missing_token_normalized", + "status": "pass" + }, + { + "check_id": "PG005_semantic_type_validated", + "status": "pass" + }, + { + "check_id": "PG006_target_defined_and_valid", + "status": "pass" + } + ], + "target_column": "quality", + "task_type": "classification", + "input_splits": { + "train": "/data/jialinzhang/SynthesizePipeline-server/DatasetNew/n3/n3-train.csv", + "val": "/data/jialinzhang/SynthesizePipeline-server/DatasetNew/n3/n3-val.csv", + "test": "/data/jialinzhang/SynthesizePipeline-server/DatasetNew/n3/n3-test.csv" + } +} \ No newline at end of file diff --git a/hyperparameter/n3/tabdiff/tabdiff-n3-20260504_204815/public_gate/staged_input_manifest.json b/hyperparameter/n3/tabdiff/tabdiff-n3-20260504_204815/public_gate/staged_input_manifest.json new file mode 100644 index 0000000000000000000000000000000000000000..a9fb2247e14adfe86b1bebc66b55e68a849cdcda --- /dev/null +++ b/hyperparameter/n3/tabdiff/tabdiff-n3-20260504_204815/public_gate/staged_input_manifest.json @@ -0,0 +1,264 @@ +{ + "dataset_id": "n3", + "target_column": "quality", + "task_type": "classification", + "train_csv": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/n3/tabdiff/tabdiff-n3-20260504_204815/staged/public/train.csv", + "val_csv": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/n3/tabdiff/tabdiff-n3-20260504_204815/staged/public/val.csv", + "test_csv": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/n3/tabdiff/tabdiff-n3-20260504_204815/staged/public/test.csv", + "features_json": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/n3/tabdiff/tabdiff-n3-20260504_204815/staged/public/staged_features.json", + "public_gate_report": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/n3/tabdiff/tabdiff-n3-20260504_204815/public_gate/public_gate_report.json", + "column_schema": [ + { + "name": "fixed acidity", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 66, + "unique_ratio": 0.016845, + "example_values": [ + "7.1", + "8.5", + "6.4", + "6.8", + "7.6" + ] + } + }, + { + "name": "volatile acidity", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 121, + "unique_ratio": 0.030883, + "example_values": [ + "0.31", + "0.21", + "0.24", + "0.43", + "0.27" + ] + } + }, + { + "name": "citric acid", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 85, + "unique_ratio": 0.021695, + "example_values": [ + "0.17", + "0.41", + "0.31", + "0.25", + "0.3" + ] + } + }, + { + "name": "residual sugar", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 296, + "unique_ratio": 0.075549, + "example_values": [ + "1", + "4.3", + "2.8", + "13", + "12.9" + ] + } + }, + { + "name": "chlorides", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 147, + "unique_ratio": 0.037519, + "example_values": [ + "0.042", + "0.036", + "0.038", + "0.047", + "0.033" + ] + } + }, + { + "name": "free sulfur dioxide", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 120, + "unique_ratio": 0.030628, + "example_values": [ + "21", + "24", + "41", + "43", + "69" + ] + } + }, + { + "name": "total sulfur dioxide", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 244, + "unique_ratio": 0.062277, + "example_values": [ + "144", + "99", + "114", + "132", + "160" + ] + } + }, + { + "name": "density", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 839, + "unique_ratio": 0.21414, + "example_values": [ + "0.99304", + "0.9947", + "0.99155", + "0.98975", + "0.99705" + ] + } + }, + { + "name": "pH", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 100, + "unique_ratio": 0.025523, + "example_values": [ + "3.13", + "3.18", + "3.37", + "3.21", + "3.16" + ] + } + }, + { + "name": "sulphates", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 78, + "unique_ratio": 0.019908, + "example_values": [ + "0.4", + "0.53", + "0.66", + "0.47", + "0.5" + ] + } + }, + { + "name": "alcohol", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 97, + "unique_ratio": 0.024758, + "example_values": [ + "9.6", + "9.7", + "11.7", + "13.4", + "8.8" + ] + } + }, + { + "name": "quality", + "role": "target", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 7, + "unique_ratio": 0.001787, + "example_values": [ + "5", + "6", + "7", + "8", + "3" + ] + } + } + ] +} \ No newline at end of file diff --git a/hyperparameter/n3/tabdiff/tabdiff-n3-20260504_204815/run_config.json b/hyperparameter/n3/tabdiff/tabdiff-n3-20260504_204815/run_config.json new file mode 100644 index 0000000000000000000000000000000000000000..b7ebd189563807a5cba1e2bb18d1c3b51cd39da4 --- /dev/null +++ b/hyperparameter/n3/tabdiff/tabdiff-n3-20260504_204815/run_config.json @@ -0,0 +1,40 @@ +{ + "schema_version": 1, + "recorded_at": "2026-05-04T20:48:15", + "dataset_id": "n3", + "model": "tabdiff", + "work_dir": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/n3/tabdiff/tabdiff-n3-20260504_204815", + "dataset_source_requested": "new", + "dataset_source_resolved": "new", + "cli_args": { + "model": "tabdiff", + "dataset": "n3", + "dataset_source": "new", + "train": true, + "generate": true, + "num_rows": 0, + "epochs": 800, + "output_dir": null, + "model_dir": null, + "work_dir": null, + "resume": false, + "no_stats": false + }, + "resolved": { + "num_rows": 3918, + "model_path": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/n3/tabdiff/tabdiff-n3-20260504_204815/models_tabdiff/trained.pt", + "output_csv": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/n3/tabdiff/tabdiff-n3-20260504_204815/tabdiff-n3-3918-20260504_210307.csv" + }, + "input_artifacts": { + "public_gate_report": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/n3/tabdiff/tabdiff-n3-20260504_204815/public_gate/public_gate_report.json", + "public_manifest": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/n3/tabdiff/tabdiff-n3-20260504_204815/public_gate/staged_input_manifest.json", + "model_manifest": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/n3/tabdiff/tabdiff-n3-20260504_204815/staged/tabdiff/model_input_manifest.json", + "train_csv": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/n3/tabdiff/tabdiff-n3-20260504_204815/staged/public/train.csv", + "features_json": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/n3/tabdiff/tabdiff-n3-20260504_204815/staged/public/staged_features.json", + "target_column": "quality", + "task_type": "classification" + }, + "env_overrides": { + "BENCHMARK_TABDIFF_GPUS": "device=3" + } +} \ No newline at end of file diff --git a/hyperparameter/n3/tabdiff/tabdiff-n3-20260504_204815/runtime_result.json b/hyperparameter/n3/tabdiff/tabdiff-n3-20260504_204815/runtime_result.json new file mode 100644 index 0000000000000000000000000000000000000000..640a74b1e04d0d2cdadbdbe6c68a870c3a2cf015 --- /dev/null +++ b/hyperparameter/n3/tabdiff/tabdiff-n3-20260504_204815/runtime_result.json @@ -0,0 +1,27 @@ +{ + "dataset_id": "n3", + "model": "tabdiff", + "run_id": "tabdiff-n3-20260504_204815", + "public_gate_status": "pass", + "adapter_ready_status": "pass", + "train_status": "success", + "generate_status": "success", + "reason_code": null, + "reason_detail": null, + "artifacts": { + "synthetic_csv": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/n3/tabdiff/tabdiff-n3-20260504_204815/tabdiff-n3-3918-20260504_210307.csv", + "model_path": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/n3/tabdiff/tabdiff-n3-20260504_204815/models_tabdiff/trained.pt" + }, + "timings": { + "train": { + "started_at": "2026-05-04T20:48:15", + "ended_at": "2026-05-04T21:03:07", + "duration_sec": 892.244 + }, + "generate": { + "started_at": "2026-05-04T21:03:07", + "ended_at": "2026-05-04T21:03:22", + "duration_sec": 14.552 + } + } +} \ No newline at end of file diff --git a/hyperparameter/n3/tabdiff/tabdiff-n3-20260504_204815/staged/public/staged_features.json b/hyperparameter/n3/tabdiff/tabdiff-n3-20260504_204815/staged/public/staged_features.json new file mode 100644 index 0000000000000000000000000000000000000000..08fe4d766d091d2f2ddba724a16b9509cbe4c390 --- /dev/null +++ b/hyperparameter/n3/tabdiff/tabdiff-n3-20260504_204815/staged/public/staged_features.json @@ -0,0 +1,62 @@ +[ + { + "feature_name": "fixed acidity", + "data_type": "continuous", + "is_target": false + }, + { + "feature_name": "volatile acidity", + "data_type": "continuous", + "is_target": false + }, + { + "feature_name": "citric acid", + "data_type": "continuous", + "is_target": false + }, + { + "feature_name": "residual sugar", + "data_type": "continuous", + "is_target": false + }, + { + "feature_name": "chlorides", + "data_type": "continuous", + "is_target": false + }, + { + "feature_name": "free sulfur dioxide", + "data_type": "continuous", + "is_target": false + }, + { + "feature_name": "total sulfur dioxide", + "data_type": "continuous", + "is_target": false + }, + { + "feature_name": "density", + "data_type": "continuous", + "is_target": false + }, + { + "feature_name": "pH", + "data_type": "continuous", + "is_target": false + }, + { + "feature_name": "sulphates", + "data_type": "continuous", + "is_target": false + }, + { + "feature_name": "alcohol", + "data_type": "continuous", + "is_target": false + }, + { + "feature_name": "quality", + "data_type": "continuous", + "is_target": true + } +] \ No newline at end of file diff --git a/hyperparameter/n3/tabdiff/tabdiff-n3-20260504_204815/staged/public/test.csv b/hyperparameter/n3/tabdiff/tabdiff-n3-20260504_204815/staged/public/test.csv new file mode 100644 index 0000000000000000000000000000000000000000..db5cd50d3746410ea470625fa2ba2c8e9775cc0d --- /dev/null +++ b/hyperparameter/n3/tabdiff/tabdiff-n3-20260504_204815/staged/public/test.csv @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:19e107152a94432e2a37ff045c00cfe35e1be30208b1553080d7dd0ede256d3b +size 28944 diff --git a/hyperparameter/n3/tabdiff/tabdiff-n3-20260504_204815/staged/public/train.csv b/hyperparameter/n3/tabdiff/tabdiff-n3-20260504_204815/staged/public/train.csv new file mode 100644 index 0000000000000000000000000000000000000000..87ca26726fe82ccbaa397919305b043c17eb374e --- /dev/null +++ b/hyperparameter/n3/tabdiff/tabdiff-n3-20260504_204815/staged/public/train.csv @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:7813c8cca73ba4bfc6559215257b341c21e459980ad17ae6ddc809306bc9a0b9 +size 229945 diff --git a/hyperparameter/n3/tabdiff/tabdiff-n3-20260504_204815/staged/public/val.csv b/hyperparameter/n3/tabdiff/tabdiff-n3-20260504_204815/staged/public/val.csv new file mode 100644 index 0000000000000000000000000000000000000000..6acf84c76c47093b513c46d5503972a2dff275c0 --- /dev/null +++ b/hyperparameter/n3/tabdiff/tabdiff-n3-20260504_204815/staged/public/val.csv @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:cf5979d9675567d9d6642640c9b84fc6c49e492604144723c30f50516c05cee6 +size 28791 diff --git a/hyperparameter/n3/tabdiff/tabdiff-n3-20260504_204815/staged/tabdiff/adapter_report.json b/hyperparameter/n3/tabdiff/tabdiff-n3-20260504_204815/staged/tabdiff/adapter_report.json new file mode 100644 index 0000000000000000000000000000000000000000..6955c1d54d1b458165aa2964aa9585f5cebc4e3c --- /dev/null +++ b/hyperparameter/n3/tabdiff/tabdiff-n3-20260504_204815/staged/tabdiff/adapter_report.json @@ -0,0 +1,7 @@ +{ + "adapter_ready_status": "pass", + "adapter_fail_reason_code": null, + "adapter_fail_detail": null, + "adapter_transforms_applied": [], + "model_input_manifest": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/n3/tabdiff/tabdiff-n3-20260504_204815/staged/tabdiff/model_input_manifest.json" +} \ No newline at end of file diff --git a/hyperparameter/n3/tabdiff/tabdiff-n3-20260504_204815/staged/tabdiff/adapter_transforms_applied.json b/hyperparameter/n3/tabdiff/tabdiff-n3-20260504_204815/staged/tabdiff/adapter_transforms_applied.json new file mode 100644 index 0000000000000000000000000000000000000000..0637a088a01e8ddab3bf3fa98dbe804cbde1a0dc --- /dev/null +++ b/hyperparameter/n3/tabdiff/tabdiff-n3-20260504_204815/staged/tabdiff/adapter_transforms_applied.json @@ -0,0 +1 @@ +[] \ No newline at end of file diff --git a/hyperparameter/n3/tabdiff/tabdiff-n3-20260504_204815/staged/tabdiff/model_input_manifest.json b/hyperparameter/n3/tabdiff/tabdiff-n3-20260504_204815/staged/tabdiff/model_input_manifest.json new file mode 100644 index 0000000000000000000000000000000000000000..80d11511d9e5d90af553b5edb3e4446de9d94d5e --- /dev/null +++ b/hyperparameter/n3/tabdiff/tabdiff-n3-20260504_204815/staged/tabdiff/model_input_manifest.json @@ -0,0 +1,266 @@ +{ + "dataset_id": "n3", + "model": "tabdiff", + "target_column": "quality", + "task_type": "classification", + "column_schema": [ + { + "name": "fixed acidity", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 66, + "unique_ratio": 0.016845, + "example_values": [ + "7.1", + "8.5", + "6.4", + "6.8", + "7.6" + ] + } + }, + { + "name": "volatile acidity", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 121, + "unique_ratio": 0.030883, + "example_values": [ + "0.31", + "0.21", + "0.24", + "0.43", + "0.27" + ] + } + }, + { + "name": "citric acid", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 85, + "unique_ratio": 0.021695, + "example_values": [ + "0.17", + "0.41", + "0.31", + "0.25", + "0.3" + ] + } + }, + { + "name": "residual sugar", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 296, + "unique_ratio": 0.075549, + "example_values": [ + "1", + "4.3", + "2.8", + "13", + "12.9" + ] + } + }, + { + "name": "chlorides", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 147, + "unique_ratio": 0.037519, + "example_values": [ + "0.042", + "0.036", + "0.038", + "0.047", + "0.033" + ] + } + }, + { + "name": "free sulfur dioxide", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 120, + "unique_ratio": 0.030628, + "example_values": [ + "21", + "24", + "41", + "43", + "69" + ] + } + }, + { + "name": "total sulfur dioxide", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 244, + "unique_ratio": 0.062277, + "example_values": [ + "144", + "99", + "114", + "132", + "160" + ] + } + }, + { + "name": "density", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 839, + "unique_ratio": 0.21414, + "example_values": [ + "0.99304", + "0.9947", + "0.99155", + "0.98975", + "0.99705" + ] + } + }, + { + "name": "pH", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 100, + "unique_ratio": 0.025523, + "example_values": [ + "3.13", + "3.18", + "3.37", + "3.21", + "3.16" + ] + } + }, + { + "name": "sulphates", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 78, + "unique_ratio": 0.019908, + "example_values": [ + "0.4", + "0.53", + "0.66", + "0.47", + "0.5" + ] + } + }, + { + "name": "alcohol", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 97, + "unique_ratio": 0.024758, + "example_values": [ + "9.6", + "9.7", + "11.7", + "13.4", + "8.8" + ] + } + }, + { + "name": "quality", + "role": "target", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 7, + "unique_ratio": 0.001787, + "example_values": [ + "5", + "6", + "7", + "8", + "3" + ] + } + } + ], + "public_manifest": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/n3/tabdiff/tabdiff-n3-20260504_204815/public_gate/staged_input_manifest.json", + "train_csv": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/n3/tabdiff/tabdiff-n3-20260504_204815/staged/public/train.csv", + "val_csv": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/n3/tabdiff/tabdiff-n3-20260504_204815/staged/public/val.csv", + "test_csv": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/n3/tabdiff/tabdiff-n3-20260504_204815/staged/public/test.csv", + "features_json": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/n3/tabdiff/tabdiff-n3-20260504_204815/staged/public/staged_features.json", + "public_gate_report": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/n3/tabdiff/tabdiff-n3-20260504_204815/public_gate/public_gate_report.json" +} \ No newline at end of file diff --git a/hyperparameter/n3/tabdiff/tabdiff-n3-20260504_204815/tabdiff-n3-3918-20260504_210307.csv b/hyperparameter/n3/tabdiff/tabdiff-n3-20260504_204815/tabdiff-n3-3918-20260504_210307.csv new file mode 100644 index 0000000000000000000000000000000000000000..1381b4430ffb12c5428591ad1da566597997d557 --- /dev/null +++ b/hyperparameter/n3/tabdiff/tabdiff-n3-20260504_204815/tabdiff-n3-3918-20260504_210307.csv @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:6fd5d064aec34fdf273793ac0d7ba8fc43500606d93da0a912e154434b6628ae +size 340757 diff --git a/hyperparameter/n3/tabdiff/tabdiff-n3-20260504_204815/tabdiff_train_meta.json b/hyperparameter/n3/tabdiff/tabdiff-n3-20260504_204815/tabdiff_train_meta.json new file mode 100644 index 0000000000000000000000000000000000000000..9d82aac13a72ca876894e4caa200cf01d3b2e0cc --- /dev/null +++ b/hyperparameter/n3/tabdiff/tabdiff-n3-20260504_204815/tabdiff_train_meta.json @@ -0,0 +1,5 @@ +{ + "exp_name": "adapter_learnable", + "dataname": "pipeline_n3", + "steps": 800 +} \ No newline at end of file diff --git a/hyperparameter/n3/tabdiff/tabdiff-n3-20260504_204815/tabular_bundle/pipeline_n3/X_cat_test.npy b/hyperparameter/n3/tabdiff/tabdiff-n3-20260504_204815/tabular_bundle/pipeline_n3/X_cat_test.npy new file mode 100644 index 0000000000000000000000000000000000000000..76306e45faf838d072c21b887a4c1d43d486dc1b --- /dev/null +++ b/hyperparameter/n3/tabdiff/tabdiff-n3-20260504_204815/tabular_bundle/pipeline_n3/X_cat_test.npy @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:87f6573fdfd40c6332a9ef925bcb48bc20f08b3a6f72b6dceb949ae36d1871f7 +size 128 diff --git a/hyperparameter/n3/tabdiff/tabdiff-n3-20260504_204815/tabular_bundle/pipeline_n3/X_cat_train.npy b/hyperparameter/n3/tabdiff/tabdiff-n3-20260504_204815/tabular_bundle/pipeline_n3/X_cat_train.npy new file mode 100644 index 0000000000000000000000000000000000000000..76306e45faf838d072c21b887a4c1d43d486dc1b --- /dev/null +++ b/hyperparameter/n3/tabdiff/tabdiff-n3-20260504_204815/tabular_bundle/pipeline_n3/X_cat_train.npy @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:87f6573fdfd40c6332a9ef925bcb48bc20f08b3a6f72b6dceb949ae36d1871f7 +size 128 diff --git a/hyperparameter/n3/tabdiff/tabdiff-n3-20260504_204815/tabular_bundle/pipeline_n3/X_cat_val.npy b/hyperparameter/n3/tabdiff/tabdiff-n3-20260504_204815/tabular_bundle/pipeline_n3/X_cat_val.npy new file mode 100644 index 0000000000000000000000000000000000000000..76306e45faf838d072c21b887a4c1d43d486dc1b --- /dev/null +++ b/hyperparameter/n3/tabdiff/tabdiff-n3-20260504_204815/tabular_bundle/pipeline_n3/X_cat_val.npy @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:87f6573fdfd40c6332a9ef925bcb48bc20f08b3a6f72b6dceb949ae36d1871f7 +size 128 diff --git a/hyperparameter/n3/tabdiff/tabdiff-n3-20260504_204815/tabular_bundle/pipeline_n3/X_num_test.npy b/hyperparameter/n3/tabdiff/tabdiff-n3-20260504_204815/tabular_bundle/pipeline_n3/X_num_test.npy new file mode 100644 index 0000000000000000000000000000000000000000..94beb8413ef55592710518365965f4cb503523ee --- /dev/null +++ b/hyperparameter/n3/tabdiff/tabdiff-n3-20260504_204815/tabular_bundle/pipeline_n3/X_num_test.npy @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:093d8f405d764277d5a007953f25ab6466f0857f71f0d8f3c437463fb5bf240a +size 172520 diff --git a/hyperparameter/n3/tabdiff/tabdiff-n3-20260504_204815/tabular_bundle/pipeline_n3/X_num_train.npy b/hyperparameter/n3/tabdiff/tabdiff-n3-20260504_204815/tabular_bundle/pipeline_n3/X_num_train.npy new file mode 100644 index 0000000000000000000000000000000000000000..94beb8413ef55592710518365965f4cb503523ee --- /dev/null +++ b/hyperparameter/n3/tabdiff/tabdiff-n3-20260504_204815/tabular_bundle/pipeline_n3/X_num_train.npy @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:093d8f405d764277d5a007953f25ab6466f0857f71f0d8f3c437463fb5bf240a +size 172520 diff --git a/hyperparameter/n3/tabdiff/tabdiff-n3-20260504_204815/tabular_bundle/pipeline_n3/X_num_val.npy b/hyperparameter/n3/tabdiff/tabdiff-n3-20260504_204815/tabular_bundle/pipeline_n3/X_num_val.npy new file mode 100644 index 0000000000000000000000000000000000000000..94beb8413ef55592710518365965f4cb503523ee --- /dev/null +++ b/hyperparameter/n3/tabdiff/tabdiff-n3-20260504_204815/tabular_bundle/pipeline_n3/X_num_val.npy @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:093d8f405d764277d5a007953f25ab6466f0857f71f0d8f3c437463fb5bf240a +size 172520 diff --git a/hyperparameter/n3/tabdiff/tabdiff-n3-20260504_204815/tabular_bundle/pipeline_n3/info.json b/hyperparameter/n3/tabdiff/tabdiff-n3-20260504_204815/tabular_bundle/pipeline_n3/info.json new file mode 100644 index 0000000000000000000000000000000000000000..8b5f7b3a1a0c4ba2d967287826b9f5c5fd7619de --- /dev/null +++ b/hyperparameter/n3/tabdiff/tabdiff-n3-20260504_204815/tabular_bundle/pipeline_n3/info.json @@ -0,0 +1,139 @@ +{ + "name": "pipeline_n3", + "task_type": "multiclass", + "n_num_features": 11, + "n_cat_features": 0, + "train_size": 3918, + "test_num": 3918, + "val_num": 3918, + "train_num": 3918, + "bundle_note": "val/test matrices are train copies (train-only policy; no real held-out rows).", + "num_col_idx": [ + 0, + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10 + ], + "cat_col_idx": [], + "target_col_idx": [ + 11 + ], + "column_names": [ + "fixed acidity", + "volatile acidity", + "citric acid", + "residual sugar", + "chlorides", + "free sulfur dioxide", + "total sulfur dioxide", + "density", + "pH", + "sulphates", + "alcohol", + "quality" + ], + "int_col_idx": [], + "int_columns": [], + "int_col_idx_wrt_num": [], + "metadata": { + "columns": { + "0": { + "sdtype": "numerical", + "computer_representation": "Float" + }, + "1": { + "sdtype": "numerical", + "computer_representation": "Float" + }, + "2": { + "sdtype": "numerical", + "computer_representation": "Float" + }, + "3": { + "sdtype": "numerical", + "computer_representation": "Float" + }, + "4": { + "sdtype": "numerical", + "computer_representation": "Float" + }, + "5": { + "sdtype": "numerical", + "computer_representation": "Float" + }, + "6": { + "sdtype": "numerical", + "computer_representation": "Float" + }, + "7": { + "sdtype": "numerical", + "computer_representation": "Float" + }, + "8": { + "sdtype": "numerical", + "computer_representation": "Float" + }, + "9": { + "sdtype": "numerical", + "computer_representation": "Float" + }, + "10": { + "sdtype": "numerical", + "computer_representation": "Float" + }, + "11": { + "sdtype": "categorical" + } + } + }, + "idx_mapping": { + "0": 0, + "1": 1, + "2": 2, + "3": 3, + "4": 4, + "5": 5, + "6": 6, + "7": 7, + "8": 8, + "9": 9, + "10": 10, + "11": 11 + }, + "inverse_idx_mapping": { + "0": 0, + "1": 1, + "2": 2, + "3": 3, + "4": 4, + "5": 5, + "6": 6, + "7": 7, + "8": 8, + "9": 9, + "10": 10, + "11": 11 + }, + "idx_name_mapping": { + "0": "fixed acidity", + "1": "volatile acidity", + "2": "citric acid", + "3": "residual sugar", + "4": "chlorides", + "5": "free sulfur dioxide", + "6": "total sulfur dioxide", + "7": "density", + "8": "pH", + "9": "sulphates", + "10": "alcohol", + "11": "quality" + }, + "n_classes": 7 +} \ No newline at end of file diff --git a/hyperparameter/n3/tabdiff/tabdiff-n3-20260504_204815/tabular_bundle/pipeline_n3/real.csv b/hyperparameter/n3/tabdiff/tabdiff-n3-20260504_204815/tabular_bundle/pipeline_n3/real.csv new file mode 100644 index 0000000000000000000000000000000000000000..b4297372e8b9b076d6c03efa023cbf23edee4f56 --- /dev/null +++ b/hyperparameter/n3/tabdiff/tabdiff-n3-20260504_204815/tabular_bundle/pipeline_n3/real.csv @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:c80ba530c12c66a78530db5d98ead5f78fcdad2fe5eccccbc28d9649ceaa6023 +size 229825 diff --git a/hyperparameter/n3/tabdiff/tabdiff-n3-20260504_204815/tabular_bundle/pipeline_n3/test.csv b/hyperparameter/n3/tabdiff/tabdiff-n3-20260504_204815/tabular_bundle/pipeline_n3/test.csv new file mode 100644 index 0000000000000000000000000000000000000000..b4297372e8b9b076d6c03efa023cbf23edee4f56 --- /dev/null +++ b/hyperparameter/n3/tabdiff/tabdiff-n3-20260504_204815/tabular_bundle/pipeline_n3/test.csv @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:c80ba530c12c66a78530db5d98ead5f78fcdad2fe5eccccbc28d9649ceaa6023 +size 229825 diff --git a/hyperparameter/n3/tabdiff/tabdiff-n3-20260504_204815/tabular_bundle/pipeline_n3/val.csv b/hyperparameter/n3/tabdiff/tabdiff-n3-20260504_204815/tabular_bundle/pipeline_n3/val.csv new file mode 100644 index 0000000000000000000000000000000000000000..b4297372e8b9b076d6c03efa023cbf23edee4f56 --- /dev/null +++ b/hyperparameter/n3/tabdiff/tabdiff-n3-20260504_204815/tabular_bundle/pipeline_n3/val.csv @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:c80ba530c12c66a78530db5d98ead5f78fcdad2fe5eccccbc28d9649ceaa6023 +size 229825 diff --git a/hyperparameter/n3/tabdiff/tabdiff-n3-20260504_204815/tabular_bundle/pipeline_n3/y_test.npy b/hyperparameter/n3/tabdiff/tabdiff-n3-20260504_204815/tabular_bundle/pipeline_n3/y_test.npy new file mode 100644 index 0000000000000000000000000000000000000000..1f737a58cd26592130c3604aaa90044a451eb576 --- /dev/null +++ b/hyperparameter/n3/tabdiff/tabdiff-n3-20260504_204815/tabular_bundle/pipeline_n3/y_test.npy @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:85ed37c52f0ea54dfd3a476dcfafff02d61e92783748e5ee9aadfad20578bcb1 +size 31472 diff --git a/hyperparameter/n3/tabdiff/tabdiff-n3-20260504_204815/tabular_bundle/pipeline_n3/y_train.npy b/hyperparameter/n3/tabdiff/tabdiff-n3-20260504_204815/tabular_bundle/pipeline_n3/y_train.npy new file mode 100644 index 0000000000000000000000000000000000000000..1f737a58cd26592130c3604aaa90044a451eb576 --- /dev/null +++ b/hyperparameter/n3/tabdiff/tabdiff-n3-20260504_204815/tabular_bundle/pipeline_n3/y_train.npy @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:85ed37c52f0ea54dfd3a476dcfafff02d61e92783748e5ee9aadfad20578bcb1 +size 31472 diff --git a/hyperparameter/n3/tabdiff/tabdiff-n3-20260504_204815/tabular_bundle/pipeline_n3/y_val.npy b/hyperparameter/n3/tabdiff/tabdiff-n3-20260504_204815/tabular_bundle/pipeline_n3/y_val.npy new file mode 100644 index 0000000000000000000000000000000000000000..1f737a58cd26592130c3604aaa90044a451eb576 --- /dev/null +++ b/hyperparameter/n3/tabdiff/tabdiff-n3-20260504_204815/tabular_bundle/pipeline_n3/y_val.npy @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:85ed37c52f0ea54dfd3a476dcfafff02d61e92783748e5ee9aadfad20578bcb1 +size 31472 diff --git a/hyperparameter/n3/tabdiff/tabdiff-n3-20260504_204815/train_20260504_204815.log b/hyperparameter/n3/tabdiff/tabdiff-n3-20260504_204815/train_20260504_204815.log new file mode 100644 index 0000000000000000000000000000000000000000..f185913c8f426041f4d0d560b764bd711a97ac9b --- /dev/null +++ b/hyperparameter/n3/tabdiff/tabdiff-n3-20260504_204815/train_20260504_204815.log @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:5b4417b481d9790f2ddf2756d73a8693f23d07ab071b4af72f5a2adfa9e17819 +size 467579 diff --git a/hyperparameter/n3/tabdiff/tabdiff-n3-20260504_210335/_tabdiff_gen.py b/hyperparameter/n3/tabdiff/tabdiff-n3-20260504_210335/_tabdiff_gen.py new file mode 100644 index 0000000000000000000000000000000000000000..f61301f47ee05e8f63c0fceb734bcbdbf0c61e75 --- /dev/null +++ b/hyperparameter/n3/tabdiff/tabdiff-n3-20260504_210335/_tabdiff_gen.py @@ -0,0 +1,36 @@ + +import os, shutil, subprocess, sys +td = r"/workspace/TabDiff" +name = r"pipeline_n3" +src = r"/work/output-Benchmark-trainonly-v1/n3/tabdiff/tabdiff-n3-20260504_210335/tabular_bundle/pipeline_n3" +dst_data = os.path.join(td, "data", name) +dst_syn = os.path.join(td, "synthetic", name) +shutil.rmtree(dst_data, ignore_errors=True) +shutil.copytree(src, dst_data) +os.makedirs(dst_syn, exist_ok=True) +for fn in ("real.csv", "test.csv", "val.csv"): + shutil.copy(os.path.join(src, fn), os.path.join(dst_syn, fn)) +os.chdir(td) +os.environ["PYTHONPATH"] = td + os.pathsep + os.environ.get("PYTHONPATH", "") +subprocess.check_call([ + sys.executable, "-m", "tabdiff.main", + "--dataname", name, "--mode", "test", "--gpu", "0", + "--no_wandb", "--exp_name", r"adapter_learnable", + "--ckpt_path", r"/workspace/TabDiff/tabdiff/ckpt/pipeline_n3/adapter_learnable/model_800.pt", + "--num_samples_to_generate", str(int(3918)), +]) +# test() 写入 tabdiff/result////samples.csv +import glob as g +base = os.path.join(td, "tabdiff", "result", name, r"adapter_learnable") +best = None +best_t = -1.0 +for root, _, files in os.walk(base): + if "samples.csv" in files: + p = os.path.join(root, "samples.csv") + t = os.path.getmtime(p) + if t > best_t: + best_t = t + best = p +if not best: + raise SystemExit("tabdiff: no samples.csv under " + base) +shutil.copy(best, r"/work/output-Benchmark-trainonly-v1/n3/tabdiff/tabdiff-n3-20260504_210335/tabdiff-n3-3918-20260504_212137.csv") diff --git a/hyperparameter/n3/tabdiff/tabdiff-n3-20260504_210335/_tabdiff_train.py b/hyperparameter/n3/tabdiff/tabdiff-n3-20260504_210335/_tabdiff_train.py new file mode 100644 index 0000000000000000000000000000000000000000..595a4a48f43b300ead9ba8f73084005f2094969a --- /dev/null +++ b/hyperparameter/n3/tabdiff/tabdiff-n3-20260504_210335/_tabdiff_train.py @@ -0,0 +1,21 @@ + +import os, shutil, subprocess, sys +td = r"/workspace/TabDiff" +name = r"pipeline_n3" +src = r"/work/output-Benchmark-trainonly-v1/n3/tabdiff/tabdiff-n3-20260504_210335/tabular_bundle/pipeline_n3" +dst_data = os.path.join(td, "data", name) +dst_syn = os.path.join(td, "synthetic", name) +shutil.rmtree(dst_data, ignore_errors=True) +shutil.copytree(src, dst_data) +os.makedirs(dst_syn, exist_ok=True) +for fn in ("real.csv", "test.csv", "val.csv"): + shutil.copy(os.path.join(src, fn), os.path.join(dst_syn, fn)) +os.chdir(td) +os.environ["PYTHONPATH"] = td + os.pathsep + os.environ.get("PYTHONPATH", "") +os.environ["TABDIFF_SMOKE_STEPS"] = "1000" +os.environ["TABDIFF_ADAPTER_TRAIN"] = "1" +subprocess.check_call([ + sys.executable, "-m", "tabdiff.main", + "--dataname", name, "--mode", "train", "--gpu", "0", + "--no_wandb", "--exp_name", r"adapter_learnable", +]) diff --git a/hyperparameter/n3/tabdiff/tabdiff-n3-20260504_210335/gen_20260504_212137.log b/hyperparameter/n3/tabdiff/tabdiff-n3-20260504_210335/gen_20260504_212137.log new file mode 100644 index 0000000000000000000000000000000000000000..e1a19a829a233eb09e6c1e1a9a156142cf3978a3 --- /dev/null +++ b/hyperparameter/n3/tabdiff/tabdiff-n3-20260504_210335/gen_20260504_212137.log @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:ba111619e3d3fd46bdcf19bcf35d18db605abd42f113012573d6979bd46e6138 +size 5860 diff --git a/hyperparameter/n3/tabdiff/tabdiff-n3-20260504_210335/input_snapshot.json b/hyperparameter/n3/tabdiff/tabdiff-n3-20260504_210335/input_snapshot.json new file mode 100644 index 0000000000000000000000000000000000000000..751cd5fa38e2fbd0a4680d9f58579382404e5586 --- /dev/null +++ b/hyperparameter/n3/tabdiff/tabdiff-n3-20260504_210335/input_snapshot.json @@ -0,0 +1,36 @@ +{ + "dataset_id": "n3", + "model": "tabdiff", + "inputs": { + "train_csv": { + "path": "/data/jialinzhang/SynthesizePipeline-server/DatasetNew/n3/n3-train.csv", + "exists": true, + "size": 211519, + "sha256": "2160a06db2fea02adb0ebb79d8d853bd2544580be301e71f6e8deeb1489a9009" + }, + "val_csv": { + "path": "/data/jialinzhang/SynthesizePipeline-server/DatasetNew/n3/n3-val.csv", + "exists": true, + "size": 26499, + "sha256": "d5ccfee07dfa9e7bdee5bb87642b43828e09f74c6cc0266a3d19d9feaa83106e" + }, + "test_csv": { + "path": "/data/jialinzhang/SynthesizePipeline-server/DatasetNew/n3/n3-test.csv", + "exists": true, + "size": 26676, + "sha256": "6f83aacb0d1747b95e287352a7fff5d9d65a1c127b773852346c68485c4ede47" + }, + "profile_json": { + "path": "/data/jialinzhang/SynthesizePipeline-server/DatasetNew/artifacts/data_core/tabular/n3/n3-dataset_profile.json", + "exists": true, + "size": 5235, + "sha256": "23d2e5904a2ca90cbf8d6e3c75887681721e9b90cc705c31a680c11513d0c46f" + }, + "contract_json": { + "path": "/data/jialinzhang/SynthesizePipeline-server/DatasetNew/artifacts/data_core/tabular/n3/n3-dataset_contract_v1.json", + "exists": true, + "size": 6281, + "sha256": "c0cc56f5fe28e1b65927255c6e3c2b0e9479862c2ec6f2fea1664da36c9a3a09" + } + } +} \ No newline at end of file diff --git a/hyperparameter/n3/tabdiff/tabdiff-n3-20260504_210335/models_tabdiff/trained.pt b/hyperparameter/n3/tabdiff/tabdiff-n3-20260504_210335/models_tabdiff/trained.pt new file mode 100644 index 0000000000000000000000000000000000000000..bc319a55a9c7152a1137f968b6fa1c735125ad11 --- /dev/null +++ b/hyperparameter/n3/tabdiff/tabdiff-n3-20260504_210335/models_tabdiff/trained.pt @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:306660b8aad4549267c68390b017e15ddb9bc06a02c80515eb72a97ae31a81eb +size 74 diff --git a/hyperparameter/n3/tabdiff/tabdiff-n3-20260504_210335/public_gate/normalized_schema_snapshot.json b/hyperparameter/n3/tabdiff/tabdiff-n3-20260504_210335/public_gate/normalized_schema_snapshot.json new file mode 100644 index 0000000000000000000000000000000000000000..c41fe304503de23190a02e6cbfafa35b3bf134d3 --- /dev/null +++ b/hyperparameter/n3/tabdiff/tabdiff-n3-20260504_210335/public_gate/normalized_schema_snapshot.json @@ -0,0 +1,259 @@ +{ + "dataset_id": "n3", + "target_column": "quality", + "task_type": "classification", + "columns": [ + { + "name": "fixed acidity", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 66, + "unique_ratio": 0.016845, + "example_values": [ + "7.1", + "8.5", + "6.4", + "6.8", + "7.6" + ] + } + }, + { + "name": "volatile acidity", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 121, + "unique_ratio": 0.030883, + "example_values": [ + "0.31", + "0.21", + "0.24", + "0.43", + "0.27" + ] + } + }, + { + "name": "citric acid", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 85, + "unique_ratio": 0.021695, + "example_values": [ + "0.17", + "0.41", + "0.31", + "0.25", + "0.3" + ] + } + }, + { + "name": "residual sugar", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 296, + "unique_ratio": 0.075549, + "example_values": [ + "1", + "4.3", + "2.8", + "13", + "12.9" + ] + } + }, + { + "name": "chlorides", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 147, + "unique_ratio": 0.037519, + "example_values": [ + "0.042", + "0.036", + "0.038", + "0.047", + "0.033" + ] + } + }, + { + "name": "free sulfur dioxide", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 120, + "unique_ratio": 0.030628, + "example_values": [ + "21", + "24", + "41", + "43", + "69" + ] + } + }, + { + "name": "total sulfur dioxide", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 244, + "unique_ratio": 0.062277, + "example_values": [ + "144", + "99", + "114", + "132", + "160" + ] + } + }, + { + "name": "density", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 839, + "unique_ratio": 0.21414, + "example_values": [ + "0.99304", + "0.9947", + "0.99155", + "0.98975", + "0.99705" + ] + } + }, + { + "name": "pH", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 100, + "unique_ratio": 0.025523, + "example_values": [ + "3.13", + "3.18", + "3.37", + "3.21", + "3.16" + ] + } + }, + { + "name": "sulphates", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 78, + "unique_ratio": 0.019908, + "example_values": [ + "0.4", + "0.53", + "0.66", + "0.47", + "0.5" + ] + } + }, + { + "name": "alcohol", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 97, + "unique_ratio": 0.024758, + "example_values": [ + "9.6", + "9.7", + "11.7", + "13.4", + "8.8" + ] + } + }, + { + "name": "quality", + "role": "target", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 7, + "unique_ratio": 0.001787, + "example_values": [ + "5", + "6", + "7", + "8", + "3" + ] + } + } + ] +} \ No newline at end of file diff --git a/hyperparameter/n3/tabdiff/tabdiff-n3-20260504_210335/public_gate/public_gate_report.json b/hyperparameter/n3/tabdiff/tabdiff-n3-20260504_210335/public_gate/public_gate_report.json new file mode 100644 index 0000000000000000000000000000000000000000..93b97319f739e39079d6c6549fd2020f8a6dac25 --- /dev/null +++ b/hyperparameter/n3/tabdiff/tabdiff-n3-20260504_210335/public_gate/public_gate_report.json @@ -0,0 +1,37 @@ +{ + "dataset_id": "n3", + "status": "pass", + "checks": [ + { + "check_id": "PG001_csv_parse_ok", + "status": "pass" + }, + { + "check_id": "PG002_split_header_consistent", + "status": "pass" + }, + { + "check_id": "PG003_profile_header_match", + "status": "pass" + }, + { + "check_id": "PG004_missing_token_normalized", + "status": "pass" + }, + { + "check_id": "PG005_semantic_type_validated", + "status": "pass" + }, + { + "check_id": "PG006_target_defined_and_valid", + "status": "pass" + } + ], + "target_column": "quality", + "task_type": "classification", + "input_splits": { + "train": "/data/jialinzhang/SynthesizePipeline-server/DatasetNew/n3/n3-train.csv", + "val": "/data/jialinzhang/SynthesizePipeline-server/DatasetNew/n3/n3-val.csv", + "test": "/data/jialinzhang/SynthesizePipeline-server/DatasetNew/n3/n3-test.csv" + } +} \ No newline at end of file diff --git a/hyperparameter/n3/tabdiff/tabdiff-n3-20260504_210335/public_gate/staged_input_manifest.json b/hyperparameter/n3/tabdiff/tabdiff-n3-20260504_210335/public_gate/staged_input_manifest.json new file mode 100644 index 0000000000000000000000000000000000000000..a45c63508b2e52081aca310a4f74699f31e1c1da --- /dev/null +++ b/hyperparameter/n3/tabdiff/tabdiff-n3-20260504_210335/public_gate/staged_input_manifest.json @@ -0,0 +1,264 @@ +{ + "dataset_id": "n3", + "target_column": "quality", + "task_type": "classification", + "train_csv": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/n3/tabdiff/tabdiff-n3-20260504_210335/staged/public/train.csv", + "val_csv": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/n3/tabdiff/tabdiff-n3-20260504_210335/staged/public/val.csv", + "test_csv": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/n3/tabdiff/tabdiff-n3-20260504_210335/staged/public/test.csv", + "features_json": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/n3/tabdiff/tabdiff-n3-20260504_210335/staged/public/staged_features.json", + "public_gate_report": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/n3/tabdiff/tabdiff-n3-20260504_210335/public_gate/public_gate_report.json", + "column_schema": [ + { + "name": "fixed acidity", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 66, + "unique_ratio": 0.016845, + "example_values": [ + "7.1", + "8.5", + "6.4", + "6.8", + "7.6" + ] + } + }, + { + "name": "volatile acidity", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 121, + "unique_ratio": 0.030883, + "example_values": [ + "0.31", + "0.21", + "0.24", + "0.43", + "0.27" + ] + } + }, + { + "name": "citric acid", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 85, + "unique_ratio": 0.021695, + "example_values": [ + "0.17", + "0.41", + "0.31", + "0.25", + "0.3" + ] + } + }, + { + "name": "residual sugar", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 296, + "unique_ratio": 0.075549, + "example_values": [ + "1", + "4.3", + "2.8", + "13", + "12.9" + ] + } + }, + { + "name": "chlorides", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 147, + "unique_ratio": 0.037519, + "example_values": [ + "0.042", + "0.036", + "0.038", + "0.047", + "0.033" + ] + } + }, + { + "name": "free sulfur dioxide", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 120, + "unique_ratio": 0.030628, + "example_values": [ + "21", + "24", + "41", + "43", + "69" + ] + } + }, + { + "name": "total sulfur dioxide", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 244, + "unique_ratio": 0.062277, + "example_values": [ + "144", + "99", + "114", + "132", + "160" + ] + } + }, + { + "name": "density", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 839, + "unique_ratio": 0.21414, + "example_values": [ + "0.99304", + "0.9947", + "0.99155", + "0.98975", + "0.99705" + ] + } + }, + { + "name": "pH", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 100, + "unique_ratio": 0.025523, + "example_values": [ + "3.13", + "3.18", + "3.37", + "3.21", + "3.16" + ] + } + }, + { + "name": "sulphates", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 78, + "unique_ratio": 0.019908, + "example_values": [ + "0.4", + "0.53", + "0.66", + "0.47", + "0.5" + ] + } + }, + { + "name": "alcohol", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 97, + "unique_ratio": 0.024758, + "example_values": [ + "9.6", + "9.7", + "11.7", + "13.4", + "8.8" + ] + } + }, + { + "name": "quality", + "role": "target", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 7, + "unique_ratio": 0.001787, + "example_values": [ + "5", + "6", + "7", + "8", + "3" + ] + } + } + ] +} \ No newline at end of file diff --git a/hyperparameter/n3/tabdiff/tabdiff-n3-20260504_210335/run_config.json b/hyperparameter/n3/tabdiff/tabdiff-n3-20260504_210335/run_config.json new file mode 100644 index 0000000000000000000000000000000000000000..c0e69ea8a84c9a3ee7a95ae9a019618e6544b72b --- /dev/null +++ b/hyperparameter/n3/tabdiff/tabdiff-n3-20260504_210335/run_config.json @@ -0,0 +1,40 @@ +{ + "schema_version": 1, + "recorded_at": "2026-05-04T21:03:35", + "dataset_id": "n3", + "model": "tabdiff", + "work_dir": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/n3/tabdiff/tabdiff-n3-20260504_210335", + "dataset_source_requested": "new", + "dataset_source_resolved": "new", + "cli_args": { + "model": "tabdiff", + "dataset": "n3", + "dataset_source": "new", + "train": true, + "generate": true, + "num_rows": 0, + "epochs": 1000, + "output_dir": null, + "model_dir": null, + "work_dir": null, + "resume": false, + "no_stats": false + }, + "resolved": { + "num_rows": 3918, + "model_path": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/n3/tabdiff/tabdiff-n3-20260504_210335/models_tabdiff/trained.pt", + "output_csv": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/n3/tabdiff/tabdiff-n3-20260504_210335/tabdiff-n3-3918-20260504_212137.csv" + }, + "input_artifacts": { + "public_gate_report": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/n3/tabdiff/tabdiff-n3-20260504_210335/public_gate/public_gate_report.json", + "public_manifest": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/n3/tabdiff/tabdiff-n3-20260504_210335/public_gate/staged_input_manifest.json", + "model_manifest": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/n3/tabdiff/tabdiff-n3-20260504_210335/staged/tabdiff/model_input_manifest.json", + "train_csv": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/n3/tabdiff/tabdiff-n3-20260504_210335/staged/public/train.csv", + "features_json": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/n3/tabdiff/tabdiff-n3-20260504_210335/staged/public/staged_features.json", + "target_column": "quality", + "task_type": "classification" + }, + "env_overrides": { + "BENCHMARK_TABDIFF_GPUS": "device=3" + } +} \ No newline at end of file diff --git a/hyperparameter/n3/tabdiff/tabdiff-n3-20260504_210335/runtime_result.json b/hyperparameter/n3/tabdiff/tabdiff-n3-20260504_210335/runtime_result.json new file mode 100644 index 0000000000000000000000000000000000000000..d9343b06715fb9f73b5dfc0833143717b06a9d34 --- /dev/null +++ b/hyperparameter/n3/tabdiff/tabdiff-n3-20260504_210335/runtime_result.json @@ -0,0 +1,27 @@ +{ + "dataset_id": "n3", + "model": "tabdiff", + "run_id": "tabdiff-n3-20260504_210335", + "public_gate_status": "pass", + "adapter_ready_status": "pass", + "train_status": "success", + "generate_status": "success", + "reason_code": null, + "reason_detail": null, + "artifacts": { + "synthetic_csv": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/n3/tabdiff/tabdiff-n3-20260504_210335/tabdiff-n3-3918-20260504_212137.csv", + "model_path": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/n3/tabdiff/tabdiff-n3-20260504_210335/models_tabdiff/trained.pt" + }, + "timings": { + "train": { + "started_at": "2026-05-04T21:03:35", + "ended_at": "2026-05-04T21:21:37", + "duration_sec": 1082.398 + }, + "generate": { + "started_at": "2026-05-04T21:21:37", + "ended_at": "2026-05-04T21:21:52", + "duration_sec": 14.606 + } + } +} \ No newline at end of file diff --git a/hyperparameter/n3/tabdiff/tabdiff-n3-20260504_210335/staged/public/staged_features.json b/hyperparameter/n3/tabdiff/tabdiff-n3-20260504_210335/staged/public/staged_features.json new file mode 100644 index 0000000000000000000000000000000000000000..08fe4d766d091d2f2ddba724a16b9509cbe4c390 --- /dev/null +++ b/hyperparameter/n3/tabdiff/tabdiff-n3-20260504_210335/staged/public/staged_features.json @@ -0,0 +1,62 @@ +[ + { + "feature_name": "fixed acidity", + "data_type": "continuous", + "is_target": false + }, + { + "feature_name": "volatile acidity", + "data_type": "continuous", + "is_target": false + }, + { + "feature_name": "citric acid", + "data_type": "continuous", + "is_target": false + }, + { + "feature_name": "residual sugar", + "data_type": "continuous", + "is_target": false + }, + { + "feature_name": "chlorides", + "data_type": "continuous", + "is_target": false + }, + { + "feature_name": "free sulfur dioxide", + "data_type": "continuous", + "is_target": false + }, + { + "feature_name": "total sulfur dioxide", + "data_type": "continuous", + "is_target": false + }, + { + "feature_name": "density", + "data_type": "continuous", + "is_target": false + }, + { + "feature_name": "pH", + "data_type": "continuous", + "is_target": false + }, + { + "feature_name": "sulphates", + "data_type": "continuous", + "is_target": false + }, + { + "feature_name": "alcohol", + "data_type": "continuous", + "is_target": false + }, + { + "feature_name": "quality", + "data_type": "continuous", + "is_target": true + } +] \ No newline at end of file diff --git a/hyperparameter/n3/tabdiff/tabdiff-n3-20260504_210335/staged/public/test.csv b/hyperparameter/n3/tabdiff/tabdiff-n3-20260504_210335/staged/public/test.csv new file mode 100644 index 0000000000000000000000000000000000000000..db5cd50d3746410ea470625fa2ba2c8e9775cc0d --- /dev/null +++ b/hyperparameter/n3/tabdiff/tabdiff-n3-20260504_210335/staged/public/test.csv @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:19e107152a94432e2a37ff045c00cfe35e1be30208b1553080d7dd0ede256d3b +size 28944 diff --git a/hyperparameter/n3/tabdiff/tabdiff-n3-20260504_210335/staged/public/train.csv b/hyperparameter/n3/tabdiff/tabdiff-n3-20260504_210335/staged/public/train.csv new file mode 100644 index 0000000000000000000000000000000000000000..87ca26726fe82ccbaa397919305b043c17eb374e --- /dev/null +++ b/hyperparameter/n3/tabdiff/tabdiff-n3-20260504_210335/staged/public/train.csv @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:7813c8cca73ba4bfc6559215257b341c21e459980ad17ae6ddc809306bc9a0b9 +size 229945 diff --git a/hyperparameter/n3/tabdiff/tabdiff-n3-20260504_210335/staged/public/val.csv b/hyperparameter/n3/tabdiff/tabdiff-n3-20260504_210335/staged/public/val.csv new file mode 100644 index 0000000000000000000000000000000000000000..6acf84c76c47093b513c46d5503972a2dff275c0 --- /dev/null +++ b/hyperparameter/n3/tabdiff/tabdiff-n3-20260504_210335/staged/public/val.csv @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:cf5979d9675567d9d6642640c9b84fc6c49e492604144723c30f50516c05cee6 +size 28791 diff --git a/hyperparameter/n3/tabdiff/tabdiff-n3-20260504_210335/staged/tabdiff/adapter_report.json b/hyperparameter/n3/tabdiff/tabdiff-n3-20260504_210335/staged/tabdiff/adapter_report.json new file mode 100644 index 0000000000000000000000000000000000000000..9482400165869fb1dcc0d750f7827aa197746590 --- /dev/null +++ b/hyperparameter/n3/tabdiff/tabdiff-n3-20260504_210335/staged/tabdiff/adapter_report.json @@ -0,0 +1,7 @@ +{ + "adapter_ready_status": "pass", + "adapter_fail_reason_code": null, + "adapter_fail_detail": null, + "adapter_transforms_applied": [], + "model_input_manifest": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/n3/tabdiff/tabdiff-n3-20260504_210335/staged/tabdiff/model_input_manifest.json" +} \ No newline at end of file diff --git a/hyperparameter/n3/tabdiff/tabdiff-n3-20260504_210335/staged/tabdiff/adapter_transforms_applied.json b/hyperparameter/n3/tabdiff/tabdiff-n3-20260504_210335/staged/tabdiff/adapter_transforms_applied.json new file mode 100644 index 0000000000000000000000000000000000000000..0637a088a01e8ddab3bf3fa98dbe804cbde1a0dc --- /dev/null +++ b/hyperparameter/n3/tabdiff/tabdiff-n3-20260504_210335/staged/tabdiff/adapter_transforms_applied.json @@ -0,0 +1 @@ +[] \ No newline at end of file diff --git a/hyperparameter/n3/tabdiff/tabdiff-n3-20260504_210335/staged/tabdiff/model_input_manifest.json b/hyperparameter/n3/tabdiff/tabdiff-n3-20260504_210335/staged/tabdiff/model_input_manifest.json new file mode 100644 index 0000000000000000000000000000000000000000..2ed2ef0feb77cdf0fa3258179687a3e701dac955 --- /dev/null +++ b/hyperparameter/n3/tabdiff/tabdiff-n3-20260504_210335/staged/tabdiff/model_input_manifest.json @@ -0,0 +1,266 @@ +{ + "dataset_id": "n3", + "model": "tabdiff", + "target_column": "quality", + "task_type": "classification", + "column_schema": [ + { + "name": "fixed acidity", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 66, + "unique_ratio": 0.016845, + "example_values": [ + "7.1", + "8.5", + "6.4", + "6.8", + "7.6" + ] + } + }, + { + "name": "volatile acidity", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 121, + "unique_ratio": 0.030883, + "example_values": [ + "0.31", + "0.21", + "0.24", + "0.43", + "0.27" + ] + } + }, + { + "name": "citric acid", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 85, + "unique_ratio": 0.021695, + "example_values": [ + "0.17", + "0.41", + "0.31", + "0.25", + "0.3" + ] + } + }, + { + "name": "residual sugar", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 296, + "unique_ratio": 0.075549, + "example_values": [ + "1", + "4.3", + "2.8", + "13", + "12.9" + ] + } + }, + { + "name": "chlorides", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 147, + "unique_ratio": 0.037519, + "example_values": [ + "0.042", + "0.036", + "0.038", + "0.047", + "0.033" + ] + } + }, + { + "name": "free sulfur dioxide", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 120, + "unique_ratio": 0.030628, + "example_values": [ + "21", + "24", + "41", + "43", + "69" + ] + } + }, + { + "name": "total sulfur dioxide", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 244, + "unique_ratio": 0.062277, + "example_values": [ + "144", + "99", + "114", + "132", + "160" + ] + } + }, + { + "name": "density", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 839, + "unique_ratio": 0.21414, + "example_values": [ + "0.99304", + "0.9947", + "0.99155", + "0.98975", + "0.99705" + ] + } + }, + { + "name": "pH", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 100, + "unique_ratio": 0.025523, + "example_values": [ + "3.13", + "3.18", + "3.37", + "3.21", + "3.16" + ] + } + }, + { + "name": "sulphates", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 78, + "unique_ratio": 0.019908, + "example_values": [ + "0.4", + "0.53", + "0.66", + "0.47", + "0.5" + ] + } + }, + { + "name": "alcohol", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 97, + "unique_ratio": 0.024758, + "example_values": [ + "9.6", + "9.7", + "11.7", + "13.4", + "8.8" + ] + } + }, + { + "name": "quality", + "role": "target", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 7, + "unique_ratio": 0.001787, + "example_values": [ + "5", + "6", + "7", + "8", + "3" + ] + } + } + ], + "public_manifest": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/n3/tabdiff/tabdiff-n3-20260504_210335/public_gate/staged_input_manifest.json", + "train_csv": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/n3/tabdiff/tabdiff-n3-20260504_210335/staged/public/train.csv", + "val_csv": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/n3/tabdiff/tabdiff-n3-20260504_210335/staged/public/val.csv", + "test_csv": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/n3/tabdiff/tabdiff-n3-20260504_210335/staged/public/test.csv", + "features_json": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/n3/tabdiff/tabdiff-n3-20260504_210335/staged/public/staged_features.json", + "public_gate_report": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/n3/tabdiff/tabdiff-n3-20260504_210335/public_gate/public_gate_report.json" +} \ No newline at end of file diff --git a/hyperparameter/n3/tabdiff/tabdiff-n3-20260504_210335/tabdiff-n3-3918-20260504_212137.csv b/hyperparameter/n3/tabdiff/tabdiff-n3-20260504_210335/tabdiff-n3-3918-20260504_212137.csv new file mode 100644 index 0000000000000000000000000000000000000000..75a78d0823669ecc4a6778a3cd354a603873d260 --- /dev/null +++ b/hyperparameter/n3/tabdiff/tabdiff-n3-20260504_210335/tabdiff-n3-3918-20260504_212137.csv @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:225ba0326f52499b7edc5db446c4c89dde579f5387f1e4bcd94a478d10162dfb +size 340607 diff --git a/hyperparameter/n3/tabdiff/tabdiff-n3-20260504_210335/tabdiff_train_meta.json b/hyperparameter/n3/tabdiff/tabdiff-n3-20260504_210335/tabdiff_train_meta.json new file mode 100644 index 0000000000000000000000000000000000000000..766fbee58ad24a4093109b13a8a1d2b70756e62a --- /dev/null +++ b/hyperparameter/n3/tabdiff/tabdiff-n3-20260504_210335/tabdiff_train_meta.json @@ -0,0 +1,5 @@ +{ + "exp_name": "adapter_learnable", + "dataname": "pipeline_n3", + "steps": 1000 +} \ No newline at end of file diff --git a/hyperparameter/n3/tabdiff/tabdiff-n3-20260504_210335/tabular_bundle/pipeline_n3/X_cat_test.npy b/hyperparameter/n3/tabdiff/tabdiff-n3-20260504_210335/tabular_bundle/pipeline_n3/X_cat_test.npy new file mode 100644 index 0000000000000000000000000000000000000000..76306e45faf838d072c21b887a4c1d43d486dc1b --- /dev/null +++ b/hyperparameter/n3/tabdiff/tabdiff-n3-20260504_210335/tabular_bundle/pipeline_n3/X_cat_test.npy @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:87f6573fdfd40c6332a9ef925bcb48bc20f08b3a6f72b6dceb949ae36d1871f7 +size 128 diff --git a/hyperparameter/n3/tabdiff/tabdiff-n3-20260504_210335/tabular_bundle/pipeline_n3/X_cat_train.npy b/hyperparameter/n3/tabdiff/tabdiff-n3-20260504_210335/tabular_bundle/pipeline_n3/X_cat_train.npy new file mode 100644 index 0000000000000000000000000000000000000000..76306e45faf838d072c21b887a4c1d43d486dc1b --- /dev/null +++ b/hyperparameter/n3/tabdiff/tabdiff-n3-20260504_210335/tabular_bundle/pipeline_n3/X_cat_train.npy @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:87f6573fdfd40c6332a9ef925bcb48bc20f08b3a6f72b6dceb949ae36d1871f7 +size 128 diff --git a/hyperparameter/n3/tabdiff/tabdiff-n3-20260504_210335/tabular_bundle/pipeline_n3/X_cat_val.npy b/hyperparameter/n3/tabdiff/tabdiff-n3-20260504_210335/tabular_bundle/pipeline_n3/X_cat_val.npy new file mode 100644 index 0000000000000000000000000000000000000000..76306e45faf838d072c21b887a4c1d43d486dc1b --- /dev/null +++ b/hyperparameter/n3/tabdiff/tabdiff-n3-20260504_210335/tabular_bundle/pipeline_n3/X_cat_val.npy @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:87f6573fdfd40c6332a9ef925bcb48bc20f08b3a6f72b6dceb949ae36d1871f7 +size 128 diff --git a/hyperparameter/n3/tabdiff/tabdiff-n3-20260504_210335/tabular_bundle/pipeline_n3/X_num_test.npy b/hyperparameter/n3/tabdiff/tabdiff-n3-20260504_210335/tabular_bundle/pipeline_n3/X_num_test.npy new file mode 100644 index 0000000000000000000000000000000000000000..94beb8413ef55592710518365965f4cb503523ee --- /dev/null +++ b/hyperparameter/n3/tabdiff/tabdiff-n3-20260504_210335/tabular_bundle/pipeline_n3/X_num_test.npy @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:093d8f405d764277d5a007953f25ab6466f0857f71f0d8f3c437463fb5bf240a +size 172520 diff --git a/hyperparameter/n3/tabdiff/tabdiff-n3-20260504_210335/tabular_bundle/pipeline_n3/X_num_train.npy b/hyperparameter/n3/tabdiff/tabdiff-n3-20260504_210335/tabular_bundle/pipeline_n3/X_num_train.npy new file mode 100644 index 0000000000000000000000000000000000000000..94beb8413ef55592710518365965f4cb503523ee --- /dev/null +++ b/hyperparameter/n3/tabdiff/tabdiff-n3-20260504_210335/tabular_bundle/pipeline_n3/X_num_train.npy @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:093d8f405d764277d5a007953f25ab6466f0857f71f0d8f3c437463fb5bf240a +size 172520 diff --git a/hyperparameter/n3/tabdiff/tabdiff-n3-20260504_210335/tabular_bundle/pipeline_n3/X_num_val.npy b/hyperparameter/n3/tabdiff/tabdiff-n3-20260504_210335/tabular_bundle/pipeline_n3/X_num_val.npy new file mode 100644 index 0000000000000000000000000000000000000000..94beb8413ef55592710518365965f4cb503523ee --- /dev/null +++ b/hyperparameter/n3/tabdiff/tabdiff-n3-20260504_210335/tabular_bundle/pipeline_n3/X_num_val.npy @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:093d8f405d764277d5a007953f25ab6466f0857f71f0d8f3c437463fb5bf240a +size 172520 diff --git a/hyperparameter/n3/tabdiff/tabdiff-n3-20260504_210335/tabular_bundle/pipeline_n3/info.json b/hyperparameter/n3/tabdiff/tabdiff-n3-20260504_210335/tabular_bundle/pipeline_n3/info.json new file mode 100644 index 0000000000000000000000000000000000000000..8b5f7b3a1a0c4ba2d967287826b9f5c5fd7619de --- /dev/null +++ b/hyperparameter/n3/tabdiff/tabdiff-n3-20260504_210335/tabular_bundle/pipeline_n3/info.json @@ -0,0 +1,139 @@ +{ + "name": "pipeline_n3", + "task_type": "multiclass", + "n_num_features": 11, + "n_cat_features": 0, + "train_size": 3918, + "test_num": 3918, + "val_num": 3918, + "train_num": 3918, + "bundle_note": "val/test matrices are train copies (train-only policy; no real held-out rows).", + "num_col_idx": [ + 0, + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10 + ], + "cat_col_idx": [], + "target_col_idx": [ + 11 + ], + "column_names": [ + "fixed acidity", + "volatile acidity", + "citric acid", + "residual sugar", + "chlorides", + "free sulfur dioxide", + "total sulfur dioxide", + "density", + "pH", + "sulphates", + "alcohol", + "quality" + ], + "int_col_idx": [], + "int_columns": [], + "int_col_idx_wrt_num": [], + "metadata": { + "columns": { + "0": { + "sdtype": "numerical", + "computer_representation": "Float" + }, + "1": { + "sdtype": "numerical", + "computer_representation": "Float" + }, + "2": { + "sdtype": "numerical", + "computer_representation": "Float" + }, + "3": { + "sdtype": "numerical", + "computer_representation": "Float" + }, + "4": { + "sdtype": "numerical", + "computer_representation": "Float" + }, + "5": { + "sdtype": "numerical", + "computer_representation": "Float" + }, + "6": { + "sdtype": "numerical", + "computer_representation": "Float" + }, + "7": { + "sdtype": "numerical", + "computer_representation": "Float" + }, + "8": { + "sdtype": "numerical", + "computer_representation": "Float" + }, + "9": { + "sdtype": "numerical", + "computer_representation": "Float" + }, + "10": { + "sdtype": "numerical", + "computer_representation": "Float" + }, + "11": { + "sdtype": "categorical" + } + } + }, + "idx_mapping": { + "0": 0, + "1": 1, + "2": 2, + "3": 3, + "4": 4, + "5": 5, + "6": 6, + "7": 7, + "8": 8, + "9": 9, + "10": 10, + "11": 11 + }, + "inverse_idx_mapping": { + "0": 0, + "1": 1, + "2": 2, + "3": 3, + "4": 4, + "5": 5, + "6": 6, + "7": 7, + "8": 8, + "9": 9, + "10": 10, + "11": 11 + }, + "idx_name_mapping": { + "0": "fixed acidity", + "1": "volatile acidity", + "2": "citric acid", + "3": "residual sugar", + "4": "chlorides", + "5": "free sulfur dioxide", + "6": "total sulfur dioxide", + "7": "density", + "8": "pH", + "9": "sulphates", + "10": "alcohol", + "11": "quality" + }, + "n_classes": 7 +} \ No newline at end of file diff --git a/hyperparameter/n3/tabdiff/tabdiff-n3-20260504_210335/tabular_bundle/pipeline_n3/real.csv b/hyperparameter/n3/tabdiff/tabdiff-n3-20260504_210335/tabular_bundle/pipeline_n3/real.csv new file mode 100644 index 0000000000000000000000000000000000000000..b4297372e8b9b076d6c03efa023cbf23edee4f56 --- /dev/null +++ b/hyperparameter/n3/tabdiff/tabdiff-n3-20260504_210335/tabular_bundle/pipeline_n3/real.csv @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:c80ba530c12c66a78530db5d98ead5f78fcdad2fe5eccccbc28d9649ceaa6023 +size 229825 diff --git a/hyperparameter/n3/tabdiff/tabdiff-n3-20260504_210335/tabular_bundle/pipeline_n3/test.csv b/hyperparameter/n3/tabdiff/tabdiff-n3-20260504_210335/tabular_bundle/pipeline_n3/test.csv new file mode 100644 index 0000000000000000000000000000000000000000..b4297372e8b9b076d6c03efa023cbf23edee4f56 --- /dev/null +++ b/hyperparameter/n3/tabdiff/tabdiff-n3-20260504_210335/tabular_bundle/pipeline_n3/test.csv @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:c80ba530c12c66a78530db5d98ead5f78fcdad2fe5eccccbc28d9649ceaa6023 +size 229825 diff --git a/hyperparameter/n3/tabdiff/tabdiff-n3-20260504_210335/tabular_bundle/pipeline_n3/val.csv b/hyperparameter/n3/tabdiff/tabdiff-n3-20260504_210335/tabular_bundle/pipeline_n3/val.csv new file mode 100644 index 0000000000000000000000000000000000000000..b4297372e8b9b076d6c03efa023cbf23edee4f56 --- /dev/null +++ b/hyperparameter/n3/tabdiff/tabdiff-n3-20260504_210335/tabular_bundle/pipeline_n3/val.csv @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:c80ba530c12c66a78530db5d98ead5f78fcdad2fe5eccccbc28d9649ceaa6023 +size 229825 diff --git a/hyperparameter/n3/tabdiff/tabdiff-n3-20260504_210335/tabular_bundle/pipeline_n3/y_test.npy b/hyperparameter/n3/tabdiff/tabdiff-n3-20260504_210335/tabular_bundle/pipeline_n3/y_test.npy new file mode 100644 index 0000000000000000000000000000000000000000..1f737a58cd26592130c3604aaa90044a451eb576 --- /dev/null +++ b/hyperparameter/n3/tabdiff/tabdiff-n3-20260504_210335/tabular_bundle/pipeline_n3/y_test.npy @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:85ed37c52f0ea54dfd3a476dcfafff02d61e92783748e5ee9aadfad20578bcb1 +size 31472 diff --git a/hyperparameter/n3/tabdiff/tabdiff-n3-20260504_210335/tabular_bundle/pipeline_n3/y_train.npy b/hyperparameter/n3/tabdiff/tabdiff-n3-20260504_210335/tabular_bundle/pipeline_n3/y_train.npy new file mode 100644 index 0000000000000000000000000000000000000000..1f737a58cd26592130c3604aaa90044a451eb576 --- /dev/null +++ b/hyperparameter/n3/tabdiff/tabdiff-n3-20260504_210335/tabular_bundle/pipeline_n3/y_train.npy @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:85ed37c52f0ea54dfd3a476dcfafff02d61e92783748e5ee9aadfad20578bcb1 +size 31472 diff --git a/hyperparameter/n3/tabdiff/tabdiff-n3-20260504_210335/tabular_bundle/pipeline_n3/y_val.npy b/hyperparameter/n3/tabdiff/tabdiff-n3-20260504_210335/tabular_bundle/pipeline_n3/y_val.npy new file mode 100644 index 0000000000000000000000000000000000000000..1f737a58cd26592130c3604aaa90044a451eb576 --- /dev/null +++ b/hyperparameter/n3/tabdiff/tabdiff-n3-20260504_210335/tabular_bundle/pipeline_n3/y_val.npy @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:85ed37c52f0ea54dfd3a476dcfafff02d61e92783748e5ee9aadfad20578bcb1 +size 31472 diff --git a/hyperparameter/n3/tabdiff/tabdiff-n3-20260504_210335/train_20260504_210335.log b/hyperparameter/n3/tabdiff/tabdiff-n3-20260504_210335/train_20260504_210335.log new file mode 100644 index 0000000000000000000000000000000000000000..e30609e083186972dff3df9dc3e2d595f8b95406 --- /dev/null +++ b/hyperparameter/n3/tabdiff/tabdiff-n3-20260504_210335/train_20260504_210335.log @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:d3920d0cf1d6d14266d62c3b9287feed520068e08f697a58e6b5fb2f76cc2ffc +size 586491 diff --git a/hyperparameter/n3/tabpfgen/tabpfgen-n3-20260505_030703/_tabpfgen_generate.py b/hyperparameter/n3/tabpfgen/tabpfgen-n3-20260505_030703/_tabpfgen_generate.py new file mode 100644 index 0000000000000000000000000000000000000000..15d5540aed0e6302fa10912d2702d2233b6b2676 --- /dev/null +++ b/hyperparameter/n3/tabpfgen/tabpfgen-n3-20260505_030703/_tabpfgen_generate.py @@ -0,0 +1,122 @@ +import os +import numpy as np +import pandas as pd +import json +from tabpfgen import TabPFGen + +df = pd.read_csv("/work/output-Benchmark-trainonly-v1/n3/tabpfgen/tabpfgen-n3-20260505_030703/staged/public/train.csv") +target_col = "quality" + +target_missing = df[target_col].isna() +if target_missing.any(): + dropped = int(target_missing.sum()) + df = df.loc[~target_missing].copy() + print( + f"[TabPFGen] Dropped {dropped} rows with missing target '{target_col}'" + ) +if df.empty: + raise ValueError( + f"[TabPFGen] No rows remain after dropping missing target '{target_col}'" + ) + +feature_cols = [c for c in df.columns if c != target_col] + +cat_encodings = {} +for col in feature_cols: + if df[col].dtype == object or str(df[col].dtype) == 'category': + cats = sorted(df[col].dropna().unique().tolist(), key=str) + cat_map = {v: i for i, v in enumerate(cats)} + df[col] = df[col].map(cat_map).astype(float) + cat_encodings[col] = cats + print(f"[TabPFGen] Label-encoded '{col}' ({len(cats)} categories)") + +target_cats = None +if df[target_col].dtype == object or str(df[target_col].dtype) == 'category': + cats = sorted(df[target_col].dropna().unique().tolist(), key=str) + t_map = {v: i for i, v in enumerate(cats)} + df[target_col] = df[target_col].map(t_map).astype(float) + target_cats = cats + print(f"[TabPFGen] Label-encoded target '{target_col}' ({len(cats)} categories)") + +X = df[feature_cols].values.astype(np.float32) +y = df[target_col].values +fit_rows_cap = max(1, int(os.environ.get("TABPFGEN_FIT_MAX_ROWS", "50000"))) +if len(X) > fit_rows_cap: + rng = np.random.default_rng(42) + idx = np.sort(rng.choice(len(X), size=fit_rows_cap, replace=False)) + X = X[idx] + y = y[idx] + print(f"[TabPFGen] Downsampled fit rows -> {len(X)} (cap={fit_rows_cap})") +target_n = int(3918) + +for i in range(X.shape[1]): + col_vals = X[:, i] + mask = np.isnan(col_vals) + if mask.any(): + mean_val = np.nanmean(col_vals) + X[mask, i] = mean_val if not np.isnan(mean_val) else 0.0 + +chunk_rows = max(1, int(os.environ.get("TABPFGEN_GEN_CHUNK_ROWS", "256"))) +device = (os.environ.get("TABPFGEN_DEVICE") or "auto").strip() or "auto" + +# TabPFGen v0.1.x API:仅支持 n_sgld_steps / sgld_* / device。 +# (旧版脚本中的 energy_*_chunk 与上游 TabPFGen 不一致,会导致 TypeError。) +gen = TabPFGen( + n_sgld_steps=1000, + sgld_step_size=0.01, + sgld_noise_scale=0.01, + device=device, +) + +print(f"[TabPFGen] Generating {target_n} rows via generate_classification (chunk_rows={chunk_rows}, device={device})") +x_parts = [] +y_parts = [] +remaining = target_n +while remaining > 0: + take = min(chunk_rows, remaining) + X_part, y_part = gen.generate_classification(X, y, n_samples=take) + x_parts.append(np.asarray(X_part)) + y_parts.append(np.asarray(y_part)) + remaining -= take + print(f"[TabPFGen] chunk done: take={take}, remaining={remaining}") + +X_syn = np.concatenate(x_parts, axis=0) +y_syn = np.concatenate(y_parts, axis=0) + +syn_df = pd.DataFrame(X_syn, columns=feature_cols) +syn_df[target_col] = y_syn + +for col, cats in cat_encodings.items(): + codes = np.round(syn_df[col].values).astype(int) + codes = np.clip(codes, 0, len(cats) - 1) + syn_df[col] = [cats[c] for c in codes] + +if target_cats is not None: + codes = np.round(syn_df[target_col].values).astype(int) + codes = np.clip(codes, 0, len(target_cats) - 1) + syn_df[target_col] = [target_cats[c] for c in codes] + +if len(syn_df) > target_n: + print(f"[TabPFGen] Trimming rows: {len(syn_df)} -> {target_n}") + syn_df = syn_df.iloc[:target_n].copy() +elif len(syn_df) < target_n: + deficit = target_n - len(syn_df) + print(f"[TabPFGen] Padding rows: {len(syn_df)} -> {target_n} (deficit={deficit})") + if len(syn_df) > 0: + extra = syn_df.sample(n=deficit, replace=True, random_state=42) + syn_df = pd.concat( + [syn_df.reset_index(drop=True), extra.reset_index(drop=True)], + ignore_index=True, + ) + else: + syn_df = df[feature_cols + [target_col]].sample( + n=target_n, replace=True, random_state=42 + ).reset_index(drop=True) + +syn_df = syn_df[list(df.columns)] +if len(syn_df) != target_n: + raise RuntimeError( + f"[TabPFGen] Row alignment failed: got {len(syn_df)}, expected {target_n}" + ) +syn_df.to_csv("/work/output-Benchmark-trainonly-v1/n3/tabpfgen/tabpfgen-n3-20260505_030703/tabpfgen-n3-3918-20260505_030704.csv", index=False) +print(f"[TabPFGen] Saved {len(syn_df)} rows -> /work/output-Benchmark-trainonly-v1/n3/tabpfgen/tabpfgen-n3-20260505_030703/tabpfgen-n3-3918-20260505_030704.csv") diff --git a/hyperparameter/n3/tabpfgen/tabpfgen-n3-20260505_030703/gen_20260505_030704.log b/hyperparameter/n3/tabpfgen/tabpfgen-n3-20260505_030703/gen_20260505_030704.log new file mode 100644 index 0000000000000000000000000000000000000000..8de6e15214b0fee5ba9080b620c29fc6c112539b --- /dev/null +++ b/hyperparameter/n3/tabpfgen/tabpfgen-n3-20260505_030703/gen_20260505_030704.log @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:9e441f54fe359096ba022b627e97722e2ae3740ffb72e9d3af6ff61fcb1851fc +size 12153 diff --git a/hyperparameter/n3/tabpfgen/tabpfgen-n3-20260505_030703/input_snapshot.json b/hyperparameter/n3/tabpfgen/tabpfgen-n3-20260505_030703/input_snapshot.json new file mode 100644 index 0000000000000000000000000000000000000000..2df53dbad689923eb0692c0029f1d32d625f8ce4 --- /dev/null +++ b/hyperparameter/n3/tabpfgen/tabpfgen-n3-20260505_030703/input_snapshot.json @@ -0,0 +1,36 @@ +{ + "dataset_id": "n3", + "model": "tabpfgen", + "inputs": { + "train_csv": { + "path": "/data/jialinzhang/SynthesizePipeline-server/DatasetNew/n3/n3-train.csv", + "exists": true, + "size": 211519, + "sha256": "2160a06db2fea02adb0ebb79d8d853bd2544580be301e71f6e8deeb1489a9009" + }, + "val_csv": { + "path": "/data/jialinzhang/SynthesizePipeline-server/DatasetNew/n3/n3-val.csv", + "exists": true, + "size": 26499, + "sha256": "d5ccfee07dfa9e7bdee5bb87642b43828e09f74c6cc0266a3d19d9feaa83106e" + }, + "test_csv": { + "path": "/data/jialinzhang/SynthesizePipeline-server/DatasetNew/n3/n3-test.csv", + "exists": true, + "size": 26676, + "sha256": "6f83aacb0d1747b95e287352a7fff5d9d65a1c127b773852346c68485c4ede47" + }, + "profile_json": { + "path": "/data/jialinzhang/SynthesizePipeline-server/DatasetNew/artifacts/data_core/tabular/n3/n3-dataset_profile.json", + "exists": true, + "size": 5235, + "sha256": "23d2e5904a2ca90cbf8d6e3c75887681721e9b90cc705c31a680c11513d0c46f" + }, + "contract_json": { + "path": "/data/jialinzhang/SynthesizePipeline-server/DatasetNew/artifacts/data_core/tabular/n3/n3-dataset_contract_v1.json", + "exists": true, + "size": 6281, + "sha256": "c0cc56f5fe28e1b65927255c6e3c2b0e9479862c2ec6f2fea1664da36c9a3a09" + } + } +} \ No newline at end of file diff --git a/hyperparameter/n3/tabpfgen/tabpfgen-n3-20260505_030703/public_gate/normalized_schema_snapshot.json b/hyperparameter/n3/tabpfgen/tabpfgen-n3-20260505_030703/public_gate/normalized_schema_snapshot.json new file mode 100644 index 0000000000000000000000000000000000000000..c41fe304503de23190a02e6cbfafa35b3bf134d3 --- /dev/null +++ b/hyperparameter/n3/tabpfgen/tabpfgen-n3-20260505_030703/public_gate/normalized_schema_snapshot.json @@ -0,0 +1,259 @@ +{ + "dataset_id": "n3", + "target_column": "quality", + "task_type": "classification", + "columns": [ + { + "name": "fixed acidity", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 66, + "unique_ratio": 0.016845, + "example_values": [ + "7.1", + "8.5", + "6.4", + "6.8", + "7.6" + ] + } + }, + { + "name": "volatile acidity", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 121, + "unique_ratio": 0.030883, + "example_values": [ + "0.31", + "0.21", + "0.24", + "0.43", + "0.27" + ] + } + }, + { + "name": "citric acid", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 85, + "unique_ratio": 0.021695, + "example_values": [ + "0.17", + "0.41", + "0.31", + "0.25", + "0.3" + ] + } + }, + { + "name": "residual sugar", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 296, + "unique_ratio": 0.075549, + "example_values": [ + "1", + "4.3", + "2.8", + "13", + "12.9" + ] + } + }, + { + "name": "chlorides", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 147, + "unique_ratio": 0.037519, + "example_values": [ + "0.042", + "0.036", + "0.038", + "0.047", + "0.033" + ] + } + }, + { + "name": "free sulfur dioxide", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 120, + "unique_ratio": 0.030628, + "example_values": [ + "21", + "24", + "41", + "43", + "69" + ] + } + }, + { + "name": "total sulfur dioxide", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 244, + "unique_ratio": 0.062277, + "example_values": [ + "144", + "99", + "114", + "132", + "160" + ] + } + }, + { + "name": "density", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 839, + "unique_ratio": 0.21414, + "example_values": [ + "0.99304", + "0.9947", + "0.99155", + "0.98975", + "0.99705" + ] + } + }, + { + "name": "pH", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 100, + "unique_ratio": 0.025523, + "example_values": [ + "3.13", + "3.18", + "3.37", + "3.21", + "3.16" + ] + } + }, + { + "name": "sulphates", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 78, + "unique_ratio": 0.019908, + "example_values": [ + "0.4", + "0.53", + "0.66", + "0.47", + "0.5" + ] + } + }, + { + "name": "alcohol", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 97, + "unique_ratio": 0.024758, + "example_values": [ + "9.6", + "9.7", + "11.7", + "13.4", + "8.8" + ] + } + }, + { + "name": "quality", + "role": "target", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 7, + "unique_ratio": 0.001787, + "example_values": [ + "5", + "6", + "7", + "8", + "3" + ] + } + } + ] +} \ No newline at end of file diff --git a/hyperparameter/n3/tabpfgen/tabpfgen-n3-20260505_030703/public_gate/public_gate_report.json b/hyperparameter/n3/tabpfgen/tabpfgen-n3-20260505_030703/public_gate/public_gate_report.json new file mode 100644 index 0000000000000000000000000000000000000000..93b97319f739e39079d6c6549fd2020f8a6dac25 --- /dev/null +++ b/hyperparameter/n3/tabpfgen/tabpfgen-n3-20260505_030703/public_gate/public_gate_report.json @@ -0,0 +1,37 @@ +{ + "dataset_id": "n3", + "status": "pass", + "checks": [ + { + "check_id": "PG001_csv_parse_ok", + "status": "pass" + }, + { + "check_id": "PG002_split_header_consistent", + "status": "pass" + }, + { + "check_id": "PG003_profile_header_match", + "status": "pass" + }, + { + "check_id": "PG004_missing_token_normalized", + "status": "pass" + }, + { + "check_id": "PG005_semantic_type_validated", + "status": "pass" + }, + { + "check_id": "PG006_target_defined_and_valid", + "status": "pass" + } + ], + "target_column": "quality", + "task_type": "classification", + "input_splits": { + "train": "/data/jialinzhang/SynthesizePipeline-server/DatasetNew/n3/n3-train.csv", + "val": "/data/jialinzhang/SynthesizePipeline-server/DatasetNew/n3/n3-val.csv", + "test": "/data/jialinzhang/SynthesizePipeline-server/DatasetNew/n3/n3-test.csv" + } +} \ No newline at end of file diff --git a/hyperparameter/n3/tabpfgen/tabpfgen-n3-20260505_030703/public_gate/staged_input_manifest.json b/hyperparameter/n3/tabpfgen/tabpfgen-n3-20260505_030703/public_gate/staged_input_manifest.json new file mode 100644 index 0000000000000000000000000000000000000000..fcd4bdfad0ef880c03ded4db25c224c434e0279f --- /dev/null +++ b/hyperparameter/n3/tabpfgen/tabpfgen-n3-20260505_030703/public_gate/staged_input_manifest.json @@ -0,0 +1,264 @@ +{ + "dataset_id": "n3", + "target_column": "quality", + "task_type": "classification", + "train_csv": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/n3/tabpfgen/tabpfgen-n3-20260505_030703/staged/public/train.csv", + "val_csv": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/n3/tabpfgen/tabpfgen-n3-20260505_030703/staged/public/val.csv", + "test_csv": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/n3/tabpfgen/tabpfgen-n3-20260505_030703/staged/public/test.csv", + "features_json": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/n3/tabpfgen/tabpfgen-n3-20260505_030703/staged/public/staged_features.json", + "public_gate_report": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/n3/tabpfgen/tabpfgen-n3-20260505_030703/public_gate/public_gate_report.json", + "column_schema": [ + { + "name": "fixed acidity", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 66, + "unique_ratio": 0.016845, + "example_values": [ + "7.1", + "8.5", + "6.4", + "6.8", + "7.6" + ] + } + }, + { + "name": "volatile acidity", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 121, + "unique_ratio": 0.030883, + "example_values": [ + "0.31", + "0.21", + "0.24", + "0.43", + "0.27" + ] + } + }, + { + "name": "citric acid", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 85, + "unique_ratio": 0.021695, + "example_values": [ + "0.17", + "0.41", + "0.31", + "0.25", + "0.3" + ] + } + }, + { + "name": "residual sugar", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 296, + "unique_ratio": 0.075549, + "example_values": [ + "1", + "4.3", + "2.8", + "13", + "12.9" + ] + } + }, + { + "name": "chlorides", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 147, + "unique_ratio": 0.037519, + "example_values": [ + "0.042", + "0.036", + "0.038", + "0.047", + "0.033" + ] + } + }, + { + "name": "free sulfur dioxide", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 120, + "unique_ratio": 0.030628, + "example_values": [ + "21", + "24", + "41", + "43", + "69" + ] + } + }, + { + "name": "total sulfur dioxide", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 244, + "unique_ratio": 0.062277, + "example_values": [ + "144", + "99", + "114", + "132", + "160" + ] + } + }, + { + "name": "density", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 839, + "unique_ratio": 0.21414, + "example_values": [ + "0.99304", + "0.9947", + "0.99155", + "0.98975", + "0.99705" + ] + } + }, + { + "name": "pH", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 100, + "unique_ratio": 0.025523, + "example_values": [ + "3.13", + "3.18", + "3.37", + "3.21", + "3.16" + ] + } + }, + { + "name": "sulphates", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 78, + "unique_ratio": 0.019908, + "example_values": [ + "0.4", + "0.53", + "0.66", + "0.47", + "0.5" + ] + } + }, + { + "name": "alcohol", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 97, + "unique_ratio": 0.024758, + "example_values": [ + "9.6", + "9.7", + "11.7", + "13.4", + "8.8" + ] + } + }, + { + "name": "quality", + "role": "target", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 7, + "unique_ratio": 0.001787, + "example_values": [ + "5", + "6", + "7", + "8", + "3" + ] + } + } + ] +} \ No newline at end of file diff --git a/hyperparameter/n3/tabpfgen/tabpfgen-n3-20260505_030703/run_config.json b/hyperparameter/n3/tabpfgen/tabpfgen-n3-20260505_030703/run_config.json new file mode 100644 index 0000000000000000000000000000000000000000..070622a0c0a686a1b673be9275deb3ecc8dcc6f4 --- /dev/null +++ b/hyperparameter/n3/tabpfgen/tabpfgen-n3-20260505_030703/run_config.json @@ -0,0 +1,43 @@ +{ + "schema_version": 1, + "recorded_at": "2026-05-05T03:07:03", + "dataset_id": "n3", + "model": "tabpfgen", + "work_dir": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/n3/tabpfgen/tabpfgen-n3-20260505_030703", + "dataset_source_requested": "new", + "dataset_source_resolved": "new", + "cli_args": { + "model": "tabpfgen", + "dataset": "n3", + "dataset_source": "new", + "train": true, + "generate": true, + "num_rows": 0, + "epochs": null, + "output_dir": null, + "model_dir": null, + "work_dir": null, + "resume": false, + "no_stats": false + }, + "resolved": { + "num_rows": 3918, + "model_path": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/n3/tabpfgen/tabpfgen-n3-20260505_030703", + "output_csv": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/n3/tabpfgen/tabpfgen-n3-20260505_030703/tabpfgen-n3-3918-20260505_030704.csv" + }, + "input_artifacts": { + "public_gate_report": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/n3/tabpfgen/tabpfgen-n3-20260505_030703/public_gate/public_gate_report.json", + "public_manifest": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/n3/tabpfgen/tabpfgen-n3-20260505_030703/public_gate/staged_input_manifest.json", + "model_manifest": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/n3/tabpfgen/tabpfgen-n3-20260505_030703/staged/tabpfgen/model_input_manifest.json", + "train_csv": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/n3/tabpfgen/tabpfgen-n3-20260505_030703/staged/public/train.csv", + "features_json": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/n3/tabpfgen/tabpfgen-n3-20260505_030703/staged/public/staged_features.json", + "target_column": "quality", + "task_type": "classification" + }, + "env_overrides": { + "BENCHMARK_TABPFGEN_GPUS": "device=3", + "TABPFGEN_DEVICE": "cuda", + "TABPFGEN_FIT_MAX_ROWS": "512", + "TABPFGEN_GEN_CHUNK_ROWS": "64" + } +} \ No newline at end of file diff --git a/hyperparameter/n3/tabpfgen/tabpfgen-n3-20260505_030703/runtime_result.json b/hyperparameter/n3/tabpfgen/tabpfgen-n3-20260505_030703/runtime_result.json new file mode 100644 index 0000000000000000000000000000000000000000..65073f45c38b3f3cac5a93de0e7c1808ab7f4fc6 --- /dev/null +++ b/hyperparameter/n3/tabpfgen/tabpfgen-n3-20260505_030703/runtime_result.json @@ -0,0 +1,27 @@ +{ + "dataset_id": "n3", + "model": "tabpfgen", + "run_id": "tabpfgen-n3-20260505_030703", + "public_gate_status": "pass", + "adapter_ready_status": "pass", + "train_status": "success", + "generate_status": "success", + "reason_code": null, + "reason_detail": null, + "artifacts": { + "synthetic_csv": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/n3/tabpfgen/tabpfgen-n3-20260505_030703/tabpfgen-n3-3918-20260505_030704.csv", + "model_path": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/n3/tabpfgen/tabpfgen-n3-20260505_030703" + }, + "timings": { + "train": { + "started_at": "2026-05-05T03:07:03", + "ended_at": "2026-05-05T03:07:04", + "duration_sec": 0.011 + }, + "generate": { + "started_at": "2026-05-05T03:07:04", + "ended_at": "2026-05-05T03:09:21", + "duration_sec": 137.051 + } + } +} \ No newline at end of file diff --git a/hyperparameter/n3/tabpfgen/tabpfgen-n3-20260505_030703/staged/public/staged_features.json b/hyperparameter/n3/tabpfgen/tabpfgen-n3-20260505_030703/staged/public/staged_features.json new file mode 100644 index 0000000000000000000000000000000000000000..08fe4d766d091d2f2ddba724a16b9509cbe4c390 --- /dev/null +++ b/hyperparameter/n3/tabpfgen/tabpfgen-n3-20260505_030703/staged/public/staged_features.json @@ -0,0 +1,62 @@ +[ + { + "feature_name": "fixed acidity", + "data_type": "continuous", + "is_target": false + }, + { + "feature_name": "volatile acidity", + "data_type": "continuous", + "is_target": false + }, + { + "feature_name": "citric acid", + "data_type": "continuous", + "is_target": false + }, + { + "feature_name": "residual sugar", + "data_type": "continuous", + "is_target": false + }, + { + "feature_name": "chlorides", + "data_type": "continuous", + "is_target": false + }, + { + "feature_name": "free sulfur dioxide", + "data_type": "continuous", + "is_target": false + }, + { + "feature_name": "total sulfur dioxide", + "data_type": "continuous", + "is_target": false + }, + { + "feature_name": "density", + "data_type": "continuous", + "is_target": false + }, + { + "feature_name": "pH", + "data_type": "continuous", + "is_target": false + }, + { + "feature_name": "sulphates", + "data_type": "continuous", + "is_target": false + }, + { + "feature_name": "alcohol", + "data_type": "continuous", + "is_target": false + }, + { + "feature_name": "quality", + "data_type": "continuous", + "is_target": true + } +] \ No newline at end of file diff --git a/hyperparameter/n3/tabpfgen/tabpfgen-n3-20260505_030703/staged/public/test.csv b/hyperparameter/n3/tabpfgen/tabpfgen-n3-20260505_030703/staged/public/test.csv new file mode 100644 index 0000000000000000000000000000000000000000..db5cd50d3746410ea470625fa2ba2c8e9775cc0d --- /dev/null +++ b/hyperparameter/n3/tabpfgen/tabpfgen-n3-20260505_030703/staged/public/test.csv @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:19e107152a94432e2a37ff045c00cfe35e1be30208b1553080d7dd0ede256d3b +size 28944 diff --git a/hyperparameter/n3/tabpfgen/tabpfgen-n3-20260505_030703/staged/public/train.csv b/hyperparameter/n3/tabpfgen/tabpfgen-n3-20260505_030703/staged/public/train.csv new file mode 100644 index 0000000000000000000000000000000000000000..87ca26726fe82ccbaa397919305b043c17eb374e --- /dev/null +++ b/hyperparameter/n3/tabpfgen/tabpfgen-n3-20260505_030703/staged/public/train.csv @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:7813c8cca73ba4bfc6559215257b341c21e459980ad17ae6ddc809306bc9a0b9 +size 229945 diff --git a/hyperparameter/n3/tabpfgen/tabpfgen-n3-20260505_030703/staged/public/val.csv b/hyperparameter/n3/tabpfgen/tabpfgen-n3-20260505_030703/staged/public/val.csv new file mode 100644 index 0000000000000000000000000000000000000000..6acf84c76c47093b513c46d5503972a2dff275c0 --- /dev/null +++ b/hyperparameter/n3/tabpfgen/tabpfgen-n3-20260505_030703/staged/public/val.csv @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:cf5979d9675567d9d6642640c9b84fc6c49e492604144723c30f50516c05cee6 +size 28791 diff --git a/hyperparameter/n3/tabpfgen/tabpfgen-n3-20260505_030703/staged/tabpfgen/adapter_report.json b/hyperparameter/n3/tabpfgen/tabpfgen-n3-20260505_030703/staged/tabpfgen/adapter_report.json new file mode 100644 index 0000000000000000000000000000000000000000..50f844568a27da95424896d20209208f990124dc --- /dev/null +++ b/hyperparameter/n3/tabpfgen/tabpfgen-n3-20260505_030703/staged/tabpfgen/adapter_report.json @@ -0,0 +1,7 @@ +{ + "adapter_ready_status": "pass", + "adapter_fail_reason_code": null, + "adapter_fail_detail": null, + "adapter_transforms_applied": [], + "model_input_manifest": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/n3/tabpfgen/tabpfgen-n3-20260505_030703/staged/tabpfgen/model_input_manifest.json" +} \ No newline at end of file diff --git a/hyperparameter/n3/tabpfgen/tabpfgen-n3-20260505_030703/staged/tabpfgen/adapter_transforms_applied.json b/hyperparameter/n3/tabpfgen/tabpfgen-n3-20260505_030703/staged/tabpfgen/adapter_transforms_applied.json new file mode 100644 index 0000000000000000000000000000000000000000..0637a088a01e8ddab3bf3fa98dbe804cbde1a0dc --- /dev/null +++ b/hyperparameter/n3/tabpfgen/tabpfgen-n3-20260505_030703/staged/tabpfgen/adapter_transforms_applied.json @@ -0,0 +1 @@ +[] \ No newline at end of file diff --git a/hyperparameter/n3/tabpfgen/tabpfgen-n3-20260505_030703/staged/tabpfgen/model_input_manifest.json b/hyperparameter/n3/tabpfgen/tabpfgen-n3-20260505_030703/staged/tabpfgen/model_input_manifest.json new file mode 100644 index 0000000000000000000000000000000000000000..9d2cde47fa58c739f31636dc3bacfc7f3287a646 --- /dev/null +++ b/hyperparameter/n3/tabpfgen/tabpfgen-n3-20260505_030703/staged/tabpfgen/model_input_manifest.json @@ -0,0 +1,266 @@ +{ + "dataset_id": "n3", + "model": "tabpfgen", + "target_column": "quality", + "task_type": "classification", + "column_schema": [ + { + "name": "fixed acidity", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 66, + "unique_ratio": 0.016845, + "example_values": [ + "7.1", + "8.5", + "6.4", + "6.8", + "7.6" + ] + } + }, + { + "name": "volatile acidity", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 121, + "unique_ratio": 0.030883, + "example_values": [ + "0.31", + "0.21", + "0.24", + "0.43", + "0.27" + ] + } + }, + { + "name": "citric acid", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 85, + "unique_ratio": 0.021695, + "example_values": [ + "0.17", + "0.41", + "0.31", + "0.25", + "0.3" + ] + } + }, + { + "name": "residual sugar", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 296, + "unique_ratio": 0.075549, + "example_values": [ + "1", + "4.3", + "2.8", + "13", + "12.9" + ] + } + }, + { + "name": "chlorides", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 147, + "unique_ratio": 0.037519, + "example_values": [ + "0.042", + "0.036", + "0.038", + "0.047", + "0.033" + ] + } + }, + { + "name": "free sulfur dioxide", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 120, + "unique_ratio": 0.030628, + "example_values": [ + "21", + "24", + "41", + "43", + "69" + ] + } + }, + { + "name": "total sulfur dioxide", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 244, + "unique_ratio": 0.062277, + "example_values": [ + "144", + "99", + "114", + "132", + "160" + ] + } + }, + { + "name": "density", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 839, + "unique_ratio": 0.21414, + "example_values": [ + "0.99304", + "0.9947", + "0.99155", + "0.98975", + "0.99705" + ] + } + }, + { + "name": "pH", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 100, + "unique_ratio": 0.025523, + "example_values": [ + "3.13", + "3.18", + "3.37", + "3.21", + "3.16" + ] + } + }, + { + "name": "sulphates", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 78, + "unique_ratio": 0.019908, + "example_values": [ + "0.4", + "0.53", + "0.66", + "0.47", + "0.5" + ] + } + }, + { + "name": "alcohol", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 97, + "unique_ratio": 0.024758, + "example_values": [ + "9.6", + "9.7", + "11.7", + "13.4", + "8.8" + ] + } + }, + { + "name": "quality", + "role": "target", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 7, + "unique_ratio": 0.001787, + "example_values": [ + "5", + "6", + "7", + "8", + "3" + ] + } + } + ], + "public_manifest": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/n3/tabpfgen/tabpfgen-n3-20260505_030703/public_gate/staged_input_manifest.json", + "train_csv": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/n3/tabpfgen/tabpfgen-n3-20260505_030703/staged/public/train.csv", + "val_csv": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/n3/tabpfgen/tabpfgen-n3-20260505_030703/staged/public/val.csv", + "test_csv": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/n3/tabpfgen/tabpfgen-n3-20260505_030703/staged/public/test.csv", + "features_json": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/n3/tabpfgen/tabpfgen-n3-20260505_030703/staged/public/staged_features.json", + "public_gate_report": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/n3/tabpfgen/tabpfgen-n3-20260505_030703/public_gate/public_gate_report.json" +} \ No newline at end of file diff --git a/hyperparameter/n3/tabpfgen/tabpfgen-n3-20260505_030703/tabpfgen-n3-3918-20260505_030704.csv b/hyperparameter/n3/tabpfgen/tabpfgen-n3-20260505_030703/tabpfgen-n3-3918-20260505_030704.csv new file mode 100644 index 0000000000000000000000000000000000000000..d445c8972e8cefddef213047e137239e208ace34 --- /dev/null +++ b/hyperparameter/n3/tabpfgen/tabpfgen-n3-20260505_030703/tabpfgen-n3-3918-20260505_030704.csv @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:e466a3725c54ec09c3445db011b1102ba6aadbfb93a4f8587a10ad9c0aa6dfca +size 445891 diff --git a/hyperparameter/n3/tabpfgen/tabpfgen-n3-20260505_030703/tabpfgen_meta.json b/hyperparameter/n3/tabpfgen/tabpfgen-n3-20260505_030703/tabpfgen_meta.json new file mode 100644 index 0000000000000000000000000000000000000000..4b6bee16b6a24d089f9af0581542db75fc475974 --- /dev/null +++ b/hyperparameter/n3/tabpfgen/tabpfgen-n3-20260505_030703/tabpfgen_meta.json @@ -0,0 +1,9 @@ +{ + "csv_path": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/n3/tabpfgen/tabpfgen-n3-20260505_030703/staged/public/train.csv", + "json_path": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/n3/tabpfgen/tabpfgen-n3-20260505_030703/staged/public/staged_features.json", + "target_col": "quality", + "is_classification": true, + "task_type": "classification", + "n_rows": 3918, + "n_cols": 12 +} \ No newline at end of file diff --git a/hyperparameter/n3/tabpfgen/tabpfgen-n3-20260505_030703/train_20260505_030704.log b/hyperparameter/n3/tabpfgen/tabpfgen-n3-20260505_030703/train_20260505_030704.log new file mode 100644 index 0000000000000000000000000000000000000000..bbb19ccc48df6b982cbd4a06021a975ee8a4c85e --- /dev/null +++ b/hyperparameter/n3/tabpfgen/tabpfgen-n3-20260505_030703/train_20260505_030704.log @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:5f6aa81846670ef3092d4bed627769667e552d01a2a80858f4ea88e6490d75c9 +size 595 diff --git a/hyperparameter/n3/tabpfgen/tabpfgen-n3-20260505_030933/_tabpfgen_generate.py b/hyperparameter/n3/tabpfgen/tabpfgen-n3-20260505_030933/_tabpfgen_generate.py new file mode 100644 index 0000000000000000000000000000000000000000..c8a5ff1ec27cd1a49e89fa91a0cbe66f97e4cc23 --- /dev/null +++ b/hyperparameter/n3/tabpfgen/tabpfgen-n3-20260505_030933/_tabpfgen_generate.py @@ -0,0 +1,122 @@ +import os +import numpy as np +import pandas as pd +import json +from tabpfgen import TabPFGen + +df = pd.read_csv("/work/output-Benchmark-trainonly-v1/n3/tabpfgen/tabpfgen-n3-20260505_030933/staged/public/train.csv") +target_col = "quality" + +target_missing = df[target_col].isna() +if target_missing.any(): + dropped = int(target_missing.sum()) + df = df.loc[~target_missing].copy() + print( + f"[TabPFGen] Dropped {dropped} rows with missing target '{target_col}'" + ) +if df.empty: + raise ValueError( + f"[TabPFGen] No rows remain after dropping missing target '{target_col}'" + ) + +feature_cols = [c for c in df.columns if c != target_col] + +cat_encodings = {} +for col in feature_cols: + if df[col].dtype == object or str(df[col].dtype) == 'category': + cats = sorted(df[col].dropna().unique().tolist(), key=str) + cat_map = {v: i for i, v in enumerate(cats)} + df[col] = df[col].map(cat_map).astype(float) + cat_encodings[col] = cats + print(f"[TabPFGen] Label-encoded '{col}' ({len(cats)} categories)") + +target_cats = None +if df[target_col].dtype == object or str(df[target_col].dtype) == 'category': + cats = sorted(df[target_col].dropna().unique().tolist(), key=str) + t_map = {v: i for i, v in enumerate(cats)} + df[target_col] = df[target_col].map(t_map).astype(float) + target_cats = cats + print(f"[TabPFGen] Label-encoded target '{target_col}' ({len(cats)} categories)") + +X = df[feature_cols].values.astype(np.float32) +y = df[target_col].values +fit_rows_cap = max(1, int(os.environ.get("TABPFGEN_FIT_MAX_ROWS", "50000"))) +if len(X) > fit_rows_cap: + rng = np.random.default_rng(42) + idx = np.sort(rng.choice(len(X), size=fit_rows_cap, replace=False)) + X = X[idx] + y = y[idx] + print(f"[TabPFGen] Downsampled fit rows -> {len(X)} (cap={fit_rows_cap})") +target_n = int(3918) + +for i in range(X.shape[1]): + col_vals = X[:, i] + mask = np.isnan(col_vals) + if mask.any(): + mean_val = np.nanmean(col_vals) + X[mask, i] = mean_val if not np.isnan(mean_val) else 0.0 + +chunk_rows = max(1, int(os.environ.get("TABPFGEN_GEN_CHUNK_ROWS", "256"))) +device = (os.environ.get("TABPFGEN_DEVICE") or "auto").strip() or "auto" + +# TabPFGen v0.1.x API:仅支持 n_sgld_steps / sgld_* / device。 +# (旧版脚本中的 energy_*_chunk 与上游 TabPFGen 不一致,会导致 TypeError。) +gen = TabPFGen( + n_sgld_steps=1000, + sgld_step_size=0.01, + sgld_noise_scale=0.01, + device=device, +) + +print(f"[TabPFGen] Generating {target_n} rows via generate_classification (chunk_rows={chunk_rows}, device={device})") +x_parts = [] +y_parts = [] +remaining = target_n +while remaining > 0: + take = min(chunk_rows, remaining) + X_part, y_part = gen.generate_classification(X, y, n_samples=take) + x_parts.append(np.asarray(X_part)) + y_parts.append(np.asarray(y_part)) + remaining -= take + print(f"[TabPFGen] chunk done: take={take}, remaining={remaining}") + +X_syn = np.concatenate(x_parts, axis=0) +y_syn = np.concatenate(y_parts, axis=0) + +syn_df = pd.DataFrame(X_syn, columns=feature_cols) +syn_df[target_col] = y_syn + +for col, cats in cat_encodings.items(): + codes = np.round(syn_df[col].values).astype(int) + codes = np.clip(codes, 0, len(cats) - 1) + syn_df[col] = [cats[c] for c in codes] + +if target_cats is not None: + codes = np.round(syn_df[target_col].values).astype(int) + codes = np.clip(codes, 0, len(target_cats) - 1) + syn_df[target_col] = [target_cats[c] for c in codes] + +if len(syn_df) > target_n: + print(f"[TabPFGen] Trimming rows: {len(syn_df)} -> {target_n}") + syn_df = syn_df.iloc[:target_n].copy() +elif len(syn_df) < target_n: + deficit = target_n - len(syn_df) + print(f"[TabPFGen] Padding rows: {len(syn_df)} -> {target_n} (deficit={deficit})") + if len(syn_df) > 0: + extra = syn_df.sample(n=deficit, replace=True, random_state=42) + syn_df = pd.concat( + [syn_df.reset_index(drop=True), extra.reset_index(drop=True)], + ignore_index=True, + ) + else: + syn_df = df[feature_cols + [target_col]].sample( + n=target_n, replace=True, random_state=42 + ).reset_index(drop=True) + +syn_df = syn_df[list(df.columns)] +if len(syn_df) != target_n: + raise RuntimeError( + f"[TabPFGen] Row alignment failed: got {len(syn_df)}, expected {target_n}" + ) +syn_df.to_csv("/work/output-Benchmark-trainonly-v1/n3/tabpfgen/tabpfgen-n3-20260505_030933/tabpfgen-n3-3918-20260505_030933.csv", index=False) +print(f"[TabPFGen] Saved {len(syn_df)} rows -> /work/output-Benchmark-trainonly-v1/n3/tabpfgen/tabpfgen-n3-20260505_030933/tabpfgen-n3-3918-20260505_030933.csv") diff --git a/hyperparameter/n3/tabpfgen/tabpfgen-n3-20260505_030933/gen_20260505_030933.log b/hyperparameter/n3/tabpfgen/tabpfgen-n3-20260505_030933/gen_20260505_030933.log new file mode 100644 index 0000000000000000000000000000000000000000..b78a1c20d0db8a062638cd3ff71a3eb8222211a5 --- /dev/null +++ b/hyperparameter/n3/tabpfgen/tabpfgen-n3-20260505_030933/gen_20260505_030933.log @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:7e1f09702297bf218083834c86ad2eee695983e0b79ffbc6ff86703486cebc69 +size 12291 diff --git a/hyperparameter/n3/tabpfgen/tabpfgen-n3-20260505_030933/input_snapshot.json b/hyperparameter/n3/tabpfgen/tabpfgen-n3-20260505_030933/input_snapshot.json new file mode 100644 index 0000000000000000000000000000000000000000..2df53dbad689923eb0692c0029f1d32d625f8ce4 --- /dev/null +++ b/hyperparameter/n3/tabpfgen/tabpfgen-n3-20260505_030933/input_snapshot.json @@ -0,0 +1,36 @@ +{ + "dataset_id": "n3", + "model": "tabpfgen", + "inputs": { + "train_csv": { + "path": "/data/jialinzhang/SynthesizePipeline-server/DatasetNew/n3/n3-train.csv", + "exists": true, + "size": 211519, + "sha256": "2160a06db2fea02adb0ebb79d8d853bd2544580be301e71f6e8deeb1489a9009" + }, + "val_csv": { + "path": "/data/jialinzhang/SynthesizePipeline-server/DatasetNew/n3/n3-val.csv", + "exists": true, + "size": 26499, + "sha256": "d5ccfee07dfa9e7bdee5bb87642b43828e09f74c6cc0266a3d19d9feaa83106e" + }, + "test_csv": { + "path": "/data/jialinzhang/SynthesizePipeline-server/DatasetNew/n3/n3-test.csv", + "exists": true, + "size": 26676, + "sha256": "6f83aacb0d1747b95e287352a7fff5d9d65a1c127b773852346c68485c4ede47" + }, + "profile_json": { + "path": "/data/jialinzhang/SynthesizePipeline-server/DatasetNew/artifacts/data_core/tabular/n3/n3-dataset_profile.json", + "exists": true, + "size": 5235, + "sha256": "23d2e5904a2ca90cbf8d6e3c75887681721e9b90cc705c31a680c11513d0c46f" + }, + "contract_json": { + "path": "/data/jialinzhang/SynthesizePipeline-server/DatasetNew/artifacts/data_core/tabular/n3/n3-dataset_contract_v1.json", + "exists": true, + "size": 6281, + "sha256": "c0cc56f5fe28e1b65927255c6e3c2b0e9479862c2ec6f2fea1664da36c9a3a09" + } + } +} \ No newline at end of file diff --git a/hyperparameter/n3/tabpfgen/tabpfgen-n3-20260505_030933/public_gate/normalized_schema_snapshot.json b/hyperparameter/n3/tabpfgen/tabpfgen-n3-20260505_030933/public_gate/normalized_schema_snapshot.json new file mode 100644 index 0000000000000000000000000000000000000000..c41fe304503de23190a02e6cbfafa35b3bf134d3 --- /dev/null +++ b/hyperparameter/n3/tabpfgen/tabpfgen-n3-20260505_030933/public_gate/normalized_schema_snapshot.json @@ -0,0 +1,259 @@ +{ + "dataset_id": "n3", + "target_column": "quality", + "task_type": "classification", + "columns": [ + { + "name": "fixed acidity", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 66, + "unique_ratio": 0.016845, + "example_values": [ + "7.1", + "8.5", + "6.4", + "6.8", + "7.6" + ] + } + }, + { + "name": "volatile acidity", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 121, + "unique_ratio": 0.030883, + "example_values": [ + "0.31", + "0.21", + "0.24", + "0.43", + "0.27" + ] + } + }, + { + "name": "citric acid", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 85, + "unique_ratio": 0.021695, + "example_values": [ + "0.17", + "0.41", + "0.31", + "0.25", + "0.3" + ] + } + }, + { + "name": "residual sugar", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 296, + "unique_ratio": 0.075549, + "example_values": [ + "1", + "4.3", + "2.8", + "13", + "12.9" + ] + } + }, + { + "name": "chlorides", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 147, + "unique_ratio": 0.037519, + "example_values": [ + "0.042", + "0.036", + "0.038", + "0.047", + "0.033" + ] + } + }, + { + "name": "free sulfur dioxide", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 120, + "unique_ratio": 0.030628, + "example_values": [ + "21", + "24", + "41", + "43", + "69" + ] + } + }, + { + "name": "total sulfur dioxide", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 244, + "unique_ratio": 0.062277, + "example_values": [ + "144", + "99", + "114", + "132", + "160" + ] + } + }, + { + "name": "density", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 839, + "unique_ratio": 0.21414, + "example_values": [ + "0.99304", + "0.9947", + "0.99155", + "0.98975", + "0.99705" + ] + } + }, + { + "name": "pH", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 100, + "unique_ratio": 0.025523, + "example_values": [ + "3.13", + "3.18", + "3.37", + "3.21", + "3.16" + ] + } + }, + { + "name": "sulphates", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 78, + "unique_ratio": 0.019908, + "example_values": [ + "0.4", + "0.53", + "0.66", + "0.47", + "0.5" + ] + } + }, + { + "name": "alcohol", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 97, + "unique_ratio": 0.024758, + "example_values": [ + "9.6", + "9.7", + "11.7", + "13.4", + "8.8" + ] + } + }, + { + "name": "quality", + "role": "target", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 7, + "unique_ratio": 0.001787, + "example_values": [ + "5", + "6", + "7", + "8", + "3" + ] + } + } + ] +} \ No newline at end of file diff --git a/hyperparameter/n3/tabpfgen/tabpfgen-n3-20260505_030933/public_gate/public_gate_report.json b/hyperparameter/n3/tabpfgen/tabpfgen-n3-20260505_030933/public_gate/public_gate_report.json new file mode 100644 index 0000000000000000000000000000000000000000..93b97319f739e39079d6c6549fd2020f8a6dac25 --- /dev/null +++ b/hyperparameter/n3/tabpfgen/tabpfgen-n3-20260505_030933/public_gate/public_gate_report.json @@ -0,0 +1,37 @@ +{ + "dataset_id": "n3", + "status": "pass", + "checks": [ + { + "check_id": "PG001_csv_parse_ok", + "status": "pass" + }, + { + "check_id": "PG002_split_header_consistent", + "status": "pass" + }, + { + "check_id": "PG003_profile_header_match", + "status": "pass" + }, + { + "check_id": "PG004_missing_token_normalized", + "status": "pass" + }, + { + "check_id": "PG005_semantic_type_validated", + "status": "pass" + }, + { + "check_id": "PG006_target_defined_and_valid", + "status": "pass" + } + ], + "target_column": "quality", + "task_type": "classification", + "input_splits": { + "train": "/data/jialinzhang/SynthesizePipeline-server/DatasetNew/n3/n3-train.csv", + "val": "/data/jialinzhang/SynthesizePipeline-server/DatasetNew/n3/n3-val.csv", + "test": "/data/jialinzhang/SynthesizePipeline-server/DatasetNew/n3/n3-test.csv" + } +} \ No newline at end of file diff --git a/hyperparameter/n3/tabpfgen/tabpfgen-n3-20260505_030933/public_gate/staged_input_manifest.json b/hyperparameter/n3/tabpfgen/tabpfgen-n3-20260505_030933/public_gate/staged_input_manifest.json new file mode 100644 index 0000000000000000000000000000000000000000..8ed0d56b70bdb6738a6bb44edd895029002cb08a --- /dev/null +++ b/hyperparameter/n3/tabpfgen/tabpfgen-n3-20260505_030933/public_gate/staged_input_manifest.json @@ -0,0 +1,264 @@ +{ + "dataset_id": "n3", + "target_column": "quality", + "task_type": "classification", + "train_csv": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/n3/tabpfgen/tabpfgen-n3-20260505_030933/staged/public/train.csv", + "val_csv": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/n3/tabpfgen/tabpfgen-n3-20260505_030933/staged/public/val.csv", + "test_csv": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/n3/tabpfgen/tabpfgen-n3-20260505_030933/staged/public/test.csv", + "features_json": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/n3/tabpfgen/tabpfgen-n3-20260505_030933/staged/public/staged_features.json", + "public_gate_report": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/n3/tabpfgen/tabpfgen-n3-20260505_030933/public_gate/public_gate_report.json", + "column_schema": [ + { + "name": "fixed acidity", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 66, + "unique_ratio": 0.016845, + "example_values": [ + "7.1", + "8.5", + "6.4", + "6.8", + "7.6" + ] + } + }, + { + "name": "volatile acidity", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 121, + "unique_ratio": 0.030883, + "example_values": [ + "0.31", + "0.21", + "0.24", + "0.43", + "0.27" + ] + } + }, + { + "name": "citric acid", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 85, + "unique_ratio": 0.021695, + "example_values": [ + "0.17", + "0.41", + "0.31", + "0.25", + "0.3" + ] + } + }, + { + "name": "residual sugar", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 296, + "unique_ratio": 0.075549, + "example_values": [ + "1", + "4.3", + "2.8", + "13", + "12.9" + ] + } + }, + { + "name": "chlorides", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 147, + "unique_ratio": 0.037519, + "example_values": [ + "0.042", + "0.036", + "0.038", + "0.047", + "0.033" + ] + } + }, + { + "name": "free sulfur dioxide", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 120, + "unique_ratio": 0.030628, + "example_values": [ + "21", + "24", + "41", + "43", + "69" + ] + } + }, + { + "name": "total sulfur dioxide", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 244, + "unique_ratio": 0.062277, + "example_values": [ + "144", + "99", + "114", + "132", + "160" + ] + } + }, + { + "name": "density", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 839, + "unique_ratio": 0.21414, + "example_values": [ + "0.99304", + "0.9947", + "0.99155", + "0.98975", + "0.99705" + ] + } + }, + { + "name": "pH", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 100, + "unique_ratio": 0.025523, + "example_values": [ + "3.13", + "3.18", + "3.37", + "3.21", + "3.16" + ] + } + }, + { + "name": "sulphates", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 78, + "unique_ratio": 0.019908, + "example_values": [ + "0.4", + "0.53", + "0.66", + "0.47", + "0.5" + ] + } + }, + { + "name": "alcohol", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 97, + "unique_ratio": 0.024758, + "example_values": [ + "9.6", + "9.7", + "11.7", + "13.4", + "8.8" + ] + } + }, + { + "name": "quality", + "role": "target", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 7, + "unique_ratio": 0.001787, + "example_values": [ + "5", + "6", + "7", + "8", + "3" + ] + } + } + ] +} \ No newline at end of file diff --git a/hyperparameter/n3/tabpfgen/tabpfgen-n3-20260505_030933/run_config.json b/hyperparameter/n3/tabpfgen/tabpfgen-n3-20260505_030933/run_config.json new file mode 100644 index 0000000000000000000000000000000000000000..8c1715f5c7e980bd5e17cce7793d16016b0c0a76 --- /dev/null +++ b/hyperparameter/n3/tabpfgen/tabpfgen-n3-20260505_030933/run_config.json @@ -0,0 +1,43 @@ +{ + "schema_version": 1, + "recorded_at": "2026-05-05T03:09:33", + "dataset_id": "n3", + "model": "tabpfgen", + "work_dir": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/n3/tabpfgen/tabpfgen-n3-20260505_030933", + "dataset_source_requested": "new", + "dataset_source_resolved": "new", + "cli_args": { + "model": "tabpfgen", + "dataset": "n3", + "dataset_source": "new", + "train": true, + "generate": true, + "num_rows": 0, + "epochs": null, + "output_dir": null, + "model_dir": null, + "work_dir": null, + "resume": false, + "no_stats": false + }, + "resolved": { + "num_rows": 3918, + "model_path": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/n3/tabpfgen/tabpfgen-n3-20260505_030933", + "output_csv": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/n3/tabpfgen/tabpfgen-n3-20260505_030933/tabpfgen-n3-3918-20260505_030933.csv" + }, + "input_artifacts": { + "public_gate_report": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/n3/tabpfgen/tabpfgen-n3-20260505_030933/public_gate/public_gate_report.json", + "public_manifest": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/n3/tabpfgen/tabpfgen-n3-20260505_030933/public_gate/staged_input_manifest.json", + "model_manifest": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/n3/tabpfgen/tabpfgen-n3-20260505_030933/staged/tabpfgen/model_input_manifest.json", + "train_csv": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/n3/tabpfgen/tabpfgen-n3-20260505_030933/staged/public/train.csv", + "features_json": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/n3/tabpfgen/tabpfgen-n3-20260505_030933/staged/public/staged_features.json", + "target_column": "quality", + "task_type": "classification" + }, + "env_overrides": { + "BENCHMARK_TABPFGEN_GPUS": "device=3", + "TABPFGEN_DEVICE": "cuda", + "TABPFGEN_FIT_MAX_ROWS": "1024", + "TABPFGEN_GEN_CHUNK_ROWS": "64" + } +} \ No newline at end of file diff --git a/hyperparameter/n3/tabpfgen/tabpfgen-n3-20260505_030933/runtime_result.json b/hyperparameter/n3/tabpfgen/tabpfgen-n3-20260505_030933/runtime_result.json new file mode 100644 index 0000000000000000000000000000000000000000..0e11b50ce37d39202465324dab5e47dd6c93249b --- /dev/null +++ b/hyperparameter/n3/tabpfgen/tabpfgen-n3-20260505_030933/runtime_result.json @@ -0,0 +1,27 @@ +{ + "dataset_id": "n3", + "model": "tabpfgen", + "run_id": "tabpfgen-n3-20260505_030933", + "public_gate_status": "pass", + "adapter_ready_status": "pass", + "train_status": "success", + "generate_status": "success", + "reason_code": null, + "reason_detail": null, + "artifacts": { + "synthetic_csv": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/n3/tabpfgen/tabpfgen-n3-20260505_030933/tabpfgen-n3-3918-20260505_030933.csv", + "model_path": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/n3/tabpfgen/tabpfgen-n3-20260505_030933" + }, + "timings": { + "train": { + "started_at": "2026-05-05T03:09:33", + "ended_at": "2026-05-05T03:09:33", + "duration_sec": 0.01 + }, + "generate": { + "started_at": "2026-05-05T03:09:33", + "ended_at": "2026-05-05T03:11:46", + "duration_sec": 132.574 + } + } +} \ No newline at end of file diff --git a/hyperparameter/n3/tabpfgen/tabpfgen-n3-20260505_030933/staged/public/staged_features.json b/hyperparameter/n3/tabpfgen/tabpfgen-n3-20260505_030933/staged/public/staged_features.json new file mode 100644 index 0000000000000000000000000000000000000000..08fe4d766d091d2f2ddba724a16b9509cbe4c390 --- /dev/null +++ b/hyperparameter/n3/tabpfgen/tabpfgen-n3-20260505_030933/staged/public/staged_features.json @@ -0,0 +1,62 @@ +[ + { + "feature_name": "fixed acidity", + "data_type": "continuous", + "is_target": false + }, + { + "feature_name": "volatile acidity", + "data_type": "continuous", + "is_target": false + }, + { + "feature_name": "citric acid", + "data_type": "continuous", + "is_target": false + }, + { + "feature_name": "residual sugar", + "data_type": "continuous", + "is_target": false + }, + { + "feature_name": "chlorides", + "data_type": "continuous", + "is_target": false + }, + { + "feature_name": "free sulfur dioxide", + "data_type": "continuous", + "is_target": false + }, + { + "feature_name": "total sulfur dioxide", + "data_type": "continuous", + "is_target": false + }, + { + "feature_name": "density", + "data_type": "continuous", + "is_target": false + }, + { + "feature_name": "pH", + "data_type": "continuous", + "is_target": false + }, + { + "feature_name": "sulphates", + "data_type": "continuous", + "is_target": false + }, + { + "feature_name": "alcohol", + "data_type": "continuous", + "is_target": false + }, + { + "feature_name": "quality", + "data_type": "continuous", + "is_target": true + } +] \ No newline at end of file diff --git a/hyperparameter/n3/tabpfgen/tabpfgen-n3-20260505_030933/staged/public/test.csv b/hyperparameter/n3/tabpfgen/tabpfgen-n3-20260505_030933/staged/public/test.csv new file mode 100644 index 0000000000000000000000000000000000000000..db5cd50d3746410ea470625fa2ba2c8e9775cc0d --- /dev/null +++ b/hyperparameter/n3/tabpfgen/tabpfgen-n3-20260505_030933/staged/public/test.csv @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:19e107152a94432e2a37ff045c00cfe35e1be30208b1553080d7dd0ede256d3b +size 28944 diff --git a/hyperparameter/n3/tabpfgen/tabpfgen-n3-20260505_030933/staged/public/train.csv b/hyperparameter/n3/tabpfgen/tabpfgen-n3-20260505_030933/staged/public/train.csv new file mode 100644 index 0000000000000000000000000000000000000000..87ca26726fe82ccbaa397919305b043c17eb374e --- /dev/null +++ b/hyperparameter/n3/tabpfgen/tabpfgen-n3-20260505_030933/staged/public/train.csv @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:7813c8cca73ba4bfc6559215257b341c21e459980ad17ae6ddc809306bc9a0b9 +size 229945 diff --git a/hyperparameter/n3/tabpfgen/tabpfgen-n3-20260505_030933/staged/public/val.csv b/hyperparameter/n3/tabpfgen/tabpfgen-n3-20260505_030933/staged/public/val.csv new file mode 100644 index 0000000000000000000000000000000000000000..6acf84c76c47093b513c46d5503972a2dff275c0 --- /dev/null +++ b/hyperparameter/n3/tabpfgen/tabpfgen-n3-20260505_030933/staged/public/val.csv @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:cf5979d9675567d9d6642640c9b84fc6c49e492604144723c30f50516c05cee6 +size 28791 diff --git a/hyperparameter/n3/tabpfgen/tabpfgen-n3-20260505_030933/staged/tabpfgen/adapter_report.json b/hyperparameter/n3/tabpfgen/tabpfgen-n3-20260505_030933/staged/tabpfgen/adapter_report.json new file mode 100644 index 0000000000000000000000000000000000000000..79efda7066ae701fb2b328b71492c597a4b60cec --- /dev/null +++ b/hyperparameter/n3/tabpfgen/tabpfgen-n3-20260505_030933/staged/tabpfgen/adapter_report.json @@ -0,0 +1,7 @@ +{ + "adapter_ready_status": "pass", + "adapter_fail_reason_code": null, + "adapter_fail_detail": null, + "adapter_transforms_applied": [], + "model_input_manifest": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/n3/tabpfgen/tabpfgen-n3-20260505_030933/staged/tabpfgen/model_input_manifest.json" +} \ No newline at end of file diff --git a/hyperparameter/n3/tabpfgen/tabpfgen-n3-20260505_030933/staged/tabpfgen/adapter_transforms_applied.json b/hyperparameter/n3/tabpfgen/tabpfgen-n3-20260505_030933/staged/tabpfgen/adapter_transforms_applied.json new file mode 100644 index 0000000000000000000000000000000000000000..0637a088a01e8ddab3bf3fa98dbe804cbde1a0dc --- /dev/null +++ b/hyperparameter/n3/tabpfgen/tabpfgen-n3-20260505_030933/staged/tabpfgen/adapter_transforms_applied.json @@ -0,0 +1 @@ +[] \ No newline at end of file diff --git a/hyperparameter/n3/tabpfgen/tabpfgen-n3-20260505_030933/staged/tabpfgen/model_input_manifest.json b/hyperparameter/n3/tabpfgen/tabpfgen-n3-20260505_030933/staged/tabpfgen/model_input_manifest.json new file mode 100644 index 0000000000000000000000000000000000000000..be981e61ee79ea8d7dabe58ccccb2bcb0c147c00 --- /dev/null +++ b/hyperparameter/n3/tabpfgen/tabpfgen-n3-20260505_030933/staged/tabpfgen/model_input_manifest.json @@ -0,0 +1,266 @@ +{ + "dataset_id": "n3", + "model": "tabpfgen", + "target_column": "quality", + "task_type": "classification", + "column_schema": [ + { + "name": "fixed acidity", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 66, + "unique_ratio": 0.016845, + "example_values": [ + "7.1", + "8.5", + "6.4", + "6.8", + "7.6" + ] + } + }, + { + "name": "volatile acidity", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 121, + "unique_ratio": 0.030883, + "example_values": [ + "0.31", + "0.21", + "0.24", + "0.43", + "0.27" + ] + } + }, + { + "name": "citric acid", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 85, + "unique_ratio": 0.021695, + "example_values": [ + "0.17", + "0.41", + "0.31", + "0.25", + "0.3" + ] + } + }, + { + "name": "residual sugar", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 296, + "unique_ratio": 0.075549, + "example_values": [ + "1", + "4.3", + "2.8", + "13", + "12.9" + ] + } + }, + { + "name": "chlorides", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 147, + "unique_ratio": 0.037519, + "example_values": [ + "0.042", + "0.036", + "0.038", + "0.047", + "0.033" + ] + } + }, + { + "name": "free sulfur dioxide", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 120, + "unique_ratio": 0.030628, + "example_values": [ + "21", + "24", + "41", + "43", + "69" + ] + } + }, + { + "name": "total sulfur dioxide", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 244, + "unique_ratio": 0.062277, + "example_values": [ + "144", + "99", + "114", + "132", + "160" + ] + } + }, + { + "name": "density", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 839, + "unique_ratio": 0.21414, + "example_values": [ + "0.99304", + "0.9947", + "0.99155", + "0.98975", + "0.99705" + ] + } + }, + { + "name": "pH", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 100, + "unique_ratio": 0.025523, + "example_values": [ + "3.13", + "3.18", + "3.37", + "3.21", + "3.16" + ] + } + }, + { + "name": "sulphates", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 78, + "unique_ratio": 0.019908, + "example_values": [ + "0.4", + "0.53", + "0.66", + "0.47", + "0.5" + ] + } + }, + { + "name": "alcohol", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 97, + "unique_ratio": 0.024758, + "example_values": [ + "9.6", + "9.7", + "11.7", + "13.4", + "8.8" + ] + } + }, + { + "name": "quality", + "role": "target", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 7, + "unique_ratio": 0.001787, + "example_values": [ + "5", + "6", + "7", + "8", + "3" + ] + } + } + ], + "public_manifest": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/n3/tabpfgen/tabpfgen-n3-20260505_030933/public_gate/staged_input_manifest.json", + "train_csv": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/n3/tabpfgen/tabpfgen-n3-20260505_030933/staged/public/train.csv", + "val_csv": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/n3/tabpfgen/tabpfgen-n3-20260505_030933/staged/public/val.csv", + "test_csv": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/n3/tabpfgen/tabpfgen-n3-20260505_030933/staged/public/test.csv", + "features_json": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/n3/tabpfgen/tabpfgen-n3-20260505_030933/staged/public/staged_features.json", + "public_gate_report": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/n3/tabpfgen/tabpfgen-n3-20260505_030933/public_gate/public_gate_report.json" +} \ No newline at end of file diff --git a/hyperparameter/n3/tabpfgen/tabpfgen-n3-20260505_030933/tabpfgen-n3-3918-20260505_030933.csv b/hyperparameter/n3/tabpfgen/tabpfgen-n3-20260505_030933/tabpfgen-n3-3918-20260505_030933.csv new file mode 100644 index 0000000000000000000000000000000000000000..85f7fa1bc1bd6e156ca8a96bb60ee00d40b0475a --- /dev/null +++ b/hyperparameter/n3/tabpfgen/tabpfgen-n3-20260505_030933/tabpfgen-n3-3918-20260505_030933.csv @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:caf5bd4c9a34c5cdd7247518c4ae44a10546ab5dfd42ca28f089c3f846acf3ba +size 446157 diff --git a/hyperparameter/n3/tabpfgen/tabpfgen-n3-20260505_030933/tabpfgen_meta.json b/hyperparameter/n3/tabpfgen/tabpfgen-n3-20260505_030933/tabpfgen_meta.json new file mode 100644 index 0000000000000000000000000000000000000000..e212cde402bc2954ba5de7e596e178c873afd683 --- /dev/null +++ b/hyperparameter/n3/tabpfgen/tabpfgen-n3-20260505_030933/tabpfgen_meta.json @@ -0,0 +1,9 @@ +{ + "csv_path": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/n3/tabpfgen/tabpfgen-n3-20260505_030933/staged/public/train.csv", + "json_path": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/n3/tabpfgen/tabpfgen-n3-20260505_030933/staged/public/staged_features.json", + "target_col": "quality", + "is_classification": true, + "task_type": "classification", + "n_rows": 3918, + "n_cols": 12 +} \ No newline at end of file diff --git a/hyperparameter/n3/tabpfgen/tabpfgen-n3-20260505_030933/train_20260505_030933.log b/hyperparameter/n3/tabpfgen/tabpfgen-n3-20260505_030933/train_20260505_030933.log new file mode 100644 index 0000000000000000000000000000000000000000..bc61015a67e2f46e55ceafdb46051850c15de356 --- /dev/null +++ b/hyperparameter/n3/tabpfgen/tabpfgen-n3-20260505_030933/train_20260505_030933.log @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:ed2a8aff94b8464e9b1bef7fd510e13f0a6651a918da9aa0b4956fc424cc35b2 +size 595 diff --git a/hyperparameter/n3/tabpfgen/tabpfgen-n3-20260505_031200/_tabpfgen_generate.py b/hyperparameter/n3/tabpfgen/tabpfgen-n3-20260505_031200/_tabpfgen_generate.py new file mode 100644 index 0000000000000000000000000000000000000000..5d07fb2a60c4a359dc9ba07b26c2e82bd3ddccb4 --- /dev/null +++ b/hyperparameter/n3/tabpfgen/tabpfgen-n3-20260505_031200/_tabpfgen_generate.py @@ -0,0 +1,122 @@ +import os +import numpy as np +import pandas as pd +import json +from tabpfgen import TabPFGen + +df = pd.read_csv("/work/output-Benchmark-trainonly-v1/n3/tabpfgen/tabpfgen-n3-20260505_031200/staged/public/train.csv") +target_col = "quality" + +target_missing = df[target_col].isna() +if target_missing.any(): + dropped = int(target_missing.sum()) + df = df.loc[~target_missing].copy() + print( + f"[TabPFGen] Dropped {dropped} rows with missing target '{target_col}'" + ) +if df.empty: + raise ValueError( + f"[TabPFGen] No rows remain after dropping missing target '{target_col}'" + ) + +feature_cols = [c for c in df.columns if c != target_col] + +cat_encodings = {} +for col in feature_cols: + if df[col].dtype == object or str(df[col].dtype) == 'category': + cats = sorted(df[col].dropna().unique().tolist(), key=str) + cat_map = {v: i for i, v in enumerate(cats)} + df[col] = df[col].map(cat_map).astype(float) + cat_encodings[col] = cats + print(f"[TabPFGen] Label-encoded '{col}' ({len(cats)} categories)") + +target_cats = None +if df[target_col].dtype == object or str(df[target_col].dtype) == 'category': + cats = sorted(df[target_col].dropna().unique().tolist(), key=str) + t_map = {v: i for i, v in enumerate(cats)} + df[target_col] = df[target_col].map(t_map).astype(float) + target_cats = cats + print(f"[TabPFGen] Label-encoded target '{target_col}' ({len(cats)} categories)") + +X = df[feature_cols].values.astype(np.float32) +y = df[target_col].values +fit_rows_cap = max(1, int(os.environ.get("TABPFGEN_FIT_MAX_ROWS", "50000"))) +if len(X) > fit_rows_cap: + rng = np.random.default_rng(42) + idx = np.sort(rng.choice(len(X), size=fit_rows_cap, replace=False)) + X = X[idx] + y = y[idx] + print(f"[TabPFGen] Downsampled fit rows -> {len(X)} (cap={fit_rows_cap})") +target_n = int(3918) + +for i in range(X.shape[1]): + col_vals = X[:, i] + mask = np.isnan(col_vals) + if mask.any(): + mean_val = np.nanmean(col_vals) + X[mask, i] = mean_val if not np.isnan(mean_val) else 0.0 + +chunk_rows = max(1, int(os.environ.get("TABPFGEN_GEN_CHUNK_ROWS", "256"))) +device = (os.environ.get("TABPFGEN_DEVICE") or "auto").strip() or "auto" + +# TabPFGen v0.1.x API:仅支持 n_sgld_steps / sgld_* / device。 +# (旧版脚本中的 energy_*_chunk 与上游 TabPFGen 不一致,会导致 TypeError。) +gen = TabPFGen( + n_sgld_steps=1000, + sgld_step_size=0.01, + sgld_noise_scale=0.01, + device=device, +) + +print(f"[TabPFGen] Generating {target_n} rows via generate_classification (chunk_rows={chunk_rows}, device={device})") +x_parts = [] +y_parts = [] +remaining = target_n +while remaining > 0: + take = min(chunk_rows, remaining) + X_part, y_part = gen.generate_classification(X, y, n_samples=take) + x_parts.append(np.asarray(X_part)) + y_parts.append(np.asarray(y_part)) + remaining -= take + print(f"[TabPFGen] chunk done: take={take}, remaining={remaining}") + +X_syn = np.concatenate(x_parts, axis=0) +y_syn = np.concatenate(y_parts, axis=0) + +syn_df = pd.DataFrame(X_syn, columns=feature_cols) +syn_df[target_col] = y_syn + +for col, cats in cat_encodings.items(): + codes = np.round(syn_df[col].values).astype(int) + codes = np.clip(codes, 0, len(cats) - 1) + syn_df[col] = [cats[c] for c in codes] + +if target_cats is not None: + codes = np.round(syn_df[target_col].values).astype(int) + codes = np.clip(codes, 0, len(target_cats) - 1) + syn_df[target_col] = [target_cats[c] for c in codes] + +if len(syn_df) > target_n: + print(f"[TabPFGen] Trimming rows: {len(syn_df)} -> {target_n}") + syn_df = syn_df.iloc[:target_n].copy() +elif len(syn_df) < target_n: + deficit = target_n - len(syn_df) + print(f"[TabPFGen] Padding rows: {len(syn_df)} -> {target_n} (deficit={deficit})") + if len(syn_df) > 0: + extra = syn_df.sample(n=deficit, replace=True, random_state=42) + syn_df = pd.concat( + [syn_df.reset_index(drop=True), extra.reset_index(drop=True)], + ignore_index=True, + ) + else: + syn_df = df[feature_cols + [target_col]].sample( + n=target_n, replace=True, random_state=42 + ).reset_index(drop=True) + +syn_df = syn_df[list(df.columns)] +if len(syn_df) != target_n: + raise RuntimeError( + f"[TabPFGen] Row alignment failed: got {len(syn_df)}, expected {target_n}" + ) +syn_df.to_csv("/work/output-Benchmark-trainonly-v1/n3/tabpfgen/tabpfgen-n3-20260505_031200/tabpfgen-n3-3918-20260505_031200.csv", index=False) +print(f"[TabPFGen] Saved {len(syn_df)} rows -> /work/output-Benchmark-trainonly-v1/n3/tabpfgen/tabpfgen-n3-20260505_031200/tabpfgen-n3-3918-20260505_031200.csv") diff --git a/hyperparameter/n3/tabpfgen/tabpfgen-n3-20260505_031200/gen_20260505_031200.log b/hyperparameter/n3/tabpfgen/tabpfgen-n3-20260505_031200/gen_20260505_031200.log new file mode 100644 index 0000000000000000000000000000000000000000..f8e63782055f608eb82d76676aaf364cfe783c1a --- /dev/null +++ b/hyperparameter/n3/tabpfgen/tabpfgen-n3-20260505_031200/gen_20260505_031200.log @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:125243ca9824a93e9ac5a1d39499d2b6edc7020db63e1fc970c343623e98b6f1 +size 6595 diff --git a/hyperparameter/n3/tabpfgen/tabpfgen-n3-20260505_031200/input_snapshot.json b/hyperparameter/n3/tabpfgen/tabpfgen-n3-20260505_031200/input_snapshot.json new file mode 100644 index 0000000000000000000000000000000000000000..2df53dbad689923eb0692c0029f1d32d625f8ce4 --- /dev/null +++ b/hyperparameter/n3/tabpfgen/tabpfgen-n3-20260505_031200/input_snapshot.json @@ -0,0 +1,36 @@ +{ + "dataset_id": "n3", + "model": "tabpfgen", + "inputs": { + "train_csv": { + "path": "/data/jialinzhang/SynthesizePipeline-server/DatasetNew/n3/n3-train.csv", + "exists": true, + "size": 211519, + "sha256": "2160a06db2fea02adb0ebb79d8d853bd2544580be301e71f6e8deeb1489a9009" + }, + "val_csv": { + "path": "/data/jialinzhang/SynthesizePipeline-server/DatasetNew/n3/n3-val.csv", + "exists": true, + "size": 26499, + "sha256": "d5ccfee07dfa9e7bdee5bb87642b43828e09f74c6cc0266a3d19d9feaa83106e" + }, + "test_csv": { + "path": "/data/jialinzhang/SynthesizePipeline-server/DatasetNew/n3/n3-test.csv", + "exists": true, + "size": 26676, + "sha256": "6f83aacb0d1747b95e287352a7fff5d9d65a1c127b773852346c68485c4ede47" + }, + "profile_json": { + "path": "/data/jialinzhang/SynthesizePipeline-server/DatasetNew/artifacts/data_core/tabular/n3/n3-dataset_profile.json", + "exists": true, + "size": 5235, + "sha256": "23d2e5904a2ca90cbf8d6e3c75887681721e9b90cc705c31a680c11513d0c46f" + }, + "contract_json": { + "path": "/data/jialinzhang/SynthesizePipeline-server/DatasetNew/artifacts/data_core/tabular/n3/n3-dataset_contract_v1.json", + "exists": true, + "size": 6281, + "sha256": "c0cc56f5fe28e1b65927255c6e3c2b0e9479862c2ec6f2fea1664da36c9a3a09" + } + } +} \ No newline at end of file diff --git a/hyperparameter/n3/tabpfgen/tabpfgen-n3-20260505_031200/public_gate/normalized_schema_snapshot.json b/hyperparameter/n3/tabpfgen/tabpfgen-n3-20260505_031200/public_gate/normalized_schema_snapshot.json new file mode 100644 index 0000000000000000000000000000000000000000..c41fe304503de23190a02e6cbfafa35b3bf134d3 --- /dev/null +++ b/hyperparameter/n3/tabpfgen/tabpfgen-n3-20260505_031200/public_gate/normalized_schema_snapshot.json @@ -0,0 +1,259 @@ +{ + "dataset_id": "n3", + "target_column": "quality", + "task_type": "classification", + "columns": [ + { + "name": "fixed acidity", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 66, + "unique_ratio": 0.016845, + "example_values": [ + "7.1", + "8.5", + "6.4", + "6.8", + "7.6" + ] + } + }, + { + "name": "volatile acidity", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 121, + "unique_ratio": 0.030883, + "example_values": [ + "0.31", + "0.21", + "0.24", + "0.43", + "0.27" + ] + } + }, + { + "name": "citric acid", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 85, + "unique_ratio": 0.021695, + "example_values": [ + "0.17", + "0.41", + "0.31", + "0.25", + "0.3" + ] + } + }, + { + "name": "residual sugar", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 296, + "unique_ratio": 0.075549, + "example_values": [ + "1", + "4.3", + "2.8", + "13", + "12.9" + ] + } + }, + { + "name": "chlorides", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 147, + "unique_ratio": 0.037519, + "example_values": [ + "0.042", + "0.036", + "0.038", + "0.047", + "0.033" + ] + } + }, + { + "name": "free sulfur dioxide", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 120, + "unique_ratio": 0.030628, + "example_values": [ + "21", + "24", + "41", + "43", + "69" + ] + } + }, + { + "name": "total sulfur dioxide", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 244, + "unique_ratio": 0.062277, + "example_values": [ + "144", + "99", + "114", + "132", + "160" + ] + } + }, + { + "name": "density", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 839, + "unique_ratio": 0.21414, + "example_values": [ + "0.99304", + "0.9947", + "0.99155", + "0.98975", + "0.99705" + ] + } + }, + { + "name": "pH", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 100, + "unique_ratio": 0.025523, + "example_values": [ + "3.13", + "3.18", + "3.37", + "3.21", + "3.16" + ] + } + }, + { + "name": "sulphates", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 78, + "unique_ratio": 0.019908, + "example_values": [ + "0.4", + "0.53", + "0.66", + "0.47", + "0.5" + ] + } + }, + { + "name": "alcohol", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 97, + "unique_ratio": 0.024758, + "example_values": [ + "9.6", + "9.7", + "11.7", + "13.4", + "8.8" + ] + } + }, + { + "name": "quality", + "role": "target", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 7, + "unique_ratio": 0.001787, + "example_values": [ + "5", + "6", + "7", + "8", + "3" + ] + } + } + ] +} \ No newline at end of file diff --git a/hyperparameter/n3/tabpfgen/tabpfgen-n3-20260505_031200/public_gate/public_gate_report.json b/hyperparameter/n3/tabpfgen/tabpfgen-n3-20260505_031200/public_gate/public_gate_report.json new file mode 100644 index 0000000000000000000000000000000000000000..93b97319f739e39079d6c6549fd2020f8a6dac25 --- /dev/null +++ b/hyperparameter/n3/tabpfgen/tabpfgen-n3-20260505_031200/public_gate/public_gate_report.json @@ -0,0 +1,37 @@ +{ + "dataset_id": "n3", + "status": "pass", + "checks": [ + { + "check_id": "PG001_csv_parse_ok", + "status": "pass" + }, + { + "check_id": "PG002_split_header_consistent", + "status": "pass" + }, + { + "check_id": "PG003_profile_header_match", + "status": "pass" + }, + { + "check_id": "PG004_missing_token_normalized", + "status": "pass" + }, + { + "check_id": "PG005_semantic_type_validated", + "status": "pass" + }, + { + "check_id": "PG006_target_defined_and_valid", + "status": "pass" + } + ], + "target_column": "quality", + "task_type": "classification", + "input_splits": { + "train": "/data/jialinzhang/SynthesizePipeline-server/DatasetNew/n3/n3-train.csv", + "val": "/data/jialinzhang/SynthesizePipeline-server/DatasetNew/n3/n3-val.csv", + "test": "/data/jialinzhang/SynthesizePipeline-server/DatasetNew/n3/n3-test.csv" + } +} \ No newline at end of file diff --git a/hyperparameter/n3/tabpfgen/tabpfgen-n3-20260505_031200/public_gate/staged_input_manifest.json b/hyperparameter/n3/tabpfgen/tabpfgen-n3-20260505_031200/public_gate/staged_input_manifest.json new file mode 100644 index 0000000000000000000000000000000000000000..1abb2be4f22e07452115f46d2448c91cd1cabf83 --- /dev/null +++ b/hyperparameter/n3/tabpfgen/tabpfgen-n3-20260505_031200/public_gate/staged_input_manifest.json @@ -0,0 +1,264 @@ +{ + "dataset_id": "n3", + "target_column": "quality", + "task_type": "classification", + "train_csv": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/n3/tabpfgen/tabpfgen-n3-20260505_031200/staged/public/train.csv", + "val_csv": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/n3/tabpfgen/tabpfgen-n3-20260505_031200/staged/public/val.csv", + "test_csv": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/n3/tabpfgen/tabpfgen-n3-20260505_031200/staged/public/test.csv", + "features_json": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/n3/tabpfgen/tabpfgen-n3-20260505_031200/staged/public/staged_features.json", + "public_gate_report": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/n3/tabpfgen/tabpfgen-n3-20260505_031200/public_gate/public_gate_report.json", + "column_schema": [ + { + "name": "fixed acidity", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 66, + "unique_ratio": 0.016845, + "example_values": [ + "7.1", + "8.5", + "6.4", + "6.8", + "7.6" + ] + } + }, + { + "name": "volatile acidity", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 121, + "unique_ratio": 0.030883, + "example_values": [ + "0.31", + "0.21", + "0.24", + "0.43", + "0.27" + ] + } + }, + { + "name": "citric acid", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 85, + "unique_ratio": 0.021695, + "example_values": [ + "0.17", + "0.41", + "0.31", + "0.25", + "0.3" + ] + } + }, + { + "name": "residual sugar", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 296, + "unique_ratio": 0.075549, + "example_values": [ + "1", + "4.3", + "2.8", + "13", + "12.9" + ] + } + }, + { + "name": "chlorides", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 147, + "unique_ratio": 0.037519, + "example_values": [ + "0.042", + "0.036", + "0.038", + "0.047", + "0.033" + ] + } + }, + { + "name": "free sulfur dioxide", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 120, + "unique_ratio": 0.030628, + "example_values": [ + "21", + "24", + "41", + "43", + "69" + ] + } + }, + { + "name": "total sulfur dioxide", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 244, + "unique_ratio": 0.062277, + "example_values": [ + "144", + "99", + "114", + "132", + "160" + ] + } + }, + { + "name": "density", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 839, + "unique_ratio": 0.21414, + "example_values": [ + "0.99304", + "0.9947", + "0.99155", + "0.98975", + "0.99705" + ] + } + }, + { + "name": "pH", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 100, + "unique_ratio": 0.025523, + "example_values": [ + "3.13", + "3.18", + "3.37", + "3.21", + "3.16" + ] + } + }, + { + "name": "sulphates", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 78, + "unique_ratio": 0.019908, + "example_values": [ + "0.4", + "0.53", + "0.66", + "0.47", + "0.5" + ] + } + }, + { + "name": "alcohol", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 97, + "unique_ratio": 0.024758, + "example_values": [ + "9.6", + "9.7", + "11.7", + "13.4", + "8.8" + ] + } + }, + { + "name": "quality", + "role": "target", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 7, + "unique_ratio": 0.001787, + "example_values": [ + "5", + "6", + "7", + "8", + "3" + ] + } + } + ] +} \ No newline at end of file diff --git a/hyperparameter/n3/tabpfgen/tabpfgen-n3-20260505_031200/run_config.json b/hyperparameter/n3/tabpfgen/tabpfgen-n3-20260505_031200/run_config.json new file mode 100644 index 0000000000000000000000000000000000000000..0527b31c8eda197740410e91ff53f04a555a1cbc --- /dev/null +++ b/hyperparameter/n3/tabpfgen/tabpfgen-n3-20260505_031200/run_config.json @@ -0,0 +1,43 @@ +{ + "schema_version": 1, + "recorded_at": "2026-05-05T03:12:00", + "dataset_id": "n3", + "model": "tabpfgen", + "work_dir": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/n3/tabpfgen/tabpfgen-n3-20260505_031200", + "dataset_source_requested": "new", + "dataset_source_resolved": "new", + "cli_args": { + "model": "tabpfgen", + "dataset": "n3", + "dataset_source": "new", + "train": true, + "generate": true, + "num_rows": 0, + "epochs": null, + "output_dir": null, + "model_dir": null, + "work_dir": null, + "resume": false, + "no_stats": false + }, + "resolved": { + "num_rows": 3918, + "model_path": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/n3/tabpfgen/tabpfgen-n3-20260505_031200", + "output_csv": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/n3/tabpfgen/tabpfgen-n3-20260505_031200/tabpfgen-n3-3918-20260505_031200.csv" + }, + "input_artifacts": { + "public_gate_report": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/n3/tabpfgen/tabpfgen-n3-20260505_031200/public_gate/public_gate_report.json", + "public_manifest": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/n3/tabpfgen/tabpfgen-n3-20260505_031200/public_gate/staged_input_manifest.json", + "model_manifest": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/n3/tabpfgen/tabpfgen-n3-20260505_031200/staged/tabpfgen/model_input_manifest.json", + "train_csv": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/n3/tabpfgen/tabpfgen-n3-20260505_031200/staged/public/train.csv", + "features_json": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/n3/tabpfgen/tabpfgen-n3-20260505_031200/staged/public/staged_features.json", + "target_column": "quality", + "task_type": "classification" + }, + "env_overrides": { + "BENCHMARK_TABPFGEN_GPUS": "device=3", + "TABPFGEN_DEVICE": "cuda", + "TABPFGEN_FIT_MAX_ROWS": "2048", + "TABPFGEN_GEN_CHUNK_ROWS": "128" + } +} \ No newline at end of file diff --git a/hyperparameter/n3/tabpfgen/tabpfgen-n3-20260505_031200/runtime_result.json b/hyperparameter/n3/tabpfgen/tabpfgen-n3-20260505_031200/runtime_result.json new file mode 100644 index 0000000000000000000000000000000000000000..11743009f54d990b8cbf1d9ead383f2360dac2a0 --- /dev/null +++ b/hyperparameter/n3/tabpfgen/tabpfgen-n3-20260505_031200/runtime_result.json @@ -0,0 +1,27 @@ +{ + "dataset_id": "n3", + "model": "tabpfgen", + "run_id": "tabpfgen-n3-20260505_031200", + "public_gate_status": "pass", + "adapter_ready_status": "pass", + "train_status": "success", + "generate_status": "success", + "reason_code": null, + "reason_detail": null, + "artifacts": { + "synthetic_csv": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/n3/tabpfgen/tabpfgen-n3-20260505_031200/tabpfgen-n3-3918-20260505_031200.csv", + "model_path": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/n3/tabpfgen/tabpfgen-n3-20260505_031200" + }, + "timings": { + "train": { + "started_at": "2026-05-05T03:12:00", + "ended_at": "2026-05-05T03:12:00", + "duration_sec": 0.01 + }, + "generate": { + "started_at": "2026-05-05T03:12:00", + "ended_at": "2026-05-05T03:13:14", + "duration_sec": 74.152 + } + } +} \ No newline at end of file diff --git a/hyperparameter/n3/tabpfgen/tabpfgen-n3-20260505_031200/staged/public/staged_features.json b/hyperparameter/n3/tabpfgen/tabpfgen-n3-20260505_031200/staged/public/staged_features.json new file mode 100644 index 0000000000000000000000000000000000000000..08fe4d766d091d2f2ddba724a16b9509cbe4c390 --- /dev/null +++ b/hyperparameter/n3/tabpfgen/tabpfgen-n3-20260505_031200/staged/public/staged_features.json @@ -0,0 +1,62 @@ +[ + { + "feature_name": "fixed acidity", + "data_type": "continuous", + "is_target": false + }, + { + "feature_name": "volatile acidity", + "data_type": "continuous", + "is_target": false + }, + { + "feature_name": "citric acid", + "data_type": "continuous", + "is_target": false + }, + { + "feature_name": "residual sugar", + "data_type": "continuous", + "is_target": false + }, + { + "feature_name": "chlorides", + "data_type": "continuous", + "is_target": false + }, + { + "feature_name": "free sulfur dioxide", + "data_type": "continuous", + "is_target": false + }, + { + "feature_name": "total sulfur dioxide", + "data_type": "continuous", + "is_target": false + }, + { + "feature_name": "density", + "data_type": "continuous", + "is_target": false + }, + { + "feature_name": "pH", + "data_type": "continuous", + "is_target": false + }, + { + "feature_name": "sulphates", + "data_type": "continuous", + "is_target": false + }, + { + "feature_name": "alcohol", + "data_type": "continuous", + "is_target": false + }, + { + "feature_name": "quality", + "data_type": "continuous", + "is_target": true + } +] \ No newline at end of file diff --git a/hyperparameter/n3/tabpfgen/tabpfgen-n3-20260505_031200/staged/public/test.csv b/hyperparameter/n3/tabpfgen/tabpfgen-n3-20260505_031200/staged/public/test.csv new file mode 100644 index 0000000000000000000000000000000000000000..db5cd50d3746410ea470625fa2ba2c8e9775cc0d --- /dev/null +++ b/hyperparameter/n3/tabpfgen/tabpfgen-n3-20260505_031200/staged/public/test.csv @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:19e107152a94432e2a37ff045c00cfe35e1be30208b1553080d7dd0ede256d3b +size 28944 diff --git a/hyperparameter/n3/tabpfgen/tabpfgen-n3-20260505_031200/staged/public/train.csv b/hyperparameter/n3/tabpfgen/tabpfgen-n3-20260505_031200/staged/public/train.csv new file mode 100644 index 0000000000000000000000000000000000000000..87ca26726fe82ccbaa397919305b043c17eb374e --- /dev/null +++ b/hyperparameter/n3/tabpfgen/tabpfgen-n3-20260505_031200/staged/public/train.csv @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:7813c8cca73ba4bfc6559215257b341c21e459980ad17ae6ddc809306bc9a0b9 +size 229945 diff --git a/hyperparameter/n3/tabpfgen/tabpfgen-n3-20260505_031200/staged/public/val.csv b/hyperparameter/n3/tabpfgen/tabpfgen-n3-20260505_031200/staged/public/val.csv new file mode 100644 index 0000000000000000000000000000000000000000..6acf84c76c47093b513c46d5503972a2dff275c0 --- /dev/null +++ b/hyperparameter/n3/tabpfgen/tabpfgen-n3-20260505_031200/staged/public/val.csv @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:cf5979d9675567d9d6642640c9b84fc6c49e492604144723c30f50516c05cee6 +size 28791 diff --git a/hyperparameter/n3/tabpfgen/tabpfgen-n3-20260505_031200/staged/tabpfgen/adapter_report.json b/hyperparameter/n3/tabpfgen/tabpfgen-n3-20260505_031200/staged/tabpfgen/adapter_report.json new file mode 100644 index 0000000000000000000000000000000000000000..ecfa494be35cca9760df7b6736e0ff793df33af6 --- /dev/null +++ b/hyperparameter/n3/tabpfgen/tabpfgen-n3-20260505_031200/staged/tabpfgen/adapter_report.json @@ -0,0 +1,7 @@ +{ + "adapter_ready_status": "pass", + "adapter_fail_reason_code": null, + "adapter_fail_detail": null, + "adapter_transforms_applied": [], + "model_input_manifest": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/n3/tabpfgen/tabpfgen-n3-20260505_031200/staged/tabpfgen/model_input_manifest.json" +} \ No newline at end of file diff --git a/hyperparameter/n3/tabpfgen/tabpfgen-n3-20260505_031200/staged/tabpfgen/adapter_transforms_applied.json b/hyperparameter/n3/tabpfgen/tabpfgen-n3-20260505_031200/staged/tabpfgen/adapter_transforms_applied.json new file mode 100644 index 0000000000000000000000000000000000000000..0637a088a01e8ddab3bf3fa98dbe804cbde1a0dc --- /dev/null +++ b/hyperparameter/n3/tabpfgen/tabpfgen-n3-20260505_031200/staged/tabpfgen/adapter_transforms_applied.json @@ -0,0 +1 @@ +[] \ No newline at end of file diff --git a/hyperparameter/n3/tabpfgen/tabpfgen-n3-20260505_031200/staged/tabpfgen/model_input_manifest.json b/hyperparameter/n3/tabpfgen/tabpfgen-n3-20260505_031200/staged/tabpfgen/model_input_manifest.json new file mode 100644 index 0000000000000000000000000000000000000000..7b52aca4740c729765738ea8311b2a1c49292661 --- /dev/null +++ b/hyperparameter/n3/tabpfgen/tabpfgen-n3-20260505_031200/staged/tabpfgen/model_input_manifest.json @@ -0,0 +1,266 @@ +{ + "dataset_id": "n3", + "model": "tabpfgen", + "target_column": "quality", + "task_type": "classification", + "column_schema": [ + { + "name": "fixed acidity", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 66, + "unique_ratio": 0.016845, + "example_values": [ + "7.1", + "8.5", + "6.4", + "6.8", + "7.6" + ] + } + }, + { + "name": "volatile acidity", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 121, + "unique_ratio": 0.030883, + "example_values": [ + "0.31", + "0.21", + "0.24", + "0.43", + "0.27" + ] + } + }, + { + "name": "citric acid", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 85, + "unique_ratio": 0.021695, + "example_values": [ + "0.17", + "0.41", + "0.31", + "0.25", + "0.3" + ] + } + }, + { + "name": "residual sugar", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 296, + "unique_ratio": 0.075549, + "example_values": [ + "1", + "4.3", + "2.8", + "13", + "12.9" + ] + } + }, + { + "name": "chlorides", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 147, + "unique_ratio": 0.037519, + "example_values": [ + "0.042", + "0.036", + "0.038", + "0.047", + "0.033" + ] + } + }, + { + "name": "free sulfur dioxide", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 120, + "unique_ratio": 0.030628, + "example_values": [ + "21", + "24", + "41", + "43", + "69" + ] + } + }, + { + "name": "total sulfur dioxide", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 244, + "unique_ratio": 0.062277, + "example_values": [ + "144", + "99", + "114", + "132", + "160" + ] + } + }, + { + "name": "density", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 839, + "unique_ratio": 0.21414, + "example_values": [ + "0.99304", + "0.9947", + "0.99155", + "0.98975", + "0.99705" + ] + } + }, + { + "name": "pH", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 100, + "unique_ratio": 0.025523, + "example_values": [ + "3.13", + "3.18", + "3.37", + "3.21", + "3.16" + ] + } + }, + { + "name": "sulphates", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 78, + "unique_ratio": 0.019908, + "example_values": [ + "0.4", + "0.53", + "0.66", + "0.47", + "0.5" + ] + } + }, + { + "name": "alcohol", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 97, + "unique_ratio": 0.024758, + "example_values": [ + "9.6", + "9.7", + "11.7", + "13.4", + "8.8" + ] + } + }, + { + "name": "quality", + "role": "target", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 7, + "unique_ratio": 0.001787, + "example_values": [ + "5", + "6", + "7", + "8", + "3" + ] + } + } + ], + "public_manifest": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/n3/tabpfgen/tabpfgen-n3-20260505_031200/public_gate/staged_input_manifest.json", + "train_csv": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/n3/tabpfgen/tabpfgen-n3-20260505_031200/staged/public/train.csv", + "val_csv": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/n3/tabpfgen/tabpfgen-n3-20260505_031200/staged/public/val.csv", + "test_csv": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/n3/tabpfgen/tabpfgen-n3-20260505_031200/staged/public/test.csv", + "features_json": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/n3/tabpfgen/tabpfgen-n3-20260505_031200/staged/public/staged_features.json", + "public_gate_report": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/n3/tabpfgen/tabpfgen-n3-20260505_031200/public_gate/public_gate_report.json" +} \ No newline at end of file diff --git a/hyperparameter/n3/tabpfgen/tabpfgen-n3-20260505_031200/tabpfgen-n3-3918-20260505_031200.csv b/hyperparameter/n3/tabpfgen/tabpfgen-n3-20260505_031200/tabpfgen-n3-3918-20260505_031200.csv new file mode 100644 index 0000000000000000000000000000000000000000..57e3b5f32c37656e664a0ddb9f5ec51c777fb46c --- /dev/null +++ b/hyperparameter/n3/tabpfgen/tabpfgen-n3-20260505_031200/tabpfgen-n3-3918-20260505_031200.csv @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:78594120111c2d3bdd9ed921f6cdb156b62ca02ad5b68e39e34a6787aa3996c5 +size 446123 diff --git a/hyperparameter/n3/tabpfgen/tabpfgen-n3-20260505_031200/tabpfgen_meta.json b/hyperparameter/n3/tabpfgen/tabpfgen-n3-20260505_031200/tabpfgen_meta.json new file mode 100644 index 0000000000000000000000000000000000000000..f18ff508699e83b1e81c22f19a55c3e502fb3c59 --- /dev/null +++ b/hyperparameter/n3/tabpfgen/tabpfgen-n3-20260505_031200/tabpfgen_meta.json @@ -0,0 +1,9 @@ +{ + "csv_path": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/n3/tabpfgen/tabpfgen-n3-20260505_031200/staged/public/train.csv", + "json_path": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/n3/tabpfgen/tabpfgen-n3-20260505_031200/staged/public/staged_features.json", + "target_col": "quality", + "is_classification": true, + "task_type": "classification", + "n_rows": 3918, + "n_cols": 12 +} \ No newline at end of file diff --git a/hyperparameter/n3/tabpfgen/tabpfgen-n3-20260505_031200/train_20260505_031200.log b/hyperparameter/n3/tabpfgen/tabpfgen-n3-20260505_031200/train_20260505_031200.log new file mode 100644 index 0000000000000000000000000000000000000000..3a1312dd409d3c477950b7a64690e1eb2c96aa02 --- /dev/null +++ b/hyperparameter/n3/tabpfgen/tabpfgen-n3-20260505_031200/train_20260505_031200.log @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:18994d1a15bc7eb4fdaa75fa42d160430c7255623cfe8cb04b79006e4883b4b1 +size 595 diff --git a/hyperparameter/n3/tabpfgen/tabpfgen-n3-20260505_031328/_tabpfgen_generate.py b/hyperparameter/n3/tabpfgen/tabpfgen-n3-20260505_031328/_tabpfgen_generate.py new file mode 100644 index 0000000000000000000000000000000000000000..e2c2d0ecd70717fd7cce358679394d94fc519401 --- /dev/null +++ b/hyperparameter/n3/tabpfgen/tabpfgen-n3-20260505_031328/_tabpfgen_generate.py @@ -0,0 +1,122 @@ +import os +import numpy as np +import pandas as pd +import json +from tabpfgen import TabPFGen + +df = pd.read_csv("/work/output-Benchmark-trainonly-v1/n3/tabpfgen/tabpfgen-n3-20260505_031328/staged/public/train.csv") +target_col = "quality" + +target_missing = df[target_col].isna() +if target_missing.any(): + dropped = int(target_missing.sum()) + df = df.loc[~target_missing].copy() + print( + f"[TabPFGen] Dropped {dropped} rows with missing target '{target_col}'" + ) +if df.empty: + raise ValueError( + f"[TabPFGen] No rows remain after dropping missing target '{target_col}'" + ) + +feature_cols = [c for c in df.columns if c != target_col] + +cat_encodings = {} +for col in feature_cols: + if df[col].dtype == object or str(df[col].dtype) == 'category': + cats = sorted(df[col].dropna().unique().tolist(), key=str) + cat_map = {v: i for i, v in enumerate(cats)} + df[col] = df[col].map(cat_map).astype(float) + cat_encodings[col] = cats + print(f"[TabPFGen] Label-encoded '{col}' ({len(cats)} categories)") + +target_cats = None +if df[target_col].dtype == object or str(df[target_col].dtype) == 'category': + cats = sorted(df[target_col].dropna().unique().tolist(), key=str) + t_map = {v: i for i, v in enumerate(cats)} + df[target_col] = df[target_col].map(t_map).astype(float) + target_cats = cats + print(f"[TabPFGen] Label-encoded target '{target_col}' ({len(cats)} categories)") + +X = df[feature_cols].values.astype(np.float32) +y = df[target_col].values +fit_rows_cap = max(1, int(os.environ.get("TABPFGEN_FIT_MAX_ROWS", "50000"))) +if len(X) > fit_rows_cap: + rng = np.random.default_rng(42) + idx = np.sort(rng.choice(len(X), size=fit_rows_cap, replace=False)) + X = X[idx] + y = y[idx] + print(f"[TabPFGen] Downsampled fit rows -> {len(X)} (cap={fit_rows_cap})") +target_n = int(3918) + +for i in range(X.shape[1]): + col_vals = X[:, i] + mask = np.isnan(col_vals) + if mask.any(): + mean_val = np.nanmean(col_vals) + X[mask, i] = mean_val if not np.isnan(mean_val) else 0.0 + +chunk_rows = max(1, int(os.environ.get("TABPFGEN_GEN_CHUNK_ROWS", "256"))) +device = (os.environ.get("TABPFGEN_DEVICE") or "auto").strip() or "auto" + +# TabPFGen v0.1.x API:仅支持 n_sgld_steps / sgld_* / device。 +# (旧版脚本中的 energy_*_chunk 与上游 TabPFGen 不一致,会导致 TypeError。) +gen = TabPFGen( + n_sgld_steps=1000, + sgld_step_size=0.01, + sgld_noise_scale=0.01, + device=device, +) + +print(f"[TabPFGen] Generating {target_n} rows via generate_classification (chunk_rows={chunk_rows}, device={device})") +x_parts = [] +y_parts = [] +remaining = target_n +while remaining > 0: + take = min(chunk_rows, remaining) + X_part, y_part = gen.generate_classification(X, y, n_samples=take) + x_parts.append(np.asarray(X_part)) + y_parts.append(np.asarray(y_part)) + remaining -= take + print(f"[TabPFGen] chunk done: take={take}, remaining={remaining}") + +X_syn = np.concatenate(x_parts, axis=0) +y_syn = np.concatenate(y_parts, axis=0) + +syn_df = pd.DataFrame(X_syn, columns=feature_cols) +syn_df[target_col] = y_syn + +for col, cats in cat_encodings.items(): + codes = np.round(syn_df[col].values).astype(int) + codes = np.clip(codes, 0, len(cats) - 1) + syn_df[col] = [cats[c] for c in codes] + +if target_cats is not None: + codes = np.round(syn_df[target_col].values).astype(int) + codes = np.clip(codes, 0, len(target_cats) - 1) + syn_df[target_col] = [target_cats[c] for c in codes] + +if len(syn_df) > target_n: + print(f"[TabPFGen] Trimming rows: {len(syn_df)} -> {target_n}") + syn_df = syn_df.iloc[:target_n].copy() +elif len(syn_df) < target_n: + deficit = target_n - len(syn_df) + print(f"[TabPFGen] Padding rows: {len(syn_df)} -> {target_n} (deficit={deficit})") + if len(syn_df) > 0: + extra = syn_df.sample(n=deficit, replace=True, random_state=42) + syn_df = pd.concat( + [syn_df.reset_index(drop=True), extra.reset_index(drop=True)], + ignore_index=True, + ) + else: + syn_df = df[feature_cols + [target_col]].sample( + n=target_n, replace=True, random_state=42 + ).reset_index(drop=True) + +syn_df = syn_df[list(df.columns)] +if len(syn_df) != target_n: + raise RuntimeError( + f"[TabPFGen] Row alignment failed: got {len(syn_df)}, expected {target_n}" + ) +syn_df.to_csv("/work/output-Benchmark-trainonly-v1/n3/tabpfgen/tabpfgen-n3-20260505_031328/tabpfgen-n3-3918-20260505_031328.csv", index=False) +print(f"[TabPFGen] Saved {len(syn_df)} rows -> /work/output-Benchmark-trainonly-v1/n3/tabpfgen/tabpfgen-n3-20260505_031328/tabpfgen-n3-3918-20260505_031328.csv") diff --git a/hyperparameter/n3/tabpfgen/tabpfgen-n3-20260505_031328/gen_20260505_031328.log b/hyperparameter/n3/tabpfgen/tabpfgen-n3-20260505_031328/gen_20260505_031328.log new file mode 100644 index 0000000000000000000000000000000000000000..9221472689c18f5261cf92a41c0ab4e9a0d41e32 --- /dev/null +++ b/hyperparameter/n3/tabpfgen/tabpfgen-n3-20260505_031328/gen_20260505_031328.log @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:7e2b1654b46197080f82e7953a868ed274f3fc10bbbe1fd7490e5e7cc2231272 +size 6595 diff --git a/hyperparameter/n3/tabpfgen/tabpfgen-n3-20260505_031328/input_snapshot.json b/hyperparameter/n3/tabpfgen/tabpfgen-n3-20260505_031328/input_snapshot.json new file mode 100644 index 0000000000000000000000000000000000000000..2df53dbad689923eb0692c0029f1d32d625f8ce4 --- /dev/null +++ b/hyperparameter/n3/tabpfgen/tabpfgen-n3-20260505_031328/input_snapshot.json @@ -0,0 +1,36 @@ +{ + "dataset_id": "n3", + "model": "tabpfgen", + "inputs": { + "train_csv": { + "path": "/data/jialinzhang/SynthesizePipeline-server/DatasetNew/n3/n3-train.csv", + "exists": true, + "size": 211519, + "sha256": "2160a06db2fea02adb0ebb79d8d853bd2544580be301e71f6e8deeb1489a9009" + }, + "val_csv": { + "path": "/data/jialinzhang/SynthesizePipeline-server/DatasetNew/n3/n3-val.csv", + "exists": true, + "size": 26499, + "sha256": "d5ccfee07dfa9e7bdee5bb87642b43828e09f74c6cc0266a3d19d9feaa83106e" + }, + "test_csv": { + "path": "/data/jialinzhang/SynthesizePipeline-server/DatasetNew/n3/n3-test.csv", + "exists": true, + "size": 26676, + "sha256": "6f83aacb0d1747b95e287352a7fff5d9d65a1c127b773852346c68485c4ede47" + }, + "profile_json": { + "path": "/data/jialinzhang/SynthesizePipeline-server/DatasetNew/artifacts/data_core/tabular/n3/n3-dataset_profile.json", + "exists": true, + "size": 5235, + "sha256": "23d2e5904a2ca90cbf8d6e3c75887681721e9b90cc705c31a680c11513d0c46f" + }, + "contract_json": { + "path": "/data/jialinzhang/SynthesizePipeline-server/DatasetNew/artifacts/data_core/tabular/n3/n3-dataset_contract_v1.json", + "exists": true, + "size": 6281, + "sha256": "c0cc56f5fe28e1b65927255c6e3c2b0e9479862c2ec6f2fea1664da36c9a3a09" + } + } +} \ No newline at end of file diff --git a/hyperparameter/n3/tabpfgen/tabpfgen-n3-20260505_031328/public_gate/normalized_schema_snapshot.json b/hyperparameter/n3/tabpfgen/tabpfgen-n3-20260505_031328/public_gate/normalized_schema_snapshot.json new file mode 100644 index 0000000000000000000000000000000000000000..c41fe304503de23190a02e6cbfafa35b3bf134d3 --- /dev/null +++ b/hyperparameter/n3/tabpfgen/tabpfgen-n3-20260505_031328/public_gate/normalized_schema_snapshot.json @@ -0,0 +1,259 @@ +{ + "dataset_id": "n3", + "target_column": "quality", + "task_type": "classification", + "columns": [ + { + "name": "fixed acidity", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 66, + "unique_ratio": 0.016845, + "example_values": [ + "7.1", + "8.5", + "6.4", + "6.8", + "7.6" + ] + } + }, + { + "name": "volatile acidity", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 121, + "unique_ratio": 0.030883, + "example_values": [ + "0.31", + "0.21", + "0.24", + "0.43", + "0.27" + ] + } + }, + { + "name": "citric acid", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 85, + "unique_ratio": 0.021695, + "example_values": [ + "0.17", + "0.41", + "0.31", + "0.25", + "0.3" + ] + } + }, + { + "name": "residual sugar", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 296, + "unique_ratio": 0.075549, + "example_values": [ + "1", + "4.3", + "2.8", + "13", + "12.9" + ] + } + }, + { + "name": "chlorides", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 147, + "unique_ratio": 0.037519, + "example_values": [ + "0.042", + "0.036", + "0.038", + "0.047", + "0.033" + ] + } + }, + { + "name": "free sulfur dioxide", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 120, + "unique_ratio": 0.030628, + "example_values": [ + "21", + "24", + "41", + "43", + "69" + ] + } + }, + { + "name": "total sulfur dioxide", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 244, + "unique_ratio": 0.062277, + "example_values": [ + "144", + "99", + "114", + "132", + "160" + ] + } + }, + { + "name": "density", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 839, + "unique_ratio": 0.21414, + "example_values": [ + "0.99304", + "0.9947", + "0.99155", + "0.98975", + "0.99705" + ] + } + }, + { + "name": "pH", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 100, + "unique_ratio": 0.025523, + "example_values": [ + "3.13", + "3.18", + "3.37", + "3.21", + "3.16" + ] + } + }, + { + "name": "sulphates", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 78, + "unique_ratio": 0.019908, + "example_values": [ + "0.4", + "0.53", + "0.66", + "0.47", + "0.5" + ] + } + }, + { + "name": "alcohol", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 97, + "unique_ratio": 0.024758, + "example_values": [ + "9.6", + "9.7", + "11.7", + "13.4", + "8.8" + ] + } + }, + { + "name": "quality", + "role": "target", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 7, + "unique_ratio": 0.001787, + "example_values": [ + "5", + "6", + "7", + "8", + "3" + ] + } + } + ] +} \ No newline at end of file diff --git a/hyperparameter/n3/tabpfgen/tabpfgen-n3-20260505_031328/public_gate/public_gate_report.json b/hyperparameter/n3/tabpfgen/tabpfgen-n3-20260505_031328/public_gate/public_gate_report.json new file mode 100644 index 0000000000000000000000000000000000000000..93b97319f739e39079d6c6549fd2020f8a6dac25 --- /dev/null +++ b/hyperparameter/n3/tabpfgen/tabpfgen-n3-20260505_031328/public_gate/public_gate_report.json @@ -0,0 +1,37 @@ +{ + "dataset_id": "n3", + "status": "pass", + "checks": [ + { + "check_id": "PG001_csv_parse_ok", + "status": "pass" + }, + { + "check_id": "PG002_split_header_consistent", + "status": "pass" + }, + { + "check_id": "PG003_profile_header_match", + "status": "pass" + }, + { + "check_id": "PG004_missing_token_normalized", + "status": "pass" + }, + { + "check_id": "PG005_semantic_type_validated", + "status": "pass" + }, + { + "check_id": "PG006_target_defined_and_valid", + "status": "pass" + } + ], + "target_column": "quality", + "task_type": "classification", + "input_splits": { + "train": "/data/jialinzhang/SynthesizePipeline-server/DatasetNew/n3/n3-train.csv", + "val": "/data/jialinzhang/SynthesizePipeline-server/DatasetNew/n3/n3-val.csv", + "test": "/data/jialinzhang/SynthesizePipeline-server/DatasetNew/n3/n3-test.csv" + } +} \ No newline at end of file diff --git a/hyperparameter/n3/tabpfgen/tabpfgen-n3-20260505_031328/public_gate/staged_input_manifest.json b/hyperparameter/n3/tabpfgen/tabpfgen-n3-20260505_031328/public_gate/staged_input_manifest.json new file mode 100644 index 0000000000000000000000000000000000000000..14d8e8a54324fa9c5a81b4f9e060d3631df40f8f --- /dev/null +++ b/hyperparameter/n3/tabpfgen/tabpfgen-n3-20260505_031328/public_gate/staged_input_manifest.json @@ -0,0 +1,264 @@ +{ + "dataset_id": "n3", + "target_column": "quality", + "task_type": "classification", + "train_csv": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/n3/tabpfgen/tabpfgen-n3-20260505_031328/staged/public/train.csv", + "val_csv": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/n3/tabpfgen/tabpfgen-n3-20260505_031328/staged/public/val.csv", + "test_csv": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/n3/tabpfgen/tabpfgen-n3-20260505_031328/staged/public/test.csv", + "features_json": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/n3/tabpfgen/tabpfgen-n3-20260505_031328/staged/public/staged_features.json", + "public_gate_report": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/n3/tabpfgen/tabpfgen-n3-20260505_031328/public_gate/public_gate_report.json", + "column_schema": [ + { + "name": "fixed acidity", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 66, + "unique_ratio": 0.016845, + "example_values": [ + "7.1", + "8.5", + "6.4", + "6.8", + "7.6" + ] + } + }, + { + "name": "volatile acidity", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 121, + "unique_ratio": 0.030883, + "example_values": [ + "0.31", + "0.21", + "0.24", + "0.43", + "0.27" + ] + } + }, + { + "name": "citric acid", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 85, + "unique_ratio": 0.021695, + "example_values": [ + "0.17", + "0.41", + "0.31", + "0.25", + "0.3" + ] + } + }, + { + "name": "residual sugar", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 296, + "unique_ratio": 0.075549, + "example_values": [ + "1", + "4.3", + "2.8", + "13", + "12.9" + ] + } + }, + { + "name": "chlorides", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 147, + "unique_ratio": 0.037519, + "example_values": [ + "0.042", + "0.036", + "0.038", + "0.047", + "0.033" + ] + } + }, + { + "name": "free sulfur dioxide", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 120, + "unique_ratio": 0.030628, + "example_values": [ + "21", + "24", + "41", + "43", + "69" + ] + } + }, + { + "name": "total sulfur dioxide", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 244, + "unique_ratio": 0.062277, + "example_values": [ + "144", + "99", + "114", + "132", + "160" + ] + } + }, + { + "name": "density", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 839, + "unique_ratio": 0.21414, + "example_values": [ + "0.99304", + "0.9947", + "0.99155", + "0.98975", + "0.99705" + ] + } + }, + { + "name": "pH", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 100, + "unique_ratio": 0.025523, + "example_values": [ + "3.13", + "3.18", + "3.37", + "3.21", + "3.16" + ] + } + }, + { + "name": "sulphates", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 78, + "unique_ratio": 0.019908, + "example_values": [ + "0.4", + "0.53", + "0.66", + "0.47", + "0.5" + ] + } + }, + { + "name": "alcohol", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 97, + "unique_ratio": 0.024758, + "example_values": [ + "9.6", + "9.7", + "11.7", + "13.4", + "8.8" + ] + } + }, + { + "name": "quality", + "role": "target", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 7, + "unique_ratio": 0.001787, + "example_values": [ + "5", + "6", + "7", + "8", + "3" + ] + } + } + ] +} \ No newline at end of file diff --git a/hyperparameter/n3/tabpfgen/tabpfgen-n3-20260505_031328/run_config.json b/hyperparameter/n3/tabpfgen/tabpfgen-n3-20260505_031328/run_config.json new file mode 100644 index 0000000000000000000000000000000000000000..caa391af4268035549934efdebb5312b340aac4c --- /dev/null +++ b/hyperparameter/n3/tabpfgen/tabpfgen-n3-20260505_031328/run_config.json @@ -0,0 +1,43 @@ +{ + "schema_version": 1, + "recorded_at": "2026-05-05T03:13:28", + "dataset_id": "n3", + "model": "tabpfgen", + "work_dir": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/n3/tabpfgen/tabpfgen-n3-20260505_031328", + "dataset_source_requested": "new", + "dataset_source_resolved": "new", + "cli_args": { + "model": "tabpfgen", + "dataset": "n3", + "dataset_source": "new", + "train": true, + "generate": true, + "num_rows": 0, + "epochs": null, + "output_dir": null, + "model_dir": null, + "work_dir": null, + "resume": false, + "no_stats": false + }, + "resolved": { + "num_rows": 3918, + "model_path": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/n3/tabpfgen/tabpfgen-n3-20260505_031328", + "output_csv": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/n3/tabpfgen/tabpfgen-n3-20260505_031328/tabpfgen-n3-3918-20260505_031328.csv" + }, + "input_artifacts": { + "public_gate_report": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/n3/tabpfgen/tabpfgen-n3-20260505_031328/public_gate/public_gate_report.json", + "public_manifest": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/n3/tabpfgen/tabpfgen-n3-20260505_031328/public_gate/staged_input_manifest.json", + "model_manifest": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/n3/tabpfgen/tabpfgen-n3-20260505_031328/staged/tabpfgen/model_input_manifest.json", + "train_csv": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/n3/tabpfgen/tabpfgen-n3-20260505_031328/staged/public/train.csv", + "features_json": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/n3/tabpfgen/tabpfgen-n3-20260505_031328/staged/public/staged_features.json", + "target_column": "quality", + "task_type": "classification" + }, + "env_overrides": { + "BENCHMARK_TABPFGEN_GPUS": "device=3", + "TABPFGEN_DEVICE": "cuda", + "TABPFGEN_FIT_MAX_ROWS": "3072", + "TABPFGEN_GEN_CHUNK_ROWS": "128" + } +} \ No newline at end of file diff --git a/hyperparameter/n3/tabpfgen/tabpfgen-n3-20260505_031328/runtime_result.json b/hyperparameter/n3/tabpfgen/tabpfgen-n3-20260505_031328/runtime_result.json new file mode 100644 index 0000000000000000000000000000000000000000..e233ca3ab957c79d0609fc5349b90b13c087ebd4 --- /dev/null +++ b/hyperparameter/n3/tabpfgen/tabpfgen-n3-20260505_031328/runtime_result.json @@ -0,0 +1,27 @@ +{ + "dataset_id": "n3", + "model": "tabpfgen", + "run_id": "tabpfgen-n3-20260505_031328", + "public_gate_status": "pass", + "adapter_ready_status": "pass", + "train_status": "success", + "generate_status": "success", + "reason_code": null, + "reason_detail": null, + "artifacts": { + "synthetic_csv": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/n3/tabpfgen/tabpfgen-n3-20260505_031328/tabpfgen-n3-3918-20260505_031328.csv", + "model_path": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/n3/tabpfgen/tabpfgen-n3-20260505_031328" + }, + "timings": { + "train": { + "started_at": "2026-05-05T03:13:28", + "ended_at": "2026-05-05T03:13:28", + "duration_sec": 0.009 + }, + "generate": { + "started_at": "2026-05-05T03:13:28", + "ended_at": "2026-05-05T03:14:42", + "duration_sec": 74.426 + } + } +} \ No newline at end of file diff --git a/hyperparameter/n3/tabpfgen/tabpfgen-n3-20260505_031328/staged/public/staged_features.json b/hyperparameter/n3/tabpfgen/tabpfgen-n3-20260505_031328/staged/public/staged_features.json new file mode 100644 index 0000000000000000000000000000000000000000..08fe4d766d091d2f2ddba724a16b9509cbe4c390 --- /dev/null +++ b/hyperparameter/n3/tabpfgen/tabpfgen-n3-20260505_031328/staged/public/staged_features.json @@ -0,0 +1,62 @@ +[ + { + "feature_name": "fixed acidity", + "data_type": "continuous", + "is_target": false + }, + { + "feature_name": "volatile acidity", + "data_type": "continuous", + "is_target": false + }, + { + "feature_name": "citric acid", + "data_type": "continuous", + "is_target": false + }, + { + "feature_name": "residual sugar", + "data_type": "continuous", + "is_target": false + }, + { + "feature_name": "chlorides", + "data_type": "continuous", + "is_target": false + }, + { + "feature_name": "free sulfur dioxide", + "data_type": "continuous", + "is_target": false + }, + { + "feature_name": "total sulfur dioxide", + "data_type": "continuous", + "is_target": false + }, + { + "feature_name": "density", + "data_type": "continuous", + "is_target": false + }, + { + "feature_name": "pH", + "data_type": "continuous", + "is_target": false + }, + { + "feature_name": "sulphates", + "data_type": "continuous", + "is_target": false + }, + { + "feature_name": "alcohol", + "data_type": "continuous", + "is_target": false + }, + { + "feature_name": "quality", + "data_type": "continuous", + "is_target": true + } +] \ No newline at end of file diff --git a/hyperparameter/n3/tabpfgen/tabpfgen-n3-20260505_031328/staged/public/test.csv b/hyperparameter/n3/tabpfgen/tabpfgen-n3-20260505_031328/staged/public/test.csv new file mode 100644 index 0000000000000000000000000000000000000000..db5cd50d3746410ea470625fa2ba2c8e9775cc0d --- /dev/null +++ b/hyperparameter/n3/tabpfgen/tabpfgen-n3-20260505_031328/staged/public/test.csv @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:19e107152a94432e2a37ff045c00cfe35e1be30208b1553080d7dd0ede256d3b +size 28944 diff --git a/hyperparameter/n3/tabpfgen/tabpfgen-n3-20260505_031328/staged/public/train.csv b/hyperparameter/n3/tabpfgen/tabpfgen-n3-20260505_031328/staged/public/train.csv new file mode 100644 index 0000000000000000000000000000000000000000..87ca26726fe82ccbaa397919305b043c17eb374e --- /dev/null +++ b/hyperparameter/n3/tabpfgen/tabpfgen-n3-20260505_031328/staged/public/train.csv @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:7813c8cca73ba4bfc6559215257b341c21e459980ad17ae6ddc809306bc9a0b9 +size 229945 diff --git a/hyperparameter/n3/tabpfgen/tabpfgen-n3-20260505_031328/staged/public/val.csv b/hyperparameter/n3/tabpfgen/tabpfgen-n3-20260505_031328/staged/public/val.csv new file mode 100644 index 0000000000000000000000000000000000000000..6acf84c76c47093b513c46d5503972a2dff275c0 --- /dev/null +++ b/hyperparameter/n3/tabpfgen/tabpfgen-n3-20260505_031328/staged/public/val.csv @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:cf5979d9675567d9d6642640c9b84fc6c49e492604144723c30f50516c05cee6 +size 28791 diff --git a/hyperparameter/n3/tabpfgen/tabpfgen-n3-20260505_031328/staged/tabpfgen/adapter_report.json b/hyperparameter/n3/tabpfgen/tabpfgen-n3-20260505_031328/staged/tabpfgen/adapter_report.json new file mode 100644 index 0000000000000000000000000000000000000000..ebcb842f8379aed1b068f72a86f68d9dbd813e1f --- /dev/null +++ b/hyperparameter/n3/tabpfgen/tabpfgen-n3-20260505_031328/staged/tabpfgen/adapter_report.json @@ -0,0 +1,7 @@ +{ + "adapter_ready_status": "pass", + "adapter_fail_reason_code": null, + "adapter_fail_detail": null, + "adapter_transforms_applied": [], + "model_input_manifest": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/n3/tabpfgen/tabpfgen-n3-20260505_031328/staged/tabpfgen/model_input_manifest.json" +} \ No newline at end of file diff --git a/hyperparameter/n3/tabpfgen/tabpfgen-n3-20260505_031328/staged/tabpfgen/adapter_transforms_applied.json b/hyperparameter/n3/tabpfgen/tabpfgen-n3-20260505_031328/staged/tabpfgen/adapter_transforms_applied.json new file mode 100644 index 0000000000000000000000000000000000000000..0637a088a01e8ddab3bf3fa98dbe804cbde1a0dc --- /dev/null +++ b/hyperparameter/n3/tabpfgen/tabpfgen-n3-20260505_031328/staged/tabpfgen/adapter_transforms_applied.json @@ -0,0 +1 @@ +[] \ No newline at end of file diff --git a/hyperparameter/n3/tabpfgen/tabpfgen-n3-20260505_031328/staged/tabpfgen/model_input_manifest.json b/hyperparameter/n3/tabpfgen/tabpfgen-n3-20260505_031328/staged/tabpfgen/model_input_manifest.json new file mode 100644 index 0000000000000000000000000000000000000000..124060a9490c21330ca8c2beccd022a57e5b08d3 --- /dev/null +++ b/hyperparameter/n3/tabpfgen/tabpfgen-n3-20260505_031328/staged/tabpfgen/model_input_manifest.json @@ -0,0 +1,266 @@ +{ + "dataset_id": "n3", + "model": "tabpfgen", + "target_column": "quality", + "task_type": "classification", + "column_schema": [ + { + "name": "fixed acidity", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 66, + "unique_ratio": 0.016845, + "example_values": [ + "7.1", + "8.5", + "6.4", + "6.8", + "7.6" + ] + } + }, + { + "name": "volatile acidity", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 121, + "unique_ratio": 0.030883, + "example_values": [ + "0.31", + "0.21", + "0.24", + "0.43", + "0.27" + ] + } + }, + { + "name": "citric acid", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 85, + "unique_ratio": 0.021695, + "example_values": [ + "0.17", + "0.41", + "0.31", + "0.25", + "0.3" + ] + } + }, + { + "name": "residual sugar", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 296, + "unique_ratio": 0.075549, + "example_values": [ + "1", + "4.3", + "2.8", + "13", + "12.9" + ] + } + }, + { + "name": "chlorides", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 147, + "unique_ratio": 0.037519, + "example_values": [ + "0.042", + "0.036", + "0.038", + "0.047", + "0.033" + ] + } + }, + { + "name": "free sulfur dioxide", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 120, + "unique_ratio": 0.030628, + "example_values": [ + "21", + "24", + "41", + "43", + "69" + ] + } + }, + { + "name": "total sulfur dioxide", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 244, + "unique_ratio": 0.062277, + "example_values": [ + "144", + "99", + "114", + "132", + "160" + ] + } + }, + { + "name": "density", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 839, + "unique_ratio": 0.21414, + "example_values": [ + "0.99304", + "0.9947", + "0.99155", + "0.98975", + "0.99705" + ] + } + }, + { + "name": "pH", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 100, + "unique_ratio": 0.025523, + "example_values": [ + "3.13", + "3.18", + "3.37", + "3.21", + "3.16" + ] + } + }, + { + "name": "sulphates", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 78, + "unique_ratio": 0.019908, + "example_values": [ + "0.4", + "0.53", + "0.66", + "0.47", + "0.5" + ] + } + }, + { + "name": "alcohol", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 97, + "unique_ratio": 0.024758, + "example_values": [ + "9.6", + "9.7", + "11.7", + "13.4", + "8.8" + ] + } + }, + { + "name": "quality", + "role": "target", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 7, + "unique_ratio": 0.001787, + "example_values": [ + "5", + "6", + "7", + "8", + "3" + ] + } + } + ], + "public_manifest": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/n3/tabpfgen/tabpfgen-n3-20260505_031328/public_gate/staged_input_manifest.json", + "train_csv": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/n3/tabpfgen/tabpfgen-n3-20260505_031328/staged/public/train.csv", + "val_csv": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/n3/tabpfgen/tabpfgen-n3-20260505_031328/staged/public/val.csv", + "test_csv": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/n3/tabpfgen/tabpfgen-n3-20260505_031328/staged/public/test.csv", + "features_json": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/n3/tabpfgen/tabpfgen-n3-20260505_031328/staged/public/staged_features.json", + "public_gate_report": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/n3/tabpfgen/tabpfgen-n3-20260505_031328/public_gate/public_gate_report.json" +} \ No newline at end of file diff --git a/hyperparameter/n3/tabpfgen/tabpfgen-n3-20260505_031328/tabpfgen-n3-3918-20260505_031328.csv b/hyperparameter/n3/tabpfgen/tabpfgen-n3-20260505_031328/tabpfgen-n3-3918-20260505_031328.csv new file mode 100644 index 0000000000000000000000000000000000000000..68018de20a2b84aa5f219dece747a9bd4d5b3c27 --- /dev/null +++ b/hyperparameter/n3/tabpfgen/tabpfgen-n3-20260505_031328/tabpfgen-n3-3918-20260505_031328.csv @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:3352bbcdfedb99b5dfe6378669c20435f155da2df288d078b66974ddd865100d +size 446100 diff --git a/hyperparameter/n3/tabpfgen/tabpfgen-n3-20260505_031328/tabpfgen_meta.json b/hyperparameter/n3/tabpfgen/tabpfgen-n3-20260505_031328/tabpfgen_meta.json new file mode 100644 index 0000000000000000000000000000000000000000..3c4bcbac2dc2c98e015bec62274c235f64aa1f70 --- /dev/null +++ b/hyperparameter/n3/tabpfgen/tabpfgen-n3-20260505_031328/tabpfgen_meta.json @@ -0,0 +1,9 @@ +{ + "csv_path": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/n3/tabpfgen/tabpfgen-n3-20260505_031328/staged/public/train.csv", + "json_path": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/n3/tabpfgen/tabpfgen-n3-20260505_031328/staged/public/staged_features.json", + "target_col": "quality", + "is_classification": true, + "task_type": "classification", + "n_rows": 3918, + "n_cols": 12 +} \ No newline at end of file diff --git a/hyperparameter/n3/tabpfgen/tabpfgen-n3-20260505_031328/train_20260505_031328.log b/hyperparameter/n3/tabpfgen/tabpfgen-n3-20260505_031328/train_20260505_031328.log new file mode 100644 index 0000000000000000000000000000000000000000..18958eda9e4118e61bff9134c0446e11b57d3798 --- /dev/null +++ b/hyperparameter/n3/tabpfgen/tabpfgen-n3-20260505_031328/train_20260505_031328.log @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:ffc37edcc5b5c720942da0f533f8d2d03409fbfec52caaa2e88ebe6b8b9c64ab +size 595 diff --git a/hyperparameter/n3/tabpfgen/tabpfgen-n3-20260505_031455/_tabpfgen_generate.py b/hyperparameter/n3/tabpfgen/tabpfgen-n3-20260505_031455/_tabpfgen_generate.py new file mode 100644 index 0000000000000000000000000000000000000000..97bf83a2a689f12cf5fc7191f6b56cdf6d98eadf --- /dev/null +++ b/hyperparameter/n3/tabpfgen/tabpfgen-n3-20260505_031455/_tabpfgen_generate.py @@ -0,0 +1,122 @@ +import os +import numpy as np +import pandas as pd +import json +from tabpfgen import TabPFGen + +df = pd.read_csv("/work/output-Benchmark-trainonly-v1/n3/tabpfgen/tabpfgen-n3-20260505_031455/staged/public/train.csv") +target_col = "quality" + +target_missing = df[target_col].isna() +if target_missing.any(): + dropped = int(target_missing.sum()) + df = df.loc[~target_missing].copy() + print( + f"[TabPFGen] Dropped {dropped} rows with missing target '{target_col}'" + ) +if df.empty: + raise ValueError( + f"[TabPFGen] No rows remain after dropping missing target '{target_col}'" + ) + +feature_cols = [c for c in df.columns if c != target_col] + +cat_encodings = {} +for col in feature_cols: + if df[col].dtype == object or str(df[col].dtype) == 'category': + cats = sorted(df[col].dropna().unique().tolist(), key=str) + cat_map = {v: i for i, v in enumerate(cats)} + df[col] = df[col].map(cat_map).astype(float) + cat_encodings[col] = cats + print(f"[TabPFGen] Label-encoded '{col}' ({len(cats)} categories)") + +target_cats = None +if df[target_col].dtype == object or str(df[target_col].dtype) == 'category': + cats = sorted(df[target_col].dropna().unique().tolist(), key=str) + t_map = {v: i for i, v in enumerate(cats)} + df[target_col] = df[target_col].map(t_map).astype(float) + target_cats = cats + print(f"[TabPFGen] Label-encoded target '{target_col}' ({len(cats)} categories)") + +X = df[feature_cols].values.astype(np.float32) +y = df[target_col].values +fit_rows_cap = max(1, int(os.environ.get("TABPFGEN_FIT_MAX_ROWS", "50000"))) +if len(X) > fit_rows_cap: + rng = np.random.default_rng(42) + idx = np.sort(rng.choice(len(X), size=fit_rows_cap, replace=False)) + X = X[idx] + y = y[idx] + print(f"[TabPFGen] Downsampled fit rows -> {len(X)} (cap={fit_rows_cap})") +target_n = int(3918) + +for i in range(X.shape[1]): + col_vals = X[:, i] + mask = np.isnan(col_vals) + if mask.any(): + mean_val = np.nanmean(col_vals) + X[mask, i] = mean_val if not np.isnan(mean_val) else 0.0 + +chunk_rows = max(1, int(os.environ.get("TABPFGEN_GEN_CHUNK_ROWS", "256"))) +device = (os.environ.get("TABPFGEN_DEVICE") or "auto").strip() or "auto" + +# TabPFGen v0.1.x API:仅支持 n_sgld_steps / sgld_* / device。 +# (旧版脚本中的 energy_*_chunk 与上游 TabPFGen 不一致,会导致 TypeError。) +gen = TabPFGen( + n_sgld_steps=1000, + sgld_step_size=0.01, + sgld_noise_scale=0.01, + device=device, +) + +print(f"[TabPFGen] Generating {target_n} rows via generate_classification (chunk_rows={chunk_rows}, device={device})") +x_parts = [] +y_parts = [] +remaining = target_n +while remaining > 0: + take = min(chunk_rows, remaining) + X_part, y_part = gen.generate_classification(X, y, n_samples=take) + x_parts.append(np.asarray(X_part)) + y_parts.append(np.asarray(y_part)) + remaining -= take + print(f"[TabPFGen] chunk done: take={take}, remaining={remaining}") + +X_syn = np.concatenate(x_parts, axis=0) +y_syn = np.concatenate(y_parts, axis=0) + +syn_df = pd.DataFrame(X_syn, columns=feature_cols) +syn_df[target_col] = y_syn + +for col, cats in cat_encodings.items(): + codes = np.round(syn_df[col].values).astype(int) + codes = np.clip(codes, 0, len(cats) - 1) + syn_df[col] = [cats[c] for c in codes] + +if target_cats is not None: + codes = np.round(syn_df[target_col].values).astype(int) + codes = np.clip(codes, 0, len(target_cats) - 1) + syn_df[target_col] = [target_cats[c] for c in codes] + +if len(syn_df) > target_n: + print(f"[TabPFGen] Trimming rows: {len(syn_df)} -> {target_n}") + syn_df = syn_df.iloc[:target_n].copy() +elif len(syn_df) < target_n: + deficit = target_n - len(syn_df) + print(f"[TabPFGen] Padding rows: {len(syn_df)} -> {target_n} (deficit={deficit})") + if len(syn_df) > 0: + extra = syn_df.sample(n=deficit, replace=True, random_state=42) + syn_df = pd.concat( + [syn_df.reset_index(drop=True), extra.reset_index(drop=True)], + ignore_index=True, + ) + else: + syn_df = df[feature_cols + [target_col]].sample( + n=target_n, replace=True, random_state=42 + ).reset_index(drop=True) + +syn_df = syn_df[list(df.columns)] +if len(syn_df) != target_n: + raise RuntimeError( + f"[TabPFGen] Row alignment failed: got {len(syn_df)}, expected {target_n}" + ) +syn_df.to_csv("/work/output-Benchmark-trainonly-v1/n3/tabpfgen/tabpfgen-n3-20260505_031455/tabpfgen-n3-3918-20260505_031455.csv", index=False) +print(f"[TabPFGen] Saved {len(syn_df)} rows -> /work/output-Benchmark-trainonly-v1/n3/tabpfgen/tabpfgen-n3-20260505_031455/tabpfgen-n3-3918-20260505_031455.csv") diff --git a/hyperparameter/n3/tabpfgen/tabpfgen-n3-20260505_031455/gen_20260505_031455.log b/hyperparameter/n3/tabpfgen/tabpfgen-n3-20260505_031455/gen_20260505_031455.log new file mode 100644 index 0000000000000000000000000000000000000000..a72b4a73b597b85444a96e3631082ff5b337ab8b --- /dev/null +++ b/hyperparameter/n3/tabpfgen/tabpfgen-n3-20260505_031455/gen_20260505_031455.log @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:b59a6709891444a8c337dece738fa9daddd940e2aae7a77c2fbf69814c471f1f +size 3671 diff --git a/hyperparameter/n3/tabpfgen/tabpfgen-n3-20260505_031455/input_snapshot.json b/hyperparameter/n3/tabpfgen/tabpfgen-n3-20260505_031455/input_snapshot.json new file mode 100644 index 0000000000000000000000000000000000000000..2df53dbad689923eb0692c0029f1d32d625f8ce4 --- /dev/null +++ b/hyperparameter/n3/tabpfgen/tabpfgen-n3-20260505_031455/input_snapshot.json @@ -0,0 +1,36 @@ +{ + "dataset_id": "n3", + "model": "tabpfgen", + "inputs": { + "train_csv": { + "path": "/data/jialinzhang/SynthesizePipeline-server/DatasetNew/n3/n3-train.csv", + "exists": true, + "size": 211519, + "sha256": "2160a06db2fea02adb0ebb79d8d853bd2544580be301e71f6e8deeb1489a9009" + }, + "val_csv": { + "path": "/data/jialinzhang/SynthesizePipeline-server/DatasetNew/n3/n3-val.csv", + "exists": true, + "size": 26499, + "sha256": "d5ccfee07dfa9e7bdee5bb87642b43828e09f74c6cc0266a3d19d9feaa83106e" + }, + "test_csv": { + "path": "/data/jialinzhang/SynthesizePipeline-server/DatasetNew/n3/n3-test.csv", + "exists": true, + "size": 26676, + "sha256": "6f83aacb0d1747b95e287352a7fff5d9d65a1c127b773852346c68485c4ede47" + }, + "profile_json": { + "path": "/data/jialinzhang/SynthesizePipeline-server/DatasetNew/artifacts/data_core/tabular/n3/n3-dataset_profile.json", + "exists": true, + "size": 5235, + "sha256": "23d2e5904a2ca90cbf8d6e3c75887681721e9b90cc705c31a680c11513d0c46f" + }, + "contract_json": { + "path": "/data/jialinzhang/SynthesizePipeline-server/DatasetNew/artifacts/data_core/tabular/n3/n3-dataset_contract_v1.json", + "exists": true, + "size": 6281, + "sha256": "c0cc56f5fe28e1b65927255c6e3c2b0e9479862c2ec6f2fea1664da36c9a3a09" + } + } +} \ No newline at end of file diff --git a/hyperparameter/n3/tabpfgen/tabpfgen-n3-20260505_031455/public_gate/normalized_schema_snapshot.json b/hyperparameter/n3/tabpfgen/tabpfgen-n3-20260505_031455/public_gate/normalized_schema_snapshot.json new file mode 100644 index 0000000000000000000000000000000000000000..c41fe304503de23190a02e6cbfafa35b3bf134d3 --- /dev/null +++ b/hyperparameter/n3/tabpfgen/tabpfgen-n3-20260505_031455/public_gate/normalized_schema_snapshot.json @@ -0,0 +1,259 @@ +{ + "dataset_id": "n3", + "target_column": "quality", + "task_type": "classification", + "columns": [ + { + "name": "fixed acidity", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 66, + "unique_ratio": 0.016845, + "example_values": [ + "7.1", + "8.5", + "6.4", + "6.8", + "7.6" + ] + } + }, + { + "name": "volatile acidity", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 121, + "unique_ratio": 0.030883, + "example_values": [ + "0.31", + "0.21", + "0.24", + "0.43", + "0.27" + ] + } + }, + { + "name": "citric acid", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 85, + "unique_ratio": 0.021695, + "example_values": [ + "0.17", + "0.41", + "0.31", + "0.25", + "0.3" + ] + } + }, + { + "name": "residual sugar", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 296, + "unique_ratio": 0.075549, + "example_values": [ + "1", + "4.3", + "2.8", + "13", + "12.9" + ] + } + }, + { + "name": "chlorides", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 147, + "unique_ratio": 0.037519, + "example_values": [ + "0.042", + "0.036", + "0.038", + "0.047", + "0.033" + ] + } + }, + { + "name": "free sulfur dioxide", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 120, + "unique_ratio": 0.030628, + "example_values": [ + "21", + "24", + "41", + "43", + "69" + ] + } + }, + { + "name": "total sulfur dioxide", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 244, + "unique_ratio": 0.062277, + "example_values": [ + "144", + "99", + "114", + "132", + "160" + ] + } + }, + { + "name": "density", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 839, + "unique_ratio": 0.21414, + "example_values": [ + "0.99304", + "0.9947", + "0.99155", + "0.98975", + "0.99705" + ] + } + }, + { + "name": "pH", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 100, + "unique_ratio": 0.025523, + "example_values": [ + "3.13", + "3.18", + "3.37", + "3.21", + "3.16" + ] + } + }, + { + "name": "sulphates", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 78, + "unique_ratio": 0.019908, + "example_values": [ + "0.4", + "0.53", + "0.66", + "0.47", + "0.5" + ] + } + }, + { + "name": "alcohol", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 97, + "unique_ratio": 0.024758, + "example_values": [ + "9.6", + "9.7", + "11.7", + "13.4", + "8.8" + ] + } + }, + { + "name": "quality", + "role": "target", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 7, + "unique_ratio": 0.001787, + "example_values": [ + "5", + "6", + "7", + "8", + "3" + ] + } + } + ] +} \ No newline at end of file diff --git a/hyperparameter/n3/tabpfgen/tabpfgen-n3-20260505_031455/public_gate/public_gate_report.json b/hyperparameter/n3/tabpfgen/tabpfgen-n3-20260505_031455/public_gate/public_gate_report.json new file mode 100644 index 0000000000000000000000000000000000000000..93b97319f739e39079d6c6549fd2020f8a6dac25 --- /dev/null +++ b/hyperparameter/n3/tabpfgen/tabpfgen-n3-20260505_031455/public_gate/public_gate_report.json @@ -0,0 +1,37 @@ +{ + "dataset_id": "n3", + "status": "pass", + "checks": [ + { + "check_id": "PG001_csv_parse_ok", + "status": "pass" + }, + { + "check_id": "PG002_split_header_consistent", + "status": "pass" + }, + { + "check_id": "PG003_profile_header_match", + "status": "pass" + }, + { + "check_id": "PG004_missing_token_normalized", + "status": "pass" + }, + { + "check_id": "PG005_semantic_type_validated", + "status": "pass" + }, + { + "check_id": "PG006_target_defined_and_valid", + "status": "pass" + } + ], + "target_column": "quality", + "task_type": "classification", + "input_splits": { + "train": "/data/jialinzhang/SynthesizePipeline-server/DatasetNew/n3/n3-train.csv", + "val": "/data/jialinzhang/SynthesizePipeline-server/DatasetNew/n3/n3-val.csv", + "test": "/data/jialinzhang/SynthesizePipeline-server/DatasetNew/n3/n3-test.csv" + } +} \ No newline at end of file diff --git a/hyperparameter/n3/tabpfgen/tabpfgen-n3-20260505_031455/public_gate/staged_input_manifest.json b/hyperparameter/n3/tabpfgen/tabpfgen-n3-20260505_031455/public_gate/staged_input_manifest.json new file mode 100644 index 0000000000000000000000000000000000000000..b75bc27d32d84412b377471724245fc3dcb614eb --- /dev/null +++ b/hyperparameter/n3/tabpfgen/tabpfgen-n3-20260505_031455/public_gate/staged_input_manifest.json @@ -0,0 +1,264 @@ +{ + "dataset_id": "n3", + "target_column": "quality", + "task_type": "classification", + "train_csv": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/n3/tabpfgen/tabpfgen-n3-20260505_031455/staged/public/train.csv", + "val_csv": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/n3/tabpfgen/tabpfgen-n3-20260505_031455/staged/public/val.csv", + "test_csv": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/n3/tabpfgen/tabpfgen-n3-20260505_031455/staged/public/test.csv", + "features_json": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/n3/tabpfgen/tabpfgen-n3-20260505_031455/staged/public/staged_features.json", + "public_gate_report": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/n3/tabpfgen/tabpfgen-n3-20260505_031455/public_gate/public_gate_report.json", + "column_schema": [ + { + "name": "fixed acidity", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 66, + "unique_ratio": 0.016845, + "example_values": [ + "7.1", + "8.5", + "6.4", + "6.8", + "7.6" + ] + } + }, + { + "name": "volatile acidity", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 121, + "unique_ratio": 0.030883, + "example_values": [ + "0.31", + "0.21", + "0.24", + "0.43", + "0.27" + ] + } + }, + { + "name": "citric acid", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 85, + "unique_ratio": 0.021695, + "example_values": [ + "0.17", + "0.41", + "0.31", + "0.25", + "0.3" + ] + } + }, + { + "name": "residual sugar", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 296, + "unique_ratio": 0.075549, + "example_values": [ + "1", + "4.3", + "2.8", + "13", + "12.9" + ] + } + }, + { + "name": "chlorides", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 147, + "unique_ratio": 0.037519, + "example_values": [ + "0.042", + "0.036", + "0.038", + "0.047", + "0.033" + ] + } + }, + { + "name": "free sulfur dioxide", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 120, + "unique_ratio": 0.030628, + "example_values": [ + "21", + "24", + "41", + "43", + "69" + ] + } + }, + { + "name": "total sulfur dioxide", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 244, + "unique_ratio": 0.062277, + "example_values": [ + "144", + "99", + "114", + "132", + "160" + ] + } + }, + { + "name": "density", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 839, + "unique_ratio": 0.21414, + "example_values": [ + "0.99304", + "0.9947", + "0.99155", + "0.98975", + "0.99705" + ] + } + }, + { + "name": "pH", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 100, + "unique_ratio": 0.025523, + "example_values": [ + "3.13", + "3.18", + "3.37", + "3.21", + "3.16" + ] + } + }, + { + "name": "sulphates", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 78, + "unique_ratio": 0.019908, + "example_values": [ + "0.4", + "0.53", + "0.66", + "0.47", + "0.5" + ] + } + }, + { + "name": "alcohol", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 97, + "unique_ratio": 0.024758, + "example_values": [ + "9.6", + "9.7", + "11.7", + "13.4", + "8.8" + ] + } + }, + { + "name": "quality", + "role": "target", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 7, + "unique_ratio": 0.001787, + "example_values": [ + "5", + "6", + "7", + "8", + "3" + ] + } + } + ] +} \ No newline at end of file diff --git a/hyperparameter/n3/tabpfgen/tabpfgen-n3-20260505_031455/run_config.json b/hyperparameter/n3/tabpfgen/tabpfgen-n3-20260505_031455/run_config.json new file mode 100644 index 0000000000000000000000000000000000000000..def5e17577f501fa8e5e894da8344cbc12474f35 --- /dev/null +++ b/hyperparameter/n3/tabpfgen/tabpfgen-n3-20260505_031455/run_config.json @@ -0,0 +1,43 @@ +{ + "schema_version": 1, + "recorded_at": "2026-05-05T03:14:55", + "dataset_id": "n3", + "model": "tabpfgen", + "work_dir": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/n3/tabpfgen/tabpfgen-n3-20260505_031455", + "dataset_source_requested": "new", + "dataset_source_resolved": "new", + "cli_args": { + "model": "tabpfgen", + "dataset": "n3", + "dataset_source": "new", + "train": true, + "generate": true, + "num_rows": 0, + "epochs": null, + "output_dir": null, + "model_dir": null, + "work_dir": null, + "resume": false, + "no_stats": false + }, + "resolved": { + "num_rows": 3918, + "model_path": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/n3/tabpfgen/tabpfgen-n3-20260505_031455", + "output_csv": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/n3/tabpfgen/tabpfgen-n3-20260505_031455/tabpfgen-n3-3918-20260505_031455.csv" + }, + "input_artifacts": { + "public_gate_report": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/n3/tabpfgen/tabpfgen-n3-20260505_031455/public_gate/public_gate_report.json", + "public_manifest": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/n3/tabpfgen/tabpfgen-n3-20260505_031455/public_gate/staged_input_manifest.json", + "model_manifest": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/n3/tabpfgen/tabpfgen-n3-20260505_031455/staged/tabpfgen/model_input_manifest.json", + "train_csv": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/n3/tabpfgen/tabpfgen-n3-20260505_031455/staged/public/train.csv", + "features_json": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/n3/tabpfgen/tabpfgen-n3-20260505_031455/staged/public/staged_features.json", + "target_column": "quality", + "task_type": "classification" + }, + "env_overrides": { + "BENCHMARK_TABPFGEN_GPUS": "device=3", + "TABPFGEN_DEVICE": "cuda", + "TABPFGEN_FIT_MAX_ROWS": "4096", + "TABPFGEN_GEN_CHUNK_ROWS": "256" + } +} \ No newline at end of file diff --git a/hyperparameter/n3/tabpfgen/tabpfgen-n3-20260505_031455/runtime_result.json b/hyperparameter/n3/tabpfgen/tabpfgen-n3-20260505_031455/runtime_result.json new file mode 100644 index 0000000000000000000000000000000000000000..e7f4613cb5338a705b53466c893eec6dd74b3ecb --- /dev/null +++ b/hyperparameter/n3/tabpfgen/tabpfgen-n3-20260505_031455/runtime_result.json @@ -0,0 +1,27 @@ +{ + "dataset_id": "n3", + "model": "tabpfgen", + "run_id": "tabpfgen-n3-20260505_031455", + "public_gate_status": "pass", + "adapter_ready_status": "pass", + "train_status": "success", + "generate_status": "success", + "reason_code": null, + "reason_detail": null, + "artifacts": { + "synthetic_csv": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/n3/tabpfgen/tabpfgen-n3-20260505_031455/tabpfgen-n3-3918-20260505_031455.csv", + "model_path": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/n3/tabpfgen/tabpfgen-n3-20260505_031455" + }, + "timings": { + "train": { + "started_at": "2026-05-05T03:14:55", + "ended_at": "2026-05-05T03:14:55", + "duration_sec": 0.009 + }, + "generate": { + "started_at": "2026-05-05T03:14:55", + "ended_at": "2026-05-05T03:15:44", + "duration_sec": 48.292 + } + } +} \ No newline at end of file diff --git a/hyperparameter/n3/tabpfgen/tabpfgen-n3-20260505_031455/staged/public/staged_features.json b/hyperparameter/n3/tabpfgen/tabpfgen-n3-20260505_031455/staged/public/staged_features.json new file mode 100644 index 0000000000000000000000000000000000000000..08fe4d766d091d2f2ddba724a16b9509cbe4c390 --- /dev/null +++ b/hyperparameter/n3/tabpfgen/tabpfgen-n3-20260505_031455/staged/public/staged_features.json @@ -0,0 +1,62 @@ +[ + { + "feature_name": "fixed acidity", + "data_type": "continuous", + "is_target": false + }, + { + "feature_name": "volatile acidity", + "data_type": "continuous", + "is_target": false + }, + { + "feature_name": "citric acid", + "data_type": "continuous", + "is_target": false + }, + { + "feature_name": "residual sugar", + "data_type": "continuous", + "is_target": false + }, + { + "feature_name": "chlorides", + "data_type": "continuous", + "is_target": false + }, + { + "feature_name": "free sulfur dioxide", + "data_type": "continuous", + "is_target": false + }, + { + "feature_name": "total sulfur dioxide", + "data_type": "continuous", + "is_target": false + }, + { + "feature_name": "density", + "data_type": "continuous", + "is_target": false + }, + { + "feature_name": "pH", + "data_type": "continuous", + "is_target": false + }, + { + "feature_name": "sulphates", + "data_type": "continuous", + "is_target": false + }, + { + "feature_name": "alcohol", + "data_type": "continuous", + "is_target": false + }, + { + "feature_name": "quality", + "data_type": "continuous", + "is_target": true + } +] \ No newline at end of file diff --git a/hyperparameter/n3/tabpfgen/tabpfgen-n3-20260505_031455/staged/public/test.csv b/hyperparameter/n3/tabpfgen/tabpfgen-n3-20260505_031455/staged/public/test.csv new file mode 100644 index 0000000000000000000000000000000000000000..db5cd50d3746410ea470625fa2ba2c8e9775cc0d --- /dev/null +++ b/hyperparameter/n3/tabpfgen/tabpfgen-n3-20260505_031455/staged/public/test.csv @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:19e107152a94432e2a37ff045c00cfe35e1be30208b1553080d7dd0ede256d3b +size 28944 diff --git a/hyperparameter/n3/tabpfgen/tabpfgen-n3-20260505_031455/staged/public/train.csv b/hyperparameter/n3/tabpfgen/tabpfgen-n3-20260505_031455/staged/public/train.csv new file mode 100644 index 0000000000000000000000000000000000000000..87ca26726fe82ccbaa397919305b043c17eb374e --- /dev/null +++ b/hyperparameter/n3/tabpfgen/tabpfgen-n3-20260505_031455/staged/public/train.csv @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:7813c8cca73ba4bfc6559215257b341c21e459980ad17ae6ddc809306bc9a0b9 +size 229945 diff --git a/hyperparameter/n3/tabpfgen/tabpfgen-n3-20260505_031455/staged/public/val.csv b/hyperparameter/n3/tabpfgen/tabpfgen-n3-20260505_031455/staged/public/val.csv new file mode 100644 index 0000000000000000000000000000000000000000..6acf84c76c47093b513c46d5503972a2dff275c0 --- /dev/null +++ b/hyperparameter/n3/tabpfgen/tabpfgen-n3-20260505_031455/staged/public/val.csv @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:cf5979d9675567d9d6642640c9b84fc6c49e492604144723c30f50516c05cee6 +size 28791 diff --git a/hyperparameter/n3/tabpfgen/tabpfgen-n3-20260505_031455/staged/tabpfgen/adapter_report.json b/hyperparameter/n3/tabpfgen/tabpfgen-n3-20260505_031455/staged/tabpfgen/adapter_report.json new file mode 100644 index 0000000000000000000000000000000000000000..6e6c67e8c1747f76713284ccb850de421a1a0aa6 --- /dev/null +++ b/hyperparameter/n3/tabpfgen/tabpfgen-n3-20260505_031455/staged/tabpfgen/adapter_report.json @@ -0,0 +1,7 @@ +{ + "adapter_ready_status": "pass", + "adapter_fail_reason_code": null, + "adapter_fail_detail": null, + "adapter_transforms_applied": [], + "model_input_manifest": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/n3/tabpfgen/tabpfgen-n3-20260505_031455/staged/tabpfgen/model_input_manifest.json" +} \ No newline at end of file diff --git a/hyperparameter/n3/tabpfgen/tabpfgen-n3-20260505_031455/staged/tabpfgen/adapter_transforms_applied.json b/hyperparameter/n3/tabpfgen/tabpfgen-n3-20260505_031455/staged/tabpfgen/adapter_transforms_applied.json new file mode 100644 index 0000000000000000000000000000000000000000..0637a088a01e8ddab3bf3fa98dbe804cbde1a0dc --- /dev/null +++ b/hyperparameter/n3/tabpfgen/tabpfgen-n3-20260505_031455/staged/tabpfgen/adapter_transforms_applied.json @@ -0,0 +1 @@ +[] \ No newline at end of file diff --git a/hyperparameter/n3/tabpfgen/tabpfgen-n3-20260505_031455/staged/tabpfgen/model_input_manifest.json b/hyperparameter/n3/tabpfgen/tabpfgen-n3-20260505_031455/staged/tabpfgen/model_input_manifest.json new file mode 100644 index 0000000000000000000000000000000000000000..e82bf935aa8d573350fa7bed4679cbb660ef65a2 --- /dev/null +++ b/hyperparameter/n3/tabpfgen/tabpfgen-n3-20260505_031455/staged/tabpfgen/model_input_manifest.json @@ -0,0 +1,266 @@ +{ + "dataset_id": "n3", + "model": "tabpfgen", + "target_column": "quality", + "task_type": "classification", + "column_schema": [ + { + "name": "fixed acidity", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 66, + "unique_ratio": 0.016845, + "example_values": [ + "7.1", + "8.5", + "6.4", + "6.8", + "7.6" + ] + } + }, + { + "name": "volatile acidity", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 121, + "unique_ratio": 0.030883, + "example_values": [ + "0.31", + "0.21", + "0.24", + "0.43", + "0.27" + ] + } + }, + { + "name": "citric acid", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 85, + "unique_ratio": 0.021695, + "example_values": [ + "0.17", + "0.41", + "0.31", + "0.25", + "0.3" + ] + } + }, + { + "name": "residual sugar", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 296, + "unique_ratio": 0.075549, + "example_values": [ + "1", + "4.3", + "2.8", + "13", + "12.9" + ] + } + }, + { + "name": "chlorides", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 147, + "unique_ratio": 0.037519, + "example_values": [ + "0.042", + "0.036", + "0.038", + "0.047", + "0.033" + ] + } + }, + { + "name": "free sulfur dioxide", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 120, + "unique_ratio": 0.030628, + "example_values": [ + "21", + "24", + "41", + "43", + "69" + ] + } + }, + { + "name": "total sulfur dioxide", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 244, + "unique_ratio": 0.062277, + "example_values": [ + "144", + "99", + "114", + "132", + "160" + ] + } + }, + { + "name": "density", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 839, + "unique_ratio": 0.21414, + "example_values": [ + "0.99304", + "0.9947", + "0.99155", + "0.98975", + "0.99705" + ] + } + }, + { + "name": "pH", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 100, + "unique_ratio": 0.025523, + "example_values": [ + "3.13", + "3.18", + "3.37", + "3.21", + "3.16" + ] + } + }, + { + "name": "sulphates", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 78, + "unique_ratio": 0.019908, + "example_values": [ + "0.4", + "0.53", + "0.66", + "0.47", + "0.5" + ] + } + }, + { + "name": "alcohol", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 97, + "unique_ratio": 0.024758, + "example_values": [ + "9.6", + "9.7", + "11.7", + "13.4", + "8.8" + ] + } + }, + { + "name": "quality", + "role": "target", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 7, + "unique_ratio": 0.001787, + "example_values": [ + "5", + "6", + "7", + "8", + "3" + ] + } + } + ], + "public_manifest": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/n3/tabpfgen/tabpfgen-n3-20260505_031455/public_gate/staged_input_manifest.json", + "train_csv": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/n3/tabpfgen/tabpfgen-n3-20260505_031455/staged/public/train.csv", + "val_csv": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/n3/tabpfgen/tabpfgen-n3-20260505_031455/staged/public/val.csv", + "test_csv": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/n3/tabpfgen/tabpfgen-n3-20260505_031455/staged/public/test.csv", + "features_json": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/n3/tabpfgen/tabpfgen-n3-20260505_031455/staged/public/staged_features.json", + "public_gate_report": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/n3/tabpfgen/tabpfgen-n3-20260505_031455/public_gate/public_gate_report.json" +} \ No newline at end of file diff --git a/hyperparameter/n3/tabpfgen/tabpfgen-n3-20260505_031455/tabpfgen-n3-3918-20260505_031455.csv b/hyperparameter/n3/tabpfgen/tabpfgen-n3-20260505_031455/tabpfgen-n3-3918-20260505_031455.csv new file mode 100644 index 0000000000000000000000000000000000000000..1685b60ed80b86c7fd6505527ca80557c4981661 --- /dev/null +++ b/hyperparameter/n3/tabpfgen/tabpfgen-n3-20260505_031455/tabpfgen-n3-3918-20260505_031455.csv @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:92c407ac2f14143fea48a2faf2e305bd2059284c72812aa25ae4d45a6223a19e +size 446256 diff --git a/hyperparameter/n3/tabpfgen/tabpfgen-n3-20260505_031455/tabpfgen_meta.json b/hyperparameter/n3/tabpfgen/tabpfgen-n3-20260505_031455/tabpfgen_meta.json new file mode 100644 index 0000000000000000000000000000000000000000..de1fca95b7a7dd9158e4f25104dd6719d0f023e2 --- /dev/null +++ b/hyperparameter/n3/tabpfgen/tabpfgen-n3-20260505_031455/tabpfgen_meta.json @@ -0,0 +1,9 @@ +{ + "csv_path": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/n3/tabpfgen/tabpfgen-n3-20260505_031455/staged/public/train.csv", + "json_path": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/n3/tabpfgen/tabpfgen-n3-20260505_031455/staged/public/staged_features.json", + "target_col": "quality", + "is_classification": true, + "task_type": "classification", + "n_rows": 3918, + "n_cols": 12 +} \ No newline at end of file diff --git a/hyperparameter/n3/tabpfgen/tabpfgen-n3-20260505_031455/train_20260505_031455.log b/hyperparameter/n3/tabpfgen/tabpfgen-n3-20260505_031455/train_20260505_031455.log new file mode 100644 index 0000000000000000000000000000000000000000..55b138a16e1bac82b359117c064947760741e214 --- /dev/null +++ b/hyperparameter/n3/tabpfgen/tabpfgen-n3-20260505_031455/train_20260505_031455.log @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:93ed99ac49745e2019fa06331263a9a9e4f30ad0ac4215247dcb64fcce94ab6e +size 595 diff --git a/hyperparameter/n3/tabsyn/tabsyn-n3-20260505_182933/_tabsyn_sample.py b/hyperparameter/n3/tabsyn/tabsyn-n3-20260505_182933/_tabsyn_sample.py new file mode 100644 index 0000000000000000000000000000000000000000..2e14d31073679496fd712a3246f2483f84986dc9 --- /dev/null +++ b/hyperparameter/n3/tabsyn/tabsyn-n3-20260505_182933/_tabsyn_sample.py @@ -0,0 +1,43 @@ +import os, sys, subprocess + +work_dir = "/work/output-Benchmark-trainonly-v1/n3/tabsyn/tabsyn-n3-20260505_182933" +dataname = "tabsyn_n3_tabsyn_n3_20260505_182933" +output_csv = "/work/output-Benchmark-trainonly-v1/n3/tabsyn/tabsyn-n3-20260505_182933/tabsyn-n3-3918-20260505_182945.csv" +tabsyn_root = "/workspace/tabsyn" + +assert os.path.exists(tabsyn_root), f"TabSyn source not mounted: {tabsyn_root}" + +old = os.environ.get("PYTHONPATH", "") +os.environ["PYTHONPATH"] = tabsyn_root + (os.pathsep + old if old else "") +sys.path.insert(0, tabsyn_root) + +os.chdir(tabsyn_root) + +# Ensure data symlink exists +data_link = os.path.join(tabsyn_root, "data", dataname) +data_src = os.path.join(work_dir, "data", dataname) +os.makedirs(os.path.join(tabsyn_root, "data"), exist_ok=True) +if os.path.exists(data_link): + os.remove(data_link) +os.symlink(data_src, data_link) + +print(f"[TabSyn] Sampling 3918 rows") +env = os.environ.copy() +env.setdefault("TABSYN_RESUME", "0") +env.setdefault("TABSYN_VAE_BATCH_SIZE", "32") +env.setdefault("TABSYN_VAE_EVAL_BATCH_SIZE", env["TABSYN_VAE_BATCH_SIZE"]) +env.setdefault("TABSYN_VAE_INFER_BATCH_SIZE", env["TABSYN_VAE_BATCH_SIZE"]) +env.setdefault("TABSYN_VAE_ENCODE_BATCH_SIZE", env["TABSYN_VAE_BATCH_SIZE"]) +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/hyperparameter/n3/tabsyn/tabsyn-n3-20260505_182933/_tabsyn_train.py b/hyperparameter/n3/tabsyn/tabsyn-n3-20260505_182933/_tabsyn_train.py new file mode 100644 index 0000000000000000000000000000000000000000..c05b5ef6cb70ba8c19ef2660e745ad48735777a0 --- /dev/null +++ b/hyperparameter/n3/tabsyn/tabsyn-n3-20260505_182933/_tabsyn_train.py @@ -0,0 +1,69 @@ +import os, sys, subprocess + +work_dir = "/work/output-Benchmark-trainonly-v1/n3/tabsyn/tabsyn-n3-20260505_182933" +dataname = "tabsyn_n3_tabsyn_n3_20260505_182933" +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", "0") +env.setdefault("TABSYN_VAE_BATCH_SIZE", "32") +env.setdefault("TABSYN_VAE_NUM_WORKERS", "0") +env.setdefault("TABSYN_VAE_EVAL_BATCH_SIZE", env["TABSYN_VAE_BATCH_SIZE"]) +env.setdefault("TABSYN_VAE_INFER_BATCH_SIZE", env["TABSYN_VAE_BATCH_SIZE"]) +env.setdefault("TABSYN_VAE_ENCODE_BATCH_SIZE", env["TABSYN_VAE_BATCH_SIZE"]) +# Safer defaults for wide tables on Docker: reduce shared-memory pressure in diffusion DataLoader. +env.setdefault("TABSYN_DIFFUSION_NUM_WORKERS", "0") +_te = None +if _te is not None: + env["TABSYN_VAE_EPOCHS"] = str(_te) + env["TABSYN_DIFFUSION_MAX_EPOCHS"] = str(max(_te + 1, 2)) + +# Data preprocessing is done on the host side (_prepare_data_dir) +# which creates .npy files, train/test CSVs, and info.json + +# Step 1: Train VAE (produces latent embeddings) +print(f"[TabSyn] Step 1/2: Training VAE in {tabsyn_root}, dataname={dataname}") +ret = subprocess.run( + [sys.executable, "main.py", + "--dataname", dataname, + "--mode", "train", + "--method", "vae", + "--gpu", "0"], + cwd=tabsyn_root, + env=env +) +if ret.returncode != 0: + print("[TabSyn] VAE training failed") + sys.exit(ret.returncode) + +# Step 2: Train diffusion model on latent space +print(f"[TabSyn] Step 2/2: Training diffusion model") +ret = subprocess.run( + [sys.executable, "main.py", + "--dataname", dataname, + "--mode", "train", + "--method", "tabsyn", + "--gpu", "0"], + cwd=tabsyn_root, + env=env +) +if ret.returncode != 0: + print("[TabSyn] Diffusion training failed") + sys.exit(ret.returncode) +print("[TabSyn] Training complete (VAE + Diffusion)") diff --git a/hyperparameter/n3/tabsyn/tabsyn-n3-20260505_182933/data/tabsyn_n3_tabsyn_n3_20260505_182933/X_cat_test.npy b/hyperparameter/n3/tabsyn/tabsyn-n3-20260505_182933/data/tabsyn_n3_tabsyn_n3_20260505_182933/X_cat_test.npy new file mode 100644 index 0000000000000000000000000000000000000000..24e2b0be40b07b6e79f803a82e6e38723e462320 --- /dev/null +++ b/hyperparameter/n3/tabsyn/tabsyn-n3-20260505_182933/data/tabsyn_n3_tabsyn_n3_20260505_182933/X_cat_test.npy @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:519697bb05272ccbf9fc4da2bd269c9eab90005e0671dad9ef2e5266215cdf67 +size 128 diff --git a/hyperparameter/n3/tabsyn/tabsyn-n3-20260505_182933/data/tabsyn_n3_tabsyn_n3_20260505_182933/X_cat_train.npy b/hyperparameter/n3/tabsyn/tabsyn-n3-20260505_182933/data/tabsyn_n3_tabsyn_n3_20260505_182933/X_cat_train.npy new file mode 100644 index 0000000000000000000000000000000000000000..24e2b0be40b07b6e79f803a82e6e38723e462320 --- /dev/null +++ b/hyperparameter/n3/tabsyn/tabsyn-n3-20260505_182933/data/tabsyn_n3_tabsyn_n3_20260505_182933/X_cat_train.npy @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:519697bb05272ccbf9fc4da2bd269c9eab90005e0671dad9ef2e5266215cdf67 +size 128 diff --git a/hyperparameter/n3/tabsyn/tabsyn-n3-20260505_182933/data/tabsyn_n3_tabsyn_n3_20260505_182933/X_num_test.npy b/hyperparameter/n3/tabsyn/tabsyn-n3-20260505_182933/data/tabsyn_n3_tabsyn_n3_20260505_182933/X_num_test.npy new file mode 100644 index 0000000000000000000000000000000000000000..94beb8413ef55592710518365965f4cb503523ee --- /dev/null +++ b/hyperparameter/n3/tabsyn/tabsyn-n3-20260505_182933/data/tabsyn_n3_tabsyn_n3_20260505_182933/X_num_test.npy @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:093d8f405d764277d5a007953f25ab6466f0857f71f0d8f3c437463fb5bf240a +size 172520 diff --git a/hyperparameter/n3/tabsyn/tabsyn-n3-20260505_182933/data/tabsyn_n3_tabsyn_n3_20260505_182933/X_num_train.npy b/hyperparameter/n3/tabsyn/tabsyn-n3-20260505_182933/data/tabsyn_n3_tabsyn_n3_20260505_182933/X_num_train.npy new file mode 100644 index 0000000000000000000000000000000000000000..94beb8413ef55592710518365965f4cb503523ee --- /dev/null +++ b/hyperparameter/n3/tabsyn/tabsyn-n3-20260505_182933/data/tabsyn_n3_tabsyn_n3_20260505_182933/X_num_train.npy @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:093d8f405d764277d5a007953f25ab6466f0857f71f0d8f3c437463fb5bf240a +size 172520 diff --git a/hyperparameter/n3/tabsyn/tabsyn-n3-20260505_182933/data/tabsyn_n3_tabsyn_n3_20260505_182933/info.json b/hyperparameter/n3/tabsyn/tabsyn-n3-20260505_182933/data/tabsyn_n3_tabsyn_n3_20260505_182933/info.json new file mode 100644 index 0000000000000000000000000000000000000000..daa671025995600862901a3d9b89b309d9cbd739 --- /dev/null +++ b/hyperparameter/n3/tabsyn/tabsyn-n3-20260505_182933/data/tabsyn_n3_tabsyn_n3_20260505_182933/info.json @@ -0,0 +1,138 @@ +{ + "name": "tabsyn_n3_tabsyn_n3_20260505_182933", + "task_type": "regression", + "n_num_features": 11, + "n_cat_features": 0, + "train_size": 3918, + "num_col_idx": [ + 0, + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10 + ], + "cat_col_idx": [], + "target_col_idx": [ + 11 + ], + "column_names": [ + "fixed acidity", + "volatile acidity", + "citric acid", + "residual sugar", + "chlorides", + "free sulfur dioxide", + "total sulfur dioxide", + "density", + "pH", + "sulphates", + "alcohol", + "quality" + ], + "train_num": 3918, + "test_num": 3918, + "header": 0, + "file_type": "csv", + "data_path": "data/tabsyn_n3_tabsyn_n3_20260505_182933/train.csv", + "test_path": null, + "idx_mapping": { + "0": 0, + "1": 1, + "2": 2, + "3": 3, + "4": 4, + "5": 5, + "6": 6, + "7": 7, + "8": 8, + "9": 9, + "10": 10, + "11": 11 + }, + "inverse_idx_mapping": { + "0": 0, + "1": 1, + "2": 2, + "3": 3, + "4": 4, + "5": 5, + "6": 6, + "7": 7, + "8": 8, + "9": 9, + "10": 10, + "11": 11 + }, + "idx_name_mapping": { + "0": "fixed acidity", + "1": "volatile acidity", + "2": "citric acid", + "3": "residual sugar", + "4": "chlorides", + "5": "free sulfur dioxide", + "6": "total sulfur dioxide", + "7": "density", + "8": "pH", + "9": "sulphates", + "10": "alcohol", + "11": "quality" + }, + "metadata": { + "columns": { + "0": { + "sdtype": "numerical", + "computer_representation": "Float" + }, + "1": { + "sdtype": "numerical", + "computer_representation": "Float" + }, + "2": { + "sdtype": "numerical", + "computer_representation": "Float" + }, + "3": { + "sdtype": "numerical", + "computer_representation": "Float" + }, + "4": { + "sdtype": "numerical", + "computer_representation": "Float" + }, + "5": { + "sdtype": "numerical", + "computer_representation": "Float" + }, + "6": { + "sdtype": "numerical", + "computer_representation": "Float" + }, + "7": { + "sdtype": "numerical", + "computer_representation": "Float" + }, + "8": { + "sdtype": "numerical", + "computer_representation": "Float" + }, + "9": { + "sdtype": "numerical", + "computer_representation": "Float" + }, + "10": { + "sdtype": "numerical", + "computer_representation": "Float" + }, + "11": { + "sdtype": "numerical", + "computer_representation": "Float" + } + } + } +} \ No newline at end of file diff --git a/hyperparameter/n3/tabsyn/tabsyn-n3-20260505_182933/data/tabsyn_n3_tabsyn_n3_20260505_182933/test.csv b/hyperparameter/n3/tabsyn/tabsyn-n3-20260505_182933/data/tabsyn_n3_tabsyn_n3_20260505_182933/test.csv new file mode 100644 index 0000000000000000000000000000000000000000..87ca26726fe82ccbaa397919305b043c17eb374e --- /dev/null +++ b/hyperparameter/n3/tabsyn/tabsyn-n3-20260505_182933/data/tabsyn_n3_tabsyn_n3_20260505_182933/test.csv @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:7813c8cca73ba4bfc6559215257b341c21e459980ad17ae6ddc809306bc9a0b9 +size 229945 diff --git a/hyperparameter/n3/tabsyn/tabsyn-n3-20260505_182933/data/tabsyn_n3_tabsyn_n3_20260505_182933/train.csv b/hyperparameter/n3/tabsyn/tabsyn-n3-20260505_182933/data/tabsyn_n3_tabsyn_n3_20260505_182933/train.csv new file mode 100644 index 0000000000000000000000000000000000000000..87ca26726fe82ccbaa397919305b043c17eb374e --- /dev/null +++ b/hyperparameter/n3/tabsyn/tabsyn-n3-20260505_182933/data/tabsyn_n3_tabsyn_n3_20260505_182933/train.csv @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:7813c8cca73ba4bfc6559215257b341c21e459980ad17ae6ddc809306bc9a0b9 +size 229945 diff --git a/hyperparameter/n3/tabsyn/tabsyn-n3-20260505_182933/data/tabsyn_n3_tabsyn_n3_20260505_182933/y_test.npy b/hyperparameter/n3/tabsyn/tabsyn-n3-20260505_182933/data/tabsyn_n3_tabsyn_n3_20260505_182933/y_test.npy new file mode 100644 index 0000000000000000000000000000000000000000..59571a153fb0a2e415acb8f1ffcbb54e325414c6 --- /dev/null +++ b/hyperparameter/n3/tabsyn/tabsyn-n3-20260505_182933/data/tabsyn_n3_tabsyn_n3_20260505_182933/y_test.npy @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:1418131d428e1f98200104123714677e9ab4a2b8279082a63a1d663f7f09bb84 +size 31472 diff --git a/hyperparameter/n3/tabsyn/tabsyn-n3-20260505_182933/data/tabsyn_n3_tabsyn_n3_20260505_182933/y_train.npy b/hyperparameter/n3/tabsyn/tabsyn-n3-20260505_182933/data/tabsyn_n3_tabsyn_n3_20260505_182933/y_train.npy new file mode 100644 index 0000000000000000000000000000000000000000..59571a153fb0a2e415acb8f1ffcbb54e325414c6 --- /dev/null +++ b/hyperparameter/n3/tabsyn/tabsyn-n3-20260505_182933/data/tabsyn_n3_tabsyn_n3_20260505_182933/y_train.npy @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:1418131d428e1f98200104123714677e9ab4a2b8279082a63a1d663f7f09bb84 +size 31472 diff --git a/hyperparameter/n3/tabsyn/tabsyn-n3-20260505_182933/gen_20260505_182945.log b/hyperparameter/n3/tabsyn/tabsyn-n3-20260505_182933/gen_20260505_182945.log new file mode 100644 index 0000000000000000000000000000000000000000..494929b5c1804960f2a048a6107ef56a0dd6079f --- /dev/null +++ b/hyperparameter/n3/tabsyn/tabsyn-n3-20260505_182933/gen_20260505_182945.log @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:e4320ae06aed6db79c1bf58117f94db4221a000f9b1823b4a6d0ca0fec664882 +size 930 diff --git a/hyperparameter/n3/tabsyn/tabsyn-n3-20260505_182933/input_snapshot.json b/hyperparameter/n3/tabsyn/tabsyn-n3-20260505_182933/input_snapshot.json new file mode 100644 index 0000000000000000000000000000000000000000..35dea6fbed02718a51165764efffea61dcb428e5 --- /dev/null +++ b/hyperparameter/n3/tabsyn/tabsyn-n3-20260505_182933/input_snapshot.json @@ -0,0 +1,36 @@ +{ + "dataset_id": "n3", + "model": "tabsyn", + "inputs": { + "train_csv": { + "path": "/data/jialinzhang/SynthesizePipeline-server/DatasetNew/n3/n3-train.csv", + "exists": true, + "size": 211519, + "sha256": "2160a06db2fea02adb0ebb79d8d853bd2544580be301e71f6e8deeb1489a9009" + }, + "val_csv": { + "path": "/data/jialinzhang/SynthesizePipeline-server/DatasetNew/n3/n3-val.csv", + "exists": true, + "size": 26499, + "sha256": "d5ccfee07dfa9e7bdee5bb87642b43828e09f74c6cc0266a3d19d9feaa83106e" + }, + "test_csv": { + "path": "/data/jialinzhang/SynthesizePipeline-server/DatasetNew/n3/n3-test.csv", + "exists": true, + "size": 26676, + "sha256": "6f83aacb0d1747b95e287352a7fff5d9d65a1c127b773852346c68485c4ede47" + }, + "profile_json": { + "path": "/data/jialinzhang/SynthesizePipeline-server/DatasetNew/artifacts/data_core/tabular/n3/n3-dataset_profile.json", + "exists": true, + "size": 5235, + "sha256": "23d2e5904a2ca90cbf8d6e3c75887681721e9b90cc705c31a680c11513d0c46f" + }, + "contract_json": { + "path": "/data/jialinzhang/SynthesizePipeline-server/DatasetNew/artifacts/data_core/tabular/n3/n3-dataset_contract_v1.json", + "exists": true, + "size": 6281, + "sha256": "c0cc56f5fe28e1b65927255c6e3c2b0e9479862c2ec6f2fea1664da36c9a3a09" + } + } +} \ No newline at end of file diff --git a/hyperparameter/n3/tabsyn/tabsyn-n3-20260505_182933/public_gate/normalized_schema_snapshot.json b/hyperparameter/n3/tabsyn/tabsyn-n3-20260505_182933/public_gate/normalized_schema_snapshot.json new file mode 100644 index 0000000000000000000000000000000000000000..c41fe304503de23190a02e6cbfafa35b3bf134d3 --- /dev/null +++ b/hyperparameter/n3/tabsyn/tabsyn-n3-20260505_182933/public_gate/normalized_schema_snapshot.json @@ -0,0 +1,259 @@ +{ + "dataset_id": "n3", + "target_column": "quality", + "task_type": "classification", + "columns": [ + { + "name": "fixed acidity", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 66, + "unique_ratio": 0.016845, + "example_values": [ + "7.1", + "8.5", + "6.4", + "6.8", + "7.6" + ] + } + }, + { + "name": "volatile acidity", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 121, + "unique_ratio": 0.030883, + "example_values": [ + "0.31", + "0.21", + "0.24", + "0.43", + "0.27" + ] + } + }, + { + "name": "citric acid", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 85, + "unique_ratio": 0.021695, + "example_values": [ + "0.17", + "0.41", + "0.31", + "0.25", + "0.3" + ] + } + }, + { + "name": "residual sugar", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 296, + "unique_ratio": 0.075549, + "example_values": [ + "1", + "4.3", + "2.8", + "13", + "12.9" + ] + } + }, + { + "name": "chlorides", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 147, + "unique_ratio": 0.037519, + "example_values": [ + "0.042", + "0.036", + "0.038", + "0.047", + "0.033" + ] + } + }, + { + "name": "free sulfur dioxide", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 120, + "unique_ratio": 0.030628, + "example_values": [ + "21", + "24", + "41", + "43", + "69" + ] + } + }, + { + "name": "total sulfur dioxide", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 244, + "unique_ratio": 0.062277, + "example_values": [ + "144", + "99", + "114", + "132", + "160" + ] + } + }, + { + "name": "density", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 839, + "unique_ratio": 0.21414, + "example_values": [ + "0.99304", + "0.9947", + "0.99155", + "0.98975", + "0.99705" + ] + } + }, + { + "name": "pH", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 100, + "unique_ratio": 0.025523, + "example_values": [ + "3.13", + "3.18", + "3.37", + "3.21", + "3.16" + ] + } + }, + { + "name": "sulphates", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 78, + "unique_ratio": 0.019908, + "example_values": [ + "0.4", + "0.53", + "0.66", + "0.47", + "0.5" + ] + } + }, + { + "name": "alcohol", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 97, + "unique_ratio": 0.024758, + "example_values": [ + "9.6", + "9.7", + "11.7", + "13.4", + "8.8" + ] + } + }, + { + "name": "quality", + "role": "target", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 7, + "unique_ratio": 0.001787, + "example_values": [ + "5", + "6", + "7", + "8", + "3" + ] + } + } + ] +} \ No newline at end of file diff --git a/hyperparameter/n3/tabsyn/tabsyn-n3-20260505_182933/public_gate/public_gate_report.json b/hyperparameter/n3/tabsyn/tabsyn-n3-20260505_182933/public_gate/public_gate_report.json new file mode 100644 index 0000000000000000000000000000000000000000..93b97319f739e39079d6c6549fd2020f8a6dac25 --- /dev/null +++ b/hyperparameter/n3/tabsyn/tabsyn-n3-20260505_182933/public_gate/public_gate_report.json @@ -0,0 +1,37 @@ +{ + "dataset_id": "n3", + "status": "pass", + "checks": [ + { + "check_id": "PG001_csv_parse_ok", + "status": "pass" + }, + { + "check_id": "PG002_split_header_consistent", + "status": "pass" + }, + { + "check_id": "PG003_profile_header_match", + "status": "pass" + }, + { + "check_id": "PG004_missing_token_normalized", + "status": "pass" + }, + { + "check_id": "PG005_semantic_type_validated", + "status": "pass" + }, + { + "check_id": "PG006_target_defined_and_valid", + "status": "pass" + } + ], + "target_column": "quality", + "task_type": "classification", + "input_splits": { + "train": "/data/jialinzhang/SynthesizePipeline-server/DatasetNew/n3/n3-train.csv", + "val": "/data/jialinzhang/SynthesizePipeline-server/DatasetNew/n3/n3-val.csv", + "test": "/data/jialinzhang/SynthesizePipeline-server/DatasetNew/n3/n3-test.csv" + } +} \ No newline at end of file diff --git a/hyperparameter/n3/tabsyn/tabsyn-n3-20260505_182933/public_gate/staged_input_manifest.json b/hyperparameter/n3/tabsyn/tabsyn-n3-20260505_182933/public_gate/staged_input_manifest.json new file mode 100644 index 0000000000000000000000000000000000000000..e693484ceebf4f15bad7625fd1b0ac18ae9c5321 --- /dev/null +++ b/hyperparameter/n3/tabsyn/tabsyn-n3-20260505_182933/public_gate/staged_input_manifest.json @@ -0,0 +1,264 @@ +{ + "dataset_id": "n3", + "target_column": "quality", + "task_type": "classification", + "train_csv": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/n3/tabsyn/tabsyn-n3-20260505_182933/staged/public/train.csv", + "val_csv": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/n3/tabsyn/tabsyn-n3-20260505_182933/staged/public/val.csv", + "test_csv": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/n3/tabsyn/tabsyn-n3-20260505_182933/staged/public/test.csv", + "features_json": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/n3/tabsyn/tabsyn-n3-20260505_182933/staged/public/staged_features.json", + "public_gate_report": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/n3/tabsyn/tabsyn-n3-20260505_182933/public_gate/public_gate_report.json", + "column_schema": [ + { + "name": "fixed acidity", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 66, + "unique_ratio": 0.016845, + "example_values": [ + "7.1", + "8.5", + "6.4", + "6.8", + "7.6" + ] + } + }, + { + "name": "volatile acidity", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 121, + "unique_ratio": 0.030883, + "example_values": [ + "0.31", + "0.21", + "0.24", + "0.43", + "0.27" + ] + } + }, + { + "name": "citric acid", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 85, + "unique_ratio": 0.021695, + "example_values": [ + "0.17", + "0.41", + "0.31", + "0.25", + "0.3" + ] + } + }, + { + "name": "residual sugar", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 296, + "unique_ratio": 0.075549, + "example_values": [ + "1", + "4.3", + "2.8", + "13", + "12.9" + ] + } + }, + { + "name": "chlorides", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 147, + "unique_ratio": 0.037519, + "example_values": [ + "0.042", + "0.036", + "0.038", + "0.047", + "0.033" + ] + } + }, + { + "name": "free sulfur dioxide", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 120, + "unique_ratio": 0.030628, + "example_values": [ + "21", + "24", + "41", + "43", + "69" + ] + } + }, + { + "name": "total sulfur dioxide", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 244, + "unique_ratio": 0.062277, + "example_values": [ + "144", + "99", + "114", + "132", + "160" + ] + } + }, + { + "name": "density", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 839, + "unique_ratio": 0.21414, + "example_values": [ + "0.99304", + "0.9947", + "0.99155", + "0.98975", + "0.99705" + ] + } + }, + { + "name": "pH", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 100, + "unique_ratio": 0.025523, + "example_values": [ + "3.13", + "3.18", + "3.37", + "3.21", + "3.16" + ] + } + }, + { + "name": "sulphates", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 78, + "unique_ratio": 0.019908, + "example_values": [ + "0.4", + "0.53", + "0.66", + "0.47", + "0.5" + ] + } + }, + { + "name": "alcohol", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 97, + "unique_ratio": 0.024758, + "example_values": [ + "9.6", + "9.7", + "11.7", + "13.4", + "8.8" + ] + } + }, + { + "name": "quality", + "role": "target", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 7, + "unique_ratio": 0.001787, + "example_values": [ + "5", + "6", + "7", + "8", + "3" + ] + } + } + ] +} \ No newline at end of file diff --git a/hyperparameter/n3/tabsyn/tabsyn-n3-20260505_182933/run_config.json b/hyperparameter/n3/tabsyn/tabsyn-n3-20260505_182933/run_config.json new file mode 100644 index 0000000000000000000000000000000000000000..24d3983d12e6e7f52d174b75c2eb7b7de07068cd --- /dev/null +++ b/hyperparameter/n3/tabsyn/tabsyn-n3-20260505_182933/run_config.json @@ -0,0 +1,49 @@ +{ + "schema_version": 1, + "recorded_at": "2026-05-05T18:29:33", + "dataset_id": "n3", + "model": "tabsyn", + "work_dir": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/n3/tabsyn/tabsyn-n3-20260505_182933", + "dataset_source_requested": "new", + "dataset_source_resolved": "new", + "cli_args": { + "model": "tabsyn", + "dataset": "n3", + "dataset_source": "new", + "train": true, + "generate": true, + "num_rows": 0, + "epochs": null, + "output_dir": null, + "model_dir": null, + "work_dir": null, + "resume": false, + "no_stats": false + }, + "resolved": { + "num_rows": 3918, + "model_path": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/n3/tabsyn/tabsyn-n3-20260505_182933", + "output_csv": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/n3/tabsyn/tabsyn-n3-20260505_182933/tabsyn-n3-3918-20260505_182945.csv" + }, + "input_artifacts": { + "public_gate_report": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/n3/tabsyn/tabsyn-n3-20260505_182933/public_gate/public_gate_report.json", + "public_manifest": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/n3/tabsyn/tabsyn-n3-20260505_182933/public_gate/staged_input_manifest.json", + "model_manifest": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/n3/tabsyn/tabsyn-n3-20260505_182933/staged/tabsyn/model_input_manifest.json", + "train_csv": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/n3/tabsyn/tabsyn-n3-20260505_182933/staged/public/train.csv", + "features_json": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/n3/tabsyn/tabsyn-n3-20260505_182933/staged/public/staged_features.json", + "target_column": "quality", + "task_type": "classification" + }, + "env_overrides": { + "BENCHMARK_TABSYN_GPUS": "device=3", + "TABSYN_DIFFUSION_MAX_EPOCHS": "3", + "TABSYN_DIFFUSION_NUM_WORKERS": "0", + "TABSYN_RESUME": "0", + "TABSYN_VAE_BATCH_SIZE": "128", + "TABSYN_VAE_ENCODE_BATCH_SIZE": "256", + "TABSYN_VAE_EPOCHS": "3", + "TABSYN_VAE_EVAL_BATCH_SIZE": "256", + "TABSYN_VAE_INFER_BATCH_SIZE": "256", + "TABSYN_VAE_NUM_WORKERS": "0" + } +} \ No newline at end of file diff --git a/hyperparameter/n3/tabsyn/tabsyn-n3-20260505_182933/runtime_result.json b/hyperparameter/n3/tabsyn/tabsyn-n3-20260505_182933/runtime_result.json new file mode 100644 index 0000000000000000000000000000000000000000..92588e4d8d148970066da94a9f820dd6b0853f64 --- /dev/null +++ b/hyperparameter/n3/tabsyn/tabsyn-n3-20260505_182933/runtime_result.json @@ -0,0 +1,27 @@ +{ + "dataset_id": "n3", + "model": "tabsyn", + "run_id": "tabsyn-n3-20260505_182933", + "public_gate_status": "pass", + "adapter_ready_status": "pass", + "train_status": "success", + "generate_status": "success", + "reason_code": null, + "reason_detail": null, + "artifacts": { + "synthetic_csv": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/n3/tabsyn/tabsyn-n3-20260505_182933/tabsyn-n3-3918-20260505_182945.csv", + "model_path": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/n3/tabsyn/tabsyn-n3-20260505_182933" + }, + "timings": { + "train": { + "started_at": "2026-05-05T18:29:33", + "ended_at": "2026-05-05T18:29:45", + "duration_sec": 12.014 + }, + "generate": { + "started_at": "2026-05-05T18:29:45", + "ended_at": "2026-05-05T18:29:51", + "duration_sec": 5.274 + } + } +} \ No newline at end of file diff --git a/hyperparameter/n3/tabsyn/tabsyn-n3-20260505_182933/staged/public/staged_features.json b/hyperparameter/n3/tabsyn/tabsyn-n3-20260505_182933/staged/public/staged_features.json new file mode 100644 index 0000000000000000000000000000000000000000..08fe4d766d091d2f2ddba724a16b9509cbe4c390 --- /dev/null +++ b/hyperparameter/n3/tabsyn/tabsyn-n3-20260505_182933/staged/public/staged_features.json @@ -0,0 +1,62 @@ +[ + { + "feature_name": "fixed acidity", + "data_type": "continuous", + "is_target": false + }, + { + "feature_name": "volatile acidity", + "data_type": "continuous", + "is_target": false + }, + { + "feature_name": "citric acid", + "data_type": "continuous", + "is_target": false + }, + { + "feature_name": "residual sugar", + "data_type": "continuous", + "is_target": false + }, + { + "feature_name": "chlorides", + "data_type": "continuous", + "is_target": false + }, + { + "feature_name": "free sulfur dioxide", + "data_type": "continuous", + "is_target": false + }, + { + "feature_name": "total sulfur dioxide", + "data_type": "continuous", + "is_target": false + }, + { + "feature_name": "density", + "data_type": "continuous", + "is_target": false + }, + { + "feature_name": "pH", + "data_type": "continuous", + "is_target": false + }, + { + "feature_name": "sulphates", + "data_type": "continuous", + "is_target": false + }, + { + "feature_name": "alcohol", + "data_type": "continuous", + "is_target": false + }, + { + "feature_name": "quality", + "data_type": "continuous", + "is_target": true + } +] \ No newline at end of file diff --git a/hyperparameter/n3/tabsyn/tabsyn-n3-20260505_182933/staged/public/test.csv b/hyperparameter/n3/tabsyn/tabsyn-n3-20260505_182933/staged/public/test.csv new file mode 100644 index 0000000000000000000000000000000000000000..db5cd50d3746410ea470625fa2ba2c8e9775cc0d --- /dev/null +++ b/hyperparameter/n3/tabsyn/tabsyn-n3-20260505_182933/staged/public/test.csv @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:19e107152a94432e2a37ff045c00cfe35e1be30208b1553080d7dd0ede256d3b +size 28944 diff --git a/hyperparameter/n3/tabsyn/tabsyn-n3-20260505_182933/staged/public/train.csv b/hyperparameter/n3/tabsyn/tabsyn-n3-20260505_182933/staged/public/train.csv new file mode 100644 index 0000000000000000000000000000000000000000..87ca26726fe82ccbaa397919305b043c17eb374e --- /dev/null +++ b/hyperparameter/n3/tabsyn/tabsyn-n3-20260505_182933/staged/public/train.csv @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:7813c8cca73ba4bfc6559215257b341c21e459980ad17ae6ddc809306bc9a0b9 +size 229945 diff --git a/hyperparameter/n3/tabsyn/tabsyn-n3-20260505_182933/staged/public/val.csv b/hyperparameter/n3/tabsyn/tabsyn-n3-20260505_182933/staged/public/val.csv new file mode 100644 index 0000000000000000000000000000000000000000..6acf84c76c47093b513c46d5503972a2dff275c0 --- /dev/null +++ b/hyperparameter/n3/tabsyn/tabsyn-n3-20260505_182933/staged/public/val.csv @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:cf5979d9675567d9d6642640c9b84fc6c49e492604144723c30f50516c05cee6 +size 28791 diff --git a/hyperparameter/n3/tabsyn/tabsyn-n3-20260505_182933/staged/tabsyn/adapter_report.json b/hyperparameter/n3/tabsyn/tabsyn-n3-20260505_182933/staged/tabsyn/adapter_report.json new file mode 100644 index 0000000000000000000000000000000000000000..fb2ae7f497635b9846ab3a0f1b78b57d4a7bb518 --- /dev/null +++ b/hyperparameter/n3/tabsyn/tabsyn-n3-20260505_182933/staged/tabsyn/adapter_report.json @@ -0,0 +1,7 @@ +{ + "adapter_ready_status": "pass", + "adapter_fail_reason_code": null, + "adapter_fail_detail": null, + "adapter_transforms_applied": [], + "model_input_manifest": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/n3/tabsyn/tabsyn-n3-20260505_182933/staged/tabsyn/model_input_manifest.json" +} \ No newline at end of file diff --git a/hyperparameter/n3/tabsyn/tabsyn-n3-20260505_182933/staged/tabsyn/adapter_transforms_applied.json b/hyperparameter/n3/tabsyn/tabsyn-n3-20260505_182933/staged/tabsyn/adapter_transforms_applied.json new file mode 100644 index 0000000000000000000000000000000000000000..0637a088a01e8ddab3bf3fa98dbe804cbde1a0dc --- /dev/null +++ b/hyperparameter/n3/tabsyn/tabsyn-n3-20260505_182933/staged/tabsyn/adapter_transforms_applied.json @@ -0,0 +1 @@ +[] \ No newline at end of file diff --git a/hyperparameter/n3/tabsyn/tabsyn-n3-20260505_182933/staged/tabsyn/model_input_manifest.json b/hyperparameter/n3/tabsyn/tabsyn-n3-20260505_182933/staged/tabsyn/model_input_manifest.json new file mode 100644 index 0000000000000000000000000000000000000000..99e4249e45bae1e54fd0bce6e7a0047f41f3577e --- /dev/null +++ b/hyperparameter/n3/tabsyn/tabsyn-n3-20260505_182933/staged/tabsyn/model_input_manifest.json @@ -0,0 +1,266 @@ +{ + "dataset_id": "n3", + "model": "tabsyn", + "target_column": "quality", + "task_type": "classification", + "column_schema": [ + { + "name": "fixed acidity", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 66, + "unique_ratio": 0.016845, + "example_values": [ + "7.1", + "8.5", + "6.4", + "6.8", + "7.6" + ] + } + }, + { + "name": "volatile acidity", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 121, + "unique_ratio": 0.030883, + "example_values": [ + "0.31", + "0.21", + "0.24", + "0.43", + "0.27" + ] + } + }, + { + "name": "citric acid", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 85, + "unique_ratio": 0.021695, + "example_values": [ + "0.17", + "0.41", + "0.31", + "0.25", + "0.3" + ] + } + }, + { + "name": "residual sugar", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 296, + "unique_ratio": 0.075549, + "example_values": [ + "1", + "4.3", + "2.8", + "13", + "12.9" + ] + } + }, + { + "name": "chlorides", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 147, + "unique_ratio": 0.037519, + "example_values": [ + "0.042", + "0.036", + "0.038", + "0.047", + "0.033" + ] + } + }, + { + "name": "free sulfur dioxide", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 120, + "unique_ratio": 0.030628, + "example_values": [ + "21", + "24", + "41", + "43", + "69" + ] + } + }, + { + "name": "total sulfur dioxide", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 244, + "unique_ratio": 0.062277, + "example_values": [ + "144", + "99", + "114", + "132", + "160" + ] + } + }, + { + "name": "density", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 839, + "unique_ratio": 0.21414, + "example_values": [ + "0.99304", + "0.9947", + "0.99155", + "0.98975", + "0.99705" + ] + } + }, + { + "name": "pH", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 100, + "unique_ratio": 0.025523, + "example_values": [ + "3.13", + "3.18", + "3.37", + "3.21", + "3.16" + ] + } + }, + { + "name": "sulphates", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 78, + "unique_ratio": 0.019908, + "example_values": [ + "0.4", + "0.53", + "0.66", + "0.47", + "0.5" + ] + } + }, + { + "name": "alcohol", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 97, + "unique_ratio": 0.024758, + "example_values": [ + "9.6", + "9.7", + "11.7", + "13.4", + "8.8" + ] + } + }, + { + "name": "quality", + "role": "target", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 7, + "unique_ratio": 0.001787, + "example_values": [ + "5", + "6", + "7", + "8", + "3" + ] + } + } + ], + "public_manifest": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/n3/tabsyn/tabsyn-n3-20260505_182933/public_gate/staged_input_manifest.json", + "train_csv": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/n3/tabsyn/tabsyn-n3-20260505_182933/staged/public/train.csv", + "val_csv": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/n3/tabsyn/tabsyn-n3-20260505_182933/staged/public/val.csv", + "test_csv": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/n3/tabsyn/tabsyn-n3-20260505_182933/staged/public/test.csv", + "features_json": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/n3/tabsyn/tabsyn-n3-20260505_182933/staged/public/staged_features.json", + "public_gate_report": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/n3/tabsyn/tabsyn-n3-20260505_182933/public_gate/public_gate_report.json" +} \ No newline at end of file diff --git a/hyperparameter/n3/tabsyn/tabsyn-n3-20260505_182933/synthetic/tabsyn_n3_tabsyn_n3_20260505_182933/real.csv b/hyperparameter/n3/tabsyn/tabsyn-n3-20260505_182933/synthetic/tabsyn_n3_tabsyn_n3_20260505_182933/real.csv new file mode 100644 index 0000000000000000000000000000000000000000..87ca26726fe82ccbaa397919305b043c17eb374e --- /dev/null +++ b/hyperparameter/n3/tabsyn/tabsyn-n3-20260505_182933/synthetic/tabsyn_n3_tabsyn_n3_20260505_182933/real.csv @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:7813c8cca73ba4bfc6559215257b341c21e459980ad17ae6ddc809306bc9a0b9 +size 229945 diff --git a/hyperparameter/n3/tabsyn/tabsyn-n3-20260505_182933/synthetic/tabsyn_n3_tabsyn_n3_20260505_182933/test.csv b/hyperparameter/n3/tabsyn/tabsyn-n3-20260505_182933/synthetic/tabsyn_n3_tabsyn_n3_20260505_182933/test.csv new file mode 100644 index 0000000000000000000000000000000000000000..87ca26726fe82ccbaa397919305b043c17eb374e --- /dev/null +++ b/hyperparameter/n3/tabsyn/tabsyn-n3-20260505_182933/synthetic/tabsyn_n3_tabsyn_n3_20260505_182933/test.csv @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:7813c8cca73ba4bfc6559215257b341c21e459980ad17ae6ddc809306bc9a0b9 +size 229945 diff --git a/hyperparameter/n3/tabsyn/tabsyn-n3-20260505_182933/tabsyn-n3-3918-20260505_182945.csv b/hyperparameter/n3/tabsyn/tabsyn-n3-20260505_182933/tabsyn-n3-3918-20260505_182945.csv new file mode 100644 index 0000000000000000000000000000000000000000..2bcbbb4fcb1710a133024ba68a9845c3de8fe442 --- /dev/null +++ b/hyperparameter/n3/tabsyn/tabsyn-n3-20260505_182933/tabsyn-n3-3918-20260505_182945.csv @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:e040d2f35513c67aba1d570baa6b459174987906c9a677945cd68c23a9fc9170 +size 383342 diff --git a/hyperparameter/n3/tabsyn/tabsyn-n3-20260505_182933/tabsyn_ckpt/diffusion/tabsyn_n3_tabsyn_n3_20260505_182933/model.pt b/hyperparameter/n3/tabsyn/tabsyn-n3-20260505_182933/tabsyn_ckpt/diffusion/tabsyn_n3_tabsyn_n3_20260505_182933/model.pt new file mode 100644 index 0000000000000000000000000000000000000000..548ccfc9bdebf0c5a21be4bd57e4868a0312bf1c --- /dev/null +++ b/hyperparameter/n3/tabsyn/tabsyn-n3-20260505_182933/tabsyn_ckpt/diffusion/tabsyn_n3_tabsyn_n3_20260505_182933/model.pt @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:edbb5974f5b739392420c95b73659eb334402b4a286d35aa7185574350f68f43 +size 42374609 diff --git a/hyperparameter/n3/tabsyn/tabsyn-n3-20260505_182933/tabsyn_ckpt/diffusion/tabsyn_n3_tabsyn_n3_20260505_182933/model_0.pt b/hyperparameter/n3/tabsyn/tabsyn-n3-20260505_182933/tabsyn_ckpt/diffusion/tabsyn_n3_tabsyn_n3_20260505_182933/model_0.pt new file mode 100644 index 0000000000000000000000000000000000000000..dba3ca51cb595ffb55f5881fcf16c40ddb799634 --- /dev/null +++ b/hyperparameter/n3/tabsyn/tabsyn-n3-20260505_182933/tabsyn_ckpt/diffusion/tabsyn_n3_tabsyn_n3_20260505_182933/model_0.pt @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:953614f32cdfdffc1ab1591b518ecb3a44e79c34db3a900e6a2c4b1bec251561 +size 42374969 diff --git a/hyperparameter/n3/tabsyn/tabsyn-n3-20260505_182933/tabsyn_ckpt/vae/tabsyn_n3_tabsyn_n3_20260505_182933/decoder.pt b/hyperparameter/n3/tabsyn/tabsyn-n3-20260505_182933/tabsyn_ckpt/vae/tabsyn_n3_tabsyn_n3_20260505_182933/decoder.pt new file mode 100644 index 0000000000000000000000000000000000000000..4756b47c8dcfe5b5c9f0340ac2a7823c5b8fb6f7 --- /dev/null +++ b/hyperparameter/n3/tabsyn/tabsyn-n3-20260505_182933/tabsyn_ckpt/vae/tabsyn_n3_tabsyn_n3_20260505_182933/decoder.pt @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:4c357c932208afe4022d6c895c4db8362b7c44cbfe4d7979e5649c5a04d26b00 +size 21318 diff --git a/hyperparameter/n3/tabsyn/tabsyn-n3-20260505_182933/tabsyn_ckpt/vae/tabsyn_n3_tabsyn_n3_20260505_182933/encoder.pt b/hyperparameter/n3/tabsyn/tabsyn-n3-20260505_182933/tabsyn_ckpt/vae/tabsyn_n3_tabsyn_n3_20260505_182933/encoder.pt new file mode 100644 index 0000000000000000000000000000000000000000..51f76287f8716323c4a619e0c3c2f19284d3c1f0 --- /dev/null +++ b/hyperparameter/n3/tabsyn/tabsyn-n3-20260505_182933/tabsyn_ckpt/vae/tabsyn_n3_tabsyn_n3_20260505_182933/encoder.pt @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:8ba853f515de5ed49c9de44362c869f7a6d5b174ae5804e6180ba2bdb9580fca +size 22525 diff --git a/hyperparameter/n3/tabsyn/tabsyn-n3-20260505_182933/tabsyn_ckpt/vae/tabsyn_n3_tabsyn_n3_20260505_182933/model.pt b/hyperparameter/n3/tabsyn/tabsyn-n3-20260505_182933/tabsyn_ckpt/vae/tabsyn_n3_tabsyn_n3_20260505_182933/model.pt new file mode 100644 index 0000000000000000000000000000000000000000..5c8c90d89cba4f62e7ae26a2cbb0f5adb8cdae5e --- /dev/null +++ b/hyperparameter/n3/tabsyn/tabsyn-n3-20260505_182933/tabsyn_ckpt/vae/tabsyn_n3_tabsyn_n3_20260505_182933/model.pt @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:24c2bbec11336d9bf8559e75c7cb01024855686265d2058df169413831339442 +size 62012 diff --git a/hyperparameter/n3/tabsyn/tabsyn-n3-20260505_182933/tabsyn_ckpt/vae/tabsyn_n3_tabsyn_n3_20260505_182933/train_z.npy b/hyperparameter/n3/tabsyn/tabsyn-n3-20260505_182933/tabsyn_ckpt/vae/tabsyn_n3_tabsyn_n3_20260505_182933/train_z.npy new file mode 100644 index 0000000000000000000000000000000000000000..fa8b6822488a8ccaa0fc273162e6406de482de64 --- /dev/null +++ b/hyperparameter/n3/tabsyn/tabsyn-n3-20260505_182933/tabsyn_ckpt/vae/tabsyn_n3_tabsyn_n3_20260505_182933/train_z.npy @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:40c85a18ef21e66a2e3fb08a0babed3540290f9514a580c32d3331448e003257 +size 815072 diff --git a/hyperparameter/n3/tabsyn/tabsyn-n3-20260505_182933/train_20260505_182933.log b/hyperparameter/n3/tabsyn/tabsyn-n3-20260505_182933/train_20260505_182933.log new file mode 100644 index 0000000000000000000000000000000000000000..6957a69e8ea2a312d4f6438f423f643d3548dd4f --- /dev/null +++ b/hyperparameter/n3/tabsyn/tabsyn-n3-20260505_182933/train_20260505_182933.log @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:733765734112c85c1020ad22ca8181bff3d5645f25af845ebd9c8f592b7aded3 +size 4584 diff --git a/hyperparameter/n3/tabsyn/tabsyn-n3-20260505_183003/_tabsyn_sample.py b/hyperparameter/n3/tabsyn/tabsyn-n3-20260505_183003/_tabsyn_sample.py new file mode 100644 index 0000000000000000000000000000000000000000..c8e0508357378832871c1265bd82333b59fef093 --- /dev/null +++ b/hyperparameter/n3/tabsyn/tabsyn-n3-20260505_183003/_tabsyn_sample.py @@ -0,0 +1,43 @@ +import os, sys, subprocess + +work_dir = "/work/output-Benchmark-trainonly-v1/n3/tabsyn/tabsyn-n3-20260505_183003" +dataname = "tabsyn_n3_tabsyn_n3_20260505_183003" +output_csv = "/work/output-Benchmark-trainonly-v1/n3/tabsyn/tabsyn-n3-20260505_183003/tabsyn-n3-3918-20260505_183016.csv" +tabsyn_root = "/workspace/tabsyn" + +assert os.path.exists(tabsyn_root), f"TabSyn source not mounted: {tabsyn_root}" + +old = os.environ.get("PYTHONPATH", "") +os.environ["PYTHONPATH"] = tabsyn_root + (os.pathsep + old if old else "") +sys.path.insert(0, tabsyn_root) + +os.chdir(tabsyn_root) + +# Ensure data symlink exists +data_link = os.path.join(tabsyn_root, "data", dataname) +data_src = os.path.join(work_dir, "data", dataname) +os.makedirs(os.path.join(tabsyn_root, "data"), exist_ok=True) +if os.path.exists(data_link): + os.remove(data_link) +os.symlink(data_src, data_link) + +print(f"[TabSyn] Sampling 3918 rows") +env = os.environ.copy() +env.setdefault("TABSYN_RESUME", "0") +env.setdefault("TABSYN_VAE_BATCH_SIZE", "32") +env.setdefault("TABSYN_VAE_EVAL_BATCH_SIZE", env["TABSYN_VAE_BATCH_SIZE"]) +env.setdefault("TABSYN_VAE_INFER_BATCH_SIZE", env["TABSYN_VAE_BATCH_SIZE"]) +env.setdefault("TABSYN_VAE_ENCODE_BATCH_SIZE", env["TABSYN_VAE_BATCH_SIZE"]) +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/hyperparameter/n3/tabsyn/tabsyn-n3-20260505_183003/_tabsyn_train.py b/hyperparameter/n3/tabsyn/tabsyn-n3-20260505_183003/_tabsyn_train.py new file mode 100644 index 0000000000000000000000000000000000000000..8fd4879f07f14e6350ff9edea716386b1cad6df2 --- /dev/null +++ b/hyperparameter/n3/tabsyn/tabsyn-n3-20260505_183003/_tabsyn_train.py @@ -0,0 +1,69 @@ +import os, sys, subprocess + +work_dir = "/work/output-Benchmark-trainonly-v1/n3/tabsyn/tabsyn-n3-20260505_183003" +dataname = "tabsyn_n3_tabsyn_n3_20260505_183003" +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", "0") +env.setdefault("TABSYN_VAE_BATCH_SIZE", "32") +env.setdefault("TABSYN_VAE_NUM_WORKERS", "0") +env.setdefault("TABSYN_VAE_EVAL_BATCH_SIZE", env["TABSYN_VAE_BATCH_SIZE"]) +env.setdefault("TABSYN_VAE_INFER_BATCH_SIZE", env["TABSYN_VAE_BATCH_SIZE"]) +env.setdefault("TABSYN_VAE_ENCODE_BATCH_SIZE", env["TABSYN_VAE_BATCH_SIZE"]) +# Safer defaults for wide tables on Docker: reduce shared-memory pressure in diffusion DataLoader. +env.setdefault("TABSYN_DIFFUSION_NUM_WORKERS", "0") +_te = None +if _te is not None: + env["TABSYN_VAE_EPOCHS"] = str(_te) + env["TABSYN_DIFFUSION_MAX_EPOCHS"] = str(max(_te + 1, 2)) + +# Data preprocessing is done on the host side (_prepare_data_dir) +# which creates .npy files, train/test CSVs, and info.json + +# Step 1: Train VAE (produces latent embeddings) +print(f"[TabSyn] Step 1/2: Training VAE in {tabsyn_root}, dataname={dataname}") +ret = subprocess.run( + [sys.executable, "main.py", + "--dataname", dataname, + "--mode", "train", + "--method", "vae", + "--gpu", "0"], + cwd=tabsyn_root, + env=env +) +if ret.returncode != 0: + print("[TabSyn] VAE training failed") + sys.exit(ret.returncode) + +# Step 2: Train diffusion model on latent space +print(f"[TabSyn] Step 2/2: Training diffusion model") +ret = subprocess.run( + [sys.executable, "main.py", + "--dataname", dataname, + "--mode", "train", + "--method", "tabsyn", + "--gpu", "0"], + cwd=tabsyn_root, + env=env +) +if ret.returncode != 0: + print("[TabSyn] Diffusion training failed") + sys.exit(ret.returncode) +print("[TabSyn] Training complete (VAE + Diffusion)") diff --git a/hyperparameter/n3/tabsyn/tabsyn-n3-20260505_183003/data/tabsyn_n3_tabsyn_n3_20260505_183003/X_cat_test.npy b/hyperparameter/n3/tabsyn/tabsyn-n3-20260505_183003/data/tabsyn_n3_tabsyn_n3_20260505_183003/X_cat_test.npy new file mode 100644 index 0000000000000000000000000000000000000000..24e2b0be40b07b6e79f803a82e6e38723e462320 --- /dev/null +++ b/hyperparameter/n3/tabsyn/tabsyn-n3-20260505_183003/data/tabsyn_n3_tabsyn_n3_20260505_183003/X_cat_test.npy @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:519697bb05272ccbf9fc4da2bd269c9eab90005e0671dad9ef2e5266215cdf67 +size 128 diff --git a/hyperparameter/n3/tabsyn/tabsyn-n3-20260505_183003/data/tabsyn_n3_tabsyn_n3_20260505_183003/X_cat_train.npy b/hyperparameter/n3/tabsyn/tabsyn-n3-20260505_183003/data/tabsyn_n3_tabsyn_n3_20260505_183003/X_cat_train.npy new file mode 100644 index 0000000000000000000000000000000000000000..24e2b0be40b07b6e79f803a82e6e38723e462320 --- /dev/null +++ b/hyperparameter/n3/tabsyn/tabsyn-n3-20260505_183003/data/tabsyn_n3_tabsyn_n3_20260505_183003/X_cat_train.npy @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:519697bb05272ccbf9fc4da2bd269c9eab90005e0671dad9ef2e5266215cdf67 +size 128 diff --git a/hyperparameter/n3/tabsyn/tabsyn-n3-20260505_183003/data/tabsyn_n3_tabsyn_n3_20260505_183003/X_num_test.npy b/hyperparameter/n3/tabsyn/tabsyn-n3-20260505_183003/data/tabsyn_n3_tabsyn_n3_20260505_183003/X_num_test.npy new file mode 100644 index 0000000000000000000000000000000000000000..94beb8413ef55592710518365965f4cb503523ee --- /dev/null +++ b/hyperparameter/n3/tabsyn/tabsyn-n3-20260505_183003/data/tabsyn_n3_tabsyn_n3_20260505_183003/X_num_test.npy @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:093d8f405d764277d5a007953f25ab6466f0857f71f0d8f3c437463fb5bf240a +size 172520 diff --git a/hyperparameter/n3/tabsyn/tabsyn-n3-20260505_183003/data/tabsyn_n3_tabsyn_n3_20260505_183003/X_num_train.npy b/hyperparameter/n3/tabsyn/tabsyn-n3-20260505_183003/data/tabsyn_n3_tabsyn_n3_20260505_183003/X_num_train.npy new file mode 100644 index 0000000000000000000000000000000000000000..94beb8413ef55592710518365965f4cb503523ee --- /dev/null +++ b/hyperparameter/n3/tabsyn/tabsyn-n3-20260505_183003/data/tabsyn_n3_tabsyn_n3_20260505_183003/X_num_train.npy @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:093d8f405d764277d5a007953f25ab6466f0857f71f0d8f3c437463fb5bf240a +size 172520 diff --git a/hyperparameter/n3/tabsyn/tabsyn-n3-20260505_183003/data/tabsyn_n3_tabsyn_n3_20260505_183003/info.json b/hyperparameter/n3/tabsyn/tabsyn-n3-20260505_183003/data/tabsyn_n3_tabsyn_n3_20260505_183003/info.json new file mode 100644 index 0000000000000000000000000000000000000000..977a5e0f50bf9439ba52c6d8c385c346d4778182 --- /dev/null +++ b/hyperparameter/n3/tabsyn/tabsyn-n3-20260505_183003/data/tabsyn_n3_tabsyn_n3_20260505_183003/info.json @@ -0,0 +1,138 @@ +{ + "name": "tabsyn_n3_tabsyn_n3_20260505_183003", + "task_type": "regression", + "n_num_features": 11, + "n_cat_features": 0, + "train_size": 3918, + "num_col_idx": [ + 0, + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10 + ], + "cat_col_idx": [], + "target_col_idx": [ + 11 + ], + "column_names": [ + "fixed acidity", + "volatile acidity", + "citric acid", + "residual sugar", + "chlorides", + "free sulfur dioxide", + "total sulfur dioxide", + "density", + "pH", + "sulphates", + "alcohol", + "quality" + ], + "train_num": 3918, + "test_num": 3918, + "header": 0, + "file_type": "csv", + "data_path": "data/tabsyn_n3_tabsyn_n3_20260505_183003/train.csv", + "test_path": null, + "idx_mapping": { + "0": 0, + "1": 1, + "2": 2, + "3": 3, + "4": 4, + "5": 5, + "6": 6, + "7": 7, + "8": 8, + "9": 9, + "10": 10, + "11": 11 + }, + "inverse_idx_mapping": { + "0": 0, + "1": 1, + "2": 2, + "3": 3, + "4": 4, + "5": 5, + "6": 6, + "7": 7, + "8": 8, + "9": 9, + "10": 10, + "11": 11 + }, + "idx_name_mapping": { + "0": "fixed acidity", + "1": "volatile acidity", + "2": "citric acid", + "3": "residual sugar", + "4": "chlorides", + "5": "free sulfur dioxide", + "6": "total sulfur dioxide", + "7": "density", + "8": "pH", + "9": "sulphates", + "10": "alcohol", + "11": "quality" + }, + "metadata": { + "columns": { + "0": { + "sdtype": "numerical", + "computer_representation": "Float" + }, + "1": { + "sdtype": "numerical", + "computer_representation": "Float" + }, + "2": { + "sdtype": "numerical", + "computer_representation": "Float" + }, + "3": { + "sdtype": "numerical", + "computer_representation": "Float" + }, + "4": { + "sdtype": "numerical", + "computer_representation": "Float" + }, + "5": { + "sdtype": "numerical", + "computer_representation": "Float" + }, + "6": { + "sdtype": "numerical", + "computer_representation": "Float" + }, + "7": { + "sdtype": "numerical", + "computer_representation": "Float" + }, + "8": { + "sdtype": "numerical", + "computer_representation": "Float" + }, + "9": { + "sdtype": "numerical", + "computer_representation": "Float" + }, + "10": { + "sdtype": "numerical", + "computer_representation": "Float" + }, + "11": { + "sdtype": "numerical", + "computer_representation": "Float" + } + } + } +} \ No newline at end of file diff --git a/hyperparameter/n3/tabsyn/tabsyn-n3-20260505_183003/data/tabsyn_n3_tabsyn_n3_20260505_183003/test.csv b/hyperparameter/n3/tabsyn/tabsyn-n3-20260505_183003/data/tabsyn_n3_tabsyn_n3_20260505_183003/test.csv new file mode 100644 index 0000000000000000000000000000000000000000..87ca26726fe82ccbaa397919305b043c17eb374e --- /dev/null +++ b/hyperparameter/n3/tabsyn/tabsyn-n3-20260505_183003/data/tabsyn_n3_tabsyn_n3_20260505_183003/test.csv @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:7813c8cca73ba4bfc6559215257b341c21e459980ad17ae6ddc809306bc9a0b9 +size 229945 diff --git a/hyperparameter/n3/tabsyn/tabsyn-n3-20260505_183003/data/tabsyn_n3_tabsyn_n3_20260505_183003/train.csv b/hyperparameter/n3/tabsyn/tabsyn-n3-20260505_183003/data/tabsyn_n3_tabsyn_n3_20260505_183003/train.csv new file mode 100644 index 0000000000000000000000000000000000000000..87ca26726fe82ccbaa397919305b043c17eb374e --- /dev/null +++ b/hyperparameter/n3/tabsyn/tabsyn-n3-20260505_183003/data/tabsyn_n3_tabsyn_n3_20260505_183003/train.csv @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:7813c8cca73ba4bfc6559215257b341c21e459980ad17ae6ddc809306bc9a0b9 +size 229945 diff --git a/hyperparameter/n3/tabsyn/tabsyn-n3-20260505_183003/data/tabsyn_n3_tabsyn_n3_20260505_183003/y_test.npy b/hyperparameter/n3/tabsyn/tabsyn-n3-20260505_183003/data/tabsyn_n3_tabsyn_n3_20260505_183003/y_test.npy new file mode 100644 index 0000000000000000000000000000000000000000..59571a153fb0a2e415acb8f1ffcbb54e325414c6 --- /dev/null +++ b/hyperparameter/n3/tabsyn/tabsyn-n3-20260505_183003/data/tabsyn_n3_tabsyn_n3_20260505_183003/y_test.npy @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:1418131d428e1f98200104123714677e9ab4a2b8279082a63a1d663f7f09bb84 +size 31472 diff --git a/hyperparameter/n3/tabsyn/tabsyn-n3-20260505_183003/data/tabsyn_n3_tabsyn_n3_20260505_183003/y_train.npy b/hyperparameter/n3/tabsyn/tabsyn-n3-20260505_183003/data/tabsyn_n3_tabsyn_n3_20260505_183003/y_train.npy new file mode 100644 index 0000000000000000000000000000000000000000..59571a153fb0a2e415acb8f1ffcbb54e325414c6 --- /dev/null +++ b/hyperparameter/n3/tabsyn/tabsyn-n3-20260505_183003/data/tabsyn_n3_tabsyn_n3_20260505_183003/y_train.npy @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:1418131d428e1f98200104123714677e9ab4a2b8279082a63a1d663f7f09bb84 +size 31472 diff --git a/hyperparameter/n3/tabsyn/tabsyn-n3-20260505_183003/gen_20260505_183016.log b/hyperparameter/n3/tabsyn/tabsyn-n3-20260505_183003/gen_20260505_183016.log new file mode 100644 index 0000000000000000000000000000000000000000..83ab0b29418c42b5c38f077a72ca5dd3e73cd188 --- /dev/null +++ b/hyperparameter/n3/tabsyn/tabsyn-n3-20260505_183003/gen_20260505_183016.log @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:2441432fce304c966864d75c4989c8f1e66136c14b43fce74cded713412072cf +size 930 diff --git a/hyperparameter/n3/tabsyn/tabsyn-n3-20260505_183003/input_snapshot.json b/hyperparameter/n3/tabsyn/tabsyn-n3-20260505_183003/input_snapshot.json new file mode 100644 index 0000000000000000000000000000000000000000..35dea6fbed02718a51165764efffea61dcb428e5 --- /dev/null +++ b/hyperparameter/n3/tabsyn/tabsyn-n3-20260505_183003/input_snapshot.json @@ -0,0 +1,36 @@ +{ + "dataset_id": "n3", + "model": "tabsyn", + "inputs": { + "train_csv": { + "path": "/data/jialinzhang/SynthesizePipeline-server/DatasetNew/n3/n3-train.csv", + "exists": true, + "size": 211519, + "sha256": "2160a06db2fea02adb0ebb79d8d853bd2544580be301e71f6e8deeb1489a9009" + }, + "val_csv": { + "path": "/data/jialinzhang/SynthesizePipeline-server/DatasetNew/n3/n3-val.csv", + "exists": true, + "size": 26499, + "sha256": "d5ccfee07dfa9e7bdee5bb87642b43828e09f74c6cc0266a3d19d9feaa83106e" + }, + "test_csv": { + "path": "/data/jialinzhang/SynthesizePipeline-server/DatasetNew/n3/n3-test.csv", + "exists": true, + "size": 26676, + "sha256": "6f83aacb0d1747b95e287352a7fff5d9d65a1c127b773852346c68485c4ede47" + }, + "profile_json": { + "path": "/data/jialinzhang/SynthesizePipeline-server/DatasetNew/artifacts/data_core/tabular/n3/n3-dataset_profile.json", + "exists": true, + "size": 5235, + "sha256": "23d2e5904a2ca90cbf8d6e3c75887681721e9b90cc705c31a680c11513d0c46f" + }, + "contract_json": { + "path": "/data/jialinzhang/SynthesizePipeline-server/DatasetNew/artifacts/data_core/tabular/n3/n3-dataset_contract_v1.json", + "exists": true, + "size": 6281, + "sha256": "c0cc56f5fe28e1b65927255c6e3c2b0e9479862c2ec6f2fea1664da36c9a3a09" + } + } +} \ No newline at end of file diff --git a/hyperparameter/n3/tabsyn/tabsyn-n3-20260505_183003/public_gate/normalized_schema_snapshot.json b/hyperparameter/n3/tabsyn/tabsyn-n3-20260505_183003/public_gate/normalized_schema_snapshot.json new file mode 100644 index 0000000000000000000000000000000000000000..c41fe304503de23190a02e6cbfafa35b3bf134d3 --- /dev/null +++ b/hyperparameter/n3/tabsyn/tabsyn-n3-20260505_183003/public_gate/normalized_schema_snapshot.json @@ -0,0 +1,259 @@ +{ + "dataset_id": "n3", + "target_column": "quality", + "task_type": "classification", + "columns": [ + { + "name": "fixed acidity", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 66, + "unique_ratio": 0.016845, + "example_values": [ + "7.1", + "8.5", + "6.4", + "6.8", + "7.6" + ] + } + }, + { + "name": "volatile acidity", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 121, + "unique_ratio": 0.030883, + "example_values": [ + "0.31", + "0.21", + "0.24", + "0.43", + "0.27" + ] + } + }, + { + "name": "citric acid", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 85, + "unique_ratio": 0.021695, + "example_values": [ + "0.17", + "0.41", + "0.31", + "0.25", + "0.3" + ] + } + }, + { + "name": "residual sugar", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 296, + "unique_ratio": 0.075549, + "example_values": [ + "1", + "4.3", + "2.8", + "13", + "12.9" + ] + } + }, + { + "name": "chlorides", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 147, + "unique_ratio": 0.037519, + "example_values": [ + "0.042", + "0.036", + "0.038", + "0.047", + "0.033" + ] + } + }, + { + "name": "free sulfur dioxide", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 120, + "unique_ratio": 0.030628, + "example_values": [ + "21", + "24", + "41", + "43", + "69" + ] + } + }, + { + "name": "total sulfur dioxide", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 244, + "unique_ratio": 0.062277, + "example_values": [ + "144", + "99", + "114", + "132", + "160" + ] + } + }, + { + "name": "density", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 839, + "unique_ratio": 0.21414, + "example_values": [ + "0.99304", + "0.9947", + "0.99155", + "0.98975", + "0.99705" + ] + } + }, + { + "name": "pH", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 100, + "unique_ratio": 0.025523, + "example_values": [ + "3.13", + "3.18", + "3.37", + "3.21", + "3.16" + ] + } + }, + { + "name": "sulphates", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 78, + "unique_ratio": 0.019908, + "example_values": [ + "0.4", + "0.53", + "0.66", + "0.47", + "0.5" + ] + } + }, + { + "name": "alcohol", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 97, + "unique_ratio": 0.024758, + "example_values": [ + "9.6", + "9.7", + "11.7", + "13.4", + "8.8" + ] + } + }, + { + "name": "quality", + "role": "target", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 7, + "unique_ratio": 0.001787, + "example_values": [ + "5", + "6", + "7", + "8", + "3" + ] + } + } + ] +} \ No newline at end of file diff --git a/hyperparameter/n3/tabsyn/tabsyn-n3-20260505_183003/public_gate/public_gate_report.json b/hyperparameter/n3/tabsyn/tabsyn-n3-20260505_183003/public_gate/public_gate_report.json new file mode 100644 index 0000000000000000000000000000000000000000..93b97319f739e39079d6c6549fd2020f8a6dac25 --- /dev/null +++ b/hyperparameter/n3/tabsyn/tabsyn-n3-20260505_183003/public_gate/public_gate_report.json @@ -0,0 +1,37 @@ +{ + "dataset_id": "n3", + "status": "pass", + "checks": [ + { + "check_id": "PG001_csv_parse_ok", + "status": "pass" + }, + { + "check_id": "PG002_split_header_consistent", + "status": "pass" + }, + { + "check_id": "PG003_profile_header_match", + "status": "pass" + }, + { + "check_id": "PG004_missing_token_normalized", + "status": "pass" + }, + { + "check_id": "PG005_semantic_type_validated", + "status": "pass" + }, + { + "check_id": "PG006_target_defined_and_valid", + "status": "pass" + } + ], + "target_column": "quality", + "task_type": "classification", + "input_splits": { + "train": "/data/jialinzhang/SynthesizePipeline-server/DatasetNew/n3/n3-train.csv", + "val": "/data/jialinzhang/SynthesizePipeline-server/DatasetNew/n3/n3-val.csv", + "test": "/data/jialinzhang/SynthesizePipeline-server/DatasetNew/n3/n3-test.csv" + } +} \ No newline at end of file diff --git a/hyperparameter/n3/tabsyn/tabsyn-n3-20260505_183003/public_gate/staged_input_manifest.json b/hyperparameter/n3/tabsyn/tabsyn-n3-20260505_183003/public_gate/staged_input_manifest.json new file mode 100644 index 0000000000000000000000000000000000000000..c062bdf00b7302bea5f12a944f8ad80e1ce4dcc9 --- /dev/null +++ b/hyperparameter/n3/tabsyn/tabsyn-n3-20260505_183003/public_gate/staged_input_manifest.json @@ -0,0 +1,264 @@ +{ + "dataset_id": "n3", + "target_column": "quality", + "task_type": "classification", + "train_csv": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/n3/tabsyn/tabsyn-n3-20260505_183003/staged/public/train.csv", + "val_csv": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/n3/tabsyn/tabsyn-n3-20260505_183003/staged/public/val.csv", + "test_csv": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/n3/tabsyn/tabsyn-n3-20260505_183003/staged/public/test.csv", + "features_json": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/n3/tabsyn/tabsyn-n3-20260505_183003/staged/public/staged_features.json", + "public_gate_report": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/n3/tabsyn/tabsyn-n3-20260505_183003/public_gate/public_gate_report.json", + "column_schema": [ + { + "name": "fixed acidity", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 66, + "unique_ratio": 0.016845, + "example_values": [ + "7.1", + "8.5", + "6.4", + "6.8", + "7.6" + ] + } + }, + { + "name": "volatile acidity", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 121, + "unique_ratio": 0.030883, + "example_values": [ + "0.31", + "0.21", + "0.24", + "0.43", + "0.27" + ] + } + }, + { + "name": "citric acid", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 85, + "unique_ratio": 0.021695, + "example_values": [ + "0.17", + "0.41", + "0.31", + "0.25", + "0.3" + ] + } + }, + { + "name": "residual sugar", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 296, + "unique_ratio": 0.075549, + "example_values": [ + "1", + "4.3", + "2.8", + "13", + "12.9" + ] + } + }, + { + "name": "chlorides", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 147, + "unique_ratio": 0.037519, + "example_values": [ + "0.042", + "0.036", + "0.038", + "0.047", + "0.033" + ] + } + }, + { + "name": "free sulfur dioxide", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 120, + "unique_ratio": 0.030628, + "example_values": [ + "21", + "24", + "41", + "43", + "69" + ] + } + }, + { + "name": "total sulfur dioxide", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 244, + "unique_ratio": 0.062277, + "example_values": [ + "144", + "99", + "114", + "132", + "160" + ] + } + }, + { + "name": "density", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 839, + "unique_ratio": 0.21414, + "example_values": [ + "0.99304", + "0.9947", + "0.99155", + "0.98975", + "0.99705" + ] + } + }, + { + "name": "pH", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 100, + "unique_ratio": 0.025523, + "example_values": [ + "3.13", + "3.18", + "3.37", + "3.21", + "3.16" + ] + } + }, + { + "name": "sulphates", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 78, + "unique_ratio": 0.019908, + "example_values": [ + "0.4", + "0.53", + "0.66", + "0.47", + "0.5" + ] + } + }, + { + "name": "alcohol", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 97, + "unique_ratio": 0.024758, + "example_values": [ + "9.6", + "9.7", + "11.7", + "13.4", + "8.8" + ] + } + }, + { + "name": "quality", + "role": "target", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 7, + "unique_ratio": 0.001787, + "example_values": [ + "5", + "6", + "7", + "8", + "3" + ] + } + } + ] +} \ No newline at end of file diff --git a/hyperparameter/n3/tabsyn/tabsyn-n3-20260505_183003/run_config.json b/hyperparameter/n3/tabsyn/tabsyn-n3-20260505_183003/run_config.json new file mode 100644 index 0000000000000000000000000000000000000000..ba8f90298452b2d21ffc4e84b193a8a2a33a8fd1 --- /dev/null +++ b/hyperparameter/n3/tabsyn/tabsyn-n3-20260505_183003/run_config.json @@ -0,0 +1,49 @@ +{ + "schema_version": 1, + "recorded_at": "2026-05-05T18:30:03", + "dataset_id": "n3", + "model": "tabsyn", + "work_dir": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/n3/tabsyn/tabsyn-n3-20260505_183003", + "dataset_source_requested": "new", + "dataset_source_resolved": "new", + "cli_args": { + "model": "tabsyn", + "dataset": "n3", + "dataset_source": "new", + "train": true, + "generate": true, + "num_rows": 0, + "epochs": null, + "output_dir": null, + "model_dir": null, + "work_dir": null, + "resume": false, + "no_stats": false + }, + "resolved": { + "num_rows": 3918, + "model_path": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/n3/tabsyn/tabsyn-n3-20260505_183003", + "output_csv": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/n3/tabsyn/tabsyn-n3-20260505_183003/tabsyn-n3-3918-20260505_183016.csv" + }, + "input_artifacts": { + "public_gate_report": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/n3/tabsyn/tabsyn-n3-20260505_183003/public_gate/public_gate_report.json", + "public_manifest": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/n3/tabsyn/tabsyn-n3-20260505_183003/public_gate/staged_input_manifest.json", + "model_manifest": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/n3/tabsyn/tabsyn-n3-20260505_183003/staged/tabsyn/model_input_manifest.json", + "train_csv": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/n3/tabsyn/tabsyn-n3-20260505_183003/staged/public/train.csv", + "features_json": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/n3/tabsyn/tabsyn-n3-20260505_183003/staged/public/staged_features.json", + "target_column": "quality", + "task_type": "classification" + }, + "env_overrides": { + "BENCHMARK_TABSYN_GPUS": "device=3", + "TABSYN_DIFFUSION_MAX_EPOCHS": "5", + "TABSYN_DIFFUSION_NUM_WORKERS": "0", + "TABSYN_RESUME": "0", + "TABSYN_VAE_BATCH_SIZE": "128", + "TABSYN_VAE_ENCODE_BATCH_SIZE": "256", + "TABSYN_VAE_EPOCHS": "5", + "TABSYN_VAE_EVAL_BATCH_SIZE": "256", + "TABSYN_VAE_INFER_BATCH_SIZE": "256", + "TABSYN_VAE_NUM_WORKERS": "0" + } +} \ No newline at end of file diff --git a/hyperparameter/n3/tabsyn/tabsyn-n3-20260505_183003/runtime_result.json b/hyperparameter/n3/tabsyn/tabsyn-n3-20260505_183003/runtime_result.json new file mode 100644 index 0000000000000000000000000000000000000000..7d6c46dbf502eb9d514677f23aa47217f60c1ec9 --- /dev/null +++ b/hyperparameter/n3/tabsyn/tabsyn-n3-20260505_183003/runtime_result.json @@ -0,0 +1,27 @@ +{ + "dataset_id": "n3", + "model": "tabsyn", + "run_id": "tabsyn-n3-20260505_183003", + "public_gate_status": "pass", + "adapter_ready_status": "pass", + "train_status": "success", + "generate_status": "success", + "reason_code": null, + "reason_detail": null, + "artifacts": { + "synthetic_csv": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/n3/tabsyn/tabsyn-n3-20260505_183003/tabsyn-n3-3918-20260505_183016.csv", + "model_path": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/n3/tabsyn/tabsyn-n3-20260505_183003" + }, + "timings": { + "train": { + "started_at": "2026-05-05T18:30:03", + "ended_at": "2026-05-05T18:30:16", + "duration_sec": 12.806 + }, + "generate": { + "started_at": "2026-05-05T18:30:16", + "ended_at": "2026-05-05T18:30:21", + "duration_sec": 4.898 + } + } +} \ No newline at end of file diff --git a/hyperparameter/n3/tabsyn/tabsyn-n3-20260505_183003/staged/public/staged_features.json b/hyperparameter/n3/tabsyn/tabsyn-n3-20260505_183003/staged/public/staged_features.json new file mode 100644 index 0000000000000000000000000000000000000000..08fe4d766d091d2f2ddba724a16b9509cbe4c390 --- /dev/null +++ b/hyperparameter/n3/tabsyn/tabsyn-n3-20260505_183003/staged/public/staged_features.json @@ -0,0 +1,62 @@ +[ + { + "feature_name": "fixed acidity", + "data_type": "continuous", + "is_target": false + }, + { + "feature_name": "volatile acidity", + "data_type": "continuous", + "is_target": false + }, + { + "feature_name": "citric acid", + "data_type": "continuous", + "is_target": false + }, + { + "feature_name": "residual sugar", + "data_type": "continuous", + "is_target": false + }, + { + "feature_name": "chlorides", + "data_type": "continuous", + "is_target": false + }, + { + "feature_name": "free sulfur dioxide", + "data_type": "continuous", + "is_target": false + }, + { + "feature_name": "total sulfur dioxide", + "data_type": "continuous", + "is_target": false + }, + { + "feature_name": "density", + "data_type": "continuous", + "is_target": false + }, + { + "feature_name": "pH", + "data_type": "continuous", + "is_target": false + }, + { + "feature_name": "sulphates", + "data_type": "continuous", + "is_target": false + }, + { + "feature_name": "alcohol", + "data_type": "continuous", + "is_target": false + }, + { + "feature_name": "quality", + "data_type": "continuous", + "is_target": true + } +] \ No newline at end of file diff --git a/hyperparameter/n3/tabsyn/tabsyn-n3-20260505_183003/staged/public/test.csv b/hyperparameter/n3/tabsyn/tabsyn-n3-20260505_183003/staged/public/test.csv new file mode 100644 index 0000000000000000000000000000000000000000..db5cd50d3746410ea470625fa2ba2c8e9775cc0d --- /dev/null +++ b/hyperparameter/n3/tabsyn/tabsyn-n3-20260505_183003/staged/public/test.csv @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:19e107152a94432e2a37ff045c00cfe35e1be30208b1553080d7dd0ede256d3b +size 28944 diff --git a/hyperparameter/n3/tabsyn/tabsyn-n3-20260505_183003/staged/public/train.csv b/hyperparameter/n3/tabsyn/tabsyn-n3-20260505_183003/staged/public/train.csv new file mode 100644 index 0000000000000000000000000000000000000000..87ca26726fe82ccbaa397919305b043c17eb374e --- /dev/null +++ b/hyperparameter/n3/tabsyn/tabsyn-n3-20260505_183003/staged/public/train.csv @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:7813c8cca73ba4bfc6559215257b341c21e459980ad17ae6ddc809306bc9a0b9 +size 229945 diff --git a/hyperparameter/n3/tabsyn/tabsyn-n3-20260505_183003/staged/public/val.csv b/hyperparameter/n3/tabsyn/tabsyn-n3-20260505_183003/staged/public/val.csv new file mode 100644 index 0000000000000000000000000000000000000000..6acf84c76c47093b513c46d5503972a2dff275c0 --- /dev/null +++ b/hyperparameter/n3/tabsyn/tabsyn-n3-20260505_183003/staged/public/val.csv @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:cf5979d9675567d9d6642640c9b84fc6c49e492604144723c30f50516c05cee6 +size 28791 diff --git a/hyperparameter/n3/tabsyn/tabsyn-n3-20260505_183003/staged/tabsyn/adapter_report.json b/hyperparameter/n3/tabsyn/tabsyn-n3-20260505_183003/staged/tabsyn/adapter_report.json new file mode 100644 index 0000000000000000000000000000000000000000..4c32829026bab3efd1c894ad7a7bf659d55108c3 --- /dev/null +++ b/hyperparameter/n3/tabsyn/tabsyn-n3-20260505_183003/staged/tabsyn/adapter_report.json @@ -0,0 +1,7 @@ +{ + "adapter_ready_status": "pass", + "adapter_fail_reason_code": null, + "adapter_fail_detail": null, + "adapter_transforms_applied": [], + "model_input_manifest": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/n3/tabsyn/tabsyn-n3-20260505_183003/staged/tabsyn/model_input_manifest.json" +} \ No newline at end of file diff --git a/hyperparameter/n3/tabsyn/tabsyn-n3-20260505_183003/staged/tabsyn/adapter_transforms_applied.json b/hyperparameter/n3/tabsyn/tabsyn-n3-20260505_183003/staged/tabsyn/adapter_transforms_applied.json new file mode 100644 index 0000000000000000000000000000000000000000..0637a088a01e8ddab3bf3fa98dbe804cbde1a0dc --- /dev/null +++ b/hyperparameter/n3/tabsyn/tabsyn-n3-20260505_183003/staged/tabsyn/adapter_transforms_applied.json @@ -0,0 +1 @@ +[] \ No newline at end of file diff --git a/hyperparameter/n3/tabsyn/tabsyn-n3-20260505_183003/staged/tabsyn/model_input_manifest.json b/hyperparameter/n3/tabsyn/tabsyn-n3-20260505_183003/staged/tabsyn/model_input_manifest.json new file mode 100644 index 0000000000000000000000000000000000000000..af88bd967db2a5c3cd6c7bb40f478096e376f202 --- /dev/null +++ b/hyperparameter/n3/tabsyn/tabsyn-n3-20260505_183003/staged/tabsyn/model_input_manifest.json @@ -0,0 +1,266 @@ +{ + "dataset_id": "n3", + "model": "tabsyn", + "target_column": "quality", + "task_type": "classification", + "column_schema": [ + { + "name": "fixed acidity", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 66, + "unique_ratio": 0.016845, + "example_values": [ + "7.1", + "8.5", + "6.4", + "6.8", + "7.6" + ] + } + }, + { + "name": "volatile acidity", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 121, + "unique_ratio": 0.030883, + "example_values": [ + "0.31", + "0.21", + "0.24", + "0.43", + "0.27" + ] + } + }, + { + "name": "citric acid", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 85, + "unique_ratio": 0.021695, + "example_values": [ + "0.17", + "0.41", + "0.31", + "0.25", + "0.3" + ] + } + }, + { + "name": "residual sugar", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 296, + "unique_ratio": 0.075549, + "example_values": [ + "1", + "4.3", + "2.8", + "13", + "12.9" + ] + } + }, + { + "name": "chlorides", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 147, + "unique_ratio": 0.037519, + "example_values": [ + "0.042", + "0.036", + "0.038", + "0.047", + "0.033" + ] + } + }, + { + "name": "free sulfur dioxide", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 120, + "unique_ratio": 0.030628, + "example_values": [ + "21", + "24", + "41", + "43", + "69" + ] + } + }, + { + "name": "total sulfur dioxide", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 244, + "unique_ratio": 0.062277, + "example_values": [ + "144", + "99", + "114", + "132", + "160" + ] + } + }, + { + "name": "density", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 839, + "unique_ratio": 0.21414, + "example_values": [ + "0.99304", + "0.9947", + "0.99155", + "0.98975", + "0.99705" + ] + } + }, + { + "name": "pH", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 100, + "unique_ratio": 0.025523, + "example_values": [ + "3.13", + "3.18", + "3.37", + "3.21", + "3.16" + ] + } + }, + { + "name": "sulphates", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 78, + "unique_ratio": 0.019908, + "example_values": [ + "0.4", + "0.53", + "0.66", + "0.47", + "0.5" + ] + } + }, + { + "name": "alcohol", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 97, + "unique_ratio": 0.024758, + "example_values": [ + "9.6", + "9.7", + "11.7", + "13.4", + "8.8" + ] + } + }, + { + "name": "quality", + "role": "target", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 7, + "unique_ratio": 0.001787, + "example_values": [ + "5", + "6", + "7", + "8", + "3" + ] + } + } + ], + "public_manifest": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/n3/tabsyn/tabsyn-n3-20260505_183003/public_gate/staged_input_manifest.json", + "train_csv": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/n3/tabsyn/tabsyn-n3-20260505_183003/staged/public/train.csv", + "val_csv": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/n3/tabsyn/tabsyn-n3-20260505_183003/staged/public/val.csv", + "test_csv": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/n3/tabsyn/tabsyn-n3-20260505_183003/staged/public/test.csv", + "features_json": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/n3/tabsyn/tabsyn-n3-20260505_183003/staged/public/staged_features.json", + "public_gate_report": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/n3/tabsyn/tabsyn-n3-20260505_183003/public_gate/public_gate_report.json" +} \ No newline at end of file diff --git a/hyperparameter/n3/tabsyn/tabsyn-n3-20260505_183003/synthetic/tabsyn_n3_tabsyn_n3_20260505_183003/real.csv b/hyperparameter/n3/tabsyn/tabsyn-n3-20260505_183003/synthetic/tabsyn_n3_tabsyn_n3_20260505_183003/real.csv new file mode 100644 index 0000000000000000000000000000000000000000..87ca26726fe82ccbaa397919305b043c17eb374e --- /dev/null +++ b/hyperparameter/n3/tabsyn/tabsyn-n3-20260505_183003/synthetic/tabsyn_n3_tabsyn_n3_20260505_183003/real.csv @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:7813c8cca73ba4bfc6559215257b341c21e459980ad17ae6ddc809306bc9a0b9 +size 229945 diff --git a/hyperparameter/n3/tabsyn/tabsyn-n3-20260505_183003/synthetic/tabsyn_n3_tabsyn_n3_20260505_183003/test.csv b/hyperparameter/n3/tabsyn/tabsyn-n3-20260505_183003/synthetic/tabsyn_n3_tabsyn_n3_20260505_183003/test.csv new file mode 100644 index 0000000000000000000000000000000000000000..87ca26726fe82ccbaa397919305b043c17eb374e --- /dev/null +++ b/hyperparameter/n3/tabsyn/tabsyn-n3-20260505_183003/synthetic/tabsyn_n3_tabsyn_n3_20260505_183003/test.csv @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:7813c8cca73ba4bfc6559215257b341c21e459980ad17ae6ddc809306bc9a0b9 +size 229945 diff --git a/hyperparameter/n3/tabsyn/tabsyn-n3-20260505_183003/tabsyn-n3-3918-20260505_183016.csv b/hyperparameter/n3/tabsyn/tabsyn-n3-20260505_183003/tabsyn-n3-3918-20260505_183016.csv new file mode 100644 index 0000000000000000000000000000000000000000..7f9545bec14a9373b7a4d3d98cedf7019b18dadf --- /dev/null +++ b/hyperparameter/n3/tabsyn/tabsyn-n3-20260505_183003/tabsyn-n3-3918-20260505_183016.csv @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:993681534e223af6cef82a91033138c5cc80ebe09f8a4598d20ddd3ce153bf49 +size 417258 diff --git a/hyperparameter/n3/tabsyn/tabsyn-n3-20260505_183003/tabsyn_ckpt/diffusion/tabsyn_n3_tabsyn_n3_20260505_183003/model.pt b/hyperparameter/n3/tabsyn/tabsyn-n3-20260505_183003/tabsyn_ckpt/diffusion/tabsyn_n3_tabsyn_n3_20260505_183003/model.pt new file mode 100644 index 0000000000000000000000000000000000000000..3e24a8c53740521d6b402ced8c538d0055f88ca0 --- /dev/null +++ b/hyperparameter/n3/tabsyn/tabsyn-n3-20260505_183003/tabsyn_ckpt/diffusion/tabsyn_n3_tabsyn_n3_20260505_183003/model.pt @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:17c0c444c093374e110b69dde77570349118dabb2f89fec9282bab4eff18cc06 +size 42374609 diff --git a/hyperparameter/n3/tabsyn/tabsyn-n3-20260505_183003/tabsyn_ckpt/diffusion/tabsyn_n3_tabsyn_n3_20260505_183003/model_0.pt b/hyperparameter/n3/tabsyn/tabsyn-n3-20260505_183003/tabsyn_ckpt/diffusion/tabsyn_n3_tabsyn_n3_20260505_183003/model_0.pt new file mode 100644 index 0000000000000000000000000000000000000000..bd6d3f09c978c9fa9b8b033797558dfa4230165e --- /dev/null +++ b/hyperparameter/n3/tabsyn/tabsyn-n3-20260505_183003/tabsyn_ckpt/diffusion/tabsyn_n3_tabsyn_n3_20260505_183003/model_0.pt @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:b614c2623e5f4134a44e67734baae7346c266c022c198e5c3a77392491b575f9 +size 42374969 diff --git a/hyperparameter/n3/tabsyn/tabsyn-n3-20260505_183003/tabsyn_ckpt/vae/tabsyn_n3_tabsyn_n3_20260505_183003/decoder.pt b/hyperparameter/n3/tabsyn/tabsyn-n3-20260505_183003/tabsyn_ckpt/vae/tabsyn_n3_tabsyn_n3_20260505_183003/decoder.pt new file mode 100644 index 0000000000000000000000000000000000000000..7d5667a611c7439b3da7387451ce98407de34f0f --- /dev/null +++ b/hyperparameter/n3/tabsyn/tabsyn-n3-20260505_183003/tabsyn_ckpt/vae/tabsyn_n3_tabsyn_n3_20260505_183003/decoder.pt @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:59fa9e8eb9a4650705781f802ee0c451c5f23bccd289716eea0b5bcd441e4d79 +size 21318 diff --git a/hyperparameter/n3/tabsyn/tabsyn-n3-20260505_183003/tabsyn_ckpt/vae/tabsyn_n3_tabsyn_n3_20260505_183003/encoder.pt b/hyperparameter/n3/tabsyn/tabsyn-n3-20260505_183003/tabsyn_ckpt/vae/tabsyn_n3_tabsyn_n3_20260505_183003/encoder.pt new file mode 100644 index 0000000000000000000000000000000000000000..16f78a9c77985abae35ceef6c97d785b0bd066d0 --- /dev/null +++ b/hyperparameter/n3/tabsyn/tabsyn-n3-20260505_183003/tabsyn_ckpt/vae/tabsyn_n3_tabsyn_n3_20260505_183003/encoder.pt @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:a709128884f638b149d32884a41b6fb92f36456cae0ce888c2ec232d6f6f9b5c +size 22525 diff --git a/hyperparameter/n3/tabsyn/tabsyn-n3-20260505_183003/tabsyn_ckpt/vae/tabsyn_n3_tabsyn_n3_20260505_183003/model.pt b/hyperparameter/n3/tabsyn/tabsyn-n3-20260505_183003/tabsyn_ckpt/vae/tabsyn_n3_tabsyn_n3_20260505_183003/model.pt new file mode 100644 index 0000000000000000000000000000000000000000..d50b03bdb4794cb889336661992df6e45369c07c --- /dev/null +++ b/hyperparameter/n3/tabsyn/tabsyn-n3-20260505_183003/tabsyn_ckpt/vae/tabsyn_n3_tabsyn_n3_20260505_183003/model.pt @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:7154b6e360eb7bd9ad57b3264fe3a72f118d6b86be1604c29c33e84b21ce035b +size 62012 diff --git a/hyperparameter/n3/tabsyn/tabsyn-n3-20260505_183003/tabsyn_ckpt/vae/tabsyn_n3_tabsyn_n3_20260505_183003/train_z.npy b/hyperparameter/n3/tabsyn/tabsyn-n3-20260505_183003/tabsyn_ckpt/vae/tabsyn_n3_tabsyn_n3_20260505_183003/train_z.npy new file mode 100644 index 0000000000000000000000000000000000000000..9a738f2ba3ff3ef54148df59b3bd99d8b8326ebb --- /dev/null +++ b/hyperparameter/n3/tabsyn/tabsyn-n3-20260505_183003/tabsyn_ckpt/vae/tabsyn_n3_tabsyn_n3_20260505_183003/train_z.npy @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:9d2066afe0d723e42f0e7202946cacb176a95a79eb3a13e58c7141ba117de20e +size 815072 diff --git a/hyperparameter/n3/tabsyn/tabsyn-n3-20260505_183003/train_20260505_183003.log b/hyperparameter/n3/tabsyn/tabsyn-n3-20260505_183003/train_20260505_183003.log new file mode 100644 index 0000000000000000000000000000000000000000..f64f0e6651908cfad6d52335c5a16d7fbf073118 --- /dev/null +++ b/hyperparameter/n3/tabsyn/tabsyn-n3-20260505_183003/train_20260505_183003.log @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:4292e807174eeefe8fb52687f01d2cece1cd4203f90e8c9ff85f7578a616680d +size 6142 diff --git a/hyperparameter/n3/tabsyn/tabsyn-n3-20260505_183033/_tabsyn_sample.py b/hyperparameter/n3/tabsyn/tabsyn-n3-20260505_183033/_tabsyn_sample.py new file mode 100644 index 0000000000000000000000000000000000000000..ffb6c70207b59258251571ef3959cdf0568df551 --- /dev/null +++ b/hyperparameter/n3/tabsyn/tabsyn-n3-20260505_183033/_tabsyn_sample.py @@ -0,0 +1,43 @@ +import os, sys, subprocess + +work_dir = "/work/output-Benchmark-trainonly-v1/n3/tabsyn/tabsyn-n3-20260505_183033" +dataname = "tabsyn_n3_tabsyn_n3_20260505_183033" +output_csv = "/work/output-Benchmark-trainonly-v1/n3/tabsyn/tabsyn-n3-20260505_183033/tabsyn-n3-3918-20260505_183047.csv" +tabsyn_root = "/workspace/tabsyn" + +assert os.path.exists(tabsyn_root), f"TabSyn source not mounted: {tabsyn_root}" + +old = os.environ.get("PYTHONPATH", "") +os.environ["PYTHONPATH"] = tabsyn_root + (os.pathsep + old if old else "") +sys.path.insert(0, tabsyn_root) + +os.chdir(tabsyn_root) + +# Ensure data symlink exists +data_link = os.path.join(tabsyn_root, "data", dataname) +data_src = os.path.join(work_dir, "data", dataname) +os.makedirs(os.path.join(tabsyn_root, "data"), exist_ok=True) +if os.path.exists(data_link): + os.remove(data_link) +os.symlink(data_src, data_link) + +print(f"[TabSyn] Sampling 3918 rows") +env = os.environ.copy() +env.setdefault("TABSYN_RESUME", "0") +env.setdefault("TABSYN_VAE_BATCH_SIZE", "32") +env.setdefault("TABSYN_VAE_EVAL_BATCH_SIZE", env["TABSYN_VAE_BATCH_SIZE"]) +env.setdefault("TABSYN_VAE_INFER_BATCH_SIZE", env["TABSYN_VAE_BATCH_SIZE"]) +env.setdefault("TABSYN_VAE_ENCODE_BATCH_SIZE", env["TABSYN_VAE_BATCH_SIZE"]) +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/hyperparameter/n3/tabsyn/tabsyn-n3-20260505_183033/_tabsyn_train.py b/hyperparameter/n3/tabsyn/tabsyn-n3-20260505_183033/_tabsyn_train.py new file mode 100644 index 0000000000000000000000000000000000000000..3f0c829160dd7e9885821375b9cca38b81ff4d87 --- /dev/null +++ b/hyperparameter/n3/tabsyn/tabsyn-n3-20260505_183033/_tabsyn_train.py @@ -0,0 +1,69 @@ +import os, sys, subprocess + +work_dir = "/work/output-Benchmark-trainonly-v1/n3/tabsyn/tabsyn-n3-20260505_183033" +dataname = "tabsyn_n3_tabsyn_n3_20260505_183033" +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", "0") +env.setdefault("TABSYN_VAE_BATCH_SIZE", "32") +env.setdefault("TABSYN_VAE_NUM_WORKERS", "0") +env.setdefault("TABSYN_VAE_EVAL_BATCH_SIZE", env["TABSYN_VAE_BATCH_SIZE"]) +env.setdefault("TABSYN_VAE_INFER_BATCH_SIZE", env["TABSYN_VAE_BATCH_SIZE"]) +env.setdefault("TABSYN_VAE_ENCODE_BATCH_SIZE", env["TABSYN_VAE_BATCH_SIZE"]) +# Safer defaults for wide tables on Docker: reduce shared-memory pressure in diffusion DataLoader. +env.setdefault("TABSYN_DIFFUSION_NUM_WORKERS", "0") +_te = None +if _te is not None: + env["TABSYN_VAE_EPOCHS"] = str(_te) + env["TABSYN_DIFFUSION_MAX_EPOCHS"] = str(max(_te + 1, 2)) + +# Data preprocessing is done on the host side (_prepare_data_dir) +# which creates .npy files, train/test CSVs, and info.json + +# Step 1: Train VAE (produces latent embeddings) +print(f"[TabSyn] Step 1/2: Training VAE in {tabsyn_root}, dataname={dataname}") +ret = subprocess.run( + [sys.executable, "main.py", + "--dataname", dataname, + "--mode", "train", + "--method", "vae", + "--gpu", "0"], + cwd=tabsyn_root, + env=env +) +if ret.returncode != 0: + print("[TabSyn] VAE training failed") + sys.exit(ret.returncode) + +# Step 2: Train diffusion model on latent space +print(f"[TabSyn] Step 2/2: Training diffusion model") +ret = subprocess.run( + [sys.executable, "main.py", + "--dataname", dataname, + "--mode", "train", + "--method", "tabsyn", + "--gpu", "0"], + cwd=tabsyn_root, + env=env +) +if ret.returncode != 0: + print("[TabSyn] Diffusion training failed") + sys.exit(ret.returncode) +print("[TabSyn] Training complete (VAE + Diffusion)") diff --git a/hyperparameter/n3/tabsyn/tabsyn-n3-20260505_183033/data/tabsyn_n3_tabsyn_n3_20260505_183033/X_cat_test.npy b/hyperparameter/n3/tabsyn/tabsyn-n3-20260505_183033/data/tabsyn_n3_tabsyn_n3_20260505_183033/X_cat_test.npy new file mode 100644 index 0000000000000000000000000000000000000000..24e2b0be40b07b6e79f803a82e6e38723e462320 --- /dev/null +++ b/hyperparameter/n3/tabsyn/tabsyn-n3-20260505_183033/data/tabsyn_n3_tabsyn_n3_20260505_183033/X_cat_test.npy @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:519697bb05272ccbf9fc4da2bd269c9eab90005e0671dad9ef2e5266215cdf67 +size 128 diff --git a/hyperparameter/n3/tabsyn/tabsyn-n3-20260505_183033/data/tabsyn_n3_tabsyn_n3_20260505_183033/X_cat_train.npy b/hyperparameter/n3/tabsyn/tabsyn-n3-20260505_183033/data/tabsyn_n3_tabsyn_n3_20260505_183033/X_cat_train.npy new file mode 100644 index 0000000000000000000000000000000000000000..24e2b0be40b07b6e79f803a82e6e38723e462320 --- /dev/null +++ b/hyperparameter/n3/tabsyn/tabsyn-n3-20260505_183033/data/tabsyn_n3_tabsyn_n3_20260505_183033/X_cat_train.npy @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:519697bb05272ccbf9fc4da2bd269c9eab90005e0671dad9ef2e5266215cdf67 +size 128 diff --git a/hyperparameter/n3/tabsyn/tabsyn-n3-20260505_183033/data/tabsyn_n3_tabsyn_n3_20260505_183033/X_num_test.npy b/hyperparameter/n3/tabsyn/tabsyn-n3-20260505_183033/data/tabsyn_n3_tabsyn_n3_20260505_183033/X_num_test.npy new file mode 100644 index 0000000000000000000000000000000000000000..94beb8413ef55592710518365965f4cb503523ee --- /dev/null +++ b/hyperparameter/n3/tabsyn/tabsyn-n3-20260505_183033/data/tabsyn_n3_tabsyn_n3_20260505_183033/X_num_test.npy @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:093d8f405d764277d5a007953f25ab6466f0857f71f0d8f3c437463fb5bf240a +size 172520 diff --git a/hyperparameter/n3/tabsyn/tabsyn-n3-20260505_183033/data/tabsyn_n3_tabsyn_n3_20260505_183033/X_num_train.npy b/hyperparameter/n3/tabsyn/tabsyn-n3-20260505_183033/data/tabsyn_n3_tabsyn_n3_20260505_183033/X_num_train.npy new file mode 100644 index 0000000000000000000000000000000000000000..94beb8413ef55592710518365965f4cb503523ee --- /dev/null +++ b/hyperparameter/n3/tabsyn/tabsyn-n3-20260505_183033/data/tabsyn_n3_tabsyn_n3_20260505_183033/X_num_train.npy @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:093d8f405d764277d5a007953f25ab6466f0857f71f0d8f3c437463fb5bf240a +size 172520 diff --git a/hyperparameter/n3/tabsyn/tabsyn-n3-20260505_183033/data/tabsyn_n3_tabsyn_n3_20260505_183033/info.json b/hyperparameter/n3/tabsyn/tabsyn-n3-20260505_183033/data/tabsyn_n3_tabsyn_n3_20260505_183033/info.json new file mode 100644 index 0000000000000000000000000000000000000000..614cce35d3115cb91b7b11ef3f2d6b6b81a97dbc --- /dev/null +++ b/hyperparameter/n3/tabsyn/tabsyn-n3-20260505_183033/data/tabsyn_n3_tabsyn_n3_20260505_183033/info.json @@ -0,0 +1,138 @@ +{ + "name": "tabsyn_n3_tabsyn_n3_20260505_183033", + "task_type": "regression", + "n_num_features": 11, + "n_cat_features": 0, + "train_size": 3918, + "num_col_idx": [ + 0, + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10 + ], + "cat_col_idx": [], + "target_col_idx": [ + 11 + ], + "column_names": [ + "fixed acidity", + "volatile acidity", + "citric acid", + "residual sugar", + "chlorides", + "free sulfur dioxide", + "total sulfur dioxide", + "density", + "pH", + "sulphates", + "alcohol", + "quality" + ], + "train_num": 3918, + "test_num": 3918, + "header": 0, + "file_type": "csv", + "data_path": "data/tabsyn_n3_tabsyn_n3_20260505_183033/train.csv", + "test_path": null, + "idx_mapping": { + "0": 0, + "1": 1, + "2": 2, + "3": 3, + "4": 4, + "5": 5, + "6": 6, + "7": 7, + "8": 8, + "9": 9, + "10": 10, + "11": 11 + }, + "inverse_idx_mapping": { + "0": 0, + "1": 1, + "2": 2, + "3": 3, + "4": 4, + "5": 5, + "6": 6, + "7": 7, + "8": 8, + "9": 9, + "10": 10, + "11": 11 + }, + "idx_name_mapping": { + "0": "fixed acidity", + "1": "volatile acidity", + "2": "citric acid", + "3": "residual sugar", + "4": "chlorides", + "5": "free sulfur dioxide", + "6": "total sulfur dioxide", + "7": "density", + "8": "pH", + "9": "sulphates", + "10": "alcohol", + "11": "quality" + }, + "metadata": { + "columns": { + "0": { + "sdtype": "numerical", + "computer_representation": "Float" + }, + "1": { + "sdtype": "numerical", + "computer_representation": "Float" + }, + "2": { + "sdtype": "numerical", + "computer_representation": "Float" + }, + "3": { + "sdtype": "numerical", + "computer_representation": "Float" + }, + "4": { + "sdtype": "numerical", + "computer_representation": "Float" + }, + "5": { + "sdtype": "numerical", + "computer_representation": "Float" + }, + "6": { + "sdtype": "numerical", + "computer_representation": "Float" + }, + "7": { + "sdtype": "numerical", + "computer_representation": "Float" + }, + "8": { + "sdtype": "numerical", + "computer_representation": "Float" + }, + "9": { + "sdtype": "numerical", + "computer_representation": "Float" + }, + "10": { + "sdtype": "numerical", + "computer_representation": "Float" + }, + "11": { + "sdtype": "numerical", + "computer_representation": "Float" + } + } + } +} \ No newline at end of file diff --git a/hyperparameter/n3/tabsyn/tabsyn-n3-20260505_183033/data/tabsyn_n3_tabsyn_n3_20260505_183033/test.csv b/hyperparameter/n3/tabsyn/tabsyn-n3-20260505_183033/data/tabsyn_n3_tabsyn_n3_20260505_183033/test.csv new file mode 100644 index 0000000000000000000000000000000000000000..87ca26726fe82ccbaa397919305b043c17eb374e --- /dev/null +++ b/hyperparameter/n3/tabsyn/tabsyn-n3-20260505_183033/data/tabsyn_n3_tabsyn_n3_20260505_183033/test.csv @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:7813c8cca73ba4bfc6559215257b341c21e459980ad17ae6ddc809306bc9a0b9 +size 229945 diff --git a/hyperparameter/n3/tabsyn/tabsyn-n3-20260505_183033/data/tabsyn_n3_tabsyn_n3_20260505_183033/train.csv b/hyperparameter/n3/tabsyn/tabsyn-n3-20260505_183033/data/tabsyn_n3_tabsyn_n3_20260505_183033/train.csv new file mode 100644 index 0000000000000000000000000000000000000000..87ca26726fe82ccbaa397919305b043c17eb374e --- /dev/null +++ b/hyperparameter/n3/tabsyn/tabsyn-n3-20260505_183033/data/tabsyn_n3_tabsyn_n3_20260505_183033/train.csv @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:7813c8cca73ba4bfc6559215257b341c21e459980ad17ae6ddc809306bc9a0b9 +size 229945 diff --git a/hyperparameter/n3/tabsyn/tabsyn-n3-20260505_183033/data/tabsyn_n3_tabsyn_n3_20260505_183033/y_test.npy b/hyperparameter/n3/tabsyn/tabsyn-n3-20260505_183033/data/tabsyn_n3_tabsyn_n3_20260505_183033/y_test.npy new file mode 100644 index 0000000000000000000000000000000000000000..59571a153fb0a2e415acb8f1ffcbb54e325414c6 --- /dev/null +++ b/hyperparameter/n3/tabsyn/tabsyn-n3-20260505_183033/data/tabsyn_n3_tabsyn_n3_20260505_183033/y_test.npy @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:1418131d428e1f98200104123714677e9ab4a2b8279082a63a1d663f7f09bb84 +size 31472 diff --git a/hyperparameter/n3/tabsyn/tabsyn-n3-20260505_183033/data/tabsyn_n3_tabsyn_n3_20260505_183033/y_train.npy b/hyperparameter/n3/tabsyn/tabsyn-n3-20260505_183033/data/tabsyn_n3_tabsyn_n3_20260505_183033/y_train.npy new file mode 100644 index 0000000000000000000000000000000000000000..59571a153fb0a2e415acb8f1ffcbb54e325414c6 --- /dev/null +++ b/hyperparameter/n3/tabsyn/tabsyn-n3-20260505_183033/data/tabsyn_n3_tabsyn_n3_20260505_183033/y_train.npy @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:1418131d428e1f98200104123714677e9ab4a2b8279082a63a1d663f7f09bb84 +size 31472 diff --git a/hyperparameter/n3/tabsyn/tabsyn-n3-20260505_183033/gen_20260505_183047.log b/hyperparameter/n3/tabsyn/tabsyn-n3-20260505_183033/gen_20260505_183047.log new file mode 100644 index 0000000000000000000000000000000000000000..8f742a185a40ee311804faaba1848a4b4e6c3836 --- /dev/null +++ b/hyperparameter/n3/tabsyn/tabsyn-n3-20260505_183033/gen_20260505_183047.log @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:8d4dbb6b02e959b763b895410de1b82eced944dcad936cd437bba30e538bffff +size 930 diff --git a/hyperparameter/n3/tabsyn/tabsyn-n3-20260505_183033/input_snapshot.json b/hyperparameter/n3/tabsyn/tabsyn-n3-20260505_183033/input_snapshot.json new file mode 100644 index 0000000000000000000000000000000000000000..35dea6fbed02718a51165764efffea61dcb428e5 --- /dev/null +++ b/hyperparameter/n3/tabsyn/tabsyn-n3-20260505_183033/input_snapshot.json @@ -0,0 +1,36 @@ +{ + "dataset_id": "n3", + "model": "tabsyn", + "inputs": { + "train_csv": { + "path": "/data/jialinzhang/SynthesizePipeline-server/DatasetNew/n3/n3-train.csv", + "exists": true, + "size": 211519, + "sha256": "2160a06db2fea02adb0ebb79d8d853bd2544580be301e71f6e8deeb1489a9009" + }, + "val_csv": { + "path": "/data/jialinzhang/SynthesizePipeline-server/DatasetNew/n3/n3-val.csv", + "exists": true, + "size": 26499, + "sha256": "d5ccfee07dfa9e7bdee5bb87642b43828e09f74c6cc0266a3d19d9feaa83106e" + }, + "test_csv": { + "path": "/data/jialinzhang/SynthesizePipeline-server/DatasetNew/n3/n3-test.csv", + "exists": true, + "size": 26676, + "sha256": "6f83aacb0d1747b95e287352a7fff5d9d65a1c127b773852346c68485c4ede47" + }, + "profile_json": { + "path": "/data/jialinzhang/SynthesizePipeline-server/DatasetNew/artifacts/data_core/tabular/n3/n3-dataset_profile.json", + "exists": true, + "size": 5235, + "sha256": "23d2e5904a2ca90cbf8d6e3c75887681721e9b90cc705c31a680c11513d0c46f" + }, + "contract_json": { + "path": "/data/jialinzhang/SynthesizePipeline-server/DatasetNew/artifacts/data_core/tabular/n3/n3-dataset_contract_v1.json", + "exists": true, + "size": 6281, + "sha256": "c0cc56f5fe28e1b65927255c6e3c2b0e9479862c2ec6f2fea1664da36c9a3a09" + } + } +} \ No newline at end of file diff --git a/hyperparameter/n3/tabsyn/tabsyn-n3-20260505_183033/public_gate/normalized_schema_snapshot.json b/hyperparameter/n3/tabsyn/tabsyn-n3-20260505_183033/public_gate/normalized_schema_snapshot.json new file mode 100644 index 0000000000000000000000000000000000000000..c41fe304503de23190a02e6cbfafa35b3bf134d3 --- /dev/null +++ b/hyperparameter/n3/tabsyn/tabsyn-n3-20260505_183033/public_gate/normalized_schema_snapshot.json @@ -0,0 +1,259 @@ +{ + "dataset_id": "n3", + "target_column": "quality", + "task_type": "classification", + "columns": [ + { + "name": "fixed acidity", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 66, + "unique_ratio": 0.016845, + "example_values": [ + "7.1", + "8.5", + "6.4", + "6.8", + "7.6" + ] + } + }, + { + "name": "volatile acidity", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 121, + "unique_ratio": 0.030883, + "example_values": [ + "0.31", + "0.21", + "0.24", + "0.43", + "0.27" + ] + } + }, + { + "name": "citric acid", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 85, + "unique_ratio": 0.021695, + "example_values": [ + "0.17", + "0.41", + "0.31", + "0.25", + "0.3" + ] + } + }, + { + "name": "residual sugar", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 296, + "unique_ratio": 0.075549, + "example_values": [ + "1", + "4.3", + "2.8", + "13", + "12.9" + ] + } + }, + { + "name": "chlorides", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 147, + "unique_ratio": 0.037519, + "example_values": [ + "0.042", + "0.036", + "0.038", + "0.047", + "0.033" + ] + } + }, + { + "name": "free sulfur dioxide", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 120, + "unique_ratio": 0.030628, + "example_values": [ + "21", + "24", + "41", + "43", + "69" + ] + } + }, + { + "name": "total sulfur dioxide", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 244, + "unique_ratio": 0.062277, + "example_values": [ + "144", + "99", + "114", + "132", + "160" + ] + } + }, + { + "name": "density", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 839, + "unique_ratio": 0.21414, + "example_values": [ + "0.99304", + "0.9947", + "0.99155", + "0.98975", + "0.99705" + ] + } + }, + { + "name": "pH", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 100, + "unique_ratio": 0.025523, + "example_values": [ + "3.13", + "3.18", + "3.37", + "3.21", + "3.16" + ] + } + }, + { + "name": "sulphates", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 78, + "unique_ratio": 0.019908, + "example_values": [ + "0.4", + "0.53", + "0.66", + "0.47", + "0.5" + ] + } + }, + { + "name": "alcohol", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 97, + "unique_ratio": 0.024758, + "example_values": [ + "9.6", + "9.7", + "11.7", + "13.4", + "8.8" + ] + } + }, + { + "name": "quality", + "role": "target", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 7, + "unique_ratio": 0.001787, + "example_values": [ + "5", + "6", + "7", + "8", + "3" + ] + } + } + ] +} \ No newline at end of file diff --git a/hyperparameter/n3/tabsyn/tabsyn-n3-20260505_183033/public_gate/public_gate_report.json b/hyperparameter/n3/tabsyn/tabsyn-n3-20260505_183033/public_gate/public_gate_report.json new file mode 100644 index 0000000000000000000000000000000000000000..93b97319f739e39079d6c6549fd2020f8a6dac25 --- /dev/null +++ b/hyperparameter/n3/tabsyn/tabsyn-n3-20260505_183033/public_gate/public_gate_report.json @@ -0,0 +1,37 @@ +{ + "dataset_id": "n3", + "status": "pass", + "checks": [ + { + "check_id": "PG001_csv_parse_ok", + "status": "pass" + }, + { + "check_id": "PG002_split_header_consistent", + "status": "pass" + }, + { + "check_id": "PG003_profile_header_match", + "status": "pass" + }, + { + "check_id": "PG004_missing_token_normalized", + "status": "pass" + }, + { + "check_id": "PG005_semantic_type_validated", + "status": "pass" + }, + { + "check_id": "PG006_target_defined_and_valid", + "status": "pass" + } + ], + "target_column": "quality", + "task_type": "classification", + "input_splits": { + "train": "/data/jialinzhang/SynthesizePipeline-server/DatasetNew/n3/n3-train.csv", + "val": "/data/jialinzhang/SynthesizePipeline-server/DatasetNew/n3/n3-val.csv", + "test": "/data/jialinzhang/SynthesizePipeline-server/DatasetNew/n3/n3-test.csv" + } +} \ No newline at end of file diff --git a/hyperparameter/n3/tabsyn/tabsyn-n3-20260505_183033/public_gate/staged_input_manifest.json b/hyperparameter/n3/tabsyn/tabsyn-n3-20260505_183033/public_gate/staged_input_manifest.json new file mode 100644 index 0000000000000000000000000000000000000000..75c07160d83ba73907c635e8b8677fff9a3ede7e --- /dev/null +++ b/hyperparameter/n3/tabsyn/tabsyn-n3-20260505_183033/public_gate/staged_input_manifest.json @@ -0,0 +1,264 @@ +{ + "dataset_id": "n3", + "target_column": "quality", + "task_type": "classification", + "train_csv": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/n3/tabsyn/tabsyn-n3-20260505_183033/staged/public/train.csv", + "val_csv": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/n3/tabsyn/tabsyn-n3-20260505_183033/staged/public/val.csv", + "test_csv": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/n3/tabsyn/tabsyn-n3-20260505_183033/staged/public/test.csv", + "features_json": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/n3/tabsyn/tabsyn-n3-20260505_183033/staged/public/staged_features.json", + "public_gate_report": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/n3/tabsyn/tabsyn-n3-20260505_183033/public_gate/public_gate_report.json", + "column_schema": [ + { + "name": "fixed acidity", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 66, + "unique_ratio": 0.016845, + "example_values": [ + "7.1", + "8.5", + "6.4", + "6.8", + "7.6" + ] + } + }, + { + "name": "volatile acidity", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 121, + "unique_ratio": 0.030883, + "example_values": [ + "0.31", + "0.21", + "0.24", + "0.43", + "0.27" + ] + } + }, + { + "name": "citric acid", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 85, + "unique_ratio": 0.021695, + "example_values": [ + "0.17", + "0.41", + "0.31", + "0.25", + "0.3" + ] + } + }, + { + "name": "residual sugar", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 296, + "unique_ratio": 0.075549, + "example_values": [ + "1", + "4.3", + "2.8", + "13", + "12.9" + ] + } + }, + { + "name": "chlorides", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 147, + "unique_ratio": 0.037519, + "example_values": [ + "0.042", + "0.036", + "0.038", + "0.047", + "0.033" + ] + } + }, + { + "name": "free sulfur dioxide", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 120, + "unique_ratio": 0.030628, + "example_values": [ + "21", + "24", + "41", + "43", + "69" + ] + } + }, + { + "name": "total sulfur dioxide", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 244, + "unique_ratio": 0.062277, + "example_values": [ + "144", + "99", + "114", + "132", + "160" + ] + } + }, + { + "name": "density", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 839, + "unique_ratio": 0.21414, + "example_values": [ + "0.99304", + "0.9947", + "0.99155", + "0.98975", + "0.99705" + ] + } + }, + { + "name": "pH", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 100, + "unique_ratio": 0.025523, + "example_values": [ + "3.13", + "3.18", + "3.37", + "3.21", + "3.16" + ] + } + }, + { + "name": "sulphates", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 78, + "unique_ratio": 0.019908, + "example_values": [ + "0.4", + "0.53", + "0.66", + "0.47", + "0.5" + ] + } + }, + { + "name": "alcohol", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 97, + "unique_ratio": 0.024758, + "example_values": [ + "9.6", + "9.7", + "11.7", + "13.4", + "8.8" + ] + } + }, + { + "name": "quality", + "role": "target", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 7, + "unique_ratio": 0.001787, + "example_values": [ + "5", + "6", + "7", + "8", + "3" + ] + } + } + ] +} \ No newline at end of file diff --git a/hyperparameter/n3/tabsyn/tabsyn-n3-20260505_183033/run_config.json b/hyperparameter/n3/tabsyn/tabsyn-n3-20260505_183033/run_config.json new file mode 100644 index 0000000000000000000000000000000000000000..cfedbe7684467d187d07332ff98296e09c85f7b0 --- /dev/null +++ b/hyperparameter/n3/tabsyn/tabsyn-n3-20260505_183033/run_config.json @@ -0,0 +1,49 @@ +{ + "schema_version": 1, + "recorded_at": "2026-05-05T18:30:33", + "dataset_id": "n3", + "model": "tabsyn", + "work_dir": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/n3/tabsyn/tabsyn-n3-20260505_183033", + "dataset_source_requested": "new", + "dataset_source_resolved": "new", + "cli_args": { + "model": "tabsyn", + "dataset": "n3", + "dataset_source": "new", + "train": true, + "generate": true, + "num_rows": 0, + "epochs": null, + "output_dir": null, + "model_dir": null, + "work_dir": null, + "resume": false, + "no_stats": false + }, + "resolved": { + "num_rows": 3918, + "model_path": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/n3/tabsyn/tabsyn-n3-20260505_183033", + "output_csv": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/n3/tabsyn/tabsyn-n3-20260505_183033/tabsyn-n3-3918-20260505_183047.csv" + }, + "input_artifacts": { + "public_gate_report": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/n3/tabsyn/tabsyn-n3-20260505_183033/public_gate/public_gate_report.json", + "public_manifest": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/n3/tabsyn/tabsyn-n3-20260505_183033/public_gate/staged_input_manifest.json", + "model_manifest": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/n3/tabsyn/tabsyn-n3-20260505_183033/staged/tabsyn/model_input_manifest.json", + "train_csv": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/n3/tabsyn/tabsyn-n3-20260505_183033/staged/public/train.csv", + "features_json": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/n3/tabsyn/tabsyn-n3-20260505_183033/staged/public/staged_features.json", + "target_column": "quality", + "task_type": "classification" + }, + "env_overrides": { + "BENCHMARK_TABSYN_GPUS": "device=3", + "TABSYN_DIFFUSION_MAX_EPOCHS": "8", + "TABSYN_DIFFUSION_NUM_WORKERS": "0", + "TABSYN_RESUME": "0", + "TABSYN_VAE_BATCH_SIZE": "128", + "TABSYN_VAE_ENCODE_BATCH_SIZE": "256", + "TABSYN_VAE_EPOCHS": "8", + "TABSYN_VAE_EVAL_BATCH_SIZE": "256", + "TABSYN_VAE_INFER_BATCH_SIZE": "256", + "TABSYN_VAE_NUM_WORKERS": "0" + } +} \ No newline at end of file diff --git a/hyperparameter/n3/tabsyn/tabsyn-n3-20260505_183033/runtime_result.json b/hyperparameter/n3/tabsyn/tabsyn-n3-20260505_183033/runtime_result.json new file mode 100644 index 0000000000000000000000000000000000000000..2d9736b2a67b4195c3869c4397fdfd946223b556 --- /dev/null +++ b/hyperparameter/n3/tabsyn/tabsyn-n3-20260505_183033/runtime_result.json @@ -0,0 +1,27 @@ +{ + "dataset_id": "n3", + "model": "tabsyn", + "run_id": "tabsyn-n3-20260505_183033", + "public_gate_status": "pass", + "adapter_ready_status": "pass", + "train_status": "success", + "generate_status": "success", + "reason_code": null, + "reason_detail": null, + "artifacts": { + "synthetic_csv": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/n3/tabsyn/tabsyn-n3-20260505_183033/tabsyn-n3-3918-20260505_183047.csv", + "model_path": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/n3/tabsyn/tabsyn-n3-20260505_183033" + }, + "timings": { + "train": { + "started_at": "2026-05-05T18:30:33", + "ended_at": "2026-05-05T18:30:47", + "duration_sec": 14.475 + }, + "generate": { + "started_at": "2026-05-05T18:30:47", + "ended_at": "2026-05-05T18:30:52", + "duration_sec": 4.995 + } + } +} \ No newline at end of file diff --git a/hyperparameter/n3/tabsyn/tabsyn-n3-20260505_183033/staged/public/staged_features.json b/hyperparameter/n3/tabsyn/tabsyn-n3-20260505_183033/staged/public/staged_features.json new file mode 100644 index 0000000000000000000000000000000000000000..08fe4d766d091d2f2ddba724a16b9509cbe4c390 --- /dev/null +++ b/hyperparameter/n3/tabsyn/tabsyn-n3-20260505_183033/staged/public/staged_features.json @@ -0,0 +1,62 @@ +[ + { + "feature_name": "fixed acidity", + "data_type": "continuous", + "is_target": false + }, + { + "feature_name": "volatile acidity", + "data_type": "continuous", + "is_target": false + }, + { + "feature_name": "citric acid", + "data_type": "continuous", + "is_target": false + }, + { + "feature_name": "residual sugar", + "data_type": "continuous", + "is_target": false + }, + { + "feature_name": "chlorides", + "data_type": "continuous", + "is_target": false + }, + { + "feature_name": "free sulfur dioxide", + "data_type": "continuous", + "is_target": false + }, + { + "feature_name": "total sulfur dioxide", + "data_type": "continuous", + "is_target": false + }, + { + "feature_name": "density", + "data_type": "continuous", + "is_target": false + }, + { + "feature_name": "pH", + "data_type": "continuous", + "is_target": false + }, + { + "feature_name": "sulphates", + "data_type": "continuous", + "is_target": false + }, + { + "feature_name": "alcohol", + "data_type": "continuous", + "is_target": false + }, + { + "feature_name": "quality", + "data_type": "continuous", + "is_target": true + } +] \ No newline at end of file diff --git a/hyperparameter/n3/tabsyn/tabsyn-n3-20260505_183033/staged/public/test.csv b/hyperparameter/n3/tabsyn/tabsyn-n3-20260505_183033/staged/public/test.csv new file mode 100644 index 0000000000000000000000000000000000000000..db5cd50d3746410ea470625fa2ba2c8e9775cc0d --- /dev/null +++ b/hyperparameter/n3/tabsyn/tabsyn-n3-20260505_183033/staged/public/test.csv @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:19e107152a94432e2a37ff045c00cfe35e1be30208b1553080d7dd0ede256d3b +size 28944 diff --git a/hyperparameter/n3/tabsyn/tabsyn-n3-20260505_183033/staged/public/train.csv b/hyperparameter/n3/tabsyn/tabsyn-n3-20260505_183033/staged/public/train.csv new file mode 100644 index 0000000000000000000000000000000000000000..87ca26726fe82ccbaa397919305b043c17eb374e --- /dev/null +++ b/hyperparameter/n3/tabsyn/tabsyn-n3-20260505_183033/staged/public/train.csv @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:7813c8cca73ba4bfc6559215257b341c21e459980ad17ae6ddc809306bc9a0b9 +size 229945 diff --git a/hyperparameter/n3/tabsyn/tabsyn-n3-20260505_183033/staged/public/val.csv b/hyperparameter/n3/tabsyn/tabsyn-n3-20260505_183033/staged/public/val.csv new file mode 100644 index 0000000000000000000000000000000000000000..6acf84c76c47093b513c46d5503972a2dff275c0 --- /dev/null +++ b/hyperparameter/n3/tabsyn/tabsyn-n3-20260505_183033/staged/public/val.csv @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:cf5979d9675567d9d6642640c9b84fc6c49e492604144723c30f50516c05cee6 +size 28791 diff --git a/hyperparameter/n3/tabsyn/tabsyn-n3-20260505_183033/staged/tabsyn/adapter_report.json b/hyperparameter/n3/tabsyn/tabsyn-n3-20260505_183033/staged/tabsyn/adapter_report.json new file mode 100644 index 0000000000000000000000000000000000000000..d38d263a4e3ab806b073e0a417d89850e4304388 --- /dev/null +++ b/hyperparameter/n3/tabsyn/tabsyn-n3-20260505_183033/staged/tabsyn/adapter_report.json @@ -0,0 +1,7 @@ +{ + "adapter_ready_status": "pass", + "adapter_fail_reason_code": null, + "adapter_fail_detail": null, + "adapter_transforms_applied": [], + "model_input_manifest": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/n3/tabsyn/tabsyn-n3-20260505_183033/staged/tabsyn/model_input_manifest.json" +} \ No newline at end of file diff --git a/hyperparameter/n3/tabsyn/tabsyn-n3-20260505_183033/staged/tabsyn/adapter_transforms_applied.json b/hyperparameter/n3/tabsyn/tabsyn-n3-20260505_183033/staged/tabsyn/adapter_transforms_applied.json new file mode 100644 index 0000000000000000000000000000000000000000..0637a088a01e8ddab3bf3fa98dbe804cbde1a0dc --- /dev/null +++ b/hyperparameter/n3/tabsyn/tabsyn-n3-20260505_183033/staged/tabsyn/adapter_transforms_applied.json @@ -0,0 +1 @@ +[] \ No newline at end of file diff --git a/hyperparameter/n3/tabsyn/tabsyn-n3-20260505_183033/staged/tabsyn/model_input_manifest.json b/hyperparameter/n3/tabsyn/tabsyn-n3-20260505_183033/staged/tabsyn/model_input_manifest.json new file mode 100644 index 0000000000000000000000000000000000000000..778d7b78b2133ada9fdb38fac489ab0357de61ee --- /dev/null +++ b/hyperparameter/n3/tabsyn/tabsyn-n3-20260505_183033/staged/tabsyn/model_input_manifest.json @@ -0,0 +1,266 @@ +{ + "dataset_id": "n3", + "model": "tabsyn", + "target_column": "quality", + "task_type": "classification", + "column_schema": [ + { + "name": "fixed acidity", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 66, + "unique_ratio": 0.016845, + "example_values": [ + "7.1", + "8.5", + "6.4", + "6.8", + "7.6" + ] + } + }, + { + "name": "volatile acidity", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 121, + "unique_ratio": 0.030883, + "example_values": [ + "0.31", + "0.21", + "0.24", + "0.43", + "0.27" + ] + } + }, + { + "name": "citric acid", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 85, + "unique_ratio": 0.021695, + "example_values": [ + "0.17", + "0.41", + "0.31", + "0.25", + "0.3" + ] + } + }, + { + "name": "residual sugar", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 296, + "unique_ratio": 0.075549, + "example_values": [ + "1", + "4.3", + "2.8", + "13", + "12.9" + ] + } + }, + { + "name": "chlorides", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 147, + "unique_ratio": 0.037519, + "example_values": [ + "0.042", + "0.036", + "0.038", + "0.047", + "0.033" + ] + } + }, + { + "name": "free sulfur dioxide", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 120, + "unique_ratio": 0.030628, + "example_values": [ + "21", + "24", + "41", + "43", + "69" + ] + } + }, + { + "name": "total sulfur dioxide", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 244, + "unique_ratio": 0.062277, + "example_values": [ + "144", + "99", + "114", + "132", + "160" + ] + } + }, + { + "name": "density", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 839, + "unique_ratio": 0.21414, + "example_values": [ + "0.99304", + "0.9947", + "0.99155", + "0.98975", + "0.99705" + ] + } + }, + { + "name": "pH", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 100, + "unique_ratio": 0.025523, + "example_values": [ + "3.13", + "3.18", + "3.37", + "3.21", + "3.16" + ] + } + }, + { + "name": "sulphates", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 78, + "unique_ratio": 0.019908, + "example_values": [ + "0.4", + "0.53", + "0.66", + "0.47", + "0.5" + ] + } + }, + { + "name": "alcohol", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 97, + "unique_ratio": 0.024758, + "example_values": [ + "9.6", + "9.7", + "11.7", + "13.4", + "8.8" + ] + } + }, + { + "name": "quality", + "role": "target", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 7, + "unique_ratio": 0.001787, + "example_values": [ + "5", + "6", + "7", + "8", + "3" + ] + } + } + ], + "public_manifest": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/n3/tabsyn/tabsyn-n3-20260505_183033/public_gate/staged_input_manifest.json", + "train_csv": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/n3/tabsyn/tabsyn-n3-20260505_183033/staged/public/train.csv", + "val_csv": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/n3/tabsyn/tabsyn-n3-20260505_183033/staged/public/val.csv", + "test_csv": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/n3/tabsyn/tabsyn-n3-20260505_183033/staged/public/test.csv", + "features_json": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/n3/tabsyn/tabsyn-n3-20260505_183033/staged/public/staged_features.json", + "public_gate_report": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/n3/tabsyn/tabsyn-n3-20260505_183033/public_gate/public_gate_report.json" +} \ No newline at end of file diff --git a/hyperparameter/n3/tabsyn/tabsyn-n3-20260505_183033/synthetic/tabsyn_n3_tabsyn_n3_20260505_183033/real.csv b/hyperparameter/n3/tabsyn/tabsyn-n3-20260505_183033/synthetic/tabsyn_n3_tabsyn_n3_20260505_183033/real.csv new file mode 100644 index 0000000000000000000000000000000000000000..87ca26726fe82ccbaa397919305b043c17eb374e --- /dev/null +++ b/hyperparameter/n3/tabsyn/tabsyn-n3-20260505_183033/synthetic/tabsyn_n3_tabsyn_n3_20260505_183033/real.csv @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:7813c8cca73ba4bfc6559215257b341c21e459980ad17ae6ddc809306bc9a0b9 +size 229945 diff --git a/hyperparameter/n3/tabsyn/tabsyn-n3-20260505_183033/synthetic/tabsyn_n3_tabsyn_n3_20260505_183033/test.csv b/hyperparameter/n3/tabsyn/tabsyn-n3-20260505_183033/synthetic/tabsyn_n3_tabsyn_n3_20260505_183033/test.csv new file mode 100644 index 0000000000000000000000000000000000000000..87ca26726fe82ccbaa397919305b043c17eb374e --- /dev/null +++ b/hyperparameter/n3/tabsyn/tabsyn-n3-20260505_183033/synthetic/tabsyn_n3_tabsyn_n3_20260505_183033/test.csv @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:7813c8cca73ba4bfc6559215257b341c21e459980ad17ae6ddc809306bc9a0b9 +size 229945 diff --git a/hyperparameter/n3/tabsyn/tabsyn-n3-20260505_183033/tabsyn-n3-3918-20260505_183047.csv b/hyperparameter/n3/tabsyn/tabsyn-n3-20260505_183033/tabsyn-n3-3918-20260505_183047.csv new file mode 100644 index 0000000000000000000000000000000000000000..33be175bba41b879d681cb82b05dfc89902fd7a4 --- /dev/null +++ b/hyperparameter/n3/tabsyn/tabsyn-n3-20260505_183033/tabsyn-n3-3918-20260505_183047.csv @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:7549b8fea786f3d2c15f4e0d79367eb1d62c0c44251980313422282661bc0e60 +size 341209 diff --git a/hyperparameter/n3/tabsyn/tabsyn-n3-20260505_183033/tabsyn_ckpt/diffusion/tabsyn_n3_tabsyn_n3_20260505_183033/model.pt b/hyperparameter/n3/tabsyn/tabsyn-n3-20260505_183033/tabsyn_ckpt/diffusion/tabsyn_n3_tabsyn_n3_20260505_183033/model.pt new file mode 100644 index 0000000000000000000000000000000000000000..5bd13e13550c02ea30d5333936407d96d98ef873 --- /dev/null +++ b/hyperparameter/n3/tabsyn/tabsyn-n3-20260505_183033/tabsyn_ckpt/diffusion/tabsyn_n3_tabsyn_n3_20260505_183033/model.pt @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:ef1daf0bfcb05680297f479b00f89cf87290b1202ba888b3202a1f4b96fc6edb +size 42374609 diff --git a/hyperparameter/n3/tabsyn/tabsyn-n3-20260505_183033/tabsyn_ckpt/diffusion/tabsyn_n3_tabsyn_n3_20260505_183033/model_0.pt b/hyperparameter/n3/tabsyn/tabsyn-n3-20260505_183033/tabsyn_ckpt/diffusion/tabsyn_n3_tabsyn_n3_20260505_183033/model_0.pt new file mode 100644 index 0000000000000000000000000000000000000000..63d1c673a929d5f0523adf40a0696fe3944636c3 --- /dev/null +++ b/hyperparameter/n3/tabsyn/tabsyn-n3-20260505_183033/tabsyn_ckpt/diffusion/tabsyn_n3_tabsyn_n3_20260505_183033/model_0.pt @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:ed1bc4d821984b84f120f86ce56f670b1a8c825dd20b6796c23ce807fcdbb4c9 +size 42374969 diff --git a/hyperparameter/n3/tabsyn/tabsyn-n3-20260505_183033/tabsyn_ckpt/vae/tabsyn_n3_tabsyn_n3_20260505_183033/decoder.pt b/hyperparameter/n3/tabsyn/tabsyn-n3-20260505_183033/tabsyn_ckpt/vae/tabsyn_n3_tabsyn_n3_20260505_183033/decoder.pt new file mode 100644 index 0000000000000000000000000000000000000000..597bcac43fe315893a7f9592a2c4600f2e2b9bda --- /dev/null +++ b/hyperparameter/n3/tabsyn/tabsyn-n3-20260505_183033/tabsyn_ckpt/vae/tabsyn_n3_tabsyn_n3_20260505_183033/decoder.pt @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:bbb28ff9e2991d379fc39415bbbc326753412856adc341bf9044106681da9e54 +size 21318 diff --git a/hyperparameter/n3/tabsyn/tabsyn-n3-20260505_183033/tabsyn_ckpt/vae/tabsyn_n3_tabsyn_n3_20260505_183033/encoder.pt b/hyperparameter/n3/tabsyn/tabsyn-n3-20260505_183033/tabsyn_ckpt/vae/tabsyn_n3_tabsyn_n3_20260505_183033/encoder.pt new file mode 100644 index 0000000000000000000000000000000000000000..fcee2797d69b80cfea9343fa3d03de4f2dda9425 --- /dev/null +++ b/hyperparameter/n3/tabsyn/tabsyn-n3-20260505_183033/tabsyn_ckpt/vae/tabsyn_n3_tabsyn_n3_20260505_183033/encoder.pt @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:70298d7648e812b73ecb351602f4ddefe685c3adc581d9487d04a729a6938da9 +size 22525 diff --git a/hyperparameter/n3/tabsyn/tabsyn-n3-20260505_183033/tabsyn_ckpt/vae/tabsyn_n3_tabsyn_n3_20260505_183033/model.pt b/hyperparameter/n3/tabsyn/tabsyn-n3-20260505_183033/tabsyn_ckpt/vae/tabsyn_n3_tabsyn_n3_20260505_183033/model.pt new file mode 100644 index 0000000000000000000000000000000000000000..3a800770c6c48f960a9c618dfda9f232d31a0c86 --- /dev/null +++ b/hyperparameter/n3/tabsyn/tabsyn-n3-20260505_183033/tabsyn_ckpt/vae/tabsyn_n3_tabsyn_n3_20260505_183033/model.pt @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:622c1b5e2c1fbd5832b85bacf982bc758b2de03cf4e9a93ad79169a7cc7de869 +size 62012 diff --git a/hyperparameter/n3/tabsyn/tabsyn-n3-20260505_183033/tabsyn_ckpt/vae/tabsyn_n3_tabsyn_n3_20260505_183033/train_z.npy b/hyperparameter/n3/tabsyn/tabsyn-n3-20260505_183033/tabsyn_ckpt/vae/tabsyn_n3_tabsyn_n3_20260505_183033/train_z.npy new file mode 100644 index 0000000000000000000000000000000000000000..878c59ad1db449a5028e07152a34f563a8c74b77 --- /dev/null +++ b/hyperparameter/n3/tabsyn/tabsyn-n3-20260505_183033/tabsyn_ckpt/vae/tabsyn_n3_tabsyn_n3_20260505_183033/train_z.npy @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:987fad1d067775d141cf4cd1ba25578f617db30ea787d41f053d9b081b625935 +size 815072 diff --git a/hyperparameter/n3/tabsyn/tabsyn-n3-20260505_183033/train_20260505_183033.log b/hyperparameter/n3/tabsyn/tabsyn-n3-20260505_183033/train_20260505_183033.log new file mode 100644 index 0000000000000000000000000000000000000000..c08ea7ed7ca44a1a64c201c9409aa7c35875093a --- /dev/null +++ b/hyperparameter/n3/tabsyn/tabsyn-n3-20260505_183033/train_20260505_183033.log @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:6197a0de60bd56f50352378b086966705a9a253983c344cd0f2f8e917e532377 +size 8330 diff --git a/hyperparameter/n3/tabsyn/tabsyn-n3-20260505_183104/_tabsyn_sample.py b/hyperparameter/n3/tabsyn/tabsyn-n3-20260505_183104/_tabsyn_sample.py new file mode 100644 index 0000000000000000000000000000000000000000..0915b4892edc230c0550cf78d96a5647facfda60 --- /dev/null +++ b/hyperparameter/n3/tabsyn/tabsyn-n3-20260505_183104/_tabsyn_sample.py @@ -0,0 +1,43 @@ +import os, sys, subprocess + +work_dir = "/work/output-Benchmark-trainonly-v1/n3/tabsyn/tabsyn-n3-20260505_183104" +dataname = "tabsyn_n3_tabsyn_n3_20260505_183104" +output_csv = "/work/output-Benchmark-trainonly-v1/n3/tabsyn/tabsyn-n3-20260505_183104/tabsyn-n3-3918-20260505_183118.csv" +tabsyn_root = "/workspace/tabsyn" + +assert os.path.exists(tabsyn_root), f"TabSyn source not mounted: {tabsyn_root}" + +old = os.environ.get("PYTHONPATH", "") +os.environ["PYTHONPATH"] = tabsyn_root + (os.pathsep + old if old else "") +sys.path.insert(0, tabsyn_root) + +os.chdir(tabsyn_root) + +# Ensure data symlink exists +data_link = os.path.join(tabsyn_root, "data", dataname) +data_src = os.path.join(work_dir, "data", dataname) +os.makedirs(os.path.join(tabsyn_root, "data"), exist_ok=True) +if os.path.exists(data_link): + os.remove(data_link) +os.symlink(data_src, data_link) + +print(f"[TabSyn] Sampling 3918 rows") +env = os.environ.copy() +env.setdefault("TABSYN_RESUME", "0") +env.setdefault("TABSYN_VAE_BATCH_SIZE", "32") +env.setdefault("TABSYN_VAE_EVAL_BATCH_SIZE", env["TABSYN_VAE_BATCH_SIZE"]) +env.setdefault("TABSYN_VAE_INFER_BATCH_SIZE", env["TABSYN_VAE_BATCH_SIZE"]) +env.setdefault("TABSYN_VAE_ENCODE_BATCH_SIZE", env["TABSYN_VAE_BATCH_SIZE"]) +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/hyperparameter/n3/tabsyn/tabsyn-n3-20260505_183104/_tabsyn_train.py b/hyperparameter/n3/tabsyn/tabsyn-n3-20260505_183104/_tabsyn_train.py new file mode 100644 index 0000000000000000000000000000000000000000..b2e7ea1cb9d3660d0f9f411a28c64e7b07ce5252 --- /dev/null +++ b/hyperparameter/n3/tabsyn/tabsyn-n3-20260505_183104/_tabsyn_train.py @@ -0,0 +1,69 @@ +import os, sys, subprocess + +work_dir = "/work/output-Benchmark-trainonly-v1/n3/tabsyn/tabsyn-n3-20260505_183104" +dataname = "tabsyn_n3_tabsyn_n3_20260505_183104" +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", "0") +env.setdefault("TABSYN_VAE_BATCH_SIZE", "32") +env.setdefault("TABSYN_VAE_NUM_WORKERS", "0") +env.setdefault("TABSYN_VAE_EVAL_BATCH_SIZE", env["TABSYN_VAE_BATCH_SIZE"]) +env.setdefault("TABSYN_VAE_INFER_BATCH_SIZE", env["TABSYN_VAE_BATCH_SIZE"]) +env.setdefault("TABSYN_VAE_ENCODE_BATCH_SIZE", env["TABSYN_VAE_BATCH_SIZE"]) +# Safer defaults for wide tables on Docker: reduce shared-memory pressure in diffusion DataLoader. +env.setdefault("TABSYN_DIFFUSION_NUM_WORKERS", "0") +_te = None +if _te is not None: + env["TABSYN_VAE_EPOCHS"] = str(_te) + env["TABSYN_DIFFUSION_MAX_EPOCHS"] = str(max(_te + 1, 2)) + +# Data preprocessing is done on the host side (_prepare_data_dir) +# which creates .npy files, train/test CSVs, and info.json + +# Step 1: Train VAE (produces latent embeddings) +print(f"[TabSyn] Step 1/2: Training VAE in {tabsyn_root}, dataname={dataname}") +ret = subprocess.run( + [sys.executable, "main.py", + "--dataname", dataname, + "--mode", "train", + "--method", "vae", + "--gpu", "0"], + cwd=tabsyn_root, + env=env +) +if ret.returncode != 0: + print("[TabSyn] VAE training failed") + sys.exit(ret.returncode) + +# Step 2: Train diffusion model on latent space +print(f"[TabSyn] Step 2/2: Training diffusion model") +ret = subprocess.run( + [sys.executable, "main.py", + "--dataname", dataname, + "--mode", "train", + "--method", "tabsyn", + "--gpu", "0"], + cwd=tabsyn_root, + env=env +) +if ret.returncode != 0: + print("[TabSyn] Diffusion training failed") + sys.exit(ret.returncode) +print("[TabSyn] Training complete (VAE + Diffusion)") diff --git a/hyperparameter/n3/tabsyn/tabsyn-n3-20260505_183104/data/tabsyn_n3_tabsyn_n3_20260505_183104/X_cat_test.npy b/hyperparameter/n3/tabsyn/tabsyn-n3-20260505_183104/data/tabsyn_n3_tabsyn_n3_20260505_183104/X_cat_test.npy new file mode 100644 index 0000000000000000000000000000000000000000..24e2b0be40b07b6e79f803a82e6e38723e462320 --- /dev/null +++ b/hyperparameter/n3/tabsyn/tabsyn-n3-20260505_183104/data/tabsyn_n3_tabsyn_n3_20260505_183104/X_cat_test.npy @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:519697bb05272ccbf9fc4da2bd269c9eab90005e0671dad9ef2e5266215cdf67 +size 128 diff --git a/hyperparameter/n3/tabsyn/tabsyn-n3-20260505_183104/data/tabsyn_n3_tabsyn_n3_20260505_183104/X_cat_train.npy b/hyperparameter/n3/tabsyn/tabsyn-n3-20260505_183104/data/tabsyn_n3_tabsyn_n3_20260505_183104/X_cat_train.npy new file mode 100644 index 0000000000000000000000000000000000000000..24e2b0be40b07b6e79f803a82e6e38723e462320 --- /dev/null +++ b/hyperparameter/n3/tabsyn/tabsyn-n3-20260505_183104/data/tabsyn_n3_tabsyn_n3_20260505_183104/X_cat_train.npy @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:519697bb05272ccbf9fc4da2bd269c9eab90005e0671dad9ef2e5266215cdf67 +size 128 diff --git a/hyperparameter/n3/tabsyn/tabsyn-n3-20260505_183104/data/tabsyn_n3_tabsyn_n3_20260505_183104/X_num_test.npy b/hyperparameter/n3/tabsyn/tabsyn-n3-20260505_183104/data/tabsyn_n3_tabsyn_n3_20260505_183104/X_num_test.npy new file mode 100644 index 0000000000000000000000000000000000000000..94beb8413ef55592710518365965f4cb503523ee --- /dev/null +++ b/hyperparameter/n3/tabsyn/tabsyn-n3-20260505_183104/data/tabsyn_n3_tabsyn_n3_20260505_183104/X_num_test.npy @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:093d8f405d764277d5a007953f25ab6466f0857f71f0d8f3c437463fb5bf240a +size 172520 diff --git a/hyperparameter/n3/tabsyn/tabsyn-n3-20260505_183104/data/tabsyn_n3_tabsyn_n3_20260505_183104/X_num_train.npy b/hyperparameter/n3/tabsyn/tabsyn-n3-20260505_183104/data/tabsyn_n3_tabsyn_n3_20260505_183104/X_num_train.npy new file mode 100644 index 0000000000000000000000000000000000000000..94beb8413ef55592710518365965f4cb503523ee --- /dev/null +++ b/hyperparameter/n3/tabsyn/tabsyn-n3-20260505_183104/data/tabsyn_n3_tabsyn_n3_20260505_183104/X_num_train.npy @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:093d8f405d764277d5a007953f25ab6466f0857f71f0d8f3c437463fb5bf240a +size 172520 diff --git a/hyperparameter/n3/tabsyn/tabsyn-n3-20260505_183104/data/tabsyn_n3_tabsyn_n3_20260505_183104/info.json b/hyperparameter/n3/tabsyn/tabsyn-n3-20260505_183104/data/tabsyn_n3_tabsyn_n3_20260505_183104/info.json new file mode 100644 index 0000000000000000000000000000000000000000..3e1bd64b90f11582d1a283fcf88c21b38d12429b --- /dev/null +++ b/hyperparameter/n3/tabsyn/tabsyn-n3-20260505_183104/data/tabsyn_n3_tabsyn_n3_20260505_183104/info.json @@ -0,0 +1,138 @@ +{ + "name": "tabsyn_n3_tabsyn_n3_20260505_183104", + "task_type": "regression", + "n_num_features": 11, + "n_cat_features": 0, + "train_size": 3918, + "num_col_idx": [ + 0, + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10 + ], + "cat_col_idx": [], + "target_col_idx": [ + 11 + ], + "column_names": [ + "fixed acidity", + "volatile acidity", + "citric acid", + "residual sugar", + "chlorides", + "free sulfur dioxide", + "total sulfur dioxide", + "density", + "pH", + "sulphates", + "alcohol", + "quality" + ], + "train_num": 3918, + "test_num": 3918, + "header": 0, + "file_type": "csv", + "data_path": "data/tabsyn_n3_tabsyn_n3_20260505_183104/train.csv", + "test_path": null, + "idx_mapping": { + "0": 0, + "1": 1, + "2": 2, + "3": 3, + "4": 4, + "5": 5, + "6": 6, + "7": 7, + "8": 8, + "9": 9, + "10": 10, + "11": 11 + }, + "inverse_idx_mapping": { + "0": 0, + "1": 1, + "2": 2, + "3": 3, + "4": 4, + "5": 5, + "6": 6, + "7": 7, + "8": 8, + "9": 9, + "10": 10, + "11": 11 + }, + "idx_name_mapping": { + "0": "fixed acidity", + "1": "volatile acidity", + "2": "citric acid", + "3": "residual sugar", + "4": "chlorides", + "5": "free sulfur dioxide", + "6": "total sulfur dioxide", + "7": "density", + "8": "pH", + "9": "sulphates", + "10": "alcohol", + "11": "quality" + }, + "metadata": { + "columns": { + "0": { + "sdtype": "numerical", + "computer_representation": "Float" + }, + "1": { + "sdtype": "numerical", + "computer_representation": "Float" + }, + "2": { + "sdtype": "numerical", + "computer_representation": "Float" + }, + "3": { + "sdtype": "numerical", + "computer_representation": "Float" + }, + "4": { + "sdtype": "numerical", + "computer_representation": "Float" + }, + "5": { + "sdtype": "numerical", + "computer_representation": "Float" + }, + "6": { + "sdtype": "numerical", + "computer_representation": "Float" + }, + "7": { + "sdtype": "numerical", + "computer_representation": "Float" + }, + "8": { + "sdtype": "numerical", + "computer_representation": "Float" + }, + "9": { + "sdtype": "numerical", + "computer_representation": "Float" + }, + "10": { + "sdtype": "numerical", + "computer_representation": "Float" + }, + "11": { + "sdtype": "numerical", + "computer_representation": "Float" + } + } + } +} \ No newline at end of file diff --git a/hyperparameter/n3/tabsyn/tabsyn-n3-20260505_183104/data/tabsyn_n3_tabsyn_n3_20260505_183104/test.csv b/hyperparameter/n3/tabsyn/tabsyn-n3-20260505_183104/data/tabsyn_n3_tabsyn_n3_20260505_183104/test.csv new file mode 100644 index 0000000000000000000000000000000000000000..87ca26726fe82ccbaa397919305b043c17eb374e --- /dev/null +++ b/hyperparameter/n3/tabsyn/tabsyn-n3-20260505_183104/data/tabsyn_n3_tabsyn_n3_20260505_183104/test.csv @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:7813c8cca73ba4bfc6559215257b341c21e459980ad17ae6ddc809306bc9a0b9 +size 229945 diff --git a/hyperparameter/n3/tabsyn/tabsyn-n3-20260505_183104/data/tabsyn_n3_tabsyn_n3_20260505_183104/train.csv b/hyperparameter/n3/tabsyn/tabsyn-n3-20260505_183104/data/tabsyn_n3_tabsyn_n3_20260505_183104/train.csv new file mode 100644 index 0000000000000000000000000000000000000000..87ca26726fe82ccbaa397919305b043c17eb374e --- /dev/null +++ b/hyperparameter/n3/tabsyn/tabsyn-n3-20260505_183104/data/tabsyn_n3_tabsyn_n3_20260505_183104/train.csv @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:7813c8cca73ba4bfc6559215257b341c21e459980ad17ae6ddc809306bc9a0b9 +size 229945 diff --git a/hyperparameter/n3/tabsyn/tabsyn-n3-20260505_183104/data/tabsyn_n3_tabsyn_n3_20260505_183104/y_test.npy b/hyperparameter/n3/tabsyn/tabsyn-n3-20260505_183104/data/tabsyn_n3_tabsyn_n3_20260505_183104/y_test.npy new file mode 100644 index 0000000000000000000000000000000000000000..59571a153fb0a2e415acb8f1ffcbb54e325414c6 --- /dev/null +++ b/hyperparameter/n3/tabsyn/tabsyn-n3-20260505_183104/data/tabsyn_n3_tabsyn_n3_20260505_183104/y_test.npy @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:1418131d428e1f98200104123714677e9ab4a2b8279082a63a1d663f7f09bb84 +size 31472 diff --git a/hyperparameter/n3/tabsyn/tabsyn-n3-20260505_183104/data/tabsyn_n3_tabsyn_n3_20260505_183104/y_train.npy b/hyperparameter/n3/tabsyn/tabsyn-n3-20260505_183104/data/tabsyn_n3_tabsyn_n3_20260505_183104/y_train.npy new file mode 100644 index 0000000000000000000000000000000000000000..59571a153fb0a2e415acb8f1ffcbb54e325414c6 --- /dev/null +++ b/hyperparameter/n3/tabsyn/tabsyn-n3-20260505_183104/data/tabsyn_n3_tabsyn_n3_20260505_183104/y_train.npy @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:1418131d428e1f98200104123714677e9ab4a2b8279082a63a1d663f7f09bb84 +size 31472 diff --git a/hyperparameter/n3/tabsyn/tabsyn-n3-20260505_183104/gen_20260505_183118.log b/hyperparameter/n3/tabsyn/tabsyn-n3-20260505_183104/gen_20260505_183118.log new file mode 100644 index 0000000000000000000000000000000000000000..e8419d9e0920d24fe7f545660e5ff64e7497b287 --- /dev/null +++ b/hyperparameter/n3/tabsyn/tabsyn-n3-20260505_183104/gen_20260505_183118.log @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:225fd1c2cf2231b8e055cfa01b854c6bab7b3db79c8ed19a358dfe54e3186784 +size 929 diff --git a/hyperparameter/n3/tabsyn/tabsyn-n3-20260505_183104/input_snapshot.json b/hyperparameter/n3/tabsyn/tabsyn-n3-20260505_183104/input_snapshot.json new file mode 100644 index 0000000000000000000000000000000000000000..35dea6fbed02718a51165764efffea61dcb428e5 --- /dev/null +++ b/hyperparameter/n3/tabsyn/tabsyn-n3-20260505_183104/input_snapshot.json @@ -0,0 +1,36 @@ +{ + "dataset_id": "n3", + "model": "tabsyn", + "inputs": { + "train_csv": { + "path": "/data/jialinzhang/SynthesizePipeline-server/DatasetNew/n3/n3-train.csv", + "exists": true, + "size": 211519, + "sha256": "2160a06db2fea02adb0ebb79d8d853bd2544580be301e71f6e8deeb1489a9009" + }, + "val_csv": { + "path": "/data/jialinzhang/SynthesizePipeline-server/DatasetNew/n3/n3-val.csv", + "exists": true, + "size": 26499, + "sha256": "d5ccfee07dfa9e7bdee5bb87642b43828e09f74c6cc0266a3d19d9feaa83106e" + }, + "test_csv": { + "path": "/data/jialinzhang/SynthesizePipeline-server/DatasetNew/n3/n3-test.csv", + "exists": true, + "size": 26676, + "sha256": "6f83aacb0d1747b95e287352a7fff5d9d65a1c127b773852346c68485c4ede47" + }, + "profile_json": { + "path": "/data/jialinzhang/SynthesizePipeline-server/DatasetNew/artifacts/data_core/tabular/n3/n3-dataset_profile.json", + "exists": true, + "size": 5235, + "sha256": "23d2e5904a2ca90cbf8d6e3c75887681721e9b90cc705c31a680c11513d0c46f" + }, + "contract_json": { + "path": "/data/jialinzhang/SynthesizePipeline-server/DatasetNew/artifacts/data_core/tabular/n3/n3-dataset_contract_v1.json", + "exists": true, + "size": 6281, + "sha256": "c0cc56f5fe28e1b65927255c6e3c2b0e9479862c2ec6f2fea1664da36c9a3a09" + } + } +} \ No newline at end of file diff --git a/hyperparameter/n3/tabsyn/tabsyn-n3-20260505_183104/public_gate/normalized_schema_snapshot.json b/hyperparameter/n3/tabsyn/tabsyn-n3-20260505_183104/public_gate/normalized_schema_snapshot.json new file mode 100644 index 0000000000000000000000000000000000000000..c41fe304503de23190a02e6cbfafa35b3bf134d3 --- /dev/null +++ b/hyperparameter/n3/tabsyn/tabsyn-n3-20260505_183104/public_gate/normalized_schema_snapshot.json @@ -0,0 +1,259 @@ +{ + "dataset_id": "n3", + "target_column": "quality", + "task_type": "classification", + "columns": [ + { + "name": "fixed acidity", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 66, + "unique_ratio": 0.016845, + "example_values": [ + "7.1", + "8.5", + "6.4", + "6.8", + "7.6" + ] + } + }, + { + "name": "volatile acidity", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 121, + "unique_ratio": 0.030883, + "example_values": [ + "0.31", + "0.21", + "0.24", + "0.43", + "0.27" + ] + } + }, + { + "name": "citric acid", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 85, + "unique_ratio": 0.021695, + "example_values": [ + "0.17", + "0.41", + "0.31", + "0.25", + "0.3" + ] + } + }, + { + "name": "residual sugar", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 296, + "unique_ratio": 0.075549, + "example_values": [ + "1", + "4.3", + "2.8", + "13", + "12.9" + ] + } + }, + { + "name": "chlorides", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 147, + "unique_ratio": 0.037519, + "example_values": [ + "0.042", + "0.036", + "0.038", + "0.047", + "0.033" + ] + } + }, + { + "name": "free sulfur dioxide", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 120, + "unique_ratio": 0.030628, + "example_values": [ + "21", + "24", + "41", + "43", + "69" + ] + } + }, + { + "name": "total sulfur dioxide", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 244, + "unique_ratio": 0.062277, + "example_values": [ + "144", + "99", + "114", + "132", + "160" + ] + } + }, + { + "name": "density", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 839, + "unique_ratio": 0.21414, + "example_values": [ + "0.99304", + "0.9947", + "0.99155", + "0.98975", + "0.99705" + ] + } + }, + { + "name": "pH", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 100, + "unique_ratio": 0.025523, + "example_values": [ + "3.13", + "3.18", + "3.37", + "3.21", + "3.16" + ] + } + }, + { + "name": "sulphates", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 78, + "unique_ratio": 0.019908, + "example_values": [ + "0.4", + "0.53", + "0.66", + "0.47", + "0.5" + ] + } + }, + { + "name": "alcohol", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 97, + "unique_ratio": 0.024758, + "example_values": [ + "9.6", + "9.7", + "11.7", + "13.4", + "8.8" + ] + } + }, + { + "name": "quality", + "role": "target", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 7, + "unique_ratio": 0.001787, + "example_values": [ + "5", + "6", + "7", + "8", + "3" + ] + } + } + ] +} \ No newline at end of file diff --git a/hyperparameter/n3/tabsyn/tabsyn-n3-20260505_183104/public_gate/public_gate_report.json b/hyperparameter/n3/tabsyn/tabsyn-n3-20260505_183104/public_gate/public_gate_report.json new file mode 100644 index 0000000000000000000000000000000000000000..93b97319f739e39079d6c6549fd2020f8a6dac25 --- /dev/null +++ b/hyperparameter/n3/tabsyn/tabsyn-n3-20260505_183104/public_gate/public_gate_report.json @@ -0,0 +1,37 @@ +{ + "dataset_id": "n3", + "status": "pass", + "checks": [ + { + "check_id": "PG001_csv_parse_ok", + "status": "pass" + }, + { + "check_id": "PG002_split_header_consistent", + "status": "pass" + }, + { + "check_id": "PG003_profile_header_match", + "status": "pass" + }, + { + "check_id": "PG004_missing_token_normalized", + "status": "pass" + }, + { + "check_id": "PG005_semantic_type_validated", + "status": "pass" + }, + { + "check_id": "PG006_target_defined_and_valid", + "status": "pass" + } + ], + "target_column": "quality", + "task_type": "classification", + "input_splits": { + "train": "/data/jialinzhang/SynthesizePipeline-server/DatasetNew/n3/n3-train.csv", + "val": "/data/jialinzhang/SynthesizePipeline-server/DatasetNew/n3/n3-val.csv", + "test": "/data/jialinzhang/SynthesizePipeline-server/DatasetNew/n3/n3-test.csv" + } +} \ No newline at end of file diff --git a/hyperparameter/n3/tabsyn/tabsyn-n3-20260505_183104/public_gate/staged_input_manifest.json b/hyperparameter/n3/tabsyn/tabsyn-n3-20260505_183104/public_gate/staged_input_manifest.json new file mode 100644 index 0000000000000000000000000000000000000000..7a93d3dfecce8a71bd4397e0e75b825f8f7ed8b9 --- /dev/null +++ b/hyperparameter/n3/tabsyn/tabsyn-n3-20260505_183104/public_gate/staged_input_manifest.json @@ -0,0 +1,264 @@ +{ + "dataset_id": "n3", + "target_column": "quality", + "task_type": "classification", + "train_csv": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/n3/tabsyn/tabsyn-n3-20260505_183104/staged/public/train.csv", + "val_csv": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/n3/tabsyn/tabsyn-n3-20260505_183104/staged/public/val.csv", + "test_csv": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/n3/tabsyn/tabsyn-n3-20260505_183104/staged/public/test.csv", + "features_json": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/n3/tabsyn/tabsyn-n3-20260505_183104/staged/public/staged_features.json", + "public_gate_report": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/n3/tabsyn/tabsyn-n3-20260505_183104/public_gate/public_gate_report.json", + "column_schema": [ + { + "name": "fixed acidity", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 66, + "unique_ratio": 0.016845, + "example_values": [ + "7.1", + "8.5", + "6.4", + "6.8", + "7.6" + ] + } + }, + { + "name": "volatile acidity", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 121, + "unique_ratio": 0.030883, + "example_values": [ + "0.31", + "0.21", + "0.24", + "0.43", + "0.27" + ] + } + }, + { + "name": "citric acid", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 85, + "unique_ratio": 0.021695, + "example_values": [ + "0.17", + "0.41", + "0.31", + "0.25", + "0.3" + ] + } + }, + { + "name": "residual sugar", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 296, + "unique_ratio": 0.075549, + "example_values": [ + "1", + "4.3", + "2.8", + "13", + "12.9" + ] + } + }, + { + "name": "chlorides", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 147, + "unique_ratio": 0.037519, + "example_values": [ + "0.042", + "0.036", + "0.038", + "0.047", + "0.033" + ] + } + }, + { + "name": "free sulfur dioxide", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 120, + "unique_ratio": 0.030628, + "example_values": [ + "21", + "24", + "41", + "43", + "69" + ] + } + }, + { + "name": "total sulfur dioxide", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 244, + "unique_ratio": 0.062277, + "example_values": [ + "144", + "99", + "114", + "132", + "160" + ] + } + }, + { + "name": "density", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 839, + "unique_ratio": 0.21414, + "example_values": [ + "0.99304", + "0.9947", + "0.99155", + "0.98975", + "0.99705" + ] + } + }, + { + "name": "pH", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 100, + "unique_ratio": 0.025523, + "example_values": [ + "3.13", + "3.18", + "3.37", + "3.21", + "3.16" + ] + } + }, + { + "name": "sulphates", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 78, + "unique_ratio": 0.019908, + "example_values": [ + "0.4", + "0.53", + "0.66", + "0.47", + "0.5" + ] + } + }, + { + "name": "alcohol", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 97, + "unique_ratio": 0.024758, + "example_values": [ + "9.6", + "9.7", + "11.7", + "13.4", + "8.8" + ] + } + }, + { + "name": "quality", + "role": "target", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 7, + "unique_ratio": 0.001787, + "example_values": [ + "5", + "6", + "7", + "8", + "3" + ] + } + } + ] +} \ No newline at end of file diff --git a/hyperparameter/n3/tabsyn/tabsyn-n3-20260505_183104/run_config.json b/hyperparameter/n3/tabsyn/tabsyn-n3-20260505_183104/run_config.json new file mode 100644 index 0000000000000000000000000000000000000000..57f8abe502f05664d60d2d9b074c93cd81bdecf3 --- /dev/null +++ b/hyperparameter/n3/tabsyn/tabsyn-n3-20260505_183104/run_config.json @@ -0,0 +1,49 @@ +{ + "schema_version": 1, + "recorded_at": "2026-05-05T18:31:04", + "dataset_id": "n3", + "model": "tabsyn", + "work_dir": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/n3/tabsyn/tabsyn-n3-20260505_183104", + "dataset_source_requested": "new", + "dataset_source_resolved": "new", + "cli_args": { + "model": "tabsyn", + "dataset": "n3", + "dataset_source": "new", + "train": true, + "generate": true, + "num_rows": 0, + "epochs": null, + "output_dir": null, + "model_dir": null, + "work_dir": null, + "resume": false, + "no_stats": false + }, + "resolved": { + "num_rows": 3918, + "model_path": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/n3/tabsyn/tabsyn-n3-20260505_183104", + "output_csv": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/n3/tabsyn/tabsyn-n3-20260505_183104/tabsyn-n3-3918-20260505_183118.csv" + }, + "input_artifacts": { + "public_gate_report": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/n3/tabsyn/tabsyn-n3-20260505_183104/public_gate/public_gate_report.json", + "public_manifest": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/n3/tabsyn/tabsyn-n3-20260505_183104/public_gate/staged_input_manifest.json", + "model_manifest": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/n3/tabsyn/tabsyn-n3-20260505_183104/staged/tabsyn/model_input_manifest.json", + "train_csv": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/n3/tabsyn/tabsyn-n3-20260505_183104/staged/public/train.csv", + "features_json": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/n3/tabsyn/tabsyn-n3-20260505_183104/staged/public/staged_features.json", + "target_column": "quality", + "task_type": "classification" + }, + "env_overrides": { + "BENCHMARK_TABSYN_GPUS": "device=3", + "TABSYN_DIFFUSION_MAX_EPOCHS": "10", + "TABSYN_DIFFUSION_NUM_WORKERS": "0", + "TABSYN_RESUME": "0", + "TABSYN_VAE_BATCH_SIZE": "256", + "TABSYN_VAE_ENCODE_BATCH_SIZE": "256", + "TABSYN_VAE_EPOCHS": "10", + "TABSYN_VAE_EVAL_BATCH_SIZE": "256", + "TABSYN_VAE_INFER_BATCH_SIZE": "256", + "TABSYN_VAE_NUM_WORKERS": "0" + } +} \ No newline at end of file diff --git a/hyperparameter/n3/tabsyn/tabsyn-n3-20260505_183104/runtime_result.json b/hyperparameter/n3/tabsyn/tabsyn-n3-20260505_183104/runtime_result.json new file mode 100644 index 0000000000000000000000000000000000000000..9f1cc0b3821e59ba71fe29bad7c240804dd007ed --- /dev/null +++ b/hyperparameter/n3/tabsyn/tabsyn-n3-20260505_183104/runtime_result.json @@ -0,0 +1,27 @@ +{ + "dataset_id": "n3", + "model": "tabsyn", + "run_id": "tabsyn-n3-20260505_183104", + "public_gate_status": "pass", + "adapter_ready_status": "pass", + "train_status": "success", + "generate_status": "success", + "reason_code": null, + "reason_detail": null, + "artifacts": { + "synthetic_csv": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/n3/tabsyn/tabsyn-n3-20260505_183104/tabsyn-n3-3918-20260505_183118.csv", + "model_path": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/n3/tabsyn/tabsyn-n3-20260505_183104" + }, + "timings": { + "train": { + "started_at": "2026-05-05T18:31:04", + "ended_at": "2026-05-05T18:31:18", + "duration_sec": 13.423 + }, + "generate": { + "started_at": "2026-05-05T18:31:18", + "ended_at": "2026-05-05T18:31:23", + "duration_sec": 4.82 + } + } +} \ No newline at end of file diff --git a/hyperparameter/n3/tabsyn/tabsyn-n3-20260505_183104/staged/public/staged_features.json b/hyperparameter/n3/tabsyn/tabsyn-n3-20260505_183104/staged/public/staged_features.json new file mode 100644 index 0000000000000000000000000000000000000000..08fe4d766d091d2f2ddba724a16b9509cbe4c390 --- /dev/null +++ b/hyperparameter/n3/tabsyn/tabsyn-n3-20260505_183104/staged/public/staged_features.json @@ -0,0 +1,62 @@ +[ + { + "feature_name": "fixed acidity", + "data_type": "continuous", + "is_target": false + }, + { + "feature_name": "volatile acidity", + "data_type": "continuous", + "is_target": false + }, + { + "feature_name": "citric acid", + "data_type": "continuous", + "is_target": false + }, + { + "feature_name": "residual sugar", + "data_type": "continuous", + "is_target": false + }, + { + "feature_name": "chlorides", + "data_type": "continuous", + "is_target": false + }, + { + "feature_name": "free sulfur dioxide", + "data_type": "continuous", + "is_target": false + }, + { + "feature_name": "total sulfur dioxide", + "data_type": "continuous", + "is_target": false + }, + { + "feature_name": "density", + "data_type": "continuous", + "is_target": false + }, + { + "feature_name": "pH", + "data_type": "continuous", + "is_target": false + }, + { + "feature_name": "sulphates", + "data_type": "continuous", + "is_target": false + }, + { + "feature_name": "alcohol", + "data_type": "continuous", + "is_target": false + }, + { + "feature_name": "quality", + "data_type": "continuous", + "is_target": true + } +] \ No newline at end of file diff --git a/hyperparameter/n3/tabsyn/tabsyn-n3-20260505_183104/staged/public/test.csv b/hyperparameter/n3/tabsyn/tabsyn-n3-20260505_183104/staged/public/test.csv new file mode 100644 index 0000000000000000000000000000000000000000..db5cd50d3746410ea470625fa2ba2c8e9775cc0d --- /dev/null +++ b/hyperparameter/n3/tabsyn/tabsyn-n3-20260505_183104/staged/public/test.csv @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:19e107152a94432e2a37ff045c00cfe35e1be30208b1553080d7dd0ede256d3b +size 28944 diff --git a/hyperparameter/n3/tabsyn/tabsyn-n3-20260505_183104/staged/public/train.csv b/hyperparameter/n3/tabsyn/tabsyn-n3-20260505_183104/staged/public/train.csv new file mode 100644 index 0000000000000000000000000000000000000000..87ca26726fe82ccbaa397919305b043c17eb374e --- /dev/null +++ b/hyperparameter/n3/tabsyn/tabsyn-n3-20260505_183104/staged/public/train.csv @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:7813c8cca73ba4bfc6559215257b341c21e459980ad17ae6ddc809306bc9a0b9 +size 229945 diff --git a/hyperparameter/n3/tabsyn/tabsyn-n3-20260505_183104/staged/public/val.csv b/hyperparameter/n3/tabsyn/tabsyn-n3-20260505_183104/staged/public/val.csv new file mode 100644 index 0000000000000000000000000000000000000000..6acf84c76c47093b513c46d5503972a2dff275c0 --- /dev/null +++ b/hyperparameter/n3/tabsyn/tabsyn-n3-20260505_183104/staged/public/val.csv @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:cf5979d9675567d9d6642640c9b84fc6c49e492604144723c30f50516c05cee6 +size 28791 diff --git a/hyperparameter/n3/tabsyn/tabsyn-n3-20260505_183104/staged/tabsyn/adapter_report.json b/hyperparameter/n3/tabsyn/tabsyn-n3-20260505_183104/staged/tabsyn/adapter_report.json new file mode 100644 index 0000000000000000000000000000000000000000..27b3ce8384aea01bca85479fe8e353d8b5891df1 --- /dev/null +++ b/hyperparameter/n3/tabsyn/tabsyn-n3-20260505_183104/staged/tabsyn/adapter_report.json @@ -0,0 +1,7 @@ +{ + "adapter_ready_status": "pass", + "adapter_fail_reason_code": null, + "adapter_fail_detail": null, + "adapter_transforms_applied": [], + "model_input_manifest": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/n3/tabsyn/tabsyn-n3-20260505_183104/staged/tabsyn/model_input_manifest.json" +} \ No newline at end of file diff --git a/hyperparameter/n3/tabsyn/tabsyn-n3-20260505_183104/staged/tabsyn/adapter_transforms_applied.json b/hyperparameter/n3/tabsyn/tabsyn-n3-20260505_183104/staged/tabsyn/adapter_transforms_applied.json new file mode 100644 index 0000000000000000000000000000000000000000..0637a088a01e8ddab3bf3fa98dbe804cbde1a0dc --- /dev/null +++ b/hyperparameter/n3/tabsyn/tabsyn-n3-20260505_183104/staged/tabsyn/adapter_transforms_applied.json @@ -0,0 +1 @@ +[] \ No newline at end of file diff --git a/hyperparameter/n3/tabsyn/tabsyn-n3-20260505_183104/staged/tabsyn/model_input_manifest.json b/hyperparameter/n3/tabsyn/tabsyn-n3-20260505_183104/staged/tabsyn/model_input_manifest.json new file mode 100644 index 0000000000000000000000000000000000000000..1ba122b59ad4124b41e7ccc44b586f64e89bc3ee --- /dev/null +++ b/hyperparameter/n3/tabsyn/tabsyn-n3-20260505_183104/staged/tabsyn/model_input_manifest.json @@ -0,0 +1,266 @@ +{ + "dataset_id": "n3", + "model": "tabsyn", + "target_column": "quality", + "task_type": "classification", + "column_schema": [ + { + "name": "fixed acidity", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 66, + "unique_ratio": 0.016845, + "example_values": [ + "7.1", + "8.5", + "6.4", + "6.8", + "7.6" + ] + } + }, + { + "name": "volatile acidity", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 121, + "unique_ratio": 0.030883, + "example_values": [ + "0.31", + "0.21", + "0.24", + "0.43", + "0.27" + ] + } + }, + { + "name": "citric acid", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 85, + "unique_ratio": 0.021695, + "example_values": [ + "0.17", + "0.41", + "0.31", + "0.25", + "0.3" + ] + } + }, + { + "name": "residual sugar", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 296, + "unique_ratio": 0.075549, + "example_values": [ + "1", + "4.3", + "2.8", + "13", + "12.9" + ] + } + }, + { + "name": "chlorides", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 147, + "unique_ratio": 0.037519, + "example_values": [ + "0.042", + "0.036", + "0.038", + "0.047", + "0.033" + ] + } + }, + { + "name": "free sulfur dioxide", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 120, + "unique_ratio": 0.030628, + "example_values": [ + "21", + "24", + "41", + "43", + "69" + ] + } + }, + { + "name": "total sulfur dioxide", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 244, + "unique_ratio": 0.062277, + "example_values": [ + "144", + "99", + "114", + "132", + "160" + ] + } + }, + { + "name": "density", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 839, + "unique_ratio": 0.21414, + "example_values": [ + "0.99304", + "0.9947", + "0.99155", + "0.98975", + "0.99705" + ] + } + }, + { + "name": "pH", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 100, + "unique_ratio": 0.025523, + "example_values": [ + "3.13", + "3.18", + "3.37", + "3.21", + "3.16" + ] + } + }, + { + "name": "sulphates", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 78, + "unique_ratio": 0.019908, + "example_values": [ + "0.4", + "0.53", + "0.66", + "0.47", + "0.5" + ] + } + }, + { + "name": "alcohol", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 97, + "unique_ratio": 0.024758, + "example_values": [ + "9.6", + "9.7", + "11.7", + "13.4", + "8.8" + ] + } + }, + { + "name": "quality", + "role": "target", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 7, + "unique_ratio": 0.001787, + "example_values": [ + "5", + "6", + "7", + "8", + "3" + ] + } + } + ], + "public_manifest": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/n3/tabsyn/tabsyn-n3-20260505_183104/public_gate/staged_input_manifest.json", + "train_csv": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/n3/tabsyn/tabsyn-n3-20260505_183104/staged/public/train.csv", + "val_csv": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/n3/tabsyn/tabsyn-n3-20260505_183104/staged/public/val.csv", + "test_csv": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/n3/tabsyn/tabsyn-n3-20260505_183104/staged/public/test.csv", + "features_json": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/n3/tabsyn/tabsyn-n3-20260505_183104/staged/public/staged_features.json", + "public_gate_report": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/n3/tabsyn/tabsyn-n3-20260505_183104/public_gate/public_gate_report.json" +} \ No newline at end of file diff --git a/hyperparameter/n3/tabsyn/tabsyn-n3-20260505_183104/synthetic/tabsyn_n3_tabsyn_n3_20260505_183104/real.csv b/hyperparameter/n3/tabsyn/tabsyn-n3-20260505_183104/synthetic/tabsyn_n3_tabsyn_n3_20260505_183104/real.csv new file mode 100644 index 0000000000000000000000000000000000000000..87ca26726fe82ccbaa397919305b043c17eb374e --- /dev/null +++ b/hyperparameter/n3/tabsyn/tabsyn-n3-20260505_183104/synthetic/tabsyn_n3_tabsyn_n3_20260505_183104/real.csv @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:7813c8cca73ba4bfc6559215257b341c21e459980ad17ae6ddc809306bc9a0b9 +size 229945 diff --git a/hyperparameter/n3/tabsyn/tabsyn-n3-20260505_183104/synthetic/tabsyn_n3_tabsyn_n3_20260505_183104/test.csv b/hyperparameter/n3/tabsyn/tabsyn-n3-20260505_183104/synthetic/tabsyn_n3_tabsyn_n3_20260505_183104/test.csv new file mode 100644 index 0000000000000000000000000000000000000000..87ca26726fe82ccbaa397919305b043c17eb374e --- /dev/null +++ b/hyperparameter/n3/tabsyn/tabsyn-n3-20260505_183104/synthetic/tabsyn_n3_tabsyn_n3_20260505_183104/test.csv @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:7813c8cca73ba4bfc6559215257b341c21e459980ad17ae6ddc809306bc9a0b9 +size 229945 diff --git a/hyperparameter/n3/tabsyn/tabsyn-n3-20260505_183104/tabsyn-n3-3918-20260505_183118.csv b/hyperparameter/n3/tabsyn/tabsyn-n3-20260505_183104/tabsyn-n3-3918-20260505_183118.csv new file mode 100644 index 0000000000000000000000000000000000000000..72ca4184a0d83ee54a506ef3071006bbb7b8c9dc --- /dev/null +++ b/hyperparameter/n3/tabsyn/tabsyn-n3-20260505_183104/tabsyn-n3-3918-20260505_183118.csv @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:43591684ff8bbdb5b804c2fe1805a11c0488465f82ade8e197493b44af3a52af +size 355780 diff --git a/hyperparameter/n3/tabsyn/tabsyn-n3-20260505_183104/tabsyn_ckpt/diffusion/tabsyn_n3_tabsyn_n3_20260505_183104/model.pt b/hyperparameter/n3/tabsyn/tabsyn-n3-20260505_183104/tabsyn_ckpt/diffusion/tabsyn_n3_tabsyn_n3_20260505_183104/model.pt new file mode 100644 index 0000000000000000000000000000000000000000..6b3fead7dd5b0d4f83be7622454a6d5eab55ca39 --- /dev/null +++ b/hyperparameter/n3/tabsyn/tabsyn-n3-20260505_183104/tabsyn_ckpt/diffusion/tabsyn_n3_tabsyn_n3_20260505_183104/model.pt @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:3b84d1e476d3babfd9d21313d793b3d69e75f999e959c212f86cb927c2e76098 +size 42374609 diff --git a/hyperparameter/n3/tabsyn/tabsyn-n3-20260505_183104/tabsyn_ckpt/diffusion/tabsyn_n3_tabsyn_n3_20260505_183104/model_0.pt b/hyperparameter/n3/tabsyn/tabsyn-n3-20260505_183104/tabsyn_ckpt/diffusion/tabsyn_n3_tabsyn_n3_20260505_183104/model_0.pt new file mode 100644 index 0000000000000000000000000000000000000000..8730fb76dee3a413e4463c7442542c4382c4418d --- /dev/null +++ b/hyperparameter/n3/tabsyn/tabsyn-n3-20260505_183104/tabsyn_ckpt/diffusion/tabsyn_n3_tabsyn_n3_20260505_183104/model_0.pt @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:4e94769de0f06ab51de5ff258f7ac4b151372dc06cae8461caeb00708d82fb9f +size 42374969 diff --git a/hyperparameter/n3/tabsyn/tabsyn-n3-20260505_183104/tabsyn_ckpt/vae/tabsyn_n3_tabsyn_n3_20260505_183104/decoder.pt b/hyperparameter/n3/tabsyn/tabsyn-n3-20260505_183104/tabsyn_ckpt/vae/tabsyn_n3_tabsyn_n3_20260505_183104/decoder.pt new file mode 100644 index 0000000000000000000000000000000000000000..636274b5614c8cc084aac7beb3d554320ecbfcdb --- /dev/null +++ b/hyperparameter/n3/tabsyn/tabsyn-n3-20260505_183104/tabsyn_ckpt/vae/tabsyn_n3_tabsyn_n3_20260505_183104/decoder.pt @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:3eaa849d9fb53bde8995cb6fb397031faf23418c3d1a5aec898950b2ee57c775 +size 21318 diff --git a/hyperparameter/n3/tabsyn/tabsyn-n3-20260505_183104/tabsyn_ckpt/vae/tabsyn_n3_tabsyn_n3_20260505_183104/encoder.pt b/hyperparameter/n3/tabsyn/tabsyn-n3-20260505_183104/tabsyn_ckpt/vae/tabsyn_n3_tabsyn_n3_20260505_183104/encoder.pt new file mode 100644 index 0000000000000000000000000000000000000000..30cd602f0f29c7817d5288e9de7b50c65aff9cc3 --- /dev/null +++ b/hyperparameter/n3/tabsyn/tabsyn-n3-20260505_183104/tabsyn_ckpt/vae/tabsyn_n3_tabsyn_n3_20260505_183104/encoder.pt @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:794c37d451eb2437c5205f0eb73268f4d8d8c4300aa0787ac04312b3ee850ba7 +size 22525 diff --git a/hyperparameter/n3/tabsyn/tabsyn-n3-20260505_183104/tabsyn_ckpt/vae/tabsyn_n3_tabsyn_n3_20260505_183104/model.pt b/hyperparameter/n3/tabsyn/tabsyn-n3-20260505_183104/tabsyn_ckpt/vae/tabsyn_n3_tabsyn_n3_20260505_183104/model.pt new file mode 100644 index 0000000000000000000000000000000000000000..063f243d4bf55ccfc2c4ad5031410cbdd94f6ce8 --- /dev/null +++ b/hyperparameter/n3/tabsyn/tabsyn-n3-20260505_183104/tabsyn_ckpt/vae/tabsyn_n3_tabsyn_n3_20260505_183104/model.pt @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:9302171639d92c6924d21b0ce84f68f0e3324e9f6d7453d00e0b742cd5e21e17 +size 62012 diff --git a/hyperparameter/n3/tabsyn/tabsyn-n3-20260505_183104/tabsyn_ckpt/vae/tabsyn_n3_tabsyn_n3_20260505_183104/train_z.npy b/hyperparameter/n3/tabsyn/tabsyn-n3-20260505_183104/tabsyn_ckpt/vae/tabsyn_n3_tabsyn_n3_20260505_183104/train_z.npy new file mode 100644 index 0000000000000000000000000000000000000000..624ffd338c44388442f88bb3f7defcdfbd9bdd0e --- /dev/null +++ b/hyperparameter/n3/tabsyn/tabsyn-n3-20260505_183104/tabsyn_ckpt/vae/tabsyn_n3_tabsyn_n3_20260505_183104/train_z.npy @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:e0e8878a3e253b1c287ecdea7fac3ecf9625662b76bd7bbd510aab28c61ed0be +size 815072 diff --git a/hyperparameter/n3/tabsyn/tabsyn-n3-20260505_183104/train_20260505_183104.log b/hyperparameter/n3/tabsyn/tabsyn-n3-20260505_183104/train_20260505_183104.log new file mode 100644 index 0000000000000000000000000000000000000000..58e47222ca566bae6a201f5477c1d5f22f07f84e --- /dev/null +++ b/hyperparameter/n3/tabsyn/tabsyn-n3-20260505_183104/train_20260505_183104.log @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:24b2901e9306f21cf31ee6adcbb5d6f96042227bda8e4577dfd48480dadc941f +size 8761 diff --git a/hyperparameter/n3/tabsyn/tabsyn-n3-20260505_183135/_tabsyn_sample.py b/hyperparameter/n3/tabsyn/tabsyn-n3-20260505_183135/_tabsyn_sample.py new file mode 100644 index 0000000000000000000000000000000000000000..9f8ed3522e638e55e41982bcdd5757c6e9db2743 --- /dev/null +++ b/hyperparameter/n3/tabsyn/tabsyn-n3-20260505_183135/_tabsyn_sample.py @@ -0,0 +1,43 @@ +import os, sys, subprocess + +work_dir = "/work/output-Benchmark-trainonly-v1/n3/tabsyn/tabsyn-n3-20260505_183135" +dataname = "tabsyn_n3_tabsyn_n3_20260505_183135" +output_csv = "/work/output-Benchmark-trainonly-v1/n3/tabsyn/tabsyn-n3-20260505_183135/tabsyn-n3-3918-20260505_183149.csv" +tabsyn_root = "/workspace/tabsyn" + +assert os.path.exists(tabsyn_root), f"TabSyn source not mounted: {tabsyn_root}" + +old = os.environ.get("PYTHONPATH", "") +os.environ["PYTHONPATH"] = tabsyn_root + (os.pathsep + old if old else "") +sys.path.insert(0, tabsyn_root) + +os.chdir(tabsyn_root) + +# Ensure data symlink exists +data_link = os.path.join(tabsyn_root, "data", dataname) +data_src = os.path.join(work_dir, "data", dataname) +os.makedirs(os.path.join(tabsyn_root, "data"), exist_ok=True) +if os.path.exists(data_link): + os.remove(data_link) +os.symlink(data_src, data_link) + +print(f"[TabSyn] Sampling 3918 rows") +env = os.environ.copy() +env.setdefault("TABSYN_RESUME", "0") +env.setdefault("TABSYN_VAE_BATCH_SIZE", "32") +env.setdefault("TABSYN_VAE_EVAL_BATCH_SIZE", env["TABSYN_VAE_BATCH_SIZE"]) +env.setdefault("TABSYN_VAE_INFER_BATCH_SIZE", env["TABSYN_VAE_BATCH_SIZE"]) +env.setdefault("TABSYN_VAE_ENCODE_BATCH_SIZE", env["TABSYN_VAE_BATCH_SIZE"]) +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/hyperparameter/n3/tabsyn/tabsyn-n3-20260505_183135/_tabsyn_train.py b/hyperparameter/n3/tabsyn/tabsyn-n3-20260505_183135/_tabsyn_train.py new file mode 100644 index 0000000000000000000000000000000000000000..4d37fa2ce2bdf9a57e35a17522dc4ac6d1ab81d2 --- /dev/null +++ b/hyperparameter/n3/tabsyn/tabsyn-n3-20260505_183135/_tabsyn_train.py @@ -0,0 +1,69 @@ +import os, sys, subprocess + +work_dir = "/work/output-Benchmark-trainonly-v1/n3/tabsyn/tabsyn-n3-20260505_183135" +dataname = "tabsyn_n3_tabsyn_n3_20260505_183135" +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", "0") +env.setdefault("TABSYN_VAE_BATCH_SIZE", "32") +env.setdefault("TABSYN_VAE_NUM_WORKERS", "0") +env.setdefault("TABSYN_VAE_EVAL_BATCH_SIZE", env["TABSYN_VAE_BATCH_SIZE"]) +env.setdefault("TABSYN_VAE_INFER_BATCH_SIZE", env["TABSYN_VAE_BATCH_SIZE"]) +env.setdefault("TABSYN_VAE_ENCODE_BATCH_SIZE", env["TABSYN_VAE_BATCH_SIZE"]) +# Safer defaults for wide tables on Docker: reduce shared-memory pressure in diffusion DataLoader. +env.setdefault("TABSYN_DIFFUSION_NUM_WORKERS", "0") +_te = None +if _te is not None: + env["TABSYN_VAE_EPOCHS"] = str(_te) + env["TABSYN_DIFFUSION_MAX_EPOCHS"] = str(max(_te + 1, 2)) + +# Data preprocessing is done on the host side (_prepare_data_dir) +# which creates .npy files, train/test CSVs, and info.json + +# Step 1: Train VAE (produces latent embeddings) +print(f"[TabSyn] Step 1/2: Training VAE in {tabsyn_root}, dataname={dataname}") +ret = subprocess.run( + [sys.executable, "main.py", + "--dataname", dataname, + "--mode", "train", + "--method", "vae", + "--gpu", "0"], + cwd=tabsyn_root, + env=env +) +if ret.returncode != 0: + print("[TabSyn] VAE training failed") + sys.exit(ret.returncode) + +# Step 2: Train diffusion model on latent space +print(f"[TabSyn] Step 2/2: Training diffusion model") +ret = subprocess.run( + [sys.executable, "main.py", + "--dataname", dataname, + "--mode", "train", + "--method", "tabsyn", + "--gpu", "0"], + cwd=tabsyn_root, + env=env +) +if ret.returncode != 0: + print("[TabSyn] Diffusion training failed") + sys.exit(ret.returncode) +print("[TabSyn] Training complete (VAE + Diffusion)") diff --git a/hyperparameter/n3/tabsyn/tabsyn-n3-20260505_183135/data/tabsyn_n3_tabsyn_n3_20260505_183135/X_cat_test.npy b/hyperparameter/n3/tabsyn/tabsyn-n3-20260505_183135/data/tabsyn_n3_tabsyn_n3_20260505_183135/X_cat_test.npy new file mode 100644 index 0000000000000000000000000000000000000000..24e2b0be40b07b6e79f803a82e6e38723e462320 --- /dev/null +++ b/hyperparameter/n3/tabsyn/tabsyn-n3-20260505_183135/data/tabsyn_n3_tabsyn_n3_20260505_183135/X_cat_test.npy @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:519697bb05272ccbf9fc4da2bd269c9eab90005e0671dad9ef2e5266215cdf67 +size 128 diff --git a/hyperparameter/n3/tabsyn/tabsyn-n3-20260505_183135/data/tabsyn_n3_tabsyn_n3_20260505_183135/X_cat_train.npy b/hyperparameter/n3/tabsyn/tabsyn-n3-20260505_183135/data/tabsyn_n3_tabsyn_n3_20260505_183135/X_cat_train.npy new file mode 100644 index 0000000000000000000000000000000000000000..24e2b0be40b07b6e79f803a82e6e38723e462320 --- /dev/null +++ b/hyperparameter/n3/tabsyn/tabsyn-n3-20260505_183135/data/tabsyn_n3_tabsyn_n3_20260505_183135/X_cat_train.npy @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:519697bb05272ccbf9fc4da2bd269c9eab90005e0671dad9ef2e5266215cdf67 +size 128 diff --git a/hyperparameter/n3/tabsyn/tabsyn-n3-20260505_183135/data/tabsyn_n3_tabsyn_n3_20260505_183135/X_num_test.npy b/hyperparameter/n3/tabsyn/tabsyn-n3-20260505_183135/data/tabsyn_n3_tabsyn_n3_20260505_183135/X_num_test.npy new file mode 100644 index 0000000000000000000000000000000000000000..94beb8413ef55592710518365965f4cb503523ee --- /dev/null +++ b/hyperparameter/n3/tabsyn/tabsyn-n3-20260505_183135/data/tabsyn_n3_tabsyn_n3_20260505_183135/X_num_test.npy @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:093d8f405d764277d5a007953f25ab6466f0857f71f0d8f3c437463fb5bf240a +size 172520 diff --git a/hyperparameter/n3/tabsyn/tabsyn-n3-20260505_183135/data/tabsyn_n3_tabsyn_n3_20260505_183135/X_num_train.npy b/hyperparameter/n3/tabsyn/tabsyn-n3-20260505_183135/data/tabsyn_n3_tabsyn_n3_20260505_183135/X_num_train.npy new file mode 100644 index 0000000000000000000000000000000000000000..94beb8413ef55592710518365965f4cb503523ee --- /dev/null +++ b/hyperparameter/n3/tabsyn/tabsyn-n3-20260505_183135/data/tabsyn_n3_tabsyn_n3_20260505_183135/X_num_train.npy @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:093d8f405d764277d5a007953f25ab6466f0857f71f0d8f3c437463fb5bf240a +size 172520 diff --git a/hyperparameter/n3/tabsyn/tabsyn-n3-20260505_183135/data/tabsyn_n3_tabsyn_n3_20260505_183135/info.json b/hyperparameter/n3/tabsyn/tabsyn-n3-20260505_183135/data/tabsyn_n3_tabsyn_n3_20260505_183135/info.json new file mode 100644 index 0000000000000000000000000000000000000000..2350f75fb70546d6d1534f324f7347e9e1fa3919 --- /dev/null +++ b/hyperparameter/n3/tabsyn/tabsyn-n3-20260505_183135/data/tabsyn_n3_tabsyn_n3_20260505_183135/info.json @@ -0,0 +1,138 @@ +{ + "name": "tabsyn_n3_tabsyn_n3_20260505_183135", + "task_type": "regression", + "n_num_features": 11, + "n_cat_features": 0, + "train_size": 3918, + "num_col_idx": [ + 0, + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10 + ], + "cat_col_idx": [], + "target_col_idx": [ + 11 + ], + "column_names": [ + "fixed acidity", + "volatile acidity", + "citric acid", + "residual sugar", + "chlorides", + "free sulfur dioxide", + "total sulfur dioxide", + "density", + "pH", + "sulphates", + "alcohol", + "quality" + ], + "train_num": 3918, + "test_num": 3918, + "header": 0, + "file_type": "csv", + "data_path": "data/tabsyn_n3_tabsyn_n3_20260505_183135/train.csv", + "test_path": null, + "idx_mapping": { + "0": 0, + "1": 1, + "2": 2, + "3": 3, + "4": 4, + "5": 5, + "6": 6, + "7": 7, + "8": 8, + "9": 9, + "10": 10, + "11": 11 + }, + "inverse_idx_mapping": { + "0": 0, + "1": 1, + "2": 2, + "3": 3, + "4": 4, + "5": 5, + "6": 6, + "7": 7, + "8": 8, + "9": 9, + "10": 10, + "11": 11 + }, + "idx_name_mapping": { + "0": "fixed acidity", + "1": "volatile acidity", + "2": "citric acid", + "3": "residual sugar", + "4": "chlorides", + "5": "free sulfur dioxide", + "6": "total sulfur dioxide", + "7": "density", + "8": "pH", + "9": "sulphates", + "10": "alcohol", + "11": "quality" + }, + "metadata": { + "columns": { + "0": { + "sdtype": "numerical", + "computer_representation": "Float" + }, + "1": { + "sdtype": "numerical", + "computer_representation": "Float" + }, + "2": { + "sdtype": "numerical", + "computer_representation": "Float" + }, + "3": { + "sdtype": "numerical", + "computer_representation": "Float" + }, + "4": { + "sdtype": "numerical", + "computer_representation": "Float" + }, + "5": { + "sdtype": "numerical", + "computer_representation": "Float" + }, + "6": { + "sdtype": "numerical", + "computer_representation": "Float" + }, + "7": { + "sdtype": "numerical", + "computer_representation": "Float" + }, + "8": { + "sdtype": "numerical", + "computer_representation": "Float" + }, + "9": { + "sdtype": "numerical", + "computer_representation": "Float" + }, + "10": { + "sdtype": "numerical", + "computer_representation": "Float" + }, + "11": { + "sdtype": "numerical", + "computer_representation": "Float" + } + } + } +} \ No newline at end of file diff --git a/hyperparameter/n3/tabsyn/tabsyn-n3-20260505_183135/data/tabsyn_n3_tabsyn_n3_20260505_183135/test.csv b/hyperparameter/n3/tabsyn/tabsyn-n3-20260505_183135/data/tabsyn_n3_tabsyn_n3_20260505_183135/test.csv new file mode 100644 index 0000000000000000000000000000000000000000..87ca26726fe82ccbaa397919305b043c17eb374e --- /dev/null +++ b/hyperparameter/n3/tabsyn/tabsyn-n3-20260505_183135/data/tabsyn_n3_tabsyn_n3_20260505_183135/test.csv @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:7813c8cca73ba4bfc6559215257b341c21e459980ad17ae6ddc809306bc9a0b9 +size 229945 diff --git a/hyperparameter/n3/tabsyn/tabsyn-n3-20260505_183135/data/tabsyn_n3_tabsyn_n3_20260505_183135/train.csv b/hyperparameter/n3/tabsyn/tabsyn-n3-20260505_183135/data/tabsyn_n3_tabsyn_n3_20260505_183135/train.csv new file mode 100644 index 0000000000000000000000000000000000000000..87ca26726fe82ccbaa397919305b043c17eb374e --- /dev/null +++ b/hyperparameter/n3/tabsyn/tabsyn-n3-20260505_183135/data/tabsyn_n3_tabsyn_n3_20260505_183135/train.csv @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:7813c8cca73ba4bfc6559215257b341c21e459980ad17ae6ddc809306bc9a0b9 +size 229945 diff --git a/hyperparameter/n3/tabsyn/tabsyn-n3-20260505_183135/data/tabsyn_n3_tabsyn_n3_20260505_183135/y_test.npy b/hyperparameter/n3/tabsyn/tabsyn-n3-20260505_183135/data/tabsyn_n3_tabsyn_n3_20260505_183135/y_test.npy new file mode 100644 index 0000000000000000000000000000000000000000..59571a153fb0a2e415acb8f1ffcbb54e325414c6 --- /dev/null +++ b/hyperparameter/n3/tabsyn/tabsyn-n3-20260505_183135/data/tabsyn_n3_tabsyn_n3_20260505_183135/y_test.npy @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:1418131d428e1f98200104123714677e9ab4a2b8279082a63a1d663f7f09bb84 +size 31472 diff --git a/hyperparameter/n3/tabsyn/tabsyn-n3-20260505_183135/data/tabsyn_n3_tabsyn_n3_20260505_183135/y_train.npy b/hyperparameter/n3/tabsyn/tabsyn-n3-20260505_183135/data/tabsyn_n3_tabsyn_n3_20260505_183135/y_train.npy new file mode 100644 index 0000000000000000000000000000000000000000..59571a153fb0a2e415acb8f1ffcbb54e325414c6 --- /dev/null +++ b/hyperparameter/n3/tabsyn/tabsyn-n3-20260505_183135/data/tabsyn_n3_tabsyn_n3_20260505_183135/y_train.npy @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:1418131d428e1f98200104123714677e9ab4a2b8279082a63a1d663f7f09bb84 +size 31472 diff --git a/hyperparameter/n3/tabsyn/tabsyn-n3-20260505_183135/gen_20260505_183149.log b/hyperparameter/n3/tabsyn/tabsyn-n3-20260505_183135/gen_20260505_183149.log new file mode 100644 index 0000000000000000000000000000000000000000..3abc5ea0708d068cadf6cc6bfe5a987d20e5ab4d --- /dev/null +++ b/hyperparameter/n3/tabsyn/tabsyn-n3-20260505_183135/gen_20260505_183149.log @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:eb659cc261b39e42de03835f042517bd1ee15766cbd1b8c842ac2080640b457a +size 930 diff --git a/hyperparameter/n3/tabsyn/tabsyn-n3-20260505_183135/input_snapshot.json b/hyperparameter/n3/tabsyn/tabsyn-n3-20260505_183135/input_snapshot.json new file mode 100644 index 0000000000000000000000000000000000000000..35dea6fbed02718a51165764efffea61dcb428e5 --- /dev/null +++ b/hyperparameter/n3/tabsyn/tabsyn-n3-20260505_183135/input_snapshot.json @@ -0,0 +1,36 @@ +{ + "dataset_id": "n3", + "model": "tabsyn", + "inputs": { + "train_csv": { + "path": "/data/jialinzhang/SynthesizePipeline-server/DatasetNew/n3/n3-train.csv", + "exists": true, + "size": 211519, + "sha256": "2160a06db2fea02adb0ebb79d8d853bd2544580be301e71f6e8deeb1489a9009" + }, + "val_csv": { + "path": "/data/jialinzhang/SynthesizePipeline-server/DatasetNew/n3/n3-val.csv", + "exists": true, + "size": 26499, + "sha256": "d5ccfee07dfa9e7bdee5bb87642b43828e09f74c6cc0266a3d19d9feaa83106e" + }, + "test_csv": { + "path": "/data/jialinzhang/SynthesizePipeline-server/DatasetNew/n3/n3-test.csv", + "exists": true, + "size": 26676, + "sha256": "6f83aacb0d1747b95e287352a7fff5d9d65a1c127b773852346c68485c4ede47" + }, + "profile_json": { + "path": "/data/jialinzhang/SynthesizePipeline-server/DatasetNew/artifacts/data_core/tabular/n3/n3-dataset_profile.json", + "exists": true, + "size": 5235, + "sha256": "23d2e5904a2ca90cbf8d6e3c75887681721e9b90cc705c31a680c11513d0c46f" + }, + "contract_json": { + "path": "/data/jialinzhang/SynthesizePipeline-server/DatasetNew/artifacts/data_core/tabular/n3/n3-dataset_contract_v1.json", + "exists": true, + "size": 6281, + "sha256": "c0cc56f5fe28e1b65927255c6e3c2b0e9479862c2ec6f2fea1664da36c9a3a09" + } + } +} \ No newline at end of file diff --git a/hyperparameter/n3/tabsyn/tabsyn-n3-20260505_183135/public_gate/normalized_schema_snapshot.json b/hyperparameter/n3/tabsyn/tabsyn-n3-20260505_183135/public_gate/normalized_schema_snapshot.json new file mode 100644 index 0000000000000000000000000000000000000000..c41fe304503de23190a02e6cbfafa35b3bf134d3 --- /dev/null +++ b/hyperparameter/n3/tabsyn/tabsyn-n3-20260505_183135/public_gate/normalized_schema_snapshot.json @@ -0,0 +1,259 @@ +{ + "dataset_id": "n3", + "target_column": "quality", + "task_type": "classification", + "columns": [ + { + "name": "fixed acidity", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 66, + "unique_ratio": 0.016845, + "example_values": [ + "7.1", + "8.5", + "6.4", + "6.8", + "7.6" + ] + } + }, + { + "name": "volatile acidity", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 121, + "unique_ratio": 0.030883, + "example_values": [ + "0.31", + "0.21", + "0.24", + "0.43", + "0.27" + ] + } + }, + { + "name": "citric acid", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 85, + "unique_ratio": 0.021695, + "example_values": [ + "0.17", + "0.41", + "0.31", + "0.25", + "0.3" + ] + } + }, + { + "name": "residual sugar", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 296, + "unique_ratio": 0.075549, + "example_values": [ + "1", + "4.3", + "2.8", + "13", + "12.9" + ] + } + }, + { + "name": "chlorides", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 147, + "unique_ratio": 0.037519, + "example_values": [ + "0.042", + "0.036", + "0.038", + "0.047", + "0.033" + ] + } + }, + { + "name": "free sulfur dioxide", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 120, + "unique_ratio": 0.030628, + "example_values": [ + "21", + "24", + "41", + "43", + "69" + ] + } + }, + { + "name": "total sulfur dioxide", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 244, + "unique_ratio": 0.062277, + "example_values": [ + "144", + "99", + "114", + "132", + "160" + ] + } + }, + { + "name": "density", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 839, + "unique_ratio": 0.21414, + "example_values": [ + "0.99304", + "0.9947", + "0.99155", + "0.98975", + "0.99705" + ] + } + }, + { + "name": "pH", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 100, + "unique_ratio": 0.025523, + "example_values": [ + "3.13", + "3.18", + "3.37", + "3.21", + "3.16" + ] + } + }, + { + "name": "sulphates", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 78, + "unique_ratio": 0.019908, + "example_values": [ + "0.4", + "0.53", + "0.66", + "0.47", + "0.5" + ] + } + }, + { + "name": "alcohol", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 97, + "unique_ratio": 0.024758, + "example_values": [ + "9.6", + "9.7", + "11.7", + "13.4", + "8.8" + ] + } + }, + { + "name": "quality", + "role": "target", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 7, + "unique_ratio": 0.001787, + "example_values": [ + "5", + "6", + "7", + "8", + "3" + ] + } + } + ] +} \ No newline at end of file diff --git a/hyperparameter/n3/tabsyn/tabsyn-n3-20260505_183135/public_gate/public_gate_report.json b/hyperparameter/n3/tabsyn/tabsyn-n3-20260505_183135/public_gate/public_gate_report.json new file mode 100644 index 0000000000000000000000000000000000000000..93b97319f739e39079d6c6549fd2020f8a6dac25 --- /dev/null +++ b/hyperparameter/n3/tabsyn/tabsyn-n3-20260505_183135/public_gate/public_gate_report.json @@ -0,0 +1,37 @@ +{ + "dataset_id": "n3", + "status": "pass", + "checks": [ + { + "check_id": "PG001_csv_parse_ok", + "status": "pass" + }, + { + "check_id": "PG002_split_header_consistent", + "status": "pass" + }, + { + "check_id": "PG003_profile_header_match", + "status": "pass" + }, + { + "check_id": "PG004_missing_token_normalized", + "status": "pass" + }, + { + "check_id": "PG005_semantic_type_validated", + "status": "pass" + }, + { + "check_id": "PG006_target_defined_and_valid", + "status": "pass" + } + ], + "target_column": "quality", + "task_type": "classification", + "input_splits": { + "train": "/data/jialinzhang/SynthesizePipeline-server/DatasetNew/n3/n3-train.csv", + "val": "/data/jialinzhang/SynthesizePipeline-server/DatasetNew/n3/n3-val.csv", + "test": "/data/jialinzhang/SynthesizePipeline-server/DatasetNew/n3/n3-test.csv" + } +} \ No newline at end of file diff --git a/hyperparameter/n3/tabsyn/tabsyn-n3-20260505_183135/public_gate/staged_input_manifest.json b/hyperparameter/n3/tabsyn/tabsyn-n3-20260505_183135/public_gate/staged_input_manifest.json new file mode 100644 index 0000000000000000000000000000000000000000..7c0246ddbdcf0513217067b526e2e3bf2bea2d9e --- /dev/null +++ b/hyperparameter/n3/tabsyn/tabsyn-n3-20260505_183135/public_gate/staged_input_manifest.json @@ -0,0 +1,264 @@ +{ + "dataset_id": "n3", + "target_column": "quality", + "task_type": "classification", + "train_csv": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/n3/tabsyn/tabsyn-n3-20260505_183135/staged/public/train.csv", + "val_csv": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/n3/tabsyn/tabsyn-n3-20260505_183135/staged/public/val.csv", + "test_csv": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/n3/tabsyn/tabsyn-n3-20260505_183135/staged/public/test.csv", + "features_json": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/n3/tabsyn/tabsyn-n3-20260505_183135/staged/public/staged_features.json", + "public_gate_report": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/n3/tabsyn/tabsyn-n3-20260505_183135/public_gate/public_gate_report.json", + "column_schema": [ + { + "name": "fixed acidity", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 66, + "unique_ratio": 0.016845, + "example_values": [ + "7.1", + "8.5", + "6.4", + "6.8", + "7.6" + ] + } + }, + { + "name": "volatile acidity", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 121, + "unique_ratio": 0.030883, + "example_values": [ + "0.31", + "0.21", + "0.24", + "0.43", + "0.27" + ] + } + }, + { + "name": "citric acid", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 85, + "unique_ratio": 0.021695, + "example_values": [ + "0.17", + "0.41", + "0.31", + "0.25", + "0.3" + ] + } + }, + { + "name": "residual sugar", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 296, + "unique_ratio": 0.075549, + "example_values": [ + "1", + "4.3", + "2.8", + "13", + "12.9" + ] + } + }, + { + "name": "chlorides", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 147, + "unique_ratio": 0.037519, + "example_values": [ + "0.042", + "0.036", + "0.038", + "0.047", + "0.033" + ] + } + }, + { + "name": "free sulfur dioxide", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 120, + "unique_ratio": 0.030628, + "example_values": [ + "21", + "24", + "41", + "43", + "69" + ] + } + }, + { + "name": "total sulfur dioxide", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 244, + "unique_ratio": 0.062277, + "example_values": [ + "144", + "99", + "114", + "132", + "160" + ] + } + }, + { + "name": "density", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 839, + "unique_ratio": 0.21414, + "example_values": [ + "0.99304", + "0.9947", + "0.99155", + "0.98975", + "0.99705" + ] + } + }, + { + "name": "pH", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 100, + "unique_ratio": 0.025523, + "example_values": [ + "3.13", + "3.18", + "3.37", + "3.21", + "3.16" + ] + } + }, + { + "name": "sulphates", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 78, + "unique_ratio": 0.019908, + "example_values": [ + "0.4", + "0.53", + "0.66", + "0.47", + "0.5" + ] + } + }, + { + "name": "alcohol", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 97, + "unique_ratio": 0.024758, + "example_values": [ + "9.6", + "9.7", + "11.7", + "13.4", + "8.8" + ] + } + }, + { + "name": "quality", + "role": "target", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 7, + "unique_ratio": 0.001787, + "example_values": [ + "5", + "6", + "7", + "8", + "3" + ] + } + } + ] +} \ No newline at end of file diff --git a/hyperparameter/n3/tabsyn/tabsyn-n3-20260505_183135/run_config.json b/hyperparameter/n3/tabsyn/tabsyn-n3-20260505_183135/run_config.json new file mode 100644 index 0000000000000000000000000000000000000000..a2d5344f419ccf420c9052ddb532d52282e97da2 --- /dev/null +++ b/hyperparameter/n3/tabsyn/tabsyn-n3-20260505_183135/run_config.json @@ -0,0 +1,49 @@ +{ + "schema_version": 1, + "recorded_at": "2026-05-05T18:31:35", + "dataset_id": "n3", + "model": "tabsyn", + "work_dir": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/n3/tabsyn/tabsyn-n3-20260505_183135", + "dataset_source_requested": "new", + "dataset_source_resolved": "new", + "cli_args": { + "model": "tabsyn", + "dataset": "n3", + "dataset_source": "new", + "train": true, + "generate": true, + "num_rows": 0, + "epochs": null, + "output_dir": null, + "model_dir": null, + "work_dir": null, + "resume": false, + "no_stats": false + }, + "resolved": { + "num_rows": 3918, + "model_path": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/n3/tabsyn/tabsyn-n3-20260505_183135", + "output_csv": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/n3/tabsyn/tabsyn-n3-20260505_183135/tabsyn-n3-3918-20260505_183149.csv" + }, + "input_artifacts": { + "public_gate_report": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/n3/tabsyn/tabsyn-n3-20260505_183135/public_gate/public_gate_report.json", + "public_manifest": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/n3/tabsyn/tabsyn-n3-20260505_183135/public_gate/staged_input_manifest.json", + "model_manifest": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/n3/tabsyn/tabsyn-n3-20260505_183135/staged/tabsyn/model_input_manifest.json", + "train_csv": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/n3/tabsyn/tabsyn-n3-20260505_183135/staged/public/train.csv", + "features_json": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/n3/tabsyn/tabsyn-n3-20260505_183135/staged/public/staged_features.json", + "target_column": "quality", + "task_type": "classification" + }, + "env_overrides": { + "BENCHMARK_TABSYN_GPUS": "device=3", + "TABSYN_DIFFUSION_MAX_EPOCHS": "15", + "TABSYN_DIFFUSION_NUM_WORKERS": "0", + "TABSYN_RESUME": "0", + "TABSYN_VAE_BATCH_SIZE": "256", + "TABSYN_VAE_ENCODE_BATCH_SIZE": "256", + "TABSYN_VAE_EPOCHS": "15", + "TABSYN_VAE_EVAL_BATCH_SIZE": "256", + "TABSYN_VAE_INFER_BATCH_SIZE": "256", + "TABSYN_VAE_NUM_WORKERS": "0" + } +} \ No newline at end of file diff --git a/hyperparameter/n3/tabsyn/tabsyn-n3-20260505_183135/runtime_result.json b/hyperparameter/n3/tabsyn/tabsyn-n3-20260505_183135/runtime_result.json new file mode 100644 index 0000000000000000000000000000000000000000..1b9aa3e5f6b390dbdb5f0287ba6a2bb96ab7f645 --- /dev/null +++ b/hyperparameter/n3/tabsyn/tabsyn-n3-20260505_183135/runtime_result.json @@ -0,0 +1,27 @@ +{ + "dataset_id": "n3", + "model": "tabsyn", + "run_id": "tabsyn-n3-20260505_183135", + "public_gate_status": "pass", + "adapter_ready_status": "pass", + "train_status": "success", + "generate_status": "success", + "reason_code": null, + "reason_detail": null, + "artifacts": { + "synthetic_csv": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/n3/tabsyn/tabsyn-n3-20260505_183135/tabsyn-n3-3918-20260505_183149.csv", + "model_path": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/n3/tabsyn/tabsyn-n3-20260505_183135" + }, + "timings": { + "train": { + "started_at": "2026-05-05T18:31:35", + "ended_at": "2026-05-05T18:31:49", + "duration_sec": 14.494 + }, + "generate": { + "started_at": "2026-05-05T18:31:49", + "ended_at": "2026-05-05T18:31:54", + "duration_sec": 4.711 + } + } +} \ No newline at end of file diff --git a/hyperparameter/n3/tabsyn/tabsyn-n3-20260505_183135/staged/public/staged_features.json b/hyperparameter/n3/tabsyn/tabsyn-n3-20260505_183135/staged/public/staged_features.json new file mode 100644 index 0000000000000000000000000000000000000000..08fe4d766d091d2f2ddba724a16b9509cbe4c390 --- /dev/null +++ b/hyperparameter/n3/tabsyn/tabsyn-n3-20260505_183135/staged/public/staged_features.json @@ -0,0 +1,62 @@ +[ + { + "feature_name": "fixed acidity", + "data_type": "continuous", + "is_target": false + }, + { + "feature_name": "volatile acidity", + "data_type": "continuous", + "is_target": false + }, + { + "feature_name": "citric acid", + "data_type": "continuous", + "is_target": false + }, + { + "feature_name": "residual sugar", + "data_type": "continuous", + "is_target": false + }, + { + "feature_name": "chlorides", + "data_type": "continuous", + "is_target": false + }, + { + "feature_name": "free sulfur dioxide", + "data_type": "continuous", + "is_target": false + }, + { + "feature_name": "total sulfur dioxide", + "data_type": "continuous", + "is_target": false + }, + { + "feature_name": "density", + "data_type": "continuous", + "is_target": false + }, + { + "feature_name": "pH", + "data_type": "continuous", + "is_target": false + }, + { + "feature_name": "sulphates", + "data_type": "continuous", + "is_target": false + }, + { + "feature_name": "alcohol", + "data_type": "continuous", + "is_target": false + }, + { + "feature_name": "quality", + "data_type": "continuous", + "is_target": true + } +] \ No newline at end of file diff --git a/hyperparameter/n3/tabsyn/tabsyn-n3-20260505_183135/staged/public/test.csv b/hyperparameter/n3/tabsyn/tabsyn-n3-20260505_183135/staged/public/test.csv new file mode 100644 index 0000000000000000000000000000000000000000..db5cd50d3746410ea470625fa2ba2c8e9775cc0d --- /dev/null +++ b/hyperparameter/n3/tabsyn/tabsyn-n3-20260505_183135/staged/public/test.csv @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:19e107152a94432e2a37ff045c00cfe35e1be30208b1553080d7dd0ede256d3b +size 28944 diff --git a/hyperparameter/n3/tabsyn/tabsyn-n3-20260505_183135/staged/public/train.csv b/hyperparameter/n3/tabsyn/tabsyn-n3-20260505_183135/staged/public/train.csv new file mode 100644 index 0000000000000000000000000000000000000000..87ca26726fe82ccbaa397919305b043c17eb374e --- /dev/null +++ b/hyperparameter/n3/tabsyn/tabsyn-n3-20260505_183135/staged/public/train.csv @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:7813c8cca73ba4bfc6559215257b341c21e459980ad17ae6ddc809306bc9a0b9 +size 229945 diff --git a/hyperparameter/n3/tabsyn/tabsyn-n3-20260505_183135/staged/public/val.csv b/hyperparameter/n3/tabsyn/tabsyn-n3-20260505_183135/staged/public/val.csv new file mode 100644 index 0000000000000000000000000000000000000000..6acf84c76c47093b513c46d5503972a2dff275c0 --- /dev/null +++ b/hyperparameter/n3/tabsyn/tabsyn-n3-20260505_183135/staged/public/val.csv @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:cf5979d9675567d9d6642640c9b84fc6c49e492604144723c30f50516c05cee6 +size 28791 diff --git a/hyperparameter/n3/tabsyn/tabsyn-n3-20260505_183135/staged/tabsyn/adapter_report.json b/hyperparameter/n3/tabsyn/tabsyn-n3-20260505_183135/staged/tabsyn/adapter_report.json new file mode 100644 index 0000000000000000000000000000000000000000..41ce9b7124ee745cb2d569b0199eb338af5dee6f --- /dev/null +++ b/hyperparameter/n3/tabsyn/tabsyn-n3-20260505_183135/staged/tabsyn/adapter_report.json @@ -0,0 +1,7 @@ +{ + "adapter_ready_status": "pass", + "adapter_fail_reason_code": null, + "adapter_fail_detail": null, + "adapter_transforms_applied": [], + "model_input_manifest": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/n3/tabsyn/tabsyn-n3-20260505_183135/staged/tabsyn/model_input_manifest.json" +} \ No newline at end of file diff --git a/hyperparameter/n3/tabsyn/tabsyn-n3-20260505_183135/staged/tabsyn/adapter_transforms_applied.json b/hyperparameter/n3/tabsyn/tabsyn-n3-20260505_183135/staged/tabsyn/adapter_transforms_applied.json new file mode 100644 index 0000000000000000000000000000000000000000..0637a088a01e8ddab3bf3fa98dbe804cbde1a0dc --- /dev/null +++ b/hyperparameter/n3/tabsyn/tabsyn-n3-20260505_183135/staged/tabsyn/adapter_transforms_applied.json @@ -0,0 +1 @@ +[] \ No newline at end of file diff --git a/hyperparameter/n3/tabsyn/tabsyn-n3-20260505_183135/staged/tabsyn/model_input_manifest.json b/hyperparameter/n3/tabsyn/tabsyn-n3-20260505_183135/staged/tabsyn/model_input_manifest.json new file mode 100644 index 0000000000000000000000000000000000000000..475644db65a88b51091d1283a234201929bfcc2a --- /dev/null +++ b/hyperparameter/n3/tabsyn/tabsyn-n3-20260505_183135/staged/tabsyn/model_input_manifest.json @@ -0,0 +1,266 @@ +{ + "dataset_id": "n3", + "model": "tabsyn", + "target_column": "quality", + "task_type": "classification", + "column_schema": [ + { + "name": "fixed acidity", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 66, + "unique_ratio": 0.016845, + "example_values": [ + "7.1", + "8.5", + "6.4", + "6.8", + "7.6" + ] + } + }, + { + "name": "volatile acidity", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 121, + "unique_ratio": 0.030883, + "example_values": [ + "0.31", + "0.21", + "0.24", + "0.43", + "0.27" + ] + } + }, + { + "name": "citric acid", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 85, + "unique_ratio": 0.021695, + "example_values": [ + "0.17", + "0.41", + "0.31", + "0.25", + "0.3" + ] + } + }, + { + "name": "residual sugar", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 296, + "unique_ratio": 0.075549, + "example_values": [ + "1", + "4.3", + "2.8", + "13", + "12.9" + ] + } + }, + { + "name": "chlorides", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 147, + "unique_ratio": 0.037519, + "example_values": [ + "0.042", + "0.036", + "0.038", + "0.047", + "0.033" + ] + } + }, + { + "name": "free sulfur dioxide", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 120, + "unique_ratio": 0.030628, + "example_values": [ + "21", + "24", + "41", + "43", + "69" + ] + } + }, + { + "name": "total sulfur dioxide", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 244, + "unique_ratio": 0.062277, + "example_values": [ + "144", + "99", + "114", + "132", + "160" + ] + } + }, + { + "name": "density", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 839, + "unique_ratio": 0.21414, + "example_values": [ + "0.99304", + "0.9947", + "0.99155", + "0.98975", + "0.99705" + ] + } + }, + { + "name": "pH", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 100, + "unique_ratio": 0.025523, + "example_values": [ + "3.13", + "3.18", + "3.37", + "3.21", + "3.16" + ] + } + }, + { + "name": "sulphates", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 78, + "unique_ratio": 0.019908, + "example_values": [ + "0.4", + "0.53", + "0.66", + "0.47", + "0.5" + ] + } + }, + { + "name": "alcohol", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 97, + "unique_ratio": 0.024758, + "example_values": [ + "9.6", + "9.7", + "11.7", + "13.4", + "8.8" + ] + } + }, + { + "name": "quality", + "role": "target", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 7, + "unique_ratio": 0.001787, + "example_values": [ + "5", + "6", + "7", + "8", + "3" + ] + } + } + ], + "public_manifest": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/n3/tabsyn/tabsyn-n3-20260505_183135/public_gate/staged_input_manifest.json", + "train_csv": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/n3/tabsyn/tabsyn-n3-20260505_183135/staged/public/train.csv", + "val_csv": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/n3/tabsyn/tabsyn-n3-20260505_183135/staged/public/val.csv", + "test_csv": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/n3/tabsyn/tabsyn-n3-20260505_183135/staged/public/test.csv", + "features_json": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/n3/tabsyn/tabsyn-n3-20260505_183135/staged/public/staged_features.json", + "public_gate_report": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/n3/tabsyn/tabsyn-n3-20260505_183135/public_gate/public_gate_report.json" +} \ No newline at end of file diff --git a/hyperparameter/n3/tabsyn/tabsyn-n3-20260505_183135/synthetic/tabsyn_n3_tabsyn_n3_20260505_183135/real.csv b/hyperparameter/n3/tabsyn/tabsyn-n3-20260505_183135/synthetic/tabsyn_n3_tabsyn_n3_20260505_183135/real.csv new file mode 100644 index 0000000000000000000000000000000000000000..87ca26726fe82ccbaa397919305b043c17eb374e --- /dev/null +++ b/hyperparameter/n3/tabsyn/tabsyn-n3-20260505_183135/synthetic/tabsyn_n3_tabsyn_n3_20260505_183135/real.csv @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:7813c8cca73ba4bfc6559215257b341c21e459980ad17ae6ddc809306bc9a0b9 +size 229945 diff --git a/hyperparameter/n3/tabsyn/tabsyn-n3-20260505_183135/synthetic/tabsyn_n3_tabsyn_n3_20260505_183135/test.csv b/hyperparameter/n3/tabsyn/tabsyn-n3-20260505_183135/synthetic/tabsyn_n3_tabsyn_n3_20260505_183135/test.csv new file mode 100644 index 0000000000000000000000000000000000000000..87ca26726fe82ccbaa397919305b043c17eb374e --- /dev/null +++ b/hyperparameter/n3/tabsyn/tabsyn-n3-20260505_183135/synthetic/tabsyn_n3_tabsyn_n3_20260505_183135/test.csv @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:7813c8cca73ba4bfc6559215257b341c21e459980ad17ae6ddc809306bc9a0b9 +size 229945 diff --git a/hyperparameter/n3/tabsyn/tabsyn-n3-20260505_183135/tabsyn-n3-3918-20260505_183149.csv b/hyperparameter/n3/tabsyn/tabsyn-n3-20260505_183135/tabsyn-n3-3918-20260505_183149.csv new file mode 100644 index 0000000000000000000000000000000000000000..760a462a93ad0f031d65e0e507a3bdecc3e4d62b --- /dev/null +++ b/hyperparameter/n3/tabsyn/tabsyn-n3-20260505_183135/tabsyn-n3-3918-20260505_183149.csv @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:0914826a36a420e7724131fedfbc2b80a8b8d7cd0e82cee390bdc5d70449ae9c +size 344891 diff --git a/hyperparameter/n3/tabsyn/tabsyn-n3-20260505_183135/tabsyn_ckpt/diffusion/tabsyn_n3_tabsyn_n3_20260505_183135/model.pt b/hyperparameter/n3/tabsyn/tabsyn-n3-20260505_183135/tabsyn_ckpt/diffusion/tabsyn_n3_tabsyn_n3_20260505_183135/model.pt new file mode 100644 index 0000000000000000000000000000000000000000..38eddfc9a7eb9f0c09d32c853100ef3859d6aa84 --- /dev/null +++ b/hyperparameter/n3/tabsyn/tabsyn-n3-20260505_183135/tabsyn_ckpt/diffusion/tabsyn_n3_tabsyn_n3_20260505_183135/model.pt @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:6944b9feff87eb7acd445dee8b9a6b23add947d906868c7c7da2f7cc67809562 +size 42374609 diff --git a/hyperparameter/n3/tabsyn/tabsyn-n3-20260505_183135/tabsyn_ckpt/diffusion/tabsyn_n3_tabsyn_n3_20260505_183135/model_0.pt b/hyperparameter/n3/tabsyn/tabsyn-n3-20260505_183135/tabsyn_ckpt/diffusion/tabsyn_n3_tabsyn_n3_20260505_183135/model_0.pt new file mode 100644 index 0000000000000000000000000000000000000000..18ebb72c6cdcad57057f9e04c81fdd21cfdc56d7 --- /dev/null +++ b/hyperparameter/n3/tabsyn/tabsyn-n3-20260505_183135/tabsyn_ckpt/diffusion/tabsyn_n3_tabsyn_n3_20260505_183135/model_0.pt @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:60f427bd13b39e11b330eb6ad931ff62cac38ca0852bde771b5e724f8fb077a6 +size 42374969 diff --git a/hyperparameter/n3/tabsyn/tabsyn-n3-20260505_183135/tabsyn_ckpt/vae/tabsyn_n3_tabsyn_n3_20260505_183135/decoder.pt b/hyperparameter/n3/tabsyn/tabsyn-n3-20260505_183135/tabsyn_ckpt/vae/tabsyn_n3_tabsyn_n3_20260505_183135/decoder.pt new file mode 100644 index 0000000000000000000000000000000000000000..11a3b42acb7de05629ac2929a7b3ded8a03dceed --- /dev/null +++ b/hyperparameter/n3/tabsyn/tabsyn-n3-20260505_183135/tabsyn_ckpt/vae/tabsyn_n3_tabsyn_n3_20260505_183135/decoder.pt @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:89b089c5a633a0a7b2511aad3ce771572676d172bac36e2d0a8b73f8faf86842 +size 21318 diff --git a/hyperparameter/n3/tabsyn/tabsyn-n3-20260505_183135/tabsyn_ckpt/vae/tabsyn_n3_tabsyn_n3_20260505_183135/encoder.pt b/hyperparameter/n3/tabsyn/tabsyn-n3-20260505_183135/tabsyn_ckpt/vae/tabsyn_n3_tabsyn_n3_20260505_183135/encoder.pt new file mode 100644 index 0000000000000000000000000000000000000000..fb8be771cac9d0a9b05c0fe9f7a2ec521dc86007 --- /dev/null +++ b/hyperparameter/n3/tabsyn/tabsyn-n3-20260505_183135/tabsyn_ckpt/vae/tabsyn_n3_tabsyn_n3_20260505_183135/encoder.pt @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:a8cad4905f9e44ce23ebe41abfc8c1f2d6941dc0c9046e811ac6f7ab65e504c6 +size 22525 diff --git a/hyperparameter/n3/tabsyn/tabsyn-n3-20260505_183135/tabsyn_ckpt/vae/tabsyn_n3_tabsyn_n3_20260505_183135/model.pt b/hyperparameter/n3/tabsyn/tabsyn-n3-20260505_183135/tabsyn_ckpt/vae/tabsyn_n3_tabsyn_n3_20260505_183135/model.pt new file mode 100644 index 0000000000000000000000000000000000000000..43b0600893212ed93f90eb429f06ecc021cc525f --- /dev/null +++ b/hyperparameter/n3/tabsyn/tabsyn-n3-20260505_183135/tabsyn_ckpt/vae/tabsyn_n3_tabsyn_n3_20260505_183135/model.pt @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:a54ace7d91bc5605e628089fa2332956326bd927bf0c0ee3a028647fb9c648a3 +size 62012 diff --git a/hyperparameter/n3/tabsyn/tabsyn-n3-20260505_183135/tabsyn_ckpt/vae/tabsyn_n3_tabsyn_n3_20260505_183135/train_z.npy b/hyperparameter/n3/tabsyn/tabsyn-n3-20260505_183135/tabsyn_ckpt/vae/tabsyn_n3_tabsyn_n3_20260505_183135/train_z.npy new file mode 100644 index 0000000000000000000000000000000000000000..c8bad6f64a010d5a17192477a3fe036db9b94bbd --- /dev/null +++ b/hyperparameter/n3/tabsyn/tabsyn-n3-20260505_183135/tabsyn_ckpt/vae/tabsyn_n3_tabsyn_n3_20260505_183135/train_z.npy @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:870b6a3229c7b391ef05aef58031fe99fef0a2edfeac8d79b66fc6033d20c037 +size 815072 diff --git a/hyperparameter/n3/tabsyn/tabsyn-n3-20260505_183135/train_20260505_183135.log b/hyperparameter/n3/tabsyn/tabsyn-n3-20260505_183135/train_20260505_183135.log new file mode 100644 index 0000000000000000000000000000000000000000..d8e7622ef228334aa67cf71f0d9c50826d91690f --- /dev/null +++ b/hyperparameter/n3/tabsyn/tabsyn-n3-20260505_183135/train_20260505_183135.log @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:eab03881e291599289544c314748b262fc5f9343e4703a0e71db7ac10262e061 +size 12106 diff --git a/hyperparameter/n3/tvae/tvae-n3-20260504_172819/_tvae_generate.py b/hyperparameter/n3/tvae/tvae-n3-20260504_172819/_tvae_generate.py new file mode 100644 index 0000000000000000000000000000000000000000..c7b9f5dbe7772cae78842d3e657dde8a6274ea8e --- /dev/null +++ b/hyperparameter/n3/tvae/tvae-n3-20260504_172819/_tvae_generate.py @@ -0,0 +1,23 @@ +import os, sys +sys.path.insert(0, "/work") +from src.SpecificModels.ctgan_joblib_parallel_cap import apply_parallel_cap_from_env +apply_parallel_cap_from_env() +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 +os.environ.setdefault("LOKY_MAX_CPU_COUNT", "8") +os.environ.setdefault("OPENBLAS_NUM_THREADS", "8") +os.environ.setdefault("MKL_NUM_THREADS", "8") +model = TVAE.load("/work/output-Benchmark-trainonly-v1/n3/tvae/tvae-n3-20260504_172819/models_300epochs/tvae_300epochs.pt") +total = 3918 +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-Benchmark-trainonly-v1/n3/tvae/tvae-n3-20260504_172819/tvae-n3-3918-20260504_172901.csv", index=False) +print(f"[TVAE] Generated {total} rows (chunks={len(parts)}) -> /work/output-Benchmark-trainonly-v1/n3/tvae/tvae-n3-20260504_172819/tvae-n3-3918-20260504_172901.csv") diff --git a/hyperparameter/n3/tvae/tvae-n3-20260504_172819/_tvae_train.py b/hyperparameter/n3/tvae/tvae-n3-20260504_172819/_tvae_train.py new file mode 100644 index 0000000000000000000000000000000000000000..7c7be901c03a6afbdafae5c9fa0fdb9cbe3a66b9 --- /dev/null +++ b/hyperparameter/n3/tvae/tvae-n3-20260504_172819/_tvae_train.py @@ -0,0 +1,30 @@ +import json, os, sys +sys.path.insert(0, "/work") +from src.SpecificModels.ctgan_joblib_parallel_cap import apply_parallel_cap_from_env +apply_parallel_cap_from_env() +import pandas as pd +from ctgan.data import read_csv +from ctgan.synthesizers.tvae import TVAE + +# Keep transform stage parallelism bounded for stability on shared host. +os.environ.setdefault("LOKY_MAX_CPU_COUNT", "8") +os.environ.setdefault("OPENBLAS_NUM_THREADS", "8") +os.environ.setdefault("MKL_NUM_THREADS", "8") +_nj = (os.environ.get("TVAE_CTGAN_JOBTRANS_N_JOBS") or "").strip() +if _nj: + print("[TVAE] joblib Parallel cap ON, TVAE_CTGAN_JOBTRANS_N_JOBS=" + _nj) +else: + print("[TVAE] joblib Parallel cap OFF (unset TVAE_CTGAN_JOBTRANS_N_JOBS)") +print("[TVAE] LOKY_MAX_CPU_COUNT=" + str(os.environ.get("LOKY_MAX_CPU_COUNT", ""))) + +csv_path = "/work/output-Benchmark-trainonly-v1/n3/tvae/tvae-n3-20260504_172819/staged/public/train.csv" +meta_path = "/work/output-Benchmark-trainonly-v1/n3/tvae/tvae-n3-20260504_172819/tvae_metadata.json" +save_path = "/work/output-Benchmark-trainonly-v1/n3/tvae/tvae-n3-20260504_172819/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/hyperparameter/n3/tvae/tvae-n3-20260504_172819/gen_20260504_172901.log b/hyperparameter/n3/tvae/tvae-n3-20260504_172819/gen_20260504_172901.log new file mode 100644 index 0000000000000000000000000000000000000000..9f4c8df978304685fee287c97778601fa7ccd326 --- /dev/null +++ b/hyperparameter/n3/tvae/tvae-n3-20260504_172819/gen_20260504_172901.log @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:a43efa6944e23c4b948b6dcbdb07c34fa3696ecc216dd410142b5a766c516a40 +size 404 diff --git a/hyperparameter/n3/tvae/tvae-n3-20260504_172819/input_snapshot.json b/hyperparameter/n3/tvae/tvae-n3-20260504_172819/input_snapshot.json new file mode 100644 index 0000000000000000000000000000000000000000..1ddd4c8dc6c3d918927aad5bcb5dbb27f78068fe --- /dev/null +++ b/hyperparameter/n3/tvae/tvae-n3-20260504_172819/input_snapshot.json @@ -0,0 +1,36 @@ +{ + "dataset_id": "n3", + "model": "tvae", + "inputs": { + "train_csv": { + "path": "/data/jialinzhang/SynthesizePipeline-server/DatasetNew/n3/n3-train.csv", + "exists": true, + "size": 211519, + "sha256": "2160a06db2fea02adb0ebb79d8d853bd2544580be301e71f6e8deeb1489a9009" + }, + "val_csv": { + "path": "/data/jialinzhang/SynthesizePipeline-server/DatasetNew/n3/n3-val.csv", + "exists": true, + "size": 26499, + "sha256": "d5ccfee07dfa9e7bdee5bb87642b43828e09f74c6cc0266a3d19d9feaa83106e" + }, + "test_csv": { + "path": "/data/jialinzhang/SynthesizePipeline-server/DatasetNew/n3/n3-test.csv", + "exists": true, + "size": 26676, + "sha256": "6f83aacb0d1747b95e287352a7fff5d9d65a1c127b773852346c68485c4ede47" + }, + "profile_json": { + "path": "/data/jialinzhang/SynthesizePipeline-server/DatasetNew/artifacts/data_core/tabular/n3/n3-dataset_profile.json", + "exists": true, + "size": 5235, + "sha256": "23d2e5904a2ca90cbf8d6e3c75887681721e9b90cc705c31a680c11513d0c46f" + }, + "contract_json": { + "path": "/data/jialinzhang/SynthesizePipeline-server/DatasetNew/artifacts/data_core/tabular/n3/n3-dataset_contract_v1.json", + "exists": true, + "size": 6281, + "sha256": "c0cc56f5fe28e1b65927255c6e3c2b0e9479862c2ec6f2fea1664da36c9a3a09" + } + } +} \ No newline at end of file diff --git a/hyperparameter/n3/tvae/tvae-n3-20260504_172819/models_300epochs/train_20260504_172819.log b/hyperparameter/n3/tvae/tvae-n3-20260504_172819/models_300epochs/train_20260504_172819.log new file mode 100644 index 0000000000000000000000000000000000000000..c9fda6dd36749071d1d84382f79794a3e6b5a34e --- /dev/null +++ b/hyperparameter/n3/tvae/tvae-n3-20260504_172819/models_300epochs/train_20260504_172819.log @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:929c00c18481d7e5c1d6ba30eacbb318985eb82602164744517e2b90b891f0c0 +size 532 diff --git a/hyperparameter/n3/tvae/tvae-n3-20260504_172819/models_300epochs/tvae_300epochs.pt b/hyperparameter/n3/tvae/tvae-n3-20260504_172819/models_300epochs/tvae_300epochs.pt new file mode 100644 index 0000000000000000000000000000000000000000..57bfd44f30cf1bf03a0a4d546a64684f68cc62cf --- /dev/null +++ b/hyperparameter/n3/tvae/tvae-n3-20260504_172819/models_300epochs/tvae_300epochs.pt @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:a4d80176f56c6a53507fe524338ee9d9268f8217d8ce0b7379a6682d2a76be3f +size 640812 diff --git a/hyperparameter/n3/tvae/tvae-n3-20260504_172819/public_gate/normalized_schema_snapshot.json b/hyperparameter/n3/tvae/tvae-n3-20260504_172819/public_gate/normalized_schema_snapshot.json new file mode 100644 index 0000000000000000000000000000000000000000..c41fe304503de23190a02e6cbfafa35b3bf134d3 --- /dev/null +++ b/hyperparameter/n3/tvae/tvae-n3-20260504_172819/public_gate/normalized_schema_snapshot.json @@ -0,0 +1,259 @@ +{ + "dataset_id": "n3", + "target_column": "quality", + "task_type": "classification", + "columns": [ + { + "name": "fixed acidity", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 66, + "unique_ratio": 0.016845, + "example_values": [ + "7.1", + "8.5", + "6.4", + "6.8", + "7.6" + ] + } + }, + { + "name": "volatile acidity", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 121, + "unique_ratio": 0.030883, + "example_values": [ + "0.31", + "0.21", + "0.24", + "0.43", + "0.27" + ] + } + }, + { + "name": "citric acid", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 85, + "unique_ratio": 0.021695, + "example_values": [ + "0.17", + "0.41", + "0.31", + "0.25", + "0.3" + ] + } + }, + { + "name": "residual sugar", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 296, + "unique_ratio": 0.075549, + "example_values": [ + "1", + "4.3", + "2.8", + "13", + "12.9" + ] + } + }, + { + "name": "chlorides", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 147, + "unique_ratio": 0.037519, + "example_values": [ + "0.042", + "0.036", + "0.038", + "0.047", + "0.033" + ] + } + }, + { + "name": "free sulfur dioxide", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 120, + "unique_ratio": 0.030628, + "example_values": [ + "21", + "24", + "41", + "43", + "69" + ] + } + }, + { + "name": "total sulfur dioxide", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 244, + "unique_ratio": 0.062277, + "example_values": [ + "144", + "99", + "114", + "132", + "160" + ] + } + }, + { + "name": "density", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 839, + "unique_ratio": 0.21414, + "example_values": [ + "0.99304", + "0.9947", + "0.99155", + "0.98975", + "0.99705" + ] + } + }, + { + "name": "pH", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 100, + "unique_ratio": 0.025523, + "example_values": [ + "3.13", + "3.18", + "3.37", + "3.21", + "3.16" + ] + } + }, + { + "name": "sulphates", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 78, + "unique_ratio": 0.019908, + "example_values": [ + "0.4", + "0.53", + "0.66", + "0.47", + "0.5" + ] + } + }, + { + "name": "alcohol", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 97, + "unique_ratio": 0.024758, + "example_values": [ + "9.6", + "9.7", + "11.7", + "13.4", + "8.8" + ] + } + }, + { + "name": "quality", + "role": "target", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 7, + "unique_ratio": 0.001787, + "example_values": [ + "5", + "6", + "7", + "8", + "3" + ] + } + } + ] +} \ No newline at end of file diff --git a/hyperparameter/n3/tvae/tvae-n3-20260504_172819/public_gate/public_gate_report.json b/hyperparameter/n3/tvae/tvae-n3-20260504_172819/public_gate/public_gate_report.json new file mode 100644 index 0000000000000000000000000000000000000000..93b97319f739e39079d6c6549fd2020f8a6dac25 --- /dev/null +++ b/hyperparameter/n3/tvae/tvae-n3-20260504_172819/public_gate/public_gate_report.json @@ -0,0 +1,37 @@ +{ + "dataset_id": "n3", + "status": "pass", + "checks": [ + { + "check_id": "PG001_csv_parse_ok", + "status": "pass" + }, + { + "check_id": "PG002_split_header_consistent", + "status": "pass" + }, + { + "check_id": "PG003_profile_header_match", + "status": "pass" + }, + { + "check_id": "PG004_missing_token_normalized", + "status": "pass" + }, + { + "check_id": "PG005_semantic_type_validated", + "status": "pass" + }, + { + "check_id": "PG006_target_defined_and_valid", + "status": "pass" + } + ], + "target_column": "quality", + "task_type": "classification", + "input_splits": { + "train": "/data/jialinzhang/SynthesizePipeline-server/DatasetNew/n3/n3-train.csv", + "val": "/data/jialinzhang/SynthesizePipeline-server/DatasetNew/n3/n3-val.csv", + "test": "/data/jialinzhang/SynthesizePipeline-server/DatasetNew/n3/n3-test.csv" + } +} \ No newline at end of file diff --git a/hyperparameter/n3/tvae/tvae-n3-20260504_172819/public_gate/staged_input_manifest.json b/hyperparameter/n3/tvae/tvae-n3-20260504_172819/public_gate/staged_input_manifest.json new file mode 100644 index 0000000000000000000000000000000000000000..a9014867d4657a4fc3d9350a8e779c8589c820dc --- /dev/null +++ b/hyperparameter/n3/tvae/tvae-n3-20260504_172819/public_gate/staged_input_manifest.json @@ -0,0 +1,264 @@ +{ + "dataset_id": "n3", + "target_column": "quality", + "task_type": "classification", + "train_csv": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/n3/tvae/tvae-n3-20260504_172819/staged/public/train.csv", + "val_csv": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/n3/tvae/tvae-n3-20260504_172819/staged/public/val.csv", + "test_csv": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/n3/tvae/tvae-n3-20260504_172819/staged/public/test.csv", + "features_json": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/n3/tvae/tvae-n3-20260504_172819/staged/public/staged_features.json", + "public_gate_report": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/n3/tvae/tvae-n3-20260504_172819/public_gate/public_gate_report.json", + "column_schema": [ + { + "name": "fixed acidity", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 66, + "unique_ratio": 0.016845, + "example_values": [ + "7.1", + "8.5", + "6.4", + "6.8", + "7.6" + ] + } + }, + { + "name": "volatile acidity", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 121, + "unique_ratio": 0.030883, + "example_values": [ + "0.31", + "0.21", + "0.24", + "0.43", + "0.27" + ] + } + }, + { + "name": "citric acid", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 85, + "unique_ratio": 0.021695, + "example_values": [ + "0.17", + "0.41", + "0.31", + "0.25", + "0.3" + ] + } + }, + { + "name": "residual sugar", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 296, + "unique_ratio": 0.075549, + "example_values": [ + "1", + "4.3", + "2.8", + "13", + "12.9" + ] + } + }, + { + "name": "chlorides", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 147, + "unique_ratio": 0.037519, + "example_values": [ + "0.042", + "0.036", + "0.038", + "0.047", + "0.033" + ] + } + }, + { + "name": "free sulfur dioxide", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 120, + "unique_ratio": 0.030628, + "example_values": [ + "21", + "24", + "41", + "43", + "69" + ] + } + }, + { + "name": "total sulfur dioxide", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 244, + "unique_ratio": 0.062277, + "example_values": [ + "144", + "99", + "114", + "132", + "160" + ] + } + }, + { + "name": "density", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 839, + "unique_ratio": 0.21414, + "example_values": [ + "0.99304", + "0.9947", + "0.99155", + "0.98975", + "0.99705" + ] + } + }, + { + "name": "pH", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 100, + "unique_ratio": 0.025523, + "example_values": [ + "3.13", + "3.18", + "3.37", + "3.21", + "3.16" + ] + } + }, + { + "name": "sulphates", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 78, + "unique_ratio": 0.019908, + "example_values": [ + "0.4", + "0.53", + "0.66", + "0.47", + "0.5" + ] + } + }, + { + "name": "alcohol", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 97, + "unique_ratio": 0.024758, + "example_values": [ + "9.6", + "9.7", + "11.7", + "13.4", + "8.8" + ] + } + }, + { + "name": "quality", + "role": "target", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 7, + "unique_ratio": 0.001787, + "example_values": [ + "5", + "6", + "7", + "8", + "3" + ] + } + } + ] +} \ No newline at end of file diff --git a/hyperparameter/n3/tvae/tvae-n3-20260504_172819/run_config.json b/hyperparameter/n3/tvae/tvae-n3-20260504_172819/run_config.json new file mode 100644 index 0000000000000000000000000000000000000000..425730a588abc8031bbba50324746924d9e52674 --- /dev/null +++ b/hyperparameter/n3/tvae/tvae-n3-20260504_172819/run_config.json @@ -0,0 +1,40 @@ +{ + "schema_version": 1, + "recorded_at": "2026-05-04T17:28:19", + "dataset_id": "n3", + "model": "tvae", + "work_dir": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/n3/tvae/tvae-n3-20260504_172819", + "dataset_source_requested": "new", + "dataset_source_resolved": "new", + "cli_args": { + "model": "tvae", + "dataset": "n3", + "dataset_source": "new", + "train": true, + "generate": true, + "num_rows": 0, + "epochs": null, + "output_dir": null, + "model_dir": null, + "work_dir": null, + "resume": false, + "no_stats": false + }, + "resolved": { + "num_rows": 3918, + "model_path": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/n3/tvae/tvae-n3-20260504_172819/models_300epochs/tvae_300epochs.pt", + "output_csv": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/n3/tvae/tvae-n3-20260504_172819/tvae-n3-3918-20260504_172901.csv" + }, + "input_artifacts": { + "public_gate_report": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/n3/tvae/tvae-n3-20260504_172819/public_gate/public_gate_report.json", + "public_manifest": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/n3/tvae/tvae-n3-20260504_172819/public_gate/staged_input_manifest.json", + "model_manifest": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/n3/tvae/tvae-n3-20260504_172819/staged/tvae/model_input_manifest.json", + "train_csv": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/n3/tvae/tvae-n3-20260504_172819/staged/public/train.csv", + "features_json": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/n3/tvae/tvae-n3-20260504_172819/staged/public/staged_features.json", + "target_column": "quality", + "task_type": "classification" + }, + "env_overrides": { + "BENCHMARK_TVAE_GPUS": "device=3" + } +} \ No newline at end of file diff --git a/hyperparameter/n3/tvae/tvae-n3-20260504_172819/runtime_result.json b/hyperparameter/n3/tvae/tvae-n3-20260504_172819/runtime_result.json new file mode 100644 index 0000000000000000000000000000000000000000..ecd3d42036f70599200af2bbcff66928cab42839 --- /dev/null +++ b/hyperparameter/n3/tvae/tvae-n3-20260504_172819/runtime_result.json @@ -0,0 +1,27 @@ +{ + "dataset_id": "n3", + "model": "tvae", + "run_id": "tvae-n3-20260504_172819", + "public_gate_status": "pass", + "adapter_ready_status": "pass", + "train_status": "success", + "generate_status": "success", + "reason_code": null, + "reason_detail": null, + "artifacts": { + "synthetic_csv": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/n3/tvae/tvae-n3-20260504_172819/tvae-n3-3918-20260504_172901.csv", + "model_path": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/n3/tvae/tvae-n3-20260504_172819/models_300epochs/tvae_300epochs.pt" + }, + "timings": { + "train": { + "started_at": "2026-05-04T17:28:19", + "ended_at": "2026-05-04T17:29:01", + "duration_sec": 42.246 + }, + "generate": { + "started_at": "2026-05-04T17:29:01", + "ended_at": "2026-05-04T17:29:07", + "duration_sec": 5.592 + } + } +} \ No newline at end of file diff --git a/hyperparameter/n3/tvae/tvae-n3-20260504_172819/staged/public/staged_features.json b/hyperparameter/n3/tvae/tvae-n3-20260504_172819/staged/public/staged_features.json new file mode 100644 index 0000000000000000000000000000000000000000..08fe4d766d091d2f2ddba724a16b9509cbe4c390 --- /dev/null +++ b/hyperparameter/n3/tvae/tvae-n3-20260504_172819/staged/public/staged_features.json @@ -0,0 +1,62 @@ +[ + { + "feature_name": "fixed acidity", + "data_type": "continuous", + "is_target": false + }, + { + "feature_name": "volatile acidity", + "data_type": "continuous", + "is_target": false + }, + { + "feature_name": "citric acid", + "data_type": "continuous", + "is_target": false + }, + { + "feature_name": "residual sugar", + "data_type": "continuous", + "is_target": false + }, + { + "feature_name": "chlorides", + "data_type": "continuous", + "is_target": false + }, + { + "feature_name": "free sulfur dioxide", + "data_type": "continuous", + "is_target": false + }, + { + "feature_name": "total sulfur dioxide", + "data_type": "continuous", + "is_target": false + }, + { + "feature_name": "density", + "data_type": "continuous", + "is_target": false + }, + { + "feature_name": "pH", + "data_type": "continuous", + "is_target": false + }, + { + "feature_name": "sulphates", + "data_type": "continuous", + "is_target": false + }, + { + "feature_name": "alcohol", + "data_type": "continuous", + "is_target": false + }, + { + "feature_name": "quality", + "data_type": "continuous", + "is_target": true + } +] \ No newline at end of file diff --git a/hyperparameter/n3/tvae/tvae-n3-20260504_172819/staged/public/test.csv b/hyperparameter/n3/tvae/tvae-n3-20260504_172819/staged/public/test.csv new file mode 100644 index 0000000000000000000000000000000000000000..db5cd50d3746410ea470625fa2ba2c8e9775cc0d --- /dev/null +++ b/hyperparameter/n3/tvae/tvae-n3-20260504_172819/staged/public/test.csv @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:19e107152a94432e2a37ff045c00cfe35e1be30208b1553080d7dd0ede256d3b +size 28944 diff --git a/hyperparameter/n3/tvae/tvae-n3-20260504_172819/staged/public/train.csv b/hyperparameter/n3/tvae/tvae-n3-20260504_172819/staged/public/train.csv new file mode 100644 index 0000000000000000000000000000000000000000..87ca26726fe82ccbaa397919305b043c17eb374e --- /dev/null +++ b/hyperparameter/n3/tvae/tvae-n3-20260504_172819/staged/public/train.csv @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:7813c8cca73ba4bfc6559215257b341c21e459980ad17ae6ddc809306bc9a0b9 +size 229945 diff --git a/hyperparameter/n3/tvae/tvae-n3-20260504_172819/staged/public/val.csv b/hyperparameter/n3/tvae/tvae-n3-20260504_172819/staged/public/val.csv new file mode 100644 index 0000000000000000000000000000000000000000..6acf84c76c47093b513c46d5503972a2dff275c0 --- /dev/null +++ b/hyperparameter/n3/tvae/tvae-n3-20260504_172819/staged/public/val.csv @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:cf5979d9675567d9d6642640c9b84fc6c49e492604144723c30f50516c05cee6 +size 28791 diff --git a/hyperparameter/n3/tvae/tvae-n3-20260504_172819/staged/tvae/adapter_report.json b/hyperparameter/n3/tvae/tvae-n3-20260504_172819/staged/tvae/adapter_report.json new file mode 100644 index 0000000000000000000000000000000000000000..436c6632a83e944f916302eacceb905bc735db24 --- /dev/null +++ b/hyperparameter/n3/tvae/tvae-n3-20260504_172819/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-Benchmark-trainonly-v1/n3/tvae/tvae-n3-20260504_172819/staged/tvae/model_input_manifest.json" +} \ No newline at end of file diff --git a/hyperparameter/n3/tvae/tvae-n3-20260504_172819/staged/tvae/adapter_transforms_applied.json b/hyperparameter/n3/tvae/tvae-n3-20260504_172819/staged/tvae/adapter_transforms_applied.json new file mode 100644 index 0000000000000000000000000000000000000000..0637a088a01e8ddab3bf3fa98dbe804cbde1a0dc --- /dev/null +++ b/hyperparameter/n3/tvae/tvae-n3-20260504_172819/staged/tvae/adapter_transforms_applied.json @@ -0,0 +1 @@ +[] \ No newline at end of file diff --git a/hyperparameter/n3/tvae/tvae-n3-20260504_172819/staged/tvae/model_input_manifest.json b/hyperparameter/n3/tvae/tvae-n3-20260504_172819/staged/tvae/model_input_manifest.json new file mode 100644 index 0000000000000000000000000000000000000000..e3660e28dc0b8a7890bb14118217aabf16256b9c --- /dev/null +++ b/hyperparameter/n3/tvae/tvae-n3-20260504_172819/staged/tvae/model_input_manifest.json @@ -0,0 +1,266 @@ +{ + "dataset_id": "n3", + "model": "tvae", + "target_column": "quality", + "task_type": "classification", + "column_schema": [ + { + "name": "fixed acidity", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 66, + "unique_ratio": 0.016845, + "example_values": [ + "7.1", + "8.5", + "6.4", + "6.8", + "7.6" + ] + } + }, + { + "name": "volatile acidity", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 121, + "unique_ratio": 0.030883, + "example_values": [ + "0.31", + "0.21", + "0.24", + "0.43", + "0.27" + ] + } + }, + { + "name": "citric acid", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 85, + "unique_ratio": 0.021695, + "example_values": [ + "0.17", + "0.41", + "0.31", + "0.25", + "0.3" + ] + } + }, + { + "name": "residual sugar", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 296, + "unique_ratio": 0.075549, + "example_values": [ + "1", + "4.3", + "2.8", + "13", + "12.9" + ] + } + }, + { + "name": "chlorides", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 147, + "unique_ratio": 0.037519, + "example_values": [ + "0.042", + "0.036", + "0.038", + "0.047", + "0.033" + ] + } + }, + { + "name": "free sulfur dioxide", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 120, + "unique_ratio": 0.030628, + "example_values": [ + "21", + "24", + "41", + "43", + "69" + ] + } + }, + { + "name": "total sulfur dioxide", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 244, + "unique_ratio": 0.062277, + "example_values": [ + "144", + "99", + "114", + "132", + "160" + ] + } + }, + { + "name": "density", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 839, + "unique_ratio": 0.21414, + "example_values": [ + "0.99304", + "0.9947", + "0.99155", + "0.98975", + "0.99705" + ] + } + }, + { + "name": "pH", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 100, + "unique_ratio": 0.025523, + "example_values": [ + "3.13", + "3.18", + "3.37", + "3.21", + "3.16" + ] + } + }, + { + "name": "sulphates", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 78, + "unique_ratio": 0.019908, + "example_values": [ + "0.4", + "0.53", + "0.66", + "0.47", + "0.5" + ] + } + }, + { + "name": "alcohol", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 97, + "unique_ratio": 0.024758, + "example_values": [ + "9.6", + "9.7", + "11.7", + "13.4", + "8.8" + ] + } + }, + { + "name": "quality", + "role": "target", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 7, + "unique_ratio": 0.001787, + "example_values": [ + "5", + "6", + "7", + "8", + "3" + ] + } + } + ], + "public_manifest": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/n3/tvae/tvae-n3-20260504_172819/public_gate/staged_input_manifest.json", + "train_csv": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/n3/tvae/tvae-n3-20260504_172819/staged/public/train.csv", + "val_csv": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/n3/tvae/tvae-n3-20260504_172819/staged/public/val.csv", + "test_csv": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/n3/tvae/tvae-n3-20260504_172819/staged/public/test.csv", + "features_json": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/n3/tvae/tvae-n3-20260504_172819/staged/public/staged_features.json", + "public_gate_report": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/n3/tvae/tvae-n3-20260504_172819/public_gate/public_gate_report.json" +} \ No newline at end of file diff --git a/hyperparameter/n3/tvae/tvae-n3-20260504_172819/tvae-n3-3918-20260504_172901.csv b/hyperparameter/n3/tvae/tvae-n3-20260504_172819/tvae-n3-3918-20260504_172901.csv new file mode 100644 index 0000000000000000000000000000000000000000..ce98bd29f56845d8d881c8f81d574afb9ea1db39 --- /dev/null +++ b/hyperparameter/n3/tvae/tvae-n3-20260504_172819/tvae-n3-3918-20260504_172901.csv @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:c1705f92cdce4d8ba19f5c7cbe746d70c8efc8448d05c10bc2f7845b2ac2570b +size 820144 diff --git a/hyperparameter/n3/tvae/tvae-n3-20260504_172819/tvae_metadata.json b/hyperparameter/n3/tvae/tvae-n3-20260504_172819/tvae_metadata.json new file mode 100644 index 0000000000000000000000000000000000000000..40d513aa1aca4c6f5c1be8afc3d6a1a0c75aa74f --- /dev/null +++ b/hyperparameter/n3/tvae/tvae-n3-20260504_172819/tvae_metadata.json @@ -0,0 +1,52 @@ +{ + "columns": [ + { + "name": "fixed acidity", + "type": "continuous" + }, + { + "name": "volatile acidity", + "type": "continuous" + }, + { + "name": "citric acid", + "type": "continuous" + }, + { + "name": "residual sugar", + "type": "continuous" + }, + { + "name": "chlorides", + "type": "continuous" + }, + { + "name": "free sulfur dioxide", + "type": "continuous" + }, + { + "name": "total sulfur dioxide", + "type": "continuous" + }, + { + "name": "density", + "type": "continuous" + }, + { + "name": "pH", + "type": "continuous" + }, + { + "name": "sulphates", + "type": "continuous" + }, + { + "name": "alcohol", + "type": "continuous" + }, + { + "name": "quality", + "type": "continuous" + } + ] +} \ No newline at end of file diff --git a/hyperparameter/n3/tvae/tvae-n3-20260504_175727/_tvae_generate.py b/hyperparameter/n3/tvae/tvae-n3-20260504_175727/_tvae_generate.py new file mode 100644 index 0000000000000000000000000000000000000000..4f19e5323617cc73049297e90dab025fa598fb8d --- /dev/null +++ b/hyperparameter/n3/tvae/tvae-n3-20260504_175727/_tvae_generate.py @@ -0,0 +1,23 @@ +import os, sys +sys.path.insert(0, "/work") +from src.SpecificModels.ctgan_joblib_parallel_cap import apply_parallel_cap_from_env +apply_parallel_cap_from_env() +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 +os.environ.setdefault("LOKY_MAX_CPU_COUNT", "8") +os.environ.setdefault("OPENBLAS_NUM_THREADS", "8") +os.environ.setdefault("MKL_NUM_THREADS", "8") +model = TVAE.load("/work/output-Benchmark-trainonly-v1/n3/tvae/tvae-n3-20260504_175727/models_300epochs/tvae_300epochs.pt") +total = 3918 +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-Benchmark-trainonly-v1/n3/tvae/tvae-n3-20260504_175727/tvae-n3-3918-20260504_175758.csv", index=False) +print(f"[TVAE] Generated {total} rows (chunks={len(parts)}) -> /work/output-Benchmark-trainonly-v1/n3/tvae/tvae-n3-20260504_175727/tvae-n3-3918-20260504_175758.csv") diff --git a/hyperparameter/n3/tvae/tvae-n3-20260504_175727/_tvae_train.py b/hyperparameter/n3/tvae/tvae-n3-20260504_175727/_tvae_train.py new file mode 100644 index 0000000000000000000000000000000000000000..5dd280a8b9572c97a00b926438610b5dcbd8f601 --- /dev/null +++ b/hyperparameter/n3/tvae/tvae-n3-20260504_175727/_tvae_train.py @@ -0,0 +1,39 @@ +import json, os, sys +sys.path.insert(0, "/work") +from src.SpecificModels.ctgan_joblib_parallel_cap import apply_parallel_cap_from_env +apply_parallel_cap_from_env() +import pandas as pd +from ctgan.data import read_csv +from ctgan.synthesizers.tvae import TVAE + +# Keep transform stage parallelism bounded for stability on shared host. +os.environ.setdefault("LOKY_MAX_CPU_COUNT", "8") +os.environ.setdefault("OPENBLAS_NUM_THREADS", "8") +os.environ.setdefault("MKL_NUM_THREADS", "8") +_nj = (os.environ.get("TVAE_CTGAN_JOBTRANS_N_JOBS") or "").strip() +if _nj: + print("[TVAE] joblib Parallel cap ON, TVAE_CTGAN_JOBTRANS_N_JOBS=" + _nj) +else: + print("[TVAE] joblib Parallel cap OFF (unset TVAE_CTGAN_JOBTRANS_N_JOBS)") +print("[TVAE] LOKY_MAX_CPU_COUNT=" + str(os.environ.get("LOKY_MAX_CPU_COUNT", ""))) + +csv_path = "/work/output-Benchmark-trainonly-v1/n3/tvae/tvae-n3-20260504_175727/staged/public/train.csv" +meta_path = "/work/output-Benchmark-trainonly-v1/n3/tvae/tvae-n3-20260504_175727/tvae_metadata.json" +save_path = "/work/output-Benchmark-trainonly-v1/n3/tvae/tvae-n3-20260504_175727/models_300epochs/tvae_300epochs.pt" +epochs = int(os.environ.get("TVAE_EPOCHS", 300)) +batch_size = int(os.environ.get("TVAE_BATCH_SIZE", "500")) +embedding_dim = int(os.environ.get("TVAE_EMBEDDING_DIM", "128")) +def _parse_dims(name, default): + raw = (os.environ.get(name) or "").strip() + if not raw: + return default + return tuple(int(x.strip()) for x in raw.split(",") if x.strip()) +compress_dims = _parse_dims("TVAE_COMPRESS_DIMS", (128, 128)) +decompress_dims = _parse_dims("TVAE_DECOMPRESS_DIMS", (128, 128)) + +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}, batch_size={batch_size}, embedding_dim={embedding_dim}, compress_dims={compress_dims}, decompress_dims={decompress_dims}") +model = TVAE(epochs=epochs, batch_size=batch_size, embedding_dim=embedding_dim, compress_dims=compress_dims, decompress_dims=decompress_dims) +model.fit(data, discrete_columns) +model.save(save_path) +print(f"[TVAE] Model saved -> {save_path}") diff --git a/hyperparameter/n3/tvae/tvae-n3-20260504_175727/gen_20260504_175758.log b/hyperparameter/n3/tvae/tvae-n3-20260504_175727/gen_20260504_175758.log new file mode 100644 index 0000000000000000000000000000000000000000..be2199d29a34a5d38935b76a6d7a38e67909605f --- /dev/null +++ b/hyperparameter/n3/tvae/tvae-n3-20260504_175727/gen_20260504_175758.log @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:db448ebaabbc4cd4b4983a83fcceef6c65e0ea33541705bb461c888d9975eb40 +size 404 diff --git a/hyperparameter/n3/tvae/tvae-n3-20260504_175727/input_snapshot.json b/hyperparameter/n3/tvae/tvae-n3-20260504_175727/input_snapshot.json new file mode 100644 index 0000000000000000000000000000000000000000..1ddd4c8dc6c3d918927aad5bcb5dbb27f78068fe --- /dev/null +++ b/hyperparameter/n3/tvae/tvae-n3-20260504_175727/input_snapshot.json @@ -0,0 +1,36 @@ +{ + "dataset_id": "n3", + "model": "tvae", + "inputs": { + "train_csv": { + "path": "/data/jialinzhang/SynthesizePipeline-server/DatasetNew/n3/n3-train.csv", + "exists": true, + "size": 211519, + "sha256": "2160a06db2fea02adb0ebb79d8d853bd2544580be301e71f6e8deeb1489a9009" + }, + "val_csv": { + "path": "/data/jialinzhang/SynthesizePipeline-server/DatasetNew/n3/n3-val.csv", + "exists": true, + "size": 26499, + "sha256": "d5ccfee07dfa9e7bdee5bb87642b43828e09f74c6cc0266a3d19d9feaa83106e" + }, + "test_csv": { + "path": "/data/jialinzhang/SynthesizePipeline-server/DatasetNew/n3/n3-test.csv", + "exists": true, + "size": 26676, + "sha256": "6f83aacb0d1747b95e287352a7fff5d9d65a1c127b773852346c68485c4ede47" + }, + "profile_json": { + "path": "/data/jialinzhang/SynthesizePipeline-server/DatasetNew/artifacts/data_core/tabular/n3/n3-dataset_profile.json", + "exists": true, + "size": 5235, + "sha256": "23d2e5904a2ca90cbf8d6e3c75887681721e9b90cc705c31a680c11513d0c46f" + }, + "contract_json": { + "path": "/data/jialinzhang/SynthesizePipeline-server/DatasetNew/artifacts/data_core/tabular/n3/n3-dataset_contract_v1.json", + "exists": true, + "size": 6281, + "sha256": "c0cc56f5fe28e1b65927255c6e3c2b0e9479862c2ec6f2fea1664da36c9a3a09" + } + } +} \ No newline at end of file diff --git a/hyperparameter/n3/tvae/tvae-n3-20260504_175727/models_300epochs/train_20260504_175727.log b/hyperparameter/n3/tvae/tvae-n3-20260504_175727/models_300epochs/train_20260504_175727.log new file mode 100644 index 0000000000000000000000000000000000000000..3e3799a9880df5025cf8ccc9aa86da10e6b560fe --- /dev/null +++ b/hyperparameter/n3/tvae/tvae-n3-20260504_175727/models_300epochs/train_20260504_175727.log @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:82a8d64b2911679c891b7ffa21f7fab5f4b3a1f34882f998869e12b416f2fa7a +size 615 diff --git a/hyperparameter/n3/tvae/tvae-n3-20260504_175727/models_300epochs/tvae_300epochs.pt b/hyperparameter/n3/tvae/tvae-n3-20260504_175727/models_300epochs/tvae_300epochs.pt new file mode 100644 index 0000000000000000000000000000000000000000..bd6e93a7286e021ba3c52b9a2512cd47abe06ecd --- /dev/null +++ b/hyperparameter/n3/tvae/tvae-n3-20260504_175727/models_300epochs/tvae_300epochs.pt @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:f2fd1df8cb6b44f16c94bcde8d66db7e09270950305b5018e9f53a6dd2c29431 +size 483628 diff --git a/hyperparameter/n3/tvae/tvae-n3-20260504_175727/public_gate/normalized_schema_snapshot.json b/hyperparameter/n3/tvae/tvae-n3-20260504_175727/public_gate/normalized_schema_snapshot.json new file mode 100644 index 0000000000000000000000000000000000000000..c41fe304503de23190a02e6cbfafa35b3bf134d3 --- /dev/null +++ b/hyperparameter/n3/tvae/tvae-n3-20260504_175727/public_gate/normalized_schema_snapshot.json @@ -0,0 +1,259 @@ +{ + "dataset_id": "n3", + "target_column": "quality", + "task_type": "classification", + "columns": [ + { + "name": "fixed acidity", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 66, + "unique_ratio": 0.016845, + "example_values": [ + "7.1", + "8.5", + "6.4", + "6.8", + "7.6" + ] + } + }, + { + "name": "volatile acidity", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 121, + "unique_ratio": 0.030883, + "example_values": [ + "0.31", + "0.21", + "0.24", + "0.43", + "0.27" + ] + } + }, + { + "name": "citric acid", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 85, + "unique_ratio": 0.021695, + "example_values": [ + "0.17", + "0.41", + "0.31", + "0.25", + "0.3" + ] + } + }, + { + "name": "residual sugar", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 296, + "unique_ratio": 0.075549, + "example_values": [ + "1", + "4.3", + "2.8", + "13", + "12.9" + ] + } + }, + { + "name": "chlorides", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 147, + "unique_ratio": 0.037519, + "example_values": [ + "0.042", + "0.036", + "0.038", + "0.047", + "0.033" + ] + } + }, + { + "name": "free sulfur dioxide", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 120, + "unique_ratio": 0.030628, + "example_values": [ + "21", + "24", + "41", + "43", + "69" + ] + } + }, + { + "name": "total sulfur dioxide", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 244, + "unique_ratio": 0.062277, + "example_values": [ + "144", + "99", + "114", + "132", + "160" + ] + } + }, + { + "name": "density", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 839, + "unique_ratio": 0.21414, + "example_values": [ + "0.99304", + "0.9947", + "0.99155", + "0.98975", + "0.99705" + ] + } + }, + { + "name": "pH", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 100, + "unique_ratio": 0.025523, + "example_values": [ + "3.13", + "3.18", + "3.37", + "3.21", + "3.16" + ] + } + }, + { + "name": "sulphates", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 78, + "unique_ratio": 0.019908, + "example_values": [ + "0.4", + "0.53", + "0.66", + "0.47", + "0.5" + ] + } + }, + { + "name": "alcohol", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 97, + "unique_ratio": 0.024758, + "example_values": [ + "9.6", + "9.7", + "11.7", + "13.4", + "8.8" + ] + } + }, + { + "name": "quality", + "role": "target", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 7, + "unique_ratio": 0.001787, + "example_values": [ + "5", + "6", + "7", + "8", + "3" + ] + } + } + ] +} \ No newline at end of file diff --git a/hyperparameter/n3/tvae/tvae-n3-20260504_175727/public_gate/public_gate_report.json b/hyperparameter/n3/tvae/tvae-n3-20260504_175727/public_gate/public_gate_report.json new file mode 100644 index 0000000000000000000000000000000000000000..93b97319f739e39079d6c6549fd2020f8a6dac25 --- /dev/null +++ b/hyperparameter/n3/tvae/tvae-n3-20260504_175727/public_gate/public_gate_report.json @@ -0,0 +1,37 @@ +{ + "dataset_id": "n3", + "status": "pass", + "checks": [ + { + "check_id": "PG001_csv_parse_ok", + "status": "pass" + }, + { + "check_id": "PG002_split_header_consistent", + "status": "pass" + }, + { + "check_id": "PG003_profile_header_match", + "status": "pass" + }, + { + "check_id": "PG004_missing_token_normalized", + "status": "pass" + }, + { + "check_id": "PG005_semantic_type_validated", + "status": "pass" + }, + { + "check_id": "PG006_target_defined_and_valid", + "status": "pass" + } + ], + "target_column": "quality", + "task_type": "classification", + "input_splits": { + "train": "/data/jialinzhang/SynthesizePipeline-server/DatasetNew/n3/n3-train.csv", + "val": "/data/jialinzhang/SynthesizePipeline-server/DatasetNew/n3/n3-val.csv", + "test": "/data/jialinzhang/SynthesizePipeline-server/DatasetNew/n3/n3-test.csv" + } +} \ No newline at end of file diff --git a/hyperparameter/n3/tvae/tvae-n3-20260504_175727/public_gate/staged_input_manifest.json b/hyperparameter/n3/tvae/tvae-n3-20260504_175727/public_gate/staged_input_manifest.json new file mode 100644 index 0000000000000000000000000000000000000000..cbbba1be64e5766989ea73aea1f9411b3baca043 --- /dev/null +++ b/hyperparameter/n3/tvae/tvae-n3-20260504_175727/public_gate/staged_input_manifest.json @@ -0,0 +1,264 @@ +{ + "dataset_id": "n3", + "target_column": "quality", + "task_type": "classification", + "train_csv": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/n3/tvae/tvae-n3-20260504_175727/staged/public/train.csv", + "val_csv": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/n3/tvae/tvae-n3-20260504_175727/staged/public/val.csv", + "test_csv": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/n3/tvae/tvae-n3-20260504_175727/staged/public/test.csv", + "features_json": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/n3/tvae/tvae-n3-20260504_175727/staged/public/staged_features.json", + "public_gate_report": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/n3/tvae/tvae-n3-20260504_175727/public_gate/public_gate_report.json", + "column_schema": [ + { + "name": "fixed acidity", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 66, + "unique_ratio": 0.016845, + "example_values": [ + "7.1", + "8.5", + "6.4", + "6.8", + "7.6" + ] + } + }, + { + "name": "volatile acidity", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 121, + "unique_ratio": 0.030883, + "example_values": [ + "0.31", + "0.21", + "0.24", + "0.43", + "0.27" + ] + } + }, + { + "name": "citric acid", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 85, + "unique_ratio": 0.021695, + "example_values": [ + "0.17", + "0.41", + "0.31", + "0.25", + "0.3" + ] + } + }, + { + "name": "residual sugar", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 296, + "unique_ratio": 0.075549, + "example_values": [ + "1", + "4.3", + "2.8", + "13", + "12.9" + ] + } + }, + { + "name": "chlorides", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 147, + "unique_ratio": 0.037519, + "example_values": [ + "0.042", + "0.036", + "0.038", + "0.047", + "0.033" + ] + } + }, + { + "name": "free sulfur dioxide", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 120, + "unique_ratio": 0.030628, + "example_values": [ + "21", + "24", + "41", + "43", + "69" + ] + } + }, + { + "name": "total sulfur dioxide", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 244, + "unique_ratio": 0.062277, + "example_values": [ + "144", + "99", + "114", + "132", + "160" + ] + } + }, + { + "name": "density", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 839, + "unique_ratio": 0.21414, + "example_values": [ + "0.99304", + "0.9947", + "0.99155", + "0.98975", + "0.99705" + ] + } + }, + { + "name": "pH", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 100, + "unique_ratio": 0.025523, + "example_values": [ + "3.13", + "3.18", + "3.37", + "3.21", + "3.16" + ] + } + }, + { + "name": "sulphates", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 78, + "unique_ratio": 0.019908, + "example_values": [ + "0.4", + "0.53", + "0.66", + "0.47", + "0.5" + ] + } + }, + { + "name": "alcohol", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 97, + "unique_ratio": 0.024758, + "example_values": [ + "9.6", + "9.7", + "11.7", + "13.4", + "8.8" + ] + } + }, + { + "name": "quality", + "role": "target", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 7, + "unique_ratio": 0.001787, + "example_values": [ + "5", + "6", + "7", + "8", + "3" + ] + } + } + ] +} \ No newline at end of file diff --git a/hyperparameter/n3/tvae/tvae-n3-20260504_175727/run_config.json b/hyperparameter/n3/tvae/tvae-n3-20260504_175727/run_config.json new file mode 100644 index 0000000000000000000000000000000000000000..476cce53b4de9b5863fe65838040f9963af88ddd --- /dev/null +++ b/hyperparameter/n3/tvae/tvae-n3-20260504_175727/run_config.json @@ -0,0 +1,45 @@ +{ + "schema_version": 1, + "recorded_at": "2026-05-04T17:57:27", + "dataset_id": "n3", + "model": "tvae", + "work_dir": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/n3/tvae/tvae-n3-20260504_175727", + "dataset_source_requested": "new", + "dataset_source_resolved": "new", + "cli_args": { + "model": "tvae", + "dataset": "n3", + "dataset_source": "new", + "train": true, + "generate": true, + "num_rows": 0, + "epochs": null, + "output_dir": null, + "model_dir": null, + "work_dir": null, + "resume": false, + "no_stats": false + }, + "resolved": { + "num_rows": 3918, + "model_path": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/n3/tvae/tvae-n3-20260504_175727/models_300epochs/tvae_300epochs.pt", + "output_csv": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/n3/tvae/tvae-n3-20260504_175727/tvae-n3-3918-20260504_175758.csv" + }, + "input_artifacts": { + "public_gate_report": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/n3/tvae/tvae-n3-20260504_175727/public_gate/public_gate_report.json", + "public_manifest": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/n3/tvae/tvae-n3-20260504_175727/public_gate/staged_input_manifest.json", + "model_manifest": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/n3/tvae/tvae-n3-20260504_175727/staged/tvae/model_input_manifest.json", + "train_csv": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/n3/tvae/tvae-n3-20260504_175727/staged/public/train.csv", + "features_json": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/n3/tvae/tvae-n3-20260504_175727/staged/public/staged_features.json", + "target_column": "quality", + "task_type": "classification" + }, + "env_overrides": { + "BENCHMARK_TVAE_GPUS": "device=3", + "TVAE_BATCH_SIZE": "256", + "TVAE_COMPRESS_DIMS": "64,64", + "TVAE_DECOMPRESS_DIMS": "64,64", + "TVAE_EMBEDDING_DIM": "32", + "TVAE_EPOCHS": "100" + } +} \ No newline at end of file diff --git a/hyperparameter/n3/tvae/tvae-n3-20260504_175727/runtime_result.json b/hyperparameter/n3/tvae/tvae-n3-20260504_175727/runtime_result.json new file mode 100644 index 0000000000000000000000000000000000000000..4e7dca245a4b8faedc34e16679bc9c6526dd056b --- /dev/null +++ b/hyperparameter/n3/tvae/tvae-n3-20260504_175727/runtime_result.json @@ -0,0 +1,27 @@ +{ + "dataset_id": "n3", + "model": "tvae", + "run_id": "tvae-n3-20260504_175727", + "public_gate_status": "pass", + "adapter_ready_status": "pass", + "train_status": "success", + "generate_status": "success", + "reason_code": null, + "reason_detail": null, + "artifacts": { + "synthetic_csv": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/n3/tvae/tvae-n3-20260504_175727/tvae-n3-3918-20260504_175758.csv", + "model_path": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/n3/tvae/tvae-n3-20260504_175727/models_300epochs/tvae_300epochs.pt" + }, + "timings": { + "train": { + "started_at": "2026-05-04T17:57:27", + "ended_at": "2026-05-04T17:57:58", + "duration_sec": 30.698 + }, + "generate": { + "started_at": "2026-05-04T17:57:58", + "ended_at": "2026-05-04T17:58:03", + "duration_sec": 5.076 + } + } +} \ No newline at end of file diff --git a/hyperparameter/n3/tvae/tvae-n3-20260504_175727/staged/public/staged_features.json b/hyperparameter/n3/tvae/tvae-n3-20260504_175727/staged/public/staged_features.json new file mode 100644 index 0000000000000000000000000000000000000000..08fe4d766d091d2f2ddba724a16b9509cbe4c390 --- /dev/null +++ b/hyperparameter/n3/tvae/tvae-n3-20260504_175727/staged/public/staged_features.json @@ -0,0 +1,62 @@ +[ + { + "feature_name": "fixed acidity", + "data_type": "continuous", + "is_target": false + }, + { + "feature_name": "volatile acidity", + "data_type": "continuous", + "is_target": false + }, + { + "feature_name": "citric acid", + "data_type": "continuous", + "is_target": false + }, + { + "feature_name": "residual sugar", + "data_type": "continuous", + "is_target": false + }, + { + "feature_name": "chlorides", + "data_type": "continuous", + "is_target": false + }, + { + "feature_name": "free sulfur dioxide", + "data_type": "continuous", + "is_target": false + }, + { + "feature_name": "total sulfur dioxide", + "data_type": "continuous", + "is_target": false + }, + { + "feature_name": "density", + "data_type": "continuous", + "is_target": false + }, + { + "feature_name": "pH", + "data_type": "continuous", + "is_target": false + }, + { + "feature_name": "sulphates", + "data_type": "continuous", + "is_target": false + }, + { + "feature_name": "alcohol", + "data_type": "continuous", + "is_target": false + }, + { + "feature_name": "quality", + "data_type": "continuous", + "is_target": true + } +] \ No newline at end of file diff --git a/hyperparameter/n3/tvae/tvae-n3-20260504_175727/staged/public/test.csv b/hyperparameter/n3/tvae/tvae-n3-20260504_175727/staged/public/test.csv new file mode 100644 index 0000000000000000000000000000000000000000..db5cd50d3746410ea470625fa2ba2c8e9775cc0d --- /dev/null +++ b/hyperparameter/n3/tvae/tvae-n3-20260504_175727/staged/public/test.csv @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:19e107152a94432e2a37ff045c00cfe35e1be30208b1553080d7dd0ede256d3b +size 28944 diff --git a/hyperparameter/n3/tvae/tvae-n3-20260504_175727/staged/public/train.csv b/hyperparameter/n3/tvae/tvae-n3-20260504_175727/staged/public/train.csv new file mode 100644 index 0000000000000000000000000000000000000000..87ca26726fe82ccbaa397919305b043c17eb374e --- /dev/null +++ b/hyperparameter/n3/tvae/tvae-n3-20260504_175727/staged/public/train.csv @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:7813c8cca73ba4bfc6559215257b341c21e459980ad17ae6ddc809306bc9a0b9 +size 229945 diff --git a/hyperparameter/n3/tvae/tvae-n3-20260504_175727/staged/public/val.csv b/hyperparameter/n3/tvae/tvae-n3-20260504_175727/staged/public/val.csv new file mode 100644 index 0000000000000000000000000000000000000000..6acf84c76c47093b513c46d5503972a2dff275c0 --- /dev/null +++ b/hyperparameter/n3/tvae/tvae-n3-20260504_175727/staged/public/val.csv @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:cf5979d9675567d9d6642640c9b84fc6c49e492604144723c30f50516c05cee6 +size 28791 diff --git a/hyperparameter/n3/tvae/tvae-n3-20260504_175727/staged/tvae/adapter_report.json b/hyperparameter/n3/tvae/tvae-n3-20260504_175727/staged/tvae/adapter_report.json new file mode 100644 index 0000000000000000000000000000000000000000..932bdd965ac25575b89aacc386e5b63da77cd901 --- /dev/null +++ b/hyperparameter/n3/tvae/tvae-n3-20260504_175727/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-Benchmark-trainonly-v1/n3/tvae/tvae-n3-20260504_175727/staged/tvae/model_input_manifest.json" +} \ No newline at end of file diff --git a/hyperparameter/n3/tvae/tvae-n3-20260504_175727/staged/tvae/adapter_transforms_applied.json b/hyperparameter/n3/tvae/tvae-n3-20260504_175727/staged/tvae/adapter_transforms_applied.json new file mode 100644 index 0000000000000000000000000000000000000000..0637a088a01e8ddab3bf3fa98dbe804cbde1a0dc --- /dev/null +++ b/hyperparameter/n3/tvae/tvae-n3-20260504_175727/staged/tvae/adapter_transforms_applied.json @@ -0,0 +1 @@ +[] \ No newline at end of file diff --git a/hyperparameter/n3/tvae/tvae-n3-20260504_175727/staged/tvae/model_input_manifest.json b/hyperparameter/n3/tvae/tvae-n3-20260504_175727/staged/tvae/model_input_manifest.json new file mode 100644 index 0000000000000000000000000000000000000000..680296f3d23aec9509440d7e5bc44b47598a28db --- /dev/null +++ b/hyperparameter/n3/tvae/tvae-n3-20260504_175727/staged/tvae/model_input_manifest.json @@ -0,0 +1,266 @@ +{ + "dataset_id": "n3", + "model": "tvae", + "target_column": "quality", + "task_type": "classification", + "column_schema": [ + { + "name": "fixed acidity", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 66, + "unique_ratio": 0.016845, + "example_values": [ + "7.1", + "8.5", + "6.4", + "6.8", + "7.6" + ] + } + }, + { + "name": "volatile acidity", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 121, + "unique_ratio": 0.030883, + "example_values": [ + "0.31", + "0.21", + "0.24", + "0.43", + "0.27" + ] + } + }, + { + "name": "citric acid", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 85, + "unique_ratio": 0.021695, + "example_values": [ + "0.17", + "0.41", + "0.31", + "0.25", + "0.3" + ] + } + }, + { + "name": "residual sugar", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 296, + "unique_ratio": 0.075549, + "example_values": [ + "1", + "4.3", + "2.8", + "13", + "12.9" + ] + } + }, + { + "name": "chlorides", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 147, + "unique_ratio": 0.037519, + "example_values": [ + "0.042", + "0.036", + "0.038", + "0.047", + "0.033" + ] + } + }, + { + "name": "free sulfur dioxide", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 120, + "unique_ratio": 0.030628, + "example_values": [ + "21", + "24", + "41", + "43", + "69" + ] + } + }, + { + "name": "total sulfur dioxide", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 244, + "unique_ratio": 0.062277, + "example_values": [ + "144", + "99", + "114", + "132", + "160" + ] + } + }, + { + "name": "density", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 839, + "unique_ratio": 0.21414, + "example_values": [ + "0.99304", + "0.9947", + "0.99155", + "0.98975", + "0.99705" + ] + } + }, + { + "name": "pH", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 100, + "unique_ratio": 0.025523, + "example_values": [ + "3.13", + "3.18", + "3.37", + "3.21", + "3.16" + ] + } + }, + { + "name": "sulphates", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 78, + "unique_ratio": 0.019908, + "example_values": [ + "0.4", + "0.53", + "0.66", + "0.47", + "0.5" + ] + } + }, + { + "name": "alcohol", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 97, + "unique_ratio": 0.024758, + "example_values": [ + "9.6", + "9.7", + "11.7", + "13.4", + "8.8" + ] + } + }, + { + "name": "quality", + "role": "target", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 7, + "unique_ratio": 0.001787, + "example_values": [ + "5", + "6", + "7", + "8", + "3" + ] + } + } + ], + "public_manifest": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/n3/tvae/tvae-n3-20260504_175727/public_gate/staged_input_manifest.json", + "train_csv": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/n3/tvae/tvae-n3-20260504_175727/staged/public/train.csv", + "val_csv": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/n3/tvae/tvae-n3-20260504_175727/staged/public/val.csv", + "test_csv": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/n3/tvae/tvae-n3-20260504_175727/staged/public/test.csv", + "features_json": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/n3/tvae/tvae-n3-20260504_175727/staged/public/staged_features.json", + "public_gate_report": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/n3/tvae/tvae-n3-20260504_175727/public_gate/public_gate_report.json" +} \ No newline at end of file diff --git a/hyperparameter/n3/tvae/tvae-n3-20260504_175727/tvae-n3-3918-20260504_175758.csv b/hyperparameter/n3/tvae/tvae-n3-20260504_175727/tvae-n3-3918-20260504_175758.csv new file mode 100644 index 0000000000000000000000000000000000000000..0a57c670225b053fefa39b1041779c74e85b01fd --- /dev/null +++ b/hyperparameter/n3/tvae/tvae-n3-20260504_175727/tvae-n3-3918-20260504_175758.csv @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:dbe1d4fdb0a9c6941467d3a92e4d25426d59c01623a0623cfcdef6d4fe7f84b9 +size 820357 diff --git a/hyperparameter/n3/tvae/tvae-n3-20260504_175727/tvae_metadata.json b/hyperparameter/n3/tvae/tvae-n3-20260504_175727/tvae_metadata.json new file mode 100644 index 0000000000000000000000000000000000000000..40d513aa1aca4c6f5c1be8afc3d6a1a0c75aa74f --- /dev/null +++ b/hyperparameter/n3/tvae/tvae-n3-20260504_175727/tvae_metadata.json @@ -0,0 +1,52 @@ +{ + "columns": [ + { + "name": "fixed acidity", + "type": "continuous" + }, + { + "name": "volatile acidity", + "type": "continuous" + }, + { + "name": "citric acid", + "type": "continuous" + }, + { + "name": "residual sugar", + "type": "continuous" + }, + { + "name": "chlorides", + "type": "continuous" + }, + { + "name": "free sulfur dioxide", + "type": "continuous" + }, + { + "name": "total sulfur dioxide", + "type": "continuous" + }, + { + "name": "density", + "type": "continuous" + }, + { + "name": "pH", + "type": "continuous" + }, + { + "name": "sulphates", + "type": "continuous" + }, + { + "name": "alcohol", + "type": "continuous" + }, + { + "name": "quality", + "type": "continuous" + } + ] +} \ No newline at end of file diff --git a/hyperparameter/n3/tvae/tvae-n3-20260504_175816/_tvae_generate.py b/hyperparameter/n3/tvae/tvae-n3-20260504_175816/_tvae_generate.py new file mode 100644 index 0000000000000000000000000000000000000000..24ca6e385d540d624017847f47ba243f2999bd56 --- /dev/null +++ b/hyperparameter/n3/tvae/tvae-n3-20260504_175816/_tvae_generate.py @@ -0,0 +1,23 @@ +import os, sys +sys.path.insert(0, "/work") +from src.SpecificModels.ctgan_joblib_parallel_cap import apply_parallel_cap_from_env +apply_parallel_cap_from_env() +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 +os.environ.setdefault("LOKY_MAX_CPU_COUNT", "8") +os.environ.setdefault("OPENBLAS_NUM_THREADS", "8") +os.environ.setdefault("MKL_NUM_THREADS", "8") +model = TVAE.load("/work/output-Benchmark-trainonly-v1/n3/tvae/tvae-n3-20260504_175816/models_300epochs/tvae_300epochs.pt") +total = 3918 +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-Benchmark-trainonly-v1/n3/tvae/tvae-n3-20260504_175816/tvae-n3-3918-20260504_175903.csv", index=False) +print(f"[TVAE] Generated {total} rows (chunks={len(parts)}) -> /work/output-Benchmark-trainonly-v1/n3/tvae/tvae-n3-20260504_175816/tvae-n3-3918-20260504_175903.csv") diff --git a/hyperparameter/n3/tvae/tvae-n3-20260504_175816/_tvae_train.py b/hyperparameter/n3/tvae/tvae-n3-20260504_175816/_tvae_train.py new file mode 100644 index 0000000000000000000000000000000000000000..6a0e13d23bea670f006bdee5b27f5ed16ac0aace --- /dev/null +++ b/hyperparameter/n3/tvae/tvae-n3-20260504_175816/_tvae_train.py @@ -0,0 +1,39 @@ +import json, os, sys +sys.path.insert(0, "/work") +from src.SpecificModels.ctgan_joblib_parallel_cap import apply_parallel_cap_from_env +apply_parallel_cap_from_env() +import pandas as pd +from ctgan.data import read_csv +from ctgan.synthesizers.tvae import TVAE + +# Keep transform stage parallelism bounded for stability on shared host. +os.environ.setdefault("LOKY_MAX_CPU_COUNT", "8") +os.environ.setdefault("OPENBLAS_NUM_THREADS", "8") +os.environ.setdefault("MKL_NUM_THREADS", "8") +_nj = (os.environ.get("TVAE_CTGAN_JOBTRANS_N_JOBS") or "").strip() +if _nj: + print("[TVAE] joblib Parallel cap ON, TVAE_CTGAN_JOBTRANS_N_JOBS=" + _nj) +else: + print("[TVAE] joblib Parallel cap OFF (unset TVAE_CTGAN_JOBTRANS_N_JOBS)") +print("[TVAE] LOKY_MAX_CPU_COUNT=" + str(os.environ.get("LOKY_MAX_CPU_COUNT", ""))) + +csv_path = "/work/output-Benchmark-trainonly-v1/n3/tvae/tvae-n3-20260504_175816/staged/public/train.csv" +meta_path = "/work/output-Benchmark-trainonly-v1/n3/tvae/tvae-n3-20260504_175816/tvae_metadata.json" +save_path = "/work/output-Benchmark-trainonly-v1/n3/tvae/tvae-n3-20260504_175816/models_300epochs/tvae_300epochs.pt" +epochs = int(os.environ.get("TVAE_EPOCHS", 300)) +batch_size = int(os.environ.get("TVAE_BATCH_SIZE", "500")) +embedding_dim = int(os.environ.get("TVAE_EMBEDDING_DIM", "128")) +def _parse_dims(name, default): + raw = (os.environ.get(name) or "").strip() + if not raw: + return default + return tuple(int(x.strip()) for x in raw.split(",") if x.strip()) +compress_dims = _parse_dims("TVAE_COMPRESS_DIMS", (128, 128)) +decompress_dims = _parse_dims("TVAE_DECOMPRESS_DIMS", (128, 128)) + +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}, batch_size={batch_size}, embedding_dim={embedding_dim}, compress_dims={compress_dims}, decompress_dims={decompress_dims}") +model = TVAE(epochs=epochs, batch_size=batch_size, embedding_dim=embedding_dim, compress_dims=compress_dims, decompress_dims=decompress_dims) +model.fit(data, discrete_columns) +model.save(save_path) +print(f"[TVAE] Model saved -> {save_path}") diff --git a/hyperparameter/n3/tvae/tvae-n3-20260504_175816/gen_20260504_175903.log b/hyperparameter/n3/tvae/tvae-n3-20260504_175816/gen_20260504_175903.log new file mode 100644 index 0000000000000000000000000000000000000000..c9e9969cc7e63477a8419ee427d1b2f909f6c489 --- /dev/null +++ b/hyperparameter/n3/tvae/tvae-n3-20260504_175816/gen_20260504_175903.log @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:7ef6bcb79b68ef381cc6167555080df374451239d37735e6378da6ec9d372ef7 +size 404 diff --git a/hyperparameter/n3/tvae/tvae-n3-20260504_175816/input_snapshot.json b/hyperparameter/n3/tvae/tvae-n3-20260504_175816/input_snapshot.json new file mode 100644 index 0000000000000000000000000000000000000000..1ddd4c8dc6c3d918927aad5bcb5dbb27f78068fe --- /dev/null +++ b/hyperparameter/n3/tvae/tvae-n3-20260504_175816/input_snapshot.json @@ -0,0 +1,36 @@ +{ + "dataset_id": "n3", + "model": "tvae", + "inputs": { + "train_csv": { + "path": "/data/jialinzhang/SynthesizePipeline-server/DatasetNew/n3/n3-train.csv", + "exists": true, + "size": 211519, + "sha256": "2160a06db2fea02adb0ebb79d8d853bd2544580be301e71f6e8deeb1489a9009" + }, + "val_csv": { + "path": "/data/jialinzhang/SynthesizePipeline-server/DatasetNew/n3/n3-val.csv", + "exists": true, + "size": 26499, + "sha256": "d5ccfee07dfa9e7bdee5bb87642b43828e09f74c6cc0266a3d19d9feaa83106e" + }, + "test_csv": { + "path": "/data/jialinzhang/SynthesizePipeline-server/DatasetNew/n3/n3-test.csv", + "exists": true, + "size": 26676, + "sha256": "6f83aacb0d1747b95e287352a7fff5d9d65a1c127b773852346c68485c4ede47" + }, + "profile_json": { + "path": "/data/jialinzhang/SynthesizePipeline-server/DatasetNew/artifacts/data_core/tabular/n3/n3-dataset_profile.json", + "exists": true, + "size": 5235, + "sha256": "23d2e5904a2ca90cbf8d6e3c75887681721e9b90cc705c31a680c11513d0c46f" + }, + "contract_json": { + "path": "/data/jialinzhang/SynthesizePipeline-server/DatasetNew/artifacts/data_core/tabular/n3/n3-dataset_contract_v1.json", + "exists": true, + "size": 6281, + "sha256": "c0cc56f5fe28e1b65927255c6e3c2b0e9479862c2ec6f2fea1664da36c9a3a09" + } + } +} \ No newline at end of file diff --git a/hyperparameter/n3/tvae/tvae-n3-20260504_175816/models_300epochs/train_20260504_175816.log b/hyperparameter/n3/tvae/tvae-n3-20260504_175816/models_300epochs/train_20260504_175816.log new file mode 100644 index 0000000000000000000000000000000000000000..e055fa1e98372dbec5a8ffce805628a103a9f72b --- /dev/null +++ b/hyperparameter/n3/tvae/tvae-n3-20260504_175816/models_300epochs/train_20260504_175816.log @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:b7a1bb315d7e1616fb4b8e5138da885661581807139f1f08e2621acd28c45b85 +size 619 diff --git a/hyperparameter/n3/tvae/tvae-n3-20260504_175816/models_300epochs/tvae_300epochs.pt b/hyperparameter/n3/tvae/tvae-n3-20260504_175816/models_300epochs/tvae_300epochs.pt new file mode 100644 index 0000000000000000000000000000000000000000..8178e9c8a08578eab3591ce64b4bf5d1b6f97b66 --- /dev/null +++ b/hyperparameter/n3/tvae/tvae-n3-20260504_175816/models_300epochs/tvae_300epochs.pt @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:5c1219c5d288f89182065305ca98b09ef876d744e9426781fc7af1ace88c8b95 +size 629484 diff --git a/hyperparameter/n3/tvae/tvae-n3-20260504_175816/public_gate/normalized_schema_snapshot.json b/hyperparameter/n3/tvae/tvae-n3-20260504_175816/public_gate/normalized_schema_snapshot.json new file mode 100644 index 0000000000000000000000000000000000000000..c41fe304503de23190a02e6cbfafa35b3bf134d3 --- /dev/null +++ b/hyperparameter/n3/tvae/tvae-n3-20260504_175816/public_gate/normalized_schema_snapshot.json @@ -0,0 +1,259 @@ +{ + "dataset_id": "n3", + "target_column": "quality", + "task_type": "classification", + "columns": [ + { + "name": "fixed acidity", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 66, + "unique_ratio": 0.016845, + "example_values": [ + "7.1", + "8.5", + "6.4", + "6.8", + "7.6" + ] + } + }, + { + "name": "volatile acidity", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 121, + "unique_ratio": 0.030883, + "example_values": [ + "0.31", + "0.21", + "0.24", + "0.43", + "0.27" + ] + } + }, + { + "name": "citric acid", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 85, + "unique_ratio": 0.021695, + "example_values": [ + "0.17", + "0.41", + "0.31", + "0.25", + "0.3" + ] + } + }, + { + "name": "residual sugar", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 296, + "unique_ratio": 0.075549, + "example_values": [ + "1", + "4.3", + "2.8", + "13", + "12.9" + ] + } + }, + { + "name": "chlorides", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 147, + "unique_ratio": 0.037519, + "example_values": [ + "0.042", + "0.036", + "0.038", + "0.047", + "0.033" + ] + } + }, + { + "name": "free sulfur dioxide", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 120, + "unique_ratio": 0.030628, + "example_values": [ + "21", + "24", + "41", + "43", + "69" + ] + } + }, + { + "name": "total sulfur dioxide", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 244, + "unique_ratio": 0.062277, + "example_values": [ + "144", + "99", + "114", + "132", + "160" + ] + } + }, + { + "name": "density", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 839, + "unique_ratio": 0.21414, + "example_values": [ + "0.99304", + "0.9947", + "0.99155", + "0.98975", + "0.99705" + ] + } + }, + { + "name": "pH", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 100, + "unique_ratio": 0.025523, + "example_values": [ + "3.13", + "3.18", + "3.37", + "3.21", + "3.16" + ] + } + }, + { + "name": "sulphates", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 78, + "unique_ratio": 0.019908, + "example_values": [ + "0.4", + "0.53", + "0.66", + "0.47", + "0.5" + ] + } + }, + { + "name": "alcohol", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 97, + "unique_ratio": 0.024758, + "example_values": [ + "9.6", + "9.7", + "11.7", + "13.4", + "8.8" + ] + } + }, + { + "name": "quality", + "role": "target", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 7, + "unique_ratio": 0.001787, + "example_values": [ + "5", + "6", + "7", + "8", + "3" + ] + } + } + ] +} \ No newline at end of file diff --git a/hyperparameter/n3/tvae/tvae-n3-20260504_175816/public_gate/public_gate_report.json b/hyperparameter/n3/tvae/tvae-n3-20260504_175816/public_gate/public_gate_report.json new file mode 100644 index 0000000000000000000000000000000000000000..93b97319f739e39079d6c6549fd2020f8a6dac25 --- /dev/null +++ b/hyperparameter/n3/tvae/tvae-n3-20260504_175816/public_gate/public_gate_report.json @@ -0,0 +1,37 @@ +{ + "dataset_id": "n3", + "status": "pass", + "checks": [ + { + "check_id": "PG001_csv_parse_ok", + "status": "pass" + }, + { + "check_id": "PG002_split_header_consistent", + "status": "pass" + }, + { + "check_id": "PG003_profile_header_match", + "status": "pass" + }, + { + "check_id": "PG004_missing_token_normalized", + "status": "pass" + }, + { + "check_id": "PG005_semantic_type_validated", + "status": "pass" + }, + { + "check_id": "PG006_target_defined_and_valid", + "status": "pass" + } + ], + "target_column": "quality", + "task_type": "classification", + "input_splits": { + "train": "/data/jialinzhang/SynthesizePipeline-server/DatasetNew/n3/n3-train.csv", + "val": "/data/jialinzhang/SynthesizePipeline-server/DatasetNew/n3/n3-val.csv", + "test": "/data/jialinzhang/SynthesizePipeline-server/DatasetNew/n3/n3-test.csv" + } +} \ No newline at end of file diff --git a/hyperparameter/n3/tvae/tvae-n3-20260504_175816/public_gate/staged_input_manifest.json b/hyperparameter/n3/tvae/tvae-n3-20260504_175816/public_gate/staged_input_manifest.json new file mode 100644 index 0000000000000000000000000000000000000000..795108ea10aec7b6850ee89aa206d4217dce08d3 --- /dev/null +++ b/hyperparameter/n3/tvae/tvae-n3-20260504_175816/public_gate/staged_input_manifest.json @@ -0,0 +1,264 @@ +{ + "dataset_id": "n3", + "target_column": "quality", + "task_type": "classification", + "train_csv": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/n3/tvae/tvae-n3-20260504_175816/staged/public/train.csv", + "val_csv": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/n3/tvae/tvae-n3-20260504_175816/staged/public/val.csv", + "test_csv": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/n3/tvae/tvae-n3-20260504_175816/staged/public/test.csv", + "features_json": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/n3/tvae/tvae-n3-20260504_175816/staged/public/staged_features.json", + "public_gate_report": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/n3/tvae/tvae-n3-20260504_175816/public_gate/public_gate_report.json", + "column_schema": [ + { + "name": "fixed acidity", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 66, + "unique_ratio": 0.016845, + "example_values": [ + "7.1", + "8.5", + "6.4", + "6.8", + "7.6" + ] + } + }, + { + "name": "volatile acidity", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 121, + "unique_ratio": 0.030883, + "example_values": [ + "0.31", + "0.21", + "0.24", + "0.43", + "0.27" + ] + } + }, + { + "name": "citric acid", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 85, + "unique_ratio": 0.021695, + "example_values": [ + "0.17", + "0.41", + "0.31", + "0.25", + "0.3" + ] + } + }, + { + "name": "residual sugar", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 296, + "unique_ratio": 0.075549, + "example_values": [ + "1", + "4.3", + "2.8", + "13", + "12.9" + ] + } + }, + { + "name": "chlorides", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 147, + "unique_ratio": 0.037519, + "example_values": [ + "0.042", + "0.036", + "0.038", + "0.047", + "0.033" + ] + } + }, + { + "name": "free sulfur dioxide", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 120, + "unique_ratio": 0.030628, + "example_values": [ + "21", + "24", + "41", + "43", + "69" + ] + } + }, + { + "name": "total sulfur dioxide", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 244, + "unique_ratio": 0.062277, + "example_values": [ + "144", + "99", + "114", + "132", + "160" + ] + } + }, + { + "name": "density", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 839, + "unique_ratio": 0.21414, + "example_values": [ + "0.99304", + "0.9947", + "0.99155", + "0.98975", + "0.99705" + ] + } + }, + { + "name": "pH", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 100, + "unique_ratio": 0.025523, + "example_values": [ + "3.13", + "3.18", + "3.37", + "3.21", + "3.16" + ] + } + }, + { + "name": "sulphates", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 78, + "unique_ratio": 0.019908, + "example_values": [ + "0.4", + "0.53", + "0.66", + "0.47", + "0.5" + ] + } + }, + { + "name": "alcohol", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 97, + "unique_ratio": 0.024758, + "example_values": [ + "9.6", + "9.7", + "11.7", + "13.4", + "8.8" + ] + } + }, + { + "name": "quality", + "role": "target", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 7, + "unique_ratio": 0.001787, + "example_values": [ + "5", + "6", + "7", + "8", + "3" + ] + } + } + ] +} \ No newline at end of file diff --git a/hyperparameter/n3/tvae/tvae-n3-20260504_175816/run_config.json b/hyperparameter/n3/tvae/tvae-n3-20260504_175816/run_config.json new file mode 100644 index 0000000000000000000000000000000000000000..a83b606c335354f7750215aac6c84ea7ab6e2311 --- /dev/null +++ b/hyperparameter/n3/tvae/tvae-n3-20260504_175816/run_config.json @@ -0,0 +1,45 @@ +{ + "schema_version": 1, + "recorded_at": "2026-05-04T17:58:16", + "dataset_id": "n3", + "model": "tvae", + "work_dir": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/n3/tvae/tvae-n3-20260504_175816", + "dataset_source_requested": "new", + "dataset_source_resolved": "new", + "cli_args": { + "model": "tvae", + "dataset": "n3", + "dataset_source": "new", + "train": true, + "generate": true, + "num_rows": 0, + "epochs": null, + "output_dir": null, + "model_dir": null, + "work_dir": null, + "resume": false, + "no_stats": false + }, + "resolved": { + "num_rows": 3918, + "model_path": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/n3/tvae/tvae-n3-20260504_175816/models_300epochs/tvae_300epochs.pt", + "output_csv": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/n3/tvae/tvae-n3-20260504_175816/tvae-n3-3918-20260504_175903.csv" + }, + "input_artifacts": { + "public_gate_report": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/n3/tvae/tvae-n3-20260504_175816/public_gate/public_gate_report.json", + "public_manifest": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/n3/tvae/tvae-n3-20260504_175816/public_gate/staged_input_manifest.json", + "model_manifest": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/n3/tvae/tvae-n3-20260504_175816/staged/tvae/model_input_manifest.json", + "train_csv": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/n3/tvae/tvae-n3-20260504_175816/staged/public/train.csv", + "features_json": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/n3/tvae/tvae-n3-20260504_175816/staged/public/staged_features.json", + "target_column": "quality", + "task_type": "classification" + }, + "env_overrides": { + "BENCHMARK_TVAE_GPUS": "device=3", + "TVAE_BATCH_SIZE": "256", + "TVAE_COMPRESS_DIMS": "128,128", + "TVAE_DECOMPRESS_DIMS": "128,128", + "TVAE_EMBEDDING_DIM": "64", + "TVAE_EPOCHS": "200" + } +} \ No newline at end of file diff --git a/hyperparameter/n3/tvae/tvae-n3-20260504_175816/runtime_result.json b/hyperparameter/n3/tvae/tvae-n3-20260504_175816/runtime_result.json new file mode 100644 index 0000000000000000000000000000000000000000..159c4a5fd0a1edff1eac689ed7375964f539a203 --- /dev/null +++ b/hyperparameter/n3/tvae/tvae-n3-20260504_175816/runtime_result.json @@ -0,0 +1,27 @@ +{ + "dataset_id": "n3", + "model": "tvae", + "run_id": "tvae-n3-20260504_175816", + "public_gate_status": "pass", + "adapter_ready_status": "pass", + "train_status": "success", + "generate_status": "success", + "reason_code": null, + "reason_detail": null, + "artifacts": { + "synthetic_csv": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/n3/tvae/tvae-n3-20260504_175816/tvae-n3-3918-20260504_175903.csv", + "model_path": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/n3/tvae/tvae-n3-20260504_175816/models_300epochs/tvae_300epochs.pt" + }, + "timings": { + "train": { + "started_at": "2026-05-04T17:58:16", + "ended_at": "2026-05-04T17:59:03", + "duration_sec": 46.905 + }, + "generate": { + "started_at": "2026-05-04T17:59:03", + "ended_at": "2026-05-04T17:59:08", + "duration_sec": 5.167 + } + } +} \ No newline at end of file diff --git a/hyperparameter/n3/tvae/tvae-n3-20260504_175816/staged/public/staged_features.json b/hyperparameter/n3/tvae/tvae-n3-20260504_175816/staged/public/staged_features.json new file mode 100644 index 0000000000000000000000000000000000000000..08fe4d766d091d2f2ddba724a16b9509cbe4c390 --- /dev/null +++ b/hyperparameter/n3/tvae/tvae-n3-20260504_175816/staged/public/staged_features.json @@ -0,0 +1,62 @@ +[ + { + "feature_name": "fixed acidity", + "data_type": "continuous", + "is_target": false + }, + { + "feature_name": "volatile acidity", + "data_type": "continuous", + "is_target": false + }, + { + "feature_name": "citric acid", + "data_type": "continuous", + "is_target": false + }, + { + "feature_name": "residual sugar", + "data_type": "continuous", + "is_target": false + }, + { + "feature_name": "chlorides", + "data_type": "continuous", + "is_target": false + }, + { + "feature_name": "free sulfur dioxide", + "data_type": "continuous", + "is_target": false + }, + { + "feature_name": "total sulfur dioxide", + "data_type": "continuous", + "is_target": false + }, + { + "feature_name": "density", + "data_type": "continuous", + "is_target": false + }, + { + "feature_name": "pH", + "data_type": "continuous", + "is_target": false + }, + { + "feature_name": "sulphates", + "data_type": "continuous", + "is_target": false + }, + { + "feature_name": "alcohol", + "data_type": "continuous", + "is_target": false + }, + { + "feature_name": "quality", + "data_type": "continuous", + "is_target": true + } +] \ No newline at end of file diff --git a/hyperparameter/n3/tvae/tvae-n3-20260504_175816/staged/public/test.csv b/hyperparameter/n3/tvae/tvae-n3-20260504_175816/staged/public/test.csv new file mode 100644 index 0000000000000000000000000000000000000000..db5cd50d3746410ea470625fa2ba2c8e9775cc0d --- /dev/null +++ b/hyperparameter/n3/tvae/tvae-n3-20260504_175816/staged/public/test.csv @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:19e107152a94432e2a37ff045c00cfe35e1be30208b1553080d7dd0ede256d3b +size 28944 diff --git a/hyperparameter/n3/tvae/tvae-n3-20260504_175816/staged/public/train.csv b/hyperparameter/n3/tvae/tvae-n3-20260504_175816/staged/public/train.csv new file mode 100644 index 0000000000000000000000000000000000000000..87ca26726fe82ccbaa397919305b043c17eb374e --- /dev/null +++ b/hyperparameter/n3/tvae/tvae-n3-20260504_175816/staged/public/train.csv @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:7813c8cca73ba4bfc6559215257b341c21e459980ad17ae6ddc809306bc9a0b9 +size 229945 diff --git a/hyperparameter/n3/tvae/tvae-n3-20260504_175816/staged/public/val.csv b/hyperparameter/n3/tvae/tvae-n3-20260504_175816/staged/public/val.csv new file mode 100644 index 0000000000000000000000000000000000000000..6acf84c76c47093b513c46d5503972a2dff275c0 --- /dev/null +++ b/hyperparameter/n3/tvae/tvae-n3-20260504_175816/staged/public/val.csv @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:cf5979d9675567d9d6642640c9b84fc6c49e492604144723c30f50516c05cee6 +size 28791 diff --git a/hyperparameter/n3/tvae/tvae-n3-20260504_175816/staged/tvae/adapter_report.json b/hyperparameter/n3/tvae/tvae-n3-20260504_175816/staged/tvae/adapter_report.json new file mode 100644 index 0000000000000000000000000000000000000000..4906762fcd87b8cfc5f451f77798b330c3a27006 --- /dev/null +++ b/hyperparameter/n3/tvae/tvae-n3-20260504_175816/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-Benchmark-trainonly-v1/n3/tvae/tvae-n3-20260504_175816/staged/tvae/model_input_manifest.json" +} \ No newline at end of file diff --git a/hyperparameter/n3/tvae/tvae-n3-20260504_175816/staged/tvae/adapter_transforms_applied.json b/hyperparameter/n3/tvae/tvae-n3-20260504_175816/staged/tvae/adapter_transforms_applied.json new file mode 100644 index 0000000000000000000000000000000000000000..0637a088a01e8ddab3bf3fa98dbe804cbde1a0dc --- /dev/null +++ b/hyperparameter/n3/tvae/tvae-n3-20260504_175816/staged/tvae/adapter_transforms_applied.json @@ -0,0 +1 @@ +[] \ No newline at end of file diff --git a/hyperparameter/n3/tvae/tvae-n3-20260504_175816/staged/tvae/model_input_manifest.json b/hyperparameter/n3/tvae/tvae-n3-20260504_175816/staged/tvae/model_input_manifest.json new file mode 100644 index 0000000000000000000000000000000000000000..7016c089e285e0a36a9663608cee98e2ce64f3ca --- /dev/null +++ b/hyperparameter/n3/tvae/tvae-n3-20260504_175816/staged/tvae/model_input_manifest.json @@ -0,0 +1,266 @@ +{ + "dataset_id": "n3", + "model": "tvae", + "target_column": "quality", + "task_type": "classification", + "column_schema": [ + { + "name": "fixed acidity", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 66, + "unique_ratio": 0.016845, + "example_values": [ + "7.1", + "8.5", + "6.4", + "6.8", + "7.6" + ] + } + }, + { + "name": "volatile acidity", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 121, + "unique_ratio": 0.030883, + "example_values": [ + "0.31", + "0.21", + "0.24", + "0.43", + "0.27" + ] + } + }, + { + "name": "citric acid", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 85, + "unique_ratio": 0.021695, + "example_values": [ + "0.17", + "0.41", + "0.31", + "0.25", + "0.3" + ] + } + }, + { + "name": "residual sugar", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 296, + "unique_ratio": 0.075549, + "example_values": [ + "1", + "4.3", + "2.8", + "13", + "12.9" + ] + } + }, + { + "name": "chlorides", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 147, + "unique_ratio": 0.037519, + "example_values": [ + "0.042", + "0.036", + "0.038", + "0.047", + "0.033" + ] + } + }, + { + "name": "free sulfur dioxide", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 120, + "unique_ratio": 0.030628, + "example_values": [ + "21", + "24", + "41", + "43", + "69" + ] + } + }, + { + "name": "total sulfur dioxide", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 244, + "unique_ratio": 0.062277, + "example_values": [ + "144", + "99", + "114", + "132", + "160" + ] + } + }, + { + "name": "density", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 839, + "unique_ratio": 0.21414, + "example_values": [ + "0.99304", + "0.9947", + "0.99155", + "0.98975", + "0.99705" + ] + } + }, + { + "name": "pH", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 100, + "unique_ratio": 0.025523, + "example_values": [ + "3.13", + "3.18", + "3.37", + "3.21", + "3.16" + ] + } + }, + { + "name": "sulphates", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 78, + "unique_ratio": 0.019908, + "example_values": [ + "0.4", + "0.53", + "0.66", + "0.47", + "0.5" + ] + } + }, + { + "name": "alcohol", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 97, + "unique_ratio": 0.024758, + "example_values": [ + "9.6", + "9.7", + "11.7", + "13.4", + "8.8" + ] + } + }, + { + "name": "quality", + "role": "target", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 7, + "unique_ratio": 0.001787, + "example_values": [ + "5", + "6", + "7", + "8", + "3" + ] + } + } + ], + "public_manifest": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/n3/tvae/tvae-n3-20260504_175816/public_gate/staged_input_manifest.json", + "train_csv": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/n3/tvae/tvae-n3-20260504_175816/staged/public/train.csv", + "val_csv": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/n3/tvae/tvae-n3-20260504_175816/staged/public/val.csv", + "test_csv": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/n3/tvae/tvae-n3-20260504_175816/staged/public/test.csv", + "features_json": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/n3/tvae/tvae-n3-20260504_175816/staged/public/staged_features.json", + "public_gate_report": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/n3/tvae/tvae-n3-20260504_175816/public_gate/public_gate_report.json" +} \ No newline at end of file diff --git a/hyperparameter/n3/tvae/tvae-n3-20260504_175816/tvae-n3-3918-20260504_175903.csv b/hyperparameter/n3/tvae/tvae-n3-20260504_175816/tvae-n3-3918-20260504_175903.csv new file mode 100644 index 0000000000000000000000000000000000000000..c871e4db264e0e2b15d05c0dfec0c9dd73881acb --- /dev/null +++ b/hyperparameter/n3/tvae/tvae-n3-20260504_175816/tvae-n3-3918-20260504_175903.csv @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:34093f1f385b8ca62254520bd2e29c6c778ad9d30d1dd4273306d4abe54ea110 +size 820253 diff --git a/hyperparameter/n3/tvae/tvae-n3-20260504_175816/tvae_metadata.json b/hyperparameter/n3/tvae/tvae-n3-20260504_175816/tvae_metadata.json new file mode 100644 index 0000000000000000000000000000000000000000..40d513aa1aca4c6f5c1be8afc3d6a1a0c75aa74f --- /dev/null +++ b/hyperparameter/n3/tvae/tvae-n3-20260504_175816/tvae_metadata.json @@ -0,0 +1,52 @@ +{ + "columns": [ + { + "name": "fixed acidity", + "type": "continuous" + }, + { + "name": "volatile acidity", + "type": "continuous" + }, + { + "name": "citric acid", + "type": "continuous" + }, + { + "name": "residual sugar", + "type": "continuous" + }, + { + "name": "chlorides", + "type": "continuous" + }, + { + "name": "free sulfur dioxide", + "type": "continuous" + }, + { + "name": "total sulfur dioxide", + "type": "continuous" + }, + { + "name": "density", + "type": "continuous" + }, + { + "name": "pH", + "type": "continuous" + }, + { + "name": "sulphates", + "type": "continuous" + }, + { + "name": "alcohol", + "type": "continuous" + }, + { + "name": "quality", + "type": "continuous" + } + ] +} \ No newline at end of file diff --git a/hyperparameter/n3/tvae/tvae-n3-20260504_175920/_tvae_generate.py b/hyperparameter/n3/tvae/tvae-n3-20260504_175920/_tvae_generate.py new file mode 100644 index 0000000000000000000000000000000000000000..b7c5471b4f309613a61d50a47fc13bb5ba9a7bf0 --- /dev/null +++ b/hyperparameter/n3/tvae/tvae-n3-20260504_175920/_tvae_generate.py @@ -0,0 +1,23 @@ +import os, sys +sys.path.insert(0, "/work") +from src.SpecificModels.ctgan_joblib_parallel_cap import apply_parallel_cap_from_env +apply_parallel_cap_from_env() +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 +os.environ.setdefault("LOKY_MAX_CPU_COUNT", "8") +os.environ.setdefault("OPENBLAS_NUM_THREADS", "8") +os.environ.setdefault("MKL_NUM_THREADS", "8") +model = TVAE.load("/work/output-Benchmark-trainonly-v1/n3/tvae/tvae-n3-20260504_175920/models_300epochs/tvae_300epochs.pt") +total = 3918 +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-Benchmark-trainonly-v1/n3/tvae/tvae-n3-20260504_175920/tvae-n3-3918-20260504_180001.csv", index=False) +print(f"[TVAE] Generated {total} rows (chunks={len(parts)}) -> /work/output-Benchmark-trainonly-v1/n3/tvae/tvae-n3-20260504_175920/tvae-n3-3918-20260504_180001.csv") diff --git a/hyperparameter/n3/tvae/tvae-n3-20260504_175920/_tvae_train.py b/hyperparameter/n3/tvae/tvae-n3-20260504_175920/_tvae_train.py new file mode 100644 index 0000000000000000000000000000000000000000..67d99ebd85e50e12aca0f56191b29ca86c4abf8f --- /dev/null +++ b/hyperparameter/n3/tvae/tvae-n3-20260504_175920/_tvae_train.py @@ -0,0 +1,39 @@ +import json, os, sys +sys.path.insert(0, "/work") +from src.SpecificModels.ctgan_joblib_parallel_cap import apply_parallel_cap_from_env +apply_parallel_cap_from_env() +import pandas as pd +from ctgan.data import read_csv +from ctgan.synthesizers.tvae import TVAE + +# Keep transform stage parallelism bounded for stability on shared host. +os.environ.setdefault("LOKY_MAX_CPU_COUNT", "8") +os.environ.setdefault("OPENBLAS_NUM_THREADS", "8") +os.environ.setdefault("MKL_NUM_THREADS", "8") +_nj = (os.environ.get("TVAE_CTGAN_JOBTRANS_N_JOBS") or "").strip() +if _nj: + print("[TVAE] joblib Parallel cap ON, TVAE_CTGAN_JOBTRANS_N_JOBS=" + _nj) +else: + print("[TVAE] joblib Parallel cap OFF (unset TVAE_CTGAN_JOBTRANS_N_JOBS)") +print("[TVAE] LOKY_MAX_CPU_COUNT=" + str(os.environ.get("LOKY_MAX_CPU_COUNT", ""))) + +csv_path = "/work/output-Benchmark-trainonly-v1/n3/tvae/tvae-n3-20260504_175920/staged/public/train.csv" +meta_path = "/work/output-Benchmark-trainonly-v1/n3/tvae/tvae-n3-20260504_175920/tvae_metadata.json" +save_path = "/work/output-Benchmark-trainonly-v1/n3/tvae/tvae-n3-20260504_175920/models_300epochs/tvae_300epochs.pt" +epochs = int(os.environ.get("TVAE_EPOCHS", 300)) +batch_size = int(os.environ.get("TVAE_BATCH_SIZE", "500")) +embedding_dim = int(os.environ.get("TVAE_EMBEDDING_DIM", "128")) +def _parse_dims(name, default): + raw = (os.environ.get(name) or "").strip() + if not raw: + return default + return tuple(int(x.strip()) for x in raw.split(",") if x.strip()) +compress_dims = _parse_dims("TVAE_COMPRESS_DIMS", (128, 128)) +decompress_dims = _parse_dims("TVAE_DECOMPRESS_DIMS", (128, 128)) + +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}, batch_size={batch_size}, embedding_dim={embedding_dim}, compress_dims={compress_dims}, decompress_dims={decompress_dims}") +model = TVAE(epochs=epochs, batch_size=batch_size, embedding_dim=embedding_dim, compress_dims=compress_dims, decompress_dims=decompress_dims) +model.fit(data, discrete_columns) +model.save(save_path) +print(f"[TVAE] Model saved -> {save_path}") diff --git a/hyperparameter/n3/tvae/tvae-n3-20260504_175920/gen_20260504_180001.log b/hyperparameter/n3/tvae/tvae-n3-20260504_175920/gen_20260504_180001.log new file mode 100644 index 0000000000000000000000000000000000000000..6c444db1593eca9af73a52c23d9523948af9cfb9 --- /dev/null +++ b/hyperparameter/n3/tvae/tvae-n3-20260504_175920/gen_20260504_180001.log @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:3258505060bad9eddfae5d88bef19d324c0af15ebd939152edb79eb981d1a7f2 +size 404 diff --git a/hyperparameter/n3/tvae/tvae-n3-20260504_175920/input_snapshot.json b/hyperparameter/n3/tvae/tvae-n3-20260504_175920/input_snapshot.json new file mode 100644 index 0000000000000000000000000000000000000000..1ddd4c8dc6c3d918927aad5bcb5dbb27f78068fe --- /dev/null +++ b/hyperparameter/n3/tvae/tvae-n3-20260504_175920/input_snapshot.json @@ -0,0 +1,36 @@ +{ + "dataset_id": "n3", + "model": "tvae", + "inputs": { + "train_csv": { + "path": "/data/jialinzhang/SynthesizePipeline-server/DatasetNew/n3/n3-train.csv", + "exists": true, + "size": 211519, + "sha256": "2160a06db2fea02adb0ebb79d8d853bd2544580be301e71f6e8deeb1489a9009" + }, + "val_csv": { + "path": "/data/jialinzhang/SynthesizePipeline-server/DatasetNew/n3/n3-val.csv", + "exists": true, + "size": 26499, + "sha256": "d5ccfee07dfa9e7bdee5bb87642b43828e09f74c6cc0266a3d19d9feaa83106e" + }, + "test_csv": { + "path": "/data/jialinzhang/SynthesizePipeline-server/DatasetNew/n3/n3-test.csv", + "exists": true, + "size": 26676, + "sha256": "6f83aacb0d1747b95e287352a7fff5d9d65a1c127b773852346c68485c4ede47" + }, + "profile_json": { + "path": "/data/jialinzhang/SynthesizePipeline-server/DatasetNew/artifacts/data_core/tabular/n3/n3-dataset_profile.json", + "exists": true, + "size": 5235, + "sha256": "23d2e5904a2ca90cbf8d6e3c75887681721e9b90cc705c31a680c11513d0c46f" + }, + "contract_json": { + "path": "/data/jialinzhang/SynthesizePipeline-server/DatasetNew/artifacts/data_core/tabular/n3/n3-dataset_contract_v1.json", + "exists": true, + "size": 6281, + "sha256": "c0cc56f5fe28e1b65927255c6e3c2b0e9479862c2ec6f2fea1664da36c9a3a09" + } + } +} \ No newline at end of file diff --git a/hyperparameter/n3/tvae/tvae-n3-20260504_175920/models_300epochs/train_20260504_175920.log b/hyperparameter/n3/tvae/tvae-n3-20260504_175920/models_300epochs/train_20260504_175920.log new file mode 100644 index 0000000000000000000000000000000000000000..bb635666427be4bc6541bc02b0980803dc26081b --- /dev/null +++ b/hyperparameter/n3/tvae/tvae-n3-20260504_175920/models_300epochs/train_20260504_175920.log @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:3246fcae64caa9d1f197b3c707eb5cbb869dae2b365054835064835b12f15cc4 +size 621 diff --git a/hyperparameter/n3/tvae/tvae-n3-20260504_175920/models_300epochs/tvae_300epochs.pt b/hyperparameter/n3/tvae/tvae-n3-20260504_175920/models_300epochs/tvae_300epochs.pt new file mode 100644 index 0000000000000000000000000000000000000000..293036634de2b5a65e841089d896f1a4976dacbe --- /dev/null +++ b/hyperparameter/n3/tvae/tvae-n3-20260504_175920/models_300epochs/tvae_300epochs.pt @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:e5ecf7fdadac2f0c22d5370480070c14ac52d23d18da4afbba806695176caa8d +size 961900 diff --git a/hyperparameter/n3/tvae/tvae-n3-20260504_175920/public_gate/normalized_schema_snapshot.json b/hyperparameter/n3/tvae/tvae-n3-20260504_175920/public_gate/normalized_schema_snapshot.json new file mode 100644 index 0000000000000000000000000000000000000000..c41fe304503de23190a02e6cbfafa35b3bf134d3 --- /dev/null +++ b/hyperparameter/n3/tvae/tvae-n3-20260504_175920/public_gate/normalized_schema_snapshot.json @@ -0,0 +1,259 @@ +{ + "dataset_id": "n3", + "target_column": "quality", + "task_type": "classification", + "columns": [ + { + "name": "fixed acidity", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 66, + "unique_ratio": 0.016845, + "example_values": [ + "7.1", + "8.5", + "6.4", + "6.8", + "7.6" + ] + } + }, + { + "name": "volatile acidity", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 121, + "unique_ratio": 0.030883, + "example_values": [ + "0.31", + "0.21", + "0.24", + "0.43", + "0.27" + ] + } + }, + { + "name": "citric acid", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 85, + "unique_ratio": 0.021695, + "example_values": [ + "0.17", + "0.41", + "0.31", + "0.25", + "0.3" + ] + } + }, + { + "name": "residual sugar", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 296, + "unique_ratio": 0.075549, + "example_values": [ + "1", + "4.3", + "2.8", + "13", + "12.9" + ] + } + }, + { + "name": "chlorides", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 147, + "unique_ratio": 0.037519, + "example_values": [ + "0.042", + "0.036", + "0.038", + "0.047", + "0.033" + ] + } + }, + { + "name": "free sulfur dioxide", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 120, + "unique_ratio": 0.030628, + "example_values": [ + "21", + "24", + "41", + "43", + "69" + ] + } + }, + { + "name": "total sulfur dioxide", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 244, + "unique_ratio": 0.062277, + "example_values": [ + "144", + "99", + "114", + "132", + "160" + ] + } + }, + { + "name": "density", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 839, + "unique_ratio": 0.21414, + "example_values": [ + "0.99304", + "0.9947", + "0.99155", + "0.98975", + "0.99705" + ] + } + }, + { + "name": "pH", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 100, + "unique_ratio": 0.025523, + "example_values": [ + "3.13", + "3.18", + "3.37", + "3.21", + "3.16" + ] + } + }, + { + "name": "sulphates", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 78, + "unique_ratio": 0.019908, + "example_values": [ + "0.4", + "0.53", + "0.66", + "0.47", + "0.5" + ] + } + }, + { + "name": "alcohol", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 97, + "unique_ratio": 0.024758, + "example_values": [ + "9.6", + "9.7", + "11.7", + "13.4", + "8.8" + ] + } + }, + { + "name": "quality", + "role": "target", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 7, + "unique_ratio": 0.001787, + "example_values": [ + "5", + "6", + "7", + "8", + "3" + ] + } + } + ] +} \ No newline at end of file diff --git a/hyperparameter/n3/tvae/tvae-n3-20260504_175920/public_gate/public_gate_report.json b/hyperparameter/n3/tvae/tvae-n3-20260504_175920/public_gate/public_gate_report.json new file mode 100644 index 0000000000000000000000000000000000000000..93b97319f739e39079d6c6549fd2020f8a6dac25 --- /dev/null +++ b/hyperparameter/n3/tvae/tvae-n3-20260504_175920/public_gate/public_gate_report.json @@ -0,0 +1,37 @@ +{ + "dataset_id": "n3", + "status": "pass", + "checks": [ + { + "check_id": "PG001_csv_parse_ok", + "status": "pass" + }, + { + "check_id": "PG002_split_header_consistent", + "status": "pass" + }, + { + "check_id": "PG003_profile_header_match", + "status": "pass" + }, + { + "check_id": "PG004_missing_token_normalized", + "status": "pass" + }, + { + "check_id": "PG005_semantic_type_validated", + "status": "pass" + }, + { + "check_id": "PG006_target_defined_and_valid", + "status": "pass" + } + ], + "target_column": "quality", + "task_type": "classification", + "input_splits": { + "train": "/data/jialinzhang/SynthesizePipeline-server/DatasetNew/n3/n3-train.csv", + "val": "/data/jialinzhang/SynthesizePipeline-server/DatasetNew/n3/n3-val.csv", + "test": "/data/jialinzhang/SynthesizePipeline-server/DatasetNew/n3/n3-test.csv" + } +} \ No newline at end of file diff --git a/hyperparameter/n3/tvae/tvae-n3-20260504_175920/public_gate/staged_input_manifest.json b/hyperparameter/n3/tvae/tvae-n3-20260504_175920/public_gate/staged_input_manifest.json new file mode 100644 index 0000000000000000000000000000000000000000..7560f360e5cd3e3d8d65c17ab0b0b7c6073a67a1 --- /dev/null +++ b/hyperparameter/n3/tvae/tvae-n3-20260504_175920/public_gate/staged_input_manifest.json @@ -0,0 +1,264 @@ +{ + "dataset_id": "n3", + "target_column": "quality", + "task_type": "classification", + "train_csv": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/n3/tvae/tvae-n3-20260504_175920/staged/public/train.csv", + "val_csv": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/n3/tvae/tvae-n3-20260504_175920/staged/public/val.csv", + "test_csv": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/n3/tvae/tvae-n3-20260504_175920/staged/public/test.csv", + "features_json": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/n3/tvae/tvae-n3-20260504_175920/staged/public/staged_features.json", + "public_gate_report": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/n3/tvae/tvae-n3-20260504_175920/public_gate/public_gate_report.json", + "column_schema": [ + { + "name": "fixed acidity", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 66, + "unique_ratio": 0.016845, + "example_values": [ + "7.1", + "8.5", + "6.4", + "6.8", + "7.6" + ] + } + }, + { + "name": "volatile acidity", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 121, + "unique_ratio": 0.030883, + "example_values": [ + "0.31", + "0.21", + "0.24", + "0.43", + "0.27" + ] + } + }, + { + "name": "citric acid", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 85, + "unique_ratio": 0.021695, + "example_values": [ + "0.17", + "0.41", + "0.31", + "0.25", + "0.3" + ] + } + }, + { + "name": "residual sugar", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 296, + "unique_ratio": 0.075549, + "example_values": [ + "1", + "4.3", + "2.8", + "13", + "12.9" + ] + } + }, + { + "name": "chlorides", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 147, + "unique_ratio": 0.037519, + "example_values": [ + "0.042", + "0.036", + "0.038", + "0.047", + "0.033" + ] + } + }, + { + "name": "free sulfur dioxide", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 120, + "unique_ratio": 0.030628, + "example_values": [ + "21", + "24", + "41", + "43", + "69" + ] + } + }, + { + "name": "total sulfur dioxide", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 244, + "unique_ratio": 0.062277, + "example_values": [ + "144", + "99", + "114", + "132", + "160" + ] + } + }, + { + "name": "density", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 839, + "unique_ratio": 0.21414, + "example_values": [ + "0.99304", + "0.9947", + "0.99155", + "0.98975", + "0.99705" + ] + } + }, + { + "name": "pH", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 100, + "unique_ratio": 0.025523, + "example_values": [ + "3.13", + "3.18", + "3.37", + "3.21", + "3.16" + ] + } + }, + { + "name": "sulphates", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 78, + "unique_ratio": 0.019908, + "example_values": [ + "0.4", + "0.53", + "0.66", + "0.47", + "0.5" + ] + } + }, + { + "name": "alcohol", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 97, + "unique_ratio": 0.024758, + "example_values": [ + "9.6", + "9.7", + "11.7", + "13.4", + "8.8" + ] + } + }, + { + "name": "quality", + "role": "target", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 7, + "unique_ratio": 0.001787, + "example_values": [ + "5", + "6", + "7", + "8", + "3" + ] + } + } + ] +} \ No newline at end of file diff --git a/hyperparameter/n3/tvae/tvae-n3-20260504_175920/run_config.json b/hyperparameter/n3/tvae/tvae-n3-20260504_175920/run_config.json new file mode 100644 index 0000000000000000000000000000000000000000..34e80e8598db7b9fc46661a8ead04a98458a2905 --- /dev/null +++ b/hyperparameter/n3/tvae/tvae-n3-20260504_175920/run_config.json @@ -0,0 +1,45 @@ +{ + "schema_version": 1, + "recorded_at": "2026-05-04T17:59:20", + "dataset_id": "n3", + "model": "tvae", + "work_dir": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/n3/tvae/tvae-n3-20260504_175920", + "dataset_source_requested": "new", + "dataset_source_resolved": "new", + "cli_args": { + "model": "tvae", + "dataset": "n3", + "dataset_source": "new", + "train": true, + "generate": true, + "num_rows": 0, + "epochs": null, + "output_dir": null, + "model_dir": null, + "work_dir": null, + "resume": false, + "no_stats": false + }, + "resolved": { + "num_rows": 3918, + "model_path": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/n3/tvae/tvae-n3-20260504_175920/models_300epochs/tvae_300epochs.pt", + "output_csv": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/n3/tvae/tvae-n3-20260504_175920/tvae-n3-3918-20260504_180001.csv" + }, + "input_artifacts": { + "public_gate_report": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/n3/tvae/tvae-n3-20260504_175920/public_gate/public_gate_report.json", + "public_manifest": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/n3/tvae/tvae-n3-20260504_175920/public_gate/staged_input_manifest.json", + "model_manifest": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/n3/tvae/tvae-n3-20260504_175920/staged/tvae/model_input_manifest.json", + "train_csv": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/n3/tvae/tvae-n3-20260504_175920/staged/public/train.csv", + "features_json": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/n3/tvae/tvae-n3-20260504_175920/staged/public/staged_features.json", + "target_column": "quality", + "task_type": "classification" + }, + "env_overrides": { + "BENCHMARK_TVAE_GPUS": "device=3", + "TVAE_BATCH_SIZE": "500", + "TVAE_COMPRESS_DIMS": "256,256", + "TVAE_DECOMPRESS_DIMS": "256,256", + "TVAE_EMBEDDING_DIM": "128", + "TVAE_EPOCHS": "300" + } +} \ No newline at end of file diff --git a/hyperparameter/n3/tvae/tvae-n3-20260504_175920/runtime_result.json b/hyperparameter/n3/tvae/tvae-n3-20260504_175920/runtime_result.json new file mode 100644 index 0000000000000000000000000000000000000000..49fc9d14f7eebd1186ffb28e9aedc8a6c3906d77 --- /dev/null +++ b/hyperparameter/n3/tvae/tvae-n3-20260504_175920/runtime_result.json @@ -0,0 +1,27 @@ +{ + "dataset_id": "n3", + "model": "tvae", + "run_id": "tvae-n3-20260504_175920", + "public_gate_status": "pass", + "adapter_ready_status": "pass", + "train_status": "success", + "generate_status": "success", + "reason_code": null, + "reason_detail": null, + "artifacts": { + "synthetic_csv": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/n3/tvae/tvae-n3-20260504_175920/tvae-n3-3918-20260504_180001.csv", + "model_path": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/n3/tvae/tvae-n3-20260504_175920/models_300epochs/tvae_300epochs.pt" + }, + "timings": { + "train": { + "started_at": "2026-05-04T17:59:20", + "ended_at": "2026-05-04T18:00:01", + "duration_sec": 40.617 + }, + "generate": { + "started_at": "2026-05-04T18:00:01", + "ended_at": "2026-05-04T18:00:06", + "duration_sec": 5.402 + } + } +} \ No newline at end of file diff --git a/hyperparameter/n3/tvae/tvae-n3-20260504_175920/staged/public/staged_features.json b/hyperparameter/n3/tvae/tvae-n3-20260504_175920/staged/public/staged_features.json new file mode 100644 index 0000000000000000000000000000000000000000..08fe4d766d091d2f2ddba724a16b9509cbe4c390 --- /dev/null +++ b/hyperparameter/n3/tvae/tvae-n3-20260504_175920/staged/public/staged_features.json @@ -0,0 +1,62 @@ +[ + { + "feature_name": "fixed acidity", + "data_type": "continuous", + "is_target": false + }, + { + "feature_name": "volatile acidity", + "data_type": "continuous", + "is_target": false + }, + { + "feature_name": "citric acid", + "data_type": "continuous", + "is_target": false + }, + { + "feature_name": "residual sugar", + "data_type": "continuous", + "is_target": false + }, + { + "feature_name": "chlorides", + "data_type": "continuous", + "is_target": false + }, + { + "feature_name": "free sulfur dioxide", + "data_type": "continuous", + "is_target": false + }, + { + "feature_name": "total sulfur dioxide", + "data_type": "continuous", + "is_target": false + }, + { + "feature_name": "density", + "data_type": "continuous", + "is_target": false + }, + { + "feature_name": "pH", + "data_type": "continuous", + "is_target": false + }, + { + "feature_name": "sulphates", + "data_type": "continuous", + "is_target": false + }, + { + "feature_name": "alcohol", + "data_type": "continuous", + "is_target": false + }, + { + "feature_name": "quality", + "data_type": "continuous", + "is_target": true + } +] \ No newline at end of file diff --git a/hyperparameter/n3/tvae/tvae-n3-20260504_175920/staged/public/test.csv b/hyperparameter/n3/tvae/tvae-n3-20260504_175920/staged/public/test.csv new file mode 100644 index 0000000000000000000000000000000000000000..db5cd50d3746410ea470625fa2ba2c8e9775cc0d --- /dev/null +++ b/hyperparameter/n3/tvae/tvae-n3-20260504_175920/staged/public/test.csv @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:19e107152a94432e2a37ff045c00cfe35e1be30208b1553080d7dd0ede256d3b +size 28944 diff --git a/hyperparameter/n3/tvae/tvae-n3-20260504_175920/staged/public/train.csv b/hyperparameter/n3/tvae/tvae-n3-20260504_175920/staged/public/train.csv new file mode 100644 index 0000000000000000000000000000000000000000..87ca26726fe82ccbaa397919305b043c17eb374e --- /dev/null +++ b/hyperparameter/n3/tvae/tvae-n3-20260504_175920/staged/public/train.csv @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:7813c8cca73ba4bfc6559215257b341c21e459980ad17ae6ddc809306bc9a0b9 +size 229945 diff --git a/hyperparameter/n3/tvae/tvae-n3-20260504_175920/staged/public/val.csv b/hyperparameter/n3/tvae/tvae-n3-20260504_175920/staged/public/val.csv new file mode 100644 index 0000000000000000000000000000000000000000..6acf84c76c47093b513c46d5503972a2dff275c0 --- /dev/null +++ b/hyperparameter/n3/tvae/tvae-n3-20260504_175920/staged/public/val.csv @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:cf5979d9675567d9d6642640c9b84fc6c49e492604144723c30f50516c05cee6 +size 28791 diff --git a/hyperparameter/n3/tvae/tvae-n3-20260504_175920/staged/tvae/adapter_report.json b/hyperparameter/n3/tvae/tvae-n3-20260504_175920/staged/tvae/adapter_report.json new file mode 100644 index 0000000000000000000000000000000000000000..5e760452fe41abe214bea5ff450a4bdd298ca99f --- /dev/null +++ b/hyperparameter/n3/tvae/tvae-n3-20260504_175920/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-Benchmark-trainonly-v1/n3/tvae/tvae-n3-20260504_175920/staged/tvae/model_input_manifest.json" +} \ No newline at end of file diff --git a/hyperparameter/n3/tvae/tvae-n3-20260504_175920/staged/tvae/adapter_transforms_applied.json b/hyperparameter/n3/tvae/tvae-n3-20260504_175920/staged/tvae/adapter_transforms_applied.json new file mode 100644 index 0000000000000000000000000000000000000000..0637a088a01e8ddab3bf3fa98dbe804cbde1a0dc --- /dev/null +++ b/hyperparameter/n3/tvae/tvae-n3-20260504_175920/staged/tvae/adapter_transforms_applied.json @@ -0,0 +1 @@ +[] \ No newline at end of file diff --git a/hyperparameter/n3/tvae/tvae-n3-20260504_175920/staged/tvae/model_input_manifest.json b/hyperparameter/n3/tvae/tvae-n3-20260504_175920/staged/tvae/model_input_manifest.json new file mode 100644 index 0000000000000000000000000000000000000000..c69c3ba21654f8efa24eaac3a211ba89fbc00e3b --- /dev/null +++ b/hyperparameter/n3/tvae/tvae-n3-20260504_175920/staged/tvae/model_input_manifest.json @@ -0,0 +1,266 @@ +{ + "dataset_id": "n3", + "model": "tvae", + "target_column": "quality", + "task_type": "classification", + "column_schema": [ + { + "name": "fixed acidity", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 66, + "unique_ratio": 0.016845, + "example_values": [ + "7.1", + "8.5", + "6.4", + "6.8", + "7.6" + ] + } + }, + { + "name": "volatile acidity", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 121, + "unique_ratio": 0.030883, + "example_values": [ + "0.31", + "0.21", + "0.24", + "0.43", + "0.27" + ] + } + }, + { + "name": "citric acid", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 85, + "unique_ratio": 0.021695, + "example_values": [ + "0.17", + "0.41", + "0.31", + "0.25", + "0.3" + ] + } + }, + { + "name": "residual sugar", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 296, + "unique_ratio": 0.075549, + "example_values": [ + "1", + "4.3", + "2.8", + "13", + "12.9" + ] + } + }, + { + "name": "chlorides", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 147, + "unique_ratio": 0.037519, + "example_values": [ + "0.042", + "0.036", + "0.038", + "0.047", + "0.033" + ] + } + }, + { + "name": "free sulfur dioxide", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 120, + "unique_ratio": 0.030628, + "example_values": [ + "21", + "24", + "41", + "43", + "69" + ] + } + }, + { + "name": "total sulfur dioxide", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 244, + "unique_ratio": 0.062277, + "example_values": [ + "144", + "99", + "114", + "132", + "160" + ] + } + }, + { + "name": "density", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 839, + "unique_ratio": 0.21414, + "example_values": [ + "0.99304", + "0.9947", + "0.99155", + "0.98975", + "0.99705" + ] + } + }, + { + "name": "pH", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 100, + "unique_ratio": 0.025523, + "example_values": [ + "3.13", + "3.18", + "3.37", + "3.21", + "3.16" + ] + } + }, + { + "name": "sulphates", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 78, + "unique_ratio": 0.019908, + "example_values": [ + "0.4", + "0.53", + "0.66", + "0.47", + "0.5" + ] + } + }, + { + "name": "alcohol", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 97, + "unique_ratio": 0.024758, + "example_values": [ + "9.6", + "9.7", + "11.7", + "13.4", + "8.8" + ] + } + }, + { + "name": "quality", + "role": "target", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 7, + "unique_ratio": 0.001787, + "example_values": [ + "5", + "6", + "7", + "8", + "3" + ] + } + } + ], + "public_manifest": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/n3/tvae/tvae-n3-20260504_175920/public_gate/staged_input_manifest.json", + "train_csv": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/n3/tvae/tvae-n3-20260504_175920/staged/public/train.csv", + "val_csv": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/n3/tvae/tvae-n3-20260504_175920/staged/public/val.csv", + "test_csv": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/n3/tvae/tvae-n3-20260504_175920/staged/public/test.csv", + "features_json": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/n3/tvae/tvae-n3-20260504_175920/staged/public/staged_features.json", + "public_gate_report": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/n3/tvae/tvae-n3-20260504_175920/public_gate/public_gate_report.json" +} \ No newline at end of file diff --git a/hyperparameter/n3/tvae/tvae-n3-20260504_175920/tvae-n3-3918-20260504_180001.csv b/hyperparameter/n3/tvae/tvae-n3-20260504_175920/tvae-n3-3918-20260504_180001.csv new file mode 100644 index 0000000000000000000000000000000000000000..10ad6aea130216e24134b4f882c5fe5f1a9f8431 --- /dev/null +++ b/hyperparameter/n3/tvae/tvae-n3-20260504_175920/tvae-n3-3918-20260504_180001.csv @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:8fbb4d91efeeeb1d7eeebb166c9f1c4576bf4e0bea0ff15c6104fdfade300582 +size 820263 diff --git a/hyperparameter/n3/tvae/tvae-n3-20260504_175920/tvae_metadata.json b/hyperparameter/n3/tvae/tvae-n3-20260504_175920/tvae_metadata.json new file mode 100644 index 0000000000000000000000000000000000000000..40d513aa1aca4c6f5c1be8afc3d6a1a0c75aa74f --- /dev/null +++ b/hyperparameter/n3/tvae/tvae-n3-20260504_175920/tvae_metadata.json @@ -0,0 +1,52 @@ +{ + "columns": [ + { + "name": "fixed acidity", + "type": "continuous" + }, + { + "name": "volatile acidity", + "type": "continuous" + }, + { + "name": "citric acid", + "type": "continuous" + }, + { + "name": "residual sugar", + "type": "continuous" + }, + { + "name": "chlorides", + "type": "continuous" + }, + { + "name": "free sulfur dioxide", + "type": "continuous" + }, + { + "name": "total sulfur dioxide", + "type": "continuous" + }, + { + "name": "density", + "type": "continuous" + }, + { + "name": "pH", + "type": "continuous" + }, + { + "name": "sulphates", + "type": "continuous" + }, + { + "name": "alcohol", + "type": "continuous" + }, + { + "name": "quality", + "type": "continuous" + } + ] +} \ No newline at end of file diff --git a/hyperparameter/n3/tvae/tvae-n3-20260504_180018/_tvae_generate.py b/hyperparameter/n3/tvae/tvae-n3-20260504_180018/_tvae_generate.py new file mode 100644 index 0000000000000000000000000000000000000000..4f9cf621d756127ba56d81b5d03a897854c6fb39 --- /dev/null +++ b/hyperparameter/n3/tvae/tvae-n3-20260504_180018/_tvae_generate.py @@ -0,0 +1,23 @@ +import os, sys +sys.path.insert(0, "/work") +from src.SpecificModels.ctgan_joblib_parallel_cap import apply_parallel_cap_from_env +apply_parallel_cap_from_env() +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 +os.environ.setdefault("LOKY_MAX_CPU_COUNT", "8") +os.environ.setdefault("OPENBLAS_NUM_THREADS", "8") +os.environ.setdefault("MKL_NUM_THREADS", "8") +model = TVAE.load("/work/output-Benchmark-trainonly-v1/n3/tvae/tvae-n3-20260504_180018/models_300epochs/tvae_300epochs.pt") +total = 3918 +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-Benchmark-trainonly-v1/n3/tvae/tvae-n3-20260504_180018/tvae-n3-3918-20260504_180152.csv", index=False) +print(f"[TVAE] Generated {total} rows (chunks={len(parts)}) -> /work/output-Benchmark-trainonly-v1/n3/tvae/tvae-n3-20260504_180018/tvae-n3-3918-20260504_180152.csv") diff --git a/hyperparameter/n3/tvae/tvae-n3-20260504_180018/_tvae_train.py b/hyperparameter/n3/tvae/tvae-n3-20260504_180018/_tvae_train.py new file mode 100644 index 0000000000000000000000000000000000000000..bd01c88cdd31ec29e1fb2cdeff82715de5186d16 --- /dev/null +++ b/hyperparameter/n3/tvae/tvae-n3-20260504_180018/_tvae_train.py @@ -0,0 +1,39 @@ +import json, os, sys +sys.path.insert(0, "/work") +from src.SpecificModels.ctgan_joblib_parallel_cap import apply_parallel_cap_from_env +apply_parallel_cap_from_env() +import pandas as pd +from ctgan.data import read_csv +from ctgan.synthesizers.tvae import TVAE + +# Keep transform stage parallelism bounded for stability on shared host. +os.environ.setdefault("LOKY_MAX_CPU_COUNT", "8") +os.environ.setdefault("OPENBLAS_NUM_THREADS", "8") +os.environ.setdefault("MKL_NUM_THREADS", "8") +_nj = (os.environ.get("TVAE_CTGAN_JOBTRANS_N_JOBS") or "").strip() +if _nj: + print("[TVAE] joblib Parallel cap ON, TVAE_CTGAN_JOBTRANS_N_JOBS=" + _nj) +else: + print("[TVAE] joblib Parallel cap OFF (unset TVAE_CTGAN_JOBTRANS_N_JOBS)") +print("[TVAE] LOKY_MAX_CPU_COUNT=" + str(os.environ.get("LOKY_MAX_CPU_COUNT", ""))) + +csv_path = "/work/output-Benchmark-trainonly-v1/n3/tvae/tvae-n3-20260504_180018/staged/public/train.csv" +meta_path = "/work/output-Benchmark-trainonly-v1/n3/tvae/tvae-n3-20260504_180018/tvae_metadata.json" +save_path = "/work/output-Benchmark-trainonly-v1/n3/tvae/tvae-n3-20260504_180018/models_300epochs/tvae_300epochs.pt" +epochs = int(os.environ.get("TVAE_EPOCHS", 300)) +batch_size = int(os.environ.get("TVAE_BATCH_SIZE", "500")) +embedding_dim = int(os.environ.get("TVAE_EMBEDDING_DIM", "128")) +def _parse_dims(name, default): + raw = (os.environ.get(name) or "").strip() + if not raw: + return default + return tuple(int(x.strip()) for x in raw.split(",") if x.strip()) +compress_dims = _parse_dims("TVAE_COMPRESS_DIMS", (128, 128)) +decompress_dims = _parse_dims("TVAE_DECOMPRESS_DIMS", (128, 128)) + +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}, batch_size={batch_size}, embedding_dim={embedding_dim}, compress_dims={compress_dims}, decompress_dims={decompress_dims}") +model = TVAE(epochs=epochs, batch_size=batch_size, embedding_dim=embedding_dim, compress_dims=compress_dims, decompress_dims=decompress_dims) +model.fit(data, discrete_columns) +model.save(save_path) +print(f"[TVAE] Model saved -> {save_path}") diff --git a/hyperparameter/n3/tvae/tvae-n3-20260504_180018/gen_20260504_180152.log b/hyperparameter/n3/tvae/tvae-n3-20260504_180018/gen_20260504_180152.log new file mode 100644 index 0000000000000000000000000000000000000000..5dc87648379c31a774bd527b872cbf17e45a245c --- /dev/null +++ b/hyperparameter/n3/tvae/tvae-n3-20260504_180018/gen_20260504_180152.log @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:f2e6ce3290ea52be4c6f716ed2e89479dad3485e76eaf753b8d4a25787114b1e +size 404 diff --git a/hyperparameter/n3/tvae/tvae-n3-20260504_180018/input_snapshot.json b/hyperparameter/n3/tvae/tvae-n3-20260504_180018/input_snapshot.json new file mode 100644 index 0000000000000000000000000000000000000000..1ddd4c8dc6c3d918927aad5bcb5dbb27f78068fe --- /dev/null +++ b/hyperparameter/n3/tvae/tvae-n3-20260504_180018/input_snapshot.json @@ -0,0 +1,36 @@ +{ + "dataset_id": "n3", + "model": "tvae", + "inputs": { + "train_csv": { + "path": "/data/jialinzhang/SynthesizePipeline-server/DatasetNew/n3/n3-train.csv", + "exists": true, + "size": 211519, + "sha256": "2160a06db2fea02adb0ebb79d8d853bd2544580be301e71f6e8deeb1489a9009" + }, + "val_csv": { + "path": "/data/jialinzhang/SynthesizePipeline-server/DatasetNew/n3/n3-val.csv", + "exists": true, + "size": 26499, + "sha256": "d5ccfee07dfa9e7bdee5bb87642b43828e09f74c6cc0266a3d19d9feaa83106e" + }, + "test_csv": { + "path": "/data/jialinzhang/SynthesizePipeline-server/DatasetNew/n3/n3-test.csv", + "exists": true, + "size": 26676, + "sha256": "6f83aacb0d1747b95e287352a7fff5d9d65a1c127b773852346c68485c4ede47" + }, + "profile_json": { + "path": "/data/jialinzhang/SynthesizePipeline-server/DatasetNew/artifacts/data_core/tabular/n3/n3-dataset_profile.json", + "exists": true, + "size": 5235, + "sha256": "23d2e5904a2ca90cbf8d6e3c75887681721e9b90cc705c31a680c11513d0c46f" + }, + "contract_json": { + "path": "/data/jialinzhang/SynthesizePipeline-server/DatasetNew/artifacts/data_core/tabular/n3/n3-dataset_contract_v1.json", + "exists": true, + "size": 6281, + "sha256": "c0cc56f5fe28e1b65927255c6e3c2b0e9479862c2ec6f2fea1664da36c9a3a09" + } + } +} \ No newline at end of file diff --git a/hyperparameter/n3/tvae/tvae-n3-20260504_180018/models_300epochs/train_20260504_180018.log b/hyperparameter/n3/tvae/tvae-n3-20260504_180018/models_300epochs/train_20260504_180018.log new file mode 100644 index 0000000000000000000000000000000000000000..da3d8f1ce43eb37200a472bcf9074fcb8311b8a1 --- /dev/null +++ b/hyperparameter/n3/tvae/tvae-n3-20260504_180018/models_300epochs/train_20260504_180018.log @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:118a8e48dfbc8f4ecf6759a100ae304988089d5cf83fe0489fd1a28b30fd8de3 +size 621 diff --git a/hyperparameter/n3/tvae/tvae-n3-20260504_180018/models_300epochs/tvae_300epochs.pt b/hyperparameter/n3/tvae/tvae-n3-20260504_180018/models_300epochs/tvae_300epochs.pt new file mode 100644 index 0000000000000000000000000000000000000000..d81e5fec18dd0deb45ab441205be3bb5352ac05a --- /dev/null +++ b/hyperparameter/n3/tvae/tvae-n3-20260504_180018/models_300epochs/tvae_300epochs.pt @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:b48905d99ddd53a87fb47ad81d6c1ec5030e228b79d0c8bce66d0a52c6669aac +size 1112300 diff --git a/hyperparameter/n3/tvae/tvae-n3-20260504_180018/public_gate/normalized_schema_snapshot.json b/hyperparameter/n3/tvae/tvae-n3-20260504_180018/public_gate/normalized_schema_snapshot.json new file mode 100644 index 0000000000000000000000000000000000000000..c41fe304503de23190a02e6cbfafa35b3bf134d3 --- /dev/null +++ b/hyperparameter/n3/tvae/tvae-n3-20260504_180018/public_gate/normalized_schema_snapshot.json @@ -0,0 +1,259 @@ +{ + "dataset_id": "n3", + "target_column": "quality", + "task_type": "classification", + "columns": [ + { + "name": "fixed acidity", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 66, + "unique_ratio": 0.016845, + "example_values": [ + "7.1", + "8.5", + "6.4", + "6.8", + "7.6" + ] + } + }, + { + "name": "volatile acidity", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 121, + "unique_ratio": 0.030883, + "example_values": [ + "0.31", + "0.21", + "0.24", + "0.43", + "0.27" + ] + } + }, + { + "name": "citric acid", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 85, + "unique_ratio": 0.021695, + "example_values": [ + "0.17", + "0.41", + "0.31", + "0.25", + "0.3" + ] + } + }, + { + "name": "residual sugar", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 296, + "unique_ratio": 0.075549, + "example_values": [ + "1", + "4.3", + "2.8", + "13", + "12.9" + ] + } + }, + { + "name": "chlorides", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 147, + "unique_ratio": 0.037519, + "example_values": [ + "0.042", + "0.036", + "0.038", + "0.047", + "0.033" + ] + } + }, + { + "name": "free sulfur dioxide", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 120, + "unique_ratio": 0.030628, + "example_values": [ + "21", + "24", + "41", + "43", + "69" + ] + } + }, + { + "name": "total sulfur dioxide", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 244, + "unique_ratio": 0.062277, + "example_values": [ + "144", + "99", + "114", + "132", + "160" + ] + } + }, + { + "name": "density", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 839, + "unique_ratio": 0.21414, + "example_values": [ + "0.99304", + "0.9947", + "0.99155", + "0.98975", + "0.99705" + ] + } + }, + { + "name": "pH", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 100, + "unique_ratio": 0.025523, + "example_values": [ + "3.13", + "3.18", + "3.37", + "3.21", + "3.16" + ] + } + }, + { + "name": "sulphates", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 78, + "unique_ratio": 0.019908, + "example_values": [ + "0.4", + "0.53", + "0.66", + "0.47", + "0.5" + ] + } + }, + { + "name": "alcohol", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 97, + "unique_ratio": 0.024758, + "example_values": [ + "9.6", + "9.7", + "11.7", + "13.4", + "8.8" + ] + } + }, + { + "name": "quality", + "role": "target", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 7, + "unique_ratio": 0.001787, + "example_values": [ + "5", + "6", + "7", + "8", + "3" + ] + } + } + ] +} \ No newline at end of file diff --git a/hyperparameter/n3/tvae/tvae-n3-20260504_180018/public_gate/public_gate_report.json b/hyperparameter/n3/tvae/tvae-n3-20260504_180018/public_gate/public_gate_report.json new file mode 100644 index 0000000000000000000000000000000000000000..93b97319f739e39079d6c6549fd2020f8a6dac25 --- /dev/null +++ b/hyperparameter/n3/tvae/tvae-n3-20260504_180018/public_gate/public_gate_report.json @@ -0,0 +1,37 @@ +{ + "dataset_id": "n3", + "status": "pass", + "checks": [ + { + "check_id": "PG001_csv_parse_ok", + "status": "pass" + }, + { + "check_id": "PG002_split_header_consistent", + "status": "pass" + }, + { + "check_id": "PG003_profile_header_match", + "status": "pass" + }, + { + "check_id": "PG004_missing_token_normalized", + "status": "pass" + }, + { + "check_id": "PG005_semantic_type_validated", + "status": "pass" + }, + { + "check_id": "PG006_target_defined_and_valid", + "status": "pass" + } + ], + "target_column": "quality", + "task_type": "classification", + "input_splits": { + "train": "/data/jialinzhang/SynthesizePipeline-server/DatasetNew/n3/n3-train.csv", + "val": "/data/jialinzhang/SynthesizePipeline-server/DatasetNew/n3/n3-val.csv", + "test": "/data/jialinzhang/SynthesizePipeline-server/DatasetNew/n3/n3-test.csv" + } +} \ No newline at end of file diff --git a/hyperparameter/n3/tvae/tvae-n3-20260504_180018/public_gate/staged_input_manifest.json b/hyperparameter/n3/tvae/tvae-n3-20260504_180018/public_gate/staged_input_manifest.json new file mode 100644 index 0000000000000000000000000000000000000000..65ff4dcf6157a684ee082109d3de8e6761f76d8f --- /dev/null +++ b/hyperparameter/n3/tvae/tvae-n3-20260504_180018/public_gate/staged_input_manifest.json @@ -0,0 +1,264 @@ +{ + "dataset_id": "n3", + "target_column": "quality", + "task_type": "classification", + "train_csv": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/n3/tvae/tvae-n3-20260504_180018/staged/public/train.csv", + "val_csv": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/n3/tvae/tvae-n3-20260504_180018/staged/public/val.csv", + "test_csv": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/n3/tvae/tvae-n3-20260504_180018/staged/public/test.csv", + "features_json": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/n3/tvae/tvae-n3-20260504_180018/staged/public/staged_features.json", + "public_gate_report": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/n3/tvae/tvae-n3-20260504_180018/public_gate/public_gate_report.json", + "column_schema": [ + { + "name": "fixed acidity", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 66, + "unique_ratio": 0.016845, + "example_values": [ + "7.1", + "8.5", + "6.4", + "6.8", + "7.6" + ] + } + }, + { + "name": "volatile acidity", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 121, + "unique_ratio": 0.030883, + "example_values": [ + "0.31", + "0.21", + "0.24", + "0.43", + "0.27" + ] + } + }, + { + "name": "citric acid", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 85, + "unique_ratio": 0.021695, + "example_values": [ + "0.17", + "0.41", + "0.31", + "0.25", + "0.3" + ] + } + }, + { + "name": "residual sugar", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 296, + "unique_ratio": 0.075549, + "example_values": [ + "1", + "4.3", + "2.8", + "13", + "12.9" + ] + } + }, + { + "name": "chlorides", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 147, + "unique_ratio": 0.037519, + "example_values": [ + "0.042", + "0.036", + "0.038", + "0.047", + "0.033" + ] + } + }, + { + "name": "free sulfur dioxide", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 120, + "unique_ratio": 0.030628, + "example_values": [ + "21", + "24", + "41", + "43", + "69" + ] + } + }, + { + "name": "total sulfur dioxide", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 244, + "unique_ratio": 0.062277, + "example_values": [ + "144", + "99", + "114", + "132", + "160" + ] + } + }, + { + "name": "density", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 839, + "unique_ratio": 0.21414, + "example_values": [ + "0.99304", + "0.9947", + "0.99155", + "0.98975", + "0.99705" + ] + } + }, + { + "name": "pH", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 100, + "unique_ratio": 0.025523, + "example_values": [ + "3.13", + "3.18", + "3.37", + "3.21", + "3.16" + ] + } + }, + { + "name": "sulphates", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 78, + "unique_ratio": 0.019908, + "example_values": [ + "0.4", + "0.53", + "0.66", + "0.47", + "0.5" + ] + } + }, + { + "name": "alcohol", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 97, + "unique_ratio": 0.024758, + "example_values": [ + "9.6", + "9.7", + "11.7", + "13.4", + "8.8" + ] + } + }, + { + "name": "quality", + "role": "target", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 7, + "unique_ratio": 0.001787, + "example_values": [ + "5", + "6", + "7", + "8", + "3" + ] + } + } + ] +} \ No newline at end of file diff --git a/hyperparameter/n3/tvae/tvae-n3-20260504_180018/run_config.json b/hyperparameter/n3/tvae/tvae-n3-20260504_180018/run_config.json new file mode 100644 index 0000000000000000000000000000000000000000..3eda429348545ffae0bbc37e60c7a3900a955095 --- /dev/null +++ b/hyperparameter/n3/tvae/tvae-n3-20260504_180018/run_config.json @@ -0,0 +1,45 @@ +{ + "schema_version": 1, + "recorded_at": "2026-05-04T18:00:18", + "dataset_id": "n3", + "model": "tvae", + "work_dir": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/n3/tvae/tvae-n3-20260504_180018", + "dataset_source_requested": "new", + "dataset_source_resolved": "new", + "cli_args": { + "model": "tvae", + "dataset": "n3", + "dataset_source": "new", + "train": true, + "generate": true, + "num_rows": 0, + "epochs": null, + "output_dir": null, + "model_dir": null, + "work_dir": null, + "resume": false, + "no_stats": false + }, + "resolved": { + "num_rows": 3918, + "model_path": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/n3/tvae/tvae-n3-20260504_180018/models_300epochs/tvae_300epochs.pt", + "output_csv": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/n3/tvae/tvae-n3-20260504_180018/tvae-n3-3918-20260504_180152.csv" + }, + "input_artifacts": { + "public_gate_report": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/n3/tvae/tvae-n3-20260504_180018/public_gate/public_gate_report.json", + "public_manifest": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/n3/tvae/tvae-n3-20260504_180018/public_gate/staged_input_manifest.json", + "model_manifest": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/n3/tvae/tvae-n3-20260504_180018/staged/tvae/model_input_manifest.json", + "train_csv": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/n3/tvae/tvae-n3-20260504_180018/staged/public/train.csv", + "features_json": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/n3/tvae/tvae-n3-20260504_180018/staged/public/staged_features.json", + "target_column": "quality", + "task_type": "classification" + }, + "env_overrides": { + "BENCHMARK_TVAE_GPUS": "device=3", + "TVAE_BATCH_SIZE": "256", + "TVAE_COMPRESS_DIMS": "256,256", + "TVAE_DECOMPRESS_DIMS": "256,256", + "TVAE_EMBEDDING_DIM": "128", + "TVAE_EPOCHS": "500" + } +} \ No newline at end of file diff --git a/hyperparameter/n3/tvae/tvae-n3-20260504_180018/runtime_result.json b/hyperparameter/n3/tvae/tvae-n3-20260504_180018/runtime_result.json new file mode 100644 index 0000000000000000000000000000000000000000..547029ea7fa287f702ea6ab561a97791e29896a8 --- /dev/null +++ b/hyperparameter/n3/tvae/tvae-n3-20260504_180018/runtime_result.json @@ -0,0 +1,27 @@ +{ + "dataset_id": "n3", + "model": "tvae", + "run_id": "tvae-n3-20260504_180018", + "public_gate_status": "pass", + "adapter_ready_status": "pass", + "train_status": "success", + "generate_status": "success", + "reason_code": null, + "reason_detail": null, + "artifacts": { + "synthetic_csv": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/n3/tvae/tvae-n3-20260504_180018/tvae-n3-3918-20260504_180152.csv", + "model_path": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/n3/tvae/tvae-n3-20260504_180018/models_300epochs/tvae_300epochs.pt" + }, + "timings": { + "train": { + "started_at": "2026-05-04T18:00:18", + "ended_at": "2026-05-04T18:01:52", + "duration_sec": 93.32 + }, + "generate": { + "started_at": "2026-05-04T18:01:52", + "ended_at": "2026-05-04T18:01:57", + "duration_sec": 5.246 + } + } +} \ No newline at end of file diff --git a/hyperparameter/n3/tvae/tvae-n3-20260504_180018/staged/public/staged_features.json b/hyperparameter/n3/tvae/tvae-n3-20260504_180018/staged/public/staged_features.json new file mode 100644 index 0000000000000000000000000000000000000000..08fe4d766d091d2f2ddba724a16b9509cbe4c390 --- /dev/null +++ b/hyperparameter/n3/tvae/tvae-n3-20260504_180018/staged/public/staged_features.json @@ -0,0 +1,62 @@ +[ + { + "feature_name": "fixed acidity", + "data_type": "continuous", + "is_target": false + }, + { + "feature_name": "volatile acidity", + "data_type": "continuous", + "is_target": false + }, + { + "feature_name": "citric acid", + "data_type": "continuous", + "is_target": false + }, + { + "feature_name": "residual sugar", + "data_type": "continuous", + "is_target": false + }, + { + "feature_name": "chlorides", + "data_type": "continuous", + "is_target": false + }, + { + "feature_name": "free sulfur dioxide", + "data_type": "continuous", + "is_target": false + }, + { + "feature_name": "total sulfur dioxide", + "data_type": "continuous", + "is_target": false + }, + { + "feature_name": "density", + "data_type": "continuous", + "is_target": false + }, + { + "feature_name": "pH", + "data_type": "continuous", + "is_target": false + }, + { + "feature_name": "sulphates", + "data_type": "continuous", + "is_target": false + }, + { + "feature_name": "alcohol", + "data_type": "continuous", + "is_target": false + }, + { + "feature_name": "quality", + "data_type": "continuous", + "is_target": true + } +] \ No newline at end of file diff --git a/hyperparameter/n3/tvae/tvae-n3-20260504_180018/staged/public/test.csv b/hyperparameter/n3/tvae/tvae-n3-20260504_180018/staged/public/test.csv new file mode 100644 index 0000000000000000000000000000000000000000..db5cd50d3746410ea470625fa2ba2c8e9775cc0d --- /dev/null +++ b/hyperparameter/n3/tvae/tvae-n3-20260504_180018/staged/public/test.csv @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:19e107152a94432e2a37ff045c00cfe35e1be30208b1553080d7dd0ede256d3b +size 28944 diff --git a/hyperparameter/n3/tvae/tvae-n3-20260504_180018/staged/public/train.csv b/hyperparameter/n3/tvae/tvae-n3-20260504_180018/staged/public/train.csv new file mode 100644 index 0000000000000000000000000000000000000000..87ca26726fe82ccbaa397919305b043c17eb374e --- /dev/null +++ b/hyperparameter/n3/tvae/tvae-n3-20260504_180018/staged/public/train.csv @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:7813c8cca73ba4bfc6559215257b341c21e459980ad17ae6ddc809306bc9a0b9 +size 229945 diff --git a/hyperparameter/n3/tvae/tvae-n3-20260504_180018/staged/public/val.csv b/hyperparameter/n3/tvae/tvae-n3-20260504_180018/staged/public/val.csv new file mode 100644 index 0000000000000000000000000000000000000000..6acf84c76c47093b513c46d5503972a2dff275c0 --- /dev/null +++ b/hyperparameter/n3/tvae/tvae-n3-20260504_180018/staged/public/val.csv @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:cf5979d9675567d9d6642640c9b84fc6c49e492604144723c30f50516c05cee6 +size 28791 diff --git a/hyperparameter/n3/tvae/tvae-n3-20260504_180018/staged/tvae/adapter_report.json b/hyperparameter/n3/tvae/tvae-n3-20260504_180018/staged/tvae/adapter_report.json new file mode 100644 index 0000000000000000000000000000000000000000..87126bd581f5c036a550c432fdec6f7ca639c18e --- /dev/null +++ b/hyperparameter/n3/tvae/tvae-n3-20260504_180018/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-Benchmark-trainonly-v1/n3/tvae/tvae-n3-20260504_180018/staged/tvae/model_input_manifest.json" +} \ No newline at end of file diff --git a/hyperparameter/n3/tvae/tvae-n3-20260504_180018/staged/tvae/adapter_transforms_applied.json b/hyperparameter/n3/tvae/tvae-n3-20260504_180018/staged/tvae/adapter_transforms_applied.json new file mode 100644 index 0000000000000000000000000000000000000000..0637a088a01e8ddab3bf3fa98dbe804cbde1a0dc --- /dev/null +++ b/hyperparameter/n3/tvae/tvae-n3-20260504_180018/staged/tvae/adapter_transforms_applied.json @@ -0,0 +1 @@ +[] \ No newline at end of file diff --git a/hyperparameter/n3/tvae/tvae-n3-20260504_180018/staged/tvae/model_input_manifest.json b/hyperparameter/n3/tvae/tvae-n3-20260504_180018/staged/tvae/model_input_manifest.json new file mode 100644 index 0000000000000000000000000000000000000000..88162a483a06ccd50c1893776094c7c41bcd2507 --- /dev/null +++ b/hyperparameter/n3/tvae/tvae-n3-20260504_180018/staged/tvae/model_input_manifest.json @@ -0,0 +1,266 @@ +{ + "dataset_id": "n3", + "model": "tvae", + "target_column": "quality", + "task_type": "classification", + "column_schema": [ + { + "name": "fixed acidity", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 66, + "unique_ratio": 0.016845, + "example_values": [ + "7.1", + "8.5", + "6.4", + "6.8", + "7.6" + ] + } + }, + { + "name": "volatile acidity", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 121, + "unique_ratio": 0.030883, + "example_values": [ + "0.31", + "0.21", + "0.24", + "0.43", + "0.27" + ] + } + }, + { + "name": "citric acid", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 85, + "unique_ratio": 0.021695, + "example_values": [ + "0.17", + "0.41", + "0.31", + "0.25", + "0.3" + ] + } + }, + { + "name": "residual sugar", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 296, + "unique_ratio": 0.075549, + "example_values": [ + "1", + "4.3", + "2.8", + "13", + "12.9" + ] + } + }, + { + "name": "chlorides", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 147, + "unique_ratio": 0.037519, + "example_values": [ + "0.042", + "0.036", + "0.038", + "0.047", + "0.033" + ] + } + }, + { + "name": "free sulfur dioxide", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 120, + "unique_ratio": 0.030628, + "example_values": [ + "21", + "24", + "41", + "43", + "69" + ] + } + }, + { + "name": "total sulfur dioxide", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 244, + "unique_ratio": 0.062277, + "example_values": [ + "144", + "99", + "114", + "132", + "160" + ] + } + }, + { + "name": "density", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 839, + "unique_ratio": 0.21414, + "example_values": [ + "0.99304", + "0.9947", + "0.99155", + "0.98975", + "0.99705" + ] + } + }, + { + "name": "pH", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 100, + "unique_ratio": 0.025523, + "example_values": [ + "3.13", + "3.18", + "3.37", + "3.21", + "3.16" + ] + } + }, + { + "name": "sulphates", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 78, + "unique_ratio": 0.019908, + "example_values": [ + "0.4", + "0.53", + "0.66", + "0.47", + "0.5" + ] + } + }, + { + "name": "alcohol", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 97, + "unique_ratio": 0.024758, + "example_values": [ + "9.6", + "9.7", + "11.7", + "13.4", + "8.8" + ] + } + }, + { + "name": "quality", + "role": "target", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 7, + "unique_ratio": 0.001787, + "example_values": [ + "5", + "6", + "7", + "8", + "3" + ] + } + } + ], + "public_manifest": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/n3/tvae/tvae-n3-20260504_180018/public_gate/staged_input_manifest.json", + "train_csv": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/n3/tvae/tvae-n3-20260504_180018/staged/public/train.csv", + "val_csv": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/n3/tvae/tvae-n3-20260504_180018/staged/public/val.csv", + "test_csv": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/n3/tvae/tvae-n3-20260504_180018/staged/public/test.csv", + "features_json": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/n3/tvae/tvae-n3-20260504_180018/staged/public/staged_features.json", + "public_gate_report": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/n3/tvae/tvae-n3-20260504_180018/public_gate/public_gate_report.json" +} \ No newline at end of file diff --git a/hyperparameter/n3/tvae/tvae-n3-20260504_180018/tvae-n3-3918-20260504_180152.csv b/hyperparameter/n3/tvae/tvae-n3-20260504_180018/tvae-n3-3918-20260504_180152.csv new file mode 100644 index 0000000000000000000000000000000000000000..361f8e7dfa48053c9c11f830e964d2d281babccc --- /dev/null +++ b/hyperparameter/n3/tvae/tvae-n3-20260504_180018/tvae-n3-3918-20260504_180152.csv @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:a7ddf27d7e67c91b0cc4320fac6c059beb9de77910a2c9914535b5db5a19fccc +size 820283 diff --git a/hyperparameter/n3/tvae/tvae-n3-20260504_180018/tvae_metadata.json b/hyperparameter/n3/tvae/tvae-n3-20260504_180018/tvae_metadata.json new file mode 100644 index 0000000000000000000000000000000000000000..40d513aa1aca4c6f5c1be8afc3d6a1a0c75aa74f --- /dev/null +++ b/hyperparameter/n3/tvae/tvae-n3-20260504_180018/tvae_metadata.json @@ -0,0 +1,52 @@ +{ + "columns": [ + { + "name": "fixed acidity", + "type": "continuous" + }, + { + "name": "volatile acidity", + "type": "continuous" + }, + { + "name": "citric acid", + "type": "continuous" + }, + { + "name": "residual sugar", + "type": "continuous" + }, + { + "name": "chlorides", + "type": "continuous" + }, + { + "name": "free sulfur dioxide", + "type": "continuous" + }, + { + "name": "total sulfur dioxide", + "type": "continuous" + }, + { + "name": "density", + "type": "continuous" + }, + { + "name": "pH", + "type": "continuous" + }, + { + "name": "sulphates", + "type": "continuous" + }, + { + "name": "alcohol", + "type": "continuous" + }, + { + "name": "quality", + "type": "continuous" + } + ] +} \ No newline at end of file diff --git a/hyperparameter/n3/tvae/tvae-n3-20260504_180209/_tvae_generate.py b/hyperparameter/n3/tvae/tvae-n3-20260504_180209/_tvae_generate.py new file mode 100644 index 0000000000000000000000000000000000000000..e0bb2d7e7d2aefffd85bee311158c71d512b1134 --- /dev/null +++ b/hyperparameter/n3/tvae/tvae-n3-20260504_180209/_tvae_generate.py @@ -0,0 +1,23 @@ +import os, sys +sys.path.insert(0, "/work") +from src.SpecificModels.ctgan_joblib_parallel_cap import apply_parallel_cap_from_env +apply_parallel_cap_from_env() +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 +os.environ.setdefault("LOKY_MAX_CPU_COUNT", "8") +os.environ.setdefault("OPENBLAS_NUM_THREADS", "8") +os.environ.setdefault("MKL_NUM_THREADS", "8") +model = TVAE.load("/work/output-Benchmark-trainonly-v1/n3/tvae/tvae-n3-20260504_180209/models_300epochs/tvae_300epochs.pt") +total = 3918 +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-Benchmark-trainonly-v1/n3/tvae/tvae-n3-20260504_180209/tvae-n3-3918-20260504_180345.csv", index=False) +print(f"[TVAE] Generated {total} rows (chunks={len(parts)}) -> /work/output-Benchmark-trainonly-v1/n3/tvae/tvae-n3-20260504_180209/tvae-n3-3918-20260504_180345.csv") diff --git a/hyperparameter/n3/tvae/tvae-n3-20260504_180209/_tvae_train.py b/hyperparameter/n3/tvae/tvae-n3-20260504_180209/_tvae_train.py new file mode 100644 index 0000000000000000000000000000000000000000..99aa02f81dd2ad71f400e0409301e5bc93d9ceaf --- /dev/null +++ b/hyperparameter/n3/tvae/tvae-n3-20260504_180209/_tvae_train.py @@ -0,0 +1,39 @@ +import json, os, sys +sys.path.insert(0, "/work") +from src.SpecificModels.ctgan_joblib_parallel_cap import apply_parallel_cap_from_env +apply_parallel_cap_from_env() +import pandas as pd +from ctgan.data import read_csv +from ctgan.synthesizers.tvae import TVAE + +# Keep transform stage parallelism bounded for stability on shared host. +os.environ.setdefault("LOKY_MAX_CPU_COUNT", "8") +os.environ.setdefault("OPENBLAS_NUM_THREADS", "8") +os.environ.setdefault("MKL_NUM_THREADS", "8") +_nj = (os.environ.get("TVAE_CTGAN_JOBTRANS_N_JOBS") or "").strip() +if _nj: + print("[TVAE] joblib Parallel cap ON, TVAE_CTGAN_JOBTRANS_N_JOBS=" + _nj) +else: + print("[TVAE] joblib Parallel cap OFF (unset TVAE_CTGAN_JOBTRANS_N_JOBS)") +print("[TVAE] LOKY_MAX_CPU_COUNT=" + str(os.environ.get("LOKY_MAX_CPU_COUNT", ""))) + +csv_path = "/work/output-Benchmark-trainonly-v1/n3/tvae/tvae-n3-20260504_180209/staged/public/train.csv" +meta_path = "/work/output-Benchmark-trainonly-v1/n3/tvae/tvae-n3-20260504_180209/tvae_metadata.json" +save_path = "/work/output-Benchmark-trainonly-v1/n3/tvae/tvae-n3-20260504_180209/models_300epochs/tvae_300epochs.pt" +epochs = int(os.environ.get("TVAE_EPOCHS", 300)) +batch_size = int(os.environ.get("TVAE_BATCH_SIZE", "500")) +embedding_dim = int(os.environ.get("TVAE_EMBEDDING_DIM", "128")) +def _parse_dims(name, default): + raw = (os.environ.get(name) or "").strip() + if not raw: + return default + return tuple(int(x.strip()) for x in raw.split(",") if x.strip()) +compress_dims = _parse_dims("TVAE_COMPRESS_DIMS", (128, 128)) +decompress_dims = _parse_dims("TVAE_DECOMPRESS_DIMS", (128, 128)) + +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}, batch_size={batch_size}, embedding_dim={embedding_dim}, compress_dims={compress_dims}, decompress_dims={decompress_dims}") +model = TVAE(epochs=epochs, batch_size=batch_size, embedding_dim=embedding_dim, compress_dims=compress_dims, decompress_dims=decompress_dims) +model.fit(data, discrete_columns) +model.save(save_path) +print(f"[TVAE] Model saved -> {save_path}") diff --git a/hyperparameter/n3/tvae/tvae-n3-20260504_180209/gen_20260504_180345.log b/hyperparameter/n3/tvae/tvae-n3-20260504_180209/gen_20260504_180345.log new file mode 100644 index 0000000000000000000000000000000000000000..21c5b503a596f2d9f52385614c1465b59c012652 --- /dev/null +++ b/hyperparameter/n3/tvae/tvae-n3-20260504_180209/gen_20260504_180345.log @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:2bd05a84f5c2e1e31daf8000e86de8e09158f70a12f44646f86ee65c3f27ab7f +size 404 diff --git a/hyperparameter/n3/tvae/tvae-n3-20260504_180209/input_snapshot.json b/hyperparameter/n3/tvae/tvae-n3-20260504_180209/input_snapshot.json new file mode 100644 index 0000000000000000000000000000000000000000..1ddd4c8dc6c3d918927aad5bcb5dbb27f78068fe --- /dev/null +++ b/hyperparameter/n3/tvae/tvae-n3-20260504_180209/input_snapshot.json @@ -0,0 +1,36 @@ +{ + "dataset_id": "n3", + "model": "tvae", + "inputs": { + "train_csv": { + "path": "/data/jialinzhang/SynthesizePipeline-server/DatasetNew/n3/n3-train.csv", + "exists": true, + "size": 211519, + "sha256": "2160a06db2fea02adb0ebb79d8d853bd2544580be301e71f6e8deeb1489a9009" + }, + "val_csv": { + "path": "/data/jialinzhang/SynthesizePipeline-server/DatasetNew/n3/n3-val.csv", + "exists": true, + "size": 26499, + "sha256": "d5ccfee07dfa9e7bdee5bb87642b43828e09f74c6cc0266a3d19d9feaa83106e" + }, + "test_csv": { + "path": "/data/jialinzhang/SynthesizePipeline-server/DatasetNew/n3/n3-test.csv", + "exists": true, + "size": 26676, + "sha256": "6f83aacb0d1747b95e287352a7fff5d9d65a1c127b773852346c68485c4ede47" + }, + "profile_json": { + "path": "/data/jialinzhang/SynthesizePipeline-server/DatasetNew/artifacts/data_core/tabular/n3/n3-dataset_profile.json", + "exists": true, + "size": 5235, + "sha256": "23d2e5904a2ca90cbf8d6e3c75887681721e9b90cc705c31a680c11513d0c46f" + }, + "contract_json": { + "path": "/data/jialinzhang/SynthesizePipeline-server/DatasetNew/artifacts/data_core/tabular/n3/n3-dataset_contract_v1.json", + "exists": true, + "size": 6281, + "sha256": "c0cc56f5fe28e1b65927255c6e3c2b0e9479862c2ec6f2fea1664da36c9a3a09" + } + } +} \ No newline at end of file diff --git a/hyperparameter/n3/tvae/tvae-n3-20260504_180209/models_300epochs/train_20260504_180209.log b/hyperparameter/n3/tvae/tvae-n3-20260504_180209/models_300epochs/train_20260504_180209.log new file mode 100644 index 0000000000000000000000000000000000000000..ab8f2f17661be4ca9f6f8abb09b4bddbc12036da --- /dev/null +++ b/hyperparameter/n3/tvae/tvae-n3-20260504_180209/models_300epochs/train_20260504_180209.log @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:ef263b732b18f832f921c74d9dccfc0305ec5982477de12d762ae6b073570864 +size 621 diff --git a/hyperparameter/n3/tvae/tvae-n3-20260504_180209/models_300epochs/tvae_300epochs.pt b/hyperparameter/n3/tvae/tvae-n3-20260504_180209/models_300epochs/tvae_300epochs.pt new file mode 100644 index 0000000000000000000000000000000000000000..9658f757a8817e08244f4967eaf4e5edcfcef01e --- /dev/null +++ b/hyperparameter/n3/tvae/tvae-n3-20260504_180209/models_300epochs/tvae_300epochs.pt @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:e2ed47235ab99710430f255cfc920182d3031ae2e378670a8ce68a013f2f709b +size 1237868 diff --git a/hyperparameter/n3/tvae/tvae-n3-20260504_180209/public_gate/normalized_schema_snapshot.json b/hyperparameter/n3/tvae/tvae-n3-20260504_180209/public_gate/normalized_schema_snapshot.json new file mode 100644 index 0000000000000000000000000000000000000000..c41fe304503de23190a02e6cbfafa35b3bf134d3 --- /dev/null +++ b/hyperparameter/n3/tvae/tvae-n3-20260504_180209/public_gate/normalized_schema_snapshot.json @@ -0,0 +1,259 @@ +{ + "dataset_id": "n3", + "target_column": "quality", + "task_type": "classification", + "columns": [ + { + "name": "fixed acidity", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 66, + "unique_ratio": 0.016845, + "example_values": [ + "7.1", + "8.5", + "6.4", + "6.8", + "7.6" + ] + } + }, + { + "name": "volatile acidity", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 121, + "unique_ratio": 0.030883, + "example_values": [ + "0.31", + "0.21", + "0.24", + "0.43", + "0.27" + ] + } + }, + { + "name": "citric acid", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 85, + "unique_ratio": 0.021695, + "example_values": [ + "0.17", + "0.41", + "0.31", + "0.25", + "0.3" + ] + } + }, + { + "name": "residual sugar", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 296, + "unique_ratio": 0.075549, + "example_values": [ + "1", + "4.3", + "2.8", + "13", + "12.9" + ] + } + }, + { + "name": "chlorides", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 147, + "unique_ratio": 0.037519, + "example_values": [ + "0.042", + "0.036", + "0.038", + "0.047", + "0.033" + ] + } + }, + { + "name": "free sulfur dioxide", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 120, + "unique_ratio": 0.030628, + "example_values": [ + "21", + "24", + "41", + "43", + "69" + ] + } + }, + { + "name": "total sulfur dioxide", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 244, + "unique_ratio": 0.062277, + "example_values": [ + "144", + "99", + "114", + "132", + "160" + ] + } + }, + { + "name": "density", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 839, + "unique_ratio": 0.21414, + "example_values": [ + "0.99304", + "0.9947", + "0.99155", + "0.98975", + "0.99705" + ] + } + }, + { + "name": "pH", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 100, + "unique_ratio": 0.025523, + "example_values": [ + "3.13", + "3.18", + "3.37", + "3.21", + "3.16" + ] + } + }, + { + "name": "sulphates", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 78, + "unique_ratio": 0.019908, + "example_values": [ + "0.4", + "0.53", + "0.66", + "0.47", + "0.5" + ] + } + }, + { + "name": "alcohol", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 97, + "unique_ratio": 0.024758, + "example_values": [ + "9.6", + "9.7", + "11.7", + "13.4", + "8.8" + ] + } + }, + { + "name": "quality", + "role": "target", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 7, + "unique_ratio": 0.001787, + "example_values": [ + "5", + "6", + "7", + "8", + "3" + ] + } + } + ] +} \ No newline at end of file diff --git a/hyperparameter/n3/tvae/tvae-n3-20260504_180209/public_gate/public_gate_report.json b/hyperparameter/n3/tvae/tvae-n3-20260504_180209/public_gate/public_gate_report.json new file mode 100644 index 0000000000000000000000000000000000000000..93b97319f739e39079d6c6549fd2020f8a6dac25 --- /dev/null +++ b/hyperparameter/n3/tvae/tvae-n3-20260504_180209/public_gate/public_gate_report.json @@ -0,0 +1,37 @@ +{ + "dataset_id": "n3", + "status": "pass", + "checks": [ + { + "check_id": "PG001_csv_parse_ok", + "status": "pass" + }, + { + "check_id": "PG002_split_header_consistent", + "status": "pass" + }, + { + "check_id": "PG003_profile_header_match", + "status": "pass" + }, + { + "check_id": "PG004_missing_token_normalized", + "status": "pass" + }, + { + "check_id": "PG005_semantic_type_validated", + "status": "pass" + }, + { + "check_id": "PG006_target_defined_and_valid", + "status": "pass" + } + ], + "target_column": "quality", + "task_type": "classification", + "input_splits": { + "train": "/data/jialinzhang/SynthesizePipeline-server/DatasetNew/n3/n3-train.csv", + "val": "/data/jialinzhang/SynthesizePipeline-server/DatasetNew/n3/n3-val.csv", + "test": "/data/jialinzhang/SynthesizePipeline-server/DatasetNew/n3/n3-test.csv" + } +} \ No newline at end of file diff --git a/hyperparameter/n3/tvae/tvae-n3-20260504_180209/public_gate/staged_input_manifest.json b/hyperparameter/n3/tvae/tvae-n3-20260504_180209/public_gate/staged_input_manifest.json new file mode 100644 index 0000000000000000000000000000000000000000..53ef96107bb93338bcc4dc3f51de98ffe31eb478 --- /dev/null +++ b/hyperparameter/n3/tvae/tvae-n3-20260504_180209/public_gate/staged_input_manifest.json @@ -0,0 +1,264 @@ +{ + "dataset_id": "n3", + "target_column": "quality", + "task_type": "classification", + "train_csv": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/n3/tvae/tvae-n3-20260504_180209/staged/public/train.csv", + "val_csv": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/n3/tvae/tvae-n3-20260504_180209/staged/public/val.csv", + "test_csv": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/n3/tvae/tvae-n3-20260504_180209/staged/public/test.csv", + "features_json": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/n3/tvae/tvae-n3-20260504_180209/staged/public/staged_features.json", + "public_gate_report": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/n3/tvae/tvae-n3-20260504_180209/public_gate/public_gate_report.json", + "column_schema": [ + { + "name": "fixed acidity", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 66, + "unique_ratio": 0.016845, + "example_values": [ + "7.1", + "8.5", + "6.4", + "6.8", + "7.6" + ] + } + }, + { + "name": "volatile acidity", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 121, + "unique_ratio": 0.030883, + "example_values": [ + "0.31", + "0.21", + "0.24", + "0.43", + "0.27" + ] + } + }, + { + "name": "citric acid", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 85, + "unique_ratio": 0.021695, + "example_values": [ + "0.17", + "0.41", + "0.31", + "0.25", + "0.3" + ] + } + }, + { + "name": "residual sugar", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 296, + "unique_ratio": 0.075549, + "example_values": [ + "1", + "4.3", + "2.8", + "13", + "12.9" + ] + } + }, + { + "name": "chlorides", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 147, + "unique_ratio": 0.037519, + "example_values": [ + "0.042", + "0.036", + "0.038", + "0.047", + "0.033" + ] + } + }, + { + "name": "free sulfur dioxide", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 120, + "unique_ratio": 0.030628, + "example_values": [ + "21", + "24", + "41", + "43", + "69" + ] + } + }, + { + "name": "total sulfur dioxide", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 244, + "unique_ratio": 0.062277, + "example_values": [ + "144", + "99", + "114", + "132", + "160" + ] + } + }, + { + "name": "density", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 839, + "unique_ratio": 0.21414, + "example_values": [ + "0.99304", + "0.9947", + "0.99155", + "0.98975", + "0.99705" + ] + } + }, + { + "name": "pH", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 100, + "unique_ratio": 0.025523, + "example_values": [ + "3.13", + "3.18", + "3.37", + "3.21", + "3.16" + ] + } + }, + { + "name": "sulphates", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 78, + "unique_ratio": 0.019908, + "example_values": [ + "0.4", + "0.53", + "0.66", + "0.47", + "0.5" + ] + } + }, + { + "name": "alcohol", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 97, + "unique_ratio": 0.024758, + "example_values": [ + "9.6", + "9.7", + "11.7", + "13.4", + "8.8" + ] + } + }, + { + "name": "quality", + "role": "target", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 7, + "unique_ratio": 0.001787, + "example_values": [ + "5", + "6", + "7", + "8", + "3" + ] + } + } + ] +} \ No newline at end of file diff --git a/hyperparameter/n3/tvae/tvae-n3-20260504_180209/run_config.json b/hyperparameter/n3/tvae/tvae-n3-20260504_180209/run_config.json new file mode 100644 index 0000000000000000000000000000000000000000..ecc48641ea4c71e0f4e575c29fbdb2c0a3ad7023 --- /dev/null +++ b/hyperparameter/n3/tvae/tvae-n3-20260504_180209/run_config.json @@ -0,0 +1,45 @@ +{ + "schema_version": 1, + "recorded_at": "2026-05-04T18:02:09", + "dataset_id": "n3", + "model": "tvae", + "work_dir": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/n3/tvae/tvae-n3-20260504_180209", + "dataset_source_requested": "new", + "dataset_source_resolved": "new", + "cli_args": { + "model": "tvae", + "dataset": "n3", + "dataset_source": "new", + "train": true, + "generate": true, + "num_rows": 0, + "epochs": null, + "output_dir": null, + "model_dir": null, + "work_dir": null, + "resume": false, + "no_stats": false + }, + "resolved": { + "num_rows": 3918, + "model_path": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/n3/tvae/tvae-n3-20260504_180209/models_300epochs/tvae_300epochs.pt", + "output_csv": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/n3/tvae/tvae-n3-20260504_180209/tvae-n3-3918-20260504_180345.csv" + }, + "input_artifacts": { + "public_gate_report": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/n3/tvae/tvae-n3-20260504_180209/public_gate/public_gate_report.json", + "public_manifest": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/n3/tvae/tvae-n3-20260504_180209/public_gate/staged_input_manifest.json", + "model_manifest": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/n3/tvae/tvae-n3-20260504_180209/staged/tvae/model_input_manifest.json", + "train_csv": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/n3/tvae/tvae-n3-20260504_180209/staged/public/train.csv", + "features_json": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/n3/tvae/tvae-n3-20260504_180209/staged/public/staged_features.json", + "target_column": "quality", + "task_type": "classification" + }, + "env_overrides": { + "BENCHMARK_TVAE_GPUS": "device=3", + "TVAE_BATCH_SIZE": "256", + "TVAE_COMPRESS_DIMS": "256,256", + "TVAE_DECOMPRESS_DIMS": "256,256", + "TVAE_EMBEDDING_DIM": "256", + "TVAE_EPOCHS": "500" + } +} \ No newline at end of file diff --git a/hyperparameter/n3/tvae/tvae-n3-20260504_180209/runtime_result.json b/hyperparameter/n3/tvae/tvae-n3-20260504_180209/runtime_result.json new file mode 100644 index 0000000000000000000000000000000000000000..5246503ea620a80e4bad650ed99a7c8956e9c984 --- /dev/null +++ b/hyperparameter/n3/tvae/tvae-n3-20260504_180209/runtime_result.json @@ -0,0 +1,27 @@ +{ + "dataset_id": "n3", + "model": "tvae", + "run_id": "tvae-n3-20260504_180209", + "public_gate_status": "pass", + "adapter_ready_status": "pass", + "train_status": "success", + "generate_status": "success", + "reason_code": null, + "reason_detail": null, + "artifacts": { + "synthetic_csv": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/n3/tvae/tvae-n3-20260504_180209/tvae-n3-3918-20260504_180345.csv", + "model_path": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/n3/tvae/tvae-n3-20260504_180209/models_300epochs/tvae_300epochs.pt" + }, + "timings": { + "train": { + "started_at": "2026-05-04T18:02:09", + "ended_at": "2026-05-04T18:03:45", + "duration_sec": 95.951 + }, + "generate": { + "started_at": "2026-05-04T18:03:45", + "ended_at": "2026-05-04T18:03:51", + "duration_sec": 5.188 + } + } +} \ No newline at end of file diff --git a/hyperparameter/n3/tvae/tvae-n3-20260504_180209/staged/public/staged_features.json b/hyperparameter/n3/tvae/tvae-n3-20260504_180209/staged/public/staged_features.json new file mode 100644 index 0000000000000000000000000000000000000000..08fe4d766d091d2f2ddba724a16b9509cbe4c390 --- /dev/null +++ b/hyperparameter/n3/tvae/tvae-n3-20260504_180209/staged/public/staged_features.json @@ -0,0 +1,62 @@ +[ + { + "feature_name": "fixed acidity", + "data_type": "continuous", + "is_target": false + }, + { + "feature_name": "volatile acidity", + "data_type": "continuous", + "is_target": false + }, + { + "feature_name": "citric acid", + "data_type": "continuous", + "is_target": false + }, + { + "feature_name": "residual sugar", + "data_type": "continuous", + "is_target": false + }, + { + "feature_name": "chlorides", + "data_type": "continuous", + "is_target": false + }, + { + "feature_name": "free sulfur dioxide", + "data_type": "continuous", + "is_target": false + }, + { + "feature_name": "total sulfur dioxide", + "data_type": "continuous", + "is_target": false + }, + { + "feature_name": "density", + "data_type": "continuous", + "is_target": false + }, + { + "feature_name": "pH", + "data_type": "continuous", + "is_target": false + }, + { + "feature_name": "sulphates", + "data_type": "continuous", + "is_target": false + }, + { + "feature_name": "alcohol", + "data_type": "continuous", + "is_target": false + }, + { + "feature_name": "quality", + "data_type": "continuous", + "is_target": true + } +] \ No newline at end of file diff --git a/hyperparameter/n3/tvae/tvae-n3-20260504_180209/staged/public/test.csv b/hyperparameter/n3/tvae/tvae-n3-20260504_180209/staged/public/test.csv new file mode 100644 index 0000000000000000000000000000000000000000..db5cd50d3746410ea470625fa2ba2c8e9775cc0d --- /dev/null +++ b/hyperparameter/n3/tvae/tvae-n3-20260504_180209/staged/public/test.csv @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:19e107152a94432e2a37ff045c00cfe35e1be30208b1553080d7dd0ede256d3b +size 28944 diff --git a/hyperparameter/n3/tvae/tvae-n3-20260504_180209/staged/public/train.csv b/hyperparameter/n3/tvae/tvae-n3-20260504_180209/staged/public/train.csv new file mode 100644 index 0000000000000000000000000000000000000000..87ca26726fe82ccbaa397919305b043c17eb374e --- /dev/null +++ b/hyperparameter/n3/tvae/tvae-n3-20260504_180209/staged/public/train.csv @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:7813c8cca73ba4bfc6559215257b341c21e459980ad17ae6ddc809306bc9a0b9 +size 229945 diff --git a/hyperparameter/n3/tvae/tvae-n3-20260504_180209/staged/public/val.csv b/hyperparameter/n3/tvae/tvae-n3-20260504_180209/staged/public/val.csv new file mode 100644 index 0000000000000000000000000000000000000000..6acf84c76c47093b513c46d5503972a2dff275c0 --- /dev/null +++ b/hyperparameter/n3/tvae/tvae-n3-20260504_180209/staged/public/val.csv @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:cf5979d9675567d9d6642640c9b84fc6c49e492604144723c30f50516c05cee6 +size 28791 diff --git a/hyperparameter/n3/tvae/tvae-n3-20260504_180209/staged/tvae/adapter_report.json b/hyperparameter/n3/tvae/tvae-n3-20260504_180209/staged/tvae/adapter_report.json new file mode 100644 index 0000000000000000000000000000000000000000..4bf0f97ba6c93866503b3df927d84938ef842bfd --- /dev/null +++ b/hyperparameter/n3/tvae/tvae-n3-20260504_180209/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-Benchmark-trainonly-v1/n3/tvae/tvae-n3-20260504_180209/staged/tvae/model_input_manifest.json" +} \ No newline at end of file diff --git a/hyperparameter/n3/tvae/tvae-n3-20260504_180209/staged/tvae/adapter_transforms_applied.json b/hyperparameter/n3/tvae/tvae-n3-20260504_180209/staged/tvae/adapter_transforms_applied.json new file mode 100644 index 0000000000000000000000000000000000000000..0637a088a01e8ddab3bf3fa98dbe804cbde1a0dc --- /dev/null +++ b/hyperparameter/n3/tvae/tvae-n3-20260504_180209/staged/tvae/adapter_transforms_applied.json @@ -0,0 +1 @@ +[] \ No newline at end of file diff --git a/hyperparameter/n3/tvae/tvae-n3-20260504_180209/staged/tvae/model_input_manifest.json b/hyperparameter/n3/tvae/tvae-n3-20260504_180209/staged/tvae/model_input_manifest.json new file mode 100644 index 0000000000000000000000000000000000000000..e7ef2aa9b33d3f5c50fa61424e02c8bf5e16cd5d --- /dev/null +++ b/hyperparameter/n3/tvae/tvae-n3-20260504_180209/staged/tvae/model_input_manifest.json @@ -0,0 +1,266 @@ +{ + "dataset_id": "n3", + "model": "tvae", + "target_column": "quality", + "task_type": "classification", + "column_schema": [ + { + "name": "fixed acidity", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 66, + "unique_ratio": 0.016845, + "example_values": [ + "7.1", + "8.5", + "6.4", + "6.8", + "7.6" + ] + } + }, + { + "name": "volatile acidity", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 121, + "unique_ratio": 0.030883, + "example_values": [ + "0.31", + "0.21", + "0.24", + "0.43", + "0.27" + ] + } + }, + { + "name": "citric acid", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 85, + "unique_ratio": 0.021695, + "example_values": [ + "0.17", + "0.41", + "0.31", + "0.25", + "0.3" + ] + } + }, + { + "name": "residual sugar", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 296, + "unique_ratio": 0.075549, + "example_values": [ + "1", + "4.3", + "2.8", + "13", + "12.9" + ] + } + }, + { + "name": "chlorides", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 147, + "unique_ratio": 0.037519, + "example_values": [ + "0.042", + "0.036", + "0.038", + "0.047", + "0.033" + ] + } + }, + { + "name": "free sulfur dioxide", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 120, + "unique_ratio": 0.030628, + "example_values": [ + "21", + "24", + "41", + "43", + "69" + ] + } + }, + { + "name": "total sulfur dioxide", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 244, + "unique_ratio": 0.062277, + "example_values": [ + "144", + "99", + "114", + "132", + "160" + ] + } + }, + { + "name": "density", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 839, + "unique_ratio": 0.21414, + "example_values": [ + "0.99304", + "0.9947", + "0.99155", + "0.98975", + "0.99705" + ] + } + }, + { + "name": "pH", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 100, + "unique_ratio": 0.025523, + "example_values": [ + "3.13", + "3.18", + "3.37", + "3.21", + "3.16" + ] + } + }, + { + "name": "sulphates", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 78, + "unique_ratio": 0.019908, + "example_values": [ + "0.4", + "0.53", + "0.66", + "0.47", + "0.5" + ] + } + }, + { + "name": "alcohol", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 97, + "unique_ratio": 0.024758, + "example_values": [ + "9.6", + "9.7", + "11.7", + "13.4", + "8.8" + ] + } + }, + { + "name": "quality", + "role": "target", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 7, + "unique_ratio": 0.001787, + "example_values": [ + "5", + "6", + "7", + "8", + "3" + ] + } + } + ], + "public_manifest": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/n3/tvae/tvae-n3-20260504_180209/public_gate/staged_input_manifest.json", + "train_csv": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/n3/tvae/tvae-n3-20260504_180209/staged/public/train.csv", + "val_csv": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/n3/tvae/tvae-n3-20260504_180209/staged/public/val.csv", + "test_csv": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/n3/tvae/tvae-n3-20260504_180209/staged/public/test.csv", + "features_json": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/n3/tvae/tvae-n3-20260504_180209/staged/public/staged_features.json", + "public_gate_report": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/n3/tvae/tvae-n3-20260504_180209/public_gate/public_gate_report.json" +} \ No newline at end of file diff --git a/hyperparameter/n3/tvae/tvae-n3-20260504_180209/tvae-n3-3918-20260504_180345.csv b/hyperparameter/n3/tvae/tvae-n3-20260504_180209/tvae-n3-3918-20260504_180345.csv new file mode 100644 index 0000000000000000000000000000000000000000..cb4001a56167f759b7d62206402096f406caea1e --- /dev/null +++ b/hyperparameter/n3/tvae/tvae-n3-20260504_180209/tvae-n3-3918-20260504_180345.csv @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:4c5849ac70605215db2f49695e46e4d45a6af7caa95083a86a1ba1d6ccc8f579 +size 820300 diff --git a/hyperparameter/n3/tvae/tvae-n3-20260504_180209/tvae_metadata.json b/hyperparameter/n3/tvae/tvae-n3-20260504_180209/tvae_metadata.json new file mode 100644 index 0000000000000000000000000000000000000000..40d513aa1aca4c6f5c1be8afc3d6a1a0c75aa74f --- /dev/null +++ b/hyperparameter/n3/tvae/tvae-n3-20260504_180209/tvae_metadata.json @@ -0,0 +1,52 @@ +{ + "columns": [ + { + "name": "fixed acidity", + "type": "continuous" + }, + { + "name": "volatile acidity", + "type": "continuous" + }, + { + "name": "citric acid", + "type": "continuous" + }, + { + "name": "residual sugar", + "type": "continuous" + }, + { + "name": "chlorides", + "type": "continuous" + }, + { + "name": "free sulfur dioxide", + "type": "continuous" + }, + { + "name": "total sulfur dioxide", + "type": "continuous" + }, + { + "name": "density", + "type": "continuous" + }, + { + "name": "pH", + "type": "continuous" + }, + { + "name": "sulphates", + "type": "continuous" + }, + { + "name": "alcohol", + "type": "continuous" + }, + { + "name": "quality", + "type": "continuous" + } + ] +} \ No newline at end of file diff --git a/timecost/c14/arf/arf-c14-20260501_225126/_arf_generate.py b/timecost/c14/arf/arf-c14-20260501_225126/_arf_generate.py new file mode 100644 index 0000000000000000000000000000000000000000..a6b45137c4a69916ec4b23188e77a5850a66c2c0 --- /dev/null +++ b/timecost/c14/arf/arf-c14-20260501_225126/_arf_generate.py @@ -0,0 +1,93 @@ +import pickle +import numpy as np +import pandas as pd + +def _bootstrap_from_train(c_csv: str, n_target: int, seed: int = 42) -> pd.DataFrame: + """当 arfpy.forge 完全不可用时,从训练 CSV 有放回抽样,保证行数与列对齐。""" + src = pd.read_csv(c_csv, encoding="utf-8-sig", low_memory=False) + src = src.replace([np.inf, -np.inf], np.nan).dropna(axis=1, how="all") + src = src.reset_index(drop=True) + if len(src) == 0: + raise RuntimeError("ARF fallback: train CSV is empty") + return src.sample(n=n_target, replace=True, random_state=seed).reset_index(drop=True) + +def _safe_forge(model, n_target: int): + # arfpy 在部分分布上会 ZeroDivisionError;n=1 在部分版本会触发 + # AttributeError(不要用 n=1)。失败返回 None,由外层走 bootstrap。 + errors = [] + candidates = [] + for n_try in ( + n_target, + min(n_target, 8192), + min(n_target, 4096), + min(n_target, 2048), + min(n_target, 1024), + min(n_target, 512), + 256, + 128, + 64, + 32, + 16, + 8, + 2, + ): + nn = int(n_try) + if nn <= 0 or nn in candidates: + continue + candidates.append(nn) + for n_try in candidates: + try: + out = model.forge(n=n_try).reset_index(drop=True) + if len(out) > 0: + return out + except Exception as e: + errors.append(f"n={n_try}: {type(e).__name__}: {e}") + print("[ARF] forge failed after retries; last errors:", " | ".join(errors[-4:])) + return None + +n_target = int(240000) +c_csv = "/work/output-Benchmark-trainonly-v1/c14/arf/arf-c14-20260501_225126/staged/public/train.csv" +with open("/work/output-Benchmark-trainonly-v1/c14/arf/arf-c14-20260501_225126/arf_model.pkl", "rb") as f: + model = pickle.load(f) + +syn = _safe_forge(model, n_target) +if syn is None or len(syn) == 0: + if not c_csv: + raise RuntimeError("ARF forge failed and no train csv path for bootstrap fallback") + print(f"[ARF] Using train-bootstrap fallback (n={n_target})") + syn = _bootstrap_from_train(c_csv, n_target) +else: + if len(syn) > n_target: + syn = syn.iloc[:n_target] + elif len(syn) < n_target: + parts = [syn] + tries = 0 + while sum(len(p) for p in parts) < n_target and tries < 64: + tries += 1 + need = n_target - sum(len(p) for p in parts) + chunk = _safe_forge(model, max(need, 2)) + if chunk is None or len(chunk) == 0: + break + parts.append(chunk) + syn = pd.concat(parts, ignore_index=True).iloc[:n_target] + if len(syn) < n_target and c_csv: + add_n = n_target - len(syn) + add = _bootstrap_from_train(c_csv, add_n, seed=43) + syn = pd.concat([syn, add], ignore_index=True).iloc[:n_target] + +_ds_id = 'c14' +if _ds_id == "c19": + # 仅 c19:object 列内裸换行会使 pivot 用 csv.reader 统计到的「记录数」大于 DataFrame 行数 → Sw。 + for _col in syn.columns: + if syn[_col].dtype == object: + syn[_col] = ( + syn[_col] + .astype(str) + .str.replace("\r\n", " ", regex=False) + .str.replace("\n", " ", regex=False) + .str.replace("\r", " ", regex=False) + ) + syn = syn.iloc[:n_target].reset_index(drop=True) + +syn.to_csv("/work/output-Benchmark-trainonly-v1/c14/arf/arf-c14-20260501_225126/arf-c14-240000-20260501_232038.csv", index=False) +print(f"[ARF] Generated {len(syn)} rows (requested {n_target}) -> /work/output-Benchmark-trainonly-v1/c14/arf/arf-c14-20260501_225126/arf-c14-240000-20260501_232038.csv") diff --git a/timecost/c14/arf/arf-c14-20260501_225126/_arf_train.py b/timecost/c14/arf/arf-c14-20260501_225126/_arf_train.py new file mode 100644 index 0000000000000000000000000000000000000000..6048d85e041385612cf27641afe8e6300bc49dbd --- /dev/null +++ b/timecost/c14/arf/arf-c14-20260501_225126/_arf_train.py @@ -0,0 +1,37 @@ +import pickle +import numpy as np +import pandas as pd +from arfpy import arf + +def _sanitize_for_arf(df: pd.DataFrame) -> pd.DataFrame: + """缓解 forge 阶段 scipy.stats.truncnorm / 除零:处理 inf、NaN 与极端尾部。""" + df = df.replace([np.inf, -np.inf], np.nan) + df = df.dropna(axis=1, how="all") + for col in df.select_dtypes(include=[np.number]).columns: + med = df[col].median() + if pd.isna(med): + med = 0.0 + df[col] = df[col].fillna(med) + nu = int(df[col].nunique(dropna=True)) + if nu <= 1: + continue + lo, hi = df[col].quantile(0.001), df[col].quantile(0.999) + if pd.notna(lo) and pd.notna(hi) and lo < hi: + df[col] = df[col].clip(lo, hi) + return df + +df = pd.read_csv("/work/output-Benchmark-trainonly-v1/c14/arf/arf-c14-20260501_225126/staged/public/train.csv") +df = _sanitize_for_arf(df) +print(f"[ARF] Training on {len(df)} rows, {len(df.columns)} cols") + +model = arf.arf(x=df) +if hasattr(model, "fit"): + model.fit() +elif hasattr(model, "forde"): + model.forde() +else: + raise RuntimeError("arfpy API: no fit() / forde()") + +with open("/work/output-Benchmark-trainonly-v1/c14/arf/arf-c14-20260501_225126/arf_model.pkl", "wb") as f: + pickle.dump(model, f) +print(f"[ARF] Model saved -> /work/output-Benchmark-trainonly-v1/c14/arf/arf-c14-20260501_225126/arf_model.pkl") diff --git a/timecost/c14/arf/arf-c14-20260501_225126/arf-c14-240000-20260501_232038.csv b/timecost/c14/arf/arf-c14-20260501_225126/arf-c14-240000-20260501_232038.csv new file mode 100644 index 0000000000000000000000000000000000000000..5d76953dcac501ec7e6862d597907b06db64a004 --- /dev/null +++ b/timecost/c14/arf/arf-c14-20260501_225126/arf-c14-240000-20260501_232038.csv @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:fc9ce89ed6aa94384dcdc49316311677a01999649421a88fff66b6183fb5a464 +size 55594271 diff --git a/timecost/c14/arf/arf-c14-20260501_225126/arf_model.pkl b/timecost/c14/arf/arf-c14-20260501_225126/arf_model.pkl new file mode 100644 index 0000000000000000000000000000000000000000..07e1bebc8216b01afedee1cbf74e8fc769370644 --- /dev/null +++ b/timecost/c14/arf/arf-c14-20260501_225126/arf_model.pkl @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:3cb31c233283b40de4a37467392d5f5a6e5f1afa46a7150d6f1e3f9d38bdd500 +size 4661503915 diff --git a/timecost/c14/arf/arf-c14-20260501_225126/gen_20260501_232038.log b/timecost/c14/arf/arf-c14-20260501_225126/gen_20260501_232038.log new file mode 100644 index 0000000000000000000000000000000000000000..a4dffc1034c7b5780124fd1973ca90f2526e537d --- /dev/null +++ b/timecost/c14/arf/arf-c14-20260501_225126/gen_20260501_232038.log @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:e55893586e9d52cb96ff087ecfd7603f08272076221973124119c3a1d47d1806 +size 6102 diff --git a/timecost/c14/arf/arf-c14-20260501_225126/input_snapshot.json b/timecost/c14/arf/arf-c14-20260501_225126/input_snapshot.json new file mode 100644 index 0000000000000000000000000000000000000000..16fb81ee60eca670ff28f3fbf6fef0d75f3d17ff --- /dev/null +++ b/timecost/c14/arf/arf-c14-20260501_225126/input_snapshot.json @@ -0,0 +1,36 @@ +{ + "dataset_id": "c14", + "model": "arf", + "inputs": { + "train_csv": { + "path": "/data/jialinzhang/SynthesizePipeline-server/DatasetNew/c14/c14-train.csv", + "exists": true, + "size": 31957080, + "sha256": "4a11abde6a7fae9f8bb1a1d7e31035b9dd61587d2721749a52d78d65441fba5e" + }, + "val_csv": { + "path": "/data/jialinzhang/SynthesizePipeline-server/DatasetNew/c14/c14-val.csv", + "exists": true, + "size": 3995920, + "sha256": "b04d723eeb59d339a356302660463c129141b4213fefbf472ef48f8a4daa50c9" + }, + "test_csv": { + "path": "/data/jialinzhang/SynthesizePipeline-server/DatasetNew/c14/c14-test.csv", + "exists": true, + "size": 3995840, + "sha256": "4780b90e46f6b440983cc9315cad8bca0e86bd26d8877ffae7111258fba0a132" + }, + "profile_json": { + "path": "/data/jialinzhang/SynthesizePipeline-server/DatasetNew/artifacts/data_core/tabular/c14/c14-dataset_profile.json", + "exists": true, + "size": 9505, + "sha256": "577cc5830dcb336243555d3d41c06e2e7c0a63df2a9caccb7a0411b9332cde15" + }, + "contract_json": { + "path": "/data/jialinzhang/SynthesizePipeline-server/DatasetNew/artifacts/data_core/tabular/c14/c14-dataset_contract_v1.json", + "exists": true, + "size": 11901, + "sha256": "955197dff3346d55aaa999adf98d64c375a7e4ca9bc4bcfe626499c9cfea9a41" + } + } +} \ No newline at end of file diff --git a/timecost/c14/arf/arf-c14-20260501_225126/public_gate/normalized_schema_snapshot.json b/timecost/c14/arf/arf-c14-20260501_225126/public_gate/normalized_schema_snapshot.json new file mode 100644 index 0000000000000000000000000000000000000000..c43047a97cac9542e79dfa127e651be7146aa2a4 --- /dev/null +++ b/timecost/c14/arf/arf-c14-20260501_225126/public_gate/normalized_schema_snapshot.json @@ -0,0 +1,509 @@ +{ + "dataset_id": "c14", + "target_column": "target", + "task_type": "classification", + "columns": [ + { + "name": "id", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 20000, + "unique_ratio": 0.083333, + "example_values": [ + "182547", + "28342", + "172611", + "81876", + "110780" + ] + } + }, + { + "name": "bin_0", + "role": "feature", + "semantic_type": "boolean", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 2, + "unique_ratio": 8e-06, + "example_values": [ + "0", + "1" + ] + } + }, + { + "name": "bin_1", + "role": "feature", + "semantic_type": "boolean", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 2, + "unique_ratio": 8e-06, + "example_values": [ + "0", + "1" + ] + } + }, + { + "name": "bin_2", + "role": "feature", + "semantic_type": "boolean", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 2, + "unique_ratio": 8e-06, + "example_values": [ + "0", + "1" + ] + } + }, + { + "name": "bin_3", + "role": "feature", + "semantic_type": "boolean", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 2, + "unique_ratio": 8e-06, + "example_values": [ + "F", + "T" + ] + } + }, + { + "name": "bin_4", + "role": "feature", + "semantic_type": "boolean", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 2, + "unique_ratio": 8e-06, + "example_values": [ + "Y", + "N" + ] + } + }, + { + "name": "nom_0", + "role": "feature", + "semantic_type": "categorical", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 3, + "unique_ratio": 1.3e-05, + "example_values": [ + "Blue", + "Green", + "Red" + ] + } + }, + { + "name": "nom_1", + "role": "feature", + "semantic_type": "categorical", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 6, + "unique_ratio": 2.5e-05, + "example_values": [ + "Trapezoid", + "Polygon", + "Square", + "Star", + "Triangle" + ] + } + }, + { + "name": "nom_2", + "role": "feature", + "semantic_type": "categorical", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 6, + "unique_ratio": 2.5e-05, + "example_values": [ + "Cat", + "Dog", + "Lion", + "Snake", + "Axolotl" + ] + } + }, + { + "name": "nom_3", + "role": "feature", + "semantic_type": "categorical", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 6, + "unique_ratio": 2.5e-05, + "example_values": [ + "China", + "Finland", + "Canada", + "India", + "Russia" + ] + } + }, + { + "name": "nom_4", + "role": "feature", + "semantic_type": "categorical", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 4, + "unique_ratio": 1.7e-05, + "example_values": [ + "Oboe", + "Bassoon", + "Theremin", + "Piano" + ] + } + }, + { + "name": "nom_5", + "role": "feature", + "semantic_type": "categorical", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 222, + "unique_ratio": 0.000925, + "example_values": [ + "c5725677e", + "92190168b", + "dbfb714a4", + "60a44c8f4", + "e70a6270d" + ] + } + }, + { + "name": "nom_6", + "role": "feature", + "semantic_type": "categorical", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 522, + "unique_ratio": 0.002175, + "example_values": [ + "231233ca9", + "79a82b7c0", + "9a70de492", + "cad70d692", + "6d2cd10c5" + ] + } + }, + { + "name": "nom_7", + "role": "feature", + "semantic_type": "categorical", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 1219, + "unique_ratio": 0.005079, + "example_values": [ + "673d3c1c0", + "7ad3e362c", + "fcd030cc2", + "27e8d4511", + "7df1399cb" + ] + } + }, + { + "name": "nom_8", + "role": "feature", + "semantic_type": "categorical", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 2215, + "unique_ratio": 0.009229, + "example_values": [ + "4fbb167ac", + "7d97eba78", + "b886d6c1c", + "a9d35cede", + "fd0041a98" + ] + } + }, + { + "name": "nom_9", + "role": "feature", + "semantic_type": "categorical", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 11927, + "unique_ratio": 0.049696, + "example_values": [ + "1f31c5cc1", + "89539e0fa", + "8a34e794f", + "34760ea8a", + "46b472cdb" + ] + } + }, + { + "name": "ord_0", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 3, + "unique_ratio": 1.3e-05, + "example_values": [ + "1", + "2", + "3" + ] + } + }, + { + "name": "ord_1", + "role": "feature", + "semantic_type": "categorical", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 5, + "unique_ratio": 2.1e-05, + "example_values": [ + "Grandmaster", + "Contributor", + "Novice", + "Master", + "Expert" + ] + } + }, + { + "name": "ord_2", + "role": "feature", + "semantic_type": "categorical", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 6, + "unique_ratio": 2.5e-05, + "example_values": [ + "Lava Hot", + "Boiling Hot", + "Freezing", + "Hot", + "Cold" + ] + } + }, + { + "name": "ord_3", + "role": "feature", + "semantic_type": "categorical", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 15, + "unique_ratio": 6.3e-05, + "example_values": [ + "g", + "j", + "l", + "f", + "k" + ] + } + }, + { + "name": "ord_4", + "role": "feature", + "semantic_type": "categorical", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 26, + "unique_ratio": 0.000108, + "example_values": [ + "L", + "S", + "K", + "I", + "A" + ] + } + }, + { + "name": "ord_5", + "role": "feature", + "semantic_type": "categorical", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 192, + "unique_ratio": 0.0008, + "example_values": [ + "qo", + "aM", + "AP", + "fO", + "hh" + ] + } + }, + { + "name": "day", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 7, + "unique_ratio": 2.9e-05, + "example_values": [ + "1", + "2", + "7", + "4", + "3" + ] + } + }, + { + "name": "month", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 12, + "unique_ratio": 5e-05, + "example_values": [ + "12", + "4", + "8", + "2", + "9" + ] + } + }, + { + "name": "target", + "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": 8e-06, + "example_values": [ + "0", + "1" + ] + } + } + ] +} \ No newline at end of file diff --git a/timecost/c14/arf/arf-c14-20260501_225126/public_gate/public_gate_report.json b/timecost/c14/arf/arf-c14-20260501_225126/public_gate/public_gate_report.json new file mode 100644 index 0000000000000000000000000000000000000000..9374818599b8101d02e793ea785975d77363e3fd --- /dev/null +++ b/timecost/c14/arf/arf-c14-20260501_225126/public_gate/public_gate_report.json @@ -0,0 +1,37 @@ +{ + "dataset_id": "c14", + "status": "pass", + "checks": [ + { + "check_id": "PG001_csv_parse_ok", + "status": "pass" + }, + { + "check_id": "PG002_split_header_consistent", + "status": "pass" + }, + { + "check_id": "PG003_profile_header_match", + "status": "pass" + }, + { + "check_id": "PG004_missing_token_normalized", + "status": "pass" + }, + { + "check_id": "PG005_semantic_type_validated", + "status": "pass" + }, + { + "check_id": "PG006_target_defined_and_valid", + "status": "pass" + } + ], + "target_column": "target", + "task_type": "classification", + "input_splits": { + "train": "/data/jialinzhang/SynthesizePipeline-server/DatasetNew/c14/c14-train.csv", + "val": "/data/jialinzhang/SynthesizePipeline-server/DatasetNew/c14/c14-val.csv", + "test": "/data/jialinzhang/SynthesizePipeline-server/DatasetNew/c14/c14-test.csv" + } +} \ No newline at end of file diff --git a/timecost/c14/arf/arf-c14-20260501_225126/public_gate/staged_input_manifest.json b/timecost/c14/arf/arf-c14-20260501_225126/public_gate/staged_input_manifest.json new file mode 100644 index 0000000000000000000000000000000000000000..6ce71a388ab413835e966034b60111c3e9d018aa --- /dev/null +++ b/timecost/c14/arf/arf-c14-20260501_225126/public_gate/staged_input_manifest.json @@ -0,0 +1,514 @@ +{ + "dataset_id": "c14", + "target_column": "target", + "task_type": "classification", + "train_csv": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/c14/arf/arf-c14-20260501_225126/staged/public/train.csv", + "val_csv": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/c14/arf/arf-c14-20260501_225126/staged/public/val.csv", + "test_csv": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/c14/arf/arf-c14-20260501_225126/staged/public/test.csv", + "features_json": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/c14/arf/arf-c14-20260501_225126/staged/public/staged_features.json", + "public_gate_report": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/c14/arf/arf-c14-20260501_225126/public_gate/public_gate_report.json", + "column_schema": [ + { + "name": "id", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 20000, + "unique_ratio": 0.083333, + "example_values": [ + "182547", + "28342", + "172611", + "81876", + "110780" + ] + } + }, + { + "name": "bin_0", + "role": "feature", + "semantic_type": "boolean", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 2, + "unique_ratio": 8e-06, + "example_values": [ + "0", + "1" + ] + } + }, + { + "name": "bin_1", + "role": "feature", + "semantic_type": "boolean", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 2, + "unique_ratio": 8e-06, + "example_values": [ + "0", + "1" + ] + } + }, + { + "name": "bin_2", + "role": "feature", + "semantic_type": "boolean", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 2, + "unique_ratio": 8e-06, + "example_values": [ + "0", + "1" + ] + } + }, + { + "name": "bin_3", + "role": "feature", + "semantic_type": "boolean", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 2, + "unique_ratio": 8e-06, + "example_values": [ + "F", + "T" + ] + } + }, + { + "name": "bin_4", + "role": "feature", + "semantic_type": "boolean", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 2, + "unique_ratio": 8e-06, + "example_values": [ + "Y", + "N" + ] + } + }, + { + "name": "nom_0", + "role": "feature", + "semantic_type": "categorical", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 3, + "unique_ratio": 1.3e-05, + "example_values": [ + "Blue", + "Green", + "Red" + ] + } + }, + { + "name": "nom_1", + "role": "feature", + "semantic_type": "categorical", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 6, + "unique_ratio": 2.5e-05, + "example_values": [ + "Trapezoid", + "Polygon", + "Square", + "Star", + "Triangle" + ] + } + }, + { + "name": "nom_2", + "role": "feature", + "semantic_type": "categorical", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 6, + "unique_ratio": 2.5e-05, + "example_values": [ + "Cat", + "Dog", + "Lion", + "Snake", + "Axolotl" + ] + } + }, + { + "name": "nom_3", + "role": "feature", + "semantic_type": "categorical", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 6, + "unique_ratio": 2.5e-05, + "example_values": [ + "China", + "Finland", + "Canada", + "India", + "Russia" + ] + } + }, + { + "name": "nom_4", + "role": "feature", + "semantic_type": "categorical", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 4, + "unique_ratio": 1.7e-05, + "example_values": [ + "Oboe", + "Bassoon", + "Theremin", + "Piano" + ] + } + }, + { + "name": "nom_5", + "role": "feature", + "semantic_type": "categorical", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 222, + "unique_ratio": 0.000925, + "example_values": [ + "c5725677e", + "92190168b", + "dbfb714a4", + "60a44c8f4", + "e70a6270d" + ] + } + }, + { + "name": "nom_6", + "role": "feature", + "semantic_type": "categorical", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 522, + "unique_ratio": 0.002175, + "example_values": [ + "231233ca9", + "79a82b7c0", + "9a70de492", + "cad70d692", + "6d2cd10c5" + ] + } + }, + { + "name": "nom_7", + "role": "feature", + "semantic_type": "categorical", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 1219, + "unique_ratio": 0.005079, + "example_values": [ + "673d3c1c0", + "7ad3e362c", + "fcd030cc2", + "27e8d4511", + "7df1399cb" + ] + } + }, + { + "name": "nom_8", + "role": "feature", + "semantic_type": "categorical", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 2215, + "unique_ratio": 0.009229, + "example_values": [ + "4fbb167ac", + "7d97eba78", + "b886d6c1c", + "a9d35cede", + "fd0041a98" + ] + } + }, + { + "name": "nom_9", + "role": "feature", + "semantic_type": "categorical", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 11927, + "unique_ratio": 0.049696, + "example_values": [ + "1f31c5cc1", + "89539e0fa", + "8a34e794f", + "34760ea8a", + "46b472cdb" + ] + } + }, + { + "name": "ord_0", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 3, + "unique_ratio": 1.3e-05, + "example_values": [ + "1", + "2", + "3" + ] + } + }, + { + "name": "ord_1", + "role": "feature", + "semantic_type": "categorical", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 5, + "unique_ratio": 2.1e-05, + "example_values": [ + "Grandmaster", + "Contributor", + "Novice", + "Master", + "Expert" + ] + } + }, + { + "name": "ord_2", + "role": "feature", + "semantic_type": "categorical", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 6, + "unique_ratio": 2.5e-05, + "example_values": [ + "Lava Hot", + "Boiling Hot", + "Freezing", + "Hot", + "Cold" + ] + } + }, + { + "name": "ord_3", + "role": "feature", + "semantic_type": "categorical", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 15, + "unique_ratio": 6.3e-05, + "example_values": [ + "g", + "j", + "l", + "f", + "k" + ] + } + }, + { + "name": "ord_4", + "role": "feature", + "semantic_type": "categorical", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 26, + "unique_ratio": 0.000108, + "example_values": [ + "L", + "S", + "K", + "I", + "A" + ] + } + }, + { + "name": "ord_5", + "role": "feature", + "semantic_type": "categorical", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 192, + "unique_ratio": 0.0008, + "example_values": [ + "qo", + "aM", + "AP", + "fO", + "hh" + ] + } + }, + { + "name": "day", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 7, + "unique_ratio": 2.9e-05, + "example_values": [ + "1", + "2", + "7", + "4", + "3" + ] + } + }, + { + "name": "month", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 12, + "unique_ratio": 5e-05, + "example_values": [ + "12", + "4", + "8", + "2", + "9" + ] + } + }, + { + "name": "target", + "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": 8e-06, + "example_values": [ + "0", + "1" + ] + } + } + ] +} \ No newline at end of file diff --git a/timecost/c14/arf/arf-c14-20260501_225126/runtime_result.json b/timecost/c14/arf/arf-c14-20260501_225126/runtime_result.json new file mode 100644 index 0000000000000000000000000000000000000000..3c4134c4e160294f12a4c8e58a8a846b43825f8b --- /dev/null +++ b/timecost/c14/arf/arf-c14-20260501_225126/runtime_result.json @@ -0,0 +1,27 @@ +{ + "dataset_id": "c14", + "model": "arf", + "run_id": "arf-c14-20260501_225126", + "public_gate_status": "pass", + "adapter_ready_status": "pass", + "train_status": "success", + "generate_status": "success", + "reason_code": null, + "reason_detail": null, + "artifacts": { + "synthetic_csv": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/c14/arf/arf-c14-20260501_225126/arf-c14-240000-20260501_232038.csv", + "model_path": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/c14/arf/arf-c14-20260501_225126/arf_model.pkl" + }, + "timings": { + "train": { + "started_at": "2026-05-01T22:51:28", + "ended_at": "2026-05-01T23:20:38", + "duration_sec": 1750.112 + }, + "generate": { + "started_at": "2026-05-01T23:20:38", + "ended_at": "2026-05-01T23:25:58", + "duration_sec": 320.007 + } + } +} \ No newline at end of file diff --git a/timecost/c14/arf/arf-c14-20260501_225126/staged/arf/adapter_report.json b/timecost/c14/arf/arf-c14-20260501_225126/staged/arf/adapter_report.json new file mode 100644 index 0000000000000000000000000000000000000000..26468dbb3cbf320469bf5fb90fc1d83228cb6642 --- /dev/null +++ b/timecost/c14/arf/arf-c14-20260501_225126/staged/arf/adapter_report.json @@ -0,0 +1,7 @@ +{ + "adapter_ready_status": "pass", + "adapter_fail_reason_code": null, + "adapter_fail_detail": null, + "adapter_transforms_applied": [], + "model_input_manifest": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/c14/arf/arf-c14-20260501_225126/staged/arf/model_input_manifest.json" +} \ No newline at end of file diff --git a/timecost/c14/arf/arf-c14-20260501_225126/staged/arf/adapter_transforms_applied.json b/timecost/c14/arf/arf-c14-20260501_225126/staged/arf/adapter_transforms_applied.json new file mode 100644 index 0000000000000000000000000000000000000000..0637a088a01e8ddab3bf3fa98dbe804cbde1a0dc --- /dev/null +++ b/timecost/c14/arf/arf-c14-20260501_225126/staged/arf/adapter_transforms_applied.json @@ -0,0 +1 @@ +[] \ No newline at end of file diff --git a/timecost/c14/arf/arf-c14-20260501_225126/staged/arf/model_input_manifest.json b/timecost/c14/arf/arf-c14-20260501_225126/staged/arf/model_input_manifest.json new file mode 100644 index 0000000000000000000000000000000000000000..502910d8d7cf70cc6f6e52bfb4db8691a9071cd6 --- /dev/null +++ b/timecost/c14/arf/arf-c14-20260501_225126/staged/arf/model_input_manifest.json @@ -0,0 +1,516 @@ +{ + "dataset_id": "c14", + "model": "arf", + "target_column": "target", + "task_type": "classification", + "column_schema": [ + { + "name": "id", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 20000, + "unique_ratio": 0.083333, + "example_values": [ + "182547", + "28342", + "172611", + "81876", + "110780" + ] + } + }, + { + "name": "bin_0", + "role": "feature", + "semantic_type": "boolean", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 2, + "unique_ratio": 8e-06, + "example_values": [ + "0", + "1" + ] + } + }, + { + "name": "bin_1", + "role": "feature", + "semantic_type": "boolean", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 2, + "unique_ratio": 8e-06, + "example_values": [ + "0", + "1" + ] + } + }, + { + "name": "bin_2", + "role": "feature", + "semantic_type": "boolean", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 2, + "unique_ratio": 8e-06, + "example_values": [ + "0", + "1" + ] + } + }, + { + "name": "bin_3", + "role": "feature", + "semantic_type": "boolean", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 2, + "unique_ratio": 8e-06, + "example_values": [ + "F", + "T" + ] + } + }, + { + "name": "bin_4", + "role": "feature", + "semantic_type": "boolean", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 2, + "unique_ratio": 8e-06, + "example_values": [ + "Y", + "N" + ] + } + }, + { + "name": "nom_0", + "role": "feature", + "semantic_type": "categorical", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 3, + "unique_ratio": 1.3e-05, + "example_values": [ + "Blue", + "Green", + "Red" + ] + } + }, + { + "name": "nom_1", + "role": "feature", + "semantic_type": "categorical", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 6, + "unique_ratio": 2.5e-05, + "example_values": [ + "Trapezoid", + "Polygon", + "Square", + "Star", + "Triangle" + ] + } + }, + { + "name": "nom_2", + "role": "feature", + "semantic_type": "categorical", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 6, + "unique_ratio": 2.5e-05, + "example_values": [ + "Cat", + "Dog", + "Lion", + "Snake", + "Axolotl" + ] + } + }, + { + "name": "nom_3", + "role": "feature", + "semantic_type": "categorical", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 6, + "unique_ratio": 2.5e-05, + "example_values": [ + "China", + "Finland", + "Canada", + "India", + "Russia" + ] + } + }, + { + "name": "nom_4", + "role": "feature", + "semantic_type": "categorical", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 4, + "unique_ratio": 1.7e-05, + "example_values": [ + "Oboe", + "Bassoon", + "Theremin", + "Piano" + ] + } + }, + { + "name": "nom_5", + "role": "feature", + "semantic_type": "categorical", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 222, + "unique_ratio": 0.000925, + "example_values": [ + "c5725677e", + "92190168b", + "dbfb714a4", + "60a44c8f4", + "e70a6270d" + ] + } + }, + { + "name": "nom_6", + "role": "feature", + "semantic_type": "categorical", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 522, + "unique_ratio": 0.002175, + "example_values": [ + "231233ca9", + "79a82b7c0", + "9a70de492", + "cad70d692", + "6d2cd10c5" + ] + } + }, + { + "name": "nom_7", + "role": "feature", + "semantic_type": "categorical", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 1219, + "unique_ratio": 0.005079, + "example_values": [ + "673d3c1c0", + "7ad3e362c", + "fcd030cc2", + "27e8d4511", + "7df1399cb" + ] + } + }, + { + "name": "nom_8", + "role": "feature", + "semantic_type": "categorical", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 2215, + "unique_ratio": 0.009229, + "example_values": [ + "4fbb167ac", + "7d97eba78", + "b886d6c1c", + "a9d35cede", + "fd0041a98" + ] + } + }, + { + "name": "nom_9", + "role": "feature", + "semantic_type": "categorical", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 11927, + "unique_ratio": 0.049696, + "example_values": [ + "1f31c5cc1", + "89539e0fa", + "8a34e794f", + "34760ea8a", + "46b472cdb" + ] + } + }, + { + "name": "ord_0", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 3, + "unique_ratio": 1.3e-05, + "example_values": [ + "1", + "2", + "3" + ] + } + }, + { + "name": "ord_1", + "role": "feature", + "semantic_type": "categorical", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 5, + "unique_ratio": 2.1e-05, + "example_values": [ + "Grandmaster", + "Contributor", + "Novice", + "Master", + "Expert" + ] + } + }, + { + "name": "ord_2", + "role": "feature", + "semantic_type": "categorical", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 6, + "unique_ratio": 2.5e-05, + "example_values": [ + "Lava Hot", + "Boiling Hot", + "Freezing", + "Hot", + "Cold" + ] + } + }, + { + "name": "ord_3", + "role": "feature", + "semantic_type": "categorical", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 15, + "unique_ratio": 6.3e-05, + "example_values": [ + "g", + "j", + "l", + "f", + "k" + ] + } + }, + { + "name": "ord_4", + "role": "feature", + "semantic_type": "categorical", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 26, + "unique_ratio": 0.000108, + "example_values": [ + "L", + "S", + "K", + "I", + "A" + ] + } + }, + { + "name": "ord_5", + "role": "feature", + "semantic_type": "categorical", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 192, + "unique_ratio": 0.0008, + "example_values": [ + "qo", + "aM", + "AP", + "fO", + "hh" + ] + } + }, + { + "name": "day", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 7, + "unique_ratio": 2.9e-05, + "example_values": [ + "1", + "2", + "7", + "4", + "3" + ] + } + }, + { + "name": "month", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 12, + "unique_ratio": 5e-05, + "example_values": [ + "12", + "4", + "8", + "2", + "9" + ] + } + }, + { + "name": "target", + "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": 8e-06, + "example_values": [ + "0", + "1" + ] + } + } + ], + "public_manifest": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/c14/arf/arf-c14-20260501_225126/public_gate/staged_input_manifest.json", + "train_csv": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/c14/arf/arf-c14-20260501_225126/staged/public/train.csv", + "val_csv": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/c14/arf/arf-c14-20260501_225126/staged/public/val.csv", + "test_csv": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/c14/arf/arf-c14-20260501_225126/staged/public/test.csv", + "features_json": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/c14/arf/arf-c14-20260501_225126/staged/public/staged_features.json", + "public_gate_report": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/c14/arf/arf-c14-20260501_225126/public_gate/public_gate_report.json" +} \ No newline at end of file diff --git a/timecost/c14/arf/arf-c14-20260501_225126/staged/public/staged_features.json b/timecost/c14/arf/arf-c14-20260501_225126/staged/public/staged_features.json new file mode 100644 index 0000000000000000000000000000000000000000..508fbe870849f119fe0f440e76f620b91489d965 --- /dev/null +++ b/timecost/c14/arf/arf-c14-20260501_225126/staged/public/staged_features.json @@ -0,0 +1,127 @@ +[ + { + "feature_name": "id", + "data_type": "continuous", + "is_target": false + }, + { + "feature_name": "bin_0", + "data_type": "binary", + "is_target": false + }, + { + "feature_name": "bin_1", + "data_type": "binary", + "is_target": false + }, + { + "feature_name": "bin_2", + "data_type": "binary", + "is_target": false + }, + { + "feature_name": "bin_3", + "data_type": "binary", + "is_target": false + }, + { + "feature_name": "bin_4", + "data_type": "binary", + "is_target": false + }, + { + "feature_name": "nom_0", + "data_type": "categorical", + "is_target": false + }, + { + "feature_name": "nom_1", + "data_type": "categorical", + "is_target": false + }, + { + "feature_name": "nom_2", + "data_type": "categorical", + "is_target": false + }, + { + "feature_name": "nom_3", + "data_type": "categorical", + "is_target": false + }, + { + "feature_name": "nom_4", + "data_type": "categorical", + "is_target": false + }, + { + "feature_name": "nom_5", + "data_type": "categorical", + "is_target": false + }, + { + "feature_name": "nom_6", + "data_type": "categorical", + "is_target": false + }, + { + "feature_name": "nom_7", + "data_type": "categorical", + "is_target": false + }, + { + "feature_name": "nom_8", + "data_type": "categorical", + "is_target": false + }, + { + "feature_name": "nom_9", + "data_type": "categorical", + "is_target": false + }, + { + "feature_name": "ord_0", + "data_type": "continuous", + "is_target": false + }, + { + "feature_name": "ord_1", + "data_type": "categorical", + "is_target": false + }, + { + "feature_name": "ord_2", + "data_type": "categorical", + "is_target": false + }, + { + "feature_name": "ord_3", + "data_type": "categorical", + "is_target": false + }, + { + "feature_name": "ord_4", + "data_type": "categorical", + "is_target": false + }, + { + "feature_name": "ord_5", + "data_type": "categorical", + "is_target": false + }, + { + "feature_name": "day", + "data_type": "continuous", + "is_target": false + }, + { + "feature_name": "month", + "data_type": "continuous", + "is_target": false + }, + { + "feature_name": "target", + "data_type": "binary", + "is_target": true + } +] \ No newline at end of file diff --git a/timecost/c14/arf/arf-c14-20260501_225126/staged/public/test.csv b/timecost/c14/arf/arf-c14-20260501_225126/staged/public/test.csv new file mode 100644 index 0000000000000000000000000000000000000000..afbef1e22ba9597cf509fb91aa271ff6908ca0a9 --- /dev/null +++ b/timecost/c14/arf/arf-c14-20260501_225126/staged/public/test.csv @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:617ecb620416375c67546e0fa5a8b9a3923d689bda904dc23824ea175d1f8597 +size 3965839 diff --git a/timecost/c14/arf/arf-c14-20260501_225126/staged/public/train.csv b/timecost/c14/arf/arf-c14-20260501_225126/staged/public/train.csv new file mode 100644 index 0000000000000000000000000000000000000000..322e9de210d736baf266fa4930517b3827d3bf63 --- /dev/null +++ b/timecost/c14/arf/arf-c14-20260501_225126/staged/public/train.csv @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:12398ccb68a2499b9c126f61b25f03c36a65f026d755e1d5ff5653e614676167 +size 31717079 diff --git a/timecost/c14/arf/arf-c14-20260501_225126/staged/public/val.csv b/timecost/c14/arf/arf-c14-20260501_225126/staged/public/val.csv new file mode 100644 index 0000000000000000000000000000000000000000..594db5d9c0a27ce284d599b8bf62685189510e61 --- /dev/null +++ b/timecost/c14/arf/arf-c14-20260501_225126/staged/public/val.csv @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:f40dbd7bbd9e2783c24d0d12ec35a85581835d45238774eb0676de44a734feda +size 3965919 diff --git a/timecost/c14/arf/arf-c14-20260501_225126/train_20260501_225128.log b/timecost/c14/arf/arf-c14-20260501_225126/train_20260501_225128.log new file mode 100644 index 0000000000000000000000000000000000000000..1ed700fffb4db3bd27f093016e39af0553ba69e2 --- /dev/null +++ b/timecost/c14/arf/arf-c14-20260501_225126/train_20260501_225128.log @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:bdb494e9811dd3873e941a70b73c79f0070b00e12cc5e392cbc533587a749759 +size 503 diff --git a/timecost/c14/bayesnet/bayesnet-c14-20260501_232608/_bayesnet_generate.py b/timecost/c14/bayesnet/bayesnet-c14-20260501_232608/_bayesnet_generate.py new file mode 100644 index 0000000000000000000000000000000000000000..4635dd4bfb9b04d136ab1ccb5ef6434f8eda3f5d --- /dev/null +++ b/timecost/c14/bayesnet/bayesnet-c14-20260501_232608/_bayesnet_generate.py @@ -0,0 +1,105 @@ + +import pickle +import subprocess +import sys +import warnings + +import numpy as np +import pandas as pd +from pgmpy.sampling import BayesianModelSampling + +warnings.filterwarnings("ignore", category=FutureWarning) + +def _ensure_cloudpickle(): + try: + import cloudpickle # noqa: F401 + except ModuleNotFoundError: + subprocess.check_call( + [sys.executable, "-m", "pip", "install", "--quiet", "cloudpickle"], + ) + +_ensure_cloudpickle() + +with open("/work/output-Benchmark-trainonly-v1/c14/bayesnet/bayesnet-c14-20260501_232608/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(240000) +sampler = BayesianModelSampling(network) +raw = sampler.forward_sample(size=num_rows, show_progress=False) +raw = raw.reset_index(drop=True) +if len(raw) > num_rows: + raw = raw.iloc[:num_rows] +_tries = 0 +while len(raw) < num_rows and _tries < 64: + _tries += 1 + nextra = min(10000, num_rows - len(raw)) + more = sampler.forward_sample(size=max(nextra, 1), show_progress=False) + more = more.reset_index(drop=True) + if len(more) == 0: + break + raw = pd.concat([raw, more], ignore_index=True) + if len(raw) > num_rows: + raw = raw.iloc[:num_rows] + +out = pd.DataFrame(index=raw.index) +rng = np.random.default_rng() + +for c in cols: + if c in inverse["categorical"]: + levels = inverse["categorical"][c] + idx = raw[c].astype(int).to_numpy() + idx = np.clip(idx, 0, max(0, len(levels) - 1)) + out[c] = [levels[i] for i in idx] + else: + edges = np.asarray(inverse["continuous"][c], dtype=float) + if edges.size < 2: + out[c] = 0.0 + else: + nbin = edges.size - 1 + res = [] + for k in raw[c].astype(int).to_numpy(): + k = int(k) + if k < 0: + k = 0 + if k >= nbin: + k = nbin - 1 + lo, hi = float(edges[k]), float(edges[k + 1]) + if hi < lo: + lo, hi = hi, lo + v = rng.uniform(lo, hi) + if c in integer_columns: + v = int(round(v)) + res.append(v) + out[c] = res + +final = pd.DataFrame(index=out.index) +for c in full_order: + if c in const_cols: + final[c] = const_cols[c] + elif c in out.columns: + final[c] = out[c] + +dtypes = bundle.get("original_dtypes") or {} +for c, dts in dtypes.items(): + if c not in final.columns: + continue + try: + if "int" in dts: + final[c] = pd.to_numeric(final[c], errors="coerce").astype("Int64") + elif "float" in dts: + final[c] = pd.to_numeric(final[c], errors="coerce") + except Exception: + pass + +if len(final) != num_rows: + final = final.iloc[:num_rows].copy() +final = final.reset_index(drop=True) +final.to_csv("/work/output-Benchmark-trainonly-v1/c14/bayesnet/bayesnet-c14-20260501_232608/bayesnet-c14-240000-20260501_232624.csv", index=False) +print(f"[BayesNet] Generated {len(final)} rows (requested {num_rows}) -> /work/output-Benchmark-trainonly-v1/c14/bayesnet/bayesnet-c14-20260501_232608/bayesnet-c14-240000-20260501_232624.csv") diff --git a/timecost/c14/bayesnet/bayesnet-c14-20260501_232608/_bayesnet_train.py b/timecost/c14/bayesnet/bayesnet-c14-20260501_232608/_bayesnet_train.py new file mode 100644 index 0000000000000000000000000000000000000000..f765ef6cd460e4a7cf4870b4bb85698d59f78119 --- /dev/null +++ b/timecost/c14/bayesnet/bayesnet-c14-20260501_232608/_bayesnet_train.py @@ -0,0 +1,133 @@ + +import json +import pickle +import subprocess +import sys +import warnings + +import numpy as np +import pandas as pd +from pgmpy.estimators import TreeSearch +from pgmpy.models import DiscreteBayesianNetwork +warnings.filterwarnings("ignore", category=FutureWarning) + +def _ensure_cloudpickle(): + try: + import cloudpickle # noqa: F401 + except ModuleNotFoundError: + subprocess.check_call( + [sys.executable, "-m", "pip", "install", "--quiet", "cloudpickle"], + ) + +_ensure_cloudpickle() + +with open("/work/output-Benchmark-trainonly-v1/c14/bayesnet/bayesnet-c14-20260501_232608/bayesnet_coltypes.json", "r", encoding="utf-8") as _f: + colmeta = json.load(_f) +integer_columns = set(colmeta.get("integer_columns") or []) + +df = pd.read_csv("/work/output-Benchmark-trainonly-v1/c14/bayesnet/bayesnet-c14-20260501_232608/staged/public/train.csv") +df = df.dropna(axis=1, how="all") +full_column_order = list(df.columns) + +const_cols = {} +for col in list(df.columns): + if df[col].nunique(dropna=True) <= 1: + const_cols[col] = df[col].iloc[0] if len(df) > 0 else None + df = df.drop(columns=[col]) + print(f"[BayesNet] Dropped zero-variance column '{col}'") + +const_path = "/work/output-Benchmark-trainonly-v1/c14/bayesnet/bayesnet-c14-20260501_232608/bayesnet_model.pkl".replace("bayesnet_model.pkl", "const_cols.json") +with open(const_path, "w", encoding="utf-8") as _f: + json.dump({k: str(v) for k, v in const_cols.items()}, _f) + +inverse = {"categorical": {}, "continuous": {}} +enc = pd.DataFrame(index=df.index) +_n_samples = len(df) +_n_plan = sum( + 1 for e in colmeta["columns"] if str(e.get("name", "")) in df.columns +) +max_bins = 10 +max_cat_levels = 256 +if _n_plan > 35 or _n_samples > 200000: + max_bins = 5 + max_cat_levels = 64 +if _n_plan > 55: + max_bins = 4 + max_cat_levels = 32 +print( + f"[BayesNet] max_bins={max_bins}, max_cat_levels={max_cat_levels} " + f"(cols_in_df={_n_plan}, rows={_n_samples})" +) + +for entry in colmeta["columns"]: + name = entry["name"] + if name not in df.columns: + continue + kind = entry["type"] + s = df[name] + if kind == "categorical": + s2 = s.astype(str).fillna("__NA__") + counts = s2.value_counts(dropna=False) + if len(counts) > max_cat_levels: + keep = set(counts.index[: max_cat_levels - 1].tolist()) + s2 = s2.map(lambda x: x if x in keep else "__OTHER__") + uniques = sorted(s2.dropna().unique(), key=lambda x: str(x)) + mapping = {str(v): i for i, v in enumerate(uniques)} + inverse["categorical"][name] = [uniques[i] for i in range(len(uniques))] + enc[name] = s2.map(lambda x, m=mapping: m.get(str(x), 0)).astype(int) + else: + s_num = pd.to_numeric(s, errors="coerce") + nu = int(s_num.nunique(dropna=True)) + q = min(max_bins, max(2, nu)) + if nu < 2: + enc[name] = np.zeros(len(s_num), dtype=int) + lo, hi = float(s_num.min()), float(s_num.max()) + inverse["continuous"][name] = [lo, hi] + else: + try: + _, bins = pd.qcut( + s_num, q=q, retbins=True, duplicates="drop" + ) + except Exception: + med = float(s_num.median()) + s2 = s_num.fillna(med) + _, bins = pd.qcut( + s2, q=min(q, 3), retbins=True, duplicates="drop" + ) + bins = np.asarray(bins, dtype=float) + lab = pd.cut( + s_num, bins=bins, labels=False, include_lowest=True + ) + enc[name] = lab.fillna(0).astype(int) + inverse["continuous"][name] = bins.tolist() + +print(f"[BayesNet] Training on {len(enc)} rows, {len(enc.columns)} cols (encoded)") + +enc_struct = enc +if len(enc) > 25000: + enc_struct = enc.sample(n=25000, random_state=0, replace=False) + print(f"[BayesNet] TreeSearch on {len(enc_struct)} rows (subsample; full n={len(enc)})") +dag = TreeSearch(enc_struct).estimate(show_progress=False) +for col in enc.columns: + if col not in dag.nodes(): + dag.add_node(col) + print(f"[BayesNet] Added isolated node to DAG: {col}") +network = DiscreteBayesianNetwork(dag) +enc_fit = enc +if len(enc) > 120000: + enc_fit = enc.sample(n=120000, random_state=1, replace=False) + print(f"[BayesNet] fit() on {len(enc_fit)} rows (full n={len(enc)})") +network.fit(enc_fit) + +bundle = { + "network": network, + "inverse": inverse, + "column_order": list(enc.columns), + "full_column_order": full_column_order, + "integer_columns": list(integer_columns), + "original_dtypes": {c: str(df[c].dtype) for c in enc.columns}, + "const_cols": const_cols, +} +with open("/work/output-Benchmark-trainonly-v1/c14/bayesnet/bayesnet-c14-20260501_232608/bayesnet_model.pkl", "wb") as _f: + pickle.dump(bundle, _f) +print(f"[BayesNet] Model saved -> /work/output-Benchmark-trainonly-v1/c14/bayesnet/bayesnet-c14-20260501_232608/bayesnet_model.pkl") diff --git a/timecost/c14/bayesnet/bayesnet-c14-20260501_232608/bayesnet-c14-240000-20260501_232624.csv b/timecost/c14/bayesnet/bayesnet-c14-20260501_232608/bayesnet-c14-240000-20260501_232624.csv new file mode 100644 index 0000000000000000000000000000000000000000..c2418d86e92bec9240c8d67b7cc1a4b8edb8b3c6 --- /dev/null +++ b/timecost/c14/bayesnet/bayesnet-c14-20260501_232608/bayesnet-c14-240000-20260501_232624.csv @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:aa4811bed2557c8413d8b6be76ea82df525c17a5536229f9fd03daef708f9088 +size 47204687 diff --git a/timecost/c14/bayesnet/bayesnet-c14-20260501_232608/bayesnet_coltypes.json b/timecost/c14/bayesnet/bayesnet-c14-20260501_232608/bayesnet_coltypes.json new file mode 100644 index 0000000000000000000000000000000000000000..85df79de4590cc7794f243fbb6597bd9e3cd2c2c --- /dev/null +++ b/timecost/c14/bayesnet/bayesnet-c14-20260501_232608/bayesnet_coltypes.json @@ -0,0 +1,105 @@ +{ + "columns": [ + { + "name": "id", + "type": "continuous" + }, + { + "name": "bin_0", + "type": "categorical" + }, + { + "name": "bin_1", + "type": "categorical" + }, + { + "name": "bin_2", + "type": "categorical" + }, + { + "name": "bin_3", + "type": "categorical" + }, + { + "name": "bin_4", + "type": "categorical" + }, + { + "name": "nom_0", + "type": "categorical" + }, + { + "name": "nom_1", + "type": "categorical" + }, + { + "name": "nom_2", + "type": "categorical" + }, + { + "name": "nom_3", + "type": "categorical" + }, + { + "name": "nom_4", + "type": "categorical" + }, + { + "name": "nom_5", + "type": "categorical" + }, + { + "name": "nom_6", + "type": "categorical" + }, + { + "name": "nom_7", + "type": "categorical" + }, + { + "name": "nom_8", + "type": "categorical" + }, + { + "name": "nom_9", + "type": "categorical" + }, + { + "name": "ord_0", + "type": "continuous" + }, + { + "name": "ord_1", + "type": "categorical" + }, + { + "name": "ord_2", + "type": "categorical" + }, + { + "name": "ord_3", + "type": "categorical" + }, + { + "name": "ord_4", + "type": "categorical" + }, + { + "name": "ord_5", + "type": "categorical" + }, + { + "name": "day", + "type": "continuous" + }, + { + "name": "month", + "type": "continuous" + }, + { + "name": "target", + "type": "categorical" + } + ], + "integer_columns": [] +} \ No newline at end of file diff --git a/timecost/c14/bayesnet/bayesnet-c14-20260501_232608/bayesnet_model.pkl b/timecost/c14/bayesnet/bayesnet-c14-20260501_232608/bayesnet_model.pkl new file mode 100644 index 0000000000000000000000000000000000000000..f026f8773d8edfa9c1b93701258d7a3b7be86960 --- /dev/null +++ b/timecost/c14/bayesnet/bayesnet-c14-20260501_232608/bayesnet_model.pkl @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:074778d5a61cf4a8caad7fd4ab35106eb271707e99573b94594d2e195a19f9e6 +size 251724 diff --git a/timecost/c14/bayesnet/bayesnet-c14-20260501_232608/const_cols.json b/timecost/c14/bayesnet/bayesnet-c14-20260501_232608/const_cols.json new file mode 100644 index 0000000000000000000000000000000000000000..9e26dfeeb6e641a33dae4961196235bdb965b21b --- /dev/null +++ b/timecost/c14/bayesnet/bayesnet-c14-20260501_232608/const_cols.json @@ -0,0 +1 @@ +{} \ No newline at end of file diff --git a/timecost/c14/bayesnet/bayesnet-c14-20260501_232608/gen_20260501_232624.log b/timecost/c14/bayesnet/bayesnet-c14-20260501_232608/gen_20260501_232624.log new file mode 100644 index 0000000000000000000000000000000000000000..405b53361cf84e82938781b594a8977dd31144b6 --- /dev/null +++ b/timecost/c14/bayesnet/bayesnet-c14-20260501_232608/gen_20260501_232624.log @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:0ef23e09cfb65a3edd951d40d3fa0a020d465424c9dde13228e08bdca140552f +size 3671 diff --git a/timecost/c14/bayesnet/bayesnet-c14-20260501_232608/input_snapshot.json b/timecost/c14/bayesnet/bayesnet-c14-20260501_232608/input_snapshot.json new file mode 100644 index 0000000000000000000000000000000000000000..c85b80e36320546050eb77482afc4a17a5651efb --- /dev/null +++ b/timecost/c14/bayesnet/bayesnet-c14-20260501_232608/input_snapshot.json @@ -0,0 +1,36 @@ +{ + "dataset_id": "c14", + "model": "bayesnet", + "inputs": { + "train_csv": { + "path": "/data/jialinzhang/SynthesizePipeline-server/DatasetNew/c14/c14-train.csv", + "exists": true, + "size": 31957080, + "sha256": "4a11abde6a7fae9f8bb1a1d7e31035b9dd61587d2721749a52d78d65441fba5e" + }, + "val_csv": { + "path": "/data/jialinzhang/SynthesizePipeline-server/DatasetNew/c14/c14-val.csv", + "exists": true, + "size": 3995920, + "sha256": "b04d723eeb59d339a356302660463c129141b4213fefbf472ef48f8a4daa50c9" + }, + "test_csv": { + "path": "/data/jialinzhang/SynthesizePipeline-server/DatasetNew/c14/c14-test.csv", + "exists": true, + "size": 3995840, + "sha256": "4780b90e46f6b440983cc9315cad8bca0e86bd26d8877ffae7111258fba0a132" + }, + "profile_json": { + "path": "/data/jialinzhang/SynthesizePipeline-server/DatasetNew/artifacts/data_core/tabular/c14/c14-dataset_profile.json", + "exists": true, + "size": 9505, + "sha256": "577cc5830dcb336243555d3d41c06e2e7c0a63df2a9caccb7a0411b9332cde15" + }, + "contract_json": { + "path": "/data/jialinzhang/SynthesizePipeline-server/DatasetNew/artifacts/data_core/tabular/c14/c14-dataset_contract_v1.json", + "exists": true, + "size": 11901, + "sha256": "955197dff3346d55aaa999adf98d64c375a7e4ca9bc4bcfe626499c9cfea9a41" + } + } +} \ No newline at end of file diff --git a/timecost/c14/bayesnet/bayesnet-c14-20260501_232608/public_gate/normalized_schema_snapshot.json b/timecost/c14/bayesnet/bayesnet-c14-20260501_232608/public_gate/normalized_schema_snapshot.json new file mode 100644 index 0000000000000000000000000000000000000000..c43047a97cac9542e79dfa127e651be7146aa2a4 --- /dev/null +++ b/timecost/c14/bayesnet/bayesnet-c14-20260501_232608/public_gate/normalized_schema_snapshot.json @@ -0,0 +1,509 @@ +{ + "dataset_id": "c14", + "target_column": "target", + "task_type": "classification", + "columns": [ + { + "name": "id", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 20000, + "unique_ratio": 0.083333, + "example_values": [ + "182547", + "28342", + "172611", + "81876", + "110780" + ] + } + }, + { + "name": "bin_0", + "role": "feature", + "semantic_type": "boolean", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 2, + "unique_ratio": 8e-06, + "example_values": [ + "0", + "1" + ] + } + }, + { + "name": "bin_1", + "role": "feature", + "semantic_type": "boolean", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 2, + "unique_ratio": 8e-06, + "example_values": [ + "0", + "1" + ] + } + }, + { + "name": "bin_2", + "role": "feature", + "semantic_type": "boolean", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 2, + "unique_ratio": 8e-06, + "example_values": [ + "0", + "1" + ] + } + }, + { + "name": "bin_3", + "role": "feature", + "semantic_type": "boolean", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 2, + "unique_ratio": 8e-06, + "example_values": [ + "F", + "T" + ] + } + }, + { + "name": "bin_4", + "role": "feature", + "semantic_type": "boolean", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 2, + "unique_ratio": 8e-06, + "example_values": [ + "Y", + "N" + ] + } + }, + { + "name": "nom_0", + "role": "feature", + "semantic_type": "categorical", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 3, + "unique_ratio": 1.3e-05, + "example_values": [ + "Blue", + "Green", + "Red" + ] + } + }, + { + "name": "nom_1", + "role": "feature", + "semantic_type": "categorical", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 6, + "unique_ratio": 2.5e-05, + "example_values": [ + "Trapezoid", + "Polygon", + "Square", + "Star", + "Triangle" + ] + } + }, + { + "name": "nom_2", + "role": "feature", + "semantic_type": "categorical", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 6, + "unique_ratio": 2.5e-05, + "example_values": [ + "Cat", + "Dog", + "Lion", + "Snake", + "Axolotl" + ] + } + }, + { + "name": "nom_3", + "role": "feature", + "semantic_type": "categorical", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 6, + "unique_ratio": 2.5e-05, + "example_values": [ + "China", + "Finland", + "Canada", + "India", + "Russia" + ] + } + }, + { + "name": "nom_4", + "role": "feature", + "semantic_type": "categorical", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 4, + "unique_ratio": 1.7e-05, + "example_values": [ + "Oboe", + "Bassoon", + "Theremin", + "Piano" + ] + } + }, + { + "name": "nom_5", + "role": "feature", + "semantic_type": "categorical", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 222, + "unique_ratio": 0.000925, + "example_values": [ + "c5725677e", + "92190168b", + "dbfb714a4", + "60a44c8f4", + "e70a6270d" + ] + } + }, + { + "name": "nom_6", + "role": "feature", + "semantic_type": "categorical", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 522, + "unique_ratio": 0.002175, + "example_values": [ + "231233ca9", + "79a82b7c0", + "9a70de492", + "cad70d692", + "6d2cd10c5" + ] + } + }, + { + "name": "nom_7", + "role": "feature", + "semantic_type": "categorical", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 1219, + "unique_ratio": 0.005079, + "example_values": [ + "673d3c1c0", + "7ad3e362c", + "fcd030cc2", + "27e8d4511", + "7df1399cb" + ] + } + }, + { + "name": "nom_8", + "role": "feature", + "semantic_type": "categorical", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 2215, + "unique_ratio": 0.009229, + "example_values": [ + "4fbb167ac", + "7d97eba78", + "b886d6c1c", + "a9d35cede", + "fd0041a98" + ] + } + }, + { + "name": "nom_9", + "role": "feature", + "semantic_type": "categorical", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 11927, + "unique_ratio": 0.049696, + "example_values": [ + "1f31c5cc1", + "89539e0fa", + "8a34e794f", + "34760ea8a", + "46b472cdb" + ] + } + }, + { + "name": "ord_0", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 3, + "unique_ratio": 1.3e-05, + "example_values": [ + "1", + "2", + "3" + ] + } + }, + { + "name": "ord_1", + "role": "feature", + "semantic_type": "categorical", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 5, + "unique_ratio": 2.1e-05, + "example_values": [ + "Grandmaster", + "Contributor", + "Novice", + "Master", + "Expert" + ] + } + }, + { + "name": "ord_2", + "role": "feature", + "semantic_type": "categorical", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 6, + "unique_ratio": 2.5e-05, + "example_values": [ + "Lava Hot", + "Boiling Hot", + "Freezing", + "Hot", + "Cold" + ] + } + }, + { + "name": "ord_3", + "role": "feature", + "semantic_type": "categorical", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 15, + "unique_ratio": 6.3e-05, + "example_values": [ + "g", + "j", + "l", + "f", + "k" + ] + } + }, + { + "name": "ord_4", + "role": "feature", + "semantic_type": "categorical", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 26, + "unique_ratio": 0.000108, + "example_values": [ + "L", + "S", + "K", + "I", + "A" + ] + } + }, + { + "name": "ord_5", + "role": "feature", + "semantic_type": "categorical", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 192, + "unique_ratio": 0.0008, + "example_values": [ + "qo", + "aM", + "AP", + "fO", + "hh" + ] + } + }, + { + "name": "day", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 7, + "unique_ratio": 2.9e-05, + "example_values": [ + "1", + "2", + "7", + "4", + "3" + ] + } + }, + { + "name": "month", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 12, + "unique_ratio": 5e-05, + "example_values": [ + "12", + "4", + "8", + "2", + "9" + ] + } + }, + { + "name": "target", + "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": 8e-06, + "example_values": [ + "0", + "1" + ] + } + } + ] +} \ No newline at end of file diff --git a/timecost/c14/bayesnet/bayesnet-c14-20260501_232608/public_gate/public_gate_report.json b/timecost/c14/bayesnet/bayesnet-c14-20260501_232608/public_gate/public_gate_report.json new file mode 100644 index 0000000000000000000000000000000000000000..9374818599b8101d02e793ea785975d77363e3fd --- /dev/null +++ b/timecost/c14/bayesnet/bayesnet-c14-20260501_232608/public_gate/public_gate_report.json @@ -0,0 +1,37 @@ +{ + "dataset_id": "c14", + "status": "pass", + "checks": [ + { + "check_id": "PG001_csv_parse_ok", + "status": "pass" + }, + { + "check_id": "PG002_split_header_consistent", + "status": "pass" + }, + { + "check_id": "PG003_profile_header_match", + "status": "pass" + }, + { + "check_id": "PG004_missing_token_normalized", + "status": "pass" + }, + { + "check_id": "PG005_semantic_type_validated", + "status": "pass" + }, + { + "check_id": "PG006_target_defined_and_valid", + "status": "pass" + } + ], + "target_column": "target", + "task_type": "classification", + "input_splits": { + "train": "/data/jialinzhang/SynthesizePipeline-server/DatasetNew/c14/c14-train.csv", + "val": "/data/jialinzhang/SynthesizePipeline-server/DatasetNew/c14/c14-val.csv", + "test": "/data/jialinzhang/SynthesizePipeline-server/DatasetNew/c14/c14-test.csv" + } +} \ No newline at end of file diff --git a/timecost/c14/bayesnet/bayesnet-c14-20260501_232608/public_gate/staged_input_manifest.json b/timecost/c14/bayesnet/bayesnet-c14-20260501_232608/public_gate/staged_input_manifest.json new file mode 100644 index 0000000000000000000000000000000000000000..56cbe1d53aa228f47483366a10985bcd50c79be5 --- /dev/null +++ b/timecost/c14/bayesnet/bayesnet-c14-20260501_232608/public_gate/staged_input_manifest.json @@ -0,0 +1,514 @@ +{ + "dataset_id": "c14", + "target_column": "target", + "task_type": "classification", + "train_csv": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/c14/bayesnet/bayesnet-c14-20260501_232608/staged/public/train.csv", + "val_csv": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/c14/bayesnet/bayesnet-c14-20260501_232608/staged/public/val.csv", + "test_csv": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/c14/bayesnet/bayesnet-c14-20260501_232608/staged/public/test.csv", + "features_json": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/c14/bayesnet/bayesnet-c14-20260501_232608/staged/public/staged_features.json", + "public_gate_report": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/c14/bayesnet/bayesnet-c14-20260501_232608/public_gate/public_gate_report.json", + "column_schema": [ + { + "name": "id", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 20000, + "unique_ratio": 0.083333, + "example_values": [ + "182547", + "28342", + "172611", + "81876", + "110780" + ] + } + }, + { + "name": "bin_0", + "role": "feature", + "semantic_type": "boolean", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 2, + "unique_ratio": 8e-06, + "example_values": [ + "0", + "1" + ] + } + }, + { + "name": "bin_1", + "role": "feature", + "semantic_type": "boolean", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 2, + "unique_ratio": 8e-06, + "example_values": [ + "0", + "1" + ] + } + }, + { + "name": "bin_2", + "role": "feature", + "semantic_type": "boolean", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 2, + "unique_ratio": 8e-06, + "example_values": [ + "0", + "1" + ] + } + }, + { + "name": "bin_3", + "role": "feature", + "semantic_type": "boolean", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 2, + "unique_ratio": 8e-06, + "example_values": [ + "F", + "T" + ] + } + }, + { + "name": "bin_4", + "role": "feature", + "semantic_type": "boolean", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 2, + "unique_ratio": 8e-06, + "example_values": [ + "Y", + "N" + ] + } + }, + { + "name": "nom_0", + "role": "feature", + "semantic_type": "categorical", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 3, + "unique_ratio": 1.3e-05, + "example_values": [ + "Blue", + "Green", + "Red" + ] + } + }, + { + "name": "nom_1", + "role": "feature", + "semantic_type": "categorical", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 6, + "unique_ratio": 2.5e-05, + "example_values": [ + "Trapezoid", + "Polygon", + "Square", + "Star", + "Triangle" + ] + } + }, + { + "name": "nom_2", + "role": "feature", + "semantic_type": "categorical", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 6, + "unique_ratio": 2.5e-05, + "example_values": [ + "Cat", + "Dog", + "Lion", + "Snake", + "Axolotl" + ] + } + }, + { + "name": "nom_3", + "role": "feature", + "semantic_type": "categorical", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 6, + "unique_ratio": 2.5e-05, + "example_values": [ + "China", + "Finland", + "Canada", + "India", + "Russia" + ] + } + }, + { + "name": "nom_4", + "role": "feature", + "semantic_type": "categorical", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 4, + "unique_ratio": 1.7e-05, + "example_values": [ + "Oboe", + "Bassoon", + "Theremin", + "Piano" + ] + } + }, + { + "name": "nom_5", + "role": "feature", + "semantic_type": "categorical", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 222, + "unique_ratio": 0.000925, + "example_values": [ + "c5725677e", + "92190168b", + "dbfb714a4", + "60a44c8f4", + "e70a6270d" + ] + } + }, + { + "name": "nom_6", + "role": "feature", + "semantic_type": "categorical", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 522, + "unique_ratio": 0.002175, + "example_values": [ + "231233ca9", + "79a82b7c0", + "9a70de492", + "cad70d692", + "6d2cd10c5" + ] + } + }, + { + "name": "nom_7", + "role": "feature", + "semantic_type": "categorical", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 1219, + "unique_ratio": 0.005079, + "example_values": [ + "673d3c1c0", + "7ad3e362c", + "fcd030cc2", + "27e8d4511", + "7df1399cb" + ] + } + }, + { + "name": "nom_8", + "role": "feature", + "semantic_type": "categorical", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 2215, + "unique_ratio": 0.009229, + "example_values": [ + "4fbb167ac", + "7d97eba78", + "b886d6c1c", + "a9d35cede", + "fd0041a98" + ] + } + }, + { + "name": "nom_9", + "role": "feature", + "semantic_type": "categorical", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 11927, + "unique_ratio": 0.049696, + "example_values": [ + "1f31c5cc1", + "89539e0fa", + "8a34e794f", + "34760ea8a", + "46b472cdb" + ] + } + }, + { + "name": "ord_0", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 3, + "unique_ratio": 1.3e-05, + "example_values": [ + "1", + "2", + "3" + ] + } + }, + { + "name": "ord_1", + "role": "feature", + "semantic_type": "categorical", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 5, + "unique_ratio": 2.1e-05, + "example_values": [ + "Grandmaster", + "Contributor", + "Novice", + "Master", + "Expert" + ] + } + }, + { + "name": "ord_2", + "role": "feature", + "semantic_type": "categorical", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 6, + "unique_ratio": 2.5e-05, + "example_values": [ + "Lava Hot", + "Boiling Hot", + "Freezing", + "Hot", + "Cold" + ] + } + }, + { + "name": "ord_3", + "role": "feature", + "semantic_type": "categorical", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 15, + "unique_ratio": 6.3e-05, + "example_values": [ + "g", + "j", + "l", + "f", + "k" + ] + } + }, + { + "name": "ord_4", + "role": "feature", + "semantic_type": "categorical", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 26, + "unique_ratio": 0.000108, + "example_values": [ + "L", + "S", + "K", + "I", + "A" + ] + } + }, + { + "name": "ord_5", + "role": "feature", + "semantic_type": "categorical", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 192, + "unique_ratio": 0.0008, + "example_values": [ + "qo", + "aM", + "AP", + "fO", + "hh" + ] + } + }, + { + "name": "day", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 7, + "unique_ratio": 2.9e-05, + "example_values": [ + "1", + "2", + "7", + "4", + "3" + ] + } + }, + { + "name": "month", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 12, + "unique_ratio": 5e-05, + "example_values": [ + "12", + "4", + "8", + "2", + "9" + ] + } + }, + { + "name": "target", + "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": 8e-06, + "example_values": [ + "0", + "1" + ] + } + } + ] +} \ No newline at end of file diff --git a/timecost/c14/bayesnet/bayesnet-c14-20260501_232608/runtime_result.json b/timecost/c14/bayesnet/bayesnet-c14-20260501_232608/runtime_result.json new file mode 100644 index 0000000000000000000000000000000000000000..eb5dcf4c0d813688add022d30500b6a4769fb81b --- /dev/null +++ b/timecost/c14/bayesnet/bayesnet-c14-20260501_232608/runtime_result.json @@ -0,0 +1,27 @@ +{ + "dataset_id": "c14", + "model": "bayesnet", + "run_id": "bayesnet-c14-20260501_232608", + "public_gate_status": "pass", + "adapter_ready_status": "pass", + "train_status": "success", + "generate_status": "success", + "reason_code": null, + "reason_detail": null, + "artifacts": { + "synthetic_csv": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/c14/bayesnet/bayesnet-c14-20260501_232608/bayesnet-c14-240000-20260501_232624.csv", + "model_path": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/c14/bayesnet/bayesnet-c14-20260501_232608/bayesnet_model.pkl" + }, + "timings": { + "train": { + "started_at": "2026-05-01T23:26:11", + "ended_at": "2026-05-01T23:26:24", + "duration_sec": 13.38 + }, + "generate": { + "started_at": "2026-05-01T23:26:24", + "ended_at": "2026-05-01T23:26:36", + "duration_sec": 12.081 + } + } +} \ No newline at end of file diff --git a/timecost/c14/bayesnet/bayesnet-c14-20260501_232608/staged/bayesnet/adapter_report.json b/timecost/c14/bayesnet/bayesnet-c14-20260501_232608/staged/bayesnet/adapter_report.json new file mode 100644 index 0000000000000000000000000000000000000000..061878d5d7ee7d01d81fef8ea5090266502a70d7 --- /dev/null +++ b/timecost/c14/bayesnet/bayesnet-c14-20260501_232608/staged/bayesnet/adapter_report.json @@ -0,0 +1,7 @@ +{ + "adapter_ready_status": "pass", + "adapter_fail_reason_code": null, + "adapter_fail_detail": null, + "adapter_transforms_applied": [], + "model_input_manifest": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/c14/bayesnet/bayesnet-c14-20260501_232608/staged/bayesnet/model_input_manifest.json" +} \ No newline at end of file diff --git a/timecost/c14/bayesnet/bayesnet-c14-20260501_232608/staged/bayesnet/adapter_transforms_applied.json b/timecost/c14/bayesnet/bayesnet-c14-20260501_232608/staged/bayesnet/adapter_transforms_applied.json new file mode 100644 index 0000000000000000000000000000000000000000..0637a088a01e8ddab3bf3fa98dbe804cbde1a0dc --- /dev/null +++ b/timecost/c14/bayesnet/bayesnet-c14-20260501_232608/staged/bayesnet/adapter_transforms_applied.json @@ -0,0 +1 @@ +[] \ No newline at end of file diff --git a/timecost/c14/bayesnet/bayesnet-c14-20260501_232608/staged/bayesnet/model_input_manifest.json b/timecost/c14/bayesnet/bayesnet-c14-20260501_232608/staged/bayesnet/model_input_manifest.json new file mode 100644 index 0000000000000000000000000000000000000000..61de7794b815120f164a5a0237ee297642f59e86 --- /dev/null +++ b/timecost/c14/bayesnet/bayesnet-c14-20260501_232608/staged/bayesnet/model_input_manifest.json @@ -0,0 +1,516 @@ +{ + "dataset_id": "c14", + "model": "bayesnet", + "target_column": "target", + "task_type": "classification", + "column_schema": [ + { + "name": "id", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 20000, + "unique_ratio": 0.083333, + "example_values": [ + "182547", + "28342", + "172611", + "81876", + "110780" + ] + } + }, + { + "name": "bin_0", + "role": "feature", + "semantic_type": "boolean", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 2, + "unique_ratio": 8e-06, + "example_values": [ + "0", + "1" + ] + } + }, + { + "name": "bin_1", + "role": "feature", + "semantic_type": "boolean", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 2, + "unique_ratio": 8e-06, + "example_values": [ + "0", + "1" + ] + } + }, + { + "name": "bin_2", + "role": "feature", + "semantic_type": "boolean", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 2, + "unique_ratio": 8e-06, + "example_values": [ + "0", + "1" + ] + } + }, + { + "name": "bin_3", + "role": "feature", + "semantic_type": "boolean", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 2, + "unique_ratio": 8e-06, + "example_values": [ + "F", + "T" + ] + } + }, + { + "name": "bin_4", + "role": "feature", + "semantic_type": "boolean", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 2, + "unique_ratio": 8e-06, + "example_values": [ + "Y", + "N" + ] + } + }, + { + "name": "nom_0", + "role": "feature", + "semantic_type": "categorical", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 3, + "unique_ratio": 1.3e-05, + "example_values": [ + "Blue", + "Green", + "Red" + ] + } + }, + { + "name": "nom_1", + "role": "feature", + "semantic_type": "categorical", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 6, + "unique_ratio": 2.5e-05, + "example_values": [ + "Trapezoid", + "Polygon", + "Square", + "Star", + "Triangle" + ] + } + }, + { + "name": "nom_2", + "role": "feature", + "semantic_type": "categorical", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 6, + "unique_ratio": 2.5e-05, + "example_values": [ + "Cat", + "Dog", + "Lion", + "Snake", + "Axolotl" + ] + } + }, + { + "name": "nom_3", + "role": "feature", + "semantic_type": "categorical", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 6, + "unique_ratio": 2.5e-05, + "example_values": [ + "China", + "Finland", + "Canada", + "India", + "Russia" + ] + } + }, + { + "name": "nom_4", + "role": "feature", + "semantic_type": "categorical", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 4, + "unique_ratio": 1.7e-05, + "example_values": [ + "Oboe", + "Bassoon", + "Theremin", + "Piano" + ] + } + }, + { + "name": "nom_5", + "role": "feature", + "semantic_type": "categorical", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 222, + "unique_ratio": 0.000925, + "example_values": [ + "c5725677e", + "92190168b", + "dbfb714a4", + "60a44c8f4", + "e70a6270d" + ] + } + }, + { + "name": "nom_6", + "role": "feature", + "semantic_type": "categorical", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 522, + "unique_ratio": 0.002175, + "example_values": [ + "231233ca9", + "79a82b7c0", + "9a70de492", + "cad70d692", + "6d2cd10c5" + ] + } + }, + { + "name": "nom_7", + "role": "feature", + "semantic_type": "categorical", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 1219, + "unique_ratio": 0.005079, + "example_values": [ + "673d3c1c0", + "7ad3e362c", + "fcd030cc2", + "27e8d4511", + "7df1399cb" + ] + } + }, + { + "name": "nom_8", + "role": "feature", + "semantic_type": "categorical", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 2215, + "unique_ratio": 0.009229, + "example_values": [ + "4fbb167ac", + "7d97eba78", + "b886d6c1c", + "a9d35cede", + "fd0041a98" + ] + } + }, + { + "name": "nom_9", + "role": "feature", + "semantic_type": "categorical", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 11927, + "unique_ratio": 0.049696, + "example_values": [ + "1f31c5cc1", + "89539e0fa", + "8a34e794f", + "34760ea8a", + "46b472cdb" + ] + } + }, + { + "name": "ord_0", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 3, + "unique_ratio": 1.3e-05, + "example_values": [ + "1", + "2", + "3" + ] + } + }, + { + "name": "ord_1", + "role": "feature", + "semantic_type": "categorical", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 5, + "unique_ratio": 2.1e-05, + "example_values": [ + "Grandmaster", + "Contributor", + "Novice", + "Master", + "Expert" + ] + } + }, + { + "name": "ord_2", + "role": "feature", + "semantic_type": "categorical", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 6, + "unique_ratio": 2.5e-05, + "example_values": [ + "Lava Hot", + "Boiling Hot", + "Freezing", + "Hot", + "Cold" + ] + } + }, + { + "name": "ord_3", + "role": "feature", + "semantic_type": "categorical", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 15, + "unique_ratio": 6.3e-05, + "example_values": [ + "g", + "j", + "l", + "f", + "k" + ] + } + }, + { + "name": "ord_4", + "role": "feature", + "semantic_type": "categorical", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 26, + "unique_ratio": 0.000108, + "example_values": [ + "L", + "S", + "K", + "I", + "A" + ] + } + }, + { + "name": "ord_5", + "role": "feature", + "semantic_type": "categorical", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 192, + "unique_ratio": 0.0008, + "example_values": [ + "qo", + "aM", + "AP", + "fO", + "hh" + ] + } + }, + { + "name": "day", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 7, + "unique_ratio": 2.9e-05, + "example_values": [ + "1", + "2", + "7", + "4", + "3" + ] + } + }, + { + "name": "month", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 12, + "unique_ratio": 5e-05, + "example_values": [ + "12", + "4", + "8", + "2", + "9" + ] + } + }, + { + "name": "target", + "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": 8e-06, + "example_values": [ + "0", + "1" + ] + } + } + ], + "public_manifest": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/c14/bayesnet/bayesnet-c14-20260501_232608/public_gate/staged_input_manifest.json", + "train_csv": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/c14/bayesnet/bayesnet-c14-20260501_232608/staged/public/train.csv", + "val_csv": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/c14/bayesnet/bayesnet-c14-20260501_232608/staged/public/val.csv", + "test_csv": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/c14/bayesnet/bayesnet-c14-20260501_232608/staged/public/test.csv", + "features_json": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/c14/bayesnet/bayesnet-c14-20260501_232608/staged/public/staged_features.json", + "public_gate_report": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/c14/bayesnet/bayesnet-c14-20260501_232608/public_gate/public_gate_report.json" +} \ No newline at end of file diff --git a/timecost/c14/bayesnet/bayesnet-c14-20260501_232608/staged/public/staged_features.json b/timecost/c14/bayesnet/bayesnet-c14-20260501_232608/staged/public/staged_features.json new file mode 100644 index 0000000000000000000000000000000000000000..508fbe870849f119fe0f440e76f620b91489d965 --- /dev/null +++ b/timecost/c14/bayesnet/bayesnet-c14-20260501_232608/staged/public/staged_features.json @@ -0,0 +1,127 @@ +[ + { + "feature_name": "id", + "data_type": "continuous", + "is_target": false + }, + { + "feature_name": "bin_0", + "data_type": "binary", + "is_target": false + }, + { + "feature_name": "bin_1", + "data_type": "binary", + "is_target": false + }, + { + "feature_name": "bin_2", + "data_type": "binary", + "is_target": false + }, + { + "feature_name": "bin_3", + "data_type": "binary", + "is_target": false + }, + { + "feature_name": "bin_4", + "data_type": "binary", + "is_target": false + }, + { + "feature_name": "nom_0", + "data_type": "categorical", + "is_target": false + }, + { + "feature_name": "nom_1", + "data_type": "categorical", + "is_target": false + }, + { + "feature_name": "nom_2", + "data_type": "categorical", + "is_target": false + }, + { + "feature_name": "nom_3", + "data_type": "categorical", + "is_target": false + }, + { + "feature_name": "nom_4", + "data_type": "categorical", + "is_target": false + }, + { + "feature_name": "nom_5", + "data_type": "categorical", + "is_target": false + }, + { + "feature_name": "nom_6", + "data_type": "categorical", + "is_target": false + }, + { + "feature_name": "nom_7", + "data_type": "categorical", + "is_target": false + }, + { + "feature_name": "nom_8", + "data_type": "categorical", + "is_target": false + }, + { + "feature_name": "nom_9", + "data_type": "categorical", + "is_target": false + }, + { + "feature_name": "ord_0", + "data_type": "continuous", + "is_target": false + }, + { + "feature_name": "ord_1", + "data_type": "categorical", + "is_target": false + }, + { + "feature_name": "ord_2", + "data_type": "categorical", + "is_target": false + }, + { + "feature_name": "ord_3", + "data_type": "categorical", + "is_target": false + }, + { + "feature_name": "ord_4", + "data_type": "categorical", + "is_target": false + }, + { + "feature_name": "ord_5", + "data_type": "categorical", + "is_target": false + }, + { + "feature_name": "day", + "data_type": "continuous", + "is_target": false + }, + { + "feature_name": "month", + "data_type": "continuous", + "is_target": false + }, + { + "feature_name": "target", + "data_type": "binary", + "is_target": true + } +] \ No newline at end of file diff --git a/timecost/c14/bayesnet/bayesnet-c14-20260501_232608/staged/public/test.csv b/timecost/c14/bayesnet/bayesnet-c14-20260501_232608/staged/public/test.csv new file mode 100644 index 0000000000000000000000000000000000000000..afbef1e22ba9597cf509fb91aa271ff6908ca0a9 --- /dev/null +++ b/timecost/c14/bayesnet/bayesnet-c14-20260501_232608/staged/public/test.csv @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:617ecb620416375c67546e0fa5a8b9a3923d689bda904dc23824ea175d1f8597 +size 3965839 diff --git a/timecost/c14/bayesnet/bayesnet-c14-20260501_232608/staged/public/train.csv b/timecost/c14/bayesnet/bayesnet-c14-20260501_232608/staged/public/train.csv new file mode 100644 index 0000000000000000000000000000000000000000..322e9de210d736baf266fa4930517b3827d3bf63 --- /dev/null +++ b/timecost/c14/bayesnet/bayesnet-c14-20260501_232608/staged/public/train.csv @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:12398ccb68a2499b9c126f61b25f03c36a65f026d755e1d5ff5653e614676167 +size 31717079 diff --git a/timecost/c14/bayesnet/bayesnet-c14-20260501_232608/staged/public/val.csv b/timecost/c14/bayesnet/bayesnet-c14-20260501_232608/staged/public/val.csv new file mode 100644 index 0000000000000000000000000000000000000000..594db5d9c0a27ce284d599b8bf62685189510e61 --- /dev/null +++ b/timecost/c14/bayesnet/bayesnet-c14-20260501_232608/staged/public/val.csv @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:f40dbd7bbd9e2783c24d0d12ec35a85581835d45238774eb0676de44a734feda +size 3965919 diff --git a/timecost/c14/bayesnet/bayesnet-c14-20260501_232608/train_20260501_232611.log b/timecost/c14/bayesnet/bayesnet-c14-20260501_232608/train_20260501_232611.log new file mode 100644 index 0000000000000000000000000000000000000000..c0fc19cfba5d67c4efbbf9a270c88e824e6da7ef --- /dev/null +++ b/timecost/c14/bayesnet/bayesnet-c14-20260501_232608/train_20260501_232611.log @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:2ae9f8db5a15c6148385194ff5ab45561342d3e84aa3c61b0da51c2edd424e4c +size 3856 diff --git a/timecost/c14/ctgan/ctgan-c14-20260505_185844/_ctgan_generate.py b/timecost/c14/ctgan/ctgan-c14-20260505_185844/_ctgan_generate.py new file mode 100644 index 0000000000000000000000000000000000000000..93e801f00dbc0095ccbd51b0cfc987cbd34acf38 --- /dev/null +++ b/timecost/c14/ctgan/ctgan-c14-20260505_185844/_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-Benchmark-trainonly-v1/c14/ctgan/ctgan-c14-20260505_185844/models_5epochs/ctgan_5epochs.pt") +total = 240000 +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-Benchmark-trainonly-v1/c14/ctgan/ctgan-c14-20260505_185844/ctgan-c14-240000-20260505_185951.csv", index=False) +print("[CTGAN] Generated", total, "rows in", len(parts), "chunks ->", "/work/output-Benchmark-trainonly-v1/c14/ctgan/ctgan-c14-20260505_185844/ctgan-c14-240000-20260505_185951.csv") \ No newline at end of file diff --git a/timecost/c14/ctgan/ctgan-c14-20260505_185844/_ctgan_train.py b/timecost/c14/ctgan/ctgan-c14-20260505_185844/_ctgan_train.py new file mode 100644 index 0000000000000000000000000000000000000000..807d6cdeedf103239f3bceac24a8bdb4ff8295bb --- /dev/null +++ b/timecost/c14/ctgan/ctgan-c14-20260505_185844/_ctgan_train.py @@ -0,0 +1,17 @@ +import pandas as pd +from ctgan.synthesizers.ctgan import CTGAN + +data = pd.read_csv("/work/output-Benchmark-trainonly-v1/c14/ctgan/ctgan-c14-20260505_185844/ctgan_train_prepared.csv") +discrete_columns = ['bin_0', 'bin_1', 'bin_2', 'bin_3', 'bin_4', 'nom_0', 'nom_1', 'nom_2', 'nom_3', 'nom_4', 'nom_5', 'nom_6', 'nom_7', 'nom_8', 'nom_9', 'ord_1', 'ord_2', 'ord_3', 'ord_4', 'ord_5', 'target'] +model = CTGAN( + embedding_dim=4, + generator_dim=(8, 8), + discriminator_dim=(8, 8), + batch_size=2, + pac=1, + epochs=5, + verbose=True, +) +model.fit(data, discrete_columns) +model.save("/work/output-Benchmark-trainonly-v1/c14/ctgan/ctgan-c14-20260505_185844/models_5epochs/ctgan_5epochs.pt") +print("[CTGAN] Saved model ->", "/work/output-Benchmark-trainonly-v1/c14/ctgan/ctgan-c14-20260505_185844/models_5epochs/ctgan_5epochs.pt") \ No newline at end of file diff --git a/timecost/c14/ctgan/ctgan-c14-20260505_185844/ctgan-c14-240000-20260505_185951.csv b/timecost/c14/ctgan/ctgan-c14-20260505_185844/ctgan-c14-240000-20260505_185951.csv new file mode 100644 index 0000000000000000000000000000000000000000..e792ddbc7b811594eb33e2dff9ce3956bb5ea9f0 --- /dev/null +++ b/timecost/c14/ctgan/ctgan-c14-20260505_185844/ctgan-c14-240000-20260505_185951.csv @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:14aec343119ca1c6007276405e7d28344182b68db2e5f81bfd346af9539ddc11 +size 31648248 diff --git a/timecost/c14/ctgan/ctgan-c14-20260505_185844/ctgan_metadata.json b/timecost/c14/ctgan/ctgan-c14-20260505_185844/ctgan_metadata.json new file mode 100644 index 0000000000000000000000000000000000000000..43d1d6d3e611ce6b232979c04622470688342e90 --- /dev/null +++ b/timecost/c14/ctgan/ctgan-c14-20260505_185844/ctgan_metadata.json @@ -0,0 +1,104 @@ +{ + "columns": [ + { + "name": "id", + "type": "continuous" + }, + { + "name": "bin_0", + "type": "categorical" + }, + { + "name": "bin_1", + "type": "categorical" + }, + { + "name": "bin_2", + "type": "categorical" + }, + { + "name": "bin_3", + "type": "categorical" + }, + { + "name": "bin_4", + "type": "categorical" + }, + { + "name": "nom_0", + "type": "categorical" + }, + { + "name": "nom_1", + "type": "categorical" + }, + { + "name": "nom_2", + "type": "categorical" + }, + { + "name": "nom_3", + "type": "categorical" + }, + { + "name": "nom_4", + "type": "categorical" + }, + { + "name": "nom_5", + "type": "categorical" + }, + { + "name": "nom_6", + "type": "categorical" + }, + { + "name": "nom_7", + "type": "categorical" + }, + { + "name": "nom_8", + "type": "categorical" + }, + { + "name": "nom_9", + "type": "categorical" + }, + { + "name": "ord_0", + "type": "continuous" + }, + { + "name": "ord_1", + "type": "categorical" + }, + { + "name": "ord_2", + "type": "categorical" + }, + { + "name": "ord_3", + "type": "categorical" + }, + { + "name": "ord_4", + "type": "categorical" + }, + { + "name": "ord_5", + "type": "categorical" + }, + { + "name": "day", + "type": "continuous" + }, + { + "name": "month", + "type": "continuous" + }, + { + "name": "target", + "type": "categorical" + } + ] +} \ No newline at end of file diff --git a/timecost/c14/ctgan/ctgan-c14-20260505_185844/ctgan_train_prepared.csv b/timecost/c14/ctgan/ctgan-c14-20260505_185844/ctgan_train_prepared.csv new file mode 100644 index 0000000000000000000000000000000000000000..c1447024fac051a678f65b4e41d8bcf861c25462 --- /dev/null +++ b/timecost/c14/ctgan/ctgan-c14-20260505_185844/ctgan_train_prepared.csv @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:f135a8a18cdb7d9127d7fa97595cc8eca1ab406b017b2557cf6a5d0c77a52db2 +size 135612 diff --git a/timecost/c14/ctgan/ctgan-c14-20260505_185844/gen_20260505_185951.log b/timecost/c14/ctgan/ctgan-c14-20260505_185844/gen_20260505_185951.log new file mode 100644 index 0000000000000000000000000000000000000000..ab6189ee354205a25903bb62741756f6ed0ae8b0 --- /dev/null +++ b/timecost/c14/ctgan/ctgan-c14-20260505_185844/gen_20260505_185951.log @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:a92bcdd2e47f7191f371af40a28340788bf118673cf1bf8bce947bf6dbb4f2cf +size 304 diff --git a/timecost/c14/ctgan/ctgan-c14-20260505_185844/input_snapshot.json b/timecost/c14/ctgan/ctgan-c14-20260505_185844/input_snapshot.json new file mode 100644 index 0000000000000000000000000000000000000000..bbac6b99393b3a4ad5ef6f4168ce74f83e798899 --- /dev/null +++ b/timecost/c14/ctgan/ctgan-c14-20260505_185844/input_snapshot.json @@ -0,0 +1,36 @@ +{ + "dataset_id": "c14", + "model": "ctgan", + "inputs": { + "train_csv": { + "path": "/data/jialinzhang/SynthesizePipeline-server/DatasetNew/c14/c14-train.csv", + "exists": true, + "size": 31957080, + "sha256": "4a11abde6a7fae9f8bb1a1d7e31035b9dd61587d2721749a52d78d65441fba5e" + }, + "val_csv": { + "path": "/data/jialinzhang/SynthesizePipeline-server/DatasetNew/c14/c14-val.csv", + "exists": true, + "size": 3995920, + "sha256": "b04d723eeb59d339a356302660463c129141b4213fefbf472ef48f8a4daa50c9" + }, + "test_csv": { + "path": "/data/jialinzhang/SynthesizePipeline-server/DatasetNew/c14/c14-test.csv", + "exists": true, + "size": 3995840, + "sha256": "4780b90e46f6b440983cc9315cad8bca0e86bd26d8877ffae7111258fba0a132" + }, + "profile_json": { + "path": "/data/jialinzhang/SynthesizePipeline-server/DatasetNew/artifacts/data_core/tabular/c14/c14-dataset_profile.json", + "exists": true, + "size": 9505, + "sha256": "577cc5830dcb336243555d3d41c06e2e7c0a63df2a9caccb7a0411b9332cde15" + }, + "contract_json": { + "path": "/data/jialinzhang/SynthesizePipeline-server/DatasetNew/artifacts/data_core/tabular/c14/c14-dataset_contract_v1.json", + "exists": true, + "size": 11901, + "sha256": "955197dff3346d55aaa999adf98d64c375a7e4ca9bc4bcfe626499c9cfea9a41" + } + } +} \ No newline at end of file diff --git a/timecost/c14/ctgan/ctgan-c14-20260505_185844/models_5epochs/ctgan_5epochs.pt b/timecost/c14/ctgan/ctgan-c14-20260505_185844/models_5epochs/ctgan_5epochs.pt new file mode 100644 index 0000000000000000000000000000000000000000..e6d7c4ab5c70869570769bd5508488ada0ece817 --- /dev/null +++ b/timecost/c14/ctgan/ctgan-c14-20260505_185844/models_5epochs/ctgan_5epochs.pt @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:ef6cd76e53d96ef3296027c483c275b1158b725e850a6ec5db58a3194e55c9d6 +size 43090359 diff --git a/timecost/c14/ctgan/ctgan-c14-20260505_185844/models_5epochs/train_20260505_185849.log b/timecost/c14/ctgan/ctgan-c14-20260505_185844/models_5epochs/train_20260505_185849.log new file mode 100644 index 0000000000000000000000000000000000000000..1ec599f2d7e3a05fdd041830ee247100c4430a08 --- /dev/null +++ b/timecost/c14/ctgan/ctgan-c14-20260505_185844/models_5epochs/train_20260505_185849.log @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:e71837d30240de9bbf55a0334c4dbdb3b7687b9c77fd98f39ce79a686c6ff268 +size 5471 diff --git a/timecost/c14/ctgan/ctgan-c14-20260505_185844/public_gate/normalized_schema_snapshot.json b/timecost/c14/ctgan/ctgan-c14-20260505_185844/public_gate/normalized_schema_snapshot.json new file mode 100644 index 0000000000000000000000000000000000000000..c43047a97cac9542e79dfa127e651be7146aa2a4 --- /dev/null +++ b/timecost/c14/ctgan/ctgan-c14-20260505_185844/public_gate/normalized_schema_snapshot.json @@ -0,0 +1,509 @@ +{ + "dataset_id": "c14", + "target_column": "target", + "task_type": "classification", + "columns": [ + { + "name": "id", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 20000, + "unique_ratio": 0.083333, + "example_values": [ + "182547", + "28342", + "172611", + "81876", + "110780" + ] + } + }, + { + "name": "bin_0", + "role": "feature", + "semantic_type": "boolean", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 2, + "unique_ratio": 8e-06, + "example_values": [ + "0", + "1" + ] + } + }, + { + "name": "bin_1", + "role": "feature", + "semantic_type": "boolean", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 2, + "unique_ratio": 8e-06, + "example_values": [ + "0", + "1" + ] + } + }, + { + "name": "bin_2", + "role": "feature", + "semantic_type": "boolean", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 2, + "unique_ratio": 8e-06, + "example_values": [ + "0", + "1" + ] + } + }, + { + "name": "bin_3", + "role": "feature", + "semantic_type": "boolean", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 2, + "unique_ratio": 8e-06, + "example_values": [ + "F", + "T" + ] + } + }, + { + "name": "bin_4", + "role": "feature", + "semantic_type": "boolean", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 2, + "unique_ratio": 8e-06, + "example_values": [ + "Y", + "N" + ] + } + }, + { + "name": "nom_0", + "role": "feature", + "semantic_type": "categorical", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 3, + "unique_ratio": 1.3e-05, + "example_values": [ + "Blue", + "Green", + "Red" + ] + } + }, + { + "name": "nom_1", + "role": "feature", + "semantic_type": "categorical", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 6, + "unique_ratio": 2.5e-05, + "example_values": [ + "Trapezoid", + "Polygon", + "Square", + "Star", + "Triangle" + ] + } + }, + { + "name": "nom_2", + "role": "feature", + "semantic_type": "categorical", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 6, + "unique_ratio": 2.5e-05, + "example_values": [ + "Cat", + "Dog", + "Lion", + "Snake", + "Axolotl" + ] + } + }, + { + "name": "nom_3", + "role": "feature", + "semantic_type": "categorical", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 6, + "unique_ratio": 2.5e-05, + "example_values": [ + "China", + "Finland", + "Canada", + "India", + "Russia" + ] + } + }, + { + "name": "nom_4", + "role": "feature", + "semantic_type": "categorical", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 4, + "unique_ratio": 1.7e-05, + "example_values": [ + "Oboe", + "Bassoon", + "Theremin", + "Piano" + ] + } + }, + { + "name": "nom_5", + "role": "feature", + "semantic_type": "categorical", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 222, + "unique_ratio": 0.000925, + "example_values": [ + "c5725677e", + "92190168b", + "dbfb714a4", + "60a44c8f4", + "e70a6270d" + ] + } + }, + { + "name": "nom_6", + "role": "feature", + "semantic_type": "categorical", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 522, + "unique_ratio": 0.002175, + "example_values": [ + "231233ca9", + "79a82b7c0", + "9a70de492", + "cad70d692", + "6d2cd10c5" + ] + } + }, + { + "name": "nom_7", + "role": "feature", + "semantic_type": "categorical", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 1219, + "unique_ratio": 0.005079, + "example_values": [ + "673d3c1c0", + "7ad3e362c", + "fcd030cc2", + "27e8d4511", + "7df1399cb" + ] + } + }, + { + "name": "nom_8", + "role": "feature", + "semantic_type": "categorical", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 2215, + "unique_ratio": 0.009229, + "example_values": [ + "4fbb167ac", + "7d97eba78", + "b886d6c1c", + "a9d35cede", + "fd0041a98" + ] + } + }, + { + "name": "nom_9", + "role": "feature", + "semantic_type": "categorical", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 11927, + "unique_ratio": 0.049696, + "example_values": [ + "1f31c5cc1", + "89539e0fa", + "8a34e794f", + "34760ea8a", + "46b472cdb" + ] + } + }, + { + "name": "ord_0", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 3, + "unique_ratio": 1.3e-05, + "example_values": [ + "1", + "2", + "3" + ] + } + }, + { + "name": "ord_1", + "role": "feature", + "semantic_type": "categorical", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 5, + "unique_ratio": 2.1e-05, + "example_values": [ + "Grandmaster", + "Contributor", + "Novice", + "Master", + "Expert" + ] + } + }, + { + "name": "ord_2", + "role": "feature", + "semantic_type": "categorical", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 6, + "unique_ratio": 2.5e-05, + "example_values": [ + "Lava Hot", + "Boiling Hot", + "Freezing", + "Hot", + "Cold" + ] + } + }, + { + "name": "ord_3", + "role": "feature", + "semantic_type": "categorical", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 15, + "unique_ratio": 6.3e-05, + "example_values": [ + "g", + "j", + "l", + "f", + "k" + ] + } + }, + { + "name": "ord_4", + "role": "feature", + "semantic_type": "categorical", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 26, + "unique_ratio": 0.000108, + "example_values": [ + "L", + "S", + "K", + "I", + "A" + ] + } + }, + { + "name": "ord_5", + "role": "feature", + "semantic_type": "categorical", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 192, + "unique_ratio": 0.0008, + "example_values": [ + "qo", + "aM", + "AP", + "fO", + "hh" + ] + } + }, + { + "name": "day", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 7, + "unique_ratio": 2.9e-05, + "example_values": [ + "1", + "2", + "7", + "4", + "3" + ] + } + }, + { + "name": "month", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 12, + "unique_ratio": 5e-05, + "example_values": [ + "12", + "4", + "8", + "2", + "9" + ] + } + }, + { + "name": "target", + "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": 8e-06, + "example_values": [ + "0", + "1" + ] + } + } + ] +} \ No newline at end of file diff --git a/timecost/c14/ctgan/ctgan-c14-20260505_185844/public_gate/public_gate_report.json b/timecost/c14/ctgan/ctgan-c14-20260505_185844/public_gate/public_gate_report.json new file mode 100644 index 0000000000000000000000000000000000000000..9374818599b8101d02e793ea785975d77363e3fd --- /dev/null +++ b/timecost/c14/ctgan/ctgan-c14-20260505_185844/public_gate/public_gate_report.json @@ -0,0 +1,37 @@ +{ + "dataset_id": "c14", + "status": "pass", + "checks": [ + { + "check_id": "PG001_csv_parse_ok", + "status": "pass" + }, + { + "check_id": "PG002_split_header_consistent", + "status": "pass" + }, + { + "check_id": "PG003_profile_header_match", + "status": "pass" + }, + { + "check_id": "PG004_missing_token_normalized", + "status": "pass" + }, + { + "check_id": "PG005_semantic_type_validated", + "status": "pass" + }, + { + "check_id": "PG006_target_defined_and_valid", + "status": "pass" + } + ], + "target_column": "target", + "task_type": "classification", + "input_splits": { + "train": "/data/jialinzhang/SynthesizePipeline-server/DatasetNew/c14/c14-train.csv", + "val": "/data/jialinzhang/SynthesizePipeline-server/DatasetNew/c14/c14-val.csv", + "test": "/data/jialinzhang/SynthesizePipeline-server/DatasetNew/c14/c14-test.csv" + } +} \ No newline at end of file diff --git a/timecost/c14/ctgan/ctgan-c14-20260505_185844/public_gate/staged_input_manifest.json b/timecost/c14/ctgan/ctgan-c14-20260505_185844/public_gate/staged_input_manifest.json new file mode 100644 index 0000000000000000000000000000000000000000..d9459eabbf191f4f980dfe8eaca565dc3d55d387 --- /dev/null +++ b/timecost/c14/ctgan/ctgan-c14-20260505_185844/public_gate/staged_input_manifest.json @@ -0,0 +1,514 @@ +{ + "dataset_id": "c14", + "target_column": "target", + "task_type": "classification", + "train_csv": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/c14/ctgan/ctgan-c14-20260505_185844/staged/public/train.csv", + "val_csv": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/c14/ctgan/ctgan-c14-20260505_185844/staged/public/val.csv", + "test_csv": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/c14/ctgan/ctgan-c14-20260505_185844/staged/public/test.csv", + "features_json": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/c14/ctgan/ctgan-c14-20260505_185844/staged/public/staged_features.json", + "public_gate_report": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/c14/ctgan/ctgan-c14-20260505_185844/public_gate/public_gate_report.json", + "column_schema": [ + { + "name": "id", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 20000, + "unique_ratio": 0.083333, + "example_values": [ + "182547", + "28342", + "172611", + "81876", + "110780" + ] + } + }, + { + "name": "bin_0", + "role": "feature", + "semantic_type": "boolean", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 2, + "unique_ratio": 8e-06, + "example_values": [ + "0", + "1" + ] + } + }, + { + "name": "bin_1", + "role": "feature", + "semantic_type": "boolean", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 2, + "unique_ratio": 8e-06, + "example_values": [ + "0", + "1" + ] + } + }, + { + "name": "bin_2", + "role": "feature", + "semantic_type": "boolean", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 2, + "unique_ratio": 8e-06, + "example_values": [ + "0", + "1" + ] + } + }, + { + "name": "bin_3", + "role": "feature", + "semantic_type": "boolean", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 2, + "unique_ratio": 8e-06, + "example_values": [ + "F", + "T" + ] + } + }, + { + "name": "bin_4", + "role": "feature", + "semantic_type": "boolean", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 2, + "unique_ratio": 8e-06, + "example_values": [ + "Y", + "N" + ] + } + }, + { + "name": "nom_0", + "role": "feature", + "semantic_type": "categorical", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 3, + "unique_ratio": 1.3e-05, + "example_values": [ + "Blue", + "Green", + "Red" + ] + } + }, + { + "name": "nom_1", + "role": "feature", + "semantic_type": "categorical", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 6, + "unique_ratio": 2.5e-05, + "example_values": [ + "Trapezoid", + "Polygon", + "Square", + "Star", + "Triangle" + ] + } + }, + { + "name": "nom_2", + "role": "feature", + "semantic_type": "categorical", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 6, + "unique_ratio": 2.5e-05, + "example_values": [ + "Cat", + "Dog", + "Lion", + "Snake", + "Axolotl" + ] + } + }, + { + "name": "nom_3", + "role": "feature", + "semantic_type": "categorical", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 6, + "unique_ratio": 2.5e-05, + "example_values": [ + "China", + "Finland", + "Canada", + "India", + "Russia" + ] + } + }, + { + "name": "nom_4", + "role": "feature", + "semantic_type": "categorical", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 4, + "unique_ratio": 1.7e-05, + "example_values": [ + "Oboe", + "Bassoon", + "Theremin", + "Piano" + ] + } + }, + { + "name": "nom_5", + "role": "feature", + "semantic_type": "categorical", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 222, + "unique_ratio": 0.000925, + "example_values": [ + "c5725677e", + "92190168b", + "dbfb714a4", + "60a44c8f4", + "e70a6270d" + ] + } + }, + { + "name": "nom_6", + "role": "feature", + "semantic_type": "categorical", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 522, + "unique_ratio": 0.002175, + "example_values": [ + "231233ca9", + "79a82b7c0", + "9a70de492", + "cad70d692", + "6d2cd10c5" + ] + } + }, + { + "name": "nom_7", + "role": "feature", + "semantic_type": "categorical", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 1219, + "unique_ratio": 0.005079, + "example_values": [ + "673d3c1c0", + "7ad3e362c", + "fcd030cc2", + "27e8d4511", + "7df1399cb" + ] + } + }, + { + "name": "nom_8", + "role": "feature", + "semantic_type": "categorical", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 2215, + "unique_ratio": 0.009229, + "example_values": [ + "4fbb167ac", + "7d97eba78", + "b886d6c1c", + "a9d35cede", + "fd0041a98" + ] + } + }, + { + "name": "nom_9", + "role": "feature", + "semantic_type": "categorical", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 11927, + "unique_ratio": 0.049696, + "example_values": [ + "1f31c5cc1", + "89539e0fa", + "8a34e794f", + "34760ea8a", + "46b472cdb" + ] + } + }, + { + "name": "ord_0", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 3, + "unique_ratio": 1.3e-05, + "example_values": [ + "1", + "2", + "3" + ] + } + }, + { + "name": "ord_1", + "role": "feature", + "semantic_type": "categorical", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 5, + "unique_ratio": 2.1e-05, + "example_values": [ + "Grandmaster", + "Contributor", + "Novice", + "Master", + "Expert" + ] + } + }, + { + "name": "ord_2", + "role": "feature", + "semantic_type": "categorical", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 6, + "unique_ratio": 2.5e-05, + "example_values": [ + "Lava Hot", + "Boiling Hot", + "Freezing", + "Hot", + "Cold" + ] + } + }, + { + "name": "ord_3", + "role": "feature", + "semantic_type": "categorical", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 15, + "unique_ratio": 6.3e-05, + "example_values": [ + "g", + "j", + "l", + "f", + "k" + ] + } + }, + { + "name": "ord_4", + "role": "feature", + "semantic_type": "categorical", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 26, + "unique_ratio": 0.000108, + "example_values": [ + "L", + "S", + "K", + "I", + "A" + ] + } + }, + { + "name": "ord_5", + "role": "feature", + "semantic_type": "categorical", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 192, + "unique_ratio": 0.0008, + "example_values": [ + "qo", + "aM", + "AP", + "fO", + "hh" + ] + } + }, + { + "name": "day", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 7, + "unique_ratio": 2.9e-05, + "example_values": [ + "1", + "2", + "7", + "4", + "3" + ] + } + }, + { + "name": "month", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 12, + "unique_ratio": 5e-05, + "example_values": [ + "12", + "4", + "8", + "2", + "9" + ] + } + }, + { + "name": "target", + "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": 8e-06, + "example_values": [ + "0", + "1" + ] + } + } + ] +} \ No newline at end of file diff --git a/timecost/c14/ctgan/ctgan-c14-20260505_185844/run_config.json b/timecost/c14/ctgan/ctgan-c14-20260505_185844/run_config.json new file mode 100644 index 0000000000000000000000000000000000000000..0d0de9f909e9d83ecaa33237889eeb7432817c89 --- /dev/null +++ b/timecost/c14/ctgan/ctgan-c14-20260505_185844/run_config.json @@ -0,0 +1,49 @@ +{ + "schema_version": 1, + "recorded_at": "2026-05-05T18:58:46", + "dataset_id": "c14", + "model": "ctgan", + "work_dir": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/c14/ctgan/ctgan-c14-20260505_185844", + "dataset_source_requested": "new", + "dataset_source_resolved": "new", + "cli_args": { + "model": "ctgan", + "dataset": "c14", + "dataset_source": "new", + "train": true, + "generate": true, + "num_rows": 0, + "epochs": null, + "output_dir": null, + "model_dir": null, + "work_dir": null, + "resume": false, + "no_stats": false + }, + "resolved": { + "num_rows": 240000, + "model_path": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/c14/ctgan/ctgan-c14-20260505_185844/models_5epochs/ctgan_5epochs.pt", + "output_csv": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/c14/ctgan/ctgan-c14-20260505_185844/ctgan-c14-240000-20260505_185951.csv" + }, + "input_artifacts": { + "public_gate_report": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/c14/ctgan/ctgan-c14-20260505_185844/public_gate/public_gate_report.json", + "public_manifest": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/c14/ctgan/ctgan-c14-20260505_185844/public_gate/staged_input_manifest.json", + "model_manifest": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/c14/ctgan/ctgan-c14-20260505_185844/staged/ctgan/model_input_manifest.json", + "train_csv": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/c14/ctgan/ctgan-c14-20260505_185844/staged/public/train.csv", + "features_json": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/c14/ctgan/ctgan-c14-20260505_185844/staged/public/staged_features.json", + "target_column": "target", + "task_type": "classification" + }, + "env_overrides": { + "BENCHMARK_CTGAN_GPUS": "device=3", + "CTGAN_BATCH_SIZE": "2", + "CTGAN_DEFAULT_EPOCHS": "5", + "CTGAN_DISCRIMINATOR_DIMS": "8,8", + "CTGAN_EMBEDDING_DIM": "4", + "CTGAN_GENERATOR_DIMS": "8,8", + "CTGAN_MAX_TRAIN_ROWS": "1024", + "CTGAN_PAC": "1", + "MKL_NUM_THREADS": "1", + "OPENBLAS_NUM_THREADS": "1" + } +} \ No newline at end of file diff --git a/timecost/c14/ctgan/ctgan-c14-20260505_185844/runtime_result.json b/timecost/c14/ctgan/ctgan-c14-20260505_185844/runtime_result.json new file mode 100644 index 0000000000000000000000000000000000000000..9b63d4e3cd2d914fae4d77578ca72144ccc21256 --- /dev/null +++ b/timecost/c14/ctgan/ctgan-c14-20260505_185844/runtime_result.json @@ -0,0 +1,27 @@ +{ + "dataset_id": "c14", + "model": "ctgan", + "run_id": "ctgan-c14-20260505_185844", + "public_gate_status": "pass", + "adapter_ready_status": "pass", + "train_status": "success", + "generate_status": "success", + "reason_code": null, + "reason_detail": null, + "artifacts": { + "synthetic_csv": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/c14/ctgan/ctgan-c14-20260505_185844/ctgan-c14-240000-20260505_185951.csv", + "model_path": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/c14/ctgan/ctgan-c14-20260505_185844/models_5epochs/ctgan_5epochs.pt" + }, + "timings": { + "train": { + "started_at": "2026-05-05T18:58:47", + "ended_at": "2026-05-05T18:59:51", + "duration_sec": 64.224 + }, + "generate": { + "started_at": "2026-05-05T18:59:51", + "ended_at": "2026-05-05T19:05:29", + "duration_sec": 337.15 + } + } +} \ No newline at end of file diff --git a/timecost/c14/ctgan/ctgan-c14-20260505_185844/staged/ctgan/adapter_report.json b/timecost/c14/ctgan/ctgan-c14-20260505_185844/staged/ctgan/adapter_report.json new file mode 100644 index 0000000000000000000000000000000000000000..b9d77bc20a4184e602bebf40e2e16874250f3cda --- /dev/null +++ b/timecost/c14/ctgan/ctgan-c14-20260505_185844/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-Benchmark-trainonly-v1/c14/ctgan/ctgan-c14-20260505_185844/staged/ctgan/model_input_manifest.json" +} \ No newline at end of file diff --git a/timecost/c14/ctgan/ctgan-c14-20260505_185844/staged/ctgan/adapter_transforms_applied.json b/timecost/c14/ctgan/ctgan-c14-20260505_185844/staged/ctgan/adapter_transforms_applied.json new file mode 100644 index 0000000000000000000000000000000000000000..0637a088a01e8ddab3bf3fa98dbe804cbde1a0dc --- /dev/null +++ b/timecost/c14/ctgan/ctgan-c14-20260505_185844/staged/ctgan/adapter_transforms_applied.json @@ -0,0 +1 @@ +[] \ No newline at end of file diff --git a/timecost/c14/ctgan/ctgan-c14-20260505_185844/staged/ctgan/model_input_manifest.json b/timecost/c14/ctgan/ctgan-c14-20260505_185844/staged/ctgan/model_input_manifest.json new file mode 100644 index 0000000000000000000000000000000000000000..3e81dd85bcebad5785fc984d6e1f5083d3b562bc --- /dev/null +++ b/timecost/c14/ctgan/ctgan-c14-20260505_185844/staged/ctgan/model_input_manifest.json @@ -0,0 +1,516 @@ +{ + "dataset_id": "c14", + "model": "ctgan", + "target_column": "target", + "task_type": "classification", + "column_schema": [ + { + "name": "id", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 20000, + "unique_ratio": 0.083333, + "example_values": [ + "182547", + "28342", + "172611", + "81876", + "110780" + ] + } + }, + { + "name": "bin_0", + "role": "feature", + "semantic_type": "boolean", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 2, + "unique_ratio": 8e-06, + "example_values": [ + "0", + "1" + ] + } + }, + { + "name": "bin_1", + "role": "feature", + "semantic_type": "boolean", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 2, + "unique_ratio": 8e-06, + "example_values": [ + "0", + "1" + ] + } + }, + { + "name": "bin_2", + "role": "feature", + "semantic_type": "boolean", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 2, + "unique_ratio": 8e-06, + "example_values": [ + "0", + "1" + ] + } + }, + { + "name": "bin_3", + "role": "feature", + "semantic_type": "boolean", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 2, + "unique_ratio": 8e-06, + "example_values": [ + "F", + "T" + ] + } + }, + { + "name": "bin_4", + "role": "feature", + "semantic_type": "boolean", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 2, + "unique_ratio": 8e-06, + "example_values": [ + "Y", + "N" + ] + } + }, + { + "name": "nom_0", + "role": "feature", + "semantic_type": "categorical", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 3, + "unique_ratio": 1.3e-05, + "example_values": [ + "Blue", + "Green", + "Red" + ] + } + }, + { + "name": "nom_1", + "role": "feature", + "semantic_type": "categorical", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 6, + "unique_ratio": 2.5e-05, + "example_values": [ + "Trapezoid", + "Polygon", + "Square", + "Star", + "Triangle" + ] + } + }, + { + "name": "nom_2", + "role": "feature", + "semantic_type": "categorical", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 6, + "unique_ratio": 2.5e-05, + "example_values": [ + "Cat", + "Dog", + "Lion", + "Snake", + "Axolotl" + ] + } + }, + { + "name": "nom_3", + "role": "feature", + "semantic_type": "categorical", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 6, + "unique_ratio": 2.5e-05, + "example_values": [ + "China", + "Finland", + "Canada", + "India", + "Russia" + ] + } + }, + { + "name": "nom_4", + "role": "feature", + "semantic_type": "categorical", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 4, + "unique_ratio": 1.7e-05, + "example_values": [ + "Oboe", + "Bassoon", + "Theremin", + "Piano" + ] + } + }, + { + "name": "nom_5", + "role": "feature", + "semantic_type": "categorical", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 222, + "unique_ratio": 0.000925, + "example_values": [ + "c5725677e", + "92190168b", + "dbfb714a4", + "60a44c8f4", + "e70a6270d" + ] + } + }, + { + "name": "nom_6", + "role": "feature", + "semantic_type": "categorical", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 522, + "unique_ratio": 0.002175, + "example_values": [ + "231233ca9", + "79a82b7c0", + "9a70de492", + "cad70d692", + "6d2cd10c5" + ] + } + }, + { + "name": "nom_7", + "role": "feature", + "semantic_type": "categorical", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 1219, + "unique_ratio": 0.005079, + "example_values": [ + "673d3c1c0", + "7ad3e362c", + "fcd030cc2", + "27e8d4511", + "7df1399cb" + ] + } + }, + { + "name": "nom_8", + "role": "feature", + "semantic_type": "categorical", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 2215, + "unique_ratio": 0.009229, + "example_values": [ + "4fbb167ac", + "7d97eba78", + "b886d6c1c", + "a9d35cede", + "fd0041a98" + ] + } + }, + { + "name": "nom_9", + "role": "feature", + "semantic_type": "categorical", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 11927, + "unique_ratio": 0.049696, + "example_values": [ + "1f31c5cc1", + "89539e0fa", + "8a34e794f", + "34760ea8a", + "46b472cdb" + ] + } + }, + { + "name": "ord_0", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 3, + "unique_ratio": 1.3e-05, + "example_values": [ + "1", + "2", + "3" + ] + } + }, + { + "name": "ord_1", + "role": "feature", + "semantic_type": "categorical", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 5, + "unique_ratio": 2.1e-05, + "example_values": [ + "Grandmaster", + "Contributor", + "Novice", + "Master", + "Expert" + ] + } + }, + { + "name": "ord_2", + "role": "feature", + "semantic_type": "categorical", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 6, + "unique_ratio": 2.5e-05, + "example_values": [ + "Lava Hot", + "Boiling Hot", + "Freezing", + "Hot", + "Cold" + ] + } + }, + { + "name": "ord_3", + "role": "feature", + "semantic_type": "categorical", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 15, + "unique_ratio": 6.3e-05, + "example_values": [ + "g", + "j", + "l", + "f", + "k" + ] + } + }, + { + "name": "ord_4", + "role": "feature", + "semantic_type": "categorical", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 26, + "unique_ratio": 0.000108, + "example_values": [ + "L", + "S", + "K", + "I", + "A" + ] + } + }, + { + "name": "ord_5", + "role": "feature", + "semantic_type": "categorical", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 192, + "unique_ratio": 0.0008, + "example_values": [ + "qo", + "aM", + "AP", + "fO", + "hh" + ] + } + }, + { + "name": "day", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 7, + "unique_ratio": 2.9e-05, + "example_values": [ + "1", + "2", + "7", + "4", + "3" + ] + } + }, + { + "name": "month", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 12, + "unique_ratio": 5e-05, + "example_values": [ + "12", + "4", + "8", + "2", + "9" + ] + } + }, + { + "name": "target", + "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": 8e-06, + "example_values": [ + "0", + "1" + ] + } + } + ], + "public_manifest": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/c14/ctgan/ctgan-c14-20260505_185844/public_gate/staged_input_manifest.json", + "train_csv": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/c14/ctgan/ctgan-c14-20260505_185844/staged/public/train.csv", + "val_csv": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/c14/ctgan/ctgan-c14-20260505_185844/staged/public/val.csv", + "test_csv": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/c14/ctgan/ctgan-c14-20260505_185844/staged/public/test.csv", + "features_json": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/c14/ctgan/ctgan-c14-20260505_185844/staged/public/staged_features.json", + "public_gate_report": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/c14/ctgan/ctgan-c14-20260505_185844/public_gate/public_gate_report.json" +} \ No newline at end of file diff --git a/timecost/c14/ctgan/ctgan-c14-20260505_185844/staged/public/staged_features.json b/timecost/c14/ctgan/ctgan-c14-20260505_185844/staged/public/staged_features.json new file mode 100644 index 0000000000000000000000000000000000000000..508fbe870849f119fe0f440e76f620b91489d965 --- /dev/null +++ b/timecost/c14/ctgan/ctgan-c14-20260505_185844/staged/public/staged_features.json @@ -0,0 +1,127 @@ +[ + { + "feature_name": "id", + "data_type": "continuous", + "is_target": false + }, + { + "feature_name": "bin_0", + "data_type": "binary", + "is_target": false + }, + { + "feature_name": "bin_1", + "data_type": "binary", + "is_target": false + }, + { + "feature_name": "bin_2", + "data_type": "binary", + "is_target": false + }, + { + "feature_name": "bin_3", + "data_type": "binary", + "is_target": false + }, + { + "feature_name": "bin_4", + "data_type": "binary", + "is_target": false + }, + { + "feature_name": "nom_0", + "data_type": "categorical", + "is_target": false + }, + { + "feature_name": "nom_1", + "data_type": "categorical", + "is_target": false + }, + { + "feature_name": "nom_2", + "data_type": "categorical", + "is_target": false + }, + { + "feature_name": "nom_3", + "data_type": "categorical", + "is_target": false + }, + { + "feature_name": "nom_4", + "data_type": "categorical", + "is_target": false + }, + { + "feature_name": "nom_5", + "data_type": "categorical", + "is_target": false + }, + { + "feature_name": "nom_6", + "data_type": "categorical", + "is_target": false + }, + { + "feature_name": "nom_7", + "data_type": "categorical", + "is_target": false + }, + { + "feature_name": "nom_8", + "data_type": "categorical", + "is_target": false + }, + { + "feature_name": "nom_9", + "data_type": "categorical", + "is_target": false + }, + { + "feature_name": "ord_0", + "data_type": "continuous", + "is_target": false + }, + { + "feature_name": "ord_1", + "data_type": "categorical", + "is_target": false + }, + { + "feature_name": "ord_2", + "data_type": "categorical", + "is_target": false + }, + { + "feature_name": "ord_3", + "data_type": "categorical", + "is_target": false + }, + { + "feature_name": "ord_4", + "data_type": "categorical", + "is_target": false + }, + { + "feature_name": "ord_5", + "data_type": "categorical", + "is_target": false + }, + { + "feature_name": "day", + "data_type": "continuous", + "is_target": false + }, + { + "feature_name": "month", + "data_type": "continuous", + "is_target": false + }, + { + "feature_name": "target", + "data_type": "binary", + "is_target": true + } +] \ No newline at end of file diff --git a/timecost/c14/ctgan/ctgan-c14-20260505_185844/staged/public/test.csv b/timecost/c14/ctgan/ctgan-c14-20260505_185844/staged/public/test.csv new file mode 100644 index 0000000000000000000000000000000000000000..afbef1e22ba9597cf509fb91aa271ff6908ca0a9 --- /dev/null +++ b/timecost/c14/ctgan/ctgan-c14-20260505_185844/staged/public/test.csv @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:617ecb620416375c67546e0fa5a8b9a3923d689bda904dc23824ea175d1f8597 +size 3965839 diff --git a/timecost/c14/ctgan/ctgan-c14-20260505_185844/staged/public/train.csv b/timecost/c14/ctgan/ctgan-c14-20260505_185844/staged/public/train.csv new file mode 100644 index 0000000000000000000000000000000000000000..322e9de210d736baf266fa4930517b3827d3bf63 --- /dev/null +++ b/timecost/c14/ctgan/ctgan-c14-20260505_185844/staged/public/train.csv @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:12398ccb68a2499b9c126f61b25f03c36a65f026d755e1d5ff5653e614676167 +size 31717079 diff --git a/timecost/c14/ctgan/ctgan-c14-20260505_185844/staged/public/val.csv b/timecost/c14/ctgan/ctgan-c14-20260505_185844/staged/public/val.csv new file mode 100644 index 0000000000000000000000000000000000000000..594db5d9c0a27ce284d599b8bf62685189510e61 --- /dev/null +++ b/timecost/c14/ctgan/ctgan-c14-20260505_185844/staged/public/val.csv @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:f40dbd7bbd9e2783c24d0d12ec35a85581835d45238774eb0676de44a734feda +size 3965919 diff --git a/timecost/c14/forestdiffusion/forest-c14-20260506_023140/_fd_X_host.npy b/timecost/c14/forestdiffusion/forest-c14-20260506_023140/_fd_X_host.npy new file mode 100644 index 0000000000000000000000000000000000000000..8d9d1fd4125f2dcc72c13f995268147e48e25fb1 --- /dev/null +++ b/timecost/c14/forestdiffusion/forest-c14-20260506_023140/_fd_X_host.npy @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:bb7fc43d434cbc1359eb3bff2c07c0281b2bcaacf7cb156a289de90b1d04ed7a +size 102528 diff --git a/timecost/c14/forestdiffusion/forest-c14-20260506_023140/_fd_gen.py b/timecost/c14/forestdiffusion/forest-c14-20260506_023140/_fd_gen.py new file mode 100644 index 0000000000000000000000000000000000000000..3c547aed1483591494f068e9c44037df67576dbc --- /dev/null +++ b/timecost/c14/forestdiffusion/forest-c14-20260506_023140/_fd_gen.py @@ -0,0 +1,8 @@ + +import joblib, pandas as pd +m, meta = joblib.load(r'/work/output-Benchmark-trainonly-v1/c14/forestdiffusion/forest-c14-20260506_023140/forestdiffusion_model.joblib') +# generate:batch_size 为样本数 +arr = m.generate(batch_size=int(240000)) +df = pd.DataFrame(arr, columns=meta["column_names"]) +df.to_csv(r'/work/output-Benchmark-trainonly-v1/c14/forestdiffusion/forest-c14-20260506_023140/forest-c14-240000-20260506_023514.csv', index=False) +print("saved", len(df)) diff --git a/timecost/c14/forestdiffusion/forest-c14-20260506_023140/_fd_meta_host.json b/timecost/c14/forestdiffusion/forest-c14-20260506_023140/_fd_meta_host.json new file mode 100644 index 0000000000000000000000000000000000000000..4646e31cc069da465f39a4a0bf0f9ef92fc82aa4 --- /dev/null +++ b/timecost/c14/forestdiffusion/forest-c14-20260506_023140/_fd_meta_host.json @@ -0,0 +1 @@ +{"column_names": ["id", "bin_0", "bin_1", "bin_2", "bin_3", "bin_4", "nom_0", "nom_1", "nom_2", "nom_3", "nom_4", "nom_5", "nom_6", "nom_7", "nom_8", "nom_9", "ord_0", "ord_1", "ord_2", "ord_3", "ord_4", "ord_5", "day", "month", "target"], "cat_indexes": [1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 17, 18, 19, 20, 21]} \ No newline at end of file diff --git a/timecost/c14/forestdiffusion/forest-c14-20260506_023140/_fd_train.py b/timecost/c14/forestdiffusion/forest-c14-20260506_023140/_fd_train.py new file mode 100644 index 0000000000000000000000000000000000000000..bd6d088430e91c8415d686fc196ed7159f3cc4fc --- /dev/null +++ b/timecost/c14/forestdiffusion/forest-c14-20260506_023140/_fd_train.py @@ -0,0 +1,36 @@ + +import os, shutil, json +with open('/tmp/pgrep', 'w') as _f: + _f.write("#!/usr/bin/env python3\n") + _f.write("import subprocess, sys\n") + _f.write("ppid = sys.argv[-1]\n") + _f.write("out = subprocess.check_output(['ps', '-o', 'pid=', '--ppid', str(ppid)], text=True)\n") + _f.write("print(out, end='')\n") +os.chmod('/tmp/pgrep', 0o755) +os.environ['PATH'] = '/tmp:' + os.environ.get('PATH', '') +shutil.copy(r'/work/output-Benchmark-trainonly-v1/c14/forestdiffusion/forest-c14-20260506_023140/_fd_X_host.npy', '/tmp/fd_X.npy') +with open(r'/work/output-Benchmark-trainonly-v1/c14/forestdiffusion/forest-c14-20260506_023140/_fd_meta_host.json') as f: + open('/tmp/fd_meta.json','w').write(f.read()) + +import numpy as np, joblib, json, os +from ForestDiffusion import ForestDiffusionModel +X = np.load("/tmp/fd_X.npy") +with open("/tmp/fd_meta.json") as f: + meta = json.load(f) +cat_indexes = meta["cat_indexes"] +print( + "[ForestDiffusion] train config: " + f"rows={X.shape[0]} cols={X.shape[1]} n_t=2 " + f"n_estimators=1 duplicate_K=1 n_jobs=1 " + f"max_depth=2 xgb_verbosity=0 xgb_nthread=1", + flush=True, +) +m = ForestDiffusionModel( + X, n_t=2, n_estimators=1, duplicate_K=1, n_jobs=1, + model="xgboost", max_depth=2, tree_method="hist", cat_indexes=cat_indexes, + verbosity=0, nthread=1, +) +joblib.dump((m, meta), "/tmp/fd_model.joblib") +print("ForestDiffusion train OK") + +shutil.copy('/tmp/fd_model.joblib', r'/work/output-Benchmark-trainonly-v1/c14/forestdiffusion/forest-c14-20260506_023140/forestdiffusion_model.joblib') diff --git a/timecost/c14/forestdiffusion/forest-c14-20260506_023140/forest-c14-240000-20260506_023514.csv b/timecost/c14/forestdiffusion/forest-c14-20260506_023140/forest-c14-240000-20260506_023514.csv new file mode 100644 index 0000000000000000000000000000000000000000..848924eb0a54d77a3162acf9125e6728875800d1 --- /dev/null +++ b/timecost/c14/forestdiffusion/forest-c14-20260506_023140/forest-c14-240000-20260506_023514.csv @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:27073672cc4198463fbee578c13942d59f2117f38a0cb55d1ee7f56b76cd4e95 +size 38506392 diff --git a/timecost/c14/forestdiffusion/forest-c14-20260506_023140/forestdiffusion_model.joblib b/timecost/c14/forestdiffusion/forest-c14-20260506_023140/forestdiffusion_model.joblib new file mode 100644 index 0000000000000000000000000000000000000000..1d85abd73a255f42d36eef97dc61329c9f2b2dd5 --- /dev/null +++ b/timecost/c14/forestdiffusion/forest-c14-20260506_023140/forestdiffusion_model.joblib @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:8882410f1db424b43c760abb5b2645270b4c5740164477cc8234a803e550571e +size 31976785 diff --git a/timecost/c14/forestdiffusion/forest-c14-20260506_023140/gen_20260506_023514.log b/timecost/c14/forestdiffusion/forest-c14-20260506_023140/gen_20260506_023514.log new file mode 100644 index 0000000000000000000000000000000000000000..e41987e16467fd12975fb9d703f44eae7b7a7e92 --- /dev/null +++ b/timecost/c14/forestdiffusion/forest-c14-20260506_023140/gen_20260506_023514.log @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:04db32592d4e6a1e277509fa8ff38d632ef67f0b1e626fee18f9a9284c0cf434 +size 297 diff --git a/timecost/c14/forestdiffusion/forest-c14-20260506_023140/input_snapshot.json b/timecost/c14/forestdiffusion/forest-c14-20260506_023140/input_snapshot.json new file mode 100644 index 0000000000000000000000000000000000000000..da75ebd3de5610812999099d4179427f28c4b736 --- /dev/null +++ b/timecost/c14/forestdiffusion/forest-c14-20260506_023140/input_snapshot.json @@ -0,0 +1,36 @@ +{ + "dataset_id": "c14", + "model": "forestdiffusion", + "inputs": { + "train_csv": { + "path": "/data/jialinzhang/SynthesizePipeline-server/DatasetNew/c14/c14-train.csv", + "exists": true, + "size": 31957080, + "sha256": "4a11abde6a7fae9f8bb1a1d7e31035b9dd61587d2721749a52d78d65441fba5e" + }, + "val_csv": { + "path": "/data/jialinzhang/SynthesizePipeline-server/DatasetNew/c14/c14-val.csv", + "exists": true, + "size": 3995920, + "sha256": "b04d723eeb59d339a356302660463c129141b4213fefbf472ef48f8a4daa50c9" + }, + "test_csv": { + "path": "/data/jialinzhang/SynthesizePipeline-server/DatasetNew/c14/c14-test.csv", + "exists": true, + "size": 3995840, + "sha256": "4780b90e46f6b440983cc9315cad8bca0e86bd26d8877ffae7111258fba0a132" + }, + "profile_json": { + "path": "/data/jialinzhang/SynthesizePipeline-server/DatasetNew/artifacts/data_core/tabular/c14/c14-dataset_profile.json", + "exists": true, + "size": 9505, + "sha256": "577cc5830dcb336243555d3d41c06e2e7c0a63df2a9caccb7a0411b9332cde15" + }, + "contract_json": { + "path": "/data/jialinzhang/SynthesizePipeline-server/DatasetNew/artifacts/data_core/tabular/c14/c14-dataset_contract_v1.json", + "exists": true, + "size": 11901, + "sha256": "955197dff3346d55aaa999adf98d64c375a7e4ca9bc4bcfe626499c9cfea9a41" + } + } +} \ No newline at end of file diff --git a/timecost/c14/forestdiffusion/forest-c14-20260506_023140/models_fd/model.joblib b/timecost/c14/forestdiffusion/forest-c14-20260506_023140/models_fd/model.joblib new file mode 100644 index 0000000000000000000000000000000000000000..1d85abd73a255f42d36eef97dc61329c9f2b2dd5 --- /dev/null +++ b/timecost/c14/forestdiffusion/forest-c14-20260506_023140/models_fd/model.joblib @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:8882410f1db424b43c760abb5b2645270b4c5740164477cc8234a803e550571e +size 31976785 diff --git a/timecost/c14/forestdiffusion/forest-c14-20260506_023140/public_gate/normalized_schema_snapshot.json b/timecost/c14/forestdiffusion/forest-c14-20260506_023140/public_gate/normalized_schema_snapshot.json new file mode 100644 index 0000000000000000000000000000000000000000..c43047a97cac9542e79dfa127e651be7146aa2a4 --- /dev/null +++ b/timecost/c14/forestdiffusion/forest-c14-20260506_023140/public_gate/normalized_schema_snapshot.json @@ -0,0 +1,509 @@ +{ + "dataset_id": "c14", + "target_column": "target", + "task_type": "classification", + "columns": [ + { + "name": "id", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 20000, + "unique_ratio": 0.083333, + "example_values": [ + "182547", + "28342", + "172611", + "81876", + "110780" + ] + } + }, + { + "name": "bin_0", + "role": "feature", + "semantic_type": "boolean", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 2, + "unique_ratio": 8e-06, + "example_values": [ + "0", + "1" + ] + } + }, + { + "name": "bin_1", + "role": "feature", + "semantic_type": "boolean", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 2, + "unique_ratio": 8e-06, + "example_values": [ + "0", + "1" + ] + } + }, + { + "name": "bin_2", + "role": "feature", + "semantic_type": "boolean", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 2, + "unique_ratio": 8e-06, + "example_values": [ + "0", + "1" + ] + } + }, + { + "name": "bin_3", + "role": "feature", + "semantic_type": "boolean", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 2, + "unique_ratio": 8e-06, + "example_values": [ + "F", + "T" + ] + } + }, + { + "name": "bin_4", + "role": "feature", + "semantic_type": "boolean", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 2, + "unique_ratio": 8e-06, + "example_values": [ + "Y", + "N" + ] + } + }, + { + "name": "nom_0", + "role": "feature", + "semantic_type": "categorical", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 3, + "unique_ratio": 1.3e-05, + "example_values": [ + "Blue", + "Green", + "Red" + ] + } + }, + { + "name": "nom_1", + "role": "feature", + "semantic_type": "categorical", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 6, + "unique_ratio": 2.5e-05, + "example_values": [ + "Trapezoid", + "Polygon", + "Square", + "Star", + "Triangle" + ] + } + }, + { + "name": "nom_2", + "role": "feature", + "semantic_type": "categorical", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 6, + "unique_ratio": 2.5e-05, + "example_values": [ + "Cat", + "Dog", + "Lion", + "Snake", + "Axolotl" + ] + } + }, + { + "name": "nom_3", + "role": "feature", + "semantic_type": "categorical", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 6, + "unique_ratio": 2.5e-05, + "example_values": [ + "China", + "Finland", + "Canada", + "India", + "Russia" + ] + } + }, + { + "name": "nom_4", + "role": "feature", + "semantic_type": "categorical", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 4, + "unique_ratio": 1.7e-05, + "example_values": [ + "Oboe", + "Bassoon", + "Theremin", + "Piano" + ] + } + }, + { + "name": "nom_5", + "role": "feature", + "semantic_type": "categorical", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 222, + "unique_ratio": 0.000925, + "example_values": [ + "c5725677e", + "92190168b", + "dbfb714a4", + "60a44c8f4", + "e70a6270d" + ] + } + }, + { + "name": "nom_6", + "role": "feature", + "semantic_type": "categorical", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 522, + "unique_ratio": 0.002175, + "example_values": [ + "231233ca9", + "79a82b7c0", + "9a70de492", + "cad70d692", + "6d2cd10c5" + ] + } + }, + { + "name": "nom_7", + "role": "feature", + "semantic_type": "categorical", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 1219, + "unique_ratio": 0.005079, + "example_values": [ + "673d3c1c0", + "7ad3e362c", + "fcd030cc2", + "27e8d4511", + "7df1399cb" + ] + } + }, + { + "name": "nom_8", + "role": "feature", + "semantic_type": "categorical", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 2215, + "unique_ratio": 0.009229, + "example_values": [ + "4fbb167ac", + "7d97eba78", + "b886d6c1c", + "a9d35cede", + "fd0041a98" + ] + } + }, + { + "name": "nom_9", + "role": "feature", + "semantic_type": "categorical", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 11927, + "unique_ratio": 0.049696, + "example_values": [ + "1f31c5cc1", + "89539e0fa", + "8a34e794f", + "34760ea8a", + "46b472cdb" + ] + } + }, + { + "name": "ord_0", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 3, + "unique_ratio": 1.3e-05, + "example_values": [ + "1", + "2", + "3" + ] + } + }, + { + "name": "ord_1", + "role": "feature", + "semantic_type": "categorical", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 5, + "unique_ratio": 2.1e-05, + "example_values": [ + "Grandmaster", + "Contributor", + "Novice", + "Master", + "Expert" + ] + } + }, + { + "name": "ord_2", + "role": "feature", + "semantic_type": "categorical", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 6, + "unique_ratio": 2.5e-05, + "example_values": [ + "Lava Hot", + "Boiling Hot", + "Freezing", + "Hot", + "Cold" + ] + } + }, + { + "name": "ord_3", + "role": "feature", + "semantic_type": "categorical", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 15, + "unique_ratio": 6.3e-05, + "example_values": [ + "g", + "j", + "l", + "f", + "k" + ] + } + }, + { + "name": "ord_4", + "role": "feature", + "semantic_type": "categorical", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 26, + "unique_ratio": 0.000108, + "example_values": [ + "L", + "S", + "K", + "I", + "A" + ] + } + }, + { + "name": "ord_5", + "role": "feature", + "semantic_type": "categorical", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 192, + "unique_ratio": 0.0008, + "example_values": [ + "qo", + "aM", + "AP", + "fO", + "hh" + ] + } + }, + { + "name": "day", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 7, + "unique_ratio": 2.9e-05, + "example_values": [ + "1", + "2", + "7", + "4", + "3" + ] + } + }, + { + "name": "month", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 12, + "unique_ratio": 5e-05, + "example_values": [ + "12", + "4", + "8", + "2", + "9" + ] + } + }, + { + "name": "target", + "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": 8e-06, + "example_values": [ + "0", + "1" + ] + } + } + ] +} \ No newline at end of file diff --git a/timecost/c14/forestdiffusion/forest-c14-20260506_023140/public_gate/public_gate_report.json b/timecost/c14/forestdiffusion/forest-c14-20260506_023140/public_gate/public_gate_report.json new file mode 100644 index 0000000000000000000000000000000000000000..9374818599b8101d02e793ea785975d77363e3fd --- /dev/null +++ b/timecost/c14/forestdiffusion/forest-c14-20260506_023140/public_gate/public_gate_report.json @@ -0,0 +1,37 @@ +{ + "dataset_id": "c14", + "status": "pass", + "checks": [ + { + "check_id": "PG001_csv_parse_ok", + "status": "pass" + }, + { + "check_id": "PG002_split_header_consistent", + "status": "pass" + }, + { + "check_id": "PG003_profile_header_match", + "status": "pass" + }, + { + "check_id": "PG004_missing_token_normalized", + "status": "pass" + }, + { + "check_id": "PG005_semantic_type_validated", + "status": "pass" + }, + { + "check_id": "PG006_target_defined_and_valid", + "status": "pass" + } + ], + "target_column": "target", + "task_type": "classification", + "input_splits": { + "train": "/data/jialinzhang/SynthesizePipeline-server/DatasetNew/c14/c14-train.csv", + "val": "/data/jialinzhang/SynthesizePipeline-server/DatasetNew/c14/c14-val.csv", + "test": "/data/jialinzhang/SynthesizePipeline-server/DatasetNew/c14/c14-test.csv" + } +} \ No newline at end of file diff --git a/timecost/c14/forestdiffusion/forest-c14-20260506_023140/public_gate/staged_input_manifest.json b/timecost/c14/forestdiffusion/forest-c14-20260506_023140/public_gate/staged_input_manifest.json new file mode 100644 index 0000000000000000000000000000000000000000..c7007699fcce15c0fa62c9f280a79f0034ddc0f1 --- /dev/null +++ b/timecost/c14/forestdiffusion/forest-c14-20260506_023140/public_gate/staged_input_manifest.json @@ -0,0 +1,514 @@ +{ + "dataset_id": "c14", + "target_column": "target", + "task_type": "classification", + "train_csv": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/c14/forestdiffusion/forest-c14-20260506_023140/staged/public/train.csv", + "val_csv": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/c14/forestdiffusion/forest-c14-20260506_023140/staged/public/val.csv", + "test_csv": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/c14/forestdiffusion/forest-c14-20260506_023140/staged/public/test.csv", + "features_json": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/c14/forestdiffusion/forest-c14-20260506_023140/staged/public/staged_features.json", + "public_gate_report": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/c14/forestdiffusion/forest-c14-20260506_023140/public_gate/public_gate_report.json", + "column_schema": [ + { + "name": "id", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 20000, + "unique_ratio": 0.083333, + "example_values": [ + "182547", + "28342", + "172611", + "81876", + "110780" + ] + } + }, + { + "name": "bin_0", + "role": "feature", + "semantic_type": "boolean", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 2, + "unique_ratio": 8e-06, + "example_values": [ + "0", + "1" + ] + } + }, + { + "name": "bin_1", + "role": "feature", + "semantic_type": "boolean", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 2, + "unique_ratio": 8e-06, + "example_values": [ + "0", + "1" + ] + } + }, + { + "name": "bin_2", + "role": "feature", + "semantic_type": "boolean", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 2, + "unique_ratio": 8e-06, + "example_values": [ + "0", + "1" + ] + } + }, + { + "name": "bin_3", + "role": "feature", + "semantic_type": "boolean", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 2, + "unique_ratio": 8e-06, + "example_values": [ + "F", + "T" + ] + } + }, + { + "name": "bin_4", + "role": "feature", + "semantic_type": "boolean", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 2, + "unique_ratio": 8e-06, + "example_values": [ + "Y", + "N" + ] + } + }, + { + "name": "nom_0", + "role": "feature", + "semantic_type": "categorical", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 3, + "unique_ratio": 1.3e-05, + "example_values": [ + "Blue", + "Green", + "Red" + ] + } + }, + { + "name": "nom_1", + "role": "feature", + "semantic_type": "categorical", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 6, + "unique_ratio": 2.5e-05, + "example_values": [ + "Trapezoid", + "Polygon", + "Square", + "Star", + "Triangle" + ] + } + }, + { + "name": "nom_2", + "role": "feature", + "semantic_type": "categorical", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 6, + "unique_ratio": 2.5e-05, + "example_values": [ + "Cat", + "Dog", + "Lion", + "Snake", + "Axolotl" + ] + } + }, + { + "name": "nom_3", + "role": "feature", + "semantic_type": "categorical", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 6, + "unique_ratio": 2.5e-05, + "example_values": [ + "China", + "Finland", + "Canada", + "India", + "Russia" + ] + } + }, + { + "name": "nom_4", + "role": "feature", + "semantic_type": "categorical", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 4, + "unique_ratio": 1.7e-05, + "example_values": [ + "Oboe", + "Bassoon", + "Theremin", + "Piano" + ] + } + }, + { + "name": "nom_5", + "role": "feature", + "semantic_type": "categorical", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 222, + "unique_ratio": 0.000925, + "example_values": [ + "c5725677e", + "92190168b", + "dbfb714a4", + "60a44c8f4", + "e70a6270d" + ] + } + }, + { + "name": "nom_6", + "role": "feature", + "semantic_type": "categorical", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 522, + "unique_ratio": 0.002175, + "example_values": [ + "231233ca9", + "79a82b7c0", + "9a70de492", + "cad70d692", + "6d2cd10c5" + ] + } + }, + { + "name": "nom_7", + "role": "feature", + "semantic_type": "categorical", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 1219, + "unique_ratio": 0.005079, + "example_values": [ + "673d3c1c0", + "7ad3e362c", + "fcd030cc2", + "27e8d4511", + "7df1399cb" + ] + } + }, + { + "name": "nom_8", + "role": "feature", + "semantic_type": "categorical", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 2215, + "unique_ratio": 0.009229, + "example_values": [ + "4fbb167ac", + "7d97eba78", + "b886d6c1c", + "a9d35cede", + "fd0041a98" + ] + } + }, + { + "name": "nom_9", + "role": "feature", + "semantic_type": "categorical", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 11927, + "unique_ratio": 0.049696, + "example_values": [ + "1f31c5cc1", + "89539e0fa", + "8a34e794f", + "34760ea8a", + "46b472cdb" + ] + } + }, + { + "name": "ord_0", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 3, + "unique_ratio": 1.3e-05, + "example_values": [ + "1", + "2", + "3" + ] + } + }, + { + "name": "ord_1", + "role": "feature", + "semantic_type": "categorical", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 5, + "unique_ratio": 2.1e-05, + "example_values": [ + "Grandmaster", + "Contributor", + "Novice", + "Master", + "Expert" + ] + } + }, + { + "name": "ord_2", + "role": "feature", + "semantic_type": "categorical", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 6, + "unique_ratio": 2.5e-05, + "example_values": [ + "Lava Hot", + "Boiling Hot", + "Freezing", + "Hot", + "Cold" + ] + } + }, + { + "name": "ord_3", + "role": "feature", + "semantic_type": "categorical", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 15, + "unique_ratio": 6.3e-05, + "example_values": [ + "g", + "j", + "l", + "f", + "k" + ] + } + }, + { + "name": "ord_4", + "role": "feature", + "semantic_type": "categorical", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 26, + "unique_ratio": 0.000108, + "example_values": [ + "L", + "S", + "K", + "I", + "A" + ] + } + }, + { + "name": "ord_5", + "role": "feature", + "semantic_type": "categorical", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 192, + "unique_ratio": 0.0008, + "example_values": [ + "qo", + "aM", + "AP", + "fO", + "hh" + ] + } + }, + { + "name": "day", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 7, + "unique_ratio": 2.9e-05, + "example_values": [ + "1", + "2", + "7", + "4", + "3" + ] + } + }, + { + "name": "month", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 12, + "unique_ratio": 5e-05, + "example_values": [ + "12", + "4", + "8", + "2", + "9" + ] + } + }, + { + "name": "target", + "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": 8e-06, + "example_values": [ + "0", + "1" + ] + } + } + ] +} \ No newline at end of file diff --git a/timecost/c14/forestdiffusion/forest-c14-20260506_023140/run_config.json b/timecost/c14/forestdiffusion/forest-c14-20260506_023140/run_config.json new file mode 100644 index 0000000000000000000000000000000000000000..b5d4ec4c64b89dc6c5bdf38fa9f56799baa1043a --- /dev/null +++ b/timecost/c14/forestdiffusion/forest-c14-20260506_023140/run_config.json @@ -0,0 +1,47 @@ +{ + "schema_version": 1, + "recorded_at": "2026-05-06T02:31:43", + "dataset_id": "c14", + "model": "forestdiffusion", + "work_dir": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/c14/forestdiffusion/forest-c14-20260506_023140", + "dataset_source_requested": "new", + "dataset_source_resolved": "new", + "cli_args": { + "model": "forestdiffusion", + "dataset": "c14", + "dataset_source": "new", + "train": true, + "generate": true, + "num_rows": 0, + "epochs": null, + "output_dir": null, + "model_dir": null, + "work_dir": null, + "resume": false, + "no_stats": false + }, + "resolved": { + "num_rows": 240000, + "model_path": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/c14/forestdiffusion/forest-c14-20260506_023140/models_fd/model.joblib", + "output_csv": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/c14/forestdiffusion/forest-c14-20260506_023140/forest-c14-240000-20260506_023514.csv" + }, + "input_artifacts": { + "public_gate_report": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/c14/forestdiffusion/forest-c14-20260506_023140/public_gate/public_gate_report.json", + "public_manifest": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/c14/forestdiffusion/forest-c14-20260506_023140/public_gate/staged_input_manifest.json", + "model_manifest": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/c14/forestdiffusion/forest-c14-20260506_023140/staged/forestdiffusion/model_input_manifest.json", + "train_csv": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/c14/forestdiffusion/forest-c14-20260506_023140/staged/public/train.csv", + "features_json": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/c14/forestdiffusion/forest-c14-20260506_023140/staged/public/staged_features.json", + "target_column": "target", + "task_type": "classification" + }, + "env_overrides": { + "FORESTDIFFUSION_DUPLICATE_K": "1", + "FORESTDIFFUSION_MAX_DEPTH": "2", + "FORESTDIFFUSION_MAX_TRAIN_ROWS": "1024", + "FORESTDIFFUSION_N_ESTIMATORS": "1", + "FORESTDIFFUSION_N_JOBS": "1", + "FORESTDIFFUSION_N_T": "2", + "FORESTDIFFUSION_XGB_NTHREAD": "1", + "FORESTDIFFUSION_XGB_VERBOSITY": "0" + } +} \ No newline at end of file diff --git a/timecost/c14/forestdiffusion/forest-c14-20260506_023140/runtime_result.json b/timecost/c14/forestdiffusion/forest-c14-20260506_023140/runtime_result.json new file mode 100644 index 0000000000000000000000000000000000000000..0179e0eb08d5c9b11df02fdee162ba5b3321820a --- /dev/null +++ b/timecost/c14/forestdiffusion/forest-c14-20260506_023140/runtime_result.json @@ -0,0 +1,27 @@ +{ + "dataset_id": "c14", + "model": "forestdiffusion", + "run_id": "forest-c14-20260506_023140", + "public_gate_status": "pass", + "adapter_ready_status": "pass", + "train_status": "success", + "generate_status": "success", + "reason_code": null, + "reason_detail": null, + "artifacts": { + "synthetic_csv": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/c14/forestdiffusion/forest-c14-20260506_023140/forest-c14-240000-20260506_023514.csv", + "model_path": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/c14/forestdiffusion/forest-c14-20260506_023140/models_fd/model.joblib" + }, + "timings": { + "train": { + "started_at": "2026-05-06T02:31:43", + "ended_at": "2026-05-06T02:35:14", + "duration_sec": 210.963 + }, + "generate": { + "started_at": "2026-05-06T02:35:14", + "ended_at": "2026-05-06T02:36:46", + "duration_sec": 92.016 + } + } +} \ No newline at end of file diff --git a/timecost/c14/forestdiffusion/forest-c14-20260506_023140/staged/forestdiffusion/adapter_report.json b/timecost/c14/forestdiffusion/forest-c14-20260506_023140/staged/forestdiffusion/adapter_report.json new file mode 100644 index 0000000000000000000000000000000000000000..d46e7f4beadf026591d291a76140bfe364646570 --- /dev/null +++ b/timecost/c14/forestdiffusion/forest-c14-20260506_023140/staged/forestdiffusion/adapter_report.json @@ -0,0 +1,7 @@ +{ + "adapter_ready_status": "pass", + "adapter_fail_reason_code": null, + "adapter_fail_detail": null, + "adapter_transforms_applied": [], + "model_input_manifest": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/c14/forestdiffusion/forest-c14-20260506_023140/staged/forestdiffusion/model_input_manifest.json" +} \ No newline at end of file diff --git a/timecost/c14/forestdiffusion/forest-c14-20260506_023140/staged/forestdiffusion/adapter_transforms_applied.json b/timecost/c14/forestdiffusion/forest-c14-20260506_023140/staged/forestdiffusion/adapter_transforms_applied.json new file mode 100644 index 0000000000000000000000000000000000000000..0637a088a01e8ddab3bf3fa98dbe804cbde1a0dc --- /dev/null +++ b/timecost/c14/forestdiffusion/forest-c14-20260506_023140/staged/forestdiffusion/adapter_transforms_applied.json @@ -0,0 +1 @@ +[] \ No newline at end of file diff --git a/timecost/c14/forestdiffusion/forest-c14-20260506_023140/staged/forestdiffusion/model_input_manifest.json b/timecost/c14/forestdiffusion/forest-c14-20260506_023140/staged/forestdiffusion/model_input_manifest.json new file mode 100644 index 0000000000000000000000000000000000000000..1964a4ee89244367a64cbdd9bf05d4ef51deecb1 --- /dev/null +++ b/timecost/c14/forestdiffusion/forest-c14-20260506_023140/staged/forestdiffusion/model_input_manifest.json @@ -0,0 +1,516 @@ +{ + "dataset_id": "c14", + "model": "forestdiffusion", + "target_column": "target", + "task_type": "classification", + "column_schema": [ + { + "name": "id", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 20000, + "unique_ratio": 0.083333, + "example_values": [ + "182547", + "28342", + "172611", + "81876", + "110780" + ] + } + }, + { + "name": "bin_0", + "role": "feature", + "semantic_type": "boolean", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 2, + "unique_ratio": 8e-06, + "example_values": [ + "0", + "1" + ] + } + }, + { + "name": "bin_1", + "role": "feature", + "semantic_type": "boolean", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 2, + "unique_ratio": 8e-06, + "example_values": [ + "0", + "1" + ] + } + }, + { + "name": "bin_2", + "role": "feature", + "semantic_type": "boolean", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 2, + "unique_ratio": 8e-06, + "example_values": [ + "0", + "1" + ] + } + }, + { + "name": "bin_3", + "role": "feature", + "semantic_type": "boolean", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 2, + "unique_ratio": 8e-06, + "example_values": [ + "F", + "T" + ] + } + }, + { + "name": "bin_4", + "role": "feature", + "semantic_type": "boolean", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 2, + "unique_ratio": 8e-06, + "example_values": [ + "Y", + "N" + ] + } + }, + { + "name": "nom_0", + "role": "feature", + "semantic_type": "categorical", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 3, + "unique_ratio": 1.3e-05, + "example_values": [ + "Blue", + "Green", + "Red" + ] + } + }, + { + "name": "nom_1", + "role": "feature", + "semantic_type": "categorical", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 6, + "unique_ratio": 2.5e-05, + "example_values": [ + "Trapezoid", + "Polygon", + "Square", + "Star", + "Triangle" + ] + } + }, + { + "name": "nom_2", + "role": "feature", + "semantic_type": "categorical", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 6, + "unique_ratio": 2.5e-05, + "example_values": [ + "Cat", + "Dog", + "Lion", + "Snake", + "Axolotl" + ] + } + }, + { + "name": "nom_3", + "role": "feature", + "semantic_type": "categorical", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 6, + "unique_ratio": 2.5e-05, + "example_values": [ + "China", + "Finland", + "Canada", + "India", + "Russia" + ] + } + }, + { + "name": "nom_4", + "role": "feature", + "semantic_type": "categorical", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 4, + "unique_ratio": 1.7e-05, + "example_values": [ + "Oboe", + "Bassoon", + "Theremin", + "Piano" + ] + } + }, + { + "name": "nom_5", + "role": "feature", + "semantic_type": "categorical", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 222, + "unique_ratio": 0.000925, + "example_values": [ + "c5725677e", + "92190168b", + "dbfb714a4", + "60a44c8f4", + "e70a6270d" + ] + } + }, + { + "name": "nom_6", + "role": "feature", + "semantic_type": "categorical", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 522, + "unique_ratio": 0.002175, + "example_values": [ + "231233ca9", + "79a82b7c0", + "9a70de492", + "cad70d692", + "6d2cd10c5" + ] + } + }, + { + "name": "nom_7", + "role": "feature", + "semantic_type": "categorical", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 1219, + "unique_ratio": 0.005079, + "example_values": [ + "673d3c1c0", + "7ad3e362c", + "fcd030cc2", + "27e8d4511", + "7df1399cb" + ] + } + }, + { + "name": "nom_8", + "role": "feature", + "semantic_type": "categorical", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 2215, + "unique_ratio": 0.009229, + "example_values": [ + "4fbb167ac", + "7d97eba78", + "b886d6c1c", + "a9d35cede", + "fd0041a98" + ] + } + }, + { + "name": "nom_9", + "role": "feature", + "semantic_type": "categorical", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 11927, + "unique_ratio": 0.049696, + "example_values": [ + "1f31c5cc1", + "89539e0fa", + "8a34e794f", + "34760ea8a", + "46b472cdb" + ] + } + }, + { + "name": "ord_0", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 3, + "unique_ratio": 1.3e-05, + "example_values": [ + "1", + "2", + "3" + ] + } + }, + { + "name": "ord_1", + "role": "feature", + "semantic_type": "categorical", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 5, + "unique_ratio": 2.1e-05, + "example_values": [ + "Grandmaster", + "Contributor", + "Novice", + "Master", + "Expert" + ] + } + }, + { + "name": "ord_2", + "role": "feature", + "semantic_type": "categorical", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 6, + "unique_ratio": 2.5e-05, + "example_values": [ + "Lava Hot", + "Boiling Hot", + "Freezing", + "Hot", + "Cold" + ] + } + }, + { + "name": "ord_3", + "role": "feature", + "semantic_type": "categorical", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 15, + "unique_ratio": 6.3e-05, + "example_values": [ + "g", + "j", + "l", + "f", + "k" + ] + } + }, + { + "name": "ord_4", + "role": "feature", + "semantic_type": "categorical", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 26, + "unique_ratio": 0.000108, + "example_values": [ + "L", + "S", + "K", + "I", + "A" + ] + } + }, + { + "name": "ord_5", + "role": "feature", + "semantic_type": "categorical", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 192, + "unique_ratio": 0.0008, + "example_values": [ + "qo", + "aM", + "AP", + "fO", + "hh" + ] + } + }, + { + "name": "day", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 7, + "unique_ratio": 2.9e-05, + "example_values": [ + "1", + "2", + "7", + "4", + "3" + ] + } + }, + { + "name": "month", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 12, + "unique_ratio": 5e-05, + "example_values": [ + "12", + "4", + "8", + "2", + "9" + ] + } + }, + { + "name": "target", + "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": 8e-06, + "example_values": [ + "0", + "1" + ] + } + } + ], + "public_manifest": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/c14/forestdiffusion/forest-c14-20260506_023140/public_gate/staged_input_manifest.json", + "train_csv": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/c14/forestdiffusion/forest-c14-20260506_023140/staged/public/train.csv", + "val_csv": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/c14/forestdiffusion/forest-c14-20260506_023140/staged/public/val.csv", + "test_csv": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/c14/forestdiffusion/forest-c14-20260506_023140/staged/public/test.csv", + "features_json": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/c14/forestdiffusion/forest-c14-20260506_023140/staged/public/staged_features.json", + "public_gate_report": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/c14/forestdiffusion/forest-c14-20260506_023140/public_gate/public_gate_report.json" +} \ No newline at end of file diff --git a/timecost/c14/forestdiffusion/forest-c14-20260506_023140/staged/public/staged_features.json b/timecost/c14/forestdiffusion/forest-c14-20260506_023140/staged/public/staged_features.json new file mode 100644 index 0000000000000000000000000000000000000000..508fbe870849f119fe0f440e76f620b91489d965 --- /dev/null +++ b/timecost/c14/forestdiffusion/forest-c14-20260506_023140/staged/public/staged_features.json @@ -0,0 +1,127 @@ +[ + { + "feature_name": "id", + "data_type": "continuous", + "is_target": false + }, + { + "feature_name": "bin_0", + "data_type": "binary", + "is_target": false + }, + { + "feature_name": "bin_1", + "data_type": "binary", + "is_target": false + }, + { + "feature_name": "bin_2", + "data_type": "binary", + "is_target": false + }, + { + "feature_name": "bin_3", + "data_type": "binary", + "is_target": false + }, + { + "feature_name": "bin_4", + "data_type": "binary", + "is_target": false + }, + { + "feature_name": "nom_0", + "data_type": "categorical", + "is_target": false + }, + { + "feature_name": "nom_1", + "data_type": "categorical", + "is_target": false + }, + { + "feature_name": "nom_2", + "data_type": "categorical", + "is_target": false + }, + { + "feature_name": "nom_3", + "data_type": "categorical", + "is_target": false + }, + { + "feature_name": "nom_4", + "data_type": "categorical", + "is_target": false + }, + { + "feature_name": "nom_5", + "data_type": "categorical", + "is_target": false + }, + { + "feature_name": "nom_6", + "data_type": "categorical", + "is_target": false + }, + { + "feature_name": "nom_7", + "data_type": "categorical", + "is_target": false + }, + { + "feature_name": "nom_8", + "data_type": "categorical", + "is_target": false + }, + { + "feature_name": "nom_9", + "data_type": "categorical", + "is_target": false + }, + { + "feature_name": "ord_0", + "data_type": "continuous", + "is_target": false + }, + { + "feature_name": "ord_1", + "data_type": "categorical", + "is_target": false + }, + { + "feature_name": "ord_2", + "data_type": "categorical", + "is_target": false + }, + { + "feature_name": "ord_3", + "data_type": "categorical", + "is_target": false + }, + { + "feature_name": "ord_4", + "data_type": "categorical", + "is_target": false + }, + { + "feature_name": "ord_5", + "data_type": "categorical", + "is_target": false + }, + { + "feature_name": "day", + "data_type": "continuous", + "is_target": false + }, + { + "feature_name": "month", + "data_type": "continuous", + "is_target": false + }, + { + "feature_name": "target", + "data_type": "binary", + "is_target": true + } +] \ No newline at end of file diff --git a/timecost/c14/forestdiffusion/forest-c14-20260506_023140/staged/public/test.csv b/timecost/c14/forestdiffusion/forest-c14-20260506_023140/staged/public/test.csv new file mode 100644 index 0000000000000000000000000000000000000000..afbef1e22ba9597cf509fb91aa271ff6908ca0a9 --- /dev/null +++ b/timecost/c14/forestdiffusion/forest-c14-20260506_023140/staged/public/test.csv @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:617ecb620416375c67546e0fa5a8b9a3923d689bda904dc23824ea175d1f8597 +size 3965839 diff --git a/timecost/c14/forestdiffusion/forest-c14-20260506_023140/staged/public/train.csv b/timecost/c14/forestdiffusion/forest-c14-20260506_023140/staged/public/train.csv new file mode 100644 index 0000000000000000000000000000000000000000..322e9de210d736baf266fa4930517b3827d3bf63 --- /dev/null +++ b/timecost/c14/forestdiffusion/forest-c14-20260506_023140/staged/public/train.csv @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:12398ccb68a2499b9c126f61b25f03c36a65f026d755e1d5ff5653e614676167 +size 31717079 diff --git a/timecost/c14/forestdiffusion/forest-c14-20260506_023140/staged/public/val.csv b/timecost/c14/forestdiffusion/forest-c14-20260506_023140/staged/public/val.csv new file mode 100644 index 0000000000000000000000000000000000000000..594db5d9c0a27ce284d599b8bf62685189510e61 --- /dev/null +++ b/timecost/c14/forestdiffusion/forest-c14-20260506_023140/staged/public/val.csv @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:f40dbd7bbd9e2783c24d0d12ec35a85581835d45238774eb0676de44a734feda +size 3965919 diff --git a/timecost/c14/forestdiffusion/forest-c14-20260506_023140/train_20260506_023145.log b/timecost/c14/forestdiffusion/forest-c14-20260506_023140/train_20260506_023145.log new file mode 100644 index 0000000000000000000000000000000000000000..de5dfeba84b6ce1bf1d7b858ec50d52754550af1 --- /dev/null +++ b/timecost/c14/forestdiffusion/forest-c14-20260506_023140/train_20260506_023145.log @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:2c8191782f0c5215c18ddc39acc4c6e02cf129e18438a4dfb4da5692d0deddc5 +size 446 diff --git a/timecost/c14/realtabformer/rtf-c14-20260501_010151/gen_20260501_162159.log b/timecost/c14/realtabformer/rtf-c14-20260501_010151/gen_20260501_162159.log new file mode 100644 index 0000000000000000000000000000000000000000..5500caec823b6b5a4afb0f070f78739341ace78d --- /dev/null +++ b/timecost/c14/realtabformer/rtf-c14-20260501_010151/gen_20260501_162159.log @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:5e13a2e555140a396ffd324642f091012a46f129e35e0e3ce400f53170fd9575 +size 126836 diff --git a/timecost/c14/realtabformer/rtf-c14-20260501_010151/input_snapshot.json b/timecost/c14/realtabformer/rtf-c14-20260501_010151/input_snapshot.json new file mode 100644 index 0000000000000000000000000000000000000000..5415e3ec2857eddf372aad8f8d8046fc5fa41675 --- /dev/null +++ b/timecost/c14/realtabformer/rtf-c14-20260501_010151/input_snapshot.json @@ -0,0 +1,36 @@ +{ + "dataset_id": "c14", + "model": "realtabformer", + "inputs": { + "train_csv": { + "path": "/data/jialinzhang/SynthesizePipeline-server/DatasetNew/c14/c14-train.csv", + "exists": true, + "size": 31957080, + "sha256": "4a11abde6a7fae9f8bb1a1d7e31035b9dd61587d2721749a52d78d65441fba5e" + }, + "val_csv": { + "path": "/data/jialinzhang/SynthesizePipeline-server/DatasetNew/c14/c14-val.csv", + "exists": true, + "size": 3995920, + "sha256": "b04d723eeb59d339a356302660463c129141b4213fefbf472ef48f8a4daa50c9" + }, + "test_csv": { + "path": "/data/jialinzhang/SynthesizePipeline-server/DatasetNew/c14/c14-test.csv", + "exists": true, + "size": 3995840, + "sha256": "4780b90e46f6b440983cc9315cad8bca0e86bd26d8877ffae7111258fba0a132" + }, + "profile_json": { + "path": "/data/jialinzhang/SynthesizePipeline-server/DatasetNew/artifacts/data_core/tabular/c14/c14-dataset_profile.json", + "exists": true, + "size": 9505, + "sha256": "577cc5830dcb336243555d3d41c06e2e7c0a63df2a9caccb7a0411b9332cde15" + }, + "contract_json": { + "path": "/data/jialinzhang/SynthesizePipeline-server/DatasetNew/artifacts/data_core/tabular/c14/c14-dataset_contract_v1.json", + "exists": true, + "size": 11901, + "sha256": "955197dff3346d55aaa999adf98d64c375a7e4ca9bc4bcfe626499c9cfea9a41" + } + } +} \ No newline at end of file diff --git a/timecost/c14/realtabformer/rtf-c14-20260501_010151/models_100epochs/id000017776237140881922048/rtf_config.json b/timecost/c14/realtabformer/rtf-c14-20260501_010151/models_100epochs/id000017776237140881922048/rtf_config.json new file mode 100644 index 0000000000000000000000000000000000000000..584f72bb09c353ce2b7a8bc2ac9927898dc9b86a --- /dev/null +++ b/timecost/c14/realtabformer/rtf-c14-20260501_010151/models_100epochs/id000017776237140881922048/rtf_config.json @@ -0,0 +1 @@ +{"model_type": "tabular", "tabular_config": {"transformers_version": "5.5.3", "architectures": ["GPT2LMHeadModel"], "output_hidden_states": false, "return_dict": true, "dtype": "float32", "chunk_size_feed_forward": 0, "is_encoder_decoder": false, "id2label": {"0": "LABEL_0", "1": "LABEL_1"}, "label2id": {"LABEL_0": 0, "LABEL_1": 1}, "problem_type": null, "vocab_size": 16472, "n_positions": 1024, "n_embd": 768, "n_layer": 6, "n_head": 12, "n_inner": null, "activation_function": "gelu_new", "resid_pdrop": 0.1, "embd_pdrop": 0.1, "attn_pdrop": 0.1, "layer_norm_epsilon": 1e-05, "initializer_range": 0.02, "summary_type": "cls_index", "summary_use_proj": true, "summary_activation": null, "summary_proj_to_labels": true, "summary_first_dropout": 0.1, "scale_attn_weights": true, "use_cache": false, "bos_token_id": 5, "eos_token_id": 6, "pad_token_id": null, "scale_attn_by_inverse_layer_idx": false, "reorder_and_upcast_attn": false, "add_cross_attention": false, "tie_word_embeddings": true, "_name_or_path": "", "model_type": "gpt2", "output_attentions": false}, "checkpoints_dir": "rtf_checkpoints", "samples_save_dir": "rtf_samples", "full_save_dir": "rtf_full_save", "epochs": 100, "batch_size": 8, "early_stopping_patience": 5, "early_stopping_threshold": 0, "training_args_kwargs": {"eval_strategy": "no", "output_dir": "rtf_checkpoints", "metric_for_best_model": "loss", "num_train_epochs": 100, "per_device_train_batch_size": 8, "per_device_eval_batch_size": 8, "gradient_accumulation_steps": 4, "remove_unused_columns": true, "logging_steps": 100, "save_steps": 100, "eval_steps": 100, "load_best_model_at_end": false, "save_total_limit": 6, "optim": "adamw_torch"}, "train_size": 1, "mask_rate": 0, "columns": ["id", "bin_0", "bin_1", "bin_2", "bin_3", "bin_4", "nom_0", "nom_1", "nom_2", "nom_3", "nom_4", "nom_5", "nom_6", "nom_7", "nom_8", "nom_9", "ord_0", "ord_1", "ord_2", "ord_3", "ord_4", "ord_5", "day", "month", "target"], "column_dtypes": {"id": "int64", "bin_0": "object", "bin_1": "object", "bin_2": "object", "bin_3": "object", "bin_4": "object", "nom_0": "object", "nom_1": "object", "nom_2": "object", "nom_3": "object", "nom_4": "object", "nom_5": "object", "nom_6": "object", "nom_7": "object", "nom_8": "object", "nom_9": "object", "ord_0": "int64", "ord_1": "object", "ord_2": "object", "ord_3": "object", "ord_4": "object", "ord_5": "object", "day": "int64", "month": "int64", "target": "object"}, "column_has_missing": {"id": false, "bin_0": false, "bin_1": false, "bin_2": false, "bin_3": false, "bin_4": false, "nom_0": false, "nom_1": false, "nom_2": false, "nom_3": false, "nom_4": false, "nom_5": false, "nom_6": false, "nom_7": false, "nom_8": false, "nom_9": false, "ord_0": false, "ord_1": false, "ord_2": false, "ord_3": false, "ord_4": false, "ord_5": false, "day": false, "month": false, "target": false}, "drop_na_cols": ["id", "bin_0", "bin_1", "bin_2", "bin_3", "bin_4", "nom_0", "nom_1", "nom_2", "nom_3", "nom_4", "nom_5", "nom_6", "nom_7", "nom_8", "nom_9", "ord_0", "ord_1", "ord_2", "ord_3", "ord_4", "ord_5", "day", "month", "target"], "processed_columns": ["00___NUMERIC___id_00", "00___NUMERIC___id_01", "00___NUMERIC___id_02", "00___NUMERIC___id_03", "00___NUMERIC___id_04", "00___NUMERIC___id_05", "01___CATEGORICAL___bin_0", "02___CATEGORICAL___bin_1", "03___CATEGORICAL___bin_2", "04___CATEGORICAL___bin_3", "05___CATEGORICAL___bin_4", "06___CATEGORICAL___nom_0", "07___CATEGORICAL___nom_1", "08___CATEGORICAL___nom_2", "09___CATEGORICAL___nom_3", "10___CATEGORICAL___nom_4", "11___CATEGORICAL___nom_5", "12___CATEGORICAL___nom_6", "13___CATEGORICAL___nom_7", "14___CATEGORICAL___nom_8", "15___CATEGORICAL___nom_9", "16___NUMERIC___ord_0_00", "17___CATEGORICAL___ord_1", "18___CATEGORICAL___ord_2", "19___CATEGORICAL___ord_3", "20___CATEGORICAL___ord_4", "21___CATEGORICAL___ord_5", "22___NUMERIC___day_00", "23___NUMERIC___month_00", "23___NUMERIC___month_01", "24___CATEGORICAL___target"], "numeric_columns": ["id", "ord_0", "day", "month"], "datetime_columns": [], "vocab": {"id2token": {"0": "[UNK]", "1": "[SEP]", "2": "[PAD]", "3": "[CLS]", "4": "[MASK]", "5": "[BOS]", "6": "[EOS]", "7": "[BMEM]", "8": "[EMEM]", "9": "[RMASK]", "10": "[SPTYPE]", "11": "00___NUMERIC___id_00___0", "12": "00___NUMERIC___id_00___1", "13": "00___NUMERIC___id_00___2", "14": "00___NUMERIC___id_01___0", "15": "00___NUMERIC___id_01___1", "16": "00___NUMERIC___id_01___2", "17": "00___NUMERIC___id_01___3", "18": "00___NUMERIC___id_01___4", "19": "00___NUMERIC___id_01___5", "20": "00___NUMERIC___id_01___6", "21": "00___NUMERIC___id_01___7", "22": "00___NUMERIC___id_01___8", "23": "00___NUMERIC___id_01___9", "24": "00___NUMERIC___id_02___0", "25": "00___NUMERIC___id_02___1", "26": "00___NUMERIC___id_02___2", "27": "00___NUMERIC___id_02___3", "28": "00___NUMERIC___id_02___4", "29": "00___NUMERIC___id_02___5", "30": "00___NUMERIC___id_02___6", "31": "00___NUMERIC___id_02___7", "32": "00___NUMERIC___id_02___8", "33": "00___NUMERIC___id_02___9", "34": "00___NUMERIC___id_03___0", "35": "00___NUMERIC___id_03___1", "36": "00___NUMERIC___id_03___2", "37": "00___NUMERIC___id_03___3", "38": "00___NUMERIC___id_03___4", "39": "00___NUMERIC___id_03___5", "40": "00___NUMERIC___id_03___6", "41": "00___NUMERIC___id_03___7", "42": "00___NUMERIC___id_03___8", "43": "00___NUMERIC___id_03___9", "44": "00___NUMERIC___id_04___0", "45": "00___NUMERIC___id_04___1", "46": "00___NUMERIC___id_04___2", "47": "00___NUMERIC___id_04___3", "48": "00___NUMERIC___id_04___4", "49": "00___NUMERIC___id_04___5", "50": "00___NUMERIC___id_04___6", "51": "00___NUMERIC___id_04___7", "52": "00___NUMERIC___id_04___8", "53": "00___NUMERIC___id_04___9", "54": "00___NUMERIC___id_05___0", "55": "00___NUMERIC___id_05___1", "56": "00___NUMERIC___id_05___2", "57": "00___NUMERIC___id_05___3", "58": "00___NUMERIC___id_05___4", "59": "00___NUMERIC___id_05___5", "60": "00___NUMERIC___id_05___6", "61": "00___NUMERIC___id_05___7", "62": "00___NUMERIC___id_05___8", "63": "00___NUMERIC___id_05___9", "64": "01___CATEGORICAL___bin_0___0", "65": "01___CATEGORICAL___bin_0___1", "66": "02___CATEGORICAL___bin_1___0", "67": "02___CATEGORICAL___bin_1___1", "68": "03___CATEGORICAL___bin_2___0", "69": "03___CATEGORICAL___bin_2___1", "70": "04___CATEGORICAL___bin_3___F", "71": "04___CATEGORICAL___bin_3___T", "72": "05___CATEGORICAL___bin_4___N", "73": "05___CATEGORICAL___bin_4___Y", "74": "06___CATEGORICAL___nom_0___Blue", "75": "06___CATEGORICAL___nom_0___Green", "76": "06___CATEGORICAL___nom_0___Red", "77": "07___CATEGORICAL___nom_1___Circle", "78": "07___CATEGORICAL___nom_1___Polygon", "79": "07___CATEGORICAL___nom_1___Square", "80": "07___CATEGORICAL___nom_1___Star", "81": "07___CATEGORICAL___nom_1___Trapezoid", "82": "07___CATEGORICAL___nom_1___Triangle", "83": "08___CATEGORICAL___nom_2___Axolotl", "84": "08___CATEGORICAL___nom_2___Cat", "85": "08___CATEGORICAL___nom_2___Dog", "86": "08___CATEGORICAL___nom_2___Hamster", "87": "08___CATEGORICAL___nom_2___Lion", "88": "08___CATEGORICAL___nom_2___Snake", "89": "09___CATEGORICAL___nom_3___Canada", "90": "09___CATEGORICAL___nom_3___China", "91": "09___CATEGORICAL___nom_3___Costa Rica", "92": "09___CATEGORICAL___nom_3___Finland", "93": "09___CATEGORICAL___nom_3___India", "94": "09___CATEGORICAL___nom_3___Russia", "95": "10___CATEGORICAL___nom_4___Bassoon", "96": "10___CATEGORICAL___nom_4___Oboe", "97": "10___CATEGORICAL___nom_4___Piano", "98": "10___CATEGORICAL___nom_4___Theremin", "99": "11___CATEGORICAL___nom_5___005dd4ce3", "100": "11___CATEGORICAL___nom_5___037bd73d8", "101": "11___CATEGORICAL___nom_5___05950689f", "102": "11___CATEGORICAL___nom_5___05d5943a3", "103": "11___CATEGORICAL___nom_5___06eeaf0aa", "104": "11___CATEGORICAL___nom_5___075ceb58b", "105": "11___CATEGORICAL___nom_5___077fd9465", "106": "11___CATEGORICAL___nom_5___0870880f6", "107": "11___CATEGORICAL___nom_5___0870b0a5d", "108": "11___CATEGORICAL___nom_5___09a4ad97d", "109": "11___CATEGORICAL___nom_5___09ed0a686", "110": "11___CATEGORICAL___nom_5___0b3bec656", "111": "11___CATEGORICAL___nom_5___0bdf8165a", "112": "11___CATEGORICAL___nom_5___0de4acd31", "113": "11___CATEGORICAL___nom_5___0de5598a9", "114": "11___CATEGORICAL___nom_5___0dee9b39a", "115": "11___CATEGORICAL___nom_5___0eb46e992", "116": "11___CATEGORICAL___nom_5___0ef5c1879", "117": "11___CATEGORICAL___nom_5___115a252ba", "118": "11___CATEGORICAL___nom_5___116f7e3e2", "119": "11___CATEGORICAL___nom_5___1305d6e77", "120": "11___CATEGORICAL___nom_5___159a7306f", "121": "11___CATEGORICAL___nom_5___176809a41", "122": "11___CATEGORICAL___nom_5___17a3709ae", "123": "11___CATEGORICAL___nom_5___185ba0a59", "124": "11___CATEGORICAL___nom_5___19db35594", "125": "11___CATEGORICAL___nom_5___1bd1068d9", "126": "11___CATEGORICAL___nom_5___1e6cb96e8", "127": "11___CATEGORICAL___nom_5___1f1702d2f", "128": "11___CATEGORICAL___nom_5___1fd0233cd", "129": "11___CATEGORICAL___nom_5___200009fc3", "130": "11___CATEGORICAL___nom_5___20b10a832", "131": "11___CATEGORICAL___nom_5___2979f0d45", "132": "11___CATEGORICAL___nom_5___29e7f8525", "133": "11___CATEGORICAL___nom_5___2a0e95ba1", "134": "11___CATEGORICAL___nom_5___2cac4af40", "135": "11___CATEGORICAL___nom_5___2cadfed8e", "136": "11___CATEGORICAL___nom_5___2cc9e16b9", "137": "11___CATEGORICAL___nom_5___2d61990e2", "138": "11___CATEGORICAL___nom_5___2e7f4d636", "139": "11___CATEGORICAL___nom_5___2ff007c26", "140": "11___CATEGORICAL___nom_5___30a15b6bd", "141": "11___CATEGORICAL___nom_5___30a530eab", "142": "11___CATEGORICAL___nom_5___321bf770e", "143": "11___CATEGORICAL___nom_5___3263bdce5", "144": "11___CATEGORICAL___nom_5___3271e5526", "145": "11___CATEGORICAL___nom_5___3283ca434", "146": "11___CATEGORICAL___nom_5___33adb4760", "147": "11___CATEGORICAL___nom_5___34ad60330", "148": "11___CATEGORICAL___nom_5___3585ff84b", "149": "11___CATEGORICAL___nom_5___35f65a9bf", "150": "11___CATEGORICAL___nom_5___3685a0904", "151": "11___CATEGORICAL___nom_5___372f6d6ce", "152": "11___CATEGORICAL___nom_5___39647c92a", "153": "11___CATEGORICAL___nom_5___3aa9329e2", "154": "11___CATEGORICAL___nom_5___3aabfa2fc", "155": "11___CATEGORICAL___nom_5___3b5632a0c", "156": "11___CATEGORICAL___nom_5___3fef1a765", "157": "11___CATEGORICAL___nom_5___40e0157b1", "158": "11___CATEGORICAL___nom_5___416a8f3ab", "159": "11___CATEGORICAL___nom_5___4173a0252", "160": "11___CATEGORICAL___nom_5___4464569ee", "161": "11___CATEGORICAL___nom_5___448a66834", "162": "11___CATEGORICAL___nom_5___4604905e7", "163": "11___CATEGORICAL___nom_5___46bd3558d", "164": "11___CATEGORICAL___nom_5___46cab09da", "165": "11___CATEGORICAL___nom_5___472efea17", "166": "11___CATEGORICAL___nom_5___475e79160", "167": "11___CATEGORICAL___nom_5___479fd7aea", "168": "11___CATEGORICAL___nom_5___4845cc770", "169": "11___CATEGORICAL___nom_5___488406659", "170": "11___CATEGORICAL___nom_5___493de6347", "171": "11___CATEGORICAL___nom_5___49f4b29cc", "172": "11___CATEGORICAL___nom_5___4e1b529f6", "173": "11___CATEGORICAL___nom_5___4e28ceffa", "174": "11___CATEGORICAL___nom_5___4ebe94c28", "175": "11___CATEGORICAL___nom_5___4f2b65e1e", "176": "11___CATEGORICAL___nom_5___4f7d91943", "177": "11___CATEGORICAL___nom_5___50f116bcf", "178": "11___CATEGORICAL___nom_5___524b3f349", "179": "11___CATEGORICAL___nom_5___527ded12a", "180": "11___CATEGORICAL___nom_5___5331f98fb", "181": "11___CATEGORICAL___nom_5___534be2753", "182": "11___CATEGORICAL___nom_5___552e3fdc9", "183": "11___CATEGORICAL___nom_5___568550f04", "184": "11___CATEGORICAL___nom_5___586b51342", "185": "11___CATEGORICAL___nom_5___59497d53c", "186": "11___CATEGORICAL___nom_5___59e434d8a", "187": "11___CATEGORICAL___nom_5___5a466e166", "188": "11___CATEGORICAL___nom_5___5a94fc1d9", "189": "11___CATEGORICAL___nom_5___5b0f5acd5", "190": "11___CATEGORICAL___nom_5___5b1a9f841", "191": "11___CATEGORICAL___nom_5___5d18641ff", "192": "11___CATEGORICAL___nom_5___5f7065a42", "193": "11___CATEGORICAL___nom_5___6020a8124", "194": "11___CATEGORICAL___nom_5___60a44c8f4", "195": "11___CATEGORICAL___nom_5___63f642dd9", "196": "11___CATEGORICAL___nom_5___640e1fdd5", "197": "11___CATEGORICAL___nom_5___66669a44f", "198": "11___CATEGORICAL___nom_5___6a2269152", "199": "11___CATEGORICAL___nom_5___6c90f81cd", "200": "11___CATEGORICAL___nom_5___6cd0619e0", "201": "11___CATEGORICAL___nom_5___6f70dc2df", "202": "11___CATEGORICAL___nom_5___6fec43dd8", "203": "11___CATEGORICAL___nom_5___713ad10a7", "204": "11___CATEGORICAL___nom_5___71583d387", "205": "11___CATEGORICAL___nom_5___72f8028dc", "206": "11___CATEGORICAL___nom_5___740fb99a9", "207": "11___CATEGORICAL___nom_5___74bd42d5f", "208": "11___CATEGORICAL___nom_5___76be0b8b1", "209": "11___CATEGORICAL___nom_5___7741f57bd", "210": "11___CATEGORICAL___nom_5___778fdbe56", "211": "11___CATEGORICAL___nom_5___77b08badd", "212": "11___CATEGORICAL___nom_5___79923828f", "213": "11___CATEGORICAL___nom_5___7a12c88d2", "214": "11___CATEGORICAL___nom_5___7da3e4aec", "215": "11___CATEGORICAL___nom_5___7e9cb0f9a", "216": "11___CATEGORICAL___nom_5___7ee26092e", "217": "11___CATEGORICAL___nom_5___81264f81f", "218": "11___CATEGORICAL___nom_5___81f9d3312", "219": "11___CATEGORICAL___nom_5___8266050c6", "220": "11___CATEGORICAL___nom_5___82d1a6dbb", "221": "11___CATEGORICAL___nom_5___83b38aa6b", "222": "11___CATEGORICAL___nom_5___84b0081ad", "223": "11___CATEGORICAL___nom_5___85159d577", "224": "11___CATEGORICAL___nom_5___8573fa81a", "225": "11___CATEGORICAL___nom_5___88707c9ab", "226": "11___CATEGORICAL___nom_5___88917a066", "227": "11___CATEGORICAL___nom_5___88f104c00", "228": "11___CATEGORICAL___nom_5___8cf6c9f74", "229": "11___CATEGORICAL___nom_5___8d5d9f3db", "230": "11___CATEGORICAL___nom_5___8dcf8adfb", "231": "11___CATEGORICAL___nom_5___908a1b9c9", "232": "11___CATEGORICAL___nom_5___91a20b464", "233": "11___CATEGORICAL___nom_5___91bde92fa", "234": "11___CATEGORICAL___nom_5___91c80026f", "235": "11___CATEGORICAL___nom_5___91ea3e4dd", "236": "11___CATEGORICAL___nom_5___92190168b", "237": "11___CATEGORICAL___nom_5___924346656", "238": "11___CATEGORICAL___nom_5___9347491f2", "239": "11___CATEGORICAL___nom_5___96c73114c", "240": "11___CATEGORICAL___nom_5___96c83ac09", "241": "11___CATEGORICAL___nom_5___9ad6558d1", "242": "11___CATEGORICAL___nom_5___9ba4e87a7", "243": "11___CATEGORICAL___nom_5___9bb7ea2da", "244": "11___CATEGORICAL___nom_5___9ecc58be1", "245": "11___CATEGORICAL___nom_5___a21564cab", "246": "11___CATEGORICAL___nom_5___a3471b9d9", "247": "11___CATEGORICAL___nom_5___a35c346aa", "248": "11___CATEGORICAL___nom_5___a3f640358", "249": "11___CATEGORICAL___nom_5___a51e7974e", "250": "11___CATEGORICAL___nom_5___a5c276589", "251": "11___CATEGORICAL___nom_5___a93b89fc9", "252": "11___CATEGORICAL___nom_5___a9ed6dfea", "253": "11___CATEGORICAL___nom_5___ad95dc0ee", "254": "11___CATEGORICAL___nom_5___ade526ba7", "255": "11___CATEGORICAL___nom_5___af088d192", "256": "11___CATEGORICAL___nom_5___b0c8dba76", "257": "11___CATEGORICAL___nom_5___b0faff28f", "258": "11___CATEGORICAL___nom_5___b3b4d25d0", "259": "11___CATEGORICAL___nom_5___b4c8e6595", "260": "11___CATEGORICAL___nom_5___b7bb45938", "261": "11___CATEGORICAL___nom_5___b8d451029", "262": "11___CATEGORICAL___nom_5___b97f51ac4", "263": "11___CATEGORICAL___nom_5___baab29d3d", "264": "11___CATEGORICAL___nom_5___bd40c81f3", "265": "11___CATEGORICAL___nom_5___bd7740b93", "266": "11___CATEGORICAL___nom_5___bdb9fef4a", "267": "11___CATEGORICAL___nom_5___be4578201", "268": "11___CATEGORICAL___nom_5___be5592604", "269": "11___CATEGORICAL___nom_5___c0534106d", "270": "11___CATEGORICAL___nom_5___c08ba4f4c", "271": "11___CATEGORICAL___nom_5___c2843dc45", "272": "11___CATEGORICAL___nom_5___c5725677e", "273": "11___CATEGORICAL___nom_5___ca82ad111", "274": "11___CATEGORICAL___nom_5___caf83c0b5", "275": "11___CATEGORICAL___nom_5___d1b1709e8", "276": "11___CATEGORICAL___nom_5___d3079098d", "277": "11___CATEGORICAL___nom_5___d372c8993", "278": "11___CATEGORICAL___nom_5___d9becff68", "279": "11___CATEGORICAL___nom_5___da60580a8", "280": "11___CATEGORICAL___nom_5___db5e25328", "281": "11___CATEGORICAL___nom_5___dbc448931", "282": "11___CATEGORICAL___nom_5___dbfb714a4", "283": "11___CATEGORICAL___nom_5___dc07effb0", "284": "11___CATEGORICAL___nom_5___dd500b26a", "285": "11___CATEGORICAL___nom_5___ddac78300", "286": "11___CATEGORICAL___nom_5___de04b8750", "287": "11___CATEGORICAL___nom_5___defc6dd20", "288": "11___CATEGORICAL___nom_5___df51b96fc", "289": "11___CATEGORICAL___nom_5___e08092732", "290": "11___CATEGORICAL___nom_5___e0efe9d20", "291": "11___CATEGORICAL___nom_5___e1558b071", "292": "11___CATEGORICAL___nom_5___e428c040e", "293": "11___CATEGORICAL___nom_5___e52fbf1c8", "294": "11___CATEGORICAL___nom_5___e5b29c42b", "295": "11___CATEGORICAL___nom_5___e6f45aa26", "296": "11___CATEGORICAL___nom_5___e70a6270d", "297": "11___CATEGORICAL___nom_5___e7d9ca356", "298": "11___CATEGORICAL___nom_5___e844a1f66", "299": "11___CATEGORICAL___nom_5___e85ec20b5", "300": "11___CATEGORICAL___nom_5___e9c6fe0f7", "301": "11___CATEGORICAL___nom_5___e9f44a509", "302": "11___CATEGORICAL___nom_5___ead12da87", "303": "11___CATEGORICAL___nom_5___eb0004a0b", "304": "11___CATEGORICAL___nom_5___eb69430d6", "305": "11___CATEGORICAL___nom_5___ee55b9d67", "306": "11___CATEGORICAL___nom_5___ef38568df", "307": "11___CATEGORICAL___nom_5___f0c1ceee4", "308": "11___CATEGORICAL___nom_5___f12246592", "309": "11___CATEGORICAL___nom_5___f2a6d797b", "310": "11___CATEGORICAL___nom_5___f2d59cf51", "311": "11___CATEGORICAL___nom_5___f50eb07ae", "312": "11___CATEGORICAL___nom_5___f6c524860", "313": "11___CATEGORICAL___nom_5___f710fca39", "314": "11___CATEGORICAL___nom_5___f7821e391", "315": "11___CATEGORICAL___nom_5___f802a9849", "316": "11___CATEGORICAL___nom_5___f8faea16f", "317": "11___CATEGORICAL___nom_5___f9d17bb93", "318": "11___CATEGORICAL___nom_5___f9e5266f9", "319": "11___CATEGORICAL___nom_5___fa0a88fe9", "320": "11___CATEGORICAL___nom_5___fd04a970f", "321": "12___CATEGORICAL___nom_6___0000ee65f", "322": "12___CATEGORICAL___nom_6___00e9c15b8", "323": "12___CATEGORICAL___nom_6___01455237a", "324": "12___CATEGORICAL___nom_6___017eb57f0", "325": "12___CATEGORICAL___nom_6___0249d8675", "326": "12___CATEGORICAL___nom_6___02d689659", "327": "12___CATEGORICAL___nom_6___0302f1ffc", "328": "12___CATEGORICAL___nom_6___031d49dfc", "329": "12___CATEGORICAL___nom_6___0516fa0d8", "330": "12___CATEGORICAL___nom_6___062cd9a70", "331": "12___CATEGORICAL___nom_6___063f4307d", "332": "12___CATEGORICAL___nom_6___06835761e", "333": "12___CATEGORICAL___nom_6___077e720aa", "334": "12___CATEGORICAL___nom_6___08b282a6c", "335": "12___CATEGORICAL___nom_6___0922e3cb8", "336": "12___CATEGORICAL___nom_6___0958071b5", "337": "12___CATEGORICAL___nom_6___097ff91b3", "338": "12___CATEGORICAL___nom_6___09e796196", "339": "12___CATEGORICAL___nom_6___09f69436c", "340": "12___CATEGORICAL___nom_6___0aeb8fe13", "341": "12___CATEGORICAL___nom_6___0b10fcecc", "342": "12___CATEGORICAL___nom_6___0b17eaec7", "343": "12___CATEGORICAL___nom_6___0b23e3352", "344": "12___CATEGORICAL___nom_6___0bcb379d8", "345": "12___CATEGORICAL___nom_6___0d50f61fd", "346": "12___CATEGORICAL___nom_6___0e2f036b5", "347": "12___CATEGORICAL___nom_6___0ed70b7b1", "348": "12___CATEGORICAL___nom_6___0ef3dda96", "349": "12___CATEGORICAL___nom_6___113deddc9", "350": "12___CATEGORICAL___nom_6___11698a0b3", "351": "12___CATEGORICAL___nom_6___116d9fcd9", "352": "12___CATEGORICAL___nom_6___126a4f83d", "353": "12___CATEGORICAL___nom_6___126c2e512", "354": "12___CATEGORICAL___nom_6___12d88c9c3", "355": "12___CATEGORICAL___nom_6___144279ac1", "356": "12___CATEGORICAL___nom_6___145d17afb", "357": "12___CATEGORICAL___nom_6___153316f52", "358": "12___CATEGORICAL___nom_6___1537295c3", "359": "12___CATEGORICAL___nom_6___1573e6c5f", "360": "12___CATEGORICAL___nom_6___15ea6e2bb", "361": "12___CATEGORICAL___nom_6___1611d2b45", "362": "12___CATEGORICAL___nom_6___162fc2192", "363": "12___CATEGORICAL___nom_6___163b28322", "364": "12___CATEGORICAL___nom_6___16dfb662a", "365": "12___CATEGORICAL___nom_6___1795ef28b", "366": "12___CATEGORICAL___nom_6___17e0c4fa9", "367": "12___CATEGORICAL___nom_6___180a3d6cb", "368": "12___CATEGORICAL___nom_6___1869e63b0", "369": "12___CATEGORICAL___nom_6___18a901239", "370": "12___CATEGORICAL___nom_6___19231be54", "371": "12___CATEGORICAL___nom_6___19505136a", "372": "12___CATEGORICAL___nom_6___1ab5e5ad6", "373": "12___CATEGORICAL___nom_6___1abac47d0", "374": "12___CATEGORICAL___nom_6___1ad744242", "375": "12___CATEGORICAL___nom_6___1b36c0b8c", "376": "12___CATEGORICAL___nom_6___1c34a67d7", "377": "12___CATEGORICAL___nom_6___1c7f1ab58", "378": "12___CATEGORICAL___nom_6___1e5e03a86", "379": "12___CATEGORICAL___nom_6___1ea13ded7", "380": "12___CATEGORICAL___nom_6___1f2e3f148", "381": "12___CATEGORICAL___nom_6___1f40b9ca8", "382": "12___CATEGORICAL___nom_6___1fe17a1fd", "383": "12___CATEGORICAL___nom_6___1ff467489", "384": "12___CATEGORICAL___nom_6___20636817e", "385": "12___CATEGORICAL___nom_6___20dc501c6", "386": "12___CATEGORICAL___nom_6___2119a6f87", "387": "12___CATEGORICAL___nom_6___214f24d39", "388": "12___CATEGORICAL___nom_6___21cb526c2", "389": "12___CATEGORICAL___nom_6___21e2c2d57", "390": "12___CATEGORICAL___nom_6___2268327b2", "391": "12___CATEGORICAL___nom_6___231233ca9", "392": "12___CATEGORICAL___nom_6___23311af90", "393": "12___CATEGORICAL___nom_6___2473094a9", "394": "12___CATEGORICAL___nom_6___24a1bea30", "395": "12___CATEGORICAL___nom_6___2546024d1", "396": "12___CATEGORICAL___nom_6___25d3a1087", "397": "12___CATEGORICAL___nom_6___26bf5ddd9", "398": "12___CATEGORICAL___nom_6___27179d6e5", "399": "12___CATEGORICAL___nom_6___27828c378", "400": "12___CATEGORICAL___nom_6___27e7dbafa", "401": "12___CATEGORICAL___nom_6___2837cf7b8", "402": "12___CATEGORICAL___nom_6___28630a5c8", "403": "12___CATEGORICAL___nom_6___28645754b", "404": "12___CATEGORICAL___nom_6___28b8e5350", "405": "12___CATEGORICAL___nom_6___292dea6ab", "406": "12___CATEGORICAL___nom_6___2936160c7", "407": "12___CATEGORICAL___nom_6___29a854620", "408": "12___CATEGORICAL___nom_6___29b650229", "409": "12___CATEGORICAL___nom_6___29e27ff9d", "410": "12___CATEGORICAL___nom_6___2a22b315e", "411": "12___CATEGORICAL___nom_6___2ae2bd37c", "412": "12___CATEGORICAL___nom_6___2bdc0a5d0", "413": "12___CATEGORICAL___nom_6___2c4223dbd", "414": "12___CATEGORICAL___nom_6___2c7fb8434", "415": "12___CATEGORICAL___nom_6___2cd425e1f", "416": "12___CATEGORICAL___nom_6___2d8a0cf5a", "417": "12___CATEGORICAL___nom_6___2d9852300", "418": "12___CATEGORICAL___nom_6___2df6f79a2", "419": "12___CATEGORICAL___nom_6___2eadb68c5", "420": "12___CATEGORICAL___nom_6___2ed5a94b0", "421": "12___CATEGORICAL___nom_6___2f6efc190", "422": "12___CATEGORICAL___nom_6___309707034", "423": "12___CATEGORICAL___nom_6___309e105f1", "424": "12___CATEGORICAL___nom_6___310b1a988", "425": "12___CATEGORICAL___nom_6___322121abf", "426": "12___CATEGORICAL___nom_6___329124d64", "427": "12___CATEGORICAL___nom_6___32b4b12b1", "428": "12___CATEGORICAL___nom_6___32be571ee", "429": "12___CATEGORICAL___nom_6___32db19124", "430": "12___CATEGORICAL___nom_6___338b8a987", "431": "12___CATEGORICAL___nom_6___3393a0f78", "432": "12___CATEGORICAL___nom_6___339c0fa05", "433": "12___CATEGORICAL___nom_6___34256b89f", "434": "12___CATEGORICAL___nom_6___35f33a8ca", "435": "12___CATEGORICAL___nom_6___36282e811", "436": "12___CATEGORICAL___nom_6___36df19a6e", "437": "12___CATEGORICAL___nom_6___37868097a", "438": "12___CATEGORICAL___nom_6___395941181", "439": "12___CATEGORICAL___nom_6___39981f199", "440": "12___CATEGORICAL___nom_6___3aa0689eb", "441": "12___CATEGORICAL___nom_6___3ac1b8814", "442": "12___CATEGORICAL___nom_6___3ae0ef9f1", "443": "12___CATEGORICAL___nom_6___3afd0489b", "444": "12___CATEGORICAL___nom_6___3b9693870", "445": "12___CATEGORICAL___nom_6___3bac0bd8e", "446": "12___CATEGORICAL___nom_6___3c1c64eaa", "447": "12___CATEGORICAL___nom_6___3c2b12c56", "448": "12___CATEGORICAL___nom_6___3c5d81a52", "449": "12___CATEGORICAL___nom_6___3c7643929", "450": "12___CATEGORICAL___nom_6___3e2b4aac9", "451": "12___CATEGORICAL___nom_6___3e41282ec", "452": "12___CATEGORICAL___nom_6___3e44d44eb", "453": "12___CATEGORICAL___nom_6___3e6a88574", "454": "12___CATEGORICAL___nom_6___3fe2d05f7", "455": "12___CATEGORICAL___nom_6___3fe8e9cba", "456": "12___CATEGORICAL___nom_6___40994d768", "457": "12___CATEGORICAL___nom_6___40ac3fcd5", "458": "12___CATEGORICAL___nom_6___418e9e936", "459": "12___CATEGORICAL___nom_6___42b1cc2fd", "460": "12___CATEGORICAL___nom_6___435fd233e", "461": "12___CATEGORICAL___nom_6___43744dfd9", "462": "12___CATEGORICAL___nom_6___437d8df71", "463": "12___CATEGORICAL___nom_6___43b8c397b", "464": "12___CATEGORICAL___nom_6___44e4c0bba", "465": "12___CATEGORICAL___nom_6___46c89ef8d", "466": "12___CATEGORICAL___nom_6___485fc6466", "467": "12___CATEGORICAL___nom_6___487c32dfa", "468": "12___CATEGORICAL___nom_6___498b2bdcb", "469": "12___CATEGORICAL___nom_6___4990652ec", "470": "12___CATEGORICAL___nom_6___49bceb215", "471": "12___CATEGORICAL___nom_6___49d1a98ef", "472": "12___CATEGORICAL___nom_6___4abed74f5", "473": "12___CATEGORICAL___nom_6___4b967eac4", "474": "12___CATEGORICAL___nom_6___4c183f1ef", "475": "12___CATEGORICAL___nom_6___4c1bdbe7b", "476": "12___CATEGORICAL___nom_6___4c6d8f959", "477": "12___CATEGORICAL___nom_6___4cb66e369", "478": "12___CATEGORICAL___nom_6___4cf47e292", "479": "12___CATEGORICAL___nom_6___4d5fc69ae", "480": "12___CATEGORICAL___nom_6___4daee3baf", "481": "12___CATEGORICAL___nom_6___4dcab4fc8", "482": "12___CATEGORICAL___nom_6___4e6cc8696", "483": "12___CATEGORICAL___nom_6___4f849ad2d", "484": "12___CATEGORICAL___nom_6___4fa3092a4", "485": "12___CATEGORICAL___nom_6___508ff88dc", "486": "12___CATEGORICAL___nom_6___50d7ad46a", "487": "12___CATEGORICAL___nom_6___50e49ea04", "488": "12___CATEGORICAL___nom_6___51477cd88", "489": "12___CATEGORICAL___nom_6___5194690a0", "490": "12___CATEGORICAL___nom_6___51d5f02c1", "491": "12___CATEGORICAL___nom_6___51f28e64c", "492": "12___CATEGORICAL___nom_6___520806ce2", "493": "12___CATEGORICAL___nom_6___527a42dc2", "494": "12___CATEGORICAL___nom_6___54474e8d8", "495": "12___CATEGORICAL___nom_6___54efb1985", "496": "12___CATEGORICAL___nom_6___556aa5d7a", "497": "12___CATEGORICAL___nom_6___55a24a71b", "498": "12___CATEGORICAL___nom_6___55eed5058", "499": "12___CATEGORICAL___nom_6___565a89e93", "500": "12___CATEGORICAL___nom_6___5755f93b2", "501": "12___CATEGORICAL___nom_6___576b27b37", "502": "12___CATEGORICAL___nom_6___5786b10d7", "503": "12___CATEGORICAL___nom_6___57aa15561", "504": "12___CATEGORICAL___nom_6___5a49dd8f6", "505": "12___CATEGORICAL___nom_6___5a5e620b3", "506": "12___CATEGORICAL___nom_6___5b2d457f3", "507": "12___CATEGORICAL___nom_6___5c4ee13e3", "508": "12___CATEGORICAL___nom_6___5cabda141", "509": "12___CATEGORICAL___nom_6___5cbbea089", "510": "12___CATEGORICAL___nom_6___5d47a598c", "511": "12___CATEGORICAL___nom_6___5d7c5c023", "512": "12___CATEGORICAL___nom_6___5e881b059", "513": "12___CATEGORICAL___nom_6___5f57e7d4f", "514": "12___CATEGORICAL___nom_6___5fa8beadb", "515": "12___CATEGORICAL___nom_6___5fc007fd3", "516": "12___CATEGORICAL___nom_6___5fd7600de", "517": "12___CATEGORICAL___nom_6___5ff2c0a8c", "518": "12___CATEGORICAL___nom_6___603232dea", "519": "12___CATEGORICAL___nom_6___6046454de", "520": "12___CATEGORICAL___nom_6___6057ca561", "521": "12___CATEGORICAL___nom_6___612641073", "522": "12___CATEGORICAL___nom_6___628f3170f", "523": "12___CATEGORICAL___nom_6___63d0e6105", "524": "12___CATEGORICAL___nom_6___642fcc7be", "525": "12___CATEGORICAL___nom_6___65aae1692", "526": "12___CATEGORICAL___nom_6___66e2654cb", "527": "12___CATEGORICAL___nom_6___67721d105", "528": "12___CATEGORICAL___nom_6___67bb6c9d7", "529": "12___CATEGORICAL___nom_6___687eaba3e", "530": "12___CATEGORICAL___nom_6___68dd873e4", "531": "12___CATEGORICAL___nom_6___6a53b5f5c", "532": "12___CATEGORICAL___nom_6___6c0354890", "533": "12___CATEGORICAL___nom_6___6c1a5aab7", "534": "12___CATEGORICAL___nom_6___6c90b0073", "535": "12___CATEGORICAL___nom_6___6d2cd10c5", "536": "12___CATEGORICAL___nom_6___6d7f8c086", "537": "12___CATEGORICAL___nom_6___6ea52a806", "538": "12___CATEGORICAL___nom_6___6eaaa8418", "539": "12___CATEGORICAL___nom_6___6f438920f", "540": "12___CATEGORICAL___nom_6___705cb7579", "541": "12___CATEGORICAL___nom_6___708e87b0e", "542": "12___CATEGORICAL___nom_6___70994b28a", "543": "12___CATEGORICAL___nom_6___70a040495", "544": "12___CATEGORICAL___nom_6___70a942fc1", "545": "12___CATEGORICAL___nom_6___7112aaf8e", "546": "12___CATEGORICAL___nom_6___71534b2a8", "547": "12___CATEGORICAL___nom_6___7185a30dc", "548": "12___CATEGORICAL___nom_6___718fd9453", "549": "12___CATEGORICAL___nom_6___71c68195d", "550": "12___CATEGORICAL___nom_6___7322ea1c9", "551": "12___CATEGORICAL___nom_6___73d7ca889", "552": "12___CATEGORICAL___nom_6___73dd803d0", "553": "12___CATEGORICAL___nom_6___7433a98da", "554": "12___CATEGORICAL___nom_6___74e0be86d", "555": "12___CATEGORICAL___nom_6___74e5a0bce", "556": "12___CATEGORICAL___nom_6___75645dad3", "557": "12___CATEGORICAL___nom_6___76ef650e6", "558": "12___CATEGORICAL___nom_6___77ab97a87", "559": "12___CATEGORICAL___nom_6___77ad092c1", "560": "12___CATEGORICAL___nom_6___782664588", "561": "12___CATEGORICAL___nom_6___78500847e", "562": "12___CATEGORICAL___nom_6___788ba7aea", "563": "12___CATEGORICAL___nom_6___78acf1908", "564": "12___CATEGORICAL___nom_6___78e45cd66", "565": "12___CATEGORICAL___nom_6___7909ef46d", "566": "12___CATEGORICAL___nom_6___79a82b7c0", "567": "12___CATEGORICAL___nom_6___7a8736321", "568": "12___CATEGORICAL___nom_6___7cb06ca3c", "569": "12___CATEGORICAL___nom_6___7cd1571c9", "570": "12___CATEGORICAL___nom_6___7d13ad097", "571": "12___CATEGORICAL___nom_6___7d8bc814a", "572": "12___CATEGORICAL___nom_6___7dd3f58e9", "573": "12___CATEGORICAL___nom_6___7e240024b", "574": "12___CATEGORICAL___nom_6___7f3c463a8", "575": "12___CATEGORICAL___nom_6___800577110", "576": "12___CATEGORICAL___nom_6___803f6cece", "577": "12___CATEGORICAL___nom_6___8082e0409", "578": "12___CATEGORICAL___nom_6___80b2270f0", "579": "12___CATEGORICAL___nom_6___81d59974c", "580": "12___CATEGORICAL___nom_6___82f75f00e", "581": "12___CATEGORICAL___nom_6___8367b78fc", "582": "12___CATEGORICAL___nom_6___839a6bcdb", "583": "12___CATEGORICAL___nom_6___83f07ed50", "584": "12___CATEGORICAL___nom_6___8518cecf3", "585": "12___CATEGORICAL___nom_6___854f72f28", "586": "12___CATEGORICAL___nom_6___8584a02f4", "587": "12___CATEGORICAL___nom_6___85885b27e", "588": "12___CATEGORICAL___nom_6___86021cf04", "589": "12___CATEGORICAL___nom_6___860bb37b4", "590": "12___CATEGORICAL___nom_6___8817e18d1", "591": "12___CATEGORICAL___nom_6___882ce2ad7", "592": "12___CATEGORICAL___nom_6___89a937a9f", "593": "12___CATEGORICAL___nom_6___89e65bb86", "594": "12___CATEGORICAL___nom_6___8a34317cb", "595": "12___CATEGORICAL___nom_6___8ad083b20", "596": "12___CATEGORICAL___nom_6___8bb163a87", "597": "12___CATEGORICAL___nom_6___8bbe5580d", "598": "12___CATEGORICAL___nom_6___8bd314488", "599": "12___CATEGORICAL___nom_6___8c8aa1d64", "600": "12___CATEGORICAL___nom_6___8c9d16cc3", "601": "12___CATEGORICAL___nom_6___8cc791aa8", "602": "12___CATEGORICAL___nom_6___8d1b72979", "603": "12___CATEGORICAL___nom_6___8ed6221ae", "604": "12___CATEGORICAL___nom_6___8f897ec3c", "605": "12___CATEGORICAL___nom_6___8fb440e53", "606": "12___CATEGORICAL___nom_6___8fbaca82e", "607": "12___CATEGORICAL___nom_6___8fd64cb59", "608": "12___CATEGORICAL___nom_6___8fec7bc42", "609": "12___CATEGORICAL___nom_6___906c833b2", "610": "12___CATEGORICAL___nom_6___907d87214", "611": "12___CATEGORICAL___nom_6___90ba6c9a6", "612": "12___CATEGORICAL___nom_6___91e1a9d16", "613": "12___CATEGORICAL___nom_6___9218550d8", "614": "12___CATEGORICAL___nom_6___92f461454", "615": "12___CATEGORICAL___nom_6___944239e54", "616": "12___CATEGORICAL___nom_6___944531331", "617": "12___CATEGORICAL___nom_6___9448b8e3b", "618": "12___CATEGORICAL___nom_6___945aa2bc5", "619": "12___CATEGORICAL___nom_6___95572215a", "620": "12___CATEGORICAL___nom_6___95a263224", "621": "12___CATEGORICAL___nom_6___966f4a973", "622": "12___CATEGORICAL___nom_6___96abdfa66", "623": "12___CATEGORICAL___nom_6___96c110558", "624": "12___CATEGORICAL___nom_6___96d5497a4", "625": "12___CATEGORICAL___nom_6___975346729", "626": "12___CATEGORICAL___nom_6___97b6a3518", "627": "12___CATEGORICAL___nom_6___985c40910", "628": "12___CATEGORICAL___nom_6___987d29cca", "629": "12___CATEGORICAL___nom_6___9882f1fa0", "630": "12___CATEGORICAL___nom_6___989a51202", "631": "12___CATEGORICAL___nom_6___9972df3b0", "632": "12___CATEGORICAL___nom_6___99fffb9e9", "633": "12___CATEGORICAL___nom_6___9a16c7c8f", "634": "12___CATEGORICAL___nom_6___9a20c66da", "635": "12___CATEGORICAL___nom_6___9a70de492", "636": "12___CATEGORICAL___nom_6___9a92bb693", "637": "12___CATEGORICAL___nom_6___9abb2ac1a", "638": "12___CATEGORICAL___nom_6___9afd9530d", "639": "12___CATEGORICAL___nom_6___9b1c3c8b7", "640": "12___CATEGORICAL___nom_6___9c5ea36f8", "641": "12___CATEGORICAL___nom_6___9ceb19dd6", "642": "12___CATEGORICAL___nom_6___9d6fa150a", "643": "12___CATEGORICAL___nom_6___9e0a099c7", "644": "12___CATEGORICAL___nom_6___9f53d30ad", "645": "12___CATEGORICAL___nom_6___9fbd66490", "646": "12___CATEGORICAL___nom_6___a028c07af", "647": "12___CATEGORICAL___nom_6___a148d86df", "648": "12___CATEGORICAL___nom_6___a19d81efe", "649": "12___CATEGORICAL___nom_6___a20513779", "650": "12___CATEGORICAL___nom_6___a26bedd00", "651": "12___CATEGORICAL___nom_6___a405b7cf0", "652": "12___CATEGORICAL___nom_6___a406a5f12", "653": "12___CATEGORICAL___nom_6___a520e2537", "654": "12___CATEGORICAL___nom_6___a566016d6", "655": "12___CATEGORICAL___nom_6___a6542cec0", "656": "12___CATEGORICAL___nom_6___a78e38dad", "657": "12___CATEGORICAL___nom_6___a9925d0e5", "658": "12___CATEGORICAL___nom_6___a9b4474f4", "659": "12___CATEGORICAL___nom_6___ac3e34eff", "660": "12___CATEGORICAL___nom_6___ac8c42404", "661": "12___CATEGORICAL___nom_6___acf5b10dd", "662": "12___CATEGORICAL___nom_6___ad1b42856", "663": "12___CATEGORICAL___nom_6___adfb4cba3", "664": "12___CATEGORICAL___nom_6___ae49fec17", "665": "12___CATEGORICAL___nom_6___ae67aec36", "666": "12___CATEGORICAL___nom_6___aed128d19", "667": "12___CATEGORICAL___nom_6___aed51f2c9", "668": "12___CATEGORICAL___nom_6___aee98fa47", "669": "12___CATEGORICAL___nom_6___af9278b96", "670": "12___CATEGORICAL___nom_6___afebf0803", "671": "12___CATEGORICAL___nom_6___b1c48d202", "672": "12___CATEGORICAL___nom_6___b1faf70a1", "673": "12___CATEGORICAL___nom_6___b238965eb", "674": "12___CATEGORICAL___nom_6___b2480a857", "675": "12___CATEGORICAL___nom_6___b2c93e83d", "676": "12___CATEGORICAL___nom_6___b300717cf", "677": "12___CATEGORICAL___nom_6___b321e8ee3", "678": "12___CATEGORICAL___nom_6___b3e59b54a", "679": "12___CATEGORICAL___nom_6___b3f15d742", "680": "12___CATEGORICAL___nom_6___b436c2568", "681": "12___CATEGORICAL___nom_6___b48077cc4", "682": "12___CATEGORICAL___nom_6___b511f5bff", "683": "12___CATEGORICAL___nom_6___b5f4a755a", "684": "12___CATEGORICAL___nom_6___b628a222c", "685": "12___CATEGORICAL___nom_6___b639793f9", "686": "12___CATEGORICAL___nom_6___b69c236cb", "687": "12___CATEGORICAL___nom_6___b73a8ae77", "688": "12___CATEGORICAL___nom_6___b7c276ed2", "689": "12___CATEGORICAL___nom_6___b7d62cb4e", "690": "12___CATEGORICAL___nom_6___b83511180", "691": "12___CATEGORICAL___nom_6___b8caba53f", "692": "12___CATEGORICAL___nom_6___b8cf041db", "693": "12___CATEGORICAL___nom_6___b9f08dc06", "694": "12___CATEGORICAL___nom_6___baef8ee7b", "695": "12___CATEGORICAL___nom_6___baf172f58", "696": "12___CATEGORICAL___nom_6___bb219c9ac", "697": "12___CATEGORICAL___nom_6___bbc311f15", "698": "12___CATEGORICAL___nom_6___bc31d6a6d", "699": "12___CATEGORICAL___nom_6___bc82e0ba0", "700": "12___CATEGORICAL___nom_6___bd47c2363", "701": "12___CATEGORICAL___nom_6___be5a0f5a9", "702": "12___CATEGORICAL___nom_6___bea839b58", "703": "12___CATEGORICAL___nom_6___beb20ea99", "704": "12___CATEGORICAL___nom_6___bedc798e7", "705": "12___CATEGORICAL___nom_6___bf82c01fa", "706": "12___CATEGORICAL___nom_6___c023e914a", "707": "12___CATEGORICAL___nom_6___c06f1b9f7", "708": "12___CATEGORICAL___nom_6___c0e4c4487", "709": "12___CATEGORICAL___nom_6___c0f1061ee", "710": "12___CATEGORICAL___nom_6___c103290d4", "711": "12___CATEGORICAL___nom_6___c135cdf77", "712": "12___CATEGORICAL___nom_6___c3517eaeb", "713": "12___CATEGORICAL___nom_6___c36cea1f7", "714": "12___CATEGORICAL___nom_6___c3c8b7b13", "715": "12___CATEGORICAL___nom_6___c5cf1fdc4", "716": "12___CATEGORICAL___nom_6___c7201df85", "717": "12___CATEGORICAL___nom_6___c73e4dfe1", "718": "12___CATEGORICAL___nom_6___c75b3104a", "719": "12___CATEGORICAL___nom_6___c79a72c72", "720": "12___CATEGORICAL___nom_6___c8436c277", "721": "12___CATEGORICAL___nom_6___c9a951efa", "722": "12___CATEGORICAL___nom_6___c9eedfbc2", "723": "12___CATEGORICAL___nom_6___cad70d692", "724": "12___CATEGORICAL___nom_6___cae4fb7f2", "725": "12___CATEGORICAL___nom_6___cbb210c0a", "726": "12___CATEGORICAL___nom_6___cc8755307", "727": "12___CATEGORICAL___nom_6___cd225807c", "728": "12___CATEGORICAL___nom_6___cd2fa6d62", "729": "12___CATEGORICAL___nom_6___cd8e3a0a7", "730": "12___CATEGORICAL___nom_6___cd94f29d1", "731": "12___CATEGORICAL___nom_6___ce528707a", "732": "12___CATEGORICAL___nom_6___cebefe5b5", "733": "12___CATEGORICAL___nom_6___cefab1020", "734": "12___CATEGORICAL___nom_6___cf82b283d", "735": "12___CATEGORICAL___nom_6___cf8b12b4e", "736": "12___CATEGORICAL___nom_6___cfc8d0828", "737": "12___CATEGORICAL___nom_6___d086fd85e", "738": "12___CATEGORICAL___nom_6___d166613dc", "739": "12___CATEGORICAL___nom_6___d173ac7ca", "740": "12___CATEGORICAL___nom_6___d213f48ed", "741": "12___CATEGORICAL___nom_6___d2c8f2916", "742": "12___CATEGORICAL___nom_6___d2ce6b1c7", "743": "12___CATEGORICAL___nom_6___d39b176b6", "744": "12___CATEGORICAL___nom_6___d405aebc1", "745": "12___CATEGORICAL___nom_6___d42f2b9ec", "746": "12___CATEGORICAL___nom_6___d43e63dc9", "747": "12___CATEGORICAL___nom_6___d44f7245a", "748": "12___CATEGORICAL___nom_6___d4d727716", "749": "12___CATEGORICAL___nom_6___d4fd01769", "750": "12___CATEGORICAL___nom_6___d5febb6ef", "751": "12___CATEGORICAL___nom_6___d6f8634af", "752": "12___CATEGORICAL___nom_6___d70a70804", "753": "12___CATEGORICAL___nom_6___d760c59b0", "754": "12___CATEGORICAL___nom_6___d76a148ab", "755": "12___CATEGORICAL___nom_6___d7fb439cc", "756": "12___CATEGORICAL___nom_6___d804d7926", "757": "12___CATEGORICAL___nom_6___d83ae1b30", "758": "12___CATEGORICAL___nom_6___d88fca3ba", "759": "12___CATEGORICAL___nom_6___d9004c5c2", "760": "12___CATEGORICAL___nom_6___d9025a066", "761": "12___CATEGORICAL___nom_6___d942d1e82", "762": "12___CATEGORICAL___nom_6___d95501ac1", "763": "12___CATEGORICAL___nom_6___d9e131846", "764": "12___CATEGORICAL___nom_6___d9e884466", "765": "12___CATEGORICAL___nom_6___db35bbdcb", "766": "12___CATEGORICAL___nom_6___db64717a3", "767": "12___CATEGORICAL___nom_6___dc0536549", "768": "12___CATEGORICAL___nom_6___dce959dcb", "769": "12___CATEGORICAL___nom_6___dd1dbed78", "770": "12___CATEGORICAL___nom_6___ddb583aa3", "771": "12___CATEGORICAL___nom_6___dee9cf5e9", "772": "12___CATEGORICAL___nom_6___df184daf2", "773": "12___CATEGORICAL___nom_6___df5b440ae", "774": "12___CATEGORICAL___nom_6___df91d98af", "775": "12___CATEGORICAL___nom_6___dfb457d2a", "776": "12___CATEGORICAL___nom_6___dfb9bd114", "777": "12___CATEGORICAL___nom_6___e0664a4d3", "778": "12___CATEGORICAL___nom_6___e10910468", "779": "12___CATEGORICAL___nom_6___e16557b2b", "780": "12___CATEGORICAL___nom_6___e19cd8107", "781": "12___CATEGORICAL___nom_6___e2559b9ab", "782": "12___CATEGORICAL___nom_6___e3396fbd5", "783": "12___CATEGORICAL___nom_6___e495d6f0f", "784": "12___CATEGORICAL___nom_6___e4d51bdd5", "785": "12___CATEGORICAL___nom_6___e550bcc1b", "786": "12___CATEGORICAL___nom_6___e63f69ba1", "787": "12___CATEGORICAL___nom_6___e7073f6a2", "788": "12___CATEGORICAL___nom_6___e77244b50", "789": "12___CATEGORICAL___nom_6___e78ce8c35", "790": "12___CATEGORICAL___nom_6___e7a7bf2e1", "791": "12___CATEGORICAL___nom_6___e866d44ea", "792": "12___CATEGORICAL___nom_6___e97824431", "793": "12___CATEGORICAL___nom_6___ea64fbdeb", "794": "12___CATEGORICAL___nom_6___ea7a1aaf6", "795": "12___CATEGORICAL___nom_6___eaa89fbcc", "796": "12___CATEGORICAL___nom_6___eaaf53f6a", "797": "12___CATEGORICAL___nom_6___eba84389c", "798": "12___CATEGORICAL___nom_6___ebd664cd6", "799": "12___CATEGORICAL___nom_6___ec416c384", "800": "12___CATEGORICAL___nom_6___ec5064acb", "801": "12___CATEGORICAL___nom_6___ec93484e7", "802": "12___CATEGORICAL___nom_6___ec97e8751", "803": "12___CATEGORICAL___nom_6___ed8157b96", "804": "12___CATEGORICAL___nom_6___edb3cf6c8", "805": "12___CATEGORICAL___nom_6___eeda68203", "806": "12___CATEGORICAL___nom_6___ef1f6146b", "807": "12___CATEGORICAL___nom_6___efa38c99d", "808": "12___CATEGORICAL___nom_6___f083d48ad", "809": "12___CATEGORICAL___nom_6___f0c4b23ef", "810": "12___CATEGORICAL___nom_6___f134870d4", "811": "12___CATEGORICAL___nom_6___f14fe8bc5", "812": "12___CATEGORICAL___nom_6___f17881964", "813": "12___CATEGORICAL___nom_6___f24d83141", "814": "12___CATEGORICAL___nom_6___f36d9a851", "815": "12___CATEGORICAL___nom_6___f425b1c8c", "816": "12___CATEGORICAL___nom_6___f461f837c", "817": "12___CATEGORICAL___nom_6___f4689e520", "818": "12___CATEGORICAL___nom_6___f497b97d7", "819": "12___CATEGORICAL___nom_6___f53d92c1a", "820": "12___CATEGORICAL___nom_6___f64fe5bc0", "821": "12___CATEGORICAL___nom_6___f7e243b5d", "822": "12___CATEGORICAL___nom_6___f81cde28d", "823": "12___CATEGORICAL___nom_6___f8c5dc0e0", "824": "12___CATEGORICAL___nom_6___fa2bf5f22", "825": "12___CATEGORICAL___nom_6___fa3f6d36f", "826": "12___CATEGORICAL___nom_6___fa498a5ae", "827": "12___CATEGORICAL___nom_6___fac5eff9e", "828": "12___CATEGORICAL___nom_6___fb1301ef6", "829": "12___CATEGORICAL___nom_6___fb80a804f", "830": "12___CATEGORICAL___nom_6___fbbdfc611", "831": "12___CATEGORICAL___nom_6___fbcb50fc1", "832": "12___CATEGORICAL___nom_6___fc4518443", "833": "12___CATEGORICAL___nom_6___fc613f31d", "834": "12___CATEGORICAL___nom_6___fc791ebea", "835": "12___CATEGORICAL___nom_6___fc88900c4", "836": "12___CATEGORICAL___nom_6___fc88d723d", "837": "12___CATEGORICAL___nom_6___fd2344f16", "838": "12___CATEGORICAL___nom_6___fd9370b9e", "839": "12___CATEGORICAL___nom_6___fe0b55cd2", "840": "12___CATEGORICAL___nom_6___fe0cddc2c", "841": "12___CATEGORICAL___nom_6___fe77c71bd", "842": "12___CATEGORICAL___nom_6___ffc60be1c", "843": "13___CATEGORICAL___nom_7___0074c698f", "844": "13___CATEGORICAL___nom_7___008f05158", "845": "13___CATEGORICAL___nom_7___00994f749", "846": "13___CATEGORICAL___nom_7___009a419af", "847": "13___CATEGORICAL___nom_7___0108b635e", "848": "13___CATEGORICAL___nom_7___0138d9abe", "849": "13___CATEGORICAL___nom_7___014c66968", "850": "13___CATEGORICAL___nom_7___016867538", "851": "13___CATEGORICAL___nom_7___0171f9241", "852": "13___CATEGORICAL___nom_7___01b8304ae", "853": "13___CATEGORICAL___nom_7___01d32ba52", "854": "13___CATEGORICAL___nom_7___01d49b4e1", "855": "13___CATEGORICAL___nom_7___01d5ecc45", "856": "13___CATEGORICAL___nom_7___01e22241a", "857": "13___CATEGORICAL___nom_7___0208e33dd", "858": "13___CATEGORICAL___nom_7___021629b02", "859": "13___CATEGORICAL___nom_7___022401886", "860": "13___CATEGORICAL___nom_7___0237e9859", "861": "13___CATEGORICAL___nom_7___024eb1d4c", "862": "13___CATEGORICAL___nom_7___027b6d692", "863": "13___CATEGORICAL___nom_7___03338a71c", "864": "13___CATEGORICAL___nom_7___0335c705e", "865": "13___CATEGORICAL___nom_7___03759a488", "866": "13___CATEGORICAL___nom_7___0378e418b", "867": "13___CATEGORICAL___nom_7___038b187fe", "868": "13___CATEGORICAL___nom_7___03c02132c", "869": "13___CATEGORICAL___nom_7___0406d6252", "870": "13___CATEGORICAL___nom_7___040a5f112", "871": "13___CATEGORICAL___nom_7___042524d7d", "872": "13___CATEGORICAL___nom_7___042de6edb", "873": "13___CATEGORICAL___nom_7___04a6f404e", "874": "13___CATEGORICAL___nom_7___04b3d90f2", "875": "13___CATEGORICAL___nom_7___04c9b2e28", "876": "13___CATEGORICAL___nom_7___04d283376", "877": "13___CATEGORICAL___nom_7___04ddac2be", "878": "13___CATEGORICAL___nom_7___055e2ceaa", "879": "13___CATEGORICAL___nom_7___05754af28", "880": "13___CATEGORICAL___nom_7___058d689da", "881": "13___CATEGORICAL___nom_7___0592e1a75", "882": "13___CATEGORICAL___nom_7___06398415b", "883": "13___CATEGORICAL___nom_7___069dabb39", "884": "13___CATEGORICAL___nom_7___06cd3d7c6", "885": "13___CATEGORICAL___nom_7___0777c8b7c", "886": "13___CATEGORICAL___nom_7___077a10d72", "887": "13___CATEGORICAL___nom_7___07bba85ec", "888": "13___CATEGORICAL___nom_7___080f75dce", "889": "13___CATEGORICAL___nom_7___092130a59", "890": "13___CATEGORICAL___nom_7___09394408f", "891": "13___CATEGORICAL___nom_7___0944f3afc", "892": "13___CATEGORICAL___nom_7___095d69ddc", "893": "13___CATEGORICAL___nom_7___097b0f4ce", "894": "13___CATEGORICAL___nom_7___09b286318", "895": "13___CATEGORICAL___nom_7___0ad56da4e", "896": "13___CATEGORICAL___nom_7___0ad84f641", "897": "13___CATEGORICAL___nom_7___0ae0f174d", "898": "13___CATEGORICAL___nom_7___0b5777c67", "899": "13___CATEGORICAL___nom_7___0bcd0782c", "900": "13___CATEGORICAL___nom_7___0c03941f3", "901": "13___CATEGORICAL___nom_7___0c1cfb224", "902": "13___CATEGORICAL___nom_7___0c32434c5", "903": "13___CATEGORICAL___nom_7___0c8f6917a", "904": "13___CATEGORICAL___nom_7___0d07ef795", "905": "13___CATEGORICAL___nom_7___0d10d8f0e", "906": "13___CATEGORICAL___nom_7___0e0637b46", "907": "13___CATEGORICAL___nom_7___0e2c0dc76", "908": "13___CATEGORICAL___nom_7___0e9e2ce06", "909": "13___CATEGORICAL___nom_7___0efe70958", "910": "13___CATEGORICAL___nom_7___0f2c0307f", "911": "13___CATEGORICAL___nom_7___0f32c2778", "912": "13___CATEGORICAL___nom_7___0f6dcae96", "913": "13___CATEGORICAL___nom_7___0fa8e8e91", "914": "13___CATEGORICAL___nom_7___0ff0bc946", "915": "13___CATEGORICAL___nom_7___110d26959", "916": "13___CATEGORICAL___nom_7___11853d9d8", "917": "13___CATEGORICAL___nom_7___125315092", "918": "13___CATEGORICAL___nom_7___12869d632", "919": "13___CATEGORICAL___nom_7___128b3573c", "920": "13___CATEGORICAL___nom_7___12b92841d", "921": "13___CATEGORICAL___nom_7___12d5f6772", "922": "13___CATEGORICAL___nom_7___12e6161c9", "923": "13___CATEGORICAL___nom_7___135f7a68a", "924": "13___CATEGORICAL___nom_7___1361751be", "925": "13___CATEGORICAL___nom_7___137922383", "926": "13___CATEGORICAL___nom_7___13b9cdf40", "927": "13___CATEGORICAL___nom_7___140119499", "928": "13___CATEGORICAL___nom_7___1434bf43e", "929": "13___CATEGORICAL___nom_7___14a99ac1e", "930": "13___CATEGORICAL___nom_7___14bd3d56c", "931": "13___CATEGORICAL___nom_7___1511a4ba7", "932": "13___CATEGORICAL___nom_7___15c34fdba", "933": "13___CATEGORICAL___nom_7___15cd3ca69", "934": "13___CATEGORICAL___nom_7___15dc42a6e", "935": "13___CATEGORICAL___nom_7___16101497f", "936": "13___CATEGORICAL___nom_7___163c27422", "937": "13___CATEGORICAL___nom_7___168469b34", "938": "13___CATEGORICAL___nom_7___1710fcc5e", "939": "13___CATEGORICAL___nom_7___1726041fb", "940": "13___CATEGORICAL___nom_7___1740266ee", "941": "13___CATEGORICAL___nom_7___17b83802f", "942": "13___CATEGORICAL___nom_7___17cc0943c", "943": "13___CATEGORICAL___nom_7___17d7c7e77", "944": "13___CATEGORICAL___nom_7___1811d1f7b", "945": "13___CATEGORICAL___nom_7___184f1e150", "946": "13___CATEGORICAL___nom_7___185418d90", "947": "13___CATEGORICAL___nom_7___1877cffb3", "948": "13___CATEGORICAL___nom_7___18a6a6e60", "949": "13___CATEGORICAL___nom_7___18ae18b53", "950": "13___CATEGORICAL___nom_7___18b5db61b", "951": "13___CATEGORICAL___nom_7___194a64005", "952": "13___CATEGORICAL___nom_7___1a386ffce", "953": "13___CATEGORICAL___nom_7___1a4e9144f", "954": "13___CATEGORICAL___nom_7___1a5ba32f1", "955": "13___CATEGORICAL___nom_7___1aacd0bd9", "956": "13___CATEGORICAL___nom_7___1bc3c85ad", "957": "13___CATEGORICAL___nom_7___1be616f08", "958": "13___CATEGORICAL___nom_7___1c20a27b8", "959": "13___CATEGORICAL___nom_7___1c2bd266e", "960": "13___CATEGORICAL___nom_7___1c3f27dd8", "961": "13___CATEGORICAL___nom_7___1c5f1ab58", "962": "13___CATEGORICAL___nom_7___1c619215d", "963": "13___CATEGORICAL___nom_7___1c6544394", "964": "13___CATEGORICAL___nom_7___1cd2547ac", "965": "13___CATEGORICAL___nom_7___1cde40c7a", "966": "13___CATEGORICAL___nom_7___1cefd8217", "967": "13___CATEGORICAL___nom_7___1cf5b7dd7", "968": "13___CATEGORICAL___nom_7___1d8c23baa", "969": "13___CATEGORICAL___nom_7___1d9ecee83", "970": "13___CATEGORICAL___nom_7___1db7d5172", "971": "13___CATEGORICAL___nom_7___1dcd3d68e", "972": "13___CATEGORICAL___nom_7___1e141d08e", "973": "13___CATEGORICAL___nom_7___1ee0fe875", "974": "13___CATEGORICAL___nom_7___1ee531eb3", "975": "13___CATEGORICAL___nom_7___1f096b2be", "976": "13___CATEGORICAL___nom_7___1f0a92e59", "977": "13___CATEGORICAL___nom_7___1f4a6de2e", "978": "13___CATEGORICAL___nom_7___1fcf153b3", "979": "13___CATEGORICAL___nom_7___202a9d22a", "980": "13___CATEGORICAL___nom_7___2092f3420", "981": "13___CATEGORICAL___nom_7___211e63f08", "982": "13___CATEGORICAL___nom_7___212279bf0", "983": "13___CATEGORICAL___nom_7___212cf5255", "984": "13___CATEGORICAL___nom_7___212e00b86", "985": "13___CATEGORICAL___nom_7___21a9b0580", "986": "13___CATEGORICAL___nom_7___21e5e9342", "987": "13___CATEGORICAL___nom_7___21f8837a1", "988": "13___CATEGORICAL___nom_7___226e2276b", "989": "13___CATEGORICAL___nom_7___22831fffe", "990": "13___CATEGORICAL___nom_7___22b37c7a3", "991": "13___CATEGORICAL___nom_7___22ff79d81", "992": "13___CATEGORICAL___nom_7___234fb5608", "993": "13___CATEGORICAL___nom_7___23adfa078", "994": "13___CATEGORICAL___nom_7___23b77929a", "995": "13___CATEGORICAL___nom_7___23cd7a725", "996": "13___CATEGORICAL___nom_7___2428baa29", "997": "13___CATEGORICAL___nom_7___24668c22c", "998": "13___CATEGORICAL___nom_7___2488ac2fa", "999": "13___CATEGORICAL___nom_7___24beb3378", "1000": "13___CATEGORICAL___nom_7___24de1f87d", "1001": "13___CATEGORICAL___nom_7___24e9bf7d4", "1002": "13___CATEGORICAL___nom_7___24ffacfdc", "1003": "13___CATEGORICAL___nom_7___255667eca", "1004": "13___CATEGORICAL___nom_7___26160167b", "1005": "13___CATEGORICAL___nom_7___26b8375fd", "1006": "13___CATEGORICAL___nom_7___27c719804", "1007": "13___CATEGORICAL___nom_7___27d6df03f", "1008": "13___CATEGORICAL___nom_7___27e0c7992", "1009": "13___CATEGORICAL___nom_7___27e8d4511", "1010": "13___CATEGORICAL___nom_7___2923091c6", "1011": "13___CATEGORICAL___nom_7___29295065b", "1012": "13___CATEGORICAL___nom_7___2938f346d", "1013": "13___CATEGORICAL___nom_7___2981119ba", "1014": "13___CATEGORICAL___nom_7___2a0b3f539", "1015": "13___CATEGORICAL___nom_7___2a7678647", "1016": "13___CATEGORICAL___nom_7___2a944c174", "1017": "13___CATEGORICAL___nom_7___2b017b873", "1018": "13___CATEGORICAL___nom_7___2b5df4f24", "1019": "13___CATEGORICAL___nom_7___2b6ded08b", "1020": "13___CATEGORICAL___nom_7___2bd9e23c6", "1021": "13___CATEGORICAL___nom_7___2c0bba8aa", "1022": "13___CATEGORICAL___nom_7___2c89fa25b", "1023": "13___CATEGORICAL___nom_7___2c8ad6197", "1024": "13___CATEGORICAL___nom_7___2c8e13a9f", "1025": "13___CATEGORICAL___nom_7___2c9ffeaae", "1026": "13___CATEGORICAL___nom_7___2d2ebbd66", "1027": "13___CATEGORICAL___nom_7___2d36d7ff3", "1028": "13___CATEGORICAL___nom_7___2d3cb7b79", "1029": "13___CATEGORICAL___nom_7___2d6fa1af1", "1030": "13___CATEGORICAL___nom_7___2d8e816e2", "1031": "13___CATEGORICAL___nom_7___2dd9daf45", "1032": "13___CATEGORICAL___nom_7___2de101b87", "1033": "13___CATEGORICAL___nom_7___2e02d4b69", "1034": "13___CATEGORICAL___nom_7___2e1bf3838", "1035": "13___CATEGORICAL___nom_7___2e3adf627", "1036": "13___CATEGORICAL___nom_7___2e7a6bd7b", "1037": "13___CATEGORICAL___nom_7___2fb072e38", "1038": "13___CATEGORICAL___nom_7___30192f1f3", "1039": "13___CATEGORICAL___nom_7___3066a4c4f", "1040": "13___CATEGORICAL___nom_7___30a0fec63", "1041": "13___CATEGORICAL___nom_7___30c5eb4c1", "1042": "13___CATEGORICAL___nom_7___30c63bd0c", "1043": "13___CATEGORICAL___nom_7___30e376986", "1044": "13___CATEGORICAL___nom_7___30eb6faad", "1045": "13___CATEGORICAL___nom_7___30ec40df0", "1046": "13___CATEGORICAL___nom_7___310cb1765", "1047": "13___CATEGORICAL___nom_7___313c2d4b2", "1048": "13___CATEGORICAL___nom_7___3193c6338", "1049": "13___CATEGORICAL___nom_7___31a7192b6", "1050": "13___CATEGORICAL___nom_7___31c0ce565", "1051": "13___CATEGORICAL___nom_7___31de4f0dc", "1052": "13___CATEGORICAL___nom_7___3212ff699", "1053": "13___CATEGORICAL___nom_7___321ba5126", "1054": "13___CATEGORICAL___nom_7___32487ff99", "1055": "13___CATEGORICAL___nom_7___32b5710ac", "1056": "13___CATEGORICAL___nom_7___32ec9c00b", "1057": "13___CATEGORICAL___nom_7___33149546e", "1058": "13___CATEGORICAL___nom_7___33255a8da", "1059": "13___CATEGORICAL___nom_7___333b05914", "1060": "13___CATEGORICAL___nom_7___33c193609", "1061": "13___CATEGORICAL___nom_7___33d450a91", "1062": "13___CATEGORICAL___nom_7___342a7cdf6", "1063": "13___CATEGORICAL___nom_7___344623c9c", "1064": "13___CATEGORICAL___nom_7___345e8dab0", "1065": "13___CATEGORICAL___nom_7___346c81c8f", "1066": "13___CATEGORICAL___nom_7___3482f1d44", "1067": "13___CATEGORICAL___nom_7___34acd7fa4", "1068": "13___CATEGORICAL___nom_7___34b3a61c3", "1069": "13___CATEGORICAL___nom_7___34c59d8cc", "1070": "13___CATEGORICAL___nom_7___3506befc5", "1071": "13___CATEGORICAL___nom_7___352282217", "1072": "13___CATEGORICAL___nom_7___35308d2c7", "1073": "13___CATEGORICAL___nom_7___358eb1d99", "1074": "13___CATEGORICAL___nom_7___359c30fe3", "1075": "13___CATEGORICAL___nom_7___35d07cd61", "1076": "13___CATEGORICAL___nom_7___3642c70d4", "1077": "13___CATEGORICAL___nom_7___36d85d658", "1078": "13___CATEGORICAL___nom_7___36db0443e", "1079": "13___CATEGORICAL___nom_7___36ef0491a", "1080": "13___CATEGORICAL___nom_7___370b29add", "1081": "13___CATEGORICAL___nom_7___37211ac72", "1082": "13___CATEGORICAL___nom_7___3764af040", "1083": "13___CATEGORICAL___nom_7___377c48f57", "1084": "13___CATEGORICAL___nom_7___37c413570", "1085": "13___CATEGORICAL___nom_7___37d630065", "1086": "13___CATEGORICAL___nom_7___37ebe7955", "1087": "13___CATEGORICAL___nom_7___384a8e15d", "1088": "13___CATEGORICAL___nom_7___386662e4a", "1089": "13___CATEGORICAL___nom_7___386eb705f", "1090": "13___CATEGORICAL___nom_7___389eb023f", "1091": "13___CATEGORICAL___nom_7___38acaf52e", "1092": "13___CATEGORICAL___nom_7___38ea9e8af", "1093": "13___CATEGORICAL___nom_7___38fa49974", "1094": "13___CATEGORICAL___nom_7___39506500f", "1095": "13___CATEGORICAL___nom_7___39ba044de", "1096": "13___CATEGORICAL___nom_7___39ddbcf5d", "1097": "13___CATEGORICAL___nom_7___39fc2a6db", "1098": "13___CATEGORICAL___nom_7___3a114adea", "1099": "13___CATEGORICAL___nom_7___3a4504c06", "1100": "13___CATEGORICAL___nom_7___3b3e2fcd8", "1101": "13___CATEGORICAL___nom_7___3b679e531", "1102": "13___CATEGORICAL___nom_7___3b6dd5612", "1103": "13___CATEGORICAL___nom_7___3b7dd14fd", "1104": "13___CATEGORICAL___nom_7___3c109f946", "1105": "13___CATEGORICAL___nom_7___3c452e60d", "1106": "13___CATEGORICAL___nom_7___3c4c7c16c", "1107": "13___CATEGORICAL___nom_7___3c6ba1277", "1108": "13___CATEGORICAL___nom_7___3cc956438", "1109": "13___CATEGORICAL___nom_7___3dfde7f8f", "1110": "13___CATEGORICAL___nom_7___3e5f076e2", "1111": "13___CATEGORICAL___nom_7___3e7c8c60e", "1112": "13___CATEGORICAL___nom_7___3e809722a", "1113": "13___CATEGORICAL___nom_7___3ee51a8c5", "1114": "13___CATEGORICAL___nom_7___3f0057c9b", "1115": "13___CATEGORICAL___nom_7___3f95dca80", "1116": "13___CATEGORICAL___nom_7___3fa1d9901", "1117": "13___CATEGORICAL___nom_7___3fa4c5655", "1118": "13___CATEGORICAL___nom_7___3fc00f7c8", "1119": "13___CATEGORICAL___nom_7___4080d5eaa", "1120": "13___CATEGORICAL___nom_7___408379fa9", "1121": "13___CATEGORICAL___nom_7___40aa45ee8", "1122": "13___CATEGORICAL___nom_7___40f84f6de", "1123": "13___CATEGORICAL___nom_7___415af688c", "1124": "13___CATEGORICAL___nom_7___4177c067d", "1125": "13___CATEGORICAL___nom_7___419e8b37b", "1126": "13___CATEGORICAL___nom_7___41a47efcb", "1127": "13___CATEGORICAL___nom_7___42505868e", "1128": "13___CATEGORICAL___nom_7___42992de9c", "1129": "13___CATEGORICAL___nom_7___431f39daf", "1130": "13___CATEGORICAL___nom_7___4323c4ab0", "1131": "13___CATEGORICAL___nom_7___438ece065", "1132": "13___CATEGORICAL___nom_7___43a3f1dd4", "1133": "13___CATEGORICAL___nom_7___43dd0371c", "1134": "13___CATEGORICAL___nom_7___43e62e1ef", "1135": "13___CATEGORICAL___nom_7___4419b238b", "1136": "13___CATEGORICAL___nom_7___446df0c98", "1137": "13___CATEGORICAL___nom_7___44964769b", "1138": "13___CATEGORICAL___nom_7___450f606f6", "1139": "13___CATEGORICAL___nom_7___450f97c17", "1140": "13___CATEGORICAL___nom_7___451f749a5", "1141": "13___CATEGORICAL___nom_7___45818230a", "1142": "13___CATEGORICAL___nom_7___45a291eae", "1143": "13___CATEGORICAL___nom_7___45fd460a6", "1144": "13___CATEGORICAL___nom_7___4609df5db", "1145": "13___CATEGORICAL___nom_7___4623277d0", "1146": "13___CATEGORICAL___nom_7___462a26c79", "1147": "13___CATEGORICAL___nom_7___467a8a887", "1148": "13___CATEGORICAL___nom_7___467dc6b44", "1149": "13___CATEGORICAL___nom_7___4743a283e", "1150": "13___CATEGORICAL___nom_7___47780f68a", "1151": "13___CATEGORICAL___nom_7___479b4bade", "1152": "13___CATEGORICAL___nom_7___47aaaab79", "1153": "13___CATEGORICAL___nom_7___47b9df131", "1154": "13___CATEGORICAL___nom_7___47d9c2688", "1155": "13___CATEGORICAL___nom_7___47e644472", "1156": "13___CATEGORICAL___nom_7___47ee18c56", "1157": "13___CATEGORICAL___nom_7___483bee302", "1158": "13___CATEGORICAL___nom_7___487b56d27", "1159": "13___CATEGORICAL___nom_7___4899ad162", "1160": "13___CATEGORICAL___nom_7___48e1b555b", "1161": "13___CATEGORICAL___nom_7___490ee11a2", "1162": "13___CATEGORICAL___nom_7___494b2cc84", "1163": "13___CATEGORICAL___nom_7___4a0ff1117", "1164": "13___CATEGORICAL___nom_7___4a18e6d6b", "1165": "13___CATEGORICAL___nom_7___4a7761d5f", "1166": "13___CATEGORICAL___nom_7___4a79709cd", "1167": "13___CATEGORICAL___nom_7___4ab76406a", "1168": "13___CATEGORICAL___nom_7___4ad6364f1", "1169": "13___CATEGORICAL___nom_7___4addee130", "1170": "13___CATEGORICAL___nom_7___4afdae539", "1171": "13___CATEGORICAL___nom_7___4b0c6346b", "1172": "13___CATEGORICAL___nom_7___4b9f6c617", "1173": "13___CATEGORICAL___nom_7___4ba71e861", "1174": "13___CATEGORICAL___nom_7___4bcf3e6f1", "1175": "13___CATEGORICAL___nom_7___4ca8c6fdb", "1176": "13___CATEGORICAL___nom_7___4ccc9f448", "1177": "13___CATEGORICAL___nom_7___4cd460e06", "1178": "13___CATEGORICAL___nom_7___4d23651c1", "1179": "13___CATEGORICAL___nom_7___4d2e91ec4", "1180": "13___CATEGORICAL___nom_7___4d396df50", "1181": "13___CATEGORICAL___nom_7___4d6f50082", "1182": "13___CATEGORICAL___nom_7___4d9bb93cb", "1183": "13___CATEGORICAL___nom_7___4dc20a594", "1184": "13___CATEGORICAL___nom_7___4dca91a1b", "1185": "13___CATEGORICAL___nom_7___4dcf33683", "1186": "13___CATEGORICAL___nom_7___4e8370f42", "1187": "13___CATEGORICAL___nom_7___4ee9b55a7", "1188": "13___CATEGORICAL___nom_7___4efc5361f", "1189": "13___CATEGORICAL___nom_7___4f3416383", "1190": "13___CATEGORICAL___nom_7___4f4f19f34", "1191": "13___CATEGORICAL___nom_7___4f60079ba", "1192": "13___CATEGORICAL___nom_7___4f938941b", "1193": "13___CATEGORICAL___nom_7___4fb098f41", "1194": "13___CATEGORICAL___nom_7___4fbeb8dbf", "1195": "13___CATEGORICAL___nom_7___4fbfe4a84", "1196": "13___CATEGORICAL___nom_7___4fd193763", "1197": "13___CATEGORICAL___nom_7___4fe3a7e40", "1198": "13___CATEGORICAL___nom_7___502e9a4f1", "1199": "13___CATEGORICAL___nom_7___50438e214", "1200": "13___CATEGORICAL___nom_7___50831f351", "1201": "13___CATEGORICAL___nom_7___50b84bf39", "1202": "13___CATEGORICAL___nom_7___50c82cec6", "1203": "13___CATEGORICAL___nom_7___514c654d0", "1204": "13___CATEGORICAL___nom_7___516654c4e", "1205": "13___CATEGORICAL___nom_7___517602e52", "1206": "13___CATEGORICAL___nom_7___517c8cdc9", "1207": "13___CATEGORICAL___nom_7___519829759", "1208": "13___CATEGORICAL___nom_7___51a515fb3", "1209": "13___CATEGORICAL___nom_7___51b8fed92", "1210": "13___CATEGORICAL___nom_7___51bfb741c", "1211": "13___CATEGORICAL___nom_7___51f3e394c", "1212": "13___CATEGORICAL___nom_7___52c1a7d76", "1213": "13___CATEGORICAL___nom_7___52f5c8187", "1214": "13___CATEGORICAL___nom_7___530f8ecc3", "1215": "13___CATEGORICAL___nom_7___532fc2d2e", "1216": "13___CATEGORICAL___nom_7___535aa4776", "1217": "13___CATEGORICAL___nom_7___5387ed7d2", "1218": "13___CATEGORICAL___nom_7___539701869", "1219": "13___CATEGORICAL___nom_7___53a5521c5", "1220": "13___CATEGORICAL___nom_7___53c650cbf", "1221": "13___CATEGORICAL___nom_7___53e58096b", "1222": "13___CATEGORICAL___nom_7___5465eb545", "1223": "13___CATEGORICAL___nom_7___54b422a9f", "1224": "13___CATEGORICAL___nom_7___55b25caf1", "1225": "13___CATEGORICAL___nom_7___55c29cb32", "1226": "13___CATEGORICAL___nom_7___55de0acbc", "1227": "13___CATEGORICAL___nom_7___562dfb0f6", "1228": "13___CATEGORICAL___nom_7___5649e0c27", "1229": "13___CATEGORICAL___nom_7___564a11aa1", "1230": "13___CATEGORICAL___nom_7___565399ad3", "1231": "13___CATEGORICAL___nom_7___566b1e0e4", "1232": "13___CATEGORICAL___nom_7___568715fbe", "1233": "13___CATEGORICAL___nom_7___56a0dc1f7", "1234": "13___CATEGORICAL___nom_7___56a4667ea", "1235": "13___CATEGORICAL___nom_7___56b96de46", "1236": "13___CATEGORICAL___nom_7___56ed74b9a", "1237": "13___CATEGORICAL___nom_7___570758f56", "1238": "13___CATEGORICAL___nom_7___5720c852a", "1239": "13___CATEGORICAL___nom_7___572296c24", "1240": "13___CATEGORICAL___nom_7___577bb50e9", "1241": "13___CATEGORICAL___nom_7___5783c289c", "1242": "13___CATEGORICAL___nom_7___57a3529fa", "1243": "13___CATEGORICAL___nom_7___57fb024d4", "1244": "13___CATEGORICAL___nom_7___581294e27", "1245": "13___CATEGORICAL___nom_7___584948ec6", "1246": "13___CATEGORICAL___nom_7___585fabdc0", "1247": "13___CATEGORICAL___nom_7___5897a17c6", "1248": "13___CATEGORICAL___nom_7___58c1a650c", "1249": "13___CATEGORICAL___nom_7___58ebd42dd", "1250": "13___CATEGORICAL___nom_7___591491a89", "1251": "13___CATEGORICAL___nom_7___594f7042d", "1252": "13___CATEGORICAL___nom_7___594f72875", "1253": "13___CATEGORICAL___nom_7___59886fdb2", "1254": "13___CATEGORICAL___nom_7___59de9c26a", "1255": "13___CATEGORICAL___nom_7___59fe57a1b", "1256": "13___CATEGORICAL___nom_7___5a109570a", "1257": "13___CATEGORICAL___nom_7___5a4aec916", "1258": "13___CATEGORICAL___nom_7___5a907135e", "1259": "13___CATEGORICAL___nom_7___5a99b7d9f", "1260": "13___CATEGORICAL___nom_7___5aaac585c", "1261": "13___CATEGORICAL___nom_7___5ad7da858", "1262": "13___CATEGORICAL___nom_7___5aeb59996", "1263": "13___CATEGORICAL___nom_7___5aed00b2c", "1264": "13___CATEGORICAL___nom_7___5b6795b73", "1265": "13___CATEGORICAL___nom_7___5b6f1bac6", "1266": "13___CATEGORICAL___nom_7___5b6f81645", "1267": "13___CATEGORICAL___nom_7___5b7119a76", "1268": "13___CATEGORICAL___nom_7___5ba122e87", "1269": "13___CATEGORICAL___nom_7___5c064b2bf", "1270": "13___CATEGORICAL___nom_7___5c1388f32", "1271": "13___CATEGORICAL___nom_7___5c843e08f", "1272": "13___CATEGORICAL___nom_7___5cf3ef747", "1273": "13___CATEGORICAL___nom_7___5d0dfceaf", "1274": "13___CATEGORICAL___nom_7___5d135b62f", "1275": "13___CATEGORICAL___nom_7___5d6e63dfc", "1276": "13___CATEGORICAL___nom_7___5dc3e05e9", "1277": "13___CATEGORICAL___nom_7___5de3bf599", "1278": "13___CATEGORICAL___nom_7___5deca33b5", "1279": "13___CATEGORICAL___nom_7___5e112a249", "1280": "13___CATEGORICAL___nom_7___5e43e6e8e", "1281": "13___CATEGORICAL___nom_7___5e99c492c", "1282": "13___CATEGORICAL___nom_7___5ee5d882b", "1283": "13___CATEGORICAL___nom_7___5f5b6e957", "1284": "13___CATEGORICAL___nom_7___5fee1e1d2", "1285": "13___CATEGORICAL___nom_7___6008addf2", "1286": "13___CATEGORICAL___nom_7___600ee60bd", "1287": "13___CATEGORICAL___nom_7___6049b08a6", "1288": "13___CATEGORICAL___nom_7___6065c72b8", "1289": "13___CATEGORICAL___nom_7___60f4e2593", "1290": "13___CATEGORICAL___nom_7___61022a02d", "1291": "13___CATEGORICAL___nom_7___613fad776", "1292": "13___CATEGORICAL___nom_7___61b4a186a", "1293": "13___CATEGORICAL___nom_7___61f32d775", "1294": "13___CATEGORICAL___nom_7___6206e88a7", "1295": "13___CATEGORICAL___nom_7___6228cae48", "1296": "13___CATEGORICAL___nom_7___6249769ec", "1297": "13___CATEGORICAL___nom_7___62882755e", "1298": "13___CATEGORICAL___nom_7___62b53f140", "1299": "13___CATEGORICAL___nom_7___62bf0bc9d", "1300": "13___CATEGORICAL___nom_7___62dd25545", "1301": "13___CATEGORICAL___nom_7___62e1f324e", "1302": "13___CATEGORICAL___nom_7___62e6637f1", "1303": "13___CATEGORICAL___nom_7___6348d0544", "1304": "13___CATEGORICAL___nom_7___63ac5ddef", "1305": "13___CATEGORICAL___nom_7___63b0bc9d3", "1306": "13___CATEGORICAL___nom_7___642c18d6b", "1307": "13___CATEGORICAL___nom_7___643c15528", "1308": "13___CATEGORICAL___nom_7___6448d1faf", "1309": "13___CATEGORICAL___nom_7___6473ea04d", "1310": "13___CATEGORICAL___nom_7___652234e54", "1311": "13___CATEGORICAL___nom_7___6538834b5", "1312": "13___CATEGORICAL___nom_7___65496f7bc", "1313": "13___CATEGORICAL___nom_7___6553e7c45", "1314": "13___CATEGORICAL___nom_7___6571760c2", "1315": "13___CATEGORICAL___nom_7___659c782a1", "1316": "13___CATEGORICAL___nom_7___66418d6ec", "1317": "13___CATEGORICAL___nom_7___667093fa6", "1318": "13___CATEGORICAL___nom_7___6684bc03d", "1319": "13___CATEGORICAL___nom_7___668df2789", "1320": "13___CATEGORICAL___nom_7___669190904", "1321": "13___CATEGORICAL___nom_7___66dd9dc34", "1322": "13___CATEGORICAL___nom_7___66e4ca8cd", "1323": "13___CATEGORICAL___nom_7___67010221f", "1324": "13___CATEGORICAL___nom_7___673d3c1c0", "1325": "13___CATEGORICAL___nom_7___677329fb6", "1326": "13___CATEGORICAL___nom_7___6790972e7", "1327": "13___CATEGORICAL___nom_7___67f408ae3", "1328": "13___CATEGORICAL___nom_7___6844c03f1", "1329": "13___CATEGORICAL___nom_7___687237f4d", "1330": "13___CATEGORICAL___nom_7___68943cad3", "1331": "13___CATEGORICAL___nom_7___68d88988b", "1332": "13___CATEGORICAL___nom_7___68edef966", "1333": "13___CATEGORICAL___nom_7___68f6ad3e9", "1334": "13___CATEGORICAL___nom_7___69180a2f8", "1335": "13___CATEGORICAL___nom_7___6923be193", "1336": "13___CATEGORICAL___nom_7___695001688", "1337": "13___CATEGORICAL___nom_7___695517907", "1338": "13___CATEGORICAL___nom_7___69c5ba518", "1339": "13___CATEGORICAL___nom_7___69ce5c647", "1340": "13___CATEGORICAL___nom_7___6a8e2f6fe", "1341": "13___CATEGORICAL___nom_7___6aee14e09", "1342": "13___CATEGORICAL___nom_7___6af6214b1", "1343": "13___CATEGORICAL___nom_7___6b00c2ac6", "1344": "13___CATEGORICAL___nom_7___6b07ca3fa", "1345": "13___CATEGORICAL___nom_7___6b4d0cc44", "1346": "13___CATEGORICAL___nom_7___6c09a9fe7", "1347": "13___CATEGORICAL___nom_7___6c0aa2fd9", "1348": "13___CATEGORICAL___nom_7___6c65355af", "1349": "13___CATEGORICAL___nom_7___6cf9b4396", "1350": "13___CATEGORICAL___nom_7___6d5bc098a", "1351": "13___CATEGORICAL___nom_7___6ded0aa57", "1352": "13___CATEGORICAL___nom_7___6e0e3ec45", "1353": "13___CATEGORICAL___nom_7___6e5bb6d78", "1354": "13___CATEGORICAL___nom_7___6e8857554", "1355": "13___CATEGORICAL___nom_7___6ee6a56bf", "1356": "13___CATEGORICAL___nom_7___6f3940b72", "1357": "13___CATEGORICAL___nom_7___6f86d86b7", "1358": "13___CATEGORICAL___nom_7___6f8de956d", "1359": "13___CATEGORICAL___nom_7___6face96c8", "1360": "13___CATEGORICAL___nom_7___6fb8423f1", "1361": "13___CATEGORICAL___nom_7___6fb987c3e", "1362": "13___CATEGORICAL___nom_7___700924d38", "1363": "13___CATEGORICAL___nom_7___70363b2e8", "1364": "13___CATEGORICAL___nom_7___70d3cd098", "1365": "13___CATEGORICAL___nom_7___711ee2d57", "1366": "13___CATEGORICAL___nom_7___7161622d8", "1367": "13___CATEGORICAL___nom_7___71777c678", "1368": "13___CATEGORICAL___nom_7___71a28e371", "1369": "13___CATEGORICAL___nom_7___71cb5c19f", "1370": "13___CATEGORICAL___nom_7___724d38d98", "1371": "13___CATEGORICAL___nom_7___72f31fc38", "1372": "13___CATEGORICAL___nom_7___73236f791", "1373": "13___CATEGORICAL___nom_7___73cc0c412", "1374": "13___CATEGORICAL___nom_7___73f17961b", "1375": "13___CATEGORICAL___nom_7___73f44eb49", "1376": "13___CATEGORICAL___nom_7___74037d078", "1377": "13___CATEGORICAL___nom_7___740deb371", "1378": "13___CATEGORICAL___nom_7___741721971", "1379": "13___CATEGORICAL___nom_7___744164411", "1380": "13___CATEGORICAL___nom_7___745eba2aa", "1381": "13___CATEGORICAL___nom_7___74912d804", "1382": "13___CATEGORICAL___nom_7___74a1b69b1", "1383": "13___CATEGORICAL___nom_7___752efcc5b", "1384": "13___CATEGORICAL___nom_7___753293dc0", "1385": "13___CATEGORICAL___nom_7___759cf06d7", "1386": "13___CATEGORICAL___nom_7___75a4ba9a0", "1387": "13___CATEGORICAL___nom_7___763f2f8ea", "1388": "13___CATEGORICAL___nom_7___765a78e3e", "1389": "13___CATEGORICAL___nom_7___76bd486f8", "1390": "13___CATEGORICAL___nom_7___76f770ea1", "1391": "13___CATEGORICAL___nom_7___774b35e04", "1392": "13___CATEGORICAL___nom_7___77567e835", "1393": "13___CATEGORICAL___nom_7___7763f2131", "1394": "13___CATEGORICAL___nom_7___779c45830", "1395": "13___CATEGORICAL___nom_7___77a8ff594", "1396": "13___CATEGORICAL___nom_7___77ddefe89", "1397": "13___CATEGORICAL___nom_7___78ddd9718", "1398": "13___CATEGORICAL___nom_7___7954f458b", "1399": "13___CATEGORICAL___nom_7___7a56979e7", "1400": "13___CATEGORICAL___nom_7___7a8c327a2", "1401": "13___CATEGORICAL___nom_7___7aaa810eb", "1402": "13___CATEGORICAL___nom_7___7ad3e362c", "1403": "13___CATEGORICAL___nom_7___7b22090e2", "1404": "13___CATEGORICAL___nom_7___7c033aaf1", "1405": "13___CATEGORICAL___nom_7___7c097f770", "1406": "13___CATEGORICAL___nom_7___7c6d738f8", "1407": "13___CATEGORICAL___nom_7___7c71e775e", "1408": "13___CATEGORICAL___nom_7___7c8273635", "1409": "13___CATEGORICAL___nom_7___7c84bf21f", "1410": "13___CATEGORICAL___nom_7___7c9350d1d", "1411": "13___CATEGORICAL___nom_7___7cb99e265", "1412": "13___CATEGORICAL___nom_7___7cd96b620", "1413": "13___CATEGORICAL___nom_7___7d4494d3b", "1414": "13___CATEGORICAL___nom_7___7d964ca6f", "1415": "13___CATEGORICAL___nom_7___7db2eaa71", "1416": "13___CATEGORICAL___nom_7___7df1399cb", "1417": "13___CATEGORICAL___nom_7___7df20ed82", "1418": "13___CATEGORICAL___nom_7___7e2380e4f", "1419": "13___CATEGORICAL___nom_7___7e36feeb9", "1420": "13___CATEGORICAL___nom_7___7e3f745fc", "1421": "13___CATEGORICAL___nom_7___7eac0e255", "1422": "13___CATEGORICAL___nom_7___7edab3598", "1423": "13___CATEGORICAL___nom_7___7f1dc7d07", "1424": "13___CATEGORICAL___nom_7___7f27e0bf6", "1425": "13___CATEGORICAL___nom_7___7fee82768", "1426": "13___CATEGORICAL___nom_7___80233d0ed", "1427": "13___CATEGORICAL___nom_7___803e96716", "1428": "13___CATEGORICAL___nom_7___805d37bb5", "1429": "13___CATEGORICAL___nom_7___8071abe2c", "1430": "13___CATEGORICAL___nom_7___8097b1a29", "1431": "13___CATEGORICAL___nom_7___80c2eca0f", "1432": "13___CATEGORICAL___nom_7___8145adbe4", "1433": "13___CATEGORICAL___nom_7___816e4cca3", "1434": "13___CATEGORICAL___nom_7___81d9a641a", "1435": "13___CATEGORICAL___nom_7___81ed7dfc3", "1436": "13___CATEGORICAL___nom_7___81fb45795", "1437": "13___CATEGORICAL___nom_7___820b8f489", "1438": "13___CATEGORICAL___nom_7___824e477d1", "1439": "13___CATEGORICAL___nom_7___82598a462", "1440": "13___CATEGORICAL___nom_7___8275c0030", "1441": "13___CATEGORICAL___nom_7___828862a90", "1442": "13___CATEGORICAL___nom_7___82aff5c5a", "1443": "13___CATEGORICAL___nom_7___82b2195f7", "1444": "13___CATEGORICAL___nom_7___831aee9ec", "1445": "13___CATEGORICAL___nom_7___831b0cf23", "1446": "13___CATEGORICAL___nom_7___83286a11f", "1447": "13___CATEGORICAL___nom_7___832c8ee31", "1448": "13___CATEGORICAL___nom_7___833708746", "1449": "13___CATEGORICAL___nom_7___83822ba17", "1450": "13___CATEGORICAL___nom_7___83c9b6ebc", "1451": "13___CATEGORICAL___nom_7___83e252ebc", "1452": "13___CATEGORICAL___nom_7___83f97eebe", "1453": "13___CATEGORICAL___nom_7___8476604f7", "1454": "13___CATEGORICAL___nom_7___85360f187", "1455": "13___CATEGORICAL___nom_7___853d8bd3a", "1456": "13___CATEGORICAL___nom_7___85495b390", "1457": "13___CATEGORICAL___nom_7___8595ab4ff", "1458": "13___CATEGORICAL___nom_7___859ac0521", "1459": "13___CATEGORICAL___nom_7___85b1489f1", "1460": "13___CATEGORICAL___nom_7___85f85b684", "1461": "13___CATEGORICAL___nom_7___863e068a7", "1462": "13___CATEGORICAL___nom_7___868792854", "1463": "13___CATEGORICAL___nom_7___86a8e4ca0", "1464": "13___CATEGORICAL___nom_7___876d3cbbc", "1465": "13___CATEGORICAL___nom_7___8783b512a", "1466": "13___CATEGORICAL___nom_7___87a44376f", "1467": "13___CATEGORICAL___nom_7___87d1b8344", "1468": "13___CATEGORICAL___nom_7___880957c19", "1469": "13___CATEGORICAL___nom_7___8846ce1f0", "1470": "13___CATEGORICAL___nom_7___88739322e", "1471": "13___CATEGORICAL___nom_7___88ac1cfb2", "1472": "13___CATEGORICAL___nom_7___88ca34db7", "1473": "13___CATEGORICAL___nom_7___89072e3be", "1474": "13___CATEGORICAL___nom_7___897724aa8", "1475": "13___CATEGORICAL___nom_7___89d2f6fa1", "1476": "13___CATEGORICAL___nom_7___89f4255e4", "1477": "13___CATEGORICAL___nom_7___8a08dfb68", "1478": "13___CATEGORICAL___nom_7___8a259d00a", "1479": "13___CATEGORICAL___nom_7___8a4275eb9", "1480": "13___CATEGORICAL___nom_7___8b3344cb5", "1481": "13___CATEGORICAL___nom_7___8bed400a3", "1482": "13___CATEGORICAL___nom_7___8c2d2f775", "1483": "13___CATEGORICAL___nom_7___8c4ce64a1", "1484": "13___CATEGORICAL___nom_7___8ca39b82b", "1485": "13___CATEGORICAL___nom_7___8cae1caeb", "1486": "13___CATEGORICAL___nom_7___8cb79f2da", "1487": "13___CATEGORICAL___nom_7___8ced116b7", "1488": "13___CATEGORICAL___nom_7___8cfe22d7e", "1489": "13___CATEGORICAL___nom_7___8d1bc56fe", "1490": "13___CATEGORICAL___nom_7___8dc67ac8e", "1491": "13___CATEGORICAL___nom_7___8e03db5e1", "1492": "13___CATEGORICAL___nom_7___8e40d2880", "1493": "13___CATEGORICAL___nom_7___8e61561e6", "1494": "13___CATEGORICAL___nom_7___8e8048598", "1495": "13___CATEGORICAL___nom_7___8ed1c6155", "1496": "13___CATEGORICAL___nom_7___8ed464eb9", "1497": "13___CATEGORICAL___nom_7___8fa0da83a", "1498": "13___CATEGORICAL___nom_7___8ff9e8ddf", "1499": "13___CATEGORICAL___nom_7___90470cf2d", "1500": "13___CATEGORICAL___nom_7___9059d843f", "1501": "13___CATEGORICAL___nom_7___90615d10f", "1502": "13___CATEGORICAL___nom_7___909d5dccd", "1503": "13___CATEGORICAL___nom_7___90a1ccdf7", "1504": "13___CATEGORICAL___nom_7___90b02da35", "1505": "13___CATEGORICAL___nom_7___90e044eae", "1506": "13___CATEGORICAL___nom_7___90f43deca", "1507": "13___CATEGORICAL___nom_7___912e598df", "1508": "13___CATEGORICAL___nom_7___91473c44a", "1509": "13___CATEGORICAL___nom_7___9168277a6", "1510": "13___CATEGORICAL___nom_7___91a780da9", "1511": "13___CATEGORICAL___nom_7___91c26901a", "1512": "13___CATEGORICAL___nom_7___91cd074b1", "1513": "13___CATEGORICAL___nom_7___91d923041", "1514": "13___CATEGORICAL___nom_7___920b9ec8b", "1515": "13___CATEGORICAL___nom_7___923b05bc7", "1516": "13___CATEGORICAL___nom_7___9249f342f", "1517": "13___CATEGORICAL___nom_7___925c555e6", "1518": "13___CATEGORICAL___nom_7___92875bfea", "1519": "13___CATEGORICAL___nom_7___92be37205", "1520": "13___CATEGORICAL___nom_7___93803e42d", "1521": "13___CATEGORICAL___nom_7___93e0f9684", "1522": "13___CATEGORICAL___nom_7___94050b5d1", "1523": "13___CATEGORICAL___nom_7___944df579c", "1524": "13___CATEGORICAL___nom_7___94584c607", "1525": "13___CATEGORICAL___nom_7___9461b8daf", "1526": "13___CATEGORICAL___nom_7___94943a12c", "1527": "13___CATEGORICAL___nom_7___94bd02ef5", "1528": "13___CATEGORICAL___nom_7___953b7e9c6", "1529": "13___CATEGORICAL___nom_7___95631f5c2", "1530": "13___CATEGORICAL___nom_7___9564909ff", "1531": "13___CATEGORICAL___nom_7___95bcba86f", "1532": "13___CATEGORICAL___nom_7___9615948a4", "1533": "13___CATEGORICAL___nom_7___9627ac285", "1534": "13___CATEGORICAL___nom_7___962fb7d1e", "1535": "13___CATEGORICAL___nom_7___9647e18ac", "1536": "13___CATEGORICAL___nom_7___965be99eb", "1537": "13___CATEGORICAL___nom_7___9662106a7", "1538": "13___CATEGORICAL___nom_7___967f2aceb", "1539": "13___CATEGORICAL___nom_7___968004140", "1540": "13___CATEGORICAL___nom_7___969a8b888", "1541": "13___CATEGORICAL___nom_7___969b883a6", "1542": "13___CATEGORICAL___nom_7___96dacbb81", "1543": "13___CATEGORICAL___nom_7___9727c464c", "1544": "13___CATEGORICAL___nom_7___972c5a6bc", "1545": "13___CATEGORICAL___nom_7___9736432c1", "1546": "13___CATEGORICAL___nom_7___9766a7a46", "1547": "13___CATEGORICAL___nom_7___97bea5d7c", "1548": "13___CATEGORICAL___nom_7___97e8e820e", "1549": "13___CATEGORICAL___nom_7___97ed2b47a", "1550": "13___CATEGORICAL___nom_7___9809d6078", "1551": "13___CATEGORICAL___nom_7___987433007", "1552": "13___CATEGORICAL___nom_7___98f7467d7", "1553": "13___CATEGORICAL___nom_7___9906abd19", "1554": "13___CATEGORICAL___nom_7___994b3019c", "1555": "13___CATEGORICAL___nom_7___9992c71bf", "1556": "13___CATEGORICAL___nom_7___99a4414f3", "1557": "13___CATEGORICAL___nom_7___99afe26fe", "1558": "13___CATEGORICAL___nom_7___99e773789", "1559": "13___CATEGORICAL___nom_7___9aa2ce8f0", "1560": "13___CATEGORICAL___nom_7___9aaac4deb", "1561": "13___CATEGORICAL___nom_7___9b3244d01", "1562": "13___CATEGORICAL___nom_7___9c8a0bf52", "1563": "13___CATEGORICAL___nom_7___9cc26955a", "1564": "13___CATEGORICAL___nom_7___9d46d5612", "1565": "13___CATEGORICAL___nom_7___9d6653dde", "1566": "13___CATEGORICAL___nom_7___9d7167a13", "1567": "13___CATEGORICAL___nom_7___9d8f82dba", "1568": "13___CATEGORICAL___nom_7___9e8e8793d", "1569": "13___CATEGORICAL___nom_7___9ec27039d", "1570": "13___CATEGORICAL___nom_7___9ef0dc3ff", "1571": "13___CATEGORICAL___nom_7___9f6272571", "1572": "13___CATEGORICAL___nom_7___9f99947e2", "1573": "13___CATEGORICAL___nom_7___9fa324a89", "1574": "13___CATEGORICAL___nom_7___9fce91b1e", "1575": "13___CATEGORICAL___nom_7___9ff342e6e", "1576": "13___CATEGORICAL___nom_7___a08464096", "1577": "13___CATEGORICAL___nom_7___a09faf01e", "1578": "13___CATEGORICAL___nom_7___a0be4f3da", "1579": "13___CATEGORICAL___nom_7___a11ffef62", "1580": "13___CATEGORICAL___nom_7___a14a75e39", "1581": "13___CATEGORICAL___nom_7___a165a6509", "1582": "13___CATEGORICAL___nom_7___a1bf112de", "1583": "13___CATEGORICAL___nom_7___a1e0839a7", "1584": "13___CATEGORICAL___nom_7___a208938b0", "1585": "13___CATEGORICAL___nom_7___a2507f97d", "1586": "13___CATEGORICAL___nom_7___a26b59c24", "1587": "13___CATEGORICAL___nom_7___a2c2c7874", "1588": "13___CATEGORICAL___nom_7___a2faee373", "1589": "13___CATEGORICAL___nom_7___a2ff76df0", "1590": "13___CATEGORICAL___nom_7___a354255c4", "1591": "13___CATEGORICAL___nom_7___a380cef14", "1592": "13___CATEGORICAL___nom_7___a386cd732", "1593": "13___CATEGORICAL___nom_7___a40ac269e", "1594": "13___CATEGORICAL___nom_7___a42386065", "1595": "13___CATEGORICAL___nom_7___a4592b8a2", "1596": "13___CATEGORICAL___nom_7___a48a6d284", "1597": "13___CATEGORICAL___nom_7___a493a33b1", "1598": "13___CATEGORICAL___nom_7___a4d748277", "1599": "13___CATEGORICAL___nom_7___a4f2b4b24", "1600": "13___CATEGORICAL___nom_7___a52645fc7", "1601": "13___CATEGORICAL___nom_7___a5406a31a", "1602": "13___CATEGORICAL___nom_7___a56be00d1", "1603": "13___CATEGORICAL___nom_7___a58b84c81", "1604": "13___CATEGORICAL___nom_7___a5b4569d7", "1605": "13___CATEGORICAL___nom_7___a62d99593", "1606": "13___CATEGORICAL___nom_7___a66d57bb7", "1607": "13___CATEGORICAL___nom_7___a693ffb11", "1608": "13___CATEGORICAL___nom_7___a6a36f527", "1609": "13___CATEGORICAL___nom_7___a6b411798", "1610": "13___CATEGORICAL___nom_7___a6c58827f", "1611": "13___CATEGORICAL___nom_7___a6f3a3931", "1612": "13___CATEGORICAL___nom_7___a7720ac6e", "1613": "13___CATEGORICAL___nom_7___a77ce02b3", "1614": "13___CATEGORICAL___nom_7___a79b90d91", "1615": "13___CATEGORICAL___nom_7___a7c736bfd", "1616": "13___CATEGORICAL___nom_7___a8409f08b", "1617": "13___CATEGORICAL___nom_7___a8435ea56", "1618": "13___CATEGORICAL___nom_7___a84a7c934", "1619": "13___CATEGORICAL___nom_7___a85d5428c", "1620": "13___CATEGORICAL___nom_7___a88395028", "1621": "13___CATEGORICAL___nom_7___a8b006b27", "1622": "13___CATEGORICAL___nom_7___a8f53c631", "1623": "13___CATEGORICAL___nom_7___a92cf03ee", "1624": "13___CATEGORICAL___nom_7___a94100b59", "1625": "13___CATEGORICAL___nom_7___a95d13114", "1626": "13___CATEGORICAL___nom_7___a9fc363fb", "1627": "13___CATEGORICAL___nom_7___aa090f2c6", "1628": "13___CATEGORICAL___nom_7___aa148acce", "1629": "13___CATEGORICAL___nom_7___aad1364b6", "1630": "13___CATEGORICAL___nom_7___ab3200fa5", "1631": "13___CATEGORICAL___nom_7___ab40bb225", "1632": "13___CATEGORICAL___nom_7___ab8964e52", "1633": "13___CATEGORICAL___nom_7___abbb92347", "1634": "13___CATEGORICAL___nom_7___ac06d8690", "1635": "13___CATEGORICAL___nom_7___ac085e17a", "1636": "13___CATEGORICAL___nom_7___ac35c8d4b", "1637": "13___CATEGORICAL___nom_7___ac36811a4", "1638": "13___CATEGORICAL___nom_7___ac83c06ee", "1639": "13___CATEGORICAL___nom_7___acc3850c7", "1640": "13___CATEGORICAL___nom_7___accc230d5", "1641": "13___CATEGORICAL___nom_7___acedff31e", "1642": "13___CATEGORICAL___nom_7___ad0ac1ea7", "1643": "13___CATEGORICAL___nom_7___ad8263c35", "1644": "13___CATEGORICAL___nom_7___ae04b2089", "1645": "13___CATEGORICAL___nom_7___ae1edb14c", "1646": "13___CATEGORICAL___nom_7___ae21240f5", "1647": "13___CATEGORICAL___nom_7___ae526f847", "1648": "13___CATEGORICAL___nom_7___af2a1f476", "1649": "13___CATEGORICAL___nom_7___af5b23f9e", "1650": "13___CATEGORICAL___nom_7___af5c8eb4f", "1651": "13___CATEGORICAL___nom_7___af991d8c3", "1652": "13___CATEGORICAL___nom_7___afc659a2f", "1653": "13___CATEGORICAL___nom_7___b0304151b", "1654": "13___CATEGORICAL___nom_7___b042166d5", "1655": "13___CATEGORICAL___nom_7___b04ce2508", "1656": "13___CATEGORICAL___nom_7___b05853f24", "1657": "13___CATEGORICAL___nom_7___b0714c1a4", "1658": "13___CATEGORICAL___nom_7___b089d5143", "1659": "13___CATEGORICAL___nom_7___b09ebe1d6", "1660": "13___CATEGORICAL___nom_7___b0aeeaef9", "1661": "13___CATEGORICAL___nom_7___b0fad10d7", "1662": "13___CATEGORICAL___nom_7___b13742276", "1663": "13___CATEGORICAL___nom_7___b14b61f97", "1664": "13___CATEGORICAL___nom_7___b19f989eb", "1665": "13___CATEGORICAL___nom_7___b1e0ffc10", "1666": "13___CATEGORICAL___nom_7___b23e16a87", "1667": "13___CATEGORICAL___nom_7___b2a7c23b8", "1668": "13___CATEGORICAL___nom_7___b34fc1d43", "1669": "13___CATEGORICAL___nom_7___b387cc032", "1670": "13___CATEGORICAL___nom_7___b3b7c8b11", "1671": "13___CATEGORICAL___nom_7___b40974389", "1672": "13___CATEGORICAL___nom_7___b47acf119", "1673": "13___CATEGORICAL___nom_7___b48349b5b", "1674": "13___CATEGORICAL___nom_7___b4c14dea3", "1675": "13___CATEGORICAL___nom_7___b50676891", "1676": "13___CATEGORICAL___nom_7___b5087df8b", "1677": "13___CATEGORICAL___nom_7___b5171b9c1", "1678": "13___CATEGORICAL___nom_7___b6471dd44", "1679": "13___CATEGORICAL___nom_7___b68c2446b", "1680": "13___CATEGORICAL___nom_7___b6a49ddd1", "1681": "13___CATEGORICAL___nom_7___b6fa7faab", "1682": "13___CATEGORICAL___nom_7___b7a8563c3", "1683": "13___CATEGORICAL___nom_7___b7ae7dc82", "1684": "13___CATEGORICAL___nom_7___b80d2db07", "1685": "13___CATEGORICAL___nom_7___b8240e94d", "1686": "13___CATEGORICAL___nom_7___b87acaaed", "1687": "13___CATEGORICAL___nom_7___b8a9ee852", "1688": "13___CATEGORICAL___nom_7___b900d40f1", "1689": "13___CATEGORICAL___nom_7___b976fa2c2", "1690": "13___CATEGORICAL___nom_7___b99bdfec2", "1691": "13___CATEGORICAL___nom_7___b9b5e2958", "1692": "13___CATEGORICAL___nom_7___b9b8becf9", "1693": "13___CATEGORICAL___nom_7___ba0dcd511", "1694": "13___CATEGORICAL___nom_7___ba636104c", "1695": "13___CATEGORICAL___nom_7___ba9901303", "1696": "13___CATEGORICAL___nom_7___ba9dfc87e", "1697": "13___CATEGORICAL___nom_7___bb0bdaca6", "1698": "13___CATEGORICAL___nom_7___bb4e2bb0f", "1699": "13___CATEGORICAL___nom_7___bb5a78030", "1700": "13___CATEGORICAL___nom_7___bb836a6ec", "1701": "13___CATEGORICAL___nom_7___bb8e9193e", "1702": "13___CATEGORICAL___nom_7___bba91045f", "1703": "13___CATEGORICAL___nom_7___bbaf3de19", "1704": "13___CATEGORICAL___nom_7___bc05442e1", "1705": "13___CATEGORICAL___nom_7___bc3632840", "1706": "13___CATEGORICAL___nom_7___bc38729ef", "1707": "13___CATEGORICAL___nom_7___bc46b66a9", "1708": "13___CATEGORICAL___nom_7___bc6829ee3", "1709": "13___CATEGORICAL___nom_7___bc9fd0175", "1710": "13___CATEGORICAL___nom_7___bce324061", "1711": "13___CATEGORICAL___nom_7___bce7d2952", "1712": "13___CATEGORICAL___nom_7___bd5f24b8a", "1713": "13___CATEGORICAL___nom_7___bd9e34dc3", "1714": "13___CATEGORICAL___nom_7___bde924c27", "1715": "13___CATEGORICAL___nom_7___be1ab8f53", "1716": "13___CATEGORICAL___nom_7___be2582710", "1717": "13___CATEGORICAL___nom_7___be5254982", "1718": "13___CATEGORICAL___nom_7___be75a496b", "1719": "13___CATEGORICAL___nom_7___be87e7dad", "1720": "13___CATEGORICAL___nom_7___be90beeea", "1721": "13___CATEGORICAL___nom_7___beb450614", "1722": "13___CATEGORICAL___nom_7___bebb3afec", "1723": "13___CATEGORICAL___nom_7___bf4479f1c", "1724": "13___CATEGORICAL___nom_7___bf6088f9f", "1725": "13___CATEGORICAL___nom_7___bf79bfda3", "1726": "13___CATEGORICAL___nom_7___bf899de6f", "1727": "13___CATEGORICAL___nom_7___bfa59895f", "1728": "13___CATEGORICAL___nom_7___bfcd16c3e", "1729": "13___CATEGORICAL___nom_7___bffc9bceb", "1730": "13___CATEGORICAL___nom_7___c01dd4885", "1731": "13___CATEGORICAL___nom_7___c04e1ba14", "1732": "13___CATEGORICAL___nom_7___c073efb40", "1733": "13___CATEGORICAL___nom_7___c0981047a", "1734": "13___CATEGORICAL___nom_7___c0a98f200", "1735": "13___CATEGORICAL___nom_7___c0f0163d0", "1736": "13___CATEGORICAL___nom_7___c0f017507", "1737": "13___CATEGORICAL___nom_7___c1009ae3b", "1738": "13___CATEGORICAL___nom_7___c1227b3f1", "1739": "13___CATEGORICAL___nom_7___c1739946d", "1740": "13___CATEGORICAL___nom_7___c17f0bea5", "1741": "13___CATEGORICAL___nom_7___c1cbba46b", "1742": "13___CATEGORICAL___nom_7___c1cc0b554", "1743": "13___CATEGORICAL___nom_7___c2091c1eb", "1744": "13___CATEGORICAL___nom_7___c228ac4d5", "1745": "13___CATEGORICAL___nom_7___c2759379b", "1746": "13___CATEGORICAL___nom_7___c297ebda6", "1747": "13___CATEGORICAL___nom_7___c3112515d", "1748": "13___CATEGORICAL___nom_7___c320b0509", "1749": "13___CATEGORICAL___nom_7___c344f4362", "1750": "13___CATEGORICAL___nom_7___c385a4e29", "1751": "13___CATEGORICAL___nom_7___c399f2457", "1752": "13___CATEGORICAL___nom_7___c3a05d1e3", "1753": "13___CATEGORICAL___nom_7___c41dd2bb6", "1754": "13___CATEGORICAL___nom_7___c425897ff", "1755": "13___CATEGORICAL___nom_7___c4455f4a8", "1756": "13___CATEGORICAL___nom_7___c4465b0df", "1757": "13___CATEGORICAL___nom_7___c44dcf0d4", "1758": "13___CATEGORICAL___nom_7___c44e2e27f", "1759": "13___CATEGORICAL___nom_7___c44ee82e9", "1760": "13___CATEGORICAL___nom_7___c46d256c2", "1761": "13___CATEGORICAL___nom_7___c4a8e37bb", "1762": "13___CATEGORICAL___nom_7___c4c73c899", "1763": "13___CATEGORICAL___nom_7___c50b8657f", "1764": "13___CATEGORICAL___nom_7___c54e44b99", "1765": "13___CATEGORICAL___nom_7___c55ec51a8", "1766": "13___CATEGORICAL___nom_7___c5632b657", "1767": "13___CATEGORICAL___nom_7___c603d9c1a", "1768": "13___CATEGORICAL___nom_7___c6344321c", "1769": "13___CATEGORICAL___nom_7___c65870db3", "1770": "13___CATEGORICAL___nom_7___c6587685d", "1771": "13___CATEGORICAL___nom_7___c6aad2fd5", "1772": "13___CATEGORICAL___nom_7___c6dfa929a", "1773": "13___CATEGORICAL___nom_7___c6fd15643", "1774": "13___CATEGORICAL___nom_7___c75a7f5f8", "1775": "13___CATEGORICAL___nom_7___c7830529f", "1776": "13___CATEGORICAL___nom_7___c7858e014", "1777": "13___CATEGORICAL___nom_7___c79fbc620", "1778": "13___CATEGORICAL___nom_7___c7a066345", "1779": "13___CATEGORICAL___nom_7___c840fdc53", "1780": "13___CATEGORICAL___nom_7___c889a5937", "1781": "13___CATEGORICAL___nom_7___c893d29eb", "1782": "13___CATEGORICAL___nom_7___c89888c18", "1783": "13___CATEGORICAL___nom_7___c8ae4ea14", "1784": "13___CATEGORICAL___nom_7___c90ea1419", "1785": "13___CATEGORICAL___nom_7___c92eb0903", "1786": "13___CATEGORICAL___nom_7___c991c5808", "1787": "13___CATEGORICAL___nom_7___c9c278e4c", "1788": "13___CATEGORICAL___nom_7___c9d67c6a2", "1789": "13___CATEGORICAL___nom_7___c9ed7172b", "1790": "13___CATEGORICAL___nom_7___ca1133a6d", "1791": "13___CATEGORICAL___nom_7___ca18098bc", "1792": "13___CATEGORICAL___nom_7___ca56fd6ef", "1793": "13___CATEGORICAL___nom_7___caa9caf90", "1794": "13___CATEGORICAL___nom_7___caa9fe3d5", "1795": "13___CATEGORICAL___nom_7___cab0b4ca9", "1796": "13___CATEGORICAL___nom_7___cafe9ae53", "1797": "13___CATEGORICAL___nom_7___cb16bbc3a", "1798": "13___CATEGORICAL___nom_7___cb5a41416", "1799": "13___CATEGORICAL___nom_7___cb5d42426", "1800": "13___CATEGORICAL___nom_7___cb9bbed08", "1801": "13___CATEGORICAL___nom_7___cbb61d00c", "1802": "13___CATEGORICAL___nom_7___cbca7331d", "1803": "13___CATEGORICAL___nom_7___cbcab7826", "1804": "13___CATEGORICAL___nom_7___cbf14e5c1", "1805": "13___CATEGORICAL___nom_7___cc11c2667", "1806": "13___CATEGORICAL___nom_7___cc13561c3", "1807": "13___CATEGORICAL___nom_7___cc340823c", "1808": "13___CATEGORICAL___nom_7___ccb907da7", "1809": "13___CATEGORICAL___nom_7___cd5c7ef44", "1810": "13___CATEGORICAL___nom_7___cd6ed34ba", "1811": "13___CATEGORICAL___nom_7___cda68a782", "1812": "13___CATEGORICAL___nom_7___cdc34b4e5", "1813": "13___CATEGORICAL___nom_7___cdff51f56", "1814": "13___CATEGORICAL___nom_7___ce310f731", "1815": "13___CATEGORICAL___nom_7___ce4d37a74", "1816": "13___CATEGORICAL___nom_7___ce69dff3b", "1817": "13___CATEGORICAL___nom_7___ce6de97e2", "1818": "13___CATEGORICAL___nom_7___ced4fd70a", "1819": "13___CATEGORICAL___nom_7___cee060674", "1820": "13___CATEGORICAL___nom_7___cf2c53040", "1821": "13___CATEGORICAL___nom_7___cf603fd75", "1822": "13___CATEGORICAL___nom_7___d02a6b0ba", "1823": "13___CATEGORICAL___nom_7___d038b6293", "1824": "13___CATEGORICAL___nom_7___d08e95edb", "1825": "13___CATEGORICAL___nom_7___d09ce80cb", "1826": "13___CATEGORICAL___nom_7___d10553e7e", "1827": "13___CATEGORICAL___nom_7___d12022685", "1828": "13___CATEGORICAL___nom_7___d1586e0e0", "1829": "13___CATEGORICAL___nom_7___d1602b0e3", "1830": "13___CATEGORICAL___nom_7___d1781bc7c", "1831": "13___CATEGORICAL___nom_7___d18fe040f", "1832": "13___CATEGORICAL___nom_7___d1902273e", "1833": "13___CATEGORICAL___nom_7___d20d94a2b", "1834": "13___CATEGORICAL___nom_7___d22846583", "1835": "13___CATEGORICAL___nom_7___d23ee321f", "1836": "13___CATEGORICAL___nom_7___d240afdff", "1837": "13___CATEGORICAL___nom_7___d264f6367", "1838": "13___CATEGORICAL___nom_7___d2a21ad4e", "1839": "13___CATEGORICAL___nom_7___d2d19e1a7", "1840": "13___CATEGORICAL___nom_7___d2d8eabdb", "1841": "13___CATEGORICAL___nom_7___d2fddb57a", "1842": "13___CATEGORICAL___nom_7___d31f87228", "1843": "13___CATEGORICAL___nom_7___d34f13683", "1844": "13___CATEGORICAL___nom_7___d3abce837", "1845": "13___CATEGORICAL___nom_7___d3bb8adbd", "1846": "13___CATEGORICAL___nom_7___d435a8690", "1847": "13___CATEGORICAL___nom_7___d44d10b4c", "1848": "13___CATEGORICAL___nom_7___d4821d013", "1849": "13___CATEGORICAL___nom_7___d4adff695", "1850": "13___CATEGORICAL___nom_7___d4f49cb0e", "1851": "13___CATEGORICAL___nom_7___d538e2731", "1852": "13___CATEGORICAL___nom_7___d54f42570", "1853": "13___CATEGORICAL___nom_7___d590d385d", "1854": "13___CATEGORICAL___nom_7___d593bd66e", "1855": "13___CATEGORICAL___nom_7___d59d731b6", "1856": "13___CATEGORICAL___nom_7___d62be8908", "1857": "13___CATEGORICAL___nom_7___d62ddb2cc", "1858": "13___CATEGORICAL___nom_7___d6325d953", "1859": "13___CATEGORICAL___nom_7___d640f9971", "1860": "13___CATEGORICAL___nom_7___d67c73fce", "1861": "13___CATEGORICAL___nom_7___d7326ea7a", "1862": "13___CATEGORICAL___nom_7___d75bd1f4b", "1863": "13___CATEGORICAL___nom_7___d79621729", "1864": "13___CATEGORICAL___nom_7___d79956ebd", "1865": "13___CATEGORICAL___nom_7___d7a376f1b", "1866": "13___CATEGORICAL___nom_7___d7d3d1589", "1867": "13___CATEGORICAL___nom_7___d7e3d9212", "1868": "13___CATEGORICAL___nom_7___d7f80706c", "1869": "13___CATEGORICAL___nom_7___d8180614b", "1870": "13___CATEGORICAL___nom_7___d829788bf", "1871": "13___CATEGORICAL___nom_7___d82d4d997", "1872": "13___CATEGORICAL___nom_7___d863df6ca", "1873": "13___CATEGORICAL___nom_7___d888dabd2", "1874": "13___CATEGORICAL___nom_7___d8ed36706", "1875": "13___CATEGORICAL___nom_7___d9042b3dd", "1876": "13___CATEGORICAL___nom_7___d95b64413", "1877": "13___CATEGORICAL___nom_7___d96e5093d", "1878": "13___CATEGORICAL___nom_7___d998d31f1", "1879": "13___CATEGORICAL___nom_7___d99b8ba06", "1880": "13___CATEGORICAL___nom_7___d9bd2ddab", "1881": "13___CATEGORICAL___nom_7___d9d1ced86", "1882": "13___CATEGORICAL___nom_7___d9e7595bb", "1883": "13___CATEGORICAL___nom_7___da3b970aa", "1884": "13___CATEGORICAL___nom_7___da43ab6c2", "1885": "13___CATEGORICAL___nom_7___da44926f5", "1886": "13___CATEGORICAL___nom_7___da7ad33d9", "1887": "13___CATEGORICAL___nom_7___da8e9448f", "1888": "13___CATEGORICAL___nom_7___dac8c3dcc", "1889": "13___CATEGORICAL___nom_7___dacc0d3ee", "1890": "13___CATEGORICAL___nom_7___dadcfe5b8", "1891": "13___CATEGORICAL___nom_7___dae034a7f", "1892": "13___CATEGORICAL___nom_7___daf851ceb", "1893": "13___CATEGORICAL___nom_7___dafcbebd7", "1894": "13___CATEGORICAL___nom_7___db47ba6d3", "1895": "13___CATEGORICAL___nom_7___db871c626", "1896": "13___CATEGORICAL___nom_7___db8d9e064", "1897": "13___CATEGORICAL___nom_7___dbe124244", "1898": "13___CATEGORICAL___nom_7___dc0795ce0", "1899": "13___CATEGORICAL___nom_7___dcc36a057", "1900": "13___CATEGORICAL___nom_7___dce6c541c", "1901": "13___CATEGORICAL___nom_7___dd9e53e35", "1902": "13___CATEGORICAL___nom_7___ddcd60df1", "1903": "13___CATEGORICAL___nom_7___de8010023", "1904": "13___CATEGORICAL___nom_7___dea92485d", "1905": "13___CATEGORICAL___nom_7___ded54c928", "1906": "13___CATEGORICAL___nom_7___def702c19", "1907": "13___CATEGORICAL___nom_7___df0980add", "1908": "13___CATEGORICAL___nom_7___dfc3aa518", "1909": "13___CATEGORICAL___nom_7___dff007d71", "1910": "13___CATEGORICAL___nom_7___e0570ce05", "1911": "13___CATEGORICAL___nom_7___e0aa2bf61", "1912": "13___CATEGORICAL___nom_7___e0ad1326d", "1913": "13___CATEGORICAL___nom_7___e137ece0a", "1914": "13___CATEGORICAL___nom_7___e14cde7ef", "1915": "13___CATEGORICAL___nom_7___e14d5f3eb", "1916": "13___CATEGORICAL___nom_7___e19103252", "1917": "13___CATEGORICAL___nom_7___e1bdff4c4", "1918": "13___CATEGORICAL___nom_7___e1ea45053", "1919": "13___CATEGORICAL___nom_7___e2662c6c7", "1920": "13___CATEGORICAL___nom_7___e284f6804", "1921": "13___CATEGORICAL___nom_7___e28b7e991", "1922": "13___CATEGORICAL___nom_7___e29db1304", "1923": "13___CATEGORICAL___nom_7___e2be53f4a", "1924": "13___CATEGORICAL___nom_7___e2d4e02e1", "1925": "13___CATEGORICAL___nom_7___e3306fc68", "1926": "13___CATEGORICAL___nom_7___e3fd0c213", "1927": "13___CATEGORICAL___nom_7___e4309571f", "1928": "13___CATEGORICAL___nom_7___e44a8642a", "1929": "13___CATEGORICAL___nom_7___e47776758", "1930": "13___CATEGORICAL___nom_7___e494c08d6", "1931": "13___CATEGORICAL___nom_7___e4ae98c29", "1932": "13___CATEGORICAL___nom_7___e4af09e22", "1933": "13___CATEGORICAL___nom_7___e4f712b17", "1934": "13___CATEGORICAL___nom_7___e53c2bd92", "1935": "13___CATEGORICAL___nom_7___e561794ca", "1936": "13___CATEGORICAL___nom_7___e569f492e", "1937": "13___CATEGORICAL___nom_7___e58a026bb", "1938": "13___CATEGORICAL___nom_7___e5e25d2c6", "1939": "13___CATEGORICAL___nom_7___e5f135612", "1940": "13___CATEGORICAL___nom_7___e5ff2a65e", "1941": "13___CATEGORICAL___nom_7___e65a0c3c5", "1942": "13___CATEGORICAL___nom_7___e669192b9", "1943": "13___CATEGORICAL___nom_7___e6bd86830", "1944": "13___CATEGORICAL___nom_7___e700486e7", "1945": "13___CATEGORICAL___nom_7___e7619f99d", "1946": "13___CATEGORICAL___nom_7___e78ec50b4", "1947": "13___CATEGORICAL___nom_7___e7a605132", "1948": "13___CATEGORICAL___nom_7___e7ca9f823", "1949": "13___CATEGORICAL___nom_7___e8d8ed94a", "1950": "13___CATEGORICAL___nom_7___e8dad647e", "1951": "13___CATEGORICAL___nom_7___e8e8b6747", "1952": "13___CATEGORICAL___nom_7___e94478990", "1953": "13___CATEGORICAL___nom_7___e957f975c", "1954": "13___CATEGORICAL___nom_7___e95b0eacb", "1955": "13___CATEGORICAL___nom_7___e97321a57", "1956": "13___CATEGORICAL___nom_7___ead3f8d51", "1957": "13___CATEGORICAL___nom_7___eb28ddf49", "1958": "13___CATEGORICAL___nom_7___eb50b1f32", "1959": "13___CATEGORICAL___nom_7___eb7f63824", "1960": "13___CATEGORICAL___nom_7___ec0d9b6e3", "1961": "13___CATEGORICAL___nom_7___ec387fa89", "1962": "13___CATEGORICAL___nom_7___ec54fcb5c", "1963": "13___CATEGORICAL___nom_7___ec69236eb", "1964": "13___CATEGORICAL___nom_7___ecb2421a4", "1965": "13___CATEGORICAL___nom_7___ecf835ab7", "1966": "13___CATEGORICAL___nom_7___ed1a5c70c", "1967": "13___CATEGORICAL___nom_7___ed6f22581", "1968": "13___CATEGORICAL___nom_7___edc312c0e", "1969": "13___CATEGORICAL___nom_7___edc7ffe95", "1970": "13___CATEGORICAL___nom_7___edde75180", "1971": "13___CATEGORICAL___nom_7___eeba65bef", "1972": "13___CATEGORICAL___nom_7___ef19d40b7", "1973": "13___CATEGORICAL___nom_7___ef5910ca3", "1974": "13___CATEGORICAL___nom_7___efd11be19", "1975": "13___CATEGORICAL___nom_7___efe59a830", "1976": "13___CATEGORICAL___nom_7___f0194bee4", "1977": "13___CATEGORICAL___nom_7___f037a1bfd", "1978": "13___CATEGORICAL___nom_7___f068c45b3", "1979": "13___CATEGORICAL___nom_7___f09f9c3a9", "1980": "13___CATEGORICAL___nom_7___f0c830981", "1981": "13___CATEGORICAL___nom_7___f14ea9b76", "1982": "13___CATEGORICAL___nom_7___f16d217c6", "1983": "13___CATEGORICAL___nom_7___f16ff4894", "1984": "13___CATEGORICAL___nom_7___f174961df", "1985": "13___CATEGORICAL___nom_7___f1aec6b64", "1986": "13___CATEGORICAL___nom_7___f1bb0a256", "1987": "13___CATEGORICAL___nom_7___f1bd2fbf3", "1988": "13___CATEGORICAL___nom_7___f21bcfb47", "1989": "13___CATEGORICAL___nom_7___f22620213", "1990": "13___CATEGORICAL___nom_7___f2461066e", "1991": "13___CATEGORICAL___nom_7___f2691d592", "1992": "13___CATEGORICAL___nom_7___f2935290e", "1993": "13___CATEGORICAL___nom_7___f2ad3e302", "1994": "13___CATEGORICAL___nom_7___f2c5f0f26", "1995": "13___CATEGORICAL___nom_7___f31a506ec", "1996": "13___CATEGORICAL___nom_7___f359cfaa7", "1997": "13___CATEGORICAL___nom_7___f393c224a", "1998": "13___CATEGORICAL___nom_7___f415463b7", "1999": "13___CATEGORICAL___nom_7___f41956813", "2000": "13___CATEGORICAL___nom_7___f477d5857", "2001": "13___CATEGORICAL___nom_7___f4ae29b7d", "2002": "13___CATEGORICAL___nom_7___f53ce6da5", "2003": "13___CATEGORICAL___nom_7___f5804b8e6", "2004": "13___CATEGORICAL___nom_7___f654b0e9b", "2005": "13___CATEGORICAL___nom_7___f65b8f5ca", "2006": "13___CATEGORICAL___nom_7___f66675c18", "2007": "13___CATEGORICAL___nom_7___f68715780", "2008": "13___CATEGORICAL___nom_7___f6ce51725", "2009": "13___CATEGORICAL___nom_7___f6ddab67f", "2010": "13___CATEGORICAL___nom_7___f6f9bfc77", "2011": "13___CATEGORICAL___nom_7___f7088f803", "2012": "13___CATEGORICAL___nom_7___f70988daa", "2013": "13___CATEGORICAL___nom_7___f718e6e9c", "2014": "13___CATEGORICAL___nom_7___f760c0b42", "2015": "13___CATEGORICAL___nom_7___f8140ebfd", "2016": "13___CATEGORICAL___nom_7___f81532d6e", "2017": "13___CATEGORICAL___nom_7___f865d9ec5", "2018": "13___CATEGORICAL___nom_7___f8a8acc8d", "2019": "13___CATEGORICAL___nom_7___f8a8c1204", "2020": "13___CATEGORICAL___nom_7___f8c2142c2", "2021": "13___CATEGORICAL___nom_7___f8d54b1e6", "2022": "13___CATEGORICAL___nom_7___f911cbe30", "2023": "13___CATEGORICAL___nom_7___f92e1c054", "2024": "13___CATEGORICAL___nom_7___f98009f60", "2025": "13___CATEGORICAL___nom_7___f9a2ec016", "2026": "13___CATEGORICAL___nom_7___f9d8e6fbc", "2027": "13___CATEGORICAL___nom_7___f9e28a0b9", "2028": "13___CATEGORICAL___nom_7___fa311a2a3", "2029": "13___CATEGORICAL___nom_7___fa32a2d23", "2030": "13___CATEGORICAL___nom_7___fa4714646", "2031": "13___CATEGORICAL___nom_7___fa5ca239e", "2032": "13___CATEGORICAL___nom_7___fa7ec9ef0", "2033": "13___CATEGORICAL___nom_7___fab17b425", "2034": "13___CATEGORICAL___nom_7___faffef3a9", "2035": "13___CATEGORICAL___nom_7___fb05522b9", "2036": "13___CATEGORICAL___nom_7___fb36575c6", "2037": "13___CATEGORICAL___nom_7___fb41d6f9d", "2038": "13___CATEGORICAL___nom_7___fb6716e80", "2039": "13___CATEGORICAL___nom_7___fbc1f9611", "2040": "13___CATEGORICAL___nom_7___fc4c33777", "2041": "13___CATEGORICAL___nom_7___fc879d4aa", "2042": "13___CATEGORICAL___nom_7___fca1988e7", "2043": "13___CATEGORICAL___nom_7___fca9f7eb7", "2044": "13___CATEGORICAL___nom_7___fcba988a0", "2045": "13___CATEGORICAL___nom_7___fcceb793d", "2046": "13___CATEGORICAL___nom_7___fcd030cc2", "2047": "13___CATEGORICAL___nom_7___fcf2b8dce", "2048": "13___CATEGORICAL___nom_7___fd9dd89aa", "2049": "13___CATEGORICAL___nom_7___fda0c1499", "2050": "13___CATEGORICAL___nom_7___fdbaa2c22", "2051": "13___CATEGORICAL___nom_7___fe27cc23d", "2052": "13___CATEGORICAL___nom_7___fe7e29ba1", "2053": "13___CATEGORICAL___nom_7___fef807a3e", "2054": "13___CATEGORICAL___nom_7___ff1165b7a", "2055": "13___CATEGORICAL___nom_7___ff5b35098", "2056": "13___CATEGORICAL___nom_7___ff5db7584", "2057": "13___CATEGORICAL___nom_7___ff6b6817e", "2058": "13___CATEGORICAL___nom_7___ff8d529ff", "2059": "13___CATEGORICAL___nom_7___ffa3210ac", "2060": "13___CATEGORICAL___nom_7___ffe76496e", "2061": "13___CATEGORICAL___nom_7___ffec80a6a", "2062": "14___CATEGORICAL___nom_8___000ae3bea", "2063": "14___CATEGORICAL___nom_8___0012ac11d", "2064": "14___CATEGORICAL___nom_8___002ae26fa", "2065": "14___CATEGORICAL___nom_8___00405ddc2", "2066": "14___CATEGORICAL___nom_8___00435b4d7", "2067": "14___CATEGORICAL___nom_8___005f66bb5", "2068": "14___CATEGORICAL___nom_8___00680a186", "2069": "14___CATEGORICAL___nom_8___007e93327", "2070": "14___CATEGORICAL___nom_8___0107394b0", "2071": "14___CATEGORICAL___nom_8___014347053", "2072": "14___CATEGORICAL___nom_8___0178ac593", "2073": "14___CATEGORICAL___nom_8___017fc2f26", "2074": "14___CATEGORICAL___nom_8___0194a0e30", "2075": "14___CATEGORICAL___nom_8___01a7b34ec", "2076": "14___CATEGORICAL___nom_8___01b9086f7", "2077": "14___CATEGORICAL___nom_8___01b962964", "2078": "14___CATEGORICAL___nom_8___01dfa4ee9", "2079": "14___CATEGORICAL___nom_8___022131130", "2080": "14___CATEGORICAL___nom_8___023143418", "2081": "14___CATEGORICAL___nom_8___0242e99a1", "2082": "14___CATEGORICAL___nom_8___02575b3b3", "2083": "14___CATEGORICAL___nom_8___02974ce39", "2084": "14___CATEGORICAL___nom_8___02d46a6a3", "2085": "14___CATEGORICAL___nom_8___02dd68b90", "2086": "14___CATEGORICAL___nom_8___02f0e0a12", "2087": "14___CATEGORICAL___nom_8___02f3394da", "2088": "14___CATEGORICAL___nom_8___0326b5809", "2089": "14___CATEGORICAL___nom_8___03398d68f", "2090": "14___CATEGORICAL___nom_8___034a71378", "2091": "14___CATEGORICAL___nom_8___0373f1461", "2092": "14___CATEGORICAL___nom_8___03bd793ce", "2093": "14___CATEGORICAL___nom_8___03fae7523", "2094": "14___CATEGORICAL___nom_8___040f00f57", "2095": "14___CATEGORICAL___nom_8___040f926fa", "2096": "14___CATEGORICAL___nom_8___04115e576", "2097": "14___CATEGORICAL___nom_8___0423bd7c4", "2098": "14___CATEGORICAL___nom_8___045f81ebb", "2099": "14___CATEGORICAL___nom_8___04729bec5", "2100": "14___CATEGORICAL___nom_8___047da626d", "2101": "14___CATEGORICAL___nom_8___04bc6fba2", "2102": "14___CATEGORICAL___nom_8___04c77de6c", "2103": "14___CATEGORICAL___nom_8___04f5d0c3e", "2104": "14___CATEGORICAL___nom_8___0503fc10d", "2105": "14___CATEGORICAL___nom_8___0505079cc", "2106": "14___CATEGORICAL___nom_8___0517f0852", "2107": "14___CATEGORICAL___nom_8___052027e6d", "2108": "14___CATEGORICAL___nom_8___053b5acae", "2109": "14___CATEGORICAL___nom_8___057155a1d", "2110": "14___CATEGORICAL___nom_8___0580dfba5", "2111": "14___CATEGORICAL___nom_8___05827b658", "2112": "14___CATEGORICAL___nom_8___0598d7501", "2113": "14___CATEGORICAL___nom_8___05a31d528", "2114": "14___CATEGORICAL___nom_8___05b3ebf52", "2115": "14___CATEGORICAL___nom_8___0605519a1", "2116": "14___CATEGORICAL___nom_8___061a69204", "2117": "14___CATEGORICAL___nom_8___06366367b", "2118": "14___CATEGORICAL___nom_8___064aa7d49", "2119": "14___CATEGORICAL___nom_8___068ae176d", "2120": "14___CATEGORICAL___nom_8___069fd41b7", "2121": "14___CATEGORICAL___nom_8___06aecce86", "2122": "14___CATEGORICAL___nom_8___06b35ce2b", "2123": "14___CATEGORICAL___nom_8___06b4f0f6a", "2124": "14___CATEGORICAL___nom_8___06b7e7cb3", "2125": "14___CATEGORICAL___nom_8___06d21cb44", "2126": "14___CATEGORICAL___nom_8___06e189096", "2127": "14___CATEGORICAL___nom_8___06f5ae149", "2128": "14___CATEGORICAL___nom_8___06f9521a6", "2129": "14___CATEGORICAL___nom_8___0708b0f81", "2130": "14___CATEGORICAL___nom_8___07194a5d9", "2131": "14___CATEGORICAL___nom_8___072ac6d53", "2132": "14___CATEGORICAL___nom_8___075c68fbd", "2133": "14___CATEGORICAL___nom_8___0767e6fee", "2134": "14___CATEGORICAL___nom_8___07802123c", "2135": "14___CATEGORICAL___nom_8___078133e43", "2136": "14___CATEGORICAL___nom_8___07832c0f5", "2137": "14___CATEGORICAL___nom_8___079e91baa", "2138": "14___CATEGORICAL___nom_8___07a517154", "2139": "14___CATEGORICAL___nom_8___07c094416", "2140": "14___CATEGORICAL___nom_8___07f83e288", "2141": "14___CATEGORICAL___nom_8___07fd63014", "2142": "14___CATEGORICAL___nom_8___081d24029", "2143": "14___CATEGORICAL___nom_8___0874302d8", "2144": "14___CATEGORICAL___nom_8___087606369", "2145": "14___CATEGORICAL___nom_8___089a759d4", "2146": "14___CATEGORICAL___nom_8___08b4c6446", "2147": "14___CATEGORICAL___nom_8___08e4d64aa", "2148": "14___CATEGORICAL___nom_8___0904e4be3", "2149": "14___CATEGORICAL___nom_8___090cab3a3", "2150": "14___CATEGORICAL___nom_8___0916922d0", "2151": "14___CATEGORICAL___nom_8___0965792cd", "2152": "14___CATEGORICAL___nom_8___09a1b9d6c", "2153": "14___CATEGORICAL___nom_8___09a3f3a37", "2154": "14___CATEGORICAL___nom_8___09b25b0ac", "2155": "14___CATEGORICAL___nom_8___09bf3131d", "2156": "14___CATEGORICAL___nom_8___09c0c3498", "2157": "14___CATEGORICAL___nom_8___09ca9c02e", "2158": "14___CATEGORICAL___nom_8___0a14ed13e", "2159": "14___CATEGORICAL___nom_8___0a18dc483", "2160": "14___CATEGORICAL___nom_8___0a1aa9839", "2161": "14___CATEGORICAL___nom_8___0a1df5c66", "2162": "14___CATEGORICAL___nom_8___0a6c32ff4", "2163": "14___CATEGORICAL___nom_8___0a7ccad0b", "2164": "14___CATEGORICAL___nom_8___0a9b55656", "2165": "14___CATEGORICAL___nom_8___0aa51702e", "2166": "14___CATEGORICAL___nom_8___0abbcc098", "2167": "14___CATEGORICAL___nom_8___0afef3ea2", "2168": "14___CATEGORICAL___nom_8___0b5e21a98", "2169": "14___CATEGORICAL___nom_8___0b6ec68ff", "2170": "14___CATEGORICAL___nom_8___0b6f592c5", "2171": "14___CATEGORICAL___nom_8___0b86ed30a", "2172": "14___CATEGORICAL___nom_8___0b96d446f", "2173": "14___CATEGORICAL___nom_8___0bc179521", "2174": "14___CATEGORICAL___nom_8___0bcd301f4", "2175": "14___CATEGORICAL___nom_8___0bda6bd36", "2176": "14___CATEGORICAL___nom_8___0be3d6175", "2177": "14___CATEGORICAL___nom_8___0be925697", "2178": "14___CATEGORICAL___nom_8___0bef7c48b", "2179": "14___CATEGORICAL___nom_8___0c1c426ff", "2180": "14___CATEGORICAL___nom_8___0c4a1890e", "2181": "14___CATEGORICAL___nom_8___0c52b42f2", "2182": "14___CATEGORICAL___nom_8___0ca061a36", "2183": "14___CATEGORICAL___nom_8___0cea32104", "2184": "14___CATEGORICAL___nom_8___0cf0b3e18", "2185": "14___CATEGORICAL___nom_8___0d05c62c9", "2186": "14___CATEGORICAL___nom_8___0d34cd0f8", "2187": "14___CATEGORICAL___nom_8___0d3534b3d", "2188": "14___CATEGORICAL___nom_8___0d3b018fe", "2189": "14___CATEGORICAL___nom_8___0d73d1384", "2190": "14___CATEGORICAL___nom_8___0db39daca", "2191": "14___CATEGORICAL___nom_8___0db689f6e", "2192": "14___CATEGORICAL___nom_8___0dba53ec0", "2193": "14___CATEGORICAL___nom_8___0dbfc3a3f", "2194": "14___CATEGORICAL___nom_8___0dec61873", "2195": "14___CATEGORICAL___nom_8___0e1d98ab8", "2196": "14___CATEGORICAL___nom_8___0e333d0d4", "2197": "14___CATEGORICAL___nom_8___0e87f6993", "2198": "14___CATEGORICAL___nom_8___0eb63a23f", "2199": "14___CATEGORICAL___nom_8___0ec45f250", "2200": "14___CATEGORICAL___nom_8___0ed6cb759", "2201": "14___CATEGORICAL___nom_8___0f0da48b8", "2202": "14___CATEGORICAL___nom_8___0f10e03a2", "2203": "14___CATEGORICAL___nom_8___0f3836e8e", "2204": "14___CATEGORICAL___nom_8___0f7b08b20", "2205": "14___CATEGORICAL___nom_8___0fa761198", "2206": "14___CATEGORICAL___nom_8___10088ccc0", "2207": "14___CATEGORICAL___nom_8___1020bb688", "2208": "14___CATEGORICAL___nom_8___106424365", "2209": "14___CATEGORICAL___nom_8___1086ce405", "2210": "14___CATEGORICAL___nom_8___10a85618e", "2211": "14___CATEGORICAL___nom_8___10b94d8e0", "2212": "14___CATEGORICAL___nom_8___1108bcd6c", "2213": "14___CATEGORICAL___nom_8___110ab8f08", "2214": "14___CATEGORICAL___nom_8___112d80fd7", "2215": "14___CATEGORICAL___nom_8___1162dfd0e", "2216": "14___CATEGORICAL___nom_8___117173d83", "2217": "14___CATEGORICAL___nom_8___11a1fe9b2", "2218": "14___CATEGORICAL___nom_8___11cc9bf56", "2219": "14___CATEGORICAL___nom_8___11dad1176", "2220": "14___CATEGORICAL___nom_8___11e051b41", "2221": "14___CATEGORICAL___nom_8___120c4a79b", "2222": "14___CATEGORICAL___nom_8___120d118ae", "2223": "14___CATEGORICAL___nom_8___12128339c", "2224": "14___CATEGORICAL___nom_8___1222b1a2b", "2225": "14___CATEGORICAL___nom_8___123450b5d", "2226": "14___CATEGORICAL___nom_8___1251aedb1", "2227": "14___CATEGORICAL___nom_8___126681784", "2228": "14___CATEGORICAL___nom_8___127af6795", "2229": "14___CATEGORICAL___nom_8___12930d58b", "2230": "14___CATEGORICAL___nom_8___129c2c018", "2231": "14___CATEGORICAL___nom_8___12b0ea3e2", "2232": "14___CATEGORICAL___nom_8___12f905248", "2233": "14___CATEGORICAL___nom_8___12f99703b", "2234": "14___CATEGORICAL___nom_8___1344ee64d", "2235": "14___CATEGORICAL___nom_8___13497b85f", "2236": "14___CATEGORICAL___nom_8___1387972a9", "2237": "14___CATEGORICAL___nom_8___139b4f695", "2238": "14___CATEGORICAL___nom_8___13acbf9a6", "2239": "14___CATEGORICAL___nom_8___13bca5ef4", "2240": "14___CATEGORICAL___nom_8___141536e9f", "2241": "14___CATEGORICAL___nom_8___142e4b92c", "2242": "14___CATEGORICAL___nom_8___1440a7319", "2243": "14___CATEGORICAL___nom_8___144d2efbd", "2244": "14___CATEGORICAL___nom_8___144f0ef40", "2245": "14___CATEGORICAL___nom_8___1470798e4", "2246": "14___CATEGORICAL___nom_8___1484cacf0", "2247": "14___CATEGORICAL___nom_8___14d9f495f", "2248": "14___CATEGORICAL___nom_8___14fea6768", "2249": "14___CATEGORICAL___nom_8___15091badf", "2250": "14___CATEGORICAL___nom_8___1511f8a17", "2251": "14___CATEGORICAL___nom_8___1557532cf", "2252": "14___CATEGORICAL___nom_8___1557e8a19", "2253": "14___CATEGORICAL___nom_8___15721f3b0", "2254": "14___CATEGORICAL___nom_8___1584fa610", "2255": "14___CATEGORICAL___nom_8___158a32205", "2256": "14___CATEGORICAL___nom_8___159c9a35f", "2257": "14___CATEGORICAL___nom_8___15a93c1b4", "2258": "14___CATEGORICAL___nom_8___15c80c8e3", "2259": "14___CATEGORICAL___nom_8___15cecf367", "2260": "14___CATEGORICAL___nom_8___1605fa342", "2261": "14___CATEGORICAL___nom_8___16082fc72", "2262": "14___CATEGORICAL___nom_8___161a079dc", "2263": "14___CATEGORICAL___nom_8___16236d6d1", "2264": "14___CATEGORICAL___nom_8___1623ef693", "2265": "14___CATEGORICAL___nom_8___166afba00", "2266": "14___CATEGORICAL___nom_8___166ddd303", "2267": "14___CATEGORICAL___nom_8___168c04dad", "2268": "14___CATEGORICAL___nom_8___16ba64de8", "2269": "14___CATEGORICAL___nom_8___16ebbbb31", "2270": "14___CATEGORICAL___nom_8___1707513a6", "2271": "14___CATEGORICAL___nom_8___172d56f86", "2272": "14___CATEGORICAL___nom_8___174a4adbe", "2273": "14___CATEGORICAL___nom_8___1765b7667", "2274": "14___CATEGORICAL___nom_8___17660694b", "2275": "14___CATEGORICAL___nom_8___1778df329", "2276": "14___CATEGORICAL___nom_8___178ac6030", "2277": "14___CATEGORICAL___nom_8___17b88fbdb", "2278": "14___CATEGORICAL___nom_8___17ba84114", "2279": "14___CATEGORICAL___nom_8___17c65fc15", "2280": "14___CATEGORICAL___nom_8___17d59b19a", "2281": "14___CATEGORICAL___nom_8___17e6191eb", "2282": "14___CATEGORICAL___nom_8___17fe8590c", "2283": "14___CATEGORICAL___nom_8___182a1fd8c", "2284": "14___CATEGORICAL___nom_8___18718e2cb", "2285": "14___CATEGORICAL___nom_8___1884e8810", "2286": "14___CATEGORICAL___nom_8___18a5af70f", "2287": "14___CATEGORICAL___nom_8___18bec6f9f", "2288": "14___CATEGORICAL___nom_8___18cad4b91", "2289": "14___CATEGORICAL___nom_8___18cf0e061", "2290": "14___CATEGORICAL___nom_8___18da2956d", "2291": "14___CATEGORICAL___nom_8___18db03d49", "2292": "14___CATEGORICAL___nom_8___18e704db3", "2293": "14___CATEGORICAL___nom_8___190a56e5e", "2294": "14___CATEGORICAL___nom_8___19425753f", "2295": "14___CATEGORICAL___nom_8___1942cd98b", "2296": "14___CATEGORICAL___nom_8___1952abaa1", "2297": "14___CATEGORICAL___nom_8___196f7d880", "2298": "14___CATEGORICAL___nom_8___1984d519a", "2299": "14___CATEGORICAL___nom_8___19919ff9d", "2300": "14___CATEGORICAL___nom_8___19a7677f3", "2301": "14___CATEGORICAL___nom_8___19b18225b", "2302": "14___CATEGORICAL___nom_8___19bcc3b69", "2303": "14___CATEGORICAL___nom_8___19c6cda47", "2304": "14___CATEGORICAL___nom_8___19ca0fedb", "2305": "14___CATEGORICAL___nom_8___19d1a424d", "2306": "14___CATEGORICAL___nom_8___19d68b691", "2307": "14___CATEGORICAL___nom_8___19d80b0b0", "2308": "14___CATEGORICAL___nom_8___19d90bd44", "2309": "14___CATEGORICAL___nom_8___1a2f9e277", "2310": "14___CATEGORICAL___nom_8___1a2fd4686", "2311": "14___CATEGORICAL___nom_8___1a4009324", "2312": "14___CATEGORICAL___nom_8___1a45ccf64", "2313": "14___CATEGORICAL___nom_8___1a4b42ed5", "2314": "14___CATEGORICAL___nom_8___1a51294a9", "2315": "14___CATEGORICAL___nom_8___1a5d33f00", "2316": "14___CATEGORICAL___nom_8___1a932b6e2", "2317": "14___CATEGORICAL___nom_8___1aa8ca97f", "2318": "14___CATEGORICAL___nom_8___1aae3a568", "2319": "14___CATEGORICAL___nom_8___1abfd700c", "2320": "14___CATEGORICAL___nom_8___1ac0db361", "2321": "14___CATEGORICAL___nom_8___1acbefae5", "2322": "14___CATEGORICAL___nom_8___1ad199969", "2323": "14___CATEGORICAL___nom_8___1ad530ea7", "2324": "14___CATEGORICAL___nom_8___1b0746630", "2325": "14___CATEGORICAL___nom_8___1b45dc4ac", "2326": "14___CATEGORICAL___nom_8___1b5175745", "2327": "14___CATEGORICAL___nom_8___1b5476deb", "2328": "14___CATEGORICAL___nom_8___1b812569c", "2329": "14___CATEGORICAL___nom_8___1b9339c49", "2330": "14___CATEGORICAL___nom_8___1b9c7e71f", "2331": "14___CATEGORICAL___nom_8___1bb1614b5", "2332": "14___CATEGORICAL___nom_8___1bb78b74b", "2333": "14___CATEGORICAL___nom_8___1bf9aa606", "2334": "14___CATEGORICAL___nom_8___1c142e92a", "2335": "14___CATEGORICAL___nom_8___1c3349adc", "2336": "14___CATEGORICAL___nom_8___1c4e05d9d", "2337": "14___CATEGORICAL___nom_8___1c6108211", "2338": "14___CATEGORICAL___nom_8___1c6ab243e", "2339": "14___CATEGORICAL___nom_8___1c9788deb", "2340": "14___CATEGORICAL___nom_8___1caff0cc7", "2341": "14___CATEGORICAL___nom_8___1cc45142a", "2342": "14___CATEGORICAL___nom_8___1ceaac569", "2343": "14___CATEGORICAL___nom_8___1d3889dcb", "2344": "14___CATEGORICAL___nom_8___1d74cabd7", "2345": "14___CATEGORICAL___nom_8___1d869e3d5", "2346": "14___CATEGORICAL___nom_8___1dab43b44", "2347": "14___CATEGORICAL___nom_8___1dc8069e1", "2348": "14___CATEGORICAL___nom_8___1dc87a5c6", "2349": "14___CATEGORICAL___nom_8___1e0d7f004", "2350": "14___CATEGORICAL___nom_8___1e32a822f", "2351": "14___CATEGORICAL___nom_8___1e48caa58", "2352": "14___CATEGORICAL___nom_8___1e8a3fd5b", "2353": "14___CATEGORICAL___nom_8___1e9e6552b", "2354": "14___CATEGORICAL___nom_8___1ec0d0bc6", "2355": "14___CATEGORICAL___nom_8___1ef0c04bc", "2356": "14___CATEGORICAL___nom_8___1ef6c89ef", "2357": "14___CATEGORICAL___nom_8___1f0e04fd1", "2358": "14___CATEGORICAL___nom_8___1f114e3a3", "2359": "14___CATEGORICAL___nom_8___1f1db0595", "2360": "14___CATEGORICAL___nom_8___1f28b4c79", "2361": "14___CATEGORICAL___nom_8___1f2af5b88", "2362": "14___CATEGORICAL___nom_8___1f71a5eee", "2363": "14___CATEGORICAL___nom_8___1f820c7ce", "2364": "14___CATEGORICAL___nom_8___203943741", "2365": "14___CATEGORICAL___nom_8___203ed591a", "2366": "14___CATEGORICAL___nom_8___2041981b1", "2367": "14___CATEGORICAL___nom_8___2042108a3", "2368": "14___CATEGORICAL___nom_8___206c7e0ed", "2369": "14___CATEGORICAL___nom_8___20855d5b6", "2370": "14___CATEGORICAL___nom_8___208fbe9c8", "2371": "14___CATEGORICAL___nom_8___20a3054f7", "2372": "14___CATEGORICAL___nom_8___20a61d808", "2373": "14___CATEGORICAL___nom_8___20b649769", "2374": "14___CATEGORICAL___nom_8___2113a9e62", "2375": "14___CATEGORICAL___nom_8___211c0ee88", "2376": "14___CATEGORICAL___nom_8___2137bfaa7", "2377": "14___CATEGORICAL___nom_8___2189cc4c5", "2378": "14___CATEGORICAL___nom_8___2192087a7", "2379": "14___CATEGORICAL___nom_8___219a8ad5a", "2380": "14___CATEGORICAL___nom_8___21b4be473", "2381": "14___CATEGORICAL___nom_8___21cc4964d", "2382": "14___CATEGORICAL___nom_8___21cce4453", "2383": "14___CATEGORICAL___nom_8___21e3acad4", "2384": "14___CATEGORICAL___nom_8___21ec5c2ed", "2385": "14___CATEGORICAL___nom_8___21ec960fb", "2386": "14___CATEGORICAL___nom_8___21f18f1d1", "2387": "14___CATEGORICAL___nom_8___220dff62d", "2388": "14___CATEGORICAL___nom_8___2211f918c", "2389": "14___CATEGORICAL___nom_8___223ebba50", "2390": "14___CATEGORICAL___nom_8___225f5bdfc", "2391": "14___CATEGORICAL___nom_8___22870eef4", "2392": "14___CATEGORICAL___nom_8___2287c2995", "2393": "14___CATEGORICAL___nom_8___22b85e2c0", "2394": "14___CATEGORICAL___nom_8___22bdcae27", "2395": "14___CATEGORICAL___nom_8___232367a6e", "2396": "14___CATEGORICAL___nom_8___233e9e3a7", "2397": "14___CATEGORICAL___nom_8___235c5f246", "2398": "14___CATEGORICAL___nom_8___236a73b56", "2399": "14___CATEGORICAL___nom_8___2389ebd9c", "2400": "14___CATEGORICAL___nom_8___23931700e", "2401": "14___CATEGORICAL___nom_8___239a441d9", "2402": "14___CATEGORICAL___nom_8___24469b3f7", "2403": "14___CATEGORICAL___nom_8___2447d128b", "2404": "14___CATEGORICAL___nom_8___24570db3d", "2405": "14___CATEGORICAL___nom_8___251520f28", "2406": "14___CATEGORICAL___nom_8___2579eba88", "2407": "14___CATEGORICAL___nom_8___259aba49b", "2408": "14___CATEGORICAL___nom_8___25cfc0d91", "2409": "14___CATEGORICAL___nom_8___25d6d251f", "2410": "14___CATEGORICAL___nom_8___25fd1f892", "2411": "14___CATEGORICAL___nom_8___264d5619f", "2412": "14___CATEGORICAL___nom_8___264e251b9", "2413": "14___CATEGORICAL___nom_8___265b7da28", "2414": "14___CATEGORICAL___nom_8___26745ea84", "2415": "14___CATEGORICAL___nom_8___26a23df3e", "2416": "14___CATEGORICAL___nom_8___2708074e3", "2417": "14___CATEGORICAL___nom_8___270ab7c50", "2418": "14___CATEGORICAL___nom_8___274ff362e", "2419": "14___CATEGORICAL___nom_8___2778e2ad4", "2420": "14___CATEGORICAL___nom_8___27cc6ec6e", "2421": "14___CATEGORICAL___nom_8___27dc32aaa", "2422": "14___CATEGORICAL___nom_8___27edab94e", "2423": "14___CATEGORICAL___nom_8___283996563", "2424": "14___CATEGORICAL___nom_8___289126ec7", "2425": "14___CATEGORICAL___nom_8___28d09cf93", "2426": "14___CATEGORICAL___nom_8___2912d0fbb", "2427": "14___CATEGORICAL___nom_8___29217b709", "2428": "14___CATEGORICAL___nom_8___2930ef981", "2429": "14___CATEGORICAL___nom_8___29375e700", "2430": "14___CATEGORICAL___nom_8___2945cb4e9", "2431": "14___CATEGORICAL___nom_8___299ac7761", "2432": "14___CATEGORICAL___nom_8___29a8870be", "2433": "14___CATEGORICAL___nom_8___29df6c27e", "2434": "14___CATEGORICAL___nom_8___29e1d2686", "2435": "14___CATEGORICAL___nom_8___29f201d51", "2436": "14___CATEGORICAL___nom_8___2a291d6ec", "2437": "14___CATEGORICAL___nom_8___2a3a0e335", "2438": "14___CATEGORICAL___nom_8___2a4274c22", "2439": "14___CATEGORICAL___nom_8___2aa7183f7", "2440": "14___CATEGORICAL___nom_8___2b32f61e5", "2441": "14___CATEGORICAL___nom_8___2b45a10bd", "2442": "14___CATEGORICAL___nom_8___2b4c61b8a", "2443": "14___CATEGORICAL___nom_8___2b4ca4eac", "2444": "14___CATEGORICAL___nom_8___2b80d01c3", "2445": "14___CATEGORICAL___nom_8___2b81d4497", "2446": "14___CATEGORICAL___nom_8___2baf4db76", "2447": "14___CATEGORICAL___nom_8___2c15d0173", "2448": "14___CATEGORICAL___nom_8___2c7e0ab24", "2449": "14___CATEGORICAL___nom_8___2c906f303", "2450": "14___CATEGORICAL___nom_8___2c9a93282", "2451": "14___CATEGORICAL___nom_8___2cd2d60cb", "2452": "14___CATEGORICAL___nom_8___2d10dbc79", "2453": "14___CATEGORICAL___nom_8___2d2b020a7", "2454": "14___CATEGORICAL___nom_8___2d3382ac9", "2455": "14___CATEGORICAL___nom_8___2d585d017", "2456": "14___CATEGORICAL___nom_8___2d6f6f9c2", "2457": "14___CATEGORICAL___nom_8___2d8fccf5c", "2458": "14___CATEGORICAL___nom_8___2d9718918", "2459": "14___CATEGORICAL___nom_8___2db30d69b", "2460": "14___CATEGORICAL___nom_8___2e2f8320b", "2461": "14___CATEGORICAL___nom_8___2e585b16b", "2462": "14___CATEGORICAL___nom_8___2e9b9ce68", "2463": "14___CATEGORICAL___nom_8___2eadd99ab", "2464": "14___CATEGORICAL___nom_8___2ec937b3d", "2465": "14___CATEGORICAL___nom_8___2ed07a37f", "2466": "14___CATEGORICAL___nom_8___2ed48a17e", "2467": "14___CATEGORICAL___nom_8___2ee516f1f", "2468": "14___CATEGORICAL___nom_8___2efa1834c", "2469": "14___CATEGORICAL___nom_8___2f5ca690f", "2470": "14___CATEGORICAL___nom_8___2f8bd0da6", "2471": "14___CATEGORICAL___nom_8___2f9c8b8e2", "2472": "14___CATEGORICAL___nom_8___2fb0adf23", "2473": "14___CATEGORICAL___nom_8___2fb498287", "2474": "14___CATEGORICAL___nom_8___2fb528fb8", "2475": "14___CATEGORICAL___nom_8___2fb537aa8", "2476": "14___CATEGORICAL___nom_8___2fbd97ec3", "2477": "14___CATEGORICAL___nom_8___2fc5662a4", "2478": "14___CATEGORICAL___nom_8___30079b695", "2479": "14___CATEGORICAL___nom_8___3025495cf", "2480": "14___CATEGORICAL___nom_8___3032ce76e", "2481": "14___CATEGORICAL___nom_8___30424aedf", "2482": "14___CATEGORICAL___nom_8___305760111", "2483": "14___CATEGORICAL___nom_8___30827346a", "2484": "14___CATEGORICAL___nom_8___30c9c4d3a", "2485": "14___CATEGORICAL___nom_8___311c36da6", "2486": "14___CATEGORICAL___nom_8___31612394c", "2487": "14___CATEGORICAL___nom_8___319a6e737", "2488": "14___CATEGORICAL___nom_8___31a10fcfc", "2489": "14___CATEGORICAL___nom_8___31b8dad7a", "2490": "14___CATEGORICAL___nom_8___31e7314d6", "2491": "14___CATEGORICAL___nom_8___32026b755", "2492": "14___CATEGORICAL___nom_8___322c52e98", "2493": "14___CATEGORICAL___nom_8___322e03b73", "2494": "14___CATEGORICAL___nom_8___327192ea8", "2495": "14___CATEGORICAL___nom_8___32987295f", "2496": "14___CATEGORICAL___nom_8___32a22810c", "2497": "14___CATEGORICAL___nom_8___32e87c9d3", "2498": "14___CATEGORICAL___nom_8___3305a4be8", "2499": "14___CATEGORICAL___nom_8___330650bb5", "2500": "14___CATEGORICAL___nom_8___33162eaf5", "2501": "14___CATEGORICAL___nom_8___331722260", "2502": "14___CATEGORICAL___nom_8___33193b0ef", "2503": "14___CATEGORICAL___nom_8___3320ed3a6", "2504": "14___CATEGORICAL___nom_8___3326ada36", "2505": "14___CATEGORICAL___nom_8___333f46907", "2506": "14___CATEGORICAL___nom_8___33818a734", "2507": "14___CATEGORICAL___nom_8___33bee2ff6", "2508": "14___CATEGORICAL___nom_8___33cc4c6c7", "2509": "14___CATEGORICAL___nom_8___33f6dd946", "2510": "14___CATEGORICAL___nom_8___340607b49", "2511": "14___CATEGORICAL___nom_8___3408599ff", "2512": "14___CATEGORICAL___nom_8___34109cc81", "2513": "14___CATEGORICAL___nom_8___3427141f5", "2514": "14___CATEGORICAL___nom_8___343055897", "2515": "14___CATEGORICAL___nom_8___34a829c1c", "2516": "14___CATEGORICAL___nom_8___34b21e6f3", "2517": "14___CATEGORICAL___nom_8___34c421560", "2518": "14___CATEGORICAL___nom_8___34cba6dfb", "2519": "14___CATEGORICAL___nom_8___34ccf9b13", "2520": "14___CATEGORICAL___nom_8___34eba611a", "2521": "14___CATEGORICAL___nom_8___3532dd238", "2522": "14___CATEGORICAL___nom_8___354890188", "2523": "14___CATEGORICAL___nom_8___355dfde23", "2524": "14___CATEGORICAL___nom_8___35f11fb6b", "2525": "14___CATEGORICAL___nom_8___360508b3e", "2526": "14___CATEGORICAL___nom_8___36231af84", "2527": "14___CATEGORICAL___nom_8___36533a93e", "2528": "14___CATEGORICAL___nom_8___3678eb151", "2529": "14___CATEGORICAL___nom_8___3691833c1", "2530": "14___CATEGORICAL___nom_8___36ba00e4b", "2531": "14___CATEGORICAL___nom_8___3765ba02f", "2532": "14___CATEGORICAL___nom_8___37695f3d4", "2533": "14___CATEGORICAL___nom_8___37763aa51", "2534": "14___CATEGORICAL___nom_8___37e441470", "2535": "14___CATEGORICAL___nom_8___37f5af3c4", "2536": "14___CATEGORICAL___nom_8___38113ad1f", "2537": "14___CATEGORICAL___nom_8___382cf7e87", "2538": "14___CATEGORICAL___nom_8___384b0bc0c", "2539": "14___CATEGORICAL___nom_8___3870a4517", "2540": "14___CATEGORICAL___nom_8___3899f3fc9", "2541": "14___CATEGORICAL___nom_8___38a1f319a", "2542": "14___CATEGORICAL___nom_8___38a61d827", "2543": "14___CATEGORICAL___nom_8___38c43201c", "2544": "14___CATEGORICAL___nom_8___3915fff41", "2545": "14___CATEGORICAL___nom_8___391a6acb7", "2546": "14___CATEGORICAL___nom_8___392b7cb4b", "2547": "14___CATEGORICAL___nom_8___3943bacec", "2548": "14___CATEGORICAL___nom_8___397dd0274", "2549": "14___CATEGORICAL___nom_8___398527cd3", "2550": "14___CATEGORICAL___nom_8___39a2133ee", "2551": "14___CATEGORICAL___nom_8___39b91df2e", "2552": "14___CATEGORICAL___nom_8___3a2de46f1", "2553": "14___CATEGORICAL___nom_8___3a84d1033", "2554": "14___CATEGORICAL___nom_8___3a8fba905", "2555": "14___CATEGORICAL___nom_8___3ad9f2e75", "2556": "14___CATEGORICAL___nom_8___3af8482ec", "2557": "14___CATEGORICAL___nom_8___3afee81d9", "2558": "14___CATEGORICAL___nom_8___3b34e4268", "2559": "14___CATEGORICAL___nom_8___3b658bf85", "2560": "14___CATEGORICAL___nom_8___3b72edebf", "2561": "14___CATEGORICAL___nom_8___3b8d1624a", "2562": "14___CATEGORICAL___nom_8___3bbd9cd3d", "2563": "14___CATEGORICAL___nom_8___3bcf4ac76", "2564": "14___CATEGORICAL___nom_8___3bd05fe23", "2565": "14___CATEGORICAL___nom_8___3bf48a756", "2566": "14___CATEGORICAL___nom_8___3c01da44a", "2567": "14___CATEGORICAL___nom_8___3c1ae13dc", "2568": "14___CATEGORICAL___nom_8___3c5595174", "2569": "14___CATEGORICAL___nom_8___3c59fee11", "2570": "14___CATEGORICAL___nom_8___3c6bf8a86", "2571": "14___CATEGORICAL___nom_8___3c8785222", "2572": "14___CATEGORICAL___nom_8___3cc13c08e", "2573": "14___CATEGORICAL___nom_8___3cdbb21be", "2574": "14___CATEGORICAL___nom_8___3cec7c3f5", "2575": "14___CATEGORICAL___nom_8___3d33f0abd", "2576": "14___CATEGORICAL___nom_8___3d349775c", "2577": "14___CATEGORICAL___nom_8___3d55ec04a", "2578": "14___CATEGORICAL___nom_8___3d650bab5", "2579": "14___CATEGORICAL___nom_8___3d7700f42", "2580": "14___CATEGORICAL___nom_8___3db9a3f93", "2581": "14___CATEGORICAL___nom_8___3dd3ebfae", "2582": "14___CATEGORICAL___nom_8___3de6ba2b0", "2583": "14___CATEGORICAL___nom_8___3deb88358", "2584": "14___CATEGORICAL___nom_8___3df23e3f7", "2585": "14___CATEGORICAL___nom_8___3e6566577", "2586": "14___CATEGORICAL___nom_8___3ea7a5a62", "2587": "14___CATEGORICAL___nom_8___3ebd2c505", "2588": "14___CATEGORICAL___nom_8___3ec8769a6", "2589": "14___CATEGORICAL___nom_8___3f045b21c", "2590": "14___CATEGORICAL___nom_8___3f1f498a0", "2591": "14___CATEGORICAL___nom_8___3f4efcece", "2592": "14___CATEGORICAL___nom_8___3f5dc9fa4", "2593": "14___CATEGORICAL___nom_8___3f6ebe243", "2594": "14___CATEGORICAL___nom_8___3f840a916", "2595": "14___CATEGORICAL___nom_8___3fe3bb4e4", "2596": "14___CATEGORICAL___nom_8___3fef71834", "2597": "14___CATEGORICAL___nom_8___4005b1694", "2598": "14___CATEGORICAL___nom_8___40081d075", "2599": "14___CATEGORICAL___nom_8___406459a0b", "2600": "14___CATEGORICAL___nom_8___407222a23", "2601": "14___CATEGORICAL___nom_8___407ee1590", "2602": "14___CATEGORICAL___nom_8___40b8df5b6", "2603": "14___CATEGORICAL___nom_8___40be78f45", "2604": "14___CATEGORICAL___nom_8___40e778f41", "2605": "14___CATEGORICAL___nom_8___41010ea65", "2606": "14___CATEGORICAL___nom_8___41070dcbb", "2607": "14___CATEGORICAL___nom_8___410a83384", "2608": "14___CATEGORICAL___nom_8___41245927c", "2609": "14___CATEGORICAL___nom_8___41992ba92", "2610": "14___CATEGORICAL___nom_8___41b7948fd", "2611": "14___CATEGORICAL___nom_8___41c90490e", "2612": "14___CATEGORICAL___nom_8___41cce7e6e", "2613": "14___CATEGORICAL___nom_8___41f1ca6a1", "2614": "14___CATEGORICAL___nom_8___41f89ed41", "2615": "14___CATEGORICAL___nom_8___41f9b6082", "2616": "14___CATEGORICAL___nom_8___420463b67", "2617": "14___CATEGORICAL___nom_8___421db44c2", "2618": "14___CATEGORICAL___nom_8___423abc773", "2619": "14___CATEGORICAL___nom_8___4247366c9", "2620": "14___CATEGORICAL___nom_8___4257b9124", "2621": "14___CATEGORICAL___nom_8___427f02ea9", "2622": "14___CATEGORICAL___nom_8___42c1314da", "2623": "14___CATEGORICAL___nom_8___42c269f3d", "2624": "14___CATEGORICAL___nom_8___42cec36e5", "2625": "14___CATEGORICAL___nom_8___4316cb034", "2626": "14___CATEGORICAL___nom_8___4329a8c91", "2627": "14___CATEGORICAL___nom_8___432f57652", "2628": "14___CATEGORICAL___nom_8___434bf9bcf", "2629": "14___CATEGORICAL___nom_8___435ae631f", "2630": "14___CATEGORICAL___nom_8___43a1f406a", "2631": "14___CATEGORICAL___nom_8___43b80ca3a", "2632": "14___CATEGORICAL___nom_8___43fce0d9f", "2633": "14___CATEGORICAL___nom_8___4413b16c8", "2634": "14___CATEGORICAL___nom_8___4433a7da3", "2635": "14___CATEGORICAL___nom_8___4449af3c5", "2636": "14___CATEGORICAL___nom_8___444baaa5f", "2637": "14___CATEGORICAL___nom_8___44698933c", "2638": "14___CATEGORICAL___nom_8___4469bb7fa", "2639": "14___CATEGORICAL___nom_8___44b6f060a", "2640": "14___CATEGORICAL___nom_8___44bc5c1e3", "2641": "14___CATEGORICAL___nom_8___44c24137e", "2642": "14___CATEGORICAL___nom_8___44d3bd578", "2643": "14___CATEGORICAL___nom_8___44f544f0f", "2644": "14___CATEGORICAL___nom_8___44f729e5a", "2645": "14___CATEGORICAL___nom_8___451537556", "2646": "14___CATEGORICAL___nom_8___4527f8641", "2647": "14___CATEGORICAL___nom_8___4535346a3", "2648": "14___CATEGORICAL___nom_8___456af94a1", "2649": "14___CATEGORICAL___nom_8___45b3fece5", "2650": "14___CATEGORICAL___nom_8___45c570da7", "2651": "14___CATEGORICAL___nom_8___45cd8080a", "2652": "14___CATEGORICAL___nom_8___46246e06f", "2653": "14___CATEGORICAL___nom_8___463a9480c", "2654": "14___CATEGORICAL___nom_8___46637170c", "2655": "14___CATEGORICAL___nom_8___4682c2b81", "2656": "14___CATEGORICAL___nom_8___4688b82d7", "2657": "14___CATEGORICAL___nom_8___46ae3059c", "2658": "14___CATEGORICAL___nom_8___46c7e8a5b", "2659": "14___CATEGORICAL___nom_8___46eb1f2d5", "2660": "14___CATEGORICAL___nom_8___472f79626", "2661": "14___CATEGORICAL___nom_8___473965e06", "2662": "14___CATEGORICAL___nom_8___478dceafe", "2663": "14___CATEGORICAL___nom_8___47938793d", "2664": "14___CATEGORICAL___nom_8___47d1240dc", "2665": "14___CATEGORICAL___nom_8___47dd84286", "2666": "14___CATEGORICAL___nom_8___47dddf1b9", "2667": "14___CATEGORICAL___nom_8___47e5aac89", "2668": "14___CATEGORICAL___nom_8___4834fb230", "2669": "14___CATEGORICAL___nom_8___48867677f", "2670": "14___CATEGORICAL___nom_8___48bf5e7e6", "2671": "14___CATEGORICAL___nom_8___48c5ba713", "2672": "14___CATEGORICAL___nom_8___48ef2bd73", "2673": "14___CATEGORICAL___nom_8___48f3995e3", "2674": "14___CATEGORICAL___nom_8___48f96e651", "2675": "14___CATEGORICAL___nom_8___49036d705", "2676": "14___CATEGORICAL___nom_8___49474de39", "2677": "14___CATEGORICAL___nom_8___4949bdfb3", "2678": "14___CATEGORICAL___nom_8___4969a95f0", "2679": "14___CATEGORICAL___nom_8___497cd3de8", "2680": "14___CATEGORICAL___nom_8___498258984", "2681": "14___CATEGORICAL___nom_8___49cfc8bab", "2682": "14___CATEGORICAL___nom_8___49de2ef9f", "2683": "14___CATEGORICAL___nom_8___49e27b861", "2684": "14___CATEGORICAL___nom_8___4a3ab78c6", "2685": "14___CATEGORICAL___nom_8___4a3dace70", "2686": "14___CATEGORICAL___nom_8___4a41ca5ac", "2687": "14___CATEGORICAL___nom_8___4a54418e6", "2688": "14___CATEGORICAL___nom_8___4a718b609", "2689": "14___CATEGORICAL___nom_8___4a8566032", "2690": "14___CATEGORICAL___nom_8___4a9563818", "2691": "14___CATEGORICAL___nom_8___4ade6ab69", "2692": "14___CATEGORICAL___nom_8___4b03e3a23", "2693": "14___CATEGORICAL___nom_8___4b06ec734", "2694": "14___CATEGORICAL___nom_8___4b1543a82", "2695": "14___CATEGORICAL___nom_8___4b2e38807", "2696": "14___CATEGORICAL___nom_8___4b30750de", "2697": "14___CATEGORICAL___nom_8___4b36cae4e", "2698": "14___CATEGORICAL___nom_8___4b722f145", "2699": "14___CATEGORICAL___nom_8___4b7ec4f76", "2700": "14___CATEGORICAL___nom_8___4b96c35d7", "2701": "14___CATEGORICAL___nom_8___4b998df1a", "2702": "14___CATEGORICAL___nom_8___4bb29623e", "2703": "14___CATEGORICAL___nom_8___4bbdadc09", "2704": "14___CATEGORICAL___nom_8___4bbe95f85", "2705": "14___CATEGORICAL___nom_8___4bdd3928f", "2706": "14___CATEGORICAL___nom_8___4be1e9557", "2707": "14___CATEGORICAL___nom_8___4bf5f77f6", "2708": "14___CATEGORICAL___nom_8___4c08b154b", "2709": "14___CATEGORICAL___nom_8___4c3e09313", "2710": "14___CATEGORICAL___nom_8___4c8ff3633", "2711": "14___CATEGORICAL___nom_8___4cba61aed", "2712": "14___CATEGORICAL___nom_8___4cd920251", "2713": "14___CATEGORICAL___nom_8___4d22a9abe", "2714": "14___CATEGORICAL___nom_8___4d43ad72b", "2715": "14___CATEGORICAL___nom_8___4d6a4a0f5", "2716": "14___CATEGORICAL___nom_8___4d70170c4", "2717": "14___CATEGORICAL___nom_8___4d7256d7f", "2718": "14___CATEGORICAL___nom_8___4d79f2810", "2719": "14___CATEGORICAL___nom_8___4d8586f58", "2720": "14___CATEGORICAL___nom_8___4d996c30b", "2721": "14___CATEGORICAL___nom_8___4de383b1f", "2722": "14___CATEGORICAL___nom_8___4de9ccc2f", "2723": "14___CATEGORICAL___nom_8___4ded1a348", "2724": "14___CATEGORICAL___nom_8___4e2d34150", "2725": "14___CATEGORICAL___nom_8___4e55b14d0", "2726": "14___CATEGORICAL___nom_8___4e8174c3e", "2727": "14___CATEGORICAL___nom_8___4e93545bd", "2728": "14___CATEGORICAL___nom_8___4ea576eb6", "2729": "14___CATEGORICAL___nom_8___4ecf0802b", "2730": "14___CATEGORICAL___nom_8___4ed3cff23", "2731": "14___CATEGORICAL___nom_8___4eef4ae9e", "2732": "14___CATEGORICAL___nom_8___4ef214489", "2733": "14___CATEGORICAL___nom_8___4f2f21333", "2734": "14___CATEGORICAL___nom_8___4f3a4cca9", "2735": "14___CATEGORICAL___nom_8___4f72a76e6", "2736": "14___CATEGORICAL___nom_8___4f7dd803c", "2737": "14___CATEGORICAL___nom_8___4f875f2d9", "2738": "14___CATEGORICAL___nom_8___4f930a37c", "2739": "14___CATEGORICAL___nom_8___4fa49b569", "2740": "14___CATEGORICAL___nom_8___4fbb167ac", "2741": "14___CATEGORICAL___nom_8___4fcda6418", "2742": "14___CATEGORICAL___nom_8___5009da0ad", "2743": "14___CATEGORICAL___nom_8___5013e2094", "2744": "14___CATEGORICAL___nom_8___50372f890", "2745": "14___CATEGORICAL___nom_8___50389c332", "2746": "14___CATEGORICAL___nom_8___5049c0d85", "2747": "14___CATEGORICAL___nom_8___505d7b280", "2748": "14___CATEGORICAL___nom_8___50c5e4877", "2749": "14___CATEGORICAL___nom_8___50d48251c", "2750": "14___CATEGORICAL___nom_8___50d48ad21", "2751": "14___CATEGORICAL___nom_8___5105d5efb", "2752": "14___CATEGORICAL___nom_8___51161eeb4", "2753": "14___CATEGORICAL___nom_8___5127124be", "2754": "14___CATEGORICAL___nom_8___512a3c56c", "2755": "14___CATEGORICAL___nom_8___513da5242", "2756": "14___CATEGORICAL___nom_8___516f7d3e1", "2757": "14___CATEGORICAL___nom_8___5183fd2a9", "2758": "14___CATEGORICAL___nom_8___51be79e62", "2759": "14___CATEGORICAL___nom_8___520ba42f6", "2760": "14___CATEGORICAL___nom_8___520f0e7b7", "2761": "14___CATEGORICAL___nom_8___5213ff772", "2762": "14___CATEGORICAL___nom_8___521ae4196", "2763": "14___CATEGORICAL___nom_8___52202c1a0", "2764": "14___CATEGORICAL___nom_8___522b9f280", "2765": "14___CATEGORICAL___nom_8___523fcbcd3", "2766": "14___CATEGORICAL___nom_8___52556e0dd", "2767": "14___CATEGORICAL___nom_8___5264eaa95", "2768": "14___CATEGORICAL___nom_8___52706d814", "2769": "14___CATEGORICAL___nom_8___52b50477d", "2770": "14___CATEGORICAL___nom_8___52ce93caf", "2771": "14___CATEGORICAL___nom_8___52d0584f0", "2772": "14___CATEGORICAL___nom_8___52e48b54f", "2773": "14___CATEGORICAL___nom_8___52f1e2beb", "2774": "14___CATEGORICAL___nom_8___530ef1024", "2775": "14___CATEGORICAL___nom_8___5361d3b53", "2776": "14___CATEGORICAL___nom_8___5367fc43d", "2777": "14___CATEGORICAL___nom_8___537b5f5ab", "2778": "14___CATEGORICAL___nom_8___537d3703e", "2779": "14___CATEGORICAL___nom_8___53b8dd95c", "2780": "14___CATEGORICAL___nom_8___53bc2d0cd", "2781": "14___CATEGORICAL___nom_8___542d752e9", "2782": "14___CATEGORICAL___nom_8___543402bac", "2783": "14___CATEGORICAL___nom_8___54789a43e", "2784": "14___CATEGORICAL___nom_8___547f1c638", "2785": "14___CATEGORICAL___nom_8___54a0e922c", "2786": "14___CATEGORICAL___nom_8___54a3846d8", "2787": "14___CATEGORICAL___nom_8___54f40f107", "2788": "14___CATEGORICAL___nom_8___550e90c2e", "2789": "14___CATEGORICAL___nom_8___551be7857", "2790": "14___CATEGORICAL___nom_8___551f34cac", "2791": "14___CATEGORICAL___nom_8___552b3a516", "2792": "14___CATEGORICAL___nom_8___55568cfab", "2793": "14___CATEGORICAL___nom_8___5559ae433", "2794": "14___CATEGORICAL___nom_8___558203f08", "2795": "14___CATEGORICAL___nom_8___561d08b37", "2796": "14___CATEGORICAL___nom_8___56304bd77", "2797": "14___CATEGORICAL___nom_8___565af9a17", "2798": "14___CATEGORICAL___nom_8___56650d3cc", "2799": "14___CATEGORICAL___nom_8___566842188", "2800": "14___CATEGORICAL___nom_8___5674ac2b7", "2801": "14___CATEGORICAL___nom_8___5680b6782", "2802": "14___CATEGORICAL___nom_8___56c4210cd", "2803": "14___CATEGORICAL___nom_8___56deb938a", "2804": "14___CATEGORICAL___nom_8___571cd4367", "2805": "14___CATEGORICAL___nom_8___57313c784", "2806": "14___CATEGORICAL___nom_8___5756bc9bd", "2807": "14___CATEGORICAL___nom_8___5772c7c71", "2808": "14___CATEGORICAL___nom_8___57756e6aa", "2809": "14___CATEGORICAL___nom_8___577940917", "2810": "14___CATEGORICAL___nom_8___579970a7a", "2811": "14___CATEGORICAL___nom_8___57bf7b0a5", "2812": "14___CATEGORICAL___nom_8___57f7ced2c", "2813": "14___CATEGORICAL___nom_8___5807fe22a", "2814": "14___CATEGORICAL___nom_8___580cf0199", "2815": "14___CATEGORICAL___nom_8___582a610f4", "2816": "14___CATEGORICAL___nom_8___582c2acac", "2817": "14___CATEGORICAL___nom_8___584f12ea1", "2818": "14___CATEGORICAL___nom_8___5854804c0", "2819": "14___CATEGORICAL___nom_8___5884acfdf", "2820": "14___CATEGORICAL___nom_8___589fc12f1", "2821": "14___CATEGORICAL___nom_8___58ee6ef3c", "2822": "14___CATEGORICAL___nom_8___5904c2d88", "2823": "14___CATEGORICAL___nom_8___590a92a3f", "2824": "14___CATEGORICAL___nom_8___592780592", "2825": "14___CATEGORICAL___nom_8___5930392c8", "2826": "14___CATEGORICAL___nom_8___59413233a", "2827": "14___CATEGORICAL___nom_8___595e18408", "2828": "14___CATEGORICAL___nom_8___598e7011a", "2829": "14___CATEGORICAL___nom_8___59bc00371", "2830": "14___CATEGORICAL___nom_8___59bd5621f", "2831": "14___CATEGORICAL___nom_8___59c4825f9", "2832": "14___CATEGORICAL___nom_8___59ea7317d", "2833": "14___CATEGORICAL___nom_8___5a0b5fd52", "2834": "14___CATEGORICAL___nom_8___5a3ccde82", "2835": "14___CATEGORICAL___nom_8___5a3ec6aff", "2836": "14___CATEGORICAL___nom_8___5a54ba48e", "2837": "14___CATEGORICAL___nom_8___5a583a649", "2838": "14___CATEGORICAL___nom_8___5a941f089", "2839": "14___CATEGORICAL___nom_8___5a993c839", "2840": "14___CATEGORICAL___nom_8___5aa5bf1db", "2841": "14___CATEGORICAL___nom_8___5aaaf39f8", "2842": "14___CATEGORICAL___nom_8___5ab5c0eaa", "2843": "14___CATEGORICAL___nom_8___5abc69ff6", "2844": "14___CATEGORICAL___nom_8___5acc27e5f", "2845": "14___CATEGORICAL___nom_8___5ae4c2d72", "2846": "14___CATEGORICAL___nom_8___5ae4e72ca", "2847": "14___CATEGORICAL___nom_8___5b5c13311", "2848": "14___CATEGORICAL___nom_8___5b933d68c", "2849": "14___CATEGORICAL___nom_8___5b94f9f33", "2850": "14___CATEGORICAL___nom_8___5b991c729", "2851": "14___CATEGORICAL___nom_8___5bb1b28f2", "2852": "14___CATEGORICAL___nom_8___5bb71a0e2", "2853": "14___CATEGORICAL___nom_8___5bc1bd9ce", "2854": "14___CATEGORICAL___nom_8___5be7f09e6", "2855": "14___CATEGORICAL___nom_8___5bf5f09ce", "2856": "14___CATEGORICAL___nom_8___5c0e98422", "2857": "14___CATEGORICAL___nom_8___5c4b26f03", "2858": "14___CATEGORICAL___nom_8___5c6a74efd", "2859": "14___CATEGORICAL___nom_8___5cd969470", "2860": "14___CATEGORICAL___nom_8___5d19204f1", "2861": "14___CATEGORICAL___nom_8___5d3ad5dcc", "2862": "14___CATEGORICAL___nom_8___5d3e459b7", "2863": "14___CATEGORICAL___nom_8___5d5e04d11", "2864": "14___CATEGORICAL___nom_8___5d6ffc57d", "2865": "14___CATEGORICAL___nom_8___5d7806f53", "2866": "14___CATEGORICAL___nom_8___5df6f3306", "2867": "14___CATEGORICAL___nom_8___5dffe5052", "2868": "14___CATEGORICAL___nom_8___5e23fecc8", "2869": "14___CATEGORICAL___nom_8___5e2b7ec61", "2870": "14___CATEGORICAL___nom_8___5e2dfdc4e", "2871": "14___CATEGORICAL___nom_8___5e3c2d513", "2872": "14___CATEGORICAL___nom_8___5e41b5542", "2873": "14___CATEGORICAL___nom_8___5e66d0561", "2874": "14___CATEGORICAL___nom_8___5e76e2c03", "2875": "14___CATEGORICAL___nom_8___5ea193ffb", "2876": "14___CATEGORICAL___nom_8___5eab5bce1", "2877": "14___CATEGORICAL___nom_8___5eb32eb38", "2878": "14___CATEGORICAL___nom_8___5ede5cc10", "2879": "14___CATEGORICAL___nom_8___5ee7980c8", "2880": "14___CATEGORICAL___nom_8___5eea532bf", "2881": "14___CATEGORICAL___nom_8___5eef6599e", "2882": "14___CATEGORICAL___nom_8___5f0c17eab", "2883": "14___CATEGORICAL___nom_8___5f157aeee", "2884": "14___CATEGORICAL___nom_8___5f1d256d0", "2885": "14___CATEGORICAL___nom_8___5f4046b89", "2886": "14___CATEGORICAL___nom_8___5f40f1c5f", "2887": "14___CATEGORICAL___nom_8___5f5955990", "2888": "14___CATEGORICAL___nom_8___5f6de94e1", "2889": "14___CATEGORICAL___nom_8___5f9ac896d", "2890": "14___CATEGORICAL___nom_8___5fa7f4334", "2891": "14___CATEGORICAL___nom_8___5fb9d556e", "2892": "14___CATEGORICAL___nom_8___5fc70d251", "2893": "14___CATEGORICAL___nom_8___60091745b", "2894": "14___CATEGORICAL___nom_8___6055c51de", "2895": "14___CATEGORICAL___nom_8___606ac930b", "2896": "14___CATEGORICAL___nom_8___6091ae118", "2897": "14___CATEGORICAL___nom_8___60bf10a44", "2898": "14___CATEGORICAL___nom_8___60e558ac2", "2899": "14___CATEGORICAL___nom_8___60ecfa5db", "2900": "14___CATEGORICAL___nom_8___60f23b85b", "2901": "14___CATEGORICAL___nom_8___60f5c4953", "2902": "14___CATEGORICAL___nom_8___60fcfdfd2", "2903": "14___CATEGORICAL___nom_8___60fe0a34e", "2904": "14___CATEGORICAL___nom_8___6127dc462", "2905": "14___CATEGORICAL___nom_8___612ab9e04", "2906": "14___CATEGORICAL___nom_8___612d3a513", "2907": "14___CATEGORICAL___nom_8___612fcaf56", "2908": "14___CATEGORICAL___nom_8___613f20100", "2909": "14___CATEGORICAL___nom_8___6148c0a26", "2910": "14___CATEGORICAL___nom_8___614a86c6f", "2911": "14___CATEGORICAL___nom_8___616226a4a", "2912": "14___CATEGORICAL___nom_8___618c9e0b2", "2913": "14___CATEGORICAL___nom_8___6196dcb02", "2914": "14___CATEGORICAL___nom_8___61bcb6582", "2915": "14___CATEGORICAL___nom_8___61c93b713", "2916": "14___CATEGORICAL___nom_8___61cf9f43b", "2917": "14___CATEGORICAL___nom_8___6250a03c7", "2918": "14___CATEGORICAL___nom_8___6266933e6", "2919": "14___CATEGORICAL___nom_8___626b55cbd", "2920": "14___CATEGORICAL___nom_8___627529fd9", "2921": "14___CATEGORICAL___nom_8___62a7a5998", "2922": "14___CATEGORICAL___nom_8___62efd529a", "2923": "14___CATEGORICAL___nom_8___62f3d9529", "2924": "14___CATEGORICAL___nom_8___63469725e", "2925": "14___CATEGORICAL___nom_8___63472819d", "2926": "14___CATEGORICAL___nom_8___63472fe67", "2927": "14___CATEGORICAL___nom_8___63572f4db", "2928": "14___CATEGORICAL___nom_8___6359c25ce", "2929": "14___CATEGORICAL___nom_8___635a85b33", "2930": "14___CATEGORICAL___nom_8___636af9ac0", "2931": "14___CATEGORICAL___nom_8___63bc33024", "2932": "14___CATEGORICAL___nom_8___63d65920a", "2933": "14___CATEGORICAL___nom_8___64335b5e6", "2934": "14___CATEGORICAL___nom_8___6437b4ddf", "2935": "14___CATEGORICAL___nom_8___644658db0", "2936": "14___CATEGORICAL___nom_8___64b9cc0ba", "2937": "14___CATEGORICAL___nom_8___64bc8329f", "2938": "14___CATEGORICAL___nom_8___64d19f1b9", "2939": "14___CATEGORICAL___nom_8___64edf3032", "2940": "14___CATEGORICAL___nom_8___6508cf2a5", "2941": "14___CATEGORICAL___nom_8___6509dd268", "2942": "14___CATEGORICAL___nom_8___6533b95a8", "2943": "14___CATEGORICAL___nom_8___65aa42eeb", "2944": "14___CATEGORICAL___nom_8___65b669fa9", "2945": "14___CATEGORICAL___nom_8___65bc4aedd", "2946": "14___CATEGORICAL___nom_8___65cbea482", "2947": "14___CATEGORICAL___nom_8___65d596201", "2948": "14___CATEGORICAL___nom_8___663007ea1", "2949": "14___CATEGORICAL___nom_8___663d4428b", "2950": "14___CATEGORICAL___nom_8___66413f5c4", "2951": "14___CATEGORICAL___nom_8___6694a971d", "2952": "14___CATEGORICAL___nom_8___669cade8b", "2953": "14___CATEGORICAL___nom_8___66c666931", "2954": "14___CATEGORICAL___nom_8___66e446170", "2955": "14___CATEGORICAL___nom_8___66ea5fe47", "2956": "14___CATEGORICAL___nom_8___66f267ea5", "2957": "14___CATEGORICAL___nom_8___66ffd419e", "2958": "14___CATEGORICAL___nom_8___6706bb896", "2959": "14___CATEGORICAL___nom_8___67166bba9", "2960": "14___CATEGORICAL___nom_8___674157f4e", "2961": "14___CATEGORICAL___nom_8___67480ba24", "2962": "14___CATEGORICAL___nom_8___674bde1f8", "2963": "14___CATEGORICAL___nom_8___6759eb160", "2964": "14___CATEGORICAL___nom_8___677a0c809", "2965": "14___CATEGORICAL___nom_8___678bfb662", "2966": "14___CATEGORICAL___nom_8___67c03cd4e", "2967": "14___CATEGORICAL___nom_8___67c393e7e", "2968": "14___CATEGORICAL___nom_8___67c4cb25e", "2969": "14___CATEGORICAL___nom_8___6800e5697", "2970": "14___CATEGORICAL___nom_8___682207821", "2971": "14___CATEGORICAL___nom_8___6840e280c", "2972": "14___CATEGORICAL___nom_8___6844c9a87", "2973": "14___CATEGORICAL___nom_8___6874814be", "2974": "14___CATEGORICAL___nom_8___68e0cda56", "2975": "14___CATEGORICAL___nom_8___68fce9db2", "2976": "14___CATEGORICAL___nom_8___69098cdce", "2977": "14___CATEGORICAL___nom_8___694e2d9b6", "2978": "14___CATEGORICAL___nom_8___696f53296", "2979": "14___CATEGORICAL___nom_8___69ae11dd3", "2980": "14___CATEGORICAL___nom_8___69e64b2c5", "2981": "14___CATEGORICAL___nom_8___69fd1ead9", "2982": "14___CATEGORICAL___nom_8___6a0697e2a", "2983": "14___CATEGORICAL___nom_8___6a0c3c099", "2984": "14___CATEGORICAL___nom_8___6a28d5243", "2985": "14___CATEGORICAL___nom_8___6a484e7c5", "2986": "14___CATEGORICAL___nom_8___6a6755a75", "2987": "14___CATEGORICAL___nom_8___6a9a988ae", "2988": "14___CATEGORICAL___nom_8___6aa08d9aa", "2989": "14___CATEGORICAL___nom_8___6abca5b75", "2990": "14___CATEGORICAL___nom_8___6abe4c429", "2991": "14___CATEGORICAL___nom_8___6ac58798e", "2992": "14___CATEGORICAL___nom_8___6adf330a1", "2993": "14___CATEGORICAL___nom_8___6b0538847", "2994": "14___CATEGORICAL___nom_8___6b44feed9", "2995": "14___CATEGORICAL___nom_8___6b972b4e6", "2996": "14___CATEGORICAL___nom_8___6baf64175", "2997": "14___CATEGORICAL___nom_8___6bb693f33", "2998": "14___CATEGORICAL___nom_8___6bb6ec224", "2999": "14___CATEGORICAL___nom_8___6bbb3fdf3", "3000": "14___CATEGORICAL___nom_8___6bef24212", "3001": "14___CATEGORICAL___nom_8___6bf92fa24", "3002": "14___CATEGORICAL___nom_8___6c16496e3", "3003": "14___CATEGORICAL___nom_8___6c3d71b11", "3004": "14___CATEGORICAL___nom_8___6c4a99ba4", "3005": "14___CATEGORICAL___nom_8___6c60695de", "3006": "14___CATEGORICAL___nom_8___6c61f47ce", "3007": "14___CATEGORICAL___nom_8___6c630eec0", "3008": "14___CATEGORICAL___nom_8___6c7292479", "3009": "14___CATEGORICAL___nom_8___6c7939160", "3010": "14___CATEGORICAL___nom_8___6c94b98a9", "3011": "14___CATEGORICAL___nom_8___6cecf2c6c", "3012": "14___CATEGORICAL___nom_8___6d286ebed", "3013": "14___CATEGORICAL___nom_8___6d2a862e0", "3014": "14___CATEGORICAL___nom_8___6d4125901", "3015": "14___CATEGORICAL___nom_8___6d43443d4", "3016": "14___CATEGORICAL___nom_8___6d782795c", "3017": "14___CATEGORICAL___nom_8___6da888acf", "3018": "14___CATEGORICAL___nom_8___6de035aa5", "3019": "14___CATEGORICAL___nom_8___6de8876b5", "3020": "14___CATEGORICAL___nom_8___6e0314081", "3021": "14___CATEGORICAL___nom_8___6e162e4cf", "3022": "14___CATEGORICAL___nom_8___6e23e1067", "3023": "14___CATEGORICAL___nom_8___6e3242852", "3024": "14___CATEGORICAL___nom_8___6e4113602", "3025": "14___CATEGORICAL___nom_8___6e56056b6", "3026": "14___CATEGORICAL___nom_8___6e6d08b6f", "3027": "14___CATEGORICAL___nom_8___6e7be47e5", "3028": "14___CATEGORICAL___nom_8___6ece40b2f", "3029": "14___CATEGORICAL___nom_8___6ed2936dd", "3030": "14___CATEGORICAL___nom_8___6ee0c7b3e", "3031": "14___CATEGORICAL___nom_8___6eecea4fb", "3032": "14___CATEGORICAL___nom_8___6eff2552f", "3033": "14___CATEGORICAL___nom_8___6f08eb834", "3034": "14___CATEGORICAL___nom_8___6f0b0c42a", "3035": "14___CATEGORICAL___nom_8___6f21ecc48", "3036": "14___CATEGORICAL___nom_8___6f561a634", "3037": "14___CATEGORICAL___nom_8___6f6516b35", "3038": "14___CATEGORICAL___nom_8___6f709e184", "3039": "14___CATEGORICAL___nom_8___6f8225245", "3040": "14___CATEGORICAL___nom_8___6f85744aa", "3041": "14___CATEGORICAL___nom_8___6fbef8e0b", "3042": "14___CATEGORICAL___nom_8___6fc24b5ca", "3043": "14___CATEGORICAL___nom_8___6fce5168d", "3044": "14___CATEGORICAL___nom_8___6ffab11f7", "3045": "14___CATEGORICAL___nom_8___705cb4caa", "3046": "14___CATEGORICAL___nom_8___70647ecaa", "3047": "14___CATEGORICAL___nom_8___709a5ffd4", "3048": "14___CATEGORICAL___nom_8___709c8de19", "3049": "14___CATEGORICAL___nom_8___70a20c50f", "3050": "14___CATEGORICAL___nom_8___70a52ed95", "3051": "14___CATEGORICAL___nom_8___70b6f717d", "3052": "14___CATEGORICAL___nom_8___70c236aef", "3053": "14___CATEGORICAL___nom_8___70c7a41f7", "3054": "14___CATEGORICAL___nom_8___70e87ab25", "3055": "14___CATEGORICAL___nom_8___70f2de86d", "3056": "14___CATEGORICAL___nom_8___710fbc590", "3057": "14___CATEGORICAL___nom_8___7119cfebd", "3058": "14___CATEGORICAL___nom_8___71214b899", "3059": "14___CATEGORICAL___nom_8___71227d3bc", "3060": "14___CATEGORICAL___nom_8___71281d730", "3061": "14___CATEGORICAL___nom_8___714157447", "3062": "14___CATEGORICAL___nom_8___71746632f", "3063": "14___CATEGORICAL___nom_8___7179cd921", "3064": "14___CATEGORICAL___nom_8___719361513", "3065": "14___CATEGORICAL___nom_8___71ae710ad", "3066": "14___CATEGORICAL___nom_8___71c01376f", "3067": "14___CATEGORICAL___nom_8___721bc6d6b", "3068": "14___CATEGORICAL___nom_8___72221799b", "3069": "14___CATEGORICAL___nom_8___723211bec", "3070": "14___CATEGORICAL___nom_8___725517260", "3071": "14___CATEGORICAL___nom_8___72679c3c8", "3072": "14___CATEGORICAL___nom_8___7274a5560", "3073": "14___CATEGORICAL___nom_8___728daff7e", "3074": "14___CATEGORICAL___nom_8___72a38d8ef", "3075": "14___CATEGORICAL___nom_8___72af83565", "3076": "14___CATEGORICAL___nom_8___72b748e2c", "3077": "14___CATEGORICAL___nom_8___72f104db7", "3078": "14___CATEGORICAL___nom_8___72f9294c0", "3079": "14___CATEGORICAL___nom_8___732554be4", "3080": "14___CATEGORICAL___nom_8___7344a58b6", "3081": "14___CATEGORICAL___nom_8___736160127", "3082": "14___CATEGORICAL___nom_8___738693437", "3083": "14___CATEGORICAL___nom_8___739a051e1", "3084": "14___CATEGORICAL___nom_8___73ecef642", "3085": "14___CATEGORICAL___nom_8___7430aa74d", "3086": "14___CATEGORICAL___nom_8___7431726cf", "3087": "14___CATEGORICAL___nom_8___74824e3f5", "3088": "14___CATEGORICAL___nom_8___749256603", "3089": "14___CATEGORICAL___nom_8___74c5e44dc", "3090": "14___CATEGORICAL___nom_8___74cb85799", "3091": "14___CATEGORICAL___nom_8___7508f4ef1", "3092": "14___CATEGORICAL___nom_8___75163958b", "3093": "14___CATEGORICAL___nom_8___7517f74f0", "3094": "14___CATEGORICAL___nom_8___7551a1761", "3095": "14___CATEGORICAL___nom_8___758f518c5", "3096": "14___CATEGORICAL___nom_8___7641286a3", "3097": "14___CATEGORICAL___nom_8___764cafe90", "3098": "14___CATEGORICAL___nom_8___7656f99ff", "3099": "14___CATEGORICAL___nom_8___76980b0e1", "3100": "14___CATEGORICAL___nom_8___76ba8e118", "3101": "14___CATEGORICAL___nom_8___76bee6d06", "3102": "14___CATEGORICAL___nom_8___76c3740a6", "3103": "14___CATEGORICAL___nom_8___76f852130", "3104": "14___CATEGORICAL___nom_8___773107788", "3105": "14___CATEGORICAL___nom_8___7739b63e5", "3106": "14___CATEGORICAL___nom_8___776d8d7e5", "3107": "14___CATEGORICAL___nom_8___778e7e6f2", "3108": "14___CATEGORICAL___nom_8___77903bd74", "3109": "14___CATEGORICAL___nom_8___77fd0858a", "3110": "14___CATEGORICAL___nom_8___7811c5ce4", "3111": "14___CATEGORICAL___nom_8___7838ab2f6", "3112": "14___CATEGORICAL___nom_8___78558606a", "3113": "14___CATEGORICAL___nom_8___785f7ad9b", "3114": "14___CATEGORICAL___nom_8___788af5805", "3115": "14___CATEGORICAL___nom_8___789ba99c6", "3116": "14___CATEGORICAL___nom_8___78b8fb62f", "3117": "14___CATEGORICAL___nom_8___78c6b892c", "3118": "14___CATEGORICAL___nom_8___78fce34c7", "3119": "14___CATEGORICAL___nom_8___78ff9de4e", "3120": "14___CATEGORICAL___nom_8___79102e69b", "3121": "14___CATEGORICAL___nom_8___791a94382", "3122": "14___CATEGORICAL___nom_8___79367122e", "3123": "14___CATEGORICAL___nom_8___796b43ff8", "3124": "14___CATEGORICAL___nom_8___796e31552", "3125": "14___CATEGORICAL___nom_8___7970b8a44", "3126": "14___CATEGORICAL___nom_8___798b2eee2", "3127": "14___CATEGORICAL___nom_8___79ddf3be2", "3128": "14___CATEGORICAL___nom_8___79eab8768", "3129": "14___CATEGORICAL___nom_8___7a7666fa2", "3130": "14___CATEGORICAL___nom_8___7a9c53c4b", "3131": "14___CATEGORICAL___nom_8___7ab016da7", "3132": "14___CATEGORICAL___nom_8___7ad2c439c", "3133": "14___CATEGORICAL___nom_8___7ae53b7f9", "3134": "14___CATEGORICAL___nom_8___7afddc9a3", "3135": "14___CATEGORICAL___nom_8___7b082c8a0", "3136": "14___CATEGORICAL___nom_8___7b3c49f78", "3137": "14___CATEGORICAL___nom_8___7b3d59ea8", "3138": "14___CATEGORICAL___nom_8___7b41ec332", "3139": "14___CATEGORICAL___nom_8___7b51ea0e7", "3140": "14___CATEGORICAL___nom_8___7b5236e42", "3141": "14___CATEGORICAL___nom_8___7b558b353", "3142": "14___CATEGORICAL___nom_8___7bd075be5", "3143": "14___CATEGORICAL___nom_8___7bd5180a7", "3144": "14___CATEGORICAL___nom_8___7befd1525", "3145": "14___CATEGORICAL___nom_8___7c0228662", "3146": "14___CATEGORICAL___nom_8___7c13df9a8", "3147": "14___CATEGORICAL___nom_8___7c72c8040", "3148": "14___CATEGORICAL___nom_8___7c8cb257f", "3149": "14___CATEGORICAL___nom_8___7c8dba46f", "3150": "14___CATEGORICAL___nom_8___7c8dcb3c2", "3151": "14___CATEGORICAL___nom_8___7ca6ba5f6", "3152": "14___CATEGORICAL___nom_8___7cabcf8f7", "3153": "14___CATEGORICAL___nom_8___7cde41266", "3154": "14___CATEGORICAL___nom_8___7cefd81e8", "3155": "14___CATEGORICAL___nom_8___7d834bac9", "3156": "14___CATEGORICAL___nom_8___7d97eba78", "3157": "14___CATEGORICAL___nom_8___7da6b788a", "3158": "14___CATEGORICAL___nom_8___7dc2c4539", "3159": "14___CATEGORICAL___nom_8___7dcd884f2", "3160": "14___CATEGORICAL___nom_8___7dcf21bc6", "3161": "14___CATEGORICAL___nom_8___7dd63315d", "3162": "14___CATEGORICAL___nom_8___7df27c899", "3163": "14___CATEGORICAL___nom_8___7e01eda84", "3164": "14___CATEGORICAL___nom_8___7e0338e4e", "3165": "14___CATEGORICAL___nom_8___7ea9334a0", "3166": "14___CATEGORICAL___nom_8___7f22f819d", "3167": "14___CATEGORICAL___nom_8___7f3001f8f", "3168": "14___CATEGORICAL___nom_8___7f32eeaba", "3169": "14___CATEGORICAL___nom_8___7f9e64f9a", "3170": "14___CATEGORICAL___nom_8___7fc4ec511", "3171": "14___CATEGORICAL___nom_8___7fde31dc1", "3172": "14___CATEGORICAL___nom_8___7fea00623", "3173": "14___CATEGORICAL___nom_8___7ffb27f1b", "3174": "14___CATEGORICAL___nom_8___801927581", "3175": "14___CATEGORICAL___nom_8___8028054b7", "3176": "14___CATEGORICAL___nom_8___802d6605a", "3177": "14___CATEGORICAL___nom_8___802f05fb1", "3178": "14___CATEGORICAL___nom_8___8030601ca", "3179": "14___CATEGORICAL___nom_8___803fe8c71", "3180": "14___CATEGORICAL___nom_8___8041788c0", "3181": "14___CATEGORICAL___nom_8___80507d7e7", "3182": "14___CATEGORICAL___nom_8___8063f1d85", "3183": "14___CATEGORICAL___nom_8___8067177f4", "3184": "14___CATEGORICAL___nom_8___806aa6603", "3185": "14___CATEGORICAL___nom_8___80791187d", "3186": "14___CATEGORICAL___nom_8___8080eac12", "3187": "14___CATEGORICAL___nom_8___80a5c3441", "3188": "14___CATEGORICAL___nom_8___80b77ed0e", "3189": "14___CATEGORICAL___nom_8___80be47228", "3190": "14___CATEGORICAL___nom_8___8138de78c", "3191": "14___CATEGORICAL___nom_8___8175453f0", "3192": "14___CATEGORICAL___nom_8___81782d94a", "3193": "14___CATEGORICAL___nom_8___8199c1e16", "3194": "14___CATEGORICAL___nom_8___81e95f44d", "3195": "14___CATEGORICAL___nom_8___81f379d0f", "3196": "14___CATEGORICAL___nom_8___8238d2c23", "3197": "14___CATEGORICAL___nom_8___82469804a", "3198": "14___CATEGORICAL___nom_8___824e859b3", "3199": "14___CATEGORICAL___nom_8___82570c498", "3200": "14___CATEGORICAL___nom_8___8287f20f7", "3201": "14___CATEGORICAL___nom_8___828ea97f7", "3202": "14___CATEGORICAL___nom_8___8290bbc2b", "3203": "14___CATEGORICAL___nom_8___829ae71a7", "3204": "14___CATEGORICAL___nom_8___82b475f6b", "3205": "14___CATEGORICAL___nom_8___82becc8e8", "3206": "14___CATEGORICAL___nom_8___8312ef826", "3207": "14___CATEGORICAL___nom_8___832015b8d", "3208": "14___CATEGORICAL___nom_8___83772ea47", "3209": "14___CATEGORICAL___nom_8___83a266f13", "3210": "14___CATEGORICAL___nom_8___83d9f009a", "3211": "14___CATEGORICAL___nom_8___83e1edf48", "3212": "14___CATEGORICAL___nom_8___83eabad2b", "3213": "14___CATEGORICAL___nom_8___83f90bc0e", "3214": "14___CATEGORICAL___nom_8___842d0e1fa", "3215": "14___CATEGORICAL___nom_8___844af8687", "3216": "14___CATEGORICAL___nom_8___84968f3e5", "3217": "14___CATEGORICAL___nom_8___84db01df8", "3218": "14___CATEGORICAL___nom_8___84ee00413", "3219": "14___CATEGORICAL___nom_8___85990b088", "3220": "14___CATEGORICAL___nom_8___859dc3ec4", "3221": "14___CATEGORICAL___nom_8___85a8d5c75", "3222": "14___CATEGORICAL___nom_8___85a94c95a", "3223": "14___CATEGORICAL___nom_8___85c93d16b", "3224": "14___CATEGORICAL___nom_8___8614b6af1", "3225": "14___CATEGORICAL___nom_8___8623282d2", "3226": "14___CATEGORICAL___nom_8___8657e6376", "3227": "14___CATEGORICAL___nom_8___865bd3250", "3228": "14___CATEGORICAL___nom_8___869614aaf", "3229": "14___CATEGORICAL___nom_8___86a2783b8", "3230": "14___CATEGORICAL___nom_8___86acca86f", "3231": "14___CATEGORICAL___nom_8___86c2f295b", "3232": "14___CATEGORICAL___nom_8___86c759c41", "3233": "14___CATEGORICAL___nom_8___86d2cb86d", "3234": "14___CATEGORICAL___nom_8___872ca76eb", "3235": "14___CATEGORICAL___nom_8___87458941e", "3236": "14___CATEGORICAL___nom_8___878c58f3b", "3237": "14___CATEGORICAL___nom_8___87a54b79f", "3238": "14___CATEGORICAL___nom_8___87bee866f", "3239": "14___CATEGORICAL___nom_8___87e4cd335", "3240": "14___CATEGORICAL___nom_8___87e98d79a", "3241": "14___CATEGORICAL___nom_8___87f68ba07", "3242": "14___CATEGORICAL___nom_8___882baa989", "3243": "14___CATEGORICAL___nom_8___884d799c4", "3244": "14___CATEGORICAL___nom_8___8865c52d5", "3245": "14___CATEGORICAL___nom_8___887c72412", "3246": "14___CATEGORICAL___nom_8___88b0e9829", "3247": "14___CATEGORICAL___nom_8___88b9ab6d5", "3248": "14___CATEGORICAL___nom_8___88cd711b1", "3249": "14___CATEGORICAL___nom_8___89323f730", "3250": "14___CATEGORICAL___nom_8___8970fa137", "3251": "14___CATEGORICAL___nom_8___897e41097", "3252": "14___CATEGORICAL___nom_8___8990f4a8a", "3253": "14___CATEGORICAL___nom_8___899ab2d86", "3254": "14___CATEGORICAL___nom_8___89a61e164", "3255": "14___CATEGORICAL___nom_8___89a7f6d26", "3256": "14___CATEGORICAL___nom_8___89b54a23f", "3257": "14___CATEGORICAL___nom_8___89c47ed2d", "3258": "14___CATEGORICAL___nom_8___89d396920", "3259": "14___CATEGORICAL___nom_8___8a2042d38", "3260": "14___CATEGORICAL___nom_8___8a237031f", "3261": "14___CATEGORICAL___nom_8___8a2663908", "3262": "14___CATEGORICAL___nom_8___8a504f188", "3263": "14___CATEGORICAL___nom_8___8a51d32dd", "3264": "14___CATEGORICAL___nom_8___8a57c4bb1", "3265": "14___CATEGORICAL___nom_8___8a7d9fe75", "3266": "14___CATEGORICAL___nom_8___8a82aed00", "3267": "14___CATEGORICAL___nom_8___8a8ccfe81", "3268": "14___CATEGORICAL___nom_8___8a9cb6fd2", "3269": "14___CATEGORICAL___nom_8___8b1d41c58", "3270": "14___CATEGORICAL___nom_8___8b3d947bf", "3271": "14___CATEGORICAL___nom_8___8b565b2d3", "3272": "14___CATEGORICAL___nom_8___8b594ffcf", "3273": "14___CATEGORICAL___nom_8___8b7aab9f1", "3274": "14___CATEGORICAL___nom_8___8bab687d9", "3275": "14___CATEGORICAL___nom_8___8bc8daebd", "3276": "14___CATEGORICAL___nom_8___8bec21059", "3277": "14___CATEGORICAL___nom_8___8bfcdd07f", "3278": "14___CATEGORICAL___nom_8___8c46d93f3", "3279": "14___CATEGORICAL___nom_8___8c56294de", "3280": "14___CATEGORICAL___nom_8___8c7708261", "3281": "14___CATEGORICAL___nom_8___8c798dfeb", "3282": "14___CATEGORICAL___nom_8___8c98ff8ed", "3283": "14___CATEGORICAL___nom_8___8ca532821", "3284": "14___CATEGORICAL___nom_8___8ca5c3d68", "3285": "14___CATEGORICAL___nom_8___8cc3caea1", "3286": "14___CATEGORICAL___nom_8___8cf909bcf", "3287": "14___CATEGORICAL___nom_8___8d2ebf5f4", "3288": "14___CATEGORICAL___nom_8___8d7f0977f", "3289": "14___CATEGORICAL___nom_8___8d95b374b", "3290": "14___CATEGORICAL___nom_8___8daca4bad", "3291": "14___CATEGORICAL___nom_8___8dcd0897c", "3292": "14___CATEGORICAL___nom_8___8df3db541", "3293": "14___CATEGORICAL___nom_8___8df619092", "3294": "14___CATEGORICAL___nom_8___8e211ed49", "3295": "14___CATEGORICAL___nom_8___8e268c498", "3296": "14___CATEGORICAL___nom_8___8e4102fa6", "3297": "14___CATEGORICAL___nom_8___8ea4640c5", "3298": "14___CATEGORICAL___nom_8___8eafdaaba", "3299": "14___CATEGORICAL___nom_8___8ef446af1", "3300": "14___CATEGORICAL___nom_8___8f34a4d05", "3301": "14___CATEGORICAL___nom_8___8f69abedb", "3302": "14___CATEGORICAL___nom_8___8f86bfe80", "3303": "14___CATEGORICAL___nom_8___8f9ee6701", "3304": "14___CATEGORICAL___nom_8___8fbf74c31", "3305": "14___CATEGORICAL___nom_8___8fe134687", "3306": "14___CATEGORICAL___nom_8___8feab4393", "3307": "14___CATEGORICAL___nom_8___90353fead", "3308": "14___CATEGORICAL___nom_8___903befb8b", "3309": "14___CATEGORICAL___nom_8___90401e1f5", "3310": "14___CATEGORICAL___nom_8___904a490c3", "3311": "14___CATEGORICAL___nom_8___90516b379", "3312": "14___CATEGORICAL___nom_8___905ab519b", "3313": "14___CATEGORICAL___nom_8___9073c9269", "3314": "14___CATEGORICAL___nom_8___90ad7d3b5", "3315": "14___CATEGORICAL___nom_8___90dab3dd3", "3316": "14___CATEGORICAL___nom_8___90ee6dde0", "3317": "14___CATEGORICAL___nom_8___90fb1c278", "3318": "14___CATEGORICAL___nom_8___91365a656", "3319": "14___CATEGORICAL___nom_8___916c5e101", "3320": "14___CATEGORICAL___nom_8___9177167a4", "3321": "14___CATEGORICAL___nom_8___91a817ae6", "3322": "14___CATEGORICAL___nom_8___91aed34e5", "3323": "14___CATEGORICAL___nom_8___91c3125ab", "3324": "14___CATEGORICAL___nom_8___91cde2ad9", "3325": "14___CATEGORICAL___nom_8___91fc741a6", "3326": "14___CATEGORICAL___nom_8___9207ecfa5", "3327": "14___CATEGORICAL___nom_8___922e1d4f0", "3328": "14___CATEGORICAL___nom_8___92347baee", "3329": "14___CATEGORICAL___nom_8___923719fa5", "3330": "14___CATEGORICAL___nom_8___9251228dc", "3331": "14___CATEGORICAL___nom_8___929e25ee4", "3332": "14___CATEGORICAL___nom_8___92b8d0a72", "3333": "14___CATEGORICAL___nom_8___92c95746a", "3334": "14___CATEGORICAL___nom_8___92e4f3a2d", "3335": "14___CATEGORICAL___nom_8___92e5d0d61", "3336": "14___CATEGORICAL___nom_8___9332a4ea7", "3337": "14___CATEGORICAL___nom_8___9333b6802", "3338": "14___CATEGORICAL___nom_8___9334c05b1", "3339": "14___CATEGORICAL___nom_8___934184f74", "3340": "14___CATEGORICAL___nom_8___934216a65", "3341": "14___CATEGORICAL___nom_8___93506034a", "3342": "14___CATEGORICAL___nom_8___9353bbdcb", "3343": "14___CATEGORICAL___nom_8___938a25af0", "3344": "14___CATEGORICAL___nom_8___938b6d859", "3345": "14___CATEGORICAL___nom_8___9393e31f0", "3346": "14___CATEGORICAL___nom_8___93d22524a", "3347": "14___CATEGORICAL___nom_8___93d5fa073", "3348": "14___CATEGORICAL___nom_8___9402eebe9", "3349": "14___CATEGORICAL___nom_8___940770e63", "3350": "14___CATEGORICAL___nom_8___942531094", "3351": "14___CATEGORICAL___nom_8___94476bffe", "3352": "14___CATEGORICAL___nom_8___9499c0bf0", "3353": "14___CATEGORICAL___nom_8___94aa94c11", "3354": "14___CATEGORICAL___nom_8___94f7e841b", "3355": "14___CATEGORICAL___nom_8___950a1d8c0", "3356": "14___CATEGORICAL___nom_8___952eab76f", "3357": "14___CATEGORICAL___nom_8___9531f3760", "3358": "14___CATEGORICAL___nom_8___954484ec3", "3359": "14___CATEGORICAL___nom_8___957446f7b", "3360": "14___CATEGORICAL___nom_8___957702b99", "3361": "14___CATEGORICAL___nom_8___95a0ec044", "3362": "14___CATEGORICAL___nom_8___95a7324ed", "3363": "14___CATEGORICAL___nom_8___95c34f918", "3364": "14___CATEGORICAL___nom_8___95d7a429a", "3365": "14___CATEGORICAL___nom_8___960c7d0b2", "3366": "14___CATEGORICAL___nom_8___9624c3a0b", "3367": "14___CATEGORICAL___nom_8___968c80c89", "3368": "14___CATEGORICAL___nom_8___96eb028f0", "3369": "14___CATEGORICAL___nom_8___972061613", "3370": "14___CATEGORICAL___nom_8___97486ec87", "3371": "14___CATEGORICAL___nom_8___9774d480d", "3372": "14___CATEGORICAL___nom_8___9776894d5", "3373": "14___CATEGORICAL___nom_8___97806e735", "3374": "14___CATEGORICAL___nom_8___97c2074c4", "3375": "14___CATEGORICAL___nom_8___97dbfb7e6", "3376": "14___CATEGORICAL___nom_8___982822150", "3377": "14___CATEGORICAL___nom_8___985600bbd", "3378": "14___CATEGORICAL___nom_8___9856af09e", "3379": "14___CATEGORICAL___nom_8___98ad14ee4", "3380": "14___CATEGORICAL___nom_8___98addc2c9", "3381": "14___CATEGORICAL___nom_8___98c1fdf98", "3382": "14___CATEGORICAL___nom_8___98caa50a7", "3383": "14___CATEGORICAL___nom_8___98d044c58", "3384": "14___CATEGORICAL___nom_8___99485dbbc", "3385": "14___CATEGORICAL___nom_8___994b30371", "3386": "14___CATEGORICAL___nom_8___994e995cc", "3387": "14___CATEGORICAL___nom_8___995326e81", "3388": "14___CATEGORICAL___nom_8___995b9fe3c", "3389": "14___CATEGORICAL___nom_8___9967fa8ed", "3390": "14___CATEGORICAL___nom_8___998aa0f7a", "3391": "14___CATEGORICAL___nom_8___99b33644d", "3392": "14___CATEGORICAL___nom_8___99c9bebdf", "3393": "14___CATEGORICAL___nom_8___99d1a5eed", "3394": "14___CATEGORICAL___nom_8___99d245d48", "3395": "14___CATEGORICAL___nom_8___99fccaa71", "3396": "14___CATEGORICAL___nom_8___9a02ccb2f", "3397": "14___CATEGORICAL___nom_8___9a053d45e", "3398": "14___CATEGORICAL___nom_8___9a5657ef9", "3399": "14___CATEGORICAL___nom_8___9a57ee5d5", "3400": "14___CATEGORICAL___nom_8___9a8f20867", "3401": "14___CATEGORICAL___nom_8___9aa5b1499", "3402": "14___CATEGORICAL___nom_8___9ada12c9b", "3403": "14___CATEGORICAL___nom_8___9ae60926f", "3404": "14___CATEGORICAL___nom_8___9b05fba81", "3405": "14___CATEGORICAL___nom_8___9b1194ba8", "3406": "14___CATEGORICAL___nom_8___9b311dcac", "3407": "14___CATEGORICAL___nom_8___9b37c72c4", "3408": "14___CATEGORICAL___nom_8___9b37d329d", "3409": "14___CATEGORICAL___nom_8___9b42db39e", "3410": "14___CATEGORICAL___nom_8___9b4f60f30", "3411": "14___CATEGORICAL___nom_8___9b6150ff9", "3412": "14___CATEGORICAL___nom_8___9b69d293b", "3413": "14___CATEGORICAL___nom_8___9b768b691", "3414": "14___CATEGORICAL___nom_8___9bc6f3867", "3415": "14___CATEGORICAL___nom_8___9bcbcfe73", "3416": "14___CATEGORICAL___nom_8___9bcdb10cf", "3417": "14___CATEGORICAL___nom_8___9bfb829f7", "3418": "14___CATEGORICAL___nom_8___9c093c194", "3419": "14___CATEGORICAL___nom_8___9c24b321d", "3420": "14___CATEGORICAL___nom_8___9c30d4222", "3421": "14___CATEGORICAL___nom_8___9c37df751", "3422": "14___CATEGORICAL___nom_8___9c42c85ca", "3423": "14___CATEGORICAL___nom_8___9c584d3a4", "3424": "14___CATEGORICAL___nom_8___9c7cad136", "3425": "14___CATEGORICAL___nom_8___9c979aa1a", "3426": "14___CATEGORICAL___nom_8___9ca6eb700", "3427": "14___CATEGORICAL___nom_8___9cd71190a", "3428": "14___CATEGORICAL___nom_8___9cd92895d", "3429": "14___CATEGORICAL___nom_8___9cf915892", "3430": "14___CATEGORICAL___nom_8___9d117320c", "3431": "14___CATEGORICAL___nom_8___9d1999cf6", "3432": "14___CATEGORICAL___nom_8___9d2458685", "3433": "14___CATEGORICAL___nom_8___9d3e856d5", "3434": "14___CATEGORICAL___nom_8___9d501a934", "3435": "14___CATEGORICAL___nom_8___9d570e787", "3436": "14___CATEGORICAL___nom_8___9d6ef839d", "3437": "14___CATEGORICAL___nom_8___9d7806fd9", "3438": "14___CATEGORICAL___nom_8___9d892d494", "3439": "14___CATEGORICAL___nom_8___9d931cf72", "3440": "14___CATEGORICAL___nom_8___9db1f7a0c", "3441": "14___CATEGORICAL___nom_8___9dd5cc1e7", "3442": "14___CATEGORICAL___nom_8___9e08b22f1", "3443": "14___CATEGORICAL___nom_8___9e10cdd8e", "3444": "14___CATEGORICAL___nom_8___9e394f78f", "3445": "14___CATEGORICAL___nom_8___9e4b23160", "3446": "14___CATEGORICAL___nom_8___9e623b2c4", "3447": "14___CATEGORICAL___nom_8___9e688bea2", "3448": "14___CATEGORICAL___nom_8___9e782d2cb", "3449": "14___CATEGORICAL___nom_8___9e98f297e", "3450": "14___CATEGORICAL___nom_8___9e9fb0b6d", "3451": "14___CATEGORICAL___nom_8___9ed47e9be", "3452": "14___CATEGORICAL___nom_8___9ed6677db", "3453": "14___CATEGORICAL___nom_8___9eea7b841", "3454": "14___CATEGORICAL___nom_8___9f2e41c74", "3455": "14___CATEGORICAL___nom_8___9faa5dded", "3456": "14___CATEGORICAL___nom_8___9fc723129", "3457": "14___CATEGORICAL___nom_8___9ff6898e5", "3458": "14___CATEGORICAL___nom_8___a0018feb8", "3459": "14___CATEGORICAL___nom_8___a04ad6ab5", "3460": "14___CATEGORICAL___nom_8___a05a24fc3", "3461": "14___CATEGORICAL___nom_8___a05cfe94b", "3462": "14___CATEGORICAL___nom_8___a0689cd0e", "3463": "14___CATEGORICAL___nom_8___a08b306db", "3464": "14___CATEGORICAL___nom_8___a08cf48e2", "3465": "14___CATEGORICAL___nom_8___a0a93d9a5", "3466": "14___CATEGORICAL___nom_8___a0b5dfcaf", "3467": "14___CATEGORICAL___nom_8___a0bce49a5", "3468": "14___CATEGORICAL___nom_8___a0c7fc6a0", "3469": "14___CATEGORICAL___nom_8___a101b24c2", "3470": "14___CATEGORICAL___nom_8___a11ef516f", "3471": "14___CATEGORICAL___nom_8___a142509f1", "3472": "14___CATEGORICAL___nom_8___a18243851", "3473": "14___CATEGORICAL___nom_8___a1f7b04e6", "3474": "14___CATEGORICAL___nom_8___a23c53c30", "3475": "14___CATEGORICAL___nom_8___a24a3dc76", "3476": "14___CATEGORICAL___nom_8___a2547a850", "3477": "14___CATEGORICAL___nom_8___a2c055f58", "3478": "14___CATEGORICAL___nom_8___a2d110837", "3479": "14___CATEGORICAL___nom_8___a2eb06773", "3480": "14___CATEGORICAL___nom_8___a2eb56495", "3481": "14___CATEGORICAL___nom_8___a30b8dd9c", "3482": "14___CATEGORICAL___nom_8___a32a3ef83", "3483": "14___CATEGORICAL___nom_8___a33b399b1", "3484": "14___CATEGORICAL___nom_8___a33cb0ef7", "3485": "14___CATEGORICAL___nom_8___a348247ca", "3486": "14___CATEGORICAL___nom_8___a371e684b", "3487": "14___CATEGORICAL___nom_8___a3d6900b2", "3488": "14___CATEGORICAL___nom_8___a435ca0db", "3489": "14___CATEGORICAL___nom_8___a444afb06", "3490": "14___CATEGORICAL___nom_8___a45a197b6", "3491": "14___CATEGORICAL___nom_8___a496705ad", "3492": "14___CATEGORICAL___nom_8___a4ba24658", "3493": "14___CATEGORICAL___nom_8___a4cfdd598", "3494": "14___CATEGORICAL___nom_8___a50522f2b", "3495": "14___CATEGORICAL___nom_8___a513613c0", "3496": "14___CATEGORICAL___nom_8___a52b7d8ec", "3497": "14___CATEGORICAL___nom_8___a52eca20d", "3498": "14___CATEGORICAL___nom_8___a5351b253", "3499": "14___CATEGORICAL___nom_8___a54b28890", "3500": "14___CATEGORICAL___nom_8___a586bc6d4", "3501": "14___CATEGORICAL___nom_8___a59606637", "3502": "14___CATEGORICAL___nom_8___a598669d2", "3503": "14___CATEGORICAL___nom_8___a5b3fb68e", "3504": "14___CATEGORICAL___nom_8___a5ccc01bb", "3505": "14___CATEGORICAL___nom_8___a5d155d6c", "3506": "14___CATEGORICAL___nom_8___a5dfc507b", "3507": "14___CATEGORICAL___nom_8___a60ab3f5e", "3508": "14___CATEGORICAL___nom_8___a619930eb", "3509": "14___CATEGORICAL___nom_8___a619cc437", "3510": "14___CATEGORICAL___nom_8___a64e33f1e", "3511": "14___CATEGORICAL___nom_8___a666f7dc4", "3512": "14___CATEGORICAL___nom_8___a66e862c4", "3513": "14___CATEGORICAL___nom_8___a697ee388", "3514": "14___CATEGORICAL___nom_8___a69a4df25", "3515": "14___CATEGORICAL___nom_8___a6ae56854", "3516": "14___CATEGORICAL___nom_8___a6bdcf2f0", "3517": "14___CATEGORICAL___nom_8___a6f95d115", "3518": "14___CATEGORICAL___nom_8___a7a4a203d", "3519": "14___CATEGORICAL___nom_8___a7bf5387a", "3520": "14___CATEGORICAL___nom_8___a7c105119", "3521": "14___CATEGORICAL___nom_8___a7d83e43a", "3522": "14___CATEGORICAL___nom_8___a7f44c669", "3523": "14___CATEGORICAL___nom_8___a846ab3ac", "3524": "14___CATEGORICAL___nom_8___a89fae205", "3525": "14___CATEGORICAL___nom_8___a8b517dc5", "3526": "14___CATEGORICAL___nom_8___a8d9f702e", "3527": "14___CATEGORICAL___nom_8___a8e43e4e8", "3528": "14___CATEGORICAL___nom_8___a92c09204", "3529": "14___CATEGORICAL___nom_8___a96775d37", "3530": "14___CATEGORICAL___nom_8___a96b3ac8e", "3531": "14___CATEGORICAL___nom_8___a97d2ec1d", "3532": "14___CATEGORICAL___nom_8___a9caec75d", "3533": "14___CATEGORICAL___nom_8___a9d35cede", "3534": "14___CATEGORICAL___nom_8___a9e540ca1", "3535": "14___CATEGORICAL___nom_8___aa08275e7", "3536": "14___CATEGORICAL___nom_8___aa16fa307", "3537": "14___CATEGORICAL___nom_8___aa195f372", "3538": "14___CATEGORICAL___nom_8___aa375a783", "3539": "14___CATEGORICAL___nom_8___aa8602b7f", "3540": "14___CATEGORICAL___nom_8___aab566067", "3541": "14___CATEGORICAL___nom_8___aae2d73a0", "3542": "14___CATEGORICAL___nom_8___ab238a6f5", "3543": "14___CATEGORICAL___nom_8___ab963d91c", "3544": "14___CATEGORICAL___nom_8___ab98ca6bd", "3545": "14___CATEGORICAL___nom_8___abd59f78f", "3546": "14___CATEGORICAL___nom_8___ac51b9975", "3547": "14___CATEGORICAL___nom_8___ac664dc2f", "3548": "14___CATEGORICAL___nom_8___ac6f71e3b", "3549": "14___CATEGORICAL___nom_8___ac84b337f", "3550": "14___CATEGORICAL___nom_8___ac918f7b5", "3551": "14___CATEGORICAL___nom_8___ace996dcb", "3552": "14___CATEGORICAL___nom_8___ad1f8262c", "3553": "14___CATEGORICAL___nom_8___ad38d6c0d", "3554": "14___CATEGORICAL___nom_8___ad97c3d39", "3555": "14___CATEGORICAL___nom_8___ad9e455c9", "3556": "14___CATEGORICAL___nom_8___ad9ef63f8", "3557": "14___CATEGORICAL___nom_8___adab14930", "3558": "14___CATEGORICAL___nom_8___adfe1ada0", "3559": "14___CATEGORICAL___nom_8___ae021111f", "3560": "14___CATEGORICAL___nom_8___ae06e29df", "3561": "14___CATEGORICAL___nom_8___ae1b11ffd", "3562": "14___CATEGORICAL___nom_8___ae1eb0585", "3563": "14___CATEGORICAL___nom_8___ae273a05e", "3564": "14___CATEGORICAL___nom_8___ae2e8eb47", "3565": "14___CATEGORICAL___nom_8___ae43387f4", "3566": "14___CATEGORICAL___nom_8___ae63df23a", "3567": "14___CATEGORICAL___nom_8___ae8e1d415", "3568": "14___CATEGORICAL___nom_8___aea7778ed", "3569": "14___CATEGORICAL___nom_8___aeaaf2bfe", "3570": "14___CATEGORICAL___nom_8___aec710735", "3571": "14___CATEGORICAL___nom_8___af18b263c", "3572": "14___CATEGORICAL___nom_8___af6fa6876", "3573": "14___CATEGORICAL___nom_8___af928f054", "3574": "14___CATEGORICAL___nom_8___afa40c23d", "3575": "14___CATEGORICAL___nom_8___afbb3506a", "3576": "14___CATEGORICAL___nom_8___afea2dab3", "3577": "14___CATEGORICAL___nom_8___afec4b889", "3578": "14___CATEGORICAL___nom_8___b0127e5d2", "3579": "14___CATEGORICAL___nom_8___b013aba7a", "3580": "14___CATEGORICAL___nom_8___b03e2a689", "3581": "14___CATEGORICAL___nom_8___b05a3f627", "3582": "14___CATEGORICAL___nom_8___b07c708aa", "3583": "14___CATEGORICAL___nom_8___b0800a9ed", "3584": "14___CATEGORICAL___nom_8___b08446fe0", "3585": "14___CATEGORICAL___nom_8___b09068d3c", "3586": "14___CATEGORICAL___nom_8___b098eb48e", "3587": "14___CATEGORICAL___nom_8___b0b8706f3", "3588": "14___CATEGORICAL___nom_8___b0c0e9443", "3589": "14___CATEGORICAL___nom_8___b13166170", "3590": "14___CATEGORICAL___nom_8___b14330b87", "3591": "14___CATEGORICAL___nom_8___b15c8a0ca", "3592": "14___CATEGORICAL___nom_8___b19bb1c28", "3593": "14___CATEGORICAL___nom_8___b1ebfd817", "3594": "14___CATEGORICAL___nom_8___b2291d197", "3595": "14___CATEGORICAL___nom_8___b247a3609", "3596": "14___CATEGORICAL___nom_8___b250508a3", "3597": "14___CATEGORICAL___nom_8___b25cfb005", "3598": "14___CATEGORICAL___nom_8___b2630ca94", "3599": "14___CATEGORICAL___nom_8___b2699410c", "3600": "14___CATEGORICAL___nom_8___b27f4235d", "3601": "14___CATEGORICAL___nom_8___b295087fb", "3602": "14___CATEGORICAL___nom_8___b29a4b8cb", "3603": "14___CATEGORICAL___nom_8___b2cb6a561", "3604": "14___CATEGORICAL___nom_8___b2cf4b19d", "3605": "14___CATEGORICAL___nom_8___b2daa8b10", "3606": "14___CATEGORICAL___nom_8___b2ee5c1ba", "3607": "14___CATEGORICAL___nom_8___b321d0ca8", "3608": "14___CATEGORICAL___nom_8___b3309192a", "3609": "14___CATEGORICAL___nom_8___b35f308e6", "3610": "14___CATEGORICAL___nom_8___b360b0a31", "3611": "14___CATEGORICAL___nom_8___b3663a25d", "3612": "14___CATEGORICAL___nom_8___b36a6282f", "3613": "14___CATEGORICAL___nom_8___b36ea7c20", "3614": "14___CATEGORICAL___nom_8___b3dbbae17", "3615": "14___CATEGORICAL___nom_8___b42c08fd7", "3616": "14___CATEGORICAL___nom_8___b4becbd10", "3617": "14___CATEGORICAL___nom_8___b4d1a4592", "3618": "14___CATEGORICAL___nom_8___b4ed5f261", "3619": "14___CATEGORICAL___nom_8___b50556b0f", "3620": "14___CATEGORICAL___nom_8___b508e37fb", "3621": "14___CATEGORICAL___nom_8___b50cadffc", "3622": "14___CATEGORICAL___nom_8___b51f9bd5e", "3623": "14___CATEGORICAL___nom_8___b5303e9b5", "3624": "14___CATEGORICAL___nom_8___b557b53fa", "3625": "14___CATEGORICAL___nom_8___b562d24f0", "3626": "14___CATEGORICAL___nom_8___b5d640dcd", "3627": "14___CATEGORICAL___nom_8___b5dd3e5be", "3628": "14___CATEGORICAL___nom_8___b5ee71542", "3629": "14___CATEGORICAL___nom_8___b6972d6ec", "3630": "14___CATEGORICAL___nom_8___b6dbdc48a", "3631": "14___CATEGORICAL___nom_8___b7035ddd0", "3632": "14___CATEGORICAL___nom_8___b70f8e80e", "3633": "14___CATEGORICAL___nom_8___b759e21f0", "3634": "14___CATEGORICAL___nom_8___b780a20ef", "3635": "14___CATEGORICAL___nom_8___b7e2bd965", "3636": "14___CATEGORICAL___nom_8___b7e6f8e6f", "3637": "14___CATEGORICAL___nom_8___b7f127f12", "3638": "14___CATEGORICAL___nom_8___b80b1b531", "3639": "14___CATEGORICAL___nom_8___b81808e2c", "3640": "14___CATEGORICAL___nom_8___b83cb4503", "3641": "14___CATEGORICAL___nom_8___b8428a89a", "3642": "14___CATEGORICAL___nom_8___b85e951f2", "3643": "14___CATEGORICAL___nom_8___b85e996e0", "3644": "14___CATEGORICAL___nom_8___b864d65df", "3645": "14___CATEGORICAL___nom_8___b876871ee", "3646": "14___CATEGORICAL___nom_8___b886d6c1c", "3647": "14___CATEGORICAL___nom_8___b8a606ee1", "3648": "14___CATEGORICAL___nom_8___b8d4be70f", "3649": "14___CATEGORICAL___nom_8___b8d8c140b", "3650": "14___CATEGORICAL___nom_8___b8d8d9935", "3651": "14___CATEGORICAL___nom_8___b90051dbf", "3652": "14___CATEGORICAL___nom_8___b9023027b", "3653": "14___CATEGORICAL___nom_8___b907d7706", "3654": "14___CATEGORICAL___nom_8___b91d24c00", "3655": "14___CATEGORICAL___nom_8___b9388117c", "3656": "14___CATEGORICAL___nom_8___b98d3e95c", "3657": "14___CATEGORICAL___nom_8___b98fc9df3", "3658": "14___CATEGORICAL___nom_8___b99b10c75", "3659": "14___CATEGORICAL___nom_8___b9ce5df8a", "3660": "14___CATEGORICAL___nom_8___b9dd3a8d5", "3661": "14___CATEGORICAL___nom_8___ba0354bd3", "3662": "14___CATEGORICAL___nom_8___ba0908512", "3663": "14___CATEGORICAL___nom_8___ba3e7ea1a", "3664": "14___CATEGORICAL___nom_8___ba5bf50d8", "3665": "14___CATEGORICAL___nom_8___ba639d49c", "3666": "14___CATEGORICAL___nom_8___ba6617f70", "3667": "14___CATEGORICAL___nom_8___ba851e117", "3668": "14___CATEGORICAL___nom_8___ba901f5b6", "3669": "14___CATEGORICAL___nom_8___ba9467f18", "3670": "14___CATEGORICAL___nom_8___ba983394b", "3671": "14___CATEGORICAL___nom_8___baa48f18e", "3672": "14___CATEGORICAL___nom_8___babfaeb99", "3673": "14___CATEGORICAL___nom_8___bacc1709e", "3674": "14___CATEGORICAL___nom_8___baf4e8214", "3675": "14___CATEGORICAL___nom_8___baff3d9e9", "3676": "14___CATEGORICAL___nom_8___bb103b1d8", "3677": "14___CATEGORICAL___nom_8___bb215fb49", "3678": "14___CATEGORICAL___nom_8___bb2c599dd", "3679": "14___CATEGORICAL___nom_8___bb61db96a", "3680": "14___CATEGORICAL___nom_8___bb795cbb6", "3681": "14___CATEGORICAL___nom_8___bb7c39795", "3682": "14___CATEGORICAL___nom_8___bbb7024e6", "3683": "14___CATEGORICAL___nom_8___bbbc9dc68", "3684": "14___CATEGORICAL___nom_8___bbeda41da", "3685": "14___CATEGORICAL___nom_8___bbfac060a", "3686": "14___CATEGORICAL___nom_8___bbfffb3a2", "3687": "14___CATEGORICAL___nom_8___bc28a14cf", "3688": "14___CATEGORICAL___nom_8___bc28bbcdb", "3689": "14___CATEGORICAL___nom_8___bc2b3468f", "3690": "14___CATEGORICAL___nom_8___bc4de41e5", "3691": "14___CATEGORICAL___nom_8___bc6cd367c", "3692": "14___CATEGORICAL___nom_8___bc8d00b60", "3693": "14___CATEGORICAL___nom_8___bca196117", "3694": "14___CATEGORICAL___nom_8___bca945ef3", "3695": "14___CATEGORICAL___nom_8___bcc7e3908", "3696": "14___CATEGORICAL___nom_8___bcd17ff67", "3697": "14___CATEGORICAL___nom_8___bcd94d848", "3698": "14___CATEGORICAL___nom_8___bcdc4924e", "3699": "14___CATEGORICAL___nom_8___bd4bec619", "3700": "14___CATEGORICAL___nom_8___bd7a542d2", "3701": "14___CATEGORICAL___nom_8___bd9834dfd", "3702": "14___CATEGORICAL___nom_8___be5418e47", "3703": "14___CATEGORICAL___nom_8___be9a0ca50", "3704": "14___CATEGORICAL___nom_8___be9dabb16", "3705": "14___CATEGORICAL___nom_8___beacd1432", "3706": "14___CATEGORICAL___nom_8___bed34b329", "3707": "14___CATEGORICAL___nom_8___bedd321af", "3708": "14___CATEGORICAL___nom_8___bee621d96", "3709": "14___CATEGORICAL___nom_8___bf0cade0d", "3710": "14___CATEGORICAL___nom_8___bf1dcdc12", "3711": "14___CATEGORICAL___nom_8___bf30347cf", "3712": "14___CATEGORICAL___nom_8___bf379c287", "3713": "14___CATEGORICAL___nom_8___bf65759ac", "3714": "14___CATEGORICAL___nom_8___bfb87ea35", "3715": "14___CATEGORICAL___nom_8___bfcf448a6", "3716": "14___CATEGORICAL___nom_8___c028d33aa", "3717": "14___CATEGORICAL___nom_8___c02f9ab4b", "3718": "14___CATEGORICAL___nom_8___c040b0b11", "3719": "14___CATEGORICAL___nom_8___c0649fb92", "3720": "14___CATEGORICAL___nom_8___c09a0e552", "3721": "14___CATEGORICAL___nom_8___c0a130cc5", "3722": "14___CATEGORICAL___nom_8___c0b86a256", "3723": "14___CATEGORICAL___nom_8___c0c8cacf3", "3724": "14___CATEGORICAL___nom_8___c109ff3ff", "3725": "14___CATEGORICAL___nom_8___c13d3ebdf", "3726": "14___CATEGORICAL___nom_8___c148f1638", "3727": "14___CATEGORICAL___nom_8___c158e37ba", "3728": "14___CATEGORICAL___nom_8___c1665c372", "3729": "14___CATEGORICAL___nom_8___c17775b6f", "3730": "14___CATEGORICAL___nom_8___c1a9f7f7f", "3731": "14___CATEGORICAL___nom_8___c23895153", "3732": "14___CATEGORICAL___nom_8___c239a5ba7", "3733": "14___CATEGORICAL___nom_8___c260ab330", "3734": "14___CATEGORICAL___nom_8___c26c86885", "3735": "14___CATEGORICAL___nom_8___c26d962e8", "3736": "14___CATEGORICAL___nom_8___c26e5ca98", "3737": "14___CATEGORICAL___nom_8___c289f3add", "3738": "14___CATEGORICAL___nom_8___c2a10ff81", "3739": "14___CATEGORICAL___nom_8___c2a416ba2", "3740": "14___CATEGORICAL___nom_8___c2d7fbae0", "3741": "14___CATEGORICAL___nom_8___c2dfecfea", "3742": "14___CATEGORICAL___nom_8___c2f10c23a", "3743": "14___CATEGORICAL___nom_8___c2f66dc3f", "3744": "14___CATEGORICAL___nom_8___c323d28a0", "3745": "14___CATEGORICAL___nom_8___c35122b27", "3746": "14___CATEGORICAL___nom_8___c36389e22", "3747": "14___CATEGORICAL___nom_8___c378a1cd1", "3748": "14___CATEGORICAL___nom_8___c389000ab", "3749": "14___CATEGORICAL___nom_8___c3938ecbe", "3750": "14___CATEGORICAL___nom_8___c3ae45839", "3751": "14___CATEGORICAL___nom_8___c3f6d6a89", "3752": "14___CATEGORICAL___nom_8___c41696165", "3753": "14___CATEGORICAL___nom_8___c42d909bf", "3754": "14___CATEGORICAL___nom_8___c42f562d9", "3755": "14___CATEGORICAL___nom_8___c459b4739", "3756": "14___CATEGORICAL___nom_8___c46c6451c", "3757": "14___CATEGORICAL___nom_8___c47c38880", "3758": "14___CATEGORICAL___nom_8___c495ce400", "3759": "14___CATEGORICAL___nom_8___c4d34418e", "3760": "14___CATEGORICAL___nom_8___c4e5456b9", "3761": "14___CATEGORICAL___nom_8___c4ebe850c", "3762": "14___CATEGORICAL___nom_8___c4f837d94", "3763": "14___CATEGORICAL___nom_8___c506c2080", "3764": "14___CATEGORICAL___nom_8___c5083bc55", "3765": "14___CATEGORICAL___nom_8___c5230ce1d", "3766": "14___CATEGORICAL___nom_8___c52fbca22", "3767": "14___CATEGORICAL___nom_8___c56e646f7", "3768": "14___CATEGORICAL___nom_8___c585fc552", "3769": "14___CATEGORICAL___nom_8___c58736b2b", "3770": "14___CATEGORICAL___nom_8___c58eb9e31", "3771": "14___CATEGORICAL___nom_8___c5a3abfcf", "3772": "14___CATEGORICAL___nom_8___c5ddeedd1", "3773": "14___CATEGORICAL___nom_8___c5e72a6bf", "3774": "14___CATEGORICAL___nom_8___c5faa8377", "3775": "14___CATEGORICAL___nom_8___c5ffda93b", "3776": "14___CATEGORICAL___nom_8___c6287237e", "3777": "14___CATEGORICAL___nom_8___c62fe8387", "3778": "14___CATEGORICAL___nom_8___c6312c571", "3779": "14___CATEGORICAL___nom_8___c68e5326c", "3780": "14___CATEGORICAL___nom_8___c699c36c7", "3781": "14___CATEGORICAL___nom_8___c6cbd79ec", "3782": "14___CATEGORICAL___nom_8___c6d5fb7a3", "3783": "14___CATEGORICAL___nom_8___c720f85ca", "3784": "14___CATEGORICAL___nom_8___c72b78ad7", "3785": "14___CATEGORICAL___nom_8___c74b05c9a", "3786": "14___CATEGORICAL___nom_8___c75847d5a", "3787": "14___CATEGORICAL___nom_8___c79ed7e75", "3788": "14___CATEGORICAL___nom_8___c822d0d5a", "3789": "14___CATEGORICAL___nom_8___c829bef5b", "3790": "14___CATEGORICAL___nom_8___c82c6f5ff", "3791": "14___CATEGORICAL___nom_8___c86146f17", "3792": "14___CATEGORICAL___nom_8___c86f89a21", "3793": "14___CATEGORICAL___nom_8___c874a058e", "3794": "14___CATEGORICAL___nom_8___c877ec971", "3795": "14___CATEGORICAL___nom_8___c8a8c9912", "3796": "14___CATEGORICAL___nom_8___c8f505f52", "3797": "14___CATEGORICAL___nom_8___c9165c84a", "3798": "14___CATEGORICAL___nom_8___c9180665d", "3799": "14___CATEGORICAL___nom_8___c92172a08", "3800": "14___CATEGORICAL___nom_8___c9370520b", "3801": "14___CATEGORICAL___nom_8___c946d9ec7", "3802": "14___CATEGORICAL___nom_8___c9480d8f9", "3803": "14___CATEGORICAL___nom_8___c9645e2a3", "3804": "14___CATEGORICAL___nom_8___c97dae701", "3805": "14___CATEGORICAL___nom_8___c99b41681", "3806": "14___CATEGORICAL___nom_8___c9a1187a9", "3807": "14___CATEGORICAL___nom_8___c9b8d19b3", "3808": "14___CATEGORICAL___nom_8___c9d0177ab", "3809": "14___CATEGORICAL___nom_8___c9d273937", "3810": "14___CATEGORICAL___nom_8___c9dba1070", "3811": "14___CATEGORICAL___nom_8___c9e4c877a", "3812": "14___CATEGORICAL___nom_8___ca0cab425", "3813": "14___CATEGORICAL___nom_8___ca49ac882", "3814": "14___CATEGORICAL___nom_8___ca4d3a2d0", "3815": "14___CATEGORICAL___nom_8___ca6f562f9", "3816": "14___CATEGORICAL___nom_8___ca722a0c7", "3817": "14___CATEGORICAL___nom_8___ca9c9cb0b", "3818": "14___CATEGORICAL___nom_8___caac6b6aa", "3819": "14___CATEGORICAL___nom_8___cac06173c", "3820": "14___CATEGORICAL___nom_8___cae70a043", "3821": "14___CATEGORICAL___nom_8___cb0df1398", "3822": "14___CATEGORICAL___nom_8___cb43ab175", "3823": "14___CATEGORICAL___nom_8___cb6b287ca", "3824": "14___CATEGORICAL___nom_8___cb7bc371f", "3825": "14___CATEGORICAL___nom_8___cbbffa79b", "3826": "14___CATEGORICAL___nom_8___cbc479489", "3827": "14___CATEGORICAL___nom_8___cc11548b7", "3828": "14___CATEGORICAL___nom_8___cc19213ad", "3829": "14___CATEGORICAL___nom_8___cc1b2c95e", "3830": "14___CATEGORICAL___nom_8___cc4c9e90c", "3831": "14___CATEGORICAL___nom_8___cc8afa79e", "3832": "14___CATEGORICAL___nom_8___cc9104f31", "3833": "14___CATEGORICAL___nom_8___cca1c3bc9", "3834": "14___CATEGORICAL___nom_8___cce1a867b", "3835": "14___CATEGORICAL___nom_8___ccee5b87d", "3836": "14___CATEGORICAL___nom_8___cd254c17c", "3837": "14___CATEGORICAL___nom_8___cd4799710", "3838": "14___CATEGORICAL___nom_8___cd482b564", "3839": "14___CATEGORICAL___nom_8___cd5429c0d", "3840": "14___CATEGORICAL___nom_8___cd579b4ac", "3841": "14___CATEGORICAL___nom_8___cd6548ef6", "3842": "14___CATEGORICAL___nom_8___cd91fa17f", "3843": "14___CATEGORICAL___nom_8___cdf4381f3", "3844": "14___CATEGORICAL___nom_8___ce1c52e78", "3845": "14___CATEGORICAL___nom_8___ce2e1fd64", "3846": "14___CATEGORICAL___nom_8___ce77e535e", "3847": "14___CATEGORICAL___nom_8___ce7bd7d9a", "3848": "14___CATEGORICAL___nom_8___ce837ff7c", "3849": "14___CATEGORICAL___nom_8___ce84bfa6a", "3850": "14___CATEGORICAL___nom_8___cea2817a5", "3851": "14___CATEGORICAL___nom_8___ceb00b79c", "3852": "14___CATEGORICAL___nom_8___cf045c728", "3853": "14___CATEGORICAL___nom_8___cf2454969", "3854": "14___CATEGORICAL___nom_8___cf46756be", "3855": "14___CATEGORICAL___nom_8___cf5d1c448", "3856": "14___CATEGORICAL___nom_8___cf61d0c57", "3857": "14___CATEGORICAL___nom_8___cf75e38ae", "3858": "14___CATEGORICAL___nom_8___cf75ff816", "3859": "14___CATEGORICAL___nom_8___cfbbbf9c0", "3860": "14___CATEGORICAL___nom_8___cfbd87ed0", "3861": "14___CATEGORICAL___nom_8___cfd8b1264", "3862": "14___CATEGORICAL___nom_8___cfe0e3d59", "3863": "14___CATEGORICAL___nom_8___d00612fe7", "3864": "14___CATEGORICAL___nom_8___d01423561", "3865": "14___CATEGORICAL___nom_8___d01a8f4a7", "3866": "14___CATEGORICAL___nom_8___d051d0fc8", "3867": "14___CATEGORICAL___nom_8___d05a1fd03", "3868": "14___CATEGORICAL___nom_8___d091d16ed", "3869": "14___CATEGORICAL___nom_8___d0beb8257", "3870": "14___CATEGORICAL___nom_8___d0cb271f6", "3871": "14___CATEGORICAL___nom_8___d0ead99a4", "3872": "14___CATEGORICAL___nom_8___d0ef7c409", "3873": "14___CATEGORICAL___nom_8___d0f293c7b", "3874": "14___CATEGORICAL___nom_8___d114dd2be", "3875": "14___CATEGORICAL___nom_8___d1316ead6", "3876": "14___CATEGORICAL___nom_8___d14631ea2", "3877": "14___CATEGORICAL___nom_8___d176969eb", "3878": "14___CATEGORICAL___nom_8___d17e00f8f", "3879": "14___CATEGORICAL___nom_8___d1cc480eb", "3880": "14___CATEGORICAL___nom_8___d200e225e", "3881": "14___CATEGORICAL___nom_8___d20454f08", "3882": "14___CATEGORICAL___nom_8___d24281bc6", "3883": "14___CATEGORICAL___nom_8___d249a507d", "3884": "14___CATEGORICAL___nom_8___d266ff644", "3885": "14___CATEGORICAL___nom_8___d2801db5b", "3886": "14___CATEGORICAL___nom_8___d28926816", "3887": "14___CATEGORICAL___nom_8___d2ae52e99", "3888": "14___CATEGORICAL___nom_8___d2da78c9e", "3889": "14___CATEGORICAL___nom_8___d2e0f889f", "3890": "14___CATEGORICAL___nom_8___d2f3c1440", "3891": "14___CATEGORICAL___nom_8___d2f94bb73", "3892": "14___CATEGORICAL___nom_8___d302eb66b", "3893": "14___CATEGORICAL___nom_8___d31a35718", "3894": "14___CATEGORICAL___nom_8___d34944b63", "3895": "14___CATEGORICAL___nom_8___d3639183a", "3896": "14___CATEGORICAL___nom_8___d38282f94", "3897": "14___CATEGORICAL___nom_8___d3bcd5e12", "3898": "14___CATEGORICAL___nom_8___d3be2159d", "3899": "14___CATEGORICAL___nom_8___d3c158775", "3900": "14___CATEGORICAL___nom_8___d3cff93be", "3901": "14___CATEGORICAL___nom_8___d40b11a75", "3902": "14___CATEGORICAL___nom_8___d40e0503f", "3903": "14___CATEGORICAL___nom_8___d45223a7d", "3904": "14___CATEGORICAL___nom_8___d45643422", "3905": "14___CATEGORICAL___nom_8___d4618f3ec", "3906": "14___CATEGORICAL___nom_8___d469000ca", "3907": "14___CATEGORICAL___nom_8___d47ebf6da", "3908": "14___CATEGORICAL___nom_8___d4c4281cc", "3909": "14___CATEGORICAL___nom_8___d4ff22472", "3910": "14___CATEGORICAL___nom_8___d51a928ca", "3911": "14___CATEGORICAL___nom_8___d561e366f", "3912": "14___CATEGORICAL___nom_8___d5aa42caa", "3913": "14___CATEGORICAL___nom_8___d5aa67a68", "3914": "14___CATEGORICAL___nom_8___d5b52c3c3", "3915": "14___CATEGORICAL___nom_8___d5d2c1cc0", "3916": "14___CATEGORICAL___nom_8___d5e5d555c", "3917": "14___CATEGORICAL___nom_8___d604dbdd9", "3918": "14___CATEGORICAL___nom_8___d66af2508", "3919": "14___CATEGORICAL___nom_8___d69adef8b", "3920": "14___CATEGORICAL___nom_8___d6b5a53d9", "3921": "14___CATEGORICAL___nom_8___d6d8298c8", "3922": "14___CATEGORICAL___nom_8___d73f1e10a", "3923": "14___CATEGORICAL___nom_8___d74bb7861", "3924": "14___CATEGORICAL___nom_8___d76867166", "3925": "14___CATEGORICAL___nom_8___d78456e3e", "3926": "14___CATEGORICAL___nom_8___d7875ced9", "3927": "14___CATEGORICAL___nom_8___d7b62c86f", "3928": "14___CATEGORICAL___nom_8___d7d0e2ac6", "3929": "14___CATEGORICAL___nom_8___d7e1019fd", "3930": "14___CATEGORICAL___nom_8___d82636a8b", "3931": "14___CATEGORICAL___nom_8___d87e62538", "3932": "14___CATEGORICAL___nom_8___d8c357805", "3933": "14___CATEGORICAL___nom_8___d8c52dca1", "3934": "14___CATEGORICAL___nom_8___d8f7e41e9", "3935": "14___CATEGORICAL___nom_8___d9646f552", "3936": "14___CATEGORICAL___nom_8___d976513dc", "3937": "14___CATEGORICAL___nom_8___d9985175e", "3938": "14___CATEGORICAL___nom_8___d9b30e440", "3939": "14___CATEGORICAL___nom_8___d9d98d4ae", "3940": "14___CATEGORICAL___nom_8___d9e105c14", "3941": "14___CATEGORICAL___nom_8___d9e50c0c2", "3942": "14___CATEGORICAL___nom_8___d9e5d2eb7", "3943": "14___CATEGORICAL___nom_8___d9e7bda6e", "3944": "14___CATEGORICAL___nom_8___d9ee86c45", "3945": "14___CATEGORICAL___nom_8___d9f58518e", "3946": "14___CATEGORICAL___nom_8___da1fdbf74", "3947": "14___CATEGORICAL___nom_8___da2432384", "3948": "14___CATEGORICAL___nom_8___da376ec8c", "3949": "14___CATEGORICAL___nom_8___da4a7c11d", "3950": "14___CATEGORICAL___nom_8___da5245562", "3951": "14___CATEGORICAL___nom_8___da6766e40", "3952": "14___CATEGORICAL___nom_8___da8834a38", "3953": "14___CATEGORICAL___nom_8___da8be1022", "3954": "14___CATEGORICAL___nom_8___daa1f22dc", "3955": "14___CATEGORICAL___nom_8___dab340800", "3956": "14___CATEGORICAL___nom_8___dab3adf54", "3957": "14___CATEGORICAL___nom_8___dac367de2", "3958": "14___CATEGORICAL___nom_8___dacb01e71", "3959": "14___CATEGORICAL___nom_8___daea02933", "3960": "14___CATEGORICAL___nom_8___db2e017c6", "3961": "14___CATEGORICAL___nom_8___db3352558", "3962": "14___CATEGORICAL___nom_8___db543c764", "3963": "14___CATEGORICAL___nom_8___db8b6ab4c", "3964": "14___CATEGORICAL___nom_8___dbc05cc3f", "3965": "14___CATEGORICAL___nom_8___dbc89694c", "3966": "14___CATEGORICAL___nom_8___dbdd6692a", "3967": "14___CATEGORICAL___nom_8___dc4415f93", "3968": "14___CATEGORICAL___nom_8___dc6d514cb", "3969": "14___CATEGORICAL___nom_8___dc726f517", "3970": "14___CATEGORICAL___nom_8___dc72aa69c", "3971": "14___CATEGORICAL___nom_8___dc9f5c70f", "3972": "14___CATEGORICAL___nom_8___dcb92c5f2", "3973": "14___CATEGORICAL___nom_8___dcbd31128", "3974": "14___CATEGORICAL___nom_8___dcd7bad00", "3975": "14___CATEGORICAL___nom_8___dce8d8f7d", "3976": "14___CATEGORICAL___nom_8___dcea59284", "3977": "14___CATEGORICAL___nom_8___dcf46fee1", "3978": "14___CATEGORICAL___nom_8___dcf843eef", "3979": "14___CATEGORICAL___nom_8___dcfc4407a", "3980": "14___CATEGORICAL___nom_8___dd0abe423", "3981": "14___CATEGORICAL___nom_8___dd1ea2a9b", "3982": "14___CATEGORICAL___nom_8___dd3966979", "3983": "14___CATEGORICAL___nom_8___dd3e3a265", "3984": "14___CATEGORICAL___nom_8___dd5f011b4", "3985": "14___CATEGORICAL___nom_8___dda02ff87", "3986": "14___CATEGORICAL___nom_8___ddc0d2426", "3987": "14___CATEGORICAL___nom_8___dddd242ad", "3988": "14___CATEGORICAL___nom_8___dde2bf409", "3989": "14___CATEGORICAL___nom_8___ddf5ee9f9", "3990": "14___CATEGORICAL___nom_8___ddf712d11", "3991": "14___CATEGORICAL___nom_8___de5cabf44", "3992": "14___CATEGORICAL___nom_8___de61586f8", "3993": "14___CATEGORICAL___nom_8___de8b99bd9", "3994": "14___CATEGORICAL___nom_8___de9c9f684", "3995": "14___CATEGORICAL___nom_8___dee8a6be0", "3996": "14___CATEGORICAL___nom_8___df232de17", "3997": "14___CATEGORICAL___nom_8___df68e43f2", "3998": "14___CATEGORICAL___nom_8___df81b8761", "3999": "14___CATEGORICAL___nom_8___df8999dfb", "4000": "14___CATEGORICAL___nom_8___df8bbb20d", "4001": "14___CATEGORICAL___nom_8___df8d8c987", "4002": "14___CATEGORICAL___nom_8___e00f8ad1f", "4003": "14___CATEGORICAL___nom_8___e01785493", "4004": "14___CATEGORICAL___nom_8___e0734b0c9", "4005": "14___CATEGORICAL___nom_8___e07bd60a7", "4006": "14___CATEGORICAL___nom_8___e08e0a8d1", "4007": "14___CATEGORICAL___nom_8___e0a84321e", "4008": "14___CATEGORICAL___nom_8___e0d257420", "4009": "14___CATEGORICAL___nom_8___e0da94a47", "4010": "14___CATEGORICAL___nom_8___e0dd41013", "4011": "14___CATEGORICAL___nom_8___e0fca312d", "4012": "14___CATEGORICAL___nom_8___e12bc5609", "4013": "14___CATEGORICAL___nom_8___e13fc9abb", "4014": "14___CATEGORICAL___nom_8___e1e15bb6b", "4015": "14___CATEGORICAL___nom_8___e1f545f9d", "4016": "14___CATEGORICAL___nom_8___e24779844", "4017": "14___CATEGORICAL___nom_8___e27d4b326", "4018": "14___CATEGORICAL___nom_8___e27ed45e9", "4019": "14___CATEGORICAL___nom_8___e2a815f34", "4020": "14___CATEGORICAL___nom_8___e2b580e70", "4021": "14___CATEGORICAL___nom_8___e2c6ec26d", "4022": "14___CATEGORICAL___nom_8___e32fd31bc", "4023": "14___CATEGORICAL___nom_8___e33c9683a", "4024": "14___CATEGORICAL___nom_8___e3525bf8b", "4025": "14___CATEGORICAL___nom_8___e36074083", "4026": "14___CATEGORICAL___nom_8___e37c55b57", "4027": "14___CATEGORICAL___nom_8___e3923c01a", "4028": "14___CATEGORICAL___nom_8___e3adda312", "4029": "14___CATEGORICAL___nom_8___e40e75916", "4030": "14___CATEGORICAL___nom_8___e41140984", "4031": "14___CATEGORICAL___nom_8___e416d02e6", "4032": "14___CATEGORICAL___nom_8___e43f2e990", "4033": "14___CATEGORICAL___nom_8___e479ccef0", "4034": "14___CATEGORICAL___nom_8___e48171ccd", "4035": "14___CATEGORICAL___nom_8___e482967f3", "4036": "14___CATEGORICAL___nom_8___e4a85f363", "4037": "14___CATEGORICAL___nom_8___e4ae1fa52", "4038": "14___CATEGORICAL___nom_8___e4d784581", "4039": "14___CATEGORICAL___nom_8___e4f60e3eb", "4040": "14___CATEGORICAL___nom_8___e5044ae49", "4041": "14___CATEGORICAL___nom_8___e5236bb77", "4042": "14___CATEGORICAL___nom_8___e53380e2c", "4043": "14___CATEGORICAL___nom_8___e580cbc96", "4044": "14___CATEGORICAL___nom_8___e588cff32", "4045": "14___CATEGORICAL___nom_8___e597a8791", "4046": "14___CATEGORICAL___nom_8___e5c6d159d", "4047": "14___CATEGORICAL___nom_8___e5f3dfb3d", "4048": "14___CATEGORICAL___nom_8___e5fcb5ae0", "4049": "14___CATEGORICAL___nom_8___e601670bb", "4050": "14___CATEGORICAL___nom_8___e657de750", "4051": "14___CATEGORICAL___nom_8___e667da576", "4052": "14___CATEGORICAL___nom_8___e6836709f", "4053": "14___CATEGORICAL___nom_8___e689178b4", "4054": "14___CATEGORICAL___nom_8___e6afc0613", "4055": "14___CATEGORICAL___nom_8___e6b71769e", "4056": "14___CATEGORICAL___nom_8___e6b8a118f", "4057": "14___CATEGORICAL___nom_8___e6e22d99b", "4058": "14___CATEGORICAL___nom_8___e6f1d5fc2", "4059": "14___CATEGORICAL___nom_8___e7788ed07", "4060": "14___CATEGORICAL___nom_8___e7a540f00", "4061": "14___CATEGORICAL___nom_8___e7ace3433", "4062": "14___CATEGORICAL___nom_8___e7ed9ec87", "4063": "14___CATEGORICAL___nom_8___e87174322", "4064": "14___CATEGORICAL___nom_8___e87251003", "4065": "14___CATEGORICAL___nom_8___e89889a70", "4066": "14___CATEGORICAL___nom_8___e8ceda996", "4067": "14___CATEGORICAL___nom_8___e8ed352ca", "4068": "14___CATEGORICAL___nom_8___e8f1201dc", "4069": "14___CATEGORICAL___nom_8___e93f30c2f", "4070": "14___CATEGORICAL___nom_8___e9ac8b496", "4071": "14___CATEGORICAL___nom_8___e9d87009b", "4072": "14___CATEGORICAL___nom_8___e9e0e972d", "4073": "14___CATEGORICAL___nom_8___e9f3f8733", "4074": "14___CATEGORICAL___nom_8___ea03f42aa", "4075": "14___CATEGORICAL___nom_8___ea0bd617f", "4076": "14___CATEGORICAL___nom_8___ea0d16148", "4077": "14___CATEGORICAL___nom_8___ea19101e5", "4078": "14___CATEGORICAL___nom_8___ea2eba649", "4079": "14___CATEGORICAL___nom_8___ea374ba40", "4080": "14___CATEGORICAL___nom_8___ea392401b", "4081": "14___CATEGORICAL___nom_8___ea4915654", "4082": "14___CATEGORICAL___nom_8___ea4f842b4", "4083": "14___CATEGORICAL___nom_8___ea6fef1af", "4084": "14___CATEGORICAL___nom_8___eaa0cdac0", "4085": "14___CATEGORICAL___nom_8___eab74765e", "4086": "14___CATEGORICAL___nom_8___eabc1ee54", "4087": "14___CATEGORICAL___nom_8___eac634872", "4088": "14___CATEGORICAL___nom_8___eae7eef3b", "4089": "14___CATEGORICAL___nom_8___eaf3831ea", "4090": "14___CATEGORICAL___nom_8___eb1b8cea2", "4091": "14___CATEGORICAL___nom_8___eb2dc547b", "4092": "14___CATEGORICAL___nom_8___eb4d2c5b9", "4093": "14___CATEGORICAL___nom_8___eb5a18e2f", "4094": "14___CATEGORICAL___nom_8___eb6259cb7", "4095": "14___CATEGORICAL___nom_8___eb9a2b2d7", "4096": "14___CATEGORICAL___nom_8___ebafa5e20", "4097": "14___CATEGORICAL___nom_8___ebbbc91f3", "4098": "14___CATEGORICAL___nom_8___ebc6cb63d", "4099": "14___CATEGORICAL___nom_8___ebcbb23bd", "4100": "14___CATEGORICAL___nom_8___ebd3cc4cb", "4101": "14___CATEGORICAL___nom_8___ebfe6b3b5", "4102": "14___CATEGORICAL___nom_8___ec0fe23eb", "4103": "14___CATEGORICAL___nom_8___ec329560c", "4104": "14___CATEGORICAL___nom_8___ec3cc552f", "4105": "14___CATEGORICAL___nom_8___ec5e9f1a4", "4106": "14___CATEGORICAL___nom_8___eca31f6ec", "4107": "14___CATEGORICAL___nom_8___ecfac8f2a", "4108": "14___CATEGORICAL___nom_8___ed1d52ddc", "4109": "14___CATEGORICAL___nom_8___ed21c9a5c", "4110": "14___CATEGORICAL___nom_8___ed24a1258", "4111": "14___CATEGORICAL___nom_8___ed4b0b59b", "4112": "14___CATEGORICAL___nom_8___ed53b4f11", "4113": "14___CATEGORICAL___nom_8___ed88ce35d", "4114": "14___CATEGORICAL___nom_8___eda76fee3", "4115": "14___CATEGORICAL___nom_8___edb9a61dc", "4116": "14___CATEGORICAL___nom_8___edbd3d8cb", "4117": "14___CATEGORICAL___nom_8___edc54486c", "4118": "14___CATEGORICAL___nom_8___edd26d8a3", "4119": "14___CATEGORICAL___nom_8___edd67eb51", "4120": "14___CATEGORICAL___nom_8___eddf51759", "4121": "14___CATEGORICAL___nom_8___edfc6cc92", "4122": "14___CATEGORICAL___nom_8___ee05c0cc1", "4123": "14___CATEGORICAL___nom_8___ee08d3f06", "4124": "14___CATEGORICAL___nom_8___ee2aa5f80", "4125": "14___CATEGORICAL___nom_8___ee32cf729", "4126": "14___CATEGORICAL___nom_8___ee9f2459d", "4127": "14___CATEGORICAL___nom_8___ef029c3fd", "4128": "14___CATEGORICAL___nom_8___ef1a084ff", "4129": "14___CATEGORICAL___nom_8___ef5c18e97", "4130": "14___CATEGORICAL___nom_8___ef5e2cc56", "4131": "14___CATEGORICAL___nom_8___ef666ab49", "4132": "14___CATEGORICAL___nom_8___efb91e4dd", "4133": "14___CATEGORICAL___nom_8___efce9b8fe", "4134": "14___CATEGORICAL___nom_8___efe02a3fe", "4135": "14___CATEGORICAL___nom_8___eff80ac44", "4136": "14___CATEGORICAL___nom_8___f00c48c4c", "4137": "14___CATEGORICAL___nom_8___f01e81da7", "4138": "14___CATEGORICAL___nom_8___f022708f4", "4139": "14___CATEGORICAL___nom_8___f0593717e", "4140": "14___CATEGORICAL___nom_8___f05f0d0b5", "4141": "14___CATEGORICAL___nom_8___f05f58ba6", "4142": "14___CATEGORICAL___nom_8___f07edf7b2", "4143": "14___CATEGORICAL___nom_8___f0949758d", "4144": "14___CATEGORICAL___nom_8___f0aa7e838", "4145": "14___CATEGORICAL___nom_8___f0aebad14", "4146": "14___CATEGORICAL___nom_8___f0c4b003b", "4147": "14___CATEGORICAL___nom_8___f0e3277d2", "4148": "14___CATEGORICAL___nom_8___f0eb17acf", "4149": "14___CATEGORICAL___nom_8___f10e42d5f", "4150": "14___CATEGORICAL___nom_8___f1192c12f", "4151": "14___CATEGORICAL___nom_8___f11f759db", "4152": "14___CATEGORICAL___nom_8___f14a3142c", "4153": "14___CATEGORICAL___nom_8___f15e34799", "4154": "14___CATEGORICAL___nom_8___f1de422cc", "4155": "14___CATEGORICAL___nom_8___f1e152a0e", "4156": "14___CATEGORICAL___nom_8___f1ed0bc45", "4157": "14___CATEGORICAL___nom_8___f20e2d126", "4158": "14___CATEGORICAL___nom_8___f214034f5", "4159": "14___CATEGORICAL___nom_8___f2289fb5f", "4160": "14___CATEGORICAL___nom_8___f230bd736", "4161": "14___CATEGORICAL___nom_8___f2c33c911", "4162": "14___CATEGORICAL___nom_8___f302d9a14", "4163": "14___CATEGORICAL___nom_8___f372c8ace", "4164": "14___CATEGORICAL___nom_8___f372e2a22", "4165": "14___CATEGORICAL___nom_8___f3890a06a", "4166": "14___CATEGORICAL___nom_8___f38d73a27", "4167": "14___CATEGORICAL___nom_8___f3a3db6c1", "4168": "14___CATEGORICAL___nom_8___f3b254c8d", "4169": "14___CATEGORICAL___nom_8___f3b896901", "4170": "14___CATEGORICAL___nom_8___f3bf907a3", "4171": "14___CATEGORICAL___nom_8___f3cbabf23", "4172": "14___CATEGORICAL___nom_8___f4063d3dc", "4173": "14___CATEGORICAL___nom_8___f434490ad", "4174": "14___CATEGORICAL___nom_8___f43b97d8b", "4175": "14___CATEGORICAL___nom_8___f4a5261d7", "4176": "14___CATEGORICAL___nom_8___f4aa5e97b", "4177": "14___CATEGORICAL___nom_8___f4af9c06a", "4178": "14___CATEGORICAL___nom_8___f4e2b7052", "4179": "14___CATEGORICAL___nom_8___f4f35f941", "4180": "14___CATEGORICAL___nom_8___f4f3e1b9e", "4181": "14___CATEGORICAL___nom_8___f5093ec51", "4182": "14___CATEGORICAL___nom_8___f5098af69", "4183": "14___CATEGORICAL___nom_8___f564a8936", "4184": "14___CATEGORICAL___nom_8___f576761d8", "4185": "14___CATEGORICAL___nom_8___f58eea518", "4186": "14___CATEGORICAL___nom_8___f5a2e72fa", "4187": "14___CATEGORICAL___nom_8___f5d51064b", "4188": "14___CATEGORICAL___nom_8___f60eb679f", "4189": "14___CATEGORICAL___nom_8___f61c43465", "4190": "14___CATEGORICAL___nom_8___f656ebcb9", "4191": "14___CATEGORICAL___nom_8___f65f29676", "4192": "14___CATEGORICAL___nom_8___f66552355", "4193": "14___CATEGORICAL___nom_8___f665558e4", "4194": "14___CATEGORICAL___nom_8___f711028cf", "4195": "14___CATEGORICAL___nom_8___f7234f3a4", "4196": "14___CATEGORICAL___nom_8___f736ea577", "4197": "14___CATEGORICAL___nom_8___f73a61c87", "4198": "14___CATEGORICAL___nom_8___f74048224", "4199": "14___CATEGORICAL___nom_8___f761e800c", "4200": "14___CATEGORICAL___nom_8___f76b52d02", "4201": "14___CATEGORICAL___nom_8___f7b623cb1", "4202": "14___CATEGORICAL___nom_8___f7be66f88", "4203": "14___CATEGORICAL___nom_8___f7cad2941", "4204": "14___CATEGORICAL___nom_8___f7cbf993a", "4205": "14___CATEGORICAL___nom_8___f7d45aa79", "4206": "14___CATEGORICAL___nom_8___f83129387", "4207": "14___CATEGORICAL___nom_8___f83347fe9", "4208": "14___CATEGORICAL___nom_8___f83a849b6", "4209": "14___CATEGORICAL___nom_8___f83d31113", "4210": "14___CATEGORICAL___nom_8___f8407e5b6", "4211": "14___CATEGORICAL___nom_8___f84705157", "4212": "14___CATEGORICAL___nom_8___f88ba51b4", "4213": "14___CATEGORICAL___nom_8___f88cab1f0", "4214": "14___CATEGORICAL___nom_8___f8984e6eb", "4215": "14___CATEGORICAL___nom_8___f8c4fd6d0", "4216": "14___CATEGORICAL___nom_8___f8cbd3521", "4217": "14___CATEGORICAL___nom_8___f8e6120d6", "4218": "14___CATEGORICAL___nom_8___f91f3b1ee", "4219": "14___CATEGORICAL___nom_8___f93f7e202", "4220": "14___CATEGORICAL___nom_8___f94576c59", "4221": "14___CATEGORICAL___nom_8___f9505f474", "4222": "14___CATEGORICAL___nom_8___f96bfd71f", "4223": "14___CATEGORICAL___nom_8___f976db04c", "4224": "14___CATEGORICAL___nom_8___f97fba09c", "4225": "14___CATEGORICAL___nom_8___f9a27be50", "4226": "14___CATEGORICAL___nom_8___f9e36af9c", "4227": "14___CATEGORICAL___nom_8___f9f86b01d", "4228": "14___CATEGORICAL___nom_8___f9fc16c9c", "4229": "14___CATEGORICAL___nom_8___fa3bdf705", "4230": "14___CATEGORICAL___nom_8___fa4b4656d", "4231": "14___CATEGORICAL___nom_8___fa61d49cc", "4232": "14___CATEGORICAL___nom_8___fa79eefba", "4233": "14___CATEGORICAL___nom_8___fa7d6fb87", "4234": "14___CATEGORICAL___nom_8___fa838f0f7", "4235": "14___CATEGORICAL___nom_8___fa85164d0", "4236": "14___CATEGORICAL___nom_8___fa897d135", "4237": "14___CATEGORICAL___nom_8___fad6a4f9b", "4238": "14___CATEGORICAL___nom_8___fae860f79", "4239": "14___CATEGORICAL___nom_8___fb57de2cb", "4240": "14___CATEGORICAL___nom_8___fbd2354a7", "4241": "14___CATEGORICAL___nom_8___fbe321dda", "4242": "14___CATEGORICAL___nom_8___fc0eb2887", "4243": "14___CATEGORICAL___nom_8___fc1e6675f", "4244": "14___CATEGORICAL___nom_8___fc2f6a473", "4245": "14___CATEGORICAL___nom_8___fc8a592bb", "4246": "14___CATEGORICAL___nom_8___fcc1d382f", "4247": "14___CATEGORICAL___nom_8___fce16bcb2", "4248": "14___CATEGORICAL___nom_8___fce7ef505", "4249": "14___CATEGORICAL___nom_8___fcf8c2866", "4250": "14___CATEGORICAL___nom_8___fd0041a98", "4251": "14___CATEGORICAL___nom_8___fd1ccb145", "4252": "14___CATEGORICAL___nom_8___fd1d99b7f", "4253": "14___CATEGORICAL___nom_8___fd3382dd3", "4254": "14___CATEGORICAL___nom_8___fd50f2be5", "4255": "14___CATEGORICAL___nom_8___fd83fa0a7", "4256": "14___CATEGORICAL___nom_8___fdb381caa", "4257": "14___CATEGORICAL___nom_8___fdcd0dada", "4258": "14___CATEGORICAL___nom_8___fde889468", "4259": "14___CATEGORICAL___nom_8___fe06b6fa8", "4260": "14___CATEGORICAL___nom_8___fe19199bd", "4261": "14___CATEGORICAL___nom_8___fe593b910", "4262": "14___CATEGORICAL___nom_8___fe605ee3a", "4263": "14___CATEGORICAL___nom_8___fe6571c3a", "4264": "14___CATEGORICAL___nom_8___fe6b03253", "4265": "14___CATEGORICAL___nom_8___fe7f8452c", "4266": "14___CATEGORICAL___nom_8___fe942ef5d", "4267": "14___CATEGORICAL___nom_8___feb50e76d", "4268": "14___CATEGORICAL___nom_8___feb99cbd9", "4269": "14___CATEGORICAL___nom_8___fec4a738d", "4270": "14___CATEGORICAL___nom_8___fee1b2e12", "4271": "14___CATEGORICAL___nom_8___ff529a30a", "4272": "14___CATEGORICAL___nom_8___ff7aa8438", "4273": "14___CATEGORICAL___nom_8___ff7f535a6", "4274": "14___CATEGORICAL___nom_8___ffda98522", "4275": "14___CATEGORICAL___nom_8___ffee920d7", "4276": "14___CATEGORICAL___nom_8___ffffab6a3", "4277": "15___CATEGORICAL___nom_9___00052050d", "4278": "15___CATEGORICAL___nom_9___0008e7054", "4279": "15___CATEGORICAL___nom_9___000bd3e3d", "4280": "15___CATEGORICAL___nom_9___000c15b20", "4281": "15___CATEGORICAL___nom_9___000c3148c", "4282": "15___CATEGORICAL___nom_9___001062bf6", "4283": "15___CATEGORICAL___nom_9___001ab65ce", "4284": "15___CATEGORICAL___nom_9___001e2ba03", "4285": "15___CATEGORICAL___nom_9___00202246b", "4286": "15___CATEGORICAL___nom_9___002056e51", "4287": "15___CATEGORICAL___nom_9___0022453f5", "4288": "15___CATEGORICAL___nom_9___0026bc166", "4289": "15___CATEGORICAL___nom_9___0027afb6f", "4290": "15___CATEGORICAL___nom_9___002834a2e", "4291": "15___CATEGORICAL___nom_9___00294ac25", "4292": "15___CATEGORICAL___nom_9___002ca4583", "4293": "15___CATEGORICAL___nom_9___002df90de", "4294": "15___CATEGORICAL___nom_9___003115d5b", "4295": "15___CATEGORICAL___nom_9___00400f226", "4296": "15___CATEGORICAL___nom_9___004691495", "4297": "15___CATEGORICAL___nom_9___0050bebb8", "4298": "15___CATEGORICAL___nom_9___0052ec1a8", "4299": "15___CATEGORICAL___nom_9___00559eb44", "4300": "15___CATEGORICAL___nom_9___005825677", "4301": "15___CATEGORICAL___nom_9___00593bcf9", "4302": "15___CATEGORICAL___nom_9___0059c8591", "4303": "15___CATEGORICAL___nom_9___0066765f0", "4304": "15___CATEGORICAL___nom_9___0066fa336", "4305": "15___CATEGORICAL___nom_9___0068680a7", "4306": "15___CATEGORICAL___nom_9___006c8a9c6", "4307": "15___CATEGORICAL___nom_9___0075253ec", "4308": "15___CATEGORICAL___nom_9___00802f44d", "4309": "15___CATEGORICAL___nom_9___0080acbb1", "4310": "15___CATEGORICAL___nom_9___0080bb69a", "4311": "15___CATEGORICAL___nom_9___00850b8ad", "4312": "15___CATEGORICAL___nom_9___009746351", "4313": "15___CATEGORICAL___nom_9___00989ef04", "4314": "15___CATEGORICAL___nom_9___009c4964a", "4315": "15___CATEGORICAL___nom_9___00a076048", "4316": "15___CATEGORICAL___nom_9___00a4b0c9a", "4317": "15___CATEGORICAL___nom_9___00a9bb85a", "4318": "15___CATEGORICAL___nom_9___00a9e9fd2", "4319": "15___CATEGORICAL___nom_9___00ab95668", "4320": "15___CATEGORICAL___nom_9___00afddb62", "4321": "15___CATEGORICAL___nom_9___00b1d16c2", "4322": "15___CATEGORICAL___nom_9___00b5710c2", "4323": "15___CATEGORICAL___nom_9___00b9de622", "4324": "15___CATEGORICAL___nom_9___00bcf45f9", "4325": "15___CATEGORICAL___nom_9___00bf2c893", "4326": "15___CATEGORICAL___nom_9___00c68a012", "4327": "15___CATEGORICAL___nom_9___00c840a2d", "4328": "15___CATEGORICAL___nom_9___00cc1478e", "4329": "15___CATEGORICAL___nom_9___00d1b82f6", "4330": "15___CATEGORICAL___nom_9___00dfe9127", "4331": "15___CATEGORICAL___nom_9___00e08b626", "4332": "15___CATEGORICAL___nom_9___00e27488b", "4333": "15___CATEGORICAL___nom_9___00e4829a5", "4334": "15___CATEGORICAL___nom_9___00e4aa5c5", "4335": "15___CATEGORICAL___nom_9___00f508ed5", "4336": "15___CATEGORICAL___nom_9___00f5f64af", "4337": "15___CATEGORICAL___nom_9___010e75aa4", "4338": "15___CATEGORICAL___nom_9___0111cc5d2", "4339": "15___CATEGORICAL___nom_9___0119cc6d7", "4340": "15___CATEGORICAL___nom_9___011a256ed", "4341": "15___CATEGORICAL___nom_9___011db0734", "4342": "15___CATEGORICAL___nom_9___0129e6b4e", "4343": "15___CATEGORICAL___nom_9___01309b99a", "4344": "15___CATEGORICAL___nom_9___013ffa101", "4345": "15___CATEGORICAL___nom_9___0147bbfdc", "4346": "15___CATEGORICAL___nom_9___0148bf087", "4347": "15___CATEGORICAL___nom_9___014979ecc", "4348": "15___CATEGORICAL___nom_9___014fae23a", "4349": "15___CATEGORICAL___nom_9___0156a9e01", "4350": "15___CATEGORICAL___nom_9___015c7a7e5", "4351": "15___CATEGORICAL___nom_9___015eef008", "4352": "15___CATEGORICAL___nom_9___0168d1867", "4353": "15___CATEGORICAL___nom_9___016e77e0e", "4354": "15___CATEGORICAL___nom_9___016f5db0f", "4355": "15___CATEGORICAL___nom_9___0178f8333", "4356": "15___CATEGORICAL___nom_9___017939e7b", "4357": "15___CATEGORICAL___nom_9___017ec7dc7", "4358": "15___CATEGORICAL___nom_9___018cbe944", "4359": "15___CATEGORICAL___nom_9___018d0b0a6", "4360": "15___CATEGORICAL___nom_9___019a86de1", "4361": "15___CATEGORICAL___nom_9___019d87fb2", "4362": "15___CATEGORICAL___nom_9___01a5f2577", "4363": "15___CATEGORICAL___nom_9___01a7c69ad", "4364": "15___CATEGORICAL___nom_9___01b77e0a7", "4365": "15___CATEGORICAL___nom_9___01bc9821e", "4366": "15___CATEGORICAL___nom_9___01bfea306", "4367": "15___CATEGORICAL___nom_9___01c5fa472", "4368": "15___CATEGORICAL___nom_9___01c649ad2", "4369": "15___CATEGORICAL___nom_9___01cf8a8a1", "4370": "15___CATEGORICAL___nom_9___01cfc8958", "4371": "15___CATEGORICAL___nom_9___01d30bef3", "4372": "15___CATEGORICAL___nom_9___01d331fac", "4373": "15___CATEGORICAL___nom_9___01d6c3dae", "4374": "15___CATEGORICAL___nom_9___01dd99dc0", "4375": "15___CATEGORICAL___nom_9___01e041b09", "4376": "15___CATEGORICAL___nom_9___01e51f4e1", "4377": "15___CATEGORICAL___nom_9___01ef402da", "4378": "15___CATEGORICAL___nom_9___01f13b1b9", "4379": "15___CATEGORICAL___nom_9___01f24e6e0", "4380": "15___CATEGORICAL___nom_9___01f9ea3c6", "4381": "15___CATEGORICAL___nom_9___01fa4b222", "4382": "15___CATEGORICAL___nom_9___0200d3169", "4383": "15___CATEGORICAL___nom_9___0219d13a9", "4384": "15___CATEGORICAL___nom_9___0220e2e6c", "4385": "15___CATEGORICAL___nom_9___02215de10", "4386": "15___CATEGORICAL___nom_9___022861733", "4387": "15___CATEGORICAL___nom_9___022f9fc61", "4388": "15___CATEGORICAL___nom_9___023705750", "4389": "15___CATEGORICAL___nom_9___023966cc9", "4390": "15___CATEGORICAL___nom_9___023af4abf", "4391": "15___CATEGORICAL___nom_9___02445f2fa", "4392": "15___CATEGORICAL___nom_9___024ea12ab", "4393": "15___CATEGORICAL___nom_9___024fcd6eb", "4394": "15___CATEGORICAL___nom_9___025b091c0", "4395": "15___CATEGORICAL___nom_9___025b2525d", "4396": "15___CATEGORICAL___nom_9___02614c060", "4397": "15___CATEGORICAL___nom_9___0261d34b1", "4398": "15___CATEGORICAL___nom_9___0265d8813", "4399": "15___CATEGORICAL___nom_9___02704abc1", "4400": "15___CATEGORICAL___nom_9___027095702", "4401": "15___CATEGORICAL___nom_9___0270f38fd", "4402": "15___CATEGORICAL___nom_9___027e757fe", "4403": "15___CATEGORICAL___nom_9___027ea8cef", "4404": "15___CATEGORICAL___nom_9___028208178", "4405": "15___CATEGORICAL___nom_9___02851e3ce", "4406": "15___CATEGORICAL___nom_9___0286fee46", "4407": "15___CATEGORICAL___nom_9___0292f777c", "4408": "15___CATEGORICAL___nom_9___0294910e2", "4409": "15___CATEGORICAL___nom_9___029d3d7c6", "4410": "15___CATEGORICAL___nom_9___02a354a85", "4411": "15___CATEGORICAL___nom_9___02a5926e4", "4412": "15___CATEGORICAL___nom_9___02a70154c", "4413": "15___CATEGORICAL___nom_9___02a74a666", "4414": "15___CATEGORICAL___nom_9___02ad941b3", "4415": "15___CATEGORICAL___nom_9___02b60e27f", "4416": "15___CATEGORICAL___nom_9___02be599f4", "4417": "15___CATEGORICAL___nom_9___02d287fe4", "4418": "15___CATEGORICAL___nom_9___02d2f75bd", "4419": "15___CATEGORICAL___nom_9___02d4294d4", "4420": "15___CATEGORICAL___nom_9___02d810154", "4421": "15___CATEGORICAL___nom_9___02da97832", "4422": "15___CATEGORICAL___nom_9___02df1aefa", "4423": "15___CATEGORICAL___nom_9___02e15ec3e", "4424": "15___CATEGORICAL___nom_9___02e6c31e0", "4425": "15___CATEGORICAL___nom_9___02e8653bd", "4426": "15___CATEGORICAL___nom_9___02ea88539", "4427": "15___CATEGORICAL___nom_9___02ec4654d", "4428": "15___CATEGORICAL___nom_9___02f06c0e6", "4429": "15___CATEGORICAL___nom_9___02f33db89", "4430": "15___CATEGORICAL___nom_9___02f7adec6", "4431": "15___CATEGORICAL___nom_9___030289b52", "4432": "15___CATEGORICAL___nom_9___030b64a1a", "4433": "15___CATEGORICAL___nom_9___0316434ce", "4434": "15___CATEGORICAL___nom_9___031912fef", "4435": "15___CATEGORICAL___nom_9___032481184", "4436": "15___CATEGORICAL___nom_9___03289c74c", "4437": "15___CATEGORICAL___nom_9___032eb51e9", "4438": "15___CATEGORICAL___nom_9___033028c0b", "4439": "15___CATEGORICAL___nom_9___033708ad7", "4440": "15___CATEGORICAL___nom_9___0345a1c1c", "4441": "15___CATEGORICAL___nom_9___03499eb78", "4442": "15___CATEGORICAL___nom_9___034b68e78", "4443": "15___CATEGORICAL___nom_9___0350a3ad5", "4444": "15___CATEGORICAL___nom_9___0356598d0", "4445": "15___CATEGORICAL___nom_9___035cbb0ff", "4446": "15___CATEGORICAL___nom_9___035d11741", "4447": "15___CATEGORICAL___nom_9___0362532ce", "4448": "15___CATEGORICAL___nom_9___0362a237f", "4449": "15___CATEGORICAL___nom_9___0367416af", "4450": "15___CATEGORICAL___nom_9___036e49ad4", "4451": "15___CATEGORICAL___nom_9___03728ab88", "4452": "15___CATEGORICAL___nom_9___037e89a4e", "4453": "15___CATEGORICAL___nom_9___037f7c378", "4454": "15___CATEGORICAL___nom_9___03835b798", "4455": "15___CATEGORICAL___nom_9___0384904b6", "4456": "15___CATEGORICAL___nom_9___0386529bc", "4457": "15___CATEGORICAL___nom_9___03867e161", "4458": "15___CATEGORICAL___nom_9___038853515", "4459": "15___CATEGORICAL___nom_9___038980568", "4460": "15___CATEGORICAL___nom_9___038eee7d3", "4461": "15___CATEGORICAL___nom_9___0398278d5", "4462": "15___CATEGORICAL___nom_9___03a15edf5", "4463": "15___CATEGORICAL___nom_9___03a4c69c2", "4464": "15___CATEGORICAL___nom_9___03a9e4930", "4465": "15___CATEGORICAL___nom_9___03aa7b6ca", "4466": "15___CATEGORICAL___nom_9___03ad074d1", "4467": "15___CATEGORICAL___nom_9___03b394cbc", "4468": "15___CATEGORICAL___nom_9___03c389a25", "4469": "15___CATEGORICAL___nom_9___03c62e68b", "4470": "15___CATEGORICAL___nom_9___03c7cd4d4", "4471": "15___CATEGORICAL___nom_9___03c866ea6", "4472": "15___CATEGORICAL___nom_9___03cee213d", "4473": "15___CATEGORICAL___nom_9___03d9e4e0e", "4474": "15___CATEGORICAL___nom_9___03dae55ac", "4475": "15___CATEGORICAL___nom_9___03df49ad7", "4476": "15___CATEGORICAL___nom_9___03e01b921", "4477": "15___CATEGORICAL___nom_9___03eed85b1", "4478": "15___CATEGORICAL___nom_9___03f6bb514", "4479": "15___CATEGORICAL___nom_9___03fa7cc7e", "4480": "15___CATEGORICAL___nom_9___0405bf6ab", "4481": "15___CATEGORICAL___nom_9___04083a1da", "4482": "15___CATEGORICAL___nom_9___040877213", "4483": "15___CATEGORICAL___nom_9___0411ee4ef", "4484": "15___CATEGORICAL___nom_9___0416820d1", "4485": "15___CATEGORICAL___nom_9___0417dbfee", "4486": "15___CATEGORICAL___nom_9___0418c4b18", "4487": "15___CATEGORICAL___nom_9___0418cf469", "4488": "15___CATEGORICAL___nom_9___041c754a4", "4489": "15___CATEGORICAL___nom_9___041f7310a", "4490": "15___CATEGORICAL___nom_9___042accfa9", "4491": "15___CATEGORICAL___nom_9___042fc1c9e", "4492": "15___CATEGORICAL___nom_9___04307aa3f", "4493": "15___CATEGORICAL___nom_9___043a03805", "4494": "15___CATEGORICAL___nom_9___043fa2a75", "4495": "15___CATEGORICAL___nom_9___044e6d68e", "4496": "15___CATEGORICAL___nom_9___0463d326d", "4497": "15___CATEGORICAL___nom_9___04695adda", "4498": "15___CATEGORICAL___nom_9___046a3d517", "4499": "15___CATEGORICAL___nom_9___0479d08a3", "4500": "15___CATEGORICAL___nom_9___047aea303", "4501": "15___CATEGORICAL___nom_9___048256d2a", "4502": "15___CATEGORICAL___nom_9___04863aa8c", "4503": "15___CATEGORICAL___nom_9___04932eab8", "4504": "15___CATEGORICAL___nom_9___04958770f", "4505": "15___CATEGORICAL___nom_9___0496c2132", "4506": "15___CATEGORICAL___nom_9___049bd5a1f", "4507": "15___CATEGORICAL___nom_9___049c10c56", "4508": "15___CATEGORICAL___nom_9___04a804aa8", "4509": "15___CATEGORICAL___nom_9___04a891877", "4510": "15___CATEGORICAL___nom_9___04ab30d94", "4511": "15___CATEGORICAL___nom_9___04b1fae9e", "4512": "15___CATEGORICAL___nom_9___04b2b84ee", "4513": "15___CATEGORICAL___nom_9___04b7c50d7", "4514": "15___CATEGORICAL___nom_9___04b802e27", "4515": "15___CATEGORICAL___nom_9___04bbde70c", "4516": "15___CATEGORICAL___nom_9___04c172b11", "4517": "15___CATEGORICAL___nom_9___04c172eb5", "4518": "15___CATEGORICAL___nom_9___04c26a12e", "4519": "15___CATEGORICAL___nom_9___04c44a0d6", "4520": "15___CATEGORICAL___nom_9___04c67be19", "4521": "15___CATEGORICAL___nom_9___04d5dca14", "4522": "15___CATEGORICAL___nom_9___04d7c83bc", "4523": "15___CATEGORICAL___nom_9___04d7db72a", "4524": "15___CATEGORICAL___nom_9___04e0c4d58", "4525": "15___CATEGORICAL___nom_9___04e1420c1", "4526": "15___CATEGORICAL___nom_9___04eb3280f", "4527": "15___CATEGORICAL___nom_9___04ee2825d", "4528": "15___CATEGORICAL___nom_9___04f075bd8", "4529": "15___CATEGORICAL___nom_9___04f4e3d8e", "4530": "15___CATEGORICAL___nom_9___04f648e94", "4531": "15___CATEGORICAL___nom_9___050297a25", "4532": "15___CATEGORICAL___nom_9___050a290e9", "4533": "15___CATEGORICAL___nom_9___0511cf7c0", "4534": "15___CATEGORICAL___nom_9___051708b42", "4535": "15___CATEGORICAL___nom_9___051b841f5", "4536": "15___CATEGORICAL___nom_9___051c973b9", "4537": "15___CATEGORICAL___nom_9___052050c58", "4538": "15___CATEGORICAL___nom_9___0522165ad", "4539": "15___CATEGORICAL___nom_9___052a0236d", "4540": "15___CATEGORICAL___nom_9___053121e0d", "4541": "15___CATEGORICAL___nom_9___05373ec69", "4542": "15___CATEGORICAL___nom_9___054564da5", "4543": "15___CATEGORICAL___nom_9___054ba4e17", "4544": "15___CATEGORICAL___nom_9___054da5597", "4545": "15___CATEGORICAL___nom_9___055c648e2", "4546": "15___CATEGORICAL___nom_9___055db8e02", "4547": "15___CATEGORICAL___nom_9___056251a6d", "4548": "15___CATEGORICAL___nom_9___056a137e4", "4549": "15___CATEGORICAL___nom_9___056ce3179", "4550": "15___CATEGORICAL___nom_9___056e67424", "4551": "15___CATEGORICAL___nom_9___057b88cf5", "4552": "15___CATEGORICAL___nom_9___057c717bc", "4553": "15___CATEGORICAL___nom_9___05830a650", "4554": "15___CATEGORICAL___nom_9___05849ff93", "4555": "15___CATEGORICAL___nom_9___05857f342", "4556": "15___CATEGORICAL___nom_9___05874cfb5", "4557": "15___CATEGORICAL___nom_9___058a74c5f", "4558": "15___CATEGORICAL___nom_9___058a8df97", "4559": "15___CATEGORICAL___nom_9___058e89912", "4560": "15___CATEGORICAL___nom_9___059516e21", "4561": "15___CATEGORICAL___nom_9___05958b9a2", "4562": "15___CATEGORICAL___nom_9___05969f494", "4563": "15___CATEGORICAL___nom_9___0598a93b6", "4564": "15___CATEGORICAL___nom_9___05a501fab", "4565": "15___CATEGORICAL___nom_9___05ada08b4", "4566": "15___CATEGORICAL___nom_9___05b098230", "4567": "15___CATEGORICAL___nom_9___05b148284", "4568": "15___CATEGORICAL___nom_9___05b462481", "4569": "15___CATEGORICAL___nom_9___05be0a334", "4570": "15___CATEGORICAL___nom_9___05c3a6866", "4571": "15___CATEGORICAL___nom_9___05c4a9b47", "4572": "15___CATEGORICAL___nom_9___05c4ea3d4", "4573": "15___CATEGORICAL___nom_9___05d08b5ac", "4574": "15___CATEGORICAL___nom_9___05d18b22a", "4575": "15___CATEGORICAL___nom_9___05d8bb07f", "4576": "15___CATEGORICAL___nom_9___05dcbe1c3", "4577": "15___CATEGORICAL___nom_9___05e4c9f31", "4578": "15___CATEGORICAL___nom_9___05eb01ac7", "4579": "15___CATEGORICAL___nom_9___05fbcebcb", "4580": "15___CATEGORICAL___nom_9___0608f6bda", "4581": "15___CATEGORICAL___nom_9___060b11d2b", "4582": "15___CATEGORICAL___nom_9___061c14300", "4583": "15___CATEGORICAL___nom_9___0623cb068", "4584": "15___CATEGORICAL___nom_9___06247e1f9", "4585": "15___CATEGORICAL___nom_9___062f5b23d", "4586": "15___CATEGORICAL___nom_9___0632b9756", "4587": "15___CATEGORICAL___nom_9___0635d4719", "4588": "15___CATEGORICAL___nom_9___063934c4c", "4589": "15___CATEGORICAL___nom_9___063e99626", "4590": "15___CATEGORICAL___nom_9___063f46bf5", "4591": "15___CATEGORICAL___nom_9___06412b98f", "4592": "15___CATEGORICAL___nom_9___064484ac9", "4593": "15___CATEGORICAL___nom_9___0649d8cd1", "4594": "15___CATEGORICAL___nom_9___064e4ca7e", "4595": "15___CATEGORICAL___nom_9___06523e0a0", "4596": "15___CATEGORICAL___nom_9___0653533ab", "4597": "15___CATEGORICAL___nom_9___065c99bb8", "4598": "15___CATEGORICAL___nom_9___065e18e4d", "4599": "15___CATEGORICAL___nom_9___0669299aa", "4600": "15___CATEGORICAL___nom_9___067241cdd", "4601": "15___CATEGORICAL___nom_9___06730ace5", "4602": "15___CATEGORICAL___nom_9___06747f7d2", "4603": "15___CATEGORICAL___nom_9___067843290", "4604": "15___CATEGORICAL___nom_9___067d86412", "4605": "15___CATEGORICAL___nom_9___067dfcc5b", "4606": "15___CATEGORICAL___nom_9___06804b375", "4607": "15___CATEGORICAL___nom_9___068712dec", "4608": "15___CATEGORICAL___nom_9___06900a603", "4609": "15___CATEGORICAL___nom_9___069243563", "4610": "15___CATEGORICAL___nom_9___069b3715f", "4611": "15___CATEGORICAL___nom_9___069c52431", "4612": "15___CATEGORICAL___nom_9___06a464138", "4613": "15___CATEGORICAL___nom_9___06a4d58b2", "4614": "15___CATEGORICAL___nom_9___06a6bf03c", "4615": "15___CATEGORICAL___nom_9___06b155819", "4616": "15___CATEGORICAL___nom_9___06bbc1915", "4617": "15___CATEGORICAL___nom_9___06c3c5c41", "4618": "15___CATEGORICAL___nom_9___06c676f1f", "4619": "15___CATEGORICAL___nom_9___06d0c2908", "4620": "15___CATEGORICAL___nom_9___06d28b9ee", "4621": "15___CATEGORICAL___nom_9___06d738ea5", "4622": "15___CATEGORICAL___nom_9___06e14528a", "4623": "15___CATEGORICAL___nom_9___06e879dc6", "4624": "15___CATEGORICAL___nom_9___06ea0ece4", "4625": "15___CATEGORICAL___nom_9___06eb4ca11", "4626": "15___CATEGORICAL___nom_9___06ee45f4a", "4627": "15___CATEGORICAL___nom_9___06eee4b34", "4628": "15___CATEGORICAL___nom_9___06f692c86", "4629": "15___CATEGORICAL___nom_9___06f894c7d", "4630": "15___CATEGORICAL___nom_9___06fed64e8", "4631": "15___CATEGORICAL___nom_9___0705cecdd", "4632": "15___CATEGORICAL___nom_9___070a2aa28", "4633": "15___CATEGORICAL___nom_9___0720fd099", "4634": "15___CATEGORICAL___nom_9___0726b0a73", "4635": "15___CATEGORICAL___nom_9___072e2584d", "4636": "15___CATEGORICAL___nom_9___0737f9c20", "4637": "15___CATEGORICAL___nom_9___073db9420", "4638": "15___CATEGORICAL___nom_9___07417eab9", "4639": "15___CATEGORICAL___nom_9___074342760", "4640": "15___CATEGORICAL___nom_9___0748a7f0c", "4641": "15___CATEGORICAL___nom_9___074c0a9cb", "4642": "15___CATEGORICAL___nom_9___0754a3444", "4643": "15___CATEGORICAL___nom_9___0755ec00c", "4644": "15___CATEGORICAL___nom_9___075b8e680", "4645": "15___CATEGORICAL___nom_9___075da7d28", "4646": "15___CATEGORICAL___nom_9___075f72528", "4647": "15___CATEGORICAL___nom_9___0761b8b8e", "4648": "15___CATEGORICAL___nom_9___076591460", "4649": "15___CATEGORICAL___nom_9___07687c296", "4650": "15___CATEGORICAL___nom_9___076c03d92", "4651": "15___CATEGORICAL___nom_9___077593161", "4652": "15___CATEGORICAL___nom_9___0777bc7c3", "4653": "15___CATEGORICAL___nom_9___077e5a3e6", "4654": "15___CATEGORICAL___nom_9___0783ebdcb", "4655": "15___CATEGORICAL___nom_9___0784e2654", "4656": "15___CATEGORICAL___nom_9___07875e460", "4657": "15___CATEGORICAL___nom_9___07884162a", "4658": "15___CATEGORICAL___nom_9___078b95e6b", "4659": "15___CATEGORICAL___nom_9___078ed952a", "4660": "15___CATEGORICAL___nom_9___078fbf6e3", "4661": "15___CATEGORICAL___nom_9___079afe9b6", "4662": "15___CATEGORICAL___nom_9___07a079954", "4663": "15___CATEGORICAL___nom_9___07aa92c28", "4664": "15___CATEGORICAL___nom_9___07ac62fd7", "4665": "15___CATEGORICAL___nom_9___07b9e8a91", "4666": "15___CATEGORICAL___nom_9___07c7679d7", "4667": "15___CATEGORICAL___nom_9___07c8d093a", "4668": "15___CATEGORICAL___nom_9___07cb0e793", "4669": "15___CATEGORICAL___nom_9___07cba68da", "4670": "15___CATEGORICAL___nom_9___07d59457d", "4671": "15___CATEGORICAL___nom_9___07d6bf5e5", "4672": "15___CATEGORICAL___nom_9___07d7de108", "4673": "15___CATEGORICAL___nom_9___07db4d22e", "4674": "15___CATEGORICAL___nom_9___07e3abcbe", "4675": "15___CATEGORICAL___nom_9___07e539fcc", "4676": "15___CATEGORICAL___nom_9___07e544684", "4677": "15___CATEGORICAL___nom_9___07e955f7c", "4678": "15___CATEGORICAL___nom_9___07f02f371", "4679": "15___CATEGORICAL___nom_9___07f4df44c", "4680": "15___CATEGORICAL___nom_9___07fdc7172", "4681": "15___CATEGORICAL___nom_9___080a449e7", "4682": "15___CATEGORICAL___nom_9___0811bf117", "4683": "15___CATEGORICAL___nom_9___0811eb504", "4684": "15___CATEGORICAL___nom_9___0811ee359", "4685": "15___CATEGORICAL___nom_9___081596f83", "4686": "15___CATEGORICAL___nom_9___0815ddebe", "4687": "15___CATEGORICAL___nom_9___081b8be18", "4688": "15___CATEGORICAL___nom_9___081c66b6f", "4689": "15___CATEGORICAL___nom_9___08224a20b", "4690": "15___CATEGORICAL___nom_9___08238389a", "4691": "15___CATEGORICAL___nom_9___0824f64c5", "4692": "15___CATEGORICAL___nom_9___08292591c", "4693": "15___CATEGORICAL___nom_9___082bce619", "4694": "15___CATEGORICAL___nom_9___08369131e", "4695": "15___CATEGORICAL___nom_9___0838311eb", "4696": "15___CATEGORICAL___nom_9___0839ed70e", "4697": "15___CATEGORICAL___nom_9___083eae496", "4698": "15___CATEGORICAL___nom_9___0845855dc", "4699": "15___CATEGORICAL___nom_9___08473723b", "4700": "15___CATEGORICAL___nom_9___084858ee8", "4701": "15___CATEGORICAL___nom_9___084d25c53", "4702": "15___CATEGORICAL___nom_9___086012e6a", "4703": "15___CATEGORICAL___nom_9___086a8d37e", "4704": "15___CATEGORICAL___nom_9___086c1d744", "4705": "15___CATEGORICAL___nom_9___08713b715", "4706": "15___CATEGORICAL___nom_9___087598954", "4707": "15___CATEGORICAL___nom_9___087ccf730", "4708": "15___CATEGORICAL___nom_9___087db276a", "4709": "15___CATEGORICAL___nom_9___087e91efc", "4710": "15___CATEGORICAL___nom_9___087ebd7e7", "4711": "15___CATEGORICAL___nom_9___0883d83a1", "4712": "15___CATEGORICAL___nom_9___088638854", "4713": "15___CATEGORICAL___nom_9___0888a8e39", "4714": "15___CATEGORICAL___nom_9___088ab935e", "4715": "15___CATEGORICAL___nom_9___089b64855", "4716": "15___CATEGORICAL___nom_9___089d44238", "4717": "15___CATEGORICAL___nom_9___08b0256d8", "4718": "15___CATEGORICAL___nom_9___08c088c9f", "4719": "15___CATEGORICAL___nom_9___08c88f89a", "4720": "15___CATEGORICAL___nom_9___08ca61eea", "4721": "15___CATEGORICAL___nom_9___08cc3612a", "4722": "15___CATEGORICAL___nom_9___08cd593ad", "4723": "15___CATEGORICAL___nom_9___08d00ab50", "4724": "15___CATEGORICAL___nom_9___08d386939", "4725": "15___CATEGORICAL___nom_9___08da9897b", "4726": "15___CATEGORICAL___nom_9___08f1f310d", "4727": "15___CATEGORICAL___nom_9___08f310d61", "4728": "15___CATEGORICAL___nom_9___08f72f714", "4729": "15___CATEGORICAL___nom_9___08f9fd483", "4730": "15___CATEGORICAL___nom_9___0905c556c", "4731": "15___CATEGORICAL___nom_9___090fa95bf", "4732": "15___CATEGORICAL___nom_9___0911fa22f", "4733": "15___CATEGORICAL___nom_9___09139b935", "4734": "15___CATEGORICAL___nom_9___0915552a5", "4735": "15___CATEGORICAL___nom_9___091b124a6", "4736": "15___CATEGORICAL___nom_9___091ee7b1d", "4737": "15___CATEGORICAL___nom_9___0921eee77", "4738": "15___CATEGORICAL___nom_9___0924bd9ab", "4739": "15___CATEGORICAL___nom_9___0928dc6f1", "4740": "15___CATEGORICAL___nom_9___092f773bc", "4741": "15___CATEGORICAL___nom_9___0934fadaa", "4742": "15___CATEGORICAL___nom_9___093f5df0e", "4743": "15___CATEGORICAL___nom_9___0941670fa", "4744": "15___CATEGORICAL___nom_9___094d6d6a2", "4745": "15___CATEGORICAL___nom_9___096b36da0", "4746": "15___CATEGORICAL___nom_9___0970e26d6", "4747": "15___CATEGORICAL___nom_9___09814e809", "4748": "15___CATEGORICAL___nom_9___0984ab978", "4749": "15___CATEGORICAL___nom_9___098689d4e", "4750": "15___CATEGORICAL___nom_9___098dd10f4", "4751": "15___CATEGORICAL___nom_9___09b1e3836", "4752": "15___CATEGORICAL___nom_9___09b4f1e3d", "4753": "15___CATEGORICAL___nom_9___09b9271d0", "4754": "15___CATEGORICAL___nom_9___09c252d8b", "4755": "15___CATEGORICAL___nom_9___09c47ace7", "4756": "15___CATEGORICAL___nom_9___09c779d45", "4757": "15___CATEGORICAL___nom_9___09cb2d084", "4758": "15___CATEGORICAL___nom_9___09cc0b790", "4759": "15___CATEGORICAL___nom_9___09cd21cf7", "4760": "15___CATEGORICAL___nom_9___09ced9939", "4761": "15___CATEGORICAL___nom_9___09cf07ff1", "4762": "15___CATEGORICAL___nom_9___09d0eb44e", "4763": "15___CATEGORICAL___nom_9___09d4ddd51", "4764": "15___CATEGORICAL___nom_9___09dac82e2", "4765": "15___CATEGORICAL___nom_9___09dcde5af", "4766": "15___CATEGORICAL___nom_9___09e07c2af", "4767": "15___CATEGORICAL___nom_9___09e24566f", "4768": "15___CATEGORICAL___nom_9___09ee9ce29", "4769": "15___CATEGORICAL___nom_9___09f0f90de", "4770": "15___CATEGORICAL___nom_9___09f1162b9", "4771": "15___CATEGORICAL___nom_9___09f165444", "4772": "15___CATEGORICAL___nom_9___09f44bb42", "4773": "15___CATEGORICAL___nom_9___09f7a5a58", "4774": "15___CATEGORICAL___nom_9___09feacf2e", "4775": "15___CATEGORICAL___nom_9___0a05c6cdf", "4776": "15___CATEGORICAL___nom_9___0a12d89de", "4777": "15___CATEGORICAL___nom_9___0a1939dff", "4778": "15___CATEGORICAL___nom_9___0a1d259b0", "4779": "15___CATEGORICAL___nom_9___0a2069b5f", "4780": "15___CATEGORICAL___nom_9___0a262a51d", "4781": "15___CATEGORICAL___nom_9___0a29d2401", "4782": "15___CATEGORICAL___nom_9___0a2b17947", "4783": "15___CATEGORICAL___nom_9___0a37a7f53", "4784": "15___CATEGORICAL___nom_9___0a3cc5da7", "4785": "15___CATEGORICAL___nom_9___0a3f628c4", "4786": "15___CATEGORICAL___nom_9___0a40ebee2", "4787": "15___CATEGORICAL___nom_9___0a42d117d", "4788": "15___CATEGORICAL___nom_9___0a480b3a7", "4789": "15___CATEGORICAL___nom_9___0a4dfe1fc", "4790": "15___CATEGORICAL___nom_9___0a51a5952", "4791": "15___CATEGORICAL___nom_9___0a51ffa00", "4792": "15___CATEGORICAL___nom_9___0a57243df", "4793": "15___CATEGORICAL___nom_9___0a648cb73", "4794": "15___CATEGORICAL___nom_9___0a6f3cd3a", "4795": "15___CATEGORICAL___nom_9___0a74e31da", "4796": "15___CATEGORICAL___nom_9___0a76fafa5", "4797": "15___CATEGORICAL___nom_9___0a793c9dc", "4798": "15___CATEGORICAL___nom_9___0a7d91566", "4799": "15___CATEGORICAL___nom_9___0a8263a17", "4800": "15___CATEGORICAL___nom_9___0a86a8c3f", "4801": "15___CATEGORICAL___nom_9___0a8a5162d", "4802": "15___CATEGORICAL___nom_9___0a90e64ab", "4803": "15___CATEGORICAL___nom_9___0a967262c", "4804": "15___CATEGORICAL___nom_9___0a97b1c9f", "4805": "15___CATEGORICAL___nom_9___0a9b129e1", "4806": "15___CATEGORICAL___nom_9___0aa290a8c", "4807": "15___CATEGORICAL___nom_9___0aaab9506", "4808": "15___CATEGORICAL___nom_9___0aae8e794", "4809": "15___CATEGORICAL___nom_9___0ab98db42", "4810": "15___CATEGORICAL___nom_9___0abc0a0cb", "4811": "15___CATEGORICAL___nom_9___0ac07d0c0", "4812": "15___CATEGORICAL___nom_9___0acc0fc28", "4813": "15___CATEGORICAL___nom_9___0ad168bf5", "4814": "15___CATEGORICAL___nom_9___0ad8dd693", "4815": "15___CATEGORICAL___nom_9___0adf86322", "4816": "15___CATEGORICAL___nom_9___0af1a84b2", "4817": "15___CATEGORICAL___nom_9___0afc87050", "4818": "15___CATEGORICAL___nom_9___0b0561da6", "4819": "15___CATEGORICAL___nom_9___0b0d4ea7f", "4820": "15___CATEGORICAL___nom_9___0b1137ae3", "4821": "15___CATEGORICAL___nom_9___0b1b3c534", "4822": "15___CATEGORICAL___nom_9___0b1f1b301", "4823": "15___CATEGORICAL___nom_9___0b243e09e", "4824": "15___CATEGORICAL___nom_9___0b29c5ad9", "4825": "15___CATEGORICAL___nom_9___0b3397e07", "4826": "15___CATEGORICAL___nom_9___0b366a2ca", "4827": "15___CATEGORICAL___nom_9___0b371d5bc", "4828": "15___CATEGORICAL___nom_9___0b3c82c43", "4829": "15___CATEGORICAL___nom_9___0b3e67e6a", "4830": "15___CATEGORICAL___nom_9___0b418b464", "4831": "15___CATEGORICAL___nom_9___0b4359be2", "4832": "15___CATEGORICAL___nom_9___0b4a4f3f1", "4833": "15___CATEGORICAL___nom_9___0b4b2662b", "4834": "15___CATEGORICAL___nom_9___0b525577c", "4835": "15___CATEGORICAL___nom_9___0b565d5ef", "4836": "15___CATEGORICAL___nom_9___0b63ff6bc", "4837": "15___CATEGORICAL___nom_9___0b68e7675", "4838": "15___CATEGORICAL___nom_9___0b6a1ef1b", "4839": "15___CATEGORICAL___nom_9___0b73ce7fa", "4840": "15___CATEGORICAL___nom_9___0b7705692", "4841": "15___CATEGORICAL___nom_9___0b893e6f5", "4842": "15___CATEGORICAL___nom_9___0b89e4cfb", "4843": "15___CATEGORICAL___nom_9___0b93b668e", "4844": "15___CATEGORICAL___nom_9___0b963d746", "4845": "15___CATEGORICAL___nom_9___0bab97515", "4846": "15___CATEGORICAL___nom_9___0bb2de046", "4847": "15___CATEGORICAL___nom_9___0bb3dbcce", "4848": "15___CATEGORICAL___nom_9___0bb457e90", "4849": "15___CATEGORICAL___nom_9___0bb8445bd", "4850": "15___CATEGORICAL___nom_9___0bbcb44c8", "4851": "15___CATEGORICAL___nom_9___0bc2b7ce4", "4852": "15___CATEGORICAL___nom_9___0bc63b9f9", "4853": "15___CATEGORICAL___nom_9___0bc920d44", "4854": "15___CATEGORICAL___nom_9___0bcec7bb7", "4855": "15___CATEGORICAL___nom_9___0bd56f3f2", "4856": "15___CATEGORICAL___nom_9___0bd63776b", "4857": "15___CATEGORICAL___nom_9___0bd73e841", "4858": "15___CATEGORICAL___nom_9___0bdc0684a", "4859": "15___CATEGORICAL___nom_9___0bea11f8d", "4860": "15___CATEGORICAL___nom_9___0befdebba", "4861": "15___CATEGORICAL___nom_9___0bf076228", "4862": "15___CATEGORICAL___nom_9___0bfbe025b", "4863": "15___CATEGORICAL___nom_9___0c00367d9", "4864": "15___CATEGORICAL___nom_9___0c0568554", "4865": "15___CATEGORICAL___nom_9___0c068c2ab", "4866": "15___CATEGORICAL___nom_9___0c0bae2b3", "4867": "15___CATEGORICAL___nom_9___0c0bf2144", "4868": "15___CATEGORICAL___nom_9___0c0e48245", "4869": "15___CATEGORICAL___nom_9___0c10121a2", "4870": "15___CATEGORICAL___nom_9___0c124f538", "4871": "15___CATEGORICAL___nom_9___0c15f2d05", "4872": "15___CATEGORICAL___nom_9___0c1b04457", "4873": "15___CATEGORICAL___nom_9___0c2159ed0", "4874": "15___CATEGORICAL___nom_9___0c2648b65", "4875": "15___CATEGORICAL___nom_9___0c26c5bdf", "4876": "15___CATEGORICAL___nom_9___0c2b962c0", "4877": "15___CATEGORICAL___nom_9___0c2c102af", "4878": "15___CATEGORICAL___nom_9___0c4094bcb", "4879": "15___CATEGORICAL___nom_9___0c42080a6", "4880": "15___CATEGORICAL___nom_9___0c4af5e71", "4881": "15___CATEGORICAL___nom_9___0c5cd8980", "4882": "15___CATEGORICAL___nom_9___0c6760961", "4883": "15___CATEGORICAL___nom_9___0c6871768", "4884": "15___CATEGORICAL___nom_9___0c699ace8", "4885": "15___CATEGORICAL___nom_9___0c6f57880", "4886": "15___CATEGORICAL___nom_9___0c73812fb", "4887": "15___CATEGORICAL___nom_9___0c7a195d6", "4888": "15___CATEGORICAL___nom_9___0c824066d", "4889": "15___CATEGORICAL___nom_9___0c89de65d", "4890": "15___CATEGORICAL___nom_9___0c91a5a9c", "4891": "15___CATEGORICAL___nom_9___0c9db6b07", "4892": "15___CATEGORICAL___nom_9___0c9dd0087", "4893": "15___CATEGORICAL___nom_9___0ca33891e", "4894": "15___CATEGORICAL___nom_9___0cabcacf7", "4895": "15___CATEGORICAL___nom_9___0cac62b20", "4896": "15___CATEGORICAL___nom_9___0cb29224e", "4897": "15___CATEGORICAL___nom_9___0cbcbc080", "4898": "15___CATEGORICAL___nom_9___0cc9659d3", "4899": "15___CATEGORICAL___nom_9___0ccac7ef7", "4900": "15___CATEGORICAL___nom_9___0ce0ffade", "4901": "15___CATEGORICAL___nom_9___0cef322f9", "4902": "15___CATEGORICAL___nom_9___0cfc4acbd", "4903": "15___CATEGORICAL___nom_9___0d05b0cb4", "4904": "15___CATEGORICAL___nom_9___0d0788acd", "4905": "15___CATEGORICAL___nom_9___0d0f52250", "4906": "15___CATEGORICAL___nom_9___0d19d3282", "4907": "15___CATEGORICAL___nom_9___0d1e2fb9e", "4908": "15___CATEGORICAL___nom_9___0d1e694f7", "4909": "15___CATEGORICAL___nom_9___0d222792e", "4910": "15___CATEGORICAL___nom_9___0d248404d", "4911": "15___CATEGORICAL___nom_9___0d25a8be9", "4912": "15___CATEGORICAL___nom_9___0d3a354f5", "4913": "15___CATEGORICAL___nom_9___0d3b2fe9b", "4914": "15___CATEGORICAL___nom_9___0d3e3e42d", "4915": "15___CATEGORICAL___nom_9___0d4779f98", "4916": "15___CATEGORICAL___nom_9___0d483ea49", "4917": "15___CATEGORICAL___nom_9___0d4b35bd8", "4918": "15___CATEGORICAL___nom_9___0d5bccf44", "4919": "15___CATEGORICAL___nom_9___0d6d240e7", "4920": "15___CATEGORICAL___nom_9___0d6e4bf6b", "4921": "15___CATEGORICAL___nom_9___0d78fe699", "4922": "15___CATEGORICAL___nom_9___0d793626c", "4923": "15___CATEGORICAL___nom_9___0d835248b", "4924": "15___CATEGORICAL___nom_9___0d88e14ec", "4925": "15___CATEGORICAL___nom_9___0d8b094bd", "4926": "15___CATEGORICAL___nom_9___0da332bef", "4927": "15___CATEGORICAL___nom_9___0dad6a5cf", "4928": "15___CATEGORICAL___nom_9___0dba18401", "4929": "15___CATEGORICAL___nom_9___0dc2d6a91", "4930": "15___CATEGORICAL___nom_9___0dc59ddae", "4931": "15___CATEGORICAL___nom_9___0dc8be062", "4932": "15___CATEGORICAL___nom_9___0dd763976", "4933": "15___CATEGORICAL___nom_9___0de2ed0f8", "4934": "15___CATEGORICAL___nom_9___0de5a27c0", "4935": "15___CATEGORICAL___nom_9___0de86f45a", "4936": "15___CATEGORICAL___nom_9___0df0be5ef", "4937": "15___CATEGORICAL___nom_9___0df689570", "4938": "15___CATEGORICAL___nom_9___0dfe505ff", "4939": "15___CATEGORICAL___nom_9___0e0577160", "4940": "15___CATEGORICAL___nom_9___0e0854c98", "4941": "15___CATEGORICAL___nom_9___0e15d1e90", "4942": "15___CATEGORICAL___nom_9___0e1adf01d", "4943": "15___CATEGORICAL___nom_9___0e27e5cc4", "4944": "15___CATEGORICAL___nom_9___0e2bfc354", "4945": "15___CATEGORICAL___nom_9___0e2c463ed", "4946": "15___CATEGORICAL___nom_9___0e2f9f6d5", "4947": "15___CATEGORICAL___nom_9___0e326a150", "4948": "15___CATEGORICAL___nom_9___0e3989d17", "4949": "15___CATEGORICAL___nom_9___0e3a06c27", "4950": "15___CATEGORICAL___nom_9___0e4f15505", "4951": "15___CATEGORICAL___nom_9___0e533f469", "4952": "15___CATEGORICAL___nom_9___0e5b0c429", "4953": "15___CATEGORICAL___nom_9___0e5b572f6", "4954": "15___CATEGORICAL___nom_9___0e74dd54a", "4955": "15___CATEGORICAL___nom_9___0e7593219", "4956": "15___CATEGORICAL___nom_9___0e81e50c2", "4957": "15___CATEGORICAL___nom_9___0e82e89f9", "4958": "15___CATEGORICAL___nom_9___0e83be8b7", "4959": "15___CATEGORICAL___nom_9___0e85ebce3", "4960": "15___CATEGORICAL___nom_9___0e96cbac0", "4961": "15___CATEGORICAL___nom_9___0e97458a1", "4962": "15___CATEGORICAL___nom_9___0e9a0ce6e", "4963": "15___CATEGORICAL___nom_9___0ea1c6e92", "4964": "15___CATEGORICAL___nom_9___0ea818904", "4965": "15___CATEGORICAL___nom_9___0eb3b944c", "4966": "15___CATEGORICAL___nom_9___0eb4f3202", "4967": "15___CATEGORICAL___nom_9___0ec0b49f3", "4968": "15___CATEGORICAL___nom_9___0ece7a511", "4969": "15___CATEGORICAL___nom_9___0ed2294ed", "4970": "15___CATEGORICAL___nom_9___0ee2ecfd6", "4971": "15___CATEGORICAL___nom_9___0ee58aec7", "4972": "15___CATEGORICAL___nom_9___0ee5ddcbf", "4973": "15___CATEGORICAL___nom_9___0eeab6aa2", "4974": "15___CATEGORICAL___nom_9___0ef05755e", "4975": "15___CATEGORICAL___nom_9___0ef390a1d", "4976": "15___CATEGORICAL___nom_9___0ef512e33", "4977": "15___CATEGORICAL___nom_9___0ef52346d", "4978": "15___CATEGORICAL___nom_9___0efdb16c0", "4979": "15___CATEGORICAL___nom_9___0effe609c", "4980": "15___CATEGORICAL___nom_9___0f0440d09", "4981": "15___CATEGORICAL___nom_9___0f077b8e3", "4982": "15___CATEGORICAL___nom_9___0f0b6abef", "4983": "15___CATEGORICAL___nom_9___0f0c41574", "4984": "15___CATEGORICAL___nom_9___0f1e94201", "4985": "15___CATEGORICAL___nom_9___0f254ec54", "4986": "15___CATEGORICAL___nom_9___0f27d62e5", "4987": "15___CATEGORICAL___nom_9___0f2eda6a2", "4988": "15___CATEGORICAL___nom_9___0f35ae04a", "4989": "15___CATEGORICAL___nom_9___0f3bde299", "4990": "15___CATEGORICAL___nom_9___0f3f023ca", "4991": "15___CATEGORICAL___nom_9___0f45e3727", "4992": "15___CATEGORICAL___nom_9___0f47af64a", "4993": "15___CATEGORICAL___nom_9___0f48b44d0", "4994": "15___CATEGORICAL___nom_9___0f4e4883a", "4995": "15___CATEGORICAL___nom_9___0f526aa70", "4996": "15___CATEGORICAL___nom_9___0f5c14cb7", "4997": "15___CATEGORICAL___nom_9___0f60cf50c", "4998": "15___CATEGORICAL___nom_9___0f6c72450", "4999": "15___CATEGORICAL___nom_9___0f6d37a47", "5000": "15___CATEGORICAL___nom_9___0f75f8eaa", "5001": "15___CATEGORICAL___nom_9___0f76b2114", "5002": "15___CATEGORICAL___nom_9___0f7e27d1d", "5003": "15___CATEGORICAL___nom_9___0f8bb0635", "5004": "15___CATEGORICAL___nom_9___0f9340129", "5005": "15___CATEGORICAL___nom_9___0f93c9868", "5006": "15___CATEGORICAL___nom_9___0f9b522fd", "5007": "15___CATEGORICAL___nom_9___0f9c0a5cc", "5008": "15___CATEGORICAL___nom_9___0fac76d03", "5009": "15___CATEGORICAL___nom_9___0fadd9f3a", "5010": "15___CATEGORICAL___nom_9___0fbc05f0c", "5011": "15___CATEGORICAL___nom_9___0fbeffd05", "5012": "15___CATEGORICAL___nom_9___0fc6acae3", "5013": "15___CATEGORICAL___nom_9___0fcdf3f13", "5014": "15___CATEGORICAL___nom_9___0fd2c08ad", "5015": "15___CATEGORICAL___nom_9___0fd36eb2b", "5016": "15___CATEGORICAL___nom_9___0fe07afb2", "5017": "15___CATEGORICAL___nom_9___0fe1e0e78", "5018": "15___CATEGORICAL___nom_9___0fe95661b", "5019": "15___CATEGORICAL___nom_9___0fefb5c82", "5020": "15___CATEGORICAL___nom_9___0ff0b84a9", "5021": "15___CATEGORICAL___nom_9___0ff2dfdb1", "5022": "15___CATEGORICAL___nom_9___0ff6679d7", "5023": "15___CATEGORICAL___nom_9___10095cd60", "5024": "15___CATEGORICAL___nom_9___100d82fa4", "5025": "15___CATEGORICAL___nom_9___101ba5800", "5026": "15___CATEGORICAL___nom_9___102472d43", "5027": "15___CATEGORICAL___nom_9___1025d783e", "5028": "15___CATEGORICAL___nom_9___102da8ca3", "5029": "15___CATEGORICAL___nom_9___103df4960", "5030": "15___CATEGORICAL___nom_9___103f52530", "5031": "15___CATEGORICAL___nom_9___104347ca7", "5032": "15___CATEGORICAL___nom_9___10487be9d", "5033": "15___CATEGORICAL___nom_9___104baaac1", "5034": "15___CATEGORICAL___nom_9___104d16700", "5035": "15___CATEGORICAL___nom_9___1053d7851", "5036": "15___CATEGORICAL___nom_9___1057ed513", "5037": "15___CATEGORICAL___nom_9___105d262c6", "5038": "15___CATEGORICAL___nom_9___10645a782", "5039": "15___CATEGORICAL___nom_9___1068705ec", "5040": "15___CATEGORICAL___nom_9___106c02bae", "5041": "15___CATEGORICAL___nom_9___1078e2a24", "5042": "15___CATEGORICAL___nom_9___107b47e6b", "5043": "15___CATEGORICAL___nom_9___107d0311d", "5044": "15___CATEGORICAL___nom_9___107d801cb", "5045": "15___CATEGORICAL___nom_9___107fb3107", "5046": "15___CATEGORICAL___nom_9___10886a54f", "5047": "15___CATEGORICAL___nom_9___109b2f305", "5048": "15___CATEGORICAL___nom_9___109cc0e4a", "5049": "15___CATEGORICAL___nom_9___109fa9f16", "5050": "15___CATEGORICAL___nom_9___10a323c36", "5051": "15___CATEGORICAL___nom_9___10a3ec856", "5052": "15___CATEGORICAL___nom_9___10a54bd13", "5053": "15___CATEGORICAL___nom_9___10a8768fc", "5054": "15___CATEGORICAL___nom_9___10aed4b9a", "5055": "15___CATEGORICAL___nom_9___10af4bab0", "5056": "15___CATEGORICAL___nom_9___10b0a1c68", "5057": "15___CATEGORICAL___nom_9___10b9ff6d1", "5058": "15___CATEGORICAL___nom_9___10c2549d3", "5059": "15___CATEGORICAL___nom_9___10d331f0e", "5060": "15___CATEGORICAL___nom_9___10d37b010", "5061": "15___CATEGORICAL___nom_9___10d8724f6", "5062": "15___CATEGORICAL___nom_9___10e5c0cd5", "5063": "15___CATEGORICAL___nom_9___10f570eea", "5064": "15___CATEGORICAL___nom_9___10f649126", "5065": "15___CATEGORICAL___nom_9___10fe5b960", "5066": "15___CATEGORICAL___nom_9___110416852", "5067": "15___CATEGORICAL___nom_9___11055db18", "5068": "15___CATEGORICAL___nom_9___110fb5f9e", "5069": "15___CATEGORICAL___nom_9___1110e7e8e", "5070": "15___CATEGORICAL___nom_9___1112c9773", "5071": "15___CATEGORICAL___nom_9___11207d355", "5072": "15___CATEGORICAL___nom_9___112422329", "5073": "15___CATEGORICAL___nom_9___112ae5e2c", "5074": "15___CATEGORICAL___nom_9___112e0e696", "5075": "15___CATEGORICAL___nom_9___112e545cc", "5076": "15___CATEGORICAL___nom_9___112e932d6", "5077": "15___CATEGORICAL___nom_9___1131c0d77", "5078": "15___CATEGORICAL___nom_9___1137277ad", "5079": "15___CATEGORICAL___nom_9___113d887c2", "5080": "15___CATEGORICAL___nom_9___1140acb34", "5081": "15___CATEGORICAL___nom_9___1142f4506", "5082": "15___CATEGORICAL___nom_9___114597dd2", "5083": "15___CATEGORICAL___nom_9___114c90276", "5084": "15___CATEGORICAL___nom_9___114e1ef3b", "5085": "15___CATEGORICAL___nom_9___11549437a", "5086": "15___CATEGORICAL___nom_9___115681aef", "5087": "15___CATEGORICAL___nom_9___1160fef54", "5088": "15___CATEGORICAL___nom_9___116388232", "5089": "15___CATEGORICAL___nom_9___116920871", "5090": "15___CATEGORICAL___nom_9___116944fcd", "5091": "15___CATEGORICAL___nom_9___117c4504b", "5092": "15___CATEGORICAL___nom_9___118b609f6", "5093": "15___CATEGORICAL___nom_9___118e5fe71", "5094": "15___CATEGORICAL___nom_9___11902b618", "5095": "15___CATEGORICAL___nom_9___11981470f", "5096": "15___CATEGORICAL___nom_9___119f5c476", "5097": "15___CATEGORICAL___nom_9___11a2383e0", "5098": "15___CATEGORICAL___nom_9___11a85c8a8", "5099": "15___CATEGORICAL___nom_9___11adfe1c6", "5100": "15___CATEGORICAL___nom_9___11af30f14", "5101": "15___CATEGORICAL___nom_9___11c4738cf", "5102": "15___CATEGORICAL___nom_9___11c6c1cb5", "5103": "15___CATEGORICAL___nom_9___11c6c8329", "5104": "15___CATEGORICAL___nom_9___11ca62cb0", "5105": "15___CATEGORICAL___nom_9___11d17af63", "5106": "15___CATEGORICAL___nom_9___11d4dd9f8", "5107": "15___CATEGORICAL___nom_9___11da202aa", "5108": "15___CATEGORICAL___nom_9___11db139be", "5109": "15___CATEGORICAL___nom_9___11dc344c3", "5110": "15___CATEGORICAL___nom_9___11dcec3f1", "5111": "15___CATEGORICAL___nom_9___11e6d1139", "5112": "15___CATEGORICAL___nom_9___11f08c438", "5113": "15___CATEGORICAL___nom_9___11f1e8348", "5114": "15___CATEGORICAL___nom_9___11f39ea62", "5115": "15___CATEGORICAL___nom_9___11fa2494e", "5116": "15___CATEGORICAL___nom_9___120c90343", "5117": "15___CATEGORICAL___nom_9___121048f49", "5118": "15___CATEGORICAL___nom_9___1210f7cfa", "5119": "15___CATEGORICAL___nom_9___1217f7f6c", "5120": "15___CATEGORICAL___nom_9___1221895b4", "5121": "15___CATEGORICAL___nom_9___1227d29f3", "5122": "15___CATEGORICAL___nom_9___1232bfa9c", "5123": "15___CATEGORICAL___nom_9___12344ea13", "5124": "15___CATEGORICAL___nom_9___124030717", "5125": "15___CATEGORICAL___nom_9___124170850", "5126": "15___CATEGORICAL___nom_9___1245bbc5b", "5127": "15___CATEGORICAL___nom_9___124c478cb", "5128": "15___CATEGORICAL___nom_9___1253f9028", "5129": "15___CATEGORICAL___nom_9___125503d28", "5130": "15___CATEGORICAL___nom_9___1256b598a", "5131": "15___CATEGORICAL___nom_9___1257c0a4d", "5132": "15___CATEGORICAL___nom_9___12634b6fd", "5133": "15___CATEGORICAL___nom_9___126987d4c", "5134": "15___CATEGORICAL___nom_9___12702fc71", "5135": "15___CATEGORICAL___nom_9___12730274c", "5136": "15___CATEGORICAL___nom_9___1277406e1", "5137": "15___CATEGORICAL___nom_9___1284401d6", "5138": "15___CATEGORICAL___nom_9___128a09aa1", "5139": "15___CATEGORICAL___nom_9___129117c8c", "5140": "15___CATEGORICAL___nom_9___12954a7ab", "5141": "15___CATEGORICAL___nom_9___129d33186", "5142": "15___CATEGORICAL___nom_9___12a005152", "5143": "15___CATEGORICAL___nom_9___12ac6f429", "5144": "15___CATEGORICAL___nom_9___12b054aa2", "5145": "15___CATEGORICAL___nom_9___12b3005dc", "5146": "15___CATEGORICAL___nom_9___12b59195a", "5147": "15___CATEGORICAL___nom_9___12b876417", "5148": "15___CATEGORICAL___nom_9___12bbb1715", "5149": "15___CATEGORICAL___nom_9___12c25d486", "5150": "15___CATEGORICAL___nom_9___12c27b23d", "5151": "15___CATEGORICAL___nom_9___12c374a4b", "5152": "15___CATEGORICAL___nom_9___12c6d5150", "5153": "15___CATEGORICAL___nom_9___12cf7c2ee", "5154": "15___CATEGORICAL___nom_9___12cfaf461", "5155": "15___CATEGORICAL___nom_9___12d093e4e", "5156": "15___CATEGORICAL___nom_9___12d7483ff", "5157": "15___CATEGORICAL___nom_9___12d88b57a", "5158": "15___CATEGORICAL___nom_9___12d8e2b86", "5159": "15___CATEGORICAL___nom_9___12d93f26f", "5160": "15___CATEGORICAL___nom_9___12de40499", "5161": "15___CATEGORICAL___nom_9___12e5e1445", "5162": "15___CATEGORICAL___nom_9___12e99547f", "5163": "15___CATEGORICAL___nom_9___12f3aea46", "5164": "15___CATEGORICAL___nom_9___12fcb210b", "5165": "15___CATEGORICAL___nom_9___130161d9a", "5166": "15___CATEGORICAL___nom_9___130481d28", "5167": "15___CATEGORICAL___nom_9___130908251", "5168": "15___CATEGORICAL___nom_9___130912af0", "5169": "15___CATEGORICAL___nom_9___1310c35dd", "5170": "15___CATEGORICAL___nom_9___13134aab6", "5171": "15___CATEGORICAL___nom_9___1313954b3", "5172": "15___CATEGORICAL___nom_9___13163b51a", "5173": "15___CATEGORICAL___nom_9___131738da9", "5174": "15___CATEGORICAL___nom_9___1319ee7b8", "5175": "15___CATEGORICAL___nom_9___131d5ec71", "5176": "15___CATEGORICAL___nom_9___13264c74d", "5177": "15___CATEGORICAL___nom_9___132d01b99", "5178": "15___CATEGORICAL___nom_9___132f249d8", "5179": "15___CATEGORICAL___nom_9___133946196", "5180": "15___CATEGORICAL___nom_9___133d2331b", "5181": "15___CATEGORICAL___nom_9___133e12386", "5182": "15___CATEGORICAL___nom_9___1341fa6e3", "5183": "15___CATEGORICAL___nom_9___134287f78", "5184": "15___CATEGORICAL___nom_9___13452503a", "5185": "15___CATEGORICAL___nom_9___13459c4f6", "5186": "15___CATEGORICAL___nom_9___1345d015e", "5187": "15___CATEGORICAL___nom_9___134ce8919", "5188": "15___CATEGORICAL___nom_9___134da4e1a", "5189": "15___CATEGORICAL___nom_9___1351a37e6", "5190": "15___CATEGORICAL___nom_9___135a656ca", "5191": "15___CATEGORICAL___nom_9___135ec3897", "5192": "15___CATEGORICAL___nom_9___1365bfbac", "5193": "15___CATEGORICAL___nom_9___1366d47de", "5194": "15___CATEGORICAL___nom_9___13672bbe4", "5195": "15___CATEGORICAL___nom_9___136bab484", "5196": "15___CATEGORICAL___nom_9___136e7d829", "5197": "15___CATEGORICAL___nom_9___137136061", "5198": "15___CATEGORICAL___nom_9___137608373", "5199": "15___CATEGORICAL___nom_9___137eb10dd", "5200": "15___CATEGORICAL___nom_9___137f10489", "5201": "15___CATEGORICAL___nom_9___1385082a5", "5202": "15___CATEGORICAL___nom_9___138ddeb0f", "5203": "15___CATEGORICAL___nom_9___138df6bc6", "5204": "15___CATEGORICAL___nom_9___13914a8ad", "5205": "15___CATEGORICAL___nom_9___1393b8aa9", "5206": "15___CATEGORICAL___nom_9___13949b363", "5207": "15___CATEGORICAL___nom_9___1399865b2", "5208": "15___CATEGORICAL___nom_9___139f842a2", "5209": "15___CATEGORICAL___nom_9___13a21ba15", "5210": "15___CATEGORICAL___nom_9___13a31c68d", "5211": "15___CATEGORICAL___nom_9___13a38b951", "5212": "15___CATEGORICAL___nom_9___13a69f18f", "5213": "15___CATEGORICAL___nom_9___13aa64095", "5214": "15___CATEGORICAL___nom_9___13b01c814", "5215": "15___CATEGORICAL___nom_9___13bba7b68", "5216": "15___CATEGORICAL___nom_9___13be3cc34", "5217": "15___CATEGORICAL___nom_9___13c32e042", "5218": "15___CATEGORICAL___nom_9___13c8c0274", "5219": "15___CATEGORICAL___nom_9___13cf12a13", "5220": "15___CATEGORICAL___nom_9___13d43b533", "5221": "15___CATEGORICAL___nom_9___13d5e4b37", "5222": "15___CATEGORICAL___nom_9___13e16f4e5", "5223": "15___CATEGORICAL___nom_9___13e7f67a6", "5224": "15___CATEGORICAL___nom_9___13ef51e93", "5225": "15___CATEGORICAL___nom_9___13f32af3b", "5226": "15___CATEGORICAL___nom_9___13fef0cf5", "5227": "15___CATEGORICAL___nom_9___14024a750", "5228": "15___CATEGORICAL___nom_9___1403bdf11", "5229": "15___CATEGORICAL___nom_9___140493228", "5230": "15___CATEGORICAL___nom_9___1406dff6d", "5231": "15___CATEGORICAL___nom_9___140749808", "5232": "15___CATEGORICAL___nom_9___1408beed2", "5233": "15___CATEGORICAL___nom_9___1408c28bd", "5234": "15___CATEGORICAL___nom_9___140da9ed4", "5235": "15___CATEGORICAL___nom_9___140f7f776", "5236": "15___CATEGORICAL___nom_9___1415f4b88", "5237": "15___CATEGORICAL___nom_9___1417ed6e3", "5238": "15___CATEGORICAL___nom_9___141e405ed", "5239": "15___CATEGORICAL___nom_9___143022478", "5240": "15___CATEGORICAL___nom_9___143c129a5", "5241": "15___CATEGORICAL___nom_9___1466b6a89", "5242": "15___CATEGORICAL___nom_9___1469863b4", "5243": "15___CATEGORICAL___nom_9___146fde688", "5244": "15___CATEGORICAL___nom_9___14716668a", "5245": "15___CATEGORICAL___nom_9___147443465", "5246": "15___CATEGORICAL___nom_9___14868bec7", "5247": "15___CATEGORICAL___nom_9___148e4f2ca", "5248": "15___CATEGORICAL___nom_9___14904115d", "5249": "15___CATEGORICAL___nom_9___1496091af", "5250": "15___CATEGORICAL___nom_9___14a1fb02e", "5251": "15___CATEGORICAL___nom_9___14a8497c2", "5252": "15___CATEGORICAL___nom_9___14aa19071", "5253": "15___CATEGORICAL___nom_9___14b414a41", "5254": "15___CATEGORICAL___nom_9___14b6937a1", "5255": "15___CATEGORICAL___nom_9___14ba25a65", "5256": "15___CATEGORICAL___nom_9___14c459df1", "5257": "15___CATEGORICAL___nom_9___14c8e0d12", "5258": "15___CATEGORICAL___nom_9___14ca3b253", "5259": "15___CATEGORICAL___nom_9___14cb9c02d", "5260": "15___CATEGORICAL___nom_9___14cf6b6a9", "5261": "15___CATEGORICAL___nom_9___14cfa12df", "5262": "15___CATEGORICAL___nom_9___14cfb9928", "5263": "15___CATEGORICAL___nom_9___14d4d280c", "5264": "15___CATEGORICAL___nom_9___14d56c88e", "5265": "15___CATEGORICAL___nom_9___14da36744", "5266": "15___CATEGORICAL___nom_9___14e3cb36f", "5267": "15___CATEGORICAL___nom_9___14f4e5222", "5268": "15___CATEGORICAL___nom_9___1504151a2", "5269": "15___CATEGORICAL___nom_9___150b71a03", "5270": "15___CATEGORICAL___nom_9___150e1ab2e", "5271": "15___CATEGORICAL___nom_9___150f16fb5", "5272": "15___CATEGORICAL___nom_9___151181567", "5273": "15___CATEGORICAL___nom_9___151bee6ed", "5274": "15___CATEGORICAL___nom_9___151dbb3c9", "5275": "15___CATEGORICAL___nom_9___1522f40a8", "5276": "15___CATEGORICAL___nom_9___1523dac0d", "5277": "15___CATEGORICAL___nom_9___152590a1f", "5278": "15___CATEGORICAL___nom_9___1525de423", "5279": "15___CATEGORICAL___nom_9___15267588b", "5280": "15___CATEGORICAL___nom_9___15292d3d7", "5281": "15___CATEGORICAL___nom_9___153c87183", "5282": "15___CATEGORICAL___nom_9___153e91279", "5283": "15___CATEGORICAL___nom_9___153fd4d2e", "5284": "15___CATEGORICAL___nom_9___1547b1843", "5285": "15___CATEGORICAL___nom_9___154a61c60", "5286": "15___CATEGORICAL___nom_9___154d76ff2", "5287": "15___CATEGORICAL___nom_9___1550e247b", "5288": "15___CATEGORICAL___nom_9___15585db79", "5289": "15___CATEGORICAL___nom_9___155fbae33", "5290": "15___CATEGORICAL___nom_9___156069242", "5291": "15___CATEGORICAL___nom_9___1562fa210", "5292": "15___CATEGORICAL___nom_9___1562ffc8d", "5293": "15___CATEGORICAL___nom_9___15719752a", "5294": "15___CATEGORICAL___nom_9___157316998", "5295": "15___CATEGORICAL___nom_9___157a0304e", "5296": "15___CATEGORICAL___nom_9___1582c0806", "5297": "15___CATEGORICAL___nom_9___1586b39a2", "5298": "15___CATEGORICAL___nom_9___158740964", "5299": "15___CATEGORICAL___nom_9___158cd82f0", "5300": "15___CATEGORICAL___nom_9___1596c8c25", "5301": "15___CATEGORICAL___nom_9___1596f09d7", "5302": "15___CATEGORICAL___nom_9___15a194917", "5303": "15___CATEGORICAL___nom_9___15a2512c4", "5304": "15___CATEGORICAL___nom_9___15a3201e9", "5305": "15___CATEGORICAL___nom_9___15a68a077", "5306": "15___CATEGORICAL___nom_9___15a905cab", "5307": "15___CATEGORICAL___nom_9___15b864395", "5308": "15___CATEGORICAL___nom_9___15b9d16ba", "5309": "15___CATEGORICAL___nom_9___15b9f23e2", "5310": "15___CATEGORICAL___nom_9___15c958aa1", "5311": "15___CATEGORICAL___nom_9___15d42f1b1", "5312": "15___CATEGORICAL___nom_9___15de8f661", "5313": "15___CATEGORICAL___nom_9___15f30bae3", "5314": "15___CATEGORICAL___nom_9___15f472ad7", "5315": "15___CATEGORICAL___nom_9___15f97f3a8", "5316": "15___CATEGORICAL___nom_9___16033bfa2", "5317": "15___CATEGORICAL___nom_9___1603c2ce7", "5318": "15___CATEGORICAL___nom_9___1604d787a", "5319": "15___CATEGORICAL___nom_9___16056a3a9", "5320": "15___CATEGORICAL___nom_9___1608fd7e3", "5321": "15___CATEGORICAL___nom_9___160e47e8e", "5322": "15___CATEGORICAL___nom_9___161418303", "5323": "15___CATEGORICAL___nom_9___161490de0", "5324": "15___CATEGORICAL___nom_9___161630c8d", "5325": "15___CATEGORICAL___nom_9___1617f3103", "5326": "15___CATEGORICAL___nom_9___16243c191", "5327": "15___CATEGORICAL___nom_9___1625ee58d", "5328": "15___CATEGORICAL___nom_9___1629104a7", "5329": "15___CATEGORICAL___nom_9___163c185a9", "5330": "15___CATEGORICAL___nom_9___163c5ff83", "5331": "15___CATEGORICAL___nom_9___163cb5d26", "5332": "15___CATEGORICAL___nom_9___163cc60fa", "5333": "15___CATEGORICAL___nom_9___164241231", "5334": "15___CATEGORICAL___nom_9___1643e1c14", "5335": "15___CATEGORICAL___nom_9___164844815", "5336": "15___CATEGORICAL___nom_9___1655765fd", "5337": "15___CATEGORICAL___nom_9___1655aafcc", "5338": "15___CATEGORICAL___nom_9___1658c6564", "5339": "15___CATEGORICAL___nom_9___165baf15a", "5340": "15___CATEGORICAL___nom_9___1674b11ae", "5341": "15___CATEGORICAL___nom_9___1676392aa", "5342": "15___CATEGORICAL___nom_9___16767a088", "5343": "15___CATEGORICAL___nom_9___167a433e1", "5344": "15___CATEGORICAL___nom_9___167bbfac0", "5345": "15___CATEGORICAL___nom_9___16864fc71", "5346": "15___CATEGORICAL___nom_9___1689015a8", "5347": "15___CATEGORICAL___nom_9___16933a6ac", "5348": "15___CATEGORICAL___nom_9___169f3d8af", "5349": "15___CATEGORICAL___nom_9___16a2770de", "5350": "15___CATEGORICAL___nom_9___16a6d0ef0", "5351": "15___CATEGORICAL___nom_9___16b1878a8", "5352": "15___CATEGORICAL___nom_9___16b891547", "5353": "15___CATEGORICAL___nom_9___16bc82aae", "5354": "15___CATEGORICAL___nom_9___16bccba21", "5355": "15___CATEGORICAL___nom_9___16cc146d4", "5356": "15___CATEGORICAL___nom_9___16cc14779", "5357": "15___CATEGORICAL___nom_9___16d233754", "5358": "15___CATEGORICAL___nom_9___16d27efd5", "5359": "15___CATEGORICAL___nom_9___16d58d852", "5360": "15___CATEGORICAL___nom_9___16db65637", "5361": "15___CATEGORICAL___nom_9___16e3d7e4d", "5362": "15___CATEGORICAL___nom_9___16e400afa", "5363": "15___CATEGORICAL___nom_9___16e6dfb96", "5364": "15___CATEGORICAL___nom_9___16eb8ae07", "5365": "15___CATEGORICAL___nom_9___16f9d53b9", "5366": "15___CATEGORICAL___nom_9___17061cc45", "5367": "15___CATEGORICAL___nom_9___1709da990", "5368": "15___CATEGORICAL___nom_9___1716d6fbe", "5369": "15___CATEGORICAL___nom_9___1719b6967", "5370": "15___CATEGORICAL___nom_9___171cf00f5", "5371": "15___CATEGORICAL___nom_9___171e51f8e", "5372": "15___CATEGORICAL___nom_9___171e78c8b", "5373": "15___CATEGORICAL___nom_9___17285d2b3", "5374": "15___CATEGORICAL___nom_9___172924208", "5375": "15___CATEGORICAL___nom_9___172968f29", "5376": "15___CATEGORICAL___nom_9___172b6be8a", "5377": "15___CATEGORICAL___nom_9___17338bf46", "5378": "15___CATEGORICAL___nom_9___173d2d455", "5379": "15___CATEGORICAL___nom_9___173e3661e", "5380": "15___CATEGORICAL___nom_9___173fc116c", "5381": "15___CATEGORICAL___nom_9___1749a2cd9", "5382": "15___CATEGORICAL___nom_9___1752c9fef", "5383": "15___CATEGORICAL___nom_9___17577e4da", "5384": "15___CATEGORICAL___nom_9___1757f15f1", "5385": "15___CATEGORICAL___nom_9___175b191a1", "5386": "15___CATEGORICAL___nom_9___1767a1cc1", "5387": "15___CATEGORICAL___nom_9___176896408", "5388": "15___CATEGORICAL___nom_9___177da058d", "5389": "15___CATEGORICAL___nom_9___177f4513f", "5390": "15___CATEGORICAL___nom_9___178056a55", "5391": "15___CATEGORICAL___nom_9___178321f60", "5392": "15___CATEGORICAL___nom_9___17843e3e0", "5393": "15___CATEGORICAL___nom_9___17853cc20", "5394": "15___CATEGORICAL___nom_9___1787b1b2d", "5395": "15___CATEGORICAL___nom_9___178e5ecc0", "5396": "15___CATEGORICAL___nom_9___179128359", "5397": "15___CATEGORICAL___nom_9___17a3541e3", "5398": "15___CATEGORICAL___nom_9___17a6152ce", "5399": "15___CATEGORICAL___nom_9___17a8790d3", "5400": "15___CATEGORICAL___nom_9___17b1aa6d8", "5401": "15___CATEGORICAL___nom_9___17c1cd689", "5402": "15___CATEGORICAL___nom_9___17cb84550", "5403": "15___CATEGORICAL___nom_9___17d17f7f8", "5404": "15___CATEGORICAL___nom_9___17d5104dc", "5405": "15___CATEGORICAL___nom_9___17ddf0865", "5406": "15___CATEGORICAL___nom_9___17e739765", "5407": "15___CATEGORICAL___nom_9___17e9454c5", "5408": "15___CATEGORICAL___nom_9___17e9b1025", "5409": "15___CATEGORICAL___nom_9___17edd8fac", "5410": "15___CATEGORICAL___nom_9___17ee20aee", "5411": "15___CATEGORICAL___nom_9___17ee6d2d6", "5412": "15___CATEGORICAL___nom_9___17f640126", "5413": "15___CATEGORICAL___nom_9___17fde4af8", "5414": "15___CATEGORICAL___nom_9___180135193", "5415": "15___CATEGORICAL___nom_9___1801a2c08", "5416": "15___CATEGORICAL___nom_9___1814f6020", "5417": "15___CATEGORICAL___nom_9___18187a6fd", "5418": "15___CATEGORICAL___nom_9___181e3a2fc", "5419": "15___CATEGORICAL___nom_9___182300a46", "5420": "15___CATEGORICAL___nom_9___184a4d2d2", "5421": "15___CATEGORICAL___nom_9___184bf7726", "5422": "15___CATEGORICAL___nom_9___184c18d48", "5423": "15___CATEGORICAL___nom_9___184cfc782", "5424": "15___CATEGORICAL___nom_9___185eec21e", "5425": "15___CATEGORICAL___nom_9___186128a79", "5426": "15___CATEGORICAL___nom_9___1864b38b7", "5427": "15___CATEGORICAL___nom_9___186cc06d2", "5428": "15___CATEGORICAL___nom_9___18782472d", "5429": "15___CATEGORICAL___nom_9___187a03337", "5430": "15___CATEGORICAL___nom_9___187aa5d31", "5431": "15___CATEGORICAL___nom_9___187cae031", "5432": "15___CATEGORICAL___nom_9___18825ea68", "5433": "15___CATEGORICAL___nom_9___1888cc82b", "5434": "15___CATEGORICAL___nom_9___188c2c6b3", "5435": "15___CATEGORICAL___nom_9___1891e5457", "5436": "15___CATEGORICAL___nom_9___189a77091", "5437": "15___CATEGORICAL___nom_9___18a73431a", "5438": "15___CATEGORICAL___nom_9___18aef6328", "5439": "15___CATEGORICAL___nom_9___18b5cbbc7", "5440": "15___CATEGORICAL___nom_9___18b61c8df", "5441": "15___CATEGORICAL___nom_9___18b86d83a", "5442": "15___CATEGORICAL___nom_9___18c4abf91", "5443": "15___CATEGORICAL___nom_9___18c899966", "5444": "15___CATEGORICAL___nom_9___18cb62431", "5445": "15___CATEGORICAL___nom_9___18d1cc8de", "5446": "15___CATEGORICAL___nom_9___18d6692c1", "5447": "15___CATEGORICAL___nom_9___18d81c0e2", "5448": "15___CATEGORICAL___nom_9___18da81bec", "5449": "15___CATEGORICAL___nom_9___18e372a4d", "5450": "15___CATEGORICAL___nom_9___18e7d8974", "5451": "15___CATEGORICAL___nom_9___18e880443", "5452": "15___CATEGORICAL___nom_9___18e9bdba4", "5453": "15___CATEGORICAL___nom_9___18f3b0358", "5454": "15___CATEGORICAL___nom_9___18fa8ebde", "5455": "15___CATEGORICAL___nom_9___1903e8cdf", "5456": "15___CATEGORICAL___nom_9___19045f445", "5457": "15___CATEGORICAL___nom_9___19066e63a", "5458": "15___CATEGORICAL___nom_9___190d5948e", "5459": "15___CATEGORICAL___nom_9___191679858", "5460": "15___CATEGORICAL___nom_9___191fb13ac", "5461": "15___CATEGORICAL___nom_9___1921d8b8c", "5462": "15___CATEGORICAL___nom_9___192692296", "5463": "15___CATEGORICAL___nom_9___192c61219", "5464": "15___CATEGORICAL___nom_9___192f7b51a", "5465": "15___CATEGORICAL___nom_9___19365f93b", "5466": "15___CATEGORICAL___nom_9___193a0cce7", "5467": "15___CATEGORICAL___nom_9___193cc5fad", "5468": "15___CATEGORICAL___nom_9___193cefb9d", "5469": "15___CATEGORICAL___nom_9___194761294", "5470": "15___CATEGORICAL___nom_9___194a3c59c", "5471": "15___CATEGORICAL___nom_9___194b3242d", "5472": "15___CATEGORICAL___nom_9___195b28ca1", "5473": "15___CATEGORICAL___nom_9___195e322e9", "5474": "15___CATEGORICAL___nom_9___19668e90e", "5475": "15___CATEGORICAL___nom_9___196aa0d18", "5476": "15___CATEGORICAL___nom_9___19710203e", "5477": "15___CATEGORICAL___nom_9___197b8e6e1", "5478": "15___CATEGORICAL___nom_9___1984f92bf", "5479": "15___CATEGORICAL___nom_9___19855338c", "5480": "15___CATEGORICAL___nom_9___198920a13", "5481": "15___CATEGORICAL___nom_9___198ddbb08", "5482": "15___CATEGORICAL___nom_9___199dcb997", "5483": "15___CATEGORICAL___nom_9___19a492678", "5484": "15___CATEGORICAL___nom_9___19a88cd41", "5485": "15___CATEGORICAL___nom_9___19abe68e1", "5486": "15___CATEGORICAL___nom_9___19af43da7", "5487": "15___CATEGORICAL___nom_9___19b0f9fec", "5488": "15___CATEGORICAL___nom_9___19b17c680", "5489": "15___CATEGORICAL___nom_9___19b53db48", "5490": "15___CATEGORICAL___nom_9___19b58c6a9", "5491": "15___CATEGORICAL___nom_9___19bddfa52", "5492": "15___CATEGORICAL___nom_9___19c1db1bf", "5493": "15___CATEGORICAL___nom_9___19cc58e0c", "5494": "15___CATEGORICAL___nom_9___19cf6bd9b", "5495": "15___CATEGORICAL___nom_9___19d145f71", "5496": "15___CATEGORICAL___nom_9___19d78d4c4", "5497": "15___CATEGORICAL___nom_9___19d99cd08", "5498": "15___CATEGORICAL___nom_9___19daf9dd0", "5499": "15___CATEGORICAL___nom_9___19e2f5474", "5500": "15___CATEGORICAL___nom_9___19e378239", "5501": "15___CATEGORICAL___nom_9___19e482a8e", "5502": "15___CATEGORICAL___nom_9___19f4460a1", "5503": "15___CATEGORICAL___nom_9___19fb66f88", "5504": "15___CATEGORICAL___nom_9___1a1878844", "5505": "15___CATEGORICAL___nom_9___1a1ff92ce", "5506": "15___CATEGORICAL___nom_9___1a2282c46", "5507": "15___CATEGORICAL___nom_9___1a248dff9", "5508": "15___CATEGORICAL___nom_9___1a25c6368", "5509": "15___CATEGORICAL___nom_9___1a350f9c9", "5510": "15___CATEGORICAL___nom_9___1a3612f25", "5511": "15___CATEGORICAL___nom_9___1a37c6285", "5512": "15___CATEGORICAL___nom_9___1a3b91fec", "5513": "15___CATEGORICAL___nom_9___1a41e3ccc", "5514": "15___CATEGORICAL___nom_9___1a43929f3", "5515": "15___CATEGORICAL___nom_9___1a4a2af4d", "5516": "15___CATEGORICAL___nom_9___1a564a190", "5517": "15___CATEGORICAL___nom_9___1a59095b0", "5518": "15___CATEGORICAL___nom_9___1a5b3243a", "5519": "15___CATEGORICAL___nom_9___1a689dff9", "5520": "15___CATEGORICAL___nom_9___1a7ec6006", "5521": "15___CATEGORICAL___nom_9___1a7fe410b", "5522": "15___CATEGORICAL___nom_9___1a819ef77", "5523": "15___CATEGORICAL___nom_9___1a85a38d3", "5524": "15___CATEGORICAL___nom_9___1a87d0aa1", "5525": "15___CATEGORICAL___nom_9___1a8886330", "5526": "15___CATEGORICAL___nom_9___1a88fe9ec", "5527": "15___CATEGORICAL___nom_9___1a95de2e2", "5528": "15___CATEGORICAL___nom_9___1a965c09e", "5529": "15___CATEGORICAL___nom_9___1a9c3e8cc", "5530": "15___CATEGORICAL___nom_9___1a9fcef9c", "5531": "15___CATEGORICAL___nom_9___1aad274c3", "5532": "15___CATEGORICAL___nom_9___1ab585df5", "5533": "15___CATEGORICAL___nom_9___1ab740191", "5534": "15___CATEGORICAL___nom_9___1abf20ba7", "5535": "15___CATEGORICAL___nom_9___1ac542e0d", "5536": "15___CATEGORICAL___nom_9___1ac825bef", "5537": "15___CATEGORICAL___nom_9___1acb2a656", "5538": "15___CATEGORICAL___nom_9___1acc1cf42", "5539": "15___CATEGORICAL___nom_9___1ad346cfc", "5540": "15___CATEGORICAL___nom_9___1adaaf85e", "5541": "15___CATEGORICAL___nom_9___1ae40ea8b", "5542": "15___CATEGORICAL___nom_9___1ae4f6ee7", "5543": "15___CATEGORICAL___nom_9___1aeb357fe", "5544": "15___CATEGORICAL___nom_9___1aeb3a3d3", "5545": "15___CATEGORICAL___nom_9___1aeeada7e", "5546": "15___CATEGORICAL___nom_9___1afa54926", "5547": "15___CATEGORICAL___nom_9___1afb5e473", "5548": "15___CATEGORICAL___nom_9___1afd5436e", "5549": "15___CATEGORICAL___nom_9___1b194060a", "5550": "15___CATEGORICAL___nom_9___1b1bb98b8", "5551": "15___CATEGORICAL___nom_9___1b1f2e675", "5552": "15___CATEGORICAL___nom_9___1b2461062", "5553": "15___CATEGORICAL___nom_9___1b2db1d94", "5554": "15___CATEGORICAL___nom_9___1b3126c04", "5555": "15___CATEGORICAL___nom_9___1b34db11c", "5556": "15___CATEGORICAL___nom_9___1b3e48a2c", "5557": "15___CATEGORICAL___nom_9___1b4a16ea1", "5558": "15___CATEGORICAL___nom_9___1b4c0419d", "5559": "15___CATEGORICAL___nom_9___1b4c6c65c", "5560": "15___CATEGORICAL___nom_9___1b4de10ae", "5561": "15___CATEGORICAL___nom_9___1b4e0e503", "5562": "15___CATEGORICAL___nom_9___1b57e3ac0", "5563": "15___CATEGORICAL___nom_9___1b5860b96", "5564": "15___CATEGORICAL___nom_9___1b59c98a1", "5565": "15___CATEGORICAL___nom_9___1b6903253", "5566": "15___CATEGORICAL___nom_9___1b6ccf34b", "5567": "15___CATEGORICAL___nom_9___1b6f1333e", "5568": "15___CATEGORICAL___nom_9___1b745155c", "5569": "15___CATEGORICAL___nom_9___1b75105bf", "5570": "15___CATEGORICAL___nom_9___1b76ef103", "5571": "15___CATEGORICAL___nom_9___1b7d8db1f", "5572": "15___CATEGORICAL___nom_9___1b8f2b7de", "5573": "15___CATEGORICAL___nom_9___1b96d907c", "5574": "15___CATEGORICAL___nom_9___1b9b1f79f", "5575": "15___CATEGORICAL___nom_9___1b9b386a0", "5576": "15___CATEGORICAL___nom_9___1b9d7e23e", "5577": "15___CATEGORICAL___nom_9___1ba26a7fd", "5578": "15___CATEGORICAL___nom_9___1ba27ed77", "5579": "15___CATEGORICAL___nom_9___1ba7eca1a", "5580": "15___CATEGORICAL___nom_9___1bbbb9474", "5581": "15___CATEGORICAL___nom_9___1bc0a0456", "5582": "15___CATEGORICAL___nom_9___1bc403a42", "5583": "15___CATEGORICAL___nom_9___1bcc8dcc3", "5584": "15___CATEGORICAL___nom_9___1bd43a14c", "5585": "15___CATEGORICAL___nom_9___1bd48574d", "5586": "15___CATEGORICAL___nom_9___1bd608ab3", "5587": "15___CATEGORICAL___nom_9___1bd6c94aa", "5588": "15___CATEGORICAL___nom_9___1bd78b290", "5589": "15___CATEGORICAL___nom_9___1bda4f342", "5590": "15___CATEGORICAL___nom_9___1bdc1d8ed", "5591": "15___CATEGORICAL___nom_9___1bdc1d94e", "5592": "15___CATEGORICAL___nom_9___1be436e3f", "5593": "15___CATEGORICAL___nom_9___1be4a6a69", "5594": "15___CATEGORICAL___nom_9___1beb4a777", "5595": "15___CATEGORICAL___nom_9___1bf1ae113", "5596": "15___CATEGORICAL___nom_9___1bf37240f", "5597": "15___CATEGORICAL___nom_9___1bfc8df7e", "5598": "15___CATEGORICAL___nom_9___1bfd63589", "5599": "15___CATEGORICAL___nom_9___1bfe37e92", "5600": "15___CATEGORICAL___nom_9___1c22c439e", "5601": "15___CATEGORICAL___nom_9___1c2487c11", "5602": "15___CATEGORICAL___nom_9___1c37b78a6", "5603": "15___CATEGORICAL___nom_9___1c39e302b", "5604": "15___CATEGORICAL___nom_9___1c3a4a3c1", "5605": "15___CATEGORICAL___nom_9___1c4154538", "5606": "15___CATEGORICAL___nom_9___1c544d8fd", "5607": "15___CATEGORICAL___nom_9___1c55f20d8", "5608": "15___CATEGORICAL___nom_9___1c5ade30a", "5609": "15___CATEGORICAL___nom_9___1c5b8b683", "5610": "15___CATEGORICAL___nom_9___1c67afe7d", "5611": "15___CATEGORICAL___nom_9___1c68b4536", "5612": "15___CATEGORICAL___nom_9___1c6f00738", "5613": "15___CATEGORICAL___nom_9___1c734e862", "5614": "15___CATEGORICAL___nom_9___1c7e91a1f", "5615": "15___CATEGORICAL___nom_9___1c7f97d46", "5616": "15___CATEGORICAL___nom_9___1c8416679", "5617": "15___CATEGORICAL___nom_9___1c8536f9d", "5618": "15___CATEGORICAL___nom_9___1c8cbae48", "5619": "15___CATEGORICAL___nom_9___1c8e35a19", "5620": "15___CATEGORICAL___nom_9___1c93f22c7", "5621": "15___CATEGORICAL___nom_9___1ca45f5e9", "5622": "15___CATEGORICAL___nom_9___1cad04516", "5623": "15___CATEGORICAL___nom_9___1cad86ad7", "5624": "15___CATEGORICAL___nom_9___1cb6ae4a6", "5625": "15___CATEGORICAL___nom_9___1cbb53760", "5626": "15___CATEGORICAL___nom_9___1cbc9ed37", "5627": "15___CATEGORICAL___nom_9___1cc0e6d2a", "5628": "15___CATEGORICAL___nom_9___1cc4f74e4", "5629": "15___CATEGORICAL___nom_9___1cc9cc58d", "5630": "15___CATEGORICAL___nom_9___1ccae1002", "5631": "15___CATEGORICAL___nom_9___1cd20136d", "5632": "15___CATEGORICAL___nom_9___1cdce0790", "5633": "15___CATEGORICAL___nom_9___1ceb4fcd8", "5634": "15___CATEGORICAL___nom_9___1ceb8fd45", "5635": "15___CATEGORICAL___nom_9___1cec8f537", "5636": "15___CATEGORICAL___nom_9___1cf9dfa35", "5637": "15___CATEGORICAL___nom_9___1cfb5b70f", "5638": "15___CATEGORICAL___nom_9___1cfbb3907", "5639": "15___CATEGORICAL___nom_9___1cfbe853c", "5640": "15___CATEGORICAL___nom_9___1d086922b", "5641": "15___CATEGORICAL___nom_9___1d0b27398", "5642": "15___CATEGORICAL___nom_9___1d1305117", "5643": "15___CATEGORICAL___nom_9___1d194b5c8", "5644": "15___CATEGORICAL___nom_9___1d1e637d7", "5645": "15___CATEGORICAL___nom_9___1d26e04e1", "5646": "15___CATEGORICAL___nom_9___1d27d7d14", "5647": "15___CATEGORICAL___nom_9___1d28cd2ae", "5648": "15___CATEGORICAL___nom_9___1d29f6d06", "5649": "15___CATEGORICAL___nom_9___1d2a282ab", "5650": "15___CATEGORICAL___nom_9___1d2f5dbc0", "5651": "15___CATEGORICAL___nom_9___1d33ac1ec", "5652": "15___CATEGORICAL___nom_9___1d3b6ac99", "5653": "15___CATEGORICAL___nom_9___1d4559a20", "5654": "15___CATEGORICAL___nom_9___1d4f4ec1b", "5655": "15___CATEGORICAL___nom_9___1d51767c7", "5656": "15___CATEGORICAL___nom_9___1d57a05d2", "5657": "15___CATEGORICAL___nom_9___1d5e08295", "5658": "15___CATEGORICAL___nom_9___1d5fe376e", "5659": "15___CATEGORICAL___nom_9___1d669bc4e", "5660": "15___CATEGORICAL___nom_9___1d66c42e0", "5661": "15___CATEGORICAL___nom_9___1d7366295", "5662": "15___CATEGORICAL___nom_9___1d76e2ae8", "5663": "15___CATEGORICAL___nom_9___1d89a0532", "5664": "15___CATEGORICAL___nom_9___1d8a88a90", "5665": "15___CATEGORICAL___nom_9___1d9183b77", "5666": "15___CATEGORICAL___nom_9___1d91fab68", "5667": "15___CATEGORICAL___nom_9___1d9359862", "5668": "15___CATEGORICAL___nom_9___1d966f94c", "5669": "15___CATEGORICAL___nom_9___1d99c2a6b", "5670": "15___CATEGORICAL___nom_9___1da19a191", "5671": "15___CATEGORICAL___nom_9___1da2f04d1", "5672": "15___CATEGORICAL___nom_9___1da41eb36", "5673": "15___CATEGORICAL___nom_9___1daaf5d1b", "5674": "15___CATEGORICAL___nom_9___1dae93ac6", "5675": "15___CATEGORICAL___nom_9___1db51b1a1", "5676": "15___CATEGORICAL___nom_9___1dc155ead", "5677": "15___CATEGORICAL___nom_9___1dc37103c", "5678": "15___CATEGORICAL___nom_9___1dcfa21a5", "5679": "15___CATEGORICAL___nom_9___1dd2ee3c8", "5680": "15___CATEGORICAL___nom_9___1dd5e08ae", "5681": "15___CATEGORICAL___nom_9___1dde1cc03", "5682": "15___CATEGORICAL___nom_9___1dedc469b", "5683": "15___CATEGORICAL___nom_9___1df226afb", "5684": "15___CATEGORICAL___nom_9___1df3b8cbd", "5685": "15___CATEGORICAL___nom_9___1df628517", "5686": "15___CATEGORICAL___nom_9___1df808a93", "5687": "15___CATEGORICAL___nom_9___1dfda887c", "5688": "15___CATEGORICAL___nom_9___1dfdf7907", "5689": "15___CATEGORICAL___nom_9___1dff55cc1", "5690": "15___CATEGORICAL___nom_9___1e03f5703", "5691": "15___CATEGORICAL___nom_9___1e0a75a2f", "5692": "15___CATEGORICAL___nom_9___1e1fd2919", "5693": "15___CATEGORICAL___nom_9___1e208e9fe", "5694": "15___CATEGORICAL___nom_9___1e252c518", "5695": "15___CATEGORICAL___nom_9___1e2a457e4", "5696": "15___CATEGORICAL___nom_9___1e2fad041", "5697": "15___CATEGORICAL___nom_9___1e38b3e53", "5698": "15___CATEGORICAL___nom_9___1e3d4b4d1", "5699": "15___CATEGORICAL___nom_9___1e420caae", "5700": "15___CATEGORICAL___nom_9___1e427c604", "5701": "15___CATEGORICAL___nom_9___1e429d485", "5702": "15___CATEGORICAL___nom_9___1e42fbf53", "5703": "15___CATEGORICAL___nom_9___1e43c30af", "5704": "15___CATEGORICAL___nom_9___1e4546c9a", "5705": "15___CATEGORICAL___nom_9___1e55d71ac", "5706": "15___CATEGORICAL___nom_9___1e59122c4", "5707": "15___CATEGORICAL___nom_9___1e603df4f", "5708": "15___CATEGORICAL___nom_9___1e61274b5", "5709": "15___CATEGORICAL___nom_9___1e6ecf3b2", "5710": "15___CATEGORICAL___nom_9___1e72e2b5d", "5711": "15___CATEGORICAL___nom_9___1e757094c", "5712": "15___CATEGORICAL___nom_9___1e8baf00c", "5713": "15___CATEGORICAL___nom_9___1e8f31015", "5714": "15___CATEGORICAL___nom_9___1e939ba20", "5715": "15___CATEGORICAL___nom_9___1e98ab493", "5716": "15___CATEGORICAL___nom_9___1e99908c4", "5717": "15___CATEGORICAL___nom_9___1e9c49b27", "5718": "15___CATEGORICAL___nom_9___1e9ebdd12", "5719": "15___CATEGORICAL___nom_9___1ea20413b", "5720": "15___CATEGORICAL___nom_9___1ea30896e", "5721": "15___CATEGORICAL___nom_9___1ea94ef04", "5722": "15___CATEGORICAL___nom_9___1eb2a6420", "5723": "15___CATEGORICAL___nom_9___1eb6ed0cb", "5724": "15___CATEGORICAL___nom_9___1eb8db8b2", "5725": "15___CATEGORICAL___nom_9___1ebece8ae", "5726": "15___CATEGORICAL___nom_9___1ec5fcfc1", "5727": "15___CATEGORICAL___nom_9___1ec8e23cc", "5728": "15___CATEGORICAL___nom_9___1ecf036f8", "5729": "15___CATEGORICAL___nom_9___1ed29a77d", "5730": "15___CATEGORICAL___nom_9___1edc65cb2", "5731": "15___CATEGORICAL___nom_9___1edcaac98", "5732": "15___CATEGORICAL___nom_9___1eec63df5", "5733": "15___CATEGORICAL___nom_9___1eef23b14", "5734": "15___CATEGORICAL___nom_9___1ef39fc34", "5735": "15___CATEGORICAL___nom_9___1efb5b2d7", "5736": "15___CATEGORICAL___nom_9___1efbcb255", "5737": "15___CATEGORICAL___nom_9___1f063c9cc", "5738": "15___CATEGORICAL___nom_9___1f0bde8d4", "5739": "15___CATEGORICAL___nom_9___1f146ef81", "5740": "15___CATEGORICAL___nom_9___1f1961f92", "5741": "15___CATEGORICAL___nom_9___1f1cc717e", "5742": "15___CATEGORICAL___nom_9___1f237c4ff", "5743": "15___CATEGORICAL___nom_9___1f241e250", "5744": "15___CATEGORICAL___nom_9___1f25e0b12", "5745": "15___CATEGORICAL___nom_9___1f29f646d", "5746": "15___CATEGORICAL___nom_9___1f31c5cc1", "5747": "15___CATEGORICAL___nom_9___1f3593f24", "5748": "15___CATEGORICAL___nom_9___1f3fbfb98", "5749": "15___CATEGORICAL___nom_9___1f560f974", "5750": "15___CATEGORICAL___nom_9___1f57793f0", "5751": "15___CATEGORICAL___nom_9___1f5796ed1", "5752": "15___CATEGORICAL___nom_9___1f63e2131", "5753": "15___CATEGORICAL___nom_9___1f67f23f7", "5754": "15___CATEGORICAL___nom_9___1f6a5b560", "5755": "15___CATEGORICAL___nom_9___1f6a831c4", "5756": "15___CATEGORICAL___nom_9___1f72facdd", "5757": "15___CATEGORICAL___nom_9___1f739acea", "5758": "15___CATEGORICAL___nom_9___1f76005eb", "5759": "15___CATEGORICAL___nom_9___1f95801af", "5760": "15___CATEGORICAL___nom_9___1f96789a2", "5761": "15___CATEGORICAL___nom_9___1fa071b0b", "5762": "15___CATEGORICAL___nom_9___1fa0ac923", "5763": "15___CATEGORICAL___nom_9___1fa21c7a1", "5764": "15___CATEGORICAL___nom_9___1fa393721", "5765": "15___CATEGORICAL___nom_9___1fa422c7c", "5766": "15___CATEGORICAL___nom_9___1fabc647b", "5767": "15___CATEGORICAL___nom_9___1fb95aba0", "5768": "15___CATEGORICAL___nom_9___1fba7bcfe", "5769": "15___CATEGORICAL___nom_9___1fbd68795", "5770": "15___CATEGORICAL___nom_9___1fc67f53c", "5771": "15___CATEGORICAL___nom_9___1fc925f18", "5772": "15___CATEGORICAL___nom_9___1fcdbb6ac", "5773": "15___CATEGORICAL___nom_9___1fd319ac3", "5774": "15___CATEGORICAL___nom_9___1fd75270d", "5775": "15___CATEGORICAL___nom_9___1fd9636d7", "5776": "15___CATEGORICAL___nom_9___1fda3ab1e", "5777": "15___CATEGORICAL___nom_9___1fe8d1966", "5778": "15___CATEGORICAL___nom_9___1fe9b3f49", "5779": "15___CATEGORICAL___nom_9___1ff21a372", "5780": "15___CATEGORICAL___nom_9___1ff73de69", "5781": "15___CATEGORICAL___nom_9___1ff989601", "5782": "15___CATEGORICAL___nom_9___2003d1bcb", "5783": "15___CATEGORICAL___nom_9___2005b83b6", "5784": "15___CATEGORICAL___nom_9___20180b79e", "5785": "15___CATEGORICAL___nom_9___201faa447", "5786": "15___CATEGORICAL___nom_9___202789290", "5787": "15___CATEGORICAL___nom_9___20327bfb2", "5788": "15___CATEGORICAL___nom_9___203e6611e", "5789": "15___CATEGORICAL___nom_9___2041aef21", "5790": "15___CATEGORICAL___nom_9___2045842d6", "5791": "15___CATEGORICAL___nom_9___20463634f", "5792": "15___CATEGORICAL___nom_9___20472ec8e", "5793": "15___CATEGORICAL___nom_9___20538f541", "5794": "15___CATEGORICAL___nom_9___205573786", "5795": "15___CATEGORICAL___nom_9___205786be1", "5796": "15___CATEGORICAL___nom_9___2060fb1bd", "5797": "15___CATEGORICAL___nom_9___2069f0297", "5798": "15___CATEGORICAL___nom_9___206aed34f", "5799": "15___CATEGORICAL___nom_9___2073ad84c", "5800": "15___CATEGORICAL___nom_9___207420ee3", "5801": "15___CATEGORICAL___nom_9___207880a93", "5802": "15___CATEGORICAL___nom_9___207efd506", "5803": "15___CATEGORICAL___nom_9___208234848", "5804": "15___CATEGORICAL___nom_9___20855fee9", "5805": "15___CATEGORICAL___nom_9___20891ffbd", "5806": "15___CATEGORICAL___nom_9___208947c17", "5807": "15___CATEGORICAL___nom_9___208dbda1d", "5808": "15___CATEGORICAL___nom_9___209682892", "5809": "15___CATEGORICAL___nom_9___209a1e6b5", "5810": "15___CATEGORICAL___nom_9___209a76e14", "5811": "15___CATEGORICAL___nom_9___209d2c493", "5812": "15___CATEGORICAL___nom_9___20a3c01b9", "5813": "15___CATEGORICAL___nom_9___20a41ce31", "5814": "15___CATEGORICAL___nom_9___20aa11937", "5815": "15___CATEGORICAL___nom_9___20ae3cd84", "5816": "15___CATEGORICAL___nom_9___20b2ffe59", "5817": "15___CATEGORICAL___nom_9___20b87131d", "5818": "15___CATEGORICAL___nom_9___20bb84b09", "5819": "15___CATEGORICAL___nom_9___20bbe0a50", "5820": "15___CATEGORICAL___nom_9___20bdaf6e8", "5821": "15___CATEGORICAL___nom_9___20c1fc25a", "5822": "15___CATEGORICAL___nom_9___20e5a9550", "5823": "15___CATEGORICAL___nom_9___20f0a490a", "5824": "15___CATEGORICAL___nom_9___20f642a12", "5825": "15___CATEGORICAL___nom_9___20fed59fc", "5826": "15___CATEGORICAL___nom_9___210979cb5", "5827": "15___CATEGORICAL___nom_9___210eaafb3", "5828": "15___CATEGORICAL___nom_9___21116774e", "5829": "15___CATEGORICAL___nom_9___211249818", "5830": "15___CATEGORICAL___nom_9___211353d2e", "5831": "15___CATEGORICAL___nom_9___2126a5dda", "5832": "15___CATEGORICAL___nom_9___2127fafca", "5833": "15___CATEGORICAL___nom_9___212976a05", "5834": "15___CATEGORICAL___nom_9___212ecfa8d", "5835": "15___CATEGORICAL___nom_9___21396ff07", "5836": "15___CATEGORICAL___nom_9___213c78891", "5837": "15___CATEGORICAL___nom_9___21400a9be", "5838": "15___CATEGORICAL___nom_9___21414a4f1", "5839": "15___CATEGORICAL___nom_9___21496cda1", "5840": "15___CATEGORICAL___nom_9___214f1753d", "5841": "15___CATEGORICAL___nom_9___21501dcdf", "5842": "15___CATEGORICAL___nom_9___21513a866", "5843": "15___CATEGORICAL___nom_9___21571f68e", "5844": "15___CATEGORICAL___nom_9___21578b358", "5845": "15___CATEGORICAL___nom_9___215bbcef1", "5846": "15___CATEGORICAL___nom_9___215c429e7", "5847": "15___CATEGORICAL___nom_9___215fcdb27", "5848": "15___CATEGORICAL___nom_9___2169e52e8", "5849": "15___CATEGORICAL___nom_9___2171424dc", "5850": "15___CATEGORICAL___nom_9___217363a79", "5851": "15___CATEGORICAL___nom_9___217588dba", "5852": "15___CATEGORICAL___nom_9___217595935", "5853": "15___CATEGORICAL___nom_9___217d3377c", "5854": "15___CATEGORICAL___nom_9___218d434a6", "5855": "15___CATEGORICAL___nom_9___21938e4e7", "5856": "15___CATEGORICAL___nom_9___21959406b", "5857": "15___CATEGORICAL___nom_9___21a664f31", "5858": "15___CATEGORICAL___nom_9___21bd3be37", "5859": "15___CATEGORICAL___nom_9___21bdd5501", "5860": "15___CATEGORICAL___nom_9___21c11cdbc", "5861": "15___CATEGORICAL___nom_9___21c321035", "5862": "15___CATEGORICAL___nom_9___21cc1d92d", "5863": "15___CATEGORICAL___nom_9___21ccd97ef", "5864": "15___CATEGORICAL___nom_9___21dd8f659", "5865": "15___CATEGORICAL___nom_9___21ddbac33", "5866": "15___CATEGORICAL___nom_9___21dee6fd4", "5867": "15___CATEGORICAL___nom_9___21e46454e", "5868": "15___CATEGORICAL___nom_9___21e51e45e", "5869": "15___CATEGORICAL___nom_9___21eb6d2fa", "5870": "15___CATEGORICAL___nom_9___21ef6824e", "5871": "15___CATEGORICAL___nom_9___21f7bbb4d", "5872": "15___CATEGORICAL___nom_9___21f903291", "5873": "15___CATEGORICAL___nom_9___21fdc2588", "5874": "15___CATEGORICAL___nom_9___22020e658", "5875": "15___CATEGORICAL___nom_9___220ada385", "5876": "15___CATEGORICAL___nom_9___2212476ab", "5877": "15___CATEGORICAL___nom_9___2218f31c6", "5878": "15___CATEGORICAL___nom_9___221a983e9", "5879": "15___CATEGORICAL___nom_9___221ac5a93", "5880": "15___CATEGORICAL___nom_9___222d467f0", "5881": "15___CATEGORICAL___nom_9___223251ffb", "5882": "15___CATEGORICAL___nom_9___2232c2d2a", "5883": "15___CATEGORICAL___nom_9___223325778", "5884": "15___CATEGORICAL___nom_9___224171db6", "5885": "15___CATEGORICAL___nom_9___224216231", "5886": "15___CATEGORICAL___nom_9___2249f0142", "5887": "15___CATEGORICAL___nom_9___225293eaa", "5888": "15___CATEGORICAL___nom_9___2257000b0", "5889": "15___CATEGORICAL___nom_9___225b08906", "5890": "15___CATEGORICAL___nom_9___2260f20bc", "5891": "15___CATEGORICAL___nom_9___226f13e27", "5892": "15___CATEGORICAL___nom_9___226fce1bd", "5893": "15___CATEGORICAL___nom_9___22847efba", "5894": "15___CATEGORICAL___nom_9___2284d3f06", "5895": "15___CATEGORICAL___nom_9___22867e5c2", "5896": "15___CATEGORICAL___nom_9___22981380b", "5897": "15___CATEGORICAL___nom_9___229d6263d", "5898": "15___CATEGORICAL___nom_9___22a0e25f8", "5899": "15___CATEGORICAL___nom_9___22a5aedfa", "5900": "15___CATEGORICAL___nom_9___22af9e8d6", "5901": "15___CATEGORICAL___nom_9___22c00693a", "5902": "15___CATEGORICAL___nom_9___22c04e2e9", "5903": "15___CATEGORICAL___nom_9___22c0bc3dd", "5904": "15___CATEGORICAL___nom_9___22c955ba4", "5905": "15___CATEGORICAL___nom_9___22c9a1e1f", "5906": "15___CATEGORICAL___nom_9___22cf66761", "5907": "15___CATEGORICAL___nom_9___22cf6d09c", "5908": "15___CATEGORICAL___nom_9___22d06fa72", "5909": "15___CATEGORICAL___nom_9___22d6caa4b", "5910": "15___CATEGORICAL___nom_9___22db129fe", "5911": "15___CATEGORICAL___nom_9___22de6e18e", "5912": "15___CATEGORICAL___nom_9___22e16cb92", "5913": "15___CATEGORICAL___nom_9___22e653071", "5914": "15___CATEGORICAL___nom_9___22e8abea7", "5915": "15___CATEGORICAL___nom_9___22ef4920c", "5916": "15___CATEGORICAL___nom_9___22f01da25", "5917": "15___CATEGORICAL___nom_9___22f0dba69", "5918": "15___CATEGORICAL___nom_9___22f56fdc9", "5919": "15___CATEGORICAL___nom_9___22fd01546", "5920": "15___CATEGORICAL___nom_9___230c24e4e", "5921": "15___CATEGORICAL___nom_9___23161b7b3", "5922": "15___CATEGORICAL___nom_9___23174cd7d", "5923": "15___CATEGORICAL___nom_9___2322eaf2a", "5924": "15___CATEGORICAL___nom_9___2327169e3", "5925": "15___CATEGORICAL___nom_9___233381a6c", "5926": "15___CATEGORICAL___nom_9___23352375c", "5927": "15___CATEGORICAL___nom_9___2338eec0a", "5928": "15___CATEGORICAL___nom_9___233941114", "5929": "15___CATEGORICAL___nom_9___23420401b", "5930": "15___CATEGORICAL___nom_9___234dea393", "5931": "15___CATEGORICAL___nom_9___234f89316", "5932": "15___CATEGORICAL___nom_9___234fd76a7", "5933": "15___CATEGORICAL___nom_9___2366a5760", "5934": "15___CATEGORICAL___nom_9___23692a9c2", "5935": "15___CATEGORICAL___nom_9___2370c8dde", "5936": "15___CATEGORICAL___nom_9___238cb3e6d", "5937": "15___CATEGORICAL___nom_9___239352b00", "5938": "15___CATEGORICAL___nom_9___23968533d", "5939": "15___CATEGORICAL___nom_9___2397160d9", "5940": "15___CATEGORICAL___nom_9___23a02c9e0", "5941": "15___CATEGORICAL___nom_9___23a0524e4", "5942": "15___CATEGORICAL___nom_9___23a0a8c28", "5943": "15___CATEGORICAL___nom_9___23a1dcdcb", "5944": "15___CATEGORICAL___nom_9___23b06b412", "5945": "15___CATEGORICAL___nom_9___23b32e47f", "5946": "15___CATEGORICAL___nom_9___23b7272de", "5947": "15___CATEGORICAL___nom_9___23b7bea04", "5948": "15___CATEGORICAL___nom_9___23bc7322c", "5949": "15___CATEGORICAL___nom_9___23c53f8c7", "5950": "15___CATEGORICAL___nom_9___23c611c01", "5951": "15___CATEGORICAL___nom_9___23cd65412", "5952": "15___CATEGORICAL___nom_9___23cf1ae66", "5953": "15___CATEGORICAL___nom_9___23d0e5e21", "5954": "15___CATEGORICAL___nom_9___23dd843f0", "5955": "15___CATEGORICAL___nom_9___23deb52c3", "5956": "15___CATEGORICAL___nom_9___23fda8301", "5957": "15___CATEGORICAL___nom_9___24012a0da", "5958": "15___CATEGORICAL___nom_9___240f71883", "5959": "15___CATEGORICAL___nom_9___2414a04be", "5960": "15___CATEGORICAL___nom_9___2419f75df", "5961": "15___CATEGORICAL___nom_9___241c3c18f", "5962": "15___CATEGORICAL___nom_9___241ede9c1", "5963": "15___CATEGORICAL___nom_9___242096d7e", "5964": "15___CATEGORICAL___nom_9___242460243", "5965": "15___CATEGORICAL___nom_9___24279374c", "5966": "15___CATEGORICAL___nom_9___242c22a63", "5967": "15___CATEGORICAL___nom_9___242e5cb6b", "5968": "15___CATEGORICAL___nom_9___2432486b5", "5969": "15___CATEGORICAL___nom_9___2435bd4f6", "5970": "15___CATEGORICAL___nom_9___243d66fd9", "5971": "15___CATEGORICAL___nom_9___2443e319c", "5972": "15___CATEGORICAL___nom_9___244650795", "5973": "15___CATEGORICAL___nom_9___244d94206", "5974": "15___CATEGORICAL___nom_9___244f3d156", "5975": "15___CATEGORICAL___nom_9___245007a3b", "5976": "15___CATEGORICAL___nom_9___2452cca09", "5977": "15___CATEGORICAL___nom_9___24532cd48", "5978": "15___CATEGORICAL___nom_9___24594ad9d", "5979": "15___CATEGORICAL___nom_9___245bce63b", "5980": "15___CATEGORICAL___nom_9___24621d0ba", "5981": "15___CATEGORICAL___nom_9___24708272a", "5982": "15___CATEGORICAL___nom_9___2471b81c9", "5983": "15___CATEGORICAL___nom_9___247ecf382", "5984": "15___CATEGORICAL___nom_9___2480ce2b2", "5985": "15___CATEGORICAL___nom_9___2483f1766", "5986": "15___CATEGORICAL___nom_9___2484dd61a", "5987": "15___CATEGORICAL___nom_9___248857e80", "5988": "15___CATEGORICAL___nom_9___248a210cd", "5989": "15___CATEGORICAL___nom_9___248bc2b6f", "5990": "15___CATEGORICAL___nom_9___249cf8513", "5991": "15___CATEGORICAL___nom_9___24a309978", "5992": "15___CATEGORICAL___nom_9___24a36dc7b", "5993": "15___CATEGORICAL___nom_9___24a695e6f", "5994": "15___CATEGORICAL___nom_9___24a9d28cd", "5995": "15___CATEGORICAL___nom_9___24aaff389", "5996": "15___CATEGORICAL___nom_9___24b90dbc9", "5997": "15___CATEGORICAL___nom_9___24bac03c9", "5998": "15___CATEGORICAL___nom_9___24bf7ceb3", "5999": "15___CATEGORICAL___nom_9___24c20b41e", "6000": "15___CATEGORICAL___nom_9___24c214114", "6001": "15___CATEGORICAL___nom_9___24ce24cae", "6002": "15___CATEGORICAL___nom_9___24cfc9ea3", "6003": "15___CATEGORICAL___nom_9___24d0f1098", "6004": "15___CATEGORICAL___nom_9___24d91cc25", "6005": "15___CATEGORICAL___nom_9___24dcae1f9", "6006": "15___CATEGORICAL___nom_9___24e2a85d6", "6007": "15___CATEGORICAL___nom_9___24e51899c", "6008": "15___CATEGORICAL___nom_9___24e5e1eec", "6009": "15___CATEGORICAL___nom_9___24fa8c96b", "6010": "15___CATEGORICAL___nom_9___24ff7f077", "6011": "15___CATEGORICAL___nom_9___250111ccb", "6012": "15___CATEGORICAL___nom_9___2506fd640", "6013": "15___CATEGORICAL___nom_9___251285d30", "6014": "15___CATEGORICAL___nom_9___251ae297b", "6015": "15___CATEGORICAL___nom_9___251c49904", "6016": "15___CATEGORICAL___nom_9___251fb24f2", "6017": "15___CATEGORICAL___nom_9___25232431b", "6018": "15___CATEGORICAL___nom_9___25258710f", "6019": "15___CATEGORICAL___nom_9___25280c2ee", "6020": "15___CATEGORICAL___nom_9___252a513c1", "6021": "15___CATEGORICAL___nom_9___2533756c6", "6022": "15___CATEGORICAL___nom_9___2539fb93d", "6023": "15___CATEGORICAL___nom_9___25410866b", "6024": "15___CATEGORICAL___nom_9___254361222", "6025": "15___CATEGORICAL___nom_9___25457f698", "6026": "15___CATEGORICAL___nom_9___25479dd18", "6027": "15___CATEGORICAL___nom_9___25493f6d8", "6028": "15___CATEGORICAL___nom_9___254ea0f09", "6029": "15___CATEGORICAL___nom_9___2559acac4", "6030": "15___CATEGORICAL___nom_9___2560a68c9", "6031": "15___CATEGORICAL___nom_9___256332f23", "6032": "15___CATEGORICAL___nom_9___256e90cda", "6033": "15___CATEGORICAL___nom_9___2572e1483", "6034": "15___CATEGORICAL___nom_9___2578e1ae5", "6035": "15___CATEGORICAL___nom_9___257c0b36f", "6036": "15___CATEGORICAL___nom_9___25852d3a9", "6037": "15___CATEGORICAL___nom_9___2587ae392", "6038": "15___CATEGORICAL___nom_9___2587e4eb4", "6039": "15___CATEGORICAL___nom_9___258abc186", "6040": "15___CATEGORICAL___nom_9___2590efc39", "6041": "15___CATEGORICAL___nom_9___2593be44c", "6042": "15___CATEGORICAL___nom_9___2599425e9", "6043": "15___CATEGORICAL___nom_9___25aa6f3b5", "6044": "15___CATEGORICAL___nom_9___25ab29047", "6045": "15___CATEGORICAL___nom_9___25acc955a", "6046": "15___CATEGORICAL___nom_9___25ae122df", "6047": "15___CATEGORICAL___nom_9___25ae6594e", "6048": "15___CATEGORICAL___nom_9___25afb2841", "6049": "15___CATEGORICAL___nom_9___25b2bf89a", "6050": "15___CATEGORICAL___nom_9___25b6eef9c", "6051": "15___CATEGORICAL___nom_9___25b93b092", "6052": "15___CATEGORICAL___nom_9___25be46671", "6053": "15___CATEGORICAL___nom_9___25ccbcbbb", "6054": "15___CATEGORICAL___nom_9___25cd21374", "6055": "15___CATEGORICAL___nom_9___25df949ae", "6056": "15___CATEGORICAL___nom_9___25e13de80", "6057": "15___CATEGORICAL___nom_9___25e47a294", "6058": "15___CATEGORICAL___nom_9___25e6c6b68", "6059": "15___CATEGORICAL___nom_9___25e81c11f", "6060": "15___CATEGORICAL___nom_9___25ea71a09", "6061": "15___CATEGORICAL___nom_9___25fec866c", "6062": "15___CATEGORICAL___nom_9___25ffbf0c4", "6063": "15___CATEGORICAL___nom_9___26000c57f", "6064": "15___CATEGORICAL___nom_9___2603544bf", "6065": "15___CATEGORICAL___nom_9___263bed53b", "6066": "15___CATEGORICAL___nom_9___263c264d9", "6067": "15___CATEGORICAL___nom_9___264293b18", "6068": "15___CATEGORICAL___nom_9___264e54c06", "6069": "15___CATEGORICAL___nom_9___264f31edc", "6070": "15___CATEGORICAL___nom_9___26519801f", "6071": "15___CATEGORICAL___nom_9___265a0ffd3", "6072": "15___CATEGORICAL___nom_9___265bbac35", "6073": "15___CATEGORICAL___nom_9___265e333b7", "6074": "15___CATEGORICAL___nom_9___2666819b5", "6075": "15___CATEGORICAL___nom_9___2668255cf", "6076": "15___CATEGORICAL___nom_9___26703bdd9", "6077": "15___CATEGORICAL___nom_9___26742abe4", "6078": "15___CATEGORICAL___nom_9___2686aaffc", "6079": "15___CATEGORICAL___nom_9___268aa26bc", "6080": "15___CATEGORICAL___nom_9___268ca1645", "6081": "15___CATEGORICAL___nom_9___2694b812e", "6082": "15___CATEGORICAL___nom_9___269eab8dd", "6083": "15___CATEGORICAL___nom_9___26a5be54c", "6084": "15___CATEGORICAL___nom_9___26a8e5a29", "6085": "15___CATEGORICAL___nom_9___26a922278", "6086": "15___CATEGORICAL___nom_9___26b0fe39c", "6087": "15___CATEGORICAL___nom_9___26b62a9e3", "6088": "15___CATEGORICAL___nom_9___26bc9bd6a", "6089": "15___CATEGORICAL___nom_9___26d13086c", "6090": "15___CATEGORICAL___nom_9___26d8149f6", "6091": "15___CATEGORICAL___nom_9___26da6f02b", "6092": "15___CATEGORICAL___nom_9___26e51923f", "6093": "15___CATEGORICAL___nom_9___26f56d2a9", "6094": "15___CATEGORICAL___nom_9___26fabafee", "6095": "15___CATEGORICAL___nom_9___2704ef3b8", "6096": "15___CATEGORICAL___nom_9___2707bfaa1", "6097": "15___CATEGORICAL___nom_9___2709d5e3e", "6098": "15___CATEGORICAL___nom_9___270e0a787", "6099": "15___CATEGORICAL___nom_9___270f2b817", "6100": "15___CATEGORICAL___nom_9___271d6bb19", "6101": "15___CATEGORICAL___nom_9___2720cf342", "6102": "15___CATEGORICAL___nom_9___27218c8bf", "6103": "15___CATEGORICAL___nom_9___27351cef0", "6104": "15___CATEGORICAL___nom_9___2739795da", "6105": "15___CATEGORICAL___nom_9___2744e07e6", "6106": "15___CATEGORICAL___nom_9___274e00caa", "6107": "15___CATEGORICAL___nom_9___274fd29af", "6108": "15___CATEGORICAL___nom_9___275044863", "6109": "15___CATEGORICAL___nom_9___27560dd68", "6110": "15___CATEGORICAL___nom_9___275f3e219", "6111": "15___CATEGORICAL___nom_9___275f9bcad", "6112": "15___CATEGORICAL___nom_9___276367107", "6113": "15___CATEGORICAL___nom_9___276525ee0", "6114": "15___CATEGORICAL___nom_9___2767d007b", "6115": "15___CATEGORICAL___nom_9___2767eb573", "6116": "15___CATEGORICAL___nom_9___277141f55", "6117": "15___CATEGORICAL___nom_9___2776cf8cc", "6118": "15___CATEGORICAL___nom_9___2778e9fb4", "6119": "15___CATEGORICAL___nom_9___277ba30e0", "6120": "15___CATEGORICAL___nom_9___278219ab4", "6121": "15___CATEGORICAL___nom_9___27844d4c7", "6122": "15___CATEGORICAL___nom_9___27845c7e7", "6123": "15___CATEGORICAL___nom_9___2788482f6", "6124": "15___CATEGORICAL___nom_9___278a10faf", "6125": "15___CATEGORICAL___nom_9___278c99c4b", "6126": "15___CATEGORICAL___nom_9___279015d77", "6127": "15___CATEGORICAL___nom_9___279ea7e28", "6128": "15___CATEGORICAL___nom_9___27a228369", "6129": "15___CATEGORICAL___nom_9___27a74fd20", "6130": "15___CATEGORICAL___nom_9___27aaab9cc", "6131": "15___CATEGORICAL___nom_9___27bbd2822", "6132": "15___CATEGORICAL___nom_9___27bc1e875", "6133": "15___CATEGORICAL___nom_9___27c01d16b", "6134": "15___CATEGORICAL___nom_9___27c271936", "6135": "15___CATEGORICAL___nom_9___27c2b9712", "6136": "15___CATEGORICAL___nom_9___27d292925", "6137": "15___CATEGORICAL___nom_9___27d830d40", "6138": "15___CATEGORICAL___nom_9___27d882d78", "6139": "15___CATEGORICAL___nom_9___27d932e0a", "6140": "15___CATEGORICAL___nom_9___27e1d13a9", "6141": "15___CATEGORICAL___nom_9___27eaec55a", "6142": "15___CATEGORICAL___nom_9___27f56ba8e", "6143": "15___CATEGORICAL___nom_9___27fe0bd65", "6144": "15___CATEGORICAL___nom_9___2809ad73d", "6145": "15___CATEGORICAL___nom_9___280f21d68", "6146": "15___CATEGORICAL___nom_9___281c19219", "6147": "15___CATEGORICAL___nom_9___28248c941", "6148": "15___CATEGORICAL___nom_9___282521897", "6149": "15___CATEGORICAL___nom_9___28278d68f", "6150": "15___CATEGORICAL___nom_9___2831e2219", "6151": "15___CATEGORICAL___nom_9___2833d2686", "6152": "15___CATEGORICAL___nom_9___283a4e24a", "6153": "15___CATEGORICAL___nom_9___283fdf6b4", "6154": "15___CATEGORICAL___nom_9___2842f795e", "6155": "15___CATEGORICAL___nom_9___2846bb420", "6156": "15___CATEGORICAL___nom_9___2846d79cd", "6157": "15___CATEGORICAL___nom_9___284a6ea9b", "6158": "15___CATEGORICAL___nom_9___284b92eea", "6159": "15___CATEGORICAL___nom_9___284c23ec5", "6160": "15___CATEGORICAL___nom_9___284f5c321", "6161": "15___CATEGORICAL___nom_9___2850297d8", "6162": "15___CATEGORICAL___nom_9___2851d5972", "6163": "15___CATEGORICAL___nom_9___2852de2d5", "6164": "15___CATEGORICAL___nom_9___285771075", "6165": "15___CATEGORICAL___nom_9___285e3d706", "6166": "15___CATEGORICAL___nom_9___285f847d6", "6167": "15___CATEGORICAL___nom_9___2861428b5", "6168": "15___CATEGORICAL___nom_9___286d02453", "6169": "15___CATEGORICAL___nom_9___2870d90b9", "6170": "15___CATEGORICAL___nom_9___287109623", "6171": "15___CATEGORICAL___nom_9___287aecbaf", "6172": "15___CATEGORICAL___nom_9___2883f1fde", "6173": "15___CATEGORICAL___nom_9___2888ffbcc", "6174": "15___CATEGORICAL___nom_9___28abc0433", "6175": "15___CATEGORICAL___nom_9___28acd7d63", "6176": "15___CATEGORICAL___nom_9___28b295de8", "6177": "15___CATEGORICAL___nom_9___28b7e2cd3", "6178": "15___CATEGORICAL___nom_9___28b8d7c34", "6179": "15___CATEGORICAL___nom_9___28bad1f4d", "6180": "15___CATEGORICAL___nom_9___28bc3c503", "6181": "15___CATEGORICAL___nom_9___28c347c9d", "6182": "15___CATEGORICAL___nom_9___28c61ad29", "6183": "15___CATEGORICAL___nom_9___28cfb1c7b", "6184": "15___CATEGORICAL___nom_9___28d293598", "6185": "15___CATEGORICAL___nom_9___28d62b5bb", "6186": "15___CATEGORICAL___nom_9___28da5f873", "6187": "15___CATEGORICAL___nom_9___28db700b1", "6188": "15___CATEGORICAL___nom_9___28e6d0043", "6189": "15___CATEGORICAL___nom_9___28f8684a2", "6190": "15___CATEGORICAL___nom_9___28ff2ec97", "6191": "15___CATEGORICAL___nom_9___29061a0eb", "6192": "15___CATEGORICAL___nom_9___290776f73", "6193": "15___CATEGORICAL___nom_9___2907d629d", "6194": "15___CATEGORICAL___nom_9___290a64fd9", "6195": "15___CATEGORICAL___nom_9___2916e09cb", "6196": "15___CATEGORICAL___nom_9___291add992", "6197": "15___CATEGORICAL___nom_9___291d33eed", "6198": "15___CATEGORICAL___nom_9___29224dd39", "6199": "15___CATEGORICAL___nom_9___2922b0e3b", "6200": "15___CATEGORICAL___nom_9___2937068a0", "6201": "15___CATEGORICAL___nom_9___29378cb05", "6202": "15___CATEGORICAL___nom_9___29416a6af", "6203": "15___CATEGORICAL___nom_9___294477098", "6204": "15___CATEGORICAL___nom_9___2948daa33", "6205": "15___CATEGORICAL___nom_9___2949737a9", "6206": "15___CATEGORICAL___nom_9___294a9a226", "6207": "15___CATEGORICAL___nom_9___294e156dc", "6208": "15___CATEGORICAL___nom_9___295036b6a", "6209": "15___CATEGORICAL___nom_9___295134864", "6210": "15___CATEGORICAL___nom_9___295dc5c43", "6211": "15___CATEGORICAL___nom_9___297abad9c", "6212": "15___CATEGORICAL___nom_9___297ed40fa", "6213": "15___CATEGORICAL___nom_9___29875e692", "6214": "15___CATEGORICAL___nom_9___2989fd6f9", "6215": "15___CATEGORICAL___nom_9___298dd4849", "6216": "15___CATEGORICAL___nom_9___299478ece", "6217": "15___CATEGORICAL___nom_9___299c72df8", "6218": "15___CATEGORICAL___nom_9___29a286917", "6219": "15___CATEGORICAL___nom_9___29a738267", "6220": "15___CATEGORICAL___nom_9___29a89e48d", "6221": "15___CATEGORICAL___nom_9___29a9ab66e", "6222": "15___CATEGORICAL___nom_9___29aa36e2a", "6223": "15___CATEGORICAL___nom_9___29aaa0e8f", "6224": "15___CATEGORICAL___nom_9___29c646311", "6225": "15___CATEGORICAL___nom_9___29cc51609", "6226": "15___CATEGORICAL___nom_9___29ccc606e", "6227": "15___CATEGORICAL___nom_9___29d86d935", "6228": "15___CATEGORICAL___nom_9___29e39adc1", "6229": "15___CATEGORICAL___nom_9___29e3ce34e", "6230": "15___CATEGORICAL___nom_9___29f09c508", "6231": "15___CATEGORICAL___nom_9___29f15aae9", "6232": "15___CATEGORICAL___nom_9___29f37a06f", "6233": "15___CATEGORICAL___nom_9___29fb11a3c", "6234": "15___CATEGORICAL___nom_9___2a01efeb6", "6235": "15___CATEGORICAL___nom_9___2a0574582", "6236": "15___CATEGORICAL___nom_9___2a13a01ea", "6237": "15___CATEGORICAL___nom_9___2a1e3b7cf", "6238": "15___CATEGORICAL___nom_9___2a1f83216", "6239": "15___CATEGORICAL___nom_9___2a1fc8eaa", "6240": "15___CATEGORICAL___nom_9___2a38052ec", "6241": "15___CATEGORICAL___nom_9___2a51bfcd4", "6242": "15___CATEGORICAL___nom_9___2a5675e23", "6243": "15___CATEGORICAL___nom_9___2a61f0054", "6244": "15___CATEGORICAL___nom_9___2a67d0375", "6245": "15___CATEGORICAL___nom_9___2a6a74fa9", "6246": "15___CATEGORICAL___nom_9___2a6ea0113", "6247": "15___CATEGORICAL___nom_9___2a6f7ac91", "6248": "15___CATEGORICAL___nom_9___2a716f52d", "6249": "15___CATEGORICAL___nom_9___2a79258d0", "6250": "15___CATEGORICAL___nom_9___2a82fd361", "6251": "15___CATEGORICAL___nom_9___2a8894bb8", "6252": "15___CATEGORICAL___nom_9___2a902328f", "6253": "15___CATEGORICAL___nom_9___2a915af6d", "6254": "15___CATEGORICAL___nom_9___2a9b9e3d8", "6255": "15___CATEGORICAL___nom_9___2aa35f17b", "6256": "15___CATEGORICAL___nom_9___2aa4eb9ad", "6257": "15___CATEGORICAL___nom_9___2aa7edf98", "6258": "15___CATEGORICAL___nom_9___2ab04ed9f", "6259": "15___CATEGORICAL___nom_9___2ab23de22", "6260": "15___CATEGORICAL___nom_9___2ab355f6c", "6261": "15___CATEGORICAL___nom_9___2ab8303f8", "6262": "15___CATEGORICAL___nom_9___2ac04ae80", "6263": "15___CATEGORICAL___nom_9___2ac0719a2", "6264": "15___CATEGORICAL___nom_9___2ac29ce83", "6265": "15___CATEGORICAL___nom_9___2ac936852", "6266": "15___CATEGORICAL___nom_9___2ad2e47d8", "6267": "15___CATEGORICAL___nom_9___2ad7329c2", "6268": "15___CATEGORICAL___nom_9___2ada60240", "6269": "15___CATEGORICAL___nom_9___2adbc74ae", "6270": "15___CATEGORICAL___nom_9___2adef65f1", "6271": "15___CATEGORICAL___nom_9___2af9cd822", "6272": "15___CATEGORICAL___nom_9___2b08acc20", "6273": "15___CATEGORICAL___nom_9___2b1330c3e", "6274": "15___CATEGORICAL___nom_9___2b16b66fe", "6275": "15___CATEGORICAL___nom_9___2b17e60b6", "6276": "15___CATEGORICAL___nom_9___2b1df14aa", "6277": "15___CATEGORICAL___nom_9___2b20d3dcc", "6278": "15___CATEGORICAL___nom_9___2b2c84db8", "6279": "15___CATEGORICAL___nom_9___2b303634c", "6280": "15___CATEGORICAL___nom_9___2b30ddd3d", "6281": "15___CATEGORICAL___nom_9___2b340644f", "6282": "15___CATEGORICAL___nom_9___2b415c02e", "6283": "15___CATEGORICAL___nom_9___2b41c4073", "6284": "15___CATEGORICAL___nom_9___2b48ecaa7", "6285": "15___CATEGORICAL___nom_9___2b4a106b7", "6286": "15___CATEGORICAL___nom_9___2b4e3e927", "6287": "15___CATEGORICAL___nom_9___2b5fe7487", "6288": "15___CATEGORICAL___nom_9___2b61d20e7", "6289": "15___CATEGORICAL___nom_9___2b64bdc73", "6290": "15___CATEGORICAL___nom_9___2b6b90741", "6291": "15___CATEGORICAL___nom_9___2b7212b50", "6292": "15___CATEGORICAL___nom_9___2b780b992", "6293": "15___CATEGORICAL___nom_9___2b797987d", "6294": "15___CATEGORICAL___nom_9___2b7da409d", "6295": "15___CATEGORICAL___nom_9___2b930f922", "6296": "15___CATEGORICAL___nom_9___2b9698958", "6297": "15___CATEGORICAL___nom_9___2b9ec6cae", "6298": "15___CATEGORICAL___nom_9___2ba4822aa", "6299": "15___CATEGORICAL___nom_9___2baa27545", "6300": "15___CATEGORICAL___nom_9___2bb0f1947", "6301": "15___CATEGORICAL___nom_9___2bc0ffb54", "6302": "15___CATEGORICAL___nom_9___2bcdfeceb", "6303": "15___CATEGORICAL___nom_9___2bd264012", "6304": "15___CATEGORICAL___nom_9___2bd4f366b", "6305": "15___CATEGORICAL___nom_9___2be42caf1", "6306": "15___CATEGORICAL___nom_9___2bf5b6577", "6307": "15___CATEGORICAL___nom_9___2bf5df371", "6308": "15___CATEGORICAL___nom_9___2bf99e5c8", "6309": "15___CATEGORICAL___nom_9___2c1650be1", "6310": "15___CATEGORICAL___nom_9___2c1bd0c09", "6311": "15___CATEGORICAL___nom_9___2c1fc84fe", "6312": "15___CATEGORICAL___nom_9___2c3156ce6", "6313": "15___CATEGORICAL___nom_9___2c3d78b0d", "6314": "15___CATEGORICAL___nom_9___2c4b71fd6", "6315": "15___CATEGORICAL___nom_9___2c4c65257", "6316": "15___CATEGORICAL___nom_9___2c5185016", "6317": "15___CATEGORICAL___nom_9___2c838ef71", "6318": "15___CATEGORICAL___nom_9___2c84c245d", "6319": "15___CATEGORICAL___nom_9___2c8e2af32", "6320": "15___CATEGORICAL___nom_9___2c9433f72", "6321": "15___CATEGORICAL___nom_9___2c9910305", "6322": "15___CATEGORICAL___nom_9___2ca16a193", "6323": "15___CATEGORICAL___nom_9___2ca464663", "6324": "15___CATEGORICAL___nom_9___2ca9ec341", "6325": "15___CATEGORICAL___nom_9___2cad5f2e7", "6326": "15___CATEGORICAL___nom_9___2cb3e36ad", "6327": "15___CATEGORICAL___nom_9___2cb4666f7", "6328": "15___CATEGORICAL___nom_9___2cc5cceeb", "6329": "15___CATEGORICAL___nom_9___2ccbe0a27", "6330": "15___CATEGORICAL___nom_9___2cd593221", "6331": "15___CATEGORICAL___nom_9___2ce508fc6", "6332": "15___CATEGORICAL___nom_9___2ce7706df", "6333": "15___CATEGORICAL___nom_9___2ceca3267", "6334": "15___CATEGORICAL___nom_9___2cf68844c", "6335": "15___CATEGORICAL___nom_9___2d002b925", "6336": "15___CATEGORICAL___nom_9___2d0157e20", "6337": "15___CATEGORICAL___nom_9___2d0956106", "6338": "15___CATEGORICAL___nom_9___2d10b5ae7", "6339": "15___CATEGORICAL___nom_9___2d119b624", "6340": "15___CATEGORICAL___nom_9___2d143cb9e", "6341": "15___CATEGORICAL___nom_9___2d183dbb9", "6342": "15___CATEGORICAL___nom_9___2d1a17b6d", "6343": "15___CATEGORICAL___nom_9___2d2eaca33", "6344": "15___CATEGORICAL___nom_9___2d317653a", "6345": "15___CATEGORICAL___nom_9___2d3aa0e86", "6346": "15___CATEGORICAL___nom_9___2d46b8020", "6347": "15___CATEGORICAL___nom_9___2d475ef0c", "6348": "15___CATEGORICAL___nom_9___2d4aeefbb", "6349": "15___CATEGORICAL___nom_9___2d53a379a", "6350": "15___CATEGORICAL___nom_9___2d545925e", "6351": "15___CATEGORICAL___nom_9___2d57b9da7", "6352": "15___CATEGORICAL___nom_9___2d5d2e7df", "6353": "15___CATEGORICAL___nom_9___2d5e1a033", "6354": "15___CATEGORICAL___nom_9___2d610f52c", "6355": "15___CATEGORICAL___nom_9___2d750471f", "6356": "15___CATEGORICAL___nom_9___2d771ce75", "6357": "15___CATEGORICAL___nom_9___2d794ad55", "6358": "15___CATEGORICAL___nom_9___2d82bfd6a", "6359": "15___CATEGORICAL___nom_9___2d88acb2d", "6360": "15___CATEGORICAL___nom_9___2d8e55f72", "6361": "15___CATEGORICAL___nom_9___2d9fb98f3", "6362": "15___CATEGORICAL___nom_9___2da8c4eb5", "6363": "15___CATEGORICAL___nom_9___2db14626d", "6364": "15___CATEGORICAL___nom_9___2db20e89d", "6365": "15___CATEGORICAL___nom_9___2db6ec809", "6366": "15___CATEGORICAL___nom_9___2db74d1fa", "6367": "15___CATEGORICAL___nom_9___2dbb2b661", "6368": "15___CATEGORICAL___nom_9___2dbda5cf3", "6369": "15___CATEGORICAL___nom_9___2dcaf711f", "6370": "15___CATEGORICAL___nom_9___2dd17ed11", "6371": "15___CATEGORICAL___nom_9___2dd1ec031", "6372": "15___CATEGORICAL___nom_9___2dd322ff0", "6373": "15___CATEGORICAL___nom_9___2dd4f7fc8", "6374": "15___CATEGORICAL___nom_9___2ddbf387e", "6375": "15___CATEGORICAL___nom_9___2de111b4b", "6376": "15___CATEGORICAL___nom_9___2de209544", "6377": "15___CATEGORICAL___nom_9___2de250039", "6378": "15___CATEGORICAL___nom_9___2de3641e3", "6379": "15___CATEGORICAL___nom_9___2de3f378f", "6380": "15___CATEGORICAL___nom_9___2dea55ae2", "6381": "15___CATEGORICAL___nom_9___2decf333d", "6382": "15___CATEGORICAL___nom_9___2df5a3bec", "6383": "15___CATEGORICAL___nom_9___2df77836b", "6384": "15___CATEGORICAL___nom_9___2dfcda2e4", "6385": "15___CATEGORICAL___nom_9___2e06ee962", "6386": "15___CATEGORICAL___nom_9___2e0c2032c", "6387": "15___CATEGORICAL___nom_9___2e143fa1e", "6388": "15___CATEGORICAL___nom_9___2e1e504d9", "6389": "15___CATEGORICAL___nom_9___2e2074b05", "6390": "15___CATEGORICAL___nom_9___2e22dbe82", "6391": "15___CATEGORICAL___nom_9___2e23d749c", "6392": "15___CATEGORICAL___nom_9___2e241bfc9", "6393": "15___CATEGORICAL___nom_9___2e2562e11", "6394": "15___CATEGORICAL___nom_9___2e289f741", "6395": "15___CATEGORICAL___nom_9___2e6ca3c35", "6396": "15___CATEGORICAL___nom_9___2e7194705", "6397": "15___CATEGORICAL___nom_9___2e7a831ab", "6398": "15___CATEGORICAL___nom_9___2e7a9c2b6", "6399": "15___CATEGORICAL___nom_9___2e810518b", "6400": "15___CATEGORICAL___nom_9___2e839288c", "6401": "15___CATEGORICAL___nom_9___2e84d1d9d", "6402": "15___CATEGORICAL___nom_9___2e851709b", "6403": "15___CATEGORICAL___nom_9___2e86a26fd", "6404": "15___CATEGORICAL___nom_9___2e86c16d4", "6405": "15___CATEGORICAL___nom_9___2e89cd6fe", "6406": "15___CATEGORICAL___nom_9___2e91661be", "6407": "15___CATEGORICAL___nom_9___2e91f0554", "6408": "15___CATEGORICAL___nom_9___2e947f252", "6409": "15___CATEGORICAL___nom_9___2e9813674", "6410": "15___CATEGORICAL___nom_9___2e9f3687f", "6411": "15___CATEGORICAL___nom_9___2ea8810fa", "6412": "15___CATEGORICAL___nom_9___2ea9c7ee6", "6413": "15___CATEGORICAL___nom_9___2eafaa3df", "6414": "15___CATEGORICAL___nom_9___2eafd33c5", "6415": "15___CATEGORICAL___nom_9___2ec53d6a9", "6416": "15___CATEGORICAL___nom_9___2ec776ab0", "6417": "15___CATEGORICAL___nom_9___2ecb72388", "6418": "15___CATEGORICAL___nom_9___2ecba0f2b", "6419": "15___CATEGORICAL___nom_9___2ed0fa574", "6420": "15___CATEGORICAL___nom_9___2ed224c63", "6421": "15___CATEGORICAL___nom_9___2ed7deaee", "6422": "15___CATEGORICAL___nom_9___2edb4c067", "6423": "15___CATEGORICAL___nom_9___2edd18d12", "6424": "15___CATEGORICAL___nom_9___2ee8897c6", "6425": "15___CATEGORICAL___nom_9___2eeb88041", "6426": "15___CATEGORICAL___nom_9___2eece9a80", "6427": "15___CATEGORICAL___nom_9___2eedd2784", "6428": "15___CATEGORICAL___nom_9___2ef79d9c0", "6429": "15___CATEGORICAL___nom_9___2efa65ad0", "6430": "15___CATEGORICAL___nom_9___2efc0ce6e", "6431": "15___CATEGORICAL___nom_9___2efcfee5b", "6432": "15___CATEGORICAL___nom_9___2f019b67a", "6433": "15___CATEGORICAL___nom_9___2f0560edb", "6434": "15___CATEGORICAL___nom_9___2f16ac495", "6435": "15___CATEGORICAL___nom_9___2f1b0d4ae", "6436": "15___CATEGORICAL___nom_9___2f2d66e15", "6437": "15___CATEGORICAL___nom_9___2f3491809", "6438": "15___CATEGORICAL___nom_9___2f3c84403", "6439": "15___CATEGORICAL___nom_9___2f3e52798", "6440": "15___CATEGORICAL___nom_9___2f40a1a71", "6441": "15___CATEGORICAL___nom_9___2f423506a", "6442": "15___CATEGORICAL___nom_9___2f472dd40", "6443": "15___CATEGORICAL___nom_9___2f4cb3d51", "6444": "15___CATEGORICAL___nom_9___2f51954ff", "6445": "15___CATEGORICAL___nom_9___2f51cf430", "6446": "15___CATEGORICAL___nom_9___2f51fe15f", "6447": "15___CATEGORICAL___nom_9___2f565e4b4", "6448": "15___CATEGORICAL___nom_9___2f64630cf", "6449": "15___CATEGORICAL___nom_9___2f6df7158", "6450": "15___CATEGORICAL___nom_9___2f6fdc7a2", "6451": "15___CATEGORICAL___nom_9___2f7925df7", "6452": "15___CATEGORICAL___nom_9___2f7f80aa3", "6453": "15___CATEGORICAL___nom_9___2f7f95214", "6454": "15___CATEGORICAL___nom_9___2f806ca4b", "6455": "15___CATEGORICAL___nom_9___2f8a07f0a", "6456": "15___CATEGORICAL___nom_9___2f8d4077d", "6457": "15___CATEGORICAL___nom_9___2f986ef59", "6458": "15___CATEGORICAL___nom_9___2f98a197a", "6459": "15___CATEGORICAL___nom_9___2f9fa7301", "6460": "15___CATEGORICAL___nom_9___2fa38c324", "6461": "15___CATEGORICAL___nom_9___2fa5db145", "6462": "15___CATEGORICAL___nom_9___2fa60384e", "6463": "15___CATEGORICAL___nom_9___2fa668675", "6464": "15___CATEGORICAL___nom_9___2fa6e12f9", "6465": "15___CATEGORICAL___nom_9___2faa8f67c", "6466": "15___CATEGORICAL___nom_9___2fb9f753d", "6467": "15___CATEGORICAL___nom_9___2fbd4adbc", "6468": "15___CATEGORICAL___nom_9___2fc029e58", "6469": "15___CATEGORICAL___nom_9___2fc3c2fde", "6470": "15___CATEGORICAL___nom_9___2fcdfbfd5", "6471": "15___CATEGORICAL___nom_9___2fcf376cc", "6472": "15___CATEGORICAL___nom_9___2fd2493ba", "6473": "15___CATEGORICAL___nom_9___2fd8f5b15", "6474": "15___CATEGORICAL___nom_9___2fdf08bc1", "6475": "15___CATEGORICAL___nom_9___2fe2bd056", "6476": "15___CATEGORICAL___nom_9___2fe44b326", "6477": "15___CATEGORICAL___nom_9___2fec2bcc2", "6478": "15___CATEGORICAL___nom_9___2ff49e0c6", "6479": "15___CATEGORICAL___nom_9___2ff729edf", "6480": "15___CATEGORICAL___nom_9___2ffa8645e", "6481": "15___CATEGORICAL___nom_9___30019e950", "6482": "15___CATEGORICAL___nom_9___30027b312", "6483": "15___CATEGORICAL___nom_9___301021025", "6484": "15___CATEGORICAL___nom_9___3013ced9b", "6485": "15___CATEGORICAL___nom_9___3016aaecd", "6486": "15___CATEGORICAL___nom_9___30171dbca", "6487": "15___CATEGORICAL___nom_9___3017ffa43", "6488": "15___CATEGORICAL___nom_9___301cceaf6", "6489": "15___CATEGORICAL___nom_9___30271f4a7", "6490": "15___CATEGORICAL___nom_9___3029a123c", "6491": "15___CATEGORICAL___nom_9___302a99430", "6492": "15___CATEGORICAL___nom_9___303658335", "6493": "15___CATEGORICAL___nom_9___3036c9b91", "6494": "15___CATEGORICAL___nom_9___3037885aa", "6495": "15___CATEGORICAL___nom_9___303adef79", "6496": "15___CATEGORICAL___nom_9___3040b4dce", "6497": "15___CATEGORICAL___nom_9___3043bd39e", "6498": "15___CATEGORICAL___nom_9___304980d8a", "6499": "15___CATEGORICAL___nom_9___304ae663d", "6500": "15___CATEGORICAL___nom_9___304e14210", "6501": "15___CATEGORICAL___nom_9___30537d57e", "6502": "15___CATEGORICAL___nom_9___3055a191d", "6503": "15___CATEGORICAL___nom_9___305945640", "6504": "15___CATEGORICAL___nom_9___306169878", "6505": "15___CATEGORICAL___nom_9___3066aa6fb", "6506": "15___CATEGORICAL___nom_9___30690e6a1", "6507": "15___CATEGORICAL___nom_9___306d47883", "6508": "15___CATEGORICAL___nom_9___306d87cc1", "6509": "15___CATEGORICAL___nom_9___306ddd1cf", "6510": "15___CATEGORICAL___nom_9___306e8def6", "6511": "15___CATEGORICAL___nom_9___3071bf497", "6512": "15___CATEGORICAL___nom_9___3077ec7a0", "6513": "15___CATEGORICAL___nom_9___307c727c9", "6514": "15___CATEGORICAL___nom_9___3085b1d40", "6515": "15___CATEGORICAL___nom_9___308a63a5a", "6516": "15___CATEGORICAL___nom_9___3091bb06b", "6517": "15___CATEGORICAL___nom_9___3092da624", "6518": "15___CATEGORICAL___nom_9___309986181", "6519": "15___CATEGORICAL___nom_9___309f0151e", "6520": "15___CATEGORICAL___nom_9___30a167b94", "6521": "15___CATEGORICAL___nom_9___30a1f90bd", "6522": "15___CATEGORICAL___nom_9___30a93b8b6", "6523": "15___CATEGORICAL___nom_9___30a9b1e47", "6524": "15___CATEGORICAL___nom_9___30bb2b1d6", "6525": "15___CATEGORICAL___nom_9___30c195bbc", "6526": "15___CATEGORICAL___nom_9___30c6c6c2c", "6527": "15___CATEGORICAL___nom_9___30cdac589", "6528": "15___CATEGORICAL___nom_9___30d1d0cc5", "6529": "15___CATEGORICAL___nom_9___30d8f70f8", "6530": "15___CATEGORICAL___nom_9___30db25ed7", "6531": "15___CATEGORICAL___nom_9___30e3443d5", "6532": "15___CATEGORICAL___nom_9___30eb31338", "6533": "15___CATEGORICAL___nom_9___30f9fa5d1", "6534": "15___CATEGORICAL___nom_9___30fea1919", "6535": "15___CATEGORICAL___nom_9___31001c0c9", "6536": "15___CATEGORICAL___nom_9___310232c22", "6537": "15___CATEGORICAL___nom_9___310ec456e", "6538": "15___CATEGORICAL___nom_9___311506eb6", "6539": "15___CATEGORICAL___nom_9___3118b1e0e", "6540": "15___CATEGORICAL___nom_9___311cf4371", "6541": "15___CATEGORICAL___nom_9___312347adf", "6542": "15___CATEGORICAL___nom_9___312398d90", "6543": "15___CATEGORICAL___nom_9___31240cd0f", "6544": "15___CATEGORICAL___nom_9___3124f909b", "6545": "15___CATEGORICAL___nom_9___312c72ae8", "6546": "15___CATEGORICAL___nom_9___312d44fd7", "6547": "15___CATEGORICAL___nom_9___3141e09ca", "6548": "15___CATEGORICAL___nom_9___31452dcd8", "6549": "15___CATEGORICAL___nom_9___3146be763", "6550": "15___CATEGORICAL___nom_9___314af31ce", "6551": "15___CATEGORICAL___nom_9___314c75259", "6552": "15___CATEGORICAL___nom_9___314dcc15b", "6553": "15___CATEGORICAL___nom_9___315102c0c", "6554": "15___CATEGORICAL___nom_9___3158f8b4d", "6555": "15___CATEGORICAL___nom_9___316797284", "6556": "15___CATEGORICAL___nom_9___316fbea4a", "6557": "15___CATEGORICAL___nom_9___3176b5b7e", "6558": "15___CATEGORICAL___nom_9___317e905e7", "6559": "15___CATEGORICAL___nom_9___317f88f3a", "6560": "15___CATEGORICAL___nom_9___3181578a6", "6561": "15___CATEGORICAL___nom_9___3181c050f", "6562": "15___CATEGORICAL___nom_9___318a767ad", "6563": "15___CATEGORICAL___nom_9___318cf92a9", "6564": "15___CATEGORICAL___nom_9___31919077f", "6565": "15___CATEGORICAL___nom_9___31938926b", "6566": "15___CATEGORICAL___nom_9___3197a3e41", "6567": "15___CATEGORICAL___nom_9___31a6d0f65", "6568": "15___CATEGORICAL___nom_9___31a856faa", "6569": "15___CATEGORICAL___nom_9___31ad333d0", "6570": "15___CATEGORICAL___nom_9___31adff5bb", "6571": "15___CATEGORICAL___nom_9___31aea1cb5", "6572": "15___CATEGORICAL___nom_9___31b70c441", "6573": "15___CATEGORICAL___nom_9___31d46a787", "6574": "15___CATEGORICAL___nom_9___31d4ca91d", "6575": "15___CATEGORICAL___nom_9___31d58e578", "6576": "15___CATEGORICAL___nom_9___31d5c7f1b", "6577": "15___CATEGORICAL___nom_9___31d810f1b", "6578": "15___CATEGORICAL___nom_9___31da7c687", "6579": "15___CATEGORICAL___nom_9___31dd383a9", "6580": "15___CATEGORICAL___nom_9___31e3dae10", "6581": "15___CATEGORICAL___nom_9___31e607baf", "6582": "15___CATEGORICAL___nom_9___31f136e15", "6583": "15___CATEGORICAL___nom_9___31f33d73f", "6584": "15___CATEGORICAL___nom_9___31f429917", "6585": "15___CATEGORICAL___nom_9___31f4e88fc", "6586": "15___CATEGORICAL___nom_9___31f87c4f4", "6587": "15___CATEGORICAL___nom_9___31fbf0e61", "6588": "15___CATEGORICAL___nom_9___31fdec7a4", "6589": "15___CATEGORICAL___nom_9___31fe239eb", "6590": "15___CATEGORICAL___nom_9___31feefd65", "6591": "15___CATEGORICAL___nom_9___3205392d0", "6592": "15___CATEGORICAL___nom_9___32078926a", "6593": "15___CATEGORICAL___nom_9___3209f3332", "6594": "15___CATEGORICAL___nom_9___320ee8f59", "6595": "15___CATEGORICAL___nom_9___321ad1bd2", "6596": "15___CATEGORICAL___nom_9___322663c6a", "6597": "15___CATEGORICAL___nom_9___322e5a5a6", "6598": "15___CATEGORICAL___nom_9___323e6884a", "6599": "15___CATEGORICAL___nom_9___32424e943", "6600": "15___CATEGORICAL___nom_9___32428ce3c", "6601": "15___CATEGORICAL___nom_9___324725131", "6602": "15___CATEGORICAL___nom_9___32480d084", "6603": "15___CATEGORICAL___nom_9___324f669a2", "6604": "15___CATEGORICAL___nom_9___32529dcd8", "6605": "15___CATEGORICAL___nom_9___3252e3c39", "6606": "15___CATEGORICAL___nom_9___32537375c", "6607": "15___CATEGORICAL___nom_9___3253c1122", "6608": "15___CATEGORICAL___nom_9___3254574d1", "6609": "15___CATEGORICAL___nom_9___325fb847d", "6610": "15___CATEGORICAL___nom_9___3261ff038", "6611": "15___CATEGORICAL___nom_9___32698ed84", "6612": "15___CATEGORICAL___nom_9___326ba0aa0", "6613": "15___CATEGORICAL___nom_9___326e70a8c", "6614": "15___CATEGORICAL___nom_9___327348154", "6615": "15___CATEGORICAL___nom_9___327c6ce97", "6616": "15___CATEGORICAL___nom_9___328bd107a", "6617": "15___CATEGORICAL___nom_9___328f282a6", "6618": "15___CATEGORICAL___nom_9___3295f7a17", "6619": "15___CATEGORICAL___nom_9___329a3f42b", "6620": "15___CATEGORICAL___nom_9___329abfa18", "6621": "15___CATEGORICAL___nom_9___32a243d97", "6622": "15___CATEGORICAL___nom_9___32ac7e710", "6623": "15___CATEGORICAL___nom_9___32b1e5377", "6624": "15___CATEGORICAL___nom_9___32b24ee74", "6625": "15___CATEGORICAL___nom_9___32b6433a0", "6626": "15___CATEGORICAL___nom_9___32b95db8f", "6627": "15___CATEGORICAL___nom_9___32bbe0386", "6628": "15___CATEGORICAL___nom_9___32c103da9", "6629": "15___CATEGORICAL___nom_9___32d59b280", "6630": "15___CATEGORICAL___nom_9___32db2966b", "6631": "15___CATEGORICAL___nom_9___32dd0ec55", "6632": "15___CATEGORICAL___nom_9___32fc1c6a2", "6633": "15___CATEGORICAL___nom_9___33056891c", "6634": "15___CATEGORICAL___nom_9___3307f8bae", "6635": "15___CATEGORICAL___nom_9___3308479bf", "6636": "15___CATEGORICAL___nom_9___330bfa4f3", "6637": "15___CATEGORICAL___nom_9___331cdd840", "6638": "15___CATEGORICAL___nom_9___3328e4410", "6639": "15___CATEGORICAL___nom_9___332ab0429", "6640": "15___CATEGORICAL___nom_9___332ea8a81", "6641": "15___CATEGORICAL___nom_9___3332bf676", "6642": "15___CATEGORICAL___nom_9___333c42276", "6643": "15___CATEGORICAL___nom_9___3347bbd9b", "6644": "15___CATEGORICAL___nom_9___334806524", "6645": "15___CATEGORICAL___nom_9___334a9615e", "6646": "15___CATEGORICAL___nom_9___335a156ba", "6647": "15___CATEGORICAL___nom_9___335b67fc9", "6648": "15___CATEGORICAL___nom_9___335deff4c", "6649": "15___CATEGORICAL___nom_9___336fc8cee", "6650": "15___CATEGORICAL___nom_9___337de6c55", "6651": "15___CATEGORICAL___nom_9___33857f866", "6652": "15___CATEGORICAL___nom_9___338914174", "6653": "15___CATEGORICAL___nom_9___3389ec8c8", "6654": "15___CATEGORICAL___nom_9___338baaae9", "6655": "15___CATEGORICAL___nom_9___3391f094d", "6656": "15___CATEGORICAL___nom_9___339645e33", "6657": "15___CATEGORICAL___nom_9___339cf462f", "6658": "15___CATEGORICAL___nom_9___339d54137", "6659": "15___CATEGORICAL___nom_9___33a081789", "6660": "15___CATEGORICAL___nom_9___33a109258", "6661": "15___CATEGORICAL___nom_9___33a87f003", "6662": "15___CATEGORICAL___nom_9___33c956aa6", "6663": "15___CATEGORICAL___nom_9___33cda2f10", "6664": "15___CATEGORICAL___nom_9___33cf2b818", "6665": "15___CATEGORICAL___nom_9___33cf5c159", "6666": "15___CATEGORICAL___nom_9___33d1eb182", "6667": "15___CATEGORICAL___nom_9___33d284932", "6668": "15___CATEGORICAL___nom_9___33dd3cf4b", "6669": "15___CATEGORICAL___nom_9___33dd7fc1f", "6670": "15___CATEGORICAL___nom_9___33de73368", "6671": "15___CATEGORICAL___nom_9___33f0a51ac", "6672": "15___CATEGORICAL___nom_9___33fa02c89", "6673": "15___CATEGORICAL___nom_9___33fedd56a", "6674": "15___CATEGORICAL___nom_9___34018922b", "6675": "15___CATEGORICAL___nom_9___34037a62f", "6676": "15___CATEGORICAL___nom_9___34058a17c", "6677": "15___CATEGORICAL___nom_9___3407c699c", "6678": "15___CATEGORICAL___nom_9___34167c3f1", "6679": "15___CATEGORICAL___nom_9___3419a5d4e", "6680": "15___CATEGORICAL___nom_9___341a024c6", "6681": "15___CATEGORICAL___nom_9___3427798f8", "6682": "15___CATEGORICAL___nom_9___34297f5e6", "6683": "15___CATEGORICAL___nom_9___342996478", "6684": "15___CATEGORICAL___nom_9___3430fbd6d", "6685": "15___CATEGORICAL___nom_9___343650ddf", "6686": "15___CATEGORICAL___nom_9___343df227e", "6687": "15___CATEGORICAL___nom_9___343e79267", "6688": "15___CATEGORICAL___nom_9___34432c6f9", "6689": "15___CATEGORICAL___nom_9___344796232", "6690": "15___CATEGORICAL___nom_9___34489f674", "6691": "15___CATEGORICAL___nom_9___344bbbd10", "6692": "15___CATEGORICAL___nom_9___344da5a42", "6693": "15___CATEGORICAL___nom_9___345076f4c", "6694": "15___CATEGORICAL___nom_9___345193f10", "6695": "15___CATEGORICAL___nom_9___345f9a78c", "6696": "15___CATEGORICAL___nom_9___34652bd97", "6697": "15___CATEGORICAL___nom_9___34668cacd", "6698": "15___CATEGORICAL___nom_9___347318500", "6699": "15___CATEGORICAL___nom_9___34760ea8a", "6700": "15___CATEGORICAL___nom_9___347e19804", "6701": "15___CATEGORICAL___nom_9___34816bed2", "6702": "15___CATEGORICAL___nom_9___348516d12", "6703": "15___CATEGORICAL___nom_9___34894f229", "6704": "15___CATEGORICAL___nom_9___34899a8ab", "6705": "15___CATEGORICAL___nom_9___3495a3d9c", "6706": "15___CATEGORICAL___nom_9___3497ec01c", "6707": "15___CATEGORICAL___nom_9___349fadfe4", "6708": "15___CATEGORICAL___nom_9___34a510b1c", "6709": "15___CATEGORICAL___nom_9___34a66fc7a", "6710": "15___CATEGORICAL___nom_9___34a7273bf", "6711": "15___CATEGORICAL___nom_9___34b345fe4", "6712": "15___CATEGORICAL___nom_9___34baf0344", "6713": "15___CATEGORICAL___nom_9___34bc0b300", "6714": "15___CATEGORICAL___nom_9___34be5c172", "6715": "15___CATEGORICAL___nom_9___34c8c9e45", "6716": "15___CATEGORICAL___nom_9___34cd0a830", "6717": "15___CATEGORICAL___nom_9___34d1400ca", "6718": "15___CATEGORICAL___nom_9___34d55f146", "6719": "15___CATEGORICAL___nom_9___34d7fc917", "6720": "15___CATEGORICAL___nom_9___34daa43fc", "6721": "15___CATEGORICAL___nom_9___34dceca48", "6722": "15___CATEGORICAL___nom_9___34e4c5175", "6723": "15___CATEGORICAL___nom_9___34e53291a", "6724": "15___CATEGORICAL___nom_9___34edc48cc", "6725": "15___CATEGORICAL___nom_9___34f2a8f55", "6726": "15___CATEGORICAL___nom_9___35022c4bd", "6727": "15___CATEGORICAL___nom_9___350467a4f", "6728": "15___CATEGORICAL___nom_9___350aa92e0", "6729": "15___CATEGORICAL___nom_9___351c4abf9", "6730": "15___CATEGORICAL___nom_9___351f7a2d3", "6731": "15___CATEGORICAL___nom_9___3528fdd7c", "6732": "15___CATEGORICAL___nom_9___352d7c0cb", "6733": "15___CATEGORICAL___nom_9___352da06d5", "6734": "15___CATEGORICAL___nom_9___352e1994c", "6735": "15___CATEGORICAL___nom_9___353042f7f", "6736": "15___CATEGORICAL___nom_9___35345465a", "6737": "15___CATEGORICAL___nom_9___3536621a6", "6738": "15___CATEGORICAL___nom_9___35374c0f7", "6739": "15___CATEGORICAL___nom_9___353c174dc", "6740": "15___CATEGORICAL___nom_9___353f29921", "6741": "15___CATEGORICAL___nom_9___35435bf4a", "6742": "15___CATEGORICAL___nom_9___354aece77", "6743": "15___CATEGORICAL___nom_9___354ce3046", "6744": "15___CATEGORICAL___nom_9___35526166c", "6745": "15___CATEGORICAL___nom_9___3552f08ae", "6746": "15___CATEGORICAL___nom_9___355afc645", "6747": "15___CATEGORICAL___nom_9___355b044a0", "6748": "15___CATEGORICAL___nom_9___356203f9f", "6749": "15___CATEGORICAL___nom_9___356707061", "6750": "15___CATEGORICAL___nom_9___356938755", "6751": "15___CATEGORICAL___nom_9___356e7ed92", "6752": "15___CATEGORICAL___nom_9___357131f4f", "6753": "15___CATEGORICAL___nom_9___357645a27", "6754": "15___CATEGORICAL___nom_9___357ae0338", "6755": "15___CATEGORICAL___nom_9___357e340f8", "6756": "15___CATEGORICAL___nom_9___357eac9e6", "6757": "15___CATEGORICAL___nom_9___35899a2c6", "6758": "15___CATEGORICAL___nom_9___3590d0ca6", "6759": "15___CATEGORICAL___nom_9___35a9655be", "6760": "15___CATEGORICAL___nom_9___35a9ee7ef", "6761": "15___CATEGORICAL___nom_9___35ab040ba", "6762": "15___CATEGORICAL___nom_9___35b44a970", "6763": "15___CATEGORICAL___nom_9___35b5d80d2", "6764": "15___CATEGORICAL___nom_9___35b614816", "6765": "15___CATEGORICAL___nom_9___35c121c88", "6766": "15___CATEGORICAL___nom_9___35c542596", "6767": "15___CATEGORICAL___nom_9___35c745696", "6768": "15___CATEGORICAL___nom_9___35dd3211c", "6769": "15___CATEGORICAL___nom_9___35e0f0c9a", "6770": "15___CATEGORICAL___nom_9___35e5e0629", "6771": "15___CATEGORICAL___nom_9___35e8ac209", "6772": "15___CATEGORICAL___nom_9___35f304329", "6773": "15___CATEGORICAL___nom_9___35f93de30", "6774": "15___CATEGORICAL___nom_9___3600757c9", "6775": "15___CATEGORICAL___nom_9___36028e582", "6776": "15___CATEGORICAL___nom_9___360932674", "6777": "15___CATEGORICAL___nom_9___3609df9c9", "6778": "15___CATEGORICAL___nom_9___360a1ebdf", "6779": "15___CATEGORICAL___nom_9___360fb7cd8", "6780": "15___CATEGORICAL___nom_9___3612da42c", "6781": "15___CATEGORICAL___nom_9___361b02421", "6782": "15___CATEGORICAL___nom_9___3626c38e6", "6783": "15___CATEGORICAL___nom_9___362c3ab3e", "6784": "15___CATEGORICAL___nom_9___3631dbcaf", "6785": "15___CATEGORICAL___nom_9___364249a60", "6786": "15___CATEGORICAL___nom_9___364f539d4", "6787": "15___CATEGORICAL___nom_9___365061510", "6788": "15___CATEGORICAL___nom_9___365596e3e", "6789": "15___CATEGORICAL___nom_9___3656b2aee", "6790": "15___CATEGORICAL___nom_9___3660da2f6", "6791": "15___CATEGORICAL___nom_9___36614815b", "6792": "15___CATEGORICAL___nom_9___366278f40", "6793": "15___CATEGORICAL___nom_9___367011eab", "6794": "15___CATEGORICAL___nom_9___3670c4b0f", "6795": "15___CATEGORICAL___nom_9___36787852d", "6796": "15___CATEGORICAL___nom_9___368e46089", "6797": "15___CATEGORICAL___nom_9___368f28e0e", "6798": "15___CATEGORICAL___nom_9___3690edf48", "6799": "15___CATEGORICAL___nom_9___369ee33a3", "6800": "15___CATEGORICAL___nom_9___36ab0df57", "6801": "15___CATEGORICAL___nom_9___36ab60fba", "6802": "15___CATEGORICAL___nom_9___36b5efb6a", "6803": "15___CATEGORICAL___nom_9___36b66804c", "6804": "15___CATEGORICAL___nom_9___36b692390", "6805": "15___CATEGORICAL___nom_9___36bb704cc", "6806": "15___CATEGORICAL___nom_9___36bdd37aa", "6807": "15___CATEGORICAL___nom_9___36bf5e5e2", "6808": "15___CATEGORICAL___nom_9___36c83a38c", "6809": "15___CATEGORICAL___nom_9___36c939379", "6810": "15___CATEGORICAL___nom_9___36d54fb3e", "6811": "15___CATEGORICAL___nom_9___36dae1796", "6812": "15___CATEGORICAL___nom_9___36e0b9e43", "6813": "15___CATEGORICAL___nom_9___36e621c45", "6814": "15___CATEGORICAL___nom_9___36ea6b583", "6815": "15___CATEGORICAL___nom_9___36f5176f3", "6816": "15___CATEGORICAL___nom_9___36f53c7f9", "6817": "15___CATEGORICAL___nom_9___36fc09d07", "6818": "15___CATEGORICAL___nom_9___36ff1c818", "6819": "15___CATEGORICAL___nom_9___37008bc7a", "6820": "15___CATEGORICAL___nom_9___37015bcb0", "6821": "15___CATEGORICAL___nom_9___3701b06e9", "6822": "15___CATEGORICAL___nom_9___37069902e", "6823": "15___CATEGORICAL___nom_9___370d4eab1", "6824": "15___CATEGORICAL___nom_9___37132b5f0", "6825": "15___CATEGORICAL___nom_9___371360b69", "6826": "15___CATEGORICAL___nom_9___3719a4abf", "6827": "15___CATEGORICAL___nom_9___3719f0f5e", "6828": "15___CATEGORICAL___nom_9___371b27023", "6829": "15___CATEGORICAL___nom_9___371fa9a31", "6830": "15___CATEGORICAL___nom_9___372bf4d06", "6831": "15___CATEGORICAL___nom_9___372ede455", "6832": "15___CATEGORICAL___nom_9___373421fe5", "6833": "15___CATEGORICAL___nom_9___37355e728", "6834": "15___CATEGORICAL___nom_9___373e7f5e8", "6835": "15___CATEGORICAL___nom_9___3742db788", "6836": "15___CATEGORICAL___nom_9___375dafba0", "6837": "15___CATEGORICAL___nom_9___375e17607", "6838": "15___CATEGORICAL___nom_9___37618b5a3", "6839": "15___CATEGORICAL___nom_9___3767f816e", "6840": "15___CATEGORICAL___nom_9___376d38af6", "6841": "15___CATEGORICAL___nom_9___37775e3eb", "6842": "15___CATEGORICAL___nom_9___3777c3baf", "6843": "15___CATEGORICAL___nom_9___3783095dc", "6844": "15___CATEGORICAL___nom_9___3785bb6de", "6845": "15___CATEGORICAL___nom_9___378a735f5", "6846": "15___CATEGORICAL___nom_9___378b87bbb", "6847": "15___CATEGORICAL___nom_9___378e34b74", "6848": "15___CATEGORICAL___nom_9___379073177", "6849": "15___CATEGORICAL___nom_9___37a54d662", "6850": "15___CATEGORICAL___nom_9___37a8dd691", "6851": "15___CATEGORICAL___nom_9___37addfb58", "6852": "15___CATEGORICAL___nom_9___37aea9cb5", "6853": "15___CATEGORICAL___nom_9___37afba0f9", "6854": "15___CATEGORICAL___nom_9___37b254aa6", "6855": "15___CATEGORICAL___nom_9___37b863a53", "6856": "15___CATEGORICAL___nom_9___37ba401ce", "6857": "15___CATEGORICAL___nom_9___37be2738a", "6858": "15___CATEGORICAL___nom_9___37bf5cdfb", "6859": "15___CATEGORICAL___nom_9___37bf7f6bf", "6860": "15___CATEGORICAL___nom_9___37c2b80b0", "6861": "15___CATEGORICAL___nom_9___37d24e651", "6862": "15___CATEGORICAL___nom_9___37d96971f", "6863": "15___CATEGORICAL___nom_9___37e9d6719", "6864": "15___CATEGORICAL___nom_9___37ed108a4", "6865": "15___CATEGORICAL___nom_9___37f280e33", "6866": "15___CATEGORICAL___nom_9___37faaf21c", "6867": "15___CATEGORICAL___nom_9___38039d3a8", "6868": "15___CATEGORICAL___nom_9___3807016a0", "6869": "15___CATEGORICAL___nom_9___380bd5f74", "6870": "15___CATEGORICAL___nom_9___381afb28d", "6871": "15___CATEGORICAL___nom_9___381c9c6b7", "6872": "15___CATEGORICAL___nom_9___381e541af", "6873": "15___CATEGORICAL___nom_9___381ec1bb3", "6874": "15___CATEGORICAL___nom_9___3824e084d", "6875": "15___CATEGORICAL___nom_9___383274739", "6876": "15___CATEGORICAL___nom_9___383d8a64b", "6877": "15___CATEGORICAL___nom_9___38470f7db", "6878": "15___CATEGORICAL___nom_9___384aeeadc", "6879": "15___CATEGORICAL___nom_9___38596ae44", "6880": "15___CATEGORICAL___nom_9___386b29a58", "6881": "15___CATEGORICAL___nom_9___387386589", "6882": "15___CATEGORICAL___nom_9___3878ed87b", "6883": "15___CATEGORICAL___nom_9___387f99ecb", "6884": "15___CATEGORICAL___nom_9___3889c105a", "6885": "15___CATEGORICAL___nom_9___389e323e8", "6886": "15___CATEGORICAL___nom_9___389fc6a63", "6887": "15___CATEGORICAL___nom_9___38a3b1fa7", "6888": "15___CATEGORICAL___nom_9___38b51e7a0", "6889": "15___CATEGORICAL___nom_9___38b693fbf", "6890": "15___CATEGORICAL___nom_9___38b7a9b25", "6891": "15___CATEGORICAL___nom_9___38bd25225", "6892": "15___CATEGORICAL___nom_9___38c04f763", "6893": "15___CATEGORICAL___nom_9___38c4cb5fc", "6894": "15___CATEGORICAL___nom_9___38c67dcea", "6895": "15___CATEGORICAL___nom_9___38cc53d15", "6896": "15___CATEGORICAL___nom_9___38cd3ce56", "6897": "15___CATEGORICAL___nom_9___38d369e78", "6898": "15___CATEGORICAL___nom_9___38d68065f", "6899": "15___CATEGORICAL___nom_9___38dbaf20b", "6900": "15___CATEGORICAL___nom_9___38dc68d0c", "6901": "15___CATEGORICAL___nom_9___38dd5d85d", "6902": "15___CATEGORICAL___nom_9___38dd8cbc6", "6903": "15___CATEGORICAL___nom_9___38e127e10", "6904": "15___CATEGORICAL___nom_9___38e7db22d", "6905": "15___CATEGORICAL___nom_9___38f0ed9f7", "6906": "15___CATEGORICAL___nom_9___38f1f6ea6", "6907": "15___CATEGORICAL___nom_9___38f2f165c", "6908": "15___CATEGORICAL___nom_9___38ff1f21c", "6909": "15___CATEGORICAL___nom_9___38ff77909", "6910": "15___CATEGORICAL___nom_9___3908b8f28", "6911": "15___CATEGORICAL___nom_9___390d689f5", "6912": "15___CATEGORICAL___nom_9___3912f007c", "6913": "15___CATEGORICAL___nom_9___391715e50", "6914": "15___CATEGORICAL___nom_9___391fc8a34", "6915": "15___CATEGORICAL___nom_9___392467fdc", "6916": "15___CATEGORICAL___nom_9___392551dd3", "6917": "15___CATEGORICAL___nom_9___39274f6ab", "6918": "15___CATEGORICAL___nom_9___392a6fe1a", "6919": "15___CATEGORICAL___nom_9___392c9f997", "6920": "15___CATEGORICAL___nom_9___39322584a", "6921": "15___CATEGORICAL___nom_9___39373458d", "6922": "15___CATEGORICAL___nom_9___39386c39f", "6923": "15___CATEGORICAL___nom_9___393ad6d08", "6924": "15___CATEGORICAL___nom_9___393d214b9", "6925": "15___CATEGORICAL___nom_9___3945ce65c", "6926": "15___CATEGORICAL___nom_9___394849927", "6927": "15___CATEGORICAL___nom_9___394a634c4", "6928": "15___CATEGORICAL___nom_9___394b68eb6", "6929": "15___CATEGORICAL___nom_9___394fd3c35", "6930": "15___CATEGORICAL___nom_9___3950ad563", "6931": "15___CATEGORICAL___nom_9___39515531e", "6932": "15___CATEGORICAL___nom_9___395e89b6b", "6933": "15___CATEGORICAL___nom_9___395e9cc94", "6934": "15___CATEGORICAL___nom_9___396268c63", "6935": "15___CATEGORICAL___nom_9___39661f41c", "6936": "15___CATEGORICAL___nom_9___396afd636", "6937": "15___CATEGORICAL___nom_9___39758d7f9", "6938": "15___CATEGORICAL___nom_9___397c9eb1b", "6939": "15___CATEGORICAL___nom_9___39837699e", "6940": "15___CATEGORICAL___nom_9___39849b89b", "6941": "15___CATEGORICAL___nom_9___3984bcd80", "6942": "15___CATEGORICAL___nom_9___398664aa6", "6943": "15___CATEGORICAL___nom_9___398904757", "6944": "15___CATEGORICAL___nom_9___39940fa79", "6945": "15___CATEGORICAL___nom_9___3996e35b1", "6946": "15___CATEGORICAL___nom_9___399dab91c", "6947": "15___CATEGORICAL___nom_9___39a5382b0", "6948": "15___CATEGORICAL___nom_9___39b825b9b", "6949": "15___CATEGORICAL___nom_9___39bb4f59a", "6950": "15___CATEGORICAL___nom_9___39c9c5633", "6951": "15___CATEGORICAL___nom_9___39d21357f", "6952": "15___CATEGORICAL___nom_9___39d328853", "6953": "15___CATEGORICAL___nom_9___39d7eff45", "6954": "15___CATEGORICAL___nom_9___39dcb81e9", "6955": "15___CATEGORICAL___nom_9___39ddfea2c", "6956": "15___CATEGORICAL___nom_9___39de955fe", "6957": "15___CATEGORICAL___nom_9___39e69cdd9", "6958": "15___CATEGORICAL___nom_9___39ead5e86", "6959": "15___CATEGORICAL___nom_9___39f0dbabd", "6960": "15___CATEGORICAL___nom_9___39f6935c8", "6961": "15___CATEGORICAL___nom_9___39fde287b", "6962": "15___CATEGORICAL___nom_9___39ff8b9aa", "6963": "15___CATEGORICAL___nom_9___3a00f0cb0", "6964": "15___CATEGORICAL___nom_9___3a0281806", "6965": "15___CATEGORICAL___nom_9___3a03309f8", "6966": "15___CATEGORICAL___nom_9___3a04b6c17", "6967": "15___CATEGORICAL___nom_9___3a064f6aa", "6968": "15___CATEGORICAL___nom_9___3a06c0730", "6969": "15___CATEGORICAL___nom_9___3a0814a4c", "6970": "15___CATEGORICAL___nom_9___3a0a4f10b", "6971": "15___CATEGORICAL___nom_9___3a113016e", "6972": "15___CATEGORICAL___nom_9___3a11ceee0", "6973": "15___CATEGORICAL___nom_9___3a1641984", "6974": "15___CATEGORICAL___nom_9___3a1fea205", "6975": "15___CATEGORICAL___nom_9___3a33631e2", "6976": "15___CATEGORICAL___nom_9___3a385e945", "6977": "15___CATEGORICAL___nom_9___3a3f84d57", "6978": "15___CATEGORICAL___nom_9___3a4603372", "6979": "15___CATEGORICAL___nom_9___3a4ae8d0d", "6980": "15___CATEGORICAL___nom_9___3a4b200e1", "6981": "15___CATEGORICAL___nom_9___3a5b19d24", "6982": "15___CATEGORICAL___nom_9___3a5b9bbd7", "6983": "15___CATEGORICAL___nom_9___3a5ea97f8", "6984": "15___CATEGORICAL___nom_9___3a639f3c8", "6985": "15___CATEGORICAL___nom_9___3a6619c0b", "6986": "15___CATEGORICAL___nom_9___3a67835f1", "6987": "15___CATEGORICAL___nom_9___3a70cfe93", "6988": "15___CATEGORICAL___nom_9___3a70d82e5", "6989": "15___CATEGORICAL___nom_9___3a720888f", "6990": "15___CATEGORICAL___nom_9___3a768367e", "6991": "15___CATEGORICAL___nom_9___3a9a5c1a9", "6992": "15___CATEGORICAL___nom_9___3a9b30f63", "6993": "15___CATEGORICAL___nom_9___3a9d1928d", "6994": "15___CATEGORICAL___nom_9___3a9f06260", "6995": "15___CATEGORICAL___nom_9___3aa0ba033", "6996": "15___CATEGORICAL___nom_9___3ab064d89", "6997": "15___CATEGORICAL___nom_9___3ab18acb6", "6998": "15___CATEGORICAL___nom_9___3ab2b94db", "6999": "15___CATEGORICAL___nom_9___3ab6699bc", "7000": "15___CATEGORICAL___nom_9___3ab6ea7ca", "7001": "15___CATEGORICAL___nom_9___3ab7c575b", "7002": "15___CATEGORICAL___nom_9___3ac1438af", "7003": "15___CATEGORICAL___nom_9___3ac3bcc30", "7004": "15___CATEGORICAL___nom_9___3aca81ddc", "7005": "15___CATEGORICAL___nom_9___3acccc051", "7006": "15___CATEGORICAL___nom_9___3ad5e3d89", "7007": "15___CATEGORICAL___nom_9___3adafebbf", "7008": "15___CATEGORICAL___nom_9___3ae27a2c6", "7009": "15___CATEGORICAL___nom_9___3ae8a791a", "7010": "15___CATEGORICAL___nom_9___3aecf5f0b", "7011": "15___CATEGORICAL___nom_9___3aefb8175", "7012": "15___CATEGORICAL___nom_9___3af4050be", "7013": "15___CATEGORICAL___nom_9___3af4192ec", "7014": "15___CATEGORICAL___nom_9___3afbec47c", "7015": "15___CATEGORICAL___nom_9___3b03b660f", "7016": "15___CATEGORICAL___nom_9___3b05d2cd6", "7017": "15___CATEGORICAL___nom_9___3b09f17c7", "7018": "15___CATEGORICAL___nom_9___3b0badfae", "7019": "15___CATEGORICAL___nom_9___3b0fcb47d", "7020": "15___CATEGORICAL___nom_9___3b21a12bb", "7021": "15___CATEGORICAL___nom_9___3b2231d1a", "7022": "15___CATEGORICAL___nom_9___3b3794565", "7023": "15___CATEGORICAL___nom_9___3b4864da8", "7024": "15___CATEGORICAL___nom_9___3b4a7402f", "7025": "15___CATEGORICAL___nom_9___3b4e39519", "7026": "15___CATEGORICAL___nom_9___3b51e3e0d", "7027": "15___CATEGORICAL___nom_9___3b61f6efb", "7028": "15___CATEGORICAL___nom_9___3b66c66e4", "7029": "15___CATEGORICAL___nom_9___3b66f59c3", "7030": "15___CATEGORICAL___nom_9___3b6853687", "7031": "15___CATEGORICAL___nom_9___3b69af85b", "7032": "15___CATEGORICAL___nom_9___3b71b824e", "7033": "15___CATEGORICAL___nom_9___3b768a3dc", "7034": "15___CATEGORICAL___nom_9___3b7de762a", "7035": "15___CATEGORICAL___nom_9___3b8243a9f", "7036": "15___CATEGORICAL___nom_9___3b8558f21", "7037": "15___CATEGORICAL___nom_9___3b8b246da", "7038": "15___CATEGORICAL___nom_9___3b90fdd79", "7039": "15___CATEGORICAL___nom_9___3b967a668", "7040": "15___CATEGORICAL___nom_9___3b998117d", "7041": "15___CATEGORICAL___nom_9___3b9d54208", "7042": "15___CATEGORICAL___nom_9___3b9e7739c", "7043": "15___CATEGORICAL___nom_9___3ba730568", "7044": "15___CATEGORICAL___nom_9___3ba7aae3d", "7045": "15___CATEGORICAL___nom_9___3bacc7ef0", "7046": "15___CATEGORICAL___nom_9___3bb68af4a", "7047": "15___CATEGORICAL___nom_9___3bba381f4", "7048": "15___CATEGORICAL___nom_9___3bba62591", "7049": "15___CATEGORICAL___nom_9___3bbb602f5", "7050": "15___CATEGORICAL___nom_9___3bbf48037", "7051": "15___CATEGORICAL___nom_9___3bc18f12b", "7052": "15___CATEGORICAL___nom_9___3bc773ad0", "7053": "15___CATEGORICAL___nom_9___3bc8741c1", "7054": "15___CATEGORICAL___nom_9___3bd085a7c", "7055": "15___CATEGORICAL___nom_9___3bd0aac3d", "7056": "15___CATEGORICAL___nom_9___3bd7877b6", "7057": "15___CATEGORICAL___nom_9___3bdc7d50d", "7058": "15___CATEGORICAL___nom_9___3be7eec3b", "7059": "15___CATEGORICAL___nom_9___3be8d9670", "7060": "15___CATEGORICAL___nom_9___3bfcb4913", "7061": "15___CATEGORICAL___nom_9___3bfdbb0a9", "7062": "15___CATEGORICAL___nom_9___3bfe39a63", "7063": "15___CATEGORICAL___nom_9___3bff7dd7a", "7064": "15___CATEGORICAL___nom_9___3c05a2a3f", "7065": "15___CATEGORICAL___nom_9___3c05c7aea", "7066": "15___CATEGORICAL___nom_9___3c079ef50", "7067": "15___CATEGORICAL___nom_9___3c08d6d3f", "7068": "15___CATEGORICAL___nom_9___3c0aab332", "7069": "15___CATEGORICAL___nom_9___3c0cbfef5", "7070": "15___CATEGORICAL___nom_9___3c10ec261", "7071": "15___CATEGORICAL___nom_9___3c1b20c8a", "7072": "15___CATEGORICAL___nom_9___3c21322a2", "7073": "15___CATEGORICAL___nom_9___3c2601744", "7074": "15___CATEGORICAL___nom_9___3c2ac6197", "7075": "15___CATEGORICAL___nom_9___3c2dc8d97", "7076": "15___CATEGORICAL___nom_9___3c30313e4", "7077": "15___CATEGORICAL___nom_9___3c312d586", "7078": "15___CATEGORICAL___nom_9___3c37f6eb4", "7079": "15___CATEGORICAL___nom_9___3c3f29d4d", "7080": "15___CATEGORICAL___nom_9___3c4365da8", "7081": "15___CATEGORICAL___nom_9___3c49b42b8", "7082": "15___CATEGORICAL___nom_9___3c5f0f24e", "7083": "15___CATEGORICAL___nom_9___3c60fd2f5", "7084": "15___CATEGORICAL___nom_9___3c6276bd5", "7085": "15___CATEGORICAL___nom_9___3c627fc58", "7086": "15___CATEGORICAL___nom_9___3c6b8da7a", "7087": "15___CATEGORICAL___nom_9___3c6f526ed", "7088": "15___CATEGORICAL___nom_9___3c6ff8e35", "7089": "15___CATEGORICAL___nom_9___3c71bb205", "7090": "15___CATEGORICAL___nom_9___3c73bfa9e", "7091": "15___CATEGORICAL___nom_9___3c915f463", "7092": "15___CATEGORICAL___nom_9___3c9a512d3", "7093": "15___CATEGORICAL___nom_9___3c9f3586a", "7094": "15___CATEGORICAL___nom_9___3ca5c17d0", "7095": "15___CATEGORICAL___nom_9___3cabcaee4", "7096": "15___CATEGORICAL___nom_9___3cb234b29", "7097": "15___CATEGORICAL___nom_9___3cb920ed5", "7098": "15___CATEGORICAL___nom_9___3cbc9dc44", "7099": "15___CATEGORICAL___nom_9___3cc24ab5d", "7100": "15___CATEGORICAL___nom_9___3cc46448a", "7101": "15___CATEGORICAL___nom_9___3cc8a7aca", "7102": "15___CATEGORICAL___nom_9___3cd0b7e01", "7103": "15___CATEGORICAL___nom_9___3cd193139", "7104": "15___CATEGORICAL___nom_9___3cd3c9434", "7105": "15___CATEGORICAL___nom_9___3cd44636b", "7106": "15___CATEGORICAL___nom_9___3cd869447", "7107": "15___CATEGORICAL___nom_9___3cd993e94", "7108": "15___CATEGORICAL___nom_9___3cda0a027", "7109": "15___CATEGORICAL___nom_9___3ce6b0a07", "7110": "15___CATEGORICAL___nom_9___3ced1535d", "7111": "15___CATEGORICAL___nom_9___3cfc1493c", "7112": "15___CATEGORICAL___nom_9___3cfe8875e", "7113": "15___CATEGORICAL___nom_9___3cfe91770", "7114": "15___CATEGORICAL___nom_9___3cff35820", "7115": "15___CATEGORICAL___nom_9___3d0569876", "7116": "15___CATEGORICAL___nom_9___3d05fa76c", "7117": "15___CATEGORICAL___nom_9___3d0859d6c", "7118": "15___CATEGORICAL___nom_9___3d0b1f93a", "7119": "15___CATEGORICAL___nom_9___3d1ab3226", "7120": "15___CATEGORICAL___nom_9___3d1dcd13b", "7121": "15___CATEGORICAL___nom_9___3d2b13c83", "7122": "15___CATEGORICAL___nom_9___3d2c46e12", "7123": "15___CATEGORICAL___nom_9___3d2e1a50b", "7124": "15___CATEGORICAL___nom_9___3d3109a50", "7125": "15___CATEGORICAL___nom_9___3d319ca1a", "7126": "15___CATEGORICAL___nom_9___3d38c9b0b", "7127": "15___CATEGORICAL___nom_9___3d3d7cec0", "7128": "15___CATEGORICAL___nom_9___3d3eee32d", "7129": "15___CATEGORICAL___nom_9___3d3fcfac4", "7130": "15___CATEGORICAL___nom_9___3d468fb66", "7131": "15___CATEGORICAL___nom_9___3d4a9041c", "7132": "15___CATEGORICAL___nom_9___3d5aebac0", "7133": "15___CATEGORICAL___nom_9___3d5c25b4a", "7134": "15___CATEGORICAL___nom_9___3d5d64145", "7135": "15___CATEGORICAL___nom_9___3d5ff4fe0", "7136": "15___CATEGORICAL___nom_9___3d647944d", "7137": "15___CATEGORICAL___nom_9___3d6528a23", "7138": "15___CATEGORICAL___nom_9___3d7683f4c", "7139": "15___CATEGORICAL___nom_9___3d7db0d96", "7140": "15___CATEGORICAL___nom_9___3d8640e6f", "7141": "15___CATEGORICAL___nom_9___3d8812d69", "7142": "15___CATEGORICAL___nom_9___3d8904a7b", "7143": "15___CATEGORICAL___nom_9___3d9392edc", "7144": "15___CATEGORICAL___nom_9___3dc06b288", "7145": "15___CATEGORICAL___nom_9___3dc10bcdb", "7146": "15___CATEGORICAL___nom_9___3dc6ed8dd", "7147": "15___CATEGORICAL___nom_9___3dc891d92", "7148": "15___CATEGORICAL___nom_9___3dd1bb7c6", "7149": "15___CATEGORICAL___nom_9___3de1a4fa1", "7150": "15___CATEGORICAL___nom_9___3de8398ab", "7151": "15___CATEGORICAL___nom_9___3de874598", "7152": "15___CATEGORICAL___nom_9___3dec4b476", "7153": "15___CATEGORICAL___nom_9___3df5a8fd9", "7154": "15___CATEGORICAL___nom_9___3dfde0219", "7155": "15___CATEGORICAL___nom_9___3e017b647", "7156": "15___CATEGORICAL___nom_9___3e05d5dda", "7157": "15___CATEGORICAL___nom_9___3e0676fab", "7158": "15___CATEGORICAL___nom_9___3e0919ae9", "7159": "15___CATEGORICAL___nom_9___3e0a7714e", "7160": "15___CATEGORICAL___nom_9___3e1d307ac", "7161": "15___CATEGORICAL___nom_9___3e1fd1687", "7162": "15___CATEGORICAL___nom_9___3e2352970", "7163": "15___CATEGORICAL___nom_9___3e23f2503", "7164": "15___CATEGORICAL___nom_9___3e2b49d08", "7165": "15___CATEGORICAL___nom_9___3e535d84e", "7166": "15___CATEGORICAL___nom_9___3e60d45bd", "7167": "15___CATEGORICAL___nom_9___3e67d10e6", "7168": "15___CATEGORICAL___nom_9___3e7285e7f", "7169": "15___CATEGORICAL___nom_9___3e7930b6a", "7170": "15___CATEGORICAL___nom_9___3e7abfcde", "7171": "15___CATEGORICAL___nom_9___3e7e25805", "7172": "15___CATEGORICAL___nom_9___3e7f89533", "7173": "15___CATEGORICAL___nom_9___3e84c7283", "7174": "15___CATEGORICAL___nom_9___3e88dd2a0", "7175": "15___CATEGORICAL___nom_9___3e94a36d3", "7176": "15___CATEGORICAL___nom_9___3ea01f7bb", "7177": "15___CATEGORICAL___nom_9___3ea725cf2", "7178": "15___CATEGORICAL___nom_9___3ea8a70d5", "7179": "15___CATEGORICAL___nom_9___3ea990ea5", "7180": "15___CATEGORICAL___nom_9___3eac34f5f", "7181": "15___CATEGORICAL___nom_9___3eae6b3ec", "7182": "15___CATEGORICAL___nom_9___3eaea33e5", "7183": "15___CATEGORICAL___nom_9___3eaf8e80c", "7184": "15___CATEGORICAL___nom_9___3ebb988aa", "7185": "15___CATEGORICAL___nom_9___3ebd0a385", "7186": "15___CATEGORICAL___nom_9___3ebf64b56", "7187": "15___CATEGORICAL___nom_9___3ec31b3c0", "7188": "15___CATEGORICAL___nom_9___3ecabe926", "7189": "15___CATEGORICAL___nom_9___3ed31f2e2", "7190": "15___CATEGORICAL___nom_9___3ed883464", "7191": "15___CATEGORICAL___nom_9___3edc95ab8", "7192": "15___CATEGORICAL___nom_9___3ee76fdcd", "7193": "15___CATEGORICAL___nom_9___3eedf9190", "7194": "15___CATEGORICAL___nom_9___3efda4260", "7195": "15___CATEGORICAL___nom_9___3f0494a11", "7196": "15___CATEGORICAL___nom_9___3f05211ac", "7197": "15___CATEGORICAL___nom_9___3f087f8a7", "7198": "15___CATEGORICAL___nom_9___3f1187452", "7199": "15___CATEGORICAL___nom_9___3f1596ca9", "7200": "15___CATEGORICAL___nom_9___3f19c3d8a", "7201": "15___CATEGORICAL___nom_9___3f1aba292", "7202": "15___CATEGORICAL___nom_9___3f1ad8437", "7203": "15___CATEGORICAL___nom_9___3f1b404b0", "7204": "15___CATEGORICAL___nom_9___3f2446f39", "7205": "15___CATEGORICAL___nom_9___3f27d8052", "7206": "15___CATEGORICAL___nom_9___3f2a6b542", "7207": "15___CATEGORICAL___nom_9___3f2e45929", "7208": "15___CATEGORICAL___nom_9___3f33cb582", "7209": "15___CATEGORICAL___nom_9___3f36154c1", "7210": "15___CATEGORICAL___nom_9___3f37ca5f0", "7211": "15___CATEGORICAL___nom_9___3f3b2b9b9", "7212": "15___CATEGORICAL___nom_9___3f3bda136", "7213": "15___CATEGORICAL___nom_9___3f46bec5a", "7214": "15___CATEGORICAL___nom_9___3f4c9a599", "7215": "15___CATEGORICAL___nom_9___3f52b2470", "7216": "15___CATEGORICAL___nom_9___3f56481d8", "7217": "15___CATEGORICAL___nom_9___3f59ea7fb", "7218": "15___CATEGORICAL___nom_9___3f61f5ec0", "7219": "15___CATEGORICAL___nom_9___3f6370e54", "7220": "15___CATEGORICAL___nom_9___3f64a2bb4", "7221": "15___CATEGORICAL___nom_9___3f68d0059", "7222": "15___CATEGORICAL___nom_9___3f69e641d", "7223": "15___CATEGORICAL___nom_9___3f700a73b", "7224": "15___CATEGORICAL___nom_9___3f715098d", "7225": "15___CATEGORICAL___nom_9___3f7591cfa", "7226": "15___CATEGORICAL___nom_9___3f7e083bd", "7227": "15___CATEGORICAL___nom_9___3f7e4acd4", "7228": "15___CATEGORICAL___nom_9___3f7e590d2", "7229": "15___CATEGORICAL___nom_9___3f9427d4c", "7230": "15___CATEGORICAL___nom_9___3f9eb2e74", "7231": "15___CATEGORICAL___nom_9___3fa0ef960", "7232": "15___CATEGORICAL___nom_9___3fa5105a3", "7233": "15___CATEGORICAL___nom_9___3faa3aa07", "7234": "15___CATEGORICAL___nom_9___3fad6db7e", "7235": "15___CATEGORICAL___nom_9___3fb0f9155", "7236": "15___CATEGORICAL___nom_9___3fbbdd78c", "7237": "15___CATEGORICAL___nom_9___3fc26e3ba", "7238": "15___CATEGORICAL___nom_9___3fd3e5405", "7239": "15___CATEGORICAL___nom_9___3fdc4459b", "7240": "15___CATEGORICAL___nom_9___3fe4790ad", "7241": "15___CATEGORICAL___nom_9___3fe4ec6f7", "7242": "15___CATEGORICAL___nom_9___3ff17f074", "7243": "15___CATEGORICAL___nom_9___3ff518600", "7244": "15___CATEGORICAL___nom_9___3ff5614d5", "7245": "15___CATEGORICAL___nom_9___4004b4fae", "7246": "15___CATEGORICAL___nom_9___400935cc6", "7247": "15___CATEGORICAL___nom_9___4009ffc06", "7248": "15___CATEGORICAL___nom_9___4014c7b4c", "7249": "15___CATEGORICAL___nom_9___4015a0a50", "7250": "15___CATEGORICAL___nom_9___4019faa35", "7251": "15___CATEGORICAL___nom_9___401c2455c", "7252": "15___CATEGORICAL___nom_9___401dcfda1", "7253": "15___CATEGORICAL___nom_9___401f8d76f", "7254": "15___CATEGORICAL___nom_9___4025d6d4f", "7255": "15___CATEGORICAL___nom_9___402f224f3", "7256": "15___CATEGORICAL___nom_9___4035d1e53", "7257": "15___CATEGORICAL___nom_9___403af285c", "7258": "15___CATEGORICAL___nom_9___403db0d8a", "7259": "15___CATEGORICAL___nom_9___403f98af1", "7260": "15___CATEGORICAL___nom_9___4046c3eae", "7261": "15___CATEGORICAL___nom_9___404a40ab9", "7262": "15___CATEGORICAL___nom_9___404ad3101", "7263": "15___CATEGORICAL___nom_9___405871c33", "7264": "15___CATEGORICAL___nom_9___405e6992f", "7265": "15___CATEGORICAL___nom_9___406599fef", "7266": "15___CATEGORICAL___nom_9___4065a77b9", "7267": "15___CATEGORICAL___nom_9___40670a376", "7268": "15___CATEGORICAL___nom_9___406be08bf", "7269": "15___CATEGORICAL___nom_9___406c59a36", "7270": "15___CATEGORICAL___nom_9___406e89a5a", "7271": "15___CATEGORICAL___nom_9___40729cc55", "7272": "15___CATEGORICAL___nom_9___4078272e7", "7273": "15___CATEGORICAL___nom_9___40872f767", "7274": "15___CATEGORICAL___nom_9___408d874ff", "7275": "15___CATEGORICAL___nom_9___40930f265", "7276": "15___CATEGORICAL___nom_9___4094c7c4e", "7277": "15___CATEGORICAL___nom_9___4099c9765", "7278": "15___CATEGORICAL___nom_9___40a1c4a52", "7279": "15___CATEGORICAL___nom_9___40a41802c", "7280": "15___CATEGORICAL___nom_9___40a9af86f", "7281": "15___CATEGORICAL___nom_9___40b44b790", "7282": "15___CATEGORICAL___nom_9___40ba84f03", "7283": "15___CATEGORICAL___nom_9___40bb8c0c4", "7284": "15___CATEGORICAL___nom_9___40bd20388", "7285": "15___CATEGORICAL___nom_9___40c71e317", "7286": "15___CATEGORICAL___nom_9___40ca51b51", "7287": "15___CATEGORICAL___nom_9___40cc5e2ff", "7288": "15___CATEGORICAL___nom_9___40cd11628", "7289": "15___CATEGORICAL___nom_9___40db7671e", "7290": "15___CATEGORICAL___nom_9___40dc421ae", "7291": "15___CATEGORICAL___nom_9___40dfbce2e", "7292": "15___CATEGORICAL___nom_9___40e1bf207", "7293": "15___CATEGORICAL___nom_9___40f2aaabf", "7294": "15___CATEGORICAL___nom_9___410143e5c", "7295": "15___CATEGORICAL___nom_9___410714e3e", "7296": "15___CATEGORICAL___nom_9___41076ba1f", "7297": "15___CATEGORICAL___nom_9___410de24e1", "7298": "15___CATEGORICAL___nom_9___411b39272", "7299": "15___CATEGORICAL___nom_9___411c0c339", "7300": "15___CATEGORICAL___nom_9___411e40369", "7301": "15___CATEGORICAL___nom_9___41234c146", "7302": "15___CATEGORICAL___nom_9___41248d036", "7303": "15___CATEGORICAL___nom_9___41284eba2", "7304": "15___CATEGORICAL___nom_9___412859a59", "7305": "15___CATEGORICAL___nom_9___412ca1566", "7306": "15___CATEGORICAL___nom_9___412ef254d", "7307": "15___CATEGORICAL___nom_9___41311a04d", "7308": "15___CATEGORICAL___nom_9___414a16f1a", "7309": "15___CATEGORICAL___nom_9___414a3f332", "7310": "15___CATEGORICAL___nom_9___415139226", "7311": "15___CATEGORICAL___nom_9___4154feb7b", "7312": "15___CATEGORICAL___nom_9___4159610ef", "7313": "15___CATEGORICAL___nom_9___415ba90fa", "7314": "15___CATEGORICAL___nom_9___415fa4c0c", "7315": "15___CATEGORICAL___nom_9___4169647bd", "7316": "15___CATEGORICAL___nom_9___4169817e0", "7317": "15___CATEGORICAL___nom_9___416ab4cf7", "7318": "15___CATEGORICAL___nom_9___416ba5bb5", "7319": "15___CATEGORICAL___nom_9___417038367", "7320": "15___CATEGORICAL___nom_9___417d53105", "7321": "15___CATEGORICAL___nom_9___418a20eaf", "7322": "15___CATEGORICAL___nom_9___418c648dc", "7323": "15___CATEGORICAL___nom_9___418e44154", "7324": "15___CATEGORICAL___nom_9___418eddb34", "7325": "15___CATEGORICAL___nom_9___4198514cc", "7326": "15___CATEGORICAL___nom_9___4198b05d5", "7327": "15___CATEGORICAL___nom_9___4198e8b58", "7328": "15___CATEGORICAL___nom_9___41a291c12", "7329": "15___CATEGORICAL___nom_9___41a2a4ca1", "7330": "15___CATEGORICAL___nom_9___41a45a4fb", "7331": "15___CATEGORICAL___nom_9___41aded992", "7332": "15___CATEGORICAL___nom_9___41af7efcd", "7333": "15___CATEGORICAL___nom_9___41b3342b6", "7334": "15___CATEGORICAL___nom_9___41bb9033e", "7335": "15___CATEGORICAL___nom_9___41bc8d168", "7336": "15___CATEGORICAL___nom_9___41c1277c8", "7337": "15___CATEGORICAL___nom_9___41ca666b6", "7338": "15___CATEGORICAL___nom_9___41cc561ab", "7339": "15___CATEGORICAL___nom_9___41d1c1733", "7340": "15___CATEGORICAL___nom_9___41d831884", "7341": "15___CATEGORICAL___nom_9___41df37a52", "7342": "15___CATEGORICAL___nom_9___41e6a3da0", "7343": "15___CATEGORICAL___nom_9___420fe49dc", "7344": "15___CATEGORICAL___nom_9___4218ddf89", "7345": "15___CATEGORICAL___nom_9___421d42654", "7346": "15___CATEGORICAL___nom_9___421ea02a5", "7347": "15___CATEGORICAL___nom_9___4224a071a", "7348": "15___CATEGORICAL___nom_9___4228af8e2", "7349": "15___CATEGORICAL___nom_9___422e08aa2", "7350": "15___CATEGORICAL___nom_9___423029b5d", "7351": "15___CATEGORICAL___nom_9___4231a4ed1", "7352": "15___CATEGORICAL___nom_9___423801297", "7353": "15___CATEGORICAL___nom_9___42385088b", "7354": "15___CATEGORICAL___nom_9___4239869fa", "7355": "15___CATEGORICAL___nom_9___423d0e690", "7356": "15___CATEGORICAL___nom_9___425033fa2", "7357": "15___CATEGORICAL___nom_9___425f3fb84", "7358": "15___CATEGORICAL___nom_9___4264eca5b", "7359": "15___CATEGORICAL___nom_9___426603075", "7360": "15___CATEGORICAL___nom_9___4266d66d8", "7361": "15___CATEGORICAL___nom_9___426b5301d", "7362": "15___CATEGORICAL___nom_9___426d9551e", "7363": "15___CATEGORICAL___nom_9___42814865d", "7364": "15___CATEGORICAL___nom_9___4281cf5b9", "7365": "15___CATEGORICAL___nom_9___428bafb77", "7366": "15___CATEGORICAL___nom_9___428d5bad6", "7367": "15___CATEGORICAL___nom_9___428e60b19", "7368": "15___CATEGORICAL___nom_9___428f741ce", "7369": "15___CATEGORICAL___nom_9___429239951", "7370": "15___CATEGORICAL___nom_9___42930083b", "7371": "15___CATEGORICAL___nom_9___42946cd3b", "7372": "15___CATEGORICAL___nom_9___42968a059", "7373": "15___CATEGORICAL___nom_9___42981a766", "7374": "15___CATEGORICAL___nom_9___4299f8580", "7375": "15___CATEGORICAL___nom_9___429cd329e", "7376": "15___CATEGORICAL___nom_9___429f4cd70", "7377": "15___CATEGORICAL___nom_9___42a7b1cfa", "7378": "15___CATEGORICAL___nom_9___42ab1504f", "7379": "15___CATEGORICAL___nom_9___42ae959b2", "7380": "15___CATEGORICAL___nom_9___42b7a0ebd", "7381": "15___CATEGORICAL___nom_9___42b90842d", "7382": "15___CATEGORICAL___nom_9___42bf1e5f7", "7383": "15___CATEGORICAL___nom_9___42c926603", "7384": "15___CATEGORICAL___nom_9___42d0006b6", "7385": "15___CATEGORICAL___nom_9___42dadb180", "7386": "15___CATEGORICAL___nom_9___42e05b3de", "7387": "15___CATEGORICAL___nom_9___42ed011c9", "7388": "15___CATEGORICAL___nom_9___42edfa4eb", "7389": "15___CATEGORICAL___nom_9___42ee49463", "7390": "15___CATEGORICAL___nom_9___42f4801b2", "7391": "15___CATEGORICAL___nom_9___42f5648a3", "7392": "15___CATEGORICAL___nom_9___42fc3bc6b", "7393": "15___CATEGORICAL___nom_9___42fc980eb", "7394": "15___CATEGORICAL___nom_9___42fcffe95", "7395": "15___CATEGORICAL___nom_9___430677d1d", "7396": "15___CATEGORICAL___nom_9___430dafb35", "7397": "15___CATEGORICAL___nom_9___430ed645f", "7398": "15___CATEGORICAL___nom_9___431645ec8", "7399": "15___CATEGORICAL___nom_9___431ba8c6c", "7400": "15___CATEGORICAL___nom_9___4326aaf90", "7401": "15___CATEGORICAL___nom_9___4328dec27", "7402": "15___CATEGORICAL___nom_9___432918cfd", "7403": "15___CATEGORICAL___nom_9___432b05f42", "7404": "15___CATEGORICAL___nom_9___4338d77d3", "7405": "15___CATEGORICAL___nom_9___433ddf917", "7406": "15___CATEGORICAL___nom_9___434047bc2", "7407": "15___CATEGORICAL___nom_9___434958bd4", "7408": "15___CATEGORICAL___nom_9___434a9207a", "7409": "15___CATEGORICAL___nom_9___43500b15c", "7410": "15___CATEGORICAL___nom_9___4351e49c3", "7411": "15___CATEGORICAL___nom_9___435ba7bfa", "7412": "15___CATEGORICAL___nom_9___4366e4ae5", "7413": "15___CATEGORICAL___nom_9___4367f5631", "7414": "15___CATEGORICAL___nom_9___437b64140", "7415": "15___CATEGORICAL___nom_9___437b8ec56", "7416": "15___CATEGORICAL___nom_9___437bc69a0", "7417": "15___CATEGORICAL___nom_9___437f0a790", "7418": "15___CATEGORICAL___nom_9___437fb0e31", "7419": "15___CATEGORICAL___nom_9___438a44dd8", "7420": "15___CATEGORICAL___nom_9___439b441b2", "7421": "15___CATEGORICAL___nom_9___439bb0d59", "7422": "15___CATEGORICAL___nom_9___439d8e6c9", "7423": "15___CATEGORICAL___nom_9___43a33ce4d", "7424": "15___CATEGORICAL___nom_9___43b9f3770", "7425": "15___CATEGORICAL___nom_9___43bb321c6", "7426": "15___CATEGORICAL___nom_9___43bb80280", "7427": "15___CATEGORICAL___nom_9___43bcb9892", "7428": "15___CATEGORICAL___nom_9___43c657c83", "7429": "15___CATEGORICAL___nom_9___43c7347c2", "7430": "15___CATEGORICAL___nom_9___43ca73657", "7431": "15___CATEGORICAL___nom_9___43cca6dec", "7432": "15___CATEGORICAL___nom_9___43ccd2f67", "7433": "15___CATEGORICAL___nom_9___43de1b642", "7434": "15___CATEGORICAL___nom_9___43eb45e20", "7435": "15___CATEGORICAL___nom_9___43f095c4c", "7436": "15___CATEGORICAL___nom_9___43fdd568f", "7437": "15___CATEGORICAL___nom_9___43fe49fd2", "7438": "15___CATEGORICAL___nom_9___43ff2454e", "7439": "15___CATEGORICAL___nom_9___43ff3249f", "7440": "15___CATEGORICAL___nom_9___44078254c", "7441": "15___CATEGORICAL___nom_9___440c719e2", "7442": "15___CATEGORICAL___nom_9___44129f54e", "7443": "15___CATEGORICAL___nom_9___4414406a8", "7444": "15___CATEGORICAL___nom_9___4414f01d2", "7445": "15___CATEGORICAL___nom_9___441bc1eba", "7446": "15___CATEGORICAL___nom_9___4424f90f1", "7447": "15___CATEGORICAL___nom_9___443253a7d", "7448": "15___CATEGORICAL___nom_9___443727061", "7449": "15___CATEGORICAL___nom_9___443944829", "7450": "15___CATEGORICAL___nom_9___443af4354", "7451": "15___CATEGORICAL___nom_9___443e28d3a", "7452": "15___CATEGORICAL___nom_9___44442f13c", "7453": "15___CATEGORICAL___nom_9___44484cae0", "7454": "15___CATEGORICAL___nom_9___444982355", "7455": "15___CATEGORICAL___nom_9___444b83946", "7456": "15___CATEGORICAL___nom_9___444c9fded", "7457": "15___CATEGORICAL___nom_9___44510096e", "7458": "15___CATEGORICAL___nom_9___4460c4548", "7459": "15___CATEGORICAL___nom_9___44634b579", "7460": "15___CATEGORICAL___nom_9___446517558", "7461": "15___CATEGORICAL___nom_9___4465f6c38", "7462": "15___CATEGORICAL___nom_9___4466b1160", "7463": "15___CATEGORICAL___nom_9___4474b83ff", "7464": "15___CATEGORICAL___nom_9___447c2fbd0", "7465": "15___CATEGORICAL___nom_9___4481a10ea", "7466": "15___CATEGORICAL___nom_9___44a415799", "7467": "15___CATEGORICAL___nom_9___44a998544", "7468": "15___CATEGORICAL___nom_9___44aa78478", "7469": "15___CATEGORICAL___nom_9___44acc9af3", "7470": "15___CATEGORICAL___nom_9___44c14a63c", "7471": "15___CATEGORICAL___nom_9___44cc714a9", "7472": "15___CATEGORICAL___nom_9___44d91f10c", "7473": "15___CATEGORICAL___nom_9___44e54e5ed", "7474": "15___CATEGORICAL___nom_9___44ea6a04a", "7475": "15___CATEGORICAL___nom_9___44eb14fb0", "7476": "15___CATEGORICAL___nom_9___44ef0de50", "7477": "15___CATEGORICAL___nom_9___44f9824e5", "7478": "15___CATEGORICAL___nom_9___44ff5d9a8", "7479": "15___CATEGORICAL___nom_9___44ffd907d", "7480": "15___CATEGORICAL___nom_9___44ffe2764", "7481": "15___CATEGORICAL___nom_9___44fff581a", "7482": "15___CATEGORICAL___nom_9___450be1ce2", "7483": "15___CATEGORICAL___nom_9___450d20abd", "7484": "15___CATEGORICAL___nom_9___4510d1b09", "7485": "15___CATEGORICAL___nom_9___4513a881e", "7486": "15___CATEGORICAL___nom_9___452bbfbe9", "7487": "15___CATEGORICAL___nom_9___452d268f6", "7488": "15___CATEGORICAL___nom_9___45311d436", "7489": "15___CATEGORICAL___nom_9___45399c9ad", "7490": "15___CATEGORICAL___nom_9___4541daa35", "7491": "15___CATEGORICAL___nom_9___454a73725", "7492": "15___CATEGORICAL___nom_9___45579b8b1", "7493": "15___CATEGORICAL___nom_9___4558357dd", "7494": "15___CATEGORICAL___nom_9___455af555a", "7495": "15___CATEGORICAL___nom_9___455eb5842", "7496": "15___CATEGORICAL___nom_9___456031bec", "7497": "15___CATEGORICAL___nom_9___456633874", "7498": "15___CATEGORICAL___nom_9___4567c63c0", "7499": "15___CATEGORICAL___nom_9___456971f87", "7500": "15___CATEGORICAL___nom_9___458667ded", "7501": "15___CATEGORICAL___nom_9___458822463", "7502": "15___CATEGORICAL___nom_9___458de7842", "7503": "15___CATEGORICAL___nom_9___458e8682a", "7504": "15___CATEGORICAL___nom_9___458ead51e", "7505": "15___CATEGORICAL___nom_9___4592e1455", "7506": "15___CATEGORICAL___nom_9___4593818c9", "7507": "15___CATEGORICAL___nom_9___45949a69e", "7508": "15___CATEGORICAL___nom_9___459795e18", "7509": "15___CATEGORICAL___nom_9___45a3e5f6a", "7510": "15___CATEGORICAL___nom_9___45a818b44", "7511": "15___CATEGORICAL___nom_9___45affc10b", "7512": "15___CATEGORICAL___nom_9___45b1aec17", "7513": "15___CATEGORICAL___nom_9___45b66919e", "7514": "15___CATEGORICAL___nom_9___45c818e6f", "7515": "15___CATEGORICAL___nom_9___45cf19d01", "7516": "15___CATEGORICAL___nom_9___45d51b0f2", "7517": "15___CATEGORICAL___nom_9___45d6ca1ed", "7518": "15___CATEGORICAL___nom_9___45dab63fa", "7519": "15___CATEGORICAL___nom_9___45dcfa20c", "7520": "15___CATEGORICAL___nom_9___45e6e6410", "7521": "15___CATEGORICAL___nom_9___45e898ebb", "7522": "15___CATEGORICAL___nom_9___45ed1cfc8", "7523": "15___CATEGORICAL___nom_9___45f8053ed", "7524": "15___CATEGORICAL___nom_9___460931882", "7525": "15___CATEGORICAL___nom_9___46097db73", "7526": "15___CATEGORICAL___nom_9___460999a3b", "7527": "15___CATEGORICAL___nom_9___460d61b1b", "7528": "15___CATEGORICAL___nom_9___46103563f", "7529": "15___CATEGORICAL___nom_9___46285355f", "7530": "15___CATEGORICAL___nom_9___462d18334", "7531": "15___CATEGORICAL___nom_9___462f5087b", "7532": "15___CATEGORICAL___nom_9___463485009", "7533": "15___CATEGORICAL___nom_9___4635b8310", "7534": "15___CATEGORICAL___nom_9___463bb923e", "7535": "15___CATEGORICAL___nom_9___4642126a2", "7536": "15___CATEGORICAL___nom_9___4642e6897", "7537": "15___CATEGORICAL___nom_9___464a765b7", "7538": "15___CATEGORICAL___nom_9___465497dc7", "7539": "15___CATEGORICAL___nom_9___465ffb0fb", "7540": "15___CATEGORICAL___nom_9___46646bcf4", "7541": "15___CATEGORICAL___nom_9___46658ecf3", "7542": "15___CATEGORICAL___nom_9___46690fde6", "7543": "15___CATEGORICAL___nom_9___466d25288", "7544": "15___CATEGORICAL___nom_9___466f0fe93", "7545": "15___CATEGORICAL___nom_9___4674a56f2", "7546": "15___CATEGORICAL___nom_9___46764ab3e", "7547": "15___CATEGORICAL___nom_9___467ba09b5", "7548": "15___CATEGORICAL___nom_9___467ff7263", "7549": "15___CATEGORICAL___nom_9___468762b60", "7550": "15___CATEGORICAL___nom_9___4687bffb6", "7551": "15___CATEGORICAL___nom_9___468af308d", "7552": "15___CATEGORICAL___nom_9___468b54425", "7553": "15___CATEGORICAL___nom_9___468c8e925", "7554": "15___CATEGORICAL___nom_9___469008f90", "7555": "15___CATEGORICAL___nom_9___4691f847d", "7556": "15___CATEGORICAL___nom_9___4699f3d31", "7557": "15___CATEGORICAL___nom_9___46a066959", "7558": "15___CATEGORICAL___nom_9___46a9885ac", "7559": "15___CATEGORICAL___nom_9___46aabff73", "7560": "15___CATEGORICAL___nom_9___46aaf996d", "7561": "15___CATEGORICAL___nom_9___46ac4abd5", "7562": "15___CATEGORICAL___nom_9___46af894c6", "7563": "15___CATEGORICAL___nom_9___46b472cdb", "7564": "15___CATEGORICAL___nom_9___46b51a717", "7565": "15___CATEGORICAL___nom_9___46bb151c5", "7566": "15___CATEGORICAL___nom_9___46ce8acaf", "7567": "15___CATEGORICAL___nom_9___46e2de4b9", "7568": "15___CATEGORICAL___nom_9___46e961406", "7569": "15___CATEGORICAL___nom_9___46ebf483e", "7570": "15___CATEGORICAL___nom_9___46f77fe56", "7571": "15___CATEGORICAL___nom_9___4702e587d", "7572": "15___CATEGORICAL___nom_9___4705a9cb7", "7573": "15___CATEGORICAL___nom_9___4726e69a6", "7574": "15___CATEGORICAL___nom_9___47334fb8e", "7575": "15___CATEGORICAL___nom_9___4741666f1", "7576": "15___CATEGORICAL___nom_9___47417ba14", "7577": "15___CATEGORICAL___nom_9___47491a8fc", "7578": "15___CATEGORICAL___nom_9___474b96ed5", "7579": "15___CATEGORICAL___nom_9___474fa48c6", "7580": "15___CATEGORICAL___nom_9___474fa4ad3", "7581": "15___CATEGORICAL___nom_9___47569aa73", "7582": "15___CATEGORICAL___nom_9___4760b40fe", "7583": "15___CATEGORICAL___nom_9___4765cb5ed", "7584": "15___CATEGORICAL___nom_9___476b0d24f", "7585": "15___CATEGORICAL___nom_9___47755ab14", "7586": "15___CATEGORICAL___nom_9___47765fe60", "7587": "15___CATEGORICAL___nom_9___477669ead", "7588": "15___CATEGORICAL___nom_9___4778a8ffc", "7589": "15___CATEGORICAL___nom_9___4779e1a8b", "7590": "15___CATEGORICAL___nom_9___47805adc7", "7591": "15___CATEGORICAL___nom_9___478189852", "7592": "15___CATEGORICAL___nom_9___478623b84", "7593": "15___CATEGORICAL___nom_9___47879c1f4", "7594": "15___CATEGORICAL___nom_9___4787f880b", "7595": "15___CATEGORICAL___nom_9___4791b8730", "7596": "15___CATEGORICAL___nom_9___479444082", "7597": "15___CATEGORICAL___nom_9___4796a755e", "7598": "15___CATEGORICAL___nom_9___4796e7b76", "7599": "15___CATEGORICAL___nom_9___479b83f59", "7600": "15___CATEGORICAL___nom_9___47a262cc2", "7601": "15___CATEGORICAL___nom_9___47aed12b5", "7602": "15___CATEGORICAL___nom_9___47b20440d", "7603": "15___CATEGORICAL___nom_9___47b2ecfee", "7604": "15___CATEGORICAL___nom_9___47baf6f70", "7605": "15___CATEGORICAL___nom_9___47ca2382a", "7606": "15___CATEGORICAL___nom_9___47d328064", "7607": "15___CATEGORICAL___nom_9___47d38e9d3", "7608": "15___CATEGORICAL___nom_9___47d43fbfb", "7609": "15___CATEGORICAL___nom_9___47eae8707", "7610": "15___CATEGORICAL___nom_9___47f02a065", "7611": "15___CATEGORICAL___nom_9___47f3905f5", "7612": "15___CATEGORICAL___nom_9___47fc00e2a", "7613": "15___CATEGORICAL___nom_9___47ff1430e", "7614": "15___CATEGORICAL___nom_9___48039a325", "7615": "15___CATEGORICAL___nom_9___480798d50", "7616": "15___CATEGORICAL___nom_9___480cd4a60", "7617": "15___CATEGORICAL___nom_9___480f94084", "7618": "15___CATEGORICAL___nom_9___481d2e6c0", "7619": "15___CATEGORICAL___nom_9___4822f387b", "7620": "15___CATEGORICAL___nom_9___4832b51cd", "7621": "15___CATEGORICAL___nom_9___483650733", "7622": "15___CATEGORICAL___nom_9___483a0f640", "7623": "15___CATEGORICAL___nom_9___483c9e4f2", "7624": "15___CATEGORICAL___nom_9___483ca632f", "7625": "15___CATEGORICAL___nom_9___4840a3260", "7626": "15___CATEGORICAL___nom_9___4845d4dc3", "7627": "15___CATEGORICAL___nom_9___484c667fb", "7628": "15___CATEGORICAL___nom_9___4874f2f86", "7629": "15___CATEGORICAL___nom_9___487d1f462", "7630": "15___CATEGORICAL___nom_9___48847122b", "7631": "15___CATEGORICAL___nom_9___488795af2", "7632": "15___CATEGORICAL___nom_9___488c82a9c", "7633": "15___CATEGORICAL___nom_9___48930516b", "7634": "15___CATEGORICAL___nom_9___4894815c2", "7635": "15___CATEGORICAL___nom_9___489d6817e", "7636": "15___CATEGORICAL___nom_9___489d99cc5", "7637": "15___CATEGORICAL___nom_9___48a38b7dd", "7638": "15___CATEGORICAL___nom_9___48b41ed66", "7639": "15___CATEGORICAL___nom_9___48b820543", "7640": "15___CATEGORICAL___nom_9___48c11a62d", "7641": "15___CATEGORICAL___nom_9___48c25e936", "7642": "15___CATEGORICAL___nom_9___48cbf1785", "7643": "15___CATEGORICAL___nom_9___48cd521de", "7644": "15___CATEGORICAL___nom_9___48e13c746", "7645": "15___CATEGORICAL___nom_9___48e308537", "7646": "15___CATEGORICAL___nom_9___48e541d55", "7647": "15___CATEGORICAL___nom_9___48f945ecd", "7648": "15___CATEGORICAL___nom_9___4903dc012", "7649": "15___CATEGORICAL___nom_9___490543f68", "7650": "15___CATEGORICAL___nom_9___4905954ac", "7651": "15___CATEGORICAL___nom_9___49066667d", "7652": "15___CATEGORICAL___nom_9___491298588", "7653": "15___CATEGORICAL___nom_9___4913d543d", "7654": "15___CATEGORICAL___nom_9___4917d3e75", "7655": "15___CATEGORICAL___nom_9___491b1f17a", "7656": "15___CATEGORICAL___nom_9___492d00b94", "7657": "15___CATEGORICAL___nom_9___493b62229", "7658": "15___CATEGORICAL___nom_9___493b6a2d8", "7659": "15___CATEGORICAL___nom_9___493ed719e", "7660": "15___CATEGORICAL___nom_9___493f93a34", "7661": "15___CATEGORICAL___nom_9___49401bf74", "7662": "15___CATEGORICAL___nom_9___4947f5b1c", "7663": "15___CATEGORICAL___nom_9___494abb962", "7664": "15___CATEGORICAL___nom_9___4952bc209", "7665": "15___CATEGORICAL___nom_9___495634f46", "7666": "15___CATEGORICAL___nom_9___4956d25e4", "7667": "15___CATEGORICAL___nom_9___495e7f681", "7668": "15___CATEGORICAL___nom_9___49652e383", "7669": "15___CATEGORICAL___nom_9___49699f09b", "7670": "15___CATEGORICAL___nom_9___496ec15cf", "7671": "15___CATEGORICAL___nom_9___49714f139", "7672": "15___CATEGORICAL___nom_9___4988ea648", "7673": "15___CATEGORICAL___nom_9___498a6ba3c", "7674": "15___CATEGORICAL___nom_9___49936e962", "7675": "15___CATEGORICAL___nom_9___499b25423", "7676": "15___CATEGORICAL___nom_9___499c34e6d", "7677": "15___CATEGORICAL___nom_9___49a805285", "7678": "15___CATEGORICAL___nom_9___49ab4886d", "7679": "15___CATEGORICAL___nom_9___49abb069e", "7680": "15___CATEGORICAL___nom_9___49b06c91c", "7681": "15___CATEGORICAL___nom_9___49b3be9a8", "7682": "15___CATEGORICAL___nom_9___49bb20e0d", "7683": "15___CATEGORICAL___nom_9___49c48c739", "7684": "15___CATEGORICAL___nom_9___49ce42a45", "7685": "15___CATEGORICAL___nom_9___49cf10892", "7686": "15___CATEGORICAL___nom_9___49d9b1fa8", "7687": "15___CATEGORICAL___nom_9___49dd3cf6b", "7688": "15___CATEGORICAL___nom_9___49e53fe1e", "7689": "15___CATEGORICAL___nom_9___49ebf582d", "7690": "15___CATEGORICAL___nom_9___49ee7aef2", "7691": "15___CATEGORICAL___nom_9___49f950ced", "7692": "15___CATEGORICAL___nom_9___49ff85428", "7693": "15___CATEGORICAL___nom_9___4a01b84b0", "7694": "15___CATEGORICAL___nom_9___4a0e747c8", "7695": "15___CATEGORICAL___nom_9___4a19bf303", "7696": "15___CATEGORICAL___nom_9___4a1d971b2", "7697": "15___CATEGORICAL___nom_9___4a1dc5715", "7698": "15___CATEGORICAL___nom_9___4a23457fc", "7699": "15___CATEGORICAL___nom_9___4a39e9050", "7700": "15___CATEGORICAL___nom_9___4a3a6f8c5", "7701": "15___CATEGORICAL___nom_9___4a3fe89b6", "7702": "15___CATEGORICAL___nom_9___4a41289b7", "7703": "15___CATEGORICAL___nom_9___4a449ebfb", "7704": "15___CATEGORICAL___nom_9___4a47b29fc", "7705": "15___CATEGORICAL___nom_9___4a4b7a6fc", "7706": "15___CATEGORICAL___nom_9___4a5a4f2b1", "7707": "15___CATEGORICAL___nom_9___4a5d0154c", "7708": "15___CATEGORICAL___nom_9___4a62c8dd8", "7709": "15___CATEGORICAL___nom_9___4a7061045", "7710": "15___CATEGORICAL___nom_9___4a74c96d4", "7711": "15___CATEGORICAL___nom_9___4a759a249", "7712": "15___CATEGORICAL___nom_9___4a75ee299", "7713": "15___CATEGORICAL___nom_9___4a7abddeb", "7714": "15___CATEGORICAL___nom_9___4a7d5cdfb", "7715": "15___CATEGORICAL___nom_9___4a895d563", "7716": "15___CATEGORICAL___nom_9___4a8b38778", "7717": "15___CATEGORICAL___nom_9___4a8c0ed2a", "7718": "15___CATEGORICAL___nom_9___4a91d94a8", "7719": "15___CATEGORICAL___nom_9___4a9854d71", "7720": "15___CATEGORICAL___nom_9___4a98d9fc1", "7721": "15___CATEGORICAL___nom_9___4a9f6e8be", "7722": "15___CATEGORICAL___nom_9___4aabfb21e", "7723": "15___CATEGORICAL___nom_9___4ab009882", "7724": "15___CATEGORICAL___nom_9___4ab07f10e", "7725": "15___CATEGORICAL___nom_9___4ab1e5e0e", "7726": "15___CATEGORICAL___nom_9___4ab428bd2", "7727": "15___CATEGORICAL___nom_9___4ab48ebd6", "7728": "15___CATEGORICAL___nom_9___4abb5d2e6", "7729": "15___CATEGORICAL___nom_9___4abbb58c2", "7730": "15___CATEGORICAL___nom_9___4abd6fdc5", "7731": "15___CATEGORICAL___nom_9___4abfc71d4", "7732": "15___CATEGORICAL___nom_9___4ac497d58", "7733": "15___CATEGORICAL___nom_9___4ac70f076", "7734": "15___CATEGORICAL___nom_9___4ac8f3ae1", "7735": "15___CATEGORICAL___nom_9___4ad4a1794", "7736": "15___CATEGORICAL___nom_9___4ad5d67e5", "7737": "15___CATEGORICAL___nom_9___4adbc705d", "7738": "15___CATEGORICAL___nom_9___4af34160d", "7739": "15___CATEGORICAL___nom_9___4af80cbc9", "7740": "15___CATEGORICAL___nom_9___4b10cbc52", "7741": "15___CATEGORICAL___nom_9___4b127b1d1", "7742": "15___CATEGORICAL___nom_9___4b2d74526", "7743": "15___CATEGORICAL___nom_9___4b3156ec9", "7744": "15___CATEGORICAL___nom_9___4b3450cca", "7745": "15___CATEGORICAL___nom_9___4b4548ae7", "7746": "15___CATEGORICAL___nom_9___4b454c12c", "7747": "15___CATEGORICAL___nom_9___4b4658720", "7748": "15___CATEGORICAL___nom_9___4b49ffd5a", "7749": "15___CATEGORICAL___nom_9___4b4be03a2", "7750": "15___CATEGORICAL___nom_9___4b4daa170", "7751": "15___CATEGORICAL___nom_9___4b5ede9d4", "7752": "15___CATEGORICAL___nom_9___4b64bf63a", "7753": "15___CATEGORICAL___nom_9___4b6d710d8", "7754": "15___CATEGORICAL___nom_9___4b6f8e855", "7755": "15___CATEGORICAL___nom_9___4b732aa3f", "7756": "15___CATEGORICAL___nom_9___4b78a65a9", "7757": "15___CATEGORICAL___nom_9___4b7a614ad", "7758": "15___CATEGORICAL___nom_9___4b8e1dec5", "7759": "15___CATEGORICAL___nom_9___4b9762152", "7760": "15___CATEGORICAL___nom_9___4b9962af0", "7761": "15___CATEGORICAL___nom_9___4b9f4d905", "7762": "15___CATEGORICAL___nom_9___4b9fe1ed6", "7763": "15___CATEGORICAL___nom_9___4baa5c678", "7764": "15___CATEGORICAL___nom_9___4bae1d73c", "7765": "15___CATEGORICAL___nom_9___4bb018733", "7766": "15___CATEGORICAL___nom_9___4bbde826e", "7767": "15___CATEGORICAL___nom_9___4bc0be4a3", "7768": "15___CATEGORICAL___nom_9___4bc1a18a8", "7769": "15___CATEGORICAL___nom_9___4bc442b52", "7770": "15___CATEGORICAL___nom_9___4bc7856cc", "7771": "15___CATEGORICAL___nom_9___4bcc9907e", "7772": "15___CATEGORICAL___nom_9___4bcd85985", "7773": "15___CATEGORICAL___nom_9___4bd6aad2a", "7774": "15___CATEGORICAL___nom_9___4bdc53788", "7775": "15___CATEGORICAL___nom_9___4bf40a3e8", "7776": "15___CATEGORICAL___nom_9___4bfcb110f", "7777": "15___CATEGORICAL___nom_9___4c044a7e1", "7778": "15___CATEGORICAL___nom_9___4c0749a12", "7779": "15___CATEGORICAL___nom_9___4c07f9560", "7780": "15___CATEGORICAL___nom_9___4c0f35fd7", "7781": "15___CATEGORICAL___nom_9___4c1ac3ce1", "7782": "15___CATEGORICAL___nom_9___4c1d87ca4", "7783": "15___CATEGORICAL___nom_9___4c1e8702a", "7784": "15___CATEGORICAL___nom_9___4c1eb1e3f", "7785": "15___CATEGORICAL___nom_9___4c23f5569", "7786": "15___CATEGORICAL___nom_9___4c2f31f87", "7787": "15___CATEGORICAL___nom_9___4c356ac78", "7788": "15___CATEGORICAL___nom_9___4c38300d6", "7789": "15___CATEGORICAL___nom_9___4c3a02417", "7790": "15___CATEGORICAL___nom_9___4c3d12442", "7791": "15___CATEGORICAL___nom_9___4c4d08522", "7792": "15___CATEGORICAL___nom_9___4c59ba502", "7793": "15___CATEGORICAL___nom_9___4c612fddb", "7794": "15___CATEGORICAL___nom_9___4c729b853", "7795": "15___CATEGORICAL___nom_9___4c73bfba9", "7796": "15___CATEGORICAL___nom_9___4c77ea9c5", "7797": "15___CATEGORICAL___nom_9___4c7bbd009", "7798": "15___CATEGORICAL___nom_9___4c88466d1", "7799": "15___CATEGORICAL___nom_9___4c92c97c5", "7800": "15___CATEGORICAL___nom_9___4c9538f20", "7801": "15___CATEGORICAL___nom_9___4c9c47b24", "7802": "15___CATEGORICAL___nom_9___4ca201fb5", "7803": "15___CATEGORICAL___nom_9___4ca31c9fe", "7804": "15___CATEGORICAL___nom_9___4ca3eed28", "7805": "15___CATEGORICAL___nom_9___4caa6d432", "7806": "15___CATEGORICAL___nom_9___4cb1c7ab4", "7807": "15___CATEGORICAL___nom_9___4cb766b33", "7808": "15___CATEGORICAL___nom_9___4cbb0050e", "7809": "15___CATEGORICAL___nom_9___4cbba1b88", "7810": "15___CATEGORICAL___nom_9___4cbc1c1d1", "7811": "15___CATEGORICAL___nom_9___4cbdd80a9", "7812": "15___CATEGORICAL___nom_9___4cc372561", "7813": "15___CATEGORICAL___nom_9___4cd1a5839", "7814": "15___CATEGORICAL___nom_9___4cd4ec004", "7815": "15___CATEGORICAL___nom_9___4cd606b51", "7816": "15___CATEGORICAL___nom_9___4ce50c79b", "7817": "15___CATEGORICAL___nom_9___4cecb8726", "7818": "15___CATEGORICAL___nom_9___4cf5dde81", "7819": "15___CATEGORICAL___nom_9___4cf965b42", "7820": "15___CATEGORICAL___nom_9___4cfa87653", "7821": "15___CATEGORICAL___nom_9___4d0c6fdfd", "7822": "15___CATEGORICAL___nom_9___4d204525b", "7823": "15___CATEGORICAL___nom_9___4d20a7724", "7824": "15___CATEGORICAL___nom_9___4d21ba102", "7825": "15___CATEGORICAL___nom_9___4d2752dfb", "7826": "15___CATEGORICAL___nom_9___4d2995411", "7827": "15___CATEGORICAL___nom_9___4d29bf293", "7828": "15___CATEGORICAL___nom_9___4d2e9b690", "7829": "15___CATEGORICAL___nom_9___4d303f961", "7830": "15___CATEGORICAL___nom_9___4d323b393", "7831": "15___CATEGORICAL___nom_9___4d3633336", "7832": "15___CATEGORICAL___nom_9___4d3f06f4b", "7833": "15___CATEGORICAL___nom_9___4d4136224", "7834": "15___CATEGORICAL___nom_9___4d63a29d5", "7835": "15___CATEGORICAL___nom_9___4d63cfc6a", "7836": "15___CATEGORICAL___nom_9___4d648b237", "7837": "15___CATEGORICAL___nom_9___4d66103b2", "7838": "15___CATEGORICAL___nom_9___4d6ba3994", "7839": "15___CATEGORICAL___nom_9___4d6becc60", "7840": "15___CATEGORICAL___nom_9___4d6ec42f1", "7841": "15___CATEGORICAL___nom_9___4d73bbea8", "7842": "15___CATEGORICAL___nom_9___4d776e62d", "7843": "15___CATEGORICAL___nom_9___4d7772740", "7844": "15___CATEGORICAL___nom_9___4d787da4e", "7845": "15___CATEGORICAL___nom_9___4d7c1147e", "7846": "15___CATEGORICAL___nom_9___4d7d106a5", "7847": "15___CATEGORICAL___nom_9___4d81b4f23", "7848": "15___CATEGORICAL___nom_9___4d834bc73", "7849": "15___CATEGORICAL___nom_9___4d83ebbc3", "7850": "15___CATEGORICAL___nom_9___4d83fcd33", "7851": "15___CATEGORICAL___nom_9___4d86f511f", "7852": "15___CATEGORICAL___nom_9___4d87700f6", "7853": "15___CATEGORICAL___nom_9___4d885fa88", "7854": "15___CATEGORICAL___nom_9___4d8991d40", "7855": "15___CATEGORICAL___nom_9___4d89d1a16", "7856": "15___CATEGORICAL___nom_9___4d8fab389", "7857": "15___CATEGORICAL___nom_9___4d92290c4", "7858": "15___CATEGORICAL___nom_9___4d9422344", "7859": "15___CATEGORICAL___nom_9___4d994c0cd", "7860": "15___CATEGORICAL___nom_9___4d9e73028", "7861": "15___CATEGORICAL___nom_9___4daffc8ee", "7862": "15___CATEGORICAL___nom_9___4dba1f915", "7863": "15___CATEGORICAL___nom_9___4dc47a7c1", "7864": "15___CATEGORICAL___nom_9___4dc7a6d28", "7865": "15___CATEGORICAL___nom_9___4dcb7a740", "7866": "15___CATEGORICAL___nom_9___4dcc779eb", "7867": "15___CATEGORICAL___nom_9___4dd7705d2", "7868": "15___CATEGORICAL___nom_9___4dd7ba951", "7869": "15___CATEGORICAL___nom_9___4dd7db6b7", "7870": "15___CATEGORICAL___nom_9___4de023804", "7871": "15___CATEGORICAL___nom_9___4de471828", "7872": "15___CATEGORICAL___nom_9___4deb2ce41", "7873": "15___CATEGORICAL___nom_9___4df00d026", "7874": "15___CATEGORICAL___nom_9___4df3e8ba1", "7875": "15___CATEGORICAL___nom_9___4df5b461c", "7876": "15___CATEGORICAL___nom_9___4df8136f6", "7877": "15___CATEGORICAL___nom_9___4dfae9605", "7878": "15___CATEGORICAL___nom_9___4e0c21d41", "7879": "15___CATEGORICAL___nom_9___4e0c9b120", "7880": "15___CATEGORICAL___nom_9___4e0d3842b", "7881": "15___CATEGORICAL___nom_9___4e1537351", "7882": "15___CATEGORICAL___nom_9___4e1a8e824", "7883": "15___CATEGORICAL___nom_9___4e1aab6a0", "7884": "15___CATEGORICAL___nom_9___4e1b2c19f", "7885": "15___CATEGORICAL___nom_9___4e1ef47cc", "7886": "15___CATEGORICAL___nom_9___4e2217a90", "7887": "15___CATEGORICAL___nom_9___4e2822f98", "7888": "15___CATEGORICAL___nom_9___4e296f5c3", "7889": "15___CATEGORICAL___nom_9___4e34afc69", "7890": "15___CATEGORICAL___nom_9___4e36b47ec", "7891": "15___CATEGORICAL___nom_9___4e46ae55e", "7892": "15___CATEGORICAL___nom_9___4e4ef694b", "7893": "15___CATEGORICAL___nom_9___4e58752c9", "7894": "15___CATEGORICAL___nom_9___4e5977e66", "7895": "15___CATEGORICAL___nom_9___4e60d2ab5", "7896": "15___CATEGORICAL___nom_9___4e61e8919", "7897": "15___CATEGORICAL___nom_9___4e645d4b5", "7898": "15___CATEGORICAL___nom_9___4e661120c", "7899": "15___CATEGORICAL___nom_9___4e683bf81", "7900": "15___CATEGORICAL___nom_9___4e6868d5b", "7901": "15___CATEGORICAL___nom_9___4e71b68f9", "7902": "15___CATEGORICAL___nom_9___4e7692ced", "7903": "15___CATEGORICAL___nom_9___4e7f75aa4", "7904": "15___CATEGORICAL___nom_9___4e81734d7", "7905": "15___CATEGORICAL___nom_9___4e8428c03", "7906": "15___CATEGORICAL___nom_9___4e85fe05e", "7907": "15___CATEGORICAL___nom_9___4e87ff60a", "7908": "15___CATEGORICAL___nom_9___4e907f165", "7909": "15___CATEGORICAL___nom_9___4e915d493", "7910": "15___CATEGORICAL___nom_9___4e9877904", "7911": "15___CATEGORICAL___nom_9___4e9995669", "7912": "15___CATEGORICAL___nom_9___4ea20d144", "7913": "15___CATEGORICAL___nom_9___4ea303596", "7914": "15___CATEGORICAL___nom_9___4ea40a404", "7915": "15___CATEGORICAL___nom_9___4ea73bd34", "7916": "15___CATEGORICAL___nom_9___4eac12279", "7917": "15___CATEGORICAL___nom_9___4eaffab16", "7918": "15___CATEGORICAL___nom_9___4eb2ebbed", "7919": "15___CATEGORICAL___nom_9___4eb70b332", "7920": "15___CATEGORICAL___nom_9___4ec69b7bd", "7921": "15___CATEGORICAL___nom_9___4ec7a3d07", "7922": "15___CATEGORICAL___nom_9___4ec96012e", "7923": "15___CATEGORICAL___nom_9___4eccdf152", "7924": "15___CATEGORICAL___nom_9___4ecdb3658", "7925": "15___CATEGORICAL___nom_9___4ece40686", "7926": "15___CATEGORICAL___nom_9___4ed61c21d", "7927": "15___CATEGORICAL___nom_9___4ed87ff36", "7928": "15___CATEGORICAL___nom_9___4edaf381f", "7929": "15___CATEGORICAL___nom_9___4eddc1fb4", "7930": "15___CATEGORICAL___nom_9___4ee192a9a", "7931": "15___CATEGORICAL___nom_9___4ee23c575", "7932": "15___CATEGORICAL___nom_9___4ee2ab717", "7933": "15___CATEGORICAL___nom_9___4ee387755", "7934": "15___CATEGORICAL___nom_9___4ee3d52cf", "7935": "15___CATEGORICAL___nom_9___4ef13e388", "7936": "15___CATEGORICAL___nom_9___4ef405b94", "7937": "15___CATEGORICAL___nom_9___4ef743197", "7938": "15___CATEGORICAL___nom_9___4f08af58c", "7939": "15___CATEGORICAL___nom_9___4f0a4138d", "7940": "15___CATEGORICAL___nom_9___4f11dbdc6", "7941": "15___CATEGORICAL___nom_9___4f1a0fff8", "7942": "15___CATEGORICAL___nom_9___4f291579c", "7943": "15___CATEGORICAL___nom_9___4f2985f56", "7944": "15___CATEGORICAL___nom_9___4f2efb494", "7945": "15___CATEGORICAL___nom_9___4f2f07062", "7946": "15___CATEGORICAL___nom_9___4f347d2fb", "7947": "15___CATEGORICAL___nom_9___4f36ed41e", "7948": "15___CATEGORICAL___nom_9___4f3d1f98a", "7949": "15___CATEGORICAL___nom_9___4f3d4d167", "7950": "15___CATEGORICAL___nom_9___4f3faa790", "7951": "15___CATEGORICAL___nom_9___4f4a17f34", "7952": "15___CATEGORICAL___nom_9___4f4b216b6", "7953": "15___CATEGORICAL___nom_9___4f538493c", "7954": "15___CATEGORICAL___nom_9___4f53c630f", "7955": "15___CATEGORICAL___nom_9___4f55f9e6d", "7956": "15___CATEGORICAL___nom_9___4f62c2445", "7957": "15___CATEGORICAL___nom_9___4f6933576", "7958": "15___CATEGORICAL___nom_9___4f698df5a", "7959": "15___CATEGORICAL___nom_9___4f6b8c0a1", "7960": "15___CATEGORICAL___nom_9___4f6e2febd", "7961": "15___CATEGORICAL___nom_9___4f6e5ad4e", "7962": "15___CATEGORICAL___nom_9___4f79bc75f", "7963": "15___CATEGORICAL___nom_9___4f7a92d3e", "7964": "15___CATEGORICAL___nom_9___4f8099005", "7965": "15___CATEGORICAL___nom_9___4f836160a", "7966": "15___CATEGORICAL___nom_9___4f8c60b6d", "7967": "15___CATEGORICAL___nom_9___4f8e2f5f9", "7968": "15___CATEGORICAL___nom_9___4f92d0df3", "7969": "15___CATEGORICAL___nom_9___4f9fe6b90", "7970": "15___CATEGORICAL___nom_9___4faf5f918", "7971": "15___CATEGORICAL___nom_9___4fb36ac9b", "7972": "15___CATEGORICAL___nom_9___4fb3facba", "7973": "15___CATEGORICAL___nom_9___4fc19f5ff", "7974": "15___CATEGORICAL___nom_9___4fc301835", "7975": "15___CATEGORICAL___nom_9___4fc52258f", "7976": "15___CATEGORICAL___nom_9___4fc541223", "7977": "15___CATEGORICAL___nom_9___4fca42dfc", "7978": "15___CATEGORICAL___nom_9___4fcb3fcd8", "7979": "15___CATEGORICAL___nom_9___4fda7cd7a", "7980": "15___CATEGORICAL___nom_9___4fda89736", "7981": "15___CATEGORICAL___nom_9___4fdbe0d92", "7982": "15___CATEGORICAL___nom_9___4fdf1b4be", "7983": "15___CATEGORICAL___nom_9___4fe9206fc", "7984": "15___CATEGORICAL___nom_9___4ff8c5ad6", "7985": "15___CATEGORICAL___nom_9___4ff9de69f", "7986": "15___CATEGORICAL___nom_9___5004d59ca", "7987": "15___CATEGORICAL___nom_9___5004e3db8", "7988": "15___CATEGORICAL___nom_9___500ed200f", "7989": "15___CATEGORICAL___nom_9___5013794ac", "7990": "15___CATEGORICAL___nom_9___5015330fd", "7991": "15___CATEGORICAL___nom_9___501b68954", "7992": "15___CATEGORICAL___nom_9___501c1b975", "7993": "15___CATEGORICAL___nom_9___5022a2afb", "7994": "15___CATEGORICAL___nom_9___5024c4263", "7995": "15___CATEGORICAL___nom_9___502ad3d0e", "7996": "15___CATEGORICAL___nom_9___50352e461", "7997": "15___CATEGORICAL___nom_9___503a79f50", "7998": "15___CATEGORICAL___nom_9___5051001c0", "7999": "15___CATEGORICAL___nom_9___505106fec", "8000": "15___CATEGORICAL___nom_9___505303c1d", "8001": "15___CATEGORICAL___nom_9___5056be7f7", "8002": "15___CATEGORICAL___nom_9___505f5ce4d", "8003": "15___CATEGORICAL___nom_9___505fc216c", "8004": "15___CATEGORICAL___nom_9___50622e7a1", "8005": "15___CATEGORICAL___nom_9___506378fc8", "8006": "15___CATEGORICAL___nom_9___50679484e", "8007": "15___CATEGORICAL___nom_9___506b8e5dd", "8008": "15___CATEGORICAL___nom_9___507bfe839", "8009": "15___CATEGORICAL___nom_9___508105ac5", "8010": "15___CATEGORICAL___nom_9___50852cdec", "8011": "15___CATEGORICAL___nom_9___508c9de37", "8012": "15___CATEGORICAL___nom_9___508fd7e0b", "8013": "15___CATEGORICAL___nom_9___509678728", "8014": "15___CATEGORICAL___nom_9___5096ea7ea", "8015": "15___CATEGORICAL___nom_9___50978296a", "8016": "15___CATEGORICAL___nom_9___509989596", "8017": "15___CATEGORICAL___nom_9___509998e11", "8018": "15___CATEGORICAL___nom_9___509f880c2", "8019": "15___CATEGORICAL___nom_9___50a081c64", "8020": "15___CATEGORICAL___nom_9___50a52295c", "8021": "15___CATEGORICAL___nom_9___50a6c96ff", "8022": "15___CATEGORICAL___nom_9___50b4b4080", "8023": "15___CATEGORICAL___nom_9___50b598622", "8024": "15___CATEGORICAL___nom_9___50bb90329", "8025": "15___CATEGORICAL___nom_9___50bbf6a13", "8026": "15___CATEGORICAL___nom_9___50be14240", "8027": "15___CATEGORICAL___nom_9___50be2116e", "8028": "15___CATEGORICAL___nom_9___50c692c47", "8029": "15___CATEGORICAL___nom_9___50caeb28c", "8030": "15___CATEGORICAL___nom_9___50cd6c1fd", "8031": "15___CATEGORICAL___nom_9___50ce8691f", "8032": "15___CATEGORICAL___nom_9___50ceeb647", "8033": "15___CATEGORICAL___nom_9___50d7bb8f6", "8034": "15___CATEGORICAL___nom_9___50ed2c354", "8035": "15___CATEGORICAL___nom_9___50efdc437", "8036": "15___CATEGORICAL___nom_9___50f0277a4", "8037": "15___CATEGORICAL___nom_9___50f375e4b", "8038": "15___CATEGORICAL___nom_9___50fa21519", "8039": "15___CATEGORICAL___nom_9___50fdd973a", "8040": "15___CATEGORICAL___nom_9___51030c6d7", "8041": "15___CATEGORICAL___nom_9___5112ac1c0", "8042": "15___CATEGORICAL___nom_9___51151ca49", "8043": "15___CATEGORICAL___nom_9___5115226c7", "8044": "15___CATEGORICAL___nom_9___5117fb5e7", "8045": "15___CATEGORICAL___nom_9___5118488c5", "8046": "15___CATEGORICAL___nom_9___5122ffb33", "8047": "15___CATEGORICAL___nom_9___5125d4118", "8048": "15___CATEGORICAL___nom_9___512d2fc56", "8049": "15___CATEGORICAL___nom_9___512e252c1", "8050": "15___CATEGORICAL___nom_9___5133166b0", "8051": "15___CATEGORICAL___nom_9___513996f8e", "8052": "15___CATEGORICAL___nom_9___5144e08b4", "8053": "15___CATEGORICAL___nom_9___51489f58c", "8054": "15___CATEGORICAL___nom_9___514b2ae36", "8055": "15___CATEGORICAL___nom_9___514c22f0e", "8056": "15___CATEGORICAL___nom_9___514f74d01", "8057": "15___CATEGORICAL___nom_9___5150556aa", "8058": "15___CATEGORICAL___nom_9___51565b7cf", "8059": "15___CATEGORICAL___nom_9___5156c4278", "8060": "15___CATEGORICAL___nom_9___51581df26", "8061": "15___CATEGORICAL___nom_9___5162d0c5b", "8062": "15___CATEGORICAL___nom_9___5164cfb84", "8063": "15___CATEGORICAL___nom_9___516b7ecaa", "8064": "15___CATEGORICAL___nom_9___516bebe7c", "8065": "15___CATEGORICAL___nom_9___516db8cf8", "8066": "15___CATEGORICAL___nom_9___516eac33e", "8067": "15___CATEGORICAL___nom_9___5175ac2ac", "8068": "15___CATEGORICAL___nom_9___5178e3594", "8069": "15___CATEGORICAL___nom_9___51794c014", "8070": "15___CATEGORICAL___nom_9___517c6b43a", "8071": "15___CATEGORICAL___nom_9___517cc0805", "8072": "15___CATEGORICAL___nom_9___517df6e01", "8073": "15___CATEGORICAL___nom_9___5180efe3b", "8074": "15___CATEGORICAL___nom_9___5182368b9", "8075": "15___CATEGORICAL___nom_9___518573ad2", "8076": "15___CATEGORICAL___nom_9___5187ae4f4", "8077": "15___CATEGORICAL___nom_9___5187ba786", "8078": "15___CATEGORICAL___nom_9___518b8240e", "8079": "15___CATEGORICAL___nom_9___518ea78ae", "8080": "15___CATEGORICAL___nom_9___5192bca70", "8081": "15___CATEGORICAL___nom_9___519626a13", "8082": "15___CATEGORICAL___nom_9___51991dcc7", "8083": "15___CATEGORICAL___nom_9___519ccf634", "8084": "15___CATEGORICAL___nom_9___51c006823", "8085": "15___CATEGORICAL___nom_9___51c54ddc1", "8086": "15___CATEGORICAL___nom_9___51d1db3e4", "8087": "15___CATEGORICAL___nom_9___51d281ceb", "8088": "15___CATEGORICAL___nom_9___51d94d996", "8089": "15___CATEGORICAL___nom_9___51da7ea30", "8090": "15___CATEGORICAL___nom_9___51da80b44", "8091": "15___CATEGORICAL___nom_9___51e27c16d", "8092": "15___CATEGORICAL___nom_9___51e3f15af", "8093": "15___CATEGORICAL___nom_9___51e52d0f3", "8094": "15___CATEGORICAL___nom_9___51edec159", "8095": "15___CATEGORICAL___nom_9___51ef3941f", "8096": "15___CATEGORICAL___nom_9___52026db15", "8097": "15___CATEGORICAL___nom_9___520540092", "8098": "15___CATEGORICAL___nom_9___52070e68c", "8099": "15___CATEGORICAL___nom_9___520a781f0", "8100": "15___CATEGORICAL___nom_9___520a9bd27", "8101": "15___CATEGORICAL___nom_9___5213501ec", "8102": "15___CATEGORICAL___nom_9___5214c4503", "8103": "15___CATEGORICAL___nom_9___521930b44", "8104": "15___CATEGORICAL___nom_9___5224a5a24", "8105": "15___CATEGORICAL___nom_9___522a98b1a", "8106": "15___CATEGORICAL___nom_9___523bd6bbf", "8107": "15___CATEGORICAL___nom_9___523f52fc0", "8108": "15___CATEGORICAL___nom_9___52496e8e7", "8109": "15___CATEGORICAL___nom_9___524b4d4b1", "8110": "15___CATEGORICAL___nom_9___525190cbe", "8111": "15___CATEGORICAL___nom_9___525608e08", "8112": "15___CATEGORICAL___nom_9___5256b62c3", "8113": "15___CATEGORICAL___nom_9___525ce8ae1", "8114": "15___CATEGORICAL___nom_9___525db37f8", "8115": "15___CATEGORICAL___nom_9___525e03d7a", "8116": "15___CATEGORICAL___nom_9___525eacd27", "8117": "15___CATEGORICAL___nom_9___525f0c680", "8118": "15___CATEGORICAL___nom_9___526bccf74", "8119": "15___CATEGORICAL___nom_9___526c19813", "8120": "15___CATEGORICAL___nom_9___527fa77c2", "8121": "15___CATEGORICAL___nom_9___528036bfe", "8122": "15___CATEGORICAL___nom_9___52864e36c", "8123": "15___CATEGORICAL___nom_9___528e0701b", "8124": "15___CATEGORICAL___nom_9___5299597bb", "8125": "15___CATEGORICAL___nom_9___529989397", "8126": "15___CATEGORICAL___nom_9___52a88a588", "8127": "15___CATEGORICAL___nom_9___52b04a79c", "8128": "15___CATEGORICAL___nom_9___52b22a868", "8129": "15___CATEGORICAL___nom_9___52b4c61da", "8130": "15___CATEGORICAL___nom_9___52bc52ec0", "8131": "15___CATEGORICAL___nom_9___52c04ff0a", "8132": "15___CATEGORICAL___nom_9___52c5c3733", "8133": "15___CATEGORICAL___nom_9___52c85b74a", "8134": "15___CATEGORICAL___nom_9___52c9433b6", "8135": "15___CATEGORICAL___nom_9___52d354760", "8136": "15___CATEGORICAL___nom_9___52d7dadb1", "8137": "15___CATEGORICAL___nom_9___52d9062c6", "8138": "15___CATEGORICAL___nom_9___52e20f256", "8139": "15___CATEGORICAL___nom_9___52eba1511", "8140": "15___CATEGORICAL___nom_9___52f2ca34e", "8141": "15___CATEGORICAL___nom_9___52f354514", "8142": "15___CATEGORICAL___nom_9___52f54d545", "8143": "15___CATEGORICAL___nom_9___52f948b93", "8144": "15___CATEGORICAL___nom_9___52f9f79d6", "8145": "15___CATEGORICAL___nom_9___52fda03d9", "8146": "15___CATEGORICAL___nom_9___52fdca249", "8147": "15___CATEGORICAL___nom_9___52ff77b31", "8148": "15___CATEGORICAL___nom_9___530888640", "8149": "15___CATEGORICAL___nom_9___530d465bb", "8150": "15___CATEGORICAL___nom_9___531010b31", "8151": "15___CATEGORICAL___nom_9___531f60880", "8152": "15___CATEGORICAL___nom_9___5327d5530", "8153": "15___CATEGORICAL___nom_9___532c294a4", "8154": "15___CATEGORICAL___nom_9___5336995b3", "8155": "15___CATEGORICAL___nom_9___53395846f", "8156": "15___CATEGORICAL___nom_9___53419e190", "8157": "15___CATEGORICAL___nom_9___534470789", "8158": "15___CATEGORICAL___nom_9___5346f2227", "8159": "15___CATEGORICAL___nom_9___53486bd3e", "8160": "15___CATEGORICAL___nom_9___53509cf75", "8161": "15___CATEGORICAL___nom_9___535828bad", "8162": "15___CATEGORICAL___nom_9___535a73af6", "8163": "15___CATEGORICAL___nom_9___53645c56d", "8164": "15___CATEGORICAL___nom_9___53681d32f", "8165": "15___CATEGORICAL___nom_9___536a0ad8e", "8166": "15___CATEGORICAL___nom_9___537664379", "8167": "15___CATEGORICAL___nom_9___53769bdd7", "8168": "15___CATEGORICAL___nom_9___537878315", "8169": "15___CATEGORICAL___nom_9___53836b722", "8170": "15___CATEGORICAL___nom_9___5389c6f6a", "8171": "15___CATEGORICAL___nom_9___538ab9f52", "8172": "15___CATEGORICAL___nom_9___5393a2e1b", "8173": "15___CATEGORICAL___nom_9___539436555", "8174": "15___CATEGORICAL___nom_9___539c22ab6", "8175": "15___CATEGORICAL___nom_9___53ad3f8bf", "8176": "15___CATEGORICAL___nom_9___53ad415f9", "8177": "15___CATEGORICAL___nom_9___53affb344", "8178": "15___CATEGORICAL___nom_9___53b149a2e", "8179": "15___CATEGORICAL___nom_9___53bd4ba9f", "8180": "15___CATEGORICAL___nom_9___53c3932bd", "8181": "15___CATEGORICAL___nom_9___53e65ade5", "8182": "15___CATEGORICAL___nom_9___53eec277e", "8183": "15___CATEGORICAL___nom_9___53f3af0e9", "8184": "15___CATEGORICAL___nom_9___53f703b8c", "8185": "15___CATEGORICAL___nom_9___53f7c9369", "8186": "15___CATEGORICAL___nom_9___53fc3c549", "8187": "15___CATEGORICAL___nom_9___53fd56c32", "8188": "15___CATEGORICAL___nom_9___540018428", "8189": "15___CATEGORICAL___nom_9___5404ccfc3", "8190": "15___CATEGORICAL___nom_9___54078faf2", "8191": "15___CATEGORICAL___nom_9___540e93431", "8192": "15___CATEGORICAL___nom_9___54113ab64", "8193": "15___CATEGORICAL___nom_9___54123f865", "8194": "15___CATEGORICAL___nom_9___54126fb57", "8195": "15___CATEGORICAL___nom_9___541bd1537", "8196": "15___CATEGORICAL___nom_9___541cdf1ed", "8197": "15___CATEGORICAL___nom_9___541ec5d65", "8198": "15___CATEGORICAL___nom_9___5426bb003", "8199": "15___CATEGORICAL___nom_9___542f49643", "8200": "15___CATEGORICAL___nom_9___5435b467f", "8201": "15___CATEGORICAL___nom_9___5445d125f", "8202": "15___CATEGORICAL___nom_9___544681d2b", "8203": "15___CATEGORICAL___nom_9___544c28919", "8204": "15___CATEGORICAL___nom_9___544d3a31c", "8205": "15___CATEGORICAL___nom_9___544df2857", "8206": "15___CATEGORICAL___nom_9___54555072e", "8207": "15___CATEGORICAL___nom_9___5457e547f", "8208": "15___CATEGORICAL___nom_9___545bf9366", "8209": "15___CATEGORICAL___nom_9___545c8ac83", "8210": "15___CATEGORICAL___nom_9___545f8e286", "8211": "15___CATEGORICAL___nom_9___54671a051", "8212": "15___CATEGORICAL___nom_9___54719c517", "8213": "15___CATEGORICAL___nom_9___5476f86b3", "8214": "15___CATEGORICAL___nom_9___547c8b513", "8215": "15___CATEGORICAL___nom_9___5492b3394", "8216": "15___CATEGORICAL___nom_9___5494462e4", "8217": "15___CATEGORICAL___nom_9___5494e43e7", "8218": "15___CATEGORICAL___nom_9___5498d8837", "8219": "15___CATEGORICAL___nom_9___549b31521", "8220": "15___CATEGORICAL___nom_9___549bf1d17", "8221": "15___CATEGORICAL___nom_9___549d3ea14", "8222": "15___CATEGORICAL___nom_9___54a3f6b2b", "8223": "15___CATEGORICAL___nom_9___54a4237fc", "8224": "15___CATEGORICAL___nom_9___54b094fab", "8225": "15___CATEGORICAL___nom_9___54d8d12d7", "8226": "15___CATEGORICAL___nom_9___54dc42abc", "8227": "15___CATEGORICAL___nom_9___54e697161", "8228": "15___CATEGORICAL___nom_9___54e7cda22", "8229": "15___CATEGORICAL___nom_9___54ee7d6de", "8230": "15___CATEGORICAL___nom_9___54ef03d57", "8231": "15___CATEGORICAL___nom_9___54f58e361", "8232": "15___CATEGORICAL___nom_9___54fe9443b", "8233": "15___CATEGORICAL___nom_9___55020cc17", "8234": "15___CATEGORICAL___nom_9___5506f0fdf", "8235": "15___CATEGORICAL___nom_9___5508a2640", "8236": "15___CATEGORICAL___nom_9___5509e0444", "8237": "15___CATEGORICAL___nom_9___55127545c", "8238": "15___CATEGORICAL___nom_9___5517aa6e8", "8239": "15___CATEGORICAL___nom_9___5518b98e9", "8240": "15___CATEGORICAL___nom_9___551ce3be9", "8241": "15___CATEGORICAL___nom_9___551d0c9d9", "8242": "15___CATEGORICAL___nom_9___552d6d831", "8243": "15___CATEGORICAL___nom_9___55306df03", "8244": "15___CATEGORICAL___nom_9___55318e1ef", "8245": "15___CATEGORICAL___nom_9___55321604d", "8246": "15___CATEGORICAL___nom_9___553ec6bed", "8247": "15___CATEGORICAL___nom_9___5540e615a", "8248": "15___CATEGORICAL___nom_9___554c7dea5", "8249": "15___CATEGORICAL___nom_9___55508ed11", "8250": "15___CATEGORICAL___nom_9___5552bb105", "8251": "15___CATEGORICAL___nom_9___5553171e5", "8252": "15___CATEGORICAL___nom_9___5561ba893", "8253": "15___CATEGORICAL___nom_9___556c4308c", "8254": "15___CATEGORICAL___nom_9___556ceeaca", "8255": "15___CATEGORICAL___nom_9___557564404", "8256": "15___CATEGORICAL___nom_9___55778fad0", "8257": "15___CATEGORICAL___nom_9___557cc5d14", "8258": "15___CATEGORICAL___nom_9___55823d0e4", "8259": "15___CATEGORICAL___nom_9___5588097b7", "8260": "15___CATEGORICAL___nom_9___558b51f4a", "8261": "15___CATEGORICAL___nom_9___5594f10ad", "8262": "15___CATEGORICAL___nom_9___559c63493", "8263": "15___CATEGORICAL___nom_9___559f4fb0c", "8264": "15___CATEGORICAL___nom_9___55a02ef66", "8265": "15___CATEGORICAL___nom_9___55aebe10f", "8266": "15___CATEGORICAL___nom_9___55af05078", "8267": "15___CATEGORICAL___nom_9___55b36406b", "8268": "15___CATEGORICAL___nom_9___55b54234d", "8269": "15___CATEGORICAL___nom_9___55bc7f2fd", "8270": "15___CATEGORICAL___nom_9___55bed39d9", "8271": "15___CATEGORICAL___nom_9___55cadaf7d", "8272": "15___CATEGORICAL___nom_9___55cbdab2d", "8273": "15___CATEGORICAL___nom_9___55ccbcda1", "8274": "15___CATEGORICAL___nom_9___55cdb547a", "8275": "15___CATEGORICAL___nom_9___55d39c2b8", "8276": "15___CATEGORICAL___nom_9___55d3c9630", "8277": "15___CATEGORICAL___nom_9___55d76178f", "8278": "15___CATEGORICAL___nom_9___55e10bf3b", "8279": "15___CATEGORICAL___nom_9___55e1eb727", "8280": "15___CATEGORICAL___nom_9___55e6497ab", "8281": "15___CATEGORICAL___nom_9___55ea800bc", "8282": "15___CATEGORICAL___nom_9___55eecf652", "8283": "15___CATEGORICAL___nom_9___55f093b65", "8284": "15___CATEGORICAL___nom_9___56014e108", "8285": "15___CATEGORICAL___nom_9___56056b836", "8286": "15___CATEGORICAL___nom_9___5607588e8", "8287": "15___CATEGORICAL___nom_9___560a61df6", "8288": "15___CATEGORICAL___nom_9___56226db82", "8289": "15___CATEGORICAL___nom_9___5633938f8", "8290": "15___CATEGORICAL___nom_9___5637aafe1", "8291": "15___CATEGORICAL___nom_9___563ad2c72", "8292": "15___CATEGORICAL___nom_9___563bfcf4d", "8293": "15___CATEGORICAL___nom_9___563fbbc15", "8294": "15___CATEGORICAL___nom_9___564046b7e", "8295": "15___CATEGORICAL___nom_9___56485b230", "8296": "15___CATEGORICAL___nom_9___564d47a33", "8297": "15___CATEGORICAL___nom_9___5651044d5", "8298": "15___CATEGORICAL___nom_9___565bada5c", "8299": "15___CATEGORICAL___nom_9___565da8330", "8300": "15___CATEGORICAL___nom_9___566024a4e", "8301": "15___CATEGORICAL___nom_9___5669accf7", "8302": "15___CATEGORICAL___nom_9___566d13487", "8303": "15___CATEGORICAL___nom_9___56722d736", "8304": "15___CATEGORICAL___nom_9___5672be315", "8305": "15___CATEGORICAL___nom_9___5675df85b", "8306": "15___CATEGORICAL___nom_9___56770359e", "8307": "15___CATEGORICAL___nom_9___567b41532", "8308": "15___CATEGORICAL___nom_9___567e097f1", "8309": "15___CATEGORICAL___nom_9___56854c8a3", "8310": "15___CATEGORICAL___nom_9___56887f7c3", "8311": "15___CATEGORICAL___nom_9___568af6a3c", "8312": "15___CATEGORICAL___nom_9___568bd7a3a", "8313": "15___CATEGORICAL___nom_9___568fb32bb", "8314": "15___CATEGORICAL___nom_9___5692e277b", "8315": "15___CATEGORICAL___nom_9___56963f939", "8316": "15___CATEGORICAL___nom_9___569ecb558", "8317": "15___CATEGORICAL___nom_9___56a26027e", "8318": "15___CATEGORICAL___nom_9___56ab4d5c6", "8319": "15___CATEGORICAL___nom_9___56ac6ecfc", "8320": "15___CATEGORICAL___nom_9___56b6b1341", "8321": "15___CATEGORICAL___nom_9___56c459638", "8322": "15___CATEGORICAL___nom_9___56c4cb0bd", "8323": "15___CATEGORICAL___nom_9___56c6fdb7b", "8324": "15___CATEGORICAL___nom_9___56c7b0e9e", "8325": "15___CATEGORICAL___nom_9___56cdaf7f2", "8326": "15___CATEGORICAL___nom_9___56d0db57b", "8327": "15___CATEGORICAL___nom_9___56d30dee3", "8328": "15___CATEGORICAL___nom_9___56df77fb4", "8329": "15___CATEGORICAL___nom_9___56f93f15e", "8330": "15___CATEGORICAL___nom_9___56fd534cd", "8331": "15___CATEGORICAL___nom_9___56fee6808", "8332": "15___CATEGORICAL___nom_9___570a2e8a5", "8333": "15___CATEGORICAL___nom_9___570d8d972", "8334": "15___CATEGORICAL___nom_9___570ed612d", "8335": "15___CATEGORICAL___nom_9___571a6e3cb", "8336": "15___CATEGORICAL___nom_9___57240a360", "8337": "15___CATEGORICAL___nom_9___572c3ca71", "8338": "15___CATEGORICAL___nom_9___573026c9c", "8339": "15___CATEGORICAL___nom_9___5731280f6", "8340": "15___CATEGORICAL___nom_9___574f8ff4c", "8341": "15___CATEGORICAL___nom_9___5756ad66e", "8342": "15___CATEGORICAL___nom_9___57574f00d", "8343": "15___CATEGORICAL___nom_9___57596ab9b", "8344": "15___CATEGORICAL___nom_9___5765166b4", "8345": "15___CATEGORICAL___nom_9___576ab2c7c", "8346": "15___CATEGORICAL___nom_9___5774c5faa", "8347": "15___CATEGORICAL___nom_9___5776f0353", "8348": "15___CATEGORICAL___nom_9___578148276", "8349": "15___CATEGORICAL___nom_9___5782fd032", "8350": "15___CATEGORICAL___nom_9___579abef26", "8351": "15___CATEGORICAL___nom_9___579c86625", "8352": "15___CATEGORICAL___nom_9___57a8df1af", "8353": "15___CATEGORICAL___nom_9___57a9f74d7", "8354": "15___CATEGORICAL___nom_9___57abe99ae", "8355": "15___CATEGORICAL___nom_9___57b41cf49", "8356": "15___CATEGORICAL___nom_9___57b72c831", "8357": "15___CATEGORICAL___nom_9___57b843920", "8358": "15___CATEGORICAL___nom_9___57bf14892", "8359": "15___CATEGORICAL___nom_9___57c04aff3", "8360": "15___CATEGORICAL___nom_9___57c050d05", "8361": "15___CATEGORICAL___nom_9___57cda5459", "8362": "15___CATEGORICAL___nom_9___57d176ee2", "8363": "15___CATEGORICAL___nom_9___57d3598f2", "8364": "15___CATEGORICAL___nom_9___57e325c23", "8365": "15___CATEGORICAL___nom_9___57ea17178", "8366": "15___CATEGORICAL___nom_9___57f1df9c2", "8367": "15___CATEGORICAL___nom_9___57f42bd0f", "8368": "15___CATEGORICAL___nom_9___58095ff59", "8369": "15___CATEGORICAL___nom_9___5811fc230", "8370": "15___CATEGORICAL___nom_9___58168fdd9", "8371": "15___CATEGORICAL___nom_9___581b96306", "8372": "15___CATEGORICAL___nom_9___581de94cb", "8373": "15___CATEGORICAL___nom_9___583793bb6", "8374": "15___CATEGORICAL___nom_9___583e0c53c", "8375": "15___CATEGORICAL___nom_9___58458e573", "8376": "15___CATEGORICAL___nom_9___5848f9ac4", "8377": "15___CATEGORICAL___nom_9___584b0b40d", "8378": "15___CATEGORICAL___nom_9___584ccd44e", "8379": "15___CATEGORICAL___nom_9___58561961e", "8380": "15___CATEGORICAL___nom_9___586016d43", "8381": "15___CATEGORICAL___nom_9___586030e5a", "8382": "15___CATEGORICAL___nom_9___5864e5f52", "8383": "15___CATEGORICAL___nom_9___587299f6d", "8384": "15___CATEGORICAL___nom_9___58739dabf", "8385": "15___CATEGORICAL___nom_9___5873f2a2a", "8386": "15___CATEGORICAL___nom_9___5877110d4", "8387": "15___CATEGORICAL___nom_9___587cb395a", "8388": "15___CATEGORICAL___nom_9___5880aa6cc", "8389": "15___CATEGORICAL___nom_9___588be2e5c", "8390": "15___CATEGORICAL___nom_9___5890f9d5e", "8391": "15___CATEGORICAL___nom_9___589a39395", "8392": "15___CATEGORICAL___nom_9___589e5522c", "8393": "15___CATEGORICAL___nom_9___58a13ba33", "8394": "15___CATEGORICAL___nom_9___58ab840fc", "8395": "15___CATEGORICAL___nom_9___58bb6e15d", "8396": "15___CATEGORICAL___nom_9___58bee0721", "8397": "15___CATEGORICAL___nom_9___58ccffd44", "8398": "15___CATEGORICAL___nom_9___58ce5d310", "8399": "15___CATEGORICAL___nom_9___58d5f02cc", "8400": "15___CATEGORICAL___nom_9___58d999cd9", "8401": "15___CATEGORICAL___nom_9___58eb9308d", "8402": "15___CATEGORICAL___nom_9___58f1663bd", "8403": "15___CATEGORICAL___nom_9___58f550c21", "8404": "15___CATEGORICAL___nom_9___5904e00ee", "8405": "15___CATEGORICAL___nom_9___5928baf68", "8406": "15___CATEGORICAL___nom_9___592f52771", "8407": "15___CATEGORICAL___nom_9___5932e1ea2", "8408": "15___CATEGORICAL___nom_9___593b01b8e", "8409": "15___CATEGORICAL___nom_9___593fffce7", "8410": "15___CATEGORICAL___nom_9___594655f5e", "8411": "15___CATEGORICAL___nom_9___5946f979c", "8412": "15___CATEGORICAL___nom_9___594b646c6", "8413": "15___CATEGORICAL___nom_9___594e01153", "8414": "15___CATEGORICAL___nom_9___595649b77", "8415": "15___CATEGORICAL___nom_9___595fb8687", "8416": "15___CATEGORICAL___nom_9___5960e0a99", "8417": "15___CATEGORICAL___nom_9___59659f600", "8418": "15___CATEGORICAL___nom_9___5966d4e2f", "8419": "15___CATEGORICAL___nom_9___596eb207a", "8420": "15___CATEGORICAL___nom_9___5972dd4d3", "8421": "15___CATEGORICAL___nom_9___597623eb6", "8422": "15___CATEGORICAL___nom_9___59810f317", "8423": "15___CATEGORICAL___nom_9___5982ceb3b", "8424": "15___CATEGORICAL___nom_9___598386caa", "8425": "15___CATEGORICAL___nom_9___5985945e1", "8426": "15___CATEGORICAL___nom_9___59861ae2d", "8427": "15___CATEGORICAL___nom_9___59870b01e", "8428": "15___CATEGORICAL___nom_9___598783ec9", "8429": "15___CATEGORICAL___nom_9___598815230", "8430": "15___CATEGORICAL___nom_9___5988d9704", "8431": "15___CATEGORICAL___nom_9___59982e5d0", "8432": "15___CATEGORICAL___nom_9___59a2d5a2f", "8433": "15___CATEGORICAL___nom_9___59aad915a", "8434": "15___CATEGORICAL___nom_9___59ac86e3b", "8435": "15___CATEGORICAL___nom_9___59add3990", "8436": "15___CATEGORICAL___nom_9___59aed66ca", "8437": "15___CATEGORICAL___nom_9___59b1d1b02", "8438": "15___CATEGORICAL___nom_9___59b3e393c", "8439": "15___CATEGORICAL___nom_9___59b56f356", "8440": "15___CATEGORICAL___nom_9___59b70f7c0", "8441": "15___CATEGORICAL___nom_9___59c4839fa", "8442": "15___CATEGORICAL___nom_9___59d3140fe", "8443": "15___CATEGORICAL___nom_9___59d47d9fb", "8444": "15___CATEGORICAL___nom_9___59d894ce4", "8445": "15___CATEGORICAL___nom_9___59e08e8f8", "8446": "15___CATEGORICAL___nom_9___59e172071", "8447": "15___CATEGORICAL___nom_9___59e2dadf7", "8448": "15___CATEGORICAL___nom_9___59e50cceb", "8449": "15___CATEGORICAL___nom_9___59f40e09b", "8450": "15___CATEGORICAL___nom_9___5a05e985f", "8451": "15___CATEGORICAL___nom_9___5a07a3e1a", "8452": "15___CATEGORICAL___nom_9___5a0cd77ea", "8453": "15___CATEGORICAL___nom_9___5a0e3fa37", "8454": "15___CATEGORICAL___nom_9___5a0e82b91", "8455": "15___CATEGORICAL___nom_9___5a0f3a2c8", "8456": "15___CATEGORICAL___nom_9___5a10dcf65", "8457": "15___CATEGORICAL___nom_9___5a13025d4", "8458": "15___CATEGORICAL___nom_9___5a13de245", "8459": "15___CATEGORICAL___nom_9___5a16756cf", "8460": "15___CATEGORICAL___nom_9___5a1a7700f", "8461": "15___CATEGORICAL___nom_9___5a1cff017", "8462": "15___CATEGORICAL___nom_9___5a1f61c38", "8463": "15___CATEGORICAL___nom_9___5a2461910", "8464": "15___CATEGORICAL___nom_9___5a254c956", "8465": "15___CATEGORICAL___nom_9___5a2955eca", "8466": "15___CATEGORICAL___nom_9___5a2e32b63", "8467": "15___CATEGORICAL___nom_9___5a2e8608d", "8468": "15___CATEGORICAL___nom_9___5a3e9b31c", "8469": "15___CATEGORICAL___nom_9___5a45f0631", "8470": "15___CATEGORICAL___nom_9___5a4a82532", "8471": "15___CATEGORICAL___nom_9___5a4b940e1", "8472": "15___CATEGORICAL___nom_9___5a5a7d3b9", "8473": "15___CATEGORICAL___nom_9___5a61c4095", "8474": "15___CATEGORICAL___nom_9___5a621e413", "8475": "15___CATEGORICAL___nom_9___5a67da7c1", "8476": "15___CATEGORICAL___nom_9___5a71b8a20", "8477": "15___CATEGORICAL___nom_9___5a82b23c3", "8478": "15___CATEGORICAL___nom_9___5a8f3b40a", "8479": "15___CATEGORICAL___nom_9___5a9eb15ec", "8480": "15___CATEGORICAL___nom_9___5a9edab0c", "8481": "15___CATEGORICAL___nom_9___5a9f9587d", "8482": "15___CATEGORICAL___nom_9___5aa47f3c0", "8483": "15___CATEGORICAL___nom_9___5aad27d8b", "8484": "15___CATEGORICAL___nom_9___5ab30a0c7", "8485": "15___CATEGORICAL___nom_9___5ab731372", "8486": "15___CATEGORICAL___nom_9___5aba9672e", "8487": "15___CATEGORICAL___nom_9___5aeb2118f", "8488": "15___CATEGORICAL___nom_9___5aeca3acc", "8489": "15___CATEGORICAL___nom_9___5af26c887", "8490": "15___CATEGORICAL___nom_9___5af927658", "8491": "15___CATEGORICAL___nom_9___5af9928ad", "8492": "15___CATEGORICAL___nom_9___5afca9ea8", "8493": "15___CATEGORICAL___nom_9___5afcd4c71", "8494": "15___CATEGORICAL___nom_9___5b06b5713", "8495": "15___CATEGORICAL___nom_9___5b086e741", "8496": "15___CATEGORICAL___nom_9___5b0bc4419", "8497": "15___CATEGORICAL___nom_9___5b0bd274f", "8498": "15___CATEGORICAL___nom_9___5b10a12b4", "8499": "15___CATEGORICAL___nom_9___5b1dd055a", "8500": "15___CATEGORICAL___nom_9___5b2453cee", "8501": "15___CATEGORICAL___nom_9___5b2b7a6cd", "8502": "15___CATEGORICAL___nom_9___5b35b0455", "8503": "15___CATEGORICAL___nom_9___5b3d8a29d", "8504": "15___CATEGORICAL___nom_9___5b3e5513f", "8505": "15___CATEGORICAL___nom_9___5b3ea0702", "8506": "15___CATEGORICAL___nom_9___5b3eab6fe", "8507": "15___CATEGORICAL___nom_9___5b4104da8", "8508": "15___CATEGORICAL___nom_9___5b43b2d0a", "8509": "15___CATEGORICAL___nom_9___5b5801e08", "8510": "15___CATEGORICAL___nom_9___5b5a707a5", "8511": "15___CATEGORICAL___nom_9___5b62f806e", "8512": "15___CATEGORICAL___nom_9___5b6980eeb", "8513": "15___CATEGORICAL___nom_9___5b6e4a084", "8514": "15___CATEGORICAL___nom_9___5b721c41f", "8515": "15___CATEGORICAL___nom_9___5b7252147", "8516": "15___CATEGORICAL___nom_9___5b7777289", "8517": "15___CATEGORICAL___nom_9___5b787a902", "8518": "15___CATEGORICAL___nom_9___5b7bfe68b", "8519": "15___CATEGORICAL___nom_9___5b8f102c3", "8520": "15___CATEGORICAL___nom_9___5b9066908", "8521": "15___CATEGORICAL___nom_9___5b92499d9", "8522": "15___CATEGORICAL___nom_9___5b93b4c1d", "8523": "15___CATEGORICAL___nom_9___5b97231f7", "8524": "15___CATEGORICAL___nom_9___5b99ab145", "8525": "15___CATEGORICAL___nom_9___5b9caae6c", "8526": "15___CATEGORICAL___nom_9___5b9fc2549", "8527": "15___CATEGORICAL___nom_9___5bbfebbd6", "8528": "15___CATEGORICAL___nom_9___5bcdf3ba0", "8529": "15___CATEGORICAL___nom_9___5bd121800", "8530": "15___CATEGORICAL___nom_9___5bd6df196", "8531": "15___CATEGORICAL___nom_9___5bd720821", "8532": "15___CATEGORICAL___nom_9___5bd96d6f5", "8533": "15___CATEGORICAL___nom_9___5bdd94d9b", "8534": "15___CATEGORICAL___nom_9___5bde6630a", "8535": "15___CATEGORICAL___nom_9___5be299a64", "8536": "15___CATEGORICAL___nom_9___5be416b14", "8537": "15___CATEGORICAL___nom_9___5be479c03", "8538": "15___CATEGORICAL___nom_9___5be8d66b2", "8539": "15___CATEGORICAL___nom_9___5bf027d6e", "8540": "15___CATEGORICAL___nom_9___5bf6e0758", "8541": "15___CATEGORICAL___nom_9___5bfce8de5", "8542": "15___CATEGORICAL___nom_9___5c06a9ef7", "8543": "15___CATEGORICAL___nom_9___5c0d76462", "8544": "15___CATEGORICAL___nom_9___5c111a874", "8545": "15___CATEGORICAL___nom_9___5c201f5db", "8546": "15___CATEGORICAL___nom_9___5c23b2bb1", "8547": "15___CATEGORICAL___nom_9___5c2ab529f", "8548": "15___CATEGORICAL___nom_9___5c3bb1df6", "8549": "15___CATEGORICAL___nom_9___5c3ea219a", "8550": "15___CATEGORICAL___nom_9___5c3f13449", "8551": "15___CATEGORICAL___nom_9___5c4118116", "8552": "15___CATEGORICAL___nom_9___5c41d2b79", "8553": "15___CATEGORICAL___nom_9___5c4775eb0", "8554": "15___CATEGORICAL___nom_9___5c51be7c4", "8555": "15___CATEGORICAL___nom_9___5c51f1eab", "8556": "15___CATEGORICAL___nom_9___5c547a8bd", "8557": "15___CATEGORICAL___nom_9___5c56ad42e", "8558": "15___CATEGORICAL___nom_9___5c58623d1", "8559": "15___CATEGORICAL___nom_9___5c59c4d64", "8560": "15___CATEGORICAL___nom_9___5c5a243de", "8561": "15___CATEGORICAL___nom_9___5c66c71b0", "8562": "15___CATEGORICAL___nom_9___5c72d5e92", "8563": "15___CATEGORICAL___nom_9___5c72e0cfa", "8564": "15___CATEGORICAL___nom_9___5c7782c61", "8565": "15___CATEGORICAL___nom_9___5c7ef9cac", "8566": "15___CATEGORICAL___nom_9___5c82c9b94", "8567": "15___CATEGORICAL___nom_9___5c851a4c2", "8568": "15___CATEGORICAL___nom_9___5c87ffc45", "8569": "15___CATEGORICAL___nom_9___5c8855ad6", "8570": "15___CATEGORICAL___nom_9___5c887a871", "8571": "15___CATEGORICAL___nom_9___5ca73bbbc", "8572": "15___CATEGORICAL___nom_9___5ca78ea2f", "8573": "15___CATEGORICAL___nom_9___5ca9d582a", "8574": "15___CATEGORICAL___nom_9___5cb33f1ac", "8575": "15___CATEGORICAL___nom_9___5cd28903c", "8576": "15___CATEGORICAL___nom_9___5cd6c613c", "8577": "15___CATEGORICAL___nom_9___5ce617592", "8578": "15___CATEGORICAL___nom_9___5ce677cb7", "8579": "15___CATEGORICAL___nom_9___5ce8c748d", "8580": "15___CATEGORICAL___nom_9___5ce912aa5", "8581": "15___CATEGORICAL___nom_9___5ced5ae35", "8582": "15___CATEGORICAL___nom_9___5cf3568a8", "8583": "15___CATEGORICAL___nom_9___5cf59aa4e", "8584": "15___CATEGORICAL___nom_9___5d208c780", "8585": "15___CATEGORICAL___nom_9___5d29c3661", "8586": "15___CATEGORICAL___nom_9___5d2aeb7ae", "8587": "15___CATEGORICAL___nom_9___5d3370b4d", "8588": "15___CATEGORICAL___nom_9___5d33cabb7", "8589": "15___CATEGORICAL___nom_9___5d34c707d", "8590": "15___CATEGORICAL___nom_9___5d3e1bd86", "8591": "15___CATEGORICAL___nom_9___5d483ecfa", "8592": "15___CATEGORICAL___nom_9___5d49ea0b7", "8593": "15___CATEGORICAL___nom_9___5d5486aae", "8594": "15___CATEGORICAL___nom_9___5d583bd48", "8595": "15___CATEGORICAL___nom_9___5d6ab0ddf", "8596": "15___CATEGORICAL___nom_9___5d721b510", "8597": "15___CATEGORICAL___nom_9___5d72ca5db", "8598": "15___CATEGORICAL___nom_9___5d74d02bf", "8599": "15___CATEGORICAL___nom_9___5d798cc01", "8600": "15___CATEGORICAL___nom_9___5d7f77896", "8601": "15___CATEGORICAL___nom_9___5d859611d", "8602": "15___CATEGORICAL___nom_9___5d860a391", "8603": "15___CATEGORICAL___nom_9___5d86cf8a6", "8604": "15___CATEGORICAL___nom_9___5d8794958", "8605": "15___CATEGORICAL___nom_9___5d8c58a83", "8606": "15___CATEGORICAL___nom_9___5d8d2584f", "8607": "15___CATEGORICAL___nom_9___5d98cdeee", "8608": "15___CATEGORICAL___nom_9___5d9a1ab55", "8609": "15___CATEGORICAL___nom_9___5d9a6b320", "8610": "15___CATEGORICAL___nom_9___5d9ab516c", "8611": "15___CATEGORICAL___nom_9___5d9de0f8b", "8612": "15___CATEGORICAL___nom_9___5da6ac6c7", "8613": "15___CATEGORICAL___nom_9___5da6d2f97", "8614": "15___CATEGORICAL___nom_9___5db0209e4", "8615": "15___CATEGORICAL___nom_9___5dc61ff9e", "8616": "15___CATEGORICAL___nom_9___5dc8f6a7c", "8617": "15___CATEGORICAL___nom_9___5dcd32592", "8618": "15___CATEGORICAL___nom_9___5dd25ca48", "8619": "15___CATEGORICAL___nom_9___5dda13326", "8620": "15___CATEGORICAL___nom_9___5ddd26653", "8621": "15___CATEGORICAL___nom_9___5ddf5dd12", "8622": "15___CATEGORICAL___nom_9___5de37dd5d", "8623": "15___CATEGORICAL___nom_9___5de51ac73", "8624": "15___CATEGORICAL___nom_9___5de9bba38", "8625": "15___CATEGORICAL___nom_9___5dece1091", "8626": "15___CATEGORICAL___nom_9___5dedcc2a3", "8627": "15___CATEGORICAL___nom_9___5dee497f8", "8628": "15___CATEGORICAL___nom_9___5df1f28e0", "8629": "15___CATEGORICAL___nom_9___5df2415c4", "8630": "15___CATEGORICAL___nom_9___5e01a81eb", "8631": "15___CATEGORICAL___nom_9___5e07f718f", "8632": "15___CATEGORICAL___nom_9___5e104e10b", "8633": "15___CATEGORICAL___nom_9___5e16b0d23", "8634": "15___CATEGORICAL___nom_9___5e1a3d356", "8635": "15___CATEGORICAL___nom_9___5e246ad4d", "8636": "15___CATEGORICAL___nom_9___5e2518c9b", "8637": "15___CATEGORICAL___nom_9___5e2746730", "8638": "15___CATEGORICAL___nom_9___5e27bf261", "8639": "15___CATEGORICAL___nom_9___5e2828dde", "8640": "15___CATEGORICAL___nom_9___5e39e7b51", "8641": "15___CATEGORICAL___nom_9___5e3b024bb", "8642": "15___CATEGORICAL___nom_9___5e47c5d32", "8643": "15___CATEGORICAL___nom_9___5e49095a2", "8644": "15___CATEGORICAL___nom_9___5e4bf2a09", "8645": "15___CATEGORICAL___nom_9___5e4f851bc", "8646": "15___CATEGORICAL___nom_9___5e508a41a", "8647": "15___CATEGORICAL___nom_9___5e660e4dd", "8648": "15___CATEGORICAL___nom_9___5e66425d2", "8649": "15___CATEGORICAL___nom_9___5e697b80e", "8650": "15___CATEGORICAL___nom_9___5e6b675d1", "8651": "15___CATEGORICAL___nom_9___5e7111cb3", "8652": "15___CATEGORICAL___nom_9___5e7412595", "8653": "15___CATEGORICAL___nom_9___5e74f6cef", "8654": "15___CATEGORICAL___nom_9___5e7e9c42f", "8655": "15___CATEGORICAL___nom_9___5e8851725", "8656": "15___CATEGORICAL___nom_9___5e94dd2e7", "8657": "15___CATEGORICAL___nom_9___5e9a4197a", "8658": "15___CATEGORICAL___nom_9___5e9c78726", "8659": "15___CATEGORICAL___nom_9___5e9e31520", "8660": "15___CATEGORICAL___nom_9___5ea44af16", "8661": "15___CATEGORICAL___nom_9___5ea4604af", "8662": "15___CATEGORICAL___nom_9___5eb2cf7a7", "8663": "15___CATEGORICAL___nom_9___5eb9bf06b", "8664": "15___CATEGORICAL___nom_9___5eba5bd41", "8665": "15___CATEGORICAL___nom_9___5ebc99b30", "8666": "15___CATEGORICAL___nom_9___5ebde9dc9", "8667": "15___CATEGORICAL___nom_9___5ec2a5ff5", "8668": "15___CATEGORICAL___nom_9___5ec505b95", "8669": "15___CATEGORICAL___nom_9___5ecde336f", "8670": "15___CATEGORICAL___nom_9___5ecdf8481", "8671": "15___CATEGORICAL___nom_9___5ece45c72", "8672": "15___CATEGORICAL___nom_9___5ecfe0e27", "8673": "15___CATEGORICAL___nom_9___5ed68b67e", "8674": "15___CATEGORICAL___nom_9___5eeca43ea", "8675": "15___CATEGORICAL___nom_9___5ef1adb86", "8676": "15___CATEGORICAL___nom_9___5ef230029", "8677": "15___CATEGORICAL___nom_9___5ef517d9a", "8678": "15___CATEGORICAL___nom_9___5ef8bb55a", "8679": "15___CATEGORICAL___nom_9___5efa1aec5", "8680": "15___CATEGORICAL___nom_9___5f04125d3", "8681": "15___CATEGORICAL___nom_9___5f06157bb", "8682": "15___CATEGORICAL___nom_9___5f0a0bdcd", "8683": "15___CATEGORICAL___nom_9___5f0c259a8", "8684": "15___CATEGORICAL___nom_9___5f14b46cc", "8685": "15___CATEGORICAL___nom_9___5f180a863", "8686": "15___CATEGORICAL___nom_9___5f1d21b69", "8687": "15___CATEGORICAL___nom_9___5f1f35e21", "8688": "15___CATEGORICAL___nom_9___5f21092d4", "8689": "15___CATEGORICAL___nom_9___5f2910d99", "8690": "15___CATEGORICAL___nom_9___5f334964c", "8691": "15___CATEGORICAL___nom_9___5f42756f8", "8692": "15___CATEGORICAL___nom_9___5f4320e05", "8693": "15___CATEGORICAL___nom_9___5f4a14013", "8694": "15___CATEGORICAL___nom_9___5f4a1692d", "8695": "15___CATEGORICAL___nom_9___5f4b81fce", "8696": "15___CATEGORICAL___nom_9___5f4ebc6f5", "8697": "15___CATEGORICAL___nom_9___5f62401e3", "8698": "15___CATEGORICAL___nom_9___5f6735d3f", "8699": "15___CATEGORICAL___nom_9___5f6c60386", "8700": "15___CATEGORICAL___nom_9___5f6db8d33", "8701": "15___CATEGORICAL___nom_9___5f6f23fa7", "8702": "15___CATEGORICAL___nom_9___5f7278854", "8703": "15___CATEGORICAL___nom_9___5f77c6f8f", "8704": "15___CATEGORICAL___nom_9___5f7c7d8aa", "8705": "15___CATEGORICAL___nom_9___5f82976df", "8706": "15___CATEGORICAL___nom_9___5f8705821", "8707": "15___CATEGORICAL___nom_9___5f8a5cc65", "8708": "15___CATEGORICAL___nom_9___5f9364236", "8709": "15___CATEGORICAL___nom_9___5f946b42a", "8710": "15___CATEGORICAL___nom_9___5f99cd5c5", "8711": "15___CATEGORICAL___nom_9___5fac6d29a", "8712": "15___CATEGORICAL___nom_9___5fb0f0189", "8713": "15___CATEGORICAL___nom_9___5fb975e06", "8714": "15___CATEGORICAL___nom_9___5fc39ba58", "8715": "15___CATEGORICAL___nom_9___5fd2c61b5", "8716": "15___CATEGORICAL___nom_9___5fd69b4fc", "8717": "15___CATEGORICAL___nom_9___5fd83faa1", "8718": "15___CATEGORICAL___nom_9___5fda25a1a", "8719": "15___CATEGORICAL___nom_9___5fe1e7708", "8720": "15___CATEGORICAL___nom_9___5fecdec13", "8721": "15___CATEGORICAL___nom_9___5ff6a6ac4", "8722": "15___CATEGORICAL___nom_9___600201907", "8723": "15___CATEGORICAL___nom_9___6002a00a8", "8724": "15___CATEGORICAL___nom_9___6002a30d1", "8725": "15___CATEGORICAL___nom_9___600a84e76", "8726": "15___CATEGORICAL___nom_9___600a89f04", "8727": "15___CATEGORICAL___nom_9___600c3dffb", "8728": "15___CATEGORICAL___nom_9___601b89688", "8729": "15___CATEGORICAL___nom_9___6026a79cc", "8730": "15___CATEGORICAL___nom_9___602bcc56f", "8731": "15___CATEGORICAL___nom_9___602bf5e9d", "8732": "15___CATEGORICAL___nom_9___60346c363", "8733": "15___CATEGORICAL___nom_9___603cadb13", "8734": "15___CATEGORICAL___nom_9___603fca6b7", "8735": "15___CATEGORICAL___nom_9___60446b054", "8736": "15___CATEGORICAL___nom_9___60456cd9d", "8737": "15___CATEGORICAL___nom_9___6065504c5", "8738": "15___CATEGORICAL___nom_9___606e6d5e3", "8739": "15___CATEGORICAL___nom_9___6070b6160", "8740": "15___CATEGORICAL___nom_9___608491057", "8741": "15___CATEGORICAL___nom_9___6088155d8", "8742": "15___CATEGORICAL___nom_9___608cae947", "8743": "15___CATEGORICAL___nom_9___608d33a06", "8744": "15___CATEGORICAL___nom_9___608f2982b", "8745": "15___CATEGORICAL___nom_9___6093ac2ab", "8746": "15___CATEGORICAL___nom_9___60985f035", "8747": "15___CATEGORICAL___nom_9___6098c7786", "8748": "15___CATEGORICAL___nom_9___6099126a8", "8749": "15___CATEGORICAL___nom_9___609cdefad", "8750": "15___CATEGORICAL___nom_9___60a96170f", "8751": "15___CATEGORICAL___nom_9___60ae844df", "8752": "15___CATEGORICAL___nom_9___60c4488ba", "8753": "15___CATEGORICAL___nom_9___60c7a5a2a", "8754": "15___CATEGORICAL___nom_9___60ca15762", "8755": "15___CATEGORICAL___nom_9___60ccd9f9a", "8756": "15___CATEGORICAL___nom_9___60d3e0bda", "8757": "15___CATEGORICAL___nom_9___60d50d361", "8758": "15___CATEGORICAL___nom_9___60d61efc7", "8759": "15___CATEGORICAL___nom_9___60d6840a3", "8760": "15___CATEGORICAL___nom_9___60d6c5385", "8761": "15___CATEGORICAL___nom_9___60d6f7c30", "8762": "15___CATEGORICAL___nom_9___60e8f6524", "8763": "15___CATEGORICAL___nom_9___60ebc49f1", "8764": "15___CATEGORICAL___nom_9___60ecb06e4", "8765": "15___CATEGORICAL___nom_9___60eea5c54", "8766": "15___CATEGORICAL___nom_9___60f27e6b6", "8767": "15___CATEGORICAL___nom_9___60f4019be", "8768": "15___CATEGORICAL___nom_9___60f4cc80c", "8769": "15___CATEGORICAL___nom_9___60fa9c474", "8770": "15___CATEGORICAL___nom_9___6104b80a5", "8771": "15___CATEGORICAL___nom_9___610705ba6", "8772": "15___CATEGORICAL___nom_9___6108dc1a9", "8773": "15___CATEGORICAL___nom_9___610af0498", "8774": "15___CATEGORICAL___nom_9___610b8632e", "8775": "15___CATEGORICAL___nom_9___611bbce04", "8776": "15___CATEGORICAL___nom_9___611e10021", "8777": "15___CATEGORICAL___nom_9___611f89b97", "8778": "15___CATEGORICAL___nom_9___6123020dd", "8779": "15___CATEGORICAL___nom_9___612483ae5", "8780": "15___CATEGORICAL___nom_9___6129e3c81", "8781": "15___CATEGORICAL___nom_9___612df8cb0", "8782": "15___CATEGORICAL___nom_9___6131d8e6d", "8783": "15___CATEGORICAL___nom_9___6133e61ee", "8784": "15___CATEGORICAL___nom_9___613af3c13", "8785": "15___CATEGORICAL___nom_9___613c33c11", "8786": "15___CATEGORICAL___nom_9___613e5f6f5", "8787": "15___CATEGORICAL___nom_9___613e92595", "8788": "15___CATEGORICAL___nom_9___613fd2ceb", "8789": "15___CATEGORICAL___nom_9___614348d35", "8790": "15___CATEGORICAL___nom_9___614e40802", "8791": "15___CATEGORICAL___nom_9___6154b95c2", "8792": "15___CATEGORICAL___nom_9___6154dd2c9", "8793": "15___CATEGORICAL___nom_9___615c38a83", "8794": "15___CATEGORICAL___nom_9___61651dcfa", "8795": "15___CATEGORICAL___nom_9___6167b570a", "8796": "15___CATEGORICAL___nom_9___616c30018", "8797": "15___CATEGORICAL___nom_9___61713ed0c", "8798": "15___CATEGORICAL___nom_9___6175eff7d", "8799": "15___CATEGORICAL___nom_9___617b6badf", "8800": "15___CATEGORICAL___nom_9___6182fbb5e", "8801": "15___CATEGORICAL___nom_9___61843bfce", "8802": "15___CATEGORICAL___nom_9___618a82801", "8803": "15___CATEGORICAL___nom_9___618bee284", "8804": "15___CATEGORICAL___nom_9___61985f017", "8805": "15___CATEGORICAL___nom_9___619ff05b2", "8806": "15___CATEGORICAL___nom_9___61a4ff84c", "8807": "15___CATEGORICAL___nom_9___61a776f09", "8808": "15___CATEGORICAL___nom_9___61b07fe8e", "8809": "15___CATEGORICAL___nom_9___61b1d40ce", "8810": "15___CATEGORICAL___nom_9___61bb2a1ba", "8811": "15___CATEGORICAL___nom_9___61bb9e43d", "8812": "15___CATEGORICAL___nom_9___61c39507e", "8813": "15___CATEGORICAL___nom_9___61c630ff9", "8814": "15___CATEGORICAL___nom_9___61c8d8792", "8815": "15___CATEGORICAL___nom_9___61c941cb4", "8816": "15___CATEGORICAL___nom_9___61d6aa578", "8817": "15___CATEGORICAL___nom_9___61ef75d23", "8818": "15___CATEGORICAL___nom_9___61f32b54c", "8819": "15___CATEGORICAL___nom_9___61f90b691", "8820": "15___CATEGORICAL___nom_9___61fa9158c", "8821": "15___CATEGORICAL___nom_9___6204da179", "8822": "15___CATEGORICAL___nom_9___62117d070", "8823": "15___CATEGORICAL___nom_9___621842234", "8824": "15___CATEGORICAL___nom_9___621cbda12", "8825": "15___CATEGORICAL___nom_9___621df8ee8", "8826": "15___CATEGORICAL___nom_9___621e554d4", "8827": "15___CATEGORICAL___nom_9___621fb0f46", "8828": "15___CATEGORICAL___nom_9___62223940c", "8829": "15___CATEGORICAL___nom_9___622caf632", "8830": "15___CATEGORICAL___nom_9___623d828b9", "8831": "15___CATEGORICAL___nom_9___62436478a", "8832": "15___CATEGORICAL___nom_9___624a32e57", "8833": "15___CATEGORICAL___nom_9___624b321be", "8834": "15___CATEGORICAL___nom_9___624d06476", "8835": "15___CATEGORICAL___nom_9___625786afd", "8836": "15___CATEGORICAL___nom_9___625a427b2", "8837": "15___CATEGORICAL___nom_9___625abcbdc", "8838": "15___CATEGORICAL___nom_9___625c056fc", "8839": "15___CATEGORICAL___nom_9___626099be6", "8840": "15___CATEGORICAL___nom_9___6263c7985", "8841": "15___CATEGORICAL___nom_9___6264b1ad8", "8842": "15___CATEGORICAL___nom_9___626ec782f", "8843": "15___CATEGORICAL___nom_9___62773c430", "8844": "15___CATEGORICAL___nom_9___6281ebd35", "8845": "15___CATEGORICAL___nom_9___628443cca", "8846": "15___CATEGORICAL___nom_9___6289781a0", "8847": "15___CATEGORICAL___nom_9___628bf4672", "8848": "15___CATEGORICAL___nom_9___628d93e2f", "8849": "15___CATEGORICAL___nom_9___628ee1823", "8850": "15___CATEGORICAL___nom_9___629987b1b", "8851": "15___CATEGORICAL___nom_9___629e63e06", "8852": "15___CATEGORICAL___nom_9___629ee33ae", "8853": "15___CATEGORICAL___nom_9___62a790ac6", "8854": "15___CATEGORICAL___nom_9___62aac70f1", "8855": "15___CATEGORICAL___nom_9___62b068d81", "8856": "15___CATEGORICAL___nom_9___62b9b7e4f", "8857": "15___CATEGORICAL___nom_9___62c2bb004", "8858": "15___CATEGORICAL___nom_9___62c74a2e2", "8859": "15___CATEGORICAL___nom_9___62c9d50f0", "8860": "15___CATEGORICAL___nom_9___62d85a8e0", "8861": "15___CATEGORICAL___nom_9___62da0da08", "8862": "15___CATEGORICAL___nom_9___62da91550", "8863": "15___CATEGORICAL___nom_9___62dc20ab1", "8864": "15___CATEGORICAL___nom_9___62dd66449", "8865": "15___CATEGORICAL___nom_9___62e71483b", "8866": "15___CATEGORICAL___nom_9___62e988ac4", "8867": "15___CATEGORICAL___nom_9___62eed3169", "8868": "15___CATEGORICAL___nom_9___62eefefc6", "8869": "15___CATEGORICAL___nom_9___62f1c5010", "8870": "15___CATEGORICAL___nom_9___62f3d45ad", "8871": "15___CATEGORICAL___nom_9___6305a7326", "8872": "15___CATEGORICAL___nom_9___630e0da24", "8873": "15___CATEGORICAL___nom_9___6318de1a8", "8874": "15___CATEGORICAL___nom_9___631b424ff", "8875": "15___CATEGORICAL___nom_9___631df072e", "8876": "15___CATEGORICAL___nom_9___631f045f1", "8877": "15___CATEGORICAL___nom_9___6325e01a2", "8878": "15___CATEGORICAL___nom_9___63307fb09", "8879": "15___CATEGORICAL___nom_9___63405c690", "8880": "15___CATEGORICAL___nom_9___6343b5930", "8881": "15___CATEGORICAL___nom_9___6346df2ae", "8882": "15___CATEGORICAL___nom_9___634cae17c", "8883": "15___CATEGORICAL___nom_9___634f4af8e", "8884": "15___CATEGORICAL___nom_9___6352a14e1", "8885": "15___CATEGORICAL___nom_9___635410fdc", "8886": "15___CATEGORICAL___nom_9___635b48305", "8887": "15___CATEGORICAL___nom_9___635e5c530", "8888": "15___CATEGORICAL___nom_9___636e062ed", "8889": "15___CATEGORICAL___nom_9___637363fb5", "8890": "15___CATEGORICAL___nom_9___637631c25", "8891": "15___CATEGORICAL___nom_9___637678ed2", "8892": "15___CATEGORICAL___nom_9___63788f8fd", "8893": "15___CATEGORICAL___nom_9___637983da2", "8894": "15___CATEGORICAL___nom_9___637db5812", "8895": "15___CATEGORICAL___nom_9___638a4d434", "8896": "15___CATEGORICAL___nom_9___638b7da8d", "8897": "15___CATEGORICAL___nom_9___638fa439e", "8898": "15___CATEGORICAL___nom_9___6391a7ea7", "8899": "15___CATEGORICAL___nom_9___6397e6ac7", "8900": "15___CATEGORICAL___nom_9___639bf241b", "8901": "15___CATEGORICAL___nom_9___639d8ad53", "8902": "15___CATEGORICAL___nom_9___639eb9217", "8903": "15___CATEGORICAL___nom_9___639ee90ab", "8904": "15___CATEGORICAL___nom_9___639f18c33", "8905": "15___CATEGORICAL___nom_9___63a2774d3", "8906": "15___CATEGORICAL___nom_9___63b769e35", "8907": "15___CATEGORICAL___nom_9___63b8215e9", "8908": "15___CATEGORICAL___nom_9___63b9b6660", "8909": "15___CATEGORICAL___nom_9___63bb5eb22", "8910": "15___CATEGORICAL___nom_9___63c154b69", "8911": "15___CATEGORICAL___nom_9___63cb4f989", "8912": "15___CATEGORICAL___nom_9___63cea6ada", "8913": "15___CATEGORICAL___nom_9___63d0b0668", "8914": "15___CATEGORICAL___nom_9___63d63d2cf", "8915": "15___CATEGORICAL___nom_9___63e0ea77c", "8916": "15___CATEGORICAL___nom_9___63e204071", "8917": "15___CATEGORICAL___nom_9___63edb59fe", "8918": "15___CATEGORICAL___nom_9___64018d8d9", "8919": "15___CATEGORICAL___nom_9___6404774ab", "8920": "15___CATEGORICAL___nom_9___6406c9f8a", "8921": "15___CATEGORICAL___nom_9___6408ef207", "8922": "15___CATEGORICAL___nom_9___640bf4745", "8923": "15___CATEGORICAL___nom_9___640e4c635", "8924": "15___CATEGORICAL___nom_9___641a40c6f", "8925": "15___CATEGORICAL___nom_9___641d1b3ea", "8926": "15___CATEGORICAL___nom_9___641d512ff", "8927": "15___CATEGORICAL___nom_9___6429d10be", "8928": "15___CATEGORICAL___nom_9___642c9e74d", "8929": "15___CATEGORICAL___nom_9___642de1d02", "8930": "15___CATEGORICAL___nom_9___643244533", "8931": "15___CATEGORICAL___nom_9___64345481f", "8932": "15___CATEGORICAL___nom_9___643c3f24a", "8933": "15___CATEGORICAL___nom_9___643f126c2", "8934": "15___CATEGORICAL___nom_9___6440d2a75", "8935": "15___CATEGORICAL___nom_9___6445ec618", "8936": "15___CATEGORICAL___nom_9___64491846b", "8937": "15___CATEGORICAL___nom_9___644bcddc9", "8938": "15___CATEGORICAL___nom_9___644d0161c", "8939": "15___CATEGORICAL___nom_9___645400799", "8940": "15___CATEGORICAL___nom_9___64546705e", "8941": "15___CATEGORICAL___nom_9___645b0a17a", "8942": "15___CATEGORICAL___nom_9___645de9c78", "8943": "15___CATEGORICAL___nom_9___6460d0dc2", "8944": "15___CATEGORICAL___nom_9___646f80fd7", "8945": "15___CATEGORICAL___nom_9___64748c001", "8946": "15___CATEGORICAL___nom_9___647a63d87", "8947": "15___CATEGORICAL___nom_9___647bcb28e", "8948": "15___CATEGORICAL___nom_9___647ce1262", "8949": "15___CATEGORICAL___nom_9___6484261fd", "8950": "15___CATEGORICAL___nom_9___648b01f5d", "8951": "15___CATEGORICAL___nom_9___648ca86aa", "8952": "15___CATEGORICAL___nom_9___6495c40f9", "8953": "15___CATEGORICAL___nom_9___6496d6cad", "8954": "15___CATEGORICAL___nom_9___64a3a7e78", "8955": "15___CATEGORICAL___nom_9___64aa60847", "8956": "15___CATEGORICAL___nom_9___64ab48c11", "8957": "15___CATEGORICAL___nom_9___64b5f4997", "8958": "15___CATEGORICAL___nom_9___64b7d1088", "8959": "15___CATEGORICAL___nom_9___64b7fea15", "8960": "15___CATEGORICAL___nom_9___64b9466d4", "8961": "15___CATEGORICAL___nom_9___64c41c2f4", "8962": "15___CATEGORICAL___nom_9___64cb6f5d1", "8963": "15___CATEGORICAL___nom_9___64cf02e18", "8964": "15___CATEGORICAL___nom_9___64cf81768", "8965": "15___CATEGORICAL___nom_9___64d054c35", "8966": "15___CATEGORICAL___nom_9___64d25334f", "8967": "15___CATEGORICAL___nom_9___64daadce8", "8968": "15___CATEGORICAL___nom_9___64ec48440", "8969": "15___CATEGORICAL___nom_9___64ed6de71", "8970": "15___CATEGORICAL___nom_9___64f44d6dd", "8971": "15___CATEGORICAL___nom_9___64f86b12b", "8972": "15___CATEGORICAL___nom_9___64f89328c", "8973": "15___CATEGORICAL___nom_9___651003409", "8974": "15___CATEGORICAL___nom_9___6512e6e59", "8975": "15___CATEGORICAL___nom_9___651c9048e", "8976": "15___CATEGORICAL___nom_9___652aafdf7", "8977": "15___CATEGORICAL___nom_9___652b7901e", "8978": "15___CATEGORICAL___nom_9___652c963d7", "8979": "15___CATEGORICAL___nom_9___652d0284d", "8980": "15___CATEGORICAL___nom_9___654cdb18b", "8981": "15___CATEGORICAL___nom_9___65579a717", "8982": "15___CATEGORICAL___nom_9___656186eb9", "8983": "15___CATEGORICAL___nom_9___656306559", "8984": "15___CATEGORICAL___nom_9___6563efc2d", "8985": "15___CATEGORICAL___nom_9___65699769c", "8986": "15___CATEGORICAL___nom_9___656ba142e", "8987": "15___CATEGORICAL___nom_9___656fefc36", "8988": "15___CATEGORICAL___nom_9___6575573d5", "8989": "15___CATEGORICAL___nom_9___65780fa20", "8990": "15___CATEGORICAL___nom_9___657909dea", "8991": "15___CATEGORICAL___nom_9___6579d31a6", "8992": "15___CATEGORICAL___nom_9___658258f8f", "8993": "15___CATEGORICAL___nom_9___658466bd8", "8994": "15___CATEGORICAL___nom_9___658530128", "8995": "15___CATEGORICAL___nom_9___6592b5c21", "8996": "15___CATEGORICAL___nom_9___65937f3c2", "8997": "15___CATEGORICAL___nom_9___65a05ab1c", "8998": "15___CATEGORICAL___nom_9___65a77bbd8", "8999": "15___CATEGORICAL___nom_9___65a7816b3", "9000": "15___CATEGORICAL___nom_9___65ad345d7", "9001": "15___CATEGORICAL___nom_9___65b49bf78", "9002": "15___CATEGORICAL___nom_9___65b4e6dff", "9003": "15___CATEGORICAL___nom_9___65bae3836", "9004": "15___CATEGORICAL___nom_9___65c3d264e", "9005": "15___CATEGORICAL___nom_9___65cd96c2e", "9006": "15___CATEGORICAL___nom_9___65cf86020", "9007": "15___CATEGORICAL___nom_9___65d54e094", "9008": "15___CATEGORICAL___nom_9___65dd87c7d", "9009": "15___CATEGORICAL___nom_9___65e31f004", "9010": "15___CATEGORICAL___nom_9___65e8543e5", "9011": "15___CATEGORICAL___nom_9___65e868377", "9012": "15___CATEGORICAL___nom_9___65eae547e", "9013": "15___CATEGORICAL___nom_9___65ec9c262", "9014": "15___CATEGORICAL___nom_9___65f75afda", "9015": "15___CATEGORICAL___nom_9___65f818fa4", "9016": "15___CATEGORICAL___nom_9___6605988fa", "9017": "15___CATEGORICAL___nom_9___66097fcbc", "9018": "15___CATEGORICAL___nom_9___661a0a4a4", "9019": "15___CATEGORICAL___nom_9___661bcb872", "9020": "15___CATEGORICAL___nom_9___66213efaf", "9021": "15___CATEGORICAL___nom_9___6621910a4", "9022": "15___CATEGORICAL___nom_9___662287a23", "9023": "15___CATEGORICAL___nom_9___66270c30b", "9024": "15___CATEGORICAL___nom_9___66289fd08", "9025": "15___CATEGORICAL___nom_9___662e50dc7", "9026": "15___CATEGORICAL___nom_9___663c8a201", "9027": "15___CATEGORICAL___nom_9___66409bde9", "9028": "15___CATEGORICAL___nom_9___66439689a", "9029": "15___CATEGORICAL___nom_9___6655c2a03", "9030": "15___CATEGORICAL___nom_9___665fc7840", "9031": "15___CATEGORICAL___nom_9___66604890c", "9032": "15___CATEGORICAL___nom_9___666574e23", "9033": "15___CATEGORICAL___nom_9___666c9e519", "9034": "15___CATEGORICAL___nom_9___666ccd310", "9035": "15___CATEGORICAL___nom_9___667b8da69", "9036": "15___CATEGORICAL___nom_9___667ca5c3d", "9037": "15___CATEGORICAL___nom_9___667cdb6ef", "9038": "15___CATEGORICAL___nom_9___668126eec", "9039": "15___CATEGORICAL___nom_9___66841ce14", "9040": "15___CATEGORICAL___nom_9___6696a3262", "9041": "15___CATEGORICAL___nom_9___669a16867", "9042": "15___CATEGORICAL___nom_9___669b86867", "9043": "15___CATEGORICAL___nom_9___66a6e7f65", "9044": "15___CATEGORICAL___nom_9___66b26fe81", "9045": "15___CATEGORICAL___nom_9___66b4b754c", "9046": "15___CATEGORICAL___nom_9___66bb77312", "9047": "15___CATEGORICAL___nom_9___66c8f1966", "9048": "15___CATEGORICAL___nom_9___66cb1f126", "9049": "15___CATEGORICAL___nom_9___66cc5a64d", "9050": "15___CATEGORICAL___nom_9___66d8d8805", "9051": "15___CATEGORICAL___nom_9___66d940f76", "9052": "15___CATEGORICAL___nom_9___66de15e39", "9053": "15___CATEGORICAL___nom_9___66e26dd27", "9054": "15___CATEGORICAL___nom_9___66e555faf", "9055": "15___CATEGORICAL___nom_9___66e59c9f7", "9056": "15___CATEGORICAL___nom_9___66ed98e41", "9057": "15___CATEGORICAL___nom_9___66f0134f1", "9058": "15___CATEGORICAL___nom_9___66f21f607", "9059": "15___CATEGORICAL___nom_9___66f4a275e", "9060": "15___CATEGORICAL___nom_9___66f8ade0e", "9061": "15___CATEGORICAL___nom_9___66fa12b40", "9062": "15___CATEGORICAL___nom_9___670622bb9", "9063": "15___CATEGORICAL___nom_9___670a916fb", "9064": "15___CATEGORICAL___nom_9___670fbecb5", "9065": "15___CATEGORICAL___nom_9___6710d6d2d", "9066": "15___CATEGORICAL___nom_9___671b7dc00", "9067": "15___CATEGORICAL___nom_9___672b9c640", "9068": "15___CATEGORICAL___nom_9___67337ded9", "9069": "15___CATEGORICAL___nom_9___673879e1b", "9070": "15___CATEGORICAL___nom_9___673c268c5", "9071": "15___CATEGORICAL___nom_9___673eb31b3", "9072": "15___CATEGORICAL___nom_9___67420a557", "9073": "15___CATEGORICAL___nom_9___674d36243", "9074": "15___CATEGORICAL___nom_9___674de9787", "9075": "15___CATEGORICAL___nom_9___6751a9d1d", "9076": "15___CATEGORICAL___nom_9___67543f5a6", "9077": "15___CATEGORICAL___nom_9___6757ec7a9", "9078": "15___CATEGORICAL___nom_9___675809ef1", "9079": "15___CATEGORICAL___nom_9___675b3dcd9", "9080": "15___CATEGORICAL___nom_9___6760bce63", "9081": "15___CATEGORICAL___nom_9___676136f5e", "9082": "15___CATEGORICAL___nom_9___6769ed045", "9083": "15___CATEGORICAL___nom_9___676db4ae1", "9084": "15___CATEGORICAL___nom_9___677bc9ab7", "9085": "15___CATEGORICAL___nom_9___677eeb96b", "9086": "15___CATEGORICAL___nom_9___6783484c0", "9087": "15___CATEGORICAL___nom_9___67891d3e6", "9088": "15___CATEGORICAL___nom_9___678951234", "9089": "15___CATEGORICAL___nom_9___6795b1a69", "9090": "15___CATEGORICAL___nom_9___6797c9cd1", "9091": "15___CATEGORICAL___nom_9___679808bb3", "9092": "15___CATEGORICAL___nom_9___6799ea063", "9093": "15___CATEGORICAL___nom_9___679a4d856", "9094": "15___CATEGORICAL___nom_9___679e461f4", "9095": "15___CATEGORICAL___nom_9___67a30c9b7", "9096": "15___CATEGORICAL___nom_9___67a728fc3", "9097": "15___CATEGORICAL___nom_9___67a7ea26a", "9098": "15___CATEGORICAL___nom_9___67a98aef6", "9099": "15___CATEGORICAL___nom_9___67ad9b27e", "9100": "15___CATEGORICAL___nom_9___67b29842a", "9101": "15___CATEGORICAL___nom_9___67b4698ac", "9102": "15___CATEGORICAL___nom_9___67b5c9a22", "9103": "15___CATEGORICAL___nom_9___67b8882c2", "9104": "15___CATEGORICAL___nom_9___67b91ff97", "9105": "15___CATEGORICAL___nom_9___67bba2b07", "9106": "15___CATEGORICAL___nom_9___67c1fcb1c", "9107": "15___CATEGORICAL___nom_9___67c2fb95c", "9108": "15___CATEGORICAL___nom_9___67c848320", "9109": "15___CATEGORICAL___nom_9___67ce7a6b6", "9110": "15___CATEGORICAL___nom_9___67dc17d75", "9111": "15___CATEGORICAL___nom_9___67df62d6b", "9112": "15___CATEGORICAL___nom_9___67ed193ac", "9113": "15___CATEGORICAL___nom_9___67ed25437", "9114": "15___CATEGORICAL___nom_9___67fb883c5", "9115": "15___CATEGORICAL___nom_9___67fe1445f", "9116": "15___CATEGORICAL___nom_9___68082c4e8", "9117": "15___CATEGORICAL___nom_9___680aa0ca9", "9118": "15___CATEGORICAL___nom_9___680b129f9", "9119": "15___CATEGORICAL___nom_9___681d3df1b", "9120": "15___CATEGORICAL___nom_9___682445a0a", "9121": "15___CATEGORICAL___nom_9___682790fd8", "9122": "15___CATEGORICAL___nom_9___682a405a2", "9123": "15___CATEGORICAL___nom_9___682c7c7db", "9124": "15___CATEGORICAL___nom_9___682c7d882", "9125": "15___CATEGORICAL___nom_9___682e0eaf2", "9126": "15___CATEGORICAL___nom_9___683755ec0", "9127": "15___CATEGORICAL___nom_9___683ac50cb", "9128": "15___CATEGORICAL___nom_9___68402f573", "9129": "15___CATEGORICAL___nom_9___68424dab8", "9130": "15___CATEGORICAL___nom_9___6845740e8", "9131": "15___CATEGORICAL___nom_9___68507684c", "9132": "15___CATEGORICAL___nom_9___685147147", "9133": "15___CATEGORICAL___nom_9___6858aa9fe", "9134": "15___CATEGORICAL___nom_9___68590ad22", "9135": "15___CATEGORICAL___nom_9___685dbe70c", "9136": "15___CATEGORICAL___nom_9___685ebf693", "9137": "15___CATEGORICAL___nom_9___6877f33fc", "9138": "15___CATEGORICAL___nom_9___688457c95", "9139": "15___CATEGORICAL___nom_9___688534c4f", "9140": "15___CATEGORICAL___nom_9___688e3290a", "9141": "15___CATEGORICAL___nom_9___68951e596", "9142": "15___CATEGORICAL___nom_9___689b9a1b2", "9143": "15___CATEGORICAL___nom_9___689cef455", "9144": "15___CATEGORICAL___nom_9___689dd6c14", "9145": "15___CATEGORICAL___nom_9___68b2f2ff5", "9146": "15___CATEGORICAL___nom_9___68ba37ccd", "9147": "15___CATEGORICAL___nom_9___68be67ef4", "9148": "15___CATEGORICAL___nom_9___68be7e533", "9149": "15___CATEGORICAL___nom_9___68c629456", "9150": "15___CATEGORICAL___nom_9___68c648c2f", "9151": "15___CATEGORICAL___nom_9___68cdcfe96", "9152": "15___CATEGORICAL___nom_9___68d73b7dd", "9153": "15___CATEGORICAL___nom_9___68d9249b3", "9154": "15___CATEGORICAL___nom_9___68ddaa29a", "9155": "15___CATEGORICAL___nom_9___68de72932", "9156": "15___CATEGORICAL___nom_9___68deb9b59", "9157": "15___CATEGORICAL___nom_9___68e311115", "9158": "15___CATEGORICAL___nom_9___68eaedaac", "9159": "15___CATEGORICAL___nom_9___68f1fcf47", "9160": "15___CATEGORICAL___nom_9___68f20a590", "9161": "15___CATEGORICAL___nom_9___68f3b4483", "9162": "15___CATEGORICAL___nom_9___68f5c7b0f", "9163": "15___CATEGORICAL___nom_9___68f7aa308", "9164": "15___CATEGORICAL___nom_9___68fe71329", "9165": "15___CATEGORICAL___nom_9___68ffa561d", "9166": "15___CATEGORICAL___nom_9___6900b9141", "9167": "15___CATEGORICAL___nom_9___690ec380a", "9168": "15___CATEGORICAL___nom_9___6913c19f8", "9169": "15___CATEGORICAL___nom_9___691ab9569", "9170": "15___CATEGORICAL___nom_9___691f62f55", "9171": "15___CATEGORICAL___nom_9___691ff6949", "9172": "15___CATEGORICAL___nom_9___692262042", "9173": "15___CATEGORICAL___nom_9___69258440e", "9174": "15___CATEGORICAL___nom_9___692ab6090", "9175": "15___CATEGORICAL___nom_9___69316521a", "9176": "15___CATEGORICAL___nom_9___6931d2757", "9177": "15___CATEGORICAL___nom_9___693434e70", "9178": "15___CATEGORICAL___nom_9___69371411d", "9179": "15___CATEGORICAL___nom_9___6938527c6", "9180": "15___CATEGORICAL___nom_9___6949871a9", "9181": "15___CATEGORICAL___nom_9___695058af0", "9182": "15___CATEGORICAL___nom_9___695512b7f", "9183": "15___CATEGORICAL___nom_9___69639a5b8", "9184": "15___CATEGORICAL___nom_9___696a756c2", "9185": "15___CATEGORICAL___nom_9___69714e653", "9186": "15___CATEGORICAL___nom_9___69797d133", "9187": "15___CATEGORICAL___nom_9___698878032", "9188": "15___CATEGORICAL___nom_9___6989c760f", "9189": "15___CATEGORICAL___nom_9___698b6b7ab", "9190": "15___CATEGORICAL___nom_9___69902590d", "9191": "15___CATEGORICAL___nom_9___69a49ca83", "9192": "15___CATEGORICAL___nom_9___69be6c639", "9193": "15___CATEGORICAL___nom_9___69c30102c", "9194": "15___CATEGORICAL___nom_9___69ce35dcb", "9195": "15___CATEGORICAL___nom_9___69d330b17", "9196": "15___CATEGORICAL___nom_9___69d4070af", "9197": "15___CATEGORICAL___nom_9___69da4dd7e", "9198": "15___CATEGORICAL___nom_9___69df1d269", "9199": "15___CATEGORICAL___nom_9___69e135a36", "9200": "15___CATEGORICAL___nom_9___69e5475c2", "9201": "15___CATEGORICAL___nom_9___69ea23e67", "9202": "15___CATEGORICAL___nom_9___69f0e365a", "9203": "15___CATEGORICAL___nom_9___69f88d1cd", "9204": "15___CATEGORICAL___nom_9___69f93ae6f", "9205": "15___CATEGORICAL___nom_9___6a06f0cbe", "9206": "15___CATEGORICAL___nom_9___6a073f38d", "9207": "15___CATEGORICAL___nom_9___6a0ef45d6", "9208": "15___CATEGORICAL___nom_9___6a109062f", "9209": "15___CATEGORICAL___nom_9___6a1215d2b", "9210": "15___CATEGORICAL___nom_9___6a13bcd52", "9211": "15___CATEGORICAL___nom_9___6a145752b", "9212": "15___CATEGORICAL___nom_9___6a2092954", "9213": "15___CATEGORICAL___nom_9___6a20b2ab8", "9214": "15___CATEGORICAL___nom_9___6a222b51f", "9215": "15___CATEGORICAL___nom_9___6a223b1a0", "9216": "15___CATEGORICAL___nom_9___6a28a5f28", "9217": "15___CATEGORICAL___nom_9___6a2a884cd", "9218": "15___CATEGORICAL___nom_9___6a2ca3aad", "9219": "15___CATEGORICAL___nom_9___6a2de3db6", "9220": "15___CATEGORICAL___nom_9___6a2fd0099", "9221": "15___CATEGORICAL___nom_9___6a3a8d725", "9222": "15___CATEGORICAL___nom_9___6a49d3828", "9223": "15___CATEGORICAL___nom_9___6a4daa92e", "9224": "15___CATEGORICAL___nom_9___6a52b94d5", "9225": "15___CATEGORICAL___nom_9___6a586546d", "9226": "15___CATEGORICAL___nom_9___6a5f3c6ed", "9227": "15___CATEGORICAL___nom_9___6a627f8fb", "9228": "15___CATEGORICAL___nom_9___6a672a3c8", "9229": "15___CATEGORICAL___nom_9___6a6d1f0e6", "9230": "15___CATEGORICAL___nom_9___6a78d995c", "9231": "15___CATEGORICAL___nom_9___6a7e126fe", "9232": "15___CATEGORICAL___nom_9___6a86dc078", "9233": "15___CATEGORICAL___nom_9___6a8af3c16", "9234": "15___CATEGORICAL___nom_9___6a9e34bd1", "9235": "15___CATEGORICAL___nom_9___6a9f5cc23", "9236": "15___CATEGORICAL___nom_9___6a9fc8a8c", "9237": "15___CATEGORICAL___nom_9___6aa6fb39e", "9238": "15___CATEGORICAL___nom_9___6aa7f3ed3", "9239": "15___CATEGORICAL___nom_9___6ab6898ab", "9240": "15___CATEGORICAL___nom_9___6abf71fb4", "9241": "15___CATEGORICAL___nom_9___6ac3ccd15", "9242": "15___CATEGORICAL___nom_9___6ace21a0c", "9243": "15___CATEGORICAL___nom_9___6ad275d9e", "9244": "15___CATEGORICAL___nom_9___6ad28cd62", "9245": "15___CATEGORICAL___nom_9___6ad938a2f", "9246": "15___CATEGORICAL___nom_9___6adba3b85", "9247": "15___CATEGORICAL___nom_9___6adebcea2", "9248": "15___CATEGORICAL___nom_9___6ae91a0e4", "9249": "15___CATEGORICAL___nom_9___6af47fcb3", "9250": "15___CATEGORICAL___nom_9___6b1405ebc", "9251": "15___CATEGORICAL___nom_9___6b18802c0", "9252": "15___CATEGORICAL___nom_9___6b1cea7ed", "9253": "15___CATEGORICAL___nom_9___6b1ea252d", "9254": "15___CATEGORICAL___nom_9___6b28aa483", "9255": "15___CATEGORICAL___nom_9___6b2aae704", "9256": "15___CATEGORICAL___nom_9___6b37f5bd1", "9257": "15___CATEGORICAL___nom_9___6b3c04a8d", "9258": "15___CATEGORICAL___nom_9___6b4cffef2", "9259": "15___CATEGORICAL___nom_9___6b4f66abc", "9260": "15___CATEGORICAL___nom_9___6b551fc8a", "9261": "15___CATEGORICAL___nom_9___6b55ab403", "9262": "15___CATEGORICAL___nom_9___6b6640e4b", "9263": "15___CATEGORICAL___nom_9___6b6d8ea85", "9264": "15___CATEGORICAL___nom_9___6b73b9fa8", "9265": "15___CATEGORICAL___nom_9___6b76038de", "9266": "15___CATEGORICAL___nom_9___6b78169ba", "9267": "15___CATEGORICAL___nom_9___6b827766e", "9268": "15___CATEGORICAL___nom_9___6b9b96b6e", "9269": "15___CATEGORICAL___nom_9___6ba058d5d", "9270": "15___CATEGORICAL___nom_9___6ba0753fc", "9271": "15___CATEGORICAL___nom_9___6ba2e47fb", "9272": "15___CATEGORICAL___nom_9___6ba6aa1ec", "9273": "15___CATEGORICAL___nom_9___6bab912ef", "9274": "15___CATEGORICAL___nom_9___6bb0774ba", "9275": "15___CATEGORICAL___nom_9___6bb972583", "9276": "15___CATEGORICAL___nom_9___6bb9a29ed", "9277": "15___CATEGORICAL___nom_9___6bbad5f8c", "9278": "15___CATEGORICAL___nom_9___6bc15e92a", "9279": "15___CATEGORICAL___nom_9___6bcb9db0f", "9280": "15___CATEGORICAL___nom_9___6bcf5b2b3", "9281": "15___CATEGORICAL___nom_9___6bd2f1753", "9282": "15___CATEGORICAL___nom_9___6bd6ab9ab", "9283": "15___CATEGORICAL___nom_9___6bd80068b", "9284": "15___CATEGORICAL___nom_9___6bde0920f", "9285": "15___CATEGORICAL___nom_9___6be0404f5", "9286": "15___CATEGORICAL___nom_9___6be4248c7", "9287": "15___CATEGORICAL___nom_9___6bf152be5", "9288": "15___CATEGORICAL___nom_9___6bfe039bc", "9289": "15___CATEGORICAL___nom_9___6c03553f9", "9290": "15___CATEGORICAL___nom_9___6c0a63379", "9291": "15___CATEGORICAL___nom_9___6c0aaa391", "9292": "15___CATEGORICAL___nom_9___6c0b0a2d7", "9293": "15___CATEGORICAL___nom_9___6c0dab20d", "9294": "15___CATEGORICAL___nom_9___6c10a17a3", "9295": "15___CATEGORICAL___nom_9___6c1127e38", "9296": "15___CATEGORICAL___nom_9___6c12f69e7", "9297": "15___CATEGORICAL___nom_9___6c17a4707", "9298": "15___CATEGORICAL___nom_9___6c18960e3", "9299": "15___CATEGORICAL___nom_9___6c1fe1c84", "9300": "15___CATEGORICAL___nom_9___6c25b3bbe", "9301": "15___CATEGORICAL___nom_9___6c3599b74", "9302": "15___CATEGORICAL___nom_9___6c35bec50", "9303": "15___CATEGORICAL___nom_9___6c4606b54", "9304": "15___CATEGORICAL___nom_9___6c7282293", "9305": "15___CATEGORICAL___nom_9___6c7322f23", "9306": "15___CATEGORICAL___nom_9___6c73c25a8", "9307": "15___CATEGORICAL___nom_9___6c7819951", "9308": "15___CATEGORICAL___nom_9___6c7b112d2", "9309": "15___CATEGORICAL___nom_9___6c7d19b2e", "9310": "15___CATEGORICAL___nom_9___6c840a096", "9311": "15___CATEGORICAL___nom_9___6c8971efc", "9312": "15___CATEGORICAL___nom_9___6c8f825c0", "9313": "15___CATEGORICAL___nom_9___6c96ba04c", "9314": "15___CATEGORICAL___nom_9___6ca63ac21", "9315": "15___CATEGORICAL___nom_9___6ca8d0541", "9316": "15___CATEGORICAL___nom_9___6ca90f9a2", "9317": "15___CATEGORICAL___nom_9___6cb68a436", "9318": "15___CATEGORICAL___nom_9___6cb6c9728", "9319": "15___CATEGORICAL___nom_9___6cbec026d", "9320": "15___CATEGORICAL___nom_9___6cc935724", "9321": "15___CATEGORICAL___nom_9___6cc94f5f9", "9322": "15___CATEGORICAL___nom_9___6cd4df1d4", "9323": "15___CATEGORICAL___nom_9___6cd75677e", "9324": "15___CATEGORICAL___nom_9___6cd7c285c", "9325": "15___CATEGORICAL___nom_9___6cdb9af99", "9326": "15___CATEGORICAL___nom_9___6cde7f710", "9327": "15___CATEGORICAL___nom_9___6ce1ec3f0", "9328": "15___CATEGORICAL___nom_9___6ce913453", "9329": "15___CATEGORICAL___nom_9___6cede31b7", "9330": "15___CATEGORICAL___nom_9___6cf0cb7ce", "9331": "15___CATEGORICAL___nom_9___6cf1215c0", "9332": "15___CATEGORICAL___nom_9___6cf28e55c", "9333": "15___CATEGORICAL___nom_9___6cfac22f5", "9334": "15___CATEGORICAL___nom_9___6d00946f0", "9335": "15___CATEGORICAL___nom_9___6d047f52e", "9336": "15___CATEGORICAL___nom_9___6d06d4ee6", "9337": "15___CATEGORICAL___nom_9___6d06dea2b", "9338": "15___CATEGORICAL___nom_9___6d14b2b0d", "9339": "15___CATEGORICAL___nom_9___6d1a3a157", "9340": "15___CATEGORICAL___nom_9___6d1d351bf", "9341": "15___CATEGORICAL___nom_9___6d1de5468", "9342": "15___CATEGORICAL___nom_9___6d214d9ee", "9343": "15___CATEGORICAL___nom_9___6d2469284", "9344": "15___CATEGORICAL___nom_9___6d2cfd345", "9345": "15___CATEGORICAL___nom_9___6d32ef34a", "9346": "15___CATEGORICAL___nom_9___6d3498b0b", "9347": "15___CATEGORICAL___nom_9___6d3667bda", "9348": "15___CATEGORICAL___nom_9___6d4382bfd", "9349": "15___CATEGORICAL___nom_9___6d5494a48", "9350": "15___CATEGORICAL___nom_9___6d63869ea", "9351": "15___CATEGORICAL___nom_9___6d64cf828", "9352": "15___CATEGORICAL___nom_9___6d6b63e7d", "9353": "15___CATEGORICAL___nom_9___6d70e8b27", "9354": "15___CATEGORICAL___nom_9___6d76114d6", "9355": "15___CATEGORICAL___nom_9___6d7bafbdd", "9356": "15___CATEGORICAL___nom_9___6d7e717d5", "9357": "15___CATEGORICAL___nom_9___6d80afed3", "9358": "15___CATEGORICAL___nom_9___6d820ac62", "9359": "15___CATEGORICAL___nom_9___6d839b98f", "9360": "15___CATEGORICAL___nom_9___6d8487577", "9361": "15___CATEGORICAL___nom_9___6d89091fa", "9362": "15___CATEGORICAL___nom_9___6d90971f8", "9363": "15___CATEGORICAL___nom_9___6d9347e8f", "9364": "15___CATEGORICAL___nom_9___6d9876599", "9365": "15___CATEGORICAL___nom_9___6d9e34ac7", "9366": "15___CATEGORICAL___nom_9___6da4ebf07", "9367": "15___CATEGORICAL___nom_9___6dad6a9b2", "9368": "15___CATEGORICAL___nom_9___6db2749af", "9369": "15___CATEGORICAL___nom_9___6db5e23d4", "9370": "15___CATEGORICAL___nom_9___6db622133", "9371": "15___CATEGORICAL___nom_9___6dbbd928c", "9372": "15___CATEGORICAL___nom_9___6dbc16b39", "9373": "15___CATEGORICAL___nom_9___6dc45ea62", "9374": "15___CATEGORICAL___nom_9___6dc6296b5", "9375": "15___CATEGORICAL___nom_9___6dcd7e557", "9376": "15___CATEGORICAL___nom_9___6dda33574", "9377": "15___CATEGORICAL___nom_9___6dde6d687", "9378": "15___CATEGORICAL___nom_9___6de7ae85f", "9379": "15___CATEGORICAL___nom_9___6dfac0823", "9380": "15___CATEGORICAL___nom_9___6dfd57187", "9381": "15___CATEGORICAL___nom_9___6dffef3ae", "9382": "15___CATEGORICAL___nom_9___6e0ae5478", "9383": "15___CATEGORICAL___nom_9___6e0b81afd", "9384": "15___CATEGORICAL___nom_9___6e0efc8ae", "9385": "15___CATEGORICAL___nom_9___6e12254cb", "9386": "15___CATEGORICAL___nom_9___6e1abd31a", "9387": "15___CATEGORICAL___nom_9___6e1b61679", "9388": "15___CATEGORICAL___nom_9___6e1e262b5", "9389": "15___CATEGORICAL___nom_9___6e323403e", "9390": "15___CATEGORICAL___nom_9___6e3747aa5", "9391": "15___CATEGORICAL___nom_9___6e41413b7", "9392": "15___CATEGORICAL___nom_9___6e4441098", "9393": "15___CATEGORICAL___nom_9___6e49dc7cf", "9394": "15___CATEGORICAL___nom_9___6e5860c0c", "9395": "15___CATEGORICAL___nom_9___6e591f32a", "9396": "15___CATEGORICAL___nom_9___6e68a02c8", "9397": "15___CATEGORICAL___nom_9___6e6e8f8b8", "9398": "15___CATEGORICAL___nom_9___6e6f113f8", "9399": "15___CATEGORICAL___nom_9___6e6fec343", "9400": "15___CATEGORICAL___nom_9___6e7bb79f3", "9401": "15___CATEGORICAL___nom_9___6e8428530", "9402": "15___CATEGORICAL___nom_9___6e852c18f", "9403": "15___CATEGORICAL___nom_9___6e8ae00d1", "9404": "15___CATEGORICAL___nom_9___6e8f728c4", "9405": "15___CATEGORICAL___nom_9___6e9346b0e", "9406": "15___CATEGORICAL___nom_9___6e9491509", "9407": "15___CATEGORICAL___nom_9___6eab7b06f", "9408": "15___CATEGORICAL___nom_9___6eaead87a", "9409": "15___CATEGORICAL___nom_9___6eb1ba1c4", "9410": "15___CATEGORICAL___nom_9___6ec38266d", "9411": "15___CATEGORICAL___nom_9___6ec4932ec", "9412": "15___CATEGORICAL___nom_9___6ec4e7ceb", "9413": "15___CATEGORICAL___nom_9___6ec7f8dce", "9414": "15___CATEGORICAL___nom_9___6ecaaddfb", "9415": "15___CATEGORICAL___nom_9___6ed4e0308", "9416": "15___CATEGORICAL___nom_9___6edafd465", "9417": "15___CATEGORICAL___nom_9___6edce9fe4", "9418": "15___CATEGORICAL___nom_9___6edceffe8", "9419": "15___CATEGORICAL___nom_9___6eef10df0", "9420": "15___CATEGORICAL___nom_9___6ef7989ff", "9421": "15___CATEGORICAL___nom_9___6f0151545", "9422": "15___CATEGORICAL___nom_9___6f05462d8", "9423": "15___CATEGORICAL___nom_9___6f061f2e5", "9424": "15___CATEGORICAL___nom_9___6f0e7e665", "9425": "15___CATEGORICAL___nom_9___6f0ea123e", "9426": "15___CATEGORICAL___nom_9___6f0f6296b", "9427": "15___CATEGORICAL___nom_9___6f16df982", "9428": "15___CATEGORICAL___nom_9___6f2181b2b", "9429": "15___CATEGORICAL___nom_9___6f29bc469", "9430": "15___CATEGORICAL___nom_9___6f2f1d970", "9431": "15___CATEGORICAL___nom_9___6f323c53f", "9432": "15___CATEGORICAL___nom_9___6f3debb02", "9433": "15___CATEGORICAL___nom_9___6f46d2f36", "9434": "15___CATEGORICAL___nom_9___6f4adcca6", "9435": "15___CATEGORICAL___nom_9___6f5c532ba", "9436": "15___CATEGORICAL___nom_9___6f6190a7a", "9437": "15___CATEGORICAL___nom_9___6f671233b", "9438": "15___CATEGORICAL___nom_9___6f682e9c7", "9439": "15___CATEGORICAL___nom_9___6f72d2ca9", "9440": "15___CATEGORICAL___nom_9___6f73cec6c", "9441": "15___CATEGORICAL___nom_9___6f73d5a24", "9442": "15___CATEGORICAL___nom_9___6f77b7e40", "9443": "15___CATEGORICAL___nom_9___6f814add0", "9444": "15___CATEGORICAL___nom_9___6f8342200", "9445": "15___CATEGORICAL___nom_9___6f9a36bf5", "9446": "15___CATEGORICAL___nom_9___6f9d29566", "9447": "15___CATEGORICAL___nom_9___6fa03b445", "9448": "15___CATEGORICAL___nom_9___6fa469bfb", "9449": "15___CATEGORICAL___nom_9___6fa4e2756", "9450": "15___CATEGORICAL___nom_9___6faa3d164", "9451": "15___CATEGORICAL___nom_9___6fb42d8ee", "9452": "15___CATEGORICAL___nom_9___6fb639b61", "9453": "15___CATEGORICAL___nom_9___6fb92f854", "9454": "15___CATEGORICAL___nom_9___6fc110833", "9455": "15___CATEGORICAL___nom_9___6fc6201f2", "9456": "15___CATEGORICAL___nom_9___6fcda5f19", "9457": "15___CATEGORICAL___nom_9___6fcede2da", "9458": "15___CATEGORICAL___nom_9___6fd0d4653", "9459": "15___CATEGORICAL___nom_9___6fd23823b", "9460": "15___CATEGORICAL___nom_9___6fd549d27", "9461": "15___CATEGORICAL___nom_9___6fd89a77c", "9462": "15___CATEGORICAL___nom_9___6fda251fa", "9463": "15___CATEGORICAL___nom_9___6fe2fd209", "9464": "15___CATEGORICAL___nom_9___6fe53c528", "9465": "15___CATEGORICAL___nom_9___6fe953929", "9466": "15___CATEGORICAL___nom_9___6fe9e122e", "9467": "15___CATEGORICAL___nom_9___6febec320", "9468": "15___CATEGORICAL___nom_9___6febfb52d", "9469": "15___CATEGORICAL___nom_9___6fec807d3", "9470": "15___CATEGORICAL___nom_9___6fed08347", "9471": "15___CATEGORICAL___nom_9___6feed0b21", "9472": "15___CATEGORICAL___nom_9___6ffc05735", "9473": "15___CATEGORICAL___nom_9___6ffd1a9f2", "9474": "15___CATEGORICAL___nom_9___70062aa6b", "9475": "15___CATEGORICAL___nom_9___7011e1008", "9476": "15___CATEGORICAL___nom_9___70158854a", "9477": "15___CATEGORICAL___nom_9___701626b1b", "9478": "15___CATEGORICAL___nom_9___701a78b0d", "9479": "15___CATEGORICAL___nom_9___701b7d7fd", "9480": "15___CATEGORICAL___nom_9___70251641f", "9481": "15___CATEGORICAL___nom_9___7026a18ea", "9482": "15___CATEGORICAL___nom_9___7027bace6", "9483": "15___CATEGORICAL___nom_9___703967a3b", "9484": "15___CATEGORICAL___nom_9___704332cf6", "9485": "15___CATEGORICAL___nom_9___7045356bc", "9486": "15___CATEGORICAL___nom_9___70559a277", "9487": "15___CATEGORICAL___nom_9___705ad0b1c", "9488": "15___CATEGORICAL___nom_9___705fffb99", "9489": "15___CATEGORICAL___nom_9___706841aba", "9490": "15___CATEGORICAL___nom_9___706d731d0", "9491": "15___CATEGORICAL___nom_9___706faa133", "9492": "15___CATEGORICAL___nom_9___707f3d7b7", "9493": "15___CATEGORICAL___nom_9___707f98215", "9494": "15___CATEGORICAL___nom_9___708533cfc", "9495": "15___CATEGORICAL___nom_9___7091158c4", "9496": "15___CATEGORICAL___nom_9___70977b5a4", "9497": "15___CATEGORICAL___nom_9___7099dfe59", "9498": "15___CATEGORICAL___nom_9___70a28ba4d", "9499": "15___CATEGORICAL___nom_9___70a2c64c4", "9500": "15___CATEGORICAL___nom_9___70a970428", "9501": "15___CATEGORICAL___nom_9___70ac99c31", "9502": "15___CATEGORICAL___nom_9___70b28bfb2", "9503": "15___CATEGORICAL___nom_9___70b69328e", "9504": "15___CATEGORICAL___nom_9___70be060a0", "9505": "15___CATEGORICAL___nom_9___70c0bfb28", "9506": "15___CATEGORICAL___nom_9___70c6598cb", "9507": "15___CATEGORICAL___nom_9___70c84a61a", "9508": "15___CATEGORICAL___nom_9___70c857a60", "9509": "15___CATEGORICAL___nom_9___70d5396ce", "9510": "15___CATEGORICAL___nom_9___70d6ccdd8", "9511": "15___CATEGORICAL___nom_9___70d9df987", "9512": "15___CATEGORICAL___nom_9___70daf5c61", "9513": "15___CATEGORICAL___nom_9___70e15098f", "9514": "15___CATEGORICAL___nom_9___70e7570b6", "9515": "15___CATEGORICAL___nom_9___70e958c23", "9516": "15___CATEGORICAL___nom_9___70ef9e3d9", "9517": "15___CATEGORICAL___nom_9___70f4775a9", "9518": "15___CATEGORICAL___nom_9___70fa14da8", "9519": "15___CATEGORICAL___nom_9___71032056b", "9520": "15___CATEGORICAL___nom_9___710981905", "9521": "15___CATEGORICAL___nom_9___7112503f3", "9522": "15___CATEGORICAL___nom_9___7120c6b03", "9523": "15___CATEGORICAL___nom_9___71215ed9a", "9524": "15___CATEGORICAL___nom_9___71298ae90", "9525": "15___CATEGORICAL___nom_9___712ccfc7b", "9526": "15___CATEGORICAL___nom_9___7130c09a6", "9527": "15___CATEGORICAL___nom_9___713447af2", "9528": "15___CATEGORICAL___nom_9___713b3162e", "9529": "15___CATEGORICAL___nom_9___71544a458", "9530": "15___CATEGORICAL___nom_9___7155019df", "9531": "15___CATEGORICAL___nom_9___7157a1120", "9532": "15___CATEGORICAL___nom_9___7158ab0f7", "9533": "15___CATEGORICAL___nom_9___715aece12", "9534": "15___CATEGORICAL___nom_9___715d06fd2", "9535": "15___CATEGORICAL___nom_9___7160bdaf3", "9536": "15___CATEGORICAL___nom_9___71611627e", "9537": "15___CATEGORICAL___nom_9___716408e81", "9538": "15___CATEGORICAL___nom_9___7171349c0", "9539": "15___CATEGORICAL___nom_9___7178a5cba", "9540": "15___CATEGORICAL___nom_9___7188e7e3e", "9541": "15___CATEGORICAL___nom_9___718d2045d", "9542": "15___CATEGORICAL___nom_9___718e32ffd", "9543": "15___CATEGORICAL___nom_9___7192a1219", "9544": "15___CATEGORICAL___nom_9___7192e46fe", "9545": "15___CATEGORICAL___nom_9___7199a1f63", "9546": "15___CATEGORICAL___nom_9___71ade5b84", "9547": "15___CATEGORICAL___nom_9___71b70c36e", "9548": "15___CATEGORICAL___nom_9___71b8004c5", "9549": "15___CATEGORICAL___nom_9___71b95058b", "9550": "15___CATEGORICAL___nom_9___71bda5e88", "9551": "15___CATEGORICAL___nom_9___71cf85bda", "9552": "15___CATEGORICAL___nom_9___71d1c406a", "9553": "15___CATEGORICAL___nom_9___71e534704", "9554": "15___CATEGORICAL___nom_9___71e5b2166", "9555": "15___CATEGORICAL___nom_9___71eaa0be3", "9556": "15___CATEGORICAL___nom_9___71eb526a0", "9557": "15___CATEGORICAL___nom_9___71ec8c39d", "9558": "15___CATEGORICAL___nom_9___71f930abe", "9559": "15___CATEGORICAL___nom_9___71fdd8e9c", "9560": "15___CATEGORICAL___nom_9___71fe58126", "9561": "15___CATEGORICAL___nom_9___7208160cf", "9562": "15___CATEGORICAL___nom_9___7212182bb", "9563": "15___CATEGORICAL___nom_9___7218985b5", "9564": "15___CATEGORICAL___nom_9___721c745ac", "9565": "15___CATEGORICAL___nom_9___72204b300", "9566": "15___CATEGORICAL___nom_9___722903e12", "9567": "15___CATEGORICAL___nom_9___72314357b", "9568": "15___CATEGORICAL___nom_9___72337c3a7", "9569": "15___CATEGORICAL___nom_9___72406443f", "9570": "15___CATEGORICAL___nom_9___7240e3c71", "9571": "15___CATEGORICAL___nom_9___724214461", "9572": "15___CATEGORICAL___nom_9___72428dd72", "9573": "15___CATEGORICAL___nom_9___72490099e", "9574": "15___CATEGORICAL___nom_9___72556e71b", "9575": "15___CATEGORICAL___nom_9___7268ec9cf", "9576": "15___CATEGORICAL___nom_9___72696ddfa", "9577": "15___CATEGORICAL___nom_9___726e81b0f", "9578": "15___CATEGORICAL___nom_9___726f70e71", "9579": "15___CATEGORICAL___nom_9___72769ecb5", "9580": "15___CATEGORICAL___nom_9___727b41107", "9581": "15___CATEGORICAL___nom_9___727c9eb48", "9582": "15___CATEGORICAL___nom_9___727f03ac3", "9583": "15___CATEGORICAL___nom_9___72817ba3d", "9584": "15___CATEGORICAL___nom_9___7285420d7", "9585": "15___CATEGORICAL___nom_9___728df26bd", "9586": "15___CATEGORICAL___nom_9___72980609c", "9587": "15___CATEGORICAL___nom_9___729a1402f", "9588": "15___CATEGORICAL___nom_9___72a1c1355", "9589": "15___CATEGORICAL___nom_9___72aaab505", "9590": "15___CATEGORICAL___nom_9___72af29ff2", "9591": "15___CATEGORICAL___nom_9___72b82a608", "9592": "15___CATEGORICAL___nom_9___72b8c6255", "9593": "15___CATEGORICAL___nom_9___72b9b8077", "9594": "15___CATEGORICAL___nom_9___72ba37ca9", "9595": "15___CATEGORICAL___nom_9___72c2965ea", "9596": "15___CATEGORICAL___nom_9___72c36ae7b", "9597": "15___CATEGORICAL___nom_9___72c4b707d", "9598": "15___CATEGORICAL___nom_9___72d033676", "9599": "15___CATEGORICAL___nom_9___72d8a0d3b", "9600": "15___CATEGORICAL___nom_9___72dcf4424", "9601": "15___CATEGORICAL___nom_9___72e504539", "9602": "15___CATEGORICAL___nom_9___72e513887", "9603": "15___CATEGORICAL___nom_9___72eb209fd", "9604": "15___CATEGORICAL___nom_9___72ed9da8c", "9605": "15___CATEGORICAL___nom_9___72f62be8f", "9606": "15___CATEGORICAL___nom_9___72f74e251", "9607": "15___CATEGORICAL___nom_9___72f78da5e", "9608": "15___CATEGORICAL___nom_9___72f7acdfc", "9609": "15___CATEGORICAL___nom_9___72f95dfd7", "9610": "15___CATEGORICAL___nom_9___72fd9e578", "9611": "15___CATEGORICAL___nom_9___7300e98c5", "9612": "15___CATEGORICAL___nom_9___730495c07", "9613": "15___CATEGORICAL___nom_9___730594d7c", "9614": "15___CATEGORICAL___nom_9___73066aa24", "9615": "15___CATEGORICAL___nom_9___73101453b", "9616": "15___CATEGORICAL___nom_9___731441aab", "9617": "15___CATEGORICAL___nom_9___731596bba", "9618": "15___CATEGORICAL___nom_9___73193fb01", "9619": "15___CATEGORICAL___nom_9___731eb0adf", "9620": "15___CATEGORICAL___nom_9___732da86d4", "9621": "15___CATEGORICAL___nom_9___732ef6871", "9622": "15___CATEGORICAL___nom_9___732f35e00", "9623": "15___CATEGORICAL___nom_9___7334cd26f", "9624": "15___CATEGORICAL___nom_9___733b12b62", "9625": "15___CATEGORICAL___nom_9___733c66b96", "9626": "15___CATEGORICAL___nom_9___733f279d2", "9627": "15___CATEGORICAL___nom_9___7340aaa02", "9628": "15___CATEGORICAL___nom_9___734d11e72", "9629": "15___CATEGORICAL___nom_9___735a79542", "9630": "15___CATEGORICAL___nom_9___735d929d8", "9631": "15___CATEGORICAL___nom_9___735eb53c3", "9632": "15___CATEGORICAL___nom_9___7360f9ec1", "9633": "15___CATEGORICAL___nom_9___7361fcc2b", "9634": "15___CATEGORICAL___nom_9___736e736cd", "9635": "15___CATEGORICAL___nom_9___73729936a", "9636": "15___CATEGORICAL___nom_9___7374644f1", "9637": "15___CATEGORICAL___nom_9___737e4988b", "9638": "15___CATEGORICAL___nom_9___738c57c3b", "9639": "15___CATEGORICAL___nom_9___739117304", "9640": "15___CATEGORICAL___nom_9___7394fd4cd", "9641": "15___CATEGORICAL___nom_9___739d0303d", "9642": "15___CATEGORICAL___nom_9___739f25742", "9643": "15___CATEGORICAL___nom_9___73a113feb", "9644": "15___CATEGORICAL___nom_9___73a32480a", "9645": "15___CATEGORICAL___nom_9___73a88aa06", "9646": "15___CATEGORICAL___nom_9___73b11a5f9", "9647": "15___CATEGORICAL___nom_9___73bbc4dd6", "9648": "15___CATEGORICAL___nom_9___73bbe3398", "9649": "15___CATEGORICAL___nom_9___73c19a2c0", "9650": "15___CATEGORICAL___nom_9___73d2cd599", "9651": "15___CATEGORICAL___nom_9___73d94e737", "9652": "15___CATEGORICAL___nom_9___73e8ef557", "9653": "15___CATEGORICAL___nom_9___73ece7b0e", "9654": "15___CATEGORICAL___nom_9___73f000ff3", "9655": "15___CATEGORICAL___nom_9___74000bee2", "9656": "15___CATEGORICAL___nom_9___7404124f7", "9657": "15___CATEGORICAL___nom_9___7406fda3a", "9658": "15___CATEGORICAL___nom_9___740892719", "9659": "15___CATEGORICAL___nom_9___740c4524e", "9660": "15___CATEGORICAL___nom_9___740f81755", "9661": "15___CATEGORICAL___nom_9___740fab3ce", "9662": "15___CATEGORICAL___nom_9___7411d34dc", "9663": "15___CATEGORICAL___nom_9___741e9903d", "9664": "15___CATEGORICAL___nom_9___741ed64cf", "9665": "15___CATEGORICAL___nom_9___7421873cd", "9666": "15___CATEGORICAL___nom_9___7428bfbc3", "9667": "15___CATEGORICAL___nom_9___742bb37d8", "9668": "15___CATEGORICAL___nom_9___742de40d9", "9669": "15___CATEGORICAL___nom_9___743229f32", "9670": "15___CATEGORICAL___nom_9___74360ff12", "9671": "15___CATEGORICAL___nom_9___74389144a", "9672": "15___CATEGORICAL___nom_9___743d8df9a", "9673": "15___CATEGORICAL___nom_9___744a31ac5", "9674": "15___CATEGORICAL___nom_9___744d8add7", "9675": "15___CATEGORICAL___nom_9___745cb35a7", "9676": "15___CATEGORICAL___nom_9___746029b4d", "9677": "15___CATEGORICAL___nom_9___7469bfa5a", "9678": "15___CATEGORICAL___nom_9___746d1e60e", "9679": "15___CATEGORICAL___nom_9___748064460", "9680": "15___CATEGORICAL___nom_9___74829315d", "9681": "15___CATEGORICAL___nom_9___74843bae5", "9682": "15___CATEGORICAL___nom_9___748a83281", "9683": "15___CATEGORICAL___nom_9___7494e3607", "9684": "15___CATEGORICAL___nom_9___7496abd37", "9685": "15___CATEGORICAL___nom_9___74a17cd4f", "9686": "15___CATEGORICAL___nom_9___74a53ee8b", "9687": "15___CATEGORICAL___nom_9___74a91555f", "9688": "15___CATEGORICAL___nom_9___74ae2e617", "9689": "15___CATEGORICAL___nom_9___74aff2dde", "9690": "15___CATEGORICAL___nom_9___74b0da9a2", "9691": "15___CATEGORICAL___nom_9___74bac1848", "9692": "15___CATEGORICAL___nom_9___74bc22d8b", "9693": "15___CATEGORICAL___nom_9___74c8af153", "9694": "15___CATEGORICAL___nom_9___74d03e6c6", "9695": "15___CATEGORICAL___nom_9___74d13fa93", "9696": "15___CATEGORICAL___nom_9___74d2b50b6", "9697": "15___CATEGORICAL___nom_9___74da146b4", "9698": "15___CATEGORICAL___nom_9___74e0c93d1", "9699": "15___CATEGORICAL___nom_9___74e241e50", "9700": "15___CATEGORICAL___nom_9___74e5a3d3f", "9701": "15___CATEGORICAL___nom_9___74e60599e", "9702": "15___CATEGORICAL___nom_9___74e6880b7", "9703": "15___CATEGORICAL___nom_9___74e9eb0a0", "9704": "15___CATEGORICAL___nom_9___74ec27c4e", "9705": "15___CATEGORICAL___nom_9___74f2174a3", "9706": "15___CATEGORICAL___nom_9___74f2cb626", "9707": "15___CATEGORICAL___nom_9___74f4e8de2", "9708": "15___CATEGORICAL___nom_9___74f691b20", "9709": "15___CATEGORICAL___nom_9___74fc0f8b9", "9710": "15___CATEGORICAL___nom_9___74ffbe31a", "9711": "15___CATEGORICAL___nom_9___75085af0b", "9712": "15___CATEGORICAL___nom_9___750935104", "9713": "15___CATEGORICAL___nom_9___7517edbad", "9714": "15___CATEGORICAL___nom_9___75193d88a", "9715": "15___CATEGORICAL___nom_9___751a88f89", "9716": "15___CATEGORICAL___nom_9___75211ce0b", "9717": "15___CATEGORICAL___nom_9___7523243e8", "9718": "15___CATEGORICAL___nom_9___753a9dda6", "9719": "15___CATEGORICAL___nom_9___7540c23c3", "9720": "15___CATEGORICAL___nom_9___75417fb14", "9721": "15___CATEGORICAL___nom_9___7551a52c4", "9722": "15___CATEGORICAL___nom_9___75554aea1", "9723": "15___CATEGORICAL___nom_9___75629b1bc", "9724": "15___CATEGORICAL___nom_9___75719a56a", "9725": "15___CATEGORICAL___nom_9___75790c065", "9726": "15___CATEGORICAL___nom_9___757e86f03", "9727": "15___CATEGORICAL___nom_9___757fbd50e", "9728": "15___CATEGORICAL___nom_9___758285902", "9729": "15___CATEGORICAL___nom_9___7582c157b", "9730": "15___CATEGORICAL___nom_9___7584e6e2b", "9731": "15___CATEGORICAL___nom_9___7588a06b1", "9732": "15___CATEGORICAL___nom_9___7590069bf", "9733": "15___CATEGORICAL___nom_9___75919939c", "9734": "15___CATEGORICAL___nom_9___75931e1ae", "9735": "15___CATEGORICAL___nom_9___759495521", "9736": "15___CATEGORICAL___nom_9___75a1767d9", "9737": "15___CATEGORICAL___nom_9___75a1e1061", "9738": "15___CATEGORICAL___nom_9___75a22b1fa", "9739": "15___CATEGORICAL___nom_9___75a8cfa03", "9740": "15___CATEGORICAL___nom_9___75bb335d2", "9741": "15___CATEGORICAL___nom_9___75bb47ed3", "9742": "15___CATEGORICAL___nom_9___75bd7aa3a", "9743": "15___CATEGORICAL___nom_9___75c30adc6", "9744": "15___CATEGORICAL___nom_9___75c936035", "9745": "15___CATEGORICAL___nom_9___75c9ccaa3", "9746": "15___CATEGORICAL___nom_9___75cb53a13", "9747": "15___CATEGORICAL___nom_9___75cddcde6", "9748": "15___CATEGORICAL___nom_9___75d2de5c4", "9749": "15___CATEGORICAL___nom_9___75d33e7ae", "9750": "15___CATEGORICAL___nom_9___75e1a6cc6", "9751": "15___CATEGORICAL___nom_9___75e1bb13c", "9752": "15___CATEGORICAL___nom_9___75e233410", "9753": "15___CATEGORICAL___nom_9___75e760bfc", "9754": "15___CATEGORICAL___nom_9___75edea7c7", "9755": "15___CATEGORICAL___nom_9___75eff217a", "9756": "15___CATEGORICAL___nom_9___75f661f36", "9757": "15___CATEGORICAL___nom_9___76034aca5", "9758": "15___CATEGORICAL___nom_9___760b14156", "9759": "15___CATEGORICAL___nom_9___760f0e17f", "9760": "15___CATEGORICAL___nom_9___7614263b6", "9761": "15___CATEGORICAL___nom_9___7624c2523", "9762": "15___CATEGORICAL___nom_9___762bc77c5", "9763": "15___CATEGORICAL___nom_9___7632a6422", "9764": "15___CATEGORICAL___nom_9___76355c73b", "9765": "15___CATEGORICAL___nom_9___7637d82c0", "9766": "15___CATEGORICAL___nom_9___7638c9d27", "9767": "15___CATEGORICAL___nom_9___7639dad0d", "9768": "15___CATEGORICAL___nom_9___763d29df9", "9769": "15___CATEGORICAL___nom_9___764022cce", "9770": "15___CATEGORICAL___nom_9___7641429c1", "9771": "15___CATEGORICAL___nom_9___7650da40c", "9772": "15___CATEGORICAL___nom_9___76549a8f1", "9773": "15___CATEGORICAL___nom_9___765e5b19e", "9774": "15___CATEGORICAL___nom_9___766076c8f", "9775": "15___CATEGORICAL___nom_9___76674a450", "9776": "15___CATEGORICAL___nom_9___766bc2384", "9777": "15___CATEGORICAL___nom_9___767076a90", "9778": "15___CATEGORICAL___nom_9___7671a0571", "9779": "15___CATEGORICAL___nom_9___7675d3671", "9780": "15___CATEGORICAL___nom_9___767d40367", "9781": "15___CATEGORICAL___nom_9___769203198", "9782": "15___CATEGORICAL___nom_9___76964f5c4", "9783": "15___CATEGORICAL___nom_9___76a430956", "9784": "15___CATEGORICAL___nom_9___76aa40cf9", "9785": "15___CATEGORICAL___nom_9___76aef0b06", "9786": "15___CATEGORICAL___nom_9___76af63c0e", "9787": "15___CATEGORICAL___nom_9___76b40d84e", "9788": "15___CATEGORICAL___nom_9___76c06109a", "9789": "15___CATEGORICAL___nom_9___76c326112", "9790": "15___CATEGORICAL___nom_9___76c405d4f", "9791": "15___CATEGORICAL___nom_9___76ca40f7f", "9792": "15___CATEGORICAL___nom_9___76ca7c72b", "9793": "15___CATEGORICAL___nom_9___76cfae0c6", "9794": "15___CATEGORICAL___nom_9___76d77818f", "9795": "15___CATEGORICAL___nom_9___76daad1ce", "9796": "15___CATEGORICAL___nom_9___76e6f94d2", "9797": "15___CATEGORICAL___nom_9___76ef36a83", "9798": "15___CATEGORICAL___nom_9___76f20d438", "9799": "15___CATEGORICAL___nom_9___770664efa", "9800": "15___CATEGORICAL___nom_9___7707b535a", "9801": "15___CATEGORICAL___nom_9___770c99636", "9802": "15___CATEGORICAL___nom_9___7711f53a2", "9803": "15___CATEGORICAL___nom_9___771ee5c6e", "9804": "15___CATEGORICAL___nom_9___771f337bc", "9805": "15___CATEGORICAL___nom_9___7726e88aa", "9806": "15___CATEGORICAL___nom_9___773cc7adc", "9807": "15___CATEGORICAL___nom_9___7747eac5f", "9808": "15___CATEGORICAL___nom_9___7749a52a5", "9809": "15___CATEGORICAL___nom_9___7753db6d2", "9810": "15___CATEGORICAL___nom_9___7759db288", "9811": "15___CATEGORICAL___nom_9___775f1184b", "9812": "15___CATEGORICAL___nom_9___776040c9a", "9813": "15___CATEGORICAL___nom_9___77691f45c", "9814": "15___CATEGORICAL___nom_9___77695cc31", "9815": "15___CATEGORICAL___nom_9___776aadae4", "9816": "15___CATEGORICAL___nom_9___7772937be", "9817": "15___CATEGORICAL___nom_9___77773a70f", "9818": "15___CATEGORICAL___nom_9___777f26883", "9819": "15___CATEGORICAL___nom_9___7787e143e", "9820": "15___CATEGORICAL___nom_9___778a34edf", "9821": "15___CATEGORICAL___nom_9___77906e562", "9822": "15___CATEGORICAL___nom_9___779e43415", "9823": "15___CATEGORICAL___nom_9___77bd4118a", "9824": "15___CATEGORICAL___nom_9___77c10ec02", "9825": "15___CATEGORICAL___nom_9___77c62fc3c", "9826": "15___CATEGORICAL___nom_9___77c6ceea5", "9827": "15___CATEGORICAL___nom_9___77cdfb2cb", "9828": "15___CATEGORICAL___nom_9___77d12c273", "9829": "15___CATEGORICAL___nom_9___77d1a3bd1", "9830": "15___CATEGORICAL___nom_9___77d540779", "9831": "15___CATEGORICAL___nom_9___77de9a7d1", "9832": "15___CATEGORICAL___nom_9___77e1e55a8", "9833": "15___CATEGORICAL___nom_9___77ebcb89e", "9834": "15___CATEGORICAL___nom_9___77ef5c7e2", "9835": "15___CATEGORICAL___nom_9___7800005e9", "9836": "15___CATEGORICAL___nom_9___7806c72c7", "9837": "15___CATEGORICAL___nom_9___781164869", "9838": "15___CATEGORICAL___nom_9___78148bf97", "9839": "15___CATEGORICAL___nom_9___78196975e", "9840": "15___CATEGORICAL___nom_9___781c432c1", "9841": "15___CATEGORICAL___nom_9___781d9978d", "9842": "15___CATEGORICAL___nom_9___782017d6a", "9843": "15___CATEGORICAL___nom_9___782d94619", "9844": "15___CATEGORICAL___nom_9___782e0d27d", "9845": "15___CATEGORICAL___nom_9___7837530c5", "9846": "15___CATEGORICAL___nom_9___783d7bec3", "9847": "15___CATEGORICAL___nom_9___7840594c4", "9848": "15___CATEGORICAL___nom_9___7842f5a96", "9849": "15___CATEGORICAL___nom_9___7857fe60c", "9850": "15___CATEGORICAL___nom_9___785c04d6a", "9851": "15___CATEGORICAL___nom_9___785efd431", "9852": "15___CATEGORICAL___nom_9___7862f74a9", "9853": "15___CATEGORICAL___nom_9___787aa8407", "9854": "15___CATEGORICAL___nom_9___787b1daed", "9855": "15___CATEGORICAL___nom_9___7881cd22c", "9856": "15___CATEGORICAL___nom_9___78906f80a", "9857": "15___CATEGORICAL___nom_9___789519f68", "9858": "15___CATEGORICAL___nom_9___7896324ce", "9859": "15___CATEGORICAL___nom_9___7896f0899", "9860": "15___CATEGORICAL___nom_9___789d62da6", "9861": "15___CATEGORICAL___nom_9___78a859414", "9862": "15___CATEGORICAL___nom_9___78a8e2262", "9863": "15___CATEGORICAL___nom_9___78abe4d68", "9864": "15___CATEGORICAL___nom_9___78b280802", "9865": "15___CATEGORICAL___nom_9___78b39e77a", "9866": "15___CATEGORICAL___nom_9___78b611aa0", "9867": "15___CATEGORICAL___nom_9___78bcf1ae0", "9868": "15___CATEGORICAL___nom_9___78be58abb", "9869": "15___CATEGORICAL___nom_9___78c165857", "9870": "15___CATEGORICAL___nom_9___78c8a28a1", "9871": "15___CATEGORICAL___nom_9___78d98f25c", "9872": "15___CATEGORICAL___nom_9___78daef08e", "9873": "15___CATEGORICAL___nom_9___78dc73205", "9874": "15___CATEGORICAL___nom_9___78e07a8b3", "9875": "15___CATEGORICAL___nom_9___78e19ada0", "9876": "15___CATEGORICAL___nom_9___78e69a68c", "9877": "15___CATEGORICAL___nom_9___78e70bcbb", "9878": "15___CATEGORICAL___nom_9___78e7a24e8", "9879": "15___CATEGORICAL___nom_9___78e8b828b", "9880": "15___CATEGORICAL___nom_9___78eb7a754", "9881": "15___CATEGORICAL___nom_9___78efe0e02", "9882": "15___CATEGORICAL___nom_9___78ff410ad", "9883": "15___CATEGORICAL___nom_9___79026b66a", "9884": "15___CATEGORICAL___nom_9___7902e2739", "9885": "15___CATEGORICAL___nom_9___790aa0e4c", "9886": "15___CATEGORICAL___nom_9___79197fbd9", "9887": "15___CATEGORICAL___nom_9___791abd3ab", "9888": "15___CATEGORICAL___nom_9___791abd98e", "9889": "15___CATEGORICAL___nom_9___792015936", "9890": "15___CATEGORICAL___nom_9___79226e99f", "9891": "15___CATEGORICAL___nom_9___79295c820", "9892": "15___CATEGORICAL___nom_9___7935130d9", "9893": "15___CATEGORICAL___nom_9___794209708", "9894": "15___CATEGORICAL___nom_9___79439e292", "9895": "15___CATEGORICAL___nom_9___794580f94", "9896": "15___CATEGORICAL___nom_9___794677f3d", "9897": "15___CATEGORICAL___nom_9___794a2c5e9", "9898": "15___CATEGORICAL___nom_9___794bd4086", "9899": "15___CATEGORICAL___nom_9___794c1b947", "9900": "15___CATEGORICAL___nom_9___794d59da4", "9901": "15___CATEGORICAL___nom_9___79510aadc", "9902": "15___CATEGORICAL___nom_9___7953ca3d6", "9903": "15___CATEGORICAL___nom_9___795699058", "9904": "15___CATEGORICAL___nom_9___7957cb0e4", "9905": "15___CATEGORICAL___nom_9___795a68eb4", "9906": "15___CATEGORICAL___nom_9___795f40836", "9907": "15___CATEGORICAL___nom_9___79707a153", "9908": "15___CATEGORICAL___nom_9___7970a067e", "9909": "15___CATEGORICAL___nom_9___7976037e5", "9910": "15___CATEGORICAL___nom_9___79823f642", "9911": "15___CATEGORICAL___nom_9___7987034f7", "9912": "15___CATEGORICAL___nom_9___798ca594e", "9913": "15___CATEGORICAL___nom_9___79928ec2e", "9914": "15___CATEGORICAL___nom_9___79966aa96", "9915": "15___CATEGORICAL___nom_9___79a812390", "9916": "15___CATEGORICAL___nom_9___79ad328c8", "9917": "15___CATEGORICAL___nom_9___79ada15c2", "9918": "15___CATEGORICAL___nom_9___79b560493", "9919": "15___CATEGORICAL___nom_9___79cba2131", "9920": "15___CATEGORICAL___nom_9___79d21edb1", "9921": "15___CATEGORICAL___nom_9___79d829b83", "9922": "15___CATEGORICAL___nom_9___79db025b1", "9923": "15___CATEGORICAL___nom_9___79fe1c94c", "9924": "15___CATEGORICAL___nom_9___7a01d240e", "9925": "15___CATEGORICAL___nom_9___7a01ee510", "9926": "15___CATEGORICAL___nom_9___7a0c0d40f", "9927": "15___CATEGORICAL___nom_9___7a15dce91", "9928": "15___CATEGORICAL___nom_9___7a1ba261b", "9929": "15___CATEGORICAL___nom_9___7a1c979b2", "9930": "15___CATEGORICAL___nom_9___7a27d04d0", "9931": "15___CATEGORICAL___nom_9___7a2ce9a6a", "9932": "15___CATEGORICAL___nom_9___7a34b160a", "9933": "15___CATEGORICAL___nom_9___7a3530d7d", "9934": "15___CATEGORICAL___nom_9___7a36042ab", "9935": "15___CATEGORICAL___nom_9___7a45df221", "9936": "15___CATEGORICAL___nom_9___7a4905f85", "9937": "15___CATEGORICAL___nom_9___7a5658ba1", "9938": "15___CATEGORICAL___nom_9___7a57918a5", "9939": "15___CATEGORICAL___nom_9___7a5f14f3b", "9940": "15___CATEGORICAL___nom_9___7a6437957", "9941": "15___CATEGORICAL___nom_9___7a6674f00", "9942": "15___CATEGORICAL___nom_9___7a6993a2b", "9943": "15___CATEGORICAL___nom_9___7a7cbf071", "9944": "15___CATEGORICAL___nom_9___7a813c4b9", "9945": "15___CATEGORICAL___nom_9___7a8193ae1", "9946": "15___CATEGORICAL___nom_9___7a82ee853", "9947": "15___CATEGORICAL___nom_9___7a8459b81", "9948": "15___CATEGORICAL___nom_9___7a8adbea8", "9949": "15___CATEGORICAL___nom_9___7a90d1890", "9950": "15___CATEGORICAL___nom_9___7a92967b4", "9951": "15___CATEGORICAL___nom_9___7a9442914", "9952": "15___CATEGORICAL___nom_9___7a9ce4a04", "9953": "15___CATEGORICAL___nom_9___7aa6797b8", "9954": "15___CATEGORICAL___nom_9___7ab1f73ee", "9955": "15___CATEGORICAL___nom_9___7ab24fae6", "9956": "15___CATEGORICAL___nom_9___7ab3667ff", "9957": "15___CATEGORICAL___nom_9___7ab42a280", "9958": "15___CATEGORICAL___nom_9___7aba02778", "9959": "15___CATEGORICAL___nom_9___7abcb598b", "9960": "15___CATEGORICAL___nom_9___7abe00c10", "9961": "15___CATEGORICAL___nom_9___7ac3047e8", "9962": "15___CATEGORICAL___nom_9___7ac56cc25", "9963": "15___CATEGORICAL___nom_9___7aca7bc71", "9964": "15___CATEGORICAL___nom_9___7adff30d4", "9965": "15___CATEGORICAL___nom_9___7ae3ab5ad", "9966": "15___CATEGORICAL___nom_9___7ae8f061b", "9967": "15___CATEGORICAL___nom_9___7aea9e9d3", "9968": "15___CATEGORICAL___nom_9___7af128cff", "9969": "15___CATEGORICAL___nom_9___7af2c83dd", "9970": "15___CATEGORICAL___nom_9___7af631474", "9971": "15___CATEGORICAL___nom_9___7af8a1bab", "9972": "15___CATEGORICAL___nom_9___7af9d0ebc", "9973": "15___CATEGORICAL___nom_9___7afe5c5a0", "9974": "15___CATEGORICAL___nom_9___7b022e604", "9975": "15___CATEGORICAL___nom_9___7b0a9ecdc", "9976": "15___CATEGORICAL___nom_9___7b0d3d2f5", "9977": "15___CATEGORICAL___nom_9___7b1345b8e", "9978": "15___CATEGORICAL___nom_9___7b14a2b9d", "9979": "15___CATEGORICAL___nom_9___7b14fb73e", "9980": "15___CATEGORICAL___nom_9___7b16fbe9a", "9981": "15___CATEGORICAL___nom_9___7b1a3941d", "9982": "15___CATEGORICAL___nom_9___7b215b373", "9983": "15___CATEGORICAL___nom_9___7b2eb2d88", "9984": "15___CATEGORICAL___nom_9___7b33873f4", "9985": "15___CATEGORICAL___nom_9___7b3391ec1", "9986": "15___CATEGORICAL___nom_9___7b3989afc", "9987": "15___CATEGORICAL___nom_9___7b3a0105c", "9988": "15___CATEGORICAL___nom_9___7b3ec7349", "9989": "15___CATEGORICAL___nom_9___7b3ed243b", "9990": "15___CATEGORICAL___nom_9___7b4091217", "9991": "15___CATEGORICAL___nom_9___7b4ca1307", "9992": "15___CATEGORICAL___nom_9___7b4ffbf1f", "9993": "15___CATEGORICAL___nom_9___7b531e3c9", "9994": "15___CATEGORICAL___nom_9___7b5cdde69", "9995": "15___CATEGORICAL___nom_9___7b5e3cb04", "9996": "15___CATEGORICAL___nom_9___7b6d81d06", "9997": "15___CATEGORICAL___nom_9___7b6f4568b", "9998": "15___CATEGORICAL___nom_9___7b71918a6", "9999": "15___CATEGORICAL___nom_9___7b75a07de", "10000": "15___CATEGORICAL___nom_9___7b9175d8b", "10001": "15___CATEGORICAL___nom_9___7baca9297", "10002": "15___CATEGORICAL___nom_9___7baf03fde", "10003": "15___CATEGORICAL___nom_9___7bb5dd559", "10004": "15___CATEGORICAL___nom_9___7bb806aca", "10005": "15___CATEGORICAL___nom_9___7bbb2527f", "10006": "15___CATEGORICAL___nom_9___7bbdbf675", "10007": "15___CATEGORICAL___nom_9___7bbf813ef", "10008": "15___CATEGORICAL___nom_9___7bbfc0655", "10009": "15___CATEGORICAL___nom_9___7bc1248e6", "10010": "15___CATEGORICAL___nom_9___7bc1e3774", "10011": "15___CATEGORICAL___nom_9___7bc62e134", "10012": "15___CATEGORICAL___nom_9___7bc855ef3", "10013": "15___CATEGORICAL___nom_9___7bca15fcf", "10014": "15___CATEGORICAL___nom_9___7bcf44282", "10015": "15___CATEGORICAL___nom_9___7bd06ae2f", "10016": "15___CATEGORICAL___nom_9___7bd0f14ac", "10017": "15___CATEGORICAL___nom_9___7bd96cdba", "10018": "15___CATEGORICAL___nom_9___7bd9afb5e", "10019": "15___CATEGORICAL___nom_9___7be1b076d", "10020": "15___CATEGORICAL___nom_9___7be6f4206", "10021": "15___CATEGORICAL___nom_9___7be727c23", "10022": "15___CATEGORICAL___nom_9___7be800d91", "10023": "15___CATEGORICAL___nom_9___7beb9e33f", "10024": "15___CATEGORICAL___nom_9___7bf7adf8e", "10025": "15___CATEGORICAL___nom_9___7bf7e37d5", "10026": "15___CATEGORICAL___nom_9___7bfc9c79d", "10027": "15___CATEGORICAL___nom_9___7bff1cb40", "10028": "15___CATEGORICAL___nom_9___7c022a318", "10029": "15___CATEGORICAL___nom_9___7c08e04c7", "10030": "15___CATEGORICAL___nom_9___7c0de870d", "10031": "15___CATEGORICAL___nom_9___7c13a3ce8", "10032": "15___CATEGORICAL___nom_9___7c1bcf823", "10033": "15___CATEGORICAL___nom_9___7c21b39b8", "10034": "15___CATEGORICAL___nom_9___7c2b94bf9", "10035": "15___CATEGORICAL___nom_9___7c2f9c1e6", "10036": "15___CATEGORICAL___nom_9___7c3612adf", "10037": "15___CATEGORICAL___nom_9___7c39c7876", "10038": "15___CATEGORICAL___nom_9___7c440a7ea", "10039": "15___CATEGORICAL___nom_9___7c4d6f73d", "10040": "15___CATEGORICAL___nom_9___7c5ae6ba8", "10041": "15___CATEGORICAL___nom_9___7c5dd289a", "10042": "15___CATEGORICAL___nom_9___7c654936d", "10043": "15___CATEGORICAL___nom_9___7c66d8089", "10044": "15___CATEGORICAL___nom_9___7c6d0d652", "10045": "15___CATEGORICAL___nom_9___7c7cc2bd4", "10046": "15___CATEGORICAL___nom_9___7c883a96c", "10047": "15___CATEGORICAL___nom_9___7c8cf939d", "10048": "15___CATEGORICAL___nom_9___7c93bb327", "10049": "15___CATEGORICAL___nom_9___7c9cac70a", "10050": "15___CATEGORICAL___nom_9___7ca6e195e", "10051": "15___CATEGORICAL___nom_9___7caea8682", "10052": "15___CATEGORICAL___nom_9___7cc470b7c", "10053": "15___CATEGORICAL___nom_9___7cc700a30", "10054": "15___CATEGORICAL___nom_9___7ccb0a31a", "10055": "15___CATEGORICAL___nom_9___7cd4bc268", "10056": "15___CATEGORICAL___nom_9___7cdc1f3e3", "10057": "15___CATEGORICAL___nom_9___7ce4d22d0", "10058": "15___CATEGORICAL___nom_9___7ce6247e6", "10059": "15___CATEGORICAL___nom_9___7d05ddedf", "10060": "15___CATEGORICAL___nom_9___7d092027e", "10061": "15___CATEGORICAL___nom_9___7d2265932", "10062": "15___CATEGORICAL___nom_9___7d3236e30", "10063": "15___CATEGORICAL___nom_9___7d334c2f9", "10064": "15___CATEGORICAL___nom_9___7d33cce89", "10065": "15___CATEGORICAL___nom_9___7d43106ff", "10066": "15___CATEGORICAL___nom_9___7d435e4f6", "10067": "15___CATEGORICAL___nom_9___7d448d26e", "10068": "15___CATEGORICAL___nom_9___7d47a35c2", "10069": "15___CATEGORICAL___nom_9___7d495251c", "10070": "15___CATEGORICAL___nom_9___7d4f814a4", "10071": "15___CATEGORICAL___nom_9___7d5087c72", "10072": "15___CATEGORICAL___nom_9___7d5850a66", "10073": "15___CATEGORICAL___nom_9___7d58c89ca", "10074": "15___CATEGORICAL___nom_9___7d5a25bfc", "10075": "15___CATEGORICAL___nom_9___7d5a4a95f", "10076": "15___CATEGORICAL___nom_9___7d6793d3c", "10077": "15___CATEGORICAL___nom_9___7d68c3eba", "10078": "15___CATEGORICAL___nom_9___7d6ad1176", "10079": "15___CATEGORICAL___nom_9___7d70ffd93", "10080": "15___CATEGORICAL___nom_9___7d7942464", "10081": "15___CATEGORICAL___nom_9___7d797be3a", "10082": "15___CATEGORICAL___nom_9___7d7ca50e8", "10083": "15___CATEGORICAL___nom_9___7d9691062", "10084": "15___CATEGORICAL___nom_9___7d969ca75", "10085": "15___CATEGORICAL___nom_9___7d9835dab", "10086": "15___CATEGORICAL___nom_9___7d9d17630", "10087": "15___CATEGORICAL___nom_9___7db752507", "10088": "15___CATEGORICAL___nom_9___7dbbdf71c", "10089": "15___CATEGORICAL___nom_9___7dbdfa278", "10090": "15___CATEGORICAL___nom_9___7dbf62b0e", "10091": "15___CATEGORICAL___nom_9___7dc5955f5", "10092": "15___CATEGORICAL___nom_9___7dd7da878", "10093": "15___CATEGORICAL___nom_9___7dd9a3d07", "10094": "15___CATEGORICAL___nom_9___7dddecb14", "10095": "15___CATEGORICAL___nom_9___7dde4b1e6", "10096": "15___CATEGORICAL___nom_9___7de41b110", "10097": "15___CATEGORICAL___nom_9___7dedf7142", "10098": "15___CATEGORICAL___nom_9___7df320da4", "10099": "15___CATEGORICAL___nom_9___7e0262237", "10100": "15___CATEGORICAL___nom_9___7e0557b15", "10101": "15___CATEGORICAL___nom_9___7e084ec78", "10102": "15___CATEGORICAL___nom_9___7e1bbe511", "10103": "15___CATEGORICAL___nom_9___7e1bf58db", "10104": "15___CATEGORICAL___nom_9___7e2423ae5", "10105": "15___CATEGORICAL___nom_9___7e26c7952", "10106": "15___CATEGORICAL___nom_9___7e292c3d1", "10107": "15___CATEGORICAL___nom_9___7e3136a87", "10108": "15___CATEGORICAL___nom_9___7e3243a79", "10109": "15___CATEGORICAL___nom_9___7e33de7f5", "10110": "15___CATEGORICAL___nom_9___7e3d79a0d", "10111": "15___CATEGORICAL___nom_9___7e430957f", "10112": "15___CATEGORICAL___nom_9___7e47c459d", "10113": "15___CATEGORICAL___nom_9___7e4cfa140", "10114": "15___CATEGORICAL___nom_9___7e523f3fb", "10115": "15___CATEGORICAL___nom_9___7e55484e8", "10116": "15___CATEGORICAL___nom_9___7e5a41f0a", "10117": "15___CATEGORICAL___nom_9___7e6402f81", "10118": "15___CATEGORICAL___nom_9___7e67f2c32", "10119": "15___CATEGORICAL___nom_9___7e8965fb4", "10120": "15___CATEGORICAL___nom_9___7e8a1783b", "10121": "15___CATEGORICAL___nom_9___7e92ccb87", "10122": "15___CATEGORICAL___nom_9___7e987c76f", "10123": "15___CATEGORICAL___nom_9___7e9900759", "10124": "15___CATEGORICAL___nom_9___7e9e56ff5", "10125": "15___CATEGORICAL___nom_9___7ea5e0b11", "10126": "15___CATEGORICAL___nom_9___7eab725fe", "10127": "15___CATEGORICAL___nom_9___7eadffe5b", "10128": "15___CATEGORICAL___nom_9___7eae1b713", "10129": "15___CATEGORICAL___nom_9___7eaf16a23", "10130": "15___CATEGORICAL___nom_9___7eb39a088", "10131": "15___CATEGORICAL___nom_9___7eb710430", "10132": "15___CATEGORICAL___nom_9___7ecb2c2d2", "10133": "15___CATEGORICAL___nom_9___7ecc6f4a1", "10134": "15___CATEGORICAL___nom_9___7ed179f2a", "10135": "15___CATEGORICAL___nom_9___7ed19a968", "10136": "15___CATEGORICAL___nom_9___7ed3fe1c6", "10137": "15___CATEGORICAL___nom_9___7ee50e075", "10138": "15___CATEGORICAL___nom_9___7eeb253e7", "10139": "15___CATEGORICAL___nom_9___7ef605404", "10140": "15___CATEGORICAL___nom_9___7f00a9e22", "10141": "15___CATEGORICAL___nom_9___7f0665e1e", "10142": "15___CATEGORICAL___nom_9___7f083c63e", "10143": "15___CATEGORICAL___nom_9___7f0c6e935", "10144": "15___CATEGORICAL___nom_9___7f0d0fb57", "10145": "15___CATEGORICAL___nom_9___7f1279ded", "10146": "15___CATEGORICAL___nom_9___7f18b76dc", "10147": "15___CATEGORICAL___nom_9___7f1c3219c", "10148": "15___CATEGORICAL___nom_9___7f1ce6724", "10149": "15___CATEGORICAL___nom_9___7f21426f4", "10150": "15___CATEGORICAL___nom_9___7f221f44a", "10151": "15___CATEGORICAL___nom_9___7f2880344", "10152": "15___CATEGORICAL___nom_9___7f2b18fc3", "10153": "15___CATEGORICAL___nom_9___7f2b7ad04", "10154": "15___CATEGORICAL___nom_9___7f2bc861f", "10155": "15___CATEGORICAL___nom_9___7f33d956a", "10156": "15___CATEGORICAL___nom_9___7f420468a", "10157": "15___CATEGORICAL___nom_9___7f4255a65", "10158": "15___CATEGORICAL___nom_9___7f4808d96", "10159": "15___CATEGORICAL___nom_9___7f48f8f17", "10160": "15___CATEGORICAL___nom_9___7f4982c01", "10161": "15___CATEGORICAL___nom_9___7f4d4ee95", "10162": "15___CATEGORICAL___nom_9___7f502a4b8", "10163": "15___CATEGORICAL___nom_9___7f5b1c170", "10164": "15___CATEGORICAL___nom_9___7f5e74721", "10165": "15___CATEGORICAL___nom_9___7f6539005", "10166": "15___CATEGORICAL___nom_9___7f6672118", "10167": "15___CATEGORICAL___nom_9___7f6a8cce6", "10168": "15___CATEGORICAL___nom_9___7f7133012", "10169": "15___CATEGORICAL___nom_9___7f73c2a50", "10170": "15___CATEGORICAL___nom_9___7f8796416", "10171": "15___CATEGORICAL___nom_9___7f88f1df0", "10172": "15___CATEGORICAL___nom_9___7f8cc02cd", "10173": "15___CATEGORICAL___nom_9___7f9bf2e55", "10174": "15___CATEGORICAL___nom_9___7f9dc3b8b", "10175": "15___CATEGORICAL___nom_9___7fa681ea4", "10176": "15___CATEGORICAL___nom_9___7faa4c366", "10177": "15___CATEGORICAL___nom_9___7fb5515b6", "10178": "15___CATEGORICAL___nom_9___7fb707e56", "10179": "15___CATEGORICAL___nom_9___7fbda28a7", "10180": "15___CATEGORICAL___nom_9___7fc99a139", "10181": "15___CATEGORICAL___nom_9___7fcdd32d8", "10182": "15___CATEGORICAL___nom_9___7fd283801", "10183": "15___CATEGORICAL___nom_9___7fd53d845", "10184": "15___CATEGORICAL___nom_9___7fdc992ce", "10185": "15___CATEGORICAL___nom_9___7fdfc63b9", "10186": "15___CATEGORICAL___nom_9___7fe01ec1c", "10187": "15___CATEGORICAL___nom_9___7fe46e676", "10188": "15___CATEGORICAL___nom_9___7fe5ee983", "10189": "15___CATEGORICAL___nom_9___80002b8e2", "10190": "15___CATEGORICAL___nom_9___8001019c9", "10191": "15___CATEGORICAL___nom_9___800b71b2c", "10192": "15___CATEGORICAL___nom_9___800bee4e8", "10193": "15___CATEGORICAL___nom_9___800f0ff19", "10194": "15___CATEGORICAL___nom_9___801775384", "10195": "15___CATEGORICAL___nom_9___801b5eb7f", "10196": "15___CATEGORICAL___nom_9___8022f9312", "10197": "15___CATEGORICAL___nom_9___8024c1c42", "10198": "15___CATEGORICAL___nom_9___802b07582", "10199": "15___CATEGORICAL___nom_9___8035fe068", "10200": "15___CATEGORICAL___nom_9___80360431c", "10201": "15___CATEGORICAL___nom_9___8036de9b5", "10202": "15___CATEGORICAL___nom_9___803ead821", "10203": "15___CATEGORICAL___nom_9___803ff8d03", "10204": "15___CATEGORICAL___nom_9___8043184f4", "10205": "15___CATEGORICAL___nom_9___804cc6df9", "10206": "15___CATEGORICAL___nom_9___804fc9d96", "10207": "15___CATEGORICAL___nom_9___8055610e2", "10208": "15___CATEGORICAL___nom_9___8057ad80a", "10209": "15___CATEGORICAL___nom_9___80619a7dd", "10210": "15___CATEGORICAL___nom_9___8070d873e", "10211": "15___CATEGORICAL___nom_9___8071bfe80", "10212": "15___CATEGORICAL___nom_9___807586d66", "10213": "15___CATEGORICAL___nom_9___807a9f53a", "10214": "15___CATEGORICAL___nom_9___808c2b084", "10215": "15___CATEGORICAL___nom_9___808c757a0", "10216": "15___CATEGORICAL___nom_9___80910b39d", "10217": "15___CATEGORICAL___nom_9___8095dbb75", "10218": "15___CATEGORICAL___nom_9___809888e70", "10219": "15___CATEGORICAL___nom_9___80989fb88", "10220": "15___CATEGORICAL___nom_9___809aefe45", "10221": "15___CATEGORICAL___nom_9___809b43e9b", "10222": "15___CATEGORICAL___nom_9___80a146cd9", "10223": "15___CATEGORICAL___nom_9___80aa5cb48", "10224": "15___CATEGORICAL___nom_9___80acc1853", "10225": "15___CATEGORICAL___nom_9___80b04c0ab", "10226": "15___CATEGORICAL___nom_9___80bc4e0c7", "10227": "15___CATEGORICAL___nom_9___80c03b270", "10228": "15___CATEGORICAL___nom_9___80ca040fc", "10229": "15___CATEGORICAL___nom_9___80cf5687e", "10230": "15___CATEGORICAL___nom_9___80d423992", "10231": "15___CATEGORICAL___nom_9___80d7c9430", "10232": "15___CATEGORICAL___nom_9___80e72097b", "10233": "15___CATEGORICAL___nom_9___80f1411c8", "10234": "15___CATEGORICAL___nom_9___80f3b66ff", "10235": "15___CATEGORICAL___nom_9___80fe0a1ae", "10236": "15___CATEGORICAL___nom_9___8114504d9", "10237": "15___CATEGORICAL___nom_9___8122c23e1", "10238": "15___CATEGORICAL___nom_9___8125151e8", "10239": "15___CATEGORICAL___nom_9___81329e4df", "10240": "15___CATEGORICAL___nom_9___81353277b", "10241": "15___CATEGORICAL___nom_9___813583a2a", "10242": "15___CATEGORICAL___nom_9___81368c258", "10243": "15___CATEGORICAL___nom_9___8136e86a2", "10244": "15___CATEGORICAL___nom_9___813b501f4", "10245": "15___CATEGORICAL___nom_9___813dfcb74", "10246": "15___CATEGORICAL___nom_9___814087366", "10247": "15___CATEGORICAL___nom_9___8147fdc9f", "10248": "15___CATEGORICAL___nom_9___814bcc16a", "10249": "15___CATEGORICAL___nom_9___814f80997", "10250": "15___CATEGORICAL___nom_9___815874deb", "10251": "15___CATEGORICAL___nom_9___815c8040e", "10252": "15___CATEGORICAL___nom_9___8162b88bb", "10253": "15___CATEGORICAL___nom_9___816bc8f47", "10254": "15___CATEGORICAL___nom_9___816ca49ad", "10255": "15___CATEGORICAL___nom_9___8171416d6", "10256": "15___CATEGORICAL___nom_9___8173ee7db", "10257": "15___CATEGORICAL___nom_9___817b8dca6", "10258": "15___CATEGORICAL___nom_9___817e2c7b5", "10259": "15___CATEGORICAL___nom_9___817e5ed12", "10260": "15___CATEGORICAL___nom_9___818228bae", "10261": "15___CATEGORICAL___nom_9___8183b010e", "10262": "15___CATEGORICAL___nom_9___818871dc8", "10263": "15___CATEGORICAL___nom_9___819358867", "10264": "15___CATEGORICAL___nom_9___8195596d3", "10265": "15___CATEGORICAL___nom_9___819a54e7c", "10266": "15___CATEGORICAL___nom_9___819a8e985", "10267": "15___CATEGORICAL___nom_9___819d952ae", "10268": "15___CATEGORICAL___nom_9___81a95dac9", "10269": "15___CATEGORICAL___nom_9___81ab46a57", "10270": "15___CATEGORICAL___nom_9___81b3bc032", "10271": "15___CATEGORICAL___nom_9___81b6bfebc", "10272": "15___CATEGORICAL___nom_9___81bba4819", "10273": "15___CATEGORICAL___nom_9___81c302f4f", "10274": "15___CATEGORICAL___nom_9___81c9115a9", "10275": "15___CATEGORICAL___nom_9___81d52db8c", "10276": "15___CATEGORICAL___nom_9___81dc5cb55", "10277": "15___CATEGORICAL___nom_9___81e7acca7", "10278": "15___CATEGORICAL___nom_9___81ed160a6", "10279": "15___CATEGORICAL___nom_9___81ef0fc8f", "10280": "15___CATEGORICAL___nom_9___81fa53f07", "10281": "15___CATEGORICAL___nom_9___81fb39910", "10282": "15___CATEGORICAL___nom_9___81fc102fc", "10283": "15___CATEGORICAL___nom_9___81fd593b8", "10284": "15___CATEGORICAL___nom_9___81fdcb7c3", "10285": "15___CATEGORICAL___nom_9___820169051", "10286": "15___CATEGORICAL___nom_9___820214db7", "10287": "15___CATEGORICAL___nom_9___82084b5e4", "10288": "15___CATEGORICAL___nom_9___820a59acb", "10289": "15___CATEGORICAL___nom_9___820b5b35b", "10290": "15___CATEGORICAL___nom_9___8217afc56", "10291": "15___CATEGORICAL___nom_9___8219dd8e2", "10292": "15___CATEGORICAL___nom_9___821fb2e51", "10293": "15___CATEGORICAL___nom_9___822185a73", "10294": "15___CATEGORICAL___nom_9___82268c205", "10295": "15___CATEGORICAL___nom_9___822ea3048", "10296": "15___CATEGORICAL___nom_9___82318ef56", "10297": "15___CATEGORICAL___nom_9___82454e4f6", "10298": "15___CATEGORICAL___nom_9___824af1e61", "10299": "15___CATEGORICAL___nom_9___824d425ac", "10300": "15___CATEGORICAL___nom_9___825022c42", "10301": "15___CATEGORICAL___nom_9___825b28dcf", "10302": "15___CATEGORICAL___nom_9___825c129b0", "10303": "15___CATEGORICAL___nom_9___825dd25d7", "10304": "15___CATEGORICAL___nom_9___825facafc", "10305": "15___CATEGORICAL___nom_9___8270f0d71", "10306": "15___CATEGORICAL___nom_9___82747d757", "10307": "15___CATEGORICAL___nom_9___8275027b7", "10308": "15___CATEGORICAL___nom_9___827b3cb04", "10309": "15___CATEGORICAL___nom_9___827d1034c", "10310": "15___CATEGORICAL___nom_9___827d852d0", "10311": "15___CATEGORICAL___nom_9___828289263", "10312": "15___CATEGORICAL___nom_9___828ab6fa1", "10313": "15___CATEGORICAL___nom_9___828f257ca", "10314": "15___CATEGORICAL___nom_9___829de2f97", "10315": "15___CATEGORICAL___nom_9___829f95a21", "10316": "15___CATEGORICAL___nom_9___82a0a9cb5", "10317": "15___CATEGORICAL___nom_9___82b64e089", "10318": "15___CATEGORICAL___nom_9___82b9b46fc", "10319": "15___CATEGORICAL___nom_9___82c2d710e", "10320": "15___CATEGORICAL___nom_9___82c5c14bf", "10321": "15___CATEGORICAL___nom_9___82cf6fc2c", "10322": "15___CATEGORICAL___nom_9___82d05e609", "10323": "15___CATEGORICAL___nom_9___82d12a4bf", "10324": "15___CATEGORICAL___nom_9___82da671ad", "10325": "15___CATEGORICAL___nom_9___82e37bfca", "10326": "15___CATEGORICAL___nom_9___82e48f1bd", "10327": "15___CATEGORICAL___nom_9___82e8fd509", "10328": "15___CATEGORICAL___nom_9___82eb16ddc", "10329": "15___CATEGORICAL___nom_9___82ee95475", "10330": "15___CATEGORICAL___nom_9___82ef0f1eb", "10331": "15___CATEGORICAL___nom_9___82f0284bd", "10332": "15___CATEGORICAL___nom_9___82f321693", "10333": "15___CATEGORICAL___nom_9___82f912575", "10334": "15___CATEGORICAL___nom_9___83022687a", "10335": "15___CATEGORICAL___nom_9___8305d6304", "10336": "15___CATEGORICAL___nom_9___83097f7b4", "10337": "15___CATEGORICAL___nom_9___830f0d2ec", "10338": "15___CATEGORICAL___nom_9___831cb021c", "10339": "15___CATEGORICAL___nom_9___8328c0054", "10340": "15___CATEGORICAL___nom_9___83292c3be", "10341": "15___CATEGORICAL___nom_9___8329ab638", "10342": "15___CATEGORICAL___nom_9___832fcc7bd", "10343": "15___CATEGORICAL___nom_9___8337e8c1a", "10344": "15___CATEGORICAL___nom_9___834414ba2", "10345": "15___CATEGORICAL___nom_9___835106e0d", "10346": "15___CATEGORICAL___nom_9___835a68b21", "10347": "15___CATEGORICAL___nom_9___835dcf7f6", "10348": "15___CATEGORICAL___nom_9___835f33229", "10349": "15___CATEGORICAL___nom_9___836553e90", "10350": "15___CATEGORICAL___nom_9___83706fd63", "10351": "15___CATEGORICAL___nom_9___83811775b", "10352": "15___CATEGORICAL___nom_9___83865a241", "10353": "15___CATEGORICAL___nom_9___838aff19c", "10354": "15___CATEGORICAL___nom_9___838f38733", "10355": "15___CATEGORICAL___nom_9___838f98784", "10356": "15___CATEGORICAL___nom_9___8399d0f86", "10357": "15___CATEGORICAL___nom_9___839dedc15", "10358": "15___CATEGORICAL___nom_9___839e6b3d6", "10359": "15___CATEGORICAL___nom_9___839f6f71f", "10360": "15___CATEGORICAL___nom_9___83abfcdb2", "10361": "15___CATEGORICAL___nom_9___83b6ffeab", "10362": "15___CATEGORICAL___nom_9___83bbd48ec", "10363": "15___CATEGORICAL___nom_9___83c810426", "10364": "15___CATEGORICAL___nom_9___83c87a2cd", "10365": "15___CATEGORICAL___nom_9___83c914801", "10366": "15___CATEGORICAL___nom_9___83d018d90", "10367": "15___CATEGORICAL___nom_9___83e552ddf", "10368": "15___CATEGORICAL___nom_9___83e5d34f8", "10369": "15___CATEGORICAL___nom_9___83e6209a3", "10370": "15___CATEGORICAL___nom_9___83e7be766", "10371": "15___CATEGORICAL___nom_9___83e86ee98", "10372": "15___CATEGORICAL___nom_9___83eae8f77", "10373": "15___CATEGORICAL___nom_9___83ee04764", "10374": "15___CATEGORICAL___nom_9___83ef0e99f", "10375": "15___CATEGORICAL___nom_9___83f839f9b", "10376": "15___CATEGORICAL___nom_9___8404ff477", "10377": "15___CATEGORICAL___nom_9___8409caa2b", "10378": "15___CATEGORICAL___nom_9___841202213", "10379": "15___CATEGORICAL___nom_9___84163d0c6", "10380": "15___CATEGORICAL___nom_9___841df72a2", "10381": "15___CATEGORICAL___nom_9___842c9d3a2", "10382": "15___CATEGORICAL___nom_9___842d60bc0", "10383": "15___CATEGORICAL___nom_9___842e33440", "10384": "15___CATEGORICAL___nom_9___844175942", "10385": "15___CATEGORICAL___nom_9___8442955ee", "10386": "15___CATEGORICAL___nom_9___844732c24", "10387": "15___CATEGORICAL___nom_9___844cf9b20", "10388": "15___CATEGORICAL___nom_9___844f1de50", "10389": "15___CATEGORICAL___nom_9___8452a9adf", "10390": "15___CATEGORICAL___nom_9___8453f3b7c", "10391": "15___CATEGORICAL___nom_9___8455a07ab", "10392": "15___CATEGORICAL___nom_9___845a0eb86", "10393": "15___CATEGORICAL___nom_9___84627bdcf", "10394": "15___CATEGORICAL___nom_9___84640650c", "10395": "15___CATEGORICAL___nom_9___846672036", "10396": "15___CATEGORICAL___nom_9___846eae9ff", "10397": "15___CATEGORICAL___nom_9___847049f60", "10398": "15___CATEGORICAL___nom_9___8472eb239", "10399": "15___CATEGORICAL___nom_9___84735dafa", "10400": "15___CATEGORICAL___nom_9___84738763b", "10401": "15___CATEGORICAL___nom_9___8477bf8c4", "10402": "15___CATEGORICAL___nom_9___847bff3d9", "10403": "15___CATEGORICAL___nom_9___847d41708", "10404": "15___CATEGORICAL___nom_9___8485fed2e", "10405": "15___CATEGORICAL___nom_9___848f3a74d", "10406": "15___CATEGORICAL___nom_9___8493191e4", "10407": "15___CATEGORICAL___nom_9___8493423ad", "10408": "15___CATEGORICAL___nom_9___8494f306b", "10409": "15___CATEGORICAL___nom_9___849a3fafc", "10410": "15___CATEGORICAL___nom_9___84af6ee8b", "10411": "15___CATEGORICAL___nom_9___84ba3fad3", "10412": "15___CATEGORICAL___nom_9___84c27ee7d", "10413": "15___CATEGORICAL___nom_9___84c645ca4", "10414": "15___CATEGORICAL___nom_9___84c6505ed", "10415": "15___CATEGORICAL___nom_9___84cf4982b", "10416": "15___CATEGORICAL___nom_9___84cfc92fb", "10417": "15___CATEGORICAL___nom_9___84d24b10c", "10418": "15___CATEGORICAL___nom_9___84d3c60bb", "10419": "15___CATEGORICAL___nom_9___84e77b11a", "10420": "15___CATEGORICAL___nom_9___84ebdb3e4", "10421": "15___CATEGORICAL___nom_9___84f7e800c", "10422": "15___CATEGORICAL___nom_9___84ffb1969", "10423": "15___CATEGORICAL___nom_9___8501d87ab", "10424": "15___CATEGORICAL___nom_9___851a12ac0", "10425": "15___CATEGORICAL___nom_9___852888f56", "10426": "15___CATEGORICAL___nom_9___852c029ad", "10427": "15___CATEGORICAL___nom_9___852f0a1b3", "10428": "15___CATEGORICAL___nom_9___853032c5d", "10429": "15___CATEGORICAL___nom_9___85391ffa1", "10430": "15___CATEGORICAL___nom_9___8542caf23", "10431": "15___CATEGORICAL___nom_9___855211bc3", "10432": "15___CATEGORICAL___nom_9___8553a9ed5", "10433": "15___CATEGORICAL___nom_9___855615499", "10434": "15___CATEGORICAL___nom_9___85584e50a", "10435": "15___CATEGORICAL___nom_9___855874e06", "10436": "15___CATEGORICAL___nom_9___856396679", "10437": "15___CATEGORICAL___nom_9___8568fc94b", "10438": "15___CATEGORICAL___nom_9___856af867a", "10439": "15___CATEGORICAL___nom_9___856d3c589", "10440": "15___CATEGORICAL___nom_9___857132fc1", "10441": "15___CATEGORICAL___nom_9___8581095a3", "10442": "15___CATEGORICAL___nom_9___8589b291e", "10443": "15___CATEGORICAL___nom_9___858acbbff", "10444": "15___CATEGORICAL___nom_9___858fce1e7", "10445": "15___CATEGORICAL___nom_9___85951c012", "10446": "15___CATEGORICAL___nom_9___85969442b", "10447": "15___CATEGORICAL___nom_9___85a1a7c18", "10448": "15___CATEGORICAL___nom_9___85ad2082a", "10449": "15___CATEGORICAL___nom_9___85b164bf0", "10450": "15___CATEGORICAL___nom_9___85b25ad01", "10451": "15___CATEGORICAL___nom_9___85b715e9e", "10452": "15___CATEGORICAL___nom_9___85bdab35e", "10453": "15___CATEGORICAL___nom_9___85c3cb3d2", "10454": "15___CATEGORICAL___nom_9___85c6a6998", "10455": "15___CATEGORICAL___nom_9___85c8bc4f7", "10456": "15___CATEGORICAL___nom_9___85cabe4c1", "10457": "15___CATEGORICAL___nom_9___85d4956c8", "10458": "15___CATEGORICAL___nom_9___85d5719ec", "10459": "15___CATEGORICAL___nom_9___85dd824b4", "10460": "15___CATEGORICAL___nom_9___85e951af4", "10461": "15___CATEGORICAL___nom_9___85ed5317a", "10462": "15___CATEGORICAL___nom_9___85f40f057", "10463": "15___CATEGORICAL___nom_9___85fe502f8", "10464": "15___CATEGORICAL___nom_9___8604a3579", "10465": "15___CATEGORICAL___nom_9___8605b9c1b", "10466": "15___CATEGORICAL___nom_9___86117cb15", "10467": "15___CATEGORICAL___nom_9___861982486", "10468": "15___CATEGORICAL___nom_9___86231ca5b", "10469": "15___CATEGORICAL___nom_9___86295d489", "10470": "15___CATEGORICAL___nom_9___8641641fa", "10471": "15___CATEGORICAL___nom_9___8641c23f9", "10472": "15___CATEGORICAL___nom_9___8646d1645", "10473": "15___CATEGORICAL___nom_9___864b48920", "10474": "15___CATEGORICAL___nom_9___864e81287", "10475": "15___CATEGORICAL___nom_9___864f390ec", "10476": "15___CATEGORICAL___nom_9___8651800fa", "10477": "15___CATEGORICAL___nom_9___86633edbb", "10478": "15___CATEGORICAL___nom_9___866b1cf8d", "10479": "15___CATEGORICAL___nom_9___8670c7ee0", "10480": "15___CATEGORICAL___nom_9___867303e4a", "10481": "15___CATEGORICAL___nom_9___8676b5ae0", "10482": "15___CATEGORICAL___nom_9___867d631e7", "10483": "15___CATEGORICAL___nom_9___868d1d088", "10484": "15___CATEGORICAL___nom_9___86908ac8b", "10485": "15___CATEGORICAL___nom_9___8690f9588", "10486": "15___CATEGORICAL___nom_9___8691e6429", "10487": "15___CATEGORICAL___nom_9___8692bfaca", "10488": "15___CATEGORICAL___nom_9___8692d5792", "10489": "15___CATEGORICAL___nom_9___86938cf5d", "10490": "15___CATEGORICAL___nom_9___869700459", "10491": "15___CATEGORICAL___nom_9___869cd3a4b", "10492": "15___CATEGORICAL___nom_9___86a237c09", "10493": "15___CATEGORICAL___nom_9___86a37fe58", "10494": "15___CATEGORICAL___nom_9___86acae20c", "10495": "15___CATEGORICAL___nom_9___86ad7d574", "10496": "15___CATEGORICAL___nom_9___86b5cf7b1", "10497": "15___CATEGORICAL___nom_9___86b94a196", "10498": "15___CATEGORICAL___nom_9___86c140ea6", "10499": "15___CATEGORICAL___nom_9___86c3f4f17", "10500": "15___CATEGORICAL___nom_9___86c547c52", "10501": "15___CATEGORICAL___nom_9___86caec48e", "10502": "15___CATEGORICAL___nom_9___86cec98ec", "10503": "15___CATEGORICAL___nom_9___86d4e8a7d", "10504": "15___CATEGORICAL___nom_9___86d6703b3", "10505": "15___CATEGORICAL___nom_9___86da91342", "10506": "15___CATEGORICAL___nom_9___86dc8556c", "10507": "15___CATEGORICAL___nom_9___86dc93951", "10508": "15___CATEGORICAL___nom_9___86e71abe7", "10509": "15___CATEGORICAL___nom_9___86f1560f0", "10510": "15___CATEGORICAL___nom_9___86f55762c", "10511": "15___CATEGORICAL___nom_9___86fca0316", "10512": "15___CATEGORICAL___nom_9___870618113", "10513": "15___CATEGORICAL___nom_9___8709cdce6", "10514": "15___CATEGORICAL___nom_9___870b29dff", "10515": "15___CATEGORICAL___nom_9___870fb462f", "10516": "15___CATEGORICAL___nom_9___871644d15", "10517": "15___CATEGORICAL___nom_9___8718583fa", "10518": "15___CATEGORICAL___nom_9___871a664ad", "10519": "15___CATEGORICAL___nom_9___871b3652a", "10520": "15___CATEGORICAL___nom_9___871ef141c", "10521": "15___CATEGORICAL___nom_9___87267d020", "10522": "15___CATEGORICAL___nom_9___872f00205", "10523": "15___CATEGORICAL___nom_9___87307972a", "10524": "15___CATEGORICAL___nom_9___873764191", "10525": "15___CATEGORICAL___nom_9___873fa7363", "10526": "15___CATEGORICAL___nom_9___8747f058a", "10527": "15___CATEGORICAL___nom_9___874e10fc5", "10528": "15___CATEGORICAL___nom_9___874e91589", "10529": "15___CATEGORICAL___nom_9___8751241b2", "10530": "15___CATEGORICAL___nom_9___875228954", "10531": "15___CATEGORICAL___nom_9___875514342", "10532": "15___CATEGORICAL___nom_9___875a563ef", "10533": "15___CATEGORICAL___nom_9___875ee3904", "10534": "15___CATEGORICAL___nom_9___8760e4122", "10535": "15___CATEGORICAL___nom_9___8768ae3c9", "10536": "15___CATEGORICAL___nom_9___876de1ca0", "10537": "15___CATEGORICAL___nom_9___87865458c", "10538": "15___CATEGORICAL___nom_9___878ac790d", "10539": "15___CATEGORICAL___nom_9___879317507", "10540": "15___CATEGORICAL___nom_9___8795e7424", "10541": "15___CATEGORICAL___nom_9___8795f0959", "10542": "15___CATEGORICAL___nom_9___87997bc44", "10543": "15___CATEGORICAL___nom_9___879cbc354", "10544": "15___CATEGORICAL___nom_9___87a12babf", "10545": "15___CATEGORICAL___nom_9___87a4fd8ca", "10546": "15___CATEGORICAL___nom_9___87adc9b1f", "10547": "15___CATEGORICAL___nom_9___87b0f4cd4", "10548": "15___CATEGORICAL___nom_9___87b490e55", "10549": "15___CATEGORICAL___nom_9___87b8e6b65", "10550": "15___CATEGORICAL___nom_9___87b995b59", "10551": "15___CATEGORICAL___nom_9___87ba8176b", "10552": "15___CATEGORICAL___nom_9___87bb8be12", "10553": "15___CATEGORICAL___nom_9___87bbba1d2", "10554": "15___CATEGORICAL___nom_9___87bf3a556", "10555": "15___CATEGORICAL___nom_9___87c3ba470", "10556": "15___CATEGORICAL___nom_9___87c8f5388", "10557": "15___CATEGORICAL___nom_9___87cd1e2b7", "10558": "15___CATEGORICAL___nom_9___87cd2a906", "10559": "15___CATEGORICAL___nom_9___87d61ce51", "10560": "15___CATEGORICAL___nom_9___87db5e205", "10561": "15___CATEGORICAL___nom_9___87e124365", "10562": "15___CATEGORICAL___nom_9___87e195b3a", "10563": "15___CATEGORICAL___nom_9___87e266681", "10564": "15___CATEGORICAL___nom_9___87e427854", "10565": "15___CATEGORICAL___nom_9___87e7a76f0", "10566": "15___CATEGORICAL___nom_9___87efc01bc", "10567": "15___CATEGORICAL___nom_9___88039379e", "10568": "15___CATEGORICAL___nom_9___88061a42d", "10569": "15___CATEGORICAL___nom_9___8806a6e69", "10570": "15___CATEGORICAL___nom_9___8807a42ab", "10571": "15___CATEGORICAL___nom_9___880d4d69c", "10572": "15___CATEGORICAL___nom_9___880dfe705", "10573": "15___CATEGORICAL___nom_9___88160acee", "10574": "15___CATEGORICAL___nom_9___881a71ac1", "10575": "15___CATEGORICAL___nom_9___882252fcf", "10576": "15___CATEGORICAL___nom_9___88276f514", "10577": "15___CATEGORICAL___nom_9___8827c5f98", "10578": "15___CATEGORICAL___nom_9___882926e91", "10579": "15___CATEGORICAL___nom_9___8833eb01d", "10580": "15___CATEGORICAL___nom_9___883888016", "10581": "15___CATEGORICAL___nom_9___88497d048", "10582": "15___CATEGORICAL___nom_9___884ead549", "10583": "15___CATEGORICAL___nom_9___884edfe4e", "10584": "15___CATEGORICAL___nom_9___8857e6e34", "10585": "15___CATEGORICAL___nom_9___886be40df", "10586": "15___CATEGORICAL___nom_9___888039373", "10587": "15___CATEGORICAL___nom_9___8881e7933", "10588": "15___CATEGORICAL___nom_9___888f56625", "10589": "15___CATEGORICAL___nom_9___889548a8a", "10590": "15___CATEGORICAL___nom_9___8896eda47", "10591": "15___CATEGORICAL___nom_9___8898fd72f", "10592": "15___CATEGORICAL___nom_9___889cb5dd0", "10593": "15___CATEGORICAL___nom_9___889f717ef", "10594": "15___CATEGORICAL___nom_9___88a3cb592", "10595": "15___CATEGORICAL___nom_9___88b685664", "10596": "15___CATEGORICAL___nom_9___88b7a948d", "10597": "15___CATEGORICAL___nom_9___88baf3d59", "10598": "15___CATEGORICAL___nom_9___88c62c2a2", "10599": "15___CATEGORICAL___nom_9___88c64ca92", "10600": "15___CATEGORICAL___nom_9___88c72f886", "10601": "15___CATEGORICAL___nom_9___88c7dd945", "10602": "15___CATEGORICAL___nom_9___88c8cef25", "10603": "15___CATEGORICAL___nom_9___88d1272e8", "10604": "15___CATEGORICAL___nom_9___88d29ebd1", "10605": "15___CATEGORICAL___nom_9___88deac2ba", "10606": "15___CATEGORICAL___nom_9___88df47aad", "10607": "15___CATEGORICAL___nom_9___88e0b1119", "10608": "15___CATEGORICAL___nom_9___88e86e728", "10609": "15___CATEGORICAL___nom_9___88f0dc505", "10610": "15___CATEGORICAL___nom_9___88f6aaaf2", "10611": "15___CATEGORICAL___nom_9___88fd58502", "10612": "15___CATEGORICAL___nom_9___88ff22230", "10613": "15___CATEGORICAL___nom_9___890359722", "10614": "15___CATEGORICAL___nom_9___8904df3e9", "10615": "15___CATEGORICAL___nom_9___891300ab8", "10616": "15___CATEGORICAL___nom_9___891428694", "10617": "15___CATEGORICAL___nom_9___89147ab3c", "10618": "15___CATEGORICAL___nom_9___89161d0d5", "10619": "15___CATEGORICAL___nom_9___89190ef1c", "10620": "15___CATEGORICAL___nom_9___891914499", "10621": "15___CATEGORICAL___nom_9___8923a846a", "10622": "15___CATEGORICAL___nom_9___8928fe2d2", "10623": "15___CATEGORICAL___nom_9___8931f3216", "10624": "15___CATEGORICAL___nom_9___893de2f26", "10625": "15___CATEGORICAL___nom_9___89451cdbf", "10626": "15___CATEGORICAL___nom_9___8945d173a", "10627": "15___CATEGORICAL___nom_9___8947eec63", "10628": "15___CATEGORICAL___nom_9___894c554f9", "10629": "15___CATEGORICAL___nom_9___894d04063", "10630": "15___CATEGORICAL___nom_9___89539e0fa", "10631": "15___CATEGORICAL___nom_9___895424f14", "10632": "15___CATEGORICAL___nom_9___89586c738", "10633": "15___CATEGORICAL___nom_9___8959c37e7", "10634": "15___CATEGORICAL___nom_9___8962f37d0", "10635": "15___CATEGORICAL___nom_9___89634cec0", "10636": "15___CATEGORICAL___nom_9___896ec0249", "10637": "15___CATEGORICAL___nom_9___89780d4b2", "10638": "15___CATEGORICAL___nom_9___897a4620f", "10639": "15___CATEGORICAL___nom_9___8988250d8", "10640": "15___CATEGORICAL___nom_9___89940f86e", "10641": "15___CATEGORICAL___nom_9___8996629e2", "10642": "15___CATEGORICAL___nom_9___899c902df", "10643": "15___CATEGORICAL___nom_9___89abb7fd2", "10644": "15___CATEGORICAL___nom_9___89b1c68c7", "10645": "15___CATEGORICAL___nom_9___89ba668ea", "10646": "15___CATEGORICAL___nom_9___89d373755", "10647": "15___CATEGORICAL___nom_9___89d7dc1cf", "10648": "15___CATEGORICAL___nom_9___89ddc35f9", "10649": "15___CATEGORICAL___nom_9___89e3e6806", "10650": "15___CATEGORICAL___nom_9___89ec477b5", "10651": "15___CATEGORICAL___nom_9___89ee8dd54", "10652": "15___CATEGORICAL___nom_9___89f8bc6ed", "10653": "15___CATEGORICAL___nom_9___89f9f0690", "10654": "15___CATEGORICAL___nom_9___89faf3a8b", "10655": "15___CATEGORICAL___nom_9___89fc7eb79", "10656": "15___CATEGORICAL___nom_9___8a014ddd8", "10657": "15___CATEGORICAL___nom_9___8a02cec15", "10658": "15___CATEGORICAL___nom_9___8a04ce841", "10659": "15___CATEGORICAL___nom_9___8a08a8782", "10660": "15___CATEGORICAL___nom_9___8a12b7128", "10661": "15___CATEGORICAL___nom_9___8a2514e7c", "10662": "15___CATEGORICAL___nom_9___8a26e1fa9", "10663": "15___CATEGORICAL___nom_9___8a298f187", "10664": "15___CATEGORICAL___nom_9___8a34e794f", "10665": "15___CATEGORICAL___nom_9___8a3592b8c", "10666": "15___CATEGORICAL___nom_9___8a3865fe2", "10667": "15___CATEGORICAL___nom_9___8a3895386", "10668": "15___CATEGORICAL___nom_9___8a461c3c4", "10669": "15___CATEGORICAL___nom_9___8a4d3f47c", "10670": "15___CATEGORICAL___nom_9___8a4f82378", "10671": "15___CATEGORICAL___nom_9___8a5291194", "10672": "15___CATEGORICAL___nom_9___8a52f0d1a", "10673": "15___CATEGORICAL___nom_9___8a537ebd5", "10674": "15___CATEGORICAL___nom_9___8a5c8505e", "10675": "15___CATEGORICAL___nom_9___8a5d45e8b", "10676": "15___CATEGORICAL___nom_9___8a5ee7c52", "10677": "15___CATEGORICAL___nom_9___8a5fb75ef", "10678": "15___CATEGORICAL___nom_9___8a6167845", "10679": "15___CATEGORICAL___nom_9___8a6a1c597", "10680": "15___CATEGORICAL___nom_9___8a730c339", "10681": "15___CATEGORICAL___nom_9___8a797bbe5", "10682": "15___CATEGORICAL___nom_9___8a7caa2f8", "10683": "15___CATEGORICAL___nom_9___8a7ea2a6a", "10684": "15___CATEGORICAL___nom_9___8a9004b75", "10685": "15___CATEGORICAL___nom_9___8a906c3c8", "10686": "15___CATEGORICAL___nom_9___8a919d8d5", "10687": "15___CATEGORICAL___nom_9___8a9e5313c", "10688": "15___CATEGORICAL___nom_9___8a9f1421f", "10689": "15___CATEGORICAL___nom_9___8aa18a963", "10690": "15___CATEGORICAL___nom_9___8aa1988ee", "10691": "15___CATEGORICAL___nom_9___8aa6e6863", "10692": "15___CATEGORICAL___nom_9___8aa7f0eee", "10693": "15___CATEGORICAL___nom_9___8aa88ca0d", "10694": "15___CATEGORICAL___nom_9___8ab8ae735", "10695": "15___CATEGORICAL___nom_9___8abf0c424", "10696": "15___CATEGORICAL___nom_9___8ad37d779", "10697": "15___CATEGORICAL___nom_9___8ad3e6d38", "10698": "15___CATEGORICAL___nom_9___8ad51bd72", "10699": "15___CATEGORICAL___nom_9___8ada0d6ff", "10700": "15___CATEGORICAL___nom_9___8ae0091cd", "10701": "15___CATEGORICAL___nom_9___8ae9d30e8", "10702": "15___CATEGORICAL___nom_9___8aeadc0f4", "10703": "15___CATEGORICAL___nom_9___8af0ca2b0", "10704": "15___CATEGORICAL___nom_9___8af7a8859", "10705": "15___CATEGORICAL___nom_9___8affb9ea6", "10706": "15___CATEGORICAL___nom_9___8b0132577", "10707": "15___CATEGORICAL___nom_9___8b01501e2", "10708": "15___CATEGORICAL___nom_9___8b08ec6f5", "10709": "15___CATEGORICAL___nom_9___8b0d8ccba", "10710": "15___CATEGORICAL___nom_9___8b18fca1a", "10711": "15___CATEGORICAL___nom_9___8b1de9904", "10712": "15___CATEGORICAL___nom_9___8b1f75d90", "10713": "15___CATEGORICAL___nom_9___8b24bad88", "10714": "15___CATEGORICAL___nom_9___8b3192051", "10715": "15___CATEGORICAL___nom_9___8b32e7e19", "10716": "15___CATEGORICAL___nom_9___8b3414899", "10717": "15___CATEGORICAL___nom_9___8b426325a", "10718": "15___CATEGORICAL___nom_9___8b4b851e4", "10719": "15___CATEGORICAL___nom_9___8b4bd75d6", "10720": "15___CATEGORICAL___nom_9___8b569eb86", "10721": "15___CATEGORICAL___nom_9___8b5f2adce", "10722": "15___CATEGORICAL___nom_9___8b604dd30", "10723": "15___CATEGORICAL___nom_9___8b6eed279", "10724": "15___CATEGORICAL___nom_9___8b81af6e4", "10725": "15___CATEGORICAL___nom_9___8b8360b8b", "10726": "15___CATEGORICAL___nom_9___8b8439f73", "10727": "15___CATEGORICAL___nom_9___8b847c89d", "10728": "15___CATEGORICAL___nom_9___8b86d2e29", "10729": "15___CATEGORICAL___nom_9___8b9fa4bc1", "10730": "15___CATEGORICAL___nom_9___8ba17a3e9", "10731": "15___CATEGORICAL___nom_9___8ba5377df", "10732": "15___CATEGORICAL___nom_9___8baad2054", "10733": "15___CATEGORICAL___nom_9___8badbfe3c", "10734": "15___CATEGORICAL___nom_9___8bb08e70d", "10735": "15___CATEGORICAL___nom_9___8bb870cea", "10736": "15___CATEGORICAL___nom_9___8bb9258e1", "10737": "15___CATEGORICAL___nom_9___8bbb2568a", "10738": "15___CATEGORICAL___nom_9___8bbe8b31f", "10739": "15___CATEGORICAL___nom_9___8bc57c083", "10740": "15___CATEGORICAL___nom_9___8bcfa0c30", "10741": "15___CATEGORICAL___nom_9___8bd697054", "10742": "15___CATEGORICAL___nom_9___8bd8ba896", "10743": "15___CATEGORICAL___nom_9___8bd9ca204", "10744": "15___CATEGORICAL___nom_9___8bdc13572", "10745": "15___CATEGORICAL___nom_9___8be64c238", "10746": "15___CATEGORICAL___nom_9___8beef317e", "10747": "15___CATEGORICAL___nom_9___8bf3a5f3c", "10748": "15___CATEGORICAL___nom_9___8bf9c9578", "10749": "15___CATEGORICAL___nom_9___8bfb9d814", "10750": "15___CATEGORICAL___nom_9___8bff08eff", "10751": "15___CATEGORICAL___nom_9___8bffd0765", "10752": "15___CATEGORICAL___nom_9___8c0cda4c2", "10753": "15___CATEGORICAL___nom_9___8c1983479", "10754": "15___CATEGORICAL___nom_9___8c285b4e3", "10755": "15___CATEGORICAL___nom_9___8c2d294f6", "10756": "15___CATEGORICAL___nom_9___8c36a8679", "10757": "15___CATEGORICAL___nom_9___8c3d9a2b1", "10758": "15___CATEGORICAL___nom_9___8c4274997", "10759": "15___CATEGORICAL___nom_9___8c4842749", "10760": "15___CATEGORICAL___nom_9___8c49d55ef", "10761": "15___CATEGORICAL___nom_9___8c51842bc", "10762": "15___CATEGORICAL___nom_9___8c589c4c9", "10763": "15___CATEGORICAL___nom_9___8c5c3d440", "10764": "15___CATEGORICAL___nom_9___8c6182ca8", "10765": "15___CATEGORICAL___nom_9___8c6754ef7", "10766": "15___CATEGORICAL___nom_9___8c6ed61cc", "10767": "15___CATEGORICAL___nom_9___8c6f8fcad", "10768": "15___CATEGORICAL___nom_9___8c705be80", "10769": "15___CATEGORICAL___nom_9___8c787aa6a", "10770": "15___CATEGORICAL___nom_9___8c7fbef7e", "10771": "15___CATEGORICAL___nom_9___8c88cc4b7", "10772": "15___CATEGORICAL___nom_9___8c89a298a", "10773": "15___CATEGORICAL___nom_9___8c8a56f3d", "10774": "15___CATEGORICAL___nom_9___8c8f1d2de", "10775": "15___CATEGORICAL___nom_9___8c95a4d1a", "10776": "15___CATEGORICAL___nom_9___8c9830001", "10777": "15___CATEGORICAL___nom_9___8c9c0e0e0", "10778": "15___CATEGORICAL___nom_9___8c9eaf173", "10779": "15___CATEGORICAL___nom_9___8ca261e9d", "10780": "15___CATEGORICAL___nom_9___8ca356ba9", "10781": "15___CATEGORICAL___nom_9___8caadfb04", "10782": "15___CATEGORICAL___nom_9___8cb359c68", "10783": "15___CATEGORICAL___nom_9___8cbb90651", "10784": "15___CATEGORICAL___nom_9___8cbf2e118", "10785": "15___CATEGORICAL___nom_9___8ccc063f3", "10786": "15___CATEGORICAL___nom_9___8ccd2082c", "10787": "15___CATEGORICAL___nom_9___8cd4f6443", "10788": "15___CATEGORICAL___nom_9___8cd53d1fc", "10789": "15___CATEGORICAL___nom_9___8cd6886ad", "10790": "15___CATEGORICAL___nom_9___8ce217c23", "10791": "15___CATEGORICAL___nom_9___8cf50ebf3", "10792": "15___CATEGORICAL___nom_9___8cf9880fb", "10793": "15___CATEGORICAL___nom_9___8d0346548", "10794": "15___CATEGORICAL___nom_9___8d04f799b", "10795": "15___CATEGORICAL___nom_9___8d0df6d52", "10796": "15___CATEGORICAL___nom_9___8d16003c8", "10797": "15___CATEGORICAL___nom_9___8d1eb8eb0", "10798": "15___CATEGORICAL___nom_9___8d33baa76", "10799": "15___CATEGORICAL___nom_9___8d4012800", "10800": "15___CATEGORICAL___nom_9___8d4388150", "10801": "15___CATEGORICAL___nom_9___8d44269fb", "10802": "15___CATEGORICAL___nom_9___8d53ab722", "10803": "15___CATEGORICAL___nom_9___8d56316db", "10804": "15___CATEGORICAL___nom_9___8d5a2a07f", "10805": "15___CATEGORICAL___nom_9___8d622e6f2", "10806": "15___CATEGORICAL___nom_9___8d67eba6e", "10807": "15___CATEGORICAL___nom_9___8d6aba4ea", "10808": "15___CATEGORICAL___nom_9___8d6df457e", "10809": "15___CATEGORICAL___nom_9___8d6e0221e", "10810": "15___CATEGORICAL___nom_9___8d72ba741", "10811": "15___CATEGORICAL___nom_9___8d8362d80", "10812": "15___CATEGORICAL___nom_9___8d9e5af93", "10813": "15___CATEGORICAL___nom_9___8d9f56f7e", "10814": "15___CATEGORICAL___nom_9___8da719fdd", "10815": "15___CATEGORICAL___nom_9___8dac3c02c", "10816": "15___CATEGORICAL___nom_9___8db4eb4e8", "10817": "15___CATEGORICAL___nom_9___8dbfd67fe", "10818": "15___CATEGORICAL___nom_9___8dd0e2c24", "10819": "15___CATEGORICAL___nom_9___8dd7b712c", "10820": "15___CATEGORICAL___nom_9___8de664768", "10821": "15___CATEGORICAL___nom_9___8de7868ab", "10822": "15___CATEGORICAL___nom_9___8de839c68", "10823": "15___CATEGORICAL___nom_9___8def79305", "10824": "15___CATEGORICAL___nom_9___8defee9b8", "10825": "15___CATEGORICAL___nom_9___8df02cfc0", "10826": "15___CATEGORICAL___nom_9___8df0bdc33", "10827": "15___CATEGORICAL___nom_9___8df585f10", "10828": "15___CATEGORICAL___nom_9___8dfacc710", "10829": "15___CATEGORICAL___nom_9___8dfb56d84", "10830": "15___CATEGORICAL___nom_9___8dfcb0535", "10831": "15___CATEGORICAL___nom_9___8dfcdd041", "10832": "15___CATEGORICAL___nom_9___8e00c9e95", "10833": "15___CATEGORICAL___nom_9___8e0450be1", "10834": "15___CATEGORICAL___nom_9___8e0e13570", "10835": "15___CATEGORICAL___nom_9___8e184392b", "10836": "15___CATEGORICAL___nom_9___8e1b6c299", "10837": "15___CATEGORICAL___nom_9___8e2323050", "10838": "15___CATEGORICAL___nom_9___8e26e2005", "10839": "15___CATEGORICAL___nom_9___8e388eb38", "10840": "15___CATEGORICAL___nom_9___8e38db818", "10841": "15___CATEGORICAL___nom_9___8e39db185", "10842": "15___CATEGORICAL___nom_9___8e3a5967c", "10843": "15___CATEGORICAL___nom_9___8e3a664d3", "10844": "15___CATEGORICAL___nom_9___8e40862cb", "10845": "15___CATEGORICAL___nom_9___8e424e006", "10846": "15___CATEGORICAL___nom_9___8e438c810", "10847": "15___CATEGORICAL___nom_9___8e495b33c", "10848": "15___CATEGORICAL___nom_9___8e4cf2973", "10849": "15___CATEGORICAL___nom_9___8e4d72e12", "10850": "15___CATEGORICAL___nom_9___8e4daa3a2", "10851": "15___CATEGORICAL___nom_9___8e56e4ca9", "10852": "15___CATEGORICAL___nom_9___8e5f1b05f", "10853": "15___CATEGORICAL___nom_9___8e636318e", "10854": "15___CATEGORICAL___nom_9___8e6834928", "10855": "15___CATEGORICAL___nom_9___8e6fa420d", "10856": "15___CATEGORICAL___nom_9___8e7982640", "10857": "15___CATEGORICAL___nom_9___8e8c28577", "10858": "15___CATEGORICAL___nom_9___8e8d5bf64", "10859": "15___CATEGORICAL___nom_9___8e8e12f12", "10860": "15___CATEGORICAL___nom_9___8e8e1a096", "10861": "15___CATEGORICAL___nom_9___8e90ec087", "10862": "15___CATEGORICAL___nom_9___8e92b9215", "10863": "15___CATEGORICAL___nom_9___8e9502d31", "10864": "15___CATEGORICAL___nom_9___8e9851a87", "10865": "15___CATEGORICAL___nom_9___8e988571a", "10866": "15___CATEGORICAL___nom_9___8e9c6dd63", "10867": "15___CATEGORICAL___nom_9___8e9d7e6cb", "10868": "15___CATEGORICAL___nom_9___8ea54d5da", "10869": "15___CATEGORICAL___nom_9___8ea6d108f", "10870": "15___CATEGORICAL___nom_9___8ea963a58", "10871": "15___CATEGORICAL___nom_9___8eb1c6300", "10872": "15___CATEGORICAL___nom_9___8eb38f3ab", "10873": "15___CATEGORICAL___nom_9___8eb46af7e", "10874": "15___CATEGORICAL___nom_9___8eb662b8a", "10875": "15___CATEGORICAL___nom_9___8ebd1bb7c", "10876": "15___CATEGORICAL___nom_9___8ec21efcd", "10877": "15___CATEGORICAL___nom_9___8ec60e4ea", "10878": "15___CATEGORICAL___nom_9___8ec616354", "10879": "15___CATEGORICAL___nom_9___8ecb710e6", "10880": "15___CATEGORICAL___nom_9___8edae7a32", "10881": "15___CATEGORICAL___nom_9___8eddfc68a", "10882": "15___CATEGORICAL___nom_9___8ee3dd0b7", "10883": "15___CATEGORICAL___nom_9___8ee8c873b", "10884": "15___CATEGORICAL___nom_9___8eeafbc72", "10885": "15___CATEGORICAL___nom_9___8eeec81ee", "10886": "15___CATEGORICAL___nom_9___8ef8f106c", "10887": "15___CATEGORICAL___nom_9___8efb9c42c", "10888": "15___CATEGORICAL___nom_9___8efd46297", "10889": "15___CATEGORICAL___nom_9___8f0a27342", "10890": "15___CATEGORICAL___nom_9___8f130cb68", "10891": "15___CATEGORICAL___nom_9___8f17e29ef", "10892": "15___CATEGORICAL___nom_9___8f1ed3417", "10893": "15___CATEGORICAL___nom_9___8f200efd0", "10894": "15___CATEGORICAL___nom_9___8f23e3c55", "10895": "15___CATEGORICAL___nom_9___8f23f28ff", "10896": "15___CATEGORICAL___nom_9___8f2c65ff6", "10897": "15___CATEGORICAL___nom_9___8f2dacc0e", "10898": "15___CATEGORICAL___nom_9___8f30872cc", "10899": "15___CATEGORICAL___nom_9___8f3ad63fe", "10900": "15___CATEGORICAL___nom_9___8f4f9dfb9", "10901": "15___CATEGORICAL___nom_9___8f5118331", "10902": "15___CATEGORICAL___nom_9___8f51ecfce", "10903": "15___CATEGORICAL___nom_9___8f54c4571", "10904": "15___CATEGORICAL___nom_9___8f578f412", "10905": "15___CATEGORICAL___nom_9___8f5ad16f1", "10906": "15___CATEGORICAL___nom_9___8f6a85c16", "10907": "15___CATEGORICAL___nom_9___8f6c70e58", "10908": "15___CATEGORICAL___nom_9___8f6d4a583", "10909": "15___CATEGORICAL___nom_9___8f740cdde", "10910": "15___CATEGORICAL___nom_9___8f74ce33c", "10911": "15___CATEGORICAL___nom_9___8f7779e65", "10912": "15___CATEGORICAL___nom_9___8f8203f34", "10913": "15___CATEGORICAL___nom_9___8f8c0cece", "10914": "15___CATEGORICAL___nom_9___8f91de5f4", "10915": "15___CATEGORICAL___nom_9___8f9214511", "10916": "15___CATEGORICAL___nom_9___8f98d859b", "10917": "15___CATEGORICAL___nom_9___8fa439fb1", "10918": "15___CATEGORICAL___nom_9___8faf07c59", "10919": "15___CATEGORICAL___nom_9___8fb1272d3", "10920": "15___CATEGORICAL___nom_9___8fb13d313", "10921": "15___CATEGORICAL___nom_9___8fb3a3272", "10922": "15___CATEGORICAL___nom_9___8fb56befb", "10923": "15___CATEGORICAL___nom_9___8fbeb1e89", "10924": "15___CATEGORICAL___nom_9___8fc11271a", "10925": "15___CATEGORICAL___nom_9___8fc295fff", "10926": "15___CATEGORICAL___nom_9___8fc5627fe", "10927": "15___CATEGORICAL___nom_9___8fce6c13e", "10928": "15___CATEGORICAL___nom_9___8fcf80d5e", "10929": "15___CATEGORICAL___nom_9___8fd04de19", "10930": "15___CATEGORICAL___nom_9___8fde242d6", "10931": "15___CATEGORICAL___nom_9___8fdecd7a7", "10932": "15___CATEGORICAL___nom_9___8fe76101f", "10933": "15___CATEGORICAL___nom_9___8fef6fdff", "10934": "15___CATEGORICAL___nom_9___8ff5eec43", "10935": "15___CATEGORICAL___nom_9___9003823a6", "10936": "15___CATEGORICAL___nom_9___900852b2f", "10937": "15___CATEGORICAL___nom_9___900e6dcf8", "10938": "15___CATEGORICAL___nom_9___901814654", "10939": "15___CATEGORICAL___nom_9___90185192e", "10940": "15___CATEGORICAL___nom_9___901c8ac5a", "10941": "15___CATEGORICAL___nom_9___901cfcc6c", "10942": "15___CATEGORICAL___nom_9___902f240da", "10943": "15___CATEGORICAL___nom_9___904a34482", "10944": "15___CATEGORICAL___nom_9___906894421", "10945": "15___CATEGORICAL___nom_9___90704bef1", "10946": "15___CATEGORICAL___nom_9___90757a6bb", "10947": "15___CATEGORICAL___nom_9___9076ad4f6", "10948": "15___CATEGORICAL___nom_9___90773a484", "10949": "15___CATEGORICAL___nom_9___907cbda35", "10950": "15___CATEGORICAL___nom_9___907dd70ab", "10951": "15___CATEGORICAL___nom_9___90a20bd90", "10952": "15___CATEGORICAL___nom_9___90a38fe31", "10953": "15___CATEGORICAL___nom_9___90a5357f6", "10954": "15___CATEGORICAL___nom_9___90a6ab0e1", "10955": "15___CATEGORICAL___nom_9___90b581b8e", "10956": "15___CATEGORICAL___nom_9___90bb0a412", "10957": "15___CATEGORICAL___nom_9___90c4b0b1b", "10958": "15___CATEGORICAL___nom_9___90ccc3c70", "10959": "15___CATEGORICAL___nom_9___90d18984d", "10960": "15___CATEGORICAL___nom_9___90dc973cf", "10961": "15___CATEGORICAL___nom_9___90de4b8f8", "10962": "15___CATEGORICAL___nom_9___90e14909d", "10963": "15___CATEGORICAL___nom_9___90ee870cd", "10964": "15___CATEGORICAL___nom_9___90f214c13", "10965": "15___CATEGORICAL___nom_9___910273bb8", "10966": "15___CATEGORICAL___nom_9___9108ba5f6", "10967": "15___CATEGORICAL___nom_9___910eaf69d", "10968": "15___CATEGORICAL___nom_9___910ef732b", "10969": "15___CATEGORICAL___nom_9___91181012b", "10970": "15___CATEGORICAL___nom_9___911bd0a6a", "10971": "15___CATEGORICAL___nom_9___9127e6eab", "10972": "15___CATEGORICAL___nom_9___912eb6e42", "10973": "15___CATEGORICAL___nom_9___913ad498c", "10974": "15___CATEGORICAL___nom_9___91433f446", "10975": "15___CATEGORICAL___nom_9___9147110b3", "10976": "15___CATEGORICAL___nom_9___915c41861", "10977": "15___CATEGORICAL___nom_9___915ca1168", "10978": "15___CATEGORICAL___nom_9___915cde402", "10979": "15___CATEGORICAL___nom_9___91730a8c9", "10980": "15___CATEGORICAL___nom_9___9185016cf", "10981": "15___CATEGORICAL___nom_9___918cd70e2", "10982": "15___CATEGORICAL___nom_9___91948a12e", "10983": "15___CATEGORICAL___nom_9___9196d7a2c", "10984": "15___CATEGORICAL___nom_9___919a42a41", "10985": "15___CATEGORICAL___nom_9___91a37fbc3", "10986": "15___CATEGORICAL___nom_9___91a7b5612", "10987": "15___CATEGORICAL___nom_9___91abed250", "10988": "15___CATEGORICAL___nom_9___91add780f", "10989": "15___CATEGORICAL___nom_9___91b22eb19", "10990": "15___CATEGORICAL___nom_9___91b9f66ba", "10991": "15___CATEGORICAL___nom_9___91bdaf715", "10992": "15___CATEGORICAL___nom_9___91c3492c6", "10993": "15___CATEGORICAL___nom_9___91cbfbfdb", "10994": "15___CATEGORICAL___nom_9___91d1db0bc", "10995": "15___CATEGORICAL___nom_9___91d52f5b4", "10996": "15___CATEGORICAL___nom_9___91dab1511", "10997": "15___CATEGORICAL___nom_9___91de75d4d", "10998": "15___CATEGORICAL___nom_9___91e0d26d0", "10999": "15___CATEGORICAL___nom_9___91ec7c844", "11000": "15___CATEGORICAL___nom_9___91edc79d9", "11001": "15___CATEGORICAL___nom_9___91fe5c544", "11002": "15___CATEGORICAL___nom_9___9202a6f9b", "11003": "15___CATEGORICAL___nom_9___920c3f46e", "11004": "15___CATEGORICAL___nom_9___920cb6ee3", "11005": "15___CATEGORICAL___nom_9___920f172f9", "11006": "15___CATEGORICAL___nom_9___921639f4a", "11007": "15___CATEGORICAL___nom_9___922216bbe", "11008": "15___CATEGORICAL___nom_9___922553a18", "11009": "15___CATEGORICAL___nom_9___9227ba71c", "11010": "15___CATEGORICAL___nom_9___9228c87b4", "11011": "15___CATEGORICAL___nom_9___92310933e", "11012": "15___CATEGORICAL___nom_9___9231235d5", "11013": "15___CATEGORICAL___nom_9___923ad3958", "11014": "15___CATEGORICAL___nom_9___923b11246", "11015": "15___CATEGORICAL___nom_9___923e83c0b", "11016": "15___CATEGORICAL___nom_9___9249f1e2d", "11017": "15___CATEGORICAL___nom_9___924c9c9f4", "11018": "15___CATEGORICAL___nom_9___9251d6933", "11019": "15___CATEGORICAL___nom_9___925745580", "11020": "15___CATEGORICAL___nom_9___926688376", "11021": "15___CATEGORICAL___nom_9___9267c58a1", "11022": "15___CATEGORICAL___nom_9___926c36895", "11023": "15___CATEGORICAL___nom_9___92891527d", "11024": "15___CATEGORICAL___nom_9___928fd094c", "11025": "15___CATEGORICAL___nom_9___9295e4e66", "11026": "15___CATEGORICAL___nom_9___92a0bba4c", "11027": "15___CATEGORICAL___nom_9___92a403491", "11028": "15___CATEGORICAL___nom_9___92a46698d", "11029": "15___CATEGORICAL___nom_9___92a4e902c", "11030": "15___CATEGORICAL___nom_9___92a57bb87", "11031": "15___CATEGORICAL___nom_9___92b7fb144", "11032": "15___CATEGORICAL___nom_9___92bddfe75", "11033": "15___CATEGORICAL___nom_9___92c9e8ae7", "11034": "15___CATEGORICAL___nom_9___92d8760c8", "11035": "15___CATEGORICAL___nom_9___92de0c93b", "11036": "15___CATEGORICAL___nom_9___92eabcbb5", "11037": "15___CATEGORICAL___nom_9___92f8a2e6e", "11038": "15___CATEGORICAL___nom_9___92f8dfe85", "11039": "15___CATEGORICAL___nom_9___92fd449ed", "11040": "15___CATEGORICAL___nom_9___93006722f", "11041": "15___CATEGORICAL___nom_9___93093cd26", "11042": "15___CATEGORICAL___nom_9___931eae947", "11043": "15___CATEGORICAL___nom_9___9321f24c2", "11044": "15___CATEGORICAL___nom_9___932325f9f", "11045": "15___CATEGORICAL___nom_9___932dce239", "11046": "15___CATEGORICAL___nom_9___932e74b86", "11047": "15___CATEGORICAL___nom_9___932ede7a3", "11048": "15___CATEGORICAL___nom_9___9331ce7dc", "11049": "15___CATEGORICAL___nom_9___9332ff270", "11050": "15___CATEGORICAL___nom_9___9339a366f", "11051": "15___CATEGORICAL___nom_9___933ff6ad8", "11052": "15___CATEGORICAL___nom_9___9342e145e", "11053": "15___CATEGORICAL___nom_9___934e8a416", "11054": "15___CATEGORICAL___nom_9___936717977", "11055": "15___CATEGORICAL___nom_9___93729f684", "11056": "15___CATEGORICAL___nom_9___93730d426", "11057": "15___CATEGORICAL___nom_9___9373d9458", "11058": "15___CATEGORICAL___nom_9___937c9edb5", "11059": "15___CATEGORICAL___nom_9___937e298ae", "11060": "15___CATEGORICAL___nom_9___939196abf", "11061": "15___CATEGORICAL___nom_9___9392f912d", "11062": "15___CATEGORICAL___nom_9___939b35e9c", "11063": "15___CATEGORICAL___nom_9___939da21f7", "11064": "15___CATEGORICAL___nom_9___93abbf932", "11065": "15___CATEGORICAL___nom_9___93b688790", "11066": "15___CATEGORICAL___nom_9___93b785134", "11067": "15___CATEGORICAL___nom_9___93b8ae200", "11068": "15___CATEGORICAL___nom_9___93bffcf08", "11069": "15___CATEGORICAL___nom_9___93c1c8d3f", "11070": "15___CATEGORICAL___nom_9___93ca462b0", "11071": "15___CATEGORICAL___nom_9___93d38d8fd", "11072": "15___CATEGORICAL___nom_9___93d7445b2", "11073": "15___CATEGORICAL___nom_9___93daaa09b", "11074": "15___CATEGORICAL___nom_9___93dc2395f", "11075": "15___CATEGORICAL___nom_9___93de3847a", "11076": "15___CATEGORICAL___nom_9___93ea8e3f9", "11077": "15___CATEGORICAL___nom_9___93eae3923", "11078": "15___CATEGORICAL___nom_9___93edc86de", "11079": "15___CATEGORICAL___nom_9___93f032b52", "11080": "15___CATEGORICAL___nom_9___93f5f3b32", "11081": "15___CATEGORICAL___nom_9___93f98d61a", "11082": "15___CATEGORICAL___nom_9___9406beeeb", "11083": "15___CATEGORICAL___nom_9___940824f8f", "11084": "15___CATEGORICAL___nom_9___940900ec4", "11085": "15___CATEGORICAL___nom_9___941a63f5e", "11086": "15___CATEGORICAL___nom_9___941cb9729", "11087": "15___CATEGORICAL___nom_9___942e6a6da", "11088": "15___CATEGORICAL___nom_9___942fe1525", "11089": "15___CATEGORICAL___nom_9___94331888c", "11090": "15___CATEGORICAL___nom_9___94365d610", "11091": "15___CATEGORICAL___nom_9___943b2cc56", "11092": "15___CATEGORICAL___nom_9___943ca4428", "11093": "15___CATEGORICAL___nom_9___944001192", "11094": "15___CATEGORICAL___nom_9___94425d341", "11095": "15___CATEGORICAL___nom_9___9443022c3", "11096": "15___CATEGORICAL___nom_9___9445ca735", "11097": "15___CATEGORICAL___nom_9___944a27b57", "11098": "15___CATEGORICAL___nom_9___944e6d65e", "11099": "15___CATEGORICAL___nom_9___9451c06f7", "11100": "15___CATEGORICAL___nom_9___9457cac94", "11101": "15___CATEGORICAL___nom_9___945a57ced", "11102": "15___CATEGORICAL___nom_9___945b8c7f1", "11103": "15___CATEGORICAL___nom_9___945b9c0da", "11104": "15___CATEGORICAL___nom_9___946067ce0", "11105": "15___CATEGORICAL___nom_9___9460cba95", "11106": "15___CATEGORICAL___nom_9___9461ccebd", "11107": "15___CATEGORICAL___nom_9___9464c14f2", "11108": "15___CATEGORICAL___nom_9___9467095c8", "11109": "15___CATEGORICAL___nom_9___946c05985", "11110": "15___CATEGORICAL___nom_9___946d97d1c", "11111": "15___CATEGORICAL___nom_9___946db7c1d", "11112": "15___CATEGORICAL___nom_9___947266d29", "11113": "15___CATEGORICAL___nom_9___94759054b", "11114": "15___CATEGORICAL___nom_9___9477be32b", "11115": "15___CATEGORICAL___nom_9___9477c21c4", "11116": "15___CATEGORICAL___nom_9___947bfa36a", "11117": "15___CATEGORICAL___nom_9___9480491dc", "11118": "15___CATEGORICAL___nom_9___948070168", "11119": "15___CATEGORICAL___nom_9___94856eb3c", "11120": "15___CATEGORICAL___nom_9___9489669eb", "11121": "15___CATEGORICAL___nom_9___94911e23c", "11122": "15___CATEGORICAL___nom_9___94997f2a6", "11123": "15___CATEGORICAL___nom_9___949b893e4", "11124": "15___CATEGORICAL___nom_9___94a84512f", "11125": "15___CATEGORICAL___nom_9___94ab6be82", "11126": "15___CATEGORICAL___nom_9___94ab7067e", "11127": "15___CATEGORICAL___nom_9___94abba910", "11128": "15___CATEGORICAL___nom_9___94af3c1a7", "11129": "15___CATEGORICAL___nom_9___94b07572b", "11130": "15___CATEGORICAL___nom_9___94b256065", "11131": "15___CATEGORICAL___nom_9___94b473dfd", "11132": "15___CATEGORICAL___nom_9___94b6ca6e6", "11133": "15___CATEGORICAL___nom_9___94b7c22dd", "11134": "15___CATEGORICAL___nom_9___94bf16f87", "11135": "15___CATEGORICAL___nom_9___94c0d1c74", "11136": "15___CATEGORICAL___nom_9___94c73153e", "11137": "15___CATEGORICAL___nom_9___94d3e503a", "11138": "15___CATEGORICAL___nom_9___94d652b25", "11139": "15___CATEGORICAL___nom_9___94d6876e2", "11140": "15___CATEGORICAL___nom_9___94d802a11", "11141": "15___CATEGORICAL___nom_9___94e53bd9d", "11142": "15___CATEGORICAL___nom_9___94f784127", "11143": "15___CATEGORICAL___nom_9___94fd9fd58", "11144": "15___CATEGORICAL___nom_9___950d558e7", "11145": "15___CATEGORICAL___nom_9___95125bdef", "11146": "15___CATEGORICAL___nom_9___952668e80", "11147": "15___CATEGORICAL___nom_9___952d7fc03", "11148": "15___CATEGORICAL___nom_9___95345e0f7", "11149": "15___CATEGORICAL___nom_9___953ad2a3b", "11150": "15___CATEGORICAL___nom_9___953c934ae", "11151": "15___CATEGORICAL___nom_9___953e0a91b", "11152": "15___CATEGORICAL___nom_9___953eb2651", "11153": "15___CATEGORICAL___nom_9___953ef530b", "11154": "15___CATEGORICAL___nom_9___9547f1d4d", "11155": "15___CATEGORICAL___nom_9___954fc1655", "11156": "15___CATEGORICAL___nom_9___9553ea139", "11157": "15___CATEGORICAL___nom_9___95554d71a", "11158": "15___CATEGORICAL___nom_9___955551ee3", "11159": "15___CATEGORICAL___nom_9___95595f6a4", "11160": "15___CATEGORICAL___nom_9___956109338", "11161": "15___CATEGORICAL___nom_9___95639ffa9", "11162": "15___CATEGORICAL___nom_9___956af531d", "11163": "15___CATEGORICAL___nom_9___95784ddcf", "11164": "15___CATEGORICAL___nom_9___957b59e09", "11165": "15___CATEGORICAL___nom_9___957ea6a64", "11166": "15___CATEGORICAL___nom_9___95840d756", "11167": "15___CATEGORICAL___nom_9___9589de9c1", "11168": "15___CATEGORICAL___nom_9___958b5718b", "11169": "15___CATEGORICAL___nom_9___95923ba34", "11170": "15___CATEGORICAL___nom_9___959c476ef", "11171": "15___CATEGORICAL___nom_9___959f1c871", "11172": "15___CATEGORICAL___nom_9___95a1cb6fe", "11173": "15___CATEGORICAL___nom_9___95a651cf2", "11174": "15___CATEGORICAL___nom_9___95af1dcf2", "11175": "15___CATEGORICAL___nom_9___95b2cc2bd", "11176": "15___CATEGORICAL___nom_9___95b85c849", "11177": "15___CATEGORICAL___nom_9___95b954b21", "11178": "15___CATEGORICAL___nom_9___95baaeab2", "11179": "15___CATEGORICAL___nom_9___95c14d513", "11180": "15___CATEGORICAL___nom_9___95c2bda7e", "11181": "15___CATEGORICAL___nom_9___95c676f37", "11182": "15___CATEGORICAL___nom_9___95cb8580a", "11183": "15___CATEGORICAL___nom_9___95cf2b1a5", "11184": "15___CATEGORICAL___nom_9___95d144ac2", "11185": "15___CATEGORICAL___nom_9___95d4d7db6", "11186": "15___CATEGORICAL___nom_9___95daf98e0", "11187": "15___CATEGORICAL___nom_9___95db371aa", "11188": "15___CATEGORICAL___nom_9___95dfb421b", "11189": "15___CATEGORICAL___nom_9___95e318a22", "11190": "15___CATEGORICAL___nom_9___95e83124e", "11191": "15___CATEGORICAL___nom_9___95eb51be1", "11192": "15___CATEGORICAL___nom_9___95ed349de", "11193": "15___CATEGORICAL___nom_9___95ee08ed1", "11194": "15___CATEGORICAL___nom_9___95f4f319d", "11195": "15___CATEGORICAL___nom_9___95f52f987", "11196": "15___CATEGORICAL___nom_9___95f73f7b1", "11197": "15___CATEGORICAL___nom_9___95f7720a3", "11198": "15___CATEGORICAL___nom_9___95f9ba619", "11199": "15___CATEGORICAL___nom_9___95fedefb9", "11200": "15___CATEGORICAL___nom_9___96020d47a", "11201": "15___CATEGORICAL___nom_9___9612cf328", "11202": "15___CATEGORICAL___nom_9___96177a79d", "11203": "15___CATEGORICAL___nom_9___961a0597a", "11204": "15___CATEGORICAL___nom_9___963548d2d", "11205": "15___CATEGORICAL___nom_9___963862ba0", "11206": "15___CATEGORICAL___nom_9___963ae1a1f", "11207": "15___CATEGORICAL___nom_9___963d47197", "11208": "15___CATEGORICAL___nom_9___963efd29c", "11209": "15___CATEGORICAL___nom_9___96404f4b9", "11210": "15___CATEGORICAL___nom_9___96419fe5b", "11211": "15___CATEGORICAL___nom_9___96505346d", "11212": "15___CATEGORICAL___nom_9___965358c76", "11213": "15___CATEGORICAL___nom_9___96581c23b", "11214": "15___CATEGORICAL___nom_9___965c12299", "11215": "15___CATEGORICAL___nom_9___966a5de57", "11216": "15___CATEGORICAL___nom_9___96715070f", "11217": "15___CATEGORICAL___nom_9___967503518", "11218": "15___CATEGORICAL___nom_9___967cfa9c9", "11219": "15___CATEGORICAL___nom_9___96863dea9", "11220": "15___CATEGORICAL___nom_9___968b0e0a4", "11221": "15___CATEGORICAL___nom_9___96929a04d", "11222": "15___CATEGORICAL___nom_9___9694eb755", "11223": "15___CATEGORICAL___nom_9___969c8b7dc", "11224": "15___CATEGORICAL___nom_9___96a4ddc1e", "11225": "15___CATEGORICAL___nom_9___96ac6d593", "11226": "15___CATEGORICAL___nom_9___96ad8a101", "11227": "15___CATEGORICAL___nom_9___96b291dcf", "11228": "15___CATEGORICAL___nom_9___96b5dc566", "11229": "15___CATEGORICAL___nom_9___96b80b5d0", "11230": "15___CATEGORICAL___nom_9___96b90e3d4", "11231": "15___CATEGORICAL___nom_9___96bdf37d5", "11232": "15___CATEGORICAL___nom_9___96c0eee4e", "11233": "15___CATEGORICAL___nom_9___96ce228a8", "11234": "15___CATEGORICAL___nom_9___96cec6999", "11235": "15___CATEGORICAL___nom_9___96d00c912", "11236": "15___CATEGORICAL___nom_9___96d8b1901", "11237": "15___CATEGORICAL___nom_9___96dbce6f5", "11238": "15___CATEGORICAL___nom_9___96de3fe2d", "11239": "15___CATEGORICAL___nom_9___96e244ecf", "11240": "15___CATEGORICAL___nom_9___96e49fac5", "11241": "15___CATEGORICAL___nom_9___96eb7f741", "11242": "15___CATEGORICAL___nom_9___96f06661e", "11243": "15___CATEGORICAL___nom_9___96f32d812", "11244": "15___CATEGORICAL___nom_9___96fa3233a", "11245": "15___CATEGORICAL___nom_9___9707f40d4", "11246": "15___CATEGORICAL___nom_9___970f89cbb", "11247": "15___CATEGORICAL___nom_9___970fb150f", "11248": "15___CATEGORICAL___nom_9___971737ca9", "11249": "15___CATEGORICAL___nom_9___971c72d33", "11250": "15___CATEGORICAL___nom_9___973983691", "11251": "15___CATEGORICAL___nom_9___973aba869", "11252": "15___CATEGORICAL___nom_9___973b489bf", "11253": "15___CATEGORICAL___nom_9___974256b5e", "11254": "15___CATEGORICAL___nom_9___9751943b9", "11255": "15___CATEGORICAL___nom_9___9751d4038", "11256": "15___CATEGORICAL___nom_9___975cc5bf1", "11257": "15___CATEGORICAL___nom_9___9761518a3", "11258": "15___CATEGORICAL___nom_9___97616a1ac", "11259": "15___CATEGORICAL___nom_9___976436247", "11260": "15___CATEGORICAL___nom_9___97648af26", "11261": "15___CATEGORICAL___nom_9___9774c55fc", "11262": "15___CATEGORICAL___nom_9___9776f9efd", "11263": "15___CATEGORICAL___nom_9___97797a1d9", "11264": "15___CATEGORICAL___nom_9___977a67955", "11265": "15___CATEGORICAL___nom_9___978c809d0", "11266": "15___CATEGORICAL___nom_9___978cb82bc", "11267": "15___CATEGORICAL___nom_9___97a44f2ba", "11268": "15___CATEGORICAL___nom_9___97a74c04c", "11269": "15___CATEGORICAL___nom_9___97a9a8451", "11270": "15___CATEGORICAL___nom_9___97acc56cd", "11271": "15___CATEGORICAL___nom_9___97b39ccbe", "11272": "15___CATEGORICAL___nom_9___97c1677cc", "11273": "15___CATEGORICAL___nom_9___97c4fc9a2", "11274": "15___CATEGORICAL___nom_9___97c5ebfaa", "11275": "15___CATEGORICAL___nom_9___97c84cf25", "11276": "15___CATEGORICAL___nom_9___97dc59723", "11277": "15___CATEGORICAL___nom_9___97e5b506b", "11278": "15___CATEGORICAL___nom_9___97e6a07f2", "11279": "15___CATEGORICAL___nom_9___97f2a4586", "11280": "15___CATEGORICAL___nom_9___98041af8e", "11281": "15___CATEGORICAL___nom_9___98051c689", "11282": "15___CATEGORICAL___nom_9___98076a1a8", "11283": "15___CATEGORICAL___nom_9___980b20150", "11284": "15___CATEGORICAL___nom_9___9810db07b", "11285": "15___CATEGORICAL___nom_9___981fa0f74", "11286": "15___CATEGORICAL___nom_9___982b377ff", "11287": "15___CATEGORICAL___nom_9___983e3dc77", "11288": "15___CATEGORICAL___nom_9___98419a827", "11289": "15___CATEGORICAL___nom_9___98435f293", "11290": "15___CATEGORICAL___nom_9___984424476", "11291": "15___CATEGORICAL___nom_9___984a0e274", "11292": "15___CATEGORICAL___nom_9___984bed033", "11293": "15___CATEGORICAL___nom_9___984f7dbf7", "11294": "15___CATEGORICAL___nom_9___98517f2a2", "11295": "15___CATEGORICAL___nom_9___985277e91", "11296": "15___CATEGORICAL___nom_9___9857c7370", "11297": "15___CATEGORICAL___nom_9___9859d2867", "11298": "15___CATEGORICAL___nom_9___985dd5319", "11299": "15___CATEGORICAL___nom_9___985eabf13", "11300": "15___CATEGORICAL___nom_9___986657baf", "11301": "15___CATEGORICAL___nom_9___9870f74c2", "11302": "15___CATEGORICAL___nom_9___987f073fa", "11303": "15___CATEGORICAL___nom_9___98847f818", "11304": "15___CATEGORICAL___nom_9___988d61401", "11305": "15___CATEGORICAL___nom_9___9892d8237", "11306": "15___CATEGORICAL___nom_9___989bae1c9", "11307": "15___CATEGORICAL___nom_9___989d40c0f", "11308": "15___CATEGORICAL___nom_9___98a14ca21", "11309": "15___CATEGORICAL___nom_9___98a175e4b", "11310": "15___CATEGORICAL___nom_9___98a80e234", "11311": "15___CATEGORICAL___nom_9___98b6382d5", "11312": "15___CATEGORICAL___nom_9___98b783709", "11313": "15___CATEGORICAL___nom_9___98b9d4cf3", "11314": "15___CATEGORICAL___nom_9___98bbe18e2", "11315": "15___CATEGORICAL___nom_9___98bf5bdc1", "11316": "15___CATEGORICAL___nom_9___98c24a69a", "11317": "15___CATEGORICAL___nom_9___98c7a2beb", "11318": "15___CATEGORICAL___nom_9___98d2f9372", "11319": "15___CATEGORICAL___nom_9___98d6fcd91", "11320": "15___CATEGORICAL___nom_9___98dd537b2", "11321": "15___CATEGORICAL___nom_9___98dd97c71", "11322": "15___CATEGORICAL___nom_9___98e547050", "11323": "15___CATEGORICAL___nom_9___98ee82a0d", "11324": "15___CATEGORICAL___nom_9___98eef06b4", "11325": "15___CATEGORICAL___nom_9___98f35a619", "11326": "15___CATEGORICAL___nom_9___9909caf2a", "11327": "15___CATEGORICAL___nom_9___99110e5f4", "11328": "15___CATEGORICAL___nom_9___991412604", "11329": "15___CATEGORICAL___nom_9___99199ad59", "11330": "15___CATEGORICAL___nom_9___991a24e96", "11331": "15___CATEGORICAL___nom_9___992310e5e", "11332": "15___CATEGORICAL___nom_9___992311ee0", "11333": "15___CATEGORICAL___nom_9___992aa544c", "11334": "15___CATEGORICAL___nom_9___993141c19", "11335": "15___CATEGORICAL___nom_9___993a893af", "11336": "15___CATEGORICAL___nom_9___993b54dac", "11337": "15___CATEGORICAL___nom_9___994987083", "11338": "15___CATEGORICAL___nom_9___994a64bc8", "11339": "15___CATEGORICAL___nom_9___994c96751", "11340": "15___CATEGORICAL___nom_9___994d9c18d", "11341": "15___CATEGORICAL___nom_9___995ed45fd", "11342": "15___CATEGORICAL___nom_9___9963454fc", "11343": "15___CATEGORICAL___nom_9___99641a53c", "11344": "15___CATEGORICAL___nom_9___99657f622", "11345": "15___CATEGORICAL___nom_9___996787db9", "11346": "15___CATEGORICAL___nom_9___996864a4f", "11347": "15___CATEGORICAL___nom_9___996aff165", "11348": "15___CATEGORICAL___nom_9___997298a64", "11349": "15___CATEGORICAL___nom_9___99782c66b", "11350": "15___CATEGORICAL___nom_9___997b2bef3", "11351": "15___CATEGORICAL___nom_9___9980bdfe3", "11352": "15___CATEGORICAL___nom_9___9985551b5", "11353": "15___CATEGORICAL___nom_9___998a2cc73", "11354": "15___CATEGORICAL___nom_9___998b19ecf", "11355": "15___CATEGORICAL___nom_9___9994f748e", "11356": "15___CATEGORICAL___nom_9___99954638d", "11357": "15___CATEGORICAL___nom_9___9995e0e70", "11358": "15___CATEGORICAL___nom_9___9999ef46f", "11359": "15___CATEGORICAL___nom_9___999d8a836", "11360": "15___CATEGORICAL___nom_9___999f4b661", "11361": "15___CATEGORICAL___nom_9___99a15db20", "11362": "15___CATEGORICAL___nom_9___99a54d271", "11363": "15___CATEGORICAL___nom_9___99b9d5e33", "11364": "15___CATEGORICAL___nom_9___99ba4711d", "11365": "15___CATEGORICAL___nom_9___99ba7880b", "11366": "15___CATEGORICAL___nom_9___99c5f8a87", "11367": "15___CATEGORICAL___nom_9___99cf2829f", "11368": "15___CATEGORICAL___nom_9___99cf4c03b", "11369": "15___CATEGORICAL___nom_9___99f43a1fd", "11370": "15___CATEGORICAL___nom_9___99f747c71", "11371": "15___CATEGORICAL___nom_9___99f8ba45d", "11372": "15___CATEGORICAL___nom_9___9a02934f9", "11373": "15___CATEGORICAL___nom_9___9a121af53", "11374": "15___CATEGORICAL___nom_9___9a196d946", "11375": "15___CATEGORICAL___nom_9___9a1c36181", "11376": "15___CATEGORICAL___nom_9___9a204dc95", "11377": "15___CATEGORICAL___nom_9___9a20a6893", "11378": "15___CATEGORICAL___nom_9___9a22cba51", "11379": "15___CATEGORICAL___nom_9___9a30cee7c", "11380": "15___CATEGORICAL___nom_9___9a34978fd", "11381": "15___CATEGORICAL___nom_9___9a34eda5e", "11382": "15___CATEGORICAL___nom_9___9a4207c92", "11383": "15___CATEGORICAL___nom_9___9a43e4f89", "11384": "15___CATEGORICAL___nom_9___9a4a19b22", "11385": "15___CATEGORICAL___nom_9___9a565dd5e", "11386": "15___CATEGORICAL___nom_9___9a599396e", "11387": "15___CATEGORICAL___nom_9___9a5fcb968", "11388": "15___CATEGORICAL___nom_9___9a705a3bf", "11389": "15___CATEGORICAL___nom_9___9a7c603c8", "11390": "15___CATEGORICAL___nom_9___9a7cc3894", "11391": "15___CATEGORICAL___nom_9___9a81e9f07", "11392": "15___CATEGORICAL___nom_9___9a82f5236", "11393": "15___CATEGORICAL___nom_9___9a8ace193", "11394": "15___CATEGORICAL___nom_9___9a918c134", "11395": "15___CATEGORICAL___nom_9___9a9240481", "11396": "15___CATEGORICAL___nom_9___9a924c48a", "11397": "15___CATEGORICAL___nom_9___9a93bd265", "11398": "15___CATEGORICAL___nom_9___9a996a8e7", "11399": "15___CATEGORICAL___nom_9___9a9f99de7", "11400": "15___CATEGORICAL___nom_9___9aacce3b4", "11401": "15___CATEGORICAL___nom_9___9ab4b4f0d", "11402": "15___CATEGORICAL___nom_9___9ac6bb6a1", "11403": "15___CATEGORICAL___nom_9___9ad2af48a", "11404": "15___CATEGORICAL___nom_9___9ad71159b", "11405": "15___CATEGORICAL___nom_9___9ad7156ae", "11406": "15___CATEGORICAL___nom_9___9adca20e2", "11407": "15___CATEGORICAL___nom_9___9ae826168", "11408": "15___CATEGORICAL___nom_9___9aeb09ed9", "11409": "15___CATEGORICAL___nom_9___9af5aca6d", "11410": "15___CATEGORICAL___nom_9___9af72c332", "11411": "15___CATEGORICAL___nom_9___9afa2d9f2", "11412": "15___CATEGORICAL___nom_9___9affdfed5", "11413": "15___CATEGORICAL___nom_9___9b04df18e", "11414": "15___CATEGORICAL___nom_9___9b04e9bf4", "11415": "15___CATEGORICAL___nom_9___9b076f400", "11416": "15___CATEGORICAL___nom_9___9b0772642", "11417": "15___CATEGORICAL___nom_9___9b0d8a2f3", "11418": "15___CATEGORICAL___nom_9___9b0e00572", "11419": "15___CATEGORICAL___nom_9___9b0f5a687", "11420": "15___CATEGORICAL___nom_9___9b1570ce2", "11421": "15___CATEGORICAL___nom_9___9b15aa5f0", "11422": "15___CATEGORICAL___nom_9___9b1f38033", "11423": "15___CATEGORICAL___nom_9___9b2e22bf2", "11424": "15___CATEGORICAL___nom_9___9b317992d", "11425": "15___CATEGORICAL___nom_9___9b357b911", "11426": "15___CATEGORICAL___nom_9___9b4435d65", "11427": "15___CATEGORICAL___nom_9___9b4c31d70", "11428": "15___CATEGORICAL___nom_9___9b50161f2", "11429": "15___CATEGORICAL___nom_9___9b58f6d6f", "11430": "15___CATEGORICAL___nom_9___9b5a2a638", "11431": "15___CATEGORICAL___nom_9___9b72b75e7", "11432": "15___CATEGORICAL___nom_9___9b736bf38", "11433": "15___CATEGORICAL___nom_9___9b7aaef8b", "11434": "15___CATEGORICAL___nom_9___9b7ac0ff8", "11435": "15___CATEGORICAL___nom_9___9b81d4507", "11436": "15___CATEGORICAL___nom_9___9b841aa7e", "11437": "15___CATEGORICAL___nom_9___9b85b85c9", "11438": "15___CATEGORICAL___nom_9___9b87b3177", "11439": "15___CATEGORICAL___nom_9___9b89f196e", "11440": "15___CATEGORICAL___nom_9___9b8b27e9c", "11441": "15___CATEGORICAL___nom_9___9b9076c53", "11442": "15___CATEGORICAL___nom_9___9b93f569b", "11443": "15___CATEGORICAL___nom_9___9b951b1ea", "11444": "15___CATEGORICAL___nom_9___9b9ad19ba", "11445": "15___CATEGORICAL___nom_9___9b9fb67c3", "11446": "15___CATEGORICAL___nom_9___9ba29c7f6", "11447": "15___CATEGORICAL___nom_9___9ba407912", "11448": "15___CATEGORICAL___nom_9___9ba4f4a5d", "11449": "15___CATEGORICAL___nom_9___9ba7ca243", "11450": "15___CATEGORICAL___nom_9___9ba89ecf5", "11451": "15___CATEGORICAL___nom_9___9baf9fa58", "11452": "15___CATEGORICAL___nom_9___9bafd82ed", "11453": "15___CATEGORICAL___nom_9___9bb6ccfd2", "11454": "15___CATEGORICAL___nom_9___9bb792d2c", "11455": "15___CATEGORICAL___nom_9___9bbdbd867", "11456": "15___CATEGORICAL___nom_9___9bbf75daa", "11457": "15___CATEGORICAL___nom_9___9bc26680e", "11458": "15___CATEGORICAL___nom_9___9bd51c0ff", "11459": "15___CATEGORICAL___nom_9___9beb42d5e", "11460": "15___CATEGORICAL___nom_9___9bf767d66", "11461": "15___CATEGORICAL___nom_9___9bfcdfc9e", "11462": "15___CATEGORICAL___nom_9___9bfe58cef", "11463": "15___CATEGORICAL___nom_9___9c1cb968f", "11464": "15___CATEGORICAL___nom_9___9c1d95f3d", "11465": "15___CATEGORICAL___nom_9___9c2221957", "11466": "15___CATEGORICAL___nom_9___9c224f8f8", "11467": "15___CATEGORICAL___nom_9___9c2aa4c2b", "11468": "15___CATEGORICAL___nom_9___9c33a318c", "11469": "15___CATEGORICAL___nom_9___9c376bf93", "11470": "15___CATEGORICAL___nom_9___9c4213a50", "11471": "15___CATEGORICAL___nom_9___9c4c58b08", "11472": "15___CATEGORICAL___nom_9___9c5190350", "11473": "15___CATEGORICAL___nom_9___9c564513c", "11474": "15___CATEGORICAL___nom_9___9c581a38e", "11475": "15___CATEGORICAL___nom_9___9c58f3be5", "11476": "15___CATEGORICAL___nom_9___9c626b57c", "11477": "15___CATEGORICAL___nom_9___9c669b4bb", "11478": "15___CATEGORICAL___nom_9___9c67f9f5c", "11479": "15___CATEGORICAL___nom_9___9c689240f", "11480": "15___CATEGORICAL___nom_9___9c702a65d", "11481": "15___CATEGORICAL___nom_9___9c7dea737", "11482": "15___CATEGORICAL___nom_9___9c8867b11", "11483": "15___CATEGORICAL___nom_9___9c9195c6a", "11484": "15___CATEGORICAL___nom_9___9c9761bda", "11485": "15___CATEGORICAL___nom_9___9ca26b6f2", "11486": "15___CATEGORICAL___nom_9___9ca3a8410", "11487": "15___CATEGORICAL___nom_9___9ca7ba537", "11488": "15___CATEGORICAL___nom_9___9cb00e907", "11489": "15___CATEGORICAL___nom_9___9cbe60451", "11490": "15___CATEGORICAL___nom_9___9ccd1e1be", "11491": "15___CATEGORICAL___nom_9___9cce06270", "11492": "15___CATEGORICAL___nom_9___9cd56b510", "11493": "15___CATEGORICAL___nom_9___9cd9ff85f", "11494": "15___CATEGORICAL___nom_9___9cda6d24e", "11495": "15___CATEGORICAL___nom_9___9cdfbf106", "11496": "15___CATEGORICAL___nom_9___9ce0ae1fc", "11497": "15___CATEGORICAL___nom_9___9ce363e9b", "11498": "15___CATEGORICAL___nom_9___9ce4120ec", "11499": "15___CATEGORICAL___nom_9___9ceeff82e", "11500": "15___CATEGORICAL___nom_9___9cf1ae905", "11501": "15___CATEGORICAL___nom_9___9cf4186f8", "11502": "15___CATEGORICAL___nom_9___9cf6aab66", "11503": "15___CATEGORICAL___nom_9___9cfc3d704", "11504": "15___CATEGORICAL___nom_9___9d0d5faaa", "11505": "15___CATEGORICAL___nom_9___9d11655dd", "11506": "15___CATEGORICAL___nom_9___9d122488c", "11507": "15___CATEGORICAL___nom_9___9d148934b", "11508": "15___CATEGORICAL___nom_9___9d1f12146", "11509": "15___CATEGORICAL___nom_9___9d2140d3c", "11510": "15___CATEGORICAL___nom_9___9d22e8f25", "11511": "15___CATEGORICAL___nom_9___9d28c2b7d", "11512": "15___CATEGORICAL___nom_9___9d3522a65", "11513": "15___CATEGORICAL___nom_9___9d356988b", "11514": "15___CATEGORICAL___nom_9___9d3ac8bca", "11515": "15___CATEGORICAL___nom_9___9d3fdeba4", "11516": "15___CATEGORICAL___nom_9___9d448f648", "11517": "15___CATEGORICAL___nom_9___9d49470e5", "11518": "15___CATEGORICAL___nom_9___9d4cfcaa5", "11519": "15___CATEGORICAL___nom_9___9d5260719", "11520": "15___CATEGORICAL___nom_9___9d52ffe85", "11521": "15___CATEGORICAL___nom_9___9d606e500", "11522": "15___CATEGORICAL___nom_9___9d64ea773", "11523": "15___CATEGORICAL___nom_9___9d6520a62", "11524": "15___CATEGORICAL___nom_9___9d66eab43", "11525": "15___CATEGORICAL___nom_9___9d6daf5c2", "11526": "15___CATEGORICAL___nom_9___9d769b9fa", "11527": "15___CATEGORICAL___nom_9___9d77edd12", "11528": "15___CATEGORICAL___nom_9___9d7b42846", "11529": "15___CATEGORICAL___nom_9___9d91e6549", "11530": "15___CATEGORICAL___nom_9___9d969761b", "11531": "15___CATEGORICAL___nom_9___9d996741f", "11532": "15___CATEGORICAL___nom_9___9d9dbdc26", "11533": "15___CATEGORICAL___nom_9___9da45dbca", "11534": "15___CATEGORICAL___nom_9___9da72939b", "11535": "15___CATEGORICAL___nom_9___9da79ddd8", "11536": "15___CATEGORICAL___nom_9___9db28cc6a", "11537": "15___CATEGORICAL___nom_9___9db9b0408", "11538": "15___CATEGORICAL___nom_9___9dba93fae", "11539": "15___CATEGORICAL___nom_9___9dbc8471e", "11540": "15___CATEGORICAL___nom_9___9dc653c31", "11541": "15___CATEGORICAL___nom_9___9dc708e2d", "11542": "15___CATEGORICAL___nom_9___9dcec2bdb", "11543": "15___CATEGORICAL___nom_9___9dd26ab26", "11544": "15___CATEGORICAL___nom_9___9dd375c81", "11545": "15___CATEGORICAL___nom_9___9dd4fb55e", "11546": "15___CATEGORICAL___nom_9___9dd6ad2d3", "11547": "15___CATEGORICAL___nom_9___9ddce3152", "11548": "15___CATEGORICAL___nom_9___9ddf6efb0", "11549": "15___CATEGORICAL___nom_9___9de97a261", "11550": "15___CATEGORICAL___nom_9___9de9c9eac", "11551": "15___CATEGORICAL___nom_9___9decf7bd6", "11552": "15___CATEGORICAL___nom_9___9df253904", "11553": "15___CATEGORICAL___nom_9___9dfe16047", "11554": "15___CATEGORICAL___nom_9___9e05f2967", "11555": "15___CATEGORICAL___nom_9___9e071dbf9", "11556": "15___CATEGORICAL___nom_9___9e0d41ae1", "11557": "15___CATEGORICAL___nom_9___9e0d9650e", "11558": "15___CATEGORICAL___nom_9___9e100f0d7", "11559": "15___CATEGORICAL___nom_9___9e132bf81", "11560": "15___CATEGORICAL___nom_9___9e16fbdf9", "11561": "15___CATEGORICAL___nom_9___9e19f60b6", "11562": "15___CATEGORICAL___nom_9___9e1b56a06", "11563": "15___CATEGORICAL___nom_9___9e251ab16", "11564": "15___CATEGORICAL___nom_9___9e269f63a", "11565": "15___CATEGORICAL___nom_9___9e2a36241", "11566": "15___CATEGORICAL___nom_9___9e2b7b9f7", "11567": "15___CATEGORICAL___nom_9___9e2f17f89", "11568": "15___CATEGORICAL___nom_9___9e31893fa", "11569": "15___CATEGORICAL___nom_9___9e33d5bd7", "11570": "15___CATEGORICAL___nom_9___9e36a57fc", "11571": "15___CATEGORICAL___nom_9___9e3c2b070", "11572": "15___CATEGORICAL___nom_9___9e3d355c4", "11573": "15___CATEGORICAL___nom_9___9e437948a", "11574": "15___CATEGORICAL___nom_9___9e4b32d7e", "11575": "15___CATEGORICAL___nom_9___9e4c99a0d", "11576": "15___CATEGORICAL___nom_9___9e545f11b", "11577": "15___CATEGORICAL___nom_9___9e560079d", "11578": "15___CATEGORICAL___nom_9___9e5eff378", "11579": "15___CATEGORICAL___nom_9___9e6b0d16e", "11580": "15___CATEGORICAL___nom_9___9e728fbed", "11581": "15___CATEGORICAL___nom_9___9e7a02a99", "11582": "15___CATEGORICAL___nom_9___9e7ec03c1", "11583": "15___CATEGORICAL___nom_9___9e8229531", "11584": "15___CATEGORICAL___nom_9___9e86fef78", "11585": "15___CATEGORICAL___nom_9___9e8bf8e95", "11586": "15___CATEGORICAL___nom_9___9e9225850", "11587": "15___CATEGORICAL___nom_9___9e9b392a8", "11588": "15___CATEGORICAL___nom_9___9ea3057ec", "11589": "15___CATEGORICAL___nom_9___9eb081a81", "11590": "15___CATEGORICAL___nom_9___9eb327a9a", "11591": "15___CATEGORICAL___nom_9___9ebd870ea", "11592": "15___CATEGORICAL___nom_9___9ebeb6609", "11593": "15___CATEGORICAL___nom_9___9ec8771ec", "11594": "15___CATEGORICAL___nom_9___9ec93034f", "11595": "15___CATEGORICAL___nom_9___9ecf5cb67", "11596": "15___CATEGORICAL___nom_9___9ee03cd1d", "11597": "15___CATEGORICAL___nom_9___9ee0887b0", "11598": "15___CATEGORICAL___nom_9___9ee16c1da", "11599": "15___CATEGORICAL___nom_9___9ee1f6239", "11600": "15___CATEGORICAL___nom_9___9ee2c8b58", "11601": "15___CATEGORICAL___nom_9___9eee46b83", "11602": "15___CATEGORICAL___nom_9___9ef8531ab", "11603": "15___CATEGORICAL___nom_9___9ef92ab4c", "11604": "15___CATEGORICAL___nom_9___9f0110647", "11605": "15___CATEGORICAL___nom_9___9f05e17af", "11606": "15___CATEGORICAL___nom_9___9f0bed26c", "11607": "15___CATEGORICAL___nom_9___9f107aa88", "11608": "15___CATEGORICAL___nom_9___9f17c420a", "11609": "15___CATEGORICAL___nom_9___9f1958d21", "11610": "15___CATEGORICAL___nom_9___9f2dec0b7", "11611": "15___CATEGORICAL___nom_9___9f383bc69", "11612": "15___CATEGORICAL___nom_9___9f40a3f3a", "11613": "15___CATEGORICAL___nom_9___9f4a6b314", "11614": "15___CATEGORICAL___nom_9___9f4c62a84", "11615": "15___CATEGORICAL___nom_9___9f666ec5d", "11616": "15___CATEGORICAL___nom_9___9f6a22957", "11617": "15___CATEGORICAL___nom_9___9f6a34c80", "11618": "15___CATEGORICAL___nom_9___9f6f40260", "11619": "15___CATEGORICAL___nom_9___9f76e1626", "11620": "15___CATEGORICAL___nom_9___9f77e4fc6", "11621": "15___CATEGORICAL___nom_9___9f78b1d34", "11622": "15___CATEGORICAL___nom_9___9f7a9d14b", "11623": "15___CATEGORICAL___nom_9___9f7d00049", "11624": "15___CATEGORICAL___nom_9___9f7e8c5b6", "11625": "15___CATEGORICAL___nom_9___9f8a5bc9c", "11626": "15___CATEGORICAL___nom_9___9f8d0b6e6", "11627": "15___CATEGORICAL___nom_9___9f8e28d99", "11628": "15___CATEGORICAL___nom_9___9f97d706a", "11629": "15___CATEGORICAL___nom_9___9f9937561", "11630": "15___CATEGORICAL___nom_9___9fa4b5bb0", "11631": "15___CATEGORICAL___nom_9___9fa66feed", "11632": "15___CATEGORICAL___nom_9___9fab706ab", "11633": "15___CATEGORICAL___nom_9___9fae99034", "11634": "15___CATEGORICAL___nom_9___9fafdb3b6", "11635": "15___CATEGORICAL___nom_9___9fb292402", "11636": "15___CATEGORICAL___nom_9___9fb43781d", "11637": "15___CATEGORICAL___nom_9___9fb6f1e11", "11638": "15___CATEGORICAL___nom_9___9fb9757cd", "11639": "15___CATEGORICAL___nom_9___9fbae6191", "11640": "15___CATEGORICAL___nom_9___9fbd214f0", "11641": "15___CATEGORICAL___nom_9___9fc935d57", "11642": "15___CATEGORICAL___nom_9___9fcc70762", "11643": "15___CATEGORICAL___nom_9___9fd7919c4", "11644": "15___CATEGORICAL___nom_9___9fda80b78", "11645": "15___CATEGORICAL___nom_9___9fdaa0973", "11646": "15___CATEGORICAL___nom_9___9fddc642c", "11647": "15___CATEGORICAL___nom_9___9fde24fd9", "11648": "15___CATEGORICAL___nom_9___9fe51d587", "11649": "15___CATEGORICAL___nom_9___9fe7bc820", "11650": "15___CATEGORICAL___nom_9___9fe85fde5", "11651": "15___CATEGORICAL___nom_9___9fe90da91", "11652": "15___CATEGORICAL___nom_9___9fec32759", "11653": "15___CATEGORICAL___nom_9___9fef9ed75", "11654": "15___CATEGORICAL___nom_9___9ff13800a", "11655": "15___CATEGORICAL___nom_9___a0002ede1", "11656": "15___CATEGORICAL___nom_9___a00801e78", "11657": "15___CATEGORICAL___nom_9___a010945cf", "11658": "15___CATEGORICAL___nom_9___a01ef2cef", "11659": "15___CATEGORICAL___nom_9___a028d1d9a", "11660": "15___CATEGORICAL___nom_9___a03340746", "11661": "15___CATEGORICAL___nom_9___a03ab14f9", "11662": "15___CATEGORICAL___nom_9___a03cc8c1f", "11663": "15___CATEGORICAL___nom_9___a03dedfda", "11664": "15___CATEGORICAL___nom_9___a057874df", "11665": "15___CATEGORICAL___nom_9___a06716225", "11666": "15___CATEGORICAL___nom_9___a071122eb", "11667": "15___CATEGORICAL___nom_9___a08252ae1", "11668": "15___CATEGORICAL___nom_9___a08985321", "11669": "15___CATEGORICAL___nom_9___a08d2742c", "11670": "15___CATEGORICAL___nom_9___a0954566d", "11671": "15___CATEGORICAL___nom_9___a097e6b7d", "11672": "15___CATEGORICAL___nom_9___a09953990", "11673": "15___CATEGORICAL___nom_9___a09b429a4", "11674": "15___CATEGORICAL___nom_9___a09bcc901", "11675": "15___CATEGORICAL___nom_9___a0a3a0f18", "11676": "15___CATEGORICAL___nom_9___a0ad903c0", "11677": "15___CATEGORICAL___nom_9___a0b386aeb", "11678": "15___CATEGORICAL___nom_9___a0b75e727", "11679": "15___CATEGORICAL___nom_9___a0c7f06f1", "11680": "15___CATEGORICAL___nom_9___a0c9b6f0f", "11681": "15___CATEGORICAL___nom_9___a0e4207b7", "11682": "15___CATEGORICAL___nom_9___a0e5f75f1", "11683": "15___CATEGORICAL___nom_9___a0e629dad", "11684": "15___CATEGORICAL___nom_9___a0ef97e39", "11685": "15___CATEGORICAL___nom_9___a0efb7424", "11686": "15___CATEGORICAL___nom_9___a0fc4d249", "11687": "15___CATEGORICAL___nom_9___a0ffcd091", "11688": "15___CATEGORICAL___nom_9___a10514d2e", "11689": "15___CATEGORICAL___nom_9___a106fdac6", "11690": "15___CATEGORICAL___nom_9___a1083e30a", "11691": "15___CATEGORICAL___nom_9___a10a7734e", "11692": "15___CATEGORICAL___nom_9___a1132c729", "11693": "15___CATEGORICAL___nom_9___a11e40db0", "11694": "15___CATEGORICAL___nom_9___a11fd38fe", "11695": "15___CATEGORICAL___nom_9___a122cf517", "11696": "15___CATEGORICAL___nom_9___a123aac8c", "11697": "15___CATEGORICAL___nom_9___a12505b67", "11698": "15___CATEGORICAL___nom_9___a125fa858", "11699": "15___CATEGORICAL___nom_9___a12935e1b", "11700": "15___CATEGORICAL___nom_9___a12bdd9c8", "11701": "15___CATEGORICAL___nom_9___a13ca95ca", "11702": "15___CATEGORICAL___nom_9___a13d3105c", "11703": "15___CATEGORICAL___nom_9___a1425588b", "11704": "15___CATEGORICAL___nom_9___a1482b02e", "11705": "15___CATEGORICAL___nom_9___a1494cdf4", "11706": "15___CATEGORICAL___nom_9___a15668e7a", "11707": "15___CATEGORICAL___nom_9___a15a99e4a", "11708": "15___CATEGORICAL___nom_9___a15d3acda", "11709": "15___CATEGORICAL___nom_9___a1643d4d4", "11710": "15___CATEGORICAL___nom_9___a16b1d8cd", "11711": "15___CATEGORICAL___nom_9___a16b767d0", "11712": "15___CATEGORICAL___nom_9___a16bcc750", "11713": "15___CATEGORICAL___nom_9___a185532ab", "11714": "15___CATEGORICAL___nom_9___a187ef6e1", "11715": "15___CATEGORICAL___nom_9___a1884a1b9", "11716": "15___CATEGORICAL___nom_9___a18d2aa19", "11717": "15___CATEGORICAL___nom_9___a19157aa8", "11718": "15___CATEGORICAL___nom_9___a1922a68c", "11719": "15___CATEGORICAL___nom_9___a19b63da5", "11720": "15___CATEGORICAL___nom_9___a1a1b1f28", "11721": "15___CATEGORICAL___nom_9___a1a24c168", "11722": "15___CATEGORICAL___nom_9___a1ae4586b", "11723": "15___CATEGORICAL___nom_9___a1af4cf1d", "11724": "15___CATEGORICAL___nom_9___a1afe91df", "11725": "15___CATEGORICAL___nom_9___a1b41f993", "11726": "15___CATEGORICAL___nom_9___a1b52416b", "11727": "15___CATEGORICAL___nom_9___a1b87d416", "11728": "15___CATEGORICAL___nom_9___a1badc9c5", "11729": "15___CATEGORICAL___nom_9___a1c369472", "11730": "15___CATEGORICAL___nom_9___a1c83bcd3", "11731": "15___CATEGORICAL___nom_9___a1d1bdad7", "11732": "15___CATEGORICAL___nom_9___a1d23b123", "11733": "15___CATEGORICAL___nom_9___a1d7f7274", "11734": "15___CATEGORICAL___nom_9___a1d8df637", "11735": "15___CATEGORICAL___nom_9___a1ea14ce8", "11736": "15___CATEGORICAL___nom_9___a1eb9754b", "11737": "15___CATEGORICAL___nom_9___a1ebb8194", "11738": "15___CATEGORICAL___nom_9___a1f033ca4", "11739": "15___CATEGORICAL___nom_9___a1f66284b", "11740": "15___CATEGORICAL___nom_9___a1f87257d", "11741": "15___CATEGORICAL___nom_9___a1f8ae96a", "11742": "15___CATEGORICAL___nom_9___a1fec8984", "11743": "15___CATEGORICAL___nom_9___a1fed290d", "11744": "15___CATEGORICAL___nom_9___a20873426", "11745": "15___CATEGORICAL___nom_9___a21238386", "11746": "15___CATEGORICAL___nom_9___a224142d1", "11747": "15___CATEGORICAL___nom_9___a2292fca0", "11748": "15___CATEGORICAL___nom_9___a229e06b4", "11749": "15___CATEGORICAL___nom_9___a22a38a22", "11750": "15___CATEGORICAL___nom_9___a22c85f21", "11751": "15___CATEGORICAL___nom_9___a232004fa", "11752": "15___CATEGORICAL___nom_9___a2365f5ac", "11753": "15___CATEGORICAL___nom_9___a23af3720", "11754": "15___CATEGORICAL___nom_9___a2471fd44", "11755": "15___CATEGORICAL___nom_9___a249a5bcc", "11756": "15___CATEGORICAL___nom_9___a25c408a1", "11757": "15___CATEGORICAL___nom_9___a25e2c4a6", "11758": "15___CATEGORICAL___nom_9___a25f77c1e", "11759": "15___CATEGORICAL___nom_9___a26022b6a", "11760": "15___CATEGORICAL___nom_9___a26332629", "11761": "15___CATEGORICAL___nom_9___a2633a7ac", "11762": "15___CATEGORICAL___nom_9___a26409255", "11763": "15___CATEGORICAL___nom_9___a26460932", "11764": "15___CATEGORICAL___nom_9___a265878f5", "11765": "15___CATEGORICAL___nom_9___a266712f2", "11766": "15___CATEGORICAL___nom_9___a269d5e52", "11767": "15___CATEGORICAL___nom_9___a26cd976c", "11768": "15___CATEGORICAL___nom_9___a26dbe1a3", "11769": "15___CATEGORICAL___nom_9___a2726b7d8", "11770": "15___CATEGORICAL___nom_9___a2740319d", "11771": "15___CATEGORICAL___nom_9___a28111637", "11772": "15___CATEGORICAL___nom_9___a284ff9c2", "11773": "15___CATEGORICAL___nom_9___a28989ee9", "11774": "15___CATEGORICAL___nom_9___a28d07431", "11775": "15___CATEGORICAL___nom_9___a2963fcad", "11776": "15___CATEGORICAL___nom_9___a299efc1c", "11777": "15___CATEGORICAL___nom_9___a29b64e6a", "11778": "15___CATEGORICAL___nom_9___a29c0449c", "11779": "15___CATEGORICAL___nom_9___a2a83b793", "11780": "15___CATEGORICAL___nom_9___a2aab8197", "11781": "15___CATEGORICAL___nom_9___a2b30612e", "11782": "15___CATEGORICAL___nom_9___a2b7534bf", "11783": "15___CATEGORICAL___nom_9___a2b8b85ac", "11784": "15___CATEGORICAL___nom_9___a2ba1b7ce", "11785": "15___CATEGORICAL___nom_9___a2cb3d08e", "11786": "15___CATEGORICAL___nom_9___a2dc013dd", "11787": "15___CATEGORICAL___nom_9___a2ee0d4d8", "11788": "15___CATEGORICAL___nom_9___a2f73ff75", "11789": "15___CATEGORICAL___nom_9___a2fc32801", "11790": "15___CATEGORICAL___nom_9___a3051b778", "11791": "15___CATEGORICAL___nom_9___a30787d44", "11792": "15___CATEGORICAL___nom_9___a316557bb", "11793": "15___CATEGORICAL___nom_9___a31b4580c", "11794": "15___CATEGORICAL___nom_9___a3239454d", "11795": "15___CATEGORICAL___nom_9___a32a719f2", "11796": "15___CATEGORICAL___nom_9___a3409a0da", "11797": "15___CATEGORICAL___nom_9___a35486729", "11798": "15___CATEGORICAL___nom_9___a356dd526", "11799": "15___CATEGORICAL___nom_9___a357a88d1", "11800": "15___CATEGORICAL___nom_9___a3667c807", "11801": "15___CATEGORICAL___nom_9___a373b6f81", "11802": "15___CATEGORICAL___nom_9___a37d95ec8", "11803": "15___CATEGORICAL___nom_9___a37ea5d0c", "11804": "15___CATEGORICAL___nom_9___a383c93be", "11805": "15___CATEGORICAL___nom_9___a38c00e48", "11806": "15___CATEGORICAL___nom_9___a39d56c78", "11807": "15___CATEGORICAL___nom_9___a39d86d39", "11808": "15___CATEGORICAL___nom_9___a39fa137a", "11809": "15___CATEGORICAL___nom_9___a3a1e9d42", "11810": "15___CATEGORICAL___nom_9___a3a41e8f2", "11811": "15___CATEGORICAL___nom_9___a3a4772c7", "11812": "15___CATEGORICAL___nom_9___a3ab6d700", "11813": "15___CATEGORICAL___nom_9___a3ad33fe9", "11814": "15___CATEGORICAL___nom_9___a3af6c11e", "11815": "15___CATEGORICAL___nom_9___a3ba6dd45", "11816": "15___CATEGORICAL___nom_9___a3cea6bc2", "11817": "15___CATEGORICAL___nom_9___a3d7e2a59", "11818": "15___CATEGORICAL___nom_9___a3e041b20", "11819": "15___CATEGORICAL___nom_9___a3e6bfe3a", "11820": "15___CATEGORICAL___nom_9___a3eb1f0b8", "11821": "15___CATEGORICAL___nom_9___a3ef0b932", "11822": "15___CATEGORICAL___nom_9___a400e392b", "11823": "15___CATEGORICAL___nom_9___a4011e9a0", "11824": "15___CATEGORICAL___nom_9___a407bc4f5", "11825": "15___CATEGORICAL___nom_9___a421d226c", "11826": "15___CATEGORICAL___nom_9___a429e63b6", "11827": "15___CATEGORICAL___nom_9___a42a30564", "11828": "15___CATEGORICAL___nom_9___a42b80c1d", "11829": "15___CATEGORICAL___nom_9___a4322313e", "11830": "15___CATEGORICAL___nom_9___a43e1fbca", "11831": "15___CATEGORICAL___nom_9___a4411c5ab", "11832": "15___CATEGORICAL___nom_9___a442b7ab6", "11833": "15___CATEGORICAL___nom_9___a444d152e", "11834": "15___CATEGORICAL___nom_9___a446077e9", "11835": "15___CATEGORICAL___nom_9___a446266d3", "11836": "15___CATEGORICAL___nom_9___a448950b7", "11837": "15___CATEGORICAL___nom_9___a44b2f07b", "11838": "15___CATEGORICAL___nom_9___a44e7169d", "11839": "15___CATEGORICAL___nom_9___a451d30cc", "11840": "15___CATEGORICAL___nom_9___a459654c5", "11841": "15___CATEGORICAL___nom_9___a45a3489d", "11842": "15___CATEGORICAL___nom_9___a4614d544", "11843": "15___CATEGORICAL___nom_9___a47518a03", "11844": "15___CATEGORICAL___nom_9___a480fda21", "11845": "15___CATEGORICAL___nom_9___a490d8cfa", "11846": "15___CATEGORICAL___nom_9___a49283885", "11847": "15___CATEGORICAL___nom_9___a4929f87b", "11848": "15___CATEGORICAL___nom_9___a497e7f7f", "11849": "15___CATEGORICAL___nom_9___a49bde079", "11850": "15___CATEGORICAL___nom_9___a49e2805b", "11851": "15___CATEGORICAL___nom_9___a49e41d63", "11852": "15___CATEGORICAL___nom_9___a4a478d94", "11853": "15___CATEGORICAL___nom_9___a4a6d4fab", "11854": "15___CATEGORICAL___nom_9___a4ade88b6", "11855": "15___CATEGORICAL___nom_9___a4b12f57e", "11856": "15___CATEGORICAL___nom_9___a4b4a06a4", "11857": "15___CATEGORICAL___nom_9___a4b6df577", "11858": "15___CATEGORICAL___nom_9___a4bbe8aad", "11859": "15___CATEGORICAL___nom_9___a4c2401e4", "11860": "15___CATEGORICAL___nom_9___a4c8a744b", "11861": "15___CATEGORICAL___nom_9___a4d4d2d09", "11862": "15___CATEGORICAL___nom_9___a4d6d8f1e", "11863": "15___CATEGORICAL___nom_9___a4d83dcfb", "11864": "15___CATEGORICAL___nom_9___a4dc03730", "11865": "15___CATEGORICAL___nom_9___a4dcdea3b", "11866": "15___CATEGORICAL___nom_9___a4dd89308", "11867": "15___CATEGORICAL___nom_9___a4e4f70c9", "11868": "15___CATEGORICAL___nom_9___a4f249497", "11869": "15___CATEGORICAL___nom_9___a4fade98a", "11870": "15___CATEGORICAL___nom_9___a4fb6b3c9", "11871": "15___CATEGORICAL___nom_9___a50d4a697", "11872": "15___CATEGORICAL___nom_9___a50e05459", "11873": "15___CATEGORICAL___nom_9___a515b93c8", "11874": "15___CATEGORICAL___nom_9___a5203a5fe", "11875": "15___CATEGORICAL___nom_9___a52495a7b", "11876": "15___CATEGORICAL___nom_9___a52b31d1a", "11877": "15___CATEGORICAL___nom_9___a52eda91d", "11878": "15___CATEGORICAL___nom_9___a542319ea", "11879": "15___CATEGORICAL___nom_9___a5492d7e5", "11880": "15___CATEGORICAL___nom_9___a54da74c0", "11881": "15___CATEGORICAL___nom_9___a54fc5913", "11882": "15___CATEGORICAL___nom_9___a5551df92", "11883": "15___CATEGORICAL___nom_9___a557709bc", "11884": "15___CATEGORICAL___nom_9___a5590f67e", "11885": "15___CATEGORICAL___nom_9___a562c01e2", "11886": "15___CATEGORICAL___nom_9___a5635a276", "11887": "15___CATEGORICAL___nom_9___a56653831", "11888": "15___CATEGORICAL___nom_9___a56698b84", "11889": "15___CATEGORICAL___nom_9___a56c3592b", "11890": "15___CATEGORICAL___nom_9___a57513e46", "11891": "15___CATEGORICAL___nom_9___a5777c54b", "11892": "15___CATEGORICAL___nom_9___a58018e98", "11893": "15___CATEGORICAL___nom_9___a58daac2c", "11894": "15___CATEGORICAL___nom_9___a592faad4", "11895": "15___CATEGORICAL___nom_9___a5949374d", "11896": "15___CATEGORICAL___nom_9___a59b9df74", "11897": "15___CATEGORICAL___nom_9___a59c32bfb", "11898": "15___CATEGORICAL___nom_9___a59d136a3", "11899": "15___CATEGORICAL___nom_9___a59d68c87", "11900": "15___CATEGORICAL___nom_9___a5a364b40", "11901": "15___CATEGORICAL___nom_9___a5ad15b13", "11902": "15___CATEGORICAL___nom_9___a5b8da072", "11903": "15___CATEGORICAL___nom_9___a5c696134", "11904": "15___CATEGORICAL___nom_9___a5cb24580", "11905": "15___CATEGORICAL___nom_9___a5d1ddd75", "11906": "15___CATEGORICAL___nom_9___a5dc144e1", "11907": "15___CATEGORICAL___nom_9___a5dfb79de", "11908": "15___CATEGORICAL___nom_9___a5e0eb916", "11909": "15___CATEGORICAL___nom_9___a5e334fce", "11910": "15___CATEGORICAL___nom_9___a5e761079", "11911": "15___CATEGORICAL___nom_9___a5ebc861a", "11912": "15___CATEGORICAL___nom_9___a604506a5", "11913": "15___CATEGORICAL___nom_9___a6071abab", "11914": "15___CATEGORICAL___nom_9___a60f3c4af", "11915": "15___CATEGORICAL___nom_9___a614c6963", "11916": "15___CATEGORICAL___nom_9___a61a67f79", "11917": "15___CATEGORICAL___nom_9___a61b60701", "11918": "15___CATEGORICAL___nom_9___a6219e964", "11919": "15___CATEGORICAL___nom_9___a62de141e", "11920": "15___CATEGORICAL___nom_9___a63870d5b", "11921": "15___CATEGORICAL___nom_9___a638b0fb2", "11922": "15___CATEGORICAL___nom_9___a63a793c4", "11923": "15___CATEGORICAL___nom_9___a64477a61", "11924": "15___CATEGORICAL___nom_9___a649a5631", "11925": "15___CATEGORICAL___nom_9___a6513fd0a", "11926": "15___CATEGORICAL___nom_9___a6560bac2", "11927": "15___CATEGORICAL___nom_9___a65d29149", "11928": "15___CATEGORICAL___nom_9___a6615f7a4", "11929": "15___CATEGORICAL___nom_9___a663a096a", "11930": "15___CATEGORICAL___nom_9___a66bfb35a", "11931": "15___CATEGORICAL___nom_9___a678f2d5d", "11932": "15___CATEGORICAL___nom_9___a679ccbff", "11933": "15___CATEGORICAL___nom_9___a67d22f37", "11934": "15___CATEGORICAL___nom_9___a685ff4ca", "11935": "15___CATEGORICAL___nom_9___a69b29db7", "11936": "15___CATEGORICAL___nom_9___a69c99a9f", "11937": "15___CATEGORICAL___nom_9___a6a30c730", "11938": "15___CATEGORICAL___nom_9___a6ab9c316", "11939": "15___CATEGORICAL___nom_9___a6abf3116", "11940": "15___CATEGORICAL___nom_9___a6ac328e8", "11941": "15___CATEGORICAL___nom_9___a6ad58571", "11942": "15___CATEGORICAL___nom_9___a6b2880ed", "11943": "15___CATEGORICAL___nom_9___a6b590e88", "11944": "15___CATEGORICAL___nom_9___a6bd908f0", "11945": "15___CATEGORICAL___nom_9___a6c703712", "11946": "15___CATEGORICAL___nom_9___a6c937d64", "11947": "15___CATEGORICAL___nom_9___a6cf87931", "11948": "15___CATEGORICAL___nom_9___a6d049db5", "11949": "15___CATEGORICAL___nom_9___a6d30be54", "11950": "15___CATEGORICAL___nom_9___a6d406921", "11951": "15___CATEGORICAL___nom_9___a6dd7414a", "11952": "15___CATEGORICAL___nom_9___a6e3148bb", "11953": "15___CATEGORICAL___nom_9___a6e3b2e55", "11954": "15___CATEGORICAL___nom_9___a6e3d7d09", "11955": "15___CATEGORICAL___nom_9___a6e82c659", "11956": "15___CATEGORICAL___nom_9___a6e94443d", "11957": "15___CATEGORICAL___nom_9___a6e972ca0", "11958": "15___CATEGORICAL___nom_9___a6ed22f64", "11959": "15___CATEGORICAL___nom_9___a6f30d2a5", "11960": "15___CATEGORICAL___nom_9___a6fb9d55e", "11961": "15___CATEGORICAL___nom_9___a701a98e7", "11962": "15___CATEGORICAL___nom_9___a70280052", "11963": "15___CATEGORICAL___nom_9___a702ded3a", "11964": "15___CATEGORICAL___nom_9___a70d9d519", "11965": "15___CATEGORICAL___nom_9___a710b62f8", "11966": "15___CATEGORICAL___nom_9___a71d78679", "11967": "15___CATEGORICAL___nom_9___a71e3c9e9", "11968": "15___CATEGORICAL___nom_9___a71fe57f4", "11969": "15___CATEGORICAL___nom_9___a72777173", "11970": "15___CATEGORICAL___nom_9___a727e2822", "11971": "15___CATEGORICAL___nom_9___a72d663a7", "11972": "15___CATEGORICAL___nom_9___a7569de3a", "11973": "15___CATEGORICAL___nom_9___a75b03e06", "11974": "15___CATEGORICAL___nom_9___a761e9d9a", "11975": "15___CATEGORICAL___nom_9___a778015ec", "11976": "15___CATEGORICAL___nom_9___a778bea28", "11977": "15___CATEGORICAL___nom_9___a77d73fab", "11978": "15___CATEGORICAL___nom_9___a77e30212", "11979": "15___CATEGORICAL___nom_9___a77e71932", "11980": "15___CATEGORICAL___nom_9___a782ea31e", "11981": "15___CATEGORICAL___nom_9___a790e9c56", "11982": "15___CATEGORICAL___nom_9___a796bfc55", "11983": "15___CATEGORICAL___nom_9___a79ca05cc", "11984": "15___CATEGORICAL___nom_9___a79ca1e11", "11985": "15___CATEGORICAL___nom_9___a7a28bc7b", "11986": "15___CATEGORICAL___nom_9___a7a415853", "11987": "15___CATEGORICAL___nom_9___a7a84c080", "11988": "15___CATEGORICAL___nom_9___a7b0611a6", "11989": "15___CATEGORICAL___nom_9___a7b2f9d97", "11990": "15___CATEGORICAL___nom_9___a7c3348cd", "11991": "15___CATEGORICAL___nom_9___a7cabaa08", "11992": "15___CATEGORICAL___nom_9___a7d380fce", "11993": "15___CATEGORICAL___nom_9___a7de84453", "11994": "15___CATEGORICAL___nom_9___a7ded9a8a", "11995": "15___CATEGORICAL___nom_9___a7e08edbb", "11996": "15___CATEGORICAL___nom_9___a7e372a60", "11997": "15___CATEGORICAL___nom_9___a7e9c373a", "11998": "15___CATEGORICAL___nom_9___a7e9d03d9", "11999": "15___CATEGORICAL___nom_9___a7eee00bb", "12000": "15___CATEGORICAL___nom_9___a7f3512f4", "12001": "15___CATEGORICAL___nom_9___a7fa7fc41", "12002": "15___CATEGORICAL___nom_9___a80a52106", "12003": "15___CATEGORICAL___nom_9___a80b24767", "12004": "15___CATEGORICAL___nom_9___a8132291d", "12005": "15___CATEGORICAL___nom_9___a813a1d7f", "12006": "15___CATEGORICAL___nom_9___a81577221", "12007": "15___CATEGORICAL___nom_9___a827ae00f", "12008": "15___CATEGORICAL___nom_9___a828c6905", "12009": "15___CATEGORICAL___nom_9___a82abf8f1", "12010": "15___CATEGORICAL___nom_9___a82af753f", "12011": "15___CATEGORICAL___nom_9___a82d67bbf", "12012": "15___CATEGORICAL___nom_9___a82fb3f7d", "12013": "15___CATEGORICAL___nom_9___a8306dfb4", "12014": "15___CATEGORICAL___nom_9___a8342a437", "12015": "15___CATEGORICAL___nom_9___a8363744b", "12016": "15___CATEGORICAL___nom_9___a838059c7", "12017": "15___CATEGORICAL___nom_9___a83cfb969", "12018": "15___CATEGORICAL___nom_9___a840c394b", "12019": "15___CATEGORICAL___nom_9___a842be772", "12020": "15___CATEGORICAL___nom_9___a849560f9", "12021": "15___CATEGORICAL___nom_9___a84c486f8", "12022": "15___CATEGORICAL___nom_9___a85e6f592", "12023": "15___CATEGORICAL___nom_9___a8642ba56", "12024": "15___CATEGORICAL___nom_9___a86474f82", "12025": "15___CATEGORICAL___nom_9___a869c62d9", "12026": "15___CATEGORICAL___nom_9___a86a2bbd0", "12027": "15___CATEGORICAL___nom_9___a86a52cd8", "12028": "15___CATEGORICAL___nom_9___a86aae46a", "12029": "15___CATEGORICAL___nom_9___a86ce3657", "12030": "15___CATEGORICAL___nom_9___a8873c602", "12031": "15___CATEGORICAL___nom_9___a88f1c55d", "12032": "15___CATEGORICAL___nom_9___a88ff7a60", "12033": "15___CATEGORICAL___nom_9___a89944c3b", "12034": "15___CATEGORICAL___nom_9___a899ce61c", "12035": "15___CATEGORICAL___nom_9___a8a66a64c", "12036": "15___CATEGORICAL___nom_9___a8a73a00a", "12037": "15___CATEGORICAL___nom_9___a8aeb4e86", "12038": "15___CATEGORICAL___nom_9___a8b86cbb7", "12039": "15___CATEGORICAL___nom_9___a8bf52b22", "12040": "15___CATEGORICAL___nom_9___a8c0bfeb0", "12041": "15___CATEGORICAL___nom_9___a8c1c8057", "12042": "15___CATEGORICAL___nom_9___a8c5463fa", "12043": "15___CATEGORICAL___nom_9___a8d62e37a", "12044": "15___CATEGORICAL___nom_9___a8d983de8", "12045": "15___CATEGORICAL___nom_9___a8dc6a20d", "12046": "15___CATEGORICAL___nom_9___a8dff915c", "12047": "15___CATEGORICAL___nom_9___a8e1c572b", "12048": "15___CATEGORICAL___nom_9___a8e695393", "12049": "15___CATEGORICAL___nom_9___a8eaab3af", "12050": "15___CATEGORICAL___nom_9___a8eddb707", "12051": "15___CATEGORICAL___nom_9___a8f3477db", "12052": "15___CATEGORICAL___nom_9___a8f761fed", "12053": "15___CATEGORICAL___nom_9___a8f93c898", "12054": "15___CATEGORICAL___nom_9___a8fbc3122", "12055": "15___CATEGORICAL___nom_9___a918aaa90", "12056": "15___CATEGORICAL___nom_9___a91a4d80f", "12057": "15___CATEGORICAL___nom_9___a91e27bf2", "12058": "15___CATEGORICAL___nom_9___a9211d345", "12059": "15___CATEGORICAL___nom_9___a9224fc66", "12060": "15___CATEGORICAL___nom_9___a926db748", "12061": "15___CATEGORICAL___nom_9___a9281035e", "12062": "15___CATEGORICAL___nom_9___a928ae914", "12063": "15___CATEGORICAL___nom_9___a92c41029", "12064": "15___CATEGORICAL___nom_9___a9319a0d5", "12065": "15___CATEGORICAL___nom_9___a931cd56c", "12066": "15___CATEGORICAL___nom_9___a93316b87", "12067": "15___CATEGORICAL___nom_9___a938706b2", "12068": "15___CATEGORICAL___nom_9___a94581ada", "12069": "15___CATEGORICAL___nom_9___a9487c60b", "12070": "15___CATEGORICAL___nom_9___a9500432b", "12071": "15___CATEGORICAL___nom_9___a956a02ba", "12072": "15___CATEGORICAL___nom_9___a961608da", "12073": "15___CATEGORICAL___nom_9___a963812ae", "12074": "15___CATEGORICAL___nom_9___a9642b5ac", "12075": "15___CATEGORICAL___nom_9___a96bbf78b", "12076": "15___CATEGORICAL___nom_9___a9704afbe", "12077": "15___CATEGORICAL___nom_9___a9861856a", "12078": "15___CATEGORICAL___nom_9___a98a8f91a", "12079": "15___CATEGORICAL___nom_9___a98bf62b6", "12080": "15___CATEGORICAL___nom_9___a98d7389b", "12081": "15___CATEGORICAL___nom_9___a990a6954", "12082": "15___CATEGORICAL___nom_9___a9960b948", "12083": "15___CATEGORICAL___nom_9___a996a9557", "12084": "15___CATEGORICAL___nom_9___a99b4ea31", "12085": "15___CATEGORICAL___nom_9___a9a10722d", "12086": "15___CATEGORICAL___nom_9___a9a332dc7", "12087": "15___CATEGORICAL___nom_9___a9b1b9add", "12088": "15___CATEGORICAL___nom_9___a9b2ae1d8", "12089": "15___CATEGORICAL___nom_9___a9b38b618", "12090": "15___CATEGORICAL___nom_9___a9b3f0e62", "12091": "15___CATEGORICAL___nom_9___a9b4d34b6", "12092": "15___CATEGORICAL___nom_9___a9b7bfbf4", "12093": "15___CATEGORICAL___nom_9___a9c3b1a1e", "12094": "15___CATEGORICAL___nom_9___a9c6ca37b", "12095": "15___CATEGORICAL___nom_9___a9cb48b28", "12096": "15___CATEGORICAL___nom_9___a9ce3334c", "12097": "15___CATEGORICAL___nom_9___a9d63b72c", "12098": "15___CATEGORICAL___nom_9___a9dbaf01e", "12099": "15___CATEGORICAL___nom_9___a9df6c498", "12100": "15___CATEGORICAL___nom_9___a9e25a1a8", "12101": "15___CATEGORICAL___nom_9___a9e3951c3", "12102": "15___CATEGORICAL___nom_9___a9e87d557", "12103": "15___CATEGORICAL___nom_9___a9eb93128", "12104": "15___CATEGORICAL___nom_9___a9f2f87b8", "12105": "15___CATEGORICAL___nom_9___a9f495f6f", "12106": "15___CATEGORICAL___nom_9___a9f6b38ab", "12107": "15___CATEGORICAL___nom_9___a9fa59a32", "12108": "15___CATEGORICAL___nom_9___aa08ec1bc", "12109": "15___CATEGORICAL___nom_9___aa0ccc4a4", "12110": "15___CATEGORICAL___nom_9___aa0f30abd", "12111": "15___CATEGORICAL___nom_9___aa12aabfd", "12112": "15___CATEGORICAL___nom_9___aa1477b3e", "12113": "15___CATEGORICAL___nom_9___aa16f00d5", "12114": "15___CATEGORICAL___nom_9___aa17340ed", "12115": "15___CATEGORICAL___nom_9___aa1796b81", "12116": "15___CATEGORICAL___nom_9___aa38470e2", "12117": "15___CATEGORICAL___nom_9___aa3f5255d", "12118": "15___CATEGORICAL___nom_9___aa47dd92b", "12119": "15___CATEGORICAL___nom_9___aa4ec2d8e", "12120": "15___CATEGORICAL___nom_9___aa55ff386", "12121": "15___CATEGORICAL___nom_9___aa6143ad5", "12122": "15___CATEGORICAL___nom_9___aa6a31d6f", "12123": "15___CATEGORICAL___nom_9___aa70d5075", "12124": "15___CATEGORICAL___nom_9___aa71bb9ae", "12125": "15___CATEGORICAL___nom_9___aa72880b0", "12126": "15___CATEGORICAL___nom_9___aa7acf75a", "12127": "15___CATEGORICAL___nom_9___aa7d99de5", "12128": "15___CATEGORICAL___nom_9___aa7f29b41", "12129": "15___CATEGORICAL___nom_9___aa8324519", "12130": "15___CATEGORICAL___nom_9___aa8caef11", "12131": "15___CATEGORICAL___nom_9___aaa15821b", "12132": "15___CATEGORICAL___nom_9___aaa526d74", "12133": "15___CATEGORICAL___nom_9___aaab46f42", "12134": "15___CATEGORICAL___nom_9___aaaee8c49", "12135": "15___CATEGORICAL___nom_9___aab3fb822", "12136": "15___CATEGORICAL___nom_9___aab530a24", "12137": "15___CATEGORICAL___nom_9___aab557eb2", "12138": "15___CATEGORICAL___nom_9___aab66d355", "12139": "15___CATEGORICAL___nom_9___aab8c082a", "12140": "15___CATEGORICAL___nom_9___aac5b5b21", "12141": "15___CATEGORICAL___nom_9___aac5e6ef0", "12142": "15___CATEGORICAL___nom_9___aacbcf59e", "12143": "15___CATEGORICAL___nom_9___aacdc2b46", "12144": "15___CATEGORICAL___nom_9___aacf26656", "12145": "15___CATEGORICAL___nom_9___aad04bd2e", "12146": "15___CATEGORICAL___nom_9___aad4133ea", "12147": "15___CATEGORICAL___nom_9___aad80d230", "12148": "15___CATEGORICAL___nom_9___aad8c29a8", "12149": "15___CATEGORICAL___nom_9___aada5db52", "12150": "15___CATEGORICAL___nom_9___aaee338d3", "12151": "15___CATEGORICAL___nom_9___aaefb93ff", "12152": "15___CATEGORICAL___nom_9___aaf0b0e3d", "12153": "15___CATEGORICAL___nom_9___aaf1b7329", "12154": "15___CATEGORICAL___nom_9___aaf2a568a", "12155": "15___CATEGORICAL___nom_9___aaf4b8b6e", "12156": "15___CATEGORICAL___nom_9___aaf5b4187", "12157": "15___CATEGORICAL___nom_9___aaf9cf0fd", "12158": "15___CATEGORICAL___nom_9___aafa6ab5e", "12159": "15___CATEGORICAL___nom_9___ab0ce192b", "12160": "15___CATEGORICAL___nom_9___ab150bee6", "12161": "15___CATEGORICAL___nom_9___ab235c867", "12162": "15___CATEGORICAL___nom_9___ab32fb6d9", "12163": "15___CATEGORICAL___nom_9___ab539bd3c", "12164": "15___CATEGORICAL___nom_9___ab56fccc3", "12165": "15___CATEGORICAL___nom_9___ab5b5dec3", "12166": "15___CATEGORICAL___nom_9___ab5f3eee8", "12167": "15___CATEGORICAL___nom_9___ab634b9f6", "12168": "15___CATEGORICAL___nom_9___ab6506257", "12169": "15___CATEGORICAL___nom_9___ab7bf81aa", "12170": "15___CATEGORICAL___nom_9___ab7e858b4", "12171": "15___CATEGORICAL___nom_9___ab8d1a23e", "12172": "15___CATEGORICAL___nom_9___ab9892c11", "12173": "15___CATEGORICAL___nom_9___ab9b63710", "12174": "15___CATEGORICAL___nom_9___ab9dd3f6b", "12175": "15___CATEGORICAL___nom_9___aba486106", "12176": "15___CATEGORICAL___nom_9___aba61f0b1", "12177": "15___CATEGORICAL___nom_9___abaa5bd35", "12178": "15___CATEGORICAL___nom_9___abb37c343", "12179": "15___CATEGORICAL___nom_9___abb81c1f3", "12180": "15___CATEGORICAL___nom_9___abc0e1a98", "12181": "15___CATEGORICAL___nom_9___abc461ea4", "12182": "15___CATEGORICAL___nom_9___abc470d08", "12183": "15___CATEGORICAL___nom_9___abcc8ae20", "12184": "15___CATEGORICAL___nom_9___abd70d126", "12185": "15___CATEGORICAL___nom_9___abd88224b", "12186": "15___CATEGORICAL___nom_9___abdc790b4", "12187": "15___CATEGORICAL___nom_9___abde83f58", "12188": "15___CATEGORICAL___nom_9___abe290c03", "12189": "15___CATEGORICAL___nom_9___abedd9b2d", "12190": "15___CATEGORICAL___nom_9___abf0c6a5a", "12191": "15___CATEGORICAL___nom_9___abf121e5b", "12192": "15___CATEGORICAL___nom_9___abf51c64d", "12193": "15___CATEGORICAL___nom_9___abf83367c", "12194": "15___CATEGORICAL___nom_9___abfdb0ce6", "12195": "15___CATEGORICAL___nom_9___ac091bd4e", "12196": "15___CATEGORICAL___nom_9___ac092b73b", "12197": "15___CATEGORICAL___nom_9___ac14fc6c7", "12198": "15___CATEGORICAL___nom_9___ac17bd593", "12199": "15___CATEGORICAL___nom_9___ac17ddf19", "12200": "15___CATEGORICAL___nom_9___ac1fe16c8", "12201": "15___CATEGORICAL___nom_9___ac21b4479", "12202": "15___CATEGORICAL___nom_9___ac23f2a38", "12203": "15___CATEGORICAL___nom_9___ac2ddc466", "12204": "15___CATEGORICAL___nom_9___ac345a409", "12205": "15___CATEGORICAL___nom_9___ac359f899", "12206": "15___CATEGORICAL___nom_9___ac37218ad", "12207": "15___CATEGORICAL___nom_9___ac40035de", "12208": "15___CATEGORICAL___nom_9___ac4325a89", "12209": "15___CATEGORICAL___nom_9___ac4a5b5a0", "12210": "15___CATEGORICAL___nom_9___ac4cade80", "12211": "15___CATEGORICAL___nom_9___ac4f98ec4", "12212": "15___CATEGORICAL___nom_9___ac4fbf7cc", "12213": "15___CATEGORICAL___nom_9___ac507224c", "12214": "15___CATEGORICAL___nom_9___ac541abb1", "12215": "15___CATEGORICAL___nom_9___ac5f20326", "12216": "15___CATEGORICAL___nom_9___ac60b4dad", "12217": "15___CATEGORICAL___nom_9___ac61f5d41", "12218": "15___CATEGORICAL___nom_9___ac6871cae", "12219": "15___CATEGORICAL___nom_9___ac6b43f24", "12220": "15___CATEGORICAL___nom_9___ac75f6c82", "12221": "15___CATEGORICAL___nom_9___ac762920d", "12222": "15___CATEGORICAL___nom_9___ac7ba5f96", "12223": "15___CATEGORICAL___nom_9___ac7c48999", "12224": "15___CATEGORICAL___nom_9___ac8b0692c", "12225": "15___CATEGORICAL___nom_9___ac8f76b2b", "12226": "15___CATEGORICAL___nom_9___ac991c0da", "12227": "15___CATEGORICAL___nom_9___aca374e03", "12228": "15___CATEGORICAL___nom_9___acaafbfa7", "12229": "15___CATEGORICAL___nom_9___acac62b2e", "12230": "15___CATEGORICAL___nom_9___acaea5c74", "12231": "15___CATEGORICAL___nom_9___acb1c7600", "12232": "15___CATEGORICAL___nom_9___acc31291f", "12233": "15___CATEGORICAL___nom_9___acc5f3959", "12234": "15___CATEGORICAL___nom_9___acc8b9caa", "12235": "15___CATEGORICAL___nom_9___acccab5bf", "12236": "15___CATEGORICAL___nom_9___acccc43ca", "12237": "15___CATEGORICAL___nom_9___accce009e", "12238": "15___CATEGORICAL___nom_9___acd055651", "12239": "15___CATEGORICAL___nom_9___acd97abe6", "12240": "15___CATEGORICAL___nom_9___acdbd2f26", "12241": "15___CATEGORICAL___nom_9___ace629272", "12242": "15___CATEGORICAL___nom_9___acf2d02d0", "12243": "15___CATEGORICAL___nom_9___acffe5007", "12244": "15___CATEGORICAL___nom_9___ad07ff272", "12245": "15___CATEGORICAL___nom_9___ad19fea5c", "12246": "15___CATEGORICAL___nom_9___ad1af2b45", "12247": "15___CATEGORICAL___nom_9___ad3451886", "12248": "15___CATEGORICAL___nom_9___ad34ef3da", "12249": "15___CATEGORICAL___nom_9___ad4081e19", "12250": "15___CATEGORICAL___nom_9___ad40dd81f", "12251": "15___CATEGORICAL___nom_9___ad423fdc8", "12252": "15___CATEGORICAL___nom_9___ad56acb62", "12253": "15___CATEGORICAL___nom_9___ad5bfe8fd", "12254": "15___CATEGORICAL___nom_9___ad5eaed76", "12255": "15___CATEGORICAL___nom_9___ad5fbb2c8", "12256": "15___CATEGORICAL___nom_9___ad631732e", "12257": "15___CATEGORICAL___nom_9___ad68fa76a", "12258": "15___CATEGORICAL___nom_9___ad6942679", "12259": "15___CATEGORICAL___nom_9___ad74f0b5c", "12260": "15___CATEGORICAL___nom_9___ad783c402", "12261": "15___CATEGORICAL___nom_9___ad80c6bb0", "12262": "15___CATEGORICAL___nom_9___ad84e9cd5", "12263": "15___CATEGORICAL___nom_9___ad874e496", "12264": "15___CATEGORICAL___nom_9___ad88cffca", "12265": "15___CATEGORICAL___nom_9___ad8b6e30a", "12266": "15___CATEGORICAL___nom_9___ad9151823", "12267": "15___CATEGORICAL___nom_9___ad994da83", "12268": "15___CATEGORICAL___nom_9___ad9bc2189", "12269": "15___CATEGORICAL___nom_9___ad9c22f57", "12270": "15___CATEGORICAL___nom_9___ada98f193", "12271": "15___CATEGORICAL___nom_9___adaabde41", "12272": "15___CATEGORICAL___nom_9___adb6c4865", "12273": "15___CATEGORICAL___nom_9___adb70e8de", "12274": "15___CATEGORICAL___nom_9___adba175af", "12275": "15___CATEGORICAL___nom_9___adbfe1549", "12276": "15___CATEGORICAL___nom_9___adc2cac85", "12277": "15___CATEGORICAL___nom_9___adc408e10", "12278": "15___CATEGORICAL___nom_9___adcb79e8e", "12279": "15___CATEGORICAL___nom_9___add170035", "12280": "15___CATEGORICAL___nom_9___add294f09", "12281": "15___CATEGORICAL___nom_9___add68232b", "12282": "15___CATEGORICAL___nom_9___addc6f2d4", "12283": "15___CATEGORICAL___nom_9___addfd7e38", "12284": "15___CATEGORICAL___nom_9___ade5b3ae5", "12285": "15___CATEGORICAL___nom_9___ade63f0c7", "12286": "15___CATEGORICAL___nom_9___ade6e0cf3", "12287": "15___CATEGORICAL___nom_9___adf5b5791", "12288": "15___CATEGORICAL___nom_9___adfa6de8c", "12289": "15___CATEGORICAL___nom_9___adfb075f0", "12290": "15___CATEGORICAL___nom_9___ae0040cac", "12291": "15___CATEGORICAL___nom_9___ae043a257", "12292": "15___CATEGORICAL___nom_9___ae10ce7e5", "12293": "15___CATEGORICAL___nom_9___ae12111a1", "12294": "15___CATEGORICAL___nom_9___ae16d207a", "12295": "15___CATEGORICAL___nom_9___ae25fba9a", "12296": "15___CATEGORICAL___nom_9___ae289a051", "12297": "15___CATEGORICAL___nom_9___ae2d4009e", "12298": "15___CATEGORICAL___nom_9___ae2fe0e32", "12299": "15___CATEGORICAL___nom_9___ae328212a", "12300": "15___CATEGORICAL___nom_9___ae32b58db", "12301": "15___CATEGORICAL___nom_9___ae34b32c6", "12302": "15___CATEGORICAL___nom_9___ae37593d6", "12303": "15___CATEGORICAL___nom_9___ae3af5bfc", "12304": "15___CATEGORICAL___nom_9___ae44395f6", "12305": "15___CATEGORICAL___nom_9___ae46297c2", "12306": "15___CATEGORICAL___nom_9___ae464e7f5", "12307": "15___CATEGORICAL___nom_9___ae4aea38c", "12308": "15___CATEGORICAL___nom_9___ae4cd26f1", "12309": "15___CATEGORICAL___nom_9___ae4d27083", "12310": "15___CATEGORICAL___nom_9___ae543d563", "12311": "15___CATEGORICAL___nom_9___ae55cf4ff", "12312": "15___CATEGORICAL___nom_9___ae5b757e2", "12313": "15___CATEGORICAL___nom_9___ae5ca8cca", "12314": "15___CATEGORICAL___nom_9___ae5d2278e", "12315": "15___CATEGORICAL___nom_9___ae6800dd0", "12316": "15___CATEGORICAL___nom_9___ae686a6bf", "12317": "15___CATEGORICAL___nom_9___ae6e09fcc", "12318": "15___CATEGORICAL___nom_9___ae709c39d", "12319": "15___CATEGORICAL___nom_9___ae7726e78", "12320": "15___CATEGORICAL___nom_9___ae7f7036e", "12321": "15___CATEGORICAL___nom_9___ae825fafb", "12322": "15___CATEGORICAL___nom_9___ae87eafff", "12323": "15___CATEGORICAL___nom_9___ae8d8b006", "12324": "15___CATEGORICAL___nom_9___ae8dc8921", "12325": "15___CATEGORICAL___nom_9___ae8f37296", "12326": "15___CATEGORICAL___nom_9___ae92c1283", "12327": "15___CATEGORICAL___nom_9___ae9a095a4", "12328": "15___CATEGORICAL___nom_9___aea1209f2", "12329": "15___CATEGORICAL___nom_9___aea353342", "12330": "15___CATEGORICAL___nom_9___aea8fe184", "12331": "15___CATEGORICAL___nom_9___aea9a5990", "12332": "15___CATEGORICAL___nom_9___aeb2ba907", "12333": "15___CATEGORICAL___nom_9___aeb3bfcc9", "12334": "15___CATEGORICAL___nom_9___aeb5895d3", "12335": "15___CATEGORICAL___nom_9___aeb5c1fda", "12336": "15___CATEGORICAL___nom_9___aeb8220f7", "12337": "15___CATEGORICAL___nom_9___aebe4e815", "12338": "15___CATEGORICAL___nom_9___aec12d1d1", "12339": "15___CATEGORICAL___nom_9___aec56161a", "12340": "15___CATEGORICAL___nom_9___aec8523d8", "12341": "15___CATEGORICAL___nom_9___aed509d65", "12342": "15___CATEGORICAL___nom_9___aed55d886", "12343": "15___CATEGORICAL___nom_9___aed6113fe", "12344": "15___CATEGORICAL___nom_9___aed7a4b60", "12345": "15___CATEGORICAL___nom_9___aed85c235", "12346": "15___CATEGORICAL___nom_9___aeda4395b", "12347": "15___CATEGORICAL___nom_9___aedd69d68", "12348": "15___CATEGORICAL___nom_9___aee0b9e67", "12349": "15___CATEGORICAL___nom_9___aee319236", "12350": "15___CATEGORICAL___nom_9___aee640eb1", "12351": "15___CATEGORICAL___nom_9___aee648015", "12352": "15___CATEGORICAL___nom_9___aee66af34", "12353": "15___CATEGORICAL___nom_9___aeef47679", "12354": "15___CATEGORICAL___nom_9___aef01d6f9", "12355": "15___CATEGORICAL___nom_9___aefdd6fd7", "12356": "15___CATEGORICAL___nom_9___af0acb8dd", "12357": "15___CATEGORICAL___nom_9___af0c42131", "12358": "15___CATEGORICAL___nom_9___af10045a7", "12359": "15___CATEGORICAL___nom_9___af1c1642b", "12360": "15___CATEGORICAL___nom_9___af2aa15d0", "12361": "15___CATEGORICAL___nom_9___af2ce5e24", "12362": "15___CATEGORICAL___nom_9___af2d173f4", "12363": "15___CATEGORICAL___nom_9___af2e5efd8", "12364": "15___CATEGORICAL___nom_9___af313bcbd", "12365": "15___CATEGORICAL___nom_9___af3354181", "12366": "15___CATEGORICAL___nom_9___af3c39440", "12367": "15___CATEGORICAL___nom_9___af3d31c67", "12368": "15___CATEGORICAL___nom_9___af417feb8", "12369": "15___CATEGORICAL___nom_9___af4327d6f", "12370": "15___CATEGORICAL___nom_9___af454196b", "12371": "15___CATEGORICAL___nom_9___af49a2f49", "12372": "15___CATEGORICAL___nom_9___af52986d3", "12373": "15___CATEGORICAL___nom_9___af5c81262", "12374": "15___CATEGORICAL___nom_9___af615b827", "12375": "15___CATEGORICAL___nom_9___af65bfd48", "12376": "15___CATEGORICAL___nom_9___af6ad4519", "12377": "15___CATEGORICAL___nom_9___af6cbd9fb", "12378": "15___CATEGORICAL___nom_9___af7202bff", "12379": "15___CATEGORICAL___nom_9___af74a658b", "12380": "15___CATEGORICAL___nom_9___af7ee8845", "12381": "15___CATEGORICAL___nom_9___af85e1c67", "12382": "15___CATEGORICAL___nom_9___af85f8fc6", "12383": "15___CATEGORICAL___nom_9___af8a46ff2", "12384": "15___CATEGORICAL___nom_9___af8a565e9", "12385": "15___CATEGORICAL___nom_9___af920cd89", "12386": "15___CATEGORICAL___nom_9___af96548a8", "12387": "15___CATEGORICAL___nom_9___af9a0d3fc", "12388": "15___CATEGORICAL___nom_9___af9f0d79a", "12389": "15___CATEGORICAL___nom_9___af9f2e644", "12390": "15___CATEGORICAL___nom_9___afa3296e7", "12391": "15___CATEGORICAL___nom_9___afb0edf55", "12392": "15___CATEGORICAL___nom_9___afb707a52", "12393": "15___CATEGORICAL___nom_9___afb744db1", "12394": "15___CATEGORICAL___nom_9___afbd3c34d", "12395": "15___CATEGORICAL___nom_9___afbf04625", "12396": "15___CATEGORICAL___nom_9___afc90e1fe", "12397": "15___CATEGORICAL___nom_9___afcbfa52c", "12398": "15___CATEGORICAL___nom_9___afd236b7d", "12399": "15___CATEGORICAL___nom_9___afd2e58f2", "12400": "15___CATEGORICAL___nom_9___afd8fdc69", "12401": "15___CATEGORICAL___nom_9___afe2945cd", "12402": "15___CATEGORICAL___nom_9___afe7317d4", "12403": "15___CATEGORICAL___nom_9___afecee992", "12404": "15___CATEGORICAL___nom_9___aff0f71f7", "12405": "15___CATEGORICAL___nom_9___affc1a52c", "12406": "15___CATEGORICAL___nom_9___affeda826", "12407": "15___CATEGORICAL___nom_9___b001b4985", "12408": "15___CATEGORICAL___nom_9___b001f46f4", "12409": "15___CATEGORICAL___nom_9___b0094fa71", "12410": "15___CATEGORICAL___nom_9___b0095b48f", "12411": "15___CATEGORICAL___nom_9___b0186ffa4", "12412": "15___CATEGORICAL___nom_9___b01951b33", "12413": "15___CATEGORICAL___nom_9___b01f1a559", "12414": "15___CATEGORICAL___nom_9___b0248f236", "12415": "15___CATEGORICAL___nom_9___b032d8e14", "12416": "15___CATEGORICAL___nom_9___b035c5926", "12417": "15___CATEGORICAL___nom_9___b036afc42", "12418": "15___CATEGORICAL___nom_9___b036fc29d", "12419": "15___CATEGORICAL___nom_9___b0406edeb", "12420": "15___CATEGORICAL___nom_9___b0420b01d", "12421": "15___CATEGORICAL___nom_9___b043b3d84", "12422": "15___CATEGORICAL___nom_9___b0452728c", "12423": "15___CATEGORICAL___nom_9___b04c62345", "12424": "15___CATEGORICAL___nom_9___b053948a3", "12425": "15___CATEGORICAL___nom_9___b05eacb32", "12426": "15___CATEGORICAL___nom_9___b05fb863f", "12427": "15___CATEGORICAL___nom_9___b064c7b68", "12428": "15___CATEGORICAL___nom_9___b06add9dc", "12429": "15___CATEGORICAL___nom_9___b06cd55a2", "12430": "15___CATEGORICAL___nom_9___b06ec96c9", "12431": "15___CATEGORICAL___nom_9___b08218af1", "12432": "15___CATEGORICAL___nom_9___b08e679fb", "12433": "15___CATEGORICAL___nom_9___b098e6312", "12434": "15___CATEGORICAL___nom_9___b09abe4e1", "12435": "15___CATEGORICAL___nom_9___b0a5e948b", "12436": "15___CATEGORICAL___nom_9___b0a6024f7", "12437": "15___CATEGORICAL___nom_9___b0b3e7a55", "12438": "15___CATEGORICAL___nom_9___b0bbd229e", "12439": "15___CATEGORICAL___nom_9___b0bcbe0e9", "12440": "15___CATEGORICAL___nom_9___b0cafa8f0", "12441": "15___CATEGORICAL___nom_9___b0cc03b01", "12442": "15___CATEGORICAL___nom_9___b0ce9c29a", "12443": "15___CATEGORICAL___nom_9___b0cf0ddfa", "12444": "15___CATEGORICAL___nom_9___b0d0e8fdd", "12445": "15___CATEGORICAL___nom_9___b0d19100d", "12446": "15___CATEGORICAL___nom_9___b0d4c6404", "12447": "15___CATEGORICAL___nom_9___b0d67f003", "12448": "15___CATEGORICAL___nom_9___b0da93130", "12449": "15___CATEGORICAL___nom_9___b0dc56894", "12450": "15___CATEGORICAL___nom_9___b0f64f702", "12451": "15___CATEGORICAL___nom_9___b0faf93d2", "12452": "15___CATEGORICAL___nom_9___b0fd12e89", "12453": "15___CATEGORICAL___nom_9___b0fe4c49f", "12454": "15___CATEGORICAL___nom_9___b0ff8e580", "12455": "15___CATEGORICAL___nom_9___b0ffc8232", "12456": "15___CATEGORICAL___nom_9___b10368f84", "12457": "15___CATEGORICAL___nom_9___b10a262d1", "12458": "15___CATEGORICAL___nom_9___b10b16967", "12459": "15___CATEGORICAL___nom_9___b10f612bc", "12460": "15___CATEGORICAL___nom_9___b11664ae6", "12461": "15___CATEGORICAL___nom_9___b120cf241", "12462": "15___CATEGORICAL___nom_9___b123534bd", "12463": "15___CATEGORICAL___nom_9___b138889e0", "12464": "15___CATEGORICAL___nom_9___b141514ef", "12465": "15___CATEGORICAL___nom_9___b1453a196", "12466": "15___CATEGORICAL___nom_9___b15364c1d", "12467": "15___CATEGORICAL___nom_9___b1578570b", "12468": "15___CATEGORICAL___nom_9___b164b72a7", "12469": "15___CATEGORICAL___nom_9___b165bd7ec", "12470": "15___CATEGORICAL___nom_9___b1708ce64", "12471": "15___CATEGORICAL___nom_9___b17198074", "12472": "15___CATEGORICAL___nom_9___b1725c193", "12473": "15___CATEGORICAL___nom_9___b178c3f71", "12474": "15___CATEGORICAL___nom_9___b18070556", "12475": "15___CATEGORICAL___nom_9___b18273261", "12476": "15___CATEGORICAL___nom_9___b18356db4", "12477": "15___CATEGORICAL___nom_9___b1867d321", "12478": "15___CATEGORICAL___nom_9___b196d6aad", "12479": "15___CATEGORICAL___nom_9___b19c8a15e", "12480": "15___CATEGORICAL___nom_9___b1a2f7da7", "12481": "15___CATEGORICAL___nom_9___b1a65c9ed", "12482": "15___CATEGORICAL___nom_9___b1ab56ba1", "12483": "15___CATEGORICAL___nom_9___b1abdb814", "12484": "15___CATEGORICAL___nom_9___b1b3fea44", "12485": "15___CATEGORICAL___nom_9___b1b415218", "12486": "15___CATEGORICAL___nom_9___b1b8d395f", "12487": "15___CATEGORICAL___nom_9___b1c057e25", "12488": "15___CATEGORICAL___nom_9___b1c9e4047", "12489": "15___CATEGORICAL___nom_9___b1cd8ba05", "12490": "15___CATEGORICAL___nom_9___b1d340ea7", "12491": "15___CATEGORICAL___nom_9___b1d478247", "12492": "15___CATEGORICAL___nom_9___b1d6921c3", "12493": "15___CATEGORICAL___nom_9___b1d8d7e14", "12494": "15___CATEGORICAL___nom_9___b1e502cb8", "12495": "15___CATEGORICAL___nom_9___b1e9505da", "12496": "15___CATEGORICAL___nom_9___b1edf23a4", "12497": "15___CATEGORICAL___nom_9___b1fb3d5f9", "12498": "15___CATEGORICAL___nom_9___b203add9e", "12499": "15___CATEGORICAL___nom_9___b214b865b", "12500": "15___CATEGORICAL___nom_9___b2168686c", "12501": "15___CATEGORICAL___nom_9___b22095f5d", "12502": "15___CATEGORICAL___nom_9___b22e596ed", "12503": "15___CATEGORICAL___nom_9___b231da167", "12504": "15___CATEGORICAL___nom_9___b235c8bc7", "12505": "15___CATEGORICAL___nom_9___b237c2552", "12506": "15___CATEGORICAL___nom_9___b237e992b", "12507": "15___CATEGORICAL___nom_9___b23943ef4", "12508": "15___CATEGORICAL___nom_9___b23bb90c6", "12509": "15___CATEGORICAL___nom_9___b242a587d", "12510": "15___CATEGORICAL___nom_9___b2436459a", "12511": "15___CATEGORICAL___nom_9___b24464205", "12512": "15___CATEGORICAL___nom_9___b245a18ee", "12513": "15___CATEGORICAL___nom_9___b2465e0e2", "12514": "15___CATEGORICAL___nom_9___b24f6e16f", "12515": "15___CATEGORICAL___nom_9___b254ea323", "12516": "15___CATEGORICAL___nom_9___b25573b75", "12517": "15___CATEGORICAL___nom_9___b257edcb5", "12518": "15___CATEGORICAL___nom_9___b259d756d", "12519": "15___CATEGORICAL___nom_9___b25ae2739", "12520": "15___CATEGORICAL___nom_9___b25b539a7", "12521": "15___CATEGORICAL___nom_9___b25d4337d", "12522": "15___CATEGORICAL___nom_9___b25f4411c", "12523": "15___CATEGORICAL___nom_9___b26da88b0", "12524": "15___CATEGORICAL___nom_9___b27257562", "12525": "15___CATEGORICAL___nom_9___b2743af13", "12526": "15___CATEGORICAL___nom_9___b277545d6", "12527": "15___CATEGORICAL___nom_9___b27cbe1c9", "12528": "15___CATEGORICAL___nom_9___b2886fe1c", "12529": "15___CATEGORICAL___nom_9___b288f451c", "12530": "15___CATEGORICAL___nom_9___b28ab7c7a", "12531": "15___CATEGORICAL___nom_9___b29127fef", "12532": "15___CATEGORICAL___nom_9___b293d0ff7", "12533": "15___CATEGORICAL___nom_9___b295adc0e", "12534": "15___CATEGORICAL___nom_9___b2afd76a3", "12535": "15___CATEGORICAL___nom_9___b2b7af979", "12536": "15___CATEGORICAL___nom_9___b2b8b377c", "12537": "15___CATEGORICAL___nom_9___b2ba374ac", "12538": "15___CATEGORICAL___nom_9___b2beb29d9", "12539": "15___CATEGORICAL___nom_9___b2c0ab271", "12540": "15___CATEGORICAL___nom_9___b2c0cc21c", "12541": "15___CATEGORICAL___nom_9___b2c2c6b8b", "12542": "15___CATEGORICAL___nom_9___b2daa3467", "12543": "15___CATEGORICAL___nom_9___b2dbc599b", "12544": "15___CATEGORICAL___nom_9___b2dc8e308", "12545": "15___CATEGORICAL___nom_9___b2e726a01", "12546": "15___CATEGORICAL___nom_9___b2ec9e6ed", "12547": "15___CATEGORICAL___nom_9___b2f1ff1e1", "12548": "15___CATEGORICAL___nom_9___b2f30aa43", "12549": "15___CATEGORICAL___nom_9___b2f54a4dd", "12550": "15___CATEGORICAL___nom_9___b2fda0402", "12551": "15___CATEGORICAL___nom_9___b310b8bb6", "12552": "15___CATEGORICAL___nom_9___b31495b1c", "12553": "15___CATEGORICAL___nom_9___b31a6425e", "12554": "15___CATEGORICAL___nom_9___b3212827e", "12555": "15___CATEGORICAL___nom_9___b32578b93", "12556": "15___CATEGORICAL___nom_9___b327beaa0", "12557": "15___CATEGORICAL___nom_9___b32a3372e", "12558": "15___CATEGORICAL___nom_9___b32eafb61", "12559": "15___CATEGORICAL___nom_9___b3362801e", "12560": "15___CATEGORICAL___nom_9___b33b48406", "12561": "15___CATEGORICAL___nom_9___b33bca026", "12562": "15___CATEGORICAL___nom_9___b33be9184", "12563": "15___CATEGORICAL___nom_9___b340382ee", "12564": "15___CATEGORICAL___nom_9___b34ee501d", "12565": "15___CATEGORICAL___nom_9___b35714849", "12566": "15___CATEGORICAL___nom_9___b364e1af2", "12567": "15___CATEGORICAL___nom_9___b366e5e88", "12568": "15___CATEGORICAL___nom_9___b368ece39", "12569": "15___CATEGORICAL___nom_9___b36a6a1f4", "12570": "15___CATEGORICAL___nom_9___b36a83b91", "12571": "15___CATEGORICAL___nom_9___b36b0c8ea", "12572": "15___CATEGORICAL___nom_9___b3700dd31", "12573": "15___CATEGORICAL___nom_9___b370e6c97", "12574": "15___CATEGORICAL___nom_9___b3771663a", "12575": "15___CATEGORICAL___nom_9___b378028f4", "12576": "15___CATEGORICAL___nom_9___b37f33d00", "12577": "15___CATEGORICAL___nom_9___b3858c5d8", "12578": "15___CATEGORICAL___nom_9___b387b2754", "12579": "15___CATEGORICAL___nom_9___b3a1ae8ab", "12580": "15___CATEGORICAL___nom_9___b3a4dcef4", "12581": "15___CATEGORICAL___nom_9___b3a5170cd", "12582": "15___CATEGORICAL___nom_9___b3affb307", "12583": "15___CATEGORICAL___nom_9___b3b5ef78c", "12584": "15___CATEGORICAL___nom_9___b3b650c35", "12585": "15___CATEGORICAL___nom_9___b3b7731dd", "12586": "15___CATEGORICAL___nom_9___b3c220c05", "12587": "15___CATEGORICAL___nom_9___b3c80f599", "12588": "15___CATEGORICAL___nom_9___b3cd6055c", "12589": "15___CATEGORICAL___nom_9___b3d341bac", "12590": "15___CATEGORICAL___nom_9___b3d56c0ec", "12591": "15___CATEGORICAL___nom_9___b3e2de87b", "12592": "15___CATEGORICAL___nom_9___b3ea5b1a1", "12593": "15___CATEGORICAL___nom_9___b3ec4d91f", "12594": "15___CATEGORICAL___nom_9___b3f091a5d", "12595": "15___CATEGORICAL___nom_9___b3f1c0b60", "12596": "15___CATEGORICAL___nom_9___b3f565f6e", "12597": "15___CATEGORICAL___nom_9___b3fc75f2c", "12598": "15___CATEGORICAL___nom_9___b4087b4fa", "12599": "15___CATEGORICAL___nom_9___b4248f061", "12600": "15___CATEGORICAL___nom_9___b427ae3a8", "12601": "15___CATEGORICAL___nom_9___b4321b75b", "12602": "15___CATEGORICAL___nom_9___b438e9725", "12603": "15___CATEGORICAL___nom_9___b43a700e4", "12604": "15___CATEGORICAL___nom_9___b43b9e9f8", "12605": "15___CATEGORICAL___nom_9___b43be2574", "12606": "15___CATEGORICAL___nom_9___b43f55b2e", "12607": "15___CATEGORICAL___nom_9___b44044db5", "12608": "15___CATEGORICAL___nom_9___b4413349e", "12609": "15___CATEGORICAL___nom_9___b445144f4", "12610": "15___CATEGORICAL___nom_9___b447422a5", "12611": "15___CATEGORICAL___nom_9___b447fc476", "12612": "15___CATEGORICAL___nom_9___b448dbb88", "12613": "15___CATEGORICAL___nom_9___b448eafaa", "12614": "15___CATEGORICAL___nom_9___b4508ddba", "12615": "15___CATEGORICAL___nom_9___b45218c9e", "12616": "15___CATEGORICAL___nom_9___b45391f72", "12617": "15___CATEGORICAL___nom_9___b45ebb391", "12618": "15___CATEGORICAL___nom_9___b47065a63", "12619": "15___CATEGORICAL___nom_9___b4733fc6a", "12620": "15___CATEGORICAL___nom_9___b47dae4e5", "12621": "15___CATEGORICAL___nom_9___b47fe3dfc", "12622": "15___CATEGORICAL___nom_9___b492ee3c2", "12623": "15___CATEGORICAL___nom_9___b497c4871", "12624": "15___CATEGORICAL___nom_9___b4a52ec69", "12625": "15___CATEGORICAL___nom_9___b4a9d1c26", "12626": "15___CATEGORICAL___nom_9___b4b6276cc", "12627": "15___CATEGORICAL___nom_9___b4c09fb14", "12628": "15___CATEGORICAL___nom_9___b4c293af0", "12629": "15___CATEGORICAL___nom_9___b4c9bece6", "12630": "15___CATEGORICAL___nom_9___b4ccf03f3", "12631": "15___CATEGORICAL___nom_9___b4d18bd01", "12632": "15___CATEGORICAL___nom_9___b4d60f2b1", "12633": "15___CATEGORICAL___nom_9___b4d711c05", "12634": "15___CATEGORICAL___nom_9___b4e18f25e", "12635": "15___CATEGORICAL___nom_9___b4e2bc2f1", "12636": "15___CATEGORICAL___nom_9___b4e5814bf", "12637": "15___CATEGORICAL___nom_9___b4eccdde4", "12638": "15___CATEGORICAL___nom_9___b4ed86251", "12639": "15___CATEGORICAL___nom_9___b4ef4769c", "12640": "15___CATEGORICAL___nom_9___b4f52961c", "12641": "15___CATEGORICAL___nom_9___b504979a0", "12642": "15___CATEGORICAL___nom_9___b504d0306", "12643": "15___CATEGORICAL___nom_9___b506039f3", "12644": "15___CATEGORICAL___nom_9___b51490b03", "12645": "15___CATEGORICAL___nom_9___b519d4850", "12646": "15___CATEGORICAL___nom_9___b51b5c674", "12647": "15___CATEGORICAL___nom_9___b51cb1773", "12648": "15___CATEGORICAL___nom_9___b526aa652", "12649": "15___CATEGORICAL___nom_9___b527c5e41", "12650": "15___CATEGORICAL___nom_9___b5291af2d", "12651": "15___CATEGORICAL___nom_9___b52a81205", "12652": "15___CATEGORICAL___nom_9___b5318cc42", "12653": "15___CATEGORICAL___nom_9___b531cc668", "12654": "15___CATEGORICAL___nom_9___b53608e04", "12655": "15___CATEGORICAL___nom_9___b5363f8c0", "12656": "15___CATEGORICAL___nom_9___b540145ee", "12657": "15___CATEGORICAL___nom_9___b5479c757", "12658": "15___CATEGORICAL___nom_9___b549e90c7", "12659": "15___CATEGORICAL___nom_9___b54a6187f", "12660": "15___CATEGORICAL___nom_9___b54c56cfd", "12661": "15___CATEGORICAL___nom_9___b54d6ff0c", "12662": "15___CATEGORICAL___nom_9___b5509c053", "12663": "15___CATEGORICAL___nom_9___b5542ddda", "12664": "15___CATEGORICAL___nom_9___b556940dc", "12665": "15___CATEGORICAL___nom_9___b5569598f", "12666": "15___CATEGORICAL___nom_9___b55e8dc1e", "12667": "15___CATEGORICAL___nom_9___b55f0ce49", "12668": "15___CATEGORICAL___nom_9___b55fa8fe5", "12669": "15___CATEGORICAL___nom_9___b5674b247", "12670": "15___CATEGORICAL___nom_9___b575b092e", "12671": "15___CATEGORICAL___nom_9___b576110b4", "12672": "15___CATEGORICAL___nom_9___b57773b40", "12673": "15___CATEGORICAL___nom_9___b5792fee0", "12674": "15___CATEGORICAL___nom_9___b57b0a355", "12675": "15___CATEGORICAL___nom_9___b57c033f1", "12676": "15___CATEGORICAL___nom_9___b58415d80", "12677": "15___CATEGORICAL___nom_9___b595f8f0e", "12678": "15___CATEGORICAL___nom_9___b5a112bf2", "12679": "15___CATEGORICAL___nom_9___b5a55233c", "12680": "15___CATEGORICAL___nom_9___b5a8ba01a", "12681": "15___CATEGORICAL___nom_9___b5b0d04dd", "12682": "15___CATEGORICAL___nom_9___b5b440c4f", "12683": "15___CATEGORICAL___nom_9___b5b5ae8fc", "12684": "15___CATEGORICAL___nom_9___b5b82024a", "12685": "15___CATEGORICAL___nom_9___b5bbc8860", "12686": "15___CATEGORICAL___nom_9___b5c306e32", "12687": "15___CATEGORICAL___nom_9___b5c9b852c", "12688": "15___CATEGORICAL___nom_9___b5cc58447", "12689": "15___CATEGORICAL___nom_9___b5cd6e5a0", "12690": "15___CATEGORICAL___nom_9___b5ce653e7", "12691": "15___CATEGORICAL___nom_9___b5cf09b45", "12692": "15___CATEGORICAL___nom_9___b5d58599d", "12693": "15___CATEGORICAL___nom_9___b5d86130b", "12694": "15___CATEGORICAL___nom_9___b5dcd414f", "12695": "15___CATEGORICAL___nom_9___b5de3dcc4", "12696": "15___CATEGORICAL___nom_9___b5df85fd6", "12697": "15___CATEGORICAL___nom_9___b5e4adbbc", "12698": "15___CATEGORICAL___nom_9___b5f0724aa", "12699": "15___CATEGORICAL___nom_9___b5f30b40b", "12700": "15___CATEGORICAL___nom_9___b5f911b60", "12701": "15___CATEGORICAL___nom_9___b5fc81539", "12702": "15___CATEGORICAL___nom_9___b60cc8e4f", "12703": "15___CATEGORICAL___nom_9___b6152994e", "12704": "15___CATEGORICAL___nom_9___b617aacb1", "12705": "15___CATEGORICAL___nom_9___b61e25489", "12706": "15___CATEGORICAL___nom_9___b62e1dd2f", "12707": "15___CATEGORICAL___nom_9___b62fdf2fb", "12708": "15___CATEGORICAL___nom_9___b63abc594", "12709": "15___CATEGORICAL___nom_9___b63e84b33", "12710": "15___CATEGORICAL___nom_9___b64177da6", "12711": "15___CATEGORICAL___nom_9___b64c73d16", "12712": "15___CATEGORICAL___nom_9___b654a164a", "12713": "15___CATEGORICAL___nom_9___b65c0a25a", "12714": "15___CATEGORICAL___nom_9___b6634f4ad", "12715": "15___CATEGORICAL___nom_9___b664ad637", "12716": "15___CATEGORICAL___nom_9___b66551d10", "12717": "15___CATEGORICAL___nom_9___b66588678", "12718": "15___CATEGORICAL___nom_9___b6686b850", "12719": "15___CATEGORICAL___nom_9___b66b185aa", "12720": "15___CATEGORICAL___nom_9___b677d44c4", "12721": "15___CATEGORICAL___nom_9___b680db035", "12722": "15___CATEGORICAL___nom_9___b68dfbb05", "12723": "15___CATEGORICAL___nom_9___b690f9295", "12724": "15___CATEGORICAL___nom_9___b69168ea6", "12725": "15___CATEGORICAL___nom_9___b693ed430", "12726": "15___CATEGORICAL___nom_9___b695f951a", "12727": "15___CATEGORICAL___nom_9___b698ba803", "12728": "15___CATEGORICAL___nom_9___b699103be", "12729": "15___CATEGORICAL___nom_9___b69c6d05f", "12730": "15___CATEGORICAL___nom_9___b6a44d42d", "12731": "15___CATEGORICAL___nom_9___b6af2480d", "12732": "15___CATEGORICAL___nom_9___b6b0a3ab0", "12733": "15___CATEGORICAL___nom_9___b6bb41dcd", "12734": "15___CATEGORICAL___nom_9___b6bb569c7", "12735": "15___CATEGORICAL___nom_9___b6c410698", "12736": "15___CATEGORICAL___nom_9___b6cf87006", "12737": "15___CATEGORICAL___nom_9___b6d1907e0", "12738": "15___CATEGORICAL___nom_9___b6dc65f10", "12739": "15___CATEGORICAL___nom_9___b6e641fb5", "12740": "15___CATEGORICAL___nom_9___b6e819490", "12741": "15___CATEGORICAL___nom_9___b6e91c9ed", "12742": "15___CATEGORICAL___nom_9___b6f2dd21b", "12743": "15___CATEGORICAL___nom_9___b6f2e177f", "12744": "15___CATEGORICAL___nom_9___b6fb15cf9", "12745": "15___CATEGORICAL___nom_9___b6fdde95f", "12746": "15___CATEGORICAL___nom_9___b6fe1220d", "12747": "15___CATEGORICAL___nom_9___b705b8cdc", "12748": "15___CATEGORICAL___nom_9___b70636c42", "12749": "15___CATEGORICAL___nom_9___b709311d9", "12750": "15___CATEGORICAL___nom_9___b70d32149", "12751": "15___CATEGORICAL___nom_9___b7127cea1", "12752": "15___CATEGORICAL___nom_9___b712c2b79", "12753": "15___CATEGORICAL___nom_9___b7167e779", "12754": "15___CATEGORICAL___nom_9___b725b19d7", "12755": "15___CATEGORICAL___nom_9___b728b9646", "12756": "15___CATEGORICAL___nom_9___b728ecb2c", "12757": "15___CATEGORICAL___nom_9___b72b8458e", "12758": "15___CATEGORICAL___nom_9___b72d83b25", "12759": "15___CATEGORICAL___nom_9___b72dd6006", "12760": "15___CATEGORICAL___nom_9___b735b8547", "12761": "15___CATEGORICAL___nom_9___b73dd855c", "12762": "15___CATEGORICAL___nom_9___b7404c1e0", "12763": "15___CATEGORICAL___nom_9___b743fa753", "12764": "15___CATEGORICAL___nom_9___b74ac4f17", "12765": "15___CATEGORICAL___nom_9___b7527cbcc", "12766": "15___CATEGORICAL___nom_9___b7557aea2", "12767": "15___CATEGORICAL___nom_9___b766bc2ae", "12768": "15___CATEGORICAL___nom_9___b7677bab8", "12769": "15___CATEGORICAL___nom_9___b76d63275", "12770": "15___CATEGORICAL___nom_9___b772950d2", "12771": "15___CATEGORICAL___nom_9___b7735fb52", "12772": "15___CATEGORICAL___nom_9___b77e45b71", "12773": "15___CATEGORICAL___nom_9___b78909064", "12774": "15___CATEGORICAL___nom_9___b792cd9fe", "12775": "15___CATEGORICAL___nom_9___b7978580f", "12776": "15___CATEGORICAL___nom_9___b7a4b8053", "12777": "15___CATEGORICAL___nom_9___b7b92ad9d", "12778": "15___CATEGORICAL___nom_9___b7baac3c6", "12779": "15___CATEGORICAL___nom_9___b7cd4ac46", "12780": "15___CATEGORICAL___nom_9___b7d944336", "12781": "15___CATEGORICAL___nom_9___b7d9f5547", "12782": "15___CATEGORICAL___nom_9___b7da1c0e3", "12783": "15___CATEGORICAL___nom_9___b7e757904", "12784": "15___CATEGORICAL___nom_9___b7f451fc7", "12785": "15___CATEGORICAL___nom_9___b80e7e924", "12786": "15___CATEGORICAL___nom_9___b81e426f9", "12787": "15___CATEGORICAL___nom_9___b8273bd27", "12788": "15___CATEGORICAL___nom_9___b828d22dd", "12789": "15___CATEGORICAL___nom_9___b82e15aa2", "12790": "15___CATEGORICAL___nom_9___b82e3348e", "12791": "15___CATEGORICAL___nom_9___b83124e51", "12792": "15___CATEGORICAL___nom_9___b83329eac", "12793": "15___CATEGORICAL___nom_9___b837529f3", "12794": "15___CATEGORICAL___nom_9___b83b48479", "12795": "15___CATEGORICAL___nom_9___b83ed879e", "12796": "15___CATEGORICAL___nom_9___b8424cc0f", "12797": "15___CATEGORICAL___nom_9___b85440919", "12798": "15___CATEGORICAL___nom_9___b854a03c2", "12799": "15___CATEGORICAL___nom_9___b85b03cb2", "12800": "15___CATEGORICAL___nom_9___b85dd273e", "12801": "15___CATEGORICAL___nom_9___b86622dba", "12802": "15___CATEGORICAL___nom_9___b86d799a3", "12803": "15___CATEGORICAL___nom_9___b86f09724", "12804": "15___CATEGORICAL___nom_9___b86f09c17", "12805": "15___CATEGORICAL___nom_9___b884ff4b2", "12806": "15___CATEGORICAL___nom_9___b8851a862", "12807": "15___CATEGORICAL___nom_9___b8874fae2", "12808": "15___CATEGORICAL___nom_9___b8891b598", "12809": "15___CATEGORICAL___nom_9___b88dc22d1", "12810": "15___CATEGORICAL___nom_9___b892af05b", "12811": "15___CATEGORICAL___nom_9___b8939922a", "12812": "15___CATEGORICAL___nom_9___b89647ed8", "12813": "15___CATEGORICAL___nom_9___b89f991b7", "12814": "15___CATEGORICAL___nom_9___b8a3a76b3", "12815": "15___CATEGORICAL___nom_9___b8a3b6895", "12816": "15___CATEGORICAL___nom_9___b8a9650e6", "12817": "15___CATEGORICAL___nom_9___b8ac1dc05", "12818": "15___CATEGORICAL___nom_9___b8c195d14", "12819": "15___CATEGORICAL___nom_9___b8c2db7cb", "12820": "15___CATEGORICAL___nom_9___b8cbe355d", "12821": "15___CATEGORICAL___nom_9___b8d20124a", "12822": "15___CATEGORICAL___nom_9___b8f381fdc", "12823": "15___CATEGORICAL___nom_9___b8fc16ebc", "12824": "15___CATEGORICAL___nom_9___b90bfbd66", "12825": "15___CATEGORICAL___nom_9___b90d5a4fa", "12826": "15___CATEGORICAL___nom_9___b912de090", "12827": "15___CATEGORICAL___nom_9___b91304c45", "12828": "15___CATEGORICAL___nom_9___b915b5f1f", "12829": "15___CATEGORICAL___nom_9___b91b5a8ad", "12830": "15___CATEGORICAL___nom_9___b91d04610", "12831": "15___CATEGORICAL___nom_9___b91f058fd", "12832": "15___CATEGORICAL___nom_9___b92175329", "12833": "15___CATEGORICAL___nom_9___b92bebfb6", "12834": "15___CATEGORICAL___nom_9___b9316c2a7", "12835": "15___CATEGORICAL___nom_9___b93218b0d", "12836": "15___CATEGORICAL___nom_9___b933358c6", "12837": "15___CATEGORICAL___nom_9___b93faf143", "12838": "15___CATEGORICAL___nom_9___b9458f656", "12839": "15___CATEGORICAL___nom_9___b951652da", "12840": "15___CATEGORICAL___nom_9___b958a2001", "12841": "15___CATEGORICAL___nom_9___b958e2812", "12842": "15___CATEGORICAL___nom_9___b95eda786", "12843": "15___CATEGORICAL___nom_9___b96c5e924", "12844": "15___CATEGORICAL___nom_9___b96e5b328", "12845": "15___CATEGORICAL___nom_9___b975b0d2a", "12846": "15___CATEGORICAL___nom_9___b97a29ea8", "12847": "15___CATEGORICAL___nom_9___b97ce9a01", "12848": "15___CATEGORICAL___nom_9___b97e3a146", "12849": "15___CATEGORICAL___nom_9___b99958ae2", "12850": "15___CATEGORICAL___nom_9___b9a36c529", "12851": "15___CATEGORICAL___nom_9___b9ad601fd", "12852": "15___CATEGORICAL___nom_9___b9b4bc8c7", "12853": "15___CATEGORICAL___nom_9___b9b8c568f", "12854": "15___CATEGORICAL___nom_9___b9bf9ff10", "12855": "15___CATEGORICAL___nom_9___b9c218099", "12856": "15___CATEGORICAL___nom_9___b9c456565", "12857": "15___CATEGORICAL___nom_9___b9c541a27", "12858": "15___CATEGORICAL___nom_9___b9c65a2c1", "12859": "15___CATEGORICAL___nom_9___b9d27ad0c", "12860": "15___CATEGORICAL___nom_9___b9de6f970", "12861": "15___CATEGORICAL___nom_9___b9e649c71", "12862": "15___CATEGORICAL___nom_9___b9e77018b", "12863": "15___CATEGORICAL___nom_9___b9ebfe76a", "12864": "15___CATEGORICAL___nom_9___b9f1c332c", "12865": "15___CATEGORICAL___nom_9___b9f793358", "12866": "15___CATEGORICAL___nom_9___b9fb74f65", "12867": "15___CATEGORICAL___nom_9___ba06560b8", "12868": "15___CATEGORICAL___nom_9___ba0bd4602", "12869": "15___CATEGORICAL___nom_9___ba0fe5062", "12870": "15___CATEGORICAL___nom_9___ba12075ba", "12871": "15___CATEGORICAL___nom_9___ba1df3397", "12872": "15___CATEGORICAL___nom_9___ba1ed3da9", "12873": "15___CATEGORICAL___nom_9___ba28e4d02", "12874": "15___CATEGORICAL___nom_9___ba28e71be", "12875": "15___CATEGORICAL___nom_9___ba2a0509a", "12876": "15___CATEGORICAL___nom_9___ba3565456", "12877": "15___CATEGORICAL___nom_9___ba38e53a6", "12878": "15___CATEGORICAL___nom_9___ba3c48c08", "12879": "15___CATEGORICAL___nom_9___ba3f4c324", "12880": "15___CATEGORICAL___nom_9___ba4d757a3", "12881": "15___CATEGORICAL___nom_9___ba50220c7", "12882": "15___CATEGORICAL___nom_9___ba514beb6", "12883": "15___CATEGORICAL___nom_9___ba55be03b", "12884": "15___CATEGORICAL___nom_9___ba55ca486", "12885": "15___CATEGORICAL___nom_9___ba5b74354", "12886": "15___CATEGORICAL___nom_9___ba6801410", "12887": "15___CATEGORICAL___nom_9___ba73907c7", "12888": "15___CATEGORICAL___nom_9___ba810d056", "12889": "15___CATEGORICAL___nom_9___ba877ef51", "12890": "15___CATEGORICAL___nom_9___ba91452a4", "12891": "15___CATEGORICAL___nom_9___ba948db8d", "12892": "15___CATEGORICAL___nom_9___ba9f1b6f2", "12893": "15___CATEGORICAL___nom_9___baaac11ab", "12894": "15___CATEGORICAL___nom_9___baab8e49b", "12895": "15___CATEGORICAL___nom_9___baaf13ecf", "12896": "15___CATEGORICAL___nom_9___bab157e32", "12897": "15___CATEGORICAL___nom_9___baba01f69", "12898": "15___CATEGORICAL___nom_9___babfbfb38", "12899": "15___CATEGORICAL___nom_9___bac7bbca0", "12900": "15___CATEGORICAL___nom_9___bacb0712d", "12901": "15___CATEGORICAL___nom_9___bacb935ef", "12902": "15___CATEGORICAL___nom_9___bad44964c", "12903": "15___CATEGORICAL___nom_9___bada73e20", "12904": "15___CATEGORICAL___nom_9___badc201f6", "12905": "15___CATEGORICAL___nom_9___bae876fdc", "12906": "15___CATEGORICAL___nom_9___baed2541e", "12907": "15___CATEGORICAL___nom_9___baed25c05", "12908": "15___CATEGORICAL___nom_9___baf2a87dd", "12909": "15___CATEGORICAL___nom_9___bafd850ca", "12910": "15___CATEGORICAL___nom_9___bb041cbbf", "12911": "15___CATEGORICAL___nom_9___bb089c737", "12912": "15___CATEGORICAL___nom_9___bb0fb2303", "12913": "15___CATEGORICAL___nom_9___bb112902e", "12914": "15___CATEGORICAL___nom_9___bb16768b6", "12915": "15___CATEGORICAL___nom_9___bb17f58bc", "12916": "15___CATEGORICAL___nom_9___bb1943750", "12917": "15___CATEGORICAL___nom_9___bb1f61c00", "12918": "15___CATEGORICAL___nom_9___bb201fc01", "12919": "15___CATEGORICAL___nom_9___bb2acdfc9", "12920": "15___CATEGORICAL___nom_9___bb2cab59c", "12921": "15___CATEGORICAL___nom_9___bb2e53f62", "12922": "15___CATEGORICAL___nom_9___bb2f0e618", "12923": "15___CATEGORICAL___nom_9___bb2f99e3d", "12924": "15___CATEGORICAL___nom_9___bb3164263", "12925": "15___CATEGORICAL___nom_9___bb3b97c78", "12926": "15___CATEGORICAL___nom_9___bb3c39c05", "12927": "15___CATEGORICAL___nom_9___bb3fcd9b9", "12928": "15___CATEGORICAL___nom_9___bb4fcc64b", "12929": "15___CATEGORICAL___nom_9___bb526790c", "12930": "15___CATEGORICAL___nom_9___bb56c372b", "12931": "15___CATEGORICAL___nom_9___bb57caf6b", "12932": "15___CATEGORICAL___nom_9___bb5b3d10a", "12933": "15___CATEGORICAL___nom_9___bb6296c2c", "12934": "15___CATEGORICAL___nom_9___bb678c9f1", "12935": "15___CATEGORICAL___nom_9___bb6cb0791", "12936": "15___CATEGORICAL___nom_9___bb72deb38", "12937": "15___CATEGORICAL___nom_9___bb7ad6369", "12938": "15___CATEGORICAL___nom_9___bb7d6db41", "12939": "15___CATEGORICAL___nom_9___bb8278fa8", "12940": "15___CATEGORICAL___nom_9___bb9d10adf", "12941": "15___CATEGORICAL___nom_9___bb9e6d525", "12942": "15___CATEGORICAL___nom_9___bbabab387", "12943": "15___CATEGORICAL___nom_9___bbae3c52c", "12944": "15___CATEGORICAL___nom_9___bbceed7c8", "12945": "15___CATEGORICAL___nom_9___bbd3f2395", "12946": "15___CATEGORICAL___nom_9___bbd84d970", "12947": "15___CATEGORICAL___nom_9___bbd8c7ca6", "12948": "15___CATEGORICAL___nom_9___bbd9440eb", "12949": "15___CATEGORICAL___nom_9___bbe1bd0b4", "12950": "15___CATEGORICAL___nom_9___bbe9dce97", "12951": "15___CATEGORICAL___nom_9___bbf0fd504", "12952": "15___CATEGORICAL___nom_9___bc05ed12f", "12953": "15___CATEGORICAL___nom_9___bc0a25757", "12954": "15___CATEGORICAL___nom_9___bc0b1c828", "12955": "15___CATEGORICAL___nom_9___bc0f02bcd", "12956": "15___CATEGORICAL___nom_9___bc10d0880", "12957": "15___CATEGORICAL___nom_9___bc12a34ec", "12958": "15___CATEGORICAL___nom_9___bc1c79102", "12959": "15___CATEGORICAL___nom_9___bc1d77eea", "12960": "15___CATEGORICAL___nom_9___bc1e9bb2d", "12961": "15___CATEGORICAL___nom_9___bc1f4f616", "12962": "15___CATEGORICAL___nom_9___bc20a4884", "12963": "15___CATEGORICAL___nom_9___bc22956f5", "12964": "15___CATEGORICAL___nom_9___bc2326de4", "12965": "15___CATEGORICAL___nom_9___bc28b44e5", "12966": "15___CATEGORICAL___nom_9___bc29fa4d8", "12967": "15___CATEGORICAL___nom_9___bc2cc93d2", "12968": "15___CATEGORICAL___nom_9___bc3125b95", "12969": "15___CATEGORICAL___nom_9___bc328d761", "12970": "15___CATEGORICAL___nom_9___bc3714ffe", "12971": "15___CATEGORICAL___nom_9___bc42a21b0", "12972": "15___CATEGORICAL___nom_9___bc4beb968", "12973": "15___CATEGORICAL___nom_9___bc5809dd0", "12974": "15___CATEGORICAL___nom_9___bc5ac5cde", "12975": "15___CATEGORICAL___nom_9___bc67f3a0a", "12976": "15___CATEGORICAL___nom_9___bc69f5239", "12977": "15___CATEGORICAL___nom_9___bc6e73ef1", "12978": "15___CATEGORICAL___nom_9___bc7095f64", "12979": "15___CATEGORICAL___nom_9___bc74dd1ab", "12980": "15___CATEGORICAL___nom_9___bc799c893", "12981": "15___CATEGORICAL___nom_9___bc80dec9a", "12982": "15___CATEGORICAL___nom_9___bc86c834c", "12983": "15___CATEGORICAL___nom_9___bc8c26565", "12984": "15___CATEGORICAL___nom_9___bc8ce58d1", "12985": "15___CATEGORICAL___nom_9___bc8ee1501", "12986": "15___CATEGORICAL___nom_9___bc907d536", "12987": "15___CATEGORICAL___nom_9___bc93c2614", "12988": "15___CATEGORICAL___nom_9___bc97fe974", "12989": "15___CATEGORICAL___nom_9___bc9b57fbe", "12990": "15___CATEGORICAL___nom_9___bca106500", "12991": "15___CATEGORICAL___nom_9___bca3330ca", "12992": "15___CATEGORICAL___nom_9___bca345eea", "12993": "15___CATEGORICAL___nom_9___bca5b2c48", "12994": "15___CATEGORICAL___nom_9___bca5e4155", "12995": "15___CATEGORICAL___nom_9___bca6de383", "12996": "15___CATEGORICAL___nom_9___bcb21cf46", "12997": "15___CATEGORICAL___nom_9___bcb5fad1a", "12998": "15___CATEGORICAL___nom_9___bcba122c6", "12999": "15___CATEGORICAL___nom_9___bcc61fb1f", "13000": "15___CATEGORICAL___nom_9___bcca5d51b", "13001": "15___CATEGORICAL___nom_9___bcd2d41c7", "13002": "15___CATEGORICAL___nom_9___bcd72a1a9", "13003": "15___CATEGORICAL___nom_9___bcd82b6ac", "13004": "15___CATEGORICAL___nom_9___bcd89e963", "13005": "15___CATEGORICAL___nom_9___bce434c81", "13006": "15___CATEGORICAL___nom_9___bce448181", "13007": "15___CATEGORICAL___nom_9___bce571b11", "13008": "15___CATEGORICAL___nom_9___bce6b96fd", "13009": "15___CATEGORICAL___nom_9___bceb7ed71", "13010": "15___CATEGORICAL___nom_9___bcecf7c23", "13011": "15___CATEGORICAL___nom_9___bcf087855", "13012": "15___CATEGORICAL___nom_9___bcf7e24af", "13013": "15___CATEGORICAL___nom_9___bcf8e3d42", "13014": "15___CATEGORICAL___nom_9___bcfdea19c", "13015": "15___CATEGORICAL___nom_9___bcfe2dde1", "13016": "15___CATEGORICAL___nom_9___bd09f1c0d", "13017": "15___CATEGORICAL___nom_9___bd0c8d6ee", "13018": "15___CATEGORICAL___nom_9___bd14ae94a", "13019": "15___CATEGORICAL___nom_9___bd164696f", "13020": "15___CATEGORICAL___nom_9___bd1c2871a", "13021": "15___CATEGORICAL___nom_9___bd1d58982", "13022": "15___CATEGORICAL___nom_9___bd1e00f67", "13023": "15___CATEGORICAL___nom_9___bd20fc111", "13024": "15___CATEGORICAL___nom_9___bd2c56d7d", "13025": "15___CATEGORICAL___nom_9___bd30eb8c4", "13026": "15___CATEGORICAL___nom_9___bd35140e4", "13027": "15___CATEGORICAL___nom_9___bd3d32ce8", "13028": "15___CATEGORICAL___nom_9___bd3ebede0", "13029": "15___CATEGORICAL___nom_9___bd3f13f24", "13030": "15___CATEGORICAL___nom_9___bd497354d", "13031": "15___CATEGORICAL___nom_9___bd4c4ee08", "13032": "15___CATEGORICAL___nom_9___bd538e17d", "13033": "15___CATEGORICAL___nom_9___bd567cd55", "13034": "15___CATEGORICAL___nom_9___bd590f572", "13035": "15___CATEGORICAL___nom_9___bd654c2c0", "13036": "15___CATEGORICAL___nom_9___bd6ac956f", "13037": "15___CATEGORICAL___nom_9___bd6cccd56", "13038": "15___CATEGORICAL___nom_9___bd70dabc3", "13039": "15___CATEGORICAL___nom_9___bd7547b4a", "13040": "15___CATEGORICAL___nom_9___bd7d39e52", "13041": "15___CATEGORICAL___nom_9___bd811b570", "13042": "15___CATEGORICAL___nom_9___bd8265e5e", "13043": "15___CATEGORICAL___nom_9___bd829faa2", "13044": "15___CATEGORICAL___nom_9___bd85b0719", "13045": "15___CATEGORICAL___nom_9___bd863b61f", "13046": "15___CATEGORICAL___nom_9___bd88a5060", "13047": "15___CATEGORICAL___nom_9___bd8c5255d", "13048": "15___CATEGORICAL___nom_9___bd8c6d13d", "13049": "15___CATEGORICAL___nom_9___bd9a01327", "13050": "15___CATEGORICAL___nom_9___bdaaa69ad", "13051": "15___CATEGORICAL___nom_9___bdb2c2ac3", "13052": "15___CATEGORICAL___nom_9___bdb71f60b", "13053": "15___CATEGORICAL___nom_9___bdb7db170", "13054": "15___CATEGORICAL___nom_9___bdc20a92e", "13055": "15___CATEGORICAL___nom_9___bdceeec1d", "13056": "15___CATEGORICAL___nom_9___bdf53d5d0", "13057": "15___CATEGORICAL___nom_9___bdf8ba5a4", "13058": "15___CATEGORICAL___nom_9___bdfb8a602", "13059": "15___CATEGORICAL___nom_9___bdff7576f", "13060": "15___CATEGORICAL___nom_9___be0bbd9b1", "13061": "15___CATEGORICAL___nom_9___be0e02bac", "13062": "15___CATEGORICAL___nom_9___be1069b85", "13063": "15___CATEGORICAL___nom_9___be17877e3", "13064": "15___CATEGORICAL___nom_9___be187ada0", "13065": "15___CATEGORICAL___nom_9___be206435c", "13066": "15___CATEGORICAL___nom_9___be212e796", "13067": "15___CATEGORICAL___nom_9___be253681b", "13068": "15___CATEGORICAL___nom_9___be25b31e1", "13069": "15___CATEGORICAL___nom_9___be2a1c253", "13070": "15___CATEGORICAL___nom_9___be2e034a7", "13071": "15___CATEGORICAL___nom_9___be2eef4f7", "13072": "15___CATEGORICAL___nom_9___be326d1a8", "13073": "15___CATEGORICAL___nom_9___be399a824", "13074": "15___CATEGORICAL___nom_9___be3bf2347", "13075": "15___CATEGORICAL___nom_9___be3dd0431", "13076": "15___CATEGORICAL___nom_9___be4689cdf", "13077": "15___CATEGORICAL___nom_9___be4851154", "13078": "15___CATEGORICAL___nom_9___be58d5b59", "13079": "15___CATEGORICAL___nom_9___be5c7123b", "13080": "15___CATEGORICAL___nom_9___be709cfc7", "13081": "15___CATEGORICAL___nom_9___be72e96ca", "13082": "15___CATEGORICAL___nom_9___be77a26ab", "13083": "15___CATEGORICAL___nom_9___be81fe64f", "13084": "15___CATEGORICAL___nom_9___be84a621a", "13085": "15___CATEGORICAL___nom_9___be90613b6", "13086": "15___CATEGORICAL___nom_9___be907d88a", "13087": "15___CATEGORICAL___nom_9___be90a50b6", "13088": "15___CATEGORICAL___nom_9___be922ade1", "13089": "15___CATEGORICAL___nom_9___be93072e4", "13090": "15___CATEGORICAL___nom_9___be938e689", "13091": "15___CATEGORICAL___nom_9___be9923e6f", "13092": "15___CATEGORICAL___nom_9___bea44ba74", "13093": "15___CATEGORICAL___nom_9___bea88c18a", "13094": "15___CATEGORICAL___nom_9___beb12ca55", "13095": "15___CATEGORICAL___nom_9___beb2030c4", "13096": "15___CATEGORICAL___nom_9___beb3bb2e0", "13097": "15___CATEGORICAL___nom_9___beb59adbe", "13098": "15___CATEGORICAL___nom_9___beb82cf15", "13099": "15___CATEGORICAL___nom_9___bec032c5a", "13100": "15___CATEGORICAL___nom_9___bec5dbe52", "13101": "15___CATEGORICAL___nom_9___becb0af8c", "13102": "15___CATEGORICAL___nom_9___bed2b6c77", "13103": "15___CATEGORICAL___nom_9___bed44f785", "13104": "15___CATEGORICAL___nom_9___bed490306", "13105": "15___CATEGORICAL___nom_9___bed934832", "13106": "15___CATEGORICAL___nom_9___bedab8574", "13107": "15___CATEGORICAL___nom_9___bedb0a52c", "13108": "15___CATEGORICAL___nom_9___bedcacb4e", "13109": "15___CATEGORICAL___nom_9___bede99080", "13110": "15___CATEGORICAL___nom_9___bef2bc731", "13111": "15___CATEGORICAL___nom_9___befba6830", "13112": "15___CATEGORICAL___nom_9___befc4e68c", "13113": "15___CATEGORICAL___nom_9___bf018280a", "13114": "15___CATEGORICAL___nom_9___bf0fd54fa", "13115": "15___CATEGORICAL___nom_9___bf11c3045", "13116": "15___CATEGORICAL___nom_9___bf2310ba9", "13117": "15___CATEGORICAL___nom_9___bf2c8b8a4", "13118": "15___CATEGORICAL___nom_9___bf3170471", "13119": "15___CATEGORICAL___nom_9___bf323412d", "13120": "15___CATEGORICAL___nom_9___bf341f531", "13121": "15___CATEGORICAL___nom_9___bf3a2429a", "13122": "15___CATEGORICAL___nom_9___bf43000dd", "13123": "15___CATEGORICAL___nom_9___bf46522b8", "13124": "15___CATEGORICAL___nom_9___bf484d60e", "13125": "15___CATEGORICAL___nom_9___bf523b1e5", "13126": "15___CATEGORICAL___nom_9___bf53f0f7b", "13127": "15___CATEGORICAL___nom_9___bf578c520", "13128": "15___CATEGORICAL___nom_9___bf60864b6", "13129": "15___CATEGORICAL___nom_9___bf6297d4b", "13130": "15___CATEGORICAL___nom_9___bf650ac99", "13131": "15___CATEGORICAL___nom_9___bf78a0de0", "13132": "15___CATEGORICAL___nom_9___bf7ac6293", "13133": "15___CATEGORICAL___nom_9___bf8728333", "13134": "15___CATEGORICAL___nom_9___bf8aa000e", "13135": "15___CATEGORICAL___nom_9___bf8d69238", "13136": "15___CATEGORICAL___nom_9___bf91ad95c", "13137": "15___CATEGORICAL___nom_9___bf946d043", "13138": "15___CATEGORICAL___nom_9___bfa41733a", "13139": "15___CATEGORICAL___nom_9___bfbe75a7b", "13140": "15___CATEGORICAL___nom_9___bfc4b2251", "13141": "15___CATEGORICAL___nom_9___bfcafc3b9", "13142": "15___CATEGORICAL___nom_9___bfd6f1a89", "13143": "15___CATEGORICAL___nom_9___bfe433c7f", "13144": "15___CATEGORICAL___nom_9___bfe761f42", "13145": "15___CATEGORICAL___nom_9___bff66b115", "13146": "15___CATEGORICAL___nom_9___c003b8fba", "13147": "15___CATEGORICAL___nom_9___c0062ac77", "13148": "15___CATEGORICAL___nom_9___c007da1a4", "13149": "15___CATEGORICAL___nom_9___c00bfa0e7", "13150": "15___CATEGORICAL___nom_9___c00e6639d", "13151": "15___CATEGORICAL___nom_9___c01380456", "13152": "15___CATEGORICAL___nom_9___c0182c7d5", "13153": "15___CATEGORICAL___nom_9___c01cff4a2", "13154": "15___CATEGORICAL___nom_9___c01e58af6", "13155": "15___CATEGORICAL___nom_9___c02929816", "13156": "15___CATEGORICAL___nom_9___c02d836a1", "13157": "15___CATEGORICAL___nom_9___c02f1e371", "13158": "15___CATEGORICAL___nom_9___c0318301f", "13159": "15___CATEGORICAL___nom_9___c0339523a", "13160": "15___CATEGORICAL___nom_9___c03639170", "13161": "15___CATEGORICAL___nom_9___c0502b5dd", "13162": "15___CATEGORICAL___nom_9___c0596de85", "13163": "15___CATEGORICAL___nom_9___c05991a24", "13164": "15___CATEGORICAL___nom_9___c05c591d1", "13165": "15___CATEGORICAL___nom_9___c064a7240", "13166": "15___CATEGORICAL___nom_9___c064af4d5", "13167": "15___CATEGORICAL___nom_9___c066a1119", "13168": "15___CATEGORICAL___nom_9___c06f26040", "13169": "15___CATEGORICAL___nom_9___c072d3025", "13170": "15___CATEGORICAL___nom_9___c077a694b", "13171": "15___CATEGORICAL___nom_9___c084699dd", "13172": "15___CATEGORICAL___nom_9___c08c3582a", "13173": "15___CATEGORICAL___nom_9___c08f7d3be", "13174": "15___CATEGORICAL___nom_9___c094fbb37", "13175": "15___CATEGORICAL___nom_9___c0ad22453", "13176": "15___CATEGORICAL___nom_9___c0b1cbb3c", "13177": "15___CATEGORICAL___nom_9___c0b5391fa", "13178": "15___CATEGORICAL___nom_9___c0b71d6ef", "13179": "15___CATEGORICAL___nom_9___c0ba70402", "13180": "15___CATEGORICAL___nom_9___c0ba77fa1", "13181": "15___CATEGORICAL___nom_9___c0bb419e0", "13182": "15___CATEGORICAL___nom_9___c0c4d23f2", "13183": "15___CATEGORICAL___nom_9___c0cb3d0b4", "13184": "15___CATEGORICAL___nom_9___c0cbfcc73", "13185": "15___CATEGORICAL___nom_9___c0dc1fe45", "13186": "15___CATEGORICAL___nom_9___c0e383874", "13187": "15___CATEGORICAL___nom_9___c0ed68836", "13188": "15___CATEGORICAL___nom_9___c0f8befb7", "13189": "15___CATEGORICAL___nom_9___c0fa98ac1", "13190": "15___CATEGORICAL___nom_9___c0fb801d9", "13191": "15___CATEGORICAL___nom_9___c10872f96", "13192": "15___CATEGORICAL___nom_9___c10936afa", "13193": "15___CATEGORICAL___nom_9___c10b332b8", "13194": "15___CATEGORICAL___nom_9___c10c2ced0", "13195": "15___CATEGORICAL___nom_9___c10ffc332", "13196": "15___CATEGORICAL___nom_9___c11acbad4", "13197": "15___CATEGORICAL___nom_9___c11f1722e", "13198": "15___CATEGORICAL___nom_9___c120f1c27", "13199": "15___CATEGORICAL___nom_9___c1213165f", "13200": "15___CATEGORICAL___nom_9___c1258639c", "13201": "15___CATEGORICAL___nom_9___c126e56fe", "13202": "15___CATEGORICAL___nom_9___c1324082f", "13203": "15___CATEGORICAL___nom_9___c13457cdc", "13204": "15___CATEGORICAL___nom_9___c15202cac", "13205": "15___CATEGORICAL___nom_9___c1575808b", "13206": "15___CATEGORICAL___nom_9___c15b9aff6", "13207": "15___CATEGORICAL___nom_9___c1642238d", "13208": "15___CATEGORICAL___nom_9___c170f9a40", "13209": "15___CATEGORICAL___nom_9___c17a5ced3", "13210": "15___CATEGORICAL___nom_9___c18567bad", "13211": "15___CATEGORICAL___nom_9___c1899b915", "13212": "15___CATEGORICAL___nom_9___c18d537db", "13213": "15___CATEGORICAL___nom_9___c18e40fde", "13214": "15___CATEGORICAL___nom_9___c190681d2", "13215": "15___CATEGORICAL___nom_9___c19730162", "13216": "15___CATEGORICAL___nom_9___c198544fb", "13217": "15___CATEGORICAL___nom_9___c19929e95", "13218": "15___CATEGORICAL___nom_9___c19a114b5", "13219": "15___CATEGORICAL___nom_9___c19b4d222", "13220": "15___CATEGORICAL___nom_9___c19d91105", "13221": "15___CATEGORICAL___nom_9___c19f364d1", "13222": "15___CATEGORICAL___nom_9___c1ad140e0", "13223": "15___CATEGORICAL___nom_9___c1b23ff43", "13224": "15___CATEGORICAL___nom_9___c1bc05876", "13225": "15___CATEGORICAL___nom_9___c1bc6a819", "13226": "15___CATEGORICAL___nom_9___c1bff2db0", "13227": "15___CATEGORICAL___nom_9___c1c07b00d", "13228": "15___CATEGORICAL___nom_9___c1c2f47bc", "13229": "15___CATEGORICAL___nom_9___c1c53caa3", "13230": "15___CATEGORICAL___nom_9___c1c5d17cf", "13231": "15___CATEGORICAL___nom_9___c1cc17244", "13232": "15___CATEGORICAL___nom_9___c1ce5a6ac", "13233": "15___CATEGORICAL___nom_9___c1dc485c6", "13234": "15___CATEGORICAL___nom_9___c1e0109e6", "13235": "15___CATEGORICAL___nom_9___c1ee53fe7", "13236": "15___CATEGORICAL___nom_9___c1fab5889", "13237": "15___CATEGORICAL___nom_9___c1ff010e8", "13238": "15___CATEGORICAL___nom_9___c200aec2a", "13239": "15___CATEGORICAL___nom_9___c20bc11c2", "13240": "15___CATEGORICAL___nom_9___c212d340f", "13241": "15___CATEGORICAL___nom_9___c21b668d8", "13242": "15___CATEGORICAL___nom_9___c21faf0bd", "13243": "15___CATEGORICAL___nom_9___c220983f1", "13244": "15___CATEGORICAL___nom_9___c223c0904", "13245": "15___CATEGORICAL___nom_9___c22e0f963", "13246": "15___CATEGORICAL___nom_9___c23cbecd3", "13247": "15___CATEGORICAL___nom_9___c23f3fe74", "13248": "15___CATEGORICAL___nom_9___c2420591d", "13249": "15___CATEGORICAL___nom_9___c2429c982", "13250": "15___CATEGORICAL___nom_9___c24984f97", "13251": "15___CATEGORICAL___nom_9___c25d9931c", "13252": "15___CATEGORICAL___nom_9___c263032a9", "13253": "15___CATEGORICAL___nom_9___c26349388", "13254": "15___CATEGORICAL___nom_9___c2637ab4c", "13255": "15___CATEGORICAL___nom_9___c268f48bd", "13256": "15___CATEGORICAL___nom_9___c26c794b2", "13257": "15___CATEGORICAL___nom_9___c279697b1", "13258": "15___CATEGORICAL___nom_9___c27e99de1", "13259": "15___CATEGORICAL___nom_9___c28098aaf", "13260": "15___CATEGORICAL___nom_9___c28feeb65", "13261": "15___CATEGORICAL___nom_9___c2a84fff1", "13262": "15___CATEGORICAL___nom_9___c2ada31ca", "13263": "15___CATEGORICAL___nom_9___c2aefd43c", "13264": "15___CATEGORICAL___nom_9___c2b03a3b4", "13265": "15___CATEGORICAL___nom_9___c2b9c1fea", "13266": "15___CATEGORICAL___nom_9___c2bb60a05", "13267": "15___CATEGORICAL___nom_9___c2bcf37a4", "13268": "15___CATEGORICAL___nom_9___c2bdcc981", "13269": "15___CATEGORICAL___nom_9___c2c560cd4", "13270": "15___CATEGORICAL___nom_9___c2d90181f", "13271": "15___CATEGORICAL___nom_9___c2df43d5e", "13272": "15___CATEGORICAL___nom_9___c2e8b4385", "13273": "15___CATEGORICAL___nom_9___c2ed35cbb", "13274": "15___CATEGORICAL___nom_9___c2f264e9f", "13275": "15___CATEGORICAL___nom_9___c2fc673dc", "13276": "15___CATEGORICAL___nom_9___c2fe2f63b", "13277": "15___CATEGORICAL___nom_9___c2ff464db", "13278": "15___CATEGORICAL___nom_9___c30013d5c", "13279": "15___CATEGORICAL___nom_9___c307a2484", "13280": "15___CATEGORICAL___nom_9___c310347aa", "13281": "15___CATEGORICAL___nom_9___c31765416", "13282": "15___CATEGORICAL___nom_9___c317aeaee", "13283": "15___CATEGORICAL___nom_9___c31c67153", "13284": "15___CATEGORICAL___nom_9___c3243a62a", "13285": "15___CATEGORICAL___nom_9___c32522398", "13286": "15___CATEGORICAL___nom_9___c32ed341b", "13287": "15___CATEGORICAL___nom_9___c330546ed", "13288": "15___CATEGORICAL___nom_9___c3382acf4", "13289": "15___CATEGORICAL___nom_9___c338bd335", "13290": "15___CATEGORICAL___nom_9___c3441250f", "13291": "15___CATEGORICAL___nom_9___c354fa3fa", "13292": "15___CATEGORICAL___nom_9___c35823557", "13293": "15___CATEGORICAL___nom_9___c363e9a8b", "13294": "15___CATEGORICAL___nom_9___c36a0b7a2", "13295": "15___CATEGORICAL___nom_9___c36f1406c", "13296": "15___CATEGORICAL___nom_9___c37176a01", "13297": "15___CATEGORICAL___nom_9___c37cc6937", "13298": "15___CATEGORICAL___nom_9___c37f9312b", "13299": "15___CATEGORICAL___nom_9___c38119748", "13300": "15___CATEGORICAL___nom_9___c388c5477", "13301": "15___CATEGORICAL___nom_9___c3899751a", "13302": "15___CATEGORICAL___nom_9___c38e0b1af", "13303": "15___CATEGORICAL___nom_9___c390b0f2a", "13304": "15___CATEGORICAL___nom_9___c391d01f4", "13305": "15___CATEGORICAL___nom_9___c3aac7de7", "13306": "15___CATEGORICAL___nom_9___c3b3eb0d6", "13307": "15___CATEGORICAL___nom_9___c3bb53e8d", "13308": "15___CATEGORICAL___nom_9___c3c1946ea", "13309": "15___CATEGORICAL___nom_9___c3d48166f", "13310": "15___CATEGORICAL___nom_9___c3d595820", "13311": "15___CATEGORICAL___nom_9___c3d6213f9", "13312": "15___CATEGORICAL___nom_9___c3d835199", "13313": "15___CATEGORICAL___nom_9___c3e155f00", "13314": "15___CATEGORICAL___nom_9___c3e7c4c3e", "13315": "15___CATEGORICAL___nom_9___c3f7bd15c", "13316": "15___CATEGORICAL___nom_9___c3f8e8f22", "13317": "15___CATEGORICAL___nom_9___c3fd8114c", "13318": "15___CATEGORICAL___nom_9___c40084723", "13319": "15___CATEGORICAL___nom_9___c4044c33a", "13320": "15___CATEGORICAL___nom_9___c40d30c72", "13321": "15___CATEGORICAL___nom_9___c41b0ca91", "13322": "15___CATEGORICAL___nom_9___c41ceaa04", "13323": "15___CATEGORICAL___nom_9___c41ea8c6e", "13324": "15___CATEGORICAL___nom_9___c41fcbaf2", "13325": "15___CATEGORICAL___nom_9___c420fcc91", "13326": "15___CATEGORICAL___nom_9___c4223aa7f", "13327": "15___CATEGORICAL___nom_9___c433876e1", "13328": "15___CATEGORICAL___nom_9___c43552b1a", "13329": "15___CATEGORICAL___nom_9___c43d5b876", "13330": "15___CATEGORICAL___nom_9___c441c4c05", "13331": "15___CATEGORICAL___nom_9___c44609f5a", "13332": "15___CATEGORICAL___nom_9___c44e15cdf", "13333": "15___CATEGORICAL___nom_9___c45e0bd5a", "13334": "15___CATEGORICAL___nom_9___c465f7b64", "13335": "15___CATEGORICAL___nom_9___c46f8c1bc", "13336": "15___CATEGORICAL___nom_9___c48134bb6", "13337": "15___CATEGORICAL___nom_9___c484056ad", "13338": "15___CATEGORICAL___nom_9___c484f2484", "13339": "15___CATEGORICAL___nom_9___c48dc2eb3", "13340": "15___CATEGORICAL___nom_9___c48ed0c19", "13341": "15___CATEGORICAL___nom_9___c492577a1", "13342": "15___CATEGORICAL___nom_9___c493c5bc3", "13343": "15___CATEGORICAL___nom_9___c496bfcd1", "13344": "15___CATEGORICAL___nom_9___c4991470a", "13345": "15___CATEGORICAL___nom_9___c49a36482", "13346": "15___CATEGORICAL___nom_9___c49baff89", "13347": "15___CATEGORICAL___nom_9___c4a8f86ff", "13348": "15___CATEGORICAL___nom_9___c4af64bc8", "13349": "15___CATEGORICAL___nom_9___c4b2cdb49", "13350": "15___CATEGORICAL___nom_9___c4b3f0533", "13351": "15___CATEGORICAL___nom_9___c4b6205e9", "13352": "15___CATEGORICAL___nom_9___c4b6a1da6", "13353": "15___CATEGORICAL___nom_9___c4bcc3fa5", "13354": "15___CATEGORICAL___nom_9___c4bfbb125", "13355": "15___CATEGORICAL___nom_9___c4ccdcb6b", "13356": "15___CATEGORICAL___nom_9___c4d43d4cf", "13357": "15___CATEGORICAL___nom_9___c4e148b66", "13358": "15___CATEGORICAL___nom_9___c4e25f270", "13359": "15___CATEGORICAL___nom_9___c4e452e63", "13360": "15___CATEGORICAL___nom_9___c4e68e513", "13361": "15___CATEGORICAL___nom_9___c4e7912a7", "13362": "15___CATEGORICAL___nom_9___c4ebd340d", "13363": "15___CATEGORICAL___nom_9___c4f05ecaf", "13364": "15___CATEGORICAL___nom_9___c4f72cc54", "13365": "15___CATEGORICAL___nom_9___c4f72e38f", "13366": "15___CATEGORICAL___nom_9___c4fd386fd", "13367": "15___CATEGORICAL___nom_9___c503fe80e", "13368": "15___CATEGORICAL___nom_9___c50401860", "13369": "15___CATEGORICAL___nom_9___c5084be1a", "13370": "15___CATEGORICAL___nom_9___c50aa26e1", "13371": "15___CATEGORICAL___nom_9___c52048d59", "13372": "15___CATEGORICAL___nom_9___c524d716c", "13373": "15___CATEGORICAL___nom_9___c52702800", "13374": "15___CATEGORICAL___nom_9___c5272a622", "13375": "15___CATEGORICAL___nom_9___c52bca283", "13376": "15___CATEGORICAL___nom_9___c530e099c", "13377": "15___CATEGORICAL___nom_9___c533ba800", "13378": "15___CATEGORICAL___nom_9___c54660949", "13379": "15___CATEGORICAL___nom_9___c547b3466", "13380": "15___CATEGORICAL___nom_9___c54a4d273", "13381": "15___CATEGORICAL___nom_9___c55533419", "13382": "15___CATEGORICAL___nom_9___c56e65a40", "13383": "15___CATEGORICAL___nom_9___c56f59466", "13384": "15___CATEGORICAL___nom_9___c57b300f1", "13385": "15___CATEGORICAL___nom_9___c57ff1c91", "13386": "15___CATEGORICAL___nom_9___c582dec6d", "13387": "15___CATEGORICAL___nom_9___c588733fa", "13388": "15___CATEGORICAL___nom_9___c58d43125", "13389": "15___CATEGORICAL___nom_9___c58d9f791", "13390": "15___CATEGORICAL___nom_9___c58dec0d7", "13391": "15___CATEGORICAL___nom_9___c58f3bf02", "13392": "15___CATEGORICAL___nom_9___c59144997", "13393": "15___CATEGORICAL___nom_9___c5955465a", "13394": "15___CATEGORICAL___nom_9___c59e44911", "13395": "15___CATEGORICAL___nom_9___c5acadd91", "13396": "15___CATEGORICAL___nom_9___c5ad6bf46", "13397": "15___CATEGORICAL___nom_9___c5ae732d8", "13398": "15___CATEGORICAL___nom_9___c5b37c934", "13399": "15___CATEGORICAL___nom_9___c5b96181b", "13400": "15___CATEGORICAL___nom_9___c5b9d43bd", "13401": "15___CATEGORICAL___nom_9___c5c827fb6", "13402": "15___CATEGORICAL___nom_9___c5cec7fdf", "13403": "15___CATEGORICAL___nom_9___c5d1d64b5", "13404": "15___CATEGORICAL___nom_9___c5d4f951b", "13405": "15___CATEGORICAL___nom_9___c5e6aa127", "13406": "15___CATEGORICAL___nom_9___c5f15ea3d", "13407": "15___CATEGORICAL___nom_9___c5fa302b5", "13408": "15___CATEGORICAL___nom_9___c5fbecc9e", "13409": "15___CATEGORICAL___nom_9___c5fffe71f", "13410": "15___CATEGORICAL___nom_9___c6048d4f4", "13411": "15___CATEGORICAL___nom_9___c604969a2", "13412": "15___CATEGORICAL___nom_9___c6164aded", "13413": "15___CATEGORICAL___nom_9___c61e71c92", "13414": "15___CATEGORICAL___nom_9___c62416585", "13415": "15___CATEGORICAL___nom_9___c62942b74", "13416": "15___CATEGORICAL___nom_9___c62d29488", "13417": "15___CATEGORICAL___nom_9___c62fece22", "13418": "15___CATEGORICAL___nom_9___c6302f8d5", "13419": "15___CATEGORICAL___nom_9___c636fdc0b", "13420": "15___CATEGORICAL___nom_9___c637b4cf0", "13421": "15___CATEGORICAL___nom_9___c63d01adb", "13422": "15___CATEGORICAL___nom_9___c63edf709", "13423": "15___CATEGORICAL___nom_9___c640a3131", "13424": "15___CATEGORICAL___nom_9___c642df048", "13425": "15___CATEGORICAL___nom_9___c6444b847", "13426": "15___CATEGORICAL___nom_9___c644ac1b0", "13427": "15___CATEGORICAL___nom_9___c64a3cae3", "13428": "15___CATEGORICAL___nom_9___c6550895a", "13429": "15___CATEGORICAL___nom_9___c65639434", "13430": "15___CATEGORICAL___nom_9___c659d4c55", "13431": "15___CATEGORICAL___nom_9___c6614488e", "13432": "15___CATEGORICAL___nom_9___c66c8e177", "13433": "15___CATEGORICAL___nom_9___c66ed48cb", "13434": "15___CATEGORICAL___nom_9___c67607e5e", "13435": "15___CATEGORICAL___nom_9___c68b759a9", "13436": "15___CATEGORICAL___nom_9___c68b9ab4f", "13437": "15___CATEGORICAL___nom_9___c6952cd05", "13438": "15___CATEGORICAL___nom_9___c698713ca", "13439": "15___CATEGORICAL___nom_9___c6aa5e1c8", "13440": "15___CATEGORICAL___nom_9___c6b14f13d", "13441": "15___CATEGORICAL___nom_9___c6b1acd01", "13442": "15___CATEGORICAL___nom_9___c6b20f9dd", "13443": "15___CATEGORICAL___nom_9___c6b249b39", "13444": "15___CATEGORICAL___nom_9___c6b3ecc34", "13445": "15___CATEGORICAL___nom_9___c6bc9cd5c", "13446": "15___CATEGORICAL___nom_9___c6bd94cef", "13447": "15___CATEGORICAL___nom_9___c6c0e8a2b", "13448": "15___CATEGORICAL___nom_9___c6c1aa34a", "13449": "15___CATEGORICAL___nom_9___c6c7a2e99", "13450": "15___CATEGORICAL___nom_9___c6c849cea", "13451": "15___CATEGORICAL___nom_9___c6ca13f9c", "13452": "15___CATEGORICAL___nom_9___c6d3cf033", "13453": "15___CATEGORICAL___nom_9___c6d6931ae", "13454": "15___CATEGORICAL___nom_9___c6dadd4f8", "13455": "15___CATEGORICAL___nom_9___c6df1b713", "13456": "15___CATEGORICAL___nom_9___c6e8ca9b8", "13457": "15___CATEGORICAL___nom_9___c6eb09902", "13458": "15___CATEGORICAL___nom_9___c704ae006", "13459": "15___CATEGORICAL___nom_9___c726f3132", "13460": "15___CATEGORICAL___nom_9___c728f29cc", "13461": "15___CATEGORICAL___nom_9___c7291cfbd", "13462": "15___CATEGORICAL___nom_9___c72a1372f", "13463": "15___CATEGORICAL___nom_9___c72aaba20", "13464": "15___CATEGORICAL___nom_9___c72fcf404", "13465": "15___CATEGORICAL___nom_9___c732a8342", "13466": "15___CATEGORICAL___nom_9___c7393332f", "13467": "15___CATEGORICAL___nom_9___c73a0eb2a", "13468": "15___CATEGORICAL___nom_9___c747a2ab9", "13469": "15___CATEGORICAL___nom_9___c74b639d6", "13470": "15___CATEGORICAL___nom_9___c74c0c68b", "13471": "15___CATEGORICAL___nom_9___c74d456dd", "13472": "15___CATEGORICAL___nom_9___c7539404b", "13473": "15___CATEGORICAL___nom_9___c753e1ff5", "13474": "15___CATEGORICAL___nom_9___c75fb0c8e", "13475": "15___CATEGORICAL___nom_9___c7656c628", "13476": "15___CATEGORICAL___nom_9___c76d1a95b", "13477": "15___CATEGORICAL___nom_9___c76fc5a78", "13478": "15___CATEGORICAL___nom_9___c773a9523", "13479": "15___CATEGORICAL___nom_9___c77d1b6a1", "13480": "15___CATEGORICAL___nom_9___c78ce84bb", "13481": "15___CATEGORICAL___nom_9___c78d7df34", "13482": "15___CATEGORICAL___nom_9___c7a346fcc", "13483": "15___CATEGORICAL___nom_9___c7b9fd244", "13484": "15___CATEGORICAL___nom_9___c7ba4e1a4", "13485": "15___CATEGORICAL___nom_9___c7bc471db", "13486": "15___CATEGORICAL___nom_9___c7bd307ab", "13487": "15___CATEGORICAL___nom_9___c7cb54ecd", "13488": "15___CATEGORICAL___nom_9___c7cb845d9", "13489": "15___CATEGORICAL___nom_9___c7cfed209", "13490": "15___CATEGORICAL___nom_9___c7d528871", "13491": "15___CATEGORICAL___nom_9___c7d74fbe3", "13492": "15___CATEGORICAL___nom_9___c7d94e2c0", "13493": "15___CATEGORICAL___nom_9___c7e062c59", "13494": "15___CATEGORICAL___nom_9___c7e106a50", "13495": "15___CATEGORICAL___nom_9___c7e5e4b9d", "13496": "15___CATEGORICAL___nom_9___c7ee5edda", "13497": "15___CATEGORICAL___nom_9___c7ef598b7", "13498": "15___CATEGORICAL___nom_9___c7f35bac7", "13499": "15___CATEGORICAL___nom_9___c7f56bf01", "13500": "15___CATEGORICAL___nom_9___c7f87f38b", "13501": "15___CATEGORICAL___nom_9___c7fc31102", "13502": "15___CATEGORICAL___nom_9___c7ff9a89c", "13503": "15___CATEGORICAL___nom_9___c8067b466", "13504": "15___CATEGORICAL___nom_9___c81596e99", "13505": "15___CATEGORICAL___nom_9___c821c7c16", "13506": "15___CATEGORICAL___nom_9___c82c2672a", "13507": "15___CATEGORICAL___nom_9___c82e2fab2", "13508": "15___CATEGORICAL___nom_9___c831e68c9", "13509": "15___CATEGORICAL___nom_9___c836f533b", "13510": "15___CATEGORICAL___nom_9___c83ecca6c", "13511": "15___CATEGORICAL___nom_9___c843b3b71", "13512": "15___CATEGORICAL___nom_9___c843f99f6", "13513": "15___CATEGORICAL___nom_9___c845b7516", "13514": "15___CATEGORICAL___nom_9___c847aeda9", "13515": "15___CATEGORICAL___nom_9___c84805fe6", "13516": "15___CATEGORICAL___nom_9___c84ca1c13", "13517": "15___CATEGORICAL___nom_9___c84d0d68b", "13518": "15___CATEGORICAL___nom_9___c850240da", "13519": "15___CATEGORICAL___nom_9___c8665a2f1", "13520": "15___CATEGORICAL___nom_9___c86af9a1e", "13521": "15___CATEGORICAL___nom_9___c889494f5", "13522": "15___CATEGORICAL___nom_9___c88b060ae", "13523": "15___CATEGORICAL___nom_9___c88c10a63", "13524": "15___CATEGORICAL___nom_9___c890927fb", "13525": "15___CATEGORICAL___nom_9___c892e804d", "13526": "15___CATEGORICAL___nom_9___c896e7f45", "13527": "15___CATEGORICAL___nom_9___c89f95d45", "13528": "15___CATEGORICAL___nom_9___c8a1cc47e", "13529": "15___CATEGORICAL___nom_9___c8b22df93", "13530": "15___CATEGORICAL___nom_9___c8b3be06f", "13531": "15___CATEGORICAL___nom_9___c8b60080a", "13532": "15___CATEGORICAL___nom_9___c8bd5607e", "13533": "15___CATEGORICAL___nom_9___c8c042122", "13534": "15___CATEGORICAL___nom_9___c8c315374", "13535": "15___CATEGORICAL___nom_9___c8cd20a3d", "13536": "15___CATEGORICAL___nom_9___c8d6d2428", "13537": "15___CATEGORICAL___nom_9___c8d73d93d", "13538": "15___CATEGORICAL___nom_9___c8d80e081", "13539": "15___CATEGORICAL___nom_9___c8dd88f72", "13540": "15___CATEGORICAL___nom_9___c8e24ae03", "13541": "15___CATEGORICAL___nom_9___c8eac4ad6", "13542": "15___CATEGORICAL___nom_9___c8eba3d61", "13543": "15___CATEGORICAL___nom_9___c8ed87a40", "13544": "15___CATEGORICAL___nom_9___c8f1c3456", "13545": "15___CATEGORICAL___nom_9___c8f276479", "13546": "15___CATEGORICAL___nom_9___c8f27c799", "13547": "15___CATEGORICAL___nom_9___c8f5abb72", "13548": "15___CATEGORICAL___nom_9___c90ed8f1e", "13549": "15___CATEGORICAL___nom_9___c916150b3", "13550": "15___CATEGORICAL___nom_9___c92ab591c", "13551": "15___CATEGORICAL___nom_9___c92b78dfd", "13552": "15___CATEGORICAL___nom_9___c9336bd15", "13553": "15___CATEGORICAL___nom_9___c934db5c8", "13554": "15___CATEGORICAL___nom_9___c93580934", "13555": "15___CATEGORICAL___nom_9___c93d101d0", "13556": "15___CATEGORICAL___nom_9___c93f2c9dd", "13557": "15___CATEGORICAL___nom_9___c9409b240", "13558": "15___CATEGORICAL___nom_9___c94cfbf60", "13559": "15___CATEGORICAL___nom_9___c94eea7a4", "13560": "15___CATEGORICAL___nom_9___c953ed5f6", "13561": "15___CATEGORICAL___nom_9___c954ba04e", "13562": "15___CATEGORICAL___nom_9___c955dd1b3", "13563": "15___CATEGORICAL___nom_9___c95dd88d7", "13564": "15___CATEGORICAL___nom_9___c961c6998", "13565": "15___CATEGORICAL___nom_9___c96372e83", "13566": "15___CATEGORICAL___nom_9___c964a7037", "13567": "15___CATEGORICAL___nom_9___c96cec679", "13568": "15___CATEGORICAL___nom_9___c96dd0f52", "13569": "15___CATEGORICAL___nom_9___c9710725b", "13570": "15___CATEGORICAL___nom_9___c97275e1a", "13571": "15___CATEGORICAL___nom_9___c975567f6", "13572": "15___CATEGORICAL___nom_9___c979a5555", "13573": "15___CATEGORICAL___nom_9___c98390e74", "13574": "15___CATEGORICAL___nom_9___c984d5ff4", "13575": "15___CATEGORICAL___nom_9___c98774fd1", "13576": "15___CATEGORICAL___nom_9___c991123e8", "13577": "15___CATEGORICAL___nom_9___c9a347c38", "13578": "15___CATEGORICAL___nom_9___c9b8ef85d", "13579": "15___CATEGORICAL___nom_9___c9b9a9e8f", "13580": "15___CATEGORICAL___nom_9___c9bae0116", "13581": "15___CATEGORICAL___nom_9___c9bc86d2d", "13582": "15___CATEGORICAL___nom_9___c9cbd0772", "13583": "15___CATEGORICAL___nom_9___c9cea5192", "13584": "15___CATEGORICAL___nom_9___c9ceec6e9", "13585": "15___CATEGORICAL___nom_9___c9d709c11", "13586": "15___CATEGORICAL___nom_9___c9db67339", "13587": "15___CATEGORICAL___nom_9___c9e2cc5fe", "13588": "15___CATEGORICAL___nom_9___c9e40d7eb", "13589": "15___CATEGORICAL___nom_9___c9ec2c14b", "13590": "15___CATEGORICAL___nom_9___c9ed894c6", "13591": "15___CATEGORICAL___nom_9___c9f3feb38", "13592": "15___CATEGORICAL___nom_9___c9ff5e6a9", "13593": "15___CATEGORICAL___nom_9___ca041d4ef", "13594": "15___CATEGORICAL___nom_9___ca062fb35", "13595": "15___CATEGORICAL___nom_9___ca13016af", "13596": "15___CATEGORICAL___nom_9___ca1f70e92", "13597": "15___CATEGORICAL___nom_9___ca1f813f4", "13598": "15___CATEGORICAL___nom_9___ca2479953", "13599": "15___CATEGORICAL___nom_9___ca26a12dd", "13600": "15___CATEGORICAL___nom_9___ca295a4ea", "13601": "15___CATEGORICAL___nom_9___ca297a4ab", "13602": "15___CATEGORICAL___nom_9___ca3177a1c", "13603": "15___CATEGORICAL___nom_9___ca3344658", "13604": "15___CATEGORICAL___nom_9___ca3cc21bf", "13605": "15___CATEGORICAL___nom_9___ca40c7110", "13606": "15___CATEGORICAL___nom_9___ca4ce4ceb", "13607": "15___CATEGORICAL___nom_9___ca51d42c5", "13608": "15___CATEGORICAL___nom_9___ca567c89e", "13609": "15___CATEGORICAL___nom_9___ca5bfe426", "13610": "15___CATEGORICAL___nom_9___ca5cf0477", "13611": "15___CATEGORICAL___nom_9___ca723e285", "13612": "15___CATEGORICAL___nom_9___ca727194b", "13613": "15___CATEGORICAL___nom_9___ca7a88644", "13614": "15___CATEGORICAL___nom_9___ca7ddfae9", "13615": "15___CATEGORICAL___nom_9___ca7e3ed1c", "13616": "15___CATEGORICAL___nom_9___ca7e9095e", "13617": "15___CATEGORICAL___nom_9___ca854a42d", "13618": "15___CATEGORICAL___nom_9___ca8c2e63c", "13619": "15___CATEGORICAL___nom_9___ca8d7826b", "13620": "15___CATEGORICAL___nom_9___ca8e0bfc1", "13621": "15___CATEGORICAL___nom_9___ca97b27dc", "13622": "15___CATEGORICAL___nom_9___caa05ba28", "13623": "15___CATEGORICAL___nom_9___caa16a9bf", "13624": "15___CATEGORICAL___nom_9___caaaa7905", "13625": "15___CATEGORICAL___nom_9___caad4d090", "13626": "15___CATEGORICAL___nom_9___cab058c87", "13627": "15___CATEGORICAL___nom_9___cab084e92", "13628": "15___CATEGORICAL___nom_9___cab420803", "13629": "15___CATEGORICAL___nom_9___cab9553f7", "13630": "15___CATEGORICAL___nom_9___cabe6b752", "13631": "15___CATEGORICAL___nom_9___cabf17ab2", "13632": "15___CATEGORICAL___nom_9___cac02ad0d", "13633": "15___CATEGORICAL___nom_9___cac4298b8", "13634": "15___CATEGORICAL___nom_9___cac58748f", "13635": "15___CATEGORICAL___nom_9___cad5be10d", "13636": "15___CATEGORICAL___nom_9___cae3a2eb4", "13637": "15___CATEGORICAL___nom_9___cae4ee24e", "13638": "15___CATEGORICAL___nom_9___caea1ad4c", "13639": "15___CATEGORICAL___nom_9___caf46b0c7", "13640": "15___CATEGORICAL___nom_9___caf7544f2", "13641": "15___CATEGORICAL___nom_9___cafbf9566", "13642": "15___CATEGORICAL___nom_9___cafd73ce7", "13643": "15___CATEGORICAL___nom_9___cb00cbe99", "13644": "15___CATEGORICAL___nom_9___cb0109d07", "13645": "15___CATEGORICAL___nom_9___cb0226297", "13646": "15___CATEGORICAL___nom_9___cb02ba3e7", "13647": "15___CATEGORICAL___nom_9___cb033a754", "13648": "15___CATEGORICAL___nom_9___cb10af3c0", "13649": "15___CATEGORICAL___nom_9___cb1163056", "13650": "15___CATEGORICAL___nom_9___cb137c30a", "13651": "15___CATEGORICAL___nom_9___cb13d961b", "13652": "15___CATEGORICAL___nom_9___cb19ac46b", "13653": "15___CATEGORICAL___nom_9___cb2f7607a", "13654": "15___CATEGORICAL___nom_9___cb33c9994", "13655": "15___CATEGORICAL___nom_9___cb3f7d7fd", "13656": "15___CATEGORICAL___nom_9___cb4897439", "13657": "15___CATEGORICAL___nom_9___cb4d6873e", "13658": "15___CATEGORICAL___nom_9___cb505d5d6", "13659": "15___CATEGORICAL___nom_9___cb53b5551", "13660": "15___CATEGORICAL___nom_9___cb5c591ad", "13661": "15___CATEGORICAL___nom_9___cb5d77cd1", "13662": "15___CATEGORICAL___nom_9___cb644dfa5", "13663": "15___CATEGORICAL___nom_9___cb70f14a4", "13664": "15___CATEGORICAL___nom_9___cb72cbafe", "13665": "15___CATEGORICAL___nom_9___cb7a0f5c2", "13666": "15___CATEGORICAL___nom_9___cb7b83fb5", "13667": "15___CATEGORICAL___nom_9___cb7bb496b", "13668": "15___CATEGORICAL___nom_9___cb7c5aef0", "13669": "15___CATEGORICAL___nom_9___cb7d3029c", "13670": "15___CATEGORICAL___nom_9___cb8096c98", "13671": "15___CATEGORICAL___nom_9___cb874b315", "13672": "15___CATEGORICAL___nom_9___cb882ed55", "13673": "15___CATEGORICAL___nom_9___cb8b9d2cd", "13674": "15___CATEGORICAL___nom_9___cb937385d", "13675": "15___CATEGORICAL___nom_9___cb94550ea", "13676": "15___CATEGORICAL___nom_9___cb9575b7b", "13677": "15___CATEGORICAL___nom_9___cb987cd3f", "13678": "15___CATEGORICAL___nom_9___cb98888a6", "13679": "15___CATEGORICAL___nom_9___cba02a3ec", "13680": "15___CATEGORICAL___nom_9___cba43e907", "13681": "15___CATEGORICAL___nom_9___cba4ed1ee", "13682": "15___CATEGORICAL___nom_9___cba64770e", "13683": "15___CATEGORICAL___nom_9___cba717381", "13684": "15___CATEGORICAL___nom_9___cbac09a67", "13685": "15___CATEGORICAL___nom_9___cbb2e2721", "13686": "15___CATEGORICAL___nom_9___cbd0d31d5", "13687": "15___CATEGORICAL___nom_9___cbd4ab902", "13688": "15___CATEGORICAL___nom_9___cbe16c9fe", "13689": "15___CATEGORICAL___nom_9___cbe32c1c1", "13690": "15___CATEGORICAL___nom_9___cbf76bec5", "13691": "15___CATEGORICAL___nom_9___cbf900a5a", "13692": "15___CATEGORICAL___nom_9___cbfa7b3ed", "13693": "15___CATEGORICAL___nom_9___cbfc9b62b", "13694": "15___CATEGORICAL___nom_9___cc03183bf", "13695": "15___CATEGORICAL___nom_9___cc0c6082c", "13696": "15___CATEGORICAL___nom_9___cc1d63b50", "13697": "15___CATEGORICAL___nom_9___cc1e68fec", "13698": "15___CATEGORICAL___nom_9___cc217c722", "13699": "15___CATEGORICAL___nom_9___cc2a843a2", "13700": "15___CATEGORICAL___nom_9___cc3737162", "13701": "15___CATEGORICAL___nom_9___cc51d4212", "13702": "15___CATEGORICAL___nom_9___cc5db6e13", "13703": "15___CATEGORICAL___nom_9___cc64d364b", "13704": "15___CATEGORICAL___nom_9___cc65a250a", "13705": "15___CATEGORICAL___nom_9___cc689dc8d", "13706": "15___CATEGORICAL___nom_9___cc6af7428", "13707": "15___CATEGORICAL___nom_9___cc6dd400a", "13708": "15___CATEGORICAL___nom_9___cc6de18bb", "13709": "15___CATEGORICAL___nom_9___cc75a7063", "13710": "15___CATEGORICAL___nom_9___cc7b9f229", "13711": "15___CATEGORICAL___nom_9___cc7ba3635", "13712": "15___CATEGORICAL___nom_9___cc7de29ab", "13713": "15___CATEGORICAL___nom_9___cc80ef686", "13714": "15___CATEGORICAL___nom_9___cc8199cf3", "13715": "15___CATEGORICAL___nom_9___cc8881a2a", "13716": "15___CATEGORICAL___nom_9___cc89f82a7", "13717": "15___CATEGORICAL___nom_9___cc9084857", "13718": "15___CATEGORICAL___nom_9___cc95a80d5", "13719": "15___CATEGORICAL___nom_9___cc9a32f11", "13720": "15___CATEGORICAL___nom_9___cca10898b", "13721": "15___CATEGORICAL___nom_9___cca99cfde", "13722": "15___CATEGORICAL___nom_9___ccba85471", "13723": "15___CATEGORICAL___nom_9___ccc85d4a7", "13724": "15___CATEGORICAL___nom_9___ccd78d9cf", "13725": "15___CATEGORICAL___nom_9___ccd9b1eba", "13726": "15___CATEGORICAL___nom_9___ccdbca93a", "13727": "15___CATEGORICAL___nom_9___ccdbed0be", "13728": "15___CATEGORICAL___nom_9___ccdc191b8", "13729": "15___CATEGORICAL___nom_9___cce3304ab", "13730": "15___CATEGORICAL___nom_9___ccf007e96", "13731": "15___CATEGORICAL___nom_9___ccf7d03e1", "13732": "15___CATEGORICAL___nom_9___ccfa3ee51", "13733": "15___CATEGORICAL___nom_9___cd06a15d0", "13734": "15___CATEGORICAL___nom_9___cd07897e8", "13735": "15___CATEGORICAL___nom_9___cd0874b67", "13736": "15___CATEGORICAL___nom_9___cd098955a", "13737": "15___CATEGORICAL___nom_9___cd0dd3073", "13738": "15___CATEGORICAL___nom_9___cd0e4f6c4", "13739": "15___CATEGORICAL___nom_9___cd0e82092", "13740": "15___CATEGORICAL___nom_9___cd1129404", "13741": "15___CATEGORICAL___nom_9___cd1446599", "13742": "15___CATEGORICAL___nom_9___cd169dec3", "13743": "15___CATEGORICAL___nom_9___cd178e7fc", "13744": "15___CATEGORICAL___nom_9___cd1d78004", "13745": "15___CATEGORICAL___nom_9___cd2019887", "13746": "15___CATEGORICAL___nom_9___cd20cd3a4", "13747": "15___CATEGORICAL___nom_9___cd295c0f0", "13748": "15___CATEGORICAL___nom_9___cd2d9133a", "13749": "15___CATEGORICAL___nom_9___cd31b0b98", "13750": "15___CATEGORICAL___nom_9___cd3214187", "13751": "15___CATEGORICAL___nom_9___cd38ba7bd", "13752": "15___CATEGORICAL___nom_9___cd3c4de1f", "13753": "15___CATEGORICAL___nom_9___cd481b0a4", "13754": "15___CATEGORICAL___nom_9___cd498b590", "13755": "15___CATEGORICAL___nom_9___cd502c7fb", "13756": "15___CATEGORICAL___nom_9___cd52acef5", "13757": "15___CATEGORICAL___nom_9___cd56eeda0", "13758": "15___CATEGORICAL___nom_9___cd58a65f2", "13759": "15___CATEGORICAL___nom_9___cd5ad2510", "13760": "15___CATEGORICAL___nom_9___cd5aee847", "13761": "15___CATEGORICAL___nom_9___cd657c9e5", "13762": "15___CATEGORICAL___nom_9___cd65d220a", "13763": "15___CATEGORICAL___nom_9___cd661804f", "13764": "15___CATEGORICAL___nom_9___cd80a7bc6", "13765": "15___CATEGORICAL___nom_9___cd80a9647", "13766": "15___CATEGORICAL___nom_9___cd883c010", "13767": "15___CATEGORICAL___nom_9___cd8bcbd36", "13768": "15___CATEGORICAL___nom_9___cd9160731", "13769": "15___CATEGORICAL___nom_9___cd91a5993", "13770": "15___CATEGORICAL___nom_9___cd94603bd", "13771": "15___CATEGORICAL___nom_9___cd95e41e1", "13772": "15___CATEGORICAL___nom_9___cd9e4aa67", "13773": "15___CATEGORICAL___nom_9___cda2d2bcd", "13774": "15___CATEGORICAL___nom_9___cda9ceeed", "13775": "15___CATEGORICAL___nom_9___cdab6add7", "13776": "15___CATEGORICAL___nom_9___cdaee099f", "13777": "15___CATEGORICAL___nom_9___cdafe2310", "13778": "15___CATEGORICAL___nom_9___cdb49c91b", "13779": "15___CATEGORICAL___nom_9___cdb4b4db5", "13780": "15___CATEGORICAL___nom_9___cdb84249a", "13781": "15___CATEGORICAL___nom_9___cdbb54206", "13782": "15___CATEGORICAL___nom_9___cdbb9cd88", "13783": "15___CATEGORICAL___nom_9___cdbe80d91", "13784": "15___CATEGORICAL___nom_9___cdc54db25", "13785": "15___CATEGORICAL___nom_9___cdc842529", "13786": "15___CATEGORICAL___nom_9___cdcb7d8c0", "13787": "15___CATEGORICAL___nom_9___cdd34ed38", "13788": "15___CATEGORICAL___nom_9___cdd4ac500", "13789": "15___CATEGORICAL___nom_9___cdd80b205", "13790": "15___CATEGORICAL___nom_9___cde33a85e", "13791": "15___CATEGORICAL___nom_9___cde499f8b", "13792": "15___CATEGORICAL___nom_9___cdea59ade", "13793": "15___CATEGORICAL___nom_9___cdeefad7e", "13794": "15___CATEGORICAL___nom_9___cdf32bec9", "13795": "15___CATEGORICAL___nom_9___cdf7e45d7", "13796": "15___CATEGORICAL___nom_9___cdfa38aae", "13797": "15___CATEGORICAL___nom_9___cdfec2cb1", "13798": "15___CATEGORICAL___nom_9___ce01ede64", "13799": "15___CATEGORICAL___nom_9___ce0310319", "13800": "15___CATEGORICAL___nom_9___ce06e3cce", "13801": "15___CATEGORICAL___nom_9___ce0b52296", "13802": "15___CATEGORICAL___nom_9___ce1b484b2", "13803": "15___CATEGORICAL___nom_9___ce1cc26dd", "13804": "15___CATEGORICAL___nom_9___ce270fb4b", "13805": "15___CATEGORICAL___nom_9___ce28afdec", "13806": "15___CATEGORICAL___nom_9___ce3699aec", "13807": "15___CATEGORICAL___nom_9___ce3eeb1f4", "13808": "15___CATEGORICAL___nom_9___ce3f4f219", "13809": "15___CATEGORICAL___nom_9___ce47f347c", "13810": "15___CATEGORICAL___nom_9___ce51a424b", "13811": "15___CATEGORICAL___nom_9___ce5909b93", "13812": "15___CATEGORICAL___nom_9___ce5a415e5", "13813": "15___CATEGORICAL___nom_9___ce5bf459e", "13814": "15___CATEGORICAL___nom_9___ce5f79dd3", "13815": "15___CATEGORICAL___nom_9___ce613023c", "13816": "15___CATEGORICAL___nom_9___ce63d314e", "13817": "15___CATEGORICAL___nom_9___ce6539136", "13818": "15___CATEGORICAL___nom_9___ce6696886", "13819": "15___CATEGORICAL___nom_9___ce6a7e9f3", "13820": "15___CATEGORICAL___nom_9___ce73afd60", "13821": "15___CATEGORICAL___nom_9___ce753e34a", "13822": "15___CATEGORICAL___nom_9___ce7a85070", "13823": "15___CATEGORICAL___nom_9___ce8fd65a1", "13824": "15___CATEGORICAL___nom_9___ce92a3001", "13825": "15___CATEGORICAL___nom_9___ce971d235", "13826": "15___CATEGORICAL___nom_9___ce9c81cf6", "13827": "15___CATEGORICAL___nom_9___ce9fc53de", "13828": "15___CATEGORICAL___nom_9___cea091b6a", "13829": "15___CATEGORICAL___nom_9___ceae265a5", "13830": "15___CATEGORICAL___nom_9___ceae7a9f0", "13831": "15___CATEGORICAL___nom_9___cec62accd", "13832": "15___CATEGORICAL___nom_9___ced4152e0", "13833": "15___CATEGORICAL___nom_9___cedce78e2", "13834": "15___CATEGORICAL___nom_9___cee1a4bb4", "13835": "15___CATEGORICAL___nom_9___cee8a81e1", "13836": "15___CATEGORICAL___nom_9___ceeb57b7e", "13837": "15___CATEGORICAL___nom_9___cef582d86", "13838": "15___CATEGORICAL___nom_9___cef738904", "13839": "15___CATEGORICAL___nom_9___cefa8140e", "13840": "15___CATEGORICAL___nom_9___cefef5fc8", "13841": "15___CATEGORICAL___nom_9___cf0518836", "13842": "15___CATEGORICAL___nom_9___cf0746e09", "13843": "15___CATEGORICAL___nom_9___cf077f209", "13844": "15___CATEGORICAL___nom_9___cf08da50f", "13845": "15___CATEGORICAL___nom_9___cf1354237", "13846": "15___CATEGORICAL___nom_9___cf167b748", "13847": "15___CATEGORICAL___nom_9___cf2301a7f", "13848": "15___CATEGORICAL___nom_9___cf2458c5e", "13849": "15___CATEGORICAL___nom_9___cf32d66a6", "13850": "15___CATEGORICAL___nom_9___cf3d513d4", "13851": "15___CATEGORICAL___nom_9___cf3d8ce60", "13852": "15___CATEGORICAL___nom_9___cf406822a", "13853": "15___CATEGORICAL___nom_9___cf4ac123e", "13854": "15___CATEGORICAL___nom_9___cf4d7678b", "13855": "15___CATEGORICAL___nom_9___cf5a708e7", "13856": "15___CATEGORICAL___nom_9___cf5a966af", "13857": "15___CATEGORICAL___nom_9___cf5ac6d29", "13858": "15___CATEGORICAL___nom_9___cf5bbde92", "13859": "15___CATEGORICAL___nom_9___cf5cbf0c6", "13860": "15___CATEGORICAL___nom_9___cf5e88a3d", "13861": "15___CATEGORICAL___nom_9___cf611cd16", "13862": "15___CATEGORICAL___nom_9___cf6807048", "13863": "15___CATEGORICAL___nom_9___cf6ac9d38", "13864": "15___CATEGORICAL___nom_9___cf75a612d", "13865": "15___CATEGORICAL___nom_9___cf82344e2", "13866": "15___CATEGORICAL___nom_9___cf83a78bc", "13867": "15___CATEGORICAL___nom_9___cf840c757", "13868": "15___CATEGORICAL___nom_9___cf8eb8a33", "13869": "15___CATEGORICAL___nom_9___cf93998bc", "13870": "15___CATEGORICAL___nom_9___cf96f0be7", "13871": "15___CATEGORICAL___nom_9___cf9d313e8", "13872": "15___CATEGORICAL___nom_9___cfa507134", "13873": "15___CATEGORICAL___nom_9___cfa7536e9", "13874": "15___CATEGORICAL___nom_9___cfa80b83e", "13875": "15___CATEGORICAL___nom_9___cfa97a8a9", "13876": "15___CATEGORICAL___nom_9___cfb22de71", "13877": "15___CATEGORICAL___nom_9___cfb603af3", "13878": "15___CATEGORICAL___nom_9___cfb8aace4", "13879": "15___CATEGORICAL___nom_9___cfcfea6db", "13880": "15___CATEGORICAL___nom_9___cfd070eaa", "13881": "15___CATEGORICAL___nom_9___cfd273ca8", "13882": "15___CATEGORICAL___nom_9___cfe2e8ed7", "13883": "15___CATEGORICAL___nom_9___cfe4f69ed", "13884": "15___CATEGORICAL___nom_9___cfea4ce6e", "13885": "15___CATEGORICAL___nom_9___cfec683a9", "13886": "15___CATEGORICAL___nom_9___cfef6d87a", "13887": "15___CATEGORICAL___nom_9___cfeff5f1a", "13888": "15___CATEGORICAL___nom_9___cff2bca56", "13889": "15___CATEGORICAL___nom_9___cffaeca2e", "13890": "15___CATEGORICAL___nom_9___cfff60f79", "13891": "15___CATEGORICAL___nom_9___d001123b9", "13892": "15___CATEGORICAL___nom_9___d021d7035", "13893": "15___CATEGORICAL___nom_9___d025c5664", "13894": "15___CATEGORICAL___nom_9___d02e31f5a", "13895": "15___CATEGORICAL___nom_9___d02fe1257", "13896": "15___CATEGORICAL___nom_9___d02ffda8d", "13897": "15___CATEGORICAL___nom_9___d03141383", "13898": "15___CATEGORICAL___nom_9___d0315697b", "13899": "15___CATEGORICAL___nom_9___d0326c181", "13900": "15___CATEGORICAL___nom_9___d032bdf72", "13901": "15___CATEGORICAL___nom_9___d034727c2", "13902": "15___CATEGORICAL___nom_9___d037d18f3", "13903": "15___CATEGORICAL___nom_9___d0385cab3", "13904": "15___CATEGORICAL___nom_9___d03a9887f", "13905": "15___CATEGORICAL___nom_9___d03dbd55e", "13906": "15___CATEGORICAL___nom_9___d042babdf", "13907": "15___CATEGORICAL___nom_9___d042ccc94", "13908": "15___CATEGORICAL___nom_9___d0432e629", "13909": "15___CATEGORICAL___nom_9___d0481d60e", "13910": "15___CATEGORICAL___nom_9___d04909741", "13911": "15___CATEGORICAL___nom_9___d04e7a922", "13912": "15___CATEGORICAL___nom_9___d04f68193", "13913": "15___CATEGORICAL___nom_9___d051d165c", "13914": "15___CATEGORICAL___nom_9___d053f5239", "13915": "15___CATEGORICAL___nom_9___d05463242", "13916": "15___CATEGORICAL___nom_9___d05493251", "13917": "15___CATEGORICAL___nom_9___d05b17e80", "13918": "15___CATEGORICAL___nom_9___d05b8b8e6", "13919": "15___CATEGORICAL___nom_9___d05f9f89b", "13920": "15___CATEGORICAL___nom_9___d0602f8ea", "13921": "15___CATEGORICAL___nom_9___d06090d26", "13922": "15___CATEGORICAL___nom_9___d060e7d1f", "13923": "15___CATEGORICAL___nom_9___d06d13d49", "13924": "15___CATEGORICAL___nom_9___d06dd7860", "13925": "15___CATEGORICAL___nom_9___d074b1d6a", "13926": "15___CATEGORICAL___nom_9___d07ed0d7a", "13927": "15___CATEGORICAL___nom_9___d0812cb13", "13928": "15___CATEGORICAL___nom_9___d0856c9c6", "13929": "15___CATEGORICAL___nom_9___d08fc49d3", "13930": "15___CATEGORICAL___nom_9___d08ff8eab", "13931": "15___CATEGORICAL___nom_9___d09349d27", "13932": "15___CATEGORICAL___nom_9___d0945346e", "13933": "15___CATEGORICAL___nom_9___d09774418", "13934": "15___CATEGORICAL___nom_9___d0a02688b", "13935": "15___CATEGORICAL___nom_9___d0a09475b", "13936": "15___CATEGORICAL___nom_9___d0a39b665", "13937": "15___CATEGORICAL___nom_9___d0a3c67ff", "13938": "15___CATEGORICAL___nom_9___d0a66a9ba", "13939": "15___CATEGORICAL___nom_9___d0a8cdfbb", "13940": "15___CATEGORICAL___nom_9___d0ab0edd6", "13941": "15___CATEGORICAL___nom_9___d0accd12f", "13942": "15___CATEGORICAL___nom_9___d0adef90c", "13943": "15___CATEGORICAL___nom_9___d0b22cc23", "13944": "15___CATEGORICAL___nom_9___d0c2cd24c", "13945": "15___CATEGORICAL___nom_9___d0c6a3c7b", "13946": "15___CATEGORICAL___nom_9___d0c72ecfb", "13947": "15___CATEGORICAL___nom_9___d0c781a97", "13948": "15___CATEGORICAL___nom_9___d0c7f3f0c", "13949": "15___CATEGORICAL___nom_9___d0cb71dc2", "13950": "15___CATEGORICAL___nom_9___d0cf04324", "13951": "15___CATEGORICAL___nom_9___d0d301002", "13952": "15___CATEGORICAL___nom_9___d0daa9a8d", "13953": "15___CATEGORICAL___nom_9___d0e33af70", "13954": "15___CATEGORICAL___nom_9___d0e681522", "13955": "15___CATEGORICAL___nom_9___d101ce130", "13956": "15___CATEGORICAL___nom_9___d10527c59", "13957": "15___CATEGORICAL___nom_9___d10620ca0", "13958": "15___CATEGORICAL___nom_9___d108a0030", "13959": "15___CATEGORICAL___nom_9___d1096c9a9", "13960": "15___CATEGORICAL___nom_9___d109bc92d", "13961": "15___CATEGORICAL___nom_9___d11089ead", "13962": "15___CATEGORICAL___nom_9___d1180bc29", "13963": "15___CATEGORICAL___nom_9___d11cbc55b", "13964": "15___CATEGORICAL___nom_9___d11f99d5a", "13965": "15___CATEGORICAL___nom_9___d12725b2d", "13966": "15___CATEGORICAL___nom_9___d12977dc1", "13967": "15___CATEGORICAL___nom_9___d129c35e8", "13968": "15___CATEGORICAL___nom_9___d12a513d6", "13969": "15___CATEGORICAL___nom_9___d12deb437", "13970": "15___CATEGORICAL___nom_9___d12ef6354", "13971": "15___CATEGORICAL___nom_9___d14263d54", "13972": "15___CATEGORICAL___nom_9___d149ec75c", "13973": "15___CATEGORICAL___nom_9___d14b9e374", "13974": "15___CATEGORICAL___nom_9___d14c45ff6", "13975": "15___CATEGORICAL___nom_9___d14f1f8dc", "13976": "15___CATEGORICAL___nom_9___d153ec218", "13977": "15___CATEGORICAL___nom_9___d1591a06e", "13978": "15___CATEGORICAL___nom_9___d15958ca9", "13979": "15___CATEGORICAL___nom_9___d15d9b260", "13980": "15___CATEGORICAL___nom_9___d164a98e8", "13981": "15___CATEGORICAL___nom_9___d167001b0", "13982": "15___CATEGORICAL___nom_9___d173d5602", "13983": "15___CATEGORICAL___nom_9___d174729a9", "13984": "15___CATEGORICAL___nom_9___d174c9335", "13985": "15___CATEGORICAL___nom_9___d176f09d5", "13986": "15___CATEGORICAL___nom_9___d177af19a", "13987": "15___CATEGORICAL___nom_9___d17d980c9", "13988": "15___CATEGORICAL___nom_9___d17da3e06", "13989": "15___CATEGORICAL___nom_9___d181413e9", "13990": "15___CATEGORICAL___nom_9___d1835e76b", "13991": "15___CATEGORICAL___nom_9___d18da778c", "13992": "15___CATEGORICAL___nom_9___d18db4d66", "13993": "15___CATEGORICAL___nom_9___d1920d30a", "13994": "15___CATEGORICAL___nom_9___d19365c98", "13995": "15___CATEGORICAL___nom_9___d19520e23", "13996": "15___CATEGORICAL___nom_9___d198c2972", "13997": "15___CATEGORICAL___nom_9___d19a0b96d", "13998": "15___CATEGORICAL___nom_9___d1a119dd4", "13999": "15___CATEGORICAL___nom_9___d1a837d06", "14000": "15___CATEGORICAL___nom_9___d1b57cee3", "14001": "15___CATEGORICAL___nom_9___d1c06ec58", "14002": "15___CATEGORICAL___nom_9___d1c682bcf", "14003": "15___CATEGORICAL___nom_9___d1cddf499", "14004": "15___CATEGORICAL___nom_9___d1d3e849b", "14005": "15___CATEGORICAL___nom_9___d1d49f370", "14006": "15___CATEGORICAL___nom_9___d1d9522ac", "14007": "15___CATEGORICAL___nom_9___d200cb827", "14008": "15___CATEGORICAL___nom_9___d209a05fd", "14009": "15___CATEGORICAL___nom_9___d20eb9f4b", "14010": "15___CATEGORICAL___nom_9___d210fddfc", "14011": "15___CATEGORICAL___nom_9___d21132e04", "14012": "15___CATEGORICAL___nom_9___d2130d27b", "14013": "15___CATEGORICAL___nom_9___d2141143a", "14014": "15___CATEGORICAL___nom_9___d21683368", "14015": "15___CATEGORICAL___nom_9___d21d26537", "14016": "15___CATEGORICAL___nom_9___d21fe1728", "14017": "15___CATEGORICAL___nom_9___d229ebc59", "14018": "15___CATEGORICAL___nom_9___d22e3ecb8", "14019": "15___CATEGORICAL___nom_9___d22f0565a", "14020": "15___CATEGORICAL___nom_9___d23a3846c", "14021": "15___CATEGORICAL___nom_9___d23a429d1", "14022": "15___CATEGORICAL___nom_9___d2444e51b", "14023": "15___CATEGORICAL___nom_9___d249eed8f", "14024": "15___CATEGORICAL___nom_9___d24d8e0e1", "14025": "15___CATEGORICAL___nom_9___d25732caf", "14026": "15___CATEGORICAL___nom_9___d25a25f65", "14027": "15___CATEGORICAL___nom_9___d25cf57c0", "14028": "15___CATEGORICAL___nom_9___d2689e5eb", "14029": "15___CATEGORICAL___nom_9___d26a6ae91", "14030": "15___CATEGORICAL___nom_9___d27250839", "14031": "15___CATEGORICAL___nom_9___d2754d701", "14032": "15___CATEGORICAL___nom_9___d27dafc7b", "14033": "15___CATEGORICAL___nom_9___d287d4e07", "14034": "15___CATEGORICAL___nom_9___d288000d1", "14035": "15___CATEGORICAL___nom_9___d28aa313c", "14036": "15___CATEGORICAL___nom_9___d28fecc75", "14037": "15___CATEGORICAL___nom_9___d291fcb38", "14038": "15___CATEGORICAL___nom_9___d2a00d1e5", "14039": "15___CATEGORICAL___nom_9___d2aaa1190", "14040": "15___CATEGORICAL___nom_9___d2ab02740", "14041": "15___CATEGORICAL___nom_9___d2ac26824", "14042": "15___CATEGORICAL___nom_9___d2acfcdd3", "14043": "15___CATEGORICAL___nom_9___d2b0f89e9", "14044": "15___CATEGORICAL___nom_9___d2c5f9a0e", "14045": "15___CATEGORICAL___nom_9___d2d61763f", "14046": "15___CATEGORICAL___nom_9___d2d6425b9", "14047": "15___CATEGORICAL___nom_9___d2dd1651e", "14048": "15___CATEGORICAL___nom_9___d2f222bdb", "14049": "15___CATEGORICAL___nom_9___d2f822daf", "14050": "15___CATEGORICAL___nom_9___d2fafac01", "14051": "15___CATEGORICAL___nom_9___d301a1890", "14052": "15___CATEGORICAL___nom_9___d307d2351", "14053": "15___CATEGORICAL___nom_9___d30b8f290", "14054": "15___CATEGORICAL___nom_9___d30bc7231", "14055": "15___CATEGORICAL___nom_9___d3175ec56", "14056": "15___CATEGORICAL___nom_9___d31d35b36", "14057": "15___CATEGORICAL___nom_9___d31fdb570", "14058": "15___CATEGORICAL___nom_9___d31ffc0e4", "14059": "15___CATEGORICAL___nom_9___d3200932c", "14060": "15___CATEGORICAL___nom_9___d32c449fa", "14061": "15___CATEGORICAL___nom_9___d32cc30f6", "14062": "15___CATEGORICAL___nom_9___d32de6b92", "14063": "15___CATEGORICAL___nom_9___d32fd1dfc", "14064": "15___CATEGORICAL___nom_9___d337670ff", "14065": "15___CATEGORICAL___nom_9___d33875d25", "14066": "15___CATEGORICAL___nom_9___d33ac83ef", "14067": "15___CATEGORICAL___nom_9___d33b22b52", "14068": "15___CATEGORICAL___nom_9___d33eaeefa", "14069": "15___CATEGORICAL___nom_9___d34a4e1f9", "14070": "15___CATEGORICAL___nom_9___d34ca058b", "14071": "15___CATEGORICAL___nom_9___d34cea59a", "14072": "15___CATEGORICAL___nom_9___d3523ae14", "14073": "15___CATEGORICAL___nom_9___d3778da9c", "14074": "15___CATEGORICAL___nom_9___d377d83bb", "14075": "15___CATEGORICAL___nom_9___d378eac93", "14076": "15___CATEGORICAL___nom_9___d38707767", "14077": "15___CATEGORICAL___nom_9___d38b42683", "14078": "15___CATEGORICAL___nom_9___d38cb646d", "14079": "15___CATEGORICAL___nom_9___d3a2a79f5", "14080": "15___CATEGORICAL___nom_9___d3a416493", "14081": "15___CATEGORICAL___nom_9___d3a97a6c9", "14082": "15___CATEGORICAL___nom_9___d3b067aa7", "14083": "15___CATEGORICAL___nom_9___d3b828699", "14084": "15___CATEGORICAL___nom_9___d3bd4f93a", "14085": "15___CATEGORICAL___nom_9___d3c11437d", "14086": "15___CATEGORICAL___nom_9___d3c25e150", "14087": "15___CATEGORICAL___nom_9___d3c3db0c1", "14088": "15___CATEGORICAL___nom_9___d3dd80b06", "14089": "15___CATEGORICAL___nom_9___d3ded8ed9", "14090": "15___CATEGORICAL___nom_9___d3e30d5ca", "14091": "15___CATEGORICAL___nom_9___d3f39af57", "14092": "15___CATEGORICAL___nom_9___d3f6af645", "14093": "15___CATEGORICAL___nom_9___d406114ff", "14094": "15___CATEGORICAL___nom_9___d40a42c77", "14095": "15___CATEGORICAL___nom_9___d4110470e", "14096": "15___CATEGORICAL___nom_9___d412b27be", "14097": "15___CATEGORICAL___nom_9___d41d13764", "14098": "15___CATEGORICAL___nom_9___d41d3f5b8", "14099": "15___CATEGORICAL___nom_9___d41f319ed", "14100": "15___CATEGORICAL___nom_9___d424fbfa2", "14101": "15___CATEGORICAL___nom_9___d42bf21f6", "14102": "15___CATEGORICAL___nom_9___d4342e7c1", "14103": "15___CATEGORICAL___nom_9___d43f19e32", "14104": "15___CATEGORICAL___nom_9___d445baa4d", "14105": "15___CATEGORICAL___nom_9___d44768443", "14106": "15___CATEGORICAL___nom_9___d44803123", "14107": "15___CATEGORICAL___nom_9___d44ae5a94", "14108": "15___CATEGORICAL___nom_9___d4522f8a3", "14109": "15___CATEGORICAL___nom_9___d4527f549", "14110": "15___CATEGORICAL___nom_9___d45567849", "14111": "15___CATEGORICAL___nom_9___d45e84f94", "14112": "15___CATEGORICAL___nom_9___d462db96a", "14113": "15___CATEGORICAL___nom_9___d46b6ab74", "14114": "15___CATEGORICAL___nom_9___d4789b850", "14115": "15___CATEGORICAL___nom_9___d47b14ee4", "14116": "15___CATEGORICAL___nom_9___d47ccdb00", "14117": "15___CATEGORICAL___nom_9___d4812cead", "14118": "15___CATEGORICAL___nom_9___d495848d5", "14119": "15___CATEGORICAL___nom_9___d49604cab", "14120": "15___CATEGORICAL___nom_9___d4975a176", "14121": "15___CATEGORICAL___nom_9___d4a72183a", "14122": "15___CATEGORICAL___nom_9___d4abaa61e", "14123": "15___CATEGORICAL___nom_9___d4c1eb9c3", "14124": "15___CATEGORICAL___nom_9___d4c845dc9", "14125": "15___CATEGORICAL___nom_9___d4c8cb621", "14126": "15___CATEGORICAL___nom_9___d4cb05545", "14127": "15___CATEGORICAL___nom_9___d4ccfce0d", "14128": "15___CATEGORICAL___nom_9___d4cf587dd", "14129": "15___CATEGORICAL___nom_9___d4d004ee5", "14130": "15___CATEGORICAL___nom_9___d4d0d6100", "14131": "15___CATEGORICAL___nom_9___d4d743b12", "14132": "15___CATEGORICAL___nom_9___d4d960f0f", "14133": "15___CATEGORICAL___nom_9___d4d9cd1e9", "14134": "15___CATEGORICAL___nom_9___d501d0ed9", "14135": "15___CATEGORICAL___nom_9___d504b3cf8", "14136": "15___CATEGORICAL___nom_9___d507e12d8", "14137": "15___CATEGORICAL___nom_9___d509f7491", "14138": "15___CATEGORICAL___nom_9___d51b3260a", "14139": "15___CATEGORICAL___nom_9___d51ea7e35", "14140": "15___CATEGORICAL___nom_9___d51f60296", "14141": "15___CATEGORICAL___nom_9___d51ff0c69", "14142": "15___CATEGORICAL___nom_9___d5259ddbd", "14143": "15___CATEGORICAL___nom_9___d52baf236", "14144": "15___CATEGORICAL___nom_9___d52c6a3e6", "14145": "15___CATEGORICAL___nom_9___d53360bfc", "14146": "15___CATEGORICAL___nom_9___d543cd442", "14147": "15___CATEGORICAL___nom_9___d5451f59d", "14148": "15___CATEGORICAL___nom_9___d549cf780", "14149": "15___CATEGORICAL___nom_9___d551e05c0", "14150": "15___CATEGORICAL___nom_9___d552e5e03", "14151": "15___CATEGORICAL___nom_9___d558d03f6", "14152": "15___CATEGORICAL___nom_9___d56993d32", "14153": "15___CATEGORICAL___nom_9___d56bd7a64", "14154": "15___CATEGORICAL___nom_9___d56c7acad", "14155": "15___CATEGORICAL___nom_9___d570371d0", "14156": "15___CATEGORICAL___nom_9___d5739dc12", "14157": "15___CATEGORICAL___nom_9___d5758e0c9", "14158": "15___CATEGORICAL___nom_9___d58c3618d", "14159": "15___CATEGORICAL___nom_9___d590a3ccd", "14160": "15___CATEGORICAL___nom_9___d592f4e23", "14161": "15___CATEGORICAL___nom_9___d599c4afd", "14162": "15___CATEGORICAL___nom_9___d59ce1c46", "14163": "15___CATEGORICAL___nom_9___d59fed41f", "14164": "15___CATEGORICAL___nom_9___d5a4581c1", "14165": "15___CATEGORICAL___nom_9___d5a7356a6", "14166": "15___CATEGORICAL___nom_9___d5ac2222e", "14167": "15___CATEGORICAL___nom_9___d5b48f37e", "14168": "15___CATEGORICAL___nom_9___d5c377e9b", "14169": "15___CATEGORICAL___nom_9___d5c5541a7", "14170": "15___CATEGORICAL___nom_9___d5ccf348e", "14171": "15___CATEGORICAL___nom_9___d5cd115f5", "14172": "15___CATEGORICAL___nom_9___d5ce2dcca", "14173": "15___CATEGORICAL___nom_9___d5cfeb3a1", "14174": "15___CATEGORICAL___nom_9___d5e41c0a7", "14175": "15___CATEGORICAL___nom_9___d5e5c3f12", "14176": "15___CATEGORICAL___nom_9___d5eb4fe43", "14177": "15___CATEGORICAL___nom_9___d5ebfcf51", "14178": "15___CATEGORICAL___nom_9___d5ef6e0fa", "14179": "15___CATEGORICAL___nom_9___d5f0fd659", "14180": "15___CATEGORICAL___nom_9___d5f38689f", "14181": "15___CATEGORICAL___nom_9___d5f47deee", "14182": "15___CATEGORICAL___nom_9___d6005835d", "14183": "15___CATEGORICAL___nom_9___d602e1ac3", "14184": "15___CATEGORICAL___nom_9___d60674abc", "14185": "15___CATEGORICAL___nom_9___d608ebad3", "14186": "15___CATEGORICAL___nom_9___d6120bdb7", "14187": "15___CATEGORICAL___nom_9___d61262ef7", "14188": "15___CATEGORICAL___nom_9___d6145309c", "14189": "15___CATEGORICAL___nom_9___d61b0c3be", "14190": "15___CATEGORICAL___nom_9___d61dd01cd", "14191": "15___CATEGORICAL___nom_9___d626506f9", "14192": "15___CATEGORICAL___nom_9___d63043d77", "14193": "15___CATEGORICAL___nom_9___d637c0b08", "14194": "15___CATEGORICAL___nom_9___d63a90b44", "14195": "15___CATEGORICAL___nom_9___d641e8b10", "14196": "15___CATEGORICAL___nom_9___d64c8909a", "14197": "15___CATEGORICAL___nom_9___d652c68e6", "14198": "15___CATEGORICAL___nom_9___d652cc9c2", "14199": "15___CATEGORICAL___nom_9___d6578d938", "14200": "15___CATEGORICAL___nom_9___d657c0749", "14201": "15___CATEGORICAL___nom_9___d65aeae3b", "14202": "15___CATEGORICAL___nom_9___d65d3a5ac", "14203": "15___CATEGORICAL___nom_9___d661d44d2", "14204": "15___CATEGORICAL___nom_9___d66859001", "14205": "15___CATEGORICAL___nom_9___d669306bf", "14206": "15___CATEGORICAL___nom_9___d66ac9311", "14207": "15___CATEGORICAL___nom_9___d66fbc14a", "14208": "15___CATEGORICAL___nom_9___d6711481a", "14209": "15___CATEGORICAL___nom_9___d6735256d", "14210": "15___CATEGORICAL___nom_9___d67c741be", "14211": "15___CATEGORICAL___nom_9___d68c505a6", "14212": "15___CATEGORICAL___nom_9___d68db6c52", "14213": "15___CATEGORICAL___nom_9___d68f599f2", "14214": "15___CATEGORICAL___nom_9___d6906487f", "14215": "15___CATEGORICAL___nom_9___d695f8eb2", "14216": "15___CATEGORICAL___nom_9___d69953cfb", "14217": "15___CATEGORICAL___nom_9___d69aef490", "14218": "15___CATEGORICAL___nom_9___d69c03ae5", "14219": "15___CATEGORICAL___nom_9___d69c996d4", "14220": "15___CATEGORICAL___nom_9___d6a10d3ca", "14221": "15___CATEGORICAL___nom_9___d6a3ca507", "14222": "15___CATEGORICAL___nom_9___d6a410303", "14223": "15___CATEGORICAL___nom_9___d6a92f871", "14224": "15___CATEGORICAL___nom_9___d6be68a5c", "14225": "15___CATEGORICAL___nom_9___d6cd52b13", "14226": "15___CATEGORICAL___nom_9___d6d5efb23", "14227": "15___CATEGORICAL___nom_9___d6d8db802", "14228": "15___CATEGORICAL___nom_9___d6dcb61f5", "14229": "15___CATEGORICAL___nom_9___d6dd625ac", "14230": "15___CATEGORICAL___nom_9___d6e47792f", "14231": "15___CATEGORICAL___nom_9___d6ef29331", "14232": "15___CATEGORICAL___nom_9___d6f990e6a", "14233": "15___CATEGORICAL___nom_9___d6fe43027", "14234": "15___CATEGORICAL___nom_9___d700e0cb6", "14235": "15___CATEGORICAL___nom_9___d7043e9df", "14236": "15___CATEGORICAL___nom_9___d7072e0fa", "14237": "15___CATEGORICAL___nom_9___d712f1dd7", "14238": "15___CATEGORICAL___nom_9___d7180ee07", "14239": "15___CATEGORICAL___nom_9___d7185621a", "14240": "15___CATEGORICAL___nom_9___d71a7ced5", "14241": "15___CATEGORICAL___nom_9___d724fbbfc", "14242": "15___CATEGORICAL___nom_9___d729497b2", "14243": "15___CATEGORICAL___nom_9___d73801486", "14244": "15___CATEGORICAL___nom_9___d73f97a6f", "14245": "15___CATEGORICAL___nom_9___d74118f8a", "14246": "15___CATEGORICAL___nom_9___d741ab21d", "14247": "15___CATEGORICAL___nom_9___d74218492", "14248": "15___CATEGORICAL___nom_9___d7422ffbd", "14249": "15___CATEGORICAL___nom_9___d743875ec", "14250": "15___CATEGORICAL___nom_9___d74470948", "14251": "15___CATEGORICAL___nom_9___d74c46b25", "14252": "15___CATEGORICAL___nom_9___d74d0d402", "14253": "15___CATEGORICAL___nom_9___d75053e59", "14254": "15___CATEGORICAL___nom_9___d752d39a0", "14255": "15___CATEGORICAL___nom_9___d7539c157", "14256": "15___CATEGORICAL___nom_9___d756c94be", "14257": "15___CATEGORICAL___nom_9___d75e2aa98", "14258": "15___CATEGORICAL___nom_9___d76460ded", "14259": "15___CATEGORICAL___nom_9___d769e4c9a", "14260": "15___CATEGORICAL___nom_9___d77225e0e", "14261": "15___CATEGORICAL___nom_9___d77f8f9fa", "14262": "15___CATEGORICAL___nom_9___d784e04f5", "14263": "15___CATEGORICAL___nom_9___d792319e8", "14264": "15___CATEGORICAL___nom_9___d793032b8", "14265": "15___CATEGORICAL___nom_9___d797626e2", "14266": "15___CATEGORICAL___nom_9___d79a07645", "14267": "15___CATEGORICAL___nom_9___d7a7311ad", "14268": "15___CATEGORICAL___nom_9___d7a838cec", "14269": "15___CATEGORICAL___nom_9___d7ac74d3b", "14270": "15___CATEGORICAL___nom_9___d7ae43706", "14271": "15___CATEGORICAL___nom_9___d7afe62ec", "14272": "15___CATEGORICAL___nom_9___d7b11703c", "14273": "15___CATEGORICAL___nom_9___d7c084d13", "14274": "15___CATEGORICAL___nom_9___d7c3115b3", "14275": "15___CATEGORICAL___nom_9___d7c3c727b", "14276": "15___CATEGORICAL___nom_9___d7c4e8e11", "14277": "15___CATEGORICAL___nom_9___d7c54f240", "14278": "15___CATEGORICAL___nom_9___d7c66410c", "14279": "15___CATEGORICAL___nom_9___d7c6bcd88", "14280": "15___CATEGORICAL___nom_9___d7d4cbb65", "14281": "15___CATEGORICAL___nom_9___d7e141de4", "14282": "15___CATEGORICAL___nom_9___d7e87b8f5", "14283": "15___CATEGORICAL___nom_9___d7f5f79d5", "14284": "15___CATEGORICAL___nom_9___d80ce33b1", "14285": "15___CATEGORICAL___nom_9___d80fd7ca1", "14286": "15___CATEGORICAL___nom_9___d81989421", "14287": "15___CATEGORICAL___nom_9___d81c7b2ee", "14288": "15___CATEGORICAL___nom_9___d81d42cb8", "14289": "15___CATEGORICAL___nom_9___d82200d57", "14290": "15___CATEGORICAL___nom_9___d8232c76c", "14291": "15___CATEGORICAL___nom_9___d82bc2c77", "14292": "15___CATEGORICAL___nom_9___d832a0679", "14293": "15___CATEGORICAL___nom_9___d838d2b0e", "14294": "15___CATEGORICAL___nom_9___d8393da40", "14295": "15___CATEGORICAL___nom_9___d8413d70a", "14296": "15___CATEGORICAL___nom_9___d8422cb7e", "14297": "15___CATEGORICAL___nom_9___d84868a14", "14298": "15___CATEGORICAL___nom_9___d84950254", "14299": "15___CATEGORICAL___nom_9___d84ec4a66", "14300": "15___CATEGORICAL___nom_9___d8528bca7", "14301": "15___CATEGORICAL___nom_9___d854b869f", "14302": "15___CATEGORICAL___nom_9___d8623d900", "14303": "15___CATEGORICAL___nom_9___d86fd981e", "14304": "15___CATEGORICAL___nom_9___d87bedba7", "14305": "15___CATEGORICAL___nom_9___d87bfe818", "14306": "15___CATEGORICAL___nom_9___d87de961c", "14307": "15___CATEGORICAL___nom_9___d87e3d2bf", "14308": "15___CATEGORICAL___nom_9___d87e8f156", "14309": "15___CATEGORICAL___nom_9___d87e9ca56", "14310": "15___CATEGORICAL___nom_9___d8833bf6b", "14311": "15___CATEGORICAL___nom_9___d8857091f", "14312": "15___CATEGORICAL___nom_9___d887638e0", "14313": "15___CATEGORICAL___nom_9___d88df546b", "14314": "15___CATEGORICAL___nom_9___d88ef1e5c", "14315": "15___CATEGORICAL___nom_9___d8902c5b8", "14316": "15___CATEGORICAL___nom_9___d89682698", "14317": "15___CATEGORICAL___nom_9___d89fcaeca", "14318": "15___CATEGORICAL___nom_9___d8a4eb625", "14319": "15___CATEGORICAL___nom_9___d8a900663", "14320": "15___CATEGORICAL___nom_9___d8a956789", "14321": "15___CATEGORICAL___nom_9___d8ab48abb", "14322": "15___CATEGORICAL___nom_9___d8af326ec", "14323": "15___CATEGORICAL___nom_9___d8af7552c", "14324": "15___CATEGORICAL___nom_9___d8be4cc81", "14325": "15___CATEGORICAL___nom_9___d8bf694ad", "14326": "15___CATEGORICAL___nom_9___d8c4063b2", "14327": "15___CATEGORICAL___nom_9___d8c56bdc5", "14328": "15___CATEGORICAL___nom_9___d8c5d08af", "14329": "15___CATEGORICAL___nom_9___d8c72ab57", "14330": "15___CATEGORICAL___nom_9___d8cef9cf6", "14331": "15___CATEGORICAL___nom_9___d8e1f3217", "14332": "15___CATEGORICAL___nom_9___d8e69fc28", "14333": "15___CATEGORICAL___nom_9___d8eb9abf2", "14334": "15___CATEGORICAL___nom_9___d8ee4c05e", "14335": "15___CATEGORICAL___nom_9___d8f639673", "14336": "15___CATEGORICAL___nom_9___d8fe8b269", "14337": "15___CATEGORICAL___nom_9___d902dde14", "14338": "15___CATEGORICAL___nom_9___d90652166", "14339": "15___CATEGORICAL___nom_9___d9162c28e", "14340": "15___CATEGORICAL___nom_9___d917648a4", "14341": "15___CATEGORICAL___nom_9___d91cb5008", "14342": "15___CATEGORICAL___nom_9___d9221f211", "14343": "15___CATEGORICAL___nom_9___d92b5781a", "14344": "15___CATEGORICAL___nom_9___d930744b7", "14345": "15___CATEGORICAL___nom_9___d933993b5", "14346": "15___CATEGORICAL___nom_9___d937b78d1", "14347": "15___CATEGORICAL___nom_9___d93a24c67", "14348": "15___CATEGORICAL___nom_9___d947148dd", "14349": "15___CATEGORICAL___nom_9___d947be2c9", "14350": "15___CATEGORICAL___nom_9___d94bede9d", "14351": "15___CATEGORICAL___nom_9___d954c01b9", "14352": "15___CATEGORICAL___nom_9___d95863d82", "14353": "15___CATEGORICAL___nom_9___d95d56fb4", "14354": "15___CATEGORICAL___nom_9___d965b03b5", "14355": "15___CATEGORICAL___nom_9___d96c6f9e2", "14356": "15___CATEGORICAL___nom_9___d975e47d1", "14357": "15___CATEGORICAL___nom_9___d97cbda31", "14358": "15___CATEGORICAL___nom_9___d97ddd36f", "14359": "15___CATEGORICAL___nom_9___d97e5ab50", "14360": "15___CATEGORICAL___nom_9___d97e99417", "14361": "15___CATEGORICAL___nom_9___d980da2e8", "14362": "15___CATEGORICAL___nom_9___d98243119", "14363": "15___CATEGORICAL___nom_9___d988fa28c", "14364": "15___CATEGORICAL___nom_9___d98bdfa47", "14365": "15___CATEGORICAL___nom_9___d98f15043", "14366": "15___CATEGORICAL___nom_9___d9902e072", "14367": "15___CATEGORICAL___nom_9___d992a24ba", "14368": "15___CATEGORICAL___nom_9___d9963240b", "14369": "15___CATEGORICAL___nom_9___d99a7b31f", "14370": "15___CATEGORICAL___nom_9___d99ad9537", "14371": "15___CATEGORICAL___nom_9___d9a404694", "14372": "15___CATEGORICAL___nom_9___d9a85d007", "14373": "15___CATEGORICAL___nom_9___d9afb49d3", "14374": "15___CATEGORICAL___nom_9___d9b9b6b62", "14375": "15___CATEGORICAL___nom_9___d9ba4f163", "14376": "15___CATEGORICAL___nom_9___d9c39b26a", "14377": "15___CATEGORICAL___nom_9___d9c51eada", "14378": "15___CATEGORICAL___nom_9___d9c5ace69", "14379": "15___CATEGORICAL___nom_9___d9cf082b4", "14380": "15___CATEGORICAL___nom_9___d9d96f8bb", "14381": "15___CATEGORICAL___nom_9___d9e135e85", "14382": "15___CATEGORICAL___nom_9___d9e1854a1", "14383": "15___CATEGORICAL___nom_9___d9e2bfa23", "14384": "15___CATEGORICAL___nom_9___d9e3c3fed", "14385": "15___CATEGORICAL___nom_9___d9e41d85d", "14386": "15___CATEGORICAL___nom_9___d9e869c33", "14387": "15___CATEGORICAL___nom_9___d9eb07ac7", "14388": "15___CATEGORICAL___nom_9___d9ef4b7c1", "14389": "15___CATEGORICAL___nom_9___d9fdc1cb8", "14390": "15___CATEGORICAL___nom_9___da013a5ad", "14391": "15___CATEGORICAL___nom_9___da01fe28d", "14392": "15___CATEGORICAL___nom_9___da06338e0", "14393": "15___CATEGORICAL___nom_9___da07a0d18", "14394": "15___CATEGORICAL___nom_9___da0a669a6", "14395": "15___CATEGORICAL___nom_9___da0a892d2", "14396": "15___CATEGORICAL___nom_9___da0cefaaa", "14397": "15___CATEGORICAL___nom_9___da17c0110", "14398": "15___CATEGORICAL___nom_9___da18c492b", "14399": "15___CATEGORICAL___nom_9___da1f39185", "14400": "15___CATEGORICAL___nom_9___da2348b26", "14401": "15___CATEGORICAL___nom_9___da25549fc", "14402": "15___CATEGORICAL___nom_9___da2584f35", "14403": "15___CATEGORICAL___nom_9___da2ff2e61", "14404": "15___CATEGORICAL___nom_9___da3106119", "14405": "15___CATEGORICAL___nom_9___da476cf42", "14406": "15___CATEGORICAL___nom_9___da49c238e", "14407": "15___CATEGORICAL___nom_9___da4fb14fb", "14408": "15___CATEGORICAL___nom_9___da5ba10bc", "14409": "15___CATEGORICAL___nom_9___da5bf8da3", "14410": "15___CATEGORICAL___nom_9___da640dc7c", "14411": "15___CATEGORICAL___nom_9___da6678dd7", "14412": "15___CATEGORICAL___nom_9___da6929497", "14413": "15___CATEGORICAL___nom_9___da6e07358", "14414": "15___CATEGORICAL___nom_9___da77bf3bc", "14415": "15___CATEGORICAL___nom_9___da903526a", "14416": "15___CATEGORICAL___nom_9___da9400591", "14417": "15___CATEGORICAL___nom_9___da9eae540", "14418": "15___CATEGORICAL___nom_9___daaeee7fb", "14419": "15___CATEGORICAL___nom_9___dab0036f7", "14420": "15___CATEGORICAL___nom_9___dac0c3185", "14421": "15___CATEGORICAL___nom_9___dac16eb65", "14422": "15___CATEGORICAL___nom_9___dac2bfc2b", "14423": "15___CATEGORICAL___nom_9___dac4f66a4", "14424": "15___CATEGORICAL___nom_9___dac9618ea", "14425": "15___CATEGORICAL___nom_9___daca36a8b", "14426": "15___CATEGORICAL___nom_9___dacc7d79a", "14427": "15___CATEGORICAL___nom_9___dad135032", "14428": "15___CATEGORICAL___nom_9___dad48803e", "14429": "15___CATEGORICAL___nom_9___dada0baee", "14430": "15___CATEGORICAL___nom_9___dadc8e275", "14431": "15___CATEGORICAL___nom_9___daec4d799", "14432": "15___CATEGORICAL___nom_9___daee68360", "14433": "15___CATEGORICAL___nom_9___daef52fc0", "14434": "15___CATEGORICAL___nom_9___daf344d55", "14435": "15___CATEGORICAL___nom_9___daf54d0a4", "14436": "15___CATEGORICAL___nom_9___daf6e0af4", "14437": "15___CATEGORICAL___nom_9___dafef22a5", "14438": "15___CATEGORICAL___nom_9___db09eff68", "14439": "15___CATEGORICAL___nom_9___db122876d", "14440": "15___CATEGORICAL___nom_9___db1298b26", "14441": "15___CATEGORICAL___nom_9___db12a3f94", "14442": "15___CATEGORICAL___nom_9___db14b15e6", "14443": "15___CATEGORICAL___nom_9___db19d21f6", "14444": "15___CATEGORICAL___nom_9___db21113fb", "14445": "15___CATEGORICAL___nom_9___db28dca34", "14446": "15___CATEGORICAL___nom_9___db2bece16", "14447": "15___CATEGORICAL___nom_9___db30f62a3", "14448": "15___CATEGORICAL___nom_9___db329e104", "14449": "15___CATEGORICAL___nom_9___db3fb67e0", "14450": "15___CATEGORICAL___nom_9___db41d0263", "14451": "15___CATEGORICAL___nom_9___db4222183", "14452": "15___CATEGORICAL___nom_9___db50ace58", "14453": "15___CATEGORICAL___nom_9___db57aa485", "14454": "15___CATEGORICAL___nom_9___db589e851", "14455": "15___CATEGORICAL___nom_9___db5f5e8c1", "14456": "15___CATEGORICAL___nom_9___db670d1cb", "14457": "15___CATEGORICAL___nom_9___db6b6d53f", "14458": "15___CATEGORICAL___nom_9___db7407e00", "14459": "15___CATEGORICAL___nom_9___db8867819", "14460": "15___CATEGORICAL___nom_9___db8935d6b", "14461": "15___CATEGORICAL___nom_9___db8bacb11", "14462": "15___CATEGORICAL___nom_9___db9867ceb", "14463": "15___CATEGORICAL___nom_9___db9d03a25", "14464": "15___CATEGORICAL___nom_9___dba2e2784", "14465": "15___CATEGORICAL___nom_9___dba593ed7", "14466": "15___CATEGORICAL___nom_9___dba72b647", "14467": "15___CATEGORICAL___nom_9___dbab272dc", "14468": "15___CATEGORICAL___nom_9___dbb795f09", "14469": "15___CATEGORICAL___nom_9___dbb989a40", "14470": "15___CATEGORICAL___nom_9___dbbc422d8", "14471": "15___CATEGORICAL___nom_9___dbbdeacdb", "14472": "15___CATEGORICAL___nom_9___dbbf473c0", "14473": "15___CATEGORICAL___nom_9___dbbfb03c3", "14474": "15___CATEGORICAL___nom_9___dbc49a5ff", "14475": "15___CATEGORICAL___nom_9___dbc6f23d1", "14476": "15___CATEGORICAL___nom_9___dbc8fb63f", "14477": "15___CATEGORICAL___nom_9___dbcde78de", "14478": "15___CATEGORICAL___nom_9___dbe5918e3", "14479": "15___CATEGORICAL___nom_9___dbf114987", "14480": "15___CATEGORICAL___nom_9___dbfd9248d", "14481": "15___CATEGORICAL___nom_9___dc08116c2", "14482": "15___CATEGORICAL___nom_9___dc08f4918", "14483": "15___CATEGORICAL___nom_9___dc101c825", "14484": "15___CATEGORICAL___nom_9___dc1479144", "14485": "15___CATEGORICAL___nom_9___dc20aa045", "14486": "15___CATEGORICAL___nom_9___dc226cb58", "14487": "15___CATEGORICAL___nom_9___dc26b8505", "14488": "15___CATEGORICAL___nom_9___dc2a7e13e", "14489": "15___CATEGORICAL___nom_9___dc2c74fae", "14490": "15___CATEGORICAL___nom_9___dc3207905", "14491": "15___CATEGORICAL___nom_9___dc3a0f101", "14492": "15___CATEGORICAL___nom_9___dc3c49063", "14493": "15___CATEGORICAL___nom_9___dc3cb07a4", "14494": "15___CATEGORICAL___nom_9___dc449e944", "14495": "15___CATEGORICAL___nom_9___dc457c0b7", "14496": "15___CATEGORICAL___nom_9___dc48d467d", "14497": "15___CATEGORICAL___nom_9___dc4d32667", "14498": "15___CATEGORICAL___nom_9___dc50235e4", "14499": "15___CATEGORICAL___nom_9___dc5491311", "14500": "15___CATEGORICAL___nom_9___dc643eacb", "14501": "15___CATEGORICAL___nom_9___dc6c6e961", "14502": "15___CATEGORICAL___nom_9___dc741f909", "14503": "15___CATEGORICAL___nom_9___dc82b83af", "14504": "15___CATEGORICAL___nom_9___dc86a862d", "14505": "15___CATEGORICAL___nom_9___dc883e80e", "14506": "15___CATEGORICAL___nom_9___dc8f3a7ea", "14507": "15___CATEGORICAL___nom_9___dc91df9e5", "14508": "15___CATEGORICAL___nom_9___dc9b94aa9", "14509": "15___CATEGORICAL___nom_9___dc9ed22fa", "14510": "15___CATEGORICAL___nom_9___dc9fd26c6", "14511": "15___CATEGORICAL___nom_9___dca698ecd", "14512": "15___CATEGORICAL___nom_9___dca9f9370", "14513": "15___CATEGORICAL___nom_9___dcac4f8b5", "14514": "15___CATEGORICAL___nom_9___dcb88834c", "14515": "15___CATEGORICAL___nom_9___dcba197d7", "14516": "15___CATEGORICAL___nom_9___dcc3ca019", "14517": "15___CATEGORICAL___nom_9___dcc6020e4", "14518": "15___CATEGORICAL___nom_9___dcc8bd86a", "14519": "15___CATEGORICAL___nom_9___dccd17eb3", "14520": "15___CATEGORICAL___nom_9___dcd21fb3f", "14521": "15___CATEGORICAL___nom_9___dcd2217d6", "14522": "15___CATEGORICAL___nom_9___dcd8abfe1", "14523": "15___CATEGORICAL___nom_9___dcdf53c00", "14524": "15___CATEGORICAL___nom_9___dcdf805bd", "14525": "15___CATEGORICAL___nom_9___dce32a1b0", "14526": "15___CATEGORICAL___nom_9___dce34f31b", "14527": "15___CATEGORICAL___nom_9___dce3fdaff", "14528": "15___CATEGORICAL___nom_9___dcf51b6f6", "14529": "15___CATEGORICAL___nom_9___dcf6a47d7", "14530": "15___CATEGORICAL___nom_9___dcfcb9835", "14531": "15___CATEGORICAL___nom_9___dcfe49a17", "14532": "15___CATEGORICAL___nom_9___dcfe4ef96", "14533": "15___CATEGORICAL___nom_9___dd0521b3b", "14534": "15___CATEGORICAL___nom_9___dd059c052", "14535": "15___CATEGORICAL___nom_9___dd069f94e", "14536": "15___CATEGORICAL___nom_9___dd0873abb", "14537": "15___CATEGORICAL___nom_9___dd0f2848a", "14538": "15___CATEGORICAL___nom_9___dd2b2a4dc", "14539": "15___CATEGORICAL___nom_9___dd30a7225", "14540": "15___CATEGORICAL___nom_9___dd30a91c9", "14541": "15___CATEGORICAL___nom_9___dd3189682", "14542": "15___CATEGORICAL___nom_9___dd349da04", "14543": "15___CATEGORICAL___nom_9___dd3ef356c", "14544": "15___CATEGORICAL___nom_9___dd44bb35d", "14545": "15___CATEGORICAL___nom_9___dd497e490", "14546": "15___CATEGORICAL___nom_9___dd4a7533a", "14547": "15___CATEGORICAL___nom_9___dd517217f", "14548": "15___CATEGORICAL___nom_9___dd62cb909", "14549": "15___CATEGORICAL___nom_9___dd68ab6a1", "14550": "15___CATEGORICAL___nom_9___dd6976a05", "14551": "15___CATEGORICAL___nom_9___dd6f57c92", "14552": "15___CATEGORICAL___nom_9___dd6fb6b30", "14553": "15___CATEGORICAL___nom_9___dd70da729", "14554": "15___CATEGORICAL___nom_9___dd727d46c", "14555": "15___CATEGORICAL___nom_9___dd79af375", "14556": "15___CATEGORICAL___nom_9___dd7a4cb6e", "14557": "15___CATEGORICAL___nom_9___dd7bcdfa4", "14558": "15___CATEGORICAL___nom_9___dd8a1d998", "14559": "15___CATEGORICAL___nom_9___dd8fcc152", "14560": "15___CATEGORICAL___nom_9___dd94baed7", "14561": "15___CATEGORICAL___nom_9___dd94f38b5", "14562": "15___CATEGORICAL___nom_9___dd97de50d", "14563": "15___CATEGORICAL___nom_9___dd9c02b15", "14564": "15___CATEGORICAL___nom_9___dd9f0676f", "14565": "15___CATEGORICAL___nom_9___dda56ebca", "14566": "15___CATEGORICAL___nom_9___dda94abdf", "14567": "15___CATEGORICAL___nom_9___ddaa7abdf", "14568": "15___CATEGORICAL___nom_9___ddb6e2cc4", "14569": "15___CATEGORICAL___nom_9___ddc22a77b", "14570": "15___CATEGORICAL___nom_9___ddc5c0323", "14571": "15___CATEGORICAL___nom_9___ddc9b813f", "14572": "15___CATEGORICAL___nom_9___ddca1a178", "14573": "15___CATEGORICAL___nom_9___ddd4b5283", "14574": "15___CATEGORICAL___nom_9___ddddafb95", "14575": "15___CATEGORICAL___nom_9___dddf59810", "14576": "15___CATEGORICAL___nom_9___dde292e10", "14577": "15___CATEGORICAL___nom_9___dde29e1c1", "14578": "15___CATEGORICAL___nom_9___dde3b1f8b", "14579": "15___CATEGORICAL___nom_9___dde6ed7b2", "14580": "15___CATEGORICAL___nom_9___dde8fdf04", "14581": "15___CATEGORICAL___nom_9___ddecf8885", "14582": "15___CATEGORICAL___nom_9___ddeef965a", "14583": "15___CATEGORICAL___nom_9___ddf03206c", "14584": "15___CATEGORICAL___nom_9___ddffa7cff", "14585": "15___CATEGORICAL___nom_9___de02e05a3", "14586": "15___CATEGORICAL___nom_9___de0c50780", "14587": "15___CATEGORICAL___nom_9___de15c7b84", "14588": "15___CATEGORICAL___nom_9___de2540b1c", "14589": "15___CATEGORICAL___nom_9___de2b395b1", "14590": "15___CATEGORICAL___nom_9___de2b43bc7", "14591": "15___CATEGORICAL___nom_9___de2dc341c", "14592": "15___CATEGORICAL___nom_9___de2e790b8", "14593": "15___CATEGORICAL___nom_9___de30683ec", "14594": "15___CATEGORICAL___nom_9___de3a04748", "14595": "15___CATEGORICAL___nom_9___de3d0a268", "14596": "15___CATEGORICAL___nom_9___de3e75f6c", "14597": "15___CATEGORICAL___nom_9___de4262e20", "14598": "15___CATEGORICAL___nom_9___de4416f20", "14599": "15___CATEGORICAL___nom_9___de4a45a22", "14600": "15___CATEGORICAL___nom_9___de513b48b", "14601": "15___CATEGORICAL___nom_9___de53b6185", "14602": "15___CATEGORICAL___nom_9___de5771851", "14603": "15___CATEGORICAL___nom_9___de5a74778", "14604": "15___CATEGORICAL___nom_9___de5f5ddc1", "14605": "15___CATEGORICAL___nom_9___de5f5e2b0", "14606": "15___CATEGORICAL___nom_9___de6f17cb9", "14607": "15___CATEGORICAL___nom_9___de760c385", "14608": "15___CATEGORICAL___nom_9___de76421ea", "14609": "15___CATEGORICAL___nom_9___de7699a4a", "14610": "15___CATEGORICAL___nom_9___de78f47db", "14611": "15___CATEGORICAL___nom_9___de88fdd95", "14612": "15___CATEGORICAL___nom_9___de945000c", "14613": "15___CATEGORICAL___nom_9___de97be1c0", "14614": "15___CATEGORICAL___nom_9___de9aef680", "14615": "15___CATEGORICAL___nom_9___de9dd442b", "14616": "15___CATEGORICAL___nom_9___dea0af608", "14617": "15___CATEGORICAL___nom_9___dea285f41", "14618": "15___CATEGORICAL___nom_9___deabe6af3", "14619": "15___CATEGORICAL___nom_9___deac33a23", "14620": "15___CATEGORICAL___nom_9___deaebe065", "14621": "15___CATEGORICAL___nom_9___deb38e612", "14622": "15___CATEGORICAL___nom_9___debbf32bb", "14623": "15___CATEGORICAL___nom_9___dec2418a7", "14624": "15___CATEGORICAL___nom_9___dec5b1d04", "14625": "15___CATEGORICAL___nom_9___deca71e1f", "14626": "15___CATEGORICAL___nom_9___decb53ae9", "14627": "15___CATEGORICAL___nom_9___dece387a4", "14628": "15___CATEGORICAL___nom_9___ded294a5f", "14629": "15___CATEGORICAL___nom_9___ded653e06", "14630": "15___CATEGORICAL___nom_9___ded9b1aae", "14631": "15___CATEGORICAL___nom_9___dedce70cd", "14632": "15___CATEGORICAL___nom_9___dedf23dec", "14633": "15___CATEGORICAL___nom_9___deeecd2e1", "14634": "15___CATEGORICAL___nom_9___def645b7a", "14635": "15___CATEGORICAL___nom_9___df0040a79", "14636": "15___CATEGORICAL___nom_9___df0070880", "14637": "15___CATEGORICAL___nom_9___df04208bc", "14638": "15___CATEGORICAL___nom_9___df177f006", "14639": "15___CATEGORICAL___nom_9___df1ffb76a", "14640": "15___CATEGORICAL___nom_9___df2179e62", "14641": "15___CATEGORICAL___nom_9___df27b7096", "14642": "15___CATEGORICAL___nom_9___df39b2c27", "14643": "15___CATEGORICAL___nom_9___df3b24c3c", "14644": "15___CATEGORICAL___nom_9___df4017556", "14645": "15___CATEGORICAL___nom_9___df438bc93", "14646": "15___CATEGORICAL___nom_9___df4f94fa9", "14647": "15___CATEGORICAL___nom_9___df5345d25", "14648": "15___CATEGORICAL___nom_9___df540edd0", "14649": "15___CATEGORICAL___nom_9___df57e1504", "14650": "15___CATEGORICAL___nom_9___df5a66652", "14651": "15___CATEGORICAL___nom_9___df5b2e52d", "14652": "15___CATEGORICAL___nom_9___df5d1267c", "14653": "15___CATEGORICAL___nom_9___df5d48e1f", "14654": "15___CATEGORICAL___nom_9___df6060768", "14655": "15___CATEGORICAL___nom_9___df6ba725c", "14656": "15___CATEGORICAL___nom_9___df6bb3167", "14657": "15___CATEGORICAL___nom_9___df6dc0078", "14658": "15___CATEGORICAL___nom_9___df6ee70ea", "14659": "15___CATEGORICAL___nom_9___df7a9fa15", "14660": "15___CATEGORICAL___nom_9___df7b1cfea", "14661": "15___CATEGORICAL___nom_9___df7ebb5d6", "14662": "15___CATEGORICAL___nom_9___df8323cee", "14663": "15___CATEGORICAL___nom_9___df85f32a1", "14664": "15___CATEGORICAL___nom_9___df8ae97cb", "14665": "15___CATEGORICAL___nom_9___df8c11c7d", "14666": "15___CATEGORICAL___nom_9___df90f92f6", "14667": "15___CATEGORICAL___nom_9___df9c03986", "14668": "15___CATEGORICAL___nom_9___dfa170a8c", "14669": "15___CATEGORICAL___nom_9___dfaf616eb", "14670": "15___CATEGORICAL___nom_9___dfafe8dde", "14671": "15___CATEGORICAL___nom_9___dfb3b5d65", "14672": "15___CATEGORICAL___nom_9___dfb59c793", "14673": "15___CATEGORICAL___nom_9___dfb5a5e19", "14674": "15___CATEGORICAL___nom_9___dfb6dba60", "14675": "15___CATEGORICAL___nom_9___dfb8a7d27", "14676": "15___CATEGORICAL___nom_9___dfc36aaad", "14677": "15___CATEGORICAL___nom_9___dfc6ac8db", "14678": "15___CATEGORICAL___nom_9___dfc77a2fe", "14679": "15___CATEGORICAL___nom_9___dfc77e4ec", "14680": "15___CATEGORICAL___nom_9___dfca25ab0", "14681": "15___CATEGORICAL___nom_9___dfd160fee", "14682": "15___CATEGORICAL___nom_9___dfd1d02f7", "14683": "15___CATEGORICAL___nom_9___dfe48d72e", "14684": "15___CATEGORICAL___nom_9___dfe50dee7", "14685": "15___CATEGORICAL___nom_9___dfe8e0895", "14686": "15___CATEGORICAL___nom_9___dff094c1f", "14687": "15___CATEGORICAL___nom_9___dff5fb0f1", "14688": "15___CATEGORICAL___nom_9___dff7da8c5", "14689": "15___CATEGORICAL___nom_9___e00738e54", "14690": "15___CATEGORICAL___nom_9___e007edb63", "14691": "15___CATEGORICAL___nom_9___e00f27f7a", "14692": "15___CATEGORICAL___nom_9___e00f8cd37", "14693": "15___CATEGORICAL___nom_9___e01ecac84", "14694": "15___CATEGORICAL___nom_9___e027134e8", "14695": "15___CATEGORICAL___nom_9___e027decef", "14696": "15___CATEGORICAL___nom_9___e02eda5e8", "14697": "15___CATEGORICAL___nom_9___e02f7aa97", "14698": "15___CATEGORICAL___nom_9___e03317044", "14699": "15___CATEGORICAL___nom_9___e036dc7f4", "14700": "15___CATEGORICAL___nom_9___e04144549", "14701": "15___CATEGORICAL___nom_9___e043422f0", "14702": "15___CATEGORICAL___nom_9___e0472edbc", "14703": "15___CATEGORICAL___nom_9___e04e3e346", "14704": "15___CATEGORICAL___nom_9___e054efec7", "14705": "15___CATEGORICAL___nom_9___e05b9fd26", "14706": "15___CATEGORICAL___nom_9___e05c35bc3", "14707": "15___CATEGORICAL___nom_9___e05e4c676", "14708": "15___CATEGORICAL___nom_9___e063e06cb", "14709": "15___CATEGORICAL___nom_9___e0663db91", "14710": "15___CATEGORICAL___nom_9___e06e7ea4f", "14711": "15___CATEGORICAL___nom_9___e06eec279", "14712": "15___CATEGORICAL___nom_9___e070dd3a0", "14713": "15___CATEGORICAL___nom_9___e07393fce", "14714": "15___CATEGORICAL___nom_9___e07a3eb84", "14715": "15___CATEGORICAL___nom_9___e07b91a4a", "14716": "15___CATEGORICAL___nom_9___e08599325", "14717": "15___CATEGORICAL___nom_9___e0861add3", "14718": "15___CATEGORICAL___nom_9___e0872cf9e", "14719": "15___CATEGORICAL___nom_9___e087e223b", "14720": "15___CATEGORICAL___nom_9___e0943cca0", "14721": "15___CATEGORICAL___nom_9___e0980ae4a", "14722": "15___CATEGORICAL___nom_9___e098565a4", "14723": "15___CATEGORICAL___nom_9___e098ad5f5", "14724": "15___CATEGORICAL___nom_9___e0a161822", "14725": "15___CATEGORICAL___nom_9___e0a5b915c", "14726": "15___CATEGORICAL___nom_9___e0adf4d43", "14727": "15___CATEGORICAL___nom_9___e0b0476d3", "14728": "15___CATEGORICAL___nom_9___e0b95e0f5", "14729": "15___CATEGORICAL___nom_9___e0babeaf6", "14730": "15___CATEGORICAL___nom_9___e0bbdb74a", "14731": "15___CATEGORICAL___nom_9___e0bf40ead", "14732": "15___CATEGORICAL___nom_9___e0c53bd79", "14733": "15___CATEGORICAL___nom_9___e0c541356", "14734": "15___CATEGORICAL___nom_9___e0c6f8d0c", "14735": "15___CATEGORICAL___nom_9___e0ce4131c", "14736": "15___CATEGORICAL___nom_9___e0d4e657c", "14737": "15___CATEGORICAL___nom_9___e0df428b0", "14738": "15___CATEGORICAL___nom_9___e0ea524b6", "14739": "15___CATEGORICAL___nom_9___e0ed406db", "14740": "15___CATEGORICAL___nom_9___e0ed63c01", "14741": "15___CATEGORICAL___nom_9___e0ee041a5", "14742": "15___CATEGORICAL___nom_9___e0ee74dc9", "14743": "15___CATEGORICAL___nom_9___e0f2b42a3", "14744": "15___CATEGORICAL___nom_9___e0f50dbfe", "14745": "15___CATEGORICAL___nom_9___e0fbc538d", "14746": "15___CATEGORICAL___nom_9___e0fe804f6", "14747": "15___CATEGORICAL___nom_9___e0febc115", "14748": "15___CATEGORICAL___nom_9___e1000a578", "14749": "15___CATEGORICAL___nom_9___e10294dd0", "14750": "15___CATEGORICAL___nom_9___e1084bbbc", "14751": "15___CATEGORICAL___nom_9___e109b5c3b", "14752": "15___CATEGORICAL___nom_9___e110bb5e8", "14753": "15___CATEGORICAL___nom_9___e1117e0b7", "14754": "15___CATEGORICAL___nom_9___e112aaa2a", "14755": "15___CATEGORICAL___nom_9___e119f14c8", "14756": "15___CATEGORICAL___nom_9___e11c315c9", "14757": "15___CATEGORICAL___nom_9___e11cd0804", "14758": "15___CATEGORICAL___nom_9___e1288f65c", "14759": "15___CATEGORICAL___nom_9___e12d39f0a", "14760": "15___CATEGORICAL___nom_9___e134e2a61", "14761": "15___CATEGORICAL___nom_9___e135e700c", "14762": "15___CATEGORICAL___nom_9___e13a9ac65", "14763": "15___CATEGORICAL___nom_9___e13eece8a", "14764": "15___CATEGORICAL___nom_9___e140eeb90", "14765": "15___CATEGORICAL___nom_9___e14d38f18", "14766": "15___CATEGORICAL___nom_9___e1526400a", "14767": "15___CATEGORICAL___nom_9___e156098fc", "14768": "15___CATEGORICAL___nom_9___e157536a9", "14769": "15___CATEGORICAL___nom_9___e15c7b678", "14770": "15___CATEGORICAL___nom_9___e15ce4e64", "14771": "15___CATEGORICAL___nom_9___e164e43de", "14772": "15___CATEGORICAL___nom_9___e166efcf7", "14773": "15___CATEGORICAL___nom_9___e16b6a8b1", "14774": "15___CATEGORICAL___nom_9___e16fbccb6", "14775": "15___CATEGORICAL___nom_9___e17158c1a", "14776": "15___CATEGORICAL___nom_9___e171c00ac", "14777": "15___CATEGORICAL___nom_9___e17a5a906", "14778": "15___CATEGORICAL___nom_9___e17bc470d", "14779": "15___CATEGORICAL___nom_9___e18c4915b", "14780": "15___CATEGORICAL___nom_9___e18c7a159", "14781": "15___CATEGORICAL___nom_9___e1929a55e", "14782": "15___CATEGORICAL___nom_9___e19545794", "14783": "15___CATEGORICAL___nom_9___e19c349fc", "14784": "15___CATEGORICAL___nom_9___e1a53db5f", "14785": "15___CATEGORICAL___nom_9___e1a578d28", "14786": "15___CATEGORICAL___nom_9___e1ae1b583", "14787": "15___CATEGORICAL___nom_9___e1b4dc267", "14788": "15___CATEGORICAL___nom_9___e1b66f5f2", "14789": "15___CATEGORICAL___nom_9___e1b7388a9", "14790": "15___CATEGORICAL___nom_9___e1b87a2e7", "14791": "15___CATEGORICAL___nom_9___e1b95e9c8", "14792": "15___CATEGORICAL___nom_9___e1d4ffb89", "14793": "15___CATEGORICAL___nom_9___e1d8b307d", "14794": "15___CATEGORICAL___nom_9___e1e4ea28c", "14795": "15___CATEGORICAL___nom_9___e1e99ca07", "14796": "15___CATEGORICAL___nom_9___e1efdb6ef", "14797": "15___CATEGORICAL___nom_9___e1f000928", "14798": "15___CATEGORICAL___nom_9___e1ffe32f0", "14799": "15___CATEGORICAL___nom_9___e2023fb82", "14800": "15___CATEGORICAL___nom_9___e203d99bb", "14801": "15___CATEGORICAL___nom_9___e206d3dea", "14802": "15___CATEGORICAL___nom_9___e206e3a0a", "14803": "15___CATEGORICAL___nom_9___e22adeb55", "14804": "15___CATEGORICAL___nom_9___e22f7c603", "14805": "15___CATEGORICAL___nom_9___e23de3efd", "14806": "15___CATEGORICAL___nom_9___e242313e7", "14807": "15___CATEGORICAL___nom_9___e252d6452", "14808": "15___CATEGORICAL___nom_9___e25353375", "14809": "15___CATEGORICAL___nom_9___e25ef4e29", "14810": "15___CATEGORICAL___nom_9___e26a81f17", "14811": "15___CATEGORICAL___nom_9___e2727fc19", "14812": "15___CATEGORICAL___nom_9___e278164d4", "14813": "15___CATEGORICAL___nom_9___e27881a3c", "14814": "15___CATEGORICAL___nom_9___e27add645", "14815": "15___CATEGORICAL___nom_9___e27e86b81", "14816": "15___CATEGORICAL___nom_9___e27fe30cf", "14817": "15___CATEGORICAL___nom_9___e283fe502", "14818": "15___CATEGORICAL___nom_9___e28cdbcc2", "14819": "15___CATEGORICAL___nom_9___e28d67ee9", "14820": "15___CATEGORICAL___nom_9___e29005c3a", "14821": "15___CATEGORICAL___nom_9___e293ab32a", "14822": "15___CATEGORICAL___nom_9___e29e14f51", "14823": "15___CATEGORICAL___nom_9___e2a1ab525", "14824": "15___CATEGORICAL___nom_9___e2a31d886", "14825": "15___CATEGORICAL___nom_9___e2a7022b6", "14826": "15___CATEGORICAL___nom_9___e2ad66c9f", "14827": "15___CATEGORICAL___nom_9___e2ad8f28c", "14828": "15___CATEGORICAL___nom_9___e2b6de12d", "14829": "15___CATEGORICAL___nom_9___e2bfd0c80", "14830": "15___CATEGORICAL___nom_9___e2c2183a0", "14831": "15___CATEGORICAL___nom_9___e2d487484", "14832": "15___CATEGORICAL___nom_9___e2d5239f9", "14833": "15___CATEGORICAL___nom_9___e2ea16d89", "14834": "15___CATEGORICAL___nom_9___e2fa4e22f", "14835": "15___CATEGORICAL___nom_9___e30065dae", "14836": "15___CATEGORICAL___nom_9___e3015db2b", "14837": "15___CATEGORICAL___nom_9___e305893f7", "14838": "15___CATEGORICAL___nom_9___e30d09dd2", "14839": "15___CATEGORICAL___nom_9___e314d1bbd", "14840": "15___CATEGORICAL___nom_9___e320b926f", "14841": "15___CATEGORICAL___nom_9___e325dee80", "14842": "15___CATEGORICAL___nom_9___e32b87b84", "14843": "15___CATEGORICAL___nom_9___e32f9eaf9", "14844": "15___CATEGORICAL___nom_9___e33348a46", "14845": "15___CATEGORICAL___nom_9___e33612d06", "14846": "15___CATEGORICAL___nom_9___e338cee92", "14847": "15___CATEGORICAL___nom_9___e33a43c8e", "14848": "15___CATEGORICAL___nom_9___e33b74676", "14849": "15___CATEGORICAL___nom_9___e33c07021", "14850": "15___CATEGORICAL___nom_9___e347b3b46", "14851": "15___CATEGORICAL___nom_9___e347e7842", "14852": "15___CATEGORICAL___nom_9___e34d37714", "14853": "15___CATEGORICAL___nom_9___e35015401", "14854": "15___CATEGORICAL___nom_9___e3587d308", "14855": "15___CATEGORICAL___nom_9___e35b0d3d8", "14856": "15___CATEGORICAL___nom_9___e364ff647", "14857": "15___CATEGORICAL___nom_9___e36c3a743", "14858": "15___CATEGORICAL___nom_9___e37022420", "14859": "15___CATEGORICAL___nom_9___e37686fa9", "14860": "15___CATEGORICAL___nom_9___e37cd596a", "14861": "15___CATEGORICAL___nom_9___e3804fead", "14862": "15___CATEGORICAL___nom_9___e3872ec09", "14863": "15___CATEGORICAL___nom_9___e389fcad0", "14864": "15___CATEGORICAL___nom_9___e39524fcb", "14865": "15___CATEGORICAL___nom_9___e398d7894", "14866": "15___CATEGORICAL___nom_9___e39a5f6fe", "14867": "15___CATEGORICAL___nom_9___e39b01d4c", "14868": "15___CATEGORICAL___nom_9___e39b958ea", "14869": "15___CATEGORICAL___nom_9___e39db0923", "14870": "15___CATEGORICAL___nom_9___e39f008e8", "14871": "15___CATEGORICAL___nom_9___e3a8aaf5f", "14872": "15___CATEGORICAL___nom_9___e3b3ebfc5", "14873": "15___CATEGORICAL___nom_9___e3b6630e4", "14874": "15___CATEGORICAL___nom_9___e3b67c8be", "14875": "15___CATEGORICAL___nom_9___e3bd28393", "14876": "15___CATEGORICAL___nom_9___e3c4badd0", "14877": "15___CATEGORICAL___nom_9___e3d6f23b5", "14878": "15___CATEGORICAL___nom_9___e3e57ec52", "14879": "15___CATEGORICAL___nom_9___e3e59f1fb", "14880": "15___CATEGORICAL___nom_9___e3ea9294a", "14881": "15___CATEGORICAL___nom_9___e3ecc3e8b", "14882": "15___CATEGORICAL___nom_9___e3f26c425", "14883": "15___CATEGORICAL___nom_9___e3f361230", "14884": "15___CATEGORICAL___nom_9___e3f893974", "14885": "15___CATEGORICAL___nom_9___e4004b572", "14886": "15___CATEGORICAL___nom_9___e407977c4", "14887": "15___CATEGORICAL___nom_9___e40fe2314", "14888": "15___CATEGORICAL___nom_9___e415b36ec", "14889": "15___CATEGORICAL___nom_9___e41ae05a7", "14890": "15___CATEGORICAL___nom_9___e424b3c1b", "14891": "15___CATEGORICAL___nom_9___e4257a5bb", "14892": "15___CATEGORICAL___nom_9___e4262ec2a", "14893": "15___CATEGORICAL___nom_9___e43681655", "14894": "15___CATEGORICAL___nom_9___e439d525e", "14895": "15___CATEGORICAL___nom_9___e43bb4805", "14896": "15___CATEGORICAL___nom_9___e43f74979", "14897": "15___CATEGORICAL___nom_9___e440d8604", "14898": "15___CATEGORICAL___nom_9___e44849acc", "14899": "15___CATEGORICAL___nom_9___e44c9a9cc", "14900": "15___CATEGORICAL___nom_9___e44d70990", "14901": "15___CATEGORICAL___nom_9___e44fe2d64", "14902": "15___CATEGORICAL___nom_9___e45515385", "14903": "15___CATEGORICAL___nom_9___e45983ef6", "14904": "15___CATEGORICAL___nom_9___e45aea767", "14905": "15___CATEGORICAL___nom_9___e460cce22", "14906": "15___CATEGORICAL___nom_9___e46446f28", "14907": "15___CATEGORICAL___nom_9___e46891dff", "14908": "15___CATEGORICAL___nom_9___e46b19ef6", "14909": "15___CATEGORICAL___nom_9___e46bdea50", "14910": "15___CATEGORICAL___nom_9___e472a5c30", "14911": "15___CATEGORICAL___nom_9___e47310340", "14912": "15___CATEGORICAL___nom_9___e47e2d98c", "14913": "15___CATEGORICAL___nom_9___e480e66d9", "14914": "15___CATEGORICAL___nom_9___e4822a55a", "14915": "15___CATEGORICAL___nom_9___e486a7732", "14916": "15___CATEGORICAL___nom_9___e49105dd9", "14917": "15___CATEGORICAL___nom_9___e49293c55", "14918": "15___CATEGORICAL___nom_9___e49888d48", "14919": "15___CATEGORICAL___nom_9___e49aa5848", "14920": "15___CATEGORICAL___nom_9___e49b83889", "14921": "15___CATEGORICAL___nom_9___e4a3e63b5", "14922": "15___CATEGORICAL___nom_9___e4aa08bb8", "14923": "15___CATEGORICAL___nom_9___e4ae1c0f9", "14924": "15___CATEGORICAL___nom_9___e4aeb3caf", "14925": "15___CATEGORICAL___nom_9___e4b094ac6", "14926": "15___CATEGORICAL___nom_9___e4bde0f34", "14927": "15___CATEGORICAL___nom_9___e4c384af1", "14928": "15___CATEGORICAL___nom_9___e4ca00442", "14929": "15___CATEGORICAL___nom_9___e4cb254c8", "14930": "15___CATEGORICAL___nom_9___e4d384ff8", "14931": "15___CATEGORICAL___nom_9___e4e1d3da0", "14932": "15___CATEGORICAL___nom_9___e4e370879", "14933": "15___CATEGORICAL___nom_9___e4ef22f23", "14934": "15___CATEGORICAL___nom_9___e4f06cbde", "14935": "15___CATEGORICAL___nom_9___e4f14530f", "14936": "15___CATEGORICAL___nom_9___e4fac61e0", "14937": "15___CATEGORICAL___nom_9___e50483121", "14938": "15___CATEGORICAL___nom_9___e5090ee71", "14939": "15___CATEGORICAL___nom_9___e51081bf6", "14940": "15___CATEGORICAL___nom_9___e512f849b", "14941": "15___CATEGORICAL___nom_9___e518b5367", "14942": "15___CATEGORICAL___nom_9___e5281f05b", "14943": "15___CATEGORICAL___nom_9___e52a02a30", "14944": "15___CATEGORICAL___nom_9___e52a21b36", "14945": "15___CATEGORICAL___nom_9___e52aeffaa", "14946": "15___CATEGORICAL___nom_9___e53561dbf", "14947": "15___CATEGORICAL___nom_9___e54024a1b", "14948": "15___CATEGORICAL___nom_9___e544aa757", "14949": "15___CATEGORICAL___nom_9___e54d49dd6", "14950": "15___CATEGORICAL___nom_9___e55097aaa", "14951": "15___CATEGORICAL___nom_9___e551570b2", "14952": "15___CATEGORICAL___nom_9___e5528674b", "14953": "15___CATEGORICAL___nom_9___e55787173", "14954": "15___CATEGORICAL___nom_9___e557f5e7b", "14955": "15___CATEGORICAL___nom_9___e559865d9", "14956": "15___CATEGORICAL___nom_9___e55e0f422", "14957": "15___CATEGORICAL___nom_9___e5604e588", "14958": "15___CATEGORICAL___nom_9___e563a7a53", "14959": "15___CATEGORICAL___nom_9___e563c37ce", "14960": "15___CATEGORICAL___nom_9___e57166308", "14961": "15___CATEGORICAL___nom_9___e5755a9fc", "14962": "15___CATEGORICAL___nom_9___e5866bb6c", "14963": "15___CATEGORICAL___nom_9___e588e7301", "14964": "15___CATEGORICAL___nom_9___e59639dab", "14965": "15___CATEGORICAL___nom_9___e596e1716", "14966": "15___CATEGORICAL___nom_9___e596eac8f", "14967": "15___CATEGORICAL___nom_9___e5a239028", "14968": "15___CATEGORICAL___nom_9___e5a660cf3", "14969": "15___CATEGORICAL___nom_9___e5a743249", "14970": "15___CATEGORICAL___nom_9___e5a786809", "14971": "15___CATEGORICAL___nom_9___e5b87742b", "14972": "15___CATEGORICAL___nom_9___e5c46f1dd", "14973": "15___CATEGORICAL___nom_9___e5cc17930", "14974": "15___CATEGORICAL___nom_9___e5cfd5974", "14975": "15___CATEGORICAL___nom_9___e5d178cae", "14976": "15___CATEGORICAL___nom_9___e5d58998d", "14977": "15___CATEGORICAL___nom_9___e5de393cc", "14978": "15___CATEGORICAL___nom_9___e5df5b55a", "14979": "15___CATEGORICAL___nom_9___e5e720744", "14980": "15___CATEGORICAL___nom_9___e5f9bf033", "14981": "15___CATEGORICAL___nom_9___e5fc130aa", "14982": "15___CATEGORICAL___nom_9___e5fd2f648", "14983": "15___CATEGORICAL___nom_9___e5fe3ab8a", "14984": "15___CATEGORICAL___nom_9___e6004d4dd", "14985": "15___CATEGORICAL___nom_9___e60579800", "14986": "15___CATEGORICAL___nom_9___e605d00c1", "14987": "15___CATEGORICAL___nom_9___e60f823dc", "14988": "15___CATEGORICAL___nom_9___e6114fbcb", "14989": "15___CATEGORICAL___nom_9___e616005e5", "14990": "15___CATEGORICAL___nom_9___e6192b4d7", "14991": "15___CATEGORICAL___nom_9___e61add46c", "14992": "15___CATEGORICAL___nom_9___e62293c9a", "14993": "15___CATEGORICAL___nom_9___e624ed83a", "14994": "15___CATEGORICAL___nom_9___e62abd2a5", "14995": "15___CATEGORICAL___nom_9___e62c2a3cf", "14996": "15___CATEGORICAL___nom_9___e6354e1ea", "14997": "15___CATEGORICAL___nom_9___e63632d9b", "14998": "15___CATEGORICAL___nom_9___e6379d126", "14999": "15___CATEGORICAL___nom_9___e63c4866c", "15000": "15___CATEGORICAL___nom_9___e648c77b4", "15001": "15___CATEGORICAL___nom_9___e649ed634", "15002": "15___CATEGORICAL___nom_9___e6517df10", "15003": "15___CATEGORICAL___nom_9___e6528b35e", "15004": "15___CATEGORICAL___nom_9___e6532fcdb", "15005": "15___CATEGORICAL___nom_9___e65547067", "15006": "15___CATEGORICAL___nom_9___e65af5336", "15007": "15___CATEGORICAL___nom_9___e65e3caff", "15008": "15___CATEGORICAL___nom_9___e660cd8ae", "15009": "15___CATEGORICAL___nom_9___e6697216b", "15010": "15___CATEGORICAL___nom_9___e6751f54c", "15011": "15___CATEGORICAL___nom_9___e678e4724", "15012": "15___CATEGORICAL___nom_9___e67ab2d53", "15013": "15___CATEGORICAL___nom_9___e67b4b3ae", "15014": "15___CATEGORICAL___nom_9___e686614cf", "15015": "15___CATEGORICAL___nom_9___e686d9b99", "15016": "15___CATEGORICAL___nom_9___e68904b1f", "15017": "15___CATEGORICAL___nom_9___e68ba0944", "15018": "15___CATEGORICAL___nom_9___e6900cace", "15019": "15___CATEGORICAL___nom_9___e69e4725b", "15020": "15___CATEGORICAL___nom_9___e6a3b7609", "15021": "15___CATEGORICAL___nom_9___e6a5cbca6", "15022": "15___CATEGORICAL___nom_9___e6a791e94", "15023": "15___CATEGORICAL___nom_9___e6ac183cf", "15024": "15___CATEGORICAL___nom_9___e6afeae1f", "15025": "15___CATEGORICAL___nom_9___e6bc87da9", "15026": "15___CATEGORICAL___nom_9___e6be57dab", "15027": "15___CATEGORICAL___nom_9___e6bf4709d", "15028": "15___CATEGORICAL___nom_9___e6c1d36e9", "15029": "15___CATEGORICAL___nom_9___e6c9cf9f4", "15030": "15___CATEGORICAL___nom_9___e6cabd1b6", "15031": "15___CATEGORICAL___nom_9___e6cef0374", "15032": "15___CATEGORICAL___nom_9___e6d161828", "15033": "15___CATEGORICAL___nom_9___e6d286176", "15034": "15___CATEGORICAL___nom_9___e6d70f1df", "15035": "15___CATEGORICAL___nom_9___e6e04f2f2", "15036": "15___CATEGORICAL___nom_9___e6ed1cc21", "15037": "15___CATEGORICAL___nom_9___e6ef8612b", "15038": "15___CATEGORICAL___nom_9___e6f0487ae", "15039": "15___CATEGORICAL___nom_9___e6f405b61", "15040": "15___CATEGORICAL___nom_9___e6f8a1570", "15041": "15___CATEGORICAL___nom_9___e6fabe34b", "15042": "15___CATEGORICAL___nom_9___e6fb30239", "15043": "15___CATEGORICAL___nom_9___e7013a649", "15044": "15___CATEGORICAL___nom_9___e71435d55", "15045": "15___CATEGORICAL___nom_9___e7203596f", "15046": "15___CATEGORICAL___nom_9___e722f6cb4", "15047": "15___CATEGORICAL___nom_9___e72c3de22", "15048": "15___CATEGORICAL___nom_9___e72ede380", "15049": "15___CATEGORICAL___nom_9___e73d29ada", "15050": "15___CATEGORICAL___nom_9___e73d4c559", "15051": "15___CATEGORICAL___nom_9___e73fb7b52", "15052": "15___CATEGORICAL___nom_9___e74b831a1", "15053": "15___CATEGORICAL___nom_9___e750e2bac", "15054": "15___CATEGORICAL___nom_9___e7511b096", "15055": "15___CATEGORICAL___nom_9___e7575efec", "15056": "15___CATEGORICAL___nom_9___e75ae3ed1", "15057": "15___CATEGORICAL___nom_9___e75ddc2b8", "15058": "15___CATEGORICAL___nom_9___e76089033", "15059": "15___CATEGORICAL___nom_9___e76c62365", "15060": "15___CATEGORICAL___nom_9___e76c935a9", "15061": "15___CATEGORICAL___nom_9___e76cef399", "15062": "15___CATEGORICAL___nom_9___e76ef59f0", "15063": "15___CATEGORICAL___nom_9___e7702b708", "15064": "15___CATEGORICAL___nom_9___e771c4e24", "15065": "15___CATEGORICAL___nom_9___e774adf5c", "15066": "15___CATEGORICAL___nom_9___e77de7512", "15067": "15___CATEGORICAL___nom_9___e78184d75", "15068": "15___CATEGORICAL___nom_9___e799a168a", "15069": "15___CATEGORICAL___nom_9___e79b87256", "15070": "15___CATEGORICAL___nom_9___e7a045747", "15071": "15___CATEGORICAL___nom_9___e7a092844", "15072": "15___CATEGORICAL___nom_9___e7a39a488", "15073": "15___CATEGORICAL___nom_9___e7a598245", "15074": "15___CATEGORICAL___nom_9___e7a9b8cbd", "15075": "15___CATEGORICAL___nom_9___e7abf3acb", "15076": "15___CATEGORICAL___nom_9___e7b921aca", "15077": "15___CATEGORICAL___nom_9___e7bc0ed82", "15078": "15___CATEGORICAL___nom_9___e7bd40f5f", "15079": "15___CATEGORICAL___nom_9___e7cc33942", "15080": "15___CATEGORICAL___nom_9___e7cef88a5", "15081": "15___CATEGORICAL___nom_9___e7d16c7d6", "15082": "15___CATEGORICAL___nom_9___e7d57f476", "15083": "15___CATEGORICAL___nom_9___e7d5f5297", "15084": "15___CATEGORICAL___nom_9___e7dc16f7e", "15085": "15___CATEGORICAL___nom_9___e7dd344a8", "15086": "15___CATEGORICAL___nom_9___e7e96f7a3", "15087": "15___CATEGORICAL___nom_9___e7ed54f0f", "15088": "15___CATEGORICAL___nom_9___e7f0c931c", "15089": "15___CATEGORICAL___nom_9___e7f1a9ade", "15090": "15___CATEGORICAL___nom_9___e7f21b273", "15091": "15___CATEGORICAL___nom_9___e7ffba72e", "15092": "15___CATEGORICAL___nom_9___e80469823", "15093": "15___CATEGORICAL___nom_9___e810f6d6e", "15094": "15___CATEGORICAL___nom_9___e8163030d", "15095": "15___CATEGORICAL___nom_9___e822144a7", "15096": "15___CATEGORICAL___nom_9___e82ec9b46", "15097": "15___CATEGORICAL___nom_9___e834421a0", "15098": "15___CATEGORICAL___nom_9___e83821b8d", "15099": "15___CATEGORICAL___nom_9___e83d0d4d3", "15100": "15___CATEGORICAL___nom_9___e84d54bef", "15101": "15___CATEGORICAL___nom_9___e85a45f91", "15102": "15___CATEGORICAL___nom_9___e85d43bd6", "15103": "15___CATEGORICAL___nom_9___e85ecf7a3", "15104": "15___CATEGORICAL___nom_9___e870526bd", "15105": "15___CATEGORICAL___nom_9___e87175fc7", "15106": "15___CATEGORICAL___nom_9___e874d9dae", "15107": "15___CATEGORICAL___nom_9___e874ecd8f", "15108": "15___CATEGORICAL___nom_9___e87563886", "15109": "15___CATEGORICAL___nom_9___e88412b02", "15110": "15___CATEGORICAL___nom_9___e890cc9ed", "15111": "15___CATEGORICAL___nom_9___e897cdee5", "15112": "15___CATEGORICAL___nom_9___e8998b1c9", "15113": "15___CATEGORICAL___nom_9___e89d7f4ae", "15114": "15___CATEGORICAL___nom_9___e8a18c72d", "15115": "15___CATEGORICAL___nom_9___e8a1ec004", "15116": "15___CATEGORICAL___nom_9___e8a4f304c", "15117": "15___CATEGORICAL___nom_9___e8af8ed0e", "15118": "15___CATEGORICAL___nom_9___e8b16cc5a", "15119": "15___CATEGORICAL___nom_9___e8b47e344", "15120": "15___CATEGORICAL___nom_9___e8b5d7701", "15121": "15___CATEGORICAL___nom_9___e8b63cbc9", "15122": "15___CATEGORICAL___nom_9___e8b921583", "15123": "15___CATEGORICAL___nom_9___e8be2364b", "15124": "15___CATEGORICAL___nom_9___e8c6584a9", "15125": "15___CATEGORICAL___nom_9___e8c844327", "15126": "15___CATEGORICAL___nom_9___e8d7953b3", "15127": "15___CATEGORICAL___nom_9___e8dc93294", "15128": "15___CATEGORICAL___nom_9___e8f9187b2", "15129": "15___CATEGORICAL___nom_9___e8fc08540", "15130": "15___CATEGORICAL___nom_9___e900af1bf", "15131": "15___CATEGORICAL___nom_9___e9031f274", "15132": "15___CATEGORICAL___nom_9___e9045425f", "15133": "15___CATEGORICAL___nom_9___e9053a5b4", "15134": "15___CATEGORICAL___nom_9___e90e8d084", "15135": "15___CATEGORICAL___nom_9___e90f025fd", "15136": "15___CATEGORICAL___nom_9___e90f15353", "15137": "15___CATEGORICAL___nom_9___e9113117b", "15138": "15___CATEGORICAL___nom_9___e916131f5", "15139": "15___CATEGORICAL___nom_9___e92025985", "15140": "15___CATEGORICAL___nom_9___e92142903", "15141": "15___CATEGORICAL___nom_9___e924e84d5", "15142": "15___CATEGORICAL___nom_9___e9297e693", "15143": "15___CATEGORICAL___nom_9___e933127f4", "15144": "15___CATEGORICAL___nom_9___e9340b80f", "15145": "15___CATEGORICAL___nom_9___e939599df", "15146": "15___CATEGORICAL___nom_9___e93c2e4cb", "15147": "15___CATEGORICAL___nom_9___e94015f35", "15148": "15___CATEGORICAL___nom_9___e94e92041", "15149": "15___CATEGORICAL___nom_9___e94ef6213", "15150": "15___CATEGORICAL___nom_9___e94f65c50", "15151": "15___CATEGORICAL___nom_9___e95389f2b", "15152": "15___CATEGORICAL___nom_9___e95678273", "15153": "15___CATEGORICAL___nom_9___e95830634", "15154": "15___CATEGORICAL___nom_9___e958ca8d6", "15155": "15___CATEGORICAL___nom_9___e95c9a217", "15156": "15___CATEGORICAL___nom_9___e9689f011", "15157": "15___CATEGORICAL___nom_9___e9693cc1d", "15158": "15___CATEGORICAL___nom_9___e976df9a5", "15159": "15___CATEGORICAL___nom_9___e97817737", "15160": "15___CATEGORICAL___nom_9___e97893797", "15161": "15___CATEGORICAL___nom_9___e982d4be7", "15162": "15___CATEGORICAL___nom_9___e98aa159f", "15163": "15___CATEGORICAL___nom_9___e98bbf65f", "15164": "15___CATEGORICAL___nom_9___e98d80815", "15165": "15___CATEGORICAL___nom_9___e98ea9851", "15166": "15___CATEGORICAL___nom_9___e990b1adc", "15167": "15___CATEGORICAL___nom_9___e994b742d", "15168": "15___CATEGORICAL___nom_9___e9975b24a", "15169": "15___CATEGORICAL___nom_9___e9a8b5638", "15170": "15___CATEGORICAL___nom_9___e9aa87a4e", "15171": "15___CATEGORICAL___nom_9___e9bcd0948", "15172": "15___CATEGORICAL___nom_9___e9c50a166", "15173": "15___CATEGORICAL___nom_9___e9d406439", "15174": "15___CATEGORICAL___nom_9___e9d83ae6a", "15175": "15___CATEGORICAL___nom_9___e9e3aa598", "15176": "15___CATEGORICAL___nom_9___e9e56a3f8", "15177": "15___CATEGORICAL___nom_9___e9ebed402", "15178": "15___CATEGORICAL___nom_9___e9f235ad2", "15179": "15___CATEGORICAL___nom_9___e9f535d02", "15180": "15___CATEGORICAL___nom_9___e9f6442aa", "15181": "15___CATEGORICAL___nom_9___e9f8d8b08", "15182": "15___CATEGORICAL___nom_9___e9ffb960e", "15183": "15___CATEGORICAL___nom_9___ea046c339", "15184": "15___CATEGORICAL___nom_9___ea056e50d", "15185": "15___CATEGORICAL___nom_9___ea0b51e8d", "15186": "15___CATEGORICAL___nom_9___ea0e8f360", "15187": "15___CATEGORICAL___nom_9___ea17fbdc6", "15188": "15___CATEGORICAL___nom_9___ea182abc9", "15189": "15___CATEGORICAL___nom_9___ea216b077", "15190": "15___CATEGORICAL___nom_9___ea242317d", "15191": "15___CATEGORICAL___nom_9___ea2582bc5", "15192": "15___CATEGORICAL___nom_9___ea2647385", "15193": "15___CATEGORICAL___nom_9___ea2aae04c", "15194": "15___CATEGORICAL___nom_9___ea2f5defe", "15195": "15___CATEGORICAL___nom_9___ea32b9032", "15196": "15___CATEGORICAL___nom_9___ea37f9765", "15197": "15___CATEGORICAL___nom_9___ea3a9a2a7", "15198": "15___CATEGORICAL___nom_9___ea447ff7e", "15199": "15___CATEGORICAL___nom_9___ea47913fc", "15200": "15___CATEGORICAL___nom_9___ea48ead71", "15201": "15___CATEGORICAL___nom_9___ea52ac622", "15202": "15___CATEGORICAL___nom_9___ea52d99fd", "15203": "15___CATEGORICAL___nom_9___ea552cdca", "15204": "15___CATEGORICAL___nom_9___ea63fad6c", "15205": "15___CATEGORICAL___nom_9___ea6538885", "15206": "15___CATEGORICAL___nom_9___ea6e59fc5", "15207": "15___CATEGORICAL___nom_9___ea7330462", "15208": "15___CATEGORICAL___nom_9___ea758f61b", "15209": "15___CATEGORICAL___nom_9___ea8412e32", "15210": "15___CATEGORICAL___nom_9___ea85df7d5", "15211": "15___CATEGORICAL___nom_9___ea87c8d9f", "15212": "15___CATEGORICAL___nom_9___ea8f3319e", "15213": "15___CATEGORICAL___nom_9___ea90cd2e3", "15214": "15___CATEGORICAL___nom_9___ea92292bf", "15215": "15___CATEGORICAL___nom_9___ea9f3fc38", "15216": "15___CATEGORICAL___nom_9___eaa2fed47", "15217": "15___CATEGORICAL___nom_9___eaacb7cff", "15218": "15___CATEGORICAL___nom_9___eab4cbf2c", "15219": "15___CATEGORICAL___nom_9___eaba8e275", "15220": "15___CATEGORICAL___nom_9___eabcb6e2a", "15221": "15___CATEGORICAL___nom_9___eac079792", "15222": "15___CATEGORICAL___nom_9___eac28c10e", "15223": "15___CATEGORICAL___nom_9___eac459235", "15224": "15___CATEGORICAL___nom_9___eac47277d", "15225": "15___CATEGORICAL___nom_9___eac6dcd58", "15226": "15___CATEGORICAL___nom_9___ead3d24b9", "15227": "15___CATEGORICAL___nom_9___ead5af7f7", "15228": "15___CATEGORICAL___nom_9___ead8adfce", "15229": "15___CATEGORICAL___nom_9___eada92f23", "15230": "15___CATEGORICAL___nom_9___eade42133", "15231": "15___CATEGORICAL___nom_9___eae3446d0", "15232": "15___CATEGORICAL___nom_9___eae866826", "15233": "15___CATEGORICAL___nom_9___eae90b171", "15234": "15___CATEGORICAL___nom_9___eaed14a9f", "15235": "15___CATEGORICAL___nom_9___eb0c70cc2", "15236": "15___CATEGORICAL___nom_9___eb0edaa1a", "15237": "15___CATEGORICAL___nom_9___eb156f4bc", "15238": "15___CATEGORICAL___nom_9___eb169cb65", "15239": "15___CATEGORICAL___nom_9___eb19f6885", "15240": "15___CATEGORICAL___nom_9___eb28c3b55", "15241": "15___CATEGORICAL___nom_9___eb31cc16d", "15242": "15___CATEGORICAL___nom_9___eb32bd229", "15243": "15___CATEGORICAL___nom_9___eb37bdd57", "15244": "15___CATEGORICAL___nom_9___eb3890574", "15245": "15___CATEGORICAL___nom_9___eb3d7ce7e", "15246": "15___CATEGORICAL___nom_9___eb4e8a7df", "15247": "15___CATEGORICAL___nom_9___eb531c345", "15248": "15___CATEGORICAL___nom_9___eb58ff2cd", "15249": "15___CATEGORICAL___nom_9___eb653068f", "15250": "15___CATEGORICAL___nom_9___eb656f6aa", "15251": "15___CATEGORICAL___nom_9___eb692738c", "15252": "15___CATEGORICAL___nom_9___eb69cc526", "15253": "15___CATEGORICAL___nom_9___eb77a5a4f", "15254": "15___CATEGORICAL___nom_9___eb7ab314d", "15255": "15___CATEGORICAL___nom_9___eb7ceafae", "15256": "15___CATEGORICAL___nom_9___eb7ea57ea", "15257": "15___CATEGORICAL___nom_9___eb8e8bee9", "15258": "15___CATEGORICAL___nom_9___eb8ed0632", "15259": "15___CATEGORICAL___nom_9___eb967fa5c", "15260": "15___CATEGORICAL___nom_9___eb9b836d1", "15261": "15___CATEGORICAL___nom_9___eba11416b", "15262": "15___CATEGORICAL___nom_9___eba480e5b", "15263": "15___CATEGORICAL___nom_9___eba94c090", "15264": "15___CATEGORICAL___nom_9___ebac0a233", "15265": "15___CATEGORICAL___nom_9___ebacfc734", "15266": "15___CATEGORICAL___nom_9___ebb8b6a14", "15267": "15___CATEGORICAL___nom_9___ebb8fb55c", "15268": "15___CATEGORICAL___nom_9___ebbdeda97", "15269": "15___CATEGORICAL___nom_9___ebc386311", "15270": "15___CATEGORICAL___nom_9___ebc481d7d", "15271": "15___CATEGORICAL___nom_9___ebc51b2a3", "15272": "15___CATEGORICAL___nom_9___ebc8946c4", "15273": "15___CATEGORICAL___nom_9___ebce0c015", "15274": "15___CATEGORICAL___nom_9___ebce5333e", "15275": "15___CATEGORICAL___nom_9___ebd72a551", "15276": "15___CATEGORICAL___nom_9___ebd88e944", "15277": "15___CATEGORICAL___nom_9___ebe476e55", "15278": "15___CATEGORICAL___nom_9___ebe5becf3", "15279": "15___CATEGORICAL___nom_9___ebec32f1a", "15280": "15___CATEGORICAL___nom_9___ebee40aef", "15281": "15___CATEGORICAL___nom_9___ebf0b296c", "15282": "15___CATEGORICAL___nom_9___ebf114950", "15283": "15___CATEGORICAL___nom_9___ebf2138cd", "15284": "15___CATEGORICAL___nom_9___ebf6d58d0", "15285": "15___CATEGORICAL___nom_9___ec0f41d43", "15286": "15___CATEGORICAL___nom_9___ec1976278", "15287": "15___CATEGORICAL___nom_9___ec1c698a0", "15288": "15___CATEGORICAL___nom_9___ec1edddbf", "15289": "15___CATEGORICAL___nom_9___ec28986e7", "15290": "15___CATEGORICAL___nom_9___ec28a4647", "15291": "15___CATEGORICAL___nom_9___ec2f48912", "15292": "15___CATEGORICAL___nom_9___ec30c88ca", "15293": "15___CATEGORICAL___nom_9___ec3116ee6", "15294": "15___CATEGORICAL___nom_9___ec32613c0", "15295": "15___CATEGORICAL___nom_9___ec32f6f6c", "15296": "15___CATEGORICAL___nom_9___ec3eed7c5", "15297": "15___CATEGORICAL___nom_9___ec40cd6e8", "15298": "15___CATEGORICAL___nom_9___ec43940ad", "15299": "15___CATEGORICAL___nom_9___ec4999e23", "15300": "15___CATEGORICAL___nom_9___ec4bc33d4", "15301": "15___CATEGORICAL___nom_9___ec5562eaa", "15302": "15___CATEGORICAL___nom_9___ec572caf4", "15303": "15___CATEGORICAL___nom_9___ec5a77e19", "15304": "15___CATEGORICAL___nom_9___ec63001f2", "15305": "15___CATEGORICAL___nom_9___ec74c138a", "15306": "15___CATEGORICAL___nom_9___ec85d03c2", "15307": "15___CATEGORICAL___nom_9___ec88db584", "15308": "15___CATEGORICAL___nom_9___ec94cad1f", "15309": "15___CATEGORICAL___nom_9___ec99284d7", "15310": "15___CATEGORICAL___nom_9___eca3146f1", "15311": "15___CATEGORICAL___nom_9___ecb32ad91", "15312": "15___CATEGORICAL___nom_9___ecba31a0c", "15313": "15___CATEGORICAL___nom_9___ecba66bab", "15314": "15___CATEGORICAL___nom_9___ecbc288a5", "15315": "15___CATEGORICAL___nom_9___ecc651b7d", "15316": "15___CATEGORICAL___nom_9___ecc71342b", "15317": "15___CATEGORICAL___nom_9___ecca69759", "15318": "15___CATEGORICAL___nom_9___eccc1cc3b", "15319": "15___CATEGORICAL___nom_9___ecd28c5b6", "15320": "15___CATEGORICAL___nom_9___ecdcaf4cf", "15321": "15___CATEGORICAL___nom_9___ecdd982d4", "15322": "15___CATEGORICAL___nom_9___ece314e96", "15323": "15___CATEGORICAL___nom_9___ecf351be8", "15324": "15___CATEGORICAL___nom_9___ecf3f01c4", "15325": "15___CATEGORICAL___nom_9___ecf451934", "15326": "15___CATEGORICAL___nom_9___ecfae844c", "15327": "15___CATEGORICAL___nom_9___ecffa2ee3", "15328": "15___CATEGORICAL___nom_9___ed0378f7d", "15329": "15___CATEGORICAL___nom_9___ed1ede79a", "15330": "15___CATEGORICAL___nom_9___ed1f64f6f", "15331": "15___CATEGORICAL___nom_9___ed2b6bb6c", "15332": "15___CATEGORICAL___nom_9___ed2bdad78", "15333": "15___CATEGORICAL___nom_9___ed2dc8757", "15334": "15___CATEGORICAL___nom_9___ed326b121", "15335": "15___CATEGORICAL___nom_9___ed42a4940", "15336": "15___CATEGORICAL___nom_9___ed449f23d", "15337": "15___CATEGORICAL___nom_9___ed4f6510c", "15338": "15___CATEGORICAL___nom_9___ed5f2bf65", "15339": "15___CATEGORICAL___nom_9___ed60e5353", "15340": "15___CATEGORICAL___nom_9___ed61c8e7f", "15341": "15___CATEGORICAL___nom_9___ed68ced34", "15342": "15___CATEGORICAL___nom_9___ed6cee289", "15343": "15___CATEGORICAL___nom_9___ed6fb6436", "15344": "15___CATEGORICAL___nom_9___ed73433a2", "15345": "15___CATEGORICAL___nom_9___ed74c4ee0", "15346": "15___CATEGORICAL___nom_9___ed78ece08", "15347": "15___CATEGORICAL___nom_9___ed78f989e", "15348": "15___CATEGORICAL___nom_9___ed7f6834f", "15349": "15___CATEGORICAL___nom_9___ed8a0b9fd", "15350": "15___CATEGORICAL___nom_9___ed9718e7a", "15351": "15___CATEGORICAL___nom_9___ed9bc5d8c", "15352": "15___CATEGORICAL___nom_9___eda42a4ab", "15353": "15___CATEGORICAL___nom_9___eda47fff2", "15354": "15___CATEGORICAL___nom_9___eda98169d", "15355": "15___CATEGORICAL___nom_9___edaa082bc", "15356": "15___CATEGORICAL___nom_9___edade7475", "15357": "15___CATEGORICAL___nom_9___edb389887", "15358": "15___CATEGORICAL___nom_9___edbbbc9dd", "15359": "15___CATEGORICAL___nom_9___edbe0d3aa", "15360": "15___CATEGORICAL___nom_9___edbf3ef3d", "15361": "15___CATEGORICAL___nom_9___edc156bb2", "15362": "15___CATEGORICAL___nom_9___edc51e9ad", "15363": "15___CATEGORICAL___nom_9___edcac67d6", "15364": "15___CATEGORICAL___nom_9___edd0fd1b1", "15365": "15___CATEGORICAL___nom_9___edd29bd8d", "15366": "15___CATEGORICAL___nom_9___edd6d0af0", "15367": "15___CATEGORICAL___nom_9___ede351934", "15368": "15___CATEGORICAL___nom_9___ede51ee9b", "15369": "15___CATEGORICAL___nom_9___edea09f15", "15370": "15___CATEGORICAL___nom_9___edf0e5332", "15371": "15___CATEGORICAL___nom_9___edfce87c8", "15372": "15___CATEGORICAL___nom_9___ee01115f9", "15373": "15___CATEGORICAL___nom_9___ee07e8802", "15374": "15___CATEGORICAL___nom_9___ee0c42124", "15375": "15___CATEGORICAL___nom_9___ee16bdb63", "15376": "15___CATEGORICAL___nom_9___ee2255615", "15377": "15___CATEGORICAL___nom_9___ee260c8cb", "15378": "15___CATEGORICAL___nom_9___ee2ea84ff", "15379": "15___CATEGORICAL___nom_9___ee3ef9a4c", "15380": "15___CATEGORICAL___nom_9___ee4aa56ae", "15381": "15___CATEGORICAL___nom_9___ee4ac2fcf", "15382": "15___CATEGORICAL___nom_9___ee4ad3459", "15383": "15___CATEGORICAL___nom_9___ee5057a98", "15384": "15___CATEGORICAL___nom_9___ee51f3b03", "15385": "15___CATEGORICAL___nom_9___ee5e9e589", "15386": "15___CATEGORICAL___nom_9___ee61caaf5", "15387": "15___CATEGORICAL___nom_9___ee64836ce", "15388": "15___CATEGORICAL___nom_9___ee681b252", "15389": "15___CATEGORICAL___nom_9___ee8090328", "15390": "15___CATEGORICAL___nom_9___ee87a2caa", "15391": "15___CATEGORICAL___nom_9___ee884c8f8", "15392": "15___CATEGORICAL___nom_9___ee8dda622", "15393": "15___CATEGORICAL___nom_9___ee8ddd850", "15394": "15___CATEGORICAL___nom_9___ee90398d6", "15395": "15___CATEGORICAL___nom_9___ee9314569", "15396": "15___CATEGORICAL___nom_9___ee9570747", "15397": "15___CATEGORICAL___nom_9___ee997e1c2", "15398": "15___CATEGORICAL___nom_9___ee9e22d2c", "15399": "15___CATEGORICAL___nom_9___ee9eaeb3c", "15400": "15___CATEGORICAL___nom_9___eea3fee36", "15401": "15___CATEGORICAL___nom_9___eea70b4a7", "15402": "15___CATEGORICAL___nom_9___eeae49068", "15403": "15___CATEGORICAL___nom_9___eeaf55dc2", "15404": "15___CATEGORICAL___nom_9___eebafb847", "15405": "15___CATEGORICAL___nom_9___eebdb979f", "15406": "15___CATEGORICAL___nom_9___eec253dc9", "15407": "15___CATEGORICAL___nom_9___eec579d42", "15408": "15___CATEGORICAL___nom_9___eec9b9ba3", "15409": "15___CATEGORICAL___nom_9___eed471ae3", "15410": "15___CATEGORICAL___nom_9___eed8943f2", "15411": "15___CATEGORICAL___nom_9___eee773af3", "15412": "15___CATEGORICAL___nom_9___eee8cc6ac", "15413": "15___CATEGORICAL___nom_9___eef556f28", "15414": "15___CATEGORICAL___nom_9___eef885a7d", "15415": "15___CATEGORICAL___nom_9___ef0a86323", "15416": "15___CATEGORICAL___nom_9___ef0cd8b8b", "15417": "15___CATEGORICAL___nom_9___ef0e58150", "15418": "15___CATEGORICAL___nom_9___ef104da3a", "15419": "15___CATEGORICAL___nom_9___ef1558c24", "15420": "15___CATEGORICAL___nom_9___ef1ab467e", "15421": "15___CATEGORICAL___nom_9___ef2683602", "15422": "15___CATEGORICAL___nom_9___ef2b6ad86", "15423": "15___CATEGORICAL___nom_9___ef2c58152", "15424": "15___CATEGORICAL___nom_9___ef2cdaf7b", "15425": "15___CATEGORICAL___nom_9___ef306e5b7", "15426": "15___CATEGORICAL___nom_9___ef367e995", "15427": "15___CATEGORICAL___nom_9___ef3812a94", "15428": "15___CATEGORICAL___nom_9___ef3881c43", "15429": "15___CATEGORICAL___nom_9___ef3cbbc20", "15430": "15___CATEGORICAL___nom_9___ef4253b82", "15431": "15___CATEGORICAL___nom_9___ef4f0f085", "15432": "15___CATEGORICAL___nom_9___ef4f5fca2", "15433": "15___CATEGORICAL___nom_9___ef57d3b32", "15434": "15___CATEGORICAL___nom_9___ef5d10767", "15435": "15___CATEGORICAL___nom_9___ef63f86e1", "15436": "15___CATEGORICAL___nom_9___ef6758bfc", "15437": "15___CATEGORICAL___nom_9___ef68b5367", "15438": "15___CATEGORICAL___nom_9___ef68f585e", "15439": "15___CATEGORICAL___nom_9___ef72b25b7", "15440": "15___CATEGORICAL___nom_9___ef74e4a40", "15441": "15___CATEGORICAL___nom_9___ef76f86d9", "15442": "15___CATEGORICAL___nom_9___ef7b4b927", "15443": "15___CATEGORICAL___nom_9___ef866e039", "15444": "15___CATEGORICAL___nom_9___ef8c523a7", "15445": "15___CATEGORICAL___nom_9___ef8e96532", "15446": "15___CATEGORICAL___nom_9___ef92251d7", "15447": "15___CATEGORICAL___nom_9___ef968c387", "15448": "15___CATEGORICAL___nom_9___ef98d5e8b", "15449": "15___CATEGORICAL___nom_9___ef9fc8e77", "15450": "15___CATEGORICAL___nom_9___efa04891c", "15451": "15___CATEGORICAL___nom_9___efa0d02d1", "15452": "15___CATEGORICAL___nom_9___efa23070a", "15453": "15___CATEGORICAL___nom_9___efa8954f7", "15454": "15___CATEGORICAL___nom_9___efab204d5", "15455": "15___CATEGORICAL___nom_9___efad9a264", "15456": "15___CATEGORICAL___nom_9___efb5ec0df", "15457": "15___CATEGORICAL___nom_9___efb7015c0", "15458": "15___CATEGORICAL___nom_9___efcc4ae5d", "15459": "15___CATEGORICAL___nom_9___efcd4e389", "15460": "15___CATEGORICAL___nom_9___efd236dba", "15461": "15___CATEGORICAL___nom_9___efdd4e727", "15462": "15___CATEGORICAL___nom_9___efde67cde", "15463": "15___CATEGORICAL___nom_9___efdfef16e", "15464": "15___CATEGORICAL___nom_9___efe13bfb1", "15465": "15___CATEGORICAL___nom_9___efe409072", "15466": "15___CATEGORICAL___nom_9___efe414fcc", "15467": "15___CATEGORICAL___nom_9___efe509721", "15468": "15___CATEGORICAL___nom_9___efea41c47", "15469": "15___CATEGORICAL___nom_9___efff39fd9", "15470": "15___CATEGORICAL___nom_9___f00159f26", "15471": "15___CATEGORICAL___nom_9___f0055e85c", "15472": "15___CATEGORICAL___nom_9___f00ce72ea", "15473": "15___CATEGORICAL___nom_9___f010038ac", "15474": "15___CATEGORICAL___nom_9___f0154d05c", "15475": "15___CATEGORICAL___nom_9___f024392e5", "15476": "15___CATEGORICAL___nom_9___f02699f10", "15477": "15___CATEGORICAL___nom_9___f02dfd101", "15478": "15___CATEGORICAL___nom_9___f036857c3", "15479": "15___CATEGORICAL___nom_9___f03f3e66e", "15480": "15___CATEGORICAL___nom_9___f04207e6b", "15481": "15___CATEGORICAL___nom_9___f046f9f8f", "15482": "15___CATEGORICAL___nom_9___f0485700e", "15483": "15___CATEGORICAL___nom_9___f05223734", "15484": "15___CATEGORICAL___nom_9___f05469405", "15485": "15___CATEGORICAL___nom_9___f0549f839", "15486": "15___CATEGORICAL___nom_9___f059ff271", "15487": "15___CATEGORICAL___nom_9___f06417a37", "15488": "15___CATEGORICAL___nom_9___f0709e146", "15489": "15___CATEGORICAL___nom_9___f07a25378", "15490": "15___CATEGORICAL___nom_9___f07af6e23", "15491": "15___CATEGORICAL___nom_9___f0868d00b", "15492": "15___CATEGORICAL___nom_9___f0868e800", "15493": "15___CATEGORICAL___nom_9___f08a3497b", "15494": "15___CATEGORICAL___nom_9___f08e0c4a9", "15495": "15___CATEGORICAL___nom_9___f08eeca35", "15496": "15___CATEGORICAL___nom_9___f09051fa9", "15497": "15___CATEGORICAL___nom_9___f09696d4d", "15498": "15___CATEGORICAL___nom_9___f09ada053", "15499": "15___CATEGORICAL___nom_9___f09b0c8ae", "15500": "15___CATEGORICAL___nom_9___f0a4c96e2", "15501": "15___CATEGORICAL___nom_9___f0a7281c2", "15502": "15___CATEGORICAL___nom_9___f0a8febca", "15503": "15___CATEGORICAL___nom_9___f0b876463", "15504": "15___CATEGORICAL___nom_9___f0c035757", "15505": "15___CATEGORICAL___nom_9___f0c14f203", "15506": "15___CATEGORICAL___nom_9___f0c4ebbc2", "15507": "15___CATEGORICAL___nom_9___f0ca30ac1", "15508": "15___CATEGORICAL___nom_9___f0ca54728", "15509": "15___CATEGORICAL___nom_9___f0cb05953", "15510": "15___CATEGORICAL___nom_9___f0cd29e89", "15511": "15___CATEGORICAL___nom_9___f0cea9769", "15512": "15___CATEGORICAL___nom_9___f0da5eaeb", "15513": "15___CATEGORICAL___nom_9___f0dab9277", "15514": "15___CATEGORICAL___nom_9___f0dda8746", "15515": "15___CATEGORICAL___nom_9___f0e0222f3", "15516": "15___CATEGORICAL___nom_9___f0e333021", "15517": "15___CATEGORICAL___nom_9___f0e34a036", "15518": "15___CATEGORICAL___nom_9___f0e5d7b1c", "15519": "15___CATEGORICAL___nom_9___f0f0778ef", "15520": "15___CATEGORICAL___nom_9___f1057964b", "15521": "15___CATEGORICAL___nom_9___f105cdc51", "15522": "15___CATEGORICAL___nom_9___f106759a1", "15523": "15___CATEGORICAL___nom_9___f10b35697", "15524": "15___CATEGORICAL___nom_9___f10f6acd9", "15525": "15___CATEGORICAL___nom_9___f10f6e4b8", "15526": "15___CATEGORICAL___nom_9___f1278ae5c", "15527": "15___CATEGORICAL___nom_9___f12c093b2", "15528": "15___CATEGORICAL___nom_9___f12e3bfb5", "15529": "15___CATEGORICAL___nom_9___f12f038cc", "15530": "15___CATEGORICAL___nom_9___f12f38143", "15531": "15___CATEGORICAL___nom_9___f13abffbe", "15532": "15___CATEGORICAL___nom_9___f13d55f84", "15533": "15___CATEGORICAL___nom_9___f1409ed0a", "15534": "15___CATEGORICAL___nom_9___f141376c6", "15535": "15___CATEGORICAL___nom_9___f14a95480", "15536": "15___CATEGORICAL___nom_9___f14bcdeb1", "15537": "15___CATEGORICAL___nom_9___f152f5b8a", "15538": "15___CATEGORICAL___nom_9___f15623083", "15539": "15___CATEGORICAL___nom_9___f157c6eef", "15540": "15___CATEGORICAL___nom_9___f15aeaf6e", "15541": "15___CATEGORICAL___nom_9___f15b4db73", "15542": "15___CATEGORICAL___nom_9___f16547e58", "15543": "15___CATEGORICAL___nom_9___f172b1cbc", "15544": "15___CATEGORICAL___nom_9___f174f52eb", "15545": "15___CATEGORICAL___nom_9___f17a8b0e0", "15546": "15___CATEGORICAL___nom_9___f17ed53d5", "15547": "15___CATEGORICAL___nom_9___f18386d66", "15548": "15___CATEGORICAL___nom_9___f185e65bc", "15549": "15___CATEGORICAL___nom_9___f18854563", "15550": "15___CATEGORICAL___nom_9___f18f0d7d2", "15551": "15___CATEGORICAL___nom_9___f190d6914", "15552": "15___CATEGORICAL___nom_9___f197616cb", "15553": "15___CATEGORICAL___nom_9___f1a1ff24c", "15554": "15___CATEGORICAL___nom_9___f1a7923b1", "15555": "15___CATEGORICAL___nom_9___f1a9cd730", "15556": "15___CATEGORICAL___nom_9___f1ad05197", "15557": "15___CATEGORICAL___nom_9___f1afb9211", "15558": "15___CATEGORICAL___nom_9___f1b242884", "15559": "15___CATEGORICAL___nom_9___f1b8e92ff", "15560": "15___CATEGORICAL___nom_9___f1c2fd742", "15561": "15___CATEGORICAL___nom_9___f1d53e20f", "15562": "15___CATEGORICAL___nom_9___f1e067aed", "15563": "15___CATEGORICAL___nom_9___f1e4d5285", "15564": "15___CATEGORICAL___nom_9___f1e4e269e", "15565": "15___CATEGORICAL___nom_9___f1f400644", "15566": "15___CATEGORICAL___nom_9___f1f881e1c", "15567": "15___CATEGORICAL___nom_9___f1f8e906c", "15568": "15___CATEGORICAL___nom_9___f1f92a85e", "15569": "15___CATEGORICAL___nom_9___f200f565d", "15570": "15___CATEGORICAL___nom_9___f202100f4", "15571": "15___CATEGORICAL___nom_9___f20a51ba3", "15572": "15___CATEGORICAL___nom_9___f21edef76", "15573": "15___CATEGORICAL___nom_9___f2337070a", "15574": "15___CATEGORICAL___nom_9___f23b101e2", "15575": "15___CATEGORICAL___nom_9___f24515308", "15576": "15___CATEGORICAL___nom_9___f246b9f16", "15577": "15___CATEGORICAL___nom_9___f247c620a", "15578": "15___CATEGORICAL___nom_9___f24e13d9e", "15579": "15___CATEGORICAL___nom_9___f2592de6c", "15580": "15___CATEGORICAL___nom_9___f263ade13", "15581": "15___CATEGORICAL___nom_9___f2643b3d7", "15582": "15___CATEGORICAL___nom_9___f26d7ddbd", "15583": "15___CATEGORICAL___nom_9___f26edb856", "15584": "15___CATEGORICAL___nom_9___f2716a451", "15585": "15___CATEGORICAL___nom_9___f2744e92c", "15586": "15___CATEGORICAL___nom_9___f27484ad8", "15587": "15___CATEGORICAL___nom_9___f278f66ac", "15588": "15___CATEGORICAL___nom_9___f27970f59", "15589": "15___CATEGORICAL___nom_9___f289f8f04", "15590": "15___CATEGORICAL___nom_9___f29f3503a", "15591": "15___CATEGORICAL___nom_9___f2abeaa5b", "15592": "15___CATEGORICAL___nom_9___f2acf2911", "15593": "15___CATEGORICAL___nom_9___f2b367502", "15594": "15___CATEGORICAL___nom_9___f2b6ca3d8", "15595": "15___CATEGORICAL___nom_9___f2c8ac231", "15596": "15___CATEGORICAL___nom_9___f2cfcce85", "15597": "15___CATEGORICAL___nom_9___f2d6ba224", "15598": "15___CATEGORICAL___nom_9___f2d8eaa42", "15599": "15___CATEGORICAL___nom_9___f2daed296", "15600": "15___CATEGORICAL___nom_9___f2deeca56", "15601": "15___CATEGORICAL___nom_9___f2e35168e", "15602": "15___CATEGORICAL___nom_9___f2fa4df66", "15603": "15___CATEGORICAL___nom_9___f2fa8b694", "15604": "15___CATEGORICAL___nom_9___f2fb8ff79", "15605": "15___CATEGORICAL___nom_9___f2fc20245", "15606": "15___CATEGORICAL___nom_9___f2fd2161b", "15607": "15___CATEGORICAL___nom_9___f2ff92a02", "15608": "15___CATEGORICAL___nom_9___f30806bbe", "15609": "15___CATEGORICAL___nom_9___f30bf2307", "15610": "15___CATEGORICAL___nom_9___f30e6bf63", "15611": "15___CATEGORICAL___nom_9___f3191aab0", "15612": "15___CATEGORICAL___nom_9___f31d0e044", "15613": "15___CATEGORICAL___nom_9___f32c6d2d5", "15614": "15___CATEGORICAL___nom_9___f330ab269", "15615": "15___CATEGORICAL___nom_9___f330db06d", "15616": "15___CATEGORICAL___nom_9___f33219e09", "15617": "15___CATEGORICAL___nom_9___f33325359", "15618": "15___CATEGORICAL___nom_9___f33fadb86", "15619": "15___CATEGORICAL___nom_9___f342096aa", "15620": "15___CATEGORICAL___nom_9___f343a63ae", "15621": "15___CATEGORICAL___nom_9___f344b0486", "15622": "15___CATEGORICAL___nom_9___f346d6b27", "15623": "15___CATEGORICAL___nom_9___f34781de3", "15624": "15___CATEGORICAL___nom_9___f35082a07", "15625": "15___CATEGORICAL___nom_9___f35306ca6", "15626": "15___CATEGORICAL___nom_9___f35364981", "15627": "15___CATEGORICAL___nom_9___f354aa31e", "15628": "15___CATEGORICAL___nom_9___f35da259a", "15629": "15___CATEGORICAL___nom_9___f36f3a740", "15630": "15___CATEGORICAL___nom_9___f3753bf18", "15631": "15___CATEGORICAL___nom_9___f3759747c", "15632": "15___CATEGORICAL___nom_9___f37752276", "15633": "15___CATEGORICAL___nom_9___f37815d1f", "15634": "15___CATEGORICAL___nom_9___f37e85a60", "15635": "15___CATEGORICAL___nom_9___f38837f5e", "15636": "15___CATEGORICAL___nom_9___f39223cf1", "15637": "15___CATEGORICAL___nom_9___f392ed837", "15638": "15___CATEGORICAL___nom_9___f39515db8", "15639": "15___CATEGORICAL___nom_9___f3984d6e5", "15640": "15___CATEGORICAL___nom_9___f3a1b0296", "15641": "15___CATEGORICAL___nom_9___f3a6f013b", "15642": "15___CATEGORICAL___nom_9___f3aab4943", "15643": "15___CATEGORICAL___nom_9___f3b398223", "15644": "15___CATEGORICAL___nom_9___f3b79a78c", "15645": "15___CATEGORICAL___nom_9___f3b8e1c08", "15646": "15___CATEGORICAL___nom_9___f3bf14fae", "15647": "15___CATEGORICAL___nom_9___f3c28aa7f", "15648": "15___CATEGORICAL___nom_9___f3c4b30eb", "15649": "15___CATEGORICAL___nom_9___f3cd5e22f", "15650": "15___CATEGORICAL___nom_9___f3d0d2710", "15651": "15___CATEGORICAL___nom_9___f3d43065f", "15652": "15___CATEGORICAL___nom_9___f3d4e7c21", "15653": "15___CATEGORICAL___nom_9___f3d690397", "15654": "15___CATEGORICAL___nom_9___f3e08138d", "15655": "15___CATEGORICAL___nom_9___f3eaba4ad", "15656": "15___CATEGORICAL___nom_9___f3ebfb733", "15657": "15___CATEGORICAL___nom_9___f3eed0bbd", "15658": "15___CATEGORICAL___nom_9___f3f7aabc8", "15659": "15___CATEGORICAL___nom_9___f3fbb2daa", "15660": "15___CATEGORICAL___nom_9___f3fe833d9", "15661": "15___CATEGORICAL___nom_9___f400c5bad", "15662": "15___CATEGORICAL___nom_9___f401a58d5", "15663": "15___CATEGORICAL___nom_9___f40205660", "15664": "15___CATEGORICAL___nom_9___f4096fd3a", "15665": "15___CATEGORICAL___nom_9___f40a46d0b", "15666": "15___CATEGORICAL___nom_9___f40e15a7a", "15667": "15___CATEGORICAL___nom_9___f40eff525", "15668": "15___CATEGORICAL___nom_9___f41854aac", "15669": "15___CATEGORICAL___nom_9___f41865213", "15670": "15___CATEGORICAL___nom_9___f4283614e", "15671": "15___CATEGORICAL___nom_9___f42aca87e", "15672": "15___CATEGORICAL___nom_9___f4315737e", "15673": "15___CATEGORICAL___nom_9___f43396604", "15674": "15___CATEGORICAL___nom_9___f43b5400a", "15675": "15___CATEGORICAL___nom_9___f43b6639b", "15676": "15___CATEGORICAL___nom_9___f43f73011", "15677": "15___CATEGORICAL___nom_9___f440377fd", "15678": "15___CATEGORICAL___nom_9___f447b30d3", "15679": "15___CATEGORICAL___nom_9___f45a95ca3", "15680": "15___CATEGORICAL___nom_9___f45cce889", "15681": "15___CATEGORICAL___nom_9___f464fbc4b", "15682": "15___CATEGORICAL___nom_9___f46977be6", "15683": "15___CATEGORICAL___nom_9___f4705bf3c", "15684": "15___CATEGORICAL___nom_9___f471e3a2a", "15685": "15___CATEGORICAL___nom_9___f47ec05db", "15686": "15___CATEGORICAL___nom_9___f47f0cff5", "15687": "15___CATEGORICAL___nom_9___f483b235d", "15688": "15___CATEGORICAL___nom_9___f4855c2d0", "15689": "15___CATEGORICAL___nom_9___f48bdbfbe", "15690": "15___CATEGORICAL___nom_9___f48d63698", "15691": "15___CATEGORICAL___nom_9___f4945d903", "15692": "15___CATEGORICAL___nom_9___f4946f46b", "15693": "15___CATEGORICAL___nom_9___f4987acee", "15694": "15___CATEGORICAL___nom_9___f49e8f321", "15695": "15___CATEGORICAL___nom_9___f4a30febc", "15696": "15___CATEGORICAL___nom_9___f4ab9e92d", "15697": "15___CATEGORICAL___nom_9___f4b1a540b", "15698": "15___CATEGORICAL___nom_9___f4b74af77", "15699": "15___CATEGORICAL___nom_9___f4c012c00", "15700": "15___CATEGORICAL___nom_9___f4d58e660", "15701": "15___CATEGORICAL___nom_9___f4dec448d", "15702": "15___CATEGORICAL___nom_9___f4e009a5e", "15703": "15___CATEGORICAL___nom_9___f4e1f7fef", "15704": "15___CATEGORICAL___nom_9___f4e22a80e", "15705": "15___CATEGORICAL___nom_9___f4e8c8239", "15706": "15___CATEGORICAL___nom_9___f4eb50171", "15707": "15___CATEGORICAL___nom_9___f4f10c959", "15708": "15___CATEGORICAL___nom_9___f4f7beabe", "15709": "15___CATEGORICAL___nom_9___f50f45402", "15710": "15___CATEGORICAL___nom_9___f517a1f9a", "15711": "15___CATEGORICAL___nom_9___f519f7ec5", "15712": "15___CATEGORICAL___nom_9___f524c2b11", "15713": "15___CATEGORICAL___nom_9___f524e2a5a", "15714": "15___CATEGORICAL___nom_9___f525713fb", "15715": "15___CATEGORICAL___nom_9___f528933e6", "15716": "15___CATEGORICAL___nom_9___f52e9bddb", "15717": "15___CATEGORICAL___nom_9___f5362732f", "15718": "15___CATEGORICAL___nom_9___f540d9987", "15719": "15___CATEGORICAL___nom_9___f5424984a", "15720": "15___CATEGORICAL___nom_9___f556c9f7f", "15721": "15___CATEGORICAL___nom_9___f55b2b36a", "15722": "15___CATEGORICAL___nom_9___f56acee02", "15723": "15___CATEGORICAL___nom_9___f56cd369d", "15724": "15___CATEGORICAL___nom_9___f577a855d", "15725": "15___CATEGORICAL___nom_9___f581a622c", "15726": "15___CATEGORICAL___nom_9___f58cae0f5", "15727": "15___CATEGORICAL___nom_9___f58e10946", "15728": "15___CATEGORICAL___nom_9___f597cac9a", "15729": "15___CATEGORICAL___nom_9___f59ca9c98", "15730": "15___CATEGORICAL___nom_9___f59dae4fe", "15731": "15___CATEGORICAL___nom_9___f59f46dbd", "15732": "15___CATEGORICAL___nom_9___f5a54a10e", "15733": "15___CATEGORICAL___nom_9___f5a93161a", "15734": "15___CATEGORICAL___nom_9___f5aa060db", "15735": "15___CATEGORICAL___nom_9___f5ab485a8", "15736": "15___CATEGORICAL___nom_9___f5ae5f9fe", "15737": "15___CATEGORICAL___nom_9___f5b1308b3", "15738": "15___CATEGORICAL___nom_9___f5baafba7", "15739": "15___CATEGORICAL___nom_9___f5bbd24af", "15740": "15___CATEGORICAL___nom_9___f5bc8664b", "15741": "15___CATEGORICAL___nom_9___f5bd7d4e7", "15742": "15___CATEGORICAL___nom_9___f5c92ae3a", "15743": "15___CATEGORICAL___nom_9___f5cb4e907", "15744": "15___CATEGORICAL___nom_9___f5cb50633", "15745": "15___CATEGORICAL___nom_9___f5cb73b1c", "15746": "15___CATEGORICAL___nom_9___f5cdc03d0", "15747": "15___CATEGORICAL___nom_9___f5d05b9f3", "15748": "15___CATEGORICAL___nom_9___f5d2ac0f2", "15749": "15___CATEGORICAL___nom_9___f5d70c294", "15750": "15___CATEGORICAL___nom_9___f5d8c110b", "15751": "15___CATEGORICAL___nom_9___f5dc0aec1", "15752": "15___CATEGORICAL___nom_9___f5e0c0d01", "15753": "15___CATEGORICAL___nom_9___f5e0c54d9", "15754": "15___CATEGORICAL___nom_9___f5e9c73cd", "15755": "15___CATEGORICAL___nom_9___f5f551bd1", "15756": "15___CATEGORICAL___nom_9___f5fe2e0cc", "15757": "15___CATEGORICAL___nom_9___f60864b01", "15758": "15___CATEGORICAL___nom_9___f60fa7b28", "15759": "15___CATEGORICAL___nom_9___f6110771e", "15760": "15___CATEGORICAL___nom_9___f6173a051", "15761": "15___CATEGORICAL___nom_9___f619f2f38", "15762": "15___CATEGORICAL___nom_9___f61c99554", "15763": "15___CATEGORICAL___nom_9___f61e5fe5a", "15764": "15___CATEGORICAL___nom_9___f61fe5e51", "15765": "15___CATEGORICAL___nom_9___f6300400c", "15766": "15___CATEGORICAL___nom_9___f63dc0f3d", "15767": "15___CATEGORICAL___nom_9___f6417cb46", "15768": "15___CATEGORICAL___nom_9___f64239f7d", "15769": "15___CATEGORICAL___nom_9___f644e8d1b", "15770": "15___CATEGORICAL___nom_9___f646ce597", "15771": "15___CATEGORICAL___nom_9___f64cf06e5", "15772": "15___CATEGORICAL___nom_9___f64d4c04e", "15773": "15___CATEGORICAL___nom_9___f65176013", "15774": "15___CATEGORICAL___nom_9___f652d7967", "15775": "15___CATEGORICAL___nom_9___f65396dbe", "15776": "15___CATEGORICAL___nom_9___f653dd914", "15777": "15___CATEGORICAL___nom_9___f65a92518", "15778": "15___CATEGORICAL___nom_9___f65fb6a89", "15779": "15___CATEGORICAL___nom_9___f66ad2043", "15780": "15___CATEGORICAL___nom_9___f66cad627", "15781": "15___CATEGORICAL___nom_9___f675c0cd9", "15782": "15___CATEGORICAL___nom_9___f675edf15", "15783": "15___CATEGORICAL___nom_9___f679e3d11", "15784": "15___CATEGORICAL___nom_9___f68277a8b", "15785": "15___CATEGORICAL___nom_9___f6919e06e", "15786": "15___CATEGORICAL___nom_9___f696e7b76", "15787": "15___CATEGORICAL___nom_9___f6a17e527", "15788": "15___CATEGORICAL___nom_9___f6a53222b", "15789": "15___CATEGORICAL___nom_9___f6aa01c1a", "15790": "15___CATEGORICAL___nom_9___f6adce90a", "15791": "15___CATEGORICAL___nom_9___f6b1b0732", "15792": "15___CATEGORICAL___nom_9___f6b6f495e", "15793": "15___CATEGORICAL___nom_9___f6b9a8bd7", "15794": "15___CATEGORICAL___nom_9___f6bdc473a", "15795": "15___CATEGORICAL___nom_9___f6c29aea5", "15796": "15___CATEGORICAL___nom_9___f6c737e95", "15797": "15___CATEGORICAL___nom_9___f6c7a623d", "15798": "15___CATEGORICAL___nom_9___f6c8b58dc", "15799": "15___CATEGORICAL___nom_9___f6c9aff53", "15800": "15___CATEGORICAL___nom_9___f6ce11d10", "15801": "15___CATEGORICAL___nom_9___f6d1c8d66", "15802": "15___CATEGORICAL___nom_9___f6d1ce364", "15803": "15___CATEGORICAL___nom_9___f6d49b652", "15804": "15___CATEGORICAL___nom_9___f6e012a9a", "15805": "15___CATEGORICAL___nom_9___f70d99c6e", "15806": "15___CATEGORICAL___nom_9___f71057b0e", "15807": "15___CATEGORICAL___nom_9___f71c37b42", "15808": "15___CATEGORICAL___nom_9___f71dba8ad", "15809": "15___CATEGORICAL___nom_9___f7215e4d9", "15810": "15___CATEGORICAL___nom_9___f72391233", "15811": "15___CATEGORICAL___nom_9___f735259c9", "15812": "15___CATEGORICAL___nom_9___f735e85ab", "15813": "15___CATEGORICAL___nom_9___f73a4ff62", "15814": "15___CATEGORICAL___nom_9___f73acd9cb", "15815": "15___CATEGORICAL___nom_9___f73bcd6c6", "15816": "15___CATEGORICAL___nom_9___f73e82ed7", "15817": "15___CATEGORICAL___nom_9___f7433b9b8", "15818": "15___CATEGORICAL___nom_9___f7457bbe5", "15819": "15___CATEGORICAL___nom_9___f74b56199", "15820": "15___CATEGORICAL___nom_9___f75ae8bbe", "15821": "15___CATEGORICAL___nom_9___f767bcaef", "15822": "15___CATEGORICAL___nom_9___f77431c6f", "15823": "15___CATEGORICAL___nom_9___f7845e7a4", "15824": "15___CATEGORICAL___nom_9___f78814ef1", "15825": "15___CATEGORICAL___nom_9___f78cdbe0d", "15826": "15___CATEGORICAL___nom_9___f78df1a94", "15827": "15___CATEGORICAL___nom_9___f78ebd08a", "15828": "15___CATEGORICAL___nom_9___f7958dbd2", "15829": "15___CATEGORICAL___nom_9___f795f88ce", "15830": "15___CATEGORICAL___nom_9___f7995d12f", "15831": "15___CATEGORICAL___nom_9___f7999a345", "15832": "15___CATEGORICAL___nom_9___f79a895ac", "15833": "15___CATEGORICAL___nom_9___f7a57ea29", "15834": "15___CATEGORICAL___nom_9___f7a71fb32", "15835": "15___CATEGORICAL___nom_9___f7ad24c53", "15836": "15___CATEGORICAL___nom_9___f7ae1386b", "15837": "15___CATEGORICAL___nom_9___f7af47d01", "15838": "15___CATEGORICAL___nom_9___f7c7943df", "15839": "15___CATEGORICAL___nom_9___f7ca1cff3", "15840": "15___CATEGORICAL___nom_9___f7ccd55c9", "15841": "15___CATEGORICAL___nom_9___f7d1d010d", "15842": "15___CATEGORICAL___nom_9___f7d724ad0", "15843": "15___CATEGORICAL___nom_9___f7d761c1f", "15844": "15___CATEGORICAL___nom_9___f7dac0dbc", "15845": "15___CATEGORICAL___nom_9___f7ee67d9e", "15846": "15___CATEGORICAL___nom_9___f7f52b2bb", "15847": "15___CATEGORICAL___nom_9___f800d24fc", "15848": "15___CATEGORICAL___nom_9___f8022bb5d", "15849": "15___CATEGORICAL___nom_9___f80865d14", "15850": "15___CATEGORICAL___nom_9___f80ae505c", "15851": "15___CATEGORICAL___nom_9___f812a4075", "15852": "15___CATEGORICAL___nom_9___f822a81a0", "15853": "15___CATEGORICAL___nom_9___f8255edf8", "15854": "15___CATEGORICAL___nom_9___f82a92e8f", "15855": "15___CATEGORICAL___nom_9___f82ccd6aa", "15856": "15___CATEGORICAL___nom_9___f82dd1776", "15857": "15___CATEGORICAL___nom_9___f838af6b9", "15858": "15___CATEGORICAL___nom_9___f83c56c21", "15859": "15___CATEGORICAL___nom_9___f83ff9493", "15860": "15___CATEGORICAL___nom_9___f8461da7a", "15861": "15___CATEGORICAL___nom_9___f84849788", "15862": "15___CATEGORICAL___nom_9___f859d4eba", "15863": "15___CATEGORICAL___nom_9___f85cf0986", "15864": "15___CATEGORICAL___nom_9___f860b8f1e", "15865": "15___CATEGORICAL___nom_9___f86850721", "15866": "15___CATEGORICAL___nom_9___f86a685d5", "15867": "15___CATEGORICAL___nom_9___f875b5ada", "15868": "15___CATEGORICAL___nom_9___f87aa90ac", "15869": "15___CATEGORICAL___nom_9___f87d1551a", "15870": "15___CATEGORICAL___nom_9___f88007f6e", "15871": "15___CATEGORICAL___nom_9___f882f0768", "15872": "15___CATEGORICAL___nom_9___f8833b27d", "15873": "15___CATEGORICAL___nom_9___f8841e9e0", "15874": "15___CATEGORICAL___nom_9___f88695eff", "15875": "15___CATEGORICAL___nom_9___f895d1e02", "15876": "15___CATEGORICAL___nom_9___f89a89a9f", "15877": "15___CATEGORICAL___nom_9___f89afe6f6", "15878": "15___CATEGORICAL___nom_9___f89c2cc79", "15879": "15___CATEGORICAL___nom_9___f89fab41b", "15880": "15___CATEGORICAL___nom_9___f8a05bdb2", "15881": "15___CATEGORICAL___nom_9___f8a20f00b", "15882": "15___CATEGORICAL___nom_9___f8a83a2e2", "15883": "15___CATEGORICAL___nom_9___f8b717067", "15884": "15___CATEGORICAL___nom_9___f8b81c6b4", "15885": "15___CATEGORICAL___nom_9___f8b98aa95", "15886": "15___CATEGORICAL___nom_9___f8b9db12e", "15887": "15___CATEGORICAL___nom_9___f8ce73bd4", "15888": "15___CATEGORICAL___nom_9___f8cf7185f", "15889": "15___CATEGORICAL___nom_9___f8e2db182", "15890": "15___CATEGORICAL___nom_9___f8e34187d", "15891": "15___CATEGORICAL___nom_9___f8e5bb04b", "15892": "15___CATEGORICAL___nom_9___f8e5ecdc5", "15893": "15___CATEGORICAL___nom_9___f8e8be2ef", "15894": "15___CATEGORICAL___nom_9___f8e8cc6d7", "15895": "15___CATEGORICAL___nom_9___f8ea9cf0e", "15896": "15___CATEGORICAL___nom_9___f8ee2ad09", "15897": "15___CATEGORICAL___nom_9___f904fc300", "15898": "15___CATEGORICAL___nom_9___f909d3e6a", "15899": "15___CATEGORICAL___nom_9___f90ea0d78", "15900": "15___CATEGORICAL___nom_9___f910f1301", "15901": "15___CATEGORICAL___nom_9___f918bd8e6", "15902": "15___CATEGORICAL___nom_9___f91b6637b", "15903": "15___CATEGORICAL___nom_9___f92b6946a", "15904": "15___CATEGORICAL___nom_9___f92b9211e", "15905": "15___CATEGORICAL___nom_9___f9365df27", "15906": "15___CATEGORICAL___nom_9___f93af0724", "15907": "15___CATEGORICAL___nom_9___f93f7cb6a", "15908": "15___CATEGORICAL___nom_9___f94107ded", "15909": "15___CATEGORICAL___nom_9___f95293f5c", "15910": "15___CATEGORICAL___nom_9___f95a4bf09", "15911": "15___CATEGORICAL___nom_9___f95ec8f50", "15912": "15___CATEGORICAL___nom_9___f95f49f8f", "15913": "15___CATEGORICAL___nom_9___f96a63a74", "15914": "15___CATEGORICAL___nom_9___f97b4890d", "15915": "15___CATEGORICAL___nom_9___f97e90fc9", "15916": "15___CATEGORICAL___nom_9___f994ccb83", "15917": "15___CATEGORICAL___nom_9___f99750a63", "15918": "15___CATEGORICAL___nom_9___f99e22563", "15919": "15___CATEGORICAL___nom_9___f9aa18b02", "15920": "15___CATEGORICAL___nom_9___f9ace7fa9", "15921": "15___CATEGORICAL___nom_9___f9b209aa3", "15922": "15___CATEGORICAL___nom_9___f9b263057", "15923": "15___CATEGORICAL___nom_9___f9b5ec495", "15924": "15___CATEGORICAL___nom_9___f9b8f4101", "15925": "15___CATEGORICAL___nom_9___f9bf01d21", "15926": "15___CATEGORICAL___nom_9___f9c9ec3ba", "15927": "15___CATEGORICAL___nom_9___f9ca57eb0", "15928": "15___CATEGORICAL___nom_9___f9cc5fa0d", "15929": "15___CATEGORICAL___nom_9___f9d25658e", "15930": "15___CATEGORICAL___nom_9___f9d56ab07", "15931": "15___CATEGORICAL___nom_9___f9d956b54", "15932": "15___CATEGORICAL___nom_9___f9eacfe4a", "15933": "15___CATEGORICAL___nom_9___f9ec13f93", "15934": "15___CATEGORICAL___nom_9___f9ec6c5d3", "15935": "15___CATEGORICAL___nom_9___f9ecfd6a4", "15936": "15___CATEGORICAL___nom_9___f9f8865ee", "15937": "15___CATEGORICAL___nom_9___fa00b37b2", "15938": "15___CATEGORICAL___nom_9___fa05bcff7", "15939": "15___CATEGORICAL___nom_9___fa13d91da", "15940": "15___CATEGORICAL___nom_9___fa14e4589", "15941": "15___CATEGORICAL___nom_9___fa168e2ba", "15942": "15___CATEGORICAL___nom_9___fa1cb417d", "15943": "15___CATEGORICAL___nom_9___fa25d82cc", "15944": "15___CATEGORICAL___nom_9___fa27425c6", "15945": "15___CATEGORICAL___nom_9___fa32680ca", "15946": "15___CATEGORICAL___nom_9___fa3287349", "15947": "15___CATEGORICAL___nom_9___fa4159369", "15948": "15___CATEGORICAL___nom_9___fa4bca9bc", "15949": "15___CATEGORICAL___nom_9___fa4f0b47d", "15950": "15___CATEGORICAL___nom_9___fa5430220", "15951": "15___CATEGORICAL___nom_9___fa6157c64", "15952": "15___CATEGORICAL___nom_9___fa69bd007", "15953": "15___CATEGORICAL___nom_9___fa7720d6e", "15954": "15___CATEGORICAL___nom_9___fa78dd553", "15955": "15___CATEGORICAL___nom_9___fa8d0e5be", "15956": "15___CATEGORICAL___nom_9___fa8d22195", "15957": "15___CATEGORICAL___nom_9___fa8ec4170", "15958": "15___CATEGORICAL___nom_9___faa9f347f", "15959": "15___CATEGORICAL___nom_9___fab080ba5", "15960": "15___CATEGORICAL___nom_9___fab3693cf", "15961": "15___CATEGORICAL___nom_9___fab377af6", "15962": "15___CATEGORICAL___nom_9___fac198f52", "15963": "15___CATEGORICAL___nom_9___facb02537", "15964": "15___CATEGORICAL___nom_9___fada6f0b6", "15965": "15___CATEGORICAL___nom_9___fadd9c48f", "15966": "15___CATEGORICAL___nom_9___fae47fd97", "15967": "15___CATEGORICAL___nom_9___fae52d8b2", "15968": "15___CATEGORICAL___nom_9___fae80ddec", "15969": "15___CATEGORICAL___nom_9___faeb7b55e", "15970": "15___CATEGORICAL___nom_9___faf5a4408", "15971": "15___CATEGORICAL___nom_9___faf8cadb3", "15972": "15___CATEGORICAL___nom_9___fafa80752", "15973": "15___CATEGORICAL___nom_9___fafe649df", "15974": "15___CATEGORICAL___nom_9___fb005bfdd", "15975": "15___CATEGORICAL___nom_9___fb07fc135", "15976": "15___CATEGORICAL___nom_9___fb0bd407c", "15977": "15___CATEGORICAL___nom_9___fb101096a", "15978": "15___CATEGORICAL___nom_9___fb10421f9", "15979": "15___CATEGORICAL___nom_9___fb11c7034", "15980": "15___CATEGORICAL___nom_9___fb25bdcfd", "15981": "15___CATEGORICAL___nom_9___fb34986bb", "15982": "15___CATEGORICAL___nom_9___fb352896f", "15983": "15___CATEGORICAL___nom_9___fb39429d9", "15984": "15___CATEGORICAL___nom_9___fb3e75486", "15985": "15___CATEGORICAL___nom_9___fb4090a39", "15986": "15___CATEGORICAL___nom_9___fb44b6b33", "15987": "15___CATEGORICAL___nom_9___fb46f1e6d", "15988": "15___CATEGORICAL___nom_9___fb473ef89", "15989": "15___CATEGORICAL___nom_9___fb4aea77c", "15990": "15___CATEGORICAL___nom_9___fb5ae822b", "15991": "15___CATEGORICAL___nom_9___fb647d69f", "15992": "15___CATEGORICAL___nom_9___fb64e3cfe", "15993": "15___CATEGORICAL___nom_9___fb6cee6fe", "15994": "15___CATEGORICAL___nom_9___fb7820bad", "15995": "15___CATEGORICAL___nom_9___fb79a6b3a", "15996": "15___CATEGORICAL___nom_9___fb7cac4c1", "15997": "15___CATEGORICAL___nom_9___fb89119e6", "15998": "15___CATEGORICAL___nom_9___fb939db7a", "15999": "15___CATEGORICAL___nom_9___fb941f11f", "16000": "15___CATEGORICAL___nom_9___fb95d34ec", "16001": "15___CATEGORICAL___nom_9___fb99fa2eb", "16002": "15___CATEGORICAL___nom_9___fb9ad27f9", "16003": "15___CATEGORICAL___nom_9___fba4a5b97", "16004": "15___CATEGORICAL___nom_9___fbaa9b5a5", "16005": "15___CATEGORICAL___nom_9___fbaae9e1f", "16006": "15___CATEGORICAL___nom_9___fbacfc0e2", "16007": "15___CATEGORICAL___nom_9___fbae54765", "16008": "15___CATEGORICAL___nom_9___fbaf92586", "16009": "15___CATEGORICAL___nom_9___fbc9a2178", "16010": "15___CATEGORICAL___nom_9___fbdaa1666", "16011": "15___CATEGORICAL___nom_9___fbdd260e0", "16012": "15___CATEGORICAL___nom_9___fbe68ae42", "16013": "15___CATEGORICAL___nom_9___fbee0326f", "16014": "15___CATEGORICAL___nom_9___fbeee2164", "16015": "15___CATEGORICAL___nom_9___fbeff1d29", "16016": "15___CATEGORICAL___nom_9___fbf27309d", "16017": "15___CATEGORICAL___nom_9___fbfa5e40c", "16018": "15___CATEGORICAL___nom_9___fbfb40f44", "16019": "15___CATEGORICAL___nom_9___fc02bbf6f", "16020": "15___CATEGORICAL___nom_9___fc034a97a", "16021": "15___CATEGORICAL___nom_9___fc0596a1b", "16022": "15___CATEGORICAL___nom_9___fc0d42d7f", "16023": "15___CATEGORICAL___nom_9___fc17424af", "16024": "15___CATEGORICAL___nom_9___fc2976024", "16025": "15___CATEGORICAL___nom_9___fc31a4204", "16026": "15___CATEGORICAL___nom_9___fc329fe77", "16027": "15___CATEGORICAL___nom_9___fc38581a6", "16028": "15___CATEGORICAL___nom_9___fc3aaa402", "16029": "15___CATEGORICAL___nom_9___fc3f0d2d1", "16030": "15___CATEGORICAL___nom_9___fc4175529", "16031": "15___CATEGORICAL___nom_9___fc464d704", "16032": "15___CATEGORICAL___nom_9___fc46e9ee5", "16033": "15___CATEGORICAL___nom_9___fc48d7b84", "16034": "15___CATEGORICAL___nom_9___fc4a43fda", "16035": "15___CATEGORICAL___nom_9___fc4a7ded3", "16036": "15___CATEGORICAL___nom_9___fc53995e0", "16037": "15___CATEGORICAL___nom_9___fc5c642c3", "16038": "15___CATEGORICAL___nom_9___fc5faa04a", "16039": "15___CATEGORICAL___nom_9___fc62aeec5", "16040": "15___CATEGORICAL___nom_9___fc6fe23b6", "16041": "15___CATEGORICAL___nom_9___fc736244d", "16042": "15___CATEGORICAL___nom_9___fc7590d0b", "16043": "15___CATEGORICAL___nom_9___fc7b31928", "16044": "15___CATEGORICAL___nom_9___fc8044ef1", "16045": "15___CATEGORICAL___nom_9___fc81c62ea", "16046": "15___CATEGORICAL___nom_9___fc887d99c", "16047": "15___CATEGORICAL___nom_9___fc9058a05", "16048": "15___CATEGORICAL___nom_9___fc9482738", "16049": "15___CATEGORICAL___nom_9___fc968cc94", "16050": "15___CATEGORICAL___nom_9___fc978f9f2", "16051": "15___CATEGORICAL___nom_9___fca1a58db", "16052": "15___CATEGORICAL___nom_9___fca251021", "16053": "15___CATEGORICAL___nom_9___fca65e431", "16054": "15___CATEGORICAL___nom_9___fca8b2e1e", "16055": "15___CATEGORICAL___nom_9___fcaa986ba", "16056": "15___CATEGORICAL___nom_9___fcb1ae1bf", "16057": "15___CATEGORICAL___nom_9___fcb52c6fa", "16058": "15___CATEGORICAL___nom_9___fcbaba19f", "16059": "15___CATEGORICAL___nom_9___fcc37aed9", "16060": "15___CATEGORICAL___nom_9___fccaa9c21", "16061": "15___CATEGORICAL___nom_9___fccbdbfd9", "16062": "15___CATEGORICAL___nom_9___fcd26fc97", "16063": "15___CATEGORICAL___nom_9___fcd3c5344", "16064": "15___CATEGORICAL___nom_9___fcdd14d72", "16065": "15___CATEGORICAL___nom_9___fce29c4a6", "16066": "15___CATEGORICAL___nom_9___fce48d952", "16067": "15___CATEGORICAL___nom_9___fce79242a", "16068": "15___CATEGORICAL___nom_9___fcf899e6b", "16069": "15___CATEGORICAL___nom_9___fcfc7da6c", "16070": "15___CATEGORICAL___nom_9___fcff7a7a5", "16071": "15___CATEGORICAL___nom_9___fd07b45f1", "16072": "15___CATEGORICAL___nom_9___fd0871f51", "16073": "15___CATEGORICAL___nom_9___fd0d0678e", "16074": "15___CATEGORICAL___nom_9___fd0f97917", "16075": "15___CATEGORICAL___nom_9___fd1280e61", "16076": "15___CATEGORICAL___nom_9___fd12e4f13", "16077": "15___CATEGORICAL___nom_9___fd1422942", "16078": "15___CATEGORICAL___nom_9___fd14c6e8a", "16079": "15___CATEGORICAL___nom_9___fd1bca231", "16080": "15___CATEGORICAL___nom_9___fd208e5c1", "16081": "15___CATEGORICAL___nom_9___fd22babc1", "16082": "15___CATEGORICAL___nom_9___fd27cf5f9", "16083": "15___CATEGORICAL___nom_9___fd2a83042", "16084": "15___CATEGORICAL___nom_9___fd2ceb2c3", "16085": "15___CATEGORICAL___nom_9___fd2f81ab8", "16086": "15___CATEGORICAL___nom_9___fd3165bab", "16087": "15___CATEGORICAL___nom_9___fd323d34a", "16088": "15___CATEGORICAL___nom_9___fd402e0f6", "16089": "15___CATEGORICAL___nom_9___fd41d2f1a", "16090": "15___CATEGORICAL___nom_9___fd51b2ce6", "16091": "15___CATEGORICAL___nom_9___fd51d65bf", "16092": "15___CATEGORICAL___nom_9___fd5c8ec80", "16093": "15___CATEGORICAL___nom_9___fd6343bd2", "16094": "15___CATEGORICAL___nom_9___fd6c35039", "16095": "15___CATEGORICAL___nom_9___fd7d3d6bb", "16096": "15___CATEGORICAL___nom_9___fd8d1065f", "16097": "15___CATEGORICAL___nom_9___fd9ec2dc5", "16098": "15___CATEGORICAL___nom_9___fda196cf1", "16099": "15___CATEGORICAL___nom_9___fda25e6c6", "16100": "15___CATEGORICAL___nom_9___fda315644", "16101": "15___CATEGORICAL___nom_9___fdb238e71", "16102": "15___CATEGORICAL___nom_9___fdc1365f7", "16103": "15___CATEGORICAL___nom_9___fdc6fc05d", "16104": "15___CATEGORICAL___nom_9___fdd6954b2", "16105": "15___CATEGORICAL___nom_9___fde7cebb9", "16106": "15___CATEGORICAL___nom_9___fdfbd76cf", "16107": "15___CATEGORICAL___nom_9___fdfe39d4c", "16108": "15___CATEGORICAL___nom_9___fe08d5fa8", "16109": "15___CATEGORICAL___nom_9___fe124170f", "16110": "15___CATEGORICAL___nom_9___fe129a48f", "16111": "15___CATEGORICAL___nom_9___fe19b0673", "16112": "15___CATEGORICAL___nom_9___fe1a20bb5", "16113": "15___CATEGORICAL___nom_9___fe208e10e", "16114": "15___CATEGORICAL___nom_9___fe266eaa4", "16115": "15___CATEGORICAL___nom_9___fe2ddfb91", "16116": "15___CATEGORICAL___nom_9___fe320c885", "16117": "15___CATEGORICAL___nom_9___fe323e8b5", "16118": "15___CATEGORICAL___nom_9___fe331b3c3", "16119": "15___CATEGORICAL___nom_9___fe3db5700", "16120": "15___CATEGORICAL___nom_9___fe41d8e10", "16121": "15___CATEGORICAL___nom_9___fe41e1417", "16122": "15___CATEGORICAL___nom_9___fe4b07b79", "16123": "15___CATEGORICAL___nom_9___fe503418a", "16124": "15___CATEGORICAL___nom_9___fe5220394", "16125": "15___CATEGORICAL___nom_9___fe556fd50", "16126": "15___CATEGORICAL___nom_9___fe59d0e92", "16127": "15___CATEGORICAL___nom_9___fe5b354ad", "16128": "15___CATEGORICAL___nom_9___fe5c638a1", "16129": "15___CATEGORICAL___nom_9___fe6a4efaf", "16130": "15___CATEGORICAL___nom_9___fe6a554af", "16131": "15___CATEGORICAL___nom_9___fe6b19b03", "16132": "15___CATEGORICAL___nom_9___fe6f73aaa", "16133": "15___CATEGORICAL___nom_9___fe72db5f9", "16134": "15___CATEGORICAL___nom_9___fe7aa1794", "16135": "15___CATEGORICAL___nom_9___fe7cde623", "16136": "15___CATEGORICAL___nom_9___fe7e32fbb", "16137": "15___CATEGORICAL___nom_9___fe8203c93", "16138": "15___CATEGORICAL___nom_9___fe8b0d4d8", "16139": "15___CATEGORICAL___nom_9___fe8b6c7cf", "16140": "15___CATEGORICAL___nom_9___fe8df9e7e", "16141": "15___CATEGORICAL___nom_9___fe9e2eb9c", "16142": "15___CATEGORICAL___nom_9___fea0d1a42", "16143": "15___CATEGORICAL___nom_9___feb4e00af", "16144": "15___CATEGORICAL___nom_9___feb52b7c5", "16145": "15___CATEGORICAL___nom_9___feb72ecc2", "16146": "15___CATEGORICAL___nom_9___fec37312c", "16147": "15___CATEGORICAL___nom_9___fec46d317", "16148": "15___CATEGORICAL___nom_9___fec587b08", "16149": "15___CATEGORICAL___nom_9___fed29d244", "16150": "15___CATEGORICAL___nom_9___fed4005c2", "16151": "15___CATEGORICAL___nom_9___fee289084", "16152": "15___CATEGORICAL___nom_9___fee5e1c29", "16153": "15___CATEGORICAL___nom_9___fee97cc59", "16154": "15___CATEGORICAL___nom_9___feeb8f72e", "16155": "15___CATEGORICAL___nom_9___fef010d47", "16156": "15___CATEGORICAL___nom_9___fef66b7fd", "16157": "15___CATEGORICAL___nom_9___fef70c08b", "16158": "15___CATEGORICAL___nom_9___fef9697da", "16159": "15___CATEGORICAL___nom_9___fefabaf8b", "16160": "15___CATEGORICAL___nom_9___fefe9378b", "16161": "15___CATEGORICAL___nom_9___ff050f19d", "16162": "15___CATEGORICAL___nom_9___ff0ac7839", "16163": "15___CATEGORICAL___nom_9___ff0acdc51", "16164": "15___CATEGORICAL___nom_9___ff0be0f4a", "16165": "15___CATEGORICAL___nom_9___ff0deb8c5", "16166": "15___CATEGORICAL___nom_9___ff1275360", "16167": "15___CATEGORICAL___nom_9___ff1cea430", "16168": "15___CATEGORICAL___nom_9___ff1ffdb6c", "16169": "15___CATEGORICAL___nom_9___ff26ddc5f", "16170": "15___CATEGORICAL___nom_9___ff2c54c2b", "16171": "15___CATEGORICAL___nom_9___ff37346ce", "16172": "15___CATEGORICAL___nom_9___ff3ff6768", "16173": "15___CATEGORICAL___nom_9___ff4039502", "16174": "15___CATEGORICAL___nom_9___ff43e5d26", "16175": "15___CATEGORICAL___nom_9___ff4922d4e", "16176": "15___CATEGORICAL___nom_9___ff4c9a31f", "16177": "15___CATEGORICAL___nom_9___ff4ccc205", "16178": "15___CATEGORICAL___nom_9___ff4e4f5b5", "16179": "15___CATEGORICAL___nom_9___ff534b1a4", "16180": "15___CATEGORICAL___nom_9___ff55fea3b", "16181": "15___CATEGORICAL___nom_9___ff56952ea", "16182": "15___CATEGORICAL___nom_9___ff5bf79d4", "16183": "15___CATEGORICAL___nom_9___ff61809a0", "16184": "15___CATEGORICAL___nom_9___ff680c901", "16185": "15___CATEGORICAL___nom_9___ff683e4d6", "16186": "15___CATEGORICAL___nom_9___ff7809d76", "16187": "15___CATEGORICAL___nom_9___ff794dacf", "16188": "15___CATEGORICAL___nom_9___ff7b5c805", "16189": "15___CATEGORICAL___nom_9___ff7dd1073", "16190": "15___CATEGORICAL___nom_9___ff9efcf8c", "16191": "15___CATEGORICAL___nom_9___ffac03704", "16192": "15___CATEGORICAL___nom_9___ffae88db8", "16193": "15___CATEGORICAL___nom_9___ffb07126f", "16194": "15___CATEGORICAL___nom_9___ffc086cfa", "16195": "15___CATEGORICAL___nom_9___ffc668c22", "16196": "15___CATEGORICAL___nom_9___ffccfc611", "16197": "15___CATEGORICAL___nom_9___ffd347754", "16198": "15___CATEGORICAL___nom_9___ffd966e07", "16199": "15___CATEGORICAL___nom_9___fff13b60a", "16200": "15___CATEGORICAL___nom_9___fff1ce319", "16201": "15___CATEGORICAL___nom_9___fff4abc0b", "16202": "15___CATEGORICAL___nom_9___fffb01c38", "16203": "15___CATEGORICAL___nom_9___fffd6e64c", "16204": "16___NUMERIC___ord_0_00___1", "16205": "16___NUMERIC___ord_0_00___2", "16206": "16___NUMERIC___ord_0_00___3", "16207": "17___CATEGORICAL___ord_1___Contributor", "16208": "17___CATEGORICAL___ord_1___Expert", "16209": "17___CATEGORICAL___ord_1___Grandmaster", "16210": "17___CATEGORICAL___ord_1___Master", "16211": "17___CATEGORICAL___ord_1___Novice", "16212": "18___CATEGORICAL___ord_2___Boiling Hot", "16213": "18___CATEGORICAL___ord_2___Cold", "16214": "18___CATEGORICAL___ord_2___Freezing", "16215": "18___CATEGORICAL___ord_2___Hot", "16216": "18___CATEGORICAL___ord_2___Lava Hot", "16217": "18___CATEGORICAL___ord_2___Warm", "16218": "19___CATEGORICAL___ord_3___a", "16219": "19___CATEGORICAL___ord_3___b", "16220": "19___CATEGORICAL___ord_3___c", "16221": "19___CATEGORICAL___ord_3___d", "16222": "19___CATEGORICAL___ord_3___e", "16223": "19___CATEGORICAL___ord_3___f", "16224": "19___CATEGORICAL___ord_3___g", "16225": "19___CATEGORICAL___ord_3___h", "16226": "19___CATEGORICAL___ord_3___i", "16227": "19___CATEGORICAL___ord_3___j", "16228": "19___CATEGORICAL___ord_3___k", "16229": "19___CATEGORICAL___ord_3___l", "16230": "19___CATEGORICAL___ord_3___m", "16231": "19___CATEGORICAL___ord_3___n", "16232": "19___CATEGORICAL___ord_3___o", "16233": "20___CATEGORICAL___ord_4___A", "16234": "20___CATEGORICAL___ord_4___B", "16235": "20___CATEGORICAL___ord_4___C", "16236": "20___CATEGORICAL___ord_4___D", "16237": "20___CATEGORICAL___ord_4___E", "16238": "20___CATEGORICAL___ord_4___F", "16239": "20___CATEGORICAL___ord_4___G", "16240": "20___CATEGORICAL___ord_4___H", "16241": "20___CATEGORICAL___ord_4___I", "16242": "20___CATEGORICAL___ord_4___J", "16243": "20___CATEGORICAL___ord_4___K", "16244": "20___CATEGORICAL___ord_4___L", "16245": "20___CATEGORICAL___ord_4___M", "16246": "20___CATEGORICAL___ord_4___N", "16247": "20___CATEGORICAL___ord_4___O", "16248": "20___CATEGORICAL___ord_4___P", "16249": "20___CATEGORICAL___ord_4___Q", "16250": "20___CATEGORICAL___ord_4___R", "16251": "20___CATEGORICAL___ord_4___S", "16252": "20___CATEGORICAL___ord_4___T", "16253": "20___CATEGORICAL___ord_4___U", "16254": "20___CATEGORICAL___ord_4___V", "16255": "20___CATEGORICAL___ord_4___W", "16256": "20___CATEGORICAL___ord_4___X", "16257": "20___CATEGORICAL___ord_4___Y", "16258": "20___CATEGORICAL___ord_4___Z", "16259": "21___CATEGORICAL___ord_5___AP", "16260": "21___CATEGORICAL___ord_5___Ai", "16261": "21___CATEGORICAL___ord_5___Aj", "16262": "21___CATEGORICAL___ord_5___BA", "16263": "21___CATEGORICAL___ord_5___BE", "16264": "21___CATEGORICAL___ord_5___Bb", "16265": "21___CATEGORICAL___ord_5___Bd", "16266": "21___CATEGORICAL___ord_5___Bn", "16267": "21___CATEGORICAL___ord_5___CL", "16268": "21___CATEGORICAL___ord_5___CM", "16269": "21___CATEGORICAL___ord_5___CU", "16270": "21___CATEGORICAL___ord_5___CZ", "16271": "21___CATEGORICAL___ord_5___Cl", "16272": "21___CATEGORICAL___ord_5___DH", "16273": "21___CATEGORICAL___ord_5___DN", "16274": "21___CATEGORICAL___ord_5___Dc", "16275": "21___CATEGORICAL___ord_5___Dx", "16276": "21___CATEGORICAL___ord_5___Ed", "16277": "21___CATEGORICAL___ord_5___Eg", "16278": "21___CATEGORICAL___ord_5___Er", "16279": "21___CATEGORICAL___ord_5___FI", "16280": "21___CATEGORICAL___ord_5___Fd", "16281": "21___CATEGORICAL___ord_5___Fo", "16282": "21___CATEGORICAL___ord_5___GD", "16283": "21___CATEGORICAL___ord_5___GJ", "16284": "21___CATEGORICAL___ord_5___Gb", "16285": "21___CATEGORICAL___ord_5___Gx", "16286": "21___CATEGORICAL___ord_5___Hj", "16287": "21___CATEGORICAL___ord_5___IK", "16288": "21___CATEGORICAL___ord_5___Id", "16289": "21___CATEGORICAL___ord_5___JX", "16290": "21___CATEGORICAL___ord_5___Jc", "16291": "21___CATEGORICAL___ord_5___Jf", "16292": "21___CATEGORICAL___ord_5___Jt", "16293": "21___CATEGORICAL___ord_5___KR", "16294": "21___CATEGORICAL___ord_5___KZ", "16295": "21___CATEGORICAL___ord_5___Kf", "16296": "21___CATEGORICAL___ord_5___Kq", "16297": "21___CATEGORICAL___ord_5___LE", "16298": "21___CATEGORICAL___ord_5___MC", "16299": "21___CATEGORICAL___ord_5___MO", "16300": "21___CATEGORICAL___ord_5___MV", "16301": "21___CATEGORICAL___ord_5___Mf", "16302": "21___CATEGORICAL___ord_5___Ml", "16303": "21___CATEGORICAL___ord_5___Mx", "16304": "21___CATEGORICAL___ord_5___NV", "16305": "21___CATEGORICAL___ord_5___Nf", "16306": "21___CATEGORICAL___ord_5___Nk", "16307": "21___CATEGORICAL___ord_5___OR", "16308": "21___CATEGORICAL___ord_5___Ob", "16309": "21___CATEGORICAL___ord_5___Os", "16310": "21___CATEGORICAL___ord_5___PA", "16311": "21___CATEGORICAL___ord_5___PQ", "16312": "21___CATEGORICAL___ord_5___PZ", "16313": "21___CATEGORICAL___ord_5___Ps", "16314": "21___CATEGORICAL___ord_5___QM", "16315": "21___CATEGORICAL___ord_5___Qb", "16316": "21___CATEGORICAL___ord_5___Qh", "16317": "21___CATEGORICAL___ord_5___Qo", "16318": "21___CATEGORICAL___ord_5___RG", "16319": "21___CATEGORICAL___ord_5___RL", "16320": "21___CATEGORICAL___ord_5___RP", "16321": "21___CATEGORICAL___ord_5___Rm", "16322": "21___CATEGORICAL___ord_5___Ry", "16323": "21___CATEGORICAL___ord_5___SB", "16324": "21___CATEGORICAL___ord_5___Sc", "16325": "21___CATEGORICAL___ord_5___TR", "16326": "21___CATEGORICAL___ord_5___TZ", "16327": "21___CATEGORICAL___ord_5___To", "16328": "21___CATEGORICAL___ord_5___UO", "16329": "21___CATEGORICAL___ord_5___Uk", "16330": "21___CATEGORICAL___ord_5___Uu", "16331": "21___CATEGORICAL___ord_5___Vf", "16332": "21___CATEGORICAL___ord_5___Vx", "16333": "21___CATEGORICAL___ord_5___WE", "16334": "21___CATEGORICAL___ord_5___Wc", "16335": "21___CATEGORICAL___ord_5___Wv", "16336": "21___CATEGORICAL___ord_5___XI", "16337": "21___CATEGORICAL___ord_5___Xh", "16338": "21___CATEGORICAL___ord_5___Xi", "16339": "21___CATEGORICAL___ord_5___YC", "16340": "21___CATEGORICAL___ord_5___Yb", "16341": "21___CATEGORICAL___ord_5___Ye", "16342": "21___CATEGORICAL___ord_5___ZR", "16343": "21___CATEGORICAL___ord_5___ZS", "16344": "21___CATEGORICAL___ord_5___Zc", "16345": "21___CATEGORICAL___ord_5___Zq", "16346": "21___CATEGORICAL___ord_5___aF", "16347": "21___CATEGORICAL___ord_5___aM", "16348": "21___CATEGORICAL___ord_5___aO", "16349": "21___CATEGORICAL___ord_5___aP", "16350": "21___CATEGORICAL___ord_5___ac", "16351": "21___CATEGORICAL___ord_5___av", "16352": "21___CATEGORICAL___ord_5___bF", "16353": "21___CATEGORICAL___ord_5___bJ", "16354": "21___CATEGORICAL___ord_5___be", "16355": "21___CATEGORICAL___ord_5___cA", "16356": "21___CATEGORICAL___ord_5___cG", "16357": "21___CATEGORICAL___ord_5___cW", "16358": "21___CATEGORICAL___ord_5___ck", "16359": "21___CATEGORICAL___ord_5___cp", "16360": "21___CATEGORICAL___ord_5___dB", "16361": "21___CATEGORICAL___ord_5___dE", "16362": "21___CATEGORICAL___ord_5___dN", "16363": "21___CATEGORICAL___ord_5___dO", "16364": "21___CATEGORICAL___ord_5___dP", "16365": "21___CATEGORICAL___ord_5___dQ", "16366": "21___CATEGORICAL___ord_5___dZ", "16367": "21___CATEGORICAL___ord_5___dh", "16368": "21___CATEGORICAL___ord_5___eG", "16369": "21___CATEGORICAL___ord_5___eQ", "16370": "21___CATEGORICAL___ord_5___eb", "16371": "21___CATEGORICAL___ord_5___eg", "16372": "21___CATEGORICAL___ord_5___ek", "16373": "21___CATEGORICAL___ord_5___ex", "16374": "21___CATEGORICAL___ord_5___fO", "16375": "21___CATEGORICAL___ord_5___fh", "16376": "21___CATEGORICAL___ord_5___gJ", "16377": "21___CATEGORICAL___ord_5___gM", "16378": "21___CATEGORICAL___ord_5___hL", "16379": "21___CATEGORICAL___ord_5___hT", "16380": "21___CATEGORICAL___ord_5___hh", "16381": "21___CATEGORICAL___ord_5___hp", "16382": "21___CATEGORICAL___ord_5___iT", "16383": "21___CATEGORICAL___ord_5___ih", "16384": "21___CATEGORICAL___ord_5___jS", "16385": "21___CATEGORICAL___ord_5___jV", "16386": "21___CATEGORICAL___ord_5___je", "16387": "21___CATEGORICAL___ord_5___jp", "16388": "21___CATEGORICAL___ord_5___kC", "16389": "21___CATEGORICAL___ord_5___kE", "16390": "21___CATEGORICAL___ord_5___kK", "16391": "21___CATEGORICAL___ord_5___kL", "16392": "21___CATEGORICAL___ord_5___kU", "16393": "21___CATEGORICAL___ord_5___kW", "16394": "21___CATEGORICAL___ord_5___ke", "16395": "21___CATEGORICAL___ord_5___kr", "16396": "21___CATEGORICAL___ord_5___kw", "16397": "21___CATEGORICAL___ord_5___lF", "16398": "21___CATEGORICAL___ord_5___lL", "16399": "21___CATEGORICAL___ord_5___ll", "16400": "21___CATEGORICAL___ord_5___lx", "16401": "21___CATEGORICAL___ord_5___mb", "16402": "21___CATEGORICAL___ord_5___mc", "16403": "21___CATEGORICAL___ord_5___mm", "16404": "21___CATEGORICAL___ord_5___nX", "16405": "21___CATEGORICAL___ord_5___nh", "16406": "21___CATEGORICAL___ord_5___oC", "16407": "21___CATEGORICAL___ord_5___oG", "16408": "21___CATEGORICAL___ord_5___oH", "16409": "21___CATEGORICAL___ord_5___oK", "16410": "21___CATEGORICAL___ord_5___od", "16411": "21___CATEGORICAL___ord_5___on", "16412": "21___CATEGORICAL___ord_5___pa", "16413": "21___CATEGORICAL___ord_5___ps", "16414": "21___CATEGORICAL___ord_5___qA", "16415": "21___CATEGORICAL___ord_5___qJ", "16416": "21___CATEGORICAL___ord_5___qK", "16417": "21___CATEGORICAL___ord_5___qP", "16418": "21___CATEGORICAL___ord_5___qX", "16419": "21___CATEGORICAL___ord_5___qo", "16420": "21___CATEGORICAL___ord_5___qv", "16421": "21___CATEGORICAL___ord_5___qw", "16422": "21___CATEGORICAL___ord_5___rZ", "16423": "21___CATEGORICAL___ord_5___ri", "16424": "21___CATEGORICAL___ord_5___rp", "16425": "21___CATEGORICAL___ord_5___sD", "16426": "21___CATEGORICAL___ord_5___sV", "16427": "21___CATEGORICAL___ord_5___sY", "16428": "21___CATEGORICAL___ord_5___sn", "16429": "21___CATEGORICAL___ord_5___su", "16430": "21___CATEGORICAL___ord_5___tM", "16431": "21___CATEGORICAL___ord_5___tP", "16432": "21___CATEGORICAL___ord_5___tv", "16433": "21___CATEGORICAL___ord_5___uJ", "16434": "21___CATEGORICAL___ord_5___uS", "16435": "21___CATEGORICAL___ord_5___ud", "16436": "21___CATEGORICAL___ord_5___us", "16437": "21___CATEGORICAL___ord_5___ut", "16438": "21___CATEGORICAL___ord_5___ux", "16439": "21___CATEGORICAL___ord_5___uy", "16440": "21___CATEGORICAL___ord_5___vK", "16441": "21___CATEGORICAL___ord_5___vq", "16442": "21___CATEGORICAL___ord_5___vy", "16443": "21___CATEGORICAL___ord_5___wu", "16444": "21___CATEGORICAL___ord_5___wy", "16445": "21___CATEGORICAL___ord_5___xP", "16446": "21___CATEGORICAL___ord_5___xy", "16447": "21___CATEGORICAL___ord_5___yN", "16448": "21___CATEGORICAL___ord_5___yY", "16449": "21___CATEGORICAL___ord_5___yc", "16450": "21___CATEGORICAL___ord_5___zU", "16451": "22___NUMERIC___day_00___1", "16452": "22___NUMERIC___day_00___2", "16453": "22___NUMERIC___day_00___3", "16454": "22___NUMERIC___day_00___4", "16455": "22___NUMERIC___day_00___5", "16456": "22___NUMERIC___day_00___6", "16457": "22___NUMERIC___day_00___7", "16458": "23___NUMERIC___month_00___0", "16459": "23___NUMERIC___month_00___1", "16460": "23___NUMERIC___month_01___0", "16461": "23___NUMERIC___month_01___1", "16462": "23___NUMERIC___month_01___2", "16463": "23___NUMERIC___month_01___3", "16464": "23___NUMERIC___month_01___4", "16465": "23___NUMERIC___month_01___5", "16466": "23___NUMERIC___month_01___6", "16467": "23___NUMERIC___month_01___7", "16468": "23___NUMERIC___month_01___8", "16469": "23___NUMERIC___month_01___9", "16470": "24___CATEGORICAL___target___0", "16471": "24___CATEGORICAL___target___1"}, "token2id": {"[UNK]": 0, "[SEP]": 1, "[PAD]": 2, "[CLS]": 3, "[MASK]": 4, "[BOS]": 5, "[EOS]": 6, "[BMEM]": 7, "[EMEM]": 8, "[RMASK]": 9, "[SPTYPE]": 10, "00___NUMERIC___id_00___0": 11, "00___NUMERIC___id_00___1": 12, "00___NUMERIC___id_00___2": 13, "00___NUMERIC___id_01___0": 14, "00___NUMERIC___id_01___1": 15, "00___NUMERIC___id_01___2": 16, "00___NUMERIC___id_01___3": 17, "00___NUMERIC___id_01___4": 18, "00___NUMERIC___id_01___5": 19, "00___NUMERIC___id_01___6": 20, "00___NUMERIC___id_01___7": 21, "00___NUMERIC___id_01___8": 22, "00___NUMERIC___id_01___9": 23, "00___NUMERIC___id_02___0": 24, "00___NUMERIC___id_02___1": 25, "00___NUMERIC___id_02___2": 26, "00___NUMERIC___id_02___3": 27, "00___NUMERIC___id_02___4": 28, "00___NUMERIC___id_02___5": 29, "00___NUMERIC___id_02___6": 30, "00___NUMERIC___id_02___7": 31, "00___NUMERIC___id_02___8": 32, "00___NUMERIC___id_02___9": 33, "00___NUMERIC___id_03___0": 34, "00___NUMERIC___id_03___1": 35, "00___NUMERIC___id_03___2": 36, "00___NUMERIC___id_03___3": 37, "00___NUMERIC___id_03___4": 38, "00___NUMERIC___id_03___5": 39, "00___NUMERIC___id_03___6": 40, "00___NUMERIC___id_03___7": 41, "00___NUMERIC___id_03___8": 42, "00___NUMERIC___id_03___9": 43, "00___NUMERIC___id_04___0": 44, "00___NUMERIC___id_04___1": 45, "00___NUMERIC___id_04___2": 46, "00___NUMERIC___id_04___3": 47, "00___NUMERIC___id_04___4": 48, "00___NUMERIC___id_04___5": 49, "00___NUMERIC___id_04___6": 50, "00___NUMERIC___id_04___7": 51, "00___NUMERIC___id_04___8": 52, "00___NUMERIC___id_04___9": 53, "00___NUMERIC___id_05___0": 54, "00___NUMERIC___id_05___1": 55, "00___NUMERIC___id_05___2": 56, "00___NUMERIC___id_05___3": 57, "00___NUMERIC___id_05___4": 58, "00___NUMERIC___id_05___5": 59, "00___NUMERIC___id_05___6": 60, "00___NUMERIC___id_05___7": 61, "00___NUMERIC___id_05___8": 62, "00___NUMERIC___id_05___9": 63, "01___CATEGORICAL___bin_0___0": 64, "01___CATEGORICAL___bin_0___1": 65, "02___CATEGORICAL___bin_1___0": 66, "02___CATEGORICAL___bin_1___1": 67, "03___CATEGORICAL___bin_2___0": 68, "03___CATEGORICAL___bin_2___1": 69, "04___CATEGORICAL___bin_3___F": 70, "04___CATEGORICAL___bin_3___T": 71, "05___CATEGORICAL___bin_4___N": 72, "05___CATEGORICAL___bin_4___Y": 73, "06___CATEGORICAL___nom_0___Blue": 74, "06___CATEGORICAL___nom_0___Green": 75, "06___CATEGORICAL___nom_0___Red": 76, "07___CATEGORICAL___nom_1___Circle": 77, "07___CATEGORICAL___nom_1___Polygon": 78, "07___CATEGORICAL___nom_1___Square": 79, "07___CATEGORICAL___nom_1___Star": 80, "07___CATEGORICAL___nom_1___Trapezoid": 81, "07___CATEGORICAL___nom_1___Triangle": 82, "08___CATEGORICAL___nom_2___Axolotl": 83, "08___CATEGORICAL___nom_2___Cat": 84, "08___CATEGORICAL___nom_2___Dog": 85, "08___CATEGORICAL___nom_2___Hamster": 86, "08___CATEGORICAL___nom_2___Lion": 87, "08___CATEGORICAL___nom_2___Snake": 88, "09___CATEGORICAL___nom_3___Canada": 89, "09___CATEGORICAL___nom_3___China": 90, "09___CATEGORICAL___nom_3___Costa Rica": 91, "09___CATEGORICAL___nom_3___Finland": 92, "09___CATEGORICAL___nom_3___India": 93, "09___CATEGORICAL___nom_3___Russia": 94, "10___CATEGORICAL___nom_4___Bassoon": 95, "10___CATEGORICAL___nom_4___Oboe": 96, "10___CATEGORICAL___nom_4___Piano": 97, "10___CATEGORICAL___nom_4___Theremin": 98, "11___CATEGORICAL___nom_5___005dd4ce3": 99, "11___CATEGORICAL___nom_5___037bd73d8": 100, "11___CATEGORICAL___nom_5___05950689f": 101, "11___CATEGORICAL___nom_5___05d5943a3": 102, "11___CATEGORICAL___nom_5___06eeaf0aa": 103, "11___CATEGORICAL___nom_5___075ceb58b": 104, "11___CATEGORICAL___nom_5___077fd9465": 105, "11___CATEGORICAL___nom_5___0870880f6": 106, "11___CATEGORICAL___nom_5___0870b0a5d": 107, "11___CATEGORICAL___nom_5___09a4ad97d": 108, "11___CATEGORICAL___nom_5___09ed0a686": 109, "11___CATEGORICAL___nom_5___0b3bec656": 110, "11___CATEGORICAL___nom_5___0bdf8165a": 111, "11___CATEGORICAL___nom_5___0de4acd31": 112, "11___CATEGORICAL___nom_5___0de5598a9": 113, "11___CATEGORICAL___nom_5___0dee9b39a": 114, "11___CATEGORICAL___nom_5___0eb46e992": 115, "11___CATEGORICAL___nom_5___0ef5c1879": 116, "11___CATEGORICAL___nom_5___115a252ba": 117, "11___CATEGORICAL___nom_5___116f7e3e2": 118, "11___CATEGORICAL___nom_5___1305d6e77": 119, "11___CATEGORICAL___nom_5___159a7306f": 120, "11___CATEGORICAL___nom_5___176809a41": 121, "11___CATEGORICAL___nom_5___17a3709ae": 122, "11___CATEGORICAL___nom_5___185ba0a59": 123, "11___CATEGORICAL___nom_5___19db35594": 124, "11___CATEGORICAL___nom_5___1bd1068d9": 125, "11___CATEGORICAL___nom_5___1e6cb96e8": 126, "11___CATEGORICAL___nom_5___1f1702d2f": 127, "11___CATEGORICAL___nom_5___1fd0233cd": 128, "11___CATEGORICAL___nom_5___200009fc3": 129, "11___CATEGORICAL___nom_5___20b10a832": 130, "11___CATEGORICAL___nom_5___2979f0d45": 131, "11___CATEGORICAL___nom_5___29e7f8525": 132, "11___CATEGORICAL___nom_5___2a0e95ba1": 133, "11___CATEGORICAL___nom_5___2cac4af40": 134, "11___CATEGORICAL___nom_5___2cadfed8e": 135, "11___CATEGORICAL___nom_5___2cc9e16b9": 136, "11___CATEGORICAL___nom_5___2d61990e2": 137, "11___CATEGORICAL___nom_5___2e7f4d636": 138, "11___CATEGORICAL___nom_5___2ff007c26": 139, "11___CATEGORICAL___nom_5___30a15b6bd": 140, "11___CATEGORICAL___nom_5___30a530eab": 141, "11___CATEGORICAL___nom_5___321bf770e": 142, "11___CATEGORICAL___nom_5___3263bdce5": 143, "11___CATEGORICAL___nom_5___3271e5526": 144, "11___CATEGORICAL___nom_5___3283ca434": 145, "11___CATEGORICAL___nom_5___33adb4760": 146, "11___CATEGORICAL___nom_5___34ad60330": 147, "11___CATEGORICAL___nom_5___3585ff84b": 148, "11___CATEGORICAL___nom_5___35f65a9bf": 149, "11___CATEGORICAL___nom_5___3685a0904": 150, "11___CATEGORICAL___nom_5___372f6d6ce": 151, "11___CATEGORICAL___nom_5___39647c92a": 152, "11___CATEGORICAL___nom_5___3aa9329e2": 153, "11___CATEGORICAL___nom_5___3aabfa2fc": 154, "11___CATEGORICAL___nom_5___3b5632a0c": 155, "11___CATEGORICAL___nom_5___3fef1a765": 156, "11___CATEGORICAL___nom_5___40e0157b1": 157, "11___CATEGORICAL___nom_5___416a8f3ab": 158, "11___CATEGORICAL___nom_5___4173a0252": 159, "11___CATEGORICAL___nom_5___4464569ee": 160, "11___CATEGORICAL___nom_5___448a66834": 161, "11___CATEGORICAL___nom_5___4604905e7": 162, "11___CATEGORICAL___nom_5___46bd3558d": 163, "11___CATEGORICAL___nom_5___46cab09da": 164, "11___CATEGORICAL___nom_5___472efea17": 165, "11___CATEGORICAL___nom_5___475e79160": 166, "11___CATEGORICAL___nom_5___479fd7aea": 167, "11___CATEGORICAL___nom_5___4845cc770": 168, "11___CATEGORICAL___nom_5___488406659": 169, "11___CATEGORICAL___nom_5___493de6347": 170, "11___CATEGORICAL___nom_5___49f4b29cc": 171, "11___CATEGORICAL___nom_5___4e1b529f6": 172, "11___CATEGORICAL___nom_5___4e28ceffa": 173, "11___CATEGORICAL___nom_5___4ebe94c28": 174, "11___CATEGORICAL___nom_5___4f2b65e1e": 175, "11___CATEGORICAL___nom_5___4f7d91943": 176, "11___CATEGORICAL___nom_5___50f116bcf": 177, "11___CATEGORICAL___nom_5___524b3f349": 178, "11___CATEGORICAL___nom_5___527ded12a": 179, "11___CATEGORICAL___nom_5___5331f98fb": 180, "11___CATEGORICAL___nom_5___534be2753": 181, "11___CATEGORICAL___nom_5___552e3fdc9": 182, "11___CATEGORICAL___nom_5___568550f04": 183, "11___CATEGORICAL___nom_5___586b51342": 184, "11___CATEGORICAL___nom_5___59497d53c": 185, "11___CATEGORICAL___nom_5___59e434d8a": 186, "11___CATEGORICAL___nom_5___5a466e166": 187, "11___CATEGORICAL___nom_5___5a94fc1d9": 188, "11___CATEGORICAL___nom_5___5b0f5acd5": 189, "11___CATEGORICAL___nom_5___5b1a9f841": 190, "11___CATEGORICAL___nom_5___5d18641ff": 191, "11___CATEGORICAL___nom_5___5f7065a42": 192, "11___CATEGORICAL___nom_5___6020a8124": 193, "11___CATEGORICAL___nom_5___60a44c8f4": 194, "11___CATEGORICAL___nom_5___63f642dd9": 195, "11___CATEGORICAL___nom_5___640e1fdd5": 196, "11___CATEGORICAL___nom_5___66669a44f": 197, "11___CATEGORICAL___nom_5___6a2269152": 198, "11___CATEGORICAL___nom_5___6c90f81cd": 199, "11___CATEGORICAL___nom_5___6cd0619e0": 200, "11___CATEGORICAL___nom_5___6f70dc2df": 201, "11___CATEGORICAL___nom_5___6fec43dd8": 202, "11___CATEGORICAL___nom_5___713ad10a7": 203, "11___CATEGORICAL___nom_5___71583d387": 204, "11___CATEGORICAL___nom_5___72f8028dc": 205, "11___CATEGORICAL___nom_5___740fb99a9": 206, "11___CATEGORICAL___nom_5___74bd42d5f": 207, "11___CATEGORICAL___nom_5___76be0b8b1": 208, "11___CATEGORICAL___nom_5___7741f57bd": 209, "11___CATEGORICAL___nom_5___778fdbe56": 210, "11___CATEGORICAL___nom_5___77b08badd": 211, "11___CATEGORICAL___nom_5___79923828f": 212, "11___CATEGORICAL___nom_5___7a12c88d2": 213, "11___CATEGORICAL___nom_5___7da3e4aec": 214, "11___CATEGORICAL___nom_5___7e9cb0f9a": 215, "11___CATEGORICAL___nom_5___7ee26092e": 216, "11___CATEGORICAL___nom_5___81264f81f": 217, "11___CATEGORICAL___nom_5___81f9d3312": 218, "11___CATEGORICAL___nom_5___8266050c6": 219, "11___CATEGORICAL___nom_5___82d1a6dbb": 220, "11___CATEGORICAL___nom_5___83b38aa6b": 221, "11___CATEGORICAL___nom_5___84b0081ad": 222, "11___CATEGORICAL___nom_5___85159d577": 223, "11___CATEGORICAL___nom_5___8573fa81a": 224, "11___CATEGORICAL___nom_5___88707c9ab": 225, "11___CATEGORICAL___nom_5___88917a066": 226, "11___CATEGORICAL___nom_5___88f104c00": 227, "11___CATEGORICAL___nom_5___8cf6c9f74": 228, "11___CATEGORICAL___nom_5___8d5d9f3db": 229, "11___CATEGORICAL___nom_5___8dcf8adfb": 230, "11___CATEGORICAL___nom_5___908a1b9c9": 231, "11___CATEGORICAL___nom_5___91a20b464": 232, "11___CATEGORICAL___nom_5___91bde92fa": 233, "11___CATEGORICAL___nom_5___91c80026f": 234, "11___CATEGORICAL___nom_5___91ea3e4dd": 235, "11___CATEGORICAL___nom_5___92190168b": 236, "11___CATEGORICAL___nom_5___924346656": 237, "11___CATEGORICAL___nom_5___9347491f2": 238, "11___CATEGORICAL___nom_5___96c73114c": 239, "11___CATEGORICAL___nom_5___96c83ac09": 240, "11___CATEGORICAL___nom_5___9ad6558d1": 241, "11___CATEGORICAL___nom_5___9ba4e87a7": 242, "11___CATEGORICAL___nom_5___9bb7ea2da": 243, "11___CATEGORICAL___nom_5___9ecc58be1": 244, "11___CATEGORICAL___nom_5___a21564cab": 245, "11___CATEGORICAL___nom_5___a3471b9d9": 246, "11___CATEGORICAL___nom_5___a35c346aa": 247, "11___CATEGORICAL___nom_5___a3f640358": 248, "11___CATEGORICAL___nom_5___a51e7974e": 249, "11___CATEGORICAL___nom_5___a5c276589": 250, "11___CATEGORICAL___nom_5___a93b89fc9": 251, "11___CATEGORICAL___nom_5___a9ed6dfea": 252, "11___CATEGORICAL___nom_5___ad95dc0ee": 253, "11___CATEGORICAL___nom_5___ade526ba7": 254, "11___CATEGORICAL___nom_5___af088d192": 255, "11___CATEGORICAL___nom_5___b0c8dba76": 256, "11___CATEGORICAL___nom_5___b0faff28f": 257, "11___CATEGORICAL___nom_5___b3b4d25d0": 258, "11___CATEGORICAL___nom_5___b4c8e6595": 259, "11___CATEGORICAL___nom_5___b7bb45938": 260, "11___CATEGORICAL___nom_5___b8d451029": 261, "11___CATEGORICAL___nom_5___b97f51ac4": 262, "11___CATEGORICAL___nom_5___baab29d3d": 263, "11___CATEGORICAL___nom_5___bd40c81f3": 264, "11___CATEGORICAL___nom_5___bd7740b93": 265, "11___CATEGORICAL___nom_5___bdb9fef4a": 266, "11___CATEGORICAL___nom_5___be4578201": 267, "11___CATEGORICAL___nom_5___be5592604": 268, "11___CATEGORICAL___nom_5___c0534106d": 269, "11___CATEGORICAL___nom_5___c08ba4f4c": 270, "11___CATEGORICAL___nom_5___c2843dc45": 271, "11___CATEGORICAL___nom_5___c5725677e": 272, "11___CATEGORICAL___nom_5___ca82ad111": 273, "11___CATEGORICAL___nom_5___caf83c0b5": 274, "11___CATEGORICAL___nom_5___d1b1709e8": 275, "11___CATEGORICAL___nom_5___d3079098d": 276, "11___CATEGORICAL___nom_5___d372c8993": 277, "11___CATEGORICAL___nom_5___d9becff68": 278, "11___CATEGORICAL___nom_5___da60580a8": 279, "11___CATEGORICAL___nom_5___db5e25328": 280, "11___CATEGORICAL___nom_5___dbc448931": 281, "11___CATEGORICAL___nom_5___dbfb714a4": 282, "11___CATEGORICAL___nom_5___dc07effb0": 283, "11___CATEGORICAL___nom_5___dd500b26a": 284, "11___CATEGORICAL___nom_5___ddac78300": 285, "11___CATEGORICAL___nom_5___de04b8750": 286, "11___CATEGORICAL___nom_5___defc6dd20": 287, "11___CATEGORICAL___nom_5___df51b96fc": 288, "11___CATEGORICAL___nom_5___e08092732": 289, "11___CATEGORICAL___nom_5___e0efe9d20": 290, "11___CATEGORICAL___nom_5___e1558b071": 291, "11___CATEGORICAL___nom_5___e428c040e": 292, "11___CATEGORICAL___nom_5___e52fbf1c8": 293, "11___CATEGORICAL___nom_5___e5b29c42b": 294, "11___CATEGORICAL___nom_5___e6f45aa26": 295, "11___CATEGORICAL___nom_5___e70a6270d": 296, "11___CATEGORICAL___nom_5___e7d9ca356": 297, "11___CATEGORICAL___nom_5___e844a1f66": 298, "11___CATEGORICAL___nom_5___e85ec20b5": 299, "11___CATEGORICAL___nom_5___e9c6fe0f7": 300, "11___CATEGORICAL___nom_5___e9f44a509": 301, "11___CATEGORICAL___nom_5___ead12da87": 302, "11___CATEGORICAL___nom_5___eb0004a0b": 303, "11___CATEGORICAL___nom_5___eb69430d6": 304, "11___CATEGORICAL___nom_5___ee55b9d67": 305, "11___CATEGORICAL___nom_5___ef38568df": 306, "11___CATEGORICAL___nom_5___f0c1ceee4": 307, "11___CATEGORICAL___nom_5___f12246592": 308, "11___CATEGORICAL___nom_5___f2a6d797b": 309, "11___CATEGORICAL___nom_5___f2d59cf51": 310, "11___CATEGORICAL___nom_5___f50eb07ae": 311, "11___CATEGORICAL___nom_5___f6c524860": 312, "11___CATEGORICAL___nom_5___f710fca39": 313, "11___CATEGORICAL___nom_5___f7821e391": 314, "11___CATEGORICAL___nom_5___f802a9849": 315, "11___CATEGORICAL___nom_5___f8faea16f": 316, "11___CATEGORICAL___nom_5___f9d17bb93": 317, "11___CATEGORICAL___nom_5___f9e5266f9": 318, "11___CATEGORICAL___nom_5___fa0a88fe9": 319, "11___CATEGORICAL___nom_5___fd04a970f": 320, "12___CATEGORICAL___nom_6___0000ee65f": 321, "12___CATEGORICAL___nom_6___00e9c15b8": 322, "12___CATEGORICAL___nom_6___01455237a": 323, "12___CATEGORICAL___nom_6___017eb57f0": 324, "12___CATEGORICAL___nom_6___0249d8675": 325, "12___CATEGORICAL___nom_6___02d689659": 326, "12___CATEGORICAL___nom_6___0302f1ffc": 327, "12___CATEGORICAL___nom_6___031d49dfc": 328, "12___CATEGORICAL___nom_6___0516fa0d8": 329, "12___CATEGORICAL___nom_6___062cd9a70": 330, "12___CATEGORICAL___nom_6___063f4307d": 331, "12___CATEGORICAL___nom_6___06835761e": 332, "12___CATEGORICAL___nom_6___077e720aa": 333, "12___CATEGORICAL___nom_6___08b282a6c": 334, "12___CATEGORICAL___nom_6___0922e3cb8": 335, "12___CATEGORICAL___nom_6___0958071b5": 336, "12___CATEGORICAL___nom_6___097ff91b3": 337, "12___CATEGORICAL___nom_6___09e796196": 338, "12___CATEGORICAL___nom_6___09f69436c": 339, "12___CATEGORICAL___nom_6___0aeb8fe13": 340, "12___CATEGORICAL___nom_6___0b10fcecc": 341, "12___CATEGORICAL___nom_6___0b17eaec7": 342, "12___CATEGORICAL___nom_6___0b23e3352": 343, "12___CATEGORICAL___nom_6___0bcb379d8": 344, "12___CATEGORICAL___nom_6___0d50f61fd": 345, "12___CATEGORICAL___nom_6___0e2f036b5": 346, "12___CATEGORICAL___nom_6___0ed70b7b1": 347, "12___CATEGORICAL___nom_6___0ef3dda96": 348, "12___CATEGORICAL___nom_6___113deddc9": 349, "12___CATEGORICAL___nom_6___11698a0b3": 350, "12___CATEGORICAL___nom_6___116d9fcd9": 351, "12___CATEGORICAL___nom_6___126a4f83d": 352, "12___CATEGORICAL___nom_6___126c2e512": 353, "12___CATEGORICAL___nom_6___12d88c9c3": 354, "12___CATEGORICAL___nom_6___144279ac1": 355, "12___CATEGORICAL___nom_6___145d17afb": 356, "12___CATEGORICAL___nom_6___153316f52": 357, "12___CATEGORICAL___nom_6___1537295c3": 358, "12___CATEGORICAL___nom_6___1573e6c5f": 359, "12___CATEGORICAL___nom_6___15ea6e2bb": 360, "12___CATEGORICAL___nom_6___1611d2b45": 361, "12___CATEGORICAL___nom_6___162fc2192": 362, "12___CATEGORICAL___nom_6___163b28322": 363, "12___CATEGORICAL___nom_6___16dfb662a": 364, "12___CATEGORICAL___nom_6___1795ef28b": 365, "12___CATEGORICAL___nom_6___17e0c4fa9": 366, "12___CATEGORICAL___nom_6___180a3d6cb": 367, "12___CATEGORICAL___nom_6___1869e63b0": 368, "12___CATEGORICAL___nom_6___18a901239": 369, "12___CATEGORICAL___nom_6___19231be54": 370, "12___CATEGORICAL___nom_6___19505136a": 371, "12___CATEGORICAL___nom_6___1ab5e5ad6": 372, "12___CATEGORICAL___nom_6___1abac47d0": 373, "12___CATEGORICAL___nom_6___1ad744242": 374, "12___CATEGORICAL___nom_6___1b36c0b8c": 375, "12___CATEGORICAL___nom_6___1c34a67d7": 376, "12___CATEGORICAL___nom_6___1c7f1ab58": 377, "12___CATEGORICAL___nom_6___1e5e03a86": 378, "12___CATEGORICAL___nom_6___1ea13ded7": 379, "12___CATEGORICAL___nom_6___1f2e3f148": 380, "12___CATEGORICAL___nom_6___1f40b9ca8": 381, "12___CATEGORICAL___nom_6___1fe17a1fd": 382, "12___CATEGORICAL___nom_6___1ff467489": 383, "12___CATEGORICAL___nom_6___20636817e": 384, "12___CATEGORICAL___nom_6___20dc501c6": 385, "12___CATEGORICAL___nom_6___2119a6f87": 386, "12___CATEGORICAL___nom_6___214f24d39": 387, "12___CATEGORICAL___nom_6___21cb526c2": 388, "12___CATEGORICAL___nom_6___21e2c2d57": 389, "12___CATEGORICAL___nom_6___2268327b2": 390, "12___CATEGORICAL___nom_6___231233ca9": 391, "12___CATEGORICAL___nom_6___23311af90": 392, "12___CATEGORICAL___nom_6___2473094a9": 393, "12___CATEGORICAL___nom_6___24a1bea30": 394, "12___CATEGORICAL___nom_6___2546024d1": 395, "12___CATEGORICAL___nom_6___25d3a1087": 396, "12___CATEGORICAL___nom_6___26bf5ddd9": 397, "12___CATEGORICAL___nom_6___27179d6e5": 398, "12___CATEGORICAL___nom_6___27828c378": 399, "12___CATEGORICAL___nom_6___27e7dbafa": 400, "12___CATEGORICAL___nom_6___2837cf7b8": 401, "12___CATEGORICAL___nom_6___28630a5c8": 402, "12___CATEGORICAL___nom_6___28645754b": 403, "12___CATEGORICAL___nom_6___28b8e5350": 404, "12___CATEGORICAL___nom_6___292dea6ab": 405, "12___CATEGORICAL___nom_6___2936160c7": 406, "12___CATEGORICAL___nom_6___29a854620": 407, "12___CATEGORICAL___nom_6___29b650229": 408, "12___CATEGORICAL___nom_6___29e27ff9d": 409, "12___CATEGORICAL___nom_6___2a22b315e": 410, "12___CATEGORICAL___nom_6___2ae2bd37c": 411, "12___CATEGORICAL___nom_6___2bdc0a5d0": 412, "12___CATEGORICAL___nom_6___2c4223dbd": 413, "12___CATEGORICAL___nom_6___2c7fb8434": 414, "12___CATEGORICAL___nom_6___2cd425e1f": 415, "12___CATEGORICAL___nom_6___2d8a0cf5a": 416, "12___CATEGORICAL___nom_6___2d9852300": 417, "12___CATEGORICAL___nom_6___2df6f79a2": 418, "12___CATEGORICAL___nom_6___2eadb68c5": 419, "12___CATEGORICAL___nom_6___2ed5a94b0": 420, "12___CATEGORICAL___nom_6___2f6efc190": 421, "12___CATEGORICAL___nom_6___309707034": 422, "12___CATEGORICAL___nom_6___309e105f1": 423, "12___CATEGORICAL___nom_6___310b1a988": 424, "12___CATEGORICAL___nom_6___322121abf": 425, "12___CATEGORICAL___nom_6___329124d64": 426, "12___CATEGORICAL___nom_6___32b4b12b1": 427, "12___CATEGORICAL___nom_6___32be571ee": 428, "12___CATEGORICAL___nom_6___32db19124": 429, "12___CATEGORICAL___nom_6___338b8a987": 430, "12___CATEGORICAL___nom_6___3393a0f78": 431, "12___CATEGORICAL___nom_6___339c0fa05": 432, "12___CATEGORICAL___nom_6___34256b89f": 433, "12___CATEGORICAL___nom_6___35f33a8ca": 434, "12___CATEGORICAL___nom_6___36282e811": 435, "12___CATEGORICAL___nom_6___36df19a6e": 436, "12___CATEGORICAL___nom_6___37868097a": 437, "12___CATEGORICAL___nom_6___395941181": 438, "12___CATEGORICAL___nom_6___39981f199": 439, "12___CATEGORICAL___nom_6___3aa0689eb": 440, "12___CATEGORICAL___nom_6___3ac1b8814": 441, "12___CATEGORICAL___nom_6___3ae0ef9f1": 442, "12___CATEGORICAL___nom_6___3afd0489b": 443, "12___CATEGORICAL___nom_6___3b9693870": 444, "12___CATEGORICAL___nom_6___3bac0bd8e": 445, "12___CATEGORICAL___nom_6___3c1c64eaa": 446, "12___CATEGORICAL___nom_6___3c2b12c56": 447, "12___CATEGORICAL___nom_6___3c5d81a52": 448, "12___CATEGORICAL___nom_6___3c7643929": 449, "12___CATEGORICAL___nom_6___3e2b4aac9": 450, "12___CATEGORICAL___nom_6___3e41282ec": 451, "12___CATEGORICAL___nom_6___3e44d44eb": 452, "12___CATEGORICAL___nom_6___3e6a88574": 453, "12___CATEGORICAL___nom_6___3fe2d05f7": 454, "12___CATEGORICAL___nom_6___3fe8e9cba": 455, "12___CATEGORICAL___nom_6___40994d768": 456, "12___CATEGORICAL___nom_6___40ac3fcd5": 457, "12___CATEGORICAL___nom_6___418e9e936": 458, "12___CATEGORICAL___nom_6___42b1cc2fd": 459, "12___CATEGORICAL___nom_6___435fd233e": 460, "12___CATEGORICAL___nom_6___43744dfd9": 461, "12___CATEGORICAL___nom_6___437d8df71": 462, "12___CATEGORICAL___nom_6___43b8c397b": 463, "12___CATEGORICAL___nom_6___44e4c0bba": 464, "12___CATEGORICAL___nom_6___46c89ef8d": 465, "12___CATEGORICAL___nom_6___485fc6466": 466, "12___CATEGORICAL___nom_6___487c32dfa": 467, "12___CATEGORICAL___nom_6___498b2bdcb": 468, "12___CATEGORICAL___nom_6___4990652ec": 469, "12___CATEGORICAL___nom_6___49bceb215": 470, "12___CATEGORICAL___nom_6___49d1a98ef": 471, "12___CATEGORICAL___nom_6___4abed74f5": 472, "12___CATEGORICAL___nom_6___4b967eac4": 473, "12___CATEGORICAL___nom_6___4c183f1ef": 474, "12___CATEGORICAL___nom_6___4c1bdbe7b": 475, "12___CATEGORICAL___nom_6___4c6d8f959": 476, "12___CATEGORICAL___nom_6___4cb66e369": 477, "12___CATEGORICAL___nom_6___4cf47e292": 478, "12___CATEGORICAL___nom_6___4d5fc69ae": 479, "12___CATEGORICAL___nom_6___4daee3baf": 480, "12___CATEGORICAL___nom_6___4dcab4fc8": 481, "12___CATEGORICAL___nom_6___4e6cc8696": 482, "12___CATEGORICAL___nom_6___4f849ad2d": 483, "12___CATEGORICAL___nom_6___4fa3092a4": 484, "12___CATEGORICAL___nom_6___508ff88dc": 485, "12___CATEGORICAL___nom_6___50d7ad46a": 486, "12___CATEGORICAL___nom_6___50e49ea04": 487, "12___CATEGORICAL___nom_6___51477cd88": 488, "12___CATEGORICAL___nom_6___5194690a0": 489, "12___CATEGORICAL___nom_6___51d5f02c1": 490, "12___CATEGORICAL___nom_6___51f28e64c": 491, "12___CATEGORICAL___nom_6___520806ce2": 492, "12___CATEGORICAL___nom_6___527a42dc2": 493, "12___CATEGORICAL___nom_6___54474e8d8": 494, "12___CATEGORICAL___nom_6___54efb1985": 495, "12___CATEGORICAL___nom_6___556aa5d7a": 496, "12___CATEGORICAL___nom_6___55a24a71b": 497, "12___CATEGORICAL___nom_6___55eed5058": 498, "12___CATEGORICAL___nom_6___565a89e93": 499, "12___CATEGORICAL___nom_6___5755f93b2": 500, "12___CATEGORICAL___nom_6___576b27b37": 501, "12___CATEGORICAL___nom_6___5786b10d7": 502, "12___CATEGORICAL___nom_6___57aa15561": 503, "12___CATEGORICAL___nom_6___5a49dd8f6": 504, "12___CATEGORICAL___nom_6___5a5e620b3": 505, "12___CATEGORICAL___nom_6___5b2d457f3": 506, "12___CATEGORICAL___nom_6___5c4ee13e3": 507, "12___CATEGORICAL___nom_6___5cabda141": 508, "12___CATEGORICAL___nom_6___5cbbea089": 509, "12___CATEGORICAL___nom_6___5d47a598c": 510, "12___CATEGORICAL___nom_6___5d7c5c023": 511, "12___CATEGORICAL___nom_6___5e881b059": 512, "12___CATEGORICAL___nom_6___5f57e7d4f": 513, "12___CATEGORICAL___nom_6___5fa8beadb": 514, "12___CATEGORICAL___nom_6___5fc007fd3": 515, "12___CATEGORICAL___nom_6___5fd7600de": 516, "12___CATEGORICAL___nom_6___5ff2c0a8c": 517, "12___CATEGORICAL___nom_6___603232dea": 518, "12___CATEGORICAL___nom_6___6046454de": 519, "12___CATEGORICAL___nom_6___6057ca561": 520, "12___CATEGORICAL___nom_6___612641073": 521, "12___CATEGORICAL___nom_6___628f3170f": 522, "12___CATEGORICAL___nom_6___63d0e6105": 523, "12___CATEGORICAL___nom_6___642fcc7be": 524, "12___CATEGORICAL___nom_6___65aae1692": 525, "12___CATEGORICAL___nom_6___66e2654cb": 526, "12___CATEGORICAL___nom_6___67721d105": 527, "12___CATEGORICAL___nom_6___67bb6c9d7": 528, "12___CATEGORICAL___nom_6___687eaba3e": 529, "12___CATEGORICAL___nom_6___68dd873e4": 530, "12___CATEGORICAL___nom_6___6a53b5f5c": 531, "12___CATEGORICAL___nom_6___6c0354890": 532, "12___CATEGORICAL___nom_6___6c1a5aab7": 533, "12___CATEGORICAL___nom_6___6c90b0073": 534, "12___CATEGORICAL___nom_6___6d2cd10c5": 535, "12___CATEGORICAL___nom_6___6d7f8c086": 536, "12___CATEGORICAL___nom_6___6ea52a806": 537, "12___CATEGORICAL___nom_6___6eaaa8418": 538, "12___CATEGORICAL___nom_6___6f438920f": 539, "12___CATEGORICAL___nom_6___705cb7579": 540, "12___CATEGORICAL___nom_6___708e87b0e": 541, "12___CATEGORICAL___nom_6___70994b28a": 542, "12___CATEGORICAL___nom_6___70a040495": 543, "12___CATEGORICAL___nom_6___70a942fc1": 544, "12___CATEGORICAL___nom_6___7112aaf8e": 545, "12___CATEGORICAL___nom_6___71534b2a8": 546, "12___CATEGORICAL___nom_6___7185a30dc": 547, "12___CATEGORICAL___nom_6___718fd9453": 548, "12___CATEGORICAL___nom_6___71c68195d": 549, "12___CATEGORICAL___nom_6___7322ea1c9": 550, "12___CATEGORICAL___nom_6___73d7ca889": 551, "12___CATEGORICAL___nom_6___73dd803d0": 552, "12___CATEGORICAL___nom_6___7433a98da": 553, "12___CATEGORICAL___nom_6___74e0be86d": 554, "12___CATEGORICAL___nom_6___74e5a0bce": 555, "12___CATEGORICAL___nom_6___75645dad3": 556, "12___CATEGORICAL___nom_6___76ef650e6": 557, "12___CATEGORICAL___nom_6___77ab97a87": 558, "12___CATEGORICAL___nom_6___77ad092c1": 559, "12___CATEGORICAL___nom_6___782664588": 560, "12___CATEGORICAL___nom_6___78500847e": 561, "12___CATEGORICAL___nom_6___788ba7aea": 562, "12___CATEGORICAL___nom_6___78acf1908": 563, "12___CATEGORICAL___nom_6___78e45cd66": 564, "12___CATEGORICAL___nom_6___7909ef46d": 565, "12___CATEGORICAL___nom_6___79a82b7c0": 566, "12___CATEGORICAL___nom_6___7a8736321": 567, "12___CATEGORICAL___nom_6___7cb06ca3c": 568, "12___CATEGORICAL___nom_6___7cd1571c9": 569, "12___CATEGORICAL___nom_6___7d13ad097": 570, "12___CATEGORICAL___nom_6___7d8bc814a": 571, "12___CATEGORICAL___nom_6___7dd3f58e9": 572, "12___CATEGORICAL___nom_6___7e240024b": 573, "12___CATEGORICAL___nom_6___7f3c463a8": 574, "12___CATEGORICAL___nom_6___800577110": 575, "12___CATEGORICAL___nom_6___803f6cece": 576, "12___CATEGORICAL___nom_6___8082e0409": 577, "12___CATEGORICAL___nom_6___80b2270f0": 578, "12___CATEGORICAL___nom_6___81d59974c": 579, "12___CATEGORICAL___nom_6___82f75f00e": 580, "12___CATEGORICAL___nom_6___8367b78fc": 581, "12___CATEGORICAL___nom_6___839a6bcdb": 582, "12___CATEGORICAL___nom_6___83f07ed50": 583, "12___CATEGORICAL___nom_6___8518cecf3": 584, "12___CATEGORICAL___nom_6___854f72f28": 585, "12___CATEGORICAL___nom_6___8584a02f4": 586, "12___CATEGORICAL___nom_6___85885b27e": 587, "12___CATEGORICAL___nom_6___86021cf04": 588, "12___CATEGORICAL___nom_6___860bb37b4": 589, "12___CATEGORICAL___nom_6___8817e18d1": 590, "12___CATEGORICAL___nom_6___882ce2ad7": 591, "12___CATEGORICAL___nom_6___89a937a9f": 592, "12___CATEGORICAL___nom_6___89e65bb86": 593, "12___CATEGORICAL___nom_6___8a34317cb": 594, "12___CATEGORICAL___nom_6___8ad083b20": 595, "12___CATEGORICAL___nom_6___8bb163a87": 596, "12___CATEGORICAL___nom_6___8bbe5580d": 597, "12___CATEGORICAL___nom_6___8bd314488": 598, "12___CATEGORICAL___nom_6___8c8aa1d64": 599, "12___CATEGORICAL___nom_6___8c9d16cc3": 600, "12___CATEGORICAL___nom_6___8cc791aa8": 601, "12___CATEGORICAL___nom_6___8d1b72979": 602, "12___CATEGORICAL___nom_6___8ed6221ae": 603, "12___CATEGORICAL___nom_6___8f897ec3c": 604, "12___CATEGORICAL___nom_6___8fb440e53": 605, "12___CATEGORICAL___nom_6___8fbaca82e": 606, "12___CATEGORICAL___nom_6___8fd64cb59": 607, "12___CATEGORICAL___nom_6___8fec7bc42": 608, "12___CATEGORICAL___nom_6___906c833b2": 609, "12___CATEGORICAL___nom_6___907d87214": 610, "12___CATEGORICAL___nom_6___90ba6c9a6": 611, "12___CATEGORICAL___nom_6___91e1a9d16": 612, "12___CATEGORICAL___nom_6___9218550d8": 613, "12___CATEGORICAL___nom_6___92f461454": 614, "12___CATEGORICAL___nom_6___944239e54": 615, "12___CATEGORICAL___nom_6___944531331": 616, "12___CATEGORICAL___nom_6___9448b8e3b": 617, "12___CATEGORICAL___nom_6___945aa2bc5": 618, "12___CATEGORICAL___nom_6___95572215a": 619, "12___CATEGORICAL___nom_6___95a263224": 620, "12___CATEGORICAL___nom_6___966f4a973": 621, "12___CATEGORICAL___nom_6___96abdfa66": 622, "12___CATEGORICAL___nom_6___96c110558": 623, "12___CATEGORICAL___nom_6___96d5497a4": 624, "12___CATEGORICAL___nom_6___975346729": 625, "12___CATEGORICAL___nom_6___97b6a3518": 626, "12___CATEGORICAL___nom_6___985c40910": 627, "12___CATEGORICAL___nom_6___987d29cca": 628, "12___CATEGORICAL___nom_6___9882f1fa0": 629, "12___CATEGORICAL___nom_6___989a51202": 630, "12___CATEGORICAL___nom_6___9972df3b0": 631, "12___CATEGORICAL___nom_6___99fffb9e9": 632, "12___CATEGORICAL___nom_6___9a16c7c8f": 633, "12___CATEGORICAL___nom_6___9a20c66da": 634, "12___CATEGORICAL___nom_6___9a70de492": 635, "12___CATEGORICAL___nom_6___9a92bb693": 636, "12___CATEGORICAL___nom_6___9abb2ac1a": 637, "12___CATEGORICAL___nom_6___9afd9530d": 638, "12___CATEGORICAL___nom_6___9b1c3c8b7": 639, "12___CATEGORICAL___nom_6___9c5ea36f8": 640, "12___CATEGORICAL___nom_6___9ceb19dd6": 641, "12___CATEGORICAL___nom_6___9d6fa150a": 642, "12___CATEGORICAL___nom_6___9e0a099c7": 643, "12___CATEGORICAL___nom_6___9f53d30ad": 644, "12___CATEGORICAL___nom_6___9fbd66490": 645, "12___CATEGORICAL___nom_6___a028c07af": 646, "12___CATEGORICAL___nom_6___a148d86df": 647, "12___CATEGORICAL___nom_6___a19d81efe": 648, "12___CATEGORICAL___nom_6___a20513779": 649, "12___CATEGORICAL___nom_6___a26bedd00": 650, "12___CATEGORICAL___nom_6___a405b7cf0": 651, "12___CATEGORICAL___nom_6___a406a5f12": 652, "12___CATEGORICAL___nom_6___a520e2537": 653, "12___CATEGORICAL___nom_6___a566016d6": 654, "12___CATEGORICAL___nom_6___a6542cec0": 655, "12___CATEGORICAL___nom_6___a78e38dad": 656, "12___CATEGORICAL___nom_6___a9925d0e5": 657, "12___CATEGORICAL___nom_6___a9b4474f4": 658, "12___CATEGORICAL___nom_6___ac3e34eff": 659, "12___CATEGORICAL___nom_6___ac8c42404": 660, "12___CATEGORICAL___nom_6___acf5b10dd": 661, "12___CATEGORICAL___nom_6___ad1b42856": 662, "12___CATEGORICAL___nom_6___adfb4cba3": 663, "12___CATEGORICAL___nom_6___ae49fec17": 664, "12___CATEGORICAL___nom_6___ae67aec36": 665, "12___CATEGORICAL___nom_6___aed128d19": 666, "12___CATEGORICAL___nom_6___aed51f2c9": 667, "12___CATEGORICAL___nom_6___aee98fa47": 668, "12___CATEGORICAL___nom_6___af9278b96": 669, "12___CATEGORICAL___nom_6___afebf0803": 670, "12___CATEGORICAL___nom_6___b1c48d202": 671, "12___CATEGORICAL___nom_6___b1faf70a1": 672, "12___CATEGORICAL___nom_6___b238965eb": 673, "12___CATEGORICAL___nom_6___b2480a857": 674, "12___CATEGORICAL___nom_6___b2c93e83d": 675, "12___CATEGORICAL___nom_6___b300717cf": 676, "12___CATEGORICAL___nom_6___b321e8ee3": 677, "12___CATEGORICAL___nom_6___b3e59b54a": 678, "12___CATEGORICAL___nom_6___b3f15d742": 679, "12___CATEGORICAL___nom_6___b436c2568": 680, "12___CATEGORICAL___nom_6___b48077cc4": 681, "12___CATEGORICAL___nom_6___b511f5bff": 682, "12___CATEGORICAL___nom_6___b5f4a755a": 683, "12___CATEGORICAL___nom_6___b628a222c": 684, "12___CATEGORICAL___nom_6___b639793f9": 685, "12___CATEGORICAL___nom_6___b69c236cb": 686, "12___CATEGORICAL___nom_6___b73a8ae77": 687, "12___CATEGORICAL___nom_6___b7c276ed2": 688, "12___CATEGORICAL___nom_6___b7d62cb4e": 689, "12___CATEGORICAL___nom_6___b83511180": 690, "12___CATEGORICAL___nom_6___b8caba53f": 691, "12___CATEGORICAL___nom_6___b8cf041db": 692, "12___CATEGORICAL___nom_6___b9f08dc06": 693, "12___CATEGORICAL___nom_6___baef8ee7b": 694, "12___CATEGORICAL___nom_6___baf172f58": 695, "12___CATEGORICAL___nom_6___bb219c9ac": 696, "12___CATEGORICAL___nom_6___bbc311f15": 697, "12___CATEGORICAL___nom_6___bc31d6a6d": 698, "12___CATEGORICAL___nom_6___bc82e0ba0": 699, "12___CATEGORICAL___nom_6___bd47c2363": 700, "12___CATEGORICAL___nom_6___be5a0f5a9": 701, "12___CATEGORICAL___nom_6___bea839b58": 702, "12___CATEGORICAL___nom_6___beb20ea99": 703, "12___CATEGORICAL___nom_6___bedc798e7": 704, "12___CATEGORICAL___nom_6___bf82c01fa": 705, "12___CATEGORICAL___nom_6___c023e914a": 706, "12___CATEGORICAL___nom_6___c06f1b9f7": 707, "12___CATEGORICAL___nom_6___c0e4c4487": 708, "12___CATEGORICAL___nom_6___c0f1061ee": 709, "12___CATEGORICAL___nom_6___c103290d4": 710, "12___CATEGORICAL___nom_6___c135cdf77": 711, "12___CATEGORICAL___nom_6___c3517eaeb": 712, "12___CATEGORICAL___nom_6___c36cea1f7": 713, "12___CATEGORICAL___nom_6___c3c8b7b13": 714, "12___CATEGORICAL___nom_6___c5cf1fdc4": 715, "12___CATEGORICAL___nom_6___c7201df85": 716, "12___CATEGORICAL___nom_6___c73e4dfe1": 717, "12___CATEGORICAL___nom_6___c75b3104a": 718, "12___CATEGORICAL___nom_6___c79a72c72": 719, "12___CATEGORICAL___nom_6___c8436c277": 720, "12___CATEGORICAL___nom_6___c9a951efa": 721, "12___CATEGORICAL___nom_6___c9eedfbc2": 722, "12___CATEGORICAL___nom_6___cad70d692": 723, "12___CATEGORICAL___nom_6___cae4fb7f2": 724, "12___CATEGORICAL___nom_6___cbb210c0a": 725, "12___CATEGORICAL___nom_6___cc8755307": 726, "12___CATEGORICAL___nom_6___cd225807c": 727, "12___CATEGORICAL___nom_6___cd2fa6d62": 728, "12___CATEGORICAL___nom_6___cd8e3a0a7": 729, "12___CATEGORICAL___nom_6___cd94f29d1": 730, "12___CATEGORICAL___nom_6___ce528707a": 731, "12___CATEGORICAL___nom_6___cebefe5b5": 732, "12___CATEGORICAL___nom_6___cefab1020": 733, "12___CATEGORICAL___nom_6___cf82b283d": 734, "12___CATEGORICAL___nom_6___cf8b12b4e": 735, "12___CATEGORICAL___nom_6___cfc8d0828": 736, "12___CATEGORICAL___nom_6___d086fd85e": 737, "12___CATEGORICAL___nom_6___d166613dc": 738, "12___CATEGORICAL___nom_6___d173ac7ca": 739, "12___CATEGORICAL___nom_6___d213f48ed": 740, "12___CATEGORICAL___nom_6___d2c8f2916": 741, "12___CATEGORICAL___nom_6___d2ce6b1c7": 742, "12___CATEGORICAL___nom_6___d39b176b6": 743, "12___CATEGORICAL___nom_6___d405aebc1": 744, "12___CATEGORICAL___nom_6___d42f2b9ec": 745, "12___CATEGORICAL___nom_6___d43e63dc9": 746, "12___CATEGORICAL___nom_6___d44f7245a": 747, "12___CATEGORICAL___nom_6___d4d727716": 748, "12___CATEGORICAL___nom_6___d4fd01769": 749, "12___CATEGORICAL___nom_6___d5febb6ef": 750, "12___CATEGORICAL___nom_6___d6f8634af": 751, "12___CATEGORICAL___nom_6___d70a70804": 752, "12___CATEGORICAL___nom_6___d760c59b0": 753, "12___CATEGORICAL___nom_6___d76a148ab": 754, "12___CATEGORICAL___nom_6___d7fb439cc": 755, "12___CATEGORICAL___nom_6___d804d7926": 756, "12___CATEGORICAL___nom_6___d83ae1b30": 757, "12___CATEGORICAL___nom_6___d88fca3ba": 758, "12___CATEGORICAL___nom_6___d9004c5c2": 759, "12___CATEGORICAL___nom_6___d9025a066": 760, "12___CATEGORICAL___nom_6___d942d1e82": 761, "12___CATEGORICAL___nom_6___d95501ac1": 762, "12___CATEGORICAL___nom_6___d9e131846": 763, "12___CATEGORICAL___nom_6___d9e884466": 764, "12___CATEGORICAL___nom_6___db35bbdcb": 765, "12___CATEGORICAL___nom_6___db64717a3": 766, "12___CATEGORICAL___nom_6___dc0536549": 767, "12___CATEGORICAL___nom_6___dce959dcb": 768, "12___CATEGORICAL___nom_6___dd1dbed78": 769, "12___CATEGORICAL___nom_6___ddb583aa3": 770, "12___CATEGORICAL___nom_6___dee9cf5e9": 771, "12___CATEGORICAL___nom_6___df184daf2": 772, "12___CATEGORICAL___nom_6___df5b440ae": 773, "12___CATEGORICAL___nom_6___df91d98af": 774, "12___CATEGORICAL___nom_6___dfb457d2a": 775, "12___CATEGORICAL___nom_6___dfb9bd114": 776, "12___CATEGORICAL___nom_6___e0664a4d3": 777, "12___CATEGORICAL___nom_6___e10910468": 778, "12___CATEGORICAL___nom_6___e16557b2b": 779, "12___CATEGORICAL___nom_6___e19cd8107": 780, "12___CATEGORICAL___nom_6___e2559b9ab": 781, "12___CATEGORICAL___nom_6___e3396fbd5": 782, "12___CATEGORICAL___nom_6___e495d6f0f": 783, "12___CATEGORICAL___nom_6___e4d51bdd5": 784, "12___CATEGORICAL___nom_6___e550bcc1b": 785, "12___CATEGORICAL___nom_6___e63f69ba1": 786, "12___CATEGORICAL___nom_6___e7073f6a2": 787, "12___CATEGORICAL___nom_6___e77244b50": 788, "12___CATEGORICAL___nom_6___e78ce8c35": 789, "12___CATEGORICAL___nom_6___e7a7bf2e1": 790, "12___CATEGORICAL___nom_6___e866d44ea": 791, "12___CATEGORICAL___nom_6___e97824431": 792, "12___CATEGORICAL___nom_6___ea64fbdeb": 793, "12___CATEGORICAL___nom_6___ea7a1aaf6": 794, "12___CATEGORICAL___nom_6___eaa89fbcc": 795, "12___CATEGORICAL___nom_6___eaaf53f6a": 796, "12___CATEGORICAL___nom_6___eba84389c": 797, "12___CATEGORICAL___nom_6___ebd664cd6": 798, "12___CATEGORICAL___nom_6___ec416c384": 799, "12___CATEGORICAL___nom_6___ec5064acb": 800, "12___CATEGORICAL___nom_6___ec93484e7": 801, "12___CATEGORICAL___nom_6___ec97e8751": 802, "12___CATEGORICAL___nom_6___ed8157b96": 803, "12___CATEGORICAL___nom_6___edb3cf6c8": 804, "12___CATEGORICAL___nom_6___eeda68203": 805, "12___CATEGORICAL___nom_6___ef1f6146b": 806, "12___CATEGORICAL___nom_6___efa38c99d": 807, "12___CATEGORICAL___nom_6___f083d48ad": 808, "12___CATEGORICAL___nom_6___f0c4b23ef": 809, "12___CATEGORICAL___nom_6___f134870d4": 810, "12___CATEGORICAL___nom_6___f14fe8bc5": 811, "12___CATEGORICAL___nom_6___f17881964": 812, "12___CATEGORICAL___nom_6___f24d83141": 813, "12___CATEGORICAL___nom_6___f36d9a851": 814, "12___CATEGORICAL___nom_6___f425b1c8c": 815, "12___CATEGORICAL___nom_6___f461f837c": 816, "12___CATEGORICAL___nom_6___f4689e520": 817, "12___CATEGORICAL___nom_6___f497b97d7": 818, "12___CATEGORICAL___nom_6___f53d92c1a": 819, "12___CATEGORICAL___nom_6___f64fe5bc0": 820, "12___CATEGORICAL___nom_6___f7e243b5d": 821, "12___CATEGORICAL___nom_6___f81cde28d": 822, "12___CATEGORICAL___nom_6___f8c5dc0e0": 823, "12___CATEGORICAL___nom_6___fa2bf5f22": 824, "12___CATEGORICAL___nom_6___fa3f6d36f": 825, "12___CATEGORICAL___nom_6___fa498a5ae": 826, "12___CATEGORICAL___nom_6___fac5eff9e": 827, "12___CATEGORICAL___nom_6___fb1301ef6": 828, "12___CATEGORICAL___nom_6___fb80a804f": 829, "12___CATEGORICAL___nom_6___fbbdfc611": 830, "12___CATEGORICAL___nom_6___fbcb50fc1": 831, "12___CATEGORICAL___nom_6___fc4518443": 832, "12___CATEGORICAL___nom_6___fc613f31d": 833, "12___CATEGORICAL___nom_6___fc791ebea": 834, "12___CATEGORICAL___nom_6___fc88900c4": 835, "12___CATEGORICAL___nom_6___fc88d723d": 836, "12___CATEGORICAL___nom_6___fd2344f16": 837, "12___CATEGORICAL___nom_6___fd9370b9e": 838, "12___CATEGORICAL___nom_6___fe0b55cd2": 839, "12___CATEGORICAL___nom_6___fe0cddc2c": 840, "12___CATEGORICAL___nom_6___fe77c71bd": 841, "12___CATEGORICAL___nom_6___ffc60be1c": 842, "13___CATEGORICAL___nom_7___0074c698f": 843, "13___CATEGORICAL___nom_7___008f05158": 844, "13___CATEGORICAL___nom_7___00994f749": 845, "13___CATEGORICAL___nom_7___009a419af": 846, "13___CATEGORICAL___nom_7___0108b635e": 847, "13___CATEGORICAL___nom_7___0138d9abe": 848, "13___CATEGORICAL___nom_7___014c66968": 849, "13___CATEGORICAL___nom_7___016867538": 850, "13___CATEGORICAL___nom_7___0171f9241": 851, "13___CATEGORICAL___nom_7___01b8304ae": 852, "13___CATEGORICAL___nom_7___01d32ba52": 853, "13___CATEGORICAL___nom_7___01d49b4e1": 854, "13___CATEGORICAL___nom_7___01d5ecc45": 855, "13___CATEGORICAL___nom_7___01e22241a": 856, "13___CATEGORICAL___nom_7___0208e33dd": 857, "13___CATEGORICAL___nom_7___021629b02": 858, "13___CATEGORICAL___nom_7___022401886": 859, "13___CATEGORICAL___nom_7___0237e9859": 860, "13___CATEGORICAL___nom_7___024eb1d4c": 861, "13___CATEGORICAL___nom_7___027b6d692": 862, "13___CATEGORICAL___nom_7___03338a71c": 863, "13___CATEGORICAL___nom_7___0335c705e": 864, "13___CATEGORICAL___nom_7___03759a488": 865, "13___CATEGORICAL___nom_7___0378e418b": 866, "13___CATEGORICAL___nom_7___038b187fe": 867, "13___CATEGORICAL___nom_7___03c02132c": 868, "13___CATEGORICAL___nom_7___0406d6252": 869, "13___CATEGORICAL___nom_7___040a5f112": 870, "13___CATEGORICAL___nom_7___042524d7d": 871, "13___CATEGORICAL___nom_7___042de6edb": 872, "13___CATEGORICAL___nom_7___04a6f404e": 873, "13___CATEGORICAL___nom_7___04b3d90f2": 874, "13___CATEGORICAL___nom_7___04c9b2e28": 875, "13___CATEGORICAL___nom_7___04d283376": 876, "13___CATEGORICAL___nom_7___04ddac2be": 877, "13___CATEGORICAL___nom_7___055e2ceaa": 878, "13___CATEGORICAL___nom_7___05754af28": 879, "13___CATEGORICAL___nom_7___058d689da": 880, "13___CATEGORICAL___nom_7___0592e1a75": 881, "13___CATEGORICAL___nom_7___06398415b": 882, "13___CATEGORICAL___nom_7___069dabb39": 883, "13___CATEGORICAL___nom_7___06cd3d7c6": 884, "13___CATEGORICAL___nom_7___0777c8b7c": 885, "13___CATEGORICAL___nom_7___077a10d72": 886, "13___CATEGORICAL___nom_7___07bba85ec": 887, "13___CATEGORICAL___nom_7___080f75dce": 888, "13___CATEGORICAL___nom_7___092130a59": 889, "13___CATEGORICAL___nom_7___09394408f": 890, "13___CATEGORICAL___nom_7___0944f3afc": 891, "13___CATEGORICAL___nom_7___095d69ddc": 892, "13___CATEGORICAL___nom_7___097b0f4ce": 893, "13___CATEGORICAL___nom_7___09b286318": 894, "13___CATEGORICAL___nom_7___0ad56da4e": 895, "13___CATEGORICAL___nom_7___0ad84f641": 896, "13___CATEGORICAL___nom_7___0ae0f174d": 897, "13___CATEGORICAL___nom_7___0b5777c67": 898, "13___CATEGORICAL___nom_7___0bcd0782c": 899, "13___CATEGORICAL___nom_7___0c03941f3": 900, "13___CATEGORICAL___nom_7___0c1cfb224": 901, "13___CATEGORICAL___nom_7___0c32434c5": 902, "13___CATEGORICAL___nom_7___0c8f6917a": 903, "13___CATEGORICAL___nom_7___0d07ef795": 904, "13___CATEGORICAL___nom_7___0d10d8f0e": 905, "13___CATEGORICAL___nom_7___0e0637b46": 906, "13___CATEGORICAL___nom_7___0e2c0dc76": 907, "13___CATEGORICAL___nom_7___0e9e2ce06": 908, "13___CATEGORICAL___nom_7___0efe70958": 909, "13___CATEGORICAL___nom_7___0f2c0307f": 910, "13___CATEGORICAL___nom_7___0f32c2778": 911, "13___CATEGORICAL___nom_7___0f6dcae96": 912, "13___CATEGORICAL___nom_7___0fa8e8e91": 913, "13___CATEGORICAL___nom_7___0ff0bc946": 914, "13___CATEGORICAL___nom_7___110d26959": 915, "13___CATEGORICAL___nom_7___11853d9d8": 916, "13___CATEGORICAL___nom_7___125315092": 917, "13___CATEGORICAL___nom_7___12869d632": 918, "13___CATEGORICAL___nom_7___128b3573c": 919, "13___CATEGORICAL___nom_7___12b92841d": 920, "13___CATEGORICAL___nom_7___12d5f6772": 921, "13___CATEGORICAL___nom_7___12e6161c9": 922, "13___CATEGORICAL___nom_7___135f7a68a": 923, "13___CATEGORICAL___nom_7___1361751be": 924, "13___CATEGORICAL___nom_7___137922383": 925, "13___CATEGORICAL___nom_7___13b9cdf40": 926, "13___CATEGORICAL___nom_7___140119499": 927, "13___CATEGORICAL___nom_7___1434bf43e": 928, "13___CATEGORICAL___nom_7___14a99ac1e": 929, "13___CATEGORICAL___nom_7___14bd3d56c": 930, "13___CATEGORICAL___nom_7___1511a4ba7": 931, "13___CATEGORICAL___nom_7___15c34fdba": 932, "13___CATEGORICAL___nom_7___15cd3ca69": 933, "13___CATEGORICAL___nom_7___15dc42a6e": 934, "13___CATEGORICAL___nom_7___16101497f": 935, "13___CATEGORICAL___nom_7___163c27422": 936, "13___CATEGORICAL___nom_7___168469b34": 937, "13___CATEGORICAL___nom_7___1710fcc5e": 938, "13___CATEGORICAL___nom_7___1726041fb": 939, "13___CATEGORICAL___nom_7___1740266ee": 940, "13___CATEGORICAL___nom_7___17b83802f": 941, "13___CATEGORICAL___nom_7___17cc0943c": 942, "13___CATEGORICAL___nom_7___17d7c7e77": 943, "13___CATEGORICAL___nom_7___1811d1f7b": 944, "13___CATEGORICAL___nom_7___184f1e150": 945, "13___CATEGORICAL___nom_7___185418d90": 946, "13___CATEGORICAL___nom_7___1877cffb3": 947, "13___CATEGORICAL___nom_7___18a6a6e60": 948, "13___CATEGORICAL___nom_7___18ae18b53": 949, "13___CATEGORICAL___nom_7___18b5db61b": 950, "13___CATEGORICAL___nom_7___194a64005": 951, "13___CATEGORICAL___nom_7___1a386ffce": 952, "13___CATEGORICAL___nom_7___1a4e9144f": 953, "13___CATEGORICAL___nom_7___1a5ba32f1": 954, "13___CATEGORICAL___nom_7___1aacd0bd9": 955, "13___CATEGORICAL___nom_7___1bc3c85ad": 956, "13___CATEGORICAL___nom_7___1be616f08": 957, "13___CATEGORICAL___nom_7___1c20a27b8": 958, "13___CATEGORICAL___nom_7___1c2bd266e": 959, "13___CATEGORICAL___nom_7___1c3f27dd8": 960, "13___CATEGORICAL___nom_7___1c5f1ab58": 961, "13___CATEGORICAL___nom_7___1c619215d": 962, "13___CATEGORICAL___nom_7___1c6544394": 963, "13___CATEGORICAL___nom_7___1cd2547ac": 964, "13___CATEGORICAL___nom_7___1cde40c7a": 965, "13___CATEGORICAL___nom_7___1cefd8217": 966, "13___CATEGORICAL___nom_7___1cf5b7dd7": 967, "13___CATEGORICAL___nom_7___1d8c23baa": 968, "13___CATEGORICAL___nom_7___1d9ecee83": 969, "13___CATEGORICAL___nom_7___1db7d5172": 970, "13___CATEGORICAL___nom_7___1dcd3d68e": 971, "13___CATEGORICAL___nom_7___1e141d08e": 972, "13___CATEGORICAL___nom_7___1ee0fe875": 973, "13___CATEGORICAL___nom_7___1ee531eb3": 974, "13___CATEGORICAL___nom_7___1f096b2be": 975, "13___CATEGORICAL___nom_7___1f0a92e59": 976, "13___CATEGORICAL___nom_7___1f4a6de2e": 977, "13___CATEGORICAL___nom_7___1fcf153b3": 978, "13___CATEGORICAL___nom_7___202a9d22a": 979, "13___CATEGORICAL___nom_7___2092f3420": 980, "13___CATEGORICAL___nom_7___211e63f08": 981, "13___CATEGORICAL___nom_7___212279bf0": 982, "13___CATEGORICAL___nom_7___212cf5255": 983, "13___CATEGORICAL___nom_7___212e00b86": 984, "13___CATEGORICAL___nom_7___21a9b0580": 985, "13___CATEGORICAL___nom_7___21e5e9342": 986, "13___CATEGORICAL___nom_7___21f8837a1": 987, "13___CATEGORICAL___nom_7___226e2276b": 988, "13___CATEGORICAL___nom_7___22831fffe": 989, "13___CATEGORICAL___nom_7___22b37c7a3": 990, "13___CATEGORICAL___nom_7___22ff79d81": 991, "13___CATEGORICAL___nom_7___234fb5608": 992, "13___CATEGORICAL___nom_7___23adfa078": 993, "13___CATEGORICAL___nom_7___23b77929a": 994, "13___CATEGORICAL___nom_7___23cd7a725": 995, "13___CATEGORICAL___nom_7___2428baa29": 996, "13___CATEGORICAL___nom_7___24668c22c": 997, "13___CATEGORICAL___nom_7___2488ac2fa": 998, "13___CATEGORICAL___nom_7___24beb3378": 999, "13___CATEGORICAL___nom_7___24de1f87d": 1000, "13___CATEGORICAL___nom_7___24e9bf7d4": 1001, "13___CATEGORICAL___nom_7___24ffacfdc": 1002, "13___CATEGORICAL___nom_7___255667eca": 1003, "13___CATEGORICAL___nom_7___26160167b": 1004, "13___CATEGORICAL___nom_7___26b8375fd": 1005, "13___CATEGORICAL___nom_7___27c719804": 1006, "13___CATEGORICAL___nom_7___27d6df03f": 1007, "13___CATEGORICAL___nom_7___27e0c7992": 1008, "13___CATEGORICAL___nom_7___27e8d4511": 1009, "13___CATEGORICAL___nom_7___2923091c6": 1010, "13___CATEGORICAL___nom_7___29295065b": 1011, "13___CATEGORICAL___nom_7___2938f346d": 1012, "13___CATEGORICAL___nom_7___2981119ba": 1013, "13___CATEGORICAL___nom_7___2a0b3f539": 1014, "13___CATEGORICAL___nom_7___2a7678647": 1015, "13___CATEGORICAL___nom_7___2a944c174": 1016, "13___CATEGORICAL___nom_7___2b017b873": 1017, "13___CATEGORICAL___nom_7___2b5df4f24": 1018, "13___CATEGORICAL___nom_7___2b6ded08b": 1019, "13___CATEGORICAL___nom_7___2bd9e23c6": 1020, "13___CATEGORICAL___nom_7___2c0bba8aa": 1021, "13___CATEGORICAL___nom_7___2c89fa25b": 1022, "13___CATEGORICAL___nom_7___2c8ad6197": 1023, "13___CATEGORICAL___nom_7___2c8e13a9f": 1024, "13___CATEGORICAL___nom_7___2c9ffeaae": 1025, "13___CATEGORICAL___nom_7___2d2ebbd66": 1026, "13___CATEGORICAL___nom_7___2d36d7ff3": 1027, "13___CATEGORICAL___nom_7___2d3cb7b79": 1028, "13___CATEGORICAL___nom_7___2d6fa1af1": 1029, "13___CATEGORICAL___nom_7___2d8e816e2": 1030, "13___CATEGORICAL___nom_7___2dd9daf45": 1031, "13___CATEGORICAL___nom_7___2de101b87": 1032, "13___CATEGORICAL___nom_7___2e02d4b69": 1033, "13___CATEGORICAL___nom_7___2e1bf3838": 1034, "13___CATEGORICAL___nom_7___2e3adf627": 1035, "13___CATEGORICAL___nom_7___2e7a6bd7b": 1036, "13___CATEGORICAL___nom_7___2fb072e38": 1037, "13___CATEGORICAL___nom_7___30192f1f3": 1038, "13___CATEGORICAL___nom_7___3066a4c4f": 1039, "13___CATEGORICAL___nom_7___30a0fec63": 1040, "13___CATEGORICAL___nom_7___30c5eb4c1": 1041, "13___CATEGORICAL___nom_7___30c63bd0c": 1042, "13___CATEGORICAL___nom_7___30e376986": 1043, "13___CATEGORICAL___nom_7___30eb6faad": 1044, "13___CATEGORICAL___nom_7___30ec40df0": 1045, "13___CATEGORICAL___nom_7___310cb1765": 1046, "13___CATEGORICAL___nom_7___313c2d4b2": 1047, "13___CATEGORICAL___nom_7___3193c6338": 1048, "13___CATEGORICAL___nom_7___31a7192b6": 1049, "13___CATEGORICAL___nom_7___31c0ce565": 1050, "13___CATEGORICAL___nom_7___31de4f0dc": 1051, "13___CATEGORICAL___nom_7___3212ff699": 1052, "13___CATEGORICAL___nom_7___321ba5126": 1053, "13___CATEGORICAL___nom_7___32487ff99": 1054, "13___CATEGORICAL___nom_7___32b5710ac": 1055, "13___CATEGORICAL___nom_7___32ec9c00b": 1056, "13___CATEGORICAL___nom_7___33149546e": 1057, "13___CATEGORICAL___nom_7___33255a8da": 1058, "13___CATEGORICAL___nom_7___333b05914": 1059, "13___CATEGORICAL___nom_7___33c193609": 1060, "13___CATEGORICAL___nom_7___33d450a91": 1061, "13___CATEGORICAL___nom_7___342a7cdf6": 1062, "13___CATEGORICAL___nom_7___344623c9c": 1063, "13___CATEGORICAL___nom_7___345e8dab0": 1064, "13___CATEGORICAL___nom_7___346c81c8f": 1065, "13___CATEGORICAL___nom_7___3482f1d44": 1066, "13___CATEGORICAL___nom_7___34acd7fa4": 1067, "13___CATEGORICAL___nom_7___34b3a61c3": 1068, "13___CATEGORICAL___nom_7___34c59d8cc": 1069, "13___CATEGORICAL___nom_7___3506befc5": 1070, "13___CATEGORICAL___nom_7___352282217": 1071, "13___CATEGORICAL___nom_7___35308d2c7": 1072, "13___CATEGORICAL___nom_7___358eb1d99": 1073, "13___CATEGORICAL___nom_7___359c30fe3": 1074, "13___CATEGORICAL___nom_7___35d07cd61": 1075, "13___CATEGORICAL___nom_7___3642c70d4": 1076, "13___CATEGORICAL___nom_7___36d85d658": 1077, "13___CATEGORICAL___nom_7___36db0443e": 1078, "13___CATEGORICAL___nom_7___36ef0491a": 1079, "13___CATEGORICAL___nom_7___370b29add": 1080, "13___CATEGORICAL___nom_7___37211ac72": 1081, "13___CATEGORICAL___nom_7___3764af040": 1082, "13___CATEGORICAL___nom_7___377c48f57": 1083, "13___CATEGORICAL___nom_7___37c413570": 1084, "13___CATEGORICAL___nom_7___37d630065": 1085, "13___CATEGORICAL___nom_7___37ebe7955": 1086, "13___CATEGORICAL___nom_7___384a8e15d": 1087, "13___CATEGORICAL___nom_7___386662e4a": 1088, "13___CATEGORICAL___nom_7___386eb705f": 1089, "13___CATEGORICAL___nom_7___389eb023f": 1090, "13___CATEGORICAL___nom_7___38acaf52e": 1091, "13___CATEGORICAL___nom_7___38ea9e8af": 1092, "13___CATEGORICAL___nom_7___38fa49974": 1093, "13___CATEGORICAL___nom_7___39506500f": 1094, "13___CATEGORICAL___nom_7___39ba044de": 1095, "13___CATEGORICAL___nom_7___39ddbcf5d": 1096, "13___CATEGORICAL___nom_7___39fc2a6db": 1097, "13___CATEGORICAL___nom_7___3a114adea": 1098, "13___CATEGORICAL___nom_7___3a4504c06": 1099, "13___CATEGORICAL___nom_7___3b3e2fcd8": 1100, "13___CATEGORICAL___nom_7___3b679e531": 1101, "13___CATEGORICAL___nom_7___3b6dd5612": 1102, "13___CATEGORICAL___nom_7___3b7dd14fd": 1103, "13___CATEGORICAL___nom_7___3c109f946": 1104, "13___CATEGORICAL___nom_7___3c452e60d": 1105, "13___CATEGORICAL___nom_7___3c4c7c16c": 1106, "13___CATEGORICAL___nom_7___3c6ba1277": 1107, "13___CATEGORICAL___nom_7___3cc956438": 1108, "13___CATEGORICAL___nom_7___3dfde7f8f": 1109, "13___CATEGORICAL___nom_7___3e5f076e2": 1110, "13___CATEGORICAL___nom_7___3e7c8c60e": 1111, "13___CATEGORICAL___nom_7___3e809722a": 1112, "13___CATEGORICAL___nom_7___3ee51a8c5": 1113, "13___CATEGORICAL___nom_7___3f0057c9b": 1114, "13___CATEGORICAL___nom_7___3f95dca80": 1115, "13___CATEGORICAL___nom_7___3fa1d9901": 1116, "13___CATEGORICAL___nom_7___3fa4c5655": 1117, "13___CATEGORICAL___nom_7___3fc00f7c8": 1118, "13___CATEGORICAL___nom_7___4080d5eaa": 1119, "13___CATEGORICAL___nom_7___408379fa9": 1120, "13___CATEGORICAL___nom_7___40aa45ee8": 1121, "13___CATEGORICAL___nom_7___40f84f6de": 1122, "13___CATEGORICAL___nom_7___415af688c": 1123, "13___CATEGORICAL___nom_7___4177c067d": 1124, "13___CATEGORICAL___nom_7___419e8b37b": 1125, "13___CATEGORICAL___nom_7___41a47efcb": 1126, "13___CATEGORICAL___nom_7___42505868e": 1127, "13___CATEGORICAL___nom_7___42992de9c": 1128, "13___CATEGORICAL___nom_7___431f39daf": 1129, "13___CATEGORICAL___nom_7___4323c4ab0": 1130, "13___CATEGORICAL___nom_7___438ece065": 1131, "13___CATEGORICAL___nom_7___43a3f1dd4": 1132, "13___CATEGORICAL___nom_7___43dd0371c": 1133, "13___CATEGORICAL___nom_7___43e62e1ef": 1134, "13___CATEGORICAL___nom_7___4419b238b": 1135, "13___CATEGORICAL___nom_7___446df0c98": 1136, "13___CATEGORICAL___nom_7___44964769b": 1137, "13___CATEGORICAL___nom_7___450f606f6": 1138, "13___CATEGORICAL___nom_7___450f97c17": 1139, "13___CATEGORICAL___nom_7___451f749a5": 1140, "13___CATEGORICAL___nom_7___45818230a": 1141, "13___CATEGORICAL___nom_7___45a291eae": 1142, "13___CATEGORICAL___nom_7___45fd460a6": 1143, "13___CATEGORICAL___nom_7___4609df5db": 1144, "13___CATEGORICAL___nom_7___4623277d0": 1145, "13___CATEGORICAL___nom_7___462a26c79": 1146, "13___CATEGORICAL___nom_7___467a8a887": 1147, "13___CATEGORICAL___nom_7___467dc6b44": 1148, "13___CATEGORICAL___nom_7___4743a283e": 1149, "13___CATEGORICAL___nom_7___47780f68a": 1150, "13___CATEGORICAL___nom_7___479b4bade": 1151, "13___CATEGORICAL___nom_7___47aaaab79": 1152, "13___CATEGORICAL___nom_7___47b9df131": 1153, "13___CATEGORICAL___nom_7___47d9c2688": 1154, "13___CATEGORICAL___nom_7___47e644472": 1155, "13___CATEGORICAL___nom_7___47ee18c56": 1156, "13___CATEGORICAL___nom_7___483bee302": 1157, "13___CATEGORICAL___nom_7___487b56d27": 1158, "13___CATEGORICAL___nom_7___4899ad162": 1159, "13___CATEGORICAL___nom_7___48e1b555b": 1160, "13___CATEGORICAL___nom_7___490ee11a2": 1161, "13___CATEGORICAL___nom_7___494b2cc84": 1162, "13___CATEGORICAL___nom_7___4a0ff1117": 1163, "13___CATEGORICAL___nom_7___4a18e6d6b": 1164, "13___CATEGORICAL___nom_7___4a7761d5f": 1165, "13___CATEGORICAL___nom_7___4a79709cd": 1166, "13___CATEGORICAL___nom_7___4ab76406a": 1167, "13___CATEGORICAL___nom_7___4ad6364f1": 1168, "13___CATEGORICAL___nom_7___4addee130": 1169, "13___CATEGORICAL___nom_7___4afdae539": 1170, "13___CATEGORICAL___nom_7___4b0c6346b": 1171, "13___CATEGORICAL___nom_7___4b9f6c617": 1172, "13___CATEGORICAL___nom_7___4ba71e861": 1173, "13___CATEGORICAL___nom_7___4bcf3e6f1": 1174, "13___CATEGORICAL___nom_7___4ca8c6fdb": 1175, "13___CATEGORICAL___nom_7___4ccc9f448": 1176, "13___CATEGORICAL___nom_7___4cd460e06": 1177, "13___CATEGORICAL___nom_7___4d23651c1": 1178, "13___CATEGORICAL___nom_7___4d2e91ec4": 1179, "13___CATEGORICAL___nom_7___4d396df50": 1180, "13___CATEGORICAL___nom_7___4d6f50082": 1181, "13___CATEGORICAL___nom_7___4d9bb93cb": 1182, "13___CATEGORICAL___nom_7___4dc20a594": 1183, "13___CATEGORICAL___nom_7___4dca91a1b": 1184, "13___CATEGORICAL___nom_7___4dcf33683": 1185, "13___CATEGORICAL___nom_7___4e8370f42": 1186, "13___CATEGORICAL___nom_7___4ee9b55a7": 1187, "13___CATEGORICAL___nom_7___4efc5361f": 1188, "13___CATEGORICAL___nom_7___4f3416383": 1189, "13___CATEGORICAL___nom_7___4f4f19f34": 1190, "13___CATEGORICAL___nom_7___4f60079ba": 1191, "13___CATEGORICAL___nom_7___4f938941b": 1192, "13___CATEGORICAL___nom_7___4fb098f41": 1193, "13___CATEGORICAL___nom_7___4fbeb8dbf": 1194, "13___CATEGORICAL___nom_7___4fbfe4a84": 1195, "13___CATEGORICAL___nom_7___4fd193763": 1196, "13___CATEGORICAL___nom_7___4fe3a7e40": 1197, "13___CATEGORICAL___nom_7___502e9a4f1": 1198, "13___CATEGORICAL___nom_7___50438e214": 1199, "13___CATEGORICAL___nom_7___50831f351": 1200, "13___CATEGORICAL___nom_7___50b84bf39": 1201, "13___CATEGORICAL___nom_7___50c82cec6": 1202, "13___CATEGORICAL___nom_7___514c654d0": 1203, "13___CATEGORICAL___nom_7___516654c4e": 1204, "13___CATEGORICAL___nom_7___517602e52": 1205, "13___CATEGORICAL___nom_7___517c8cdc9": 1206, "13___CATEGORICAL___nom_7___519829759": 1207, "13___CATEGORICAL___nom_7___51a515fb3": 1208, "13___CATEGORICAL___nom_7___51b8fed92": 1209, "13___CATEGORICAL___nom_7___51bfb741c": 1210, "13___CATEGORICAL___nom_7___51f3e394c": 1211, "13___CATEGORICAL___nom_7___52c1a7d76": 1212, "13___CATEGORICAL___nom_7___52f5c8187": 1213, "13___CATEGORICAL___nom_7___530f8ecc3": 1214, "13___CATEGORICAL___nom_7___532fc2d2e": 1215, "13___CATEGORICAL___nom_7___535aa4776": 1216, "13___CATEGORICAL___nom_7___5387ed7d2": 1217, "13___CATEGORICAL___nom_7___539701869": 1218, "13___CATEGORICAL___nom_7___53a5521c5": 1219, "13___CATEGORICAL___nom_7___53c650cbf": 1220, "13___CATEGORICAL___nom_7___53e58096b": 1221, "13___CATEGORICAL___nom_7___5465eb545": 1222, "13___CATEGORICAL___nom_7___54b422a9f": 1223, "13___CATEGORICAL___nom_7___55b25caf1": 1224, "13___CATEGORICAL___nom_7___55c29cb32": 1225, "13___CATEGORICAL___nom_7___55de0acbc": 1226, "13___CATEGORICAL___nom_7___562dfb0f6": 1227, "13___CATEGORICAL___nom_7___5649e0c27": 1228, "13___CATEGORICAL___nom_7___564a11aa1": 1229, "13___CATEGORICAL___nom_7___565399ad3": 1230, "13___CATEGORICAL___nom_7___566b1e0e4": 1231, "13___CATEGORICAL___nom_7___568715fbe": 1232, "13___CATEGORICAL___nom_7___56a0dc1f7": 1233, "13___CATEGORICAL___nom_7___56a4667ea": 1234, "13___CATEGORICAL___nom_7___56b96de46": 1235, "13___CATEGORICAL___nom_7___56ed74b9a": 1236, "13___CATEGORICAL___nom_7___570758f56": 1237, "13___CATEGORICAL___nom_7___5720c852a": 1238, "13___CATEGORICAL___nom_7___572296c24": 1239, "13___CATEGORICAL___nom_7___577bb50e9": 1240, "13___CATEGORICAL___nom_7___5783c289c": 1241, "13___CATEGORICAL___nom_7___57a3529fa": 1242, "13___CATEGORICAL___nom_7___57fb024d4": 1243, "13___CATEGORICAL___nom_7___581294e27": 1244, "13___CATEGORICAL___nom_7___584948ec6": 1245, "13___CATEGORICAL___nom_7___585fabdc0": 1246, "13___CATEGORICAL___nom_7___5897a17c6": 1247, "13___CATEGORICAL___nom_7___58c1a650c": 1248, "13___CATEGORICAL___nom_7___58ebd42dd": 1249, "13___CATEGORICAL___nom_7___591491a89": 1250, "13___CATEGORICAL___nom_7___594f7042d": 1251, "13___CATEGORICAL___nom_7___594f72875": 1252, "13___CATEGORICAL___nom_7___59886fdb2": 1253, "13___CATEGORICAL___nom_7___59de9c26a": 1254, "13___CATEGORICAL___nom_7___59fe57a1b": 1255, "13___CATEGORICAL___nom_7___5a109570a": 1256, "13___CATEGORICAL___nom_7___5a4aec916": 1257, "13___CATEGORICAL___nom_7___5a907135e": 1258, "13___CATEGORICAL___nom_7___5a99b7d9f": 1259, "13___CATEGORICAL___nom_7___5aaac585c": 1260, "13___CATEGORICAL___nom_7___5ad7da858": 1261, "13___CATEGORICAL___nom_7___5aeb59996": 1262, "13___CATEGORICAL___nom_7___5aed00b2c": 1263, "13___CATEGORICAL___nom_7___5b6795b73": 1264, "13___CATEGORICAL___nom_7___5b6f1bac6": 1265, "13___CATEGORICAL___nom_7___5b6f81645": 1266, "13___CATEGORICAL___nom_7___5b7119a76": 1267, "13___CATEGORICAL___nom_7___5ba122e87": 1268, "13___CATEGORICAL___nom_7___5c064b2bf": 1269, "13___CATEGORICAL___nom_7___5c1388f32": 1270, "13___CATEGORICAL___nom_7___5c843e08f": 1271, "13___CATEGORICAL___nom_7___5cf3ef747": 1272, "13___CATEGORICAL___nom_7___5d0dfceaf": 1273, "13___CATEGORICAL___nom_7___5d135b62f": 1274, "13___CATEGORICAL___nom_7___5d6e63dfc": 1275, "13___CATEGORICAL___nom_7___5dc3e05e9": 1276, "13___CATEGORICAL___nom_7___5de3bf599": 1277, "13___CATEGORICAL___nom_7___5deca33b5": 1278, "13___CATEGORICAL___nom_7___5e112a249": 1279, "13___CATEGORICAL___nom_7___5e43e6e8e": 1280, "13___CATEGORICAL___nom_7___5e99c492c": 1281, "13___CATEGORICAL___nom_7___5ee5d882b": 1282, "13___CATEGORICAL___nom_7___5f5b6e957": 1283, "13___CATEGORICAL___nom_7___5fee1e1d2": 1284, "13___CATEGORICAL___nom_7___6008addf2": 1285, "13___CATEGORICAL___nom_7___600ee60bd": 1286, "13___CATEGORICAL___nom_7___6049b08a6": 1287, "13___CATEGORICAL___nom_7___6065c72b8": 1288, "13___CATEGORICAL___nom_7___60f4e2593": 1289, "13___CATEGORICAL___nom_7___61022a02d": 1290, "13___CATEGORICAL___nom_7___613fad776": 1291, "13___CATEGORICAL___nom_7___61b4a186a": 1292, "13___CATEGORICAL___nom_7___61f32d775": 1293, "13___CATEGORICAL___nom_7___6206e88a7": 1294, "13___CATEGORICAL___nom_7___6228cae48": 1295, "13___CATEGORICAL___nom_7___6249769ec": 1296, "13___CATEGORICAL___nom_7___62882755e": 1297, "13___CATEGORICAL___nom_7___62b53f140": 1298, "13___CATEGORICAL___nom_7___62bf0bc9d": 1299, "13___CATEGORICAL___nom_7___62dd25545": 1300, "13___CATEGORICAL___nom_7___62e1f324e": 1301, "13___CATEGORICAL___nom_7___62e6637f1": 1302, "13___CATEGORICAL___nom_7___6348d0544": 1303, "13___CATEGORICAL___nom_7___63ac5ddef": 1304, "13___CATEGORICAL___nom_7___63b0bc9d3": 1305, "13___CATEGORICAL___nom_7___642c18d6b": 1306, "13___CATEGORICAL___nom_7___643c15528": 1307, "13___CATEGORICAL___nom_7___6448d1faf": 1308, "13___CATEGORICAL___nom_7___6473ea04d": 1309, "13___CATEGORICAL___nom_7___652234e54": 1310, "13___CATEGORICAL___nom_7___6538834b5": 1311, "13___CATEGORICAL___nom_7___65496f7bc": 1312, "13___CATEGORICAL___nom_7___6553e7c45": 1313, "13___CATEGORICAL___nom_7___6571760c2": 1314, "13___CATEGORICAL___nom_7___659c782a1": 1315, "13___CATEGORICAL___nom_7___66418d6ec": 1316, "13___CATEGORICAL___nom_7___667093fa6": 1317, "13___CATEGORICAL___nom_7___6684bc03d": 1318, "13___CATEGORICAL___nom_7___668df2789": 1319, "13___CATEGORICAL___nom_7___669190904": 1320, "13___CATEGORICAL___nom_7___66dd9dc34": 1321, "13___CATEGORICAL___nom_7___66e4ca8cd": 1322, "13___CATEGORICAL___nom_7___67010221f": 1323, "13___CATEGORICAL___nom_7___673d3c1c0": 1324, "13___CATEGORICAL___nom_7___677329fb6": 1325, "13___CATEGORICAL___nom_7___6790972e7": 1326, "13___CATEGORICAL___nom_7___67f408ae3": 1327, "13___CATEGORICAL___nom_7___6844c03f1": 1328, "13___CATEGORICAL___nom_7___687237f4d": 1329, "13___CATEGORICAL___nom_7___68943cad3": 1330, "13___CATEGORICAL___nom_7___68d88988b": 1331, "13___CATEGORICAL___nom_7___68edef966": 1332, "13___CATEGORICAL___nom_7___68f6ad3e9": 1333, "13___CATEGORICAL___nom_7___69180a2f8": 1334, "13___CATEGORICAL___nom_7___6923be193": 1335, "13___CATEGORICAL___nom_7___695001688": 1336, "13___CATEGORICAL___nom_7___695517907": 1337, "13___CATEGORICAL___nom_7___69c5ba518": 1338, "13___CATEGORICAL___nom_7___69ce5c647": 1339, "13___CATEGORICAL___nom_7___6a8e2f6fe": 1340, "13___CATEGORICAL___nom_7___6aee14e09": 1341, "13___CATEGORICAL___nom_7___6af6214b1": 1342, "13___CATEGORICAL___nom_7___6b00c2ac6": 1343, "13___CATEGORICAL___nom_7___6b07ca3fa": 1344, "13___CATEGORICAL___nom_7___6b4d0cc44": 1345, "13___CATEGORICAL___nom_7___6c09a9fe7": 1346, "13___CATEGORICAL___nom_7___6c0aa2fd9": 1347, "13___CATEGORICAL___nom_7___6c65355af": 1348, "13___CATEGORICAL___nom_7___6cf9b4396": 1349, "13___CATEGORICAL___nom_7___6d5bc098a": 1350, "13___CATEGORICAL___nom_7___6ded0aa57": 1351, "13___CATEGORICAL___nom_7___6e0e3ec45": 1352, "13___CATEGORICAL___nom_7___6e5bb6d78": 1353, "13___CATEGORICAL___nom_7___6e8857554": 1354, "13___CATEGORICAL___nom_7___6ee6a56bf": 1355, "13___CATEGORICAL___nom_7___6f3940b72": 1356, "13___CATEGORICAL___nom_7___6f86d86b7": 1357, "13___CATEGORICAL___nom_7___6f8de956d": 1358, "13___CATEGORICAL___nom_7___6face96c8": 1359, "13___CATEGORICAL___nom_7___6fb8423f1": 1360, "13___CATEGORICAL___nom_7___6fb987c3e": 1361, "13___CATEGORICAL___nom_7___700924d38": 1362, "13___CATEGORICAL___nom_7___70363b2e8": 1363, "13___CATEGORICAL___nom_7___70d3cd098": 1364, "13___CATEGORICAL___nom_7___711ee2d57": 1365, "13___CATEGORICAL___nom_7___7161622d8": 1366, "13___CATEGORICAL___nom_7___71777c678": 1367, "13___CATEGORICAL___nom_7___71a28e371": 1368, "13___CATEGORICAL___nom_7___71cb5c19f": 1369, "13___CATEGORICAL___nom_7___724d38d98": 1370, "13___CATEGORICAL___nom_7___72f31fc38": 1371, "13___CATEGORICAL___nom_7___73236f791": 1372, "13___CATEGORICAL___nom_7___73cc0c412": 1373, "13___CATEGORICAL___nom_7___73f17961b": 1374, "13___CATEGORICAL___nom_7___73f44eb49": 1375, "13___CATEGORICAL___nom_7___74037d078": 1376, "13___CATEGORICAL___nom_7___740deb371": 1377, "13___CATEGORICAL___nom_7___741721971": 1378, "13___CATEGORICAL___nom_7___744164411": 1379, "13___CATEGORICAL___nom_7___745eba2aa": 1380, "13___CATEGORICAL___nom_7___74912d804": 1381, "13___CATEGORICAL___nom_7___74a1b69b1": 1382, "13___CATEGORICAL___nom_7___752efcc5b": 1383, "13___CATEGORICAL___nom_7___753293dc0": 1384, "13___CATEGORICAL___nom_7___759cf06d7": 1385, "13___CATEGORICAL___nom_7___75a4ba9a0": 1386, "13___CATEGORICAL___nom_7___763f2f8ea": 1387, "13___CATEGORICAL___nom_7___765a78e3e": 1388, "13___CATEGORICAL___nom_7___76bd486f8": 1389, "13___CATEGORICAL___nom_7___76f770ea1": 1390, "13___CATEGORICAL___nom_7___774b35e04": 1391, "13___CATEGORICAL___nom_7___77567e835": 1392, "13___CATEGORICAL___nom_7___7763f2131": 1393, "13___CATEGORICAL___nom_7___779c45830": 1394, "13___CATEGORICAL___nom_7___77a8ff594": 1395, "13___CATEGORICAL___nom_7___77ddefe89": 1396, "13___CATEGORICAL___nom_7___78ddd9718": 1397, "13___CATEGORICAL___nom_7___7954f458b": 1398, "13___CATEGORICAL___nom_7___7a56979e7": 1399, "13___CATEGORICAL___nom_7___7a8c327a2": 1400, "13___CATEGORICAL___nom_7___7aaa810eb": 1401, "13___CATEGORICAL___nom_7___7ad3e362c": 1402, "13___CATEGORICAL___nom_7___7b22090e2": 1403, "13___CATEGORICAL___nom_7___7c033aaf1": 1404, "13___CATEGORICAL___nom_7___7c097f770": 1405, "13___CATEGORICAL___nom_7___7c6d738f8": 1406, "13___CATEGORICAL___nom_7___7c71e775e": 1407, "13___CATEGORICAL___nom_7___7c8273635": 1408, "13___CATEGORICAL___nom_7___7c84bf21f": 1409, "13___CATEGORICAL___nom_7___7c9350d1d": 1410, "13___CATEGORICAL___nom_7___7cb99e265": 1411, "13___CATEGORICAL___nom_7___7cd96b620": 1412, "13___CATEGORICAL___nom_7___7d4494d3b": 1413, "13___CATEGORICAL___nom_7___7d964ca6f": 1414, "13___CATEGORICAL___nom_7___7db2eaa71": 1415, "13___CATEGORICAL___nom_7___7df1399cb": 1416, "13___CATEGORICAL___nom_7___7df20ed82": 1417, "13___CATEGORICAL___nom_7___7e2380e4f": 1418, "13___CATEGORICAL___nom_7___7e36feeb9": 1419, "13___CATEGORICAL___nom_7___7e3f745fc": 1420, "13___CATEGORICAL___nom_7___7eac0e255": 1421, "13___CATEGORICAL___nom_7___7edab3598": 1422, "13___CATEGORICAL___nom_7___7f1dc7d07": 1423, "13___CATEGORICAL___nom_7___7f27e0bf6": 1424, "13___CATEGORICAL___nom_7___7fee82768": 1425, "13___CATEGORICAL___nom_7___80233d0ed": 1426, "13___CATEGORICAL___nom_7___803e96716": 1427, "13___CATEGORICAL___nom_7___805d37bb5": 1428, "13___CATEGORICAL___nom_7___8071abe2c": 1429, "13___CATEGORICAL___nom_7___8097b1a29": 1430, "13___CATEGORICAL___nom_7___80c2eca0f": 1431, "13___CATEGORICAL___nom_7___8145adbe4": 1432, "13___CATEGORICAL___nom_7___816e4cca3": 1433, "13___CATEGORICAL___nom_7___81d9a641a": 1434, "13___CATEGORICAL___nom_7___81ed7dfc3": 1435, "13___CATEGORICAL___nom_7___81fb45795": 1436, "13___CATEGORICAL___nom_7___820b8f489": 1437, "13___CATEGORICAL___nom_7___824e477d1": 1438, "13___CATEGORICAL___nom_7___82598a462": 1439, "13___CATEGORICAL___nom_7___8275c0030": 1440, "13___CATEGORICAL___nom_7___828862a90": 1441, "13___CATEGORICAL___nom_7___82aff5c5a": 1442, "13___CATEGORICAL___nom_7___82b2195f7": 1443, "13___CATEGORICAL___nom_7___831aee9ec": 1444, "13___CATEGORICAL___nom_7___831b0cf23": 1445, "13___CATEGORICAL___nom_7___83286a11f": 1446, "13___CATEGORICAL___nom_7___832c8ee31": 1447, "13___CATEGORICAL___nom_7___833708746": 1448, "13___CATEGORICAL___nom_7___83822ba17": 1449, "13___CATEGORICAL___nom_7___83c9b6ebc": 1450, "13___CATEGORICAL___nom_7___83e252ebc": 1451, "13___CATEGORICAL___nom_7___83f97eebe": 1452, "13___CATEGORICAL___nom_7___8476604f7": 1453, "13___CATEGORICAL___nom_7___85360f187": 1454, "13___CATEGORICAL___nom_7___853d8bd3a": 1455, "13___CATEGORICAL___nom_7___85495b390": 1456, "13___CATEGORICAL___nom_7___8595ab4ff": 1457, "13___CATEGORICAL___nom_7___859ac0521": 1458, "13___CATEGORICAL___nom_7___85b1489f1": 1459, "13___CATEGORICAL___nom_7___85f85b684": 1460, "13___CATEGORICAL___nom_7___863e068a7": 1461, "13___CATEGORICAL___nom_7___868792854": 1462, "13___CATEGORICAL___nom_7___86a8e4ca0": 1463, "13___CATEGORICAL___nom_7___876d3cbbc": 1464, "13___CATEGORICAL___nom_7___8783b512a": 1465, "13___CATEGORICAL___nom_7___87a44376f": 1466, "13___CATEGORICAL___nom_7___87d1b8344": 1467, "13___CATEGORICAL___nom_7___880957c19": 1468, "13___CATEGORICAL___nom_7___8846ce1f0": 1469, "13___CATEGORICAL___nom_7___88739322e": 1470, "13___CATEGORICAL___nom_7___88ac1cfb2": 1471, "13___CATEGORICAL___nom_7___88ca34db7": 1472, "13___CATEGORICAL___nom_7___89072e3be": 1473, "13___CATEGORICAL___nom_7___897724aa8": 1474, "13___CATEGORICAL___nom_7___89d2f6fa1": 1475, "13___CATEGORICAL___nom_7___89f4255e4": 1476, "13___CATEGORICAL___nom_7___8a08dfb68": 1477, "13___CATEGORICAL___nom_7___8a259d00a": 1478, "13___CATEGORICAL___nom_7___8a4275eb9": 1479, "13___CATEGORICAL___nom_7___8b3344cb5": 1480, "13___CATEGORICAL___nom_7___8bed400a3": 1481, "13___CATEGORICAL___nom_7___8c2d2f775": 1482, "13___CATEGORICAL___nom_7___8c4ce64a1": 1483, "13___CATEGORICAL___nom_7___8ca39b82b": 1484, "13___CATEGORICAL___nom_7___8cae1caeb": 1485, "13___CATEGORICAL___nom_7___8cb79f2da": 1486, "13___CATEGORICAL___nom_7___8ced116b7": 1487, "13___CATEGORICAL___nom_7___8cfe22d7e": 1488, "13___CATEGORICAL___nom_7___8d1bc56fe": 1489, "13___CATEGORICAL___nom_7___8dc67ac8e": 1490, "13___CATEGORICAL___nom_7___8e03db5e1": 1491, "13___CATEGORICAL___nom_7___8e40d2880": 1492, "13___CATEGORICAL___nom_7___8e61561e6": 1493, "13___CATEGORICAL___nom_7___8e8048598": 1494, "13___CATEGORICAL___nom_7___8ed1c6155": 1495, "13___CATEGORICAL___nom_7___8ed464eb9": 1496, "13___CATEGORICAL___nom_7___8fa0da83a": 1497, "13___CATEGORICAL___nom_7___8ff9e8ddf": 1498, "13___CATEGORICAL___nom_7___90470cf2d": 1499, "13___CATEGORICAL___nom_7___9059d843f": 1500, "13___CATEGORICAL___nom_7___90615d10f": 1501, "13___CATEGORICAL___nom_7___909d5dccd": 1502, "13___CATEGORICAL___nom_7___90a1ccdf7": 1503, "13___CATEGORICAL___nom_7___90b02da35": 1504, "13___CATEGORICAL___nom_7___90e044eae": 1505, "13___CATEGORICAL___nom_7___90f43deca": 1506, "13___CATEGORICAL___nom_7___912e598df": 1507, "13___CATEGORICAL___nom_7___91473c44a": 1508, "13___CATEGORICAL___nom_7___9168277a6": 1509, "13___CATEGORICAL___nom_7___91a780da9": 1510, "13___CATEGORICAL___nom_7___91c26901a": 1511, "13___CATEGORICAL___nom_7___91cd074b1": 1512, "13___CATEGORICAL___nom_7___91d923041": 1513, "13___CATEGORICAL___nom_7___920b9ec8b": 1514, "13___CATEGORICAL___nom_7___923b05bc7": 1515, "13___CATEGORICAL___nom_7___9249f342f": 1516, "13___CATEGORICAL___nom_7___925c555e6": 1517, "13___CATEGORICAL___nom_7___92875bfea": 1518, "13___CATEGORICAL___nom_7___92be37205": 1519, "13___CATEGORICAL___nom_7___93803e42d": 1520, "13___CATEGORICAL___nom_7___93e0f9684": 1521, "13___CATEGORICAL___nom_7___94050b5d1": 1522, "13___CATEGORICAL___nom_7___944df579c": 1523, "13___CATEGORICAL___nom_7___94584c607": 1524, "13___CATEGORICAL___nom_7___9461b8daf": 1525, "13___CATEGORICAL___nom_7___94943a12c": 1526, "13___CATEGORICAL___nom_7___94bd02ef5": 1527, "13___CATEGORICAL___nom_7___953b7e9c6": 1528, "13___CATEGORICAL___nom_7___95631f5c2": 1529, "13___CATEGORICAL___nom_7___9564909ff": 1530, "13___CATEGORICAL___nom_7___95bcba86f": 1531, "13___CATEGORICAL___nom_7___9615948a4": 1532, "13___CATEGORICAL___nom_7___9627ac285": 1533, "13___CATEGORICAL___nom_7___962fb7d1e": 1534, "13___CATEGORICAL___nom_7___9647e18ac": 1535, "13___CATEGORICAL___nom_7___965be99eb": 1536, "13___CATEGORICAL___nom_7___9662106a7": 1537, "13___CATEGORICAL___nom_7___967f2aceb": 1538, "13___CATEGORICAL___nom_7___968004140": 1539, "13___CATEGORICAL___nom_7___969a8b888": 1540, "13___CATEGORICAL___nom_7___969b883a6": 1541, "13___CATEGORICAL___nom_7___96dacbb81": 1542, "13___CATEGORICAL___nom_7___9727c464c": 1543, "13___CATEGORICAL___nom_7___972c5a6bc": 1544, "13___CATEGORICAL___nom_7___9736432c1": 1545, "13___CATEGORICAL___nom_7___9766a7a46": 1546, "13___CATEGORICAL___nom_7___97bea5d7c": 1547, "13___CATEGORICAL___nom_7___97e8e820e": 1548, "13___CATEGORICAL___nom_7___97ed2b47a": 1549, "13___CATEGORICAL___nom_7___9809d6078": 1550, "13___CATEGORICAL___nom_7___987433007": 1551, "13___CATEGORICAL___nom_7___98f7467d7": 1552, "13___CATEGORICAL___nom_7___9906abd19": 1553, "13___CATEGORICAL___nom_7___994b3019c": 1554, "13___CATEGORICAL___nom_7___9992c71bf": 1555, "13___CATEGORICAL___nom_7___99a4414f3": 1556, "13___CATEGORICAL___nom_7___99afe26fe": 1557, "13___CATEGORICAL___nom_7___99e773789": 1558, "13___CATEGORICAL___nom_7___9aa2ce8f0": 1559, "13___CATEGORICAL___nom_7___9aaac4deb": 1560, "13___CATEGORICAL___nom_7___9b3244d01": 1561, "13___CATEGORICAL___nom_7___9c8a0bf52": 1562, "13___CATEGORICAL___nom_7___9cc26955a": 1563, "13___CATEGORICAL___nom_7___9d46d5612": 1564, "13___CATEGORICAL___nom_7___9d6653dde": 1565, "13___CATEGORICAL___nom_7___9d7167a13": 1566, "13___CATEGORICAL___nom_7___9d8f82dba": 1567, "13___CATEGORICAL___nom_7___9e8e8793d": 1568, "13___CATEGORICAL___nom_7___9ec27039d": 1569, "13___CATEGORICAL___nom_7___9ef0dc3ff": 1570, "13___CATEGORICAL___nom_7___9f6272571": 1571, "13___CATEGORICAL___nom_7___9f99947e2": 1572, "13___CATEGORICAL___nom_7___9fa324a89": 1573, "13___CATEGORICAL___nom_7___9fce91b1e": 1574, "13___CATEGORICAL___nom_7___9ff342e6e": 1575, "13___CATEGORICAL___nom_7___a08464096": 1576, "13___CATEGORICAL___nom_7___a09faf01e": 1577, "13___CATEGORICAL___nom_7___a0be4f3da": 1578, "13___CATEGORICAL___nom_7___a11ffef62": 1579, "13___CATEGORICAL___nom_7___a14a75e39": 1580, "13___CATEGORICAL___nom_7___a165a6509": 1581, "13___CATEGORICAL___nom_7___a1bf112de": 1582, "13___CATEGORICAL___nom_7___a1e0839a7": 1583, "13___CATEGORICAL___nom_7___a208938b0": 1584, "13___CATEGORICAL___nom_7___a2507f97d": 1585, "13___CATEGORICAL___nom_7___a26b59c24": 1586, "13___CATEGORICAL___nom_7___a2c2c7874": 1587, "13___CATEGORICAL___nom_7___a2faee373": 1588, "13___CATEGORICAL___nom_7___a2ff76df0": 1589, "13___CATEGORICAL___nom_7___a354255c4": 1590, "13___CATEGORICAL___nom_7___a380cef14": 1591, "13___CATEGORICAL___nom_7___a386cd732": 1592, "13___CATEGORICAL___nom_7___a40ac269e": 1593, "13___CATEGORICAL___nom_7___a42386065": 1594, "13___CATEGORICAL___nom_7___a4592b8a2": 1595, "13___CATEGORICAL___nom_7___a48a6d284": 1596, "13___CATEGORICAL___nom_7___a493a33b1": 1597, "13___CATEGORICAL___nom_7___a4d748277": 1598, "13___CATEGORICAL___nom_7___a4f2b4b24": 1599, "13___CATEGORICAL___nom_7___a52645fc7": 1600, "13___CATEGORICAL___nom_7___a5406a31a": 1601, "13___CATEGORICAL___nom_7___a56be00d1": 1602, "13___CATEGORICAL___nom_7___a58b84c81": 1603, "13___CATEGORICAL___nom_7___a5b4569d7": 1604, "13___CATEGORICAL___nom_7___a62d99593": 1605, "13___CATEGORICAL___nom_7___a66d57bb7": 1606, "13___CATEGORICAL___nom_7___a693ffb11": 1607, "13___CATEGORICAL___nom_7___a6a36f527": 1608, "13___CATEGORICAL___nom_7___a6b411798": 1609, "13___CATEGORICAL___nom_7___a6c58827f": 1610, "13___CATEGORICAL___nom_7___a6f3a3931": 1611, "13___CATEGORICAL___nom_7___a7720ac6e": 1612, "13___CATEGORICAL___nom_7___a77ce02b3": 1613, "13___CATEGORICAL___nom_7___a79b90d91": 1614, "13___CATEGORICAL___nom_7___a7c736bfd": 1615, "13___CATEGORICAL___nom_7___a8409f08b": 1616, "13___CATEGORICAL___nom_7___a8435ea56": 1617, "13___CATEGORICAL___nom_7___a84a7c934": 1618, "13___CATEGORICAL___nom_7___a85d5428c": 1619, "13___CATEGORICAL___nom_7___a88395028": 1620, "13___CATEGORICAL___nom_7___a8b006b27": 1621, "13___CATEGORICAL___nom_7___a8f53c631": 1622, "13___CATEGORICAL___nom_7___a92cf03ee": 1623, "13___CATEGORICAL___nom_7___a94100b59": 1624, "13___CATEGORICAL___nom_7___a95d13114": 1625, "13___CATEGORICAL___nom_7___a9fc363fb": 1626, "13___CATEGORICAL___nom_7___aa090f2c6": 1627, "13___CATEGORICAL___nom_7___aa148acce": 1628, "13___CATEGORICAL___nom_7___aad1364b6": 1629, "13___CATEGORICAL___nom_7___ab3200fa5": 1630, "13___CATEGORICAL___nom_7___ab40bb225": 1631, "13___CATEGORICAL___nom_7___ab8964e52": 1632, "13___CATEGORICAL___nom_7___abbb92347": 1633, "13___CATEGORICAL___nom_7___ac06d8690": 1634, "13___CATEGORICAL___nom_7___ac085e17a": 1635, "13___CATEGORICAL___nom_7___ac35c8d4b": 1636, "13___CATEGORICAL___nom_7___ac36811a4": 1637, "13___CATEGORICAL___nom_7___ac83c06ee": 1638, "13___CATEGORICAL___nom_7___acc3850c7": 1639, "13___CATEGORICAL___nom_7___accc230d5": 1640, "13___CATEGORICAL___nom_7___acedff31e": 1641, "13___CATEGORICAL___nom_7___ad0ac1ea7": 1642, "13___CATEGORICAL___nom_7___ad8263c35": 1643, "13___CATEGORICAL___nom_7___ae04b2089": 1644, "13___CATEGORICAL___nom_7___ae1edb14c": 1645, "13___CATEGORICAL___nom_7___ae21240f5": 1646, "13___CATEGORICAL___nom_7___ae526f847": 1647, "13___CATEGORICAL___nom_7___af2a1f476": 1648, "13___CATEGORICAL___nom_7___af5b23f9e": 1649, "13___CATEGORICAL___nom_7___af5c8eb4f": 1650, "13___CATEGORICAL___nom_7___af991d8c3": 1651, "13___CATEGORICAL___nom_7___afc659a2f": 1652, "13___CATEGORICAL___nom_7___b0304151b": 1653, "13___CATEGORICAL___nom_7___b042166d5": 1654, "13___CATEGORICAL___nom_7___b04ce2508": 1655, "13___CATEGORICAL___nom_7___b05853f24": 1656, "13___CATEGORICAL___nom_7___b0714c1a4": 1657, "13___CATEGORICAL___nom_7___b089d5143": 1658, "13___CATEGORICAL___nom_7___b09ebe1d6": 1659, "13___CATEGORICAL___nom_7___b0aeeaef9": 1660, "13___CATEGORICAL___nom_7___b0fad10d7": 1661, "13___CATEGORICAL___nom_7___b13742276": 1662, "13___CATEGORICAL___nom_7___b14b61f97": 1663, "13___CATEGORICAL___nom_7___b19f989eb": 1664, "13___CATEGORICAL___nom_7___b1e0ffc10": 1665, "13___CATEGORICAL___nom_7___b23e16a87": 1666, "13___CATEGORICAL___nom_7___b2a7c23b8": 1667, "13___CATEGORICAL___nom_7___b34fc1d43": 1668, "13___CATEGORICAL___nom_7___b387cc032": 1669, "13___CATEGORICAL___nom_7___b3b7c8b11": 1670, "13___CATEGORICAL___nom_7___b40974389": 1671, "13___CATEGORICAL___nom_7___b47acf119": 1672, "13___CATEGORICAL___nom_7___b48349b5b": 1673, "13___CATEGORICAL___nom_7___b4c14dea3": 1674, "13___CATEGORICAL___nom_7___b50676891": 1675, "13___CATEGORICAL___nom_7___b5087df8b": 1676, "13___CATEGORICAL___nom_7___b5171b9c1": 1677, "13___CATEGORICAL___nom_7___b6471dd44": 1678, "13___CATEGORICAL___nom_7___b68c2446b": 1679, "13___CATEGORICAL___nom_7___b6a49ddd1": 1680, "13___CATEGORICAL___nom_7___b6fa7faab": 1681, "13___CATEGORICAL___nom_7___b7a8563c3": 1682, "13___CATEGORICAL___nom_7___b7ae7dc82": 1683, "13___CATEGORICAL___nom_7___b80d2db07": 1684, "13___CATEGORICAL___nom_7___b8240e94d": 1685, "13___CATEGORICAL___nom_7___b87acaaed": 1686, "13___CATEGORICAL___nom_7___b8a9ee852": 1687, "13___CATEGORICAL___nom_7___b900d40f1": 1688, "13___CATEGORICAL___nom_7___b976fa2c2": 1689, "13___CATEGORICAL___nom_7___b99bdfec2": 1690, "13___CATEGORICAL___nom_7___b9b5e2958": 1691, "13___CATEGORICAL___nom_7___b9b8becf9": 1692, "13___CATEGORICAL___nom_7___ba0dcd511": 1693, "13___CATEGORICAL___nom_7___ba636104c": 1694, "13___CATEGORICAL___nom_7___ba9901303": 1695, "13___CATEGORICAL___nom_7___ba9dfc87e": 1696, "13___CATEGORICAL___nom_7___bb0bdaca6": 1697, "13___CATEGORICAL___nom_7___bb4e2bb0f": 1698, "13___CATEGORICAL___nom_7___bb5a78030": 1699, "13___CATEGORICAL___nom_7___bb836a6ec": 1700, "13___CATEGORICAL___nom_7___bb8e9193e": 1701, "13___CATEGORICAL___nom_7___bba91045f": 1702, "13___CATEGORICAL___nom_7___bbaf3de19": 1703, "13___CATEGORICAL___nom_7___bc05442e1": 1704, "13___CATEGORICAL___nom_7___bc3632840": 1705, "13___CATEGORICAL___nom_7___bc38729ef": 1706, "13___CATEGORICAL___nom_7___bc46b66a9": 1707, "13___CATEGORICAL___nom_7___bc6829ee3": 1708, "13___CATEGORICAL___nom_7___bc9fd0175": 1709, "13___CATEGORICAL___nom_7___bce324061": 1710, "13___CATEGORICAL___nom_7___bce7d2952": 1711, "13___CATEGORICAL___nom_7___bd5f24b8a": 1712, "13___CATEGORICAL___nom_7___bd9e34dc3": 1713, "13___CATEGORICAL___nom_7___bde924c27": 1714, "13___CATEGORICAL___nom_7___be1ab8f53": 1715, "13___CATEGORICAL___nom_7___be2582710": 1716, "13___CATEGORICAL___nom_7___be5254982": 1717, "13___CATEGORICAL___nom_7___be75a496b": 1718, "13___CATEGORICAL___nom_7___be87e7dad": 1719, "13___CATEGORICAL___nom_7___be90beeea": 1720, "13___CATEGORICAL___nom_7___beb450614": 1721, "13___CATEGORICAL___nom_7___bebb3afec": 1722, "13___CATEGORICAL___nom_7___bf4479f1c": 1723, "13___CATEGORICAL___nom_7___bf6088f9f": 1724, "13___CATEGORICAL___nom_7___bf79bfda3": 1725, "13___CATEGORICAL___nom_7___bf899de6f": 1726, "13___CATEGORICAL___nom_7___bfa59895f": 1727, "13___CATEGORICAL___nom_7___bfcd16c3e": 1728, "13___CATEGORICAL___nom_7___bffc9bceb": 1729, "13___CATEGORICAL___nom_7___c01dd4885": 1730, "13___CATEGORICAL___nom_7___c04e1ba14": 1731, "13___CATEGORICAL___nom_7___c073efb40": 1732, "13___CATEGORICAL___nom_7___c0981047a": 1733, "13___CATEGORICAL___nom_7___c0a98f200": 1734, "13___CATEGORICAL___nom_7___c0f0163d0": 1735, "13___CATEGORICAL___nom_7___c0f017507": 1736, "13___CATEGORICAL___nom_7___c1009ae3b": 1737, "13___CATEGORICAL___nom_7___c1227b3f1": 1738, "13___CATEGORICAL___nom_7___c1739946d": 1739, "13___CATEGORICAL___nom_7___c17f0bea5": 1740, "13___CATEGORICAL___nom_7___c1cbba46b": 1741, "13___CATEGORICAL___nom_7___c1cc0b554": 1742, "13___CATEGORICAL___nom_7___c2091c1eb": 1743, "13___CATEGORICAL___nom_7___c228ac4d5": 1744, "13___CATEGORICAL___nom_7___c2759379b": 1745, "13___CATEGORICAL___nom_7___c297ebda6": 1746, "13___CATEGORICAL___nom_7___c3112515d": 1747, "13___CATEGORICAL___nom_7___c320b0509": 1748, "13___CATEGORICAL___nom_7___c344f4362": 1749, "13___CATEGORICAL___nom_7___c385a4e29": 1750, "13___CATEGORICAL___nom_7___c399f2457": 1751, "13___CATEGORICAL___nom_7___c3a05d1e3": 1752, "13___CATEGORICAL___nom_7___c41dd2bb6": 1753, "13___CATEGORICAL___nom_7___c425897ff": 1754, "13___CATEGORICAL___nom_7___c4455f4a8": 1755, "13___CATEGORICAL___nom_7___c4465b0df": 1756, "13___CATEGORICAL___nom_7___c44dcf0d4": 1757, "13___CATEGORICAL___nom_7___c44e2e27f": 1758, "13___CATEGORICAL___nom_7___c44ee82e9": 1759, "13___CATEGORICAL___nom_7___c46d256c2": 1760, "13___CATEGORICAL___nom_7___c4a8e37bb": 1761, "13___CATEGORICAL___nom_7___c4c73c899": 1762, "13___CATEGORICAL___nom_7___c50b8657f": 1763, "13___CATEGORICAL___nom_7___c54e44b99": 1764, "13___CATEGORICAL___nom_7___c55ec51a8": 1765, "13___CATEGORICAL___nom_7___c5632b657": 1766, "13___CATEGORICAL___nom_7___c603d9c1a": 1767, "13___CATEGORICAL___nom_7___c6344321c": 1768, "13___CATEGORICAL___nom_7___c65870db3": 1769, "13___CATEGORICAL___nom_7___c6587685d": 1770, "13___CATEGORICAL___nom_7___c6aad2fd5": 1771, "13___CATEGORICAL___nom_7___c6dfa929a": 1772, "13___CATEGORICAL___nom_7___c6fd15643": 1773, "13___CATEGORICAL___nom_7___c75a7f5f8": 1774, "13___CATEGORICAL___nom_7___c7830529f": 1775, "13___CATEGORICAL___nom_7___c7858e014": 1776, "13___CATEGORICAL___nom_7___c79fbc620": 1777, "13___CATEGORICAL___nom_7___c7a066345": 1778, "13___CATEGORICAL___nom_7___c840fdc53": 1779, "13___CATEGORICAL___nom_7___c889a5937": 1780, "13___CATEGORICAL___nom_7___c893d29eb": 1781, "13___CATEGORICAL___nom_7___c89888c18": 1782, "13___CATEGORICAL___nom_7___c8ae4ea14": 1783, "13___CATEGORICAL___nom_7___c90ea1419": 1784, "13___CATEGORICAL___nom_7___c92eb0903": 1785, "13___CATEGORICAL___nom_7___c991c5808": 1786, "13___CATEGORICAL___nom_7___c9c278e4c": 1787, "13___CATEGORICAL___nom_7___c9d67c6a2": 1788, "13___CATEGORICAL___nom_7___c9ed7172b": 1789, "13___CATEGORICAL___nom_7___ca1133a6d": 1790, "13___CATEGORICAL___nom_7___ca18098bc": 1791, "13___CATEGORICAL___nom_7___ca56fd6ef": 1792, "13___CATEGORICAL___nom_7___caa9caf90": 1793, "13___CATEGORICAL___nom_7___caa9fe3d5": 1794, "13___CATEGORICAL___nom_7___cab0b4ca9": 1795, "13___CATEGORICAL___nom_7___cafe9ae53": 1796, "13___CATEGORICAL___nom_7___cb16bbc3a": 1797, "13___CATEGORICAL___nom_7___cb5a41416": 1798, "13___CATEGORICAL___nom_7___cb5d42426": 1799, "13___CATEGORICAL___nom_7___cb9bbed08": 1800, "13___CATEGORICAL___nom_7___cbb61d00c": 1801, "13___CATEGORICAL___nom_7___cbca7331d": 1802, "13___CATEGORICAL___nom_7___cbcab7826": 1803, "13___CATEGORICAL___nom_7___cbf14e5c1": 1804, "13___CATEGORICAL___nom_7___cc11c2667": 1805, "13___CATEGORICAL___nom_7___cc13561c3": 1806, "13___CATEGORICAL___nom_7___cc340823c": 1807, "13___CATEGORICAL___nom_7___ccb907da7": 1808, "13___CATEGORICAL___nom_7___cd5c7ef44": 1809, "13___CATEGORICAL___nom_7___cd6ed34ba": 1810, "13___CATEGORICAL___nom_7___cda68a782": 1811, "13___CATEGORICAL___nom_7___cdc34b4e5": 1812, "13___CATEGORICAL___nom_7___cdff51f56": 1813, "13___CATEGORICAL___nom_7___ce310f731": 1814, "13___CATEGORICAL___nom_7___ce4d37a74": 1815, "13___CATEGORICAL___nom_7___ce69dff3b": 1816, "13___CATEGORICAL___nom_7___ce6de97e2": 1817, "13___CATEGORICAL___nom_7___ced4fd70a": 1818, "13___CATEGORICAL___nom_7___cee060674": 1819, "13___CATEGORICAL___nom_7___cf2c53040": 1820, "13___CATEGORICAL___nom_7___cf603fd75": 1821, "13___CATEGORICAL___nom_7___d02a6b0ba": 1822, "13___CATEGORICAL___nom_7___d038b6293": 1823, "13___CATEGORICAL___nom_7___d08e95edb": 1824, "13___CATEGORICAL___nom_7___d09ce80cb": 1825, "13___CATEGORICAL___nom_7___d10553e7e": 1826, "13___CATEGORICAL___nom_7___d12022685": 1827, "13___CATEGORICAL___nom_7___d1586e0e0": 1828, "13___CATEGORICAL___nom_7___d1602b0e3": 1829, "13___CATEGORICAL___nom_7___d1781bc7c": 1830, "13___CATEGORICAL___nom_7___d18fe040f": 1831, "13___CATEGORICAL___nom_7___d1902273e": 1832, "13___CATEGORICAL___nom_7___d20d94a2b": 1833, "13___CATEGORICAL___nom_7___d22846583": 1834, "13___CATEGORICAL___nom_7___d23ee321f": 1835, "13___CATEGORICAL___nom_7___d240afdff": 1836, "13___CATEGORICAL___nom_7___d264f6367": 1837, "13___CATEGORICAL___nom_7___d2a21ad4e": 1838, "13___CATEGORICAL___nom_7___d2d19e1a7": 1839, "13___CATEGORICAL___nom_7___d2d8eabdb": 1840, "13___CATEGORICAL___nom_7___d2fddb57a": 1841, "13___CATEGORICAL___nom_7___d31f87228": 1842, "13___CATEGORICAL___nom_7___d34f13683": 1843, "13___CATEGORICAL___nom_7___d3abce837": 1844, "13___CATEGORICAL___nom_7___d3bb8adbd": 1845, "13___CATEGORICAL___nom_7___d435a8690": 1846, "13___CATEGORICAL___nom_7___d44d10b4c": 1847, "13___CATEGORICAL___nom_7___d4821d013": 1848, "13___CATEGORICAL___nom_7___d4adff695": 1849, "13___CATEGORICAL___nom_7___d4f49cb0e": 1850, "13___CATEGORICAL___nom_7___d538e2731": 1851, "13___CATEGORICAL___nom_7___d54f42570": 1852, "13___CATEGORICAL___nom_7___d590d385d": 1853, "13___CATEGORICAL___nom_7___d593bd66e": 1854, "13___CATEGORICAL___nom_7___d59d731b6": 1855, "13___CATEGORICAL___nom_7___d62be8908": 1856, "13___CATEGORICAL___nom_7___d62ddb2cc": 1857, "13___CATEGORICAL___nom_7___d6325d953": 1858, "13___CATEGORICAL___nom_7___d640f9971": 1859, "13___CATEGORICAL___nom_7___d67c73fce": 1860, "13___CATEGORICAL___nom_7___d7326ea7a": 1861, "13___CATEGORICAL___nom_7___d75bd1f4b": 1862, "13___CATEGORICAL___nom_7___d79621729": 1863, "13___CATEGORICAL___nom_7___d79956ebd": 1864, "13___CATEGORICAL___nom_7___d7a376f1b": 1865, "13___CATEGORICAL___nom_7___d7d3d1589": 1866, "13___CATEGORICAL___nom_7___d7e3d9212": 1867, "13___CATEGORICAL___nom_7___d7f80706c": 1868, "13___CATEGORICAL___nom_7___d8180614b": 1869, "13___CATEGORICAL___nom_7___d829788bf": 1870, "13___CATEGORICAL___nom_7___d82d4d997": 1871, "13___CATEGORICAL___nom_7___d863df6ca": 1872, "13___CATEGORICAL___nom_7___d888dabd2": 1873, "13___CATEGORICAL___nom_7___d8ed36706": 1874, "13___CATEGORICAL___nom_7___d9042b3dd": 1875, "13___CATEGORICAL___nom_7___d95b64413": 1876, "13___CATEGORICAL___nom_7___d96e5093d": 1877, "13___CATEGORICAL___nom_7___d998d31f1": 1878, "13___CATEGORICAL___nom_7___d99b8ba06": 1879, "13___CATEGORICAL___nom_7___d9bd2ddab": 1880, "13___CATEGORICAL___nom_7___d9d1ced86": 1881, "13___CATEGORICAL___nom_7___d9e7595bb": 1882, "13___CATEGORICAL___nom_7___da3b970aa": 1883, "13___CATEGORICAL___nom_7___da43ab6c2": 1884, "13___CATEGORICAL___nom_7___da44926f5": 1885, "13___CATEGORICAL___nom_7___da7ad33d9": 1886, "13___CATEGORICAL___nom_7___da8e9448f": 1887, "13___CATEGORICAL___nom_7___dac8c3dcc": 1888, "13___CATEGORICAL___nom_7___dacc0d3ee": 1889, "13___CATEGORICAL___nom_7___dadcfe5b8": 1890, "13___CATEGORICAL___nom_7___dae034a7f": 1891, "13___CATEGORICAL___nom_7___daf851ceb": 1892, "13___CATEGORICAL___nom_7___dafcbebd7": 1893, "13___CATEGORICAL___nom_7___db47ba6d3": 1894, "13___CATEGORICAL___nom_7___db871c626": 1895, "13___CATEGORICAL___nom_7___db8d9e064": 1896, "13___CATEGORICAL___nom_7___dbe124244": 1897, "13___CATEGORICAL___nom_7___dc0795ce0": 1898, "13___CATEGORICAL___nom_7___dcc36a057": 1899, "13___CATEGORICAL___nom_7___dce6c541c": 1900, "13___CATEGORICAL___nom_7___dd9e53e35": 1901, "13___CATEGORICAL___nom_7___ddcd60df1": 1902, "13___CATEGORICAL___nom_7___de8010023": 1903, "13___CATEGORICAL___nom_7___dea92485d": 1904, "13___CATEGORICAL___nom_7___ded54c928": 1905, "13___CATEGORICAL___nom_7___def702c19": 1906, "13___CATEGORICAL___nom_7___df0980add": 1907, "13___CATEGORICAL___nom_7___dfc3aa518": 1908, "13___CATEGORICAL___nom_7___dff007d71": 1909, "13___CATEGORICAL___nom_7___e0570ce05": 1910, "13___CATEGORICAL___nom_7___e0aa2bf61": 1911, "13___CATEGORICAL___nom_7___e0ad1326d": 1912, "13___CATEGORICAL___nom_7___e137ece0a": 1913, "13___CATEGORICAL___nom_7___e14cde7ef": 1914, "13___CATEGORICAL___nom_7___e14d5f3eb": 1915, "13___CATEGORICAL___nom_7___e19103252": 1916, "13___CATEGORICAL___nom_7___e1bdff4c4": 1917, "13___CATEGORICAL___nom_7___e1ea45053": 1918, "13___CATEGORICAL___nom_7___e2662c6c7": 1919, "13___CATEGORICAL___nom_7___e284f6804": 1920, "13___CATEGORICAL___nom_7___e28b7e991": 1921, "13___CATEGORICAL___nom_7___e29db1304": 1922, "13___CATEGORICAL___nom_7___e2be53f4a": 1923, "13___CATEGORICAL___nom_7___e2d4e02e1": 1924, "13___CATEGORICAL___nom_7___e3306fc68": 1925, "13___CATEGORICAL___nom_7___e3fd0c213": 1926, "13___CATEGORICAL___nom_7___e4309571f": 1927, "13___CATEGORICAL___nom_7___e44a8642a": 1928, "13___CATEGORICAL___nom_7___e47776758": 1929, "13___CATEGORICAL___nom_7___e494c08d6": 1930, "13___CATEGORICAL___nom_7___e4ae98c29": 1931, "13___CATEGORICAL___nom_7___e4af09e22": 1932, "13___CATEGORICAL___nom_7___e4f712b17": 1933, "13___CATEGORICAL___nom_7___e53c2bd92": 1934, "13___CATEGORICAL___nom_7___e561794ca": 1935, "13___CATEGORICAL___nom_7___e569f492e": 1936, "13___CATEGORICAL___nom_7___e58a026bb": 1937, "13___CATEGORICAL___nom_7___e5e25d2c6": 1938, "13___CATEGORICAL___nom_7___e5f135612": 1939, "13___CATEGORICAL___nom_7___e5ff2a65e": 1940, "13___CATEGORICAL___nom_7___e65a0c3c5": 1941, "13___CATEGORICAL___nom_7___e669192b9": 1942, "13___CATEGORICAL___nom_7___e6bd86830": 1943, "13___CATEGORICAL___nom_7___e700486e7": 1944, "13___CATEGORICAL___nom_7___e7619f99d": 1945, "13___CATEGORICAL___nom_7___e78ec50b4": 1946, "13___CATEGORICAL___nom_7___e7a605132": 1947, "13___CATEGORICAL___nom_7___e7ca9f823": 1948, "13___CATEGORICAL___nom_7___e8d8ed94a": 1949, "13___CATEGORICAL___nom_7___e8dad647e": 1950, "13___CATEGORICAL___nom_7___e8e8b6747": 1951, "13___CATEGORICAL___nom_7___e94478990": 1952, "13___CATEGORICAL___nom_7___e957f975c": 1953, "13___CATEGORICAL___nom_7___e95b0eacb": 1954, "13___CATEGORICAL___nom_7___e97321a57": 1955, "13___CATEGORICAL___nom_7___ead3f8d51": 1956, "13___CATEGORICAL___nom_7___eb28ddf49": 1957, "13___CATEGORICAL___nom_7___eb50b1f32": 1958, "13___CATEGORICAL___nom_7___eb7f63824": 1959, "13___CATEGORICAL___nom_7___ec0d9b6e3": 1960, "13___CATEGORICAL___nom_7___ec387fa89": 1961, "13___CATEGORICAL___nom_7___ec54fcb5c": 1962, "13___CATEGORICAL___nom_7___ec69236eb": 1963, "13___CATEGORICAL___nom_7___ecb2421a4": 1964, "13___CATEGORICAL___nom_7___ecf835ab7": 1965, "13___CATEGORICAL___nom_7___ed1a5c70c": 1966, "13___CATEGORICAL___nom_7___ed6f22581": 1967, "13___CATEGORICAL___nom_7___edc312c0e": 1968, "13___CATEGORICAL___nom_7___edc7ffe95": 1969, "13___CATEGORICAL___nom_7___edde75180": 1970, "13___CATEGORICAL___nom_7___eeba65bef": 1971, "13___CATEGORICAL___nom_7___ef19d40b7": 1972, "13___CATEGORICAL___nom_7___ef5910ca3": 1973, "13___CATEGORICAL___nom_7___efd11be19": 1974, "13___CATEGORICAL___nom_7___efe59a830": 1975, "13___CATEGORICAL___nom_7___f0194bee4": 1976, "13___CATEGORICAL___nom_7___f037a1bfd": 1977, "13___CATEGORICAL___nom_7___f068c45b3": 1978, "13___CATEGORICAL___nom_7___f09f9c3a9": 1979, "13___CATEGORICAL___nom_7___f0c830981": 1980, "13___CATEGORICAL___nom_7___f14ea9b76": 1981, "13___CATEGORICAL___nom_7___f16d217c6": 1982, "13___CATEGORICAL___nom_7___f16ff4894": 1983, "13___CATEGORICAL___nom_7___f174961df": 1984, "13___CATEGORICAL___nom_7___f1aec6b64": 1985, "13___CATEGORICAL___nom_7___f1bb0a256": 1986, "13___CATEGORICAL___nom_7___f1bd2fbf3": 1987, "13___CATEGORICAL___nom_7___f21bcfb47": 1988, "13___CATEGORICAL___nom_7___f22620213": 1989, "13___CATEGORICAL___nom_7___f2461066e": 1990, "13___CATEGORICAL___nom_7___f2691d592": 1991, "13___CATEGORICAL___nom_7___f2935290e": 1992, "13___CATEGORICAL___nom_7___f2ad3e302": 1993, "13___CATEGORICAL___nom_7___f2c5f0f26": 1994, "13___CATEGORICAL___nom_7___f31a506ec": 1995, "13___CATEGORICAL___nom_7___f359cfaa7": 1996, "13___CATEGORICAL___nom_7___f393c224a": 1997, "13___CATEGORICAL___nom_7___f415463b7": 1998, "13___CATEGORICAL___nom_7___f41956813": 1999, "13___CATEGORICAL___nom_7___f477d5857": 2000, "13___CATEGORICAL___nom_7___f4ae29b7d": 2001, "13___CATEGORICAL___nom_7___f53ce6da5": 2002, "13___CATEGORICAL___nom_7___f5804b8e6": 2003, "13___CATEGORICAL___nom_7___f654b0e9b": 2004, "13___CATEGORICAL___nom_7___f65b8f5ca": 2005, "13___CATEGORICAL___nom_7___f66675c18": 2006, "13___CATEGORICAL___nom_7___f68715780": 2007, "13___CATEGORICAL___nom_7___f6ce51725": 2008, "13___CATEGORICAL___nom_7___f6ddab67f": 2009, "13___CATEGORICAL___nom_7___f6f9bfc77": 2010, "13___CATEGORICAL___nom_7___f7088f803": 2011, "13___CATEGORICAL___nom_7___f70988daa": 2012, "13___CATEGORICAL___nom_7___f718e6e9c": 2013, "13___CATEGORICAL___nom_7___f760c0b42": 2014, "13___CATEGORICAL___nom_7___f8140ebfd": 2015, "13___CATEGORICAL___nom_7___f81532d6e": 2016, "13___CATEGORICAL___nom_7___f865d9ec5": 2017, "13___CATEGORICAL___nom_7___f8a8acc8d": 2018, "13___CATEGORICAL___nom_7___f8a8c1204": 2019, "13___CATEGORICAL___nom_7___f8c2142c2": 2020, "13___CATEGORICAL___nom_7___f8d54b1e6": 2021, "13___CATEGORICAL___nom_7___f911cbe30": 2022, "13___CATEGORICAL___nom_7___f92e1c054": 2023, "13___CATEGORICAL___nom_7___f98009f60": 2024, "13___CATEGORICAL___nom_7___f9a2ec016": 2025, "13___CATEGORICAL___nom_7___f9d8e6fbc": 2026, "13___CATEGORICAL___nom_7___f9e28a0b9": 2027, "13___CATEGORICAL___nom_7___fa311a2a3": 2028, "13___CATEGORICAL___nom_7___fa32a2d23": 2029, "13___CATEGORICAL___nom_7___fa4714646": 2030, "13___CATEGORICAL___nom_7___fa5ca239e": 2031, "13___CATEGORICAL___nom_7___fa7ec9ef0": 2032, "13___CATEGORICAL___nom_7___fab17b425": 2033, "13___CATEGORICAL___nom_7___faffef3a9": 2034, "13___CATEGORICAL___nom_7___fb05522b9": 2035, "13___CATEGORICAL___nom_7___fb36575c6": 2036, "13___CATEGORICAL___nom_7___fb41d6f9d": 2037, "13___CATEGORICAL___nom_7___fb6716e80": 2038, "13___CATEGORICAL___nom_7___fbc1f9611": 2039, "13___CATEGORICAL___nom_7___fc4c33777": 2040, "13___CATEGORICAL___nom_7___fc879d4aa": 2041, "13___CATEGORICAL___nom_7___fca1988e7": 2042, "13___CATEGORICAL___nom_7___fca9f7eb7": 2043, "13___CATEGORICAL___nom_7___fcba988a0": 2044, "13___CATEGORICAL___nom_7___fcceb793d": 2045, "13___CATEGORICAL___nom_7___fcd030cc2": 2046, "13___CATEGORICAL___nom_7___fcf2b8dce": 2047, "13___CATEGORICAL___nom_7___fd9dd89aa": 2048, "13___CATEGORICAL___nom_7___fda0c1499": 2049, "13___CATEGORICAL___nom_7___fdbaa2c22": 2050, "13___CATEGORICAL___nom_7___fe27cc23d": 2051, "13___CATEGORICAL___nom_7___fe7e29ba1": 2052, "13___CATEGORICAL___nom_7___fef807a3e": 2053, "13___CATEGORICAL___nom_7___ff1165b7a": 2054, "13___CATEGORICAL___nom_7___ff5b35098": 2055, "13___CATEGORICAL___nom_7___ff5db7584": 2056, "13___CATEGORICAL___nom_7___ff6b6817e": 2057, "13___CATEGORICAL___nom_7___ff8d529ff": 2058, "13___CATEGORICAL___nom_7___ffa3210ac": 2059, "13___CATEGORICAL___nom_7___ffe76496e": 2060, "13___CATEGORICAL___nom_7___ffec80a6a": 2061, "14___CATEGORICAL___nom_8___000ae3bea": 2062, "14___CATEGORICAL___nom_8___0012ac11d": 2063, "14___CATEGORICAL___nom_8___002ae26fa": 2064, "14___CATEGORICAL___nom_8___00405ddc2": 2065, "14___CATEGORICAL___nom_8___00435b4d7": 2066, "14___CATEGORICAL___nom_8___005f66bb5": 2067, "14___CATEGORICAL___nom_8___00680a186": 2068, "14___CATEGORICAL___nom_8___007e93327": 2069, "14___CATEGORICAL___nom_8___0107394b0": 2070, "14___CATEGORICAL___nom_8___014347053": 2071, "14___CATEGORICAL___nom_8___0178ac593": 2072, "14___CATEGORICAL___nom_8___017fc2f26": 2073, "14___CATEGORICAL___nom_8___0194a0e30": 2074, "14___CATEGORICAL___nom_8___01a7b34ec": 2075, "14___CATEGORICAL___nom_8___01b9086f7": 2076, "14___CATEGORICAL___nom_8___01b962964": 2077, "14___CATEGORICAL___nom_8___01dfa4ee9": 2078, "14___CATEGORICAL___nom_8___022131130": 2079, "14___CATEGORICAL___nom_8___023143418": 2080, "14___CATEGORICAL___nom_8___0242e99a1": 2081, "14___CATEGORICAL___nom_8___02575b3b3": 2082, "14___CATEGORICAL___nom_8___02974ce39": 2083, "14___CATEGORICAL___nom_8___02d46a6a3": 2084, "14___CATEGORICAL___nom_8___02dd68b90": 2085, "14___CATEGORICAL___nom_8___02f0e0a12": 2086, "14___CATEGORICAL___nom_8___02f3394da": 2087, "14___CATEGORICAL___nom_8___0326b5809": 2088, "14___CATEGORICAL___nom_8___03398d68f": 2089, "14___CATEGORICAL___nom_8___034a71378": 2090, "14___CATEGORICAL___nom_8___0373f1461": 2091, "14___CATEGORICAL___nom_8___03bd793ce": 2092, "14___CATEGORICAL___nom_8___03fae7523": 2093, "14___CATEGORICAL___nom_8___040f00f57": 2094, "14___CATEGORICAL___nom_8___040f926fa": 2095, "14___CATEGORICAL___nom_8___04115e576": 2096, "14___CATEGORICAL___nom_8___0423bd7c4": 2097, "14___CATEGORICAL___nom_8___045f81ebb": 2098, "14___CATEGORICAL___nom_8___04729bec5": 2099, "14___CATEGORICAL___nom_8___047da626d": 2100, "14___CATEGORICAL___nom_8___04bc6fba2": 2101, "14___CATEGORICAL___nom_8___04c77de6c": 2102, "14___CATEGORICAL___nom_8___04f5d0c3e": 2103, "14___CATEGORICAL___nom_8___0503fc10d": 2104, "14___CATEGORICAL___nom_8___0505079cc": 2105, "14___CATEGORICAL___nom_8___0517f0852": 2106, "14___CATEGORICAL___nom_8___052027e6d": 2107, "14___CATEGORICAL___nom_8___053b5acae": 2108, "14___CATEGORICAL___nom_8___057155a1d": 2109, "14___CATEGORICAL___nom_8___0580dfba5": 2110, "14___CATEGORICAL___nom_8___05827b658": 2111, "14___CATEGORICAL___nom_8___0598d7501": 2112, "14___CATEGORICAL___nom_8___05a31d528": 2113, "14___CATEGORICAL___nom_8___05b3ebf52": 2114, "14___CATEGORICAL___nom_8___0605519a1": 2115, "14___CATEGORICAL___nom_8___061a69204": 2116, "14___CATEGORICAL___nom_8___06366367b": 2117, "14___CATEGORICAL___nom_8___064aa7d49": 2118, "14___CATEGORICAL___nom_8___068ae176d": 2119, "14___CATEGORICAL___nom_8___069fd41b7": 2120, "14___CATEGORICAL___nom_8___06aecce86": 2121, "14___CATEGORICAL___nom_8___06b35ce2b": 2122, "14___CATEGORICAL___nom_8___06b4f0f6a": 2123, "14___CATEGORICAL___nom_8___06b7e7cb3": 2124, "14___CATEGORICAL___nom_8___06d21cb44": 2125, "14___CATEGORICAL___nom_8___06e189096": 2126, "14___CATEGORICAL___nom_8___06f5ae149": 2127, "14___CATEGORICAL___nom_8___06f9521a6": 2128, "14___CATEGORICAL___nom_8___0708b0f81": 2129, "14___CATEGORICAL___nom_8___07194a5d9": 2130, "14___CATEGORICAL___nom_8___072ac6d53": 2131, "14___CATEGORICAL___nom_8___075c68fbd": 2132, "14___CATEGORICAL___nom_8___0767e6fee": 2133, "14___CATEGORICAL___nom_8___07802123c": 2134, "14___CATEGORICAL___nom_8___078133e43": 2135, "14___CATEGORICAL___nom_8___07832c0f5": 2136, "14___CATEGORICAL___nom_8___079e91baa": 2137, "14___CATEGORICAL___nom_8___07a517154": 2138, "14___CATEGORICAL___nom_8___07c094416": 2139, "14___CATEGORICAL___nom_8___07f83e288": 2140, "14___CATEGORICAL___nom_8___07fd63014": 2141, "14___CATEGORICAL___nom_8___081d24029": 2142, "14___CATEGORICAL___nom_8___0874302d8": 2143, "14___CATEGORICAL___nom_8___087606369": 2144, "14___CATEGORICAL___nom_8___089a759d4": 2145, "14___CATEGORICAL___nom_8___08b4c6446": 2146, "14___CATEGORICAL___nom_8___08e4d64aa": 2147, "14___CATEGORICAL___nom_8___0904e4be3": 2148, "14___CATEGORICAL___nom_8___090cab3a3": 2149, "14___CATEGORICAL___nom_8___0916922d0": 2150, "14___CATEGORICAL___nom_8___0965792cd": 2151, "14___CATEGORICAL___nom_8___09a1b9d6c": 2152, "14___CATEGORICAL___nom_8___09a3f3a37": 2153, "14___CATEGORICAL___nom_8___09b25b0ac": 2154, "14___CATEGORICAL___nom_8___09bf3131d": 2155, "14___CATEGORICAL___nom_8___09c0c3498": 2156, "14___CATEGORICAL___nom_8___09ca9c02e": 2157, "14___CATEGORICAL___nom_8___0a14ed13e": 2158, "14___CATEGORICAL___nom_8___0a18dc483": 2159, "14___CATEGORICAL___nom_8___0a1aa9839": 2160, "14___CATEGORICAL___nom_8___0a1df5c66": 2161, "14___CATEGORICAL___nom_8___0a6c32ff4": 2162, "14___CATEGORICAL___nom_8___0a7ccad0b": 2163, "14___CATEGORICAL___nom_8___0a9b55656": 2164, "14___CATEGORICAL___nom_8___0aa51702e": 2165, "14___CATEGORICAL___nom_8___0abbcc098": 2166, "14___CATEGORICAL___nom_8___0afef3ea2": 2167, "14___CATEGORICAL___nom_8___0b5e21a98": 2168, "14___CATEGORICAL___nom_8___0b6ec68ff": 2169, "14___CATEGORICAL___nom_8___0b6f592c5": 2170, "14___CATEGORICAL___nom_8___0b86ed30a": 2171, "14___CATEGORICAL___nom_8___0b96d446f": 2172, "14___CATEGORICAL___nom_8___0bc179521": 2173, "14___CATEGORICAL___nom_8___0bcd301f4": 2174, "14___CATEGORICAL___nom_8___0bda6bd36": 2175, "14___CATEGORICAL___nom_8___0be3d6175": 2176, "14___CATEGORICAL___nom_8___0be925697": 2177, "14___CATEGORICAL___nom_8___0bef7c48b": 2178, "14___CATEGORICAL___nom_8___0c1c426ff": 2179, "14___CATEGORICAL___nom_8___0c4a1890e": 2180, "14___CATEGORICAL___nom_8___0c52b42f2": 2181, "14___CATEGORICAL___nom_8___0ca061a36": 2182, "14___CATEGORICAL___nom_8___0cea32104": 2183, "14___CATEGORICAL___nom_8___0cf0b3e18": 2184, "14___CATEGORICAL___nom_8___0d05c62c9": 2185, "14___CATEGORICAL___nom_8___0d34cd0f8": 2186, "14___CATEGORICAL___nom_8___0d3534b3d": 2187, "14___CATEGORICAL___nom_8___0d3b018fe": 2188, "14___CATEGORICAL___nom_8___0d73d1384": 2189, "14___CATEGORICAL___nom_8___0db39daca": 2190, "14___CATEGORICAL___nom_8___0db689f6e": 2191, "14___CATEGORICAL___nom_8___0dba53ec0": 2192, "14___CATEGORICAL___nom_8___0dbfc3a3f": 2193, "14___CATEGORICAL___nom_8___0dec61873": 2194, "14___CATEGORICAL___nom_8___0e1d98ab8": 2195, "14___CATEGORICAL___nom_8___0e333d0d4": 2196, "14___CATEGORICAL___nom_8___0e87f6993": 2197, "14___CATEGORICAL___nom_8___0eb63a23f": 2198, "14___CATEGORICAL___nom_8___0ec45f250": 2199, "14___CATEGORICAL___nom_8___0ed6cb759": 2200, "14___CATEGORICAL___nom_8___0f0da48b8": 2201, "14___CATEGORICAL___nom_8___0f10e03a2": 2202, "14___CATEGORICAL___nom_8___0f3836e8e": 2203, "14___CATEGORICAL___nom_8___0f7b08b20": 2204, "14___CATEGORICAL___nom_8___0fa761198": 2205, "14___CATEGORICAL___nom_8___10088ccc0": 2206, "14___CATEGORICAL___nom_8___1020bb688": 2207, "14___CATEGORICAL___nom_8___106424365": 2208, "14___CATEGORICAL___nom_8___1086ce405": 2209, "14___CATEGORICAL___nom_8___10a85618e": 2210, "14___CATEGORICAL___nom_8___10b94d8e0": 2211, "14___CATEGORICAL___nom_8___1108bcd6c": 2212, "14___CATEGORICAL___nom_8___110ab8f08": 2213, "14___CATEGORICAL___nom_8___112d80fd7": 2214, "14___CATEGORICAL___nom_8___1162dfd0e": 2215, "14___CATEGORICAL___nom_8___117173d83": 2216, "14___CATEGORICAL___nom_8___11a1fe9b2": 2217, "14___CATEGORICAL___nom_8___11cc9bf56": 2218, "14___CATEGORICAL___nom_8___11dad1176": 2219, "14___CATEGORICAL___nom_8___11e051b41": 2220, "14___CATEGORICAL___nom_8___120c4a79b": 2221, "14___CATEGORICAL___nom_8___120d118ae": 2222, "14___CATEGORICAL___nom_8___12128339c": 2223, "14___CATEGORICAL___nom_8___1222b1a2b": 2224, "14___CATEGORICAL___nom_8___123450b5d": 2225, "14___CATEGORICAL___nom_8___1251aedb1": 2226, "14___CATEGORICAL___nom_8___126681784": 2227, "14___CATEGORICAL___nom_8___127af6795": 2228, "14___CATEGORICAL___nom_8___12930d58b": 2229, "14___CATEGORICAL___nom_8___129c2c018": 2230, "14___CATEGORICAL___nom_8___12b0ea3e2": 2231, "14___CATEGORICAL___nom_8___12f905248": 2232, "14___CATEGORICAL___nom_8___12f99703b": 2233, "14___CATEGORICAL___nom_8___1344ee64d": 2234, "14___CATEGORICAL___nom_8___13497b85f": 2235, "14___CATEGORICAL___nom_8___1387972a9": 2236, "14___CATEGORICAL___nom_8___139b4f695": 2237, "14___CATEGORICAL___nom_8___13acbf9a6": 2238, "14___CATEGORICAL___nom_8___13bca5ef4": 2239, "14___CATEGORICAL___nom_8___141536e9f": 2240, "14___CATEGORICAL___nom_8___142e4b92c": 2241, "14___CATEGORICAL___nom_8___1440a7319": 2242, "14___CATEGORICAL___nom_8___144d2efbd": 2243, "14___CATEGORICAL___nom_8___144f0ef40": 2244, "14___CATEGORICAL___nom_8___1470798e4": 2245, "14___CATEGORICAL___nom_8___1484cacf0": 2246, "14___CATEGORICAL___nom_8___14d9f495f": 2247, "14___CATEGORICAL___nom_8___14fea6768": 2248, "14___CATEGORICAL___nom_8___15091badf": 2249, "14___CATEGORICAL___nom_8___1511f8a17": 2250, "14___CATEGORICAL___nom_8___1557532cf": 2251, "14___CATEGORICAL___nom_8___1557e8a19": 2252, "14___CATEGORICAL___nom_8___15721f3b0": 2253, "14___CATEGORICAL___nom_8___1584fa610": 2254, "14___CATEGORICAL___nom_8___158a32205": 2255, "14___CATEGORICAL___nom_8___159c9a35f": 2256, "14___CATEGORICAL___nom_8___15a93c1b4": 2257, "14___CATEGORICAL___nom_8___15c80c8e3": 2258, "14___CATEGORICAL___nom_8___15cecf367": 2259, "14___CATEGORICAL___nom_8___1605fa342": 2260, "14___CATEGORICAL___nom_8___16082fc72": 2261, "14___CATEGORICAL___nom_8___161a079dc": 2262, "14___CATEGORICAL___nom_8___16236d6d1": 2263, "14___CATEGORICAL___nom_8___1623ef693": 2264, "14___CATEGORICAL___nom_8___166afba00": 2265, "14___CATEGORICAL___nom_8___166ddd303": 2266, "14___CATEGORICAL___nom_8___168c04dad": 2267, "14___CATEGORICAL___nom_8___16ba64de8": 2268, "14___CATEGORICAL___nom_8___16ebbbb31": 2269, "14___CATEGORICAL___nom_8___1707513a6": 2270, "14___CATEGORICAL___nom_8___172d56f86": 2271, "14___CATEGORICAL___nom_8___174a4adbe": 2272, "14___CATEGORICAL___nom_8___1765b7667": 2273, "14___CATEGORICAL___nom_8___17660694b": 2274, "14___CATEGORICAL___nom_8___1778df329": 2275, "14___CATEGORICAL___nom_8___178ac6030": 2276, "14___CATEGORICAL___nom_8___17b88fbdb": 2277, "14___CATEGORICAL___nom_8___17ba84114": 2278, "14___CATEGORICAL___nom_8___17c65fc15": 2279, "14___CATEGORICAL___nom_8___17d59b19a": 2280, "14___CATEGORICAL___nom_8___17e6191eb": 2281, "14___CATEGORICAL___nom_8___17fe8590c": 2282, "14___CATEGORICAL___nom_8___182a1fd8c": 2283, "14___CATEGORICAL___nom_8___18718e2cb": 2284, "14___CATEGORICAL___nom_8___1884e8810": 2285, "14___CATEGORICAL___nom_8___18a5af70f": 2286, "14___CATEGORICAL___nom_8___18bec6f9f": 2287, "14___CATEGORICAL___nom_8___18cad4b91": 2288, "14___CATEGORICAL___nom_8___18cf0e061": 2289, "14___CATEGORICAL___nom_8___18da2956d": 2290, "14___CATEGORICAL___nom_8___18db03d49": 2291, "14___CATEGORICAL___nom_8___18e704db3": 2292, "14___CATEGORICAL___nom_8___190a56e5e": 2293, "14___CATEGORICAL___nom_8___19425753f": 2294, "14___CATEGORICAL___nom_8___1942cd98b": 2295, "14___CATEGORICAL___nom_8___1952abaa1": 2296, "14___CATEGORICAL___nom_8___196f7d880": 2297, "14___CATEGORICAL___nom_8___1984d519a": 2298, "14___CATEGORICAL___nom_8___19919ff9d": 2299, "14___CATEGORICAL___nom_8___19a7677f3": 2300, "14___CATEGORICAL___nom_8___19b18225b": 2301, "14___CATEGORICAL___nom_8___19bcc3b69": 2302, "14___CATEGORICAL___nom_8___19c6cda47": 2303, "14___CATEGORICAL___nom_8___19ca0fedb": 2304, "14___CATEGORICAL___nom_8___19d1a424d": 2305, "14___CATEGORICAL___nom_8___19d68b691": 2306, "14___CATEGORICAL___nom_8___19d80b0b0": 2307, "14___CATEGORICAL___nom_8___19d90bd44": 2308, "14___CATEGORICAL___nom_8___1a2f9e277": 2309, "14___CATEGORICAL___nom_8___1a2fd4686": 2310, "14___CATEGORICAL___nom_8___1a4009324": 2311, "14___CATEGORICAL___nom_8___1a45ccf64": 2312, "14___CATEGORICAL___nom_8___1a4b42ed5": 2313, "14___CATEGORICAL___nom_8___1a51294a9": 2314, "14___CATEGORICAL___nom_8___1a5d33f00": 2315, "14___CATEGORICAL___nom_8___1a932b6e2": 2316, "14___CATEGORICAL___nom_8___1aa8ca97f": 2317, "14___CATEGORICAL___nom_8___1aae3a568": 2318, "14___CATEGORICAL___nom_8___1abfd700c": 2319, "14___CATEGORICAL___nom_8___1ac0db361": 2320, "14___CATEGORICAL___nom_8___1acbefae5": 2321, "14___CATEGORICAL___nom_8___1ad199969": 2322, "14___CATEGORICAL___nom_8___1ad530ea7": 2323, "14___CATEGORICAL___nom_8___1b0746630": 2324, "14___CATEGORICAL___nom_8___1b45dc4ac": 2325, "14___CATEGORICAL___nom_8___1b5175745": 2326, "14___CATEGORICAL___nom_8___1b5476deb": 2327, "14___CATEGORICAL___nom_8___1b812569c": 2328, "14___CATEGORICAL___nom_8___1b9339c49": 2329, "14___CATEGORICAL___nom_8___1b9c7e71f": 2330, "14___CATEGORICAL___nom_8___1bb1614b5": 2331, "14___CATEGORICAL___nom_8___1bb78b74b": 2332, "14___CATEGORICAL___nom_8___1bf9aa606": 2333, "14___CATEGORICAL___nom_8___1c142e92a": 2334, "14___CATEGORICAL___nom_8___1c3349adc": 2335, "14___CATEGORICAL___nom_8___1c4e05d9d": 2336, "14___CATEGORICAL___nom_8___1c6108211": 2337, "14___CATEGORICAL___nom_8___1c6ab243e": 2338, "14___CATEGORICAL___nom_8___1c9788deb": 2339, "14___CATEGORICAL___nom_8___1caff0cc7": 2340, "14___CATEGORICAL___nom_8___1cc45142a": 2341, "14___CATEGORICAL___nom_8___1ceaac569": 2342, "14___CATEGORICAL___nom_8___1d3889dcb": 2343, "14___CATEGORICAL___nom_8___1d74cabd7": 2344, "14___CATEGORICAL___nom_8___1d869e3d5": 2345, "14___CATEGORICAL___nom_8___1dab43b44": 2346, "14___CATEGORICAL___nom_8___1dc8069e1": 2347, "14___CATEGORICAL___nom_8___1dc87a5c6": 2348, "14___CATEGORICAL___nom_8___1e0d7f004": 2349, "14___CATEGORICAL___nom_8___1e32a822f": 2350, "14___CATEGORICAL___nom_8___1e48caa58": 2351, "14___CATEGORICAL___nom_8___1e8a3fd5b": 2352, "14___CATEGORICAL___nom_8___1e9e6552b": 2353, "14___CATEGORICAL___nom_8___1ec0d0bc6": 2354, "14___CATEGORICAL___nom_8___1ef0c04bc": 2355, "14___CATEGORICAL___nom_8___1ef6c89ef": 2356, "14___CATEGORICAL___nom_8___1f0e04fd1": 2357, "14___CATEGORICAL___nom_8___1f114e3a3": 2358, "14___CATEGORICAL___nom_8___1f1db0595": 2359, "14___CATEGORICAL___nom_8___1f28b4c79": 2360, "14___CATEGORICAL___nom_8___1f2af5b88": 2361, "14___CATEGORICAL___nom_8___1f71a5eee": 2362, "14___CATEGORICAL___nom_8___1f820c7ce": 2363, "14___CATEGORICAL___nom_8___203943741": 2364, "14___CATEGORICAL___nom_8___203ed591a": 2365, "14___CATEGORICAL___nom_8___2041981b1": 2366, "14___CATEGORICAL___nom_8___2042108a3": 2367, "14___CATEGORICAL___nom_8___206c7e0ed": 2368, "14___CATEGORICAL___nom_8___20855d5b6": 2369, "14___CATEGORICAL___nom_8___208fbe9c8": 2370, "14___CATEGORICAL___nom_8___20a3054f7": 2371, "14___CATEGORICAL___nom_8___20a61d808": 2372, "14___CATEGORICAL___nom_8___20b649769": 2373, "14___CATEGORICAL___nom_8___2113a9e62": 2374, "14___CATEGORICAL___nom_8___211c0ee88": 2375, "14___CATEGORICAL___nom_8___2137bfaa7": 2376, "14___CATEGORICAL___nom_8___2189cc4c5": 2377, "14___CATEGORICAL___nom_8___2192087a7": 2378, "14___CATEGORICAL___nom_8___219a8ad5a": 2379, "14___CATEGORICAL___nom_8___21b4be473": 2380, "14___CATEGORICAL___nom_8___21cc4964d": 2381, "14___CATEGORICAL___nom_8___21cce4453": 2382, "14___CATEGORICAL___nom_8___21e3acad4": 2383, "14___CATEGORICAL___nom_8___21ec5c2ed": 2384, "14___CATEGORICAL___nom_8___21ec960fb": 2385, "14___CATEGORICAL___nom_8___21f18f1d1": 2386, "14___CATEGORICAL___nom_8___220dff62d": 2387, "14___CATEGORICAL___nom_8___2211f918c": 2388, "14___CATEGORICAL___nom_8___223ebba50": 2389, "14___CATEGORICAL___nom_8___225f5bdfc": 2390, "14___CATEGORICAL___nom_8___22870eef4": 2391, "14___CATEGORICAL___nom_8___2287c2995": 2392, "14___CATEGORICAL___nom_8___22b85e2c0": 2393, "14___CATEGORICAL___nom_8___22bdcae27": 2394, "14___CATEGORICAL___nom_8___232367a6e": 2395, "14___CATEGORICAL___nom_8___233e9e3a7": 2396, "14___CATEGORICAL___nom_8___235c5f246": 2397, "14___CATEGORICAL___nom_8___236a73b56": 2398, "14___CATEGORICAL___nom_8___2389ebd9c": 2399, "14___CATEGORICAL___nom_8___23931700e": 2400, "14___CATEGORICAL___nom_8___239a441d9": 2401, "14___CATEGORICAL___nom_8___24469b3f7": 2402, "14___CATEGORICAL___nom_8___2447d128b": 2403, "14___CATEGORICAL___nom_8___24570db3d": 2404, "14___CATEGORICAL___nom_8___251520f28": 2405, "14___CATEGORICAL___nom_8___2579eba88": 2406, "14___CATEGORICAL___nom_8___259aba49b": 2407, "14___CATEGORICAL___nom_8___25cfc0d91": 2408, "14___CATEGORICAL___nom_8___25d6d251f": 2409, "14___CATEGORICAL___nom_8___25fd1f892": 2410, "14___CATEGORICAL___nom_8___264d5619f": 2411, "14___CATEGORICAL___nom_8___264e251b9": 2412, "14___CATEGORICAL___nom_8___265b7da28": 2413, "14___CATEGORICAL___nom_8___26745ea84": 2414, "14___CATEGORICAL___nom_8___26a23df3e": 2415, "14___CATEGORICAL___nom_8___2708074e3": 2416, "14___CATEGORICAL___nom_8___270ab7c50": 2417, "14___CATEGORICAL___nom_8___274ff362e": 2418, "14___CATEGORICAL___nom_8___2778e2ad4": 2419, "14___CATEGORICAL___nom_8___27cc6ec6e": 2420, "14___CATEGORICAL___nom_8___27dc32aaa": 2421, "14___CATEGORICAL___nom_8___27edab94e": 2422, "14___CATEGORICAL___nom_8___283996563": 2423, "14___CATEGORICAL___nom_8___289126ec7": 2424, "14___CATEGORICAL___nom_8___28d09cf93": 2425, "14___CATEGORICAL___nom_8___2912d0fbb": 2426, "14___CATEGORICAL___nom_8___29217b709": 2427, "14___CATEGORICAL___nom_8___2930ef981": 2428, "14___CATEGORICAL___nom_8___29375e700": 2429, "14___CATEGORICAL___nom_8___2945cb4e9": 2430, "14___CATEGORICAL___nom_8___299ac7761": 2431, "14___CATEGORICAL___nom_8___29a8870be": 2432, "14___CATEGORICAL___nom_8___29df6c27e": 2433, "14___CATEGORICAL___nom_8___29e1d2686": 2434, "14___CATEGORICAL___nom_8___29f201d51": 2435, "14___CATEGORICAL___nom_8___2a291d6ec": 2436, "14___CATEGORICAL___nom_8___2a3a0e335": 2437, "14___CATEGORICAL___nom_8___2a4274c22": 2438, "14___CATEGORICAL___nom_8___2aa7183f7": 2439, "14___CATEGORICAL___nom_8___2b32f61e5": 2440, "14___CATEGORICAL___nom_8___2b45a10bd": 2441, "14___CATEGORICAL___nom_8___2b4c61b8a": 2442, "14___CATEGORICAL___nom_8___2b4ca4eac": 2443, "14___CATEGORICAL___nom_8___2b80d01c3": 2444, "14___CATEGORICAL___nom_8___2b81d4497": 2445, "14___CATEGORICAL___nom_8___2baf4db76": 2446, "14___CATEGORICAL___nom_8___2c15d0173": 2447, "14___CATEGORICAL___nom_8___2c7e0ab24": 2448, "14___CATEGORICAL___nom_8___2c906f303": 2449, "14___CATEGORICAL___nom_8___2c9a93282": 2450, "14___CATEGORICAL___nom_8___2cd2d60cb": 2451, "14___CATEGORICAL___nom_8___2d10dbc79": 2452, "14___CATEGORICAL___nom_8___2d2b020a7": 2453, "14___CATEGORICAL___nom_8___2d3382ac9": 2454, "14___CATEGORICAL___nom_8___2d585d017": 2455, "14___CATEGORICAL___nom_8___2d6f6f9c2": 2456, "14___CATEGORICAL___nom_8___2d8fccf5c": 2457, "14___CATEGORICAL___nom_8___2d9718918": 2458, "14___CATEGORICAL___nom_8___2db30d69b": 2459, "14___CATEGORICAL___nom_8___2e2f8320b": 2460, "14___CATEGORICAL___nom_8___2e585b16b": 2461, "14___CATEGORICAL___nom_8___2e9b9ce68": 2462, "14___CATEGORICAL___nom_8___2eadd99ab": 2463, "14___CATEGORICAL___nom_8___2ec937b3d": 2464, "14___CATEGORICAL___nom_8___2ed07a37f": 2465, "14___CATEGORICAL___nom_8___2ed48a17e": 2466, "14___CATEGORICAL___nom_8___2ee516f1f": 2467, "14___CATEGORICAL___nom_8___2efa1834c": 2468, "14___CATEGORICAL___nom_8___2f5ca690f": 2469, "14___CATEGORICAL___nom_8___2f8bd0da6": 2470, "14___CATEGORICAL___nom_8___2f9c8b8e2": 2471, "14___CATEGORICAL___nom_8___2fb0adf23": 2472, "14___CATEGORICAL___nom_8___2fb498287": 2473, "14___CATEGORICAL___nom_8___2fb528fb8": 2474, "14___CATEGORICAL___nom_8___2fb537aa8": 2475, "14___CATEGORICAL___nom_8___2fbd97ec3": 2476, "14___CATEGORICAL___nom_8___2fc5662a4": 2477, "14___CATEGORICAL___nom_8___30079b695": 2478, "14___CATEGORICAL___nom_8___3025495cf": 2479, "14___CATEGORICAL___nom_8___3032ce76e": 2480, "14___CATEGORICAL___nom_8___30424aedf": 2481, "14___CATEGORICAL___nom_8___305760111": 2482, "14___CATEGORICAL___nom_8___30827346a": 2483, "14___CATEGORICAL___nom_8___30c9c4d3a": 2484, "14___CATEGORICAL___nom_8___311c36da6": 2485, "14___CATEGORICAL___nom_8___31612394c": 2486, "14___CATEGORICAL___nom_8___319a6e737": 2487, "14___CATEGORICAL___nom_8___31a10fcfc": 2488, "14___CATEGORICAL___nom_8___31b8dad7a": 2489, "14___CATEGORICAL___nom_8___31e7314d6": 2490, "14___CATEGORICAL___nom_8___32026b755": 2491, "14___CATEGORICAL___nom_8___322c52e98": 2492, "14___CATEGORICAL___nom_8___322e03b73": 2493, "14___CATEGORICAL___nom_8___327192ea8": 2494, "14___CATEGORICAL___nom_8___32987295f": 2495, "14___CATEGORICAL___nom_8___32a22810c": 2496, "14___CATEGORICAL___nom_8___32e87c9d3": 2497, "14___CATEGORICAL___nom_8___3305a4be8": 2498, "14___CATEGORICAL___nom_8___330650bb5": 2499, "14___CATEGORICAL___nom_8___33162eaf5": 2500, "14___CATEGORICAL___nom_8___331722260": 2501, "14___CATEGORICAL___nom_8___33193b0ef": 2502, "14___CATEGORICAL___nom_8___3320ed3a6": 2503, "14___CATEGORICAL___nom_8___3326ada36": 2504, "14___CATEGORICAL___nom_8___333f46907": 2505, "14___CATEGORICAL___nom_8___33818a734": 2506, "14___CATEGORICAL___nom_8___33bee2ff6": 2507, "14___CATEGORICAL___nom_8___33cc4c6c7": 2508, "14___CATEGORICAL___nom_8___33f6dd946": 2509, "14___CATEGORICAL___nom_8___340607b49": 2510, "14___CATEGORICAL___nom_8___3408599ff": 2511, "14___CATEGORICAL___nom_8___34109cc81": 2512, "14___CATEGORICAL___nom_8___3427141f5": 2513, "14___CATEGORICAL___nom_8___343055897": 2514, "14___CATEGORICAL___nom_8___34a829c1c": 2515, "14___CATEGORICAL___nom_8___34b21e6f3": 2516, "14___CATEGORICAL___nom_8___34c421560": 2517, "14___CATEGORICAL___nom_8___34cba6dfb": 2518, "14___CATEGORICAL___nom_8___34ccf9b13": 2519, "14___CATEGORICAL___nom_8___34eba611a": 2520, "14___CATEGORICAL___nom_8___3532dd238": 2521, "14___CATEGORICAL___nom_8___354890188": 2522, "14___CATEGORICAL___nom_8___355dfde23": 2523, "14___CATEGORICAL___nom_8___35f11fb6b": 2524, "14___CATEGORICAL___nom_8___360508b3e": 2525, "14___CATEGORICAL___nom_8___36231af84": 2526, "14___CATEGORICAL___nom_8___36533a93e": 2527, "14___CATEGORICAL___nom_8___3678eb151": 2528, "14___CATEGORICAL___nom_8___3691833c1": 2529, "14___CATEGORICAL___nom_8___36ba00e4b": 2530, "14___CATEGORICAL___nom_8___3765ba02f": 2531, "14___CATEGORICAL___nom_8___37695f3d4": 2532, "14___CATEGORICAL___nom_8___37763aa51": 2533, "14___CATEGORICAL___nom_8___37e441470": 2534, "14___CATEGORICAL___nom_8___37f5af3c4": 2535, "14___CATEGORICAL___nom_8___38113ad1f": 2536, "14___CATEGORICAL___nom_8___382cf7e87": 2537, "14___CATEGORICAL___nom_8___384b0bc0c": 2538, "14___CATEGORICAL___nom_8___3870a4517": 2539, "14___CATEGORICAL___nom_8___3899f3fc9": 2540, "14___CATEGORICAL___nom_8___38a1f319a": 2541, "14___CATEGORICAL___nom_8___38a61d827": 2542, "14___CATEGORICAL___nom_8___38c43201c": 2543, "14___CATEGORICAL___nom_8___3915fff41": 2544, "14___CATEGORICAL___nom_8___391a6acb7": 2545, "14___CATEGORICAL___nom_8___392b7cb4b": 2546, "14___CATEGORICAL___nom_8___3943bacec": 2547, "14___CATEGORICAL___nom_8___397dd0274": 2548, "14___CATEGORICAL___nom_8___398527cd3": 2549, "14___CATEGORICAL___nom_8___39a2133ee": 2550, "14___CATEGORICAL___nom_8___39b91df2e": 2551, "14___CATEGORICAL___nom_8___3a2de46f1": 2552, "14___CATEGORICAL___nom_8___3a84d1033": 2553, "14___CATEGORICAL___nom_8___3a8fba905": 2554, "14___CATEGORICAL___nom_8___3ad9f2e75": 2555, "14___CATEGORICAL___nom_8___3af8482ec": 2556, "14___CATEGORICAL___nom_8___3afee81d9": 2557, "14___CATEGORICAL___nom_8___3b34e4268": 2558, "14___CATEGORICAL___nom_8___3b658bf85": 2559, "14___CATEGORICAL___nom_8___3b72edebf": 2560, "14___CATEGORICAL___nom_8___3b8d1624a": 2561, "14___CATEGORICAL___nom_8___3bbd9cd3d": 2562, "14___CATEGORICAL___nom_8___3bcf4ac76": 2563, "14___CATEGORICAL___nom_8___3bd05fe23": 2564, "14___CATEGORICAL___nom_8___3bf48a756": 2565, "14___CATEGORICAL___nom_8___3c01da44a": 2566, "14___CATEGORICAL___nom_8___3c1ae13dc": 2567, "14___CATEGORICAL___nom_8___3c5595174": 2568, "14___CATEGORICAL___nom_8___3c59fee11": 2569, "14___CATEGORICAL___nom_8___3c6bf8a86": 2570, "14___CATEGORICAL___nom_8___3c8785222": 2571, "14___CATEGORICAL___nom_8___3cc13c08e": 2572, "14___CATEGORICAL___nom_8___3cdbb21be": 2573, "14___CATEGORICAL___nom_8___3cec7c3f5": 2574, "14___CATEGORICAL___nom_8___3d33f0abd": 2575, "14___CATEGORICAL___nom_8___3d349775c": 2576, "14___CATEGORICAL___nom_8___3d55ec04a": 2577, "14___CATEGORICAL___nom_8___3d650bab5": 2578, "14___CATEGORICAL___nom_8___3d7700f42": 2579, "14___CATEGORICAL___nom_8___3db9a3f93": 2580, "14___CATEGORICAL___nom_8___3dd3ebfae": 2581, "14___CATEGORICAL___nom_8___3de6ba2b0": 2582, "14___CATEGORICAL___nom_8___3deb88358": 2583, "14___CATEGORICAL___nom_8___3df23e3f7": 2584, "14___CATEGORICAL___nom_8___3e6566577": 2585, "14___CATEGORICAL___nom_8___3ea7a5a62": 2586, "14___CATEGORICAL___nom_8___3ebd2c505": 2587, "14___CATEGORICAL___nom_8___3ec8769a6": 2588, "14___CATEGORICAL___nom_8___3f045b21c": 2589, "14___CATEGORICAL___nom_8___3f1f498a0": 2590, "14___CATEGORICAL___nom_8___3f4efcece": 2591, "14___CATEGORICAL___nom_8___3f5dc9fa4": 2592, "14___CATEGORICAL___nom_8___3f6ebe243": 2593, "14___CATEGORICAL___nom_8___3f840a916": 2594, "14___CATEGORICAL___nom_8___3fe3bb4e4": 2595, "14___CATEGORICAL___nom_8___3fef71834": 2596, "14___CATEGORICAL___nom_8___4005b1694": 2597, "14___CATEGORICAL___nom_8___40081d075": 2598, "14___CATEGORICAL___nom_8___406459a0b": 2599, "14___CATEGORICAL___nom_8___407222a23": 2600, "14___CATEGORICAL___nom_8___407ee1590": 2601, "14___CATEGORICAL___nom_8___40b8df5b6": 2602, "14___CATEGORICAL___nom_8___40be78f45": 2603, "14___CATEGORICAL___nom_8___40e778f41": 2604, "14___CATEGORICAL___nom_8___41010ea65": 2605, "14___CATEGORICAL___nom_8___41070dcbb": 2606, "14___CATEGORICAL___nom_8___410a83384": 2607, "14___CATEGORICAL___nom_8___41245927c": 2608, "14___CATEGORICAL___nom_8___41992ba92": 2609, "14___CATEGORICAL___nom_8___41b7948fd": 2610, "14___CATEGORICAL___nom_8___41c90490e": 2611, "14___CATEGORICAL___nom_8___41cce7e6e": 2612, "14___CATEGORICAL___nom_8___41f1ca6a1": 2613, "14___CATEGORICAL___nom_8___41f89ed41": 2614, "14___CATEGORICAL___nom_8___41f9b6082": 2615, "14___CATEGORICAL___nom_8___420463b67": 2616, "14___CATEGORICAL___nom_8___421db44c2": 2617, "14___CATEGORICAL___nom_8___423abc773": 2618, "14___CATEGORICAL___nom_8___4247366c9": 2619, "14___CATEGORICAL___nom_8___4257b9124": 2620, "14___CATEGORICAL___nom_8___427f02ea9": 2621, "14___CATEGORICAL___nom_8___42c1314da": 2622, "14___CATEGORICAL___nom_8___42c269f3d": 2623, "14___CATEGORICAL___nom_8___42cec36e5": 2624, "14___CATEGORICAL___nom_8___4316cb034": 2625, "14___CATEGORICAL___nom_8___4329a8c91": 2626, "14___CATEGORICAL___nom_8___432f57652": 2627, "14___CATEGORICAL___nom_8___434bf9bcf": 2628, "14___CATEGORICAL___nom_8___435ae631f": 2629, "14___CATEGORICAL___nom_8___43a1f406a": 2630, "14___CATEGORICAL___nom_8___43b80ca3a": 2631, "14___CATEGORICAL___nom_8___43fce0d9f": 2632, "14___CATEGORICAL___nom_8___4413b16c8": 2633, "14___CATEGORICAL___nom_8___4433a7da3": 2634, "14___CATEGORICAL___nom_8___4449af3c5": 2635, "14___CATEGORICAL___nom_8___444baaa5f": 2636, "14___CATEGORICAL___nom_8___44698933c": 2637, "14___CATEGORICAL___nom_8___4469bb7fa": 2638, "14___CATEGORICAL___nom_8___44b6f060a": 2639, "14___CATEGORICAL___nom_8___44bc5c1e3": 2640, "14___CATEGORICAL___nom_8___44c24137e": 2641, "14___CATEGORICAL___nom_8___44d3bd578": 2642, "14___CATEGORICAL___nom_8___44f544f0f": 2643, "14___CATEGORICAL___nom_8___44f729e5a": 2644, "14___CATEGORICAL___nom_8___451537556": 2645, "14___CATEGORICAL___nom_8___4527f8641": 2646, "14___CATEGORICAL___nom_8___4535346a3": 2647, "14___CATEGORICAL___nom_8___456af94a1": 2648, "14___CATEGORICAL___nom_8___45b3fece5": 2649, "14___CATEGORICAL___nom_8___45c570da7": 2650, "14___CATEGORICAL___nom_8___45cd8080a": 2651, "14___CATEGORICAL___nom_8___46246e06f": 2652, "14___CATEGORICAL___nom_8___463a9480c": 2653, "14___CATEGORICAL___nom_8___46637170c": 2654, "14___CATEGORICAL___nom_8___4682c2b81": 2655, "14___CATEGORICAL___nom_8___4688b82d7": 2656, "14___CATEGORICAL___nom_8___46ae3059c": 2657, "14___CATEGORICAL___nom_8___46c7e8a5b": 2658, "14___CATEGORICAL___nom_8___46eb1f2d5": 2659, "14___CATEGORICAL___nom_8___472f79626": 2660, "14___CATEGORICAL___nom_8___473965e06": 2661, "14___CATEGORICAL___nom_8___478dceafe": 2662, "14___CATEGORICAL___nom_8___47938793d": 2663, "14___CATEGORICAL___nom_8___47d1240dc": 2664, "14___CATEGORICAL___nom_8___47dd84286": 2665, "14___CATEGORICAL___nom_8___47dddf1b9": 2666, "14___CATEGORICAL___nom_8___47e5aac89": 2667, "14___CATEGORICAL___nom_8___4834fb230": 2668, "14___CATEGORICAL___nom_8___48867677f": 2669, "14___CATEGORICAL___nom_8___48bf5e7e6": 2670, "14___CATEGORICAL___nom_8___48c5ba713": 2671, "14___CATEGORICAL___nom_8___48ef2bd73": 2672, "14___CATEGORICAL___nom_8___48f3995e3": 2673, "14___CATEGORICAL___nom_8___48f96e651": 2674, "14___CATEGORICAL___nom_8___49036d705": 2675, "14___CATEGORICAL___nom_8___49474de39": 2676, "14___CATEGORICAL___nom_8___4949bdfb3": 2677, "14___CATEGORICAL___nom_8___4969a95f0": 2678, "14___CATEGORICAL___nom_8___497cd3de8": 2679, "14___CATEGORICAL___nom_8___498258984": 2680, "14___CATEGORICAL___nom_8___49cfc8bab": 2681, "14___CATEGORICAL___nom_8___49de2ef9f": 2682, "14___CATEGORICAL___nom_8___49e27b861": 2683, "14___CATEGORICAL___nom_8___4a3ab78c6": 2684, "14___CATEGORICAL___nom_8___4a3dace70": 2685, "14___CATEGORICAL___nom_8___4a41ca5ac": 2686, "14___CATEGORICAL___nom_8___4a54418e6": 2687, "14___CATEGORICAL___nom_8___4a718b609": 2688, "14___CATEGORICAL___nom_8___4a8566032": 2689, "14___CATEGORICAL___nom_8___4a9563818": 2690, "14___CATEGORICAL___nom_8___4ade6ab69": 2691, "14___CATEGORICAL___nom_8___4b03e3a23": 2692, "14___CATEGORICAL___nom_8___4b06ec734": 2693, "14___CATEGORICAL___nom_8___4b1543a82": 2694, "14___CATEGORICAL___nom_8___4b2e38807": 2695, "14___CATEGORICAL___nom_8___4b30750de": 2696, "14___CATEGORICAL___nom_8___4b36cae4e": 2697, "14___CATEGORICAL___nom_8___4b722f145": 2698, "14___CATEGORICAL___nom_8___4b7ec4f76": 2699, "14___CATEGORICAL___nom_8___4b96c35d7": 2700, "14___CATEGORICAL___nom_8___4b998df1a": 2701, "14___CATEGORICAL___nom_8___4bb29623e": 2702, "14___CATEGORICAL___nom_8___4bbdadc09": 2703, "14___CATEGORICAL___nom_8___4bbe95f85": 2704, "14___CATEGORICAL___nom_8___4bdd3928f": 2705, "14___CATEGORICAL___nom_8___4be1e9557": 2706, "14___CATEGORICAL___nom_8___4bf5f77f6": 2707, "14___CATEGORICAL___nom_8___4c08b154b": 2708, "14___CATEGORICAL___nom_8___4c3e09313": 2709, "14___CATEGORICAL___nom_8___4c8ff3633": 2710, "14___CATEGORICAL___nom_8___4cba61aed": 2711, "14___CATEGORICAL___nom_8___4cd920251": 2712, "14___CATEGORICAL___nom_8___4d22a9abe": 2713, "14___CATEGORICAL___nom_8___4d43ad72b": 2714, "14___CATEGORICAL___nom_8___4d6a4a0f5": 2715, "14___CATEGORICAL___nom_8___4d70170c4": 2716, "14___CATEGORICAL___nom_8___4d7256d7f": 2717, "14___CATEGORICAL___nom_8___4d79f2810": 2718, "14___CATEGORICAL___nom_8___4d8586f58": 2719, "14___CATEGORICAL___nom_8___4d996c30b": 2720, "14___CATEGORICAL___nom_8___4de383b1f": 2721, "14___CATEGORICAL___nom_8___4de9ccc2f": 2722, "14___CATEGORICAL___nom_8___4ded1a348": 2723, "14___CATEGORICAL___nom_8___4e2d34150": 2724, "14___CATEGORICAL___nom_8___4e55b14d0": 2725, "14___CATEGORICAL___nom_8___4e8174c3e": 2726, "14___CATEGORICAL___nom_8___4e93545bd": 2727, "14___CATEGORICAL___nom_8___4ea576eb6": 2728, "14___CATEGORICAL___nom_8___4ecf0802b": 2729, "14___CATEGORICAL___nom_8___4ed3cff23": 2730, "14___CATEGORICAL___nom_8___4eef4ae9e": 2731, "14___CATEGORICAL___nom_8___4ef214489": 2732, "14___CATEGORICAL___nom_8___4f2f21333": 2733, "14___CATEGORICAL___nom_8___4f3a4cca9": 2734, "14___CATEGORICAL___nom_8___4f72a76e6": 2735, "14___CATEGORICAL___nom_8___4f7dd803c": 2736, "14___CATEGORICAL___nom_8___4f875f2d9": 2737, "14___CATEGORICAL___nom_8___4f930a37c": 2738, "14___CATEGORICAL___nom_8___4fa49b569": 2739, "14___CATEGORICAL___nom_8___4fbb167ac": 2740, "14___CATEGORICAL___nom_8___4fcda6418": 2741, "14___CATEGORICAL___nom_8___5009da0ad": 2742, "14___CATEGORICAL___nom_8___5013e2094": 2743, "14___CATEGORICAL___nom_8___50372f890": 2744, "14___CATEGORICAL___nom_8___50389c332": 2745, "14___CATEGORICAL___nom_8___5049c0d85": 2746, "14___CATEGORICAL___nom_8___505d7b280": 2747, "14___CATEGORICAL___nom_8___50c5e4877": 2748, "14___CATEGORICAL___nom_8___50d48251c": 2749, "14___CATEGORICAL___nom_8___50d48ad21": 2750, "14___CATEGORICAL___nom_8___5105d5efb": 2751, "14___CATEGORICAL___nom_8___51161eeb4": 2752, "14___CATEGORICAL___nom_8___5127124be": 2753, "14___CATEGORICAL___nom_8___512a3c56c": 2754, "14___CATEGORICAL___nom_8___513da5242": 2755, "14___CATEGORICAL___nom_8___516f7d3e1": 2756, "14___CATEGORICAL___nom_8___5183fd2a9": 2757, "14___CATEGORICAL___nom_8___51be79e62": 2758, "14___CATEGORICAL___nom_8___520ba42f6": 2759, "14___CATEGORICAL___nom_8___520f0e7b7": 2760, "14___CATEGORICAL___nom_8___5213ff772": 2761, "14___CATEGORICAL___nom_8___521ae4196": 2762, "14___CATEGORICAL___nom_8___52202c1a0": 2763, "14___CATEGORICAL___nom_8___522b9f280": 2764, "14___CATEGORICAL___nom_8___523fcbcd3": 2765, "14___CATEGORICAL___nom_8___52556e0dd": 2766, "14___CATEGORICAL___nom_8___5264eaa95": 2767, "14___CATEGORICAL___nom_8___52706d814": 2768, "14___CATEGORICAL___nom_8___52b50477d": 2769, "14___CATEGORICAL___nom_8___52ce93caf": 2770, "14___CATEGORICAL___nom_8___52d0584f0": 2771, "14___CATEGORICAL___nom_8___52e48b54f": 2772, "14___CATEGORICAL___nom_8___52f1e2beb": 2773, "14___CATEGORICAL___nom_8___530ef1024": 2774, "14___CATEGORICAL___nom_8___5361d3b53": 2775, "14___CATEGORICAL___nom_8___5367fc43d": 2776, "14___CATEGORICAL___nom_8___537b5f5ab": 2777, "14___CATEGORICAL___nom_8___537d3703e": 2778, "14___CATEGORICAL___nom_8___53b8dd95c": 2779, "14___CATEGORICAL___nom_8___53bc2d0cd": 2780, "14___CATEGORICAL___nom_8___542d752e9": 2781, "14___CATEGORICAL___nom_8___543402bac": 2782, "14___CATEGORICAL___nom_8___54789a43e": 2783, "14___CATEGORICAL___nom_8___547f1c638": 2784, "14___CATEGORICAL___nom_8___54a0e922c": 2785, "14___CATEGORICAL___nom_8___54a3846d8": 2786, "14___CATEGORICAL___nom_8___54f40f107": 2787, "14___CATEGORICAL___nom_8___550e90c2e": 2788, "14___CATEGORICAL___nom_8___551be7857": 2789, "14___CATEGORICAL___nom_8___551f34cac": 2790, "14___CATEGORICAL___nom_8___552b3a516": 2791, "14___CATEGORICAL___nom_8___55568cfab": 2792, "14___CATEGORICAL___nom_8___5559ae433": 2793, "14___CATEGORICAL___nom_8___558203f08": 2794, "14___CATEGORICAL___nom_8___561d08b37": 2795, "14___CATEGORICAL___nom_8___56304bd77": 2796, "14___CATEGORICAL___nom_8___565af9a17": 2797, "14___CATEGORICAL___nom_8___56650d3cc": 2798, "14___CATEGORICAL___nom_8___566842188": 2799, "14___CATEGORICAL___nom_8___5674ac2b7": 2800, "14___CATEGORICAL___nom_8___5680b6782": 2801, "14___CATEGORICAL___nom_8___56c4210cd": 2802, "14___CATEGORICAL___nom_8___56deb938a": 2803, "14___CATEGORICAL___nom_8___571cd4367": 2804, "14___CATEGORICAL___nom_8___57313c784": 2805, "14___CATEGORICAL___nom_8___5756bc9bd": 2806, "14___CATEGORICAL___nom_8___5772c7c71": 2807, "14___CATEGORICAL___nom_8___57756e6aa": 2808, "14___CATEGORICAL___nom_8___577940917": 2809, "14___CATEGORICAL___nom_8___579970a7a": 2810, "14___CATEGORICAL___nom_8___57bf7b0a5": 2811, "14___CATEGORICAL___nom_8___57f7ced2c": 2812, "14___CATEGORICAL___nom_8___5807fe22a": 2813, "14___CATEGORICAL___nom_8___580cf0199": 2814, "14___CATEGORICAL___nom_8___582a610f4": 2815, "14___CATEGORICAL___nom_8___582c2acac": 2816, "14___CATEGORICAL___nom_8___584f12ea1": 2817, "14___CATEGORICAL___nom_8___5854804c0": 2818, "14___CATEGORICAL___nom_8___5884acfdf": 2819, "14___CATEGORICAL___nom_8___589fc12f1": 2820, "14___CATEGORICAL___nom_8___58ee6ef3c": 2821, "14___CATEGORICAL___nom_8___5904c2d88": 2822, "14___CATEGORICAL___nom_8___590a92a3f": 2823, "14___CATEGORICAL___nom_8___592780592": 2824, "14___CATEGORICAL___nom_8___5930392c8": 2825, "14___CATEGORICAL___nom_8___59413233a": 2826, "14___CATEGORICAL___nom_8___595e18408": 2827, "14___CATEGORICAL___nom_8___598e7011a": 2828, "14___CATEGORICAL___nom_8___59bc00371": 2829, "14___CATEGORICAL___nom_8___59bd5621f": 2830, "14___CATEGORICAL___nom_8___59c4825f9": 2831, "14___CATEGORICAL___nom_8___59ea7317d": 2832, "14___CATEGORICAL___nom_8___5a0b5fd52": 2833, "14___CATEGORICAL___nom_8___5a3ccde82": 2834, "14___CATEGORICAL___nom_8___5a3ec6aff": 2835, "14___CATEGORICAL___nom_8___5a54ba48e": 2836, "14___CATEGORICAL___nom_8___5a583a649": 2837, "14___CATEGORICAL___nom_8___5a941f089": 2838, "14___CATEGORICAL___nom_8___5a993c839": 2839, "14___CATEGORICAL___nom_8___5aa5bf1db": 2840, "14___CATEGORICAL___nom_8___5aaaf39f8": 2841, "14___CATEGORICAL___nom_8___5ab5c0eaa": 2842, "14___CATEGORICAL___nom_8___5abc69ff6": 2843, "14___CATEGORICAL___nom_8___5acc27e5f": 2844, "14___CATEGORICAL___nom_8___5ae4c2d72": 2845, "14___CATEGORICAL___nom_8___5ae4e72ca": 2846, "14___CATEGORICAL___nom_8___5b5c13311": 2847, "14___CATEGORICAL___nom_8___5b933d68c": 2848, "14___CATEGORICAL___nom_8___5b94f9f33": 2849, "14___CATEGORICAL___nom_8___5b991c729": 2850, "14___CATEGORICAL___nom_8___5bb1b28f2": 2851, "14___CATEGORICAL___nom_8___5bb71a0e2": 2852, "14___CATEGORICAL___nom_8___5bc1bd9ce": 2853, "14___CATEGORICAL___nom_8___5be7f09e6": 2854, "14___CATEGORICAL___nom_8___5bf5f09ce": 2855, "14___CATEGORICAL___nom_8___5c0e98422": 2856, "14___CATEGORICAL___nom_8___5c4b26f03": 2857, "14___CATEGORICAL___nom_8___5c6a74efd": 2858, "14___CATEGORICAL___nom_8___5cd969470": 2859, "14___CATEGORICAL___nom_8___5d19204f1": 2860, "14___CATEGORICAL___nom_8___5d3ad5dcc": 2861, "14___CATEGORICAL___nom_8___5d3e459b7": 2862, "14___CATEGORICAL___nom_8___5d5e04d11": 2863, "14___CATEGORICAL___nom_8___5d6ffc57d": 2864, "14___CATEGORICAL___nom_8___5d7806f53": 2865, "14___CATEGORICAL___nom_8___5df6f3306": 2866, "14___CATEGORICAL___nom_8___5dffe5052": 2867, "14___CATEGORICAL___nom_8___5e23fecc8": 2868, "14___CATEGORICAL___nom_8___5e2b7ec61": 2869, "14___CATEGORICAL___nom_8___5e2dfdc4e": 2870, "14___CATEGORICAL___nom_8___5e3c2d513": 2871, "14___CATEGORICAL___nom_8___5e41b5542": 2872, "14___CATEGORICAL___nom_8___5e66d0561": 2873, "14___CATEGORICAL___nom_8___5e76e2c03": 2874, "14___CATEGORICAL___nom_8___5ea193ffb": 2875, "14___CATEGORICAL___nom_8___5eab5bce1": 2876, "14___CATEGORICAL___nom_8___5eb32eb38": 2877, "14___CATEGORICAL___nom_8___5ede5cc10": 2878, "14___CATEGORICAL___nom_8___5ee7980c8": 2879, "14___CATEGORICAL___nom_8___5eea532bf": 2880, "14___CATEGORICAL___nom_8___5eef6599e": 2881, "14___CATEGORICAL___nom_8___5f0c17eab": 2882, "14___CATEGORICAL___nom_8___5f157aeee": 2883, "14___CATEGORICAL___nom_8___5f1d256d0": 2884, "14___CATEGORICAL___nom_8___5f4046b89": 2885, "14___CATEGORICAL___nom_8___5f40f1c5f": 2886, "14___CATEGORICAL___nom_8___5f5955990": 2887, "14___CATEGORICAL___nom_8___5f6de94e1": 2888, "14___CATEGORICAL___nom_8___5f9ac896d": 2889, "14___CATEGORICAL___nom_8___5fa7f4334": 2890, "14___CATEGORICAL___nom_8___5fb9d556e": 2891, "14___CATEGORICAL___nom_8___5fc70d251": 2892, "14___CATEGORICAL___nom_8___60091745b": 2893, "14___CATEGORICAL___nom_8___6055c51de": 2894, "14___CATEGORICAL___nom_8___606ac930b": 2895, "14___CATEGORICAL___nom_8___6091ae118": 2896, "14___CATEGORICAL___nom_8___60bf10a44": 2897, "14___CATEGORICAL___nom_8___60e558ac2": 2898, "14___CATEGORICAL___nom_8___60ecfa5db": 2899, "14___CATEGORICAL___nom_8___60f23b85b": 2900, "14___CATEGORICAL___nom_8___60f5c4953": 2901, "14___CATEGORICAL___nom_8___60fcfdfd2": 2902, "14___CATEGORICAL___nom_8___60fe0a34e": 2903, "14___CATEGORICAL___nom_8___6127dc462": 2904, "14___CATEGORICAL___nom_8___612ab9e04": 2905, "14___CATEGORICAL___nom_8___612d3a513": 2906, "14___CATEGORICAL___nom_8___612fcaf56": 2907, "14___CATEGORICAL___nom_8___613f20100": 2908, "14___CATEGORICAL___nom_8___6148c0a26": 2909, "14___CATEGORICAL___nom_8___614a86c6f": 2910, "14___CATEGORICAL___nom_8___616226a4a": 2911, "14___CATEGORICAL___nom_8___618c9e0b2": 2912, "14___CATEGORICAL___nom_8___6196dcb02": 2913, "14___CATEGORICAL___nom_8___61bcb6582": 2914, "14___CATEGORICAL___nom_8___61c93b713": 2915, "14___CATEGORICAL___nom_8___61cf9f43b": 2916, "14___CATEGORICAL___nom_8___6250a03c7": 2917, "14___CATEGORICAL___nom_8___6266933e6": 2918, "14___CATEGORICAL___nom_8___626b55cbd": 2919, "14___CATEGORICAL___nom_8___627529fd9": 2920, "14___CATEGORICAL___nom_8___62a7a5998": 2921, "14___CATEGORICAL___nom_8___62efd529a": 2922, "14___CATEGORICAL___nom_8___62f3d9529": 2923, "14___CATEGORICAL___nom_8___63469725e": 2924, "14___CATEGORICAL___nom_8___63472819d": 2925, "14___CATEGORICAL___nom_8___63472fe67": 2926, "14___CATEGORICAL___nom_8___63572f4db": 2927, "14___CATEGORICAL___nom_8___6359c25ce": 2928, "14___CATEGORICAL___nom_8___635a85b33": 2929, "14___CATEGORICAL___nom_8___636af9ac0": 2930, "14___CATEGORICAL___nom_8___63bc33024": 2931, "14___CATEGORICAL___nom_8___63d65920a": 2932, "14___CATEGORICAL___nom_8___64335b5e6": 2933, "14___CATEGORICAL___nom_8___6437b4ddf": 2934, "14___CATEGORICAL___nom_8___644658db0": 2935, "14___CATEGORICAL___nom_8___64b9cc0ba": 2936, "14___CATEGORICAL___nom_8___64bc8329f": 2937, "14___CATEGORICAL___nom_8___64d19f1b9": 2938, "14___CATEGORICAL___nom_8___64edf3032": 2939, "14___CATEGORICAL___nom_8___6508cf2a5": 2940, "14___CATEGORICAL___nom_8___6509dd268": 2941, "14___CATEGORICAL___nom_8___6533b95a8": 2942, "14___CATEGORICAL___nom_8___65aa42eeb": 2943, "14___CATEGORICAL___nom_8___65b669fa9": 2944, "14___CATEGORICAL___nom_8___65bc4aedd": 2945, "14___CATEGORICAL___nom_8___65cbea482": 2946, "14___CATEGORICAL___nom_8___65d596201": 2947, "14___CATEGORICAL___nom_8___663007ea1": 2948, "14___CATEGORICAL___nom_8___663d4428b": 2949, "14___CATEGORICAL___nom_8___66413f5c4": 2950, "14___CATEGORICAL___nom_8___6694a971d": 2951, "14___CATEGORICAL___nom_8___669cade8b": 2952, "14___CATEGORICAL___nom_8___66c666931": 2953, "14___CATEGORICAL___nom_8___66e446170": 2954, "14___CATEGORICAL___nom_8___66ea5fe47": 2955, "14___CATEGORICAL___nom_8___66f267ea5": 2956, "14___CATEGORICAL___nom_8___66ffd419e": 2957, "14___CATEGORICAL___nom_8___6706bb896": 2958, "14___CATEGORICAL___nom_8___67166bba9": 2959, "14___CATEGORICAL___nom_8___674157f4e": 2960, "14___CATEGORICAL___nom_8___67480ba24": 2961, "14___CATEGORICAL___nom_8___674bde1f8": 2962, "14___CATEGORICAL___nom_8___6759eb160": 2963, "14___CATEGORICAL___nom_8___677a0c809": 2964, "14___CATEGORICAL___nom_8___678bfb662": 2965, "14___CATEGORICAL___nom_8___67c03cd4e": 2966, "14___CATEGORICAL___nom_8___67c393e7e": 2967, "14___CATEGORICAL___nom_8___67c4cb25e": 2968, "14___CATEGORICAL___nom_8___6800e5697": 2969, "14___CATEGORICAL___nom_8___682207821": 2970, "14___CATEGORICAL___nom_8___6840e280c": 2971, "14___CATEGORICAL___nom_8___6844c9a87": 2972, "14___CATEGORICAL___nom_8___6874814be": 2973, "14___CATEGORICAL___nom_8___68e0cda56": 2974, "14___CATEGORICAL___nom_8___68fce9db2": 2975, "14___CATEGORICAL___nom_8___69098cdce": 2976, "14___CATEGORICAL___nom_8___694e2d9b6": 2977, "14___CATEGORICAL___nom_8___696f53296": 2978, "14___CATEGORICAL___nom_8___69ae11dd3": 2979, "14___CATEGORICAL___nom_8___69e64b2c5": 2980, "14___CATEGORICAL___nom_8___69fd1ead9": 2981, "14___CATEGORICAL___nom_8___6a0697e2a": 2982, "14___CATEGORICAL___nom_8___6a0c3c099": 2983, "14___CATEGORICAL___nom_8___6a28d5243": 2984, "14___CATEGORICAL___nom_8___6a484e7c5": 2985, "14___CATEGORICAL___nom_8___6a6755a75": 2986, "14___CATEGORICAL___nom_8___6a9a988ae": 2987, "14___CATEGORICAL___nom_8___6aa08d9aa": 2988, "14___CATEGORICAL___nom_8___6abca5b75": 2989, "14___CATEGORICAL___nom_8___6abe4c429": 2990, "14___CATEGORICAL___nom_8___6ac58798e": 2991, "14___CATEGORICAL___nom_8___6adf330a1": 2992, "14___CATEGORICAL___nom_8___6b0538847": 2993, "14___CATEGORICAL___nom_8___6b44feed9": 2994, "14___CATEGORICAL___nom_8___6b972b4e6": 2995, "14___CATEGORICAL___nom_8___6baf64175": 2996, "14___CATEGORICAL___nom_8___6bb693f33": 2997, "14___CATEGORICAL___nom_8___6bb6ec224": 2998, "14___CATEGORICAL___nom_8___6bbb3fdf3": 2999, "14___CATEGORICAL___nom_8___6bef24212": 3000, "14___CATEGORICAL___nom_8___6bf92fa24": 3001, "14___CATEGORICAL___nom_8___6c16496e3": 3002, "14___CATEGORICAL___nom_8___6c3d71b11": 3003, "14___CATEGORICAL___nom_8___6c4a99ba4": 3004, "14___CATEGORICAL___nom_8___6c60695de": 3005, "14___CATEGORICAL___nom_8___6c61f47ce": 3006, "14___CATEGORICAL___nom_8___6c630eec0": 3007, "14___CATEGORICAL___nom_8___6c7292479": 3008, "14___CATEGORICAL___nom_8___6c7939160": 3009, "14___CATEGORICAL___nom_8___6c94b98a9": 3010, "14___CATEGORICAL___nom_8___6cecf2c6c": 3011, "14___CATEGORICAL___nom_8___6d286ebed": 3012, "14___CATEGORICAL___nom_8___6d2a862e0": 3013, "14___CATEGORICAL___nom_8___6d4125901": 3014, "14___CATEGORICAL___nom_8___6d43443d4": 3015, "14___CATEGORICAL___nom_8___6d782795c": 3016, "14___CATEGORICAL___nom_8___6da888acf": 3017, "14___CATEGORICAL___nom_8___6de035aa5": 3018, "14___CATEGORICAL___nom_8___6de8876b5": 3019, "14___CATEGORICAL___nom_8___6e0314081": 3020, "14___CATEGORICAL___nom_8___6e162e4cf": 3021, "14___CATEGORICAL___nom_8___6e23e1067": 3022, "14___CATEGORICAL___nom_8___6e3242852": 3023, "14___CATEGORICAL___nom_8___6e4113602": 3024, "14___CATEGORICAL___nom_8___6e56056b6": 3025, "14___CATEGORICAL___nom_8___6e6d08b6f": 3026, "14___CATEGORICAL___nom_8___6e7be47e5": 3027, "14___CATEGORICAL___nom_8___6ece40b2f": 3028, "14___CATEGORICAL___nom_8___6ed2936dd": 3029, "14___CATEGORICAL___nom_8___6ee0c7b3e": 3030, "14___CATEGORICAL___nom_8___6eecea4fb": 3031, "14___CATEGORICAL___nom_8___6eff2552f": 3032, "14___CATEGORICAL___nom_8___6f08eb834": 3033, "14___CATEGORICAL___nom_8___6f0b0c42a": 3034, "14___CATEGORICAL___nom_8___6f21ecc48": 3035, "14___CATEGORICAL___nom_8___6f561a634": 3036, "14___CATEGORICAL___nom_8___6f6516b35": 3037, "14___CATEGORICAL___nom_8___6f709e184": 3038, "14___CATEGORICAL___nom_8___6f8225245": 3039, "14___CATEGORICAL___nom_8___6f85744aa": 3040, "14___CATEGORICAL___nom_8___6fbef8e0b": 3041, "14___CATEGORICAL___nom_8___6fc24b5ca": 3042, "14___CATEGORICAL___nom_8___6fce5168d": 3043, "14___CATEGORICAL___nom_8___6ffab11f7": 3044, "14___CATEGORICAL___nom_8___705cb4caa": 3045, "14___CATEGORICAL___nom_8___70647ecaa": 3046, "14___CATEGORICAL___nom_8___709a5ffd4": 3047, "14___CATEGORICAL___nom_8___709c8de19": 3048, "14___CATEGORICAL___nom_8___70a20c50f": 3049, "14___CATEGORICAL___nom_8___70a52ed95": 3050, "14___CATEGORICAL___nom_8___70b6f717d": 3051, "14___CATEGORICAL___nom_8___70c236aef": 3052, "14___CATEGORICAL___nom_8___70c7a41f7": 3053, "14___CATEGORICAL___nom_8___70e87ab25": 3054, "14___CATEGORICAL___nom_8___70f2de86d": 3055, "14___CATEGORICAL___nom_8___710fbc590": 3056, "14___CATEGORICAL___nom_8___7119cfebd": 3057, "14___CATEGORICAL___nom_8___71214b899": 3058, "14___CATEGORICAL___nom_8___71227d3bc": 3059, "14___CATEGORICAL___nom_8___71281d730": 3060, "14___CATEGORICAL___nom_8___714157447": 3061, "14___CATEGORICAL___nom_8___71746632f": 3062, "14___CATEGORICAL___nom_8___7179cd921": 3063, "14___CATEGORICAL___nom_8___719361513": 3064, "14___CATEGORICAL___nom_8___71ae710ad": 3065, "14___CATEGORICAL___nom_8___71c01376f": 3066, "14___CATEGORICAL___nom_8___721bc6d6b": 3067, "14___CATEGORICAL___nom_8___72221799b": 3068, "14___CATEGORICAL___nom_8___723211bec": 3069, "14___CATEGORICAL___nom_8___725517260": 3070, "14___CATEGORICAL___nom_8___72679c3c8": 3071, "14___CATEGORICAL___nom_8___7274a5560": 3072, "14___CATEGORICAL___nom_8___728daff7e": 3073, "14___CATEGORICAL___nom_8___72a38d8ef": 3074, "14___CATEGORICAL___nom_8___72af83565": 3075, "14___CATEGORICAL___nom_8___72b748e2c": 3076, "14___CATEGORICAL___nom_8___72f104db7": 3077, "14___CATEGORICAL___nom_8___72f9294c0": 3078, "14___CATEGORICAL___nom_8___732554be4": 3079, "14___CATEGORICAL___nom_8___7344a58b6": 3080, "14___CATEGORICAL___nom_8___736160127": 3081, "14___CATEGORICAL___nom_8___738693437": 3082, "14___CATEGORICAL___nom_8___739a051e1": 3083, "14___CATEGORICAL___nom_8___73ecef642": 3084, "14___CATEGORICAL___nom_8___7430aa74d": 3085, "14___CATEGORICAL___nom_8___7431726cf": 3086, "14___CATEGORICAL___nom_8___74824e3f5": 3087, "14___CATEGORICAL___nom_8___749256603": 3088, "14___CATEGORICAL___nom_8___74c5e44dc": 3089, "14___CATEGORICAL___nom_8___74cb85799": 3090, "14___CATEGORICAL___nom_8___7508f4ef1": 3091, "14___CATEGORICAL___nom_8___75163958b": 3092, "14___CATEGORICAL___nom_8___7517f74f0": 3093, "14___CATEGORICAL___nom_8___7551a1761": 3094, "14___CATEGORICAL___nom_8___758f518c5": 3095, "14___CATEGORICAL___nom_8___7641286a3": 3096, "14___CATEGORICAL___nom_8___764cafe90": 3097, "14___CATEGORICAL___nom_8___7656f99ff": 3098, "14___CATEGORICAL___nom_8___76980b0e1": 3099, "14___CATEGORICAL___nom_8___76ba8e118": 3100, "14___CATEGORICAL___nom_8___76bee6d06": 3101, "14___CATEGORICAL___nom_8___76c3740a6": 3102, "14___CATEGORICAL___nom_8___76f852130": 3103, "14___CATEGORICAL___nom_8___773107788": 3104, "14___CATEGORICAL___nom_8___7739b63e5": 3105, "14___CATEGORICAL___nom_8___776d8d7e5": 3106, "14___CATEGORICAL___nom_8___778e7e6f2": 3107, "14___CATEGORICAL___nom_8___77903bd74": 3108, "14___CATEGORICAL___nom_8___77fd0858a": 3109, "14___CATEGORICAL___nom_8___7811c5ce4": 3110, "14___CATEGORICAL___nom_8___7838ab2f6": 3111, "14___CATEGORICAL___nom_8___78558606a": 3112, "14___CATEGORICAL___nom_8___785f7ad9b": 3113, "14___CATEGORICAL___nom_8___788af5805": 3114, "14___CATEGORICAL___nom_8___789ba99c6": 3115, "14___CATEGORICAL___nom_8___78b8fb62f": 3116, "14___CATEGORICAL___nom_8___78c6b892c": 3117, "14___CATEGORICAL___nom_8___78fce34c7": 3118, "14___CATEGORICAL___nom_8___78ff9de4e": 3119, "14___CATEGORICAL___nom_8___79102e69b": 3120, "14___CATEGORICAL___nom_8___791a94382": 3121, "14___CATEGORICAL___nom_8___79367122e": 3122, "14___CATEGORICAL___nom_8___796b43ff8": 3123, "14___CATEGORICAL___nom_8___796e31552": 3124, "14___CATEGORICAL___nom_8___7970b8a44": 3125, "14___CATEGORICAL___nom_8___798b2eee2": 3126, "14___CATEGORICAL___nom_8___79ddf3be2": 3127, "14___CATEGORICAL___nom_8___79eab8768": 3128, "14___CATEGORICAL___nom_8___7a7666fa2": 3129, "14___CATEGORICAL___nom_8___7a9c53c4b": 3130, "14___CATEGORICAL___nom_8___7ab016da7": 3131, "14___CATEGORICAL___nom_8___7ad2c439c": 3132, "14___CATEGORICAL___nom_8___7ae53b7f9": 3133, "14___CATEGORICAL___nom_8___7afddc9a3": 3134, "14___CATEGORICAL___nom_8___7b082c8a0": 3135, "14___CATEGORICAL___nom_8___7b3c49f78": 3136, "14___CATEGORICAL___nom_8___7b3d59ea8": 3137, "14___CATEGORICAL___nom_8___7b41ec332": 3138, "14___CATEGORICAL___nom_8___7b51ea0e7": 3139, "14___CATEGORICAL___nom_8___7b5236e42": 3140, "14___CATEGORICAL___nom_8___7b558b353": 3141, "14___CATEGORICAL___nom_8___7bd075be5": 3142, "14___CATEGORICAL___nom_8___7bd5180a7": 3143, "14___CATEGORICAL___nom_8___7befd1525": 3144, "14___CATEGORICAL___nom_8___7c0228662": 3145, "14___CATEGORICAL___nom_8___7c13df9a8": 3146, "14___CATEGORICAL___nom_8___7c72c8040": 3147, "14___CATEGORICAL___nom_8___7c8cb257f": 3148, "14___CATEGORICAL___nom_8___7c8dba46f": 3149, "14___CATEGORICAL___nom_8___7c8dcb3c2": 3150, "14___CATEGORICAL___nom_8___7ca6ba5f6": 3151, "14___CATEGORICAL___nom_8___7cabcf8f7": 3152, "14___CATEGORICAL___nom_8___7cde41266": 3153, "14___CATEGORICAL___nom_8___7cefd81e8": 3154, "14___CATEGORICAL___nom_8___7d834bac9": 3155, "14___CATEGORICAL___nom_8___7d97eba78": 3156, "14___CATEGORICAL___nom_8___7da6b788a": 3157, "14___CATEGORICAL___nom_8___7dc2c4539": 3158, "14___CATEGORICAL___nom_8___7dcd884f2": 3159, "14___CATEGORICAL___nom_8___7dcf21bc6": 3160, "14___CATEGORICAL___nom_8___7dd63315d": 3161, "14___CATEGORICAL___nom_8___7df27c899": 3162, "14___CATEGORICAL___nom_8___7e01eda84": 3163, "14___CATEGORICAL___nom_8___7e0338e4e": 3164, "14___CATEGORICAL___nom_8___7ea9334a0": 3165, "14___CATEGORICAL___nom_8___7f22f819d": 3166, "14___CATEGORICAL___nom_8___7f3001f8f": 3167, "14___CATEGORICAL___nom_8___7f32eeaba": 3168, "14___CATEGORICAL___nom_8___7f9e64f9a": 3169, "14___CATEGORICAL___nom_8___7fc4ec511": 3170, "14___CATEGORICAL___nom_8___7fde31dc1": 3171, "14___CATEGORICAL___nom_8___7fea00623": 3172, "14___CATEGORICAL___nom_8___7ffb27f1b": 3173, "14___CATEGORICAL___nom_8___801927581": 3174, "14___CATEGORICAL___nom_8___8028054b7": 3175, "14___CATEGORICAL___nom_8___802d6605a": 3176, "14___CATEGORICAL___nom_8___802f05fb1": 3177, "14___CATEGORICAL___nom_8___8030601ca": 3178, "14___CATEGORICAL___nom_8___803fe8c71": 3179, "14___CATEGORICAL___nom_8___8041788c0": 3180, "14___CATEGORICAL___nom_8___80507d7e7": 3181, "14___CATEGORICAL___nom_8___8063f1d85": 3182, "14___CATEGORICAL___nom_8___8067177f4": 3183, "14___CATEGORICAL___nom_8___806aa6603": 3184, "14___CATEGORICAL___nom_8___80791187d": 3185, "14___CATEGORICAL___nom_8___8080eac12": 3186, "14___CATEGORICAL___nom_8___80a5c3441": 3187, "14___CATEGORICAL___nom_8___80b77ed0e": 3188, "14___CATEGORICAL___nom_8___80be47228": 3189, "14___CATEGORICAL___nom_8___8138de78c": 3190, "14___CATEGORICAL___nom_8___8175453f0": 3191, "14___CATEGORICAL___nom_8___81782d94a": 3192, "14___CATEGORICAL___nom_8___8199c1e16": 3193, "14___CATEGORICAL___nom_8___81e95f44d": 3194, "14___CATEGORICAL___nom_8___81f379d0f": 3195, "14___CATEGORICAL___nom_8___8238d2c23": 3196, "14___CATEGORICAL___nom_8___82469804a": 3197, "14___CATEGORICAL___nom_8___824e859b3": 3198, "14___CATEGORICAL___nom_8___82570c498": 3199, "14___CATEGORICAL___nom_8___8287f20f7": 3200, "14___CATEGORICAL___nom_8___828ea97f7": 3201, "14___CATEGORICAL___nom_8___8290bbc2b": 3202, "14___CATEGORICAL___nom_8___829ae71a7": 3203, "14___CATEGORICAL___nom_8___82b475f6b": 3204, "14___CATEGORICAL___nom_8___82becc8e8": 3205, "14___CATEGORICAL___nom_8___8312ef826": 3206, "14___CATEGORICAL___nom_8___832015b8d": 3207, "14___CATEGORICAL___nom_8___83772ea47": 3208, "14___CATEGORICAL___nom_8___83a266f13": 3209, "14___CATEGORICAL___nom_8___83d9f009a": 3210, "14___CATEGORICAL___nom_8___83e1edf48": 3211, "14___CATEGORICAL___nom_8___83eabad2b": 3212, "14___CATEGORICAL___nom_8___83f90bc0e": 3213, "14___CATEGORICAL___nom_8___842d0e1fa": 3214, "14___CATEGORICAL___nom_8___844af8687": 3215, "14___CATEGORICAL___nom_8___84968f3e5": 3216, "14___CATEGORICAL___nom_8___84db01df8": 3217, "14___CATEGORICAL___nom_8___84ee00413": 3218, "14___CATEGORICAL___nom_8___85990b088": 3219, "14___CATEGORICAL___nom_8___859dc3ec4": 3220, "14___CATEGORICAL___nom_8___85a8d5c75": 3221, "14___CATEGORICAL___nom_8___85a94c95a": 3222, "14___CATEGORICAL___nom_8___85c93d16b": 3223, "14___CATEGORICAL___nom_8___8614b6af1": 3224, "14___CATEGORICAL___nom_8___8623282d2": 3225, "14___CATEGORICAL___nom_8___8657e6376": 3226, "14___CATEGORICAL___nom_8___865bd3250": 3227, "14___CATEGORICAL___nom_8___869614aaf": 3228, "14___CATEGORICAL___nom_8___86a2783b8": 3229, "14___CATEGORICAL___nom_8___86acca86f": 3230, "14___CATEGORICAL___nom_8___86c2f295b": 3231, "14___CATEGORICAL___nom_8___86c759c41": 3232, "14___CATEGORICAL___nom_8___86d2cb86d": 3233, "14___CATEGORICAL___nom_8___872ca76eb": 3234, "14___CATEGORICAL___nom_8___87458941e": 3235, "14___CATEGORICAL___nom_8___878c58f3b": 3236, "14___CATEGORICAL___nom_8___87a54b79f": 3237, "14___CATEGORICAL___nom_8___87bee866f": 3238, "14___CATEGORICAL___nom_8___87e4cd335": 3239, "14___CATEGORICAL___nom_8___87e98d79a": 3240, "14___CATEGORICAL___nom_8___87f68ba07": 3241, "14___CATEGORICAL___nom_8___882baa989": 3242, "14___CATEGORICAL___nom_8___884d799c4": 3243, "14___CATEGORICAL___nom_8___8865c52d5": 3244, "14___CATEGORICAL___nom_8___887c72412": 3245, "14___CATEGORICAL___nom_8___88b0e9829": 3246, "14___CATEGORICAL___nom_8___88b9ab6d5": 3247, "14___CATEGORICAL___nom_8___88cd711b1": 3248, "14___CATEGORICAL___nom_8___89323f730": 3249, "14___CATEGORICAL___nom_8___8970fa137": 3250, "14___CATEGORICAL___nom_8___897e41097": 3251, "14___CATEGORICAL___nom_8___8990f4a8a": 3252, "14___CATEGORICAL___nom_8___899ab2d86": 3253, "14___CATEGORICAL___nom_8___89a61e164": 3254, "14___CATEGORICAL___nom_8___89a7f6d26": 3255, "14___CATEGORICAL___nom_8___89b54a23f": 3256, "14___CATEGORICAL___nom_8___89c47ed2d": 3257, "14___CATEGORICAL___nom_8___89d396920": 3258, "14___CATEGORICAL___nom_8___8a2042d38": 3259, "14___CATEGORICAL___nom_8___8a237031f": 3260, "14___CATEGORICAL___nom_8___8a2663908": 3261, "14___CATEGORICAL___nom_8___8a504f188": 3262, "14___CATEGORICAL___nom_8___8a51d32dd": 3263, "14___CATEGORICAL___nom_8___8a57c4bb1": 3264, "14___CATEGORICAL___nom_8___8a7d9fe75": 3265, "14___CATEGORICAL___nom_8___8a82aed00": 3266, "14___CATEGORICAL___nom_8___8a8ccfe81": 3267, "14___CATEGORICAL___nom_8___8a9cb6fd2": 3268, "14___CATEGORICAL___nom_8___8b1d41c58": 3269, "14___CATEGORICAL___nom_8___8b3d947bf": 3270, "14___CATEGORICAL___nom_8___8b565b2d3": 3271, "14___CATEGORICAL___nom_8___8b594ffcf": 3272, "14___CATEGORICAL___nom_8___8b7aab9f1": 3273, "14___CATEGORICAL___nom_8___8bab687d9": 3274, "14___CATEGORICAL___nom_8___8bc8daebd": 3275, "14___CATEGORICAL___nom_8___8bec21059": 3276, "14___CATEGORICAL___nom_8___8bfcdd07f": 3277, "14___CATEGORICAL___nom_8___8c46d93f3": 3278, "14___CATEGORICAL___nom_8___8c56294de": 3279, "14___CATEGORICAL___nom_8___8c7708261": 3280, "14___CATEGORICAL___nom_8___8c798dfeb": 3281, "14___CATEGORICAL___nom_8___8c98ff8ed": 3282, "14___CATEGORICAL___nom_8___8ca532821": 3283, "14___CATEGORICAL___nom_8___8ca5c3d68": 3284, "14___CATEGORICAL___nom_8___8cc3caea1": 3285, "14___CATEGORICAL___nom_8___8cf909bcf": 3286, "14___CATEGORICAL___nom_8___8d2ebf5f4": 3287, "14___CATEGORICAL___nom_8___8d7f0977f": 3288, "14___CATEGORICAL___nom_8___8d95b374b": 3289, "14___CATEGORICAL___nom_8___8daca4bad": 3290, "14___CATEGORICAL___nom_8___8dcd0897c": 3291, "14___CATEGORICAL___nom_8___8df3db541": 3292, "14___CATEGORICAL___nom_8___8df619092": 3293, "14___CATEGORICAL___nom_8___8e211ed49": 3294, "14___CATEGORICAL___nom_8___8e268c498": 3295, "14___CATEGORICAL___nom_8___8e4102fa6": 3296, "14___CATEGORICAL___nom_8___8ea4640c5": 3297, "14___CATEGORICAL___nom_8___8eafdaaba": 3298, "14___CATEGORICAL___nom_8___8ef446af1": 3299, "14___CATEGORICAL___nom_8___8f34a4d05": 3300, "14___CATEGORICAL___nom_8___8f69abedb": 3301, "14___CATEGORICAL___nom_8___8f86bfe80": 3302, "14___CATEGORICAL___nom_8___8f9ee6701": 3303, "14___CATEGORICAL___nom_8___8fbf74c31": 3304, "14___CATEGORICAL___nom_8___8fe134687": 3305, "14___CATEGORICAL___nom_8___8feab4393": 3306, "14___CATEGORICAL___nom_8___90353fead": 3307, "14___CATEGORICAL___nom_8___903befb8b": 3308, "14___CATEGORICAL___nom_8___90401e1f5": 3309, "14___CATEGORICAL___nom_8___904a490c3": 3310, "14___CATEGORICAL___nom_8___90516b379": 3311, "14___CATEGORICAL___nom_8___905ab519b": 3312, "14___CATEGORICAL___nom_8___9073c9269": 3313, "14___CATEGORICAL___nom_8___90ad7d3b5": 3314, "14___CATEGORICAL___nom_8___90dab3dd3": 3315, "14___CATEGORICAL___nom_8___90ee6dde0": 3316, "14___CATEGORICAL___nom_8___90fb1c278": 3317, "14___CATEGORICAL___nom_8___91365a656": 3318, "14___CATEGORICAL___nom_8___916c5e101": 3319, "14___CATEGORICAL___nom_8___9177167a4": 3320, "14___CATEGORICAL___nom_8___91a817ae6": 3321, "14___CATEGORICAL___nom_8___91aed34e5": 3322, "14___CATEGORICAL___nom_8___91c3125ab": 3323, "14___CATEGORICAL___nom_8___91cde2ad9": 3324, "14___CATEGORICAL___nom_8___91fc741a6": 3325, "14___CATEGORICAL___nom_8___9207ecfa5": 3326, "14___CATEGORICAL___nom_8___922e1d4f0": 3327, "14___CATEGORICAL___nom_8___92347baee": 3328, "14___CATEGORICAL___nom_8___923719fa5": 3329, "14___CATEGORICAL___nom_8___9251228dc": 3330, "14___CATEGORICAL___nom_8___929e25ee4": 3331, "14___CATEGORICAL___nom_8___92b8d0a72": 3332, "14___CATEGORICAL___nom_8___92c95746a": 3333, "14___CATEGORICAL___nom_8___92e4f3a2d": 3334, "14___CATEGORICAL___nom_8___92e5d0d61": 3335, "14___CATEGORICAL___nom_8___9332a4ea7": 3336, "14___CATEGORICAL___nom_8___9333b6802": 3337, "14___CATEGORICAL___nom_8___9334c05b1": 3338, "14___CATEGORICAL___nom_8___934184f74": 3339, "14___CATEGORICAL___nom_8___934216a65": 3340, "14___CATEGORICAL___nom_8___93506034a": 3341, "14___CATEGORICAL___nom_8___9353bbdcb": 3342, "14___CATEGORICAL___nom_8___938a25af0": 3343, "14___CATEGORICAL___nom_8___938b6d859": 3344, "14___CATEGORICAL___nom_8___9393e31f0": 3345, "14___CATEGORICAL___nom_8___93d22524a": 3346, "14___CATEGORICAL___nom_8___93d5fa073": 3347, "14___CATEGORICAL___nom_8___9402eebe9": 3348, "14___CATEGORICAL___nom_8___940770e63": 3349, "14___CATEGORICAL___nom_8___942531094": 3350, "14___CATEGORICAL___nom_8___94476bffe": 3351, "14___CATEGORICAL___nom_8___9499c0bf0": 3352, "14___CATEGORICAL___nom_8___94aa94c11": 3353, "14___CATEGORICAL___nom_8___94f7e841b": 3354, "14___CATEGORICAL___nom_8___950a1d8c0": 3355, "14___CATEGORICAL___nom_8___952eab76f": 3356, "14___CATEGORICAL___nom_8___9531f3760": 3357, "14___CATEGORICAL___nom_8___954484ec3": 3358, "14___CATEGORICAL___nom_8___957446f7b": 3359, "14___CATEGORICAL___nom_8___957702b99": 3360, "14___CATEGORICAL___nom_8___95a0ec044": 3361, "14___CATEGORICAL___nom_8___95a7324ed": 3362, "14___CATEGORICAL___nom_8___95c34f918": 3363, "14___CATEGORICAL___nom_8___95d7a429a": 3364, "14___CATEGORICAL___nom_8___960c7d0b2": 3365, "14___CATEGORICAL___nom_8___9624c3a0b": 3366, "14___CATEGORICAL___nom_8___968c80c89": 3367, "14___CATEGORICAL___nom_8___96eb028f0": 3368, "14___CATEGORICAL___nom_8___972061613": 3369, "14___CATEGORICAL___nom_8___97486ec87": 3370, "14___CATEGORICAL___nom_8___9774d480d": 3371, "14___CATEGORICAL___nom_8___9776894d5": 3372, "14___CATEGORICAL___nom_8___97806e735": 3373, "14___CATEGORICAL___nom_8___97c2074c4": 3374, "14___CATEGORICAL___nom_8___97dbfb7e6": 3375, "14___CATEGORICAL___nom_8___982822150": 3376, "14___CATEGORICAL___nom_8___985600bbd": 3377, "14___CATEGORICAL___nom_8___9856af09e": 3378, "14___CATEGORICAL___nom_8___98ad14ee4": 3379, "14___CATEGORICAL___nom_8___98addc2c9": 3380, "14___CATEGORICAL___nom_8___98c1fdf98": 3381, "14___CATEGORICAL___nom_8___98caa50a7": 3382, "14___CATEGORICAL___nom_8___98d044c58": 3383, "14___CATEGORICAL___nom_8___99485dbbc": 3384, "14___CATEGORICAL___nom_8___994b30371": 3385, "14___CATEGORICAL___nom_8___994e995cc": 3386, "14___CATEGORICAL___nom_8___995326e81": 3387, "14___CATEGORICAL___nom_8___995b9fe3c": 3388, "14___CATEGORICAL___nom_8___9967fa8ed": 3389, "14___CATEGORICAL___nom_8___998aa0f7a": 3390, "14___CATEGORICAL___nom_8___99b33644d": 3391, "14___CATEGORICAL___nom_8___99c9bebdf": 3392, "14___CATEGORICAL___nom_8___99d1a5eed": 3393, "14___CATEGORICAL___nom_8___99d245d48": 3394, "14___CATEGORICAL___nom_8___99fccaa71": 3395, "14___CATEGORICAL___nom_8___9a02ccb2f": 3396, "14___CATEGORICAL___nom_8___9a053d45e": 3397, "14___CATEGORICAL___nom_8___9a5657ef9": 3398, "14___CATEGORICAL___nom_8___9a57ee5d5": 3399, "14___CATEGORICAL___nom_8___9a8f20867": 3400, "14___CATEGORICAL___nom_8___9aa5b1499": 3401, "14___CATEGORICAL___nom_8___9ada12c9b": 3402, "14___CATEGORICAL___nom_8___9ae60926f": 3403, "14___CATEGORICAL___nom_8___9b05fba81": 3404, "14___CATEGORICAL___nom_8___9b1194ba8": 3405, "14___CATEGORICAL___nom_8___9b311dcac": 3406, "14___CATEGORICAL___nom_8___9b37c72c4": 3407, "14___CATEGORICAL___nom_8___9b37d329d": 3408, "14___CATEGORICAL___nom_8___9b42db39e": 3409, "14___CATEGORICAL___nom_8___9b4f60f30": 3410, "14___CATEGORICAL___nom_8___9b6150ff9": 3411, "14___CATEGORICAL___nom_8___9b69d293b": 3412, "14___CATEGORICAL___nom_8___9b768b691": 3413, "14___CATEGORICAL___nom_8___9bc6f3867": 3414, "14___CATEGORICAL___nom_8___9bcbcfe73": 3415, "14___CATEGORICAL___nom_8___9bcdb10cf": 3416, "14___CATEGORICAL___nom_8___9bfb829f7": 3417, "14___CATEGORICAL___nom_8___9c093c194": 3418, "14___CATEGORICAL___nom_8___9c24b321d": 3419, "14___CATEGORICAL___nom_8___9c30d4222": 3420, "14___CATEGORICAL___nom_8___9c37df751": 3421, "14___CATEGORICAL___nom_8___9c42c85ca": 3422, "14___CATEGORICAL___nom_8___9c584d3a4": 3423, "14___CATEGORICAL___nom_8___9c7cad136": 3424, "14___CATEGORICAL___nom_8___9c979aa1a": 3425, "14___CATEGORICAL___nom_8___9ca6eb700": 3426, "14___CATEGORICAL___nom_8___9cd71190a": 3427, "14___CATEGORICAL___nom_8___9cd92895d": 3428, "14___CATEGORICAL___nom_8___9cf915892": 3429, "14___CATEGORICAL___nom_8___9d117320c": 3430, "14___CATEGORICAL___nom_8___9d1999cf6": 3431, "14___CATEGORICAL___nom_8___9d2458685": 3432, "14___CATEGORICAL___nom_8___9d3e856d5": 3433, "14___CATEGORICAL___nom_8___9d501a934": 3434, "14___CATEGORICAL___nom_8___9d570e787": 3435, "14___CATEGORICAL___nom_8___9d6ef839d": 3436, "14___CATEGORICAL___nom_8___9d7806fd9": 3437, "14___CATEGORICAL___nom_8___9d892d494": 3438, "14___CATEGORICAL___nom_8___9d931cf72": 3439, "14___CATEGORICAL___nom_8___9db1f7a0c": 3440, "14___CATEGORICAL___nom_8___9dd5cc1e7": 3441, "14___CATEGORICAL___nom_8___9e08b22f1": 3442, "14___CATEGORICAL___nom_8___9e10cdd8e": 3443, "14___CATEGORICAL___nom_8___9e394f78f": 3444, "14___CATEGORICAL___nom_8___9e4b23160": 3445, "14___CATEGORICAL___nom_8___9e623b2c4": 3446, "14___CATEGORICAL___nom_8___9e688bea2": 3447, "14___CATEGORICAL___nom_8___9e782d2cb": 3448, "14___CATEGORICAL___nom_8___9e98f297e": 3449, "14___CATEGORICAL___nom_8___9e9fb0b6d": 3450, "14___CATEGORICAL___nom_8___9ed47e9be": 3451, "14___CATEGORICAL___nom_8___9ed6677db": 3452, "14___CATEGORICAL___nom_8___9eea7b841": 3453, "14___CATEGORICAL___nom_8___9f2e41c74": 3454, "14___CATEGORICAL___nom_8___9faa5dded": 3455, "14___CATEGORICAL___nom_8___9fc723129": 3456, "14___CATEGORICAL___nom_8___9ff6898e5": 3457, "14___CATEGORICAL___nom_8___a0018feb8": 3458, "14___CATEGORICAL___nom_8___a04ad6ab5": 3459, "14___CATEGORICAL___nom_8___a05a24fc3": 3460, "14___CATEGORICAL___nom_8___a05cfe94b": 3461, "14___CATEGORICAL___nom_8___a0689cd0e": 3462, "14___CATEGORICAL___nom_8___a08b306db": 3463, "14___CATEGORICAL___nom_8___a08cf48e2": 3464, "14___CATEGORICAL___nom_8___a0a93d9a5": 3465, "14___CATEGORICAL___nom_8___a0b5dfcaf": 3466, "14___CATEGORICAL___nom_8___a0bce49a5": 3467, "14___CATEGORICAL___nom_8___a0c7fc6a0": 3468, "14___CATEGORICAL___nom_8___a101b24c2": 3469, "14___CATEGORICAL___nom_8___a11ef516f": 3470, "14___CATEGORICAL___nom_8___a142509f1": 3471, "14___CATEGORICAL___nom_8___a18243851": 3472, "14___CATEGORICAL___nom_8___a1f7b04e6": 3473, "14___CATEGORICAL___nom_8___a23c53c30": 3474, "14___CATEGORICAL___nom_8___a24a3dc76": 3475, "14___CATEGORICAL___nom_8___a2547a850": 3476, "14___CATEGORICAL___nom_8___a2c055f58": 3477, "14___CATEGORICAL___nom_8___a2d110837": 3478, "14___CATEGORICAL___nom_8___a2eb06773": 3479, "14___CATEGORICAL___nom_8___a2eb56495": 3480, "14___CATEGORICAL___nom_8___a30b8dd9c": 3481, "14___CATEGORICAL___nom_8___a32a3ef83": 3482, "14___CATEGORICAL___nom_8___a33b399b1": 3483, "14___CATEGORICAL___nom_8___a33cb0ef7": 3484, "14___CATEGORICAL___nom_8___a348247ca": 3485, "14___CATEGORICAL___nom_8___a371e684b": 3486, "14___CATEGORICAL___nom_8___a3d6900b2": 3487, "14___CATEGORICAL___nom_8___a435ca0db": 3488, "14___CATEGORICAL___nom_8___a444afb06": 3489, "14___CATEGORICAL___nom_8___a45a197b6": 3490, "14___CATEGORICAL___nom_8___a496705ad": 3491, "14___CATEGORICAL___nom_8___a4ba24658": 3492, "14___CATEGORICAL___nom_8___a4cfdd598": 3493, "14___CATEGORICAL___nom_8___a50522f2b": 3494, "14___CATEGORICAL___nom_8___a513613c0": 3495, "14___CATEGORICAL___nom_8___a52b7d8ec": 3496, "14___CATEGORICAL___nom_8___a52eca20d": 3497, "14___CATEGORICAL___nom_8___a5351b253": 3498, "14___CATEGORICAL___nom_8___a54b28890": 3499, "14___CATEGORICAL___nom_8___a586bc6d4": 3500, "14___CATEGORICAL___nom_8___a59606637": 3501, "14___CATEGORICAL___nom_8___a598669d2": 3502, "14___CATEGORICAL___nom_8___a5b3fb68e": 3503, "14___CATEGORICAL___nom_8___a5ccc01bb": 3504, "14___CATEGORICAL___nom_8___a5d155d6c": 3505, "14___CATEGORICAL___nom_8___a5dfc507b": 3506, "14___CATEGORICAL___nom_8___a60ab3f5e": 3507, "14___CATEGORICAL___nom_8___a619930eb": 3508, "14___CATEGORICAL___nom_8___a619cc437": 3509, "14___CATEGORICAL___nom_8___a64e33f1e": 3510, "14___CATEGORICAL___nom_8___a666f7dc4": 3511, "14___CATEGORICAL___nom_8___a66e862c4": 3512, "14___CATEGORICAL___nom_8___a697ee388": 3513, "14___CATEGORICAL___nom_8___a69a4df25": 3514, "14___CATEGORICAL___nom_8___a6ae56854": 3515, "14___CATEGORICAL___nom_8___a6bdcf2f0": 3516, "14___CATEGORICAL___nom_8___a6f95d115": 3517, "14___CATEGORICAL___nom_8___a7a4a203d": 3518, "14___CATEGORICAL___nom_8___a7bf5387a": 3519, "14___CATEGORICAL___nom_8___a7c105119": 3520, "14___CATEGORICAL___nom_8___a7d83e43a": 3521, "14___CATEGORICAL___nom_8___a7f44c669": 3522, "14___CATEGORICAL___nom_8___a846ab3ac": 3523, "14___CATEGORICAL___nom_8___a89fae205": 3524, "14___CATEGORICAL___nom_8___a8b517dc5": 3525, "14___CATEGORICAL___nom_8___a8d9f702e": 3526, "14___CATEGORICAL___nom_8___a8e43e4e8": 3527, "14___CATEGORICAL___nom_8___a92c09204": 3528, "14___CATEGORICAL___nom_8___a96775d37": 3529, "14___CATEGORICAL___nom_8___a96b3ac8e": 3530, "14___CATEGORICAL___nom_8___a97d2ec1d": 3531, "14___CATEGORICAL___nom_8___a9caec75d": 3532, "14___CATEGORICAL___nom_8___a9d35cede": 3533, "14___CATEGORICAL___nom_8___a9e540ca1": 3534, "14___CATEGORICAL___nom_8___aa08275e7": 3535, "14___CATEGORICAL___nom_8___aa16fa307": 3536, "14___CATEGORICAL___nom_8___aa195f372": 3537, "14___CATEGORICAL___nom_8___aa375a783": 3538, "14___CATEGORICAL___nom_8___aa8602b7f": 3539, "14___CATEGORICAL___nom_8___aab566067": 3540, "14___CATEGORICAL___nom_8___aae2d73a0": 3541, "14___CATEGORICAL___nom_8___ab238a6f5": 3542, "14___CATEGORICAL___nom_8___ab963d91c": 3543, "14___CATEGORICAL___nom_8___ab98ca6bd": 3544, "14___CATEGORICAL___nom_8___abd59f78f": 3545, "14___CATEGORICAL___nom_8___ac51b9975": 3546, "14___CATEGORICAL___nom_8___ac664dc2f": 3547, "14___CATEGORICAL___nom_8___ac6f71e3b": 3548, "14___CATEGORICAL___nom_8___ac84b337f": 3549, "14___CATEGORICAL___nom_8___ac918f7b5": 3550, "14___CATEGORICAL___nom_8___ace996dcb": 3551, "14___CATEGORICAL___nom_8___ad1f8262c": 3552, "14___CATEGORICAL___nom_8___ad38d6c0d": 3553, "14___CATEGORICAL___nom_8___ad97c3d39": 3554, "14___CATEGORICAL___nom_8___ad9e455c9": 3555, "14___CATEGORICAL___nom_8___ad9ef63f8": 3556, "14___CATEGORICAL___nom_8___adab14930": 3557, "14___CATEGORICAL___nom_8___adfe1ada0": 3558, "14___CATEGORICAL___nom_8___ae021111f": 3559, "14___CATEGORICAL___nom_8___ae06e29df": 3560, "14___CATEGORICAL___nom_8___ae1b11ffd": 3561, "14___CATEGORICAL___nom_8___ae1eb0585": 3562, "14___CATEGORICAL___nom_8___ae273a05e": 3563, "14___CATEGORICAL___nom_8___ae2e8eb47": 3564, "14___CATEGORICAL___nom_8___ae43387f4": 3565, "14___CATEGORICAL___nom_8___ae63df23a": 3566, "14___CATEGORICAL___nom_8___ae8e1d415": 3567, "14___CATEGORICAL___nom_8___aea7778ed": 3568, "14___CATEGORICAL___nom_8___aeaaf2bfe": 3569, "14___CATEGORICAL___nom_8___aec710735": 3570, "14___CATEGORICAL___nom_8___af18b263c": 3571, "14___CATEGORICAL___nom_8___af6fa6876": 3572, "14___CATEGORICAL___nom_8___af928f054": 3573, "14___CATEGORICAL___nom_8___afa40c23d": 3574, "14___CATEGORICAL___nom_8___afbb3506a": 3575, "14___CATEGORICAL___nom_8___afea2dab3": 3576, "14___CATEGORICAL___nom_8___afec4b889": 3577, "14___CATEGORICAL___nom_8___b0127e5d2": 3578, "14___CATEGORICAL___nom_8___b013aba7a": 3579, "14___CATEGORICAL___nom_8___b03e2a689": 3580, "14___CATEGORICAL___nom_8___b05a3f627": 3581, "14___CATEGORICAL___nom_8___b07c708aa": 3582, "14___CATEGORICAL___nom_8___b0800a9ed": 3583, "14___CATEGORICAL___nom_8___b08446fe0": 3584, "14___CATEGORICAL___nom_8___b09068d3c": 3585, "14___CATEGORICAL___nom_8___b098eb48e": 3586, "14___CATEGORICAL___nom_8___b0b8706f3": 3587, "14___CATEGORICAL___nom_8___b0c0e9443": 3588, "14___CATEGORICAL___nom_8___b13166170": 3589, "14___CATEGORICAL___nom_8___b14330b87": 3590, "14___CATEGORICAL___nom_8___b15c8a0ca": 3591, "14___CATEGORICAL___nom_8___b19bb1c28": 3592, "14___CATEGORICAL___nom_8___b1ebfd817": 3593, "14___CATEGORICAL___nom_8___b2291d197": 3594, "14___CATEGORICAL___nom_8___b247a3609": 3595, "14___CATEGORICAL___nom_8___b250508a3": 3596, "14___CATEGORICAL___nom_8___b25cfb005": 3597, "14___CATEGORICAL___nom_8___b2630ca94": 3598, "14___CATEGORICAL___nom_8___b2699410c": 3599, "14___CATEGORICAL___nom_8___b27f4235d": 3600, "14___CATEGORICAL___nom_8___b295087fb": 3601, "14___CATEGORICAL___nom_8___b29a4b8cb": 3602, "14___CATEGORICAL___nom_8___b2cb6a561": 3603, "14___CATEGORICAL___nom_8___b2cf4b19d": 3604, "14___CATEGORICAL___nom_8___b2daa8b10": 3605, "14___CATEGORICAL___nom_8___b2ee5c1ba": 3606, "14___CATEGORICAL___nom_8___b321d0ca8": 3607, "14___CATEGORICAL___nom_8___b3309192a": 3608, "14___CATEGORICAL___nom_8___b35f308e6": 3609, "14___CATEGORICAL___nom_8___b360b0a31": 3610, "14___CATEGORICAL___nom_8___b3663a25d": 3611, "14___CATEGORICAL___nom_8___b36a6282f": 3612, "14___CATEGORICAL___nom_8___b36ea7c20": 3613, "14___CATEGORICAL___nom_8___b3dbbae17": 3614, "14___CATEGORICAL___nom_8___b42c08fd7": 3615, "14___CATEGORICAL___nom_8___b4becbd10": 3616, "14___CATEGORICAL___nom_8___b4d1a4592": 3617, "14___CATEGORICAL___nom_8___b4ed5f261": 3618, "14___CATEGORICAL___nom_8___b50556b0f": 3619, "14___CATEGORICAL___nom_8___b508e37fb": 3620, "14___CATEGORICAL___nom_8___b50cadffc": 3621, "14___CATEGORICAL___nom_8___b51f9bd5e": 3622, "14___CATEGORICAL___nom_8___b5303e9b5": 3623, "14___CATEGORICAL___nom_8___b557b53fa": 3624, "14___CATEGORICAL___nom_8___b562d24f0": 3625, "14___CATEGORICAL___nom_8___b5d640dcd": 3626, "14___CATEGORICAL___nom_8___b5dd3e5be": 3627, "14___CATEGORICAL___nom_8___b5ee71542": 3628, "14___CATEGORICAL___nom_8___b6972d6ec": 3629, "14___CATEGORICAL___nom_8___b6dbdc48a": 3630, "14___CATEGORICAL___nom_8___b7035ddd0": 3631, "14___CATEGORICAL___nom_8___b70f8e80e": 3632, "14___CATEGORICAL___nom_8___b759e21f0": 3633, "14___CATEGORICAL___nom_8___b780a20ef": 3634, "14___CATEGORICAL___nom_8___b7e2bd965": 3635, "14___CATEGORICAL___nom_8___b7e6f8e6f": 3636, "14___CATEGORICAL___nom_8___b7f127f12": 3637, "14___CATEGORICAL___nom_8___b80b1b531": 3638, "14___CATEGORICAL___nom_8___b81808e2c": 3639, "14___CATEGORICAL___nom_8___b83cb4503": 3640, "14___CATEGORICAL___nom_8___b8428a89a": 3641, "14___CATEGORICAL___nom_8___b85e951f2": 3642, "14___CATEGORICAL___nom_8___b85e996e0": 3643, "14___CATEGORICAL___nom_8___b864d65df": 3644, "14___CATEGORICAL___nom_8___b876871ee": 3645, "14___CATEGORICAL___nom_8___b886d6c1c": 3646, "14___CATEGORICAL___nom_8___b8a606ee1": 3647, "14___CATEGORICAL___nom_8___b8d4be70f": 3648, "14___CATEGORICAL___nom_8___b8d8c140b": 3649, "14___CATEGORICAL___nom_8___b8d8d9935": 3650, "14___CATEGORICAL___nom_8___b90051dbf": 3651, "14___CATEGORICAL___nom_8___b9023027b": 3652, "14___CATEGORICAL___nom_8___b907d7706": 3653, "14___CATEGORICAL___nom_8___b91d24c00": 3654, "14___CATEGORICAL___nom_8___b9388117c": 3655, "14___CATEGORICAL___nom_8___b98d3e95c": 3656, "14___CATEGORICAL___nom_8___b98fc9df3": 3657, "14___CATEGORICAL___nom_8___b99b10c75": 3658, "14___CATEGORICAL___nom_8___b9ce5df8a": 3659, "14___CATEGORICAL___nom_8___b9dd3a8d5": 3660, "14___CATEGORICAL___nom_8___ba0354bd3": 3661, "14___CATEGORICAL___nom_8___ba0908512": 3662, "14___CATEGORICAL___nom_8___ba3e7ea1a": 3663, "14___CATEGORICAL___nom_8___ba5bf50d8": 3664, "14___CATEGORICAL___nom_8___ba639d49c": 3665, "14___CATEGORICAL___nom_8___ba6617f70": 3666, "14___CATEGORICAL___nom_8___ba851e117": 3667, "14___CATEGORICAL___nom_8___ba901f5b6": 3668, "14___CATEGORICAL___nom_8___ba9467f18": 3669, "14___CATEGORICAL___nom_8___ba983394b": 3670, "14___CATEGORICAL___nom_8___baa48f18e": 3671, "14___CATEGORICAL___nom_8___babfaeb99": 3672, "14___CATEGORICAL___nom_8___bacc1709e": 3673, "14___CATEGORICAL___nom_8___baf4e8214": 3674, "14___CATEGORICAL___nom_8___baff3d9e9": 3675, "14___CATEGORICAL___nom_8___bb103b1d8": 3676, "14___CATEGORICAL___nom_8___bb215fb49": 3677, "14___CATEGORICAL___nom_8___bb2c599dd": 3678, "14___CATEGORICAL___nom_8___bb61db96a": 3679, "14___CATEGORICAL___nom_8___bb795cbb6": 3680, "14___CATEGORICAL___nom_8___bb7c39795": 3681, "14___CATEGORICAL___nom_8___bbb7024e6": 3682, "14___CATEGORICAL___nom_8___bbbc9dc68": 3683, "14___CATEGORICAL___nom_8___bbeda41da": 3684, "14___CATEGORICAL___nom_8___bbfac060a": 3685, "14___CATEGORICAL___nom_8___bbfffb3a2": 3686, "14___CATEGORICAL___nom_8___bc28a14cf": 3687, "14___CATEGORICAL___nom_8___bc28bbcdb": 3688, "14___CATEGORICAL___nom_8___bc2b3468f": 3689, "14___CATEGORICAL___nom_8___bc4de41e5": 3690, "14___CATEGORICAL___nom_8___bc6cd367c": 3691, "14___CATEGORICAL___nom_8___bc8d00b60": 3692, "14___CATEGORICAL___nom_8___bca196117": 3693, "14___CATEGORICAL___nom_8___bca945ef3": 3694, "14___CATEGORICAL___nom_8___bcc7e3908": 3695, "14___CATEGORICAL___nom_8___bcd17ff67": 3696, "14___CATEGORICAL___nom_8___bcd94d848": 3697, "14___CATEGORICAL___nom_8___bcdc4924e": 3698, "14___CATEGORICAL___nom_8___bd4bec619": 3699, "14___CATEGORICAL___nom_8___bd7a542d2": 3700, "14___CATEGORICAL___nom_8___bd9834dfd": 3701, "14___CATEGORICAL___nom_8___be5418e47": 3702, "14___CATEGORICAL___nom_8___be9a0ca50": 3703, "14___CATEGORICAL___nom_8___be9dabb16": 3704, "14___CATEGORICAL___nom_8___beacd1432": 3705, "14___CATEGORICAL___nom_8___bed34b329": 3706, "14___CATEGORICAL___nom_8___bedd321af": 3707, "14___CATEGORICAL___nom_8___bee621d96": 3708, "14___CATEGORICAL___nom_8___bf0cade0d": 3709, "14___CATEGORICAL___nom_8___bf1dcdc12": 3710, "14___CATEGORICAL___nom_8___bf30347cf": 3711, "14___CATEGORICAL___nom_8___bf379c287": 3712, "14___CATEGORICAL___nom_8___bf65759ac": 3713, "14___CATEGORICAL___nom_8___bfb87ea35": 3714, "14___CATEGORICAL___nom_8___bfcf448a6": 3715, "14___CATEGORICAL___nom_8___c028d33aa": 3716, "14___CATEGORICAL___nom_8___c02f9ab4b": 3717, "14___CATEGORICAL___nom_8___c040b0b11": 3718, "14___CATEGORICAL___nom_8___c0649fb92": 3719, "14___CATEGORICAL___nom_8___c09a0e552": 3720, "14___CATEGORICAL___nom_8___c0a130cc5": 3721, "14___CATEGORICAL___nom_8___c0b86a256": 3722, "14___CATEGORICAL___nom_8___c0c8cacf3": 3723, "14___CATEGORICAL___nom_8___c109ff3ff": 3724, "14___CATEGORICAL___nom_8___c13d3ebdf": 3725, "14___CATEGORICAL___nom_8___c148f1638": 3726, "14___CATEGORICAL___nom_8___c158e37ba": 3727, "14___CATEGORICAL___nom_8___c1665c372": 3728, "14___CATEGORICAL___nom_8___c17775b6f": 3729, "14___CATEGORICAL___nom_8___c1a9f7f7f": 3730, "14___CATEGORICAL___nom_8___c23895153": 3731, "14___CATEGORICAL___nom_8___c239a5ba7": 3732, "14___CATEGORICAL___nom_8___c260ab330": 3733, "14___CATEGORICAL___nom_8___c26c86885": 3734, "14___CATEGORICAL___nom_8___c26d962e8": 3735, "14___CATEGORICAL___nom_8___c26e5ca98": 3736, "14___CATEGORICAL___nom_8___c289f3add": 3737, "14___CATEGORICAL___nom_8___c2a10ff81": 3738, "14___CATEGORICAL___nom_8___c2a416ba2": 3739, "14___CATEGORICAL___nom_8___c2d7fbae0": 3740, "14___CATEGORICAL___nom_8___c2dfecfea": 3741, "14___CATEGORICAL___nom_8___c2f10c23a": 3742, "14___CATEGORICAL___nom_8___c2f66dc3f": 3743, "14___CATEGORICAL___nom_8___c323d28a0": 3744, "14___CATEGORICAL___nom_8___c35122b27": 3745, "14___CATEGORICAL___nom_8___c36389e22": 3746, "14___CATEGORICAL___nom_8___c378a1cd1": 3747, "14___CATEGORICAL___nom_8___c389000ab": 3748, "14___CATEGORICAL___nom_8___c3938ecbe": 3749, "14___CATEGORICAL___nom_8___c3ae45839": 3750, "14___CATEGORICAL___nom_8___c3f6d6a89": 3751, "14___CATEGORICAL___nom_8___c41696165": 3752, "14___CATEGORICAL___nom_8___c42d909bf": 3753, "14___CATEGORICAL___nom_8___c42f562d9": 3754, "14___CATEGORICAL___nom_8___c459b4739": 3755, "14___CATEGORICAL___nom_8___c46c6451c": 3756, "14___CATEGORICAL___nom_8___c47c38880": 3757, "14___CATEGORICAL___nom_8___c495ce400": 3758, "14___CATEGORICAL___nom_8___c4d34418e": 3759, "14___CATEGORICAL___nom_8___c4e5456b9": 3760, "14___CATEGORICAL___nom_8___c4ebe850c": 3761, "14___CATEGORICAL___nom_8___c4f837d94": 3762, "14___CATEGORICAL___nom_8___c506c2080": 3763, "14___CATEGORICAL___nom_8___c5083bc55": 3764, "14___CATEGORICAL___nom_8___c5230ce1d": 3765, "14___CATEGORICAL___nom_8___c52fbca22": 3766, "14___CATEGORICAL___nom_8___c56e646f7": 3767, "14___CATEGORICAL___nom_8___c585fc552": 3768, "14___CATEGORICAL___nom_8___c58736b2b": 3769, "14___CATEGORICAL___nom_8___c58eb9e31": 3770, "14___CATEGORICAL___nom_8___c5a3abfcf": 3771, "14___CATEGORICAL___nom_8___c5ddeedd1": 3772, "14___CATEGORICAL___nom_8___c5e72a6bf": 3773, "14___CATEGORICAL___nom_8___c5faa8377": 3774, "14___CATEGORICAL___nom_8___c5ffda93b": 3775, "14___CATEGORICAL___nom_8___c6287237e": 3776, "14___CATEGORICAL___nom_8___c62fe8387": 3777, "14___CATEGORICAL___nom_8___c6312c571": 3778, "14___CATEGORICAL___nom_8___c68e5326c": 3779, "14___CATEGORICAL___nom_8___c699c36c7": 3780, "14___CATEGORICAL___nom_8___c6cbd79ec": 3781, "14___CATEGORICAL___nom_8___c6d5fb7a3": 3782, "14___CATEGORICAL___nom_8___c720f85ca": 3783, "14___CATEGORICAL___nom_8___c72b78ad7": 3784, "14___CATEGORICAL___nom_8___c74b05c9a": 3785, "14___CATEGORICAL___nom_8___c75847d5a": 3786, "14___CATEGORICAL___nom_8___c79ed7e75": 3787, "14___CATEGORICAL___nom_8___c822d0d5a": 3788, "14___CATEGORICAL___nom_8___c829bef5b": 3789, "14___CATEGORICAL___nom_8___c82c6f5ff": 3790, "14___CATEGORICAL___nom_8___c86146f17": 3791, "14___CATEGORICAL___nom_8___c86f89a21": 3792, "14___CATEGORICAL___nom_8___c874a058e": 3793, "14___CATEGORICAL___nom_8___c877ec971": 3794, "14___CATEGORICAL___nom_8___c8a8c9912": 3795, "14___CATEGORICAL___nom_8___c8f505f52": 3796, "14___CATEGORICAL___nom_8___c9165c84a": 3797, "14___CATEGORICAL___nom_8___c9180665d": 3798, "14___CATEGORICAL___nom_8___c92172a08": 3799, "14___CATEGORICAL___nom_8___c9370520b": 3800, "14___CATEGORICAL___nom_8___c946d9ec7": 3801, "14___CATEGORICAL___nom_8___c9480d8f9": 3802, "14___CATEGORICAL___nom_8___c9645e2a3": 3803, "14___CATEGORICAL___nom_8___c97dae701": 3804, "14___CATEGORICAL___nom_8___c99b41681": 3805, "14___CATEGORICAL___nom_8___c9a1187a9": 3806, "14___CATEGORICAL___nom_8___c9b8d19b3": 3807, "14___CATEGORICAL___nom_8___c9d0177ab": 3808, "14___CATEGORICAL___nom_8___c9d273937": 3809, "14___CATEGORICAL___nom_8___c9dba1070": 3810, "14___CATEGORICAL___nom_8___c9e4c877a": 3811, "14___CATEGORICAL___nom_8___ca0cab425": 3812, "14___CATEGORICAL___nom_8___ca49ac882": 3813, "14___CATEGORICAL___nom_8___ca4d3a2d0": 3814, "14___CATEGORICAL___nom_8___ca6f562f9": 3815, "14___CATEGORICAL___nom_8___ca722a0c7": 3816, "14___CATEGORICAL___nom_8___ca9c9cb0b": 3817, "14___CATEGORICAL___nom_8___caac6b6aa": 3818, "14___CATEGORICAL___nom_8___cac06173c": 3819, "14___CATEGORICAL___nom_8___cae70a043": 3820, "14___CATEGORICAL___nom_8___cb0df1398": 3821, "14___CATEGORICAL___nom_8___cb43ab175": 3822, "14___CATEGORICAL___nom_8___cb6b287ca": 3823, "14___CATEGORICAL___nom_8___cb7bc371f": 3824, "14___CATEGORICAL___nom_8___cbbffa79b": 3825, "14___CATEGORICAL___nom_8___cbc479489": 3826, "14___CATEGORICAL___nom_8___cc11548b7": 3827, "14___CATEGORICAL___nom_8___cc19213ad": 3828, "14___CATEGORICAL___nom_8___cc1b2c95e": 3829, "14___CATEGORICAL___nom_8___cc4c9e90c": 3830, "14___CATEGORICAL___nom_8___cc8afa79e": 3831, "14___CATEGORICAL___nom_8___cc9104f31": 3832, "14___CATEGORICAL___nom_8___cca1c3bc9": 3833, "14___CATEGORICAL___nom_8___cce1a867b": 3834, "14___CATEGORICAL___nom_8___ccee5b87d": 3835, "14___CATEGORICAL___nom_8___cd254c17c": 3836, "14___CATEGORICAL___nom_8___cd4799710": 3837, "14___CATEGORICAL___nom_8___cd482b564": 3838, "14___CATEGORICAL___nom_8___cd5429c0d": 3839, "14___CATEGORICAL___nom_8___cd579b4ac": 3840, "14___CATEGORICAL___nom_8___cd6548ef6": 3841, "14___CATEGORICAL___nom_8___cd91fa17f": 3842, "14___CATEGORICAL___nom_8___cdf4381f3": 3843, "14___CATEGORICAL___nom_8___ce1c52e78": 3844, "14___CATEGORICAL___nom_8___ce2e1fd64": 3845, "14___CATEGORICAL___nom_8___ce77e535e": 3846, "14___CATEGORICAL___nom_8___ce7bd7d9a": 3847, "14___CATEGORICAL___nom_8___ce837ff7c": 3848, "14___CATEGORICAL___nom_8___ce84bfa6a": 3849, "14___CATEGORICAL___nom_8___cea2817a5": 3850, "14___CATEGORICAL___nom_8___ceb00b79c": 3851, "14___CATEGORICAL___nom_8___cf045c728": 3852, "14___CATEGORICAL___nom_8___cf2454969": 3853, "14___CATEGORICAL___nom_8___cf46756be": 3854, "14___CATEGORICAL___nom_8___cf5d1c448": 3855, "14___CATEGORICAL___nom_8___cf61d0c57": 3856, "14___CATEGORICAL___nom_8___cf75e38ae": 3857, "14___CATEGORICAL___nom_8___cf75ff816": 3858, "14___CATEGORICAL___nom_8___cfbbbf9c0": 3859, "14___CATEGORICAL___nom_8___cfbd87ed0": 3860, "14___CATEGORICAL___nom_8___cfd8b1264": 3861, "14___CATEGORICAL___nom_8___cfe0e3d59": 3862, "14___CATEGORICAL___nom_8___d00612fe7": 3863, "14___CATEGORICAL___nom_8___d01423561": 3864, "14___CATEGORICAL___nom_8___d01a8f4a7": 3865, "14___CATEGORICAL___nom_8___d051d0fc8": 3866, "14___CATEGORICAL___nom_8___d05a1fd03": 3867, "14___CATEGORICAL___nom_8___d091d16ed": 3868, "14___CATEGORICAL___nom_8___d0beb8257": 3869, "14___CATEGORICAL___nom_8___d0cb271f6": 3870, "14___CATEGORICAL___nom_8___d0ead99a4": 3871, "14___CATEGORICAL___nom_8___d0ef7c409": 3872, "14___CATEGORICAL___nom_8___d0f293c7b": 3873, "14___CATEGORICAL___nom_8___d114dd2be": 3874, "14___CATEGORICAL___nom_8___d1316ead6": 3875, "14___CATEGORICAL___nom_8___d14631ea2": 3876, "14___CATEGORICAL___nom_8___d176969eb": 3877, "14___CATEGORICAL___nom_8___d17e00f8f": 3878, "14___CATEGORICAL___nom_8___d1cc480eb": 3879, "14___CATEGORICAL___nom_8___d200e225e": 3880, "14___CATEGORICAL___nom_8___d20454f08": 3881, "14___CATEGORICAL___nom_8___d24281bc6": 3882, "14___CATEGORICAL___nom_8___d249a507d": 3883, "14___CATEGORICAL___nom_8___d266ff644": 3884, "14___CATEGORICAL___nom_8___d2801db5b": 3885, "14___CATEGORICAL___nom_8___d28926816": 3886, "14___CATEGORICAL___nom_8___d2ae52e99": 3887, "14___CATEGORICAL___nom_8___d2da78c9e": 3888, "14___CATEGORICAL___nom_8___d2e0f889f": 3889, "14___CATEGORICAL___nom_8___d2f3c1440": 3890, "14___CATEGORICAL___nom_8___d2f94bb73": 3891, "14___CATEGORICAL___nom_8___d302eb66b": 3892, "14___CATEGORICAL___nom_8___d31a35718": 3893, "14___CATEGORICAL___nom_8___d34944b63": 3894, "14___CATEGORICAL___nom_8___d3639183a": 3895, "14___CATEGORICAL___nom_8___d38282f94": 3896, "14___CATEGORICAL___nom_8___d3bcd5e12": 3897, "14___CATEGORICAL___nom_8___d3be2159d": 3898, "14___CATEGORICAL___nom_8___d3c158775": 3899, "14___CATEGORICAL___nom_8___d3cff93be": 3900, "14___CATEGORICAL___nom_8___d40b11a75": 3901, "14___CATEGORICAL___nom_8___d40e0503f": 3902, "14___CATEGORICAL___nom_8___d45223a7d": 3903, "14___CATEGORICAL___nom_8___d45643422": 3904, "14___CATEGORICAL___nom_8___d4618f3ec": 3905, "14___CATEGORICAL___nom_8___d469000ca": 3906, "14___CATEGORICAL___nom_8___d47ebf6da": 3907, "14___CATEGORICAL___nom_8___d4c4281cc": 3908, "14___CATEGORICAL___nom_8___d4ff22472": 3909, "14___CATEGORICAL___nom_8___d51a928ca": 3910, "14___CATEGORICAL___nom_8___d561e366f": 3911, "14___CATEGORICAL___nom_8___d5aa42caa": 3912, "14___CATEGORICAL___nom_8___d5aa67a68": 3913, "14___CATEGORICAL___nom_8___d5b52c3c3": 3914, "14___CATEGORICAL___nom_8___d5d2c1cc0": 3915, "14___CATEGORICAL___nom_8___d5e5d555c": 3916, "14___CATEGORICAL___nom_8___d604dbdd9": 3917, "14___CATEGORICAL___nom_8___d66af2508": 3918, "14___CATEGORICAL___nom_8___d69adef8b": 3919, "14___CATEGORICAL___nom_8___d6b5a53d9": 3920, "14___CATEGORICAL___nom_8___d6d8298c8": 3921, "14___CATEGORICAL___nom_8___d73f1e10a": 3922, "14___CATEGORICAL___nom_8___d74bb7861": 3923, "14___CATEGORICAL___nom_8___d76867166": 3924, "14___CATEGORICAL___nom_8___d78456e3e": 3925, "14___CATEGORICAL___nom_8___d7875ced9": 3926, "14___CATEGORICAL___nom_8___d7b62c86f": 3927, "14___CATEGORICAL___nom_8___d7d0e2ac6": 3928, "14___CATEGORICAL___nom_8___d7e1019fd": 3929, "14___CATEGORICAL___nom_8___d82636a8b": 3930, "14___CATEGORICAL___nom_8___d87e62538": 3931, "14___CATEGORICAL___nom_8___d8c357805": 3932, "14___CATEGORICAL___nom_8___d8c52dca1": 3933, "14___CATEGORICAL___nom_8___d8f7e41e9": 3934, "14___CATEGORICAL___nom_8___d9646f552": 3935, "14___CATEGORICAL___nom_8___d976513dc": 3936, "14___CATEGORICAL___nom_8___d9985175e": 3937, "14___CATEGORICAL___nom_8___d9b30e440": 3938, "14___CATEGORICAL___nom_8___d9d98d4ae": 3939, "14___CATEGORICAL___nom_8___d9e105c14": 3940, "14___CATEGORICAL___nom_8___d9e50c0c2": 3941, "14___CATEGORICAL___nom_8___d9e5d2eb7": 3942, "14___CATEGORICAL___nom_8___d9e7bda6e": 3943, "14___CATEGORICAL___nom_8___d9ee86c45": 3944, "14___CATEGORICAL___nom_8___d9f58518e": 3945, "14___CATEGORICAL___nom_8___da1fdbf74": 3946, "14___CATEGORICAL___nom_8___da2432384": 3947, "14___CATEGORICAL___nom_8___da376ec8c": 3948, "14___CATEGORICAL___nom_8___da4a7c11d": 3949, "14___CATEGORICAL___nom_8___da5245562": 3950, "14___CATEGORICAL___nom_8___da6766e40": 3951, "14___CATEGORICAL___nom_8___da8834a38": 3952, "14___CATEGORICAL___nom_8___da8be1022": 3953, "14___CATEGORICAL___nom_8___daa1f22dc": 3954, "14___CATEGORICAL___nom_8___dab340800": 3955, "14___CATEGORICAL___nom_8___dab3adf54": 3956, "14___CATEGORICAL___nom_8___dac367de2": 3957, "14___CATEGORICAL___nom_8___dacb01e71": 3958, "14___CATEGORICAL___nom_8___daea02933": 3959, "14___CATEGORICAL___nom_8___db2e017c6": 3960, "14___CATEGORICAL___nom_8___db3352558": 3961, "14___CATEGORICAL___nom_8___db543c764": 3962, "14___CATEGORICAL___nom_8___db8b6ab4c": 3963, "14___CATEGORICAL___nom_8___dbc05cc3f": 3964, "14___CATEGORICAL___nom_8___dbc89694c": 3965, "14___CATEGORICAL___nom_8___dbdd6692a": 3966, "14___CATEGORICAL___nom_8___dc4415f93": 3967, "14___CATEGORICAL___nom_8___dc6d514cb": 3968, "14___CATEGORICAL___nom_8___dc726f517": 3969, "14___CATEGORICAL___nom_8___dc72aa69c": 3970, "14___CATEGORICAL___nom_8___dc9f5c70f": 3971, "14___CATEGORICAL___nom_8___dcb92c5f2": 3972, "14___CATEGORICAL___nom_8___dcbd31128": 3973, "14___CATEGORICAL___nom_8___dcd7bad00": 3974, "14___CATEGORICAL___nom_8___dce8d8f7d": 3975, "14___CATEGORICAL___nom_8___dcea59284": 3976, "14___CATEGORICAL___nom_8___dcf46fee1": 3977, "14___CATEGORICAL___nom_8___dcf843eef": 3978, "14___CATEGORICAL___nom_8___dcfc4407a": 3979, "14___CATEGORICAL___nom_8___dd0abe423": 3980, "14___CATEGORICAL___nom_8___dd1ea2a9b": 3981, "14___CATEGORICAL___nom_8___dd3966979": 3982, "14___CATEGORICAL___nom_8___dd3e3a265": 3983, "14___CATEGORICAL___nom_8___dd5f011b4": 3984, "14___CATEGORICAL___nom_8___dda02ff87": 3985, "14___CATEGORICAL___nom_8___ddc0d2426": 3986, "14___CATEGORICAL___nom_8___dddd242ad": 3987, "14___CATEGORICAL___nom_8___dde2bf409": 3988, "14___CATEGORICAL___nom_8___ddf5ee9f9": 3989, "14___CATEGORICAL___nom_8___ddf712d11": 3990, "14___CATEGORICAL___nom_8___de5cabf44": 3991, "14___CATEGORICAL___nom_8___de61586f8": 3992, "14___CATEGORICAL___nom_8___de8b99bd9": 3993, "14___CATEGORICAL___nom_8___de9c9f684": 3994, "14___CATEGORICAL___nom_8___dee8a6be0": 3995, "14___CATEGORICAL___nom_8___df232de17": 3996, "14___CATEGORICAL___nom_8___df68e43f2": 3997, "14___CATEGORICAL___nom_8___df81b8761": 3998, "14___CATEGORICAL___nom_8___df8999dfb": 3999, "14___CATEGORICAL___nom_8___df8bbb20d": 4000, "14___CATEGORICAL___nom_8___df8d8c987": 4001, "14___CATEGORICAL___nom_8___e00f8ad1f": 4002, "14___CATEGORICAL___nom_8___e01785493": 4003, "14___CATEGORICAL___nom_8___e0734b0c9": 4004, "14___CATEGORICAL___nom_8___e07bd60a7": 4005, "14___CATEGORICAL___nom_8___e08e0a8d1": 4006, "14___CATEGORICAL___nom_8___e0a84321e": 4007, "14___CATEGORICAL___nom_8___e0d257420": 4008, "14___CATEGORICAL___nom_8___e0da94a47": 4009, "14___CATEGORICAL___nom_8___e0dd41013": 4010, "14___CATEGORICAL___nom_8___e0fca312d": 4011, "14___CATEGORICAL___nom_8___e12bc5609": 4012, "14___CATEGORICAL___nom_8___e13fc9abb": 4013, "14___CATEGORICAL___nom_8___e1e15bb6b": 4014, "14___CATEGORICAL___nom_8___e1f545f9d": 4015, "14___CATEGORICAL___nom_8___e24779844": 4016, "14___CATEGORICAL___nom_8___e27d4b326": 4017, "14___CATEGORICAL___nom_8___e27ed45e9": 4018, "14___CATEGORICAL___nom_8___e2a815f34": 4019, "14___CATEGORICAL___nom_8___e2b580e70": 4020, "14___CATEGORICAL___nom_8___e2c6ec26d": 4021, "14___CATEGORICAL___nom_8___e32fd31bc": 4022, "14___CATEGORICAL___nom_8___e33c9683a": 4023, "14___CATEGORICAL___nom_8___e3525bf8b": 4024, "14___CATEGORICAL___nom_8___e36074083": 4025, "14___CATEGORICAL___nom_8___e37c55b57": 4026, "14___CATEGORICAL___nom_8___e3923c01a": 4027, "14___CATEGORICAL___nom_8___e3adda312": 4028, "14___CATEGORICAL___nom_8___e40e75916": 4029, "14___CATEGORICAL___nom_8___e41140984": 4030, "14___CATEGORICAL___nom_8___e416d02e6": 4031, "14___CATEGORICAL___nom_8___e43f2e990": 4032, "14___CATEGORICAL___nom_8___e479ccef0": 4033, "14___CATEGORICAL___nom_8___e48171ccd": 4034, "14___CATEGORICAL___nom_8___e482967f3": 4035, "14___CATEGORICAL___nom_8___e4a85f363": 4036, "14___CATEGORICAL___nom_8___e4ae1fa52": 4037, "14___CATEGORICAL___nom_8___e4d784581": 4038, "14___CATEGORICAL___nom_8___e4f60e3eb": 4039, "14___CATEGORICAL___nom_8___e5044ae49": 4040, "14___CATEGORICAL___nom_8___e5236bb77": 4041, "14___CATEGORICAL___nom_8___e53380e2c": 4042, "14___CATEGORICAL___nom_8___e580cbc96": 4043, "14___CATEGORICAL___nom_8___e588cff32": 4044, "14___CATEGORICAL___nom_8___e597a8791": 4045, "14___CATEGORICAL___nom_8___e5c6d159d": 4046, "14___CATEGORICAL___nom_8___e5f3dfb3d": 4047, "14___CATEGORICAL___nom_8___e5fcb5ae0": 4048, "14___CATEGORICAL___nom_8___e601670bb": 4049, "14___CATEGORICAL___nom_8___e657de750": 4050, "14___CATEGORICAL___nom_8___e667da576": 4051, "14___CATEGORICAL___nom_8___e6836709f": 4052, "14___CATEGORICAL___nom_8___e689178b4": 4053, "14___CATEGORICAL___nom_8___e6afc0613": 4054, "14___CATEGORICAL___nom_8___e6b71769e": 4055, "14___CATEGORICAL___nom_8___e6b8a118f": 4056, "14___CATEGORICAL___nom_8___e6e22d99b": 4057, "14___CATEGORICAL___nom_8___e6f1d5fc2": 4058, "14___CATEGORICAL___nom_8___e7788ed07": 4059, "14___CATEGORICAL___nom_8___e7a540f00": 4060, "14___CATEGORICAL___nom_8___e7ace3433": 4061, "14___CATEGORICAL___nom_8___e7ed9ec87": 4062, "14___CATEGORICAL___nom_8___e87174322": 4063, "14___CATEGORICAL___nom_8___e87251003": 4064, "14___CATEGORICAL___nom_8___e89889a70": 4065, "14___CATEGORICAL___nom_8___e8ceda996": 4066, "14___CATEGORICAL___nom_8___e8ed352ca": 4067, "14___CATEGORICAL___nom_8___e8f1201dc": 4068, "14___CATEGORICAL___nom_8___e93f30c2f": 4069, "14___CATEGORICAL___nom_8___e9ac8b496": 4070, "14___CATEGORICAL___nom_8___e9d87009b": 4071, "14___CATEGORICAL___nom_8___e9e0e972d": 4072, "14___CATEGORICAL___nom_8___e9f3f8733": 4073, "14___CATEGORICAL___nom_8___ea03f42aa": 4074, "14___CATEGORICAL___nom_8___ea0bd617f": 4075, "14___CATEGORICAL___nom_8___ea0d16148": 4076, "14___CATEGORICAL___nom_8___ea19101e5": 4077, "14___CATEGORICAL___nom_8___ea2eba649": 4078, "14___CATEGORICAL___nom_8___ea374ba40": 4079, "14___CATEGORICAL___nom_8___ea392401b": 4080, "14___CATEGORICAL___nom_8___ea4915654": 4081, "14___CATEGORICAL___nom_8___ea4f842b4": 4082, "14___CATEGORICAL___nom_8___ea6fef1af": 4083, "14___CATEGORICAL___nom_8___eaa0cdac0": 4084, "14___CATEGORICAL___nom_8___eab74765e": 4085, "14___CATEGORICAL___nom_8___eabc1ee54": 4086, "14___CATEGORICAL___nom_8___eac634872": 4087, "14___CATEGORICAL___nom_8___eae7eef3b": 4088, "14___CATEGORICAL___nom_8___eaf3831ea": 4089, "14___CATEGORICAL___nom_8___eb1b8cea2": 4090, "14___CATEGORICAL___nom_8___eb2dc547b": 4091, "14___CATEGORICAL___nom_8___eb4d2c5b9": 4092, "14___CATEGORICAL___nom_8___eb5a18e2f": 4093, "14___CATEGORICAL___nom_8___eb6259cb7": 4094, "14___CATEGORICAL___nom_8___eb9a2b2d7": 4095, "14___CATEGORICAL___nom_8___ebafa5e20": 4096, "14___CATEGORICAL___nom_8___ebbbc91f3": 4097, "14___CATEGORICAL___nom_8___ebc6cb63d": 4098, "14___CATEGORICAL___nom_8___ebcbb23bd": 4099, "14___CATEGORICAL___nom_8___ebd3cc4cb": 4100, "14___CATEGORICAL___nom_8___ebfe6b3b5": 4101, "14___CATEGORICAL___nom_8___ec0fe23eb": 4102, "14___CATEGORICAL___nom_8___ec329560c": 4103, "14___CATEGORICAL___nom_8___ec3cc552f": 4104, "14___CATEGORICAL___nom_8___ec5e9f1a4": 4105, "14___CATEGORICAL___nom_8___eca31f6ec": 4106, "14___CATEGORICAL___nom_8___ecfac8f2a": 4107, "14___CATEGORICAL___nom_8___ed1d52ddc": 4108, "14___CATEGORICAL___nom_8___ed21c9a5c": 4109, "14___CATEGORICAL___nom_8___ed24a1258": 4110, "14___CATEGORICAL___nom_8___ed4b0b59b": 4111, "14___CATEGORICAL___nom_8___ed53b4f11": 4112, "14___CATEGORICAL___nom_8___ed88ce35d": 4113, "14___CATEGORICAL___nom_8___eda76fee3": 4114, "14___CATEGORICAL___nom_8___edb9a61dc": 4115, "14___CATEGORICAL___nom_8___edbd3d8cb": 4116, "14___CATEGORICAL___nom_8___edc54486c": 4117, "14___CATEGORICAL___nom_8___edd26d8a3": 4118, "14___CATEGORICAL___nom_8___edd67eb51": 4119, "14___CATEGORICAL___nom_8___eddf51759": 4120, "14___CATEGORICAL___nom_8___edfc6cc92": 4121, "14___CATEGORICAL___nom_8___ee05c0cc1": 4122, "14___CATEGORICAL___nom_8___ee08d3f06": 4123, "14___CATEGORICAL___nom_8___ee2aa5f80": 4124, "14___CATEGORICAL___nom_8___ee32cf729": 4125, "14___CATEGORICAL___nom_8___ee9f2459d": 4126, "14___CATEGORICAL___nom_8___ef029c3fd": 4127, "14___CATEGORICAL___nom_8___ef1a084ff": 4128, "14___CATEGORICAL___nom_8___ef5c18e97": 4129, "14___CATEGORICAL___nom_8___ef5e2cc56": 4130, "14___CATEGORICAL___nom_8___ef666ab49": 4131, "14___CATEGORICAL___nom_8___efb91e4dd": 4132, "14___CATEGORICAL___nom_8___efce9b8fe": 4133, "14___CATEGORICAL___nom_8___efe02a3fe": 4134, "14___CATEGORICAL___nom_8___eff80ac44": 4135, "14___CATEGORICAL___nom_8___f00c48c4c": 4136, "14___CATEGORICAL___nom_8___f01e81da7": 4137, "14___CATEGORICAL___nom_8___f022708f4": 4138, "14___CATEGORICAL___nom_8___f0593717e": 4139, "14___CATEGORICAL___nom_8___f05f0d0b5": 4140, "14___CATEGORICAL___nom_8___f05f58ba6": 4141, "14___CATEGORICAL___nom_8___f07edf7b2": 4142, "14___CATEGORICAL___nom_8___f0949758d": 4143, "14___CATEGORICAL___nom_8___f0aa7e838": 4144, "14___CATEGORICAL___nom_8___f0aebad14": 4145, "14___CATEGORICAL___nom_8___f0c4b003b": 4146, "14___CATEGORICAL___nom_8___f0e3277d2": 4147, "14___CATEGORICAL___nom_8___f0eb17acf": 4148, "14___CATEGORICAL___nom_8___f10e42d5f": 4149, "14___CATEGORICAL___nom_8___f1192c12f": 4150, "14___CATEGORICAL___nom_8___f11f759db": 4151, "14___CATEGORICAL___nom_8___f14a3142c": 4152, "14___CATEGORICAL___nom_8___f15e34799": 4153, "14___CATEGORICAL___nom_8___f1de422cc": 4154, "14___CATEGORICAL___nom_8___f1e152a0e": 4155, "14___CATEGORICAL___nom_8___f1ed0bc45": 4156, "14___CATEGORICAL___nom_8___f20e2d126": 4157, "14___CATEGORICAL___nom_8___f214034f5": 4158, "14___CATEGORICAL___nom_8___f2289fb5f": 4159, "14___CATEGORICAL___nom_8___f230bd736": 4160, "14___CATEGORICAL___nom_8___f2c33c911": 4161, "14___CATEGORICAL___nom_8___f302d9a14": 4162, "14___CATEGORICAL___nom_8___f372c8ace": 4163, "14___CATEGORICAL___nom_8___f372e2a22": 4164, "14___CATEGORICAL___nom_8___f3890a06a": 4165, "14___CATEGORICAL___nom_8___f38d73a27": 4166, "14___CATEGORICAL___nom_8___f3a3db6c1": 4167, "14___CATEGORICAL___nom_8___f3b254c8d": 4168, "14___CATEGORICAL___nom_8___f3b896901": 4169, "14___CATEGORICAL___nom_8___f3bf907a3": 4170, "14___CATEGORICAL___nom_8___f3cbabf23": 4171, "14___CATEGORICAL___nom_8___f4063d3dc": 4172, "14___CATEGORICAL___nom_8___f434490ad": 4173, "14___CATEGORICAL___nom_8___f43b97d8b": 4174, "14___CATEGORICAL___nom_8___f4a5261d7": 4175, "14___CATEGORICAL___nom_8___f4aa5e97b": 4176, "14___CATEGORICAL___nom_8___f4af9c06a": 4177, "14___CATEGORICAL___nom_8___f4e2b7052": 4178, "14___CATEGORICAL___nom_8___f4f35f941": 4179, "14___CATEGORICAL___nom_8___f4f3e1b9e": 4180, "14___CATEGORICAL___nom_8___f5093ec51": 4181, "14___CATEGORICAL___nom_8___f5098af69": 4182, "14___CATEGORICAL___nom_8___f564a8936": 4183, "14___CATEGORICAL___nom_8___f576761d8": 4184, "14___CATEGORICAL___nom_8___f58eea518": 4185, "14___CATEGORICAL___nom_8___f5a2e72fa": 4186, "14___CATEGORICAL___nom_8___f5d51064b": 4187, "14___CATEGORICAL___nom_8___f60eb679f": 4188, "14___CATEGORICAL___nom_8___f61c43465": 4189, "14___CATEGORICAL___nom_8___f656ebcb9": 4190, "14___CATEGORICAL___nom_8___f65f29676": 4191, "14___CATEGORICAL___nom_8___f66552355": 4192, "14___CATEGORICAL___nom_8___f665558e4": 4193, "14___CATEGORICAL___nom_8___f711028cf": 4194, "14___CATEGORICAL___nom_8___f7234f3a4": 4195, "14___CATEGORICAL___nom_8___f736ea577": 4196, "14___CATEGORICAL___nom_8___f73a61c87": 4197, "14___CATEGORICAL___nom_8___f74048224": 4198, "14___CATEGORICAL___nom_8___f761e800c": 4199, "14___CATEGORICAL___nom_8___f76b52d02": 4200, "14___CATEGORICAL___nom_8___f7b623cb1": 4201, "14___CATEGORICAL___nom_8___f7be66f88": 4202, "14___CATEGORICAL___nom_8___f7cad2941": 4203, "14___CATEGORICAL___nom_8___f7cbf993a": 4204, "14___CATEGORICAL___nom_8___f7d45aa79": 4205, "14___CATEGORICAL___nom_8___f83129387": 4206, "14___CATEGORICAL___nom_8___f83347fe9": 4207, "14___CATEGORICAL___nom_8___f83a849b6": 4208, "14___CATEGORICAL___nom_8___f83d31113": 4209, "14___CATEGORICAL___nom_8___f8407e5b6": 4210, "14___CATEGORICAL___nom_8___f84705157": 4211, "14___CATEGORICAL___nom_8___f88ba51b4": 4212, "14___CATEGORICAL___nom_8___f88cab1f0": 4213, "14___CATEGORICAL___nom_8___f8984e6eb": 4214, "14___CATEGORICAL___nom_8___f8c4fd6d0": 4215, "14___CATEGORICAL___nom_8___f8cbd3521": 4216, "14___CATEGORICAL___nom_8___f8e6120d6": 4217, "14___CATEGORICAL___nom_8___f91f3b1ee": 4218, "14___CATEGORICAL___nom_8___f93f7e202": 4219, "14___CATEGORICAL___nom_8___f94576c59": 4220, "14___CATEGORICAL___nom_8___f9505f474": 4221, "14___CATEGORICAL___nom_8___f96bfd71f": 4222, "14___CATEGORICAL___nom_8___f976db04c": 4223, "14___CATEGORICAL___nom_8___f97fba09c": 4224, "14___CATEGORICAL___nom_8___f9a27be50": 4225, "14___CATEGORICAL___nom_8___f9e36af9c": 4226, "14___CATEGORICAL___nom_8___f9f86b01d": 4227, "14___CATEGORICAL___nom_8___f9fc16c9c": 4228, "14___CATEGORICAL___nom_8___fa3bdf705": 4229, "14___CATEGORICAL___nom_8___fa4b4656d": 4230, "14___CATEGORICAL___nom_8___fa61d49cc": 4231, "14___CATEGORICAL___nom_8___fa79eefba": 4232, "14___CATEGORICAL___nom_8___fa7d6fb87": 4233, "14___CATEGORICAL___nom_8___fa838f0f7": 4234, "14___CATEGORICAL___nom_8___fa85164d0": 4235, "14___CATEGORICAL___nom_8___fa897d135": 4236, "14___CATEGORICAL___nom_8___fad6a4f9b": 4237, "14___CATEGORICAL___nom_8___fae860f79": 4238, "14___CATEGORICAL___nom_8___fb57de2cb": 4239, "14___CATEGORICAL___nom_8___fbd2354a7": 4240, "14___CATEGORICAL___nom_8___fbe321dda": 4241, "14___CATEGORICAL___nom_8___fc0eb2887": 4242, "14___CATEGORICAL___nom_8___fc1e6675f": 4243, "14___CATEGORICAL___nom_8___fc2f6a473": 4244, "14___CATEGORICAL___nom_8___fc8a592bb": 4245, "14___CATEGORICAL___nom_8___fcc1d382f": 4246, "14___CATEGORICAL___nom_8___fce16bcb2": 4247, "14___CATEGORICAL___nom_8___fce7ef505": 4248, "14___CATEGORICAL___nom_8___fcf8c2866": 4249, "14___CATEGORICAL___nom_8___fd0041a98": 4250, "14___CATEGORICAL___nom_8___fd1ccb145": 4251, "14___CATEGORICAL___nom_8___fd1d99b7f": 4252, "14___CATEGORICAL___nom_8___fd3382dd3": 4253, "14___CATEGORICAL___nom_8___fd50f2be5": 4254, "14___CATEGORICAL___nom_8___fd83fa0a7": 4255, "14___CATEGORICAL___nom_8___fdb381caa": 4256, "14___CATEGORICAL___nom_8___fdcd0dada": 4257, "14___CATEGORICAL___nom_8___fde889468": 4258, "14___CATEGORICAL___nom_8___fe06b6fa8": 4259, "14___CATEGORICAL___nom_8___fe19199bd": 4260, "14___CATEGORICAL___nom_8___fe593b910": 4261, "14___CATEGORICAL___nom_8___fe605ee3a": 4262, "14___CATEGORICAL___nom_8___fe6571c3a": 4263, "14___CATEGORICAL___nom_8___fe6b03253": 4264, "14___CATEGORICAL___nom_8___fe7f8452c": 4265, "14___CATEGORICAL___nom_8___fe942ef5d": 4266, "14___CATEGORICAL___nom_8___feb50e76d": 4267, "14___CATEGORICAL___nom_8___feb99cbd9": 4268, "14___CATEGORICAL___nom_8___fec4a738d": 4269, "14___CATEGORICAL___nom_8___fee1b2e12": 4270, "14___CATEGORICAL___nom_8___ff529a30a": 4271, "14___CATEGORICAL___nom_8___ff7aa8438": 4272, "14___CATEGORICAL___nom_8___ff7f535a6": 4273, "14___CATEGORICAL___nom_8___ffda98522": 4274, "14___CATEGORICAL___nom_8___ffee920d7": 4275, "14___CATEGORICAL___nom_8___ffffab6a3": 4276, "15___CATEGORICAL___nom_9___00052050d": 4277, "15___CATEGORICAL___nom_9___0008e7054": 4278, "15___CATEGORICAL___nom_9___000bd3e3d": 4279, "15___CATEGORICAL___nom_9___000c15b20": 4280, "15___CATEGORICAL___nom_9___000c3148c": 4281, "15___CATEGORICAL___nom_9___001062bf6": 4282, "15___CATEGORICAL___nom_9___001ab65ce": 4283, "15___CATEGORICAL___nom_9___001e2ba03": 4284, "15___CATEGORICAL___nom_9___00202246b": 4285, "15___CATEGORICAL___nom_9___002056e51": 4286, "15___CATEGORICAL___nom_9___0022453f5": 4287, "15___CATEGORICAL___nom_9___0026bc166": 4288, "15___CATEGORICAL___nom_9___0027afb6f": 4289, "15___CATEGORICAL___nom_9___002834a2e": 4290, "15___CATEGORICAL___nom_9___00294ac25": 4291, "15___CATEGORICAL___nom_9___002ca4583": 4292, "15___CATEGORICAL___nom_9___002df90de": 4293, "15___CATEGORICAL___nom_9___003115d5b": 4294, "15___CATEGORICAL___nom_9___00400f226": 4295, "15___CATEGORICAL___nom_9___004691495": 4296, "15___CATEGORICAL___nom_9___0050bebb8": 4297, "15___CATEGORICAL___nom_9___0052ec1a8": 4298, "15___CATEGORICAL___nom_9___00559eb44": 4299, "15___CATEGORICAL___nom_9___005825677": 4300, "15___CATEGORICAL___nom_9___00593bcf9": 4301, "15___CATEGORICAL___nom_9___0059c8591": 4302, "15___CATEGORICAL___nom_9___0066765f0": 4303, "15___CATEGORICAL___nom_9___0066fa336": 4304, "15___CATEGORICAL___nom_9___0068680a7": 4305, "15___CATEGORICAL___nom_9___006c8a9c6": 4306, "15___CATEGORICAL___nom_9___0075253ec": 4307, "15___CATEGORICAL___nom_9___00802f44d": 4308, "15___CATEGORICAL___nom_9___0080acbb1": 4309, "15___CATEGORICAL___nom_9___0080bb69a": 4310, "15___CATEGORICAL___nom_9___00850b8ad": 4311, "15___CATEGORICAL___nom_9___009746351": 4312, "15___CATEGORICAL___nom_9___00989ef04": 4313, "15___CATEGORICAL___nom_9___009c4964a": 4314, "15___CATEGORICAL___nom_9___00a076048": 4315, "15___CATEGORICAL___nom_9___00a4b0c9a": 4316, "15___CATEGORICAL___nom_9___00a9bb85a": 4317, "15___CATEGORICAL___nom_9___00a9e9fd2": 4318, "15___CATEGORICAL___nom_9___00ab95668": 4319, "15___CATEGORICAL___nom_9___00afddb62": 4320, "15___CATEGORICAL___nom_9___00b1d16c2": 4321, "15___CATEGORICAL___nom_9___00b5710c2": 4322, "15___CATEGORICAL___nom_9___00b9de622": 4323, "15___CATEGORICAL___nom_9___00bcf45f9": 4324, "15___CATEGORICAL___nom_9___00bf2c893": 4325, "15___CATEGORICAL___nom_9___00c68a012": 4326, "15___CATEGORICAL___nom_9___00c840a2d": 4327, "15___CATEGORICAL___nom_9___00cc1478e": 4328, "15___CATEGORICAL___nom_9___00d1b82f6": 4329, "15___CATEGORICAL___nom_9___00dfe9127": 4330, "15___CATEGORICAL___nom_9___00e08b626": 4331, "15___CATEGORICAL___nom_9___00e27488b": 4332, "15___CATEGORICAL___nom_9___00e4829a5": 4333, "15___CATEGORICAL___nom_9___00e4aa5c5": 4334, "15___CATEGORICAL___nom_9___00f508ed5": 4335, "15___CATEGORICAL___nom_9___00f5f64af": 4336, "15___CATEGORICAL___nom_9___010e75aa4": 4337, "15___CATEGORICAL___nom_9___0111cc5d2": 4338, "15___CATEGORICAL___nom_9___0119cc6d7": 4339, "15___CATEGORICAL___nom_9___011a256ed": 4340, "15___CATEGORICAL___nom_9___011db0734": 4341, "15___CATEGORICAL___nom_9___0129e6b4e": 4342, "15___CATEGORICAL___nom_9___01309b99a": 4343, "15___CATEGORICAL___nom_9___013ffa101": 4344, "15___CATEGORICAL___nom_9___0147bbfdc": 4345, "15___CATEGORICAL___nom_9___0148bf087": 4346, "15___CATEGORICAL___nom_9___014979ecc": 4347, "15___CATEGORICAL___nom_9___014fae23a": 4348, "15___CATEGORICAL___nom_9___0156a9e01": 4349, "15___CATEGORICAL___nom_9___015c7a7e5": 4350, "15___CATEGORICAL___nom_9___015eef008": 4351, "15___CATEGORICAL___nom_9___0168d1867": 4352, "15___CATEGORICAL___nom_9___016e77e0e": 4353, "15___CATEGORICAL___nom_9___016f5db0f": 4354, "15___CATEGORICAL___nom_9___0178f8333": 4355, "15___CATEGORICAL___nom_9___017939e7b": 4356, "15___CATEGORICAL___nom_9___017ec7dc7": 4357, "15___CATEGORICAL___nom_9___018cbe944": 4358, "15___CATEGORICAL___nom_9___018d0b0a6": 4359, "15___CATEGORICAL___nom_9___019a86de1": 4360, "15___CATEGORICAL___nom_9___019d87fb2": 4361, "15___CATEGORICAL___nom_9___01a5f2577": 4362, "15___CATEGORICAL___nom_9___01a7c69ad": 4363, "15___CATEGORICAL___nom_9___01b77e0a7": 4364, "15___CATEGORICAL___nom_9___01bc9821e": 4365, "15___CATEGORICAL___nom_9___01bfea306": 4366, "15___CATEGORICAL___nom_9___01c5fa472": 4367, "15___CATEGORICAL___nom_9___01c649ad2": 4368, "15___CATEGORICAL___nom_9___01cf8a8a1": 4369, "15___CATEGORICAL___nom_9___01cfc8958": 4370, "15___CATEGORICAL___nom_9___01d30bef3": 4371, "15___CATEGORICAL___nom_9___01d331fac": 4372, "15___CATEGORICAL___nom_9___01d6c3dae": 4373, "15___CATEGORICAL___nom_9___01dd99dc0": 4374, "15___CATEGORICAL___nom_9___01e041b09": 4375, "15___CATEGORICAL___nom_9___01e51f4e1": 4376, "15___CATEGORICAL___nom_9___01ef402da": 4377, "15___CATEGORICAL___nom_9___01f13b1b9": 4378, "15___CATEGORICAL___nom_9___01f24e6e0": 4379, "15___CATEGORICAL___nom_9___01f9ea3c6": 4380, "15___CATEGORICAL___nom_9___01fa4b222": 4381, "15___CATEGORICAL___nom_9___0200d3169": 4382, "15___CATEGORICAL___nom_9___0219d13a9": 4383, "15___CATEGORICAL___nom_9___0220e2e6c": 4384, "15___CATEGORICAL___nom_9___02215de10": 4385, "15___CATEGORICAL___nom_9___022861733": 4386, "15___CATEGORICAL___nom_9___022f9fc61": 4387, "15___CATEGORICAL___nom_9___023705750": 4388, "15___CATEGORICAL___nom_9___023966cc9": 4389, "15___CATEGORICAL___nom_9___023af4abf": 4390, "15___CATEGORICAL___nom_9___02445f2fa": 4391, "15___CATEGORICAL___nom_9___024ea12ab": 4392, "15___CATEGORICAL___nom_9___024fcd6eb": 4393, "15___CATEGORICAL___nom_9___025b091c0": 4394, "15___CATEGORICAL___nom_9___025b2525d": 4395, "15___CATEGORICAL___nom_9___02614c060": 4396, "15___CATEGORICAL___nom_9___0261d34b1": 4397, "15___CATEGORICAL___nom_9___0265d8813": 4398, "15___CATEGORICAL___nom_9___02704abc1": 4399, "15___CATEGORICAL___nom_9___027095702": 4400, "15___CATEGORICAL___nom_9___0270f38fd": 4401, "15___CATEGORICAL___nom_9___027e757fe": 4402, "15___CATEGORICAL___nom_9___027ea8cef": 4403, "15___CATEGORICAL___nom_9___028208178": 4404, "15___CATEGORICAL___nom_9___02851e3ce": 4405, "15___CATEGORICAL___nom_9___0286fee46": 4406, "15___CATEGORICAL___nom_9___0292f777c": 4407, "15___CATEGORICAL___nom_9___0294910e2": 4408, "15___CATEGORICAL___nom_9___029d3d7c6": 4409, "15___CATEGORICAL___nom_9___02a354a85": 4410, "15___CATEGORICAL___nom_9___02a5926e4": 4411, "15___CATEGORICAL___nom_9___02a70154c": 4412, "15___CATEGORICAL___nom_9___02a74a666": 4413, "15___CATEGORICAL___nom_9___02ad941b3": 4414, "15___CATEGORICAL___nom_9___02b60e27f": 4415, "15___CATEGORICAL___nom_9___02be599f4": 4416, "15___CATEGORICAL___nom_9___02d287fe4": 4417, "15___CATEGORICAL___nom_9___02d2f75bd": 4418, "15___CATEGORICAL___nom_9___02d4294d4": 4419, "15___CATEGORICAL___nom_9___02d810154": 4420, "15___CATEGORICAL___nom_9___02da97832": 4421, "15___CATEGORICAL___nom_9___02df1aefa": 4422, "15___CATEGORICAL___nom_9___02e15ec3e": 4423, "15___CATEGORICAL___nom_9___02e6c31e0": 4424, "15___CATEGORICAL___nom_9___02e8653bd": 4425, "15___CATEGORICAL___nom_9___02ea88539": 4426, "15___CATEGORICAL___nom_9___02ec4654d": 4427, "15___CATEGORICAL___nom_9___02f06c0e6": 4428, "15___CATEGORICAL___nom_9___02f33db89": 4429, "15___CATEGORICAL___nom_9___02f7adec6": 4430, "15___CATEGORICAL___nom_9___030289b52": 4431, "15___CATEGORICAL___nom_9___030b64a1a": 4432, "15___CATEGORICAL___nom_9___0316434ce": 4433, "15___CATEGORICAL___nom_9___031912fef": 4434, "15___CATEGORICAL___nom_9___032481184": 4435, "15___CATEGORICAL___nom_9___03289c74c": 4436, "15___CATEGORICAL___nom_9___032eb51e9": 4437, "15___CATEGORICAL___nom_9___033028c0b": 4438, "15___CATEGORICAL___nom_9___033708ad7": 4439, "15___CATEGORICAL___nom_9___0345a1c1c": 4440, "15___CATEGORICAL___nom_9___03499eb78": 4441, "15___CATEGORICAL___nom_9___034b68e78": 4442, "15___CATEGORICAL___nom_9___0350a3ad5": 4443, "15___CATEGORICAL___nom_9___0356598d0": 4444, "15___CATEGORICAL___nom_9___035cbb0ff": 4445, "15___CATEGORICAL___nom_9___035d11741": 4446, "15___CATEGORICAL___nom_9___0362532ce": 4447, "15___CATEGORICAL___nom_9___0362a237f": 4448, "15___CATEGORICAL___nom_9___0367416af": 4449, "15___CATEGORICAL___nom_9___036e49ad4": 4450, "15___CATEGORICAL___nom_9___03728ab88": 4451, "15___CATEGORICAL___nom_9___037e89a4e": 4452, "15___CATEGORICAL___nom_9___037f7c378": 4453, "15___CATEGORICAL___nom_9___03835b798": 4454, "15___CATEGORICAL___nom_9___0384904b6": 4455, "15___CATEGORICAL___nom_9___0386529bc": 4456, "15___CATEGORICAL___nom_9___03867e161": 4457, "15___CATEGORICAL___nom_9___038853515": 4458, "15___CATEGORICAL___nom_9___038980568": 4459, "15___CATEGORICAL___nom_9___038eee7d3": 4460, "15___CATEGORICAL___nom_9___0398278d5": 4461, "15___CATEGORICAL___nom_9___03a15edf5": 4462, "15___CATEGORICAL___nom_9___03a4c69c2": 4463, "15___CATEGORICAL___nom_9___03a9e4930": 4464, "15___CATEGORICAL___nom_9___03aa7b6ca": 4465, "15___CATEGORICAL___nom_9___03ad074d1": 4466, "15___CATEGORICAL___nom_9___03b394cbc": 4467, "15___CATEGORICAL___nom_9___03c389a25": 4468, "15___CATEGORICAL___nom_9___03c62e68b": 4469, "15___CATEGORICAL___nom_9___03c7cd4d4": 4470, "15___CATEGORICAL___nom_9___03c866ea6": 4471, "15___CATEGORICAL___nom_9___03cee213d": 4472, "15___CATEGORICAL___nom_9___03d9e4e0e": 4473, "15___CATEGORICAL___nom_9___03dae55ac": 4474, "15___CATEGORICAL___nom_9___03df49ad7": 4475, "15___CATEGORICAL___nom_9___03e01b921": 4476, "15___CATEGORICAL___nom_9___03eed85b1": 4477, "15___CATEGORICAL___nom_9___03f6bb514": 4478, "15___CATEGORICAL___nom_9___03fa7cc7e": 4479, "15___CATEGORICAL___nom_9___0405bf6ab": 4480, "15___CATEGORICAL___nom_9___04083a1da": 4481, "15___CATEGORICAL___nom_9___040877213": 4482, "15___CATEGORICAL___nom_9___0411ee4ef": 4483, "15___CATEGORICAL___nom_9___0416820d1": 4484, "15___CATEGORICAL___nom_9___0417dbfee": 4485, "15___CATEGORICAL___nom_9___0418c4b18": 4486, "15___CATEGORICAL___nom_9___0418cf469": 4487, "15___CATEGORICAL___nom_9___041c754a4": 4488, "15___CATEGORICAL___nom_9___041f7310a": 4489, "15___CATEGORICAL___nom_9___042accfa9": 4490, "15___CATEGORICAL___nom_9___042fc1c9e": 4491, "15___CATEGORICAL___nom_9___04307aa3f": 4492, "15___CATEGORICAL___nom_9___043a03805": 4493, "15___CATEGORICAL___nom_9___043fa2a75": 4494, "15___CATEGORICAL___nom_9___044e6d68e": 4495, "15___CATEGORICAL___nom_9___0463d326d": 4496, "15___CATEGORICAL___nom_9___04695adda": 4497, "15___CATEGORICAL___nom_9___046a3d517": 4498, "15___CATEGORICAL___nom_9___0479d08a3": 4499, "15___CATEGORICAL___nom_9___047aea303": 4500, "15___CATEGORICAL___nom_9___048256d2a": 4501, "15___CATEGORICAL___nom_9___04863aa8c": 4502, "15___CATEGORICAL___nom_9___04932eab8": 4503, "15___CATEGORICAL___nom_9___04958770f": 4504, "15___CATEGORICAL___nom_9___0496c2132": 4505, "15___CATEGORICAL___nom_9___049bd5a1f": 4506, "15___CATEGORICAL___nom_9___049c10c56": 4507, "15___CATEGORICAL___nom_9___04a804aa8": 4508, "15___CATEGORICAL___nom_9___04a891877": 4509, "15___CATEGORICAL___nom_9___04ab30d94": 4510, "15___CATEGORICAL___nom_9___04b1fae9e": 4511, "15___CATEGORICAL___nom_9___04b2b84ee": 4512, "15___CATEGORICAL___nom_9___04b7c50d7": 4513, "15___CATEGORICAL___nom_9___04b802e27": 4514, "15___CATEGORICAL___nom_9___04bbde70c": 4515, "15___CATEGORICAL___nom_9___04c172b11": 4516, "15___CATEGORICAL___nom_9___04c172eb5": 4517, "15___CATEGORICAL___nom_9___04c26a12e": 4518, "15___CATEGORICAL___nom_9___04c44a0d6": 4519, "15___CATEGORICAL___nom_9___04c67be19": 4520, "15___CATEGORICAL___nom_9___04d5dca14": 4521, "15___CATEGORICAL___nom_9___04d7c83bc": 4522, "15___CATEGORICAL___nom_9___04d7db72a": 4523, "15___CATEGORICAL___nom_9___04e0c4d58": 4524, "15___CATEGORICAL___nom_9___04e1420c1": 4525, "15___CATEGORICAL___nom_9___04eb3280f": 4526, "15___CATEGORICAL___nom_9___04ee2825d": 4527, "15___CATEGORICAL___nom_9___04f075bd8": 4528, "15___CATEGORICAL___nom_9___04f4e3d8e": 4529, "15___CATEGORICAL___nom_9___04f648e94": 4530, "15___CATEGORICAL___nom_9___050297a25": 4531, "15___CATEGORICAL___nom_9___050a290e9": 4532, "15___CATEGORICAL___nom_9___0511cf7c0": 4533, "15___CATEGORICAL___nom_9___051708b42": 4534, "15___CATEGORICAL___nom_9___051b841f5": 4535, "15___CATEGORICAL___nom_9___051c973b9": 4536, "15___CATEGORICAL___nom_9___052050c58": 4537, "15___CATEGORICAL___nom_9___0522165ad": 4538, "15___CATEGORICAL___nom_9___052a0236d": 4539, "15___CATEGORICAL___nom_9___053121e0d": 4540, "15___CATEGORICAL___nom_9___05373ec69": 4541, "15___CATEGORICAL___nom_9___054564da5": 4542, "15___CATEGORICAL___nom_9___054ba4e17": 4543, "15___CATEGORICAL___nom_9___054da5597": 4544, "15___CATEGORICAL___nom_9___055c648e2": 4545, "15___CATEGORICAL___nom_9___055db8e02": 4546, "15___CATEGORICAL___nom_9___056251a6d": 4547, "15___CATEGORICAL___nom_9___056a137e4": 4548, "15___CATEGORICAL___nom_9___056ce3179": 4549, "15___CATEGORICAL___nom_9___056e67424": 4550, "15___CATEGORICAL___nom_9___057b88cf5": 4551, "15___CATEGORICAL___nom_9___057c717bc": 4552, "15___CATEGORICAL___nom_9___05830a650": 4553, "15___CATEGORICAL___nom_9___05849ff93": 4554, "15___CATEGORICAL___nom_9___05857f342": 4555, "15___CATEGORICAL___nom_9___05874cfb5": 4556, "15___CATEGORICAL___nom_9___058a74c5f": 4557, "15___CATEGORICAL___nom_9___058a8df97": 4558, "15___CATEGORICAL___nom_9___058e89912": 4559, "15___CATEGORICAL___nom_9___059516e21": 4560, "15___CATEGORICAL___nom_9___05958b9a2": 4561, "15___CATEGORICAL___nom_9___05969f494": 4562, "15___CATEGORICAL___nom_9___0598a93b6": 4563, "15___CATEGORICAL___nom_9___05a501fab": 4564, "15___CATEGORICAL___nom_9___05ada08b4": 4565, "15___CATEGORICAL___nom_9___05b098230": 4566, "15___CATEGORICAL___nom_9___05b148284": 4567, "15___CATEGORICAL___nom_9___05b462481": 4568, "15___CATEGORICAL___nom_9___05be0a334": 4569, "15___CATEGORICAL___nom_9___05c3a6866": 4570, "15___CATEGORICAL___nom_9___05c4a9b47": 4571, "15___CATEGORICAL___nom_9___05c4ea3d4": 4572, "15___CATEGORICAL___nom_9___05d08b5ac": 4573, "15___CATEGORICAL___nom_9___05d18b22a": 4574, "15___CATEGORICAL___nom_9___05d8bb07f": 4575, "15___CATEGORICAL___nom_9___05dcbe1c3": 4576, "15___CATEGORICAL___nom_9___05e4c9f31": 4577, "15___CATEGORICAL___nom_9___05eb01ac7": 4578, "15___CATEGORICAL___nom_9___05fbcebcb": 4579, "15___CATEGORICAL___nom_9___0608f6bda": 4580, "15___CATEGORICAL___nom_9___060b11d2b": 4581, "15___CATEGORICAL___nom_9___061c14300": 4582, "15___CATEGORICAL___nom_9___0623cb068": 4583, "15___CATEGORICAL___nom_9___06247e1f9": 4584, "15___CATEGORICAL___nom_9___062f5b23d": 4585, "15___CATEGORICAL___nom_9___0632b9756": 4586, "15___CATEGORICAL___nom_9___0635d4719": 4587, "15___CATEGORICAL___nom_9___063934c4c": 4588, "15___CATEGORICAL___nom_9___063e99626": 4589, "15___CATEGORICAL___nom_9___063f46bf5": 4590, "15___CATEGORICAL___nom_9___06412b98f": 4591, "15___CATEGORICAL___nom_9___064484ac9": 4592, "15___CATEGORICAL___nom_9___0649d8cd1": 4593, "15___CATEGORICAL___nom_9___064e4ca7e": 4594, "15___CATEGORICAL___nom_9___06523e0a0": 4595, "15___CATEGORICAL___nom_9___0653533ab": 4596, "15___CATEGORICAL___nom_9___065c99bb8": 4597, "15___CATEGORICAL___nom_9___065e18e4d": 4598, "15___CATEGORICAL___nom_9___0669299aa": 4599, "15___CATEGORICAL___nom_9___067241cdd": 4600, "15___CATEGORICAL___nom_9___06730ace5": 4601, "15___CATEGORICAL___nom_9___06747f7d2": 4602, "15___CATEGORICAL___nom_9___067843290": 4603, "15___CATEGORICAL___nom_9___067d86412": 4604, "15___CATEGORICAL___nom_9___067dfcc5b": 4605, "15___CATEGORICAL___nom_9___06804b375": 4606, "15___CATEGORICAL___nom_9___068712dec": 4607, "15___CATEGORICAL___nom_9___06900a603": 4608, "15___CATEGORICAL___nom_9___069243563": 4609, "15___CATEGORICAL___nom_9___069b3715f": 4610, "15___CATEGORICAL___nom_9___069c52431": 4611, "15___CATEGORICAL___nom_9___06a464138": 4612, "15___CATEGORICAL___nom_9___06a4d58b2": 4613, "15___CATEGORICAL___nom_9___06a6bf03c": 4614, "15___CATEGORICAL___nom_9___06b155819": 4615, "15___CATEGORICAL___nom_9___06bbc1915": 4616, "15___CATEGORICAL___nom_9___06c3c5c41": 4617, "15___CATEGORICAL___nom_9___06c676f1f": 4618, "15___CATEGORICAL___nom_9___06d0c2908": 4619, "15___CATEGORICAL___nom_9___06d28b9ee": 4620, "15___CATEGORICAL___nom_9___06d738ea5": 4621, "15___CATEGORICAL___nom_9___06e14528a": 4622, "15___CATEGORICAL___nom_9___06e879dc6": 4623, "15___CATEGORICAL___nom_9___06ea0ece4": 4624, "15___CATEGORICAL___nom_9___06eb4ca11": 4625, "15___CATEGORICAL___nom_9___06ee45f4a": 4626, "15___CATEGORICAL___nom_9___06eee4b34": 4627, "15___CATEGORICAL___nom_9___06f692c86": 4628, "15___CATEGORICAL___nom_9___06f894c7d": 4629, "15___CATEGORICAL___nom_9___06fed64e8": 4630, "15___CATEGORICAL___nom_9___0705cecdd": 4631, "15___CATEGORICAL___nom_9___070a2aa28": 4632, "15___CATEGORICAL___nom_9___0720fd099": 4633, "15___CATEGORICAL___nom_9___0726b0a73": 4634, "15___CATEGORICAL___nom_9___072e2584d": 4635, "15___CATEGORICAL___nom_9___0737f9c20": 4636, "15___CATEGORICAL___nom_9___073db9420": 4637, "15___CATEGORICAL___nom_9___07417eab9": 4638, "15___CATEGORICAL___nom_9___074342760": 4639, "15___CATEGORICAL___nom_9___0748a7f0c": 4640, "15___CATEGORICAL___nom_9___074c0a9cb": 4641, "15___CATEGORICAL___nom_9___0754a3444": 4642, "15___CATEGORICAL___nom_9___0755ec00c": 4643, "15___CATEGORICAL___nom_9___075b8e680": 4644, "15___CATEGORICAL___nom_9___075da7d28": 4645, "15___CATEGORICAL___nom_9___075f72528": 4646, "15___CATEGORICAL___nom_9___0761b8b8e": 4647, "15___CATEGORICAL___nom_9___076591460": 4648, "15___CATEGORICAL___nom_9___07687c296": 4649, "15___CATEGORICAL___nom_9___076c03d92": 4650, "15___CATEGORICAL___nom_9___077593161": 4651, "15___CATEGORICAL___nom_9___0777bc7c3": 4652, "15___CATEGORICAL___nom_9___077e5a3e6": 4653, "15___CATEGORICAL___nom_9___0783ebdcb": 4654, "15___CATEGORICAL___nom_9___0784e2654": 4655, "15___CATEGORICAL___nom_9___07875e460": 4656, "15___CATEGORICAL___nom_9___07884162a": 4657, "15___CATEGORICAL___nom_9___078b95e6b": 4658, "15___CATEGORICAL___nom_9___078ed952a": 4659, "15___CATEGORICAL___nom_9___078fbf6e3": 4660, "15___CATEGORICAL___nom_9___079afe9b6": 4661, "15___CATEGORICAL___nom_9___07a079954": 4662, "15___CATEGORICAL___nom_9___07aa92c28": 4663, "15___CATEGORICAL___nom_9___07ac62fd7": 4664, "15___CATEGORICAL___nom_9___07b9e8a91": 4665, "15___CATEGORICAL___nom_9___07c7679d7": 4666, "15___CATEGORICAL___nom_9___07c8d093a": 4667, "15___CATEGORICAL___nom_9___07cb0e793": 4668, "15___CATEGORICAL___nom_9___07cba68da": 4669, "15___CATEGORICAL___nom_9___07d59457d": 4670, "15___CATEGORICAL___nom_9___07d6bf5e5": 4671, "15___CATEGORICAL___nom_9___07d7de108": 4672, "15___CATEGORICAL___nom_9___07db4d22e": 4673, "15___CATEGORICAL___nom_9___07e3abcbe": 4674, "15___CATEGORICAL___nom_9___07e539fcc": 4675, "15___CATEGORICAL___nom_9___07e544684": 4676, "15___CATEGORICAL___nom_9___07e955f7c": 4677, "15___CATEGORICAL___nom_9___07f02f371": 4678, "15___CATEGORICAL___nom_9___07f4df44c": 4679, "15___CATEGORICAL___nom_9___07fdc7172": 4680, "15___CATEGORICAL___nom_9___080a449e7": 4681, "15___CATEGORICAL___nom_9___0811bf117": 4682, "15___CATEGORICAL___nom_9___0811eb504": 4683, "15___CATEGORICAL___nom_9___0811ee359": 4684, "15___CATEGORICAL___nom_9___081596f83": 4685, "15___CATEGORICAL___nom_9___0815ddebe": 4686, "15___CATEGORICAL___nom_9___081b8be18": 4687, "15___CATEGORICAL___nom_9___081c66b6f": 4688, "15___CATEGORICAL___nom_9___08224a20b": 4689, "15___CATEGORICAL___nom_9___08238389a": 4690, "15___CATEGORICAL___nom_9___0824f64c5": 4691, "15___CATEGORICAL___nom_9___08292591c": 4692, "15___CATEGORICAL___nom_9___082bce619": 4693, "15___CATEGORICAL___nom_9___08369131e": 4694, "15___CATEGORICAL___nom_9___0838311eb": 4695, "15___CATEGORICAL___nom_9___0839ed70e": 4696, "15___CATEGORICAL___nom_9___083eae496": 4697, "15___CATEGORICAL___nom_9___0845855dc": 4698, "15___CATEGORICAL___nom_9___08473723b": 4699, "15___CATEGORICAL___nom_9___084858ee8": 4700, "15___CATEGORICAL___nom_9___084d25c53": 4701, "15___CATEGORICAL___nom_9___086012e6a": 4702, "15___CATEGORICAL___nom_9___086a8d37e": 4703, "15___CATEGORICAL___nom_9___086c1d744": 4704, "15___CATEGORICAL___nom_9___08713b715": 4705, "15___CATEGORICAL___nom_9___087598954": 4706, "15___CATEGORICAL___nom_9___087ccf730": 4707, "15___CATEGORICAL___nom_9___087db276a": 4708, "15___CATEGORICAL___nom_9___087e91efc": 4709, "15___CATEGORICAL___nom_9___087ebd7e7": 4710, "15___CATEGORICAL___nom_9___0883d83a1": 4711, "15___CATEGORICAL___nom_9___088638854": 4712, "15___CATEGORICAL___nom_9___0888a8e39": 4713, "15___CATEGORICAL___nom_9___088ab935e": 4714, "15___CATEGORICAL___nom_9___089b64855": 4715, "15___CATEGORICAL___nom_9___089d44238": 4716, "15___CATEGORICAL___nom_9___08b0256d8": 4717, "15___CATEGORICAL___nom_9___08c088c9f": 4718, "15___CATEGORICAL___nom_9___08c88f89a": 4719, "15___CATEGORICAL___nom_9___08ca61eea": 4720, "15___CATEGORICAL___nom_9___08cc3612a": 4721, "15___CATEGORICAL___nom_9___08cd593ad": 4722, "15___CATEGORICAL___nom_9___08d00ab50": 4723, "15___CATEGORICAL___nom_9___08d386939": 4724, "15___CATEGORICAL___nom_9___08da9897b": 4725, "15___CATEGORICAL___nom_9___08f1f310d": 4726, "15___CATEGORICAL___nom_9___08f310d61": 4727, "15___CATEGORICAL___nom_9___08f72f714": 4728, "15___CATEGORICAL___nom_9___08f9fd483": 4729, "15___CATEGORICAL___nom_9___0905c556c": 4730, "15___CATEGORICAL___nom_9___090fa95bf": 4731, "15___CATEGORICAL___nom_9___0911fa22f": 4732, "15___CATEGORICAL___nom_9___09139b935": 4733, "15___CATEGORICAL___nom_9___0915552a5": 4734, "15___CATEGORICAL___nom_9___091b124a6": 4735, "15___CATEGORICAL___nom_9___091ee7b1d": 4736, "15___CATEGORICAL___nom_9___0921eee77": 4737, "15___CATEGORICAL___nom_9___0924bd9ab": 4738, "15___CATEGORICAL___nom_9___0928dc6f1": 4739, "15___CATEGORICAL___nom_9___092f773bc": 4740, "15___CATEGORICAL___nom_9___0934fadaa": 4741, "15___CATEGORICAL___nom_9___093f5df0e": 4742, "15___CATEGORICAL___nom_9___0941670fa": 4743, "15___CATEGORICAL___nom_9___094d6d6a2": 4744, "15___CATEGORICAL___nom_9___096b36da0": 4745, "15___CATEGORICAL___nom_9___0970e26d6": 4746, "15___CATEGORICAL___nom_9___09814e809": 4747, "15___CATEGORICAL___nom_9___0984ab978": 4748, "15___CATEGORICAL___nom_9___098689d4e": 4749, "15___CATEGORICAL___nom_9___098dd10f4": 4750, "15___CATEGORICAL___nom_9___09b1e3836": 4751, "15___CATEGORICAL___nom_9___09b4f1e3d": 4752, "15___CATEGORICAL___nom_9___09b9271d0": 4753, "15___CATEGORICAL___nom_9___09c252d8b": 4754, "15___CATEGORICAL___nom_9___09c47ace7": 4755, "15___CATEGORICAL___nom_9___09c779d45": 4756, "15___CATEGORICAL___nom_9___09cb2d084": 4757, "15___CATEGORICAL___nom_9___09cc0b790": 4758, "15___CATEGORICAL___nom_9___09cd21cf7": 4759, "15___CATEGORICAL___nom_9___09ced9939": 4760, "15___CATEGORICAL___nom_9___09cf07ff1": 4761, "15___CATEGORICAL___nom_9___09d0eb44e": 4762, "15___CATEGORICAL___nom_9___09d4ddd51": 4763, "15___CATEGORICAL___nom_9___09dac82e2": 4764, "15___CATEGORICAL___nom_9___09dcde5af": 4765, "15___CATEGORICAL___nom_9___09e07c2af": 4766, "15___CATEGORICAL___nom_9___09e24566f": 4767, "15___CATEGORICAL___nom_9___09ee9ce29": 4768, "15___CATEGORICAL___nom_9___09f0f90de": 4769, "15___CATEGORICAL___nom_9___09f1162b9": 4770, "15___CATEGORICAL___nom_9___09f165444": 4771, "15___CATEGORICAL___nom_9___09f44bb42": 4772, "15___CATEGORICAL___nom_9___09f7a5a58": 4773, "15___CATEGORICAL___nom_9___09feacf2e": 4774, "15___CATEGORICAL___nom_9___0a05c6cdf": 4775, "15___CATEGORICAL___nom_9___0a12d89de": 4776, "15___CATEGORICAL___nom_9___0a1939dff": 4777, "15___CATEGORICAL___nom_9___0a1d259b0": 4778, "15___CATEGORICAL___nom_9___0a2069b5f": 4779, "15___CATEGORICAL___nom_9___0a262a51d": 4780, "15___CATEGORICAL___nom_9___0a29d2401": 4781, "15___CATEGORICAL___nom_9___0a2b17947": 4782, "15___CATEGORICAL___nom_9___0a37a7f53": 4783, "15___CATEGORICAL___nom_9___0a3cc5da7": 4784, "15___CATEGORICAL___nom_9___0a3f628c4": 4785, "15___CATEGORICAL___nom_9___0a40ebee2": 4786, "15___CATEGORICAL___nom_9___0a42d117d": 4787, "15___CATEGORICAL___nom_9___0a480b3a7": 4788, "15___CATEGORICAL___nom_9___0a4dfe1fc": 4789, "15___CATEGORICAL___nom_9___0a51a5952": 4790, "15___CATEGORICAL___nom_9___0a51ffa00": 4791, "15___CATEGORICAL___nom_9___0a57243df": 4792, "15___CATEGORICAL___nom_9___0a648cb73": 4793, "15___CATEGORICAL___nom_9___0a6f3cd3a": 4794, "15___CATEGORICAL___nom_9___0a74e31da": 4795, "15___CATEGORICAL___nom_9___0a76fafa5": 4796, "15___CATEGORICAL___nom_9___0a793c9dc": 4797, "15___CATEGORICAL___nom_9___0a7d91566": 4798, "15___CATEGORICAL___nom_9___0a8263a17": 4799, "15___CATEGORICAL___nom_9___0a86a8c3f": 4800, "15___CATEGORICAL___nom_9___0a8a5162d": 4801, "15___CATEGORICAL___nom_9___0a90e64ab": 4802, "15___CATEGORICAL___nom_9___0a967262c": 4803, "15___CATEGORICAL___nom_9___0a97b1c9f": 4804, "15___CATEGORICAL___nom_9___0a9b129e1": 4805, "15___CATEGORICAL___nom_9___0aa290a8c": 4806, "15___CATEGORICAL___nom_9___0aaab9506": 4807, "15___CATEGORICAL___nom_9___0aae8e794": 4808, "15___CATEGORICAL___nom_9___0ab98db42": 4809, "15___CATEGORICAL___nom_9___0abc0a0cb": 4810, "15___CATEGORICAL___nom_9___0ac07d0c0": 4811, "15___CATEGORICAL___nom_9___0acc0fc28": 4812, "15___CATEGORICAL___nom_9___0ad168bf5": 4813, "15___CATEGORICAL___nom_9___0ad8dd693": 4814, "15___CATEGORICAL___nom_9___0adf86322": 4815, "15___CATEGORICAL___nom_9___0af1a84b2": 4816, "15___CATEGORICAL___nom_9___0afc87050": 4817, "15___CATEGORICAL___nom_9___0b0561da6": 4818, "15___CATEGORICAL___nom_9___0b0d4ea7f": 4819, "15___CATEGORICAL___nom_9___0b1137ae3": 4820, "15___CATEGORICAL___nom_9___0b1b3c534": 4821, "15___CATEGORICAL___nom_9___0b1f1b301": 4822, "15___CATEGORICAL___nom_9___0b243e09e": 4823, "15___CATEGORICAL___nom_9___0b29c5ad9": 4824, "15___CATEGORICAL___nom_9___0b3397e07": 4825, "15___CATEGORICAL___nom_9___0b366a2ca": 4826, "15___CATEGORICAL___nom_9___0b371d5bc": 4827, "15___CATEGORICAL___nom_9___0b3c82c43": 4828, "15___CATEGORICAL___nom_9___0b3e67e6a": 4829, "15___CATEGORICAL___nom_9___0b418b464": 4830, "15___CATEGORICAL___nom_9___0b4359be2": 4831, "15___CATEGORICAL___nom_9___0b4a4f3f1": 4832, "15___CATEGORICAL___nom_9___0b4b2662b": 4833, "15___CATEGORICAL___nom_9___0b525577c": 4834, "15___CATEGORICAL___nom_9___0b565d5ef": 4835, "15___CATEGORICAL___nom_9___0b63ff6bc": 4836, "15___CATEGORICAL___nom_9___0b68e7675": 4837, "15___CATEGORICAL___nom_9___0b6a1ef1b": 4838, "15___CATEGORICAL___nom_9___0b73ce7fa": 4839, "15___CATEGORICAL___nom_9___0b7705692": 4840, "15___CATEGORICAL___nom_9___0b893e6f5": 4841, "15___CATEGORICAL___nom_9___0b89e4cfb": 4842, "15___CATEGORICAL___nom_9___0b93b668e": 4843, "15___CATEGORICAL___nom_9___0b963d746": 4844, "15___CATEGORICAL___nom_9___0bab97515": 4845, "15___CATEGORICAL___nom_9___0bb2de046": 4846, "15___CATEGORICAL___nom_9___0bb3dbcce": 4847, "15___CATEGORICAL___nom_9___0bb457e90": 4848, "15___CATEGORICAL___nom_9___0bb8445bd": 4849, "15___CATEGORICAL___nom_9___0bbcb44c8": 4850, "15___CATEGORICAL___nom_9___0bc2b7ce4": 4851, "15___CATEGORICAL___nom_9___0bc63b9f9": 4852, "15___CATEGORICAL___nom_9___0bc920d44": 4853, "15___CATEGORICAL___nom_9___0bcec7bb7": 4854, "15___CATEGORICAL___nom_9___0bd56f3f2": 4855, "15___CATEGORICAL___nom_9___0bd63776b": 4856, "15___CATEGORICAL___nom_9___0bd73e841": 4857, "15___CATEGORICAL___nom_9___0bdc0684a": 4858, "15___CATEGORICAL___nom_9___0bea11f8d": 4859, "15___CATEGORICAL___nom_9___0befdebba": 4860, "15___CATEGORICAL___nom_9___0bf076228": 4861, "15___CATEGORICAL___nom_9___0bfbe025b": 4862, "15___CATEGORICAL___nom_9___0c00367d9": 4863, "15___CATEGORICAL___nom_9___0c0568554": 4864, "15___CATEGORICAL___nom_9___0c068c2ab": 4865, "15___CATEGORICAL___nom_9___0c0bae2b3": 4866, "15___CATEGORICAL___nom_9___0c0bf2144": 4867, "15___CATEGORICAL___nom_9___0c0e48245": 4868, "15___CATEGORICAL___nom_9___0c10121a2": 4869, "15___CATEGORICAL___nom_9___0c124f538": 4870, "15___CATEGORICAL___nom_9___0c15f2d05": 4871, "15___CATEGORICAL___nom_9___0c1b04457": 4872, "15___CATEGORICAL___nom_9___0c2159ed0": 4873, "15___CATEGORICAL___nom_9___0c2648b65": 4874, "15___CATEGORICAL___nom_9___0c26c5bdf": 4875, "15___CATEGORICAL___nom_9___0c2b962c0": 4876, "15___CATEGORICAL___nom_9___0c2c102af": 4877, "15___CATEGORICAL___nom_9___0c4094bcb": 4878, "15___CATEGORICAL___nom_9___0c42080a6": 4879, "15___CATEGORICAL___nom_9___0c4af5e71": 4880, "15___CATEGORICAL___nom_9___0c5cd8980": 4881, "15___CATEGORICAL___nom_9___0c6760961": 4882, "15___CATEGORICAL___nom_9___0c6871768": 4883, "15___CATEGORICAL___nom_9___0c699ace8": 4884, "15___CATEGORICAL___nom_9___0c6f57880": 4885, "15___CATEGORICAL___nom_9___0c73812fb": 4886, "15___CATEGORICAL___nom_9___0c7a195d6": 4887, "15___CATEGORICAL___nom_9___0c824066d": 4888, "15___CATEGORICAL___nom_9___0c89de65d": 4889, "15___CATEGORICAL___nom_9___0c91a5a9c": 4890, "15___CATEGORICAL___nom_9___0c9db6b07": 4891, "15___CATEGORICAL___nom_9___0c9dd0087": 4892, "15___CATEGORICAL___nom_9___0ca33891e": 4893, "15___CATEGORICAL___nom_9___0cabcacf7": 4894, "15___CATEGORICAL___nom_9___0cac62b20": 4895, "15___CATEGORICAL___nom_9___0cb29224e": 4896, "15___CATEGORICAL___nom_9___0cbcbc080": 4897, "15___CATEGORICAL___nom_9___0cc9659d3": 4898, "15___CATEGORICAL___nom_9___0ccac7ef7": 4899, "15___CATEGORICAL___nom_9___0ce0ffade": 4900, "15___CATEGORICAL___nom_9___0cef322f9": 4901, "15___CATEGORICAL___nom_9___0cfc4acbd": 4902, "15___CATEGORICAL___nom_9___0d05b0cb4": 4903, "15___CATEGORICAL___nom_9___0d0788acd": 4904, "15___CATEGORICAL___nom_9___0d0f52250": 4905, "15___CATEGORICAL___nom_9___0d19d3282": 4906, "15___CATEGORICAL___nom_9___0d1e2fb9e": 4907, "15___CATEGORICAL___nom_9___0d1e694f7": 4908, "15___CATEGORICAL___nom_9___0d222792e": 4909, "15___CATEGORICAL___nom_9___0d248404d": 4910, "15___CATEGORICAL___nom_9___0d25a8be9": 4911, "15___CATEGORICAL___nom_9___0d3a354f5": 4912, "15___CATEGORICAL___nom_9___0d3b2fe9b": 4913, "15___CATEGORICAL___nom_9___0d3e3e42d": 4914, "15___CATEGORICAL___nom_9___0d4779f98": 4915, "15___CATEGORICAL___nom_9___0d483ea49": 4916, "15___CATEGORICAL___nom_9___0d4b35bd8": 4917, "15___CATEGORICAL___nom_9___0d5bccf44": 4918, "15___CATEGORICAL___nom_9___0d6d240e7": 4919, "15___CATEGORICAL___nom_9___0d6e4bf6b": 4920, "15___CATEGORICAL___nom_9___0d78fe699": 4921, "15___CATEGORICAL___nom_9___0d793626c": 4922, "15___CATEGORICAL___nom_9___0d835248b": 4923, "15___CATEGORICAL___nom_9___0d88e14ec": 4924, "15___CATEGORICAL___nom_9___0d8b094bd": 4925, "15___CATEGORICAL___nom_9___0da332bef": 4926, "15___CATEGORICAL___nom_9___0dad6a5cf": 4927, "15___CATEGORICAL___nom_9___0dba18401": 4928, "15___CATEGORICAL___nom_9___0dc2d6a91": 4929, "15___CATEGORICAL___nom_9___0dc59ddae": 4930, "15___CATEGORICAL___nom_9___0dc8be062": 4931, "15___CATEGORICAL___nom_9___0dd763976": 4932, "15___CATEGORICAL___nom_9___0de2ed0f8": 4933, "15___CATEGORICAL___nom_9___0de5a27c0": 4934, "15___CATEGORICAL___nom_9___0de86f45a": 4935, "15___CATEGORICAL___nom_9___0df0be5ef": 4936, "15___CATEGORICAL___nom_9___0df689570": 4937, "15___CATEGORICAL___nom_9___0dfe505ff": 4938, "15___CATEGORICAL___nom_9___0e0577160": 4939, "15___CATEGORICAL___nom_9___0e0854c98": 4940, "15___CATEGORICAL___nom_9___0e15d1e90": 4941, "15___CATEGORICAL___nom_9___0e1adf01d": 4942, "15___CATEGORICAL___nom_9___0e27e5cc4": 4943, "15___CATEGORICAL___nom_9___0e2bfc354": 4944, "15___CATEGORICAL___nom_9___0e2c463ed": 4945, "15___CATEGORICAL___nom_9___0e2f9f6d5": 4946, "15___CATEGORICAL___nom_9___0e326a150": 4947, "15___CATEGORICAL___nom_9___0e3989d17": 4948, "15___CATEGORICAL___nom_9___0e3a06c27": 4949, "15___CATEGORICAL___nom_9___0e4f15505": 4950, "15___CATEGORICAL___nom_9___0e533f469": 4951, "15___CATEGORICAL___nom_9___0e5b0c429": 4952, "15___CATEGORICAL___nom_9___0e5b572f6": 4953, "15___CATEGORICAL___nom_9___0e74dd54a": 4954, "15___CATEGORICAL___nom_9___0e7593219": 4955, "15___CATEGORICAL___nom_9___0e81e50c2": 4956, "15___CATEGORICAL___nom_9___0e82e89f9": 4957, "15___CATEGORICAL___nom_9___0e83be8b7": 4958, "15___CATEGORICAL___nom_9___0e85ebce3": 4959, "15___CATEGORICAL___nom_9___0e96cbac0": 4960, "15___CATEGORICAL___nom_9___0e97458a1": 4961, "15___CATEGORICAL___nom_9___0e9a0ce6e": 4962, "15___CATEGORICAL___nom_9___0ea1c6e92": 4963, "15___CATEGORICAL___nom_9___0ea818904": 4964, "15___CATEGORICAL___nom_9___0eb3b944c": 4965, "15___CATEGORICAL___nom_9___0eb4f3202": 4966, "15___CATEGORICAL___nom_9___0ec0b49f3": 4967, "15___CATEGORICAL___nom_9___0ece7a511": 4968, "15___CATEGORICAL___nom_9___0ed2294ed": 4969, "15___CATEGORICAL___nom_9___0ee2ecfd6": 4970, "15___CATEGORICAL___nom_9___0ee58aec7": 4971, "15___CATEGORICAL___nom_9___0ee5ddcbf": 4972, "15___CATEGORICAL___nom_9___0eeab6aa2": 4973, "15___CATEGORICAL___nom_9___0ef05755e": 4974, "15___CATEGORICAL___nom_9___0ef390a1d": 4975, "15___CATEGORICAL___nom_9___0ef512e33": 4976, "15___CATEGORICAL___nom_9___0ef52346d": 4977, "15___CATEGORICAL___nom_9___0efdb16c0": 4978, "15___CATEGORICAL___nom_9___0effe609c": 4979, "15___CATEGORICAL___nom_9___0f0440d09": 4980, "15___CATEGORICAL___nom_9___0f077b8e3": 4981, "15___CATEGORICAL___nom_9___0f0b6abef": 4982, "15___CATEGORICAL___nom_9___0f0c41574": 4983, "15___CATEGORICAL___nom_9___0f1e94201": 4984, "15___CATEGORICAL___nom_9___0f254ec54": 4985, "15___CATEGORICAL___nom_9___0f27d62e5": 4986, "15___CATEGORICAL___nom_9___0f2eda6a2": 4987, "15___CATEGORICAL___nom_9___0f35ae04a": 4988, "15___CATEGORICAL___nom_9___0f3bde299": 4989, "15___CATEGORICAL___nom_9___0f3f023ca": 4990, "15___CATEGORICAL___nom_9___0f45e3727": 4991, "15___CATEGORICAL___nom_9___0f47af64a": 4992, "15___CATEGORICAL___nom_9___0f48b44d0": 4993, "15___CATEGORICAL___nom_9___0f4e4883a": 4994, "15___CATEGORICAL___nom_9___0f526aa70": 4995, "15___CATEGORICAL___nom_9___0f5c14cb7": 4996, "15___CATEGORICAL___nom_9___0f60cf50c": 4997, "15___CATEGORICAL___nom_9___0f6c72450": 4998, "15___CATEGORICAL___nom_9___0f6d37a47": 4999, "15___CATEGORICAL___nom_9___0f75f8eaa": 5000, "15___CATEGORICAL___nom_9___0f76b2114": 5001, "15___CATEGORICAL___nom_9___0f7e27d1d": 5002, "15___CATEGORICAL___nom_9___0f8bb0635": 5003, "15___CATEGORICAL___nom_9___0f9340129": 5004, "15___CATEGORICAL___nom_9___0f93c9868": 5005, "15___CATEGORICAL___nom_9___0f9b522fd": 5006, "15___CATEGORICAL___nom_9___0f9c0a5cc": 5007, "15___CATEGORICAL___nom_9___0fac76d03": 5008, "15___CATEGORICAL___nom_9___0fadd9f3a": 5009, "15___CATEGORICAL___nom_9___0fbc05f0c": 5010, "15___CATEGORICAL___nom_9___0fbeffd05": 5011, "15___CATEGORICAL___nom_9___0fc6acae3": 5012, "15___CATEGORICAL___nom_9___0fcdf3f13": 5013, "15___CATEGORICAL___nom_9___0fd2c08ad": 5014, "15___CATEGORICAL___nom_9___0fd36eb2b": 5015, "15___CATEGORICAL___nom_9___0fe07afb2": 5016, "15___CATEGORICAL___nom_9___0fe1e0e78": 5017, "15___CATEGORICAL___nom_9___0fe95661b": 5018, "15___CATEGORICAL___nom_9___0fefb5c82": 5019, "15___CATEGORICAL___nom_9___0ff0b84a9": 5020, "15___CATEGORICAL___nom_9___0ff2dfdb1": 5021, "15___CATEGORICAL___nom_9___0ff6679d7": 5022, "15___CATEGORICAL___nom_9___10095cd60": 5023, "15___CATEGORICAL___nom_9___100d82fa4": 5024, "15___CATEGORICAL___nom_9___101ba5800": 5025, "15___CATEGORICAL___nom_9___102472d43": 5026, "15___CATEGORICAL___nom_9___1025d783e": 5027, "15___CATEGORICAL___nom_9___102da8ca3": 5028, "15___CATEGORICAL___nom_9___103df4960": 5029, "15___CATEGORICAL___nom_9___103f52530": 5030, "15___CATEGORICAL___nom_9___104347ca7": 5031, "15___CATEGORICAL___nom_9___10487be9d": 5032, "15___CATEGORICAL___nom_9___104baaac1": 5033, "15___CATEGORICAL___nom_9___104d16700": 5034, "15___CATEGORICAL___nom_9___1053d7851": 5035, "15___CATEGORICAL___nom_9___1057ed513": 5036, "15___CATEGORICAL___nom_9___105d262c6": 5037, "15___CATEGORICAL___nom_9___10645a782": 5038, "15___CATEGORICAL___nom_9___1068705ec": 5039, "15___CATEGORICAL___nom_9___106c02bae": 5040, "15___CATEGORICAL___nom_9___1078e2a24": 5041, "15___CATEGORICAL___nom_9___107b47e6b": 5042, "15___CATEGORICAL___nom_9___107d0311d": 5043, "15___CATEGORICAL___nom_9___107d801cb": 5044, "15___CATEGORICAL___nom_9___107fb3107": 5045, "15___CATEGORICAL___nom_9___10886a54f": 5046, "15___CATEGORICAL___nom_9___109b2f305": 5047, "15___CATEGORICAL___nom_9___109cc0e4a": 5048, "15___CATEGORICAL___nom_9___109fa9f16": 5049, "15___CATEGORICAL___nom_9___10a323c36": 5050, "15___CATEGORICAL___nom_9___10a3ec856": 5051, "15___CATEGORICAL___nom_9___10a54bd13": 5052, "15___CATEGORICAL___nom_9___10a8768fc": 5053, "15___CATEGORICAL___nom_9___10aed4b9a": 5054, "15___CATEGORICAL___nom_9___10af4bab0": 5055, "15___CATEGORICAL___nom_9___10b0a1c68": 5056, "15___CATEGORICAL___nom_9___10b9ff6d1": 5057, "15___CATEGORICAL___nom_9___10c2549d3": 5058, "15___CATEGORICAL___nom_9___10d331f0e": 5059, "15___CATEGORICAL___nom_9___10d37b010": 5060, "15___CATEGORICAL___nom_9___10d8724f6": 5061, "15___CATEGORICAL___nom_9___10e5c0cd5": 5062, "15___CATEGORICAL___nom_9___10f570eea": 5063, "15___CATEGORICAL___nom_9___10f649126": 5064, "15___CATEGORICAL___nom_9___10fe5b960": 5065, "15___CATEGORICAL___nom_9___110416852": 5066, "15___CATEGORICAL___nom_9___11055db18": 5067, "15___CATEGORICAL___nom_9___110fb5f9e": 5068, "15___CATEGORICAL___nom_9___1110e7e8e": 5069, "15___CATEGORICAL___nom_9___1112c9773": 5070, "15___CATEGORICAL___nom_9___11207d355": 5071, "15___CATEGORICAL___nom_9___112422329": 5072, "15___CATEGORICAL___nom_9___112ae5e2c": 5073, "15___CATEGORICAL___nom_9___112e0e696": 5074, "15___CATEGORICAL___nom_9___112e545cc": 5075, "15___CATEGORICAL___nom_9___112e932d6": 5076, "15___CATEGORICAL___nom_9___1131c0d77": 5077, "15___CATEGORICAL___nom_9___1137277ad": 5078, "15___CATEGORICAL___nom_9___113d887c2": 5079, "15___CATEGORICAL___nom_9___1140acb34": 5080, "15___CATEGORICAL___nom_9___1142f4506": 5081, "15___CATEGORICAL___nom_9___114597dd2": 5082, "15___CATEGORICAL___nom_9___114c90276": 5083, "15___CATEGORICAL___nom_9___114e1ef3b": 5084, "15___CATEGORICAL___nom_9___11549437a": 5085, "15___CATEGORICAL___nom_9___115681aef": 5086, "15___CATEGORICAL___nom_9___1160fef54": 5087, "15___CATEGORICAL___nom_9___116388232": 5088, "15___CATEGORICAL___nom_9___116920871": 5089, "15___CATEGORICAL___nom_9___116944fcd": 5090, "15___CATEGORICAL___nom_9___117c4504b": 5091, "15___CATEGORICAL___nom_9___118b609f6": 5092, "15___CATEGORICAL___nom_9___118e5fe71": 5093, "15___CATEGORICAL___nom_9___11902b618": 5094, "15___CATEGORICAL___nom_9___11981470f": 5095, "15___CATEGORICAL___nom_9___119f5c476": 5096, "15___CATEGORICAL___nom_9___11a2383e0": 5097, "15___CATEGORICAL___nom_9___11a85c8a8": 5098, "15___CATEGORICAL___nom_9___11adfe1c6": 5099, "15___CATEGORICAL___nom_9___11af30f14": 5100, "15___CATEGORICAL___nom_9___11c4738cf": 5101, "15___CATEGORICAL___nom_9___11c6c1cb5": 5102, "15___CATEGORICAL___nom_9___11c6c8329": 5103, "15___CATEGORICAL___nom_9___11ca62cb0": 5104, "15___CATEGORICAL___nom_9___11d17af63": 5105, "15___CATEGORICAL___nom_9___11d4dd9f8": 5106, "15___CATEGORICAL___nom_9___11da202aa": 5107, "15___CATEGORICAL___nom_9___11db139be": 5108, "15___CATEGORICAL___nom_9___11dc344c3": 5109, "15___CATEGORICAL___nom_9___11dcec3f1": 5110, "15___CATEGORICAL___nom_9___11e6d1139": 5111, "15___CATEGORICAL___nom_9___11f08c438": 5112, "15___CATEGORICAL___nom_9___11f1e8348": 5113, "15___CATEGORICAL___nom_9___11f39ea62": 5114, "15___CATEGORICAL___nom_9___11fa2494e": 5115, "15___CATEGORICAL___nom_9___120c90343": 5116, "15___CATEGORICAL___nom_9___121048f49": 5117, "15___CATEGORICAL___nom_9___1210f7cfa": 5118, "15___CATEGORICAL___nom_9___1217f7f6c": 5119, "15___CATEGORICAL___nom_9___1221895b4": 5120, "15___CATEGORICAL___nom_9___1227d29f3": 5121, "15___CATEGORICAL___nom_9___1232bfa9c": 5122, "15___CATEGORICAL___nom_9___12344ea13": 5123, "15___CATEGORICAL___nom_9___124030717": 5124, "15___CATEGORICAL___nom_9___124170850": 5125, "15___CATEGORICAL___nom_9___1245bbc5b": 5126, "15___CATEGORICAL___nom_9___124c478cb": 5127, "15___CATEGORICAL___nom_9___1253f9028": 5128, "15___CATEGORICAL___nom_9___125503d28": 5129, "15___CATEGORICAL___nom_9___1256b598a": 5130, "15___CATEGORICAL___nom_9___1257c0a4d": 5131, "15___CATEGORICAL___nom_9___12634b6fd": 5132, "15___CATEGORICAL___nom_9___126987d4c": 5133, "15___CATEGORICAL___nom_9___12702fc71": 5134, "15___CATEGORICAL___nom_9___12730274c": 5135, "15___CATEGORICAL___nom_9___1277406e1": 5136, "15___CATEGORICAL___nom_9___1284401d6": 5137, "15___CATEGORICAL___nom_9___128a09aa1": 5138, "15___CATEGORICAL___nom_9___129117c8c": 5139, "15___CATEGORICAL___nom_9___12954a7ab": 5140, "15___CATEGORICAL___nom_9___129d33186": 5141, "15___CATEGORICAL___nom_9___12a005152": 5142, "15___CATEGORICAL___nom_9___12ac6f429": 5143, "15___CATEGORICAL___nom_9___12b054aa2": 5144, "15___CATEGORICAL___nom_9___12b3005dc": 5145, "15___CATEGORICAL___nom_9___12b59195a": 5146, "15___CATEGORICAL___nom_9___12b876417": 5147, "15___CATEGORICAL___nom_9___12bbb1715": 5148, "15___CATEGORICAL___nom_9___12c25d486": 5149, "15___CATEGORICAL___nom_9___12c27b23d": 5150, "15___CATEGORICAL___nom_9___12c374a4b": 5151, "15___CATEGORICAL___nom_9___12c6d5150": 5152, "15___CATEGORICAL___nom_9___12cf7c2ee": 5153, "15___CATEGORICAL___nom_9___12cfaf461": 5154, "15___CATEGORICAL___nom_9___12d093e4e": 5155, "15___CATEGORICAL___nom_9___12d7483ff": 5156, "15___CATEGORICAL___nom_9___12d88b57a": 5157, "15___CATEGORICAL___nom_9___12d8e2b86": 5158, "15___CATEGORICAL___nom_9___12d93f26f": 5159, "15___CATEGORICAL___nom_9___12de40499": 5160, "15___CATEGORICAL___nom_9___12e5e1445": 5161, "15___CATEGORICAL___nom_9___12e99547f": 5162, "15___CATEGORICAL___nom_9___12f3aea46": 5163, "15___CATEGORICAL___nom_9___12fcb210b": 5164, "15___CATEGORICAL___nom_9___130161d9a": 5165, "15___CATEGORICAL___nom_9___130481d28": 5166, "15___CATEGORICAL___nom_9___130908251": 5167, "15___CATEGORICAL___nom_9___130912af0": 5168, "15___CATEGORICAL___nom_9___1310c35dd": 5169, "15___CATEGORICAL___nom_9___13134aab6": 5170, "15___CATEGORICAL___nom_9___1313954b3": 5171, "15___CATEGORICAL___nom_9___13163b51a": 5172, "15___CATEGORICAL___nom_9___131738da9": 5173, "15___CATEGORICAL___nom_9___1319ee7b8": 5174, "15___CATEGORICAL___nom_9___131d5ec71": 5175, "15___CATEGORICAL___nom_9___13264c74d": 5176, "15___CATEGORICAL___nom_9___132d01b99": 5177, "15___CATEGORICAL___nom_9___132f249d8": 5178, "15___CATEGORICAL___nom_9___133946196": 5179, "15___CATEGORICAL___nom_9___133d2331b": 5180, "15___CATEGORICAL___nom_9___133e12386": 5181, "15___CATEGORICAL___nom_9___1341fa6e3": 5182, "15___CATEGORICAL___nom_9___134287f78": 5183, "15___CATEGORICAL___nom_9___13452503a": 5184, "15___CATEGORICAL___nom_9___13459c4f6": 5185, "15___CATEGORICAL___nom_9___1345d015e": 5186, "15___CATEGORICAL___nom_9___134ce8919": 5187, "15___CATEGORICAL___nom_9___134da4e1a": 5188, "15___CATEGORICAL___nom_9___1351a37e6": 5189, "15___CATEGORICAL___nom_9___135a656ca": 5190, "15___CATEGORICAL___nom_9___135ec3897": 5191, "15___CATEGORICAL___nom_9___1365bfbac": 5192, "15___CATEGORICAL___nom_9___1366d47de": 5193, "15___CATEGORICAL___nom_9___13672bbe4": 5194, "15___CATEGORICAL___nom_9___136bab484": 5195, "15___CATEGORICAL___nom_9___136e7d829": 5196, "15___CATEGORICAL___nom_9___137136061": 5197, "15___CATEGORICAL___nom_9___137608373": 5198, "15___CATEGORICAL___nom_9___137eb10dd": 5199, "15___CATEGORICAL___nom_9___137f10489": 5200, "15___CATEGORICAL___nom_9___1385082a5": 5201, "15___CATEGORICAL___nom_9___138ddeb0f": 5202, "15___CATEGORICAL___nom_9___138df6bc6": 5203, "15___CATEGORICAL___nom_9___13914a8ad": 5204, "15___CATEGORICAL___nom_9___1393b8aa9": 5205, "15___CATEGORICAL___nom_9___13949b363": 5206, "15___CATEGORICAL___nom_9___1399865b2": 5207, "15___CATEGORICAL___nom_9___139f842a2": 5208, "15___CATEGORICAL___nom_9___13a21ba15": 5209, "15___CATEGORICAL___nom_9___13a31c68d": 5210, "15___CATEGORICAL___nom_9___13a38b951": 5211, "15___CATEGORICAL___nom_9___13a69f18f": 5212, "15___CATEGORICAL___nom_9___13aa64095": 5213, "15___CATEGORICAL___nom_9___13b01c814": 5214, "15___CATEGORICAL___nom_9___13bba7b68": 5215, "15___CATEGORICAL___nom_9___13be3cc34": 5216, "15___CATEGORICAL___nom_9___13c32e042": 5217, "15___CATEGORICAL___nom_9___13c8c0274": 5218, "15___CATEGORICAL___nom_9___13cf12a13": 5219, "15___CATEGORICAL___nom_9___13d43b533": 5220, "15___CATEGORICAL___nom_9___13d5e4b37": 5221, "15___CATEGORICAL___nom_9___13e16f4e5": 5222, "15___CATEGORICAL___nom_9___13e7f67a6": 5223, "15___CATEGORICAL___nom_9___13ef51e93": 5224, "15___CATEGORICAL___nom_9___13f32af3b": 5225, "15___CATEGORICAL___nom_9___13fef0cf5": 5226, "15___CATEGORICAL___nom_9___14024a750": 5227, "15___CATEGORICAL___nom_9___1403bdf11": 5228, "15___CATEGORICAL___nom_9___140493228": 5229, "15___CATEGORICAL___nom_9___1406dff6d": 5230, "15___CATEGORICAL___nom_9___140749808": 5231, "15___CATEGORICAL___nom_9___1408beed2": 5232, "15___CATEGORICAL___nom_9___1408c28bd": 5233, "15___CATEGORICAL___nom_9___140da9ed4": 5234, "15___CATEGORICAL___nom_9___140f7f776": 5235, "15___CATEGORICAL___nom_9___1415f4b88": 5236, "15___CATEGORICAL___nom_9___1417ed6e3": 5237, "15___CATEGORICAL___nom_9___141e405ed": 5238, "15___CATEGORICAL___nom_9___143022478": 5239, "15___CATEGORICAL___nom_9___143c129a5": 5240, "15___CATEGORICAL___nom_9___1466b6a89": 5241, "15___CATEGORICAL___nom_9___1469863b4": 5242, "15___CATEGORICAL___nom_9___146fde688": 5243, "15___CATEGORICAL___nom_9___14716668a": 5244, "15___CATEGORICAL___nom_9___147443465": 5245, "15___CATEGORICAL___nom_9___14868bec7": 5246, "15___CATEGORICAL___nom_9___148e4f2ca": 5247, "15___CATEGORICAL___nom_9___14904115d": 5248, "15___CATEGORICAL___nom_9___1496091af": 5249, "15___CATEGORICAL___nom_9___14a1fb02e": 5250, "15___CATEGORICAL___nom_9___14a8497c2": 5251, "15___CATEGORICAL___nom_9___14aa19071": 5252, "15___CATEGORICAL___nom_9___14b414a41": 5253, "15___CATEGORICAL___nom_9___14b6937a1": 5254, "15___CATEGORICAL___nom_9___14ba25a65": 5255, "15___CATEGORICAL___nom_9___14c459df1": 5256, "15___CATEGORICAL___nom_9___14c8e0d12": 5257, "15___CATEGORICAL___nom_9___14ca3b253": 5258, "15___CATEGORICAL___nom_9___14cb9c02d": 5259, "15___CATEGORICAL___nom_9___14cf6b6a9": 5260, "15___CATEGORICAL___nom_9___14cfa12df": 5261, "15___CATEGORICAL___nom_9___14cfb9928": 5262, "15___CATEGORICAL___nom_9___14d4d280c": 5263, "15___CATEGORICAL___nom_9___14d56c88e": 5264, "15___CATEGORICAL___nom_9___14da36744": 5265, "15___CATEGORICAL___nom_9___14e3cb36f": 5266, "15___CATEGORICAL___nom_9___14f4e5222": 5267, "15___CATEGORICAL___nom_9___1504151a2": 5268, "15___CATEGORICAL___nom_9___150b71a03": 5269, "15___CATEGORICAL___nom_9___150e1ab2e": 5270, "15___CATEGORICAL___nom_9___150f16fb5": 5271, "15___CATEGORICAL___nom_9___151181567": 5272, "15___CATEGORICAL___nom_9___151bee6ed": 5273, "15___CATEGORICAL___nom_9___151dbb3c9": 5274, "15___CATEGORICAL___nom_9___1522f40a8": 5275, "15___CATEGORICAL___nom_9___1523dac0d": 5276, "15___CATEGORICAL___nom_9___152590a1f": 5277, "15___CATEGORICAL___nom_9___1525de423": 5278, "15___CATEGORICAL___nom_9___15267588b": 5279, "15___CATEGORICAL___nom_9___15292d3d7": 5280, "15___CATEGORICAL___nom_9___153c87183": 5281, "15___CATEGORICAL___nom_9___153e91279": 5282, "15___CATEGORICAL___nom_9___153fd4d2e": 5283, "15___CATEGORICAL___nom_9___1547b1843": 5284, "15___CATEGORICAL___nom_9___154a61c60": 5285, "15___CATEGORICAL___nom_9___154d76ff2": 5286, "15___CATEGORICAL___nom_9___1550e247b": 5287, "15___CATEGORICAL___nom_9___15585db79": 5288, "15___CATEGORICAL___nom_9___155fbae33": 5289, "15___CATEGORICAL___nom_9___156069242": 5290, "15___CATEGORICAL___nom_9___1562fa210": 5291, "15___CATEGORICAL___nom_9___1562ffc8d": 5292, "15___CATEGORICAL___nom_9___15719752a": 5293, "15___CATEGORICAL___nom_9___157316998": 5294, "15___CATEGORICAL___nom_9___157a0304e": 5295, "15___CATEGORICAL___nom_9___1582c0806": 5296, "15___CATEGORICAL___nom_9___1586b39a2": 5297, "15___CATEGORICAL___nom_9___158740964": 5298, "15___CATEGORICAL___nom_9___158cd82f0": 5299, "15___CATEGORICAL___nom_9___1596c8c25": 5300, "15___CATEGORICAL___nom_9___1596f09d7": 5301, "15___CATEGORICAL___nom_9___15a194917": 5302, "15___CATEGORICAL___nom_9___15a2512c4": 5303, "15___CATEGORICAL___nom_9___15a3201e9": 5304, "15___CATEGORICAL___nom_9___15a68a077": 5305, "15___CATEGORICAL___nom_9___15a905cab": 5306, "15___CATEGORICAL___nom_9___15b864395": 5307, "15___CATEGORICAL___nom_9___15b9d16ba": 5308, "15___CATEGORICAL___nom_9___15b9f23e2": 5309, "15___CATEGORICAL___nom_9___15c958aa1": 5310, "15___CATEGORICAL___nom_9___15d42f1b1": 5311, "15___CATEGORICAL___nom_9___15de8f661": 5312, "15___CATEGORICAL___nom_9___15f30bae3": 5313, "15___CATEGORICAL___nom_9___15f472ad7": 5314, "15___CATEGORICAL___nom_9___15f97f3a8": 5315, "15___CATEGORICAL___nom_9___16033bfa2": 5316, "15___CATEGORICAL___nom_9___1603c2ce7": 5317, "15___CATEGORICAL___nom_9___1604d787a": 5318, "15___CATEGORICAL___nom_9___16056a3a9": 5319, "15___CATEGORICAL___nom_9___1608fd7e3": 5320, "15___CATEGORICAL___nom_9___160e47e8e": 5321, "15___CATEGORICAL___nom_9___161418303": 5322, "15___CATEGORICAL___nom_9___161490de0": 5323, "15___CATEGORICAL___nom_9___161630c8d": 5324, "15___CATEGORICAL___nom_9___1617f3103": 5325, "15___CATEGORICAL___nom_9___16243c191": 5326, "15___CATEGORICAL___nom_9___1625ee58d": 5327, "15___CATEGORICAL___nom_9___1629104a7": 5328, "15___CATEGORICAL___nom_9___163c185a9": 5329, "15___CATEGORICAL___nom_9___163c5ff83": 5330, "15___CATEGORICAL___nom_9___163cb5d26": 5331, "15___CATEGORICAL___nom_9___163cc60fa": 5332, "15___CATEGORICAL___nom_9___164241231": 5333, "15___CATEGORICAL___nom_9___1643e1c14": 5334, "15___CATEGORICAL___nom_9___164844815": 5335, "15___CATEGORICAL___nom_9___1655765fd": 5336, "15___CATEGORICAL___nom_9___1655aafcc": 5337, "15___CATEGORICAL___nom_9___1658c6564": 5338, "15___CATEGORICAL___nom_9___165baf15a": 5339, "15___CATEGORICAL___nom_9___1674b11ae": 5340, "15___CATEGORICAL___nom_9___1676392aa": 5341, "15___CATEGORICAL___nom_9___16767a088": 5342, "15___CATEGORICAL___nom_9___167a433e1": 5343, "15___CATEGORICAL___nom_9___167bbfac0": 5344, "15___CATEGORICAL___nom_9___16864fc71": 5345, "15___CATEGORICAL___nom_9___1689015a8": 5346, "15___CATEGORICAL___nom_9___16933a6ac": 5347, "15___CATEGORICAL___nom_9___169f3d8af": 5348, "15___CATEGORICAL___nom_9___16a2770de": 5349, "15___CATEGORICAL___nom_9___16a6d0ef0": 5350, "15___CATEGORICAL___nom_9___16b1878a8": 5351, "15___CATEGORICAL___nom_9___16b891547": 5352, "15___CATEGORICAL___nom_9___16bc82aae": 5353, "15___CATEGORICAL___nom_9___16bccba21": 5354, "15___CATEGORICAL___nom_9___16cc146d4": 5355, "15___CATEGORICAL___nom_9___16cc14779": 5356, "15___CATEGORICAL___nom_9___16d233754": 5357, "15___CATEGORICAL___nom_9___16d27efd5": 5358, "15___CATEGORICAL___nom_9___16d58d852": 5359, "15___CATEGORICAL___nom_9___16db65637": 5360, "15___CATEGORICAL___nom_9___16e3d7e4d": 5361, "15___CATEGORICAL___nom_9___16e400afa": 5362, "15___CATEGORICAL___nom_9___16e6dfb96": 5363, "15___CATEGORICAL___nom_9___16eb8ae07": 5364, "15___CATEGORICAL___nom_9___16f9d53b9": 5365, "15___CATEGORICAL___nom_9___17061cc45": 5366, "15___CATEGORICAL___nom_9___1709da990": 5367, "15___CATEGORICAL___nom_9___1716d6fbe": 5368, "15___CATEGORICAL___nom_9___1719b6967": 5369, "15___CATEGORICAL___nom_9___171cf00f5": 5370, "15___CATEGORICAL___nom_9___171e51f8e": 5371, "15___CATEGORICAL___nom_9___171e78c8b": 5372, "15___CATEGORICAL___nom_9___17285d2b3": 5373, "15___CATEGORICAL___nom_9___172924208": 5374, "15___CATEGORICAL___nom_9___172968f29": 5375, "15___CATEGORICAL___nom_9___172b6be8a": 5376, "15___CATEGORICAL___nom_9___17338bf46": 5377, "15___CATEGORICAL___nom_9___173d2d455": 5378, "15___CATEGORICAL___nom_9___173e3661e": 5379, "15___CATEGORICAL___nom_9___173fc116c": 5380, "15___CATEGORICAL___nom_9___1749a2cd9": 5381, "15___CATEGORICAL___nom_9___1752c9fef": 5382, "15___CATEGORICAL___nom_9___17577e4da": 5383, "15___CATEGORICAL___nom_9___1757f15f1": 5384, "15___CATEGORICAL___nom_9___175b191a1": 5385, "15___CATEGORICAL___nom_9___1767a1cc1": 5386, "15___CATEGORICAL___nom_9___176896408": 5387, "15___CATEGORICAL___nom_9___177da058d": 5388, "15___CATEGORICAL___nom_9___177f4513f": 5389, "15___CATEGORICAL___nom_9___178056a55": 5390, "15___CATEGORICAL___nom_9___178321f60": 5391, "15___CATEGORICAL___nom_9___17843e3e0": 5392, "15___CATEGORICAL___nom_9___17853cc20": 5393, "15___CATEGORICAL___nom_9___1787b1b2d": 5394, "15___CATEGORICAL___nom_9___178e5ecc0": 5395, "15___CATEGORICAL___nom_9___179128359": 5396, "15___CATEGORICAL___nom_9___17a3541e3": 5397, "15___CATEGORICAL___nom_9___17a6152ce": 5398, "15___CATEGORICAL___nom_9___17a8790d3": 5399, "15___CATEGORICAL___nom_9___17b1aa6d8": 5400, "15___CATEGORICAL___nom_9___17c1cd689": 5401, "15___CATEGORICAL___nom_9___17cb84550": 5402, "15___CATEGORICAL___nom_9___17d17f7f8": 5403, "15___CATEGORICAL___nom_9___17d5104dc": 5404, "15___CATEGORICAL___nom_9___17ddf0865": 5405, "15___CATEGORICAL___nom_9___17e739765": 5406, "15___CATEGORICAL___nom_9___17e9454c5": 5407, "15___CATEGORICAL___nom_9___17e9b1025": 5408, "15___CATEGORICAL___nom_9___17edd8fac": 5409, "15___CATEGORICAL___nom_9___17ee20aee": 5410, "15___CATEGORICAL___nom_9___17ee6d2d6": 5411, "15___CATEGORICAL___nom_9___17f640126": 5412, "15___CATEGORICAL___nom_9___17fde4af8": 5413, "15___CATEGORICAL___nom_9___180135193": 5414, "15___CATEGORICAL___nom_9___1801a2c08": 5415, "15___CATEGORICAL___nom_9___1814f6020": 5416, "15___CATEGORICAL___nom_9___18187a6fd": 5417, "15___CATEGORICAL___nom_9___181e3a2fc": 5418, "15___CATEGORICAL___nom_9___182300a46": 5419, "15___CATEGORICAL___nom_9___184a4d2d2": 5420, "15___CATEGORICAL___nom_9___184bf7726": 5421, "15___CATEGORICAL___nom_9___184c18d48": 5422, "15___CATEGORICAL___nom_9___184cfc782": 5423, "15___CATEGORICAL___nom_9___185eec21e": 5424, "15___CATEGORICAL___nom_9___186128a79": 5425, "15___CATEGORICAL___nom_9___1864b38b7": 5426, "15___CATEGORICAL___nom_9___186cc06d2": 5427, "15___CATEGORICAL___nom_9___18782472d": 5428, "15___CATEGORICAL___nom_9___187a03337": 5429, "15___CATEGORICAL___nom_9___187aa5d31": 5430, "15___CATEGORICAL___nom_9___187cae031": 5431, "15___CATEGORICAL___nom_9___18825ea68": 5432, "15___CATEGORICAL___nom_9___1888cc82b": 5433, "15___CATEGORICAL___nom_9___188c2c6b3": 5434, "15___CATEGORICAL___nom_9___1891e5457": 5435, "15___CATEGORICAL___nom_9___189a77091": 5436, "15___CATEGORICAL___nom_9___18a73431a": 5437, "15___CATEGORICAL___nom_9___18aef6328": 5438, "15___CATEGORICAL___nom_9___18b5cbbc7": 5439, "15___CATEGORICAL___nom_9___18b61c8df": 5440, "15___CATEGORICAL___nom_9___18b86d83a": 5441, "15___CATEGORICAL___nom_9___18c4abf91": 5442, "15___CATEGORICAL___nom_9___18c899966": 5443, "15___CATEGORICAL___nom_9___18cb62431": 5444, "15___CATEGORICAL___nom_9___18d1cc8de": 5445, "15___CATEGORICAL___nom_9___18d6692c1": 5446, "15___CATEGORICAL___nom_9___18d81c0e2": 5447, "15___CATEGORICAL___nom_9___18da81bec": 5448, "15___CATEGORICAL___nom_9___18e372a4d": 5449, "15___CATEGORICAL___nom_9___18e7d8974": 5450, "15___CATEGORICAL___nom_9___18e880443": 5451, "15___CATEGORICAL___nom_9___18e9bdba4": 5452, "15___CATEGORICAL___nom_9___18f3b0358": 5453, "15___CATEGORICAL___nom_9___18fa8ebde": 5454, "15___CATEGORICAL___nom_9___1903e8cdf": 5455, "15___CATEGORICAL___nom_9___19045f445": 5456, "15___CATEGORICAL___nom_9___19066e63a": 5457, "15___CATEGORICAL___nom_9___190d5948e": 5458, "15___CATEGORICAL___nom_9___191679858": 5459, "15___CATEGORICAL___nom_9___191fb13ac": 5460, "15___CATEGORICAL___nom_9___1921d8b8c": 5461, "15___CATEGORICAL___nom_9___192692296": 5462, "15___CATEGORICAL___nom_9___192c61219": 5463, "15___CATEGORICAL___nom_9___192f7b51a": 5464, "15___CATEGORICAL___nom_9___19365f93b": 5465, "15___CATEGORICAL___nom_9___193a0cce7": 5466, "15___CATEGORICAL___nom_9___193cc5fad": 5467, "15___CATEGORICAL___nom_9___193cefb9d": 5468, "15___CATEGORICAL___nom_9___194761294": 5469, "15___CATEGORICAL___nom_9___194a3c59c": 5470, "15___CATEGORICAL___nom_9___194b3242d": 5471, "15___CATEGORICAL___nom_9___195b28ca1": 5472, "15___CATEGORICAL___nom_9___195e322e9": 5473, "15___CATEGORICAL___nom_9___19668e90e": 5474, "15___CATEGORICAL___nom_9___196aa0d18": 5475, "15___CATEGORICAL___nom_9___19710203e": 5476, "15___CATEGORICAL___nom_9___197b8e6e1": 5477, "15___CATEGORICAL___nom_9___1984f92bf": 5478, "15___CATEGORICAL___nom_9___19855338c": 5479, "15___CATEGORICAL___nom_9___198920a13": 5480, "15___CATEGORICAL___nom_9___198ddbb08": 5481, "15___CATEGORICAL___nom_9___199dcb997": 5482, "15___CATEGORICAL___nom_9___19a492678": 5483, "15___CATEGORICAL___nom_9___19a88cd41": 5484, "15___CATEGORICAL___nom_9___19abe68e1": 5485, "15___CATEGORICAL___nom_9___19af43da7": 5486, "15___CATEGORICAL___nom_9___19b0f9fec": 5487, "15___CATEGORICAL___nom_9___19b17c680": 5488, "15___CATEGORICAL___nom_9___19b53db48": 5489, "15___CATEGORICAL___nom_9___19b58c6a9": 5490, "15___CATEGORICAL___nom_9___19bddfa52": 5491, "15___CATEGORICAL___nom_9___19c1db1bf": 5492, "15___CATEGORICAL___nom_9___19cc58e0c": 5493, "15___CATEGORICAL___nom_9___19cf6bd9b": 5494, "15___CATEGORICAL___nom_9___19d145f71": 5495, "15___CATEGORICAL___nom_9___19d78d4c4": 5496, "15___CATEGORICAL___nom_9___19d99cd08": 5497, "15___CATEGORICAL___nom_9___19daf9dd0": 5498, "15___CATEGORICAL___nom_9___19e2f5474": 5499, "15___CATEGORICAL___nom_9___19e378239": 5500, "15___CATEGORICAL___nom_9___19e482a8e": 5501, "15___CATEGORICAL___nom_9___19f4460a1": 5502, "15___CATEGORICAL___nom_9___19fb66f88": 5503, "15___CATEGORICAL___nom_9___1a1878844": 5504, "15___CATEGORICAL___nom_9___1a1ff92ce": 5505, "15___CATEGORICAL___nom_9___1a2282c46": 5506, "15___CATEGORICAL___nom_9___1a248dff9": 5507, "15___CATEGORICAL___nom_9___1a25c6368": 5508, "15___CATEGORICAL___nom_9___1a350f9c9": 5509, "15___CATEGORICAL___nom_9___1a3612f25": 5510, "15___CATEGORICAL___nom_9___1a37c6285": 5511, "15___CATEGORICAL___nom_9___1a3b91fec": 5512, "15___CATEGORICAL___nom_9___1a41e3ccc": 5513, "15___CATEGORICAL___nom_9___1a43929f3": 5514, "15___CATEGORICAL___nom_9___1a4a2af4d": 5515, "15___CATEGORICAL___nom_9___1a564a190": 5516, "15___CATEGORICAL___nom_9___1a59095b0": 5517, "15___CATEGORICAL___nom_9___1a5b3243a": 5518, "15___CATEGORICAL___nom_9___1a689dff9": 5519, "15___CATEGORICAL___nom_9___1a7ec6006": 5520, "15___CATEGORICAL___nom_9___1a7fe410b": 5521, "15___CATEGORICAL___nom_9___1a819ef77": 5522, "15___CATEGORICAL___nom_9___1a85a38d3": 5523, "15___CATEGORICAL___nom_9___1a87d0aa1": 5524, "15___CATEGORICAL___nom_9___1a8886330": 5525, "15___CATEGORICAL___nom_9___1a88fe9ec": 5526, "15___CATEGORICAL___nom_9___1a95de2e2": 5527, "15___CATEGORICAL___nom_9___1a965c09e": 5528, "15___CATEGORICAL___nom_9___1a9c3e8cc": 5529, "15___CATEGORICAL___nom_9___1a9fcef9c": 5530, "15___CATEGORICAL___nom_9___1aad274c3": 5531, "15___CATEGORICAL___nom_9___1ab585df5": 5532, "15___CATEGORICAL___nom_9___1ab740191": 5533, "15___CATEGORICAL___nom_9___1abf20ba7": 5534, "15___CATEGORICAL___nom_9___1ac542e0d": 5535, "15___CATEGORICAL___nom_9___1ac825bef": 5536, "15___CATEGORICAL___nom_9___1acb2a656": 5537, "15___CATEGORICAL___nom_9___1acc1cf42": 5538, "15___CATEGORICAL___nom_9___1ad346cfc": 5539, "15___CATEGORICAL___nom_9___1adaaf85e": 5540, "15___CATEGORICAL___nom_9___1ae40ea8b": 5541, "15___CATEGORICAL___nom_9___1ae4f6ee7": 5542, "15___CATEGORICAL___nom_9___1aeb357fe": 5543, "15___CATEGORICAL___nom_9___1aeb3a3d3": 5544, "15___CATEGORICAL___nom_9___1aeeada7e": 5545, "15___CATEGORICAL___nom_9___1afa54926": 5546, "15___CATEGORICAL___nom_9___1afb5e473": 5547, "15___CATEGORICAL___nom_9___1afd5436e": 5548, "15___CATEGORICAL___nom_9___1b194060a": 5549, "15___CATEGORICAL___nom_9___1b1bb98b8": 5550, "15___CATEGORICAL___nom_9___1b1f2e675": 5551, "15___CATEGORICAL___nom_9___1b2461062": 5552, "15___CATEGORICAL___nom_9___1b2db1d94": 5553, "15___CATEGORICAL___nom_9___1b3126c04": 5554, "15___CATEGORICAL___nom_9___1b34db11c": 5555, "15___CATEGORICAL___nom_9___1b3e48a2c": 5556, "15___CATEGORICAL___nom_9___1b4a16ea1": 5557, "15___CATEGORICAL___nom_9___1b4c0419d": 5558, "15___CATEGORICAL___nom_9___1b4c6c65c": 5559, "15___CATEGORICAL___nom_9___1b4de10ae": 5560, "15___CATEGORICAL___nom_9___1b4e0e503": 5561, "15___CATEGORICAL___nom_9___1b57e3ac0": 5562, "15___CATEGORICAL___nom_9___1b5860b96": 5563, "15___CATEGORICAL___nom_9___1b59c98a1": 5564, "15___CATEGORICAL___nom_9___1b6903253": 5565, "15___CATEGORICAL___nom_9___1b6ccf34b": 5566, "15___CATEGORICAL___nom_9___1b6f1333e": 5567, "15___CATEGORICAL___nom_9___1b745155c": 5568, "15___CATEGORICAL___nom_9___1b75105bf": 5569, "15___CATEGORICAL___nom_9___1b76ef103": 5570, "15___CATEGORICAL___nom_9___1b7d8db1f": 5571, "15___CATEGORICAL___nom_9___1b8f2b7de": 5572, "15___CATEGORICAL___nom_9___1b96d907c": 5573, "15___CATEGORICAL___nom_9___1b9b1f79f": 5574, "15___CATEGORICAL___nom_9___1b9b386a0": 5575, "15___CATEGORICAL___nom_9___1b9d7e23e": 5576, "15___CATEGORICAL___nom_9___1ba26a7fd": 5577, "15___CATEGORICAL___nom_9___1ba27ed77": 5578, "15___CATEGORICAL___nom_9___1ba7eca1a": 5579, "15___CATEGORICAL___nom_9___1bbbb9474": 5580, "15___CATEGORICAL___nom_9___1bc0a0456": 5581, "15___CATEGORICAL___nom_9___1bc403a42": 5582, "15___CATEGORICAL___nom_9___1bcc8dcc3": 5583, "15___CATEGORICAL___nom_9___1bd43a14c": 5584, "15___CATEGORICAL___nom_9___1bd48574d": 5585, "15___CATEGORICAL___nom_9___1bd608ab3": 5586, "15___CATEGORICAL___nom_9___1bd6c94aa": 5587, "15___CATEGORICAL___nom_9___1bd78b290": 5588, "15___CATEGORICAL___nom_9___1bda4f342": 5589, "15___CATEGORICAL___nom_9___1bdc1d8ed": 5590, "15___CATEGORICAL___nom_9___1bdc1d94e": 5591, "15___CATEGORICAL___nom_9___1be436e3f": 5592, "15___CATEGORICAL___nom_9___1be4a6a69": 5593, "15___CATEGORICAL___nom_9___1beb4a777": 5594, "15___CATEGORICAL___nom_9___1bf1ae113": 5595, "15___CATEGORICAL___nom_9___1bf37240f": 5596, "15___CATEGORICAL___nom_9___1bfc8df7e": 5597, "15___CATEGORICAL___nom_9___1bfd63589": 5598, "15___CATEGORICAL___nom_9___1bfe37e92": 5599, "15___CATEGORICAL___nom_9___1c22c439e": 5600, "15___CATEGORICAL___nom_9___1c2487c11": 5601, "15___CATEGORICAL___nom_9___1c37b78a6": 5602, "15___CATEGORICAL___nom_9___1c39e302b": 5603, "15___CATEGORICAL___nom_9___1c3a4a3c1": 5604, "15___CATEGORICAL___nom_9___1c4154538": 5605, "15___CATEGORICAL___nom_9___1c544d8fd": 5606, "15___CATEGORICAL___nom_9___1c55f20d8": 5607, "15___CATEGORICAL___nom_9___1c5ade30a": 5608, "15___CATEGORICAL___nom_9___1c5b8b683": 5609, "15___CATEGORICAL___nom_9___1c67afe7d": 5610, "15___CATEGORICAL___nom_9___1c68b4536": 5611, "15___CATEGORICAL___nom_9___1c6f00738": 5612, "15___CATEGORICAL___nom_9___1c734e862": 5613, "15___CATEGORICAL___nom_9___1c7e91a1f": 5614, "15___CATEGORICAL___nom_9___1c7f97d46": 5615, "15___CATEGORICAL___nom_9___1c8416679": 5616, "15___CATEGORICAL___nom_9___1c8536f9d": 5617, "15___CATEGORICAL___nom_9___1c8cbae48": 5618, "15___CATEGORICAL___nom_9___1c8e35a19": 5619, "15___CATEGORICAL___nom_9___1c93f22c7": 5620, "15___CATEGORICAL___nom_9___1ca45f5e9": 5621, "15___CATEGORICAL___nom_9___1cad04516": 5622, "15___CATEGORICAL___nom_9___1cad86ad7": 5623, "15___CATEGORICAL___nom_9___1cb6ae4a6": 5624, "15___CATEGORICAL___nom_9___1cbb53760": 5625, "15___CATEGORICAL___nom_9___1cbc9ed37": 5626, "15___CATEGORICAL___nom_9___1cc0e6d2a": 5627, "15___CATEGORICAL___nom_9___1cc4f74e4": 5628, "15___CATEGORICAL___nom_9___1cc9cc58d": 5629, "15___CATEGORICAL___nom_9___1ccae1002": 5630, "15___CATEGORICAL___nom_9___1cd20136d": 5631, "15___CATEGORICAL___nom_9___1cdce0790": 5632, "15___CATEGORICAL___nom_9___1ceb4fcd8": 5633, "15___CATEGORICAL___nom_9___1ceb8fd45": 5634, "15___CATEGORICAL___nom_9___1cec8f537": 5635, "15___CATEGORICAL___nom_9___1cf9dfa35": 5636, "15___CATEGORICAL___nom_9___1cfb5b70f": 5637, "15___CATEGORICAL___nom_9___1cfbb3907": 5638, "15___CATEGORICAL___nom_9___1cfbe853c": 5639, "15___CATEGORICAL___nom_9___1d086922b": 5640, "15___CATEGORICAL___nom_9___1d0b27398": 5641, "15___CATEGORICAL___nom_9___1d1305117": 5642, "15___CATEGORICAL___nom_9___1d194b5c8": 5643, "15___CATEGORICAL___nom_9___1d1e637d7": 5644, "15___CATEGORICAL___nom_9___1d26e04e1": 5645, "15___CATEGORICAL___nom_9___1d27d7d14": 5646, "15___CATEGORICAL___nom_9___1d28cd2ae": 5647, "15___CATEGORICAL___nom_9___1d29f6d06": 5648, "15___CATEGORICAL___nom_9___1d2a282ab": 5649, "15___CATEGORICAL___nom_9___1d2f5dbc0": 5650, "15___CATEGORICAL___nom_9___1d33ac1ec": 5651, "15___CATEGORICAL___nom_9___1d3b6ac99": 5652, "15___CATEGORICAL___nom_9___1d4559a20": 5653, "15___CATEGORICAL___nom_9___1d4f4ec1b": 5654, "15___CATEGORICAL___nom_9___1d51767c7": 5655, "15___CATEGORICAL___nom_9___1d57a05d2": 5656, "15___CATEGORICAL___nom_9___1d5e08295": 5657, "15___CATEGORICAL___nom_9___1d5fe376e": 5658, "15___CATEGORICAL___nom_9___1d669bc4e": 5659, "15___CATEGORICAL___nom_9___1d66c42e0": 5660, "15___CATEGORICAL___nom_9___1d7366295": 5661, "15___CATEGORICAL___nom_9___1d76e2ae8": 5662, "15___CATEGORICAL___nom_9___1d89a0532": 5663, "15___CATEGORICAL___nom_9___1d8a88a90": 5664, "15___CATEGORICAL___nom_9___1d9183b77": 5665, "15___CATEGORICAL___nom_9___1d91fab68": 5666, "15___CATEGORICAL___nom_9___1d9359862": 5667, "15___CATEGORICAL___nom_9___1d966f94c": 5668, "15___CATEGORICAL___nom_9___1d99c2a6b": 5669, "15___CATEGORICAL___nom_9___1da19a191": 5670, "15___CATEGORICAL___nom_9___1da2f04d1": 5671, "15___CATEGORICAL___nom_9___1da41eb36": 5672, "15___CATEGORICAL___nom_9___1daaf5d1b": 5673, "15___CATEGORICAL___nom_9___1dae93ac6": 5674, "15___CATEGORICAL___nom_9___1db51b1a1": 5675, "15___CATEGORICAL___nom_9___1dc155ead": 5676, "15___CATEGORICAL___nom_9___1dc37103c": 5677, "15___CATEGORICAL___nom_9___1dcfa21a5": 5678, "15___CATEGORICAL___nom_9___1dd2ee3c8": 5679, "15___CATEGORICAL___nom_9___1dd5e08ae": 5680, "15___CATEGORICAL___nom_9___1dde1cc03": 5681, "15___CATEGORICAL___nom_9___1dedc469b": 5682, "15___CATEGORICAL___nom_9___1df226afb": 5683, "15___CATEGORICAL___nom_9___1df3b8cbd": 5684, "15___CATEGORICAL___nom_9___1df628517": 5685, "15___CATEGORICAL___nom_9___1df808a93": 5686, "15___CATEGORICAL___nom_9___1dfda887c": 5687, "15___CATEGORICAL___nom_9___1dfdf7907": 5688, "15___CATEGORICAL___nom_9___1dff55cc1": 5689, "15___CATEGORICAL___nom_9___1e03f5703": 5690, "15___CATEGORICAL___nom_9___1e0a75a2f": 5691, "15___CATEGORICAL___nom_9___1e1fd2919": 5692, "15___CATEGORICAL___nom_9___1e208e9fe": 5693, "15___CATEGORICAL___nom_9___1e252c518": 5694, "15___CATEGORICAL___nom_9___1e2a457e4": 5695, "15___CATEGORICAL___nom_9___1e2fad041": 5696, "15___CATEGORICAL___nom_9___1e38b3e53": 5697, "15___CATEGORICAL___nom_9___1e3d4b4d1": 5698, "15___CATEGORICAL___nom_9___1e420caae": 5699, "15___CATEGORICAL___nom_9___1e427c604": 5700, "15___CATEGORICAL___nom_9___1e429d485": 5701, "15___CATEGORICAL___nom_9___1e42fbf53": 5702, "15___CATEGORICAL___nom_9___1e43c30af": 5703, "15___CATEGORICAL___nom_9___1e4546c9a": 5704, "15___CATEGORICAL___nom_9___1e55d71ac": 5705, "15___CATEGORICAL___nom_9___1e59122c4": 5706, "15___CATEGORICAL___nom_9___1e603df4f": 5707, "15___CATEGORICAL___nom_9___1e61274b5": 5708, "15___CATEGORICAL___nom_9___1e6ecf3b2": 5709, "15___CATEGORICAL___nom_9___1e72e2b5d": 5710, "15___CATEGORICAL___nom_9___1e757094c": 5711, "15___CATEGORICAL___nom_9___1e8baf00c": 5712, "15___CATEGORICAL___nom_9___1e8f31015": 5713, "15___CATEGORICAL___nom_9___1e939ba20": 5714, "15___CATEGORICAL___nom_9___1e98ab493": 5715, "15___CATEGORICAL___nom_9___1e99908c4": 5716, "15___CATEGORICAL___nom_9___1e9c49b27": 5717, "15___CATEGORICAL___nom_9___1e9ebdd12": 5718, "15___CATEGORICAL___nom_9___1ea20413b": 5719, "15___CATEGORICAL___nom_9___1ea30896e": 5720, "15___CATEGORICAL___nom_9___1ea94ef04": 5721, "15___CATEGORICAL___nom_9___1eb2a6420": 5722, "15___CATEGORICAL___nom_9___1eb6ed0cb": 5723, "15___CATEGORICAL___nom_9___1eb8db8b2": 5724, "15___CATEGORICAL___nom_9___1ebece8ae": 5725, "15___CATEGORICAL___nom_9___1ec5fcfc1": 5726, "15___CATEGORICAL___nom_9___1ec8e23cc": 5727, "15___CATEGORICAL___nom_9___1ecf036f8": 5728, "15___CATEGORICAL___nom_9___1ed29a77d": 5729, "15___CATEGORICAL___nom_9___1edc65cb2": 5730, "15___CATEGORICAL___nom_9___1edcaac98": 5731, "15___CATEGORICAL___nom_9___1eec63df5": 5732, "15___CATEGORICAL___nom_9___1eef23b14": 5733, "15___CATEGORICAL___nom_9___1ef39fc34": 5734, "15___CATEGORICAL___nom_9___1efb5b2d7": 5735, "15___CATEGORICAL___nom_9___1efbcb255": 5736, "15___CATEGORICAL___nom_9___1f063c9cc": 5737, "15___CATEGORICAL___nom_9___1f0bde8d4": 5738, "15___CATEGORICAL___nom_9___1f146ef81": 5739, "15___CATEGORICAL___nom_9___1f1961f92": 5740, "15___CATEGORICAL___nom_9___1f1cc717e": 5741, "15___CATEGORICAL___nom_9___1f237c4ff": 5742, "15___CATEGORICAL___nom_9___1f241e250": 5743, "15___CATEGORICAL___nom_9___1f25e0b12": 5744, "15___CATEGORICAL___nom_9___1f29f646d": 5745, "15___CATEGORICAL___nom_9___1f31c5cc1": 5746, "15___CATEGORICAL___nom_9___1f3593f24": 5747, "15___CATEGORICAL___nom_9___1f3fbfb98": 5748, "15___CATEGORICAL___nom_9___1f560f974": 5749, "15___CATEGORICAL___nom_9___1f57793f0": 5750, "15___CATEGORICAL___nom_9___1f5796ed1": 5751, "15___CATEGORICAL___nom_9___1f63e2131": 5752, "15___CATEGORICAL___nom_9___1f67f23f7": 5753, "15___CATEGORICAL___nom_9___1f6a5b560": 5754, "15___CATEGORICAL___nom_9___1f6a831c4": 5755, "15___CATEGORICAL___nom_9___1f72facdd": 5756, "15___CATEGORICAL___nom_9___1f739acea": 5757, "15___CATEGORICAL___nom_9___1f76005eb": 5758, "15___CATEGORICAL___nom_9___1f95801af": 5759, "15___CATEGORICAL___nom_9___1f96789a2": 5760, "15___CATEGORICAL___nom_9___1fa071b0b": 5761, "15___CATEGORICAL___nom_9___1fa0ac923": 5762, "15___CATEGORICAL___nom_9___1fa21c7a1": 5763, "15___CATEGORICAL___nom_9___1fa393721": 5764, "15___CATEGORICAL___nom_9___1fa422c7c": 5765, "15___CATEGORICAL___nom_9___1fabc647b": 5766, "15___CATEGORICAL___nom_9___1fb95aba0": 5767, "15___CATEGORICAL___nom_9___1fba7bcfe": 5768, "15___CATEGORICAL___nom_9___1fbd68795": 5769, "15___CATEGORICAL___nom_9___1fc67f53c": 5770, "15___CATEGORICAL___nom_9___1fc925f18": 5771, "15___CATEGORICAL___nom_9___1fcdbb6ac": 5772, "15___CATEGORICAL___nom_9___1fd319ac3": 5773, "15___CATEGORICAL___nom_9___1fd75270d": 5774, "15___CATEGORICAL___nom_9___1fd9636d7": 5775, "15___CATEGORICAL___nom_9___1fda3ab1e": 5776, "15___CATEGORICAL___nom_9___1fe8d1966": 5777, "15___CATEGORICAL___nom_9___1fe9b3f49": 5778, "15___CATEGORICAL___nom_9___1ff21a372": 5779, "15___CATEGORICAL___nom_9___1ff73de69": 5780, "15___CATEGORICAL___nom_9___1ff989601": 5781, "15___CATEGORICAL___nom_9___2003d1bcb": 5782, "15___CATEGORICAL___nom_9___2005b83b6": 5783, "15___CATEGORICAL___nom_9___20180b79e": 5784, "15___CATEGORICAL___nom_9___201faa447": 5785, "15___CATEGORICAL___nom_9___202789290": 5786, "15___CATEGORICAL___nom_9___20327bfb2": 5787, "15___CATEGORICAL___nom_9___203e6611e": 5788, "15___CATEGORICAL___nom_9___2041aef21": 5789, "15___CATEGORICAL___nom_9___2045842d6": 5790, "15___CATEGORICAL___nom_9___20463634f": 5791, "15___CATEGORICAL___nom_9___20472ec8e": 5792, "15___CATEGORICAL___nom_9___20538f541": 5793, "15___CATEGORICAL___nom_9___205573786": 5794, "15___CATEGORICAL___nom_9___205786be1": 5795, "15___CATEGORICAL___nom_9___2060fb1bd": 5796, "15___CATEGORICAL___nom_9___2069f0297": 5797, "15___CATEGORICAL___nom_9___206aed34f": 5798, "15___CATEGORICAL___nom_9___2073ad84c": 5799, "15___CATEGORICAL___nom_9___207420ee3": 5800, "15___CATEGORICAL___nom_9___207880a93": 5801, "15___CATEGORICAL___nom_9___207efd506": 5802, "15___CATEGORICAL___nom_9___208234848": 5803, "15___CATEGORICAL___nom_9___20855fee9": 5804, "15___CATEGORICAL___nom_9___20891ffbd": 5805, "15___CATEGORICAL___nom_9___208947c17": 5806, "15___CATEGORICAL___nom_9___208dbda1d": 5807, "15___CATEGORICAL___nom_9___209682892": 5808, "15___CATEGORICAL___nom_9___209a1e6b5": 5809, "15___CATEGORICAL___nom_9___209a76e14": 5810, "15___CATEGORICAL___nom_9___209d2c493": 5811, "15___CATEGORICAL___nom_9___20a3c01b9": 5812, "15___CATEGORICAL___nom_9___20a41ce31": 5813, "15___CATEGORICAL___nom_9___20aa11937": 5814, "15___CATEGORICAL___nom_9___20ae3cd84": 5815, "15___CATEGORICAL___nom_9___20b2ffe59": 5816, "15___CATEGORICAL___nom_9___20b87131d": 5817, "15___CATEGORICAL___nom_9___20bb84b09": 5818, "15___CATEGORICAL___nom_9___20bbe0a50": 5819, "15___CATEGORICAL___nom_9___20bdaf6e8": 5820, "15___CATEGORICAL___nom_9___20c1fc25a": 5821, "15___CATEGORICAL___nom_9___20e5a9550": 5822, "15___CATEGORICAL___nom_9___20f0a490a": 5823, "15___CATEGORICAL___nom_9___20f642a12": 5824, "15___CATEGORICAL___nom_9___20fed59fc": 5825, "15___CATEGORICAL___nom_9___210979cb5": 5826, "15___CATEGORICAL___nom_9___210eaafb3": 5827, "15___CATEGORICAL___nom_9___21116774e": 5828, "15___CATEGORICAL___nom_9___211249818": 5829, "15___CATEGORICAL___nom_9___211353d2e": 5830, "15___CATEGORICAL___nom_9___2126a5dda": 5831, "15___CATEGORICAL___nom_9___2127fafca": 5832, "15___CATEGORICAL___nom_9___212976a05": 5833, "15___CATEGORICAL___nom_9___212ecfa8d": 5834, "15___CATEGORICAL___nom_9___21396ff07": 5835, "15___CATEGORICAL___nom_9___213c78891": 5836, "15___CATEGORICAL___nom_9___21400a9be": 5837, "15___CATEGORICAL___nom_9___21414a4f1": 5838, "15___CATEGORICAL___nom_9___21496cda1": 5839, "15___CATEGORICAL___nom_9___214f1753d": 5840, "15___CATEGORICAL___nom_9___21501dcdf": 5841, "15___CATEGORICAL___nom_9___21513a866": 5842, "15___CATEGORICAL___nom_9___21571f68e": 5843, "15___CATEGORICAL___nom_9___21578b358": 5844, "15___CATEGORICAL___nom_9___215bbcef1": 5845, "15___CATEGORICAL___nom_9___215c429e7": 5846, "15___CATEGORICAL___nom_9___215fcdb27": 5847, "15___CATEGORICAL___nom_9___2169e52e8": 5848, "15___CATEGORICAL___nom_9___2171424dc": 5849, "15___CATEGORICAL___nom_9___217363a79": 5850, "15___CATEGORICAL___nom_9___217588dba": 5851, "15___CATEGORICAL___nom_9___217595935": 5852, "15___CATEGORICAL___nom_9___217d3377c": 5853, "15___CATEGORICAL___nom_9___218d434a6": 5854, "15___CATEGORICAL___nom_9___21938e4e7": 5855, "15___CATEGORICAL___nom_9___21959406b": 5856, "15___CATEGORICAL___nom_9___21a664f31": 5857, "15___CATEGORICAL___nom_9___21bd3be37": 5858, "15___CATEGORICAL___nom_9___21bdd5501": 5859, "15___CATEGORICAL___nom_9___21c11cdbc": 5860, "15___CATEGORICAL___nom_9___21c321035": 5861, "15___CATEGORICAL___nom_9___21cc1d92d": 5862, "15___CATEGORICAL___nom_9___21ccd97ef": 5863, "15___CATEGORICAL___nom_9___21dd8f659": 5864, "15___CATEGORICAL___nom_9___21ddbac33": 5865, "15___CATEGORICAL___nom_9___21dee6fd4": 5866, "15___CATEGORICAL___nom_9___21e46454e": 5867, "15___CATEGORICAL___nom_9___21e51e45e": 5868, "15___CATEGORICAL___nom_9___21eb6d2fa": 5869, "15___CATEGORICAL___nom_9___21ef6824e": 5870, "15___CATEGORICAL___nom_9___21f7bbb4d": 5871, "15___CATEGORICAL___nom_9___21f903291": 5872, "15___CATEGORICAL___nom_9___21fdc2588": 5873, "15___CATEGORICAL___nom_9___22020e658": 5874, "15___CATEGORICAL___nom_9___220ada385": 5875, "15___CATEGORICAL___nom_9___2212476ab": 5876, "15___CATEGORICAL___nom_9___2218f31c6": 5877, "15___CATEGORICAL___nom_9___221a983e9": 5878, "15___CATEGORICAL___nom_9___221ac5a93": 5879, "15___CATEGORICAL___nom_9___222d467f0": 5880, "15___CATEGORICAL___nom_9___223251ffb": 5881, "15___CATEGORICAL___nom_9___2232c2d2a": 5882, "15___CATEGORICAL___nom_9___223325778": 5883, "15___CATEGORICAL___nom_9___224171db6": 5884, "15___CATEGORICAL___nom_9___224216231": 5885, "15___CATEGORICAL___nom_9___2249f0142": 5886, "15___CATEGORICAL___nom_9___225293eaa": 5887, "15___CATEGORICAL___nom_9___2257000b0": 5888, "15___CATEGORICAL___nom_9___225b08906": 5889, "15___CATEGORICAL___nom_9___2260f20bc": 5890, "15___CATEGORICAL___nom_9___226f13e27": 5891, "15___CATEGORICAL___nom_9___226fce1bd": 5892, "15___CATEGORICAL___nom_9___22847efba": 5893, "15___CATEGORICAL___nom_9___2284d3f06": 5894, "15___CATEGORICAL___nom_9___22867e5c2": 5895, "15___CATEGORICAL___nom_9___22981380b": 5896, "15___CATEGORICAL___nom_9___229d6263d": 5897, "15___CATEGORICAL___nom_9___22a0e25f8": 5898, "15___CATEGORICAL___nom_9___22a5aedfa": 5899, "15___CATEGORICAL___nom_9___22af9e8d6": 5900, "15___CATEGORICAL___nom_9___22c00693a": 5901, "15___CATEGORICAL___nom_9___22c04e2e9": 5902, "15___CATEGORICAL___nom_9___22c0bc3dd": 5903, "15___CATEGORICAL___nom_9___22c955ba4": 5904, "15___CATEGORICAL___nom_9___22c9a1e1f": 5905, "15___CATEGORICAL___nom_9___22cf66761": 5906, "15___CATEGORICAL___nom_9___22cf6d09c": 5907, "15___CATEGORICAL___nom_9___22d06fa72": 5908, "15___CATEGORICAL___nom_9___22d6caa4b": 5909, "15___CATEGORICAL___nom_9___22db129fe": 5910, "15___CATEGORICAL___nom_9___22de6e18e": 5911, "15___CATEGORICAL___nom_9___22e16cb92": 5912, "15___CATEGORICAL___nom_9___22e653071": 5913, "15___CATEGORICAL___nom_9___22e8abea7": 5914, "15___CATEGORICAL___nom_9___22ef4920c": 5915, "15___CATEGORICAL___nom_9___22f01da25": 5916, "15___CATEGORICAL___nom_9___22f0dba69": 5917, "15___CATEGORICAL___nom_9___22f56fdc9": 5918, "15___CATEGORICAL___nom_9___22fd01546": 5919, "15___CATEGORICAL___nom_9___230c24e4e": 5920, "15___CATEGORICAL___nom_9___23161b7b3": 5921, "15___CATEGORICAL___nom_9___23174cd7d": 5922, "15___CATEGORICAL___nom_9___2322eaf2a": 5923, "15___CATEGORICAL___nom_9___2327169e3": 5924, "15___CATEGORICAL___nom_9___233381a6c": 5925, "15___CATEGORICAL___nom_9___23352375c": 5926, "15___CATEGORICAL___nom_9___2338eec0a": 5927, "15___CATEGORICAL___nom_9___233941114": 5928, "15___CATEGORICAL___nom_9___23420401b": 5929, "15___CATEGORICAL___nom_9___234dea393": 5930, "15___CATEGORICAL___nom_9___234f89316": 5931, "15___CATEGORICAL___nom_9___234fd76a7": 5932, "15___CATEGORICAL___nom_9___2366a5760": 5933, "15___CATEGORICAL___nom_9___23692a9c2": 5934, "15___CATEGORICAL___nom_9___2370c8dde": 5935, "15___CATEGORICAL___nom_9___238cb3e6d": 5936, "15___CATEGORICAL___nom_9___239352b00": 5937, "15___CATEGORICAL___nom_9___23968533d": 5938, "15___CATEGORICAL___nom_9___2397160d9": 5939, "15___CATEGORICAL___nom_9___23a02c9e0": 5940, "15___CATEGORICAL___nom_9___23a0524e4": 5941, "15___CATEGORICAL___nom_9___23a0a8c28": 5942, "15___CATEGORICAL___nom_9___23a1dcdcb": 5943, "15___CATEGORICAL___nom_9___23b06b412": 5944, "15___CATEGORICAL___nom_9___23b32e47f": 5945, "15___CATEGORICAL___nom_9___23b7272de": 5946, "15___CATEGORICAL___nom_9___23b7bea04": 5947, "15___CATEGORICAL___nom_9___23bc7322c": 5948, "15___CATEGORICAL___nom_9___23c53f8c7": 5949, "15___CATEGORICAL___nom_9___23c611c01": 5950, "15___CATEGORICAL___nom_9___23cd65412": 5951, "15___CATEGORICAL___nom_9___23cf1ae66": 5952, "15___CATEGORICAL___nom_9___23d0e5e21": 5953, "15___CATEGORICAL___nom_9___23dd843f0": 5954, "15___CATEGORICAL___nom_9___23deb52c3": 5955, "15___CATEGORICAL___nom_9___23fda8301": 5956, "15___CATEGORICAL___nom_9___24012a0da": 5957, "15___CATEGORICAL___nom_9___240f71883": 5958, "15___CATEGORICAL___nom_9___2414a04be": 5959, "15___CATEGORICAL___nom_9___2419f75df": 5960, "15___CATEGORICAL___nom_9___241c3c18f": 5961, "15___CATEGORICAL___nom_9___241ede9c1": 5962, "15___CATEGORICAL___nom_9___242096d7e": 5963, "15___CATEGORICAL___nom_9___242460243": 5964, "15___CATEGORICAL___nom_9___24279374c": 5965, "15___CATEGORICAL___nom_9___242c22a63": 5966, "15___CATEGORICAL___nom_9___242e5cb6b": 5967, "15___CATEGORICAL___nom_9___2432486b5": 5968, "15___CATEGORICAL___nom_9___2435bd4f6": 5969, "15___CATEGORICAL___nom_9___243d66fd9": 5970, "15___CATEGORICAL___nom_9___2443e319c": 5971, "15___CATEGORICAL___nom_9___244650795": 5972, "15___CATEGORICAL___nom_9___244d94206": 5973, "15___CATEGORICAL___nom_9___244f3d156": 5974, "15___CATEGORICAL___nom_9___245007a3b": 5975, "15___CATEGORICAL___nom_9___2452cca09": 5976, "15___CATEGORICAL___nom_9___24532cd48": 5977, "15___CATEGORICAL___nom_9___24594ad9d": 5978, "15___CATEGORICAL___nom_9___245bce63b": 5979, "15___CATEGORICAL___nom_9___24621d0ba": 5980, "15___CATEGORICAL___nom_9___24708272a": 5981, "15___CATEGORICAL___nom_9___2471b81c9": 5982, "15___CATEGORICAL___nom_9___247ecf382": 5983, "15___CATEGORICAL___nom_9___2480ce2b2": 5984, "15___CATEGORICAL___nom_9___2483f1766": 5985, "15___CATEGORICAL___nom_9___2484dd61a": 5986, "15___CATEGORICAL___nom_9___248857e80": 5987, "15___CATEGORICAL___nom_9___248a210cd": 5988, "15___CATEGORICAL___nom_9___248bc2b6f": 5989, "15___CATEGORICAL___nom_9___249cf8513": 5990, "15___CATEGORICAL___nom_9___24a309978": 5991, "15___CATEGORICAL___nom_9___24a36dc7b": 5992, "15___CATEGORICAL___nom_9___24a695e6f": 5993, "15___CATEGORICAL___nom_9___24a9d28cd": 5994, "15___CATEGORICAL___nom_9___24aaff389": 5995, "15___CATEGORICAL___nom_9___24b90dbc9": 5996, "15___CATEGORICAL___nom_9___24bac03c9": 5997, "15___CATEGORICAL___nom_9___24bf7ceb3": 5998, "15___CATEGORICAL___nom_9___24c20b41e": 5999, "15___CATEGORICAL___nom_9___24c214114": 6000, "15___CATEGORICAL___nom_9___24ce24cae": 6001, "15___CATEGORICAL___nom_9___24cfc9ea3": 6002, "15___CATEGORICAL___nom_9___24d0f1098": 6003, "15___CATEGORICAL___nom_9___24d91cc25": 6004, "15___CATEGORICAL___nom_9___24dcae1f9": 6005, "15___CATEGORICAL___nom_9___24e2a85d6": 6006, "15___CATEGORICAL___nom_9___24e51899c": 6007, "15___CATEGORICAL___nom_9___24e5e1eec": 6008, "15___CATEGORICAL___nom_9___24fa8c96b": 6009, "15___CATEGORICAL___nom_9___24ff7f077": 6010, "15___CATEGORICAL___nom_9___250111ccb": 6011, "15___CATEGORICAL___nom_9___2506fd640": 6012, "15___CATEGORICAL___nom_9___251285d30": 6013, "15___CATEGORICAL___nom_9___251ae297b": 6014, "15___CATEGORICAL___nom_9___251c49904": 6015, "15___CATEGORICAL___nom_9___251fb24f2": 6016, "15___CATEGORICAL___nom_9___25232431b": 6017, "15___CATEGORICAL___nom_9___25258710f": 6018, "15___CATEGORICAL___nom_9___25280c2ee": 6019, "15___CATEGORICAL___nom_9___252a513c1": 6020, "15___CATEGORICAL___nom_9___2533756c6": 6021, "15___CATEGORICAL___nom_9___2539fb93d": 6022, "15___CATEGORICAL___nom_9___25410866b": 6023, "15___CATEGORICAL___nom_9___254361222": 6024, "15___CATEGORICAL___nom_9___25457f698": 6025, "15___CATEGORICAL___nom_9___25479dd18": 6026, "15___CATEGORICAL___nom_9___25493f6d8": 6027, "15___CATEGORICAL___nom_9___254ea0f09": 6028, "15___CATEGORICAL___nom_9___2559acac4": 6029, "15___CATEGORICAL___nom_9___2560a68c9": 6030, "15___CATEGORICAL___nom_9___256332f23": 6031, "15___CATEGORICAL___nom_9___256e90cda": 6032, "15___CATEGORICAL___nom_9___2572e1483": 6033, "15___CATEGORICAL___nom_9___2578e1ae5": 6034, "15___CATEGORICAL___nom_9___257c0b36f": 6035, "15___CATEGORICAL___nom_9___25852d3a9": 6036, "15___CATEGORICAL___nom_9___2587ae392": 6037, "15___CATEGORICAL___nom_9___2587e4eb4": 6038, "15___CATEGORICAL___nom_9___258abc186": 6039, "15___CATEGORICAL___nom_9___2590efc39": 6040, "15___CATEGORICAL___nom_9___2593be44c": 6041, "15___CATEGORICAL___nom_9___2599425e9": 6042, "15___CATEGORICAL___nom_9___25aa6f3b5": 6043, "15___CATEGORICAL___nom_9___25ab29047": 6044, "15___CATEGORICAL___nom_9___25acc955a": 6045, "15___CATEGORICAL___nom_9___25ae122df": 6046, "15___CATEGORICAL___nom_9___25ae6594e": 6047, "15___CATEGORICAL___nom_9___25afb2841": 6048, "15___CATEGORICAL___nom_9___25b2bf89a": 6049, "15___CATEGORICAL___nom_9___25b6eef9c": 6050, "15___CATEGORICAL___nom_9___25b93b092": 6051, "15___CATEGORICAL___nom_9___25be46671": 6052, "15___CATEGORICAL___nom_9___25ccbcbbb": 6053, "15___CATEGORICAL___nom_9___25cd21374": 6054, "15___CATEGORICAL___nom_9___25df949ae": 6055, "15___CATEGORICAL___nom_9___25e13de80": 6056, "15___CATEGORICAL___nom_9___25e47a294": 6057, "15___CATEGORICAL___nom_9___25e6c6b68": 6058, "15___CATEGORICAL___nom_9___25e81c11f": 6059, "15___CATEGORICAL___nom_9___25ea71a09": 6060, "15___CATEGORICAL___nom_9___25fec866c": 6061, "15___CATEGORICAL___nom_9___25ffbf0c4": 6062, "15___CATEGORICAL___nom_9___26000c57f": 6063, "15___CATEGORICAL___nom_9___2603544bf": 6064, "15___CATEGORICAL___nom_9___263bed53b": 6065, "15___CATEGORICAL___nom_9___263c264d9": 6066, "15___CATEGORICAL___nom_9___264293b18": 6067, "15___CATEGORICAL___nom_9___264e54c06": 6068, "15___CATEGORICAL___nom_9___264f31edc": 6069, "15___CATEGORICAL___nom_9___26519801f": 6070, "15___CATEGORICAL___nom_9___265a0ffd3": 6071, "15___CATEGORICAL___nom_9___265bbac35": 6072, "15___CATEGORICAL___nom_9___265e333b7": 6073, "15___CATEGORICAL___nom_9___2666819b5": 6074, "15___CATEGORICAL___nom_9___2668255cf": 6075, "15___CATEGORICAL___nom_9___26703bdd9": 6076, "15___CATEGORICAL___nom_9___26742abe4": 6077, "15___CATEGORICAL___nom_9___2686aaffc": 6078, "15___CATEGORICAL___nom_9___268aa26bc": 6079, "15___CATEGORICAL___nom_9___268ca1645": 6080, "15___CATEGORICAL___nom_9___2694b812e": 6081, "15___CATEGORICAL___nom_9___269eab8dd": 6082, "15___CATEGORICAL___nom_9___26a5be54c": 6083, "15___CATEGORICAL___nom_9___26a8e5a29": 6084, "15___CATEGORICAL___nom_9___26a922278": 6085, "15___CATEGORICAL___nom_9___26b0fe39c": 6086, "15___CATEGORICAL___nom_9___26b62a9e3": 6087, "15___CATEGORICAL___nom_9___26bc9bd6a": 6088, "15___CATEGORICAL___nom_9___26d13086c": 6089, "15___CATEGORICAL___nom_9___26d8149f6": 6090, "15___CATEGORICAL___nom_9___26da6f02b": 6091, "15___CATEGORICAL___nom_9___26e51923f": 6092, "15___CATEGORICAL___nom_9___26f56d2a9": 6093, "15___CATEGORICAL___nom_9___26fabafee": 6094, "15___CATEGORICAL___nom_9___2704ef3b8": 6095, "15___CATEGORICAL___nom_9___2707bfaa1": 6096, "15___CATEGORICAL___nom_9___2709d5e3e": 6097, "15___CATEGORICAL___nom_9___270e0a787": 6098, "15___CATEGORICAL___nom_9___270f2b817": 6099, "15___CATEGORICAL___nom_9___271d6bb19": 6100, "15___CATEGORICAL___nom_9___2720cf342": 6101, "15___CATEGORICAL___nom_9___27218c8bf": 6102, "15___CATEGORICAL___nom_9___27351cef0": 6103, "15___CATEGORICAL___nom_9___2739795da": 6104, "15___CATEGORICAL___nom_9___2744e07e6": 6105, "15___CATEGORICAL___nom_9___274e00caa": 6106, "15___CATEGORICAL___nom_9___274fd29af": 6107, "15___CATEGORICAL___nom_9___275044863": 6108, "15___CATEGORICAL___nom_9___27560dd68": 6109, "15___CATEGORICAL___nom_9___275f3e219": 6110, "15___CATEGORICAL___nom_9___275f9bcad": 6111, "15___CATEGORICAL___nom_9___276367107": 6112, "15___CATEGORICAL___nom_9___276525ee0": 6113, "15___CATEGORICAL___nom_9___2767d007b": 6114, "15___CATEGORICAL___nom_9___2767eb573": 6115, "15___CATEGORICAL___nom_9___277141f55": 6116, "15___CATEGORICAL___nom_9___2776cf8cc": 6117, "15___CATEGORICAL___nom_9___2778e9fb4": 6118, "15___CATEGORICAL___nom_9___277ba30e0": 6119, "15___CATEGORICAL___nom_9___278219ab4": 6120, "15___CATEGORICAL___nom_9___27844d4c7": 6121, "15___CATEGORICAL___nom_9___27845c7e7": 6122, "15___CATEGORICAL___nom_9___2788482f6": 6123, "15___CATEGORICAL___nom_9___278a10faf": 6124, "15___CATEGORICAL___nom_9___278c99c4b": 6125, "15___CATEGORICAL___nom_9___279015d77": 6126, "15___CATEGORICAL___nom_9___279ea7e28": 6127, "15___CATEGORICAL___nom_9___27a228369": 6128, "15___CATEGORICAL___nom_9___27a74fd20": 6129, "15___CATEGORICAL___nom_9___27aaab9cc": 6130, "15___CATEGORICAL___nom_9___27bbd2822": 6131, "15___CATEGORICAL___nom_9___27bc1e875": 6132, "15___CATEGORICAL___nom_9___27c01d16b": 6133, "15___CATEGORICAL___nom_9___27c271936": 6134, "15___CATEGORICAL___nom_9___27c2b9712": 6135, "15___CATEGORICAL___nom_9___27d292925": 6136, "15___CATEGORICAL___nom_9___27d830d40": 6137, "15___CATEGORICAL___nom_9___27d882d78": 6138, "15___CATEGORICAL___nom_9___27d932e0a": 6139, "15___CATEGORICAL___nom_9___27e1d13a9": 6140, "15___CATEGORICAL___nom_9___27eaec55a": 6141, "15___CATEGORICAL___nom_9___27f56ba8e": 6142, "15___CATEGORICAL___nom_9___27fe0bd65": 6143, "15___CATEGORICAL___nom_9___2809ad73d": 6144, "15___CATEGORICAL___nom_9___280f21d68": 6145, "15___CATEGORICAL___nom_9___281c19219": 6146, "15___CATEGORICAL___nom_9___28248c941": 6147, "15___CATEGORICAL___nom_9___282521897": 6148, "15___CATEGORICAL___nom_9___28278d68f": 6149, "15___CATEGORICAL___nom_9___2831e2219": 6150, "15___CATEGORICAL___nom_9___2833d2686": 6151, "15___CATEGORICAL___nom_9___283a4e24a": 6152, "15___CATEGORICAL___nom_9___283fdf6b4": 6153, "15___CATEGORICAL___nom_9___2842f795e": 6154, "15___CATEGORICAL___nom_9___2846bb420": 6155, "15___CATEGORICAL___nom_9___2846d79cd": 6156, "15___CATEGORICAL___nom_9___284a6ea9b": 6157, "15___CATEGORICAL___nom_9___284b92eea": 6158, "15___CATEGORICAL___nom_9___284c23ec5": 6159, "15___CATEGORICAL___nom_9___284f5c321": 6160, "15___CATEGORICAL___nom_9___2850297d8": 6161, "15___CATEGORICAL___nom_9___2851d5972": 6162, "15___CATEGORICAL___nom_9___2852de2d5": 6163, "15___CATEGORICAL___nom_9___285771075": 6164, "15___CATEGORICAL___nom_9___285e3d706": 6165, "15___CATEGORICAL___nom_9___285f847d6": 6166, "15___CATEGORICAL___nom_9___2861428b5": 6167, "15___CATEGORICAL___nom_9___286d02453": 6168, "15___CATEGORICAL___nom_9___2870d90b9": 6169, "15___CATEGORICAL___nom_9___287109623": 6170, "15___CATEGORICAL___nom_9___287aecbaf": 6171, "15___CATEGORICAL___nom_9___2883f1fde": 6172, "15___CATEGORICAL___nom_9___2888ffbcc": 6173, "15___CATEGORICAL___nom_9___28abc0433": 6174, "15___CATEGORICAL___nom_9___28acd7d63": 6175, "15___CATEGORICAL___nom_9___28b295de8": 6176, "15___CATEGORICAL___nom_9___28b7e2cd3": 6177, "15___CATEGORICAL___nom_9___28b8d7c34": 6178, "15___CATEGORICAL___nom_9___28bad1f4d": 6179, "15___CATEGORICAL___nom_9___28bc3c503": 6180, "15___CATEGORICAL___nom_9___28c347c9d": 6181, "15___CATEGORICAL___nom_9___28c61ad29": 6182, "15___CATEGORICAL___nom_9___28cfb1c7b": 6183, "15___CATEGORICAL___nom_9___28d293598": 6184, "15___CATEGORICAL___nom_9___28d62b5bb": 6185, "15___CATEGORICAL___nom_9___28da5f873": 6186, "15___CATEGORICAL___nom_9___28db700b1": 6187, "15___CATEGORICAL___nom_9___28e6d0043": 6188, "15___CATEGORICAL___nom_9___28f8684a2": 6189, "15___CATEGORICAL___nom_9___28ff2ec97": 6190, "15___CATEGORICAL___nom_9___29061a0eb": 6191, "15___CATEGORICAL___nom_9___290776f73": 6192, "15___CATEGORICAL___nom_9___2907d629d": 6193, "15___CATEGORICAL___nom_9___290a64fd9": 6194, "15___CATEGORICAL___nom_9___2916e09cb": 6195, "15___CATEGORICAL___nom_9___291add992": 6196, "15___CATEGORICAL___nom_9___291d33eed": 6197, "15___CATEGORICAL___nom_9___29224dd39": 6198, "15___CATEGORICAL___nom_9___2922b0e3b": 6199, "15___CATEGORICAL___nom_9___2937068a0": 6200, "15___CATEGORICAL___nom_9___29378cb05": 6201, "15___CATEGORICAL___nom_9___29416a6af": 6202, "15___CATEGORICAL___nom_9___294477098": 6203, "15___CATEGORICAL___nom_9___2948daa33": 6204, "15___CATEGORICAL___nom_9___2949737a9": 6205, "15___CATEGORICAL___nom_9___294a9a226": 6206, "15___CATEGORICAL___nom_9___294e156dc": 6207, "15___CATEGORICAL___nom_9___295036b6a": 6208, "15___CATEGORICAL___nom_9___295134864": 6209, "15___CATEGORICAL___nom_9___295dc5c43": 6210, "15___CATEGORICAL___nom_9___297abad9c": 6211, "15___CATEGORICAL___nom_9___297ed40fa": 6212, "15___CATEGORICAL___nom_9___29875e692": 6213, "15___CATEGORICAL___nom_9___2989fd6f9": 6214, "15___CATEGORICAL___nom_9___298dd4849": 6215, "15___CATEGORICAL___nom_9___299478ece": 6216, "15___CATEGORICAL___nom_9___299c72df8": 6217, "15___CATEGORICAL___nom_9___29a286917": 6218, "15___CATEGORICAL___nom_9___29a738267": 6219, "15___CATEGORICAL___nom_9___29a89e48d": 6220, "15___CATEGORICAL___nom_9___29a9ab66e": 6221, "15___CATEGORICAL___nom_9___29aa36e2a": 6222, "15___CATEGORICAL___nom_9___29aaa0e8f": 6223, "15___CATEGORICAL___nom_9___29c646311": 6224, "15___CATEGORICAL___nom_9___29cc51609": 6225, "15___CATEGORICAL___nom_9___29ccc606e": 6226, "15___CATEGORICAL___nom_9___29d86d935": 6227, "15___CATEGORICAL___nom_9___29e39adc1": 6228, "15___CATEGORICAL___nom_9___29e3ce34e": 6229, "15___CATEGORICAL___nom_9___29f09c508": 6230, "15___CATEGORICAL___nom_9___29f15aae9": 6231, "15___CATEGORICAL___nom_9___29f37a06f": 6232, "15___CATEGORICAL___nom_9___29fb11a3c": 6233, "15___CATEGORICAL___nom_9___2a01efeb6": 6234, "15___CATEGORICAL___nom_9___2a0574582": 6235, "15___CATEGORICAL___nom_9___2a13a01ea": 6236, "15___CATEGORICAL___nom_9___2a1e3b7cf": 6237, "15___CATEGORICAL___nom_9___2a1f83216": 6238, "15___CATEGORICAL___nom_9___2a1fc8eaa": 6239, "15___CATEGORICAL___nom_9___2a38052ec": 6240, "15___CATEGORICAL___nom_9___2a51bfcd4": 6241, "15___CATEGORICAL___nom_9___2a5675e23": 6242, "15___CATEGORICAL___nom_9___2a61f0054": 6243, "15___CATEGORICAL___nom_9___2a67d0375": 6244, "15___CATEGORICAL___nom_9___2a6a74fa9": 6245, "15___CATEGORICAL___nom_9___2a6ea0113": 6246, "15___CATEGORICAL___nom_9___2a6f7ac91": 6247, "15___CATEGORICAL___nom_9___2a716f52d": 6248, "15___CATEGORICAL___nom_9___2a79258d0": 6249, "15___CATEGORICAL___nom_9___2a82fd361": 6250, "15___CATEGORICAL___nom_9___2a8894bb8": 6251, "15___CATEGORICAL___nom_9___2a902328f": 6252, "15___CATEGORICAL___nom_9___2a915af6d": 6253, "15___CATEGORICAL___nom_9___2a9b9e3d8": 6254, "15___CATEGORICAL___nom_9___2aa35f17b": 6255, "15___CATEGORICAL___nom_9___2aa4eb9ad": 6256, "15___CATEGORICAL___nom_9___2aa7edf98": 6257, "15___CATEGORICAL___nom_9___2ab04ed9f": 6258, "15___CATEGORICAL___nom_9___2ab23de22": 6259, "15___CATEGORICAL___nom_9___2ab355f6c": 6260, "15___CATEGORICAL___nom_9___2ab8303f8": 6261, "15___CATEGORICAL___nom_9___2ac04ae80": 6262, "15___CATEGORICAL___nom_9___2ac0719a2": 6263, "15___CATEGORICAL___nom_9___2ac29ce83": 6264, "15___CATEGORICAL___nom_9___2ac936852": 6265, "15___CATEGORICAL___nom_9___2ad2e47d8": 6266, "15___CATEGORICAL___nom_9___2ad7329c2": 6267, "15___CATEGORICAL___nom_9___2ada60240": 6268, "15___CATEGORICAL___nom_9___2adbc74ae": 6269, "15___CATEGORICAL___nom_9___2adef65f1": 6270, "15___CATEGORICAL___nom_9___2af9cd822": 6271, "15___CATEGORICAL___nom_9___2b08acc20": 6272, "15___CATEGORICAL___nom_9___2b1330c3e": 6273, "15___CATEGORICAL___nom_9___2b16b66fe": 6274, "15___CATEGORICAL___nom_9___2b17e60b6": 6275, "15___CATEGORICAL___nom_9___2b1df14aa": 6276, "15___CATEGORICAL___nom_9___2b20d3dcc": 6277, "15___CATEGORICAL___nom_9___2b2c84db8": 6278, "15___CATEGORICAL___nom_9___2b303634c": 6279, "15___CATEGORICAL___nom_9___2b30ddd3d": 6280, "15___CATEGORICAL___nom_9___2b340644f": 6281, "15___CATEGORICAL___nom_9___2b415c02e": 6282, "15___CATEGORICAL___nom_9___2b41c4073": 6283, "15___CATEGORICAL___nom_9___2b48ecaa7": 6284, "15___CATEGORICAL___nom_9___2b4a106b7": 6285, "15___CATEGORICAL___nom_9___2b4e3e927": 6286, "15___CATEGORICAL___nom_9___2b5fe7487": 6287, "15___CATEGORICAL___nom_9___2b61d20e7": 6288, "15___CATEGORICAL___nom_9___2b64bdc73": 6289, "15___CATEGORICAL___nom_9___2b6b90741": 6290, "15___CATEGORICAL___nom_9___2b7212b50": 6291, "15___CATEGORICAL___nom_9___2b780b992": 6292, "15___CATEGORICAL___nom_9___2b797987d": 6293, "15___CATEGORICAL___nom_9___2b7da409d": 6294, "15___CATEGORICAL___nom_9___2b930f922": 6295, "15___CATEGORICAL___nom_9___2b9698958": 6296, "15___CATEGORICAL___nom_9___2b9ec6cae": 6297, "15___CATEGORICAL___nom_9___2ba4822aa": 6298, "15___CATEGORICAL___nom_9___2baa27545": 6299, "15___CATEGORICAL___nom_9___2bb0f1947": 6300, "15___CATEGORICAL___nom_9___2bc0ffb54": 6301, "15___CATEGORICAL___nom_9___2bcdfeceb": 6302, "15___CATEGORICAL___nom_9___2bd264012": 6303, "15___CATEGORICAL___nom_9___2bd4f366b": 6304, "15___CATEGORICAL___nom_9___2be42caf1": 6305, "15___CATEGORICAL___nom_9___2bf5b6577": 6306, "15___CATEGORICAL___nom_9___2bf5df371": 6307, "15___CATEGORICAL___nom_9___2bf99e5c8": 6308, "15___CATEGORICAL___nom_9___2c1650be1": 6309, "15___CATEGORICAL___nom_9___2c1bd0c09": 6310, "15___CATEGORICAL___nom_9___2c1fc84fe": 6311, "15___CATEGORICAL___nom_9___2c3156ce6": 6312, "15___CATEGORICAL___nom_9___2c3d78b0d": 6313, "15___CATEGORICAL___nom_9___2c4b71fd6": 6314, "15___CATEGORICAL___nom_9___2c4c65257": 6315, "15___CATEGORICAL___nom_9___2c5185016": 6316, "15___CATEGORICAL___nom_9___2c838ef71": 6317, "15___CATEGORICAL___nom_9___2c84c245d": 6318, "15___CATEGORICAL___nom_9___2c8e2af32": 6319, "15___CATEGORICAL___nom_9___2c9433f72": 6320, "15___CATEGORICAL___nom_9___2c9910305": 6321, "15___CATEGORICAL___nom_9___2ca16a193": 6322, "15___CATEGORICAL___nom_9___2ca464663": 6323, "15___CATEGORICAL___nom_9___2ca9ec341": 6324, "15___CATEGORICAL___nom_9___2cad5f2e7": 6325, "15___CATEGORICAL___nom_9___2cb3e36ad": 6326, "15___CATEGORICAL___nom_9___2cb4666f7": 6327, "15___CATEGORICAL___nom_9___2cc5cceeb": 6328, "15___CATEGORICAL___nom_9___2ccbe0a27": 6329, "15___CATEGORICAL___nom_9___2cd593221": 6330, "15___CATEGORICAL___nom_9___2ce508fc6": 6331, "15___CATEGORICAL___nom_9___2ce7706df": 6332, "15___CATEGORICAL___nom_9___2ceca3267": 6333, "15___CATEGORICAL___nom_9___2cf68844c": 6334, "15___CATEGORICAL___nom_9___2d002b925": 6335, "15___CATEGORICAL___nom_9___2d0157e20": 6336, "15___CATEGORICAL___nom_9___2d0956106": 6337, "15___CATEGORICAL___nom_9___2d10b5ae7": 6338, "15___CATEGORICAL___nom_9___2d119b624": 6339, "15___CATEGORICAL___nom_9___2d143cb9e": 6340, "15___CATEGORICAL___nom_9___2d183dbb9": 6341, "15___CATEGORICAL___nom_9___2d1a17b6d": 6342, "15___CATEGORICAL___nom_9___2d2eaca33": 6343, "15___CATEGORICAL___nom_9___2d317653a": 6344, "15___CATEGORICAL___nom_9___2d3aa0e86": 6345, "15___CATEGORICAL___nom_9___2d46b8020": 6346, "15___CATEGORICAL___nom_9___2d475ef0c": 6347, "15___CATEGORICAL___nom_9___2d4aeefbb": 6348, "15___CATEGORICAL___nom_9___2d53a379a": 6349, "15___CATEGORICAL___nom_9___2d545925e": 6350, "15___CATEGORICAL___nom_9___2d57b9da7": 6351, "15___CATEGORICAL___nom_9___2d5d2e7df": 6352, "15___CATEGORICAL___nom_9___2d5e1a033": 6353, "15___CATEGORICAL___nom_9___2d610f52c": 6354, "15___CATEGORICAL___nom_9___2d750471f": 6355, "15___CATEGORICAL___nom_9___2d771ce75": 6356, "15___CATEGORICAL___nom_9___2d794ad55": 6357, "15___CATEGORICAL___nom_9___2d82bfd6a": 6358, "15___CATEGORICAL___nom_9___2d88acb2d": 6359, "15___CATEGORICAL___nom_9___2d8e55f72": 6360, "15___CATEGORICAL___nom_9___2d9fb98f3": 6361, "15___CATEGORICAL___nom_9___2da8c4eb5": 6362, "15___CATEGORICAL___nom_9___2db14626d": 6363, "15___CATEGORICAL___nom_9___2db20e89d": 6364, "15___CATEGORICAL___nom_9___2db6ec809": 6365, "15___CATEGORICAL___nom_9___2db74d1fa": 6366, "15___CATEGORICAL___nom_9___2dbb2b661": 6367, "15___CATEGORICAL___nom_9___2dbda5cf3": 6368, "15___CATEGORICAL___nom_9___2dcaf711f": 6369, "15___CATEGORICAL___nom_9___2dd17ed11": 6370, "15___CATEGORICAL___nom_9___2dd1ec031": 6371, "15___CATEGORICAL___nom_9___2dd322ff0": 6372, "15___CATEGORICAL___nom_9___2dd4f7fc8": 6373, "15___CATEGORICAL___nom_9___2ddbf387e": 6374, "15___CATEGORICAL___nom_9___2de111b4b": 6375, "15___CATEGORICAL___nom_9___2de209544": 6376, "15___CATEGORICAL___nom_9___2de250039": 6377, "15___CATEGORICAL___nom_9___2de3641e3": 6378, "15___CATEGORICAL___nom_9___2de3f378f": 6379, "15___CATEGORICAL___nom_9___2dea55ae2": 6380, "15___CATEGORICAL___nom_9___2decf333d": 6381, "15___CATEGORICAL___nom_9___2df5a3bec": 6382, "15___CATEGORICAL___nom_9___2df77836b": 6383, "15___CATEGORICAL___nom_9___2dfcda2e4": 6384, "15___CATEGORICAL___nom_9___2e06ee962": 6385, "15___CATEGORICAL___nom_9___2e0c2032c": 6386, "15___CATEGORICAL___nom_9___2e143fa1e": 6387, "15___CATEGORICAL___nom_9___2e1e504d9": 6388, "15___CATEGORICAL___nom_9___2e2074b05": 6389, "15___CATEGORICAL___nom_9___2e22dbe82": 6390, "15___CATEGORICAL___nom_9___2e23d749c": 6391, "15___CATEGORICAL___nom_9___2e241bfc9": 6392, "15___CATEGORICAL___nom_9___2e2562e11": 6393, "15___CATEGORICAL___nom_9___2e289f741": 6394, "15___CATEGORICAL___nom_9___2e6ca3c35": 6395, "15___CATEGORICAL___nom_9___2e7194705": 6396, "15___CATEGORICAL___nom_9___2e7a831ab": 6397, "15___CATEGORICAL___nom_9___2e7a9c2b6": 6398, "15___CATEGORICAL___nom_9___2e810518b": 6399, "15___CATEGORICAL___nom_9___2e839288c": 6400, "15___CATEGORICAL___nom_9___2e84d1d9d": 6401, "15___CATEGORICAL___nom_9___2e851709b": 6402, "15___CATEGORICAL___nom_9___2e86a26fd": 6403, "15___CATEGORICAL___nom_9___2e86c16d4": 6404, "15___CATEGORICAL___nom_9___2e89cd6fe": 6405, "15___CATEGORICAL___nom_9___2e91661be": 6406, "15___CATEGORICAL___nom_9___2e91f0554": 6407, "15___CATEGORICAL___nom_9___2e947f252": 6408, "15___CATEGORICAL___nom_9___2e9813674": 6409, "15___CATEGORICAL___nom_9___2e9f3687f": 6410, "15___CATEGORICAL___nom_9___2ea8810fa": 6411, "15___CATEGORICAL___nom_9___2ea9c7ee6": 6412, "15___CATEGORICAL___nom_9___2eafaa3df": 6413, "15___CATEGORICAL___nom_9___2eafd33c5": 6414, "15___CATEGORICAL___nom_9___2ec53d6a9": 6415, "15___CATEGORICAL___nom_9___2ec776ab0": 6416, "15___CATEGORICAL___nom_9___2ecb72388": 6417, "15___CATEGORICAL___nom_9___2ecba0f2b": 6418, "15___CATEGORICAL___nom_9___2ed0fa574": 6419, "15___CATEGORICAL___nom_9___2ed224c63": 6420, "15___CATEGORICAL___nom_9___2ed7deaee": 6421, "15___CATEGORICAL___nom_9___2edb4c067": 6422, "15___CATEGORICAL___nom_9___2edd18d12": 6423, "15___CATEGORICAL___nom_9___2ee8897c6": 6424, "15___CATEGORICAL___nom_9___2eeb88041": 6425, "15___CATEGORICAL___nom_9___2eece9a80": 6426, "15___CATEGORICAL___nom_9___2eedd2784": 6427, "15___CATEGORICAL___nom_9___2ef79d9c0": 6428, "15___CATEGORICAL___nom_9___2efa65ad0": 6429, "15___CATEGORICAL___nom_9___2efc0ce6e": 6430, "15___CATEGORICAL___nom_9___2efcfee5b": 6431, "15___CATEGORICAL___nom_9___2f019b67a": 6432, "15___CATEGORICAL___nom_9___2f0560edb": 6433, "15___CATEGORICAL___nom_9___2f16ac495": 6434, "15___CATEGORICAL___nom_9___2f1b0d4ae": 6435, "15___CATEGORICAL___nom_9___2f2d66e15": 6436, "15___CATEGORICAL___nom_9___2f3491809": 6437, "15___CATEGORICAL___nom_9___2f3c84403": 6438, "15___CATEGORICAL___nom_9___2f3e52798": 6439, "15___CATEGORICAL___nom_9___2f40a1a71": 6440, "15___CATEGORICAL___nom_9___2f423506a": 6441, "15___CATEGORICAL___nom_9___2f472dd40": 6442, "15___CATEGORICAL___nom_9___2f4cb3d51": 6443, "15___CATEGORICAL___nom_9___2f51954ff": 6444, "15___CATEGORICAL___nom_9___2f51cf430": 6445, "15___CATEGORICAL___nom_9___2f51fe15f": 6446, "15___CATEGORICAL___nom_9___2f565e4b4": 6447, "15___CATEGORICAL___nom_9___2f64630cf": 6448, "15___CATEGORICAL___nom_9___2f6df7158": 6449, "15___CATEGORICAL___nom_9___2f6fdc7a2": 6450, "15___CATEGORICAL___nom_9___2f7925df7": 6451, "15___CATEGORICAL___nom_9___2f7f80aa3": 6452, "15___CATEGORICAL___nom_9___2f7f95214": 6453, "15___CATEGORICAL___nom_9___2f806ca4b": 6454, "15___CATEGORICAL___nom_9___2f8a07f0a": 6455, "15___CATEGORICAL___nom_9___2f8d4077d": 6456, "15___CATEGORICAL___nom_9___2f986ef59": 6457, "15___CATEGORICAL___nom_9___2f98a197a": 6458, "15___CATEGORICAL___nom_9___2f9fa7301": 6459, "15___CATEGORICAL___nom_9___2fa38c324": 6460, "15___CATEGORICAL___nom_9___2fa5db145": 6461, "15___CATEGORICAL___nom_9___2fa60384e": 6462, "15___CATEGORICAL___nom_9___2fa668675": 6463, "15___CATEGORICAL___nom_9___2fa6e12f9": 6464, "15___CATEGORICAL___nom_9___2faa8f67c": 6465, "15___CATEGORICAL___nom_9___2fb9f753d": 6466, "15___CATEGORICAL___nom_9___2fbd4adbc": 6467, "15___CATEGORICAL___nom_9___2fc029e58": 6468, "15___CATEGORICAL___nom_9___2fc3c2fde": 6469, "15___CATEGORICAL___nom_9___2fcdfbfd5": 6470, "15___CATEGORICAL___nom_9___2fcf376cc": 6471, "15___CATEGORICAL___nom_9___2fd2493ba": 6472, "15___CATEGORICAL___nom_9___2fd8f5b15": 6473, "15___CATEGORICAL___nom_9___2fdf08bc1": 6474, "15___CATEGORICAL___nom_9___2fe2bd056": 6475, "15___CATEGORICAL___nom_9___2fe44b326": 6476, "15___CATEGORICAL___nom_9___2fec2bcc2": 6477, "15___CATEGORICAL___nom_9___2ff49e0c6": 6478, "15___CATEGORICAL___nom_9___2ff729edf": 6479, "15___CATEGORICAL___nom_9___2ffa8645e": 6480, "15___CATEGORICAL___nom_9___30019e950": 6481, "15___CATEGORICAL___nom_9___30027b312": 6482, "15___CATEGORICAL___nom_9___301021025": 6483, "15___CATEGORICAL___nom_9___3013ced9b": 6484, "15___CATEGORICAL___nom_9___3016aaecd": 6485, "15___CATEGORICAL___nom_9___30171dbca": 6486, "15___CATEGORICAL___nom_9___3017ffa43": 6487, "15___CATEGORICAL___nom_9___301cceaf6": 6488, "15___CATEGORICAL___nom_9___30271f4a7": 6489, "15___CATEGORICAL___nom_9___3029a123c": 6490, "15___CATEGORICAL___nom_9___302a99430": 6491, "15___CATEGORICAL___nom_9___303658335": 6492, "15___CATEGORICAL___nom_9___3036c9b91": 6493, "15___CATEGORICAL___nom_9___3037885aa": 6494, "15___CATEGORICAL___nom_9___303adef79": 6495, "15___CATEGORICAL___nom_9___3040b4dce": 6496, "15___CATEGORICAL___nom_9___3043bd39e": 6497, "15___CATEGORICAL___nom_9___304980d8a": 6498, "15___CATEGORICAL___nom_9___304ae663d": 6499, "15___CATEGORICAL___nom_9___304e14210": 6500, "15___CATEGORICAL___nom_9___30537d57e": 6501, "15___CATEGORICAL___nom_9___3055a191d": 6502, "15___CATEGORICAL___nom_9___305945640": 6503, "15___CATEGORICAL___nom_9___306169878": 6504, "15___CATEGORICAL___nom_9___3066aa6fb": 6505, "15___CATEGORICAL___nom_9___30690e6a1": 6506, "15___CATEGORICAL___nom_9___306d47883": 6507, "15___CATEGORICAL___nom_9___306d87cc1": 6508, "15___CATEGORICAL___nom_9___306ddd1cf": 6509, "15___CATEGORICAL___nom_9___306e8def6": 6510, "15___CATEGORICAL___nom_9___3071bf497": 6511, "15___CATEGORICAL___nom_9___3077ec7a0": 6512, "15___CATEGORICAL___nom_9___307c727c9": 6513, "15___CATEGORICAL___nom_9___3085b1d40": 6514, "15___CATEGORICAL___nom_9___308a63a5a": 6515, "15___CATEGORICAL___nom_9___3091bb06b": 6516, "15___CATEGORICAL___nom_9___3092da624": 6517, "15___CATEGORICAL___nom_9___309986181": 6518, "15___CATEGORICAL___nom_9___309f0151e": 6519, "15___CATEGORICAL___nom_9___30a167b94": 6520, "15___CATEGORICAL___nom_9___30a1f90bd": 6521, "15___CATEGORICAL___nom_9___30a93b8b6": 6522, "15___CATEGORICAL___nom_9___30a9b1e47": 6523, "15___CATEGORICAL___nom_9___30bb2b1d6": 6524, "15___CATEGORICAL___nom_9___30c195bbc": 6525, "15___CATEGORICAL___nom_9___30c6c6c2c": 6526, "15___CATEGORICAL___nom_9___30cdac589": 6527, "15___CATEGORICAL___nom_9___30d1d0cc5": 6528, "15___CATEGORICAL___nom_9___30d8f70f8": 6529, "15___CATEGORICAL___nom_9___30db25ed7": 6530, "15___CATEGORICAL___nom_9___30e3443d5": 6531, "15___CATEGORICAL___nom_9___30eb31338": 6532, "15___CATEGORICAL___nom_9___30f9fa5d1": 6533, "15___CATEGORICAL___nom_9___30fea1919": 6534, "15___CATEGORICAL___nom_9___31001c0c9": 6535, "15___CATEGORICAL___nom_9___310232c22": 6536, "15___CATEGORICAL___nom_9___310ec456e": 6537, "15___CATEGORICAL___nom_9___311506eb6": 6538, "15___CATEGORICAL___nom_9___3118b1e0e": 6539, "15___CATEGORICAL___nom_9___311cf4371": 6540, "15___CATEGORICAL___nom_9___312347adf": 6541, "15___CATEGORICAL___nom_9___312398d90": 6542, "15___CATEGORICAL___nom_9___31240cd0f": 6543, "15___CATEGORICAL___nom_9___3124f909b": 6544, "15___CATEGORICAL___nom_9___312c72ae8": 6545, "15___CATEGORICAL___nom_9___312d44fd7": 6546, "15___CATEGORICAL___nom_9___3141e09ca": 6547, "15___CATEGORICAL___nom_9___31452dcd8": 6548, "15___CATEGORICAL___nom_9___3146be763": 6549, "15___CATEGORICAL___nom_9___314af31ce": 6550, "15___CATEGORICAL___nom_9___314c75259": 6551, "15___CATEGORICAL___nom_9___314dcc15b": 6552, "15___CATEGORICAL___nom_9___315102c0c": 6553, "15___CATEGORICAL___nom_9___3158f8b4d": 6554, "15___CATEGORICAL___nom_9___316797284": 6555, "15___CATEGORICAL___nom_9___316fbea4a": 6556, "15___CATEGORICAL___nom_9___3176b5b7e": 6557, "15___CATEGORICAL___nom_9___317e905e7": 6558, "15___CATEGORICAL___nom_9___317f88f3a": 6559, "15___CATEGORICAL___nom_9___3181578a6": 6560, "15___CATEGORICAL___nom_9___3181c050f": 6561, "15___CATEGORICAL___nom_9___318a767ad": 6562, "15___CATEGORICAL___nom_9___318cf92a9": 6563, "15___CATEGORICAL___nom_9___31919077f": 6564, "15___CATEGORICAL___nom_9___31938926b": 6565, "15___CATEGORICAL___nom_9___3197a3e41": 6566, "15___CATEGORICAL___nom_9___31a6d0f65": 6567, "15___CATEGORICAL___nom_9___31a856faa": 6568, "15___CATEGORICAL___nom_9___31ad333d0": 6569, "15___CATEGORICAL___nom_9___31adff5bb": 6570, "15___CATEGORICAL___nom_9___31aea1cb5": 6571, "15___CATEGORICAL___nom_9___31b70c441": 6572, "15___CATEGORICAL___nom_9___31d46a787": 6573, "15___CATEGORICAL___nom_9___31d4ca91d": 6574, "15___CATEGORICAL___nom_9___31d58e578": 6575, "15___CATEGORICAL___nom_9___31d5c7f1b": 6576, "15___CATEGORICAL___nom_9___31d810f1b": 6577, "15___CATEGORICAL___nom_9___31da7c687": 6578, "15___CATEGORICAL___nom_9___31dd383a9": 6579, "15___CATEGORICAL___nom_9___31e3dae10": 6580, "15___CATEGORICAL___nom_9___31e607baf": 6581, "15___CATEGORICAL___nom_9___31f136e15": 6582, "15___CATEGORICAL___nom_9___31f33d73f": 6583, "15___CATEGORICAL___nom_9___31f429917": 6584, "15___CATEGORICAL___nom_9___31f4e88fc": 6585, "15___CATEGORICAL___nom_9___31f87c4f4": 6586, "15___CATEGORICAL___nom_9___31fbf0e61": 6587, "15___CATEGORICAL___nom_9___31fdec7a4": 6588, "15___CATEGORICAL___nom_9___31fe239eb": 6589, "15___CATEGORICAL___nom_9___31feefd65": 6590, "15___CATEGORICAL___nom_9___3205392d0": 6591, "15___CATEGORICAL___nom_9___32078926a": 6592, "15___CATEGORICAL___nom_9___3209f3332": 6593, "15___CATEGORICAL___nom_9___320ee8f59": 6594, "15___CATEGORICAL___nom_9___321ad1bd2": 6595, "15___CATEGORICAL___nom_9___322663c6a": 6596, "15___CATEGORICAL___nom_9___322e5a5a6": 6597, "15___CATEGORICAL___nom_9___323e6884a": 6598, "15___CATEGORICAL___nom_9___32424e943": 6599, "15___CATEGORICAL___nom_9___32428ce3c": 6600, "15___CATEGORICAL___nom_9___324725131": 6601, "15___CATEGORICAL___nom_9___32480d084": 6602, "15___CATEGORICAL___nom_9___324f669a2": 6603, "15___CATEGORICAL___nom_9___32529dcd8": 6604, "15___CATEGORICAL___nom_9___3252e3c39": 6605, "15___CATEGORICAL___nom_9___32537375c": 6606, "15___CATEGORICAL___nom_9___3253c1122": 6607, "15___CATEGORICAL___nom_9___3254574d1": 6608, "15___CATEGORICAL___nom_9___325fb847d": 6609, "15___CATEGORICAL___nom_9___3261ff038": 6610, "15___CATEGORICAL___nom_9___32698ed84": 6611, "15___CATEGORICAL___nom_9___326ba0aa0": 6612, "15___CATEGORICAL___nom_9___326e70a8c": 6613, "15___CATEGORICAL___nom_9___327348154": 6614, "15___CATEGORICAL___nom_9___327c6ce97": 6615, "15___CATEGORICAL___nom_9___328bd107a": 6616, "15___CATEGORICAL___nom_9___328f282a6": 6617, "15___CATEGORICAL___nom_9___3295f7a17": 6618, "15___CATEGORICAL___nom_9___329a3f42b": 6619, "15___CATEGORICAL___nom_9___329abfa18": 6620, "15___CATEGORICAL___nom_9___32a243d97": 6621, "15___CATEGORICAL___nom_9___32ac7e710": 6622, "15___CATEGORICAL___nom_9___32b1e5377": 6623, "15___CATEGORICAL___nom_9___32b24ee74": 6624, "15___CATEGORICAL___nom_9___32b6433a0": 6625, "15___CATEGORICAL___nom_9___32b95db8f": 6626, "15___CATEGORICAL___nom_9___32bbe0386": 6627, "15___CATEGORICAL___nom_9___32c103da9": 6628, "15___CATEGORICAL___nom_9___32d59b280": 6629, "15___CATEGORICAL___nom_9___32db2966b": 6630, "15___CATEGORICAL___nom_9___32dd0ec55": 6631, "15___CATEGORICAL___nom_9___32fc1c6a2": 6632, "15___CATEGORICAL___nom_9___33056891c": 6633, "15___CATEGORICAL___nom_9___3307f8bae": 6634, "15___CATEGORICAL___nom_9___3308479bf": 6635, "15___CATEGORICAL___nom_9___330bfa4f3": 6636, "15___CATEGORICAL___nom_9___331cdd840": 6637, "15___CATEGORICAL___nom_9___3328e4410": 6638, "15___CATEGORICAL___nom_9___332ab0429": 6639, "15___CATEGORICAL___nom_9___332ea8a81": 6640, "15___CATEGORICAL___nom_9___3332bf676": 6641, "15___CATEGORICAL___nom_9___333c42276": 6642, "15___CATEGORICAL___nom_9___3347bbd9b": 6643, "15___CATEGORICAL___nom_9___334806524": 6644, "15___CATEGORICAL___nom_9___334a9615e": 6645, "15___CATEGORICAL___nom_9___335a156ba": 6646, "15___CATEGORICAL___nom_9___335b67fc9": 6647, "15___CATEGORICAL___nom_9___335deff4c": 6648, "15___CATEGORICAL___nom_9___336fc8cee": 6649, "15___CATEGORICAL___nom_9___337de6c55": 6650, "15___CATEGORICAL___nom_9___33857f866": 6651, "15___CATEGORICAL___nom_9___338914174": 6652, "15___CATEGORICAL___nom_9___3389ec8c8": 6653, "15___CATEGORICAL___nom_9___338baaae9": 6654, "15___CATEGORICAL___nom_9___3391f094d": 6655, "15___CATEGORICAL___nom_9___339645e33": 6656, "15___CATEGORICAL___nom_9___339cf462f": 6657, "15___CATEGORICAL___nom_9___339d54137": 6658, "15___CATEGORICAL___nom_9___33a081789": 6659, "15___CATEGORICAL___nom_9___33a109258": 6660, "15___CATEGORICAL___nom_9___33a87f003": 6661, "15___CATEGORICAL___nom_9___33c956aa6": 6662, "15___CATEGORICAL___nom_9___33cda2f10": 6663, "15___CATEGORICAL___nom_9___33cf2b818": 6664, "15___CATEGORICAL___nom_9___33cf5c159": 6665, "15___CATEGORICAL___nom_9___33d1eb182": 6666, "15___CATEGORICAL___nom_9___33d284932": 6667, "15___CATEGORICAL___nom_9___33dd3cf4b": 6668, "15___CATEGORICAL___nom_9___33dd7fc1f": 6669, "15___CATEGORICAL___nom_9___33de73368": 6670, "15___CATEGORICAL___nom_9___33f0a51ac": 6671, "15___CATEGORICAL___nom_9___33fa02c89": 6672, "15___CATEGORICAL___nom_9___33fedd56a": 6673, "15___CATEGORICAL___nom_9___34018922b": 6674, "15___CATEGORICAL___nom_9___34037a62f": 6675, "15___CATEGORICAL___nom_9___34058a17c": 6676, "15___CATEGORICAL___nom_9___3407c699c": 6677, "15___CATEGORICAL___nom_9___34167c3f1": 6678, "15___CATEGORICAL___nom_9___3419a5d4e": 6679, "15___CATEGORICAL___nom_9___341a024c6": 6680, "15___CATEGORICAL___nom_9___3427798f8": 6681, "15___CATEGORICAL___nom_9___34297f5e6": 6682, "15___CATEGORICAL___nom_9___342996478": 6683, "15___CATEGORICAL___nom_9___3430fbd6d": 6684, "15___CATEGORICAL___nom_9___343650ddf": 6685, "15___CATEGORICAL___nom_9___343df227e": 6686, "15___CATEGORICAL___nom_9___343e79267": 6687, "15___CATEGORICAL___nom_9___34432c6f9": 6688, "15___CATEGORICAL___nom_9___344796232": 6689, "15___CATEGORICAL___nom_9___34489f674": 6690, "15___CATEGORICAL___nom_9___344bbbd10": 6691, "15___CATEGORICAL___nom_9___344da5a42": 6692, "15___CATEGORICAL___nom_9___345076f4c": 6693, "15___CATEGORICAL___nom_9___345193f10": 6694, "15___CATEGORICAL___nom_9___345f9a78c": 6695, "15___CATEGORICAL___nom_9___34652bd97": 6696, "15___CATEGORICAL___nom_9___34668cacd": 6697, "15___CATEGORICAL___nom_9___347318500": 6698, "15___CATEGORICAL___nom_9___34760ea8a": 6699, "15___CATEGORICAL___nom_9___347e19804": 6700, "15___CATEGORICAL___nom_9___34816bed2": 6701, "15___CATEGORICAL___nom_9___348516d12": 6702, "15___CATEGORICAL___nom_9___34894f229": 6703, "15___CATEGORICAL___nom_9___34899a8ab": 6704, "15___CATEGORICAL___nom_9___3495a3d9c": 6705, "15___CATEGORICAL___nom_9___3497ec01c": 6706, "15___CATEGORICAL___nom_9___349fadfe4": 6707, "15___CATEGORICAL___nom_9___34a510b1c": 6708, "15___CATEGORICAL___nom_9___34a66fc7a": 6709, "15___CATEGORICAL___nom_9___34a7273bf": 6710, "15___CATEGORICAL___nom_9___34b345fe4": 6711, "15___CATEGORICAL___nom_9___34baf0344": 6712, "15___CATEGORICAL___nom_9___34bc0b300": 6713, "15___CATEGORICAL___nom_9___34be5c172": 6714, "15___CATEGORICAL___nom_9___34c8c9e45": 6715, "15___CATEGORICAL___nom_9___34cd0a830": 6716, "15___CATEGORICAL___nom_9___34d1400ca": 6717, "15___CATEGORICAL___nom_9___34d55f146": 6718, "15___CATEGORICAL___nom_9___34d7fc917": 6719, "15___CATEGORICAL___nom_9___34daa43fc": 6720, "15___CATEGORICAL___nom_9___34dceca48": 6721, "15___CATEGORICAL___nom_9___34e4c5175": 6722, "15___CATEGORICAL___nom_9___34e53291a": 6723, "15___CATEGORICAL___nom_9___34edc48cc": 6724, "15___CATEGORICAL___nom_9___34f2a8f55": 6725, "15___CATEGORICAL___nom_9___35022c4bd": 6726, "15___CATEGORICAL___nom_9___350467a4f": 6727, "15___CATEGORICAL___nom_9___350aa92e0": 6728, "15___CATEGORICAL___nom_9___351c4abf9": 6729, "15___CATEGORICAL___nom_9___351f7a2d3": 6730, "15___CATEGORICAL___nom_9___3528fdd7c": 6731, "15___CATEGORICAL___nom_9___352d7c0cb": 6732, "15___CATEGORICAL___nom_9___352da06d5": 6733, "15___CATEGORICAL___nom_9___352e1994c": 6734, "15___CATEGORICAL___nom_9___353042f7f": 6735, "15___CATEGORICAL___nom_9___35345465a": 6736, "15___CATEGORICAL___nom_9___3536621a6": 6737, "15___CATEGORICAL___nom_9___35374c0f7": 6738, "15___CATEGORICAL___nom_9___353c174dc": 6739, "15___CATEGORICAL___nom_9___353f29921": 6740, "15___CATEGORICAL___nom_9___35435bf4a": 6741, "15___CATEGORICAL___nom_9___354aece77": 6742, "15___CATEGORICAL___nom_9___354ce3046": 6743, "15___CATEGORICAL___nom_9___35526166c": 6744, "15___CATEGORICAL___nom_9___3552f08ae": 6745, "15___CATEGORICAL___nom_9___355afc645": 6746, "15___CATEGORICAL___nom_9___355b044a0": 6747, "15___CATEGORICAL___nom_9___356203f9f": 6748, "15___CATEGORICAL___nom_9___356707061": 6749, "15___CATEGORICAL___nom_9___356938755": 6750, "15___CATEGORICAL___nom_9___356e7ed92": 6751, "15___CATEGORICAL___nom_9___357131f4f": 6752, "15___CATEGORICAL___nom_9___357645a27": 6753, "15___CATEGORICAL___nom_9___357ae0338": 6754, "15___CATEGORICAL___nom_9___357e340f8": 6755, "15___CATEGORICAL___nom_9___357eac9e6": 6756, "15___CATEGORICAL___nom_9___35899a2c6": 6757, "15___CATEGORICAL___nom_9___3590d0ca6": 6758, "15___CATEGORICAL___nom_9___35a9655be": 6759, "15___CATEGORICAL___nom_9___35a9ee7ef": 6760, "15___CATEGORICAL___nom_9___35ab040ba": 6761, "15___CATEGORICAL___nom_9___35b44a970": 6762, "15___CATEGORICAL___nom_9___35b5d80d2": 6763, "15___CATEGORICAL___nom_9___35b614816": 6764, "15___CATEGORICAL___nom_9___35c121c88": 6765, "15___CATEGORICAL___nom_9___35c542596": 6766, "15___CATEGORICAL___nom_9___35c745696": 6767, "15___CATEGORICAL___nom_9___35dd3211c": 6768, "15___CATEGORICAL___nom_9___35e0f0c9a": 6769, "15___CATEGORICAL___nom_9___35e5e0629": 6770, "15___CATEGORICAL___nom_9___35e8ac209": 6771, "15___CATEGORICAL___nom_9___35f304329": 6772, "15___CATEGORICAL___nom_9___35f93de30": 6773, "15___CATEGORICAL___nom_9___3600757c9": 6774, "15___CATEGORICAL___nom_9___36028e582": 6775, "15___CATEGORICAL___nom_9___360932674": 6776, "15___CATEGORICAL___nom_9___3609df9c9": 6777, "15___CATEGORICAL___nom_9___360a1ebdf": 6778, "15___CATEGORICAL___nom_9___360fb7cd8": 6779, "15___CATEGORICAL___nom_9___3612da42c": 6780, "15___CATEGORICAL___nom_9___361b02421": 6781, "15___CATEGORICAL___nom_9___3626c38e6": 6782, "15___CATEGORICAL___nom_9___362c3ab3e": 6783, "15___CATEGORICAL___nom_9___3631dbcaf": 6784, "15___CATEGORICAL___nom_9___364249a60": 6785, "15___CATEGORICAL___nom_9___364f539d4": 6786, "15___CATEGORICAL___nom_9___365061510": 6787, "15___CATEGORICAL___nom_9___365596e3e": 6788, "15___CATEGORICAL___nom_9___3656b2aee": 6789, "15___CATEGORICAL___nom_9___3660da2f6": 6790, "15___CATEGORICAL___nom_9___36614815b": 6791, "15___CATEGORICAL___nom_9___366278f40": 6792, "15___CATEGORICAL___nom_9___367011eab": 6793, "15___CATEGORICAL___nom_9___3670c4b0f": 6794, "15___CATEGORICAL___nom_9___36787852d": 6795, "15___CATEGORICAL___nom_9___368e46089": 6796, "15___CATEGORICAL___nom_9___368f28e0e": 6797, "15___CATEGORICAL___nom_9___3690edf48": 6798, "15___CATEGORICAL___nom_9___369ee33a3": 6799, "15___CATEGORICAL___nom_9___36ab0df57": 6800, "15___CATEGORICAL___nom_9___36ab60fba": 6801, "15___CATEGORICAL___nom_9___36b5efb6a": 6802, "15___CATEGORICAL___nom_9___36b66804c": 6803, "15___CATEGORICAL___nom_9___36b692390": 6804, "15___CATEGORICAL___nom_9___36bb704cc": 6805, "15___CATEGORICAL___nom_9___36bdd37aa": 6806, "15___CATEGORICAL___nom_9___36bf5e5e2": 6807, "15___CATEGORICAL___nom_9___36c83a38c": 6808, "15___CATEGORICAL___nom_9___36c939379": 6809, "15___CATEGORICAL___nom_9___36d54fb3e": 6810, "15___CATEGORICAL___nom_9___36dae1796": 6811, "15___CATEGORICAL___nom_9___36e0b9e43": 6812, "15___CATEGORICAL___nom_9___36e621c45": 6813, "15___CATEGORICAL___nom_9___36ea6b583": 6814, "15___CATEGORICAL___nom_9___36f5176f3": 6815, "15___CATEGORICAL___nom_9___36f53c7f9": 6816, "15___CATEGORICAL___nom_9___36fc09d07": 6817, "15___CATEGORICAL___nom_9___36ff1c818": 6818, "15___CATEGORICAL___nom_9___37008bc7a": 6819, "15___CATEGORICAL___nom_9___37015bcb0": 6820, "15___CATEGORICAL___nom_9___3701b06e9": 6821, "15___CATEGORICAL___nom_9___37069902e": 6822, "15___CATEGORICAL___nom_9___370d4eab1": 6823, "15___CATEGORICAL___nom_9___37132b5f0": 6824, "15___CATEGORICAL___nom_9___371360b69": 6825, "15___CATEGORICAL___nom_9___3719a4abf": 6826, "15___CATEGORICAL___nom_9___3719f0f5e": 6827, "15___CATEGORICAL___nom_9___371b27023": 6828, "15___CATEGORICAL___nom_9___371fa9a31": 6829, "15___CATEGORICAL___nom_9___372bf4d06": 6830, "15___CATEGORICAL___nom_9___372ede455": 6831, "15___CATEGORICAL___nom_9___373421fe5": 6832, "15___CATEGORICAL___nom_9___37355e728": 6833, "15___CATEGORICAL___nom_9___373e7f5e8": 6834, "15___CATEGORICAL___nom_9___3742db788": 6835, "15___CATEGORICAL___nom_9___375dafba0": 6836, "15___CATEGORICAL___nom_9___375e17607": 6837, "15___CATEGORICAL___nom_9___37618b5a3": 6838, "15___CATEGORICAL___nom_9___3767f816e": 6839, "15___CATEGORICAL___nom_9___376d38af6": 6840, "15___CATEGORICAL___nom_9___37775e3eb": 6841, "15___CATEGORICAL___nom_9___3777c3baf": 6842, "15___CATEGORICAL___nom_9___3783095dc": 6843, "15___CATEGORICAL___nom_9___3785bb6de": 6844, "15___CATEGORICAL___nom_9___378a735f5": 6845, "15___CATEGORICAL___nom_9___378b87bbb": 6846, "15___CATEGORICAL___nom_9___378e34b74": 6847, "15___CATEGORICAL___nom_9___379073177": 6848, "15___CATEGORICAL___nom_9___37a54d662": 6849, "15___CATEGORICAL___nom_9___37a8dd691": 6850, "15___CATEGORICAL___nom_9___37addfb58": 6851, "15___CATEGORICAL___nom_9___37aea9cb5": 6852, "15___CATEGORICAL___nom_9___37afba0f9": 6853, "15___CATEGORICAL___nom_9___37b254aa6": 6854, "15___CATEGORICAL___nom_9___37b863a53": 6855, "15___CATEGORICAL___nom_9___37ba401ce": 6856, "15___CATEGORICAL___nom_9___37be2738a": 6857, "15___CATEGORICAL___nom_9___37bf5cdfb": 6858, "15___CATEGORICAL___nom_9___37bf7f6bf": 6859, "15___CATEGORICAL___nom_9___37c2b80b0": 6860, "15___CATEGORICAL___nom_9___37d24e651": 6861, "15___CATEGORICAL___nom_9___37d96971f": 6862, "15___CATEGORICAL___nom_9___37e9d6719": 6863, "15___CATEGORICAL___nom_9___37ed108a4": 6864, "15___CATEGORICAL___nom_9___37f280e33": 6865, "15___CATEGORICAL___nom_9___37faaf21c": 6866, "15___CATEGORICAL___nom_9___38039d3a8": 6867, "15___CATEGORICAL___nom_9___3807016a0": 6868, "15___CATEGORICAL___nom_9___380bd5f74": 6869, "15___CATEGORICAL___nom_9___381afb28d": 6870, "15___CATEGORICAL___nom_9___381c9c6b7": 6871, "15___CATEGORICAL___nom_9___381e541af": 6872, "15___CATEGORICAL___nom_9___381ec1bb3": 6873, "15___CATEGORICAL___nom_9___3824e084d": 6874, "15___CATEGORICAL___nom_9___383274739": 6875, "15___CATEGORICAL___nom_9___383d8a64b": 6876, "15___CATEGORICAL___nom_9___38470f7db": 6877, "15___CATEGORICAL___nom_9___384aeeadc": 6878, "15___CATEGORICAL___nom_9___38596ae44": 6879, "15___CATEGORICAL___nom_9___386b29a58": 6880, "15___CATEGORICAL___nom_9___387386589": 6881, "15___CATEGORICAL___nom_9___3878ed87b": 6882, "15___CATEGORICAL___nom_9___387f99ecb": 6883, "15___CATEGORICAL___nom_9___3889c105a": 6884, "15___CATEGORICAL___nom_9___389e323e8": 6885, "15___CATEGORICAL___nom_9___389fc6a63": 6886, "15___CATEGORICAL___nom_9___38a3b1fa7": 6887, "15___CATEGORICAL___nom_9___38b51e7a0": 6888, "15___CATEGORICAL___nom_9___38b693fbf": 6889, "15___CATEGORICAL___nom_9___38b7a9b25": 6890, "15___CATEGORICAL___nom_9___38bd25225": 6891, "15___CATEGORICAL___nom_9___38c04f763": 6892, "15___CATEGORICAL___nom_9___38c4cb5fc": 6893, "15___CATEGORICAL___nom_9___38c67dcea": 6894, "15___CATEGORICAL___nom_9___38cc53d15": 6895, "15___CATEGORICAL___nom_9___38cd3ce56": 6896, "15___CATEGORICAL___nom_9___38d369e78": 6897, "15___CATEGORICAL___nom_9___38d68065f": 6898, "15___CATEGORICAL___nom_9___38dbaf20b": 6899, "15___CATEGORICAL___nom_9___38dc68d0c": 6900, "15___CATEGORICAL___nom_9___38dd5d85d": 6901, "15___CATEGORICAL___nom_9___38dd8cbc6": 6902, "15___CATEGORICAL___nom_9___38e127e10": 6903, "15___CATEGORICAL___nom_9___38e7db22d": 6904, "15___CATEGORICAL___nom_9___38f0ed9f7": 6905, "15___CATEGORICAL___nom_9___38f1f6ea6": 6906, "15___CATEGORICAL___nom_9___38f2f165c": 6907, "15___CATEGORICAL___nom_9___38ff1f21c": 6908, "15___CATEGORICAL___nom_9___38ff77909": 6909, "15___CATEGORICAL___nom_9___3908b8f28": 6910, "15___CATEGORICAL___nom_9___390d689f5": 6911, "15___CATEGORICAL___nom_9___3912f007c": 6912, "15___CATEGORICAL___nom_9___391715e50": 6913, "15___CATEGORICAL___nom_9___391fc8a34": 6914, "15___CATEGORICAL___nom_9___392467fdc": 6915, "15___CATEGORICAL___nom_9___392551dd3": 6916, "15___CATEGORICAL___nom_9___39274f6ab": 6917, "15___CATEGORICAL___nom_9___392a6fe1a": 6918, "15___CATEGORICAL___nom_9___392c9f997": 6919, "15___CATEGORICAL___nom_9___39322584a": 6920, "15___CATEGORICAL___nom_9___39373458d": 6921, "15___CATEGORICAL___nom_9___39386c39f": 6922, "15___CATEGORICAL___nom_9___393ad6d08": 6923, "15___CATEGORICAL___nom_9___393d214b9": 6924, "15___CATEGORICAL___nom_9___3945ce65c": 6925, "15___CATEGORICAL___nom_9___394849927": 6926, "15___CATEGORICAL___nom_9___394a634c4": 6927, "15___CATEGORICAL___nom_9___394b68eb6": 6928, "15___CATEGORICAL___nom_9___394fd3c35": 6929, "15___CATEGORICAL___nom_9___3950ad563": 6930, "15___CATEGORICAL___nom_9___39515531e": 6931, "15___CATEGORICAL___nom_9___395e89b6b": 6932, "15___CATEGORICAL___nom_9___395e9cc94": 6933, "15___CATEGORICAL___nom_9___396268c63": 6934, "15___CATEGORICAL___nom_9___39661f41c": 6935, "15___CATEGORICAL___nom_9___396afd636": 6936, "15___CATEGORICAL___nom_9___39758d7f9": 6937, "15___CATEGORICAL___nom_9___397c9eb1b": 6938, "15___CATEGORICAL___nom_9___39837699e": 6939, "15___CATEGORICAL___nom_9___39849b89b": 6940, "15___CATEGORICAL___nom_9___3984bcd80": 6941, "15___CATEGORICAL___nom_9___398664aa6": 6942, "15___CATEGORICAL___nom_9___398904757": 6943, "15___CATEGORICAL___nom_9___39940fa79": 6944, "15___CATEGORICAL___nom_9___3996e35b1": 6945, "15___CATEGORICAL___nom_9___399dab91c": 6946, "15___CATEGORICAL___nom_9___39a5382b0": 6947, "15___CATEGORICAL___nom_9___39b825b9b": 6948, "15___CATEGORICAL___nom_9___39bb4f59a": 6949, "15___CATEGORICAL___nom_9___39c9c5633": 6950, "15___CATEGORICAL___nom_9___39d21357f": 6951, "15___CATEGORICAL___nom_9___39d328853": 6952, "15___CATEGORICAL___nom_9___39d7eff45": 6953, "15___CATEGORICAL___nom_9___39dcb81e9": 6954, "15___CATEGORICAL___nom_9___39ddfea2c": 6955, "15___CATEGORICAL___nom_9___39de955fe": 6956, "15___CATEGORICAL___nom_9___39e69cdd9": 6957, "15___CATEGORICAL___nom_9___39ead5e86": 6958, "15___CATEGORICAL___nom_9___39f0dbabd": 6959, "15___CATEGORICAL___nom_9___39f6935c8": 6960, "15___CATEGORICAL___nom_9___39fde287b": 6961, "15___CATEGORICAL___nom_9___39ff8b9aa": 6962, "15___CATEGORICAL___nom_9___3a00f0cb0": 6963, "15___CATEGORICAL___nom_9___3a0281806": 6964, "15___CATEGORICAL___nom_9___3a03309f8": 6965, "15___CATEGORICAL___nom_9___3a04b6c17": 6966, "15___CATEGORICAL___nom_9___3a064f6aa": 6967, "15___CATEGORICAL___nom_9___3a06c0730": 6968, "15___CATEGORICAL___nom_9___3a0814a4c": 6969, "15___CATEGORICAL___nom_9___3a0a4f10b": 6970, "15___CATEGORICAL___nom_9___3a113016e": 6971, "15___CATEGORICAL___nom_9___3a11ceee0": 6972, "15___CATEGORICAL___nom_9___3a1641984": 6973, "15___CATEGORICAL___nom_9___3a1fea205": 6974, "15___CATEGORICAL___nom_9___3a33631e2": 6975, "15___CATEGORICAL___nom_9___3a385e945": 6976, "15___CATEGORICAL___nom_9___3a3f84d57": 6977, "15___CATEGORICAL___nom_9___3a4603372": 6978, "15___CATEGORICAL___nom_9___3a4ae8d0d": 6979, "15___CATEGORICAL___nom_9___3a4b200e1": 6980, "15___CATEGORICAL___nom_9___3a5b19d24": 6981, "15___CATEGORICAL___nom_9___3a5b9bbd7": 6982, "15___CATEGORICAL___nom_9___3a5ea97f8": 6983, "15___CATEGORICAL___nom_9___3a639f3c8": 6984, "15___CATEGORICAL___nom_9___3a6619c0b": 6985, "15___CATEGORICAL___nom_9___3a67835f1": 6986, "15___CATEGORICAL___nom_9___3a70cfe93": 6987, "15___CATEGORICAL___nom_9___3a70d82e5": 6988, "15___CATEGORICAL___nom_9___3a720888f": 6989, "15___CATEGORICAL___nom_9___3a768367e": 6990, "15___CATEGORICAL___nom_9___3a9a5c1a9": 6991, "15___CATEGORICAL___nom_9___3a9b30f63": 6992, "15___CATEGORICAL___nom_9___3a9d1928d": 6993, "15___CATEGORICAL___nom_9___3a9f06260": 6994, "15___CATEGORICAL___nom_9___3aa0ba033": 6995, "15___CATEGORICAL___nom_9___3ab064d89": 6996, "15___CATEGORICAL___nom_9___3ab18acb6": 6997, "15___CATEGORICAL___nom_9___3ab2b94db": 6998, "15___CATEGORICAL___nom_9___3ab6699bc": 6999, "15___CATEGORICAL___nom_9___3ab6ea7ca": 7000, "15___CATEGORICAL___nom_9___3ab7c575b": 7001, "15___CATEGORICAL___nom_9___3ac1438af": 7002, "15___CATEGORICAL___nom_9___3ac3bcc30": 7003, "15___CATEGORICAL___nom_9___3aca81ddc": 7004, "15___CATEGORICAL___nom_9___3acccc051": 7005, "15___CATEGORICAL___nom_9___3ad5e3d89": 7006, "15___CATEGORICAL___nom_9___3adafebbf": 7007, "15___CATEGORICAL___nom_9___3ae27a2c6": 7008, "15___CATEGORICAL___nom_9___3ae8a791a": 7009, "15___CATEGORICAL___nom_9___3aecf5f0b": 7010, "15___CATEGORICAL___nom_9___3aefb8175": 7011, "15___CATEGORICAL___nom_9___3af4050be": 7012, "15___CATEGORICAL___nom_9___3af4192ec": 7013, "15___CATEGORICAL___nom_9___3afbec47c": 7014, "15___CATEGORICAL___nom_9___3b03b660f": 7015, "15___CATEGORICAL___nom_9___3b05d2cd6": 7016, "15___CATEGORICAL___nom_9___3b09f17c7": 7017, "15___CATEGORICAL___nom_9___3b0badfae": 7018, "15___CATEGORICAL___nom_9___3b0fcb47d": 7019, "15___CATEGORICAL___nom_9___3b21a12bb": 7020, "15___CATEGORICAL___nom_9___3b2231d1a": 7021, "15___CATEGORICAL___nom_9___3b3794565": 7022, "15___CATEGORICAL___nom_9___3b4864da8": 7023, "15___CATEGORICAL___nom_9___3b4a7402f": 7024, "15___CATEGORICAL___nom_9___3b4e39519": 7025, "15___CATEGORICAL___nom_9___3b51e3e0d": 7026, "15___CATEGORICAL___nom_9___3b61f6efb": 7027, "15___CATEGORICAL___nom_9___3b66c66e4": 7028, "15___CATEGORICAL___nom_9___3b66f59c3": 7029, "15___CATEGORICAL___nom_9___3b6853687": 7030, "15___CATEGORICAL___nom_9___3b69af85b": 7031, "15___CATEGORICAL___nom_9___3b71b824e": 7032, "15___CATEGORICAL___nom_9___3b768a3dc": 7033, "15___CATEGORICAL___nom_9___3b7de762a": 7034, "15___CATEGORICAL___nom_9___3b8243a9f": 7035, "15___CATEGORICAL___nom_9___3b8558f21": 7036, "15___CATEGORICAL___nom_9___3b8b246da": 7037, "15___CATEGORICAL___nom_9___3b90fdd79": 7038, "15___CATEGORICAL___nom_9___3b967a668": 7039, "15___CATEGORICAL___nom_9___3b998117d": 7040, "15___CATEGORICAL___nom_9___3b9d54208": 7041, "15___CATEGORICAL___nom_9___3b9e7739c": 7042, "15___CATEGORICAL___nom_9___3ba730568": 7043, "15___CATEGORICAL___nom_9___3ba7aae3d": 7044, "15___CATEGORICAL___nom_9___3bacc7ef0": 7045, "15___CATEGORICAL___nom_9___3bb68af4a": 7046, "15___CATEGORICAL___nom_9___3bba381f4": 7047, "15___CATEGORICAL___nom_9___3bba62591": 7048, "15___CATEGORICAL___nom_9___3bbb602f5": 7049, "15___CATEGORICAL___nom_9___3bbf48037": 7050, "15___CATEGORICAL___nom_9___3bc18f12b": 7051, "15___CATEGORICAL___nom_9___3bc773ad0": 7052, "15___CATEGORICAL___nom_9___3bc8741c1": 7053, "15___CATEGORICAL___nom_9___3bd085a7c": 7054, "15___CATEGORICAL___nom_9___3bd0aac3d": 7055, "15___CATEGORICAL___nom_9___3bd7877b6": 7056, "15___CATEGORICAL___nom_9___3bdc7d50d": 7057, "15___CATEGORICAL___nom_9___3be7eec3b": 7058, "15___CATEGORICAL___nom_9___3be8d9670": 7059, "15___CATEGORICAL___nom_9___3bfcb4913": 7060, "15___CATEGORICAL___nom_9___3bfdbb0a9": 7061, "15___CATEGORICAL___nom_9___3bfe39a63": 7062, "15___CATEGORICAL___nom_9___3bff7dd7a": 7063, "15___CATEGORICAL___nom_9___3c05a2a3f": 7064, "15___CATEGORICAL___nom_9___3c05c7aea": 7065, "15___CATEGORICAL___nom_9___3c079ef50": 7066, "15___CATEGORICAL___nom_9___3c08d6d3f": 7067, "15___CATEGORICAL___nom_9___3c0aab332": 7068, "15___CATEGORICAL___nom_9___3c0cbfef5": 7069, "15___CATEGORICAL___nom_9___3c10ec261": 7070, "15___CATEGORICAL___nom_9___3c1b20c8a": 7071, "15___CATEGORICAL___nom_9___3c21322a2": 7072, "15___CATEGORICAL___nom_9___3c2601744": 7073, "15___CATEGORICAL___nom_9___3c2ac6197": 7074, "15___CATEGORICAL___nom_9___3c2dc8d97": 7075, "15___CATEGORICAL___nom_9___3c30313e4": 7076, "15___CATEGORICAL___nom_9___3c312d586": 7077, "15___CATEGORICAL___nom_9___3c37f6eb4": 7078, "15___CATEGORICAL___nom_9___3c3f29d4d": 7079, "15___CATEGORICAL___nom_9___3c4365da8": 7080, "15___CATEGORICAL___nom_9___3c49b42b8": 7081, "15___CATEGORICAL___nom_9___3c5f0f24e": 7082, "15___CATEGORICAL___nom_9___3c60fd2f5": 7083, "15___CATEGORICAL___nom_9___3c6276bd5": 7084, "15___CATEGORICAL___nom_9___3c627fc58": 7085, "15___CATEGORICAL___nom_9___3c6b8da7a": 7086, "15___CATEGORICAL___nom_9___3c6f526ed": 7087, "15___CATEGORICAL___nom_9___3c6ff8e35": 7088, "15___CATEGORICAL___nom_9___3c71bb205": 7089, "15___CATEGORICAL___nom_9___3c73bfa9e": 7090, "15___CATEGORICAL___nom_9___3c915f463": 7091, "15___CATEGORICAL___nom_9___3c9a512d3": 7092, "15___CATEGORICAL___nom_9___3c9f3586a": 7093, "15___CATEGORICAL___nom_9___3ca5c17d0": 7094, "15___CATEGORICAL___nom_9___3cabcaee4": 7095, "15___CATEGORICAL___nom_9___3cb234b29": 7096, "15___CATEGORICAL___nom_9___3cb920ed5": 7097, "15___CATEGORICAL___nom_9___3cbc9dc44": 7098, "15___CATEGORICAL___nom_9___3cc24ab5d": 7099, "15___CATEGORICAL___nom_9___3cc46448a": 7100, "15___CATEGORICAL___nom_9___3cc8a7aca": 7101, "15___CATEGORICAL___nom_9___3cd0b7e01": 7102, "15___CATEGORICAL___nom_9___3cd193139": 7103, "15___CATEGORICAL___nom_9___3cd3c9434": 7104, "15___CATEGORICAL___nom_9___3cd44636b": 7105, "15___CATEGORICAL___nom_9___3cd869447": 7106, "15___CATEGORICAL___nom_9___3cd993e94": 7107, "15___CATEGORICAL___nom_9___3cda0a027": 7108, "15___CATEGORICAL___nom_9___3ce6b0a07": 7109, "15___CATEGORICAL___nom_9___3ced1535d": 7110, "15___CATEGORICAL___nom_9___3cfc1493c": 7111, "15___CATEGORICAL___nom_9___3cfe8875e": 7112, "15___CATEGORICAL___nom_9___3cfe91770": 7113, "15___CATEGORICAL___nom_9___3cff35820": 7114, "15___CATEGORICAL___nom_9___3d0569876": 7115, "15___CATEGORICAL___nom_9___3d05fa76c": 7116, "15___CATEGORICAL___nom_9___3d0859d6c": 7117, "15___CATEGORICAL___nom_9___3d0b1f93a": 7118, "15___CATEGORICAL___nom_9___3d1ab3226": 7119, "15___CATEGORICAL___nom_9___3d1dcd13b": 7120, "15___CATEGORICAL___nom_9___3d2b13c83": 7121, "15___CATEGORICAL___nom_9___3d2c46e12": 7122, "15___CATEGORICAL___nom_9___3d2e1a50b": 7123, "15___CATEGORICAL___nom_9___3d3109a50": 7124, "15___CATEGORICAL___nom_9___3d319ca1a": 7125, "15___CATEGORICAL___nom_9___3d38c9b0b": 7126, "15___CATEGORICAL___nom_9___3d3d7cec0": 7127, "15___CATEGORICAL___nom_9___3d3eee32d": 7128, "15___CATEGORICAL___nom_9___3d3fcfac4": 7129, "15___CATEGORICAL___nom_9___3d468fb66": 7130, "15___CATEGORICAL___nom_9___3d4a9041c": 7131, "15___CATEGORICAL___nom_9___3d5aebac0": 7132, "15___CATEGORICAL___nom_9___3d5c25b4a": 7133, "15___CATEGORICAL___nom_9___3d5d64145": 7134, "15___CATEGORICAL___nom_9___3d5ff4fe0": 7135, "15___CATEGORICAL___nom_9___3d647944d": 7136, "15___CATEGORICAL___nom_9___3d6528a23": 7137, "15___CATEGORICAL___nom_9___3d7683f4c": 7138, "15___CATEGORICAL___nom_9___3d7db0d96": 7139, "15___CATEGORICAL___nom_9___3d8640e6f": 7140, "15___CATEGORICAL___nom_9___3d8812d69": 7141, "15___CATEGORICAL___nom_9___3d8904a7b": 7142, "15___CATEGORICAL___nom_9___3d9392edc": 7143, "15___CATEGORICAL___nom_9___3dc06b288": 7144, "15___CATEGORICAL___nom_9___3dc10bcdb": 7145, "15___CATEGORICAL___nom_9___3dc6ed8dd": 7146, "15___CATEGORICAL___nom_9___3dc891d92": 7147, "15___CATEGORICAL___nom_9___3dd1bb7c6": 7148, "15___CATEGORICAL___nom_9___3de1a4fa1": 7149, "15___CATEGORICAL___nom_9___3de8398ab": 7150, "15___CATEGORICAL___nom_9___3de874598": 7151, "15___CATEGORICAL___nom_9___3dec4b476": 7152, "15___CATEGORICAL___nom_9___3df5a8fd9": 7153, "15___CATEGORICAL___nom_9___3dfde0219": 7154, "15___CATEGORICAL___nom_9___3e017b647": 7155, "15___CATEGORICAL___nom_9___3e05d5dda": 7156, "15___CATEGORICAL___nom_9___3e0676fab": 7157, "15___CATEGORICAL___nom_9___3e0919ae9": 7158, "15___CATEGORICAL___nom_9___3e0a7714e": 7159, "15___CATEGORICAL___nom_9___3e1d307ac": 7160, "15___CATEGORICAL___nom_9___3e1fd1687": 7161, "15___CATEGORICAL___nom_9___3e2352970": 7162, "15___CATEGORICAL___nom_9___3e23f2503": 7163, "15___CATEGORICAL___nom_9___3e2b49d08": 7164, "15___CATEGORICAL___nom_9___3e535d84e": 7165, "15___CATEGORICAL___nom_9___3e60d45bd": 7166, "15___CATEGORICAL___nom_9___3e67d10e6": 7167, "15___CATEGORICAL___nom_9___3e7285e7f": 7168, "15___CATEGORICAL___nom_9___3e7930b6a": 7169, "15___CATEGORICAL___nom_9___3e7abfcde": 7170, "15___CATEGORICAL___nom_9___3e7e25805": 7171, "15___CATEGORICAL___nom_9___3e7f89533": 7172, "15___CATEGORICAL___nom_9___3e84c7283": 7173, "15___CATEGORICAL___nom_9___3e88dd2a0": 7174, "15___CATEGORICAL___nom_9___3e94a36d3": 7175, "15___CATEGORICAL___nom_9___3ea01f7bb": 7176, "15___CATEGORICAL___nom_9___3ea725cf2": 7177, "15___CATEGORICAL___nom_9___3ea8a70d5": 7178, "15___CATEGORICAL___nom_9___3ea990ea5": 7179, "15___CATEGORICAL___nom_9___3eac34f5f": 7180, "15___CATEGORICAL___nom_9___3eae6b3ec": 7181, "15___CATEGORICAL___nom_9___3eaea33e5": 7182, "15___CATEGORICAL___nom_9___3eaf8e80c": 7183, "15___CATEGORICAL___nom_9___3ebb988aa": 7184, "15___CATEGORICAL___nom_9___3ebd0a385": 7185, "15___CATEGORICAL___nom_9___3ebf64b56": 7186, "15___CATEGORICAL___nom_9___3ec31b3c0": 7187, "15___CATEGORICAL___nom_9___3ecabe926": 7188, "15___CATEGORICAL___nom_9___3ed31f2e2": 7189, "15___CATEGORICAL___nom_9___3ed883464": 7190, "15___CATEGORICAL___nom_9___3edc95ab8": 7191, "15___CATEGORICAL___nom_9___3ee76fdcd": 7192, "15___CATEGORICAL___nom_9___3eedf9190": 7193, "15___CATEGORICAL___nom_9___3efda4260": 7194, "15___CATEGORICAL___nom_9___3f0494a11": 7195, "15___CATEGORICAL___nom_9___3f05211ac": 7196, "15___CATEGORICAL___nom_9___3f087f8a7": 7197, "15___CATEGORICAL___nom_9___3f1187452": 7198, "15___CATEGORICAL___nom_9___3f1596ca9": 7199, "15___CATEGORICAL___nom_9___3f19c3d8a": 7200, "15___CATEGORICAL___nom_9___3f1aba292": 7201, "15___CATEGORICAL___nom_9___3f1ad8437": 7202, "15___CATEGORICAL___nom_9___3f1b404b0": 7203, "15___CATEGORICAL___nom_9___3f2446f39": 7204, "15___CATEGORICAL___nom_9___3f27d8052": 7205, "15___CATEGORICAL___nom_9___3f2a6b542": 7206, "15___CATEGORICAL___nom_9___3f2e45929": 7207, "15___CATEGORICAL___nom_9___3f33cb582": 7208, "15___CATEGORICAL___nom_9___3f36154c1": 7209, "15___CATEGORICAL___nom_9___3f37ca5f0": 7210, "15___CATEGORICAL___nom_9___3f3b2b9b9": 7211, "15___CATEGORICAL___nom_9___3f3bda136": 7212, "15___CATEGORICAL___nom_9___3f46bec5a": 7213, "15___CATEGORICAL___nom_9___3f4c9a599": 7214, "15___CATEGORICAL___nom_9___3f52b2470": 7215, "15___CATEGORICAL___nom_9___3f56481d8": 7216, "15___CATEGORICAL___nom_9___3f59ea7fb": 7217, "15___CATEGORICAL___nom_9___3f61f5ec0": 7218, "15___CATEGORICAL___nom_9___3f6370e54": 7219, "15___CATEGORICAL___nom_9___3f64a2bb4": 7220, "15___CATEGORICAL___nom_9___3f68d0059": 7221, "15___CATEGORICAL___nom_9___3f69e641d": 7222, "15___CATEGORICAL___nom_9___3f700a73b": 7223, "15___CATEGORICAL___nom_9___3f715098d": 7224, "15___CATEGORICAL___nom_9___3f7591cfa": 7225, "15___CATEGORICAL___nom_9___3f7e083bd": 7226, "15___CATEGORICAL___nom_9___3f7e4acd4": 7227, "15___CATEGORICAL___nom_9___3f7e590d2": 7228, "15___CATEGORICAL___nom_9___3f9427d4c": 7229, "15___CATEGORICAL___nom_9___3f9eb2e74": 7230, "15___CATEGORICAL___nom_9___3fa0ef960": 7231, "15___CATEGORICAL___nom_9___3fa5105a3": 7232, "15___CATEGORICAL___nom_9___3faa3aa07": 7233, "15___CATEGORICAL___nom_9___3fad6db7e": 7234, "15___CATEGORICAL___nom_9___3fb0f9155": 7235, "15___CATEGORICAL___nom_9___3fbbdd78c": 7236, "15___CATEGORICAL___nom_9___3fc26e3ba": 7237, "15___CATEGORICAL___nom_9___3fd3e5405": 7238, "15___CATEGORICAL___nom_9___3fdc4459b": 7239, "15___CATEGORICAL___nom_9___3fe4790ad": 7240, "15___CATEGORICAL___nom_9___3fe4ec6f7": 7241, "15___CATEGORICAL___nom_9___3ff17f074": 7242, "15___CATEGORICAL___nom_9___3ff518600": 7243, "15___CATEGORICAL___nom_9___3ff5614d5": 7244, "15___CATEGORICAL___nom_9___4004b4fae": 7245, "15___CATEGORICAL___nom_9___400935cc6": 7246, "15___CATEGORICAL___nom_9___4009ffc06": 7247, "15___CATEGORICAL___nom_9___4014c7b4c": 7248, "15___CATEGORICAL___nom_9___4015a0a50": 7249, "15___CATEGORICAL___nom_9___4019faa35": 7250, "15___CATEGORICAL___nom_9___401c2455c": 7251, "15___CATEGORICAL___nom_9___401dcfda1": 7252, "15___CATEGORICAL___nom_9___401f8d76f": 7253, "15___CATEGORICAL___nom_9___4025d6d4f": 7254, "15___CATEGORICAL___nom_9___402f224f3": 7255, "15___CATEGORICAL___nom_9___4035d1e53": 7256, "15___CATEGORICAL___nom_9___403af285c": 7257, "15___CATEGORICAL___nom_9___403db0d8a": 7258, "15___CATEGORICAL___nom_9___403f98af1": 7259, "15___CATEGORICAL___nom_9___4046c3eae": 7260, "15___CATEGORICAL___nom_9___404a40ab9": 7261, "15___CATEGORICAL___nom_9___404ad3101": 7262, "15___CATEGORICAL___nom_9___405871c33": 7263, "15___CATEGORICAL___nom_9___405e6992f": 7264, "15___CATEGORICAL___nom_9___406599fef": 7265, "15___CATEGORICAL___nom_9___4065a77b9": 7266, "15___CATEGORICAL___nom_9___40670a376": 7267, "15___CATEGORICAL___nom_9___406be08bf": 7268, "15___CATEGORICAL___nom_9___406c59a36": 7269, "15___CATEGORICAL___nom_9___406e89a5a": 7270, "15___CATEGORICAL___nom_9___40729cc55": 7271, "15___CATEGORICAL___nom_9___4078272e7": 7272, "15___CATEGORICAL___nom_9___40872f767": 7273, "15___CATEGORICAL___nom_9___408d874ff": 7274, "15___CATEGORICAL___nom_9___40930f265": 7275, "15___CATEGORICAL___nom_9___4094c7c4e": 7276, "15___CATEGORICAL___nom_9___4099c9765": 7277, "15___CATEGORICAL___nom_9___40a1c4a52": 7278, "15___CATEGORICAL___nom_9___40a41802c": 7279, "15___CATEGORICAL___nom_9___40a9af86f": 7280, "15___CATEGORICAL___nom_9___40b44b790": 7281, "15___CATEGORICAL___nom_9___40ba84f03": 7282, "15___CATEGORICAL___nom_9___40bb8c0c4": 7283, "15___CATEGORICAL___nom_9___40bd20388": 7284, "15___CATEGORICAL___nom_9___40c71e317": 7285, "15___CATEGORICAL___nom_9___40ca51b51": 7286, "15___CATEGORICAL___nom_9___40cc5e2ff": 7287, "15___CATEGORICAL___nom_9___40cd11628": 7288, "15___CATEGORICAL___nom_9___40db7671e": 7289, "15___CATEGORICAL___nom_9___40dc421ae": 7290, "15___CATEGORICAL___nom_9___40dfbce2e": 7291, "15___CATEGORICAL___nom_9___40e1bf207": 7292, "15___CATEGORICAL___nom_9___40f2aaabf": 7293, "15___CATEGORICAL___nom_9___410143e5c": 7294, "15___CATEGORICAL___nom_9___410714e3e": 7295, "15___CATEGORICAL___nom_9___41076ba1f": 7296, "15___CATEGORICAL___nom_9___410de24e1": 7297, "15___CATEGORICAL___nom_9___411b39272": 7298, "15___CATEGORICAL___nom_9___411c0c339": 7299, "15___CATEGORICAL___nom_9___411e40369": 7300, "15___CATEGORICAL___nom_9___41234c146": 7301, "15___CATEGORICAL___nom_9___41248d036": 7302, "15___CATEGORICAL___nom_9___41284eba2": 7303, "15___CATEGORICAL___nom_9___412859a59": 7304, "15___CATEGORICAL___nom_9___412ca1566": 7305, "15___CATEGORICAL___nom_9___412ef254d": 7306, "15___CATEGORICAL___nom_9___41311a04d": 7307, "15___CATEGORICAL___nom_9___414a16f1a": 7308, "15___CATEGORICAL___nom_9___414a3f332": 7309, "15___CATEGORICAL___nom_9___415139226": 7310, "15___CATEGORICAL___nom_9___4154feb7b": 7311, "15___CATEGORICAL___nom_9___4159610ef": 7312, "15___CATEGORICAL___nom_9___415ba90fa": 7313, "15___CATEGORICAL___nom_9___415fa4c0c": 7314, "15___CATEGORICAL___nom_9___4169647bd": 7315, "15___CATEGORICAL___nom_9___4169817e0": 7316, "15___CATEGORICAL___nom_9___416ab4cf7": 7317, "15___CATEGORICAL___nom_9___416ba5bb5": 7318, "15___CATEGORICAL___nom_9___417038367": 7319, "15___CATEGORICAL___nom_9___417d53105": 7320, "15___CATEGORICAL___nom_9___418a20eaf": 7321, "15___CATEGORICAL___nom_9___418c648dc": 7322, "15___CATEGORICAL___nom_9___418e44154": 7323, "15___CATEGORICAL___nom_9___418eddb34": 7324, "15___CATEGORICAL___nom_9___4198514cc": 7325, "15___CATEGORICAL___nom_9___4198b05d5": 7326, "15___CATEGORICAL___nom_9___4198e8b58": 7327, "15___CATEGORICAL___nom_9___41a291c12": 7328, "15___CATEGORICAL___nom_9___41a2a4ca1": 7329, "15___CATEGORICAL___nom_9___41a45a4fb": 7330, "15___CATEGORICAL___nom_9___41aded992": 7331, "15___CATEGORICAL___nom_9___41af7efcd": 7332, "15___CATEGORICAL___nom_9___41b3342b6": 7333, "15___CATEGORICAL___nom_9___41bb9033e": 7334, "15___CATEGORICAL___nom_9___41bc8d168": 7335, "15___CATEGORICAL___nom_9___41c1277c8": 7336, "15___CATEGORICAL___nom_9___41ca666b6": 7337, "15___CATEGORICAL___nom_9___41cc561ab": 7338, "15___CATEGORICAL___nom_9___41d1c1733": 7339, "15___CATEGORICAL___nom_9___41d831884": 7340, "15___CATEGORICAL___nom_9___41df37a52": 7341, "15___CATEGORICAL___nom_9___41e6a3da0": 7342, "15___CATEGORICAL___nom_9___420fe49dc": 7343, "15___CATEGORICAL___nom_9___4218ddf89": 7344, "15___CATEGORICAL___nom_9___421d42654": 7345, "15___CATEGORICAL___nom_9___421ea02a5": 7346, "15___CATEGORICAL___nom_9___4224a071a": 7347, "15___CATEGORICAL___nom_9___4228af8e2": 7348, "15___CATEGORICAL___nom_9___422e08aa2": 7349, "15___CATEGORICAL___nom_9___423029b5d": 7350, "15___CATEGORICAL___nom_9___4231a4ed1": 7351, "15___CATEGORICAL___nom_9___423801297": 7352, "15___CATEGORICAL___nom_9___42385088b": 7353, "15___CATEGORICAL___nom_9___4239869fa": 7354, "15___CATEGORICAL___nom_9___423d0e690": 7355, "15___CATEGORICAL___nom_9___425033fa2": 7356, "15___CATEGORICAL___nom_9___425f3fb84": 7357, "15___CATEGORICAL___nom_9___4264eca5b": 7358, "15___CATEGORICAL___nom_9___426603075": 7359, "15___CATEGORICAL___nom_9___4266d66d8": 7360, "15___CATEGORICAL___nom_9___426b5301d": 7361, "15___CATEGORICAL___nom_9___426d9551e": 7362, "15___CATEGORICAL___nom_9___42814865d": 7363, "15___CATEGORICAL___nom_9___4281cf5b9": 7364, "15___CATEGORICAL___nom_9___428bafb77": 7365, "15___CATEGORICAL___nom_9___428d5bad6": 7366, "15___CATEGORICAL___nom_9___428e60b19": 7367, "15___CATEGORICAL___nom_9___428f741ce": 7368, "15___CATEGORICAL___nom_9___429239951": 7369, "15___CATEGORICAL___nom_9___42930083b": 7370, "15___CATEGORICAL___nom_9___42946cd3b": 7371, "15___CATEGORICAL___nom_9___42968a059": 7372, "15___CATEGORICAL___nom_9___42981a766": 7373, "15___CATEGORICAL___nom_9___4299f8580": 7374, "15___CATEGORICAL___nom_9___429cd329e": 7375, "15___CATEGORICAL___nom_9___429f4cd70": 7376, "15___CATEGORICAL___nom_9___42a7b1cfa": 7377, "15___CATEGORICAL___nom_9___42ab1504f": 7378, "15___CATEGORICAL___nom_9___42ae959b2": 7379, "15___CATEGORICAL___nom_9___42b7a0ebd": 7380, "15___CATEGORICAL___nom_9___42b90842d": 7381, "15___CATEGORICAL___nom_9___42bf1e5f7": 7382, "15___CATEGORICAL___nom_9___42c926603": 7383, "15___CATEGORICAL___nom_9___42d0006b6": 7384, "15___CATEGORICAL___nom_9___42dadb180": 7385, "15___CATEGORICAL___nom_9___42e05b3de": 7386, "15___CATEGORICAL___nom_9___42ed011c9": 7387, "15___CATEGORICAL___nom_9___42edfa4eb": 7388, "15___CATEGORICAL___nom_9___42ee49463": 7389, "15___CATEGORICAL___nom_9___42f4801b2": 7390, "15___CATEGORICAL___nom_9___42f5648a3": 7391, "15___CATEGORICAL___nom_9___42fc3bc6b": 7392, "15___CATEGORICAL___nom_9___42fc980eb": 7393, "15___CATEGORICAL___nom_9___42fcffe95": 7394, "15___CATEGORICAL___nom_9___430677d1d": 7395, "15___CATEGORICAL___nom_9___430dafb35": 7396, "15___CATEGORICAL___nom_9___430ed645f": 7397, "15___CATEGORICAL___nom_9___431645ec8": 7398, "15___CATEGORICAL___nom_9___431ba8c6c": 7399, "15___CATEGORICAL___nom_9___4326aaf90": 7400, "15___CATEGORICAL___nom_9___4328dec27": 7401, "15___CATEGORICAL___nom_9___432918cfd": 7402, "15___CATEGORICAL___nom_9___432b05f42": 7403, "15___CATEGORICAL___nom_9___4338d77d3": 7404, "15___CATEGORICAL___nom_9___433ddf917": 7405, "15___CATEGORICAL___nom_9___434047bc2": 7406, "15___CATEGORICAL___nom_9___434958bd4": 7407, "15___CATEGORICAL___nom_9___434a9207a": 7408, "15___CATEGORICAL___nom_9___43500b15c": 7409, "15___CATEGORICAL___nom_9___4351e49c3": 7410, "15___CATEGORICAL___nom_9___435ba7bfa": 7411, "15___CATEGORICAL___nom_9___4366e4ae5": 7412, "15___CATEGORICAL___nom_9___4367f5631": 7413, "15___CATEGORICAL___nom_9___437b64140": 7414, "15___CATEGORICAL___nom_9___437b8ec56": 7415, "15___CATEGORICAL___nom_9___437bc69a0": 7416, "15___CATEGORICAL___nom_9___437f0a790": 7417, "15___CATEGORICAL___nom_9___437fb0e31": 7418, "15___CATEGORICAL___nom_9___438a44dd8": 7419, "15___CATEGORICAL___nom_9___439b441b2": 7420, "15___CATEGORICAL___nom_9___439bb0d59": 7421, "15___CATEGORICAL___nom_9___439d8e6c9": 7422, "15___CATEGORICAL___nom_9___43a33ce4d": 7423, "15___CATEGORICAL___nom_9___43b9f3770": 7424, "15___CATEGORICAL___nom_9___43bb321c6": 7425, "15___CATEGORICAL___nom_9___43bb80280": 7426, "15___CATEGORICAL___nom_9___43bcb9892": 7427, "15___CATEGORICAL___nom_9___43c657c83": 7428, "15___CATEGORICAL___nom_9___43c7347c2": 7429, "15___CATEGORICAL___nom_9___43ca73657": 7430, "15___CATEGORICAL___nom_9___43cca6dec": 7431, "15___CATEGORICAL___nom_9___43ccd2f67": 7432, "15___CATEGORICAL___nom_9___43de1b642": 7433, "15___CATEGORICAL___nom_9___43eb45e20": 7434, "15___CATEGORICAL___nom_9___43f095c4c": 7435, "15___CATEGORICAL___nom_9___43fdd568f": 7436, "15___CATEGORICAL___nom_9___43fe49fd2": 7437, "15___CATEGORICAL___nom_9___43ff2454e": 7438, "15___CATEGORICAL___nom_9___43ff3249f": 7439, "15___CATEGORICAL___nom_9___44078254c": 7440, "15___CATEGORICAL___nom_9___440c719e2": 7441, "15___CATEGORICAL___nom_9___44129f54e": 7442, "15___CATEGORICAL___nom_9___4414406a8": 7443, "15___CATEGORICAL___nom_9___4414f01d2": 7444, "15___CATEGORICAL___nom_9___441bc1eba": 7445, "15___CATEGORICAL___nom_9___4424f90f1": 7446, "15___CATEGORICAL___nom_9___443253a7d": 7447, "15___CATEGORICAL___nom_9___443727061": 7448, "15___CATEGORICAL___nom_9___443944829": 7449, "15___CATEGORICAL___nom_9___443af4354": 7450, "15___CATEGORICAL___nom_9___443e28d3a": 7451, "15___CATEGORICAL___nom_9___44442f13c": 7452, "15___CATEGORICAL___nom_9___44484cae0": 7453, "15___CATEGORICAL___nom_9___444982355": 7454, "15___CATEGORICAL___nom_9___444b83946": 7455, "15___CATEGORICAL___nom_9___444c9fded": 7456, "15___CATEGORICAL___nom_9___44510096e": 7457, "15___CATEGORICAL___nom_9___4460c4548": 7458, "15___CATEGORICAL___nom_9___44634b579": 7459, "15___CATEGORICAL___nom_9___446517558": 7460, "15___CATEGORICAL___nom_9___4465f6c38": 7461, "15___CATEGORICAL___nom_9___4466b1160": 7462, "15___CATEGORICAL___nom_9___4474b83ff": 7463, "15___CATEGORICAL___nom_9___447c2fbd0": 7464, "15___CATEGORICAL___nom_9___4481a10ea": 7465, "15___CATEGORICAL___nom_9___44a415799": 7466, "15___CATEGORICAL___nom_9___44a998544": 7467, "15___CATEGORICAL___nom_9___44aa78478": 7468, "15___CATEGORICAL___nom_9___44acc9af3": 7469, "15___CATEGORICAL___nom_9___44c14a63c": 7470, "15___CATEGORICAL___nom_9___44cc714a9": 7471, "15___CATEGORICAL___nom_9___44d91f10c": 7472, "15___CATEGORICAL___nom_9___44e54e5ed": 7473, "15___CATEGORICAL___nom_9___44ea6a04a": 7474, "15___CATEGORICAL___nom_9___44eb14fb0": 7475, "15___CATEGORICAL___nom_9___44ef0de50": 7476, "15___CATEGORICAL___nom_9___44f9824e5": 7477, "15___CATEGORICAL___nom_9___44ff5d9a8": 7478, "15___CATEGORICAL___nom_9___44ffd907d": 7479, "15___CATEGORICAL___nom_9___44ffe2764": 7480, "15___CATEGORICAL___nom_9___44fff581a": 7481, "15___CATEGORICAL___nom_9___450be1ce2": 7482, "15___CATEGORICAL___nom_9___450d20abd": 7483, "15___CATEGORICAL___nom_9___4510d1b09": 7484, "15___CATEGORICAL___nom_9___4513a881e": 7485, "15___CATEGORICAL___nom_9___452bbfbe9": 7486, "15___CATEGORICAL___nom_9___452d268f6": 7487, "15___CATEGORICAL___nom_9___45311d436": 7488, "15___CATEGORICAL___nom_9___45399c9ad": 7489, "15___CATEGORICAL___nom_9___4541daa35": 7490, "15___CATEGORICAL___nom_9___454a73725": 7491, "15___CATEGORICAL___nom_9___45579b8b1": 7492, "15___CATEGORICAL___nom_9___4558357dd": 7493, "15___CATEGORICAL___nom_9___455af555a": 7494, "15___CATEGORICAL___nom_9___455eb5842": 7495, "15___CATEGORICAL___nom_9___456031bec": 7496, "15___CATEGORICAL___nom_9___456633874": 7497, "15___CATEGORICAL___nom_9___4567c63c0": 7498, "15___CATEGORICAL___nom_9___456971f87": 7499, "15___CATEGORICAL___nom_9___458667ded": 7500, "15___CATEGORICAL___nom_9___458822463": 7501, "15___CATEGORICAL___nom_9___458de7842": 7502, "15___CATEGORICAL___nom_9___458e8682a": 7503, "15___CATEGORICAL___nom_9___458ead51e": 7504, "15___CATEGORICAL___nom_9___4592e1455": 7505, "15___CATEGORICAL___nom_9___4593818c9": 7506, "15___CATEGORICAL___nom_9___45949a69e": 7507, "15___CATEGORICAL___nom_9___459795e18": 7508, "15___CATEGORICAL___nom_9___45a3e5f6a": 7509, "15___CATEGORICAL___nom_9___45a818b44": 7510, "15___CATEGORICAL___nom_9___45affc10b": 7511, "15___CATEGORICAL___nom_9___45b1aec17": 7512, "15___CATEGORICAL___nom_9___45b66919e": 7513, "15___CATEGORICAL___nom_9___45c818e6f": 7514, "15___CATEGORICAL___nom_9___45cf19d01": 7515, "15___CATEGORICAL___nom_9___45d51b0f2": 7516, "15___CATEGORICAL___nom_9___45d6ca1ed": 7517, "15___CATEGORICAL___nom_9___45dab63fa": 7518, "15___CATEGORICAL___nom_9___45dcfa20c": 7519, "15___CATEGORICAL___nom_9___45e6e6410": 7520, "15___CATEGORICAL___nom_9___45e898ebb": 7521, "15___CATEGORICAL___nom_9___45ed1cfc8": 7522, "15___CATEGORICAL___nom_9___45f8053ed": 7523, "15___CATEGORICAL___nom_9___460931882": 7524, "15___CATEGORICAL___nom_9___46097db73": 7525, "15___CATEGORICAL___nom_9___460999a3b": 7526, "15___CATEGORICAL___nom_9___460d61b1b": 7527, "15___CATEGORICAL___nom_9___46103563f": 7528, "15___CATEGORICAL___nom_9___46285355f": 7529, "15___CATEGORICAL___nom_9___462d18334": 7530, "15___CATEGORICAL___nom_9___462f5087b": 7531, "15___CATEGORICAL___nom_9___463485009": 7532, "15___CATEGORICAL___nom_9___4635b8310": 7533, "15___CATEGORICAL___nom_9___463bb923e": 7534, "15___CATEGORICAL___nom_9___4642126a2": 7535, "15___CATEGORICAL___nom_9___4642e6897": 7536, "15___CATEGORICAL___nom_9___464a765b7": 7537, "15___CATEGORICAL___nom_9___465497dc7": 7538, "15___CATEGORICAL___nom_9___465ffb0fb": 7539, "15___CATEGORICAL___nom_9___46646bcf4": 7540, "15___CATEGORICAL___nom_9___46658ecf3": 7541, "15___CATEGORICAL___nom_9___46690fde6": 7542, "15___CATEGORICAL___nom_9___466d25288": 7543, "15___CATEGORICAL___nom_9___466f0fe93": 7544, "15___CATEGORICAL___nom_9___4674a56f2": 7545, "15___CATEGORICAL___nom_9___46764ab3e": 7546, "15___CATEGORICAL___nom_9___467ba09b5": 7547, "15___CATEGORICAL___nom_9___467ff7263": 7548, "15___CATEGORICAL___nom_9___468762b60": 7549, "15___CATEGORICAL___nom_9___4687bffb6": 7550, "15___CATEGORICAL___nom_9___468af308d": 7551, "15___CATEGORICAL___nom_9___468b54425": 7552, "15___CATEGORICAL___nom_9___468c8e925": 7553, "15___CATEGORICAL___nom_9___469008f90": 7554, "15___CATEGORICAL___nom_9___4691f847d": 7555, "15___CATEGORICAL___nom_9___4699f3d31": 7556, "15___CATEGORICAL___nom_9___46a066959": 7557, "15___CATEGORICAL___nom_9___46a9885ac": 7558, "15___CATEGORICAL___nom_9___46aabff73": 7559, "15___CATEGORICAL___nom_9___46aaf996d": 7560, "15___CATEGORICAL___nom_9___46ac4abd5": 7561, "15___CATEGORICAL___nom_9___46af894c6": 7562, "15___CATEGORICAL___nom_9___46b472cdb": 7563, "15___CATEGORICAL___nom_9___46b51a717": 7564, "15___CATEGORICAL___nom_9___46bb151c5": 7565, "15___CATEGORICAL___nom_9___46ce8acaf": 7566, "15___CATEGORICAL___nom_9___46e2de4b9": 7567, "15___CATEGORICAL___nom_9___46e961406": 7568, "15___CATEGORICAL___nom_9___46ebf483e": 7569, "15___CATEGORICAL___nom_9___46f77fe56": 7570, "15___CATEGORICAL___nom_9___4702e587d": 7571, "15___CATEGORICAL___nom_9___4705a9cb7": 7572, "15___CATEGORICAL___nom_9___4726e69a6": 7573, "15___CATEGORICAL___nom_9___47334fb8e": 7574, "15___CATEGORICAL___nom_9___4741666f1": 7575, "15___CATEGORICAL___nom_9___47417ba14": 7576, "15___CATEGORICAL___nom_9___47491a8fc": 7577, "15___CATEGORICAL___nom_9___474b96ed5": 7578, "15___CATEGORICAL___nom_9___474fa48c6": 7579, "15___CATEGORICAL___nom_9___474fa4ad3": 7580, "15___CATEGORICAL___nom_9___47569aa73": 7581, "15___CATEGORICAL___nom_9___4760b40fe": 7582, "15___CATEGORICAL___nom_9___4765cb5ed": 7583, "15___CATEGORICAL___nom_9___476b0d24f": 7584, "15___CATEGORICAL___nom_9___47755ab14": 7585, "15___CATEGORICAL___nom_9___47765fe60": 7586, "15___CATEGORICAL___nom_9___477669ead": 7587, "15___CATEGORICAL___nom_9___4778a8ffc": 7588, "15___CATEGORICAL___nom_9___4779e1a8b": 7589, "15___CATEGORICAL___nom_9___47805adc7": 7590, "15___CATEGORICAL___nom_9___478189852": 7591, "15___CATEGORICAL___nom_9___478623b84": 7592, "15___CATEGORICAL___nom_9___47879c1f4": 7593, "15___CATEGORICAL___nom_9___4787f880b": 7594, "15___CATEGORICAL___nom_9___4791b8730": 7595, "15___CATEGORICAL___nom_9___479444082": 7596, "15___CATEGORICAL___nom_9___4796a755e": 7597, "15___CATEGORICAL___nom_9___4796e7b76": 7598, "15___CATEGORICAL___nom_9___479b83f59": 7599, "15___CATEGORICAL___nom_9___47a262cc2": 7600, "15___CATEGORICAL___nom_9___47aed12b5": 7601, "15___CATEGORICAL___nom_9___47b20440d": 7602, "15___CATEGORICAL___nom_9___47b2ecfee": 7603, "15___CATEGORICAL___nom_9___47baf6f70": 7604, "15___CATEGORICAL___nom_9___47ca2382a": 7605, "15___CATEGORICAL___nom_9___47d328064": 7606, "15___CATEGORICAL___nom_9___47d38e9d3": 7607, "15___CATEGORICAL___nom_9___47d43fbfb": 7608, "15___CATEGORICAL___nom_9___47eae8707": 7609, "15___CATEGORICAL___nom_9___47f02a065": 7610, "15___CATEGORICAL___nom_9___47f3905f5": 7611, "15___CATEGORICAL___nom_9___47fc00e2a": 7612, "15___CATEGORICAL___nom_9___47ff1430e": 7613, "15___CATEGORICAL___nom_9___48039a325": 7614, "15___CATEGORICAL___nom_9___480798d50": 7615, "15___CATEGORICAL___nom_9___480cd4a60": 7616, "15___CATEGORICAL___nom_9___480f94084": 7617, "15___CATEGORICAL___nom_9___481d2e6c0": 7618, "15___CATEGORICAL___nom_9___4822f387b": 7619, "15___CATEGORICAL___nom_9___4832b51cd": 7620, "15___CATEGORICAL___nom_9___483650733": 7621, "15___CATEGORICAL___nom_9___483a0f640": 7622, "15___CATEGORICAL___nom_9___483c9e4f2": 7623, "15___CATEGORICAL___nom_9___483ca632f": 7624, "15___CATEGORICAL___nom_9___4840a3260": 7625, "15___CATEGORICAL___nom_9___4845d4dc3": 7626, "15___CATEGORICAL___nom_9___484c667fb": 7627, "15___CATEGORICAL___nom_9___4874f2f86": 7628, "15___CATEGORICAL___nom_9___487d1f462": 7629, "15___CATEGORICAL___nom_9___48847122b": 7630, "15___CATEGORICAL___nom_9___488795af2": 7631, "15___CATEGORICAL___nom_9___488c82a9c": 7632, "15___CATEGORICAL___nom_9___48930516b": 7633, "15___CATEGORICAL___nom_9___4894815c2": 7634, "15___CATEGORICAL___nom_9___489d6817e": 7635, "15___CATEGORICAL___nom_9___489d99cc5": 7636, "15___CATEGORICAL___nom_9___48a38b7dd": 7637, "15___CATEGORICAL___nom_9___48b41ed66": 7638, "15___CATEGORICAL___nom_9___48b820543": 7639, "15___CATEGORICAL___nom_9___48c11a62d": 7640, "15___CATEGORICAL___nom_9___48c25e936": 7641, "15___CATEGORICAL___nom_9___48cbf1785": 7642, "15___CATEGORICAL___nom_9___48cd521de": 7643, "15___CATEGORICAL___nom_9___48e13c746": 7644, "15___CATEGORICAL___nom_9___48e308537": 7645, "15___CATEGORICAL___nom_9___48e541d55": 7646, "15___CATEGORICAL___nom_9___48f945ecd": 7647, "15___CATEGORICAL___nom_9___4903dc012": 7648, "15___CATEGORICAL___nom_9___490543f68": 7649, "15___CATEGORICAL___nom_9___4905954ac": 7650, "15___CATEGORICAL___nom_9___49066667d": 7651, "15___CATEGORICAL___nom_9___491298588": 7652, "15___CATEGORICAL___nom_9___4913d543d": 7653, "15___CATEGORICAL___nom_9___4917d3e75": 7654, "15___CATEGORICAL___nom_9___491b1f17a": 7655, "15___CATEGORICAL___nom_9___492d00b94": 7656, "15___CATEGORICAL___nom_9___493b62229": 7657, "15___CATEGORICAL___nom_9___493b6a2d8": 7658, "15___CATEGORICAL___nom_9___493ed719e": 7659, "15___CATEGORICAL___nom_9___493f93a34": 7660, "15___CATEGORICAL___nom_9___49401bf74": 7661, "15___CATEGORICAL___nom_9___4947f5b1c": 7662, "15___CATEGORICAL___nom_9___494abb962": 7663, "15___CATEGORICAL___nom_9___4952bc209": 7664, "15___CATEGORICAL___nom_9___495634f46": 7665, "15___CATEGORICAL___nom_9___4956d25e4": 7666, "15___CATEGORICAL___nom_9___495e7f681": 7667, "15___CATEGORICAL___nom_9___49652e383": 7668, "15___CATEGORICAL___nom_9___49699f09b": 7669, "15___CATEGORICAL___nom_9___496ec15cf": 7670, "15___CATEGORICAL___nom_9___49714f139": 7671, "15___CATEGORICAL___nom_9___4988ea648": 7672, "15___CATEGORICAL___nom_9___498a6ba3c": 7673, "15___CATEGORICAL___nom_9___49936e962": 7674, "15___CATEGORICAL___nom_9___499b25423": 7675, "15___CATEGORICAL___nom_9___499c34e6d": 7676, "15___CATEGORICAL___nom_9___49a805285": 7677, "15___CATEGORICAL___nom_9___49ab4886d": 7678, "15___CATEGORICAL___nom_9___49abb069e": 7679, "15___CATEGORICAL___nom_9___49b06c91c": 7680, "15___CATEGORICAL___nom_9___49b3be9a8": 7681, "15___CATEGORICAL___nom_9___49bb20e0d": 7682, "15___CATEGORICAL___nom_9___49c48c739": 7683, "15___CATEGORICAL___nom_9___49ce42a45": 7684, "15___CATEGORICAL___nom_9___49cf10892": 7685, "15___CATEGORICAL___nom_9___49d9b1fa8": 7686, "15___CATEGORICAL___nom_9___49dd3cf6b": 7687, "15___CATEGORICAL___nom_9___49e53fe1e": 7688, "15___CATEGORICAL___nom_9___49ebf582d": 7689, "15___CATEGORICAL___nom_9___49ee7aef2": 7690, "15___CATEGORICAL___nom_9___49f950ced": 7691, "15___CATEGORICAL___nom_9___49ff85428": 7692, "15___CATEGORICAL___nom_9___4a01b84b0": 7693, "15___CATEGORICAL___nom_9___4a0e747c8": 7694, "15___CATEGORICAL___nom_9___4a19bf303": 7695, "15___CATEGORICAL___nom_9___4a1d971b2": 7696, "15___CATEGORICAL___nom_9___4a1dc5715": 7697, "15___CATEGORICAL___nom_9___4a23457fc": 7698, "15___CATEGORICAL___nom_9___4a39e9050": 7699, "15___CATEGORICAL___nom_9___4a3a6f8c5": 7700, "15___CATEGORICAL___nom_9___4a3fe89b6": 7701, "15___CATEGORICAL___nom_9___4a41289b7": 7702, "15___CATEGORICAL___nom_9___4a449ebfb": 7703, "15___CATEGORICAL___nom_9___4a47b29fc": 7704, "15___CATEGORICAL___nom_9___4a4b7a6fc": 7705, "15___CATEGORICAL___nom_9___4a5a4f2b1": 7706, "15___CATEGORICAL___nom_9___4a5d0154c": 7707, "15___CATEGORICAL___nom_9___4a62c8dd8": 7708, "15___CATEGORICAL___nom_9___4a7061045": 7709, "15___CATEGORICAL___nom_9___4a74c96d4": 7710, "15___CATEGORICAL___nom_9___4a759a249": 7711, "15___CATEGORICAL___nom_9___4a75ee299": 7712, "15___CATEGORICAL___nom_9___4a7abddeb": 7713, "15___CATEGORICAL___nom_9___4a7d5cdfb": 7714, "15___CATEGORICAL___nom_9___4a895d563": 7715, "15___CATEGORICAL___nom_9___4a8b38778": 7716, "15___CATEGORICAL___nom_9___4a8c0ed2a": 7717, "15___CATEGORICAL___nom_9___4a91d94a8": 7718, "15___CATEGORICAL___nom_9___4a9854d71": 7719, "15___CATEGORICAL___nom_9___4a98d9fc1": 7720, "15___CATEGORICAL___nom_9___4a9f6e8be": 7721, "15___CATEGORICAL___nom_9___4aabfb21e": 7722, "15___CATEGORICAL___nom_9___4ab009882": 7723, "15___CATEGORICAL___nom_9___4ab07f10e": 7724, "15___CATEGORICAL___nom_9___4ab1e5e0e": 7725, "15___CATEGORICAL___nom_9___4ab428bd2": 7726, "15___CATEGORICAL___nom_9___4ab48ebd6": 7727, "15___CATEGORICAL___nom_9___4abb5d2e6": 7728, "15___CATEGORICAL___nom_9___4abbb58c2": 7729, "15___CATEGORICAL___nom_9___4abd6fdc5": 7730, "15___CATEGORICAL___nom_9___4abfc71d4": 7731, "15___CATEGORICAL___nom_9___4ac497d58": 7732, "15___CATEGORICAL___nom_9___4ac70f076": 7733, "15___CATEGORICAL___nom_9___4ac8f3ae1": 7734, "15___CATEGORICAL___nom_9___4ad4a1794": 7735, "15___CATEGORICAL___nom_9___4ad5d67e5": 7736, "15___CATEGORICAL___nom_9___4adbc705d": 7737, "15___CATEGORICAL___nom_9___4af34160d": 7738, "15___CATEGORICAL___nom_9___4af80cbc9": 7739, "15___CATEGORICAL___nom_9___4b10cbc52": 7740, "15___CATEGORICAL___nom_9___4b127b1d1": 7741, "15___CATEGORICAL___nom_9___4b2d74526": 7742, "15___CATEGORICAL___nom_9___4b3156ec9": 7743, "15___CATEGORICAL___nom_9___4b3450cca": 7744, "15___CATEGORICAL___nom_9___4b4548ae7": 7745, "15___CATEGORICAL___nom_9___4b454c12c": 7746, "15___CATEGORICAL___nom_9___4b4658720": 7747, "15___CATEGORICAL___nom_9___4b49ffd5a": 7748, "15___CATEGORICAL___nom_9___4b4be03a2": 7749, "15___CATEGORICAL___nom_9___4b4daa170": 7750, "15___CATEGORICAL___nom_9___4b5ede9d4": 7751, "15___CATEGORICAL___nom_9___4b64bf63a": 7752, "15___CATEGORICAL___nom_9___4b6d710d8": 7753, "15___CATEGORICAL___nom_9___4b6f8e855": 7754, "15___CATEGORICAL___nom_9___4b732aa3f": 7755, "15___CATEGORICAL___nom_9___4b78a65a9": 7756, "15___CATEGORICAL___nom_9___4b7a614ad": 7757, "15___CATEGORICAL___nom_9___4b8e1dec5": 7758, "15___CATEGORICAL___nom_9___4b9762152": 7759, "15___CATEGORICAL___nom_9___4b9962af0": 7760, "15___CATEGORICAL___nom_9___4b9f4d905": 7761, "15___CATEGORICAL___nom_9___4b9fe1ed6": 7762, "15___CATEGORICAL___nom_9___4baa5c678": 7763, "15___CATEGORICAL___nom_9___4bae1d73c": 7764, "15___CATEGORICAL___nom_9___4bb018733": 7765, "15___CATEGORICAL___nom_9___4bbde826e": 7766, "15___CATEGORICAL___nom_9___4bc0be4a3": 7767, "15___CATEGORICAL___nom_9___4bc1a18a8": 7768, "15___CATEGORICAL___nom_9___4bc442b52": 7769, "15___CATEGORICAL___nom_9___4bc7856cc": 7770, "15___CATEGORICAL___nom_9___4bcc9907e": 7771, "15___CATEGORICAL___nom_9___4bcd85985": 7772, "15___CATEGORICAL___nom_9___4bd6aad2a": 7773, "15___CATEGORICAL___nom_9___4bdc53788": 7774, "15___CATEGORICAL___nom_9___4bf40a3e8": 7775, "15___CATEGORICAL___nom_9___4bfcb110f": 7776, "15___CATEGORICAL___nom_9___4c044a7e1": 7777, "15___CATEGORICAL___nom_9___4c0749a12": 7778, "15___CATEGORICAL___nom_9___4c07f9560": 7779, "15___CATEGORICAL___nom_9___4c0f35fd7": 7780, "15___CATEGORICAL___nom_9___4c1ac3ce1": 7781, "15___CATEGORICAL___nom_9___4c1d87ca4": 7782, "15___CATEGORICAL___nom_9___4c1e8702a": 7783, "15___CATEGORICAL___nom_9___4c1eb1e3f": 7784, "15___CATEGORICAL___nom_9___4c23f5569": 7785, "15___CATEGORICAL___nom_9___4c2f31f87": 7786, "15___CATEGORICAL___nom_9___4c356ac78": 7787, "15___CATEGORICAL___nom_9___4c38300d6": 7788, "15___CATEGORICAL___nom_9___4c3a02417": 7789, "15___CATEGORICAL___nom_9___4c3d12442": 7790, "15___CATEGORICAL___nom_9___4c4d08522": 7791, "15___CATEGORICAL___nom_9___4c59ba502": 7792, "15___CATEGORICAL___nom_9___4c612fddb": 7793, "15___CATEGORICAL___nom_9___4c729b853": 7794, "15___CATEGORICAL___nom_9___4c73bfba9": 7795, "15___CATEGORICAL___nom_9___4c77ea9c5": 7796, "15___CATEGORICAL___nom_9___4c7bbd009": 7797, "15___CATEGORICAL___nom_9___4c88466d1": 7798, "15___CATEGORICAL___nom_9___4c92c97c5": 7799, "15___CATEGORICAL___nom_9___4c9538f20": 7800, "15___CATEGORICAL___nom_9___4c9c47b24": 7801, "15___CATEGORICAL___nom_9___4ca201fb5": 7802, "15___CATEGORICAL___nom_9___4ca31c9fe": 7803, "15___CATEGORICAL___nom_9___4ca3eed28": 7804, "15___CATEGORICAL___nom_9___4caa6d432": 7805, "15___CATEGORICAL___nom_9___4cb1c7ab4": 7806, "15___CATEGORICAL___nom_9___4cb766b33": 7807, "15___CATEGORICAL___nom_9___4cbb0050e": 7808, "15___CATEGORICAL___nom_9___4cbba1b88": 7809, "15___CATEGORICAL___nom_9___4cbc1c1d1": 7810, "15___CATEGORICAL___nom_9___4cbdd80a9": 7811, "15___CATEGORICAL___nom_9___4cc372561": 7812, "15___CATEGORICAL___nom_9___4cd1a5839": 7813, "15___CATEGORICAL___nom_9___4cd4ec004": 7814, "15___CATEGORICAL___nom_9___4cd606b51": 7815, "15___CATEGORICAL___nom_9___4ce50c79b": 7816, "15___CATEGORICAL___nom_9___4cecb8726": 7817, "15___CATEGORICAL___nom_9___4cf5dde81": 7818, "15___CATEGORICAL___nom_9___4cf965b42": 7819, "15___CATEGORICAL___nom_9___4cfa87653": 7820, "15___CATEGORICAL___nom_9___4d0c6fdfd": 7821, "15___CATEGORICAL___nom_9___4d204525b": 7822, "15___CATEGORICAL___nom_9___4d20a7724": 7823, "15___CATEGORICAL___nom_9___4d21ba102": 7824, "15___CATEGORICAL___nom_9___4d2752dfb": 7825, "15___CATEGORICAL___nom_9___4d2995411": 7826, "15___CATEGORICAL___nom_9___4d29bf293": 7827, "15___CATEGORICAL___nom_9___4d2e9b690": 7828, "15___CATEGORICAL___nom_9___4d303f961": 7829, "15___CATEGORICAL___nom_9___4d323b393": 7830, "15___CATEGORICAL___nom_9___4d3633336": 7831, "15___CATEGORICAL___nom_9___4d3f06f4b": 7832, "15___CATEGORICAL___nom_9___4d4136224": 7833, "15___CATEGORICAL___nom_9___4d63a29d5": 7834, "15___CATEGORICAL___nom_9___4d63cfc6a": 7835, "15___CATEGORICAL___nom_9___4d648b237": 7836, "15___CATEGORICAL___nom_9___4d66103b2": 7837, "15___CATEGORICAL___nom_9___4d6ba3994": 7838, "15___CATEGORICAL___nom_9___4d6becc60": 7839, "15___CATEGORICAL___nom_9___4d6ec42f1": 7840, "15___CATEGORICAL___nom_9___4d73bbea8": 7841, "15___CATEGORICAL___nom_9___4d776e62d": 7842, "15___CATEGORICAL___nom_9___4d7772740": 7843, "15___CATEGORICAL___nom_9___4d787da4e": 7844, "15___CATEGORICAL___nom_9___4d7c1147e": 7845, "15___CATEGORICAL___nom_9___4d7d106a5": 7846, "15___CATEGORICAL___nom_9___4d81b4f23": 7847, "15___CATEGORICAL___nom_9___4d834bc73": 7848, "15___CATEGORICAL___nom_9___4d83ebbc3": 7849, "15___CATEGORICAL___nom_9___4d83fcd33": 7850, "15___CATEGORICAL___nom_9___4d86f511f": 7851, "15___CATEGORICAL___nom_9___4d87700f6": 7852, "15___CATEGORICAL___nom_9___4d885fa88": 7853, "15___CATEGORICAL___nom_9___4d8991d40": 7854, "15___CATEGORICAL___nom_9___4d89d1a16": 7855, "15___CATEGORICAL___nom_9___4d8fab389": 7856, "15___CATEGORICAL___nom_9___4d92290c4": 7857, "15___CATEGORICAL___nom_9___4d9422344": 7858, "15___CATEGORICAL___nom_9___4d994c0cd": 7859, "15___CATEGORICAL___nom_9___4d9e73028": 7860, "15___CATEGORICAL___nom_9___4daffc8ee": 7861, "15___CATEGORICAL___nom_9___4dba1f915": 7862, "15___CATEGORICAL___nom_9___4dc47a7c1": 7863, "15___CATEGORICAL___nom_9___4dc7a6d28": 7864, "15___CATEGORICAL___nom_9___4dcb7a740": 7865, "15___CATEGORICAL___nom_9___4dcc779eb": 7866, "15___CATEGORICAL___nom_9___4dd7705d2": 7867, "15___CATEGORICAL___nom_9___4dd7ba951": 7868, "15___CATEGORICAL___nom_9___4dd7db6b7": 7869, "15___CATEGORICAL___nom_9___4de023804": 7870, "15___CATEGORICAL___nom_9___4de471828": 7871, "15___CATEGORICAL___nom_9___4deb2ce41": 7872, "15___CATEGORICAL___nom_9___4df00d026": 7873, "15___CATEGORICAL___nom_9___4df3e8ba1": 7874, "15___CATEGORICAL___nom_9___4df5b461c": 7875, "15___CATEGORICAL___nom_9___4df8136f6": 7876, "15___CATEGORICAL___nom_9___4dfae9605": 7877, "15___CATEGORICAL___nom_9___4e0c21d41": 7878, "15___CATEGORICAL___nom_9___4e0c9b120": 7879, "15___CATEGORICAL___nom_9___4e0d3842b": 7880, "15___CATEGORICAL___nom_9___4e1537351": 7881, "15___CATEGORICAL___nom_9___4e1a8e824": 7882, "15___CATEGORICAL___nom_9___4e1aab6a0": 7883, "15___CATEGORICAL___nom_9___4e1b2c19f": 7884, "15___CATEGORICAL___nom_9___4e1ef47cc": 7885, "15___CATEGORICAL___nom_9___4e2217a90": 7886, "15___CATEGORICAL___nom_9___4e2822f98": 7887, "15___CATEGORICAL___nom_9___4e296f5c3": 7888, "15___CATEGORICAL___nom_9___4e34afc69": 7889, "15___CATEGORICAL___nom_9___4e36b47ec": 7890, "15___CATEGORICAL___nom_9___4e46ae55e": 7891, "15___CATEGORICAL___nom_9___4e4ef694b": 7892, "15___CATEGORICAL___nom_9___4e58752c9": 7893, "15___CATEGORICAL___nom_9___4e5977e66": 7894, "15___CATEGORICAL___nom_9___4e60d2ab5": 7895, "15___CATEGORICAL___nom_9___4e61e8919": 7896, "15___CATEGORICAL___nom_9___4e645d4b5": 7897, "15___CATEGORICAL___nom_9___4e661120c": 7898, "15___CATEGORICAL___nom_9___4e683bf81": 7899, "15___CATEGORICAL___nom_9___4e6868d5b": 7900, "15___CATEGORICAL___nom_9___4e71b68f9": 7901, "15___CATEGORICAL___nom_9___4e7692ced": 7902, "15___CATEGORICAL___nom_9___4e7f75aa4": 7903, "15___CATEGORICAL___nom_9___4e81734d7": 7904, "15___CATEGORICAL___nom_9___4e8428c03": 7905, "15___CATEGORICAL___nom_9___4e85fe05e": 7906, "15___CATEGORICAL___nom_9___4e87ff60a": 7907, "15___CATEGORICAL___nom_9___4e907f165": 7908, "15___CATEGORICAL___nom_9___4e915d493": 7909, "15___CATEGORICAL___nom_9___4e9877904": 7910, "15___CATEGORICAL___nom_9___4e9995669": 7911, "15___CATEGORICAL___nom_9___4ea20d144": 7912, "15___CATEGORICAL___nom_9___4ea303596": 7913, "15___CATEGORICAL___nom_9___4ea40a404": 7914, "15___CATEGORICAL___nom_9___4ea73bd34": 7915, "15___CATEGORICAL___nom_9___4eac12279": 7916, "15___CATEGORICAL___nom_9___4eaffab16": 7917, "15___CATEGORICAL___nom_9___4eb2ebbed": 7918, "15___CATEGORICAL___nom_9___4eb70b332": 7919, "15___CATEGORICAL___nom_9___4ec69b7bd": 7920, "15___CATEGORICAL___nom_9___4ec7a3d07": 7921, "15___CATEGORICAL___nom_9___4ec96012e": 7922, "15___CATEGORICAL___nom_9___4eccdf152": 7923, "15___CATEGORICAL___nom_9___4ecdb3658": 7924, "15___CATEGORICAL___nom_9___4ece40686": 7925, "15___CATEGORICAL___nom_9___4ed61c21d": 7926, "15___CATEGORICAL___nom_9___4ed87ff36": 7927, "15___CATEGORICAL___nom_9___4edaf381f": 7928, "15___CATEGORICAL___nom_9___4eddc1fb4": 7929, "15___CATEGORICAL___nom_9___4ee192a9a": 7930, "15___CATEGORICAL___nom_9___4ee23c575": 7931, "15___CATEGORICAL___nom_9___4ee2ab717": 7932, "15___CATEGORICAL___nom_9___4ee387755": 7933, "15___CATEGORICAL___nom_9___4ee3d52cf": 7934, "15___CATEGORICAL___nom_9___4ef13e388": 7935, "15___CATEGORICAL___nom_9___4ef405b94": 7936, "15___CATEGORICAL___nom_9___4ef743197": 7937, "15___CATEGORICAL___nom_9___4f08af58c": 7938, "15___CATEGORICAL___nom_9___4f0a4138d": 7939, "15___CATEGORICAL___nom_9___4f11dbdc6": 7940, "15___CATEGORICAL___nom_9___4f1a0fff8": 7941, "15___CATEGORICAL___nom_9___4f291579c": 7942, "15___CATEGORICAL___nom_9___4f2985f56": 7943, "15___CATEGORICAL___nom_9___4f2efb494": 7944, "15___CATEGORICAL___nom_9___4f2f07062": 7945, "15___CATEGORICAL___nom_9___4f347d2fb": 7946, "15___CATEGORICAL___nom_9___4f36ed41e": 7947, "15___CATEGORICAL___nom_9___4f3d1f98a": 7948, "15___CATEGORICAL___nom_9___4f3d4d167": 7949, "15___CATEGORICAL___nom_9___4f3faa790": 7950, "15___CATEGORICAL___nom_9___4f4a17f34": 7951, "15___CATEGORICAL___nom_9___4f4b216b6": 7952, "15___CATEGORICAL___nom_9___4f538493c": 7953, "15___CATEGORICAL___nom_9___4f53c630f": 7954, "15___CATEGORICAL___nom_9___4f55f9e6d": 7955, "15___CATEGORICAL___nom_9___4f62c2445": 7956, "15___CATEGORICAL___nom_9___4f6933576": 7957, "15___CATEGORICAL___nom_9___4f698df5a": 7958, "15___CATEGORICAL___nom_9___4f6b8c0a1": 7959, "15___CATEGORICAL___nom_9___4f6e2febd": 7960, "15___CATEGORICAL___nom_9___4f6e5ad4e": 7961, "15___CATEGORICAL___nom_9___4f79bc75f": 7962, "15___CATEGORICAL___nom_9___4f7a92d3e": 7963, "15___CATEGORICAL___nom_9___4f8099005": 7964, "15___CATEGORICAL___nom_9___4f836160a": 7965, "15___CATEGORICAL___nom_9___4f8c60b6d": 7966, "15___CATEGORICAL___nom_9___4f8e2f5f9": 7967, "15___CATEGORICAL___nom_9___4f92d0df3": 7968, "15___CATEGORICAL___nom_9___4f9fe6b90": 7969, "15___CATEGORICAL___nom_9___4faf5f918": 7970, "15___CATEGORICAL___nom_9___4fb36ac9b": 7971, "15___CATEGORICAL___nom_9___4fb3facba": 7972, "15___CATEGORICAL___nom_9___4fc19f5ff": 7973, "15___CATEGORICAL___nom_9___4fc301835": 7974, "15___CATEGORICAL___nom_9___4fc52258f": 7975, "15___CATEGORICAL___nom_9___4fc541223": 7976, "15___CATEGORICAL___nom_9___4fca42dfc": 7977, "15___CATEGORICAL___nom_9___4fcb3fcd8": 7978, "15___CATEGORICAL___nom_9___4fda7cd7a": 7979, "15___CATEGORICAL___nom_9___4fda89736": 7980, "15___CATEGORICAL___nom_9___4fdbe0d92": 7981, "15___CATEGORICAL___nom_9___4fdf1b4be": 7982, "15___CATEGORICAL___nom_9___4fe9206fc": 7983, "15___CATEGORICAL___nom_9___4ff8c5ad6": 7984, "15___CATEGORICAL___nom_9___4ff9de69f": 7985, "15___CATEGORICAL___nom_9___5004d59ca": 7986, "15___CATEGORICAL___nom_9___5004e3db8": 7987, "15___CATEGORICAL___nom_9___500ed200f": 7988, "15___CATEGORICAL___nom_9___5013794ac": 7989, "15___CATEGORICAL___nom_9___5015330fd": 7990, "15___CATEGORICAL___nom_9___501b68954": 7991, "15___CATEGORICAL___nom_9___501c1b975": 7992, "15___CATEGORICAL___nom_9___5022a2afb": 7993, "15___CATEGORICAL___nom_9___5024c4263": 7994, "15___CATEGORICAL___nom_9___502ad3d0e": 7995, "15___CATEGORICAL___nom_9___50352e461": 7996, "15___CATEGORICAL___nom_9___503a79f50": 7997, "15___CATEGORICAL___nom_9___5051001c0": 7998, "15___CATEGORICAL___nom_9___505106fec": 7999, "15___CATEGORICAL___nom_9___505303c1d": 8000, "15___CATEGORICAL___nom_9___5056be7f7": 8001, "15___CATEGORICAL___nom_9___505f5ce4d": 8002, "15___CATEGORICAL___nom_9___505fc216c": 8003, "15___CATEGORICAL___nom_9___50622e7a1": 8004, "15___CATEGORICAL___nom_9___506378fc8": 8005, "15___CATEGORICAL___nom_9___50679484e": 8006, "15___CATEGORICAL___nom_9___506b8e5dd": 8007, "15___CATEGORICAL___nom_9___507bfe839": 8008, "15___CATEGORICAL___nom_9___508105ac5": 8009, "15___CATEGORICAL___nom_9___50852cdec": 8010, "15___CATEGORICAL___nom_9___508c9de37": 8011, "15___CATEGORICAL___nom_9___508fd7e0b": 8012, "15___CATEGORICAL___nom_9___509678728": 8013, "15___CATEGORICAL___nom_9___5096ea7ea": 8014, "15___CATEGORICAL___nom_9___50978296a": 8015, "15___CATEGORICAL___nom_9___509989596": 8016, "15___CATEGORICAL___nom_9___509998e11": 8017, "15___CATEGORICAL___nom_9___509f880c2": 8018, "15___CATEGORICAL___nom_9___50a081c64": 8019, "15___CATEGORICAL___nom_9___50a52295c": 8020, "15___CATEGORICAL___nom_9___50a6c96ff": 8021, "15___CATEGORICAL___nom_9___50b4b4080": 8022, "15___CATEGORICAL___nom_9___50b598622": 8023, "15___CATEGORICAL___nom_9___50bb90329": 8024, "15___CATEGORICAL___nom_9___50bbf6a13": 8025, "15___CATEGORICAL___nom_9___50be14240": 8026, "15___CATEGORICAL___nom_9___50be2116e": 8027, "15___CATEGORICAL___nom_9___50c692c47": 8028, "15___CATEGORICAL___nom_9___50caeb28c": 8029, "15___CATEGORICAL___nom_9___50cd6c1fd": 8030, "15___CATEGORICAL___nom_9___50ce8691f": 8031, "15___CATEGORICAL___nom_9___50ceeb647": 8032, "15___CATEGORICAL___nom_9___50d7bb8f6": 8033, "15___CATEGORICAL___nom_9___50ed2c354": 8034, "15___CATEGORICAL___nom_9___50efdc437": 8035, "15___CATEGORICAL___nom_9___50f0277a4": 8036, "15___CATEGORICAL___nom_9___50f375e4b": 8037, "15___CATEGORICAL___nom_9___50fa21519": 8038, "15___CATEGORICAL___nom_9___50fdd973a": 8039, "15___CATEGORICAL___nom_9___51030c6d7": 8040, "15___CATEGORICAL___nom_9___5112ac1c0": 8041, "15___CATEGORICAL___nom_9___51151ca49": 8042, "15___CATEGORICAL___nom_9___5115226c7": 8043, "15___CATEGORICAL___nom_9___5117fb5e7": 8044, "15___CATEGORICAL___nom_9___5118488c5": 8045, "15___CATEGORICAL___nom_9___5122ffb33": 8046, "15___CATEGORICAL___nom_9___5125d4118": 8047, "15___CATEGORICAL___nom_9___512d2fc56": 8048, "15___CATEGORICAL___nom_9___512e252c1": 8049, "15___CATEGORICAL___nom_9___5133166b0": 8050, "15___CATEGORICAL___nom_9___513996f8e": 8051, "15___CATEGORICAL___nom_9___5144e08b4": 8052, "15___CATEGORICAL___nom_9___51489f58c": 8053, "15___CATEGORICAL___nom_9___514b2ae36": 8054, "15___CATEGORICAL___nom_9___514c22f0e": 8055, "15___CATEGORICAL___nom_9___514f74d01": 8056, "15___CATEGORICAL___nom_9___5150556aa": 8057, "15___CATEGORICAL___nom_9___51565b7cf": 8058, "15___CATEGORICAL___nom_9___5156c4278": 8059, "15___CATEGORICAL___nom_9___51581df26": 8060, "15___CATEGORICAL___nom_9___5162d0c5b": 8061, "15___CATEGORICAL___nom_9___5164cfb84": 8062, "15___CATEGORICAL___nom_9___516b7ecaa": 8063, "15___CATEGORICAL___nom_9___516bebe7c": 8064, "15___CATEGORICAL___nom_9___516db8cf8": 8065, "15___CATEGORICAL___nom_9___516eac33e": 8066, "15___CATEGORICAL___nom_9___5175ac2ac": 8067, "15___CATEGORICAL___nom_9___5178e3594": 8068, "15___CATEGORICAL___nom_9___51794c014": 8069, "15___CATEGORICAL___nom_9___517c6b43a": 8070, "15___CATEGORICAL___nom_9___517cc0805": 8071, "15___CATEGORICAL___nom_9___517df6e01": 8072, "15___CATEGORICAL___nom_9___5180efe3b": 8073, "15___CATEGORICAL___nom_9___5182368b9": 8074, "15___CATEGORICAL___nom_9___518573ad2": 8075, "15___CATEGORICAL___nom_9___5187ae4f4": 8076, "15___CATEGORICAL___nom_9___5187ba786": 8077, "15___CATEGORICAL___nom_9___518b8240e": 8078, "15___CATEGORICAL___nom_9___518ea78ae": 8079, "15___CATEGORICAL___nom_9___5192bca70": 8080, "15___CATEGORICAL___nom_9___519626a13": 8081, "15___CATEGORICAL___nom_9___51991dcc7": 8082, "15___CATEGORICAL___nom_9___519ccf634": 8083, "15___CATEGORICAL___nom_9___51c006823": 8084, "15___CATEGORICAL___nom_9___51c54ddc1": 8085, "15___CATEGORICAL___nom_9___51d1db3e4": 8086, "15___CATEGORICAL___nom_9___51d281ceb": 8087, "15___CATEGORICAL___nom_9___51d94d996": 8088, "15___CATEGORICAL___nom_9___51da7ea30": 8089, "15___CATEGORICAL___nom_9___51da80b44": 8090, "15___CATEGORICAL___nom_9___51e27c16d": 8091, "15___CATEGORICAL___nom_9___51e3f15af": 8092, "15___CATEGORICAL___nom_9___51e52d0f3": 8093, "15___CATEGORICAL___nom_9___51edec159": 8094, "15___CATEGORICAL___nom_9___51ef3941f": 8095, "15___CATEGORICAL___nom_9___52026db15": 8096, "15___CATEGORICAL___nom_9___520540092": 8097, "15___CATEGORICAL___nom_9___52070e68c": 8098, "15___CATEGORICAL___nom_9___520a781f0": 8099, "15___CATEGORICAL___nom_9___520a9bd27": 8100, "15___CATEGORICAL___nom_9___5213501ec": 8101, "15___CATEGORICAL___nom_9___5214c4503": 8102, "15___CATEGORICAL___nom_9___521930b44": 8103, "15___CATEGORICAL___nom_9___5224a5a24": 8104, "15___CATEGORICAL___nom_9___522a98b1a": 8105, "15___CATEGORICAL___nom_9___523bd6bbf": 8106, "15___CATEGORICAL___nom_9___523f52fc0": 8107, "15___CATEGORICAL___nom_9___52496e8e7": 8108, "15___CATEGORICAL___nom_9___524b4d4b1": 8109, "15___CATEGORICAL___nom_9___525190cbe": 8110, "15___CATEGORICAL___nom_9___525608e08": 8111, "15___CATEGORICAL___nom_9___5256b62c3": 8112, "15___CATEGORICAL___nom_9___525ce8ae1": 8113, "15___CATEGORICAL___nom_9___525db37f8": 8114, "15___CATEGORICAL___nom_9___525e03d7a": 8115, "15___CATEGORICAL___nom_9___525eacd27": 8116, "15___CATEGORICAL___nom_9___525f0c680": 8117, "15___CATEGORICAL___nom_9___526bccf74": 8118, "15___CATEGORICAL___nom_9___526c19813": 8119, "15___CATEGORICAL___nom_9___527fa77c2": 8120, "15___CATEGORICAL___nom_9___528036bfe": 8121, "15___CATEGORICAL___nom_9___52864e36c": 8122, "15___CATEGORICAL___nom_9___528e0701b": 8123, "15___CATEGORICAL___nom_9___5299597bb": 8124, "15___CATEGORICAL___nom_9___529989397": 8125, "15___CATEGORICAL___nom_9___52a88a588": 8126, "15___CATEGORICAL___nom_9___52b04a79c": 8127, "15___CATEGORICAL___nom_9___52b22a868": 8128, "15___CATEGORICAL___nom_9___52b4c61da": 8129, "15___CATEGORICAL___nom_9___52bc52ec0": 8130, "15___CATEGORICAL___nom_9___52c04ff0a": 8131, "15___CATEGORICAL___nom_9___52c5c3733": 8132, "15___CATEGORICAL___nom_9___52c85b74a": 8133, "15___CATEGORICAL___nom_9___52c9433b6": 8134, "15___CATEGORICAL___nom_9___52d354760": 8135, "15___CATEGORICAL___nom_9___52d7dadb1": 8136, "15___CATEGORICAL___nom_9___52d9062c6": 8137, "15___CATEGORICAL___nom_9___52e20f256": 8138, "15___CATEGORICAL___nom_9___52eba1511": 8139, "15___CATEGORICAL___nom_9___52f2ca34e": 8140, "15___CATEGORICAL___nom_9___52f354514": 8141, "15___CATEGORICAL___nom_9___52f54d545": 8142, "15___CATEGORICAL___nom_9___52f948b93": 8143, "15___CATEGORICAL___nom_9___52f9f79d6": 8144, "15___CATEGORICAL___nom_9___52fda03d9": 8145, "15___CATEGORICAL___nom_9___52fdca249": 8146, "15___CATEGORICAL___nom_9___52ff77b31": 8147, "15___CATEGORICAL___nom_9___530888640": 8148, "15___CATEGORICAL___nom_9___530d465bb": 8149, "15___CATEGORICAL___nom_9___531010b31": 8150, "15___CATEGORICAL___nom_9___531f60880": 8151, "15___CATEGORICAL___nom_9___5327d5530": 8152, "15___CATEGORICAL___nom_9___532c294a4": 8153, "15___CATEGORICAL___nom_9___5336995b3": 8154, "15___CATEGORICAL___nom_9___53395846f": 8155, "15___CATEGORICAL___nom_9___53419e190": 8156, "15___CATEGORICAL___nom_9___534470789": 8157, "15___CATEGORICAL___nom_9___5346f2227": 8158, "15___CATEGORICAL___nom_9___53486bd3e": 8159, "15___CATEGORICAL___nom_9___53509cf75": 8160, "15___CATEGORICAL___nom_9___535828bad": 8161, "15___CATEGORICAL___nom_9___535a73af6": 8162, "15___CATEGORICAL___nom_9___53645c56d": 8163, "15___CATEGORICAL___nom_9___53681d32f": 8164, "15___CATEGORICAL___nom_9___536a0ad8e": 8165, "15___CATEGORICAL___nom_9___537664379": 8166, "15___CATEGORICAL___nom_9___53769bdd7": 8167, "15___CATEGORICAL___nom_9___537878315": 8168, "15___CATEGORICAL___nom_9___53836b722": 8169, "15___CATEGORICAL___nom_9___5389c6f6a": 8170, "15___CATEGORICAL___nom_9___538ab9f52": 8171, "15___CATEGORICAL___nom_9___5393a2e1b": 8172, "15___CATEGORICAL___nom_9___539436555": 8173, "15___CATEGORICAL___nom_9___539c22ab6": 8174, "15___CATEGORICAL___nom_9___53ad3f8bf": 8175, "15___CATEGORICAL___nom_9___53ad415f9": 8176, "15___CATEGORICAL___nom_9___53affb344": 8177, "15___CATEGORICAL___nom_9___53b149a2e": 8178, "15___CATEGORICAL___nom_9___53bd4ba9f": 8179, "15___CATEGORICAL___nom_9___53c3932bd": 8180, "15___CATEGORICAL___nom_9___53e65ade5": 8181, "15___CATEGORICAL___nom_9___53eec277e": 8182, "15___CATEGORICAL___nom_9___53f3af0e9": 8183, "15___CATEGORICAL___nom_9___53f703b8c": 8184, "15___CATEGORICAL___nom_9___53f7c9369": 8185, "15___CATEGORICAL___nom_9___53fc3c549": 8186, "15___CATEGORICAL___nom_9___53fd56c32": 8187, "15___CATEGORICAL___nom_9___540018428": 8188, "15___CATEGORICAL___nom_9___5404ccfc3": 8189, "15___CATEGORICAL___nom_9___54078faf2": 8190, "15___CATEGORICAL___nom_9___540e93431": 8191, "15___CATEGORICAL___nom_9___54113ab64": 8192, "15___CATEGORICAL___nom_9___54123f865": 8193, "15___CATEGORICAL___nom_9___54126fb57": 8194, "15___CATEGORICAL___nom_9___541bd1537": 8195, "15___CATEGORICAL___nom_9___541cdf1ed": 8196, "15___CATEGORICAL___nom_9___541ec5d65": 8197, "15___CATEGORICAL___nom_9___5426bb003": 8198, "15___CATEGORICAL___nom_9___542f49643": 8199, "15___CATEGORICAL___nom_9___5435b467f": 8200, "15___CATEGORICAL___nom_9___5445d125f": 8201, "15___CATEGORICAL___nom_9___544681d2b": 8202, "15___CATEGORICAL___nom_9___544c28919": 8203, "15___CATEGORICAL___nom_9___544d3a31c": 8204, "15___CATEGORICAL___nom_9___544df2857": 8205, "15___CATEGORICAL___nom_9___54555072e": 8206, "15___CATEGORICAL___nom_9___5457e547f": 8207, "15___CATEGORICAL___nom_9___545bf9366": 8208, "15___CATEGORICAL___nom_9___545c8ac83": 8209, "15___CATEGORICAL___nom_9___545f8e286": 8210, "15___CATEGORICAL___nom_9___54671a051": 8211, "15___CATEGORICAL___nom_9___54719c517": 8212, "15___CATEGORICAL___nom_9___5476f86b3": 8213, "15___CATEGORICAL___nom_9___547c8b513": 8214, "15___CATEGORICAL___nom_9___5492b3394": 8215, "15___CATEGORICAL___nom_9___5494462e4": 8216, "15___CATEGORICAL___nom_9___5494e43e7": 8217, "15___CATEGORICAL___nom_9___5498d8837": 8218, "15___CATEGORICAL___nom_9___549b31521": 8219, "15___CATEGORICAL___nom_9___549bf1d17": 8220, "15___CATEGORICAL___nom_9___549d3ea14": 8221, "15___CATEGORICAL___nom_9___54a3f6b2b": 8222, "15___CATEGORICAL___nom_9___54a4237fc": 8223, "15___CATEGORICAL___nom_9___54b094fab": 8224, "15___CATEGORICAL___nom_9___54d8d12d7": 8225, "15___CATEGORICAL___nom_9___54dc42abc": 8226, "15___CATEGORICAL___nom_9___54e697161": 8227, "15___CATEGORICAL___nom_9___54e7cda22": 8228, "15___CATEGORICAL___nom_9___54ee7d6de": 8229, "15___CATEGORICAL___nom_9___54ef03d57": 8230, "15___CATEGORICAL___nom_9___54f58e361": 8231, "15___CATEGORICAL___nom_9___54fe9443b": 8232, "15___CATEGORICAL___nom_9___55020cc17": 8233, "15___CATEGORICAL___nom_9___5506f0fdf": 8234, "15___CATEGORICAL___nom_9___5508a2640": 8235, "15___CATEGORICAL___nom_9___5509e0444": 8236, "15___CATEGORICAL___nom_9___55127545c": 8237, "15___CATEGORICAL___nom_9___5517aa6e8": 8238, "15___CATEGORICAL___nom_9___5518b98e9": 8239, "15___CATEGORICAL___nom_9___551ce3be9": 8240, "15___CATEGORICAL___nom_9___551d0c9d9": 8241, "15___CATEGORICAL___nom_9___552d6d831": 8242, "15___CATEGORICAL___nom_9___55306df03": 8243, "15___CATEGORICAL___nom_9___55318e1ef": 8244, "15___CATEGORICAL___nom_9___55321604d": 8245, "15___CATEGORICAL___nom_9___553ec6bed": 8246, "15___CATEGORICAL___nom_9___5540e615a": 8247, "15___CATEGORICAL___nom_9___554c7dea5": 8248, "15___CATEGORICAL___nom_9___55508ed11": 8249, "15___CATEGORICAL___nom_9___5552bb105": 8250, "15___CATEGORICAL___nom_9___5553171e5": 8251, "15___CATEGORICAL___nom_9___5561ba893": 8252, "15___CATEGORICAL___nom_9___556c4308c": 8253, "15___CATEGORICAL___nom_9___556ceeaca": 8254, "15___CATEGORICAL___nom_9___557564404": 8255, "15___CATEGORICAL___nom_9___55778fad0": 8256, "15___CATEGORICAL___nom_9___557cc5d14": 8257, "15___CATEGORICAL___nom_9___55823d0e4": 8258, "15___CATEGORICAL___nom_9___5588097b7": 8259, "15___CATEGORICAL___nom_9___558b51f4a": 8260, "15___CATEGORICAL___nom_9___5594f10ad": 8261, "15___CATEGORICAL___nom_9___559c63493": 8262, "15___CATEGORICAL___nom_9___559f4fb0c": 8263, "15___CATEGORICAL___nom_9___55a02ef66": 8264, "15___CATEGORICAL___nom_9___55aebe10f": 8265, "15___CATEGORICAL___nom_9___55af05078": 8266, "15___CATEGORICAL___nom_9___55b36406b": 8267, "15___CATEGORICAL___nom_9___55b54234d": 8268, "15___CATEGORICAL___nom_9___55bc7f2fd": 8269, "15___CATEGORICAL___nom_9___55bed39d9": 8270, "15___CATEGORICAL___nom_9___55cadaf7d": 8271, "15___CATEGORICAL___nom_9___55cbdab2d": 8272, "15___CATEGORICAL___nom_9___55ccbcda1": 8273, "15___CATEGORICAL___nom_9___55cdb547a": 8274, "15___CATEGORICAL___nom_9___55d39c2b8": 8275, "15___CATEGORICAL___nom_9___55d3c9630": 8276, "15___CATEGORICAL___nom_9___55d76178f": 8277, "15___CATEGORICAL___nom_9___55e10bf3b": 8278, "15___CATEGORICAL___nom_9___55e1eb727": 8279, "15___CATEGORICAL___nom_9___55e6497ab": 8280, "15___CATEGORICAL___nom_9___55ea800bc": 8281, "15___CATEGORICAL___nom_9___55eecf652": 8282, "15___CATEGORICAL___nom_9___55f093b65": 8283, "15___CATEGORICAL___nom_9___56014e108": 8284, "15___CATEGORICAL___nom_9___56056b836": 8285, "15___CATEGORICAL___nom_9___5607588e8": 8286, "15___CATEGORICAL___nom_9___560a61df6": 8287, "15___CATEGORICAL___nom_9___56226db82": 8288, "15___CATEGORICAL___nom_9___5633938f8": 8289, "15___CATEGORICAL___nom_9___5637aafe1": 8290, "15___CATEGORICAL___nom_9___563ad2c72": 8291, "15___CATEGORICAL___nom_9___563bfcf4d": 8292, "15___CATEGORICAL___nom_9___563fbbc15": 8293, "15___CATEGORICAL___nom_9___564046b7e": 8294, "15___CATEGORICAL___nom_9___56485b230": 8295, "15___CATEGORICAL___nom_9___564d47a33": 8296, "15___CATEGORICAL___nom_9___5651044d5": 8297, "15___CATEGORICAL___nom_9___565bada5c": 8298, "15___CATEGORICAL___nom_9___565da8330": 8299, "15___CATEGORICAL___nom_9___566024a4e": 8300, "15___CATEGORICAL___nom_9___5669accf7": 8301, "15___CATEGORICAL___nom_9___566d13487": 8302, "15___CATEGORICAL___nom_9___56722d736": 8303, "15___CATEGORICAL___nom_9___5672be315": 8304, "15___CATEGORICAL___nom_9___5675df85b": 8305, "15___CATEGORICAL___nom_9___56770359e": 8306, "15___CATEGORICAL___nom_9___567b41532": 8307, "15___CATEGORICAL___nom_9___567e097f1": 8308, "15___CATEGORICAL___nom_9___56854c8a3": 8309, "15___CATEGORICAL___nom_9___56887f7c3": 8310, "15___CATEGORICAL___nom_9___568af6a3c": 8311, "15___CATEGORICAL___nom_9___568bd7a3a": 8312, "15___CATEGORICAL___nom_9___568fb32bb": 8313, "15___CATEGORICAL___nom_9___5692e277b": 8314, "15___CATEGORICAL___nom_9___56963f939": 8315, "15___CATEGORICAL___nom_9___569ecb558": 8316, "15___CATEGORICAL___nom_9___56a26027e": 8317, "15___CATEGORICAL___nom_9___56ab4d5c6": 8318, "15___CATEGORICAL___nom_9___56ac6ecfc": 8319, "15___CATEGORICAL___nom_9___56b6b1341": 8320, "15___CATEGORICAL___nom_9___56c459638": 8321, "15___CATEGORICAL___nom_9___56c4cb0bd": 8322, "15___CATEGORICAL___nom_9___56c6fdb7b": 8323, "15___CATEGORICAL___nom_9___56c7b0e9e": 8324, "15___CATEGORICAL___nom_9___56cdaf7f2": 8325, "15___CATEGORICAL___nom_9___56d0db57b": 8326, "15___CATEGORICAL___nom_9___56d30dee3": 8327, "15___CATEGORICAL___nom_9___56df77fb4": 8328, "15___CATEGORICAL___nom_9___56f93f15e": 8329, "15___CATEGORICAL___nom_9___56fd534cd": 8330, "15___CATEGORICAL___nom_9___56fee6808": 8331, "15___CATEGORICAL___nom_9___570a2e8a5": 8332, "15___CATEGORICAL___nom_9___570d8d972": 8333, "15___CATEGORICAL___nom_9___570ed612d": 8334, "15___CATEGORICAL___nom_9___571a6e3cb": 8335, "15___CATEGORICAL___nom_9___57240a360": 8336, "15___CATEGORICAL___nom_9___572c3ca71": 8337, "15___CATEGORICAL___nom_9___573026c9c": 8338, "15___CATEGORICAL___nom_9___5731280f6": 8339, "15___CATEGORICAL___nom_9___574f8ff4c": 8340, "15___CATEGORICAL___nom_9___5756ad66e": 8341, "15___CATEGORICAL___nom_9___57574f00d": 8342, "15___CATEGORICAL___nom_9___57596ab9b": 8343, "15___CATEGORICAL___nom_9___5765166b4": 8344, "15___CATEGORICAL___nom_9___576ab2c7c": 8345, "15___CATEGORICAL___nom_9___5774c5faa": 8346, "15___CATEGORICAL___nom_9___5776f0353": 8347, "15___CATEGORICAL___nom_9___578148276": 8348, "15___CATEGORICAL___nom_9___5782fd032": 8349, "15___CATEGORICAL___nom_9___579abef26": 8350, "15___CATEGORICAL___nom_9___579c86625": 8351, "15___CATEGORICAL___nom_9___57a8df1af": 8352, "15___CATEGORICAL___nom_9___57a9f74d7": 8353, "15___CATEGORICAL___nom_9___57abe99ae": 8354, "15___CATEGORICAL___nom_9___57b41cf49": 8355, "15___CATEGORICAL___nom_9___57b72c831": 8356, "15___CATEGORICAL___nom_9___57b843920": 8357, "15___CATEGORICAL___nom_9___57bf14892": 8358, "15___CATEGORICAL___nom_9___57c04aff3": 8359, "15___CATEGORICAL___nom_9___57c050d05": 8360, "15___CATEGORICAL___nom_9___57cda5459": 8361, "15___CATEGORICAL___nom_9___57d176ee2": 8362, "15___CATEGORICAL___nom_9___57d3598f2": 8363, "15___CATEGORICAL___nom_9___57e325c23": 8364, "15___CATEGORICAL___nom_9___57ea17178": 8365, "15___CATEGORICAL___nom_9___57f1df9c2": 8366, "15___CATEGORICAL___nom_9___57f42bd0f": 8367, "15___CATEGORICAL___nom_9___58095ff59": 8368, "15___CATEGORICAL___nom_9___5811fc230": 8369, "15___CATEGORICAL___nom_9___58168fdd9": 8370, "15___CATEGORICAL___nom_9___581b96306": 8371, "15___CATEGORICAL___nom_9___581de94cb": 8372, "15___CATEGORICAL___nom_9___583793bb6": 8373, "15___CATEGORICAL___nom_9___583e0c53c": 8374, "15___CATEGORICAL___nom_9___58458e573": 8375, "15___CATEGORICAL___nom_9___5848f9ac4": 8376, "15___CATEGORICAL___nom_9___584b0b40d": 8377, "15___CATEGORICAL___nom_9___584ccd44e": 8378, "15___CATEGORICAL___nom_9___58561961e": 8379, "15___CATEGORICAL___nom_9___586016d43": 8380, "15___CATEGORICAL___nom_9___586030e5a": 8381, "15___CATEGORICAL___nom_9___5864e5f52": 8382, "15___CATEGORICAL___nom_9___587299f6d": 8383, "15___CATEGORICAL___nom_9___58739dabf": 8384, "15___CATEGORICAL___nom_9___5873f2a2a": 8385, "15___CATEGORICAL___nom_9___5877110d4": 8386, "15___CATEGORICAL___nom_9___587cb395a": 8387, "15___CATEGORICAL___nom_9___5880aa6cc": 8388, "15___CATEGORICAL___nom_9___588be2e5c": 8389, "15___CATEGORICAL___nom_9___5890f9d5e": 8390, "15___CATEGORICAL___nom_9___589a39395": 8391, "15___CATEGORICAL___nom_9___589e5522c": 8392, "15___CATEGORICAL___nom_9___58a13ba33": 8393, "15___CATEGORICAL___nom_9___58ab840fc": 8394, "15___CATEGORICAL___nom_9___58bb6e15d": 8395, "15___CATEGORICAL___nom_9___58bee0721": 8396, "15___CATEGORICAL___nom_9___58ccffd44": 8397, "15___CATEGORICAL___nom_9___58ce5d310": 8398, "15___CATEGORICAL___nom_9___58d5f02cc": 8399, "15___CATEGORICAL___nom_9___58d999cd9": 8400, "15___CATEGORICAL___nom_9___58eb9308d": 8401, "15___CATEGORICAL___nom_9___58f1663bd": 8402, "15___CATEGORICAL___nom_9___58f550c21": 8403, "15___CATEGORICAL___nom_9___5904e00ee": 8404, "15___CATEGORICAL___nom_9___5928baf68": 8405, "15___CATEGORICAL___nom_9___592f52771": 8406, "15___CATEGORICAL___nom_9___5932e1ea2": 8407, "15___CATEGORICAL___nom_9___593b01b8e": 8408, "15___CATEGORICAL___nom_9___593fffce7": 8409, "15___CATEGORICAL___nom_9___594655f5e": 8410, "15___CATEGORICAL___nom_9___5946f979c": 8411, "15___CATEGORICAL___nom_9___594b646c6": 8412, "15___CATEGORICAL___nom_9___594e01153": 8413, "15___CATEGORICAL___nom_9___595649b77": 8414, "15___CATEGORICAL___nom_9___595fb8687": 8415, "15___CATEGORICAL___nom_9___5960e0a99": 8416, "15___CATEGORICAL___nom_9___59659f600": 8417, "15___CATEGORICAL___nom_9___5966d4e2f": 8418, "15___CATEGORICAL___nom_9___596eb207a": 8419, "15___CATEGORICAL___nom_9___5972dd4d3": 8420, "15___CATEGORICAL___nom_9___597623eb6": 8421, "15___CATEGORICAL___nom_9___59810f317": 8422, "15___CATEGORICAL___nom_9___5982ceb3b": 8423, "15___CATEGORICAL___nom_9___598386caa": 8424, "15___CATEGORICAL___nom_9___5985945e1": 8425, "15___CATEGORICAL___nom_9___59861ae2d": 8426, "15___CATEGORICAL___nom_9___59870b01e": 8427, "15___CATEGORICAL___nom_9___598783ec9": 8428, "15___CATEGORICAL___nom_9___598815230": 8429, "15___CATEGORICAL___nom_9___5988d9704": 8430, "15___CATEGORICAL___nom_9___59982e5d0": 8431, "15___CATEGORICAL___nom_9___59a2d5a2f": 8432, "15___CATEGORICAL___nom_9___59aad915a": 8433, "15___CATEGORICAL___nom_9___59ac86e3b": 8434, "15___CATEGORICAL___nom_9___59add3990": 8435, "15___CATEGORICAL___nom_9___59aed66ca": 8436, "15___CATEGORICAL___nom_9___59b1d1b02": 8437, "15___CATEGORICAL___nom_9___59b3e393c": 8438, "15___CATEGORICAL___nom_9___59b56f356": 8439, "15___CATEGORICAL___nom_9___59b70f7c0": 8440, "15___CATEGORICAL___nom_9___59c4839fa": 8441, "15___CATEGORICAL___nom_9___59d3140fe": 8442, "15___CATEGORICAL___nom_9___59d47d9fb": 8443, "15___CATEGORICAL___nom_9___59d894ce4": 8444, "15___CATEGORICAL___nom_9___59e08e8f8": 8445, "15___CATEGORICAL___nom_9___59e172071": 8446, "15___CATEGORICAL___nom_9___59e2dadf7": 8447, "15___CATEGORICAL___nom_9___59e50cceb": 8448, "15___CATEGORICAL___nom_9___59f40e09b": 8449, "15___CATEGORICAL___nom_9___5a05e985f": 8450, "15___CATEGORICAL___nom_9___5a07a3e1a": 8451, "15___CATEGORICAL___nom_9___5a0cd77ea": 8452, "15___CATEGORICAL___nom_9___5a0e3fa37": 8453, "15___CATEGORICAL___nom_9___5a0e82b91": 8454, "15___CATEGORICAL___nom_9___5a0f3a2c8": 8455, "15___CATEGORICAL___nom_9___5a10dcf65": 8456, "15___CATEGORICAL___nom_9___5a13025d4": 8457, "15___CATEGORICAL___nom_9___5a13de245": 8458, "15___CATEGORICAL___nom_9___5a16756cf": 8459, "15___CATEGORICAL___nom_9___5a1a7700f": 8460, "15___CATEGORICAL___nom_9___5a1cff017": 8461, "15___CATEGORICAL___nom_9___5a1f61c38": 8462, "15___CATEGORICAL___nom_9___5a2461910": 8463, "15___CATEGORICAL___nom_9___5a254c956": 8464, "15___CATEGORICAL___nom_9___5a2955eca": 8465, "15___CATEGORICAL___nom_9___5a2e32b63": 8466, "15___CATEGORICAL___nom_9___5a2e8608d": 8467, "15___CATEGORICAL___nom_9___5a3e9b31c": 8468, "15___CATEGORICAL___nom_9___5a45f0631": 8469, "15___CATEGORICAL___nom_9___5a4a82532": 8470, "15___CATEGORICAL___nom_9___5a4b940e1": 8471, "15___CATEGORICAL___nom_9___5a5a7d3b9": 8472, "15___CATEGORICAL___nom_9___5a61c4095": 8473, "15___CATEGORICAL___nom_9___5a621e413": 8474, "15___CATEGORICAL___nom_9___5a67da7c1": 8475, "15___CATEGORICAL___nom_9___5a71b8a20": 8476, "15___CATEGORICAL___nom_9___5a82b23c3": 8477, "15___CATEGORICAL___nom_9___5a8f3b40a": 8478, "15___CATEGORICAL___nom_9___5a9eb15ec": 8479, "15___CATEGORICAL___nom_9___5a9edab0c": 8480, "15___CATEGORICAL___nom_9___5a9f9587d": 8481, "15___CATEGORICAL___nom_9___5aa47f3c0": 8482, "15___CATEGORICAL___nom_9___5aad27d8b": 8483, "15___CATEGORICAL___nom_9___5ab30a0c7": 8484, "15___CATEGORICAL___nom_9___5ab731372": 8485, "15___CATEGORICAL___nom_9___5aba9672e": 8486, "15___CATEGORICAL___nom_9___5aeb2118f": 8487, "15___CATEGORICAL___nom_9___5aeca3acc": 8488, "15___CATEGORICAL___nom_9___5af26c887": 8489, "15___CATEGORICAL___nom_9___5af927658": 8490, "15___CATEGORICAL___nom_9___5af9928ad": 8491, "15___CATEGORICAL___nom_9___5afca9ea8": 8492, "15___CATEGORICAL___nom_9___5afcd4c71": 8493, "15___CATEGORICAL___nom_9___5b06b5713": 8494, "15___CATEGORICAL___nom_9___5b086e741": 8495, "15___CATEGORICAL___nom_9___5b0bc4419": 8496, "15___CATEGORICAL___nom_9___5b0bd274f": 8497, "15___CATEGORICAL___nom_9___5b10a12b4": 8498, "15___CATEGORICAL___nom_9___5b1dd055a": 8499, "15___CATEGORICAL___nom_9___5b2453cee": 8500, "15___CATEGORICAL___nom_9___5b2b7a6cd": 8501, "15___CATEGORICAL___nom_9___5b35b0455": 8502, "15___CATEGORICAL___nom_9___5b3d8a29d": 8503, "15___CATEGORICAL___nom_9___5b3e5513f": 8504, "15___CATEGORICAL___nom_9___5b3ea0702": 8505, "15___CATEGORICAL___nom_9___5b3eab6fe": 8506, "15___CATEGORICAL___nom_9___5b4104da8": 8507, "15___CATEGORICAL___nom_9___5b43b2d0a": 8508, "15___CATEGORICAL___nom_9___5b5801e08": 8509, "15___CATEGORICAL___nom_9___5b5a707a5": 8510, "15___CATEGORICAL___nom_9___5b62f806e": 8511, "15___CATEGORICAL___nom_9___5b6980eeb": 8512, "15___CATEGORICAL___nom_9___5b6e4a084": 8513, "15___CATEGORICAL___nom_9___5b721c41f": 8514, "15___CATEGORICAL___nom_9___5b7252147": 8515, "15___CATEGORICAL___nom_9___5b7777289": 8516, "15___CATEGORICAL___nom_9___5b787a902": 8517, "15___CATEGORICAL___nom_9___5b7bfe68b": 8518, "15___CATEGORICAL___nom_9___5b8f102c3": 8519, "15___CATEGORICAL___nom_9___5b9066908": 8520, "15___CATEGORICAL___nom_9___5b92499d9": 8521, "15___CATEGORICAL___nom_9___5b93b4c1d": 8522, "15___CATEGORICAL___nom_9___5b97231f7": 8523, "15___CATEGORICAL___nom_9___5b99ab145": 8524, "15___CATEGORICAL___nom_9___5b9caae6c": 8525, "15___CATEGORICAL___nom_9___5b9fc2549": 8526, "15___CATEGORICAL___nom_9___5bbfebbd6": 8527, "15___CATEGORICAL___nom_9___5bcdf3ba0": 8528, "15___CATEGORICAL___nom_9___5bd121800": 8529, "15___CATEGORICAL___nom_9___5bd6df196": 8530, "15___CATEGORICAL___nom_9___5bd720821": 8531, "15___CATEGORICAL___nom_9___5bd96d6f5": 8532, "15___CATEGORICAL___nom_9___5bdd94d9b": 8533, "15___CATEGORICAL___nom_9___5bde6630a": 8534, "15___CATEGORICAL___nom_9___5be299a64": 8535, "15___CATEGORICAL___nom_9___5be416b14": 8536, "15___CATEGORICAL___nom_9___5be479c03": 8537, "15___CATEGORICAL___nom_9___5be8d66b2": 8538, "15___CATEGORICAL___nom_9___5bf027d6e": 8539, "15___CATEGORICAL___nom_9___5bf6e0758": 8540, "15___CATEGORICAL___nom_9___5bfce8de5": 8541, "15___CATEGORICAL___nom_9___5c06a9ef7": 8542, "15___CATEGORICAL___nom_9___5c0d76462": 8543, "15___CATEGORICAL___nom_9___5c111a874": 8544, "15___CATEGORICAL___nom_9___5c201f5db": 8545, "15___CATEGORICAL___nom_9___5c23b2bb1": 8546, "15___CATEGORICAL___nom_9___5c2ab529f": 8547, "15___CATEGORICAL___nom_9___5c3bb1df6": 8548, "15___CATEGORICAL___nom_9___5c3ea219a": 8549, "15___CATEGORICAL___nom_9___5c3f13449": 8550, "15___CATEGORICAL___nom_9___5c4118116": 8551, "15___CATEGORICAL___nom_9___5c41d2b79": 8552, "15___CATEGORICAL___nom_9___5c4775eb0": 8553, "15___CATEGORICAL___nom_9___5c51be7c4": 8554, "15___CATEGORICAL___nom_9___5c51f1eab": 8555, "15___CATEGORICAL___nom_9___5c547a8bd": 8556, "15___CATEGORICAL___nom_9___5c56ad42e": 8557, "15___CATEGORICAL___nom_9___5c58623d1": 8558, "15___CATEGORICAL___nom_9___5c59c4d64": 8559, "15___CATEGORICAL___nom_9___5c5a243de": 8560, "15___CATEGORICAL___nom_9___5c66c71b0": 8561, "15___CATEGORICAL___nom_9___5c72d5e92": 8562, "15___CATEGORICAL___nom_9___5c72e0cfa": 8563, "15___CATEGORICAL___nom_9___5c7782c61": 8564, "15___CATEGORICAL___nom_9___5c7ef9cac": 8565, "15___CATEGORICAL___nom_9___5c82c9b94": 8566, "15___CATEGORICAL___nom_9___5c851a4c2": 8567, "15___CATEGORICAL___nom_9___5c87ffc45": 8568, "15___CATEGORICAL___nom_9___5c8855ad6": 8569, "15___CATEGORICAL___nom_9___5c887a871": 8570, "15___CATEGORICAL___nom_9___5ca73bbbc": 8571, "15___CATEGORICAL___nom_9___5ca78ea2f": 8572, "15___CATEGORICAL___nom_9___5ca9d582a": 8573, "15___CATEGORICAL___nom_9___5cb33f1ac": 8574, "15___CATEGORICAL___nom_9___5cd28903c": 8575, "15___CATEGORICAL___nom_9___5cd6c613c": 8576, "15___CATEGORICAL___nom_9___5ce617592": 8577, "15___CATEGORICAL___nom_9___5ce677cb7": 8578, "15___CATEGORICAL___nom_9___5ce8c748d": 8579, "15___CATEGORICAL___nom_9___5ce912aa5": 8580, "15___CATEGORICAL___nom_9___5ced5ae35": 8581, "15___CATEGORICAL___nom_9___5cf3568a8": 8582, "15___CATEGORICAL___nom_9___5cf59aa4e": 8583, "15___CATEGORICAL___nom_9___5d208c780": 8584, "15___CATEGORICAL___nom_9___5d29c3661": 8585, "15___CATEGORICAL___nom_9___5d2aeb7ae": 8586, "15___CATEGORICAL___nom_9___5d3370b4d": 8587, "15___CATEGORICAL___nom_9___5d33cabb7": 8588, "15___CATEGORICAL___nom_9___5d34c707d": 8589, "15___CATEGORICAL___nom_9___5d3e1bd86": 8590, "15___CATEGORICAL___nom_9___5d483ecfa": 8591, "15___CATEGORICAL___nom_9___5d49ea0b7": 8592, "15___CATEGORICAL___nom_9___5d5486aae": 8593, "15___CATEGORICAL___nom_9___5d583bd48": 8594, "15___CATEGORICAL___nom_9___5d6ab0ddf": 8595, "15___CATEGORICAL___nom_9___5d721b510": 8596, "15___CATEGORICAL___nom_9___5d72ca5db": 8597, "15___CATEGORICAL___nom_9___5d74d02bf": 8598, "15___CATEGORICAL___nom_9___5d798cc01": 8599, "15___CATEGORICAL___nom_9___5d7f77896": 8600, "15___CATEGORICAL___nom_9___5d859611d": 8601, "15___CATEGORICAL___nom_9___5d860a391": 8602, "15___CATEGORICAL___nom_9___5d86cf8a6": 8603, "15___CATEGORICAL___nom_9___5d8794958": 8604, "15___CATEGORICAL___nom_9___5d8c58a83": 8605, "15___CATEGORICAL___nom_9___5d8d2584f": 8606, "15___CATEGORICAL___nom_9___5d98cdeee": 8607, "15___CATEGORICAL___nom_9___5d9a1ab55": 8608, "15___CATEGORICAL___nom_9___5d9a6b320": 8609, "15___CATEGORICAL___nom_9___5d9ab516c": 8610, "15___CATEGORICAL___nom_9___5d9de0f8b": 8611, "15___CATEGORICAL___nom_9___5da6ac6c7": 8612, "15___CATEGORICAL___nom_9___5da6d2f97": 8613, "15___CATEGORICAL___nom_9___5db0209e4": 8614, "15___CATEGORICAL___nom_9___5dc61ff9e": 8615, "15___CATEGORICAL___nom_9___5dc8f6a7c": 8616, "15___CATEGORICAL___nom_9___5dcd32592": 8617, "15___CATEGORICAL___nom_9___5dd25ca48": 8618, "15___CATEGORICAL___nom_9___5dda13326": 8619, "15___CATEGORICAL___nom_9___5ddd26653": 8620, "15___CATEGORICAL___nom_9___5ddf5dd12": 8621, "15___CATEGORICAL___nom_9___5de37dd5d": 8622, "15___CATEGORICAL___nom_9___5de51ac73": 8623, "15___CATEGORICAL___nom_9___5de9bba38": 8624, "15___CATEGORICAL___nom_9___5dece1091": 8625, "15___CATEGORICAL___nom_9___5dedcc2a3": 8626, "15___CATEGORICAL___nom_9___5dee497f8": 8627, "15___CATEGORICAL___nom_9___5df1f28e0": 8628, "15___CATEGORICAL___nom_9___5df2415c4": 8629, "15___CATEGORICAL___nom_9___5e01a81eb": 8630, "15___CATEGORICAL___nom_9___5e07f718f": 8631, "15___CATEGORICAL___nom_9___5e104e10b": 8632, "15___CATEGORICAL___nom_9___5e16b0d23": 8633, "15___CATEGORICAL___nom_9___5e1a3d356": 8634, "15___CATEGORICAL___nom_9___5e246ad4d": 8635, "15___CATEGORICAL___nom_9___5e2518c9b": 8636, "15___CATEGORICAL___nom_9___5e2746730": 8637, "15___CATEGORICAL___nom_9___5e27bf261": 8638, "15___CATEGORICAL___nom_9___5e2828dde": 8639, "15___CATEGORICAL___nom_9___5e39e7b51": 8640, "15___CATEGORICAL___nom_9___5e3b024bb": 8641, "15___CATEGORICAL___nom_9___5e47c5d32": 8642, "15___CATEGORICAL___nom_9___5e49095a2": 8643, "15___CATEGORICAL___nom_9___5e4bf2a09": 8644, "15___CATEGORICAL___nom_9___5e4f851bc": 8645, "15___CATEGORICAL___nom_9___5e508a41a": 8646, "15___CATEGORICAL___nom_9___5e660e4dd": 8647, "15___CATEGORICAL___nom_9___5e66425d2": 8648, "15___CATEGORICAL___nom_9___5e697b80e": 8649, "15___CATEGORICAL___nom_9___5e6b675d1": 8650, "15___CATEGORICAL___nom_9___5e7111cb3": 8651, "15___CATEGORICAL___nom_9___5e7412595": 8652, "15___CATEGORICAL___nom_9___5e74f6cef": 8653, "15___CATEGORICAL___nom_9___5e7e9c42f": 8654, "15___CATEGORICAL___nom_9___5e8851725": 8655, "15___CATEGORICAL___nom_9___5e94dd2e7": 8656, "15___CATEGORICAL___nom_9___5e9a4197a": 8657, "15___CATEGORICAL___nom_9___5e9c78726": 8658, "15___CATEGORICAL___nom_9___5e9e31520": 8659, "15___CATEGORICAL___nom_9___5ea44af16": 8660, "15___CATEGORICAL___nom_9___5ea4604af": 8661, "15___CATEGORICAL___nom_9___5eb2cf7a7": 8662, "15___CATEGORICAL___nom_9___5eb9bf06b": 8663, "15___CATEGORICAL___nom_9___5eba5bd41": 8664, "15___CATEGORICAL___nom_9___5ebc99b30": 8665, "15___CATEGORICAL___nom_9___5ebde9dc9": 8666, "15___CATEGORICAL___nom_9___5ec2a5ff5": 8667, "15___CATEGORICAL___nom_9___5ec505b95": 8668, "15___CATEGORICAL___nom_9___5ecde336f": 8669, "15___CATEGORICAL___nom_9___5ecdf8481": 8670, "15___CATEGORICAL___nom_9___5ece45c72": 8671, "15___CATEGORICAL___nom_9___5ecfe0e27": 8672, "15___CATEGORICAL___nom_9___5ed68b67e": 8673, "15___CATEGORICAL___nom_9___5eeca43ea": 8674, "15___CATEGORICAL___nom_9___5ef1adb86": 8675, "15___CATEGORICAL___nom_9___5ef230029": 8676, "15___CATEGORICAL___nom_9___5ef517d9a": 8677, "15___CATEGORICAL___nom_9___5ef8bb55a": 8678, "15___CATEGORICAL___nom_9___5efa1aec5": 8679, "15___CATEGORICAL___nom_9___5f04125d3": 8680, "15___CATEGORICAL___nom_9___5f06157bb": 8681, "15___CATEGORICAL___nom_9___5f0a0bdcd": 8682, "15___CATEGORICAL___nom_9___5f0c259a8": 8683, "15___CATEGORICAL___nom_9___5f14b46cc": 8684, "15___CATEGORICAL___nom_9___5f180a863": 8685, "15___CATEGORICAL___nom_9___5f1d21b69": 8686, "15___CATEGORICAL___nom_9___5f1f35e21": 8687, "15___CATEGORICAL___nom_9___5f21092d4": 8688, "15___CATEGORICAL___nom_9___5f2910d99": 8689, "15___CATEGORICAL___nom_9___5f334964c": 8690, "15___CATEGORICAL___nom_9___5f42756f8": 8691, "15___CATEGORICAL___nom_9___5f4320e05": 8692, "15___CATEGORICAL___nom_9___5f4a14013": 8693, "15___CATEGORICAL___nom_9___5f4a1692d": 8694, "15___CATEGORICAL___nom_9___5f4b81fce": 8695, "15___CATEGORICAL___nom_9___5f4ebc6f5": 8696, "15___CATEGORICAL___nom_9___5f62401e3": 8697, "15___CATEGORICAL___nom_9___5f6735d3f": 8698, "15___CATEGORICAL___nom_9___5f6c60386": 8699, "15___CATEGORICAL___nom_9___5f6db8d33": 8700, "15___CATEGORICAL___nom_9___5f6f23fa7": 8701, "15___CATEGORICAL___nom_9___5f7278854": 8702, "15___CATEGORICAL___nom_9___5f77c6f8f": 8703, "15___CATEGORICAL___nom_9___5f7c7d8aa": 8704, "15___CATEGORICAL___nom_9___5f82976df": 8705, "15___CATEGORICAL___nom_9___5f8705821": 8706, "15___CATEGORICAL___nom_9___5f8a5cc65": 8707, "15___CATEGORICAL___nom_9___5f9364236": 8708, "15___CATEGORICAL___nom_9___5f946b42a": 8709, "15___CATEGORICAL___nom_9___5f99cd5c5": 8710, "15___CATEGORICAL___nom_9___5fac6d29a": 8711, "15___CATEGORICAL___nom_9___5fb0f0189": 8712, "15___CATEGORICAL___nom_9___5fb975e06": 8713, "15___CATEGORICAL___nom_9___5fc39ba58": 8714, "15___CATEGORICAL___nom_9___5fd2c61b5": 8715, "15___CATEGORICAL___nom_9___5fd69b4fc": 8716, "15___CATEGORICAL___nom_9___5fd83faa1": 8717, "15___CATEGORICAL___nom_9___5fda25a1a": 8718, "15___CATEGORICAL___nom_9___5fe1e7708": 8719, "15___CATEGORICAL___nom_9___5fecdec13": 8720, "15___CATEGORICAL___nom_9___5ff6a6ac4": 8721, "15___CATEGORICAL___nom_9___600201907": 8722, "15___CATEGORICAL___nom_9___6002a00a8": 8723, "15___CATEGORICAL___nom_9___6002a30d1": 8724, "15___CATEGORICAL___nom_9___600a84e76": 8725, "15___CATEGORICAL___nom_9___600a89f04": 8726, "15___CATEGORICAL___nom_9___600c3dffb": 8727, "15___CATEGORICAL___nom_9___601b89688": 8728, "15___CATEGORICAL___nom_9___6026a79cc": 8729, "15___CATEGORICAL___nom_9___602bcc56f": 8730, "15___CATEGORICAL___nom_9___602bf5e9d": 8731, "15___CATEGORICAL___nom_9___60346c363": 8732, "15___CATEGORICAL___nom_9___603cadb13": 8733, "15___CATEGORICAL___nom_9___603fca6b7": 8734, "15___CATEGORICAL___nom_9___60446b054": 8735, "15___CATEGORICAL___nom_9___60456cd9d": 8736, "15___CATEGORICAL___nom_9___6065504c5": 8737, "15___CATEGORICAL___nom_9___606e6d5e3": 8738, "15___CATEGORICAL___nom_9___6070b6160": 8739, "15___CATEGORICAL___nom_9___608491057": 8740, "15___CATEGORICAL___nom_9___6088155d8": 8741, "15___CATEGORICAL___nom_9___608cae947": 8742, "15___CATEGORICAL___nom_9___608d33a06": 8743, "15___CATEGORICAL___nom_9___608f2982b": 8744, "15___CATEGORICAL___nom_9___6093ac2ab": 8745, "15___CATEGORICAL___nom_9___60985f035": 8746, "15___CATEGORICAL___nom_9___6098c7786": 8747, "15___CATEGORICAL___nom_9___6099126a8": 8748, "15___CATEGORICAL___nom_9___609cdefad": 8749, "15___CATEGORICAL___nom_9___60a96170f": 8750, "15___CATEGORICAL___nom_9___60ae844df": 8751, "15___CATEGORICAL___nom_9___60c4488ba": 8752, "15___CATEGORICAL___nom_9___60c7a5a2a": 8753, "15___CATEGORICAL___nom_9___60ca15762": 8754, "15___CATEGORICAL___nom_9___60ccd9f9a": 8755, "15___CATEGORICAL___nom_9___60d3e0bda": 8756, "15___CATEGORICAL___nom_9___60d50d361": 8757, "15___CATEGORICAL___nom_9___60d61efc7": 8758, "15___CATEGORICAL___nom_9___60d6840a3": 8759, "15___CATEGORICAL___nom_9___60d6c5385": 8760, "15___CATEGORICAL___nom_9___60d6f7c30": 8761, "15___CATEGORICAL___nom_9___60e8f6524": 8762, "15___CATEGORICAL___nom_9___60ebc49f1": 8763, "15___CATEGORICAL___nom_9___60ecb06e4": 8764, "15___CATEGORICAL___nom_9___60eea5c54": 8765, "15___CATEGORICAL___nom_9___60f27e6b6": 8766, "15___CATEGORICAL___nom_9___60f4019be": 8767, "15___CATEGORICAL___nom_9___60f4cc80c": 8768, "15___CATEGORICAL___nom_9___60fa9c474": 8769, "15___CATEGORICAL___nom_9___6104b80a5": 8770, "15___CATEGORICAL___nom_9___610705ba6": 8771, "15___CATEGORICAL___nom_9___6108dc1a9": 8772, "15___CATEGORICAL___nom_9___610af0498": 8773, "15___CATEGORICAL___nom_9___610b8632e": 8774, "15___CATEGORICAL___nom_9___611bbce04": 8775, "15___CATEGORICAL___nom_9___611e10021": 8776, "15___CATEGORICAL___nom_9___611f89b97": 8777, "15___CATEGORICAL___nom_9___6123020dd": 8778, "15___CATEGORICAL___nom_9___612483ae5": 8779, "15___CATEGORICAL___nom_9___6129e3c81": 8780, "15___CATEGORICAL___nom_9___612df8cb0": 8781, "15___CATEGORICAL___nom_9___6131d8e6d": 8782, "15___CATEGORICAL___nom_9___6133e61ee": 8783, "15___CATEGORICAL___nom_9___613af3c13": 8784, "15___CATEGORICAL___nom_9___613c33c11": 8785, "15___CATEGORICAL___nom_9___613e5f6f5": 8786, "15___CATEGORICAL___nom_9___613e92595": 8787, "15___CATEGORICAL___nom_9___613fd2ceb": 8788, "15___CATEGORICAL___nom_9___614348d35": 8789, "15___CATEGORICAL___nom_9___614e40802": 8790, "15___CATEGORICAL___nom_9___6154b95c2": 8791, "15___CATEGORICAL___nom_9___6154dd2c9": 8792, "15___CATEGORICAL___nom_9___615c38a83": 8793, "15___CATEGORICAL___nom_9___61651dcfa": 8794, "15___CATEGORICAL___nom_9___6167b570a": 8795, "15___CATEGORICAL___nom_9___616c30018": 8796, "15___CATEGORICAL___nom_9___61713ed0c": 8797, "15___CATEGORICAL___nom_9___6175eff7d": 8798, "15___CATEGORICAL___nom_9___617b6badf": 8799, "15___CATEGORICAL___nom_9___6182fbb5e": 8800, "15___CATEGORICAL___nom_9___61843bfce": 8801, "15___CATEGORICAL___nom_9___618a82801": 8802, "15___CATEGORICAL___nom_9___618bee284": 8803, "15___CATEGORICAL___nom_9___61985f017": 8804, "15___CATEGORICAL___nom_9___619ff05b2": 8805, "15___CATEGORICAL___nom_9___61a4ff84c": 8806, "15___CATEGORICAL___nom_9___61a776f09": 8807, "15___CATEGORICAL___nom_9___61b07fe8e": 8808, "15___CATEGORICAL___nom_9___61b1d40ce": 8809, "15___CATEGORICAL___nom_9___61bb2a1ba": 8810, "15___CATEGORICAL___nom_9___61bb9e43d": 8811, "15___CATEGORICAL___nom_9___61c39507e": 8812, "15___CATEGORICAL___nom_9___61c630ff9": 8813, "15___CATEGORICAL___nom_9___61c8d8792": 8814, "15___CATEGORICAL___nom_9___61c941cb4": 8815, "15___CATEGORICAL___nom_9___61d6aa578": 8816, "15___CATEGORICAL___nom_9___61ef75d23": 8817, "15___CATEGORICAL___nom_9___61f32b54c": 8818, "15___CATEGORICAL___nom_9___61f90b691": 8819, "15___CATEGORICAL___nom_9___61fa9158c": 8820, "15___CATEGORICAL___nom_9___6204da179": 8821, "15___CATEGORICAL___nom_9___62117d070": 8822, "15___CATEGORICAL___nom_9___621842234": 8823, "15___CATEGORICAL___nom_9___621cbda12": 8824, "15___CATEGORICAL___nom_9___621df8ee8": 8825, "15___CATEGORICAL___nom_9___621e554d4": 8826, "15___CATEGORICAL___nom_9___621fb0f46": 8827, "15___CATEGORICAL___nom_9___62223940c": 8828, "15___CATEGORICAL___nom_9___622caf632": 8829, "15___CATEGORICAL___nom_9___623d828b9": 8830, "15___CATEGORICAL___nom_9___62436478a": 8831, "15___CATEGORICAL___nom_9___624a32e57": 8832, "15___CATEGORICAL___nom_9___624b321be": 8833, "15___CATEGORICAL___nom_9___624d06476": 8834, "15___CATEGORICAL___nom_9___625786afd": 8835, "15___CATEGORICAL___nom_9___625a427b2": 8836, "15___CATEGORICAL___nom_9___625abcbdc": 8837, "15___CATEGORICAL___nom_9___625c056fc": 8838, "15___CATEGORICAL___nom_9___626099be6": 8839, "15___CATEGORICAL___nom_9___6263c7985": 8840, "15___CATEGORICAL___nom_9___6264b1ad8": 8841, "15___CATEGORICAL___nom_9___626ec782f": 8842, "15___CATEGORICAL___nom_9___62773c430": 8843, "15___CATEGORICAL___nom_9___6281ebd35": 8844, "15___CATEGORICAL___nom_9___628443cca": 8845, "15___CATEGORICAL___nom_9___6289781a0": 8846, "15___CATEGORICAL___nom_9___628bf4672": 8847, "15___CATEGORICAL___nom_9___628d93e2f": 8848, "15___CATEGORICAL___nom_9___628ee1823": 8849, "15___CATEGORICAL___nom_9___629987b1b": 8850, "15___CATEGORICAL___nom_9___629e63e06": 8851, "15___CATEGORICAL___nom_9___629ee33ae": 8852, "15___CATEGORICAL___nom_9___62a790ac6": 8853, "15___CATEGORICAL___nom_9___62aac70f1": 8854, "15___CATEGORICAL___nom_9___62b068d81": 8855, "15___CATEGORICAL___nom_9___62b9b7e4f": 8856, "15___CATEGORICAL___nom_9___62c2bb004": 8857, "15___CATEGORICAL___nom_9___62c74a2e2": 8858, "15___CATEGORICAL___nom_9___62c9d50f0": 8859, "15___CATEGORICAL___nom_9___62d85a8e0": 8860, "15___CATEGORICAL___nom_9___62da0da08": 8861, "15___CATEGORICAL___nom_9___62da91550": 8862, "15___CATEGORICAL___nom_9___62dc20ab1": 8863, "15___CATEGORICAL___nom_9___62dd66449": 8864, "15___CATEGORICAL___nom_9___62e71483b": 8865, "15___CATEGORICAL___nom_9___62e988ac4": 8866, "15___CATEGORICAL___nom_9___62eed3169": 8867, "15___CATEGORICAL___nom_9___62eefefc6": 8868, "15___CATEGORICAL___nom_9___62f1c5010": 8869, "15___CATEGORICAL___nom_9___62f3d45ad": 8870, "15___CATEGORICAL___nom_9___6305a7326": 8871, "15___CATEGORICAL___nom_9___630e0da24": 8872, "15___CATEGORICAL___nom_9___6318de1a8": 8873, "15___CATEGORICAL___nom_9___631b424ff": 8874, "15___CATEGORICAL___nom_9___631df072e": 8875, "15___CATEGORICAL___nom_9___631f045f1": 8876, "15___CATEGORICAL___nom_9___6325e01a2": 8877, "15___CATEGORICAL___nom_9___63307fb09": 8878, "15___CATEGORICAL___nom_9___63405c690": 8879, "15___CATEGORICAL___nom_9___6343b5930": 8880, "15___CATEGORICAL___nom_9___6346df2ae": 8881, "15___CATEGORICAL___nom_9___634cae17c": 8882, "15___CATEGORICAL___nom_9___634f4af8e": 8883, "15___CATEGORICAL___nom_9___6352a14e1": 8884, "15___CATEGORICAL___nom_9___635410fdc": 8885, "15___CATEGORICAL___nom_9___635b48305": 8886, "15___CATEGORICAL___nom_9___635e5c530": 8887, "15___CATEGORICAL___nom_9___636e062ed": 8888, "15___CATEGORICAL___nom_9___637363fb5": 8889, "15___CATEGORICAL___nom_9___637631c25": 8890, "15___CATEGORICAL___nom_9___637678ed2": 8891, "15___CATEGORICAL___nom_9___63788f8fd": 8892, "15___CATEGORICAL___nom_9___637983da2": 8893, "15___CATEGORICAL___nom_9___637db5812": 8894, "15___CATEGORICAL___nom_9___638a4d434": 8895, "15___CATEGORICAL___nom_9___638b7da8d": 8896, "15___CATEGORICAL___nom_9___638fa439e": 8897, "15___CATEGORICAL___nom_9___6391a7ea7": 8898, "15___CATEGORICAL___nom_9___6397e6ac7": 8899, "15___CATEGORICAL___nom_9___639bf241b": 8900, "15___CATEGORICAL___nom_9___639d8ad53": 8901, "15___CATEGORICAL___nom_9___639eb9217": 8902, "15___CATEGORICAL___nom_9___639ee90ab": 8903, "15___CATEGORICAL___nom_9___639f18c33": 8904, "15___CATEGORICAL___nom_9___63a2774d3": 8905, "15___CATEGORICAL___nom_9___63b769e35": 8906, "15___CATEGORICAL___nom_9___63b8215e9": 8907, "15___CATEGORICAL___nom_9___63b9b6660": 8908, "15___CATEGORICAL___nom_9___63bb5eb22": 8909, "15___CATEGORICAL___nom_9___63c154b69": 8910, "15___CATEGORICAL___nom_9___63cb4f989": 8911, "15___CATEGORICAL___nom_9___63cea6ada": 8912, "15___CATEGORICAL___nom_9___63d0b0668": 8913, "15___CATEGORICAL___nom_9___63d63d2cf": 8914, "15___CATEGORICAL___nom_9___63e0ea77c": 8915, "15___CATEGORICAL___nom_9___63e204071": 8916, "15___CATEGORICAL___nom_9___63edb59fe": 8917, "15___CATEGORICAL___nom_9___64018d8d9": 8918, "15___CATEGORICAL___nom_9___6404774ab": 8919, "15___CATEGORICAL___nom_9___6406c9f8a": 8920, "15___CATEGORICAL___nom_9___6408ef207": 8921, "15___CATEGORICAL___nom_9___640bf4745": 8922, "15___CATEGORICAL___nom_9___640e4c635": 8923, "15___CATEGORICAL___nom_9___641a40c6f": 8924, "15___CATEGORICAL___nom_9___641d1b3ea": 8925, "15___CATEGORICAL___nom_9___641d512ff": 8926, "15___CATEGORICAL___nom_9___6429d10be": 8927, "15___CATEGORICAL___nom_9___642c9e74d": 8928, "15___CATEGORICAL___nom_9___642de1d02": 8929, "15___CATEGORICAL___nom_9___643244533": 8930, "15___CATEGORICAL___nom_9___64345481f": 8931, "15___CATEGORICAL___nom_9___643c3f24a": 8932, "15___CATEGORICAL___nom_9___643f126c2": 8933, "15___CATEGORICAL___nom_9___6440d2a75": 8934, "15___CATEGORICAL___nom_9___6445ec618": 8935, "15___CATEGORICAL___nom_9___64491846b": 8936, "15___CATEGORICAL___nom_9___644bcddc9": 8937, "15___CATEGORICAL___nom_9___644d0161c": 8938, "15___CATEGORICAL___nom_9___645400799": 8939, "15___CATEGORICAL___nom_9___64546705e": 8940, "15___CATEGORICAL___nom_9___645b0a17a": 8941, "15___CATEGORICAL___nom_9___645de9c78": 8942, "15___CATEGORICAL___nom_9___6460d0dc2": 8943, "15___CATEGORICAL___nom_9___646f80fd7": 8944, "15___CATEGORICAL___nom_9___64748c001": 8945, "15___CATEGORICAL___nom_9___647a63d87": 8946, "15___CATEGORICAL___nom_9___647bcb28e": 8947, "15___CATEGORICAL___nom_9___647ce1262": 8948, "15___CATEGORICAL___nom_9___6484261fd": 8949, "15___CATEGORICAL___nom_9___648b01f5d": 8950, "15___CATEGORICAL___nom_9___648ca86aa": 8951, "15___CATEGORICAL___nom_9___6495c40f9": 8952, "15___CATEGORICAL___nom_9___6496d6cad": 8953, "15___CATEGORICAL___nom_9___64a3a7e78": 8954, "15___CATEGORICAL___nom_9___64aa60847": 8955, "15___CATEGORICAL___nom_9___64ab48c11": 8956, "15___CATEGORICAL___nom_9___64b5f4997": 8957, "15___CATEGORICAL___nom_9___64b7d1088": 8958, "15___CATEGORICAL___nom_9___64b7fea15": 8959, "15___CATEGORICAL___nom_9___64b9466d4": 8960, "15___CATEGORICAL___nom_9___64c41c2f4": 8961, "15___CATEGORICAL___nom_9___64cb6f5d1": 8962, "15___CATEGORICAL___nom_9___64cf02e18": 8963, "15___CATEGORICAL___nom_9___64cf81768": 8964, "15___CATEGORICAL___nom_9___64d054c35": 8965, "15___CATEGORICAL___nom_9___64d25334f": 8966, "15___CATEGORICAL___nom_9___64daadce8": 8967, "15___CATEGORICAL___nom_9___64ec48440": 8968, "15___CATEGORICAL___nom_9___64ed6de71": 8969, "15___CATEGORICAL___nom_9___64f44d6dd": 8970, "15___CATEGORICAL___nom_9___64f86b12b": 8971, "15___CATEGORICAL___nom_9___64f89328c": 8972, "15___CATEGORICAL___nom_9___651003409": 8973, "15___CATEGORICAL___nom_9___6512e6e59": 8974, "15___CATEGORICAL___nom_9___651c9048e": 8975, "15___CATEGORICAL___nom_9___652aafdf7": 8976, "15___CATEGORICAL___nom_9___652b7901e": 8977, "15___CATEGORICAL___nom_9___652c963d7": 8978, "15___CATEGORICAL___nom_9___652d0284d": 8979, "15___CATEGORICAL___nom_9___654cdb18b": 8980, "15___CATEGORICAL___nom_9___65579a717": 8981, "15___CATEGORICAL___nom_9___656186eb9": 8982, "15___CATEGORICAL___nom_9___656306559": 8983, "15___CATEGORICAL___nom_9___6563efc2d": 8984, "15___CATEGORICAL___nom_9___65699769c": 8985, "15___CATEGORICAL___nom_9___656ba142e": 8986, "15___CATEGORICAL___nom_9___656fefc36": 8987, "15___CATEGORICAL___nom_9___6575573d5": 8988, "15___CATEGORICAL___nom_9___65780fa20": 8989, "15___CATEGORICAL___nom_9___657909dea": 8990, "15___CATEGORICAL___nom_9___6579d31a6": 8991, "15___CATEGORICAL___nom_9___658258f8f": 8992, "15___CATEGORICAL___nom_9___658466bd8": 8993, "15___CATEGORICAL___nom_9___658530128": 8994, "15___CATEGORICAL___nom_9___6592b5c21": 8995, "15___CATEGORICAL___nom_9___65937f3c2": 8996, "15___CATEGORICAL___nom_9___65a05ab1c": 8997, "15___CATEGORICAL___nom_9___65a77bbd8": 8998, "15___CATEGORICAL___nom_9___65a7816b3": 8999, "15___CATEGORICAL___nom_9___65ad345d7": 9000, "15___CATEGORICAL___nom_9___65b49bf78": 9001, "15___CATEGORICAL___nom_9___65b4e6dff": 9002, "15___CATEGORICAL___nom_9___65bae3836": 9003, "15___CATEGORICAL___nom_9___65c3d264e": 9004, "15___CATEGORICAL___nom_9___65cd96c2e": 9005, "15___CATEGORICAL___nom_9___65cf86020": 9006, "15___CATEGORICAL___nom_9___65d54e094": 9007, "15___CATEGORICAL___nom_9___65dd87c7d": 9008, "15___CATEGORICAL___nom_9___65e31f004": 9009, "15___CATEGORICAL___nom_9___65e8543e5": 9010, "15___CATEGORICAL___nom_9___65e868377": 9011, "15___CATEGORICAL___nom_9___65eae547e": 9012, "15___CATEGORICAL___nom_9___65ec9c262": 9013, "15___CATEGORICAL___nom_9___65f75afda": 9014, "15___CATEGORICAL___nom_9___65f818fa4": 9015, "15___CATEGORICAL___nom_9___6605988fa": 9016, "15___CATEGORICAL___nom_9___66097fcbc": 9017, "15___CATEGORICAL___nom_9___661a0a4a4": 9018, "15___CATEGORICAL___nom_9___661bcb872": 9019, "15___CATEGORICAL___nom_9___66213efaf": 9020, "15___CATEGORICAL___nom_9___6621910a4": 9021, "15___CATEGORICAL___nom_9___662287a23": 9022, "15___CATEGORICAL___nom_9___66270c30b": 9023, "15___CATEGORICAL___nom_9___66289fd08": 9024, "15___CATEGORICAL___nom_9___662e50dc7": 9025, "15___CATEGORICAL___nom_9___663c8a201": 9026, "15___CATEGORICAL___nom_9___66409bde9": 9027, "15___CATEGORICAL___nom_9___66439689a": 9028, "15___CATEGORICAL___nom_9___6655c2a03": 9029, "15___CATEGORICAL___nom_9___665fc7840": 9030, "15___CATEGORICAL___nom_9___66604890c": 9031, "15___CATEGORICAL___nom_9___666574e23": 9032, "15___CATEGORICAL___nom_9___666c9e519": 9033, "15___CATEGORICAL___nom_9___666ccd310": 9034, "15___CATEGORICAL___nom_9___667b8da69": 9035, "15___CATEGORICAL___nom_9___667ca5c3d": 9036, "15___CATEGORICAL___nom_9___667cdb6ef": 9037, "15___CATEGORICAL___nom_9___668126eec": 9038, "15___CATEGORICAL___nom_9___66841ce14": 9039, "15___CATEGORICAL___nom_9___6696a3262": 9040, "15___CATEGORICAL___nom_9___669a16867": 9041, "15___CATEGORICAL___nom_9___669b86867": 9042, "15___CATEGORICAL___nom_9___66a6e7f65": 9043, "15___CATEGORICAL___nom_9___66b26fe81": 9044, "15___CATEGORICAL___nom_9___66b4b754c": 9045, "15___CATEGORICAL___nom_9___66bb77312": 9046, "15___CATEGORICAL___nom_9___66c8f1966": 9047, "15___CATEGORICAL___nom_9___66cb1f126": 9048, "15___CATEGORICAL___nom_9___66cc5a64d": 9049, "15___CATEGORICAL___nom_9___66d8d8805": 9050, "15___CATEGORICAL___nom_9___66d940f76": 9051, "15___CATEGORICAL___nom_9___66de15e39": 9052, "15___CATEGORICAL___nom_9___66e26dd27": 9053, "15___CATEGORICAL___nom_9___66e555faf": 9054, "15___CATEGORICAL___nom_9___66e59c9f7": 9055, "15___CATEGORICAL___nom_9___66ed98e41": 9056, "15___CATEGORICAL___nom_9___66f0134f1": 9057, "15___CATEGORICAL___nom_9___66f21f607": 9058, "15___CATEGORICAL___nom_9___66f4a275e": 9059, "15___CATEGORICAL___nom_9___66f8ade0e": 9060, "15___CATEGORICAL___nom_9___66fa12b40": 9061, "15___CATEGORICAL___nom_9___670622bb9": 9062, "15___CATEGORICAL___nom_9___670a916fb": 9063, "15___CATEGORICAL___nom_9___670fbecb5": 9064, "15___CATEGORICAL___nom_9___6710d6d2d": 9065, "15___CATEGORICAL___nom_9___671b7dc00": 9066, "15___CATEGORICAL___nom_9___672b9c640": 9067, "15___CATEGORICAL___nom_9___67337ded9": 9068, "15___CATEGORICAL___nom_9___673879e1b": 9069, "15___CATEGORICAL___nom_9___673c268c5": 9070, "15___CATEGORICAL___nom_9___673eb31b3": 9071, "15___CATEGORICAL___nom_9___67420a557": 9072, "15___CATEGORICAL___nom_9___674d36243": 9073, "15___CATEGORICAL___nom_9___674de9787": 9074, "15___CATEGORICAL___nom_9___6751a9d1d": 9075, "15___CATEGORICAL___nom_9___67543f5a6": 9076, "15___CATEGORICAL___nom_9___6757ec7a9": 9077, "15___CATEGORICAL___nom_9___675809ef1": 9078, "15___CATEGORICAL___nom_9___675b3dcd9": 9079, "15___CATEGORICAL___nom_9___6760bce63": 9080, "15___CATEGORICAL___nom_9___676136f5e": 9081, "15___CATEGORICAL___nom_9___6769ed045": 9082, "15___CATEGORICAL___nom_9___676db4ae1": 9083, "15___CATEGORICAL___nom_9___677bc9ab7": 9084, "15___CATEGORICAL___nom_9___677eeb96b": 9085, "15___CATEGORICAL___nom_9___6783484c0": 9086, "15___CATEGORICAL___nom_9___67891d3e6": 9087, "15___CATEGORICAL___nom_9___678951234": 9088, "15___CATEGORICAL___nom_9___6795b1a69": 9089, "15___CATEGORICAL___nom_9___6797c9cd1": 9090, "15___CATEGORICAL___nom_9___679808bb3": 9091, "15___CATEGORICAL___nom_9___6799ea063": 9092, "15___CATEGORICAL___nom_9___679a4d856": 9093, "15___CATEGORICAL___nom_9___679e461f4": 9094, "15___CATEGORICAL___nom_9___67a30c9b7": 9095, "15___CATEGORICAL___nom_9___67a728fc3": 9096, "15___CATEGORICAL___nom_9___67a7ea26a": 9097, "15___CATEGORICAL___nom_9___67a98aef6": 9098, "15___CATEGORICAL___nom_9___67ad9b27e": 9099, "15___CATEGORICAL___nom_9___67b29842a": 9100, "15___CATEGORICAL___nom_9___67b4698ac": 9101, "15___CATEGORICAL___nom_9___67b5c9a22": 9102, "15___CATEGORICAL___nom_9___67b8882c2": 9103, "15___CATEGORICAL___nom_9___67b91ff97": 9104, "15___CATEGORICAL___nom_9___67bba2b07": 9105, "15___CATEGORICAL___nom_9___67c1fcb1c": 9106, "15___CATEGORICAL___nom_9___67c2fb95c": 9107, "15___CATEGORICAL___nom_9___67c848320": 9108, "15___CATEGORICAL___nom_9___67ce7a6b6": 9109, "15___CATEGORICAL___nom_9___67dc17d75": 9110, "15___CATEGORICAL___nom_9___67df62d6b": 9111, "15___CATEGORICAL___nom_9___67ed193ac": 9112, "15___CATEGORICAL___nom_9___67ed25437": 9113, "15___CATEGORICAL___nom_9___67fb883c5": 9114, "15___CATEGORICAL___nom_9___67fe1445f": 9115, "15___CATEGORICAL___nom_9___68082c4e8": 9116, "15___CATEGORICAL___nom_9___680aa0ca9": 9117, "15___CATEGORICAL___nom_9___680b129f9": 9118, "15___CATEGORICAL___nom_9___681d3df1b": 9119, "15___CATEGORICAL___nom_9___682445a0a": 9120, "15___CATEGORICAL___nom_9___682790fd8": 9121, "15___CATEGORICAL___nom_9___682a405a2": 9122, "15___CATEGORICAL___nom_9___682c7c7db": 9123, "15___CATEGORICAL___nom_9___682c7d882": 9124, "15___CATEGORICAL___nom_9___682e0eaf2": 9125, "15___CATEGORICAL___nom_9___683755ec0": 9126, "15___CATEGORICAL___nom_9___683ac50cb": 9127, "15___CATEGORICAL___nom_9___68402f573": 9128, "15___CATEGORICAL___nom_9___68424dab8": 9129, "15___CATEGORICAL___nom_9___6845740e8": 9130, "15___CATEGORICAL___nom_9___68507684c": 9131, "15___CATEGORICAL___nom_9___685147147": 9132, "15___CATEGORICAL___nom_9___6858aa9fe": 9133, "15___CATEGORICAL___nom_9___68590ad22": 9134, "15___CATEGORICAL___nom_9___685dbe70c": 9135, "15___CATEGORICAL___nom_9___685ebf693": 9136, "15___CATEGORICAL___nom_9___6877f33fc": 9137, "15___CATEGORICAL___nom_9___688457c95": 9138, "15___CATEGORICAL___nom_9___688534c4f": 9139, "15___CATEGORICAL___nom_9___688e3290a": 9140, "15___CATEGORICAL___nom_9___68951e596": 9141, "15___CATEGORICAL___nom_9___689b9a1b2": 9142, "15___CATEGORICAL___nom_9___689cef455": 9143, "15___CATEGORICAL___nom_9___689dd6c14": 9144, "15___CATEGORICAL___nom_9___68b2f2ff5": 9145, "15___CATEGORICAL___nom_9___68ba37ccd": 9146, "15___CATEGORICAL___nom_9___68be67ef4": 9147, "15___CATEGORICAL___nom_9___68be7e533": 9148, "15___CATEGORICAL___nom_9___68c629456": 9149, "15___CATEGORICAL___nom_9___68c648c2f": 9150, "15___CATEGORICAL___nom_9___68cdcfe96": 9151, "15___CATEGORICAL___nom_9___68d73b7dd": 9152, "15___CATEGORICAL___nom_9___68d9249b3": 9153, "15___CATEGORICAL___nom_9___68ddaa29a": 9154, "15___CATEGORICAL___nom_9___68de72932": 9155, "15___CATEGORICAL___nom_9___68deb9b59": 9156, "15___CATEGORICAL___nom_9___68e311115": 9157, "15___CATEGORICAL___nom_9___68eaedaac": 9158, "15___CATEGORICAL___nom_9___68f1fcf47": 9159, "15___CATEGORICAL___nom_9___68f20a590": 9160, "15___CATEGORICAL___nom_9___68f3b4483": 9161, "15___CATEGORICAL___nom_9___68f5c7b0f": 9162, "15___CATEGORICAL___nom_9___68f7aa308": 9163, "15___CATEGORICAL___nom_9___68fe71329": 9164, "15___CATEGORICAL___nom_9___68ffa561d": 9165, "15___CATEGORICAL___nom_9___6900b9141": 9166, "15___CATEGORICAL___nom_9___690ec380a": 9167, "15___CATEGORICAL___nom_9___6913c19f8": 9168, "15___CATEGORICAL___nom_9___691ab9569": 9169, "15___CATEGORICAL___nom_9___691f62f55": 9170, "15___CATEGORICAL___nom_9___691ff6949": 9171, "15___CATEGORICAL___nom_9___692262042": 9172, "15___CATEGORICAL___nom_9___69258440e": 9173, "15___CATEGORICAL___nom_9___692ab6090": 9174, "15___CATEGORICAL___nom_9___69316521a": 9175, "15___CATEGORICAL___nom_9___6931d2757": 9176, "15___CATEGORICAL___nom_9___693434e70": 9177, "15___CATEGORICAL___nom_9___69371411d": 9178, "15___CATEGORICAL___nom_9___6938527c6": 9179, "15___CATEGORICAL___nom_9___6949871a9": 9180, "15___CATEGORICAL___nom_9___695058af0": 9181, "15___CATEGORICAL___nom_9___695512b7f": 9182, "15___CATEGORICAL___nom_9___69639a5b8": 9183, "15___CATEGORICAL___nom_9___696a756c2": 9184, "15___CATEGORICAL___nom_9___69714e653": 9185, "15___CATEGORICAL___nom_9___69797d133": 9186, "15___CATEGORICAL___nom_9___698878032": 9187, "15___CATEGORICAL___nom_9___6989c760f": 9188, "15___CATEGORICAL___nom_9___698b6b7ab": 9189, "15___CATEGORICAL___nom_9___69902590d": 9190, "15___CATEGORICAL___nom_9___69a49ca83": 9191, "15___CATEGORICAL___nom_9___69be6c639": 9192, "15___CATEGORICAL___nom_9___69c30102c": 9193, "15___CATEGORICAL___nom_9___69ce35dcb": 9194, "15___CATEGORICAL___nom_9___69d330b17": 9195, "15___CATEGORICAL___nom_9___69d4070af": 9196, "15___CATEGORICAL___nom_9___69da4dd7e": 9197, "15___CATEGORICAL___nom_9___69df1d269": 9198, "15___CATEGORICAL___nom_9___69e135a36": 9199, "15___CATEGORICAL___nom_9___69e5475c2": 9200, "15___CATEGORICAL___nom_9___69ea23e67": 9201, "15___CATEGORICAL___nom_9___69f0e365a": 9202, "15___CATEGORICAL___nom_9___69f88d1cd": 9203, "15___CATEGORICAL___nom_9___69f93ae6f": 9204, "15___CATEGORICAL___nom_9___6a06f0cbe": 9205, "15___CATEGORICAL___nom_9___6a073f38d": 9206, "15___CATEGORICAL___nom_9___6a0ef45d6": 9207, "15___CATEGORICAL___nom_9___6a109062f": 9208, "15___CATEGORICAL___nom_9___6a1215d2b": 9209, "15___CATEGORICAL___nom_9___6a13bcd52": 9210, "15___CATEGORICAL___nom_9___6a145752b": 9211, "15___CATEGORICAL___nom_9___6a2092954": 9212, "15___CATEGORICAL___nom_9___6a20b2ab8": 9213, "15___CATEGORICAL___nom_9___6a222b51f": 9214, "15___CATEGORICAL___nom_9___6a223b1a0": 9215, "15___CATEGORICAL___nom_9___6a28a5f28": 9216, "15___CATEGORICAL___nom_9___6a2a884cd": 9217, "15___CATEGORICAL___nom_9___6a2ca3aad": 9218, "15___CATEGORICAL___nom_9___6a2de3db6": 9219, "15___CATEGORICAL___nom_9___6a2fd0099": 9220, "15___CATEGORICAL___nom_9___6a3a8d725": 9221, "15___CATEGORICAL___nom_9___6a49d3828": 9222, "15___CATEGORICAL___nom_9___6a4daa92e": 9223, "15___CATEGORICAL___nom_9___6a52b94d5": 9224, "15___CATEGORICAL___nom_9___6a586546d": 9225, "15___CATEGORICAL___nom_9___6a5f3c6ed": 9226, "15___CATEGORICAL___nom_9___6a627f8fb": 9227, "15___CATEGORICAL___nom_9___6a672a3c8": 9228, "15___CATEGORICAL___nom_9___6a6d1f0e6": 9229, "15___CATEGORICAL___nom_9___6a78d995c": 9230, "15___CATEGORICAL___nom_9___6a7e126fe": 9231, "15___CATEGORICAL___nom_9___6a86dc078": 9232, "15___CATEGORICAL___nom_9___6a8af3c16": 9233, "15___CATEGORICAL___nom_9___6a9e34bd1": 9234, "15___CATEGORICAL___nom_9___6a9f5cc23": 9235, "15___CATEGORICAL___nom_9___6a9fc8a8c": 9236, "15___CATEGORICAL___nom_9___6aa6fb39e": 9237, "15___CATEGORICAL___nom_9___6aa7f3ed3": 9238, "15___CATEGORICAL___nom_9___6ab6898ab": 9239, "15___CATEGORICAL___nom_9___6abf71fb4": 9240, "15___CATEGORICAL___nom_9___6ac3ccd15": 9241, "15___CATEGORICAL___nom_9___6ace21a0c": 9242, "15___CATEGORICAL___nom_9___6ad275d9e": 9243, "15___CATEGORICAL___nom_9___6ad28cd62": 9244, "15___CATEGORICAL___nom_9___6ad938a2f": 9245, "15___CATEGORICAL___nom_9___6adba3b85": 9246, "15___CATEGORICAL___nom_9___6adebcea2": 9247, "15___CATEGORICAL___nom_9___6ae91a0e4": 9248, "15___CATEGORICAL___nom_9___6af47fcb3": 9249, "15___CATEGORICAL___nom_9___6b1405ebc": 9250, "15___CATEGORICAL___nom_9___6b18802c0": 9251, "15___CATEGORICAL___nom_9___6b1cea7ed": 9252, "15___CATEGORICAL___nom_9___6b1ea252d": 9253, "15___CATEGORICAL___nom_9___6b28aa483": 9254, "15___CATEGORICAL___nom_9___6b2aae704": 9255, "15___CATEGORICAL___nom_9___6b37f5bd1": 9256, "15___CATEGORICAL___nom_9___6b3c04a8d": 9257, "15___CATEGORICAL___nom_9___6b4cffef2": 9258, "15___CATEGORICAL___nom_9___6b4f66abc": 9259, "15___CATEGORICAL___nom_9___6b551fc8a": 9260, "15___CATEGORICAL___nom_9___6b55ab403": 9261, "15___CATEGORICAL___nom_9___6b6640e4b": 9262, "15___CATEGORICAL___nom_9___6b6d8ea85": 9263, "15___CATEGORICAL___nom_9___6b73b9fa8": 9264, "15___CATEGORICAL___nom_9___6b76038de": 9265, "15___CATEGORICAL___nom_9___6b78169ba": 9266, "15___CATEGORICAL___nom_9___6b827766e": 9267, "15___CATEGORICAL___nom_9___6b9b96b6e": 9268, "15___CATEGORICAL___nom_9___6ba058d5d": 9269, "15___CATEGORICAL___nom_9___6ba0753fc": 9270, "15___CATEGORICAL___nom_9___6ba2e47fb": 9271, "15___CATEGORICAL___nom_9___6ba6aa1ec": 9272, "15___CATEGORICAL___nom_9___6bab912ef": 9273, "15___CATEGORICAL___nom_9___6bb0774ba": 9274, "15___CATEGORICAL___nom_9___6bb972583": 9275, "15___CATEGORICAL___nom_9___6bb9a29ed": 9276, "15___CATEGORICAL___nom_9___6bbad5f8c": 9277, "15___CATEGORICAL___nom_9___6bc15e92a": 9278, "15___CATEGORICAL___nom_9___6bcb9db0f": 9279, "15___CATEGORICAL___nom_9___6bcf5b2b3": 9280, "15___CATEGORICAL___nom_9___6bd2f1753": 9281, "15___CATEGORICAL___nom_9___6bd6ab9ab": 9282, "15___CATEGORICAL___nom_9___6bd80068b": 9283, "15___CATEGORICAL___nom_9___6bde0920f": 9284, "15___CATEGORICAL___nom_9___6be0404f5": 9285, "15___CATEGORICAL___nom_9___6be4248c7": 9286, "15___CATEGORICAL___nom_9___6bf152be5": 9287, "15___CATEGORICAL___nom_9___6bfe039bc": 9288, "15___CATEGORICAL___nom_9___6c03553f9": 9289, "15___CATEGORICAL___nom_9___6c0a63379": 9290, "15___CATEGORICAL___nom_9___6c0aaa391": 9291, "15___CATEGORICAL___nom_9___6c0b0a2d7": 9292, "15___CATEGORICAL___nom_9___6c0dab20d": 9293, "15___CATEGORICAL___nom_9___6c10a17a3": 9294, "15___CATEGORICAL___nom_9___6c1127e38": 9295, "15___CATEGORICAL___nom_9___6c12f69e7": 9296, "15___CATEGORICAL___nom_9___6c17a4707": 9297, "15___CATEGORICAL___nom_9___6c18960e3": 9298, "15___CATEGORICAL___nom_9___6c1fe1c84": 9299, "15___CATEGORICAL___nom_9___6c25b3bbe": 9300, "15___CATEGORICAL___nom_9___6c3599b74": 9301, "15___CATEGORICAL___nom_9___6c35bec50": 9302, "15___CATEGORICAL___nom_9___6c4606b54": 9303, "15___CATEGORICAL___nom_9___6c7282293": 9304, "15___CATEGORICAL___nom_9___6c7322f23": 9305, "15___CATEGORICAL___nom_9___6c73c25a8": 9306, "15___CATEGORICAL___nom_9___6c7819951": 9307, "15___CATEGORICAL___nom_9___6c7b112d2": 9308, "15___CATEGORICAL___nom_9___6c7d19b2e": 9309, "15___CATEGORICAL___nom_9___6c840a096": 9310, "15___CATEGORICAL___nom_9___6c8971efc": 9311, "15___CATEGORICAL___nom_9___6c8f825c0": 9312, "15___CATEGORICAL___nom_9___6c96ba04c": 9313, "15___CATEGORICAL___nom_9___6ca63ac21": 9314, "15___CATEGORICAL___nom_9___6ca8d0541": 9315, "15___CATEGORICAL___nom_9___6ca90f9a2": 9316, "15___CATEGORICAL___nom_9___6cb68a436": 9317, "15___CATEGORICAL___nom_9___6cb6c9728": 9318, "15___CATEGORICAL___nom_9___6cbec026d": 9319, "15___CATEGORICAL___nom_9___6cc935724": 9320, "15___CATEGORICAL___nom_9___6cc94f5f9": 9321, "15___CATEGORICAL___nom_9___6cd4df1d4": 9322, "15___CATEGORICAL___nom_9___6cd75677e": 9323, "15___CATEGORICAL___nom_9___6cd7c285c": 9324, "15___CATEGORICAL___nom_9___6cdb9af99": 9325, "15___CATEGORICAL___nom_9___6cde7f710": 9326, "15___CATEGORICAL___nom_9___6ce1ec3f0": 9327, "15___CATEGORICAL___nom_9___6ce913453": 9328, "15___CATEGORICAL___nom_9___6cede31b7": 9329, "15___CATEGORICAL___nom_9___6cf0cb7ce": 9330, "15___CATEGORICAL___nom_9___6cf1215c0": 9331, "15___CATEGORICAL___nom_9___6cf28e55c": 9332, "15___CATEGORICAL___nom_9___6cfac22f5": 9333, "15___CATEGORICAL___nom_9___6d00946f0": 9334, "15___CATEGORICAL___nom_9___6d047f52e": 9335, "15___CATEGORICAL___nom_9___6d06d4ee6": 9336, "15___CATEGORICAL___nom_9___6d06dea2b": 9337, "15___CATEGORICAL___nom_9___6d14b2b0d": 9338, "15___CATEGORICAL___nom_9___6d1a3a157": 9339, "15___CATEGORICAL___nom_9___6d1d351bf": 9340, "15___CATEGORICAL___nom_9___6d1de5468": 9341, "15___CATEGORICAL___nom_9___6d214d9ee": 9342, "15___CATEGORICAL___nom_9___6d2469284": 9343, "15___CATEGORICAL___nom_9___6d2cfd345": 9344, "15___CATEGORICAL___nom_9___6d32ef34a": 9345, "15___CATEGORICAL___nom_9___6d3498b0b": 9346, "15___CATEGORICAL___nom_9___6d3667bda": 9347, "15___CATEGORICAL___nom_9___6d4382bfd": 9348, "15___CATEGORICAL___nom_9___6d5494a48": 9349, "15___CATEGORICAL___nom_9___6d63869ea": 9350, "15___CATEGORICAL___nom_9___6d64cf828": 9351, "15___CATEGORICAL___nom_9___6d6b63e7d": 9352, "15___CATEGORICAL___nom_9___6d70e8b27": 9353, "15___CATEGORICAL___nom_9___6d76114d6": 9354, "15___CATEGORICAL___nom_9___6d7bafbdd": 9355, "15___CATEGORICAL___nom_9___6d7e717d5": 9356, "15___CATEGORICAL___nom_9___6d80afed3": 9357, "15___CATEGORICAL___nom_9___6d820ac62": 9358, "15___CATEGORICAL___nom_9___6d839b98f": 9359, "15___CATEGORICAL___nom_9___6d8487577": 9360, "15___CATEGORICAL___nom_9___6d89091fa": 9361, "15___CATEGORICAL___nom_9___6d90971f8": 9362, "15___CATEGORICAL___nom_9___6d9347e8f": 9363, "15___CATEGORICAL___nom_9___6d9876599": 9364, "15___CATEGORICAL___nom_9___6d9e34ac7": 9365, "15___CATEGORICAL___nom_9___6da4ebf07": 9366, "15___CATEGORICAL___nom_9___6dad6a9b2": 9367, "15___CATEGORICAL___nom_9___6db2749af": 9368, "15___CATEGORICAL___nom_9___6db5e23d4": 9369, "15___CATEGORICAL___nom_9___6db622133": 9370, "15___CATEGORICAL___nom_9___6dbbd928c": 9371, "15___CATEGORICAL___nom_9___6dbc16b39": 9372, "15___CATEGORICAL___nom_9___6dc45ea62": 9373, "15___CATEGORICAL___nom_9___6dc6296b5": 9374, "15___CATEGORICAL___nom_9___6dcd7e557": 9375, "15___CATEGORICAL___nom_9___6dda33574": 9376, "15___CATEGORICAL___nom_9___6dde6d687": 9377, "15___CATEGORICAL___nom_9___6de7ae85f": 9378, "15___CATEGORICAL___nom_9___6dfac0823": 9379, "15___CATEGORICAL___nom_9___6dfd57187": 9380, "15___CATEGORICAL___nom_9___6dffef3ae": 9381, "15___CATEGORICAL___nom_9___6e0ae5478": 9382, "15___CATEGORICAL___nom_9___6e0b81afd": 9383, "15___CATEGORICAL___nom_9___6e0efc8ae": 9384, "15___CATEGORICAL___nom_9___6e12254cb": 9385, "15___CATEGORICAL___nom_9___6e1abd31a": 9386, "15___CATEGORICAL___nom_9___6e1b61679": 9387, "15___CATEGORICAL___nom_9___6e1e262b5": 9388, "15___CATEGORICAL___nom_9___6e323403e": 9389, "15___CATEGORICAL___nom_9___6e3747aa5": 9390, "15___CATEGORICAL___nom_9___6e41413b7": 9391, "15___CATEGORICAL___nom_9___6e4441098": 9392, "15___CATEGORICAL___nom_9___6e49dc7cf": 9393, "15___CATEGORICAL___nom_9___6e5860c0c": 9394, "15___CATEGORICAL___nom_9___6e591f32a": 9395, "15___CATEGORICAL___nom_9___6e68a02c8": 9396, "15___CATEGORICAL___nom_9___6e6e8f8b8": 9397, "15___CATEGORICAL___nom_9___6e6f113f8": 9398, "15___CATEGORICAL___nom_9___6e6fec343": 9399, "15___CATEGORICAL___nom_9___6e7bb79f3": 9400, "15___CATEGORICAL___nom_9___6e8428530": 9401, "15___CATEGORICAL___nom_9___6e852c18f": 9402, "15___CATEGORICAL___nom_9___6e8ae00d1": 9403, "15___CATEGORICAL___nom_9___6e8f728c4": 9404, "15___CATEGORICAL___nom_9___6e9346b0e": 9405, "15___CATEGORICAL___nom_9___6e9491509": 9406, "15___CATEGORICAL___nom_9___6eab7b06f": 9407, "15___CATEGORICAL___nom_9___6eaead87a": 9408, "15___CATEGORICAL___nom_9___6eb1ba1c4": 9409, "15___CATEGORICAL___nom_9___6ec38266d": 9410, "15___CATEGORICAL___nom_9___6ec4932ec": 9411, "15___CATEGORICAL___nom_9___6ec4e7ceb": 9412, "15___CATEGORICAL___nom_9___6ec7f8dce": 9413, "15___CATEGORICAL___nom_9___6ecaaddfb": 9414, "15___CATEGORICAL___nom_9___6ed4e0308": 9415, "15___CATEGORICAL___nom_9___6edafd465": 9416, "15___CATEGORICAL___nom_9___6edce9fe4": 9417, "15___CATEGORICAL___nom_9___6edceffe8": 9418, "15___CATEGORICAL___nom_9___6eef10df0": 9419, "15___CATEGORICAL___nom_9___6ef7989ff": 9420, "15___CATEGORICAL___nom_9___6f0151545": 9421, "15___CATEGORICAL___nom_9___6f05462d8": 9422, "15___CATEGORICAL___nom_9___6f061f2e5": 9423, "15___CATEGORICAL___nom_9___6f0e7e665": 9424, "15___CATEGORICAL___nom_9___6f0ea123e": 9425, "15___CATEGORICAL___nom_9___6f0f6296b": 9426, "15___CATEGORICAL___nom_9___6f16df982": 9427, "15___CATEGORICAL___nom_9___6f2181b2b": 9428, "15___CATEGORICAL___nom_9___6f29bc469": 9429, "15___CATEGORICAL___nom_9___6f2f1d970": 9430, "15___CATEGORICAL___nom_9___6f323c53f": 9431, "15___CATEGORICAL___nom_9___6f3debb02": 9432, "15___CATEGORICAL___nom_9___6f46d2f36": 9433, "15___CATEGORICAL___nom_9___6f4adcca6": 9434, "15___CATEGORICAL___nom_9___6f5c532ba": 9435, "15___CATEGORICAL___nom_9___6f6190a7a": 9436, "15___CATEGORICAL___nom_9___6f671233b": 9437, "15___CATEGORICAL___nom_9___6f682e9c7": 9438, "15___CATEGORICAL___nom_9___6f72d2ca9": 9439, "15___CATEGORICAL___nom_9___6f73cec6c": 9440, "15___CATEGORICAL___nom_9___6f73d5a24": 9441, "15___CATEGORICAL___nom_9___6f77b7e40": 9442, "15___CATEGORICAL___nom_9___6f814add0": 9443, "15___CATEGORICAL___nom_9___6f8342200": 9444, "15___CATEGORICAL___nom_9___6f9a36bf5": 9445, "15___CATEGORICAL___nom_9___6f9d29566": 9446, "15___CATEGORICAL___nom_9___6fa03b445": 9447, "15___CATEGORICAL___nom_9___6fa469bfb": 9448, "15___CATEGORICAL___nom_9___6fa4e2756": 9449, "15___CATEGORICAL___nom_9___6faa3d164": 9450, "15___CATEGORICAL___nom_9___6fb42d8ee": 9451, "15___CATEGORICAL___nom_9___6fb639b61": 9452, "15___CATEGORICAL___nom_9___6fb92f854": 9453, "15___CATEGORICAL___nom_9___6fc110833": 9454, "15___CATEGORICAL___nom_9___6fc6201f2": 9455, "15___CATEGORICAL___nom_9___6fcda5f19": 9456, "15___CATEGORICAL___nom_9___6fcede2da": 9457, "15___CATEGORICAL___nom_9___6fd0d4653": 9458, "15___CATEGORICAL___nom_9___6fd23823b": 9459, "15___CATEGORICAL___nom_9___6fd549d27": 9460, "15___CATEGORICAL___nom_9___6fd89a77c": 9461, "15___CATEGORICAL___nom_9___6fda251fa": 9462, "15___CATEGORICAL___nom_9___6fe2fd209": 9463, "15___CATEGORICAL___nom_9___6fe53c528": 9464, "15___CATEGORICAL___nom_9___6fe953929": 9465, "15___CATEGORICAL___nom_9___6fe9e122e": 9466, "15___CATEGORICAL___nom_9___6febec320": 9467, "15___CATEGORICAL___nom_9___6febfb52d": 9468, "15___CATEGORICAL___nom_9___6fec807d3": 9469, "15___CATEGORICAL___nom_9___6fed08347": 9470, "15___CATEGORICAL___nom_9___6feed0b21": 9471, "15___CATEGORICAL___nom_9___6ffc05735": 9472, "15___CATEGORICAL___nom_9___6ffd1a9f2": 9473, "15___CATEGORICAL___nom_9___70062aa6b": 9474, "15___CATEGORICAL___nom_9___7011e1008": 9475, "15___CATEGORICAL___nom_9___70158854a": 9476, "15___CATEGORICAL___nom_9___701626b1b": 9477, "15___CATEGORICAL___nom_9___701a78b0d": 9478, "15___CATEGORICAL___nom_9___701b7d7fd": 9479, "15___CATEGORICAL___nom_9___70251641f": 9480, "15___CATEGORICAL___nom_9___7026a18ea": 9481, "15___CATEGORICAL___nom_9___7027bace6": 9482, "15___CATEGORICAL___nom_9___703967a3b": 9483, "15___CATEGORICAL___nom_9___704332cf6": 9484, "15___CATEGORICAL___nom_9___7045356bc": 9485, "15___CATEGORICAL___nom_9___70559a277": 9486, "15___CATEGORICAL___nom_9___705ad0b1c": 9487, "15___CATEGORICAL___nom_9___705fffb99": 9488, "15___CATEGORICAL___nom_9___706841aba": 9489, "15___CATEGORICAL___nom_9___706d731d0": 9490, "15___CATEGORICAL___nom_9___706faa133": 9491, "15___CATEGORICAL___nom_9___707f3d7b7": 9492, "15___CATEGORICAL___nom_9___707f98215": 9493, "15___CATEGORICAL___nom_9___708533cfc": 9494, "15___CATEGORICAL___nom_9___7091158c4": 9495, "15___CATEGORICAL___nom_9___70977b5a4": 9496, "15___CATEGORICAL___nom_9___7099dfe59": 9497, "15___CATEGORICAL___nom_9___70a28ba4d": 9498, "15___CATEGORICAL___nom_9___70a2c64c4": 9499, "15___CATEGORICAL___nom_9___70a970428": 9500, "15___CATEGORICAL___nom_9___70ac99c31": 9501, "15___CATEGORICAL___nom_9___70b28bfb2": 9502, "15___CATEGORICAL___nom_9___70b69328e": 9503, "15___CATEGORICAL___nom_9___70be060a0": 9504, "15___CATEGORICAL___nom_9___70c0bfb28": 9505, "15___CATEGORICAL___nom_9___70c6598cb": 9506, "15___CATEGORICAL___nom_9___70c84a61a": 9507, "15___CATEGORICAL___nom_9___70c857a60": 9508, "15___CATEGORICAL___nom_9___70d5396ce": 9509, "15___CATEGORICAL___nom_9___70d6ccdd8": 9510, "15___CATEGORICAL___nom_9___70d9df987": 9511, "15___CATEGORICAL___nom_9___70daf5c61": 9512, "15___CATEGORICAL___nom_9___70e15098f": 9513, "15___CATEGORICAL___nom_9___70e7570b6": 9514, "15___CATEGORICAL___nom_9___70e958c23": 9515, "15___CATEGORICAL___nom_9___70ef9e3d9": 9516, "15___CATEGORICAL___nom_9___70f4775a9": 9517, "15___CATEGORICAL___nom_9___70fa14da8": 9518, "15___CATEGORICAL___nom_9___71032056b": 9519, "15___CATEGORICAL___nom_9___710981905": 9520, "15___CATEGORICAL___nom_9___7112503f3": 9521, "15___CATEGORICAL___nom_9___7120c6b03": 9522, "15___CATEGORICAL___nom_9___71215ed9a": 9523, "15___CATEGORICAL___nom_9___71298ae90": 9524, "15___CATEGORICAL___nom_9___712ccfc7b": 9525, "15___CATEGORICAL___nom_9___7130c09a6": 9526, "15___CATEGORICAL___nom_9___713447af2": 9527, "15___CATEGORICAL___nom_9___713b3162e": 9528, "15___CATEGORICAL___nom_9___71544a458": 9529, "15___CATEGORICAL___nom_9___7155019df": 9530, "15___CATEGORICAL___nom_9___7157a1120": 9531, "15___CATEGORICAL___nom_9___7158ab0f7": 9532, "15___CATEGORICAL___nom_9___715aece12": 9533, "15___CATEGORICAL___nom_9___715d06fd2": 9534, "15___CATEGORICAL___nom_9___7160bdaf3": 9535, "15___CATEGORICAL___nom_9___71611627e": 9536, "15___CATEGORICAL___nom_9___716408e81": 9537, "15___CATEGORICAL___nom_9___7171349c0": 9538, "15___CATEGORICAL___nom_9___7178a5cba": 9539, "15___CATEGORICAL___nom_9___7188e7e3e": 9540, "15___CATEGORICAL___nom_9___718d2045d": 9541, "15___CATEGORICAL___nom_9___718e32ffd": 9542, "15___CATEGORICAL___nom_9___7192a1219": 9543, "15___CATEGORICAL___nom_9___7192e46fe": 9544, "15___CATEGORICAL___nom_9___7199a1f63": 9545, "15___CATEGORICAL___nom_9___71ade5b84": 9546, "15___CATEGORICAL___nom_9___71b70c36e": 9547, "15___CATEGORICAL___nom_9___71b8004c5": 9548, "15___CATEGORICAL___nom_9___71b95058b": 9549, "15___CATEGORICAL___nom_9___71bda5e88": 9550, "15___CATEGORICAL___nom_9___71cf85bda": 9551, "15___CATEGORICAL___nom_9___71d1c406a": 9552, "15___CATEGORICAL___nom_9___71e534704": 9553, "15___CATEGORICAL___nom_9___71e5b2166": 9554, "15___CATEGORICAL___nom_9___71eaa0be3": 9555, "15___CATEGORICAL___nom_9___71eb526a0": 9556, "15___CATEGORICAL___nom_9___71ec8c39d": 9557, "15___CATEGORICAL___nom_9___71f930abe": 9558, "15___CATEGORICAL___nom_9___71fdd8e9c": 9559, "15___CATEGORICAL___nom_9___71fe58126": 9560, "15___CATEGORICAL___nom_9___7208160cf": 9561, "15___CATEGORICAL___nom_9___7212182bb": 9562, "15___CATEGORICAL___nom_9___7218985b5": 9563, "15___CATEGORICAL___nom_9___721c745ac": 9564, "15___CATEGORICAL___nom_9___72204b300": 9565, "15___CATEGORICAL___nom_9___722903e12": 9566, "15___CATEGORICAL___nom_9___72314357b": 9567, "15___CATEGORICAL___nom_9___72337c3a7": 9568, "15___CATEGORICAL___nom_9___72406443f": 9569, "15___CATEGORICAL___nom_9___7240e3c71": 9570, "15___CATEGORICAL___nom_9___724214461": 9571, "15___CATEGORICAL___nom_9___72428dd72": 9572, "15___CATEGORICAL___nom_9___72490099e": 9573, "15___CATEGORICAL___nom_9___72556e71b": 9574, "15___CATEGORICAL___nom_9___7268ec9cf": 9575, "15___CATEGORICAL___nom_9___72696ddfa": 9576, "15___CATEGORICAL___nom_9___726e81b0f": 9577, "15___CATEGORICAL___nom_9___726f70e71": 9578, "15___CATEGORICAL___nom_9___72769ecb5": 9579, "15___CATEGORICAL___nom_9___727b41107": 9580, "15___CATEGORICAL___nom_9___727c9eb48": 9581, "15___CATEGORICAL___nom_9___727f03ac3": 9582, "15___CATEGORICAL___nom_9___72817ba3d": 9583, "15___CATEGORICAL___nom_9___7285420d7": 9584, "15___CATEGORICAL___nom_9___728df26bd": 9585, "15___CATEGORICAL___nom_9___72980609c": 9586, "15___CATEGORICAL___nom_9___729a1402f": 9587, "15___CATEGORICAL___nom_9___72a1c1355": 9588, "15___CATEGORICAL___nom_9___72aaab505": 9589, "15___CATEGORICAL___nom_9___72af29ff2": 9590, "15___CATEGORICAL___nom_9___72b82a608": 9591, "15___CATEGORICAL___nom_9___72b8c6255": 9592, "15___CATEGORICAL___nom_9___72b9b8077": 9593, "15___CATEGORICAL___nom_9___72ba37ca9": 9594, "15___CATEGORICAL___nom_9___72c2965ea": 9595, "15___CATEGORICAL___nom_9___72c36ae7b": 9596, "15___CATEGORICAL___nom_9___72c4b707d": 9597, "15___CATEGORICAL___nom_9___72d033676": 9598, "15___CATEGORICAL___nom_9___72d8a0d3b": 9599, "15___CATEGORICAL___nom_9___72dcf4424": 9600, "15___CATEGORICAL___nom_9___72e504539": 9601, "15___CATEGORICAL___nom_9___72e513887": 9602, "15___CATEGORICAL___nom_9___72eb209fd": 9603, "15___CATEGORICAL___nom_9___72ed9da8c": 9604, "15___CATEGORICAL___nom_9___72f62be8f": 9605, "15___CATEGORICAL___nom_9___72f74e251": 9606, "15___CATEGORICAL___nom_9___72f78da5e": 9607, "15___CATEGORICAL___nom_9___72f7acdfc": 9608, "15___CATEGORICAL___nom_9___72f95dfd7": 9609, "15___CATEGORICAL___nom_9___72fd9e578": 9610, "15___CATEGORICAL___nom_9___7300e98c5": 9611, "15___CATEGORICAL___nom_9___730495c07": 9612, "15___CATEGORICAL___nom_9___730594d7c": 9613, "15___CATEGORICAL___nom_9___73066aa24": 9614, "15___CATEGORICAL___nom_9___73101453b": 9615, "15___CATEGORICAL___nom_9___731441aab": 9616, "15___CATEGORICAL___nom_9___731596bba": 9617, "15___CATEGORICAL___nom_9___73193fb01": 9618, "15___CATEGORICAL___nom_9___731eb0adf": 9619, "15___CATEGORICAL___nom_9___732da86d4": 9620, "15___CATEGORICAL___nom_9___732ef6871": 9621, "15___CATEGORICAL___nom_9___732f35e00": 9622, "15___CATEGORICAL___nom_9___7334cd26f": 9623, "15___CATEGORICAL___nom_9___733b12b62": 9624, "15___CATEGORICAL___nom_9___733c66b96": 9625, "15___CATEGORICAL___nom_9___733f279d2": 9626, "15___CATEGORICAL___nom_9___7340aaa02": 9627, "15___CATEGORICAL___nom_9___734d11e72": 9628, "15___CATEGORICAL___nom_9___735a79542": 9629, "15___CATEGORICAL___nom_9___735d929d8": 9630, "15___CATEGORICAL___nom_9___735eb53c3": 9631, "15___CATEGORICAL___nom_9___7360f9ec1": 9632, "15___CATEGORICAL___nom_9___7361fcc2b": 9633, "15___CATEGORICAL___nom_9___736e736cd": 9634, "15___CATEGORICAL___nom_9___73729936a": 9635, "15___CATEGORICAL___nom_9___7374644f1": 9636, "15___CATEGORICAL___nom_9___737e4988b": 9637, "15___CATEGORICAL___nom_9___738c57c3b": 9638, "15___CATEGORICAL___nom_9___739117304": 9639, "15___CATEGORICAL___nom_9___7394fd4cd": 9640, "15___CATEGORICAL___nom_9___739d0303d": 9641, "15___CATEGORICAL___nom_9___739f25742": 9642, "15___CATEGORICAL___nom_9___73a113feb": 9643, "15___CATEGORICAL___nom_9___73a32480a": 9644, "15___CATEGORICAL___nom_9___73a88aa06": 9645, "15___CATEGORICAL___nom_9___73b11a5f9": 9646, "15___CATEGORICAL___nom_9___73bbc4dd6": 9647, "15___CATEGORICAL___nom_9___73bbe3398": 9648, "15___CATEGORICAL___nom_9___73c19a2c0": 9649, "15___CATEGORICAL___nom_9___73d2cd599": 9650, "15___CATEGORICAL___nom_9___73d94e737": 9651, "15___CATEGORICAL___nom_9___73e8ef557": 9652, "15___CATEGORICAL___nom_9___73ece7b0e": 9653, "15___CATEGORICAL___nom_9___73f000ff3": 9654, "15___CATEGORICAL___nom_9___74000bee2": 9655, "15___CATEGORICAL___nom_9___7404124f7": 9656, "15___CATEGORICAL___nom_9___7406fda3a": 9657, "15___CATEGORICAL___nom_9___740892719": 9658, "15___CATEGORICAL___nom_9___740c4524e": 9659, "15___CATEGORICAL___nom_9___740f81755": 9660, "15___CATEGORICAL___nom_9___740fab3ce": 9661, "15___CATEGORICAL___nom_9___7411d34dc": 9662, "15___CATEGORICAL___nom_9___741e9903d": 9663, "15___CATEGORICAL___nom_9___741ed64cf": 9664, "15___CATEGORICAL___nom_9___7421873cd": 9665, "15___CATEGORICAL___nom_9___7428bfbc3": 9666, "15___CATEGORICAL___nom_9___742bb37d8": 9667, "15___CATEGORICAL___nom_9___742de40d9": 9668, "15___CATEGORICAL___nom_9___743229f32": 9669, "15___CATEGORICAL___nom_9___74360ff12": 9670, "15___CATEGORICAL___nom_9___74389144a": 9671, "15___CATEGORICAL___nom_9___743d8df9a": 9672, "15___CATEGORICAL___nom_9___744a31ac5": 9673, "15___CATEGORICAL___nom_9___744d8add7": 9674, "15___CATEGORICAL___nom_9___745cb35a7": 9675, "15___CATEGORICAL___nom_9___746029b4d": 9676, "15___CATEGORICAL___nom_9___7469bfa5a": 9677, "15___CATEGORICAL___nom_9___746d1e60e": 9678, "15___CATEGORICAL___nom_9___748064460": 9679, "15___CATEGORICAL___nom_9___74829315d": 9680, "15___CATEGORICAL___nom_9___74843bae5": 9681, "15___CATEGORICAL___nom_9___748a83281": 9682, "15___CATEGORICAL___nom_9___7494e3607": 9683, "15___CATEGORICAL___nom_9___7496abd37": 9684, "15___CATEGORICAL___nom_9___74a17cd4f": 9685, "15___CATEGORICAL___nom_9___74a53ee8b": 9686, "15___CATEGORICAL___nom_9___74a91555f": 9687, "15___CATEGORICAL___nom_9___74ae2e617": 9688, "15___CATEGORICAL___nom_9___74aff2dde": 9689, "15___CATEGORICAL___nom_9___74b0da9a2": 9690, "15___CATEGORICAL___nom_9___74bac1848": 9691, "15___CATEGORICAL___nom_9___74bc22d8b": 9692, "15___CATEGORICAL___nom_9___74c8af153": 9693, "15___CATEGORICAL___nom_9___74d03e6c6": 9694, "15___CATEGORICAL___nom_9___74d13fa93": 9695, "15___CATEGORICAL___nom_9___74d2b50b6": 9696, "15___CATEGORICAL___nom_9___74da146b4": 9697, "15___CATEGORICAL___nom_9___74e0c93d1": 9698, "15___CATEGORICAL___nom_9___74e241e50": 9699, "15___CATEGORICAL___nom_9___74e5a3d3f": 9700, "15___CATEGORICAL___nom_9___74e60599e": 9701, "15___CATEGORICAL___nom_9___74e6880b7": 9702, "15___CATEGORICAL___nom_9___74e9eb0a0": 9703, "15___CATEGORICAL___nom_9___74ec27c4e": 9704, "15___CATEGORICAL___nom_9___74f2174a3": 9705, "15___CATEGORICAL___nom_9___74f2cb626": 9706, "15___CATEGORICAL___nom_9___74f4e8de2": 9707, "15___CATEGORICAL___nom_9___74f691b20": 9708, "15___CATEGORICAL___nom_9___74fc0f8b9": 9709, "15___CATEGORICAL___nom_9___74ffbe31a": 9710, "15___CATEGORICAL___nom_9___75085af0b": 9711, "15___CATEGORICAL___nom_9___750935104": 9712, "15___CATEGORICAL___nom_9___7517edbad": 9713, "15___CATEGORICAL___nom_9___75193d88a": 9714, "15___CATEGORICAL___nom_9___751a88f89": 9715, "15___CATEGORICAL___nom_9___75211ce0b": 9716, "15___CATEGORICAL___nom_9___7523243e8": 9717, "15___CATEGORICAL___nom_9___753a9dda6": 9718, "15___CATEGORICAL___nom_9___7540c23c3": 9719, "15___CATEGORICAL___nom_9___75417fb14": 9720, "15___CATEGORICAL___nom_9___7551a52c4": 9721, "15___CATEGORICAL___nom_9___75554aea1": 9722, "15___CATEGORICAL___nom_9___75629b1bc": 9723, "15___CATEGORICAL___nom_9___75719a56a": 9724, "15___CATEGORICAL___nom_9___75790c065": 9725, "15___CATEGORICAL___nom_9___757e86f03": 9726, "15___CATEGORICAL___nom_9___757fbd50e": 9727, "15___CATEGORICAL___nom_9___758285902": 9728, "15___CATEGORICAL___nom_9___7582c157b": 9729, "15___CATEGORICAL___nom_9___7584e6e2b": 9730, "15___CATEGORICAL___nom_9___7588a06b1": 9731, "15___CATEGORICAL___nom_9___7590069bf": 9732, "15___CATEGORICAL___nom_9___75919939c": 9733, "15___CATEGORICAL___nom_9___75931e1ae": 9734, "15___CATEGORICAL___nom_9___759495521": 9735, "15___CATEGORICAL___nom_9___75a1767d9": 9736, "15___CATEGORICAL___nom_9___75a1e1061": 9737, "15___CATEGORICAL___nom_9___75a22b1fa": 9738, "15___CATEGORICAL___nom_9___75a8cfa03": 9739, "15___CATEGORICAL___nom_9___75bb335d2": 9740, "15___CATEGORICAL___nom_9___75bb47ed3": 9741, "15___CATEGORICAL___nom_9___75bd7aa3a": 9742, "15___CATEGORICAL___nom_9___75c30adc6": 9743, "15___CATEGORICAL___nom_9___75c936035": 9744, "15___CATEGORICAL___nom_9___75c9ccaa3": 9745, "15___CATEGORICAL___nom_9___75cb53a13": 9746, "15___CATEGORICAL___nom_9___75cddcde6": 9747, "15___CATEGORICAL___nom_9___75d2de5c4": 9748, "15___CATEGORICAL___nom_9___75d33e7ae": 9749, "15___CATEGORICAL___nom_9___75e1a6cc6": 9750, "15___CATEGORICAL___nom_9___75e1bb13c": 9751, "15___CATEGORICAL___nom_9___75e233410": 9752, "15___CATEGORICAL___nom_9___75e760bfc": 9753, "15___CATEGORICAL___nom_9___75edea7c7": 9754, "15___CATEGORICAL___nom_9___75eff217a": 9755, "15___CATEGORICAL___nom_9___75f661f36": 9756, "15___CATEGORICAL___nom_9___76034aca5": 9757, "15___CATEGORICAL___nom_9___760b14156": 9758, "15___CATEGORICAL___nom_9___760f0e17f": 9759, "15___CATEGORICAL___nom_9___7614263b6": 9760, "15___CATEGORICAL___nom_9___7624c2523": 9761, "15___CATEGORICAL___nom_9___762bc77c5": 9762, "15___CATEGORICAL___nom_9___7632a6422": 9763, "15___CATEGORICAL___nom_9___76355c73b": 9764, "15___CATEGORICAL___nom_9___7637d82c0": 9765, "15___CATEGORICAL___nom_9___7638c9d27": 9766, "15___CATEGORICAL___nom_9___7639dad0d": 9767, "15___CATEGORICAL___nom_9___763d29df9": 9768, "15___CATEGORICAL___nom_9___764022cce": 9769, "15___CATEGORICAL___nom_9___7641429c1": 9770, "15___CATEGORICAL___nom_9___7650da40c": 9771, "15___CATEGORICAL___nom_9___76549a8f1": 9772, "15___CATEGORICAL___nom_9___765e5b19e": 9773, "15___CATEGORICAL___nom_9___766076c8f": 9774, "15___CATEGORICAL___nom_9___76674a450": 9775, "15___CATEGORICAL___nom_9___766bc2384": 9776, "15___CATEGORICAL___nom_9___767076a90": 9777, "15___CATEGORICAL___nom_9___7671a0571": 9778, "15___CATEGORICAL___nom_9___7675d3671": 9779, "15___CATEGORICAL___nom_9___767d40367": 9780, "15___CATEGORICAL___nom_9___769203198": 9781, "15___CATEGORICAL___nom_9___76964f5c4": 9782, "15___CATEGORICAL___nom_9___76a430956": 9783, "15___CATEGORICAL___nom_9___76aa40cf9": 9784, "15___CATEGORICAL___nom_9___76aef0b06": 9785, "15___CATEGORICAL___nom_9___76af63c0e": 9786, "15___CATEGORICAL___nom_9___76b40d84e": 9787, "15___CATEGORICAL___nom_9___76c06109a": 9788, "15___CATEGORICAL___nom_9___76c326112": 9789, "15___CATEGORICAL___nom_9___76c405d4f": 9790, "15___CATEGORICAL___nom_9___76ca40f7f": 9791, "15___CATEGORICAL___nom_9___76ca7c72b": 9792, "15___CATEGORICAL___nom_9___76cfae0c6": 9793, "15___CATEGORICAL___nom_9___76d77818f": 9794, "15___CATEGORICAL___nom_9___76daad1ce": 9795, "15___CATEGORICAL___nom_9___76e6f94d2": 9796, "15___CATEGORICAL___nom_9___76ef36a83": 9797, "15___CATEGORICAL___nom_9___76f20d438": 9798, "15___CATEGORICAL___nom_9___770664efa": 9799, "15___CATEGORICAL___nom_9___7707b535a": 9800, "15___CATEGORICAL___nom_9___770c99636": 9801, "15___CATEGORICAL___nom_9___7711f53a2": 9802, "15___CATEGORICAL___nom_9___771ee5c6e": 9803, "15___CATEGORICAL___nom_9___771f337bc": 9804, "15___CATEGORICAL___nom_9___7726e88aa": 9805, "15___CATEGORICAL___nom_9___773cc7adc": 9806, "15___CATEGORICAL___nom_9___7747eac5f": 9807, "15___CATEGORICAL___nom_9___7749a52a5": 9808, "15___CATEGORICAL___nom_9___7753db6d2": 9809, "15___CATEGORICAL___nom_9___7759db288": 9810, "15___CATEGORICAL___nom_9___775f1184b": 9811, "15___CATEGORICAL___nom_9___776040c9a": 9812, "15___CATEGORICAL___nom_9___77691f45c": 9813, "15___CATEGORICAL___nom_9___77695cc31": 9814, "15___CATEGORICAL___nom_9___776aadae4": 9815, "15___CATEGORICAL___nom_9___7772937be": 9816, "15___CATEGORICAL___nom_9___77773a70f": 9817, "15___CATEGORICAL___nom_9___777f26883": 9818, "15___CATEGORICAL___nom_9___7787e143e": 9819, "15___CATEGORICAL___nom_9___778a34edf": 9820, "15___CATEGORICAL___nom_9___77906e562": 9821, "15___CATEGORICAL___nom_9___779e43415": 9822, "15___CATEGORICAL___nom_9___77bd4118a": 9823, "15___CATEGORICAL___nom_9___77c10ec02": 9824, "15___CATEGORICAL___nom_9___77c62fc3c": 9825, "15___CATEGORICAL___nom_9___77c6ceea5": 9826, "15___CATEGORICAL___nom_9___77cdfb2cb": 9827, "15___CATEGORICAL___nom_9___77d12c273": 9828, "15___CATEGORICAL___nom_9___77d1a3bd1": 9829, "15___CATEGORICAL___nom_9___77d540779": 9830, "15___CATEGORICAL___nom_9___77de9a7d1": 9831, "15___CATEGORICAL___nom_9___77e1e55a8": 9832, "15___CATEGORICAL___nom_9___77ebcb89e": 9833, "15___CATEGORICAL___nom_9___77ef5c7e2": 9834, "15___CATEGORICAL___nom_9___7800005e9": 9835, "15___CATEGORICAL___nom_9___7806c72c7": 9836, "15___CATEGORICAL___nom_9___781164869": 9837, "15___CATEGORICAL___nom_9___78148bf97": 9838, "15___CATEGORICAL___nom_9___78196975e": 9839, "15___CATEGORICAL___nom_9___781c432c1": 9840, "15___CATEGORICAL___nom_9___781d9978d": 9841, "15___CATEGORICAL___nom_9___782017d6a": 9842, "15___CATEGORICAL___nom_9___782d94619": 9843, "15___CATEGORICAL___nom_9___782e0d27d": 9844, "15___CATEGORICAL___nom_9___7837530c5": 9845, "15___CATEGORICAL___nom_9___783d7bec3": 9846, "15___CATEGORICAL___nom_9___7840594c4": 9847, "15___CATEGORICAL___nom_9___7842f5a96": 9848, "15___CATEGORICAL___nom_9___7857fe60c": 9849, "15___CATEGORICAL___nom_9___785c04d6a": 9850, "15___CATEGORICAL___nom_9___785efd431": 9851, "15___CATEGORICAL___nom_9___7862f74a9": 9852, "15___CATEGORICAL___nom_9___787aa8407": 9853, "15___CATEGORICAL___nom_9___787b1daed": 9854, "15___CATEGORICAL___nom_9___7881cd22c": 9855, "15___CATEGORICAL___nom_9___78906f80a": 9856, "15___CATEGORICAL___nom_9___789519f68": 9857, "15___CATEGORICAL___nom_9___7896324ce": 9858, "15___CATEGORICAL___nom_9___7896f0899": 9859, "15___CATEGORICAL___nom_9___789d62da6": 9860, "15___CATEGORICAL___nom_9___78a859414": 9861, "15___CATEGORICAL___nom_9___78a8e2262": 9862, "15___CATEGORICAL___nom_9___78abe4d68": 9863, "15___CATEGORICAL___nom_9___78b280802": 9864, "15___CATEGORICAL___nom_9___78b39e77a": 9865, "15___CATEGORICAL___nom_9___78b611aa0": 9866, "15___CATEGORICAL___nom_9___78bcf1ae0": 9867, "15___CATEGORICAL___nom_9___78be58abb": 9868, "15___CATEGORICAL___nom_9___78c165857": 9869, "15___CATEGORICAL___nom_9___78c8a28a1": 9870, "15___CATEGORICAL___nom_9___78d98f25c": 9871, "15___CATEGORICAL___nom_9___78daef08e": 9872, "15___CATEGORICAL___nom_9___78dc73205": 9873, "15___CATEGORICAL___nom_9___78e07a8b3": 9874, "15___CATEGORICAL___nom_9___78e19ada0": 9875, "15___CATEGORICAL___nom_9___78e69a68c": 9876, "15___CATEGORICAL___nom_9___78e70bcbb": 9877, "15___CATEGORICAL___nom_9___78e7a24e8": 9878, "15___CATEGORICAL___nom_9___78e8b828b": 9879, "15___CATEGORICAL___nom_9___78eb7a754": 9880, "15___CATEGORICAL___nom_9___78efe0e02": 9881, "15___CATEGORICAL___nom_9___78ff410ad": 9882, "15___CATEGORICAL___nom_9___79026b66a": 9883, "15___CATEGORICAL___nom_9___7902e2739": 9884, "15___CATEGORICAL___nom_9___790aa0e4c": 9885, "15___CATEGORICAL___nom_9___79197fbd9": 9886, "15___CATEGORICAL___nom_9___791abd3ab": 9887, "15___CATEGORICAL___nom_9___791abd98e": 9888, "15___CATEGORICAL___nom_9___792015936": 9889, "15___CATEGORICAL___nom_9___79226e99f": 9890, "15___CATEGORICAL___nom_9___79295c820": 9891, "15___CATEGORICAL___nom_9___7935130d9": 9892, "15___CATEGORICAL___nom_9___794209708": 9893, "15___CATEGORICAL___nom_9___79439e292": 9894, "15___CATEGORICAL___nom_9___794580f94": 9895, "15___CATEGORICAL___nom_9___794677f3d": 9896, "15___CATEGORICAL___nom_9___794a2c5e9": 9897, "15___CATEGORICAL___nom_9___794bd4086": 9898, "15___CATEGORICAL___nom_9___794c1b947": 9899, "15___CATEGORICAL___nom_9___794d59da4": 9900, "15___CATEGORICAL___nom_9___79510aadc": 9901, "15___CATEGORICAL___nom_9___7953ca3d6": 9902, "15___CATEGORICAL___nom_9___795699058": 9903, "15___CATEGORICAL___nom_9___7957cb0e4": 9904, "15___CATEGORICAL___nom_9___795a68eb4": 9905, "15___CATEGORICAL___nom_9___795f40836": 9906, "15___CATEGORICAL___nom_9___79707a153": 9907, "15___CATEGORICAL___nom_9___7970a067e": 9908, "15___CATEGORICAL___nom_9___7976037e5": 9909, "15___CATEGORICAL___nom_9___79823f642": 9910, "15___CATEGORICAL___nom_9___7987034f7": 9911, "15___CATEGORICAL___nom_9___798ca594e": 9912, "15___CATEGORICAL___nom_9___79928ec2e": 9913, "15___CATEGORICAL___nom_9___79966aa96": 9914, "15___CATEGORICAL___nom_9___79a812390": 9915, "15___CATEGORICAL___nom_9___79ad328c8": 9916, "15___CATEGORICAL___nom_9___79ada15c2": 9917, "15___CATEGORICAL___nom_9___79b560493": 9918, "15___CATEGORICAL___nom_9___79cba2131": 9919, "15___CATEGORICAL___nom_9___79d21edb1": 9920, "15___CATEGORICAL___nom_9___79d829b83": 9921, "15___CATEGORICAL___nom_9___79db025b1": 9922, "15___CATEGORICAL___nom_9___79fe1c94c": 9923, "15___CATEGORICAL___nom_9___7a01d240e": 9924, "15___CATEGORICAL___nom_9___7a01ee510": 9925, "15___CATEGORICAL___nom_9___7a0c0d40f": 9926, "15___CATEGORICAL___nom_9___7a15dce91": 9927, "15___CATEGORICAL___nom_9___7a1ba261b": 9928, "15___CATEGORICAL___nom_9___7a1c979b2": 9929, "15___CATEGORICAL___nom_9___7a27d04d0": 9930, "15___CATEGORICAL___nom_9___7a2ce9a6a": 9931, "15___CATEGORICAL___nom_9___7a34b160a": 9932, "15___CATEGORICAL___nom_9___7a3530d7d": 9933, "15___CATEGORICAL___nom_9___7a36042ab": 9934, "15___CATEGORICAL___nom_9___7a45df221": 9935, "15___CATEGORICAL___nom_9___7a4905f85": 9936, "15___CATEGORICAL___nom_9___7a5658ba1": 9937, "15___CATEGORICAL___nom_9___7a57918a5": 9938, "15___CATEGORICAL___nom_9___7a5f14f3b": 9939, "15___CATEGORICAL___nom_9___7a6437957": 9940, "15___CATEGORICAL___nom_9___7a6674f00": 9941, "15___CATEGORICAL___nom_9___7a6993a2b": 9942, "15___CATEGORICAL___nom_9___7a7cbf071": 9943, "15___CATEGORICAL___nom_9___7a813c4b9": 9944, "15___CATEGORICAL___nom_9___7a8193ae1": 9945, "15___CATEGORICAL___nom_9___7a82ee853": 9946, "15___CATEGORICAL___nom_9___7a8459b81": 9947, "15___CATEGORICAL___nom_9___7a8adbea8": 9948, "15___CATEGORICAL___nom_9___7a90d1890": 9949, "15___CATEGORICAL___nom_9___7a92967b4": 9950, "15___CATEGORICAL___nom_9___7a9442914": 9951, "15___CATEGORICAL___nom_9___7a9ce4a04": 9952, "15___CATEGORICAL___nom_9___7aa6797b8": 9953, "15___CATEGORICAL___nom_9___7ab1f73ee": 9954, "15___CATEGORICAL___nom_9___7ab24fae6": 9955, "15___CATEGORICAL___nom_9___7ab3667ff": 9956, "15___CATEGORICAL___nom_9___7ab42a280": 9957, "15___CATEGORICAL___nom_9___7aba02778": 9958, "15___CATEGORICAL___nom_9___7abcb598b": 9959, "15___CATEGORICAL___nom_9___7abe00c10": 9960, "15___CATEGORICAL___nom_9___7ac3047e8": 9961, "15___CATEGORICAL___nom_9___7ac56cc25": 9962, "15___CATEGORICAL___nom_9___7aca7bc71": 9963, "15___CATEGORICAL___nom_9___7adff30d4": 9964, "15___CATEGORICAL___nom_9___7ae3ab5ad": 9965, "15___CATEGORICAL___nom_9___7ae8f061b": 9966, "15___CATEGORICAL___nom_9___7aea9e9d3": 9967, "15___CATEGORICAL___nom_9___7af128cff": 9968, "15___CATEGORICAL___nom_9___7af2c83dd": 9969, "15___CATEGORICAL___nom_9___7af631474": 9970, "15___CATEGORICAL___nom_9___7af8a1bab": 9971, "15___CATEGORICAL___nom_9___7af9d0ebc": 9972, "15___CATEGORICAL___nom_9___7afe5c5a0": 9973, "15___CATEGORICAL___nom_9___7b022e604": 9974, "15___CATEGORICAL___nom_9___7b0a9ecdc": 9975, "15___CATEGORICAL___nom_9___7b0d3d2f5": 9976, "15___CATEGORICAL___nom_9___7b1345b8e": 9977, "15___CATEGORICAL___nom_9___7b14a2b9d": 9978, "15___CATEGORICAL___nom_9___7b14fb73e": 9979, "15___CATEGORICAL___nom_9___7b16fbe9a": 9980, "15___CATEGORICAL___nom_9___7b1a3941d": 9981, "15___CATEGORICAL___nom_9___7b215b373": 9982, "15___CATEGORICAL___nom_9___7b2eb2d88": 9983, "15___CATEGORICAL___nom_9___7b33873f4": 9984, "15___CATEGORICAL___nom_9___7b3391ec1": 9985, "15___CATEGORICAL___nom_9___7b3989afc": 9986, "15___CATEGORICAL___nom_9___7b3a0105c": 9987, "15___CATEGORICAL___nom_9___7b3ec7349": 9988, "15___CATEGORICAL___nom_9___7b3ed243b": 9989, "15___CATEGORICAL___nom_9___7b4091217": 9990, "15___CATEGORICAL___nom_9___7b4ca1307": 9991, "15___CATEGORICAL___nom_9___7b4ffbf1f": 9992, "15___CATEGORICAL___nom_9___7b531e3c9": 9993, "15___CATEGORICAL___nom_9___7b5cdde69": 9994, "15___CATEGORICAL___nom_9___7b5e3cb04": 9995, "15___CATEGORICAL___nom_9___7b6d81d06": 9996, "15___CATEGORICAL___nom_9___7b6f4568b": 9997, "15___CATEGORICAL___nom_9___7b71918a6": 9998, "15___CATEGORICAL___nom_9___7b75a07de": 9999, "15___CATEGORICAL___nom_9___7b9175d8b": 10000, "15___CATEGORICAL___nom_9___7baca9297": 10001, "15___CATEGORICAL___nom_9___7baf03fde": 10002, "15___CATEGORICAL___nom_9___7bb5dd559": 10003, "15___CATEGORICAL___nom_9___7bb806aca": 10004, "15___CATEGORICAL___nom_9___7bbb2527f": 10005, "15___CATEGORICAL___nom_9___7bbdbf675": 10006, "15___CATEGORICAL___nom_9___7bbf813ef": 10007, "15___CATEGORICAL___nom_9___7bbfc0655": 10008, "15___CATEGORICAL___nom_9___7bc1248e6": 10009, "15___CATEGORICAL___nom_9___7bc1e3774": 10010, "15___CATEGORICAL___nom_9___7bc62e134": 10011, "15___CATEGORICAL___nom_9___7bc855ef3": 10012, "15___CATEGORICAL___nom_9___7bca15fcf": 10013, "15___CATEGORICAL___nom_9___7bcf44282": 10014, "15___CATEGORICAL___nom_9___7bd06ae2f": 10015, "15___CATEGORICAL___nom_9___7bd0f14ac": 10016, "15___CATEGORICAL___nom_9___7bd96cdba": 10017, "15___CATEGORICAL___nom_9___7bd9afb5e": 10018, "15___CATEGORICAL___nom_9___7be1b076d": 10019, "15___CATEGORICAL___nom_9___7be6f4206": 10020, "15___CATEGORICAL___nom_9___7be727c23": 10021, "15___CATEGORICAL___nom_9___7be800d91": 10022, "15___CATEGORICAL___nom_9___7beb9e33f": 10023, "15___CATEGORICAL___nom_9___7bf7adf8e": 10024, "15___CATEGORICAL___nom_9___7bf7e37d5": 10025, "15___CATEGORICAL___nom_9___7bfc9c79d": 10026, "15___CATEGORICAL___nom_9___7bff1cb40": 10027, "15___CATEGORICAL___nom_9___7c022a318": 10028, "15___CATEGORICAL___nom_9___7c08e04c7": 10029, "15___CATEGORICAL___nom_9___7c0de870d": 10030, "15___CATEGORICAL___nom_9___7c13a3ce8": 10031, "15___CATEGORICAL___nom_9___7c1bcf823": 10032, "15___CATEGORICAL___nom_9___7c21b39b8": 10033, "15___CATEGORICAL___nom_9___7c2b94bf9": 10034, "15___CATEGORICAL___nom_9___7c2f9c1e6": 10035, "15___CATEGORICAL___nom_9___7c3612adf": 10036, "15___CATEGORICAL___nom_9___7c39c7876": 10037, "15___CATEGORICAL___nom_9___7c440a7ea": 10038, "15___CATEGORICAL___nom_9___7c4d6f73d": 10039, "15___CATEGORICAL___nom_9___7c5ae6ba8": 10040, "15___CATEGORICAL___nom_9___7c5dd289a": 10041, "15___CATEGORICAL___nom_9___7c654936d": 10042, "15___CATEGORICAL___nom_9___7c66d8089": 10043, "15___CATEGORICAL___nom_9___7c6d0d652": 10044, "15___CATEGORICAL___nom_9___7c7cc2bd4": 10045, "15___CATEGORICAL___nom_9___7c883a96c": 10046, "15___CATEGORICAL___nom_9___7c8cf939d": 10047, "15___CATEGORICAL___nom_9___7c93bb327": 10048, "15___CATEGORICAL___nom_9___7c9cac70a": 10049, "15___CATEGORICAL___nom_9___7ca6e195e": 10050, "15___CATEGORICAL___nom_9___7caea8682": 10051, "15___CATEGORICAL___nom_9___7cc470b7c": 10052, "15___CATEGORICAL___nom_9___7cc700a30": 10053, "15___CATEGORICAL___nom_9___7ccb0a31a": 10054, "15___CATEGORICAL___nom_9___7cd4bc268": 10055, "15___CATEGORICAL___nom_9___7cdc1f3e3": 10056, "15___CATEGORICAL___nom_9___7ce4d22d0": 10057, "15___CATEGORICAL___nom_9___7ce6247e6": 10058, "15___CATEGORICAL___nom_9___7d05ddedf": 10059, "15___CATEGORICAL___nom_9___7d092027e": 10060, "15___CATEGORICAL___nom_9___7d2265932": 10061, "15___CATEGORICAL___nom_9___7d3236e30": 10062, "15___CATEGORICAL___nom_9___7d334c2f9": 10063, "15___CATEGORICAL___nom_9___7d33cce89": 10064, "15___CATEGORICAL___nom_9___7d43106ff": 10065, "15___CATEGORICAL___nom_9___7d435e4f6": 10066, "15___CATEGORICAL___nom_9___7d448d26e": 10067, "15___CATEGORICAL___nom_9___7d47a35c2": 10068, "15___CATEGORICAL___nom_9___7d495251c": 10069, "15___CATEGORICAL___nom_9___7d4f814a4": 10070, "15___CATEGORICAL___nom_9___7d5087c72": 10071, "15___CATEGORICAL___nom_9___7d5850a66": 10072, "15___CATEGORICAL___nom_9___7d58c89ca": 10073, "15___CATEGORICAL___nom_9___7d5a25bfc": 10074, "15___CATEGORICAL___nom_9___7d5a4a95f": 10075, "15___CATEGORICAL___nom_9___7d6793d3c": 10076, "15___CATEGORICAL___nom_9___7d68c3eba": 10077, "15___CATEGORICAL___nom_9___7d6ad1176": 10078, "15___CATEGORICAL___nom_9___7d70ffd93": 10079, "15___CATEGORICAL___nom_9___7d7942464": 10080, "15___CATEGORICAL___nom_9___7d797be3a": 10081, "15___CATEGORICAL___nom_9___7d7ca50e8": 10082, "15___CATEGORICAL___nom_9___7d9691062": 10083, "15___CATEGORICAL___nom_9___7d969ca75": 10084, "15___CATEGORICAL___nom_9___7d9835dab": 10085, "15___CATEGORICAL___nom_9___7d9d17630": 10086, "15___CATEGORICAL___nom_9___7db752507": 10087, "15___CATEGORICAL___nom_9___7dbbdf71c": 10088, "15___CATEGORICAL___nom_9___7dbdfa278": 10089, "15___CATEGORICAL___nom_9___7dbf62b0e": 10090, "15___CATEGORICAL___nom_9___7dc5955f5": 10091, "15___CATEGORICAL___nom_9___7dd7da878": 10092, "15___CATEGORICAL___nom_9___7dd9a3d07": 10093, "15___CATEGORICAL___nom_9___7dddecb14": 10094, "15___CATEGORICAL___nom_9___7dde4b1e6": 10095, "15___CATEGORICAL___nom_9___7de41b110": 10096, "15___CATEGORICAL___nom_9___7dedf7142": 10097, "15___CATEGORICAL___nom_9___7df320da4": 10098, "15___CATEGORICAL___nom_9___7e0262237": 10099, "15___CATEGORICAL___nom_9___7e0557b15": 10100, "15___CATEGORICAL___nom_9___7e084ec78": 10101, "15___CATEGORICAL___nom_9___7e1bbe511": 10102, "15___CATEGORICAL___nom_9___7e1bf58db": 10103, "15___CATEGORICAL___nom_9___7e2423ae5": 10104, "15___CATEGORICAL___nom_9___7e26c7952": 10105, "15___CATEGORICAL___nom_9___7e292c3d1": 10106, "15___CATEGORICAL___nom_9___7e3136a87": 10107, "15___CATEGORICAL___nom_9___7e3243a79": 10108, "15___CATEGORICAL___nom_9___7e33de7f5": 10109, "15___CATEGORICAL___nom_9___7e3d79a0d": 10110, "15___CATEGORICAL___nom_9___7e430957f": 10111, "15___CATEGORICAL___nom_9___7e47c459d": 10112, "15___CATEGORICAL___nom_9___7e4cfa140": 10113, "15___CATEGORICAL___nom_9___7e523f3fb": 10114, "15___CATEGORICAL___nom_9___7e55484e8": 10115, "15___CATEGORICAL___nom_9___7e5a41f0a": 10116, "15___CATEGORICAL___nom_9___7e6402f81": 10117, "15___CATEGORICAL___nom_9___7e67f2c32": 10118, "15___CATEGORICAL___nom_9___7e8965fb4": 10119, "15___CATEGORICAL___nom_9___7e8a1783b": 10120, "15___CATEGORICAL___nom_9___7e92ccb87": 10121, "15___CATEGORICAL___nom_9___7e987c76f": 10122, "15___CATEGORICAL___nom_9___7e9900759": 10123, "15___CATEGORICAL___nom_9___7e9e56ff5": 10124, "15___CATEGORICAL___nom_9___7ea5e0b11": 10125, "15___CATEGORICAL___nom_9___7eab725fe": 10126, "15___CATEGORICAL___nom_9___7eadffe5b": 10127, "15___CATEGORICAL___nom_9___7eae1b713": 10128, "15___CATEGORICAL___nom_9___7eaf16a23": 10129, "15___CATEGORICAL___nom_9___7eb39a088": 10130, "15___CATEGORICAL___nom_9___7eb710430": 10131, "15___CATEGORICAL___nom_9___7ecb2c2d2": 10132, "15___CATEGORICAL___nom_9___7ecc6f4a1": 10133, "15___CATEGORICAL___nom_9___7ed179f2a": 10134, "15___CATEGORICAL___nom_9___7ed19a968": 10135, "15___CATEGORICAL___nom_9___7ed3fe1c6": 10136, "15___CATEGORICAL___nom_9___7ee50e075": 10137, "15___CATEGORICAL___nom_9___7eeb253e7": 10138, "15___CATEGORICAL___nom_9___7ef605404": 10139, "15___CATEGORICAL___nom_9___7f00a9e22": 10140, "15___CATEGORICAL___nom_9___7f0665e1e": 10141, "15___CATEGORICAL___nom_9___7f083c63e": 10142, "15___CATEGORICAL___nom_9___7f0c6e935": 10143, "15___CATEGORICAL___nom_9___7f0d0fb57": 10144, "15___CATEGORICAL___nom_9___7f1279ded": 10145, "15___CATEGORICAL___nom_9___7f18b76dc": 10146, "15___CATEGORICAL___nom_9___7f1c3219c": 10147, "15___CATEGORICAL___nom_9___7f1ce6724": 10148, "15___CATEGORICAL___nom_9___7f21426f4": 10149, "15___CATEGORICAL___nom_9___7f221f44a": 10150, "15___CATEGORICAL___nom_9___7f2880344": 10151, "15___CATEGORICAL___nom_9___7f2b18fc3": 10152, "15___CATEGORICAL___nom_9___7f2b7ad04": 10153, "15___CATEGORICAL___nom_9___7f2bc861f": 10154, "15___CATEGORICAL___nom_9___7f33d956a": 10155, "15___CATEGORICAL___nom_9___7f420468a": 10156, "15___CATEGORICAL___nom_9___7f4255a65": 10157, "15___CATEGORICAL___nom_9___7f4808d96": 10158, "15___CATEGORICAL___nom_9___7f48f8f17": 10159, "15___CATEGORICAL___nom_9___7f4982c01": 10160, "15___CATEGORICAL___nom_9___7f4d4ee95": 10161, "15___CATEGORICAL___nom_9___7f502a4b8": 10162, "15___CATEGORICAL___nom_9___7f5b1c170": 10163, "15___CATEGORICAL___nom_9___7f5e74721": 10164, "15___CATEGORICAL___nom_9___7f6539005": 10165, "15___CATEGORICAL___nom_9___7f6672118": 10166, "15___CATEGORICAL___nom_9___7f6a8cce6": 10167, "15___CATEGORICAL___nom_9___7f7133012": 10168, "15___CATEGORICAL___nom_9___7f73c2a50": 10169, "15___CATEGORICAL___nom_9___7f8796416": 10170, "15___CATEGORICAL___nom_9___7f88f1df0": 10171, "15___CATEGORICAL___nom_9___7f8cc02cd": 10172, "15___CATEGORICAL___nom_9___7f9bf2e55": 10173, "15___CATEGORICAL___nom_9___7f9dc3b8b": 10174, "15___CATEGORICAL___nom_9___7fa681ea4": 10175, "15___CATEGORICAL___nom_9___7faa4c366": 10176, "15___CATEGORICAL___nom_9___7fb5515b6": 10177, "15___CATEGORICAL___nom_9___7fb707e56": 10178, "15___CATEGORICAL___nom_9___7fbda28a7": 10179, "15___CATEGORICAL___nom_9___7fc99a139": 10180, "15___CATEGORICAL___nom_9___7fcdd32d8": 10181, "15___CATEGORICAL___nom_9___7fd283801": 10182, "15___CATEGORICAL___nom_9___7fd53d845": 10183, "15___CATEGORICAL___nom_9___7fdc992ce": 10184, "15___CATEGORICAL___nom_9___7fdfc63b9": 10185, "15___CATEGORICAL___nom_9___7fe01ec1c": 10186, "15___CATEGORICAL___nom_9___7fe46e676": 10187, "15___CATEGORICAL___nom_9___7fe5ee983": 10188, "15___CATEGORICAL___nom_9___80002b8e2": 10189, "15___CATEGORICAL___nom_9___8001019c9": 10190, "15___CATEGORICAL___nom_9___800b71b2c": 10191, "15___CATEGORICAL___nom_9___800bee4e8": 10192, "15___CATEGORICAL___nom_9___800f0ff19": 10193, "15___CATEGORICAL___nom_9___801775384": 10194, "15___CATEGORICAL___nom_9___801b5eb7f": 10195, "15___CATEGORICAL___nom_9___8022f9312": 10196, "15___CATEGORICAL___nom_9___8024c1c42": 10197, "15___CATEGORICAL___nom_9___802b07582": 10198, "15___CATEGORICAL___nom_9___8035fe068": 10199, "15___CATEGORICAL___nom_9___80360431c": 10200, "15___CATEGORICAL___nom_9___8036de9b5": 10201, "15___CATEGORICAL___nom_9___803ead821": 10202, "15___CATEGORICAL___nom_9___803ff8d03": 10203, "15___CATEGORICAL___nom_9___8043184f4": 10204, "15___CATEGORICAL___nom_9___804cc6df9": 10205, "15___CATEGORICAL___nom_9___804fc9d96": 10206, "15___CATEGORICAL___nom_9___8055610e2": 10207, "15___CATEGORICAL___nom_9___8057ad80a": 10208, "15___CATEGORICAL___nom_9___80619a7dd": 10209, "15___CATEGORICAL___nom_9___8070d873e": 10210, "15___CATEGORICAL___nom_9___8071bfe80": 10211, "15___CATEGORICAL___nom_9___807586d66": 10212, "15___CATEGORICAL___nom_9___807a9f53a": 10213, "15___CATEGORICAL___nom_9___808c2b084": 10214, "15___CATEGORICAL___nom_9___808c757a0": 10215, "15___CATEGORICAL___nom_9___80910b39d": 10216, "15___CATEGORICAL___nom_9___8095dbb75": 10217, "15___CATEGORICAL___nom_9___809888e70": 10218, "15___CATEGORICAL___nom_9___80989fb88": 10219, "15___CATEGORICAL___nom_9___809aefe45": 10220, "15___CATEGORICAL___nom_9___809b43e9b": 10221, "15___CATEGORICAL___nom_9___80a146cd9": 10222, "15___CATEGORICAL___nom_9___80aa5cb48": 10223, "15___CATEGORICAL___nom_9___80acc1853": 10224, "15___CATEGORICAL___nom_9___80b04c0ab": 10225, "15___CATEGORICAL___nom_9___80bc4e0c7": 10226, "15___CATEGORICAL___nom_9___80c03b270": 10227, "15___CATEGORICAL___nom_9___80ca040fc": 10228, "15___CATEGORICAL___nom_9___80cf5687e": 10229, "15___CATEGORICAL___nom_9___80d423992": 10230, "15___CATEGORICAL___nom_9___80d7c9430": 10231, "15___CATEGORICAL___nom_9___80e72097b": 10232, "15___CATEGORICAL___nom_9___80f1411c8": 10233, "15___CATEGORICAL___nom_9___80f3b66ff": 10234, "15___CATEGORICAL___nom_9___80fe0a1ae": 10235, "15___CATEGORICAL___nom_9___8114504d9": 10236, "15___CATEGORICAL___nom_9___8122c23e1": 10237, "15___CATEGORICAL___nom_9___8125151e8": 10238, "15___CATEGORICAL___nom_9___81329e4df": 10239, "15___CATEGORICAL___nom_9___81353277b": 10240, "15___CATEGORICAL___nom_9___813583a2a": 10241, "15___CATEGORICAL___nom_9___81368c258": 10242, "15___CATEGORICAL___nom_9___8136e86a2": 10243, "15___CATEGORICAL___nom_9___813b501f4": 10244, "15___CATEGORICAL___nom_9___813dfcb74": 10245, "15___CATEGORICAL___nom_9___814087366": 10246, "15___CATEGORICAL___nom_9___8147fdc9f": 10247, "15___CATEGORICAL___nom_9___814bcc16a": 10248, "15___CATEGORICAL___nom_9___814f80997": 10249, "15___CATEGORICAL___nom_9___815874deb": 10250, "15___CATEGORICAL___nom_9___815c8040e": 10251, "15___CATEGORICAL___nom_9___8162b88bb": 10252, "15___CATEGORICAL___nom_9___816bc8f47": 10253, "15___CATEGORICAL___nom_9___816ca49ad": 10254, "15___CATEGORICAL___nom_9___8171416d6": 10255, "15___CATEGORICAL___nom_9___8173ee7db": 10256, "15___CATEGORICAL___nom_9___817b8dca6": 10257, "15___CATEGORICAL___nom_9___817e2c7b5": 10258, "15___CATEGORICAL___nom_9___817e5ed12": 10259, "15___CATEGORICAL___nom_9___818228bae": 10260, "15___CATEGORICAL___nom_9___8183b010e": 10261, "15___CATEGORICAL___nom_9___818871dc8": 10262, "15___CATEGORICAL___nom_9___819358867": 10263, "15___CATEGORICAL___nom_9___8195596d3": 10264, "15___CATEGORICAL___nom_9___819a54e7c": 10265, "15___CATEGORICAL___nom_9___819a8e985": 10266, "15___CATEGORICAL___nom_9___819d952ae": 10267, "15___CATEGORICAL___nom_9___81a95dac9": 10268, "15___CATEGORICAL___nom_9___81ab46a57": 10269, "15___CATEGORICAL___nom_9___81b3bc032": 10270, "15___CATEGORICAL___nom_9___81b6bfebc": 10271, "15___CATEGORICAL___nom_9___81bba4819": 10272, "15___CATEGORICAL___nom_9___81c302f4f": 10273, "15___CATEGORICAL___nom_9___81c9115a9": 10274, "15___CATEGORICAL___nom_9___81d52db8c": 10275, "15___CATEGORICAL___nom_9___81dc5cb55": 10276, "15___CATEGORICAL___nom_9___81e7acca7": 10277, "15___CATEGORICAL___nom_9___81ed160a6": 10278, "15___CATEGORICAL___nom_9___81ef0fc8f": 10279, "15___CATEGORICAL___nom_9___81fa53f07": 10280, "15___CATEGORICAL___nom_9___81fb39910": 10281, "15___CATEGORICAL___nom_9___81fc102fc": 10282, "15___CATEGORICAL___nom_9___81fd593b8": 10283, "15___CATEGORICAL___nom_9___81fdcb7c3": 10284, "15___CATEGORICAL___nom_9___820169051": 10285, "15___CATEGORICAL___nom_9___820214db7": 10286, "15___CATEGORICAL___nom_9___82084b5e4": 10287, "15___CATEGORICAL___nom_9___820a59acb": 10288, "15___CATEGORICAL___nom_9___820b5b35b": 10289, "15___CATEGORICAL___nom_9___8217afc56": 10290, "15___CATEGORICAL___nom_9___8219dd8e2": 10291, "15___CATEGORICAL___nom_9___821fb2e51": 10292, "15___CATEGORICAL___nom_9___822185a73": 10293, "15___CATEGORICAL___nom_9___82268c205": 10294, "15___CATEGORICAL___nom_9___822ea3048": 10295, "15___CATEGORICAL___nom_9___82318ef56": 10296, "15___CATEGORICAL___nom_9___82454e4f6": 10297, "15___CATEGORICAL___nom_9___824af1e61": 10298, "15___CATEGORICAL___nom_9___824d425ac": 10299, "15___CATEGORICAL___nom_9___825022c42": 10300, "15___CATEGORICAL___nom_9___825b28dcf": 10301, "15___CATEGORICAL___nom_9___825c129b0": 10302, "15___CATEGORICAL___nom_9___825dd25d7": 10303, "15___CATEGORICAL___nom_9___825facafc": 10304, "15___CATEGORICAL___nom_9___8270f0d71": 10305, "15___CATEGORICAL___nom_9___82747d757": 10306, "15___CATEGORICAL___nom_9___8275027b7": 10307, "15___CATEGORICAL___nom_9___827b3cb04": 10308, "15___CATEGORICAL___nom_9___827d1034c": 10309, "15___CATEGORICAL___nom_9___827d852d0": 10310, "15___CATEGORICAL___nom_9___828289263": 10311, "15___CATEGORICAL___nom_9___828ab6fa1": 10312, "15___CATEGORICAL___nom_9___828f257ca": 10313, "15___CATEGORICAL___nom_9___829de2f97": 10314, "15___CATEGORICAL___nom_9___829f95a21": 10315, "15___CATEGORICAL___nom_9___82a0a9cb5": 10316, "15___CATEGORICAL___nom_9___82b64e089": 10317, "15___CATEGORICAL___nom_9___82b9b46fc": 10318, "15___CATEGORICAL___nom_9___82c2d710e": 10319, "15___CATEGORICAL___nom_9___82c5c14bf": 10320, "15___CATEGORICAL___nom_9___82cf6fc2c": 10321, "15___CATEGORICAL___nom_9___82d05e609": 10322, "15___CATEGORICAL___nom_9___82d12a4bf": 10323, "15___CATEGORICAL___nom_9___82da671ad": 10324, "15___CATEGORICAL___nom_9___82e37bfca": 10325, "15___CATEGORICAL___nom_9___82e48f1bd": 10326, "15___CATEGORICAL___nom_9___82e8fd509": 10327, "15___CATEGORICAL___nom_9___82eb16ddc": 10328, "15___CATEGORICAL___nom_9___82ee95475": 10329, "15___CATEGORICAL___nom_9___82ef0f1eb": 10330, "15___CATEGORICAL___nom_9___82f0284bd": 10331, "15___CATEGORICAL___nom_9___82f321693": 10332, "15___CATEGORICAL___nom_9___82f912575": 10333, "15___CATEGORICAL___nom_9___83022687a": 10334, "15___CATEGORICAL___nom_9___8305d6304": 10335, "15___CATEGORICAL___nom_9___83097f7b4": 10336, "15___CATEGORICAL___nom_9___830f0d2ec": 10337, "15___CATEGORICAL___nom_9___831cb021c": 10338, "15___CATEGORICAL___nom_9___8328c0054": 10339, "15___CATEGORICAL___nom_9___83292c3be": 10340, "15___CATEGORICAL___nom_9___8329ab638": 10341, "15___CATEGORICAL___nom_9___832fcc7bd": 10342, "15___CATEGORICAL___nom_9___8337e8c1a": 10343, "15___CATEGORICAL___nom_9___834414ba2": 10344, "15___CATEGORICAL___nom_9___835106e0d": 10345, "15___CATEGORICAL___nom_9___835a68b21": 10346, "15___CATEGORICAL___nom_9___835dcf7f6": 10347, "15___CATEGORICAL___nom_9___835f33229": 10348, "15___CATEGORICAL___nom_9___836553e90": 10349, "15___CATEGORICAL___nom_9___83706fd63": 10350, "15___CATEGORICAL___nom_9___83811775b": 10351, "15___CATEGORICAL___nom_9___83865a241": 10352, "15___CATEGORICAL___nom_9___838aff19c": 10353, "15___CATEGORICAL___nom_9___838f38733": 10354, "15___CATEGORICAL___nom_9___838f98784": 10355, "15___CATEGORICAL___nom_9___8399d0f86": 10356, "15___CATEGORICAL___nom_9___839dedc15": 10357, "15___CATEGORICAL___nom_9___839e6b3d6": 10358, "15___CATEGORICAL___nom_9___839f6f71f": 10359, "15___CATEGORICAL___nom_9___83abfcdb2": 10360, "15___CATEGORICAL___nom_9___83b6ffeab": 10361, "15___CATEGORICAL___nom_9___83bbd48ec": 10362, "15___CATEGORICAL___nom_9___83c810426": 10363, "15___CATEGORICAL___nom_9___83c87a2cd": 10364, "15___CATEGORICAL___nom_9___83c914801": 10365, "15___CATEGORICAL___nom_9___83d018d90": 10366, "15___CATEGORICAL___nom_9___83e552ddf": 10367, "15___CATEGORICAL___nom_9___83e5d34f8": 10368, "15___CATEGORICAL___nom_9___83e6209a3": 10369, "15___CATEGORICAL___nom_9___83e7be766": 10370, "15___CATEGORICAL___nom_9___83e86ee98": 10371, "15___CATEGORICAL___nom_9___83eae8f77": 10372, "15___CATEGORICAL___nom_9___83ee04764": 10373, "15___CATEGORICAL___nom_9___83ef0e99f": 10374, "15___CATEGORICAL___nom_9___83f839f9b": 10375, "15___CATEGORICAL___nom_9___8404ff477": 10376, "15___CATEGORICAL___nom_9___8409caa2b": 10377, "15___CATEGORICAL___nom_9___841202213": 10378, "15___CATEGORICAL___nom_9___84163d0c6": 10379, "15___CATEGORICAL___nom_9___841df72a2": 10380, "15___CATEGORICAL___nom_9___842c9d3a2": 10381, "15___CATEGORICAL___nom_9___842d60bc0": 10382, "15___CATEGORICAL___nom_9___842e33440": 10383, "15___CATEGORICAL___nom_9___844175942": 10384, "15___CATEGORICAL___nom_9___8442955ee": 10385, "15___CATEGORICAL___nom_9___844732c24": 10386, "15___CATEGORICAL___nom_9___844cf9b20": 10387, "15___CATEGORICAL___nom_9___844f1de50": 10388, "15___CATEGORICAL___nom_9___8452a9adf": 10389, "15___CATEGORICAL___nom_9___8453f3b7c": 10390, "15___CATEGORICAL___nom_9___8455a07ab": 10391, "15___CATEGORICAL___nom_9___845a0eb86": 10392, "15___CATEGORICAL___nom_9___84627bdcf": 10393, "15___CATEGORICAL___nom_9___84640650c": 10394, "15___CATEGORICAL___nom_9___846672036": 10395, "15___CATEGORICAL___nom_9___846eae9ff": 10396, "15___CATEGORICAL___nom_9___847049f60": 10397, "15___CATEGORICAL___nom_9___8472eb239": 10398, "15___CATEGORICAL___nom_9___84735dafa": 10399, "15___CATEGORICAL___nom_9___84738763b": 10400, "15___CATEGORICAL___nom_9___8477bf8c4": 10401, "15___CATEGORICAL___nom_9___847bff3d9": 10402, "15___CATEGORICAL___nom_9___847d41708": 10403, "15___CATEGORICAL___nom_9___8485fed2e": 10404, "15___CATEGORICAL___nom_9___848f3a74d": 10405, "15___CATEGORICAL___nom_9___8493191e4": 10406, "15___CATEGORICAL___nom_9___8493423ad": 10407, "15___CATEGORICAL___nom_9___8494f306b": 10408, "15___CATEGORICAL___nom_9___849a3fafc": 10409, "15___CATEGORICAL___nom_9___84af6ee8b": 10410, "15___CATEGORICAL___nom_9___84ba3fad3": 10411, "15___CATEGORICAL___nom_9___84c27ee7d": 10412, "15___CATEGORICAL___nom_9___84c645ca4": 10413, "15___CATEGORICAL___nom_9___84c6505ed": 10414, "15___CATEGORICAL___nom_9___84cf4982b": 10415, "15___CATEGORICAL___nom_9___84cfc92fb": 10416, "15___CATEGORICAL___nom_9___84d24b10c": 10417, "15___CATEGORICAL___nom_9___84d3c60bb": 10418, "15___CATEGORICAL___nom_9___84e77b11a": 10419, "15___CATEGORICAL___nom_9___84ebdb3e4": 10420, "15___CATEGORICAL___nom_9___84f7e800c": 10421, "15___CATEGORICAL___nom_9___84ffb1969": 10422, "15___CATEGORICAL___nom_9___8501d87ab": 10423, "15___CATEGORICAL___nom_9___851a12ac0": 10424, "15___CATEGORICAL___nom_9___852888f56": 10425, "15___CATEGORICAL___nom_9___852c029ad": 10426, "15___CATEGORICAL___nom_9___852f0a1b3": 10427, "15___CATEGORICAL___nom_9___853032c5d": 10428, "15___CATEGORICAL___nom_9___85391ffa1": 10429, "15___CATEGORICAL___nom_9___8542caf23": 10430, "15___CATEGORICAL___nom_9___855211bc3": 10431, "15___CATEGORICAL___nom_9___8553a9ed5": 10432, "15___CATEGORICAL___nom_9___855615499": 10433, "15___CATEGORICAL___nom_9___85584e50a": 10434, "15___CATEGORICAL___nom_9___855874e06": 10435, "15___CATEGORICAL___nom_9___856396679": 10436, "15___CATEGORICAL___nom_9___8568fc94b": 10437, "15___CATEGORICAL___nom_9___856af867a": 10438, "15___CATEGORICAL___nom_9___856d3c589": 10439, "15___CATEGORICAL___nom_9___857132fc1": 10440, "15___CATEGORICAL___nom_9___8581095a3": 10441, "15___CATEGORICAL___nom_9___8589b291e": 10442, "15___CATEGORICAL___nom_9___858acbbff": 10443, "15___CATEGORICAL___nom_9___858fce1e7": 10444, "15___CATEGORICAL___nom_9___85951c012": 10445, "15___CATEGORICAL___nom_9___85969442b": 10446, "15___CATEGORICAL___nom_9___85a1a7c18": 10447, "15___CATEGORICAL___nom_9___85ad2082a": 10448, "15___CATEGORICAL___nom_9___85b164bf0": 10449, "15___CATEGORICAL___nom_9___85b25ad01": 10450, "15___CATEGORICAL___nom_9___85b715e9e": 10451, "15___CATEGORICAL___nom_9___85bdab35e": 10452, "15___CATEGORICAL___nom_9___85c3cb3d2": 10453, "15___CATEGORICAL___nom_9___85c6a6998": 10454, "15___CATEGORICAL___nom_9___85c8bc4f7": 10455, "15___CATEGORICAL___nom_9___85cabe4c1": 10456, "15___CATEGORICAL___nom_9___85d4956c8": 10457, "15___CATEGORICAL___nom_9___85d5719ec": 10458, "15___CATEGORICAL___nom_9___85dd824b4": 10459, "15___CATEGORICAL___nom_9___85e951af4": 10460, "15___CATEGORICAL___nom_9___85ed5317a": 10461, "15___CATEGORICAL___nom_9___85f40f057": 10462, "15___CATEGORICAL___nom_9___85fe502f8": 10463, "15___CATEGORICAL___nom_9___8604a3579": 10464, "15___CATEGORICAL___nom_9___8605b9c1b": 10465, "15___CATEGORICAL___nom_9___86117cb15": 10466, "15___CATEGORICAL___nom_9___861982486": 10467, "15___CATEGORICAL___nom_9___86231ca5b": 10468, "15___CATEGORICAL___nom_9___86295d489": 10469, "15___CATEGORICAL___nom_9___8641641fa": 10470, "15___CATEGORICAL___nom_9___8641c23f9": 10471, "15___CATEGORICAL___nom_9___8646d1645": 10472, "15___CATEGORICAL___nom_9___864b48920": 10473, "15___CATEGORICAL___nom_9___864e81287": 10474, "15___CATEGORICAL___nom_9___864f390ec": 10475, "15___CATEGORICAL___nom_9___8651800fa": 10476, "15___CATEGORICAL___nom_9___86633edbb": 10477, "15___CATEGORICAL___nom_9___866b1cf8d": 10478, "15___CATEGORICAL___nom_9___8670c7ee0": 10479, "15___CATEGORICAL___nom_9___867303e4a": 10480, "15___CATEGORICAL___nom_9___8676b5ae0": 10481, "15___CATEGORICAL___nom_9___867d631e7": 10482, "15___CATEGORICAL___nom_9___868d1d088": 10483, "15___CATEGORICAL___nom_9___86908ac8b": 10484, "15___CATEGORICAL___nom_9___8690f9588": 10485, "15___CATEGORICAL___nom_9___8691e6429": 10486, "15___CATEGORICAL___nom_9___8692bfaca": 10487, "15___CATEGORICAL___nom_9___8692d5792": 10488, "15___CATEGORICAL___nom_9___86938cf5d": 10489, "15___CATEGORICAL___nom_9___869700459": 10490, "15___CATEGORICAL___nom_9___869cd3a4b": 10491, "15___CATEGORICAL___nom_9___86a237c09": 10492, "15___CATEGORICAL___nom_9___86a37fe58": 10493, "15___CATEGORICAL___nom_9___86acae20c": 10494, "15___CATEGORICAL___nom_9___86ad7d574": 10495, "15___CATEGORICAL___nom_9___86b5cf7b1": 10496, "15___CATEGORICAL___nom_9___86b94a196": 10497, "15___CATEGORICAL___nom_9___86c140ea6": 10498, "15___CATEGORICAL___nom_9___86c3f4f17": 10499, "15___CATEGORICAL___nom_9___86c547c52": 10500, "15___CATEGORICAL___nom_9___86caec48e": 10501, "15___CATEGORICAL___nom_9___86cec98ec": 10502, "15___CATEGORICAL___nom_9___86d4e8a7d": 10503, "15___CATEGORICAL___nom_9___86d6703b3": 10504, "15___CATEGORICAL___nom_9___86da91342": 10505, "15___CATEGORICAL___nom_9___86dc8556c": 10506, "15___CATEGORICAL___nom_9___86dc93951": 10507, "15___CATEGORICAL___nom_9___86e71abe7": 10508, "15___CATEGORICAL___nom_9___86f1560f0": 10509, "15___CATEGORICAL___nom_9___86f55762c": 10510, "15___CATEGORICAL___nom_9___86fca0316": 10511, "15___CATEGORICAL___nom_9___870618113": 10512, "15___CATEGORICAL___nom_9___8709cdce6": 10513, "15___CATEGORICAL___nom_9___870b29dff": 10514, "15___CATEGORICAL___nom_9___870fb462f": 10515, "15___CATEGORICAL___nom_9___871644d15": 10516, "15___CATEGORICAL___nom_9___8718583fa": 10517, "15___CATEGORICAL___nom_9___871a664ad": 10518, "15___CATEGORICAL___nom_9___871b3652a": 10519, "15___CATEGORICAL___nom_9___871ef141c": 10520, "15___CATEGORICAL___nom_9___87267d020": 10521, "15___CATEGORICAL___nom_9___872f00205": 10522, "15___CATEGORICAL___nom_9___87307972a": 10523, "15___CATEGORICAL___nom_9___873764191": 10524, "15___CATEGORICAL___nom_9___873fa7363": 10525, "15___CATEGORICAL___nom_9___8747f058a": 10526, "15___CATEGORICAL___nom_9___874e10fc5": 10527, "15___CATEGORICAL___nom_9___874e91589": 10528, "15___CATEGORICAL___nom_9___8751241b2": 10529, "15___CATEGORICAL___nom_9___875228954": 10530, "15___CATEGORICAL___nom_9___875514342": 10531, "15___CATEGORICAL___nom_9___875a563ef": 10532, "15___CATEGORICAL___nom_9___875ee3904": 10533, "15___CATEGORICAL___nom_9___8760e4122": 10534, "15___CATEGORICAL___nom_9___8768ae3c9": 10535, "15___CATEGORICAL___nom_9___876de1ca0": 10536, "15___CATEGORICAL___nom_9___87865458c": 10537, "15___CATEGORICAL___nom_9___878ac790d": 10538, "15___CATEGORICAL___nom_9___879317507": 10539, "15___CATEGORICAL___nom_9___8795e7424": 10540, "15___CATEGORICAL___nom_9___8795f0959": 10541, "15___CATEGORICAL___nom_9___87997bc44": 10542, "15___CATEGORICAL___nom_9___879cbc354": 10543, "15___CATEGORICAL___nom_9___87a12babf": 10544, "15___CATEGORICAL___nom_9___87a4fd8ca": 10545, "15___CATEGORICAL___nom_9___87adc9b1f": 10546, "15___CATEGORICAL___nom_9___87b0f4cd4": 10547, "15___CATEGORICAL___nom_9___87b490e55": 10548, "15___CATEGORICAL___nom_9___87b8e6b65": 10549, "15___CATEGORICAL___nom_9___87b995b59": 10550, "15___CATEGORICAL___nom_9___87ba8176b": 10551, "15___CATEGORICAL___nom_9___87bb8be12": 10552, "15___CATEGORICAL___nom_9___87bbba1d2": 10553, "15___CATEGORICAL___nom_9___87bf3a556": 10554, "15___CATEGORICAL___nom_9___87c3ba470": 10555, "15___CATEGORICAL___nom_9___87c8f5388": 10556, "15___CATEGORICAL___nom_9___87cd1e2b7": 10557, "15___CATEGORICAL___nom_9___87cd2a906": 10558, "15___CATEGORICAL___nom_9___87d61ce51": 10559, "15___CATEGORICAL___nom_9___87db5e205": 10560, "15___CATEGORICAL___nom_9___87e124365": 10561, "15___CATEGORICAL___nom_9___87e195b3a": 10562, "15___CATEGORICAL___nom_9___87e266681": 10563, "15___CATEGORICAL___nom_9___87e427854": 10564, "15___CATEGORICAL___nom_9___87e7a76f0": 10565, "15___CATEGORICAL___nom_9___87efc01bc": 10566, "15___CATEGORICAL___nom_9___88039379e": 10567, "15___CATEGORICAL___nom_9___88061a42d": 10568, "15___CATEGORICAL___nom_9___8806a6e69": 10569, "15___CATEGORICAL___nom_9___8807a42ab": 10570, "15___CATEGORICAL___nom_9___880d4d69c": 10571, "15___CATEGORICAL___nom_9___880dfe705": 10572, "15___CATEGORICAL___nom_9___88160acee": 10573, "15___CATEGORICAL___nom_9___881a71ac1": 10574, "15___CATEGORICAL___nom_9___882252fcf": 10575, "15___CATEGORICAL___nom_9___88276f514": 10576, "15___CATEGORICAL___nom_9___8827c5f98": 10577, "15___CATEGORICAL___nom_9___882926e91": 10578, "15___CATEGORICAL___nom_9___8833eb01d": 10579, "15___CATEGORICAL___nom_9___883888016": 10580, "15___CATEGORICAL___nom_9___88497d048": 10581, "15___CATEGORICAL___nom_9___884ead549": 10582, "15___CATEGORICAL___nom_9___884edfe4e": 10583, "15___CATEGORICAL___nom_9___8857e6e34": 10584, "15___CATEGORICAL___nom_9___886be40df": 10585, "15___CATEGORICAL___nom_9___888039373": 10586, "15___CATEGORICAL___nom_9___8881e7933": 10587, "15___CATEGORICAL___nom_9___888f56625": 10588, "15___CATEGORICAL___nom_9___889548a8a": 10589, "15___CATEGORICAL___nom_9___8896eda47": 10590, "15___CATEGORICAL___nom_9___8898fd72f": 10591, "15___CATEGORICAL___nom_9___889cb5dd0": 10592, "15___CATEGORICAL___nom_9___889f717ef": 10593, "15___CATEGORICAL___nom_9___88a3cb592": 10594, "15___CATEGORICAL___nom_9___88b685664": 10595, "15___CATEGORICAL___nom_9___88b7a948d": 10596, "15___CATEGORICAL___nom_9___88baf3d59": 10597, "15___CATEGORICAL___nom_9___88c62c2a2": 10598, "15___CATEGORICAL___nom_9___88c64ca92": 10599, "15___CATEGORICAL___nom_9___88c72f886": 10600, "15___CATEGORICAL___nom_9___88c7dd945": 10601, "15___CATEGORICAL___nom_9___88c8cef25": 10602, "15___CATEGORICAL___nom_9___88d1272e8": 10603, "15___CATEGORICAL___nom_9___88d29ebd1": 10604, "15___CATEGORICAL___nom_9___88deac2ba": 10605, "15___CATEGORICAL___nom_9___88df47aad": 10606, "15___CATEGORICAL___nom_9___88e0b1119": 10607, "15___CATEGORICAL___nom_9___88e86e728": 10608, "15___CATEGORICAL___nom_9___88f0dc505": 10609, "15___CATEGORICAL___nom_9___88f6aaaf2": 10610, "15___CATEGORICAL___nom_9___88fd58502": 10611, "15___CATEGORICAL___nom_9___88ff22230": 10612, "15___CATEGORICAL___nom_9___890359722": 10613, "15___CATEGORICAL___nom_9___8904df3e9": 10614, "15___CATEGORICAL___nom_9___891300ab8": 10615, "15___CATEGORICAL___nom_9___891428694": 10616, "15___CATEGORICAL___nom_9___89147ab3c": 10617, "15___CATEGORICAL___nom_9___89161d0d5": 10618, "15___CATEGORICAL___nom_9___89190ef1c": 10619, "15___CATEGORICAL___nom_9___891914499": 10620, "15___CATEGORICAL___nom_9___8923a846a": 10621, "15___CATEGORICAL___nom_9___8928fe2d2": 10622, "15___CATEGORICAL___nom_9___8931f3216": 10623, "15___CATEGORICAL___nom_9___893de2f26": 10624, "15___CATEGORICAL___nom_9___89451cdbf": 10625, "15___CATEGORICAL___nom_9___8945d173a": 10626, "15___CATEGORICAL___nom_9___8947eec63": 10627, "15___CATEGORICAL___nom_9___894c554f9": 10628, "15___CATEGORICAL___nom_9___894d04063": 10629, "15___CATEGORICAL___nom_9___89539e0fa": 10630, "15___CATEGORICAL___nom_9___895424f14": 10631, "15___CATEGORICAL___nom_9___89586c738": 10632, "15___CATEGORICAL___nom_9___8959c37e7": 10633, "15___CATEGORICAL___nom_9___8962f37d0": 10634, "15___CATEGORICAL___nom_9___89634cec0": 10635, "15___CATEGORICAL___nom_9___896ec0249": 10636, "15___CATEGORICAL___nom_9___89780d4b2": 10637, "15___CATEGORICAL___nom_9___897a4620f": 10638, "15___CATEGORICAL___nom_9___8988250d8": 10639, "15___CATEGORICAL___nom_9___89940f86e": 10640, "15___CATEGORICAL___nom_9___8996629e2": 10641, "15___CATEGORICAL___nom_9___899c902df": 10642, "15___CATEGORICAL___nom_9___89abb7fd2": 10643, "15___CATEGORICAL___nom_9___89b1c68c7": 10644, "15___CATEGORICAL___nom_9___89ba668ea": 10645, "15___CATEGORICAL___nom_9___89d373755": 10646, "15___CATEGORICAL___nom_9___89d7dc1cf": 10647, "15___CATEGORICAL___nom_9___89ddc35f9": 10648, "15___CATEGORICAL___nom_9___89e3e6806": 10649, "15___CATEGORICAL___nom_9___89ec477b5": 10650, "15___CATEGORICAL___nom_9___89ee8dd54": 10651, "15___CATEGORICAL___nom_9___89f8bc6ed": 10652, "15___CATEGORICAL___nom_9___89f9f0690": 10653, "15___CATEGORICAL___nom_9___89faf3a8b": 10654, "15___CATEGORICAL___nom_9___89fc7eb79": 10655, "15___CATEGORICAL___nom_9___8a014ddd8": 10656, "15___CATEGORICAL___nom_9___8a02cec15": 10657, "15___CATEGORICAL___nom_9___8a04ce841": 10658, "15___CATEGORICAL___nom_9___8a08a8782": 10659, "15___CATEGORICAL___nom_9___8a12b7128": 10660, "15___CATEGORICAL___nom_9___8a2514e7c": 10661, "15___CATEGORICAL___nom_9___8a26e1fa9": 10662, "15___CATEGORICAL___nom_9___8a298f187": 10663, "15___CATEGORICAL___nom_9___8a34e794f": 10664, "15___CATEGORICAL___nom_9___8a3592b8c": 10665, "15___CATEGORICAL___nom_9___8a3865fe2": 10666, "15___CATEGORICAL___nom_9___8a3895386": 10667, "15___CATEGORICAL___nom_9___8a461c3c4": 10668, "15___CATEGORICAL___nom_9___8a4d3f47c": 10669, "15___CATEGORICAL___nom_9___8a4f82378": 10670, "15___CATEGORICAL___nom_9___8a5291194": 10671, "15___CATEGORICAL___nom_9___8a52f0d1a": 10672, "15___CATEGORICAL___nom_9___8a537ebd5": 10673, "15___CATEGORICAL___nom_9___8a5c8505e": 10674, "15___CATEGORICAL___nom_9___8a5d45e8b": 10675, "15___CATEGORICAL___nom_9___8a5ee7c52": 10676, "15___CATEGORICAL___nom_9___8a5fb75ef": 10677, "15___CATEGORICAL___nom_9___8a6167845": 10678, "15___CATEGORICAL___nom_9___8a6a1c597": 10679, "15___CATEGORICAL___nom_9___8a730c339": 10680, "15___CATEGORICAL___nom_9___8a797bbe5": 10681, "15___CATEGORICAL___nom_9___8a7caa2f8": 10682, "15___CATEGORICAL___nom_9___8a7ea2a6a": 10683, "15___CATEGORICAL___nom_9___8a9004b75": 10684, "15___CATEGORICAL___nom_9___8a906c3c8": 10685, "15___CATEGORICAL___nom_9___8a919d8d5": 10686, "15___CATEGORICAL___nom_9___8a9e5313c": 10687, "15___CATEGORICAL___nom_9___8a9f1421f": 10688, "15___CATEGORICAL___nom_9___8aa18a963": 10689, "15___CATEGORICAL___nom_9___8aa1988ee": 10690, "15___CATEGORICAL___nom_9___8aa6e6863": 10691, "15___CATEGORICAL___nom_9___8aa7f0eee": 10692, "15___CATEGORICAL___nom_9___8aa88ca0d": 10693, "15___CATEGORICAL___nom_9___8ab8ae735": 10694, "15___CATEGORICAL___nom_9___8abf0c424": 10695, "15___CATEGORICAL___nom_9___8ad37d779": 10696, "15___CATEGORICAL___nom_9___8ad3e6d38": 10697, "15___CATEGORICAL___nom_9___8ad51bd72": 10698, "15___CATEGORICAL___nom_9___8ada0d6ff": 10699, "15___CATEGORICAL___nom_9___8ae0091cd": 10700, "15___CATEGORICAL___nom_9___8ae9d30e8": 10701, "15___CATEGORICAL___nom_9___8aeadc0f4": 10702, "15___CATEGORICAL___nom_9___8af0ca2b0": 10703, "15___CATEGORICAL___nom_9___8af7a8859": 10704, "15___CATEGORICAL___nom_9___8affb9ea6": 10705, "15___CATEGORICAL___nom_9___8b0132577": 10706, "15___CATEGORICAL___nom_9___8b01501e2": 10707, "15___CATEGORICAL___nom_9___8b08ec6f5": 10708, "15___CATEGORICAL___nom_9___8b0d8ccba": 10709, "15___CATEGORICAL___nom_9___8b18fca1a": 10710, "15___CATEGORICAL___nom_9___8b1de9904": 10711, "15___CATEGORICAL___nom_9___8b1f75d90": 10712, "15___CATEGORICAL___nom_9___8b24bad88": 10713, "15___CATEGORICAL___nom_9___8b3192051": 10714, "15___CATEGORICAL___nom_9___8b32e7e19": 10715, "15___CATEGORICAL___nom_9___8b3414899": 10716, "15___CATEGORICAL___nom_9___8b426325a": 10717, "15___CATEGORICAL___nom_9___8b4b851e4": 10718, "15___CATEGORICAL___nom_9___8b4bd75d6": 10719, "15___CATEGORICAL___nom_9___8b569eb86": 10720, "15___CATEGORICAL___nom_9___8b5f2adce": 10721, "15___CATEGORICAL___nom_9___8b604dd30": 10722, "15___CATEGORICAL___nom_9___8b6eed279": 10723, "15___CATEGORICAL___nom_9___8b81af6e4": 10724, "15___CATEGORICAL___nom_9___8b8360b8b": 10725, "15___CATEGORICAL___nom_9___8b8439f73": 10726, "15___CATEGORICAL___nom_9___8b847c89d": 10727, "15___CATEGORICAL___nom_9___8b86d2e29": 10728, "15___CATEGORICAL___nom_9___8b9fa4bc1": 10729, "15___CATEGORICAL___nom_9___8ba17a3e9": 10730, "15___CATEGORICAL___nom_9___8ba5377df": 10731, "15___CATEGORICAL___nom_9___8baad2054": 10732, "15___CATEGORICAL___nom_9___8badbfe3c": 10733, "15___CATEGORICAL___nom_9___8bb08e70d": 10734, "15___CATEGORICAL___nom_9___8bb870cea": 10735, "15___CATEGORICAL___nom_9___8bb9258e1": 10736, "15___CATEGORICAL___nom_9___8bbb2568a": 10737, "15___CATEGORICAL___nom_9___8bbe8b31f": 10738, "15___CATEGORICAL___nom_9___8bc57c083": 10739, "15___CATEGORICAL___nom_9___8bcfa0c30": 10740, "15___CATEGORICAL___nom_9___8bd697054": 10741, "15___CATEGORICAL___nom_9___8bd8ba896": 10742, "15___CATEGORICAL___nom_9___8bd9ca204": 10743, "15___CATEGORICAL___nom_9___8bdc13572": 10744, "15___CATEGORICAL___nom_9___8be64c238": 10745, "15___CATEGORICAL___nom_9___8beef317e": 10746, "15___CATEGORICAL___nom_9___8bf3a5f3c": 10747, "15___CATEGORICAL___nom_9___8bf9c9578": 10748, "15___CATEGORICAL___nom_9___8bfb9d814": 10749, "15___CATEGORICAL___nom_9___8bff08eff": 10750, "15___CATEGORICAL___nom_9___8bffd0765": 10751, "15___CATEGORICAL___nom_9___8c0cda4c2": 10752, "15___CATEGORICAL___nom_9___8c1983479": 10753, "15___CATEGORICAL___nom_9___8c285b4e3": 10754, "15___CATEGORICAL___nom_9___8c2d294f6": 10755, "15___CATEGORICAL___nom_9___8c36a8679": 10756, "15___CATEGORICAL___nom_9___8c3d9a2b1": 10757, "15___CATEGORICAL___nom_9___8c4274997": 10758, "15___CATEGORICAL___nom_9___8c4842749": 10759, "15___CATEGORICAL___nom_9___8c49d55ef": 10760, "15___CATEGORICAL___nom_9___8c51842bc": 10761, "15___CATEGORICAL___nom_9___8c589c4c9": 10762, "15___CATEGORICAL___nom_9___8c5c3d440": 10763, "15___CATEGORICAL___nom_9___8c6182ca8": 10764, "15___CATEGORICAL___nom_9___8c6754ef7": 10765, "15___CATEGORICAL___nom_9___8c6ed61cc": 10766, "15___CATEGORICAL___nom_9___8c6f8fcad": 10767, "15___CATEGORICAL___nom_9___8c705be80": 10768, "15___CATEGORICAL___nom_9___8c787aa6a": 10769, "15___CATEGORICAL___nom_9___8c7fbef7e": 10770, "15___CATEGORICAL___nom_9___8c88cc4b7": 10771, "15___CATEGORICAL___nom_9___8c89a298a": 10772, "15___CATEGORICAL___nom_9___8c8a56f3d": 10773, "15___CATEGORICAL___nom_9___8c8f1d2de": 10774, "15___CATEGORICAL___nom_9___8c95a4d1a": 10775, "15___CATEGORICAL___nom_9___8c9830001": 10776, "15___CATEGORICAL___nom_9___8c9c0e0e0": 10777, "15___CATEGORICAL___nom_9___8c9eaf173": 10778, "15___CATEGORICAL___nom_9___8ca261e9d": 10779, "15___CATEGORICAL___nom_9___8ca356ba9": 10780, "15___CATEGORICAL___nom_9___8caadfb04": 10781, "15___CATEGORICAL___nom_9___8cb359c68": 10782, "15___CATEGORICAL___nom_9___8cbb90651": 10783, "15___CATEGORICAL___nom_9___8cbf2e118": 10784, "15___CATEGORICAL___nom_9___8ccc063f3": 10785, "15___CATEGORICAL___nom_9___8ccd2082c": 10786, "15___CATEGORICAL___nom_9___8cd4f6443": 10787, "15___CATEGORICAL___nom_9___8cd53d1fc": 10788, "15___CATEGORICAL___nom_9___8cd6886ad": 10789, "15___CATEGORICAL___nom_9___8ce217c23": 10790, "15___CATEGORICAL___nom_9___8cf50ebf3": 10791, "15___CATEGORICAL___nom_9___8cf9880fb": 10792, "15___CATEGORICAL___nom_9___8d0346548": 10793, "15___CATEGORICAL___nom_9___8d04f799b": 10794, "15___CATEGORICAL___nom_9___8d0df6d52": 10795, "15___CATEGORICAL___nom_9___8d16003c8": 10796, "15___CATEGORICAL___nom_9___8d1eb8eb0": 10797, "15___CATEGORICAL___nom_9___8d33baa76": 10798, "15___CATEGORICAL___nom_9___8d4012800": 10799, "15___CATEGORICAL___nom_9___8d4388150": 10800, "15___CATEGORICAL___nom_9___8d44269fb": 10801, "15___CATEGORICAL___nom_9___8d53ab722": 10802, "15___CATEGORICAL___nom_9___8d56316db": 10803, "15___CATEGORICAL___nom_9___8d5a2a07f": 10804, "15___CATEGORICAL___nom_9___8d622e6f2": 10805, "15___CATEGORICAL___nom_9___8d67eba6e": 10806, "15___CATEGORICAL___nom_9___8d6aba4ea": 10807, "15___CATEGORICAL___nom_9___8d6df457e": 10808, "15___CATEGORICAL___nom_9___8d6e0221e": 10809, "15___CATEGORICAL___nom_9___8d72ba741": 10810, "15___CATEGORICAL___nom_9___8d8362d80": 10811, "15___CATEGORICAL___nom_9___8d9e5af93": 10812, "15___CATEGORICAL___nom_9___8d9f56f7e": 10813, "15___CATEGORICAL___nom_9___8da719fdd": 10814, "15___CATEGORICAL___nom_9___8dac3c02c": 10815, "15___CATEGORICAL___nom_9___8db4eb4e8": 10816, "15___CATEGORICAL___nom_9___8dbfd67fe": 10817, "15___CATEGORICAL___nom_9___8dd0e2c24": 10818, "15___CATEGORICAL___nom_9___8dd7b712c": 10819, "15___CATEGORICAL___nom_9___8de664768": 10820, "15___CATEGORICAL___nom_9___8de7868ab": 10821, "15___CATEGORICAL___nom_9___8de839c68": 10822, "15___CATEGORICAL___nom_9___8def79305": 10823, "15___CATEGORICAL___nom_9___8defee9b8": 10824, "15___CATEGORICAL___nom_9___8df02cfc0": 10825, "15___CATEGORICAL___nom_9___8df0bdc33": 10826, "15___CATEGORICAL___nom_9___8df585f10": 10827, "15___CATEGORICAL___nom_9___8dfacc710": 10828, "15___CATEGORICAL___nom_9___8dfb56d84": 10829, "15___CATEGORICAL___nom_9___8dfcb0535": 10830, "15___CATEGORICAL___nom_9___8dfcdd041": 10831, "15___CATEGORICAL___nom_9___8e00c9e95": 10832, "15___CATEGORICAL___nom_9___8e0450be1": 10833, "15___CATEGORICAL___nom_9___8e0e13570": 10834, "15___CATEGORICAL___nom_9___8e184392b": 10835, "15___CATEGORICAL___nom_9___8e1b6c299": 10836, "15___CATEGORICAL___nom_9___8e2323050": 10837, "15___CATEGORICAL___nom_9___8e26e2005": 10838, "15___CATEGORICAL___nom_9___8e388eb38": 10839, "15___CATEGORICAL___nom_9___8e38db818": 10840, "15___CATEGORICAL___nom_9___8e39db185": 10841, "15___CATEGORICAL___nom_9___8e3a5967c": 10842, "15___CATEGORICAL___nom_9___8e3a664d3": 10843, "15___CATEGORICAL___nom_9___8e40862cb": 10844, "15___CATEGORICAL___nom_9___8e424e006": 10845, "15___CATEGORICAL___nom_9___8e438c810": 10846, "15___CATEGORICAL___nom_9___8e495b33c": 10847, "15___CATEGORICAL___nom_9___8e4cf2973": 10848, "15___CATEGORICAL___nom_9___8e4d72e12": 10849, "15___CATEGORICAL___nom_9___8e4daa3a2": 10850, "15___CATEGORICAL___nom_9___8e56e4ca9": 10851, "15___CATEGORICAL___nom_9___8e5f1b05f": 10852, "15___CATEGORICAL___nom_9___8e636318e": 10853, "15___CATEGORICAL___nom_9___8e6834928": 10854, "15___CATEGORICAL___nom_9___8e6fa420d": 10855, "15___CATEGORICAL___nom_9___8e7982640": 10856, "15___CATEGORICAL___nom_9___8e8c28577": 10857, "15___CATEGORICAL___nom_9___8e8d5bf64": 10858, "15___CATEGORICAL___nom_9___8e8e12f12": 10859, "15___CATEGORICAL___nom_9___8e8e1a096": 10860, "15___CATEGORICAL___nom_9___8e90ec087": 10861, "15___CATEGORICAL___nom_9___8e92b9215": 10862, "15___CATEGORICAL___nom_9___8e9502d31": 10863, "15___CATEGORICAL___nom_9___8e9851a87": 10864, "15___CATEGORICAL___nom_9___8e988571a": 10865, "15___CATEGORICAL___nom_9___8e9c6dd63": 10866, "15___CATEGORICAL___nom_9___8e9d7e6cb": 10867, "15___CATEGORICAL___nom_9___8ea54d5da": 10868, "15___CATEGORICAL___nom_9___8ea6d108f": 10869, "15___CATEGORICAL___nom_9___8ea963a58": 10870, "15___CATEGORICAL___nom_9___8eb1c6300": 10871, "15___CATEGORICAL___nom_9___8eb38f3ab": 10872, "15___CATEGORICAL___nom_9___8eb46af7e": 10873, "15___CATEGORICAL___nom_9___8eb662b8a": 10874, "15___CATEGORICAL___nom_9___8ebd1bb7c": 10875, "15___CATEGORICAL___nom_9___8ec21efcd": 10876, "15___CATEGORICAL___nom_9___8ec60e4ea": 10877, "15___CATEGORICAL___nom_9___8ec616354": 10878, "15___CATEGORICAL___nom_9___8ecb710e6": 10879, "15___CATEGORICAL___nom_9___8edae7a32": 10880, "15___CATEGORICAL___nom_9___8eddfc68a": 10881, "15___CATEGORICAL___nom_9___8ee3dd0b7": 10882, "15___CATEGORICAL___nom_9___8ee8c873b": 10883, "15___CATEGORICAL___nom_9___8eeafbc72": 10884, "15___CATEGORICAL___nom_9___8eeec81ee": 10885, "15___CATEGORICAL___nom_9___8ef8f106c": 10886, "15___CATEGORICAL___nom_9___8efb9c42c": 10887, "15___CATEGORICAL___nom_9___8efd46297": 10888, "15___CATEGORICAL___nom_9___8f0a27342": 10889, "15___CATEGORICAL___nom_9___8f130cb68": 10890, "15___CATEGORICAL___nom_9___8f17e29ef": 10891, "15___CATEGORICAL___nom_9___8f1ed3417": 10892, "15___CATEGORICAL___nom_9___8f200efd0": 10893, "15___CATEGORICAL___nom_9___8f23e3c55": 10894, "15___CATEGORICAL___nom_9___8f23f28ff": 10895, "15___CATEGORICAL___nom_9___8f2c65ff6": 10896, "15___CATEGORICAL___nom_9___8f2dacc0e": 10897, "15___CATEGORICAL___nom_9___8f30872cc": 10898, "15___CATEGORICAL___nom_9___8f3ad63fe": 10899, "15___CATEGORICAL___nom_9___8f4f9dfb9": 10900, "15___CATEGORICAL___nom_9___8f5118331": 10901, "15___CATEGORICAL___nom_9___8f51ecfce": 10902, "15___CATEGORICAL___nom_9___8f54c4571": 10903, "15___CATEGORICAL___nom_9___8f578f412": 10904, "15___CATEGORICAL___nom_9___8f5ad16f1": 10905, "15___CATEGORICAL___nom_9___8f6a85c16": 10906, "15___CATEGORICAL___nom_9___8f6c70e58": 10907, "15___CATEGORICAL___nom_9___8f6d4a583": 10908, "15___CATEGORICAL___nom_9___8f740cdde": 10909, "15___CATEGORICAL___nom_9___8f74ce33c": 10910, "15___CATEGORICAL___nom_9___8f7779e65": 10911, "15___CATEGORICAL___nom_9___8f8203f34": 10912, "15___CATEGORICAL___nom_9___8f8c0cece": 10913, "15___CATEGORICAL___nom_9___8f91de5f4": 10914, "15___CATEGORICAL___nom_9___8f9214511": 10915, "15___CATEGORICAL___nom_9___8f98d859b": 10916, "15___CATEGORICAL___nom_9___8fa439fb1": 10917, "15___CATEGORICAL___nom_9___8faf07c59": 10918, "15___CATEGORICAL___nom_9___8fb1272d3": 10919, "15___CATEGORICAL___nom_9___8fb13d313": 10920, "15___CATEGORICAL___nom_9___8fb3a3272": 10921, "15___CATEGORICAL___nom_9___8fb56befb": 10922, "15___CATEGORICAL___nom_9___8fbeb1e89": 10923, "15___CATEGORICAL___nom_9___8fc11271a": 10924, "15___CATEGORICAL___nom_9___8fc295fff": 10925, "15___CATEGORICAL___nom_9___8fc5627fe": 10926, "15___CATEGORICAL___nom_9___8fce6c13e": 10927, "15___CATEGORICAL___nom_9___8fcf80d5e": 10928, "15___CATEGORICAL___nom_9___8fd04de19": 10929, "15___CATEGORICAL___nom_9___8fde242d6": 10930, "15___CATEGORICAL___nom_9___8fdecd7a7": 10931, "15___CATEGORICAL___nom_9___8fe76101f": 10932, "15___CATEGORICAL___nom_9___8fef6fdff": 10933, "15___CATEGORICAL___nom_9___8ff5eec43": 10934, "15___CATEGORICAL___nom_9___9003823a6": 10935, "15___CATEGORICAL___nom_9___900852b2f": 10936, "15___CATEGORICAL___nom_9___900e6dcf8": 10937, "15___CATEGORICAL___nom_9___901814654": 10938, "15___CATEGORICAL___nom_9___90185192e": 10939, "15___CATEGORICAL___nom_9___901c8ac5a": 10940, "15___CATEGORICAL___nom_9___901cfcc6c": 10941, "15___CATEGORICAL___nom_9___902f240da": 10942, "15___CATEGORICAL___nom_9___904a34482": 10943, "15___CATEGORICAL___nom_9___906894421": 10944, "15___CATEGORICAL___nom_9___90704bef1": 10945, "15___CATEGORICAL___nom_9___90757a6bb": 10946, "15___CATEGORICAL___nom_9___9076ad4f6": 10947, "15___CATEGORICAL___nom_9___90773a484": 10948, "15___CATEGORICAL___nom_9___907cbda35": 10949, "15___CATEGORICAL___nom_9___907dd70ab": 10950, "15___CATEGORICAL___nom_9___90a20bd90": 10951, "15___CATEGORICAL___nom_9___90a38fe31": 10952, "15___CATEGORICAL___nom_9___90a5357f6": 10953, "15___CATEGORICAL___nom_9___90a6ab0e1": 10954, "15___CATEGORICAL___nom_9___90b581b8e": 10955, "15___CATEGORICAL___nom_9___90bb0a412": 10956, "15___CATEGORICAL___nom_9___90c4b0b1b": 10957, "15___CATEGORICAL___nom_9___90ccc3c70": 10958, "15___CATEGORICAL___nom_9___90d18984d": 10959, "15___CATEGORICAL___nom_9___90dc973cf": 10960, "15___CATEGORICAL___nom_9___90de4b8f8": 10961, "15___CATEGORICAL___nom_9___90e14909d": 10962, "15___CATEGORICAL___nom_9___90ee870cd": 10963, "15___CATEGORICAL___nom_9___90f214c13": 10964, "15___CATEGORICAL___nom_9___910273bb8": 10965, "15___CATEGORICAL___nom_9___9108ba5f6": 10966, "15___CATEGORICAL___nom_9___910eaf69d": 10967, "15___CATEGORICAL___nom_9___910ef732b": 10968, "15___CATEGORICAL___nom_9___91181012b": 10969, "15___CATEGORICAL___nom_9___911bd0a6a": 10970, "15___CATEGORICAL___nom_9___9127e6eab": 10971, "15___CATEGORICAL___nom_9___912eb6e42": 10972, "15___CATEGORICAL___nom_9___913ad498c": 10973, "15___CATEGORICAL___nom_9___91433f446": 10974, "15___CATEGORICAL___nom_9___9147110b3": 10975, "15___CATEGORICAL___nom_9___915c41861": 10976, "15___CATEGORICAL___nom_9___915ca1168": 10977, "15___CATEGORICAL___nom_9___915cde402": 10978, "15___CATEGORICAL___nom_9___91730a8c9": 10979, "15___CATEGORICAL___nom_9___9185016cf": 10980, "15___CATEGORICAL___nom_9___918cd70e2": 10981, "15___CATEGORICAL___nom_9___91948a12e": 10982, "15___CATEGORICAL___nom_9___9196d7a2c": 10983, "15___CATEGORICAL___nom_9___919a42a41": 10984, "15___CATEGORICAL___nom_9___91a37fbc3": 10985, "15___CATEGORICAL___nom_9___91a7b5612": 10986, "15___CATEGORICAL___nom_9___91abed250": 10987, "15___CATEGORICAL___nom_9___91add780f": 10988, "15___CATEGORICAL___nom_9___91b22eb19": 10989, "15___CATEGORICAL___nom_9___91b9f66ba": 10990, "15___CATEGORICAL___nom_9___91bdaf715": 10991, "15___CATEGORICAL___nom_9___91c3492c6": 10992, "15___CATEGORICAL___nom_9___91cbfbfdb": 10993, "15___CATEGORICAL___nom_9___91d1db0bc": 10994, "15___CATEGORICAL___nom_9___91d52f5b4": 10995, "15___CATEGORICAL___nom_9___91dab1511": 10996, "15___CATEGORICAL___nom_9___91de75d4d": 10997, "15___CATEGORICAL___nom_9___91e0d26d0": 10998, "15___CATEGORICAL___nom_9___91ec7c844": 10999, "15___CATEGORICAL___nom_9___91edc79d9": 11000, "15___CATEGORICAL___nom_9___91fe5c544": 11001, "15___CATEGORICAL___nom_9___9202a6f9b": 11002, "15___CATEGORICAL___nom_9___920c3f46e": 11003, "15___CATEGORICAL___nom_9___920cb6ee3": 11004, "15___CATEGORICAL___nom_9___920f172f9": 11005, "15___CATEGORICAL___nom_9___921639f4a": 11006, "15___CATEGORICAL___nom_9___922216bbe": 11007, "15___CATEGORICAL___nom_9___922553a18": 11008, "15___CATEGORICAL___nom_9___9227ba71c": 11009, "15___CATEGORICAL___nom_9___9228c87b4": 11010, "15___CATEGORICAL___nom_9___92310933e": 11011, "15___CATEGORICAL___nom_9___9231235d5": 11012, "15___CATEGORICAL___nom_9___923ad3958": 11013, "15___CATEGORICAL___nom_9___923b11246": 11014, "15___CATEGORICAL___nom_9___923e83c0b": 11015, "15___CATEGORICAL___nom_9___9249f1e2d": 11016, "15___CATEGORICAL___nom_9___924c9c9f4": 11017, "15___CATEGORICAL___nom_9___9251d6933": 11018, "15___CATEGORICAL___nom_9___925745580": 11019, "15___CATEGORICAL___nom_9___926688376": 11020, "15___CATEGORICAL___nom_9___9267c58a1": 11021, "15___CATEGORICAL___nom_9___926c36895": 11022, "15___CATEGORICAL___nom_9___92891527d": 11023, "15___CATEGORICAL___nom_9___928fd094c": 11024, "15___CATEGORICAL___nom_9___9295e4e66": 11025, "15___CATEGORICAL___nom_9___92a0bba4c": 11026, "15___CATEGORICAL___nom_9___92a403491": 11027, "15___CATEGORICAL___nom_9___92a46698d": 11028, "15___CATEGORICAL___nom_9___92a4e902c": 11029, "15___CATEGORICAL___nom_9___92a57bb87": 11030, "15___CATEGORICAL___nom_9___92b7fb144": 11031, "15___CATEGORICAL___nom_9___92bddfe75": 11032, "15___CATEGORICAL___nom_9___92c9e8ae7": 11033, "15___CATEGORICAL___nom_9___92d8760c8": 11034, "15___CATEGORICAL___nom_9___92de0c93b": 11035, "15___CATEGORICAL___nom_9___92eabcbb5": 11036, "15___CATEGORICAL___nom_9___92f8a2e6e": 11037, "15___CATEGORICAL___nom_9___92f8dfe85": 11038, "15___CATEGORICAL___nom_9___92fd449ed": 11039, "15___CATEGORICAL___nom_9___93006722f": 11040, "15___CATEGORICAL___nom_9___93093cd26": 11041, "15___CATEGORICAL___nom_9___931eae947": 11042, "15___CATEGORICAL___nom_9___9321f24c2": 11043, "15___CATEGORICAL___nom_9___932325f9f": 11044, "15___CATEGORICAL___nom_9___932dce239": 11045, "15___CATEGORICAL___nom_9___932e74b86": 11046, "15___CATEGORICAL___nom_9___932ede7a3": 11047, "15___CATEGORICAL___nom_9___9331ce7dc": 11048, "15___CATEGORICAL___nom_9___9332ff270": 11049, "15___CATEGORICAL___nom_9___9339a366f": 11050, "15___CATEGORICAL___nom_9___933ff6ad8": 11051, "15___CATEGORICAL___nom_9___9342e145e": 11052, "15___CATEGORICAL___nom_9___934e8a416": 11053, "15___CATEGORICAL___nom_9___936717977": 11054, "15___CATEGORICAL___nom_9___93729f684": 11055, "15___CATEGORICAL___nom_9___93730d426": 11056, "15___CATEGORICAL___nom_9___9373d9458": 11057, "15___CATEGORICAL___nom_9___937c9edb5": 11058, "15___CATEGORICAL___nom_9___937e298ae": 11059, "15___CATEGORICAL___nom_9___939196abf": 11060, "15___CATEGORICAL___nom_9___9392f912d": 11061, "15___CATEGORICAL___nom_9___939b35e9c": 11062, "15___CATEGORICAL___nom_9___939da21f7": 11063, "15___CATEGORICAL___nom_9___93abbf932": 11064, "15___CATEGORICAL___nom_9___93b688790": 11065, "15___CATEGORICAL___nom_9___93b785134": 11066, "15___CATEGORICAL___nom_9___93b8ae200": 11067, "15___CATEGORICAL___nom_9___93bffcf08": 11068, "15___CATEGORICAL___nom_9___93c1c8d3f": 11069, "15___CATEGORICAL___nom_9___93ca462b0": 11070, "15___CATEGORICAL___nom_9___93d38d8fd": 11071, "15___CATEGORICAL___nom_9___93d7445b2": 11072, "15___CATEGORICAL___nom_9___93daaa09b": 11073, "15___CATEGORICAL___nom_9___93dc2395f": 11074, "15___CATEGORICAL___nom_9___93de3847a": 11075, "15___CATEGORICAL___nom_9___93ea8e3f9": 11076, "15___CATEGORICAL___nom_9___93eae3923": 11077, "15___CATEGORICAL___nom_9___93edc86de": 11078, "15___CATEGORICAL___nom_9___93f032b52": 11079, "15___CATEGORICAL___nom_9___93f5f3b32": 11080, "15___CATEGORICAL___nom_9___93f98d61a": 11081, "15___CATEGORICAL___nom_9___9406beeeb": 11082, "15___CATEGORICAL___nom_9___940824f8f": 11083, "15___CATEGORICAL___nom_9___940900ec4": 11084, "15___CATEGORICAL___nom_9___941a63f5e": 11085, "15___CATEGORICAL___nom_9___941cb9729": 11086, "15___CATEGORICAL___nom_9___942e6a6da": 11087, "15___CATEGORICAL___nom_9___942fe1525": 11088, "15___CATEGORICAL___nom_9___94331888c": 11089, "15___CATEGORICAL___nom_9___94365d610": 11090, "15___CATEGORICAL___nom_9___943b2cc56": 11091, "15___CATEGORICAL___nom_9___943ca4428": 11092, "15___CATEGORICAL___nom_9___944001192": 11093, "15___CATEGORICAL___nom_9___94425d341": 11094, "15___CATEGORICAL___nom_9___9443022c3": 11095, "15___CATEGORICAL___nom_9___9445ca735": 11096, "15___CATEGORICAL___nom_9___944a27b57": 11097, "15___CATEGORICAL___nom_9___944e6d65e": 11098, "15___CATEGORICAL___nom_9___9451c06f7": 11099, "15___CATEGORICAL___nom_9___9457cac94": 11100, "15___CATEGORICAL___nom_9___945a57ced": 11101, "15___CATEGORICAL___nom_9___945b8c7f1": 11102, "15___CATEGORICAL___nom_9___945b9c0da": 11103, "15___CATEGORICAL___nom_9___946067ce0": 11104, "15___CATEGORICAL___nom_9___9460cba95": 11105, "15___CATEGORICAL___nom_9___9461ccebd": 11106, "15___CATEGORICAL___nom_9___9464c14f2": 11107, "15___CATEGORICAL___nom_9___9467095c8": 11108, "15___CATEGORICAL___nom_9___946c05985": 11109, "15___CATEGORICAL___nom_9___946d97d1c": 11110, "15___CATEGORICAL___nom_9___946db7c1d": 11111, "15___CATEGORICAL___nom_9___947266d29": 11112, "15___CATEGORICAL___nom_9___94759054b": 11113, "15___CATEGORICAL___nom_9___9477be32b": 11114, "15___CATEGORICAL___nom_9___9477c21c4": 11115, "15___CATEGORICAL___nom_9___947bfa36a": 11116, "15___CATEGORICAL___nom_9___9480491dc": 11117, "15___CATEGORICAL___nom_9___948070168": 11118, "15___CATEGORICAL___nom_9___94856eb3c": 11119, "15___CATEGORICAL___nom_9___9489669eb": 11120, "15___CATEGORICAL___nom_9___94911e23c": 11121, "15___CATEGORICAL___nom_9___94997f2a6": 11122, "15___CATEGORICAL___nom_9___949b893e4": 11123, "15___CATEGORICAL___nom_9___94a84512f": 11124, "15___CATEGORICAL___nom_9___94ab6be82": 11125, "15___CATEGORICAL___nom_9___94ab7067e": 11126, "15___CATEGORICAL___nom_9___94abba910": 11127, "15___CATEGORICAL___nom_9___94af3c1a7": 11128, "15___CATEGORICAL___nom_9___94b07572b": 11129, "15___CATEGORICAL___nom_9___94b256065": 11130, "15___CATEGORICAL___nom_9___94b473dfd": 11131, "15___CATEGORICAL___nom_9___94b6ca6e6": 11132, "15___CATEGORICAL___nom_9___94b7c22dd": 11133, "15___CATEGORICAL___nom_9___94bf16f87": 11134, "15___CATEGORICAL___nom_9___94c0d1c74": 11135, "15___CATEGORICAL___nom_9___94c73153e": 11136, "15___CATEGORICAL___nom_9___94d3e503a": 11137, "15___CATEGORICAL___nom_9___94d652b25": 11138, "15___CATEGORICAL___nom_9___94d6876e2": 11139, "15___CATEGORICAL___nom_9___94d802a11": 11140, "15___CATEGORICAL___nom_9___94e53bd9d": 11141, "15___CATEGORICAL___nom_9___94f784127": 11142, "15___CATEGORICAL___nom_9___94fd9fd58": 11143, "15___CATEGORICAL___nom_9___950d558e7": 11144, "15___CATEGORICAL___nom_9___95125bdef": 11145, "15___CATEGORICAL___nom_9___952668e80": 11146, "15___CATEGORICAL___nom_9___952d7fc03": 11147, "15___CATEGORICAL___nom_9___95345e0f7": 11148, "15___CATEGORICAL___nom_9___953ad2a3b": 11149, "15___CATEGORICAL___nom_9___953c934ae": 11150, "15___CATEGORICAL___nom_9___953e0a91b": 11151, "15___CATEGORICAL___nom_9___953eb2651": 11152, "15___CATEGORICAL___nom_9___953ef530b": 11153, "15___CATEGORICAL___nom_9___9547f1d4d": 11154, "15___CATEGORICAL___nom_9___954fc1655": 11155, "15___CATEGORICAL___nom_9___9553ea139": 11156, "15___CATEGORICAL___nom_9___95554d71a": 11157, "15___CATEGORICAL___nom_9___955551ee3": 11158, "15___CATEGORICAL___nom_9___95595f6a4": 11159, "15___CATEGORICAL___nom_9___956109338": 11160, "15___CATEGORICAL___nom_9___95639ffa9": 11161, "15___CATEGORICAL___nom_9___956af531d": 11162, "15___CATEGORICAL___nom_9___95784ddcf": 11163, "15___CATEGORICAL___nom_9___957b59e09": 11164, "15___CATEGORICAL___nom_9___957ea6a64": 11165, "15___CATEGORICAL___nom_9___95840d756": 11166, "15___CATEGORICAL___nom_9___9589de9c1": 11167, "15___CATEGORICAL___nom_9___958b5718b": 11168, "15___CATEGORICAL___nom_9___95923ba34": 11169, "15___CATEGORICAL___nom_9___959c476ef": 11170, "15___CATEGORICAL___nom_9___959f1c871": 11171, "15___CATEGORICAL___nom_9___95a1cb6fe": 11172, "15___CATEGORICAL___nom_9___95a651cf2": 11173, "15___CATEGORICAL___nom_9___95af1dcf2": 11174, "15___CATEGORICAL___nom_9___95b2cc2bd": 11175, "15___CATEGORICAL___nom_9___95b85c849": 11176, "15___CATEGORICAL___nom_9___95b954b21": 11177, "15___CATEGORICAL___nom_9___95baaeab2": 11178, "15___CATEGORICAL___nom_9___95c14d513": 11179, "15___CATEGORICAL___nom_9___95c2bda7e": 11180, "15___CATEGORICAL___nom_9___95c676f37": 11181, "15___CATEGORICAL___nom_9___95cb8580a": 11182, "15___CATEGORICAL___nom_9___95cf2b1a5": 11183, "15___CATEGORICAL___nom_9___95d144ac2": 11184, "15___CATEGORICAL___nom_9___95d4d7db6": 11185, "15___CATEGORICAL___nom_9___95daf98e0": 11186, "15___CATEGORICAL___nom_9___95db371aa": 11187, "15___CATEGORICAL___nom_9___95dfb421b": 11188, "15___CATEGORICAL___nom_9___95e318a22": 11189, "15___CATEGORICAL___nom_9___95e83124e": 11190, "15___CATEGORICAL___nom_9___95eb51be1": 11191, "15___CATEGORICAL___nom_9___95ed349de": 11192, "15___CATEGORICAL___nom_9___95ee08ed1": 11193, "15___CATEGORICAL___nom_9___95f4f319d": 11194, "15___CATEGORICAL___nom_9___95f52f987": 11195, "15___CATEGORICAL___nom_9___95f73f7b1": 11196, "15___CATEGORICAL___nom_9___95f7720a3": 11197, "15___CATEGORICAL___nom_9___95f9ba619": 11198, "15___CATEGORICAL___nom_9___95fedefb9": 11199, "15___CATEGORICAL___nom_9___96020d47a": 11200, "15___CATEGORICAL___nom_9___9612cf328": 11201, "15___CATEGORICAL___nom_9___96177a79d": 11202, "15___CATEGORICAL___nom_9___961a0597a": 11203, "15___CATEGORICAL___nom_9___963548d2d": 11204, "15___CATEGORICAL___nom_9___963862ba0": 11205, "15___CATEGORICAL___nom_9___963ae1a1f": 11206, "15___CATEGORICAL___nom_9___963d47197": 11207, "15___CATEGORICAL___nom_9___963efd29c": 11208, "15___CATEGORICAL___nom_9___96404f4b9": 11209, "15___CATEGORICAL___nom_9___96419fe5b": 11210, "15___CATEGORICAL___nom_9___96505346d": 11211, "15___CATEGORICAL___nom_9___965358c76": 11212, "15___CATEGORICAL___nom_9___96581c23b": 11213, "15___CATEGORICAL___nom_9___965c12299": 11214, "15___CATEGORICAL___nom_9___966a5de57": 11215, "15___CATEGORICAL___nom_9___96715070f": 11216, "15___CATEGORICAL___nom_9___967503518": 11217, "15___CATEGORICAL___nom_9___967cfa9c9": 11218, "15___CATEGORICAL___nom_9___96863dea9": 11219, "15___CATEGORICAL___nom_9___968b0e0a4": 11220, "15___CATEGORICAL___nom_9___96929a04d": 11221, "15___CATEGORICAL___nom_9___9694eb755": 11222, "15___CATEGORICAL___nom_9___969c8b7dc": 11223, "15___CATEGORICAL___nom_9___96a4ddc1e": 11224, "15___CATEGORICAL___nom_9___96ac6d593": 11225, "15___CATEGORICAL___nom_9___96ad8a101": 11226, "15___CATEGORICAL___nom_9___96b291dcf": 11227, "15___CATEGORICAL___nom_9___96b5dc566": 11228, "15___CATEGORICAL___nom_9___96b80b5d0": 11229, "15___CATEGORICAL___nom_9___96b90e3d4": 11230, "15___CATEGORICAL___nom_9___96bdf37d5": 11231, "15___CATEGORICAL___nom_9___96c0eee4e": 11232, "15___CATEGORICAL___nom_9___96ce228a8": 11233, "15___CATEGORICAL___nom_9___96cec6999": 11234, "15___CATEGORICAL___nom_9___96d00c912": 11235, "15___CATEGORICAL___nom_9___96d8b1901": 11236, "15___CATEGORICAL___nom_9___96dbce6f5": 11237, "15___CATEGORICAL___nom_9___96de3fe2d": 11238, "15___CATEGORICAL___nom_9___96e244ecf": 11239, "15___CATEGORICAL___nom_9___96e49fac5": 11240, "15___CATEGORICAL___nom_9___96eb7f741": 11241, "15___CATEGORICAL___nom_9___96f06661e": 11242, "15___CATEGORICAL___nom_9___96f32d812": 11243, "15___CATEGORICAL___nom_9___96fa3233a": 11244, "15___CATEGORICAL___nom_9___9707f40d4": 11245, "15___CATEGORICAL___nom_9___970f89cbb": 11246, "15___CATEGORICAL___nom_9___970fb150f": 11247, "15___CATEGORICAL___nom_9___971737ca9": 11248, "15___CATEGORICAL___nom_9___971c72d33": 11249, "15___CATEGORICAL___nom_9___973983691": 11250, "15___CATEGORICAL___nom_9___973aba869": 11251, "15___CATEGORICAL___nom_9___973b489bf": 11252, "15___CATEGORICAL___nom_9___974256b5e": 11253, "15___CATEGORICAL___nom_9___9751943b9": 11254, "15___CATEGORICAL___nom_9___9751d4038": 11255, "15___CATEGORICAL___nom_9___975cc5bf1": 11256, "15___CATEGORICAL___nom_9___9761518a3": 11257, "15___CATEGORICAL___nom_9___97616a1ac": 11258, "15___CATEGORICAL___nom_9___976436247": 11259, "15___CATEGORICAL___nom_9___97648af26": 11260, "15___CATEGORICAL___nom_9___9774c55fc": 11261, "15___CATEGORICAL___nom_9___9776f9efd": 11262, "15___CATEGORICAL___nom_9___97797a1d9": 11263, "15___CATEGORICAL___nom_9___977a67955": 11264, "15___CATEGORICAL___nom_9___978c809d0": 11265, "15___CATEGORICAL___nom_9___978cb82bc": 11266, "15___CATEGORICAL___nom_9___97a44f2ba": 11267, "15___CATEGORICAL___nom_9___97a74c04c": 11268, "15___CATEGORICAL___nom_9___97a9a8451": 11269, "15___CATEGORICAL___nom_9___97acc56cd": 11270, "15___CATEGORICAL___nom_9___97b39ccbe": 11271, "15___CATEGORICAL___nom_9___97c1677cc": 11272, "15___CATEGORICAL___nom_9___97c4fc9a2": 11273, "15___CATEGORICAL___nom_9___97c5ebfaa": 11274, "15___CATEGORICAL___nom_9___97c84cf25": 11275, "15___CATEGORICAL___nom_9___97dc59723": 11276, "15___CATEGORICAL___nom_9___97e5b506b": 11277, "15___CATEGORICAL___nom_9___97e6a07f2": 11278, "15___CATEGORICAL___nom_9___97f2a4586": 11279, "15___CATEGORICAL___nom_9___98041af8e": 11280, "15___CATEGORICAL___nom_9___98051c689": 11281, "15___CATEGORICAL___nom_9___98076a1a8": 11282, "15___CATEGORICAL___nom_9___980b20150": 11283, "15___CATEGORICAL___nom_9___9810db07b": 11284, "15___CATEGORICAL___nom_9___981fa0f74": 11285, "15___CATEGORICAL___nom_9___982b377ff": 11286, "15___CATEGORICAL___nom_9___983e3dc77": 11287, "15___CATEGORICAL___nom_9___98419a827": 11288, "15___CATEGORICAL___nom_9___98435f293": 11289, "15___CATEGORICAL___nom_9___984424476": 11290, "15___CATEGORICAL___nom_9___984a0e274": 11291, "15___CATEGORICAL___nom_9___984bed033": 11292, "15___CATEGORICAL___nom_9___984f7dbf7": 11293, "15___CATEGORICAL___nom_9___98517f2a2": 11294, "15___CATEGORICAL___nom_9___985277e91": 11295, "15___CATEGORICAL___nom_9___9857c7370": 11296, "15___CATEGORICAL___nom_9___9859d2867": 11297, "15___CATEGORICAL___nom_9___985dd5319": 11298, "15___CATEGORICAL___nom_9___985eabf13": 11299, "15___CATEGORICAL___nom_9___986657baf": 11300, "15___CATEGORICAL___nom_9___9870f74c2": 11301, "15___CATEGORICAL___nom_9___987f073fa": 11302, "15___CATEGORICAL___nom_9___98847f818": 11303, "15___CATEGORICAL___nom_9___988d61401": 11304, "15___CATEGORICAL___nom_9___9892d8237": 11305, "15___CATEGORICAL___nom_9___989bae1c9": 11306, "15___CATEGORICAL___nom_9___989d40c0f": 11307, "15___CATEGORICAL___nom_9___98a14ca21": 11308, "15___CATEGORICAL___nom_9___98a175e4b": 11309, "15___CATEGORICAL___nom_9___98a80e234": 11310, "15___CATEGORICAL___nom_9___98b6382d5": 11311, "15___CATEGORICAL___nom_9___98b783709": 11312, "15___CATEGORICAL___nom_9___98b9d4cf3": 11313, "15___CATEGORICAL___nom_9___98bbe18e2": 11314, "15___CATEGORICAL___nom_9___98bf5bdc1": 11315, "15___CATEGORICAL___nom_9___98c24a69a": 11316, "15___CATEGORICAL___nom_9___98c7a2beb": 11317, "15___CATEGORICAL___nom_9___98d2f9372": 11318, "15___CATEGORICAL___nom_9___98d6fcd91": 11319, "15___CATEGORICAL___nom_9___98dd537b2": 11320, "15___CATEGORICAL___nom_9___98dd97c71": 11321, "15___CATEGORICAL___nom_9___98e547050": 11322, "15___CATEGORICAL___nom_9___98ee82a0d": 11323, "15___CATEGORICAL___nom_9___98eef06b4": 11324, "15___CATEGORICAL___nom_9___98f35a619": 11325, "15___CATEGORICAL___nom_9___9909caf2a": 11326, "15___CATEGORICAL___nom_9___99110e5f4": 11327, "15___CATEGORICAL___nom_9___991412604": 11328, "15___CATEGORICAL___nom_9___99199ad59": 11329, "15___CATEGORICAL___nom_9___991a24e96": 11330, "15___CATEGORICAL___nom_9___992310e5e": 11331, "15___CATEGORICAL___nom_9___992311ee0": 11332, "15___CATEGORICAL___nom_9___992aa544c": 11333, "15___CATEGORICAL___nom_9___993141c19": 11334, "15___CATEGORICAL___nom_9___993a893af": 11335, "15___CATEGORICAL___nom_9___993b54dac": 11336, "15___CATEGORICAL___nom_9___994987083": 11337, "15___CATEGORICAL___nom_9___994a64bc8": 11338, "15___CATEGORICAL___nom_9___994c96751": 11339, "15___CATEGORICAL___nom_9___994d9c18d": 11340, "15___CATEGORICAL___nom_9___995ed45fd": 11341, "15___CATEGORICAL___nom_9___9963454fc": 11342, "15___CATEGORICAL___nom_9___99641a53c": 11343, "15___CATEGORICAL___nom_9___99657f622": 11344, "15___CATEGORICAL___nom_9___996787db9": 11345, "15___CATEGORICAL___nom_9___996864a4f": 11346, "15___CATEGORICAL___nom_9___996aff165": 11347, "15___CATEGORICAL___nom_9___997298a64": 11348, "15___CATEGORICAL___nom_9___99782c66b": 11349, "15___CATEGORICAL___nom_9___997b2bef3": 11350, "15___CATEGORICAL___nom_9___9980bdfe3": 11351, "15___CATEGORICAL___nom_9___9985551b5": 11352, "15___CATEGORICAL___nom_9___998a2cc73": 11353, "15___CATEGORICAL___nom_9___998b19ecf": 11354, "15___CATEGORICAL___nom_9___9994f748e": 11355, "15___CATEGORICAL___nom_9___99954638d": 11356, "15___CATEGORICAL___nom_9___9995e0e70": 11357, "15___CATEGORICAL___nom_9___9999ef46f": 11358, "15___CATEGORICAL___nom_9___999d8a836": 11359, "15___CATEGORICAL___nom_9___999f4b661": 11360, "15___CATEGORICAL___nom_9___99a15db20": 11361, "15___CATEGORICAL___nom_9___99a54d271": 11362, "15___CATEGORICAL___nom_9___99b9d5e33": 11363, "15___CATEGORICAL___nom_9___99ba4711d": 11364, "15___CATEGORICAL___nom_9___99ba7880b": 11365, "15___CATEGORICAL___nom_9___99c5f8a87": 11366, "15___CATEGORICAL___nom_9___99cf2829f": 11367, "15___CATEGORICAL___nom_9___99cf4c03b": 11368, "15___CATEGORICAL___nom_9___99f43a1fd": 11369, "15___CATEGORICAL___nom_9___99f747c71": 11370, "15___CATEGORICAL___nom_9___99f8ba45d": 11371, "15___CATEGORICAL___nom_9___9a02934f9": 11372, "15___CATEGORICAL___nom_9___9a121af53": 11373, "15___CATEGORICAL___nom_9___9a196d946": 11374, "15___CATEGORICAL___nom_9___9a1c36181": 11375, "15___CATEGORICAL___nom_9___9a204dc95": 11376, "15___CATEGORICAL___nom_9___9a20a6893": 11377, "15___CATEGORICAL___nom_9___9a22cba51": 11378, "15___CATEGORICAL___nom_9___9a30cee7c": 11379, "15___CATEGORICAL___nom_9___9a34978fd": 11380, "15___CATEGORICAL___nom_9___9a34eda5e": 11381, "15___CATEGORICAL___nom_9___9a4207c92": 11382, "15___CATEGORICAL___nom_9___9a43e4f89": 11383, "15___CATEGORICAL___nom_9___9a4a19b22": 11384, "15___CATEGORICAL___nom_9___9a565dd5e": 11385, "15___CATEGORICAL___nom_9___9a599396e": 11386, "15___CATEGORICAL___nom_9___9a5fcb968": 11387, "15___CATEGORICAL___nom_9___9a705a3bf": 11388, "15___CATEGORICAL___nom_9___9a7c603c8": 11389, "15___CATEGORICAL___nom_9___9a7cc3894": 11390, "15___CATEGORICAL___nom_9___9a81e9f07": 11391, "15___CATEGORICAL___nom_9___9a82f5236": 11392, "15___CATEGORICAL___nom_9___9a8ace193": 11393, "15___CATEGORICAL___nom_9___9a918c134": 11394, "15___CATEGORICAL___nom_9___9a9240481": 11395, "15___CATEGORICAL___nom_9___9a924c48a": 11396, "15___CATEGORICAL___nom_9___9a93bd265": 11397, "15___CATEGORICAL___nom_9___9a996a8e7": 11398, "15___CATEGORICAL___nom_9___9a9f99de7": 11399, "15___CATEGORICAL___nom_9___9aacce3b4": 11400, "15___CATEGORICAL___nom_9___9ab4b4f0d": 11401, "15___CATEGORICAL___nom_9___9ac6bb6a1": 11402, "15___CATEGORICAL___nom_9___9ad2af48a": 11403, "15___CATEGORICAL___nom_9___9ad71159b": 11404, "15___CATEGORICAL___nom_9___9ad7156ae": 11405, "15___CATEGORICAL___nom_9___9adca20e2": 11406, "15___CATEGORICAL___nom_9___9ae826168": 11407, "15___CATEGORICAL___nom_9___9aeb09ed9": 11408, "15___CATEGORICAL___nom_9___9af5aca6d": 11409, "15___CATEGORICAL___nom_9___9af72c332": 11410, "15___CATEGORICAL___nom_9___9afa2d9f2": 11411, "15___CATEGORICAL___nom_9___9affdfed5": 11412, "15___CATEGORICAL___nom_9___9b04df18e": 11413, "15___CATEGORICAL___nom_9___9b04e9bf4": 11414, "15___CATEGORICAL___nom_9___9b076f400": 11415, "15___CATEGORICAL___nom_9___9b0772642": 11416, "15___CATEGORICAL___nom_9___9b0d8a2f3": 11417, "15___CATEGORICAL___nom_9___9b0e00572": 11418, "15___CATEGORICAL___nom_9___9b0f5a687": 11419, "15___CATEGORICAL___nom_9___9b1570ce2": 11420, "15___CATEGORICAL___nom_9___9b15aa5f0": 11421, "15___CATEGORICAL___nom_9___9b1f38033": 11422, "15___CATEGORICAL___nom_9___9b2e22bf2": 11423, "15___CATEGORICAL___nom_9___9b317992d": 11424, "15___CATEGORICAL___nom_9___9b357b911": 11425, "15___CATEGORICAL___nom_9___9b4435d65": 11426, "15___CATEGORICAL___nom_9___9b4c31d70": 11427, "15___CATEGORICAL___nom_9___9b50161f2": 11428, "15___CATEGORICAL___nom_9___9b58f6d6f": 11429, "15___CATEGORICAL___nom_9___9b5a2a638": 11430, "15___CATEGORICAL___nom_9___9b72b75e7": 11431, "15___CATEGORICAL___nom_9___9b736bf38": 11432, "15___CATEGORICAL___nom_9___9b7aaef8b": 11433, "15___CATEGORICAL___nom_9___9b7ac0ff8": 11434, "15___CATEGORICAL___nom_9___9b81d4507": 11435, "15___CATEGORICAL___nom_9___9b841aa7e": 11436, "15___CATEGORICAL___nom_9___9b85b85c9": 11437, "15___CATEGORICAL___nom_9___9b87b3177": 11438, "15___CATEGORICAL___nom_9___9b89f196e": 11439, "15___CATEGORICAL___nom_9___9b8b27e9c": 11440, "15___CATEGORICAL___nom_9___9b9076c53": 11441, "15___CATEGORICAL___nom_9___9b93f569b": 11442, "15___CATEGORICAL___nom_9___9b951b1ea": 11443, "15___CATEGORICAL___nom_9___9b9ad19ba": 11444, "15___CATEGORICAL___nom_9___9b9fb67c3": 11445, "15___CATEGORICAL___nom_9___9ba29c7f6": 11446, "15___CATEGORICAL___nom_9___9ba407912": 11447, "15___CATEGORICAL___nom_9___9ba4f4a5d": 11448, "15___CATEGORICAL___nom_9___9ba7ca243": 11449, "15___CATEGORICAL___nom_9___9ba89ecf5": 11450, "15___CATEGORICAL___nom_9___9baf9fa58": 11451, "15___CATEGORICAL___nom_9___9bafd82ed": 11452, "15___CATEGORICAL___nom_9___9bb6ccfd2": 11453, "15___CATEGORICAL___nom_9___9bb792d2c": 11454, "15___CATEGORICAL___nom_9___9bbdbd867": 11455, "15___CATEGORICAL___nom_9___9bbf75daa": 11456, "15___CATEGORICAL___nom_9___9bc26680e": 11457, "15___CATEGORICAL___nom_9___9bd51c0ff": 11458, "15___CATEGORICAL___nom_9___9beb42d5e": 11459, "15___CATEGORICAL___nom_9___9bf767d66": 11460, "15___CATEGORICAL___nom_9___9bfcdfc9e": 11461, "15___CATEGORICAL___nom_9___9bfe58cef": 11462, "15___CATEGORICAL___nom_9___9c1cb968f": 11463, "15___CATEGORICAL___nom_9___9c1d95f3d": 11464, "15___CATEGORICAL___nom_9___9c2221957": 11465, "15___CATEGORICAL___nom_9___9c224f8f8": 11466, "15___CATEGORICAL___nom_9___9c2aa4c2b": 11467, "15___CATEGORICAL___nom_9___9c33a318c": 11468, "15___CATEGORICAL___nom_9___9c376bf93": 11469, "15___CATEGORICAL___nom_9___9c4213a50": 11470, "15___CATEGORICAL___nom_9___9c4c58b08": 11471, "15___CATEGORICAL___nom_9___9c5190350": 11472, "15___CATEGORICAL___nom_9___9c564513c": 11473, "15___CATEGORICAL___nom_9___9c581a38e": 11474, "15___CATEGORICAL___nom_9___9c58f3be5": 11475, "15___CATEGORICAL___nom_9___9c626b57c": 11476, "15___CATEGORICAL___nom_9___9c669b4bb": 11477, "15___CATEGORICAL___nom_9___9c67f9f5c": 11478, "15___CATEGORICAL___nom_9___9c689240f": 11479, "15___CATEGORICAL___nom_9___9c702a65d": 11480, "15___CATEGORICAL___nom_9___9c7dea737": 11481, "15___CATEGORICAL___nom_9___9c8867b11": 11482, "15___CATEGORICAL___nom_9___9c9195c6a": 11483, "15___CATEGORICAL___nom_9___9c9761bda": 11484, "15___CATEGORICAL___nom_9___9ca26b6f2": 11485, "15___CATEGORICAL___nom_9___9ca3a8410": 11486, "15___CATEGORICAL___nom_9___9ca7ba537": 11487, "15___CATEGORICAL___nom_9___9cb00e907": 11488, "15___CATEGORICAL___nom_9___9cbe60451": 11489, "15___CATEGORICAL___nom_9___9ccd1e1be": 11490, "15___CATEGORICAL___nom_9___9cce06270": 11491, "15___CATEGORICAL___nom_9___9cd56b510": 11492, "15___CATEGORICAL___nom_9___9cd9ff85f": 11493, "15___CATEGORICAL___nom_9___9cda6d24e": 11494, "15___CATEGORICAL___nom_9___9cdfbf106": 11495, "15___CATEGORICAL___nom_9___9ce0ae1fc": 11496, "15___CATEGORICAL___nom_9___9ce363e9b": 11497, "15___CATEGORICAL___nom_9___9ce4120ec": 11498, "15___CATEGORICAL___nom_9___9ceeff82e": 11499, "15___CATEGORICAL___nom_9___9cf1ae905": 11500, "15___CATEGORICAL___nom_9___9cf4186f8": 11501, "15___CATEGORICAL___nom_9___9cf6aab66": 11502, "15___CATEGORICAL___nom_9___9cfc3d704": 11503, "15___CATEGORICAL___nom_9___9d0d5faaa": 11504, "15___CATEGORICAL___nom_9___9d11655dd": 11505, "15___CATEGORICAL___nom_9___9d122488c": 11506, "15___CATEGORICAL___nom_9___9d148934b": 11507, "15___CATEGORICAL___nom_9___9d1f12146": 11508, "15___CATEGORICAL___nom_9___9d2140d3c": 11509, "15___CATEGORICAL___nom_9___9d22e8f25": 11510, "15___CATEGORICAL___nom_9___9d28c2b7d": 11511, "15___CATEGORICAL___nom_9___9d3522a65": 11512, "15___CATEGORICAL___nom_9___9d356988b": 11513, "15___CATEGORICAL___nom_9___9d3ac8bca": 11514, "15___CATEGORICAL___nom_9___9d3fdeba4": 11515, "15___CATEGORICAL___nom_9___9d448f648": 11516, "15___CATEGORICAL___nom_9___9d49470e5": 11517, "15___CATEGORICAL___nom_9___9d4cfcaa5": 11518, "15___CATEGORICAL___nom_9___9d5260719": 11519, "15___CATEGORICAL___nom_9___9d52ffe85": 11520, "15___CATEGORICAL___nom_9___9d606e500": 11521, "15___CATEGORICAL___nom_9___9d64ea773": 11522, "15___CATEGORICAL___nom_9___9d6520a62": 11523, "15___CATEGORICAL___nom_9___9d66eab43": 11524, "15___CATEGORICAL___nom_9___9d6daf5c2": 11525, "15___CATEGORICAL___nom_9___9d769b9fa": 11526, "15___CATEGORICAL___nom_9___9d77edd12": 11527, "15___CATEGORICAL___nom_9___9d7b42846": 11528, "15___CATEGORICAL___nom_9___9d91e6549": 11529, "15___CATEGORICAL___nom_9___9d969761b": 11530, "15___CATEGORICAL___nom_9___9d996741f": 11531, "15___CATEGORICAL___nom_9___9d9dbdc26": 11532, "15___CATEGORICAL___nom_9___9da45dbca": 11533, "15___CATEGORICAL___nom_9___9da72939b": 11534, "15___CATEGORICAL___nom_9___9da79ddd8": 11535, "15___CATEGORICAL___nom_9___9db28cc6a": 11536, "15___CATEGORICAL___nom_9___9db9b0408": 11537, "15___CATEGORICAL___nom_9___9dba93fae": 11538, "15___CATEGORICAL___nom_9___9dbc8471e": 11539, "15___CATEGORICAL___nom_9___9dc653c31": 11540, "15___CATEGORICAL___nom_9___9dc708e2d": 11541, "15___CATEGORICAL___nom_9___9dcec2bdb": 11542, "15___CATEGORICAL___nom_9___9dd26ab26": 11543, "15___CATEGORICAL___nom_9___9dd375c81": 11544, "15___CATEGORICAL___nom_9___9dd4fb55e": 11545, "15___CATEGORICAL___nom_9___9dd6ad2d3": 11546, "15___CATEGORICAL___nom_9___9ddce3152": 11547, "15___CATEGORICAL___nom_9___9ddf6efb0": 11548, "15___CATEGORICAL___nom_9___9de97a261": 11549, "15___CATEGORICAL___nom_9___9de9c9eac": 11550, "15___CATEGORICAL___nom_9___9decf7bd6": 11551, "15___CATEGORICAL___nom_9___9df253904": 11552, "15___CATEGORICAL___nom_9___9dfe16047": 11553, "15___CATEGORICAL___nom_9___9e05f2967": 11554, "15___CATEGORICAL___nom_9___9e071dbf9": 11555, "15___CATEGORICAL___nom_9___9e0d41ae1": 11556, "15___CATEGORICAL___nom_9___9e0d9650e": 11557, "15___CATEGORICAL___nom_9___9e100f0d7": 11558, "15___CATEGORICAL___nom_9___9e132bf81": 11559, "15___CATEGORICAL___nom_9___9e16fbdf9": 11560, "15___CATEGORICAL___nom_9___9e19f60b6": 11561, "15___CATEGORICAL___nom_9___9e1b56a06": 11562, "15___CATEGORICAL___nom_9___9e251ab16": 11563, "15___CATEGORICAL___nom_9___9e269f63a": 11564, "15___CATEGORICAL___nom_9___9e2a36241": 11565, "15___CATEGORICAL___nom_9___9e2b7b9f7": 11566, "15___CATEGORICAL___nom_9___9e2f17f89": 11567, "15___CATEGORICAL___nom_9___9e31893fa": 11568, "15___CATEGORICAL___nom_9___9e33d5bd7": 11569, "15___CATEGORICAL___nom_9___9e36a57fc": 11570, "15___CATEGORICAL___nom_9___9e3c2b070": 11571, "15___CATEGORICAL___nom_9___9e3d355c4": 11572, "15___CATEGORICAL___nom_9___9e437948a": 11573, "15___CATEGORICAL___nom_9___9e4b32d7e": 11574, "15___CATEGORICAL___nom_9___9e4c99a0d": 11575, "15___CATEGORICAL___nom_9___9e545f11b": 11576, "15___CATEGORICAL___nom_9___9e560079d": 11577, "15___CATEGORICAL___nom_9___9e5eff378": 11578, "15___CATEGORICAL___nom_9___9e6b0d16e": 11579, "15___CATEGORICAL___nom_9___9e728fbed": 11580, "15___CATEGORICAL___nom_9___9e7a02a99": 11581, "15___CATEGORICAL___nom_9___9e7ec03c1": 11582, "15___CATEGORICAL___nom_9___9e8229531": 11583, "15___CATEGORICAL___nom_9___9e86fef78": 11584, "15___CATEGORICAL___nom_9___9e8bf8e95": 11585, "15___CATEGORICAL___nom_9___9e9225850": 11586, "15___CATEGORICAL___nom_9___9e9b392a8": 11587, "15___CATEGORICAL___nom_9___9ea3057ec": 11588, "15___CATEGORICAL___nom_9___9eb081a81": 11589, "15___CATEGORICAL___nom_9___9eb327a9a": 11590, "15___CATEGORICAL___nom_9___9ebd870ea": 11591, "15___CATEGORICAL___nom_9___9ebeb6609": 11592, "15___CATEGORICAL___nom_9___9ec8771ec": 11593, "15___CATEGORICAL___nom_9___9ec93034f": 11594, "15___CATEGORICAL___nom_9___9ecf5cb67": 11595, "15___CATEGORICAL___nom_9___9ee03cd1d": 11596, "15___CATEGORICAL___nom_9___9ee0887b0": 11597, "15___CATEGORICAL___nom_9___9ee16c1da": 11598, "15___CATEGORICAL___nom_9___9ee1f6239": 11599, "15___CATEGORICAL___nom_9___9ee2c8b58": 11600, "15___CATEGORICAL___nom_9___9eee46b83": 11601, "15___CATEGORICAL___nom_9___9ef8531ab": 11602, "15___CATEGORICAL___nom_9___9ef92ab4c": 11603, "15___CATEGORICAL___nom_9___9f0110647": 11604, "15___CATEGORICAL___nom_9___9f05e17af": 11605, "15___CATEGORICAL___nom_9___9f0bed26c": 11606, "15___CATEGORICAL___nom_9___9f107aa88": 11607, "15___CATEGORICAL___nom_9___9f17c420a": 11608, "15___CATEGORICAL___nom_9___9f1958d21": 11609, "15___CATEGORICAL___nom_9___9f2dec0b7": 11610, "15___CATEGORICAL___nom_9___9f383bc69": 11611, "15___CATEGORICAL___nom_9___9f40a3f3a": 11612, "15___CATEGORICAL___nom_9___9f4a6b314": 11613, "15___CATEGORICAL___nom_9___9f4c62a84": 11614, "15___CATEGORICAL___nom_9___9f666ec5d": 11615, "15___CATEGORICAL___nom_9___9f6a22957": 11616, "15___CATEGORICAL___nom_9___9f6a34c80": 11617, "15___CATEGORICAL___nom_9___9f6f40260": 11618, "15___CATEGORICAL___nom_9___9f76e1626": 11619, "15___CATEGORICAL___nom_9___9f77e4fc6": 11620, "15___CATEGORICAL___nom_9___9f78b1d34": 11621, "15___CATEGORICAL___nom_9___9f7a9d14b": 11622, "15___CATEGORICAL___nom_9___9f7d00049": 11623, "15___CATEGORICAL___nom_9___9f7e8c5b6": 11624, "15___CATEGORICAL___nom_9___9f8a5bc9c": 11625, "15___CATEGORICAL___nom_9___9f8d0b6e6": 11626, "15___CATEGORICAL___nom_9___9f8e28d99": 11627, "15___CATEGORICAL___nom_9___9f97d706a": 11628, "15___CATEGORICAL___nom_9___9f9937561": 11629, "15___CATEGORICAL___nom_9___9fa4b5bb0": 11630, "15___CATEGORICAL___nom_9___9fa66feed": 11631, "15___CATEGORICAL___nom_9___9fab706ab": 11632, "15___CATEGORICAL___nom_9___9fae99034": 11633, "15___CATEGORICAL___nom_9___9fafdb3b6": 11634, "15___CATEGORICAL___nom_9___9fb292402": 11635, "15___CATEGORICAL___nom_9___9fb43781d": 11636, "15___CATEGORICAL___nom_9___9fb6f1e11": 11637, "15___CATEGORICAL___nom_9___9fb9757cd": 11638, "15___CATEGORICAL___nom_9___9fbae6191": 11639, "15___CATEGORICAL___nom_9___9fbd214f0": 11640, "15___CATEGORICAL___nom_9___9fc935d57": 11641, "15___CATEGORICAL___nom_9___9fcc70762": 11642, "15___CATEGORICAL___nom_9___9fd7919c4": 11643, "15___CATEGORICAL___nom_9___9fda80b78": 11644, "15___CATEGORICAL___nom_9___9fdaa0973": 11645, "15___CATEGORICAL___nom_9___9fddc642c": 11646, "15___CATEGORICAL___nom_9___9fde24fd9": 11647, "15___CATEGORICAL___nom_9___9fe51d587": 11648, "15___CATEGORICAL___nom_9___9fe7bc820": 11649, "15___CATEGORICAL___nom_9___9fe85fde5": 11650, "15___CATEGORICAL___nom_9___9fe90da91": 11651, "15___CATEGORICAL___nom_9___9fec32759": 11652, "15___CATEGORICAL___nom_9___9fef9ed75": 11653, "15___CATEGORICAL___nom_9___9ff13800a": 11654, "15___CATEGORICAL___nom_9___a0002ede1": 11655, "15___CATEGORICAL___nom_9___a00801e78": 11656, "15___CATEGORICAL___nom_9___a010945cf": 11657, "15___CATEGORICAL___nom_9___a01ef2cef": 11658, "15___CATEGORICAL___nom_9___a028d1d9a": 11659, "15___CATEGORICAL___nom_9___a03340746": 11660, "15___CATEGORICAL___nom_9___a03ab14f9": 11661, "15___CATEGORICAL___nom_9___a03cc8c1f": 11662, "15___CATEGORICAL___nom_9___a03dedfda": 11663, "15___CATEGORICAL___nom_9___a057874df": 11664, "15___CATEGORICAL___nom_9___a06716225": 11665, "15___CATEGORICAL___nom_9___a071122eb": 11666, "15___CATEGORICAL___nom_9___a08252ae1": 11667, "15___CATEGORICAL___nom_9___a08985321": 11668, "15___CATEGORICAL___nom_9___a08d2742c": 11669, "15___CATEGORICAL___nom_9___a0954566d": 11670, "15___CATEGORICAL___nom_9___a097e6b7d": 11671, "15___CATEGORICAL___nom_9___a09953990": 11672, "15___CATEGORICAL___nom_9___a09b429a4": 11673, "15___CATEGORICAL___nom_9___a09bcc901": 11674, "15___CATEGORICAL___nom_9___a0a3a0f18": 11675, "15___CATEGORICAL___nom_9___a0ad903c0": 11676, "15___CATEGORICAL___nom_9___a0b386aeb": 11677, "15___CATEGORICAL___nom_9___a0b75e727": 11678, "15___CATEGORICAL___nom_9___a0c7f06f1": 11679, "15___CATEGORICAL___nom_9___a0c9b6f0f": 11680, "15___CATEGORICAL___nom_9___a0e4207b7": 11681, "15___CATEGORICAL___nom_9___a0e5f75f1": 11682, "15___CATEGORICAL___nom_9___a0e629dad": 11683, "15___CATEGORICAL___nom_9___a0ef97e39": 11684, "15___CATEGORICAL___nom_9___a0efb7424": 11685, "15___CATEGORICAL___nom_9___a0fc4d249": 11686, "15___CATEGORICAL___nom_9___a0ffcd091": 11687, "15___CATEGORICAL___nom_9___a10514d2e": 11688, "15___CATEGORICAL___nom_9___a106fdac6": 11689, "15___CATEGORICAL___nom_9___a1083e30a": 11690, "15___CATEGORICAL___nom_9___a10a7734e": 11691, "15___CATEGORICAL___nom_9___a1132c729": 11692, "15___CATEGORICAL___nom_9___a11e40db0": 11693, "15___CATEGORICAL___nom_9___a11fd38fe": 11694, "15___CATEGORICAL___nom_9___a122cf517": 11695, "15___CATEGORICAL___nom_9___a123aac8c": 11696, "15___CATEGORICAL___nom_9___a12505b67": 11697, "15___CATEGORICAL___nom_9___a125fa858": 11698, "15___CATEGORICAL___nom_9___a12935e1b": 11699, "15___CATEGORICAL___nom_9___a12bdd9c8": 11700, "15___CATEGORICAL___nom_9___a13ca95ca": 11701, "15___CATEGORICAL___nom_9___a13d3105c": 11702, "15___CATEGORICAL___nom_9___a1425588b": 11703, "15___CATEGORICAL___nom_9___a1482b02e": 11704, "15___CATEGORICAL___nom_9___a1494cdf4": 11705, "15___CATEGORICAL___nom_9___a15668e7a": 11706, "15___CATEGORICAL___nom_9___a15a99e4a": 11707, "15___CATEGORICAL___nom_9___a15d3acda": 11708, "15___CATEGORICAL___nom_9___a1643d4d4": 11709, "15___CATEGORICAL___nom_9___a16b1d8cd": 11710, "15___CATEGORICAL___nom_9___a16b767d0": 11711, "15___CATEGORICAL___nom_9___a16bcc750": 11712, "15___CATEGORICAL___nom_9___a185532ab": 11713, "15___CATEGORICAL___nom_9___a187ef6e1": 11714, "15___CATEGORICAL___nom_9___a1884a1b9": 11715, "15___CATEGORICAL___nom_9___a18d2aa19": 11716, "15___CATEGORICAL___nom_9___a19157aa8": 11717, "15___CATEGORICAL___nom_9___a1922a68c": 11718, "15___CATEGORICAL___nom_9___a19b63da5": 11719, "15___CATEGORICAL___nom_9___a1a1b1f28": 11720, "15___CATEGORICAL___nom_9___a1a24c168": 11721, "15___CATEGORICAL___nom_9___a1ae4586b": 11722, "15___CATEGORICAL___nom_9___a1af4cf1d": 11723, "15___CATEGORICAL___nom_9___a1afe91df": 11724, "15___CATEGORICAL___nom_9___a1b41f993": 11725, "15___CATEGORICAL___nom_9___a1b52416b": 11726, "15___CATEGORICAL___nom_9___a1b87d416": 11727, "15___CATEGORICAL___nom_9___a1badc9c5": 11728, "15___CATEGORICAL___nom_9___a1c369472": 11729, "15___CATEGORICAL___nom_9___a1c83bcd3": 11730, "15___CATEGORICAL___nom_9___a1d1bdad7": 11731, "15___CATEGORICAL___nom_9___a1d23b123": 11732, "15___CATEGORICAL___nom_9___a1d7f7274": 11733, "15___CATEGORICAL___nom_9___a1d8df637": 11734, "15___CATEGORICAL___nom_9___a1ea14ce8": 11735, "15___CATEGORICAL___nom_9___a1eb9754b": 11736, "15___CATEGORICAL___nom_9___a1ebb8194": 11737, "15___CATEGORICAL___nom_9___a1f033ca4": 11738, "15___CATEGORICAL___nom_9___a1f66284b": 11739, "15___CATEGORICAL___nom_9___a1f87257d": 11740, "15___CATEGORICAL___nom_9___a1f8ae96a": 11741, "15___CATEGORICAL___nom_9___a1fec8984": 11742, "15___CATEGORICAL___nom_9___a1fed290d": 11743, "15___CATEGORICAL___nom_9___a20873426": 11744, "15___CATEGORICAL___nom_9___a21238386": 11745, "15___CATEGORICAL___nom_9___a224142d1": 11746, "15___CATEGORICAL___nom_9___a2292fca0": 11747, "15___CATEGORICAL___nom_9___a229e06b4": 11748, "15___CATEGORICAL___nom_9___a22a38a22": 11749, "15___CATEGORICAL___nom_9___a22c85f21": 11750, "15___CATEGORICAL___nom_9___a232004fa": 11751, "15___CATEGORICAL___nom_9___a2365f5ac": 11752, "15___CATEGORICAL___nom_9___a23af3720": 11753, "15___CATEGORICAL___nom_9___a2471fd44": 11754, "15___CATEGORICAL___nom_9___a249a5bcc": 11755, "15___CATEGORICAL___nom_9___a25c408a1": 11756, "15___CATEGORICAL___nom_9___a25e2c4a6": 11757, "15___CATEGORICAL___nom_9___a25f77c1e": 11758, "15___CATEGORICAL___nom_9___a26022b6a": 11759, "15___CATEGORICAL___nom_9___a26332629": 11760, "15___CATEGORICAL___nom_9___a2633a7ac": 11761, "15___CATEGORICAL___nom_9___a26409255": 11762, "15___CATEGORICAL___nom_9___a26460932": 11763, "15___CATEGORICAL___nom_9___a265878f5": 11764, "15___CATEGORICAL___nom_9___a266712f2": 11765, "15___CATEGORICAL___nom_9___a269d5e52": 11766, "15___CATEGORICAL___nom_9___a26cd976c": 11767, "15___CATEGORICAL___nom_9___a26dbe1a3": 11768, "15___CATEGORICAL___nom_9___a2726b7d8": 11769, "15___CATEGORICAL___nom_9___a2740319d": 11770, "15___CATEGORICAL___nom_9___a28111637": 11771, "15___CATEGORICAL___nom_9___a284ff9c2": 11772, "15___CATEGORICAL___nom_9___a28989ee9": 11773, "15___CATEGORICAL___nom_9___a28d07431": 11774, "15___CATEGORICAL___nom_9___a2963fcad": 11775, "15___CATEGORICAL___nom_9___a299efc1c": 11776, "15___CATEGORICAL___nom_9___a29b64e6a": 11777, "15___CATEGORICAL___nom_9___a29c0449c": 11778, "15___CATEGORICAL___nom_9___a2a83b793": 11779, "15___CATEGORICAL___nom_9___a2aab8197": 11780, "15___CATEGORICAL___nom_9___a2b30612e": 11781, "15___CATEGORICAL___nom_9___a2b7534bf": 11782, "15___CATEGORICAL___nom_9___a2b8b85ac": 11783, "15___CATEGORICAL___nom_9___a2ba1b7ce": 11784, "15___CATEGORICAL___nom_9___a2cb3d08e": 11785, "15___CATEGORICAL___nom_9___a2dc013dd": 11786, "15___CATEGORICAL___nom_9___a2ee0d4d8": 11787, "15___CATEGORICAL___nom_9___a2f73ff75": 11788, "15___CATEGORICAL___nom_9___a2fc32801": 11789, "15___CATEGORICAL___nom_9___a3051b778": 11790, "15___CATEGORICAL___nom_9___a30787d44": 11791, "15___CATEGORICAL___nom_9___a316557bb": 11792, "15___CATEGORICAL___nom_9___a31b4580c": 11793, "15___CATEGORICAL___nom_9___a3239454d": 11794, "15___CATEGORICAL___nom_9___a32a719f2": 11795, "15___CATEGORICAL___nom_9___a3409a0da": 11796, "15___CATEGORICAL___nom_9___a35486729": 11797, "15___CATEGORICAL___nom_9___a356dd526": 11798, "15___CATEGORICAL___nom_9___a357a88d1": 11799, "15___CATEGORICAL___nom_9___a3667c807": 11800, "15___CATEGORICAL___nom_9___a373b6f81": 11801, "15___CATEGORICAL___nom_9___a37d95ec8": 11802, "15___CATEGORICAL___nom_9___a37ea5d0c": 11803, "15___CATEGORICAL___nom_9___a383c93be": 11804, "15___CATEGORICAL___nom_9___a38c00e48": 11805, "15___CATEGORICAL___nom_9___a39d56c78": 11806, "15___CATEGORICAL___nom_9___a39d86d39": 11807, "15___CATEGORICAL___nom_9___a39fa137a": 11808, "15___CATEGORICAL___nom_9___a3a1e9d42": 11809, "15___CATEGORICAL___nom_9___a3a41e8f2": 11810, "15___CATEGORICAL___nom_9___a3a4772c7": 11811, "15___CATEGORICAL___nom_9___a3ab6d700": 11812, "15___CATEGORICAL___nom_9___a3ad33fe9": 11813, "15___CATEGORICAL___nom_9___a3af6c11e": 11814, "15___CATEGORICAL___nom_9___a3ba6dd45": 11815, "15___CATEGORICAL___nom_9___a3cea6bc2": 11816, "15___CATEGORICAL___nom_9___a3d7e2a59": 11817, "15___CATEGORICAL___nom_9___a3e041b20": 11818, "15___CATEGORICAL___nom_9___a3e6bfe3a": 11819, "15___CATEGORICAL___nom_9___a3eb1f0b8": 11820, "15___CATEGORICAL___nom_9___a3ef0b932": 11821, "15___CATEGORICAL___nom_9___a400e392b": 11822, "15___CATEGORICAL___nom_9___a4011e9a0": 11823, "15___CATEGORICAL___nom_9___a407bc4f5": 11824, "15___CATEGORICAL___nom_9___a421d226c": 11825, "15___CATEGORICAL___nom_9___a429e63b6": 11826, "15___CATEGORICAL___nom_9___a42a30564": 11827, "15___CATEGORICAL___nom_9___a42b80c1d": 11828, "15___CATEGORICAL___nom_9___a4322313e": 11829, "15___CATEGORICAL___nom_9___a43e1fbca": 11830, "15___CATEGORICAL___nom_9___a4411c5ab": 11831, "15___CATEGORICAL___nom_9___a442b7ab6": 11832, "15___CATEGORICAL___nom_9___a444d152e": 11833, "15___CATEGORICAL___nom_9___a446077e9": 11834, "15___CATEGORICAL___nom_9___a446266d3": 11835, "15___CATEGORICAL___nom_9___a448950b7": 11836, "15___CATEGORICAL___nom_9___a44b2f07b": 11837, "15___CATEGORICAL___nom_9___a44e7169d": 11838, "15___CATEGORICAL___nom_9___a451d30cc": 11839, "15___CATEGORICAL___nom_9___a459654c5": 11840, "15___CATEGORICAL___nom_9___a45a3489d": 11841, "15___CATEGORICAL___nom_9___a4614d544": 11842, "15___CATEGORICAL___nom_9___a47518a03": 11843, "15___CATEGORICAL___nom_9___a480fda21": 11844, "15___CATEGORICAL___nom_9___a490d8cfa": 11845, "15___CATEGORICAL___nom_9___a49283885": 11846, "15___CATEGORICAL___nom_9___a4929f87b": 11847, "15___CATEGORICAL___nom_9___a497e7f7f": 11848, "15___CATEGORICAL___nom_9___a49bde079": 11849, "15___CATEGORICAL___nom_9___a49e2805b": 11850, "15___CATEGORICAL___nom_9___a49e41d63": 11851, "15___CATEGORICAL___nom_9___a4a478d94": 11852, "15___CATEGORICAL___nom_9___a4a6d4fab": 11853, "15___CATEGORICAL___nom_9___a4ade88b6": 11854, "15___CATEGORICAL___nom_9___a4b12f57e": 11855, "15___CATEGORICAL___nom_9___a4b4a06a4": 11856, "15___CATEGORICAL___nom_9___a4b6df577": 11857, "15___CATEGORICAL___nom_9___a4bbe8aad": 11858, "15___CATEGORICAL___nom_9___a4c2401e4": 11859, "15___CATEGORICAL___nom_9___a4c8a744b": 11860, "15___CATEGORICAL___nom_9___a4d4d2d09": 11861, "15___CATEGORICAL___nom_9___a4d6d8f1e": 11862, "15___CATEGORICAL___nom_9___a4d83dcfb": 11863, "15___CATEGORICAL___nom_9___a4dc03730": 11864, "15___CATEGORICAL___nom_9___a4dcdea3b": 11865, "15___CATEGORICAL___nom_9___a4dd89308": 11866, "15___CATEGORICAL___nom_9___a4e4f70c9": 11867, "15___CATEGORICAL___nom_9___a4f249497": 11868, "15___CATEGORICAL___nom_9___a4fade98a": 11869, "15___CATEGORICAL___nom_9___a4fb6b3c9": 11870, "15___CATEGORICAL___nom_9___a50d4a697": 11871, "15___CATEGORICAL___nom_9___a50e05459": 11872, "15___CATEGORICAL___nom_9___a515b93c8": 11873, "15___CATEGORICAL___nom_9___a5203a5fe": 11874, "15___CATEGORICAL___nom_9___a52495a7b": 11875, "15___CATEGORICAL___nom_9___a52b31d1a": 11876, "15___CATEGORICAL___nom_9___a52eda91d": 11877, "15___CATEGORICAL___nom_9___a542319ea": 11878, "15___CATEGORICAL___nom_9___a5492d7e5": 11879, "15___CATEGORICAL___nom_9___a54da74c0": 11880, "15___CATEGORICAL___nom_9___a54fc5913": 11881, "15___CATEGORICAL___nom_9___a5551df92": 11882, "15___CATEGORICAL___nom_9___a557709bc": 11883, "15___CATEGORICAL___nom_9___a5590f67e": 11884, "15___CATEGORICAL___nom_9___a562c01e2": 11885, "15___CATEGORICAL___nom_9___a5635a276": 11886, "15___CATEGORICAL___nom_9___a56653831": 11887, "15___CATEGORICAL___nom_9___a56698b84": 11888, "15___CATEGORICAL___nom_9___a56c3592b": 11889, "15___CATEGORICAL___nom_9___a57513e46": 11890, "15___CATEGORICAL___nom_9___a5777c54b": 11891, "15___CATEGORICAL___nom_9___a58018e98": 11892, "15___CATEGORICAL___nom_9___a58daac2c": 11893, "15___CATEGORICAL___nom_9___a592faad4": 11894, "15___CATEGORICAL___nom_9___a5949374d": 11895, "15___CATEGORICAL___nom_9___a59b9df74": 11896, "15___CATEGORICAL___nom_9___a59c32bfb": 11897, "15___CATEGORICAL___nom_9___a59d136a3": 11898, "15___CATEGORICAL___nom_9___a59d68c87": 11899, "15___CATEGORICAL___nom_9___a5a364b40": 11900, "15___CATEGORICAL___nom_9___a5ad15b13": 11901, "15___CATEGORICAL___nom_9___a5b8da072": 11902, "15___CATEGORICAL___nom_9___a5c696134": 11903, "15___CATEGORICAL___nom_9___a5cb24580": 11904, "15___CATEGORICAL___nom_9___a5d1ddd75": 11905, "15___CATEGORICAL___nom_9___a5dc144e1": 11906, "15___CATEGORICAL___nom_9___a5dfb79de": 11907, "15___CATEGORICAL___nom_9___a5e0eb916": 11908, "15___CATEGORICAL___nom_9___a5e334fce": 11909, "15___CATEGORICAL___nom_9___a5e761079": 11910, "15___CATEGORICAL___nom_9___a5ebc861a": 11911, "15___CATEGORICAL___nom_9___a604506a5": 11912, "15___CATEGORICAL___nom_9___a6071abab": 11913, "15___CATEGORICAL___nom_9___a60f3c4af": 11914, "15___CATEGORICAL___nom_9___a614c6963": 11915, "15___CATEGORICAL___nom_9___a61a67f79": 11916, "15___CATEGORICAL___nom_9___a61b60701": 11917, "15___CATEGORICAL___nom_9___a6219e964": 11918, "15___CATEGORICAL___nom_9___a62de141e": 11919, "15___CATEGORICAL___nom_9___a63870d5b": 11920, "15___CATEGORICAL___nom_9___a638b0fb2": 11921, "15___CATEGORICAL___nom_9___a63a793c4": 11922, "15___CATEGORICAL___nom_9___a64477a61": 11923, "15___CATEGORICAL___nom_9___a649a5631": 11924, "15___CATEGORICAL___nom_9___a6513fd0a": 11925, "15___CATEGORICAL___nom_9___a6560bac2": 11926, "15___CATEGORICAL___nom_9___a65d29149": 11927, "15___CATEGORICAL___nom_9___a6615f7a4": 11928, "15___CATEGORICAL___nom_9___a663a096a": 11929, "15___CATEGORICAL___nom_9___a66bfb35a": 11930, "15___CATEGORICAL___nom_9___a678f2d5d": 11931, "15___CATEGORICAL___nom_9___a679ccbff": 11932, "15___CATEGORICAL___nom_9___a67d22f37": 11933, "15___CATEGORICAL___nom_9___a685ff4ca": 11934, "15___CATEGORICAL___nom_9___a69b29db7": 11935, "15___CATEGORICAL___nom_9___a69c99a9f": 11936, "15___CATEGORICAL___nom_9___a6a30c730": 11937, "15___CATEGORICAL___nom_9___a6ab9c316": 11938, "15___CATEGORICAL___nom_9___a6abf3116": 11939, "15___CATEGORICAL___nom_9___a6ac328e8": 11940, "15___CATEGORICAL___nom_9___a6ad58571": 11941, "15___CATEGORICAL___nom_9___a6b2880ed": 11942, "15___CATEGORICAL___nom_9___a6b590e88": 11943, "15___CATEGORICAL___nom_9___a6bd908f0": 11944, "15___CATEGORICAL___nom_9___a6c703712": 11945, "15___CATEGORICAL___nom_9___a6c937d64": 11946, "15___CATEGORICAL___nom_9___a6cf87931": 11947, "15___CATEGORICAL___nom_9___a6d049db5": 11948, "15___CATEGORICAL___nom_9___a6d30be54": 11949, "15___CATEGORICAL___nom_9___a6d406921": 11950, "15___CATEGORICAL___nom_9___a6dd7414a": 11951, "15___CATEGORICAL___nom_9___a6e3148bb": 11952, "15___CATEGORICAL___nom_9___a6e3b2e55": 11953, "15___CATEGORICAL___nom_9___a6e3d7d09": 11954, "15___CATEGORICAL___nom_9___a6e82c659": 11955, "15___CATEGORICAL___nom_9___a6e94443d": 11956, "15___CATEGORICAL___nom_9___a6e972ca0": 11957, "15___CATEGORICAL___nom_9___a6ed22f64": 11958, "15___CATEGORICAL___nom_9___a6f30d2a5": 11959, "15___CATEGORICAL___nom_9___a6fb9d55e": 11960, "15___CATEGORICAL___nom_9___a701a98e7": 11961, "15___CATEGORICAL___nom_9___a70280052": 11962, "15___CATEGORICAL___nom_9___a702ded3a": 11963, "15___CATEGORICAL___nom_9___a70d9d519": 11964, "15___CATEGORICAL___nom_9___a710b62f8": 11965, "15___CATEGORICAL___nom_9___a71d78679": 11966, "15___CATEGORICAL___nom_9___a71e3c9e9": 11967, "15___CATEGORICAL___nom_9___a71fe57f4": 11968, "15___CATEGORICAL___nom_9___a72777173": 11969, "15___CATEGORICAL___nom_9___a727e2822": 11970, "15___CATEGORICAL___nom_9___a72d663a7": 11971, "15___CATEGORICAL___nom_9___a7569de3a": 11972, "15___CATEGORICAL___nom_9___a75b03e06": 11973, "15___CATEGORICAL___nom_9___a761e9d9a": 11974, "15___CATEGORICAL___nom_9___a778015ec": 11975, "15___CATEGORICAL___nom_9___a778bea28": 11976, "15___CATEGORICAL___nom_9___a77d73fab": 11977, "15___CATEGORICAL___nom_9___a77e30212": 11978, "15___CATEGORICAL___nom_9___a77e71932": 11979, "15___CATEGORICAL___nom_9___a782ea31e": 11980, "15___CATEGORICAL___nom_9___a790e9c56": 11981, "15___CATEGORICAL___nom_9___a796bfc55": 11982, "15___CATEGORICAL___nom_9___a79ca05cc": 11983, "15___CATEGORICAL___nom_9___a79ca1e11": 11984, "15___CATEGORICAL___nom_9___a7a28bc7b": 11985, "15___CATEGORICAL___nom_9___a7a415853": 11986, "15___CATEGORICAL___nom_9___a7a84c080": 11987, "15___CATEGORICAL___nom_9___a7b0611a6": 11988, "15___CATEGORICAL___nom_9___a7b2f9d97": 11989, "15___CATEGORICAL___nom_9___a7c3348cd": 11990, "15___CATEGORICAL___nom_9___a7cabaa08": 11991, "15___CATEGORICAL___nom_9___a7d380fce": 11992, "15___CATEGORICAL___nom_9___a7de84453": 11993, "15___CATEGORICAL___nom_9___a7ded9a8a": 11994, "15___CATEGORICAL___nom_9___a7e08edbb": 11995, "15___CATEGORICAL___nom_9___a7e372a60": 11996, "15___CATEGORICAL___nom_9___a7e9c373a": 11997, "15___CATEGORICAL___nom_9___a7e9d03d9": 11998, "15___CATEGORICAL___nom_9___a7eee00bb": 11999, "15___CATEGORICAL___nom_9___a7f3512f4": 12000, "15___CATEGORICAL___nom_9___a7fa7fc41": 12001, "15___CATEGORICAL___nom_9___a80a52106": 12002, "15___CATEGORICAL___nom_9___a80b24767": 12003, "15___CATEGORICAL___nom_9___a8132291d": 12004, "15___CATEGORICAL___nom_9___a813a1d7f": 12005, "15___CATEGORICAL___nom_9___a81577221": 12006, "15___CATEGORICAL___nom_9___a827ae00f": 12007, "15___CATEGORICAL___nom_9___a828c6905": 12008, "15___CATEGORICAL___nom_9___a82abf8f1": 12009, "15___CATEGORICAL___nom_9___a82af753f": 12010, "15___CATEGORICAL___nom_9___a82d67bbf": 12011, "15___CATEGORICAL___nom_9___a82fb3f7d": 12012, "15___CATEGORICAL___nom_9___a8306dfb4": 12013, "15___CATEGORICAL___nom_9___a8342a437": 12014, "15___CATEGORICAL___nom_9___a8363744b": 12015, "15___CATEGORICAL___nom_9___a838059c7": 12016, "15___CATEGORICAL___nom_9___a83cfb969": 12017, "15___CATEGORICAL___nom_9___a840c394b": 12018, "15___CATEGORICAL___nom_9___a842be772": 12019, "15___CATEGORICAL___nom_9___a849560f9": 12020, "15___CATEGORICAL___nom_9___a84c486f8": 12021, "15___CATEGORICAL___nom_9___a85e6f592": 12022, "15___CATEGORICAL___nom_9___a8642ba56": 12023, "15___CATEGORICAL___nom_9___a86474f82": 12024, "15___CATEGORICAL___nom_9___a869c62d9": 12025, "15___CATEGORICAL___nom_9___a86a2bbd0": 12026, "15___CATEGORICAL___nom_9___a86a52cd8": 12027, "15___CATEGORICAL___nom_9___a86aae46a": 12028, "15___CATEGORICAL___nom_9___a86ce3657": 12029, "15___CATEGORICAL___nom_9___a8873c602": 12030, "15___CATEGORICAL___nom_9___a88f1c55d": 12031, "15___CATEGORICAL___nom_9___a88ff7a60": 12032, "15___CATEGORICAL___nom_9___a89944c3b": 12033, "15___CATEGORICAL___nom_9___a899ce61c": 12034, "15___CATEGORICAL___nom_9___a8a66a64c": 12035, "15___CATEGORICAL___nom_9___a8a73a00a": 12036, "15___CATEGORICAL___nom_9___a8aeb4e86": 12037, "15___CATEGORICAL___nom_9___a8b86cbb7": 12038, "15___CATEGORICAL___nom_9___a8bf52b22": 12039, "15___CATEGORICAL___nom_9___a8c0bfeb0": 12040, "15___CATEGORICAL___nom_9___a8c1c8057": 12041, "15___CATEGORICAL___nom_9___a8c5463fa": 12042, "15___CATEGORICAL___nom_9___a8d62e37a": 12043, "15___CATEGORICAL___nom_9___a8d983de8": 12044, "15___CATEGORICAL___nom_9___a8dc6a20d": 12045, "15___CATEGORICAL___nom_9___a8dff915c": 12046, "15___CATEGORICAL___nom_9___a8e1c572b": 12047, "15___CATEGORICAL___nom_9___a8e695393": 12048, "15___CATEGORICAL___nom_9___a8eaab3af": 12049, "15___CATEGORICAL___nom_9___a8eddb707": 12050, "15___CATEGORICAL___nom_9___a8f3477db": 12051, "15___CATEGORICAL___nom_9___a8f761fed": 12052, "15___CATEGORICAL___nom_9___a8f93c898": 12053, "15___CATEGORICAL___nom_9___a8fbc3122": 12054, "15___CATEGORICAL___nom_9___a918aaa90": 12055, "15___CATEGORICAL___nom_9___a91a4d80f": 12056, "15___CATEGORICAL___nom_9___a91e27bf2": 12057, "15___CATEGORICAL___nom_9___a9211d345": 12058, "15___CATEGORICAL___nom_9___a9224fc66": 12059, "15___CATEGORICAL___nom_9___a926db748": 12060, "15___CATEGORICAL___nom_9___a9281035e": 12061, "15___CATEGORICAL___nom_9___a928ae914": 12062, "15___CATEGORICAL___nom_9___a92c41029": 12063, "15___CATEGORICAL___nom_9___a9319a0d5": 12064, "15___CATEGORICAL___nom_9___a931cd56c": 12065, "15___CATEGORICAL___nom_9___a93316b87": 12066, "15___CATEGORICAL___nom_9___a938706b2": 12067, "15___CATEGORICAL___nom_9___a94581ada": 12068, "15___CATEGORICAL___nom_9___a9487c60b": 12069, "15___CATEGORICAL___nom_9___a9500432b": 12070, "15___CATEGORICAL___nom_9___a956a02ba": 12071, "15___CATEGORICAL___nom_9___a961608da": 12072, "15___CATEGORICAL___nom_9___a963812ae": 12073, "15___CATEGORICAL___nom_9___a9642b5ac": 12074, "15___CATEGORICAL___nom_9___a96bbf78b": 12075, "15___CATEGORICAL___nom_9___a9704afbe": 12076, "15___CATEGORICAL___nom_9___a9861856a": 12077, "15___CATEGORICAL___nom_9___a98a8f91a": 12078, "15___CATEGORICAL___nom_9___a98bf62b6": 12079, "15___CATEGORICAL___nom_9___a98d7389b": 12080, "15___CATEGORICAL___nom_9___a990a6954": 12081, "15___CATEGORICAL___nom_9___a9960b948": 12082, "15___CATEGORICAL___nom_9___a996a9557": 12083, "15___CATEGORICAL___nom_9___a99b4ea31": 12084, "15___CATEGORICAL___nom_9___a9a10722d": 12085, "15___CATEGORICAL___nom_9___a9a332dc7": 12086, "15___CATEGORICAL___nom_9___a9b1b9add": 12087, "15___CATEGORICAL___nom_9___a9b2ae1d8": 12088, "15___CATEGORICAL___nom_9___a9b38b618": 12089, "15___CATEGORICAL___nom_9___a9b3f0e62": 12090, "15___CATEGORICAL___nom_9___a9b4d34b6": 12091, "15___CATEGORICAL___nom_9___a9b7bfbf4": 12092, "15___CATEGORICAL___nom_9___a9c3b1a1e": 12093, "15___CATEGORICAL___nom_9___a9c6ca37b": 12094, "15___CATEGORICAL___nom_9___a9cb48b28": 12095, "15___CATEGORICAL___nom_9___a9ce3334c": 12096, "15___CATEGORICAL___nom_9___a9d63b72c": 12097, "15___CATEGORICAL___nom_9___a9dbaf01e": 12098, "15___CATEGORICAL___nom_9___a9df6c498": 12099, "15___CATEGORICAL___nom_9___a9e25a1a8": 12100, "15___CATEGORICAL___nom_9___a9e3951c3": 12101, "15___CATEGORICAL___nom_9___a9e87d557": 12102, "15___CATEGORICAL___nom_9___a9eb93128": 12103, "15___CATEGORICAL___nom_9___a9f2f87b8": 12104, "15___CATEGORICAL___nom_9___a9f495f6f": 12105, "15___CATEGORICAL___nom_9___a9f6b38ab": 12106, "15___CATEGORICAL___nom_9___a9fa59a32": 12107, "15___CATEGORICAL___nom_9___aa08ec1bc": 12108, "15___CATEGORICAL___nom_9___aa0ccc4a4": 12109, "15___CATEGORICAL___nom_9___aa0f30abd": 12110, "15___CATEGORICAL___nom_9___aa12aabfd": 12111, "15___CATEGORICAL___nom_9___aa1477b3e": 12112, "15___CATEGORICAL___nom_9___aa16f00d5": 12113, "15___CATEGORICAL___nom_9___aa17340ed": 12114, "15___CATEGORICAL___nom_9___aa1796b81": 12115, "15___CATEGORICAL___nom_9___aa38470e2": 12116, "15___CATEGORICAL___nom_9___aa3f5255d": 12117, "15___CATEGORICAL___nom_9___aa47dd92b": 12118, "15___CATEGORICAL___nom_9___aa4ec2d8e": 12119, "15___CATEGORICAL___nom_9___aa55ff386": 12120, "15___CATEGORICAL___nom_9___aa6143ad5": 12121, "15___CATEGORICAL___nom_9___aa6a31d6f": 12122, "15___CATEGORICAL___nom_9___aa70d5075": 12123, "15___CATEGORICAL___nom_9___aa71bb9ae": 12124, "15___CATEGORICAL___nom_9___aa72880b0": 12125, "15___CATEGORICAL___nom_9___aa7acf75a": 12126, "15___CATEGORICAL___nom_9___aa7d99de5": 12127, "15___CATEGORICAL___nom_9___aa7f29b41": 12128, "15___CATEGORICAL___nom_9___aa8324519": 12129, "15___CATEGORICAL___nom_9___aa8caef11": 12130, "15___CATEGORICAL___nom_9___aaa15821b": 12131, "15___CATEGORICAL___nom_9___aaa526d74": 12132, "15___CATEGORICAL___nom_9___aaab46f42": 12133, "15___CATEGORICAL___nom_9___aaaee8c49": 12134, "15___CATEGORICAL___nom_9___aab3fb822": 12135, "15___CATEGORICAL___nom_9___aab530a24": 12136, "15___CATEGORICAL___nom_9___aab557eb2": 12137, "15___CATEGORICAL___nom_9___aab66d355": 12138, "15___CATEGORICAL___nom_9___aab8c082a": 12139, "15___CATEGORICAL___nom_9___aac5b5b21": 12140, "15___CATEGORICAL___nom_9___aac5e6ef0": 12141, "15___CATEGORICAL___nom_9___aacbcf59e": 12142, "15___CATEGORICAL___nom_9___aacdc2b46": 12143, "15___CATEGORICAL___nom_9___aacf26656": 12144, "15___CATEGORICAL___nom_9___aad04bd2e": 12145, "15___CATEGORICAL___nom_9___aad4133ea": 12146, "15___CATEGORICAL___nom_9___aad80d230": 12147, "15___CATEGORICAL___nom_9___aad8c29a8": 12148, "15___CATEGORICAL___nom_9___aada5db52": 12149, "15___CATEGORICAL___nom_9___aaee338d3": 12150, "15___CATEGORICAL___nom_9___aaefb93ff": 12151, "15___CATEGORICAL___nom_9___aaf0b0e3d": 12152, "15___CATEGORICAL___nom_9___aaf1b7329": 12153, "15___CATEGORICAL___nom_9___aaf2a568a": 12154, "15___CATEGORICAL___nom_9___aaf4b8b6e": 12155, "15___CATEGORICAL___nom_9___aaf5b4187": 12156, "15___CATEGORICAL___nom_9___aaf9cf0fd": 12157, "15___CATEGORICAL___nom_9___aafa6ab5e": 12158, "15___CATEGORICAL___nom_9___ab0ce192b": 12159, "15___CATEGORICAL___nom_9___ab150bee6": 12160, "15___CATEGORICAL___nom_9___ab235c867": 12161, "15___CATEGORICAL___nom_9___ab32fb6d9": 12162, "15___CATEGORICAL___nom_9___ab539bd3c": 12163, "15___CATEGORICAL___nom_9___ab56fccc3": 12164, "15___CATEGORICAL___nom_9___ab5b5dec3": 12165, "15___CATEGORICAL___nom_9___ab5f3eee8": 12166, "15___CATEGORICAL___nom_9___ab634b9f6": 12167, "15___CATEGORICAL___nom_9___ab6506257": 12168, "15___CATEGORICAL___nom_9___ab7bf81aa": 12169, "15___CATEGORICAL___nom_9___ab7e858b4": 12170, "15___CATEGORICAL___nom_9___ab8d1a23e": 12171, "15___CATEGORICAL___nom_9___ab9892c11": 12172, "15___CATEGORICAL___nom_9___ab9b63710": 12173, "15___CATEGORICAL___nom_9___ab9dd3f6b": 12174, "15___CATEGORICAL___nom_9___aba486106": 12175, "15___CATEGORICAL___nom_9___aba61f0b1": 12176, "15___CATEGORICAL___nom_9___abaa5bd35": 12177, "15___CATEGORICAL___nom_9___abb37c343": 12178, "15___CATEGORICAL___nom_9___abb81c1f3": 12179, "15___CATEGORICAL___nom_9___abc0e1a98": 12180, "15___CATEGORICAL___nom_9___abc461ea4": 12181, "15___CATEGORICAL___nom_9___abc470d08": 12182, "15___CATEGORICAL___nom_9___abcc8ae20": 12183, "15___CATEGORICAL___nom_9___abd70d126": 12184, "15___CATEGORICAL___nom_9___abd88224b": 12185, "15___CATEGORICAL___nom_9___abdc790b4": 12186, "15___CATEGORICAL___nom_9___abde83f58": 12187, "15___CATEGORICAL___nom_9___abe290c03": 12188, "15___CATEGORICAL___nom_9___abedd9b2d": 12189, "15___CATEGORICAL___nom_9___abf0c6a5a": 12190, "15___CATEGORICAL___nom_9___abf121e5b": 12191, "15___CATEGORICAL___nom_9___abf51c64d": 12192, "15___CATEGORICAL___nom_9___abf83367c": 12193, "15___CATEGORICAL___nom_9___abfdb0ce6": 12194, "15___CATEGORICAL___nom_9___ac091bd4e": 12195, "15___CATEGORICAL___nom_9___ac092b73b": 12196, "15___CATEGORICAL___nom_9___ac14fc6c7": 12197, "15___CATEGORICAL___nom_9___ac17bd593": 12198, "15___CATEGORICAL___nom_9___ac17ddf19": 12199, "15___CATEGORICAL___nom_9___ac1fe16c8": 12200, "15___CATEGORICAL___nom_9___ac21b4479": 12201, "15___CATEGORICAL___nom_9___ac23f2a38": 12202, "15___CATEGORICAL___nom_9___ac2ddc466": 12203, "15___CATEGORICAL___nom_9___ac345a409": 12204, "15___CATEGORICAL___nom_9___ac359f899": 12205, "15___CATEGORICAL___nom_9___ac37218ad": 12206, "15___CATEGORICAL___nom_9___ac40035de": 12207, "15___CATEGORICAL___nom_9___ac4325a89": 12208, "15___CATEGORICAL___nom_9___ac4a5b5a0": 12209, "15___CATEGORICAL___nom_9___ac4cade80": 12210, "15___CATEGORICAL___nom_9___ac4f98ec4": 12211, "15___CATEGORICAL___nom_9___ac4fbf7cc": 12212, "15___CATEGORICAL___nom_9___ac507224c": 12213, "15___CATEGORICAL___nom_9___ac541abb1": 12214, "15___CATEGORICAL___nom_9___ac5f20326": 12215, "15___CATEGORICAL___nom_9___ac60b4dad": 12216, "15___CATEGORICAL___nom_9___ac61f5d41": 12217, "15___CATEGORICAL___nom_9___ac6871cae": 12218, "15___CATEGORICAL___nom_9___ac6b43f24": 12219, "15___CATEGORICAL___nom_9___ac75f6c82": 12220, "15___CATEGORICAL___nom_9___ac762920d": 12221, "15___CATEGORICAL___nom_9___ac7ba5f96": 12222, "15___CATEGORICAL___nom_9___ac7c48999": 12223, "15___CATEGORICAL___nom_9___ac8b0692c": 12224, "15___CATEGORICAL___nom_9___ac8f76b2b": 12225, "15___CATEGORICAL___nom_9___ac991c0da": 12226, "15___CATEGORICAL___nom_9___aca374e03": 12227, "15___CATEGORICAL___nom_9___acaafbfa7": 12228, "15___CATEGORICAL___nom_9___acac62b2e": 12229, "15___CATEGORICAL___nom_9___acaea5c74": 12230, "15___CATEGORICAL___nom_9___acb1c7600": 12231, "15___CATEGORICAL___nom_9___acc31291f": 12232, "15___CATEGORICAL___nom_9___acc5f3959": 12233, "15___CATEGORICAL___nom_9___acc8b9caa": 12234, "15___CATEGORICAL___nom_9___acccab5bf": 12235, "15___CATEGORICAL___nom_9___acccc43ca": 12236, "15___CATEGORICAL___nom_9___accce009e": 12237, "15___CATEGORICAL___nom_9___acd055651": 12238, "15___CATEGORICAL___nom_9___acd97abe6": 12239, "15___CATEGORICAL___nom_9___acdbd2f26": 12240, "15___CATEGORICAL___nom_9___ace629272": 12241, "15___CATEGORICAL___nom_9___acf2d02d0": 12242, "15___CATEGORICAL___nom_9___acffe5007": 12243, "15___CATEGORICAL___nom_9___ad07ff272": 12244, "15___CATEGORICAL___nom_9___ad19fea5c": 12245, "15___CATEGORICAL___nom_9___ad1af2b45": 12246, "15___CATEGORICAL___nom_9___ad3451886": 12247, "15___CATEGORICAL___nom_9___ad34ef3da": 12248, "15___CATEGORICAL___nom_9___ad4081e19": 12249, "15___CATEGORICAL___nom_9___ad40dd81f": 12250, "15___CATEGORICAL___nom_9___ad423fdc8": 12251, "15___CATEGORICAL___nom_9___ad56acb62": 12252, "15___CATEGORICAL___nom_9___ad5bfe8fd": 12253, "15___CATEGORICAL___nom_9___ad5eaed76": 12254, "15___CATEGORICAL___nom_9___ad5fbb2c8": 12255, "15___CATEGORICAL___nom_9___ad631732e": 12256, "15___CATEGORICAL___nom_9___ad68fa76a": 12257, "15___CATEGORICAL___nom_9___ad6942679": 12258, "15___CATEGORICAL___nom_9___ad74f0b5c": 12259, "15___CATEGORICAL___nom_9___ad783c402": 12260, "15___CATEGORICAL___nom_9___ad80c6bb0": 12261, "15___CATEGORICAL___nom_9___ad84e9cd5": 12262, "15___CATEGORICAL___nom_9___ad874e496": 12263, "15___CATEGORICAL___nom_9___ad88cffca": 12264, "15___CATEGORICAL___nom_9___ad8b6e30a": 12265, "15___CATEGORICAL___nom_9___ad9151823": 12266, "15___CATEGORICAL___nom_9___ad994da83": 12267, "15___CATEGORICAL___nom_9___ad9bc2189": 12268, "15___CATEGORICAL___nom_9___ad9c22f57": 12269, "15___CATEGORICAL___nom_9___ada98f193": 12270, "15___CATEGORICAL___nom_9___adaabde41": 12271, "15___CATEGORICAL___nom_9___adb6c4865": 12272, "15___CATEGORICAL___nom_9___adb70e8de": 12273, "15___CATEGORICAL___nom_9___adba175af": 12274, "15___CATEGORICAL___nom_9___adbfe1549": 12275, "15___CATEGORICAL___nom_9___adc2cac85": 12276, "15___CATEGORICAL___nom_9___adc408e10": 12277, "15___CATEGORICAL___nom_9___adcb79e8e": 12278, "15___CATEGORICAL___nom_9___add170035": 12279, "15___CATEGORICAL___nom_9___add294f09": 12280, "15___CATEGORICAL___nom_9___add68232b": 12281, "15___CATEGORICAL___nom_9___addc6f2d4": 12282, "15___CATEGORICAL___nom_9___addfd7e38": 12283, "15___CATEGORICAL___nom_9___ade5b3ae5": 12284, "15___CATEGORICAL___nom_9___ade63f0c7": 12285, "15___CATEGORICAL___nom_9___ade6e0cf3": 12286, "15___CATEGORICAL___nom_9___adf5b5791": 12287, "15___CATEGORICAL___nom_9___adfa6de8c": 12288, "15___CATEGORICAL___nom_9___adfb075f0": 12289, "15___CATEGORICAL___nom_9___ae0040cac": 12290, "15___CATEGORICAL___nom_9___ae043a257": 12291, "15___CATEGORICAL___nom_9___ae10ce7e5": 12292, "15___CATEGORICAL___nom_9___ae12111a1": 12293, "15___CATEGORICAL___nom_9___ae16d207a": 12294, "15___CATEGORICAL___nom_9___ae25fba9a": 12295, "15___CATEGORICAL___nom_9___ae289a051": 12296, "15___CATEGORICAL___nom_9___ae2d4009e": 12297, "15___CATEGORICAL___nom_9___ae2fe0e32": 12298, "15___CATEGORICAL___nom_9___ae328212a": 12299, "15___CATEGORICAL___nom_9___ae32b58db": 12300, "15___CATEGORICAL___nom_9___ae34b32c6": 12301, "15___CATEGORICAL___nom_9___ae37593d6": 12302, "15___CATEGORICAL___nom_9___ae3af5bfc": 12303, "15___CATEGORICAL___nom_9___ae44395f6": 12304, "15___CATEGORICAL___nom_9___ae46297c2": 12305, "15___CATEGORICAL___nom_9___ae464e7f5": 12306, "15___CATEGORICAL___nom_9___ae4aea38c": 12307, "15___CATEGORICAL___nom_9___ae4cd26f1": 12308, "15___CATEGORICAL___nom_9___ae4d27083": 12309, "15___CATEGORICAL___nom_9___ae543d563": 12310, "15___CATEGORICAL___nom_9___ae55cf4ff": 12311, "15___CATEGORICAL___nom_9___ae5b757e2": 12312, "15___CATEGORICAL___nom_9___ae5ca8cca": 12313, "15___CATEGORICAL___nom_9___ae5d2278e": 12314, "15___CATEGORICAL___nom_9___ae6800dd0": 12315, "15___CATEGORICAL___nom_9___ae686a6bf": 12316, "15___CATEGORICAL___nom_9___ae6e09fcc": 12317, "15___CATEGORICAL___nom_9___ae709c39d": 12318, "15___CATEGORICAL___nom_9___ae7726e78": 12319, "15___CATEGORICAL___nom_9___ae7f7036e": 12320, "15___CATEGORICAL___nom_9___ae825fafb": 12321, "15___CATEGORICAL___nom_9___ae87eafff": 12322, "15___CATEGORICAL___nom_9___ae8d8b006": 12323, "15___CATEGORICAL___nom_9___ae8dc8921": 12324, "15___CATEGORICAL___nom_9___ae8f37296": 12325, "15___CATEGORICAL___nom_9___ae92c1283": 12326, "15___CATEGORICAL___nom_9___ae9a095a4": 12327, "15___CATEGORICAL___nom_9___aea1209f2": 12328, "15___CATEGORICAL___nom_9___aea353342": 12329, "15___CATEGORICAL___nom_9___aea8fe184": 12330, "15___CATEGORICAL___nom_9___aea9a5990": 12331, "15___CATEGORICAL___nom_9___aeb2ba907": 12332, "15___CATEGORICAL___nom_9___aeb3bfcc9": 12333, "15___CATEGORICAL___nom_9___aeb5895d3": 12334, "15___CATEGORICAL___nom_9___aeb5c1fda": 12335, "15___CATEGORICAL___nom_9___aeb8220f7": 12336, "15___CATEGORICAL___nom_9___aebe4e815": 12337, "15___CATEGORICAL___nom_9___aec12d1d1": 12338, "15___CATEGORICAL___nom_9___aec56161a": 12339, "15___CATEGORICAL___nom_9___aec8523d8": 12340, "15___CATEGORICAL___nom_9___aed509d65": 12341, "15___CATEGORICAL___nom_9___aed55d886": 12342, "15___CATEGORICAL___nom_9___aed6113fe": 12343, "15___CATEGORICAL___nom_9___aed7a4b60": 12344, "15___CATEGORICAL___nom_9___aed85c235": 12345, "15___CATEGORICAL___nom_9___aeda4395b": 12346, "15___CATEGORICAL___nom_9___aedd69d68": 12347, "15___CATEGORICAL___nom_9___aee0b9e67": 12348, "15___CATEGORICAL___nom_9___aee319236": 12349, "15___CATEGORICAL___nom_9___aee640eb1": 12350, "15___CATEGORICAL___nom_9___aee648015": 12351, "15___CATEGORICAL___nom_9___aee66af34": 12352, "15___CATEGORICAL___nom_9___aeef47679": 12353, "15___CATEGORICAL___nom_9___aef01d6f9": 12354, "15___CATEGORICAL___nom_9___aefdd6fd7": 12355, "15___CATEGORICAL___nom_9___af0acb8dd": 12356, "15___CATEGORICAL___nom_9___af0c42131": 12357, "15___CATEGORICAL___nom_9___af10045a7": 12358, "15___CATEGORICAL___nom_9___af1c1642b": 12359, "15___CATEGORICAL___nom_9___af2aa15d0": 12360, "15___CATEGORICAL___nom_9___af2ce5e24": 12361, "15___CATEGORICAL___nom_9___af2d173f4": 12362, "15___CATEGORICAL___nom_9___af2e5efd8": 12363, "15___CATEGORICAL___nom_9___af313bcbd": 12364, "15___CATEGORICAL___nom_9___af3354181": 12365, "15___CATEGORICAL___nom_9___af3c39440": 12366, "15___CATEGORICAL___nom_9___af3d31c67": 12367, "15___CATEGORICAL___nom_9___af417feb8": 12368, "15___CATEGORICAL___nom_9___af4327d6f": 12369, "15___CATEGORICAL___nom_9___af454196b": 12370, "15___CATEGORICAL___nom_9___af49a2f49": 12371, "15___CATEGORICAL___nom_9___af52986d3": 12372, "15___CATEGORICAL___nom_9___af5c81262": 12373, "15___CATEGORICAL___nom_9___af615b827": 12374, "15___CATEGORICAL___nom_9___af65bfd48": 12375, "15___CATEGORICAL___nom_9___af6ad4519": 12376, "15___CATEGORICAL___nom_9___af6cbd9fb": 12377, "15___CATEGORICAL___nom_9___af7202bff": 12378, "15___CATEGORICAL___nom_9___af74a658b": 12379, "15___CATEGORICAL___nom_9___af7ee8845": 12380, "15___CATEGORICAL___nom_9___af85e1c67": 12381, "15___CATEGORICAL___nom_9___af85f8fc6": 12382, "15___CATEGORICAL___nom_9___af8a46ff2": 12383, "15___CATEGORICAL___nom_9___af8a565e9": 12384, "15___CATEGORICAL___nom_9___af920cd89": 12385, "15___CATEGORICAL___nom_9___af96548a8": 12386, "15___CATEGORICAL___nom_9___af9a0d3fc": 12387, "15___CATEGORICAL___nom_9___af9f0d79a": 12388, "15___CATEGORICAL___nom_9___af9f2e644": 12389, "15___CATEGORICAL___nom_9___afa3296e7": 12390, "15___CATEGORICAL___nom_9___afb0edf55": 12391, "15___CATEGORICAL___nom_9___afb707a52": 12392, "15___CATEGORICAL___nom_9___afb744db1": 12393, "15___CATEGORICAL___nom_9___afbd3c34d": 12394, "15___CATEGORICAL___nom_9___afbf04625": 12395, "15___CATEGORICAL___nom_9___afc90e1fe": 12396, "15___CATEGORICAL___nom_9___afcbfa52c": 12397, "15___CATEGORICAL___nom_9___afd236b7d": 12398, "15___CATEGORICAL___nom_9___afd2e58f2": 12399, "15___CATEGORICAL___nom_9___afd8fdc69": 12400, "15___CATEGORICAL___nom_9___afe2945cd": 12401, "15___CATEGORICAL___nom_9___afe7317d4": 12402, "15___CATEGORICAL___nom_9___afecee992": 12403, "15___CATEGORICAL___nom_9___aff0f71f7": 12404, "15___CATEGORICAL___nom_9___affc1a52c": 12405, "15___CATEGORICAL___nom_9___affeda826": 12406, "15___CATEGORICAL___nom_9___b001b4985": 12407, "15___CATEGORICAL___nom_9___b001f46f4": 12408, "15___CATEGORICAL___nom_9___b0094fa71": 12409, "15___CATEGORICAL___nom_9___b0095b48f": 12410, "15___CATEGORICAL___nom_9___b0186ffa4": 12411, "15___CATEGORICAL___nom_9___b01951b33": 12412, "15___CATEGORICAL___nom_9___b01f1a559": 12413, "15___CATEGORICAL___nom_9___b0248f236": 12414, "15___CATEGORICAL___nom_9___b032d8e14": 12415, "15___CATEGORICAL___nom_9___b035c5926": 12416, "15___CATEGORICAL___nom_9___b036afc42": 12417, "15___CATEGORICAL___nom_9___b036fc29d": 12418, "15___CATEGORICAL___nom_9___b0406edeb": 12419, "15___CATEGORICAL___nom_9___b0420b01d": 12420, "15___CATEGORICAL___nom_9___b043b3d84": 12421, "15___CATEGORICAL___nom_9___b0452728c": 12422, "15___CATEGORICAL___nom_9___b04c62345": 12423, "15___CATEGORICAL___nom_9___b053948a3": 12424, "15___CATEGORICAL___nom_9___b05eacb32": 12425, "15___CATEGORICAL___nom_9___b05fb863f": 12426, "15___CATEGORICAL___nom_9___b064c7b68": 12427, "15___CATEGORICAL___nom_9___b06add9dc": 12428, "15___CATEGORICAL___nom_9___b06cd55a2": 12429, "15___CATEGORICAL___nom_9___b06ec96c9": 12430, "15___CATEGORICAL___nom_9___b08218af1": 12431, "15___CATEGORICAL___nom_9___b08e679fb": 12432, "15___CATEGORICAL___nom_9___b098e6312": 12433, "15___CATEGORICAL___nom_9___b09abe4e1": 12434, "15___CATEGORICAL___nom_9___b0a5e948b": 12435, "15___CATEGORICAL___nom_9___b0a6024f7": 12436, "15___CATEGORICAL___nom_9___b0b3e7a55": 12437, "15___CATEGORICAL___nom_9___b0bbd229e": 12438, "15___CATEGORICAL___nom_9___b0bcbe0e9": 12439, "15___CATEGORICAL___nom_9___b0cafa8f0": 12440, "15___CATEGORICAL___nom_9___b0cc03b01": 12441, "15___CATEGORICAL___nom_9___b0ce9c29a": 12442, "15___CATEGORICAL___nom_9___b0cf0ddfa": 12443, "15___CATEGORICAL___nom_9___b0d0e8fdd": 12444, "15___CATEGORICAL___nom_9___b0d19100d": 12445, "15___CATEGORICAL___nom_9___b0d4c6404": 12446, "15___CATEGORICAL___nom_9___b0d67f003": 12447, "15___CATEGORICAL___nom_9___b0da93130": 12448, "15___CATEGORICAL___nom_9___b0dc56894": 12449, "15___CATEGORICAL___nom_9___b0f64f702": 12450, "15___CATEGORICAL___nom_9___b0faf93d2": 12451, "15___CATEGORICAL___nom_9___b0fd12e89": 12452, "15___CATEGORICAL___nom_9___b0fe4c49f": 12453, "15___CATEGORICAL___nom_9___b0ff8e580": 12454, "15___CATEGORICAL___nom_9___b0ffc8232": 12455, "15___CATEGORICAL___nom_9___b10368f84": 12456, "15___CATEGORICAL___nom_9___b10a262d1": 12457, "15___CATEGORICAL___nom_9___b10b16967": 12458, "15___CATEGORICAL___nom_9___b10f612bc": 12459, "15___CATEGORICAL___nom_9___b11664ae6": 12460, "15___CATEGORICAL___nom_9___b120cf241": 12461, "15___CATEGORICAL___nom_9___b123534bd": 12462, "15___CATEGORICAL___nom_9___b138889e0": 12463, "15___CATEGORICAL___nom_9___b141514ef": 12464, "15___CATEGORICAL___nom_9___b1453a196": 12465, "15___CATEGORICAL___nom_9___b15364c1d": 12466, "15___CATEGORICAL___nom_9___b1578570b": 12467, "15___CATEGORICAL___nom_9___b164b72a7": 12468, "15___CATEGORICAL___nom_9___b165bd7ec": 12469, "15___CATEGORICAL___nom_9___b1708ce64": 12470, "15___CATEGORICAL___nom_9___b17198074": 12471, "15___CATEGORICAL___nom_9___b1725c193": 12472, "15___CATEGORICAL___nom_9___b178c3f71": 12473, "15___CATEGORICAL___nom_9___b18070556": 12474, "15___CATEGORICAL___nom_9___b18273261": 12475, "15___CATEGORICAL___nom_9___b18356db4": 12476, "15___CATEGORICAL___nom_9___b1867d321": 12477, "15___CATEGORICAL___nom_9___b196d6aad": 12478, "15___CATEGORICAL___nom_9___b19c8a15e": 12479, "15___CATEGORICAL___nom_9___b1a2f7da7": 12480, "15___CATEGORICAL___nom_9___b1a65c9ed": 12481, "15___CATEGORICAL___nom_9___b1ab56ba1": 12482, "15___CATEGORICAL___nom_9___b1abdb814": 12483, "15___CATEGORICAL___nom_9___b1b3fea44": 12484, "15___CATEGORICAL___nom_9___b1b415218": 12485, "15___CATEGORICAL___nom_9___b1b8d395f": 12486, "15___CATEGORICAL___nom_9___b1c057e25": 12487, "15___CATEGORICAL___nom_9___b1c9e4047": 12488, "15___CATEGORICAL___nom_9___b1cd8ba05": 12489, "15___CATEGORICAL___nom_9___b1d340ea7": 12490, "15___CATEGORICAL___nom_9___b1d478247": 12491, "15___CATEGORICAL___nom_9___b1d6921c3": 12492, "15___CATEGORICAL___nom_9___b1d8d7e14": 12493, "15___CATEGORICAL___nom_9___b1e502cb8": 12494, "15___CATEGORICAL___nom_9___b1e9505da": 12495, "15___CATEGORICAL___nom_9___b1edf23a4": 12496, "15___CATEGORICAL___nom_9___b1fb3d5f9": 12497, "15___CATEGORICAL___nom_9___b203add9e": 12498, "15___CATEGORICAL___nom_9___b214b865b": 12499, "15___CATEGORICAL___nom_9___b2168686c": 12500, "15___CATEGORICAL___nom_9___b22095f5d": 12501, "15___CATEGORICAL___nom_9___b22e596ed": 12502, "15___CATEGORICAL___nom_9___b231da167": 12503, "15___CATEGORICAL___nom_9___b235c8bc7": 12504, "15___CATEGORICAL___nom_9___b237c2552": 12505, "15___CATEGORICAL___nom_9___b237e992b": 12506, "15___CATEGORICAL___nom_9___b23943ef4": 12507, "15___CATEGORICAL___nom_9___b23bb90c6": 12508, "15___CATEGORICAL___nom_9___b242a587d": 12509, "15___CATEGORICAL___nom_9___b2436459a": 12510, "15___CATEGORICAL___nom_9___b24464205": 12511, "15___CATEGORICAL___nom_9___b245a18ee": 12512, "15___CATEGORICAL___nom_9___b2465e0e2": 12513, "15___CATEGORICAL___nom_9___b24f6e16f": 12514, "15___CATEGORICAL___nom_9___b254ea323": 12515, "15___CATEGORICAL___nom_9___b25573b75": 12516, "15___CATEGORICAL___nom_9___b257edcb5": 12517, "15___CATEGORICAL___nom_9___b259d756d": 12518, "15___CATEGORICAL___nom_9___b25ae2739": 12519, "15___CATEGORICAL___nom_9___b25b539a7": 12520, "15___CATEGORICAL___nom_9___b25d4337d": 12521, "15___CATEGORICAL___nom_9___b25f4411c": 12522, "15___CATEGORICAL___nom_9___b26da88b0": 12523, "15___CATEGORICAL___nom_9___b27257562": 12524, "15___CATEGORICAL___nom_9___b2743af13": 12525, "15___CATEGORICAL___nom_9___b277545d6": 12526, "15___CATEGORICAL___nom_9___b27cbe1c9": 12527, "15___CATEGORICAL___nom_9___b2886fe1c": 12528, "15___CATEGORICAL___nom_9___b288f451c": 12529, "15___CATEGORICAL___nom_9___b28ab7c7a": 12530, "15___CATEGORICAL___nom_9___b29127fef": 12531, "15___CATEGORICAL___nom_9___b293d0ff7": 12532, "15___CATEGORICAL___nom_9___b295adc0e": 12533, "15___CATEGORICAL___nom_9___b2afd76a3": 12534, "15___CATEGORICAL___nom_9___b2b7af979": 12535, "15___CATEGORICAL___nom_9___b2b8b377c": 12536, "15___CATEGORICAL___nom_9___b2ba374ac": 12537, "15___CATEGORICAL___nom_9___b2beb29d9": 12538, "15___CATEGORICAL___nom_9___b2c0ab271": 12539, "15___CATEGORICAL___nom_9___b2c0cc21c": 12540, "15___CATEGORICAL___nom_9___b2c2c6b8b": 12541, "15___CATEGORICAL___nom_9___b2daa3467": 12542, "15___CATEGORICAL___nom_9___b2dbc599b": 12543, "15___CATEGORICAL___nom_9___b2dc8e308": 12544, "15___CATEGORICAL___nom_9___b2e726a01": 12545, "15___CATEGORICAL___nom_9___b2ec9e6ed": 12546, "15___CATEGORICAL___nom_9___b2f1ff1e1": 12547, "15___CATEGORICAL___nom_9___b2f30aa43": 12548, "15___CATEGORICAL___nom_9___b2f54a4dd": 12549, "15___CATEGORICAL___nom_9___b2fda0402": 12550, "15___CATEGORICAL___nom_9___b310b8bb6": 12551, "15___CATEGORICAL___nom_9___b31495b1c": 12552, "15___CATEGORICAL___nom_9___b31a6425e": 12553, "15___CATEGORICAL___nom_9___b3212827e": 12554, "15___CATEGORICAL___nom_9___b32578b93": 12555, "15___CATEGORICAL___nom_9___b327beaa0": 12556, "15___CATEGORICAL___nom_9___b32a3372e": 12557, "15___CATEGORICAL___nom_9___b32eafb61": 12558, "15___CATEGORICAL___nom_9___b3362801e": 12559, "15___CATEGORICAL___nom_9___b33b48406": 12560, "15___CATEGORICAL___nom_9___b33bca026": 12561, "15___CATEGORICAL___nom_9___b33be9184": 12562, "15___CATEGORICAL___nom_9___b340382ee": 12563, "15___CATEGORICAL___nom_9___b34ee501d": 12564, "15___CATEGORICAL___nom_9___b35714849": 12565, "15___CATEGORICAL___nom_9___b364e1af2": 12566, "15___CATEGORICAL___nom_9___b366e5e88": 12567, "15___CATEGORICAL___nom_9___b368ece39": 12568, "15___CATEGORICAL___nom_9___b36a6a1f4": 12569, "15___CATEGORICAL___nom_9___b36a83b91": 12570, "15___CATEGORICAL___nom_9___b36b0c8ea": 12571, "15___CATEGORICAL___nom_9___b3700dd31": 12572, "15___CATEGORICAL___nom_9___b370e6c97": 12573, "15___CATEGORICAL___nom_9___b3771663a": 12574, "15___CATEGORICAL___nom_9___b378028f4": 12575, "15___CATEGORICAL___nom_9___b37f33d00": 12576, "15___CATEGORICAL___nom_9___b3858c5d8": 12577, "15___CATEGORICAL___nom_9___b387b2754": 12578, "15___CATEGORICAL___nom_9___b3a1ae8ab": 12579, "15___CATEGORICAL___nom_9___b3a4dcef4": 12580, "15___CATEGORICAL___nom_9___b3a5170cd": 12581, "15___CATEGORICAL___nom_9___b3affb307": 12582, "15___CATEGORICAL___nom_9___b3b5ef78c": 12583, "15___CATEGORICAL___nom_9___b3b650c35": 12584, "15___CATEGORICAL___nom_9___b3b7731dd": 12585, "15___CATEGORICAL___nom_9___b3c220c05": 12586, "15___CATEGORICAL___nom_9___b3c80f599": 12587, "15___CATEGORICAL___nom_9___b3cd6055c": 12588, "15___CATEGORICAL___nom_9___b3d341bac": 12589, "15___CATEGORICAL___nom_9___b3d56c0ec": 12590, "15___CATEGORICAL___nom_9___b3e2de87b": 12591, "15___CATEGORICAL___nom_9___b3ea5b1a1": 12592, "15___CATEGORICAL___nom_9___b3ec4d91f": 12593, "15___CATEGORICAL___nom_9___b3f091a5d": 12594, "15___CATEGORICAL___nom_9___b3f1c0b60": 12595, "15___CATEGORICAL___nom_9___b3f565f6e": 12596, "15___CATEGORICAL___nom_9___b3fc75f2c": 12597, "15___CATEGORICAL___nom_9___b4087b4fa": 12598, "15___CATEGORICAL___nom_9___b4248f061": 12599, "15___CATEGORICAL___nom_9___b427ae3a8": 12600, "15___CATEGORICAL___nom_9___b4321b75b": 12601, "15___CATEGORICAL___nom_9___b438e9725": 12602, "15___CATEGORICAL___nom_9___b43a700e4": 12603, "15___CATEGORICAL___nom_9___b43b9e9f8": 12604, "15___CATEGORICAL___nom_9___b43be2574": 12605, "15___CATEGORICAL___nom_9___b43f55b2e": 12606, "15___CATEGORICAL___nom_9___b44044db5": 12607, "15___CATEGORICAL___nom_9___b4413349e": 12608, "15___CATEGORICAL___nom_9___b445144f4": 12609, "15___CATEGORICAL___nom_9___b447422a5": 12610, "15___CATEGORICAL___nom_9___b447fc476": 12611, "15___CATEGORICAL___nom_9___b448dbb88": 12612, "15___CATEGORICAL___nom_9___b448eafaa": 12613, "15___CATEGORICAL___nom_9___b4508ddba": 12614, "15___CATEGORICAL___nom_9___b45218c9e": 12615, "15___CATEGORICAL___nom_9___b45391f72": 12616, "15___CATEGORICAL___nom_9___b45ebb391": 12617, "15___CATEGORICAL___nom_9___b47065a63": 12618, "15___CATEGORICAL___nom_9___b4733fc6a": 12619, "15___CATEGORICAL___nom_9___b47dae4e5": 12620, "15___CATEGORICAL___nom_9___b47fe3dfc": 12621, "15___CATEGORICAL___nom_9___b492ee3c2": 12622, "15___CATEGORICAL___nom_9___b497c4871": 12623, "15___CATEGORICAL___nom_9___b4a52ec69": 12624, "15___CATEGORICAL___nom_9___b4a9d1c26": 12625, "15___CATEGORICAL___nom_9___b4b6276cc": 12626, "15___CATEGORICAL___nom_9___b4c09fb14": 12627, "15___CATEGORICAL___nom_9___b4c293af0": 12628, "15___CATEGORICAL___nom_9___b4c9bece6": 12629, "15___CATEGORICAL___nom_9___b4ccf03f3": 12630, "15___CATEGORICAL___nom_9___b4d18bd01": 12631, "15___CATEGORICAL___nom_9___b4d60f2b1": 12632, "15___CATEGORICAL___nom_9___b4d711c05": 12633, "15___CATEGORICAL___nom_9___b4e18f25e": 12634, "15___CATEGORICAL___nom_9___b4e2bc2f1": 12635, "15___CATEGORICAL___nom_9___b4e5814bf": 12636, "15___CATEGORICAL___nom_9___b4eccdde4": 12637, "15___CATEGORICAL___nom_9___b4ed86251": 12638, "15___CATEGORICAL___nom_9___b4ef4769c": 12639, "15___CATEGORICAL___nom_9___b4f52961c": 12640, "15___CATEGORICAL___nom_9___b504979a0": 12641, "15___CATEGORICAL___nom_9___b504d0306": 12642, "15___CATEGORICAL___nom_9___b506039f3": 12643, "15___CATEGORICAL___nom_9___b51490b03": 12644, "15___CATEGORICAL___nom_9___b519d4850": 12645, "15___CATEGORICAL___nom_9___b51b5c674": 12646, "15___CATEGORICAL___nom_9___b51cb1773": 12647, "15___CATEGORICAL___nom_9___b526aa652": 12648, "15___CATEGORICAL___nom_9___b527c5e41": 12649, "15___CATEGORICAL___nom_9___b5291af2d": 12650, "15___CATEGORICAL___nom_9___b52a81205": 12651, "15___CATEGORICAL___nom_9___b5318cc42": 12652, "15___CATEGORICAL___nom_9___b531cc668": 12653, "15___CATEGORICAL___nom_9___b53608e04": 12654, "15___CATEGORICAL___nom_9___b5363f8c0": 12655, "15___CATEGORICAL___nom_9___b540145ee": 12656, "15___CATEGORICAL___nom_9___b5479c757": 12657, "15___CATEGORICAL___nom_9___b549e90c7": 12658, "15___CATEGORICAL___nom_9___b54a6187f": 12659, "15___CATEGORICAL___nom_9___b54c56cfd": 12660, "15___CATEGORICAL___nom_9___b54d6ff0c": 12661, "15___CATEGORICAL___nom_9___b5509c053": 12662, "15___CATEGORICAL___nom_9___b5542ddda": 12663, "15___CATEGORICAL___nom_9___b556940dc": 12664, "15___CATEGORICAL___nom_9___b5569598f": 12665, "15___CATEGORICAL___nom_9___b55e8dc1e": 12666, "15___CATEGORICAL___nom_9___b55f0ce49": 12667, "15___CATEGORICAL___nom_9___b55fa8fe5": 12668, "15___CATEGORICAL___nom_9___b5674b247": 12669, "15___CATEGORICAL___nom_9___b575b092e": 12670, "15___CATEGORICAL___nom_9___b576110b4": 12671, "15___CATEGORICAL___nom_9___b57773b40": 12672, "15___CATEGORICAL___nom_9___b5792fee0": 12673, "15___CATEGORICAL___nom_9___b57b0a355": 12674, "15___CATEGORICAL___nom_9___b57c033f1": 12675, "15___CATEGORICAL___nom_9___b58415d80": 12676, "15___CATEGORICAL___nom_9___b595f8f0e": 12677, "15___CATEGORICAL___nom_9___b5a112bf2": 12678, "15___CATEGORICAL___nom_9___b5a55233c": 12679, "15___CATEGORICAL___nom_9___b5a8ba01a": 12680, "15___CATEGORICAL___nom_9___b5b0d04dd": 12681, "15___CATEGORICAL___nom_9___b5b440c4f": 12682, "15___CATEGORICAL___nom_9___b5b5ae8fc": 12683, "15___CATEGORICAL___nom_9___b5b82024a": 12684, "15___CATEGORICAL___nom_9___b5bbc8860": 12685, "15___CATEGORICAL___nom_9___b5c306e32": 12686, "15___CATEGORICAL___nom_9___b5c9b852c": 12687, "15___CATEGORICAL___nom_9___b5cc58447": 12688, "15___CATEGORICAL___nom_9___b5cd6e5a0": 12689, "15___CATEGORICAL___nom_9___b5ce653e7": 12690, "15___CATEGORICAL___nom_9___b5cf09b45": 12691, "15___CATEGORICAL___nom_9___b5d58599d": 12692, "15___CATEGORICAL___nom_9___b5d86130b": 12693, "15___CATEGORICAL___nom_9___b5dcd414f": 12694, "15___CATEGORICAL___nom_9___b5de3dcc4": 12695, "15___CATEGORICAL___nom_9___b5df85fd6": 12696, "15___CATEGORICAL___nom_9___b5e4adbbc": 12697, "15___CATEGORICAL___nom_9___b5f0724aa": 12698, "15___CATEGORICAL___nom_9___b5f30b40b": 12699, "15___CATEGORICAL___nom_9___b5f911b60": 12700, "15___CATEGORICAL___nom_9___b5fc81539": 12701, "15___CATEGORICAL___nom_9___b60cc8e4f": 12702, "15___CATEGORICAL___nom_9___b6152994e": 12703, "15___CATEGORICAL___nom_9___b617aacb1": 12704, "15___CATEGORICAL___nom_9___b61e25489": 12705, "15___CATEGORICAL___nom_9___b62e1dd2f": 12706, "15___CATEGORICAL___nom_9___b62fdf2fb": 12707, "15___CATEGORICAL___nom_9___b63abc594": 12708, "15___CATEGORICAL___nom_9___b63e84b33": 12709, "15___CATEGORICAL___nom_9___b64177da6": 12710, "15___CATEGORICAL___nom_9___b64c73d16": 12711, "15___CATEGORICAL___nom_9___b654a164a": 12712, "15___CATEGORICAL___nom_9___b65c0a25a": 12713, "15___CATEGORICAL___nom_9___b6634f4ad": 12714, "15___CATEGORICAL___nom_9___b664ad637": 12715, "15___CATEGORICAL___nom_9___b66551d10": 12716, "15___CATEGORICAL___nom_9___b66588678": 12717, "15___CATEGORICAL___nom_9___b6686b850": 12718, "15___CATEGORICAL___nom_9___b66b185aa": 12719, "15___CATEGORICAL___nom_9___b677d44c4": 12720, "15___CATEGORICAL___nom_9___b680db035": 12721, "15___CATEGORICAL___nom_9___b68dfbb05": 12722, "15___CATEGORICAL___nom_9___b690f9295": 12723, "15___CATEGORICAL___nom_9___b69168ea6": 12724, "15___CATEGORICAL___nom_9___b693ed430": 12725, "15___CATEGORICAL___nom_9___b695f951a": 12726, "15___CATEGORICAL___nom_9___b698ba803": 12727, "15___CATEGORICAL___nom_9___b699103be": 12728, "15___CATEGORICAL___nom_9___b69c6d05f": 12729, "15___CATEGORICAL___nom_9___b6a44d42d": 12730, "15___CATEGORICAL___nom_9___b6af2480d": 12731, "15___CATEGORICAL___nom_9___b6b0a3ab0": 12732, "15___CATEGORICAL___nom_9___b6bb41dcd": 12733, "15___CATEGORICAL___nom_9___b6bb569c7": 12734, "15___CATEGORICAL___nom_9___b6c410698": 12735, "15___CATEGORICAL___nom_9___b6cf87006": 12736, "15___CATEGORICAL___nom_9___b6d1907e0": 12737, "15___CATEGORICAL___nom_9___b6dc65f10": 12738, "15___CATEGORICAL___nom_9___b6e641fb5": 12739, "15___CATEGORICAL___nom_9___b6e819490": 12740, "15___CATEGORICAL___nom_9___b6e91c9ed": 12741, "15___CATEGORICAL___nom_9___b6f2dd21b": 12742, "15___CATEGORICAL___nom_9___b6f2e177f": 12743, "15___CATEGORICAL___nom_9___b6fb15cf9": 12744, "15___CATEGORICAL___nom_9___b6fdde95f": 12745, "15___CATEGORICAL___nom_9___b6fe1220d": 12746, "15___CATEGORICAL___nom_9___b705b8cdc": 12747, "15___CATEGORICAL___nom_9___b70636c42": 12748, "15___CATEGORICAL___nom_9___b709311d9": 12749, "15___CATEGORICAL___nom_9___b70d32149": 12750, "15___CATEGORICAL___nom_9___b7127cea1": 12751, "15___CATEGORICAL___nom_9___b712c2b79": 12752, "15___CATEGORICAL___nom_9___b7167e779": 12753, "15___CATEGORICAL___nom_9___b725b19d7": 12754, "15___CATEGORICAL___nom_9___b728b9646": 12755, "15___CATEGORICAL___nom_9___b728ecb2c": 12756, "15___CATEGORICAL___nom_9___b72b8458e": 12757, "15___CATEGORICAL___nom_9___b72d83b25": 12758, "15___CATEGORICAL___nom_9___b72dd6006": 12759, "15___CATEGORICAL___nom_9___b735b8547": 12760, "15___CATEGORICAL___nom_9___b73dd855c": 12761, "15___CATEGORICAL___nom_9___b7404c1e0": 12762, "15___CATEGORICAL___nom_9___b743fa753": 12763, "15___CATEGORICAL___nom_9___b74ac4f17": 12764, "15___CATEGORICAL___nom_9___b7527cbcc": 12765, "15___CATEGORICAL___nom_9___b7557aea2": 12766, "15___CATEGORICAL___nom_9___b766bc2ae": 12767, "15___CATEGORICAL___nom_9___b7677bab8": 12768, "15___CATEGORICAL___nom_9___b76d63275": 12769, "15___CATEGORICAL___nom_9___b772950d2": 12770, "15___CATEGORICAL___nom_9___b7735fb52": 12771, "15___CATEGORICAL___nom_9___b77e45b71": 12772, "15___CATEGORICAL___nom_9___b78909064": 12773, "15___CATEGORICAL___nom_9___b792cd9fe": 12774, "15___CATEGORICAL___nom_9___b7978580f": 12775, "15___CATEGORICAL___nom_9___b7a4b8053": 12776, "15___CATEGORICAL___nom_9___b7b92ad9d": 12777, "15___CATEGORICAL___nom_9___b7baac3c6": 12778, "15___CATEGORICAL___nom_9___b7cd4ac46": 12779, "15___CATEGORICAL___nom_9___b7d944336": 12780, "15___CATEGORICAL___nom_9___b7d9f5547": 12781, "15___CATEGORICAL___nom_9___b7da1c0e3": 12782, "15___CATEGORICAL___nom_9___b7e757904": 12783, "15___CATEGORICAL___nom_9___b7f451fc7": 12784, "15___CATEGORICAL___nom_9___b80e7e924": 12785, "15___CATEGORICAL___nom_9___b81e426f9": 12786, "15___CATEGORICAL___nom_9___b8273bd27": 12787, "15___CATEGORICAL___nom_9___b828d22dd": 12788, "15___CATEGORICAL___nom_9___b82e15aa2": 12789, "15___CATEGORICAL___nom_9___b82e3348e": 12790, "15___CATEGORICAL___nom_9___b83124e51": 12791, "15___CATEGORICAL___nom_9___b83329eac": 12792, "15___CATEGORICAL___nom_9___b837529f3": 12793, "15___CATEGORICAL___nom_9___b83b48479": 12794, "15___CATEGORICAL___nom_9___b83ed879e": 12795, "15___CATEGORICAL___nom_9___b8424cc0f": 12796, "15___CATEGORICAL___nom_9___b85440919": 12797, "15___CATEGORICAL___nom_9___b854a03c2": 12798, "15___CATEGORICAL___nom_9___b85b03cb2": 12799, "15___CATEGORICAL___nom_9___b85dd273e": 12800, "15___CATEGORICAL___nom_9___b86622dba": 12801, "15___CATEGORICAL___nom_9___b86d799a3": 12802, "15___CATEGORICAL___nom_9___b86f09724": 12803, "15___CATEGORICAL___nom_9___b86f09c17": 12804, "15___CATEGORICAL___nom_9___b884ff4b2": 12805, "15___CATEGORICAL___nom_9___b8851a862": 12806, "15___CATEGORICAL___nom_9___b8874fae2": 12807, "15___CATEGORICAL___nom_9___b8891b598": 12808, "15___CATEGORICAL___nom_9___b88dc22d1": 12809, "15___CATEGORICAL___nom_9___b892af05b": 12810, "15___CATEGORICAL___nom_9___b8939922a": 12811, "15___CATEGORICAL___nom_9___b89647ed8": 12812, "15___CATEGORICAL___nom_9___b89f991b7": 12813, "15___CATEGORICAL___nom_9___b8a3a76b3": 12814, "15___CATEGORICAL___nom_9___b8a3b6895": 12815, "15___CATEGORICAL___nom_9___b8a9650e6": 12816, "15___CATEGORICAL___nom_9___b8ac1dc05": 12817, "15___CATEGORICAL___nom_9___b8c195d14": 12818, "15___CATEGORICAL___nom_9___b8c2db7cb": 12819, "15___CATEGORICAL___nom_9___b8cbe355d": 12820, "15___CATEGORICAL___nom_9___b8d20124a": 12821, "15___CATEGORICAL___nom_9___b8f381fdc": 12822, "15___CATEGORICAL___nom_9___b8fc16ebc": 12823, "15___CATEGORICAL___nom_9___b90bfbd66": 12824, "15___CATEGORICAL___nom_9___b90d5a4fa": 12825, "15___CATEGORICAL___nom_9___b912de090": 12826, "15___CATEGORICAL___nom_9___b91304c45": 12827, "15___CATEGORICAL___nom_9___b915b5f1f": 12828, "15___CATEGORICAL___nom_9___b91b5a8ad": 12829, "15___CATEGORICAL___nom_9___b91d04610": 12830, "15___CATEGORICAL___nom_9___b91f058fd": 12831, "15___CATEGORICAL___nom_9___b92175329": 12832, "15___CATEGORICAL___nom_9___b92bebfb6": 12833, "15___CATEGORICAL___nom_9___b9316c2a7": 12834, "15___CATEGORICAL___nom_9___b93218b0d": 12835, "15___CATEGORICAL___nom_9___b933358c6": 12836, "15___CATEGORICAL___nom_9___b93faf143": 12837, "15___CATEGORICAL___nom_9___b9458f656": 12838, "15___CATEGORICAL___nom_9___b951652da": 12839, "15___CATEGORICAL___nom_9___b958a2001": 12840, "15___CATEGORICAL___nom_9___b958e2812": 12841, "15___CATEGORICAL___nom_9___b95eda786": 12842, "15___CATEGORICAL___nom_9___b96c5e924": 12843, "15___CATEGORICAL___nom_9___b96e5b328": 12844, "15___CATEGORICAL___nom_9___b975b0d2a": 12845, "15___CATEGORICAL___nom_9___b97a29ea8": 12846, "15___CATEGORICAL___nom_9___b97ce9a01": 12847, "15___CATEGORICAL___nom_9___b97e3a146": 12848, "15___CATEGORICAL___nom_9___b99958ae2": 12849, "15___CATEGORICAL___nom_9___b9a36c529": 12850, "15___CATEGORICAL___nom_9___b9ad601fd": 12851, "15___CATEGORICAL___nom_9___b9b4bc8c7": 12852, "15___CATEGORICAL___nom_9___b9b8c568f": 12853, "15___CATEGORICAL___nom_9___b9bf9ff10": 12854, "15___CATEGORICAL___nom_9___b9c218099": 12855, "15___CATEGORICAL___nom_9___b9c456565": 12856, "15___CATEGORICAL___nom_9___b9c541a27": 12857, "15___CATEGORICAL___nom_9___b9c65a2c1": 12858, "15___CATEGORICAL___nom_9___b9d27ad0c": 12859, "15___CATEGORICAL___nom_9___b9de6f970": 12860, "15___CATEGORICAL___nom_9___b9e649c71": 12861, "15___CATEGORICAL___nom_9___b9e77018b": 12862, "15___CATEGORICAL___nom_9___b9ebfe76a": 12863, "15___CATEGORICAL___nom_9___b9f1c332c": 12864, "15___CATEGORICAL___nom_9___b9f793358": 12865, "15___CATEGORICAL___nom_9___b9fb74f65": 12866, "15___CATEGORICAL___nom_9___ba06560b8": 12867, "15___CATEGORICAL___nom_9___ba0bd4602": 12868, "15___CATEGORICAL___nom_9___ba0fe5062": 12869, "15___CATEGORICAL___nom_9___ba12075ba": 12870, "15___CATEGORICAL___nom_9___ba1df3397": 12871, "15___CATEGORICAL___nom_9___ba1ed3da9": 12872, "15___CATEGORICAL___nom_9___ba28e4d02": 12873, "15___CATEGORICAL___nom_9___ba28e71be": 12874, "15___CATEGORICAL___nom_9___ba2a0509a": 12875, "15___CATEGORICAL___nom_9___ba3565456": 12876, "15___CATEGORICAL___nom_9___ba38e53a6": 12877, "15___CATEGORICAL___nom_9___ba3c48c08": 12878, "15___CATEGORICAL___nom_9___ba3f4c324": 12879, "15___CATEGORICAL___nom_9___ba4d757a3": 12880, "15___CATEGORICAL___nom_9___ba50220c7": 12881, "15___CATEGORICAL___nom_9___ba514beb6": 12882, "15___CATEGORICAL___nom_9___ba55be03b": 12883, "15___CATEGORICAL___nom_9___ba55ca486": 12884, "15___CATEGORICAL___nom_9___ba5b74354": 12885, "15___CATEGORICAL___nom_9___ba6801410": 12886, "15___CATEGORICAL___nom_9___ba73907c7": 12887, "15___CATEGORICAL___nom_9___ba810d056": 12888, "15___CATEGORICAL___nom_9___ba877ef51": 12889, "15___CATEGORICAL___nom_9___ba91452a4": 12890, "15___CATEGORICAL___nom_9___ba948db8d": 12891, "15___CATEGORICAL___nom_9___ba9f1b6f2": 12892, "15___CATEGORICAL___nom_9___baaac11ab": 12893, "15___CATEGORICAL___nom_9___baab8e49b": 12894, "15___CATEGORICAL___nom_9___baaf13ecf": 12895, "15___CATEGORICAL___nom_9___bab157e32": 12896, "15___CATEGORICAL___nom_9___baba01f69": 12897, "15___CATEGORICAL___nom_9___babfbfb38": 12898, "15___CATEGORICAL___nom_9___bac7bbca0": 12899, "15___CATEGORICAL___nom_9___bacb0712d": 12900, "15___CATEGORICAL___nom_9___bacb935ef": 12901, "15___CATEGORICAL___nom_9___bad44964c": 12902, "15___CATEGORICAL___nom_9___bada73e20": 12903, "15___CATEGORICAL___nom_9___badc201f6": 12904, "15___CATEGORICAL___nom_9___bae876fdc": 12905, "15___CATEGORICAL___nom_9___baed2541e": 12906, "15___CATEGORICAL___nom_9___baed25c05": 12907, "15___CATEGORICAL___nom_9___baf2a87dd": 12908, "15___CATEGORICAL___nom_9___bafd850ca": 12909, "15___CATEGORICAL___nom_9___bb041cbbf": 12910, "15___CATEGORICAL___nom_9___bb089c737": 12911, "15___CATEGORICAL___nom_9___bb0fb2303": 12912, "15___CATEGORICAL___nom_9___bb112902e": 12913, "15___CATEGORICAL___nom_9___bb16768b6": 12914, "15___CATEGORICAL___nom_9___bb17f58bc": 12915, "15___CATEGORICAL___nom_9___bb1943750": 12916, "15___CATEGORICAL___nom_9___bb1f61c00": 12917, "15___CATEGORICAL___nom_9___bb201fc01": 12918, "15___CATEGORICAL___nom_9___bb2acdfc9": 12919, "15___CATEGORICAL___nom_9___bb2cab59c": 12920, "15___CATEGORICAL___nom_9___bb2e53f62": 12921, "15___CATEGORICAL___nom_9___bb2f0e618": 12922, "15___CATEGORICAL___nom_9___bb2f99e3d": 12923, "15___CATEGORICAL___nom_9___bb3164263": 12924, "15___CATEGORICAL___nom_9___bb3b97c78": 12925, "15___CATEGORICAL___nom_9___bb3c39c05": 12926, "15___CATEGORICAL___nom_9___bb3fcd9b9": 12927, "15___CATEGORICAL___nom_9___bb4fcc64b": 12928, "15___CATEGORICAL___nom_9___bb526790c": 12929, "15___CATEGORICAL___nom_9___bb56c372b": 12930, "15___CATEGORICAL___nom_9___bb57caf6b": 12931, "15___CATEGORICAL___nom_9___bb5b3d10a": 12932, "15___CATEGORICAL___nom_9___bb6296c2c": 12933, "15___CATEGORICAL___nom_9___bb678c9f1": 12934, "15___CATEGORICAL___nom_9___bb6cb0791": 12935, "15___CATEGORICAL___nom_9___bb72deb38": 12936, "15___CATEGORICAL___nom_9___bb7ad6369": 12937, "15___CATEGORICAL___nom_9___bb7d6db41": 12938, "15___CATEGORICAL___nom_9___bb8278fa8": 12939, "15___CATEGORICAL___nom_9___bb9d10adf": 12940, "15___CATEGORICAL___nom_9___bb9e6d525": 12941, "15___CATEGORICAL___nom_9___bbabab387": 12942, "15___CATEGORICAL___nom_9___bbae3c52c": 12943, "15___CATEGORICAL___nom_9___bbceed7c8": 12944, "15___CATEGORICAL___nom_9___bbd3f2395": 12945, "15___CATEGORICAL___nom_9___bbd84d970": 12946, "15___CATEGORICAL___nom_9___bbd8c7ca6": 12947, "15___CATEGORICAL___nom_9___bbd9440eb": 12948, "15___CATEGORICAL___nom_9___bbe1bd0b4": 12949, "15___CATEGORICAL___nom_9___bbe9dce97": 12950, "15___CATEGORICAL___nom_9___bbf0fd504": 12951, "15___CATEGORICAL___nom_9___bc05ed12f": 12952, "15___CATEGORICAL___nom_9___bc0a25757": 12953, "15___CATEGORICAL___nom_9___bc0b1c828": 12954, "15___CATEGORICAL___nom_9___bc0f02bcd": 12955, "15___CATEGORICAL___nom_9___bc10d0880": 12956, "15___CATEGORICAL___nom_9___bc12a34ec": 12957, "15___CATEGORICAL___nom_9___bc1c79102": 12958, "15___CATEGORICAL___nom_9___bc1d77eea": 12959, "15___CATEGORICAL___nom_9___bc1e9bb2d": 12960, "15___CATEGORICAL___nom_9___bc1f4f616": 12961, "15___CATEGORICAL___nom_9___bc20a4884": 12962, "15___CATEGORICAL___nom_9___bc22956f5": 12963, "15___CATEGORICAL___nom_9___bc2326de4": 12964, "15___CATEGORICAL___nom_9___bc28b44e5": 12965, "15___CATEGORICAL___nom_9___bc29fa4d8": 12966, "15___CATEGORICAL___nom_9___bc2cc93d2": 12967, "15___CATEGORICAL___nom_9___bc3125b95": 12968, "15___CATEGORICAL___nom_9___bc328d761": 12969, "15___CATEGORICAL___nom_9___bc3714ffe": 12970, "15___CATEGORICAL___nom_9___bc42a21b0": 12971, "15___CATEGORICAL___nom_9___bc4beb968": 12972, "15___CATEGORICAL___nom_9___bc5809dd0": 12973, "15___CATEGORICAL___nom_9___bc5ac5cde": 12974, "15___CATEGORICAL___nom_9___bc67f3a0a": 12975, "15___CATEGORICAL___nom_9___bc69f5239": 12976, "15___CATEGORICAL___nom_9___bc6e73ef1": 12977, "15___CATEGORICAL___nom_9___bc7095f64": 12978, "15___CATEGORICAL___nom_9___bc74dd1ab": 12979, "15___CATEGORICAL___nom_9___bc799c893": 12980, "15___CATEGORICAL___nom_9___bc80dec9a": 12981, "15___CATEGORICAL___nom_9___bc86c834c": 12982, "15___CATEGORICAL___nom_9___bc8c26565": 12983, "15___CATEGORICAL___nom_9___bc8ce58d1": 12984, "15___CATEGORICAL___nom_9___bc8ee1501": 12985, "15___CATEGORICAL___nom_9___bc907d536": 12986, "15___CATEGORICAL___nom_9___bc93c2614": 12987, "15___CATEGORICAL___nom_9___bc97fe974": 12988, "15___CATEGORICAL___nom_9___bc9b57fbe": 12989, "15___CATEGORICAL___nom_9___bca106500": 12990, "15___CATEGORICAL___nom_9___bca3330ca": 12991, "15___CATEGORICAL___nom_9___bca345eea": 12992, "15___CATEGORICAL___nom_9___bca5b2c48": 12993, "15___CATEGORICAL___nom_9___bca5e4155": 12994, "15___CATEGORICAL___nom_9___bca6de383": 12995, "15___CATEGORICAL___nom_9___bcb21cf46": 12996, "15___CATEGORICAL___nom_9___bcb5fad1a": 12997, "15___CATEGORICAL___nom_9___bcba122c6": 12998, "15___CATEGORICAL___nom_9___bcc61fb1f": 12999, "15___CATEGORICAL___nom_9___bcca5d51b": 13000, "15___CATEGORICAL___nom_9___bcd2d41c7": 13001, "15___CATEGORICAL___nom_9___bcd72a1a9": 13002, "15___CATEGORICAL___nom_9___bcd82b6ac": 13003, "15___CATEGORICAL___nom_9___bcd89e963": 13004, "15___CATEGORICAL___nom_9___bce434c81": 13005, "15___CATEGORICAL___nom_9___bce448181": 13006, "15___CATEGORICAL___nom_9___bce571b11": 13007, "15___CATEGORICAL___nom_9___bce6b96fd": 13008, "15___CATEGORICAL___nom_9___bceb7ed71": 13009, "15___CATEGORICAL___nom_9___bcecf7c23": 13010, "15___CATEGORICAL___nom_9___bcf087855": 13011, "15___CATEGORICAL___nom_9___bcf7e24af": 13012, "15___CATEGORICAL___nom_9___bcf8e3d42": 13013, "15___CATEGORICAL___nom_9___bcfdea19c": 13014, "15___CATEGORICAL___nom_9___bcfe2dde1": 13015, "15___CATEGORICAL___nom_9___bd09f1c0d": 13016, "15___CATEGORICAL___nom_9___bd0c8d6ee": 13017, "15___CATEGORICAL___nom_9___bd14ae94a": 13018, "15___CATEGORICAL___nom_9___bd164696f": 13019, "15___CATEGORICAL___nom_9___bd1c2871a": 13020, "15___CATEGORICAL___nom_9___bd1d58982": 13021, "15___CATEGORICAL___nom_9___bd1e00f67": 13022, "15___CATEGORICAL___nom_9___bd20fc111": 13023, "15___CATEGORICAL___nom_9___bd2c56d7d": 13024, "15___CATEGORICAL___nom_9___bd30eb8c4": 13025, "15___CATEGORICAL___nom_9___bd35140e4": 13026, "15___CATEGORICAL___nom_9___bd3d32ce8": 13027, "15___CATEGORICAL___nom_9___bd3ebede0": 13028, "15___CATEGORICAL___nom_9___bd3f13f24": 13029, "15___CATEGORICAL___nom_9___bd497354d": 13030, "15___CATEGORICAL___nom_9___bd4c4ee08": 13031, "15___CATEGORICAL___nom_9___bd538e17d": 13032, "15___CATEGORICAL___nom_9___bd567cd55": 13033, "15___CATEGORICAL___nom_9___bd590f572": 13034, "15___CATEGORICAL___nom_9___bd654c2c0": 13035, "15___CATEGORICAL___nom_9___bd6ac956f": 13036, "15___CATEGORICAL___nom_9___bd6cccd56": 13037, "15___CATEGORICAL___nom_9___bd70dabc3": 13038, "15___CATEGORICAL___nom_9___bd7547b4a": 13039, "15___CATEGORICAL___nom_9___bd7d39e52": 13040, "15___CATEGORICAL___nom_9___bd811b570": 13041, "15___CATEGORICAL___nom_9___bd8265e5e": 13042, "15___CATEGORICAL___nom_9___bd829faa2": 13043, "15___CATEGORICAL___nom_9___bd85b0719": 13044, "15___CATEGORICAL___nom_9___bd863b61f": 13045, "15___CATEGORICAL___nom_9___bd88a5060": 13046, "15___CATEGORICAL___nom_9___bd8c5255d": 13047, "15___CATEGORICAL___nom_9___bd8c6d13d": 13048, "15___CATEGORICAL___nom_9___bd9a01327": 13049, "15___CATEGORICAL___nom_9___bdaaa69ad": 13050, "15___CATEGORICAL___nom_9___bdb2c2ac3": 13051, "15___CATEGORICAL___nom_9___bdb71f60b": 13052, "15___CATEGORICAL___nom_9___bdb7db170": 13053, "15___CATEGORICAL___nom_9___bdc20a92e": 13054, "15___CATEGORICAL___nom_9___bdceeec1d": 13055, "15___CATEGORICAL___nom_9___bdf53d5d0": 13056, "15___CATEGORICAL___nom_9___bdf8ba5a4": 13057, "15___CATEGORICAL___nom_9___bdfb8a602": 13058, "15___CATEGORICAL___nom_9___bdff7576f": 13059, "15___CATEGORICAL___nom_9___be0bbd9b1": 13060, "15___CATEGORICAL___nom_9___be0e02bac": 13061, "15___CATEGORICAL___nom_9___be1069b85": 13062, "15___CATEGORICAL___nom_9___be17877e3": 13063, "15___CATEGORICAL___nom_9___be187ada0": 13064, "15___CATEGORICAL___nom_9___be206435c": 13065, "15___CATEGORICAL___nom_9___be212e796": 13066, "15___CATEGORICAL___nom_9___be253681b": 13067, "15___CATEGORICAL___nom_9___be25b31e1": 13068, "15___CATEGORICAL___nom_9___be2a1c253": 13069, "15___CATEGORICAL___nom_9___be2e034a7": 13070, "15___CATEGORICAL___nom_9___be2eef4f7": 13071, "15___CATEGORICAL___nom_9___be326d1a8": 13072, "15___CATEGORICAL___nom_9___be399a824": 13073, "15___CATEGORICAL___nom_9___be3bf2347": 13074, "15___CATEGORICAL___nom_9___be3dd0431": 13075, "15___CATEGORICAL___nom_9___be4689cdf": 13076, "15___CATEGORICAL___nom_9___be4851154": 13077, "15___CATEGORICAL___nom_9___be58d5b59": 13078, "15___CATEGORICAL___nom_9___be5c7123b": 13079, "15___CATEGORICAL___nom_9___be709cfc7": 13080, "15___CATEGORICAL___nom_9___be72e96ca": 13081, "15___CATEGORICAL___nom_9___be77a26ab": 13082, "15___CATEGORICAL___nom_9___be81fe64f": 13083, "15___CATEGORICAL___nom_9___be84a621a": 13084, "15___CATEGORICAL___nom_9___be90613b6": 13085, "15___CATEGORICAL___nom_9___be907d88a": 13086, "15___CATEGORICAL___nom_9___be90a50b6": 13087, "15___CATEGORICAL___nom_9___be922ade1": 13088, "15___CATEGORICAL___nom_9___be93072e4": 13089, "15___CATEGORICAL___nom_9___be938e689": 13090, "15___CATEGORICAL___nom_9___be9923e6f": 13091, "15___CATEGORICAL___nom_9___bea44ba74": 13092, "15___CATEGORICAL___nom_9___bea88c18a": 13093, "15___CATEGORICAL___nom_9___beb12ca55": 13094, "15___CATEGORICAL___nom_9___beb2030c4": 13095, "15___CATEGORICAL___nom_9___beb3bb2e0": 13096, "15___CATEGORICAL___nom_9___beb59adbe": 13097, "15___CATEGORICAL___nom_9___beb82cf15": 13098, "15___CATEGORICAL___nom_9___bec032c5a": 13099, "15___CATEGORICAL___nom_9___bec5dbe52": 13100, "15___CATEGORICAL___nom_9___becb0af8c": 13101, "15___CATEGORICAL___nom_9___bed2b6c77": 13102, "15___CATEGORICAL___nom_9___bed44f785": 13103, "15___CATEGORICAL___nom_9___bed490306": 13104, "15___CATEGORICAL___nom_9___bed934832": 13105, "15___CATEGORICAL___nom_9___bedab8574": 13106, "15___CATEGORICAL___nom_9___bedb0a52c": 13107, "15___CATEGORICAL___nom_9___bedcacb4e": 13108, "15___CATEGORICAL___nom_9___bede99080": 13109, "15___CATEGORICAL___nom_9___bef2bc731": 13110, "15___CATEGORICAL___nom_9___befba6830": 13111, "15___CATEGORICAL___nom_9___befc4e68c": 13112, "15___CATEGORICAL___nom_9___bf018280a": 13113, "15___CATEGORICAL___nom_9___bf0fd54fa": 13114, "15___CATEGORICAL___nom_9___bf11c3045": 13115, "15___CATEGORICAL___nom_9___bf2310ba9": 13116, "15___CATEGORICAL___nom_9___bf2c8b8a4": 13117, "15___CATEGORICAL___nom_9___bf3170471": 13118, "15___CATEGORICAL___nom_9___bf323412d": 13119, "15___CATEGORICAL___nom_9___bf341f531": 13120, "15___CATEGORICAL___nom_9___bf3a2429a": 13121, "15___CATEGORICAL___nom_9___bf43000dd": 13122, "15___CATEGORICAL___nom_9___bf46522b8": 13123, "15___CATEGORICAL___nom_9___bf484d60e": 13124, "15___CATEGORICAL___nom_9___bf523b1e5": 13125, "15___CATEGORICAL___nom_9___bf53f0f7b": 13126, "15___CATEGORICAL___nom_9___bf578c520": 13127, "15___CATEGORICAL___nom_9___bf60864b6": 13128, "15___CATEGORICAL___nom_9___bf6297d4b": 13129, "15___CATEGORICAL___nom_9___bf650ac99": 13130, "15___CATEGORICAL___nom_9___bf78a0de0": 13131, "15___CATEGORICAL___nom_9___bf7ac6293": 13132, "15___CATEGORICAL___nom_9___bf8728333": 13133, "15___CATEGORICAL___nom_9___bf8aa000e": 13134, "15___CATEGORICAL___nom_9___bf8d69238": 13135, "15___CATEGORICAL___nom_9___bf91ad95c": 13136, "15___CATEGORICAL___nom_9___bf946d043": 13137, "15___CATEGORICAL___nom_9___bfa41733a": 13138, "15___CATEGORICAL___nom_9___bfbe75a7b": 13139, "15___CATEGORICAL___nom_9___bfc4b2251": 13140, "15___CATEGORICAL___nom_9___bfcafc3b9": 13141, "15___CATEGORICAL___nom_9___bfd6f1a89": 13142, "15___CATEGORICAL___nom_9___bfe433c7f": 13143, "15___CATEGORICAL___nom_9___bfe761f42": 13144, "15___CATEGORICAL___nom_9___bff66b115": 13145, "15___CATEGORICAL___nom_9___c003b8fba": 13146, "15___CATEGORICAL___nom_9___c0062ac77": 13147, "15___CATEGORICAL___nom_9___c007da1a4": 13148, "15___CATEGORICAL___nom_9___c00bfa0e7": 13149, "15___CATEGORICAL___nom_9___c00e6639d": 13150, "15___CATEGORICAL___nom_9___c01380456": 13151, "15___CATEGORICAL___nom_9___c0182c7d5": 13152, "15___CATEGORICAL___nom_9___c01cff4a2": 13153, "15___CATEGORICAL___nom_9___c01e58af6": 13154, "15___CATEGORICAL___nom_9___c02929816": 13155, "15___CATEGORICAL___nom_9___c02d836a1": 13156, "15___CATEGORICAL___nom_9___c02f1e371": 13157, "15___CATEGORICAL___nom_9___c0318301f": 13158, "15___CATEGORICAL___nom_9___c0339523a": 13159, "15___CATEGORICAL___nom_9___c03639170": 13160, "15___CATEGORICAL___nom_9___c0502b5dd": 13161, "15___CATEGORICAL___nom_9___c0596de85": 13162, "15___CATEGORICAL___nom_9___c05991a24": 13163, "15___CATEGORICAL___nom_9___c05c591d1": 13164, "15___CATEGORICAL___nom_9___c064a7240": 13165, "15___CATEGORICAL___nom_9___c064af4d5": 13166, "15___CATEGORICAL___nom_9___c066a1119": 13167, "15___CATEGORICAL___nom_9___c06f26040": 13168, "15___CATEGORICAL___nom_9___c072d3025": 13169, "15___CATEGORICAL___nom_9___c077a694b": 13170, "15___CATEGORICAL___nom_9___c084699dd": 13171, "15___CATEGORICAL___nom_9___c08c3582a": 13172, "15___CATEGORICAL___nom_9___c08f7d3be": 13173, "15___CATEGORICAL___nom_9___c094fbb37": 13174, "15___CATEGORICAL___nom_9___c0ad22453": 13175, "15___CATEGORICAL___nom_9___c0b1cbb3c": 13176, "15___CATEGORICAL___nom_9___c0b5391fa": 13177, "15___CATEGORICAL___nom_9___c0b71d6ef": 13178, "15___CATEGORICAL___nom_9___c0ba70402": 13179, "15___CATEGORICAL___nom_9___c0ba77fa1": 13180, "15___CATEGORICAL___nom_9___c0bb419e0": 13181, "15___CATEGORICAL___nom_9___c0c4d23f2": 13182, "15___CATEGORICAL___nom_9___c0cb3d0b4": 13183, "15___CATEGORICAL___nom_9___c0cbfcc73": 13184, "15___CATEGORICAL___nom_9___c0dc1fe45": 13185, "15___CATEGORICAL___nom_9___c0e383874": 13186, "15___CATEGORICAL___nom_9___c0ed68836": 13187, "15___CATEGORICAL___nom_9___c0f8befb7": 13188, "15___CATEGORICAL___nom_9___c0fa98ac1": 13189, "15___CATEGORICAL___nom_9___c0fb801d9": 13190, "15___CATEGORICAL___nom_9___c10872f96": 13191, "15___CATEGORICAL___nom_9___c10936afa": 13192, "15___CATEGORICAL___nom_9___c10b332b8": 13193, "15___CATEGORICAL___nom_9___c10c2ced0": 13194, "15___CATEGORICAL___nom_9___c10ffc332": 13195, "15___CATEGORICAL___nom_9___c11acbad4": 13196, "15___CATEGORICAL___nom_9___c11f1722e": 13197, "15___CATEGORICAL___nom_9___c120f1c27": 13198, "15___CATEGORICAL___nom_9___c1213165f": 13199, "15___CATEGORICAL___nom_9___c1258639c": 13200, "15___CATEGORICAL___nom_9___c126e56fe": 13201, "15___CATEGORICAL___nom_9___c1324082f": 13202, "15___CATEGORICAL___nom_9___c13457cdc": 13203, "15___CATEGORICAL___nom_9___c15202cac": 13204, "15___CATEGORICAL___nom_9___c1575808b": 13205, "15___CATEGORICAL___nom_9___c15b9aff6": 13206, "15___CATEGORICAL___nom_9___c1642238d": 13207, "15___CATEGORICAL___nom_9___c170f9a40": 13208, "15___CATEGORICAL___nom_9___c17a5ced3": 13209, "15___CATEGORICAL___nom_9___c18567bad": 13210, "15___CATEGORICAL___nom_9___c1899b915": 13211, "15___CATEGORICAL___nom_9___c18d537db": 13212, "15___CATEGORICAL___nom_9___c18e40fde": 13213, "15___CATEGORICAL___nom_9___c190681d2": 13214, "15___CATEGORICAL___nom_9___c19730162": 13215, "15___CATEGORICAL___nom_9___c198544fb": 13216, "15___CATEGORICAL___nom_9___c19929e95": 13217, "15___CATEGORICAL___nom_9___c19a114b5": 13218, "15___CATEGORICAL___nom_9___c19b4d222": 13219, "15___CATEGORICAL___nom_9___c19d91105": 13220, "15___CATEGORICAL___nom_9___c19f364d1": 13221, "15___CATEGORICAL___nom_9___c1ad140e0": 13222, "15___CATEGORICAL___nom_9___c1b23ff43": 13223, "15___CATEGORICAL___nom_9___c1bc05876": 13224, "15___CATEGORICAL___nom_9___c1bc6a819": 13225, "15___CATEGORICAL___nom_9___c1bff2db0": 13226, "15___CATEGORICAL___nom_9___c1c07b00d": 13227, "15___CATEGORICAL___nom_9___c1c2f47bc": 13228, "15___CATEGORICAL___nom_9___c1c53caa3": 13229, "15___CATEGORICAL___nom_9___c1c5d17cf": 13230, "15___CATEGORICAL___nom_9___c1cc17244": 13231, "15___CATEGORICAL___nom_9___c1ce5a6ac": 13232, "15___CATEGORICAL___nom_9___c1dc485c6": 13233, "15___CATEGORICAL___nom_9___c1e0109e6": 13234, "15___CATEGORICAL___nom_9___c1ee53fe7": 13235, "15___CATEGORICAL___nom_9___c1fab5889": 13236, "15___CATEGORICAL___nom_9___c1ff010e8": 13237, "15___CATEGORICAL___nom_9___c200aec2a": 13238, "15___CATEGORICAL___nom_9___c20bc11c2": 13239, "15___CATEGORICAL___nom_9___c212d340f": 13240, "15___CATEGORICAL___nom_9___c21b668d8": 13241, "15___CATEGORICAL___nom_9___c21faf0bd": 13242, "15___CATEGORICAL___nom_9___c220983f1": 13243, "15___CATEGORICAL___nom_9___c223c0904": 13244, "15___CATEGORICAL___nom_9___c22e0f963": 13245, "15___CATEGORICAL___nom_9___c23cbecd3": 13246, "15___CATEGORICAL___nom_9___c23f3fe74": 13247, "15___CATEGORICAL___nom_9___c2420591d": 13248, "15___CATEGORICAL___nom_9___c2429c982": 13249, "15___CATEGORICAL___nom_9___c24984f97": 13250, "15___CATEGORICAL___nom_9___c25d9931c": 13251, "15___CATEGORICAL___nom_9___c263032a9": 13252, "15___CATEGORICAL___nom_9___c26349388": 13253, "15___CATEGORICAL___nom_9___c2637ab4c": 13254, "15___CATEGORICAL___nom_9___c268f48bd": 13255, "15___CATEGORICAL___nom_9___c26c794b2": 13256, "15___CATEGORICAL___nom_9___c279697b1": 13257, "15___CATEGORICAL___nom_9___c27e99de1": 13258, "15___CATEGORICAL___nom_9___c28098aaf": 13259, "15___CATEGORICAL___nom_9___c28feeb65": 13260, "15___CATEGORICAL___nom_9___c2a84fff1": 13261, "15___CATEGORICAL___nom_9___c2ada31ca": 13262, "15___CATEGORICAL___nom_9___c2aefd43c": 13263, "15___CATEGORICAL___nom_9___c2b03a3b4": 13264, "15___CATEGORICAL___nom_9___c2b9c1fea": 13265, "15___CATEGORICAL___nom_9___c2bb60a05": 13266, "15___CATEGORICAL___nom_9___c2bcf37a4": 13267, "15___CATEGORICAL___nom_9___c2bdcc981": 13268, "15___CATEGORICAL___nom_9___c2c560cd4": 13269, "15___CATEGORICAL___nom_9___c2d90181f": 13270, "15___CATEGORICAL___nom_9___c2df43d5e": 13271, "15___CATEGORICAL___nom_9___c2e8b4385": 13272, "15___CATEGORICAL___nom_9___c2ed35cbb": 13273, "15___CATEGORICAL___nom_9___c2f264e9f": 13274, "15___CATEGORICAL___nom_9___c2fc673dc": 13275, "15___CATEGORICAL___nom_9___c2fe2f63b": 13276, "15___CATEGORICAL___nom_9___c2ff464db": 13277, "15___CATEGORICAL___nom_9___c30013d5c": 13278, "15___CATEGORICAL___nom_9___c307a2484": 13279, "15___CATEGORICAL___nom_9___c310347aa": 13280, "15___CATEGORICAL___nom_9___c31765416": 13281, "15___CATEGORICAL___nom_9___c317aeaee": 13282, "15___CATEGORICAL___nom_9___c31c67153": 13283, "15___CATEGORICAL___nom_9___c3243a62a": 13284, "15___CATEGORICAL___nom_9___c32522398": 13285, "15___CATEGORICAL___nom_9___c32ed341b": 13286, "15___CATEGORICAL___nom_9___c330546ed": 13287, "15___CATEGORICAL___nom_9___c3382acf4": 13288, "15___CATEGORICAL___nom_9___c338bd335": 13289, "15___CATEGORICAL___nom_9___c3441250f": 13290, "15___CATEGORICAL___nom_9___c354fa3fa": 13291, "15___CATEGORICAL___nom_9___c35823557": 13292, "15___CATEGORICAL___nom_9___c363e9a8b": 13293, "15___CATEGORICAL___nom_9___c36a0b7a2": 13294, "15___CATEGORICAL___nom_9___c36f1406c": 13295, "15___CATEGORICAL___nom_9___c37176a01": 13296, "15___CATEGORICAL___nom_9___c37cc6937": 13297, "15___CATEGORICAL___nom_9___c37f9312b": 13298, "15___CATEGORICAL___nom_9___c38119748": 13299, "15___CATEGORICAL___nom_9___c388c5477": 13300, "15___CATEGORICAL___nom_9___c3899751a": 13301, "15___CATEGORICAL___nom_9___c38e0b1af": 13302, "15___CATEGORICAL___nom_9___c390b0f2a": 13303, "15___CATEGORICAL___nom_9___c391d01f4": 13304, "15___CATEGORICAL___nom_9___c3aac7de7": 13305, "15___CATEGORICAL___nom_9___c3b3eb0d6": 13306, "15___CATEGORICAL___nom_9___c3bb53e8d": 13307, "15___CATEGORICAL___nom_9___c3c1946ea": 13308, "15___CATEGORICAL___nom_9___c3d48166f": 13309, "15___CATEGORICAL___nom_9___c3d595820": 13310, "15___CATEGORICAL___nom_9___c3d6213f9": 13311, "15___CATEGORICAL___nom_9___c3d835199": 13312, "15___CATEGORICAL___nom_9___c3e155f00": 13313, "15___CATEGORICAL___nom_9___c3e7c4c3e": 13314, "15___CATEGORICAL___nom_9___c3f7bd15c": 13315, "15___CATEGORICAL___nom_9___c3f8e8f22": 13316, "15___CATEGORICAL___nom_9___c3fd8114c": 13317, "15___CATEGORICAL___nom_9___c40084723": 13318, "15___CATEGORICAL___nom_9___c4044c33a": 13319, "15___CATEGORICAL___nom_9___c40d30c72": 13320, "15___CATEGORICAL___nom_9___c41b0ca91": 13321, "15___CATEGORICAL___nom_9___c41ceaa04": 13322, "15___CATEGORICAL___nom_9___c41ea8c6e": 13323, "15___CATEGORICAL___nom_9___c41fcbaf2": 13324, "15___CATEGORICAL___nom_9___c420fcc91": 13325, "15___CATEGORICAL___nom_9___c4223aa7f": 13326, "15___CATEGORICAL___nom_9___c433876e1": 13327, "15___CATEGORICAL___nom_9___c43552b1a": 13328, "15___CATEGORICAL___nom_9___c43d5b876": 13329, "15___CATEGORICAL___nom_9___c441c4c05": 13330, "15___CATEGORICAL___nom_9___c44609f5a": 13331, "15___CATEGORICAL___nom_9___c44e15cdf": 13332, "15___CATEGORICAL___nom_9___c45e0bd5a": 13333, "15___CATEGORICAL___nom_9___c465f7b64": 13334, "15___CATEGORICAL___nom_9___c46f8c1bc": 13335, "15___CATEGORICAL___nom_9___c48134bb6": 13336, "15___CATEGORICAL___nom_9___c484056ad": 13337, "15___CATEGORICAL___nom_9___c484f2484": 13338, "15___CATEGORICAL___nom_9___c48dc2eb3": 13339, "15___CATEGORICAL___nom_9___c48ed0c19": 13340, "15___CATEGORICAL___nom_9___c492577a1": 13341, "15___CATEGORICAL___nom_9___c493c5bc3": 13342, "15___CATEGORICAL___nom_9___c496bfcd1": 13343, "15___CATEGORICAL___nom_9___c4991470a": 13344, "15___CATEGORICAL___nom_9___c49a36482": 13345, "15___CATEGORICAL___nom_9___c49baff89": 13346, "15___CATEGORICAL___nom_9___c4a8f86ff": 13347, "15___CATEGORICAL___nom_9___c4af64bc8": 13348, "15___CATEGORICAL___nom_9___c4b2cdb49": 13349, "15___CATEGORICAL___nom_9___c4b3f0533": 13350, "15___CATEGORICAL___nom_9___c4b6205e9": 13351, "15___CATEGORICAL___nom_9___c4b6a1da6": 13352, "15___CATEGORICAL___nom_9___c4bcc3fa5": 13353, "15___CATEGORICAL___nom_9___c4bfbb125": 13354, "15___CATEGORICAL___nom_9___c4ccdcb6b": 13355, "15___CATEGORICAL___nom_9___c4d43d4cf": 13356, "15___CATEGORICAL___nom_9___c4e148b66": 13357, "15___CATEGORICAL___nom_9___c4e25f270": 13358, "15___CATEGORICAL___nom_9___c4e452e63": 13359, "15___CATEGORICAL___nom_9___c4e68e513": 13360, "15___CATEGORICAL___nom_9___c4e7912a7": 13361, "15___CATEGORICAL___nom_9___c4ebd340d": 13362, "15___CATEGORICAL___nom_9___c4f05ecaf": 13363, "15___CATEGORICAL___nom_9___c4f72cc54": 13364, "15___CATEGORICAL___nom_9___c4f72e38f": 13365, "15___CATEGORICAL___nom_9___c4fd386fd": 13366, "15___CATEGORICAL___nom_9___c503fe80e": 13367, "15___CATEGORICAL___nom_9___c50401860": 13368, "15___CATEGORICAL___nom_9___c5084be1a": 13369, "15___CATEGORICAL___nom_9___c50aa26e1": 13370, "15___CATEGORICAL___nom_9___c52048d59": 13371, "15___CATEGORICAL___nom_9___c524d716c": 13372, "15___CATEGORICAL___nom_9___c52702800": 13373, "15___CATEGORICAL___nom_9___c5272a622": 13374, "15___CATEGORICAL___nom_9___c52bca283": 13375, "15___CATEGORICAL___nom_9___c530e099c": 13376, "15___CATEGORICAL___nom_9___c533ba800": 13377, "15___CATEGORICAL___nom_9___c54660949": 13378, "15___CATEGORICAL___nom_9___c547b3466": 13379, "15___CATEGORICAL___nom_9___c54a4d273": 13380, "15___CATEGORICAL___nom_9___c55533419": 13381, "15___CATEGORICAL___nom_9___c56e65a40": 13382, "15___CATEGORICAL___nom_9___c56f59466": 13383, "15___CATEGORICAL___nom_9___c57b300f1": 13384, "15___CATEGORICAL___nom_9___c57ff1c91": 13385, "15___CATEGORICAL___nom_9___c582dec6d": 13386, "15___CATEGORICAL___nom_9___c588733fa": 13387, "15___CATEGORICAL___nom_9___c58d43125": 13388, "15___CATEGORICAL___nom_9___c58d9f791": 13389, "15___CATEGORICAL___nom_9___c58dec0d7": 13390, "15___CATEGORICAL___nom_9___c58f3bf02": 13391, "15___CATEGORICAL___nom_9___c59144997": 13392, "15___CATEGORICAL___nom_9___c5955465a": 13393, "15___CATEGORICAL___nom_9___c59e44911": 13394, "15___CATEGORICAL___nom_9___c5acadd91": 13395, "15___CATEGORICAL___nom_9___c5ad6bf46": 13396, "15___CATEGORICAL___nom_9___c5ae732d8": 13397, "15___CATEGORICAL___nom_9___c5b37c934": 13398, "15___CATEGORICAL___nom_9___c5b96181b": 13399, "15___CATEGORICAL___nom_9___c5b9d43bd": 13400, "15___CATEGORICAL___nom_9___c5c827fb6": 13401, "15___CATEGORICAL___nom_9___c5cec7fdf": 13402, "15___CATEGORICAL___nom_9___c5d1d64b5": 13403, "15___CATEGORICAL___nom_9___c5d4f951b": 13404, "15___CATEGORICAL___nom_9___c5e6aa127": 13405, "15___CATEGORICAL___nom_9___c5f15ea3d": 13406, "15___CATEGORICAL___nom_9___c5fa302b5": 13407, "15___CATEGORICAL___nom_9___c5fbecc9e": 13408, "15___CATEGORICAL___nom_9___c5fffe71f": 13409, "15___CATEGORICAL___nom_9___c6048d4f4": 13410, "15___CATEGORICAL___nom_9___c604969a2": 13411, "15___CATEGORICAL___nom_9___c6164aded": 13412, "15___CATEGORICAL___nom_9___c61e71c92": 13413, "15___CATEGORICAL___nom_9___c62416585": 13414, "15___CATEGORICAL___nom_9___c62942b74": 13415, "15___CATEGORICAL___nom_9___c62d29488": 13416, "15___CATEGORICAL___nom_9___c62fece22": 13417, "15___CATEGORICAL___nom_9___c6302f8d5": 13418, "15___CATEGORICAL___nom_9___c636fdc0b": 13419, "15___CATEGORICAL___nom_9___c637b4cf0": 13420, "15___CATEGORICAL___nom_9___c63d01adb": 13421, "15___CATEGORICAL___nom_9___c63edf709": 13422, "15___CATEGORICAL___nom_9___c640a3131": 13423, "15___CATEGORICAL___nom_9___c642df048": 13424, "15___CATEGORICAL___nom_9___c6444b847": 13425, "15___CATEGORICAL___nom_9___c644ac1b0": 13426, "15___CATEGORICAL___nom_9___c64a3cae3": 13427, "15___CATEGORICAL___nom_9___c6550895a": 13428, "15___CATEGORICAL___nom_9___c65639434": 13429, "15___CATEGORICAL___nom_9___c659d4c55": 13430, "15___CATEGORICAL___nom_9___c6614488e": 13431, "15___CATEGORICAL___nom_9___c66c8e177": 13432, "15___CATEGORICAL___nom_9___c66ed48cb": 13433, "15___CATEGORICAL___nom_9___c67607e5e": 13434, "15___CATEGORICAL___nom_9___c68b759a9": 13435, "15___CATEGORICAL___nom_9___c68b9ab4f": 13436, "15___CATEGORICAL___nom_9___c6952cd05": 13437, "15___CATEGORICAL___nom_9___c698713ca": 13438, "15___CATEGORICAL___nom_9___c6aa5e1c8": 13439, "15___CATEGORICAL___nom_9___c6b14f13d": 13440, "15___CATEGORICAL___nom_9___c6b1acd01": 13441, "15___CATEGORICAL___nom_9___c6b20f9dd": 13442, "15___CATEGORICAL___nom_9___c6b249b39": 13443, "15___CATEGORICAL___nom_9___c6b3ecc34": 13444, "15___CATEGORICAL___nom_9___c6bc9cd5c": 13445, "15___CATEGORICAL___nom_9___c6bd94cef": 13446, "15___CATEGORICAL___nom_9___c6c0e8a2b": 13447, "15___CATEGORICAL___nom_9___c6c1aa34a": 13448, "15___CATEGORICAL___nom_9___c6c7a2e99": 13449, "15___CATEGORICAL___nom_9___c6c849cea": 13450, "15___CATEGORICAL___nom_9___c6ca13f9c": 13451, "15___CATEGORICAL___nom_9___c6d3cf033": 13452, "15___CATEGORICAL___nom_9___c6d6931ae": 13453, "15___CATEGORICAL___nom_9___c6dadd4f8": 13454, "15___CATEGORICAL___nom_9___c6df1b713": 13455, "15___CATEGORICAL___nom_9___c6e8ca9b8": 13456, "15___CATEGORICAL___nom_9___c6eb09902": 13457, "15___CATEGORICAL___nom_9___c704ae006": 13458, "15___CATEGORICAL___nom_9___c726f3132": 13459, "15___CATEGORICAL___nom_9___c728f29cc": 13460, "15___CATEGORICAL___nom_9___c7291cfbd": 13461, "15___CATEGORICAL___nom_9___c72a1372f": 13462, "15___CATEGORICAL___nom_9___c72aaba20": 13463, "15___CATEGORICAL___nom_9___c72fcf404": 13464, "15___CATEGORICAL___nom_9___c732a8342": 13465, "15___CATEGORICAL___nom_9___c7393332f": 13466, "15___CATEGORICAL___nom_9___c73a0eb2a": 13467, "15___CATEGORICAL___nom_9___c747a2ab9": 13468, "15___CATEGORICAL___nom_9___c74b639d6": 13469, "15___CATEGORICAL___nom_9___c74c0c68b": 13470, "15___CATEGORICAL___nom_9___c74d456dd": 13471, "15___CATEGORICAL___nom_9___c7539404b": 13472, "15___CATEGORICAL___nom_9___c753e1ff5": 13473, "15___CATEGORICAL___nom_9___c75fb0c8e": 13474, "15___CATEGORICAL___nom_9___c7656c628": 13475, "15___CATEGORICAL___nom_9___c76d1a95b": 13476, "15___CATEGORICAL___nom_9___c76fc5a78": 13477, "15___CATEGORICAL___nom_9___c773a9523": 13478, "15___CATEGORICAL___nom_9___c77d1b6a1": 13479, "15___CATEGORICAL___nom_9___c78ce84bb": 13480, "15___CATEGORICAL___nom_9___c78d7df34": 13481, "15___CATEGORICAL___nom_9___c7a346fcc": 13482, "15___CATEGORICAL___nom_9___c7b9fd244": 13483, "15___CATEGORICAL___nom_9___c7ba4e1a4": 13484, "15___CATEGORICAL___nom_9___c7bc471db": 13485, "15___CATEGORICAL___nom_9___c7bd307ab": 13486, "15___CATEGORICAL___nom_9___c7cb54ecd": 13487, "15___CATEGORICAL___nom_9___c7cb845d9": 13488, "15___CATEGORICAL___nom_9___c7cfed209": 13489, "15___CATEGORICAL___nom_9___c7d528871": 13490, "15___CATEGORICAL___nom_9___c7d74fbe3": 13491, "15___CATEGORICAL___nom_9___c7d94e2c0": 13492, "15___CATEGORICAL___nom_9___c7e062c59": 13493, "15___CATEGORICAL___nom_9___c7e106a50": 13494, "15___CATEGORICAL___nom_9___c7e5e4b9d": 13495, "15___CATEGORICAL___nom_9___c7ee5edda": 13496, "15___CATEGORICAL___nom_9___c7ef598b7": 13497, "15___CATEGORICAL___nom_9___c7f35bac7": 13498, "15___CATEGORICAL___nom_9___c7f56bf01": 13499, "15___CATEGORICAL___nom_9___c7f87f38b": 13500, "15___CATEGORICAL___nom_9___c7fc31102": 13501, "15___CATEGORICAL___nom_9___c7ff9a89c": 13502, "15___CATEGORICAL___nom_9___c8067b466": 13503, "15___CATEGORICAL___nom_9___c81596e99": 13504, "15___CATEGORICAL___nom_9___c821c7c16": 13505, "15___CATEGORICAL___nom_9___c82c2672a": 13506, "15___CATEGORICAL___nom_9___c82e2fab2": 13507, "15___CATEGORICAL___nom_9___c831e68c9": 13508, "15___CATEGORICAL___nom_9___c836f533b": 13509, "15___CATEGORICAL___nom_9___c83ecca6c": 13510, "15___CATEGORICAL___nom_9___c843b3b71": 13511, "15___CATEGORICAL___nom_9___c843f99f6": 13512, "15___CATEGORICAL___nom_9___c845b7516": 13513, "15___CATEGORICAL___nom_9___c847aeda9": 13514, "15___CATEGORICAL___nom_9___c84805fe6": 13515, "15___CATEGORICAL___nom_9___c84ca1c13": 13516, "15___CATEGORICAL___nom_9___c84d0d68b": 13517, "15___CATEGORICAL___nom_9___c850240da": 13518, "15___CATEGORICAL___nom_9___c8665a2f1": 13519, "15___CATEGORICAL___nom_9___c86af9a1e": 13520, "15___CATEGORICAL___nom_9___c889494f5": 13521, "15___CATEGORICAL___nom_9___c88b060ae": 13522, "15___CATEGORICAL___nom_9___c88c10a63": 13523, "15___CATEGORICAL___nom_9___c890927fb": 13524, "15___CATEGORICAL___nom_9___c892e804d": 13525, "15___CATEGORICAL___nom_9___c896e7f45": 13526, "15___CATEGORICAL___nom_9___c89f95d45": 13527, "15___CATEGORICAL___nom_9___c8a1cc47e": 13528, "15___CATEGORICAL___nom_9___c8b22df93": 13529, "15___CATEGORICAL___nom_9___c8b3be06f": 13530, "15___CATEGORICAL___nom_9___c8b60080a": 13531, "15___CATEGORICAL___nom_9___c8bd5607e": 13532, "15___CATEGORICAL___nom_9___c8c042122": 13533, "15___CATEGORICAL___nom_9___c8c315374": 13534, "15___CATEGORICAL___nom_9___c8cd20a3d": 13535, "15___CATEGORICAL___nom_9___c8d6d2428": 13536, "15___CATEGORICAL___nom_9___c8d73d93d": 13537, "15___CATEGORICAL___nom_9___c8d80e081": 13538, "15___CATEGORICAL___nom_9___c8dd88f72": 13539, "15___CATEGORICAL___nom_9___c8e24ae03": 13540, "15___CATEGORICAL___nom_9___c8eac4ad6": 13541, "15___CATEGORICAL___nom_9___c8eba3d61": 13542, "15___CATEGORICAL___nom_9___c8ed87a40": 13543, "15___CATEGORICAL___nom_9___c8f1c3456": 13544, "15___CATEGORICAL___nom_9___c8f276479": 13545, "15___CATEGORICAL___nom_9___c8f27c799": 13546, "15___CATEGORICAL___nom_9___c8f5abb72": 13547, "15___CATEGORICAL___nom_9___c90ed8f1e": 13548, "15___CATEGORICAL___nom_9___c916150b3": 13549, "15___CATEGORICAL___nom_9___c92ab591c": 13550, "15___CATEGORICAL___nom_9___c92b78dfd": 13551, "15___CATEGORICAL___nom_9___c9336bd15": 13552, "15___CATEGORICAL___nom_9___c934db5c8": 13553, "15___CATEGORICAL___nom_9___c93580934": 13554, "15___CATEGORICAL___nom_9___c93d101d0": 13555, "15___CATEGORICAL___nom_9___c93f2c9dd": 13556, "15___CATEGORICAL___nom_9___c9409b240": 13557, "15___CATEGORICAL___nom_9___c94cfbf60": 13558, "15___CATEGORICAL___nom_9___c94eea7a4": 13559, "15___CATEGORICAL___nom_9___c953ed5f6": 13560, "15___CATEGORICAL___nom_9___c954ba04e": 13561, "15___CATEGORICAL___nom_9___c955dd1b3": 13562, "15___CATEGORICAL___nom_9___c95dd88d7": 13563, "15___CATEGORICAL___nom_9___c961c6998": 13564, "15___CATEGORICAL___nom_9___c96372e83": 13565, "15___CATEGORICAL___nom_9___c964a7037": 13566, "15___CATEGORICAL___nom_9___c96cec679": 13567, "15___CATEGORICAL___nom_9___c96dd0f52": 13568, "15___CATEGORICAL___nom_9___c9710725b": 13569, "15___CATEGORICAL___nom_9___c97275e1a": 13570, "15___CATEGORICAL___nom_9___c975567f6": 13571, "15___CATEGORICAL___nom_9___c979a5555": 13572, "15___CATEGORICAL___nom_9___c98390e74": 13573, "15___CATEGORICAL___nom_9___c984d5ff4": 13574, "15___CATEGORICAL___nom_9___c98774fd1": 13575, "15___CATEGORICAL___nom_9___c991123e8": 13576, "15___CATEGORICAL___nom_9___c9a347c38": 13577, "15___CATEGORICAL___nom_9___c9b8ef85d": 13578, "15___CATEGORICAL___nom_9___c9b9a9e8f": 13579, "15___CATEGORICAL___nom_9___c9bae0116": 13580, "15___CATEGORICAL___nom_9___c9bc86d2d": 13581, "15___CATEGORICAL___nom_9___c9cbd0772": 13582, "15___CATEGORICAL___nom_9___c9cea5192": 13583, "15___CATEGORICAL___nom_9___c9ceec6e9": 13584, "15___CATEGORICAL___nom_9___c9d709c11": 13585, "15___CATEGORICAL___nom_9___c9db67339": 13586, "15___CATEGORICAL___nom_9___c9e2cc5fe": 13587, "15___CATEGORICAL___nom_9___c9e40d7eb": 13588, "15___CATEGORICAL___nom_9___c9ec2c14b": 13589, "15___CATEGORICAL___nom_9___c9ed894c6": 13590, "15___CATEGORICAL___nom_9___c9f3feb38": 13591, "15___CATEGORICAL___nom_9___c9ff5e6a9": 13592, "15___CATEGORICAL___nom_9___ca041d4ef": 13593, "15___CATEGORICAL___nom_9___ca062fb35": 13594, "15___CATEGORICAL___nom_9___ca13016af": 13595, "15___CATEGORICAL___nom_9___ca1f70e92": 13596, "15___CATEGORICAL___nom_9___ca1f813f4": 13597, "15___CATEGORICAL___nom_9___ca2479953": 13598, "15___CATEGORICAL___nom_9___ca26a12dd": 13599, "15___CATEGORICAL___nom_9___ca295a4ea": 13600, "15___CATEGORICAL___nom_9___ca297a4ab": 13601, "15___CATEGORICAL___nom_9___ca3177a1c": 13602, "15___CATEGORICAL___nom_9___ca3344658": 13603, "15___CATEGORICAL___nom_9___ca3cc21bf": 13604, "15___CATEGORICAL___nom_9___ca40c7110": 13605, "15___CATEGORICAL___nom_9___ca4ce4ceb": 13606, "15___CATEGORICAL___nom_9___ca51d42c5": 13607, "15___CATEGORICAL___nom_9___ca567c89e": 13608, "15___CATEGORICAL___nom_9___ca5bfe426": 13609, "15___CATEGORICAL___nom_9___ca5cf0477": 13610, "15___CATEGORICAL___nom_9___ca723e285": 13611, "15___CATEGORICAL___nom_9___ca727194b": 13612, "15___CATEGORICAL___nom_9___ca7a88644": 13613, "15___CATEGORICAL___nom_9___ca7ddfae9": 13614, "15___CATEGORICAL___nom_9___ca7e3ed1c": 13615, "15___CATEGORICAL___nom_9___ca7e9095e": 13616, "15___CATEGORICAL___nom_9___ca854a42d": 13617, "15___CATEGORICAL___nom_9___ca8c2e63c": 13618, "15___CATEGORICAL___nom_9___ca8d7826b": 13619, "15___CATEGORICAL___nom_9___ca8e0bfc1": 13620, "15___CATEGORICAL___nom_9___ca97b27dc": 13621, "15___CATEGORICAL___nom_9___caa05ba28": 13622, "15___CATEGORICAL___nom_9___caa16a9bf": 13623, "15___CATEGORICAL___nom_9___caaaa7905": 13624, "15___CATEGORICAL___nom_9___caad4d090": 13625, "15___CATEGORICAL___nom_9___cab058c87": 13626, "15___CATEGORICAL___nom_9___cab084e92": 13627, "15___CATEGORICAL___nom_9___cab420803": 13628, "15___CATEGORICAL___nom_9___cab9553f7": 13629, "15___CATEGORICAL___nom_9___cabe6b752": 13630, "15___CATEGORICAL___nom_9___cabf17ab2": 13631, "15___CATEGORICAL___nom_9___cac02ad0d": 13632, "15___CATEGORICAL___nom_9___cac4298b8": 13633, "15___CATEGORICAL___nom_9___cac58748f": 13634, "15___CATEGORICAL___nom_9___cad5be10d": 13635, "15___CATEGORICAL___nom_9___cae3a2eb4": 13636, "15___CATEGORICAL___nom_9___cae4ee24e": 13637, "15___CATEGORICAL___nom_9___caea1ad4c": 13638, "15___CATEGORICAL___nom_9___caf46b0c7": 13639, "15___CATEGORICAL___nom_9___caf7544f2": 13640, "15___CATEGORICAL___nom_9___cafbf9566": 13641, "15___CATEGORICAL___nom_9___cafd73ce7": 13642, "15___CATEGORICAL___nom_9___cb00cbe99": 13643, "15___CATEGORICAL___nom_9___cb0109d07": 13644, "15___CATEGORICAL___nom_9___cb0226297": 13645, "15___CATEGORICAL___nom_9___cb02ba3e7": 13646, "15___CATEGORICAL___nom_9___cb033a754": 13647, "15___CATEGORICAL___nom_9___cb10af3c0": 13648, "15___CATEGORICAL___nom_9___cb1163056": 13649, "15___CATEGORICAL___nom_9___cb137c30a": 13650, "15___CATEGORICAL___nom_9___cb13d961b": 13651, "15___CATEGORICAL___nom_9___cb19ac46b": 13652, "15___CATEGORICAL___nom_9___cb2f7607a": 13653, "15___CATEGORICAL___nom_9___cb33c9994": 13654, "15___CATEGORICAL___nom_9___cb3f7d7fd": 13655, "15___CATEGORICAL___nom_9___cb4897439": 13656, "15___CATEGORICAL___nom_9___cb4d6873e": 13657, "15___CATEGORICAL___nom_9___cb505d5d6": 13658, "15___CATEGORICAL___nom_9___cb53b5551": 13659, "15___CATEGORICAL___nom_9___cb5c591ad": 13660, "15___CATEGORICAL___nom_9___cb5d77cd1": 13661, "15___CATEGORICAL___nom_9___cb644dfa5": 13662, "15___CATEGORICAL___nom_9___cb70f14a4": 13663, "15___CATEGORICAL___nom_9___cb72cbafe": 13664, "15___CATEGORICAL___nom_9___cb7a0f5c2": 13665, "15___CATEGORICAL___nom_9___cb7b83fb5": 13666, "15___CATEGORICAL___nom_9___cb7bb496b": 13667, "15___CATEGORICAL___nom_9___cb7c5aef0": 13668, "15___CATEGORICAL___nom_9___cb7d3029c": 13669, "15___CATEGORICAL___nom_9___cb8096c98": 13670, "15___CATEGORICAL___nom_9___cb874b315": 13671, "15___CATEGORICAL___nom_9___cb882ed55": 13672, "15___CATEGORICAL___nom_9___cb8b9d2cd": 13673, "15___CATEGORICAL___nom_9___cb937385d": 13674, "15___CATEGORICAL___nom_9___cb94550ea": 13675, "15___CATEGORICAL___nom_9___cb9575b7b": 13676, "15___CATEGORICAL___nom_9___cb987cd3f": 13677, "15___CATEGORICAL___nom_9___cb98888a6": 13678, "15___CATEGORICAL___nom_9___cba02a3ec": 13679, "15___CATEGORICAL___nom_9___cba43e907": 13680, "15___CATEGORICAL___nom_9___cba4ed1ee": 13681, "15___CATEGORICAL___nom_9___cba64770e": 13682, "15___CATEGORICAL___nom_9___cba717381": 13683, "15___CATEGORICAL___nom_9___cbac09a67": 13684, "15___CATEGORICAL___nom_9___cbb2e2721": 13685, "15___CATEGORICAL___nom_9___cbd0d31d5": 13686, "15___CATEGORICAL___nom_9___cbd4ab902": 13687, "15___CATEGORICAL___nom_9___cbe16c9fe": 13688, "15___CATEGORICAL___nom_9___cbe32c1c1": 13689, "15___CATEGORICAL___nom_9___cbf76bec5": 13690, "15___CATEGORICAL___nom_9___cbf900a5a": 13691, "15___CATEGORICAL___nom_9___cbfa7b3ed": 13692, "15___CATEGORICAL___nom_9___cbfc9b62b": 13693, "15___CATEGORICAL___nom_9___cc03183bf": 13694, "15___CATEGORICAL___nom_9___cc0c6082c": 13695, "15___CATEGORICAL___nom_9___cc1d63b50": 13696, "15___CATEGORICAL___nom_9___cc1e68fec": 13697, "15___CATEGORICAL___nom_9___cc217c722": 13698, "15___CATEGORICAL___nom_9___cc2a843a2": 13699, "15___CATEGORICAL___nom_9___cc3737162": 13700, "15___CATEGORICAL___nom_9___cc51d4212": 13701, "15___CATEGORICAL___nom_9___cc5db6e13": 13702, "15___CATEGORICAL___nom_9___cc64d364b": 13703, "15___CATEGORICAL___nom_9___cc65a250a": 13704, "15___CATEGORICAL___nom_9___cc689dc8d": 13705, "15___CATEGORICAL___nom_9___cc6af7428": 13706, "15___CATEGORICAL___nom_9___cc6dd400a": 13707, "15___CATEGORICAL___nom_9___cc6de18bb": 13708, "15___CATEGORICAL___nom_9___cc75a7063": 13709, "15___CATEGORICAL___nom_9___cc7b9f229": 13710, "15___CATEGORICAL___nom_9___cc7ba3635": 13711, "15___CATEGORICAL___nom_9___cc7de29ab": 13712, "15___CATEGORICAL___nom_9___cc80ef686": 13713, "15___CATEGORICAL___nom_9___cc8199cf3": 13714, "15___CATEGORICAL___nom_9___cc8881a2a": 13715, "15___CATEGORICAL___nom_9___cc89f82a7": 13716, "15___CATEGORICAL___nom_9___cc9084857": 13717, "15___CATEGORICAL___nom_9___cc95a80d5": 13718, "15___CATEGORICAL___nom_9___cc9a32f11": 13719, "15___CATEGORICAL___nom_9___cca10898b": 13720, "15___CATEGORICAL___nom_9___cca99cfde": 13721, "15___CATEGORICAL___nom_9___ccba85471": 13722, "15___CATEGORICAL___nom_9___ccc85d4a7": 13723, "15___CATEGORICAL___nom_9___ccd78d9cf": 13724, "15___CATEGORICAL___nom_9___ccd9b1eba": 13725, "15___CATEGORICAL___nom_9___ccdbca93a": 13726, "15___CATEGORICAL___nom_9___ccdbed0be": 13727, "15___CATEGORICAL___nom_9___ccdc191b8": 13728, "15___CATEGORICAL___nom_9___cce3304ab": 13729, "15___CATEGORICAL___nom_9___ccf007e96": 13730, "15___CATEGORICAL___nom_9___ccf7d03e1": 13731, "15___CATEGORICAL___nom_9___ccfa3ee51": 13732, "15___CATEGORICAL___nom_9___cd06a15d0": 13733, "15___CATEGORICAL___nom_9___cd07897e8": 13734, "15___CATEGORICAL___nom_9___cd0874b67": 13735, "15___CATEGORICAL___nom_9___cd098955a": 13736, "15___CATEGORICAL___nom_9___cd0dd3073": 13737, "15___CATEGORICAL___nom_9___cd0e4f6c4": 13738, "15___CATEGORICAL___nom_9___cd0e82092": 13739, "15___CATEGORICAL___nom_9___cd1129404": 13740, "15___CATEGORICAL___nom_9___cd1446599": 13741, "15___CATEGORICAL___nom_9___cd169dec3": 13742, "15___CATEGORICAL___nom_9___cd178e7fc": 13743, "15___CATEGORICAL___nom_9___cd1d78004": 13744, "15___CATEGORICAL___nom_9___cd2019887": 13745, "15___CATEGORICAL___nom_9___cd20cd3a4": 13746, "15___CATEGORICAL___nom_9___cd295c0f0": 13747, "15___CATEGORICAL___nom_9___cd2d9133a": 13748, "15___CATEGORICAL___nom_9___cd31b0b98": 13749, "15___CATEGORICAL___nom_9___cd3214187": 13750, "15___CATEGORICAL___nom_9___cd38ba7bd": 13751, "15___CATEGORICAL___nom_9___cd3c4de1f": 13752, "15___CATEGORICAL___nom_9___cd481b0a4": 13753, "15___CATEGORICAL___nom_9___cd498b590": 13754, "15___CATEGORICAL___nom_9___cd502c7fb": 13755, "15___CATEGORICAL___nom_9___cd52acef5": 13756, "15___CATEGORICAL___nom_9___cd56eeda0": 13757, "15___CATEGORICAL___nom_9___cd58a65f2": 13758, "15___CATEGORICAL___nom_9___cd5ad2510": 13759, "15___CATEGORICAL___nom_9___cd5aee847": 13760, "15___CATEGORICAL___nom_9___cd657c9e5": 13761, "15___CATEGORICAL___nom_9___cd65d220a": 13762, "15___CATEGORICAL___nom_9___cd661804f": 13763, "15___CATEGORICAL___nom_9___cd80a7bc6": 13764, "15___CATEGORICAL___nom_9___cd80a9647": 13765, "15___CATEGORICAL___nom_9___cd883c010": 13766, "15___CATEGORICAL___nom_9___cd8bcbd36": 13767, "15___CATEGORICAL___nom_9___cd9160731": 13768, "15___CATEGORICAL___nom_9___cd91a5993": 13769, "15___CATEGORICAL___nom_9___cd94603bd": 13770, "15___CATEGORICAL___nom_9___cd95e41e1": 13771, "15___CATEGORICAL___nom_9___cd9e4aa67": 13772, "15___CATEGORICAL___nom_9___cda2d2bcd": 13773, "15___CATEGORICAL___nom_9___cda9ceeed": 13774, "15___CATEGORICAL___nom_9___cdab6add7": 13775, "15___CATEGORICAL___nom_9___cdaee099f": 13776, "15___CATEGORICAL___nom_9___cdafe2310": 13777, "15___CATEGORICAL___nom_9___cdb49c91b": 13778, "15___CATEGORICAL___nom_9___cdb4b4db5": 13779, "15___CATEGORICAL___nom_9___cdb84249a": 13780, "15___CATEGORICAL___nom_9___cdbb54206": 13781, "15___CATEGORICAL___nom_9___cdbb9cd88": 13782, "15___CATEGORICAL___nom_9___cdbe80d91": 13783, "15___CATEGORICAL___nom_9___cdc54db25": 13784, "15___CATEGORICAL___nom_9___cdc842529": 13785, "15___CATEGORICAL___nom_9___cdcb7d8c0": 13786, "15___CATEGORICAL___nom_9___cdd34ed38": 13787, "15___CATEGORICAL___nom_9___cdd4ac500": 13788, "15___CATEGORICAL___nom_9___cdd80b205": 13789, "15___CATEGORICAL___nom_9___cde33a85e": 13790, "15___CATEGORICAL___nom_9___cde499f8b": 13791, "15___CATEGORICAL___nom_9___cdea59ade": 13792, "15___CATEGORICAL___nom_9___cdeefad7e": 13793, "15___CATEGORICAL___nom_9___cdf32bec9": 13794, "15___CATEGORICAL___nom_9___cdf7e45d7": 13795, "15___CATEGORICAL___nom_9___cdfa38aae": 13796, "15___CATEGORICAL___nom_9___cdfec2cb1": 13797, "15___CATEGORICAL___nom_9___ce01ede64": 13798, "15___CATEGORICAL___nom_9___ce0310319": 13799, "15___CATEGORICAL___nom_9___ce06e3cce": 13800, "15___CATEGORICAL___nom_9___ce0b52296": 13801, "15___CATEGORICAL___nom_9___ce1b484b2": 13802, "15___CATEGORICAL___nom_9___ce1cc26dd": 13803, "15___CATEGORICAL___nom_9___ce270fb4b": 13804, "15___CATEGORICAL___nom_9___ce28afdec": 13805, "15___CATEGORICAL___nom_9___ce3699aec": 13806, "15___CATEGORICAL___nom_9___ce3eeb1f4": 13807, "15___CATEGORICAL___nom_9___ce3f4f219": 13808, "15___CATEGORICAL___nom_9___ce47f347c": 13809, "15___CATEGORICAL___nom_9___ce51a424b": 13810, "15___CATEGORICAL___nom_9___ce5909b93": 13811, "15___CATEGORICAL___nom_9___ce5a415e5": 13812, "15___CATEGORICAL___nom_9___ce5bf459e": 13813, "15___CATEGORICAL___nom_9___ce5f79dd3": 13814, "15___CATEGORICAL___nom_9___ce613023c": 13815, "15___CATEGORICAL___nom_9___ce63d314e": 13816, "15___CATEGORICAL___nom_9___ce6539136": 13817, "15___CATEGORICAL___nom_9___ce6696886": 13818, "15___CATEGORICAL___nom_9___ce6a7e9f3": 13819, "15___CATEGORICAL___nom_9___ce73afd60": 13820, "15___CATEGORICAL___nom_9___ce753e34a": 13821, "15___CATEGORICAL___nom_9___ce7a85070": 13822, "15___CATEGORICAL___nom_9___ce8fd65a1": 13823, "15___CATEGORICAL___nom_9___ce92a3001": 13824, "15___CATEGORICAL___nom_9___ce971d235": 13825, "15___CATEGORICAL___nom_9___ce9c81cf6": 13826, "15___CATEGORICAL___nom_9___ce9fc53de": 13827, "15___CATEGORICAL___nom_9___cea091b6a": 13828, "15___CATEGORICAL___nom_9___ceae265a5": 13829, "15___CATEGORICAL___nom_9___ceae7a9f0": 13830, "15___CATEGORICAL___nom_9___cec62accd": 13831, "15___CATEGORICAL___nom_9___ced4152e0": 13832, "15___CATEGORICAL___nom_9___cedce78e2": 13833, "15___CATEGORICAL___nom_9___cee1a4bb4": 13834, "15___CATEGORICAL___nom_9___cee8a81e1": 13835, "15___CATEGORICAL___nom_9___ceeb57b7e": 13836, "15___CATEGORICAL___nom_9___cef582d86": 13837, "15___CATEGORICAL___nom_9___cef738904": 13838, "15___CATEGORICAL___nom_9___cefa8140e": 13839, "15___CATEGORICAL___nom_9___cefef5fc8": 13840, "15___CATEGORICAL___nom_9___cf0518836": 13841, "15___CATEGORICAL___nom_9___cf0746e09": 13842, "15___CATEGORICAL___nom_9___cf077f209": 13843, "15___CATEGORICAL___nom_9___cf08da50f": 13844, "15___CATEGORICAL___nom_9___cf1354237": 13845, "15___CATEGORICAL___nom_9___cf167b748": 13846, "15___CATEGORICAL___nom_9___cf2301a7f": 13847, "15___CATEGORICAL___nom_9___cf2458c5e": 13848, "15___CATEGORICAL___nom_9___cf32d66a6": 13849, "15___CATEGORICAL___nom_9___cf3d513d4": 13850, "15___CATEGORICAL___nom_9___cf3d8ce60": 13851, "15___CATEGORICAL___nom_9___cf406822a": 13852, "15___CATEGORICAL___nom_9___cf4ac123e": 13853, "15___CATEGORICAL___nom_9___cf4d7678b": 13854, "15___CATEGORICAL___nom_9___cf5a708e7": 13855, "15___CATEGORICAL___nom_9___cf5a966af": 13856, "15___CATEGORICAL___nom_9___cf5ac6d29": 13857, "15___CATEGORICAL___nom_9___cf5bbde92": 13858, "15___CATEGORICAL___nom_9___cf5cbf0c6": 13859, "15___CATEGORICAL___nom_9___cf5e88a3d": 13860, "15___CATEGORICAL___nom_9___cf611cd16": 13861, "15___CATEGORICAL___nom_9___cf6807048": 13862, "15___CATEGORICAL___nom_9___cf6ac9d38": 13863, "15___CATEGORICAL___nom_9___cf75a612d": 13864, "15___CATEGORICAL___nom_9___cf82344e2": 13865, "15___CATEGORICAL___nom_9___cf83a78bc": 13866, "15___CATEGORICAL___nom_9___cf840c757": 13867, "15___CATEGORICAL___nom_9___cf8eb8a33": 13868, "15___CATEGORICAL___nom_9___cf93998bc": 13869, "15___CATEGORICAL___nom_9___cf96f0be7": 13870, "15___CATEGORICAL___nom_9___cf9d313e8": 13871, "15___CATEGORICAL___nom_9___cfa507134": 13872, "15___CATEGORICAL___nom_9___cfa7536e9": 13873, "15___CATEGORICAL___nom_9___cfa80b83e": 13874, "15___CATEGORICAL___nom_9___cfa97a8a9": 13875, "15___CATEGORICAL___nom_9___cfb22de71": 13876, "15___CATEGORICAL___nom_9___cfb603af3": 13877, "15___CATEGORICAL___nom_9___cfb8aace4": 13878, "15___CATEGORICAL___nom_9___cfcfea6db": 13879, "15___CATEGORICAL___nom_9___cfd070eaa": 13880, "15___CATEGORICAL___nom_9___cfd273ca8": 13881, "15___CATEGORICAL___nom_9___cfe2e8ed7": 13882, "15___CATEGORICAL___nom_9___cfe4f69ed": 13883, "15___CATEGORICAL___nom_9___cfea4ce6e": 13884, "15___CATEGORICAL___nom_9___cfec683a9": 13885, "15___CATEGORICAL___nom_9___cfef6d87a": 13886, "15___CATEGORICAL___nom_9___cfeff5f1a": 13887, "15___CATEGORICAL___nom_9___cff2bca56": 13888, "15___CATEGORICAL___nom_9___cffaeca2e": 13889, "15___CATEGORICAL___nom_9___cfff60f79": 13890, "15___CATEGORICAL___nom_9___d001123b9": 13891, "15___CATEGORICAL___nom_9___d021d7035": 13892, "15___CATEGORICAL___nom_9___d025c5664": 13893, "15___CATEGORICAL___nom_9___d02e31f5a": 13894, "15___CATEGORICAL___nom_9___d02fe1257": 13895, "15___CATEGORICAL___nom_9___d02ffda8d": 13896, "15___CATEGORICAL___nom_9___d03141383": 13897, "15___CATEGORICAL___nom_9___d0315697b": 13898, "15___CATEGORICAL___nom_9___d0326c181": 13899, "15___CATEGORICAL___nom_9___d032bdf72": 13900, "15___CATEGORICAL___nom_9___d034727c2": 13901, "15___CATEGORICAL___nom_9___d037d18f3": 13902, "15___CATEGORICAL___nom_9___d0385cab3": 13903, "15___CATEGORICAL___nom_9___d03a9887f": 13904, "15___CATEGORICAL___nom_9___d03dbd55e": 13905, "15___CATEGORICAL___nom_9___d042babdf": 13906, "15___CATEGORICAL___nom_9___d042ccc94": 13907, "15___CATEGORICAL___nom_9___d0432e629": 13908, "15___CATEGORICAL___nom_9___d0481d60e": 13909, "15___CATEGORICAL___nom_9___d04909741": 13910, "15___CATEGORICAL___nom_9___d04e7a922": 13911, "15___CATEGORICAL___nom_9___d04f68193": 13912, "15___CATEGORICAL___nom_9___d051d165c": 13913, "15___CATEGORICAL___nom_9___d053f5239": 13914, "15___CATEGORICAL___nom_9___d05463242": 13915, "15___CATEGORICAL___nom_9___d05493251": 13916, "15___CATEGORICAL___nom_9___d05b17e80": 13917, "15___CATEGORICAL___nom_9___d05b8b8e6": 13918, "15___CATEGORICAL___nom_9___d05f9f89b": 13919, "15___CATEGORICAL___nom_9___d0602f8ea": 13920, "15___CATEGORICAL___nom_9___d06090d26": 13921, "15___CATEGORICAL___nom_9___d060e7d1f": 13922, "15___CATEGORICAL___nom_9___d06d13d49": 13923, "15___CATEGORICAL___nom_9___d06dd7860": 13924, "15___CATEGORICAL___nom_9___d074b1d6a": 13925, "15___CATEGORICAL___nom_9___d07ed0d7a": 13926, "15___CATEGORICAL___nom_9___d0812cb13": 13927, "15___CATEGORICAL___nom_9___d0856c9c6": 13928, "15___CATEGORICAL___nom_9___d08fc49d3": 13929, "15___CATEGORICAL___nom_9___d08ff8eab": 13930, "15___CATEGORICAL___nom_9___d09349d27": 13931, "15___CATEGORICAL___nom_9___d0945346e": 13932, "15___CATEGORICAL___nom_9___d09774418": 13933, "15___CATEGORICAL___nom_9___d0a02688b": 13934, "15___CATEGORICAL___nom_9___d0a09475b": 13935, "15___CATEGORICAL___nom_9___d0a39b665": 13936, "15___CATEGORICAL___nom_9___d0a3c67ff": 13937, "15___CATEGORICAL___nom_9___d0a66a9ba": 13938, "15___CATEGORICAL___nom_9___d0a8cdfbb": 13939, "15___CATEGORICAL___nom_9___d0ab0edd6": 13940, "15___CATEGORICAL___nom_9___d0accd12f": 13941, "15___CATEGORICAL___nom_9___d0adef90c": 13942, "15___CATEGORICAL___nom_9___d0b22cc23": 13943, "15___CATEGORICAL___nom_9___d0c2cd24c": 13944, "15___CATEGORICAL___nom_9___d0c6a3c7b": 13945, "15___CATEGORICAL___nom_9___d0c72ecfb": 13946, "15___CATEGORICAL___nom_9___d0c781a97": 13947, "15___CATEGORICAL___nom_9___d0c7f3f0c": 13948, "15___CATEGORICAL___nom_9___d0cb71dc2": 13949, "15___CATEGORICAL___nom_9___d0cf04324": 13950, "15___CATEGORICAL___nom_9___d0d301002": 13951, "15___CATEGORICAL___nom_9___d0daa9a8d": 13952, "15___CATEGORICAL___nom_9___d0e33af70": 13953, "15___CATEGORICAL___nom_9___d0e681522": 13954, "15___CATEGORICAL___nom_9___d101ce130": 13955, "15___CATEGORICAL___nom_9___d10527c59": 13956, "15___CATEGORICAL___nom_9___d10620ca0": 13957, "15___CATEGORICAL___nom_9___d108a0030": 13958, "15___CATEGORICAL___nom_9___d1096c9a9": 13959, "15___CATEGORICAL___nom_9___d109bc92d": 13960, "15___CATEGORICAL___nom_9___d11089ead": 13961, "15___CATEGORICAL___nom_9___d1180bc29": 13962, "15___CATEGORICAL___nom_9___d11cbc55b": 13963, "15___CATEGORICAL___nom_9___d11f99d5a": 13964, "15___CATEGORICAL___nom_9___d12725b2d": 13965, "15___CATEGORICAL___nom_9___d12977dc1": 13966, "15___CATEGORICAL___nom_9___d129c35e8": 13967, "15___CATEGORICAL___nom_9___d12a513d6": 13968, "15___CATEGORICAL___nom_9___d12deb437": 13969, "15___CATEGORICAL___nom_9___d12ef6354": 13970, "15___CATEGORICAL___nom_9___d14263d54": 13971, "15___CATEGORICAL___nom_9___d149ec75c": 13972, "15___CATEGORICAL___nom_9___d14b9e374": 13973, "15___CATEGORICAL___nom_9___d14c45ff6": 13974, "15___CATEGORICAL___nom_9___d14f1f8dc": 13975, "15___CATEGORICAL___nom_9___d153ec218": 13976, "15___CATEGORICAL___nom_9___d1591a06e": 13977, "15___CATEGORICAL___nom_9___d15958ca9": 13978, "15___CATEGORICAL___nom_9___d15d9b260": 13979, "15___CATEGORICAL___nom_9___d164a98e8": 13980, "15___CATEGORICAL___nom_9___d167001b0": 13981, "15___CATEGORICAL___nom_9___d173d5602": 13982, "15___CATEGORICAL___nom_9___d174729a9": 13983, "15___CATEGORICAL___nom_9___d174c9335": 13984, "15___CATEGORICAL___nom_9___d176f09d5": 13985, "15___CATEGORICAL___nom_9___d177af19a": 13986, "15___CATEGORICAL___nom_9___d17d980c9": 13987, "15___CATEGORICAL___nom_9___d17da3e06": 13988, "15___CATEGORICAL___nom_9___d181413e9": 13989, "15___CATEGORICAL___nom_9___d1835e76b": 13990, "15___CATEGORICAL___nom_9___d18da778c": 13991, "15___CATEGORICAL___nom_9___d18db4d66": 13992, "15___CATEGORICAL___nom_9___d1920d30a": 13993, "15___CATEGORICAL___nom_9___d19365c98": 13994, "15___CATEGORICAL___nom_9___d19520e23": 13995, "15___CATEGORICAL___nom_9___d198c2972": 13996, "15___CATEGORICAL___nom_9___d19a0b96d": 13997, "15___CATEGORICAL___nom_9___d1a119dd4": 13998, "15___CATEGORICAL___nom_9___d1a837d06": 13999, "15___CATEGORICAL___nom_9___d1b57cee3": 14000, "15___CATEGORICAL___nom_9___d1c06ec58": 14001, "15___CATEGORICAL___nom_9___d1c682bcf": 14002, "15___CATEGORICAL___nom_9___d1cddf499": 14003, "15___CATEGORICAL___nom_9___d1d3e849b": 14004, "15___CATEGORICAL___nom_9___d1d49f370": 14005, "15___CATEGORICAL___nom_9___d1d9522ac": 14006, "15___CATEGORICAL___nom_9___d200cb827": 14007, "15___CATEGORICAL___nom_9___d209a05fd": 14008, "15___CATEGORICAL___nom_9___d20eb9f4b": 14009, "15___CATEGORICAL___nom_9___d210fddfc": 14010, "15___CATEGORICAL___nom_9___d21132e04": 14011, "15___CATEGORICAL___nom_9___d2130d27b": 14012, "15___CATEGORICAL___nom_9___d2141143a": 14013, "15___CATEGORICAL___nom_9___d21683368": 14014, "15___CATEGORICAL___nom_9___d21d26537": 14015, "15___CATEGORICAL___nom_9___d21fe1728": 14016, "15___CATEGORICAL___nom_9___d229ebc59": 14017, "15___CATEGORICAL___nom_9___d22e3ecb8": 14018, "15___CATEGORICAL___nom_9___d22f0565a": 14019, "15___CATEGORICAL___nom_9___d23a3846c": 14020, "15___CATEGORICAL___nom_9___d23a429d1": 14021, "15___CATEGORICAL___nom_9___d2444e51b": 14022, "15___CATEGORICAL___nom_9___d249eed8f": 14023, "15___CATEGORICAL___nom_9___d24d8e0e1": 14024, "15___CATEGORICAL___nom_9___d25732caf": 14025, "15___CATEGORICAL___nom_9___d25a25f65": 14026, "15___CATEGORICAL___nom_9___d25cf57c0": 14027, "15___CATEGORICAL___nom_9___d2689e5eb": 14028, "15___CATEGORICAL___nom_9___d26a6ae91": 14029, "15___CATEGORICAL___nom_9___d27250839": 14030, "15___CATEGORICAL___nom_9___d2754d701": 14031, "15___CATEGORICAL___nom_9___d27dafc7b": 14032, "15___CATEGORICAL___nom_9___d287d4e07": 14033, "15___CATEGORICAL___nom_9___d288000d1": 14034, "15___CATEGORICAL___nom_9___d28aa313c": 14035, "15___CATEGORICAL___nom_9___d28fecc75": 14036, "15___CATEGORICAL___nom_9___d291fcb38": 14037, "15___CATEGORICAL___nom_9___d2a00d1e5": 14038, "15___CATEGORICAL___nom_9___d2aaa1190": 14039, "15___CATEGORICAL___nom_9___d2ab02740": 14040, "15___CATEGORICAL___nom_9___d2ac26824": 14041, "15___CATEGORICAL___nom_9___d2acfcdd3": 14042, "15___CATEGORICAL___nom_9___d2b0f89e9": 14043, "15___CATEGORICAL___nom_9___d2c5f9a0e": 14044, "15___CATEGORICAL___nom_9___d2d61763f": 14045, "15___CATEGORICAL___nom_9___d2d6425b9": 14046, "15___CATEGORICAL___nom_9___d2dd1651e": 14047, "15___CATEGORICAL___nom_9___d2f222bdb": 14048, "15___CATEGORICAL___nom_9___d2f822daf": 14049, "15___CATEGORICAL___nom_9___d2fafac01": 14050, "15___CATEGORICAL___nom_9___d301a1890": 14051, "15___CATEGORICAL___nom_9___d307d2351": 14052, "15___CATEGORICAL___nom_9___d30b8f290": 14053, "15___CATEGORICAL___nom_9___d30bc7231": 14054, "15___CATEGORICAL___nom_9___d3175ec56": 14055, "15___CATEGORICAL___nom_9___d31d35b36": 14056, "15___CATEGORICAL___nom_9___d31fdb570": 14057, "15___CATEGORICAL___nom_9___d31ffc0e4": 14058, "15___CATEGORICAL___nom_9___d3200932c": 14059, "15___CATEGORICAL___nom_9___d32c449fa": 14060, "15___CATEGORICAL___nom_9___d32cc30f6": 14061, "15___CATEGORICAL___nom_9___d32de6b92": 14062, "15___CATEGORICAL___nom_9___d32fd1dfc": 14063, "15___CATEGORICAL___nom_9___d337670ff": 14064, "15___CATEGORICAL___nom_9___d33875d25": 14065, "15___CATEGORICAL___nom_9___d33ac83ef": 14066, "15___CATEGORICAL___nom_9___d33b22b52": 14067, "15___CATEGORICAL___nom_9___d33eaeefa": 14068, "15___CATEGORICAL___nom_9___d34a4e1f9": 14069, "15___CATEGORICAL___nom_9___d34ca058b": 14070, "15___CATEGORICAL___nom_9___d34cea59a": 14071, "15___CATEGORICAL___nom_9___d3523ae14": 14072, "15___CATEGORICAL___nom_9___d3778da9c": 14073, "15___CATEGORICAL___nom_9___d377d83bb": 14074, "15___CATEGORICAL___nom_9___d378eac93": 14075, "15___CATEGORICAL___nom_9___d38707767": 14076, "15___CATEGORICAL___nom_9___d38b42683": 14077, "15___CATEGORICAL___nom_9___d38cb646d": 14078, "15___CATEGORICAL___nom_9___d3a2a79f5": 14079, "15___CATEGORICAL___nom_9___d3a416493": 14080, "15___CATEGORICAL___nom_9___d3a97a6c9": 14081, "15___CATEGORICAL___nom_9___d3b067aa7": 14082, "15___CATEGORICAL___nom_9___d3b828699": 14083, "15___CATEGORICAL___nom_9___d3bd4f93a": 14084, "15___CATEGORICAL___nom_9___d3c11437d": 14085, "15___CATEGORICAL___nom_9___d3c25e150": 14086, "15___CATEGORICAL___nom_9___d3c3db0c1": 14087, "15___CATEGORICAL___nom_9___d3dd80b06": 14088, "15___CATEGORICAL___nom_9___d3ded8ed9": 14089, "15___CATEGORICAL___nom_9___d3e30d5ca": 14090, "15___CATEGORICAL___nom_9___d3f39af57": 14091, "15___CATEGORICAL___nom_9___d3f6af645": 14092, "15___CATEGORICAL___nom_9___d406114ff": 14093, "15___CATEGORICAL___nom_9___d40a42c77": 14094, "15___CATEGORICAL___nom_9___d4110470e": 14095, "15___CATEGORICAL___nom_9___d412b27be": 14096, "15___CATEGORICAL___nom_9___d41d13764": 14097, "15___CATEGORICAL___nom_9___d41d3f5b8": 14098, "15___CATEGORICAL___nom_9___d41f319ed": 14099, "15___CATEGORICAL___nom_9___d424fbfa2": 14100, "15___CATEGORICAL___nom_9___d42bf21f6": 14101, "15___CATEGORICAL___nom_9___d4342e7c1": 14102, "15___CATEGORICAL___nom_9___d43f19e32": 14103, "15___CATEGORICAL___nom_9___d445baa4d": 14104, "15___CATEGORICAL___nom_9___d44768443": 14105, "15___CATEGORICAL___nom_9___d44803123": 14106, "15___CATEGORICAL___nom_9___d44ae5a94": 14107, "15___CATEGORICAL___nom_9___d4522f8a3": 14108, "15___CATEGORICAL___nom_9___d4527f549": 14109, "15___CATEGORICAL___nom_9___d45567849": 14110, "15___CATEGORICAL___nom_9___d45e84f94": 14111, "15___CATEGORICAL___nom_9___d462db96a": 14112, "15___CATEGORICAL___nom_9___d46b6ab74": 14113, "15___CATEGORICAL___nom_9___d4789b850": 14114, "15___CATEGORICAL___nom_9___d47b14ee4": 14115, "15___CATEGORICAL___nom_9___d47ccdb00": 14116, "15___CATEGORICAL___nom_9___d4812cead": 14117, "15___CATEGORICAL___nom_9___d495848d5": 14118, "15___CATEGORICAL___nom_9___d49604cab": 14119, "15___CATEGORICAL___nom_9___d4975a176": 14120, "15___CATEGORICAL___nom_9___d4a72183a": 14121, "15___CATEGORICAL___nom_9___d4abaa61e": 14122, "15___CATEGORICAL___nom_9___d4c1eb9c3": 14123, "15___CATEGORICAL___nom_9___d4c845dc9": 14124, "15___CATEGORICAL___nom_9___d4c8cb621": 14125, "15___CATEGORICAL___nom_9___d4cb05545": 14126, "15___CATEGORICAL___nom_9___d4ccfce0d": 14127, "15___CATEGORICAL___nom_9___d4cf587dd": 14128, "15___CATEGORICAL___nom_9___d4d004ee5": 14129, "15___CATEGORICAL___nom_9___d4d0d6100": 14130, "15___CATEGORICAL___nom_9___d4d743b12": 14131, "15___CATEGORICAL___nom_9___d4d960f0f": 14132, "15___CATEGORICAL___nom_9___d4d9cd1e9": 14133, "15___CATEGORICAL___nom_9___d501d0ed9": 14134, "15___CATEGORICAL___nom_9___d504b3cf8": 14135, "15___CATEGORICAL___nom_9___d507e12d8": 14136, "15___CATEGORICAL___nom_9___d509f7491": 14137, "15___CATEGORICAL___nom_9___d51b3260a": 14138, "15___CATEGORICAL___nom_9___d51ea7e35": 14139, "15___CATEGORICAL___nom_9___d51f60296": 14140, "15___CATEGORICAL___nom_9___d51ff0c69": 14141, "15___CATEGORICAL___nom_9___d5259ddbd": 14142, "15___CATEGORICAL___nom_9___d52baf236": 14143, "15___CATEGORICAL___nom_9___d52c6a3e6": 14144, "15___CATEGORICAL___nom_9___d53360bfc": 14145, "15___CATEGORICAL___nom_9___d543cd442": 14146, "15___CATEGORICAL___nom_9___d5451f59d": 14147, "15___CATEGORICAL___nom_9___d549cf780": 14148, "15___CATEGORICAL___nom_9___d551e05c0": 14149, "15___CATEGORICAL___nom_9___d552e5e03": 14150, "15___CATEGORICAL___nom_9___d558d03f6": 14151, "15___CATEGORICAL___nom_9___d56993d32": 14152, "15___CATEGORICAL___nom_9___d56bd7a64": 14153, "15___CATEGORICAL___nom_9___d56c7acad": 14154, "15___CATEGORICAL___nom_9___d570371d0": 14155, "15___CATEGORICAL___nom_9___d5739dc12": 14156, "15___CATEGORICAL___nom_9___d5758e0c9": 14157, "15___CATEGORICAL___nom_9___d58c3618d": 14158, "15___CATEGORICAL___nom_9___d590a3ccd": 14159, "15___CATEGORICAL___nom_9___d592f4e23": 14160, "15___CATEGORICAL___nom_9___d599c4afd": 14161, "15___CATEGORICAL___nom_9___d59ce1c46": 14162, "15___CATEGORICAL___nom_9___d59fed41f": 14163, "15___CATEGORICAL___nom_9___d5a4581c1": 14164, "15___CATEGORICAL___nom_9___d5a7356a6": 14165, "15___CATEGORICAL___nom_9___d5ac2222e": 14166, "15___CATEGORICAL___nom_9___d5b48f37e": 14167, "15___CATEGORICAL___nom_9___d5c377e9b": 14168, "15___CATEGORICAL___nom_9___d5c5541a7": 14169, "15___CATEGORICAL___nom_9___d5ccf348e": 14170, "15___CATEGORICAL___nom_9___d5cd115f5": 14171, "15___CATEGORICAL___nom_9___d5ce2dcca": 14172, "15___CATEGORICAL___nom_9___d5cfeb3a1": 14173, "15___CATEGORICAL___nom_9___d5e41c0a7": 14174, "15___CATEGORICAL___nom_9___d5e5c3f12": 14175, "15___CATEGORICAL___nom_9___d5eb4fe43": 14176, "15___CATEGORICAL___nom_9___d5ebfcf51": 14177, "15___CATEGORICAL___nom_9___d5ef6e0fa": 14178, "15___CATEGORICAL___nom_9___d5f0fd659": 14179, "15___CATEGORICAL___nom_9___d5f38689f": 14180, "15___CATEGORICAL___nom_9___d5f47deee": 14181, "15___CATEGORICAL___nom_9___d6005835d": 14182, "15___CATEGORICAL___nom_9___d602e1ac3": 14183, "15___CATEGORICAL___nom_9___d60674abc": 14184, "15___CATEGORICAL___nom_9___d608ebad3": 14185, "15___CATEGORICAL___nom_9___d6120bdb7": 14186, "15___CATEGORICAL___nom_9___d61262ef7": 14187, "15___CATEGORICAL___nom_9___d6145309c": 14188, "15___CATEGORICAL___nom_9___d61b0c3be": 14189, "15___CATEGORICAL___nom_9___d61dd01cd": 14190, "15___CATEGORICAL___nom_9___d626506f9": 14191, "15___CATEGORICAL___nom_9___d63043d77": 14192, "15___CATEGORICAL___nom_9___d637c0b08": 14193, "15___CATEGORICAL___nom_9___d63a90b44": 14194, "15___CATEGORICAL___nom_9___d641e8b10": 14195, "15___CATEGORICAL___nom_9___d64c8909a": 14196, "15___CATEGORICAL___nom_9___d652c68e6": 14197, "15___CATEGORICAL___nom_9___d652cc9c2": 14198, "15___CATEGORICAL___nom_9___d6578d938": 14199, "15___CATEGORICAL___nom_9___d657c0749": 14200, "15___CATEGORICAL___nom_9___d65aeae3b": 14201, "15___CATEGORICAL___nom_9___d65d3a5ac": 14202, "15___CATEGORICAL___nom_9___d661d44d2": 14203, "15___CATEGORICAL___nom_9___d66859001": 14204, "15___CATEGORICAL___nom_9___d669306bf": 14205, "15___CATEGORICAL___nom_9___d66ac9311": 14206, "15___CATEGORICAL___nom_9___d66fbc14a": 14207, "15___CATEGORICAL___nom_9___d6711481a": 14208, "15___CATEGORICAL___nom_9___d6735256d": 14209, "15___CATEGORICAL___nom_9___d67c741be": 14210, "15___CATEGORICAL___nom_9___d68c505a6": 14211, "15___CATEGORICAL___nom_9___d68db6c52": 14212, "15___CATEGORICAL___nom_9___d68f599f2": 14213, "15___CATEGORICAL___nom_9___d6906487f": 14214, "15___CATEGORICAL___nom_9___d695f8eb2": 14215, "15___CATEGORICAL___nom_9___d69953cfb": 14216, "15___CATEGORICAL___nom_9___d69aef490": 14217, "15___CATEGORICAL___nom_9___d69c03ae5": 14218, "15___CATEGORICAL___nom_9___d69c996d4": 14219, "15___CATEGORICAL___nom_9___d6a10d3ca": 14220, "15___CATEGORICAL___nom_9___d6a3ca507": 14221, "15___CATEGORICAL___nom_9___d6a410303": 14222, "15___CATEGORICAL___nom_9___d6a92f871": 14223, "15___CATEGORICAL___nom_9___d6be68a5c": 14224, "15___CATEGORICAL___nom_9___d6cd52b13": 14225, "15___CATEGORICAL___nom_9___d6d5efb23": 14226, "15___CATEGORICAL___nom_9___d6d8db802": 14227, "15___CATEGORICAL___nom_9___d6dcb61f5": 14228, "15___CATEGORICAL___nom_9___d6dd625ac": 14229, "15___CATEGORICAL___nom_9___d6e47792f": 14230, "15___CATEGORICAL___nom_9___d6ef29331": 14231, "15___CATEGORICAL___nom_9___d6f990e6a": 14232, "15___CATEGORICAL___nom_9___d6fe43027": 14233, "15___CATEGORICAL___nom_9___d700e0cb6": 14234, "15___CATEGORICAL___nom_9___d7043e9df": 14235, "15___CATEGORICAL___nom_9___d7072e0fa": 14236, "15___CATEGORICAL___nom_9___d712f1dd7": 14237, "15___CATEGORICAL___nom_9___d7180ee07": 14238, "15___CATEGORICAL___nom_9___d7185621a": 14239, "15___CATEGORICAL___nom_9___d71a7ced5": 14240, "15___CATEGORICAL___nom_9___d724fbbfc": 14241, "15___CATEGORICAL___nom_9___d729497b2": 14242, "15___CATEGORICAL___nom_9___d73801486": 14243, "15___CATEGORICAL___nom_9___d73f97a6f": 14244, "15___CATEGORICAL___nom_9___d74118f8a": 14245, "15___CATEGORICAL___nom_9___d741ab21d": 14246, "15___CATEGORICAL___nom_9___d74218492": 14247, "15___CATEGORICAL___nom_9___d7422ffbd": 14248, "15___CATEGORICAL___nom_9___d743875ec": 14249, "15___CATEGORICAL___nom_9___d74470948": 14250, "15___CATEGORICAL___nom_9___d74c46b25": 14251, "15___CATEGORICAL___nom_9___d74d0d402": 14252, "15___CATEGORICAL___nom_9___d75053e59": 14253, "15___CATEGORICAL___nom_9___d752d39a0": 14254, "15___CATEGORICAL___nom_9___d7539c157": 14255, "15___CATEGORICAL___nom_9___d756c94be": 14256, "15___CATEGORICAL___nom_9___d75e2aa98": 14257, "15___CATEGORICAL___nom_9___d76460ded": 14258, "15___CATEGORICAL___nom_9___d769e4c9a": 14259, "15___CATEGORICAL___nom_9___d77225e0e": 14260, "15___CATEGORICAL___nom_9___d77f8f9fa": 14261, "15___CATEGORICAL___nom_9___d784e04f5": 14262, "15___CATEGORICAL___nom_9___d792319e8": 14263, "15___CATEGORICAL___nom_9___d793032b8": 14264, "15___CATEGORICAL___nom_9___d797626e2": 14265, "15___CATEGORICAL___nom_9___d79a07645": 14266, "15___CATEGORICAL___nom_9___d7a7311ad": 14267, "15___CATEGORICAL___nom_9___d7a838cec": 14268, "15___CATEGORICAL___nom_9___d7ac74d3b": 14269, "15___CATEGORICAL___nom_9___d7ae43706": 14270, "15___CATEGORICAL___nom_9___d7afe62ec": 14271, "15___CATEGORICAL___nom_9___d7b11703c": 14272, "15___CATEGORICAL___nom_9___d7c084d13": 14273, "15___CATEGORICAL___nom_9___d7c3115b3": 14274, "15___CATEGORICAL___nom_9___d7c3c727b": 14275, "15___CATEGORICAL___nom_9___d7c4e8e11": 14276, "15___CATEGORICAL___nom_9___d7c54f240": 14277, "15___CATEGORICAL___nom_9___d7c66410c": 14278, "15___CATEGORICAL___nom_9___d7c6bcd88": 14279, "15___CATEGORICAL___nom_9___d7d4cbb65": 14280, "15___CATEGORICAL___nom_9___d7e141de4": 14281, "15___CATEGORICAL___nom_9___d7e87b8f5": 14282, "15___CATEGORICAL___nom_9___d7f5f79d5": 14283, "15___CATEGORICAL___nom_9___d80ce33b1": 14284, "15___CATEGORICAL___nom_9___d80fd7ca1": 14285, "15___CATEGORICAL___nom_9___d81989421": 14286, "15___CATEGORICAL___nom_9___d81c7b2ee": 14287, "15___CATEGORICAL___nom_9___d81d42cb8": 14288, "15___CATEGORICAL___nom_9___d82200d57": 14289, "15___CATEGORICAL___nom_9___d8232c76c": 14290, "15___CATEGORICAL___nom_9___d82bc2c77": 14291, "15___CATEGORICAL___nom_9___d832a0679": 14292, "15___CATEGORICAL___nom_9___d838d2b0e": 14293, "15___CATEGORICAL___nom_9___d8393da40": 14294, "15___CATEGORICAL___nom_9___d8413d70a": 14295, "15___CATEGORICAL___nom_9___d8422cb7e": 14296, "15___CATEGORICAL___nom_9___d84868a14": 14297, "15___CATEGORICAL___nom_9___d84950254": 14298, "15___CATEGORICAL___nom_9___d84ec4a66": 14299, "15___CATEGORICAL___nom_9___d8528bca7": 14300, "15___CATEGORICAL___nom_9___d854b869f": 14301, "15___CATEGORICAL___nom_9___d8623d900": 14302, "15___CATEGORICAL___nom_9___d86fd981e": 14303, "15___CATEGORICAL___nom_9___d87bedba7": 14304, "15___CATEGORICAL___nom_9___d87bfe818": 14305, "15___CATEGORICAL___nom_9___d87de961c": 14306, "15___CATEGORICAL___nom_9___d87e3d2bf": 14307, "15___CATEGORICAL___nom_9___d87e8f156": 14308, "15___CATEGORICAL___nom_9___d87e9ca56": 14309, "15___CATEGORICAL___nom_9___d8833bf6b": 14310, "15___CATEGORICAL___nom_9___d8857091f": 14311, "15___CATEGORICAL___nom_9___d887638e0": 14312, "15___CATEGORICAL___nom_9___d88df546b": 14313, "15___CATEGORICAL___nom_9___d88ef1e5c": 14314, "15___CATEGORICAL___nom_9___d8902c5b8": 14315, "15___CATEGORICAL___nom_9___d89682698": 14316, "15___CATEGORICAL___nom_9___d89fcaeca": 14317, "15___CATEGORICAL___nom_9___d8a4eb625": 14318, "15___CATEGORICAL___nom_9___d8a900663": 14319, "15___CATEGORICAL___nom_9___d8a956789": 14320, "15___CATEGORICAL___nom_9___d8ab48abb": 14321, "15___CATEGORICAL___nom_9___d8af326ec": 14322, "15___CATEGORICAL___nom_9___d8af7552c": 14323, "15___CATEGORICAL___nom_9___d8be4cc81": 14324, "15___CATEGORICAL___nom_9___d8bf694ad": 14325, "15___CATEGORICAL___nom_9___d8c4063b2": 14326, "15___CATEGORICAL___nom_9___d8c56bdc5": 14327, "15___CATEGORICAL___nom_9___d8c5d08af": 14328, "15___CATEGORICAL___nom_9___d8c72ab57": 14329, "15___CATEGORICAL___nom_9___d8cef9cf6": 14330, "15___CATEGORICAL___nom_9___d8e1f3217": 14331, "15___CATEGORICAL___nom_9___d8e69fc28": 14332, "15___CATEGORICAL___nom_9___d8eb9abf2": 14333, "15___CATEGORICAL___nom_9___d8ee4c05e": 14334, "15___CATEGORICAL___nom_9___d8f639673": 14335, "15___CATEGORICAL___nom_9___d8fe8b269": 14336, "15___CATEGORICAL___nom_9___d902dde14": 14337, "15___CATEGORICAL___nom_9___d90652166": 14338, "15___CATEGORICAL___nom_9___d9162c28e": 14339, "15___CATEGORICAL___nom_9___d917648a4": 14340, "15___CATEGORICAL___nom_9___d91cb5008": 14341, "15___CATEGORICAL___nom_9___d9221f211": 14342, "15___CATEGORICAL___nom_9___d92b5781a": 14343, "15___CATEGORICAL___nom_9___d930744b7": 14344, "15___CATEGORICAL___nom_9___d933993b5": 14345, "15___CATEGORICAL___nom_9___d937b78d1": 14346, "15___CATEGORICAL___nom_9___d93a24c67": 14347, "15___CATEGORICAL___nom_9___d947148dd": 14348, "15___CATEGORICAL___nom_9___d947be2c9": 14349, "15___CATEGORICAL___nom_9___d94bede9d": 14350, "15___CATEGORICAL___nom_9___d954c01b9": 14351, "15___CATEGORICAL___nom_9___d95863d82": 14352, "15___CATEGORICAL___nom_9___d95d56fb4": 14353, "15___CATEGORICAL___nom_9___d965b03b5": 14354, "15___CATEGORICAL___nom_9___d96c6f9e2": 14355, "15___CATEGORICAL___nom_9___d975e47d1": 14356, "15___CATEGORICAL___nom_9___d97cbda31": 14357, "15___CATEGORICAL___nom_9___d97ddd36f": 14358, "15___CATEGORICAL___nom_9___d97e5ab50": 14359, "15___CATEGORICAL___nom_9___d97e99417": 14360, "15___CATEGORICAL___nom_9___d980da2e8": 14361, "15___CATEGORICAL___nom_9___d98243119": 14362, "15___CATEGORICAL___nom_9___d988fa28c": 14363, "15___CATEGORICAL___nom_9___d98bdfa47": 14364, "15___CATEGORICAL___nom_9___d98f15043": 14365, "15___CATEGORICAL___nom_9___d9902e072": 14366, "15___CATEGORICAL___nom_9___d992a24ba": 14367, "15___CATEGORICAL___nom_9___d9963240b": 14368, "15___CATEGORICAL___nom_9___d99a7b31f": 14369, "15___CATEGORICAL___nom_9___d99ad9537": 14370, "15___CATEGORICAL___nom_9___d9a404694": 14371, "15___CATEGORICAL___nom_9___d9a85d007": 14372, "15___CATEGORICAL___nom_9___d9afb49d3": 14373, "15___CATEGORICAL___nom_9___d9b9b6b62": 14374, "15___CATEGORICAL___nom_9___d9ba4f163": 14375, "15___CATEGORICAL___nom_9___d9c39b26a": 14376, "15___CATEGORICAL___nom_9___d9c51eada": 14377, "15___CATEGORICAL___nom_9___d9c5ace69": 14378, "15___CATEGORICAL___nom_9___d9cf082b4": 14379, "15___CATEGORICAL___nom_9___d9d96f8bb": 14380, "15___CATEGORICAL___nom_9___d9e135e85": 14381, "15___CATEGORICAL___nom_9___d9e1854a1": 14382, "15___CATEGORICAL___nom_9___d9e2bfa23": 14383, "15___CATEGORICAL___nom_9___d9e3c3fed": 14384, "15___CATEGORICAL___nom_9___d9e41d85d": 14385, "15___CATEGORICAL___nom_9___d9e869c33": 14386, "15___CATEGORICAL___nom_9___d9eb07ac7": 14387, "15___CATEGORICAL___nom_9___d9ef4b7c1": 14388, "15___CATEGORICAL___nom_9___d9fdc1cb8": 14389, "15___CATEGORICAL___nom_9___da013a5ad": 14390, "15___CATEGORICAL___nom_9___da01fe28d": 14391, "15___CATEGORICAL___nom_9___da06338e0": 14392, "15___CATEGORICAL___nom_9___da07a0d18": 14393, "15___CATEGORICAL___nom_9___da0a669a6": 14394, "15___CATEGORICAL___nom_9___da0a892d2": 14395, "15___CATEGORICAL___nom_9___da0cefaaa": 14396, "15___CATEGORICAL___nom_9___da17c0110": 14397, "15___CATEGORICAL___nom_9___da18c492b": 14398, "15___CATEGORICAL___nom_9___da1f39185": 14399, "15___CATEGORICAL___nom_9___da2348b26": 14400, "15___CATEGORICAL___nom_9___da25549fc": 14401, "15___CATEGORICAL___nom_9___da2584f35": 14402, "15___CATEGORICAL___nom_9___da2ff2e61": 14403, "15___CATEGORICAL___nom_9___da3106119": 14404, "15___CATEGORICAL___nom_9___da476cf42": 14405, "15___CATEGORICAL___nom_9___da49c238e": 14406, "15___CATEGORICAL___nom_9___da4fb14fb": 14407, "15___CATEGORICAL___nom_9___da5ba10bc": 14408, "15___CATEGORICAL___nom_9___da5bf8da3": 14409, "15___CATEGORICAL___nom_9___da640dc7c": 14410, "15___CATEGORICAL___nom_9___da6678dd7": 14411, "15___CATEGORICAL___nom_9___da6929497": 14412, "15___CATEGORICAL___nom_9___da6e07358": 14413, "15___CATEGORICAL___nom_9___da77bf3bc": 14414, "15___CATEGORICAL___nom_9___da903526a": 14415, "15___CATEGORICAL___nom_9___da9400591": 14416, "15___CATEGORICAL___nom_9___da9eae540": 14417, "15___CATEGORICAL___nom_9___daaeee7fb": 14418, "15___CATEGORICAL___nom_9___dab0036f7": 14419, "15___CATEGORICAL___nom_9___dac0c3185": 14420, "15___CATEGORICAL___nom_9___dac16eb65": 14421, "15___CATEGORICAL___nom_9___dac2bfc2b": 14422, "15___CATEGORICAL___nom_9___dac4f66a4": 14423, "15___CATEGORICAL___nom_9___dac9618ea": 14424, "15___CATEGORICAL___nom_9___daca36a8b": 14425, "15___CATEGORICAL___nom_9___dacc7d79a": 14426, "15___CATEGORICAL___nom_9___dad135032": 14427, "15___CATEGORICAL___nom_9___dad48803e": 14428, "15___CATEGORICAL___nom_9___dada0baee": 14429, "15___CATEGORICAL___nom_9___dadc8e275": 14430, "15___CATEGORICAL___nom_9___daec4d799": 14431, "15___CATEGORICAL___nom_9___daee68360": 14432, "15___CATEGORICAL___nom_9___daef52fc0": 14433, "15___CATEGORICAL___nom_9___daf344d55": 14434, "15___CATEGORICAL___nom_9___daf54d0a4": 14435, "15___CATEGORICAL___nom_9___daf6e0af4": 14436, "15___CATEGORICAL___nom_9___dafef22a5": 14437, "15___CATEGORICAL___nom_9___db09eff68": 14438, "15___CATEGORICAL___nom_9___db122876d": 14439, "15___CATEGORICAL___nom_9___db1298b26": 14440, "15___CATEGORICAL___nom_9___db12a3f94": 14441, "15___CATEGORICAL___nom_9___db14b15e6": 14442, "15___CATEGORICAL___nom_9___db19d21f6": 14443, "15___CATEGORICAL___nom_9___db21113fb": 14444, "15___CATEGORICAL___nom_9___db28dca34": 14445, "15___CATEGORICAL___nom_9___db2bece16": 14446, "15___CATEGORICAL___nom_9___db30f62a3": 14447, "15___CATEGORICAL___nom_9___db329e104": 14448, "15___CATEGORICAL___nom_9___db3fb67e0": 14449, "15___CATEGORICAL___nom_9___db41d0263": 14450, "15___CATEGORICAL___nom_9___db4222183": 14451, "15___CATEGORICAL___nom_9___db50ace58": 14452, "15___CATEGORICAL___nom_9___db57aa485": 14453, "15___CATEGORICAL___nom_9___db589e851": 14454, "15___CATEGORICAL___nom_9___db5f5e8c1": 14455, "15___CATEGORICAL___nom_9___db670d1cb": 14456, "15___CATEGORICAL___nom_9___db6b6d53f": 14457, "15___CATEGORICAL___nom_9___db7407e00": 14458, "15___CATEGORICAL___nom_9___db8867819": 14459, "15___CATEGORICAL___nom_9___db8935d6b": 14460, "15___CATEGORICAL___nom_9___db8bacb11": 14461, "15___CATEGORICAL___nom_9___db9867ceb": 14462, "15___CATEGORICAL___nom_9___db9d03a25": 14463, "15___CATEGORICAL___nom_9___dba2e2784": 14464, "15___CATEGORICAL___nom_9___dba593ed7": 14465, "15___CATEGORICAL___nom_9___dba72b647": 14466, "15___CATEGORICAL___nom_9___dbab272dc": 14467, "15___CATEGORICAL___nom_9___dbb795f09": 14468, "15___CATEGORICAL___nom_9___dbb989a40": 14469, "15___CATEGORICAL___nom_9___dbbc422d8": 14470, "15___CATEGORICAL___nom_9___dbbdeacdb": 14471, "15___CATEGORICAL___nom_9___dbbf473c0": 14472, "15___CATEGORICAL___nom_9___dbbfb03c3": 14473, "15___CATEGORICAL___nom_9___dbc49a5ff": 14474, "15___CATEGORICAL___nom_9___dbc6f23d1": 14475, "15___CATEGORICAL___nom_9___dbc8fb63f": 14476, "15___CATEGORICAL___nom_9___dbcde78de": 14477, "15___CATEGORICAL___nom_9___dbe5918e3": 14478, "15___CATEGORICAL___nom_9___dbf114987": 14479, "15___CATEGORICAL___nom_9___dbfd9248d": 14480, "15___CATEGORICAL___nom_9___dc08116c2": 14481, "15___CATEGORICAL___nom_9___dc08f4918": 14482, "15___CATEGORICAL___nom_9___dc101c825": 14483, "15___CATEGORICAL___nom_9___dc1479144": 14484, "15___CATEGORICAL___nom_9___dc20aa045": 14485, "15___CATEGORICAL___nom_9___dc226cb58": 14486, "15___CATEGORICAL___nom_9___dc26b8505": 14487, "15___CATEGORICAL___nom_9___dc2a7e13e": 14488, "15___CATEGORICAL___nom_9___dc2c74fae": 14489, "15___CATEGORICAL___nom_9___dc3207905": 14490, "15___CATEGORICAL___nom_9___dc3a0f101": 14491, "15___CATEGORICAL___nom_9___dc3c49063": 14492, "15___CATEGORICAL___nom_9___dc3cb07a4": 14493, "15___CATEGORICAL___nom_9___dc449e944": 14494, "15___CATEGORICAL___nom_9___dc457c0b7": 14495, "15___CATEGORICAL___nom_9___dc48d467d": 14496, "15___CATEGORICAL___nom_9___dc4d32667": 14497, "15___CATEGORICAL___nom_9___dc50235e4": 14498, "15___CATEGORICAL___nom_9___dc5491311": 14499, "15___CATEGORICAL___nom_9___dc643eacb": 14500, "15___CATEGORICAL___nom_9___dc6c6e961": 14501, "15___CATEGORICAL___nom_9___dc741f909": 14502, "15___CATEGORICAL___nom_9___dc82b83af": 14503, "15___CATEGORICAL___nom_9___dc86a862d": 14504, "15___CATEGORICAL___nom_9___dc883e80e": 14505, "15___CATEGORICAL___nom_9___dc8f3a7ea": 14506, "15___CATEGORICAL___nom_9___dc91df9e5": 14507, "15___CATEGORICAL___nom_9___dc9b94aa9": 14508, "15___CATEGORICAL___nom_9___dc9ed22fa": 14509, "15___CATEGORICAL___nom_9___dc9fd26c6": 14510, "15___CATEGORICAL___nom_9___dca698ecd": 14511, "15___CATEGORICAL___nom_9___dca9f9370": 14512, "15___CATEGORICAL___nom_9___dcac4f8b5": 14513, "15___CATEGORICAL___nom_9___dcb88834c": 14514, "15___CATEGORICAL___nom_9___dcba197d7": 14515, "15___CATEGORICAL___nom_9___dcc3ca019": 14516, "15___CATEGORICAL___nom_9___dcc6020e4": 14517, "15___CATEGORICAL___nom_9___dcc8bd86a": 14518, "15___CATEGORICAL___nom_9___dccd17eb3": 14519, "15___CATEGORICAL___nom_9___dcd21fb3f": 14520, "15___CATEGORICAL___nom_9___dcd2217d6": 14521, "15___CATEGORICAL___nom_9___dcd8abfe1": 14522, "15___CATEGORICAL___nom_9___dcdf53c00": 14523, "15___CATEGORICAL___nom_9___dcdf805bd": 14524, "15___CATEGORICAL___nom_9___dce32a1b0": 14525, "15___CATEGORICAL___nom_9___dce34f31b": 14526, "15___CATEGORICAL___nom_9___dce3fdaff": 14527, "15___CATEGORICAL___nom_9___dcf51b6f6": 14528, "15___CATEGORICAL___nom_9___dcf6a47d7": 14529, "15___CATEGORICAL___nom_9___dcfcb9835": 14530, "15___CATEGORICAL___nom_9___dcfe49a17": 14531, "15___CATEGORICAL___nom_9___dcfe4ef96": 14532, "15___CATEGORICAL___nom_9___dd0521b3b": 14533, "15___CATEGORICAL___nom_9___dd059c052": 14534, "15___CATEGORICAL___nom_9___dd069f94e": 14535, "15___CATEGORICAL___nom_9___dd0873abb": 14536, "15___CATEGORICAL___nom_9___dd0f2848a": 14537, "15___CATEGORICAL___nom_9___dd2b2a4dc": 14538, "15___CATEGORICAL___nom_9___dd30a7225": 14539, "15___CATEGORICAL___nom_9___dd30a91c9": 14540, "15___CATEGORICAL___nom_9___dd3189682": 14541, "15___CATEGORICAL___nom_9___dd349da04": 14542, "15___CATEGORICAL___nom_9___dd3ef356c": 14543, "15___CATEGORICAL___nom_9___dd44bb35d": 14544, "15___CATEGORICAL___nom_9___dd497e490": 14545, "15___CATEGORICAL___nom_9___dd4a7533a": 14546, "15___CATEGORICAL___nom_9___dd517217f": 14547, "15___CATEGORICAL___nom_9___dd62cb909": 14548, "15___CATEGORICAL___nom_9___dd68ab6a1": 14549, "15___CATEGORICAL___nom_9___dd6976a05": 14550, "15___CATEGORICAL___nom_9___dd6f57c92": 14551, "15___CATEGORICAL___nom_9___dd6fb6b30": 14552, "15___CATEGORICAL___nom_9___dd70da729": 14553, "15___CATEGORICAL___nom_9___dd727d46c": 14554, "15___CATEGORICAL___nom_9___dd79af375": 14555, "15___CATEGORICAL___nom_9___dd7a4cb6e": 14556, "15___CATEGORICAL___nom_9___dd7bcdfa4": 14557, "15___CATEGORICAL___nom_9___dd8a1d998": 14558, "15___CATEGORICAL___nom_9___dd8fcc152": 14559, "15___CATEGORICAL___nom_9___dd94baed7": 14560, "15___CATEGORICAL___nom_9___dd94f38b5": 14561, "15___CATEGORICAL___nom_9___dd97de50d": 14562, "15___CATEGORICAL___nom_9___dd9c02b15": 14563, "15___CATEGORICAL___nom_9___dd9f0676f": 14564, "15___CATEGORICAL___nom_9___dda56ebca": 14565, "15___CATEGORICAL___nom_9___dda94abdf": 14566, "15___CATEGORICAL___nom_9___ddaa7abdf": 14567, "15___CATEGORICAL___nom_9___ddb6e2cc4": 14568, "15___CATEGORICAL___nom_9___ddc22a77b": 14569, "15___CATEGORICAL___nom_9___ddc5c0323": 14570, "15___CATEGORICAL___nom_9___ddc9b813f": 14571, "15___CATEGORICAL___nom_9___ddca1a178": 14572, "15___CATEGORICAL___nom_9___ddd4b5283": 14573, "15___CATEGORICAL___nom_9___ddddafb95": 14574, "15___CATEGORICAL___nom_9___dddf59810": 14575, "15___CATEGORICAL___nom_9___dde292e10": 14576, "15___CATEGORICAL___nom_9___dde29e1c1": 14577, "15___CATEGORICAL___nom_9___dde3b1f8b": 14578, "15___CATEGORICAL___nom_9___dde6ed7b2": 14579, "15___CATEGORICAL___nom_9___dde8fdf04": 14580, "15___CATEGORICAL___nom_9___ddecf8885": 14581, "15___CATEGORICAL___nom_9___ddeef965a": 14582, "15___CATEGORICAL___nom_9___ddf03206c": 14583, "15___CATEGORICAL___nom_9___ddffa7cff": 14584, "15___CATEGORICAL___nom_9___de02e05a3": 14585, "15___CATEGORICAL___nom_9___de0c50780": 14586, "15___CATEGORICAL___nom_9___de15c7b84": 14587, "15___CATEGORICAL___nom_9___de2540b1c": 14588, "15___CATEGORICAL___nom_9___de2b395b1": 14589, "15___CATEGORICAL___nom_9___de2b43bc7": 14590, "15___CATEGORICAL___nom_9___de2dc341c": 14591, "15___CATEGORICAL___nom_9___de2e790b8": 14592, "15___CATEGORICAL___nom_9___de30683ec": 14593, "15___CATEGORICAL___nom_9___de3a04748": 14594, "15___CATEGORICAL___nom_9___de3d0a268": 14595, "15___CATEGORICAL___nom_9___de3e75f6c": 14596, "15___CATEGORICAL___nom_9___de4262e20": 14597, "15___CATEGORICAL___nom_9___de4416f20": 14598, "15___CATEGORICAL___nom_9___de4a45a22": 14599, "15___CATEGORICAL___nom_9___de513b48b": 14600, "15___CATEGORICAL___nom_9___de53b6185": 14601, "15___CATEGORICAL___nom_9___de5771851": 14602, "15___CATEGORICAL___nom_9___de5a74778": 14603, "15___CATEGORICAL___nom_9___de5f5ddc1": 14604, "15___CATEGORICAL___nom_9___de5f5e2b0": 14605, "15___CATEGORICAL___nom_9___de6f17cb9": 14606, "15___CATEGORICAL___nom_9___de760c385": 14607, "15___CATEGORICAL___nom_9___de76421ea": 14608, "15___CATEGORICAL___nom_9___de7699a4a": 14609, "15___CATEGORICAL___nom_9___de78f47db": 14610, "15___CATEGORICAL___nom_9___de88fdd95": 14611, "15___CATEGORICAL___nom_9___de945000c": 14612, "15___CATEGORICAL___nom_9___de97be1c0": 14613, "15___CATEGORICAL___nom_9___de9aef680": 14614, "15___CATEGORICAL___nom_9___de9dd442b": 14615, "15___CATEGORICAL___nom_9___dea0af608": 14616, "15___CATEGORICAL___nom_9___dea285f41": 14617, "15___CATEGORICAL___nom_9___deabe6af3": 14618, "15___CATEGORICAL___nom_9___deac33a23": 14619, "15___CATEGORICAL___nom_9___deaebe065": 14620, "15___CATEGORICAL___nom_9___deb38e612": 14621, "15___CATEGORICAL___nom_9___debbf32bb": 14622, "15___CATEGORICAL___nom_9___dec2418a7": 14623, "15___CATEGORICAL___nom_9___dec5b1d04": 14624, "15___CATEGORICAL___nom_9___deca71e1f": 14625, "15___CATEGORICAL___nom_9___decb53ae9": 14626, "15___CATEGORICAL___nom_9___dece387a4": 14627, "15___CATEGORICAL___nom_9___ded294a5f": 14628, "15___CATEGORICAL___nom_9___ded653e06": 14629, "15___CATEGORICAL___nom_9___ded9b1aae": 14630, "15___CATEGORICAL___nom_9___dedce70cd": 14631, "15___CATEGORICAL___nom_9___dedf23dec": 14632, "15___CATEGORICAL___nom_9___deeecd2e1": 14633, "15___CATEGORICAL___nom_9___def645b7a": 14634, "15___CATEGORICAL___nom_9___df0040a79": 14635, "15___CATEGORICAL___nom_9___df0070880": 14636, "15___CATEGORICAL___nom_9___df04208bc": 14637, "15___CATEGORICAL___nom_9___df177f006": 14638, "15___CATEGORICAL___nom_9___df1ffb76a": 14639, "15___CATEGORICAL___nom_9___df2179e62": 14640, "15___CATEGORICAL___nom_9___df27b7096": 14641, "15___CATEGORICAL___nom_9___df39b2c27": 14642, "15___CATEGORICAL___nom_9___df3b24c3c": 14643, "15___CATEGORICAL___nom_9___df4017556": 14644, "15___CATEGORICAL___nom_9___df438bc93": 14645, "15___CATEGORICAL___nom_9___df4f94fa9": 14646, "15___CATEGORICAL___nom_9___df5345d25": 14647, "15___CATEGORICAL___nom_9___df540edd0": 14648, "15___CATEGORICAL___nom_9___df57e1504": 14649, "15___CATEGORICAL___nom_9___df5a66652": 14650, "15___CATEGORICAL___nom_9___df5b2e52d": 14651, "15___CATEGORICAL___nom_9___df5d1267c": 14652, "15___CATEGORICAL___nom_9___df5d48e1f": 14653, "15___CATEGORICAL___nom_9___df6060768": 14654, "15___CATEGORICAL___nom_9___df6ba725c": 14655, "15___CATEGORICAL___nom_9___df6bb3167": 14656, "15___CATEGORICAL___nom_9___df6dc0078": 14657, "15___CATEGORICAL___nom_9___df6ee70ea": 14658, "15___CATEGORICAL___nom_9___df7a9fa15": 14659, "15___CATEGORICAL___nom_9___df7b1cfea": 14660, "15___CATEGORICAL___nom_9___df7ebb5d6": 14661, "15___CATEGORICAL___nom_9___df8323cee": 14662, "15___CATEGORICAL___nom_9___df85f32a1": 14663, "15___CATEGORICAL___nom_9___df8ae97cb": 14664, "15___CATEGORICAL___nom_9___df8c11c7d": 14665, "15___CATEGORICAL___nom_9___df90f92f6": 14666, "15___CATEGORICAL___nom_9___df9c03986": 14667, "15___CATEGORICAL___nom_9___dfa170a8c": 14668, "15___CATEGORICAL___nom_9___dfaf616eb": 14669, "15___CATEGORICAL___nom_9___dfafe8dde": 14670, "15___CATEGORICAL___nom_9___dfb3b5d65": 14671, "15___CATEGORICAL___nom_9___dfb59c793": 14672, "15___CATEGORICAL___nom_9___dfb5a5e19": 14673, "15___CATEGORICAL___nom_9___dfb6dba60": 14674, "15___CATEGORICAL___nom_9___dfb8a7d27": 14675, "15___CATEGORICAL___nom_9___dfc36aaad": 14676, "15___CATEGORICAL___nom_9___dfc6ac8db": 14677, "15___CATEGORICAL___nom_9___dfc77a2fe": 14678, "15___CATEGORICAL___nom_9___dfc77e4ec": 14679, "15___CATEGORICAL___nom_9___dfca25ab0": 14680, "15___CATEGORICAL___nom_9___dfd160fee": 14681, "15___CATEGORICAL___nom_9___dfd1d02f7": 14682, "15___CATEGORICAL___nom_9___dfe48d72e": 14683, "15___CATEGORICAL___nom_9___dfe50dee7": 14684, "15___CATEGORICAL___nom_9___dfe8e0895": 14685, "15___CATEGORICAL___nom_9___dff094c1f": 14686, "15___CATEGORICAL___nom_9___dff5fb0f1": 14687, "15___CATEGORICAL___nom_9___dff7da8c5": 14688, "15___CATEGORICAL___nom_9___e00738e54": 14689, "15___CATEGORICAL___nom_9___e007edb63": 14690, "15___CATEGORICAL___nom_9___e00f27f7a": 14691, "15___CATEGORICAL___nom_9___e00f8cd37": 14692, "15___CATEGORICAL___nom_9___e01ecac84": 14693, "15___CATEGORICAL___nom_9___e027134e8": 14694, "15___CATEGORICAL___nom_9___e027decef": 14695, "15___CATEGORICAL___nom_9___e02eda5e8": 14696, "15___CATEGORICAL___nom_9___e02f7aa97": 14697, "15___CATEGORICAL___nom_9___e03317044": 14698, "15___CATEGORICAL___nom_9___e036dc7f4": 14699, "15___CATEGORICAL___nom_9___e04144549": 14700, "15___CATEGORICAL___nom_9___e043422f0": 14701, "15___CATEGORICAL___nom_9___e0472edbc": 14702, "15___CATEGORICAL___nom_9___e04e3e346": 14703, "15___CATEGORICAL___nom_9___e054efec7": 14704, "15___CATEGORICAL___nom_9___e05b9fd26": 14705, "15___CATEGORICAL___nom_9___e05c35bc3": 14706, "15___CATEGORICAL___nom_9___e05e4c676": 14707, "15___CATEGORICAL___nom_9___e063e06cb": 14708, "15___CATEGORICAL___nom_9___e0663db91": 14709, "15___CATEGORICAL___nom_9___e06e7ea4f": 14710, "15___CATEGORICAL___nom_9___e06eec279": 14711, "15___CATEGORICAL___nom_9___e070dd3a0": 14712, "15___CATEGORICAL___nom_9___e07393fce": 14713, "15___CATEGORICAL___nom_9___e07a3eb84": 14714, "15___CATEGORICAL___nom_9___e07b91a4a": 14715, "15___CATEGORICAL___nom_9___e08599325": 14716, "15___CATEGORICAL___nom_9___e0861add3": 14717, "15___CATEGORICAL___nom_9___e0872cf9e": 14718, "15___CATEGORICAL___nom_9___e087e223b": 14719, "15___CATEGORICAL___nom_9___e0943cca0": 14720, "15___CATEGORICAL___nom_9___e0980ae4a": 14721, "15___CATEGORICAL___nom_9___e098565a4": 14722, "15___CATEGORICAL___nom_9___e098ad5f5": 14723, "15___CATEGORICAL___nom_9___e0a161822": 14724, "15___CATEGORICAL___nom_9___e0a5b915c": 14725, "15___CATEGORICAL___nom_9___e0adf4d43": 14726, "15___CATEGORICAL___nom_9___e0b0476d3": 14727, "15___CATEGORICAL___nom_9___e0b95e0f5": 14728, "15___CATEGORICAL___nom_9___e0babeaf6": 14729, "15___CATEGORICAL___nom_9___e0bbdb74a": 14730, "15___CATEGORICAL___nom_9___e0bf40ead": 14731, "15___CATEGORICAL___nom_9___e0c53bd79": 14732, "15___CATEGORICAL___nom_9___e0c541356": 14733, "15___CATEGORICAL___nom_9___e0c6f8d0c": 14734, "15___CATEGORICAL___nom_9___e0ce4131c": 14735, "15___CATEGORICAL___nom_9___e0d4e657c": 14736, "15___CATEGORICAL___nom_9___e0df428b0": 14737, "15___CATEGORICAL___nom_9___e0ea524b6": 14738, "15___CATEGORICAL___nom_9___e0ed406db": 14739, "15___CATEGORICAL___nom_9___e0ed63c01": 14740, "15___CATEGORICAL___nom_9___e0ee041a5": 14741, "15___CATEGORICAL___nom_9___e0ee74dc9": 14742, "15___CATEGORICAL___nom_9___e0f2b42a3": 14743, "15___CATEGORICAL___nom_9___e0f50dbfe": 14744, "15___CATEGORICAL___nom_9___e0fbc538d": 14745, "15___CATEGORICAL___nom_9___e0fe804f6": 14746, "15___CATEGORICAL___nom_9___e0febc115": 14747, "15___CATEGORICAL___nom_9___e1000a578": 14748, "15___CATEGORICAL___nom_9___e10294dd0": 14749, "15___CATEGORICAL___nom_9___e1084bbbc": 14750, "15___CATEGORICAL___nom_9___e109b5c3b": 14751, "15___CATEGORICAL___nom_9___e110bb5e8": 14752, "15___CATEGORICAL___nom_9___e1117e0b7": 14753, "15___CATEGORICAL___nom_9___e112aaa2a": 14754, "15___CATEGORICAL___nom_9___e119f14c8": 14755, "15___CATEGORICAL___nom_9___e11c315c9": 14756, "15___CATEGORICAL___nom_9___e11cd0804": 14757, "15___CATEGORICAL___nom_9___e1288f65c": 14758, "15___CATEGORICAL___nom_9___e12d39f0a": 14759, "15___CATEGORICAL___nom_9___e134e2a61": 14760, "15___CATEGORICAL___nom_9___e135e700c": 14761, "15___CATEGORICAL___nom_9___e13a9ac65": 14762, "15___CATEGORICAL___nom_9___e13eece8a": 14763, "15___CATEGORICAL___nom_9___e140eeb90": 14764, "15___CATEGORICAL___nom_9___e14d38f18": 14765, "15___CATEGORICAL___nom_9___e1526400a": 14766, "15___CATEGORICAL___nom_9___e156098fc": 14767, "15___CATEGORICAL___nom_9___e157536a9": 14768, "15___CATEGORICAL___nom_9___e15c7b678": 14769, "15___CATEGORICAL___nom_9___e15ce4e64": 14770, "15___CATEGORICAL___nom_9___e164e43de": 14771, "15___CATEGORICAL___nom_9___e166efcf7": 14772, "15___CATEGORICAL___nom_9___e16b6a8b1": 14773, "15___CATEGORICAL___nom_9___e16fbccb6": 14774, "15___CATEGORICAL___nom_9___e17158c1a": 14775, "15___CATEGORICAL___nom_9___e171c00ac": 14776, "15___CATEGORICAL___nom_9___e17a5a906": 14777, "15___CATEGORICAL___nom_9___e17bc470d": 14778, "15___CATEGORICAL___nom_9___e18c4915b": 14779, "15___CATEGORICAL___nom_9___e18c7a159": 14780, "15___CATEGORICAL___nom_9___e1929a55e": 14781, "15___CATEGORICAL___nom_9___e19545794": 14782, "15___CATEGORICAL___nom_9___e19c349fc": 14783, "15___CATEGORICAL___nom_9___e1a53db5f": 14784, "15___CATEGORICAL___nom_9___e1a578d28": 14785, "15___CATEGORICAL___nom_9___e1ae1b583": 14786, "15___CATEGORICAL___nom_9___e1b4dc267": 14787, "15___CATEGORICAL___nom_9___e1b66f5f2": 14788, "15___CATEGORICAL___nom_9___e1b7388a9": 14789, "15___CATEGORICAL___nom_9___e1b87a2e7": 14790, "15___CATEGORICAL___nom_9___e1b95e9c8": 14791, "15___CATEGORICAL___nom_9___e1d4ffb89": 14792, "15___CATEGORICAL___nom_9___e1d8b307d": 14793, "15___CATEGORICAL___nom_9___e1e4ea28c": 14794, "15___CATEGORICAL___nom_9___e1e99ca07": 14795, "15___CATEGORICAL___nom_9___e1efdb6ef": 14796, "15___CATEGORICAL___nom_9___e1f000928": 14797, "15___CATEGORICAL___nom_9___e1ffe32f0": 14798, "15___CATEGORICAL___nom_9___e2023fb82": 14799, "15___CATEGORICAL___nom_9___e203d99bb": 14800, "15___CATEGORICAL___nom_9___e206d3dea": 14801, "15___CATEGORICAL___nom_9___e206e3a0a": 14802, "15___CATEGORICAL___nom_9___e22adeb55": 14803, "15___CATEGORICAL___nom_9___e22f7c603": 14804, "15___CATEGORICAL___nom_9___e23de3efd": 14805, "15___CATEGORICAL___nom_9___e242313e7": 14806, "15___CATEGORICAL___nom_9___e252d6452": 14807, "15___CATEGORICAL___nom_9___e25353375": 14808, "15___CATEGORICAL___nom_9___e25ef4e29": 14809, "15___CATEGORICAL___nom_9___e26a81f17": 14810, "15___CATEGORICAL___nom_9___e2727fc19": 14811, "15___CATEGORICAL___nom_9___e278164d4": 14812, "15___CATEGORICAL___nom_9___e27881a3c": 14813, "15___CATEGORICAL___nom_9___e27add645": 14814, "15___CATEGORICAL___nom_9___e27e86b81": 14815, "15___CATEGORICAL___nom_9___e27fe30cf": 14816, "15___CATEGORICAL___nom_9___e283fe502": 14817, "15___CATEGORICAL___nom_9___e28cdbcc2": 14818, "15___CATEGORICAL___nom_9___e28d67ee9": 14819, "15___CATEGORICAL___nom_9___e29005c3a": 14820, "15___CATEGORICAL___nom_9___e293ab32a": 14821, "15___CATEGORICAL___nom_9___e29e14f51": 14822, "15___CATEGORICAL___nom_9___e2a1ab525": 14823, "15___CATEGORICAL___nom_9___e2a31d886": 14824, "15___CATEGORICAL___nom_9___e2a7022b6": 14825, "15___CATEGORICAL___nom_9___e2ad66c9f": 14826, "15___CATEGORICAL___nom_9___e2ad8f28c": 14827, "15___CATEGORICAL___nom_9___e2b6de12d": 14828, "15___CATEGORICAL___nom_9___e2bfd0c80": 14829, "15___CATEGORICAL___nom_9___e2c2183a0": 14830, "15___CATEGORICAL___nom_9___e2d487484": 14831, "15___CATEGORICAL___nom_9___e2d5239f9": 14832, "15___CATEGORICAL___nom_9___e2ea16d89": 14833, "15___CATEGORICAL___nom_9___e2fa4e22f": 14834, "15___CATEGORICAL___nom_9___e30065dae": 14835, "15___CATEGORICAL___nom_9___e3015db2b": 14836, "15___CATEGORICAL___nom_9___e305893f7": 14837, "15___CATEGORICAL___nom_9___e30d09dd2": 14838, "15___CATEGORICAL___nom_9___e314d1bbd": 14839, "15___CATEGORICAL___nom_9___e320b926f": 14840, "15___CATEGORICAL___nom_9___e325dee80": 14841, "15___CATEGORICAL___nom_9___e32b87b84": 14842, "15___CATEGORICAL___nom_9___e32f9eaf9": 14843, "15___CATEGORICAL___nom_9___e33348a46": 14844, "15___CATEGORICAL___nom_9___e33612d06": 14845, "15___CATEGORICAL___nom_9___e338cee92": 14846, "15___CATEGORICAL___nom_9___e33a43c8e": 14847, "15___CATEGORICAL___nom_9___e33b74676": 14848, "15___CATEGORICAL___nom_9___e33c07021": 14849, "15___CATEGORICAL___nom_9___e347b3b46": 14850, "15___CATEGORICAL___nom_9___e347e7842": 14851, "15___CATEGORICAL___nom_9___e34d37714": 14852, "15___CATEGORICAL___nom_9___e35015401": 14853, "15___CATEGORICAL___nom_9___e3587d308": 14854, "15___CATEGORICAL___nom_9___e35b0d3d8": 14855, "15___CATEGORICAL___nom_9___e364ff647": 14856, "15___CATEGORICAL___nom_9___e36c3a743": 14857, "15___CATEGORICAL___nom_9___e37022420": 14858, "15___CATEGORICAL___nom_9___e37686fa9": 14859, "15___CATEGORICAL___nom_9___e37cd596a": 14860, "15___CATEGORICAL___nom_9___e3804fead": 14861, "15___CATEGORICAL___nom_9___e3872ec09": 14862, "15___CATEGORICAL___nom_9___e389fcad0": 14863, "15___CATEGORICAL___nom_9___e39524fcb": 14864, "15___CATEGORICAL___nom_9___e398d7894": 14865, "15___CATEGORICAL___nom_9___e39a5f6fe": 14866, "15___CATEGORICAL___nom_9___e39b01d4c": 14867, "15___CATEGORICAL___nom_9___e39b958ea": 14868, "15___CATEGORICAL___nom_9___e39db0923": 14869, "15___CATEGORICAL___nom_9___e39f008e8": 14870, "15___CATEGORICAL___nom_9___e3a8aaf5f": 14871, "15___CATEGORICAL___nom_9___e3b3ebfc5": 14872, "15___CATEGORICAL___nom_9___e3b6630e4": 14873, "15___CATEGORICAL___nom_9___e3b67c8be": 14874, "15___CATEGORICAL___nom_9___e3bd28393": 14875, "15___CATEGORICAL___nom_9___e3c4badd0": 14876, "15___CATEGORICAL___nom_9___e3d6f23b5": 14877, "15___CATEGORICAL___nom_9___e3e57ec52": 14878, "15___CATEGORICAL___nom_9___e3e59f1fb": 14879, "15___CATEGORICAL___nom_9___e3ea9294a": 14880, "15___CATEGORICAL___nom_9___e3ecc3e8b": 14881, "15___CATEGORICAL___nom_9___e3f26c425": 14882, "15___CATEGORICAL___nom_9___e3f361230": 14883, "15___CATEGORICAL___nom_9___e3f893974": 14884, "15___CATEGORICAL___nom_9___e4004b572": 14885, "15___CATEGORICAL___nom_9___e407977c4": 14886, "15___CATEGORICAL___nom_9___e40fe2314": 14887, "15___CATEGORICAL___nom_9___e415b36ec": 14888, "15___CATEGORICAL___nom_9___e41ae05a7": 14889, "15___CATEGORICAL___nom_9___e424b3c1b": 14890, "15___CATEGORICAL___nom_9___e4257a5bb": 14891, "15___CATEGORICAL___nom_9___e4262ec2a": 14892, "15___CATEGORICAL___nom_9___e43681655": 14893, "15___CATEGORICAL___nom_9___e439d525e": 14894, "15___CATEGORICAL___nom_9___e43bb4805": 14895, "15___CATEGORICAL___nom_9___e43f74979": 14896, "15___CATEGORICAL___nom_9___e440d8604": 14897, "15___CATEGORICAL___nom_9___e44849acc": 14898, "15___CATEGORICAL___nom_9___e44c9a9cc": 14899, "15___CATEGORICAL___nom_9___e44d70990": 14900, "15___CATEGORICAL___nom_9___e44fe2d64": 14901, "15___CATEGORICAL___nom_9___e45515385": 14902, "15___CATEGORICAL___nom_9___e45983ef6": 14903, "15___CATEGORICAL___nom_9___e45aea767": 14904, "15___CATEGORICAL___nom_9___e460cce22": 14905, "15___CATEGORICAL___nom_9___e46446f28": 14906, "15___CATEGORICAL___nom_9___e46891dff": 14907, "15___CATEGORICAL___nom_9___e46b19ef6": 14908, "15___CATEGORICAL___nom_9___e46bdea50": 14909, "15___CATEGORICAL___nom_9___e472a5c30": 14910, "15___CATEGORICAL___nom_9___e47310340": 14911, "15___CATEGORICAL___nom_9___e47e2d98c": 14912, "15___CATEGORICAL___nom_9___e480e66d9": 14913, "15___CATEGORICAL___nom_9___e4822a55a": 14914, "15___CATEGORICAL___nom_9___e486a7732": 14915, "15___CATEGORICAL___nom_9___e49105dd9": 14916, "15___CATEGORICAL___nom_9___e49293c55": 14917, "15___CATEGORICAL___nom_9___e49888d48": 14918, "15___CATEGORICAL___nom_9___e49aa5848": 14919, "15___CATEGORICAL___nom_9___e49b83889": 14920, "15___CATEGORICAL___nom_9___e4a3e63b5": 14921, "15___CATEGORICAL___nom_9___e4aa08bb8": 14922, "15___CATEGORICAL___nom_9___e4ae1c0f9": 14923, "15___CATEGORICAL___nom_9___e4aeb3caf": 14924, "15___CATEGORICAL___nom_9___e4b094ac6": 14925, "15___CATEGORICAL___nom_9___e4bde0f34": 14926, "15___CATEGORICAL___nom_9___e4c384af1": 14927, "15___CATEGORICAL___nom_9___e4ca00442": 14928, "15___CATEGORICAL___nom_9___e4cb254c8": 14929, "15___CATEGORICAL___nom_9___e4d384ff8": 14930, "15___CATEGORICAL___nom_9___e4e1d3da0": 14931, "15___CATEGORICAL___nom_9___e4e370879": 14932, "15___CATEGORICAL___nom_9___e4ef22f23": 14933, "15___CATEGORICAL___nom_9___e4f06cbde": 14934, "15___CATEGORICAL___nom_9___e4f14530f": 14935, "15___CATEGORICAL___nom_9___e4fac61e0": 14936, "15___CATEGORICAL___nom_9___e50483121": 14937, "15___CATEGORICAL___nom_9___e5090ee71": 14938, "15___CATEGORICAL___nom_9___e51081bf6": 14939, "15___CATEGORICAL___nom_9___e512f849b": 14940, "15___CATEGORICAL___nom_9___e518b5367": 14941, "15___CATEGORICAL___nom_9___e5281f05b": 14942, "15___CATEGORICAL___nom_9___e52a02a30": 14943, "15___CATEGORICAL___nom_9___e52a21b36": 14944, "15___CATEGORICAL___nom_9___e52aeffaa": 14945, "15___CATEGORICAL___nom_9___e53561dbf": 14946, "15___CATEGORICAL___nom_9___e54024a1b": 14947, "15___CATEGORICAL___nom_9___e544aa757": 14948, "15___CATEGORICAL___nom_9___e54d49dd6": 14949, "15___CATEGORICAL___nom_9___e55097aaa": 14950, "15___CATEGORICAL___nom_9___e551570b2": 14951, "15___CATEGORICAL___nom_9___e5528674b": 14952, "15___CATEGORICAL___nom_9___e55787173": 14953, "15___CATEGORICAL___nom_9___e557f5e7b": 14954, "15___CATEGORICAL___nom_9___e559865d9": 14955, "15___CATEGORICAL___nom_9___e55e0f422": 14956, "15___CATEGORICAL___nom_9___e5604e588": 14957, "15___CATEGORICAL___nom_9___e563a7a53": 14958, "15___CATEGORICAL___nom_9___e563c37ce": 14959, "15___CATEGORICAL___nom_9___e57166308": 14960, "15___CATEGORICAL___nom_9___e5755a9fc": 14961, "15___CATEGORICAL___nom_9___e5866bb6c": 14962, "15___CATEGORICAL___nom_9___e588e7301": 14963, "15___CATEGORICAL___nom_9___e59639dab": 14964, "15___CATEGORICAL___nom_9___e596e1716": 14965, "15___CATEGORICAL___nom_9___e596eac8f": 14966, "15___CATEGORICAL___nom_9___e5a239028": 14967, "15___CATEGORICAL___nom_9___e5a660cf3": 14968, "15___CATEGORICAL___nom_9___e5a743249": 14969, "15___CATEGORICAL___nom_9___e5a786809": 14970, "15___CATEGORICAL___nom_9___e5b87742b": 14971, "15___CATEGORICAL___nom_9___e5c46f1dd": 14972, "15___CATEGORICAL___nom_9___e5cc17930": 14973, "15___CATEGORICAL___nom_9___e5cfd5974": 14974, "15___CATEGORICAL___nom_9___e5d178cae": 14975, "15___CATEGORICAL___nom_9___e5d58998d": 14976, "15___CATEGORICAL___nom_9___e5de393cc": 14977, "15___CATEGORICAL___nom_9___e5df5b55a": 14978, "15___CATEGORICAL___nom_9___e5e720744": 14979, "15___CATEGORICAL___nom_9___e5f9bf033": 14980, "15___CATEGORICAL___nom_9___e5fc130aa": 14981, "15___CATEGORICAL___nom_9___e5fd2f648": 14982, "15___CATEGORICAL___nom_9___e5fe3ab8a": 14983, "15___CATEGORICAL___nom_9___e6004d4dd": 14984, "15___CATEGORICAL___nom_9___e60579800": 14985, "15___CATEGORICAL___nom_9___e605d00c1": 14986, "15___CATEGORICAL___nom_9___e60f823dc": 14987, "15___CATEGORICAL___nom_9___e6114fbcb": 14988, "15___CATEGORICAL___nom_9___e616005e5": 14989, "15___CATEGORICAL___nom_9___e6192b4d7": 14990, "15___CATEGORICAL___nom_9___e61add46c": 14991, "15___CATEGORICAL___nom_9___e62293c9a": 14992, "15___CATEGORICAL___nom_9___e624ed83a": 14993, "15___CATEGORICAL___nom_9___e62abd2a5": 14994, "15___CATEGORICAL___nom_9___e62c2a3cf": 14995, "15___CATEGORICAL___nom_9___e6354e1ea": 14996, "15___CATEGORICAL___nom_9___e63632d9b": 14997, "15___CATEGORICAL___nom_9___e6379d126": 14998, "15___CATEGORICAL___nom_9___e63c4866c": 14999, "15___CATEGORICAL___nom_9___e648c77b4": 15000, "15___CATEGORICAL___nom_9___e649ed634": 15001, "15___CATEGORICAL___nom_9___e6517df10": 15002, "15___CATEGORICAL___nom_9___e6528b35e": 15003, "15___CATEGORICAL___nom_9___e6532fcdb": 15004, "15___CATEGORICAL___nom_9___e65547067": 15005, "15___CATEGORICAL___nom_9___e65af5336": 15006, "15___CATEGORICAL___nom_9___e65e3caff": 15007, "15___CATEGORICAL___nom_9___e660cd8ae": 15008, "15___CATEGORICAL___nom_9___e6697216b": 15009, "15___CATEGORICAL___nom_9___e6751f54c": 15010, "15___CATEGORICAL___nom_9___e678e4724": 15011, "15___CATEGORICAL___nom_9___e67ab2d53": 15012, "15___CATEGORICAL___nom_9___e67b4b3ae": 15013, "15___CATEGORICAL___nom_9___e686614cf": 15014, "15___CATEGORICAL___nom_9___e686d9b99": 15015, "15___CATEGORICAL___nom_9___e68904b1f": 15016, "15___CATEGORICAL___nom_9___e68ba0944": 15017, "15___CATEGORICAL___nom_9___e6900cace": 15018, "15___CATEGORICAL___nom_9___e69e4725b": 15019, "15___CATEGORICAL___nom_9___e6a3b7609": 15020, "15___CATEGORICAL___nom_9___e6a5cbca6": 15021, "15___CATEGORICAL___nom_9___e6a791e94": 15022, "15___CATEGORICAL___nom_9___e6ac183cf": 15023, "15___CATEGORICAL___nom_9___e6afeae1f": 15024, "15___CATEGORICAL___nom_9___e6bc87da9": 15025, "15___CATEGORICAL___nom_9___e6be57dab": 15026, "15___CATEGORICAL___nom_9___e6bf4709d": 15027, "15___CATEGORICAL___nom_9___e6c1d36e9": 15028, "15___CATEGORICAL___nom_9___e6c9cf9f4": 15029, "15___CATEGORICAL___nom_9___e6cabd1b6": 15030, "15___CATEGORICAL___nom_9___e6cef0374": 15031, "15___CATEGORICAL___nom_9___e6d161828": 15032, "15___CATEGORICAL___nom_9___e6d286176": 15033, "15___CATEGORICAL___nom_9___e6d70f1df": 15034, "15___CATEGORICAL___nom_9___e6e04f2f2": 15035, "15___CATEGORICAL___nom_9___e6ed1cc21": 15036, "15___CATEGORICAL___nom_9___e6ef8612b": 15037, "15___CATEGORICAL___nom_9___e6f0487ae": 15038, "15___CATEGORICAL___nom_9___e6f405b61": 15039, "15___CATEGORICAL___nom_9___e6f8a1570": 15040, "15___CATEGORICAL___nom_9___e6fabe34b": 15041, "15___CATEGORICAL___nom_9___e6fb30239": 15042, "15___CATEGORICAL___nom_9___e7013a649": 15043, "15___CATEGORICAL___nom_9___e71435d55": 15044, "15___CATEGORICAL___nom_9___e7203596f": 15045, "15___CATEGORICAL___nom_9___e722f6cb4": 15046, "15___CATEGORICAL___nom_9___e72c3de22": 15047, "15___CATEGORICAL___nom_9___e72ede380": 15048, "15___CATEGORICAL___nom_9___e73d29ada": 15049, "15___CATEGORICAL___nom_9___e73d4c559": 15050, "15___CATEGORICAL___nom_9___e73fb7b52": 15051, "15___CATEGORICAL___nom_9___e74b831a1": 15052, "15___CATEGORICAL___nom_9___e750e2bac": 15053, "15___CATEGORICAL___nom_9___e7511b096": 15054, "15___CATEGORICAL___nom_9___e7575efec": 15055, "15___CATEGORICAL___nom_9___e75ae3ed1": 15056, "15___CATEGORICAL___nom_9___e75ddc2b8": 15057, "15___CATEGORICAL___nom_9___e76089033": 15058, "15___CATEGORICAL___nom_9___e76c62365": 15059, "15___CATEGORICAL___nom_9___e76c935a9": 15060, "15___CATEGORICAL___nom_9___e76cef399": 15061, "15___CATEGORICAL___nom_9___e76ef59f0": 15062, "15___CATEGORICAL___nom_9___e7702b708": 15063, "15___CATEGORICAL___nom_9___e771c4e24": 15064, "15___CATEGORICAL___nom_9___e774adf5c": 15065, "15___CATEGORICAL___nom_9___e77de7512": 15066, "15___CATEGORICAL___nom_9___e78184d75": 15067, "15___CATEGORICAL___nom_9___e799a168a": 15068, "15___CATEGORICAL___nom_9___e79b87256": 15069, "15___CATEGORICAL___nom_9___e7a045747": 15070, "15___CATEGORICAL___nom_9___e7a092844": 15071, "15___CATEGORICAL___nom_9___e7a39a488": 15072, "15___CATEGORICAL___nom_9___e7a598245": 15073, "15___CATEGORICAL___nom_9___e7a9b8cbd": 15074, "15___CATEGORICAL___nom_9___e7abf3acb": 15075, "15___CATEGORICAL___nom_9___e7b921aca": 15076, "15___CATEGORICAL___nom_9___e7bc0ed82": 15077, "15___CATEGORICAL___nom_9___e7bd40f5f": 15078, "15___CATEGORICAL___nom_9___e7cc33942": 15079, "15___CATEGORICAL___nom_9___e7cef88a5": 15080, "15___CATEGORICAL___nom_9___e7d16c7d6": 15081, "15___CATEGORICAL___nom_9___e7d57f476": 15082, "15___CATEGORICAL___nom_9___e7d5f5297": 15083, "15___CATEGORICAL___nom_9___e7dc16f7e": 15084, "15___CATEGORICAL___nom_9___e7dd344a8": 15085, "15___CATEGORICAL___nom_9___e7e96f7a3": 15086, "15___CATEGORICAL___nom_9___e7ed54f0f": 15087, "15___CATEGORICAL___nom_9___e7f0c931c": 15088, "15___CATEGORICAL___nom_9___e7f1a9ade": 15089, "15___CATEGORICAL___nom_9___e7f21b273": 15090, "15___CATEGORICAL___nom_9___e7ffba72e": 15091, "15___CATEGORICAL___nom_9___e80469823": 15092, "15___CATEGORICAL___nom_9___e810f6d6e": 15093, "15___CATEGORICAL___nom_9___e8163030d": 15094, "15___CATEGORICAL___nom_9___e822144a7": 15095, "15___CATEGORICAL___nom_9___e82ec9b46": 15096, "15___CATEGORICAL___nom_9___e834421a0": 15097, "15___CATEGORICAL___nom_9___e83821b8d": 15098, "15___CATEGORICAL___nom_9___e83d0d4d3": 15099, "15___CATEGORICAL___nom_9___e84d54bef": 15100, "15___CATEGORICAL___nom_9___e85a45f91": 15101, "15___CATEGORICAL___nom_9___e85d43bd6": 15102, "15___CATEGORICAL___nom_9___e85ecf7a3": 15103, "15___CATEGORICAL___nom_9___e870526bd": 15104, "15___CATEGORICAL___nom_9___e87175fc7": 15105, "15___CATEGORICAL___nom_9___e874d9dae": 15106, "15___CATEGORICAL___nom_9___e874ecd8f": 15107, "15___CATEGORICAL___nom_9___e87563886": 15108, "15___CATEGORICAL___nom_9___e88412b02": 15109, "15___CATEGORICAL___nom_9___e890cc9ed": 15110, "15___CATEGORICAL___nom_9___e897cdee5": 15111, "15___CATEGORICAL___nom_9___e8998b1c9": 15112, "15___CATEGORICAL___nom_9___e89d7f4ae": 15113, "15___CATEGORICAL___nom_9___e8a18c72d": 15114, "15___CATEGORICAL___nom_9___e8a1ec004": 15115, "15___CATEGORICAL___nom_9___e8a4f304c": 15116, "15___CATEGORICAL___nom_9___e8af8ed0e": 15117, "15___CATEGORICAL___nom_9___e8b16cc5a": 15118, "15___CATEGORICAL___nom_9___e8b47e344": 15119, "15___CATEGORICAL___nom_9___e8b5d7701": 15120, "15___CATEGORICAL___nom_9___e8b63cbc9": 15121, "15___CATEGORICAL___nom_9___e8b921583": 15122, "15___CATEGORICAL___nom_9___e8be2364b": 15123, "15___CATEGORICAL___nom_9___e8c6584a9": 15124, "15___CATEGORICAL___nom_9___e8c844327": 15125, "15___CATEGORICAL___nom_9___e8d7953b3": 15126, "15___CATEGORICAL___nom_9___e8dc93294": 15127, "15___CATEGORICAL___nom_9___e8f9187b2": 15128, "15___CATEGORICAL___nom_9___e8fc08540": 15129, "15___CATEGORICAL___nom_9___e900af1bf": 15130, "15___CATEGORICAL___nom_9___e9031f274": 15131, "15___CATEGORICAL___nom_9___e9045425f": 15132, "15___CATEGORICAL___nom_9___e9053a5b4": 15133, "15___CATEGORICAL___nom_9___e90e8d084": 15134, "15___CATEGORICAL___nom_9___e90f025fd": 15135, "15___CATEGORICAL___nom_9___e90f15353": 15136, "15___CATEGORICAL___nom_9___e9113117b": 15137, "15___CATEGORICAL___nom_9___e916131f5": 15138, "15___CATEGORICAL___nom_9___e92025985": 15139, "15___CATEGORICAL___nom_9___e92142903": 15140, "15___CATEGORICAL___nom_9___e924e84d5": 15141, "15___CATEGORICAL___nom_9___e9297e693": 15142, "15___CATEGORICAL___nom_9___e933127f4": 15143, "15___CATEGORICAL___nom_9___e9340b80f": 15144, "15___CATEGORICAL___nom_9___e939599df": 15145, "15___CATEGORICAL___nom_9___e93c2e4cb": 15146, "15___CATEGORICAL___nom_9___e94015f35": 15147, "15___CATEGORICAL___nom_9___e94e92041": 15148, "15___CATEGORICAL___nom_9___e94ef6213": 15149, "15___CATEGORICAL___nom_9___e94f65c50": 15150, "15___CATEGORICAL___nom_9___e95389f2b": 15151, "15___CATEGORICAL___nom_9___e95678273": 15152, "15___CATEGORICAL___nom_9___e95830634": 15153, "15___CATEGORICAL___nom_9___e958ca8d6": 15154, "15___CATEGORICAL___nom_9___e95c9a217": 15155, "15___CATEGORICAL___nom_9___e9689f011": 15156, "15___CATEGORICAL___nom_9___e9693cc1d": 15157, "15___CATEGORICAL___nom_9___e976df9a5": 15158, "15___CATEGORICAL___nom_9___e97817737": 15159, "15___CATEGORICAL___nom_9___e97893797": 15160, "15___CATEGORICAL___nom_9___e982d4be7": 15161, "15___CATEGORICAL___nom_9___e98aa159f": 15162, "15___CATEGORICAL___nom_9___e98bbf65f": 15163, "15___CATEGORICAL___nom_9___e98d80815": 15164, "15___CATEGORICAL___nom_9___e98ea9851": 15165, "15___CATEGORICAL___nom_9___e990b1adc": 15166, "15___CATEGORICAL___nom_9___e994b742d": 15167, "15___CATEGORICAL___nom_9___e9975b24a": 15168, "15___CATEGORICAL___nom_9___e9a8b5638": 15169, "15___CATEGORICAL___nom_9___e9aa87a4e": 15170, "15___CATEGORICAL___nom_9___e9bcd0948": 15171, "15___CATEGORICAL___nom_9___e9c50a166": 15172, "15___CATEGORICAL___nom_9___e9d406439": 15173, "15___CATEGORICAL___nom_9___e9d83ae6a": 15174, "15___CATEGORICAL___nom_9___e9e3aa598": 15175, "15___CATEGORICAL___nom_9___e9e56a3f8": 15176, "15___CATEGORICAL___nom_9___e9ebed402": 15177, "15___CATEGORICAL___nom_9___e9f235ad2": 15178, "15___CATEGORICAL___nom_9___e9f535d02": 15179, "15___CATEGORICAL___nom_9___e9f6442aa": 15180, "15___CATEGORICAL___nom_9___e9f8d8b08": 15181, "15___CATEGORICAL___nom_9___e9ffb960e": 15182, "15___CATEGORICAL___nom_9___ea046c339": 15183, "15___CATEGORICAL___nom_9___ea056e50d": 15184, "15___CATEGORICAL___nom_9___ea0b51e8d": 15185, "15___CATEGORICAL___nom_9___ea0e8f360": 15186, "15___CATEGORICAL___nom_9___ea17fbdc6": 15187, "15___CATEGORICAL___nom_9___ea182abc9": 15188, "15___CATEGORICAL___nom_9___ea216b077": 15189, "15___CATEGORICAL___nom_9___ea242317d": 15190, "15___CATEGORICAL___nom_9___ea2582bc5": 15191, "15___CATEGORICAL___nom_9___ea2647385": 15192, "15___CATEGORICAL___nom_9___ea2aae04c": 15193, "15___CATEGORICAL___nom_9___ea2f5defe": 15194, "15___CATEGORICAL___nom_9___ea32b9032": 15195, "15___CATEGORICAL___nom_9___ea37f9765": 15196, "15___CATEGORICAL___nom_9___ea3a9a2a7": 15197, "15___CATEGORICAL___nom_9___ea447ff7e": 15198, "15___CATEGORICAL___nom_9___ea47913fc": 15199, "15___CATEGORICAL___nom_9___ea48ead71": 15200, "15___CATEGORICAL___nom_9___ea52ac622": 15201, "15___CATEGORICAL___nom_9___ea52d99fd": 15202, "15___CATEGORICAL___nom_9___ea552cdca": 15203, "15___CATEGORICAL___nom_9___ea63fad6c": 15204, "15___CATEGORICAL___nom_9___ea6538885": 15205, "15___CATEGORICAL___nom_9___ea6e59fc5": 15206, "15___CATEGORICAL___nom_9___ea7330462": 15207, "15___CATEGORICAL___nom_9___ea758f61b": 15208, "15___CATEGORICAL___nom_9___ea8412e32": 15209, "15___CATEGORICAL___nom_9___ea85df7d5": 15210, "15___CATEGORICAL___nom_9___ea87c8d9f": 15211, "15___CATEGORICAL___nom_9___ea8f3319e": 15212, "15___CATEGORICAL___nom_9___ea90cd2e3": 15213, "15___CATEGORICAL___nom_9___ea92292bf": 15214, "15___CATEGORICAL___nom_9___ea9f3fc38": 15215, "15___CATEGORICAL___nom_9___eaa2fed47": 15216, "15___CATEGORICAL___nom_9___eaacb7cff": 15217, "15___CATEGORICAL___nom_9___eab4cbf2c": 15218, "15___CATEGORICAL___nom_9___eaba8e275": 15219, "15___CATEGORICAL___nom_9___eabcb6e2a": 15220, "15___CATEGORICAL___nom_9___eac079792": 15221, "15___CATEGORICAL___nom_9___eac28c10e": 15222, "15___CATEGORICAL___nom_9___eac459235": 15223, "15___CATEGORICAL___nom_9___eac47277d": 15224, "15___CATEGORICAL___nom_9___eac6dcd58": 15225, "15___CATEGORICAL___nom_9___ead3d24b9": 15226, "15___CATEGORICAL___nom_9___ead5af7f7": 15227, "15___CATEGORICAL___nom_9___ead8adfce": 15228, "15___CATEGORICAL___nom_9___eada92f23": 15229, "15___CATEGORICAL___nom_9___eade42133": 15230, "15___CATEGORICAL___nom_9___eae3446d0": 15231, "15___CATEGORICAL___nom_9___eae866826": 15232, "15___CATEGORICAL___nom_9___eae90b171": 15233, "15___CATEGORICAL___nom_9___eaed14a9f": 15234, "15___CATEGORICAL___nom_9___eb0c70cc2": 15235, "15___CATEGORICAL___nom_9___eb0edaa1a": 15236, "15___CATEGORICAL___nom_9___eb156f4bc": 15237, "15___CATEGORICAL___nom_9___eb169cb65": 15238, "15___CATEGORICAL___nom_9___eb19f6885": 15239, "15___CATEGORICAL___nom_9___eb28c3b55": 15240, "15___CATEGORICAL___nom_9___eb31cc16d": 15241, "15___CATEGORICAL___nom_9___eb32bd229": 15242, "15___CATEGORICAL___nom_9___eb37bdd57": 15243, "15___CATEGORICAL___nom_9___eb3890574": 15244, "15___CATEGORICAL___nom_9___eb3d7ce7e": 15245, "15___CATEGORICAL___nom_9___eb4e8a7df": 15246, "15___CATEGORICAL___nom_9___eb531c345": 15247, "15___CATEGORICAL___nom_9___eb58ff2cd": 15248, "15___CATEGORICAL___nom_9___eb653068f": 15249, "15___CATEGORICAL___nom_9___eb656f6aa": 15250, "15___CATEGORICAL___nom_9___eb692738c": 15251, "15___CATEGORICAL___nom_9___eb69cc526": 15252, "15___CATEGORICAL___nom_9___eb77a5a4f": 15253, "15___CATEGORICAL___nom_9___eb7ab314d": 15254, "15___CATEGORICAL___nom_9___eb7ceafae": 15255, "15___CATEGORICAL___nom_9___eb7ea57ea": 15256, "15___CATEGORICAL___nom_9___eb8e8bee9": 15257, "15___CATEGORICAL___nom_9___eb8ed0632": 15258, "15___CATEGORICAL___nom_9___eb967fa5c": 15259, "15___CATEGORICAL___nom_9___eb9b836d1": 15260, "15___CATEGORICAL___nom_9___eba11416b": 15261, "15___CATEGORICAL___nom_9___eba480e5b": 15262, "15___CATEGORICAL___nom_9___eba94c090": 15263, "15___CATEGORICAL___nom_9___ebac0a233": 15264, "15___CATEGORICAL___nom_9___ebacfc734": 15265, "15___CATEGORICAL___nom_9___ebb8b6a14": 15266, "15___CATEGORICAL___nom_9___ebb8fb55c": 15267, "15___CATEGORICAL___nom_9___ebbdeda97": 15268, "15___CATEGORICAL___nom_9___ebc386311": 15269, "15___CATEGORICAL___nom_9___ebc481d7d": 15270, "15___CATEGORICAL___nom_9___ebc51b2a3": 15271, "15___CATEGORICAL___nom_9___ebc8946c4": 15272, "15___CATEGORICAL___nom_9___ebce0c015": 15273, "15___CATEGORICAL___nom_9___ebce5333e": 15274, "15___CATEGORICAL___nom_9___ebd72a551": 15275, "15___CATEGORICAL___nom_9___ebd88e944": 15276, "15___CATEGORICAL___nom_9___ebe476e55": 15277, "15___CATEGORICAL___nom_9___ebe5becf3": 15278, "15___CATEGORICAL___nom_9___ebec32f1a": 15279, "15___CATEGORICAL___nom_9___ebee40aef": 15280, "15___CATEGORICAL___nom_9___ebf0b296c": 15281, "15___CATEGORICAL___nom_9___ebf114950": 15282, "15___CATEGORICAL___nom_9___ebf2138cd": 15283, "15___CATEGORICAL___nom_9___ebf6d58d0": 15284, "15___CATEGORICAL___nom_9___ec0f41d43": 15285, "15___CATEGORICAL___nom_9___ec1976278": 15286, "15___CATEGORICAL___nom_9___ec1c698a0": 15287, "15___CATEGORICAL___nom_9___ec1edddbf": 15288, "15___CATEGORICAL___nom_9___ec28986e7": 15289, "15___CATEGORICAL___nom_9___ec28a4647": 15290, "15___CATEGORICAL___nom_9___ec2f48912": 15291, "15___CATEGORICAL___nom_9___ec30c88ca": 15292, "15___CATEGORICAL___nom_9___ec3116ee6": 15293, "15___CATEGORICAL___nom_9___ec32613c0": 15294, "15___CATEGORICAL___nom_9___ec32f6f6c": 15295, "15___CATEGORICAL___nom_9___ec3eed7c5": 15296, "15___CATEGORICAL___nom_9___ec40cd6e8": 15297, "15___CATEGORICAL___nom_9___ec43940ad": 15298, "15___CATEGORICAL___nom_9___ec4999e23": 15299, "15___CATEGORICAL___nom_9___ec4bc33d4": 15300, "15___CATEGORICAL___nom_9___ec5562eaa": 15301, "15___CATEGORICAL___nom_9___ec572caf4": 15302, "15___CATEGORICAL___nom_9___ec5a77e19": 15303, "15___CATEGORICAL___nom_9___ec63001f2": 15304, "15___CATEGORICAL___nom_9___ec74c138a": 15305, "15___CATEGORICAL___nom_9___ec85d03c2": 15306, "15___CATEGORICAL___nom_9___ec88db584": 15307, "15___CATEGORICAL___nom_9___ec94cad1f": 15308, "15___CATEGORICAL___nom_9___ec99284d7": 15309, "15___CATEGORICAL___nom_9___eca3146f1": 15310, "15___CATEGORICAL___nom_9___ecb32ad91": 15311, "15___CATEGORICAL___nom_9___ecba31a0c": 15312, "15___CATEGORICAL___nom_9___ecba66bab": 15313, "15___CATEGORICAL___nom_9___ecbc288a5": 15314, "15___CATEGORICAL___nom_9___ecc651b7d": 15315, "15___CATEGORICAL___nom_9___ecc71342b": 15316, "15___CATEGORICAL___nom_9___ecca69759": 15317, "15___CATEGORICAL___nom_9___eccc1cc3b": 15318, "15___CATEGORICAL___nom_9___ecd28c5b6": 15319, "15___CATEGORICAL___nom_9___ecdcaf4cf": 15320, "15___CATEGORICAL___nom_9___ecdd982d4": 15321, "15___CATEGORICAL___nom_9___ece314e96": 15322, "15___CATEGORICAL___nom_9___ecf351be8": 15323, "15___CATEGORICAL___nom_9___ecf3f01c4": 15324, "15___CATEGORICAL___nom_9___ecf451934": 15325, "15___CATEGORICAL___nom_9___ecfae844c": 15326, "15___CATEGORICAL___nom_9___ecffa2ee3": 15327, "15___CATEGORICAL___nom_9___ed0378f7d": 15328, "15___CATEGORICAL___nom_9___ed1ede79a": 15329, "15___CATEGORICAL___nom_9___ed1f64f6f": 15330, "15___CATEGORICAL___nom_9___ed2b6bb6c": 15331, "15___CATEGORICAL___nom_9___ed2bdad78": 15332, "15___CATEGORICAL___nom_9___ed2dc8757": 15333, "15___CATEGORICAL___nom_9___ed326b121": 15334, "15___CATEGORICAL___nom_9___ed42a4940": 15335, "15___CATEGORICAL___nom_9___ed449f23d": 15336, "15___CATEGORICAL___nom_9___ed4f6510c": 15337, "15___CATEGORICAL___nom_9___ed5f2bf65": 15338, "15___CATEGORICAL___nom_9___ed60e5353": 15339, "15___CATEGORICAL___nom_9___ed61c8e7f": 15340, "15___CATEGORICAL___nom_9___ed68ced34": 15341, "15___CATEGORICAL___nom_9___ed6cee289": 15342, "15___CATEGORICAL___nom_9___ed6fb6436": 15343, "15___CATEGORICAL___nom_9___ed73433a2": 15344, "15___CATEGORICAL___nom_9___ed74c4ee0": 15345, "15___CATEGORICAL___nom_9___ed78ece08": 15346, "15___CATEGORICAL___nom_9___ed78f989e": 15347, "15___CATEGORICAL___nom_9___ed7f6834f": 15348, "15___CATEGORICAL___nom_9___ed8a0b9fd": 15349, "15___CATEGORICAL___nom_9___ed9718e7a": 15350, "15___CATEGORICAL___nom_9___ed9bc5d8c": 15351, "15___CATEGORICAL___nom_9___eda42a4ab": 15352, "15___CATEGORICAL___nom_9___eda47fff2": 15353, "15___CATEGORICAL___nom_9___eda98169d": 15354, "15___CATEGORICAL___nom_9___edaa082bc": 15355, "15___CATEGORICAL___nom_9___edade7475": 15356, "15___CATEGORICAL___nom_9___edb389887": 15357, "15___CATEGORICAL___nom_9___edbbbc9dd": 15358, "15___CATEGORICAL___nom_9___edbe0d3aa": 15359, "15___CATEGORICAL___nom_9___edbf3ef3d": 15360, "15___CATEGORICAL___nom_9___edc156bb2": 15361, "15___CATEGORICAL___nom_9___edc51e9ad": 15362, "15___CATEGORICAL___nom_9___edcac67d6": 15363, "15___CATEGORICAL___nom_9___edd0fd1b1": 15364, "15___CATEGORICAL___nom_9___edd29bd8d": 15365, "15___CATEGORICAL___nom_9___edd6d0af0": 15366, "15___CATEGORICAL___nom_9___ede351934": 15367, "15___CATEGORICAL___nom_9___ede51ee9b": 15368, "15___CATEGORICAL___nom_9___edea09f15": 15369, "15___CATEGORICAL___nom_9___edf0e5332": 15370, "15___CATEGORICAL___nom_9___edfce87c8": 15371, "15___CATEGORICAL___nom_9___ee01115f9": 15372, "15___CATEGORICAL___nom_9___ee07e8802": 15373, "15___CATEGORICAL___nom_9___ee0c42124": 15374, "15___CATEGORICAL___nom_9___ee16bdb63": 15375, "15___CATEGORICAL___nom_9___ee2255615": 15376, "15___CATEGORICAL___nom_9___ee260c8cb": 15377, "15___CATEGORICAL___nom_9___ee2ea84ff": 15378, "15___CATEGORICAL___nom_9___ee3ef9a4c": 15379, "15___CATEGORICAL___nom_9___ee4aa56ae": 15380, "15___CATEGORICAL___nom_9___ee4ac2fcf": 15381, "15___CATEGORICAL___nom_9___ee4ad3459": 15382, "15___CATEGORICAL___nom_9___ee5057a98": 15383, "15___CATEGORICAL___nom_9___ee51f3b03": 15384, "15___CATEGORICAL___nom_9___ee5e9e589": 15385, "15___CATEGORICAL___nom_9___ee61caaf5": 15386, "15___CATEGORICAL___nom_9___ee64836ce": 15387, "15___CATEGORICAL___nom_9___ee681b252": 15388, "15___CATEGORICAL___nom_9___ee8090328": 15389, "15___CATEGORICAL___nom_9___ee87a2caa": 15390, "15___CATEGORICAL___nom_9___ee884c8f8": 15391, "15___CATEGORICAL___nom_9___ee8dda622": 15392, "15___CATEGORICAL___nom_9___ee8ddd850": 15393, "15___CATEGORICAL___nom_9___ee90398d6": 15394, "15___CATEGORICAL___nom_9___ee9314569": 15395, "15___CATEGORICAL___nom_9___ee9570747": 15396, "15___CATEGORICAL___nom_9___ee997e1c2": 15397, "15___CATEGORICAL___nom_9___ee9e22d2c": 15398, "15___CATEGORICAL___nom_9___ee9eaeb3c": 15399, "15___CATEGORICAL___nom_9___eea3fee36": 15400, "15___CATEGORICAL___nom_9___eea70b4a7": 15401, "15___CATEGORICAL___nom_9___eeae49068": 15402, "15___CATEGORICAL___nom_9___eeaf55dc2": 15403, "15___CATEGORICAL___nom_9___eebafb847": 15404, "15___CATEGORICAL___nom_9___eebdb979f": 15405, "15___CATEGORICAL___nom_9___eec253dc9": 15406, "15___CATEGORICAL___nom_9___eec579d42": 15407, "15___CATEGORICAL___nom_9___eec9b9ba3": 15408, "15___CATEGORICAL___nom_9___eed471ae3": 15409, "15___CATEGORICAL___nom_9___eed8943f2": 15410, "15___CATEGORICAL___nom_9___eee773af3": 15411, "15___CATEGORICAL___nom_9___eee8cc6ac": 15412, "15___CATEGORICAL___nom_9___eef556f28": 15413, "15___CATEGORICAL___nom_9___eef885a7d": 15414, "15___CATEGORICAL___nom_9___ef0a86323": 15415, "15___CATEGORICAL___nom_9___ef0cd8b8b": 15416, "15___CATEGORICAL___nom_9___ef0e58150": 15417, "15___CATEGORICAL___nom_9___ef104da3a": 15418, "15___CATEGORICAL___nom_9___ef1558c24": 15419, "15___CATEGORICAL___nom_9___ef1ab467e": 15420, "15___CATEGORICAL___nom_9___ef2683602": 15421, "15___CATEGORICAL___nom_9___ef2b6ad86": 15422, "15___CATEGORICAL___nom_9___ef2c58152": 15423, "15___CATEGORICAL___nom_9___ef2cdaf7b": 15424, "15___CATEGORICAL___nom_9___ef306e5b7": 15425, "15___CATEGORICAL___nom_9___ef367e995": 15426, "15___CATEGORICAL___nom_9___ef3812a94": 15427, "15___CATEGORICAL___nom_9___ef3881c43": 15428, "15___CATEGORICAL___nom_9___ef3cbbc20": 15429, "15___CATEGORICAL___nom_9___ef4253b82": 15430, "15___CATEGORICAL___nom_9___ef4f0f085": 15431, "15___CATEGORICAL___nom_9___ef4f5fca2": 15432, "15___CATEGORICAL___nom_9___ef57d3b32": 15433, "15___CATEGORICAL___nom_9___ef5d10767": 15434, "15___CATEGORICAL___nom_9___ef63f86e1": 15435, "15___CATEGORICAL___nom_9___ef6758bfc": 15436, "15___CATEGORICAL___nom_9___ef68b5367": 15437, "15___CATEGORICAL___nom_9___ef68f585e": 15438, "15___CATEGORICAL___nom_9___ef72b25b7": 15439, "15___CATEGORICAL___nom_9___ef74e4a40": 15440, "15___CATEGORICAL___nom_9___ef76f86d9": 15441, "15___CATEGORICAL___nom_9___ef7b4b927": 15442, "15___CATEGORICAL___nom_9___ef866e039": 15443, "15___CATEGORICAL___nom_9___ef8c523a7": 15444, "15___CATEGORICAL___nom_9___ef8e96532": 15445, "15___CATEGORICAL___nom_9___ef92251d7": 15446, "15___CATEGORICAL___nom_9___ef968c387": 15447, "15___CATEGORICAL___nom_9___ef98d5e8b": 15448, "15___CATEGORICAL___nom_9___ef9fc8e77": 15449, "15___CATEGORICAL___nom_9___efa04891c": 15450, "15___CATEGORICAL___nom_9___efa0d02d1": 15451, "15___CATEGORICAL___nom_9___efa23070a": 15452, "15___CATEGORICAL___nom_9___efa8954f7": 15453, "15___CATEGORICAL___nom_9___efab204d5": 15454, "15___CATEGORICAL___nom_9___efad9a264": 15455, "15___CATEGORICAL___nom_9___efb5ec0df": 15456, "15___CATEGORICAL___nom_9___efb7015c0": 15457, "15___CATEGORICAL___nom_9___efcc4ae5d": 15458, "15___CATEGORICAL___nom_9___efcd4e389": 15459, "15___CATEGORICAL___nom_9___efd236dba": 15460, "15___CATEGORICAL___nom_9___efdd4e727": 15461, "15___CATEGORICAL___nom_9___efde67cde": 15462, "15___CATEGORICAL___nom_9___efdfef16e": 15463, "15___CATEGORICAL___nom_9___efe13bfb1": 15464, "15___CATEGORICAL___nom_9___efe409072": 15465, "15___CATEGORICAL___nom_9___efe414fcc": 15466, "15___CATEGORICAL___nom_9___efe509721": 15467, "15___CATEGORICAL___nom_9___efea41c47": 15468, "15___CATEGORICAL___nom_9___efff39fd9": 15469, "15___CATEGORICAL___nom_9___f00159f26": 15470, "15___CATEGORICAL___nom_9___f0055e85c": 15471, "15___CATEGORICAL___nom_9___f00ce72ea": 15472, "15___CATEGORICAL___nom_9___f010038ac": 15473, "15___CATEGORICAL___nom_9___f0154d05c": 15474, "15___CATEGORICAL___nom_9___f024392e5": 15475, "15___CATEGORICAL___nom_9___f02699f10": 15476, "15___CATEGORICAL___nom_9___f02dfd101": 15477, "15___CATEGORICAL___nom_9___f036857c3": 15478, "15___CATEGORICAL___nom_9___f03f3e66e": 15479, "15___CATEGORICAL___nom_9___f04207e6b": 15480, "15___CATEGORICAL___nom_9___f046f9f8f": 15481, "15___CATEGORICAL___nom_9___f0485700e": 15482, "15___CATEGORICAL___nom_9___f05223734": 15483, "15___CATEGORICAL___nom_9___f05469405": 15484, "15___CATEGORICAL___nom_9___f0549f839": 15485, "15___CATEGORICAL___nom_9___f059ff271": 15486, "15___CATEGORICAL___nom_9___f06417a37": 15487, "15___CATEGORICAL___nom_9___f0709e146": 15488, "15___CATEGORICAL___nom_9___f07a25378": 15489, "15___CATEGORICAL___nom_9___f07af6e23": 15490, "15___CATEGORICAL___nom_9___f0868d00b": 15491, "15___CATEGORICAL___nom_9___f0868e800": 15492, "15___CATEGORICAL___nom_9___f08a3497b": 15493, "15___CATEGORICAL___nom_9___f08e0c4a9": 15494, "15___CATEGORICAL___nom_9___f08eeca35": 15495, "15___CATEGORICAL___nom_9___f09051fa9": 15496, "15___CATEGORICAL___nom_9___f09696d4d": 15497, "15___CATEGORICAL___nom_9___f09ada053": 15498, "15___CATEGORICAL___nom_9___f09b0c8ae": 15499, "15___CATEGORICAL___nom_9___f0a4c96e2": 15500, "15___CATEGORICAL___nom_9___f0a7281c2": 15501, "15___CATEGORICAL___nom_9___f0a8febca": 15502, "15___CATEGORICAL___nom_9___f0b876463": 15503, "15___CATEGORICAL___nom_9___f0c035757": 15504, "15___CATEGORICAL___nom_9___f0c14f203": 15505, "15___CATEGORICAL___nom_9___f0c4ebbc2": 15506, "15___CATEGORICAL___nom_9___f0ca30ac1": 15507, "15___CATEGORICAL___nom_9___f0ca54728": 15508, "15___CATEGORICAL___nom_9___f0cb05953": 15509, "15___CATEGORICAL___nom_9___f0cd29e89": 15510, "15___CATEGORICAL___nom_9___f0cea9769": 15511, "15___CATEGORICAL___nom_9___f0da5eaeb": 15512, "15___CATEGORICAL___nom_9___f0dab9277": 15513, "15___CATEGORICAL___nom_9___f0dda8746": 15514, "15___CATEGORICAL___nom_9___f0e0222f3": 15515, "15___CATEGORICAL___nom_9___f0e333021": 15516, "15___CATEGORICAL___nom_9___f0e34a036": 15517, "15___CATEGORICAL___nom_9___f0e5d7b1c": 15518, "15___CATEGORICAL___nom_9___f0f0778ef": 15519, "15___CATEGORICAL___nom_9___f1057964b": 15520, "15___CATEGORICAL___nom_9___f105cdc51": 15521, "15___CATEGORICAL___nom_9___f106759a1": 15522, "15___CATEGORICAL___nom_9___f10b35697": 15523, "15___CATEGORICAL___nom_9___f10f6acd9": 15524, "15___CATEGORICAL___nom_9___f10f6e4b8": 15525, "15___CATEGORICAL___nom_9___f1278ae5c": 15526, "15___CATEGORICAL___nom_9___f12c093b2": 15527, "15___CATEGORICAL___nom_9___f12e3bfb5": 15528, "15___CATEGORICAL___nom_9___f12f038cc": 15529, "15___CATEGORICAL___nom_9___f12f38143": 15530, "15___CATEGORICAL___nom_9___f13abffbe": 15531, "15___CATEGORICAL___nom_9___f13d55f84": 15532, "15___CATEGORICAL___nom_9___f1409ed0a": 15533, "15___CATEGORICAL___nom_9___f141376c6": 15534, "15___CATEGORICAL___nom_9___f14a95480": 15535, "15___CATEGORICAL___nom_9___f14bcdeb1": 15536, "15___CATEGORICAL___nom_9___f152f5b8a": 15537, "15___CATEGORICAL___nom_9___f15623083": 15538, "15___CATEGORICAL___nom_9___f157c6eef": 15539, "15___CATEGORICAL___nom_9___f15aeaf6e": 15540, "15___CATEGORICAL___nom_9___f15b4db73": 15541, "15___CATEGORICAL___nom_9___f16547e58": 15542, "15___CATEGORICAL___nom_9___f172b1cbc": 15543, "15___CATEGORICAL___nom_9___f174f52eb": 15544, "15___CATEGORICAL___nom_9___f17a8b0e0": 15545, "15___CATEGORICAL___nom_9___f17ed53d5": 15546, "15___CATEGORICAL___nom_9___f18386d66": 15547, "15___CATEGORICAL___nom_9___f185e65bc": 15548, "15___CATEGORICAL___nom_9___f18854563": 15549, "15___CATEGORICAL___nom_9___f18f0d7d2": 15550, "15___CATEGORICAL___nom_9___f190d6914": 15551, "15___CATEGORICAL___nom_9___f197616cb": 15552, "15___CATEGORICAL___nom_9___f1a1ff24c": 15553, "15___CATEGORICAL___nom_9___f1a7923b1": 15554, "15___CATEGORICAL___nom_9___f1a9cd730": 15555, "15___CATEGORICAL___nom_9___f1ad05197": 15556, "15___CATEGORICAL___nom_9___f1afb9211": 15557, "15___CATEGORICAL___nom_9___f1b242884": 15558, "15___CATEGORICAL___nom_9___f1b8e92ff": 15559, "15___CATEGORICAL___nom_9___f1c2fd742": 15560, "15___CATEGORICAL___nom_9___f1d53e20f": 15561, "15___CATEGORICAL___nom_9___f1e067aed": 15562, "15___CATEGORICAL___nom_9___f1e4d5285": 15563, "15___CATEGORICAL___nom_9___f1e4e269e": 15564, "15___CATEGORICAL___nom_9___f1f400644": 15565, "15___CATEGORICAL___nom_9___f1f881e1c": 15566, "15___CATEGORICAL___nom_9___f1f8e906c": 15567, "15___CATEGORICAL___nom_9___f1f92a85e": 15568, "15___CATEGORICAL___nom_9___f200f565d": 15569, "15___CATEGORICAL___nom_9___f202100f4": 15570, "15___CATEGORICAL___nom_9___f20a51ba3": 15571, "15___CATEGORICAL___nom_9___f21edef76": 15572, "15___CATEGORICAL___nom_9___f2337070a": 15573, "15___CATEGORICAL___nom_9___f23b101e2": 15574, "15___CATEGORICAL___nom_9___f24515308": 15575, "15___CATEGORICAL___nom_9___f246b9f16": 15576, "15___CATEGORICAL___nom_9___f247c620a": 15577, "15___CATEGORICAL___nom_9___f24e13d9e": 15578, "15___CATEGORICAL___nom_9___f2592de6c": 15579, "15___CATEGORICAL___nom_9___f263ade13": 15580, "15___CATEGORICAL___nom_9___f2643b3d7": 15581, "15___CATEGORICAL___nom_9___f26d7ddbd": 15582, "15___CATEGORICAL___nom_9___f26edb856": 15583, "15___CATEGORICAL___nom_9___f2716a451": 15584, "15___CATEGORICAL___nom_9___f2744e92c": 15585, "15___CATEGORICAL___nom_9___f27484ad8": 15586, "15___CATEGORICAL___nom_9___f278f66ac": 15587, "15___CATEGORICAL___nom_9___f27970f59": 15588, "15___CATEGORICAL___nom_9___f289f8f04": 15589, "15___CATEGORICAL___nom_9___f29f3503a": 15590, "15___CATEGORICAL___nom_9___f2abeaa5b": 15591, "15___CATEGORICAL___nom_9___f2acf2911": 15592, "15___CATEGORICAL___nom_9___f2b367502": 15593, "15___CATEGORICAL___nom_9___f2b6ca3d8": 15594, "15___CATEGORICAL___nom_9___f2c8ac231": 15595, "15___CATEGORICAL___nom_9___f2cfcce85": 15596, "15___CATEGORICAL___nom_9___f2d6ba224": 15597, "15___CATEGORICAL___nom_9___f2d8eaa42": 15598, "15___CATEGORICAL___nom_9___f2daed296": 15599, "15___CATEGORICAL___nom_9___f2deeca56": 15600, "15___CATEGORICAL___nom_9___f2e35168e": 15601, "15___CATEGORICAL___nom_9___f2fa4df66": 15602, "15___CATEGORICAL___nom_9___f2fa8b694": 15603, "15___CATEGORICAL___nom_9___f2fb8ff79": 15604, "15___CATEGORICAL___nom_9___f2fc20245": 15605, "15___CATEGORICAL___nom_9___f2fd2161b": 15606, "15___CATEGORICAL___nom_9___f2ff92a02": 15607, "15___CATEGORICAL___nom_9___f30806bbe": 15608, "15___CATEGORICAL___nom_9___f30bf2307": 15609, "15___CATEGORICAL___nom_9___f30e6bf63": 15610, "15___CATEGORICAL___nom_9___f3191aab0": 15611, "15___CATEGORICAL___nom_9___f31d0e044": 15612, "15___CATEGORICAL___nom_9___f32c6d2d5": 15613, "15___CATEGORICAL___nom_9___f330ab269": 15614, "15___CATEGORICAL___nom_9___f330db06d": 15615, "15___CATEGORICAL___nom_9___f33219e09": 15616, "15___CATEGORICAL___nom_9___f33325359": 15617, "15___CATEGORICAL___nom_9___f33fadb86": 15618, "15___CATEGORICAL___nom_9___f342096aa": 15619, "15___CATEGORICAL___nom_9___f343a63ae": 15620, "15___CATEGORICAL___nom_9___f344b0486": 15621, "15___CATEGORICAL___nom_9___f346d6b27": 15622, "15___CATEGORICAL___nom_9___f34781de3": 15623, "15___CATEGORICAL___nom_9___f35082a07": 15624, "15___CATEGORICAL___nom_9___f35306ca6": 15625, "15___CATEGORICAL___nom_9___f35364981": 15626, "15___CATEGORICAL___nom_9___f354aa31e": 15627, "15___CATEGORICAL___nom_9___f35da259a": 15628, "15___CATEGORICAL___nom_9___f36f3a740": 15629, "15___CATEGORICAL___nom_9___f3753bf18": 15630, "15___CATEGORICAL___nom_9___f3759747c": 15631, "15___CATEGORICAL___nom_9___f37752276": 15632, "15___CATEGORICAL___nom_9___f37815d1f": 15633, "15___CATEGORICAL___nom_9___f37e85a60": 15634, "15___CATEGORICAL___nom_9___f38837f5e": 15635, "15___CATEGORICAL___nom_9___f39223cf1": 15636, "15___CATEGORICAL___nom_9___f392ed837": 15637, "15___CATEGORICAL___nom_9___f39515db8": 15638, "15___CATEGORICAL___nom_9___f3984d6e5": 15639, "15___CATEGORICAL___nom_9___f3a1b0296": 15640, "15___CATEGORICAL___nom_9___f3a6f013b": 15641, "15___CATEGORICAL___nom_9___f3aab4943": 15642, "15___CATEGORICAL___nom_9___f3b398223": 15643, "15___CATEGORICAL___nom_9___f3b79a78c": 15644, "15___CATEGORICAL___nom_9___f3b8e1c08": 15645, "15___CATEGORICAL___nom_9___f3bf14fae": 15646, "15___CATEGORICAL___nom_9___f3c28aa7f": 15647, "15___CATEGORICAL___nom_9___f3c4b30eb": 15648, "15___CATEGORICAL___nom_9___f3cd5e22f": 15649, "15___CATEGORICAL___nom_9___f3d0d2710": 15650, "15___CATEGORICAL___nom_9___f3d43065f": 15651, "15___CATEGORICAL___nom_9___f3d4e7c21": 15652, "15___CATEGORICAL___nom_9___f3d690397": 15653, "15___CATEGORICAL___nom_9___f3e08138d": 15654, "15___CATEGORICAL___nom_9___f3eaba4ad": 15655, "15___CATEGORICAL___nom_9___f3ebfb733": 15656, "15___CATEGORICAL___nom_9___f3eed0bbd": 15657, "15___CATEGORICAL___nom_9___f3f7aabc8": 15658, "15___CATEGORICAL___nom_9___f3fbb2daa": 15659, "15___CATEGORICAL___nom_9___f3fe833d9": 15660, "15___CATEGORICAL___nom_9___f400c5bad": 15661, "15___CATEGORICAL___nom_9___f401a58d5": 15662, "15___CATEGORICAL___nom_9___f40205660": 15663, "15___CATEGORICAL___nom_9___f4096fd3a": 15664, "15___CATEGORICAL___nom_9___f40a46d0b": 15665, "15___CATEGORICAL___nom_9___f40e15a7a": 15666, "15___CATEGORICAL___nom_9___f40eff525": 15667, "15___CATEGORICAL___nom_9___f41854aac": 15668, "15___CATEGORICAL___nom_9___f41865213": 15669, "15___CATEGORICAL___nom_9___f4283614e": 15670, "15___CATEGORICAL___nom_9___f42aca87e": 15671, "15___CATEGORICAL___nom_9___f4315737e": 15672, "15___CATEGORICAL___nom_9___f43396604": 15673, "15___CATEGORICAL___nom_9___f43b5400a": 15674, "15___CATEGORICAL___nom_9___f43b6639b": 15675, "15___CATEGORICAL___nom_9___f43f73011": 15676, "15___CATEGORICAL___nom_9___f440377fd": 15677, "15___CATEGORICAL___nom_9___f447b30d3": 15678, "15___CATEGORICAL___nom_9___f45a95ca3": 15679, "15___CATEGORICAL___nom_9___f45cce889": 15680, "15___CATEGORICAL___nom_9___f464fbc4b": 15681, "15___CATEGORICAL___nom_9___f46977be6": 15682, "15___CATEGORICAL___nom_9___f4705bf3c": 15683, "15___CATEGORICAL___nom_9___f471e3a2a": 15684, "15___CATEGORICAL___nom_9___f47ec05db": 15685, "15___CATEGORICAL___nom_9___f47f0cff5": 15686, "15___CATEGORICAL___nom_9___f483b235d": 15687, "15___CATEGORICAL___nom_9___f4855c2d0": 15688, "15___CATEGORICAL___nom_9___f48bdbfbe": 15689, "15___CATEGORICAL___nom_9___f48d63698": 15690, "15___CATEGORICAL___nom_9___f4945d903": 15691, "15___CATEGORICAL___nom_9___f4946f46b": 15692, "15___CATEGORICAL___nom_9___f4987acee": 15693, "15___CATEGORICAL___nom_9___f49e8f321": 15694, "15___CATEGORICAL___nom_9___f4a30febc": 15695, "15___CATEGORICAL___nom_9___f4ab9e92d": 15696, "15___CATEGORICAL___nom_9___f4b1a540b": 15697, "15___CATEGORICAL___nom_9___f4b74af77": 15698, "15___CATEGORICAL___nom_9___f4c012c00": 15699, "15___CATEGORICAL___nom_9___f4d58e660": 15700, "15___CATEGORICAL___nom_9___f4dec448d": 15701, "15___CATEGORICAL___nom_9___f4e009a5e": 15702, "15___CATEGORICAL___nom_9___f4e1f7fef": 15703, "15___CATEGORICAL___nom_9___f4e22a80e": 15704, "15___CATEGORICAL___nom_9___f4e8c8239": 15705, "15___CATEGORICAL___nom_9___f4eb50171": 15706, "15___CATEGORICAL___nom_9___f4f10c959": 15707, "15___CATEGORICAL___nom_9___f4f7beabe": 15708, "15___CATEGORICAL___nom_9___f50f45402": 15709, "15___CATEGORICAL___nom_9___f517a1f9a": 15710, "15___CATEGORICAL___nom_9___f519f7ec5": 15711, "15___CATEGORICAL___nom_9___f524c2b11": 15712, "15___CATEGORICAL___nom_9___f524e2a5a": 15713, "15___CATEGORICAL___nom_9___f525713fb": 15714, "15___CATEGORICAL___nom_9___f528933e6": 15715, "15___CATEGORICAL___nom_9___f52e9bddb": 15716, "15___CATEGORICAL___nom_9___f5362732f": 15717, "15___CATEGORICAL___nom_9___f540d9987": 15718, "15___CATEGORICAL___nom_9___f5424984a": 15719, "15___CATEGORICAL___nom_9___f556c9f7f": 15720, "15___CATEGORICAL___nom_9___f55b2b36a": 15721, "15___CATEGORICAL___nom_9___f56acee02": 15722, "15___CATEGORICAL___nom_9___f56cd369d": 15723, "15___CATEGORICAL___nom_9___f577a855d": 15724, "15___CATEGORICAL___nom_9___f581a622c": 15725, "15___CATEGORICAL___nom_9___f58cae0f5": 15726, "15___CATEGORICAL___nom_9___f58e10946": 15727, "15___CATEGORICAL___nom_9___f597cac9a": 15728, "15___CATEGORICAL___nom_9___f59ca9c98": 15729, "15___CATEGORICAL___nom_9___f59dae4fe": 15730, "15___CATEGORICAL___nom_9___f59f46dbd": 15731, "15___CATEGORICAL___nom_9___f5a54a10e": 15732, "15___CATEGORICAL___nom_9___f5a93161a": 15733, "15___CATEGORICAL___nom_9___f5aa060db": 15734, "15___CATEGORICAL___nom_9___f5ab485a8": 15735, "15___CATEGORICAL___nom_9___f5ae5f9fe": 15736, "15___CATEGORICAL___nom_9___f5b1308b3": 15737, "15___CATEGORICAL___nom_9___f5baafba7": 15738, "15___CATEGORICAL___nom_9___f5bbd24af": 15739, "15___CATEGORICAL___nom_9___f5bc8664b": 15740, "15___CATEGORICAL___nom_9___f5bd7d4e7": 15741, "15___CATEGORICAL___nom_9___f5c92ae3a": 15742, "15___CATEGORICAL___nom_9___f5cb4e907": 15743, "15___CATEGORICAL___nom_9___f5cb50633": 15744, "15___CATEGORICAL___nom_9___f5cb73b1c": 15745, "15___CATEGORICAL___nom_9___f5cdc03d0": 15746, "15___CATEGORICAL___nom_9___f5d05b9f3": 15747, "15___CATEGORICAL___nom_9___f5d2ac0f2": 15748, "15___CATEGORICAL___nom_9___f5d70c294": 15749, "15___CATEGORICAL___nom_9___f5d8c110b": 15750, "15___CATEGORICAL___nom_9___f5dc0aec1": 15751, "15___CATEGORICAL___nom_9___f5e0c0d01": 15752, "15___CATEGORICAL___nom_9___f5e0c54d9": 15753, "15___CATEGORICAL___nom_9___f5e9c73cd": 15754, "15___CATEGORICAL___nom_9___f5f551bd1": 15755, "15___CATEGORICAL___nom_9___f5fe2e0cc": 15756, "15___CATEGORICAL___nom_9___f60864b01": 15757, "15___CATEGORICAL___nom_9___f60fa7b28": 15758, "15___CATEGORICAL___nom_9___f6110771e": 15759, "15___CATEGORICAL___nom_9___f6173a051": 15760, "15___CATEGORICAL___nom_9___f619f2f38": 15761, "15___CATEGORICAL___nom_9___f61c99554": 15762, "15___CATEGORICAL___nom_9___f61e5fe5a": 15763, "15___CATEGORICAL___nom_9___f61fe5e51": 15764, "15___CATEGORICAL___nom_9___f6300400c": 15765, "15___CATEGORICAL___nom_9___f63dc0f3d": 15766, "15___CATEGORICAL___nom_9___f6417cb46": 15767, "15___CATEGORICAL___nom_9___f64239f7d": 15768, "15___CATEGORICAL___nom_9___f644e8d1b": 15769, "15___CATEGORICAL___nom_9___f646ce597": 15770, "15___CATEGORICAL___nom_9___f64cf06e5": 15771, "15___CATEGORICAL___nom_9___f64d4c04e": 15772, "15___CATEGORICAL___nom_9___f65176013": 15773, "15___CATEGORICAL___nom_9___f652d7967": 15774, "15___CATEGORICAL___nom_9___f65396dbe": 15775, "15___CATEGORICAL___nom_9___f653dd914": 15776, "15___CATEGORICAL___nom_9___f65a92518": 15777, "15___CATEGORICAL___nom_9___f65fb6a89": 15778, "15___CATEGORICAL___nom_9___f66ad2043": 15779, "15___CATEGORICAL___nom_9___f66cad627": 15780, "15___CATEGORICAL___nom_9___f675c0cd9": 15781, "15___CATEGORICAL___nom_9___f675edf15": 15782, "15___CATEGORICAL___nom_9___f679e3d11": 15783, "15___CATEGORICAL___nom_9___f68277a8b": 15784, "15___CATEGORICAL___nom_9___f6919e06e": 15785, "15___CATEGORICAL___nom_9___f696e7b76": 15786, "15___CATEGORICAL___nom_9___f6a17e527": 15787, "15___CATEGORICAL___nom_9___f6a53222b": 15788, "15___CATEGORICAL___nom_9___f6aa01c1a": 15789, "15___CATEGORICAL___nom_9___f6adce90a": 15790, "15___CATEGORICAL___nom_9___f6b1b0732": 15791, "15___CATEGORICAL___nom_9___f6b6f495e": 15792, "15___CATEGORICAL___nom_9___f6b9a8bd7": 15793, "15___CATEGORICAL___nom_9___f6bdc473a": 15794, "15___CATEGORICAL___nom_9___f6c29aea5": 15795, "15___CATEGORICAL___nom_9___f6c737e95": 15796, "15___CATEGORICAL___nom_9___f6c7a623d": 15797, "15___CATEGORICAL___nom_9___f6c8b58dc": 15798, "15___CATEGORICAL___nom_9___f6c9aff53": 15799, "15___CATEGORICAL___nom_9___f6ce11d10": 15800, "15___CATEGORICAL___nom_9___f6d1c8d66": 15801, "15___CATEGORICAL___nom_9___f6d1ce364": 15802, "15___CATEGORICAL___nom_9___f6d49b652": 15803, "15___CATEGORICAL___nom_9___f6e012a9a": 15804, "15___CATEGORICAL___nom_9___f70d99c6e": 15805, "15___CATEGORICAL___nom_9___f71057b0e": 15806, "15___CATEGORICAL___nom_9___f71c37b42": 15807, "15___CATEGORICAL___nom_9___f71dba8ad": 15808, "15___CATEGORICAL___nom_9___f7215e4d9": 15809, "15___CATEGORICAL___nom_9___f72391233": 15810, "15___CATEGORICAL___nom_9___f735259c9": 15811, "15___CATEGORICAL___nom_9___f735e85ab": 15812, "15___CATEGORICAL___nom_9___f73a4ff62": 15813, "15___CATEGORICAL___nom_9___f73acd9cb": 15814, "15___CATEGORICAL___nom_9___f73bcd6c6": 15815, "15___CATEGORICAL___nom_9___f73e82ed7": 15816, "15___CATEGORICAL___nom_9___f7433b9b8": 15817, "15___CATEGORICAL___nom_9___f7457bbe5": 15818, "15___CATEGORICAL___nom_9___f74b56199": 15819, "15___CATEGORICAL___nom_9___f75ae8bbe": 15820, "15___CATEGORICAL___nom_9___f767bcaef": 15821, "15___CATEGORICAL___nom_9___f77431c6f": 15822, "15___CATEGORICAL___nom_9___f7845e7a4": 15823, "15___CATEGORICAL___nom_9___f78814ef1": 15824, "15___CATEGORICAL___nom_9___f78cdbe0d": 15825, "15___CATEGORICAL___nom_9___f78df1a94": 15826, "15___CATEGORICAL___nom_9___f78ebd08a": 15827, "15___CATEGORICAL___nom_9___f7958dbd2": 15828, "15___CATEGORICAL___nom_9___f795f88ce": 15829, "15___CATEGORICAL___nom_9___f7995d12f": 15830, "15___CATEGORICAL___nom_9___f7999a345": 15831, "15___CATEGORICAL___nom_9___f79a895ac": 15832, "15___CATEGORICAL___nom_9___f7a57ea29": 15833, "15___CATEGORICAL___nom_9___f7a71fb32": 15834, "15___CATEGORICAL___nom_9___f7ad24c53": 15835, "15___CATEGORICAL___nom_9___f7ae1386b": 15836, "15___CATEGORICAL___nom_9___f7af47d01": 15837, "15___CATEGORICAL___nom_9___f7c7943df": 15838, "15___CATEGORICAL___nom_9___f7ca1cff3": 15839, "15___CATEGORICAL___nom_9___f7ccd55c9": 15840, "15___CATEGORICAL___nom_9___f7d1d010d": 15841, "15___CATEGORICAL___nom_9___f7d724ad0": 15842, "15___CATEGORICAL___nom_9___f7d761c1f": 15843, "15___CATEGORICAL___nom_9___f7dac0dbc": 15844, "15___CATEGORICAL___nom_9___f7ee67d9e": 15845, "15___CATEGORICAL___nom_9___f7f52b2bb": 15846, "15___CATEGORICAL___nom_9___f800d24fc": 15847, "15___CATEGORICAL___nom_9___f8022bb5d": 15848, "15___CATEGORICAL___nom_9___f80865d14": 15849, "15___CATEGORICAL___nom_9___f80ae505c": 15850, "15___CATEGORICAL___nom_9___f812a4075": 15851, "15___CATEGORICAL___nom_9___f822a81a0": 15852, "15___CATEGORICAL___nom_9___f8255edf8": 15853, "15___CATEGORICAL___nom_9___f82a92e8f": 15854, "15___CATEGORICAL___nom_9___f82ccd6aa": 15855, "15___CATEGORICAL___nom_9___f82dd1776": 15856, "15___CATEGORICAL___nom_9___f838af6b9": 15857, "15___CATEGORICAL___nom_9___f83c56c21": 15858, "15___CATEGORICAL___nom_9___f83ff9493": 15859, "15___CATEGORICAL___nom_9___f8461da7a": 15860, "15___CATEGORICAL___nom_9___f84849788": 15861, "15___CATEGORICAL___nom_9___f859d4eba": 15862, "15___CATEGORICAL___nom_9___f85cf0986": 15863, "15___CATEGORICAL___nom_9___f860b8f1e": 15864, "15___CATEGORICAL___nom_9___f86850721": 15865, "15___CATEGORICAL___nom_9___f86a685d5": 15866, "15___CATEGORICAL___nom_9___f875b5ada": 15867, "15___CATEGORICAL___nom_9___f87aa90ac": 15868, "15___CATEGORICAL___nom_9___f87d1551a": 15869, "15___CATEGORICAL___nom_9___f88007f6e": 15870, "15___CATEGORICAL___nom_9___f882f0768": 15871, "15___CATEGORICAL___nom_9___f8833b27d": 15872, "15___CATEGORICAL___nom_9___f8841e9e0": 15873, "15___CATEGORICAL___nom_9___f88695eff": 15874, "15___CATEGORICAL___nom_9___f895d1e02": 15875, "15___CATEGORICAL___nom_9___f89a89a9f": 15876, "15___CATEGORICAL___nom_9___f89afe6f6": 15877, "15___CATEGORICAL___nom_9___f89c2cc79": 15878, "15___CATEGORICAL___nom_9___f89fab41b": 15879, "15___CATEGORICAL___nom_9___f8a05bdb2": 15880, "15___CATEGORICAL___nom_9___f8a20f00b": 15881, "15___CATEGORICAL___nom_9___f8a83a2e2": 15882, "15___CATEGORICAL___nom_9___f8b717067": 15883, "15___CATEGORICAL___nom_9___f8b81c6b4": 15884, "15___CATEGORICAL___nom_9___f8b98aa95": 15885, "15___CATEGORICAL___nom_9___f8b9db12e": 15886, "15___CATEGORICAL___nom_9___f8ce73bd4": 15887, "15___CATEGORICAL___nom_9___f8cf7185f": 15888, "15___CATEGORICAL___nom_9___f8e2db182": 15889, "15___CATEGORICAL___nom_9___f8e34187d": 15890, "15___CATEGORICAL___nom_9___f8e5bb04b": 15891, "15___CATEGORICAL___nom_9___f8e5ecdc5": 15892, "15___CATEGORICAL___nom_9___f8e8be2ef": 15893, "15___CATEGORICAL___nom_9___f8e8cc6d7": 15894, "15___CATEGORICAL___nom_9___f8ea9cf0e": 15895, "15___CATEGORICAL___nom_9___f8ee2ad09": 15896, "15___CATEGORICAL___nom_9___f904fc300": 15897, "15___CATEGORICAL___nom_9___f909d3e6a": 15898, "15___CATEGORICAL___nom_9___f90ea0d78": 15899, "15___CATEGORICAL___nom_9___f910f1301": 15900, "15___CATEGORICAL___nom_9___f918bd8e6": 15901, "15___CATEGORICAL___nom_9___f91b6637b": 15902, "15___CATEGORICAL___nom_9___f92b6946a": 15903, "15___CATEGORICAL___nom_9___f92b9211e": 15904, "15___CATEGORICAL___nom_9___f9365df27": 15905, "15___CATEGORICAL___nom_9___f93af0724": 15906, "15___CATEGORICAL___nom_9___f93f7cb6a": 15907, "15___CATEGORICAL___nom_9___f94107ded": 15908, "15___CATEGORICAL___nom_9___f95293f5c": 15909, "15___CATEGORICAL___nom_9___f95a4bf09": 15910, "15___CATEGORICAL___nom_9___f95ec8f50": 15911, "15___CATEGORICAL___nom_9___f95f49f8f": 15912, "15___CATEGORICAL___nom_9___f96a63a74": 15913, "15___CATEGORICAL___nom_9___f97b4890d": 15914, "15___CATEGORICAL___nom_9___f97e90fc9": 15915, "15___CATEGORICAL___nom_9___f994ccb83": 15916, "15___CATEGORICAL___nom_9___f99750a63": 15917, "15___CATEGORICAL___nom_9___f99e22563": 15918, "15___CATEGORICAL___nom_9___f9aa18b02": 15919, "15___CATEGORICAL___nom_9___f9ace7fa9": 15920, "15___CATEGORICAL___nom_9___f9b209aa3": 15921, "15___CATEGORICAL___nom_9___f9b263057": 15922, "15___CATEGORICAL___nom_9___f9b5ec495": 15923, "15___CATEGORICAL___nom_9___f9b8f4101": 15924, "15___CATEGORICAL___nom_9___f9bf01d21": 15925, "15___CATEGORICAL___nom_9___f9c9ec3ba": 15926, "15___CATEGORICAL___nom_9___f9ca57eb0": 15927, "15___CATEGORICAL___nom_9___f9cc5fa0d": 15928, "15___CATEGORICAL___nom_9___f9d25658e": 15929, "15___CATEGORICAL___nom_9___f9d56ab07": 15930, "15___CATEGORICAL___nom_9___f9d956b54": 15931, "15___CATEGORICAL___nom_9___f9eacfe4a": 15932, "15___CATEGORICAL___nom_9___f9ec13f93": 15933, "15___CATEGORICAL___nom_9___f9ec6c5d3": 15934, "15___CATEGORICAL___nom_9___f9ecfd6a4": 15935, "15___CATEGORICAL___nom_9___f9f8865ee": 15936, "15___CATEGORICAL___nom_9___fa00b37b2": 15937, "15___CATEGORICAL___nom_9___fa05bcff7": 15938, "15___CATEGORICAL___nom_9___fa13d91da": 15939, "15___CATEGORICAL___nom_9___fa14e4589": 15940, "15___CATEGORICAL___nom_9___fa168e2ba": 15941, "15___CATEGORICAL___nom_9___fa1cb417d": 15942, "15___CATEGORICAL___nom_9___fa25d82cc": 15943, "15___CATEGORICAL___nom_9___fa27425c6": 15944, "15___CATEGORICAL___nom_9___fa32680ca": 15945, "15___CATEGORICAL___nom_9___fa3287349": 15946, "15___CATEGORICAL___nom_9___fa4159369": 15947, "15___CATEGORICAL___nom_9___fa4bca9bc": 15948, "15___CATEGORICAL___nom_9___fa4f0b47d": 15949, "15___CATEGORICAL___nom_9___fa5430220": 15950, "15___CATEGORICAL___nom_9___fa6157c64": 15951, "15___CATEGORICAL___nom_9___fa69bd007": 15952, "15___CATEGORICAL___nom_9___fa7720d6e": 15953, "15___CATEGORICAL___nom_9___fa78dd553": 15954, "15___CATEGORICAL___nom_9___fa8d0e5be": 15955, "15___CATEGORICAL___nom_9___fa8d22195": 15956, "15___CATEGORICAL___nom_9___fa8ec4170": 15957, "15___CATEGORICAL___nom_9___faa9f347f": 15958, "15___CATEGORICAL___nom_9___fab080ba5": 15959, "15___CATEGORICAL___nom_9___fab3693cf": 15960, "15___CATEGORICAL___nom_9___fab377af6": 15961, "15___CATEGORICAL___nom_9___fac198f52": 15962, "15___CATEGORICAL___nom_9___facb02537": 15963, "15___CATEGORICAL___nom_9___fada6f0b6": 15964, "15___CATEGORICAL___nom_9___fadd9c48f": 15965, "15___CATEGORICAL___nom_9___fae47fd97": 15966, "15___CATEGORICAL___nom_9___fae52d8b2": 15967, "15___CATEGORICAL___nom_9___fae80ddec": 15968, "15___CATEGORICAL___nom_9___faeb7b55e": 15969, "15___CATEGORICAL___nom_9___faf5a4408": 15970, "15___CATEGORICAL___nom_9___faf8cadb3": 15971, "15___CATEGORICAL___nom_9___fafa80752": 15972, "15___CATEGORICAL___nom_9___fafe649df": 15973, "15___CATEGORICAL___nom_9___fb005bfdd": 15974, "15___CATEGORICAL___nom_9___fb07fc135": 15975, "15___CATEGORICAL___nom_9___fb0bd407c": 15976, "15___CATEGORICAL___nom_9___fb101096a": 15977, "15___CATEGORICAL___nom_9___fb10421f9": 15978, "15___CATEGORICAL___nom_9___fb11c7034": 15979, "15___CATEGORICAL___nom_9___fb25bdcfd": 15980, "15___CATEGORICAL___nom_9___fb34986bb": 15981, "15___CATEGORICAL___nom_9___fb352896f": 15982, "15___CATEGORICAL___nom_9___fb39429d9": 15983, "15___CATEGORICAL___nom_9___fb3e75486": 15984, "15___CATEGORICAL___nom_9___fb4090a39": 15985, "15___CATEGORICAL___nom_9___fb44b6b33": 15986, "15___CATEGORICAL___nom_9___fb46f1e6d": 15987, "15___CATEGORICAL___nom_9___fb473ef89": 15988, "15___CATEGORICAL___nom_9___fb4aea77c": 15989, "15___CATEGORICAL___nom_9___fb5ae822b": 15990, "15___CATEGORICAL___nom_9___fb647d69f": 15991, "15___CATEGORICAL___nom_9___fb64e3cfe": 15992, "15___CATEGORICAL___nom_9___fb6cee6fe": 15993, "15___CATEGORICAL___nom_9___fb7820bad": 15994, "15___CATEGORICAL___nom_9___fb79a6b3a": 15995, "15___CATEGORICAL___nom_9___fb7cac4c1": 15996, "15___CATEGORICAL___nom_9___fb89119e6": 15997, "15___CATEGORICAL___nom_9___fb939db7a": 15998, "15___CATEGORICAL___nom_9___fb941f11f": 15999, "15___CATEGORICAL___nom_9___fb95d34ec": 16000, "15___CATEGORICAL___nom_9___fb99fa2eb": 16001, "15___CATEGORICAL___nom_9___fb9ad27f9": 16002, "15___CATEGORICAL___nom_9___fba4a5b97": 16003, "15___CATEGORICAL___nom_9___fbaa9b5a5": 16004, "15___CATEGORICAL___nom_9___fbaae9e1f": 16005, "15___CATEGORICAL___nom_9___fbacfc0e2": 16006, "15___CATEGORICAL___nom_9___fbae54765": 16007, "15___CATEGORICAL___nom_9___fbaf92586": 16008, "15___CATEGORICAL___nom_9___fbc9a2178": 16009, "15___CATEGORICAL___nom_9___fbdaa1666": 16010, "15___CATEGORICAL___nom_9___fbdd260e0": 16011, "15___CATEGORICAL___nom_9___fbe68ae42": 16012, "15___CATEGORICAL___nom_9___fbee0326f": 16013, "15___CATEGORICAL___nom_9___fbeee2164": 16014, "15___CATEGORICAL___nom_9___fbeff1d29": 16015, "15___CATEGORICAL___nom_9___fbf27309d": 16016, "15___CATEGORICAL___nom_9___fbfa5e40c": 16017, "15___CATEGORICAL___nom_9___fbfb40f44": 16018, "15___CATEGORICAL___nom_9___fc02bbf6f": 16019, "15___CATEGORICAL___nom_9___fc034a97a": 16020, "15___CATEGORICAL___nom_9___fc0596a1b": 16021, "15___CATEGORICAL___nom_9___fc0d42d7f": 16022, "15___CATEGORICAL___nom_9___fc17424af": 16023, "15___CATEGORICAL___nom_9___fc2976024": 16024, "15___CATEGORICAL___nom_9___fc31a4204": 16025, "15___CATEGORICAL___nom_9___fc329fe77": 16026, "15___CATEGORICAL___nom_9___fc38581a6": 16027, "15___CATEGORICAL___nom_9___fc3aaa402": 16028, "15___CATEGORICAL___nom_9___fc3f0d2d1": 16029, "15___CATEGORICAL___nom_9___fc4175529": 16030, "15___CATEGORICAL___nom_9___fc464d704": 16031, "15___CATEGORICAL___nom_9___fc46e9ee5": 16032, "15___CATEGORICAL___nom_9___fc48d7b84": 16033, "15___CATEGORICAL___nom_9___fc4a43fda": 16034, "15___CATEGORICAL___nom_9___fc4a7ded3": 16035, "15___CATEGORICAL___nom_9___fc53995e0": 16036, "15___CATEGORICAL___nom_9___fc5c642c3": 16037, "15___CATEGORICAL___nom_9___fc5faa04a": 16038, "15___CATEGORICAL___nom_9___fc62aeec5": 16039, "15___CATEGORICAL___nom_9___fc6fe23b6": 16040, "15___CATEGORICAL___nom_9___fc736244d": 16041, "15___CATEGORICAL___nom_9___fc7590d0b": 16042, "15___CATEGORICAL___nom_9___fc7b31928": 16043, "15___CATEGORICAL___nom_9___fc8044ef1": 16044, "15___CATEGORICAL___nom_9___fc81c62ea": 16045, "15___CATEGORICAL___nom_9___fc887d99c": 16046, "15___CATEGORICAL___nom_9___fc9058a05": 16047, "15___CATEGORICAL___nom_9___fc9482738": 16048, "15___CATEGORICAL___nom_9___fc968cc94": 16049, "15___CATEGORICAL___nom_9___fc978f9f2": 16050, "15___CATEGORICAL___nom_9___fca1a58db": 16051, "15___CATEGORICAL___nom_9___fca251021": 16052, "15___CATEGORICAL___nom_9___fca65e431": 16053, "15___CATEGORICAL___nom_9___fca8b2e1e": 16054, "15___CATEGORICAL___nom_9___fcaa986ba": 16055, "15___CATEGORICAL___nom_9___fcb1ae1bf": 16056, "15___CATEGORICAL___nom_9___fcb52c6fa": 16057, "15___CATEGORICAL___nom_9___fcbaba19f": 16058, "15___CATEGORICAL___nom_9___fcc37aed9": 16059, "15___CATEGORICAL___nom_9___fccaa9c21": 16060, "15___CATEGORICAL___nom_9___fccbdbfd9": 16061, "15___CATEGORICAL___nom_9___fcd26fc97": 16062, "15___CATEGORICAL___nom_9___fcd3c5344": 16063, "15___CATEGORICAL___nom_9___fcdd14d72": 16064, "15___CATEGORICAL___nom_9___fce29c4a6": 16065, "15___CATEGORICAL___nom_9___fce48d952": 16066, "15___CATEGORICAL___nom_9___fce79242a": 16067, "15___CATEGORICAL___nom_9___fcf899e6b": 16068, "15___CATEGORICAL___nom_9___fcfc7da6c": 16069, "15___CATEGORICAL___nom_9___fcff7a7a5": 16070, "15___CATEGORICAL___nom_9___fd07b45f1": 16071, "15___CATEGORICAL___nom_9___fd0871f51": 16072, "15___CATEGORICAL___nom_9___fd0d0678e": 16073, "15___CATEGORICAL___nom_9___fd0f97917": 16074, "15___CATEGORICAL___nom_9___fd1280e61": 16075, "15___CATEGORICAL___nom_9___fd12e4f13": 16076, "15___CATEGORICAL___nom_9___fd1422942": 16077, "15___CATEGORICAL___nom_9___fd14c6e8a": 16078, "15___CATEGORICAL___nom_9___fd1bca231": 16079, "15___CATEGORICAL___nom_9___fd208e5c1": 16080, "15___CATEGORICAL___nom_9___fd22babc1": 16081, "15___CATEGORICAL___nom_9___fd27cf5f9": 16082, "15___CATEGORICAL___nom_9___fd2a83042": 16083, "15___CATEGORICAL___nom_9___fd2ceb2c3": 16084, "15___CATEGORICAL___nom_9___fd2f81ab8": 16085, "15___CATEGORICAL___nom_9___fd3165bab": 16086, "15___CATEGORICAL___nom_9___fd323d34a": 16087, "15___CATEGORICAL___nom_9___fd402e0f6": 16088, "15___CATEGORICAL___nom_9___fd41d2f1a": 16089, "15___CATEGORICAL___nom_9___fd51b2ce6": 16090, "15___CATEGORICAL___nom_9___fd51d65bf": 16091, "15___CATEGORICAL___nom_9___fd5c8ec80": 16092, "15___CATEGORICAL___nom_9___fd6343bd2": 16093, "15___CATEGORICAL___nom_9___fd6c35039": 16094, "15___CATEGORICAL___nom_9___fd7d3d6bb": 16095, "15___CATEGORICAL___nom_9___fd8d1065f": 16096, "15___CATEGORICAL___nom_9___fd9ec2dc5": 16097, "15___CATEGORICAL___nom_9___fda196cf1": 16098, "15___CATEGORICAL___nom_9___fda25e6c6": 16099, "15___CATEGORICAL___nom_9___fda315644": 16100, "15___CATEGORICAL___nom_9___fdb238e71": 16101, "15___CATEGORICAL___nom_9___fdc1365f7": 16102, "15___CATEGORICAL___nom_9___fdc6fc05d": 16103, "15___CATEGORICAL___nom_9___fdd6954b2": 16104, "15___CATEGORICAL___nom_9___fde7cebb9": 16105, "15___CATEGORICAL___nom_9___fdfbd76cf": 16106, "15___CATEGORICAL___nom_9___fdfe39d4c": 16107, "15___CATEGORICAL___nom_9___fe08d5fa8": 16108, "15___CATEGORICAL___nom_9___fe124170f": 16109, "15___CATEGORICAL___nom_9___fe129a48f": 16110, "15___CATEGORICAL___nom_9___fe19b0673": 16111, "15___CATEGORICAL___nom_9___fe1a20bb5": 16112, "15___CATEGORICAL___nom_9___fe208e10e": 16113, "15___CATEGORICAL___nom_9___fe266eaa4": 16114, "15___CATEGORICAL___nom_9___fe2ddfb91": 16115, "15___CATEGORICAL___nom_9___fe320c885": 16116, "15___CATEGORICAL___nom_9___fe323e8b5": 16117, "15___CATEGORICAL___nom_9___fe331b3c3": 16118, "15___CATEGORICAL___nom_9___fe3db5700": 16119, "15___CATEGORICAL___nom_9___fe41d8e10": 16120, "15___CATEGORICAL___nom_9___fe41e1417": 16121, "15___CATEGORICAL___nom_9___fe4b07b79": 16122, "15___CATEGORICAL___nom_9___fe503418a": 16123, "15___CATEGORICAL___nom_9___fe5220394": 16124, "15___CATEGORICAL___nom_9___fe556fd50": 16125, "15___CATEGORICAL___nom_9___fe59d0e92": 16126, "15___CATEGORICAL___nom_9___fe5b354ad": 16127, "15___CATEGORICAL___nom_9___fe5c638a1": 16128, "15___CATEGORICAL___nom_9___fe6a4efaf": 16129, "15___CATEGORICAL___nom_9___fe6a554af": 16130, "15___CATEGORICAL___nom_9___fe6b19b03": 16131, "15___CATEGORICAL___nom_9___fe6f73aaa": 16132, "15___CATEGORICAL___nom_9___fe72db5f9": 16133, "15___CATEGORICAL___nom_9___fe7aa1794": 16134, "15___CATEGORICAL___nom_9___fe7cde623": 16135, "15___CATEGORICAL___nom_9___fe7e32fbb": 16136, "15___CATEGORICAL___nom_9___fe8203c93": 16137, "15___CATEGORICAL___nom_9___fe8b0d4d8": 16138, "15___CATEGORICAL___nom_9___fe8b6c7cf": 16139, "15___CATEGORICAL___nom_9___fe8df9e7e": 16140, "15___CATEGORICAL___nom_9___fe9e2eb9c": 16141, "15___CATEGORICAL___nom_9___fea0d1a42": 16142, "15___CATEGORICAL___nom_9___feb4e00af": 16143, "15___CATEGORICAL___nom_9___feb52b7c5": 16144, "15___CATEGORICAL___nom_9___feb72ecc2": 16145, "15___CATEGORICAL___nom_9___fec37312c": 16146, "15___CATEGORICAL___nom_9___fec46d317": 16147, "15___CATEGORICAL___nom_9___fec587b08": 16148, "15___CATEGORICAL___nom_9___fed29d244": 16149, "15___CATEGORICAL___nom_9___fed4005c2": 16150, "15___CATEGORICAL___nom_9___fee289084": 16151, "15___CATEGORICAL___nom_9___fee5e1c29": 16152, "15___CATEGORICAL___nom_9___fee97cc59": 16153, "15___CATEGORICAL___nom_9___feeb8f72e": 16154, "15___CATEGORICAL___nom_9___fef010d47": 16155, "15___CATEGORICAL___nom_9___fef66b7fd": 16156, "15___CATEGORICAL___nom_9___fef70c08b": 16157, "15___CATEGORICAL___nom_9___fef9697da": 16158, "15___CATEGORICAL___nom_9___fefabaf8b": 16159, "15___CATEGORICAL___nom_9___fefe9378b": 16160, "15___CATEGORICAL___nom_9___ff050f19d": 16161, "15___CATEGORICAL___nom_9___ff0ac7839": 16162, "15___CATEGORICAL___nom_9___ff0acdc51": 16163, "15___CATEGORICAL___nom_9___ff0be0f4a": 16164, "15___CATEGORICAL___nom_9___ff0deb8c5": 16165, "15___CATEGORICAL___nom_9___ff1275360": 16166, "15___CATEGORICAL___nom_9___ff1cea430": 16167, "15___CATEGORICAL___nom_9___ff1ffdb6c": 16168, "15___CATEGORICAL___nom_9___ff26ddc5f": 16169, "15___CATEGORICAL___nom_9___ff2c54c2b": 16170, "15___CATEGORICAL___nom_9___ff37346ce": 16171, "15___CATEGORICAL___nom_9___ff3ff6768": 16172, "15___CATEGORICAL___nom_9___ff4039502": 16173, "15___CATEGORICAL___nom_9___ff43e5d26": 16174, "15___CATEGORICAL___nom_9___ff4922d4e": 16175, "15___CATEGORICAL___nom_9___ff4c9a31f": 16176, "15___CATEGORICAL___nom_9___ff4ccc205": 16177, "15___CATEGORICAL___nom_9___ff4e4f5b5": 16178, "15___CATEGORICAL___nom_9___ff534b1a4": 16179, "15___CATEGORICAL___nom_9___ff55fea3b": 16180, "15___CATEGORICAL___nom_9___ff56952ea": 16181, "15___CATEGORICAL___nom_9___ff5bf79d4": 16182, "15___CATEGORICAL___nom_9___ff61809a0": 16183, "15___CATEGORICAL___nom_9___ff680c901": 16184, "15___CATEGORICAL___nom_9___ff683e4d6": 16185, "15___CATEGORICAL___nom_9___ff7809d76": 16186, "15___CATEGORICAL___nom_9___ff794dacf": 16187, "15___CATEGORICAL___nom_9___ff7b5c805": 16188, "15___CATEGORICAL___nom_9___ff7dd1073": 16189, "15___CATEGORICAL___nom_9___ff9efcf8c": 16190, "15___CATEGORICAL___nom_9___ffac03704": 16191, "15___CATEGORICAL___nom_9___ffae88db8": 16192, "15___CATEGORICAL___nom_9___ffb07126f": 16193, "15___CATEGORICAL___nom_9___ffc086cfa": 16194, "15___CATEGORICAL___nom_9___ffc668c22": 16195, "15___CATEGORICAL___nom_9___ffccfc611": 16196, "15___CATEGORICAL___nom_9___ffd347754": 16197, "15___CATEGORICAL___nom_9___ffd966e07": 16198, "15___CATEGORICAL___nom_9___fff13b60a": 16199, "15___CATEGORICAL___nom_9___fff1ce319": 16200, "15___CATEGORICAL___nom_9___fff4abc0b": 16201, "15___CATEGORICAL___nom_9___fffb01c38": 16202, "15___CATEGORICAL___nom_9___fffd6e64c": 16203, "16___NUMERIC___ord_0_00___1": 16204, "16___NUMERIC___ord_0_00___2": 16205, "16___NUMERIC___ord_0_00___3": 16206, "17___CATEGORICAL___ord_1___Contributor": 16207, "17___CATEGORICAL___ord_1___Expert": 16208, "17___CATEGORICAL___ord_1___Grandmaster": 16209, "17___CATEGORICAL___ord_1___Master": 16210, "17___CATEGORICAL___ord_1___Novice": 16211, "18___CATEGORICAL___ord_2___Boiling Hot": 16212, "18___CATEGORICAL___ord_2___Cold": 16213, "18___CATEGORICAL___ord_2___Freezing": 16214, "18___CATEGORICAL___ord_2___Hot": 16215, "18___CATEGORICAL___ord_2___Lava Hot": 16216, "18___CATEGORICAL___ord_2___Warm": 16217, "19___CATEGORICAL___ord_3___a": 16218, "19___CATEGORICAL___ord_3___b": 16219, "19___CATEGORICAL___ord_3___c": 16220, "19___CATEGORICAL___ord_3___d": 16221, "19___CATEGORICAL___ord_3___e": 16222, "19___CATEGORICAL___ord_3___f": 16223, "19___CATEGORICAL___ord_3___g": 16224, "19___CATEGORICAL___ord_3___h": 16225, "19___CATEGORICAL___ord_3___i": 16226, "19___CATEGORICAL___ord_3___j": 16227, "19___CATEGORICAL___ord_3___k": 16228, "19___CATEGORICAL___ord_3___l": 16229, "19___CATEGORICAL___ord_3___m": 16230, "19___CATEGORICAL___ord_3___n": 16231, "19___CATEGORICAL___ord_3___o": 16232, "20___CATEGORICAL___ord_4___A": 16233, "20___CATEGORICAL___ord_4___B": 16234, "20___CATEGORICAL___ord_4___C": 16235, "20___CATEGORICAL___ord_4___D": 16236, "20___CATEGORICAL___ord_4___E": 16237, "20___CATEGORICAL___ord_4___F": 16238, "20___CATEGORICAL___ord_4___G": 16239, "20___CATEGORICAL___ord_4___H": 16240, "20___CATEGORICAL___ord_4___I": 16241, "20___CATEGORICAL___ord_4___J": 16242, "20___CATEGORICAL___ord_4___K": 16243, "20___CATEGORICAL___ord_4___L": 16244, "20___CATEGORICAL___ord_4___M": 16245, "20___CATEGORICAL___ord_4___N": 16246, "20___CATEGORICAL___ord_4___O": 16247, "20___CATEGORICAL___ord_4___P": 16248, "20___CATEGORICAL___ord_4___Q": 16249, "20___CATEGORICAL___ord_4___R": 16250, "20___CATEGORICAL___ord_4___S": 16251, "20___CATEGORICAL___ord_4___T": 16252, "20___CATEGORICAL___ord_4___U": 16253, "20___CATEGORICAL___ord_4___V": 16254, "20___CATEGORICAL___ord_4___W": 16255, "20___CATEGORICAL___ord_4___X": 16256, "20___CATEGORICAL___ord_4___Y": 16257, "20___CATEGORICAL___ord_4___Z": 16258, "21___CATEGORICAL___ord_5___AP": 16259, "21___CATEGORICAL___ord_5___Ai": 16260, "21___CATEGORICAL___ord_5___Aj": 16261, "21___CATEGORICAL___ord_5___BA": 16262, "21___CATEGORICAL___ord_5___BE": 16263, "21___CATEGORICAL___ord_5___Bb": 16264, "21___CATEGORICAL___ord_5___Bd": 16265, "21___CATEGORICAL___ord_5___Bn": 16266, "21___CATEGORICAL___ord_5___CL": 16267, "21___CATEGORICAL___ord_5___CM": 16268, "21___CATEGORICAL___ord_5___CU": 16269, "21___CATEGORICAL___ord_5___CZ": 16270, "21___CATEGORICAL___ord_5___Cl": 16271, "21___CATEGORICAL___ord_5___DH": 16272, "21___CATEGORICAL___ord_5___DN": 16273, "21___CATEGORICAL___ord_5___Dc": 16274, "21___CATEGORICAL___ord_5___Dx": 16275, "21___CATEGORICAL___ord_5___Ed": 16276, "21___CATEGORICAL___ord_5___Eg": 16277, "21___CATEGORICAL___ord_5___Er": 16278, "21___CATEGORICAL___ord_5___FI": 16279, "21___CATEGORICAL___ord_5___Fd": 16280, "21___CATEGORICAL___ord_5___Fo": 16281, "21___CATEGORICAL___ord_5___GD": 16282, "21___CATEGORICAL___ord_5___GJ": 16283, "21___CATEGORICAL___ord_5___Gb": 16284, "21___CATEGORICAL___ord_5___Gx": 16285, "21___CATEGORICAL___ord_5___Hj": 16286, "21___CATEGORICAL___ord_5___IK": 16287, "21___CATEGORICAL___ord_5___Id": 16288, "21___CATEGORICAL___ord_5___JX": 16289, "21___CATEGORICAL___ord_5___Jc": 16290, "21___CATEGORICAL___ord_5___Jf": 16291, "21___CATEGORICAL___ord_5___Jt": 16292, "21___CATEGORICAL___ord_5___KR": 16293, "21___CATEGORICAL___ord_5___KZ": 16294, "21___CATEGORICAL___ord_5___Kf": 16295, "21___CATEGORICAL___ord_5___Kq": 16296, "21___CATEGORICAL___ord_5___LE": 16297, "21___CATEGORICAL___ord_5___MC": 16298, "21___CATEGORICAL___ord_5___MO": 16299, "21___CATEGORICAL___ord_5___MV": 16300, "21___CATEGORICAL___ord_5___Mf": 16301, "21___CATEGORICAL___ord_5___Ml": 16302, "21___CATEGORICAL___ord_5___Mx": 16303, "21___CATEGORICAL___ord_5___NV": 16304, "21___CATEGORICAL___ord_5___Nf": 16305, "21___CATEGORICAL___ord_5___Nk": 16306, "21___CATEGORICAL___ord_5___OR": 16307, "21___CATEGORICAL___ord_5___Ob": 16308, "21___CATEGORICAL___ord_5___Os": 16309, "21___CATEGORICAL___ord_5___PA": 16310, "21___CATEGORICAL___ord_5___PQ": 16311, "21___CATEGORICAL___ord_5___PZ": 16312, "21___CATEGORICAL___ord_5___Ps": 16313, "21___CATEGORICAL___ord_5___QM": 16314, "21___CATEGORICAL___ord_5___Qb": 16315, "21___CATEGORICAL___ord_5___Qh": 16316, "21___CATEGORICAL___ord_5___Qo": 16317, "21___CATEGORICAL___ord_5___RG": 16318, "21___CATEGORICAL___ord_5___RL": 16319, "21___CATEGORICAL___ord_5___RP": 16320, "21___CATEGORICAL___ord_5___Rm": 16321, "21___CATEGORICAL___ord_5___Ry": 16322, "21___CATEGORICAL___ord_5___SB": 16323, "21___CATEGORICAL___ord_5___Sc": 16324, "21___CATEGORICAL___ord_5___TR": 16325, "21___CATEGORICAL___ord_5___TZ": 16326, "21___CATEGORICAL___ord_5___To": 16327, "21___CATEGORICAL___ord_5___UO": 16328, "21___CATEGORICAL___ord_5___Uk": 16329, "21___CATEGORICAL___ord_5___Uu": 16330, "21___CATEGORICAL___ord_5___Vf": 16331, "21___CATEGORICAL___ord_5___Vx": 16332, "21___CATEGORICAL___ord_5___WE": 16333, "21___CATEGORICAL___ord_5___Wc": 16334, "21___CATEGORICAL___ord_5___Wv": 16335, "21___CATEGORICAL___ord_5___XI": 16336, "21___CATEGORICAL___ord_5___Xh": 16337, "21___CATEGORICAL___ord_5___Xi": 16338, "21___CATEGORICAL___ord_5___YC": 16339, "21___CATEGORICAL___ord_5___Yb": 16340, "21___CATEGORICAL___ord_5___Ye": 16341, "21___CATEGORICAL___ord_5___ZR": 16342, "21___CATEGORICAL___ord_5___ZS": 16343, "21___CATEGORICAL___ord_5___Zc": 16344, "21___CATEGORICAL___ord_5___Zq": 16345, "21___CATEGORICAL___ord_5___aF": 16346, "21___CATEGORICAL___ord_5___aM": 16347, "21___CATEGORICAL___ord_5___aO": 16348, "21___CATEGORICAL___ord_5___aP": 16349, "21___CATEGORICAL___ord_5___ac": 16350, "21___CATEGORICAL___ord_5___av": 16351, "21___CATEGORICAL___ord_5___bF": 16352, "21___CATEGORICAL___ord_5___bJ": 16353, "21___CATEGORICAL___ord_5___be": 16354, "21___CATEGORICAL___ord_5___cA": 16355, "21___CATEGORICAL___ord_5___cG": 16356, "21___CATEGORICAL___ord_5___cW": 16357, "21___CATEGORICAL___ord_5___ck": 16358, "21___CATEGORICAL___ord_5___cp": 16359, "21___CATEGORICAL___ord_5___dB": 16360, "21___CATEGORICAL___ord_5___dE": 16361, "21___CATEGORICAL___ord_5___dN": 16362, "21___CATEGORICAL___ord_5___dO": 16363, "21___CATEGORICAL___ord_5___dP": 16364, "21___CATEGORICAL___ord_5___dQ": 16365, "21___CATEGORICAL___ord_5___dZ": 16366, "21___CATEGORICAL___ord_5___dh": 16367, "21___CATEGORICAL___ord_5___eG": 16368, "21___CATEGORICAL___ord_5___eQ": 16369, "21___CATEGORICAL___ord_5___eb": 16370, "21___CATEGORICAL___ord_5___eg": 16371, "21___CATEGORICAL___ord_5___ek": 16372, "21___CATEGORICAL___ord_5___ex": 16373, "21___CATEGORICAL___ord_5___fO": 16374, "21___CATEGORICAL___ord_5___fh": 16375, "21___CATEGORICAL___ord_5___gJ": 16376, "21___CATEGORICAL___ord_5___gM": 16377, "21___CATEGORICAL___ord_5___hL": 16378, "21___CATEGORICAL___ord_5___hT": 16379, "21___CATEGORICAL___ord_5___hh": 16380, "21___CATEGORICAL___ord_5___hp": 16381, "21___CATEGORICAL___ord_5___iT": 16382, "21___CATEGORICAL___ord_5___ih": 16383, "21___CATEGORICAL___ord_5___jS": 16384, "21___CATEGORICAL___ord_5___jV": 16385, "21___CATEGORICAL___ord_5___je": 16386, "21___CATEGORICAL___ord_5___jp": 16387, "21___CATEGORICAL___ord_5___kC": 16388, "21___CATEGORICAL___ord_5___kE": 16389, "21___CATEGORICAL___ord_5___kK": 16390, "21___CATEGORICAL___ord_5___kL": 16391, "21___CATEGORICAL___ord_5___kU": 16392, "21___CATEGORICAL___ord_5___kW": 16393, "21___CATEGORICAL___ord_5___ke": 16394, "21___CATEGORICAL___ord_5___kr": 16395, "21___CATEGORICAL___ord_5___kw": 16396, "21___CATEGORICAL___ord_5___lF": 16397, "21___CATEGORICAL___ord_5___lL": 16398, "21___CATEGORICAL___ord_5___ll": 16399, "21___CATEGORICAL___ord_5___lx": 16400, "21___CATEGORICAL___ord_5___mb": 16401, "21___CATEGORICAL___ord_5___mc": 16402, "21___CATEGORICAL___ord_5___mm": 16403, "21___CATEGORICAL___ord_5___nX": 16404, "21___CATEGORICAL___ord_5___nh": 16405, "21___CATEGORICAL___ord_5___oC": 16406, "21___CATEGORICAL___ord_5___oG": 16407, "21___CATEGORICAL___ord_5___oH": 16408, "21___CATEGORICAL___ord_5___oK": 16409, "21___CATEGORICAL___ord_5___od": 16410, "21___CATEGORICAL___ord_5___on": 16411, "21___CATEGORICAL___ord_5___pa": 16412, "21___CATEGORICAL___ord_5___ps": 16413, "21___CATEGORICAL___ord_5___qA": 16414, "21___CATEGORICAL___ord_5___qJ": 16415, "21___CATEGORICAL___ord_5___qK": 16416, "21___CATEGORICAL___ord_5___qP": 16417, "21___CATEGORICAL___ord_5___qX": 16418, "21___CATEGORICAL___ord_5___qo": 16419, "21___CATEGORICAL___ord_5___qv": 16420, "21___CATEGORICAL___ord_5___qw": 16421, "21___CATEGORICAL___ord_5___rZ": 16422, "21___CATEGORICAL___ord_5___ri": 16423, "21___CATEGORICAL___ord_5___rp": 16424, "21___CATEGORICAL___ord_5___sD": 16425, "21___CATEGORICAL___ord_5___sV": 16426, "21___CATEGORICAL___ord_5___sY": 16427, "21___CATEGORICAL___ord_5___sn": 16428, "21___CATEGORICAL___ord_5___su": 16429, "21___CATEGORICAL___ord_5___tM": 16430, "21___CATEGORICAL___ord_5___tP": 16431, "21___CATEGORICAL___ord_5___tv": 16432, "21___CATEGORICAL___ord_5___uJ": 16433, "21___CATEGORICAL___ord_5___uS": 16434, "21___CATEGORICAL___ord_5___ud": 16435, "21___CATEGORICAL___ord_5___us": 16436, "21___CATEGORICAL___ord_5___ut": 16437, "21___CATEGORICAL___ord_5___ux": 16438, "21___CATEGORICAL___ord_5___uy": 16439, "21___CATEGORICAL___ord_5___vK": 16440, "21___CATEGORICAL___ord_5___vq": 16441, "21___CATEGORICAL___ord_5___vy": 16442, "21___CATEGORICAL___ord_5___wu": 16443, "21___CATEGORICAL___ord_5___wy": 16444, "21___CATEGORICAL___ord_5___xP": 16445, "21___CATEGORICAL___ord_5___xy": 16446, "21___CATEGORICAL___ord_5___yN": 16447, "21___CATEGORICAL___ord_5___yY": 16448, "21___CATEGORICAL___ord_5___yc": 16449, "21___CATEGORICAL___ord_5___zU": 16450, "22___NUMERIC___day_00___1": 16451, "22___NUMERIC___day_00___2": 16452, "22___NUMERIC___day_00___3": 16453, "22___NUMERIC___day_00___4": 16454, "22___NUMERIC___day_00___5": 16455, "22___NUMERIC___day_00___6": 16456, "22___NUMERIC___day_00___7": 16457, "23___NUMERIC___month_00___0": 16458, "23___NUMERIC___month_00___1": 16459, "23___NUMERIC___month_01___0": 16460, "23___NUMERIC___month_01___1": 16461, "23___NUMERIC___month_01___2": 16462, "23___NUMERIC___month_01___3": 16463, "23___NUMERIC___month_01___4": 16464, "23___NUMERIC___month_01___5": 16465, "23___NUMERIC___month_01___6": 16466, "23___NUMERIC___month_01___7": 16467, "23___NUMERIC___month_01___8": 16468, "23___NUMERIC___month_01___9": 16469, "24___CATEGORICAL___target___0": 16470, "24___CATEGORICAL___target___1": 16471}, "column_token_ids": {"00___NUMERIC___id_00": [11, 12, 13], "00___NUMERIC___id_01": [14, 15, 16, 17, 18, 19, 20, 21, 22, 23], "00___NUMERIC___id_02": [24, 25, 26, 27, 28, 29, 30, 31, 32, 33], "00___NUMERIC___id_03": [34, 35, 36, 37, 38, 39, 40, 41, 42, 43], "00___NUMERIC___id_04": [44, 45, 46, 47, 48, 49, 50, 51, 52, 53], "00___NUMERIC___id_05": [54, 55, 56, 57, 58, 59, 60, 61, 62, 63], "01___CATEGORICAL___bin_0": [64, 65], "02___CATEGORICAL___bin_1": [66, 67], "03___CATEGORICAL___bin_2": [68, 69], "04___CATEGORICAL___bin_3": [70, 71], "05___CATEGORICAL___bin_4": [72, 73], "06___CATEGORICAL___nom_0": [74, 75, 76], "07___CATEGORICAL___nom_1": [77, 78, 79, 80, 81, 82], "08___CATEGORICAL___nom_2": [83, 84, 85, 86, 87, 88], "09___CATEGORICAL___nom_3": [89, 90, 91, 92, 93, 94], "10___CATEGORICAL___nom_4": [95, 96, 97, 98], "11___CATEGORICAL___nom_5": [99, 100, 101, 102, 103, 104, 105, 106, 107, 108, 109, 110, 111, 112, 113, 114, 115, 116, 117, 118, 119, 120, 121, 122, 123, 124, 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], "12___CATEGORICAL___nom_6": [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, 485, 486, 487, 488, 489, 490, 491, 492, 493, 494, 495, 496, 497, 498, 499, 500, 501, 502, 503, 504, 505, 506, 507, 508, 509, 510, 511, 512, 513, 514, 515, 516, 517, 518, 519, 520, 521, 522, 523, 524, 525, 526, 527, 528, 529, 530, 531, 532, 533, 534, 535, 536, 537, 538, 539, 540, 541, 542, 543, 544, 545, 546, 547, 548, 549, 550, 551, 552, 553, 554, 555, 556, 557, 558, 559, 560, 561, 562, 563, 564, 565, 566, 567, 568, 569, 570, 571, 572, 573, 574, 575, 576, 577, 578, 579, 580, 581, 582, 583, 584, 585, 586, 587, 588, 589, 590, 591, 592, 593, 594, 595, 596, 597, 598, 599, 600, 601, 602, 603, 604, 605, 606, 607, 608, 609, 610, 611, 612, 613, 614, 615, 616, 617, 618, 619, 620, 621, 622, 623, 624, 625, 626, 627, 628, 629, 630, 631, 632, 633, 634, 635, 636, 637, 638, 639, 640, 641, 642, 643, 644, 645, 646, 647, 648, 649, 650, 651, 652, 653, 654, 655, 656, 657, 658, 659, 660, 661, 662, 663, 664, 665, 666, 667, 668, 669, 670, 671, 672, 673, 674, 675, 676, 677, 678, 679, 680, 681, 682, 683, 684, 685, 686, 687, 688, 689, 690, 691, 692, 693, 694, 695, 696, 697, 698, 699, 700, 701, 702, 703, 704, 705, 706, 707, 708, 709, 710, 711, 712, 713, 714, 715, 716, 717, 718, 719, 720, 721, 722, 723, 724, 725, 726, 727, 728, 729, 730, 731, 732, 733, 734, 735, 736, 737, 738, 739, 740, 741, 742, 743, 744, 745, 746, 747, 748, 749, 750, 751, 752, 753, 754, 755, 756, 757, 758, 759, 760, 761, 762, 763, 764, 765, 766, 767, 768, 769, 770, 771, 772, 773, 774, 775, 776, 777, 778, 779, 780, 781, 782, 783, 784, 785, 786, 787, 788, 789, 790, 791, 792, 793, 794, 795, 796, 797, 798, 799, 800, 801, 802, 803, 804, 805, 806, 807, 808, 809, 810, 811, 812, 813, 814, 815, 816, 817, 818, 819, 820, 821, 822, 823, 824, 825, 826, 827, 828, 829, 830, 831, 832, 833, 834, 835, 836, 837, 838, 839, 840, 841, 842], "13___CATEGORICAL___nom_7": [843, 844, 845, 846, 847, 848, 849, 850, 851, 852, 853, 854, 855, 856, 857, 858, 859, 860, 861, 862, 863, 864, 865, 866, 867, 868, 869, 870, 871, 872, 873, 874, 875, 876, 877, 878, 879, 880, 881, 882, 883, 884, 885, 886, 887, 888, 889, 890, 891, 892, 893, 894, 895, 896, 897, 898, 899, 900, 901, 902, 903, 904, 905, 906, 907, 908, 909, 910, 911, 912, 913, 914, 915, 916, 917, 918, 919, 920, 921, 922, 923, 924, 925, 926, 927, 928, 929, 930, 931, 932, 933, 934, 935, 936, 937, 938, 939, 940, 941, 942, 943, 944, 945, 946, 947, 948, 949, 950, 951, 952, 953, 954, 955, 956, 957, 958, 959, 960, 961, 962, 963, 964, 965, 966, 967, 968, 969, 970, 971, 972, 973, 974, 975, 976, 977, 978, 979, 980, 981, 982, 983, 984, 985, 986, 987, 988, 989, 990, 991, 992, 993, 994, 995, 996, 997, 998, 999, 1000, 1001, 1002, 1003, 1004, 1005, 1006, 1007, 1008, 1009, 1010, 1011, 1012, 1013, 1014, 1015, 1016, 1017, 1018, 1019, 1020, 1021, 1022, 1023, 1024, 1025, 1026, 1027, 1028, 1029, 1030, 1031, 1032, 1033, 1034, 1035, 1036, 1037, 1038, 1039, 1040, 1041, 1042, 1043, 1044, 1045, 1046, 1047, 1048, 1049, 1050, 1051, 1052, 1053, 1054, 1055, 1056, 1057, 1058, 1059, 1060, 1061, 1062, 1063, 1064, 1065, 1066, 1067, 1068, 1069, 1070, 1071, 1072, 1073, 1074, 1075, 1076, 1077, 1078, 1079, 1080, 1081, 1082, 1083, 1084, 1085, 1086, 1087, 1088, 1089, 1090, 1091, 1092, 1093, 1094, 1095, 1096, 1097, 1098, 1099, 1100, 1101, 1102, 1103, 1104, 1105, 1106, 1107, 1108, 1109, 1110, 1111, 1112, 1113, 1114, 1115, 1116, 1117, 1118, 1119, 1120, 1121, 1122, 1123, 1124, 1125, 1126, 1127, 1128, 1129, 1130, 1131, 1132, 1133, 1134, 1135, 1136, 1137, 1138, 1139, 1140, 1141, 1142, 1143, 1144, 1145, 1146, 1147, 1148, 1149, 1150, 1151, 1152, 1153, 1154, 1155, 1156, 1157, 1158, 1159, 1160, 1161, 1162, 1163, 1164, 1165, 1166, 1167, 1168, 1169, 1170, 1171, 1172, 1173, 1174, 1175, 1176, 1177, 1178, 1179, 1180, 1181, 1182, 1183, 1184, 1185, 1186, 1187, 1188, 1189, 1190, 1191, 1192, 1193, 1194, 1195, 1196, 1197, 1198, 1199, 1200, 1201, 1202, 1203, 1204, 1205, 1206, 1207, 1208, 1209, 1210, 1211, 1212, 1213, 1214, 1215, 1216, 1217, 1218, 1219, 1220, 1221, 1222, 1223, 1224, 1225, 1226, 1227, 1228, 1229, 1230, 1231, 1232, 1233, 1234, 1235, 1236, 1237, 1238, 1239, 1240, 1241, 1242, 1243, 1244, 1245, 1246, 1247, 1248, 1249, 1250, 1251, 1252, 1253, 1254, 1255, 1256, 1257, 1258, 1259, 1260, 1261, 1262, 1263, 1264, 1265, 1266, 1267, 1268, 1269, 1270, 1271, 1272, 1273, 1274, 1275, 1276, 1277, 1278, 1279, 1280, 1281, 1282, 1283, 1284, 1285, 1286, 1287, 1288, 1289, 1290, 1291, 1292, 1293, 1294, 1295, 1296, 1297, 1298, 1299, 1300, 1301, 1302, 1303, 1304, 1305, 1306, 1307, 1308, 1309, 1310, 1311, 1312, 1313, 1314, 1315, 1316, 1317, 1318, 1319, 1320, 1321, 1322, 1323, 1324, 1325, 1326, 1327, 1328, 1329, 1330, 1331, 1332, 1333, 1334, 1335, 1336, 1337, 1338, 1339, 1340, 1341, 1342, 1343, 1344, 1345, 1346, 1347, 1348, 1349, 1350, 1351, 1352, 1353, 1354, 1355, 1356, 1357, 1358, 1359, 1360, 1361, 1362, 1363, 1364, 1365, 1366, 1367, 1368, 1369, 1370, 1371, 1372, 1373, 1374, 1375, 1376, 1377, 1378, 1379, 1380, 1381, 1382, 1383, 1384, 1385, 1386, 1387, 1388, 1389, 1390, 1391, 1392, 1393, 1394, 1395, 1396, 1397, 1398, 1399, 1400, 1401, 1402, 1403, 1404, 1405, 1406, 1407, 1408, 1409, 1410, 1411, 1412, 1413, 1414, 1415, 1416, 1417, 1418, 1419, 1420, 1421, 1422, 1423, 1424, 1425, 1426, 1427, 1428, 1429, 1430, 1431, 1432, 1433, 1434, 1435, 1436, 1437, 1438, 1439, 1440, 1441, 1442, 1443, 1444, 1445, 1446, 1447, 1448, 1449, 1450, 1451, 1452, 1453, 1454, 1455, 1456, 1457, 1458, 1459, 1460, 1461, 1462, 1463, 1464, 1465, 1466, 1467, 1468, 1469, 1470, 1471, 1472, 1473, 1474, 1475, 1476, 1477, 1478, 1479, 1480, 1481, 1482, 1483, 1484, 1485, 1486, 1487, 1488, 1489, 1490, 1491, 1492, 1493, 1494, 1495, 1496, 1497, 1498, 1499, 1500, 1501, 1502, 1503, 1504, 1505, 1506, 1507, 1508, 1509, 1510, 1511, 1512, 1513, 1514, 1515, 1516, 1517, 1518, 1519, 1520, 1521, 1522, 1523, 1524, 1525, 1526, 1527, 1528, 1529, 1530, 1531, 1532, 1533, 1534, 1535, 1536, 1537, 1538, 1539, 1540, 1541, 1542, 1543, 1544, 1545, 1546, 1547, 1548, 1549, 1550, 1551, 1552, 1553, 1554, 1555, 1556, 1557, 1558, 1559, 1560, 1561, 1562, 1563, 1564, 1565, 1566, 1567, 1568, 1569, 1570, 1571, 1572, 1573, 1574, 1575, 1576, 1577, 1578, 1579, 1580, 1581, 1582, 1583, 1584, 1585, 1586, 1587, 1588, 1589, 1590, 1591, 1592, 1593, 1594, 1595, 1596, 1597, 1598, 1599, 1600, 1601, 1602, 1603, 1604, 1605, 1606, 1607, 1608, 1609, 1610, 1611, 1612, 1613, 1614, 1615, 1616, 1617, 1618, 1619, 1620, 1621, 1622, 1623, 1624, 1625, 1626, 1627, 1628, 1629, 1630, 1631, 1632, 1633, 1634, 1635, 1636, 1637, 1638, 1639, 1640, 1641, 1642, 1643, 1644, 1645, 1646, 1647, 1648, 1649, 1650, 1651, 1652, 1653, 1654, 1655, 1656, 1657, 1658, 1659, 1660, 1661, 1662, 1663, 1664, 1665, 1666, 1667, 1668, 1669, 1670, 1671, 1672, 1673, 1674, 1675, 1676, 1677, 1678, 1679, 1680, 1681, 1682, 1683, 1684, 1685, 1686, 1687, 1688, 1689, 1690, 1691, 1692, 1693, 1694, 1695, 1696, 1697, 1698, 1699, 1700, 1701, 1702, 1703, 1704, 1705, 1706, 1707, 1708, 1709, 1710, 1711, 1712, 1713, 1714, 1715, 1716, 1717, 1718, 1719, 1720, 1721, 1722, 1723, 1724, 1725, 1726, 1727, 1728, 1729, 1730, 1731, 1732, 1733, 1734, 1735, 1736, 1737, 1738, 1739, 1740, 1741, 1742, 1743, 1744, 1745, 1746, 1747, 1748, 1749, 1750, 1751, 1752, 1753, 1754, 1755, 1756, 1757, 1758, 1759, 1760, 1761, 1762, 1763, 1764, 1765, 1766, 1767, 1768, 1769, 1770, 1771, 1772, 1773, 1774, 1775, 1776, 1777, 1778, 1779, 1780, 1781, 1782, 1783, 1784, 1785, 1786, 1787, 1788, 1789, 1790, 1791, 1792, 1793, 1794, 1795, 1796, 1797, 1798, 1799, 1800, 1801, 1802, 1803, 1804, 1805, 1806, 1807, 1808, 1809, 1810, 1811, 1812, 1813, 1814, 1815, 1816, 1817, 1818, 1819, 1820, 1821, 1822, 1823, 1824, 1825, 1826, 1827, 1828, 1829, 1830, 1831, 1832, 1833, 1834, 1835, 1836, 1837, 1838, 1839, 1840, 1841, 1842, 1843, 1844, 1845, 1846, 1847, 1848, 1849, 1850, 1851, 1852, 1853, 1854, 1855, 1856, 1857, 1858, 1859, 1860, 1861, 1862, 1863, 1864, 1865, 1866, 1867, 1868, 1869, 1870, 1871, 1872, 1873, 1874, 1875, 1876, 1877, 1878, 1879, 1880, 1881, 1882, 1883, 1884, 1885, 1886, 1887, 1888, 1889, 1890, 1891, 1892, 1893, 1894, 1895, 1896, 1897, 1898, 1899, 1900, 1901, 1902, 1903, 1904, 1905, 1906, 1907, 1908, 1909, 1910, 1911, 1912, 1913, 1914, 1915, 1916, 1917, 1918, 1919, 1920, 1921, 1922, 1923, 1924, 1925, 1926, 1927, 1928, 1929, 1930, 1931, 1932, 1933, 1934, 1935, 1936, 1937, 1938, 1939, 1940, 1941, 1942, 1943, 1944, 1945, 1946, 1947, 1948, 1949, 1950, 1951, 1952, 1953, 1954, 1955, 1956, 1957, 1958, 1959, 1960, 1961, 1962, 1963, 1964, 1965, 1966, 1967, 1968, 1969, 1970, 1971, 1972, 1973, 1974, 1975, 1976, 1977, 1978, 1979, 1980, 1981, 1982, 1983, 1984, 1985, 1986, 1987, 1988, 1989, 1990, 1991, 1992, 1993, 1994, 1995, 1996, 1997, 1998, 1999, 2000, 2001, 2002, 2003, 2004, 2005, 2006, 2007, 2008, 2009, 2010, 2011, 2012, 2013, 2014, 2015, 2016, 2017, 2018, 2019, 2020, 2021, 2022, 2023, 2024, 2025, 2026, 2027, 2028, 2029, 2030, 2031, 2032, 2033, 2034, 2035, 2036, 2037, 2038, 2039, 2040, 2041, 2042, 2043, 2044, 2045, 2046, 2047, 2048, 2049, 2050, 2051, 2052, 2053, 2054, 2055, 2056, 2057, 2058, 2059, 2060, 2061], "14___CATEGORICAL___nom_8": [2062, 2063, 2064, 2065, 2066, 2067, 2068, 2069, 2070, 2071, 2072, 2073, 2074, 2075, 2076, 2077, 2078, 2079, 2080, 2081, 2082, 2083, 2084, 2085, 2086, 2087, 2088, 2089, 2090, 2091, 2092, 2093, 2094, 2095, 2096, 2097, 2098, 2099, 2100, 2101, 2102, 2103, 2104, 2105, 2106, 2107, 2108, 2109, 2110, 2111, 2112, 2113, 2114, 2115, 2116, 2117, 2118, 2119, 2120, 2121, 2122, 2123, 2124, 2125, 2126, 2127, 2128, 2129, 2130, 2131, 2132, 2133, 2134, 2135, 2136, 2137, 2138, 2139, 2140, 2141, 2142, 2143, 2144, 2145, 2146, 2147, 2148, 2149, 2150, 2151, 2152, 2153, 2154, 2155, 2156, 2157, 2158, 2159, 2160, 2161, 2162, 2163, 2164, 2165, 2166, 2167, 2168, 2169, 2170, 2171, 2172, 2173, 2174, 2175, 2176, 2177, 2178, 2179, 2180, 2181, 2182, 2183, 2184, 2185, 2186, 2187, 2188, 2189, 2190, 2191, 2192, 2193, 2194, 2195, 2196, 2197, 2198, 2199, 2200, 2201, 2202, 2203, 2204, 2205, 2206, 2207, 2208, 2209, 2210, 2211, 2212, 2213, 2214, 2215, 2216, 2217, 2218, 2219, 2220, 2221, 2222, 2223, 2224, 2225, 2226, 2227, 2228, 2229, 2230, 2231, 2232, 2233, 2234, 2235, 2236, 2237, 2238, 2239, 2240, 2241, 2242, 2243, 2244, 2245, 2246, 2247, 2248, 2249, 2250, 2251, 2252, 2253, 2254, 2255, 2256, 2257, 2258, 2259, 2260, 2261, 2262, 2263, 2264, 2265, 2266, 2267, 2268, 2269, 2270, 2271, 2272, 2273, 2274, 2275, 2276, 2277, 2278, 2279, 2280, 2281, 2282, 2283, 2284, 2285, 2286, 2287, 2288, 2289, 2290, 2291, 2292, 2293, 2294, 2295, 2296, 2297, 2298, 2299, 2300, 2301, 2302, 2303, 2304, 2305, 2306, 2307, 2308, 2309, 2310, 2311, 2312, 2313, 2314, 2315, 2316, 2317, 2318, 2319, 2320, 2321, 2322, 2323, 2324, 2325, 2326, 2327, 2328, 2329, 2330, 2331, 2332, 2333, 2334, 2335, 2336, 2337, 2338, 2339, 2340, 2341, 2342, 2343, 2344, 2345, 2346, 2347, 2348, 2349, 2350, 2351, 2352, 2353, 2354, 2355, 2356, 2357, 2358, 2359, 2360, 2361, 2362, 2363, 2364, 2365, 2366, 2367, 2368, 2369, 2370, 2371, 2372, 2373, 2374, 2375, 2376, 2377, 2378, 2379, 2380, 2381, 2382, 2383, 2384, 2385, 2386, 2387, 2388, 2389, 2390, 2391, 2392, 2393, 2394, 2395, 2396, 2397, 2398, 2399, 2400, 2401, 2402, 2403, 2404, 2405, 2406, 2407, 2408, 2409, 2410, 2411, 2412, 2413, 2414, 2415, 2416, 2417, 2418, 2419, 2420, 2421, 2422, 2423, 2424, 2425, 2426, 2427, 2428, 2429, 2430, 2431, 2432, 2433, 2434, 2435, 2436, 2437, 2438, 2439, 2440, 2441, 2442, 2443, 2444, 2445, 2446, 2447, 2448, 2449, 2450, 2451, 2452, 2453, 2454, 2455, 2456, 2457, 2458, 2459, 2460, 2461, 2462, 2463, 2464, 2465, 2466, 2467, 2468, 2469, 2470, 2471, 2472, 2473, 2474, 2475, 2476, 2477, 2478, 2479, 2480, 2481, 2482, 2483, 2484, 2485, 2486, 2487, 2488, 2489, 2490, 2491, 2492, 2493, 2494, 2495, 2496, 2497, 2498, 2499, 2500, 2501, 2502, 2503, 2504, 2505, 2506, 2507, 2508, 2509, 2510, 2511, 2512, 2513, 2514, 2515, 2516, 2517, 2518, 2519, 2520, 2521, 2522, 2523, 2524, 2525, 2526, 2527, 2528, 2529, 2530, 2531, 2532, 2533, 2534, 2535, 2536, 2537, 2538, 2539, 2540, 2541, 2542, 2543, 2544, 2545, 2546, 2547, 2548, 2549, 2550, 2551, 2552, 2553, 2554, 2555, 2556, 2557, 2558, 2559, 2560, 2561, 2562, 2563, 2564, 2565, 2566, 2567, 2568, 2569, 2570, 2571, 2572, 2573, 2574, 2575, 2576, 2577, 2578, 2579, 2580, 2581, 2582, 2583, 2584, 2585, 2586, 2587, 2588, 2589, 2590, 2591, 2592, 2593, 2594, 2595, 2596, 2597, 2598, 2599, 2600, 2601, 2602, 2603, 2604, 2605, 2606, 2607, 2608, 2609, 2610, 2611, 2612, 2613, 2614, 2615, 2616, 2617, 2618, 2619, 2620, 2621, 2622, 2623, 2624, 2625, 2626, 2627, 2628, 2629, 2630, 2631, 2632, 2633, 2634, 2635, 2636, 2637, 2638, 2639, 2640, 2641, 2642, 2643, 2644, 2645, 2646, 2647, 2648, 2649, 2650, 2651, 2652, 2653, 2654, 2655, 2656, 2657, 2658, 2659, 2660, 2661, 2662, 2663, 2664, 2665, 2666, 2667, 2668, 2669, 2670, 2671, 2672, 2673, 2674, 2675, 2676, 2677, 2678, 2679, 2680, 2681, 2682, 2683, 2684, 2685, 2686, 2687, 2688, 2689, 2690, 2691, 2692, 2693, 2694, 2695, 2696, 2697, 2698, 2699, 2700, 2701, 2702, 2703, 2704, 2705, 2706, 2707, 2708, 2709, 2710, 2711, 2712, 2713, 2714, 2715, 2716, 2717, 2718, 2719, 2720, 2721, 2722, 2723, 2724, 2725, 2726, 2727, 2728, 2729, 2730, 2731, 2732, 2733, 2734, 2735, 2736, 2737, 2738, 2739, 2740, 2741, 2742, 2743, 2744, 2745, 2746, 2747, 2748, 2749, 2750, 2751, 2752, 2753, 2754, 2755, 2756, 2757, 2758, 2759, 2760, 2761, 2762, 2763, 2764, 2765, 2766, 2767, 2768, 2769, 2770, 2771, 2772, 2773, 2774, 2775, 2776, 2777, 2778, 2779, 2780, 2781, 2782, 2783, 2784, 2785, 2786, 2787, 2788, 2789, 2790, 2791, 2792, 2793, 2794, 2795, 2796, 2797, 2798, 2799, 2800, 2801, 2802, 2803, 2804, 2805, 2806, 2807, 2808, 2809, 2810, 2811, 2812, 2813, 2814, 2815, 2816, 2817, 2818, 2819, 2820, 2821, 2822, 2823, 2824, 2825, 2826, 2827, 2828, 2829, 2830, 2831, 2832, 2833, 2834, 2835, 2836, 2837, 2838, 2839, 2840, 2841, 2842, 2843, 2844, 2845, 2846, 2847, 2848, 2849, 2850, 2851, 2852, 2853, 2854, 2855, 2856, 2857, 2858, 2859, 2860, 2861, 2862, 2863, 2864, 2865, 2866, 2867, 2868, 2869, 2870, 2871, 2872, 2873, 2874, 2875, 2876, 2877, 2878, 2879, 2880, 2881, 2882, 2883, 2884, 2885, 2886, 2887, 2888, 2889, 2890, 2891, 2892, 2893, 2894, 2895, 2896, 2897, 2898, 2899, 2900, 2901, 2902, 2903, 2904, 2905, 2906, 2907, 2908, 2909, 2910, 2911, 2912, 2913, 2914, 2915, 2916, 2917, 2918, 2919, 2920, 2921, 2922, 2923, 2924, 2925, 2926, 2927, 2928, 2929, 2930, 2931, 2932, 2933, 2934, 2935, 2936, 2937, 2938, 2939, 2940, 2941, 2942, 2943, 2944, 2945, 2946, 2947, 2948, 2949, 2950, 2951, 2952, 2953, 2954, 2955, 2956, 2957, 2958, 2959, 2960, 2961, 2962, 2963, 2964, 2965, 2966, 2967, 2968, 2969, 2970, 2971, 2972, 2973, 2974, 2975, 2976, 2977, 2978, 2979, 2980, 2981, 2982, 2983, 2984, 2985, 2986, 2987, 2988, 2989, 2990, 2991, 2992, 2993, 2994, 2995, 2996, 2997, 2998, 2999, 3000, 3001, 3002, 3003, 3004, 3005, 3006, 3007, 3008, 3009, 3010, 3011, 3012, 3013, 3014, 3015, 3016, 3017, 3018, 3019, 3020, 3021, 3022, 3023, 3024, 3025, 3026, 3027, 3028, 3029, 3030, 3031, 3032, 3033, 3034, 3035, 3036, 3037, 3038, 3039, 3040, 3041, 3042, 3043, 3044, 3045, 3046, 3047, 3048, 3049, 3050, 3051, 3052, 3053, 3054, 3055, 3056, 3057, 3058, 3059, 3060, 3061, 3062, 3063, 3064, 3065, 3066, 3067, 3068, 3069, 3070, 3071, 3072, 3073, 3074, 3075, 3076, 3077, 3078, 3079, 3080, 3081, 3082, 3083, 3084, 3085, 3086, 3087, 3088, 3089, 3090, 3091, 3092, 3093, 3094, 3095, 3096, 3097, 3098, 3099, 3100, 3101, 3102, 3103, 3104, 3105, 3106, 3107, 3108, 3109, 3110, 3111, 3112, 3113, 3114, 3115, 3116, 3117, 3118, 3119, 3120, 3121, 3122, 3123, 3124, 3125, 3126, 3127, 3128, 3129, 3130, 3131, 3132, 3133, 3134, 3135, 3136, 3137, 3138, 3139, 3140, 3141, 3142, 3143, 3144, 3145, 3146, 3147, 3148, 3149, 3150, 3151, 3152, 3153, 3154, 3155, 3156, 3157, 3158, 3159, 3160, 3161, 3162, 3163, 3164, 3165, 3166, 3167, 3168, 3169, 3170, 3171, 3172, 3173, 3174, 3175, 3176, 3177, 3178, 3179, 3180, 3181, 3182, 3183, 3184, 3185, 3186, 3187, 3188, 3189, 3190, 3191, 3192, 3193, 3194, 3195, 3196, 3197, 3198, 3199, 3200, 3201, 3202, 3203, 3204, 3205, 3206, 3207, 3208, 3209, 3210, 3211, 3212, 3213, 3214, 3215, 3216, 3217, 3218, 3219, 3220, 3221, 3222, 3223, 3224, 3225, 3226, 3227, 3228, 3229, 3230, 3231, 3232, 3233, 3234, 3235, 3236, 3237, 3238, 3239, 3240, 3241, 3242, 3243, 3244, 3245, 3246, 3247, 3248, 3249, 3250, 3251, 3252, 3253, 3254, 3255, 3256, 3257, 3258, 3259, 3260, 3261, 3262, 3263, 3264, 3265, 3266, 3267, 3268, 3269, 3270, 3271, 3272, 3273, 3274, 3275, 3276, 3277, 3278, 3279, 3280, 3281, 3282, 3283, 3284, 3285, 3286, 3287, 3288, 3289, 3290, 3291, 3292, 3293, 3294, 3295, 3296, 3297, 3298, 3299, 3300, 3301, 3302, 3303, 3304, 3305, 3306, 3307, 3308, 3309, 3310, 3311, 3312, 3313, 3314, 3315, 3316, 3317, 3318, 3319, 3320, 3321, 3322, 3323, 3324, 3325, 3326, 3327, 3328, 3329, 3330, 3331, 3332, 3333, 3334, 3335, 3336, 3337, 3338, 3339, 3340, 3341, 3342, 3343, 3344, 3345, 3346, 3347, 3348, 3349, 3350, 3351, 3352, 3353, 3354, 3355, 3356, 3357, 3358, 3359, 3360, 3361, 3362, 3363, 3364, 3365, 3366, 3367, 3368, 3369, 3370, 3371, 3372, 3373, 3374, 3375, 3376, 3377, 3378, 3379, 3380, 3381, 3382, 3383, 3384, 3385, 3386, 3387, 3388, 3389, 3390, 3391, 3392, 3393, 3394, 3395, 3396, 3397, 3398, 3399, 3400, 3401, 3402, 3403, 3404, 3405, 3406, 3407, 3408, 3409, 3410, 3411, 3412, 3413, 3414, 3415, 3416, 3417, 3418, 3419, 3420, 3421, 3422, 3423, 3424, 3425, 3426, 3427, 3428, 3429, 3430, 3431, 3432, 3433, 3434, 3435, 3436, 3437, 3438, 3439, 3440, 3441, 3442, 3443, 3444, 3445, 3446, 3447, 3448, 3449, 3450, 3451, 3452, 3453, 3454, 3455, 3456, 3457, 3458, 3459, 3460, 3461, 3462, 3463, 3464, 3465, 3466, 3467, 3468, 3469, 3470, 3471, 3472, 3473, 3474, 3475, 3476, 3477, 3478, 3479, 3480, 3481, 3482, 3483, 3484, 3485, 3486, 3487, 3488, 3489, 3490, 3491, 3492, 3493, 3494, 3495, 3496, 3497, 3498, 3499, 3500, 3501, 3502, 3503, 3504, 3505, 3506, 3507, 3508, 3509, 3510, 3511, 3512, 3513, 3514, 3515, 3516, 3517, 3518, 3519, 3520, 3521, 3522, 3523, 3524, 3525, 3526, 3527, 3528, 3529, 3530, 3531, 3532, 3533, 3534, 3535, 3536, 3537, 3538, 3539, 3540, 3541, 3542, 3543, 3544, 3545, 3546, 3547, 3548, 3549, 3550, 3551, 3552, 3553, 3554, 3555, 3556, 3557, 3558, 3559, 3560, 3561, 3562, 3563, 3564, 3565, 3566, 3567, 3568, 3569, 3570, 3571, 3572, 3573, 3574, 3575, 3576, 3577, 3578, 3579, 3580, 3581, 3582, 3583, 3584, 3585, 3586, 3587, 3588, 3589, 3590, 3591, 3592, 3593, 3594, 3595, 3596, 3597, 3598, 3599, 3600, 3601, 3602, 3603, 3604, 3605, 3606, 3607, 3608, 3609, 3610, 3611, 3612, 3613, 3614, 3615, 3616, 3617, 3618, 3619, 3620, 3621, 3622, 3623, 3624, 3625, 3626, 3627, 3628, 3629, 3630, 3631, 3632, 3633, 3634, 3635, 3636, 3637, 3638, 3639, 3640, 3641, 3642, 3643, 3644, 3645, 3646, 3647, 3648, 3649, 3650, 3651, 3652, 3653, 3654, 3655, 3656, 3657, 3658, 3659, 3660, 3661, 3662, 3663, 3664, 3665, 3666, 3667, 3668, 3669, 3670, 3671, 3672, 3673, 3674, 3675, 3676, 3677, 3678, 3679, 3680, 3681, 3682, 3683, 3684, 3685, 3686, 3687, 3688, 3689, 3690, 3691, 3692, 3693, 3694, 3695, 3696, 3697, 3698, 3699, 3700, 3701, 3702, 3703, 3704, 3705, 3706, 3707, 3708, 3709, 3710, 3711, 3712, 3713, 3714, 3715, 3716, 3717, 3718, 3719, 3720, 3721, 3722, 3723, 3724, 3725, 3726, 3727, 3728, 3729, 3730, 3731, 3732, 3733, 3734, 3735, 3736, 3737, 3738, 3739, 3740, 3741, 3742, 3743, 3744, 3745, 3746, 3747, 3748, 3749, 3750, 3751, 3752, 3753, 3754, 3755, 3756, 3757, 3758, 3759, 3760, 3761, 3762, 3763, 3764, 3765, 3766, 3767, 3768, 3769, 3770, 3771, 3772, 3773, 3774, 3775, 3776, 3777, 3778, 3779, 3780, 3781, 3782, 3783, 3784, 3785, 3786, 3787, 3788, 3789, 3790, 3791, 3792, 3793, 3794, 3795, 3796, 3797, 3798, 3799, 3800, 3801, 3802, 3803, 3804, 3805, 3806, 3807, 3808, 3809, 3810, 3811, 3812, 3813, 3814, 3815, 3816, 3817, 3818, 3819, 3820, 3821, 3822, 3823, 3824, 3825, 3826, 3827, 3828, 3829, 3830, 3831, 3832, 3833, 3834, 3835, 3836, 3837, 3838, 3839, 3840, 3841, 3842, 3843, 3844, 3845, 3846, 3847, 3848, 3849, 3850, 3851, 3852, 3853, 3854, 3855, 3856, 3857, 3858, 3859, 3860, 3861, 3862, 3863, 3864, 3865, 3866, 3867, 3868, 3869, 3870, 3871, 3872, 3873, 3874, 3875, 3876, 3877, 3878, 3879, 3880, 3881, 3882, 3883, 3884, 3885, 3886, 3887, 3888, 3889, 3890, 3891, 3892, 3893, 3894, 3895, 3896, 3897, 3898, 3899, 3900, 3901, 3902, 3903, 3904, 3905, 3906, 3907, 3908, 3909, 3910, 3911, 3912, 3913, 3914, 3915, 3916, 3917, 3918, 3919, 3920, 3921, 3922, 3923, 3924, 3925, 3926, 3927, 3928, 3929, 3930, 3931, 3932, 3933, 3934, 3935, 3936, 3937, 3938, 3939, 3940, 3941, 3942, 3943, 3944, 3945, 3946, 3947, 3948, 3949, 3950, 3951, 3952, 3953, 3954, 3955, 3956, 3957, 3958, 3959, 3960, 3961, 3962, 3963, 3964, 3965, 3966, 3967, 3968, 3969, 3970, 3971, 3972, 3973, 3974, 3975, 3976, 3977, 3978, 3979, 3980, 3981, 3982, 3983, 3984, 3985, 3986, 3987, 3988, 3989, 3990, 3991, 3992, 3993, 3994, 3995, 3996, 3997, 3998, 3999, 4000, 4001, 4002, 4003, 4004, 4005, 4006, 4007, 4008, 4009, 4010, 4011, 4012, 4013, 4014, 4015, 4016, 4017, 4018, 4019, 4020, 4021, 4022, 4023, 4024, 4025, 4026, 4027, 4028, 4029, 4030, 4031, 4032, 4033, 4034, 4035, 4036, 4037, 4038, 4039, 4040, 4041, 4042, 4043, 4044, 4045, 4046, 4047, 4048, 4049, 4050, 4051, 4052, 4053, 4054, 4055, 4056, 4057, 4058, 4059, 4060, 4061, 4062, 4063, 4064, 4065, 4066, 4067, 4068, 4069, 4070, 4071, 4072, 4073, 4074, 4075, 4076, 4077, 4078, 4079, 4080, 4081, 4082, 4083, 4084, 4085, 4086, 4087, 4088, 4089, 4090, 4091, 4092, 4093, 4094, 4095, 4096, 4097, 4098, 4099, 4100, 4101, 4102, 4103, 4104, 4105, 4106, 4107, 4108, 4109, 4110, 4111, 4112, 4113, 4114, 4115, 4116, 4117, 4118, 4119, 4120, 4121, 4122, 4123, 4124, 4125, 4126, 4127, 4128, 4129, 4130, 4131, 4132, 4133, 4134, 4135, 4136, 4137, 4138, 4139, 4140, 4141, 4142, 4143, 4144, 4145, 4146, 4147, 4148, 4149, 4150, 4151, 4152, 4153, 4154, 4155, 4156, 4157, 4158, 4159, 4160, 4161, 4162, 4163, 4164, 4165, 4166, 4167, 4168, 4169, 4170, 4171, 4172, 4173, 4174, 4175, 4176, 4177, 4178, 4179, 4180, 4181, 4182, 4183, 4184, 4185, 4186, 4187, 4188, 4189, 4190, 4191, 4192, 4193, 4194, 4195, 4196, 4197, 4198, 4199, 4200, 4201, 4202, 4203, 4204, 4205, 4206, 4207, 4208, 4209, 4210, 4211, 4212, 4213, 4214, 4215, 4216, 4217, 4218, 4219, 4220, 4221, 4222, 4223, 4224, 4225, 4226, 4227, 4228, 4229, 4230, 4231, 4232, 4233, 4234, 4235, 4236, 4237, 4238, 4239, 4240, 4241, 4242, 4243, 4244, 4245, 4246, 4247, 4248, 4249, 4250, 4251, 4252, 4253, 4254, 4255, 4256, 4257, 4258, 4259, 4260, 4261, 4262, 4263, 4264, 4265, 4266, 4267, 4268, 4269, 4270, 4271, 4272, 4273, 4274, 4275, 4276], "15___CATEGORICAL___nom_9": [4277, 4278, 4279, 4280, 4281, 4282, 4283, 4284, 4285, 4286, 4287, 4288, 4289, 4290, 4291, 4292, 4293, 4294, 4295, 4296, 4297, 4298, 4299, 4300, 4301, 4302, 4303, 4304, 4305, 4306, 4307, 4308, 4309, 4310, 4311, 4312, 4313, 4314, 4315, 4316, 4317, 4318, 4319, 4320, 4321, 4322, 4323, 4324, 4325, 4326, 4327, 4328, 4329, 4330, 4331, 4332, 4333, 4334, 4335, 4336, 4337, 4338, 4339, 4340, 4341, 4342, 4343, 4344, 4345, 4346, 4347, 4348, 4349, 4350, 4351, 4352, 4353, 4354, 4355, 4356, 4357, 4358, 4359, 4360, 4361, 4362, 4363, 4364, 4365, 4366, 4367, 4368, 4369, 4370, 4371, 4372, 4373, 4374, 4375, 4376, 4377, 4378, 4379, 4380, 4381, 4382, 4383, 4384, 4385, 4386, 4387, 4388, 4389, 4390, 4391, 4392, 4393, 4394, 4395, 4396, 4397, 4398, 4399, 4400, 4401, 4402, 4403, 4404, 4405, 4406, 4407, 4408, 4409, 4410, 4411, 4412, 4413, 4414, 4415, 4416, 4417, 4418, 4419, 4420, 4421, 4422, 4423, 4424, 4425, 4426, 4427, 4428, 4429, 4430, 4431, 4432, 4433, 4434, 4435, 4436, 4437, 4438, 4439, 4440, 4441, 4442, 4443, 4444, 4445, 4446, 4447, 4448, 4449, 4450, 4451, 4452, 4453, 4454, 4455, 4456, 4457, 4458, 4459, 4460, 4461, 4462, 4463, 4464, 4465, 4466, 4467, 4468, 4469, 4470, 4471, 4472, 4473, 4474, 4475, 4476, 4477, 4478, 4479, 4480, 4481, 4482, 4483, 4484, 4485, 4486, 4487, 4488, 4489, 4490, 4491, 4492, 4493, 4494, 4495, 4496, 4497, 4498, 4499, 4500, 4501, 4502, 4503, 4504, 4505, 4506, 4507, 4508, 4509, 4510, 4511, 4512, 4513, 4514, 4515, 4516, 4517, 4518, 4519, 4520, 4521, 4522, 4523, 4524, 4525, 4526, 4527, 4528, 4529, 4530, 4531, 4532, 4533, 4534, 4535, 4536, 4537, 4538, 4539, 4540, 4541, 4542, 4543, 4544, 4545, 4546, 4547, 4548, 4549, 4550, 4551, 4552, 4553, 4554, 4555, 4556, 4557, 4558, 4559, 4560, 4561, 4562, 4563, 4564, 4565, 4566, 4567, 4568, 4569, 4570, 4571, 4572, 4573, 4574, 4575, 4576, 4577, 4578, 4579, 4580, 4581, 4582, 4583, 4584, 4585, 4586, 4587, 4588, 4589, 4590, 4591, 4592, 4593, 4594, 4595, 4596, 4597, 4598, 4599, 4600, 4601, 4602, 4603, 4604, 4605, 4606, 4607, 4608, 4609, 4610, 4611, 4612, 4613, 4614, 4615, 4616, 4617, 4618, 4619, 4620, 4621, 4622, 4623, 4624, 4625, 4626, 4627, 4628, 4629, 4630, 4631, 4632, 4633, 4634, 4635, 4636, 4637, 4638, 4639, 4640, 4641, 4642, 4643, 4644, 4645, 4646, 4647, 4648, 4649, 4650, 4651, 4652, 4653, 4654, 4655, 4656, 4657, 4658, 4659, 4660, 4661, 4662, 4663, 4664, 4665, 4666, 4667, 4668, 4669, 4670, 4671, 4672, 4673, 4674, 4675, 4676, 4677, 4678, 4679, 4680, 4681, 4682, 4683, 4684, 4685, 4686, 4687, 4688, 4689, 4690, 4691, 4692, 4693, 4694, 4695, 4696, 4697, 4698, 4699, 4700, 4701, 4702, 4703, 4704, 4705, 4706, 4707, 4708, 4709, 4710, 4711, 4712, 4713, 4714, 4715, 4716, 4717, 4718, 4719, 4720, 4721, 4722, 4723, 4724, 4725, 4726, 4727, 4728, 4729, 4730, 4731, 4732, 4733, 4734, 4735, 4736, 4737, 4738, 4739, 4740, 4741, 4742, 4743, 4744, 4745, 4746, 4747, 4748, 4749, 4750, 4751, 4752, 4753, 4754, 4755, 4756, 4757, 4758, 4759, 4760, 4761, 4762, 4763, 4764, 4765, 4766, 4767, 4768, 4769, 4770, 4771, 4772, 4773, 4774, 4775, 4776, 4777, 4778, 4779, 4780, 4781, 4782, 4783, 4784, 4785, 4786, 4787, 4788, 4789, 4790, 4791, 4792, 4793, 4794, 4795, 4796, 4797, 4798, 4799, 4800, 4801, 4802, 4803, 4804, 4805, 4806, 4807, 4808, 4809, 4810, 4811, 4812, 4813, 4814, 4815, 4816, 4817, 4818, 4819, 4820, 4821, 4822, 4823, 4824, 4825, 4826, 4827, 4828, 4829, 4830, 4831, 4832, 4833, 4834, 4835, 4836, 4837, 4838, 4839, 4840, 4841, 4842, 4843, 4844, 4845, 4846, 4847, 4848, 4849, 4850, 4851, 4852, 4853, 4854, 4855, 4856, 4857, 4858, 4859, 4860, 4861, 4862, 4863, 4864, 4865, 4866, 4867, 4868, 4869, 4870, 4871, 4872, 4873, 4874, 4875, 4876, 4877, 4878, 4879, 4880, 4881, 4882, 4883, 4884, 4885, 4886, 4887, 4888, 4889, 4890, 4891, 4892, 4893, 4894, 4895, 4896, 4897, 4898, 4899, 4900, 4901, 4902, 4903, 4904, 4905, 4906, 4907, 4908, 4909, 4910, 4911, 4912, 4913, 4914, 4915, 4916, 4917, 4918, 4919, 4920, 4921, 4922, 4923, 4924, 4925, 4926, 4927, 4928, 4929, 4930, 4931, 4932, 4933, 4934, 4935, 4936, 4937, 4938, 4939, 4940, 4941, 4942, 4943, 4944, 4945, 4946, 4947, 4948, 4949, 4950, 4951, 4952, 4953, 4954, 4955, 4956, 4957, 4958, 4959, 4960, 4961, 4962, 4963, 4964, 4965, 4966, 4967, 4968, 4969, 4970, 4971, 4972, 4973, 4974, 4975, 4976, 4977, 4978, 4979, 4980, 4981, 4982, 4983, 4984, 4985, 4986, 4987, 4988, 4989, 4990, 4991, 4992, 4993, 4994, 4995, 4996, 4997, 4998, 4999, 5000, 5001, 5002, 5003, 5004, 5005, 5006, 5007, 5008, 5009, 5010, 5011, 5012, 5013, 5014, 5015, 5016, 5017, 5018, 5019, 5020, 5021, 5022, 5023, 5024, 5025, 5026, 5027, 5028, 5029, 5030, 5031, 5032, 5033, 5034, 5035, 5036, 5037, 5038, 5039, 5040, 5041, 5042, 5043, 5044, 5045, 5046, 5047, 5048, 5049, 5050, 5051, 5052, 5053, 5054, 5055, 5056, 5057, 5058, 5059, 5060, 5061, 5062, 5063, 5064, 5065, 5066, 5067, 5068, 5069, 5070, 5071, 5072, 5073, 5074, 5075, 5076, 5077, 5078, 5079, 5080, 5081, 5082, 5083, 5084, 5085, 5086, 5087, 5088, 5089, 5090, 5091, 5092, 5093, 5094, 5095, 5096, 5097, 5098, 5099, 5100, 5101, 5102, 5103, 5104, 5105, 5106, 5107, 5108, 5109, 5110, 5111, 5112, 5113, 5114, 5115, 5116, 5117, 5118, 5119, 5120, 5121, 5122, 5123, 5124, 5125, 5126, 5127, 5128, 5129, 5130, 5131, 5132, 5133, 5134, 5135, 5136, 5137, 5138, 5139, 5140, 5141, 5142, 5143, 5144, 5145, 5146, 5147, 5148, 5149, 5150, 5151, 5152, 5153, 5154, 5155, 5156, 5157, 5158, 5159, 5160, 5161, 5162, 5163, 5164, 5165, 5166, 5167, 5168, 5169, 5170, 5171, 5172, 5173, 5174, 5175, 5176, 5177, 5178, 5179, 5180, 5181, 5182, 5183, 5184, 5185, 5186, 5187, 5188, 5189, 5190, 5191, 5192, 5193, 5194, 5195, 5196, 5197, 5198, 5199, 5200, 5201, 5202, 5203, 5204, 5205, 5206, 5207, 5208, 5209, 5210, 5211, 5212, 5213, 5214, 5215, 5216, 5217, 5218, 5219, 5220, 5221, 5222, 5223, 5224, 5225, 5226, 5227, 5228, 5229, 5230, 5231, 5232, 5233, 5234, 5235, 5236, 5237, 5238, 5239, 5240, 5241, 5242, 5243, 5244, 5245, 5246, 5247, 5248, 5249, 5250, 5251, 5252, 5253, 5254, 5255, 5256, 5257, 5258, 5259, 5260, 5261, 5262, 5263, 5264, 5265, 5266, 5267, 5268, 5269, 5270, 5271, 5272, 5273, 5274, 5275, 5276, 5277, 5278, 5279, 5280, 5281, 5282, 5283, 5284, 5285, 5286, 5287, 5288, 5289, 5290, 5291, 5292, 5293, 5294, 5295, 5296, 5297, 5298, 5299, 5300, 5301, 5302, 5303, 5304, 5305, 5306, 5307, 5308, 5309, 5310, 5311, 5312, 5313, 5314, 5315, 5316, 5317, 5318, 5319, 5320, 5321, 5322, 5323, 5324, 5325, 5326, 5327, 5328, 5329, 5330, 5331, 5332, 5333, 5334, 5335, 5336, 5337, 5338, 5339, 5340, 5341, 5342, 5343, 5344, 5345, 5346, 5347, 5348, 5349, 5350, 5351, 5352, 5353, 5354, 5355, 5356, 5357, 5358, 5359, 5360, 5361, 5362, 5363, 5364, 5365, 5366, 5367, 5368, 5369, 5370, 5371, 5372, 5373, 5374, 5375, 5376, 5377, 5378, 5379, 5380, 5381, 5382, 5383, 5384, 5385, 5386, 5387, 5388, 5389, 5390, 5391, 5392, 5393, 5394, 5395, 5396, 5397, 5398, 5399, 5400, 5401, 5402, 5403, 5404, 5405, 5406, 5407, 5408, 5409, 5410, 5411, 5412, 5413, 5414, 5415, 5416, 5417, 5418, 5419, 5420, 5421, 5422, 5423, 5424, 5425, 5426, 5427, 5428, 5429, 5430, 5431, 5432, 5433, 5434, 5435, 5436, 5437, 5438, 5439, 5440, 5441, 5442, 5443, 5444, 5445, 5446, 5447, 5448, 5449, 5450, 5451, 5452, 5453, 5454, 5455, 5456, 5457, 5458, 5459, 5460, 5461, 5462, 5463, 5464, 5465, 5466, 5467, 5468, 5469, 5470, 5471, 5472, 5473, 5474, 5475, 5476, 5477, 5478, 5479, 5480, 5481, 5482, 5483, 5484, 5485, 5486, 5487, 5488, 5489, 5490, 5491, 5492, 5493, 5494, 5495, 5496, 5497, 5498, 5499, 5500, 5501, 5502, 5503, 5504, 5505, 5506, 5507, 5508, 5509, 5510, 5511, 5512, 5513, 5514, 5515, 5516, 5517, 5518, 5519, 5520, 5521, 5522, 5523, 5524, 5525, 5526, 5527, 5528, 5529, 5530, 5531, 5532, 5533, 5534, 5535, 5536, 5537, 5538, 5539, 5540, 5541, 5542, 5543, 5544, 5545, 5546, 5547, 5548, 5549, 5550, 5551, 5552, 5553, 5554, 5555, 5556, 5557, 5558, 5559, 5560, 5561, 5562, 5563, 5564, 5565, 5566, 5567, 5568, 5569, 5570, 5571, 5572, 5573, 5574, 5575, 5576, 5577, 5578, 5579, 5580, 5581, 5582, 5583, 5584, 5585, 5586, 5587, 5588, 5589, 5590, 5591, 5592, 5593, 5594, 5595, 5596, 5597, 5598, 5599, 5600, 5601, 5602, 5603, 5604, 5605, 5606, 5607, 5608, 5609, 5610, 5611, 5612, 5613, 5614, 5615, 5616, 5617, 5618, 5619, 5620, 5621, 5622, 5623, 5624, 5625, 5626, 5627, 5628, 5629, 5630, 5631, 5632, 5633, 5634, 5635, 5636, 5637, 5638, 5639, 5640, 5641, 5642, 5643, 5644, 5645, 5646, 5647, 5648, 5649, 5650, 5651, 5652, 5653, 5654, 5655, 5656, 5657, 5658, 5659, 5660, 5661, 5662, 5663, 5664, 5665, 5666, 5667, 5668, 5669, 5670, 5671, 5672, 5673, 5674, 5675, 5676, 5677, 5678, 5679, 5680, 5681, 5682, 5683, 5684, 5685, 5686, 5687, 5688, 5689, 5690, 5691, 5692, 5693, 5694, 5695, 5696, 5697, 5698, 5699, 5700, 5701, 5702, 5703, 5704, 5705, 5706, 5707, 5708, 5709, 5710, 5711, 5712, 5713, 5714, 5715, 5716, 5717, 5718, 5719, 5720, 5721, 5722, 5723, 5724, 5725, 5726, 5727, 5728, 5729, 5730, 5731, 5732, 5733, 5734, 5735, 5736, 5737, 5738, 5739, 5740, 5741, 5742, 5743, 5744, 5745, 5746, 5747, 5748, 5749, 5750, 5751, 5752, 5753, 5754, 5755, 5756, 5757, 5758, 5759, 5760, 5761, 5762, 5763, 5764, 5765, 5766, 5767, 5768, 5769, 5770, 5771, 5772, 5773, 5774, 5775, 5776, 5777, 5778, 5779, 5780, 5781, 5782, 5783, 5784, 5785, 5786, 5787, 5788, 5789, 5790, 5791, 5792, 5793, 5794, 5795, 5796, 5797, 5798, 5799, 5800, 5801, 5802, 5803, 5804, 5805, 5806, 5807, 5808, 5809, 5810, 5811, 5812, 5813, 5814, 5815, 5816, 5817, 5818, 5819, 5820, 5821, 5822, 5823, 5824, 5825, 5826, 5827, 5828, 5829, 5830, 5831, 5832, 5833, 5834, 5835, 5836, 5837, 5838, 5839, 5840, 5841, 5842, 5843, 5844, 5845, 5846, 5847, 5848, 5849, 5850, 5851, 5852, 5853, 5854, 5855, 5856, 5857, 5858, 5859, 5860, 5861, 5862, 5863, 5864, 5865, 5866, 5867, 5868, 5869, 5870, 5871, 5872, 5873, 5874, 5875, 5876, 5877, 5878, 5879, 5880, 5881, 5882, 5883, 5884, 5885, 5886, 5887, 5888, 5889, 5890, 5891, 5892, 5893, 5894, 5895, 5896, 5897, 5898, 5899, 5900, 5901, 5902, 5903, 5904, 5905, 5906, 5907, 5908, 5909, 5910, 5911, 5912, 5913, 5914, 5915, 5916, 5917, 5918, 5919, 5920, 5921, 5922, 5923, 5924, 5925, 5926, 5927, 5928, 5929, 5930, 5931, 5932, 5933, 5934, 5935, 5936, 5937, 5938, 5939, 5940, 5941, 5942, 5943, 5944, 5945, 5946, 5947, 5948, 5949, 5950, 5951, 5952, 5953, 5954, 5955, 5956, 5957, 5958, 5959, 5960, 5961, 5962, 5963, 5964, 5965, 5966, 5967, 5968, 5969, 5970, 5971, 5972, 5973, 5974, 5975, 5976, 5977, 5978, 5979, 5980, 5981, 5982, 5983, 5984, 5985, 5986, 5987, 5988, 5989, 5990, 5991, 5992, 5993, 5994, 5995, 5996, 5997, 5998, 5999, 6000, 6001, 6002, 6003, 6004, 6005, 6006, 6007, 6008, 6009, 6010, 6011, 6012, 6013, 6014, 6015, 6016, 6017, 6018, 6019, 6020, 6021, 6022, 6023, 6024, 6025, 6026, 6027, 6028, 6029, 6030, 6031, 6032, 6033, 6034, 6035, 6036, 6037, 6038, 6039, 6040, 6041, 6042, 6043, 6044, 6045, 6046, 6047, 6048, 6049, 6050, 6051, 6052, 6053, 6054, 6055, 6056, 6057, 6058, 6059, 6060, 6061, 6062, 6063, 6064, 6065, 6066, 6067, 6068, 6069, 6070, 6071, 6072, 6073, 6074, 6075, 6076, 6077, 6078, 6079, 6080, 6081, 6082, 6083, 6084, 6085, 6086, 6087, 6088, 6089, 6090, 6091, 6092, 6093, 6094, 6095, 6096, 6097, 6098, 6099, 6100, 6101, 6102, 6103, 6104, 6105, 6106, 6107, 6108, 6109, 6110, 6111, 6112, 6113, 6114, 6115, 6116, 6117, 6118, 6119, 6120, 6121, 6122, 6123, 6124, 6125, 6126, 6127, 6128, 6129, 6130, 6131, 6132, 6133, 6134, 6135, 6136, 6137, 6138, 6139, 6140, 6141, 6142, 6143, 6144, 6145, 6146, 6147, 6148, 6149, 6150, 6151, 6152, 6153, 6154, 6155, 6156, 6157, 6158, 6159, 6160, 6161, 6162, 6163, 6164, 6165, 6166, 6167, 6168, 6169, 6170, 6171, 6172, 6173, 6174, 6175, 6176, 6177, 6178, 6179, 6180, 6181, 6182, 6183, 6184, 6185, 6186, 6187, 6188, 6189, 6190, 6191, 6192, 6193, 6194, 6195, 6196, 6197, 6198, 6199, 6200, 6201, 6202, 6203, 6204, 6205, 6206, 6207, 6208, 6209, 6210, 6211, 6212, 6213, 6214, 6215, 6216, 6217, 6218, 6219, 6220, 6221, 6222, 6223, 6224, 6225, 6226, 6227, 6228, 6229, 6230, 6231, 6232, 6233, 6234, 6235, 6236, 6237, 6238, 6239, 6240, 6241, 6242, 6243, 6244, 6245, 6246, 6247, 6248, 6249, 6250, 6251, 6252, 6253, 6254, 6255, 6256, 6257, 6258, 6259, 6260, 6261, 6262, 6263, 6264, 6265, 6266, 6267, 6268, 6269, 6270, 6271, 6272, 6273, 6274, 6275, 6276, 6277, 6278, 6279, 6280, 6281, 6282, 6283, 6284, 6285, 6286, 6287, 6288, 6289, 6290, 6291, 6292, 6293, 6294, 6295, 6296, 6297, 6298, 6299, 6300, 6301, 6302, 6303, 6304, 6305, 6306, 6307, 6308, 6309, 6310, 6311, 6312, 6313, 6314, 6315, 6316, 6317, 6318, 6319, 6320, 6321, 6322, 6323, 6324, 6325, 6326, 6327, 6328, 6329, 6330, 6331, 6332, 6333, 6334, 6335, 6336, 6337, 6338, 6339, 6340, 6341, 6342, 6343, 6344, 6345, 6346, 6347, 6348, 6349, 6350, 6351, 6352, 6353, 6354, 6355, 6356, 6357, 6358, 6359, 6360, 6361, 6362, 6363, 6364, 6365, 6366, 6367, 6368, 6369, 6370, 6371, 6372, 6373, 6374, 6375, 6376, 6377, 6378, 6379, 6380, 6381, 6382, 6383, 6384, 6385, 6386, 6387, 6388, 6389, 6390, 6391, 6392, 6393, 6394, 6395, 6396, 6397, 6398, 6399, 6400, 6401, 6402, 6403, 6404, 6405, 6406, 6407, 6408, 6409, 6410, 6411, 6412, 6413, 6414, 6415, 6416, 6417, 6418, 6419, 6420, 6421, 6422, 6423, 6424, 6425, 6426, 6427, 6428, 6429, 6430, 6431, 6432, 6433, 6434, 6435, 6436, 6437, 6438, 6439, 6440, 6441, 6442, 6443, 6444, 6445, 6446, 6447, 6448, 6449, 6450, 6451, 6452, 6453, 6454, 6455, 6456, 6457, 6458, 6459, 6460, 6461, 6462, 6463, 6464, 6465, 6466, 6467, 6468, 6469, 6470, 6471, 6472, 6473, 6474, 6475, 6476, 6477, 6478, 6479, 6480, 6481, 6482, 6483, 6484, 6485, 6486, 6487, 6488, 6489, 6490, 6491, 6492, 6493, 6494, 6495, 6496, 6497, 6498, 6499, 6500, 6501, 6502, 6503, 6504, 6505, 6506, 6507, 6508, 6509, 6510, 6511, 6512, 6513, 6514, 6515, 6516, 6517, 6518, 6519, 6520, 6521, 6522, 6523, 6524, 6525, 6526, 6527, 6528, 6529, 6530, 6531, 6532, 6533, 6534, 6535, 6536, 6537, 6538, 6539, 6540, 6541, 6542, 6543, 6544, 6545, 6546, 6547, 6548, 6549, 6550, 6551, 6552, 6553, 6554, 6555, 6556, 6557, 6558, 6559, 6560, 6561, 6562, 6563, 6564, 6565, 6566, 6567, 6568, 6569, 6570, 6571, 6572, 6573, 6574, 6575, 6576, 6577, 6578, 6579, 6580, 6581, 6582, 6583, 6584, 6585, 6586, 6587, 6588, 6589, 6590, 6591, 6592, 6593, 6594, 6595, 6596, 6597, 6598, 6599, 6600, 6601, 6602, 6603, 6604, 6605, 6606, 6607, 6608, 6609, 6610, 6611, 6612, 6613, 6614, 6615, 6616, 6617, 6618, 6619, 6620, 6621, 6622, 6623, 6624, 6625, 6626, 6627, 6628, 6629, 6630, 6631, 6632, 6633, 6634, 6635, 6636, 6637, 6638, 6639, 6640, 6641, 6642, 6643, 6644, 6645, 6646, 6647, 6648, 6649, 6650, 6651, 6652, 6653, 6654, 6655, 6656, 6657, 6658, 6659, 6660, 6661, 6662, 6663, 6664, 6665, 6666, 6667, 6668, 6669, 6670, 6671, 6672, 6673, 6674, 6675, 6676, 6677, 6678, 6679, 6680, 6681, 6682, 6683, 6684, 6685, 6686, 6687, 6688, 6689, 6690, 6691, 6692, 6693, 6694, 6695, 6696, 6697, 6698, 6699, 6700, 6701, 6702, 6703, 6704, 6705, 6706, 6707, 6708, 6709, 6710, 6711, 6712, 6713, 6714, 6715, 6716, 6717, 6718, 6719, 6720, 6721, 6722, 6723, 6724, 6725, 6726, 6727, 6728, 6729, 6730, 6731, 6732, 6733, 6734, 6735, 6736, 6737, 6738, 6739, 6740, 6741, 6742, 6743, 6744, 6745, 6746, 6747, 6748, 6749, 6750, 6751, 6752, 6753, 6754, 6755, 6756, 6757, 6758, 6759, 6760, 6761, 6762, 6763, 6764, 6765, 6766, 6767, 6768, 6769, 6770, 6771, 6772, 6773, 6774, 6775, 6776, 6777, 6778, 6779, 6780, 6781, 6782, 6783, 6784, 6785, 6786, 6787, 6788, 6789, 6790, 6791, 6792, 6793, 6794, 6795, 6796, 6797, 6798, 6799, 6800, 6801, 6802, 6803, 6804, 6805, 6806, 6807, 6808, 6809, 6810, 6811, 6812, 6813, 6814, 6815, 6816, 6817, 6818, 6819, 6820, 6821, 6822, 6823, 6824, 6825, 6826, 6827, 6828, 6829, 6830, 6831, 6832, 6833, 6834, 6835, 6836, 6837, 6838, 6839, 6840, 6841, 6842, 6843, 6844, 6845, 6846, 6847, 6848, 6849, 6850, 6851, 6852, 6853, 6854, 6855, 6856, 6857, 6858, 6859, 6860, 6861, 6862, 6863, 6864, 6865, 6866, 6867, 6868, 6869, 6870, 6871, 6872, 6873, 6874, 6875, 6876, 6877, 6878, 6879, 6880, 6881, 6882, 6883, 6884, 6885, 6886, 6887, 6888, 6889, 6890, 6891, 6892, 6893, 6894, 6895, 6896, 6897, 6898, 6899, 6900, 6901, 6902, 6903, 6904, 6905, 6906, 6907, 6908, 6909, 6910, 6911, 6912, 6913, 6914, 6915, 6916, 6917, 6918, 6919, 6920, 6921, 6922, 6923, 6924, 6925, 6926, 6927, 6928, 6929, 6930, 6931, 6932, 6933, 6934, 6935, 6936, 6937, 6938, 6939, 6940, 6941, 6942, 6943, 6944, 6945, 6946, 6947, 6948, 6949, 6950, 6951, 6952, 6953, 6954, 6955, 6956, 6957, 6958, 6959, 6960, 6961, 6962, 6963, 6964, 6965, 6966, 6967, 6968, 6969, 6970, 6971, 6972, 6973, 6974, 6975, 6976, 6977, 6978, 6979, 6980, 6981, 6982, 6983, 6984, 6985, 6986, 6987, 6988, 6989, 6990, 6991, 6992, 6993, 6994, 6995, 6996, 6997, 6998, 6999, 7000, 7001, 7002, 7003, 7004, 7005, 7006, 7007, 7008, 7009, 7010, 7011, 7012, 7013, 7014, 7015, 7016, 7017, 7018, 7019, 7020, 7021, 7022, 7023, 7024, 7025, 7026, 7027, 7028, 7029, 7030, 7031, 7032, 7033, 7034, 7035, 7036, 7037, 7038, 7039, 7040, 7041, 7042, 7043, 7044, 7045, 7046, 7047, 7048, 7049, 7050, 7051, 7052, 7053, 7054, 7055, 7056, 7057, 7058, 7059, 7060, 7061, 7062, 7063, 7064, 7065, 7066, 7067, 7068, 7069, 7070, 7071, 7072, 7073, 7074, 7075, 7076, 7077, 7078, 7079, 7080, 7081, 7082, 7083, 7084, 7085, 7086, 7087, 7088, 7089, 7090, 7091, 7092, 7093, 7094, 7095, 7096, 7097, 7098, 7099, 7100, 7101, 7102, 7103, 7104, 7105, 7106, 7107, 7108, 7109, 7110, 7111, 7112, 7113, 7114, 7115, 7116, 7117, 7118, 7119, 7120, 7121, 7122, 7123, 7124, 7125, 7126, 7127, 7128, 7129, 7130, 7131, 7132, 7133, 7134, 7135, 7136, 7137, 7138, 7139, 7140, 7141, 7142, 7143, 7144, 7145, 7146, 7147, 7148, 7149, 7150, 7151, 7152, 7153, 7154, 7155, 7156, 7157, 7158, 7159, 7160, 7161, 7162, 7163, 7164, 7165, 7166, 7167, 7168, 7169, 7170, 7171, 7172, 7173, 7174, 7175, 7176, 7177, 7178, 7179, 7180, 7181, 7182, 7183, 7184, 7185, 7186, 7187, 7188, 7189, 7190, 7191, 7192, 7193, 7194, 7195, 7196, 7197, 7198, 7199, 7200, 7201, 7202, 7203, 7204, 7205, 7206, 7207, 7208, 7209, 7210, 7211, 7212, 7213, 7214, 7215, 7216, 7217, 7218, 7219, 7220, 7221, 7222, 7223, 7224, 7225, 7226, 7227, 7228, 7229, 7230, 7231, 7232, 7233, 7234, 7235, 7236, 7237, 7238, 7239, 7240, 7241, 7242, 7243, 7244, 7245, 7246, 7247, 7248, 7249, 7250, 7251, 7252, 7253, 7254, 7255, 7256, 7257, 7258, 7259, 7260, 7261, 7262, 7263, 7264, 7265, 7266, 7267, 7268, 7269, 7270, 7271, 7272, 7273, 7274, 7275, 7276, 7277, 7278, 7279, 7280, 7281, 7282, 7283, 7284, 7285, 7286, 7287, 7288, 7289, 7290, 7291, 7292, 7293, 7294, 7295, 7296, 7297, 7298, 7299, 7300, 7301, 7302, 7303, 7304, 7305, 7306, 7307, 7308, 7309, 7310, 7311, 7312, 7313, 7314, 7315, 7316, 7317, 7318, 7319, 7320, 7321, 7322, 7323, 7324, 7325, 7326, 7327, 7328, 7329, 7330, 7331, 7332, 7333, 7334, 7335, 7336, 7337, 7338, 7339, 7340, 7341, 7342, 7343, 7344, 7345, 7346, 7347, 7348, 7349, 7350, 7351, 7352, 7353, 7354, 7355, 7356, 7357, 7358, 7359, 7360, 7361, 7362, 7363, 7364, 7365, 7366, 7367, 7368, 7369, 7370, 7371, 7372, 7373, 7374, 7375, 7376, 7377, 7378, 7379, 7380, 7381, 7382, 7383, 7384, 7385, 7386, 7387, 7388, 7389, 7390, 7391, 7392, 7393, 7394, 7395, 7396, 7397, 7398, 7399, 7400, 7401, 7402, 7403, 7404, 7405, 7406, 7407, 7408, 7409, 7410, 7411, 7412, 7413, 7414, 7415, 7416, 7417, 7418, 7419, 7420, 7421, 7422, 7423, 7424, 7425, 7426, 7427, 7428, 7429, 7430, 7431, 7432, 7433, 7434, 7435, 7436, 7437, 7438, 7439, 7440, 7441, 7442, 7443, 7444, 7445, 7446, 7447, 7448, 7449, 7450, 7451, 7452, 7453, 7454, 7455, 7456, 7457, 7458, 7459, 7460, 7461, 7462, 7463, 7464, 7465, 7466, 7467, 7468, 7469, 7470, 7471, 7472, 7473, 7474, 7475, 7476, 7477, 7478, 7479, 7480, 7481, 7482, 7483, 7484, 7485, 7486, 7487, 7488, 7489, 7490, 7491, 7492, 7493, 7494, 7495, 7496, 7497, 7498, 7499, 7500, 7501, 7502, 7503, 7504, 7505, 7506, 7507, 7508, 7509, 7510, 7511, 7512, 7513, 7514, 7515, 7516, 7517, 7518, 7519, 7520, 7521, 7522, 7523, 7524, 7525, 7526, 7527, 7528, 7529, 7530, 7531, 7532, 7533, 7534, 7535, 7536, 7537, 7538, 7539, 7540, 7541, 7542, 7543, 7544, 7545, 7546, 7547, 7548, 7549, 7550, 7551, 7552, 7553, 7554, 7555, 7556, 7557, 7558, 7559, 7560, 7561, 7562, 7563, 7564, 7565, 7566, 7567, 7568, 7569, 7570, 7571, 7572, 7573, 7574, 7575, 7576, 7577, 7578, 7579, 7580, 7581, 7582, 7583, 7584, 7585, 7586, 7587, 7588, 7589, 7590, 7591, 7592, 7593, 7594, 7595, 7596, 7597, 7598, 7599, 7600, 7601, 7602, 7603, 7604, 7605, 7606, 7607, 7608, 7609, 7610, 7611, 7612, 7613, 7614, 7615, 7616, 7617, 7618, 7619, 7620, 7621, 7622, 7623, 7624, 7625, 7626, 7627, 7628, 7629, 7630, 7631, 7632, 7633, 7634, 7635, 7636, 7637, 7638, 7639, 7640, 7641, 7642, 7643, 7644, 7645, 7646, 7647, 7648, 7649, 7650, 7651, 7652, 7653, 7654, 7655, 7656, 7657, 7658, 7659, 7660, 7661, 7662, 7663, 7664, 7665, 7666, 7667, 7668, 7669, 7670, 7671, 7672, 7673, 7674, 7675, 7676, 7677, 7678, 7679, 7680, 7681, 7682, 7683, 7684, 7685, 7686, 7687, 7688, 7689, 7690, 7691, 7692, 7693, 7694, 7695, 7696, 7697, 7698, 7699, 7700, 7701, 7702, 7703, 7704, 7705, 7706, 7707, 7708, 7709, 7710, 7711, 7712, 7713, 7714, 7715, 7716, 7717, 7718, 7719, 7720, 7721, 7722, 7723, 7724, 7725, 7726, 7727, 7728, 7729, 7730, 7731, 7732, 7733, 7734, 7735, 7736, 7737, 7738, 7739, 7740, 7741, 7742, 7743, 7744, 7745, 7746, 7747, 7748, 7749, 7750, 7751, 7752, 7753, 7754, 7755, 7756, 7757, 7758, 7759, 7760, 7761, 7762, 7763, 7764, 7765, 7766, 7767, 7768, 7769, 7770, 7771, 7772, 7773, 7774, 7775, 7776, 7777, 7778, 7779, 7780, 7781, 7782, 7783, 7784, 7785, 7786, 7787, 7788, 7789, 7790, 7791, 7792, 7793, 7794, 7795, 7796, 7797, 7798, 7799, 7800, 7801, 7802, 7803, 7804, 7805, 7806, 7807, 7808, 7809, 7810, 7811, 7812, 7813, 7814, 7815, 7816, 7817, 7818, 7819, 7820, 7821, 7822, 7823, 7824, 7825, 7826, 7827, 7828, 7829, 7830, 7831, 7832, 7833, 7834, 7835, 7836, 7837, 7838, 7839, 7840, 7841, 7842, 7843, 7844, 7845, 7846, 7847, 7848, 7849, 7850, 7851, 7852, 7853, 7854, 7855, 7856, 7857, 7858, 7859, 7860, 7861, 7862, 7863, 7864, 7865, 7866, 7867, 7868, 7869, 7870, 7871, 7872, 7873, 7874, 7875, 7876, 7877, 7878, 7879, 7880, 7881, 7882, 7883, 7884, 7885, 7886, 7887, 7888, 7889, 7890, 7891, 7892, 7893, 7894, 7895, 7896, 7897, 7898, 7899, 7900, 7901, 7902, 7903, 7904, 7905, 7906, 7907, 7908, 7909, 7910, 7911, 7912, 7913, 7914, 7915, 7916, 7917, 7918, 7919, 7920, 7921, 7922, 7923, 7924, 7925, 7926, 7927, 7928, 7929, 7930, 7931, 7932, 7933, 7934, 7935, 7936, 7937, 7938, 7939, 7940, 7941, 7942, 7943, 7944, 7945, 7946, 7947, 7948, 7949, 7950, 7951, 7952, 7953, 7954, 7955, 7956, 7957, 7958, 7959, 7960, 7961, 7962, 7963, 7964, 7965, 7966, 7967, 7968, 7969, 7970, 7971, 7972, 7973, 7974, 7975, 7976, 7977, 7978, 7979, 7980, 7981, 7982, 7983, 7984, 7985, 7986, 7987, 7988, 7989, 7990, 7991, 7992, 7993, 7994, 7995, 7996, 7997, 7998, 7999, 8000, 8001, 8002, 8003, 8004, 8005, 8006, 8007, 8008, 8009, 8010, 8011, 8012, 8013, 8014, 8015, 8016, 8017, 8018, 8019, 8020, 8021, 8022, 8023, 8024, 8025, 8026, 8027, 8028, 8029, 8030, 8031, 8032, 8033, 8034, 8035, 8036, 8037, 8038, 8039, 8040, 8041, 8042, 8043, 8044, 8045, 8046, 8047, 8048, 8049, 8050, 8051, 8052, 8053, 8054, 8055, 8056, 8057, 8058, 8059, 8060, 8061, 8062, 8063, 8064, 8065, 8066, 8067, 8068, 8069, 8070, 8071, 8072, 8073, 8074, 8075, 8076, 8077, 8078, 8079, 8080, 8081, 8082, 8083, 8084, 8085, 8086, 8087, 8088, 8089, 8090, 8091, 8092, 8093, 8094, 8095, 8096, 8097, 8098, 8099, 8100, 8101, 8102, 8103, 8104, 8105, 8106, 8107, 8108, 8109, 8110, 8111, 8112, 8113, 8114, 8115, 8116, 8117, 8118, 8119, 8120, 8121, 8122, 8123, 8124, 8125, 8126, 8127, 8128, 8129, 8130, 8131, 8132, 8133, 8134, 8135, 8136, 8137, 8138, 8139, 8140, 8141, 8142, 8143, 8144, 8145, 8146, 8147, 8148, 8149, 8150, 8151, 8152, 8153, 8154, 8155, 8156, 8157, 8158, 8159, 8160, 8161, 8162, 8163, 8164, 8165, 8166, 8167, 8168, 8169, 8170, 8171, 8172, 8173, 8174, 8175, 8176, 8177, 8178, 8179, 8180, 8181, 8182, 8183, 8184, 8185, 8186, 8187, 8188, 8189, 8190, 8191, 8192, 8193, 8194, 8195, 8196, 8197, 8198, 8199, 8200, 8201, 8202, 8203, 8204, 8205, 8206, 8207, 8208, 8209, 8210, 8211, 8212, 8213, 8214, 8215, 8216, 8217, 8218, 8219, 8220, 8221, 8222, 8223, 8224, 8225, 8226, 8227, 8228, 8229, 8230, 8231, 8232, 8233, 8234, 8235, 8236, 8237, 8238, 8239, 8240, 8241, 8242, 8243, 8244, 8245, 8246, 8247, 8248, 8249, 8250, 8251, 8252, 8253, 8254, 8255, 8256, 8257, 8258, 8259, 8260, 8261, 8262, 8263, 8264, 8265, 8266, 8267, 8268, 8269, 8270, 8271, 8272, 8273, 8274, 8275, 8276, 8277, 8278, 8279, 8280, 8281, 8282, 8283, 8284, 8285, 8286, 8287, 8288, 8289, 8290, 8291, 8292, 8293, 8294, 8295, 8296, 8297, 8298, 8299, 8300, 8301, 8302, 8303, 8304, 8305, 8306, 8307, 8308, 8309, 8310, 8311, 8312, 8313, 8314, 8315, 8316, 8317, 8318, 8319, 8320, 8321, 8322, 8323, 8324, 8325, 8326, 8327, 8328, 8329, 8330, 8331, 8332, 8333, 8334, 8335, 8336, 8337, 8338, 8339, 8340, 8341, 8342, 8343, 8344, 8345, 8346, 8347, 8348, 8349, 8350, 8351, 8352, 8353, 8354, 8355, 8356, 8357, 8358, 8359, 8360, 8361, 8362, 8363, 8364, 8365, 8366, 8367, 8368, 8369, 8370, 8371, 8372, 8373, 8374, 8375, 8376, 8377, 8378, 8379, 8380, 8381, 8382, 8383, 8384, 8385, 8386, 8387, 8388, 8389, 8390, 8391, 8392, 8393, 8394, 8395, 8396, 8397, 8398, 8399, 8400, 8401, 8402, 8403, 8404, 8405, 8406, 8407, 8408, 8409, 8410, 8411, 8412, 8413, 8414, 8415, 8416, 8417, 8418, 8419, 8420, 8421, 8422, 8423, 8424, 8425, 8426, 8427, 8428, 8429, 8430, 8431, 8432, 8433, 8434, 8435, 8436, 8437, 8438, 8439, 8440, 8441, 8442, 8443, 8444, 8445, 8446, 8447, 8448, 8449, 8450, 8451, 8452, 8453, 8454, 8455, 8456, 8457, 8458, 8459, 8460, 8461, 8462, 8463, 8464, 8465, 8466, 8467, 8468, 8469, 8470, 8471, 8472, 8473, 8474, 8475, 8476, 8477, 8478, 8479, 8480, 8481, 8482, 8483, 8484, 8485, 8486, 8487, 8488, 8489, 8490, 8491, 8492, 8493, 8494, 8495, 8496, 8497, 8498, 8499, 8500, 8501, 8502, 8503, 8504, 8505, 8506, 8507, 8508, 8509, 8510, 8511, 8512, 8513, 8514, 8515, 8516, 8517, 8518, 8519, 8520, 8521, 8522, 8523, 8524, 8525, 8526, 8527, 8528, 8529, 8530, 8531, 8532, 8533, 8534, 8535, 8536, 8537, 8538, 8539, 8540, 8541, 8542, 8543, 8544, 8545, 8546, 8547, 8548, 8549, 8550, 8551, 8552, 8553, 8554, 8555, 8556, 8557, 8558, 8559, 8560, 8561, 8562, 8563, 8564, 8565, 8566, 8567, 8568, 8569, 8570, 8571, 8572, 8573, 8574, 8575, 8576, 8577, 8578, 8579, 8580, 8581, 8582, 8583, 8584, 8585, 8586, 8587, 8588, 8589, 8590, 8591, 8592, 8593, 8594, 8595, 8596, 8597, 8598, 8599, 8600, 8601, 8602, 8603, 8604, 8605, 8606, 8607, 8608, 8609, 8610, 8611, 8612, 8613, 8614, 8615, 8616, 8617, 8618, 8619, 8620, 8621, 8622, 8623, 8624, 8625, 8626, 8627, 8628, 8629, 8630, 8631, 8632, 8633, 8634, 8635, 8636, 8637, 8638, 8639, 8640, 8641, 8642, 8643, 8644, 8645, 8646, 8647, 8648, 8649, 8650, 8651, 8652, 8653, 8654, 8655, 8656, 8657, 8658, 8659, 8660, 8661, 8662, 8663, 8664, 8665, 8666, 8667, 8668, 8669, 8670, 8671, 8672, 8673, 8674, 8675, 8676, 8677, 8678, 8679, 8680, 8681, 8682, 8683, 8684, 8685, 8686, 8687, 8688, 8689, 8690, 8691, 8692, 8693, 8694, 8695, 8696, 8697, 8698, 8699, 8700, 8701, 8702, 8703, 8704, 8705, 8706, 8707, 8708, 8709, 8710, 8711, 8712, 8713, 8714, 8715, 8716, 8717, 8718, 8719, 8720, 8721, 8722, 8723, 8724, 8725, 8726, 8727, 8728, 8729, 8730, 8731, 8732, 8733, 8734, 8735, 8736, 8737, 8738, 8739, 8740, 8741, 8742, 8743, 8744, 8745, 8746, 8747, 8748, 8749, 8750, 8751, 8752, 8753, 8754, 8755, 8756, 8757, 8758, 8759, 8760, 8761, 8762, 8763, 8764, 8765, 8766, 8767, 8768, 8769, 8770, 8771, 8772, 8773, 8774, 8775, 8776, 8777, 8778, 8779, 8780, 8781, 8782, 8783, 8784, 8785, 8786, 8787, 8788, 8789, 8790, 8791, 8792, 8793, 8794, 8795, 8796, 8797, 8798, 8799, 8800, 8801, 8802, 8803, 8804, 8805, 8806, 8807, 8808, 8809, 8810, 8811, 8812, 8813, 8814, 8815, 8816, 8817, 8818, 8819, 8820, 8821, 8822, 8823, 8824, 8825, 8826, 8827, 8828, 8829, 8830, 8831, 8832, 8833, 8834, 8835, 8836, 8837, 8838, 8839, 8840, 8841, 8842, 8843, 8844, 8845, 8846, 8847, 8848, 8849, 8850, 8851, 8852, 8853, 8854, 8855, 8856, 8857, 8858, 8859, 8860, 8861, 8862, 8863, 8864, 8865, 8866, 8867, 8868, 8869, 8870, 8871, 8872, 8873, 8874, 8875, 8876, 8877, 8878, 8879, 8880, 8881, 8882, 8883, 8884, 8885, 8886, 8887, 8888, 8889, 8890, 8891, 8892, 8893, 8894, 8895, 8896, 8897, 8898, 8899, 8900, 8901, 8902, 8903, 8904, 8905, 8906, 8907, 8908, 8909, 8910, 8911, 8912, 8913, 8914, 8915, 8916, 8917, 8918, 8919, 8920, 8921, 8922, 8923, 8924, 8925, 8926, 8927, 8928, 8929, 8930, 8931, 8932, 8933, 8934, 8935, 8936, 8937, 8938, 8939, 8940, 8941, 8942, 8943, 8944, 8945, 8946, 8947, 8948, 8949, 8950, 8951, 8952, 8953, 8954, 8955, 8956, 8957, 8958, 8959, 8960, 8961, 8962, 8963, 8964, 8965, 8966, 8967, 8968, 8969, 8970, 8971, 8972, 8973, 8974, 8975, 8976, 8977, 8978, 8979, 8980, 8981, 8982, 8983, 8984, 8985, 8986, 8987, 8988, 8989, 8990, 8991, 8992, 8993, 8994, 8995, 8996, 8997, 8998, 8999, 9000, 9001, 9002, 9003, 9004, 9005, 9006, 9007, 9008, 9009, 9010, 9011, 9012, 9013, 9014, 9015, 9016, 9017, 9018, 9019, 9020, 9021, 9022, 9023, 9024, 9025, 9026, 9027, 9028, 9029, 9030, 9031, 9032, 9033, 9034, 9035, 9036, 9037, 9038, 9039, 9040, 9041, 9042, 9043, 9044, 9045, 9046, 9047, 9048, 9049, 9050, 9051, 9052, 9053, 9054, 9055, 9056, 9057, 9058, 9059, 9060, 9061, 9062, 9063, 9064, 9065, 9066, 9067, 9068, 9069, 9070, 9071, 9072, 9073, 9074, 9075, 9076, 9077, 9078, 9079, 9080, 9081, 9082, 9083, 9084, 9085, 9086, 9087, 9088, 9089, 9090, 9091, 9092, 9093, 9094, 9095, 9096, 9097, 9098, 9099, 9100, 9101, 9102, 9103, 9104, 9105, 9106, 9107, 9108, 9109, 9110, 9111, 9112, 9113, 9114, 9115, 9116, 9117, 9118, 9119, 9120, 9121, 9122, 9123, 9124, 9125, 9126, 9127, 9128, 9129, 9130, 9131, 9132, 9133, 9134, 9135, 9136, 9137, 9138, 9139, 9140, 9141, 9142, 9143, 9144, 9145, 9146, 9147, 9148, 9149, 9150, 9151, 9152, 9153, 9154, 9155, 9156, 9157, 9158, 9159, 9160, 9161, 9162, 9163, 9164, 9165, 9166, 9167, 9168, 9169, 9170, 9171, 9172, 9173, 9174, 9175, 9176, 9177, 9178, 9179, 9180, 9181, 9182, 9183, 9184, 9185, 9186, 9187, 9188, 9189, 9190, 9191, 9192, 9193, 9194, 9195, 9196, 9197, 9198, 9199, 9200, 9201, 9202, 9203, 9204, 9205, 9206, 9207, 9208, 9209, 9210, 9211, 9212, 9213, 9214, 9215, 9216, 9217, 9218, 9219, 9220, 9221, 9222, 9223, 9224, 9225, 9226, 9227, 9228, 9229, 9230, 9231, 9232, 9233, 9234, 9235, 9236, 9237, 9238, 9239, 9240, 9241, 9242, 9243, 9244, 9245, 9246, 9247, 9248, 9249, 9250, 9251, 9252, 9253, 9254, 9255, 9256, 9257, 9258, 9259, 9260, 9261, 9262, 9263, 9264, 9265, 9266, 9267, 9268, 9269, 9270, 9271, 9272, 9273, 9274, 9275, 9276, 9277, 9278, 9279, 9280, 9281, 9282, 9283, 9284, 9285, 9286, 9287, 9288, 9289, 9290, 9291, 9292, 9293, 9294, 9295, 9296, 9297, 9298, 9299, 9300, 9301, 9302, 9303, 9304, 9305, 9306, 9307, 9308, 9309, 9310, 9311, 9312, 9313, 9314, 9315, 9316, 9317, 9318, 9319, 9320, 9321, 9322, 9323, 9324, 9325, 9326, 9327, 9328, 9329, 9330, 9331, 9332, 9333, 9334, 9335, 9336, 9337, 9338, 9339, 9340, 9341, 9342, 9343, 9344, 9345, 9346, 9347, 9348, 9349, 9350, 9351, 9352, 9353, 9354, 9355, 9356, 9357, 9358, 9359, 9360, 9361, 9362, 9363, 9364, 9365, 9366, 9367, 9368, 9369, 9370, 9371, 9372, 9373, 9374, 9375, 9376, 9377, 9378, 9379, 9380, 9381, 9382, 9383, 9384, 9385, 9386, 9387, 9388, 9389, 9390, 9391, 9392, 9393, 9394, 9395, 9396, 9397, 9398, 9399, 9400, 9401, 9402, 9403, 9404, 9405, 9406, 9407, 9408, 9409, 9410, 9411, 9412, 9413, 9414, 9415, 9416, 9417, 9418, 9419, 9420, 9421, 9422, 9423, 9424, 9425, 9426, 9427, 9428, 9429, 9430, 9431, 9432, 9433, 9434, 9435, 9436, 9437, 9438, 9439, 9440, 9441, 9442, 9443, 9444, 9445, 9446, 9447, 9448, 9449, 9450, 9451, 9452, 9453, 9454, 9455, 9456, 9457, 9458, 9459, 9460, 9461, 9462, 9463, 9464, 9465, 9466, 9467, 9468, 9469, 9470, 9471, 9472, 9473, 9474, 9475, 9476, 9477, 9478, 9479, 9480, 9481, 9482, 9483, 9484, 9485, 9486, 9487, 9488, 9489, 9490, 9491, 9492, 9493, 9494, 9495, 9496, 9497, 9498, 9499, 9500, 9501, 9502, 9503, 9504, 9505, 9506, 9507, 9508, 9509, 9510, 9511, 9512, 9513, 9514, 9515, 9516, 9517, 9518, 9519, 9520, 9521, 9522, 9523, 9524, 9525, 9526, 9527, 9528, 9529, 9530, 9531, 9532, 9533, 9534, 9535, 9536, 9537, 9538, 9539, 9540, 9541, 9542, 9543, 9544, 9545, 9546, 9547, 9548, 9549, 9550, 9551, 9552, 9553, 9554, 9555, 9556, 9557, 9558, 9559, 9560, 9561, 9562, 9563, 9564, 9565, 9566, 9567, 9568, 9569, 9570, 9571, 9572, 9573, 9574, 9575, 9576, 9577, 9578, 9579, 9580, 9581, 9582, 9583, 9584, 9585, 9586, 9587, 9588, 9589, 9590, 9591, 9592, 9593, 9594, 9595, 9596, 9597, 9598, 9599, 9600, 9601, 9602, 9603, 9604, 9605, 9606, 9607, 9608, 9609, 9610, 9611, 9612, 9613, 9614, 9615, 9616, 9617, 9618, 9619, 9620, 9621, 9622, 9623, 9624, 9625, 9626, 9627, 9628, 9629, 9630, 9631, 9632, 9633, 9634, 9635, 9636, 9637, 9638, 9639, 9640, 9641, 9642, 9643, 9644, 9645, 9646, 9647, 9648, 9649, 9650, 9651, 9652, 9653, 9654, 9655, 9656, 9657, 9658, 9659, 9660, 9661, 9662, 9663, 9664, 9665, 9666, 9667, 9668, 9669, 9670, 9671, 9672, 9673, 9674, 9675, 9676, 9677, 9678, 9679, 9680, 9681, 9682, 9683, 9684, 9685, 9686, 9687, 9688, 9689, 9690, 9691, 9692, 9693, 9694, 9695, 9696, 9697, 9698, 9699, 9700, 9701, 9702, 9703, 9704, 9705, 9706, 9707, 9708, 9709, 9710, 9711, 9712, 9713, 9714, 9715, 9716, 9717, 9718, 9719, 9720, 9721, 9722, 9723, 9724, 9725, 9726, 9727, 9728, 9729, 9730, 9731, 9732, 9733, 9734, 9735, 9736, 9737, 9738, 9739, 9740, 9741, 9742, 9743, 9744, 9745, 9746, 9747, 9748, 9749, 9750, 9751, 9752, 9753, 9754, 9755, 9756, 9757, 9758, 9759, 9760, 9761, 9762, 9763, 9764, 9765, 9766, 9767, 9768, 9769, 9770, 9771, 9772, 9773, 9774, 9775, 9776, 9777, 9778, 9779, 9780, 9781, 9782, 9783, 9784, 9785, 9786, 9787, 9788, 9789, 9790, 9791, 9792, 9793, 9794, 9795, 9796, 9797, 9798, 9799, 9800, 9801, 9802, 9803, 9804, 9805, 9806, 9807, 9808, 9809, 9810, 9811, 9812, 9813, 9814, 9815, 9816, 9817, 9818, 9819, 9820, 9821, 9822, 9823, 9824, 9825, 9826, 9827, 9828, 9829, 9830, 9831, 9832, 9833, 9834, 9835, 9836, 9837, 9838, 9839, 9840, 9841, 9842, 9843, 9844, 9845, 9846, 9847, 9848, 9849, 9850, 9851, 9852, 9853, 9854, 9855, 9856, 9857, 9858, 9859, 9860, 9861, 9862, 9863, 9864, 9865, 9866, 9867, 9868, 9869, 9870, 9871, 9872, 9873, 9874, 9875, 9876, 9877, 9878, 9879, 9880, 9881, 9882, 9883, 9884, 9885, 9886, 9887, 9888, 9889, 9890, 9891, 9892, 9893, 9894, 9895, 9896, 9897, 9898, 9899, 9900, 9901, 9902, 9903, 9904, 9905, 9906, 9907, 9908, 9909, 9910, 9911, 9912, 9913, 9914, 9915, 9916, 9917, 9918, 9919, 9920, 9921, 9922, 9923, 9924, 9925, 9926, 9927, 9928, 9929, 9930, 9931, 9932, 9933, 9934, 9935, 9936, 9937, 9938, 9939, 9940, 9941, 9942, 9943, 9944, 9945, 9946, 9947, 9948, 9949, 9950, 9951, 9952, 9953, 9954, 9955, 9956, 9957, 9958, 9959, 9960, 9961, 9962, 9963, 9964, 9965, 9966, 9967, 9968, 9969, 9970, 9971, 9972, 9973, 9974, 9975, 9976, 9977, 9978, 9979, 9980, 9981, 9982, 9983, 9984, 9985, 9986, 9987, 9988, 9989, 9990, 9991, 9992, 9993, 9994, 9995, 9996, 9997, 9998, 9999, 10000, 10001, 10002, 10003, 10004, 10005, 10006, 10007, 10008, 10009, 10010, 10011, 10012, 10013, 10014, 10015, 10016, 10017, 10018, 10019, 10020, 10021, 10022, 10023, 10024, 10025, 10026, 10027, 10028, 10029, 10030, 10031, 10032, 10033, 10034, 10035, 10036, 10037, 10038, 10039, 10040, 10041, 10042, 10043, 10044, 10045, 10046, 10047, 10048, 10049, 10050, 10051, 10052, 10053, 10054, 10055, 10056, 10057, 10058, 10059, 10060, 10061, 10062, 10063, 10064, 10065, 10066, 10067, 10068, 10069, 10070, 10071, 10072, 10073, 10074, 10075, 10076, 10077, 10078, 10079, 10080, 10081, 10082, 10083, 10084, 10085, 10086, 10087, 10088, 10089, 10090, 10091, 10092, 10093, 10094, 10095, 10096, 10097, 10098, 10099, 10100, 10101, 10102, 10103, 10104, 10105, 10106, 10107, 10108, 10109, 10110, 10111, 10112, 10113, 10114, 10115, 10116, 10117, 10118, 10119, 10120, 10121, 10122, 10123, 10124, 10125, 10126, 10127, 10128, 10129, 10130, 10131, 10132, 10133, 10134, 10135, 10136, 10137, 10138, 10139, 10140, 10141, 10142, 10143, 10144, 10145, 10146, 10147, 10148, 10149, 10150, 10151, 10152, 10153, 10154, 10155, 10156, 10157, 10158, 10159, 10160, 10161, 10162, 10163, 10164, 10165, 10166, 10167, 10168, 10169, 10170, 10171, 10172, 10173, 10174, 10175, 10176, 10177, 10178, 10179, 10180, 10181, 10182, 10183, 10184, 10185, 10186, 10187, 10188, 10189, 10190, 10191, 10192, 10193, 10194, 10195, 10196, 10197, 10198, 10199, 10200, 10201, 10202, 10203, 10204, 10205, 10206, 10207, 10208, 10209, 10210, 10211, 10212, 10213, 10214, 10215, 10216, 10217, 10218, 10219, 10220, 10221, 10222, 10223, 10224, 10225, 10226, 10227, 10228, 10229, 10230, 10231, 10232, 10233, 10234, 10235, 10236, 10237, 10238, 10239, 10240, 10241, 10242, 10243, 10244, 10245, 10246, 10247, 10248, 10249, 10250, 10251, 10252, 10253, 10254, 10255, 10256, 10257, 10258, 10259, 10260, 10261, 10262, 10263, 10264, 10265, 10266, 10267, 10268, 10269, 10270, 10271, 10272, 10273, 10274, 10275, 10276, 10277, 10278, 10279, 10280, 10281, 10282, 10283, 10284, 10285, 10286, 10287, 10288, 10289, 10290, 10291, 10292, 10293, 10294, 10295, 10296, 10297, 10298, 10299, 10300, 10301, 10302, 10303, 10304, 10305, 10306, 10307, 10308, 10309, 10310, 10311, 10312, 10313, 10314, 10315, 10316, 10317, 10318, 10319, 10320, 10321, 10322, 10323, 10324, 10325, 10326, 10327, 10328, 10329, 10330, 10331, 10332, 10333, 10334, 10335, 10336, 10337, 10338, 10339, 10340, 10341, 10342, 10343, 10344, 10345, 10346, 10347, 10348, 10349, 10350, 10351, 10352, 10353, 10354, 10355, 10356, 10357, 10358, 10359, 10360, 10361, 10362, 10363, 10364, 10365, 10366, 10367, 10368, 10369, 10370, 10371, 10372, 10373, 10374, 10375, 10376, 10377, 10378, 10379, 10380, 10381, 10382, 10383, 10384, 10385, 10386, 10387, 10388, 10389, 10390, 10391, 10392, 10393, 10394, 10395, 10396, 10397, 10398, 10399, 10400, 10401, 10402, 10403, 10404, 10405, 10406, 10407, 10408, 10409, 10410, 10411, 10412, 10413, 10414, 10415, 10416, 10417, 10418, 10419, 10420, 10421, 10422, 10423, 10424, 10425, 10426, 10427, 10428, 10429, 10430, 10431, 10432, 10433, 10434, 10435, 10436, 10437, 10438, 10439, 10440, 10441, 10442, 10443, 10444, 10445, 10446, 10447, 10448, 10449, 10450, 10451, 10452, 10453, 10454, 10455, 10456, 10457, 10458, 10459, 10460, 10461, 10462, 10463, 10464, 10465, 10466, 10467, 10468, 10469, 10470, 10471, 10472, 10473, 10474, 10475, 10476, 10477, 10478, 10479, 10480, 10481, 10482, 10483, 10484, 10485, 10486, 10487, 10488, 10489, 10490, 10491, 10492, 10493, 10494, 10495, 10496, 10497, 10498, 10499, 10500, 10501, 10502, 10503, 10504, 10505, 10506, 10507, 10508, 10509, 10510, 10511, 10512, 10513, 10514, 10515, 10516, 10517, 10518, 10519, 10520, 10521, 10522, 10523, 10524, 10525, 10526, 10527, 10528, 10529, 10530, 10531, 10532, 10533, 10534, 10535, 10536, 10537, 10538, 10539, 10540, 10541, 10542, 10543, 10544, 10545, 10546, 10547, 10548, 10549, 10550, 10551, 10552, 10553, 10554, 10555, 10556, 10557, 10558, 10559, 10560, 10561, 10562, 10563, 10564, 10565, 10566, 10567, 10568, 10569, 10570, 10571, 10572, 10573, 10574, 10575, 10576, 10577, 10578, 10579, 10580, 10581, 10582, 10583, 10584, 10585, 10586, 10587, 10588, 10589, 10590, 10591, 10592, 10593, 10594, 10595, 10596, 10597, 10598, 10599, 10600, 10601, 10602, 10603, 10604, 10605, 10606, 10607, 10608, 10609, 10610, 10611, 10612, 10613, 10614, 10615, 10616, 10617, 10618, 10619, 10620, 10621, 10622, 10623, 10624, 10625, 10626, 10627, 10628, 10629, 10630, 10631, 10632, 10633, 10634, 10635, 10636, 10637, 10638, 10639, 10640, 10641, 10642, 10643, 10644, 10645, 10646, 10647, 10648, 10649, 10650, 10651, 10652, 10653, 10654, 10655, 10656, 10657, 10658, 10659, 10660, 10661, 10662, 10663, 10664, 10665, 10666, 10667, 10668, 10669, 10670, 10671, 10672, 10673, 10674, 10675, 10676, 10677, 10678, 10679, 10680, 10681, 10682, 10683, 10684, 10685, 10686, 10687, 10688, 10689, 10690, 10691, 10692, 10693, 10694, 10695, 10696, 10697, 10698, 10699, 10700, 10701, 10702, 10703, 10704, 10705, 10706, 10707, 10708, 10709, 10710, 10711, 10712, 10713, 10714, 10715, 10716, 10717, 10718, 10719, 10720, 10721, 10722, 10723, 10724, 10725, 10726, 10727, 10728, 10729, 10730, 10731, 10732, 10733, 10734, 10735, 10736, 10737, 10738, 10739, 10740, 10741, 10742, 10743, 10744, 10745, 10746, 10747, 10748, 10749, 10750, 10751, 10752, 10753, 10754, 10755, 10756, 10757, 10758, 10759, 10760, 10761, 10762, 10763, 10764, 10765, 10766, 10767, 10768, 10769, 10770, 10771, 10772, 10773, 10774, 10775, 10776, 10777, 10778, 10779, 10780, 10781, 10782, 10783, 10784, 10785, 10786, 10787, 10788, 10789, 10790, 10791, 10792, 10793, 10794, 10795, 10796, 10797, 10798, 10799, 10800, 10801, 10802, 10803, 10804, 10805, 10806, 10807, 10808, 10809, 10810, 10811, 10812, 10813, 10814, 10815, 10816, 10817, 10818, 10819, 10820, 10821, 10822, 10823, 10824, 10825, 10826, 10827, 10828, 10829, 10830, 10831, 10832, 10833, 10834, 10835, 10836, 10837, 10838, 10839, 10840, 10841, 10842, 10843, 10844, 10845, 10846, 10847, 10848, 10849, 10850, 10851, 10852, 10853, 10854, 10855, 10856, 10857, 10858, 10859, 10860, 10861, 10862, 10863, 10864, 10865, 10866, 10867, 10868, 10869, 10870, 10871, 10872, 10873, 10874, 10875, 10876, 10877, 10878, 10879, 10880, 10881, 10882, 10883, 10884, 10885, 10886, 10887, 10888, 10889, 10890, 10891, 10892, 10893, 10894, 10895, 10896, 10897, 10898, 10899, 10900, 10901, 10902, 10903, 10904, 10905, 10906, 10907, 10908, 10909, 10910, 10911, 10912, 10913, 10914, 10915, 10916, 10917, 10918, 10919, 10920, 10921, 10922, 10923, 10924, 10925, 10926, 10927, 10928, 10929, 10930, 10931, 10932, 10933, 10934, 10935, 10936, 10937, 10938, 10939, 10940, 10941, 10942, 10943, 10944, 10945, 10946, 10947, 10948, 10949, 10950, 10951, 10952, 10953, 10954, 10955, 10956, 10957, 10958, 10959, 10960, 10961, 10962, 10963, 10964, 10965, 10966, 10967, 10968, 10969, 10970, 10971, 10972, 10973, 10974, 10975, 10976, 10977, 10978, 10979, 10980, 10981, 10982, 10983, 10984, 10985, 10986, 10987, 10988, 10989, 10990, 10991, 10992, 10993, 10994, 10995, 10996, 10997, 10998, 10999, 11000, 11001, 11002, 11003, 11004, 11005, 11006, 11007, 11008, 11009, 11010, 11011, 11012, 11013, 11014, 11015, 11016, 11017, 11018, 11019, 11020, 11021, 11022, 11023, 11024, 11025, 11026, 11027, 11028, 11029, 11030, 11031, 11032, 11033, 11034, 11035, 11036, 11037, 11038, 11039, 11040, 11041, 11042, 11043, 11044, 11045, 11046, 11047, 11048, 11049, 11050, 11051, 11052, 11053, 11054, 11055, 11056, 11057, 11058, 11059, 11060, 11061, 11062, 11063, 11064, 11065, 11066, 11067, 11068, 11069, 11070, 11071, 11072, 11073, 11074, 11075, 11076, 11077, 11078, 11079, 11080, 11081, 11082, 11083, 11084, 11085, 11086, 11087, 11088, 11089, 11090, 11091, 11092, 11093, 11094, 11095, 11096, 11097, 11098, 11099, 11100, 11101, 11102, 11103, 11104, 11105, 11106, 11107, 11108, 11109, 11110, 11111, 11112, 11113, 11114, 11115, 11116, 11117, 11118, 11119, 11120, 11121, 11122, 11123, 11124, 11125, 11126, 11127, 11128, 11129, 11130, 11131, 11132, 11133, 11134, 11135, 11136, 11137, 11138, 11139, 11140, 11141, 11142, 11143, 11144, 11145, 11146, 11147, 11148, 11149, 11150, 11151, 11152, 11153, 11154, 11155, 11156, 11157, 11158, 11159, 11160, 11161, 11162, 11163, 11164, 11165, 11166, 11167, 11168, 11169, 11170, 11171, 11172, 11173, 11174, 11175, 11176, 11177, 11178, 11179, 11180, 11181, 11182, 11183, 11184, 11185, 11186, 11187, 11188, 11189, 11190, 11191, 11192, 11193, 11194, 11195, 11196, 11197, 11198, 11199, 11200, 11201, 11202, 11203, 11204, 11205, 11206, 11207, 11208, 11209, 11210, 11211, 11212, 11213, 11214, 11215, 11216, 11217, 11218, 11219, 11220, 11221, 11222, 11223, 11224, 11225, 11226, 11227, 11228, 11229, 11230, 11231, 11232, 11233, 11234, 11235, 11236, 11237, 11238, 11239, 11240, 11241, 11242, 11243, 11244, 11245, 11246, 11247, 11248, 11249, 11250, 11251, 11252, 11253, 11254, 11255, 11256, 11257, 11258, 11259, 11260, 11261, 11262, 11263, 11264, 11265, 11266, 11267, 11268, 11269, 11270, 11271, 11272, 11273, 11274, 11275, 11276, 11277, 11278, 11279, 11280, 11281, 11282, 11283, 11284, 11285, 11286, 11287, 11288, 11289, 11290, 11291, 11292, 11293, 11294, 11295, 11296, 11297, 11298, 11299, 11300, 11301, 11302, 11303, 11304, 11305, 11306, 11307, 11308, 11309, 11310, 11311, 11312, 11313, 11314, 11315, 11316, 11317, 11318, 11319, 11320, 11321, 11322, 11323, 11324, 11325, 11326, 11327, 11328, 11329, 11330, 11331, 11332, 11333, 11334, 11335, 11336, 11337, 11338, 11339, 11340, 11341, 11342, 11343, 11344, 11345, 11346, 11347, 11348, 11349, 11350, 11351, 11352, 11353, 11354, 11355, 11356, 11357, 11358, 11359, 11360, 11361, 11362, 11363, 11364, 11365, 11366, 11367, 11368, 11369, 11370, 11371, 11372, 11373, 11374, 11375, 11376, 11377, 11378, 11379, 11380, 11381, 11382, 11383, 11384, 11385, 11386, 11387, 11388, 11389, 11390, 11391, 11392, 11393, 11394, 11395, 11396, 11397, 11398, 11399, 11400, 11401, 11402, 11403, 11404, 11405, 11406, 11407, 11408, 11409, 11410, 11411, 11412, 11413, 11414, 11415, 11416, 11417, 11418, 11419, 11420, 11421, 11422, 11423, 11424, 11425, 11426, 11427, 11428, 11429, 11430, 11431, 11432, 11433, 11434, 11435, 11436, 11437, 11438, 11439, 11440, 11441, 11442, 11443, 11444, 11445, 11446, 11447, 11448, 11449, 11450, 11451, 11452, 11453, 11454, 11455, 11456, 11457, 11458, 11459, 11460, 11461, 11462, 11463, 11464, 11465, 11466, 11467, 11468, 11469, 11470, 11471, 11472, 11473, 11474, 11475, 11476, 11477, 11478, 11479, 11480, 11481, 11482, 11483, 11484, 11485, 11486, 11487, 11488, 11489, 11490, 11491, 11492, 11493, 11494, 11495, 11496, 11497, 11498, 11499, 11500, 11501, 11502, 11503, 11504, 11505, 11506, 11507, 11508, 11509, 11510, 11511, 11512, 11513, 11514, 11515, 11516, 11517, 11518, 11519, 11520, 11521, 11522, 11523, 11524, 11525, 11526, 11527, 11528, 11529, 11530, 11531, 11532, 11533, 11534, 11535, 11536, 11537, 11538, 11539, 11540, 11541, 11542, 11543, 11544, 11545, 11546, 11547, 11548, 11549, 11550, 11551, 11552, 11553, 11554, 11555, 11556, 11557, 11558, 11559, 11560, 11561, 11562, 11563, 11564, 11565, 11566, 11567, 11568, 11569, 11570, 11571, 11572, 11573, 11574, 11575, 11576, 11577, 11578, 11579, 11580, 11581, 11582, 11583, 11584, 11585, 11586, 11587, 11588, 11589, 11590, 11591, 11592, 11593, 11594, 11595, 11596, 11597, 11598, 11599, 11600, 11601, 11602, 11603, 11604, 11605, 11606, 11607, 11608, 11609, 11610, 11611, 11612, 11613, 11614, 11615, 11616, 11617, 11618, 11619, 11620, 11621, 11622, 11623, 11624, 11625, 11626, 11627, 11628, 11629, 11630, 11631, 11632, 11633, 11634, 11635, 11636, 11637, 11638, 11639, 11640, 11641, 11642, 11643, 11644, 11645, 11646, 11647, 11648, 11649, 11650, 11651, 11652, 11653, 11654, 11655, 11656, 11657, 11658, 11659, 11660, 11661, 11662, 11663, 11664, 11665, 11666, 11667, 11668, 11669, 11670, 11671, 11672, 11673, 11674, 11675, 11676, 11677, 11678, 11679, 11680, 11681, 11682, 11683, 11684, 11685, 11686, 11687, 11688, 11689, 11690, 11691, 11692, 11693, 11694, 11695, 11696, 11697, 11698, 11699, 11700, 11701, 11702, 11703, 11704, 11705, 11706, 11707, 11708, 11709, 11710, 11711, 11712, 11713, 11714, 11715, 11716, 11717, 11718, 11719, 11720, 11721, 11722, 11723, 11724, 11725, 11726, 11727, 11728, 11729, 11730, 11731, 11732, 11733, 11734, 11735, 11736, 11737, 11738, 11739, 11740, 11741, 11742, 11743, 11744, 11745, 11746, 11747, 11748, 11749, 11750, 11751, 11752, 11753, 11754, 11755, 11756, 11757, 11758, 11759, 11760, 11761, 11762, 11763, 11764, 11765, 11766, 11767, 11768, 11769, 11770, 11771, 11772, 11773, 11774, 11775, 11776, 11777, 11778, 11779, 11780, 11781, 11782, 11783, 11784, 11785, 11786, 11787, 11788, 11789, 11790, 11791, 11792, 11793, 11794, 11795, 11796, 11797, 11798, 11799, 11800, 11801, 11802, 11803, 11804, 11805, 11806, 11807, 11808, 11809, 11810, 11811, 11812, 11813, 11814, 11815, 11816, 11817, 11818, 11819, 11820, 11821, 11822, 11823, 11824, 11825, 11826, 11827, 11828, 11829, 11830, 11831, 11832, 11833, 11834, 11835, 11836, 11837, 11838, 11839, 11840, 11841, 11842, 11843, 11844, 11845, 11846, 11847, 11848, 11849, 11850, 11851, 11852, 11853, 11854, 11855, 11856, 11857, 11858, 11859, 11860, 11861, 11862, 11863, 11864, 11865, 11866, 11867, 11868, 11869, 11870, 11871, 11872, 11873, 11874, 11875, 11876, 11877, 11878, 11879, 11880, 11881, 11882, 11883, 11884, 11885, 11886, 11887, 11888, 11889, 11890, 11891, 11892, 11893, 11894, 11895, 11896, 11897, 11898, 11899, 11900, 11901, 11902, 11903, 11904, 11905, 11906, 11907, 11908, 11909, 11910, 11911, 11912, 11913, 11914, 11915, 11916, 11917, 11918, 11919, 11920, 11921, 11922, 11923, 11924, 11925, 11926, 11927, 11928, 11929, 11930, 11931, 11932, 11933, 11934, 11935, 11936, 11937, 11938, 11939, 11940, 11941, 11942, 11943, 11944, 11945, 11946, 11947, 11948, 11949, 11950, 11951, 11952, 11953, 11954, 11955, 11956, 11957, 11958, 11959, 11960, 11961, 11962, 11963, 11964, 11965, 11966, 11967, 11968, 11969, 11970, 11971, 11972, 11973, 11974, 11975, 11976, 11977, 11978, 11979, 11980, 11981, 11982, 11983, 11984, 11985, 11986, 11987, 11988, 11989, 11990, 11991, 11992, 11993, 11994, 11995, 11996, 11997, 11998, 11999, 12000, 12001, 12002, 12003, 12004, 12005, 12006, 12007, 12008, 12009, 12010, 12011, 12012, 12013, 12014, 12015, 12016, 12017, 12018, 12019, 12020, 12021, 12022, 12023, 12024, 12025, 12026, 12027, 12028, 12029, 12030, 12031, 12032, 12033, 12034, 12035, 12036, 12037, 12038, 12039, 12040, 12041, 12042, 12043, 12044, 12045, 12046, 12047, 12048, 12049, 12050, 12051, 12052, 12053, 12054, 12055, 12056, 12057, 12058, 12059, 12060, 12061, 12062, 12063, 12064, 12065, 12066, 12067, 12068, 12069, 12070, 12071, 12072, 12073, 12074, 12075, 12076, 12077, 12078, 12079, 12080, 12081, 12082, 12083, 12084, 12085, 12086, 12087, 12088, 12089, 12090, 12091, 12092, 12093, 12094, 12095, 12096, 12097, 12098, 12099, 12100, 12101, 12102, 12103, 12104, 12105, 12106, 12107, 12108, 12109, 12110, 12111, 12112, 12113, 12114, 12115, 12116, 12117, 12118, 12119, 12120, 12121, 12122, 12123, 12124, 12125, 12126, 12127, 12128, 12129, 12130, 12131, 12132, 12133, 12134, 12135, 12136, 12137, 12138, 12139, 12140, 12141, 12142, 12143, 12144, 12145, 12146, 12147, 12148, 12149, 12150, 12151, 12152, 12153, 12154, 12155, 12156, 12157, 12158, 12159, 12160, 12161, 12162, 12163, 12164, 12165, 12166, 12167, 12168, 12169, 12170, 12171, 12172, 12173, 12174, 12175, 12176, 12177, 12178, 12179, 12180, 12181, 12182, 12183, 12184, 12185, 12186, 12187, 12188, 12189, 12190, 12191, 12192, 12193, 12194, 12195, 12196, 12197, 12198, 12199, 12200, 12201, 12202, 12203, 12204, 12205, 12206, 12207, 12208, 12209, 12210, 12211, 12212, 12213, 12214, 12215, 12216, 12217, 12218, 12219, 12220, 12221, 12222, 12223, 12224, 12225, 12226, 12227, 12228, 12229, 12230, 12231, 12232, 12233, 12234, 12235, 12236, 12237, 12238, 12239, 12240, 12241, 12242, 12243, 12244, 12245, 12246, 12247, 12248, 12249, 12250, 12251, 12252, 12253, 12254, 12255, 12256, 12257, 12258, 12259, 12260, 12261, 12262, 12263, 12264, 12265, 12266, 12267, 12268, 12269, 12270, 12271, 12272, 12273, 12274, 12275, 12276, 12277, 12278, 12279, 12280, 12281, 12282, 12283, 12284, 12285, 12286, 12287, 12288, 12289, 12290, 12291, 12292, 12293, 12294, 12295, 12296, 12297, 12298, 12299, 12300, 12301, 12302, 12303, 12304, 12305, 12306, 12307, 12308, 12309, 12310, 12311, 12312, 12313, 12314, 12315, 12316, 12317, 12318, 12319, 12320, 12321, 12322, 12323, 12324, 12325, 12326, 12327, 12328, 12329, 12330, 12331, 12332, 12333, 12334, 12335, 12336, 12337, 12338, 12339, 12340, 12341, 12342, 12343, 12344, 12345, 12346, 12347, 12348, 12349, 12350, 12351, 12352, 12353, 12354, 12355, 12356, 12357, 12358, 12359, 12360, 12361, 12362, 12363, 12364, 12365, 12366, 12367, 12368, 12369, 12370, 12371, 12372, 12373, 12374, 12375, 12376, 12377, 12378, 12379, 12380, 12381, 12382, 12383, 12384, 12385, 12386, 12387, 12388, 12389, 12390, 12391, 12392, 12393, 12394, 12395, 12396, 12397, 12398, 12399, 12400, 12401, 12402, 12403, 12404, 12405, 12406, 12407, 12408, 12409, 12410, 12411, 12412, 12413, 12414, 12415, 12416, 12417, 12418, 12419, 12420, 12421, 12422, 12423, 12424, 12425, 12426, 12427, 12428, 12429, 12430, 12431, 12432, 12433, 12434, 12435, 12436, 12437, 12438, 12439, 12440, 12441, 12442, 12443, 12444, 12445, 12446, 12447, 12448, 12449, 12450, 12451, 12452, 12453, 12454, 12455, 12456, 12457, 12458, 12459, 12460, 12461, 12462, 12463, 12464, 12465, 12466, 12467, 12468, 12469, 12470, 12471, 12472, 12473, 12474, 12475, 12476, 12477, 12478, 12479, 12480, 12481, 12482, 12483, 12484, 12485, 12486, 12487, 12488, 12489, 12490, 12491, 12492, 12493, 12494, 12495, 12496, 12497, 12498, 12499, 12500, 12501, 12502, 12503, 12504, 12505, 12506, 12507, 12508, 12509, 12510, 12511, 12512, 12513, 12514, 12515, 12516, 12517, 12518, 12519, 12520, 12521, 12522, 12523, 12524, 12525, 12526, 12527, 12528, 12529, 12530, 12531, 12532, 12533, 12534, 12535, 12536, 12537, 12538, 12539, 12540, 12541, 12542, 12543, 12544, 12545, 12546, 12547, 12548, 12549, 12550, 12551, 12552, 12553, 12554, 12555, 12556, 12557, 12558, 12559, 12560, 12561, 12562, 12563, 12564, 12565, 12566, 12567, 12568, 12569, 12570, 12571, 12572, 12573, 12574, 12575, 12576, 12577, 12578, 12579, 12580, 12581, 12582, 12583, 12584, 12585, 12586, 12587, 12588, 12589, 12590, 12591, 12592, 12593, 12594, 12595, 12596, 12597, 12598, 12599, 12600, 12601, 12602, 12603, 12604, 12605, 12606, 12607, 12608, 12609, 12610, 12611, 12612, 12613, 12614, 12615, 12616, 12617, 12618, 12619, 12620, 12621, 12622, 12623, 12624, 12625, 12626, 12627, 12628, 12629, 12630, 12631, 12632, 12633, 12634, 12635, 12636, 12637, 12638, 12639, 12640, 12641, 12642, 12643, 12644, 12645, 12646, 12647, 12648, 12649, 12650, 12651, 12652, 12653, 12654, 12655, 12656, 12657, 12658, 12659, 12660, 12661, 12662, 12663, 12664, 12665, 12666, 12667, 12668, 12669, 12670, 12671, 12672, 12673, 12674, 12675, 12676, 12677, 12678, 12679, 12680, 12681, 12682, 12683, 12684, 12685, 12686, 12687, 12688, 12689, 12690, 12691, 12692, 12693, 12694, 12695, 12696, 12697, 12698, 12699, 12700, 12701, 12702, 12703, 12704, 12705, 12706, 12707, 12708, 12709, 12710, 12711, 12712, 12713, 12714, 12715, 12716, 12717, 12718, 12719, 12720, 12721, 12722, 12723, 12724, 12725, 12726, 12727, 12728, 12729, 12730, 12731, 12732, 12733, 12734, 12735, 12736, 12737, 12738, 12739, 12740, 12741, 12742, 12743, 12744, 12745, 12746, 12747, 12748, 12749, 12750, 12751, 12752, 12753, 12754, 12755, 12756, 12757, 12758, 12759, 12760, 12761, 12762, 12763, 12764, 12765, 12766, 12767, 12768, 12769, 12770, 12771, 12772, 12773, 12774, 12775, 12776, 12777, 12778, 12779, 12780, 12781, 12782, 12783, 12784, 12785, 12786, 12787, 12788, 12789, 12790, 12791, 12792, 12793, 12794, 12795, 12796, 12797, 12798, 12799, 12800, 12801, 12802, 12803, 12804, 12805, 12806, 12807, 12808, 12809, 12810, 12811, 12812, 12813, 12814, 12815, 12816, 12817, 12818, 12819, 12820, 12821, 12822, 12823, 12824, 12825, 12826, 12827, 12828, 12829, 12830, 12831, 12832, 12833, 12834, 12835, 12836, 12837, 12838, 12839, 12840, 12841, 12842, 12843, 12844, 12845, 12846, 12847, 12848, 12849, 12850, 12851, 12852, 12853, 12854, 12855, 12856, 12857, 12858, 12859, 12860, 12861, 12862, 12863, 12864, 12865, 12866, 12867, 12868, 12869, 12870, 12871, 12872, 12873, 12874, 12875, 12876, 12877, 12878, 12879, 12880, 12881, 12882, 12883, 12884, 12885, 12886, 12887, 12888, 12889, 12890, 12891, 12892, 12893, 12894, 12895, 12896, 12897, 12898, 12899, 12900, 12901, 12902, 12903, 12904, 12905, 12906, 12907, 12908, 12909, 12910, 12911, 12912, 12913, 12914, 12915, 12916, 12917, 12918, 12919, 12920, 12921, 12922, 12923, 12924, 12925, 12926, 12927, 12928, 12929, 12930, 12931, 12932, 12933, 12934, 12935, 12936, 12937, 12938, 12939, 12940, 12941, 12942, 12943, 12944, 12945, 12946, 12947, 12948, 12949, 12950, 12951, 12952, 12953, 12954, 12955, 12956, 12957, 12958, 12959, 12960, 12961, 12962, 12963, 12964, 12965, 12966, 12967, 12968, 12969, 12970, 12971, 12972, 12973, 12974, 12975, 12976, 12977, 12978, 12979, 12980, 12981, 12982, 12983, 12984, 12985, 12986, 12987, 12988, 12989, 12990, 12991, 12992, 12993, 12994, 12995, 12996, 12997, 12998, 12999, 13000, 13001, 13002, 13003, 13004, 13005, 13006, 13007, 13008, 13009, 13010, 13011, 13012, 13013, 13014, 13015, 13016, 13017, 13018, 13019, 13020, 13021, 13022, 13023, 13024, 13025, 13026, 13027, 13028, 13029, 13030, 13031, 13032, 13033, 13034, 13035, 13036, 13037, 13038, 13039, 13040, 13041, 13042, 13043, 13044, 13045, 13046, 13047, 13048, 13049, 13050, 13051, 13052, 13053, 13054, 13055, 13056, 13057, 13058, 13059, 13060, 13061, 13062, 13063, 13064, 13065, 13066, 13067, 13068, 13069, 13070, 13071, 13072, 13073, 13074, 13075, 13076, 13077, 13078, 13079, 13080, 13081, 13082, 13083, 13084, 13085, 13086, 13087, 13088, 13089, 13090, 13091, 13092, 13093, 13094, 13095, 13096, 13097, 13098, 13099, 13100, 13101, 13102, 13103, 13104, 13105, 13106, 13107, 13108, 13109, 13110, 13111, 13112, 13113, 13114, 13115, 13116, 13117, 13118, 13119, 13120, 13121, 13122, 13123, 13124, 13125, 13126, 13127, 13128, 13129, 13130, 13131, 13132, 13133, 13134, 13135, 13136, 13137, 13138, 13139, 13140, 13141, 13142, 13143, 13144, 13145, 13146, 13147, 13148, 13149, 13150, 13151, 13152, 13153, 13154, 13155, 13156, 13157, 13158, 13159, 13160, 13161, 13162, 13163, 13164, 13165, 13166, 13167, 13168, 13169, 13170, 13171, 13172, 13173, 13174, 13175, 13176, 13177, 13178, 13179, 13180, 13181, 13182, 13183, 13184, 13185, 13186, 13187, 13188, 13189, 13190, 13191, 13192, 13193, 13194, 13195, 13196, 13197, 13198, 13199, 13200, 13201, 13202, 13203, 13204, 13205, 13206, 13207, 13208, 13209, 13210, 13211, 13212, 13213, 13214, 13215, 13216, 13217, 13218, 13219, 13220, 13221, 13222, 13223, 13224, 13225, 13226, 13227, 13228, 13229, 13230, 13231, 13232, 13233, 13234, 13235, 13236, 13237, 13238, 13239, 13240, 13241, 13242, 13243, 13244, 13245, 13246, 13247, 13248, 13249, 13250, 13251, 13252, 13253, 13254, 13255, 13256, 13257, 13258, 13259, 13260, 13261, 13262, 13263, 13264, 13265, 13266, 13267, 13268, 13269, 13270, 13271, 13272, 13273, 13274, 13275, 13276, 13277, 13278, 13279, 13280, 13281, 13282, 13283, 13284, 13285, 13286, 13287, 13288, 13289, 13290, 13291, 13292, 13293, 13294, 13295, 13296, 13297, 13298, 13299, 13300, 13301, 13302, 13303, 13304, 13305, 13306, 13307, 13308, 13309, 13310, 13311, 13312, 13313, 13314, 13315, 13316, 13317, 13318, 13319, 13320, 13321, 13322, 13323, 13324, 13325, 13326, 13327, 13328, 13329, 13330, 13331, 13332, 13333, 13334, 13335, 13336, 13337, 13338, 13339, 13340, 13341, 13342, 13343, 13344, 13345, 13346, 13347, 13348, 13349, 13350, 13351, 13352, 13353, 13354, 13355, 13356, 13357, 13358, 13359, 13360, 13361, 13362, 13363, 13364, 13365, 13366, 13367, 13368, 13369, 13370, 13371, 13372, 13373, 13374, 13375, 13376, 13377, 13378, 13379, 13380, 13381, 13382, 13383, 13384, 13385, 13386, 13387, 13388, 13389, 13390, 13391, 13392, 13393, 13394, 13395, 13396, 13397, 13398, 13399, 13400, 13401, 13402, 13403, 13404, 13405, 13406, 13407, 13408, 13409, 13410, 13411, 13412, 13413, 13414, 13415, 13416, 13417, 13418, 13419, 13420, 13421, 13422, 13423, 13424, 13425, 13426, 13427, 13428, 13429, 13430, 13431, 13432, 13433, 13434, 13435, 13436, 13437, 13438, 13439, 13440, 13441, 13442, 13443, 13444, 13445, 13446, 13447, 13448, 13449, 13450, 13451, 13452, 13453, 13454, 13455, 13456, 13457, 13458, 13459, 13460, 13461, 13462, 13463, 13464, 13465, 13466, 13467, 13468, 13469, 13470, 13471, 13472, 13473, 13474, 13475, 13476, 13477, 13478, 13479, 13480, 13481, 13482, 13483, 13484, 13485, 13486, 13487, 13488, 13489, 13490, 13491, 13492, 13493, 13494, 13495, 13496, 13497, 13498, 13499, 13500, 13501, 13502, 13503, 13504, 13505, 13506, 13507, 13508, 13509, 13510, 13511, 13512, 13513, 13514, 13515, 13516, 13517, 13518, 13519, 13520, 13521, 13522, 13523, 13524, 13525, 13526, 13527, 13528, 13529, 13530, 13531, 13532, 13533, 13534, 13535, 13536, 13537, 13538, 13539, 13540, 13541, 13542, 13543, 13544, 13545, 13546, 13547, 13548, 13549, 13550, 13551, 13552, 13553, 13554, 13555, 13556, 13557, 13558, 13559, 13560, 13561, 13562, 13563, 13564, 13565, 13566, 13567, 13568, 13569, 13570, 13571, 13572, 13573, 13574, 13575, 13576, 13577, 13578, 13579, 13580, 13581, 13582, 13583, 13584, 13585, 13586, 13587, 13588, 13589, 13590, 13591, 13592, 13593, 13594, 13595, 13596, 13597, 13598, 13599, 13600, 13601, 13602, 13603, 13604, 13605, 13606, 13607, 13608, 13609, 13610, 13611, 13612, 13613, 13614, 13615, 13616, 13617, 13618, 13619, 13620, 13621, 13622, 13623, 13624, 13625, 13626, 13627, 13628, 13629, 13630, 13631, 13632, 13633, 13634, 13635, 13636, 13637, 13638, 13639, 13640, 13641, 13642, 13643, 13644, 13645, 13646, 13647, 13648, 13649, 13650, 13651, 13652, 13653, 13654, 13655, 13656, 13657, 13658, 13659, 13660, 13661, 13662, 13663, 13664, 13665, 13666, 13667, 13668, 13669, 13670, 13671, 13672, 13673, 13674, 13675, 13676, 13677, 13678, 13679, 13680, 13681, 13682, 13683, 13684, 13685, 13686, 13687, 13688, 13689, 13690, 13691, 13692, 13693, 13694, 13695, 13696, 13697, 13698, 13699, 13700, 13701, 13702, 13703, 13704, 13705, 13706, 13707, 13708, 13709, 13710, 13711, 13712, 13713, 13714, 13715, 13716, 13717, 13718, 13719, 13720, 13721, 13722, 13723, 13724, 13725, 13726, 13727, 13728, 13729, 13730, 13731, 13732, 13733, 13734, 13735, 13736, 13737, 13738, 13739, 13740, 13741, 13742, 13743, 13744, 13745, 13746, 13747, 13748, 13749, 13750, 13751, 13752, 13753, 13754, 13755, 13756, 13757, 13758, 13759, 13760, 13761, 13762, 13763, 13764, 13765, 13766, 13767, 13768, 13769, 13770, 13771, 13772, 13773, 13774, 13775, 13776, 13777, 13778, 13779, 13780, 13781, 13782, 13783, 13784, 13785, 13786, 13787, 13788, 13789, 13790, 13791, 13792, 13793, 13794, 13795, 13796, 13797, 13798, 13799, 13800, 13801, 13802, 13803, 13804, 13805, 13806, 13807, 13808, 13809, 13810, 13811, 13812, 13813, 13814, 13815, 13816, 13817, 13818, 13819, 13820, 13821, 13822, 13823, 13824, 13825, 13826, 13827, 13828, 13829, 13830, 13831, 13832, 13833, 13834, 13835, 13836, 13837, 13838, 13839, 13840, 13841, 13842, 13843, 13844, 13845, 13846, 13847, 13848, 13849, 13850, 13851, 13852, 13853, 13854, 13855, 13856, 13857, 13858, 13859, 13860, 13861, 13862, 13863, 13864, 13865, 13866, 13867, 13868, 13869, 13870, 13871, 13872, 13873, 13874, 13875, 13876, 13877, 13878, 13879, 13880, 13881, 13882, 13883, 13884, 13885, 13886, 13887, 13888, 13889, 13890, 13891, 13892, 13893, 13894, 13895, 13896, 13897, 13898, 13899, 13900, 13901, 13902, 13903, 13904, 13905, 13906, 13907, 13908, 13909, 13910, 13911, 13912, 13913, 13914, 13915, 13916, 13917, 13918, 13919, 13920, 13921, 13922, 13923, 13924, 13925, 13926, 13927, 13928, 13929, 13930, 13931, 13932, 13933, 13934, 13935, 13936, 13937, 13938, 13939, 13940, 13941, 13942, 13943, 13944, 13945, 13946, 13947, 13948, 13949, 13950, 13951, 13952, 13953, 13954, 13955, 13956, 13957, 13958, 13959, 13960, 13961, 13962, 13963, 13964, 13965, 13966, 13967, 13968, 13969, 13970, 13971, 13972, 13973, 13974, 13975, 13976, 13977, 13978, 13979, 13980, 13981, 13982, 13983, 13984, 13985, 13986, 13987, 13988, 13989, 13990, 13991, 13992, 13993, 13994, 13995, 13996, 13997, 13998, 13999, 14000, 14001, 14002, 14003, 14004, 14005, 14006, 14007, 14008, 14009, 14010, 14011, 14012, 14013, 14014, 14015, 14016, 14017, 14018, 14019, 14020, 14021, 14022, 14023, 14024, 14025, 14026, 14027, 14028, 14029, 14030, 14031, 14032, 14033, 14034, 14035, 14036, 14037, 14038, 14039, 14040, 14041, 14042, 14043, 14044, 14045, 14046, 14047, 14048, 14049, 14050, 14051, 14052, 14053, 14054, 14055, 14056, 14057, 14058, 14059, 14060, 14061, 14062, 14063, 14064, 14065, 14066, 14067, 14068, 14069, 14070, 14071, 14072, 14073, 14074, 14075, 14076, 14077, 14078, 14079, 14080, 14081, 14082, 14083, 14084, 14085, 14086, 14087, 14088, 14089, 14090, 14091, 14092, 14093, 14094, 14095, 14096, 14097, 14098, 14099, 14100, 14101, 14102, 14103, 14104, 14105, 14106, 14107, 14108, 14109, 14110, 14111, 14112, 14113, 14114, 14115, 14116, 14117, 14118, 14119, 14120, 14121, 14122, 14123, 14124, 14125, 14126, 14127, 14128, 14129, 14130, 14131, 14132, 14133, 14134, 14135, 14136, 14137, 14138, 14139, 14140, 14141, 14142, 14143, 14144, 14145, 14146, 14147, 14148, 14149, 14150, 14151, 14152, 14153, 14154, 14155, 14156, 14157, 14158, 14159, 14160, 14161, 14162, 14163, 14164, 14165, 14166, 14167, 14168, 14169, 14170, 14171, 14172, 14173, 14174, 14175, 14176, 14177, 14178, 14179, 14180, 14181, 14182, 14183, 14184, 14185, 14186, 14187, 14188, 14189, 14190, 14191, 14192, 14193, 14194, 14195, 14196, 14197, 14198, 14199, 14200, 14201, 14202, 14203, 14204, 14205, 14206, 14207, 14208, 14209, 14210, 14211, 14212, 14213, 14214, 14215, 14216, 14217, 14218, 14219, 14220, 14221, 14222, 14223, 14224, 14225, 14226, 14227, 14228, 14229, 14230, 14231, 14232, 14233, 14234, 14235, 14236, 14237, 14238, 14239, 14240, 14241, 14242, 14243, 14244, 14245, 14246, 14247, 14248, 14249, 14250, 14251, 14252, 14253, 14254, 14255, 14256, 14257, 14258, 14259, 14260, 14261, 14262, 14263, 14264, 14265, 14266, 14267, 14268, 14269, 14270, 14271, 14272, 14273, 14274, 14275, 14276, 14277, 14278, 14279, 14280, 14281, 14282, 14283, 14284, 14285, 14286, 14287, 14288, 14289, 14290, 14291, 14292, 14293, 14294, 14295, 14296, 14297, 14298, 14299, 14300, 14301, 14302, 14303, 14304, 14305, 14306, 14307, 14308, 14309, 14310, 14311, 14312, 14313, 14314, 14315, 14316, 14317, 14318, 14319, 14320, 14321, 14322, 14323, 14324, 14325, 14326, 14327, 14328, 14329, 14330, 14331, 14332, 14333, 14334, 14335, 14336, 14337, 14338, 14339, 14340, 14341, 14342, 14343, 14344, 14345, 14346, 14347, 14348, 14349, 14350, 14351, 14352, 14353, 14354, 14355, 14356, 14357, 14358, 14359, 14360, 14361, 14362, 14363, 14364, 14365, 14366, 14367, 14368, 14369, 14370, 14371, 14372, 14373, 14374, 14375, 14376, 14377, 14378, 14379, 14380, 14381, 14382, 14383, 14384, 14385, 14386, 14387, 14388, 14389, 14390, 14391, 14392, 14393, 14394, 14395, 14396, 14397, 14398, 14399, 14400, 14401, 14402, 14403, 14404, 14405, 14406, 14407, 14408, 14409, 14410, 14411, 14412, 14413, 14414, 14415, 14416, 14417, 14418, 14419, 14420, 14421, 14422, 14423, 14424, 14425, 14426, 14427, 14428, 14429, 14430, 14431, 14432, 14433, 14434, 14435, 14436, 14437, 14438, 14439, 14440, 14441, 14442, 14443, 14444, 14445, 14446, 14447, 14448, 14449, 14450, 14451, 14452, 14453, 14454, 14455, 14456, 14457, 14458, 14459, 14460, 14461, 14462, 14463, 14464, 14465, 14466, 14467, 14468, 14469, 14470, 14471, 14472, 14473, 14474, 14475, 14476, 14477, 14478, 14479, 14480, 14481, 14482, 14483, 14484, 14485, 14486, 14487, 14488, 14489, 14490, 14491, 14492, 14493, 14494, 14495, 14496, 14497, 14498, 14499, 14500, 14501, 14502, 14503, 14504, 14505, 14506, 14507, 14508, 14509, 14510, 14511, 14512, 14513, 14514, 14515, 14516, 14517, 14518, 14519, 14520, 14521, 14522, 14523, 14524, 14525, 14526, 14527, 14528, 14529, 14530, 14531, 14532, 14533, 14534, 14535, 14536, 14537, 14538, 14539, 14540, 14541, 14542, 14543, 14544, 14545, 14546, 14547, 14548, 14549, 14550, 14551, 14552, 14553, 14554, 14555, 14556, 14557, 14558, 14559, 14560, 14561, 14562, 14563, 14564, 14565, 14566, 14567, 14568, 14569, 14570, 14571, 14572, 14573, 14574, 14575, 14576, 14577, 14578, 14579, 14580, 14581, 14582, 14583, 14584, 14585, 14586, 14587, 14588, 14589, 14590, 14591, 14592, 14593, 14594, 14595, 14596, 14597, 14598, 14599, 14600, 14601, 14602, 14603, 14604, 14605, 14606, 14607, 14608, 14609, 14610, 14611, 14612, 14613, 14614, 14615, 14616, 14617, 14618, 14619, 14620, 14621, 14622, 14623, 14624, 14625, 14626, 14627, 14628, 14629, 14630, 14631, 14632, 14633, 14634, 14635, 14636, 14637, 14638, 14639, 14640, 14641, 14642, 14643, 14644, 14645, 14646, 14647, 14648, 14649, 14650, 14651, 14652, 14653, 14654, 14655, 14656, 14657, 14658, 14659, 14660, 14661, 14662, 14663, 14664, 14665, 14666, 14667, 14668, 14669, 14670, 14671, 14672, 14673, 14674, 14675, 14676, 14677, 14678, 14679, 14680, 14681, 14682, 14683, 14684, 14685, 14686, 14687, 14688, 14689, 14690, 14691, 14692, 14693, 14694, 14695, 14696, 14697, 14698, 14699, 14700, 14701, 14702, 14703, 14704, 14705, 14706, 14707, 14708, 14709, 14710, 14711, 14712, 14713, 14714, 14715, 14716, 14717, 14718, 14719, 14720, 14721, 14722, 14723, 14724, 14725, 14726, 14727, 14728, 14729, 14730, 14731, 14732, 14733, 14734, 14735, 14736, 14737, 14738, 14739, 14740, 14741, 14742, 14743, 14744, 14745, 14746, 14747, 14748, 14749, 14750, 14751, 14752, 14753, 14754, 14755, 14756, 14757, 14758, 14759, 14760, 14761, 14762, 14763, 14764, 14765, 14766, 14767, 14768, 14769, 14770, 14771, 14772, 14773, 14774, 14775, 14776, 14777, 14778, 14779, 14780, 14781, 14782, 14783, 14784, 14785, 14786, 14787, 14788, 14789, 14790, 14791, 14792, 14793, 14794, 14795, 14796, 14797, 14798, 14799, 14800, 14801, 14802, 14803, 14804, 14805, 14806, 14807, 14808, 14809, 14810, 14811, 14812, 14813, 14814, 14815, 14816, 14817, 14818, 14819, 14820, 14821, 14822, 14823, 14824, 14825, 14826, 14827, 14828, 14829, 14830, 14831, 14832, 14833, 14834, 14835, 14836, 14837, 14838, 14839, 14840, 14841, 14842, 14843, 14844, 14845, 14846, 14847, 14848, 14849, 14850, 14851, 14852, 14853, 14854, 14855, 14856, 14857, 14858, 14859, 14860, 14861, 14862, 14863, 14864, 14865, 14866, 14867, 14868, 14869, 14870, 14871, 14872, 14873, 14874, 14875, 14876, 14877, 14878, 14879, 14880, 14881, 14882, 14883, 14884, 14885, 14886, 14887, 14888, 14889, 14890, 14891, 14892, 14893, 14894, 14895, 14896, 14897, 14898, 14899, 14900, 14901, 14902, 14903, 14904, 14905, 14906, 14907, 14908, 14909, 14910, 14911, 14912, 14913, 14914, 14915, 14916, 14917, 14918, 14919, 14920, 14921, 14922, 14923, 14924, 14925, 14926, 14927, 14928, 14929, 14930, 14931, 14932, 14933, 14934, 14935, 14936, 14937, 14938, 14939, 14940, 14941, 14942, 14943, 14944, 14945, 14946, 14947, 14948, 14949, 14950, 14951, 14952, 14953, 14954, 14955, 14956, 14957, 14958, 14959, 14960, 14961, 14962, 14963, 14964, 14965, 14966, 14967, 14968, 14969, 14970, 14971, 14972, 14973, 14974, 14975, 14976, 14977, 14978, 14979, 14980, 14981, 14982, 14983, 14984, 14985, 14986, 14987, 14988, 14989, 14990, 14991, 14992, 14993, 14994, 14995, 14996, 14997, 14998, 14999, 15000, 15001, 15002, 15003, 15004, 15005, 15006, 15007, 15008, 15009, 15010, 15011, 15012, 15013, 15014, 15015, 15016, 15017, 15018, 15019, 15020, 15021, 15022, 15023, 15024, 15025, 15026, 15027, 15028, 15029, 15030, 15031, 15032, 15033, 15034, 15035, 15036, 15037, 15038, 15039, 15040, 15041, 15042, 15043, 15044, 15045, 15046, 15047, 15048, 15049, 15050, 15051, 15052, 15053, 15054, 15055, 15056, 15057, 15058, 15059, 15060, 15061, 15062, 15063, 15064, 15065, 15066, 15067, 15068, 15069, 15070, 15071, 15072, 15073, 15074, 15075, 15076, 15077, 15078, 15079, 15080, 15081, 15082, 15083, 15084, 15085, 15086, 15087, 15088, 15089, 15090, 15091, 15092, 15093, 15094, 15095, 15096, 15097, 15098, 15099, 15100, 15101, 15102, 15103, 15104, 15105, 15106, 15107, 15108, 15109, 15110, 15111, 15112, 15113, 15114, 15115, 15116, 15117, 15118, 15119, 15120, 15121, 15122, 15123, 15124, 15125, 15126, 15127, 15128, 15129, 15130, 15131, 15132, 15133, 15134, 15135, 15136, 15137, 15138, 15139, 15140, 15141, 15142, 15143, 15144, 15145, 15146, 15147, 15148, 15149, 15150, 15151, 15152, 15153, 15154, 15155, 15156, 15157, 15158, 15159, 15160, 15161, 15162, 15163, 15164, 15165, 15166, 15167, 15168, 15169, 15170, 15171, 15172, 15173, 15174, 15175, 15176, 15177, 15178, 15179, 15180, 15181, 15182, 15183, 15184, 15185, 15186, 15187, 15188, 15189, 15190, 15191, 15192, 15193, 15194, 15195, 15196, 15197, 15198, 15199, 15200, 15201, 15202, 15203, 15204, 15205, 15206, 15207, 15208, 15209, 15210, 15211, 15212, 15213, 15214, 15215, 15216, 15217, 15218, 15219, 15220, 15221, 15222, 15223, 15224, 15225, 15226, 15227, 15228, 15229, 15230, 15231, 15232, 15233, 15234, 15235, 15236, 15237, 15238, 15239, 15240, 15241, 15242, 15243, 15244, 15245, 15246, 15247, 15248, 15249, 15250, 15251, 15252, 15253, 15254, 15255, 15256, 15257, 15258, 15259, 15260, 15261, 15262, 15263, 15264, 15265, 15266, 15267, 15268, 15269, 15270, 15271, 15272, 15273, 15274, 15275, 15276, 15277, 15278, 15279, 15280, 15281, 15282, 15283, 15284, 15285, 15286, 15287, 15288, 15289, 15290, 15291, 15292, 15293, 15294, 15295, 15296, 15297, 15298, 15299, 15300, 15301, 15302, 15303, 15304, 15305, 15306, 15307, 15308, 15309, 15310, 15311, 15312, 15313, 15314, 15315, 15316, 15317, 15318, 15319, 15320, 15321, 15322, 15323, 15324, 15325, 15326, 15327, 15328, 15329, 15330, 15331, 15332, 15333, 15334, 15335, 15336, 15337, 15338, 15339, 15340, 15341, 15342, 15343, 15344, 15345, 15346, 15347, 15348, 15349, 15350, 15351, 15352, 15353, 15354, 15355, 15356, 15357, 15358, 15359, 15360, 15361, 15362, 15363, 15364, 15365, 15366, 15367, 15368, 15369, 15370, 15371, 15372, 15373, 15374, 15375, 15376, 15377, 15378, 15379, 15380, 15381, 15382, 15383, 15384, 15385, 15386, 15387, 15388, 15389, 15390, 15391, 15392, 15393, 15394, 15395, 15396, 15397, 15398, 15399, 15400, 15401, 15402, 15403, 15404, 15405, 15406, 15407, 15408, 15409, 15410, 15411, 15412, 15413, 15414, 15415, 15416, 15417, 15418, 15419, 15420, 15421, 15422, 15423, 15424, 15425, 15426, 15427, 15428, 15429, 15430, 15431, 15432, 15433, 15434, 15435, 15436, 15437, 15438, 15439, 15440, 15441, 15442, 15443, 15444, 15445, 15446, 15447, 15448, 15449, 15450, 15451, 15452, 15453, 15454, 15455, 15456, 15457, 15458, 15459, 15460, 15461, 15462, 15463, 15464, 15465, 15466, 15467, 15468, 15469, 15470, 15471, 15472, 15473, 15474, 15475, 15476, 15477, 15478, 15479, 15480, 15481, 15482, 15483, 15484, 15485, 15486, 15487, 15488, 15489, 15490, 15491, 15492, 15493, 15494, 15495, 15496, 15497, 15498, 15499, 15500, 15501, 15502, 15503, 15504, 15505, 15506, 15507, 15508, 15509, 15510, 15511, 15512, 15513, 15514, 15515, 15516, 15517, 15518, 15519, 15520, 15521, 15522, 15523, 15524, 15525, 15526, 15527, 15528, 15529, 15530, 15531, 15532, 15533, 15534, 15535, 15536, 15537, 15538, 15539, 15540, 15541, 15542, 15543, 15544, 15545, 15546, 15547, 15548, 15549, 15550, 15551, 15552, 15553, 15554, 15555, 15556, 15557, 15558, 15559, 15560, 15561, 15562, 15563, 15564, 15565, 15566, 15567, 15568, 15569, 15570, 15571, 15572, 15573, 15574, 15575, 15576, 15577, 15578, 15579, 15580, 15581, 15582, 15583, 15584, 15585, 15586, 15587, 15588, 15589, 15590, 15591, 15592, 15593, 15594, 15595, 15596, 15597, 15598, 15599, 15600, 15601, 15602, 15603, 15604, 15605, 15606, 15607, 15608, 15609, 15610, 15611, 15612, 15613, 15614, 15615, 15616, 15617, 15618, 15619, 15620, 15621, 15622, 15623, 15624, 15625, 15626, 15627, 15628, 15629, 15630, 15631, 15632, 15633, 15634, 15635, 15636, 15637, 15638, 15639, 15640, 15641, 15642, 15643, 15644, 15645, 15646, 15647, 15648, 15649, 15650, 15651, 15652, 15653, 15654, 15655, 15656, 15657, 15658, 15659, 15660, 15661, 15662, 15663, 15664, 15665, 15666, 15667, 15668, 15669, 15670, 15671, 15672, 15673, 15674, 15675, 15676, 15677, 15678, 15679, 15680, 15681, 15682, 15683, 15684, 15685, 15686, 15687, 15688, 15689, 15690, 15691, 15692, 15693, 15694, 15695, 15696, 15697, 15698, 15699, 15700, 15701, 15702, 15703, 15704, 15705, 15706, 15707, 15708, 15709, 15710, 15711, 15712, 15713, 15714, 15715, 15716, 15717, 15718, 15719, 15720, 15721, 15722, 15723, 15724, 15725, 15726, 15727, 15728, 15729, 15730, 15731, 15732, 15733, 15734, 15735, 15736, 15737, 15738, 15739, 15740, 15741, 15742, 15743, 15744, 15745, 15746, 15747, 15748, 15749, 15750, 15751, 15752, 15753, 15754, 15755, 15756, 15757, 15758, 15759, 15760, 15761, 15762, 15763, 15764, 15765, 15766, 15767, 15768, 15769, 15770, 15771, 15772, 15773, 15774, 15775, 15776, 15777, 15778, 15779, 15780, 15781, 15782, 15783, 15784, 15785, 15786, 15787, 15788, 15789, 15790, 15791, 15792, 15793, 15794, 15795, 15796, 15797, 15798, 15799, 15800, 15801, 15802, 15803, 15804, 15805, 15806, 15807, 15808, 15809, 15810, 15811, 15812, 15813, 15814, 15815, 15816, 15817, 15818, 15819, 15820, 15821, 15822, 15823, 15824, 15825, 15826, 15827, 15828, 15829, 15830, 15831, 15832, 15833, 15834, 15835, 15836, 15837, 15838, 15839, 15840, 15841, 15842, 15843, 15844, 15845, 15846, 15847, 15848, 15849, 15850, 15851, 15852, 15853, 15854, 15855, 15856, 15857, 15858, 15859, 15860, 15861, 15862, 15863, 15864, 15865, 15866, 15867, 15868, 15869, 15870, 15871, 15872, 15873, 15874, 15875, 15876, 15877, 15878, 15879, 15880, 15881, 15882, 15883, 15884, 15885, 15886, 15887, 15888, 15889, 15890, 15891, 15892, 15893, 15894, 15895, 15896, 15897, 15898, 15899, 15900, 15901, 15902, 15903, 15904, 15905, 15906, 15907, 15908, 15909, 15910, 15911, 15912, 15913, 15914, 15915, 15916, 15917, 15918, 15919, 15920, 15921, 15922, 15923, 15924, 15925, 15926, 15927, 15928, 15929, 15930, 15931, 15932, 15933, 15934, 15935, 15936, 15937, 15938, 15939, 15940, 15941, 15942, 15943, 15944, 15945, 15946, 15947, 15948, 15949, 15950, 15951, 15952, 15953, 15954, 15955, 15956, 15957, 15958, 15959, 15960, 15961, 15962, 15963, 15964, 15965, 15966, 15967, 15968, 15969, 15970, 15971, 15972, 15973, 15974, 15975, 15976, 15977, 15978, 15979, 15980, 15981, 15982, 15983, 15984, 15985, 15986, 15987, 15988, 15989, 15990, 15991, 15992, 15993, 15994, 15995, 15996, 15997, 15998, 15999, 16000, 16001, 16002, 16003, 16004, 16005, 16006, 16007, 16008, 16009, 16010, 16011, 16012, 16013, 16014, 16015, 16016, 16017, 16018, 16019, 16020, 16021, 16022, 16023, 16024, 16025, 16026, 16027, 16028, 16029, 16030, 16031, 16032, 16033, 16034, 16035, 16036, 16037, 16038, 16039, 16040, 16041, 16042, 16043, 16044, 16045, 16046, 16047, 16048, 16049, 16050, 16051, 16052, 16053, 16054, 16055, 16056, 16057, 16058, 16059, 16060, 16061, 16062, 16063, 16064, 16065, 16066, 16067, 16068, 16069, 16070, 16071, 16072, 16073, 16074, 16075, 16076, 16077, 16078, 16079, 16080, 16081, 16082, 16083, 16084, 16085, 16086, 16087, 16088, 16089, 16090, 16091, 16092, 16093, 16094, 16095, 16096, 16097, 16098, 16099, 16100, 16101, 16102, 16103, 16104, 16105, 16106, 16107, 16108, 16109, 16110, 16111, 16112, 16113, 16114, 16115, 16116, 16117, 16118, 16119, 16120, 16121, 16122, 16123, 16124, 16125, 16126, 16127, 16128, 16129, 16130, 16131, 16132, 16133, 16134, 16135, 16136, 16137, 16138, 16139, 16140, 16141, 16142, 16143, 16144, 16145, 16146, 16147, 16148, 16149, 16150, 16151, 16152, 16153, 16154, 16155, 16156, 16157, 16158, 16159, 16160, 16161, 16162, 16163, 16164, 16165, 16166, 16167, 16168, 16169, 16170, 16171, 16172, 16173, 16174, 16175, 16176, 16177, 16178, 16179, 16180, 16181, 16182, 16183, 16184, 16185, 16186, 16187, 16188, 16189, 16190, 16191, 16192, 16193, 16194, 16195, 16196, 16197, 16198, 16199, 16200, 16201, 16202, 16203], "16___NUMERIC___ord_0_00": [16204, 16205, 16206], "17___CATEGORICAL___ord_1": [16207, 16208, 16209, 16210, 16211], "18___CATEGORICAL___ord_2": [16212, 16213, 16214, 16215, 16216, 16217], "19___CATEGORICAL___ord_3": [16218, 16219, 16220, 16221, 16222, 16223, 16224, 16225, 16226, 16227, 16228, 16229, 16230, 16231, 16232], "20___CATEGORICAL___ord_4": [16233, 16234, 16235, 16236, 16237, 16238, 16239, 16240, 16241, 16242, 16243, 16244, 16245, 16246, 16247, 16248, 16249, 16250, 16251, 16252, 16253, 16254, 16255, 16256, 16257, 16258], "21___CATEGORICAL___ord_5": [16259, 16260, 16261, 16262, 16263, 16264, 16265, 16266, 16267, 16268, 16269, 16270, 16271, 16272, 16273, 16274, 16275, 16276, 16277, 16278, 16279, 16280, 16281, 16282, 16283, 16284, 16285, 16286, 16287, 16288, 16289, 16290, 16291, 16292, 16293, 16294, 16295, 16296, 16297, 16298, 16299, 16300, 16301, 16302, 16303, 16304, 16305, 16306, 16307, 16308, 16309, 16310, 16311, 16312, 16313, 16314, 16315, 16316, 16317, 16318, 16319, 16320, 16321, 16322, 16323, 16324, 16325, 16326, 16327, 16328, 16329, 16330, 16331, 16332, 16333, 16334, 16335, 16336, 16337, 16338, 16339, 16340, 16341, 16342, 16343, 16344, 16345, 16346, 16347, 16348, 16349, 16350, 16351, 16352, 16353, 16354, 16355, 16356, 16357, 16358, 16359, 16360, 16361, 16362, 16363, 16364, 16365, 16366, 16367, 16368, 16369, 16370, 16371, 16372, 16373, 16374, 16375, 16376, 16377, 16378, 16379, 16380, 16381, 16382, 16383, 16384, 16385, 16386, 16387, 16388, 16389, 16390, 16391, 16392, 16393, 16394, 16395, 16396, 16397, 16398, 16399, 16400, 16401, 16402, 16403, 16404, 16405, 16406, 16407, 16408, 16409, 16410, 16411, 16412, 16413, 16414, 16415, 16416, 16417, 16418, 16419, 16420, 16421, 16422, 16423, 16424, 16425, 16426, 16427, 16428, 16429, 16430, 16431, 16432, 16433, 16434, 16435, 16436, 16437, 16438, 16439, 16440, 16441, 16442, 16443, 16444, 16445, 16446, 16447, 16448, 16449, 16450], "22___NUMERIC___day_00": [16451, 16452, 16453, 16454, 16455, 16456, 16457], "23___NUMERIC___month_00": [16458, 16459], "23___NUMERIC___month_01": [16460, 16461, 16462, 16463, 16464, 16465, 16466, 16467, 16468, 16469], "24___CATEGORICAL___target": [16470, 16471]}}, "tabular_max_length": 33, "relational_max_length": null, "tabular_col_size": 240000, "relational_col_size": null, "col_transform_data": {"id": {"max_len": 10, "numeric_precision": 4, "mx_sig": -1, "zfill": 6, "numeric_nparts": 1}, "ord_0": {"max_len": 10, "numeric_precision": 4, "mx_sig": -1, "zfill": 1, "numeric_nparts": 1}, "day": {"max_len": 10, "numeric_precision": 4, "mx_sig": -1, "zfill": 1, "numeric_nparts": 1}, "month": {"max_len": 10, "numeric_precision": 4, "mx_sig": -1, "zfill": 2, "numeric_nparts": 1}}, "in_col_transform_data": null, "col_idx_ids": {"0": [11, 12, 13], "1": [14, 15, 16, 17, 18, 19, 20, 21, 22, 23], "2": [24, 25, 26, 27, 28, 29, 30, 31, 32, 33], "3": [34, 35, 36, 37, 38, 39, 40, 41, 42, 43], "4": [44, 45, 46, 47, 48, 49, 50, 51, 52, 53], "5": [54, 55, 56, 57, 58, 59, 60, 61, 62, 63], "6": [64, 65], "7": [66, 67], "8": [68, 69], "9": [70, 71], "10": [72, 73], "11": [74, 75, 76], "12": [77, 78, 79, 80, 81, 82], "13": [83, 84, 85, 86, 87, 88], "14": [89, 90, 91, 92, 93, 94], "15": [95, 96, 97, 98], "16": [99, 100, 101, 102, 103, 104, 105, 106, 107, 108, 109, 110, 111, 112, 113, 114, 115, 116, 117, 118, 119, 120, 121, 122, 123, 124, 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], "17": [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, 485, 486, 487, 488, 489, 490, 491, 492, 493, 494, 495, 496, 497, 498, 499, 500, 501, 502, 503, 504, 505, 506, 507, 508, 509, 510, 511, 512, 513, 514, 515, 516, 517, 518, 519, 520, 521, 522, 523, 524, 525, 526, 527, 528, 529, 530, 531, 532, 533, 534, 535, 536, 537, 538, 539, 540, 541, 542, 543, 544, 545, 546, 547, 548, 549, 550, 551, 552, 553, 554, 555, 556, 557, 558, 559, 560, 561, 562, 563, 564, 565, 566, 567, 568, 569, 570, 571, 572, 573, 574, 575, 576, 577, 578, 579, 580, 581, 582, 583, 584, 585, 586, 587, 588, 589, 590, 591, 592, 593, 594, 595, 596, 597, 598, 599, 600, 601, 602, 603, 604, 605, 606, 607, 608, 609, 610, 611, 612, 613, 614, 615, 616, 617, 618, 619, 620, 621, 622, 623, 624, 625, 626, 627, 628, 629, 630, 631, 632, 633, 634, 635, 636, 637, 638, 639, 640, 641, 642, 643, 644, 645, 646, 647, 648, 649, 650, 651, 652, 653, 654, 655, 656, 657, 658, 659, 660, 661, 662, 663, 664, 665, 666, 667, 668, 669, 670, 671, 672, 673, 674, 675, 676, 677, 678, 679, 680, 681, 682, 683, 684, 685, 686, 687, 688, 689, 690, 691, 692, 693, 694, 695, 696, 697, 698, 699, 700, 701, 702, 703, 704, 705, 706, 707, 708, 709, 710, 711, 712, 713, 714, 715, 716, 717, 718, 719, 720, 721, 722, 723, 724, 725, 726, 727, 728, 729, 730, 731, 732, 733, 734, 735, 736, 737, 738, 739, 740, 741, 742, 743, 744, 745, 746, 747, 748, 749, 750, 751, 752, 753, 754, 755, 756, 757, 758, 759, 760, 761, 762, 763, 764, 765, 766, 767, 768, 769, 770, 771, 772, 773, 774, 775, 776, 777, 778, 779, 780, 781, 782, 783, 784, 785, 786, 787, 788, 789, 790, 791, 792, 793, 794, 795, 796, 797, 798, 799, 800, 801, 802, 803, 804, 805, 806, 807, 808, 809, 810, 811, 812, 813, 814, 815, 816, 817, 818, 819, 820, 821, 822, 823, 824, 825, 826, 827, 828, 829, 830, 831, 832, 833, 834, 835, 836, 837, 838, 839, 840, 841, 842], "18": [843, 844, 845, 846, 847, 848, 849, 850, 851, 852, 853, 854, 855, 856, 857, 858, 859, 860, 861, 862, 863, 864, 865, 866, 867, 868, 869, 870, 871, 872, 873, 874, 875, 876, 877, 878, 879, 880, 881, 882, 883, 884, 885, 886, 887, 888, 889, 890, 891, 892, 893, 894, 895, 896, 897, 898, 899, 900, 901, 902, 903, 904, 905, 906, 907, 908, 909, 910, 911, 912, 913, 914, 915, 916, 917, 918, 919, 920, 921, 922, 923, 924, 925, 926, 927, 928, 929, 930, 931, 932, 933, 934, 935, 936, 937, 938, 939, 940, 941, 942, 943, 944, 945, 946, 947, 948, 949, 950, 951, 952, 953, 954, 955, 956, 957, 958, 959, 960, 961, 962, 963, 964, 965, 966, 967, 968, 969, 970, 971, 972, 973, 974, 975, 976, 977, 978, 979, 980, 981, 982, 983, 984, 985, 986, 987, 988, 989, 990, 991, 992, 993, 994, 995, 996, 997, 998, 999, 1000, 1001, 1002, 1003, 1004, 1005, 1006, 1007, 1008, 1009, 1010, 1011, 1012, 1013, 1014, 1015, 1016, 1017, 1018, 1019, 1020, 1021, 1022, 1023, 1024, 1025, 1026, 1027, 1028, 1029, 1030, 1031, 1032, 1033, 1034, 1035, 1036, 1037, 1038, 1039, 1040, 1041, 1042, 1043, 1044, 1045, 1046, 1047, 1048, 1049, 1050, 1051, 1052, 1053, 1054, 1055, 1056, 1057, 1058, 1059, 1060, 1061, 1062, 1063, 1064, 1065, 1066, 1067, 1068, 1069, 1070, 1071, 1072, 1073, 1074, 1075, 1076, 1077, 1078, 1079, 1080, 1081, 1082, 1083, 1084, 1085, 1086, 1087, 1088, 1089, 1090, 1091, 1092, 1093, 1094, 1095, 1096, 1097, 1098, 1099, 1100, 1101, 1102, 1103, 1104, 1105, 1106, 1107, 1108, 1109, 1110, 1111, 1112, 1113, 1114, 1115, 1116, 1117, 1118, 1119, 1120, 1121, 1122, 1123, 1124, 1125, 1126, 1127, 1128, 1129, 1130, 1131, 1132, 1133, 1134, 1135, 1136, 1137, 1138, 1139, 1140, 1141, 1142, 1143, 1144, 1145, 1146, 1147, 1148, 1149, 1150, 1151, 1152, 1153, 1154, 1155, 1156, 1157, 1158, 1159, 1160, 1161, 1162, 1163, 1164, 1165, 1166, 1167, 1168, 1169, 1170, 1171, 1172, 1173, 1174, 1175, 1176, 1177, 1178, 1179, 1180, 1181, 1182, 1183, 1184, 1185, 1186, 1187, 1188, 1189, 1190, 1191, 1192, 1193, 1194, 1195, 1196, 1197, 1198, 1199, 1200, 1201, 1202, 1203, 1204, 1205, 1206, 1207, 1208, 1209, 1210, 1211, 1212, 1213, 1214, 1215, 1216, 1217, 1218, 1219, 1220, 1221, 1222, 1223, 1224, 1225, 1226, 1227, 1228, 1229, 1230, 1231, 1232, 1233, 1234, 1235, 1236, 1237, 1238, 1239, 1240, 1241, 1242, 1243, 1244, 1245, 1246, 1247, 1248, 1249, 1250, 1251, 1252, 1253, 1254, 1255, 1256, 1257, 1258, 1259, 1260, 1261, 1262, 1263, 1264, 1265, 1266, 1267, 1268, 1269, 1270, 1271, 1272, 1273, 1274, 1275, 1276, 1277, 1278, 1279, 1280, 1281, 1282, 1283, 1284, 1285, 1286, 1287, 1288, 1289, 1290, 1291, 1292, 1293, 1294, 1295, 1296, 1297, 1298, 1299, 1300, 1301, 1302, 1303, 1304, 1305, 1306, 1307, 1308, 1309, 1310, 1311, 1312, 1313, 1314, 1315, 1316, 1317, 1318, 1319, 1320, 1321, 1322, 1323, 1324, 1325, 1326, 1327, 1328, 1329, 1330, 1331, 1332, 1333, 1334, 1335, 1336, 1337, 1338, 1339, 1340, 1341, 1342, 1343, 1344, 1345, 1346, 1347, 1348, 1349, 1350, 1351, 1352, 1353, 1354, 1355, 1356, 1357, 1358, 1359, 1360, 1361, 1362, 1363, 1364, 1365, 1366, 1367, 1368, 1369, 1370, 1371, 1372, 1373, 1374, 1375, 1376, 1377, 1378, 1379, 1380, 1381, 1382, 1383, 1384, 1385, 1386, 1387, 1388, 1389, 1390, 1391, 1392, 1393, 1394, 1395, 1396, 1397, 1398, 1399, 1400, 1401, 1402, 1403, 1404, 1405, 1406, 1407, 1408, 1409, 1410, 1411, 1412, 1413, 1414, 1415, 1416, 1417, 1418, 1419, 1420, 1421, 1422, 1423, 1424, 1425, 1426, 1427, 1428, 1429, 1430, 1431, 1432, 1433, 1434, 1435, 1436, 1437, 1438, 1439, 1440, 1441, 1442, 1443, 1444, 1445, 1446, 1447, 1448, 1449, 1450, 1451, 1452, 1453, 1454, 1455, 1456, 1457, 1458, 1459, 1460, 1461, 1462, 1463, 1464, 1465, 1466, 1467, 1468, 1469, 1470, 1471, 1472, 1473, 1474, 1475, 1476, 1477, 1478, 1479, 1480, 1481, 1482, 1483, 1484, 1485, 1486, 1487, 1488, 1489, 1490, 1491, 1492, 1493, 1494, 1495, 1496, 1497, 1498, 1499, 1500, 1501, 1502, 1503, 1504, 1505, 1506, 1507, 1508, 1509, 1510, 1511, 1512, 1513, 1514, 1515, 1516, 1517, 1518, 1519, 1520, 1521, 1522, 1523, 1524, 1525, 1526, 1527, 1528, 1529, 1530, 1531, 1532, 1533, 1534, 1535, 1536, 1537, 1538, 1539, 1540, 1541, 1542, 1543, 1544, 1545, 1546, 1547, 1548, 1549, 1550, 1551, 1552, 1553, 1554, 1555, 1556, 1557, 1558, 1559, 1560, 1561, 1562, 1563, 1564, 1565, 1566, 1567, 1568, 1569, 1570, 1571, 1572, 1573, 1574, 1575, 1576, 1577, 1578, 1579, 1580, 1581, 1582, 1583, 1584, 1585, 1586, 1587, 1588, 1589, 1590, 1591, 1592, 1593, 1594, 1595, 1596, 1597, 1598, 1599, 1600, 1601, 1602, 1603, 1604, 1605, 1606, 1607, 1608, 1609, 1610, 1611, 1612, 1613, 1614, 1615, 1616, 1617, 1618, 1619, 1620, 1621, 1622, 1623, 1624, 1625, 1626, 1627, 1628, 1629, 1630, 1631, 1632, 1633, 1634, 1635, 1636, 1637, 1638, 1639, 1640, 1641, 1642, 1643, 1644, 1645, 1646, 1647, 1648, 1649, 1650, 1651, 1652, 1653, 1654, 1655, 1656, 1657, 1658, 1659, 1660, 1661, 1662, 1663, 1664, 1665, 1666, 1667, 1668, 1669, 1670, 1671, 1672, 1673, 1674, 1675, 1676, 1677, 1678, 1679, 1680, 1681, 1682, 1683, 1684, 1685, 1686, 1687, 1688, 1689, 1690, 1691, 1692, 1693, 1694, 1695, 1696, 1697, 1698, 1699, 1700, 1701, 1702, 1703, 1704, 1705, 1706, 1707, 1708, 1709, 1710, 1711, 1712, 1713, 1714, 1715, 1716, 1717, 1718, 1719, 1720, 1721, 1722, 1723, 1724, 1725, 1726, 1727, 1728, 1729, 1730, 1731, 1732, 1733, 1734, 1735, 1736, 1737, 1738, 1739, 1740, 1741, 1742, 1743, 1744, 1745, 1746, 1747, 1748, 1749, 1750, 1751, 1752, 1753, 1754, 1755, 1756, 1757, 1758, 1759, 1760, 1761, 1762, 1763, 1764, 1765, 1766, 1767, 1768, 1769, 1770, 1771, 1772, 1773, 1774, 1775, 1776, 1777, 1778, 1779, 1780, 1781, 1782, 1783, 1784, 1785, 1786, 1787, 1788, 1789, 1790, 1791, 1792, 1793, 1794, 1795, 1796, 1797, 1798, 1799, 1800, 1801, 1802, 1803, 1804, 1805, 1806, 1807, 1808, 1809, 1810, 1811, 1812, 1813, 1814, 1815, 1816, 1817, 1818, 1819, 1820, 1821, 1822, 1823, 1824, 1825, 1826, 1827, 1828, 1829, 1830, 1831, 1832, 1833, 1834, 1835, 1836, 1837, 1838, 1839, 1840, 1841, 1842, 1843, 1844, 1845, 1846, 1847, 1848, 1849, 1850, 1851, 1852, 1853, 1854, 1855, 1856, 1857, 1858, 1859, 1860, 1861, 1862, 1863, 1864, 1865, 1866, 1867, 1868, 1869, 1870, 1871, 1872, 1873, 1874, 1875, 1876, 1877, 1878, 1879, 1880, 1881, 1882, 1883, 1884, 1885, 1886, 1887, 1888, 1889, 1890, 1891, 1892, 1893, 1894, 1895, 1896, 1897, 1898, 1899, 1900, 1901, 1902, 1903, 1904, 1905, 1906, 1907, 1908, 1909, 1910, 1911, 1912, 1913, 1914, 1915, 1916, 1917, 1918, 1919, 1920, 1921, 1922, 1923, 1924, 1925, 1926, 1927, 1928, 1929, 1930, 1931, 1932, 1933, 1934, 1935, 1936, 1937, 1938, 1939, 1940, 1941, 1942, 1943, 1944, 1945, 1946, 1947, 1948, 1949, 1950, 1951, 1952, 1953, 1954, 1955, 1956, 1957, 1958, 1959, 1960, 1961, 1962, 1963, 1964, 1965, 1966, 1967, 1968, 1969, 1970, 1971, 1972, 1973, 1974, 1975, 1976, 1977, 1978, 1979, 1980, 1981, 1982, 1983, 1984, 1985, 1986, 1987, 1988, 1989, 1990, 1991, 1992, 1993, 1994, 1995, 1996, 1997, 1998, 1999, 2000, 2001, 2002, 2003, 2004, 2005, 2006, 2007, 2008, 2009, 2010, 2011, 2012, 2013, 2014, 2015, 2016, 2017, 2018, 2019, 2020, 2021, 2022, 2023, 2024, 2025, 2026, 2027, 2028, 2029, 2030, 2031, 2032, 2033, 2034, 2035, 2036, 2037, 2038, 2039, 2040, 2041, 2042, 2043, 2044, 2045, 2046, 2047, 2048, 2049, 2050, 2051, 2052, 2053, 2054, 2055, 2056, 2057, 2058, 2059, 2060, 2061], "19": [2062, 2063, 2064, 2065, 2066, 2067, 2068, 2069, 2070, 2071, 2072, 2073, 2074, 2075, 2076, 2077, 2078, 2079, 2080, 2081, 2082, 2083, 2084, 2085, 2086, 2087, 2088, 2089, 2090, 2091, 2092, 2093, 2094, 2095, 2096, 2097, 2098, 2099, 2100, 2101, 2102, 2103, 2104, 2105, 2106, 2107, 2108, 2109, 2110, 2111, 2112, 2113, 2114, 2115, 2116, 2117, 2118, 2119, 2120, 2121, 2122, 2123, 2124, 2125, 2126, 2127, 2128, 2129, 2130, 2131, 2132, 2133, 2134, 2135, 2136, 2137, 2138, 2139, 2140, 2141, 2142, 2143, 2144, 2145, 2146, 2147, 2148, 2149, 2150, 2151, 2152, 2153, 2154, 2155, 2156, 2157, 2158, 2159, 2160, 2161, 2162, 2163, 2164, 2165, 2166, 2167, 2168, 2169, 2170, 2171, 2172, 2173, 2174, 2175, 2176, 2177, 2178, 2179, 2180, 2181, 2182, 2183, 2184, 2185, 2186, 2187, 2188, 2189, 2190, 2191, 2192, 2193, 2194, 2195, 2196, 2197, 2198, 2199, 2200, 2201, 2202, 2203, 2204, 2205, 2206, 2207, 2208, 2209, 2210, 2211, 2212, 2213, 2214, 2215, 2216, 2217, 2218, 2219, 2220, 2221, 2222, 2223, 2224, 2225, 2226, 2227, 2228, 2229, 2230, 2231, 2232, 2233, 2234, 2235, 2236, 2237, 2238, 2239, 2240, 2241, 2242, 2243, 2244, 2245, 2246, 2247, 2248, 2249, 2250, 2251, 2252, 2253, 2254, 2255, 2256, 2257, 2258, 2259, 2260, 2261, 2262, 2263, 2264, 2265, 2266, 2267, 2268, 2269, 2270, 2271, 2272, 2273, 2274, 2275, 2276, 2277, 2278, 2279, 2280, 2281, 2282, 2283, 2284, 2285, 2286, 2287, 2288, 2289, 2290, 2291, 2292, 2293, 2294, 2295, 2296, 2297, 2298, 2299, 2300, 2301, 2302, 2303, 2304, 2305, 2306, 2307, 2308, 2309, 2310, 2311, 2312, 2313, 2314, 2315, 2316, 2317, 2318, 2319, 2320, 2321, 2322, 2323, 2324, 2325, 2326, 2327, 2328, 2329, 2330, 2331, 2332, 2333, 2334, 2335, 2336, 2337, 2338, 2339, 2340, 2341, 2342, 2343, 2344, 2345, 2346, 2347, 2348, 2349, 2350, 2351, 2352, 2353, 2354, 2355, 2356, 2357, 2358, 2359, 2360, 2361, 2362, 2363, 2364, 2365, 2366, 2367, 2368, 2369, 2370, 2371, 2372, 2373, 2374, 2375, 2376, 2377, 2378, 2379, 2380, 2381, 2382, 2383, 2384, 2385, 2386, 2387, 2388, 2389, 2390, 2391, 2392, 2393, 2394, 2395, 2396, 2397, 2398, 2399, 2400, 2401, 2402, 2403, 2404, 2405, 2406, 2407, 2408, 2409, 2410, 2411, 2412, 2413, 2414, 2415, 2416, 2417, 2418, 2419, 2420, 2421, 2422, 2423, 2424, 2425, 2426, 2427, 2428, 2429, 2430, 2431, 2432, 2433, 2434, 2435, 2436, 2437, 2438, 2439, 2440, 2441, 2442, 2443, 2444, 2445, 2446, 2447, 2448, 2449, 2450, 2451, 2452, 2453, 2454, 2455, 2456, 2457, 2458, 2459, 2460, 2461, 2462, 2463, 2464, 2465, 2466, 2467, 2468, 2469, 2470, 2471, 2472, 2473, 2474, 2475, 2476, 2477, 2478, 2479, 2480, 2481, 2482, 2483, 2484, 2485, 2486, 2487, 2488, 2489, 2490, 2491, 2492, 2493, 2494, 2495, 2496, 2497, 2498, 2499, 2500, 2501, 2502, 2503, 2504, 2505, 2506, 2507, 2508, 2509, 2510, 2511, 2512, 2513, 2514, 2515, 2516, 2517, 2518, 2519, 2520, 2521, 2522, 2523, 2524, 2525, 2526, 2527, 2528, 2529, 2530, 2531, 2532, 2533, 2534, 2535, 2536, 2537, 2538, 2539, 2540, 2541, 2542, 2543, 2544, 2545, 2546, 2547, 2548, 2549, 2550, 2551, 2552, 2553, 2554, 2555, 2556, 2557, 2558, 2559, 2560, 2561, 2562, 2563, 2564, 2565, 2566, 2567, 2568, 2569, 2570, 2571, 2572, 2573, 2574, 2575, 2576, 2577, 2578, 2579, 2580, 2581, 2582, 2583, 2584, 2585, 2586, 2587, 2588, 2589, 2590, 2591, 2592, 2593, 2594, 2595, 2596, 2597, 2598, 2599, 2600, 2601, 2602, 2603, 2604, 2605, 2606, 2607, 2608, 2609, 2610, 2611, 2612, 2613, 2614, 2615, 2616, 2617, 2618, 2619, 2620, 2621, 2622, 2623, 2624, 2625, 2626, 2627, 2628, 2629, 2630, 2631, 2632, 2633, 2634, 2635, 2636, 2637, 2638, 2639, 2640, 2641, 2642, 2643, 2644, 2645, 2646, 2647, 2648, 2649, 2650, 2651, 2652, 2653, 2654, 2655, 2656, 2657, 2658, 2659, 2660, 2661, 2662, 2663, 2664, 2665, 2666, 2667, 2668, 2669, 2670, 2671, 2672, 2673, 2674, 2675, 2676, 2677, 2678, 2679, 2680, 2681, 2682, 2683, 2684, 2685, 2686, 2687, 2688, 2689, 2690, 2691, 2692, 2693, 2694, 2695, 2696, 2697, 2698, 2699, 2700, 2701, 2702, 2703, 2704, 2705, 2706, 2707, 2708, 2709, 2710, 2711, 2712, 2713, 2714, 2715, 2716, 2717, 2718, 2719, 2720, 2721, 2722, 2723, 2724, 2725, 2726, 2727, 2728, 2729, 2730, 2731, 2732, 2733, 2734, 2735, 2736, 2737, 2738, 2739, 2740, 2741, 2742, 2743, 2744, 2745, 2746, 2747, 2748, 2749, 2750, 2751, 2752, 2753, 2754, 2755, 2756, 2757, 2758, 2759, 2760, 2761, 2762, 2763, 2764, 2765, 2766, 2767, 2768, 2769, 2770, 2771, 2772, 2773, 2774, 2775, 2776, 2777, 2778, 2779, 2780, 2781, 2782, 2783, 2784, 2785, 2786, 2787, 2788, 2789, 2790, 2791, 2792, 2793, 2794, 2795, 2796, 2797, 2798, 2799, 2800, 2801, 2802, 2803, 2804, 2805, 2806, 2807, 2808, 2809, 2810, 2811, 2812, 2813, 2814, 2815, 2816, 2817, 2818, 2819, 2820, 2821, 2822, 2823, 2824, 2825, 2826, 2827, 2828, 2829, 2830, 2831, 2832, 2833, 2834, 2835, 2836, 2837, 2838, 2839, 2840, 2841, 2842, 2843, 2844, 2845, 2846, 2847, 2848, 2849, 2850, 2851, 2852, 2853, 2854, 2855, 2856, 2857, 2858, 2859, 2860, 2861, 2862, 2863, 2864, 2865, 2866, 2867, 2868, 2869, 2870, 2871, 2872, 2873, 2874, 2875, 2876, 2877, 2878, 2879, 2880, 2881, 2882, 2883, 2884, 2885, 2886, 2887, 2888, 2889, 2890, 2891, 2892, 2893, 2894, 2895, 2896, 2897, 2898, 2899, 2900, 2901, 2902, 2903, 2904, 2905, 2906, 2907, 2908, 2909, 2910, 2911, 2912, 2913, 2914, 2915, 2916, 2917, 2918, 2919, 2920, 2921, 2922, 2923, 2924, 2925, 2926, 2927, 2928, 2929, 2930, 2931, 2932, 2933, 2934, 2935, 2936, 2937, 2938, 2939, 2940, 2941, 2942, 2943, 2944, 2945, 2946, 2947, 2948, 2949, 2950, 2951, 2952, 2953, 2954, 2955, 2956, 2957, 2958, 2959, 2960, 2961, 2962, 2963, 2964, 2965, 2966, 2967, 2968, 2969, 2970, 2971, 2972, 2973, 2974, 2975, 2976, 2977, 2978, 2979, 2980, 2981, 2982, 2983, 2984, 2985, 2986, 2987, 2988, 2989, 2990, 2991, 2992, 2993, 2994, 2995, 2996, 2997, 2998, 2999, 3000, 3001, 3002, 3003, 3004, 3005, 3006, 3007, 3008, 3009, 3010, 3011, 3012, 3013, 3014, 3015, 3016, 3017, 3018, 3019, 3020, 3021, 3022, 3023, 3024, 3025, 3026, 3027, 3028, 3029, 3030, 3031, 3032, 3033, 3034, 3035, 3036, 3037, 3038, 3039, 3040, 3041, 3042, 3043, 3044, 3045, 3046, 3047, 3048, 3049, 3050, 3051, 3052, 3053, 3054, 3055, 3056, 3057, 3058, 3059, 3060, 3061, 3062, 3063, 3064, 3065, 3066, 3067, 3068, 3069, 3070, 3071, 3072, 3073, 3074, 3075, 3076, 3077, 3078, 3079, 3080, 3081, 3082, 3083, 3084, 3085, 3086, 3087, 3088, 3089, 3090, 3091, 3092, 3093, 3094, 3095, 3096, 3097, 3098, 3099, 3100, 3101, 3102, 3103, 3104, 3105, 3106, 3107, 3108, 3109, 3110, 3111, 3112, 3113, 3114, 3115, 3116, 3117, 3118, 3119, 3120, 3121, 3122, 3123, 3124, 3125, 3126, 3127, 3128, 3129, 3130, 3131, 3132, 3133, 3134, 3135, 3136, 3137, 3138, 3139, 3140, 3141, 3142, 3143, 3144, 3145, 3146, 3147, 3148, 3149, 3150, 3151, 3152, 3153, 3154, 3155, 3156, 3157, 3158, 3159, 3160, 3161, 3162, 3163, 3164, 3165, 3166, 3167, 3168, 3169, 3170, 3171, 3172, 3173, 3174, 3175, 3176, 3177, 3178, 3179, 3180, 3181, 3182, 3183, 3184, 3185, 3186, 3187, 3188, 3189, 3190, 3191, 3192, 3193, 3194, 3195, 3196, 3197, 3198, 3199, 3200, 3201, 3202, 3203, 3204, 3205, 3206, 3207, 3208, 3209, 3210, 3211, 3212, 3213, 3214, 3215, 3216, 3217, 3218, 3219, 3220, 3221, 3222, 3223, 3224, 3225, 3226, 3227, 3228, 3229, 3230, 3231, 3232, 3233, 3234, 3235, 3236, 3237, 3238, 3239, 3240, 3241, 3242, 3243, 3244, 3245, 3246, 3247, 3248, 3249, 3250, 3251, 3252, 3253, 3254, 3255, 3256, 3257, 3258, 3259, 3260, 3261, 3262, 3263, 3264, 3265, 3266, 3267, 3268, 3269, 3270, 3271, 3272, 3273, 3274, 3275, 3276, 3277, 3278, 3279, 3280, 3281, 3282, 3283, 3284, 3285, 3286, 3287, 3288, 3289, 3290, 3291, 3292, 3293, 3294, 3295, 3296, 3297, 3298, 3299, 3300, 3301, 3302, 3303, 3304, 3305, 3306, 3307, 3308, 3309, 3310, 3311, 3312, 3313, 3314, 3315, 3316, 3317, 3318, 3319, 3320, 3321, 3322, 3323, 3324, 3325, 3326, 3327, 3328, 3329, 3330, 3331, 3332, 3333, 3334, 3335, 3336, 3337, 3338, 3339, 3340, 3341, 3342, 3343, 3344, 3345, 3346, 3347, 3348, 3349, 3350, 3351, 3352, 3353, 3354, 3355, 3356, 3357, 3358, 3359, 3360, 3361, 3362, 3363, 3364, 3365, 3366, 3367, 3368, 3369, 3370, 3371, 3372, 3373, 3374, 3375, 3376, 3377, 3378, 3379, 3380, 3381, 3382, 3383, 3384, 3385, 3386, 3387, 3388, 3389, 3390, 3391, 3392, 3393, 3394, 3395, 3396, 3397, 3398, 3399, 3400, 3401, 3402, 3403, 3404, 3405, 3406, 3407, 3408, 3409, 3410, 3411, 3412, 3413, 3414, 3415, 3416, 3417, 3418, 3419, 3420, 3421, 3422, 3423, 3424, 3425, 3426, 3427, 3428, 3429, 3430, 3431, 3432, 3433, 3434, 3435, 3436, 3437, 3438, 3439, 3440, 3441, 3442, 3443, 3444, 3445, 3446, 3447, 3448, 3449, 3450, 3451, 3452, 3453, 3454, 3455, 3456, 3457, 3458, 3459, 3460, 3461, 3462, 3463, 3464, 3465, 3466, 3467, 3468, 3469, 3470, 3471, 3472, 3473, 3474, 3475, 3476, 3477, 3478, 3479, 3480, 3481, 3482, 3483, 3484, 3485, 3486, 3487, 3488, 3489, 3490, 3491, 3492, 3493, 3494, 3495, 3496, 3497, 3498, 3499, 3500, 3501, 3502, 3503, 3504, 3505, 3506, 3507, 3508, 3509, 3510, 3511, 3512, 3513, 3514, 3515, 3516, 3517, 3518, 3519, 3520, 3521, 3522, 3523, 3524, 3525, 3526, 3527, 3528, 3529, 3530, 3531, 3532, 3533, 3534, 3535, 3536, 3537, 3538, 3539, 3540, 3541, 3542, 3543, 3544, 3545, 3546, 3547, 3548, 3549, 3550, 3551, 3552, 3553, 3554, 3555, 3556, 3557, 3558, 3559, 3560, 3561, 3562, 3563, 3564, 3565, 3566, 3567, 3568, 3569, 3570, 3571, 3572, 3573, 3574, 3575, 3576, 3577, 3578, 3579, 3580, 3581, 3582, 3583, 3584, 3585, 3586, 3587, 3588, 3589, 3590, 3591, 3592, 3593, 3594, 3595, 3596, 3597, 3598, 3599, 3600, 3601, 3602, 3603, 3604, 3605, 3606, 3607, 3608, 3609, 3610, 3611, 3612, 3613, 3614, 3615, 3616, 3617, 3618, 3619, 3620, 3621, 3622, 3623, 3624, 3625, 3626, 3627, 3628, 3629, 3630, 3631, 3632, 3633, 3634, 3635, 3636, 3637, 3638, 3639, 3640, 3641, 3642, 3643, 3644, 3645, 3646, 3647, 3648, 3649, 3650, 3651, 3652, 3653, 3654, 3655, 3656, 3657, 3658, 3659, 3660, 3661, 3662, 3663, 3664, 3665, 3666, 3667, 3668, 3669, 3670, 3671, 3672, 3673, 3674, 3675, 3676, 3677, 3678, 3679, 3680, 3681, 3682, 3683, 3684, 3685, 3686, 3687, 3688, 3689, 3690, 3691, 3692, 3693, 3694, 3695, 3696, 3697, 3698, 3699, 3700, 3701, 3702, 3703, 3704, 3705, 3706, 3707, 3708, 3709, 3710, 3711, 3712, 3713, 3714, 3715, 3716, 3717, 3718, 3719, 3720, 3721, 3722, 3723, 3724, 3725, 3726, 3727, 3728, 3729, 3730, 3731, 3732, 3733, 3734, 3735, 3736, 3737, 3738, 3739, 3740, 3741, 3742, 3743, 3744, 3745, 3746, 3747, 3748, 3749, 3750, 3751, 3752, 3753, 3754, 3755, 3756, 3757, 3758, 3759, 3760, 3761, 3762, 3763, 3764, 3765, 3766, 3767, 3768, 3769, 3770, 3771, 3772, 3773, 3774, 3775, 3776, 3777, 3778, 3779, 3780, 3781, 3782, 3783, 3784, 3785, 3786, 3787, 3788, 3789, 3790, 3791, 3792, 3793, 3794, 3795, 3796, 3797, 3798, 3799, 3800, 3801, 3802, 3803, 3804, 3805, 3806, 3807, 3808, 3809, 3810, 3811, 3812, 3813, 3814, 3815, 3816, 3817, 3818, 3819, 3820, 3821, 3822, 3823, 3824, 3825, 3826, 3827, 3828, 3829, 3830, 3831, 3832, 3833, 3834, 3835, 3836, 3837, 3838, 3839, 3840, 3841, 3842, 3843, 3844, 3845, 3846, 3847, 3848, 3849, 3850, 3851, 3852, 3853, 3854, 3855, 3856, 3857, 3858, 3859, 3860, 3861, 3862, 3863, 3864, 3865, 3866, 3867, 3868, 3869, 3870, 3871, 3872, 3873, 3874, 3875, 3876, 3877, 3878, 3879, 3880, 3881, 3882, 3883, 3884, 3885, 3886, 3887, 3888, 3889, 3890, 3891, 3892, 3893, 3894, 3895, 3896, 3897, 3898, 3899, 3900, 3901, 3902, 3903, 3904, 3905, 3906, 3907, 3908, 3909, 3910, 3911, 3912, 3913, 3914, 3915, 3916, 3917, 3918, 3919, 3920, 3921, 3922, 3923, 3924, 3925, 3926, 3927, 3928, 3929, 3930, 3931, 3932, 3933, 3934, 3935, 3936, 3937, 3938, 3939, 3940, 3941, 3942, 3943, 3944, 3945, 3946, 3947, 3948, 3949, 3950, 3951, 3952, 3953, 3954, 3955, 3956, 3957, 3958, 3959, 3960, 3961, 3962, 3963, 3964, 3965, 3966, 3967, 3968, 3969, 3970, 3971, 3972, 3973, 3974, 3975, 3976, 3977, 3978, 3979, 3980, 3981, 3982, 3983, 3984, 3985, 3986, 3987, 3988, 3989, 3990, 3991, 3992, 3993, 3994, 3995, 3996, 3997, 3998, 3999, 4000, 4001, 4002, 4003, 4004, 4005, 4006, 4007, 4008, 4009, 4010, 4011, 4012, 4013, 4014, 4015, 4016, 4017, 4018, 4019, 4020, 4021, 4022, 4023, 4024, 4025, 4026, 4027, 4028, 4029, 4030, 4031, 4032, 4033, 4034, 4035, 4036, 4037, 4038, 4039, 4040, 4041, 4042, 4043, 4044, 4045, 4046, 4047, 4048, 4049, 4050, 4051, 4052, 4053, 4054, 4055, 4056, 4057, 4058, 4059, 4060, 4061, 4062, 4063, 4064, 4065, 4066, 4067, 4068, 4069, 4070, 4071, 4072, 4073, 4074, 4075, 4076, 4077, 4078, 4079, 4080, 4081, 4082, 4083, 4084, 4085, 4086, 4087, 4088, 4089, 4090, 4091, 4092, 4093, 4094, 4095, 4096, 4097, 4098, 4099, 4100, 4101, 4102, 4103, 4104, 4105, 4106, 4107, 4108, 4109, 4110, 4111, 4112, 4113, 4114, 4115, 4116, 4117, 4118, 4119, 4120, 4121, 4122, 4123, 4124, 4125, 4126, 4127, 4128, 4129, 4130, 4131, 4132, 4133, 4134, 4135, 4136, 4137, 4138, 4139, 4140, 4141, 4142, 4143, 4144, 4145, 4146, 4147, 4148, 4149, 4150, 4151, 4152, 4153, 4154, 4155, 4156, 4157, 4158, 4159, 4160, 4161, 4162, 4163, 4164, 4165, 4166, 4167, 4168, 4169, 4170, 4171, 4172, 4173, 4174, 4175, 4176, 4177, 4178, 4179, 4180, 4181, 4182, 4183, 4184, 4185, 4186, 4187, 4188, 4189, 4190, 4191, 4192, 4193, 4194, 4195, 4196, 4197, 4198, 4199, 4200, 4201, 4202, 4203, 4204, 4205, 4206, 4207, 4208, 4209, 4210, 4211, 4212, 4213, 4214, 4215, 4216, 4217, 4218, 4219, 4220, 4221, 4222, 4223, 4224, 4225, 4226, 4227, 4228, 4229, 4230, 4231, 4232, 4233, 4234, 4235, 4236, 4237, 4238, 4239, 4240, 4241, 4242, 4243, 4244, 4245, 4246, 4247, 4248, 4249, 4250, 4251, 4252, 4253, 4254, 4255, 4256, 4257, 4258, 4259, 4260, 4261, 4262, 4263, 4264, 4265, 4266, 4267, 4268, 4269, 4270, 4271, 4272, 4273, 4274, 4275, 4276], "20": [4277, 4278, 4279, 4280, 4281, 4282, 4283, 4284, 4285, 4286, 4287, 4288, 4289, 4290, 4291, 4292, 4293, 4294, 4295, 4296, 4297, 4298, 4299, 4300, 4301, 4302, 4303, 4304, 4305, 4306, 4307, 4308, 4309, 4310, 4311, 4312, 4313, 4314, 4315, 4316, 4317, 4318, 4319, 4320, 4321, 4322, 4323, 4324, 4325, 4326, 4327, 4328, 4329, 4330, 4331, 4332, 4333, 4334, 4335, 4336, 4337, 4338, 4339, 4340, 4341, 4342, 4343, 4344, 4345, 4346, 4347, 4348, 4349, 4350, 4351, 4352, 4353, 4354, 4355, 4356, 4357, 4358, 4359, 4360, 4361, 4362, 4363, 4364, 4365, 4366, 4367, 4368, 4369, 4370, 4371, 4372, 4373, 4374, 4375, 4376, 4377, 4378, 4379, 4380, 4381, 4382, 4383, 4384, 4385, 4386, 4387, 4388, 4389, 4390, 4391, 4392, 4393, 4394, 4395, 4396, 4397, 4398, 4399, 4400, 4401, 4402, 4403, 4404, 4405, 4406, 4407, 4408, 4409, 4410, 4411, 4412, 4413, 4414, 4415, 4416, 4417, 4418, 4419, 4420, 4421, 4422, 4423, 4424, 4425, 4426, 4427, 4428, 4429, 4430, 4431, 4432, 4433, 4434, 4435, 4436, 4437, 4438, 4439, 4440, 4441, 4442, 4443, 4444, 4445, 4446, 4447, 4448, 4449, 4450, 4451, 4452, 4453, 4454, 4455, 4456, 4457, 4458, 4459, 4460, 4461, 4462, 4463, 4464, 4465, 4466, 4467, 4468, 4469, 4470, 4471, 4472, 4473, 4474, 4475, 4476, 4477, 4478, 4479, 4480, 4481, 4482, 4483, 4484, 4485, 4486, 4487, 4488, 4489, 4490, 4491, 4492, 4493, 4494, 4495, 4496, 4497, 4498, 4499, 4500, 4501, 4502, 4503, 4504, 4505, 4506, 4507, 4508, 4509, 4510, 4511, 4512, 4513, 4514, 4515, 4516, 4517, 4518, 4519, 4520, 4521, 4522, 4523, 4524, 4525, 4526, 4527, 4528, 4529, 4530, 4531, 4532, 4533, 4534, 4535, 4536, 4537, 4538, 4539, 4540, 4541, 4542, 4543, 4544, 4545, 4546, 4547, 4548, 4549, 4550, 4551, 4552, 4553, 4554, 4555, 4556, 4557, 4558, 4559, 4560, 4561, 4562, 4563, 4564, 4565, 4566, 4567, 4568, 4569, 4570, 4571, 4572, 4573, 4574, 4575, 4576, 4577, 4578, 4579, 4580, 4581, 4582, 4583, 4584, 4585, 4586, 4587, 4588, 4589, 4590, 4591, 4592, 4593, 4594, 4595, 4596, 4597, 4598, 4599, 4600, 4601, 4602, 4603, 4604, 4605, 4606, 4607, 4608, 4609, 4610, 4611, 4612, 4613, 4614, 4615, 4616, 4617, 4618, 4619, 4620, 4621, 4622, 4623, 4624, 4625, 4626, 4627, 4628, 4629, 4630, 4631, 4632, 4633, 4634, 4635, 4636, 4637, 4638, 4639, 4640, 4641, 4642, 4643, 4644, 4645, 4646, 4647, 4648, 4649, 4650, 4651, 4652, 4653, 4654, 4655, 4656, 4657, 4658, 4659, 4660, 4661, 4662, 4663, 4664, 4665, 4666, 4667, 4668, 4669, 4670, 4671, 4672, 4673, 4674, 4675, 4676, 4677, 4678, 4679, 4680, 4681, 4682, 4683, 4684, 4685, 4686, 4687, 4688, 4689, 4690, 4691, 4692, 4693, 4694, 4695, 4696, 4697, 4698, 4699, 4700, 4701, 4702, 4703, 4704, 4705, 4706, 4707, 4708, 4709, 4710, 4711, 4712, 4713, 4714, 4715, 4716, 4717, 4718, 4719, 4720, 4721, 4722, 4723, 4724, 4725, 4726, 4727, 4728, 4729, 4730, 4731, 4732, 4733, 4734, 4735, 4736, 4737, 4738, 4739, 4740, 4741, 4742, 4743, 4744, 4745, 4746, 4747, 4748, 4749, 4750, 4751, 4752, 4753, 4754, 4755, 4756, 4757, 4758, 4759, 4760, 4761, 4762, 4763, 4764, 4765, 4766, 4767, 4768, 4769, 4770, 4771, 4772, 4773, 4774, 4775, 4776, 4777, 4778, 4779, 4780, 4781, 4782, 4783, 4784, 4785, 4786, 4787, 4788, 4789, 4790, 4791, 4792, 4793, 4794, 4795, 4796, 4797, 4798, 4799, 4800, 4801, 4802, 4803, 4804, 4805, 4806, 4807, 4808, 4809, 4810, 4811, 4812, 4813, 4814, 4815, 4816, 4817, 4818, 4819, 4820, 4821, 4822, 4823, 4824, 4825, 4826, 4827, 4828, 4829, 4830, 4831, 4832, 4833, 4834, 4835, 4836, 4837, 4838, 4839, 4840, 4841, 4842, 4843, 4844, 4845, 4846, 4847, 4848, 4849, 4850, 4851, 4852, 4853, 4854, 4855, 4856, 4857, 4858, 4859, 4860, 4861, 4862, 4863, 4864, 4865, 4866, 4867, 4868, 4869, 4870, 4871, 4872, 4873, 4874, 4875, 4876, 4877, 4878, 4879, 4880, 4881, 4882, 4883, 4884, 4885, 4886, 4887, 4888, 4889, 4890, 4891, 4892, 4893, 4894, 4895, 4896, 4897, 4898, 4899, 4900, 4901, 4902, 4903, 4904, 4905, 4906, 4907, 4908, 4909, 4910, 4911, 4912, 4913, 4914, 4915, 4916, 4917, 4918, 4919, 4920, 4921, 4922, 4923, 4924, 4925, 4926, 4927, 4928, 4929, 4930, 4931, 4932, 4933, 4934, 4935, 4936, 4937, 4938, 4939, 4940, 4941, 4942, 4943, 4944, 4945, 4946, 4947, 4948, 4949, 4950, 4951, 4952, 4953, 4954, 4955, 4956, 4957, 4958, 4959, 4960, 4961, 4962, 4963, 4964, 4965, 4966, 4967, 4968, 4969, 4970, 4971, 4972, 4973, 4974, 4975, 4976, 4977, 4978, 4979, 4980, 4981, 4982, 4983, 4984, 4985, 4986, 4987, 4988, 4989, 4990, 4991, 4992, 4993, 4994, 4995, 4996, 4997, 4998, 4999, 5000, 5001, 5002, 5003, 5004, 5005, 5006, 5007, 5008, 5009, 5010, 5011, 5012, 5013, 5014, 5015, 5016, 5017, 5018, 5019, 5020, 5021, 5022, 5023, 5024, 5025, 5026, 5027, 5028, 5029, 5030, 5031, 5032, 5033, 5034, 5035, 5036, 5037, 5038, 5039, 5040, 5041, 5042, 5043, 5044, 5045, 5046, 5047, 5048, 5049, 5050, 5051, 5052, 5053, 5054, 5055, 5056, 5057, 5058, 5059, 5060, 5061, 5062, 5063, 5064, 5065, 5066, 5067, 5068, 5069, 5070, 5071, 5072, 5073, 5074, 5075, 5076, 5077, 5078, 5079, 5080, 5081, 5082, 5083, 5084, 5085, 5086, 5087, 5088, 5089, 5090, 5091, 5092, 5093, 5094, 5095, 5096, 5097, 5098, 5099, 5100, 5101, 5102, 5103, 5104, 5105, 5106, 5107, 5108, 5109, 5110, 5111, 5112, 5113, 5114, 5115, 5116, 5117, 5118, 5119, 5120, 5121, 5122, 5123, 5124, 5125, 5126, 5127, 5128, 5129, 5130, 5131, 5132, 5133, 5134, 5135, 5136, 5137, 5138, 5139, 5140, 5141, 5142, 5143, 5144, 5145, 5146, 5147, 5148, 5149, 5150, 5151, 5152, 5153, 5154, 5155, 5156, 5157, 5158, 5159, 5160, 5161, 5162, 5163, 5164, 5165, 5166, 5167, 5168, 5169, 5170, 5171, 5172, 5173, 5174, 5175, 5176, 5177, 5178, 5179, 5180, 5181, 5182, 5183, 5184, 5185, 5186, 5187, 5188, 5189, 5190, 5191, 5192, 5193, 5194, 5195, 5196, 5197, 5198, 5199, 5200, 5201, 5202, 5203, 5204, 5205, 5206, 5207, 5208, 5209, 5210, 5211, 5212, 5213, 5214, 5215, 5216, 5217, 5218, 5219, 5220, 5221, 5222, 5223, 5224, 5225, 5226, 5227, 5228, 5229, 5230, 5231, 5232, 5233, 5234, 5235, 5236, 5237, 5238, 5239, 5240, 5241, 5242, 5243, 5244, 5245, 5246, 5247, 5248, 5249, 5250, 5251, 5252, 5253, 5254, 5255, 5256, 5257, 5258, 5259, 5260, 5261, 5262, 5263, 5264, 5265, 5266, 5267, 5268, 5269, 5270, 5271, 5272, 5273, 5274, 5275, 5276, 5277, 5278, 5279, 5280, 5281, 5282, 5283, 5284, 5285, 5286, 5287, 5288, 5289, 5290, 5291, 5292, 5293, 5294, 5295, 5296, 5297, 5298, 5299, 5300, 5301, 5302, 5303, 5304, 5305, 5306, 5307, 5308, 5309, 5310, 5311, 5312, 5313, 5314, 5315, 5316, 5317, 5318, 5319, 5320, 5321, 5322, 5323, 5324, 5325, 5326, 5327, 5328, 5329, 5330, 5331, 5332, 5333, 5334, 5335, 5336, 5337, 5338, 5339, 5340, 5341, 5342, 5343, 5344, 5345, 5346, 5347, 5348, 5349, 5350, 5351, 5352, 5353, 5354, 5355, 5356, 5357, 5358, 5359, 5360, 5361, 5362, 5363, 5364, 5365, 5366, 5367, 5368, 5369, 5370, 5371, 5372, 5373, 5374, 5375, 5376, 5377, 5378, 5379, 5380, 5381, 5382, 5383, 5384, 5385, 5386, 5387, 5388, 5389, 5390, 5391, 5392, 5393, 5394, 5395, 5396, 5397, 5398, 5399, 5400, 5401, 5402, 5403, 5404, 5405, 5406, 5407, 5408, 5409, 5410, 5411, 5412, 5413, 5414, 5415, 5416, 5417, 5418, 5419, 5420, 5421, 5422, 5423, 5424, 5425, 5426, 5427, 5428, 5429, 5430, 5431, 5432, 5433, 5434, 5435, 5436, 5437, 5438, 5439, 5440, 5441, 5442, 5443, 5444, 5445, 5446, 5447, 5448, 5449, 5450, 5451, 5452, 5453, 5454, 5455, 5456, 5457, 5458, 5459, 5460, 5461, 5462, 5463, 5464, 5465, 5466, 5467, 5468, 5469, 5470, 5471, 5472, 5473, 5474, 5475, 5476, 5477, 5478, 5479, 5480, 5481, 5482, 5483, 5484, 5485, 5486, 5487, 5488, 5489, 5490, 5491, 5492, 5493, 5494, 5495, 5496, 5497, 5498, 5499, 5500, 5501, 5502, 5503, 5504, 5505, 5506, 5507, 5508, 5509, 5510, 5511, 5512, 5513, 5514, 5515, 5516, 5517, 5518, 5519, 5520, 5521, 5522, 5523, 5524, 5525, 5526, 5527, 5528, 5529, 5530, 5531, 5532, 5533, 5534, 5535, 5536, 5537, 5538, 5539, 5540, 5541, 5542, 5543, 5544, 5545, 5546, 5547, 5548, 5549, 5550, 5551, 5552, 5553, 5554, 5555, 5556, 5557, 5558, 5559, 5560, 5561, 5562, 5563, 5564, 5565, 5566, 5567, 5568, 5569, 5570, 5571, 5572, 5573, 5574, 5575, 5576, 5577, 5578, 5579, 5580, 5581, 5582, 5583, 5584, 5585, 5586, 5587, 5588, 5589, 5590, 5591, 5592, 5593, 5594, 5595, 5596, 5597, 5598, 5599, 5600, 5601, 5602, 5603, 5604, 5605, 5606, 5607, 5608, 5609, 5610, 5611, 5612, 5613, 5614, 5615, 5616, 5617, 5618, 5619, 5620, 5621, 5622, 5623, 5624, 5625, 5626, 5627, 5628, 5629, 5630, 5631, 5632, 5633, 5634, 5635, 5636, 5637, 5638, 5639, 5640, 5641, 5642, 5643, 5644, 5645, 5646, 5647, 5648, 5649, 5650, 5651, 5652, 5653, 5654, 5655, 5656, 5657, 5658, 5659, 5660, 5661, 5662, 5663, 5664, 5665, 5666, 5667, 5668, 5669, 5670, 5671, 5672, 5673, 5674, 5675, 5676, 5677, 5678, 5679, 5680, 5681, 5682, 5683, 5684, 5685, 5686, 5687, 5688, 5689, 5690, 5691, 5692, 5693, 5694, 5695, 5696, 5697, 5698, 5699, 5700, 5701, 5702, 5703, 5704, 5705, 5706, 5707, 5708, 5709, 5710, 5711, 5712, 5713, 5714, 5715, 5716, 5717, 5718, 5719, 5720, 5721, 5722, 5723, 5724, 5725, 5726, 5727, 5728, 5729, 5730, 5731, 5732, 5733, 5734, 5735, 5736, 5737, 5738, 5739, 5740, 5741, 5742, 5743, 5744, 5745, 5746, 5747, 5748, 5749, 5750, 5751, 5752, 5753, 5754, 5755, 5756, 5757, 5758, 5759, 5760, 5761, 5762, 5763, 5764, 5765, 5766, 5767, 5768, 5769, 5770, 5771, 5772, 5773, 5774, 5775, 5776, 5777, 5778, 5779, 5780, 5781, 5782, 5783, 5784, 5785, 5786, 5787, 5788, 5789, 5790, 5791, 5792, 5793, 5794, 5795, 5796, 5797, 5798, 5799, 5800, 5801, 5802, 5803, 5804, 5805, 5806, 5807, 5808, 5809, 5810, 5811, 5812, 5813, 5814, 5815, 5816, 5817, 5818, 5819, 5820, 5821, 5822, 5823, 5824, 5825, 5826, 5827, 5828, 5829, 5830, 5831, 5832, 5833, 5834, 5835, 5836, 5837, 5838, 5839, 5840, 5841, 5842, 5843, 5844, 5845, 5846, 5847, 5848, 5849, 5850, 5851, 5852, 5853, 5854, 5855, 5856, 5857, 5858, 5859, 5860, 5861, 5862, 5863, 5864, 5865, 5866, 5867, 5868, 5869, 5870, 5871, 5872, 5873, 5874, 5875, 5876, 5877, 5878, 5879, 5880, 5881, 5882, 5883, 5884, 5885, 5886, 5887, 5888, 5889, 5890, 5891, 5892, 5893, 5894, 5895, 5896, 5897, 5898, 5899, 5900, 5901, 5902, 5903, 5904, 5905, 5906, 5907, 5908, 5909, 5910, 5911, 5912, 5913, 5914, 5915, 5916, 5917, 5918, 5919, 5920, 5921, 5922, 5923, 5924, 5925, 5926, 5927, 5928, 5929, 5930, 5931, 5932, 5933, 5934, 5935, 5936, 5937, 5938, 5939, 5940, 5941, 5942, 5943, 5944, 5945, 5946, 5947, 5948, 5949, 5950, 5951, 5952, 5953, 5954, 5955, 5956, 5957, 5958, 5959, 5960, 5961, 5962, 5963, 5964, 5965, 5966, 5967, 5968, 5969, 5970, 5971, 5972, 5973, 5974, 5975, 5976, 5977, 5978, 5979, 5980, 5981, 5982, 5983, 5984, 5985, 5986, 5987, 5988, 5989, 5990, 5991, 5992, 5993, 5994, 5995, 5996, 5997, 5998, 5999, 6000, 6001, 6002, 6003, 6004, 6005, 6006, 6007, 6008, 6009, 6010, 6011, 6012, 6013, 6014, 6015, 6016, 6017, 6018, 6019, 6020, 6021, 6022, 6023, 6024, 6025, 6026, 6027, 6028, 6029, 6030, 6031, 6032, 6033, 6034, 6035, 6036, 6037, 6038, 6039, 6040, 6041, 6042, 6043, 6044, 6045, 6046, 6047, 6048, 6049, 6050, 6051, 6052, 6053, 6054, 6055, 6056, 6057, 6058, 6059, 6060, 6061, 6062, 6063, 6064, 6065, 6066, 6067, 6068, 6069, 6070, 6071, 6072, 6073, 6074, 6075, 6076, 6077, 6078, 6079, 6080, 6081, 6082, 6083, 6084, 6085, 6086, 6087, 6088, 6089, 6090, 6091, 6092, 6093, 6094, 6095, 6096, 6097, 6098, 6099, 6100, 6101, 6102, 6103, 6104, 6105, 6106, 6107, 6108, 6109, 6110, 6111, 6112, 6113, 6114, 6115, 6116, 6117, 6118, 6119, 6120, 6121, 6122, 6123, 6124, 6125, 6126, 6127, 6128, 6129, 6130, 6131, 6132, 6133, 6134, 6135, 6136, 6137, 6138, 6139, 6140, 6141, 6142, 6143, 6144, 6145, 6146, 6147, 6148, 6149, 6150, 6151, 6152, 6153, 6154, 6155, 6156, 6157, 6158, 6159, 6160, 6161, 6162, 6163, 6164, 6165, 6166, 6167, 6168, 6169, 6170, 6171, 6172, 6173, 6174, 6175, 6176, 6177, 6178, 6179, 6180, 6181, 6182, 6183, 6184, 6185, 6186, 6187, 6188, 6189, 6190, 6191, 6192, 6193, 6194, 6195, 6196, 6197, 6198, 6199, 6200, 6201, 6202, 6203, 6204, 6205, 6206, 6207, 6208, 6209, 6210, 6211, 6212, 6213, 6214, 6215, 6216, 6217, 6218, 6219, 6220, 6221, 6222, 6223, 6224, 6225, 6226, 6227, 6228, 6229, 6230, 6231, 6232, 6233, 6234, 6235, 6236, 6237, 6238, 6239, 6240, 6241, 6242, 6243, 6244, 6245, 6246, 6247, 6248, 6249, 6250, 6251, 6252, 6253, 6254, 6255, 6256, 6257, 6258, 6259, 6260, 6261, 6262, 6263, 6264, 6265, 6266, 6267, 6268, 6269, 6270, 6271, 6272, 6273, 6274, 6275, 6276, 6277, 6278, 6279, 6280, 6281, 6282, 6283, 6284, 6285, 6286, 6287, 6288, 6289, 6290, 6291, 6292, 6293, 6294, 6295, 6296, 6297, 6298, 6299, 6300, 6301, 6302, 6303, 6304, 6305, 6306, 6307, 6308, 6309, 6310, 6311, 6312, 6313, 6314, 6315, 6316, 6317, 6318, 6319, 6320, 6321, 6322, 6323, 6324, 6325, 6326, 6327, 6328, 6329, 6330, 6331, 6332, 6333, 6334, 6335, 6336, 6337, 6338, 6339, 6340, 6341, 6342, 6343, 6344, 6345, 6346, 6347, 6348, 6349, 6350, 6351, 6352, 6353, 6354, 6355, 6356, 6357, 6358, 6359, 6360, 6361, 6362, 6363, 6364, 6365, 6366, 6367, 6368, 6369, 6370, 6371, 6372, 6373, 6374, 6375, 6376, 6377, 6378, 6379, 6380, 6381, 6382, 6383, 6384, 6385, 6386, 6387, 6388, 6389, 6390, 6391, 6392, 6393, 6394, 6395, 6396, 6397, 6398, 6399, 6400, 6401, 6402, 6403, 6404, 6405, 6406, 6407, 6408, 6409, 6410, 6411, 6412, 6413, 6414, 6415, 6416, 6417, 6418, 6419, 6420, 6421, 6422, 6423, 6424, 6425, 6426, 6427, 6428, 6429, 6430, 6431, 6432, 6433, 6434, 6435, 6436, 6437, 6438, 6439, 6440, 6441, 6442, 6443, 6444, 6445, 6446, 6447, 6448, 6449, 6450, 6451, 6452, 6453, 6454, 6455, 6456, 6457, 6458, 6459, 6460, 6461, 6462, 6463, 6464, 6465, 6466, 6467, 6468, 6469, 6470, 6471, 6472, 6473, 6474, 6475, 6476, 6477, 6478, 6479, 6480, 6481, 6482, 6483, 6484, 6485, 6486, 6487, 6488, 6489, 6490, 6491, 6492, 6493, 6494, 6495, 6496, 6497, 6498, 6499, 6500, 6501, 6502, 6503, 6504, 6505, 6506, 6507, 6508, 6509, 6510, 6511, 6512, 6513, 6514, 6515, 6516, 6517, 6518, 6519, 6520, 6521, 6522, 6523, 6524, 6525, 6526, 6527, 6528, 6529, 6530, 6531, 6532, 6533, 6534, 6535, 6536, 6537, 6538, 6539, 6540, 6541, 6542, 6543, 6544, 6545, 6546, 6547, 6548, 6549, 6550, 6551, 6552, 6553, 6554, 6555, 6556, 6557, 6558, 6559, 6560, 6561, 6562, 6563, 6564, 6565, 6566, 6567, 6568, 6569, 6570, 6571, 6572, 6573, 6574, 6575, 6576, 6577, 6578, 6579, 6580, 6581, 6582, 6583, 6584, 6585, 6586, 6587, 6588, 6589, 6590, 6591, 6592, 6593, 6594, 6595, 6596, 6597, 6598, 6599, 6600, 6601, 6602, 6603, 6604, 6605, 6606, 6607, 6608, 6609, 6610, 6611, 6612, 6613, 6614, 6615, 6616, 6617, 6618, 6619, 6620, 6621, 6622, 6623, 6624, 6625, 6626, 6627, 6628, 6629, 6630, 6631, 6632, 6633, 6634, 6635, 6636, 6637, 6638, 6639, 6640, 6641, 6642, 6643, 6644, 6645, 6646, 6647, 6648, 6649, 6650, 6651, 6652, 6653, 6654, 6655, 6656, 6657, 6658, 6659, 6660, 6661, 6662, 6663, 6664, 6665, 6666, 6667, 6668, 6669, 6670, 6671, 6672, 6673, 6674, 6675, 6676, 6677, 6678, 6679, 6680, 6681, 6682, 6683, 6684, 6685, 6686, 6687, 6688, 6689, 6690, 6691, 6692, 6693, 6694, 6695, 6696, 6697, 6698, 6699, 6700, 6701, 6702, 6703, 6704, 6705, 6706, 6707, 6708, 6709, 6710, 6711, 6712, 6713, 6714, 6715, 6716, 6717, 6718, 6719, 6720, 6721, 6722, 6723, 6724, 6725, 6726, 6727, 6728, 6729, 6730, 6731, 6732, 6733, 6734, 6735, 6736, 6737, 6738, 6739, 6740, 6741, 6742, 6743, 6744, 6745, 6746, 6747, 6748, 6749, 6750, 6751, 6752, 6753, 6754, 6755, 6756, 6757, 6758, 6759, 6760, 6761, 6762, 6763, 6764, 6765, 6766, 6767, 6768, 6769, 6770, 6771, 6772, 6773, 6774, 6775, 6776, 6777, 6778, 6779, 6780, 6781, 6782, 6783, 6784, 6785, 6786, 6787, 6788, 6789, 6790, 6791, 6792, 6793, 6794, 6795, 6796, 6797, 6798, 6799, 6800, 6801, 6802, 6803, 6804, 6805, 6806, 6807, 6808, 6809, 6810, 6811, 6812, 6813, 6814, 6815, 6816, 6817, 6818, 6819, 6820, 6821, 6822, 6823, 6824, 6825, 6826, 6827, 6828, 6829, 6830, 6831, 6832, 6833, 6834, 6835, 6836, 6837, 6838, 6839, 6840, 6841, 6842, 6843, 6844, 6845, 6846, 6847, 6848, 6849, 6850, 6851, 6852, 6853, 6854, 6855, 6856, 6857, 6858, 6859, 6860, 6861, 6862, 6863, 6864, 6865, 6866, 6867, 6868, 6869, 6870, 6871, 6872, 6873, 6874, 6875, 6876, 6877, 6878, 6879, 6880, 6881, 6882, 6883, 6884, 6885, 6886, 6887, 6888, 6889, 6890, 6891, 6892, 6893, 6894, 6895, 6896, 6897, 6898, 6899, 6900, 6901, 6902, 6903, 6904, 6905, 6906, 6907, 6908, 6909, 6910, 6911, 6912, 6913, 6914, 6915, 6916, 6917, 6918, 6919, 6920, 6921, 6922, 6923, 6924, 6925, 6926, 6927, 6928, 6929, 6930, 6931, 6932, 6933, 6934, 6935, 6936, 6937, 6938, 6939, 6940, 6941, 6942, 6943, 6944, 6945, 6946, 6947, 6948, 6949, 6950, 6951, 6952, 6953, 6954, 6955, 6956, 6957, 6958, 6959, 6960, 6961, 6962, 6963, 6964, 6965, 6966, 6967, 6968, 6969, 6970, 6971, 6972, 6973, 6974, 6975, 6976, 6977, 6978, 6979, 6980, 6981, 6982, 6983, 6984, 6985, 6986, 6987, 6988, 6989, 6990, 6991, 6992, 6993, 6994, 6995, 6996, 6997, 6998, 6999, 7000, 7001, 7002, 7003, 7004, 7005, 7006, 7007, 7008, 7009, 7010, 7011, 7012, 7013, 7014, 7015, 7016, 7017, 7018, 7019, 7020, 7021, 7022, 7023, 7024, 7025, 7026, 7027, 7028, 7029, 7030, 7031, 7032, 7033, 7034, 7035, 7036, 7037, 7038, 7039, 7040, 7041, 7042, 7043, 7044, 7045, 7046, 7047, 7048, 7049, 7050, 7051, 7052, 7053, 7054, 7055, 7056, 7057, 7058, 7059, 7060, 7061, 7062, 7063, 7064, 7065, 7066, 7067, 7068, 7069, 7070, 7071, 7072, 7073, 7074, 7075, 7076, 7077, 7078, 7079, 7080, 7081, 7082, 7083, 7084, 7085, 7086, 7087, 7088, 7089, 7090, 7091, 7092, 7093, 7094, 7095, 7096, 7097, 7098, 7099, 7100, 7101, 7102, 7103, 7104, 7105, 7106, 7107, 7108, 7109, 7110, 7111, 7112, 7113, 7114, 7115, 7116, 7117, 7118, 7119, 7120, 7121, 7122, 7123, 7124, 7125, 7126, 7127, 7128, 7129, 7130, 7131, 7132, 7133, 7134, 7135, 7136, 7137, 7138, 7139, 7140, 7141, 7142, 7143, 7144, 7145, 7146, 7147, 7148, 7149, 7150, 7151, 7152, 7153, 7154, 7155, 7156, 7157, 7158, 7159, 7160, 7161, 7162, 7163, 7164, 7165, 7166, 7167, 7168, 7169, 7170, 7171, 7172, 7173, 7174, 7175, 7176, 7177, 7178, 7179, 7180, 7181, 7182, 7183, 7184, 7185, 7186, 7187, 7188, 7189, 7190, 7191, 7192, 7193, 7194, 7195, 7196, 7197, 7198, 7199, 7200, 7201, 7202, 7203, 7204, 7205, 7206, 7207, 7208, 7209, 7210, 7211, 7212, 7213, 7214, 7215, 7216, 7217, 7218, 7219, 7220, 7221, 7222, 7223, 7224, 7225, 7226, 7227, 7228, 7229, 7230, 7231, 7232, 7233, 7234, 7235, 7236, 7237, 7238, 7239, 7240, 7241, 7242, 7243, 7244, 7245, 7246, 7247, 7248, 7249, 7250, 7251, 7252, 7253, 7254, 7255, 7256, 7257, 7258, 7259, 7260, 7261, 7262, 7263, 7264, 7265, 7266, 7267, 7268, 7269, 7270, 7271, 7272, 7273, 7274, 7275, 7276, 7277, 7278, 7279, 7280, 7281, 7282, 7283, 7284, 7285, 7286, 7287, 7288, 7289, 7290, 7291, 7292, 7293, 7294, 7295, 7296, 7297, 7298, 7299, 7300, 7301, 7302, 7303, 7304, 7305, 7306, 7307, 7308, 7309, 7310, 7311, 7312, 7313, 7314, 7315, 7316, 7317, 7318, 7319, 7320, 7321, 7322, 7323, 7324, 7325, 7326, 7327, 7328, 7329, 7330, 7331, 7332, 7333, 7334, 7335, 7336, 7337, 7338, 7339, 7340, 7341, 7342, 7343, 7344, 7345, 7346, 7347, 7348, 7349, 7350, 7351, 7352, 7353, 7354, 7355, 7356, 7357, 7358, 7359, 7360, 7361, 7362, 7363, 7364, 7365, 7366, 7367, 7368, 7369, 7370, 7371, 7372, 7373, 7374, 7375, 7376, 7377, 7378, 7379, 7380, 7381, 7382, 7383, 7384, 7385, 7386, 7387, 7388, 7389, 7390, 7391, 7392, 7393, 7394, 7395, 7396, 7397, 7398, 7399, 7400, 7401, 7402, 7403, 7404, 7405, 7406, 7407, 7408, 7409, 7410, 7411, 7412, 7413, 7414, 7415, 7416, 7417, 7418, 7419, 7420, 7421, 7422, 7423, 7424, 7425, 7426, 7427, 7428, 7429, 7430, 7431, 7432, 7433, 7434, 7435, 7436, 7437, 7438, 7439, 7440, 7441, 7442, 7443, 7444, 7445, 7446, 7447, 7448, 7449, 7450, 7451, 7452, 7453, 7454, 7455, 7456, 7457, 7458, 7459, 7460, 7461, 7462, 7463, 7464, 7465, 7466, 7467, 7468, 7469, 7470, 7471, 7472, 7473, 7474, 7475, 7476, 7477, 7478, 7479, 7480, 7481, 7482, 7483, 7484, 7485, 7486, 7487, 7488, 7489, 7490, 7491, 7492, 7493, 7494, 7495, 7496, 7497, 7498, 7499, 7500, 7501, 7502, 7503, 7504, 7505, 7506, 7507, 7508, 7509, 7510, 7511, 7512, 7513, 7514, 7515, 7516, 7517, 7518, 7519, 7520, 7521, 7522, 7523, 7524, 7525, 7526, 7527, 7528, 7529, 7530, 7531, 7532, 7533, 7534, 7535, 7536, 7537, 7538, 7539, 7540, 7541, 7542, 7543, 7544, 7545, 7546, 7547, 7548, 7549, 7550, 7551, 7552, 7553, 7554, 7555, 7556, 7557, 7558, 7559, 7560, 7561, 7562, 7563, 7564, 7565, 7566, 7567, 7568, 7569, 7570, 7571, 7572, 7573, 7574, 7575, 7576, 7577, 7578, 7579, 7580, 7581, 7582, 7583, 7584, 7585, 7586, 7587, 7588, 7589, 7590, 7591, 7592, 7593, 7594, 7595, 7596, 7597, 7598, 7599, 7600, 7601, 7602, 7603, 7604, 7605, 7606, 7607, 7608, 7609, 7610, 7611, 7612, 7613, 7614, 7615, 7616, 7617, 7618, 7619, 7620, 7621, 7622, 7623, 7624, 7625, 7626, 7627, 7628, 7629, 7630, 7631, 7632, 7633, 7634, 7635, 7636, 7637, 7638, 7639, 7640, 7641, 7642, 7643, 7644, 7645, 7646, 7647, 7648, 7649, 7650, 7651, 7652, 7653, 7654, 7655, 7656, 7657, 7658, 7659, 7660, 7661, 7662, 7663, 7664, 7665, 7666, 7667, 7668, 7669, 7670, 7671, 7672, 7673, 7674, 7675, 7676, 7677, 7678, 7679, 7680, 7681, 7682, 7683, 7684, 7685, 7686, 7687, 7688, 7689, 7690, 7691, 7692, 7693, 7694, 7695, 7696, 7697, 7698, 7699, 7700, 7701, 7702, 7703, 7704, 7705, 7706, 7707, 7708, 7709, 7710, 7711, 7712, 7713, 7714, 7715, 7716, 7717, 7718, 7719, 7720, 7721, 7722, 7723, 7724, 7725, 7726, 7727, 7728, 7729, 7730, 7731, 7732, 7733, 7734, 7735, 7736, 7737, 7738, 7739, 7740, 7741, 7742, 7743, 7744, 7745, 7746, 7747, 7748, 7749, 7750, 7751, 7752, 7753, 7754, 7755, 7756, 7757, 7758, 7759, 7760, 7761, 7762, 7763, 7764, 7765, 7766, 7767, 7768, 7769, 7770, 7771, 7772, 7773, 7774, 7775, 7776, 7777, 7778, 7779, 7780, 7781, 7782, 7783, 7784, 7785, 7786, 7787, 7788, 7789, 7790, 7791, 7792, 7793, 7794, 7795, 7796, 7797, 7798, 7799, 7800, 7801, 7802, 7803, 7804, 7805, 7806, 7807, 7808, 7809, 7810, 7811, 7812, 7813, 7814, 7815, 7816, 7817, 7818, 7819, 7820, 7821, 7822, 7823, 7824, 7825, 7826, 7827, 7828, 7829, 7830, 7831, 7832, 7833, 7834, 7835, 7836, 7837, 7838, 7839, 7840, 7841, 7842, 7843, 7844, 7845, 7846, 7847, 7848, 7849, 7850, 7851, 7852, 7853, 7854, 7855, 7856, 7857, 7858, 7859, 7860, 7861, 7862, 7863, 7864, 7865, 7866, 7867, 7868, 7869, 7870, 7871, 7872, 7873, 7874, 7875, 7876, 7877, 7878, 7879, 7880, 7881, 7882, 7883, 7884, 7885, 7886, 7887, 7888, 7889, 7890, 7891, 7892, 7893, 7894, 7895, 7896, 7897, 7898, 7899, 7900, 7901, 7902, 7903, 7904, 7905, 7906, 7907, 7908, 7909, 7910, 7911, 7912, 7913, 7914, 7915, 7916, 7917, 7918, 7919, 7920, 7921, 7922, 7923, 7924, 7925, 7926, 7927, 7928, 7929, 7930, 7931, 7932, 7933, 7934, 7935, 7936, 7937, 7938, 7939, 7940, 7941, 7942, 7943, 7944, 7945, 7946, 7947, 7948, 7949, 7950, 7951, 7952, 7953, 7954, 7955, 7956, 7957, 7958, 7959, 7960, 7961, 7962, 7963, 7964, 7965, 7966, 7967, 7968, 7969, 7970, 7971, 7972, 7973, 7974, 7975, 7976, 7977, 7978, 7979, 7980, 7981, 7982, 7983, 7984, 7985, 7986, 7987, 7988, 7989, 7990, 7991, 7992, 7993, 7994, 7995, 7996, 7997, 7998, 7999, 8000, 8001, 8002, 8003, 8004, 8005, 8006, 8007, 8008, 8009, 8010, 8011, 8012, 8013, 8014, 8015, 8016, 8017, 8018, 8019, 8020, 8021, 8022, 8023, 8024, 8025, 8026, 8027, 8028, 8029, 8030, 8031, 8032, 8033, 8034, 8035, 8036, 8037, 8038, 8039, 8040, 8041, 8042, 8043, 8044, 8045, 8046, 8047, 8048, 8049, 8050, 8051, 8052, 8053, 8054, 8055, 8056, 8057, 8058, 8059, 8060, 8061, 8062, 8063, 8064, 8065, 8066, 8067, 8068, 8069, 8070, 8071, 8072, 8073, 8074, 8075, 8076, 8077, 8078, 8079, 8080, 8081, 8082, 8083, 8084, 8085, 8086, 8087, 8088, 8089, 8090, 8091, 8092, 8093, 8094, 8095, 8096, 8097, 8098, 8099, 8100, 8101, 8102, 8103, 8104, 8105, 8106, 8107, 8108, 8109, 8110, 8111, 8112, 8113, 8114, 8115, 8116, 8117, 8118, 8119, 8120, 8121, 8122, 8123, 8124, 8125, 8126, 8127, 8128, 8129, 8130, 8131, 8132, 8133, 8134, 8135, 8136, 8137, 8138, 8139, 8140, 8141, 8142, 8143, 8144, 8145, 8146, 8147, 8148, 8149, 8150, 8151, 8152, 8153, 8154, 8155, 8156, 8157, 8158, 8159, 8160, 8161, 8162, 8163, 8164, 8165, 8166, 8167, 8168, 8169, 8170, 8171, 8172, 8173, 8174, 8175, 8176, 8177, 8178, 8179, 8180, 8181, 8182, 8183, 8184, 8185, 8186, 8187, 8188, 8189, 8190, 8191, 8192, 8193, 8194, 8195, 8196, 8197, 8198, 8199, 8200, 8201, 8202, 8203, 8204, 8205, 8206, 8207, 8208, 8209, 8210, 8211, 8212, 8213, 8214, 8215, 8216, 8217, 8218, 8219, 8220, 8221, 8222, 8223, 8224, 8225, 8226, 8227, 8228, 8229, 8230, 8231, 8232, 8233, 8234, 8235, 8236, 8237, 8238, 8239, 8240, 8241, 8242, 8243, 8244, 8245, 8246, 8247, 8248, 8249, 8250, 8251, 8252, 8253, 8254, 8255, 8256, 8257, 8258, 8259, 8260, 8261, 8262, 8263, 8264, 8265, 8266, 8267, 8268, 8269, 8270, 8271, 8272, 8273, 8274, 8275, 8276, 8277, 8278, 8279, 8280, 8281, 8282, 8283, 8284, 8285, 8286, 8287, 8288, 8289, 8290, 8291, 8292, 8293, 8294, 8295, 8296, 8297, 8298, 8299, 8300, 8301, 8302, 8303, 8304, 8305, 8306, 8307, 8308, 8309, 8310, 8311, 8312, 8313, 8314, 8315, 8316, 8317, 8318, 8319, 8320, 8321, 8322, 8323, 8324, 8325, 8326, 8327, 8328, 8329, 8330, 8331, 8332, 8333, 8334, 8335, 8336, 8337, 8338, 8339, 8340, 8341, 8342, 8343, 8344, 8345, 8346, 8347, 8348, 8349, 8350, 8351, 8352, 8353, 8354, 8355, 8356, 8357, 8358, 8359, 8360, 8361, 8362, 8363, 8364, 8365, 8366, 8367, 8368, 8369, 8370, 8371, 8372, 8373, 8374, 8375, 8376, 8377, 8378, 8379, 8380, 8381, 8382, 8383, 8384, 8385, 8386, 8387, 8388, 8389, 8390, 8391, 8392, 8393, 8394, 8395, 8396, 8397, 8398, 8399, 8400, 8401, 8402, 8403, 8404, 8405, 8406, 8407, 8408, 8409, 8410, 8411, 8412, 8413, 8414, 8415, 8416, 8417, 8418, 8419, 8420, 8421, 8422, 8423, 8424, 8425, 8426, 8427, 8428, 8429, 8430, 8431, 8432, 8433, 8434, 8435, 8436, 8437, 8438, 8439, 8440, 8441, 8442, 8443, 8444, 8445, 8446, 8447, 8448, 8449, 8450, 8451, 8452, 8453, 8454, 8455, 8456, 8457, 8458, 8459, 8460, 8461, 8462, 8463, 8464, 8465, 8466, 8467, 8468, 8469, 8470, 8471, 8472, 8473, 8474, 8475, 8476, 8477, 8478, 8479, 8480, 8481, 8482, 8483, 8484, 8485, 8486, 8487, 8488, 8489, 8490, 8491, 8492, 8493, 8494, 8495, 8496, 8497, 8498, 8499, 8500, 8501, 8502, 8503, 8504, 8505, 8506, 8507, 8508, 8509, 8510, 8511, 8512, 8513, 8514, 8515, 8516, 8517, 8518, 8519, 8520, 8521, 8522, 8523, 8524, 8525, 8526, 8527, 8528, 8529, 8530, 8531, 8532, 8533, 8534, 8535, 8536, 8537, 8538, 8539, 8540, 8541, 8542, 8543, 8544, 8545, 8546, 8547, 8548, 8549, 8550, 8551, 8552, 8553, 8554, 8555, 8556, 8557, 8558, 8559, 8560, 8561, 8562, 8563, 8564, 8565, 8566, 8567, 8568, 8569, 8570, 8571, 8572, 8573, 8574, 8575, 8576, 8577, 8578, 8579, 8580, 8581, 8582, 8583, 8584, 8585, 8586, 8587, 8588, 8589, 8590, 8591, 8592, 8593, 8594, 8595, 8596, 8597, 8598, 8599, 8600, 8601, 8602, 8603, 8604, 8605, 8606, 8607, 8608, 8609, 8610, 8611, 8612, 8613, 8614, 8615, 8616, 8617, 8618, 8619, 8620, 8621, 8622, 8623, 8624, 8625, 8626, 8627, 8628, 8629, 8630, 8631, 8632, 8633, 8634, 8635, 8636, 8637, 8638, 8639, 8640, 8641, 8642, 8643, 8644, 8645, 8646, 8647, 8648, 8649, 8650, 8651, 8652, 8653, 8654, 8655, 8656, 8657, 8658, 8659, 8660, 8661, 8662, 8663, 8664, 8665, 8666, 8667, 8668, 8669, 8670, 8671, 8672, 8673, 8674, 8675, 8676, 8677, 8678, 8679, 8680, 8681, 8682, 8683, 8684, 8685, 8686, 8687, 8688, 8689, 8690, 8691, 8692, 8693, 8694, 8695, 8696, 8697, 8698, 8699, 8700, 8701, 8702, 8703, 8704, 8705, 8706, 8707, 8708, 8709, 8710, 8711, 8712, 8713, 8714, 8715, 8716, 8717, 8718, 8719, 8720, 8721, 8722, 8723, 8724, 8725, 8726, 8727, 8728, 8729, 8730, 8731, 8732, 8733, 8734, 8735, 8736, 8737, 8738, 8739, 8740, 8741, 8742, 8743, 8744, 8745, 8746, 8747, 8748, 8749, 8750, 8751, 8752, 8753, 8754, 8755, 8756, 8757, 8758, 8759, 8760, 8761, 8762, 8763, 8764, 8765, 8766, 8767, 8768, 8769, 8770, 8771, 8772, 8773, 8774, 8775, 8776, 8777, 8778, 8779, 8780, 8781, 8782, 8783, 8784, 8785, 8786, 8787, 8788, 8789, 8790, 8791, 8792, 8793, 8794, 8795, 8796, 8797, 8798, 8799, 8800, 8801, 8802, 8803, 8804, 8805, 8806, 8807, 8808, 8809, 8810, 8811, 8812, 8813, 8814, 8815, 8816, 8817, 8818, 8819, 8820, 8821, 8822, 8823, 8824, 8825, 8826, 8827, 8828, 8829, 8830, 8831, 8832, 8833, 8834, 8835, 8836, 8837, 8838, 8839, 8840, 8841, 8842, 8843, 8844, 8845, 8846, 8847, 8848, 8849, 8850, 8851, 8852, 8853, 8854, 8855, 8856, 8857, 8858, 8859, 8860, 8861, 8862, 8863, 8864, 8865, 8866, 8867, 8868, 8869, 8870, 8871, 8872, 8873, 8874, 8875, 8876, 8877, 8878, 8879, 8880, 8881, 8882, 8883, 8884, 8885, 8886, 8887, 8888, 8889, 8890, 8891, 8892, 8893, 8894, 8895, 8896, 8897, 8898, 8899, 8900, 8901, 8902, 8903, 8904, 8905, 8906, 8907, 8908, 8909, 8910, 8911, 8912, 8913, 8914, 8915, 8916, 8917, 8918, 8919, 8920, 8921, 8922, 8923, 8924, 8925, 8926, 8927, 8928, 8929, 8930, 8931, 8932, 8933, 8934, 8935, 8936, 8937, 8938, 8939, 8940, 8941, 8942, 8943, 8944, 8945, 8946, 8947, 8948, 8949, 8950, 8951, 8952, 8953, 8954, 8955, 8956, 8957, 8958, 8959, 8960, 8961, 8962, 8963, 8964, 8965, 8966, 8967, 8968, 8969, 8970, 8971, 8972, 8973, 8974, 8975, 8976, 8977, 8978, 8979, 8980, 8981, 8982, 8983, 8984, 8985, 8986, 8987, 8988, 8989, 8990, 8991, 8992, 8993, 8994, 8995, 8996, 8997, 8998, 8999, 9000, 9001, 9002, 9003, 9004, 9005, 9006, 9007, 9008, 9009, 9010, 9011, 9012, 9013, 9014, 9015, 9016, 9017, 9018, 9019, 9020, 9021, 9022, 9023, 9024, 9025, 9026, 9027, 9028, 9029, 9030, 9031, 9032, 9033, 9034, 9035, 9036, 9037, 9038, 9039, 9040, 9041, 9042, 9043, 9044, 9045, 9046, 9047, 9048, 9049, 9050, 9051, 9052, 9053, 9054, 9055, 9056, 9057, 9058, 9059, 9060, 9061, 9062, 9063, 9064, 9065, 9066, 9067, 9068, 9069, 9070, 9071, 9072, 9073, 9074, 9075, 9076, 9077, 9078, 9079, 9080, 9081, 9082, 9083, 9084, 9085, 9086, 9087, 9088, 9089, 9090, 9091, 9092, 9093, 9094, 9095, 9096, 9097, 9098, 9099, 9100, 9101, 9102, 9103, 9104, 9105, 9106, 9107, 9108, 9109, 9110, 9111, 9112, 9113, 9114, 9115, 9116, 9117, 9118, 9119, 9120, 9121, 9122, 9123, 9124, 9125, 9126, 9127, 9128, 9129, 9130, 9131, 9132, 9133, 9134, 9135, 9136, 9137, 9138, 9139, 9140, 9141, 9142, 9143, 9144, 9145, 9146, 9147, 9148, 9149, 9150, 9151, 9152, 9153, 9154, 9155, 9156, 9157, 9158, 9159, 9160, 9161, 9162, 9163, 9164, 9165, 9166, 9167, 9168, 9169, 9170, 9171, 9172, 9173, 9174, 9175, 9176, 9177, 9178, 9179, 9180, 9181, 9182, 9183, 9184, 9185, 9186, 9187, 9188, 9189, 9190, 9191, 9192, 9193, 9194, 9195, 9196, 9197, 9198, 9199, 9200, 9201, 9202, 9203, 9204, 9205, 9206, 9207, 9208, 9209, 9210, 9211, 9212, 9213, 9214, 9215, 9216, 9217, 9218, 9219, 9220, 9221, 9222, 9223, 9224, 9225, 9226, 9227, 9228, 9229, 9230, 9231, 9232, 9233, 9234, 9235, 9236, 9237, 9238, 9239, 9240, 9241, 9242, 9243, 9244, 9245, 9246, 9247, 9248, 9249, 9250, 9251, 9252, 9253, 9254, 9255, 9256, 9257, 9258, 9259, 9260, 9261, 9262, 9263, 9264, 9265, 9266, 9267, 9268, 9269, 9270, 9271, 9272, 9273, 9274, 9275, 9276, 9277, 9278, 9279, 9280, 9281, 9282, 9283, 9284, 9285, 9286, 9287, 9288, 9289, 9290, 9291, 9292, 9293, 9294, 9295, 9296, 9297, 9298, 9299, 9300, 9301, 9302, 9303, 9304, 9305, 9306, 9307, 9308, 9309, 9310, 9311, 9312, 9313, 9314, 9315, 9316, 9317, 9318, 9319, 9320, 9321, 9322, 9323, 9324, 9325, 9326, 9327, 9328, 9329, 9330, 9331, 9332, 9333, 9334, 9335, 9336, 9337, 9338, 9339, 9340, 9341, 9342, 9343, 9344, 9345, 9346, 9347, 9348, 9349, 9350, 9351, 9352, 9353, 9354, 9355, 9356, 9357, 9358, 9359, 9360, 9361, 9362, 9363, 9364, 9365, 9366, 9367, 9368, 9369, 9370, 9371, 9372, 9373, 9374, 9375, 9376, 9377, 9378, 9379, 9380, 9381, 9382, 9383, 9384, 9385, 9386, 9387, 9388, 9389, 9390, 9391, 9392, 9393, 9394, 9395, 9396, 9397, 9398, 9399, 9400, 9401, 9402, 9403, 9404, 9405, 9406, 9407, 9408, 9409, 9410, 9411, 9412, 9413, 9414, 9415, 9416, 9417, 9418, 9419, 9420, 9421, 9422, 9423, 9424, 9425, 9426, 9427, 9428, 9429, 9430, 9431, 9432, 9433, 9434, 9435, 9436, 9437, 9438, 9439, 9440, 9441, 9442, 9443, 9444, 9445, 9446, 9447, 9448, 9449, 9450, 9451, 9452, 9453, 9454, 9455, 9456, 9457, 9458, 9459, 9460, 9461, 9462, 9463, 9464, 9465, 9466, 9467, 9468, 9469, 9470, 9471, 9472, 9473, 9474, 9475, 9476, 9477, 9478, 9479, 9480, 9481, 9482, 9483, 9484, 9485, 9486, 9487, 9488, 9489, 9490, 9491, 9492, 9493, 9494, 9495, 9496, 9497, 9498, 9499, 9500, 9501, 9502, 9503, 9504, 9505, 9506, 9507, 9508, 9509, 9510, 9511, 9512, 9513, 9514, 9515, 9516, 9517, 9518, 9519, 9520, 9521, 9522, 9523, 9524, 9525, 9526, 9527, 9528, 9529, 9530, 9531, 9532, 9533, 9534, 9535, 9536, 9537, 9538, 9539, 9540, 9541, 9542, 9543, 9544, 9545, 9546, 9547, 9548, 9549, 9550, 9551, 9552, 9553, 9554, 9555, 9556, 9557, 9558, 9559, 9560, 9561, 9562, 9563, 9564, 9565, 9566, 9567, 9568, 9569, 9570, 9571, 9572, 9573, 9574, 9575, 9576, 9577, 9578, 9579, 9580, 9581, 9582, 9583, 9584, 9585, 9586, 9587, 9588, 9589, 9590, 9591, 9592, 9593, 9594, 9595, 9596, 9597, 9598, 9599, 9600, 9601, 9602, 9603, 9604, 9605, 9606, 9607, 9608, 9609, 9610, 9611, 9612, 9613, 9614, 9615, 9616, 9617, 9618, 9619, 9620, 9621, 9622, 9623, 9624, 9625, 9626, 9627, 9628, 9629, 9630, 9631, 9632, 9633, 9634, 9635, 9636, 9637, 9638, 9639, 9640, 9641, 9642, 9643, 9644, 9645, 9646, 9647, 9648, 9649, 9650, 9651, 9652, 9653, 9654, 9655, 9656, 9657, 9658, 9659, 9660, 9661, 9662, 9663, 9664, 9665, 9666, 9667, 9668, 9669, 9670, 9671, 9672, 9673, 9674, 9675, 9676, 9677, 9678, 9679, 9680, 9681, 9682, 9683, 9684, 9685, 9686, 9687, 9688, 9689, 9690, 9691, 9692, 9693, 9694, 9695, 9696, 9697, 9698, 9699, 9700, 9701, 9702, 9703, 9704, 9705, 9706, 9707, 9708, 9709, 9710, 9711, 9712, 9713, 9714, 9715, 9716, 9717, 9718, 9719, 9720, 9721, 9722, 9723, 9724, 9725, 9726, 9727, 9728, 9729, 9730, 9731, 9732, 9733, 9734, 9735, 9736, 9737, 9738, 9739, 9740, 9741, 9742, 9743, 9744, 9745, 9746, 9747, 9748, 9749, 9750, 9751, 9752, 9753, 9754, 9755, 9756, 9757, 9758, 9759, 9760, 9761, 9762, 9763, 9764, 9765, 9766, 9767, 9768, 9769, 9770, 9771, 9772, 9773, 9774, 9775, 9776, 9777, 9778, 9779, 9780, 9781, 9782, 9783, 9784, 9785, 9786, 9787, 9788, 9789, 9790, 9791, 9792, 9793, 9794, 9795, 9796, 9797, 9798, 9799, 9800, 9801, 9802, 9803, 9804, 9805, 9806, 9807, 9808, 9809, 9810, 9811, 9812, 9813, 9814, 9815, 9816, 9817, 9818, 9819, 9820, 9821, 9822, 9823, 9824, 9825, 9826, 9827, 9828, 9829, 9830, 9831, 9832, 9833, 9834, 9835, 9836, 9837, 9838, 9839, 9840, 9841, 9842, 9843, 9844, 9845, 9846, 9847, 9848, 9849, 9850, 9851, 9852, 9853, 9854, 9855, 9856, 9857, 9858, 9859, 9860, 9861, 9862, 9863, 9864, 9865, 9866, 9867, 9868, 9869, 9870, 9871, 9872, 9873, 9874, 9875, 9876, 9877, 9878, 9879, 9880, 9881, 9882, 9883, 9884, 9885, 9886, 9887, 9888, 9889, 9890, 9891, 9892, 9893, 9894, 9895, 9896, 9897, 9898, 9899, 9900, 9901, 9902, 9903, 9904, 9905, 9906, 9907, 9908, 9909, 9910, 9911, 9912, 9913, 9914, 9915, 9916, 9917, 9918, 9919, 9920, 9921, 9922, 9923, 9924, 9925, 9926, 9927, 9928, 9929, 9930, 9931, 9932, 9933, 9934, 9935, 9936, 9937, 9938, 9939, 9940, 9941, 9942, 9943, 9944, 9945, 9946, 9947, 9948, 9949, 9950, 9951, 9952, 9953, 9954, 9955, 9956, 9957, 9958, 9959, 9960, 9961, 9962, 9963, 9964, 9965, 9966, 9967, 9968, 9969, 9970, 9971, 9972, 9973, 9974, 9975, 9976, 9977, 9978, 9979, 9980, 9981, 9982, 9983, 9984, 9985, 9986, 9987, 9988, 9989, 9990, 9991, 9992, 9993, 9994, 9995, 9996, 9997, 9998, 9999, 10000, 10001, 10002, 10003, 10004, 10005, 10006, 10007, 10008, 10009, 10010, 10011, 10012, 10013, 10014, 10015, 10016, 10017, 10018, 10019, 10020, 10021, 10022, 10023, 10024, 10025, 10026, 10027, 10028, 10029, 10030, 10031, 10032, 10033, 10034, 10035, 10036, 10037, 10038, 10039, 10040, 10041, 10042, 10043, 10044, 10045, 10046, 10047, 10048, 10049, 10050, 10051, 10052, 10053, 10054, 10055, 10056, 10057, 10058, 10059, 10060, 10061, 10062, 10063, 10064, 10065, 10066, 10067, 10068, 10069, 10070, 10071, 10072, 10073, 10074, 10075, 10076, 10077, 10078, 10079, 10080, 10081, 10082, 10083, 10084, 10085, 10086, 10087, 10088, 10089, 10090, 10091, 10092, 10093, 10094, 10095, 10096, 10097, 10098, 10099, 10100, 10101, 10102, 10103, 10104, 10105, 10106, 10107, 10108, 10109, 10110, 10111, 10112, 10113, 10114, 10115, 10116, 10117, 10118, 10119, 10120, 10121, 10122, 10123, 10124, 10125, 10126, 10127, 10128, 10129, 10130, 10131, 10132, 10133, 10134, 10135, 10136, 10137, 10138, 10139, 10140, 10141, 10142, 10143, 10144, 10145, 10146, 10147, 10148, 10149, 10150, 10151, 10152, 10153, 10154, 10155, 10156, 10157, 10158, 10159, 10160, 10161, 10162, 10163, 10164, 10165, 10166, 10167, 10168, 10169, 10170, 10171, 10172, 10173, 10174, 10175, 10176, 10177, 10178, 10179, 10180, 10181, 10182, 10183, 10184, 10185, 10186, 10187, 10188, 10189, 10190, 10191, 10192, 10193, 10194, 10195, 10196, 10197, 10198, 10199, 10200, 10201, 10202, 10203, 10204, 10205, 10206, 10207, 10208, 10209, 10210, 10211, 10212, 10213, 10214, 10215, 10216, 10217, 10218, 10219, 10220, 10221, 10222, 10223, 10224, 10225, 10226, 10227, 10228, 10229, 10230, 10231, 10232, 10233, 10234, 10235, 10236, 10237, 10238, 10239, 10240, 10241, 10242, 10243, 10244, 10245, 10246, 10247, 10248, 10249, 10250, 10251, 10252, 10253, 10254, 10255, 10256, 10257, 10258, 10259, 10260, 10261, 10262, 10263, 10264, 10265, 10266, 10267, 10268, 10269, 10270, 10271, 10272, 10273, 10274, 10275, 10276, 10277, 10278, 10279, 10280, 10281, 10282, 10283, 10284, 10285, 10286, 10287, 10288, 10289, 10290, 10291, 10292, 10293, 10294, 10295, 10296, 10297, 10298, 10299, 10300, 10301, 10302, 10303, 10304, 10305, 10306, 10307, 10308, 10309, 10310, 10311, 10312, 10313, 10314, 10315, 10316, 10317, 10318, 10319, 10320, 10321, 10322, 10323, 10324, 10325, 10326, 10327, 10328, 10329, 10330, 10331, 10332, 10333, 10334, 10335, 10336, 10337, 10338, 10339, 10340, 10341, 10342, 10343, 10344, 10345, 10346, 10347, 10348, 10349, 10350, 10351, 10352, 10353, 10354, 10355, 10356, 10357, 10358, 10359, 10360, 10361, 10362, 10363, 10364, 10365, 10366, 10367, 10368, 10369, 10370, 10371, 10372, 10373, 10374, 10375, 10376, 10377, 10378, 10379, 10380, 10381, 10382, 10383, 10384, 10385, 10386, 10387, 10388, 10389, 10390, 10391, 10392, 10393, 10394, 10395, 10396, 10397, 10398, 10399, 10400, 10401, 10402, 10403, 10404, 10405, 10406, 10407, 10408, 10409, 10410, 10411, 10412, 10413, 10414, 10415, 10416, 10417, 10418, 10419, 10420, 10421, 10422, 10423, 10424, 10425, 10426, 10427, 10428, 10429, 10430, 10431, 10432, 10433, 10434, 10435, 10436, 10437, 10438, 10439, 10440, 10441, 10442, 10443, 10444, 10445, 10446, 10447, 10448, 10449, 10450, 10451, 10452, 10453, 10454, 10455, 10456, 10457, 10458, 10459, 10460, 10461, 10462, 10463, 10464, 10465, 10466, 10467, 10468, 10469, 10470, 10471, 10472, 10473, 10474, 10475, 10476, 10477, 10478, 10479, 10480, 10481, 10482, 10483, 10484, 10485, 10486, 10487, 10488, 10489, 10490, 10491, 10492, 10493, 10494, 10495, 10496, 10497, 10498, 10499, 10500, 10501, 10502, 10503, 10504, 10505, 10506, 10507, 10508, 10509, 10510, 10511, 10512, 10513, 10514, 10515, 10516, 10517, 10518, 10519, 10520, 10521, 10522, 10523, 10524, 10525, 10526, 10527, 10528, 10529, 10530, 10531, 10532, 10533, 10534, 10535, 10536, 10537, 10538, 10539, 10540, 10541, 10542, 10543, 10544, 10545, 10546, 10547, 10548, 10549, 10550, 10551, 10552, 10553, 10554, 10555, 10556, 10557, 10558, 10559, 10560, 10561, 10562, 10563, 10564, 10565, 10566, 10567, 10568, 10569, 10570, 10571, 10572, 10573, 10574, 10575, 10576, 10577, 10578, 10579, 10580, 10581, 10582, 10583, 10584, 10585, 10586, 10587, 10588, 10589, 10590, 10591, 10592, 10593, 10594, 10595, 10596, 10597, 10598, 10599, 10600, 10601, 10602, 10603, 10604, 10605, 10606, 10607, 10608, 10609, 10610, 10611, 10612, 10613, 10614, 10615, 10616, 10617, 10618, 10619, 10620, 10621, 10622, 10623, 10624, 10625, 10626, 10627, 10628, 10629, 10630, 10631, 10632, 10633, 10634, 10635, 10636, 10637, 10638, 10639, 10640, 10641, 10642, 10643, 10644, 10645, 10646, 10647, 10648, 10649, 10650, 10651, 10652, 10653, 10654, 10655, 10656, 10657, 10658, 10659, 10660, 10661, 10662, 10663, 10664, 10665, 10666, 10667, 10668, 10669, 10670, 10671, 10672, 10673, 10674, 10675, 10676, 10677, 10678, 10679, 10680, 10681, 10682, 10683, 10684, 10685, 10686, 10687, 10688, 10689, 10690, 10691, 10692, 10693, 10694, 10695, 10696, 10697, 10698, 10699, 10700, 10701, 10702, 10703, 10704, 10705, 10706, 10707, 10708, 10709, 10710, 10711, 10712, 10713, 10714, 10715, 10716, 10717, 10718, 10719, 10720, 10721, 10722, 10723, 10724, 10725, 10726, 10727, 10728, 10729, 10730, 10731, 10732, 10733, 10734, 10735, 10736, 10737, 10738, 10739, 10740, 10741, 10742, 10743, 10744, 10745, 10746, 10747, 10748, 10749, 10750, 10751, 10752, 10753, 10754, 10755, 10756, 10757, 10758, 10759, 10760, 10761, 10762, 10763, 10764, 10765, 10766, 10767, 10768, 10769, 10770, 10771, 10772, 10773, 10774, 10775, 10776, 10777, 10778, 10779, 10780, 10781, 10782, 10783, 10784, 10785, 10786, 10787, 10788, 10789, 10790, 10791, 10792, 10793, 10794, 10795, 10796, 10797, 10798, 10799, 10800, 10801, 10802, 10803, 10804, 10805, 10806, 10807, 10808, 10809, 10810, 10811, 10812, 10813, 10814, 10815, 10816, 10817, 10818, 10819, 10820, 10821, 10822, 10823, 10824, 10825, 10826, 10827, 10828, 10829, 10830, 10831, 10832, 10833, 10834, 10835, 10836, 10837, 10838, 10839, 10840, 10841, 10842, 10843, 10844, 10845, 10846, 10847, 10848, 10849, 10850, 10851, 10852, 10853, 10854, 10855, 10856, 10857, 10858, 10859, 10860, 10861, 10862, 10863, 10864, 10865, 10866, 10867, 10868, 10869, 10870, 10871, 10872, 10873, 10874, 10875, 10876, 10877, 10878, 10879, 10880, 10881, 10882, 10883, 10884, 10885, 10886, 10887, 10888, 10889, 10890, 10891, 10892, 10893, 10894, 10895, 10896, 10897, 10898, 10899, 10900, 10901, 10902, 10903, 10904, 10905, 10906, 10907, 10908, 10909, 10910, 10911, 10912, 10913, 10914, 10915, 10916, 10917, 10918, 10919, 10920, 10921, 10922, 10923, 10924, 10925, 10926, 10927, 10928, 10929, 10930, 10931, 10932, 10933, 10934, 10935, 10936, 10937, 10938, 10939, 10940, 10941, 10942, 10943, 10944, 10945, 10946, 10947, 10948, 10949, 10950, 10951, 10952, 10953, 10954, 10955, 10956, 10957, 10958, 10959, 10960, 10961, 10962, 10963, 10964, 10965, 10966, 10967, 10968, 10969, 10970, 10971, 10972, 10973, 10974, 10975, 10976, 10977, 10978, 10979, 10980, 10981, 10982, 10983, 10984, 10985, 10986, 10987, 10988, 10989, 10990, 10991, 10992, 10993, 10994, 10995, 10996, 10997, 10998, 10999, 11000, 11001, 11002, 11003, 11004, 11005, 11006, 11007, 11008, 11009, 11010, 11011, 11012, 11013, 11014, 11015, 11016, 11017, 11018, 11019, 11020, 11021, 11022, 11023, 11024, 11025, 11026, 11027, 11028, 11029, 11030, 11031, 11032, 11033, 11034, 11035, 11036, 11037, 11038, 11039, 11040, 11041, 11042, 11043, 11044, 11045, 11046, 11047, 11048, 11049, 11050, 11051, 11052, 11053, 11054, 11055, 11056, 11057, 11058, 11059, 11060, 11061, 11062, 11063, 11064, 11065, 11066, 11067, 11068, 11069, 11070, 11071, 11072, 11073, 11074, 11075, 11076, 11077, 11078, 11079, 11080, 11081, 11082, 11083, 11084, 11085, 11086, 11087, 11088, 11089, 11090, 11091, 11092, 11093, 11094, 11095, 11096, 11097, 11098, 11099, 11100, 11101, 11102, 11103, 11104, 11105, 11106, 11107, 11108, 11109, 11110, 11111, 11112, 11113, 11114, 11115, 11116, 11117, 11118, 11119, 11120, 11121, 11122, 11123, 11124, 11125, 11126, 11127, 11128, 11129, 11130, 11131, 11132, 11133, 11134, 11135, 11136, 11137, 11138, 11139, 11140, 11141, 11142, 11143, 11144, 11145, 11146, 11147, 11148, 11149, 11150, 11151, 11152, 11153, 11154, 11155, 11156, 11157, 11158, 11159, 11160, 11161, 11162, 11163, 11164, 11165, 11166, 11167, 11168, 11169, 11170, 11171, 11172, 11173, 11174, 11175, 11176, 11177, 11178, 11179, 11180, 11181, 11182, 11183, 11184, 11185, 11186, 11187, 11188, 11189, 11190, 11191, 11192, 11193, 11194, 11195, 11196, 11197, 11198, 11199, 11200, 11201, 11202, 11203, 11204, 11205, 11206, 11207, 11208, 11209, 11210, 11211, 11212, 11213, 11214, 11215, 11216, 11217, 11218, 11219, 11220, 11221, 11222, 11223, 11224, 11225, 11226, 11227, 11228, 11229, 11230, 11231, 11232, 11233, 11234, 11235, 11236, 11237, 11238, 11239, 11240, 11241, 11242, 11243, 11244, 11245, 11246, 11247, 11248, 11249, 11250, 11251, 11252, 11253, 11254, 11255, 11256, 11257, 11258, 11259, 11260, 11261, 11262, 11263, 11264, 11265, 11266, 11267, 11268, 11269, 11270, 11271, 11272, 11273, 11274, 11275, 11276, 11277, 11278, 11279, 11280, 11281, 11282, 11283, 11284, 11285, 11286, 11287, 11288, 11289, 11290, 11291, 11292, 11293, 11294, 11295, 11296, 11297, 11298, 11299, 11300, 11301, 11302, 11303, 11304, 11305, 11306, 11307, 11308, 11309, 11310, 11311, 11312, 11313, 11314, 11315, 11316, 11317, 11318, 11319, 11320, 11321, 11322, 11323, 11324, 11325, 11326, 11327, 11328, 11329, 11330, 11331, 11332, 11333, 11334, 11335, 11336, 11337, 11338, 11339, 11340, 11341, 11342, 11343, 11344, 11345, 11346, 11347, 11348, 11349, 11350, 11351, 11352, 11353, 11354, 11355, 11356, 11357, 11358, 11359, 11360, 11361, 11362, 11363, 11364, 11365, 11366, 11367, 11368, 11369, 11370, 11371, 11372, 11373, 11374, 11375, 11376, 11377, 11378, 11379, 11380, 11381, 11382, 11383, 11384, 11385, 11386, 11387, 11388, 11389, 11390, 11391, 11392, 11393, 11394, 11395, 11396, 11397, 11398, 11399, 11400, 11401, 11402, 11403, 11404, 11405, 11406, 11407, 11408, 11409, 11410, 11411, 11412, 11413, 11414, 11415, 11416, 11417, 11418, 11419, 11420, 11421, 11422, 11423, 11424, 11425, 11426, 11427, 11428, 11429, 11430, 11431, 11432, 11433, 11434, 11435, 11436, 11437, 11438, 11439, 11440, 11441, 11442, 11443, 11444, 11445, 11446, 11447, 11448, 11449, 11450, 11451, 11452, 11453, 11454, 11455, 11456, 11457, 11458, 11459, 11460, 11461, 11462, 11463, 11464, 11465, 11466, 11467, 11468, 11469, 11470, 11471, 11472, 11473, 11474, 11475, 11476, 11477, 11478, 11479, 11480, 11481, 11482, 11483, 11484, 11485, 11486, 11487, 11488, 11489, 11490, 11491, 11492, 11493, 11494, 11495, 11496, 11497, 11498, 11499, 11500, 11501, 11502, 11503, 11504, 11505, 11506, 11507, 11508, 11509, 11510, 11511, 11512, 11513, 11514, 11515, 11516, 11517, 11518, 11519, 11520, 11521, 11522, 11523, 11524, 11525, 11526, 11527, 11528, 11529, 11530, 11531, 11532, 11533, 11534, 11535, 11536, 11537, 11538, 11539, 11540, 11541, 11542, 11543, 11544, 11545, 11546, 11547, 11548, 11549, 11550, 11551, 11552, 11553, 11554, 11555, 11556, 11557, 11558, 11559, 11560, 11561, 11562, 11563, 11564, 11565, 11566, 11567, 11568, 11569, 11570, 11571, 11572, 11573, 11574, 11575, 11576, 11577, 11578, 11579, 11580, 11581, 11582, 11583, 11584, 11585, 11586, 11587, 11588, 11589, 11590, 11591, 11592, 11593, 11594, 11595, 11596, 11597, 11598, 11599, 11600, 11601, 11602, 11603, 11604, 11605, 11606, 11607, 11608, 11609, 11610, 11611, 11612, 11613, 11614, 11615, 11616, 11617, 11618, 11619, 11620, 11621, 11622, 11623, 11624, 11625, 11626, 11627, 11628, 11629, 11630, 11631, 11632, 11633, 11634, 11635, 11636, 11637, 11638, 11639, 11640, 11641, 11642, 11643, 11644, 11645, 11646, 11647, 11648, 11649, 11650, 11651, 11652, 11653, 11654, 11655, 11656, 11657, 11658, 11659, 11660, 11661, 11662, 11663, 11664, 11665, 11666, 11667, 11668, 11669, 11670, 11671, 11672, 11673, 11674, 11675, 11676, 11677, 11678, 11679, 11680, 11681, 11682, 11683, 11684, 11685, 11686, 11687, 11688, 11689, 11690, 11691, 11692, 11693, 11694, 11695, 11696, 11697, 11698, 11699, 11700, 11701, 11702, 11703, 11704, 11705, 11706, 11707, 11708, 11709, 11710, 11711, 11712, 11713, 11714, 11715, 11716, 11717, 11718, 11719, 11720, 11721, 11722, 11723, 11724, 11725, 11726, 11727, 11728, 11729, 11730, 11731, 11732, 11733, 11734, 11735, 11736, 11737, 11738, 11739, 11740, 11741, 11742, 11743, 11744, 11745, 11746, 11747, 11748, 11749, 11750, 11751, 11752, 11753, 11754, 11755, 11756, 11757, 11758, 11759, 11760, 11761, 11762, 11763, 11764, 11765, 11766, 11767, 11768, 11769, 11770, 11771, 11772, 11773, 11774, 11775, 11776, 11777, 11778, 11779, 11780, 11781, 11782, 11783, 11784, 11785, 11786, 11787, 11788, 11789, 11790, 11791, 11792, 11793, 11794, 11795, 11796, 11797, 11798, 11799, 11800, 11801, 11802, 11803, 11804, 11805, 11806, 11807, 11808, 11809, 11810, 11811, 11812, 11813, 11814, 11815, 11816, 11817, 11818, 11819, 11820, 11821, 11822, 11823, 11824, 11825, 11826, 11827, 11828, 11829, 11830, 11831, 11832, 11833, 11834, 11835, 11836, 11837, 11838, 11839, 11840, 11841, 11842, 11843, 11844, 11845, 11846, 11847, 11848, 11849, 11850, 11851, 11852, 11853, 11854, 11855, 11856, 11857, 11858, 11859, 11860, 11861, 11862, 11863, 11864, 11865, 11866, 11867, 11868, 11869, 11870, 11871, 11872, 11873, 11874, 11875, 11876, 11877, 11878, 11879, 11880, 11881, 11882, 11883, 11884, 11885, 11886, 11887, 11888, 11889, 11890, 11891, 11892, 11893, 11894, 11895, 11896, 11897, 11898, 11899, 11900, 11901, 11902, 11903, 11904, 11905, 11906, 11907, 11908, 11909, 11910, 11911, 11912, 11913, 11914, 11915, 11916, 11917, 11918, 11919, 11920, 11921, 11922, 11923, 11924, 11925, 11926, 11927, 11928, 11929, 11930, 11931, 11932, 11933, 11934, 11935, 11936, 11937, 11938, 11939, 11940, 11941, 11942, 11943, 11944, 11945, 11946, 11947, 11948, 11949, 11950, 11951, 11952, 11953, 11954, 11955, 11956, 11957, 11958, 11959, 11960, 11961, 11962, 11963, 11964, 11965, 11966, 11967, 11968, 11969, 11970, 11971, 11972, 11973, 11974, 11975, 11976, 11977, 11978, 11979, 11980, 11981, 11982, 11983, 11984, 11985, 11986, 11987, 11988, 11989, 11990, 11991, 11992, 11993, 11994, 11995, 11996, 11997, 11998, 11999, 12000, 12001, 12002, 12003, 12004, 12005, 12006, 12007, 12008, 12009, 12010, 12011, 12012, 12013, 12014, 12015, 12016, 12017, 12018, 12019, 12020, 12021, 12022, 12023, 12024, 12025, 12026, 12027, 12028, 12029, 12030, 12031, 12032, 12033, 12034, 12035, 12036, 12037, 12038, 12039, 12040, 12041, 12042, 12043, 12044, 12045, 12046, 12047, 12048, 12049, 12050, 12051, 12052, 12053, 12054, 12055, 12056, 12057, 12058, 12059, 12060, 12061, 12062, 12063, 12064, 12065, 12066, 12067, 12068, 12069, 12070, 12071, 12072, 12073, 12074, 12075, 12076, 12077, 12078, 12079, 12080, 12081, 12082, 12083, 12084, 12085, 12086, 12087, 12088, 12089, 12090, 12091, 12092, 12093, 12094, 12095, 12096, 12097, 12098, 12099, 12100, 12101, 12102, 12103, 12104, 12105, 12106, 12107, 12108, 12109, 12110, 12111, 12112, 12113, 12114, 12115, 12116, 12117, 12118, 12119, 12120, 12121, 12122, 12123, 12124, 12125, 12126, 12127, 12128, 12129, 12130, 12131, 12132, 12133, 12134, 12135, 12136, 12137, 12138, 12139, 12140, 12141, 12142, 12143, 12144, 12145, 12146, 12147, 12148, 12149, 12150, 12151, 12152, 12153, 12154, 12155, 12156, 12157, 12158, 12159, 12160, 12161, 12162, 12163, 12164, 12165, 12166, 12167, 12168, 12169, 12170, 12171, 12172, 12173, 12174, 12175, 12176, 12177, 12178, 12179, 12180, 12181, 12182, 12183, 12184, 12185, 12186, 12187, 12188, 12189, 12190, 12191, 12192, 12193, 12194, 12195, 12196, 12197, 12198, 12199, 12200, 12201, 12202, 12203, 12204, 12205, 12206, 12207, 12208, 12209, 12210, 12211, 12212, 12213, 12214, 12215, 12216, 12217, 12218, 12219, 12220, 12221, 12222, 12223, 12224, 12225, 12226, 12227, 12228, 12229, 12230, 12231, 12232, 12233, 12234, 12235, 12236, 12237, 12238, 12239, 12240, 12241, 12242, 12243, 12244, 12245, 12246, 12247, 12248, 12249, 12250, 12251, 12252, 12253, 12254, 12255, 12256, 12257, 12258, 12259, 12260, 12261, 12262, 12263, 12264, 12265, 12266, 12267, 12268, 12269, 12270, 12271, 12272, 12273, 12274, 12275, 12276, 12277, 12278, 12279, 12280, 12281, 12282, 12283, 12284, 12285, 12286, 12287, 12288, 12289, 12290, 12291, 12292, 12293, 12294, 12295, 12296, 12297, 12298, 12299, 12300, 12301, 12302, 12303, 12304, 12305, 12306, 12307, 12308, 12309, 12310, 12311, 12312, 12313, 12314, 12315, 12316, 12317, 12318, 12319, 12320, 12321, 12322, 12323, 12324, 12325, 12326, 12327, 12328, 12329, 12330, 12331, 12332, 12333, 12334, 12335, 12336, 12337, 12338, 12339, 12340, 12341, 12342, 12343, 12344, 12345, 12346, 12347, 12348, 12349, 12350, 12351, 12352, 12353, 12354, 12355, 12356, 12357, 12358, 12359, 12360, 12361, 12362, 12363, 12364, 12365, 12366, 12367, 12368, 12369, 12370, 12371, 12372, 12373, 12374, 12375, 12376, 12377, 12378, 12379, 12380, 12381, 12382, 12383, 12384, 12385, 12386, 12387, 12388, 12389, 12390, 12391, 12392, 12393, 12394, 12395, 12396, 12397, 12398, 12399, 12400, 12401, 12402, 12403, 12404, 12405, 12406, 12407, 12408, 12409, 12410, 12411, 12412, 12413, 12414, 12415, 12416, 12417, 12418, 12419, 12420, 12421, 12422, 12423, 12424, 12425, 12426, 12427, 12428, 12429, 12430, 12431, 12432, 12433, 12434, 12435, 12436, 12437, 12438, 12439, 12440, 12441, 12442, 12443, 12444, 12445, 12446, 12447, 12448, 12449, 12450, 12451, 12452, 12453, 12454, 12455, 12456, 12457, 12458, 12459, 12460, 12461, 12462, 12463, 12464, 12465, 12466, 12467, 12468, 12469, 12470, 12471, 12472, 12473, 12474, 12475, 12476, 12477, 12478, 12479, 12480, 12481, 12482, 12483, 12484, 12485, 12486, 12487, 12488, 12489, 12490, 12491, 12492, 12493, 12494, 12495, 12496, 12497, 12498, 12499, 12500, 12501, 12502, 12503, 12504, 12505, 12506, 12507, 12508, 12509, 12510, 12511, 12512, 12513, 12514, 12515, 12516, 12517, 12518, 12519, 12520, 12521, 12522, 12523, 12524, 12525, 12526, 12527, 12528, 12529, 12530, 12531, 12532, 12533, 12534, 12535, 12536, 12537, 12538, 12539, 12540, 12541, 12542, 12543, 12544, 12545, 12546, 12547, 12548, 12549, 12550, 12551, 12552, 12553, 12554, 12555, 12556, 12557, 12558, 12559, 12560, 12561, 12562, 12563, 12564, 12565, 12566, 12567, 12568, 12569, 12570, 12571, 12572, 12573, 12574, 12575, 12576, 12577, 12578, 12579, 12580, 12581, 12582, 12583, 12584, 12585, 12586, 12587, 12588, 12589, 12590, 12591, 12592, 12593, 12594, 12595, 12596, 12597, 12598, 12599, 12600, 12601, 12602, 12603, 12604, 12605, 12606, 12607, 12608, 12609, 12610, 12611, 12612, 12613, 12614, 12615, 12616, 12617, 12618, 12619, 12620, 12621, 12622, 12623, 12624, 12625, 12626, 12627, 12628, 12629, 12630, 12631, 12632, 12633, 12634, 12635, 12636, 12637, 12638, 12639, 12640, 12641, 12642, 12643, 12644, 12645, 12646, 12647, 12648, 12649, 12650, 12651, 12652, 12653, 12654, 12655, 12656, 12657, 12658, 12659, 12660, 12661, 12662, 12663, 12664, 12665, 12666, 12667, 12668, 12669, 12670, 12671, 12672, 12673, 12674, 12675, 12676, 12677, 12678, 12679, 12680, 12681, 12682, 12683, 12684, 12685, 12686, 12687, 12688, 12689, 12690, 12691, 12692, 12693, 12694, 12695, 12696, 12697, 12698, 12699, 12700, 12701, 12702, 12703, 12704, 12705, 12706, 12707, 12708, 12709, 12710, 12711, 12712, 12713, 12714, 12715, 12716, 12717, 12718, 12719, 12720, 12721, 12722, 12723, 12724, 12725, 12726, 12727, 12728, 12729, 12730, 12731, 12732, 12733, 12734, 12735, 12736, 12737, 12738, 12739, 12740, 12741, 12742, 12743, 12744, 12745, 12746, 12747, 12748, 12749, 12750, 12751, 12752, 12753, 12754, 12755, 12756, 12757, 12758, 12759, 12760, 12761, 12762, 12763, 12764, 12765, 12766, 12767, 12768, 12769, 12770, 12771, 12772, 12773, 12774, 12775, 12776, 12777, 12778, 12779, 12780, 12781, 12782, 12783, 12784, 12785, 12786, 12787, 12788, 12789, 12790, 12791, 12792, 12793, 12794, 12795, 12796, 12797, 12798, 12799, 12800, 12801, 12802, 12803, 12804, 12805, 12806, 12807, 12808, 12809, 12810, 12811, 12812, 12813, 12814, 12815, 12816, 12817, 12818, 12819, 12820, 12821, 12822, 12823, 12824, 12825, 12826, 12827, 12828, 12829, 12830, 12831, 12832, 12833, 12834, 12835, 12836, 12837, 12838, 12839, 12840, 12841, 12842, 12843, 12844, 12845, 12846, 12847, 12848, 12849, 12850, 12851, 12852, 12853, 12854, 12855, 12856, 12857, 12858, 12859, 12860, 12861, 12862, 12863, 12864, 12865, 12866, 12867, 12868, 12869, 12870, 12871, 12872, 12873, 12874, 12875, 12876, 12877, 12878, 12879, 12880, 12881, 12882, 12883, 12884, 12885, 12886, 12887, 12888, 12889, 12890, 12891, 12892, 12893, 12894, 12895, 12896, 12897, 12898, 12899, 12900, 12901, 12902, 12903, 12904, 12905, 12906, 12907, 12908, 12909, 12910, 12911, 12912, 12913, 12914, 12915, 12916, 12917, 12918, 12919, 12920, 12921, 12922, 12923, 12924, 12925, 12926, 12927, 12928, 12929, 12930, 12931, 12932, 12933, 12934, 12935, 12936, 12937, 12938, 12939, 12940, 12941, 12942, 12943, 12944, 12945, 12946, 12947, 12948, 12949, 12950, 12951, 12952, 12953, 12954, 12955, 12956, 12957, 12958, 12959, 12960, 12961, 12962, 12963, 12964, 12965, 12966, 12967, 12968, 12969, 12970, 12971, 12972, 12973, 12974, 12975, 12976, 12977, 12978, 12979, 12980, 12981, 12982, 12983, 12984, 12985, 12986, 12987, 12988, 12989, 12990, 12991, 12992, 12993, 12994, 12995, 12996, 12997, 12998, 12999, 13000, 13001, 13002, 13003, 13004, 13005, 13006, 13007, 13008, 13009, 13010, 13011, 13012, 13013, 13014, 13015, 13016, 13017, 13018, 13019, 13020, 13021, 13022, 13023, 13024, 13025, 13026, 13027, 13028, 13029, 13030, 13031, 13032, 13033, 13034, 13035, 13036, 13037, 13038, 13039, 13040, 13041, 13042, 13043, 13044, 13045, 13046, 13047, 13048, 13049, 13050, 13051, 13052, 13053, 13054, 13055, 13056, 13057, 13058, 13059, 13060, 13061, 13062, 13063, 13064, 13065, 13066, 13067, 13068, 13069, 13070, 13071, 13072, 13073, 13074, 13075, 13076, 13077, 13078, 13079, 13080, 13081, 13082, 13083, 13084, 13085, 13086, 13087, 13088, 13089, 13090, 13091, 13092, 13093, 13094, 13095, 13096, 13097, 13098, 13099, 13100, 13101, 13102, 13103, 13104, 13105, 13106, 13107, 13108, 13109, 13110, 13111, 13112, 13113, 13114, 13115, 13116, 13117, 13118, 13119, 13120, 13121, 13122, 13123, 13124, 13125, 13126, 13127, 13128, 13129, 13130, 13131, 13132, 13133, 13134, 13135, 13136, 13137, 13138, 13139, 13140, 13141, 13142, 13143, 13144, 13145, 13146, 13147, 13148, 13149, 13150, 13151, 13152, 13153, 13154, 13155, 13156, 13157, 13158, 13159, 13160, 13161, 13162, 13163, 13164, 13165, 13166, 13167, 13168, 13169, 13170, 13171, 13172, 13173, 13174, 13175, 13176, 13177, 13178, 13179, 13180, 13181, 13182, 13183, 13184, 13185, 13186, 13187, 13188, 13189, 13190, 13191, 13192, 13193, 13194, 13195, 13196, 13197, 13198, 13199, 13200, 13201, 13202, 13203, 13204, 13205, 13206, 13207, 13208, 13209, 13210, 13211, 13212, 13213, 13214, 13215, 13216, 13217, 13218, 13219, 13220, 13221, 13222, 13223, 13224, 13225, 13226, 13227, 13228, 13229, 13230, 13231, 13232, 13233, 13234, 13235, 13236, 13237, 13238, 13239, 13240, 13241, 13242, 13243, 13244, 13245, 13246, 13247, 13248, 13249, 13250, 13251, 13252, 13253, 13254, 13255, 13256, 13257, 13258, 13259, 13260, 13261, 13262, 13263, 13264, 13265, 13266, 13267, 13268, 13269, 13270, 13271, 13272, 13273, 13274, 13275, 13276, 13277, 13278, 13279, 13280, 13281, 13282, 13283, 13284, 13285, 13286, 13287, 13288, 13289, 13290, 13291, 13292, 13293, 13294, 13295, 13296, 13297, 13298, 13299, 13300, 13301, 13302, 13303, 13304, 13305, 13306, 13307, 13308, 13309, 13310, 13311, 13312, 13313, 13314, 13315, 13316, 13317, 13318, 13319, 13320, 13321, 13322, 13323, 13324, 13325, 13326, 13327, 13328, 13329, 13330, 13331, 13332, 13333, 13334, 13335, 13336, 13337, 13338, 13339, 13340, 13341, 13342, 13343, 13344, 13345, 13346, 13347, 13348, 13349, 13350, 13351, 13352, 13353, 13354, 13355, 13356, 13357, 13358, 13359, 13360, 13361, 13362, 13363, 13364, 13365, 13366, 13367, 13368, 13369, 13370, 13371, 13372, 13373, 13374, 13375, 13376, 13377, 13378, 13379, 13380, 13381, 13382, 13383, 13384, 13385, 13386, 13387, 13388, 13389, 13390, 13391, 13392, 13393, 13394, 13395, 13396, 13397, 13398, 13399, 13400, 13401, 13402, 13403, 13404, 13405, 13406, 13407, 13408, 13409, 13410, 13411, 13412, 13413, 13414, 13415, 13416, 13417, 13418, 13419, 13420, 13421, 13422, 13423, 13424, 13425, 13426, 13427, 13428, 13429, 13430, 13431, 13432, 13433, 13434, 13435, 13436, 13437, 13438, 13439, 13440, 13441, 13442, 13443, 13444, 13445, 13446, 13447, 13448, 13449, 13450, 13451, 13452, 13453, 13454, 13455, 13456, 13457, 13458, 13459, 13460, 13461, 13462, 13463, 13464, 13465, 13466, 13467, 13468, 13469, 13470, 13471, 13472, 13473, 13474, 13475, 13476, 13477, 13478, 13479, 13480, 13481, 13482, 13483, 13484, 13485, 13486, 13487, 13488, 13489, 13490, 13491, 13492, 13493, 13494, 13495, 13496, 13497, 13498, 13499, 13500, 13501, 13502, 13503, 13504, 13505, 13506, 13507, 13508, 13509, 13510, 13511, 13512, 13513, 13514, 13515, 13516, 13517, 13518, 13519, 13520, 13521, 13522, 13523, 13524, 13525, 13526, 13527, 13528, 13529, 13530, 13531, 13532, 13533, 13534, 13535, 13536, 13537, 13538, 13539, 13540, 13541, 13542, 13543, 13544, 13545, 13546, 13547, 13548, 13549, 13550, 13551, 13552, 13553, 13554, 13555, 13556, 13557, 13558, 13559, 13560, 13561, 13562, 13563, 13564, 13565, 13566, 13567, 13568, 13569, 13570, 13571, 13572, 13573, 13574, 13575, 13576, 13577, 13578, 13579, 13580, 13581, 13582, 13583, 13584, 13585, 13586, 13587, 13588, 13589, 13590, 13591, 13592, 13593, 13594, 13595, 13596, 13597, 13598, 13599, 13600, 13601, 13602, 13603, 13604, 13605, 13606, 13607, 13608, 13609, 13610, 13611, 13612, 13613, 13614, 13615, 13616, 13617, 13618, 13619, 13620, 13621, 13622, 13623, 13624, 13625, 13626, 13627, 13628, 13629, 13630, 13631, 13632, 13633, 13634, 13635, 13636, 13637, 13638, 13639, 13640, 13641, 13642, 13643, 13644, 13645, 13646, 13647, 13648, 13649, 13650, 13651, 13652, 13653, 13654, 13655, 13656, 13657, 13658, 13659, 13660, 13661, 13662, 13663, 13664, 13665, 13666, 13667, 13668, 13669, 13670, 13671, 13672, 13673, 13674, 13675, 13676, 13677, 13678, 13679, 13680, 13681, 13682, 13683, 13684, 13685, 13686, 13687, 13688, 13689, 13690, 13691, 13692, 13693, 13694, 13695, 13696, 13697, 13698, 13699, 13700, 13701, 13702, 13703, 13704, 13705, 13706, 13707, 13708, 13709, 13710, 13711, 13712, 13713, 13714, 13715, 13716, 13717, 13718, 13719, 13720, 13721, 13722, 13723, 13724, 13725, 13726, 13727, 13728, 13729, 13730, 13731, 13732, 13733, 13734, 13735, 13736, 13737, 13738, 13739, 13740, 13741, 13742, 13743, 13744, 13745, 13746, 13747, 13748, 13749, 13750, 13751, 13752, 13753, 13754, 13755, 13756, 13757, 13758, 13759, 13760, 13761, 13762, 13763, 13764, 13765, 13766, 13767, 13768, 13769, 13770, 13771, 13772, 13773, 13774, 13775, 13776, 13777, 13778, 13779, 13780, 13781, 13782, 13783, 13784, 13785, 13786, 13787, 13788, 13789, 13790, 13791, 13792, 13793, 13794, 13795, 13796, 13797, 13798, 13799, 13800, 13801, 13802, 13803, 13804, 13805, 13806, 13807, 13808, 13809, 13810, 13811, 13812, 13813, 13814, 13815, 13816, 13817, 13818, 13819, 13820, 13821, 13822, 13823, 13824, 13825, 13826, 13827, 13828, 13829, 13830, 13831, 13832, 13833, 13834, 13835, 13836, 13837, 13838, 13839, 13840, 13841, 13842, 13843, 13844, 13845, 13846, 13847, 13848, 13849, 13850, 13851, 13852, 13853, 13854, 13855, 13856, 13857, 13858, 13859, 13860, 13861, 13862, 13863, 13864, 13865, 13866, 13867, 13868, 13869, 13870, 13871, 13872, 13873, 13874, 13875, 13876, 13877, 13878, 13879, 13880, 13881, 13882, 13883, 13884, 13885, 13886, 13887, 13888, 13889, 13890, 13891, 13892, 13893, 13894, 13895, 13896, 13897, 13898, 13899, 13900, 13901, 13902, 13903, 13904, 13905, 13906, 13907, 13908, 13909, 13910, 13911, 13912, 13913, 13914, 13915, 13916, 13917, 13918, 13919, 13920, 13921, 13922, 13923, 13924, 13925, 13926, 13927, 13928, 13929, 13930, 13931, 13932, 13933, 13934, 13935, 13936, 13937, 13938, 13939, 13940, 13941, 13942, 13943, 13944, 13945, 13946, 13947, 13948, 13949, 13950, 13951, 13952, 13953, 13954, 13955, 13956, 13957, 13958, 13959, 13960, 13961, 13962, 13963, 13964, 13965, 13966, 13967, 13968, 13969, 13970, 13971, 13972, 13973, 13974, 13975, 13976, 13977, 13978, 13979, 13980, 13981, 13982, 13983, 13984, 13985, 13986, 13987, 13988, 13989, 13990, 13991, 13992, 13993, 13994, 13995, 13996, 13997, 13998, 13999, 14000, 14001, 14002, 14003, 14004, 14005, 14006, 14007, 14008, 14009, 14010, 14011, 14012, 14013, 14014, 14015, 14016, 14017, 14018, 14019, 14020, 14021, 14022, 14023, 14024, 14025, 14026, 14027, 14028, 14029, 14030, 14031, 14032, 14033, 14034, 14035, 14036, 14037, 14038, 14039, 14040, 14041, 14042, 14043, 14044, 14045, 14046, 14047, 14048, 14049, 14050, 14051, 14052, 14053, 14054, 14055, 14056, 14057, 14058, 14059, 14060, 14061, 14062, 14063, 14064, 14065, 14066, 14067, 14068, 14069, 14070, 14071, 14072, 14073, 14074, 14075, 14076, 14077, 14078, 14079, 14080, 14081, 14082, 14083, 14084, 14085, 14086, 14087, 14088, 14089, 14090, 14091, 14092, 14093, 14094, 14095, 14096, 14097, 14098, 14099, 14100, 14101, 14102, 14103, 14104, 14105, 14106, 14107, 14108, 14109, 14110, 14111, 14112, 14113, 14114, 14115, 14116, 14117, 14118, 14119, 14120, 14121, 14122, 14123, 14124, 14125, 14126, 14127, 14128, 14129, 14130, 14131, 14132, 14133, 14134, 14135, 14136, 14137, 14138, 14139, 14140, 14141, 14142, 14143, 14144, 14145, 14146, 14147, 14148, 14149, 14150, 14151, 14152, 14153, 14154, 14155, 14156, 14157, 14158, 14159, 14160, 14161, 14162, 14163, 14164, 14165, 14166, 14167, 14168, 14169, 14170, 14171, 14172, 14173, 14174, 14175, 14176, 14177, 14178, 14179, 14180, 14181, 14182, 14183, 14184, 14185, 14186, 14187, 14188, 14189, 14190, 14191, 14192, 14193, 14194, 14195, 14196, 14197, 14198, 14199, 14200, 14201, 14202, 14203, 14204, 14205, 14206, 14207, 14208, 14209, 14210, 14211, 14212, 14213, 14214, 14215, 14216, 14217, 14218, 14219, 14220, 14221, 14222, 14223, 14224, 14225, 14226, 14227, 14228, 14229, 14230, 14231, 14232, 14233, 14234, 14235, 14236, 14237, 14238, 14239, 14240, 14241, 14242, 14243, 14244, 14245, 14246, 14247, 14248, 14249, 14250, 14251, 14252, 14253, 14254, 14255, 14256, 14257, 14258, 14259, 14260, 14261, 14262, 14263, 14264, 14265, 14266, 14267, 14268, 14269, 14270, 14271, 14272, 14273, 14274, 14275, 14276, 14277, 14278, 14279, 14280, 14281, 14282, 14283, 14284, 14285, 14286, 14287, 14288, 14289, 14290, 14291, 14292, 14293, 14294, 14295, 14296, 14297, 14298, 14299, 14300, 14301, 14302, 14303, 14304, 14305, 14306, 14307, 14308, 14309, 14310, 14311, 14312, 14313, 14314, 14315, 14316, 14317, 14318, 14319, 14320, 14321, 14322, 14323, 14324, 14325, 14326, 14327, 14328, 14329, 14330, 14331, 14332, 14333, 14334, 14335, 14336, 14337, 14338, 14339, 14340, 14341, 14342, 14343, 14344, 14345, 14346, 14347, 14348, 14349, 14350, 14351, 14352, 14353, 14354, 14355, 14356, 14357, 14358, 14359, 14360, 14361, 14362, 14363, 14364, 14365, 14366, 14367, 14368, 14369, 14370, 14371, 14372, 14373, 14374, 14375, 14376, 14377, 14378, 14379, 14380, 14381, 14382, 14383, 14384, 14385, 14386, 14387, 14388, 14389, 14390, 14391, 14392, 14393, 14394, 14395, 14396, 14397, 14398, 14399, 14400, 14401, 14402, 14403, 14404, 14405, 14406, 14407, 14408, 14409, 14410, 14411, 14412, 14413, 14414, 14415, 14416, 14417, 14418, 14419, 14420, 14421, 14422, 14423, 14424, 14425, 14426, 14427, 14428, 14429, 14430, 14431, 14432, 14433, 14434, 14435, 14436, 14437, 14438, 14439, 14440, 14441, 14442, 14443, 14444, 14445, 14446, 14447, 14448, 14449, 14450, 14451, 14452, 14453, 14454, 14455, 14456, 14457, 14458, 14459, 14460, 14461, 14462, 14463, 14464, 14465, 14466, 14467, 14468, 14469, 14470, 14471, 14472, 14473, 14474, 14475, 14476, 14477, 14478, 14479, 14480, 14481, 14482, 14483, 14484, 14485, 14486, 14487, 14488, 14489, 14490, 14491, 14492, 14493, 14494, 14495, 14496, 14497, 14498, 14499, 14500, 14501, 14502, 14503, 14504, 14505, 14506, 14507, 14508, 14509, 14510, 14511, 14512, 14513, 14514, 14515, 14516, 14517, 14518, 14519, 14520, 14521, 14522, 14523, 14524, 14525, 14526, 14527, 14528, 14529, 14530, 14531, 14532, 14533, 14534, 14535, 14536, 14537, 14538, 14539, 14540, 14541, 14542, 14543, 14544, 14545, 14546, 14547, 14548, 14549, 14550, 14551, 14552, 14553, 14554, 14555, 14556, 14557, 14558, 14559, 14560, 14561, 14562, 14563, 14564, 14565, 14566, 14567, 14568, 14569, 14570, 14571, 14572, 14573, 14574, 14575, 14576, 14577, 14578, 14579, 14580, 14581, 14582, 14583, 14584, 14585, 14586, 14587, 14588, 14589, 14590, 14591, 14592, 14593, 14594, 14595, 14596, 14597, 14598, 14599, 14600, 14601, 14602, 14603, 14604, 14605, 14606, 14607, 14608, 14609, 14610, 14611, 14612, 14613, 14614, 14615, 14616, 14617, 14618, 14619, 14620, 14621, 14622, 14623, 14624, 14625, 14626, 14627, 14628, 14629, 14630, 14631, 14632, 14633, 14634, 14635, 14636, 14637, 14638, 14639, 14640, 14641, 14642, 14643, 14644, 14645, 14646, 14647, 14648, 14649, 14650, 14651, 14652, 14653, 14654, 14655, 14656, 14657, 14658, 14659, 14660, 14661, 14662, 14663, 14664, 14665, 14666, 14667, 14668, 14669, 14670, 14671, 14672, 14673, 14674, 14675, 14676, 14677, 14678, 14679, 14680, 14681, 14682, 14683, 14684, 14685, 14686, 14687, 14688, 14689, 14690, 14691, 14692, 14693, 14694, 14695, 14696, 14697, 14698, 14699, 14700, 14701, 14702, 14703, 14704, 14705, 14706, 14707, 14708, 14709, 14710, 14711, 14712, 14713, 14714, 14715, 14716, 14717, 14718, 14719, 14720, 14721, 14722, 14723, 14724, 14725, 14726, 14727, 14728, 14729, 14730, 14731, 14732, 14733, 14734, 14735, 14736, 14737, 14738, 14739, 14740, 14741, 14742, 14743, 14744, 14745, 14746, 14747, 14748, 14749, 14750, 14751, 14752, 14753, 14754, 14755, 14756, 14757, 14758, 14759, 14760, 14761, 14762, 14763, 14764, 14765, 14766, 14767, 14768, 14769, 14770, 14771, 14772, 14773, 14774, 14775, 14776, 14777, 14778, 14779, 14780, 14781, 14782, 14783, 14784, 14785, 14786, 14787, 14788, 14789, 14790, 14791, 14792, 14793, 14794, 14795, 14796, 14797, 14798, 14799, 14800, 14801, 14802, 14803, 14804, 14805, 14806, 14807, 14808, 14809, 14810, 14811, 14812, 14813, 14814, 14815, 14816, 14817, 14818, 14819, 14820, 14821, 14822, 14823, 14824, 14825, 14826, 14827, 14828, 14829, 14830, 14831, 14832, 14833, 14834, 14835, 14836, 14837, 14838, 14839, 14840, 14841, 14842, 14843, 14844, 14845, 14846, 14847, 14848, 14849, 14850, 14851, 14852, 14853, 14854, 14855, 14856, 14857, 14858, 14859, 14860, 14861, 14862, 14863, 14864, 14865, 14866, 14867, 14868, 14869, 14870, 14871, 14872, 14873, 14874, 14875, 14876, 14877, 14878, 14879, 14880, 14881, 14882, 14883, 14884, 14885, 14886, 14887, 14888, 14889, 14890, 14891, 14892, 14893, 14894, 14895, 14896, 14897, 14898, 14899, 14900, 14901, 14902, 14903, 14904, 14905, 14906, 14907, 14908, 14909, 14910, 14911, 14912, 14913, 14914, 14915, 14916, 14917, 14918, 14919, 14920, 14921, 14922, 14923, 14924, 14925, 14926, 14927, 14928, 14929, 14930, 14931, 14932, 14933, 14934, 14935, 14936, 14937, 14938, 14939, 14940, 14941, 14942, 14943, 14944, 14945, 14946, 14947, 14948, 14949, 14950, 14951, 14952, 14953, 14954, 14955, 14956, 14957, 14958, 14959, 14960, 14961, 14962, 14963, 14964, 14965, 14966, 14967, 14968, 14969, 14970, 14971, 14972, 14973, 14974, 14975, 14976, 14977, 14978, 14979, 14980, 14981, 14982, 14983, 14984, 14985, 14986, 14987, 14988, 14989, 14990, 14991, 14992, 14993, 14994, 14995, 14996, 14997, 14998, 14999, 15000, 15001, 15002, 15003, 15004, 15005, 15006, 15007, 15008, 15009, 15010, 15011, 15012, 15013, 15014, 15015, 15016, 15017, 15018, 15019, 15020, 15021, 15022, 15023, 15024, 15025, 15026, 15027, 15028, 15029, 15030, 15031, 15032, 15033, 15034, 15035, 15036, 15037, 15038, 15039, 15040, 15041, 15042, 15043, 15044, 15045, 15046, 15047, 15048, 15049, 15050, 15051, 15052, 15053, 15054, 15055, 15056, 15057, 15058, 15059, 15060, 15061, 15062, 15063, 15064, 15065, 15066, 15067, 15068, 15069, 15070, 15071, 15072, 15073, 15074, 15075, 15076, 15077, 15078, 15079, 15080, 15081, 15082, 15083, 15084, 15085, 15086, 15087, 15088, 15089, 15090, 15091, 15092, 15093, 15094, 15095, 15096, 15097, 15098, 15099, 15100, 15101, 15102, 15103, 15104, 15105, 15106, 15107, 15108, 15109, 15110, 15111, 15112, 15113, 15114, 15115, 15116, 15117, 15118, 15119, 15120, 15121, 15122, 15123, 15124, 15125, 15126, 15127, 15128, 15129, 15130, 15131, 15132, 15133, 15134, 15135, 15136, 15137, 15138, 15139, 15140, 15141, 15142, 15143, 15144, 15145, 15146, 15147, 15148, 15149, 15150, 15151, 15152, 15153, 15154, 15155, 15156, 15157, 15158, 15159, 15160, 15161, 15162, 15163, 15164, 15165, 15166, 15167, 15168, 15169, 15170, 15171, 15172, 15173, 15174, 15175, 15176, 15177, 15178, 15179, 15180, 15181, 15182, 15183, 15184, 15185, 15186, 15187, 15188, 15189, 15190, 15191, 15192, 15193, 15194, 15195, 15196, 15197, 15198, 15199, 15200, 15201, 15202, 15203, 15204, 15205, 15206, 15207, 15208, 15209, 15210, 15211, 15212, 15213, 15214, 15215, 15216, 15217, 15218, 15219, 15220, 15221, 15222, 15223, 15224, 15225, 15226, 15227, 15228, 15229, 15230, 15231, 15232, 15233, 15234, 15235, 15236, 15237, 15238, 15239, 15240, 15241, 15242, 15243, 15244, 15245, 15246, 15247, 15248, 15249, 15250, 15251, 15252, 15253, 15254, 15255, 15256, 15257, 15258, 15259, 15260, 15261, 15262, 15263, 15264, 15265, 15266, 15267, 15268, 15269, 15270, 15271, 15272, 15273, 15274, 15275, 15276, 15277, 15278, 15279, 15280, 15281, 15282, 15283, 15284, 15285, 15286, 15287, 15288, 15289, 15290, 15291, 15292, 15293, 15294, 15295, 15296, 15297, 15298, 15299, 15300, 15301, 15302, 15303, 15304, 15305, 15306, 15307, 15308, 15309, 15310, 15311, 15312, 15313, 15314, 15315, 15316, 15317, 15318, 15319, 15320, 15321, 15322, 15323, 15324, 15325, 15326, 15327, 15328, 15329, 15330, 15331, 15332, 15333, 15334, 15335, 15336, 15337, 15338, 15339, 15340, 15341, 15342, 15343, 15344, 15345, 15346, 15347, 15348, 15349, 15350, 15351, 15352, 15353, 15354, 15355, 15356, 15357, 15358, 15359, 15360, 15361, 15362, 15363, 15364, 15365, 15366, 15367, 15368, 15369, 15370, 15371, 15372, 15373, 15374, 15375, 15376, 15377, 15378, 15379, 15380, 15381, 15382, 15383, 15384, 15385, 15386, 15387, 15388, 15389, 15390, 15391, 15392, 15393, 15394, 15395, 15396, 15397, 15398, 15399, 15400, 15401, 15402, 15403, 15404, 15405, 15406, 15407, 15408, 15409, 15410, 15411, 15412, 15413, 15414, 15415, 15416, 15417, 15418, 15419, 15420, 15421, 15422, 15423, 15424, 15425, 15426, 15427, 15428, 15429, 15430, 15431, 15432, 15433, 15434, 15435, 15436, 15437, 15438, 15439, 15440, 15441, 15442, 15443, 15444, 15445, 15446, 15447, 15448, 15449, 15450, 15451, 15452, 15453, 15454, 15455, 15456, 15457, 15458, 15459, 15460, 15461, 15462, 15463, 15464, 15465, 15466, 15467, 15468, 15469, 15470, 15471, 15472, 15473, 15474, 15475, 15476, 15477, 15478, 15479, 15480, 15481, 15482, 15483, 15484, 15485, 15486, 15487, 15488, 15489, 15490, 15491, 15492, 15493, 15494, 15495, 15496, 15497, 15498, 15499, 15500, 15501, 15502, 15503, 15504, 15505, 15506, 15507, 15508, 15509, 15510, 15511, 15512, 15513, 15514, 15515, 15516, 15517, 15518, 15519, 15520, 15521, 15522, 15523, 15524, 15525, 15526, 15527, 15528, 15529, 15530, 15531, 15532, 15533, 15534, 15535, 15536, 15537, 15538, 15539, 15540, 15541, 15542, 15543, 15544, 15545, 15546, 15547, 15548, 15549, 15550, 15551, 15552, 15553, 15554, 15555, 15556, 15557, 15558, 15559, 15560, 15561, 15562, 15563, 15564, 15565, 15566, 15567, 15568, 15569, 15570, 15571, 15572, 15573, 15574, 15575, 15576, 15577, 15578, 15579, 15580, 15581, 15582, 15583, 15584, 15585, 15586, 15587, 15588, 15589, 15590, 15591, 15592, 15593, 15594, 15595, 15596, 15597, 15598, 15599, 15600, 15601, 15602, 15603, 15604, 15605, 15606, 15607, 15608, 15609, 15610, 15611, 15612, 15613, 15614, 15615, 15616, 15617, 15618, 15619, 15620, 15621, 15622, 15623, 15624, 15625, 15626, 15627, 15628, 15629, 15630, 15631, 15632, 15633, 15634, 15635, 15636, 15637, 15638, 15639, 15640, 15641, 15642, 15643, 15644, 15645, 15646, 15647, 15648, 15649, 15650, 15651, 15652, 15653, 15654, 15655, 15656, 15657, 15658, 15659, 15660, 15661, 15662, 15663, 15664, 15665, 15666, 15667, 15668, 15669, 15670, 15671, 15672, 15673, 15674, 15675, 15676, 15677, 15678, 15679, 15680, 15681, 15682, 15683, 15684, 15685, 15686, 15687, 15688, 15689, 15690, 15691, 15692, 15693, 15694, 15695, 15696, 15697, 15698, 15699, 15700, 15701, 15702, 15703, 15704, 15705, 15706, 15707, 15708, 15709, 15710, 15711, 15712, 15713, 15714, 15715, 15716, 15717, 15718, 15719, 15720, 15721, 15722, 15723, 15724, 15725, 15726, 15727, 15728, 15729, 15730, 15731, 15732, 15733, 15734, 15735, 15736, 15737, 15738, 15739, 15740, 15741, 15742, 15743, 15744, 15745, 15746, 15747, 15748, 15749, 15750, 15751, 15752, 15753, 15754, 15755, 15756, 15757, 15758, 15759, 15760, 15761, 15762, 15763, 15764, 15765, 15766, 15767, 15768, 15769, 15770, 15771, 15772, 15773, 15774, 15775, 15776, 15777, 15778, 15779, 15780, 15781, 15782, 15783, 15784, 15785, 15786, 15787, 15788, 15789, 15790, 15791, 15792, 15793, 15794, 15795, 15796, 15797, 15798, 15799, 15800, 15801, 15802, 15803, 15804, 15805, 15806, 15807, 15808, 15809, 15810, 15811, 15812, 15813, 15814, 15815, 15816, 15817, 15818, 15819, 15820, 15821, 15822, 15823, 15824, 15825, 15826, 15827, 15828, 15829, 15830, 15831, 15832, 15833, 15834, 15835, 15836, 15837, 15838, 15839, 15840, 15841, 15842, 15843, 15844, 15845, 15846, 15847, 15848, 15849, 15850, 15851, 15852, 15853, 15854, 15855, 15856, 15857, 15858, 15859, 15860, 15861, 15862, 15863, 15864, 15865, 15866, 15867, 15868, 15869, 15870, 15871, 15872, 15873, 15874, 15875, 15876, 15877, 15878, 15879, 15880, 15881, 15882, 15883, 15884, 15885, 15886, 15887, 15888, 15889, 15890, 15891, 15892, 15893, 15894, 15895, 15896, 15897, 15898, 15899, 15900, 15901, 15902, 15903, 15904, 15905, 15906, 15907, 15908, 15909, 15910, 15911, 15912, 15913, 15914, 15915, 15916, 15917, 15918, 15919, 15920, 15921, 15922, 15923, 15924, 15925, 15926, 15927, 15928, 15929, 15930, 15931, 15932, 15933, 15934, 15935, 15936, 15937, 15938, 15939, 15940, 15941, 15942, 15943, 15944, 15945, 15946, 15947, 15948, 15949, 15950, 15951, 15952, 15953, 15954, 15955, 15956, 15957, 15958, 15959, 15960, 15961, 15962, 15963, 15964, 15965, 15966, 15967, 15968, 15969, 15970, 15971, 15972, 15973, 15974, 15975, 15976, 15977, 15978, 15979, 15980, 15981, 15982, 15983, 15984, 15985, 15986, 15987, 15988, 15989, 15990, 15991, 15992, 15993, 15994, 15995, 15996, 15997, 15998, 15999, 16000, 16001, 16002, 16003, 16004, 16005, 16006, 16007, 16008, 16009, 16010, 16011, 16012, 16013, 16014, 16015, 16016, 16017, 16018, 16019, 16020, 16021, 16022, 16023, 16024, 16025, 16026, 16027, 16028, 16029, 16030, 16031, 16032, 16033, 16034, 16035, 16036, 16037, 16038, 16039, 16040, 16041, 16042, 16043, 16044, 16045, 16046, 16047, 16048, 16049, 16050, 16051, 16052, 16053, 16054, 16055, 16056, 16057, 16058, 16059, 16060, 16061, 16062, 16063, 16064, 16065, 16066, 16067, 16068, 16069, 16070, 16071, 16072, 16073, 16074, 16075, 16076, 16077, 16078, 16079, 16080, 16081, 16082, 16083, 16084, 16085, 16086, 16087, 16088, 16089, 16090, 16091, 16092, 16093, 16094, 16095, 16096, 16097, 16098, 16099, 16100, 16101, 16102, 16103, 16104, 16105, 16106, 16107, 16108, 16109, 16110, 16111, 16112, 16113, 16114, 16115, 16116, 16117, 16118, 16119, 16120, 16121, 16122, 16123, 16124, 16125, 16126, 16127, 16128, 16129, 16130, 16131, 16132, 16133, 16134, 16135, 16136, 16137, 16138, 16139, 16140, 16141, 16142, 16143, 16144, 16145, 16146, 16147, 16148, 16149, 16150, 16151, 16152, 16153, 16154, 16155, 16156, 16157, 16158, 16159, 16160, 16161, 16162, 16163, 16164, 16165, 16166, 16167, 16168, 16169, 16170, 16171, 16172, 16173, 16174, 16175, 16176, 16177, 16178, 16179, 16180, 16181, 16182, 16183, 16184, 16185, 16186, 16187, 16188, 16189, 16190, 16191, 16192, 16193, 16194, 16195, 16196, 16197, 16198, 16199, 16200, 16201, 16202, 16203], "21": [16204, 16205, 16206], "22": [16207, 16208, 16209, 16210, 16211], "23": [16212, 16213, 16214, 16215, 16216, 16217], "24": [16218, 16219, 16220, 16221, 16222, 16223, 16224, 16225, 16226, 16227, 16228, 16229, 16230, 16231, 16232], "25": [16233, 16234, 16235, 16236, 16237, 16238, 16239, 16240, 16241, 16242, 16243, 16244, 16245, 16246, 16247, 16248, 16249, 16250, 16251, 16252, 16253, 16254, 16255, 16256, 16257, 16258], "26": [16259, 16260, 16261, 16262, 16263, 16264, 16265, 16266, 16267, 16268, 16269, 16270, 16271, 16272, 16273, 16274, 16275, 16276, 16277, 16278, 16279, 16280, 16281, 16282, 16283, 16284, 16285, 16286, 16287, 16288, 16289, 16290, 16291, 16292, 16293, 16294, 16295, 16296, 16297, 16298, 16299, 16300, 16301, 16302, 16303, 16304, 16305, 16306, 16307, 16308, 16309, 16310, 16311, 16312, 16313, 16314, 16315, 16316, 16317, 16318, 16319, 16320, 16321, 16322, 16323, 16324, 16325, 16326, 16327, 16328, 16329, 16330, 16331, 16332, 16333, 16334, 16335, 16336, 16337, 16338, 16339, 16340, 16341, 16342, 16343, 16344, 16345, 16346, 16347, 16348, 16349, 16350, 16351, 16352, 16353, 16354, 16355, 16356, 16357, 16358, 16359, 16360, 16361, 16362, 16363, 16364, 16365, 16366, 16367, 16368, 16369, 16370, 16371, 16372, 16373, 16374, 16375, 16376, 16377, 16378, 16379, 16380, 16381, 16382, 16383, 16384, 16385, 16386, 16387, 16388, 16389, 16390, 16391, 16392, 16393, 16394, 16395, 16396, 16397, 16398, 16399, 16400, 16401, 16402, 16403, 16404, 16405, 16406, 16407, 16408, 16409, 16410, 16411, 16412, 16413, 16414, 16415, 16416, 16417, 16418, 16419, 16420, 16421, 16422, 16423, 16424, 16425, 16426, 16427, 16428, 16429, 16430, 16431, 16432, 16433, 16434, 16435, 16436, 16437, 16438, 16439, 16440, 16441, 16442, 16443, 16444, 16445, 16446, 16447, 16448, 16449, 16450], "27": [16451, 16452, 16453, 16454, 16455, 16456, 16457], "28": [16458, 16459], "29": [16460, 16461, 16462, 16463, 16464, 16465, 16466, 16467, 16468, 16469], "30": [16470, 16471]}, "random_state": 1029, "numeric_nparts": 1, "numeric_precision": 4, "numeric_max_len": 10, "experiment_id": "id000017776237140881922048", "trainer_state": null, "target_col": null, "realtabformer_version": "0.2.4"} \ No newline at end of file diff --git a/timecost/c14/realtabformer/rtf-c14-20260501_010151/models_100epochs/id000017776237140881922048/rtf_model.pt b/timecost/c14/realtabformer/rtf-c14-20260501_010151/models_100epochs/id000017776237140881922048/rtf_model.pt new file mode 100644 index 0000000000000000000000000000000000000000..b55f49e6d09f0c9b68b920fac14296be5a39dab8 --- /dev/null +++ b/timecost/c14/realtabformer/rtf-c14-20260501_010151/models_100epochs/id000017776237140881922048/rtf_model.pt @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:11cba51624d87b281e23f227aaac6b3004a74a7f5fc41de262cc117c8b902f65 +size 223891939 diff --git a/timecost/c14/realtabformer/rtf-c14-20260501_010151/public_gate/normalized_schema_snapshot.json b/timecost/c14/realtabformer/rtf-c14-20260501_010151/public_gate/normalized_schema_snapshot.json new file mode 100644 index 0000000000000000000000000000000000000000..c43047a97cac9542e79dfa127e651be7146aa2a4 --- /dev/null +++ b/timecost/c14/realtabformer/rtf-c14-20260501_010151/public_gate/normalized_schema_snapshot.json @@ -0,0 +1,509 @@ +{ + "dataset_id": "c14", + "target_column": "target", + "task_type": "classification", + "columns": [ + { + "name": "id", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 20000, + "unique_ratio": 0.083333, + "example_values": [ + "182547", + "28342", + "172611", + "81876", + "110780" + ] + } + }, + { + "name": "bin_0", + "role": "feature", + "semantic_type": "boolean", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 2, + "unique_ratio": 8e-06, + "example_values": [ + "0", + "1" + ] + } + }, + { + "name": "bin_1", + "role": "feature", + "semantic_type": "boolean", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 2, + "unique_ratio": 8e-06, + "example_values": [ + "0", + "1" + ] + } + }, + { + "name": "bin_2", + "role": "feature", + "semantic_type": "boolean", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 2, + "unique_ratio": 8e-06, + "example_values": [ + "0", + "1" + ] + } + }, + { + "name": "bin_3", + "role": "feature", + "semantic_type": "boolean", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 2, + "unique_ratio": 8e-06, + "example_values": [ + "F", + "T" + ] + } + }, + { + "name": "bin_4", + "role": "feature", + "semantic_type": "boolean", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 2, + "unique_ratio": 8e-06, + "example_values": [ + "Y", + "N" + ] + } + }, + { + "name": "nom_0", + "role": "feature", + "semantic_type": "categorical", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 3, + "unique_ratio": 1.3e-05, + "example_values": [ + "Blue", + "Green", + "Red" + ] + } + }, + { + "name": "nom_1", + "role": "feature", + "semantic_type": "categorical", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 6, + "unique_ratio": 2.5e-05, + "example_values": [ + "Trapezoid", + "Polygon", + "Square", + "Star", + "Triangle" + ] + } + }, + { + "name": "nom_2", + "role": "feature", + "semantic_type": "categorical", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 6, + "unique_ratio": 2.5e-05, + "example_values": [ + "Cat", + "Dog", + "Lion", + "Snake", + "Axolotl" + ] + } + }, + { + "name": "nom_3", + "role": "feature", + "semantic_type": "categorical", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 6, + "unique_ratio": 2.5e-05, + "example_values": [ + "China", + "Finland", + "Canada", + "India", + "Russia" + ] + } + }, + { + "name": "nom_4", + "role": "feature", + "semantic_type": "categorical", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 4, + "unique_ratio": 1.7e-05, + "example_values": [ + "Oboe", + "Bassoon", + "Theremin", + "Piano" + ] + } + }, + { + "name": "nom_5", + "role": "feature", + "semantic_type": "categorical", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 222, + "unique_ratio": 0.000925, + "example_values": [ + "c5725677e", + "92190168b", + "dbfb714a4", + "60a44c8f4", + "e70a6270d" + ] + } + }, + { + "name": "nom_6", + "role": "feature", + "semantic_type": "categorical", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 522, + "unique_ratio": 0.002175, + "example_values": [ + "231233ca9", + "79a82b7c0", + "9a70de492", + "cad70d692", + "6d2cd10c5" + ] + } + }, + { + "name": "nom_7", + "role": "feature", + "semantic_type": "categorical", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 1219, + "unique_ratio": 0.005079, + "example_values": [ + "673d3c1c0", + "7ad3e362c", + "fcd030cc2", + "27e8d4511", + "7df1399cb" + ] + } + }, + { + "name": "nom_8", + "role": "feature", + "semantic_type": "categorical", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 2215, + "unique_ratio": 0.009229, + "example_values": [ + "4fbb167ac", + "7d97eba78", + "b886d6c1c", + "a9d35cede", + "fd0041a98" + ] + } + }, + { + "name": "nom_9", + "role": "feature", + "semantic_type": "categorical", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 11927, + "unique_ratio": 0.049696, + "example_values": [ + "1f31c5cc1", + "89539e0fa", + "8a34e794f", + "34760ea8a", + "46b472cdb" + ] + } + }, + { + "name": "ord_0", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 3, + "unique_ratio": 1.3e-05, + "example_values": [ + "1", + "2", + "3" + ] + } + }, + { + "name": "ord_1", + "role": "feature", + "semantic_type": "categorical", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 5, + "unique_ratio": 2.1e-05, + "example_values": [ + "Grandmaster", + "Contributor", + "Novice", + "Master", + "Expert" + ] + } + }, + { + "name": "ord_2", + "role": "feature", + "semantic_type": "categorical", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 6, + "unique_ratio": 2.5e-05, + "example_values": [ + "Lava Hot", + "Boiling Hot", + "Freezing", + "Hot", + "Cold" + ] + } + }, + { + "name": "ord_3", + "role": "feature", + "semantic_type": "categorical", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 15, + "unique_ratio": 6.3e-05, + "example_values": [ + "g", + "j", + "l", + "f", + "k" + ] + } + }, + { + "name": "ord_4", + "role": "feature", + "semantic_type": "categorical", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 26, + "unique_ratio": 0.000108, + "example_values": [ + "L", + "S", + "K", + "I", + "A" + ] + } + }, + { + "name": "ord_5", + "role": "feature", + "semantic_type": "categorical", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 192, + "unique_ratio": 0.0008, + "example_values": [ + "qo", + "aM", + "AP", + "fO", + "hh" + ] + } + }, + { + "name": "day", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 7, + "unique_ratio": 2.9e-05, + "example_values": [ + "1", + "2", + "7", + "4", + "3" + ] + } + }, + { + "name": "month", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 12, + "unique_ratio": 5e-05, + "example_values": [ + "12", + "4", + "8", + "2", + "9" + ] + } + }, + { + "name": "target", + "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": 8e-06, + "example_values": [ + "0", + "1" + ] + } + } + ] +} \ No newline at end of file diff --git a/timecost/c14/realtabformer/rtf-c14-20260501_010151/public_gate/public_gate_report.json b/timecost/c14/realtabformer/rtf-c14-20260501_010151/public_gate/public_gate_report.json new file mode 100644 index 0000000000000000000000000000000000000000..9374818599b8101d02e793ea785975d77363e3fd --- /dev/null +++ b/timecost/c14/realtabformer/rtf-c14-20260501_010151/public_gate/public_gate_report.json @@ -0,0 +1,37 @@ +{ + "dataset_id": "c14", + "status": "pass", + "checks": [ + { + "check_id": "PG001_csv_parse_ok", + "status": "pass" + }, + { + "check_id": "PG002_split_header_consistent", + "status": "pass" + }, + { + "check_id": "PG003_profile_header_match", + "status": "pass" + }, + { + "check_id": "PG004_missing_token_normalized", + "status": "pass" + }, + { + "check_id": "PG005_semantic_type_validated", + "status": "pass" + }, + { + "check_id": "PG006_target_defined_and_valid", + "status": "pass" + } + ], + "target_column": "target", + "task_type": "classification", + "input_splits": { + "train": "/data/jialinzhang/SynthesizePipeline-server/DatasetNew/c14/c14-train.csv", + "val": "/data/jialinzhang/SynthesizePipeline-server/DatasetNew/c14/c14-val.csv", + "test": "/data/jialinzhang/SynthesizePipeline-server/DatasetNew/c14/c14-test.csv" + } +} \ No newline at end of file diff --git a/timecost/c14/realtabformer/rtf-c14-20260501_010151/public_gate/staged_input_manifest.json b/timecost/c14/realtabformer/rtf-c14-20260501_010151/public_gate/staged_input_manifest.json new file mode 100644 index 0000000000000000000000000000000000000000..e2d3ede670cbb416f22a5276049b0619f0b2f23c --- /dev/null +++ b/timecost/c14/realtabformer/rtf-c14-20260501_010151/public_gate/staged_input_manifest.json @@ -0,0 +1,514 @@ +{ + "dataset_id": "c14", + "target_column": "target", + "task_type": "classification", + "train_csv": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/c14/realtabformer/rtf-c14-20260501_010151/staged/public/train.csv", + "val_csv": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/c14/realtabformer/rtf-c14-20260501_010151/staged/public/val.csv", + "test_csv": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/c14/realtabformer/rtf-c14-20260501_010151/staged/public/test.csv", + "features_json": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/c14/realtabformer/rtf-c14-20260501_010151/staged/public/staged_features.json", + "public_gate_report": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/c14/realtabformer/rtf-c14-20260501_010151/public_gate/public_gate_report.json", + "column_schema": [ + { + "name": "id", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 20000, + "unique_ratio": 0.083333, + "example_values": [ + "182547", + "28342", + "172611", + "81876", + "110780" + ] + } + }, + { + "name": "bin_0", + "role": "feature", + "semantic_type": "boolean", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 2, + "unique_ratio": 8e-06, + "example_values": [ + "0", + "1" + ] + } + }, + { + "name": "bin_1", + "role": "feature", + "semantic_type": "boolean", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 2, + "unique_ratio": 8e-06, + "example_values": [ + "0", + "1" + ] + } + }, + { + "name": "bin_2", + "role": "feature", + "semantic_type": "boolean", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 2, + "unique_ratio": 8e-06, + "example_values": [ + "0", + "1" + ] + } + }, + { + "name": "bin_3", + "role": "feature", + "semantic_type": "boolean", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 2, + "unique_ratio": 8e-06, + "example_values": [ + "F", + "T" + ] + } + }, + { + "name": "bin_4", + "role": "feature", + "semantic_type": "boolean", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 2, + "unique_ratio": 8e-06, + "example_values": [ + "Y", + "N" + ] + } + }, + { + "name": "nom_0", + "role": "feature", + "semantic_type": "categorical", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 3, + "unique_ratio": 1.3e-05, + "example_values": [ + "Blue", + "Green", + "Red" + ] + } + }, + { + "name": "nom_1", + "role": "feature", + "semantic_type": "categorical", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 6, + "unique_ratio": 2.5e-05, + "example_values": [ + "Trapezoid", + "Polygon", + "Square", + "Star", + "Triangle" + ] + } + }, + { + "name": "nom_2", + "role": "feature", + "semantic_type": "categorical", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 6, + "unique_ratio": 2.5e-05, + "example_values": [ + "Cat", + "Dog", + "Lion", + "Snake", + "Axolotl" + ] + } + }, + { + "name": "nom_3", + "role": "feature", + "semantic_type": "categorical", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 6, + "unique_ratio": 2.5e-05, + "example_values": [ + "China", + "Finland", + "Canada", + "India", + "Russia" + ] + } + }, + { + "name": "nom_4", + "role": "feature", + "semantic_type": "categorical", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 4, + "unique_ratio": 1.7e-05, + "example_values": [ + "Oboe", + "Bassoon", + "Theremin", + "Piano" + ] + } + }, + { + "name": "nom_5", + "role": "feature", + "semantic_type": "categorical", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 222, + "unique_ratio": 0.000925, + "example_values": [ + "c5725677e", + "92190168b", + "dbfb714a4", + "60a44c8f4", + "e70a6270d" + ] + } + }, + { + "name": "nom_6", + "role": "feature", + "semantic_type": "categorical", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 522, + "unique_ratio": 0.002175, + "example_values": [ + "231233ca9", + "79a82b7c0", + "9a70de492", + "cad70d692", + "6d2cd10c5" + ] + } + }, + { + "name": "nom_7", + "role": "feature", + "semantic_type": "categorical", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 1219, + "unique_ratio": 0.005079, + "example_values": [ + "673d3c1c0", + "7ad3e362c", + "fcd030cc2", + "27e8d4511", + "7df1399cb" + ] + } + }, + { + "name": "nom_8", + "role": "feature", + "semantic_type": "categorical", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 2215, + "unique_ratio": 0.009229, + "example_values": [ + "4fbb167ac", + "7d97eba78", + "b886d6c1c", + "a9d35cede", + "fd0041a98" + ] + } + }, + { + "name": "nom_9", + "role": "feature", + "semantic_type": "categorical", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 11927, + "unique_ratio": 0.049696, + "example_values": [ + "1f31c5cc1", + "89539e0fa", + "8a34e794f", + "34760ea8a", + "46b472cdb" + ] + } + }, + { + "name": "ord_0", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 3, + "unique_ratio": 1.3e-05, + "example_values": [ + "1", + "2", + "3" + ] + } + }, + { + "name": "ord_1", + "role": "feature", + "semantic_type": "categorical", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 5, + "unique_ratio": 2.1e-05, + "example_values": [ + "Grandmaster", + "Contributor", + "Novice", + "Master", + "Expert" + ] + } + }, + { + "name": "ord_2", + "role": "feature", + "semantic_type": "categorical", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 6, + "unique_ratio": 2.5e-05, + "example_values": [ + "Lava Hot", + "Boiling Hot", + "Freezing", + "Hot", + "Cold" + ] + } + }, + { + "name": "ord_3", + "role": "feature", + "semantic_type": "categorical", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 15, + "unique_ratio": 6.3e-05, + "example_values": [ + "g", + "j", + "l", + "f", + "k" + ] + } + }, + { + "name": "ord_4", + "role": "feature", + "semantic_type": "categorical", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 26, + "unique_ratio": 0.000108, + "example_values": [ + "L", + "S", + "K", + "I", + "A" + ] + } + }, + { + "name": "ord_5", + "role": "feature", + "semantic_type": "categorical", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 192, + "unique_ratio": 0.0008, + "example_values": [ + "qo", + "aM", + "AP", + "fO", + "hh" + ] + } + }, + { + "name": "day", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 7, + "unique_ratio": 2.9e-05, + "example_values": [ + "1", + "2", + "7", + "4", + "3" + ] + } + }, + { + "name": "month", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 12, + "unique_ratio": 5e-05, + "example_values": [ + "12", + "4", + "8", + "2", + "9" + ] + } + }, + { + "name": "target", + "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": 8e-06, + "example_values": [ + "0", + "1" + ] + } + } + ] +} \ No newline at end of file diff --git a/timecost/c14/realtabformer/rtf-c14-20260501_010151/realtabformer_features.json b/timecost/c14/realtabformer/rtf-c14-20260501_010151/realtabformer_features.json new file mode 100644 index 0000000000000000000000000000000000000000..508fbe870849f119fe0f440e76f620b91489d965 --- /dev/null +++ b/timecost/c14/realtabformer/rtf-c14-20260501_010151/realtabformer_features.json @@ -0,0 +1,127 @@ +[ + { + "feature_name": "id", + "data_type": "continuous", + "is_target": false + }, + { + "feature_name": "bin_0", + "data_type": "binary", + "is_target": false + }, + { + "feature_name": "bin_1", + "data_type": "binary", + "is_target": false + }, + { + "feature_name": "bin_2", + "data_type": "binary", + "is_target": false + }, + { + "feature_name": "bin_3", + "data_type": "binary", + "is_target": false + }, + { + "feature_name": "bin_4", + "data_type": "binary", + "is_target": false + }, + { + "feature_name": "nom_0", + "data_type": "categorical", + "is_target": false + }, + { + "feature_name": "nom_1", + "data_type": "categorical", + "is_target": false + }, + { + "feature_name": "nom_2", + "data_type": "categorical", + "is_target": false + }, + { + "feature_name": "nom_3", + "data_type": "categorical", + "is_target": false + }, + { + "feature_name": "nom_4", + "data_type": "categorical", + "is_target": false + }, + { + "feature_name": "nom_5", + "data_type": "categorical", + "is_target": false + }, + { + "feature_name": "nom_6", + "data_type": "categorical", + "is_target": false + }, + { + "feature_name": "nom_7", + "data_type": "categorical", + "is_target": false + }, + { + "feature_name": "nom_8", + "data_type": "categorical", + "is_target": false + }, + { + "feature_name": "nom_9", + "data_type": "categorical", + "is_target": false + }, + { + "feature_name": "ord_0", + "data_type": "continuous", + "is_target": false + }, + { + "feature_name": "ord_1", + "data_type": "categorical", + "is_target": false + }, + { + "feature_name": "ord_2", + "data_type": "categorical", + "is_target": false + }, + { + "feature_name": "ord_3", + "data_type": "categorical", + "is_target": false + }, + { + "feature_name": "ord_4", + "data_type": "categorical", + "is_target": false + }, + { + "feature_name": "ord_5", + "data_type": "categorical", + "is_target": false + }, + { + "feature_name": "day", + "data_type": "continuous", + "is_target": false + }, + { + "feature_name": "month", + "data_type": "continuous", + "is_target": false + }, + { + "feature_name": "target", + "data_type": "binary", + "is_target": true + } +] \ No newline at end of file diff --git a/timecost/c14/realtabformer/rtf-c14-20260501_010151/rtf-c14-240000-20260501_162159.csv b/timecost/c14/realtabformer/rtf-c14-20260501_010151/rtf-c14-240000-20260501_162159.csv new file mode 100644 index 0000000000000000000000000000000000000000..cfc3ab5d0e34c342d1f70d9ad6e0c471ad7742e4 --- /dev/null +++ b/timecost/c14/realtabformer/rtf-c14-20260501_010151/rtf-c14-240000-20260501_162159.csv @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:2afede9d15a1b324e7f6771fad9455bedcbaac0aa0cd6046298b0904a3a030af +size 31715302 diff --git a/timecost/c14/realtabformer/rtf-c14-20260501_010151/rtf_checkpoints/checkpoint-749500/config.json b/timecost/c14/realtabformer/rtf-c14-20260501_010151/rtf_checkpoints/checkpoint-749500/config.json new file mode 100644 index 0000000000000000000000000000000000000000..79a0184a09b7bca7a3c208529833166f08ca48c0 --- /dev/null +++ b/timecost/c14/realtabformer/rtf-c14-20260501_010151/rtf_checkpoints/checkpoint-749500/config.json @@ -0,0 +1,34 @@ +{ + "activation_function": "gelu_new", + "add_cross_attention": false, + "architectures": [ + "GPT2LMHeadModel" + ], + "attn_pdrop": 0.1, + "bos_token_id": 5, + "dtype": "float32", + "embd_pdrop": 0.1, + "eos_token_id": 6, + "initializer_range": 0.02, + "layer_norm_epsilon": 1e-05, + "model_type": "gpt2", + "n_embd": 768, + "n_head": 12, + "n_inner": null, + "n_layer": 6, + "n_positions": 1024, + "pad_token_id": null, + "reorder_and_upcast_attn": false, + "resid_pdrop": 0.1, + "scale_attn_by_inverse_layer_idx": false, + "scale_attn_weights": true, + "summary_activation": null, + "summary_first_dropout": 0.1, + "summary_proj_to_labels": true, + "summary_type": "cls_index", + "summary_use_proj": true, + "tie_word_embeddings": true, + "transformers_version": "5.5.3", + "use_cache": false, + "vocab_size": 16472 +} diff --git a/timecost/c14/realtabformer/rtf-c14-20260501_010151/rtf_checkpoints/checkpoint-749500/generation_config.json b/timecost/c14/realtabformer/rtf-c14-20260501_010151/rtf_checkpoints/checkpoint-749500/generation_config.json new file mode 100644 index 0000000000000000000000000000000000000000..ffe89567780e75b5c22eade9be971483b9618f39 --- /dev/null +++ b/timecost/c14/realtabformer/rtf-c14-20260501_010151/rtf_checkpoints/checkpoint-749500/generation_config.json @@ -0,0 +1,9 @@ +{ + "_from_model_config": true, + "bos_token_id": 5, + "eos_token_id": 6, + "output_attentions": false, + "output_hidden_states": false, + "transformers_version": "5.5.3", + "use_cache": true +} diff --git a/timecost/c14/realtabformer/rtf-c14-20260501_010151/rtf_checkpoints/checkpoint-749500/model.safetensors b/timecost/c14/realtabformer/rtf-c14-20260501_010151/rtf_checkpoints/checkpoint-749500/model.safetensors new file mode 100644 index 0000000000000000000000000000000000000000..d45237ad84eb9ebc3f098191a808c84ee6b5bf25 --- /dev/null +++ b/timecost/c14/realtabformer/rtf-c14-20260501_010151/rtf_checkpoints/checkpoint-749500/model.safetensors @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:6ce1b7023cc0c4811dbba98a20e34bab1c9d7e96b700cded4d5fefadedc1687e +size 223870408 diff --git a/timecost/c14/realtabformer/rtf-c14-20260501_010151/rtf_checkpoints/checkpoint-749500/optimizer.pt b/timecost/c14/realtabformer/rtf-c14-20260501_010151/rtf_checkpoints/checkpoint-749500/optimizer.pt new file mode 100644 index 0000000000000000000000000000000000000000..67408d3bfd75207cfa902ae64721ef03457d468e --- /dev/null +++ b/timecost/c14/realtabformer/rtf-c14-20260501_010151/rtf_checkpoints/checkpoint-749500/optimizer.pt @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:567c8b214aae4a2ca09d32df679d0b1f85d1da6981d26cf942472e11927772bb +size 447789899 diff --git a/timecost/c14/realtabformer/rtf-c14-20260501_010151/rtf_checkpoints/checkpoint-749500/rng_state.pth b/timecost/c14/realtabformer/rtf-c14-20260501_010151/rtf_checkpoints/checkpoint-749500/rng_state.pth new file mode 100644 index 0000000000000000000000000000000000000000..7777528beaba2abc6d7adbefa7fd08201230b659 --- /dev/null +++ b/timecost/c14/realtabformer/rtf-c14-20260501_010151/rtf_checkpoints/checkpoint-749500/rng_state.pth @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:27f34592298b5a1d292d6350da5668040ef487a636ffd73d9fb1e244ebae1891 +size 14645 diff --git a/timecost/c14/realtabformer/rtf-c14-20260501_010151/rtf_checkpoints/checkpoint-749500/scaler.pt b/timecost/c14/realtabformer/rtf-c14-20260501_010151/rtf_checkpoints/checkpoint-749500/scaler.pt new file mode 100644 index 0000000000000000000000000000000000000000..9331a695c659063ffae7a6deee40716c78c51838 --- /dev/null +++ b/timecost/c14/realtabformer/rtf-c14-20260501_010151/rtf_checkpoints/checkpoint-749500/scaler.pt @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:7aac5d05ed9bb2f96cda6afd7d7eea41a906f94414e908624d10ee311cf00e4a +size 1383 diff --git a/timecost/c14/realtabformer/rtf-c14-20260501_010151/rtf_checkpoints/checkpoint-749500/scheduler.pt b/timecost/c14/realtabformer/rtf-c14-20260501_010151/rtf_checkpoints/checkpoint-749500/scheduler.pt new file mode 100644 index 0000000000000000000000000000000000000000..24ab76a7740a3305fd941625f3671b46d378f3bc --- /dev/null +++ b/timecost/c14/realtabformer/rtf-c14-20260501_010151/rtf_checkpoints/checkpoint-749500/scheduler.pt @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:4749e4fdd317e6a5658bc55f4a1eb16d588297ba11481a387ecfb7c182f933f4 +size 1465 diff --git a/timecost/c14/realtabformer/rtf-c14-20260501_010151/rtf_checkpoints/checkpoint-749500/trainer_state.json b/timecost/c14/realtabformer/rtf-c14-20260501_010151/rtf_checkpoints/checkpoint-749500/trainer_state.json new file mode 100644 index 0000000000000000000000000000000000000000..38521430e466d6035412dfd988e7252702e858b2 --- /dev/null +++ b/timecost/c14/realtabformer/rtf-c14-20260501_010151/rtf_checkpoints/checkpoint-749500/trainer_state.json @@ -0,0 +1,52499 @@ +{ + "best_global_step": null, + "best_metric": null, + "best_model_checkpoint": null, + "epoch": 99.93333333333334, + "eval_steps": 100, + "global_step": 749500, + "is_hyper_param_search": false, + "is_local_process_zero": true, + "is_world_process_zero": true, + "log_history": [ + { + "epoch": 0.013333333333333334, + "grad_norm": 0.3097156882286072, + "learning_rate": 4.99934e-05, + "loss": 4.729451904296875, + "step": 100 + }, + { + "epoch": 0.02666666666666667, + "grad_norm": 0.2790767550468445, + "learning_rate": 4.9986733333333334e-05, + "loss": 2.9246112060546876, + "step": 200 + }, + { + "epoch": 0.04, + "grad_norm": 0.2287004292011261, + "learning_rate": 4.998006666666667e-05, + "loss": 2.681365966796875, + "step": 300 + }, + { + "epoch": 0.05333333333333334, + "grad_norm": 0.2410515397787094, + "learning_rate": 4.9973400000000005e-05, + "loss": 2.57897216796875, + "step": 400 + }, + { + "epoch": 0.06666666666666667, + "grad_norm": 0.23536495864391327, + "learning_rate": 4.996673333333334e-05, + "loss": 2.5199215698242186, + "step": 500 + }, + { + "epoch": 0.08, + "grad_norm": 0.2238040715456009, + "learning_rate": 4.996006666666667e-05, + "loss": 2.4802560424804687, + "step": 600 + }, + { + "epoch": 0.09333333333333334, + "grad_norm": 0.2373904138803482, + "learning_rate": 4.99534e-05, + "loss": 2.4584336853027344, + "step": 700 + }, + { + "epoch": 0.10666666666666667, + "grad_norm": 0.2210150510072708, + "learning_rate": 4.9946733333333334e-05, + "loss": 2.4438829040527343, + "step": 800 + }, + { + "epoch": 0.12, + "grad_norm": 0.23910416662693024, + "learning_rate": 4.9940066666666666e-05, + "loss": 2.430836181640625, + "step": 900 + }, + { + "epoch": 0.13333333333333333, + "grad_norm": 0.21543893218040466, + "learning_rate": 4.9933400000000005e-05, + "loss": 2.416129150390625, + "step": 1000 + }, + { + "epoch": 0.14666666666666667, + "grad_norm": 0.21585851907730103, + "learning_rate": 4.992673333333334e-05, + "loss": 2.4107843017578126, + "step": 1100 + }, + { + "epoch": 0.16, + "grad_norm": 0.24163727462291718, + "learning_rate": 4.992006666666667e-05, + "loss": 2.406159210205078, + "step": 1200 + }, + { + "epoch": 0.17333333333333334, + "grad_norm": 0.1956426501274109, + "learning_rate": 4.99134e-05, + "loss": 2.403145751953125, + "step": 1300 + }, + { + "epoch": 0.18666666666666668, + "grad_norm": 0.22274842858314514, + "learning_rate": 4.9906733333333335e-05, + "loss": 2.4001878356933593, + "step": 1400 + }, + { + "epoch": 0.2, + "grad_norm": 0.21048018336296082, + "learning_rate": 4.990006666666667e-05, + "loss": 2.396698455810547, + "step": 1500 + }, + { + "epoch": 0.21333333333333335, + "grad_norm": 0.20668183267116547, + "learning_rate": 4.98934e-05, + "loss": 2.3899136352539063, + "step": 1600 + }, + { + "epoch": 0.22666666666666666, + "grad_norm": 0.21129441261291504, + "learning_rate": 4.988673333333334e-05, + "loss": 2.3887448120117187, + "step": 1700 + }, + { + "epoch": 0.24, + "grad_norm": 0.19339148700237274, + "learning_rate": 4.988006666666667e-05, + "loss": 2.386446228027344, + "step": 1800 + }, + { + "epoch": 0.25333333333333335, + "grad_norm": 0.24494831264019012, + "learning_rate": 4.98734e-05, + "loss": 2.3824462890625, + "step": 1900 + }, + { + "epoch": 0.26666666666666666, + "grad_norm": 0.22533085942268372, + "learning_rate": 4.9866733333333335e-05, + "loss": 2.382945709228516, + "step": 2000 + }, + { + "epoch": 0.28, + "grad_norm": 0.19327044486999512, + "learning_rate": 4.9860066666666674e-05, + "loss": 2.380709533691406, + "step": 2100 + }, + { + "epoch": 0.29333333333333333, + "grad_norm": 0.21988032758235931, + "learning_rate": 4.98534e-05, + "loss": 2.3797772216796873, + "step": 2200 + }, + { + "epoch": 0.30666666666666664, + "grad_norm": 0.21458032727241516, + "learning_rate": 4.984673333333333e-05, + "loss": 2.3806968688964845, + "step": 2300 + }, + { + "epoch": 0.32, + "grad_norm": 0.1938823163509369, + "learning_rate": 4.984006666666667e-05, + "loss": 2.377256317138672, + "step": 2400 + }, + { + "epoch": 0.3333333333333333, + "grad_norm": 0.2332620471715927, + "learning_rate": 4.98334e-05, + "loss": 2.3771754455566407, + "step": 2500 + }, + { + "epoch": 0.3466666666666667, + "grad_norm": 0.2167084515094757, + "learning_rate": 4.9826733333333335e-05, + "loss": 2.379599151611328, + "step": 2600 + }, + { + "epoch": 0.36, + "grad_norm": 0.21894526481628418, + "learning_rate": 4.982006666666667e-05, + "loss": 2.376912078857422, + "step": 2700 + }, + { + "epoch": 0.37333333333333335, + "grad_norm": 0.21106357872486115, + "learning_rate": 4.9813400000000007e-05, + "loss": 2.374015045166016, + "step": 2800 + }, + { + "epoch": 0.38666666666666666, + "grad_norm": 0.19057656824588776, + "learning_rate": 4.980673333333333e-05, + "loss": 2.3733976745605467, + "step": 2900 + }, + { + "epoch": 0.4, + "grad_norm": 0.21368202567100525, + "learning_rate": 4.9800066666666664e-05, + "loss": 2.3731019592285154, + "step": 3000 + }, + { + "epoch": 0.41333333333333333, + "grad_norm": 0.20361854135990143, + "learning_rate": 4.9793400000000003e-05, + "loss": 2.372502746582031, + "step": 3100 + }, + { + "epoch": 0.4266666666666667, + "grad_norm": 0.21937857568264008, + "learning_rate": 4.9786733333333336e-05, + "loss": 2.3699537658691407, + "step": 3200 + }, + { + "epoch": 0.44, + "grad_norm": 0.20447471737861633, + "learning_rate": 4.978006666666667e-05, + "loss": 2.3710557556152345, + "step": 3300 + }, + { + "epoch": 0.4533333333333333, + "grad_norm": 0.21187078952789307, + "learning_rate": 4.97734e-05, + "loss": 2.3726930236816406, + "step": 3400 + }, + { + "epoch": 0.4666666666666667, + "grad_norm": 0.2117481529712677, + "learning_rate": 4.976673333333334e-05, + "loss": 2.3712057495117187, + "step": 3500 + }, + { + "epoch": 0.48, + "grad_norm": 0.21514153480529785, + "learning_rate": 4.976006666666667e-05, + "loss": 2.3699081420898436, + "step": 3600 + }, + { + "epoch": 0.49333333333333335, + "grad_norm": 0.21301567554473877, + "learning_rate": 4.97534e-05, + "loss": 2.3686956787109374, + "step": 3700 + }, + { + "epoch": 0.5066666666666667, + "grad_norm": 0.21573932468891144, + "learning_rate": 4.9746733333333336e-05, + "loss": 2.3669277954101564, + "step": 3800 + }, + { + "epoch": 0.52, + "grad_norm": 0.21901340782642365, + "learning_rate": 4.974006666666667e-05, + "loss": 2.3691697692871094, + "step": 3900 + }, + { + "epoch": 0.5333333333333333, + "grad_norm": 0.17888770997524261, + "learning_rate": 4.97334e-05, + "loss": 2.3694166564941406, + "step": 4000 + }, + { + "epoch": 0.5466666666666666, + "grad_norm": 0.20132586359977722, + "learning_rate": 4.972673333333334e-05, + "loss": 2.3693058776855467, + "step": 4100 + }, + { + "epoch": 0.56, + "grad_norm": 0.20158927142620087, + "learning_rate": 4.972006666666667e-05, + "loss": 2.3696084594726563, + "step": 4200 + }, + { + "epoch": 0.5733333333333334, + "grad_norm": 0.19169336557388306, + "learning_rate": 4.9713400000000004e-05, + "loss": 2.3690890502929687, + "step": 4300 + }, + { + "epoch": 0.5866666666666667, + "grad_norm": 0.1851499378681183, + "learning_rate": 4.9706733333333336e-05, + "loss": 2.365598602294922, + "step": 4400 + }, + { + "epoch": 0.6, + "grad_norm": 0.17640796303749084, + "learning_rate": 4.970006666666667e-05, + "loss": 2.3662982177734375, + "step": 4500 + }, + { + "epoch": 0.6133333333333333, + "grad_norm": 0.19363251328468323, + "learning_rate": 4.96934e-05, + "loss": 2.366368408203125, + "step": 4600 + }, + { + "epoch": 0.6266666666666667, + "grad_norm": 0.18789421021938324, + "learning_rate": 4.968673333333333e-05, + "loss": 2.3673724365234374, + "step": 4700 + }, + { + "epoch": 0.64, + "grad_norm": 0.2276417762041092, + "learning_rate": 4.968006666666667e-05, + "loss": 2.3687364196777345, + "step": 4800 + }, + { + "epoch": 0.6533333333333333, + "grad_norm": 0.24959126114845276, + "learning_rate": 4.9673400000000005e-05, + "loss": 2.3668873596191404, + "step": 4900 + }, + { + "epoch": 0.6666666666666666, + "grad_norm": 0.1974227875471115, + "learning_rate": 4.966673333333334e-05, + "loss": 2.367490539550781, + "step": 5000 + }, + { + "epoch": 0.68, + "grad_norm": 0.21331575512886047, + "learning_rate": 4.966006666666667e-05, + "loss": 2.3667413330078126, + "step": 5100 + }, + { + "epoch": 0.6933333333333334, + "grad_norm": 0.19911886751651764, + "learning_rate": 4.96534e-05, + "loss": 2.3675457763671877, + "step": 5200 + }, + { + "epoch": 0.7066666666666667, + "grad_norm": 0.18808232247829437, + "learning_rate": 4.9646733333333334e-05, + "loss": 2.365087432861328, + "step": 5300 + }, + { + "epoch": 0.72, + "grad_norm": 0.20785415172576904, + "learning_rate": 4.9640066666666666e-05, + "loss": 2.364909362792969, + "step": 5400 + }, + { + "epoch": 0.7333333333333333, + "grad_norm": 0.20224037766456604, + "learning_rate": 4.9633400000000005e-05, + "loss": 2.3632057189941404, + "step": 5500 + }, + { + "epoch": 0.7466666666666667, + "grad_norm": 0.2229875922203064, + "learning_rate": 4.962673333333334e-05, + "loss": 2.3641395568847656, + "step": 5600 + }, + { + "epoch": 0.76, + "grad_norm": 0.1919153928756714, + "learning_rate": 4.962006666666667e-05, + "loss": 2.3659425354003907, + "step": 5700 + }, + { + "epoch": 0.7733333333333333, + "grad_norm": 0.20427671074867249, + "learning_rate": 4.96134e-05, + "loss": 2.363852081298828, + "step": 5800 + }, + { + "epoch": 0.7866666666666666, + "grad_norm": 0.21656429767608643, + "learning_rate": 4.960673333333334e-05, + "loss": 2.362543182373047, + "step": 5900 + }, + { + "epoch": 0.8, + "grad_norm": 0.2063402533531189, + "learning_rate": 4.9600066666666666e-05, + "loss": 2.366965026855469, + "step": 6000 + }, + { + "epoch": 0.8133333333333334, + "grad_norm": 0.1898108273744583, + "learning_rate": 4.95934e-05, + "loss": 2.3621893310546875, + "step": 6100 + }, + { + "epoch": 0.8266666666666667, + "grad_norm": 0.20282649993896484, + "learning_rate": 4.958673333333334e-05, + "loss": 2.3625088500976563, + "step": 6200 + }, + { + "epoch": 0.84, + "grad_norm": 0.20909225940704346, + "learning_rate": 4.958006666666667e-05, + "loss": 2.3645458984375, + "step": 6300 + }, + { + "epoch": 0.8533333333333334, + "grad_norm": 0.1983426809310913, + "learning_rate": 4.95734e-05, + "loss": 2.3627133178710937, + "step": 6400 + }, + { + "epoch": 0.8666666666666667, + "grad_norm": 0.19243596494197845, + "learning_rate": 4.9566733333333334e-05, + "loss": 2.3633660888671875, + "step": 6500 + }, + { + "epoch": 0.88, + "grad_norm": 0.2079390585422516, + "learning_rate": 4.9560066666666673e-05, + "loss": 2.3625689697265626, + "step": 6600 + }, + { + "epoch": 0.8933333333333333, + "grad_norm": 0.21222324669361115, + "learning_rate": 4.95534e-05, + "loss": 2.3634515380859376, + "step": 6700 + }, + { + "epoch": 0.9066666666666666, + "grad_norm": 0.20715859532356262, + "learning_rate": 4.954673333333333e-05, + "loss": 2.361647186279297, + "step": 6800 + }, + { + "epoch": 0.92, + "grad_norm": 0.20895737409591675, + "learning_rate": 4.954006666666667e-05, + "loss": 2.3614102172851563, + "step": 6900 + }, + { + "epoch": 0.9333333333333333, + "grad_norm": 0.2002798467874527, + "learning_rate": 4.95334e-05, + "loss": 2.36139892578125, + "step": 7000 + }, + { + "epoch": 0.9466666666666667, + "grad_norm": 0.19291919469833374, + "learning_rate": 4.9526733333333335e-05, + "loss": 2.3608961486816407, + "step": 7100 + }, + { + "epoch": 0.96, + "grad_norm": 0.21889089047908783, + "learning_rate": 4.952006666666667e-05, + "loss": 2.3637326049804686, + "step": 7200 + }, + { + "epoch": 0.9733333333333334, + "grad_norm": 0.2078685611486435, + "learning_rate": 4.9513400000000006e-05, + "loss": 2.3617208862304686, + "step": 7300 + }, + { + "epoch": 0.9866666666666667, + "grad_norm": 0.2064240425825119, + "learning_rate": 4.950673333333334e-05, + "loss": 2.363861083984375, + "step": 7400 + }, + { + "epoch": 1.0, + "grad_norm": 0.20584005117416382, + "learning_rate": 4.9500066666666664e-05, + "loss": 2.361913146972656, + "step": 7500 + }, + { + "epoch": 1.0133333333333334, + "grad_norm": 0.1801510751247406, + "learning_rate": 4.94934e-05, + "loss": 2.360869903564453, + "step": 7600 + }, + { + "epoch": 1.0266666666666666, + "grad_norm": 0.1993046998977661, + "learning_rate": 4.9486733333333335e-05, + "loss": 2.361507568359375, + "step": 7700 + }, + { + "epoch": 1.04, + "grad_norm": 0.19615833461284637, + "learning_rate": 4.948006666666667e-05, + "loss": 2.3610348510742187, + "step": 7800 + }, + { + "epoch": 1.0533333333333332, + "grad_norm": 0.21650268137454987, + "learning_rate": 4.9473400000000006e-05, + "loss": 2.3594178771972656, + "step": 7900 + }, + { + "epoch": 1.0666666666666667, + "grad_norm": 0.21163895726203918, + "learning_rate": 4.946673333333334e-05, + "loss": 2.360281982421875, + "step": 8000 + }, + { + "epoch": 1.08, + "grad_norm": 0.204850971698761, + "learning_rate": 4.946006666666667e-05, + "loss": 2.3587506103515623, + "step": 8100 + }, + { + "epoch": 1.0933333333333333, + "grad_norm": 0.19019952416419983, + "learning_rate": 4.9453399999999996e-05, + "loss": 2.359633331298828, + "step": 8200 + }, + { + "epoch": 1.1066666666666667, + "grad_norm": 0.19061067700386047, + "learning_rate": 4.9446733333333336e-05, + "loss": 2.3588740539550783, + "step": 8300 + }, + { + "epoch": 1.12, + "grad_norm": 0.17677488923072815, + "learning_rate": 4.944006666666667e-05, + "loss": 2.3598394775390625, + "step": 8400 + }, + { + "epoch": 1.1333333333333333, + "grad_norm": 0.1912253499031067, + "learning_rate": 4.94334e-05, + "loss": 2.360320739746094, + "step": 8500 + }, + { + "epoch": 1.1466666666666667, + "grad_norm": 0.2024315893650055, + "learning_rate": 4.942673333333334e-05, + "loss": 2.3580809020996094, + "step": 8600 + }, + { + "epoch": 1.16, + "grad_norm": 0.18786175549030304, + "learning_rate": 4.942006666666667e-05, + "loss": 2.3593084716796877, + "step": 8700 + }, + { + "epoch": 1.1733333333333333, + "grad_norm": 0.21662430465221405, + "learning_rate": 4.9413400000000004e-05, + "loss": 2.3598200988769533, + "step": 8800 + }, + { + "epoch": 1.1866666666666668, + "grad_norm": 0.1833869218826294, + "learning_rate": 4.9406733333333336e-05, + "loss": 2.3603662109375, + "step": 8900 + }, + { + "epoch": 1.2, + "grad_norm": 0.17883288860321045, + "learning_rate": 4.940006666666667e-05, + "loss": 2.3576153564453124, + "step": 9000 + }, + { + "epoch": 1.2133333333333334, + "grad_norm": 0.20075617730617523, + "learning_rate": 4.93934e-05, + "loss": 2.359826965332031, + "step": 9100 + }, + { + "epoch": 1.2266666666666666, + "grad_norm": 0.2007887363433838, + "learning_rate": 4.938673333333333e-05, + "loss": 2.358603210449219, + "step": 9200 + }, + { + "epoch": 1.24, + "grad_norm": 0.1917891800403595, + "learning_rate": 4.938006666666667e-05, + "loss": 2.3588916015625, + "step": 9300 + }, + { + "epoch": 1.2533333333333334, + "grad_norm": 0.21604856848716736, + "learning_rate": 4.9373400000000004e-05, + "loss": 2.3602168273925783, + "step": 9400 + }, + { + "epoch": 1.2666666666666666, + "grad_norm": 0.17735335230827332, + "learning_rate": 4.9366733333333336e-05, + "loss": 2.3565715026855467, + "step": 9500 + }, + { + "epoch": 1.28, + "grad_norm": 0.19378457963466644, + "learning_rate": 4.936006666666667e-05, + "loss": 2.3594598388671875, + "step": 9600 + }, + { + "epoch": 1.2933333333333334, + "grad_norm": 0.17695476114749908, + "learning_rate": 4.93534e-05, + "loss": 2.3589300537109374, + "step": 9700 + }, + { + "epoch": 1.3066666666666666, + "grad_norm": 0.21539485454559326, + "learning_rate": 4.934673333333333e-05, + "loss": 2.3615129089355467, + "step": 9800 + }, + { + "epoch": 1.32, + "grad_norm": 0.19134896993637085, + "learning_rate": 4.9340066666666665e-05, + "loss": 2.362266082763672, + "step": 9900 + }, + { + "epoch": 1.3333333333333333, + "grad_norm": 0.21886669099330902, + "learning_rate": 4.9333400000000004e-05, + "loss": 2.358092956542969, + "step": 10000 + }, + { + "epoch": 1.3466666666666667, + "grad_norm": 0.2164846807718277, + "learning_rate": 4.932673333333334e-05, + "loss": 2.3595159912109374, + "step": 10100 + }, + { + "epoch": 1.3599999999999999, + "grad_norm": 0.2044377326965332, + "learning_rate": 4.932006666666667e-05, + "loss": 2.3593812561035157, + "step": 10200 + }, + { + "epoch": 1.3733333333333333, + "grad_norm": 0.19607120752334595, + "learning_rate": 4.93134e-05, + "loss": 2.3597682189941405, + "step": 10300 + }, + { + "epoch": 1.3866666666666667, + "grad_norm": 0.20865550637245178, + "learning_rate": 4.930673333333334e-05, + "loss": 2.3585769653320314, + "step": 10400 + }, + { + "epoch": 1.4, + "grad_norm": 0.19647538661956787, + "learning_rate": 4.9300066666666666e-05, + "loss": 2.357613525390625, + "step": 10500 + }, + { + "epoch": 1.4133333333333333, + "grad_norm": 0.20263008773326874, + "learning_rate": 4.92934e-05, + "loss": 2.3594039916992187, + "step": 10600 + }, + { + "epoch": 1.4266666666666667, + "grad_norm": 0.20336301624774933, + "learning_rate": 4.928673333333334e-05, + "loss": 2.358168487548828, + "step": 10700 + }, + { + "epoch": 1.44, + "grad_norm": 0.19379153847694397, + "learning_rate": 4.928006666666667e-05, + "loss": 2.357987060546875, + "step": 10800 + }, + { + "epoch": 1.4533333333333334, + "grad_norm": 0.19382280111312866, + "learning_rate": 4.92734e-05, + "loss": 2.358719482421875, + "step": 10900 + }, + { + "epoch": 1.4666666666666668, + "grad_norm": 0.22233974933624268, + "learning_rate": 4.9266733333333334e-05, + "loss": 2.359342498779297, + "step": 11000 + }, + { + "epoch": 1.48, + "grad_norm": 0.2031731903553009, + "learning_rate": 4.926006666666667e-05, + "loss": 2.3575526428222657, + "step": 11100 + }, + { + "epoch": 1.4933333333333334, + "grad_norm": 0.2249104380607605, + "learning_rate": 4.9253400000000005e-05, + "loss": 2.359127197265625, + "step": 11200 + }, + { + "epoch": 1.5066666666666668, + "grad_norm": 0.19960635900497437, + "learning_rate": 4.924673333333333e-05, + "loss": 2.35850830078125, + "step": 11300 + }, + { + "epoch": 1.52, + "grad_norm": 0.17657485604286194, + "learning_rate": 4.924006666666667e-05, + "loss": 2.3599581909179688, + "step": 11400 + }, + { + "epoch": 1.5333333333333332, + "grad_norm": 0.2015186995267868, + "learning_rate": 4.92334e-05, + "loss": 2.3588160705566406, + "step": 11500 + }, + { + "epoch": 1.5466666666666666, + "grad_norm": 0.20554782450199127, + "learning_rate": 4.9226733333333334e-05, + "loss": 2.3559320068359373, + "step": 11600 + }, + { + "epoch": 1.56, + "grad_norm": 0.1838974952697754, + "learning_rate": 4.9220066666666667e-05, + "loss": 2.3575198364257814, + "step": 11700 + }, + { + "epoch": 1.5733333333333333, + "grad_norm": 0.19607774913311005, + "learning_rate": 4.9213400000000006e-05, + "loss": 2.3575714111328123, + "step": 11800 + }, + { + "epoch": 1.5866666666666667, + "grad_norm": 0.178280308842659, + "learning_rate": 4.920673333333334e-05, + "loss": 2.3576229858398436, + "step": 11900 + }, + { + "epoch": 1.6, + "grad_norm": 0.18399088084697723, + "learning_rate": 4.920006666666666e-05, + "loss": 2.3562477111816404, + "step": 12000 + }, + { + "epoch": 1.6133333333333333, + "grad_norm": 0.20826038718223572, + "learning_rate": 4.91934e-05, + "loss": 2.355485382080078, + "step": 12100 + }, + { + "epoch": 1.6266666666666667, + "grad_norm": 0.20758900046348572, + "learning_rate": 4.9186733333333335e-05, + "loss": 2.3574794006347655, + "step": 12200 + }, + { + "epoch": 1.6400000000000001, + "grad_norm": 0.19196072220802307, + "learning_rate": 4.918006666666667e-05, + "loss": 2.3581634521484376, + "step": 12300 + }, + { + "epoch": 1.6533333333333333, + "grad_norm": 0.1848619282245636, + "learning_rate": 4.9173400000000006e-05, + "loss": 2.3570237731933594, + "step": 12400 + }, + { + "epoch": 1.6666666666666665, + "grad_norm": 0.2013252079486847, + "learning_rate": 4.916673333333334e-05, + "loss": 2.3577528381347657, + "step": 12500 + }, + { + "epoch": 1.6800000000000002, + "grad_norm": 0.1901196390390396, + "learning_rate": 4.916006666666667e-05, + "loss": 2.356570129394531, + "step": 12600 + }, + { + "epoch": 1.6933333333333334, + "grad_norm": 0.21528318524360657, + "learning_rate": 4.91534e-05, + "loss": 2.3587225341796874, + "step": 12700 + }, + { + "epoch": 1.7066666666666666, + "grad_norm": 0.21024923026561737, + "learning_rate": 4.9146733333333335e-05, + "loss": 2.356683349609375, + "step": 12800 + }, + { + "epoch": 1.72, + "grad_norm": 0.21185488998889923, + "learning_rate": 4.914006666666667e-05, + "loss": 2.3565196228027343, + "step": 12900 + }, + { + "epoch": 1.7333333333333334, + "grad_norm": 0.1909532994031906, + "learning_rate": 4.91334e-05, + "loss": 2.3565260314941407, + "step": 13000 + }, + { + "epoch": 1.7466666666666666, + "grad_norm": 0.17285031080245972, + "learning_rate": 4.912673333333334e-05, + "loss": 2.3597225952148437, + "step": 13100 + }, + { + "epoch": 1.76, + "grad_norm": 0.20661011338233948, + "learning_rate": 4.912006666666667e-05, + "loss": 2.355798797607422, + "step": 13200 + }, + { + "epoch": 1.7733333333333334, + "grad_norm": 0.17752040922641754, + "learning_rate": 4.91134e-05, + "loss": 2.358916931152344, + "step": 13300 + }, + { + "epoch": 1.7866666666666666, + "grad_norm": 0.1924242228269577, + "learning_rate": 4.9106733333333335e-05, + "loss": 2.3583119201660154, + "step": 13400 + }, + { + "epoch": 1.8, + "grad_norm": 0.1849152147769928, + "learning_rate": 4.910006666666667e-05, + "loss": 2.3570172119140627, + "step": 13500 + }, + { + "epoch": 1.8133333333333335, + "grad_norm": 0.185477152466774, + "learning_rate": 4.90934e-05, + "loss": 2.3571125793457033, + "step": 13600 + }, + { + "epoch": 1.8266666666666667, + "grad_norm": 0.20487146079540253, + "learning_rate": 4.908673333333333e-05, + "loss": 2.3563079833984375, + "step": 13700 + }, + { + "epoch": 1.8399999999999999, + "grad_norm": 0.1872117966413498, + "learning_rate": 4.908006666666667e-05, + "loss": 2.3568649291992188, + "step": 13800 + }, + { + "epoch": 1.8533333333333335, + "grad_norm": 0.20117762684822083, + "learning_rate": 4.9073400000000004e-05, + "loss": 2.3565196228027343, + "step": 13900 + }, + { + "epoch": 1.8666666666666667, + "grad_norm": 0.19476266205310822, + "learning_rate": 4.9066733333333336e-05, + "loss": 2.358032989501953, + "step": 14000 + }, + { + "epoch": 1.88, + "grad_norm": 0.22407779097557068, + "learning_rate": 4.906006666666667e-05, + "loss": 2.3561721801757813, + "step": 14100 + }, + { + "epoch": 1.8933333333333333, + "grad_norm": 0.17407096922397614, + "learning_rate": 4.905340000000001e-05, + "loss": 2.3565065002441408, + "step": 14200 + }, + { + "epoch": 1.9066666666666667, + "grad_norm": 0.20838646590709686, + "learning_rate": 4.904673333333333e-05, + "loss": 2.3535838317871094, + "step": 14300 + }, + { + "epoch": 1.92, + "grad_norm": 0.1853237748146057, + "learning_rate": 4.9040066666666665e-05, + "loss": 2.354512481689453, + "step": 14400 + }, + { + "epoch": 1.9333333333333333, + "grad_norm": 0.19149570167064667, + "learning_rate": 4.9033400000000004e-05, + "loss": 2.3577252197265626, + "step": 14500 + }, + { + "epoch": 1.9466666666666668, + "grad_norm": 0.17799700796604156, + "learning_rate": 4.9026733333333336e-05, + "loss": 2.35733154296875, + "step": 14600 + }, + { + "epoch": 1.96, + "grad_norm": 0.19204910099506378, + "learning_rate": 4.902006666666667e-05, + "loss": 2.354717559814453, + "step": 14700 + }, + { + "epoch": 1.9733333333333334, + "grad_norm": 0.2267007678747177, + "learning_rate": 4.90134e-05, + "loss": 2.356217041015625, + "step": 14800 + }, + { + "epoch": 1.9866666666666668, + "grad_norm": 0.19406317174434662, + "learning_rate": 4.900673333333334e-05, + "loss": 2.3556443786621095, + "step": 14900 + }, + { + "epoch": 2.0, + "grad_norm": 0.204499751329422, + "learning_rate": 4.9000066666666665e-05, + "loss": 2.356020965576172, + "step": 15000 + }, + { + "epoch": 2.013333333333333, + "grad_norm": 0.1888091266155243, + "learning_rate": 4.89934e-05, + "loss": 2.352834930419922, + "step": 15100 + }, + { + "epoch": 2.026666666666667, + "grad_norm": 0.19324932992458344, + "learning_rate": 4.8986733333333337e-05, + "loss": 2.354947357177734, + "step": 15200 + }, + { + "epoch": 2.04, + "grad_norm": 0.18967552483081818, + "learning_rate": 4.898006666666667e-05, + "loss": 2.3552085876464846, + "step": 15300 + }, + { + "epoch": 2.0533333333333332, + "grad_norm": 0.1882469207048416, + "learning_rate": 4.89734e-05, + "loss": 2.354617462158203, + "step": 15400 + }, + { + "epoch": 2.066666666666667, + "grad_norm": 0.2014245092868805, + "learning_rate": 4.896673333333333e-05, + "loss": 2.3554867553710936, + "step": 15500 + }, + { + "epoch": 2.08, + "grad_norm": 0.20610852539539337, + "learning_rate": 4.896006666666667e-05, + "loss": 2.3536581420898437, + "step": 15600 + }, + { + "epoch": 2.0933333333333333, + "grad_norm": 0.21335220336914062, + "learning_rate": 4.8953400000000005e-05, + "loss": 2.354955291748047, + "step": 15700 + }, + { + "epoch": 2.1066666666666665, + "grad_norm": 0.19335633516311646, + "learning_rate": 4.894673333333333e-05, + "loss": 2.3532504272460937, + "step": 15800 + }, + { + "epoch": 2.12, + "grad_norm": 0.1970617026090622, + "learning_rate": 4.894006666666667e-05, + "loss": 2.3523245239257813, + "step": 15900 + }, + { + "epoch": 2.1333333333333333, + "grad_norm": 0.195561483502388, + "learning_rate": 4.89334e-05, + "loss": 2.354027099609375, + "step": 16000 + }, + { + "epoch": 2.1466666666666665, + "grad_norm": 0.18854361772537231, + "learning_rate": 4.89268e-05, + "loss": 2.35153564453125, + "step": 16100 + }, + { + "epoch": 2.16, + "grad_norm": 0.20224016904830933, + "learning_rate": 4.892013333333333e-05, + "loss": 2.356122589111328, + "step": 16200 + }, + { + "epoch": 2.1733333333333333, + "grad_norm": 0.18668098747730255, + "learning_rate": 4.891346666666667e-05, + "loss": 2.354725189208984, + "step": 16300 + }, + { + "epoch": 2.1866666666666665, + "grad_norm": 0.1866915374994278, + "learning_rate": 4.8906800000000004e-05, + "loss": 2.354028625488281, + "step": 16400 + }, + { + "epoch": 2.2, + "grad_norm": 0.21461573243141174, + "learning_rate": 4.8900133333333336e-05, + "loss": 2.3526856994628904, + "step": 16500 + }, + { + "epoch": 2.2133333333333334, + "grad_norm": 0.18227700889110565, + "learning_rate": 4.889346666666667e-05, + "loss": 2.3545989990234375, + "step": 16600 + }, + { + "epoch": 2.2266666666666666, + "grad_norm": 0.19773833453655243, + "learning_rate": 4.888680000000001e-05, + "loss": 2.351981201171875, + "step": 16700 + }, + { + "epoch": 2.24, + "grad_norm": 0.20956110954284668, + "learning_rate": 4.888013333333333e-05, + "loss": 2.355366516113281, + "step": 16800 + }, + { + "epoch": 2.2533333333333334, + "grad_norm": 0.1993572860956192, + "learning_rate": 4.8873466666666665e-05, + "loss": 2.3551705932617186, + "step": 16900 + }, + { + "epoch": 2.2666666666666666, + "grad_norm": 0.2015913426876068, + "learning_rate": 4.8866800000000005e-05, + "loss": 2.3545513916015626, + "step": 17000 + }, + { + "epoch": 2.2800000000000002, + "grad_norm": 0.19929593801498413, + "learning_rate": 4.886013333333334e-05, + "loss": 2.352397766113281, + "step": 17100 + }, + { + "epoch": 2.2933333333333334, + "grad_norm": 0.20449623465538025, + "learning_rate": 4.885346666666667e-05, + "loss": 2.354527893066406, + "step": 17200 + }, + { + "epoch": 2.3066666666666666, + "grad_norm": 0.20281392335891724, + "learning_rate": 4.88468e-05, + "loss": 2.351980438232422, + "step": 17300 + }, + { + "epoch": 2.32, + "grad_norm": 0.21583755314350128, + "learning_rate": 4.884013333333334e-05, + "loss": 2.3545767211914064, + "step": 17400 + }, + { + "epoch": 2.3333333333333335, + "grad_norm": 0.20362140238285065, + "learning_rate": 4.8833466666666666e-05, + "loss": 2.3561666870117186, + "step": 17500 + }, + { + "epoch": 2.3466666666666667, + "grad_norm": 0.1887034773826599, + "learning_rate": 4.88268e-05, + "loss": 2.353743438720703, + "step": 17600 + }, + { + "epoch": 2.36, + "grad_norm": 0.1752418577671051, + "learning_rate": 4.882013333333334e-05, + "loss": 2.35181884765625, + "step": 17700 + }, + { + "epoch": 2.3733333333333335, + "grad_norm": 0.19891609251499176, + "learning_rate": 4.881346666666667e-05, + "loss": 2.3536032104492186, + "step": 17800 + }, + { + "epoch": 2.3866666666666667, + "grad_norm": 0.1945076882839203, + "learning_rate": 4.88068e-05, + "loss": 2.35367919921875, + "step": 17900 + }, + { + "epoch": 2.4, + "grad_norm": 0.17770184576511383, + "learning_rate": 4.8800133333333334e-05, + "loss": 2.3528033447265626, + "step": 18000 + }, + { + "epoch": 2.413333333333333, + "grad_norm": 0.223379448056221, + "learning_rate": 4.879353333333333e-05, + "loss": 2.35432861328125, + "step": 18100 + }, + { + "epoch": 2.4266666666666667, + "grad_norm": 0.18828672170639038, + "learning_rate": 4.878686666666667e-05, + "loss": 2.355252380371094, + "step": 18200 + }, + { + "epoch": 2.44, + "grad_norm": 0.18844439089298248, + "learning_rate": 4.8780200000000004e-05, + "loss": 2.3561915588378906, + "step": 18300 + }, + { + "epoch": 2.453333333333333, + "grad_norm": 0.21294449269771576, + "learning_rate": 4.877353333333334e-05, + "loss": 2.3547706604003906, + "step": 18400 + }, + { + "epoch": 2.466666666666667, + "grad_norm": 0.17931200563907623, + "learning_rate": 4.876686666666667e-05, + "loss": 2.355154724121094, + "step": 18500 + }, + { + "epoch": 2.48, + "grad_norm": 0.21106231212615967, + "learning_rate": 4.87602e-05, + "loss": 2.352605895996094, + "step": 18600 + }, + { + "epoch": 2.493333333333333, + "grad_norm": 0.1965954452753067, + "learning_rate": 4.8753533333333333e-05, + "loss": 2.354511260986328, + "step": 18700 + }, + { + "epoch": 2.506666666666667, + "grad_norm": 0.2056257575750351, + "learning_rate": 4.8746866666666666e-05, + "loss": 2.3556398010253905, + "step": 18800 + }, + { + "epoch": 2.52, + "grad_norm": 0.21052542328834534, + "learning_rate": 4.8740200000000005e-05, + "loss": 2.3537603759765626, + "step": 18900 + }, + { + "epoch": 2.533333333333333, + "grad_norm": 0.19049997627735138, + "learning_rate": 4.873353333333334e-05, + "loss": 2.353008270263672, + "step": 19000 + }, + { + "epoch": 2.546666666666667, + "grad_norm": 0.17134717106819153, + "learning_rate": 4.872686666666667e-05, + "loss": 2.3548989868164063, + "step": 19100 + }, + { + "epoch": 2.56, + "grad_norm": 0.19276337325572968, + "learning_rate": 4.87202e-05, + "loss": 2.3533308410644533, + "step": 19200 + }, + { + "epoch": 2.5733333333333333, + "grad_norm": 0.20519237220287323, + "learning_rate": 4.8713533333333334e-05, + "loss": 2.353628692626953, + "step": 19300 + }, + { + "epoch": 2.586666666666667, + "grad_norm": 0.19865448772907257, + "learning_rate": 4.8706866666666666e-05, + "loss": 2.3552372741699217, + "step": 19400 + }, + { + "epoch": 2.6, + "grad_norm": 0.21072329580783844, + "learning_rate": 4.87002e-05, + "loss": 2.354803009033203, + "step": 19500 + }, + { + "epoch": 2.6133333333333333, + "grad_norm": 0.20858490467071533, + "learning_rate": 4.869353333333334e-05, + "loss": 2.352855224609375, + "step": 19600 + }, + { + "epoch": 2.626666666666667, + "grad_norm": 0.19127769768238068, + "learning_rate": 4.868686666666667e-05, + "loss": 2.3559735107421873, + "step": 19700 + }, + { + "epoch": 2.64, + "grad_norm": 0.1971408575773239, + "learning_rate": 4.86802e-05, + "loss": 2.3524879455566405, + "step": 19800 + }, + { + "epoch": 2.6533333333333333, + "grad_norm": 0.19466613233089447, + "learning_rate": 4.867353333333334e-05, + "loss": 2.35252685546875, + "step": 19900 + }, + { + "epoch": 2.6666666666666665, + "grad_norm": 0.17773135006427765, + "learning_rate": 4.866686666666667e-05, + "loss": 2.3533396911621094, + "step": 20000 + }, + { + "epoch": 2.68, + "grad_norm": 0.2046392261981964, + "learning_rate": 4.866026666666667e-05, + "loss": 2.3539585876464844, + "step": 20100 + }, + { + "epoch": 2.6933333333333334, + "grad_norm": 0.1670500934123993, + "learning_rate": 4.8653600000000005e-05, + "loss": 2.353471527099609, + "step": 20200 + }, + { + "epoch": 2.7066666666666666, + "grad_norm": 0.1887359917163849, + "learning_rate": 4.864693333333333e-05, + "loss": 2.3529425048828125, + "step": 20300 + }, + { + "epoch": 2.7199999999999998, + "grad_norm": 0.19046323001384735, + "learning_rate": 4.864026666666667e-05, + "loss": 2.353743133544922, + "step": 20400 + }, + { + "epoch": 2.7333333333333334, + "grad_norm": 0.20893333852291107, + "learning_rate": 4.86336e-05, + "loss": 2.354876708984375, + "step": 20500 + }, + { + "epoch": 2.7466666666666666, + "grad_norm": 0.20090077817440033, + "learning_rate": 4.8626933333333334e-05, + "loss": 2.354145050048828, + "step": 20600 + }, + { + "epoch": 2.76, + "grad_norm": 0.1944134384393692, + "learning_rate": 4.862026666666667e-05, + "loss": 2.3537525939941406, + "step": 20700 + }, + { + "epoch": 2.7733333333333334, + "grad_norm": 0.19937659800052643, + "learning_rate": 4.8613600000000005e-05, + "loss": 2.3532589721679686, + "step": 20800 + }, + { + "epoch": 2.7866666666666666, + "grad_norm": 0.19922621548175812, + "learning_rate": 4.860693333333334e-05, + "loss": 2.3535202026367186, + "step": 20900 + }, + { + "epoch": 2.8, + "grad_norm": 0.17885304987430573, + "learning_rate": 4.860026666666667e-05, + "loss": 2.3526271057128905, + "step": 21000 + }, + { + "epoch": 2.8133333333333335, + "grad_norm": 0.19968298077583313, + "learning_rate": 4.85936e-05, + "loss": 2.351287078857422, + "step": 21100 + }, + { + "epoch": 2.8266666666666667, + "grad_norm": 0.20618899166584015, + "learning_rate": 4.8586933333333334e-05, + "loss": 2.35383544921875, + "step": 21200 + }, + { + "epoch": 2.84, + "grad_norm": 0.18697108328342438, + "learning_rate": 4.8580266666666666e-05, + "loss": 2.3557089233398436, + "step": 21300 + }, + { + "epoch": 2.8533333333333335, + "grad_norm": 0.1982707530260086, + "learning_rate": 4.8573600000000005e-05, + "loss": 2.3569706726074218, + "step": 21400 + }, + { + "epoch": 2.8666666666666667, + "grad_norm": 0.1921544075012207, + "learning_rate": 4.856693333333334e-05, + "loss": 2.354062042236328, + "step": 21500 + }, + { + "epoch": 2.88, + "grad_norm": 0.18305157124996185, + "learning_rate": 4.856026666666667e-05, + "loss": 2.3534732055664063, + "step": 21600 + }, + { + "epoch": 2.8933333333333335, + "grad_norm": 0.1875217705965042, + "learning_rate": 4.85536e-05, + "loss": 2.354545135498047, + "step": 21700 + }, + { + "epoch": 2.9066666666666667, + "grad_norm": 0.20880307257175446, + "learning_rate": 4.8546933333333334e-05, + "loss": 2.353887939453125, + "step": 21800 + }, + { + "epoch": 2.92, + "grad_norm": 0.21262428164482117, + "learning_rate": 4.854026666666667e-05, + "loss": 2.352968292236328, + "step": 21900 + }, + { + "epoch": 2.9333333333333336, + "grad_norm": 0.19341909885406494, + "learning_rate": 4.85336e-05, + "loss": 2.3549241638183593, + "step": 22000 + }, + { + "epoch": 2.9466666666666668, + "grad_norm": 0.2057921290397644, + "learning_rate": 4.8527e-05, + "loss": 2.3518043518066407, + "step": 22100 + }, + { + "epoch": 2.96, + "grad_norm": 0.1986525058746338, + "learning_rate": 4.852033333333334e-05, + "loss": 2.3545606994628905, + "step": 22200 + }, + { + "epoch": 2.9733333333333336, + "grad_norm": 0.19995741546154022, + "learning_rate": 4.851366666666667e-05, + "loss": 2.35246826171875, + "step": 22300 + }, + { + "epoch": 2.986666666666667, + "grad_norm": 0.18662478029727936, + "learning_rate": 4.8507e-05, + "loss": 2.3534344482421874, + "step": 22400 + }, + { + "epoch": 3.0, + "grad_norm": 0.19860990345478058, + "learning_rate": 4.8500333333333334e-05, + "loss": 2.3527035522460937, + "step": 22500 + }, + { + "epoch": 3.013333333333333, + "grad_norm": 0.20039217174053192, + "learning_rate": 4.849366666666667e-05, + "loss": 2.348377532958984, + "step": 22600 + }, + { + "epoch": 3.026666666666667, + "grad_norm": 0.2021869421005249, + "learning_rate": 4.8487000000000005e-05, + "loss": 2.351779022216797, + "step": 22700 + }, + { + "epoch": 3.04, + "grad_norm": 0.1985320746898651, + "learning_rate": 4.848033333333333e-05, + "loss": 2.3483657836914062, + "step": 22800 + }, + { + "epoch": 3.0533333333333332, + "grad_norm": 0.1824573427438736, + "learning_rate": 4.847366666666667e-05, + "loss": 2.347190704345703, + "step": 22900 + }, + { + "epoch": 3.066666666666667, + "grad_norm": 0.19089816510677338, + "learning_rate": 4.8467e-05, + "loss": 2.3492135620117187, + "step": 23000 + }, + { + "epoch": 3.08, + "grad_norm": 0.23082399368286133, + "learning_rate": 4.8460333333333334e-05, + "loss": 2.348924560546875, + "step": 23100 + }, + { + "epoch": 3.0933333333333333, + "grad_norm": 0.18981102108955383, + "learning_rate": 4.8453666666666667e-05, + "loss": 2.350345001220703, + "step": 23200 + }, + { + "epoch": 3.1066666666666665, + "grad_norm": 0.19843408465385437, + "learning_rate": 4.8447000000000006e-05, + "loss": 2.3490699768066405, + "step": 23300 + }, + { + "epoch": 3.12, + "grad_norm": 0.19274167716503143, + "learning_rate": 4.844033333333334e-05, + "loss": 2.350037078857422, + "step": 23400 + }, + { + "epoch": 3.1333333333333333, + "grad_norm": 0.1848369985818863, + "learning_rate": 4.843366666666667e-05, + "loss": 2.3491517639160158, + "step": 23500 + }, + { + "epoch": 3.1466666666666665, + "grad_norm": 0.18349026143550873, + "learning_rate": 4.8427e-05, + "loss": 2.3494111633300783, + "step": 23600 + }, + { + "epoch": 3.16, + "grad_norm": 0.20055054128170013, + "learning_rate": 4.8420333333333335e-05, + "loss": 2.3514225769042967, + "step": 23700 + }, + { + "epoch": 3.1733333333333333, + "grad_norm": 0.17645560204982758, + "learning_rate": 4.841366666666667e-05, + "loss": 2.3496327209472656, + "step": 23800 + }, + { + "epoch": 3.1866666666666665, + "grad_norm": 0.20394593477249146, + "learning_rate": 4.8407e-05, + "loss": 2.34930908203125, + "step": 23900 + }, + { + "epoch": 3.2, + "grad_norm": 0.19807790219783783, + "learning_rate": 4.840033333333334e-05, + "loss": 2.350684814453125, + "step": 24000 + }, + { + "epoch": 3.2133333333333334, + "grad_norm": 0.19074247777462006, + "learning_rate": 4.839373333333334e-05, + "loss": 2.3482009887695314, + "step": 24100 + }, + { + "epoch": 3.2266666666666666, + "grad_norm": 0.184867724776268, + "learning_rate": 4.838706666666667e-05, + "loss": 2.3509567260742186, + "step": 24200 + }, + { + "epoch": 3.24, + "grad_norm": 0.20876654982566833, + "learning_rate": 4.83804e-05, + "loss": 2.351715393066406, + "step": 24300 + }, + { + "epoch": 3.2533333333333334, + "grad_norm": 0.20710976421833038, + "learning_rate": 4.837373333333334e-05, + "loss": 2.352671813964844, + "step": 24400 + }, + { + "epoch": 3.2666666666666666, + "grad_norm": 0.2047370821237564, + "learning_rate": 4.836706666666667e-05, + "loss": 2.347806701660156, + "step": 24500 + }, + { + "epoch": 3.2800000000000002, + "grad_norm": 0.19557665288448334, + "learning_rate": 4.83604e-05, + "loss": 2.3503456115722656, + "step": 24600 + }, + { + "epoch": 3.2933333333333334, + "grad_norm": 0.19264017045497894, + "learning_rate": 4.835373333333333e-05, + "loss": 2.350893859863281, + "step": 24700 + }, + { + "epoch": 3.3066666666666666, + "grad_norm": 0.1815241277217865, + "learning_rate": 4.834706666666667e-05, + "loss": 2.3506166076660158, + "step": 24800 + }, + { + "epoch": 3.32, + "grad_norm": 0.19273795187473297, + "learning_rate": 4.83404e-05, + "loss": 2.3491062927246094, + "step": 24900 + }, + { + "epoch": 3.3333333333333335, + "grad_norm": 0.1982475221157074, + "learning_rate": 4.8333733333333334e-05, + "loss": 2.350149383544922, + "step": 25000 + }, + { + "epoch": 3.3466666666666667, + "grad_norm": 0.19936062395572662, + "learning_rate": 4.8327066666666674e-05, + "loss": 2.349862518310547, + "step": 25100 + }, + { + "epoch": 3.36, + "grad_norm": 0.1829392910003662, + "learning_rate": 4.8320400000000006e-05, + "loss": 2.351768035888672, + "step": 25200 + }, + { + "epoch": 3.3733333333333335, + "grad_norm": 0.1831563413143158, + "learning_rate": 4.831373333333333e-05, + "loss": 2.351492919921875, + "step": 25300 + }, + { + "epoch": 3.3866666666666667, + "grad_norm": 0.20415860414505005, + "learning_rate": 4.830706666666667e-05, + "loss": 2.3486749267578126, + "step": 25400 + }, + { + "epoch": 3.4, + "grad_norm": 0.17977586388587952, + "learning_rate": 4.83004e-05, + "loss": 2.351340026855469, + "step": 25500 + }, + { + "epoch": 3.413333333333333, + "grad_norm": 0.1846362203359604, + "learning_rate": 4.8293733333333335e-05, + "loss": 2.351724090576172, + "step": 25600 + }, + { + "epoch": 3.4266666666666667, + "grad_norm": 0.18675661087036133, + "learning_rate": 4.828706666666667e-05, + "loss": 2.351480712890625, + "step": 25700 + }, + { + "epoch": 3.44, + "grad_norm": 0.18456125259399414, + "learning_rate": 4.8280400000000006e-05, + "loss": 2.3500599670410156, + "step": 25800 + }, + { + "epoch": 3.453333333333333, + "grad_norm": 0.19029958546161652, + "learning_rate": 4.827373333333334e-05, + "loss": 2.350344543457031, + "step": 25900 + }, + { + "epoch": 3.466666666666667, + "grad_norm": 0.17213845252990723, + "learning_rate": 4.826706666666667e-05, + "loss": 2.3511953735351563, + "step": 26000 + }, + { + "epoch": 3.48, + "grad_norm": 0.19007565081119537, + "learning_rate": 4.826046666666667e-05, + "loss": 2.3536442565917968, + "step": 26100 + }, + { + "epoch": 3.493333333333333, + "grad_norm": 0.2030433863401413, + "learning_rate": 4.82538e-05, + "loss": 2.3524905395507814, + "step": 26200 + }, + { + "epoch": 3.506666666666667, + "grad_norm": 0.1910092532634735, + "learning_rate": 4.8247133333333334e-05, + "loss": 2.349417419433594, + "step": 26300 + }, + { + "epoch": 3.52, + "grad_norm": 0.1992577612400055, + "learning_rate": 4.8240466666666667e-05, + "loss": 2.350249938964844, + "step": 26400 + }, + { + "epoch": 3.533333333333333, + "grad_norm": 0.2043229341506958, + "learning_rate": 4.82338e-05, + "loss": 2.3508177185058594, + "step": 26500 + }, + { + "epoch": 3.546666666666667, + "grad_norm": 0.19904406368732452, + "learning_rate": 4.822713333333334e-05, + "loss": 2.3501368713378907, + "step": 26600 + }, + { + "epoch": 3.56, + "grad_norm": 0.2048622965812683, + "learning_rate": 4.822046666666667e-05, + "loss": 2.3512261962890624, + "step": 26700 + }, + { + "epoch": 3.5733333333333333, + "grad_norm": 0.18168894946575165, + "learning_rate": 4.82138e-05, + "loss": 2.3506343078613283, + "step": 26800 + }, + { + "epoch": 3.586666666666667, + "grad_norm": 0.2186703383922577, + "learning_rate": 4.8207133333333335e-05, + "loss": 2.3507453918457033, + "step": 26900 + }, + { + "epoch": 3.6, + "grad_norm": 0.17658771574497223, + "learning_rate": 4.8200466666666674e-05, + "loss": 2.350555114746094, + "step": 27000 + }, + { + "epoch": 3.6133333333333333, + "grad_norm": 0.18329951167106628, + "learning_rate": 4.81938e-05, + "loss": 2.3507563781738283, + "step": 27100 + }, + { + "epoch": 3.626666666666667, + "grad_norm": 0.17677000164985657, + "learning_rate": 4.818713333333333e-05, + "loss": 2.3508815002441406, + "step": 27200 + }, + { + "epoch": 3.64, + "grad_norm": 0.18543322384357452, + "learning_rate": 4.818046666666667e-05, + "loss": 2.353324737548828, + "step": 27300 + }, + { + "epoch": 3.6533333333333333, + "grad_norm": 0.17043279111385345, + "learning_rate": 4.81738e-05, + "loss": 2.351223907470703, + "step": 27400 + }, + { + "epoch": 3.6666666666666665, + "grad_norm": 0.196268692612648, + "learning_rate": 4.8167133333333335e-05, + "loss": 2.348458557128906, + "step": 27500 + }, + { + "epoch": 3.68, + "grad_norm": 0.21252736449241638, + "learning_rate": 4.816046666666667e-05, + "loss": 2.351412811279297, + "step": 27600 + }, + { + "epoch": 3.6933333333333334, + "grad_norm": 0.1941421627998352, + "learning_rate": 4.8153800000000006e-05, + "loss": 2.3509474182128907, + "step": 27700 + }, + { + "epoch": 3.7066666666666666, + "grad_norm": 0.18156079947948456, + "learning_rate": 4.814713333333333e-05, + "loss": 2.3500953674316407, + "step": 27800 + }, + { + "epoch": 3.7199999999999998, + "grad_norm": 0.18474163115024567, + "learning_rate": 4.8140466666666664e-05, + "loss": 2.3500129699707033, + "step": 27900 + }, + { + "epoch": 3.7333333333333334, + "grad_norm": 0.1893375813961029, + "learning_rate": 4.81338e-05, + "loss": 2.3503759765625, + "step": 28000 + }, + { + "epoch": 3.7466666666666666, + "grad_norm": 0.18845497071743011, + "learning_rate": 4.81272e-05, + "loss": 2.3525970458984373, + "step": 28100 + }, + { + "epoch": 3.76, + "grad_norm": 0.21595294773578644, + "learning_rate": 4.8120533333333335e-05, + "loss": 2.3500466918945313, + "step": 28200 + }, + { + "epoch": 3.7733333333333334, + "grad_norm": 0.19505618512630463, + "learning_rate": 4.811386666666667e-05, + "loss": 2.349498748779297, + "step": 28300 + }, + { + "epoch": 3.7866666666666666, + "grad_norm": 0.17862743139266968, + "learning_rate": 4.81072e-05, + "loss": 2.348866424560547, + "step": 28400 + }, + { + "epoch": 3.8, + "grad_norm": 0.194855734705925, + "learning_rate": 4.810053333333334e-05, + "loss": 2.3509757995605467, + "step": 28500 + }, + { + "epoch": 3.8133333333333335, + "grad_norm": 0.19078636169433594, + "learning_rate": 4.809386666666667e-05, + "loss": 2.3488845825195312, + "step": 28600 + }, + { + "epoch": 3.8266666666666667, + "grad_norm": 0.18988379836082458, + "learning_rate": 4.80872e-05, + "loss": 2.35125244140625, + "step": 28700 + }, + { + "epoch": 3.84, + "grad_norm": 0.1913130134344101, + "learning_rate": 4.8080533333333335e-05, + "loss": 2.3494662475585937, + "step": 28800 + }, + { + "epoch": 3.8533333333333335, + "grad_norm": 0.2060711681842804, + "learning_rate": 4.807386666666667e-05, + "loss": 2.3524136352539062, + "step": 28900 + }, + { + "epoch": 3.8666666666666667, + "grad_norm": 0.18792103230953217, + "learning_rate": 4.80672e-05, + "loss": 2.351210479736328, + "step": 29000 + }, + { + "epoch": 3.88, + "grad_norm": 0.2034904658794403, + "learning_rate": 4.806053333333334e-05, + "loss": 2.3502317810058595, + "step": 29100 + }, + { + "epoch": 3.8933333333333335, + "grad_norm": 0.20705494284629822, + "learning_rate": 4.805386666666667e-05, + "loss": 2.3528851318359374, + "step": 29200 + }, + { + "epoch": 3.9066666666666667, + "grad_norm": 0.17130215466022491, + "learning_rate": 4.80472e-05, + "loss": 2.3496728515625, + "step": 29300 + }, + { + "epoch": 3.92, + "grad_norm": 0.22938485443592072, + "learning_rate": 4.8040533333333335e-05, + "loss": 2.3508564758300783, + "step": 29400 + }, + { + "epoch": 3.9333333333333336, + "grad_norm": 0.20697031915187836, + "learning_rate": 4.8033866666666674e-05, + "loss": 2.350555419921875, + "step": 29500 + }, + { + "epoch": 3.9466666666666668, + "grad_norm": 0.21105030179023743, + "learning_rate": 4.80272e-05, + "loss": 2.3500137329101562, + "step": 29600 + }, + { + "epoch": 3.96, + "grad_norm": 0.1795365959405899, + "learning_rate": 4.802053333333333e-05, + "loss": 2.351229705810547, + "step": 29700 + }, + { + "epoch": 3.9733333333333336, + "grad_norm": 0.20336268842220306, + "learning_rate": 4.801386666666667e-05, + "loss": 2.3524740600585936, + "step": 29800 + }, + { + "epoch": 3.986666666666667, + "grad_norm": 0.18867026269435883, + "learning_rate": 4.8007200000000003e-05, + "loss": 2.35136474609375, + "step": 29900 + }, + { + "epoch": 4.0, + "grad_norm": 0.1865285336971283, + "learning_rate": 4.8000533333333336e-05, + "loss": 2.3508816528320313, + "step": 30000 + }, + { + "epoch": 4.013333333333334, + "grad_norm": 0.19620107114315033, + "learning_rate": 4.7993933333333335e-05, + "loss": 2.344427185058594, + "step": 30100 + }, + { + "epoch": 4.026666666666666, + "grad_norm": 0.19542329013347626, + "learning_rate": 4.798726666666667e-05, + "loss": 2.3426863098144532, + "step": 30200 + }, + { + "epoch": 4.04, + "grad_norm": 0.19271595776081085, + "learning_rate": 4.7980600000000006e-05, + "loss": 2.340071258544922, + "step": 30300 + }, + { + "epoch": 4.053333333333334, + "grad_norm": 0.1889171600341797, + "learning_rate": 4.797393333333334e-05, + "loss": 2.338631896972656, + "step": 30400 + }, + { + "epoch": 4.066666666666666, + "grad_norm": 0.19066178798675537, + "learning_rate": 4.796726666666667e-05, + "loss": 2.342739715576172, + "step": 30500 + }, + { + "epoch": 4.08, + "grad_norm": 0.1947835087776184, + "learning_rate": 4.79606e-05, + "loss": 2.3432049560546875, + "step": 30600 + }, + { + "epoch": 4.093333333333334, + "grad_norm": 0.21322356164455414, + "learning_rate": 4.7953933333333335e-05, + "loss": 2.342285614013672, + "step": 30700 + }, + { + "epoch": 4.1066666666666665, + "grad_norm": 0.20188263058662415, + "learning_rate": 4.794726666666667e-05, + "loss": 2.3427188110351564, + "step": 30800 + }, + { + "epoch": 4.12, + "grad_norm": 0.19048044085502625, + "learning_rate": 4.79406e-05, + "loss": 2.3455911254882813, + "step": 30900 + }, + { + "epoch": 4.133333333333334, + "grad_norm": 0.20373786985874176, + "learning_rate": 4.793393333333334e-05, + "loss": 2.34266845703125, + "step": 31000 + }, + { + "epoch": 4.1466666666666665, + "grad_norm": 0.19136583805084229, + "learning_rate": 4.792726666666667e-05, + "loss": 2.345565185546875, + "step": 31100 + }, + { + "epoch": 4.16, + "grad_norm": 0.20485562086105347, + "learning_rate": 4.79206e-05, + "loss": 2.3444659423828127, + "step": 31200 + }, + { + "epoch": 4.173333333333334, + "grad_norm": 0.19716604053974152, + "learning_rate": 4.7913933333333336e-05, + "loss": 2.3462744140625, + "step": 31300 + }, + { + "epoch": 4.1866666666666665, + "grad_norm": 0.1901930719614029, + "learning_rate": 4.790726666666667e-05, + "loss": 2.3410409545898436, + "step": 31400 + }, + { + "epoch": 4.2, + "grad_norm": 0.19195866584777832, + "learning_rate": 4.79006e-05, + "loss": 2.3443292236328124, + "step": 31500 + }, + { + "epoch": 4.213333333333333, + "grad_norm": 0.19171933829784393, + "learning_rate": 4.789393333333333e-05, + "loss": 2.3432662963867186, + "step": 31600 + }, + { + "epoch": 4.226666666666667, + "grad_norm": 0.20632386207580566, + "learning_rate": 4.788726666666667e-05, + "loss": 2.3424139404296875, + "step": 31700 + }, + { + "epoch": 4.24, + "grad_norm": 0.20935772359371185, + "learning_rate": 4.7880600000000004e-05, + "loss": 2.3445693969726564, + "step": 31800 + }, + { + "epoch": 4.253333333333333, + "grad_norm": 0.2092011719942093, + "learning_rate": 4.7873933333333336e-05, + "loss": 2.3450819396972657, + "step": 31900 + }, + { + "epoch": 4.266666666666667, + "grad_norm": 0.18511556088924408, + "learning_rate": 4.786726666666667e-05, + "loss": 2.3434269714355467, + "step": 32000 + }, + { + "epoch": 4.28, + "grad_norm": 0.19721107184886932, + "learning_rate": 4.786066666666667e-05, + "loss": 2.3466552734375, + "step": 32100 + }, + { + "epoch": 4.293333333333333, + "grad_norm": 0.20387394726276398, + "learning_rate": 4.7854000000000006e-05, + "loss": 2.344354705810547, + "step": 32200 + }, + { + "epoch": 4.306666666666667, + "grad_norm": 0.1933874487876892, + "learning_rate": 4.784733333333333e-05, + "loss": 2.3450242614746095, + "step": 32300 + }, + { + "epoch": 4.32, + "grad_norm": 0.18852448463439941, + "learning_rate": 4.7840666666666664e-05, + "loss": 2.345384368896484, + "step": 32400 + }, + { + "epoch": 4.333333333333333, + "grad_norm": 0.1856076568365097, + "learning_rate": 4.7834e-05, + "loss": 2.3448046875, + "step": 32500 + }, + { + "epoch": 4.346666666666667, + "grad_norm": 0.1768845170736313, + "learning_rate": 4.7827333333333335e-05, + "loss": 2.3447705078125, + "step": 32600 + }, + { + "epoch": 4.36, + "grad_norm": 0.2036508321762085, + "learning_rate": 4.782066666666667e-05, + "loss": 2.3455548095703125, + "step": 32700 + }, + { + "epoch": 4.373333333333333, + "grad_norm": 0.2223418802022934, + "learning_rate": 4.7814e-05, + "loss": 2.345106353759766, + "step": 32800 + }, + { + "epoch": 4.386666666666667, + "grad_norm": 0.19732633233070374, + "learning_rate": 4.780733333333334e-05, + "loss": 2.34563720703125, + "step": 32900 + }, + { + "epoch": 4.4, + "grad_norm": 0.19825312495231628, + "learning_rate": 4.780066666666667e-05, + "loss": 2.3472279357910155, + "step": 33000 + }, + { + "epoch": 4.413333333333333, + "grad_norm": 0.20383819937705994, + "learning_rate": 4.7794e-05, + "loss": 2.3474839782714843, + "step": 33100 + }, + { + "epoch": 4.426666666666667, + "grad_norm": 0.18383854627609253, + "learning_rate": 4.7787333333333336e-05, + "loss": 2.347451171875, + "step": 33200 + }, + { + "epoch": 4.44, + "grad_norm": 0.2009461224079132, + "learning_rate": 4.778066666666667e-05, + "loss": 2.3456491088867186, + "step": 33300 + }, + { + "epoch": 4.453333333333333, + "grad_norm": 0.1955096274614334, + "learning_rate": 4.7774e-05, + "loss": 2.347562255859375, + "step": 33400 + }, + { + "epoch": 4.466666666666667, + "grad_norm": 0.1971255987882614, + "learning_rate": 4.776733333333334e-05, + "loss": 2.3455210876464845, + "step": 33500 + }, + { + "epoch": 4.48, + "grad_norm": 0.2104266732931137, + "learning_rate": 4.776066666666667e-05, + "loss": 2.3482284545898438, + "step": 33600 + }, + { + "epoch": 4.493333333333333, + "grad_norm": 0.19855403900146484, + "learning_rate": 4.7754000000000004e-05, + "loss": 2.345506439208984, + "step": 33700 + }, + { + "epoch": 4.506666666666667, + "grad_norm": 0.1903480589389801, + "learning_rate": 4.7747333333333336e-05, + "loss": 2.345941925048828, + "step": 33800 + }, + { + "epoch": 4.52, + "grad_norm": 0.18413390219211578, + "learning_rate": 4.774066666666667e-05, + "loss": 2.345931091308594, + "step": 33900 + }, + { + "epoch": 4.533333333333333, + "grad_norm": 0.2099205106496811, + "learning_rate": 4.7734e-05, + "loss": 2.34525146484375, + "step": 34000 + }, + { + "epoch": 4.546666666666667, + "grad_norm": 0.19890472292900085, + "learning_rate": 4.77274e-05, + "loss": 2.3454127502441406, + "step": 34100 + }, + { + "epoch": 4.5600000000000005, + "grad_norm": 0.1928263008594513, + "learning_rate": 4.772073333333333e-05, + "loss": 2.3484063720703126, + "step": 34200 + }, + { + "epoch": 4.573333333333333, + "grad_norm": 0.19899751245975494, + "learning_rate": 4.771406666666667e-05, + "loss": 2.344409637451172, + "step": 34300 + }, + { + "epoch": 4.586666666666667, + "grad_norm": 0.19718094170093536, + "learning_rate": 4.77074e-05, + "loss": 2.346121520996094, + "step": 34400 + }, + { + "epoch": 4.6, + "grad_norm": 0.20367039740085602, + "learning_rate": 4.7700733333333336e-05, + "loss": 2.3464027404785157, + "step": 34500 + }, + { + "epoch": 4.613333333333333, + "grad_norm": 0.2027977555990219, + "learning_rate": 4.769406666666667e-05, + "loss": 2.346643371582031, + "step": 34600 + }, + { + "epoch": 4.626666666666667, + "grad_norm": 0.19116739928722382, + "learning_rate": 4.768740000000001e-05, + "loss": 2.3448785400390624, + "step": 34700 + }, + { + "epoch": 4.64, + "grad_norm": 0.1741366684436798, + "learning_rate": 4.768073333333334e-05, + "loss": 2.3467585754394533, + "step": 34800 + }, + { + "epoch": 4.653333333333333, + "grad_norm": 0.19366861879825592, + "learning_rate": 4.7674066666666665e-05, + "loss": 2.346854248046875, + "step": 34900 + }, + { + "epoch": 4.666666666666667, + "grad_norm": 0.1961996853351593, + "learning_rate": 4.7667400000000004e-05, + "loss": 2.346597442626953, + "step": 35000 + }, + { + "epoch": 4.68, + "grad_norm": 0.20493026077747345, + "learning_rate": 4.7660733333333336e-05, + "loss": 2.3467396545410155, + "step": 35100 + }, + { + "epoch": 4.693333333333333, + "grad_norm": 0.19343268871307373, + "learning_rate": 4.765406666666667e-05, + "loss": 2.345442352294922, + "step": 35200 + }, + { + "epoch": 4.706666666666667, + "grad_norm": 0.19839325547218323, + "learning_rate": 4.76474e-05, + "loss": 2.348248291015625, + "step": 35300 + }, + { + "epoch": 4.72, + "grad_norm": 0.19443462789058685, + "learning_rate": 4.764073333333334e-05, + "loss": 2.3478456115722657, + "step": 35400 + }, + { + "epoch": 4.733333333333333, + "grad_norm": 0.18703633546829224, + "learning_rate": 4.763406666666667e-05, + "loss": 2.3447303771972656, + "step": 35500 + }, + { + "epoch": 4.746666666666667, + "grad_norm": 0.19159509241580963, + "learning_rate": 4.76274e-05, + "loss": 2.3463864135742187, + "step": 35600 + }, + { + "epoch": 4.76, + "grad_norm": 0.19903169572353363, + "learning_rate": 4.7620733333333336e-05, + "loss": 2.347983093261719, + "step": 35700 + }, + { + "epoch": 4.773333333333333, + "grad_norm": 0.19707246124744415, + "learning_rate": 4.761406666666667e-05, + "loss": 2.3435577392578124, + "step": 35800 + }, + { + "epoch": 4.786666666666667, + "grad_norm": 0.183243989944458, + "learning_rate": 4.76074e-05, + "loss": 2.346152038574219, + "step": 35900 + }, + { + "epoch": 4.8, + "grad_norm": 0.1864614188671112, + "learning_rate": 4.760073333333333e-05, + "loss": 2.3478399658203126, + "step": 36000 + }, + { + "epoch": 4.8133333333333335, + "grad_norm": 0.19538547098636627, + "learning_rate": 4.759413333333333e-05, + "loss": 2.34772705078125, + "step": 36100 + }, + { + "epoch": 4.826666666666666, + "grad_norm": 0.19601057469844818, + "learning_rate": 4.758746666666667e-05, + "loss": 2.3468177795410154, + "step": 36200 + }, + { + "epoch": 4.84, + "grad_norm": 0.19639572501182556, + "learning_rate": 4.7580800000000004e-05, + "loss": 2.3478041076660157, + "step": 36300 + }, + { + "epoch": 4.8533333333333335, + "grad_norm": 0.19426213204860687, + "learning_rate": 4.7574133333333336e-05, + "loss": 2.345642547607422, + "step": 36400 + }, + { + "epoch": 4.866666666666667, + "grad_norm": 0.17866654694080353, + "learning_rate": 4.756746666666667e-05, + "loss": 2.3476348876953126, + "step": 36500 + }, + { + "epoch": 4.88, + "grad_norm": 0.20611488819122314, + "learning_rate": 4.75608e-05, + "loss": 2.3455621337890626, + "step": 36600 + }, + { + "epoch": 4.8933333333333335, + "grad_norm": 0.19792433083057404, + "learning_rate": 4.755413333333333e-05, + "loss": 2.3475059509277343, + "step": 36700 + }, + { + "epoch": 4.906666666666666, + "grad_norm": 0.20012043416500092, + "learning_rate": 4.7547466666666665e-05, + "loss": 2.3476327514648436, + "step": 36800 + }, + { + "epoch": 4.92, + "grad_norm": 0.21811543405056, + "learning_rate": 4.7540800000000004e-05, + "loss": 2.3479005432128908, + "step": 36900 + }, + { + "epoch": 4.933333333333334, + "grad_norm": 0.18837958574295044, + "learning_rate": 4.7534133333333336e-05, + "loss": 2.3472393798828124, + "step": 37000 + }, + { + "epoch": 4.946666666666666, + "grad_norm": 0.20428119599819183, + "learning_rate": 4.752746666666667e-05, + "loss": 2.3473336791992185, + "step": 37100 + }, + { + "epoch": 4.96, + "grad_norm": 0.2100653052330017, + "learning_rate": 4.752080000000001e-05, + "loss": 2.3485343933105467, + "step": 37200 + }, + { + "epoch": 4.973333333333334, + "grad_norm": 0.19952954351902008, + "learning_rate": 4.751413333333334e-05, + "loss": 2.347123718261719, + "step": 37300 + }, + { + "epoch": 4.986666666666666, + "grad_norm": 0.19739681482315063, + "learning_rate": 4.7507466666666665e-05, + "loss": 2.347565155029297, + "step": 37400 + }, + { + "epoch": 5.0, + "grad_norm": 0.20094037055969238, + "learning_rate": 4.75008e-05, + "loss": 2.3468731689453124, + "step": 37500 + }, + { + "epoch": 5.013333333333334, + "grad_norm": 0.21585266292095184, + "learning_rate": 4.749413333333334e-05, + "loss": 2.333679962158203, + "step": 37600 + }, + { + "epoch": 5.026666666666666, + "grad_norm": 0.20911413431167603, + "learning_rate": 4.748746666666667e-05, + "loss": 2.3350621032714844, + "step": 37700 + }, + { + "epoch": 5.04, + "grad_norm": 0.19561605155467987, + "learning_rate": 4.74808e-05, + "loss": 2.334278564453125, + "step": 37800 + }, + { + "epoch": 5.053333333333334, + "grad_norm": 0.2007005661725998, + "learning_rate": 4.747413333333334e-05, + "loss": 2.3355723571777345, + "step": 37900 + }, + { + "epoch": 5.066666666666666, + "grad_norm": 0.21478916704654694, + "learning_rate": 4.746746666666667e-05, + "loss": 2.335912628173828, + "step": 38000 + }, + { + "epoch": 5.08, + "grad_norm": 0.20300929248332977, + "learning_rate": 4.74608e-05, + "loss": 2.3348677062988283, + "step": 38100 + }, + { + "epoch": 5.093333333333334, + "grad_norm": 0.1893633008003235, + "learning_rate": 4.7454200000000004e-05, + "loss": 2.3340078735351564, + "step": 38200 + }, + { + "epoch": 5.1066666666666665, + "grad_norm": 0.20675773918628693, + "learning_rate": 4.7447533333333336e-05, + "loss": 2.3374041748046874, + "step": 38300 + }, + { + "epoch": 5.12, + "grad_norm": 0.21601155400276184, + "learning_rate": 4.744086666666667e-05, + "loss": 2.3355015563964843, + "step": 38400 + }, + { + "epoch": 5.133333333333334, + "grad_norm": 0.20173364877700806, + "learning_rate": 4.74342e-05, + "loss": 2.336921844482422, + "step": 38500 + }, + { + "epoch": 5.1466666666666665, + "grad_norm": 0.19146205484867096, + "learning_rate": 4.742753333333333e-05, + "loss": 2.338092956542969, + "step": 38600 + }, + { + "epoch": 5.16, + "grad_norm": 0.19151638448238373, + "learning_rate": 4.742086666666667e-05, + "loss": 2.337191162109375, + "step": 38700 + }, + { + "epoch": 5.173333333333334, + "grad_norm": 0.19342660903930664, + "learning_rate": 4.7414200000000004e-05, + "loss": 2.338902893066406, + "step": 38800 + }, + { + "epoch": 5.1866666666666665, + "grad_norm": 0.18506617844104767, + "learning_rate": 4.7407533333333336e-05, + "loss": 2.3370294189453125, + "step": 38900 + }, + { + "epoch": 5.2, + "grad_norm": 0.1852942407131195, + "learning_rate": 4.740086666666667e-05, + "loss": 2.3374237060546874, + "step": 39000 + }, + { + "epoch": 5.213333333333333, + "grad_norm": 0.22944355010986328, + "learning_rate": 4.73942e-05, + "loss": 2.336438751220703, + "step": 39100 + }, + { + "epoch": 5.226666666666667, + "grad_norm": 0.19692735373973846, + "learning_rate": 4.738753333333333e-05, + "loss": 2.3369683837890625, + "step": 39200 + }, + { + "epoch": 5.24, + "grad_norm": 0.21631871163845062, + "learning_rate": 4.7380866666666666e-05, + "loss": 2.3371484375, + "step": 39300 + }, + { + "epoch": 5.253333333333333, + "grad_norm": 0.20942172408103943, + "learning_rate": 4.7374200000000005e-05, + "loss": 2.3369624328613283, + "step": 39400 + }, + { + "epoch": 5.266666666666667, + "grad_norm": 0.1939464509487152, + "learning_rate": 4.736753333333334e-05, + "loss": 2.337432556152344, + "step": 39500 + }, + { + "epoch": 5.28, + "grad_norm": 0.17876707017421722, + "learning_rate": 4.736086666666667e-05, + "loss": 2.3396649169921875, + "step": 39600 + }, + { + "epoch": 5.293333333333333, + "grad_norm": 0.21455919742584229, + "learning_rate": 4.73542e-05, + "loss": 2.3403550720214845, + "step": 39700 + }, + { + "epoch": 5.306666666666667, + "grad_norm": 0.19953106343746185, + "learning_rate": 4.734753333333334e-05, + "loss": 2.3371241760253905, + "step": 39800 + }, + { + "epoch": 5.32, + "grad_norm": 0.19843876361846924, + "learning_rate": 4.7340866666666666e-05, + "loss": 2.3368731689453126, + "step": 39900 + }, + { + "epoch": 5.333333333333333, + "grad_norm": 0.20457053184509277, + "learning_rate": 4.73342e-05, + "loss": 2.3382992553710937, + "step": 40000 + }, + { + "epoch": 5.346666666666667, + "grad_norm": 0.195728600025177, + "learning_rate": 4.732753333333334e-05, + "loss": 2.337715911865234, + "step": 40100 + }, + { + "epoch": 5.36, + "grad_norm": 0.19587790966033936, + "learning_rate": 4.7320933333333336e-05, + "loss": 2.3404110717773436, + "step": 40200 + }, + { + "epoch": 5.373333333333333, + "grad_norm": 0.20648671686649323, + "learning_rate": 4.731426666666667e-05, + "loss": 2.3392234802246095, + "step": 40300 + }, + { + "epoch": 5.386666666666667, + "grad_norm": 0.1902915984392166, + "learning_rate": 4.73076e-05, + "loss": 2.3366790771484376, + "step": 40400 + }, + { + "epoch": 5.4, + "grad_norm": 0.19474172592163086, + "learning_rate": 4.730093333333333e-05, + "loss": 2.337915344238281, + "step": 40500 + }, + { + "epoch": 5.413333333333333, + "grad_norm": 0.19446231424808502, + "learning_rate": 4.729426666666667e-05, + "loss": 2.3386886596679686, + "step": 40600 + }, + { + "epoch": 5.426666666666667, + "grad_norm": 0.18280309438705444, + "learning_rate": 4.7287600000000004e-05, + "loss": 2.3403004455566405, + "step": 40700 + }, + { + "epoch": 5.44, + "grad_norm": 0.1899874061346054, + "learning_rate": 4.728093333333334e-05, + "loss": 2.3395709228515624, + "step": 40800 + }, + { + "epoch": 5.453333333333333, + "grad_norm": 0.21245285868644714, + "learning_rate": 4.727426666666667e-05, + "loss": 2.341641693115234, + "step": 40900 + }, + { + "epoch": 5.466666666666667, + "grad_norm": 0.18492910265922546, + "learning_rate": 4.72676e-05, + "loss": 2.338828277587891, + "step": 41000 + }, + { + "epoch": 5.48, + "grad_norm": 0.19576863944530487, + "learning_rate": 4.7260933333333334e-05, + "loss": 2.340592498779297, + "step": 41100 + }, + { + "epoch": 5.493333333333333, + "grad_norm": 0.21991156041622162, + "learning_rate": 4.7254266666666666e-05, + "loss": 2.3374070739746093, + "step": 41200 + }, + { + "epoch": 5.506666666666667, + "grad_norm": 0.2011844664812088, + "learning_rate": 4.7247600000000005e-05, + "loss": 2.340482025146484, + "step": 41300 + }, + { + "epoch": 5.52, + "grad_norm": 0.1887616068124771, + "learning_rate": 4.724093333333334e-05, + "loss": 2.3403477478027344, + "step": 41400 + }, + { + "epoch": 5.533333333333333, + "grad_norm": 0.2083723396062851, + "learning_rate": 4.723426666666667e-05, + "loss": 2.338939361572266, + "step": 41500 + }, + { + "epoch": 5.546666666666667, + "grad_norm": 0.20391573011875153, + "learning_rate": 4.72276e-05, + "loss": 2.341011962890625, + "step": 41600 + }, + { + "epoch": 5.5600000000000005, + "grad_norm": 0.2055550515651703, + "learning_rate": 4.7220933333333334e-05, + "loss": 2.3417536926269533, + "step": 41700 + }, + { + "epoch": 5.573333333333333, + "grad_norm": 0.20119526982307434, + "learning_rate": 4.7214266666666666e-05, + "loss": 2.341081390380859, + "step": 41800 + }, + { + "epoch": 5.586666666666667, + "grad_norm": 0.19019430875778198, + "learning_rate": 4.7207600000000005e-05, + "loss": 2.3428114318847655, + "step": 41900 + }, + { + "epoch": 5.6, + "grad_norm": 0.21287046372890472, + "learning_rate": 4.720093333333334e-05, + "loss": 2.3393617248535157, + "step": 42000 + }, + { + "epoch": 5.613333333333333, + "grad_norm": 0.19636501371860504, + "learning_rate": 4.719426666666667e-05, + "loss": 2.341305694580078, + "step": 42100 + }, + { + "epoch": 5.626666666666667, + "grad_norm": 0.19112545251846313, + "learning_rate": 4.718766666666667e-05, + "loss": 2.338633728027344, + "step": 42200 + }, + { + "epoch": 5.64, + "grad_norm": 0.2038842886686325, + "learning_rate": 4.7181e-05, + "loss": 2.341297302246094, + "step": 42300 + }, + { + "epoch": 5.653333333333333, + "grad_norm": 0.20965079963207245, + "learning_rate": 4.717433333333334e-05, + "loss": 2.341322784423828, + "step": 42400 + }, + { + "epoch": 5.666666666666667, + "grad_norm": 0.2007293701171875, + "learning_rate": 4.716766666666667e-05, + "loss": 2.3385604858398437, + "step": 42500 + }, + { + "epoch": 5.68, + "grad_norm": 0.2063182145357132, + "learning_rate": 4.7161e-05, + "loss": 2.33922119140625, + "step": 42600 + }, + { + "epoch": 5.693333333333333, + "grad_norm": 0.2027292102575302, + "learning_rate": 4.715433333333334e-05, + "loss": 2.3407470703125, + "step": 42700 + }, + { + "epoch": 5.706666666666667, + "grad_norm": 0.1970498412847519, + "learning_rate": 4.714766666666667e-05, + "loss": 2.34189697265625, + "step": 42800 + }, + { + "epoch": 5.72, + "grad_norm": 0.21546319127082825, + "learning_rate": 4.7141e-05, + "loss": 2.3410997009277343, + "step": 42900 + }, + { + "epoch": 5.733333333333333, + "grad_norm": 0.20953406393527985, + "learning_rate": 4.7134333333333334e-05, + "loss": 2.341014404296875, + "step": 43000 + }, + { + "epoch": 5.746666666666667, + "grad_norm": 0.18453386425971985, + "learning_rate": 4.712766666666667e-05, + "loss": 2.3420458984375, + "step": 43100 + }, + { + "epoch": 5.76, + "grad_norm": 0.18693557381629944, + "learning_rate": 4.7121000000000005e-05, + "loss": 2.3417478942871095, + "step": 43200 + }, + { + "epoch": 5.773333333333333, + "grad_norm": 0.20244468748569489, + "learning_rate": 4.711433333333334e-05, + "loss": 2.341094970703125, + "step": 43300 + }, + { + "epoch": 5.786666666666667, + "grad_norm": 0.2122134268283844, + "learning_rate": 4.710766666666667e-05, + "loss": 2.339507598876953, + "step": 43400 + }, + { + "epoch": 5.8, + "grad_norm": 0.19113102555274963, + "learning_rate": 4.7101e-05, + "loss": 2.3414321899414063, + "step": 43500 + }, + { + "epoch": 5.8133333333333335, + "grad_norm": 0.2206200510263443, + "learning_rate": 4.7094333333333334e-05, + "loss": 2.341671600341797, + "step": 43600 + }, + { + "epoch": 5.826666666666666, + "grad_norm": 0.20389395952224731, + "learning_rate": 4.7087666666666666e-05, + "loss": 2.340543060302734, + "step": 43700 + }, + { + "epoch": 5.84, + "grad_norm": 0.20174798369407654, + "learning_rate": 4.7081000000000005e-05, + "loss": 2.339455261230469, + "step": 43800 + }, + { + "epoch": 5.8533333333333335, + "grad_norm": 0.20874814689159393, + "learning_rate": 4.707433333333334e-05, + "loss": 2.340840301513672, + "step": 43900 + }, + { + "epoch": 5.866666666666667, + "grad_norm": 0.19134193658828735, + "learning_rate": 4.706766666666667e-05, + "loss": 2.341136016845703, + "step": 44000 + }, + { + "epoch": 5.88, + "grad_norm": 0.21130426228046417, + "learning_rate": 4.7061e-05, + "loss": 2.341613311767578, + "step": 44100 + }, + { + "epoch": 5.8933333333333335, + "grad_norm": 0.23179572820663452, + "learning_rate": 4.70544e-05, + "loss": 2.3433583068847654, + "step": 44200 + }, + { + "epoch": 5.906666666666666, + "grad_norm": 0.1910688281059265, + "learning_rate": 4.704773333333334e-05, + "loss": 2.3415071105957033, + "step": 44300 + }, + { + "epoch": 5.92, + "grad_norm": 0.20032565295696259, + "learning_rate": 4.7041066666666666e-05, + "loss": 2.3411441040039063, + "step": 44400 + }, + { + "epoch": 5.933333333333334, + "grad_norm": 0.19156421720981598, + "learning_rate": 4.70344e-05, + "loss": 2.3405520629882814, + "step": 44500 + }, + { + "epoch": 5.946666666666666, + "grad_norm": 0.1907392293214798, + "learning_rate": 4.702773333333334e-05, + "loss": 2.3425755310058594, + "step": 44600 + }, + { + "epoch": 5.96, + "grad_norm": 0.200932115316391, + "learning_rate": 4.702106666666667e-05, + "loss": 2.3439457702636717, + "step": 44700 + }, + { + "epoch": 5.973333333333334, + "grad_norm": 0.2054533064365387, + "learning_rate": 4.70144e-05, + "loss": 2.3415347290039064, + "step": 44800 + }, + { + "epoch": 5.986666666666666, + "grad_norm": 0.20519991219043732, + "learning_rate": 4.7007733333333334e-05, + "loss": 2.3422901916503904, + "step": 44900 + }, + { + "epoch": 6.0, + "grad_norm": 0.19351975619792938, + "learning_rate": 4.700106666666667e-05, + "loss": 2.343433380126953, + "step": 45000 + }, + { + "epoch": 6.013333333333334, + "grad_norm": 0.20407870411872864, + "learning_rate": 4.69944e-05, + "loss": 2.3262948608398437, + "step": 45100 + }, + { + "epoch": 6.026666666666666, + "grad_norm": 0.19466857612133026, + "learning_rate": 4.698773333333333e-05, + "loss": 2.326324462890625, + "step": 45200 + }, + { + "epoch": 6.04, + "grad_norm": 0.20036247372627258, + "learning_rate": 4.698106666666667e-05, + "loss": 2.3274658203125, + "step": 45300 + }, + { + "epoch": 6.053333333333334, + "grad_norm": 0.20382268726825714, + "learning_rate": 4.69744e-05, + "loss": 2.325162353515625, + "step": 45400 + }, + { + "epoch": 6.066666666666666, + "grad_norm": 0.21262048184871674, + "learning_rate": 4.6967733333333334e-05, + "loss": 2.3246685791015627, + "step": 45500 + }, + { + "epoch": 6.08, + "grad_norm": 0.19266580045223236, + "learning_rate": 4.696106666666667e-05, + "loss": 2.3265760803222655, + "step": 45600 + }, + { + "epoch": 6.093333333333334, + "grad_norm": 0.1924133151769638, + "learning_rate": 4.6954400000000006e-05, + "loss": 2.3272021484375, + "step": 45700 + }, + { + "epoch": 6.1066666666666665, + "grad_norm": 0.1988048404455185, + "learning_rate": 4.694773333333334e-05, + "loss": 2.327220916748047, + "step": 45800 + }, + { + "epoch": 6.12, + "grad_norm": 0.1879425197839737, + "learning_rate": 4.6941066666666663e-05, + "loss": 2.328949737548828, + "step": 45900 + }, + { + "epoch": 6.133333333333334, + "grad_norm": 0.23073047399520874, + "learning_rate": 4.69344e-05, + "loss": 2.328899230957031, + "step": 46000 + }, + { + "epoch": 6.1466666666666665, + "grad_norm": 0.20694105327129364, + "learning_rate": 4.6927733333333335e-05, + "loss": 2.329393005371094, + "step": 46100 + }, + { + "epoch": 6.16, + "grad_norm": 0.2188512235879898, + "learning_rate": 4.6921133333333334e-05, + "loss": 2.3258409118652343, + "step": 46200 + }, + { + "epoch": 6.173333333333334, + "grad_norm": 0.18700923025608063, + "learning_rate": 4.6914466666666666e-05, + "loss": 2.331009979248047, + "step": 46300 + }, + { + "epoch": 6.1866666666666665, + "grad_norm": 0.20359359681606293, + "learning_rate": 4.69078e-05, + "loss": 2.3292669677734374, + "step": 46400 + }, + { + "epoch": 6.2, + "grad_norm": 0.22610503435134888, + "learning_rate": 4.690113333333334e-05, + "loss": 2.330577850341797, + "step": 46500 + }, + { + "epoch": 6.213333333333333, + "grad_norm": 0.18864652514457703, + "learning_rate": 4.689446666666667e-05, + "loss": 2.330567626953125, + "step": 46600 + }, + { + "epoch": 6.226666666666667, + "grad_norm": 0.20041510462760925, + "learning_rate": 4.68878e-05, + "loss": 2.327003173828125, + "step": 46700 + }, + { + "epoch": 6.24, + "grad_norm": 0.21242272853851318, + "learning_rate": 4.688113333333334e-05, + "loss": 2.3281683349609374, + "step": 46800 + }, + { + "epoch": 6.253333333333333, + "grad_norm": 0.19361090660095215, + "learning_rate": 4.6874466666666666e-05, + "loss": 2.331831512451172, + "step": 46900 + }, + { + "epoch": 6.266666666666667, + "grad_norm": 0.20165066421031952, + "learning_rate": 4.68678e-05, + "loss": 2.3307310485839845, + "step": 47000 + }, + { + "epoch": 6.28, + "grad_norm": 0.18842047452926636, + "learning_rate": 4.686113333333334e-05, + "loss": 2.3280589294433596, + "step": 47100 + }, + { + "epoch": 6.293333333333333, + "grad_norm": 0.2256300151348114, + "learning_rate": 4.685446666666667e-05, + "loss": 2.3284527587890627, + "step": 47200 + }, + { + "epoch": 6.306666666666667, + "grad_norm": 0.18087539076805115, + "learning_rate": 4.68478e-05, + "loss": 2.3301324462890625, + "step": 47300 + }, + { + "epoch": 6.32, + "grad_norm": 0.207829549908638, + "learning_rate": 4.6841133333333335e-05, + "loss": 2.330213623046875, + "step": 47400 + }, + { + "epoch": 6.333333333333333, + "grad_norm": 0.19543009996414185, + "learning_rate": 4.6834466666666674e-05, + "loss": 2.3290335083007814, + "step": 47500 + }, + { + "epoch": 6.346666666666667, + "grad_norm": 0.2060248702764511, + "learning_rate": 4.6827800000000006e-05, + "loss": 2.331068572998047, + "step": 47600 + }, + { + "epoch": 6.36, + "grad_norm": 0.2179960161447525, + "learning_rate": 4.682113333333333e-05, + "loss": 2.330615997314453, + "step": 47700 + }, + { + "epoch": 6.373333333333333, + "grad_norm": 0.22476692497730255, + "learning_rate": 4.681446666666667e-05, + "loss": 2.3329974365234376, + "step": 47800 + }, + { + "epoch": 6.386666666666667, + "grad_norm": 0.1948496699333191, + "learning_rate": 4.68078e-05, + "loss": 2.3322357177734374, + "step": 47900 + }, + { + "epoch": 6.4, + "grad_norm": 0.19658160209655762, + "learning_rate": 4.6801133333333335e-05, + "loss": 2.329741668701172, + "step": 48000 + }, + { + "epoch": 6.413333333333333, + "grad_norm": 0.21576018631458282, + "learning_rate": 4.679446666666667e-05, + "loss": 2.331051788330078, + "step": 48100 + }, + { + "epoch": 6.426666666666667, + "grad_norm": 0.20465338230133057, + "learning_rate": 4.6787866666666666e-05, + "loss": 2.3314564514160154, + "step": 48200 + }, + { + "epoch": 6.44, + "grad_norm": 0.2254284769296646, + "learning_rate": 4.6781200000000005e-05, + "loss": 2.3306893920898437, + "step": 48300 + }, + { + "epoch": 6.453333333333333, + "grad_norm": 0.21523387730121613, + "learning_rate": 4.677453333333334e-05, + "loss": 2.3328369140625, + "step": 48400 + }, + { + "epoch": 6.466666666666667, + "grad_norm": 0.20994578301906586, + "learning_rate": 4.676786666666667e-05, + "loss": 2.3308122253417967, + "step": 48500 + }, + { + "epoch": 6.48, + "grad_norm": 0.21397413313388824, + "learning_rate": 4.67612e-05, + "loss": 2.3299708557128906, + "step": 48600 + }, + { + "epoch": 6.493333333333333, + "grad_norm": 0.20089605450630188, + "learning_rate": 4.6754533333333334e-05, + "loss": 2.3305317687988283, + "step": 48700 + }, + { + "epoch": 6.506666666666667, + "grad_norm": 0.21305248141288757, + "learning_rate": 4.674786666666667e-05, + "loss": 2.3314739990234377, + "step": 48800 + }, + { + "epoch": 6.52, + "grad_norm": 0.20678336918354034, + "learning_rate": 4.67412e-05, + "loss": 2.3338267517089846, + "step": 48900 + }, + { + "epoch": 6.533333333333333, + "grad_norm": 0.20186908543109894, + "learning_rate": 4.673453333333334e-05, + "loss": 2.3309475708007814, + "step": 49000 + }, + { + "epoch": 6.546666666666667, + "grad_norm": 0.1907065063714981, + "learning_rate": 4.672786666666667e-05, + "loss": 2.3316998291015625, + "step": 49100 + }, + { + "epoch": 6.5600000000000005, + "grad_norm": 0.21854570508003235, + "learning_rate": 4.67212e-05, + "loss": 2.3346012878417968, + "step": 49200 + }, + { + "epoch": 6.573333333333333, + "grad_norm": 0.1847628653049469, + "learning_rate": 4.6714533333333335e-05, + "loss": 2.3357057189941406, + "step": 49300 + }, + { + "epoch": 6.586666666666667, + "grad_norm": 0.19201835989952087, + "learning_rate": 4.670786666666667e-05, + "loss": 2.3363993835449217, + "step": 49400 + }, + { + "epoch": 6.6, + "grad_norm": 0.19336426258087158, + "learning_rate": 4.67012e-05, + "loss": 2.3319854736328125, + "step": 49500 + }, + { + "epoch": 6.613333333333333, + "grad_norm": 0.20099902153015137, + "learning_rate": 4.669453333333333e-05, + "loss": 2.3336613464355467, + "step": 49600 + }, + { + "epoch": 6.626666666666667, + "grad_norm": 0.1986514925956726, + "learning_rate": 4.668786666666667e-05, + "loss": 2.3317831420898436, + "step": 49700 + }, + { + "epoch": 6.64, + "grad_norm": 0.20249810814857483, + "learning_rate": 4.66812e-05, + "loss": 2.3329707336425782, + "step": 49800 + }, + { + "epoch": 6.653333333333333, + "grad_norm": 0.21656836569309235, + "learning_rate": 4.6674533333333335e-05, + "loss": 2.3322386169433593, + "step": 49900 + }, + { + "epoch": 6.666666666666667, + "grad_norm": 0.19392716884613037, + "learning_rate": 4.666786666666667e-05, + "loss": 2.334392852783203, + "step": 50000 + }, + { + "epoch": 6.68, + "grad_norm": 0.19600430130958557, + "learning_rate": 4.6661200000000007e-05, + "loss": 2.3346022033691405, + "step": 50100 + }, + { + "epoch": 6.693333333333333, + "grad_norm": 0.21334628760814667, + "learning_rate": 4.6654600000000006e-05, + "loss": 2.3344834899902343, + "step": 50200 + }, + { + "epoch": 6.706666666666667, + "grad_norm": 0.19854342937469482, + "learning_rate": 4.664793333333334e-05, + "loss": 2.3333599853515623, + "step": 50300 + }, + { + "epoch": 6.72, + "grad_norm": 0.2086271196603775, + "learning_rate": 4.664126666666666e-05, + "loss": 2.335559997558594, + "step": 50400 + }, + { + "epoch": 6.733333333333333, + "grad_norm": 0.20393237471580505, + "learning_rate": 4.66346e-05, + "loss": 2.3350341796875, + "step": 50500 + }, + { + "epoch": 6.746666666666667, + "grad_norm": 0.2037380337715149, + "learning_rate": 4.6627933333333335e-05, + "loss": 2.3359445190429686, + "step": 50600 + }, + { + "epoch": 6.76, + "grad_norm": 0.2010214924812317, + "learning_rate": 4.662126666666667e-05, + "loss": 2.333213348388672, + "step": 50700 + }, + { + "epoch": 6.773333333333333, + "grad_norm": 0.211711123585701, + "learning_rate": 4.6614600000000006e-05, + "loss": 2.333146209716797, + "step": 50800 + }, + { + "epoch": 6.786666666666667, + "grad_norm": 0.20048975944519043, + "learning_rate": 4.660793333333334e-05, + "loss": 2.332876892089844, + "step": 50900 + }, + { + "epoch": 6.8, + "grad_norm": 0.20532432198524475, + "learning_rate": 4.660126666666667e-05, + "loss": 2.335528564453125, + "step": 51000 + }, + { + "epoch": 6.8133333333333335, + "grad_norm": 0.19597899913787842, + "learning_rate": 4.65946e-05, + "loss": 2.3326602172851563, + "step": 51100 + }, + { + "epoch": 6.826666666666666, + "grad_norm": 0.20233699679374695, + "learning_rate": 4.6587933333333335e-05, + "loss": 2.3346743774414063, + "step": 51200 + }, + { + "epoch": 6.84, + "grad_norm": 0.1949591040611267, + "learning_rate": 4.658126666666667e-05, + "loss": 2.335735168457031, + "step": 51300 + }, + { + "epoch": 6.8533333333333335, + "grad_norm": 0.1934141367673874, + "learning_rate": 4.65746e-05, + "loss": 2.335612487792969, + "step": 51400 + }, + { + "epoch": 6.866666666666667, + "grad_norm": 0.2191038280725479, + "learning_rate": 4.656793333333334e-05, + "loss": 2.3345936584472655, + "step": 51500 + }, + { + "epoch": 6.88, + "grad_norm": 0.20383000373840332, + "learning_rate": 4.656126666666667e-05, + "loss": 2.3339216613769533, + "step": 51600 + }, + { + "epoch": 6.8933333333333335, + "grad_norm": 0.19669340550899506, + "learning_rate": 4.65546e-05, + "loss": 2.3346900939941406, + "step": 51700 + }, + { + "epoch": 6.906666666666666, + "grad_norm": 0.20373137295246124, + "learning_rate": 4.6547933333333335e-05, + "loss": 2.3349125671386717, + "step": 51800 + }, + { + "epoch": 6.92, + "grad_norm": 0.2109116166830063, + "learning_rate": 4.654126666666667e-05, + "loss": 2.3348736572265625, + "step": 51900 + }, + { + "epoch": 6.933333333333334, + "grad_norm": 0.21398979425430298, + "learning_rate": 4.65346e-05, + "loss": 2.336753692626953, + "step": 52000 + }, + { + "epoch": 6.946666666666666, + "grad_norm": 0.1936953067779541, + "learning_rate": 4.652793333333333e-05, + "loss": 2.3369993591308593, + "step": 52100 + }, + { + "epoch": 6.96, + "grad_norm": 0.22233432531356812, + "learning_rate": 4.652133333333333e-05, + "loss": 2.3361253356933593, + "step": 52200 + }, + { + "epoch": 6.973333333333334, + "grad_norm": 0.20416876673698425, + "learning_rate": 4.651466666666667e-05, + "loss": 2.3360031127929686, + "step": 52300 + }, + { + "epoch": 6.986666666666666, + "grad_norm": 0.2030036300420761, + "learning_rate": 4.6508e-05, + "loss": 2.337208099365234, + "step": 52400 + }, + { + "epoch": 7.0, + "grad_norm": 0.19202755391597748, + "learning_rate": 4.6501333333333335e-05, + "loss": 2.336151123046875, + "step": 52500 + }, + { + "epoch": 7.013333333333334, + "grad_norm": 0.206998810172081, + "learning_rate": 4.649466666666667e-05, + "loss": 2.315085906982422, + "step": 52600 + }, + { + "epoch": 7.026666666666666, + "grad_norm": 0.2254278063774109, + "learning_rate": 4.6488000000000006e-05, + "loss": 2.316161651611328, + "step": 52700 + }, + { + "epoch": 7.04, + "grad_norm": 0.2177981585264206, + "learning_rate": 4.648133333333334e-05, + "loss": 2.3162889099121093, + "step": 52800 + }, + { + "epoch": 7.053333333333334, + "grad_norm": 0.22323600947856903, + "learning_rate": 4.6474666666666664e-05, + "loss": 2.3178530883789064, + "step": 52900 + }, + { + "epoch": 7.066666666666666, + "grad_norm": 0.20918424427509308, + "learning_rate": 4.6468e-05, + "loss": 2.315562438964844, + "step": 53000 + }, + { + "epoch": 7.08, + "grad_norm": 0.22114083170890808, + "learning_rate": 4.6461333333333335e-05, + "loss": 2.315318145751953, + "step": 53100 + }, + { + "epoch": 7.093333333333334, + "grad_norm": 0.19929060339927673, + "learning_rate": 4.645466666666667e-05, + "loss": 2.319254913330078, + "step": 53200 + }, + { + "epoch": 7.1066666666666665, + "grad_norm": 0.22897835075855255, + "learning_rate": 4.6448e-05, + "loss": 2.3185064697265627, + "step": 53300 + }, + { + "epoch": 7.12, + "grad_norm": 0.20979653298854828, + "learning_rate": 4.644133333333334e-05, + "loss": 2.3153074645996092, + "step": 53400 + }, + { + "epoch": 7.133333333333334, + "grad_norm": 0.208432137966156, + "learning_rate": 4.643466666666667e-05, + "loss": 2.3188551330566405, + "step": 53500 + }, + { + "epoch": 7.1466666666666665, + "grad_norm": 0.2060391902923584, + "learning_rate": 4.6428000000000003e-05, + "loss": 2.319374694824219, + "step": 53600 + }, + { + "epoch": 7.16, + "grad_norm": 0.2240801900625229, + "learning_rate": 4.6421333333333336e-05, + "loss": 2.315366668701172, + "step": 53700 + }, + { + "epoch": 7.173333333333334, + "grad_norm": 0.21705488860607147, + "learning_rate": 4.641466666666667e-05, + "loss": 2.320493469238281, + "step": 53800 + }, + { + "epoch": 7.1866666666666665, + "grad_norm": 0.22233860194683075, + "learning_rate": 4.6408e-05, + "loss": 2.318059844970703, + "step": 53900 + }, + { + "epoch": 7.2, + "grad_norm": 0.2171303927898407, + "learning_rate": 4.640133333333333e-05, + "loss": 2.320230712890625, + "step": 54000 + }, + { + "epoch": 7.213333333333333, + "grad_norm": 0.21981152892112732, + "learning_rate": 4.639466666666667e-05, + "loss": 2.3186485290527346, + "step": 54100 + }, + { + "epoch": 7.226666666666667, + "grad_norm": 0.2230496108531952, + "learning_rate": 4.638806666666667e-05, + "loss": 2.3200640869140625, + "step": 54200 + }, + { + "epoch": 7.24, + "grad_norm": 0.2142811268568039, + "learning_rate": 4.63814e-05, + "loss": 2.3188714599609375, + "step": 54300 + }, + { + "epoch": 7.253333333333333, + "grad_norm": 0.20586246252059937, + "learning_rate": 4.6374733333333335e-05, + "loss": 2.3214300537109374, + "step": 54400 + }, + { + "epoch": 7.266666666666667, + "grad_norm": 0.206768199801445, + "learning_rate": 4.636806666666667e-05, + "loss": 2.317760467529297, + "step": 54500 + }, + { + "epoch": 7.28, + "grad_norm": 0.22308428585529327, + "learning_rate": 4.6361400000000006e-05, + "loss": 2.32193359375, + "step": 54600 + }, + { + "epoch": 7.293333333333333, + "grad_norm": 0.21023783087730408, + "learning_rate": 4.635473333333333e-05, + "loss": 2.321294860839844, + "step": 54700 + }, + { + "epoch": 7.306666666666667, + "grad_norm": 0.20875036716461182, + "learning_rate": 4.6348066666666664e-05, + "loss": 2.3194563293457033, + "step": 54800 + }, + { + "epoch": 7.32, + "grad_norm": 0.22223174571990967, + "learning_rate": 4.63414e-05, + "loss": 2.3206028747558594, + "step": 54900 + }, + { + "epoch": 7.333333333333333, + "grad_norm": 0.19239133596420288, + "learning_rate": 4.6334733333333336e-05, + "loss": 2.321158599853516, + "step": 55000 + }, + { + "epoch": 7.346666666666667, + "grad_norm": 0.22706732153892517, + "learning_rate": 4.632806666666667e-05, + "loss": 2.3212765502929686, + "step": 55100 + }, + { + "epoch": 7.36, + "grad_norm": 0.23205487430095673, + "learning_rate": 4.632140000000001e-05, + "loss": 2.322073974609375, + "step": 55200 + }, + { + "epoch": 7.373333333333333, + "grad_norm": 0.2067403942346573, + "learning_rate": 4.631473333333334e-05, + "loss": 2.3220693969726565, + "step": 55300 + }, + { + "epoch": 7.386666666666667, + "grad_norm": 0.20351338386535645, + "learning_rate": 4.6308066666666665e-05, + "loss": 2.32278076171875, + "step": 55400 + }, + { + "epoch": 7.4, + "grad_norm": 0.21386387944221497, + "learning_rate": 4.6301400000000004e-05, + "loss": 2.3235244750976562, + "step": 55500 + }, + { + "epoch": 7.413333333333333, + "grad_norm": 0.2237972617149353, + "learning_rate": 4.6294733333333336e-05, + "loss": 2.3205836486816405, + "step": 55600 + }, + { + "epoch": 7.426666666666667, + "grad_norm": 0.196205735206604, + "learning_rate": 4.628806666666667e-05, + "loss": 2.324235687255859, + "step": 55700 + }, + { + "epoch": 7.44, + "grad_norm": 0.20559580624103546, + "learning_rate": 4.62814e-05, + "loss": 2.3239215087890623, + "step": 55800 + }, + { + "epoch": 7.453333333333333, + "grad_norm": 0.22416776418685913, + "learning_rate": 4.627473333333334e-05, + "loss": 2.3214433288574217, + "step": 55900 + }, + { + "epoch": 7.466666666666667, + "grad_norm": 0.20037733018398285, + "learning_rate": 4.626806666666667e-05, + "loss": 2.322022247314453, + "step": 56000 + }, + { + "epoch": 7.48, + "grad_norm": 0.21654389798641205, + "learning_rate": 4.6261400000000004e-05, + "loss": 2.3236199951171876, + "step": 56100 + }, + { + "epoch": 7.493333333333333, + "grad_norm": 0.21859359741210938, + "learning_rate": 4.62548e-05, + "loss": 2.3238677978515625, + "step": 56200 + }, + { + "epoch": 7.506666666666667, + "grad_norm": 0.22405706346035004, + "learning_rate": 4.6248133333333335e-05, + "loss": 2.326851654052734, + "step": 56300 + }, + { + "epoch": 7.52, + "grad_norm": 0.1978028565645218, + "learning_rate": 4.624146666666667e-05, + "loss": 2.3240150451660155, + "step": 56400 + }, + { + "epoch": 7.533333333333333, + "grad_norm": 0.21222999691963196, + "learning_rate": 4.62348e-05, + "loss": 2.3225338745117186, + "step": 56500 + }, + { + "epoch": 7.546666666666667, + "grad_norm": 0.22027376294136047, + "learning_rate": 4.622813333333333e-05, + "loss": 2.324446563720703, + "step": 56600 + }, + { + "epoch": 7.5600000000000005, + "grad_norm": 0.21182918548583984, + "learning_rate": 4.622146666666667e-05, + "loss": 2.3254127502441406, + "step": 56700 + }, + { + "epoch": 7.573333333333333, + "grad_norm": 0.19568821787834167, + "learning_rate": 4.6214800000000003e-05, + "loss": 2.325800323486328, + "step": 56800 + }, + { + "epoch": 7.586666666666667, + "grad_norm": 0.20319704711437225, + "learning_rate": 4.6208133333333336e-05, + "loss": 2.325161590576172, + "step": 56900 + }, + { + "epoch": 7.6, + "grad_norm": 0.22199761867523193, + "learning_rate": 4.620146666666667e-05, + "loss": 2.3248526000976564, + "step": 57000 + }, + { + "epoch": 7.613333333333333, + "grad_norm": 0.19542196393013, + "learning_rate": 4.619480000000001e-05, + "loss": 2.3250607299804686, + "step": 57100 + }, + { + "epoch": 7.626666666666667, + "grad_norm": 0.19808714091777802, + "learning_rate": 4.618813333333333e-05, + "loss": 2.3261805725097657, + "step": 57200 + }, + { + "epoch": 7.64, + "grad_norm": 0.22000600397586823, + "learning_rate": 4.6181466666666665e-05, + "loss": 2.3237953186035156, + "step": 57300 + }, + { + "epoch": 7.653333333333333, + "grad_norm": 0.2083161324262619, + "learning_rate": 4.6174800000000004e-05, + "loss": 2.3280027770996092, + "step": 57400 + }, + { + "epoch": 7.666666666666667, + "grad_norm": 0.2168016880750656, + "learning_rate": 4.6168133333333336e-05, + "loss": 2.324162902832031, + "step": 57500 + }, + { + "epoch": 7.68, + "grad_norm": 0.21734952926635742, + "learning_rate": 4.616146666666667e-05, + "loss": 2.3249171447753905, + "step": 57600 + }, + { + "epoch": 7.693333333333333, + "grad_norm": 0.20479203760623932, + "learning_rate": 4.61548e-05, + "loss": 2.327186737060547, + "step": 57700 + }, + { + "epoch": 7.706666666666667, + "grad_norm": 0.2028800994157791, + "learning_rate": 4.614813333333334e-05, + "loss": 2.327611999511719, + "step": 57800 + }, + { + "epoch": 7.72, + "grad_norm": 0.21738632023334503, + "learning_rate": 4.6141466666666665e-05, + "loss": 2.324887390136719, + "step": 57900 + }, + { + "epoch": 7.733333333333333, + "grad_norm": 0.227495938539505, + "learning_rate": 4.61348e-05, + "loss": 2.3263511657714844, + "step": 58000 + }, + { + "epoch": 7.746666666666667, + "grad_norm": 0.22351373732089996, + "learning_rate": 4.6128133333333337e-05, + "loss": 2.324449005126953, + "step": 58100 + }, + { + "epoch": 7.76, + "grad_norm": 0.19855080544948578, + "learning_rate": 4.6121533333333336e-05, + "loss": 2.3279388427734373, + "step": 58200 + }, + { + "epoch": 7.773333333333333, + "grad_norm": 0.21258243918418884, + "learning_rate": 4.611486666666667e-05, + "loss": 2.3258876037597656, + "step": 58300 + }, + { + "epoch": 7.786666666666667, + "grad_norm": 0.23399053514003754, + "learning_rate": 4.61082e-05, + "loss": 2.328024597167969, + "step": 58400 + }, + { + "epoch": 7.8, + "grad_norm": 0.20555289089679718, + "learning_rate": 4.610153333333333e-05, + "loss": 2.324607391357422, + "step": 58500 + }, + { + "epoch": 7.8133333333333335, + "grad_norm": 0.22223757207393646, + "learning_rate": 4.609486666666667e-05, + "loss": 2.328887634277344, + "step": 58600 + }, + { + "epoch": 7.826666666666666, + "grad_norm": 0.20944397151470184, + "learning_rate": 4.6088200000000004e-05, + "loss": 2.326324005126953, + "step": 58700 + }, + { + "epoch": 7.84, + "grad_norm": 0.21754513680934906, + "learning_rate": 4.6081533333333336e-05, + "loss": 2.3285617065429687, + "step": 58800 + }, + { + "epoch": 7.8533333333333335, + "grad_norm": 0.2218855917453766, + "learning_rate": 4.607486666666667e-05, + "loss": 2.3279769897460936, + "step": 58900 + }, + { + "epoch": 7.866666666666667, + "grad_norm": 0.2152242809534073, + "learning_rate": 4.60682e-05, + "loss": 2.327835998535156, + "step": 59000 + }, + { + "epoch": 7.88, + "grad_norm": 0.19836048781871796, + "learning_rate": 4.606153333333333e-05, + "loss": 2.330382843017578, + "step": 59100 + }, + { + "epoch": 7.8933333333333335, + "grad_norm": 0.2070547193288803, + "learning_rate": 4.6054866666666665e-05, + "loss": 2.328244171142578, + "step": 59200 + }, + { + "epoch": 7.906666666666666, + "grad_norm": 0.2064908742904663, + "learning_rate": 4.6048200000000004e-05, + "loss": 2.327570037841797, + "step": 59300 + }, + { + "epoch": 7.92, + "grad_norm": 0.19223378598690033, + "learning_rate": 4.6041533333333336e-05, + "loss": 2.327322540283203, + "step": 59400 + }, + { + "epoch": 7.933333333333334, + "grad_norm": 0.2263549417257309, + "learning_rate": 4.603486666666667e-05, + "loss": 2.329267120361328, + "step": 59500 + }, + { + "epoch": 7.946666666666666, + "grad_norm": 0.21715712547302246, + "learning_rate": 4.602820000000001e-05, + "loss": 2.3234599304199217, + "step": 59600 + }, + { + "epoch": 7.96, + "grad_norm": 0.2264692485332489, + "learning_rate": 4.602153333333333e-05, + "loss": 2.326782531738281, + "step": 59700 + }, + { + "epoch": 7.973333333333334, + "grad_norm": 0.20843270421028137, + "learning_rate": 4.6014866666666665e-05, + "loss": 2.3266970825195314, + "step": 59800 + }, + { + "epoch": 7.986666666666666, + "grad_norm": 0.20484039187431335, + "learning_rate": 4.6008200000000004e-05, + "loss": 2.3275350952148437, + "step": 59900 + }, + { + "epoch": 8.0, + "grad_norm": 0.21979759633541107, + "learning_rate": 4.600153333333334e-05, + "loss": 2.327262115478516, + "step": 60000 + }, + { + "epoch": 8.013333333333334, + "grad_norm": 0.2148316353559494, + "learning_rate": 4.599486666666667e-05, + "loss": 2.3032371520996096, + "step": 60100 + }, + { + "epoch": 8.026666666666667, + "grad_norm": 0.2427894026041031, + "learning_rate": 4.598826666666667e-05, + "loss": 2.306138000488281, + "step": 60200 + }, + { + "epoch": 8.04, + "grad_norm": 0.23417937755584717, + "learning_rate": 4.59816e-05, + "loss": 2.3055377197265625, + "step": 60300 + }, + { + "epoch": 8.053333333333333, + "grad_norm": 0.22597885131835938, + "learning_rate": 4.597493333333334e-05, + "loss": 2.308175354003906, + "step": 60400 + }, + { + "epoch": 8.066666666666666, + "grad_norm": 0.22343474626541138, + "learning_rate": 4.596826666666667e-05, + "loss": 2.3064723205566406, + "step": 60500 + }, + { + "epoch": 8.08, + "grad_norm": 0.22558583319187164, + "learning_rate": 4.5961600000000004e-05, + "loss": 2.305071258544922, + "step": 60600 + }, + { + "epoch": 8.093333333333334, + "grad_norm": 0.20653437077999115, + "learning_rate": 4.5954933333333336e-05, + "loss": 2.307345428466797, + "step": 60700 + }, + { + "epoch": 8.106666666666667, + "grad_norm": 0.2216809093952179, + "learning_rate": 4.594826666666667e-05, + "loss": 2.3047059631347655, + "step": 60800 + }, + { + "epoch": 8.12, + "grad_norm": 0.22799284756183624, + "learning_rate": 4.59416e-05, + "loss": 2.307566833496094, + "step": 60900 + }, + { + "epoch": 8.133333333333333, + "grad_norm": 0.22076313197612762, + "learning_rate": 4.593493333333333e-05, + "loss": 2.3049078369140625, + "step": 61000 + }, + { + "epoch": 8.146666666666667, + "grad_norm": 0.2266998142004013, + "learning_rate": 4.592826666666667e-05, + "loss": 2.3053494262695313, + "step": 61100 + }, + { + "epoch": 8.16, + "grad_norm": 0.23705247044563293, + "learning_rate": 4.5921600000000004e-05, + "loss": 2.3077027893066404, + "step": 61200 + }, + { + "epoch": 8.173333333333334, + "grad_norm": 0.21669632196426392, + "learning_rate": 4.5914933333333337e-05, + "loss": 2.3076458740234376, + "step": 61300 + }, + { + "epoch": 8.186666666666667, + "grad_norm": 0.2006712257862091, + "learning_rate": 4.590826666666667e-05, + "loss": 2.3063531494140626, + "step": 61400 + }, + { + "epoch": 8.2, + "grad_norm": 0.21064023673534393, + "learning_rate": 4.59016e-05, + "loss": 2.3089945983886717, + "step": 61500 + }, + { + "epoch": 8.213333333333333, + "grad_norm": 0.21858380734920502, + "learning_rate": 4.589493333333333e-05, + "loss": 2.307320098876953, + "step": 61600 + }, + { + "epoch": 8.226666666666667, + "grad_norm": 0.21644806861877441, + "learning_rate": 4.5888266666666666e-05, + "loss": 2.3085394287109375, + "step": 61700 + }, + { + "epoch": 8.24, + "grad_norm": 0.22975999116897583, + "learning_rate": 4.5881600000000005e-05, + "loss": 2.3101947021484377, + "step": 61800 + }, + { + "epoch": 8.253333333333334, + "grad_norm": 0.21924324333667755, + "learning_rate": 4.587493333333334e-05, + "loss": 2.3123768615722655, + "step": 61900 + }, + { + "epoch": 8.266666666666667, + "grad_norm": 0.22921468317508698, + "learning_rate": 4.586826666666667e-05, + "loss": 2.3115985107421877, + "step": 62000 + }, + { + "epoch": 8.28, + "grad_norm": 0.21891409158706665, + "learning_rate": 4.58616e-05, + "loss": 2.309479217529297, + "step": 62100 + }, + { + "epoch": 8.293333333333333, + "grad_norm": 0.22286993265151978, + "learning_rate": 4.5855e-05, + "loss": 2.3122218322753905, + "step": 62200 + }, + { + "epoch": 8.306666666666667, + "grad_norm": 0.24152639508247375, + "learning_rate": 4.584833333333334e-05, + "loss": 2.308910217285156, + "step": 62300 + }, + { + "epoch": 8.32, + "grad_norm": 0.21503682434558868, + "learning_rate": 4.5841666666666665e-05, + "loss": 2.307999572753906, + "step": 62400 + }, + { + "epoch": 8.333333333333334, + "grad_norm": 0.20558761060237885, + "learning_rate": 4.5835e-05, + "loss": 2.3080621337890626, + "step": 62500 + }, + { + "epoch": 8.346666666666668, + "grad_norm": 0.21116876602172852, + "learning_rate": 4.5828333333333336e-05, + "loss": 2.3105264282226563, + "step": 62600 + }, + { + "epoch": 8.36, + "grad_norm": 0.2325267195701599, + "learning_rate": 4.582166666666667e-05, + "loss": 2.309617919921875, + "step": 62700 + }, + { + "epoch": 8.373333333333333, + "grad_norm": 0.2288995385169983, + "learning_rate": 4.5815e-05, + "loss": 2.3135015869140627, + "step": 62800 + }, + { + "epoch": 8.386666666666667, + "grad_norm": 0.23661412298679352, + "learning_rate": 4.580833333333333e-05, + "loss": 2.311595153808594, + "step": 62900 + }, + { + "epoch": 8.4, + "grad_norm": 0.22704863548278809, + "learning_rate": 4.580166666666667e-05, + "loss": 2.311846160888672, + "step": 63000 + }, + { + "epoch": 8.413333333333334, + "grad_norm": 0.21123670041561127, + "learning_rate": 4.5795000000000005e-05, + "loss": 2.3099000549316404, + "step": 63100 + }, + { + "epoch": 8.426666666666666, + "grad_norm": 0.22051377594470978, + "learning_rate": 4.578833333333333e-05, + "loss": 2.314755401611328, + "step": 63200 + }, + { + "epoch": 8.44, + "grad_norm": 0.21824777126312256, + "learning_rate": 4.578166666666667e-05, + "loss": 2.3122979736328126, + "step": 63300 + }, + { + "epoch": 8.453333333333333, + "grad_norm": 0.2141052782535553, + "learning_rate": 4.5775e-05, + "loss": 2.314187316894531, + "step": 63400 + }, + { + "epoch": 8.466666666666667, + "grad_norm": 0.22229032218456268, + "learning_rate": 4.5768333333333334e-05, + "loss": 2.3118528747558593, + "step": 63500 + }, + { + "epoch": 8.48, + "grad_norm": 0.21177971363067627, + "learning_rate": 4.576166666666667e-05, + "loss": 2.314485626220703, + "step": 63600 + }, + { + "epoch": 8.493333333333334, + "grad_norm": 0.2159062772989273, + "learning_rate": 4.5755000000000005e-05, + "loss": 2.3116845703125, + "step": 63700 + }, + { + "epoch": 8.506666666666666, + "grad_norm": 0.21478477120399475, + "learning_rate": 4.574833333333334e-05, + "loss": 2.3143507385253907, + "step": 63800 + }, + { + "epoch": 8.52, + "grad_norm": 0.22522731125354767, + "learning_rate": 4.574166666666667e-05, + "loss": 2.315663604736328, + "step": 63900 + }, + { + "epoch": 8.533333333333333, + "grad_norm": 0.22168120741844177, + "learning_rate": 4.5735e-05, + "loss": 2.3135195922851564, + "step": 64000 + }, + { + "epoch": 8.546666666666667, + "grad_norm": 0.2298642098903656, + "learning_rate": 4.5728333333333334e-05, + "loss": 2.315981140136719, + "step": 64100 + }, + { + "epoch": 8.56, + "grad_norm": 0.2253265529870987, + "learning_rate": 4.572173333333333e-05, + "loss": 2.315703887939453, + "step": 64200 + }, + { + "epoch": 8.573333333333334, + "grad_norm": 0.22435899078845978, + "learning_rate": 4.5715066666666665e-05, + "loss": 2.314583282470703, + "step": 64300 + }, + { + "epoch": 8.586666666666666, + "grad_norm": 0.21293385326862335, + "learning_rate": 4.5708400000000004e-05, + "loss": 2.3148568725585936, + "step": 64400 + }, + { + "epoch": 8.6, + "grad_norm": 0.2217615693807602, + "learning_rate": 4.570173333333334e-05, + "loss": 2.3133966064453126, + "step": 64500 + }, + { + "epoch": 8.613333333333333, + "grad_norm": 0.21577724814414978, + "learning_rate": 4.569506666666667e-05, + "loss": 2.3160128784179688, + "step": 64600 + }, + { + "epoch": 8.626666666666667, + "grad_norm": 0.20894163846969604, + "learning_rate": 4.56884e-05, + "loss": 2.316580505371094, + "step": 64700 + }, + { + "epoch": 8.64, + "grad_norm": 0.22660347819328308, + "learning_rate": 4.568173333333334e-05, + "loss": 2.3132757568359374, + "step": 64800 + }, + { + "epoch": 8.653333333333332, + "grad_norm": 0.20169147849082947, + "learning_rate": 4.567506666666667e-05, + "loss": 2.3164935302734375, + "step": 64900 + }, + { + "epoch": 8.666666666666666, + "grad_norm": 0.22867351770401, + "learning_rate": 4.56684e-05, + "loss": 2.3162477111816404, + "step": 65000 + }, + { + "epoch": 8.68, + "grad_norm": 0.23090234398841858, + "learning_rate": 4.566173333333334e-05, + "loss": 2.3189874267578126, + "step": 65100 + }, + { + "epoch": 8.693333333333333, + "grad_norm": 0.22201119363307953, + "learning_rate": 4.565506666666667e-05, + "loss": 2.31669921875, + "step": 65200 + }, + { + "epoch": 8.706666666666667, + "grad_norm": 0.2174353450536728, + "learning_rate": 4.56484e-05, + "loss": 2.3188742065429686, + "step": 65300 + }, + { + "epoch": 8.72, + "grad_norm": 0.21239978075027466, + "learning_rate": 4.5641733333333334e-05, + "loss": 2.3161309814453124, + "step": 65400 + }, + { + "epoch": 8.733333333333333, + "grad_norm": 0.19849137961864471, + "learning_rate": 4.563506666666667e-05, + "loss": 2.3190155029296875, + "step": 65500 + }, + { + "epoch": 8.746666666666666, + "grad_norm": 0.2238064557313919, + "learning_rate": 4.5628400000000005e-05, + "loss": 2.3172088623046876, + "step": 65600 + }, + { + "epoch": 8.76, + "grad_norm": 0.22363531589508057, + "learning_rate": 4.562173333333333e-05, + "loss": 2.3175604248046877, + "step": 65700 + }, + { + "epoch": 8.773333333333333, + "grad_norm": 0.22062158584594727, + "learning_rate": 4.561506666666667e-05, + "loss": 2.3156175231933593, + "step": 65800 + }, + { + "epoch": 8.786666666666667, + "grad_norm": 0.2074691206216812, + "learning_rate": 4.56084e-05, + "loss": 2.317613372802734, + "step": 65900 + }, + { + "epoch": 8.8, + "grad_norm": 0.21585817635059357, + "learning_rate": 4.5601733333333334e-05, + "loss": 2.317025909423828, + "step": 66000 + }, + { + "epoch": 8.813333333333333, + "grad_norm": 0.24289225041866302, + "learning_rate": 4.5595066666666666e-05, + "loss": 2.3176622009277343, + "step": 66100 + }, + { + "epoch": 8.826666666666666, + "grad_norm": 0.22260883450508118, + "learning_rate": 4.5588466666666666e-05, + "loss": 2.3193907165527343, + "step": 66200 + }, + { + "epoch": 8.84, + "grad_norm": 0.20685255527496338, + "learning_rate": 4.5581800000000005e-05, + "loss": 2.3187965393066405, + "step": 66300 + }, + { + "epoch": 8.853333333333333, + "grad_norm": 0.2502782940864563, + "learning_rate": 4.557513333333334e-05, + "loss": 2.3181417846679686, + "step": 66400 + }, + { + "epoch": 8.866666666666667, + "grad_norm": 0.20513685047626495, + "learning_rate": 4.556846666666667e-05, + "loss": 2.318340606689453, + "step": 66500 + }, + { + "epoch": 8.88, + "grad_norm": 0.2085087150335312, + "learning_rate": 4.55618e-05, + "loss": 2.320625762939453, + "step": 66600 + }, + { + "epoch": 8.893333333333333, + "grad_norm": 0.2202482372522354, + "learning_rate": 4.5555133333333334e-05, + "loss": 2.317662811279297, + "step": 66700 + }, + { + "epoch": 8.906666666666666, + "grad_norm": 0.20364412665367126, + "learning_rate": 4.5548466666666666e-05, + "loss": 2.320509796142578, + "step": 66800 + }, + { + "epoch": 8.92, + "grad_norm": 0.2078937292098999, + "learning_rate": 4.55418e-05, + "loss": 2.3180162048339845, + "step": 66900 + }, + { + "epoch": 8.933333333333334, + "grad_norm": 0.21178776025772095, + "learning_rate": 4.553513333333334e-05, + "loss": 2.318477783203125, + "step": 67000 + }, + { + "epoch": 8.946666666666667, + "grad_norm": 0.2264500856399536, + "learning_rate": 4.552846666666667e-05, + "loss": 2.321943511962891, + "step": 67100 + }, + { + "epoch": 8.96, + "grad_norm": 0.2113855928182602, + "learning_rate": 4.55218e-05, + "loss": 2.318071746826172, + "step": 67200 + }, + { + "epoch": 8.973333333333333, + "grad_norm": 0.19603019952774048, + "learning_rate": 4.5515133333333334e-05, + "loss": 2.3197503662109376, + "step": 67300 + }, + { + "epoch": 8.986666666666666, + "grad_norm": 0.2236277014017105, + "learning_rate": 4.550846666666667e-05, + "loss": 2.320359344482422, + "step": 67400 + }, + { + "epoch": 9.0, + "grad_norm": 0.21920901536941528, + "learning_rate": 4.55018e-05, + "loss": 2.318968963623047, + "step": 67500 + }, + { + "epoch": 9.013333333333334, + "grad_norm": 0.23331010341644287, + "learning_rate": 4.549513333333333e-05, + "loss": 2.2941917419433593, + "step": 67600 + }, + { + "epoch": 9.026666666666667, + "grad_norm": 0.21596217155456543, + "learning_rate": 4.548846666666667e-05, + "loss": 2.290107421875, + "step": 67700 + }, + { + "epoch": 9.04, + "grad_norm": 0.22891509532928467, + "learning_rate": 4.54818e-05, + "loss": 2.2925718688964842, + "step": 67800 + }, + { + "epoch": 9.053333333333333, + "grad_norm": 0.21967433393001556, + "learning_rate": 4.5475133333333334e-05, + "loss": 2.2921377563476564, + "step": 67900 + }, + { + "epoch": 9.066666666666666, + "grad_norm": 0.25205832719802856, + "learning_rate": 4.5468466666666673e-05, + "loss": 2.293820037841797, + "step": 68000 + }, + { + "epoch": 9.08, + "grad_norm": 0.2291940152645111, + "learning_rate": 4.5461800000000006e-05, + "loss": 2.293941650390625, + "step": 68100 + }, + { + "epoch": 9.093333333333334, + "grad_norm": 0.23932799696922302, + "learning_rate": 4.5455200000000005e-05, + "loss": 2.2932688903808596, + "step": 68200 + }, + { + "epoch": 9.106666666666667, + "grad_norm": 0.22407028079032898, + "learning_rate": 4.544853333333334e-05, + "loss": 2.296217193603516, + "step": 68300 + }, + { + "epoch": 9.12, + "grad_norm": 0.2332010418176651, + "learning_rate": 4.544186666666667e-05, + "loss": 2.296667022705078, + "step": 68400 + }, + { + "epoch": 9.133333333333333, + "grad_norm": 0.22865130007266998, + "learning_rate": 4.54352e-05, + "loss": 2.2938783264160154, + "step": 68500 + }, + { + "epoch": 9.146666666666667, + "grad_norm": 0.23731687664985657, + "learning_rate": 4.5428533333333334e-05, + "loss": 2.296278381347656, + "step": 68600 + }, + { + "epoch": 9.16, + "grad_norm": 0.21626006066799164, + "learning_rate": 4.5421866666666666e-05, + "loss": 2.2968585205078127, + "step": 68700 + }, + { + "epoch": 9.173333333333334, + "grad_norm": 0.23821845650672913, + "learning_rate": 4.5415200000000005e-05, + "loss": 2.2977059936523436, + "step": 68800 + }, + { + "epoch": 9.186666666666667, + "grad_norm": 0.2369178831577301, + "learning_rate": 4.540853333333334e-05, + "loss": 2.296495208740234, + "step": 68900 + }, + { + "epoch": 9.2, + "grad_norm": 0.22190576791763306, + "learning_rate": 4.540186666666667e-05, + "loss": 2.297707366943359, + "step": 69000 + }, + { + "epoch": 9.213333333333333, + "grad_norm": 0.22970540821552277, + "learning_rate": 4.53952e-05, + "loss": 2.2968077087402343, + "step": 69100 + }, + { + "epoch": 9.226666666666667, + "grad_norm": 0.23141416907310486, + "learning_rate": 4.5388533333333334e-05, + "loss": 2.297506103515625, + "step": 69200 + }, + { + "epoch": 9.24, + "grad_norm": 0.22547562420368195, + "learning_rate": 4.5381866666666667e-05, + "loss": 2.2980027770996094, + "step": 69300 + }, + { + "epoch": 9.253333333333334, + "grad_norm": 0.24733230471611023, + "learning_rate": 4.53752e-05, + "loss": 2.29823486328125, + "step": 69400 + }, + { + "epoch": 9.266666666666667, + "grad_norm": 0.23954610526561737, + "learning_rate": 4.536853333333334e-05, + "loss": 2.300198974609375, + "step": 69500 + }, + { + "epoch": 9.28, + "grad_norm": 0.253302663564682, + "learning_rate": 4.536186666666667e-05, + "loss": 2.2968313598632815, + "step": 69600 + }, + { + "epoch": 9.293333333333333, + "grad_norm": 0.2572624385356903, + "learning_rate": 4.53552e-05, + "loss": 2.3007162475585936, + "step": 69700 + }, + { + "epoch": 9.306666666666667, + "grad_norm": 0.2580345869064331, + "learning_rate": 4.5348533333333335e-05, + "loss": 2.2998121643066405, + "step": 69800 + }, + { + "epoch": 9.32, + "grad_norm": 0.23370671272277832, + "learning_rate": 4.5341866666666674e-05, + "loss": 2.302071075439453, + "step": 69900 + }, + { + "epoch": 9.333333333333334, + "grad_norm": 0.2354464828968048, + "learning_rate": 4.53352e-05, + "loss": 2.3010763549804687, + "step": 70000 + }, + { + "epoch": 9.346666666666668, + "grad_norm": 0.22726485133171082, + "learning_rate": 4.532853333333333e-05, + "loss": 2.302950897216797, + "step": 70100 + }, + { + "epoch": 9.36, + "grad_norm": 0.24437928199768066, + "learning_rate": 4.532193333333333e-05, + "loss": 2.301619110107422, + "step": 70200 + }, + { + "epoch": 9.373333333333333, + "grad_norm": 0.22362923622131348, + "learning_rate": 4.531526666666667e-05, + "loss": 2.301064147949219, + "step": 70300 + }, + { + "epoch": 9.386666666666667, + "grad_norm": 0.22675906121730804, + "learning_rate": 4.53086e-05, + "loss": 2.300765380859375, + "step": 70400 + }, + { + "epoch": 9.4, + "grad_norm": 0.23232199251651764, + "learning_rate": 4.5301933333333334e-05, + "loss": 2.2998236083984374, + "step": 70500 + }, + { + "epoch": 9.413333333333334, + "grad_norm": 0.2357228696346283, + "learning_rate": 4.5295266666666666e-05, + "loss": 2.300859375, + "step": 70600 + }, + { + "epoch": 9.426666666666666, + "grad_norm": 0.22707265615463257, + "learning_rate": 4.5288600000000005e-05, + "loss": 2.30189697265625, + "step": 70700 + }, + { + "epoch": 9.44, + "grad_norm": 0.22745104134082794, + "learning_rate": 4.528193333333334e-05, + "loss": 2.3032139587402343, + "step": 70800 + }, + { + "epoch": 9.453333333333333, + "grad_norm": 0.2270699143409729, + "learning_rate": 4.527526666666667e-05, + "loss": 2.3027561950683593, + "step": 70900 + }, + { + "epoch": 9.466666666666667, + "grad_norm": 0.22705000638961792, + "learning_rate": 4.52686e-05, + "loss": 2.30169677734375, + "step": 71000 + }, + { + "epoch": 9.48, + "grad_norm": 0.24112239480018616, + "learning_rate": 4.5261933333333335e-05, + "loss": 2.3032855224609374, + "step": 71100 + }, + { + "epoch": 9.493333333333334, + "grad_norm": 0.22396592795848846, + "learning_rate": 4.525526666666667e-05, + "loss": 2.3002029418945313, + "step": 71200 + }, + { + "epoch": 9.506666666666666, + "grad_norm": 0.21745307743549347, + "learning_rate": 4.52486e-05, + "loss": 2.3029249572753905, + "step": 71300 + }, + { + "epoch": 9.52, + "grad_norm": 0.23369887471199036, + "learning_rate": 4.524193333333334e-05, + "loss": 2.304996337890625, + "step": 71400 + }, + { + "epoch": 9.533333333333333, + "grad_norm": 0.23318316042423248, + "learning_rate": 4.523526666666667e-05, + "loss": 2.3056065368652345, + "step": 71500 + }, + { + "epoch": 9.546666666666667, + "grad_norm": 0.2250574827194214, + "learning_rate": 4.52286e-05, + "loss": 2.3032150268554688, + "step": 71600 + }, + { + "epoch": 9.56, + "grad_norm": 0.2183639109134674, + "learning_rate": 4.5221933333333335e-05, + "loss": 2.305579833984375, + "step": 71700 + }, + { + "epoch": 9.573333333333334, + "grad_norm": 0.2082279771566391, + "learning_rate": 4.521526666666667e-05, + "loss": 2.3057624816894533, + "step": 71800 + }, + { + "epoch": 9.586666666666666, + "grad_norm": 0.23728124797344208, + "learning_rate": 4.52086e-05, + "loss": 2.3048939514160156, + "step": 71900 + }, + { + "epoch": 9.6, + "grad_norm": 0.23262864351272583, + "learning_rate": 4.520193333333333e-05, + "loss": 2.303785400390625, + "step": 72000 + }, + { + "epoch": 9.613333333333333, + "grad_norm": 0.22944900393486023, + "learning_rate": 4.519526666666667e-05, + "loss": 2.3056602478027344, + "step": 72100 + }, + { + "epoch": 9.626666666666667, + "grad_norm": 0.2632165551185608, + "learning_rate": 4.518866666666667e-05, + "loss": 2.3039901733398436, + "step": 72200 + }, + { + "epoch": 9.64, + "grad_norm": 0.23915515840053558, + "learning_rate": 4.5182e-05, + "loss": 2.3091696166992186, + "step": 72300 + }, + { + "epoch": 9.653333333333332, + "grad_norm": 0.24298280477523804, + "learning_rate": 4.5175333333333334e-05, + "loss": 2.3061654663085935, + "step": 72400 + }, + { + "epoch": 9.666666666666666, + "grad_norm": 0.23660294711589813, + "learning_rate": 4.5168666666666673e-05, + "loss": 2.3104348754882813, + "step": 72500 + }, + { + "epoch": 9.68, + "grad_norm": 0.2370450496673584, + "learning_rate": 4.5162000000000006e-05, + "loss": 2.3079653930664064, + "step": 72600 + }, + { + "epoch": 9.693333333333333, + "grad_norm": 0.2323356717824936, + "learning_rate": 4.515533333333333e-05, + "loss": 2.3062504577636718, + "step": 72700 + }, + { + "epoch": 9.706666666666667, + "grad_norm": 0.2260921448469162, + "learning_rate": 4.514866666666667e-05, + "loss": 2.3086776733398438, + "step": 72800 + }, + { + "epoch": 9.72, + "grad_norm": 0.23469285666942596, + "learning_rate": 4.5142e-05, + "loss": 2.306175079345703, + "step": 72900 + }, + { + "epoch": 9.733333333333333, + "grad_norm": 0.2398371398448944, + "learning_rate": 4.5135333333333335e-05, + "loss": 2.3068536376953124, + "step": 73000 + }, + { + "epoch": 9.746666666666666, + "grad_norm": 0.2239067405462265, + "learning_rate": 4.512866666666667e-05, + "loss": 2.30914306640625, + "step": 73100 + }, + { + "epoch": 9.76, + "grad_norm": 0.22555306553840637, + "learning_rate": 4.5122000000000006e-05, + "loss": 2.3087586975097656, + "step": 73200 + }, + { + "epoch": 9.773333333333333, + "grad_norm": 0.22917480766773224, + "learning_rate": 4.511533333333334e-05, + "loss": 2.310619201660156, + "step": 73300 + }, + { + "epoch": 9.786666666666667, + "grad_norm": 0.23775242269039154, + "learning_rate": 4.510866666666667e-05, + "loss": 2.3091854858398437, + "step": 73400 + }, + { + "epoch": 9.8, + "grad_norm": 0.24801835417747498, + "learning_rate": 4.5102e-05, + "loss": 2.3082546997070312, + "step": 73500 + }, + { + "epoch": 9.813333333333333, + "grad_norm": 0.23106469213962555, + "learning_rate": 4.5095333333333335e-05, + "loss": 2.3087344360351563, + "step": 73600 + }, + { + "epoch": 9.826666666666666, + "grad_norm": 0.22504796087741852, + "learning_rate": 4.508866666666667e-05, + "loss": 2.308363494873047, + "step": 73700 + }, + { + "epoch": 9.84, + "grad_norm": 0.23639419674873352, + "learning_rate": 4.5082e-05, + "loss": 2.30758544921875, + "step": 73800 + }, + { + "epoch": 9.853333333333333, + "grad_norm": 0.24086354672908783, + "learning_rate": 4.507533333333334e-05, + "loss": 2.3087428283691405, + "step": 73900 + }, + { + "epoch": 9.866666666666667, + "grad_norm": 0.2180139571428299, + "learning_rate": 4.506866666666667e-05, + "loss": 2.308798828125, + "step": 74000 + }, + { + "epoch": 9.88, + "grad_norm": 0.22501300275325775, + "learning_rate": 4.5062e-05, + "loss": 2.3099415588378904, + "step": 74100 + }, + { + "epoch": 9.893333333333333, + "grad_norm": 0.23066537082195282, + "learning_rate": 4.50554e-05, + "loss": 2.307503662109375, + "step": 74200 + }, + { + "epoch": 9.906666666666666, + "grad_norm": 0.22434760630130768, + "learning_rate": 4.5048733333333335e-05, + "loss": 2.3106227111816406, + "step": 74300 + }, + { + "epoch": 9.92, + "grad_norm": 0.25195831060409546, + "learning_rate": 4.5042066666666674e-05, + "loss": 2.3048329162597656, + "step": 74400 + }, + { + "epoch": 9.933333333333334, + "grad_norm": 0.2128189355134964, + "learning_rate": 4.50354e-05, + "loss": 2.3085731506347655, + "step": 74500 + }, + { + "epoch": 9.946666666666667, + "grad_norm": 0.2209046483039856, + "learning_rate": 4.502873333333333e-05, + "loss": 2.3103427124023437, + "step": 74600 + }, + { + "epoch": 9.96, + "grad_norm": 0.4690224528312683, + "learning_rate": 4.502206666666667e-05, + "loss": 2.312327423095703, + "step": 74700 + }, + { + "epoch": 9.973333333333333, + "grad_norm": 0.21926158666610718, + "learning_rate": 4.50154e-05, + "loss": 2.310508575439453, + "step": 74800 + }, + { + "epoch": 9.986666666666666, + "grad_norm": 0.2374141365289688, + "learning_rate": 4.5008733333333335e-05, + "loss": 2.31052978515625, + "step": 74900 + }, + { + "epoch": 10.0, + "grad_norm": 0.22070780396461487, + "learning_rate": 4.500206666666667e-05, + "loss": 2.3100782775878907, + "step": 75000 + }, + { + "epoch": 10.013333333333334, + "grad_norm": 0.23315180838108063, + "learning_rate": 4.4995400000000006e-05, + "loss": 2.2820582580566406, + "step": 75100 + }, + { + "epoch": 10.026666666666667, + "grad_norm": 0.2489648312330246, + "learning_rate": 4.498873333333333e-05, + "loss": 2.2800167846679686, + "step": 75200 + }, + { + "epoch": 10.04, + "grad_norm": 0.2430664449930191, + "learning_rate": 4.4982066666666664e-05, + "loss": 2.2820753479003906, + "step": 75300 + }, + { + "epoch": 10.053333333333333, + "grad_norm": 0.24344773590564728, + "learning_rate": 4.49754e-05, + "loss": 2.2796278381347657, + "step": 75400 + }, + { + "epoch": 10.066666666666666, + "grad_norm": 0.24810276925563812, + "learning_rate": 4.4968733333333335e-05, + "loss": 2.279807586669922, + "step": 75500 + }, + { + "epoch": 10.08, + "grad_norm": 0.24132785201072693, + "learning_rate": 4.496206666666667e-05, + "loss": 2.2805412292480467, + "step": 75600 + }, + { + "epoch": 10.093333333333334, + "grad_norm": 0.24037568271160126, + "learning_rate": 4.49554e-05, + "loss": 2.2824276733398436, + "step": 75700 + }, + { + "epoch": 10.106666666666667, + "grad_norm": 0.23821789026260376, + "learning_rate": 4.494873333333334e-05, + "loss": 2.284660186767578, + "step": 75800 + }, + { + "epoch": 10.12, + "grad_norm": 0.2437891960144043, + "learning_rate": 4.494206666666667e-05, + "loss": 2.2823611450195314, + "step": 75900 + }, + { + "epoch": 10.133333333333333, + "grad_norm": 0.23768781125545502, + "learning_rate": 4.49354e-05, + "loss": 2.2855105590820313, + "step": 76000 + }, + { + "epoch": 10.146666666666667, + "grad_norm": 0.24591408669948578, + "learning_rate": 4.4928733333333336e-05, + "loss": 2.2840614318847656, + "step": 76100 + }, + { + "epoch": 10.16, + "grad_norm": 0.2379213571548462, + "learning_rate": 4.4922133333333335e-05, + "loss": 2.2879397583007814, + "step": 76200 + }, + { + "epoch": 10.173333333333334, + "grad_norm": 0.2505422532558441, + "learning_rate": 4.491546666666667e-05, + "loss": 2.2845729064941405, + "step": 76300 + }, + { + "epoch": 10.186666666666667, + "grad_norm": 0.24018126726150513, + "learning_rate": 4.49088e-05, + "loss": 2.287251281738281, + "step": 76400 + }, + { + "epoch": 10.2, + "grad_norm": 0.26669764518737793, + "learning_rate": 4.490213333333333e-05, + "loss": 2.284190826416016, + "step": 76500 + }, + { + "epoch": 10.213333333333333, + "grad_norm": 0.24248762428760529, + "learning_rate": 4.489546666666667e-05, + "loss": 2.287902374267578, + "step": 76600 + }, + { + "epoch": 10.226666666666667, + "grad_norm": 0.23663915693759918, + "learning_rate": 4.48888e-05, + "loss": 2.286513214111328, + "step": 76700 + }, + { + "epoch": 10.24, + "grad_norm": 0.25117191672325134, + "learning_rate": 4.4882133333333335e-05, + "loss": 2.289020538330078, + "step": 76800 + }, + { + "epoch": 10.253333333333334, + "grad_norm": 0.23214347660541534, + "learning_rate": 4.4875466666666674e-05, + "loss": 2.2866584777832033, + "step": 76900 + }, + { + "epoch": 10.266666666666667, + "grad_norm": 0.2386721670627594, + "learning_rate": 4.48688e-05, + "loss": 2.289106597900391, + "step": 77000 + }, + { + "epoch": 10.28, + "grad_norm": 0.24421949684619904, + "learning_rate": 4.486213333333333e-05, + "loss": 2.28677490234375, + "step": 77100 + }, + { + "epoch": 10.293333333333333, + "grad_norm": 0.2612295150756836, + "learning_rate": 4.485546666666667e-05, + "loss": 2.289345703125, + "step": 77200 + }, + { + "epoch": 10.306666666666667, + "grad_norm": 0.22263416647911072, + "learning_rate": 4.48488e-05, + "loss": 2.2870338439941404, + "step": 77300 + }, + { + "epoch": 10.32, + "grad_norm": 0.2574688494205475, + "learning_rate": 4.4842133333333336e-05, + "loss": 2.2890251159667967, + "step": 77400 + }, + { + "epoch": 10.333333333333334, + "grad_norm": 0.25357821583747864, + "learning_rate": 4.483546666666667e-05, + "loss": 2.2873045349121095, + "step": 77500 + }, + { + "epoch": 10.346666666666668, + "grad_norm": 0.2804579734802246, + "learning_rate": 4.482880000000001e-05, + "loss": 2.2914703369140623, + "step": 77600 + }, + { + "epoch": 10.36, + "grad_norm": 0.24506065249443054, + "learning_rate": 4.482213333333334e-05, + "loss": 2.2905569458007813, + "step": 77700 + }, + { + "epoch": 10.373333333333333, + "grad_norm": 0.25503185391426086, + "learning_rate": 4.4815466666666665e-05, + "loss": 2.290155334472656, + "step": 77800 + }, + { + "epoch": 10.386666666666667, + "grad_norm": 0.2579893171787262, + "learning_rate": 4.4808800000000004e-05, + "loss": 2.291581115722656, + "step": 77900 + }, + { + "epoch": 10.4, + "grad_norm": 0.22538907825946808, + "learning_rate": 4.4802133333333336e-05, + "loss": 2.291281280517578, + "step": 78000 + }, + { + "epoch": 10.413333333333334, + "grad_norm": 0.24924156069755554, + "learning_rate": 4.479546666666667e-05, + "loss": 2.289500885009766, + "step": 78100 + }, + { + "epoch": 10.426666666666666, + "grad_norm": 0.2366298884153366, + "learning_rate": 4.478886666666667e-05, + "loss": 2.290386047363281, + "step": 78200 + }, + { + "epoch": 10.44, + "grad_norm": 0.22278301417827606, + "learning_rate": 4.47822e-05, + "loss": 2.2905796813964843, + "step": 78300 + }, + { + "epoch": 10.453333333333333, + "grad_norm": 0.25287824869155884, + "learning_rate": 4.477553333333334e-05, + "loss": 2.290713653564453, + "step": 78400 + }, + { + "epoch": 10.466666666666667, + "grad_norm": 0.24435845017433167, + "learning_rate": 4.476886666666667e-05, + "loss": 2.2916438293457033, + "step": 78500 + }, + { + "epoch": 10.48, + "grad_norm": 0.24885345995426178, + "learning_rate": 4.47622e-05, + "loss": 2.2903347778320313, + "step": 78600 + }, + { + "epoch": 10.493333333333334, + "grad_norm": 0.2466493546962738, + "learning_rate": 4.4755533333333335e-05, + "loss": 2.292062225341797, + "step": 78700 + }, + { + "epoch": 10.506666666666666, + "grad_norm": 0.25343602895736694, + "learning_rate": 4.474886666666667e-05, + "loss": 2.293315124511719, + "step": 78800 + }, + { + "epoch": 10.52, + "grad_norm": 0.26084843277931213, + "learning_rate": 4.47422e-05, + "loss": 2.290987854003906, + "step": 78900 + }, + { + "epoch": 10.533333333333333, + "grad_norm": 0.22565628588199615, + "learning_rate": 4.473553333333333e-05, + "loss": 2.291141357421875, + "step": 79000 + }, + { + "epoch": 10.546666666666667, + "grad_norm": 0.2424556016921997, + "learning_rate": 4.472886666666667e-05, + "loss": 2.2940351867675783, + "step": 79100 + }, + { + "epoch": 10.56, + "grad_norm": 0.23173433542251587, + "learning_rate": 4.4722200000000004e-05, + "loss": 2.2938632202148437, + "step": 79200 + }, + { + "epoch": 10.573333333333334, + "grad_norm": 0.24767623841762543, + "learning_rate": 4.4715533333333336e-05, + "loss": 2.294097595214844, + "step": 79300 + }, + { + "epoch": 10.586666666666666, + "grad_norm": 0.2494058907032013, + "learning_rate": 4.470886666666667e-05, + "loss": 2.292882843017578, + "step": 79400 + }, + { + "epoch": 10.6, + "grad_norm": 0.2309560924768448, + "learning_rate": 4.47022e-05, + "loss": 2.2917105102539064, + "step": 79500 + }, + { + "epoch": 10.613333333333333, + "grad_norm": 0.2502034306526184, + "learning_rate": 4.469553333333333e-05, + "loss": 2.2940020751953125, + "step": 79600 + }, + { + "epoch": 10.626666666666667, + "grad_norm": 0.2417595088481903, + "learning_rate": 4.4688866666666665e-05, + "loss": 2.2959962463378907, + "step": 79700 + }, + { + "epoch": 10.64, + "grad_norm": 0.2390497922897339, + "learning_rate": 4.4682200000000004e-05, + "loss": 2.2932833862304687, + "step": 79800 + }, + { + "epoch": 10.653333333333332, + "grad_norm": 0.25319451093673706, + "learning_rate": 4.4675533333333336e-05, + "loss": 2.2950804138183596, + "step": 79900 + }, + { + "epoch": 10.666666666666666, + "grad_norm": 0.23525965213775635, + "learning_rate": 4.466886666666667e-05, + "loss": 2.2939056396484374, + "step": 80000 + }, + { + "epoch": 10.68, + "grad_norm": 0.24645350873470306, + "learning_rate": 4.46622e-05, + "loss": 2.2950694274902346, + "step": 80100 + }, + { + "epoch": 10.693333333333333, + "grad_norm": 0.24350802600383759, + "learning_rate": 4.46556e-05, + "loss": 2.295481414794922, + "step": 80200 + }, + { + "epoch": 10.706666666666667, + "grad_norm": 0.24546648561954498, + "learning_rate": 4.464893333333334e-05, + "loss": 2.2965150451660157, + "step": 80300 + }, + { + "epoch": 10.72, + "grad_norm": 0.24012289941310883, + "learning_rate": 4.464226666666667e-05, + "loss": 2.29464111328125, + "step": 80400 + }, + { + "epoch": 10.733333333333333, + "grad_norm": 0.2439471334218979, + "learning_rate": 4.46356e-05, + "loss": 2.2982655334472657, + "step": 80500 + }, + { + "epoch": 10.746666666666666, + "grad_norm": 0.24235573410987854, + "learning_rate": 4.4628933333333336e-05, + "loss": 2.2973838806152345, + "step": 80600 + }, + { + "epoch": 10.76, + "grad_norm": 0.2552349865436554, + "learning_rate": 4.462226666666667e-05, + "loss": 2.2967495727539062, + "step": 80700 + }, + { + "epoch": 10.773333333333333, + "grad_norm": 0.2687914967536926, + "learning_rate": 4.46156e-05, + "loss": 2.2971734619140625, + "step": 80800 + }, + { + "epoch": 10.786666666666667, + "grad_norm": 0.22800393402576447, + "learning_rate": 4.460893333333334e-05, + "loss": 2.295909881591797, + "step": 80900 + }, + { + "epoch": 10.8, + "grad_norm": 0.25448915362358093, + "learning_rate": 4.460226666666667e-05, + "loss": 2.299366455078125, + "step": 81000 + }, + { + "epoch": 10.813333333333333, + "grad_norm": 0.24387459456920624, + "learning_rate": 4.4595600000000004e-05, + "loss": 2.297369384765625, + "step": 81100 + }, + { + "epoch": 10.826666666666666, + "grad_norm": 0.24151787161827087, + "learning_rate": 4.4588933333333336e-05, + "loss": 2.299127197265625, + "step": 81200 + }, + { + "epoch": 10.84, + "grad_norm": 0.2260817289352417, + "learning_rate": 4.458226666666667e-05, + "loss": 2.2975596618652343, + "step": 81300 + }, + { + "epoch": 10.853333333333333, + "grad_norm": 0.24239422380924225, + "learning_rate": 4.45756e-05, + "loss": 2.2985691833496094, + "step": 81400 + }, + { + "epoch": 10.866666666666667, + "grad_norm": 0.21752089262008667, + "learning_rate": 4.456893333333333e-05, + "loss": 2.300589294433594, + "step": 81500 + }, + { + "epoch": 10.88, + "grad_norm": 0.23936143517494202, + "learning_rate": 4.456226666666667e-05, + "loss": 2.2985806274414062, + "step": 81600 + }, + { + "epoch": 10.893333333333333, + "grad_norm": 0.25165167450904846, + "learning_rate": 4.4555600000000004e-05, + "loss": 2.3023681640625, + "step": 81700 + }, + { + "epoch": 10.906666666666666, + "grad_norm": 0.24560686945915222, + "learning_rate": 4.4548933333333336e-05, + "loss": 2.296816101074219, + "step": 81800 + }, + { + "epoch": 10.92, + "grad_norm": 0.235377699136734, + "learning_rate": 4.454226666666667e-05, + "loss": 2.3003538513183592, + "step": 81900 + }, + { + "epoch": 10.933333333333334, + "grad_norm": 0.21916425228118896, + "learning_rate": 4.45356e-05, + "loss": 2.302768096923828, + "step": 82000 + }, + { + "epoch": 10.946666666666667, + "grad_norm": 0.23057326674461365, + "learning_rate": 4.452893333333333e-05, + "loss": 2.299179992675781, + "step": 82100 + }, + { + "epoch": 10.96, + "grad_norm": 0.23899604380130768, + "learning_rate": 4.452233333333334e-05, + "loss": 2.3004336547851563, + "step": 82200 + }, + { + "epoch": 10.973333333333333, + "grad_norm": 0.23253585398197174, + "learning_rate": 4.4515666666666665e-05, + "loss": 2.3014898681640625, + "step": 82300 + }, + { + "epoch": 10.986666666666666, + "grad_norm": 0.24487797915935516, + "learning_rate": 4.4509000000000004e-05, + "loss": 2.3026199340820312, + "step": 82400 + }, + { + "epoch": 11.0, + "grad_norm": 0.2387479692697525, + "learning_rate": 4.4502333333333336e-05, + "loss": 2.2974674987792967, + "step": 82500 + }, + { + "epoch": 11.013333333333334, + "grad_norm": 0.2720658481121063, + "learning_rate": 4.4495733333333335e-05, + "loss": 2.2671746826171875, + "step": 82600 + }, + { + "epoch": 11.026666666666667, + "grad_norm": 0.263578861951828, + "learning_rate": 4.448906666666667e-05, + "loss": 2.2688304138183595, + "step": 82700 + }, + { + "epoch": 11.04, + "grad_norm": 0.2674785852432251, + "learning_rate": 4.44824e-05, + "loss": 2.270413055419922, + "step": 82800 + }, + { + "epoch": 11.053333333333333, + "grad_norm": 0.28208568692207336, + "learning_rate": 4.447573333333334e-05, + "loss": 2.267439422607422, + "step": 82900 + }, + { + "epoch": 11.066666666666666, + "grad_norm": 0.2503279447555542, + "learning_rate": 4.446906666666667e-05, + "loss": 2.27013427734375, + "step": 83000 + }, + { + "epoch": 11.08, + "grad_norm": 0.2667846083641052, + "learning_rate": 4.44624e-05, + "loss": 2.270685577392578, + "step": 83100 + }, + { + "epoch": 11.093333333333334, + "grad_norm": 0.2649480700492859, + "learning_rate": 4.4455733333333335e-05, + "loss": 2.2691964721679687, + "step": 83200 + }, + { + "epoch": 11.106666666666667, + "grad_norm": 0.27101367712020874, + "learning_rate": 4.444906666666667e-05, + "loss": 2.272455291748047, + "step": 83300 + }, + { + "epoch": 11.12, + "grad_norm": 0.24341875314712524, + "learning_rate": 4.44424e-05, + "loss": 2.2689295959472657, + "step": 83400 + }, + { + "epoch": 11.133333333333333, + "grad_norm": 0.25448212027549744, + "learning_rate": 4.443573333333333e-05, + "loss": 2.2724458312988283, + "step": 83500 + }, + { + "epoch": 11.146666666666667, + "grad_norm": 0.25443369150161743, + "learning_rate": 4.442906666666667e-05, + "loss": 2.271412811279297, + "step": 83600 + }, + { + "epoch": 11.16, + "grad_norm": 0.26732975244522095, + "learning_rate": 4.4422400000000003e-05, + "loss": 2.271360321044922, + "step": 83700 + }, + { + "epoch": 11.173333333333334, + "grad_norm": 0.26395460963249207, + "learning_rate": 4.4415733333333336e-05, + "loss": 2.26961669921875, + "step": 83800 + }, + { + "epoch": 11.186666666666667, + "grad_norm": 0.24745440483093262, + "learning_rate": 4.440906666666667e-05, + "loss": 2.2744174194335938, + "step": 83900 + }, + { + "epoch": 11.2, + "grad_norm": 0.26402172446250916, + "learning_rate": 4.44024e-05, + "loss": 2.2720037841796876, + "step": 84000 + }, + { + "epoch": 11.213333333333333, + "grad_norm": 0.23789356648921967, + "learning_rate": 4.439573333333333e-05, + "loss": 2.274175109863281, + "step": 84100 + }, + { + "epoch": 11.226666666666667, + "grad_norm": 0.24144236743450165, + "learning_rate": 4.4389066666666665e-05, + "loss": 2.2732891845703125, + "step": 84200 + }, + { + "epoch": 11.24, + "grad_norm": 0.2500831186771393, + "learning_rate": 4.4382400000000004e-05, + "loss": 2.2730227661132814, + "step": 84300 + }, + { + "epoch": 11.253333333333334, + "grad_norm": 0.25501829385757446, + "learning_rate": 4.4375733333333336e-05, + "loss": 2.274988708496094, + "step": 84400 + }, + { + "epoch": 11.266666666666667, + "grad_norm": 0.22763259708881378, + "learning_rate": 4.436906666666667e-05, + "loss": 2.272532196044922, + "step": 84500 + }, + { + "epoch": 11.28, + "grad_norm": 0.25562381744384766, + "learning_rate": 4.43624e-05, + "loss": 2.2755363464355467, + "step": 84600 + }, + { + "epoch": 11.293333333333333, + "grad_norm": 0.25353795289993286, + "learning_rate": 4.435573333333334e-05, + "loss": 2.2750617980957033, + "step": 84700 + }, + { + "epoch": 11.306666666666667, + "grad_norm": 0.26931309700012207, + "learning_rate": 4.4349066666666665e-05, + "loss": 2.2751278686523437, + "step": 84800 + }, + { + "epoch": 11.32, + "grad_norm": 0.2389533370733261, + "learning_rate": 4.43424e-05, + "loss": 2.278493194580078, + "step": 84900 + }, + { + "epoch": 11.333333333333334, + "grad_norm": 0.2465227097272873, + "learning_rate": 4.4335733333333337e-05, + "loss": 2.2789736938476564, + "step": 85000 + }, + { + "epoch": 11.346666666666668, + "grad_norm": 0.25453120470046997, + "learning_rate": 4.432906666666667e-05, + "loss": 2.2776898193359374, + "step": 85100 + }, + { + "epoch": 11.36, + "grad_norm": 0.2660987377166748, + "learning_rate": 4.43224e-05, + "loss": 2.2778756713867185, + "step": 85200 + }, + { + "epoch": 11.373333333333333, + "grad_norm": 0.25308796763420105, + "learning_rate": 4.431573333333334e-05, + "loss": 2.279368438720703, + "step": 85300 + }, + { + "epoch": 11.386666666666667, + "grad_norm": 0.25836026668548584, + "learning_rate": 4.430906666666667e-05, + "loss": 2.2798582458496095, + "step": 85400 + }, + { + "epoch": 11.4, + "grad_norm": 0.25316664576530457, + "learning_rate": 4.43024e-05, + "loss": 2.279602813720703, + "step": 85500 + }, + { + "epoch": 11.413333333333334, + "grad_norm": 0.2550676167011261, + "learning_rate": 4.429573333333334e-05, + "loss": 2.2755258178710935, + "step": 85600 + }, + { + "epoch": 11.426666666666666, + "grad_norm": 0.23546501994132996, + "learning_rate": 4.428906666666667e-05, + "loss": 2.2800631713867188, + "step": 85700 + }, + { + "epoch": 11.44, + "grad_norm": 0.264654278755188, + "learning_rate": 4.42824e-05, + "loss": 2.2767239379882813, + "step": 85800 + }, + { + "epoch": 11.453333333333333, + "grad_norm": 0.24899619817733765, + "learning_rate": 4.4275733333333334e-05, + "loss": 2.2798704528808593, + "step": 85900 + }, + { + "epoch": 11.466666666666667, + "grad_norm": 0.24456363916397095, + "learning_rate": 4.426906666666667e-05, + "loss": 2.2780026245117186, + "step": 86000 + }, + { + "epoch": 11.48, + "grad_norm": 0.25708940625190735, + "learning_rate": 4.4262400000000005e-05, + "loss": 2.2792425537109375, + "step": 86100 + }, + { + "epoch": 11.493333333333334, + "grad_norm": 0.2511962354183197, + "learning_rate": 4.425573333333334e-05, + "loss": 2.282320251464844, + "step": 86200 + }, + { + "epoch": 11.506666666666666, + "grad_norm": 0.24816451966762543, + "learning_rate": 4.424906666666667e-05, + "loss": 2.2792512512207033, + "step": 86300 + }, + { + "epoch": 11.52, + "grad_norm": 0.2514301836490631, + "learning_rate": 4.42424e-05, + "loss": 2.2795748901367188, + "step": 86400 + }, + { + "epoch": 11.533333333333333, + "grad_norm": 0.2495884746313095, + "learning_rate": 4.4235733333333334e-05, + "loss": 2.278619689941406, + "step": 86500 + }, + { + "epoch": 11.546666666666667, + "grad_norm": 0.24815420806407928, + "learning_rate": 4.422913333333333e-05, + "loss": 2.2829832458496093, + "step": 86600 + }, + { + "epoch": 11.56, + "grad_norm": 0.2668995261192322, + "learning_rate": 4.4222466666666665e-05, + "loss": 2.2842198181152344, + "step": 86700 + }, + { + "epoch": 11.573333333333334, + "grad_norm": 0.256393700838089, + "learning_rate": 4.4215800000000004e-05, + "loss": 2.2821044921875, + "step": 86800 + }, + { + "epoch": 11.586666666666666, + "grad_norm": 0.2424868494272232, + "learning_rate": 4.420913333333334e-05, + "loss": 2.2830775451660155, + "step": 86900 + }, + { + "epoch": 11.6, + "grad_norm": 0.27431467175483704, + "learning_rate": 4.420246666666667e-05, + "loss": 2.28398681640625, + "step": 87000 + }, + { + "epoch": 11.613333333333333, + "grad_norm": 0.267622709274292, + "learning_rate": 4.41958e-05, + "loss": 2.283782958984375, + "step": 87100 + }, + { + "epoch": 11.626666666666667, + "grad_norm": 0.2440316379070282, + "learning_rate": 4.418913333333334e-05, + "loss": 2.28414794921875, + "step": 87200 + }, + { + "epoch": 11.64, + "grad_norm": 0.259630411863327, + "learning_rate": 4.4182466666666666e-05, + "loss": 2.2857057189941408, + "step": 87300 + }, + { + "epoch": 11.653333333333332, + "grad_norm": 0.2571096122264862, + "learning_rate": 4.41758e-05, + "loss": 2.2847987365722657, + "step": 87400 + }, + { + "epoch": 11.666666666666666, + "grad_norm": 0.2570159137248993, + "learning_rate": 4.416913333333334e-05, + "loss": 2.2837939453125, + "step": 87500 + }, + { + "epoch": 11.68, + "grad_norm": 0.2649681270122528, + "learning_rate": 4.416246666666667e-05, + "loss": 2.2841265869140623, + "step": 87600 + }, + { + "epoch": 11.693333333333333, + "grad_norm": 0.26410555839538574, + "learning_rate": 4.41558e-05, + "loss": 2.2851953125, + "step": 87700 + }, + { + "epoch": 11.706666666666667, + "grad_norm": 0.2622752785682678, + "learning_rate": 4.4149133333333334e-05, + "loss": 2.2836956787109375, + "step": 87800 + }, + { + "epoch": 11.72, + "grad_norm": 0.2514193058013916, + "learning_rate": 4.414246666666667e-05, + "loss": 2.2842561340332033, + "step": 87900 + }, + { + "epoch": 11.733333333333333, + "grad_norm": 0.2531854212284088, + "learning_rate": 4.41358e-05, + "loss": 2.284789733886719, + "step": 88000 + }, + { + "epoch": 11.746666666666666, + "grad_norm": 0.2689782679080963, + "learning_rate": 4.412913333333333e-05, + "loss": 2.2857350158691405, + "step": 88100 + }, + { + "epoch": 11.76, + "grad_norm": 0.24945223331451416, + "learning_rate": 4.412246666666667e-05, + "loss": 2.2845068359375, + "step": 88200 + }, + { + "epoch": 11.773333333333333, + "grad_norm": 0.26712265610694885, + "learning_rate": 4.41158e-05, + "loss": 2.2854434204101564, + "step": 88300 + }, + { + "epoch": 11.786666666666667, + "grad_norm": 0.256874680519104, + "learning_rate": 4.4109133333333334e-05, + "loss": 2.287956085205078, + "step": 88400 + }, + { + "epoch": 11.8, + "grad_norm": 0.2476692944765091, + "learning_rate": 4.4102533333333333e-05, + "loss": 2.286315460205078, + "step": 88500 + }, + { + "epoch": 11.813333333333333, + "grad_norm": 0.2615588903427124, + "learning_rate": 4.4095866666666666e-05, + "loss": 2.284837188720703, + "step": 88600 + }, + { + "epoch": 11.826666666666666, + "grad_norm": 0.24872687458992004, + "learning_rate": 4.4089200000000005e-05, + "loss": 2.285694580078125, + "step": 88700 + }, + { + "epoch": 11.84, + "grad_norm": 0.2530681788921356, + "learning_rate": 4.408253333333334e-05, + "loss": 2.2873902893066407, + "step": 88800 + }, + { + "epoch": 11.853333333333333, + "grad_norm": 0.24849970638751984, + "learning_rate": 4.407586666666667e-05, + "loss": 2.2867955017089843, + "step": 88900 + }, + { + "epoch": 11.866666666666667, + "grad_norm": 0.24246734380722046, + "learning_rate": 4.40692e-05, + "loss": 2.289001770019531, + "step": 89000 + }, + { + "epoch": 11.88, + "grad_norm": 0.2607153654098511, + "learning_rate": 4.4062533333333334e-05, + "loss": 2.2897518920898436, + "step": 89100 + }, + { + "epoch": 11.893333333333333, + "grad_norm": 0.2614729106426239, + "learning_rate": 4.4055866666666666e-05, + "loss": 2.2860928344726563, + "step": 89200 + }, + { + "epoch": 11.906666666666666, + "grad_norm": 0.2584093511104584, + "learning_rate": 4.40492e-05, + "loss": 2.2889364624023436, + "step": 89300 + }, + { + "epoch": 11.92, + "grad_norm": 0.25701311230659485, + "learning_rate": 4.404253333333334e-05, + "loss": 2.2891424560546874, + "step": 89400 + }, + { + "epoch": 11.933333333333334, + "grad_norm": 0.2440747767686844, + "learning_rate": 4.403586666666667e-05, + "loss": 2.2895196533203124, + "step": 89500 + }, + { + "epoch": 11.946666666666667, + "grad_norm": 0.2381986528635025, + "learning_rate": 4.40292e-05, + "loss": 2.2897454833984376, + "step": 89600 + }, + { + "epoch": 11.96, + "grad_norm": 0.26296404004096985, + "learning_rate": 4.402253333333334e-05, + "loss": 2.2879896545410157, + "step": 89700 + }, + { + "epoch": 11.973333333333333, + "grad_norm": 0.25517991185188293, + "learning_rate": 4.4015866666666666e-05, + "loss": 2.2889413452148437, + "step": 89800 + }, + { + "epoch": 11.986666666666666, + "grad_norm": 0.2450113147497177, + "learning_rate": 4.40092e-05, + "loss": 2.2893191528320314, + "step": 89900 + }, + { + "epoch": 12.0, + "grad_norm": 0.250333309173584, + "learning_rate": 4.400253333333334e-05, + "loss": 2.289803161621094, + "step": 90000 + }, + { + "epoch": 12.013333333333334, + "grad_norm": 0.26415345072746277, + "learning_rate": 4.399586666666667e-05, + "loss": 2.2520457458496095, + "step": 90100 + }, + { + "epoch": 12.026666666666667, + "grad_norm": 0.270293265581131, + "learning_rate": 4.39892e-05, + "loss": 2.256067810058594, + "step": 90200 + }, + { + "epoch": 12.04, + "grad_norm": 0.26308006048202515, + "learning_rate": 4.3982533333333335e-05, + "loss": 2.254475402832031, + "step": 90300 + }, + { + "epoch": 12.053333333333333, + "grad_norm": 0.26801061630249023, + "learning_rate": 4.3975866666666674e-05, + "loss": 2.2552793884277342, + "step": 90400 + }, + { + "epoch": 12.066666666666666, + "grad_norm": 0.26214471459388733, + "learning_rate": 4.3969200000000006e-05, + "loss": 2.258145599365234, + "step": 90500 + }, + { + "epoch": 12.08, + "grad_norm": 0.28105658292770386, + "learning_rate": 4.396253333333333e-05, + "loss": 2.2529132080078127, + "step": 90600 + }, + { + "epoch": 12.093333333333334, + "grad_norm": 0.2663695216178894, + "learning_rate": 4.395586666666667e-05, + "loss": 2.255912322998047, + "step": 90700 + }, + { + "epoch": 12.106666666666667, + "grad_norm": 0.2649990916252136, + "learning_rate": 4.39492e-05, + "loss": 2.257332000732422, + "step": 90800 + }, + { + "epoch": 12.12, + "grad_norm": 0.2807125747203827, + "learning_rate": 4.39426e-05, + "loss": 2.254444274902344, + "step": 90900 + }, + { + "epoch": 12.133333333333333, + "grad_norm": 0.2781652510166168, + "learning_rate": 4.3935933333333334e-05, + "loss": 2.255809478759766, + "step": 91000 + }, + { + "epoch": 12.146666666666667, + "grad_norm": 0.2698095142841339, + "learning_rate": 4.3929266666666666e-05, + "loss": 2.2598388671875, + "step": 91100 + }, + { + "epoch": 12.16, + "grad_norm": 0.2597528100013733, + "learning_rate": 4.3922600000000005e-05, + "loss": 2.2584068298339846, + "step": 91200 + }, + { + "epoch": 12.173333333333334, + "grad_norm": 0.29636549949645996, + "learning_rate": 4.391593333333334e-05, + "loss": 2.2593704223632813, + "step": 91300 + }, + { + "epoch": 12.186666666666667, + "grad_norm": 0.26234522461891174, + "learning_rate": 4.390926666666667e-05, + "loss": 2.2581317138671877, + "step": 91400 + }, + { + "epoch": 12.2, + "grad_norm": 0.2541376054286957, + "learning_rate": 4.39026e-05, + "loss": 2.2626708984375, + "step": 91500 + }, + { + "epoch": 12.213333333333333, + "grad_norm": 0.26197925209999084, + "learning_rate": 4.3895933333333334e-05, + "loss": 2.260786285400391, + "step": 91600 + }, + { + "epoch": 12.226666666666667, + "grad_norm": 0.2817310690879822, + "learning_rate": 4.388926666666667e-05, + "loss": 2.2600221252441406, + "step": 91700 + }, + { + "epoch": 12.24, + "grad_norm": 0.2767874002456665, + "learning_rate": 4.38826e-05, + "loss": 2.259307556152344, + "step": 91800 + }, + { + "epoch": 12.253333333333334, + "grad_norm": 0.28231081366539, + "learning_rate": 4.387593333333334e-05, + "loss": 2.26181396484375, + "step": 91900 + }, + { + "epoch": 12.266666666666667, + "grad_norm": 0.29353827238082886, + "learning_rate": 4.386926666666667e-05, + "loss": 2.2626690673828125, + "step": 92000 + }, + { + "epoch": 12.28, + "grad_norm": 0.28261885046958923, + "learning_rate": 4.38626e-05, + "loss": 2.2611619567871095, + "step": 92100 + }, + { + "epoch": 12.293333333333333, + "grad_norm": 0.27281126379966736, + "learning_rate": 4.3855933333333335e-05, + "loss": 2.2623275756835937, + "step": 92200 + }, + { + "epoch": 12.306666666666667, + "grad_norm": 0.27092328667640686, + "learning_rate": 4.384926666666667e-05, + "loss": 2.2650576782226564, + "step": 92300 + }, + { + "epoch": 12.32, + "grad_norm": 0.27784717082977295, + "learning_rate": 4.38426e-05, + "loss": 2.265977478027344, + "step": 92400 + }, + { + "epoch": 12.333333333333334, + "grad_norm": 0.2821849286556244, + "learning_rate": 4.383593333333333e-05, + "loss": 2.2627384948730467, + "step": 92500 + }, + { + "epoch": 12.346666666666668, + "grad_norm": 0.2593942880630493, + "learning_rate": 4.382926666666667e-05, + "loss": 2.2643051147460938, + "step": 92600 + }, + { + "epoch": 12.36, + "grad_norm": 0.2664111852645874, + "learning_rate": 4.38226e-05, + "loss": 2.263711700439453, + "step": 92700 + }, + { + "epoch": 12.373333333333333, + "grad_norm": 0.27181532979011536, + "learning_rate": 4.3815933333333335e-05, + "loss": 2.2646673583984374, + "step": 92800 + }, + { + "epoch": 12.386666666666667, + "grad_norm": 0.27028733491897583, + "learning_rate": 4.380926666666667e-05, + "loss": 2.263740997314453, + "step": 92900 + }, + { + "epoch": 12.4, + "grad_norm": 0.27383387088775635, + "learning_rate": 4.3802600000000006e-05, + "loss": 2.2647544860839846, + "step": 93000 + }, + { + "epoch": 12.413333333333334, + "grad_norm": 0.2857363820075989, + "learning_rate": 4.379593333333333e-05, + "loss": 2.2678724670410157, + "step": 93100 + }, + { + "epoch": 12.426666666666666, + "grad_norm": 0.2589321434497833, + "learning_rate": 4.3789266666666664e-05, + "loss": 2.266948547363281, + "step": 93200 + }, + { + "epoch": 12.44, + "grad_norm": 0.2658815085887909, + "learning_rate": 4.37826e-05, + "loss": 2.266887969970703, + "step": 93300 + }, + { + "epoch": 12.453333333333333, + "grad_norm": 0.25604525208473206, + "learning_rate": 4.3775933333333336e-05, + "loss": 2.2663844299316405, + "step": 93400 + }, + { + "epoch": 12.466666666666667, + "grad_norm": 0.2693767249584198, + "learning_rate": 4.376926666666667e-05, + "loss": 2.268565368652344, + "step": 93500 + }, + { + "epoch": 12.48, + "grad_norm": 0.2705082297325134, + "learning_rate": 4.376260000000001e-05, + "loss": 2.2688444519042967, + "step": 93600 + }, + { + "epoch": 12.493333333333334, + "grad_norm": 0.26299747824668884, + "learning_rate": 4.375593333333334e-05, + "loss": 2.2663604736328127, + "step": 93700 + }, + { + "epoch": 12.506666666666666, + "grad_norm": 0.2636234760284424, + "learning_rate": 4.3749266666666665e-05, + "loss": 2.267936096191406, + "step": 93800 + }, + { + "epoch": 12.52, + "grad_norm": 0.27005478739738464, + "learning_rate": 4.37426e-05, + "loss": 2.2693917846679685, + "step": 93900 + }, + { + "epoch": 12.533333333333333, + "grad_norm": 0.26250335574150085, + "learning_rate": 4.3735933333333336e-05, + "loss": 2.2679597473144533, + "step": 94000 + }, + { + "epoch": 12.546666666666667, + "grad_norm": 0.2671932876110077, + "learning_rate": 4.3729333333333335e-05, + "loss": 2.2690809631347655, + "step": 94100 + }, + { + "epoch": 12.56, + "grad_norm": 0.2680586576461792, + "learning_rate": 4.372266666666667e-05, + "loss": 2.271476287841797, + "step": 94200 + }, + { + "epoch": 12.573333333333334, + "grad_norm": 0.2628432512283325, + "learning_rate": 4.3716e-05, + "loss": 2.2699676513671876, + "step": 94300 + }, + { + "epoch": 12.586666666666666, + "grad_norm": 0.2540188431739807, + "learning_rate": 4.370933333333334e-05, + "loss": 2.2718327331542967, + "step": 94400 + }, + { + "epoch": 12.6, + "grad_norm": 0.2647560238838196, + "learning_rate": 4.370266666666667e-05, + "loss": 2.2681085205078126, + "step": 94500 + }, + { + "epoch": 12.613333333333333, + "grad_norm": 0.2745302617549896, + "learning_rate": 4.3696e-05, + "loss": 2.2698655700683594, + "step": 94600 + }, + { + "epoch": 12.626666666666667, + "grad_norm": 0.26162075996398926, + "learning_rate": 4.3689333333333335e-05, + "loss": 2.2712269592285157, + "step": 94700 + }, + { + "epoch": 12.64, + "grad_norm": 0.2582067847251892, + "learning_rate": 4.368266666666667e-05, + "loss": 2.272103271484375, + "step": 94800 + }, + { + "epoch": 12.653333333333332, + "grad_norm": 0.27295711636543274, + "learning_rate": 4.3676e-05, + "loss": 2.272527618408203, + "step": 94900 + }, + { + "epoch": 12.666666666666666, + "grad_norm": 0.2765968441963196, + "learning_rate": 4.366933333333333e-05, + "loss": 2.271612243652344, + "step": 95000 + }, + { + "epoch": 12.68, + "grad_norm": 0.25656306743621826, + "learning_rate": 4.366266666666667e-05, + "loss": 2.271820068359375, + "step": 95100 + }, + { + "epoch": 12.693333333333333, + "grad_norm": 0.2678724527359009, + "learning_rate": 4.3656000000000004e-05, + "loss": 2.271623992919922, + "step": 95200 + }, + { + "epoch": 12.706666666666667, + "grad_norm": 0.26828429102897644, + "learning_rate": 4.3649333333333336e-05, + "loss": 2.272816467285156, + "step": 95300 + }, + { + "epoch": 12.72, + "grad_norm": 0.2544470429420471, + "learning_rate": 4.364266666666667e-05, + "loss": 2.2750363159179687, + "step": 95400 + }, + { + "epoch": 12.733333333333333, + "grad_norm": 0.2685322165489197, + "learning_rate": 4.363600000000001e-05, + "loss": 2.2729071044921874, + "step": 95500 + }, + { + "epoch": 12.746666666666666, + "grad_norm": 0.26069387793540955, + "learning_rate": 4.362933333333333e-05, + "loss": 2.2722439575195312, + "step": 95600 + }, + { + "epoch": 12.76, + "grad_norm": 0.2649424374103546, + "learning_rate": 4.3622666666666665e-05, + "loss": 2.272758026123047, + "step": 95700 + }, + { + "epoch": 12.773333333333333, + "grad_norm": 0.2521308660507202, + "learning_rate": 4.3616000000000004e-05, + "loss": 2.272996520996094, + "step": 95800 + }, + { + "epoch": 12.786666666666667, + "grad_norm": 0.25602442026138306, + "learning_rate": 4.3609333333333336e-05, + "loss": 2.2761857604980467, + "step": 95900 + }, + { + "epoch": 12.8, + "grad_norm": 0.267101913690567, + "learning_rate": 4.360266666666667e-05, + "loss": 2.2757493591308595, + "step": 96000 + }, + { + "epoch": 12.813333333333333, + "grad_norm": 0.26094216108322144, + "learning_rate": 4.3596e-05, + "loss": 2.2767680358886717, + "step": 96100 + }, + { + "epoch": 12.826666666666666, + "grad_norm": 0.3060274124145508, + "learning_rate": 4.358933333333334e-05, + "loss": 2.276941833496094, + "step": 96200 + }, + { + "epoch": 12.84, + "grad_norm": 0.26290687918663025, + "learning_rate": 4.3582666666666665e-05, + "loss": 2.275010528564453, + "step": 96300 + }, + { + "epoch": 12.853333333333333, + "grad_norm": 0.2535942792892456, + "learning_rate": 4.3576e-05, + "loss": 2.273764343261719, + "step": 96400 + }, + { + "epoch": 12.866666666666667, + "grad_norm": 0.27731791138648987, + "learning_rate": 4.3569333333333337e-05, + "loss": 2.2726361083984377, + "step": 96500 + }, + { + "epoch": 12.88, + "grad_norm": 0.2616978585720062, + "learning_rate": 4.356266666666667e-05, + "loss": 2.2775596618652343, + "step": 96600 + }, + { + "epoch": 12.893333333333333, + "grad_norm": 0.28346607089042664, + "learning_rate": 4.3556e-05, + "loss": 2.277263488769531, + "step": 96700 + }, + { + "epoch": 12.906666666666666, + "grad_norm": 0.26759618520736694, + "learning_rate": 4.354933333333333e-05, + "loss": 2.2788565063476565, + "step": 96800 + }, + { + "epoch": 12.92, + "grad_norm": 0.25372806191444397, + "learning_rate": 4.354266666666667e-05, + "loss": 2.278957977294922, + "step": 96900 + }, + { + "epoch": 12.933333333333334, + "grad_norm": 0.2680625319480896, + "learning_rate": 4.3536000000000005e-05, + "loss": 2.2768804931640627, + "step": 97000 + }, + { + "epoch": 12.946666666666667, + "grad_norm": 0.28444984555244446, + "learning_rate": 4.352933333333333e-05, + "loss": 2.2771568298339844, + "step": 97100 + }, + { + "epoch": 12.96, + "grad_norm": 0.26102322340011597, + "learning_rate": 4.352266666666667e-05, + "loss": 2.277088928222656, + "step": 97200 + }, + { + "epoch": 12.973333333333333, + "grad_norm": 0.25774040818214417, + "learning_rate": 4.3516e-05, + "loss": 2.2783038330078127, + "step": 97300 + }, + { + "epoch": 12.986666666666666, + "grad_norm": 0.27031639218330383, + "learning_rate": 4.3509333333333334e-05, + "loss": 2.276095275878906, + "step": 97400 + }, + { + "epoch": 13.0, + "grad_norm": 0.262939989566803, + "learning_rate": 4.3502666666666666e-05, + "loss": 2.2774124145507812, + "step": 97500 + }, + { + "epoch": 13.013333333333334, + "grad_norm": 0.29187247157096863, + "learning_rate": 4.3496066666666665e-05, + "loss": 2.2387960815429686, + "step": 97600 + }, + { + "epoch": 13.026666666666667, + "grad_norm": 0.2766711413860321, + "learning_rate": 4.3489400000000004e-05, + "loss": 2.2393284606933594, + "step": 97700 + }, + { + "epoch": 13.04, + "grad_norm": 0.26698678731918335, + "learning_rate": 4.3482733333333336e-05, + "loss": 2.2385823059082033, + "step": 97800 + }, + { + "epoch": 13.053333333333333, + "grad_norm": 0.28331395983695984, + "learning_rate": 4.347606666666667e-05, + "loss": 2.23583251953125, + "step": 97900 + }, + { + "epoch": 13.066666666666666, + "grad_norm": 0.27367907762527466, + "learning_rate": 4.346940000000001e-05, + "loss": 2.2407188415527344, + "step": 98000 + }, + { + "epoch": 13.08, + "grad_norm": 0.28484055399894714, + "learning_rate": 4.346273333333333e-05, + "loss": 2.244789886474609, + "step": 98100 + }, + { + "epoch": 13.093333333333334, + "grad_norm": 0.28485485911369324, + "learning_rate": 4.3456066666666665e-05, + "loss": 2.242432861328125, + "step": 98200 + }, + { + "epoch": 13.106666666666667, + "grad_norm": 0.2772075831890106, + "learning_rate": 4.3449400000000005e-05, + "loss": 2.242548370361328, + "step": 98300 + }, + { + "epoch": 13.12, + "grad_norm": 0.2794252336025238, + "learning_rate": 4.344273333333334e-05, + "loss": 2.241208953857422, + "step": 98400 + }, + { + "epoch": 13.133333333333333, + "grad_norm": 0.2768386900424957, + "learning_rate": 4.343606666666667e-05, + "loss": 2.2418304443359376, + "step": 98500 + }, + { + "epoch": 13.146666666666667, + "grad_norm": 0.29671546816825867, + "learning_rate": 4.34294e-05, + "loss": 2.24133544921875, + "step": 98600 + }, + { + "epoch": 13.16, + "grad_norm": 0.28922173380851746, + "learning_rate": 4.342273333333334e-05, + "loss": 2.2457321166992186, + "step": 98700 + }, + { + "epoch": 13.173333333333334, + "grad_norm": 0.2911158800125122, + "learning_rate": 4.3416066666666666e-05, + "loss": 2.243005676269531, + "step": 98800 + }, + { + "epoch": 13.186666666666667, + "grad_norm": 0.2844465374946594, + "learning_rate": 4.34094e-05, + "loss": 2.2428907775878906, + "step": 98900 + }, + { + "epoch": 13.2, + "grad_norm": 0.29359185695648193, + "learning_rate": 4.340273333333334e-05, + "loss": 2.2461944580078126, + "step": 99000 + }, + { + "epoch": 13.213333333333333, + "grad_norm": 0.2992889881134033, + "learning_rate": 4.339606666666667e-05, + "loss": 2.2442695617675783, + "step": 99100 + }, + { + "epoch": 13.226666666666667, + "grad_norm": 0.28376510739326477, + "learning_rate": 4.33894e-05, + "loss": 2.2490634155273437, + "step": 99200 + }, + { + "epoch": 13.24, + "grad_norm": 0.26906511187553406, + "learning_rate": 4.3382733333333334e-05, + "loss": 2.248119354248047, + "step": 99300 + }, + { + "epoch": 13.253333333333334, + "grad_norm": 0.2935919165611267, + "learning_rate": 4.337606666666667e-05, + "loss": 2.244882354736328, + "step": 99400 + }, + { + "epoch": 13.266666666666667, + "grad_norm": 0.27943170070648193, + "learning_rate": 4.3369400000000005e-05, + "loss": 2.247407989501953, + "step": 99500 + }, + { + "epoch": 13.28, + "grad_norm": 0.27867066860198975, + "learning_rate": 4.336273333333333e-05, + "loss": 2.247802429199219, + "step": 99600 + }, + { + "epoch": 13.293333333333333, + "grad_norm": 0.29325079917907715, + "learning_rate": 4.335606666666667e-05, + "loss": 2.248299865722656, + "step": 99700 + }, + { + "epoch": 13.306666666666667, + "grad_norm": 0.276795893907547, + "learning_rate": 4.33494e-05, + "loss": 2.2507450866699217, + "step": 99800 + }, + { + "epoch": 13.32, + "grad_norm": 0.2778800427913666, + "learning_rate": 4.3342733333333334e-05, + "loss": 2.249114990234375, + "step": 99900 + }, + { + "epoch": 13.333333333333334, + "grad_norm": 0.2965216636657715, + "learning_rate": 4.3336066666666667e-05, + "loss": 2.250552520751953, + "step": 100000 + }, + { + "epoch": 13.346666666666668, + "grad_norm": 0.2709920108318329, + "learning_rate": 4.3329400000000006e-05, + "loss": 2.2509161376953126, + "step": 100100 + }, + { + "epoch": 13.36, + "grad_norm": 0.2882387638092041, + "learning_rate": 4.332273333333334e-05, + "loss": 2.2525457763671874, + "step": 100200 + }, + { + "epoch": 13.373333333333333, + "grad_norm": 0.2988874316215515, + "learning_rate": 4.331606666666667e-05, + "loss": 2.2508233642578124, + "step": 100300 + }, + { + "epoch": 13.386666666666667, + "grad_norm": 0.274324506521225, + "learning_rate": 4.33094e-05, + "loss": 2.2498133850097655, + "step": 100400 + }, + { + "epoch": 13.4, + "grad_norm": 0.29012390971183777, + "learning_rate": 4.3302733333333335e-05, + "loss": 2.252369079589844, + "step": 100500 + }, + { + "epoch": 13.413333333333334, + "grad_norm": 0.2632313668727875, + "learning_rate": 4.329606666666667e-05, + "loss": 2.2533638000488283, + "step": 100600 + }, + { + "epoch": 13.426666666666666, + "grad_norm": 0.26571324467658997, + "learning_rate": 4.32894e-05, + "loss": 2.253193054199219, + "step": 100700 + }, + { + "epoch": 13.44, + "grad_norm": 0.289485901594162, + "learning_rate": 4.328273333333334e-05, + "loss": 2.251653747558594, + "step": 100800 + }, + { + "epoch": 13.453333333333333, + "grad_norm": 0.2886415421962738, + "learning_rate": 4.327606666666667e-05, + "loss": 2.251334228515625, + "step": 100900 + }, + { + "epoch": 13.466666666666667, + "grad_norm": 0.2879510819911957, + "learning_rate": 4.32694e-05, + "loss": 2.2535078430175783, + "step": 101000 + }, + { + "epoch": 13.48, + "grad_norm": 0.2864849269390106, + "learning_rate": 4.3262733333333335e-05, + "loss": 2.2524153137207032, + "step": 101100 + }, + { + "epoch": 13.493333333333334, + "grad_norm": 0.27846381068229675, + "learning_rate": 4.325606666666667e-05, + "loss": 2.255931549072266, + "step": 101200 + }, + { + "epoch": 13.506666666666666, + "grad_norm": 0.293816477060318, + "learning_rate": 4.32494e-05, + "loss": 2.256122894287109, + "step": 101300 + }, + { + "epoch": 13.52, + "grad_norm": 0.2949255704879761, + "learning_rate": 4.324273333333333e-05, + "loss": 2.2581175231933592, + "step": 101400 + }, + { + "epoch": 13.533333333333333, + "grad_norm": 0.2826773226261139, + "learning_rate": 4.323606666666667e-05, + "loss": 2.255837097167969, + "step": 101500 + }, + { + "epoch": 13.546666666666667, + "grad_norm": 0.2743004262447357, + "learning_rate": 4.322953333333333e-05, + "loss": 2.2541908264160155, + "step": 101600 + }, + { + "epoch": 13.56, + "grad_norm": 0.2713441550731659, + "learning_rate": 4.322286666666667e-05, + "loss": 2.258142547607422, + "step": 101700 + }, + { + "epoch": 13.573333333333334, + "grad_norm": 0.283563494682312, + "learning_rate": 4.32162e-05, + "loss": 2.2553956604003904, + "step": 101800 + }, + { + "epoch": 13.586666666666666, + "grad_norm": 0.28330928087234497, + "learning_rate": 4.3209533333333334e-05, + "loss": 2.257396697998047, + "step": 101900 + }, + { + "epoch": 13.6, + "grad_norm": 0.2793908715248108, + "learning_rate": 4.3202866666666666e-05, + "loss": 2.256497344970703, + "step": 102000 + }, + { + "epoch": 13.613333333333333, + "grad_norm": 0.2900395393371582, + "learning_rate": 4.3196200000000005e-05, + "loss": 2.255678405761719, + "step": 102100 + }, + { + "epoch": 13.626666666666667, + "grad_norm": 0.27794957160949707, + "learning_rate": 4.318953333333334e-05, + "loss": 2.2580166625976563, + "step": 102200 + }, + { + "epoch": 13.64, + "grad_norm": 0.2686266303062439, + "learning_rate": 4.318286666666667e-05, + "loss": 2.260865478515625, + "step": 102300 + }, + { + "epoch": 13.653333333333332, + "grad_norm": 0.2785786986351013, + "learning_rate": 4.31762e-05, + "loss": 2.260006561279297, + "step": 102400 + }, + { + "epoch": 13.666666666666666, + "grad_norm": 0.28079360723495483, + "learning_rate": 4.3169533333333334e-05, + "loss": 2.2595237731933593, + "step": 102500 + }, + { + "epoch": 13.68, + "grad_norm": 0.3011217415332794, + "learning_rate": 4.3162866666666666e-05, + "loss": 2.2576690673828126, + "step": 102600 + }, + { + "epoch": 13.693333333333333, + "grad_norm": 0.29701074957847595, + "learning_rate": 4.3156200000000005e-05, + "loss": 2.2590093994140625, + "step": 102700 + }, + { + "epoch": 13.706666666666667, + "grad_norm": 0.284489244222641, + "learning_rate": 4.314953333333334e-05, + "loss": 2.2569615173339845, + "step": 102800 + }, + { + "epoch": 13.72, + "grad_norm": 0.29608434438705444, + "learning_rate": 4.314286666666667e-05, + "loss": 2.26008544921875, + "step": 102900 + }, + { + "epoch": 13.733333333333333, + "grad_norm": 0.2743198275566101, + "learning_rate": 4.31362e-05, + "loss": 2.2595872497558593, + "step": 103000 + }, + { + "epoch": 13.746666666666666, + "grad_norm": 0.2759169340133667, + "learning_rate": 4.3129533333333334e-05, + "loss": 2.260936737060547, + "step": 103100 + }, + { + "epoch": 13.76, + "grad_norm": 0.2984674274921417, + "learning_rate": 4.312286666666667e-05, + "loss": 2.2615948486328126, + "step": 103200 + }, + { + "epoch": 13.773333333333333, + "grad_norm": 0.27188169956207275, + "learning_rate": 4.31162e-05, + "loss": 2.2584141540527343, + "step": 103300 + }, + { + "epoch": 13.786666666666667, + "grad_norm": 0.2684420943260193, + "learning_rate": 4.310953333333334e-05, + "loss": 2.26137451171875, + "step": 103400 + }, + { + "epoch": 13.8, + "grad_norm": 0.2790769040584564, + "learning_rate": 4.310286666666667e-05, + "loss": 2.260129089355469, + "step": 103500 + }, + { + "epoch": 13.813333333333333, + "grad_norm": 0.28276488184928894, + "learning_rate": 4.30962e-05, + "loss": 2.261208038330078, + "step": 103600 + }, + { + "epoch": 13.826666666666666, + "grad_norm": 0.27551108598709106, + "learning_rate": 4.30896e-05, + "loss": 2.2652987670898437, + "step": 103700 + }, + { + "epoch": 13.84, + "grad_norm": 0.27749794721603394, + "learning_rate": 4.3082933333333334e-05, + "loss": 2.2623104858398437, + "step": 103800 + }, + { + "epoch": 13.853333333333333, + "grad_norm": 0.29130128026008606, + "learning_rate": 4.307626666666667e-05, + "loss": 2.2647268676757815, + "step": 103900 + }, + { + "epoch": 13.866666666666667, + "grad_norm": 0.27854955196380615, + "learning_rate": 4.3069600000000005e-05, + "loss": 2.2648512268066407, + "step": 104000 + }, + { + "epoch": 13.88, + "grad_norm": 0.2763110399246216, + "learning_rate": 4.306293333333333e-05, + "loss": 2.262389678955078, + "step": 104100 + }, + { + "epoch": 13.893333333333333, + "grad_norm": 0.2861855626106262, + "learning_rate": 4.305626666666667e-05, + "loss": 2.260863952636719, + "step": 104200 + }, + { + "epoch": 13.906666666666666, + "grad_norm": 0.2763212323188782, + "learning_rate": 4.30496e-05, + "loss": 2.2617811584472656, + "step": 104300 + }, + { + "epoch": 13.92, + "grad_norm": 0.27700719237327576, + "learning_rate": 4.3042933333333334e-05, + "loss": 2.2629629516601564, + "step": 104400 + }, + { + "epoch": 13.933333333333334, + "grad_norm": 0.289580374956131, + "learning_rate": 4.3036266666666667e-05, + "loss": 2.2654957580566406, + "step": 104500 + }, + { + "epoch": 13.946666666666667, + "grad_norm": 0.288922518491745, + "learning_rate": 4.3029600000000006e-05, + "loss": 2.2641279602050783, + "step": 104600 + }, + { + "epoch": 13.96, + "grad_norm": 0.2980629503726959, + "learning_rate": 4.302293333333334e-05, + "loss": 2.2678652954101564, + "step": 104700 + }, + { + "epoch": 13.973333333333333, + "grad_norm": 0.279041051864624, + "learning_rate": 4.301626666666667e-05, + "loss": 2.264940185546875, + "step": 104800 + }, + { + "epoch": 13.986666666666666, + "grad_norm": 0.2885514497756958, + "learning_rate": 4.30096e-05, + "loss": 2.264721221923828, + "step": 104900 + }, + { + "epoch": 14.0, + "grad_norm": 0.2856515347957611, + "learning_rate": 4.3002933333333335e-05, + "loss": 2.2638644409179687, + "step": 105000 + }, + { + "epoch": 14.013333333333334, + "grad_norm": 0.2933811843395233, + "learning_rate": 4.299626666666667e-05, + "loss": 2.223587951660156, + "step": 105100 + }, + { + "epoch": 14.026666666666667, + "grad_norm": 0.3170996308326721, + "learning_rate": 4.29896e-05, + "loss": 2.2215760803222655, + "step": 105200 + }, + { + "epoch": 14.04, + "grad_norm": 0.32004064321517944, + "learning_rate": 4.298293333333334e-05, + "loss": 2.2238189697265627, + "step": 105300 + }, + { + "epoch": 14.053333333333333, + "grad_norm": 0.29204490780830383, + "learning_rate": 4.297626666666667e-05, + "loss": 2.2225723266601562, + "step": 105400 + }, + { + "epoch": 14.066666666666666, + "grad_norm": 0.3062141239643097, + "learning_rate": 4.29696e-05, + "loss": 2.223246765136719, + "step": 105500 + }, + { + "epoch": 14.08, + "grad_norm": 0.30984053015708923, + "learning_rate": 4.2962933333333335e-05, + "loss": 2.2242507934570312, + "step": 105600 + }, + { + "epoch": 14.093333333333334, + "grad_norm": 0.322451651096344, + "learning_rate": 4.295626666666667e-05, + "loss": 2.2280723571777346, + "step": 105700 + }, + { + "epoch": 14.106666666666667, + "grad_norm": 0.3022569417953491, + "learning_rate": 4.29496e-05, + "loss": 2.226327209472656, + "step": 105800 + }, + { + "epoch": 14.12, + "grad_norm": 0.30784836411476135, + "learning_rate": 4.294293333333333e-05, + "loss": 2.2258816528320313, + "step": 105900 + }, + { + "epoch": 14.133333333333333, + "grad_norm": 0.30157235264778137, + "learning_rate": 4.293626666666667e-05, + "loss": 2.2270236206054688, + "step": 106000 + }, + { + "epoch": 14.146666666666667, + "grad_norm": 0.30551230907440186, + "learning_rate": 4.29296e-05, + "loss": 2.231392822265625, + "step": 106100 + }, + { + "epoch": 14.16, + "grad_norm": 0.2978629171848297, + "learning_rate": 4.2922933333333335e-05, + "loss": 2.228222198486328, + "step": 106200 + }, + { + "epoch": 14.173333333333334, + "grad_norm": 0.3043777644634247, + "learning_rate": 4.2916333333333334e-05, + "loss": 2.2319209289550783, + "step": 106300 + }, + { + "epoch": 14.186666666666667, + "grad_norm": 0.29846736788749695, + "learning_rate": 4.2909666666666674e-05, + "loss": 2.228956451416016, + "step": 106400 + }, + { + "epoch": 14.2, + "grad_norm": 0.30101996660232544, + "learning_rate": 4.2903000000000006e-05, + "loss": 2.233109588623047, + "step": 106500 + }, + { + "epoch": 14.213333333333333, + "grad_norm": 0.2905249297618866, + "learning_rate": 4.289633333333333e-05, + "loss": 2.23214111328125, + "step": 106600 + }, + { + "epoch": 14.226666666666667, + "grad_norm": 0.31870153546333313, + "learning_rate": 4.2889666666666664e-05, + "loss": 2.23111572265625, + "step": 106700 + }, + { + "epoch": 14.24, + "grad_norm": 0.31344854831695557, + "learning_rate": 4.2883e-05, + "loss": 2.2312010192871092, + "step": 106800 + }, + { + "epoch": 14.253333333333334, + "grad_norm": 0.3159984350204468, + "learning_rate": 4.2876333333333335e-05, + "loss": 2.234411315917969, + "step": 106900 + }, + { + "epoch": 14.266666666666667, + "grad_norm": 0.3049383759498596, + "learning_rate": 4.286966666666667e-05, + "loss": 2.232013854980469, + "step": 107000 + }, + { + "epoch": 14.28, + "grad_norm": 0.2840105891227722, + "learning_rate": 4.2863000000000006e-05, + "loss": 2.2319927978515626, + "step": 107100 + }, + { + "epoch": 14.293333333333333, + "grad_norm": 0.3090221881866455, + "learning_rate": 4.285633333333334e-05, + "loss": 2.235484771728516, + "step": 107200 + }, + { + "epoch": 14.306666666666667, + "grad_norm": 0.2912992835044861, + "learning_rate": 4.284966666666667e-05, + "loss": 2.233905944824219, + "step": 107300 + }, + { + "epoch": 14.32, + "grad_norm": 0.2928401231765747, + "learning_rate": 4.2843e-05, + "loss": 2.2329034423828125, + "step": 107400 + }, + { + "epoch": 14.333333333333334, + "grad_norm": 0.2940289080142975, + "learning_rate": 4.2836333333333335e-05, + "loss": 2.23254150390625, + "step": 107500 + }, + { + "epoch": 14.346666666666668, + "grad_norm": 0.3051759898662567, + "learning_rate": 4.282966666666667e-05, + "loss": 2.235914764404297, + "step": 107600 + }, + { + "epoch": 14.36, + "grad_norm": 0.29925987124443054, + "learning_rate": 4.2823e-05, + "loss": 2.236822052001953, + "step": 107700 + }, + { + "epoch": 14.373333333333333, + "grad_norm": 0.30133113265037537, + "learning_rate": 4.281633333333334e-05, + "loss": 2.237333068847656, + "step": 107800 + }, + { + "epoch": 14.386666666666667, + "grad_norm": 0.2979786694049835, + "learning_rate": 4.280966666666667e-05, + "loss": 2.2337214660644533, + "step": 107900 + }, + { + "epoch": 14.4, + "grad_norm": 0.30509302020072937, + "learning_rate": 4.2803e-05, + "loss": 2.234857177734375, + "step": 108000 + }, + { + "epoch": 14.413333333333334, + "grad_norm": 0.31245774030685425, + "learning_rate": 4.2796333333333336e-05, + "loss": 2.2369602966308593, + "step": 108100 + }, + { + "epoch": 14.426666666666666, + "grad_norm": 0.28808292746543884, + "learning_rate": 4.278966666666667e-05, + "loss": 2.2391943359375, + "step": 108200 + }, + { + "epoch": 14.44, + "grad_norm": 0.3327585756778717, + "learning_rate": 4.2783066666666674e-05, + "loss": 2.2387188720703124, + "step": 108300 + }, + { + "epoch": 14.453333333333333, + "grad_norm": 0.3101474940776825, + "learning_rate": 4.27764e-05, + "loss": 2.2376824951171876, + "step": 108400 + }, + { + "epoch": 14.466666666666667, + "grad_norm": 0.2869791090488434, + "learning_rate": 4.276973333333333e-05, + "loss": 2.237794189453125, + "step": 108500 + }, + { + "epoch": 14.48, + "grad_norm": 0.3071404695510864, + "learning_rate": 4.276306666666667e-05, + "loss": 2.239633331298828, + "step": 108600 + }, + { + "epoch": 14.493333333333334, + "grad_norm": 0.2966044843196869, + "learning_rate": 4.27564e-05, + "loss": 2.2403135681152344, + "step": 108700 + }, + { + "epoch": 14.506666666666666, + "grad_norm": 0.2996501624584198, + "learning_rate": 4.2749733333333335e-05, + "loss": 2.240699920654297, + "step": 108800 + }, + { + "epoch": 14.52, + "grad_norm": 0.3051213026046753, + "learning_rate": 4.274306666666667e-05, + "loss": 2.241038360595703, + "step": 108900 + }, + { + "epoch": 14.533333333333333, + "grad_norm": 0.3177984952926636, + "learning_rate": 4.2736400000000006e-05, + "loss": 2.241685485839844, + "step": 109000 + }, + { + "epoch": 14.546666666666667, + "grad_norm": 0.31197378039360046, + "learning_rate": 4.272973333333333e-05, + "loss": 2.2384878540039064, + "step": 109100 + }, + { + "epoch": 14.56, + "grad_norm": 0.3031216263771057, + "learning_rate": 4.2723066666666664e-05, + "loss": 2.240026397705078, + "step": 109200 + }, + { + "epoch": 14.573333333333334, + "grad_norm": 0.2918401062488556, + "learning_rate": 4.27164e-05, + "loss": 2.2429275512695312, + "step": 109300 + }, + { + "epoch": 14.586666666666666, + "grad_norm": 0.30749937891960144, + "learning_rate": 4.2709733333333335e-05, + "loss": 2.2420500183105467, + "step": 109400 + }, + { + "epoch": 14.6, + "grad_norm": 0.30055928230285645, + "learning_rate": 4.270306666666667e-05, + "loss": 2.2444825744628907, + "step": 109500 + }, + { + "epoch": 14.613333333333333, + "grad_norm": 0.3009972870349884, + "learning_rate": 4.26964e-05, + "loss": 2.2414918518066407, + "step": 109600 + }, + { + "epoch": 14.626666666666667, + "grad_norm": 0.29409679770469666, + "learning_rate": 4.268973333333334e-05, + "loss": 2.243094940185547, + "step": 109700 + }, + { + "epoch": 14.64, + "grad_norm": 0.3000005781650543, + "learning_rate": 4.268306666666667e-05, + "loss": 2.243612060546875, + "step": 109800 + }, + { + "epoch": 14.653333333333332, + "grad_norm": 0.31389036774635315, + "learning_rate": 4.26764e-05, + "loss": 2.247608337402344, + "step": 109900 + }, + { + "epoch": 14.666666666666666, + "grad_norm": 0.30435290932655334, + "learning_rate": 4.2669733333333336e-05, + "loss": 2.2452850341796875, + "step": 110000 + }, + { + "epoch": 14.68, + "grad_norm": 0.31581467390060425, + "learning_rate": 4.266306666666667e-05, + "loss": 2.2423834228515624, + "step": 110100 + }, + { + "epoch": 14.693333333333333, + "grad_norm": 0.30677202343940735, + "learning_rate": 4.26564e-05, + "loss": 2.2448631286621095, + "step": 110200 + }, + { + "epoch": 14.706666666666667, + "grad_norm": 0.2914011776447296, + "learning_rate": 4.264973333333333e-05, + "loss": 2.2458355712890623, + "step": 110300 + }, + { + "epoch": 14.72, + "grad_norm": 0.30041709542274475, + "learning_rate": 4.264313333333333e-05, + "loss": 2.2454510498046876, + "step": 110400 + }, + { + "epoch": 14.733333333333333, + "grad_norm": 0.29341447353363037, + "learning_rate": 4.263646666666667e-05, + "loss": 2.2464495849609376, + "step": 110500 + }, + { + "epoch": 14.746666666666666, + "grad_norm": 0.2851749658584595, + "learning_rate": 4.26298e-05, + "loss": 2.2466586303710936, + "step": 110600 + }, + { + "epoch": 14.76, + "grad_norm": 0.297852486371994, + "learning_rate": 4.2623133333333335e-05, + "loss": 2.2463618469238282, + "step": 110700 + }, + { + "epoch": 14.773333333333333, + "grad_norm": 0.2981916666030884, + "learning_rate": 4.2616466666666674e-05, + "loss": 2.2474107360839843, + "step": 110800 + }, + { + "epoch": 14.786666666666667, + "grad_norm": 0.29726073145866394, + "learning_rate": 4.26098e-05, + "loss": 2.2470823669433595, + "step": 110900 + }, + { + "epoch": 14.8, + "grad_norm": 0.29146844148635864, + "learning_rate": 4.260313333333333e-05, + "loss": 2.248656005859375, + "step": 111000 + }, + { + "epoch": 14.813333333333333, + "grad_norm": 0.30146679282188416, + "learning_rate": 4.259646666666667e-05, + "loss": 2.2492645263671873, + "step": 111100 + }, + { + "epoch": 14.826666666666666, + "grad_norm": 0.30518659949302673, + "learning_rate": 4.2589800000000003e-05, + "loss": 2.2455149841308595, + "step": 111200 + }, + { + "epoch": 14.84, + "grad_norm": 0.2941482663154602, + "learning_rate": 4.2583133333333336e-05, + "loss": 2.247636413574219, + "step": 111300 + }, + { + "epoch": 14.853333333333333, + "grad_norm": 0.3071843981742859, + "learning_rate": 4.257646666666667e-05, + "loss": 2.249114227294922, + "step": 111400 + }, + { + "epoch": 14.866666666666667, + "grad_norm": 0.2867000102996826, + "learning_rate": 4.256980000000001e-05, + "loss": 2.244889831542969, + "step": 111500 + }, + { + "epoch": 14.88, + "grad_norm": 0.29321691393852234, + "learning_rate": 4.256313333333333e-05, + "loss": 2.2497218322753905, + "step": 111600 + }, + { + "epoch": 14.893333333333333, + "grad_norm": 0.28539395332336426, + "learning_rate": 4.2556466666666665e-05, + "loss": 2.2499490356445313, + "step": 111700 + }, + { + "epoch": 14.906666666666666, + "grad_norm": 0.2966148257255554, + "learning_rate": 4.2549800000000004e-05, + "loss": 2.251126708984375, + "step": 111800 + }, + { + "epoch": 14.92, + "grad_norm": 0.30318519473075867, + "learning_rate": 4.2543133333333336e-05, + "loss": 2.251923370361328, + "step": 111900 + }, + { + "epoch": 14.933333333333334, + "grad_norm": 0.30401572585105896, + "learning_rate": 4.253646666666667e-05, + "loss": 2.247659912109375, + "step": 112000 + }, + { + "epoch": 14.946666666666667, + "grad_norm": 0.42713233828544617, + "learning_rate": 4.25298e-05, + "loss": 2.2480320739746094, + "step": 112100 + }, + { + "epoch": 14.96, + "grad_norm": 0.3023832440376282, + "learning_rate": 4.252313333333334e-05, + "loss": 2.252263946533203, + "step": 112200 + }, + { + "epoch": 14.973333333333333, + "grad_norm": 0.31739455461502075, + "learning_rate": 4.251646666666667e-05, + "loss": 2.250135040283203, + "step": 112300 + }, + { + "epoch": 14.986666666666666, + "grad_norm": 0.2998296618461609, + "learning_rate": 4.25098e-05, + "loss": 2.250568542480469, + "step": 112400 + }, + { + "epoch": 15.0, + "grad_norm": 0.3116128146648407, + "learning_rate": 4.25032e-05, + "loss": 2.254090118408203, + "step": 112500 + }, + { + "epoch": 15.013333333333334, + "grad_norm": 0.324983686208725, + "learning_rate": 4.2496533333333336e-05, + "loss": 2.2063966369628907, + "step": 112600 + }, + { + "epoch": 15.026666666666667, + "grad_norm": 0.32630521059036255, + "learning_rate": 4.248986666666667e-05, + "loss": 2.204698486328125, + "step": 112700 + }, + { + "epoch": 15.04, + "grad_norm": 0.33141613006591797, + "learning_rate": 4.24832e-05, + "loss": 2.2065577697753906, + "step": 112800 + }, + { + "epoch": 15.053333333333333, + "grad_norm": 0.29963183403015137, + "learning_rate": 4.247653333333333e-05, + "loss": 2.208046569824219, + "step": 112900 + }, + { + "epoch": 15.066666666666666, + "grad_norm": 0.30262288451194763, + "learning_rate": 4.246986666666667e-05, + "loss": 2.208232574462891, + "step": 113000 + }, + { + "epoch": 15.08, + "grad_norm": 0.31407952308654785, + "learning_rate": 4.2463200000000004e-05, + "loss": 2.2060285949707032, + "step": 113100 + }, + { + "epoch": 15.093333333333334, + "grad_norm": 0.3279408812522888, + "learning_rate": 4.2456533333333336e-05, + "loss": 2.2077986145019532, + "step": 113200 + }, + { + "epoch": 15.106666666666667, + "grad_norm": 0.3157520592212677, + "learning_rate": 4.244986666666667e-05, + "loss": 2.2095164489746093, + "step": 113300 + }, + { + "epoch": 15.12, + "grad_norm": 0.31880176067352295, + "learning_rate": 4.24432e-05, + "loss": 2.210868377685547, + "step": 113400 + }, + { + "epoch": 15.133333333333333, + "grad_norm": 0.31537145376205444, + "learning_rate": 4.243653333333333e-05, + "loss": 2.208413391113281, + "step": 113500 + }, + { + "epoch": 15.146666666666667, + "grad_norm": 0.34451282024383545, + "learning_rate": 4.2429866666666665e-05, + "loss": 2.216689453125, + "step": 113600 + }, + { + "epoch": 15.16, + "grad_norm": 0.343150794506073, + "learning_rate": 4.2423200000000004e-05, + "loss": 2.2148944091796876, + "step": 113700 + }, + { + "epoch": 15.173333333333334, + "grad_norm": 0.33272266387939453, + "learning_rate": 4.2416533333333336e-05, + "loss": 2.2134307861328124, + "step": 113800 + }, + { + "epoch": 15.186666666666667, + "grad_norm": 0.3378112018108368, + "learning_rate": 4.240986666666667e-05, + "loss": 2.2136904907226564, + "step": 113900 + }, + { + "epoch": 15.2, + "grad_norm": 0.31077101826667786, + "learning_rate": 4.24032e-05, + "loss": 2.2134745788574217, + "step": 114000 + }, + { + "epoch": 15.213333333333333, + "grad_norm": 0.32572445273399353, + "learning_rate": 4.239653333333334e-05, + "loss": 2.217989654541016, + "step": 114100 + }, + { + "epoch": 15.226666666666667, + "grad_norm": 0.3158329725265503, + "learning_rate": 4.2389866666666665e-05, + "loss": 2.213584442138672, + "step": 114200 + }, + { + "epoch": 15.24, + "grad_norm": 0.3473946750164032, + "learning_rate": 4.23832e-05, + "loss": 2.212930450439453, + "step": 114300 + }, + { + "epoch": 15.253333333333334, + "grad_norm": 0.32019126415252686, + "learning_rate": 4.237653333333334e-05, + "loss": 2.2173892211914064, + "step": 114400 + }, + { + "epoch": 15.266666666666667, + "grad_norm": 0.31340309977531433, + "learning_rate": 4.236986666666667e-05, + "loss": 2.2174838256835936, + "step": 114500 + }, + { + "epoch": 15.28, + "grad_norm": 0.33847081661224365, + "learning_rate": 4.236326666666667e-05, + "loss": 2.21783203125, + "step": 114600 + }, + { + "epoch": 15.293333333333333, + "grad_norm": 0.32491597533226013, + "learning_rate": 4.23566e-05, + "loss": 2.2157107543945314, + "step": 114700 + }, + { + "epoch": 15.306666666666667, + "grad_norm": 0.3161472976207733, + "learning_rate": 4.234993333333333e-05, + "loss": 2.2165769958496093, + "step": 114800 + }, + { + "epoch": 15.32, + "grad_norm": 0.35170355439186096, + "learning_rate": 4.234326666666667e-05, + "loss": 2.217754211425781, + "step": 114900 + }, + { + "epoch": 15.333333333333334, + "grad_norm": 0.3464552164077759, + "learning_rate": 4.2336600000000004e-05, + "loss": 2.219124450683594, + "step": 115000 + }, + { + "epoch": 15.346666666666668, + "grad_norm": 0.2998979389667511, + "learning_rate": 4.2329933333333336e-05, + "loss": 2.218946075439453, + "step": 115100 + }, + { + "epoch": 15.36, + "grad_norm": 0.33624839782714844, + "learning_rate": 4.232326666666667e-05, + "loss": 2.2174595642089843, + "step": 115200 + }, + { + "epoch": 15.373333333333333, + "grad_norm": 0.322299987077713, + "learning_rate": 4.23166e-05, + "loss": 2.2204608154296874, + "step": 115300 + }, + { + "epoch": 15.386666666666667, + "grad_norm": 0.3346404731273651, + "learning_rate": 4.230993333333333e-05, + "loss": 2.220567169189453, + "step": 115400 + }, + { + "epoch": 15.4, + "grad_norm": 0.3098982870578766, + "learning_rate": 4.230326666666667e-05, + "loss": 2.2207266235351564, + "step": 115500 + }, + { + "epoch": 15.413333333333334, + "grad_norm": 0.31962502002716064, + "learning_rate": 4.2296600000000004e-05, + "loss": 2.2188589477539065, + "step": 115600 + }, + { + "epoch": 15.426666666666666, + "grad_norm": 0.3353968560695648, + "learning_rate": 4.2289933333333337e-05, + "loss": 2.2199302673339845, + "step": 115700 + }, + { + "epoch": 15.44, + "grad_norm": 0.30936282873153687, + "learning_rate": 4.228326666666667e-05, + "loss": 2.2257254028320315, + "step": 115800 + }, + { + "epoch": 15.453333333333333, + "grad_norm": 0.30855420231819153, + "learning_rate": 4.22766e-05, + "loss": 2.2245237731933596, + "step": 115900 + }, + { + "epoch": 15.466666666666667, + "grad_norm": 0.3352759778499603, + "learning_rate": 4.226993333333333e-05, + "loss": 2.2239312744140625, + "step": 116000 + }, + { + "epoch": 15.48, + "grad_norm": 0.34826841950416565, + "learning_rate": 4.2263266666666666e-05, + "loss": 2.222242889404297, + "step": 116100 + }, + { + "epoch": 15.493333333333334, + "grad_norm": 0.30927276611328125, + "learning_rate": 4.2256600000000005e-05, + "loss": 2.22566650390625, + "step": 116200 + }, + { + "epoch": 15.506666666666666, + "grad_norm": 0.3213530480861664, + "learning_rate": 4.224993333333334e-05, + "loss": 2.2234091186523437, + "step": 116300 + }, + { + "epoch": 15.52, + "grad_norm": 0.3208419382572174, + "learning_rate": 4.224326666666667e-05, + "loss": 2.221222686767578, + "step": 116400 + }, + { + "epoch": 15.533333333333333, + "grad_norm": 0.3189323842525482, + "learning_rate": 4.22366e-05, + "loss": 2.22309814453125, + "step": 116500 + }, + { + "epoch": 15.546666666666667, + "grad_norm": 0.32015132904052734, + "learning_rate": 4.222993333333334e-05, + "loss": 2.224478302001953, + "step": 116600 + }, + { + "epoch": 15.56, + "grad_norm": 0.3235848844051361, + "learning_rate": 4.222333333333334e-05, + "loss": 2.22633544921875, + "step": 116700 + }, + { + "epoch": 15.573333333333334, + "grad_norm": 0.31360262632369995, + "learning_rate": 4.221666666666667e-05, + "loss": 2.223683624267578, + "step": 116800 + }, + { + "epoch": 15.586666666666666, + "grad_norm": 0.3163805603981018, + "learning_rate": 4.221e-05, + "loss": 2.226057891845703, + "step": 116900 + }, + { + "epoch": 15.6, + "grad_norm": 0.3102477192878723, + "learning_rate": 4.2203333333333336e-05, + "loss": 2.228474578857422, + "step": 117000 + }, + { + "epoch": 15.613333333333333, + "grad_norm": 0.30548936128616333, + "learning_rate": 4.219666666666667e-05, + "loss": 2.2281097412109374, + "step": 117100 + }, + { + "epoch": 15.626666666666667, + "grad_norm": 0.33137276768684387, + "learning_rate": 4.219e-05, + "loss": 2.227537841796875, + "step": 117200 + }, + { + "epoch": 15.64, + "grad_norm": 0.32980573177337646, + "learning_rate": 4.218333333333333e-05, + "loss": 2.2250877380371095, + "step": 117300 + }, + { + "epoch": 15.653333333333332, + "grad_norm": 0.34230107069015503, + "learning_rate": 4.217666666666667e-05, + "loss": 2.2286297607421877, + "step": 117400 + }, + { + "epoch": 15.666666666666666, + "grad_norm": 0.31690576672554016, + "learning_rate": 4.2170000000000005e-05, + "loss": 2.228667907714844, + "step": 117500 + }, + { + "epoch": 15.68, + "grad_norm": 0.32873931527137756, + "learning_rate": 4.216333333333334e-05, + "loss": 2.229040222167969, + "step": 117600 + }, + { + "epoch": 15.693333333333333, + "grad_norm": 0.31361329555511475, + "learning_rate": 4.215666666666667e-05, + "loss": 2.229720153808594, + "step": 117700 + }, + { + "epoch": 15.706666666666667, + "grad_norm": 0.30917590856552124, + "learning_rate": 4.215e-05, + "loss": 2.2290550231933595, + "step": 117800 + }, + { + "epoch": 15.72, + "grad_norm": 0.31262990832328796, + "learning_rate": 4.2143333333333334e-05, + "loss": 2.229103698730469, + "step": 117900 + }, + { + "epoch": 15.733333333333333, + "grad_norm": 0.32043468952178955, + "learning_rate": 4.2136666666666666e-05, + "loss": 2.2294845581054688, + "step": 118000 + }, + { + "epoch": 15.746666666666666, + "grad_norm": 0.31594914197921753, + "learning_rate": 4.2130000000000005e-05, + "loss": 2.2269740295410156, + "step": 118100 + }, + { + "epoch": 15.76, + "grad_norm": 0.3129127025604248, + "learning_rate": 4.212333333333334e-05, + "loss": 2.232552947998047, + "step": 118200 + }, + { + "epoch": 15.773333333333333, + "grad_norm": 0.3038434088230133, + "learning_rate": 4.211666666666667e-05, + "loss": 2.232527770996094, + "step": 118300 + }, + { + "epoch": 15.786666666666667, + "grad_norm": 0.3090043067932129, + "learning_rate": 4.211e-05, + "loss": 2.229136505126953, + "step": 118400 + }, + { + "epoch": 15.8, + "grad_norm": 0.32611995935440063, + "learning_rate": 4.2103333333333334e-05, + "loss": 2.2315130615234375, + "step": 118500 + }, + { + "epoch": 15.813333333333333, + "grad_norm": 0.31808626651763916, + "learning_rate": 4.2096666666666666e-05, + "loss": 2.2304783630371094, + "step": 118600 + }, + { + "epoch": 15.826666666666666, + "grad_norm": 0.3187323808670044, + "learning_rate": 4.2090066666666665e-05, + "loss": 2.2350709533691404, + "step": 118700 + }, + { + "epoch": 15.84, + "grad_norm": 0.3571641445159912, + "learning_rate": 4.20834e-05, + "loss": 2.231884002685547, + "step": 118800 + }, + { + "epoch": 15.853333333333333, + "grad_norm": 0.3414985239505768, + "learning_rate": 4.207673333333334e-05, + "loss": 2.2351057434082033, + "step": 118900 + }, + { + "epoch": 15.866666666666667, + "grad_norm": 0.3118877112865448, + "learning_rate": 4.207006666666667e-05, + "loss": 2.231129150390625, + "step": 119000 + }, + { + "epoch": 15.88, + "grad_norm": 0.319547176361084, + "learning_rate": 4.20634e-05, + "loss": 2.234002685546875, + "step": 119100 + }, + { + "epoch": 15.893333333333333, + "grad_norm": 0.3334439992904663, + "learning_rate": 4.205673333333334e-05, + "loss": 2.236300201416016, + "step": 119200 + }, + { + "epoch": 15.906666666666666, + "grad_norm": 0.31229543685913086, + "learning_rate": 4.205006666666667e-05, + "loss": 2.2334967041015625, + "step": 119300 + }, + { + "epoch": 15.92, + "grad_norm": 0.3132321834564209, + "learning_rate": 4.20434e-05, + "loss": 2.2348391723632814, + "step": 119400 + }, + { + "epoch": 15.933333333333334, + "grad_norm": 0.3149288594722748, + "learning_rate": 4.203673333333333e-05, + "loss": 2.2346974182128907, + "step": 119500 + }, + { + "epoch": 15.946666666666667, + "grad_norm": 0.31693968176841736, + "learning_rate": 4.203006666666667e-05, + "loss": 2.233512268066406, + "step": 119600 + }, + { + "epoch": 15.96, + "grad_norm": 0.3221350312232971, + "learning_rate": 4.20234e-05, + "loss": 2.2346560668945314, + "step": 119700 + }, + { + "epoch": 15.973333333333333, + "grad_norm": 0.3314872682094574, + "learning_rate": 4.2016733333333334e-05, + "loss": 2.2337542724609376, + "step": 119800 + }, + { + "epoch": 15.986666666666666, + "grad_norm": 0.2964302599430084, + "learning_rate": 4.201006666666667e-05, + "loss": 2.235452423095703, + "step": 119900 + }, + { + "epoch": 16.0, + "grad_norm": 0.30500471591949463, + "learning_rate": 4.2003400000000005e-05, + "loss": 2.2356527709960936, + "step": 120000 + }, + { + "epoch": 16.013333333333332, + "grad_norm": 0.33137601613998413, + "learning_rate": 4.199673333333334e-05, + "loss": 2.191378479003906, + "step": 120100 + }, + { + "epoch": 16.026666666666667, + "grad_norm": 0.3438156843185425, + "learning_rate": 4.199006666666667e-05, + "loss": 2.1892555236816404, + "step": 120200 + }, + { + "epoch": 16.04, + "grad_norm": 0.3476172983646393, + "learning_rate": 4.19834e-05, + "loss": 2.185308380126953, + "step": 120300 + }, + { + "epoch": 16.053333333333335, + "grad_norm": 0.3344581723213196, + "learning_rate": 4.1976733333333334e-05, + "loss": 2.1885577392578126, + "step": 120400 + }, + { + "epoch": 16.066666666666666, + "grad_norm": 0.3536999225616455, + "learning_rate": 4.1970066666666666e-05, + "loss": 2.190690002441406, + "step": 120500 + }, + { + "epoch": 16.08, + "grad_norm": 0.327150821685791, + "learning_rate": 4.1963400000000006e-05, + "loss": 2.192127532958984, + "step": 120600 + }, + { + "epoch": 16.093333333333334, + "grad_norm": 0.34501543641090393, + "learning_rate": 4.195673333333334e-05, + "loss": 2.1904525756835938, + "step": 120700 + }, + { + "epoch": 16.106666666666666, + "grad_norm": 0.33292821049690247, + "learning_rate": 4.195006666666667e-05, + "loss": 2.1916839599609377, + "step": 120800 + }, + { + "epoch": 16.12, + "grad_norm": 0.33096081018447876, + "learning_rate": 4.194346666666667e-05, + "loss": 2.1918682861328125, + "step": 120900 + }, + { + "epoch": 16.133333333333333, + "grad_norm": 0.342189759016037, + "learning_rate": 4.19368e-05, + "loss": 2.194641418457031, + "step": 121000 + }, + { + "epoch": 16.14666666666667, + "grad_norm": 0.3368053436279297, + "learning_rate": 4.193013333333334e-05, + "loss": 2.1912602233886718, + "step": 121100 + }, + { + "epoch": 16.16, + "grad_norm": 0.32896357774734497, + "learning_rate": 4.1923466666666666e-05, + "loss": 2.191945343017578, + "step": 121200 + }, + { + "epoch": 16.173333333333332, + "grad_norm": 0.3394027352333069, + "learning_rate": 4.19168e-05, + "loss": 2.1953201293945312, + "step": 121300 + }, + { + "epoch": 16.186666666666667, + "grad_norm": 0.3458661735057831, + "learning_rate": 4.191013333333334e-05, + "loss": 2.191509246826172, + "step": 121400 + }, + { + "epoch": 16.2, + "grad_norm": 0.3341262936592102, + "learning_rate": 4.190346666666667e-05, + "loss": 2.196238708496094, + "step": 121500 + }, + { + "epoch": 16.213333333333335, + "grad_norm": 0.3546558916568756, + "learning_rate": 4.18968e-05, + "loss": 2.197465515136719, + "step": 121600 + }, + { + "epoch": 16.226666666666667, + "grad_norm": 0.322582483291626, + "learning_rate": 4.1890133333333334e-05, + "loss": 2.19465576171875, + "step": 121700 + }, + { + "epoch": 16.24, + "grad_norm": 0.33463671803474426, + "learning_rate": 4.188346666666667e-05, + "loss": 2.1976629638671876, + "step": 121800 + }, + { + "epoch": 16.253333333333334, + "grad_norm": 0.3399517834186554, + "learning_rate": 4.18768e-05, + "loss": 2.1987896728515626, + "step": 121900 + }, + { + "epoch": 16.266666666666666, + "grad_norm": 0.3466789722442627, + "learning_rate": 4.187013333333333e-05, + "loss": 2.197012939453125, + "step": 122000 + }, + { + "epoch": 16.28, + "grad_norm": 0.3435020446777344, + "learning_rate": 4.186346666666667e-05, + "loss": 2.1984803771972654, + "step": 122100 + }, + { + "epoch": 16.293333333333333, + "grad_norm": 0.33346107602119446, + "learning_rate": 4.18568e-05, + "loss": 2.2026689147949217, + "step": 122200 + }, + { + "epoch": 16.306666666666665, + "grad_norm": 0.3218962550163269, + "learning_rate": 4.1850133333333334e-05, + "loss": 2.199356689453125, + "step": 122300 + }, + { + "epoch": 16.32, + "grad_norm": 0.35545775294303894, + "learning_rate": 4.184346666666667e-05, + "loss": 2.2024908447265625, + "step": 122400 + }, + { + "epoch": 16.333333333333332, + "grad_norm": 0.33396291732788086, + "learning_rate": 4.1836800000000006e-05, + "loss": 2.198677215576172, + "step": 122500 + }, + { + "epoch": 16.346666666666668, + "grad_norm": 0.3423805236816406, + "learning_rate": 4.183013333333334e-05, + "loss": 2.203605041503906, + "step": 122600 + }, + { + "epoch": 16.36, + "grad_norm": 0.3493040204048157, + "learning_rate": 4.1823466666666664e-05, + "loss": 2.2042369079589843, + "step": 122700 + }, + { + "epoch": 16.373333333333335, + "grad_norm": 0.32711881399154663, + "learning_rate": 4.18168e-05, + "loss": 2.20152099609375, + "step": 122800 + }, + { + "epoch": 16.386666666666667, + "grad_norm": 0.3408143222332001, + "learning_rate": 4.18102e-05, + "loss": 2.20054931640625, + "step": 122900 + }, + { + "epoch": 16.4, + "grad_norm": 0.3470470607280731, + "learning_rate": 4.1803533333333334e-05, + "loss": 2.203308410644531, + "step": 123000 + }, + { + "epoch": 16.413333333333334, + "grad_norm": 0.3393367826938629, + "learning_rate": 4.1796866666666666e-05, + "loss": 2.203702392578125, + "step": 123100 + }, + { + "epoch": 16.426666666666666, + "grad_norm": 0.3487272560596466, + "learning_rate": 4.17902e-05, + "loss": 2.207674713134766, + "step": 123200 + }, + { + "epoch": 16.44, + "grad_norm": 0.31673720479011536, + "learning_rate": 4.178353333333334e-05, + "loss": 2.2054902648925783, + "step": 123300 + }, + { + "epoch": 16.453333333333333, + "grad_norm": 0.34609508514404297, + "learning_rate": 4.177686666666667e-05, + "loss": 2.2037092590332032, + "step": 123400 + }, + { + "epoch": 16.466666666666665, + "grad_norm": 0.3488747477531433, + "learning_rate": 4.17702e-05, + "loss": 2.2059857177734377, + "step": 123500 + }, + { + "epoch": 16.48, + "grad_norm": 0.34992608428001404, + "learning_rate": 4.176353333333334e-05, + "loss": 2.205555877685547, + "step": 123600 + }, + { + "epoch": 16.493333333333332, + "grad_norm": 0.3459303677082062, + "learning_rate": 4.1756866666666667e-05, + "loss": 2.2075044250488283, + "step": 123700 + }, + { + "epoch": 16.506666666666668, + "grad_norm": 0.34837567806243896, + "learning_rate": 4.17502e-05, + "loss": 2.2081297302246092, + "step": 123800 + }, + { + "epoch": 16.52, + "grad_norm": 0.3326612710952759, + "learning_rate": 4.174353333333334e-05, + "loss": 2.2074159240722655, + "step": 123900 + }, + { + "epoch": 16.533333333333335, + "grad_norm": 0.343517929315567, + "learning_rate": 4.173686666666667e-05, + "loss": 2.205991058349609, + "step": 124000 + }, + { + "epoch": 16.546666666666667, + "grad_norm": 0.36404263973236084, + "learning_rate": 4.17302e-05, + "loss": 2.2090086364746093, + "step": 124100 + }, + { + "epoch": 16.56, + "grad_norm": 0.3330126404762268, + "learning_rate": 4.1723533333333335e-05, + "loss": 2.207509002685547, + "step": 124200 + }, + { + "epoch": 16.573333333333334, + "grad_norm": 0.3251371681690216, + "learning_rate": 4.1716866666666674e-05, + "loss": 2.2095204162597657, + "step": 124300 + }, + { + "epoch": 16.586666666666666, + "grad_norm": 0.3344780206680298, + "learning_rate": 4.17102e-05, + "loss": 2.2100448608398438, + "step": 124400 + }, + { + "epoch": 16.6, + "grad_norm": 0.3297218978404999, + "learning_rate": 4.170353333333333e-05, + "loss": 2.211772613525391, + "step": 124500 + }, + { + "epoch": 16.613333333333333, + "grad_norm": 0.32694414258003235, + "learning_rate": 4.169686666666667e-05, + "loss": 2.2118515014648437, + "step": 124600 + }, + { + "epoch": 16.626666666666665, + "grad_norm": 0.3583586812019348, + "learning_rate": 4.16902e-05, + "loss": 2.208268737792969, + "step": 124700 + }, + { + "epoch": 16.64, + "grad_norm": 0.3415539562702179, + "learning_rate": 4.1683533333333335e-05, + "loss": 2.210078125, + "step": 124800 + }, + { + "epoch": 16.653333333333332, + "grad_norm": 0.3332410752773285, + "learning_rate": 4.167686666666667e-05, + "loss": 2.209375915527344, + "step": 124900 + }, + { + "epoch": 16.666666666666668, + "grad_norm": 0.3438263237476349, + "learning_rate": 4.1670200000000006e-05, + "loss": 2.213215789794922, + "step": 125000 + }, + { + "epoch": 16.68, + "grad_norm": 0.33631184697151184, + "learning_rate": 4.1663600000000005e-05, + "loss": 2.2115354919433594, + "step": 125100 + }, + { + "epoch": 16.693333333333335, + "grad_norm": 0.33590415120124817, + "learning_rate": 4.165693333333334e-05, + "loss": 2.2166558837890626, + "step": 125200 + }, + { + "epoch": 16.706666666666667, + "grad_norm": 0.33931294083595276, + "learning_rate": 4.165026666666667e-05, + "loss": 2.2135350036621095, + "step": 125300 + }, + { + "epoch": 16.72, + "grad_norm": 0.3370099365711212, + "learning_rate": 4.16436e-05, + "loss": 2.2108302307128906, + "step": 125400 + }, + { + "epoch": 16.733333333333334, + "grad_norm": 0.3390389680862427, + "learning_rate": 4.1636933333333335e-05, + "loss": 2.2139320373535156, + "step": 125500 + }, + { + "epoch": 16.746666666666666, + "grad_norm": 0.33029329776763916, + "learning_rate": 4.163026666666667e-05, + "loss": 2.2104266357421873, + "step": 125600 + }, + { + "epoch": 16.76, + "grad_norm": 0.3493773937225342, + "learning_rate": 4.16236e-05, + "loss": 2.2143878173828124, + "step": 125700 + }, + { + "epoch": 16.773333333333333, + "grad_norm": 0.3342851400375366, + "learning_rate": 4.161693333333334e-05, + "loss": 2.2172373962402343, + "step": 125800 + }, + { + "epoch": 16.786666666666665, + "grad_norm": 0.33905649185180664, + "learning_rate": 4.161026666666667e-05, + "loss": 2.2138526916503904, + "step": 125900 + }, + { + "epoch": 16.8, + "grad_norm": 0.33980846405029297, + "learning_rate": 4.16036e-05, + "loss": 2.2161383056640624, + "step": 126000 + }, + { + "epoch": 16.813333333333333, + "grad_norm": 0.3446345627307892, + "learning_rate": 4.1596933333333335e-05, + "loss": 2.214365234375, + "step": 126100 + }, + { + "epoch": 16.826666666666668, + "grad_norm": 0.32393285632133484, + "learning_rate": 4.159026666666667e-05, + "loss": 2.2161341857910157, + "step": 126200 + }, + { + "epoch": 16.84, + "grad_norm": 0.32899361848831177, + "learning_rate": 4.15836e-05, + "loss": 2.2143894958496095, + "step": 126300 + }, + { + "epoch": 16.85333333333333, + "grad_norm": 0.33458665013313293, + "learning_rate": 4.157693333333333e-05, + "loss": 2.2169989013671874, + "step": 126400 + }, + { + "epoch": 16.866666666666667, + "grad_norm": 0.34240177273750305, + "learning_rate": 4.157026666666667e-05, + "loss": 2.216192169189453, + "step": 126500 + }, + { + "epoch": 16.88, + "grad_norm": 0.33219918608665466, + "learning_rate": 4.15636e-05, + "loss": 2.216274871826172, + "step": 126600 + }, + { + "epoch": 16.893333333333334, + "grad_norm": 0.3476578891277313, + "learning_rate": 4.1556933333333335e-05, + "loss": 2.2149917602539064, + "step": 126700 + }, + { + "epoch": 16.906666666666666, + "grad_norm": 0.3385222852230072, + "learning_rate": 4.155026666666667e-05, + "loss": 2.21719482421875, + "step": 126800 + }, + { + "epoch": 16.92, + "grad_norm": 0.3350334167480469, + "learning_rate": 4.1543600000000007e-05, + "loss": 2.2180024719238283, + "step": 126900 + }, + { + "epoch": 16.933333333333334, + "grad_norm": 0.3438946604728699, + "learning_rate": 4.153693333333333e-05, + "loss": 2.217221221923828, + "step": 127000 + }, + { + "epoch": 16.946666666666665, + "grad_norm": 0.35046643018722534, + "learning_rate": 4.153033333333334e-05, + "loss": 2.220390625, + "step": 127100 + }, + { + "epoch": 16.96, + "grad_norm": 0.34361323714256287, + "learning_rate": 4.1523666666666663e-05, + "loss": 2.216808013916016, + "step": 127200 + }, + { + "epoch": 16.973333333333333, + "grad_norm": 0.32188111543655396, + "learning_rate": 4.1517e-05, + "loss": 2.2157418823242185, + "step": 127300 + }, + { + "epoch": 16.986666666666668, + "grad_norm": 0.32064762711524963, + "learning_rate": 4.1510333333333335e-05, + "loss": 2.2176025390625, + "step": 127400 + }, + { + "epoch": 17.0, + "grad_norm": 0.3368901014328003, + "learning_rate": 4.150366666666667e-05, + "loss": 2.219560241699219, + "step": 127500 + }, + { + "epoch": 17.013333333333332, + "grad_norm": 0.34540697932243347, + "learning_rate": 4.1497e-05, + "loss": 2.1651565551757814, + "step": 127600 + }, + { + "epoch": 17.026666666666667, + "grad_norm": 0.3554867208003998, + "learning_rate": 4.149033333333334e-05, + "loss": 2.168620910644531, + "step": 127700 + }, + { + "epoch": 17.04, + "grad_norm": 0.35656651854515076, + "learning_rate": 4.148366666666667e-05, + "loss": 2.1688262939453127, + "step": 127800 + }, + { + "epoch": 17.053333333333335, + "grad_norm": 0.434224396944046, + "learning_rate": 4.1477e-05, + "loss": 2.1681300354003907, + "step": 127900 + }, + { + "epoch": 17.066666666666666, + "grad_norm": 0.3526768386363983, + "learning_rate": 4.1470333333333335e-05, + "loss": 2.1689207458496096, + "step": 128000 + }, + { + "epoch": 17.08, + "grad_norm": 0.35668861865997314, + "learning_rate": 4.146366666666667e-05, + "loss": 2.168590240478516, + "step": 128100 + }, + { + "epoch": 17.093333333333334, + "grad_norm": 0.368394672870636, + "learning_rate": 4.1457e-05, + "loss": 2.173952941894531, + "step": 128200 + }, + { + "epoch": 17.106666666666666, + "grad_norm": 0.3651200532913208, + "learning_rate": 4.145033333333334e-05, + "loss": 2.172222137451172, + "step": 128300 + }, + { + "epoch": 17.12, + "grad_norm": 0.36325615644454956, + "learning_rate": 4.144366666666667e-05, + "loss": 2.16880859375, + "step": 128400 + }, + { + "epoch": 17.133333333333333, + "grad_norm": 0.3802001476287842, + "learning_rate": 4.1437e-05, + "loss": 2.1748728942871094, + "step": 128500 + }, + { + "epoch": 17.14666666666667, + "grad_norm": 0.3565540611743927, + "learning_rate": 4.1430333333333336e-05, + "loss": 2.1752804565429686, + "step": 128600 + }, + { + "epoch": 17.16, + "grad_norm": 0.3572203814983368, + "learning_rate": 4.142366666666667e-05, + "loss": 2.1743450927734376, + "step": 128700 + }, + { + "epoch": 17.173333333333332, + "grad_norm": 0.350844144821167, + "learning_rate": 4.1417e-05, + "loss": 2.172934722900391, + "step": 128800 + }, + { + "epoch": 17.186666666666667, + "grad_norm": 0.36539897322654724, + "learning_rate": 4.141033333333333e-05, + "loss": 2.176778564453125, + "step": 128900 + }, + { + "epoch": 17.2, + "grad_norm": 0.35811370611190796, + "learning_rate": 4.140366666666667e-05, + "loss": 2.174437713623047, + "step": 129000 + }, + { + "epoch": 17.213333333333335, + "grad_norm": 0.3664299547672272, + "learning_rate": 4.139706666666667e-05, + "loss": 2.1781724548339843, + "step": 129100 + }, + { + "epoch": 17.226666666666667, + "grad_norm": 0.3659532070159912, + "learning_rate": 4.13904e-05, + "loss": 2.176842041015625, + "step": 129200 + }, + { + "epoch": 17.24, + "grad_norm": 0.36825552582740784, + "learning_rate": 4.1383733333333335e-05, + "loss": 2.179559631347656, + "step": 129300 + }, + { + "epoch": 17.253333333333334, + "grad_norm": 0.36417168378829956, + "learning_rate": 4.137706666666667e-05, + "loss": 2.182062072753906, + "step": 129400 + }, + { + "epoch": 17.266666666666666, + "grad_norm": 0.3718934655189514, + "learning_rate": 4.1370400000000006e-05, + "loss": 2.180594177246094, + "step": 129500 + }, + { + "epoch": 17.28, + "grad_norm": 0.3516819477081299, + "learning_rate": 4.136373333333334e-05, + "loss": 2.180480499267578, + "step": 129600 + }, + { + "epoch": 17.293333333333333, + "grad_norm": 0.3652108609676361, + "learning_rate": 4.1357066666666664e-05, + "loss": 2.182070770263672, + "step": 129700 + }, + { + "epoch": 17.306666666666665, + "grad_norm": 0.3595081865787506, + "learning_rate": 4.13504e-05, + "loss": 2.1821852111816407, + "step": 129800 + }, + { + "epoch": 17.32, + "grad_norm": 0.3393441140651703, + "learning_rate": 4.1343733333333335e-05, + "loss": 2.178795166015625, + "step": 129900 + }, + { + "epoch": 17.333333333333332, + "grad_norm": 0.36966830492019653, + "learning_rate": 4.133706666666667e-05, + "loss": 2.1857032775878906, + "step": 130000 + }, + { + "epoch": 17.346666666666668, + "grad_norm": 0.3546712100505829, + "learning_rate": 4.13304e-05, + "loss": 2.180518798828125, + "step": 130100 + }, + { + "epoch": 17.36, + "grad_norm": 0.37151312828063965, + "learning_rate": 4.132373333333334e-05, + "loss": 2.1837088012695314, + "step": 130200 + }, + { + "epoch": 17.373333333333335, + "grad_norm": 0.34406447410583496, + "learning_rate": 4.131706666666667e-05, + "loss": 2.1844528198242186, + "step": 130300 + }, + { + "epoch": 17.386666666666667, + "grad_norm": 0.44284486770629883, + "learning_rate": 4.1310400000000003e-05, + "loss": 2.1846923828125, + "step": 130400 + }, + { + "epoch": 17.4, + "grad_norm": 0.38338637351989746, + "learning_rate": 4.1303733333333336e-05, + "loss": 2.1837538146972655, + "step": 130500 + }, + { + "epoch": 17.413333333333334, + "grad_norm": 0.3616061210632324, + "learning_rate": 4.129706666666667e-05, + "loss": 2.1846038818359377, + "step": 130600 + }, + { + "epoch": 17.426666666666666, + "grad_norm": 0.35662466287612915, + "learning_rate": 4.12904e-05, + "loss": 2.186310272216797, + "step": 130700 + }, + { + "epoch": 17.44, + "grad_norm": 0.34366509318351746, + "learning_rate": 4.128373333333333e-05, + "loss": 2.1828770446777344, + "step": 130800 + }, + { + "epoch": 17.453333333333333, + "grad_norm": 0.35822221636772156, + "learning_rate": 4.127706666666667e-05, + "loss": 2.1853370666503906, + "step": 130900 + }, + { + "epoch": 17.466666666666665, + "grad_norm": 0.382191002368927, + "learning_rate": 4.1270400000000004e-05, + "loss": 2.184327392578125, + "step": 131000 + }, + { + "epoch": 17.48, + "grad_norm": 0.3557610511779785, + "learning_rate": 4.12638e-05, + "loss": 2.188468170166016, + "step": 131100 + }, + { + "epoch": 17.493333333333332, + "grad_norm": 0.3445620536804199, + "learning_rate": 4.1257133333333335e-05, + "loss": 2.1877789306640625, + "step": 131200 + }, + { + "epoch": 17.506666666666668, + "grad_norm": 0.356189489364624, + "learning_rate": 4.125046666666667e-05, + "loss": 2.186894989013672, + "step": 131300 + }, + { + "epoch": 17.52, + "grad_norm": 0.37347978353500366, + "learning_rate": 4.1243800000000007e-05, + "loss": 2.1881455993652343, + "step": 131400 + }, + { + "epoch": 17.533333333333335, + "grad_norm": 0.4915677309036255, + "learning_rate": 4.123713333333333e-05, + "loss": 2.188135528564453, + "step": 131500 + }, + { + "epoch": 17.546666666666667, + "grad_norm": 0.33609944581985474, + "learning_rate": 4.1230466666666664e-05, + "loss": 2.1907609558105468, + "step": 131600 + }, + { + "epoch": 17.56, + "grad_norm": 0.36254754662513733, + "learning_rate": 4.12238e-05, + "loss": 2.1870379638671875, + "step": 131700 + }, + { + "epoch": 17.573333333333334, + "grad_norm": 0.3741578459739685, + "learning_rate": 4.1217133333333336e-05, + "loss": 2.1931048583984376, + "step": 131800 + }, + { + "epoch": 17.586666666666666, + "grad_norm": 0.3609215319156647, + "learning_rate": 4.121046666666667e-05, + "loss": 2.19150146484375, + "step": 131900 + }, + { + "epoch": 17.6, + "grad_norm": 0.35999777913093567, + "learning_rate": 4.120380000000001e-05, + "loss": 2.191175537109375, + "step": 132000 + }, + { + "epoch": 17.613333333333333, + "grad_norm": 0.3569694459438324, + "learning_rate": 4.119713333333334e-05, + "loss": 2.192285614013672, + "step": 132100 + }, + { + "epoch": 17.626666666666665, + "grad_norm": 0.3714178502559662, + "learning_rate": 4.1190466666666665e-05, + "loss": 2.192773895263672, + "step": 132200 + }, + { + "epoch": 17.64, + "grad_norm": 0.3539521396160126, + "learning_rate": 4.11838e-05, + "loss": 2.190313415527344, + "step": 132300 + }, + { + "epoch": 17.653333333333332, + "grad_norm": 0.358467698097229, + "learning_rate": 4.1177133333333336e-05, + "loss": 2.195655517578125, + "step": 132400 + }, + { + "epoch": 17.666666666666668, + "grad_norm": 0.3586037755012512, + "learning_rate": 4.117046666666667e-05, + "loss": 2.192008819580078, + "step": 132500 + }, + { + "epoch": 17.68, + "grad_norm": 0.3595978915691376, + "learning_rate": 4.11638e-05, + "loss": 2.1931185913085938, + "step": 132600 + }, + { + "epoch": 17.693333333333335, + "grad_norm": 0.35596606135368347, + "learning_rate": 4.115713333333334e-05, + "loss": 2.1931863403320313, + "step": 132700 + }, + { + "epoch": 17.706666666666667, + "grad_norm": 0.349572092294693, + "learning_rate": 4.115046666666667e-05, + "loss": 2.1953758239746093, + "step": 132800 + }, + { + "epoch": 17.72, + "grad_norm": 0.3638124167919159, + "learning_rate": 4.1143800000000004e-05, + "loss": 2.197004547119141, + "step": 132900 + }, + { + "epoch": 17.733333333333334, + "grad_norm": 0.3515288531780243, + "learning_rate": 4.1137133333333336e-05, + "loss": 2.1984828186035155, + "step": 133000 + }, + { + "epoch": 17.746666666666666, + "grad_norm": 0.37091967463493347, + "learning_rate": 4.1130533333333335e-05, + "loss": 2.1952162170410157, + "step": 133100 + }, + { + "epoch": 17.76, + "grad_norm": 0.3641296923160553, + "learning_rate": 4.112386666666667e-05, + "loss": 2.1980247497558594, + "step": 133200 + }, + { + "epoch": 17.773333333333333, + "grad_norm": 0.3431222438812256, + "learning_rate": 4.11172e-05, + "loss": 2.196508483886719, + "step": 133300 + }, + { + "epoch": 17.786666666666665, + "grad_norm": 0.35797178745269775, + "learning_rate": 4.111053333333333e-05, + "loss": 2.199690704345703, + "step": 133400 + }, + { + "epoch": 17.8, + "grad_norm": 0.3545133173465729, + "learning_rate": 4.110386666666667e-05, + "loss": 2.1973370361328124, + "step": 133500 + }, + { + "epoch": 17.813333333333333, + "grad_norm": 0.36000749468803406, + "learning_rate": 4.1097200000000004e-05, + "loss": 2.2000468444824217, + "step": 133600 + }, + { + "epoch": 17.826666666666668, + "grad_norm": 0.3570917546749115, + "learning_rate": 4.1090533333333336e-05, + "loss": 2.199578857421875, + "step": 133700 + }, + { + "epoch": 17.84, + "grad_norm": 0.36283078789711, + "learning_rate": 4.108386666666667e-05, + "loss": 2.199168853759766, + "step": 133800 + }, + { + "epoch": 17.85333333333333, + "grad_norm": 0.37170839309692383, + "learning_rate": 4.107720000000001e-05, + "loss": 2.199163818359375, + "step": 133900 + }, + { + "epoch": 17.866666666666667, + "grad_norm": 0.35398539900779724, + "learning_rate": 4.107053333333333e-05, + "loss": 2.2005375671386718, + "step": 134000 + }, + { + "epoch": 17.88, + "grad_norm": 0.3618471622467041, + "learning_rate": 4.1063866666666665e-05, + "loss": 2.193340606689453, + "step": 134100 + }, + { + "epoch": 17.893333333333334, + "grad_norm": 0.36715346574783325, + "learning_rate": 4.1057200000000004e-05, + "loss": 2.201223602294922, + "step": 134200 + }, + { + "epoch": 17.906666666666666, + "grad_norm": 0.35410168766975403, + "learning_rate": 4.1050533333333336e-05, + "loss": 2.1994700622558594, + "step": 134300 + }, + { + "epoch": 17.92, + "grad_norm": 0.34702470898628235, + "learning_rate": 4.104386666666667e-05, + "loss": 2.2010435485839843, + "step": 134400 + }, + { + "epoch": 17.933333333333334, + "grad_norm": 0.33663272857666016, + "learning_rate": 4.10372e-05, + "loss": 2.2017396545410155, + "step": 134500 + }, + { + "epoch": 17.946666666666665, + "grad_norm": 0.36605820059776306, + "learning_rate": 4.103053333333334e-05, + "loss": 2.2016064453125, + "step": 134600 + }, + { + "epoch": 17.96, + "grad_norm": 0.3492322564125061, + "learning_rate": 4.1023866666666665e-05, + "loss": 2.202108154296875, + "step": 134700 + }, + { + "epoch": 17.973333333333333, + "grad_norm": 0.36869311332702637, + "learning_rate": 4.10172e-05, + "loss": 2.2017369079589844, + "step": 134800 + }, + { + "epoch": 17.986666666666668, + "grad_norm": 0.36540335416793823, + "learning_rate": 4.1010533333333337e-05, + "loss": 2.200558624267578, + "step": 134900 + }, + { + "epoch": 18.0, + "grad_norm": 0.36333802342414856, + "learning_rate": 4.100386666666667e-05, + "loss": 2.203197174072266, + "step": 135000 + }, + { + "epoch": 18.013333333333332, + "grad_norm": 0.3684398829936981, + "learning_rate": 4.09972e-05, + "loss": 2.144236297607422, + "step": 135100 + }, + { + "epoch": 18.026666666666667, + "grad_norm": 0.3864319622516632, + "learning_rate": 4.09906e-05, + "loss": 2.147691650390625, + "step": 135200 + }, + { + "epoch": 18.04, + "grad_norm": 0.39713576436042786, + "learning_rate": 4.098393333333333e-05, + "loss": 2.1479608154296876, + "step": 135300 + }, + { + "epoch": 18.053333333333335, + "grad_norm": 0.38535943627357483, + "learning_rate": 4.097726666666667e-05, + "loss": 2.149579620361328, + "step": 135400 + }, + { + "epoch": 18.066666666666666, + "grad_norm": 0.37120920419692993, + "learning_rate": 4.0970600000000004e-05, + "loss": 2.1504815673828124, + "step": 135500 + }, + { + "epoch": 18.08, + "grad_norm": 0.3953970968723297, + "learning_rate": 4.0963933333333336e-05, + "loss": 2.1479664611816407, + "step": 135600 + }, + { + "epoch": 18.093333333333334, + "grad_norm": 0.3948633372783661, + "learning_rate": 4.095726666666667e-05, + "loss": 2.1526097106933593, + "step": 135700 + }, + { + "epoch": 18.106666666666666, + "grad_norm": 0.38562309741973877, + "learning_rate": 4.09506e-05, + "loss": 2.147718963623047, + "step": 135800 + }, + { + "epoch": 18.12, + "grad_norm": 0.38705727458000183, + "learning_rate": 4.094393333333333e-05, + "loss": 2.1560462951660155, + "step": 135900 + }, + { + "epoch": 18.133333333333333, + "grad_norm": 0.3904648721218109, + "learning_rate": 4.0937266666666665e-05, + "loss": 2.148473815917969, + "step": 136000 + }, + { + "epoch": 18.14666666666667, + "grad_norm": 0.3789866268634796, + "learning_rate": 4.0930600000000004e-05, + "loss": 2.1551133728027345, + "step": 136100 + }, + { + "epoch": 18.16, + "grad_norm": 0.3716281056404114, + "learning_rate": 4.0923933333333336e-05, + "loss": 2.1517713928222655, + "step": 136200 + }, + { + "epoch": 18.173333333333332, + "grad_norm": 0.4038568437099457, + "learning_rate": 4.091726666666667e-05, + "loss": 2.154055633544922, + "step": 136300 + }, + { + "epoch": 18.186666666666667, + "grad_norm": 0.3836662173271179, + "learning_rate": 4.091060000000001e-05, + "loss": 2.1555635070800783, + "step": 136400 + }, + { + "epoch": 18.2, + "grad_norm": 0.4338989853858948, + "learning_rate": 4.090393333333333e-05, + "loss": 2.1564508056640626, + "step": 136500 + }, + { + "epoch": 18.213333333333335, + "grad_norm": 0.3803965747356415, + "learning_rate": 4.0897266666666665e-05, + "loss": 2.15535888671875, + "step": 136600 + }, + { + "epoch": 18.226666666666667, + "grad_norm": 0.38790804147720337, + "learning_rate": 4.08906e-05, + "loss": 2.155977935791016, + "step": 136700 + }, + { + "epoch": 18.24, + "grad_norm": 0.4054514169692993, + "learning_rate": 4.088393333333334e-05, + "loss": 2.1601606750488282, + "step": 136800 + }, + { + "epoch": 18.253333333333334, + "grad_norm": 0.39995694160461426, + "learning_rate": 4.087726666666667e-05, + "loss": 2.1544822692871093, + "step": 136900 + }, + { + "epoch": 18.266666666666666, + "grad_norm": 0.399427592754364, + "learning_rate": 4.08706e-05, + "loss": 2.157484436035156, + "step": 137000 + }, + { + "epoch": 18.28, + "grad_norm": 0.380747526884079, + "learning_rate": 4.086393333333334e-05, + "loss": 2.1604388427734373, + "step": 137100 + }, + { + "epoch": 18.293333333333333, + "grad_norm": 0.3849477767944336, + "learning_rate": 4.085733333333334e-05, + "loss": 2.1585659790039062, + "step": 137200 + }, + { + "epoch": 18.306666666666665, + "grad_norm": 0.3770460784435272, + "learning_rate": 4.085066666666667e-05, + "loss": 2.1618302917480468, + "step": 137300 + }, + { + "epoch": 18.32, + "grad_norm": 0.4081668257713318, + "learning_rate": 4.0844000000000004e-05, + "loss": 2.1609623718261717, + "step": 137400 + }, + { + "epoch": 18.333333333333332, + "grad_norm": 0.37667742371559143, + "learning_rate": 4.0837333333333336e-05, + "loss": 2.162608642578125, + "step": 137500 + }, + { + "epoch": 18.346666666666668, + "grad_norm": 0.3946523070335388, + "learning_rate": 4.083066666666667e-05, + "loss": 2.1644091796875, + "step": 137600 + }, + { + "epoch": 18.36, + "grad_norm": 0.38843250274658203, + "learning_rate": 4.0824e-05, + "loss": 2.161121063232422, + "step": 137700 + }, + { + "epoch": 18.373333333333335, + "grad_norm": 0.4010300040245056, + "learning_rate": 4.081733333333333e-05, + "loss": 2.1667359924316405, + "step": 137800 + }, + { + "epoch": 18.386666666666667, + "grad_norm": 0.3785018026828766, + "learning_rate": 4.081066666666667e-05, + "loss": 2.167360992431641, + "step": 137900 + }, + { + "epoch": 18.4, + "grad_norm": 0.39816367626190186, + "learning_rate": 4.0804000000000004e-05, + "loss": 2.164031677246094, + "step": 138000 + }, + { + "epoch": 18.413333333333334, + "grad_norm": 0.38204148411750793, + "learning_rate": 4.079733333333334e-05, + "loss": 2.166887054443359, + "step": 138100 + }, + { + "epoch": 18.426666666666666, + "grad_norm": 0.36739620566368103, + "learning_rate": 4.079066666666667e-05, + "loss": 2.1648483276367188, + "step": 138200 + }, + { + "epoch": 18.44, + "grad_norm": 0.40818193554878235, + "learning_rate": 4.0784e-05, + "loss": 2.167153778076172, + "step": 138300 + }, + { + "epoch": 18.453333333333333, + "grad_norm": 0.3707272410392761, + "learning_rate": 4.0777333333333333e-05, + "loss": 2.1704667663574218, + "step": 138400 + }, + { + "epoch": 18.466666666666665, + "grad_norm": 0.3825608491897583, + "learning_rate": 4.0770666666666666e-05, + "loss": 2.1677491760253904, + "step": 138500 + }, + { + "epoch": 18.48, + "grad_norm": 0.3704966902732849, + "learning_rate": 4.0764000000000005e-05, + "loss": 2.168622589111328, + "step": 138600 + }, + { + "epoch": 18.493333333333332, + "grad_norm": 0.38297003507614136, + "learning_rate": 4.075733333333334e-05, + "loss": 2.1695802307128904, + "step": 138700 + }, + { + "epoch": 18.506666666666668, + "grad_norm": 0.369875431060791, + "learning_rate": 4.075066666666667e-05, + "loss": 2.1684419250488283, + "step": 138800 + }, + { + "epoch": 18.52, + "grad_norm": 0.38239753246307373, + "learning_rate": 4.0744e-05, + "loss": 2.1713496398925782, + "step": 138900 + }, + { + "epoch": 18.533333333333335, + "grad_norm": 0.37456804513931274, + "learning_rate": 4.0737333333333334e-05, + "loss": 2.171775360107422, + "step": 139000 + }, + { + "epoch": 18.546666666666667, + "grad_norm": 0.36324089765548706, + "learning_rate": 4.0730666666666666e-05, + "loss": 2.168131103515625, + "step": 139100 + }, + { + "epoch": 18.56, + "grad_norm": 0.3825380206108093, + "learning_rate": 4.0724066666666665e-05, + "loss": 2.1711878967285156, + "step": 139200 + }, + { + "epoch": 18.573333333333334, + "grad_norm": 0.38280192017555237, + "learning_rate": 4.07174e-05, + "loss": 2.1701324462890623, + "step": 139300 + }, + { + "epoch": 18.586666666666666, + "grad_norm": 0.3777543902397156, + "learning_rate": 4.0710733333333336e-05, + "loss": 2.1692018127441406, + "step": 139400 + }, + { + "epoch": 18.6, + "grad_norm": 0.387617290019989, + "learning_rate": 4.070406666666667e-05, + "loss": 2.1738621520996095, + "step": 139500 + }, + { + "epoch": 18.613333333333333, + "grad_norm": 0.38992756605148315, + "learning_rate": 4.06974e-05, + "loss": 2.173524932861328, + "step": 139600 + }, + { + "epoch": 18.626666666666665, + "grad_norm": 0.382716566324234, + "learning_rate": 4.069073333333333e-05, + "loss": 2.1713710021972656, + "step": 139700 + }, + { + "epoch": 18.64, + "grad_norm": 0.36141642928123474, + "learning_rate": 4.068406666666667e-05, + "loss": 2.1703253173828125, + "step": 139800 + }, + { + "epoch": 18.653333333333332, + "grad_norm": 0.37553125619888306, + "learning_rate": 4.0677400000000005e-05, + "loss": 2.1746434020996093, + "step": 139900 + }, + { + "epoch": 18.666666666666668, + "grad_norm": 0.40358760952949524, + "learning_rate": 4.067073333333333e-05, + "loss": 2.172953643798828, + "step": 140000 + }, + { + "epoch": 18.68, + "grad_norm": 0.35741183161735535, + "learning_rate": 4.066406666666667e-05, + "loss": 2.1734686279296875, + "step": 140100 + }, + { + "epoch": 18.693333333333335, + "grad_norm": 0.3769322633743286, + "learning_rate": 4.06574e-05, + "loss": 2.1750888061523437, + "step": 140200 + }, + { + "epoch": 18.706666666666667, + "grad_norm": 0.3802931606769562, + "learning_rate": 4.0650733333333334e-05, + "loss": 2.1736627197265626, + "step": 140300 + }, + { + "epoch": 18.72, + "grad_norm": 0.3812218904495239, + "learning_rate": 4.0644066666666666e-05, + "loss": 2.176966552734375, + "step": 140400 + }, + { + "epoch": 18.733333333333334, + "grad_norm": 0.38916149735450745, + "learning_rate": 4.0637400000000005e-05, + "loss": 2.172593231201172, + "step": 140500 + }, + { + "epoch": 18.746666666666666, + "grad_norm": 0.38093966245651245, + "learning_rate": 4.063073333333334e-05, + "loss": 2.1759133911132813, + "step": 140600 + }, + { + "epoch": 18.76, + "grad_norm": 0.4063868224620819, + "learning_rate": 4.062406666666667e-05, + "loss": 2.1767710876464843, + "step": 140700 + }, + { + "epoch": 18.773333333333333, + "grad_norm": 0.37494465708732605, + "learning_rate": 4.06174e-05, + "loss": 2.1748062133789063, + "step": 140800 + }, + { + "epoch": 18.786666666666665, + "grad_norm": 0.38622939586639404, + "learning_rate": 4.0610733333333334e-05, + "loss": 2.17905029296875, + "step": 140900 + }, + { + "epoch": 18.8, + "grad_norm": 0.41010287404060364, + "learning_rate": 4.0604066666666666e-05, + "loss": 2.1740985107421875, + "step": 141000 + }, + { + "epoch": 18.813333333333333, + "grad_norm": 0.38058510422706604, + "learning_rate": 4.0597400000000005e-05, + "loss": 2.1741783142089846, + "step": 141100 + }, + { + "epoch": 18.826666666666668, + "grad_norm": 0.36692535877227783, + "learning_rate": 4.05908e-05, + "loss": 2.1796223449707033, + "step": 141200 + }, + { + "epoch": 18.84, + "grad_norm": 0.3798985779285431, + "learning_rate": 4.058413333333334e-05, + "loss": 2.1784815979003906, + "step": 141300 + }, + { + "epoch": 18.85333333333333, + "grad_norm": 0.3722667098045349, + "learning_rate": 4.057746666666667e-05, + "loss": 2.1829788208007814, + "step": 141400 + }, + { + "epoch": 18.866666666666667, + "grad_norm": 0.39556455612182617, + "learning_rate": 4.05708e-05, + "loss": 2.179154815673828, + "step": 141500 + }, + { + "epoch": 18.88, + "grad_norm": 0.3847595453262329, + "learning_rate": 4.056413333333334e-05, + "loss": 2.1796925354003904, + "step": 141600 + }, + { + "epoch": 18.893333333333334, + "grad_norm": 0.37797436118125916, + "learning_rate": 4.055746666666667e-05, + "loss": 2.1813531494140626, + "step": 141700 + }, + { + "epoch": 18.906666666666666, + "grad_norm": 0.3832587003707886, + "learning_rate": 4.05508e-05, + "loss": 2.179685516357422, + "step": 141800 + }, + { + "epoch": 18.92, + "grad_norm": 0.3763803541660309, + "learning_rate": 4.054413333333334e-05, + "loss": 2.1807159423828124, + "step": 141900 + }, + { + "epoch": 18.933333333333334, + "grad_norm": 0.39702609181404114, + "learning_rate": 4.053746666666667e-05, + "loss": 2.18234619140625, + "step": 142000 + }, + { + "epoch": 18.946666666666665, + "grad_norm": 0.3635548949241638, + "learning_rate": 4.05308e-05, + "loss": 2.1816770935058596, + "step": 142100 + }, + { + "epoch": 18.96, + "grad_norm": 0.3698504567146301, + "learning_rate": 4.0524133333333334e-05, + "loss": 2.1805545043945314, + "step": 142200 + }, + { + "epoch": 18.973333333333333, + "grad_norm": 0.38847336173057556, + "learning_rate": 4.051746666666667e-05, + "loss": 2.18578125, + "step": 142300 + }, + { + "epoch": 18.986666666666668, + "grad_norm": 0.380186527967453, + "learning_rate": 4.0510800000000005e-05, + "loss": 2.1846510314941407, + "step": 142400 + }, + { + "epoch": 19.0, + "grad_norm": 0.37036606669425964, + "learning_rate": 4.050413333333333e-05, + "loss": 2.184918212890625, + "step": 142500 + }, + { + "epoch": 19.013333333333332, + "grad_norm": 0.4196798503398895, + "learning_rate": 4.049746666666667e-05, + "loss": 2.122628021240234, + "step": 142600 + }, + { + "epoch": 19.026666666666667, + "grad_norm": 0.4127017557621002, + "learning_rate": 4.04908e-05, + "loss": 2.1235401916503904, + "step": 142700 + }, + { + "epoch": 19.04, + "grad_norm": 0.4180348813533783, + "learning_rate": 4.0484133333333334e-05, + "loss": 2.123696746826172, + "step": 142800 + }, + { + "epoch": 19.053333333333335, + "grad_norm": 0.40591850876808167, + "learning_rate": 4.0477466666666667e-05, + "loss": 2.12607177734375, + "step": 142900 + }, + { + "epoch": 19.066666666666666, + "grad_norm": 0.4013535678386688, + "learning_rate": 4.0470800000000006e-05, + "loss": 2.1254452514648436, + "step": 143000 + }, + { + "epoch": 19.08, + "grad_norm": 0.3990405797958374, + "learning_rate": 4.046413333333334e-05, + "loss": 2.1275210571289063, + "step": 143100 + }, + { + "epoch": 19.093333333333334, + "grad_norm": 0.3961292803287506, + "learning_rate": 4.045753333333334e-05, + "loss": 2.1298793029785155, + "step": 143200 + }, + { + "epoch": 19.106666666666666, + "grad_norm": 0.38968828320503235, + "learning_rate": 4.045086666666667e-05, + "loss": 2.130485382080078, + "step": 143300 + }, + { + "epoch": 19.12, + "grad_norm": 0.38888853788375854, + "learning_rate": 4.04442e-05, + "loss": 2.1340348815917967, + "step": 143400 + }, + { + "epoch": 19.133333333333333, + "grad_norm": 0.4043475091457367, + "learning_rate": 4.0437533333333334e-05, + "loss": 2.132088317871094, + "step": 143500 + }, + { + "epoch": 19.14666666666667, + "grad_norm": 0.3911975920200348, + "learning_rate": 4.0430866666666666e-05, + "loss": 2.136121826171875, + "step": 143600 + }, + { + "epoch": 19.16, + "grad_norm": 0.43989744782447815, + "learning_rate": 4.04242e-05, + "loss": 2.129822998046875, + "step": 143700 + }, + { + "epoch": 19.173333333333332, + "grad_norm": 0.3966082036495209, + "learning_rate": 4.041753333333334e-05, + "loss": 2.132376403808594, + "step": 143800 + }, + { + "epoch": 19.186666666666667, + "grad_norm": 0.3992730975151062, + "learning_rate": 4.041086666666667e-05, + "loss": 2.139486999511719, + "step": 143900 + }, + { + "epoch": 19.2, + "grad_norm": 0.4032175838947296, + "learning_rate": 4.04042e-05, + "loss": 2.13601318359375, + "step": 144000 + }, + { + "epoch": 19.213333333333335, + "grad_norm": 0.396996408700943, + "learning_rate": 4.0397533333333334e-05, + "loss": 2.1378729248046877, + "step": 144100 + }, + { + "epoch": 19.226666666666667, + "grad_norm": 0.4150291085243225, + "learning_rate": 4.039086666666667e-05, + "loss": 2.1334957885742187, + "step": 144200 + }, + { + "epoch": 19.24, + "grad_norm": 0.3937293291091919, + "learning_rate": 4.03842e-05, + "loss": 2.136308135986328, + "step": 144300 + }, + { + "epoch": 19.253333333333334, + "grad_norm": 0.4123186469078064, + "learning_rate": 4.037753333333333e-05, + "loss": 2.1393890380859375, + "step": 144400 + }, + { + "epoch": 19.266666666666666, + "grad_norm": 0.39195558428764343, + "learning_rate": 4.037086666666667e-05, + "loss": 2.1392486572265623, + "step": 144500 + }, + { + "epoch": 19.28, + "grad_norm": 0.4173942506313324, + "learning_rate": 4.03642e-05, + "loss": 2.137723846435547, + "step": 144600 + }, + { + "epoch": 19.293333333333333, + "grad_norm": 0.4093802273273468, + "learning_rate": 4.0357533333333335e-05, + "loss": 2.136879577636719, + "step": 144700 + }, + { + "epoch": 19.306666666666665, + "grad_norm": 0.4126907289028168, + "learning_rate": 4.035086666666667e-05, + "loss": 2.1385182189941405, + "step": 144800 + }, + { + "epoch": 19.32, + "grad_norm": 0.4639165699481964, + "learning_rate": 4.0344200000000006e-05, + "loss": 2.1417454528808593, + "step": 144900 + }, + { + "epoch": 19.333333333333332, + "grad_norm": 0.405304491519928, + "learning_rate": 4.033753333333333e-05, + "loss": 2.1422581481933594, + "step": 145000 + }, + { + "epoch": 19.346666666666668, + "grad_norm": 0.3977564573287964, + "learning_rate": 4.0330866666666664e-05, + "loss": 2.142159118652344, + "step": 145100 + }, + { + "epoch": 19.36, + "grad_norm": 0.3873383104801178, + "learning_rate": 4.032426666666667e-05, + "loss": 2.141308135986328, + "step": 145200 + }, + { + "epoch": 19.373333333333335, + "grad_norm": 0.40484434366226196, + "learning_rate": 4.03176e-05, + "loss": 2.1436500549316406, + "step": 145300 + }, + { + "epoch": 19.386666666666667, + "grad_norm": 0.3954225480556488, + "learning_rate": 4.0310933333333334e-05, + "loss": 2.1450897216796876, + "step": 145400 + }, + { + "epoch": 19.4, + "grad_norm": 0.40232667326927185, + "learning_rate": 4.0304266666666666e-05, + "loss": 2.14369140625, + "step": 145500 + }, + { + "epoch": 19.413333333333334, + "grad_norm": 0.4098379909992218, + "learning_rate": 4.0297600000000005e-05, + "loss": 2.142886199951172, + "step": 145600 + }, + { + "epoch": 19.426666666666666, + "grad_norm": 0.5938084125518799, + "learning_rate": 4.029093333333334e-05, + "loss": 2.142805480957031, + "step": 145700 + }, + { + "epoch": 19.44, + "grad_norm": 0.4229917824268341, + "learning_rate": 4.028426666666667e-05, + "loss": 2.1455670166015626, + "step": 145800 + }, + { + "epoch": 19.453333333333333, + "grad_norm": 0.4009098410606384, + "learning_rate": 4.02776e-05, + "loss": 2.1452354431152343, + "step": 145900 + }, + { + "epoch": 19.466666666666665, + "grad_norm": 0.4073621928691864, + "learning_rate": 4.0270933333333334e-05, + "loss": 2.148215484619141, + "step": 146000 + }, + { + "epoch": 19.48, + "grad_norm": 0.4084467887878418, + "learning_rate": 4.026426666666667e-05, + "loss": 2.1478231811523436, + "step": 146100 + }, + { + "epoch": 19.493333333333332, + "grad_norm": 0.41249674558639526, + "learning_rate": 4.02576e-05, + "loss": 2.146228485107422, + "step": 146200 + }, + { + "epoch": 19.506666666666668, + "grad_norm": 0.4140562415122986, + "learning_rate": 4.025093333333334e-05, + "loss": 2.1468472290039062, + "step": 146300 + }, + { + "epoch": 19.52, + "grad_norm": 0.4109251797199249, + "learning_rate": 4.024426666666667e-05, + "loss": 2.1486239624023438, + "step": 146400 + }, + { + "epoch": 19.533333333333335, + "grad_norm": 0.4116007089614868, + "learning_rate": 4.02376e-05, + "loss": 2.1508238220214846, + "step": 146500 + }, + { + "epoch": 19.546666666666667, + "grad_norm": 0.4088853895664215, + "learning_rate": 4.0230933333333335e-05, + "loss": 2.1514797973632813, + "step": 146600 + }, + { + "epoch": 19.56, + "grad_norm": 0.41675347089767456, + "learning_rate": 4.0224266666666674e-05, + "loss": 2.1524058532714845, + "step": 146700 + }, + { + "epoch": 19.573333333333334, + "grad_norm": 0.3963926136493683, + "learning_rate": 4.02176e-05, + "loss": 2.148751525878906, + "step": 146800 + }, + { + "epoch": 19.586666666666666, + "grad_norm": 0.40617915987968445, + "learning_rate": 4.021093333333333e-05, + "loss": 2.149855194091797, + "step": 146900 + }, + { + "epoch": 19.6, + "grad_norm": 0.41876712441444397, + "learning_rate": 4.020426666666667e-05, + "loss": 2.150911560058594, + "step": 147000 + }, + { + "epoch": 19.613333333333333, + "grad_norm": 0.3804861605167389, + "learning_rate": 4.01976e-05, + "loss": 2.1560760498046876, + "step": 147100 + }, + { + "epoch": 19.626666666666665, + "grad_norm": 0.4384894073009491, + "learning_rate": 4.0191e-05, + "loss": 2.1526423645019532, + "step": 147200 + }, + { + "epoch": 19.64, + "grad_norm": 0.41497132182121277, + "learning_rate": 4.0184333333333334e-05, + "loss": 2.155290374755859, + "step": 147300 + }, + { + "epoch": 19.653333333333332, + "grad_norm": 0.41495493054389954, + "learning_rate": 4.0177666666666666e-05, + "loss": 2.151389465332031, + "step": 147400 + }, + { + "epoch": 19.666666666666668, + "grad_norm": 0.4099428355693817, + "learning_rate": 4.0171000000000006e-05, + "loss": 2.1499951171875, + "step": 147500 + }, + { + "epoch": 19.68, + "grad_norm": 0.3970455825328827, + "learning_rate": 4.016433333333334e-05, + "loss": 2.1519485473632813, + "step": 147600 + }, + { + "epoch": 19.693333333333335, + "grad_norm": 0.39993080496788025, + "learning_rate": 4.015766666666667e-05, + "loss": 2.1552606201171876, + "step": 147700 + }, + { + "epoch": 19.706666666666667, + "grad_norm": 0.3965042233467102, + "learning_rate": 4.0151e-05, + "loss": 2.15621826171875, + "step": 147800 + }, + { + "epoch": 19.72, + "grad_norm": 0.39892885088920593, + "learning_rate": 4.0144333333333335e-05, + "loss": 2.1579328918457032, + "step": 147900 + }, + { + "epoch": 19.733333333333334, + "grad_norm": 0.3992300033569336, + "learning_rate": 4.013766666666667e-05, + "loss": 2.1543257141113283, + "step": 148000 + }, + { + "epoch": 19.746666666666666, + "grad_norm": 0.4157925844192505, + "learning_rate": 4.0131e-05, + "loss": 2.1553553771972656, + "step": 148100 + }, + { + "epoch": 19.76, + "grad_norm": 0.4068884253501892, + "learning_rate": 4.012433333333334e-05, + "loss": 2.1588153076171874, + "step": 148200 + }, + { + "epoch": 19.773333333333333, + "grad_norm": 0.38905492424964905, + "learning_rate": 4.011766666666667e-05, + "loss": 2.15878662109375, + "step": 148300 + }, + { + "epoch": 19.786666666666665, + "grad_norm": 0.4091239869594574, + "learning_rate": 4.0111e-05, + "loss": 2.1591731262207032, + "step": 148400 + }, + { + "epoch": 19.8, + "grad_norm": 0.40158993005752563, + "learning_rate": 4.0104333333333335e-05, + "loss": 2.1584709167480467, + "step": 148500 + }, + { + "epoch": 19.813333333333333, + "grad_norm": 0.39406251907348633, + "learning_rate": 4.009766666666667e-05, + "loss": 2.1566011047363283, + "step": 148600 + }, + { + "epoch": 19.826666666666668, + "grad_norm": 0.407062292098999, + "learning_rate": 4.0091e-05, + "loss": 2.1586177062988283, + "step": 148700 + }, + { + "epoch": 19.84, + "grad_norm": 0.405785471200943, + "learning_rate": 4.008433333333333e-05, + "loss": 2.16111083984375, + "step": 148800 + }, + { + "epoch": 19.85333333333333, + "grad_norm": 0.41420650482177734, + "learning_rate": 4.007766666666667e-05, + "loss": 2.1617213439941407, + "step": 148900 + }, + { + "epoch": 19.866666666666667, + "grad_norm": 0.394771933555603, + "learning_rate": 4.0071e-05, + "loss": 2.1623408508300783, + "step": 149000 + }, + { + "epoch": 19.88, + "grad_norm": 0.40892547369003296, + "learning_rate": 4.0064333333333335e-05, + "loss": 2.157855987548828, + "step": 149100 + }, + { + "epoch": 19.893333333333334, + "grad_norm": 0.3987767994403839, + "learning_rate": 4.0057733333333334e-05, + "loss": 2.1613093566894532, + "step": 149200 + }, + { + "epoch": 19.906666666666666, + "grad_norm": 0.3993833661079407, + "learning_rate": 4.005106666666667e-05, + "loss": 2.1549281311035156, + "step": 149300 + }, + { + "epoch": 19.92, + "grad_norm": 0.38621968030929565, + "learning_rate": 4.0044400000000006e-05, + "loss": 2.160150146484375, + "step": 149400 + }, + { + "epoch": 19.933333333333334, + "grad_norm": 0.3897809386253357, + "learning_rate": 4.003773333333333e-05, + "loss": 2.1631517028808593, + "step": 149500 + }, + { + "epoch": 19.946666666666665, + "grad_norm": 0.398573637008667, + "learning_rate": 4.0031066666666664e-05, + "loss": 2.157795104980469, + "step": 149600 + }, + { + "epoch": 19.96, + "grad_norm": 0.40121105313301086, + "learning_rate": 4.00244e-05, + "loss": 2.1640524291992187, + "step": 149700 + }, + { + "epoch": 19.973333333333333, + "grad_norm": 0.4069249927997589, + "learning_rate": 4.0017733333333335e-05, + "loss": 2.166029052734375, + "step": 149800 + }, + { + "epoch": 19.986666666666668, + "grad_norm": 0.3973349928855896, + "learning_rate": 4.001106666666667e-05, + "loss": 2.1621893310546874, + "step": 149900 + }, + { + "epoch": 20.0, + "grad_norm": 0.41031596064567566, + "learning_rate": 4.0004400000000006e-05, + "loss": 2.164129180908203, + "step": 150000 + }, + { + "epoch": 20.013333333333332, + "grad_norm": 0.4144793748855591, + "learning_rate": 3.999773333333334e-05, + "loss": 2.1011627197265623, + "step": 150100 + }, + { + "epoch": 20.026666666666667, + "grad_norm": 0.4213844835758209, + "learning_rate": 3.999106666666667e-05, + "loss": 2.1013143920898436, + "step": 150200 + }, + { + "epoch": 20.04, + "grad_norm": 0.4233456254005432, + "learning_rate": 3.99844e-05, + "loss": 2.102215118408203, + "step": 150300 + }, + { + "epoch": 20.053333333333335, + "grad_norm": 0.4110080897808075, + "learning_rate": 3.9977733333333335e-05, + "loss": 2.1024229431152346, + "step": 150400 + }, + { + "epoch": 20.066666666666666, + "grad_norm": 0.43383386731147766, + "learning_rate": 3.997106666666667e-05, + "loss": 2.1043170166015623, + "step": 150500 + }, + { + "epoch": 20.08, + "grad_norm": 0.44916924834251404, + "learning_rate": 3.99644e-05, + "loss": 2.1046258544921876, + "step": 150600 + }, + { + "epoch": 20.093333333333334, + "grad_norm": 0.41945359110832214, + "learning_rate": 3.995773333333334e-05, + "loss": 2.1057843017578124, + "step": 150700 + }, + { + "epoch": 20.106666666666666, + "grad_norm": 0.4138963222503662, + "learning_rate": 3.995106666666667e-05, + "loss": 2.109571533203125, + "step": 150800 + }, + { + "epoch": 20.12, + "grad_norm": 0.4254426956176758, + "learning_rate": 3.99444e-05, + "loss": 2.110528869628906, + "step": 150900 + }, + { + "epoch": 20.133333333333333, + "grad_norm": 0.4162181615829468, + "learning_rate": 3.9937733333333336e-05, + "loss": 2.109608459472656, + "step": 151000 + }, + { + "epoch": 20.14666666666667, + "grad_norm": 0.4359742999076843, + "learning_rate": 3.993106666666667e-05, + "loss": 2.111918640136719, + "step": 151100 + }, + { + "epoch": 20.16, + "grad_norm": 0.43765124678611755, + "learning_rate": 3.9924466666666674e-05, + "loss": 2.1102365112304686, + "step": 151200 + }, + { + "epoch": 20.173333333333332, + "grad_norm": 0.4108990728855133, + "learning_rate": 3.99178e-05, + "loss": 2.1093389892578127, + "step": 151300 + }, + { + "epoch": 20.186666666666667, + "grad_norm": 0.44729962944984436, + "learning_rate": 3.991113333333333e-05, + "loss": 2.109452209472656, + "step": 151400 + }, + { + "epoch": 20.2, + "grad_norm": 0.44547468423843384, + "learning_rate": 3.990446666666667e-05, + "loss": 2.112231903076172, + "step": 151500 + }, + { + "epoch": 20.213333333333335, + "grad_norm": 0.41629984974861145, + "learning_rate": 3.98978e-05, + "loss": 2.113887939453125, + "step": 151600 + }, + { + "epoch": 20.226666666666667, + "grad_norm": 0.40394192934036255, + "learning_rate": 3.9891133333333335e-05, + "loss": 2.115534362792969, + "step": 151700 + }, + { + "epoch": 20.24, + "grad_norm": 0.44830042123794556, + "learning_rate": 3.988446666666667e-05, + "loss": 2.1146437072753907, + "step": 151800 + }, + { + "epoch": 20.253333333333334, + "grad_norm": 0.4912000596523285, + "learning_rate": 3.9877800000000006e-05, + "loss": 2.1153712463378906, + "step": 151900 + }, + { + "epoch": 20.266666666666666, + "grad_norm": 0.42249879240989685, + "learning_rate": 3.987113333333333e-05, + "loss": 2.115755615234375, + "step": 152000 + }, + { + "epoch": 20.28, + "grad_norm": 0.4368637204170227, + "learning_rate": 3.9864466666666664e-05, + "loss": 2.116807403564453, + "step": 152100 + }, + { + "epoch": 20.293333333333333, + "grad_norm": 0.4537985920906067, + "learning_rate": 3.98578e-05, + "loss": 2.1168971252441406, + "step": 152200 + }, + { + "epoch": 20.306666666666665, + "grad_norm": 0.4116325378417969, + "learning_rate": 3.9851133333333335e-05, + "loss": 2.1171247863769533, + "step": 152300 + }, + { + "epoch": 20.32, + "grad_norm": 0.4562799632549286, + "learning_rate": 3.984446666666667e-05, + "loss": 2.120128326416016, + "step": 152400 + }, + { + "epoch": 20.333333333333332, + "grad_norm": 0.48379048705101013, + "learning_rate": 3.98378e-05, + "loss": 2.1202543640136717, + "step": 152500 + }, + { + "epoch": 20.346666666666668, + "grad_norm": 0.4196086823940277, + "learning_rate": 3.983113333333334e-05, + "loss": 2.1200096130371096, + "step": 152600 + }, + { + "epoch": 20.36, + "grad_norm": 0.4291480481624603, + "learning_rate": 3.982446666666667e-05, + "loss": 2.1247039794921876, + "step": 152700 + }, + { + "epoch": 20.373333333333335, + "grad_norm": 0.435103178024292, + "learning_rate": 3.98178e-05, + "loss": 2.123348846435547, + "step": 152800 + }, + { + "epoch": 20.386666666666667, + "grad_norm": 0.4345220923423767, + "learning_rate": 3.9811133333333336e-05, + "loss": 2.1262147521972654, + "step": 152900 + }, + { + "epoch": 20.4, + "grad_norm": 0.4328380823135376, + "learning_rate": 3.980446666666667e-05, + "loss": 2.121066131591797, + "step": 153000 + }, + { + "epoch": 20.413333333333334, + "grad_norm": 0.4451119303703308, + "learning_rate": 3.97978e-05, + "loss": 2.1231698608398437, + "step": 153100 + }, + { + "epoch": 20.426666666666666, + "grad_norm": 0.4360395669937134, + "learning_rate": 3.979113333333333e-05, + "loss": 2.125181121826172, + "step": 153200 + }, + { + "epoch": 20.44, + "grad_norm": 0.4354141354560852, + "learning_rate": 3.978453333333333e-05, + "loss": 2.1249436950683593, + "step": 153300 + }, + { + "epoch": 20.453333333333333, + "grad_norm": 0.4377344250679016, + "learning_rate": 3.977786666666667e-05, + "loss": 2.1251399230957033, + "step": 153400 + }, + { + "epoch": 20.466666666666665, + "grad_norm": 0.4143160581588745, + "learning_rate": 3.97712e-05, + "loss": 2.128079681396484, + "step": 153500 + }, + { + "epoch": 20.48, + "grad_norm": 0.42408105731010437, + "learning_rate": 3.9764533333333335e-05, + "loss": 2.1228724670410157, + "step": 153600 + }, + { + "epoch": 20.493333333333332, + "grad_norm": 0.42520079016685486, + "learning_rate": 3.9757866666666674e-05, + "loss": 2.1246131896972655, + "step": 153700 + }, + { + "epoch": 20.506666666666668, + "grad_norm": 0.43026211857795715, + "learning_rate": 3.97512e-05, + "loss": 2.1264944458007813, + "step": 153800 + }, + { + "epoch": 20.52, + "grad_norm": 0.4304378628730774, + "learning_rate": 3.974453333333333e-05, + "loss": 2.128600616455078, + "step": 153900 + }, + { + "epoch": 20.533333333333335, + "grad_norm": 0.4374537765979767, + "learning_rate": 3.9737866666666664e-05, + "loss": 2.127030944824219, + "step": 154000 + }, + { + "epoch": 20.546666666666667, + "grad_norm": 0.42087990045547485, + "learning_rate": 3.9731200000000003e-05, + "loss": 2.127199859619141, + "step": 154100 + }, + { + "epoch": 20.56, + "grad_norm": 0.44808924198150635, + "learning_rate": 3.9724533333333336e-05, + "loss": 2.130141143798828, + "step": 154200 + }, + { + "epoch": 20.573333333333334, + "grad_norm": 0.4425102770328522, + "learning_rate": 3.971786666666667e-05, + "loss": 2.128837432861328, + "step": 154300 + }, + { + "epoch": 20.586666666666666, + "grad_norm": 0.4478192925453186, + "learning_rate": 3.971120000000001e-05, + "loss": 2.126686859130859, + "step": 154400 + }, + { + "epoch": 20.6, + "grad_norm": 0.40875598788261414, + "learning_rate": 3.970453333333333e-05, + "loss": 2.1303999328613283, + "step": 154500 + }, + { + "epoch": 20.613333333333333, + "grad_norm": 0.4193249046802521, + "learning_rate": 3.9697866666666665e-05, + "loss": 2.1299224853515626, + "step": 154600 + }, + { + "epoch": 20.626666666666665, + "grad_norm": 0.42445623874664307, + "learning_rate": 3.9691200000000004e-05, + "loss": 2.129607696533203, + "step": 154700 + }, + { + "epoch": 20.64, + "grad_norm": 0.42908674478530884, + "learning_rate": 3.9684533333333336e-05, + "loss": 2.13080322265625, + "step": 154800 + }, + { + "epoch": 20.653333333333332, + "grad_norm": 0.41622525453567505, + "learning_rate": 3.967786666666667e-05, + "loss": 2.1290174865722657, + "step": 154900 + }, + { + "epoch": 20.666666666666668, + "grad_norm": 0.4262298047542572, + "learning_rate": 3.96712e-05, + "loss": 2.1313914489746093, + "step": 155000 + }, + { + "epoch": 20.68, + "grad_norm": 0.4326687753200531, + "learning_rate": 3.966453333333334e-05, + "loss": 2.1320542907714843, + "step": 155100 + }, + { + "epoch": 20.693333333333335, + "grad_norm": 0.4377034902572632, + "learning_rate": 3.965786666666667e-05, + "loss": 2.1338987731933594, + "step": 155200 + }, + { + "epoch": 20.706666666666667, + "grad_norm": 0.41697245836257935, + "learning_rate": 3.965126666666667e-05, + "loss": 2.1323886108398438, + "step": 155300 + }, + { + "epoch": 20.72, + "grad_norm": 0.4141487777233124, + "learning_rate": 3.96446e-05, + "loss": 2.1330581665039063, + "step": 155400 + }, + { + "epoch": 20.733333333333334, + "grad_norm": 0.44619297981262207, + "learning_rate": 3.9637933333333336e-05, + "loss": 2.133800811767578, + "step": 155500 + }, + { + "epoch": 20.746666666666666, + "grad_norm": 0.4493109881877899, + "learning_rate": 3.963126666666667e-05, + "loss": 2.1314244079589844, + "step": 155600 + }, + { + "epoch": 20.76, + "grad_norm": 0.42815864086151123, + "learning_rate": 3.96246e-05, + "loss": 2.1383274841308593, + "step": 155700 + }, + { + "epoch": 20.773333333333333, + "grad_norm": 0.42495793104171753, + "learning_rate": 3.961793333333333e-05, + "loss": 2.134236602783203, + "step": 155800 + }, + { + "epoch": 20.786666666666665, + "grad_norm": 0.43157216906547546, + "learning_rate": 3.961126666666667e-05, + "loss": 2.1373394775390624, + "step": 155900 + }, + { + "epoch": 20.8, + "grad_norm": 0.4456236958503723, + "learning_rate": 3.9604600000000004e-05, + "loss": 2.13835693359375, + "step": 156000 + }, + { + "epoch": 20.813333333333333, + "grad_norm": 0.4253341853618622, + "learning_rate": 3.9597933333333336e-05, + "loss": 2.1404833984375, + "step": 156100 + }, + { + "epoch": 20.826666666666668, + "grad_norm": 0.4421469569206238, + "learning_rate": 3.959126666666667e-05, + "loss": 2.134762725830078, + "step": 156200 + }, + { + "epoch": 20.84, + "grad_norm": 0.4644703269004822, + "learning_rate": 3.95846e-05, + "loss": 2.1389283752441406, + "step": 156300 + }, + { + "epoch": 20.85333333333333, + "grad_norm": 0.4606155753135681, + "learning_rate": 3.957793333333333e-05, + "loss": 2.140909423828125, + "step": 156400 + }, + { + "epoch": 20.866666666666667, + "grad_norm": 0.4364932179450989, + "learning_rate": 3.9571266666666665e-05, + "loss": 2.1414125061035154, + "step": 156500 + }, + { + "epoch": 20.88, + "grad_norm": 0.41626495122909546, + "learning_rate": 3.9564600000000004e-05, + "loss": 2.139465789794922, + "step": 156600 + }, + { + "epoch": 20.893333333333334, + "grad_norm": 0.43859004974365234, + "learning_rate": 3.9557933333333336e-05, + "loss": 2.139771728515625, + "step": 156700 + }, + { + "epoch": 20.906666666666666, + "grad_norm": 0.41686686873435974, + "learning_rate": 3.955126666666667e-05, + "loss": 2.1382980346679688, + "step": 156800 + }, + { + "epoch": 20.92, + "grad_norm": 0.4283873438835144, + "learning_rate": 3.95446e-05, + "loss": 2.138336181640625, + "step": 156900 + }, + { + "epoch": 20.933333333333334, + "grad_norm": 0.433183878660202, + "learning_rate": 3.953793333333334e-05, + "loss": 2.1397128295898438, + "step": 157000 + }, + { + "epoch": 20.946666666666665, + "grad_norm": 0.4318670928478241, + "learning_rate": 3.9531266666666665e-05, + "loss": 2.1437940979003907, + "step": 157100 + }, + { + "epoch": 20.96, + "grad_norm": 0.40270859003067017, + "learning_rate": 3.95246e-05, + "loss": 2.14356689453125, + "step": 157200 + }, + { + "epoch": 20.973333333333333, + "grad_norm": 0.4244714379310608, + "learning_rate": 3.9518e-05, + "loss": 2.139528503417969, + "step": 157300 + }, + { + "epoch": 20.986666666666668, + "grad_norm": 0.45268091559410095, + "learning_rate": 3.9511333333333336e-05, + "loss": 2.145069427490234, + "step": 157400 + }, + { + "epoch": 21.0, + "grad_norm": 0.40507015585899353, + "learning_rate": 3.950466666666667e-05, + "loss": 2.143871154785156, + "step": 157500 + }, + { + "epoch": 21.013333333333332, + "grad_norm": 0.4375498592853546, + "learning_rate": 3.9498e-05, + "loss": 2.076609649658203, + "step": 157600 + }, + { + "epoch": 21.026666666666667, + "grad_norm": 0.4368535876274109, + "learning_rate": 3.949133333333333e-05, + "loss": 2.081154022216797, + "step": 157700 + }, + { + "epoch": 21.04, + "grad_norm": 0.4447578489780426, + "learning_rate": 3.948466666666667e-05, + "loss": 2.080892333984375, + "step": 157800 + }, + { + "epoch": 21.053333333333335, + "grad_norm": 0.46905946731567383, + "learning_rate": 3.9478000000000004e-05, + "loss": 2.082366485595703, + "step": 157900 + }, + { + "epoch": 21.066666666666666, + "grad_norm": 0.4563233554363251, + "learning_rate": 3.9471333333333336e-05, + "loss": 2.081029815673828, + "step": 158000 + }, + { + "epoch": 21.08, + "grad_norm": 0.442941278219223, + "learning_rate": 3.946466666666667e-05, + "loss": 2.079813690185547, + "step": 158100 + }, + { + "epoch": 21.093333333333334, + "grad_norm": 0.44517138600349426, + "learning_rate": 3.9458e-05, + "loss": 2.0806849670410155, + "step": 158200 + }, + { + "epoch": 21.106666666666666, + "grad_norm": 0.4202803075313568, + "learning_rate": 3.945133333333333e-05, + "loss": 2.0857112121582033, + "step": 158300 + }, + { + "epoch": 21.12, + "grad_norm": 0.443814218044281, + "learning_rate": 3.944466666666667e-05, + "loss": 2.0827932739257813, + "step": 158400 + }, + { + "epoch": 21.133333333333333, + "grad_norm": 0.4491780698299408, + "learning_rate": 3.9438000000000004e-05, + "loss": 2.0842088317871093, + "step": 158500 + }, + { + "epoch": 21.14666666666667, + "grad_norm": 0.45883890986442566, + "learning_rate": 3.9431333333333337e-05, + "loss": 2.086201019287109, + "step": 158600 + }, + { + "epoch": 21.16, + "grad_norm": 0.4523576498031616, + "learning_rate": 3.942466666666667e-05, + "loss": 2.088128967285156, + "step": 158700 + }, + { + "epoch": 21.173333333333332, + "grad_norm": 0.44423168897628784, + "learning_rate": 3.9418e-05, + "loss": 2.0868064880371096, + "step": 158800 + }, + { + "epoch": 21.186666666666667, + "grad_norm": 0.43601688742637634, + "learning_rate": 3.941133333333333e-05, + "loss": 2.089644470214844, + "step": 158900 + }, + { + "epoch": 21.2, + "grad_norm": 0.46989673376083374, + "learning_rate": 3.9404666666666666e-05, + "loss": 2.093050231933594, + "step": 159000 + }, + { + "epoch": 21.213333333333335, + "grad_norm": 0.43255218863487244, + "learning_rate": 3.9398000000000005e-05, + "loss": 2.0879270935058596, + "step": 159100 + }, + { + "epoch": 21.226666666666667, + "grad_norm": 0.49605920910835266, + "learning_rate": 3.939133333333334e-05, + "loss": 2.0937208557128906, + "step": 159200 + }, + { + "epoch": 21.24, + "grad_norm": 0.45772337913513184, + "learning_rate": 3.9384733333333336e-05, + "loss": 2.088824462890625, + "step": 159300 + }, + { + "epoch": 21.253333333333334, + "grad_norm": 0.47145646810531616, + "learning_rate": 3.937806666666667e-05, + "loss": 2.093097839355469, + "step": 159400 + }, + { + "epoch": 21.266666666666666, + "grad_norm": 0.4515535235404968, + "learning_rate": 3.93714e-05, + "loss": 2.0927359008789064, + "step": 159500 + }, + { + "epoch": 21.28, + "grad_norm": 0.4473794102668762, + "learning_rate": 3.936473333333334e-05, + "loss": 2.09676513671875, + "step": 159600 + }, + { + "epoch": 21.293333333333333, + "grad_norm": 0.4367310106754303, + "learning_rate": 3.935806666666667e-05, + "loss": 2.101490173339844, + "step": 159700 + }, + { + "epoch": 21.306666666666665, + "grad_norm": 0.4792206585407257, + "learning_rate": 3.93514e-05, + "loss": 2.0952803039550782, + "step": 159800 + }, + { + "epoch": 21.32, + "grad_norm": 0.47740694880485535, + "learning_rate": 3.9344733333333336e-05, + "loss": 2.095529022216797, + "step": 159900 + }, + { + "epoch": 21.333333333333332, + "grad_norm": 0.4495086371898651, + "learning_rate": 3.933806666666667e-05, + "loss": 2.0941035461425783, + "step": 160000 + }, + { + "epoch": 21.346666666666668, + "grad_norm": 0.45994919538497925, + "learning_rate": 3.93314e-05, + "loss": 2.097761993408203, + "step": 160100 + }, + { + "epoch": 21.36, + "grad_norm": 0.45980381965637207, + "learning_rate": 3.932473333333333e-05, + "loss": 2.103887634277344, + "step": 160200 + }, + { + "epoch": 21.373333333333335, + "grad_norm": 0.4462270438671112, + "learning_rate": 3.931806666666667e-05, + "loss": 2.1018940734863283, + "step": 160300 + }, + { + "epoch": 21.386666666666667, + "grad_norm": 0.44747424125671387, + "learning_rate": 3.9311400000000004e-05, + "loss": 2.100036163330078, + "step": 160400 + }, + { + "epoch": 21.4, + "grad_norm": 0.45789986848831177, + "learning_rate": 3.930473333333334e-05, + "loss": 2.097904052734375, + "step": 160500 + }, + { + "epoch": 21.413333333333334, + "grad_norm": 0.4360867440700531, + "learning_rate": 3.929806666666667e-05, + "loss": 2.100706787109375, + "step": 160600 + }, + { + "epoch": 21.426666666666666, + "grad_norm": 0.4504407048225403, + "learning_rate": 3.92914e-05, + "loss": 2.1013177490234374, + "step": 160700 + }, + { + "epoch": 21.44, + "grad_norm": 0.44968169927597046, + "learning_rate": 3.9284733333333334e-05, + "loss": 2.1003431701660156, + "step": 160800 + }, + { + "epoch": 21.453333333333333, + "grad_norm": 0.4681168794631958, + "learning_rate": 3.9278066666666666e-05, + "loss": 2.100907440185547, + "step": 160900 + }, + { + "epoch": 21.466666666666665, + "grad_norm": 0.4619245231151581, + "learning_rate": 3.9271400000000005e-05, + "loss": 2.103074035644531, + "step": 161000 + }, + { + "epoch": 21.48, + "grad_norm": 0.46537071466445923, + "learning_rate": 3.926473333333334e-05, + "loss": 2.1030101013183593, + "step": 161100 + }, + { + "epoch": 21.493333333333332, + "grad_norm": 0.44652751088142395, + "learning_rate": 3.925806666666667e-05, + "loss": 2.1046063232421877, + "step": 161200 + }, + { + "epoch": 21.506666666666668, + "grad_norm": 0.4665990173816681, + "learning_rate": 3.925146666666667e-05, + "loss": 2.103731842041016, + "step": 161300 + }, + { + "epoch": 21.52, + "grad_norm": 0.4317059814929962, + "learning_rate": 3.92448e-05, + "loss": 2.1036187744140626, + "step": 161400 + }, + { + "epoch": 21.533333333333335, + "grad_norm": 0.435001015663147, + "learning_rate": 3.923813333333334e-05, + "loss": 2.1071646118164065, + "step": 161500 + }, + { + "epoch": 21.546666666666667, + "grad_norm": 0.453155517578125, + "learning_rate": 3.9231466666666665e-05, + "loss": 2.104129638671875, + "step": 161600 + }, + { + "epoch": 21.56, + "grad_norm": 0.4656548798084259, + "learning_rate": 3.92248e-05, + "loss": 2.1059341430664062, + "step": 161700 + }, + { + "epoch": 21.573333333333334, + "grad_norm": 0.4497198164463043, + "learning_rate": 3.9218133333333337e-05, + "loss": 2.107401885986328, + "step": 161800 + }, + { + "epoch": 21.586666666666666, + "grad_norm": 0.45339301228523254, + "learning_rate": 3.921146666666667e-05, + "loss": 2.107149658203125, + "step": 161900 + }, + { + "epoch": 21.6, + "grad_norm": 0.46817344427108765, + "learning_rate": 3.92048e-05, + "loss": 2.1110685729980467, + "step": 162000 + }, + { + "epoch": 21.613333333333333, + "grad_norm": 0.4366016983985901, + "learning_rate": 3.9198133333333333e-05, + "loss": 2.1120893859863283, + "step": 162100 + }, + { + "epoch": 21.626666666666665, + "grad_norm": 0.4366924464702606, + "learning_rate": 3.919146666666667e-05, + "loss": 2.108365173339844, + "step": 162200 + }, + { + "epoch": 21.64, + "grad_norm": 0.4303394556045532, + "learning_rate": 3.91848e-05, + "loss": 2.1109800720214844, + "step": 162300 + }, + { + "epoch": 21.653333333333332, + "grad_norm": 0.4512556791305542, + "learning_rate": 3.917813333333333e-05, + "loss": 2.1110675048828127, + "step": 162400 + }, + { + "epoch": 21.666666666666668, + "grad_norm": 0.4542624056339264, + "learning_rate": 3.917146666666667e-05, + "loss": 2.1098895263671875, + "step": 162500 + }, + { + "epoch": 21.68, + "grad_norm": 0.4364491403102875, + "learning_rate": 3.91648e-05, + "loss": 2.1100592041015624, + "step": 162600 + }, + { + "epoch": 21.693333333333335, + "grad_norm": 0.4367804229259491, + "learning_rate": 3.9158133333333334e-05, + "loss": 2.111675109863281, + "step": 162700 + }, + { + "epoch": 21.706666666666667, + "grad_norm": 0.4421547055244446, + "learning_rate": 3.915146666666667e-05, + "loss": 2.113012390136719, + "step": 162800 + }, + { + "epoch": 21.72, + "grad_norm": 0.4768464267253876, + "learning_rate": 3.9144800000000005e-05, + "loss": 2.112431945800781, + "step": 162900 + }, + { + "epoch": 21.733333333333334, + "grad_norm": 0.470196008682251, + "learning_rate": 3.913813333333334e-05, + "loss": 2.115672760009766, + "step": 163000 + }, + { + "epoch": 21.746666666666666, + "grad_norm": 0.45648738741874695, + "learning_rate": 3.913146666666667e-05, + "loss": 2.113785858154297, + "step": 163100 + }, + { + "epoch": 21.76, + "grad_norm": 0.43980491161346436, + "learning_rate": 3.91248e-05, + "loss": 2.1120240783691404, + "step": 163200 + }, + { + "epoch": 21.773333333333333, + "grad_norm": 0.4451877772808075, + "learning_rate": 3.91182e-05, + "loss": 2.1176910400390625, + "step": 163300 + }, + { + "epoch": 21.786666666666665, + "grad_norm": 0.4444795250892639, + "learning_rate": 3.911153333333333e-05, + "loss": 2.1153562927246092, + "step": 163400 + }, + { + "epoch": 21.8, + "grad_norm": 0.45172980427742004, + "learning_rate": 3.9104866666666666e-05, + "loss": 2.1131268310546876, + "step": 163500 + }, + { + "epoch": 21.813333333333333, + "grad_norm": 0.44000083208084106, + "learning_rate": 3.9098200000000005e-05, + "loss": 2.1168165588378907, + "step": 163600 + }, + { + "epoch": 21.826666666666668, + "grad_norm": 0.43779900670051575, + "learning_rate": 3.909153333333334e-05, + "loss": 2.117685546875, + "step": 163700 + }, + { + "epoch": 21.84, + "grad_norm": 0.4511207640171051, + "learning_rate": 3.908486666666667e-05, + "loss": 2.1206480407714845, + "step": 163800 + }, + { + "epoch": 21.85333333333333, + "grad_norm": 0.44668668508529663, + "learning_rate": 3.90782e-05, + "loss": 2.1188619995117186, + "step": 163900 + }, + { + "epoch": 21.866666666666667, + "grad_norm": 0.4455656409263611, + "learning_rate": 3.907153333333334e-05, + "loss": 2.1155546569824217, + "step": 164000 + }, + { + "epoch": 21.88, + "grad_norm": 0.4516298770904541, + "learning_rate": 3.9064866666666666e-05, + "loss": 2.1179278564453123, + "step": 164100 + }, + { + "epoch": 21.893333333333334, + "grad_norm": 0.46956104040145874, + "learning_rate": 3.90582e-05, + "loss": 2.1160130310058594, + "step": 164200 + }, + { + "epoch": 21.906666666666666, + "grad_norm": 0.449705570936203, + "learning_rate": 3.905153333333334e-05, + "loss": 2.117757568359375, + "step": 164300 + }, + { + "epoch": 21.92, + "grad_norm": 0.4311459958553314, + "learning_rate": 3.904486666666667e-05, + "loss": 2.1182154846191406, + "step": 164400 + }, + { + "epoch": 21.933333333333334, + "grad_norm": 0.45638683438301086, + "learning_rate": 3.90382e-05, + "loss": 2.118441925048828, + "step": 164500 + }, + { + "epoch": 21.946666666666665, + "grad_norm": 0.4434240758419037, + "learning_rate": 3.9031533333333334e-05, + "loss": 2.1223045349121095, + "step": 164600 + }, + { + "epoch": 21.96, + "grad_norm": 0.46672335267066956, + "learning_rate": 3.902486666666667e-05, + "loss": 2.1176348876953126, + "step": 164700 + }, + { + "epoch": 21.973333333333333, + "grad_norm": 0.4445401430130005, + "learning_rate": 3.90182e-05, + "loss": 2.1194577026367187, + "step": 164800 + }, + { + "epoch": 21.986666666666668, + "grad_norm": 0.4556116461753845, + "learning_rate": 3.901153333333333e-05, + "loss": 2.124223175048828, + "step": 164900 + }, + { + "epoch": 22.0, + "grad_norm": 0.46571463346481323, + "learning_rate": 3.900486666666667e-05, + "loss": 2.123155517578125, + "step": 165000 + }, + { + "epoch": 22.013333333333332, + "grad_norm": 0.4723842740058899, + "learning_rate": 3.89982e-05, + "loss": 2.052652130126953, + "step": 165100 + }, + { + "epoch": 22.026666666666667, + "grad_norm": 0.4425469636917114, + "learning_rate": 3.8991533333333334e-05, + "loss": 2.052018890380859, + "step": 165200 + }, + { + "epoch": 22.04, + "grad_norm": 0.47095298767089844, + "learning_rate": 3.8984933333333333e-05, + "loss": 2.055422058105469, + "step": 165300 + }, + { + "epoch": 22.053333333333335, + "grad_norm": 0.46141520142555237, + "learning_rate": 3.8978266666666666e-05, + "loss": 2.0570689392089845, + "step": 165400 + }, + { + "epoch": 22.066666666666666, + "grad_norm": 0.471127450466156, + "learning_rate": 3.8971600000000005e-05, + "loss": 2.058157958984375, + "step": 165500 + }, + { + "epoch": 22.08, + "grad_norm": 0.48794686794281006, + "learning_rate": 3.896493333333334e-05, + "loss": 2.0558770751953124, + "step": 165600 + }, + { + "epoch": 22.093333333333334, + "grad_norm": 0.4672645926475525, + "learning_rate": 3.895826666666667e-05, + "loss": 2.061310272216797, + "step": 165700 + }, + { + "epoch": 22.106666666666666, + "grad_norm": 0.4862455427646637, + "learning_rate": 3.89516e-05, + "loss": 2.0606340026855468, + "step": 165800 + }, + { + "epoch": 22.12, + "grad_norm": 0.4853212833404541, + "learning_rate": 3.8944933333333334e-05, + "loss": 2.061323699951172, + "step": 165900 + }, + { + "epoch": 22.133333333333333, + "grad_norm": 0.4732306897640228, + "learning_rate": 3.8938266666666666e-05, + "loss": 2.0635455322265623, + "step": 166000 + }, + { + "epoch": 22.14666666666667, + "grad_norm": 0.4706946611404419, + "learning_rate": 3.89316e-05, + "loss": 2.063304595947266, + "step": 166100 + }, + { + "epoch": 22.16, + "grad_norm": 0.47907590866088867, + "learning_rate": 3.892493333333334e-05, + "loss": 2.063959503173828, + "step": 166200 + }, + { + "epoch": 22.173333333333332, + "grad_norm": 0.4727233946323395, + "learning_rate": 3.891826666666667e-05, + "loss": 2.0665432739257814, + "step": 166300 + }, + { + "epoch": 22.186666666666667, + "grad_norm": 0.450941264629364, + "learning_rate": 3.89116e-05, + "loss": 2.069130706787109, + "step": 166400 + }, + { + "epoch": 22.2, + "grad_norm": 0.4796398878097534, + "learning_rate": 3.890493333333334e-05, + "loss": 2.066522521972656, + "step": 166500 + }, + { + "epoch": 22.213333333333335, + "grad_norm": 0.44986021518707275, + "learning_rate": 3.8898266666666667e-05, + "loss": 2.068634033203125, + "step": 166600 + }, + { + "epoch": 22.226666666666667, + "grad_norm": 0.4744917154312134, + "learning_rate": 3.88916e-05, + "loss": 2.071067047119141, + "step": 166700 + }, + { + "epoch": 22.24, + "grad_norm": 0.4827626943588257, + "learning_rate": 3.888493333333333e-05, + "loss": 2.0700621032714843, + "step": 166800 + }, + { + "epoch": 22.253333333333334, + "grad_norm": 0.46759262681007385, + "learning_rate": 3.887826666666667e-05, + "loss": 2.0715043640136717, + "step": 166900 + }, + { + "epoch": 22.266666666666666, + "grad_norm": 0.4774859845638275, + "learning_rate": 3.88716e-05, + "loss": 2.071572113037109, + "step": 167000 + }, + { + "epoch": 22.28, + "grad_norm": 0.46241122484207153, + "learning_rate": 3.8864933333333335e-05, + "loss": 2.070568389892578, + "step": 167100 + }, + { + "epoch": 22.293333333333333, + "grad_norm": 0.46631354093551636, + "learning_rate": 3.8858266666666674e-05, + "loss": 2.067816162109375, + "step": 167200 + }, + { + "epoch": 22.306666666666665, + "grad_norm": 0.4631997346878052, + "learning_rate": 3.885166666666667e-05, + "loss": 2.06839599609375, + "step": 167300 + }, + { + "epoch": 22.32, + "grad_norm": 0.4765164852142334, + "learning_rate": 3.8845000000000005e-05, + "loss": 2.075525665283203, + "step": 167400 + }, + { + "epoch": 22.333333333333332, + "grad_norm": 0.4727115035057068, + "learning_rate": 3.883833333333334e-05, + "loss": 2.07642822265625, + "step": 167500 + }, + { + "epoch": 22.346666666666668, + "grad_norm": 0.455098956823349, + "learning_rate": 3.883166666666667e-05, + "loss": 2.078255157470703, + "step": 167600 + }, + { + "epoch": 22.36, + "grad_norm": 0.49284619092941284, + "learning_rate": 3.8825e-05, + "loss": 2.0744464111328127, + "step": 167700 + }, + { + "epoch": 22.373333333333335, + "grad_norm": 0.4699040651321411, + "learning_rate": 3.8818333333333334e-05, + "loss": 2.0767945861816406, + "step": 167800 + }, + { + "epoch": 22.386666666666667, + "grad_norm": 0.45493465662002563, + "learning_rate": 3.8811666666666666e-05, + "loss": 2.0780029296875, + "step": 167900 + }, + { + "epoch": 22.4, + "grad_norm": 0.4484899938106537, + "learning_rate": 3.8805000000000005e-05, + "loss": 2.080047302246094, + "step": 168000 + }, + { + "epoch": 22.413333333333334, + "grad_norm": 0.47381719946861267, + "learning_rate": 3.879833333333334e-05, + "loss": 2.077555694580078, + "step": 168100 + }, + { + "epoch": 22.426666666666666, + "grad_norm": 0.46231788396835327, + "learning_rate": 3.879166666666667e-05, + "loss": 2.079783172607422, + "step": 168200 + }, + { + "epoch": 22.44, + "grad_norm": 0.47428375482559204, + "learning_rate": 3.8785e-05, + "loss": 2.0778314208984376, + "step": 168300 + }, + { + "epoch": 22.453333333333333, + "grad_norm": 0.4597417116165161, + "learning_rate": 3.8778333333333334e-05, + "loss": 2.0790553283691406, + "step": 168400 + }, + { + "epoch": 22.466666666666665, + "grad_norm": 0.4623263478279114, + "learning_rate": 3.877166666666667e-05, + "loss": 2.0836700439453124, + "step": 168500 + }, + { + "epoch": 22.48, + "grad_norm": 0.4659540355205536, + "learning_rate": 3.8765e-05, + "loss": 2.0827793884277344, + "step": 168600 + }, + { + "epoch": 22.493333333333332, + "grad_norm": 0.47923794388771057, + "learning_rate": 3.875833333333334e-05, + "loss": 2.080955810546875, + "step": 168700 + }, + { + "epoch": 22.506666666666668, + "grad_norm": 0.4475663900375366, + "learning_rate": 3.875166666666667e-05, + "loss": 2.0815643310546874, + "step": 168800 + }, + { + "epoch": 22.52, + "grad_norm": 0.4618177115917206, + "learning_rate": 3.8745e-05, + "loss": 2.086231689453125, + "step": 168900 + }, + { + "epoch": 22.533333333333335, + "grad_norm": 0.4708126187324524, + "learning_rate": 3.8738333333333335e-05, + "loss": 2.080514373779297, + "step": 169000 + }, + { + "epoch": 22.546666666666667, + "grad_norm": 0.49023526906967163, + "learning_rate": 3.873166666666667e-05, + "loss": 2.084552001953125, + "step": 169100 + }, + { + "epoch": 22.56, + "grad_norm": 0.48341864347457886, + "learning_rate": 3.8725e-05, + "loss": 2.083937530517578, + "step": 169200 + }, + { + "epoch": 22.573333333333334, + "grad_norm": 0.4568435251712799, + "learning_rate": 3.87184e-05, + "loss": 2.0851905822753904, + "step": 169300 + }, + { + "epoch": 22.586666666666666, + "grad_norm": 0.46612024307250977, + "learning_rate": 3.871173333333333e-05, + "loss": 2.084072265625, + "step": 169400 + }, + { + "epoch": 22.6, + "grad_norm": 0.4634513258934021, + "learning_rate": 3.870506666666667e-05, + "loss": 2.0853956604003905, + "step": 169500 + }, + { + "epoch": 22.613333333333333, + "grad_norm": 0.46668726205825806, + "learning_rate": 3.86984e-05, + "loss": 2.084056854248047, + "step": 169600 + }, + { + "epoch": 22.626666666666665, + "grad_norm": 0.4836789667606354, + "learning_rate": 3.8691733333333334e-05, + "loss": 2.0863687133789064, + "step": 169700 + }, + { + "epoch": 22.64, + "grad_norm": 0.48101136088371277, + "learning_rate": 3.8685066666666667e-05, + "loss": 2.0898916625976565, + "step": 169800 + }, + { + "epoch": 22.653333333333332, + "grad_norm": 0.4785110652446747, + "learning_rate": 3.8678400000000006e-05, + "loss": 2.088622589111328, + "step": 169900 + }, + { + "epoch": 22.666666666666668, + "grad_norm": 0.4937325716018677, + "learning_rate": 3.867173333333334e-05, + "loss": 2.0871990966796874, + "step": 170000 + }, + { + "epoch": 22.68, + "grad_norm": 0.5297033786773682, + "learning_rate": 3.866506666666666e-05, + "loss": 2.09009033203125, + "step": 170100 + }, + { + "epoch": 22.693333333333335, + "grad_norm": 0.4711852967739105, + "learning_rate": 3.86584e-05, + "loss": 2.089188690185547, + "step": 170200 + }, + { + "epoch": 22.706666666666667, + "grad_norm": 0.5121586322784424, + "learning_rate": 3.8651733333333335e-05, + "loss": 2.0879640197753906, + "step": 170300 + }, + { + "epoch": 22.72, + "grad_norm": 0.4589405953884125, + "learning_rate": 3.864506666666667e-05, + "loss": 2.088956298828125, + "step": 170400 + }, + { + "epoch": 22.733333333333334, + "grad_norm": 0.4850880205631256, + "learning_rate": 3.86384e-05, + "loss": 2.090540466308594, + "step": 170500 + }, + { + "epoch": 22.746666666666666, + "grad_norm": 0.47406673431396484, + "learning_rate": 3.863173333333334e-05, + "loss": 2.090264892578125, + "step": 170600 + }, + { + "epoch": 22.76, + "grad_norm": 0.45255404710769653, + "learning_rate": 3.862506666666667e-05, + "loss": 2.0918638610839846, + "step": 170700 + }, + { + "epoch": 22.773333333333333, + "grad_norm": 0.5285037159919739, + "learning_rate": 3.86184e-05, + "loss": 2.0930937194824217, + "step": 170800 + }, + { + "epoch": 22.786666666666665, + "grad_norm": 0.45995503664016724, + "learning_rate": 3.8611733333333335e-05, + "loss": 2.0932025146484374, + "step": 170900 + }, + { + "epoch": 22.8, + "grad_norm": 0.4696432054042816, + "learning_rate": 3.860506666666667e-05, + "loss": 2.0916217041015623, + "step": 171000 + }, + { + "epoch": 22.813333333333333, + "grad_norm": 0.4758760929107666, + "learning_rate": 3.85984e-05, + "loss": 2.0916656494140624, + "step": 171100 + }, + { + "epoch": 22.826666666666668, + "grad_norm": 0.4615608751773834, + "learning_rate": 3.859173333333334e-05, + "loss": 2.0914183044433594, + "step": 171200 + }, + { + "epoch": 22.84, + "grad_norm": 0.4628288149833679, + "learning_rate": 3.858513333333333e-05, + "loss": 2.0931082153320313, + "step": 171300 + }, + { + "epoch": 22.85333333333333, + "grad_norm": 0.47100356221199036, + "learning_rate": 3.857846666666667e-05, + "loss": 2.0922206115722655, + "step": 171400 + }, + { + "epoch": 22.866666666666667, + "grad_norm": 0.4577377736568451, + "learning_rate": 3.85718e-05, + "loss": 2.094632263183594, + "step": 171500 + }, + { + "epoch": 22.88, + "grad_norm": 0.4824475944042206, + "learning_rate": 3.8565133333333335e-05, + "loss": 2.0955517578125, + "step": 171600 + }, + { + "epoch": 22.893333333333334, + "grad_norm": 0.46944087743759155, + "learning_rate": 3.8558466666666674e-05, + "loss": 2.0956381225585936, + "step": 171700 + }, + { + "epoch": 22.906666666666666, + "grad_norm": 0.4713914692401886, + "learning_rate": 3.8551800000000006e-05, + "loss": 2.0936820983886717, + "step": 171800 + }, + { + "epoch": 22.92, + "grad_norm": 0.4607670307159424, + "learning_rate": 3.854513333333333e-05, + "loss": 2.093219757080078, + "step": 171900 + }, + { + "epoch": 22.933333333333334, + "grad_norm": 0.46481382846832275, + "learning_rate": 3.853846666666667e-05, + "loss": 2.0938676452636718, + "step": 172000 + }, + { + "epoch": 22.946666666666665, + "grad_norm": 0.46048957109451294, + "learning_rate": 3.85318e-05, + "loss": 2.0956375122070314, + "step": 172100 + }, + { + "epoch": 22.96, + "grad_norm": 0.4736049771308899, + "learning_rate": 3.8525133333333335e-05, + "loss": 2.1002877807617186, + "step": 172200 + }, + { + "epoch": 22.973333333333333, + "grad_norm": 0.4825821816921234, + "learning_rate": 3.851846666666667e-05, + "loss": 2.0992372131347654, + "step": 172300 + }, + { + "epoch": 22.986666666666668, + "grad_norm": 0.4482329785823822, + "learning_rate": 3.8511800000000006e-05, + "loss": 2.100669708251953, + "step": 172400 + }, + { + "epoch": 23.0, + "grad_norm": 0.477242648601532, + "learning_rate": 3.850513333333334e-05, + "loss": 2.098603057861328, + "step": 172500 + }, + { + "epoch": 23.013333333333332, + "grad_norm": 0.49231958389282227, + "learning_rate": 3.8498466666666664e-05, + "loss": 2.028154296875, + "step": 172600 + }, + { + "epoch": 23.026666666666667, + "grad_norm": 0.4812023937702179, + "learning_rate": 3.84918e-05, + "loss": 2.0299658203125, + "step": 172700 + }, + { + "epoch": 23.04, + "grad_norm": 0.4930895268917084, + "learning_rate": 3.8485133333333335e-05, + "loss": 2.031252746582031, + "step": 172800 + }, + { + "epoch": 23.053333333333335, + "grad_norm": 0.48605743050575256, + "learning_rate": 3.847846666666667e-05, + "loss": 2.0349273681640625, + "step": 172900 + }, + { + "epoch": 23.066666666666666, + "grad_norm": 0.4839179813861847, + "learning_rate": 3.84718e-05, + "loss": 2.031682891845703, + "step": 173000 + }, + { + "epoch": 23.08, + "grad_norm": 0.5092812180519104, + "learning_rate": 3.846513333333334e-05, + "loss": 2.033275451660156, + "step": 173100 + }, + { + "epoch": 23.093333333333334, + "grad_norm": 0.4731476604938507, + "learning_rate": 3.845853333333334e-05, + "loss": 2.0364311218261717, + "step": 173200 + }, + { + "epoch": 23.106666666666666, + "grad_norm": 0.5190111398696899, + "learning_rate": 3.845186666666667e-05, + "loss": 2.0340025329589846, + "step": 173300 + }, + { + "epoch": 23.12, + "grad_norm": 0.48105064034461975, + "learning_rate": 3.84452e-05, + "loss": 2.037009582519531, + "step": 173400 + }, + { + "epoch": 23.133333333333333, + "grad_norm": 0.52114337682724, + "learning_rate": 3.8438533333333335e-05, + "loss": 2.0407159423828123, + "step": 173500 + }, + { + "epoch": 23.14666666666667, + "grad_norm": 0.4885977804660797, + "learning_rate": 3.843186666666667e-05, + "loss": 2.03779541015625, + "step": 173600 + }, + { + "epoch": 23.16, + "grad_norm": 0.48264557123184204, + "learning_rate": 3.84252e-05, + "loss": 2.0406539916992186, + "step": 173700 + }, + { + "epoch": 23.173333333333332, + "grad_norm": 0.4905865490436554, + "learning_rate": 3.841853333333333e-05, + "loss": 2.0425653076171875, + "step": 173800 + }, + { + "epoch": 23.186666666666667, + "grad_norm": 0.5025938749313354, + "learning_rate": 3.841186666666667e-05, + "loss": 2.0424517822265624, + "step": 173900 + }, + { + "epoch": 23.2, + "grad_norm": 0.4712689220905304, + "learning_rate": 3.84052e-05, + "loss": 2.0432838439941405, + "step": 174000 + }, + { + "epoch": 23.213333333333335, + "grad_norm": 0.48581528663635254, + "learning_rate": 3.8398533333333335e-05, + "loss": 2.0483238220214846, + "step": 174100 + }, + { + "epoch": 23.226666666666667, + "grad_norm": 0.4895326793193817, + "learning_rate": 3.839186666666667e-05, + "loss": 2.0430706787109374, + "step": 174200 + }, + { + "epoch": 23.24, + "grad_norm": 0.48464319109916687, + "learning_rate": 3.8385200000000006e-05, + "loss": 2.041295623779297, + "step": 174300 + }, + { + "epoch": 23.253333333333334, + "grad_norm": 0.47198572754859924, + "learning_rate": 3.837853333333333e-05, + "loss": 2.046827850341797, + "step": 174400 + }, + { + "epoch": 23.266666666666666, + "grad_norm": 0.5147217512130737, + "learning_rate": 3.8371866666666664e-05, + "loss": 2.04611572265625, + "step": 174500 + }, + { + "epoch": 23.28, + "grad_norm": 0.597183108329773, + "learning_rate": 3.83652e-05, + "loss": 2.0490652465820314, + "step": 174600 + }, + { + "epoch": 23.293333333333333, + "grad_norm": 0.4989413022994995, + "learning_rate": 3.8358533333333336e-05, + "loss": 2.0499391174316406, + "step": 174700 + }, + { + "epoch": 23.306666666666665, + "grad_norm": 0.48632174730300903, + "learning_rate": 3.835186666666667e-05, + "loss": 2.046672515869141, + "step": 174800 + }, + { + "epoch": 23.32, + "grad_norm": 0.5028402209281921, + "learning_rate": 3.83452e-05, + "loss": 2.05111572265625, + "step": 174900 + }, + { + "epoch": 23.333333333333332, + "grad_norm": 0.5091901421546936, + "learning_rate": 3.833853333333334e-05, + "loss": 2.051913299560547, + "step": 175000 + }, + { + "epoch": 23.346666666666668, + "grad_norm": 0.4841155409812927, + "learning_rate": 3.8331866666666665e-05, + "loss": 2.051449737548828, + "step": 175100 + }, + { + "epoch": 23.36, + "grad_norm": 0.4835347533226013, + "learning_rate": 3.83252e-05, + "loss": 2.050365295410156, + "step": 175200 + }, + { + "epoch": 23.373333333333335, + "grad_norm": 0.4950560927391052, + "learning_rate": 3.8318533333333336e-05, + "loss": 2.0553269958496094, + "step": 175300 + }, + { + "epoch": 23.386666666666667, + "grad_norm": 0.4722176492214203, + "learning_rate": 3.831186666666667e-05, + "loss": 2.049596862792969, + "step": 175400 + }, + { + "epoch": 23.4, + "grad_norm": 0.48539531230926514, + "learning_rate": 3.83052e-05, + "loss": 2.055406036376953, + "step": 175500 + }, + { + "epoch": 23.413333333333334, + "grad_norm": 0.49876898527145386, + "learning_rate": 3.829853333333334e-05, + "loss": 2.055661163330078, + "step": 175600 + }, + { + "epoch": 23.426666666666666, + "grad_norm": 0.48749157786369324, + "learning_rate": 3.829186666666667e-05, + "loss": 2.053136749267578, + "step": 175700 + }, + { + "epoch": 23.44, + "grad_norm": 0.49499818682670593, + "learning_rate": 3.8285200000000004e-05, + "loss": 2.049785614013672, + "step": 175800 + }, + { + "epoch": 23.453333333333333, + "grad_norm": 0.4992135465145111, + "learning_rate": 3.827853333333333e-05, + "loss": 2.0580978393554688, + "step": 175900 + }, + { + "epoch": 23.466666666666665, + "grad_norm": 0.5279852747917175, + "learning_rate": 3.827186666666667e-05, + "loss": 2.056828918457031, + "step": 176000 + }, + { + "epoch": 23.48, + "grad_norm": 0.4881434440612793, + "learning_rate": 3.82652e-05, + "loss": 2.057747039794922, + "step": 176100 + }, + { + "epoch": 23.493333333333332, + "grad_norm": 0.4738701283931732, + "learning_rate": 3.825853333333333e-05, + "loss": 2.0571058654785155, + "step": 176200 + }, + { + "epoch": 23.506666666666668, + "grad_norm": 0.5095720887184143, + "learning_rate": 3.825186666666667e-05, + "loss": 2.0584869384765625, + "step": 176300 + }, + { + "epoch": 23.52, + "grad_norm": 0.5219035148620605, + "learning_rate": 3.824526666666667e-05, + "loss": 2.0586363220214845, + "step": 176400 + }, + { + "epoch": 23.533333333333335, + "grad_norm": 0.47829073667526245, + "learning_rate": 3.8238600000000004e-05, + "loss": 2.0578681945800783, + "step": 176500 + }, + { + "epoch": 23.546666666666667, + "grad_norm": 0.4869665205478668, + "learning_rate": 3.8231933333333336e-05, + "loss": 2.0592056274414063, + "step": 176600 + }, + { + "epoch": 23.56, + "grad_norm": 0.5007086396217346, + "learning_rate": 3.822526666666667e-05, + "loss": 2.0624826049804685, + "step": 176700 + }, + { + "epoch": 23.573333333333334, + "grad_norm": 0.5046160221099854, + "learning_rate": 3.821860000000001e-05, + "loss": 2.057146453857422, + "step": 176800 + }, + { + "epoch": 23.586666666666666, + "grad_norm": 0.5090702772140503, + "learning_rate": 3.821193333333333e-05, + "loss": 2.060751647949219, + "step": 176900 + }, + { + "epoch": 23.6, + "grad_norm": 0.47376617789268494, + "learning_rate": 3.8205266666666665e-05, + "loss": 2.061948089599609, + "step": 177000 + }, + { + "epoch": 23.613333333333333, + "grad_norm": 0.5011287331581116, + "learning_rate": 3.8198600000000004e-05, + "loss": 2.0626011657714844, + "step": 177100 + }, + { + "epoch": 23.626666666666665, + "grad_norm": 0.47504308819770813, + "learning_rate": 3.8191933333333336e-05, + "loss": 2.062792205810547, + "step": 177200 + }, + { + "epoch": 23.64, + "grad_norm": 0.4749816358089447, + "learning_rate": 3.818526666666667e-05, + "loss": 2.063485412597656, + "step": 177300 + }, + { + "epoch": 23.653333333333332, + "grad_norm": 0.48922663927078247, + "learning_rate": 3.81786e-05, + "loss": 2.065717926025391, + "step": 177400 + }, + { + "epoch": 23.666666666666668, + "grad_norm": 0.5128903985023499, + "learning_rate": 3.817193333333334e-05, + "loss": 2.0668560791015627, + "step": 177500 + }, + { + "epoch": 23.68, + "grad_norm": 0.508452832698822, + "learning_rate": 3.8165266666666665e-05, + "loss": 2.0685348510742188, + "step": 177600 + }, + { + "epoch": 23.693333333333335, + "grad_norm": 0.5150190591812134, + "learning_rate": 3.81586e-05, + "loss": 2.0641282653808593, + "step": 177700 + }, + { + "epoch": 23.706666666666667, + "grad_norm": 0.4919812083244324, + "learning_rate": 3.8151933333333337e-05, + "loss": 2.066805725097656, + "step": 177800 + }, + { + "epoch": 23.72, + "grad_norm": 0.48557278513908386, + "learning_rate": 3.814526666666667e-05, + "loss": 2.066239013671875, + "step": 177900 + }, + { + "epoch": 23.733333333333334, + "grad_norm": 0.500818133354187, + "learning_rate": 3.81386e-05, + "loss": 2.0668170166015627, + "step": 178000 + }, + { + "epoch": 23.746666666666666, + "grad_norm": 0.5056354999542236, + "learning_rate": 3.813193333333333e-05, + "loss": 2.067618103027344, + "step": 178100 + }, + { + "epoch": 23.76, + "grad_norm": 0.4854942858219147, + "learning_rate": 3.812526666666667e-05, + "loss": 2.0688438415527344, + "step": 178200 + }, + { + "epoch": 23.773333333333333, + "grad_norm": 0.48774439096450806, + "learning_rate": 3.8118600000000005e-05, + "loss": 2.072354278564453, + "step": 178300 + }, + { + "epoch": 23.786666666666665, + "grad_norm": 0.4946364462375641, + "learning_rate": 3.811193333333333e-05, + "loss": 2.0678961181640627, + "step": 178400 + }, + { + "epoch": 23.8, + "grad_norm": 0.4886922240257263, + "learning_rate": 3.810526666666667e-05, + "loss": 2.0691818237304687, + "step": 178500 + }, + { + "epoch": 23.813333333333333, + "grad_norm": 0.5024255514144897, + "learning_rate": 3.80986e-05, + "loss": 2.072510223388672, + "step": 178600 + }, + { + "epoch": 23.826666666666668, + "grad_norm": 0.4981136620044708, + "learning_rate": 3.8091933333333334e-05, + "loss": 2.067329864501953, + "step": 178700 + }, + { + "epoch": 23.84, + "grad_norm": 0.48290660977363586, + "learning_rate": 3.8085266666666666e-05, + "loss": 2.0694883728027342, + "step": 178800 + }, + { + "epoch": 23.85333333333333, + "grad_norm": 0.49647679924964905, + "learning_rate": 3.8078600000000005e-05, + "loss": 2.068336639404297, + "step": 178900 + }, + { + "epoch": 23.866666666666667, + "grad_norm": 0.49168041348457336, + "learning_rate": 3.807193333333334e-05, + "loss": 2.0738255310058595, + "step": 179000 + }, + { + "epoch": 23.88, + "grad_norm": 0.49252060055732727, + "learning_rate": 3.806526666666666e-05, + "loss": 2.0729522705078125, + "step": 179100 + }, + { + "epoch": 23.893333333333334, + "grad_norm": 0.49251434206962585, + "learning_rate": 3.80586e-05, + "loss": 2.071816711425781, + "step": 179200 + }, + { + "epoch": 23.906666666666666, + "grad_norm": 0.506790280342102, + "learning_rate": 3.8051933333333334e-05, + "loss": 2.0729002380371093, + "step": 179300 + }, + { + "epoch": 23.92, + "grad_norm": 0.4773724377155304, + "learning_rate": 3.8045266666666666e-05, + "loss": 2.077678680419922, + "step": 179400 + }, + { + "epoch": 23.933333333333334, + "grad_norm": 0.5092328786849976, + "learning_rate": 3.80386e-05, + "loss": 2.07469482421875, + "step": 179500 + }, + { + "epoch": 23.946666666666665, + "grad_norm": 0.4978293776512146, + "learning_rate": 3.803193333333334e-05, + "loss": 2.07491455078125, + "step": 179600 + }, + { + "epoch": 23.96, + "grad_norm": 0.508801281452179, + "learning_rate": 3.802526666666667e-05, + "loss": 2.0768801879882814, + "step": 179700 + }, + { + "epoch": 23.973333333333333, + "grad_norm": 0.4916593134403229, + "learning_rate": 3.80186e-05, + "loss": 2.0758741760253905, + "step": 179800 + }, + { + "epoch": 23.986666666666668, + "grad_norm": 0.5212649703025818, + "learning_rate": 3.8011933333333334e-05, + "loss": 2.0771376037597657, + "step": 179900 + }, + { + "epoch": 24.0, + "grad_norm": 0.4899154007434845, + "learning_rate": 3.800526666666667e-05, + "loss": 2.076003112792969, + "step": 180000 + }, + { + "epoch": 24.013333333333332, + "grad_norm": 0.501743733882904, + "learning_rate": 3.7998666666666666e-05, + "loss": 2.003984069824219, + "step": 180100 + }, + { + "epoch": 24.026666666666667, + "grad_norm": 0.5196168422698975, + "learning_rate": 3.7992e-05, + "loss": 2.0016387939453124, + "step": 180200 + }, + { + "epoch": 24.04, + "grad_norm": 0.5263530015945435, + "learning_rate": 3.798533333333334e-05, + "loss": 2.0039300537109375, + "step": 180300 + }, + { + "epoch": 24.053333333333335, + "grad_norm": 0.4923747777938843, + "learning_rate": 3.797866666666667e-05, + "loss": 2.005165252685547, + "step": 180400 + }, + { + "epoch": 24.066666666666666, + "grad_norm": 0.5033460259437561, + "learning_rate": 3.7972e-05, + "loss": 2.006126708984375, + "step": 180500 + }, + { + "epoch": 24.08, + "grad_norm": 0.5112701058387756, + "learning_rate": 3.7965333333333334e-05, + "loss": 2.0073692321777346, + "step": 180600 + }, + { + "epoch": 24.093333333333334, + "grad_norm": 0.511628270149231, + "learning_rate": 3.795866666666667e-05, + "loss": 2.0070504760742187, + "step": 180700 + }, + { + "epoch": 24.106666666666666, + "grad_norm": 0.5259645581245422, + "learning_rate": 3.7952000000000005e-05, + "loss": 2.005118865966797, + "step": 180800 + }, + { + "epoch": 24.12, + "grad_norm": 0.48191338777542114, + "learning_rate": 3.794533333333333e-05, + "loss": 2.0112799072265624, + "step": 180900 + }, + { + "epoch": 24.133333333333333, + "grad_norm": 0.5414926409721375, + "learning_rate": 3.793866666666667e-05, + "loss": 2.0131875610351564, + "step": 181000 + }, + { + "epoch": 24.14666666666667, + "grad_norm": 0.5131890773773193, + "learning_rate": 3.7932e-05, + "loss": 2.0128208923339845, + "step": 181100 + }, + { + "epoch": 24.16, + "grad_norm": 0.486336350440979, + "learning_rate": 3.7925333333333334e-05, + "loss": 2.017211151123047, + "step": 181200 + }, + { + "epoch": 24.173333333333332, + "grad_norm": 0.49979206919670105, + "learning_rate": 3.7918666666666667e-05, + "loss": 2.013517150878906, + "step": 181300 + }, + { + "epoch": 24.186666666666667, + "grad_norm": 0.508499801158905, + "learning_rate": 3.7912000000000006e-05, + "loss": 2.0146775817871094, + "step": 181400 + }, + { + "epoch": 24.2, + "grad_norm": 0.5656309127807617, + "learning_rate": 3.790533333333334e-05, + "loss": 2.017547607421875, + "step": 181500 + }, + { + "epoch": 24.213333333333335, + "grad_norm": 0.5219641327857971, + "learning_rate": 3.789866666666667e-05, + "loss": 2.0210311889648436, + "step": 181600 + }, + { + "epoch": 24.226666666666667, + "grad_norm": 0.5194352269172668, + "learning_rate": 3.7892e-05, + "loss": 2.016371612548828, + "step": 181700 + }, + { + "epoch": 24.24, + "grad_norm": 0.5241196155548096, + "learning_rate": 3.7885333333333335e-05, + "loss": 2.022900390625, + "step": 181800 + }, + { + "epoch": 24.253333333333334, + "grad_norm": 0.48599502444267273, + "learning_rate": 3.787866666666667e-05, + "loss": 2.0237261962890627, + "step": 181900 + }, + { + "epoch": 24.266666666666666, + "grad_norm": 0.5147618055343628, + "learning_rate": 3.7872e-05, + "loss": 2.023406219482422, + "step": 182000 + }, + { + "epoch": 24.28, + "grad_norm": 0.5101783275604248, + "learning_rate": 3.786533333333334e-05, + "loss": 2.0179656982421874, + "step": 182100 + }, + { + "epoch": 24.293333333333333, + "grad_norm": 0.505097508430481, + "learning_rate": 3.785873333333334e-05, + "loss": 2.0241987609863283, + "step": 182200 + }, + { + "epoch": 24.306666666666665, + "grad_norm": 0.5323469638824463, + "learning_rate": 3.785206666666667e-05, + "loss": 2.0228041076660155, + "step": 182300 + }, + { + "epoch": 24.32, + "grad_norm": 0.5330120325088501, + "learning_rate": 3.78454e-05, + "loss": 2.0276548767089846, + "step": 182400 + }, + { + "epoch": 24.333333333333332, + "grad_norm": 0.5185723900794983, + "learning_rate": 3.7838733333333334e-05, + "loss": 2.027704772949219, + "step": 182500 + }, + { + "epoch": 24.346666666666668, + "grad_norm": 0.5001394152641296, + "learning_rate": 3.783206666666667e-05, + "loss": 2.028656463623047, + "step": 182600 + }, + { + "epoch": 24.36, + "grad_norm": 0.5111181139945984, + "learning_rate": 3.78254e-05, + "loss": 2.0222459411621094, + "step": 182700 + }, + { + "epoch": 24.373333333333335, + "grad_norm": 0.5283573865890503, + "learning_rate": 3.781873333333333e-05, + "loss": 2.025753631591797, + "step": 182800 + }, + { + "epoch": 24.386666666666667, + "grad_norm": 0.5587430000305176, + "learning_rate": 3.781206666666667e-05, + "loss": 2.0282719421386717, + "step": 182900 + }, + { + "epoch": 24.4, + "grad_norm": 0.5276029109954834, + "learning_rate": 3.78054e-05, + "loss": 2.0236598205566407, + "step": 183000 + }, + { + "epoch": 24.413333333333334, + "grad_norm": 0.517819881439209, + "learning_rate": 3.7798733333333335e-05, + "loss": 2.0305661010742186, + "step": 183100 + }, + { + "epoch": 24.426666666666666, + "grad_norm": 0.5286267995834351, + "learning_rate": 3.779206666666667e-05, + "loss": 2.030503387451172, + "step": 183200 + }, + { + "epoch": 24.44, + "grad_norm": 0.5311276912689209, + "learning_rate": 3.7785400000000006e-05, + "loss": 2.0295208740234374, + "step": 183300 + }, + { + "epoch": 24.453333333333333, + "grad_norm": 0.5239437222480774, + "learning_rate": 3.777873333333333e-05, + "loss": 2.032499237060547, + "step": 183400 + }, + { + "epoch": 24.466666666666665, + "grad_norm": 0.5115417242050171, + "learning_rate": 3.7772066666666664e-05, + "loss": 2.0358099365234374, + "step": 183500 + }, + { + "epoch": 24.48, + "grad_norm": 0.5413856506347656, + "learning_rate": 3.77654e-05, + "loss": 2.033902130126953, + "step": 183600 + }, + { + "epoch": 24.493333333333332, + "grad_norm": 0.5350323915481567, + "learning_rate": 3.7758733333333335e-05, + "loss": 2.03102783203125, + "step": 183700 + }, + { + "epoch": 24.506666666666668, + "grad_norm": 0.5200849175453186, + "learning_rate": 3.775206666666667e-05, + "loss": 2.0346524047851564, + "step": 183800 + }, + { + "epoch": 24.52, + "grad_norm": 0.5102962255477905, + "learning_rate": 3.7745400000000006e-05, + "loss": 2.03560791015625, + "step": 183900 + }, + { + "epoch": 24.533333333333335, + "grad_norm": 0.5746884346008301, + "learning_rate": 3.773873333333334e-05, + "loss": 2.0360655212402343, + "step": 184000 + }, + { + "epoch": 24.546666666666667, + "grad_norm": 0.5304731726646423, + "learning_rate": 3.773206666666667e-05, + "loss": 2.0354969787597654, + "step": 184100 + }, + { + "epoch": 24.56, + "grad_norm": 0.5169298648834229, + "learning_rate": 3.772546666666667e-05, + "loss": 2.0382408142089843, + "step": 184200 + }, + { + "epoch": 24.573333333333334, + "grad_norm": 0.5369707345962524, + "learning_rate": 3.77188e-05, + "loss": 2.039522399902344, + "step": 184300 + }, + { + "epoch": 24.586666666666666, + "grad_norm": 0.4798973798751831, + "learning_rate": 3.7712133333333334e-05, + "loss": 2.0367251586914064, + "step": 184400 + }, + { + "epoch": 24.6, + "grad_norm": 0.5089485049247742, + "learning_rate": 3.770546666666667e-05, + "loss": 2.03658203125, + "step": 184500 + }, + { + "epoch": 24.613333333333333, + "grad_norm": 0.5315452814102173, + "learning_rate": 3.76988e-05, + "loss": 2.0440740966796875, + "step": 184600 + }, + { + "epoch": 24.626666666666665, + "grad_norm": 0.5431042313575745, + "learning_rate": 3.769213333333334e-05, + "loss": 2.0387681579589843, + "step": 184700 + }, + { + "epoch": 24.64, + "grad_norm": 0.5244868993759155, + "learning_rate": 3.768546666666667e-05, + "loss": 2.0414497375488283, + "step": 184800 + }, + { + "epoch": 24.653333333333332, + "grad_norm": 0.5108836889266968, + "learning_rate": 3.76788e-05, + "loss": 2.0410122680664062, + "step": 184900 + }, + { + "epoch": 24.666666666666668, + "grad_norm": 0.5050901770591736, + "learning_rate": 3.7672133333333335e-05, + "loss": 2.041776580810547, + "step": 185000 + }, + { + "epoch": 24.68, + "grad_norm": 0.5396665930747986, + "learning_rate": 3.7665466666666674e-05, + "loss": 2.0429249572753907, + "step": 185100 + }, + { + "epoch": 24.693333333333335, + "grad_norm": 0.5454257726669312, + "learning_rate": 3.76588e-05, + "loss": 2.044694671630859, + "step": 185200 + }, + { + "epoch": 24.706666666666667, + "grad_norm": 0.5190442204475403, + "learning_rate": 3.765213333333333e-05, + "loss": 2.04460205078125, + "step": 185300 + }, + { + "epoch": 24.72, + "grad_norm": 0.5234954953193665, + "learning_rate": 3.764546666666667e-05, + "loss": 2.0423243713378905, + "step": 185400 + }, + { + "epoch": 24.733333333333334, + "grad_norm": 0.5175752639770508, + "learning_rate": 3.76388e-05, + "loss": 2.043539276123047, + "step": 185500 + }, + { + "epoch": 24.746666666666666, + "grad_norm": 0.519957423210144, + "learning_rate": 3.7632133333333335e-05, + "loss": 2.0451559448242187, + "step": 185600 + }, + { + "epoch": 24.76, + "grad_norm": 0.49500152468681335, + "learning_rate": 3.762546666666667e-05, + "loss": 2.043379211425781, + "step": 185700 + }, + { + "epoch": 24.773333333333333, + "grad_norm": 0.5160672664642334, + "learning_rate": 3.7618800000000006e-05, + "loss": 2.046691589355469, + "step": 185800 + }, + { + "epoch": 24.786666666666665, + "grad_norm": 0.5067774057388306, + "learning_rate": 3.761213333333333e-05, + "loss": 2.046448211669922, + "step": 185900 + }, + { + "epoch": 24.8, + "grad_norm": 0.537140429019928, + "learning_rate": 3.7605466666666664e-05, + "loss": 2.045804901123047, + "step": 186000 + }, + { + "epoch": 24.813333333333333, + "grad_norm": 0.5184574127197266, + "learning_rate": 3.75988e-05, + "loss": 2.0455780029296875, + "step": 186100 + }, + { + "epoch": 24.826666666666668, + "grad_norm": 0.5265442728996277, + "learning_rate": 3.7592133333333336e-05, + "loss": 2.0486622619628907, + "step": 186200 + }, + { + "epoch": 24.84, + "grad_norm": 0.5227593183517456, + "learning_rate": 3.758546666666667e-05, + "loss": 2.0465821838378906, + "step": 186300 + }, + { + "epoch": 24.85333333333333, + "grad_norm": 0.5115875005722046, + "learning_rate": 3.75788e-05, + "loss": 2.048692321777344, + "step": 186400 + }, + { + "epoch": 24.866666666666667, + "grad_norm": 0.5175586342811584, + "learning_rate": 3.75722e-05, + "loss": 2.04896240234375, + "step": 186500 + }, + { + "epoch": 24.88, + "grad_norm": 0.523460865020752, + "learning_rate": 3.756553333333334e-05, + "loss": 2.0502452087402343, + "step": 186600 + }, + { + "epoch": 24.893333333333334, + "grad_norm": 0.5361924767494202, + "learning_rate": 3.755886666666667e-05, + "loss": 2.0494508361816406, + "step": 186700 + }, + { + "epoch": 24.906666666666666, + "grad_norm": 0.5198230743408203, + "learning_rate": 3.75522e-05, + "loss": 2.0510104370117186, + "step": 186800 + }, + { + "epoch": 24.92, + "grad_norm": 0.5249742269515991, + "learning_rate": 3.7545533333333335e-05, + "loss": 2.05044189453125, + "step": 186900 + }, + { + "epoch": 24.933333333333334, + "grad_norm": 0.5150473117828369, + "learning_rate": 3.753886666666667e-05, + "loss": 2.0530665588378905, + "step": 187000 + }, + { + "epoch": 24.946666666666665, + "grad_norm": 0.5269672870635986, + "learning_rate": 3.75322e-05, + "loss": 2.052723236083984, + "step": 187100 + }, + { + "epoch": 24.96, + "grad_norm": 0.498569518327713, + "learning_rate": 3.752553333333333e-05, + "loss": 2.053250579833984, + "step": 187200 + }, + { + "epoch": 24.973333333333333, + "grad_norm": 0.5326972007751465, + "learning_rate": 3.751886666666667e-05, + "loss": 2.0500621032714843, + "step": 187300 + }, + { + "epoch": 24.986666666666668, + "grad_norm": 0.5814267992973328, + "learning_rate": 3.75122e-05, + "loss": 2.0546443176269533, + "step": 187400 + }, + { + "epoch": 25.0, + "grad_norm": 0.5015130043029785, + "learning_rate": 3.7505533333333335e-05, + "loss": 2.0553138732910154, + "step": 187500 + }, + { + "epoch": 25.013333333333332, + "grad_norm": 0.5198807120323181, + "learning_rate": 3.749886666666667e-05, + "loss": 1.9766946411132813, + "step": 187600 + }, + { + "epoch": 25.026666666666667, + "grad_norm": 0.5337755680084229, + "learning_rate": 3.74922e-05, + "loss": 1.9777664184570312, + "step": 187700 + }, + { + "epoch": 25.04, + "grad_norm": 0.5432220697402954, + "learning_rate": 3.748553333333333e-05, + "loss": 1.9787986755371094, + "step": 187800 + }, + { + "epoch": 25.053333333333335, + "grad_norm": 0.5276835560798645, + "learning_rate": 3.7478866666666664e-05, + "loss": 1.9827880859375, + "step": 187900 + }, + { + "epoch": 25.066666666666666, + "grad_norm": 0.5256075263023376, + "learning_rate": 3.7472200000000004e-05, + "loss": 1.9845838928222657, + "step": 188000 + }, + { + "epoch": 25.08, + "grad_norm": 0.521128237247467, + "learning_rate": 3.7465533333333336e-05, + "loss": 1.984072265625, + "step": 188100 + }, + { + "epoch": 25.093333333333334, + "grad_norm": 0.7402787208557129, + "learning_rate": 3.745886666666667e-05, + "loss": 1.9819233703613282, + "step": 188200 + }, + { + "epoch": 25.106666666666666, + "grad_norm": 0.5602257251739502, + "learning_rate": 3.745220000000001e-05, + "loss": 1.9857809448242187, + "step": 188300 + }, + { + "epoch": 25.12, + "grad_norm": 0.5449258685112, + "learning_rate": 3.744553333333333e-05, + "loss": 1.9836058044433593, + "step": 188400 + }, + { + "epoch": 25.133333333333333, + "grad_norm": 0.5279524326324463, + "learning_rate": 3.7438866666666665e-05, + "loss": 1.9868746948242189, + "step": 188500 + }, + { + "epoch": 25.14666666666667, + "grad_norm": 0.5134731531143188, + "learning_rate": 3.7432200000000004e-05, + "loss": 1.984371337890625, + "step": 188600 + }, + { + "epoch": 25.16, + "grad_norm": 0.534136950969696, + "learning_rate": 3.7425533333333336e-05, + "loss": 1.990037841796875, + "step": 188700 + }, + { + "epoch": 25.173333333333332, + "grad_norm": 0.5440365672111511, + "learning_rate": 3.741886666666667e-05, + "loss": 1.9899058532714844, + "step": 188800 + }, + { + "epoch": 25.186666666666667, + "grad_norm": 0.5396292209625244, + "learning_rate": 3.741226666666667e-05, + "loss": 1.9931028747558595, + "step": 188900 + }, + { + "epoch": 25.2, + "grad_norm": 0.5376026034355164, + "learning_rate": 3.74056e-05, + "loss": 1.99557373046875, + "step": 189000 + }, + { + "epoch": 25.213333333333335, + "grad_norm": 0.5177650451660156, + "learning_rate": 3.739893333333334e-05, + "loss": 1.9946913146972656, + "step": 189100 + }, + { + "epoch": 25.226666666666667, + "grad_norm": 0.5463927984237671, + "learning_rate": 3.739226666666667e-05, + "loss": 1.993941192626953, + "step": 189200 + }, + { + "epoch": 25.24, + "grad_norm": 0.5426744818687439, + "learning_rate": 3.73856e-05, + "loss": 1.9958428955078125, + "step": 189300 + }, + { + "epoch": 25.253333333333334, + "grad_norm": 0.5297708511352539, + "learning_rate": 3.7378933333333336e-05, + "loss": 1.995465087890625, + "step": 189400 + }, + { + "epoch": 25.266666666666666, + "grad_norm": 0.5523133873939514, + "learning_rate": 3.737226666666667e-05, + "loss": 2.0024423217773437, + "step": 189500 + }, + { + "epoch": 25.28, + "grad_norm": 0.551189124584198, + "learning_rate": 3.73656e-05, + "loss": 1.996693115234375, + "step": 189600 + }, + { + "epoch": 25.293333333333333, + "grad_norm": 0.5185670852661133, + "learning_rate": 3.735893333333333e-05, + "loss": 1.9998982238769532, + "step": 189700 + }, + { + "epoch": 25.306666666666665, + "grad_norm": 0.5398461818695068, + "learning_rate": 3.735226666666667e-05, + "loss": 1.9971189880371094, + "step": 189800 + }, + { + "epoch": 25.32, + "grad_norm": 0.5354723930358887, + "learning_rate": 3.7345600000000004e-05, + "loss": 1.9997674560546874, + "step": 189900 + }, + { + "epoch": 25.333333333333332, + "grad_norm": 0.5407664775848389, + "learning_rate": 3.7338933333333336e-05, + "loss": 1.9974674987792969, + "step": 190000 + }, + { + "epoch": 25.346666666666668, + "grad_norm": 0.5344270467758179, + "learning_rate": 3.733226666666667e-05, + "loss": 2.003179473876953, + "step": 190100 + }, + { + "epoch": 25.36, + "grad_norm": 0.5190737247467041, + "learning_rate": 3.73256e-05, + "loss": 2.006910552978516, + "step": 190200 + }, + { + "epoch": 25.373333333333335, + "grad_norm": 0.5444039106369019, + "learning_rate": 3.731893333333333e-05, + "loss": 2.0056292724609377, + "step": 190300 + }, + { + "epoch": 25.386666666666667, + "grad_norm": 0.5827769041061401, + "learning_rate": 3.7312266666666665e-05, + "loss": 2.003057098388672, + "step": 190400 + }, + { + "epoch": 25.4, + "grad_norm": 0.5491002202033997, + "learning_rate": 3.7305600000000004e-05, + "loss": 2.005493469238281, + "step": 190500 + }, + { + "epoch": 25.413333333333334, + "grad_norm": 0.5325082540512085, + "learning_rate": 3.7298933333333336e-05, + "loss": 2.0034739685058596, + "step": 190600 + }, + { + "epoch": 25.426666666666666, + "grad_norm": 0.5534201860427856, + "learning_rate": 3.729226666666667e-05, + "loss": 2.005567169189453, + "step": 190700 + }, + { + "epoch": 25.44, + "grad_norm": 0.5325811505317688, + "learning_rate": 3.72856e-05, + "loss": 2.004087371826172, + "step": 190800 + }, + { + "epoch": 25.453333333333333, + "grad_norm": 0.5336616039276123, + "learning_rate": 3.727893333333333e-05, + "loss": 2.0060054016113282, + "step": 190900 + }, + { + "epoch": 25.466666666666665, + "grad_norm": 0.550896406173706, + "learning_rate": 3.7272266666666665e-05, + "loss": 2.0102296447753907, + "step": 191000 + }, + { + "epoch": 25.48, + "grad_norm": 0.5317057967185974, + "learning_rate": 3.72656e-05, + "loss": 2.0113670349121096, + "step": 191100 + }, + { + "epoch": 25.493333333333332, + "grad_norm": 0.5150067806243896, + "learning_rate": 3.725893333333334e-05, + "loss": 2.013133697509766, + "step": 191200 + }, + { + "epoch": 25.506666666666668, + "grad_norm": 0.5351247787475586, + "learning_rate": 3.725226666666667e-05, + "loss": 2.010963134765625, + "step": 191300 + }, + { + "epoch": 25.52, + "grad_norm": 0.5194895267486572, + "learning_rate": 3.724566666666667e-05, + "loss": 2.012650451660156, + "step": 191400 + }, + { + "epoch": 25.533333333333335, + "grad_norm": 0.539284884929657, + "learning_rate": 3.7239e-05, + "loss": 2.010073394775391, + "step": 191500 + }, + { + "epoch": 25.546666666666667, + "grad_norm": 0.5227241516113281, + "learning_rate": 3.723233333333333e-05, + "loss": 2.011913299560547, + "step": 191600 + }, + { + "epoch": 25.56, + "grad_norm": 0.5342681407928467, + "learning_rate": 3.722566666666667e-05, + "loss": 2.012406921386719, + "step": 191700 + }, + { + "epoch": 25.573333333333334, + "grad_norm": 0.5252745151519775, + "learning_rate": 3.7219000000000004e-05, + "loss": 2.011879577636719, + "step": 191800 + }, + { + "epoch": 25.586666666666666, + "grad_norm": 0.5306975245475769, + "learning_rate": 3.721233333333333e-05, + "loss": 2.0142337036132814, + "step": 191900 + }, + { + "epoch": 25.6, + "grad_norm": 0.5551440119743347, + "learning_rate": 3.720566666666667e-05, + "loss": 2.011077880859375, + "step": 192000 + }, + { + "epoch": 25.613333333333333, + "grad_norm": 0.5400145053863525, + "learning_rate": 3.7199e-05, + "loss": 2.012953643798828, + "step": 192100 + }, + { + "epoch": 25.626666666666665, + "grad_norm": 0.5293111205101013, + "learning_rate": 3.719233333333333e-05, + "loss": 2.0181004333496095, + "step": 192200 + }, + { + "epoch": 25.64, + "grad_norm": 0.5242292284965515, + "learning_rate": 3.7185666666666665e-05, + "loss": 2.017105712890625, + "step": 192300 + }, + { + "epoch": 25.653333333333332, + "grad_norm": 0.5292710065841675, + "learning_rate": 3.7179000000000004e-05, + "loss": 2.0163299560546877, + "step": 192400 + }, + { + "epoch": 25.666666666666668, + "grad_norm": 0.5424890518188477, + "learning_rate": 3.717233333333334e-05, + "loss": 2.015196533203125, + "step": 192500 + }, + { + "epoch": 25.68, + "grad_norm": 0.5193257927894592, + "learning_rate": 3.716566666666667e-05, + "loss": 2.0220237731933595, + "step": 192600 + }, + { + "epoch": 25.693333333333335, + "grad_norm": 0.5442838072776794, + "learning_rate": 3.7159e-05, + "loss": 2.0192355346679687, + "step": 192700 + }, + { + "epoch": 25.706666666666667, + "grad_norm": 0.5463152527809143, + "learning_rate": 3.7152333333333333e-05, + "loss": 2.0164019775390627, + "step": 192800 + }, + { + "epoch": 25.72, + "grad_norm": 0.5344257354736328, + "learning_rate": 3.7145666666666666e-05, + "loss": 2.0162734985351562, + "step": 192900 + }, + { + "epoch": 25.733333333333334, + "grad_norm": 0.5351117253303528, + "learning_rate": 3.7139000000000005e-05, + "loss": 2.023134460449219, + "step": 193000 + }, + { + "epoch": 25.746666666666666, + "grad_norm": 0.5418599843978882, + "learning_rate": 3.713233333333334e-05, + "loss": 2.020071563720703, + "step": 193100 + }, + { + "epoch": 25.76, + "grad_norm": 0.5406211018562317, + "learning_rate": 3.712566666666667e-05, + "loss": 2.0211688232421876, + "step": 193200 + }, + { + "epoch": 25.773333333333333, + "grad_norm": 0.5392265915870667, + "learning_rate": 3.7119e-05, + "loss": 2.02107177734375, + "step": 193300 + }, + { + "epoch": 25.786666666666665, + "grad_norm": 0.5478586554527283, + "learning_rate": 3.71124e-05, + "loss": 2.0197589111328127, + "step": 193400 + }, + { + "epoch": 25.8, + "grad_norm": 0.5384021401405334, + "learning_rate": 3.710573333333334e-05, + "loss": 2.0261798095703125, + "step": 193500 + }, + { + "epoch": 25.813333333333333, + "grad_norm": 0.5637001991271973, + "learning_rate": 3.709906666666667e-05, + "loss": 2.0208526611328126, + "step": 193600 + }, + { + "epoch": 25.826666666666668, + "grad_norm": 0.5373884439468384, + "learning_rate": 3.70924e-05, + "loss": 2.0243865966796877, + "step": 193700 + }, + { + "epoch": 25.84, + "grad_norm": 0.5258835554122925, + "learning_rate": 3.7085733333333336e-05, + "loss": 2.025778961181641, + "step": 193800 + }, + { + "epoch": 25.85333333333333, + "grad_norm": 0.5321053862571716, + "learning_rate": 3.707906666666667e-05, + "loss": 2.0245960998535155, + "step": 193900 + }, + { + "epoch": 25.866666666666667, + "grad_norm": 0.5242984294891357, + "learning_rate": 3.70724e-05, + "loss": 2.027090301513672, + "step": 194000 + }, + { + "epoch": 25.88, + "grad_norm": 0.5495437979698181, + "learning_rate": 3.706573333333333e-05, + "loss": 2.0237530517578124, + "step": 194100 + }, + { + "epoch": 25.893333333333334, + "grad_norm": 0.5291945338249207, + "learning_rate": 3.705906666666667e-05, + "loss": 2.0295460510253904, + "step": 194200 + }, + { + "epoch": 25.906666666666666, + "grad_norm": 0.5402800440788269, + "learning_rate": 3.7052400000000005e-05, + "loss": 2.0260325622558595, + "step": 194300 + }, + { + "epoch": 25.92, + "grad_norm": 0.5184854865074158, + "learning_rate": 3.704573333333334e-05, + "loss": 2.0257765197753907, + "step": 194400 + }, + { + "epoch": 25.933333333333334, + "grad_norm": 0.53758704662323, + "learning_rate": 3.703906666666667e-05, + "loss": 2.0274493408203127, + "step": 194500 + }, + { + "epoch": 25.946666666666665, + "grad_norm": 0.5527028441429138, + "learning_rate": 3.70324e-05, + "loss": 2.0257112121582033, + "step": 194600 + }, + { + "epoch": 25.96, + "grad_norm": 0.5566267967224121, + "learning_rate": 3.7025733333333334e-05, + "loss": 2.026977081298828, + "step": 194700 + }, + { + "epoch": 25.973333333333333, + "grad_norm": 0.5336237549781799, + "learning_rate": 3.7019066666666666e-05, + "loss": 2.028018035888672, + "step": 194800 + }, + { + "epoch": 25.986666666666668, + "grad_norm": 0.5185402631759644, + "learning_rate": 3.7012400000000005e-05, + "loss": 2.0281407165527345, + "step": 194900 + }, + { + "epoch": 26.0, + "grad_norm": 0.5450587272644043, + "learning_rate": 3.700573333333334e-05, + "loss": 2.0281640625, + "step": 195000 + }, + { + "epoch": 26.013333333333332, + "grad_norm": 0.541812002658844, + "learning_rate": 3.699906666666667e-05, + "loss": 1.957196044921875, + "step": 195100 + }, + { + "epoch": 26.026666666666667, + "grad_norm": 0.5567891597747803, + "learning_rate": 3.69924e-05, + "loss": 1.9547212219238281, + "step": 195200 + }, + { + "epoch": 26.04, + "grad_norm": 0.5365836024284363, + "learning_rate": 3.6985733333333334e-05, + "loss": 1.9568002319335938, + "step": 195300 + }, + { + "epoch": 26.053333333333335, + "grad_norm": 0.5200800895690918, + "learning_rate": 3.697913333333334e-05, + "loss": 1.9555859375, + "step": 195400 + }, + { + "epoch": 26.066666666666666, + "grad_norm": 0.5740585327148438, + "learning_rate": 3.6972466666666665e-05, + "loss": 1.9540396118164063, + "step": 195500 + }, + { + "epoch": 26.08, + "grad_norm": 0.5473860502243042, + "learning_rate": 3.69658e-05, + "loss": 1.9564674377441407, + "step": 195600 + }, + { + "epoch": 26.093333333333334, + "grad_norm": 0.5414859652519226, + "learning_rate": 3.695913333333334e-05, + "loss": 1.9615504455566406, + "step": 195700 + }, + { + "epoch": 26.106666666666666, + "grad_norm": 0.5546607375144958, + "learning_rate": 3.695246666666667e-05, + "loss": 1.9621275329589845, + "step": 195800 + }, + { + "epoch": 26.12, + "grad_norm": 0.5604114532470703, + "learning_rate": 3.69458e-05, + "loss": 1.958752899169922, + "step": 195900 + }, + { + "epoch": 26.133333333333333, + "grad_norm": 0.5639984607696533, + "learning_rate": 3.6939133333333334e-05, + "loss": 1.9659051513671875, + "step": 196000 + }, + { + "epoch": 26.14666666666667, + "grad_norm": 0.552521288394928, + "learning_rate": 3.693246666666667e-05, + "loss": 1.9680455017089844, + "step": 196100 + }, + { + "epoch": 26.16, + "grad_norm": 0.5784633755683899, + "learning_rate": 3.69258e-05, + "loss": 1.9671054077148438, + "step": 196200 + }, + { + "epoch": 26.173333333333332, + "grad_norm": 0.558786928653717, + "learning_rate": 3.691913333333333e-05, + "loss": 1.9637820434570312, + "step": 196300 + }, + { + "epoch": 26.186666666666667, + "grad_norm": 0.577648401260376, + "learning_rate": 3.691246666666667e-05, + "loss": 1.9695333862304687, + "step": 196400 + }, + { + "epoch": 26.2, + "grad_norm": 0.5630086064338684, + "learning_rate": 3.69058e-05, + "loss": 1.9683534240722655, + "step": 196500 + }, + { + "epoch": 26.213333333333335, + "grad_norm": 0.5924582481384277, + "learning_rate": 3.6899133333333334e-05, + "loss": 1.9684716796875, + "step": 196600 + }, + { + "epoch": 26.226666666666667, + "grad_norm": 0.5777826309204102, + "learning_rate": 3.689246666666667e-05, + "loss": 1.9659332275390624, + "step": 196700 + }, + { + "epoch": 26.24, + "grad_norm": 0.5597606301307678, + "learning_rate": 3.6885800000000005e-05, + "loss": 1.9684400939941407, + "step": 196800 + }, + { + "epoch": 26.253333333333334, + "grad_norm": 0.5973007082939148, + "learning_rate": 3.687913333333334e-05, + "loss": 1.968690185546875, + "step": 196900 + }, + { + "epoch": 26.266666666666666, + "grad_norm": 0.5487164855003357, + "learning_rate": 3.687246666666666e-05, + "loss": 1.9721401977539061, + "step": 197000 + }, + { + "epoch": 26.28, + "grad_norm": 0.5761642456054688, + "learning_rate": 3.68658e-05, + "loss": 1.9738571166992187, + "step": 197100 + }, + { + "epoch": 26.293333333333333, + "grad_norm": 0.5579527020454407, + "learning_rate": 3.6859133333333334e-05, + "loss": 1.9721127319335938, + "step": 197200 + }, + { + "epoch": 26.306666666666665, + "grad_norm": 0.5521603226661682, + "learning_rate": 3.6852466666666667e-05, + "loss": 1.9772552490234374, + "step": 197300 + }, + { + "epoch": 26.32, + "grad_norm": 0.5767320394515991, + "learning_rate": 3.6845800000000006e-05, + "loss": 1.975111846923828, + "step": 197400 + }, + { + "epoch": 26.333333333333332, + "grad_norm": 0.568122148513794, + "learning_rate": 3.6839200000000005e-05, + "loss": 1.9748057556152343, + "step": 197500 + }, + { + "epoch": 26.346666666666668, + "grad_norm": 0.54569411277771, + "learning_rate": 3.683253333333334e-05, + "loss": 1.975630340576172, + "step": 197600 + }, + { + "epoch": 26.36, + "grad_norm": 0.5550498962402344, + "learning_rate": 3.682586666666667e-05, + "loss": 1.976104736328125, + "step": 197700 + }, + { + "epoch": 26.373333333333335, + "grad_norm": 0.5575002431869507, + "learning_rate": 3.68192e-05, + "loss": 1.979742431640625, + "step": 197800 + }, + { + "epoch": 26.386666666666667, + "grad_norm": 0.5659462809562683, + "learning_rate": 3.681253333333334e-05, + "loss": 1.982191925048828, + "step": 197900 + }, + { + "epoch": 26.4, + "grad_norm": 0.5659615397453308, + "learning_rate": 3.6805866666666666e-05, + "loss": 1.979058837890625, + "step": 198000 + }, + { + "epoch": 26.413333333333334, + "grad_norm": 0.5449748039245605, + "learning_rate": 3.67992e-05, + "loss": 1.9774148559570313, + "step": 198100 + }, + { + "epoch": 26.426666666666666, + "grad_norm": 0.578723669052124, + "learning_rate": 3.679253333333334e-05, + "loss": 1.9768846130371094, + "step": 198200 + }, + { + "epoch": 26.44, + "grad_norm": 0.5675528645515442, + "learning_rate": 3.678586666666667e-05, + "loss": 1.979735107421875, + "step": 198300 + }, + { + "epoch": 26.453333333333333, + "grad_norm": 0.5619545578956604, + "learning_rate": 3.67792e-05, + "loss": 1.9831944274902344, + "step": 198400 + }, + { + "epoch": 26.466666666666665, + "grad_norm": 0.5641692876815796, + "learning_rate": 3.6772533333333334e-05, + "loss": 1.9841481018066407, + "step": 198500 + }, + { + "epoch": 26.48, + "grad_norm": 0.569416344165802, + "learning_rate": 3.676586666666667e-05, + "loss": 1.981822509765625, + "step": 198600 + }, + { + "epoch": 26.493333333333332, + "grad_norm": 0.583523690700531, + "learning_rate": 3.67592e-05, + "loss": 1.982010955810547, + "step": 198700 + }, + { + "epoch": 26.506666666666668, + "grad_norm": 0.5771437883377075, + "learning_rate": 3.675253333333333e-05, + "loss": 1.9882267761230468, + "step": 198800 + }, + { + "epoch": 26.52, + "grad_norm": 0.6403129696846008, + "learning_rate": 3.674586666666667e-05, + "loss": 1.985286102294922, + "step": 198900 + }, + { + "epoch": 26.533333333333335, + "grad_norm": 0.5762969851493835, + "learning_rate": 3.67392e-05, + "loss": 1.9854814147949218, + "step": 199000 + }, + { + "epoch": 26.546666666666667, + "grad_norm": 0.5455479025840759, + "learning_rate": 3.6732533333333335e-05, + "loss": 1.9807121276855468, + "step": 199100 + }, + { + "epoch": 26.56, + "grad_norm": 0.5566051006317139, + "learning_rate": 3.672586666666667e-05, + "loss": 1.99121337890625, + "step": 199200 + }, + { + "epoch": 26.573333333333334, + "grad_norm": 0.5699354410171509, + "learning_rate": 3.6719200000000006e-05, + "loss": 1.9884609985351562, + "step": 199300 + }, + { + "epoch": 26.586666666666666, + "grad_norm": 0.5869739651679993, + "learning_rate": 3.671253333333334e-05, + "loss": 1.9882350158691406, + "step": 199400 + }, + { + "epoch": 26.6, + "grad_norm": 0.5663924813270569, + "learning_rate": 3.670593333333334e-05, + "loss": 1.9908465576171874, + "step": 199500 + }, + { + "epoch": 26.613333333333333, + "grad_norm": 0.5577260255813599, + "learning_rate": 3.669926666666667e-05, + "loss": 1.9867439270019531, + "step": 199600 + }, + { + "epoch": 26.626666666666665, + "grad_norm": 0.5420724153518677, + "learning_rate": 3.66926e-05, + "loss": 1.9890168762207032, + "step": 199700 + }, + { + "epoch": 26.64, + "grad_norm": 0.5668867230415344, + "learning_rate": 3.6685933333333334e-05, + "loss": 1.989038848876953, + "step": 199800 + }, + { + "epoch": 26.653333333333332, + "grad_norm": 0.536382257938385, + "learning_rate": 3.6679266666666666e-05, + "loss": 1.9933232116699218, + "step": 199900 + }, + { + "epoch": 26.666666666666668, + "grad_norm": 0.6233078837394714, + "learning_rate": 3.66726e-05, + "loss": 1.9922142028808594, + "step": 200000 + }, + { + "epoch": 26.68, + "grad_norm": 0.5758584141731262, + "learning_rate": 3.666593333333334e-05, + "loss": 1.9919984436035156, + "step": 200100 + }, + { + "epoch": 26.693333333333335, + "grad_norm": 0.5576504468917847, + "learning_rate": 3.665926666666667e-05, + "loss": 1.9917649841308593, + "step": 200200 + }, + { + "epoch": 26.706666666666667, + "grad_norm": 0.5854286551475525, + "learning_rate": 3.66526e-05, + "loss": 1.9912901306152344, + "step": 200300 + }, + { + "epoch": 26.72, + "grad_norm": 0.5664922595024109, + "learning_rate": 3.6645933333333334e-05, + "loss": 1.998155059814453, + "step": 200400 + }, + { + "epoch": 26.733333333333334, + "grad_norm": 0.5407897233963013, + "learning_rate": 3.663926666666667e-05, + "loss": 1.9952912902832032, + "step": 200500 + }, + { + "epoch": 26.746666666666666, + "grad_norm": 0.5883836150169373, + "learning_rate": 3.66326e-05, + "loss": 1.9951287841796874, + "step": 200600 + }, + { + "epoch": 26.76, + "grad_norm": 0.5882517099380493, + "learning_rate": 3.662593333333333e-05, + "loss": 1.9948817443847657, + "step": 200700 + }, + { + "epoch": 26.773333333333333, + "grad_norm": 0.572609543800354, + "learning_rate": 3.661926666666667e-05, + "loss": 1.9994200134277345, + "step": 200800 + }, + { + "epoch": 26.786666666666665, + "grad_norm": 0.5723763108253479, + "learning_rate": 3.66126e-05, + "loss": 1.9964186096191405, + "step": 200900 + }, + { + "epoch": 26.8, + "grad_norm": 0.571183979511261, + "learning_rate": 3.6605933333333335e-05, + "loss": 1.9989100646972657, + "step": 201000 + }, + { + "epoch": 26.813333333333333, + "grad_norm": 0.5754789113998413, + "learning_rate": 3.6599266666666674e-05, + "loss": 1.9968698120117188, + "step": 201100 + }, + { + "epoch": 26.826666666666668, + "grad_norm": 0.5623466372489929, + "learning_rate": 3.65926e-05, + "loss": 1.9973426818847657, + "step": 201200 + }, + { + "epoch": 26.84, + "grad_norm": 0.5691098570823669, + "learning_rate": 3.658593333333333e-05, + "loss": 1.995333709716797, + "step": 201300 + }, + { + "epoch": 26.85333333333333, + "grad_norm": 0.5785391926765442, + "learning_rate": 3.657926666666667e-05, + "loss": 2.0026919555664064, + "step": 201400 + }, + { + "epoch": 26.866666666666667, + "grad_norm": 0.5716009736061096, + "learning_rate": 3.657266666666666e-05, + "loss": 1.9967724609375, + "step": 201500 + }, + { + "epoch": 26.88, + "grad_norm": 0.5728231072425842, + "learning_rate": 3.6566e-05, + "loss": 2.003606719970703, + "step": 201600 + }, + { + "epoch": 26.893333333333334, + "grad_norm": 0.5723952054977417, + "learning_rate": 3.6559333333333334e-05, + "loss": 2.0006785583496094, + "step": 201700 + }, + { + "epoch": 26.906666666666666, + "grad_norm": 0.5781197547912598, + "learning_rate": 3.6552666666666666e-05, + "loss": 2.001742095947266, + "step": 201800 + }, + { + "epoch": 26.92, + "grad_norm": 0.5599796772003174, + "learning_rate": 3.6546000000000006e-05, + "loss": 2.0006167602539064, + "step": 201900 + }, + { + "epoch": 26.933333333333334, + "grad_norm": 0.6010822653770447, + "learning_rate": 3.653933333333334e-05, + "loss": 2.0031967163085938, + "step": 202000 + }, + { + "epoch": 26.946666666666665, + "grad_norm": 0.563437819480896, + "learning_rate": 3.653266666666667e-05, + "loss": 2.004565887451172, + "step": 202100 + }, + { + "epoch": 26.96, + "grad_norm": 0.5698239803314209, + "learning_rate": 3.6526e-05, + "loss": 2.004854431152344, + "step": 202200 + }, + { + "epoch": 26.973333333333333, + "grad_norm": 0.5538843274116516, + "learning_rate": 3.6519333333333335e-05, + "loss": 2.006410827636719, + "step": 202300 + }, + { + "epoch": 26.986666666666668, + "grad_norm": 0.590229332447052, + "learning_rate": 3.651266666666667e-05, + "loss": 2.004330596923828, + "step": 202400 + }, + { + "epoch": 27.0, + "grad_norm": 0.5651915073394775, + "learning_rate": 3.6506e-05, + "loss": 2.004520263671875, + "step": 202500 + }, + { + "epoch": 27.013333333333332, + "grad_norm": 0.581447184085846, + "learning_rate": 3.649933333333334e-05, + "loss": 1.927707977294922, + "step": 202600 + }, + { + "epoch": 27.026666666666667, + "grad_norm": 0.5724103450775146, + "learning_rate": 3.649266666666667e-05, + "loss": 1.9301573181152343, + "step": 202700 + }, + { + "epoch": 27.04, + "grad_norm": 0.5678054690361023, + "learning_rate": 3.6486e-05, + "loss": 1.9268736267089843, + "step": 202800 + }, + { + "epoch": 27.053333333333335, + "grad_norm": 0.5841068625450134, + "learning_rate": 3.6479333333333335e-05, + "loss": 1.9276795959472657, + "step": 202900 + }, + { + "epoch": 27.066666666666666, + "grad_norm": 0.5919205546379089, + "learning_rate": 3.647266666666667e-05, + "loss": 1.9338473510742187, + "step": 203000 + }, + { + "epoch": 27.08, + "grad_norm": 0.593210756778717, + "learning_rate": 3.6466e-05, + "loss": 1.9268548583984375, + "step": 203100 + }, + { + "epoch": 27.093333333333334, + "grad_norm": 0.5299606919288635, + "learning_rate": 3.645933333333333e-05, + "loss": 1.9322509765625, + "step": 203200 + }, + { + "epoch": 27.106666666666666, + "grad_norm": 0.5877776741981506, + "learning_rate": 3.645266666666667e-05, + "loss": 1.9314346313476562, + "step": 203300 + }, + { + "epoch": 27.12, + "grad_norm": 0.5868698954582214, + "learning_rate": 3.6446e-05, + "loss": 1.9356802368164063, + "step": 203400 + }, + { + "epoch": 27.133333333333333, + "grad_norm": 0.5853486061096191, + "learning_rate": 3.64394e-05, + "loss": 1.9343838500976562, + "step": 203500 + }, + { + "epoch": 27.14666666666667, + "grad_norm": 0.5599203705787659, + "learning_rate": 3.6432733333333334e-05, + "loss": 1.9365560913085937, + "step": 203600 + }, + { + "epoch": 27.16, + "grad_norm": 0.5584514737129211, + "learning_rate": 3.642606666666667e-05, + "loss": 1.9372349548339844, + "step": 203700 + }, + { + "epoch": 27.173333333333332, + "grad_norm": 0.5899976491928101, + "learning_rate": 3.6419400000000006e-05, + "loss": 1.94076416015625, + "step": 203800 + }, + { + "epoch": 27.186666666666667, + "grad_norm": 0.5896082520484924, + "learning_rate": 3.641273333333334e-05, + "loss": 1.9411949157714843, + "step": 203900 + }, + { + "epoch": 27.2, + "grad_norm": 0.6029268503189087, + "learning_rate": 3.6406066666666663e-05, + "loss": 1.9456289672851563, + "step": 204000 + }, + { + "epoch": 27.213333333333335, + "grad_norm": 0.5602301955223083, + "learning_rate": 3.63994e-05, + "loss": 1.9383029174804687, + "step": 204100 + }, + { + "epoch": 27.226666666666667, + "grad_norm": 0.5736998319625854, + "learning_rate": 3.6392733333333335e-05, + "loss": 1.945543975830078, + "step": 204200 + }, + { + "epoch": 27.24, + "grad_norm": 0.5835820436477661, + "learning_rate": 3.638606666666667e-05, + "loss": 1.9456192016601563, + "step": 204300 + }, + { + "epoch": 27.253333333333334, + "grad_norm": 0.5935140252113342, + "learning_rate": 3.63794e-05, + "loss": 1.9459524536132813, + "step": 204400 + }, + { + "epoch": 27.266666666666666, + "grad_norm": 0.5856873393058777, + "learning_rate": 3.637273333333334e-05, + "loss": 1.9468795776367187, + "step": 204500 + }, + { + "epoch": 27.28, + "grad_norm": 0.5846020579338074, + "learning_rate": 3.636606666666667e-05, + "loss": 1.947487335205078, + "step": 204600 + }, + { + "epoch": 27.293333333333333, + "grad_norm": 0.6289901733398438, + "learning_rate": 3.6359399999999996e-05, + "loss": 1.9467887878417969, + "step": 204700 + }, + { + "epoch": 27.306666666666665, + "grad_norm": 0.5840248465538025, + "learning_rate": 3.6352733333333335e-05, + "loss": 1.9474456787109375, + "step": 204800 + }, + { + "epoch": 27.32, + "grad_norm": 0.5707332491874695, + "learning_rate": 3.634606666666667e-05, + "loss": 1.9438954162597657, + "step": 204900 + }, + { + "epoch": 27.333333333333332, + "grad_norm": 0.5975301861763, + "learning_rate": 3.63394e-05, + "loss": 1.951266326904297, + "step": 205000 + }, + { + "epoch": 27.346666666666668, + "grad_norm": 0.5705687999725342, + "learning_rate": 3.633273333333333e-05, + "loss": 1.9507940673828126, + "step": 205100 + }, + { + "epoch": 27.36, + "grad_norm": 0.5590121150016785, + "learning_rate": 3.632606666666667e-05, + "loss": 1.9493692016601563, + "step": 205200 + }, + { + "epoch": 27.373333333333335, + "grad_norm": 0.5685244798660278, + "learning_rate": 3.63194e-05, + "loss": 1.950657196044922, + "step": 205300 + }, + { + "epoch": 27.386666666666667, + "grad_norm": 0.5888789892196655, + "learning_rate": 3.6312733333333336e-05, + "loss": 1.9549993896484374, + "step": 205400 + }, + { + "epoch": 27.4, + "grad_norm": 0.5904676914215088, + "learning_rate": 3.6306133333333335e-05, + "loss": 1.955000762939453, + "step": 205500 + }, + { + "epoch": 27.413333333333334, + "grad_norm": 0.5819377303123474, + "learning_rate": 3.6299466666666674e-05, + "loss": 1.9578860473632813, + "step": 205600 + }, + { + "epoch": 27.426666666666666, + "grad_norm": 0.5758692026138306, + "learning_rate": 3.62928e-05, + "loss": 1.9549250793457031, + "step": 205700 + }, + { + "epoch": 27.44, + "grad_norm": 0.6009901165962219, + "learning_rate": 3.628613333333333e-05, + "loss": 1.952675323486328, + "step": 205800 + }, + { + "epoch": 27.453333333333333, + "grad_norm": 0.5837755799293518, + "learning_rate": 3.627946666666667e-05, + "loss": 1.9591851806640626, + "step": 205900 + }, + { + "epoch": 27.466666666666665, + "grad_norm": 0.5634909272193909, + "learning_rate": 3.62728e-05, + "loss": 1.9552839660644532, + "step": 206000 + }, + { + "epoch": 27.48, + "grad_norm": 0.5781852602958679, + "learning_rate": 3.6266133333333335e-05, + "loss": 1.9604965209960938, + "step": 206100 + }, + { + "epoch": 27.493333333333332, + "grad_norm": 0.58583664894104, + "learning_rate": 3.625946666666667e-05, + "loss": 1.9583544921875, + "step": 206200 + }, + { + "epoch": 27.506666666666668, + "grad_norm": 0.5962403416633606, + "learning_rate": 3.6252800000000006e-05, + "loss": 1.9607644653320313, + "step": 206300 + }, + { + "epoch": 27.52, + "grad_norm": 0.5640053749084473, + "learning_rate": 3.624613333333334e-05, + "loss": 1.9606808471679686, + "step": 206400 + }, + { + "epoch": 27.533333333333335, + "grad_norm": 0.5817745327949524, + "learning_rate": 3.6239466666666664e-05, + "loss": 1.9592042541503907, + "step": 206500 + }, + { + "epoch": 27.546666666666667, + "grad_norm": 0.6114230751991272, + "learning_rate": 3.62328e-05, + "loss": 1.9615921020507812, + "step": 206600 + }, + { + "epoch": 27.56, + "grad_norm": 0.5722009539604187, + "learning_rate": 3.6226133333333335e-05, + "loss": 1.9608853149414063, + "step": 206700 + }, + { + "epoch": 27.573333333333334, + "grad_norm": 0.5720607042312622, + "learning_rate": 3.621946666666667e-05, + "loss": 1.962681884765625, + "step": 206800 + }, + { + "epoch": 27.586666666666666, + "grad_norm": 0.596661388874054, + "learning_rate": 3.62128e-05, + "loss": 1.9644792175292969, + "step": 206900 + }, + { + "epoch": 27.6, + "grad_norm": 0.5807399749755859, + "learning_rate": 3.620613333333334e-05, + "loss": 1.9695454406738282, + "step": 207000 + }, + { + "epoch": 27.613333333333333, + "grad_norm": 0.5708223581314087, + "learning_rate": 3.619946666666667e-05, + "loss": 1.963555145263672, + "step": 207100 + }, + { + "epoch": 27.626666666666665, + "grad_norm": 0.5941387414932251, + "learning_rate": 3.6192800000000004e-05, + "loss": 1.9702226257324218, + "step": 207200 + }, + { + "epoch": 27.64, + "grad_norm": 0.568341851234436, + "learning_rate": 3.6186133333333336e-05, + "loss": 1.9717837524414064, + "step": 207300 + }, + { + "epoch": 27.653333333333332, + "grad_norm": 0.5917574167251587, + "learning_rate": 3.617946666666667e-05, + "loss": 1.9671156311035156, + "step": 207400 + }, + { + "epoch": 27.666666666666668, + "grad_norm": 0.5893895030021667, + "learning_rate": 3.61728e-05, + "loss": 1.9676268005371094, + "step": 207500 + }, + { + "epoch": 27.68, + "grad_norm": 0.5909178256988525, + "learning_rate": 3.61662e-05, + "loss": 1.9683328247070313, + "step": 207600 + }, + { + "epoch": 27.693333333333335, + "grad_norm": 0.601280689239502, + "learning_rate": 3.615953333333333e-05, + "loss": 1.9703788757324219, + "step": 207700 + }, + { + "epoch": 27.706666666666667, + "grad_norm": 0.5855022072792053, + "learning_rate": 3.615286666666667e-05, + "loss": 1.9706231689453124, + "step": 207800 + }, + { + "epoch": 27.72, + "grad_norm": 0.5767050385475159, + "learning_rate": 3.61462e-05, + "loss": 1.9699440002441406, + "step": 207900 + }, + { + "epoch": 27.733333333333334, + "grad_norm": 0.5902249813079834, + "learning_rate": 3.6139533333333335e-05, + "loss": 1.964881134033203, + "step": 208000 + }, + { + "epoch": 27.746666666666666, + "grad_norm": 0.5634693503379822, + "learning_rate": 3.613286666666667e-05, + "loss": 1.9723870849609375, + "step": 208100 + }, + { + "epoch": 27.76, + "grad_norm": 0.6080737113952637, + "learning_rate": 3.6126200000000007e-05, + "loss": 1.968502197265625, + "step": 208200 + }, + { + "epoch": 27.773333333333333, + "grad_norm": 0.5652815103530884, + "learning_rate": 3.611953333333333e-05, + "loss": 1.9760067749023438, + "step": 208300 + }, + { + "epoch": 27.786666666666665, + "grad_norm": 0.5851750373840332, + "learning_rate": 3.6112866666666664e-05, + "loss": 1.9739956665039062, + "step": 208400 + }, + { + "epoch": 27.8, + "grad_norm": 0.5799194574356079, + "learning_rate": 3.61062e-05, + "loss": 1.9709002685546875, + "step": 208500 + }, + { + "epoch": 27.813333333333333, + "grad_norm": 0.607318103313446, + "learning_rate": 3.6099533333333336e-05, + "loss": 1.9714559936523437, + "step": 208600 + }, + { + "epoch": 27.826666666666668, + "grad_norm": 0.570615828037262, + "learning_rate": 3.609286666666667e-05, + "loss": 1.9726187133789062, + "step": 208700 + }, + { + "epoch": 27.84, + "grad_norm": 0.5773420929908752, + "learning_rate": 3.60862e-05, + "loss": 1.9740589904785155, + "step": 208800 + }, + { + "epoch": 27.85333333333333, + "grad_norm": 0.5621991753578186, + "learning_rate": 3.607953333333334e-05, + "loss": 1.9761262512207032, + "step": 208900 + }, + { + "epoch": 27.866666666666667, + "grad_norm": 0.5754197835922241, + "learning_rate": 3.6072866666666665e-05, + "loss": 1.9745481872558595, + "step": 209000 + }, + { + "epoch": 27.88, + "grad_norm": 0.5961983799934387, + "learning_rate": 3.60662e-05, + "loss": 1.9757182312011718, + "step": 209100 + }, + { + "epoch": 27.893333333333334, + "grad_norm": 0.5758571028709412, + "learning_rate": 3.6059533333333336e-05, + "loss": 1.974927978515625, + "step": 209200 + }, + { + "epoch": 27.906666666666666, + "grad_norm": 0.5897004008293152, + "learning_rate": 3.605286666666667e-05, + "loss": 1.97732177734375, + "step": 209300 + }, + { + "epoch": 27.92, + "grad_norm": 0.5555986762046814, + "learning_rate": 3.60462e-05, + "loss": 1.97912841796875, + "step": 209400 + }, + { + "epoch": 27.933333333333334, + "grad_norm": 0.5782080888748169, + "learning_rate": 3.603953333333334e-05, + "loss": 1.9758847045898438, + "step": 209500 + }, + { + "epoch": 27.946666666666665, + "grad_norm": 0.5872431397438049, + "learning_rate": 3.603293333333333e-05, + "loss": 1.9807801818847657, + "step": 209600 + }, + { + "epoch": 27.96, + "grad_norm": 0.6015269756317139, + "learning_rate": 3.602626666666667e-05, + "loss": 1.9804434204101562, + "step": 209700 + }, + { + "epoch": 27.973333333333333, + "grad_norm": 0.6062453985214233, + "learning_rate": 3.60196e-05, + "loss": 1.9817405700683595, + "step": 209800 + }, + { + "epoch": 27.986666666666668, + "grad_norm": 0.5964453220367432, + "learning_rate": 3.6012933333333335e-05, + "loss": 1.9792985534667968, + "step": 209900 + }, + { + "epoch": 28.0, + "grad_norm": 0.5917948484420776, + "learning_rate": 3.600626666666667e-05, + "loss": 1.9797233581542968, + "step": 210000 + }, + { + "epoch": 28.013333333333332, + "grad_norm": 0.5753324031829834, + "learning_rate": 3.59996e-05, + "loss": 1.8963658142089843, + "step": 210100 + }, + { + "epoch": 28.026666666666667, + "grad_norm": 0.5823311805725098, + "learning_rate": 3.599293333333333e-05, + "loss": 1.90039794921875, + "step": 210200 + }, + { + "epoch": 28.04, + "grad_norm": 0.6098815202713013, + "learning_rate": 3.598626666666667e-05, + "loss": 1.9037353515625, + "step": 210300 + }, + { + "epoch": 28.053333333333335, + "grad_norm": 0.591463565826416, + "learning_rate": 3.5979600000000004e-05, + "loss": 1.9031809997558593, + "step": 210400 + }, + { + "epoch": 28.066666666666666, + "grad_norm": 0.6484287977218628, + "learning_rate": 3.5972933333333336e-05, + "loss": 1.90722900390625, + "step": 210500 + }, + { + "epoch": 28.08, + "grad_norm": 0.5851206183433533, + "learning_rate": 3.596626666666667e-05, + "loss": 1.907454376220703, + "step": 210600 + }, + { + "epoch": 28.093333333333334, + "grad_norm": 0.5893003940582275, + "learning_rate": 3.595960000000001e-05, + "loss": 1.9102708435058593, + "step": 210700 + }, + { + "epoch": 28.106666666666666, + "grad_norm": 0.5920806527137756, + "learning_rate": 3.595293333333333e-05, + "loss": 1.906302490234375, + "step": 210800 + }, + { + "epoch": 28.12, + "grad_norm": 0.5820571780204773, + "learning_rate": 3.5946266666666665e-05, + "loss": 1.9106333923339844, + "step": 210900 + }, + { + "epoch": 28.133333333333333, + "grad_norm": 0.6000703573226929, + "learning_rate": 3.5939600000000004e-05, + "loss": 1.9108970642089844, + "step": 211000 + }, + { + "epoch": 28.14666666666667, + "grad_norm": 0.6043274402618408, + "learning_rate": 3.5932933333333336e-05, + "loss": 1.9127066040039062, + "step": 211100 + }, + { + "epoch": 28.16, + "grad_norm": 0.589103639125824, + "learning_rate": 3.592626666666667e-05, + "loss": 1.9146939086914063, + "step": 211200 + }, + { + "epoch": 28.173333333333332, + "grad_norm": 0.5709384679794312, + "learning_rate": 3.59196e-05, + "loss": 1.9095561218261718, + "step": 211300 + }, + { + "epoch": 28.186666666666667, + "grad_norm": 0.6060921549797058, + "learning_rate": 3.591293333333334e-05, + "loss": 1.912783203125, + "step": 211400 + }, + { + "epoch": 28.2, + "grad_norm": 0.6131394505500793, + "learning_rate": 3.5906266666666665e-05, + "loss": 1.9097198486328124, + "step": 211500 + }, + { + "epoch": 28.213333333333335, + "grad_norm": 0.5825812220573425, + "learning_rate": 3.589966666666667e-05, + "loss": 1.9186415100097656, + "step": 211600 + }, + { + "epoch": 28.226666666666667, + "grad_norm": 0.5944445729255676, + "learning_rate": 3.5893000000000003e-05, + "loss": 1.9187173461914062, + "step": 211700 + }, + { + "epoch": 28.24, + "grad_norm": 0.5729975700378418, + "learning_rate": 3.5886333333333336e-05, + "loss": 1.9198851013183593, + "step": 211800 + }, + { + "epoch": 28.253333333333334, + "grad_norm": 0.6041490435600281, + "learning_rate": 3.587966666666667e-05, + "loss": 1.9200152587890624, + "step": 211900 + }, + { + "epoch": 28.266666666666666, + "grad_norm": 0.6032606363296509, + "learning_rate": 3.5873e-05, + "loss": 1.9239161682128907, + "step": 212000 + }, + { + "epoch": 28.28, + "grad_norm": 0.6063857078552246, + "learning_rate": 3.586633333333333e-05, + "loss": 1.921931915283203, + "step": 212100 + }, + { + "epoch": 28.293333333333333, + "grad_norm": 0.6095187664031982, + "learning_rate": 3.585966666666667e-05, + "loss": 1.9245355224609375, + "step": 212200 + }, + { + "epoch": 28.306666666666665, + "grad_norm": 0.6013233065605164, + "learning_rate": 3.5853000000000004e-05, + "loss": 1.920060577392578, + "step": 212300 + }, + { + "epoch": 28.32, + "grad_norm": 0.5829028487205505, + "learning_rate": 3.5846333333333336e-05, + "loss": 1.923076171875, + "step": 212400 + }, + { + "epoch": 28.333333333333332, + "grad_norm": 0.6095953583717346, + "learning_rate": 3.583966666666667e-05, + "loss": 1.9266374206542969, + "step": 212500 + }, + { + "epoch": 28.346666666666668, + "grad_norm": 0.6123775243759155, + "learning_rate": 3.5833e-05, + "loss": 1.923944091796875, + "step": 212600 + }, + { + "epoch": 28.36, + "grad_norm": 0.6038895845413208, + "learning_rate": 3.582633333333333e-05, + "loss": 1.9256845092773438, + "step": 212700 + }, + { + "epoch": 28.373333333333335, + "grad_norm": 0.5949887037277222, + "learning_rate": 3.5819666666666665e-05, + "loss": 1.925125732421875, + "step": 212800 + }, + { + "epoch": 28.386666666666667, + "grad_norm": 0.5919845104217529, + "learning_rate": 3.5813000000000004e-05, + "loss": 1.92591796875, + "step": 212900 + }, + { + "epoch": 28.4, + "grad_norm": 0.5925742387771606, + "learning_rate": 3.5806333333333336e-05, + "loss": 1.9260887145996093, + "step": 213000 + }, + { + "epoch": 28.413333333333334, + "grad_norm": 0.5978710055351257, + "learning_rate": 3.579966666666667e-05, + "loss": 1.9299237060546874, + "step": 213100 + }, + { + "epoch": 28.426666666666666, + "grad_norm": 0.6156143546104431, + "learning_rate": 3.5793e-05, + "loss": 1.9283975219726563, + "step": 213200 + }, + { + "epoch": 28.44, + "grad_norm": 0.6074989438056946, + "learning_rate": 3.578633333333333e-05, + "loss": 1.9329901123046875, + "step": 213300 + }, + { + "epoch": 28.453333333333333, + "grad_norm": 0.6070049405097961, + "learning_rate": 3.5779666666666666e-05, + "loss": 1.9311386108398438, + "step": 213400 + }, + { + "epoch": 28.466666666666665, + "grad_norm": 0.627319872379303, + "learning_rate": 3.5773e-05, + "loss": 1.93387451171875, + "step": 213500 + }, + { + "epoch": 28.48, + "grad_norm": 0.6070690155029297, + "learning_rate": 3.57664e-05, + "loss": 1.933914337158203, + "step": 213600 + }, + { + "epoch": 28.493333333333332, + "grad_norm": 0.6085487008094788, + "learning_rate": 3.5759733333333336e-05, + "loss": 1.9377674865722656, + "step": 213700 + }, + { + "epoch": 28.506666666666668, + "grad_norm": 0.6239941120147705, + "learning_rate": 3.575306666666667e-05, + "loss": 1.9339775085449218, + "step": 213800 + }, + { + "epoch": 28.52, + "grad_norm": 0.6024758219718933, + "learning_rate": 3.57464e-05, + "loss": 1.9365673828125, + "step": 213900 + }, + { + "epoch": 28.533333333333335, + "grad_norm": 0.6340709924697876, + "learning_rate": 3.573973333333334e-05, + "loss": 1.9337480163574219, + "step": 214000 + }, + { + "epoch": 28.546666666666667, + "grad_norm": 0.5885015726089478, + "learning_rate": 3.573306666666667e-05, + "loss": 1.935907745361328, + "step": 214100 + }, + { + "epoch": 28.56, + "grad_norm": 0.6116124391555786, + "learning_rate": 3.5726400000000004e-05, + "loss": 1.9376171875, + "step": 214200 + }, + { + "epoch": 28.573333333333334, + "grad_norm": 0.5820707082748413, + "learning_rate": 3.571973333333333e-05, + "loss": 1.9389529418945313, + "step": 214300 + }, + { + "epoch": 28.586666666666666, + "grad_norm": 0.5670823454856873, + "learning_rate": 3.571306666666667e-05, + "loss": 1.938601531982422, + "step": 214400 + }, + { + "epoch": 28.6, + "grad_norm": 0.6194178462028503, + "learning_rate": 3.57064e-05, + "loss": 1.9407998657226562, + "step": 214500 + }, + { + "epoch": 28.613333333333333, + "grad_norm": 0.6202486753463745, + "learning_rate": 3.569973333333333e-05, + "loss": 1.9379768371582031, + "step": 214600 + }, + { + "epoch": 28.626666666666665, + "grad_norm": 0.6014044880867004, + "learning_rate": 3.569306666666667e-05, + "loss": 1.9406600952148438, + "step": 214700 + }, + { + "epoch": 28.64, + "grad_norm": 0.6088877320289612, + "learning_rate": 3.5686400000000004e-05, + "loss": 1.9415878295898437, + "step": 214800 + }, + { + "epoch": 28.653333333333332, + "grad_norm": 0.6067546010017395, + "learning_rate": 3.567973333333334e-05, + "loss": 1.9418251037597656, + "step": 214900 + }, + { + "epoch": 28.666666666666668, + "grad_norm": 0.5925686955451965, + "learning_rate": 3.567306666666667e-05, + "loss": 1.9406690979003907, + "step": 215000 + }, + { + "epoch": 28.68, + "grad_norm": 0.6045867800712585, + "learning_rate": 3.56664e-05, + "loss": 1.9402273559570313, + "step": 215100 + }, + { + "epoch": 28.693333333333335, + "grad_norm": 0.6042197942733765, + "learning_rate": 3.5659733333333334e-05, + "loss": 1.9467068481445313, + "step": 215200 + }, + { + "epoch": 28.706666666666667, + "grad_norm": 0.6190263628959656, + "learning_rate": 3.5653066666666666e-05, + "loss": 1.9422659301757812, + "step": 215300 + }, + { + "epoch": 28.72, + "grad_norm": 0.6239484548568726, + "learning_rate": 3.5646400000000005e-05, + "loss": 1.9453689575195312, + "step": 215400 + }, + { + "epoch": 28.733333333333334, + "grad_norm": 0.5972684621810913, + "learning_rate": 3.563973333333334e-05, + "loss": 1.945398406982422, + "step": 215500 + }, + { + "epoch": 28.746666666666666, + "grad_norm": 0.6258236169815063, + "learning_rate": 3.5633133333333336e-05, + "loss": 1.947290802001953, + "step": 215600 + }, + { + "epoch": 28.76, + "grad_norm": 0.6004676818847656, + "learning_rate": 3.562646666666667e-05, + "loss": 1.9425833129882812, + "step": 215700 + }, + { + "epoch": 28.773333333333333, + "grad_norm": 0.6066743731498718, + "learning_rate": 3.56198e-05, + "loss": 1.9450428771972657, + "step": 215800 + }, + { + "epoch": 28.786666666666665, + "grad_norm": 0.6220128536224365, + "learning_rate": 3.561313333333334e-05, + "loss": 1.9462014770507812, + "step": 215900 + }, + { + "epoch": 28.8, + "grad_norm": 0.6090360283851624, + "learning_rate": 3.5606466666666665e-05, + "loss": 1.9469538879394532, + "step": 216000 + }, + { + "epoch": 28.813333333333333, + "grad_norm": 0.5942463278770447, + "learning_rate": 3.55998e-05, + "loss": 1.9527642822265625, + "step": 216100 + }, + { + "epoch": 28.826666666666668, + "grad_norm": 0.6522825360298157, + "learning_rate": 3.5593133333333337e-05, + "loss": 1.947396240234375, + "step": 216200 + }, + { + "epoch": 28.84, + "grad_norm": 0.6047014594078064, + "learning_rate": 3.558646666666667e-05, + "loss": 1.953114013671875, + "step": 216300 + }, + { + "epoch": 28.85333333333333, + "grad_norm": 0.6015614867210388, + "learning_rate": 3.55798e-05, + "loss": 1.9483316040039063, + "step": 216400 + }, + { + "epoch": 28.866666666666667, + "grad_norm": 0.588139533996582, + "learning_rate": 3.557313333333333e-05, + "loss": 1.95369384765625, + "step": 216500 + }, + { + "epoch": 28.88, + "grad_norm": 0.6121417880058289, + "learning_rate": 3.556646666666667e-05, + "loss": 1.9504942321777343, + "step": 216600 + }, + { + "epoch": 28.893333333333334, + "grad_norm": 0.6152277588844299, + "learning_rate": 3.5559800000000005e-05, + "loss": 1.9528102111816406, + "step": 216700 + }, + { + "epoch": 28.906666666666666, + "grad_norm": 0.5864558815956116, + "learning_rate": 3.555313333333333e-05, + "loss": 1.9556744384765625, + "step": 216800 + }, + { + "epoch": 28.92, + "grad_norm": 0.6150722503662109, + "learning_rate": 3.554646666666667e-05, + "loss": 1.9557850646972657, + "step": 216900 + }, + { + "epoch": 28.933333333333334, + "grad_norm": 0.6126604676246643, + "learning_rate": 3.55398e-05, + "loss": 1.957655487060547, + "step": 217000 + }, + { + "epoch": 28.946666666666665, + "grad_norm": 0.6212007403373718, + "learning_rate": 3.5533133333333334e-05, + "loss": 1.952845458984375, + "step": 217100 + }, + { + "epoch": 28.96, + "grad_norm": 0.6093801856040955, + "learning_rate": 3.5526466666666666e-05, + "loss": 1.9500978088378906, + "step": 217200 + }, + { + "epoch": 28.973333333333333, + "grad_norm": 0.6195286512374878, + "learning_rate": 3.5519800000000005e-05, + "loss": 1.9568482971191405, + "step": 217300 + }, + { + "epoch": 28.986666666666668, + "grad_norm": 0.6141052842140198, + "learning_rate": 3.551313333333334e-05, + "loss": 1.9551716613769532, + "step": 217400 + }, + { + "epoch": 29.0, + "grad_norm": 0.6240456700325012, + "learning_rate": 3.550646666666666e-05, + "loss": 1.9593727111816406, + "step": 217500 + }, + { + "epoch": 29.013333333333332, + "grad_norm": 0.6141709089279175, + "learning_rate": 3.549986666666667e-05, + "loss": 1.8731291198730469, + "step": 217600 + }, + { + "epoch": 29.026666666666667, + "grad_norm": 0.6149386763572693, + "learning_rate": 3.54932e-05, + "loss": 1.8731167602539063, + "step": 217700 + }, + { + "epoch": 29.04, + "grad_norm": 0.6323212385177612, + "learning_rate": 3.548653333333333e-05, + "loss": 1.871314697265625, + "step": 217800 + }, + { + "epoch": 29.053333333333335, + "grad_norm": 0.6484255790710449, + "learning_rate": 3.5479866666666665e-05, + "loss": 1.8755429077148438, + "step": 217900 + }, + { + "epoch": 29.066666666666666, + "grad_norm": 0.6272088289260864, + "learning_rate": 3.54732e-05, + "loss": 1.8729833984375, + "step": 218000 + }, + { + "epoch": 29.08, + "grad_norm": 0.6121836304664612, + "learning_rate": 3.546653333333334e-05, + "loss": 1.87686767578125, + "step": 218100 + }, + { + "epoch": 29.093333333333334, + "grad_norm": 0.6073644757270813, + "learning_rate": 3.545986666666667e-05, + "loss": 1.8814959716796875, + "step": 218200 + }, + { + "epoch": 29.106666666666666, + "grad_norm": 0.6518145799636841, + "learning_rate": 3.54532e-05, + "loss": 1.8825758361816407, + "step": 218300 + }, + { + "epoch": 29.12, + "grad_norm": 0.6225592494010925, + "learning_rate": 3.544653333333334e-05, + "loss": 1.8884323120117188, + "step": 218400 + }, + { + "epoch": 29.133333333333333, + "grad_norm": 0.6254275441169739, + "learning_rate": 3.5439866666666666e-05, + "loss": 1.8810324096679687, + "step": 218500 + }, + { + "epoch": 29.14666666666667, + "grad_norm": 0.6428091526031494, + "learning_rate": 3.54332e-05, + "loss": 1.8841964721679687, + "step": 218600 + }, + { + "epoch": 29.16, + "grad_norm": 0.6066590547561646, + "learning_rate": 3.542653333333334e-05, + "loss": 1.8872183227539063, + "step": 218700 + }, + { + "epoch": 29.173333333333332, + "grad_norm": 0.6072599291801453, + "learning_rate": 3.541986666666667e-05, + "loss": 1.888301544189453, + "step": 218800 + }, + { + "epoch": 29.186666666666667, + "grad_norm": 0.6293680667877197, + "learning_rate": 3.54132e-05, + "loss": 1.891027374267578, + "step": 218900 + }, + { + "epoch": 29.2, + "grad_norm": 0.6067629456520081, + "learning_rate": 3.5406533333333334e-05, + "loss": 1.8863351440429688, + "step": 219000 + }, + { + "epoch": 29.213333333333335, + "grad_norm": 0.5995946526527405, + "learning_rate": 3.539986666666667e-05, + "loss": 1.8922694396972657, + "step": 219100 + }, + { + "epoch": 29.226666666666667, + "grad_norm": 0.6211652159690857, + "learning_rate": 3.5393200000000005e-05, + "loss": 1.8898019409179687, + "step": 219200 + }, + { + "epoch": 29.24, + "grad_norm": 0.6280918717384338, + "learning_rate": 3.538653333333333e-05, + "loss": 1.892053680419922, + "step": 219300 + }, + { + "epoch": 29.253333333333334, + "grad_norm": 0.6313039064407349, + "learning_rate": 3.537986666666667e-05, + "loss": 1.8970526123046876, + "step": 219400 + }, + { + "epoch": 29.266666666666666, + "grad_norm": 0.6204928159713745, + "learning_rate": 3.53732e-05, + "loss": 1.8941494750976562, + "step": 219500 + }, + { + "epoch": 29.28, + "grad_norm": 0.6099953055381775, + "learning_rate": 3.53666e-05, + "loss": 1.8936624145507812, + "step": 219600 + }, + { + "epoch": 29.293333333333333, + "grad_norm": 0.6010173559188843, + "learning_rate": 3.5359933333333333e-05, + "loss": 1.8962115478515624, + "step": 219700 + }, + { + "epoch": 29.306666666666665, + "grad_norm": 0.6187490820884705, + "learning_rate": 3.5353266666666666e-05, + "loss": 1.8990090942382813, + "step": 219800 + }, + { + "epoch": 29.32, + "grad_norm": 0.6025696396827698, + "learning_rate": 3.5346600000000005e-05, + "loss": 1.899090576171875, + "step": 219900 + }, + { + "epoch": 29.333333333333332, + "grad_norm": 0.6101509928703308, + "learning_rate": 3.533993333333334e-05, + "loss": 1.8987478637695312, + "step": 220000 + }, + { + "epoch": 29.346666666666668, + "grad_norm": 0.6143890619277954, + "learning_rate": 3.533326666666667e-05, + "loss": 1.8977235412597657, + "step": 220100 + }, + { + "epoch": 29.36, + "grad_norm": 0.628218412399292, + "learning_rate": 3.53266e-05, + "loss": 1.9033868408203125, + "step": 220200 + }, + { + "epoch": 29.373333333333335, + "grad_norm": 0.6350439786911011, + "learning_rate": 3.5319933333333334e-05, + "loss": 1.8994992065429688, + "step": 220300 + }, + { + "epoch": 29.386666666666667, + "grad_norm": 0.6280394792556763, + "learning_rate": 3.5313266666666666e-05, + "loss": 1.9002314758300782, + "step": 220400 + }, + { + "epoch": 29.4, + "grad_norm": 0.6128666996955872, + "learning_rate": 3.53066e-05, + "loss": 1.9010800170898436, + "step": 220500 + }, + { + "epoch": 29.413333333333334, + "grad_norm": 0.636648952960968, + "learning_rate": 3.529993333333334e-05, + "loss": 1.9034559631347656, + "step": 220600 + }, + { + "epoch": 29.426666666666666, + "grad_norm": 0.6053557395935059, + "learning_rate": 3.529326666666667e-05, + "loss": 1.9045362854003907, + "step": 220700 + }, + { + "epoch": 29.44, + "grad_norm": 0.6217942833900452, + "learning_rate": 3.52866e-05, + "loss": 1.9091796875, + "step": 220800 + }, + { + "epoch": 29.453333333333333, + "grad_norm": 0.6204298734664917, + "learning_rate": 3.5279933333333334e-05, + "loss": 1.9048878479003906, + "step": 220900 + }, + { + "epoch": 29.466666666666665, + "grad_norm": 0.618732750415802, + "learning_rate": 3.527326666666667e-05, + "loss": 1.906492919921875, + "step": 221000 + }, + { + "epoch": 29.48, + "grad_norm": 0.6301329135894775, + "learning_rate": 3.52666e-05, + "loss": 1.9087861633300782, + "step": 221100 + }, + { + "epoch": 29.493333333333332, + "grad_norm": 0.6499351859092712, + "learning_rate": 3.525993333333333e-05, + "loss": 1.9047959899902345, + "step": 221200 + }, + { + "epoch": 29.506666666666668, + "grad_norm": 0.6507390141487122, + "learning_rate": 3.525326666666667e-05, + "loss": 1.9099015808105468, + "step": 221300 + }, + { + "epoch": 29.52, + "grad_norm": 0.6272179484367371, + "learning_rate": 3.52466e-05, + "loss": 1.9120497131347656, + "step": 221400 + }, + { + "epoch": 29.533333333333335, + "grad_norm": 0.6267956495285034, + "learning_rate": 3.5239933333333335e-05, + "loss": 1.9138475036621094, + "step": 221500 + }, + { + "epoch": 29.546666666666667, + "grad_norm": 0.6450830101966858, + "learning_rate": 3.5233333333333334e-05, + "loss": 1.910146484375, + "step": 221600 + }, + { + "epoch": 29.56, + "grad_norm": 0.618111789226532, + "learning_rate": 3.5226666666666666e-05, + "loss": 1.912001495361328, + "step": 221700 + }, + { + "epoch": 29.573333333333334, + "grad_norm": 0.6099219918251038, + "learning_rate": 3.5220000000000005e-05, + "loss": 1.9133241271972656, + "step": 221800 + }, + { + "epoch": 29.586666666666666, + "grad_norm": 0.6343381404876709, + "learning_rate": 3.521333333333334e-05, + "loss": 1.9161970520019531, + "step": 221900 + }, + { + "epoch": 29.6, + "grad_norm": 0.6319106817245483, + "learning_rate": 3.520666666666667e-05, + "loss": 1.9144822692871093, + "step": 222000 + }, + { + "epoch": 29.613333333333333, + "grad_norm": 0.6410270929336548, + "learning_rate": 3.52e-05, + "loss": 1.9168218994140624, + "step": 222100 + }, + { + "epoch": 29.626666666666665, + "grad_norm": 0.6186690330505371, + "learning_rate": 3.5193333333333334e-05, + "loss": 1.9132901000976563, + "step": 222200 + }, + { + "epoch": 29.64, + "grad_norm": 0.6537576913833618, + "learning_rate": 3.5186666666666666e-05, + "loss": 1.913599853515625, + "step": 222300 + }, + { + "epoch": 29.653333333333332, + "grad_norm": 0.6208250522613525, + "learning_rate": 3.518e-05, + "loss": 1.9217842102050782, + "step": 222400 + }, + { + "epoch": 29.666666666666668, + "grad_norm": 0.613583505153656, + "learning_rate": 3.517333333333334e-05, + "loss": 1.9240948486328124, + "step": 222500 + }, + { + "epoch": 29.68, + "grad_norm": 0.6155552864074707, + "learning_rate": 3.516666666666667e-05, + "loss": 1.9173712158203124, + "step": 222600 + }, + { + "epoch": 29.693333333333335, + "grad_norm": 0.6076659560203552, + "learning_rate": 3.516e-05, + "loss": 1.9172421264648438, + "step": 222700 + }, + { + "epoch": 29.706666666666667, + "grad_norm": 0.6185587048530579, + "learning_rate": 3.5153333333333334e-05, + "loss": 1.9175602722167968, + "step": 222800 + }, + { + "epoch": 29.72, + "grad_norm": 0.7048514485359192, + "learning_rate": 3.514666666666667e-05, + "loss": 1.9214109802246093, + "step": 222900 + }, + { + "epoch": 29.733333333333334, + "grad_norm": 0.648773729801178, + "learning_rate": 3.514e-05, + "loss": 1.9188169860839843, + "step": 223000 + }, + { + "epoch": 29.746666666666666, + "grad_norm": 0.6280819177627563, + "learning_rate": 3.513333333333334e-05, + "loss": 1.920139923095703, + "step": 223100 + }, + { + "epoch": 29.76, + "grad_norm": 0.5966166257858276, + "learning_rate": 3.512666666666667e-05, + "loss": 1.9221627807617188, + "step": 223200 + }, + { + "epoch": 29.773333333333333, + "grad_norm": 0.6173168420791626, + "learning_rate": 3.512e-05, + "loss": 1.924539794921875, + "step": 223300 + }, + { + "epoch": 29.786666666666665, + "grad_norm": 0.6122573018074036, + "learning_rate": 3.5113333333333335e-05, + "loss": 1.9245417785644532, + "step": 223400 + }, + { + "epoch": 29.8, + "grad_norm": 0.6305630803108215, + "learning_rate": 3.5106666666666674e-05, + "loss": 1.9254067993164063, + "step": 223500 + }, + { + "epoch": 29.813333333333333, + "grad_norm": 0.6451953053474426, + "learning_rate": 3.510006666666667e-05, + "loss": 1.9255630493164062, + "step": 223600 + }, + { + "epoch": 29.826666666666668, + "grad_norm": 0.6407766342163086, + "learning_rate": 3.5093400000000005e-05, + "loss": 1.9248118591308594, + "step": 223700 + }, + { + "epoch": 29.84, + "grad_norm": 0.627864420413971, + "learning_rate": 3.508673333333333e-05, + "loss": 1.9239891052246094, + "step": 223800 + }, + { + "epoch": 29.85333333333333, + "grad_norm": 0.6414026618003845, + "learning_rate": 3.508006666666667e-05, + "loss": 1.9280026245117188, + "step": 223900 + }, + { + "epoch": 29.866666666666667, + "grad_norm": 0.628401517868042, + "learning_rate": 3.50734e-05, + "loss": 1.9231156921386718, + "step": 224000 + }, + { + "epoch": 29.88, + "grad_norm": 0.6258181929588318, + "learning_rate": 3.5066733333333334e-05, + "loss": 1.926804962158203, + "step": 224100 + }, + { + "epoch": 29.893333333333334, + "grad_norm": 0.6521549820899963, + "learning_rate": 3.5060066666666667e-05, + "loss": 1.928329620361328, + "step": 224200 + }, + { + "epoch": 29.906666666666666, + "grad_norm": 0.6125701069831848, + "learning_rate": 3.5053400000000006e-05, + "loss": 1.9327384948730468, + "step": 224300 + }, + { + "epoch": 29.92, + "grad_norm": 0.627855658531189, + "learning_rate": 3.504673333333334e-05, + "loss": 1.927176971435547, + "step": 224400 + }, + { + "epoch": 29.933333333333334, + "grad_norm": 0.6648500561714172, + "learning_rate": 3.504006666666667e-05, + "loss": 1.9303471374511718, + "step": 224500 + }, + { + "epoch": 29.946666666666665, + "grad_norm": 0.6420508027076721, + "learning_rate": 3.50334e-05, + "loss": 1.9273306274414062, + "step": 224600 + }, + { + "epoch": 29.96, + "grad_norm": 0.6278482675552368, + "learning_rate": 3.5026733333333335e-05, + "loss": 1.9288194274902344, + "step": 224700 + }, + { + "epoch": 29.973333333333333, + "grad_norm": 0.5989758372306824, + "learning_rate": 3.502006666666667e-05, + "loss": 1.930438232421875, + "step": 224800 + }, + { + "epoch": 29.986666666666668, + "grad_norm": 0.6249135136604309, + "learning_rate": 3.50134e-05, + "loss": 1.9307928466796875, + "step": 224900 + }, + { + "epoch": 30.0, + "grad_norm": 0.6104187965393066, + "learning_rate": 3.500673333333334e-05, + "loss": 1.9333016967773438, + "step": 225000 + }, + { + "epoch": 30.013333333333332, + "grad_norm": 0.6293696761131287, + "learning_rate": 3.500006666666667e-05, + "loss": 1.8476805114746093, + "step": 225100 + }, + { + "epoch": 30.026666666666667, + "grad_norm": 0.6297232508659363, + "learning_rate": 3.49934e-05, + "loss": 1.845593719482422, + "step": 225200 + }, + { + "epoch": 30.04, + "grad_norm": 0.6466991305351257, + "learning_rate": 3.4986733333333335e-05, + "loss": 1.8487274169921875, + "step": 225300 + }, + { + "epoch": 30.053333333333335, + "grad_norm": 0.6279363036155701, + "learning_rate": 3.498006666666667e-05, + "loss": 1.8542190551757813, + "step": 225400 + }, + { + "epoch": 30.066666666666666, + "grad_norm": 0.644621729850769, + "learning_rate": 3.49734e-05, + "loss": 1.8500912475585938, + "step": 225500 + }, + { + "epoch": 30.08, + "grad_norm": 0.6442613005638123, + "learning_rate": 3.49668e-05, + "loss": 1.8522134399414063, + "step": 225600 + }, + { + "epoch": 30.093333333333334, + "grad_norm": 0.619848370552063, + "learning_rate": 3.496013333333333e-05, + "loss": 1.8562557983398438, + "step": 225700 + }, + { + "epoch": 30.106666666666666, + "grad_norm": 0.6512423157691956, + "learning_rate": 3.495346666666667e-05, + "loss": 1.8515933227539063, + "step": 225800 + }, + { + "epoch": 30.12, + "grad_norm": 0.6524722576141357, + "learning_rate": 3.49468e-05, + "loss": 1.859434814453125, + "step": 225900 + }, + { + "epoch": 30.133333333333333, + "grad_norm": 0.6379408836364746, + "learning_rate": 3.4940133333333335e-05, + "loss": 1.8575267028808593, + "step": 226000 + }, + { + "epoch": 30.14666666666667, + "grad_norm": 0.6395164132118225, + "learning_rate": 3.493346666666667e-05, + "loss": 1.8595333862304688, + "step": 226100 + }, + { + "epoch": 30.16, + "grad_norm": 0.6441857814788818, + "learning_rate": 3.4926800000000006e-05, + "loss": 1.860304718017578, + "step": 226200 + }, + { + "epoch": 30.173333333333332, + "grad_norm": 0.6614034175872803, + "learning_rate": 3.492013333333333e-05, + "loss": 1.8629020690917968, + "step": 226300 + }, + { + "epoch": 30.186666666666667, + "grad_norm": 0.6289846897125244, + "learning_rate": 3.4913466666666664e-05, + "loss": 1.8599790954589843, + "step": 226400 + }, + { + "epoch": 30.2, + "grad_norm": 0.6655375957489014, + "learning_rate": 3.49068e-05, + "loss": 1.8705145263671874, + "step": 226500 + }, + { + "epoch": 30.213333333333335, + "grad_norm": 0.6143892407417297, + "learning_rate": 3.4900133333333335e-05, + "loss": 1.8633598327636718, + "step": 226600 + }, + { + "epoch": 30.226666666666667, + "grad_norm": 0.6168250441551208, + "learning_rate": 3.489346666666667e-05, + "loss": 1.866641845703125, + "step": 226700 + }, + { + "epoch": 30.24, + "grad_norm": 0.6689651012420654, + "learning_rate": 3.48868e-05, + "loss": 1.863162841796875, + "step": 226800 + }, + { + "epoch": 30.253333333333334, + "grad_norm": 0.6845178604125977, + "learning_rate": 3.488013333333334e-05, + "loss": 1.8685459899902344, + "step": 226900 + }, + { + "epoch": 30.266666666666666, + "grad_norm": 0.6048876047134399, + "learning_rate": 3.487346666666667e-05, + "loss": 1.8716763305664061, + "step": 227000 + }, + { + "epoch": 30.28, + "grad_norm": 0.6472257375717163, + "learning_rate": 3.4866799999999996e-05, + "loss": 1.8674250793457032, + "step": 227100 + }, + { + "epoch": 30.293333333333333, + "grad_norm": 0.6502028703689575, + "learning_rate": 3.4860133333333335e-05, + "loss": 1.8718875122070313, + "step": 227200 + }, + { + "epoch": 30.306666666666665, + "grad_norm": 0.6495829820632935, + "learning_rate": 3.485346666666667e-05, + "loss": 1.8765740966796876, + "step": 227300 + }, + { + "epoch": 30.32, + "grad_norm": 0.6474784016609192, + "learning_rate": 3.48468e-05, + "loss": 1.8689016723632812, + "step": 227400 + }, + { + "epoch": 30.333333333333332, + "grad_norm": 0.652237057685852, + "learning_rate": 3.484013333333334e-05, + "loss": 1.8737103271484374, + "step": 227500 + }, + { + "epoch": 30.346666666666668, + "grad_norm": 0.6202793717384338, + "learning_rate": 3.483346666666667e-05, + "loss": 1.8773468017578125, + "step": 227600 + }, + { + "epoch": 30.36, + "grad_norm": 0.6398950815200806, + "learning_rate": 3.482686666666667e-05, + "loss": 1.8740312194824218, + "step": 227700 + }, + { + "epoch": 30.373333333333335, + "grad_norm": 0.679435670375824, + "learning_rate": 3.48202e-05, + "loss": 1.8724604797363282, + "step": 227800 + }, + { + "epoch": 30.386666666666667, + "grad_norm": 0.6420354843139648, + "learning_rate": 3.4813533333333335e-05, + "loss": 1.8720265197753907, + "step": 227900 + }, + { + "epoch": 30.4, + "grad_norm": 0.6483940482139587, + "learning_rate": 3.4806866666666674e-05, + "loss": 1.8791566467285157, + "step": 228000 + }, + { + "epoch": 30.413333333333334, + "grad_norm": 0.6276984810829163, + "learning_rate": 3.48002e-05, + "loss": 1.8788121032714844, + "step": 228100 + }, + { + "epoch": 30.426666666666666, + "grad_norm": 0.6200658082962036, + "learning_rate": 3.479353333333333e-05, + "loss": 1.8798104858398437, + "step": 228200 + }, + { + "epoch": 30.44, + "grad_norm": 0.6153615117073059, + "learning_rate": 3.478686666666667e-05, + "loss": 1.878331298828125, + "step": 228300 + }, + { + "epoch": 30.453333333333333, + "grad_norm": 0.664184033870697, + "learning_rate": 3.47802e-05, + "loss": 1.879515380859375, + "step": 228400 + }, + { + "epoch": 30.466666666666665, + "grad_norm": 0.6094868779182434, + "learning_rate": 3.4773533333333335e-05, + "loss": 1.8832115173339843, + "step": 228500 + }, + { + "epoch": 30.48, + "grad_norm": 0.6478238701820374, + "learning_rate": 3.476686666666667e-05, + "loss": 1.8848756408691407, + "step": 228600 + }, + { + "epoch": 30.493333333333332, + "grad_norm": 0.6715877652168274, + "learning_rate": 3.4760200000000006e-05, + "loss": 1.8839694213867189, + "step": 228700 + }, + { + "epoch": 30.506666666666668, + "grad_norm": 0.65712571144104, + "learning_rate": 3.475353333333333e-05, + "loss": 1.8820346069335938, + "step": 228800 + }, + { + "epoch": 30.52, + "grad_norm": 0.6317829489707947, + "learning_rate": 3.4746866666666664e-05, + "loss": 1.8841021728515626, + "step": 228900 + }, + { + "epoch": 30.533333333333335, + "grad_norm": 0.654059886932373, + "learning_rate": 3.47402e-05, + "loss": 1.8871124267578125, + "step": 229000 + }, + { + "epoch": 30.546666666666667, + "grad_norm": 0.6421239972114563, + "learning_rate": 3.4733533333333336e-05, + "loss": 1.8896517944335938, + "step": 229100 + }, + { + "epoch": 30.56, + "grad_norm": 0.6650997996330261, + "learning_rate": 3.472686666666667e-05, + "loss": 1.8887339782714845, + "step": 229200 + }, + { + "epoch": 30.573333333333334, + "grad_norm": 0.6281959414482117, + "learning_rate": 3.47202e-05, + "loss": 1.8887667846679688, + "step": 229300 + }, + { + "epoch": 30.586666666666666, + "grad_norm": 0.6575733423233032, + "learning_rate": 3.471353333333334e-05, + "loss": 1.889744110107422, + "step": 229400 + }, + { + "epoch": 30.6, + "grad_norm": 0.6337116360664368, + "learning_rate": 3.470686666666667e-05, + "loss": 1.8880189514160157, + "step": 229500 + }, + { + "epoch": 30.613333333333333, + "grad_norm": 0.6612198948860168, + "learning_rate": 3.47002e-05, + "loss": 1.8879634094238282, + "step": 229600 + }, + { + "epoch": 30.626666666666665, + "grad_norm": 0.6376072764396667, + "learning_rate": 3.46936e-05, + "loss": 1.8931094360351564, + "step": 229700 + }, + { + "epoch": 30.64, + "grad_norm": 0.6279535889625549, + "learning_rate": 3.4686933333333335e-05, + "loss": 1.890915069580078, + "step": 229800 + }, + { + "epoch": 30.653333333333332, + "grad_norm": 0.6393465399742126, + "learning_rate": 3.468026666666667e-05, + "loss": 1.889798583984375, + "step": 229900 + }, + { + "epoch": 30.666666666666668, + "grad_norm": 0.6623516082763672, + "learning_rate": 3.46736e-05, + "loss": 1.8915354919433593, + "step": 230000 + }, + { + "epoch": 30.68, + "grad_norm": 0.628612756729126, + "learning_rate": 3.466693333333333e-05, + "loss": 1.8947076416015625, + "step": 230100 + }, + { + "epoch": 30.693333333333335, + "grad_norm": 0.6295715570449829, + "learning_rate": 3.466026666666667e-05, + "loss": 1.8961087036132813, + "step": 230200 + }, + { + "epoch": 30.706666666666667, + "grad_norm": 0.6464623212814331, + "learning_rate": 3.46536e-05, + "loss": 1.8944891357421876, + "step": 230300 + }, + { + "epoch": 30.72, + "grad_norm": 0.6213361620903015, + "learning_rate": 3.4646933333333335e-05, + "loss": 1.8963340759277343, + "step": 230400 + }, + { + "epoch": 30.733333333333334, + "grad_norm": 0.6335080862045288, + "learning_rate": 3.464026666666667e-05, + "loss": 1.8955998229980469, + "step": 230500 + }, + { + "epoch": 30.746666666666666, + "grad_norm": 0.6538170576095581, + "learning_rate": 3.46336e-05, + "loss": 1.895076141357422, + "step": 230600 + }, + { + "epoch": 30.76, + "grad_norm": 0.6481654047966003, + "learning_rate": 3.462693333333333e-05, + "loss": 1.896536865234375, + "step": 230700 + }, + { + "epoch": 30.773333333333333, + "grad_norm": 0.6416306495666504, + "learning_rate": 3.4620266666666664e-05, + "loss": 1.8968507385253905, + "step": 230800 + }, + { + "epoch": 30.786666666666665, + "grad_norm": 0.6325493454933167, + "learning_rate": 3.4613600000000003e-05, + "loss": 1.8965896606445312, + "step": 230900 + }, + { + "epoch": 30.8, + "grad_norm": 0.6334678530693054, + "learning_rate": 3.4606933333333336e-05, + "loss": 1.8993826293945313, + "step": 231000 + }, + { + "epoch": 30.813333333333333, + "grad_norm": 0.642789363861084, + "learning_rate": 3.460026666666667e-05, + "loss": 1.899892578125, + "step": 231100 + }, + { + "epoch": 30.826666666666668, + "grad_norm": 0.6502810716629028, + "learning_rate": 3.459360000000001e-05, + "loss": 1.9054344177246094, + "step": 231200 + }, + { + "epoch": 30.84, + "grad_norm": 0.6091868281364441, + "learning_rate": 3.458693333333333e-05, + "loss": 1.9026506042480469, + "step": 231300 + }, + { + "epoch": 30.85333333333333, + "grad_norm": 0.656499981880188, + "learning_rate": 3.4580266666666665e-05, + "loss": 1.9024732971191407, + "step": 231400 + }, + { + "epoch": 30.866666666666667, + "grad_norm": 0.6632031202316284, + "learning_rate": 3.45736e-05, + "loss": 1.9011004638671876, + "step": 231500 + }, + { + "epoch": 30.88, + "grad_norm": 0.6348013281822205, + "learning_rate": 3.4566933333333336e-05, + "loss": 1.9027983093261718, + "step": 231600 + }, + { + "epoch": 30.893333333333334, + "grad_norm": 0.6693485975265503, + "learning_rate": 3.4560333333333335e-05, + "loss": 1.9033485412597657, + "step": 231700 + }, + { + "epoch": 30.906666666666666, + "grad_norm": 0.628446638584137, + "learning_rate": 3.455366666666667e-05, + "loss": 1.905799102783203, + "step": 231800 + }, + { + "epoch": 30.92, + "grad_norm": 0.6061755418777466, + "learning_rate": 3.4547e-05, + "loss": 1.9038815307617187, + "step": 231900 + }, + { + "epoch": 30.933333333333334, + "grad_norm": 0.6528656482696533, + "learning_rate": 3.454033333333334e-05, + "loss": 1.8988880920410156, + "step": 232000 + }, + { + "epoch": 30.946666666666665, + "grad_norm": 0.6434139609336853, + "learning_rate": 3.453366666666667e-05, + "loss": 1.9047633361816407, + "step": 232100 + }, + { + "epoch": 30.96, + "grad_norm": 0.621820330619812, + "learning_rate": 3.4527e-05, + "loss": 1.906195068359375, + "step": 232200 + }, + { + "epoch": 30.973333333333333, + "grad_norm": 0.6167011857032776, + "learning_rate": 3.4520333333333336e-05, + "loss": 1.9075782775878907, + "step": 232300 + }, + { + "epoch": 30.986666666666668, + "grad_norm": 0.6764289736747742, + "learning_rate": 3.451366666666667e-05, + "loss": 1.9077426147460939, + "step": 232400 + }, + { + "epoch": 31.0, + "grad_norm": 0.6597962975502014, + "learning_rate": 3.4507e-05, + "loss": 1.9063412475585937, + "step": 232500 + }, + { + "epoch": 31.013333333333332, + "grad_norm": 0.6323487758636475, + "learning_rate": 3.450033333333333e-05, + "loss": 1.8208100891113281, + "step": 232600 + }, + { + "epoch": 31.026666666666667, + "grad_norm": 0.6353087425231934, + "learning_rate": 3.449366666666667e-05, + "loss": 1.8169317626953125, + "step": 232700 + }, + { + "epoch": 31.04, + "grad_norm": 0.6516137719154358, + "learning_rate": 3.4487000000000004e-05, + "loss": 1.8187254333496095, + "step": 232800 + }, + { + "epoch": 31.053333333333335, + "grad_norm": 0.6380991339683533, + "learning_rate": 3.4480333333333336e-05, + "loss": 1.828922119140625, + "step": 232900 + }, + { + "epoch": 31.066666666666666, + "grad_norm": 0.6637365221977234, + "learning_rate": 3.447366666666667e-05, + "loss": 1.8281976318359374, + "step": 233000 + }, + { + "epoch": 31.08, + "grad_norm": 0.6347978115081787, + "learning_rate": 3.4467e-05, + "loss": 1.8291136169433593, + "step": 233100 + }, + { + "epoch": 31.093333333333334, + "grad_norm": 0.6856868863105774, + "learning_rate": 3.446033333333333e-05, + "loss": 1.8266050720214844, + "step": 233200 + }, + { + "epoch": 31.106666666666666, + "grad_norm": 0.6957641839981079, + "learning_rate": 3.4453666666666665e-05, + "loss": 1.8307728576660156, + "step": 233300 + }, + { + "epoch": 31.12, + "grad_norm": 0.657038688659668, + "learning_rate": 3.4447000000000004e-05, + "loss": 1.8359172058105468, + "step": 233400 + }, + { + "epoch": 31.133333333333333, + "grad_norm": 0.6168066263198853, + "learning_rate": 3.4440333333333336e-05, + "loss": 1.8327171325683593, + "step": 233500 + }, + { + "epoch": 31.14666666666667, + "grad_norm": 0.6589761972427368, + "learning_rate": 3.443366666666667e-05, + "loss": 1.8356471252441406, + "step": 233600 + }, + { + "epoch": 31.16, + "grad_norm": 0.656284749507904, + "learning_rate": 3.442706666666667e-05, + "loss": 1.8352957153320313, + "step": 233700 + }, + { + "epoch": 31.173333333333332, + "grad_norm": 0.6507891416549683, + "learning_rate": 3.44204e-05, + "loss": 1.8356683349609375, + "step": 233800 + }, + { + "epoch": 31.186666666666667, + "grad_norm": 0.6691421270370483, + "learning_rate": 3.441373333333334e-05, + "loss": 1.8375747680664063, + "step": 233900 + }, + { + "epoch": 31.2, + "grad_norm": 0.6770158410072327, + "learning_rate": 3.440706666666667e-05, + "loss": 1.8438589477539062, + "step": 234000 + }, + { + "epoch": 31.213333333333335, + "grad_norm": 0.6403542160987854, + "learning_rate": 3.44004e-05, + "loss": 1.8394532775878907, + "step": 234100 + }, + { + "epoch": 31.226666666666667, + "grad_norm": 0.6421419978141785, + "learning_rate": 3.4393733333333336e-05, + "loss": 1.8419064331054686, + "step": 234200 + }, + { + "epoch": 31.24, + "grad_norm": 0.6424593925476074, + "learning_rate": 3.438706666666667e-05, + "loss": 1.839052734375, + "step": 234300 + }, + { + "epoch": 31.253333333333334, + "grad_norm": 0.6520510911941528, + "learning_rate": 3.43804e-05, + "loss": 1.8442149353027344, + "step": 234400 + }, + { + "epoch": 31.266666666666666, + "grad_norm": 0.6459802985191345, + "learning_rate": 3.437373333333333e-05, + "loss": 1.8480723571777344, + "step": 234500 + }, + { + "epoch": 31.28, + "grad_norm": 0.6531192660331726, + "learning_rate": 3.436706666666667e-05, + "loss": 1.8451568603515625, + "step": 234600 + }, + { + "epoch": 31.293333333333333, + "grad_norm": 0.6506422758102417, + "learning_rate": 3.4360400000000004e-05, + "loss": 1.8467247009277343, + "step": 234700 + }, + { + "epoch": 31.306666666666665, + "grad_norm": 0.6557679176330566, + "learning_rate": 3.435373333333333e-05, + "loss": 1.8464105224609375, + "step": 234800 + }, + { + "epoch": 31.32, + "grad_norm": 0.6555748581886292, + "learning_rate": 3.434706666666667e-05, + "loss": 1.8486134338378906, + "step": 234900 + }, + { + "epoch": 31.333333333333332, + "grad_norm": 0.6634244322776794, + "learning_rate": 3.43404e-05, + "loss": 1.8502972412109375, + "step": 235000 + }, + { + "epoch": 31.346666666666668, + "grad_norm": 0.6522782444953918, + "learning_rate": 3.433373333333333e-05, + "loss": 1.8538160705566407, + "step": 235100 + }, + { + "epoch": 31.36, + "grad_norm": 0.6471147537231445, + "learning_rate": 3.4327066666666665e-05, + "loss": 1.8480146789550782, + "step": 235200 + }, + { + "epoch": 31.373333333333335, + "grad_norm": 0.6697273254394531, + "learning_rate": 3.4320400000000004e-05, + "loss": 1.8517044067382813, + "step": 235300 + }, + { + "epoch": 31.386666666666667, + "grad_norm": 0.6725065112113953, + "learning_rate": 3.4313733333333337e-05, + "loss": 1.8513163757324218, + "step": 235400 + }, + { + "epoch": 31.4, + "grad_norm": 0.6726689338684082, + "learning_rate": 3.430706666666667e-05, + "loss": 1.8532307434082032, + "step": 235500 + }, + { + "epoch": 31.413333333333334, + "grad_norm": 0.6598038673400879, + "learning_rate": 3.43004e-05, + "loss": 1.8543743896484375, + "step": 235600 + }, + { + "epoch": 31.426666666666666, + "grad_norm": 0.6628021001815796, + "learning_rate": 3.429380000000001e-05, + "loss": 1.8543577575683594, + "step": 235700 + }, + { + "epoch": 31.44, + "grad_norm": 0.677413284778595, + "learning_rate": 3.428713333333333e-05, + "loss": 1.8539126586914063, + "step": 235800 + }, + { + "epoch": 31.453333333333333, + "grad_norm": 0.6506122350692749, + "learning_rate": 3.4280466666666665e-05, + "loss": 1.8576051330566405, + "step": 235900 + }, + { + "epoch": 31.466666666666665, + "grad_norm": 0.6622093319892883, + "learning_rate": 3.42738e-05, + "loss": 1.8572665405273439, + "step": 236000 + }, + { + "epoch": 31.48, + "grad_norm": 0.674359142780304, + "learning_rate": 3.4267133333333336e-05, + "loss": 1.8588676452636719, + "step": 236100 + }, + { + "epoch": 31.493333333333332, + "grad_norm": 0.6599639058113098, + "learning_rate": 3.426046666666667e-05, + "loss": 1.8583624267578125, + "step": 236200 + }, + { + "epoch": 31.506666666666668, + "grad_norm": 0.6558268666267395, + "learning_rate": 3.42538e-05, + "loss": 1.8596633911132812, + "step": 236300 + }, + { + "epoch": 31.52, + "grad_norm": 0.6776077151298523, + "learning_rate": 3.424713333333334e-05, + "loss": 1.8617288208007812, + "step": 236400 + }, + { + "epoch": 31.533333333333335, + "grad_norm": 0.6699625253677368, + "learning_rate": 3.424046666666667e-05, + "loss": 1.8598435974121095, + "step": 236500 + }, + { + "epoch": 31.546666666666667, + "grad_norm": 0.6473347544670105, + "learning_rate": 3.42338e-05, + "loss": 1.8564553833007813, + "step": 236600 + }, + { + "epoch": 31.56, + "grad_norm": 0.6418144702911377, + "learning_rate": 3.4227133333333336e-05, + "loss": 1.8607228088378907, + "step": 236700 + }, + { + "epoch": 31.573333333333334, + "grad_norm": 0.6646478772163391, + "learning_rate": 3.422046666666667e-05, + "loss": 1.8621051025390625, + "step": 236800 + }, + { + "epoch": 31.586666666666666, + "grad_norm": 0.6577756404876709, + "learning_rate": 3.42138e-05, + "loss": 1.8664056396484374, + "step": 236900 + }, + { + "epoch": 31.6, + "grad_norm": 0.6546629667282104, + "learning_rate": 3.420713333333333e-05, + "loss": 1.8602700805664063, + "step": 237000 + }, + { + "epoch": 31.613333333333333, + "grad_norm": 0.6508590579032898, + "learning_rate": 3.420046666666667e-05, + "loss": 1.8613612365722656, + "step": 237100 + }, + { + "epoch": 31.626666666666665, + "grad_norm": 0.6625661253929138, + "learning_rate": 3.4193800000000005e-05, + "loss": 1.8683642578125, + "step": 237200 + }, + { + "epoch": 31.64, + "grad_norm": 0.6706848740577698, + "learning_rate": 3.418713333333334e-05, + "loss": 1.8645219421386718, + "step": 237300 + }, + { + "epoch": 31.653333333333332, + "grad_norm": 0.6599859595298767, + "learning_rate": 3.418046666666667e-05, + "loss": 1.8640052795410156, + "step": 237400 + }, + { + "epoch": 31.666666666666668, + "grad_norm": 0.6782610416412354, + "learning_rate": 3.41738e-05, + "loss": 1.8663507080078126, + "step": 237500 + }, + { + "epoch": 31.68, + "grad_norm": 0.6501734852790833, + "learning_rate": 3.4167133333333334e-05, + "loss": 1.864781951904297, + "step": 237600 + }, + { + "epoch": 31.693333333333335, + "grad_norm": 0.6596933603286743, + "learning_rate": 3.416053333333333e-05, + "loss": 1.8692094421386718, + "step": 237700 + }, + { + "epoch": 31.706666666666667, + "grad_norm": 0.6630842685699463, + "learning_rate": 3.4153866666666665e-05, + "loss": 1.8750367736816407, + "step": 237800 + }, + { + "epoch": 31.72, + "grad_norm": 0.6862805485725403, + "learning_rate": 3.4147200000000004e-05, + "loss": 1.8699729919433594, + "step": 237900 + }, + { + "epoch": 31.733333333333334, + "grad_norm": 0.6476590037345886, + "learning_rate": 3.4140533333333336e-05, + "loss": 1.8710263061523438, + "step": 238000 + }, + { + "epoch": 31.746666666666666, + "grad_norm": 0.6775981187820435, + "learning_rate": 3.413386666666667e-05, + "loss": 1.8723735046386718, + "step": 238100 + }, + { + "epoch": 31.76, + "grad_norm": 0.6427512168884277, + "learning_rate": 3.41272e-05, + "loss": 1.8744818115234374, + "step": 238200 + }, + { + "epoch": 31.773333333333333, + "grad_norm": 0.6625904440879822, + "learning_rate": 3.412053333333334e-05, + "loss": 1.8720915222167969, + "step": 238300 + }, + { + "epoch": 31.786666666666665, + "grad_norm": 0.6708217859268188, + "learning_rate": 3.4113866666666665e-05, + "loss": 1.8733248901367188, + "step": 238400 + }, + { + "epoch": 31.8, + "grad_norm": 0.6499980092048645, + "learning_rate": 3.41072e-05, + "loss": 1.8720248413085938, + "step": 238500 + }, + { + "epoch": 31.813333333333333, + "grad_norm": 0.6474357843399048, + "learning_rate": 3.41006e-05, + "loss": 1.875724334716797, + "step": 238600 + }, + { + "epoch": 31.826666666666668, + "grad_norm": 0.639595627784729, + "learning_rate": 3.4093933333333336e-05, + "loss": 1.8767543029785156, + "step": 238700 + }, + { + "epoch": 31.84, + "grad_norm": 0.6569827795028687, + "learning_rate": 3.408726666666667e-05, + "loss": 1.8743658447265625, + "step": 238800 + }, + { + "epoch": 31.85333333333333, + "grad_norm": 0.6573343873023987, + "learning_rate": 3.40806e-05, + "loss": 1.876455078125, + "step": 238900 + }, + { + "epoch": 31.866666666666667, + "grad_norm": 0.6686303019523621, + "learning_rate": 3.407393333333333e-05, + "loss": 1.875361785888672, + "step": 239000 + }, + { + "epoch": 31.88, + "grad_norm": 0.6887635588645935, + "learning_rate": 3.406726666666667e-05, + "loss": 1.87423583984375, + "step": 239100 + }, + { + "epoch": 31.893333333333334, + "grad_norm": 0.6796891093254089, + "learning_rate": 3.4060600000000004e-05, + "loss": 1.878402099609375, + "step": 239200 + }, + { + "epoch": 31.906666666666666, + "grad_norm": 0.7028095722198486, + "learning_rate": 3.4053933333333336e-05, + "loss": 1.879278106689453, + "step": 239300 + }, + { + "epoch": 31.92, + "grad_norm": 0.6571170687675476, + "learning_rate": 3.404726666666667e-05, + "loss": 1.8795460510253905, + "step": 239400 + }, + { + "epoch": 31.933333333333334, + "grad_norm": 0.6626359820365906, + "learning_rate": 3.40406e-05, + "loss": 1.8782347106933595, + "step": 239500 + }, + { + "epoch": 31.946666666666665, + "grad_norm": 0.6341395378112793, + "learning_rate": 3.403393333333333e-05, + "loss": 1.8807855224609376, + "step": 239600 + }, + { + "epoch": 31.96, + "grad_norm": 0.7045288681983948, + "learning_rate": 3.4027266666666665e-05, + "loss": 1.8818238830566407, + "step": 239700 + }, + { + "epoch": 31.973333333333333, + "grad_norm": 0.6587862372398376, + "learning_rate": 3.4020600000000004e-05, + "loss": 1.8825888061523437, + "step": 239800 + }, + { + "epoch": 31.986666666666668, + "grad_norm": 0.6503267288208008, + "learning_rate": 3.4013933333333337e-05, + "loss": 1.8872879028320313, + "step": 239900 + }, + { + "epoch": 32.0, + "grad_norm": 0.6603325605392456, + "learning_rate": 3.400726666666667e-05, + "loss": 1.8781341552734374, + "step": 240000 + }, + { + "epoch": 32.013333333333335, + "grad_norm": 0.6310288906097412, + "learning_rate": 3.40006e-05, + "loss": 1.7969367980957032, + "step": 240100 + }, + { + "epoch": 32.026666666666664, + "grad_norm": 0.6715329885482788, + "learning_rate": 3.399393333333333e-05, + "loss": 1.8000009155273438, + "step": 240200 + }, + { + "epoch": 32.04, + "grad_norm": 0.6543241143226624, + "learning_rate": 3.3987266666666666e-05, + "loss": 1.7961320495605468, + "step": 240300 + }, + { + "epoch": 32.053333333333335, + "grad_norm": 0.6774461269378662, + "learning_rate": 3.3980600000000005e-05, + "loss": 1.8003314208984376, + "step": 240400 + }, + { + "epoch": 32.06666666666667, + "grad_norm": 0.6529948711395264, + "learning_rate": 3.397393333333334e-05, + "loss": 1.8036393737792968, + "step": 240500 + }, + { + "epoch": 32.08, + "grad_norm": 0.6645397543907166, + "learning_rate": 3.396726666666667e-05, + "loss": 1.7999684143066406, + "step": 240600 + }, + { + "epoch": 32.093333333333334, + "grad_norm": 0.6966586112976074, + "learning_rate": 3.39606e-05, + "loss": 1.8084344482421875, + "step": 240700 + }, + { + "epoch": 32.10666666666667, + "grad_norm": 0.6967159509658813, + "learning_rate": 3.395393333333334e-05, + "loss": 1.8040733337402344, + "step": 240800 + }, + { + "epoch": 32.12, + "grad_norm": 0.6923654675483704, + "learning_rate": 3.3947266666666666e-05, + "loss": 1.8065350341796875, + "step": 240900 + }, + { + "epoch": 32.13333333333333, + "grad_norm": 0.6938139200210571, + "learning_rate": 3.39406e-05, + "loss": 1.8069944763183594, + "step": 241000 + }, + { + "epoch": 32.14666666666667, + "grad_norm": 0.6618465781211853, + "learning_rate": 3.393393333333334e-05, + "loss": 1.80832763671875, + "step": 241100 + }, + { + "epoch": 32.16, + "grad_norm": 0.681530773639679, + "learning_rate": 3.392726666666667e-05, + "loss": 1.8130369567871094, + "step": 241200 + }, + { + "epoch": 32.17333333333333, + "grad_norm": 0.692341148853302, + "learning_rate": 3.39206e-05, + "loss": 1.8068063354492188, + "step": 241300 + }, + { + "epoch": 32.18666666666667, + "grad_norm": 0.6659745573997498, + "learning_rate": 3.3913933333333334e-05, + "loss": 1.8177037048339844, + "step": 241400 + }, + { + "epoch": 32.2, + "grad_norm": 0.6756054162979126, + "learning_rate": 3.390726666666667e-05, + "loss": 1.812709503173828, + "step": 241500 + }, + { + "epoch": 32.21333333333333, + "grad_norm": 0.6909893751144409, + "learning_rate": 3.39006e-05, + "loss": 1.8146788024902343, + "step": 241600 + }, + { + "epoch": 32.22666666666667, + "grad_norm": 0.6421316266059875, + "learning_rate": 3.389393333333333e-05, + "loss": 1.8204322814941407, + "step": 241700 + }, + { + "epoch": 32.24, + "grad_norm": 0.6924384236335754, + "learning_rate": 3.388726666666667e-05, + "loss": 1.8170956420898436, + "step": 241800 + }, + { + "epoch": 32.25333333333333, + "grad_norm": 0.7075912356376648, + "learning_rate": 3.38806e-05, + "loss": 1.8158349609375, + "step": 241900 + }, + { + "epoch": 32.266666666666666, + "grad_norm": 0.698880136013031, + "learning_rate": 3.3873933333333334e-05, + "loss": 1.822403564453125, + "step": 242000 + }, + { + "epoch": 32.28, + "grad_norm": 0.6914991736412048, + "learning_rate": 3.386726666666667e-05, + "loss": 1.8238410949707031, + "step": 242100 + }, + { + "epoch": 32.29333333333334, + "grad_norm": 0.6999617218971252, + "learning_rate": 3.3860600000000006e-05, + "loss": 1.8204554748535156, + "step": 242200 + }, + { + "epoch": 32.306666666666665, + "grad_norm": 0.6469098925590515, + "learning_rate": 3.385393333333334e-05, + "loss": 1.8187814331054688, + "step": 242300 + }, + { + "epoch": 32.32, + "grad_norm": 0.6881408095359802, + "learning_rate": 3.3847266666666664e-05, + "loss": 1.823394775390625, + "step": 242400 + }, + { + "epoch": 32.333333333333336, + "grad_norm": 0.6413573622703552, + "learning_rate": 3.38406e-05, + "loss": 1.8220912170410157, + "step": 242500 + }, + { + "epoch": 32.346666666666664, + "grad_norm": 0.6949501633644104, + "learning_rate": 3.3834e-05, + "loss": 1.825587921142578, + "step": 242600 + }, + { + "epoch": 32.36, + "grad_norm": 0.6824288964271545, + "learning_rate": 3.3827333333333334e-05, + "loss": 1.8236434936523438, + "step": 242700 + }, + { + "epoch": 32.373333333333335, + "grad_norm": 0.6769747734069824, + "learning_rate": 3.3820666666666666e-05, + "loss": 1.8265499877929687, + "step": 242800 + }, + { + "epoch": 32.38666666666666, + "grad_norm": 0.663185715675354, + "learning_rate": 3.3814e-05, + "loss": 1.8235643005371094, + "step": 242900 + }, + { + "epoch": 32.4, + "grad_norm": 0.6693112254142761, + "learning_rate": 3.380733333333334e-05, + "loss": 1.830492706298828, + "step": 243000 + }, + { + "epoch": 32.413333333333334, + "grad_norm": 0.6796991229057312, + "learning_rate": 3.3800733333333337e-05, + "loss": 1.8297494506835938, + "step": 243100 + }, + { + "epoch": 32.42666666666667, + "grad_norm": 0.6557438969612122, + "learning_rate": 3.379406666666667e-05, + "loss": 1.8294140625, + "step": 243200 + }, + { + "epoch": 32.44, + "grad_norm": 0.6834737062454224, + "learning_rate": 3.37874e-05, + "loss": 1.8335061645507813, + "step": 243300 + }, + { + "epoch": 32.45333333333333, + "grad_norm": 0.6919399499893188, + "learning_rate": 3.3780733333333333e-05, + "loss": 1.829990997314453, + "step": 243400 + }, + { + "epoch": 32.46666666666667, + "grad_norm": 0.6703587174415588, + "learning_rate": 3.377406666666667e-05, + "loss": 1.8283270263671876, + "step": 243500 + }, + { + "epoch": 32.48, + "grad_norm": 0.6480154991149902, + "learning_rate": 3.37674e-05, + "loss": 1.8319325256347656, + "step": 243600 + }, + { + "epoch": 32.49333333333333, + "grad_norm": 0.6802955865859985, + "learning_rate": 3.376073333333333e-05, + "loss": 1.8309434509277345, + "step": 243700 + }, + { + "epoch": 32.50666666666667, + "grad_norm": 0.6789207458496094, + "learning_rate": 3.375406666666667e-05, + "loss": 1.8343551635742188, + "step": 243800 + }, + { + "epoch": 32.52, + "grad_norm": 0.679716169834137, + "learning_rate": 3.37474e-05, + "loss": 1.8310325622558594, + "step": 243900 + }, + { + "epoch": 32.53333333333333, + "grad_norm": 0.6787630319595337, + "learning_rate": 3.3740733333333334e-05, + "loss": 1.8323744201660157, + "step": 244000 + }, + { + "epoch": 32.54666666666667, + "grad_norm": 0.7034173011779785, + "learning_rate": 3.3734066666666666e-05, + "loss": 1.8383087158203124, + "step": 244100 + }, + { + "epoch": 32.56, + "grad_norm": 0.6853973865509033, + "learning_rate": 3.3727400000000005e-05, + "loss": 1.8405967712402345, + "step": 244200 + }, + { + "epoch": 32.57333333333333, + "grad_norm": 0.6757837533950806, + "learning_rate": 3.372073333333334e-05, + "loss": 1.8397735595703124, + "step": 244300 + }, + { + "epoch": 32.586666666666666, + "grad_norm": 0.7057570815086365, + "learning_rate": 3.371406666666666e-05, + "loss": 1.8403346252441406, + "step": 244400 + }, + { + "epoch": 32.6, + "grad_norm": 0.6852734684944153, + "learning_rate": 3.37074e-05, + "loss": 1.8357850646972655, + "step": 244500 + }, + { + "epoch": 32.61333333333333, + "grad_norm": 0.6865105628967285, + "learning_rate": 3.3700733333333334e-05, + "loss": 1.8388577270507813, + "step": 244600 + }, + { + "epoch": 32.626666666666665, + "grad_norm": 0.6819406747817993, + "learning_rate": 3.3694066666666666e-05, + "loss": 1.8388409423828125, + "step": 244700 + }, + { + "epoch": 32.64, + "grad_norm": 0.70542311668396, + "learning_rate": 3.3687400000000005e-05, + "loss": 1.8410357666015624, + "step": 244800 + }, + { + "epoch": 32.653333333333336, + "grad_norm": 0.6699349284172058, + "learning_rate": 3.368073333333334e-05, + "loss": 1.838839569091797, + "step": 244900 + }, + { + "epoch": 32.666666666666664, + "grad_norm": 0.6589396595954895, + "learning_rate": 3.367406666666667e-05, + "loss": 1.8432624816894532, + "step": 245000 + }, + { + "epoch": 32.68, + "grad_norm": 0.6670289635658264, + "learning_rate": 3.36674e-05, + "loss": 1.8423471069335937, + "step": 245100 + }, + { + "epoch": 32.693333333333335, + "grad_norm": 0.7071298956871033, + "learning_rate": 3.3660733333333335e-05, + "loss": 1.8458381652832032, + "step": 245200 + }, + { + "epoch": 32.70666666666666, + "grad_norm": 0.6842973232269287, + "learning_rate": 3.365406666666667e-05, + "loss": 1.8477865600585937, + "step": 245300 + }, + { + "epoch": 32.72, + "grad_norm": 0.6763595342636108, + "learning_rate": 3.36474e-05, + "loss": 1.8455276489257812, + "step": 245400 + }, + { + "epoch": 32.733333333333334, + "grad_norm": 0.6894487142562866, + "learning_rate": 3.364073333333334e-05, + "loss": 1.847926025390625, + "step": 245500 + }, + { + "epoch": 32.74666666666667, + "grad_norm": 0.6884575486183167, + "learning_rate": 3.363406666666667e-05, + "loss": 1.8473049926757812, + "step": 245600 + }, + { + "epoch": 32.76, + "grad_norm": 0.6874258518218994, + "learning_rate": 3.36274e-05, + "loss": 1.8455709838867187, + "step": 245700 + }, + { + "epoch": 32.77333333333333, + "grad_norm": 0.6681150197982788, + "learning_rate": 3.3620733333333335e-05, + "loss": 1.8474746704101563, + "step": 245800 + }, + { + "epoch": 32.78666666666667, + "grad_norm": 0.6818782687187195, + "learning_rate": 3.361406666666667e-05, + "loss": 1.848689727783203, + "step": 245900 + }, + { + "epoch": 32.8, + "grad_norm": 0.6926629543304443, + "learning_rate": 3.36074e-05, + "loss": 1.8480201721191407, + "step": 246000 + }, + { + "epoch": 32.81333333333333, + "grad_norm": 0.6802074313163757, + "learning_rate": 3.360073333333333e-05, + "loss": 1.8487611389160157, + "step": 246100 + }, + { + "epoch": 32.82666666666667, + "grad_norm": 0.6938923597335815, + "learning_rate": 3.359406666666667e-05, + "loss": 1.8549391174316405, + "step": 246200 + }, + { + "epoch": 32.84, + "grad_norm": 0.6887032389640808, + "learning_rate": 3.35874e-05, + "loss": 1.855552978515625, + "step": 246300 + }, + { + "epoch": 32.85333333333333, + "grad_norm": 0.6876346468925476, + "learning_rate": 3.3580733333333335e-05, + "loss": 1.8523348999023437, + "step": 246400 + }, + { + "epoch": 32.86666666666667, + "grad_norm": 0.6914822459220886, + "learning_rate": 3.357406666666667e-05, + "loss": 1.851287841796875, + "step": 246500 + }, + { + "epoch": 32.88, + "grad_norm": 0.6880086660385132, + "learning_rate": 3.35674e-05, + "loss": 1.8532257080078125, + "step": 246600 + }, + { + "epoch": 32.89333333333333, + "grad_norm": 0.6851861476898193, + "learning_rate": 3.356073333333333e-05, + "loss": 1.8526493835449218, + "step": 246700 + }, + { + "epoch": 32.906666666666666, + "grad_norm": 0.7228900194168091, + "learning_rate": 3.3554066666666664e-05, + "loss": 1.8538876342773438, + "step": 246800 + }, + { + "epoch": 32.92, + "grad_norm": 0.6968467831611633, + "learning_rate": 3.3547400000000003e-05, + "loss": 1.855828857421875, + "step": 246900 + }, + { + "epoch": 32.93333333333333, + "grad_norm": 0.6718273162841797, + "learning_rate": 3.3540733333333336e-05, + "loss": 1.8609310913085937, + "step": 247000 + }, + { + "epoch": 32.946666666666665, + "grad_norm": 0.7059205174446106, + "learning_rate": 3.3534133333333335e-05, + "loss": 1.8553521728515625, + "step": 247100 + }, + { + "epoch": 32.96, + "grad_norm": 0.6735067963600159, + "learning_rate": 3.352746666666667e-05, + "loss": 1.8593675231933593, + "step": 247200 + }, + { + "epoch": 32.973333333333336, + "grad_norm": 0.6527106165885925, + "learning_rate": 3.35208e-05, + "loss": 1.8580506896972657, + "step": 247300 + }, + { + "epoch": 32.986666666666665, + "grad_norm": 0.6713843941688538, + "learning_rate": 3.351413333333334e-05, + "loss": 1.8553984069824219, + "step": 247400 + }, + { + "epoch": 33.0, + "grad_norm": 0.6805854439735413, + "learning_rate": 3.350746666666667e-05, + "loss": 1.8589930725097656, + "step": 247500 + }, + { + "epoch": 33.013333333333335, + "grad_norm": 0.6813168525695801, + "learning_rate": 3.3500799999999996e-05, + "loss": 1.7653323364257814, + "step": 247600 + }, + { + "epoch": 33.026666666666664, + "grad_norm": 0.7006181478500366, + "learning_rate": 3.3494133333333335e-05, + "loss": 1.7744679260253906, + "step": 247700 + }, + { + "epoch": 33.04, + "grad_norm": 0.6603790521621704, + "learning_rate": 3.348746666666667e-05, + "loss": 1.7725636291503906, + "step": 247800 + }, + { + "epoch": 33.053333333333335, + "grad_norm": 0.7163404226303101, + "learning_rate": 3.34808e-05, + "loss": 1.7759190368652344, + "step": 247900 + }, + { + "epoch": 33.06666666666667, + "grad_norm": 0.6999438405036926, + "learning_rate": 3.347413333333333e-05, + "loss": 1.779423828125, + "step": 248000 + }, + { + "epoch": 33.08, + "grad_norm": 0.6900789737701416, + "learning_rate": 3.346746666666667e-05, + "loss": 1.777518768310547, + "step": 248100 + }, + { + "epoch": 33.093333333333334, + "grad_norm": 0.6616639494895935, + "learning_rate": 3.346086666666667e-05, + "loss": 1.7815655517578124, + "step": 248200 + }, + { + "epoch": 33.10666666666667, + "grad_norm": 0.6825656890869141, + "learning_rate": 3.34542e-05, + "loss": 1.7781207275390625, + "step": 248300 + }, + { + "epoch": 33.12, + "grad_norm": 0.6620200872421265, + "learning_rate": 3.3447533333333335e-05, + "loss": 1.780341796875, + "step": 248400 + }, + { + "epoch": 33.13333333333333, + "grad_norm": 0.69339919090271, + "learning_rate": 3.3440866666666674e-05, + "loss": 1.7857955932617187, + "step": 248500 + }, + { + "epoch": 33.14666666666667, + "grad_norm": 0.6670458316802979, + "learning_rate": 3.34342e-05, + "loss": 1.782757568359375, + "step": 248600 + }, + { + "epoch": 33.16, + "grad_norm": 0.6833922863006592, + "learning_rate": 3.342753333333333e-05, + "loss": 1.7865505981445313, + "step": 248700 + }, + { + "epoch": 33.17333333333333, + "grad_norm": 0.691870927810669, + "learning_rate": 3.3420866666666664e-05, + "loss": 1.7900071716308594, + "step": 248800 + }, + { + "epoch": 33.18666666666667, + "grad_norm": 0.6759406924247742, + "learning_rate": 3.34142e-05, + "loss": 1.7894091796875, + "step": 248900 + }, + { + "epoch": 33.2, + "grad_norm": 0.6733843684196472, + "learning_rate": 3.3407533333333335e-05, + "loss": 1.789012451171875, + "step": 249000 + }, + { + "epoch": 33.21333333333333, + "grad_norm": 0.6950940489768982, + "learning_rate": 3.340086666666667e-05, + "loss": 1.7880499267578125, + "step": 249100 + }, + { + "epoch": 33.22666666666667, + "grad_norm": 0.7324302792549133, + "learning_rate": 3.3394200000000006e-05, + "loss": 1.7905299377441406, + "step": 249200 + }, + { + "epoch": 33.24, + "grad_norm": 0.6907392144203186, + "learning_rate": 3.338753333333334e-05, + "loss": 1.7943400573730468, + "step": 249300 + }, + { + "epoch": 33.25333333333333, + "grad_norm": 0.7105041742324829, + "learning_rate": 3.3380866666666664e-05, + "loss": 1.7948751831054688, + "step": 249400 + }, + { + "epoch": 33.266666666666666, + "grad_norm": 0.709616482257843, + "learning_rate": 3.33742e-05, + "loss": 1.7902720642089844, + "step": 249500 + }, + { + "epoch": 33.28, + "grad_norm": 0.6986458897590637, + "learning_rate": 3.3367533333333335e-05, + "loss": 1.7960736083984374, + "step": 249600 + }, + { + "epoch": 33.29333333333334, + "grad_norm": 0.6758502125740051, + "learning_rate": 3.336086666666667e-05, + "loss": 1.7959979248046876, + "step": 249700 + }, + { + "epoch": 33.306666666666665, + "grad_norm": 0.6880955100059509, + "learning_rate": 3.33542e-05, + "loss": 1.7931544494628906, + "step": 249800 + }, + { + "epoch": 33.32, + "grad_norm": 0.7262503504753113, + "learning_rate": 3.334753333333334e-05, + "loss": 1.7994598388671874, + "step": 249900 + }, + { + "epoch": 33.333333333333336, + "grad_norm": 0.7109691500663757, + "learning_rate": 3.334086666666667e-05, + "loss": 1.79959716796875, + "step": 250000 + }, + { + "epoch": 33.346666666666664, + "grad_norm": 0.6842638850212097, + "learning_rate": 3.3334200000000003e-05, + "loss": 1.8011337280273438, + "step": 250100 + }, + { + "epoch": 33.36, + "grad_norm": 0.6685046553611755, + "learning_rate": 3.3327533333333336e-05, + "loss": 1.7983401489257813, + "step": 250200 + }, + { + "epoch": 33.373333333333335, + "grad_norm": 0.6885914206504822, + "learning_rate": 3.332086666666667e-05, + "loss": 1.7981385803222656, + "step": 250300 + }, + { + "epoch": 33.38666666666666, + "grad_norm": 0.6753001809120178, + "learning_rate": 3.33142e-05, + "loss": 1.801946258544922, + "step": 250400 + }, + { + "epoch": 33.4, + "grad_norm": 0.7187413573265076, + "learning_rate": 3.330753333333333e-05, + "loss": 1.8074136352539063, + "step": 250500 + }, + { + "epoch": 33.413333333333334, + "grad_norm": 0.6833614706993103, + "learning_rate": 3.330086666666667e-05, + "loss": 1.8049317932128905, + "step": 250600 + }, + { + "epoch": 33.42666666666667, + "grad_norm": 0.7071197032928467, + "learning_rate": 3.3294200000000004e-05, + "loss": 1.806915283203125, + "step": 250700 + }, + { + "epoch": 33.44, + "grad_norm": 0.6831562519073486, + "learning_rate": 3.3287533333333336e-05, + "loss": 1.8139138793945313, + "step": 250800 + }, + { + "epoch": 33.45333333333333, + "grad_norm": 0.6773768663406372, + "learning_rate": 3.328086666666667e-05, + "loss": 1.8078269958496094, + "step": 250900 + }, + { + "epoch": 33.46666666666667, + "grad_norm": 0.7057144045829773, + "learning_rate": 3.32742e-05, + "loss": 1.8035978698730468, + "step": 251000 + }, + { + "epoch": 33.48, + "grad_norm": 0.6799418926239014, + "learning_rate": 3.326753333333333e-05, + "loss": 1.8070053100585937, + "step": 251100 + }, + { + "epoch": 33.49333333333333, + "grad_norm": 0.7026559710502625, + "learning_rate": 3.3260866666666665e-05, + "loss": 1.8107217407226563, + "step": 251200 + }, + { + "epoch": 33.50666666666667, + "grad_norm": 0.7009078860282898, + "learning_rate": 3.3254200000000004e-05, + "loss": 1.8101768493652344, + "step": 251300 + }, + { + "epoch": 33.52, + "grad_norm": 0.6963510513305664, + "learning_rate": 3.3247533333333337e-05, + "loss": 1.8111842346191407, + "step": 251400 + }, + { + "epoch": 33.53333333333333, + "grad_norm": 0.7202256321907043, + "learning_rate": 3.324086666666667e-05, + "loss": 1.8143753051757812, + "step": 251500 + }, + { + "epoch": 33.54666666666667, + "grad_norm": 0.7055407166481018, + "learning_rate": 3.32342e-05, + "loss": 1.809178924560547, + "step": 251600 + }, + { + "epoch": 33.56, + "grad_norm": 0.6829138398170471, + "learning_rate": 3.322753333333333e-05, + "loss": 1.8132537841796874, + "step": 251700 + }, + { + "epoch": 33.57333333333333, + "grad_norm": 0.7111719250679016, + "learning_rate": 3.3220866666666666e-05, + "loss": 1.814945831298828, + "step": 251800 + }, + { + "epoch": 33.586666666666666, + "grad_norm": 0.686894953250885, + "learning_rate": 3.32142e-05, + "loss": 1.8139251708984374, + "step": 251900 + }, + { + "epoch": 33.6, + "grad_norm": 0.717078685760498, + "learning_rate": 3.320753333333334e-05, + "loss": 1.8149430847167969, + "step": 252000 + }, + { + "epoch": 33.61333333333333, + "grad_norm": 0.7175689935684204, + "learning_rate": 3.320086666666667e-05, + "loss": 1.816144256591797, + "step": 252100 + }, + { + "epoch": 33.626666666666665, + "grad_norm": 0.683018684387207, + "learning_rate": 3.319426666666667e-05, + "loss": 1.8191485595703125, + "step": 252200 + }, + { + "epoch": 33.64, + "grad_norm": 0.7148421406745911, + "learning_rate": 3.31876e-05, + "loss": 1.818320770263672, + "step": 252300 + }, + { + "epoch": 33.653333333333336, + "grad_norm": 0.7053855061531067, + "learning_rate": 3.318093333333333e-05, + "loss": 1.8194677734375, + "step": 252400 + }, + { + "epoch": 33.666666666666664, + "grad_norm": 0.7079534530639648, + "learning_rate": 3.317426666666667e-05, + "loss": 1.81727783203125, + "step": 252500 + }, + { + "epoch": 33.68, + "grad_norm": 0.7095150351524353, + "learning_rate": 3.3167600000000004e-05, + "loss": 1.8225425720214843, + "step": 252600 + }, + { + "epoch": 33.693333333333335, + "grad_norm": 0.69334477186203, + "learning_rate": 3.316093333333333e-05, + "loss": 1.8201156616210938, + "step": 252700 + }, + { + "epoch": 33.70666666666666, + "grad_norm": 0.6913406848907471, + "learning_rate": 3.315426666666667e-05, + "loss": 1.8216618347167968, + "step": 252800 + }, + { + "epoch": 33.72, + "grad_norm": 0.7094120979309082, + "learning_rate": 3.31476e-05, + "loss": 1.8205288696289061, + "step": 252900 + }, + { + "epoch": 33.733333333333334, + "grad_norm": 0.7051302790641785, + "learning_rate": 3.314093333333333e-05, + "loss": 1.8198191833496093, + "step": 253000 + }, + { + "epoch": 33.74666666666667, + "grad_norm": 0.7253535985946655, + "learning_rate": 3.313426666666667e-05, + "loss": 1.8211686706542969, + "step": 253100 + }, + { + "epoch": 33.76, + "grad_norm": 0.7110514044761658, + "learning_rate": 3.3127600000000004e-05, + "loss": 1.8267140197753906, + "step": 253200 + }, + { + "epoch": 33.77333333333333, + "grad_norm": 0.7230038046836853, + "learning_rate": 3.312093333333334e-05, + "loss": 1.8259141540527344, + "step": 253300 + }, + { + "epoch": 33.78666666666667, + "grad_norm": 0.6794722080230713, + "learning_rate": 3.311426666666667e-05, + "loss": 1.8242117309570312, + "step": 253400 + }, + { + "epoch": 33.8, + "grad_norm": 0.7026447653770447, + "learning_rate": 3.31076e-05, + "loss": 1.8272193908691405, + "step": 253500 + }, + { + "epoch": 33.81333333333333, + "grad_norm": 0.6905506253242493, + "learning_rate": 3.3100933333333334e-05, + "loss": 1.8256301879882812, + "step": 253600 + }, + { + "epoch": 33.82666666666667, + "grad_norm": 0.7163878679275513, + "learning_rate": 3.3094266666666666e-05, + "loss": 1.8273219299316406, + "step": 253700 + }, + { + "epoch": 33.84, + "grad_norm": 0.7006620764732361, + "learning_rate": 3.3087600000000005e-05, + "loss": 1.8279637145996093, + "step": 253800 + }, + { + "epoch": 33.85333333333333, + "grad_norm": 0.7368113994598389, + "learning_rate": 3.308093333333334e-05, + "loss": 1.8289633178710938, + "step": 253900 + }, + { + "epoch": 33.86666666666667, + "grad_norm": 0.7007164359092712, + "learning_rate": 3.307426666666667e-05, + "loss": 1.8291307067871094, + "step": 254000 + }, + { + "epoch": 33.88, + "grad_norm": 0.6749239563941956, + "learning_rate": 3.30676e-05, + "loss": 1.8294178771972656, + "step": 254100 + }, + { + "epoch": 33.89333333333333, + "grad_norm": 0.6939826011657715, + "learning_rate": 3.3061e-05, + "loss": 1.8320030212402343, + "step": 254200 + }, + { + "epoch": 33.906666666666666, + "grad_norm": 0.6852236390113831, + "learning_rate": 3.305433333333334e-05, + "loss": 1.8298947143554687, + "step": 254300 + }, + { + "epoch": 33.92, + "grad_norm": 0.6890901923179626, + "learning_rate": 3.3047666666666665e-05, + "loss": 1.8333465576171875, + "step": 254400 + }, + { + "epoch": 33.93333333333333, + "grad_norm": 0.6870790719985962, + "learning_rate": 3.3041e-05, + "loss": 1.8343376159667968, + "step": 254500 + }, + { + "epoch": 33.946666666666665, + "grad_norm": 0.6900056004524231, + "learning_rate": 3.3034333333333337e-05, + "loss": 1.8305508422851562, + "step": 254600 + }, + { + "epoch": 33.96, + "grad_norm": 0.725274920463562, + "learning_rate": 3.302766666666667e-05, + "loss": 1.8356878662109375, + "step": 254700 + }, + { + "epoch": 33.973333333333336, + "grad_norm": 0.7070014476776123, + "learning_rate": 3.3021e-05, + "loss": 1.8370289611816406, + "step": 254800 + }, + { + "epoch": 33.986666666666665, + "grad_norm": 0.671153724193573, + "learning_rate": 3.3014333333333333e-05, + "loss": 1.8323648071289063, + "step": 254900 + }, + { + "epoch": 34.0, + "grad_norm": 0.722389280796051, + "learning_rate": 3.300766666666667e-05, + "loss": 1.8307501220703124, + "step": 255000 + }, + { + "epoch": 34.013333333333335, + "grad_norm": 0.6944375038146973, + "learning_rate": 3.3001000000000005e-05, + "loss": 1.7463754272460938, + "step": 255100 + }, + { + "epoch": 34.026666666666664, + "grad_norm": 0.7085298895835876, + "learning_rate": 3.299433333333333e-05, + "loss": 1.7458438110351562, + "step": 255200 + }, + { + "epoch": 34.04, + "grad_norm": 0.7206888794898987, + "learning_rate": 3.298766666666667e-05, + "loss": 1.7499029541015625, + "step": 255300 + }, + { + "epoch": 34.053333333333335, + "grad_norm": 0.7031662464141846, + "learning_rate": 3.2981e-05, + "loss": 1.748662109375, + "step": 255400 + }, + { + "epoch": 34.06666666666667, + "grad_norm": 0.6964542269706726, + "learning_rate": 3.2974333333333334e-05, + "loss": 1.7524285888671876, + "step": 255500 + }, + { + "epoch": 34.08, + "grad_norm": 0.684666097164154, + "learning_rate": 3.2967666666666666e-05, + "loss": 1.7483273315429688, + "step": 255600 + }, + { + "epoch": 34.093333333333334, + "grad_norm": 0.7105111479759216, + "learning_rate": 3.2961000000000005e-05, + "loss": 1.7552597045898437, + "step": 255700 + }, + { + "epoch": 34.10666666666667, + "grad_norm": 0.7125686407089233, + "learning_rate": 3.295433333333334e-05, + "loss": 1.7612779235839844, + "step": 255800 + }, + { + "epoch": 34.12, + "grad_norm": 0.7236320972442627, + "learning_rate": 3.294766666666666e-05, + "loss": 1.7570318603515624, + "step": 255900 + }, + { + "epoch": 34.13333333333333, + "grad_norm": 0.7234290242195129, + "learning_rate": 3.2941e-05, + "loss": 1.7590721130371094, + "step": 256000 + }, + { + "epoch": 34.14666666666667, + "grad_norm": 0.709517776966095, + "learning_rate": 3.2934333333333334e-05, + "loss": 1.7588279724121094, + "step": 256100 + }, + { + "epoch": 34.16, + "grad_norm": 0.7075774669647217, + "learning_rate": 3.292773333333333e-05, + "loss": 1.7636314392089845, + "step": 256200 + }, + { + "epoch": 34.17333333333333, + "grad_norm": 0.685980498790741, + "learning_rate": 3.2921066666666666e-05, + "loss": 1.7642453002929688, + "step": 256300 + }, + { + "epoch": 34.18666666666667, + "grad_norm": 0.6789040565490723, + "learning_rate": 3.29144e-05, + "loss": 1.7647459411621094, + "step": 256400 + }, + { + "epoch": 34.2, + "grad_norm": 0.7118276357650757, + "learning_rate": 3.290773333333334e-05, + "loss": 1.7657359313964844, + "step": 256500 + }, + { + "epoch": 34.21333333333333, + "grad_norm": 0.7182782292366028, + "learning_rate": 3.290106666666667e-05, + "loss": 1.767525634765625, + "step": 256600 + }, + { + "epoch": 34.22666666666667, + "grad_norm": 0.6663193106651306, + "learning_rate": 3.28944e-05, + "loss": 1.7640966796875, + "step": 256700 + }, + { + "epoch": 34.24, + "grad_norm": 0.6728143692016602, + "learning_rate": 3.288773333333334e-05, + "loss": 1.7657148742675781, + "step": 256800 + }, + { + "epoch": 34.25333333333333, + "grad_norm": 0.7225044369697571, + "learning_rate": 3.2881066666666666e-05, + "loss": 1.771612091064453, + "step": 256900 + }, + { + "epoch": 34.266666666666666, + "grad_norm": 0.6851556897163391, + "learning_rate": 3.28744e-05, + "loss": 1.7695832824707032, + "step": 257000 + }, + { + "epoch": 34.28, + "grad_norm": 0.6964775323867798, + "learning_rate": 3.286773333333333e-05, + "loss": 1.7699888610839845, + "step": 257100 + }, + { + "epoch": 34.29333333333334, + "grad_norm": 0.708335280418396, + "learning_rate": 3.286106666666667e-05, + "loss": 1.769803009033203, + "step": 257200 + }, + { + "epoch": 34.306666666666665, + "grad_norm": 0.7314557433128357, + "learning_rate": 3.28544e-05, + "loss": 1.7759251403808594, + "step": 257300 + }, + { + "epoch": 34.32, + "grad_norm": 0.7204164862632751, + "learning_rate": 3.2847733333333334e-05, + "loss": 1.7730311584472656, + "step": 257400 + }, + { + "epoch": 34.333333333333336, + "grad_norm": 0.71314936876297, + "learning_rate": 3.284106666666667e-05, + "loss": 1.7768055725097656, + "step": 257500 + }, + { + "epoch": 34.346666666666664, + "grad_norm": 0.6884594559669495, + "learning_rate": 3.2834400000000005e-05, + "loss": 1.7790744018554687, + "step": 257600 + }, + { + "epoch": 34.36, + "grad_norm": 0.7092511653900146, + "learning_rate": 3.282773333333333e-05, + "loss": 1.7782786560058594, + "step": 257700 + }, + { + "epoch": 34.373333333333335, + "grad_norm": 0.758355438709259, + "learning_rate": 3.282106666666667e-05, + "loss": 1.7751937866210938, + "step": 257800 + }, + { + "epoch": 34.38666666666666, + "grad_norm": 0.7290791869163513, + "learning_rate": 3.28144e-05, + "loss": 1.7803231811523437, + "step": 257900 + }, + { + "epoch": 34.4, + "grad_norm": 0.7067010998725891, + "learning_rate": 3.2807733333333334e-05, + "loss": 1.7779922485351562, + "step": 258000 + }, + { + "epoch": 34.413333333333334, + "grad_norm": 0.7042437791824341, + "learning_rate": 3.280106666666667e-05, + "loss": 1.7828672790527345, + "step": 258100 + }, + { + "epoch": 34.42666666666667, + "grad_norm": 0.7334814667701721, + "learning_rate": 3.2794466666666666e-05, + "loss": 1.7837445068359374, + "step": 258200 + }, + { + "epoch": 34.44, + "grad_norm": 0.6984947919845581, + "learning_rate": 3.2787800000000005e-05, + "loss": 1.7827430725097657, + "step": 258300 + }, + { + "epoch": 34.45333333333333, + "grad_norm": 0.7189805507659912, + "learning_rate": 3.278113333333334e-05, + "loss": 1.7818618774414063, + "step": 258400 + }, + { + "epoch": 34.46666666666667, + "grad_norm": 0.7172175049781799, + "learning_rate": 3.277446666666667e-05, + "loss": 1.786385040283203, + "step": 258500 + }, + { + "epoch": 34.48, + "grad_norm": 0.6976024508476257, + "learning_rate": 3.27678e-05, + "loss": 1.7863441467285157, + "step": 258600 + }, + { + "epoch": 34.49333333333333, + "grad_norm": 0.7336111664772034, + "learning_rate": 3.2761133333333334e-05, + "loss": 1.7882395935058595, + "step": 258700 + }, + { + "epoch": 34.50666666666667, + "grad_norm": 0.7398297190666199, + "learning_rate": 3.2754466666666666e-05, + "loss": 1.7881121826171875, + "step": 258800 + }, + { + "epoch": 34.52, + "grad_norm": 0.7262130379676819, + "learning_rate": 3.27478e-05, + "loss": 1.7835282897949218, + "step": 258900 + }, + { + "epoch": 34.53333333333333, + "grad_norm": 0.7167975306510925, + "learning_rate": 3.274113333333334e-05, + "loss": 1.7948524475097656, + "step": 259000 + }, + { + "epoch": 34.54666666666667, + "grad_norm": 0.7211325764656067, + "learning_rate": 3.273446666666667e-05, + "loss": 1.7875064086914063, + "step": 259100 + }, + { + "epoch": 34.56, + "grad_norm": 0.7152880430221558, + "learning_rate": 3.27278e-05, + "loss": 1.7891029357910155, + "step": 259200 + }, + { + "epoch": 34.57333333333333, + "grad_norm": 0.6966748833656311, + "learning_rate": 3.2721133333333334e-05, + "loss": 1.792362823486328, + "step": 259300 + }, + { + "epoch": 34.586666666666666, + "grad_norm": 0.7045295238494873, + "learning_rate": 3.2714466666666667e-05, + "loss": 1.7886041259765626, + "step": 259400 + }, + { + "epoch": 34.6, + "grad_norm": 0.7518943548202515, + "learning_rate": 3.27078e-05, + "loss": 1.7914320373535155, + "step": 259500 + }, + { + "epoch": 34.61333333333333, + "grad_norm": 0.7086119651794434, + "learning_rate": 3.2701200000000005e-05, + "loss": 1.7893756103515626, + "step": 259600 + }, + { + "epoch": 34.626666666666665, + "grad_norm": 0.7113426923751831, + "learning_rate": 3.269453333333333e-05, + "loss": 1.7912899780273437, + "step": 259700 + }, + { + "epoch": 34.64, + "grad_norm": 0.7117241621017456, + "learning_rate": 3.268786666666667e-05, + "loss": 1.7933538818359376, + "step": 259800 + }, + { + "epoch": 34.653333333333336, + "grad_norm": 0.7044850587844849, + "learning_rate": 3.26812e-05, + "loss": 1.7952735900878907, + "step": 259900 + }, + { + "epoch": 34.666666666666664, + "grad_norm": 0.7023999691009521, + "learning_rate": 3.2674533333333334e-05, + "loss": 1.7962698364257812, + "step": 260000 + }, + { + "epoch": 34.68, + "grad_norm": 0.7212279438972473, + "learning_rate": 3.2667866666666666e-05, + "loss": 1.795453338623047, + "step": 260100 + }, + { + "epoch": 34.693333333333335, + "grad_norm": 0.7294625043869019, + "learning_rate": 3.2661200000000005e-05, + "loss": 1.8032328796386718, + "step": 260200 + }, + { + "epoch": 34.70666666666666, + "grad_norm": 0.7199930548667908, + "learning_rate": 3.265453333333334e-05, + "loss": 1.7969496154785156, + "step": 260300 + }, + { + "epoch": 34.72, + "grad_norm": 0.7424473166465759, + "learning_rate": 3.264786666666666e-05, + "loss": 1.8003564453125, + "step": 260400 + }, + { + "epoch": 34.733333333333334, + "grad_norm": 0.6995416283607483, + "learning_rate": 3.26412e-05, + "loss": 1.8012725830078125, + "step": 260500 + }, + { + "epoch": 34.74666666666667, + "grad_norm": 0.712614893913269, + "learning_rate": 3.2634533333333334e-05, + "loss": 1.79720458984375, + "step": 260600 + }, + { + "epoch": 34.76, + "grad_norm": 0.7090932130813599, + "learning_rate": 3.2627866666666666e-05, + "loss": 1.796382598876953, + "step": 260700 + }, + { + "epoch": 34.77333333333333, + "grad_norm": 0.715495765209198, + "learning_rate": 3.26212e-05, + "loss": 1.8014085388183594, + "step": 260800 + }, + { + "epoch": 34.78666666666667, + "grad_norm": 0.6967054009437561, + "learning_rate": 3.261453333333334e-05, + "loss": 1.8019192504882813, + "step": 260900 + }, + { + "epoch": 34.8, + "grad_norm": 0.7249776124954224, + "learning_rate": 3.260786666666667e-05, + "loss": 1.8009378051757812, + "step": 261000 + }, + { + "epoch": 34.81333333333333, + "grad_norm": 0.7215238213539124, + "learning_rate": 3.26012e-05, + "loss": 1.8022233581542968, + "step": 261100 + }, + { + "epoch": 34.82666666666667, + "grad_norm": 0.6885356903076172, + "learning_rate": 3.2594533333333334e-05, + "loss": 1.8026568603515625, + "step": 261200 + }, + { + "epoch": 34.84, + "grad_norm": 0.732446551322937, + "learning_rate": 3.258786666666667e-05, + "loss": 1.8067509460449218, + "step": 261300 + }, + { + "epoch": 34.85333333333333, + "grad_norm": 0.7237669229507446, + "learning_rate": 3.25812e-05, + "loss": 1.8049159240722656, + "step": 261400 + }, + { + "epoch": 34.86666666666667, + "grad_norm": 0.7220719456672668, + "learning_rate": 3.257453333333334e-05, + "loss": 1.8078208923339845, + "step": 261500 + }, + { + "epoch": 34.88, + "grad_norm": 0.7088682651519775, + "learning_rate": 3.256786666666667e-05, + "loss": 1.8080841064453126, + "step": 261600 + }, + { + "epoch": 34.89333333333333, + "grad_norm": 0.7922437787055969, + "learning_rate": 3.25612e-05, + "loss": 1.8082931518554688, + "step": 261700 + }, + { + "epoch": 34.906666666666666, + "grad_norm": 0.707200825214386, + "learning_rate": 3.25546e-05, + "loss": 1.8050637817382813, + "step": 261800 + }, + { + "epoch": 34.92, + "grad_norm": 0.7059547305107117, + "learning_rate": 3.2547933333333334e-05, + "loss": 1.8101914978027345, + "step": 261900 + }, + { + "epoch": 34.93333333333333, + "grad_norm": 0.7146642804145813, + "learning_rate": 3.254126666666667e-05, + "loss": 1.8113522338867187, + "step": 262000 + }, + { + "epoch": 34.946666666666665, + "grad_norm": 0.7141034603118896, + "learning_rate": 3.2534600000000005e-05, + "loss": 1.8065060424804686, + "step": 262100 + }, + { + "epoch": 34.96, + "grad_norm": 0.7005040645599365, + "learning_rate": 3.252793333333333e-05, + "loss": 1.8118878173828126, + "step": 262200 + }, + { + "epoch": 34.973333333333336, + "grad_norm": 0.6977455019950867, + "learning_rate": 3.252126666666667e-05, + "loss": 1.8072309875488282, + "step": 262300 + }, + { + "epoch": 34.986666666666665, + "grad_norm": 0.7083906531333923, + "learning_rate": 3.25146e-05, + "loss": 1.8132292175292968, + "step": 262400 + }, + { + "epoch": 35.0, + "grad_norm": 0.7053395509719849, + "learning_rate": 3.2507933333333334e-05, + "loss": 1.810267333984375, + "step": 262500 + }, + { + "epoch": 35.013333333333335, + "grad_norm": 0.7179415225982666, + "learning_rate": 3.2501266666666667e-05, + "loss": 1.720147705078125, + "step": 262600 + }, + { + "epoch": 35.026666666666664, + "grad_norm": 0.6983874440193176, + "learning_rate": 3.2494600000000006e-05, + "loss": 1.7274235534667968, + "step": 262700 + }, + { + "epoch": 35.04, + "grad_norm": 0.7099409699440002, + "learning_rate": 3.248793333333334e-05, + "loss": 1.7269102478027343, + "step": 262800 + }, + { + "epoch": 35.053333333333335, + "grad_norm": 0.7118650674819946, + "learning_rate": 3.248126666666667e-05, + "loss": 1.7248257446289061, + "step": 262900 + }, + { + "epoch": 35.06666666666667, + "grad_norm": 0.7239251136779785, + "learning_rate": 3.24746e-05, + "loss": 1.7289593505859375, + "step": 263000 + }, + { + "epoch": 35.08, + "grad_norm": 0.7100144624710083, + "learning_rate": 3.2467933333333335e-05, + "loss": 1.7312472534179688, + "step": 263100 + }, + { + "epoch": 35.093333333333334, + "grad_norm": 0.7234798669815063, + "learning_rate": 3.246126666666667e-05, + "loss": 1.73094970703125, + "step": 263200 + }, + { + "epoch": 35.10666666666667, + "grad_norm": 0.6909958124160767, + "learning_rate": 3.24546e-05, + "loss": 1.736466522216797, + "step": 263300 + }, + { + "epoch": 35.12, + "grad_norm": 0.7305464148521423, + "learning_rate": 3.244793333333334e-05, + "loss": 1.7368101501464843, + "step": 263400 + }, + { + "epoch": 35.13333333333333, + "grad_norm": 0.716325044631958, + "learning_rate": 3.244126666666667e-05, + "loss": 1.7344117736816407, + "step": 263500 + }, + { + "epoch": 35.14666666666667, + "grad_norm": 0.7322099208831787, + "learning_rate": 3.24346e-05, + "loss": 1.7373164367675782, + "step": 263600 + }, + { + "epoch": 35.16, + "grad_norm": 0.7618185877799988, + "learning_rate": 3.2427933333333335e-05, + "loss": 1.7396737670898437, + "step": 263700 + }, + { + "epoch": 35.17333333333333, + "grad_norm": 0.7051612138748169, + "learning_rate": 3.242126666666667e-05, + "loss": 1.7394839477539064, + "step": 263800 + }, + { + "epoch": 35.18666666666667, + "grad_norm": 0.6973703503608704, + "learning_rate": 3.24146e-05, + "loss": 1.7405155944824218, + "step": 263900 + }, + { + "epoch": 35.2, + "grad_norm": 0.7270771265029907, + "learning_rate": 3.240793333333333e-05, + "loss": 1.742344970703125, + "step": 264000 + }, + { + "epoch": 35.21333333333333, + "grad_norm": 0.7269550561904907, + "learning_rate": 3.240126666666667e-05, + "loss": 1.7401051330566406, + "step": 264100 + }, + { + "epoch": 35.22666666666667, + "grad_norm": 0.7064307928085327, + "learning_rate": 3.23946e-05, + "loss": 1.742832489013672, + "step": 264200 + }, + { + "epoch": 35.24, + "grad_norm": 0.6901838779449463, + "learning_rate": 3.2387933333333335e-05, + "loss": 1.7487083435058595, + "step": 264300 + }, + { + "epoch": 35.25333333333333, + "grad_norm": 0.7132669687271118, + "learning_rate": 3.238126666666667e-05, + "loss": 1.7473236083984376, + "step": 264400 + }, + { + "epoch": 35.266666666666666, + "grad_norm": 0.7222061157226562, + "learning_rate": 3.23746e-05, + "loss": 1.7487094116210937, + "step": 264500 + }, + { + "epoch": 35.28, + "grad_norm": 0.7056880593299866, + "learning_rate": 3.236793333333333e-05, + "loss": 1.7457852172851562, + "step": 264600 + }, + { + "epoch": 35.29333333333334, + "grad_norm": 0.7410815954208374, + "learning_rate": 3.2361266666666665e-05, + "loss": 1.7503875732421874, + "step": 264700 + }, + { + "epoch": 35.306666666666665, + "grad_norm": 0.7270119786262512, + "learning_rate": 3.2354600000000004e-05, + "loss": 1.7513735961914063, + "step": 264800 + }, + { + "epoch": 35.32, + "grad_norm": 0.7054768204689026, + "learning_rate": 3.2347933333333336e-05, + "loss": 1.7556321716308594, + "step": 264900 + }, + { + "epoch": 35.333333333333336, + "grad_norm": 0.7149020433425903, + "learning_rate": 3.234126666666667e-05, + "loss": 1.7507872009277343, + "step": 265000 + }, + { + "epoch": 35.346666666666664, + "grad_norm": 0.7018755674362183, + "learning_rate": 3.23346e-05, + "loss": 1.7512226867675782, + "step": 265100 + }, + { + "epoch": 35.36, + "grad_norm": 0.7539740204811096, + "learning_rate": 3.232793333333333e-05, + "loss": 1.751693115234375, + "step": 265200 + }, + { + "epoch": 35.373333333333335, + "grad_norm": 0.7125043869018555, + "learning_rate": 3.2321266666666665e-05, + "loss": 1.751684112548828, + "step": 265300 + }, + { + "epoch": 35.38666666666666, + "grad_norm": 0.7284225821495056, + "learning_rate": 3.23146e-05, + "loss": 1.7530982971191407, + "step": 265400 + }, + { + "epoch": 35.4, + "grad_norm": 0.7372731566429138, + "learning_rate": 3.2307933333333336e-05, + "loss": 1.7575666809082031, + "step": 265500 + }, + { + "epoch": 35.413333333333334, + "grad_norm": 0.7320109009742737, + "learning_rate": 3.230126666666667e-05, + "loss": 1.7619415283203126, + "step": 265600 + }, + { + "epoch": 35.42666666666667, + "grad_norm": 0.715881884098053, + "learning_rate": 3.22946e-05, + "loss": 1.75659912109375, + "step": 265700 + }, + { + "epoch": 35.44, + "grad_norm": 0.7461238503456116, + "learning_rate": 3.2288e-05, + "loss": 1.7591160583496093, + "step": 265800 + }, + { + "epoch": 35.45333333333333, + "grad_norm": 0.751312255859375, + "learning_rate": 3.228133333333334e-05, + "loss": 1.761936492919922, + "step": 265900 + }, + { + "epoch": 35.46666666666667, + "grad_norm": 0.7453945279121399, + "learning_rate": 3.227466666666667e-05, + "loss": 1.7588221740722656, + "step": 266000 + }, + { + "epoch": 35.48, + "grad_norm": 0.7304133176803589, + "learning_rate": 3.2268000000000003e-05, + "loss": 1.7641864013671875, + "step": 266100 + }, + { + "epoch": 35.49333333333333, + "grad_norm": 0.7159408926963806, + "learning_rate": 3.226133333333333e-05, + "loss": 1.763712158203125, + "step": 266200 + }, + { + "epoch": 35.50666666666667, + "grad_norm": 0.7238728404045105, + "learning_rate": 3.225466666666667e-05, + "loss": 1.766953582763672, + "step": 266300 + }, + { + "epoch": 35.52, + "grad_norm": 0.7204245924949646, + "learning_rate": 3.2248e-05, + "loss": 1.7641201782226563, + "step": 266400 + }, + { + "epoch": 35.53333333333333, + "grad_norm": 0.7490574717521667, + "learning_rate": 3.224133333333333e-05, + "loss": 1.7628182983398437, + "step": 266500 + }, + { + "epoch": 35.54666666666667, + "grad_norm": 0.7318447232246399, + "learning_rate": 3.223466666666667e-05, + "loss": 1.768040008544922, + "step": 266600 + }, + { + "epoch": 35.56, + "grad_norm": 0.7002058625221252, + "learning_rate": 3.2228000000000004e-05, + "loss": 1.7642034912109374, + "step": 266700 + }, + { + "epoch": 35.57333333333333, + "grad_norm": 0.7356955409049988, + "learning_rate": 3.2221333333333336e-05, + "loss": 1.765457000732422, + "step": 266800 + }, + { + "epoch": 35.586666666666666, + "grad_norm": 0.7351566553115845, + "learning_rate": 3.2214733333333335e-05, + "loss": 1.7657107543945312, + "step": 266900 + }, + { + "epoch": 35.6, + "grad_norm": 0.7202064394950867, + "learning_rate": 3.220806666666667e-05, + "loss": 1.7705520629882812, + "step": 267000 + }, + { + "epoch": 35.61333333333333, + "grad_norm": 0.7428541779518127, + "learning_rate": 3.2201400000000006e-05, + "loss": 1.769801483154297, + "step": 267100 + }, + { + "epoch": 35.626666666666665, + "grad_norm": 0.7157596349716187, + "learning_rate": 3.219473333333333e-05, + "loss": 1.769151153564453, + "step": 267200 + }, + { + "epoch": 35.64, + "grad_norm": 0.7332503199577332, + "learning_rate": 3.2188066666666664e-05, + "loss": 1.7689814758300781, + "step": 267300 + }, + { + "epoch": 35.653333333333336, + "grad_norm": 0.7052285075187683, + "learning_rate": 3.21814e-05, + "loss": 1.7711866760253907, + "step": 267400 + }, + { + "epoch": 35.666666666666664, + "grad_norm": 0.7430896162986755, + "learning_rate": 3.2174733333333336e-05, + "loss": 1.7715708923339843, + "step": 267500 + }, + { + "epoch": 35.68, + "grad_norm": 0.7421042323112488, + "learning_rate": 3.216806666666667e-05, + "loss": 1.7714950561523437, + "step": 267600 + }, + { + "epoch": 35.693333333333335, + "grad_norm": 0.7241594791412354, + "learning_rate": 3.21614e-05, + "loss": 1.7752314758300782, + "step": 267700 + }, + { + "epoch": 35.70666666666666, + "grad_norm": 0.6929828524589539, + "learning_rate": 3.215473333333334e-05, + "loss": 1.778212127685547, + "step": 267800 + }, + { + "epoch": 35.72, + "grad_norm": 0.7369002103805542, + "learning_rate": 3.214806666666667e-05, + "loss": 1.774071502685547, + "step": 267900 + }, + { + "epoch": 35.733333333333334, + "grad_norm": 0.7390934824943542, + "learning_rate": 3.21414e-05, + "loss": 1.7779090881347657, + "step": 268000 + }, + { + "epoch": 35.74666666666667, + "grad_norm": 0.7036294341087341, + "learning_rate": 3.2134733333333336e-05, + "loss": 1.77925537109375, + "step": 268100 + }, + { + "epoch": 35.76, + "grad_norm": 0.713968813419342, + "learning_rate": 3.212806666666667e-05, + "loss": 1.780936279296875, + "step": 268200 + }, + { + "epoch": 35.77333333333333, + "grad_norm": 0.7476961612701416, + "learning_rate": 3.21214e-05, + "loss": 1.7815696716308593, + "step": 268300 + }, + { + "epoch": 35.78666666666667, + "grad_norm": 0.7531934380531311, + "learning_rate": 3.211473333333333e-05, + "loss": 1.778701171875, + "step": 268400 + }, + { + "epoch": 35.8, + "grad_norm": 0.7263785600662231, + "learning_rate": 3.210806666666667e-05, + "loss": 1.7831895446777344, + "step": 268500 + }, + { + "epoch": 35.81333333333333, + "grad_norm": 0.7144677042961121, + "learning_rate": 3.2101400000000004e-05, + "loss": 1.7823295593261719, + "step": 268600 + }, + { + "epoch": 35.82666666666667, + "grad_norm": 0.7361660003662109, + "learning_rate": 3.209473333333333e-05, + "loss": 1.7813780212402344, + "step": 268700 + }, + { + "epoch": 35.84, + "grad_norm": 0.7294068932533264, + "learning_rate": 3.208806666666667e-05, + "loss": 1.776859588623047, + "step": 268800 + }, + { + "epoch": 35.85333333333333, + "grad_norm": 0.7189229726791382, + "learning_rate": 3.20814e-05, + "loss": 1.7815873718261719, + "step": 268900 + }, + { + "epoch": 35.86666666666667, + "grad_norm": 0.7154908180236816, + "learning_rate": 3.207473333333333e-05, + "loss": 1.7768629455566407, + "step": 269000 + }, + { + "epoch": 35.88, + "grad_norm": 0.7369889616966248, + "learning_rate": 3.2068066666666665e-05, + "loss": 1.7820993041992188, + "step": 269100 + }, + { + "epoch": 35.89333333333333, + "grad_norm": 0.7437416911125183, + "learning_rate": 3.2061400000000004e-05, + "loss": 1.7829997253417968, + "step": 269200 + }, + { + "epoch": 35.906666666666666, + "grad_norm": 0.6980392336845398, + "learning_rate": 3.2054800000000004e-05, + "loss": 1.788327178955078, + "step": 269300 + }, + { + "epoch": 35.92, + "grad_norm": 0.7489062547683716, + "learning_rate": 3.2048133333333336e-05, + "loss": 1.784275360107422, + "step": 269400 + }, + { + "epoch": 35.93333333333333, + "grad_norm": 0.7697765827178955, + "learning_rate": 3.204146666666667e-05, + "loss": 1.7840049743652344, + "step": 269500 + }, + { + "epoch": 35.946666666666665, + "grad_norm": 0.7413792014122009, + "learning_rate": 3.20348e-05, + "loss": 1.7808065795898438, + "step": 269600 + }, + { + "epoch": 35.96, + "grad_norm": 0.7363737225532532, + "learning_rate": 3.202813333333333e-05, + "loss": 1.7876707458496093, + "step": 269700 + }, + { + "epoch": 35.973333333333336, + "grad_norm": 0.7427986860275269, + "learning_rate": 3.2021466666666665e-05, + "loss": 1.786104736328125, + "step": 269800 + }, + { + "epoch": 35.986666666666665, + "grad_norm": 0.7256585359573364, + "learning_rate": 3.20148e-05, + "loss": 1.7870755004882812, + "step": 269900 + }, + { + "epoch": 36.0, + "grad_norm": 0.7233152389526367, + "learning_rate": 3.2008133333333336e-05, + "loss": 1.78588623046875, + "step": 270000 + }, + { + "epoch": 36.013333333333335, + "grad_norm": 0.711797833442688, + "learning_rate": 3.200146666666667e-05, + "loss": 1.7004847717285156, + "step": 270100 + }, + { + "epoch": 36.026666666666664, + "grad_norm": 0.7260730862617493, + "learning_rate": 3.19948e-05, + "loss": 1.701490478515625, + "step": 270200 + }, + { + "epoch": 36.04, + "grad_norm": 0.7351646423339844, + "learning_rate": 3.198813333333334e-05, + "loss": 1.70460205078125, + "step": 270300 + }, + { + "epoch": 36.053333333333335, + "grad_norm": 0.7190471291542053, + "learning_rate": 3.198146666666667e-05, + "loss": 1.6980458068847657, + "step": 270400 + }, + { + "epoch": 36.06666666666667, + "grad_norm": 0.7336345911026001, + "learning_rate": 3.19748e-05, + "loss": 1.707018585205078, + "step": 270500 + }, + { + "epoch": 36.08, + "grad_norm": 0.7053529024124146, + "learning_rate": 3.1968133333333337e-05, + "loss": 1.7060832214355468, + "step": 270600 + }, + { + "epoch": 36.093333333333334, + "grad_norm": 0.723622739315033, + "learning_rate": 3.196146666666667e-05, + "loss": 1.7135696411132812, + "step": 270700 + }, + { + "epoch": 36.10666666666667, + "grad_norm": 0.6846678853034973, + "learning_rate": 3.19548e-05, + "loss": 1.7092733764648438, + "step": 270800 + }, + { + "epoch": 36.12, + "grad_norm": 0.7483423352241516, + "learning_rate": 3.194813333333333e-05, + "loss": 1.7153257751464843, + "step": 270900 + }, + { + "epoch": 36.13333333333333, + "grad_norm": 0.7453268766403198, + "learning_rate": 3.194146666666667e-05, + "loss": 1.7127186584472656, + "step": 271000 + }, + { + "epoch": 36.14666666666667, + "grad_norm": 0.7087700963020325, + "learning_rate": 3.1934800000000005e-05, + "loss": 1.7130256652832032, + "step": 271100 + }, + { + "epoch": 36.16, + "grad_norm": 0.7314236164093018, + "learning_rate": 3.192813333333333e-05, + "loss": 1.7165345764160156, + "step": 271200 + }, + { + "epoch": 36.17333333333333, + "grad_norm": 0.7344350218772888, + "learning_rate": 3.192146666666667e-05, + "loss": 1.7190016174316407, + "step": 271300 + }, + { + "epoch": 36.18666666666667, + "grad_norm": 0.7444190979003906, + "learning_rate": 3.19148e-05, + "loss": 1.7203594970703124, + "step": 271400 + }, + { + "epoch": 36.2, + "grad_norm": 0.7286201119422913, + "learning_rate": 3.1908133333333334e-05, + "loss": 1.7190869140625, + "step": 271500 + }, + { + "epoch": 36.21333333333333, + "grad_norm": 0.7416961789131165, + "learning_rate": 3.1901466666666666e-05, + "loss": 1.7250083923339843, + "step": 271600 + }, + { + "epoch": 36.22666666666667, + "grad_norm": 0.7191265225410461, + "learning_rate": 3.1894800000000005e-05, + "loss": 1.7248774719238282, + "step": 271700 + }, + { + "epoch": 36.24, + "grad_norm": 0.7464678287506104, + "learning_rate": 3.188813333333334e-05, + "loss": 1.7244654846191407, + "step": 271800 + }, + { + "epoch": 36.25333333333333, + "grad_norm": 0.741040050983429, + "learning_rate": 3.188146666666667e-05, + "loss": 1.7217869567871094, + "step": 271900 + }, + { + "epoch": 36.266666666666666, + "grad_norm": 0.7492501735687256, + "learning_rate": 3.18748e-05, + "loss": 1.7232154846191405, + "step": 272000 + }, + { + "epoch": 36.28, + "grad_norm": 0.7506824135780334, + "learning_rate": 3.1868133333333334e-05, + "loss": 1.72467529296875, + "step": 272100 + }, + { + "epoch": 36.29333333333334, + "grad_norm": 0.7682024836540222, + "learning_rate": 3.1861466666666666e-05, + "loss": 1.7257017517089843, + "step": 272200 + }, + { + "epoch": 36.306666666666665, + "grad_norm": 0.7348060011863708, + "learning_rate": 3.18548e-05, + "loss": 1.7308767700195313, + "step": 272300 + }, + { + "epoch": 36.32, + "grad_norm": 0.7420241236686707, + "learning_rate": 3.184813333333334e-05, + "loss": 1.7316539001464843, + "step": 272400 + }, + { + "epoch": 36.333333333333336, + "grad_norm": 0.7520580291748047, + "learning_rate": 3.184146666666667e-05, + "loss": 1.7281611633300782, + "step": 272500 + }, + { + "epoch": 36.346666666666664, + "grad_norm": 0.7573596835136414, + "learning_rate": 3.18348e-05, + "loss": 1.731063995361328, + "step": 272600 + }, + { + "epoch": 36.36, + "grad_norm": 0.725255012512207, + "learning_rate": 3.1828133333333335e-05, + "loss": 1.7307705688476562, + "step": 272700 + }, + { + "epoch": 36.373333333333335, + "grad_norm": 0.7543401122093201, + "learning_rate": 3.182146666666667e-05, + "loss": 1.7375082397460937, + "step": 272800 + }, + { + "epoch": 36.38666666666666, + "grad_norm": 0.7458380460739136, + "learning_rate": 3.18148e-05, + "loss": 1.7346005249023437, + "step": 272900 + }, + { + "epoch": 36.4, + "grad_norm": 0.7144700884819031, + "learning_rate": 3.18082e-05, + "loss": 1.7303981018066406, + "step": 273000 + }, + { + "epoch": 36.413333333333334, + "grad_norm": 0.7560714483261108, + "learning_rate": 3.180153333333333e-05, + "loss": 1.7310597229003906, + "step": 273100 + }, + { + "epoch": 36.42666666666667, + "grad_norm": 0.7326061129570007, + "learning_rate": 3.179486666666667e-05, + "loss": 1.7362249755859376, + "step": 273200 + }, + { + "epoch": 36.44, + "grad_norm": 0.7293363809585571, + "learning_rate": 3.17882e-05, + "loss": 1.7362820434570312, + "step": 273300 + }, + { + "epoch": 36.45333333333333, + "grad_norm": 0.7394217252731323, + "learning_rate": 3.1781533333333334e-05, + "loss": 1.7399252319335938, + "step": 273400 + }, + { + "epoch": 36.46666666666667, + "grad_norm": 0.742487907409668, + "learning_rate": 3.1774866666666666e-05, + "loss": 1.7383834838867187, + "step": 273500 + }, + { + "epoch": 36.48, + "grad_norm": 0.7589447498321533, + "learning_rate": 3.1768200000000005e-05, + "loss": 1.7370097351074218, + "step": 273600 + }, + { + "epoch": 36.49333333333333, + "grad_norm": 0.7348843812942505, + "learning_rate": 3.176153333333334e-05, + "loss": 1.7422178649902345, + "step": 273700 + }, + { + "epoch": 36.50666666666667, + "grad_norm": 0.7847718000411987, + "learning_rate": 3.175486666666666e-05, + "loss": 1.736515350341797, + "step": 273800 + }, + { + "epoch": 36.52, + "grad_norm": 0.7392397522926331, + "learning_rate": 3.17482e-05, + "loss": 1.7417140197753906, + "step": 273900 + }, + { + "epoch": 36.53333333333333, + "grad_norm": 0.6962413787841797, + "learning_rate": 3.1741533333333334e-05, + "loss": 1.741837921142578, + "step": 274000 + }, + { + "epoch": 36.54666666666667, + "grad_norm": 0.7503619194030762, + "learning_rate": 3.173486666666667e-05, + "loss": 1.741531982421875, + "step": 274100 + }, + { + "epoch": 36.56, + "grad_norm": 0.7087076902389526, + "learning_rate": 3.1728200000000006e-05, + "loss": 1.7447845458984375, + "step": 274200 + }, + { + "epoch": 36.57333333333333, + "grad_norm": 0.7223750352859497, + "learning_rate": 3.172153333333334e-05, + "loss": 1.7459292602539063, + "step": 274300 + }, + { + "epoch": 36.586666666666666, + "grad_norm": 0.7215844392776489, + "learning_rate": 3.171486666666667e-05, + "loss": 1.7434147644042968, + "step": 274400 + }, + { + "epoch": 36.6, + "grad_norm": 0.7404847145080566, + "learning_rate": 3.1708199999999996e-05, + "loss": 1.749951171875, + "step": 274500 + }, + { + "epoch": 36.61333333333333, + "grad_norm": 0.7521648406982422, + "learning_rate": 3.1701533333333335e-05, + "loss": 1.7496371459960938, + "step": 274600 + }, + { + "epoch": 36.626666666666665, + "grad_norm": 0.7401891946792603, + "learning_rate": 3.169486666666667e-05, + "loss": 1.7497813415527343, + "step": 274700 + }, + { + "epoch": 36.64, + "grad_norm": 0.7280316948890686, + "learning_rate": 3.16882e-05, + "loss": 1.7507594299316407, + "step": 274800 + }, + { + "epoch": 36.653333333333336, + "grad_norm": 0.7239392995834351, + "learning_rate": 3.168153333333334e-05, + "loss": 1.7507579040527343, + "step": 274900 + }, + { + "epoch": 36.666666666666664, + "grad_norm": 0.7553678750991821, + "learning_rate": 3.167486666666667e-05, + "loss": 1.751461181640625, + "step": 275000 + }, + { + "epoch": 36.68, + "grad_norm": 0.7435064911842346, + "learning_rate": 3.16682e-05, + "loss": 1.7519636535644532, + "step": 275100 + }, + { + "epoch": 36.693333333333335, + "grad_norm": 0.7470516562461853, + "learning_rate": 3.1661533333333335e-05, + "loss": 1.7504707336425782, + "step": 275200 + }, + { + "epoch": 36.70666666666666, + "grad_norm": 0.74057537317276, + "learning_rate": 3.165486666666667e-05, + "loss": 1.7527505493164062, + "step": 275300 + }, + { + "epoch": 36.72, + "grad_norm": 0.7247684597969055, + "learning_rate": 3.16482e-05, + "loss": 1.7530410766601563, + "step": 275400 + }, + { + "epoch": 36.733333333333334, + "grad_norm": 0.7498241662979126, + "learning_rate": 3.16416e-05, + "loss": 1.7541891479492187, + "step": 275500 + }, + { + "epoch": 36.74666666666667, + "grad_norm": 0.7495251297950745, + "learning_rate": 3.163493333333333e-05, + "loss": 1.7568766784667968, + "step": 275600 + }, + { + "epoch": 36.76, + "grad_norm": 0.7617773413658142, + "learning_rate": 3.162826666666667e-05, + "loss": 1.7529084777832031, + "step": 275700 + }, + { + "epoch": 36.77333333333333, + "grad_norm": 0.7428836226463318, + "learning_rate": 3.16216e-05, + "loss": 1.7551524353027343, + "step": 275800 + }, + { + "epoch": 36.78666666666667, + "grad_norm": 0.7389662265777588, + "learning_rate": 3.1614933333333335e-05, + "loss": 1.7577822875976563, + "step": 275900 + }, + { + "epoch": 36.8, + "grad_norm": 0.743245542049408, + "learning_rate": 3.160826666666667e-05, + "loss": 1.75811279296875, + "step": 276000 + }, + { + "epoch": 36.81333333333333, + "grad_norm": 0.7568553686141968, + "learning_rate": 3.1601600000000006e-05, + "loss": 1.7519479370117188, + "step": 276100 + }, + { + "epoch": 36.82666666666667, + "grad_norm": 0.7454259991645813, + "learning_rate": 3.159493333333334e-05, + "loss": 1.7604170227050782, + "step": 276200 + }, + { + "epoch": 36.84, + "grad_norm": 0.7492554187774658, + "learning_rate": 3.1588266666666664e-05, + "loss": 1.7641816711425782, + "step": 276300 + }, + { + "epoch": 36.85333333333333, + "grad_norm": 0.7113311290740967, + "learning_rate": 3.15816e-05, + "loss": 1.7588400268554687, + "step": 276400 + }, + { + "epoch": 36.86666666666667, + "grad_norm": 0.764880359172821, + "learning_rate": 3.1574933333333335e-05, + "loss": 1.7627790832519532, + "step": 276500 + }, + { + "epoch": 36.88, + "grad_norm": 0.7248684167861938, + "learning_rate": 3.156826666666667e-05, + "loss": 1.7612380981445312, + "step": 276600 + }, + { + "epoch": 36.89333333333333, + "grad_norm": 0.7168259024620056, + "learning_rate": 3.15616e-05, + "loss": 1.7612693786621094, + "step": 276700 + }, + { + "epoch": 36.906666666666666, + "grad_norm": 0.7467043995857239, + "learning_rate": 3.155493333333334e-05, + "loss": 1.7591070556640624, + "step": 276800 + }, + { + "epoch": 36.92, + "grad_norm": 0.7475593686103821, + "learning_rate": 3.154826666666667e-05, + "loss": 1.7618537902832032, + "step": 276900 + }, + { + "epoch": 36.93333333333333, + "grad_norm": 0.7402468323707581, + "learning_rate": 3.1541599999999996e-05, + "loss": 1.7640028381347657, + "step": 277000 + }, + { + "epoch": 36.946666666666665, + "grad_norm": 0.7494368553161621, + "learning_rate": 3.1534933333333335e-05, + "loss": 1.7653765869140625, + "step": 277100 + }, + { + "epoch": 36.96, + "grad_norm": 0.7230552434921265, + "learning_rate": 3.152826666666667e-05, + "loss": 1.7666098022460937, + "step": 277200 + }, + { + "epoch": 36.973333333333336, + "grad_norm": 0.7665003538131714, + "learning_rate": 3.15216e-05, + "loss": 1.765568084716797, + "step": 277300 + }, + { + "epoch": 36.986666666666665, + "grad_norm": 0.7451346516609192, + "learning_rate": 3.151493333333333e-05, + "loss": 1.7677928161621095, + "step": 277400 + }, + { + "epoch": 37.0, + "grad_norm": 0.76631760597229, + "learning_rate": 3.150833333333333e-05, + "loss": 1.7689274597167968, + "step": 277500 + }, + { + "epoch": 37.013333333333335, + "grad_norm": 0.7045518755912781, + "learning_rate": 3.150166666666667e-05, + "loss": 1.6803143310546875, + "step": 277600 + }, + { + "epoch": 37.026666666666664, + "grad_norm": 0.7285835146903992, + "learning_rate": 3.1495e-05, + "loss": 1.6813021850585939, + "step": 277700 + }, + { + "epoch": 37.04, + "grad_norm": 0.7426738739013672, + "learning_rate": 3.1488333333333335e-05, + "loss": 1.681758270263672, + "step": 277800 + }, + { + "epoch": 37.053333333333335, + "grad_norm": 0.7622446417808533, + "learning_rate": 3.148166666666667e-05, + "loss": 1.6819073486328124, + "step": 277900 + }, + { + "epoch": 37.06666666666667, + "grad_norm": 0.7410486340522766, + "learning_rate": 3.1475e-05, + "loss": 1.6838929748535156, + "step": 278000 + }, + { + "epoch": 37.08, + "grad_norm": 0.7304770946502686, + "learning_rate": 3.146833333333333e-05, + "loss": 1.6852511596679687, + "step": 278100 + }, + { + "epoch": 37.093333333333334, + "grad_norm": 0.7022737264633179, + "learning_rate": 3.1461666666666664e-05, + "loss": 1.6852027893066406, + "step": 278200 + }, + { + "epoch": 37.10666666666667, + "grad_norm": 0.7408353686332703, + "learning_rate": 3.1455e-05, + "loss": 1.688455810546875, + "step": 278300 + }, + { + "epoch": 37.12, + "grad_norm": 0.7150797843933105, + "learning_rate": 3.1448333333333335e-05, + "loss": 1.6884025573730468, + "step": 278400 + }, + { + "epoch": 37.13333333333333, + "grad_norm": 0.7726892828941345, + "learning_rate": 3.144166666666667e-05, + "loss": 1.6898381042480468, + "step": 278500 + }, + { + "epoch": 37.14666666666667, + "grad_norm": 0.7211053371429443, + "learning_rate": 3.1435000000000007e-05, + "loss": 1.6924490356445312, + "step": 278600 + }, + { + "epoch": 37.16, + "grad_norm": 0.7419326305389404, + "learning_rate": 3.142833333333334e-05, + "loss": 1.689315643310547, + "step": 278700 + }, + { + "epoch": 37.17333333333333, + "grad_norm": 0.7313926219940186, + "learning_rate": 3.1421666666666664e-05, + "loss": 1.6908987426757813, + "step": 278800 + }, + { + "epoch": 37.18666666666667, + "grad_norm": 0.7286278605461121, + "learning_rate": 3.1415e-05, + "loss": 1.6980317687988282, + "step": 278900 + }, + { + "epoch": 37.2, + "grad_norm": 0.7605856657028198, + "learning_rate": 3.1408333333333336e-05, + "loss": 1.696996307373047, + "step": 279000 + }, + { + "epoch": 37.21333333333333, + "grad_norm": 0.7458546757698059, + "learning_rate": 3.140166666666667e-05, + "loss": 1.6983421325683594, + "step": 279100 + }, + { + "epoch": 37.22666666666667, + "grad_norm": 0.7429274916648865, + "learning_rate": 3.1395e-05, + "loss": 1.7024613952636718, + "step": 279200 + }, + { + "epoch": 37.24, + "grad_norm": 0.7884694337844849, + "learning_rate": 3.138833333333334e-05, + "loss": 1.7007711791992188, + "step": 279300 + }, + { + "epoch": 37.25333333333333, + "grad_norm": 0.7464330792427063, + "learning_rate": 3.138166666666667e-05, + "loss": 1.7008659362792968, + "step": 279400 + }, + { + "epoch": 37.266666666666666, + "grad_norm": 0.728084921836853, + "learning_rate": 3.1375e-05, + "loss": 1.7043988037109374, + "step": 279500 + }, + { + "epoch": 37.28, + "grad_norm": 0.7497456669807434, + "learning_rate": 3.13684e-05, + "loss": 1.7014207458496093, + "step": 279600 + }, + { + "epoch": 37.29333333333334, + "grad_norm": 0.7020012140274048, + "learning_rate": 3.1361733333333335e-05, + "loss": 1.7052900695800781, + "step": 279700 + }, + { + "epoch": 37.306666666666665, + "grad_norm": 0.739156186580658, + "learning_rate": 3.135506666666667e-05, + "loss": 1.703553466796875, + "step": 279800 + }, + { + "epoch": 37.32, + "grad_norm": 0.7595281600952148, + "learning_rate": 3.13484e-05, + "loss": 1.7069859313964844, + "step": 279900 + }, + { + "epoch": 37.333333333333336, + "grad_norm": 0.75346440076828, + "learning_rate": 3.134173333333333e-05, + "loss": 1.7072439575195313, + "step": 280000 + }, + { + "epoch": 37.346666666666664, + "grad_norm": 0.7546751499176025, + "learning_rate": 3.133506666666667e-05, + "loss": 1.7088861083984375, + "step": 280100 + }, + { + "epoch": 37.36, + "grad_norm": 0.7886497974395752, + "learning_rate": 3.13284e-05, + "loss": 1.7056680297851563, + "step": 280200 + }, + { + "epoch": 37.373333333333335, + "grad_norm": 0.743929922580719, + "learning_rate": 3.1321733333333335e-05, + "loss": 1.7099371337890625, + "step": 280300 + }, + { + "epoch": 37.38666666666666, + "grad_norm": 0.7662741541862488, + "learning_rate": 3.131506666666667e-05, + "loss": 1.7150563049316405, + "step": 280400 + }, + { + "epoch": 37.4, + "grad_norm": 0.72809898853302, + "learning_rate": 3.13084e-05, + "loss": 1.7117857360839843, + "step": 280500 + }, + { + "epoch": 37.413333333333334, + "grad_norm": 0.7383192181587219, + "learning_rate": 3.130173333333333e-05, + "loss": 1.7104786682128905, + "step": 280600 + }, + { + "epoch": 37.42666666666667, + "grad_norm": 0.755443274974823, + "learning_rate": 3.1295066666666664e-05, + "loss": 1.7123095703125, + "step": 280700 + }, + { + "epoch": 37.44, + "grad_norm": 0.7860985994338989, + "learning_rate": 3.1288400000000004e-05, + "loss": 1.7170570373535157, + "step": 280800 + }, + { + "epoch": 37.45333333333333, + "grad_norm": 0.7551179528236389, + "learning_rate": 3.1281733333333336e-05, + "loss": 1.716322021484375, + "step": 280900 + }, + { + "epoch": 37.46666666666667, + "grad_norm": 0.7542992830276489, + "learning_rate": 3.127506666666667e-05, + "loss": 1.714727783203125, + "step": 281000 + }, + { + "epoch": 37.48, + "grad_norm": 0.7533883452415466, + "learning_rate": 3.12684e-05, + "loss": 1.720811309814453, + "step": 281100 + }, + { + "epoch": 37.49333333333333, + "grad_norm": 0.7798376083374023, + "learning_rate": 3.126173333333334e-05, + "loss": 1.7136112976074218, + "step": 281200 + }, + { + "epoch": 37.50666666666667, + "grad_norm": 0.7293563485145569, + "learning_rate": 3.1255066666666665e-05, + "loss": 1.7199661254882812, + "step": 281300 + }, + { + "epoch": 37.52, + "grad_norm": 0.7498854994773865, + "learning_rate": 3.12484e-05, + "loss": 1.7169015502929688, + "step": 281400 + }, + { + "epoch": 37.53333333333333, + "grad_norm": 0.7195653915405273, + "learning_rate": 3.1241733333333336e-05, + "loss": 1.7198953247070312, + "step": 281500 + }, + { + "epoch": 37.54666666666667, + "grad_norm": 0.7342607378959656, + "learning_rate": 3.123506666666667e-05, + "loss": 1.724787139892578, + "step": 281600 + }, + { + "epoch": 37.56, + "grad_norm": 0.7618938684463501, + "learning_rate": 3.122846666666667e-05, + "loss": 1.7263723754882812, + "step": 281700 + }, + { + "epoch": 37.57333333333333, + "grad_norm": 0.73606938123703, + "learning_rate": 3.12218e-05, + "loss": 1.7267738342285157, + "step": 281800 + }, + { + "epoch": 37.586666666666666, + "grad_norm": 0.7361858487129211, + "learning_rate": 3.121513333333333e-05, + "loss": 1.7204446411132812, + "step": 281900 + }, + { + "epoch": 37.6, + "grad_norm": 0.7650215029716492, + "learning_rate": 3.120846666666667e-05, + "loss": 1.722607879638672, + "step": 282000 + }, + { + "epoch": 37.61333333333333, + "grad_norm": 0.7414928078651428, + "learning_rate": 3.12018e-05, + "loss": 1.7260256958007814, + "step": 282100 + }, + { + "epoch": 37.626666666666665, + "grad_norm": 0.7534034252166748, + "learning_rate": 3.1195133333333336e-05, + "loss": 1.726140899658203, + "step": 282200 + }, + { + "epoch": 37.64, + "grad_norm": 0.7416046857833862, + "learning_rate": 3.118846666666667e-05, + "loss": 1.7296353149414063, + "step": 282300 + }, + { + "epoch": 37.653333333333336, + "grad_norm": 0.7440157532691956, + "learning_rate": 3.11818e-05, + "loss": 1.7297128295898438, + "step": 282400 + }, + { + "epoch": 37.666666666666664, + "grad_norm": 0.7524501085281372, + "learning_rate": 3.117513333333333e-05, + "loss": 1.73589599609375, + "step": 282500 + }, + { + "epoch": 37.68, + "grad_norm": 0.757587730884552, + "learning_rate": 3.1168466666666665e-05, + "loss": 1.7298715209960938, + "step": 282600 + }, + { + "epoch": 37.693333333333335, + "grad_norm": 0.7522934675216675, + "learning_rate": 3.1161800000000004e-05, + "loss": 1.7345960998535157, + "step": 282700 + }, + { + "epoch": 37.70666666666666, + "grad_norm": 0.7544682621955872, + "learning_rate": 3.1155133333333336e-05, + "loss": 1.7308802795410156, + "step": 282800 + }, + { + "epoch": 37.72, + "grad_norm": 0.7192630171775818, + "learning_rate": 3.114846666666667e-05, + "loss": 1.7340335083007812, + "step": 282900 + }, + { + "epoch": 37.733333333333334, + "grad_norm": 0.7458509206771851, + "learning_rate": 3.11418e-05, + "loss": 1.734874267578125, + "step": 283000 + }, + { + "epoch": 37.74666666666667, + "grad_norm": 0.7439426779747009, + "learning_rate": 3.113513333333333e-05, + "loss": 1.7350709533691406, + "step": 283100 + }, + { + "epoch": 37.76, + "grad_norm": 0.7385891675949097, + "learning_rate": 3.1128466666666665e-05, + "loss": 1.730778045654297, + "step": 283200 + }, + { + "epoch": 37.77333333333333, + "grad_norm": 0.731911838054657, + "learning_rate": 3.1121800000000004e-05, + "loss": 1.7314964294433595, + "step": 283300 + }, + { + "epoch": 37.78666666666667, + "grad_norm": 0.7846623063087463, + "learning_rate": 3.1115133333333336e-05, + "loss": 1.733455352783203, + "step": 283400 + }, + { + "epoch": 37.8, + "grad_norm": 0.7687591910362244, + "learning_rate": 3.110846666666667e-05, + "loss": 1.7341983032226562, + "step": 283500 + }, + { + "epoch": 37.81333333333333, + "grad_norm": 0.7925374507904053, + "learning_rate": 3.11018e-05, + "loss": 1.7374996948242187, + "step": 283600 + }, + { + "epoch": 37.82666666666667, + "grad_norm": 0.7608065009117126, + "learning_rate": 3.109513333333334e-05, + "loss": 1.7386874389648437, + "step": 283700 + }, + { + "epoch": 37.84, + "grad_norm": 0.7788674235343933, + "learning_rate": 3.1088466666666665e-05, + "loss": 1.742396697998047, + "step": 283800 + }, + { + "epoch": 37.85333333333333, + "grad_norm": 0.7511487007141113, + "learning_rate": 3.10818e-05, + "loss": 1.7363363647460937, + "step": 283900 + }, + { + "epoch": 37.86666666666667, + "grad_norm": 0.7553167939186096, + "learning_rate": 3.107513333333334e-05, + "loss": 1.7385067749023437, + "step": 284000 + }, + { + "epoch": 37.88, + "grad_norm": 0.7409266233444214, + "learning_rate": 3.106846666666667e-05, + "loss": 1.7398283386230469, + "step": 284100 + }, + { + "epoch": 37.89333333333333, + "grad_norm": 0.7326803207397461, + "learning_rate": 3.10618e-05, + "loss": 1.738975067138672, + "step": 284200 + }, + { + "epoch": 37.906666666666666, + "grad_norm": 0.7426642179489136, + "learning_rate": 3.1055133333333334e-05, + "loss": 1.741965789794922, + "step": 284300 + }, + { + "epoch": 37.92, + "grad_norm": 0.7844317555427551, + "learning_rate": 3.104846666666667e-05, + "loss": 1.740626220703125, + "step": 284400 + }, + { + "epoch": 37.93333333333333, + "grad_norm": 0.7489057183265686, + "learning_rate": 3.1041800000000005e-05, + "loss": 1.7419303894042968, + "step": 284500 + }, + { + "epoch": 37.946666666666665, + "grad_norm": 0.766936719417572, + "learning_rate": 3.1035200000000004e-05, + "loss": 1.7452520751953124, + "step": 284600 + }, + { + "epoch": 37.96, + "grad_norm": 0.7706231474876404, + "learning_rate": 3.1028533333333336e-05, + "loss": 1.744236602783203, + "step": 284700 + }, + { + "epoch": 37.973333333333336, + "grad_norm": 0.7537173628807068, + "learning_rate": 3.102186666666667e-05, + "loss": 1.7478404235839844, + "step": 284800 + }, + { + "epoch": 37.986666666666665, + "grad_norm": 0.7413330078125, + "learning_rate": 3.10152e-05, + "loss": 1.7494500732421876, + "step": 284900 + }, + { + "epoch": 38.0, + "grad_norm": 0.7850656509399414, + "learning_rate": 3.100853333333333e-05, + "loss": 1.750704803466797, + "step": 285000 + }, + { + "epoch": 38.013333333333335, + "grad_norm": 0.7259971499443054, + "learning_rate": 3.1001866666666665e-05, + "loss": 1.6590287780761719, + "step": 285100 + }, + { + "epoch": 38.026666666666664, + "grad_norm": 0.746416449546814, + "learning_rate": 3.0995200000000004e-05, + "loss": 1.6625711059570312, + "step": 285200 + }, + { + "epoch": 38.04, + "grad_norm": 0.7898942232131958, + "learning_rate": 3.098853333333334e-05, + "loss": 1.6607310485839843, + "step": 285300 + }, + { + "epoch": 38.053333333333335, + "grad_norm": 0.7729313969612122, + "learning_rate": 3.098186666666667e-05, + "loss": 1.662105255126953, + "step": 285400 + }, + { + "epoch": 38.06666666666667, + "grad_norm": 0.7406087517738342, + "learning_rate": 3.09752e-05, + "loss": 1.6623809814453125, + "step": 285500 + }, + { + "epoch": 38.08, + "grad_norm": 0.7400987148284912, + "learning_rate": 3.0968533333333333e-05, + "loss": 1.6635809326171875, + "step": 285600 + }, + { + "epoch": 38.093333333333334, + "grad_norm": 0.7489773035049438, + "learning_rate": 3.0961866666666666e-05, + "loss": 1.6699810791015626, + "step": 285700 + }, + { + "epoch": 38.10666666666667, + "grad_norm": 0.7790253162384033, + "learning_rate": 3.09552e-05, + "loss": 1.669601287841797, + "step": 285800 + }, + { + "epoch": 38.12, + "grad_norm": 0.7665462493896484, + "learning_rate": 3.094853333333334e-05, + "loss": 1.6737181091308593, + "step": 285900 + }, + { + "epoch": 38.13333333333333, + "grad_norm": 0.7243815064430237, + "learning_rate": 3.094186666666667e-05, + "loss": 1.6687673950195312, + "step": 286000 + }, + { + "epoch": 38.14666666666667, + "grad_norm": 0.7670396566390991, + "learning_rate": 3.09352e-05, + "loss": 1.6730580139160156, + "step": 286100 + }, + { + "epoch": 38.16, + "grad_norm": 0.7733235359191895, + "learning_rate": 3.0928533333333334e-05, + "loss": 1.6757229614257811, + "step": 286200 + }, + { + "epoch": 38.17333333333333, + "grad_norm": 0.7491257190704346, + "learning_rate": 3.0921866666666666e-05, + "loss": 1.669895477294922, + "step": 286300 + }, + { + "epoch": 38.18666666666667, + "grad_norm": 0.7852340340614319, + "learning_rate": 3.09152e-05, + "loss": 1.6757810974121095, + "step": 286400 + }, + { + "epoch": 38.2, + "grad_norm": 0.7656257152557373, + "learning_rate": 3.090853333333333e-05, + "loss": 1.6795205688476562, + "step": 286500 + }, + { + "epoch": 38.21333333333333, + "grad_norm": 0.7430424094200134, + "learning_rate": 3.090186666666667e-05, + "loss": 1.6734898376464844, + "step": 286600 + }, + { + "epoch": 38.22666666666667, + "grad_norm": 0.7725613117218018, + "learning_rate": 3.089526666666667e-05, + "loss": 1.6736170959472656, + "step": 286700 + }, + { + "epoch": 38.24, + "grad_norm": 0.7913093566894531, + "learning_rate": 3.08886e-05, + "loss": 1.6843594360351561, + "step": 286800 + }, + { + "epoch": 38.25333333333333, + "grad_norm": 0.7620664238929749, + "learning_rate": 3.088193333333333e-05, + "loss": 1.6822517395019532, + "step": 286900 + }, + { + "epoch": 38.266666666666666, + "grad_norm": 0.8010652661323547, + "learning_rate": 3.087526666666667e-05, + "loss": 1.682193603515625, + "step": 287000 + }, + { + "epoch": 38.28, + "grad_norm": 0.7800931334495544, + "learning_rate": 3.0868600000000005e-05, + "loss": 1.68789794921875, + "step": 287100 + }, + { + "epoch": 38.29333333333334, + "grad_norm": 0.7320764064788818, + "learning_rate": 3.086193333333334e-05, + "loss": 1.677606201171875, + "step": 287200 + }, + { + "epoch": 38.306666666666665, + "grad_norm": 0.7963472604751587, + "learning_rate": 3.085526666666666e-05, + "loss": 1.6835293579101562, + "step": 287300 + }, + { + "epoch": 38.32, + "grad_norm": 0.7579801678657532, + "learning_rate": 3.08486e-05, + "loss": 1.6827491760253905, + "step": 287400 + }, + { + "epoch": 38.333333333333336, + "grad_norm": 0.7616518139839172, + "learning_rate": 3.0841933333333334e-05, + "loss": 1.689130859375, + "step": 287500 + }, + { + "epoch": 38.346666666666664, + "grad_norm": 0.7492512464523315, + "learning_rate": 3.0835266666666666e-05, + "loss": 1.6856808471679687, + "step": 287600 + }, + { + "epoch": 38.36, + "grad_norm": 0.7573805451393127, + "learning_rate": 3.0828600000000005e-05, + "loss": 1.690630645751953, + "step": 287700 + }, + { + "epoch": 38.373333333333335, + "grad_norm": 0.7447465062141418, + "learning_rate": 3.082193333333334e-05, + "loss": 1.689488525390625, + "step": 287800 + }, + { + "epoch": 38.38666666666666, + "grad_norm": 0.7608117461204529, + "learning_rate": 3.081526666666667e-05, + "loss": 1.6932475280761718, + "step": 287900 + }, + { + "epoch": 38.4, + "grad_norm": 0.7536253333091736, + "learning_rate": 3.08086e-05, + "loss": 1.6915469360351563, + "step": 288000 + }, + { + "epoch": 38.413333333333334, + "grad_norm": 0.754641056060791, + "learning_rate": 3.0801933333333334e-05, + "loss": 1.6956082153320313, + "step": 288100 + }, + { + "epoch": 38.42666666666667, + "grad_norm": 0.7657079696655273, + "learning_rate": 3.0795266666666666e-05, + "loss": 1.6968582153320313, + "step": 288200 + }, + { + "epoch": 38.44, + "grad_norm": 0.7657183408737183, + "learning_rate": 3.07886e-05, + "loss": 1.696566619873047, + "step": 288300 + }, + { + "epoch": 38.45333333333333, + "grad_norm": 0.7208789587020874, + "learning_rate": 3.078193333333334e-05, + "loss": 1.692105255126953, + "step": 288400 + }, + { + "epoch": 38.46666666666667, + "grad_norm": 0.774307906627655, + "learning_rate": 3.077526666666667e-05, + "loss": 1.6932823181152343, + "step": 288500 + }, + { + "epoch": 38.48, + "grad_norm": 0.7949078679084778, + "learning_rate": 3.07686e-05, + "loss": 1.6973165893554687, + "step": 288600 + }, + { + "epoch": 38.49333333333333, + "grad_norm": 0.7806784510612488, + "learning_rate": 3.0761933333333334e-05, + "loss": 1.6917153930664062, + "step": 288700 + }, + { + "epoch": 38.50666666666667, + "grad_norm": 0.7916117906570435, + "learning_rate": 3.075526666666667e-05, + "loss": 1.7009848022460938, + "step": 288800 + }, + { + "epoch": 38.52, + "grad_norm": 0.759568989276886, + "learning_rate": 3.07486e-05, + "loss": 1.7016871643066407, + "step": 288900 + }, + { + "epoch": 38.53333333333333, + "grad_norm": 0.7423282861709595, + "learning_rate": 3.0742000000000005e-05, + "loss": 1.6960887145996093, + "step": 289000 + }, + { + "epoch": 38.54666666666667, + "grad_norm": 0.7630002498626709, + "learning_rate": 3.073533333333333e-05, + "loss": 1.7025230407714844, + "step": 289100 + }, + { + "epoch": 38.56, + "grad_norm": 0.7927618026733398, + "learning_rate": 3.072866666666667e-05, + "loss": 1.7043484497070311, + "step": 289200 + }, + { + "epoch": 38.57333333333333, + "grad_norm": 0.7585164308547974, + "learning_rate": 3.0722e-05, + "loss": 1.7019801330566406, + "step": 289300 + }, + { + "epoch": 38.586666666666666, + "grad_norm": 0.7974201440811157, + "learning_rate": 3.0715333333333334e-05, + "loss": 1.6983253479003906, + "step": 289400 + }, + { + "epoch": 38.6, + "grad_norm": 0.7960885763168335, + "learning_rate": 3.0708666666666666e-05, + "loss": 1.7020025634765625, + "step": 289500 + }, + { + "epoch": 38.61333333333333, + "grad_norm": 0.7698130011558533, + "learning_rate": 3.0702000000000005e-05, + "loss": 1.7045166015625, + "step": 289600 + }, + { + "epoch": 38.626666666666665, + "grad_norm": 0.7774978876113892, + "learning_rate": 3.069533333333334e-05, + "loss": 1.7092160034179686, + "step": 289700 + }, + { + "epoch": 38.64, + "grad_norm": 0.7904421091079712, + "learning_rate": 3.068866666666666e-05, + "loss": 1.7111721801757813, + "step": 289800 + }, + { + "epoch": 38.653333333333336, + "grad_norm": 0.7613751292228699, + "learning_rate": 3.0682e-05, + "loss": 1.7066726684570312, + "step": 289900 + }, + { + "epoch": 38.666666666666664, + "grad_norm": 0.7756422758102417, + "learning_rate": 3.0675333333333334e-05, + "loss": 1.7077285766601562, + "step": 290000 + }, + { + "epoch": 38.68, + "grad_norm": 0.7973787784576416, + "learning_rate": 3.0668666666666667e-05, + "loss": 1.706180419921875, + "step": 290100 + }, + { + "epoch": 38.693333333333335, + "grad_norm": 0.7484989762306213, + "learning_rate": 3.0662e-05, + "loss": 1.7061300659179688, + "step": 290200 + }, + { + "epoch": 38.70666666666666, + "grad_norm": 0.7544485926628113, + "learning_rate": 3.065533333333334e-05, + "loss": 1.7120814514160156, + "step": 290300 + }, + { + "epoch": 38.72, + "grad_norm": 0.7512329816818237, + "learning_rate": 3.064866666666667e-05, + "loss": 1.710401611328125, + "step": 290400 + }, + { + "epoch": 38.733333333333334, + "grad_norm": 0.7429623007774353, + "learning_rate": 3.0642e-05, + "loss": 1.7145462036132812, + "step": 290500 + }, + { + "epoch": 38.74666666666667, + "grad_norm": 0.7737287878990173, + "learning_rate": 3.0635333333333335e-05, + "loss": 1.7123170471191407, + "step": 290600 + }, + { + "epoch": 38.76, + "grad_norm": 0.7839905023574829, + "learning_rate": 3.062866666666667e-05, + "loss": 1.714277801513672, + "step": 290700 + }, + { + "epoch": 38.77333333333333, + "grad_norm": 0.7753442525863647, + "learning_rate": 3.0622e-05, + "loss": 1.711389923095703, + "step": 290800 + }, + { + "epoch": 38.78666666666667, + "grad_norm": 0.7696095108985901, + "learning_rate": 3.061533333333333e-05, + "loss": 1.712263946533203, + "step": 290900 + }, + { + "epoch": 38.8, + "grad_norm": 0.78681880235672, + "learning_rate": 3.060866666666667e-05, + "loss": 1.7169947814941406, + "step": 291000 + }, + { + "epoch": 38.81333333333333, + "grad_norm": 0.7666211128234863, + "learning_rate": 3.060206666666667e-05, + "loss": 1.713688201904297, + "step": 291100 + }, + { + "epoch": 38.82666666666667, + "grad_norm": 0.8072649836540222, + "learning_rate": 3.05954e-05, + "loss": 1.7122874450683594, + "step": 291200 + }, + { + "epoch": 38.84, + "grad_norm": 0.8129579424858093, + "learning_rate": 3.0588733333333334e-05, + "loss": 1.7165837097167969, + "step": 291300 + }, + { + "epoch": 38.85333333333333, + "grad_norm": 0.759157121181488, + "learning_rate": 3.058206666666667e-05, + "loss": 1.7154681396484375, + "step": 291400 + }, + { + "epoch": 38.86666666666667, + "grad_norm": 0.7481434345245361, + "learning_rate": 3.0575400000000005e-05, + "loss": 1.7192173767089844, + "step": 291500 + }, + { + "epoch": 38.88, + "grad_norm": 0.751333475112915, + "learning_rate": 3.056873333333333e-05, + "loss": 1.7186842346191407, + "step": 291600 + }, + { + "epoch": 38.89333333333333, + "grad_norm": 0.7542101740837097, + "learning_rate": 3.056206666666667e-05, + "loss": 1.7197854614257813, + "step": 291700 + }, + { + "epoch": 38.906666666666666, + "grad_norm": 0.7745694518089294, + "learning_rate": 3.05554e-05, + "loss": 1.717758026123047, + "step": 291800 + }, + { + "epoch": 38.92, + "grad_norm": 0.785905122756958, + "learning_rate": 3.0548733333333335e-05, + "loss": 1.7214923095703125, + "step": 291900 + }, + { + "epoch": 38.93333333333333, + "grad_norm": 0.737249493598938, + "learning_rate": 3.054206666666667e-05, + "loss": 1.721144256591797, + "step": 292000 + }, + { + "epoch": 38.946666666666665, + "grad_norm": 0.7561144828796387, + "learning_rate": 3.0535400000000006e-05, + "loss": 1.7213453674316406, + "step": 292100 + }, + { + "epoch": 38.96, + "grad_norm": 0.769527018070221, + "learning_rate": 3.052873333333334e-05, + "loss": 1.7238650512695313, + "step": 292200 + }, + { + "epoch": 38.973333333333336, + "grad_norm": 0.781715452671051, + "learning_rate": 3.0522066666666664e-05, + "loss": 1.7266677856445312, + "step": 292300 + }, + { + "epoch": 38.986666666666665, + "grad_norm": 0.7867762446403503, + "learning_rate": 3.05154e-05, + "loss": 1.7263604736328124, + "step": 292400 + }, + { + "epoch": 39.0, + "grad_norm": 0.7711582183837891, + "learning_rate": 3.0508733333333335e-05, + "loss": 1.7235179138183594, + "step": 292500 + }, + { + "epoch": 39.013333333333335, + "grad_norm": 0.7427387237548828, + "learning_rate": 3.0502066666666667e-05, + "loss": 1.636926727294922, + "step": 292600 + }, + { + "epoch": 39.026666666666664, + "grad_norm": 0.7548815011978149, + "learning_rate": 3.0495400000000003e-05, + "loss": 1.638148193359375, + "step": 292700 + }, + { + "epoch": 39.04, + "grad_norm": 0.766891598701477, + "learning_rate": 3.0488733333333335e-05, + "loss": 1.6450836181640625, + "step": 292800 + }, + { + "epoch": 39.053333333333335, + "grad_norm": 0.7814005017280579, + "learning_rate": 3.048206666666667e-05, + "loss": 1.6402984619140626, + "step": 292900 + }, + { + "epoch": 39.06666666666667, + "grad_norm": 0.7863591909408569, + "learning_rate": 3.0475400000000003e-05, + "loss": 1.645513916015625, + "step": 293000 + }, + { + "epoch": 39.08, + "grad_norm": 0.7696388959884644, + "learning_rate": 3.0468733333333332e-05, + "loss": 1.6503067016601562, + "step": 293100 + }, + { + "epoch": 39.093333333333334, + "grad_norm": 0.7683019042015076, + "learning_rate": 3.0462066666666668e-05, + "loss": 1.6453077697753906, + "step": 293200 + }, + { + "epoch": 39.10666666666667, + "grad_norm": 0.8194789886474609, + "learning_rate": 3.04554e-05, + "loss": 1.6493295288085938, + "step": 293300 + }, + { + "epoch": 39.12, + "grad_norm": 0.7500215172767639, + "learning_rate": 3.04488e-05, + "loss": 1.6437741088867188, + "step": 293400 + }, + { + "epoch": 39.13333333333333, + "grad_norm": 0.7612013220787048, + "learning_rate": 3.0442133333333335e-05, + "loss": 1.6460026550292968, + "step": 293500 + }, + { + "epoch": 39.14666666666667, + "grad_norm": 0.7490237355232239, + "learning_rate": 3.0435466666666667e-05, + "loss": 1.6469500732421876, + "step": 293600 + }, + { + "epoch": 39.16, + "grad_norm": 0.7428447604179382, + "learning_rate": 3.0428800000000002e-05, + "loss": 1.6538037109375, + "step": 293700 + }, + { + "epoch": 39.17333333333333, + "grad_norm": 0.771937906742096, + "learning_rate": 3.0422133333333335e-05, + "loss": 1.6548284912109374, + "step": 293800 + }, + { + "epoch": 39.18666666666667, + "grad_norm": 0.8053415417671204, + "learning_rate": 3.041546666666667e-05, + "loss": 1.6548187255859375, + "step": 293900 + }, + { + "epoch": 39.2, + "grad_norm": 0.7840629816055298, + "learning_rate": 3.0408800000000003e-05, + "loss": 1.656223907470703, + "step": 294000 + }, + { + "epoch": 39.21333333333333, + "grad_norm": 0.7682107090950012, + "learning_rate": 3.040213333333333e-05, + "loss": 1.6517486572265625, + "step": 294100 + }, + { + "epoch": 39.22666666666667, + "grad_norm": 0.7796576619148254, + "learning_rate": 3.0395466666666667e-05, + "loss": 1.6598385620117186, + "step": 294200 + }, + { + "epoch": 39.24, + "grad_norm": 0.7165907025337219, + "learning_rate": 3.03888e-05, + "loss": 1.6587965393066406, + "step": 294300 + }, + { + "epoch": 39.25333333333333, + "grad_norm": 0.7674499154090881, + "learning_rate": 3.0382133333333335e-05, + "loss": 1.6644235229492188, + "step": 294400 + }, + { + "epoch": 39.266666666666666, + "grad_norm": 0.7708069086074829, + "learning_rate": 3.0375466666666667e-05, + "loss": 1.6615855407714843, + "step": 294500 + }, + { + "epoch": 39.28, + "grad_norm": 0.7408686876296997, + "learning_rate": 3.0368800000000003e-05, + "loss": 1.6682752990722656, + "step": 294600 + }, + { + "epoch": 39.29333333333334, + "grad_norm": 0.7657552361488342, + "learning_rate": 3.0362133333333335e-05, + "loss": 1.6586656188964843, + "step": 294700 + }, + { + "epoch": 39.306666666666665, + "grad_norm": 0.7995692491531372, + "learning_rate": 3.0355466666666664e-05, + "loss": 1.6587791442871094, + "step": 294800 + }, + { + "epoch": 39.32, + "grad_norm": 0.748633086681366, + "learning_rate": 3.03488e-05, + "loss": 1.66481689453125, + "step": 294900 + }, + { + "epoch": 39.333333333333336, + "grad_norm": 0.7635269165039062, + "learning_rate": 3.0342133333333332e-05, + "loss": 1.6681814575195313, + "step": 295000 + }, + { + "epoch": 39.346666666666664, + "grad_norm": 0.7503258585929871, + "learning_rate": 3.0335466666666668e-05, + "loss": 1.6664021301269532, + "step": 295100 + }, + { + "epoch": 39.36, + "grad_norm": 0.7651309370994568, + "learning_rate": 3.03288e-05, + "loss": 1.6657469177246094, + "step": 295200 + }, + { + "epoch": 39.373333333333335, + "grad_norm": 0.7666741013526917, + "learning_rate": 3.0322133333333336e-05, + "loss": 1.6691456604003907, + "step": 295300 + }, + { + "epoch": 39.38666666666666, + "grad_norm": 0.7548410296440125, + "learning_rate": 3.031546666666667e-05, + "loss": 1.670536651611328, + "step": 295400 + }, + { + "epoch": 39.4, + "grad_norm": 0.74871826171875, + "learning_rate": 3.0308866666666667e-05, + "loss": 1.667931365966797, + "step": 295500 + }, + { + "epoch": 39.413333333333334, + "grad_norm": 0.8039665222167969, + "learning_rate": 3.0302200000000003e-05, + "loss": 1.6696517944335938, + "step": 295600 + }, + { + "epoch": 39.42666666666667, + "grad_norm": 0.770044207572937, + "learning_rate": 3.029553333333334e-05, + "loss": 1.6706535339355468, + "step": 295700 + }, + { + "epoch": 39.44, + "grad_norm": 0.7525724768638611, + "learning_rate": 3.0288866666666664e-05, + "loss": 1.6772557067871094, + "step": 295800 + }, + { + "epoch": 39.45333333333333, + "grad_norm": 0.7813305258750916, + "learning_rate": 3.02822e-05, + "loss": 1.671944122314453, + "step": 295900 + }, + { + "epoch": 39.46666666666667, + "grad_norm": 0.7860172390937805, + "learning_rate": 3.0275533333333335e-05, + "loss": 1.6785629272460938, + "step": 296000 + }, + { + "epoch": 39.48, + "grad_norm": 0.7601441740989685, + "learning_rate": 3.0268866666666667e-05, + "loss": 1.679444580078125, + "step": 296100 + }, + { + "epoch": 39.49333333333333, + "grad_norm": 0.7699296474456787, + "learning_rate": 3.0262200000000003e-05, + "loss": 1.6728718566894532, + "step": 296200 + }, + { + "epoch": 39.50666666666667, + "grad_norm": 0.8299603462219238, + "learning_rate": 3.0255533333333335e-05, + "loss": 1.672165069580078, + "step": 296300 + }, + { + "epoch": 39.52, + "grad_norm": 0.7380194067955017, + "learning_rate": 3.024886666666667e-05, + "loss": 1.6806745910644532, + "step": 296400 + }, + { + "epoch": 39.53333333333333, + "grad_norm": 0.774158239364624, + "learning_rate": 3.0242200000000003e-05, + "loss": 1.6795536804199218, + "step": 296500 + }, + { + "epoch": 39.54666666666667, + "grad_norm": 0.7721417546272278, + "learning_rate": 3.0235533333333332e-05, + "loss": 1.6812428283691405, + "step": 296600 + }, + { + "epoch": 39.56, + "grad_norm": 0.7454893589019775, + "learning_rate": 3.0228866666666668e-05, + "loss": 1.6825442504882813, + "step": 296700 + }, + { + "epoch": 39.57333333333333, + "grad_norm": 0.7825901508331299, + "learning_rate": 3.02222e-05, + "loss": 1.684827117919922, + "step": 296800 + }, + { + "epoch": 39.586666666666666, + "grad_norm": 0.7577589750289917, + "learning_rate": 3.0215533333333336e-05, + "loss": 1.686151885986328, + "step": 296900 + }, + { + "epoch": 39.6, + "grad_norm": 0.7495019435882568, + "learning_rate": 3.0208866666666668e-05, + "loss": 1.6861024475097657, + "step": 297000 + }, + { + "epoch": 39.61333333333333, + "grad_norm": 0.7696591019630432, + "learning_rate": 3.0202200000000004e-05, + "loss": 1.6808950805664062, + "step": 297100 + }, + { + "epoch": 39.626666666666665, + "grad_norm": 0.7768684029579163, + "learning_rate": 3.0195533333333336e-05, + "loss": 1.6860086059570312, + "step": 297200 + }, + { + "epoch": 39.64, + "grad_norm": 0.8358619809150696, + "learning_rate": 3.018886666666667e-05, + "loss": 1.6880392456054687, + "step": 297300 + }, + { + "epoch": 39.653333333333336, + "grad_norm": 0.7638468742370605, + "learning_rate": 3.01822e-05, + "loss": 1.6880755615234375, + "step": 297400 + }, + { + "epoch": 39.666666666666664, + "grad_norm": 0.7862942814826965, + "learning_rate": 3.0175533333333333e-05, + "loss": 1.6920382690429687, + "step": 297500 + }, + { + "epoch": 39.68, + "grad_norm": 0.7873303890228271, + "learning_rate": 3.016886666666667e-05, + "loss": 1.688036651611328, + "step": 297600 + }, + { + "epoch": 39.693333333333335, + "grad_norm": 0.7888381481170654, + "learning_rate": 3.01622e-05, + "loss": 1.6933929443359375, + "step": 297700 + }, + { + "epoch": 39.70666666666666, + "grad_norm": 0.7556432485580444, + "learning_rate": 3.01556e-05, + "loss": 1.6857225036621093, + "step": 297800 + }, + { + "epoch": 39.72, + "grad_norm": 0.7747805714607239, + "learning_rate": 3.0148933333333335e-05, + "loss": 1.693270721435547, + "step": 297900 + }, + { + "epoch": 39.733333333333334, + "grad_norm": 0.7705897092819214, + "learning_rate": 3.0142266666666668e-05, + "loss": 1.69430419921875, + "step": 298000 + }, + { + "epoch": 39.74666666666667, + "grad_norm": 0.7893573045730591, + "learning_rate": 3.0135600000000003e-05, + "loss": 1.6897537231445312, + "step": 298100 + }, + { + "epoch": 39.76, + "grad_norm": 0.7793616056442261, + "learning_rate": 3.0128933333333336e-05, + "loss": 1.6898460388183594, + "step": 298200 + }, + { + "epoch": 39.77333333333333, + "grad_norm": 0.7738221883773804, + "learning_rate": 3.012226666666667e-05, + "loss": 1.6978416442871094, + "step": 298300 + }, + { + "epoch": 39.78666666666667, + "grad_norm": 0.7676934599876404, + "learning_rate": 3.01156e-05, + "loss": 1.699170379638672, + "step": 298400 + }, + { + "epoch": 39.8, + "grad_norm": 0.7687268853187561, + "learning_rate": 3.0108933333333332e-05, + "loss": 1.6959735107421876, + "step": 298500 + }, + { + "epoch": 39.81333333333333, + "grad_norm": 0.7735351920127869, + "learning_rate": 3.0102266666666668e-05, + "loss": 1.6969778442382812, + "step": 298600 + }, + { + "epoch": 39.82666666666667, + "grad_norm": 0.7656512260437012, + "learning_rate": 3.00956e-05, + "loss": 1.6993966674804688, + "step": 298700 + }, + { + "epoch": 39.84, + "grad_norm": 0.782088577747345, + "learning_rate": 3.0088933333333336e-05, + "loss": 1.699752960205078, + "step": 298800 + }, + { + "epoch": 39.85333333333333, + "grad_norm": 0.773292601108551, + "learning_rate": 3.0082266666666668e-05, + "loss": 1.6988934326171874, + "step": 298900 + }, + { + "epoch": 39.86666666666667, + "grad_norm": 0.7811734080314636, + "learning_rate": 3.0075600000000004e-05, + "loss": 1.6964959716796875, + "step": 299000 + }, + { + "epoch": 39.88, + "grad_norm": 0.7883747220039368, + "learning_rate": 3.0068933333333333e-05, + "loss": 1.7006631469726563, + "step": 299100 + }, + { + "epoch": 39.89333333333333, + "grad_norm": 0.7700868844985962, + "learning_rate": 3.0062266666666665e-05, + "loss": 1.6964584350585938, + "step": 299200 + }, + { + "epoch": 39.906666666666666, + "grad_norm": 0.803329348564148, + "learning_rate": 3.00556e-05, + "loss": 1.6985226440429688, + "step": 299300 + }, + { + "epoch": 39.92, + "grad_norm": 0.7313794493675232, + "learning_rate": 3.0048933333333333e-05, + "loss": 1.6996687316894532, + "step": 299400 + }, + { + "epoch": 39.93333333333333, + "grad_norm": 0.8017928004264832, + "learning_rate": 3.004226666666667e-05, + "loss": 1.7024073791503906, + "step": 299500 + }, + { + "epoch": 39.946666666666665, + "grad_norm": 0.7980249524116516, + "learning_rate": 3.0035600000000004e-05, + "loss": 1.7046482849121094, + "step": 299600 + }, + { + "epoch": 39.96, + "grad_norm": 0.7558285593986511, + "learning_rate": 3.0028933333333337e-05, + "loss": 1.7029963684082032, + "step": 299700 + }, + { + "epoch": 39.973333333333336, + "grad_norm": 0.7704285383224487, + "learning_rate": 3.0022266666666672e-05, + "loss": 1.7064549255371093, + "step": 299800 + }, + { + "epoch": 39.986666666666665, + "grad_norm": 0.7782922983169556, + "learning_rate": 3.0015599999999998e-05, + "loss": 1.7005975341796875, + "step": 299900 + }, + { + "epoch": 40.0, + "grad_norm": 0.7687188982963562, + "learning_rate": 3.0008933333333333e-05, + "loss": 1.7041835021972656, + "step": 300000 + }, + { + "epoch": 40.013333333333335, + "grad_norm": 0.7731031775474548, + "learning_rate": 3.000226666666667e-05, + "loss": 1.620243377685547, + "step": 300100 + }, + { + "epoch": 40.026666666666664, + "grad_norm": 0.7835327386856079, + "learning_rate": 2.99956e-05, + "loss": 1.6189300537109375, + "step": 300200 + }, + { + "epoch": 40.04, + "grad_norm": 0.788834273815155, + "learning_rate": 2.9989e-05, + "loss": 1.6183770751953126, + "step": 300300 + }, + { + "epoch": 40.053333333333335, + "grad_norm": 0.7707294225692749, + "learning_rate": 2.9982333333333336e-05, + "loss": 1.624232940673828, + "step": 300400 + }, + { + "epoch": 40.06666666666667, + "grad_norm": 0.7670961618423462, + "learning_rate": 2.9975666666666668e-05, + "loss": 1.6271139526367187, + "step": 300500 + }, + { + "epoch": 40.08, + "grad_norm": 0.7733743190765381, + "learning_rate": 2.9969000000000004e-05, + "loss": 1.6237083435058595, + "step": 300600 + }, + { + "epoch": 40.093333333333334, + "grad_norm": 0.7543879747390747, + "learning_rate": 2.9962333333333336e-05, + "loss": 1.6283514404296875, + "step": 300700 + }, + { + "epoch": 40.10666666666667, + "grad_norm": 0.7911033630371094, + "learning_rate": 2.9955666666666672e-05, + "loss": 1.6246966552734374, + "step": 300800 + }, + { + "epoch": 40.12, + "grad_norm": 0.758840799331665, + "learning_rate": 2.9949e-05, + "loss": 1.6292984008789062, + "step": 300900 + }, + { + "epoch": 40.13333333333333, + "grad_norm": 0.7979432344436646, + "learning_rate": 2.9942333333333333e-05, + "loss": 1.6320713806152343, + "step": 301000 + }, + { + "epoch": 40.14666666666667, + "grad_norm": 0.7912939786911011, + "learning_rate": 2.993566666666667e-05, + "loss": 1.6327186584472657, + "step": 301100 + }, + { + "epoch": 40.16, + "grad_norm": 0.7603537440299988, + "learning_rate": 2.9929e-05, + "loss": 1.6343653869628907, + "step": 301200 + }, + { + "epoch": 40.17333333333333, + "grad_norm": 0.7935387492179871, + "learning_rate": 2.9922333333333337e-05, + "loss": 1.6328231811523437, + "step": 301300 + }, + { + "epoch": 40.18666666666667, + "grad_norm": 0.7534608244895935, + "learning_rate": 2.991566666666667e-05, + "loss": 1.6297528076171874, + "step": 301400 + }, + { + "epoch": 40.2, + "grad_norm": 0.7596133351325989, + "learning_rate": 2.9909000000000005e-05, + "loss": 1.6323152160644532, + "step": 301500 + }, + { + "epoch": 40.21333333333333, + "grad_norm": 0.7837437987327576, + "learning_rate": 2.9902333333333333e-05, + "loss": 1.6390170288085937, + "step": 301600 + }, + { + "epoch": 40.22666666666667, + "grad_norm": 0.7405257821083069, + "learning_rate": 2.9895666666666666e-05, + "loss": 1.6328970336914062, + "step": 301700 + }, + { + "epoch": 40.24, + "grad_norm": 0.7964353561401367, + "learning_rate": 2.9889e-05, + "loss": 1.6418511962890625, + "step": 301800 + }, + { + "epoch": 40.25333333333333, + "grad_norm": 0.7721452713012695, + "learning_rate": 2.9882333333333334e-05, + "loss": 1.6432241821289062, + "step": 301900 + }, + { + "epoch": 40.266666666666666, + "grad_norm": 0.7319056987762451, + "learning_rate": 2.987566666666667e-05, + "loss": 1.6457327270507813, + "step": 302000 + }, + { + "epoch": 40.28, + "grad_norm": 0.7476204037666321, + "learning_rate": 2.9869e-05, + "loss": 1.63947265625, + "step": 302100 + }, + { + "epoch": 40.29333333333334, + "grad_norm": 0.7636196613311768, + "learning_rate": 2.9862333333333337e-05, + "loss": 1.6431263732910155, + "step": 302200 + }, + { + "epoch": 40.306666666666665, + "grad_norm": 0.7672015428543091, + "learning_rate": 2.985566666666667e-05, + "loss": 1.6432777404785157, + "step": 302300 + }, + { + "epoch": 40.32, + "grad_norm": 0.7906679511070251, + "learning_rate": 2.984906666666667e-05, + "loss": 1.6422769165039062, + "step": 302400 + }, + { + "epoch": 40.333333333333336, + "grad_norm": 0.7585984468460083, + "learning_rate": 2.9842400000000004e-05, + "loss": 1.645401611328125, + "step": 302500 + }, + { + "epoch": 40.346666666666664, + "grad_norm": 0.7551888227462769, + "learning_rate": 2.9835733333333333e-05, + "loss": 1.6521505737304687, + "step": 302600 + }, + { + "epoch": 40.36, + "grad_norm": 0.7747895121574402, + "learning_rate": 2.9829066666666665e-05, + "loss": 1.653616943359375, + "step": 302700 + }, + { + "epoch": 40.373333333333335, + "grad_norm": 0.7973045706748962, + "learning_rate": 2.98224e-05, + "loss": 1.6516969299316406, + "step": 302800 + }, + { + "epoch": 40.38666666666666, + "grad_norm": 0.7736092209815979, + "learning_rate": 2.9815733333333333e-05, + "loss": 1.6533767700195312, + "step": 302900 + }, + { + "epoch": 40.4, + "grad_norm": 0.8287850618362427, + "learning_rate": 2.980906666666667e-05, + "loss": 1.650742950439453, + "step": 303000 + }, + { + "epoch": 40.413333333333334, + "grad_norm": 0.7991235256195068, + "learning_rate": 2.98024e-05, + "loss": 1.6495477294921874, + "step": 303100 + }, + { + "epoch": 40.42666666666667, + "grad_norm": 0.7750113010406494, + "learning_rate": 2.9795733333333337e-05, + "loss": 1.6545738220214843, + "step": 303200 + }, + { + "epoch": 40.44, + "grad_norm": 0.7548984885215759, + "learning_rate": 2.978906666666667e-05, + "loss": 1.6560383605957032, + "step": 303300 + }, + { + "epoch": 40.45333333333333, + "grad_norm": 0.7681398987770081, + "learning_rate": 2.9782399999999998e-05, + "loss": 1.6523040771484374, + "step": 303400 + }, + { + "epoch": 40.46666666666667, + "grad_norm": 0.7958689332008362, + "learning_rate": 2.9775733333333334e-05, + "loss": 1.654131622314453, + "step": 303500 + }, + { + "epoch": 40.48, + "grad_norm": 0.8112989068031311, + "learning_rate": 2.9769066666666666e-05, + "loss": 1.6542424011230468, + "step": 303600 + }, + { + "epoch": 40.49333333333333, + "grad_norm": 0.8102808594703674, + "learning_rate": 2.97624e-05, + "loss": 1.6532270812988281, + "step": 303700 + }, + { + "epoch": 40.50666666666667, + "grad_norm": 0.7980448603630066, + "learning_rate": 2.9755733333333334e-05, + "loss": 1.6606166076660156, + "step": 303800 + }, + { + "epoch": 40.52, + "grad_norm": 0.7753362655639648, + "learning_rate": 2.974906666666667e-05, + "loss": 1.6590802001953124, + "step": 303900 + }, + { + "epoch": 40.53333333333333, + "grad_norm": 0.7801727056503296, + "learning_rate": 2.9742400000000005e-05, + "loss": 1.6569808959960937, + "step": 304000 + }, + { + "epoch": 40.54666666666667, + "grad_norm": 0.7659746408462524, + "learning_rate": 2.973573333333333e-05, + "loss": 1.6627920532226563, + "step": 304100 + }, + { + "epoch": 40.56, + "grad_norm": 0.8251011371612549, + "learning_rate": 2.9729066666666666e-05, + "loss": 1.6599037170410156, + "step": 304200 + }, + { + "epoch": 40.57333333333333, + "grad_norm": 0.7905187010765076, + "learning_rate": 2.9722400000000002e-05, + "loss": 1.6602447509765625, + "step": 304300 + }, + { + "epoch": 40.586666666666666, + "grad_norm": 0.7680100202560425, + "learning_rate": 2.9715733333333334e-05, + "loss": 1.6645524597167969, + "step": 304400 + }, + { + "epoch": 40.6, + "grad_norm": 0.8009008765220642, + "learning_rate": 2.970906666666667e-05, + "loss": 1.6655874633789063, + "step": 304500 + }, + { + "epoch": 40.61333333333333, + "grad_norm": 0.7796105742454529, + "learning_rate": 2.9702400000000002e-05, + "loss": 1.6701692199707032, + "step": 304600 + }, + { + "epoch": 40.626666666666665, + "grad_norm": 0.8052720427513123, + "learning_rate": 2.96958e-05, + "loss": 1.67267333984375, + "step": 304700 + }, + { + "epoch": 40.64, + "grad_norm": 0.8020023703575134, + "learning_rate": 2.9689133333333337e-05, + "loss": 1.6702662658691407, + "step": 304800 + }, + { + "epoch": 40.653333333333336, + "grad_norm": 0.7790773510932922, + "learning_rate": 2.968246666666667e-05, + "loss": 1.6637289428710937, + "step": 304900 + }, + { + "epoch": 40.666666666666664, + "grad_norm": 0.7891820073127747, + "learning_rate": 2.9675800000000005e-05, + "loss": 1.6721121215820312, + "step": 305000 + }, + { + "epoch": 40.68, + "grad_norm": 0.8255475759506226, + "learning_rate": 2.9669133333333334e-05, + "loss": 1.668660888671875, + "step": 305100 + }, + { + "epoch": 40.693333333333335, + "grad_norm": 0.7707953453063965, + "learning_rate": 2.9662466666666666e-05, + "loss": 1.670304718017578, + "step": 305200 + }, + { + "epoch": 40.70666666666666, + "grad_norm": 0.789410412311554, + "learning_rate": 2.96558e-05, + "loss": 1.6723420715332031, + "step": 305300 + }, + { + "epoch": 40.72, + "grad_norm": 0.7793656587600708, + "learning_rate": 2.9649133333333334e-05, + "loss": 1.6703863525390625, + "step": 305400 + }, + { + "epoch": 40.733333333333334, + "grad_norm": 0.7544719576835632, + "learning_rate": 2.964246666666667e-05, + "loss": 1.670694580078125, + "step": 305500 + }, + { + "epoch": 40.74666666666667, + "grad_norm": 0.7913680076599121, + "learning_rate": 2.9635800000000002e-05, + "loss": 1.6704800415039063, + "step": 305600 + }, + { + "epoch": 40.76, + "grad_norm": 0.8109893798828125, + "learning_rate": 2.9629133333333337e-05, + "loss": 1.674829864501953, + "step": 305700 + }, + { + "epoch": 40.77333333333333, + "grad_norm": 0.7733386754989624, + "learning_rate": 2.962246666666667e-05, + "loss": 1.671063690185547, + "step": 305800 + }, + { + "epoch": 40.78666666666667, + "grad_norm": 0.8088369965553284, + "learning_rate": 2.96158e-05, + "loss": 1.6718939208984376, + "step": 305900 + }, + { + "epoch": 40.8, + "grad_norm": 0.7910258173942566, + "learning_rate": 2.9609133333333334e-05, + "loss": 1.6722633361816406, + "step": 306000 + }, + { + "epoch": 40.81333333333333, + "grad_norm": 0.8270725607872009, + "learning_rate": 2.9602466666666667e-05, + "loss": 1.6770217895507813, + "step": 306100 + }, + { + "epoch": 40.82666666666667, + "grad_norm": 0.8187015056610107, + "learning_rate": 2.9595800000000002e-05, + "loss": 1.6784989929199219, + "step": 306200 + }, + { + "epoch": 40.84, + "grad_norm": 0.7722174525260925, + "learning_rate": 2.9589133333333334e-05, + "loss": 1.675601806640625, + "step": 306300 + }, + { + "epoch": 40.85333333333333, + "grad_norm": 0.7953956127166748, + "learning_rate": 2.958246666666667e-05, + "loss": 1.6758319091796876, + "step": 306400 + }, + { + "epoch": 40.86666666666667, + "grad_norm": 0.7955514788627625, + "learning_rate": 2.9575800000000002e-05, + "loss": 1.6785484313964845, + "step": 306500 + }, + { + "epoch": 40.88, + "grad_norm": 0.8043191432952881, + "learning_rate": 2.956913333333333e-05, + "loss": 1.6791413879394532, + "step": 306600 + }, + { + "epoch": 40.89333333333333, + "grad_norm": 0.8214145302772522, + "learning_rate": 2.9562466666666667e-05, + "loss": 1.6822396850585937, + "step": 306700 + }, + { + "epoch": 40.906666666666666, + "grad_norm": 0.7704736590385437, + "learning_rate": 2.95558e-05, + "loss": 1.6834477233886718, + "step": 306800 + }, + { + "epoch": 40.92, + "grad_norm": 0.8391588926315308, + "learning_rate": 2.9549133333333335e-05, + "loss": 1.680575408935547, + "step": 306900 + }, + { + "epoch": 40.93333333333333, + "grad_norm": 0.8125873804092407, + "learning_rate": 2.9542533333333334e-05, + "loss": 1.683341522216797, + "step": 307000 + }, + { + "epoch": 40.946666666666665, + "grad_norm": 0.7934849262237549, + "learning_rate": 2.9535866666666666e-05, + "loss": 1.6847650146484374, + "step": 307100 + }, + { + "epoch": 40.96, + "grad_norm": 0.7980996966362, + "learning_rate": 2.9529200000000002e-05, + "loss": 1.6811965942382812, + "step": 307200 + }, + { + "epoch": 40.973333333333336, + "grad_norm": 0.802399754524231, + "learning_rate": 2.9522533333333334e-05, + "loss": 1.6897067260742187, + "step": 307300 + }, + { + "epoch": 40.986666666666665, + "grad_norm": 0.7816872000694275, + "learning_rate": 2.951586666666667e-05, + "loss": 1.6832794189453124, + "step": 307400 + }, + { + "epoch": 41.0, + "grad_norm": 0.7761144638061523, + "learning_rate": 2.9509200000000002e-05, + "loss": 1.6881805419921876, + "step": 307500 + }, + { + "epoch": 41.013333333333335, + "grad_norm": 0.7764184474945068, + "learning_rate": 2.950253333333333e-05, + "loss": 1.5990695190429687, + "step": 307600 + }, + { + "epoch": 41.026666666666664, + "grad_norm": 0.7701564431190491, + "learning_rate": 2.9495866666666667e-05, + "loss": 1.6041400146484375, + "step": 307700 + }, + { + "epoch": 41.04, + "grad_norm": 0.7842352390289307, + "learning_rate": 2.94892e-05, + "loss": 1.6026243591308593, + "step": 307800 + }, + { + "epoch": 41.053333333333335, + "grad_norm": 0.8398421406745911, + "learning_rate": 2.9482533333333334e-05, + "loss": 1.6042144775390625, + "step": 307900 + }, + { + "epoch": 41.06666666666667, + "grad_norm": 0.7771956920623779, + "learning_rate": 2.9475866666666667e-05, + "loss": 1.6058041381835937, + "step": 308000 + }, + { + "epoch": 41.08, + "grad_norm": 0.7307206392288208, + "learning_rate": 2.9469200000000002e-05, + "loss": 1.6052072143554688, + "step": 308100 + }, + { + "epoch": 41.093333333333334, + "grad_norm": 0.7741842269897461, + "learning_rate": 2.9462533333333338e-05, + "loss": 1.6063827514648437, + "step": 308200 + }, + { + "epoch": 41.10666666666667, + "grad_norm": 0.7664023637771606, + "learning_rate": 2.945586666666667e-05, + "loss": 1.6085012817382813, + "step": 308300 + }, + { + "epoch": 41.12, + "grad_norm": 0.7947597503662109, + "learning_rate": 2.94492e-05, + "loss": 1.6075529479980468, + "step": 308400 + }, + { + "epoch": 41.13333333333333, + "grad_norm": 0.8271000385284424, + "learning_rate": 2.944253333333333e-05, + "loss": 1.611210479736328, + "step": 308500 + }, + { + "epoch": 41.14666666666667, + "grad_norm": 0.8020433783531189, + "learning_rate": 2.9435866666666667e-05, + "loss": 1.613904266357422, + "step": 308600 + }, + { + "epoch": 41.16, + "grad_norm": 0.7996675968170166, + "learning_rate": 2.9429200000000003e-05, + "loss": 1.617792205810547, + "step": 308700 + }, + { + "epoch": 41.17333333333333, + "grad_norm": 0.7714760899543762, + "learning_rate": 2.9422533333333335e-05, + "loss": 1.6162484741210938, + "step": 308800 + }, + { + "epoch": 41.18666666666667, + "grad_norm": 0.7961992621421814, + "learning_rate": 2.941586666666667e-05, + "loss": 1.6189137268066407, + "step": 308900 + }, + { + "epoch": 41.2, + "grad_norm": 0.7719022631645203, + "learning_rate": 2.9409200000000003e-05, + "loss": 1.6185585021972657, + "step": 309000 + }, + { + "epoch": 41.21333333333333, + "grad_norm": 0.7894253730773926, + "learning_rate": 2.940253333333334e-05, + "loss": 1.6159666442871095, + "step": 309100 + }, + { + "epoch": 41.22666666666667, + "grad_norm": 0.8292324542999268, + "learning_rate": 2.9395933333333338e-05, + "loss": 1.6167066955566407, + "step": 309200 + }, + { + "epoch": 41.24, + "grad_norm": 0.7811465859413147, + "learning_rate": 2.938926666666667e-05, + "loss": 1.6240852355957032, + "step": 309300 + }, + { + "epoch": 41.25333333333333, + "grad_norm": 0.7826862931251526, + "learning_rate": 2.93826e-05, + "loss": 1.6248715209960938, + "step": 309400 + }, + { + "epoch": 41.266666666666666, + "grad_norm": 0.7634377479553223, + "learning_rate": 2.9375933333333335e-05, + "loss": 1.6282896423339843, + "step": 309500 + }, + { + "epoch": 41.28, + "grad_norm": 0.7704088091850281, + "learning_rate": 2.9369266666666667e-05, + "loss": 1.6228341674804687, + "step": 309600 + }, + { + "epoch": 41.29333333333334, + "grad_norm": 0.776517391204834, + "learning_rate": 2.9362600000000002e-05, + "loss": 1.6235067749023437, + "step": 309700 + }, + { + "epoch": 41.306666666666665, + "grad_norm": 0.7937943935394287, + "learning_rate": 2.9355933333333335e-05, + "loss": 1.6245884704589844, + "step": 309800 + }, + { + "epoch": 41.32, + "grad_norm": 0.7816150784492493, + "learning_rate": 2.934926666666667e-05, + "loss": 1.6250926208496095, + "step": 309900 + }, + { + "epoch": 41.333333333333336, + "grad_norm": 0.789966344833374, + "learning_rate": 2.9342600000000003e-05, + "loss": 1.6290631103515625, + "step": 310000 + }, + { + "epoch": 41.346666666666664, + "grad_norm": 0.7828590273857117, + "learning_rate": 2.9335933333333338e-05, + "loss": 1.6320005798339843, + "step": 310100 + }, + { + "epoch": 41.36, + "grad_norm": 0.7721713781356812, + "learning_rate": 2.9329266666666667e-05, + "loss": 1.6315066528320312, + "step": 310200 + }, + { + "epoch": 41.373333333333335, + "grad_norm": 0.7936566472053528, + "learning_rate": 2.93226e-05, + "loss": 1.6328521728515626, + "step": 310300 + }, + { + "epoch": 41.38666666666666, + "grad_norm": 0.8090173602104187, + "learning_rate": 2.9315933333333335e-05, + "loss": 1.6380584716796875, + "step": 310400 + }, + { + "epoch": 41.4, + "grad_norm": 0.7758917808532715, + "learning_rate": 2.9309266666666667e-05, + "loss": 1.6311029052734376, + "step": 310500 + }, + { + "epoch": 41.413333333333334, + "grad_norm": 0.7972980737686157, + "learning_rate": 2.9302600000000003e-05, + "loss": 1.6364056396484374, + "step": 310600 + }, + { + "epoch": 41.42666666666667, + "grad_norm": 0.795874834060669, + "learning_rate": 2.9295933333333335e-05, + "loss": 1.636111297607422, + "step": 310700 + }, + { + "epoch": 41.44, + "grad_norm": 0.8138737678527832, + "learning_rate": 2.928926666666667e-05, + "loss": 1.636154022216797, + "step": 310800 + }, + { + "epoch": 41.45333333333333, + "grad_norm": 0.8085600137710571, + "learning_rate": 2.92826e-05, + "loss": 1.6349728393554688, + "step": 310900 + }, + { + "epoch": 41.46666666666667, + "grad_norm": 0.7742388844490051, + "learning_rate": 2.9275933333333332e-05, + "loss": 1.63881591796875, + "step": 311000 + }, + { + "epoch": 41.48, + "grad_norm": 0.7965194582939148, + "learning_rate": 2.9269266666666668e-05, + "loss": 1.6336904907226562, + "step": 311100 + }, + { + "epoch": 41.49333333333333, + "grad_norm": 0.8123679161071777, + "learning_rate": 2.9262666666666667e-05, + "loss": 1.6433746337890625, + "step": 311200 + }, + { + "epoch": 41.50666666666667, + "grad_norm": 0.799063503742218, + "learning_rate": 2.9256e-05, + "loss": 1.6420155334472657, + "step": 311300 + }, + { + "epoch": 41.52, + "grad_norm": 0.7700026631355286, + "learning_rate": 2.9249333333333335e-05, + "loss": 1.6381747436523437, + "step": 311400 + }, + { + "epoch": 41.53333333333333, + "grad_norm": 0.783812940120697, + "learning_rate": 2.9242666666666667e-05, + "loss": 1.6365054321289063, + "step": 311500 + }, + { + "epoch": 41.54666666666667, + "grad_norm": 0.7764769792556763, + "learning_rate": 2.9236000000000003e-05, + "loss": 1.6388162231445313, + "step": 311600 + }, + { + "epoch": 41.56, + "grad_norm": 0.7944959402084351, + "learning_rate": 2.9229333333333335e-05, + "loss": 1.6455184936523437, + "step": 311700 + }, + { + "epoch": 41.57333333333333, + "grad_norm": 0.7800427079200745, + "learning_rate": 2.922266666666667e-05, + "loss": 1.6459024047851563, + "step": 311800 + }, + { + "epoch": 41.586666666666666, + "grad_norm": 0.8255797624588013, + "learning_rate": 2.9216e-05, + "loss": 1.6468026733398438, + "step": 311900 + }, + { + "epoch": 41.6, + "grad_norm": 0.7957680225372314, + "learning_rate": 2.9209333333333332e-05, + "loss": 1.6451564025878906, + "step": 312000 + }, + { + "epoch": 41.61333333333333, + "grad_norm": 0.8067429661750793, + "learning_rate": 2.9202666666666667e-05, + "loss": 1.649429168701172, + "step": 312100 + }, + { + "epoch": 41.626666666666665, + "grad_norm": 0.7828828692436218, + "learning_rate": 2.9196e-05, + "loss": 1.6439801025390626, + "step": 312200 + }, + { + "epoch": 41.64, + "grad_norm": 0.7971386313438416, + "learning_rate": 2.9189333333333335e-05, + "loss": 1.6461314392089843, + "step": 312300 + }, + { + "epoch": 41.653333333333336, + "grad_norm": 0.8209567666053772, + "learning_rate": 2.9182666666666668e-05, + "loss": 1.6470904541015625, + "step": 312400 + }, + { + "epoch": 41.666666666666664, + "grad_norm": 0.8193508386611938, + "learning_rate": 2.9176000000000003e-05, + "loss": 1.6506707763671875, + "step": 312500 + }, + { + "epoch": 41.68, + "grad_norm": 0.8329564929008484, + "learning_rate": 2.916933333333334e-05, + "loss": 1.6542561340332032, + "step": 312600 + }, + { + "epoch": 41.693333333333335, + "grad_norm": 0.7866358160972595, + "learning_rate": 2.9162666666666664e-05, + "loss": 1.6521278381347657, + "step": 312700 + }, + { + "epoch": 41.70666666666666, + "grad_norm": 0.8379685878753662, + "learning_rate": 2.9156e-05, + "loss": 1.6496038818359375, + "step": 312800 + }, + { + "epoch": 41.72, + "grad_norm": 0.7962581515312195, + "learning_rate": 2.9149333333333336e-05, + "loss": 1.6517626953125, + "step": 312900 + }, + { + "epoch": 41.733333333333334, + "grad_norm": 0.7623695135116577, + "learning_rate": 2.9142666666666668e-05, + "loss": 1.6487763977050782, + "step": 313000 + }, + { + "epoch": 41.74666666666667, + "grad_norm": 0.7969656586647034, + "learning_rate": 2.9136000000000004e-05, + "loss": 1.6543055725097657, + "step": 313100 + }, + { + "epoch": 41.76, + "grad_norm": 0.8090587258338928, + "learning_rate": 2.9129333333333336e-05, + "loss": 1.6550767517089844, + "step": 313200 + }, + { + "epoch": 41.77333333333333, + "grad_norm": 0.8005834817886353, + "learning_rate": 2.912266666666667e-05, + "loss": 1.6577835083007812, + "step": 313300 + }, + { + "epoch": 41.78666666666667, + "grad_norm": 0.7874211668968201, + "learning_rate": 2.9116e-05, + "loss": 1.6544857788085938, + "step": 313400 + }, + { + "epoch": 41.8, + "grad_norm": 0.7901095747947693, + "learning_rate": 2.9109400000000003e-05, + "loss": 1.6523391723632812, + "step": 313500 + }, + { + "epoch": 41.81333333333333, + "grad_norm": 0.7718372344970703, + "learning_rate": 2.910273333333334e-05, + "loss": 1.657394256591797, + "step": 313600 + }, + { + "epoch": 41.82666666666667, + "grad_norm": 0.8033204078674316, + "learning_rate": 2.9096066666666667e-05, + "loss": 1.6549183654785156, + "step": 313700 + }, + { + "epoch": 41.84, + "grad_norm": 0.773262619972229, + "learning_rate": 2.90894e-05, + "loss": 1.660445556640625, + "step": 313800 + }, + { + "epoch": 41.85333333333333, + "grad_norm": 0.781597375869751, + "learning_rate": 2.9082733333333335e-05, + "loss": 1.659234619140625, + "step": 313900 + }, + { + "epoch": 41.86666666666667, + "grad_norm": 0.823759138584137, + "learning_rate": 2.9076066666666668e-05, + "loss": 1.6564396667480468, + "step": 314000 + }, + { + "epoch": 41.88, + "grad_norm": 0.7636963725090027, + "learning_rate": 2.9069400000000003e-05, + "loss": 1.65720703125, + "step": 314100 + }, + { + "epoch": 41.89333333333333, + "grad_norm": 0.7856835126876831, + "learning_rate": 2.9062733333333336e-05, + "loss": 1.6625801086425782, + "step": 314200 + }, + { + "epoch": 41.906666666666666, + "grad_norm": 0.7966486215591431, + "learning_rate": 2.905606666666667e-05, + "loss": 1.6632244873046875, + "step": 314300 + }, + { + "epoch": 41.92, + "grad_norm": 0.7848227024078369, + "learning_rate": 2.90494e-05, + "loss": 1.6618414306640625, + "step": 314400 + }, + { + "epoch": 41.93333333333333, + "grad_norm": 0.8092052936553955, + "learning_rate": 2.9042733333333332e-05, + "loss": 1.6637734985351562, + "step": 314500 + }, + { + "epoch": 41.946666666666665, + "grad_norm": 0.8151919841766357, + "learning_rate": 2.9036066666666668e-05, + "loss": 1.6675376892089844, + "step": 314600 + }, + { + "epoch": 41.96, + "grad_norm": 0.7819831371307373, + "learning_rate": 2.90294e-05, + "loss": 1.6665446472167968, + "step": 314700 + }, + { + "epoch": 41.973333333333336, + "grad_norm": 0.7871850728988647, + "learning_rate": 2.9022733333333336e-05, + "loss": 1.66580810546875, + "step": 314800 + }, + { + "epoch": 41.986666666666665, + "grad_norm": 0.8031324744224548, + "learning_rate": 2.9016066666666668e-05, + "loss": 1.6656488037109376, + "step": 314900 + }, + { + "epoch": 42.0, + "grad_norm": 0.8214955925941467, + "learning_rate": 2.9009400000000004e-05, + "loss": 1.6649081420898437, + "step": 315000 + }, + { + "epoch": 42.013333333333335, + "grad_norm": 0.7725866436958313, + "learning_rate": 2.9002733333333336e-05, + "loss": 1.579239501953125, + "step": 315100 + }, + { + "epoch": 42.026666666666664, + "grad_norm": 0.7591557502746582, + "learning_rate": 2.8996066666666665e-05, + "loss": 1.5807839965820312, + "step": 315200 + }, + { + "epoch": 42.04, + "grad_norm": 0.7683588862419128, + "learning_rate": 2.89894e-05, + "loss": 1.584822235107422, + "step": 315300 + }, + { + "epoch": 42.053333333333335, + "grad_norm": 0.7662196159362793, + "learning_rate": 2.8982733333333333e-05, + "loss": 1.5851914978027344, + "step": 315400 + }, + { + "epoch": 42.06666666666667, + "grad_norm": 0.8008477687835693, + "learning_rate": 2.897606666666667e-05, + "loss": 1.5897236633300782, + "step": 315500 + }, + { + "epoch": 42.08, + "grad_norm": 0.8044509291648865, + "learning_rate": 2.8969466666666668e-05, + "loss": 1.5850997924804688, + "step": 315600 + }, + { + "epoch": 42.093333333333334, + "grad_norm": 0.82093745470047, + "learning_rate": 2.89628e-05, + "loss": 1.5886293029785157, + "step": 315700 + }, + { + "epoch": 42.10666666666667, + "grad_norm": 0.7949629426002502, + "learning_rate": 2.8956133333333336e-05, + "loss": 1.5937432861328125, + "step": 315800 + }, + { + "epoch": 42.12, + "grad_norm": 0.7797324657440186, + "learning_rate": 2.8949466666666668e-05, + "loss": 1.5901795959472655, + "step": 315900 + }, + { + "epoch": 42.13333333333333, + "grad_norm": 0.7416061758995056, + "learning_rate": 2.8942800000000003e-05, + "loss": 1.5912071228027345, + "step": 316000 + }, + { + "epoch": 42.14666666666667, + "grad_norm": 0.796648383140564, + "learning_rate": 2.8936133333333336e-05, + "loss": 1.5968006896972655, + "step": 316100 + }, + { + "epoch": 42.16, + "grad_norm": 0.7828426361083984, + "learning_rate": 2.8929466666666665e-05, + "loss": 1.6001832580566406, + "step": 316200 + }, + { + "epoch": 42.17333333333333, + "grad_norm": 0.778724193572998, + "learning_rate": 2.89228e-05, + "loss": 1.5923294067382812, + "step": 316300 + }, + { + "epoch": 42.18666666666667, + "grad_norm": 0.7975136637687683, + "learning_rate": 2.8916133333333333e-05, + "loss": 1.5967176818847657, + "step": 316400 + }, + { + "epoch": 42.2, + "grad_norm": 0.7668192386627197, + "learning_rate": 2.8909466666666668e-05, + "loss": 1.6007345581054688, + "step": 316500 + }, + { + "epoch": 42.21333333333333, + "grad_norm": 0.7750270366668701, + "learning_rate": 2.89028e-05, + "loss": 1.601139373779297, + "step": 316600 + }, + { + "epoch": 42.22666666666667, + "grad_norm": 0.8115882873535156, + "learning_rate": 2.8896133333333336e-05, + "loss": 1.5999020385742186, + "step": 316700 + }, + { + "epoch": 42.24, + "grad_norm": 0.8152367472648621, + "learning_rate": 2.8889466666666672e-05, + "loss": 1.6009846496582032, + "step": 316800 + }, + { + "epoch": 42.25333333333333, + "grad_norm": 0.7818172574043274, + "learning_rate": 2.8882799999999997e-05, + "loss": 1.6060690307617187, + "step": 316900 + }, + { + "epoch": 42.266666666666666, + "grad_norm": 0.7581207156181335, + "learning_rate": 2.8876133333333333e-05, + "loss": 1.61083984375, + "step": 317000 + }, + { + "epoch": 42.28, + "grad_norm": 0.797792911529541, + "learning_rate": 2.8869466666666665e-05, + "loss": 1.6037715148925782, + "step": 317100 + }, + { + "epoch": 42.29333333333334, + "grad_norm": 0.8175429701805115, + "learning_rate": 2.88628e-05, + "loss": 1.6076036071777344, + "step": 317200 + }, + { + "epoch": 42.306666666666665, + "grad_norm": 0.772908627986908, + "learning_rate": 2.8856133333333337e-05, + "loss": 1.6125408935546874, + "step": 317300 + }, + { + "epoch": 42.32, + "grad_norm": 0.7854279279708862, + "learning_rate": 2.884946666666667e-05, + "loss": 1.6088632202148438, + "step": 317400 + }, + { + "epoch": 42.333333333333336, + "grad_norm": 0.7655262351036072, + "learning_rate": 2.8842800000000004e-05, + "loss": 1.610213623046875, + "step": 317500 + }, + { + "epoch": 42.346666666666664, + "grad_norm": 0.7729225754737854, + "learning_rate": 2.8836133333333337e-05, + "loss": 1.6126589965820313, + "step": 317600 + }, + { + "epoch": 42.36, + "grad_norm": 0.7809514403343201, + "learning_rate": 2.8829466666666666e-05, + "loss": 1.6137397766113282, + "step": 317700 + }, + { + "epoch": 42.373333333333335, + "grad_norm": 0.8015533089637756, + "learning_rate": 2.88228e-05, + "loss": 1.6137492370605468, + "step": 317800 + }, + { + "epoch": 42.38666666666666, + "grad_norm": 0.8014168739318848, + "learning_rate": 2.8816133333333334e-05, + "loss": 1.6128648376464845, + "step": 317900 + }, + { + "epoch": 42.4, + "grad_norm": 0.8032166957855225, + "learning_rate": 2.8809533333333333e-05, + "loss": 1.617438507080078, + "step": 318000 + }, + { + "epoch": 42.413333333333334, + "grad_norm": 0.7962257266044617, + "learning_rate": 2.8802866666666668e-05, + "loss": 1.6180424499511719, + "step": 318100 + }, + { + "epoch": 42.42666666666667, + "grad_norm": 0.7772518992424011, + "learning_rate": 2.87962e-05, + "loss": 1.618890838623047, + "step": 318200 + }, + { + "epoch": 42.44, + "grad_norm": 0.8154412508010864, + "learning_rate": 2.8789533333333336e-05, + "loss": 1.6198379516601562, + "step": 318300 + }, + { + "epoch": 42.45333333333333, + "grad_norm": 0.8127172589302063, + "learning_rate": 2.878286666666667e-05, + "loss": 1.620894317626953, + "step": 318400 + }, + { + "epoch": 42.46666666666667, + "grad_norm": 0.7918204069137573, + "learning_rate": 2.8776200000000004e-05, + "loss": 1.620947265625, + "step": 318500 + }, + { + "epoch": 42.48, + "grad_norm": 0.7991171479225159, + "learning_rate": 2.8769533333333336e-05, + "loss": 1.6179556274414062, + "step": 318600 + }, + { + "epoch": 42.49333333333333, + "grad_norm": 0.7768269777297974, + "learning_rate": 2.8762866666666665e-05, + "loss": 1.619527587890625, + "step": 318700 + }, + { + "epoch": 42.50666666666667, + "grad_norm": 0.8096961379051208, + "learning_rate": 2.87562e-05, + "loss": 1.618616943359375, + "step": 318800 + }, + { + "epoch": 42.52, + "grad_norm": 0.7590042352676392, + "learning_rate": 2.8749533333333333e-05, + "loss": 1.6230258178710937, + "step": 318900 + }, + { + "epoch": 42.53333333333333, + "grad_norm": 0.8029301762580872, + "learning_rate": 2.874286666666667e-05, + "loss": 1.6235476684570314, + "step": 319000 + }, + { + "epoch": 42.54666666666667, + "grad_norm": 0.794658899307251, + "learning_rate": 2.87362e-05, + "loss": 1.6211264038085937, + "step": 319100 + }, + { + "epoch": 42.56, + "grad_norm": 0.843220591545105, + "learning_rate": 2.8729533333333337e-05, + "loss": 1.6271005249023438, + "step": 319200 + }, + { + "epoch": 42.57333333333333, + "grad_norm": 0.8237653374671936, + "learning_rate": 2.872286666666667e-05, + "loss": 1.6294674682617187, + "step": 319300 + }, + { + "epoch": 42.586666666666666, + "grad_norm": 0.8025068640708923, + "learning_rate": 2.8716199999999998e-05, + "loss": 1.6239111328125, + "step": 319400 + }, + { + "epoch": 42.6, + "grad_norm": 0.7929406762123108, + "learning_rate": 2.8709533333333334e-05, + "loss": 1.6274394226074218, + "step": 319500 + }, + { + "epoch": 42.61333333333333, + "grad_norm": 0.8021830320358276, + "learning_rate": 2.8702866666666666e-05, + "loss": 1.6309587097167968, + "step": 319600 + }, + { + "epoch": 42.626666666666665, + "grad_norm": 0.8247801661491394, + "learning_rate": 2.86962e-05, + "loss": 1.6306277465820314, + "step": 319700 + }, + { + "epoch": 42.64, + "grad_norm": 0.7925310134887695, + "learning_rate": 2.8689533333333334e-05, + "loss": 1.6312562561035155, + "step": 319800 + }, + { + "epoch": 42.653333333333336, + "grad_norm": 0.7969545722007751, + "learning_rate": 2.868286666666667e-05, + "loss": 1.6337765502929686, + "step": 319900 + }, + { + "epoch": 42.666666666666664, + "grad_norm": 0.8170307278633118, + "learning_rate": 2.86762e-05, + "loss": 1.6321212768554687, + "step": 320000 + }, + { + "epoch": 42.68, + "grad_norm": 0.77912837266922, + "learning_rate": 2.86696e-05, + "loss": 1.6315771484375, + "step": 320100 + }, + { + "epoch": 42.693333333333335, + "grad_norm": 0.788314938545227, + "learning_rate": 2.8662933333333336e-05, + "loss": 1.6329681396484375, + "step": 320200 + }, + { + "epoch": 42.70666666666666, + "grad_norm": 0.8608801960945129, + "learning_rate": 2.865626666666667e-05, + "loss": 1.6328976440429688, + "step": 320300 + }, + { + "epoch": 42.72, + "grad_norm": 0.8006208539009094, + "learning_rate": 2.8649599999999998e-05, + "loss": 1.6340364074707032, + "step": 320400 + }, + { + "epoch": 42.733333333333334, + "grad_norm": 0.7970700263977051, + "learning_rate": 2.8642933333333333e-05, + "loss": 1.633923797607422, + "step": 320500 + }, + { + "epoch": 42.74666666666667, + "grad_norm": 0.7704428434371948, + "learning_rate": 2.8636266666666665e-05, + "loss": 1.6360755920410157, + "step": 320600 + }, + { + "epoch": 42.76, + "grad_norm": 0.8283227682113647, + "learning_rate": 2.86296e-05, + "loss": 1.637872772216797, + "step": 320700 + }, + { + "epoch": 42.77333333333333, + "grad_norm": 0.851524293422699, + "learning_rate": 2.8622933333333333e-05, + "loss": 1.6359402465820312, + "step": 320800 + }, + { + "epoch": 42.78666666666667, + "grad_norm": 0.7893416881561279, + "learning_rate": 2.861626666666667e-05, + "loss": 1.6323648071289063, + "step": 320900 + }, + { + "epoch": 42.8, + "grad_norm": 0.8033201098442078, + "learning_rate": 2.8609600000000005e-05, + "loss": 1.6443894958496095, + "step": 321000 + }, + { + "epoch": 42.81333333333333, + "grad_norm": 0.8074483275413513, + "learning_rate": 2.8602933333333337e-05, + "loss": 1.639532470703125, + "step": 321100 + }, + { + "epoch": 42.82666666666667, + "grad_norm": 0.7866470217704773, + "learning_rate": 2.8596266666666666e-05, + "loss": 1.64190673828125, + "step": 321200 + }, + { + "epoch": 42.84, + "grad_norm": 0.8023852109909058, + "learning_rate": 2.8589599999999998e-05, + "loss": 1.638301239013672, + "step": 321300 + }, + { + "epoch": 42.85333333333333, + "grad_norm": 0.8220396637916565, + "learning_rate": 2.8582933333333334e-05, + "loss": 1.6426438903808593, + "step": 321400 + }, + { + "epoch": 42.86666666666667, + "grad_norm": 0.8232139945030212, + "learning_rate": 2.857626666666667e-05, + "loss": 1.6402984619140626, + "step": 321500 + }, + { + "epoch": 42.88, + "grad_norm": 0.8309381604194641, + "learning_rate": 2.8569600000000002e-05, + "loss": 1.636634521484375, + "step": 321600 + }, + { + "epoch": 42.89333333333333, + "grad_norm": 0.8182979226112366, + "learning_rate": 2.8562933333333337e-05, + "loss": 1.6453871154785156, + "step": 321700 + }, + { + "epoch": 42.906666666666666, + "grad_norm": 0.8423646688461304, + "learning_rate": 2.855626666666667e-05, + "loss": 1.6444189453125, + "step": 321800 + }, + { + "epoch": 42.92, + "grad_norm": 0.8091830015182495, + "learning_rate": 2.8549600000000005e-05, + "loss": 1.6435879516601561, + "step": 321900 + }, + { + "epoch": 42.93333333333333, + "grad_norm": 0.8040499091148376, + "learning_rate": 2.8542933333333334e-05, + "loss": 1.6471051025390624, + "step": 322000 + }, + { + "epoch": 42.946666666666665, + "grad_norm": 0.8056833148002625, + "learning_rate": 2.8536266666666666e-05, + "loss": 1.6470870971679688, + "step": 322100 + }, + { + "epoch": 42.96, + "grad_norm": 0.8252720832824707, + "learning_rate": 2.8529600000000002e-05, + "loss": 1.647276611328125, + "step": 322200 + }, + { + "epoch": 42.973333333333336, + "grad_norm": 0.7846107482910156, + "learning_rate": 2.8522933333333334e-05, + "loss": 1.6448028564453125, + "step": 322300 + }, + { + "epoch": 42.986666666666665, + "grad_norm": 0.8476292490959167, + "learning_rate": 2.851626666666667e-05, + "loss": 1.6520864868164062, + "step": 322400 + }, + { + "epoch": 43.0, + "grad_norm": 0.8160085678100586, + "learning_rate": 2.850966666666667e-05, + "loss": 1.6483326721191407, + "step": 322500 + }, + { + "epoch": 43.013333333333335, + "grad_norm": 0.8134644627571106, + "learning_rate": 2.8503e-05, + "loss": 1.564569854736328, + "step": 322600 + }, + { + "epoch": 43.026666666666664, + "grad_norm": 0.7962319850921631, + "learning_rate": 2.8496333333333337e-05, + "loss": 1.5676768493652344, + "step": 322700 + }, + { + "epoch": 43.04, + "grad_norm": 0.7382012009620667, + "learning_rate": 2.848966666666667e-05, + "loss": 1.566510467529297, + "step": 322800 + }, + { + "epoch": 43.053333333333335, + "grad_norm": 0.7968773245811462, + "learning_rate": 2.8483000000000005e-05, + "loss": 1.5708531188964843, + "step": 322900 + }, + { + "epoch": 43.06666666666667, + "grad_norm": 0.7553964853286743, + "learning_rate": 2.8476333333333334e-05, + "loss": 1.5697604370117189, + "step": 323000 + }, + { + "epoch": 43.08, + "grad_norm": 0.7678956389427185, + "learning_rate": 2.8469666666666666e-05, + "loss": 1.5742947387695312, + "step": 323100 + }, + { + "epoch": 43.093333333333334, + "grad_norm": 0.80665522813797, + "learning_rate": 2.8463000000000002e-05, + "loss": 1.5716915893554688, + "step": 323200 + }, + { + "epoch": 43.10666666666667, + "grad_norm": 0.8582669496536255, + "learning_rate": 2.8456333333333334e-05, + "loss": 1.5759283447265624, + "step": 323300 + }, + { + "epoch": 43.12, + "grad_norm": 0.8015368580818176, + "learning_rate": 2.844966666666667e-05, + "loss": 1.5717546081542968, + "step": 323400 + }, + { + "epoch": 43.13333333333333, + "grad_norm": 0.7866412997245789, + "learning_rate": 2.8443000000000002e-05, + "loss": 1.5720692443847657, + "step": 323500 + }, + { + "epoch": 43.14666666666667, + "grad_norm": 0.7602863311767578, + "learning_rate": 2.8436333333333338e-05, + "loss": 1.5750347900390624, + "step": 323600 + }, + { + "epoch": 43.16, + "grad_norm": 0.7865772843360901, + "learning_rate": 2.8429666666666666e-05, + "loss": 1.578832550048828, + "step": 323700 + }, + { + "epoch": 43.17333333333333, + "grad_norm": 0.7900835871696472, + "learning_rate": 2.8423e-05, + "loss": 1.576087188720703, + "step": 323800 + }, + { + "epoch": 43.18666666666667, + "grad_norm": 0.7576287984848022, + "learning_rate": 2.8416333333333334e-05, + "loss": 1.582108917236328, + "step": 323900 + }, + { + "epoch": 43.2, + "grad_norm": 0.8061697483062744, + "learning_rate": 2.8409666666666667e-05, + "loss": 1.5846551513671876, + "step": 324000 + }, + { + "epoch": 43.21333333333333, + "grad_norm": 0.8036941289901733, + "learning_rate": 2.8403000000000002e-05, + "loss": 1.5829280090332032, + "step": 324100 + }, + { + "epoch": 43.22666666666667, + "grad_norm": 0.81672602891922, + "learning_rate": 2.8396333333333335e-05, + "loss": 1.5833650207519532, + "step": 324200 + }, + { + "epoch": 43.24, + "grad_norm": 0.7637189626693726, + "learning_rate": 2.838966666666667e-05, + "loss": 1.5832330322265624, + "step": 324300 + }, + { + "epoch": 43.25333333333333, + "grad_norm": 0.810999870300293, + "learning_rate": 2.8383000000000003e-05, + "loss": 1.585732421875, + "step": 324400 + }, + { + "epoch": 43.266666666666666, + "grad_norm": 0.7959699034690857, + "learning_rate": 2.837633333333333e-05, + "loss": 1.5903799438476562, + "step": 324500 + }, + { + "epoch": 43.28, + "grad_norm": 0.8153569102287292, + "learning_rate": 2.8369666666666667e-05, + "loss": 1.5871414184570312, + "step": 324600 + }, + { + "epoch": 43.29333333333334, + "grad_norm": 0.7914409637451172, + "learning_rate": 2.8363066666666666e-05, + "loss": 1.5875323486328126, + "step": 324700 + }, + { + "epoch": 43.306666666666665, + "grad_norm": 0.7989243268966675, + "learning_rate": 2.83564e-05, + "loss": 1.5916000366210938, + "step": 324800 + }, + { + "epoch": 43.32, + "grad_norm": 0.7825499773025513, + "learning_rate": 2.8349733333333334e-05, + "loss": 1.5893446350097655, + "step": 324900 + }, + { + "epoch": 43.333333333333336, + "grad_norm": 0.8575960993766785, + "learning_rate": 2.8343066666666666e-05, + "loss": 1.5977841186523438, + "step": 325000 + }, + { + "epoch": 43.346666666666664, + "grad_norm": 0.8244292736053467, + "learning_rate": 2.8336400000000002e-05, + "loss": 1.601702880859375, + "step": 325100 + }, + { + "epoch": 43.36, + "grad_norm": 0.7933399677276611, + "learning_rate": 2.8329733333333334e-05, + "loss": 1.5982562255859376, + "step": 325200 + }, + { + "epoch": 43.373333333333335, + "grad_norm": 0.767894446849823, + "learning_rate": 2.832306666666667e-05, + "loss": 1.5982928466796875, + "step": 325300 + }, + { + "epoch": 43.38666666666666, + "grad_norm": 0.7718991041183472, + "learning_rate": 2.8316400000000006e-05, + "loss": 1.595538330078125, + "step": 325400 + }, + { + "epoch": 43.4, + "grad_norm": 0.8214613795280457, + "learning_rate": 2.830973333333333e-05, + "loss": 1.5974700927734375, + "step": 325500 + }, + { + "epoch": 43.413333333333334, + "grad_norm": 0.7975192666053772, + "learning_rate": 2.8303066666666667e-05, + "loss": 1.5963027954101563, + "step": 325600 + }, + { + "epoch": 43.42666666666667, + "grad_norm": 0.8252496123313904, + "learning_rate": 2.8296400000000002e-05, + "loss": 1.602006072998047, + "step": 325700 + }, + { + "epoch": 43.44, + "grad_norm": 0.7980925440788269, + "learning_rate": 2.8289733333333335e-05, + "loss": 1.5992507934570312, + "step": 325800 + }, + { + "epoch": 43.45333333333333, + "grad_norm": 0.8060539960861206, + "learning_rate": 2.828306666666667e-05, + "loss": 1.6028526306152344, + "step": 325900 + }, + { + "epoch": 43.46666666666667, + "grad_norm": 0.8016360998153687, + "learning_rate": 2.8276400000000003e-05, + "loss": 1.6021473693847657, + "step": 326000 + }, + { + "epoch": 43.48, + "grad_norm": 0.8183965086936951, + "learning_rate": 2.8269733333333338e-05, + "loss": 1.604202117919922, + "step": 326100 + }, + { + "epoch": 43.49333333333333, + "grad_norm": 0.8167826533317566, + "learning_rate": 2.8263066666666667e-05, + "loss": 1.6037716674804687, + "step": 326200 + }, + { + "epoch": 43.50666666666667, + "grad_norm": 0.822792649269104, + "learning_rate": 2.82564e-05, + "loss": 1.6101824951171875, + "step": 326300 + }, + { + "epoch": 43.52, + "grad_norm": 0.8114305734634399, + "learning_rate": 2.8249733333333335e-05, + "loss": 1.6087193298339844, + "step": 326400 + }, + { + "epoch": 43.53333333333333, + "grad_norm": 0.7822854518890381, + "learning_rate": 2.8243066666666667e-05, + "loss": 1.6054570007324218, + "step": 326500 + }, + { + "epoch": 43.54666666666667, + "grad_norm": 0.8089674115180969, + "learning_rate": 2.8236400000000003e-05, + "loss": 1.6116357421875, + "step": 326600 + }, + { + "epoch": 43.56, + "grad_norm": 0.8371312618255615, + "learning_rate": 2.8229733333333335e-05, + "loss": 1.6092622375488281, + "step": 326700 + }, + { + "epoch": 43.57333333333333, + "grad_norm": 0.8427196145057678, + "learning_rate": 2.822306666666667e-05, + "loss": 1.6071795654296874, + "step": 326800 + }, + { + "epoch": 43.586666666666666, + "grad_norm": 0.8295238614082336, + "learning_rate": 2.8216400000000003e-05, + "loss": 1.6127923583984376, + "step": 326900 + }, + { + "epoch": 43.6, + "grad_norm": 0.7599214315414429, + "learning_rate": 2.8209733333333332e-05, + "loss": 1.6075257873535156, + "step": 327000 + }, + { + "epoch": 43.61333333333333, + "grad_norm": 0.8173493146896362, + "learning_rate": 2.8203133333333338e-05, + "loss": 1.614122314453125, + "step": 327100 + }, + { + "epoch": 43.626666666666665, + "grad_norm": 0.8332886695861816, + "learning_rate": 2.8196466666666667e-05, + "loss": 1.6084408569335937, + "step": 327200 + }, + { + "epoch": 43.64, + "grad_norm": 0.7986454367637634, + "learning_rate": 2.81898e-05, + "loss": 1.611384735107422, + "step": 327300 + }, + { + "epoch": 43.653333333333336, + "grad_norm": 0.810438334941864, + "learning_rate": 2.8183133333333335e-05, + "loss": 1.6099681091308593, + "step": 327400 + }, + { + "epoch": 43.666666666666664, + "grad_norm": 0.8122630715370178, + "learning_rate": 2.8176466666666667e-05, + "loss": 1.6159297180175782, + "step": 327500 + }, + { + "epoch": 43.68, + "grad_norm": 0.8273375630378723, + "learning_rate": 2.8169800000000003e-05, + "loss": 1.61582275390625, + "step": 327600 + }, + { + "epoch": 43.693333333333335, + "grad_norm": 0.8308714628219604, + "learning_rate": 2.8163133333333335e-05, + "loss": 1.6199285888671875, + "step": 327700 + }, + { + "epoch": 43.70666666666666, + "grad_norm": 0.8172910809516907, + "learning_rate": 2.815646666666667e-05, + "loss": 1.6155218505859374, + "step": 327800 + }, + { + "epoch": 43.72, + "grad_norm": 0.8160513639450073, + "learning_rate": 2.8149800000000003e-05, + "loss": 1.6149066162109376, + "step": 327900 + }, + { + "epoch": 43.733333333333334, + "grad_norm": 0.8249967098236084, + "learning_rate": 2.814313333333333e-05, + "loss": 1.6162269592285157, + "step": 328000 + }, + { + "epoch": 43.74666666666667, + "grad_norm": 0.8377850651741028, + "learning_rate": 2.8136466666666667e-05, + "loss": 1.618191680908203, + "step": 328100 + }, + { + "epoch": 43.76, + "grad_norm": 0.8137295842170715, + "learning_rate": 2.81298e-05, + "loss": 1.6187442016601563, + "step": 328200 + }, + { + "epoch": 43.77333333333333, + "grad_norm": 0.837970495223999, + "learning_rate": 2.8123133333333335e-05, + "loss": 1.6166807556152343, + "step": 328300 + }, + { + "epoch": 43.78666666666667, + "grad_norm": 0.8243003487586975, + "learning_rate": 2.8116466666666668e-05, + "loss": 1.616520233154297, + "step": 328400 + }, + { + "epoch": 43.8, + "grad_norm": 0.803848147392273, + "learning_rate": 2.8109800000000003e-05, + "loss": 1.6198391723632812, + "step": 328500 + }, + { + "epoch": 43.81333333333333, + "grad_norm": 0.833913266658783, + "learning_rate": 2.8103133333333335e-05, + "loss": 1.6213204956054688, + "step": 328600 + }, + { + "epoch": 43.82666666666667, + "grad_norm": 0.8218970894813538, + "learning_rate": 2.8096466666666664e-05, + "loss": 1.6247633361816407, + "step": 328700 + }, + { + "epoch": 43.84, + "grad_norm": 0.7986996173858643, + "learning_rate": 2.80898e-05, + "loss": 1.6211305236816407, + "step": 328800 + }, + { + "epoch": 43.85333333333333, + "grad_norm": 0.8100335597991943, + "learning_rate": 2.8083133333333332e-05, + "loss": 1.6219183349609374, + "step": 328900 + }, + { + "epoch": 43.86666666666667, + "grad_norm": 0.8108803033828735, + "learning_rate": 2.8076466666666668e-05, + "loss": 1.625777587890625, + "step": 329000 + }, + { + "epoch": 43.88, + "grad_norm": 0.8235127329826355, + "learning_rate": 2.80698e-05, + "loss": 1.6242713928222656, + "step": 329100 + }, + { + "epoch": 43.89333333333333, + "grad_norm": 0.8156707882881165, + "learning_rate": 2.8063133333333336e-05, + "loss": 1.6232484436035157, + "step": 329200 + }, + { + "epoch": 43.906666666666666, + "grad_norm": 0.8078377842903137, + "learning_rate": 2.805646666666667e-05, + "loss": 1.628054656982422, + "step": 329300 + }, + { + "epoch": 43.92, + "grad_norm": 0.8015416264533997, + "learning_rate": 2.8049866666666667e-05, + "loss": 1.6264244079589845, + "step": 329400 + }, + { + "epoch": 43.93333333333333, + "grad_norm": 0.8207682967185974, + "learning_rate": 2.8043200000000003e-05, + "loss": 1.6302552795410157, + "step": 329500 + }, + { + "epoch": 43.946666666666665, + "grad_norm": 0.8398280739784241, + "learning_rate": 2.803653333333334e-05, + "loss": 1.6280979919433594, + "step": 329600 + }, + { + "epoch": 43.96, + "grad_norm": 0.8197426199913025, + "learning_rate": 2.8029866666666664e-05, + "loss": 1.628609619140625, + "step": 329700 + }, + { + "epoch": 43.973333333333336, + "grad_norm": 0.8169100284576416, + "learning_rate": 2.80232e-05, + "loss": 1.6312359619140624, + "step": 329800 + }, + { + "epoch": 43.986666666666665, + "grad_norm": 0.83058100938797, + "learning_rate": 2.8016533333333332e-05, + "loss": 1.6318269348144532, + "step": 329900 + }, + { + "epoch": 44.0, + "grad_norm": 0.8323699831962585, + "learning_rate": 2.8009866666666668e-05, + "loss": 1.630924072265625, + "step": 330000 + }, + { + "epoch": 44.013333333333335, + "grad_norm": 0.7513566613197327, + "learning_rate": 2.8003200000000003e-05, + "loss": 1.5481965637207031, + "step": 330100 + }, + { + "epoch": 44.026666666666664, + "grad_norm": 0.795397162437439, + "learning_rate": 2.7996533333333335e-05, + "loss": 1.548214874267578, + "step": 330200 + }, + { + "epoch": 44.04, + "grad_norm": 0.8049753904342651, + "learning_rate": 2.798986666666667e-05, + "loss": 1.5531326293945313, + "step": 330300 + }, + { + "epoch": 44.053333333333335, + "grad_norm": 0.8120512366294861, + "learning_rate": 2.7983200000000003e-05, + "loss": 1.5544256591796874, + "step": 330400 + }, + { + "epoch": 44.06666666666667, + "grad_norm": 0.7974734306335449, + "learning_rate": 2.7976533333333332e-05, + "loss": 1.5533895874023438, + "step": 330500 + }, + { + "epoch": 44.08, + "grad_norm": 0.7629339098930359, + "learning_rate": 2.7969866666666668e-05, + "loss": 1.5582643127441407, + "step": 330600 + }, + { + "epoch": 44.093333333333334, + "grad_norm": 0.8154823184013367, + "learning_rate": 2.79632e-05, + "loss": 1.5581031799316407, + "step": 330700 + }, + { + "epoch": 44.10666666666667, + "grad_norm": 0.7857486605644226, + "learning_rate": 2.7956533333333336e-05, + "loss": 1.5564183044433593, + "step": 330800 + }, + { + "epoch": 44.12, + "grad_norm": 0.787510097026825, + "learning_rate": 2.7949866666666668e-05, + "loss": 1.5604660034179687, + "step": 330900 + }, + { + "epoch": 44.13333333333333, + "grad_norm": 0.8060212135314941, + "learning_rate": 2.7943200000000004e-05, + "loss": 1.5654124450683593, + "step": 331000 + }, + { + "epoch": 44.14666666666667, + "grad_norm": 0.7761242389678955, + "learning_rate": 2.7936533333333336e-05, + "loss": 1.5596726989746095, + "step": 331100 + }, + { + "epoch": 44.16, + "grad_norm": 0.8251379132270813, + "learning_rate": 2.7929866666666665e-05, + "loss": 1.5614840698242187, + "step": 331200 + }, + { + "epoch": 44.17333333333333, + "grad_norm": 0.7911105155944824, + "learning_rate": 2.79232e-05, + "loss": 1.56426025390625, + "step": 331300 + }, + { + "epoch": 44.18666666666667, + "grad_norm": 0.8405753374099731, + "learning_rate": 2.7916533333333333e-05, + "loss": 1.5673910522460937, + "step": 331400 + }, + { + "epoch": 44.2, + "grad_norm": 0.8145385384559631, + "learning_rate": 2.790986666666667e-05, + "loss": 1.5684516906738282, + "step": 331500 + }, + { + "epoch": 44.21333333333333, + "grad_norm": 0.773007333278656, + "learning_rate": 2.7903266666666668e-05, + "loss": 1.5602330017089843, + "step": 331600 + }, + { + "epoch": 44.22666666666667, + "grad_norm": 0.7946937680244446, + "learning_rate": 2.78966e-05, + "loss": 1.5710047912597656, + "step": 331700 + }, + { + "epoch": 44.24, + "grad_norm": 0.7660664916038513, + "learning_rate": 2.7889933333333336e-05, + "loss": 1.5709490966796875, + "step": 331800 + }, + { + "epoch": 44.25333333333333, + "grad_norm": 0.8005920052528381, + "learning_rate": 2.7883266666666668e-05, + "loss": 1.574346160888672, + "step": 331900 + }, + { + "epoch": 44.266666666666666, + "grad_norm": 0.7568239569664001, + "learning_rate": 2.7876600000000003e-05, + "loss": 1.5710443115234376, + "step": 332000 + }, + { + "epoch": 44.28, + "grad_norm": 0.7837048172950745, + "learning_rate": 2.7869933333333336e-05, + "loss": 1.5691023254394532, + "step": 332100 + }, + { + "epoch": 44.29333333333334, + "grad_norm": 0.8391625881195068, + "learning_rate": 2.7863266666666665e-05, + "loss": 1.5703250122070314, + "step": 332200 + }, + { + "epoch": 44.306666666666665, + "grad_norm": 0.8348113298416138, + "learning_rate": 2.78566e-05, + "loss": 1.5742678833007813, + "step": 332300 + }, + { + "epoch": 44.32, + "grad_norm": 0.8065680861473083, + "learning_rate": 2.7849933333333333e-05, + "loss": 1.574197998046875, + "step": 332400 + }, + { + "epoch": 44.333333333333336, + "grad_norm": 0.810249388217926, + "learning_rate": 2.7843266666666668e-05, + "loss": 1.5787997436523438, + "step": 332500 + }, + { + "epoch": 44.346666666666664, + "grad_norm": 0.8214126229286194, + "learning_rate": 2.78366e-05, + "loss": 1.5753494262695313, + "step": 332600 + }, + { + "epoch": 44.36, + "grad_norm": 0.7763717770576477, + "learning_rate": 2.7829933333333336e-05, + "loss": 1.5762429809570313, + "step": 332700 + }, + { + "epoch": 44.373333333333335, + "grad_norm": 0.8266735076904297, + "learning_rate": 2.782326666666667e-05, + "loss": 1.5780609130859375, + "step": 332800 + }, + { + "epoch": 44.38666666666666, + "grad_norm": 0.7696077823638916, + "learning_rate": 2.7816600000000004e-05, + "loss": 1.5806687927246095, + "step": 332900 + }, + { + "epoch": 44.4, + "grad_norm": 0.8544163703918457, + "learning_rate": 2.7809933333333333e-05, + "loss": 1.5851622009277344, + "step": 333000 + }, + { + "epoch": 44.413333333333334, + "grad_norm": 0.8484505414962769, + "learning_rate": 2.7803266666666665e-05, + "loss": 1.581590576171875, + "step": 333100 + }, + { + "epoch": 44.42666666666667, + "grad_norm": 0.8385995626449585, + "learning_rate": 2.77966e-05, + "loss": 1.5861528015136719, + "step": 333200 + }, + { + "epoch": 44.44, + "grad_norm": 0.8071863651275635, + "learning_rate": 2.7789933333333333e-05, + "loss": 1.5843661499023438, + "step": 333300 + }, + { + "epoch": 44.45333333333333, + "grad_norm": 0.7563880085945129, + "learning_rate": 2.778326666666667e-05, + "loss": 1.5832810974121094, + "step": 333400 + }, + { + "epoch": 44.46666666666667, + "grad_norm": 0.8372814655303955, + "learning_rate": 2.77766e-05, + "loss": 1.5854434204101562, + "step": 333500 + }, + { + "epoch": 44.48, + "grad_norm": 0.8299968838691711, + "learning_rate": 2.777e-05, + "loss": 1.5830865478515626, + "step": 333600 + }, + { + "epoch": 44.49333333333333, + "grad_norm": 0.8309788107872009, + "learning_rate": 2.7763333333333336e-05, + "loss": 1.5840238952636718, + "step": 333700 + }, + { + "epoch": 44.50666666666667, + "grad_norm": 0.8194689154624939, + "learning_rate": 2.7756666666666668e-05, + "loss": 1.5837715148925782, + "step": 333800 + }, + { + "epoch": 44.52, + "grad_norm": 0.8060626983642578, + "learning_rate": 2.7750000000000004e-05, + "loss": 1.5884098815917969, + "step": 333900 + }, + { + "epoch": 44.53333333333333, + "grad_norm": 0.8061336278915405, + "learning_rate": 2.7743333333333333e-05, + "loss": 1.588507080078125, + "step": 334000 + }, + { + "epoch": 44.54666666666667, + "grad_norm": 0.8367504477500916, + "learning_rate": 2.7736666666666665e-05, + "loss": 1.5918386840820313, + "step": 334100 + }, + { + "epoch": 44.56, + "grad_norm": 0.7728124260902405, + "learning_rate": 2.773e-05, + "loss": 1.5909431457519532, + "step": 334200 + }, + { + "epoch": 44.57333333333333, + "grad_norm": 0.8325085639953613, + "learning_rate": 2.7723333333333336e-05, + "loss": 1.592117156982422, + "step": 334300 + }, + { + "epoch": 44.586666666666666, + "grad_norm": 0.8074480295181274, + "learning_rate": 2.771666666666667e-05, + "loss": 1.5892124938964844, + "step": 334400 + }, + { + "epoch": 44.6, + "grad_norm": 0.8252527117729187, + "learning_rate": 2.7710000000000004e-05, + "loss": 1.5915934753417968, + "step": 334500 + }, + { + "epoch": 44.61333333333333, + "grad_norm": 0.8227205276489258, + "learning_rate": 2.7703333333333336e-05, + "loss": 1.5954025268554688, + "step": 334600 + }, + { + "epoch": 44.626666666666665, + "grad_norm": 0.7897677421569824, + "learning_rate": 2.7696666666666672e-05, + "loss": 1.595858154296875, + "step": 334700 + }, + { + "epoch": 44.64, + "grad_norm": 0.8313090801239014, + "learning_rate": 2.769e-05, + "loss": 1.5937057495117188, + "step": 334800 + }, + { + "epoch": 44.653333333333336, + "grad_norm": 0.8491702675819397, + "learning_rate": 2.7683333333333333e-05, + "loss": 1.5937522888183593, + "step": 334900 + }, + { + "epoch": 44.666666666666664, + "grad_norm": 0.8034929633140564, + "learning_rate": 2.767666666666667e-05, + "loss": 1.5955474853515625, + "step": 335000 + }, + { + "epoch": 44.68, + "grad_norm": 0.8023072481155396, + "learning_rate": 2.767e-05, + "loss": 1.5998284912109375, + "step": 335100 + }, + { + "epoch": 44.693333333333335, + "grad_norm": 0.8060296177864075, + "learning_rate": 2.7663333333333337e-05, + "loss": 1.5983045959472657, + "step": 335200 + }, + { + "epoch": 44.70666666666666, + "grad_norm": 0.8240456581115723, + "learning_rate": 2.765666666666667e-05, + "loss": 1.6016310119628907, + "step": 335300 + }, + { + "epoch": 44.72, + "grad_norm": 0.8086797595024109, + "learning_rate": 2.7650000000000005e-05, + "loss": 1.5979426574707032, + "step": 335400 + }, + { + "epoch": 44.733333333333334, + "grad_norm": 0.868865966796875, + "learning_rate": 2.7643333333333334e-05, + "loss": 1.6031364440917968, + "step": 335500 + }, + { + "epoch": 44.74666666666667, + "grad_norm": 0.8430706858634949, + "learning_rate": 2.7636733333333336e-05, + "loss": 1.599954833984375, + "step": 335600 + }, + { + "epoch": 44.76, + "grad_norm": 0.8253472447395325, + "learning_rate": 2.763006666666667e-05, + "loss": 1.5997967529296875, + "step": 335700 + }, + { + "epoch": 44.77333333333333, + "grad_norm": 0.8024996519088745, + "learning_rate": 2.76234e-05, + "loss": 1.603931884765625, + "step": 335800 + }, + { + "epoch": 44.78666666666667, + "grad_norm": 0.8097237348556519, + "learning_rate": 2.7616733333333333e-05, + "loss": 1.60475830078125, + "step": 335900 + }, + { + "epoch": 44.8, + "grad_norm": 0.7891868352890015, + "learning_rate": 2.761006666666667e-05, + "loss": 1.5993539428710937, + "step": 336000 + }, + { + "epoch": 44.81333333333333, + "grad_norm": 0.7946909070014954, + "learning_rate": 2.76034e-05, + "loss": 1.608636932373047, + "step": 336100 + }, + { + "epoch": 44.82666666666667, + "grad_norm": 0.8104386329650879, + "learning_rate": 2.7596733333333336e-05, + "loss": 1.6042922973632812, + "step": 336200 + }, + { + "epoch": 44.84, + "grad_norm": 0.8731896281242371, + "learning_rate": 2.759006666666667e-05, + "loss": 1.6097525024414063, + "step": 336300 + }, + { + "epoch": 44.85333333333333, + "grad_norm": 0.8121789693832397, + "learning_rate": 2.7583400000000004e-05, + "loss": 1.606430206298828, + "step": 336400 + }, + { + "epoch": 44.86666666666667, + "grad_norm": 0.8330267667770386, + "learning_rate": 2.7576733333333333e-05, + "loss": 1.6087510681152344, + "step": 336500 + }, + { + "epoch": 44.88, + "grad_norm": 0.852932333946228, + "learning_rate": 2.7570066666666665e-05, + "loss": 1.6065789794921874, + "step": 336600 + }, + { + "epoch": 44.89333333333333, + "grad_norm": 0.8132789134979248, + "learning_rate": 2.75634e-05, + "loss": 1.6074699401855468, + "step": 336700 + }, + { + "epoch": 44.906666666666666, + "grad_norm": 0.8489792943000793, + "learning_rate": 2.7556733333333333e-05, + "loss": 1.606990509033203, + "step": 336800 + }, + { + "epoch": 44.92, + "grad_norm": 0.8278707265853882, + "learning_rate": 2.755006666666667e-05, + "loss": 1.6092149353027343, + "step": 336900 + }, + { + "epoch": 44.93333333333333, + "grad_norm": 0.8030561804771423, + "learning_rate": 2.75434e-05, + "loss": 1.6118333435058594, + "step": 337000 + }, + { + "epoch": 44.946666666666665, + "grad_norm": 0.8444882035255432, + "learning_rate": 2.7536733333333337e-05, + "loss": 1.61545166015625, + "step": 337100 + }, + { + "epoch": 44.96, + "grad_norm": 0.7839025259017944, + "learning_rate": 2.753006666666667e-05, + "loss": 1.6124861145019531, + "step": 337200 + }, + { + "epoch": 44.973333333333336, + "grad_norm": 0.8304545283317566, + "learning_rate": 2.7523399999999998e-05, + "loss": 1.6095152282714844, + "step": 337300 + }, + { + "epoch": 44.986666666666665, + "grad_norm": 0.822806179523468, + "learning_rate": 2.7516733333333334e-05, + "loss": 1.6171923828125, + "step": 337400 + }, + { + "epoch": 45.0, + "grad_norm": 0.8254655003547668, + "learning_rate": 2.7510066666666666e-05, + "loss": 1.61357666015625, + "step": 337500 + }, + { + "epoch": 45.013333333333335, + "grad_norm": 0.75385981798172, + "learning_rate": 2.7503466666666665e-05, + "loss": 1.5345475769042969, + "step": 337600 + }, + { + "epoch": 45.026666666666664, + "grad_norm": 0.7878371477127075, + "learning_rate": 2.74968e-05, + "loss": 1.5335455322265625, + "step": 337700 + }, + { + "epoch": 45.04, + "grad_norm": 0.7791154384613037, + "learning_rate": 2.7490133333333333e-05, + "loss": 1.5394093322753906, + "step": 337800 + }, + { + "epoch": 45.053333333333335, + "grad_norm": 0.8024111390113831, + "learning_rate": 2.748346666666667e-05, + "loss": 1.5331953430175782, + "step": 337900 + }, + { + "epoch": 45.06666666666667, + "grad_norm": 0.8430346846580505, + "learning_rate": 2.74768e-05, + "loss": 1.5368072509765625, + "step": 338000 + }, + { + "epoch": 45.08, + "grad_norm": 0.8052778840065002, + "learning_rate": 2.7470133333333337e-05, + "loss": 1.546075439453125, + "step": 338100 + }, + { + "epoch": 45.093333333333334, + "grad_norm": 0.7933223843574524, + "learning_rate": 2.7463466666666672e-05, + "loss": 1.5412501525878906, + "step": 338200 + }, + { + "epoch": 45.10666666666667, + "grad_norm": 0.801228940486908, + "learning_rate": 2.7456799999999998e-05, + "loss": 1.539934844970703, + "step": 338300 + }, + { + "epoch": 45.12, + "grad_norm": 0.7986882328987122, + "learning_rate": 2.7450133333333333e-05, + "loss": 1.5405552673339844, + "step": 338400 + }, + { + "epoch": 45.13333333333333, + "grad_norm": 0.8069292306900024, + "learning_rate": 2.7443466666666666e-05, + "loss": 1.545841064453125, + "step": 338500 + }, + { + "epoch": 45.14666666666667, + "grad_norm": 0.7927032113075256, + "learning_rate": 2.74368e-05, + "loss": 1.5462718200683594, + "step": 338600 + }, + { + "epoch": 45.16, + "grad_norm": 0.7794001698493958, + "learning_rate": 2.7430133333333337e-05, + "loss": 1.5485234069824219, + "step": 338700 + }, + { + "epoch": 45.17333333333333, + "grad_norm": 0.7855547070503235, + "learning_rate": 2.742346666666667e-05, + "loss": 1.5519866943359375, + "step": 338800 + }, + { + "epoch": 45.18666666666667, + "grad_norm": 0.8333518505096436, + "learning_rate": 2.7416800000000005e-05, + "loss": 1.5467234802246095, + "step": 338900 + }, + { + "epoch": 45.2, + "grad_norm": 0.8590301275253296, + "learning_rate": 2.7410133333333334e-05, + "loss": 1.5527265930175782, + "step": 339000 + }, + { + "epoch": 45.21333333333333, + "grad_norm": 0.8133448958396912, + "learning_rate": 2.7403466666666666e-05, + "loss": 1.5531710815429687, + "step": 339100 + }, + { + "epoch": 45.22666666666667, + "grad_norm": 0.843085527420044, + "learning_rate": 2.7396800000000002e-05, + "loss": 1.552749786376953, + "step": 339200 + }, + { + "epoch": 45.24, + "grad_norm": 0.8271104693412781, + "learning_rate": 2.7390133333333334e-05, + "loss": 1.55497802734375, + "step": 339300 + }, + { + "epoch": 45.25333333333333, + "grad_norm": 0.7889156937599182, + "learning_rate": 2.738346666666667e-05, + "loss": 1.554407958984375, + "step": 339400 + }, + { + "epoch": 45.266666666666666, + "grad_norm": 0.8237720131874084, + "learning_rate": 2.7376800000000002e-05, + "loss": 1.5559963989257812, + "step": 339500 + }, + { + "epoch": 45.28, + "grad_norm": 0.8432164192199707, + "learning_rate": 2.7370133333333338e-05, + "loss": 1.5602865600585938, + "step": 339600 + }, + { + "epoch": 45.29333333333334, + "grad_norm": 0.8066620826721191, + "learning_rate": 2.7363533333333337e-05, + "loss": 1.5569775390625, + "step": 339700 + }, + { + "epoch": 45.306666666666665, + "grad_norm": 0.8251729011535645, + "learning_rate": 2.735686666666667e-05, + "loss": 1.5603398132324218, + "step": 339800 + }, + { + "epoch": 45.32, + "grad_norm": 0.8274789452552795, + "learning_rate": 2.7350200000000005e-05, + "loss": 1.5607125854492188, + "step": 339900 + }, + { + "epoch": 45.333333333333336, + "grad_norm": 0.7985981702804565, + "learning_rate": 2.7343533333333333e-05, + "loss": 1.5612689208984376, + "step": 340000 + }, + { + "epoch": 45.346666666666664, + "grad_norm": 0.8099194765090942, + "learning_rate": 2.7336866666666666e-05, + "loss": 1.5611070251464845, + "step": 340100 + }, + { + "epoch": 45.36, + "grad_norm": 0.7862045764923096, + "learning_rate": 2.73302e-05, + "loss": 1.561177978515625, + "step": 340200 + }, + { + "epoch": 45.373333333333335, + "grad_norm": 0.8008959293365479, + "learning_rate": 2.7323533333333334e-05, + "loss": 1.5632902526855468, + "step": 340300 + }, + { + "epoch": 45.38666666666666, + "grad_norm": 0.8084346055984497, + "learning_rate": 2.731686666666667e-05, + "loss": 1.56494384765625, + "step": 340400 + }, + { + "epoch": 45.4, + "grad_norm": 0.7950522303581238, + "learning_rate": 2.73102e-05, + "loss": 1.563892822265625, + "step": 340500 + }, + { + "epoch": 45.413333333333334, + "grad_norm": 0.8112916350364685, + "learning_rate": 2.7303533333333337e-05, + "loss": 1.5658737182617188, + "step": 340600 + }, + { + "epoch": 45.42666666666667, + "grad_norm": 0.8019904494285583, + "learning_rate": 2.729686666666667e-05, + "loss": 1.5665919494628906, + "step": 340700 + }, + { + "epoch": 45.44, + "grad_norm": 0.8604961037635803, + "learning_rate": 2.72902e-05, + "loss": 1.5618829345703125, + "step": 340800 + }, + { + "epoch": 45.45333333333333, + "grad_norm": 0.8297909498214722, + "learning_rate": 2.7283533333333334e-05, + "loss": 1.5690985107421875, + "step": 340900 + }, + { + "epoch": 45.46666666666667, + "grad_norm": 0.8290330171585083, + "learning_rate": 2.7276866666666666e-05, + "loss": 1.5725372314453125, + "step": 341000 + }, + { + "epoch": 45.48, + "grad_norm": 0.8196405172348022, + "learning_rate": 2.7270200000000002e-05, + "loss": 1.5716435241699218, + "step": 341100 + }, + { + "epoch": 45.49333333333333, + "grad_norm": 0.8516254425048828, + "learning_rate": 2.7263533333333334e-05, + "loss": 1.5708955383300782, + "step": 341200 + }, + { + "epoch": 45.50666666666667, + "grad_norm": 0.8195080161094666, + "learning_rate": 2.725686666666667e-05, + "loss": 1.5677909851074219, + "step": 341300 + }, + { + "epoch": 45.52, + "grad_norm": 0.8368141055107117, + "learning_rate": 2.7250200000000002e-05, + "loss": 1.5750044250488282, + "step": 341400 + }, + { + "epoch": 45.53333333333333, + "grad_norm": 0.8141370415687561, + "learning_rate": 2.724353333333333e-05, + "loss": 1.5710145568847655, + "step": 341500 + }, + { + "epoch": 45.54666666666667, + "grad_norm": 0.8688223361968994, + "learning_rate": 2.7236866666666667e-05, + "loss": 1.577767333984375, + "step": 341600 + }, + { + "epoch": 45.56, + "grad_norm": 0.8282235860824585, + "learning_rate": 2.723026666666667e-05, + "loss": 1.5752143859863281, + "step": 341700 + }, + { + "epoch": 45.57333333333333, + "grad_norm": 0.8183776140213013, + "learning_rate": 2.7223599999999998e-05, + "loss": 1.5708876037597657, + "step": 341800 + }, + { + "epoch": 45.586666666666666, + "grad_norm": 0.820489227771759, + "learning_rate": 2.7216933333333334e-05, + "loss": 1.5763885498046875, + "step": 341900 + }, + { + "epoch": 45.6, + "grad_norm": 0.7990655899047852, + "learning_rate": 2.7210266666666666e-05, + "loss": 1.579280242919922, + "step": 342000 + }, + { + "epoch": 45.61333333333333, + "grad_norm": 0.8262766003608704, + "learning_rate": 2.72036e-05, + "loss": 1.5800761413574218, + "step": 342100 + }, + { + "epoch": 45.626666666666665, + "grad_norm": 0.8294216990470886, + "learning_rate": 2.7196933333333334e-05, + "loss": 1.5776101684570312, + "step": 342200 + }, + { + "epoch": 45.64, + "grad_norm": 0.8527024984359741, + "learning_rate": 2.719026666666667e-05, + "loss": 1.5793777465820313, + "step": 342300 + }, + { + "epoch": 45.653333333333336, + "grad_norm": 0.8285980224609375, + "learning_rate": 2.7183600000000005e-05, + "loss": 1.5826039123535156, + "step": 342400 + }, + { + "epoch": 45.666666666666664, + "grad_norm": 0.7973678708076477, + "learning_rate": 2.717693333333333e-05, + "loss": 1.5825093078613282, + "step": 342500 + }, + { + "epoch": 45.68, + "grad_norm": 0.8386090993881226, + "learning_rate": 2.7170266666666666e-05, + "loss": 1.5819102478027345, + "step": 342600 + }, + { + "epoch": 45.693333333333335, + "grad_norm": 0.8596566915512085, + "learning_rate": 2.71636e-05, + "loss": 1.5824310302734375, + "step": 342700 + }, + { + "epoch": 45.70666666666666, + "grad_norm": 0.84074467420578, + "learning_rate": 2.7156933333333334e-05, + "loss": 1.5835606384277343, + "step": 342800 + }, + { + "epoch": 45.72, + "grad_norm": 0.8335156440734863, + "learning_rate": 2.715026666666667e-05, + "loss": 1.5831988525390626, + "step": 342900 + }, + { + "epoch": 45.733333333333334, + "grad_norm": 0.8545652031898499, + "learning_rate": 2.7143600000000002e-05, + "loss": 1.5821173095703125, + "step": 343000 + }, + { + "epoch": 45.74666666666667, + "grad_norm": 0.8127861022949219, + "learning_rate": 2.7136933333333338e-05, + "loss": 1.5852001953125, + "step": 343100 + }, + { + "epoch": 45.76, + "grad_norm": 0.8396148085594177, + "learning_rate": 2.713026666666667e-05, + "loss": 1.5899464416503906, + "step": 343200 + }, + { + "epoch": 45.77333333333333, + "grad_norm": 0.8626675605773926, + "learning_rate": 2.71236e-05, + "loss": 1.5838290405273439, + "step": 343300 + }, + { + "epoch": 45.78666666666667, + "grad_norm": 0.8253298997879028, + "learning_rate": 2.7116933333333335e-05, + "loss": 1.5856344604492187, + "step": 343400 + }, + { + "epoch": 45.8, + "grad_norm": 0.8361122012138367, + "learning_rate": 2.7110266666666667e-05, + "loss": 1.5906475830078124, + "step": 343500 + }, + { + "epoch": 45.81333333333333, + "grad_norm": 0.7877110242843628, + "learning_rate": 2.7103600000000003e-05, + "loss": 1.5869761657714845, + "step": 343600 + }, + { + "epoch": 45.82666666666667, + "grad_norm": 0.8173111081123352, + "learning_rate": 2.7097e-05, + "loss": 1.5882725524902344, + "step": 343700 + }, + { + "epoch": 45.84, + "grad_norm": 0.8360334038734436, + "learning_rate": 2.7090333333333334e-05, + "loss": 1.5957424926757813, + "step": 343800 + }, + { + "epoch": 45.85333333333333, + "grad_norm": 0.8417925834655762, + "learning_rate": 2.708366666666667e-05, + "loss": 1.589451446533203, + "step": 343900 + }, + { + "epoch": 45.86666666666667, + "grad_norm": 0.7977088689804077, + "learning_rate": 2.7077000000000002e-05, + "loss": 1.5911802673339843, + "step": 344000 + }, + { + "epoch": 45.88, + "grad_norm": 0.8282347321510315, + "learning_rate": 2.7070333333333337e-05, + "loss": 1.5962525939941405, + "step": 344100 + }, + { + "epoch": 45.89333333333333, + "grad_norm": 0.8380323648452759, + "learning_rate": 2.706366666666667e-05, + "loss": 1.5943394470214844, + "step": 344200 + }, + { + "epoch": 45.906666666666666, + "grad_norm": 0.8266421556472778, + "learning_rate": 2.7057e-05, + "loss": 1.5934329223632813, + "step": 344300 + }, + { + "epoch": 45.92, + "grad_norm": 0.8296067118644714, + "learning_rate": 2.7050333333333334e-05, + "loss": 1.5951394653320312, + "step": 344400 + }, + { + "epoch": 45.93333333333333, + "grad_norm": 0.8238825798034668, + "learning_rate": 2.7043666666666667e-05, + "loss": 1.5956932067871095, + "step": 344500 + }, + { + "epoch": 45.946666666666665, + "grad_norm": 0.8402311205863953, + "learning_rate": 2.7037000000000002e-05, + "loss": 1.5972817993164063, + "step": 344600 + }, + { + "epoch": 45.96, + "grad_norm": 0.819067656993866, + "learning_rate": 2.7030333333333334e-05, + "loss": 1.5947479248046874, + "step": 344700 + }, + { + "epoch": 45.973333333333336, + "grad_norm": 0.8134846687316895, + "learning_rate": 2.702366666666667e-05, + "loss": 1.5938349914550782, + "step": 344800 + }, + { + "epoch": 45.986666666666665, + "grad_norm": 0.8139092326164246, + "learning_rate": 2.7017000000000002e-05, + "loss": 1.5983534240722657, + "step": 344900 + }, + { + "epoch": 46.0, + "grad_norm": 0.845569908618927, + "learning_rate": 2.701033333333333e-05, + "loss": 1.5993333435058594, + "step": 345000 + }, + { + "epoch": 46.013333333333335, + "grad_norm": 0.8060302138328552, + "learning_rate": 2.7003666666666667e-05, + "loss": 1.5197933959960936, + "step": 345100 + }, + { + "epoch": 46.026666666666664, + "grad_norm": 0.8016753196716309, + "learning_rate": 2.6997e-05, + "loss": 1.5163864135742187, + "step": 345200 + }, + { + "epoch": 46.04, + "grad_norm": 0.824266791343689, + "learning_rate": 2.6990333333333335e-05, + "loss": 1.5196403503417968, + "step": 345300 + }, + { + "epoch": 46.053333333333335, + "grad_norm": 0.831349790096283, + "learning_rate": 2.6983666666666667e-05, + "loss": 1.5196861267089843, + "step": 345400 + }, + { + "epoch": 46.06666666666667, + "grad_norm": 0.794564425945282, + "learning_rate": 2.6977000000000003e-05, + "loss": 1.5226402282714844, + "step": 345500 + }, + { + "epoch": 46.08, + "grad_norm": 0.864202618598938, + "learning_rate": 2.6970333333333335e-05, + "loss": 1.52418701171875, + "step": 345600 + }, + { + "epoch": 46.093333333333334, + "grad_norm": 0.8275471925735474, + "learning_rate": 2.696366666666667e-05, + "loss": 1.5281210327148438, + "step": 345700 + }, + { + "epoch": 46.10666666666667, + "grad_norm": 0.8034723401069641, + "learning_rate": 2.695706666666667e-05, + "loss": 1.5245565795898437, + "step": 345800 + }, + { + "epoch": 46.12, + "grad_norm": 0.8259097337722778, + "learning_rate": 2.6950400000000002e-05, + "loss": 1.531691436767578, + "step": 345900 + }, + { + "epoch": 46.13333333333333, + "grad_norm": 0.8168667554855347, + "learning_rate": 2.694373333333333e-05, + "loss": 1.5279510498046875, + "step": 346000 + }, + { + "epoch": 46.14666666666667, + "grad_norm": 0.8043650984764099, + "learning_rate": 2.6937066666666667e-05, + "loss": 1.530906219482422, + "step": 346100 + }, + { + "epoch": 46.16, + "grad_norm": 0.7977316379547119, + "learning_rate": 2.69304e-05, + "loss": 1.5317568969726563, + "step": 346200 + }, + { + "epoch": 46.17333333333333, + "grad_norm": 0.8600273728370667, + "learning_rate": 2.6923733333333334e-05, + "loss": 1.5322166442871095, + "step": 346300 + }, + { + "epoch": 46.18666666666667, + "grad_norm": 0.8048485517501831, + "learning_rate": 2.6917066666666667e-05, + "loss": 1.5342538452148438, + "step": 346400 + }, + { + "epoch": 46.2, + "grad_norm": 0.8028460144996643, + "learning_rate": 2.6910400000000002e-05, + "loss": 1.538252716064453, + "step": 346500 + }, + { + "epoch": 46.21333333333333, + "grad_norm": 0.8104482293128967, + "learning_rate": 2.6903733333333335e-05, + "loss": 1.537858123779297, + "step": 346600 + }, + { + "epoch": 46.22666666666667, + "grad_norm": 0.8299853205680847, + "learning_rate": 2.689706666666667e-05, + "loss": 1.5331761169433593, + "step": 346700 + }, + { + "epoch": 46.24, + "grad_norm": 0.8089656829833984, + "learning_rate": 2.68904e-05, + "loss": 1.5343820190429687, + "step": 346800 + }, + { + "epoch": 46.25333333333333, + "grad_norm": 0.8413048982620239, + "learning_rate": 2.688373333333333e-05, + "loss": 1.5428427124023438, + "step": 346900 + }, + { + "epoch": 46.266666666666666, + "grad_norm": 0.8163671493530273, + "learning_rate": 2.6877066666666667e-05, + "loss": 1.5400894165039063, + "step": 347000 + }, + { + "epoch": 46.28, + "grad_norm": 0.8367263674736023, + "learning_rate": 2.6870400000000003e-05, + "loss": 1.5393385314941406, + "step": 347100 + }, + { + "epoch": 46.29333333333334, + "grad_norm": 0.8091789484024048, + "learning_rate": 2.6863733333333335e-05, + "loss": 1.5403530883789063, + "step": 347200 + }, + { + "epoch": 46.306666666666665, + "grad_norm": 0.7646798491477966, + "learning_rate": 2.685706666666667e-05, + "loss": 1.5441659545898438, + "step": 347300 + }, + { + "epoch": 46.32, + "grad_norm": 0.8175348043441772, + "learning_rate": 2.6850400000000003e-05, + "loss": 1.5414935302734376, + "step": 347400 + }, + { + "epoch": 46.333333333333336, + "grad_norm": 0.8292933702468872, + "learning_rate": 2.6843733333333332e-05, + "loss": 1.5435244750976562, + "step": 347500 + }, + { + "epoch": 46.346666666666664, + "grad_norm": 0.8154855966567993, + "learning_rate": 2.6837066666666668e-05, + "loss": 1.5483761596679688, + "step": 347600 + }, + { + "epoch": 46.36, + "grad_norm": 0.7751580476760864, + "learning_rate": 2.68304e-05, + "loss": 1.5469662475585937, + "step": 347700 + }, + { + "epoch": 46.373333333333335, + "grad_norm": 0.8045754432678223, + "learning_rate": 2.6823733333333335e-05, + "loss": 1.5475198364257812, + "step": 347800 + }, + { + "epoch": 46.38666666666666, + "grad_norm": 0.8215160965919495, + "learning_rate": 2.6817133333333335e-05, + "loss": 1.545174560546875, + "step": 347900 + }, + { + "epoch": 46.4, + "grad_norm": 0.8201582431793213, + "learning_rate": 2.6810466666666667e-05, + "loss": 1.548802490234375, + "step": 348000 + }, + { + "epoch": 46.413333333333334, + "grad_norm": 0.8398956060409546, + "learning_rate": 2.6803800000000002e-05, + "loss": 1.5487840270996094, + "step": 348100 + }, + { + "epoch": 46.42666666666667, + "grad_norm": 0.8224796652793884, + "learning_rate": 2.6797133333333335e-05, + "loss": 1.549246826171875, + "step": 348200 + }, + { + "epoch": 46.44, + "grad_norm": 0.8594797849655151, + "learning_rate": 2.679046666666667e-05, + "loss": 1.5520086669921875, + "step": 348300 + }, + { + "epoch": 46.45333333333333, + "grad_norm": 0.8207729458808899, + "learning_rate": 2.6783800000000003e-05, + "loss": 1.5540689086914063, + "step": 348400 + }, + { + "epoch": 46.46666666666667, + "grad_norm": 0.8314641714096069, + "learning_rate": 2.677713333333333e-05, + "loss": 1.5520907592773439, + "step": 348500 + }, + { + "epoch": 46.48, + "grad_norm": 0.8217018246650696, + "learning_rate": 2.6770466666666667e-05, + "loss": 1.5557980346679687, + "step": 348600 + }, + { + "epoch": 46.49333333333333, + "grad_norm": 0.8059836030006409, + "learning_rate": 2.67638e-05, + "loss": 1.5601199340820313, + "step": 348700 + }, + { + "epoch": 46.50666666666667, + "grad_norm": 0.8552286028862, + "learning_rate": 2.6757133333333335e-05, + "loss": 1.5559910583496093, + "step": 348800 + }, + { + "epoch": 46.52, + "grad_norm": 0.8301519155502319, + "learning_rate": 2.6750466666666667e-05, + "loss": 1.5562776184082032, + "step": 348900 + }, + { + "epoch": 46.53333333333333, + "grad_norm": 0.8431631326675415, + "learning_rate": 2.6743800000000003e-05, + "loss": 1.5593917846679688, + "step": 349000 + }, + { + "epoch": 46.54666666666667, + "grad_norm": 0.8206700682640076, + "learning_rate": 2.6737133333333335e-05, + "loss": 1.5606121826171875, + "step": 349100 + }, + { + "epoch": 46.56, + "grad_norm": 0.8263945579528809, + "learning_rate": 2.673046666666667e-05, + "loss": 1.5540763854980468, + "step": 349200 + }, + { + "epoch": 46.57333333333333, + "grad_norm": 0.8618150949478149, + "learning_rate": 2.67238e-05, + "loss": 1.5589299011230469, + "step": 349300 + }, + { + "epoch": 46.586666666666666, + "grad_norm": 0.8470207452774048, + "learning_rate": 2.6717133333333332e-05, + "loss": 1.561882781982422, + "step": 349400 + }, + { + "epoch": 46.6, + "grad_norm": 0.8224665522575378, + "learning_rate": 2.6710466666666668e-05, + "loss": 1.5630607604980469, + "step": 349500 + }, + { + "epoch": 46.61333333333333, + "grad_norm": 0.8316152691841125, + "learning_rate": 2.67038e-05, + "loss": 1.55953369140625, + "step": 349600 + }, + { + "epoch": 46.626666666666665, + "grad_norm": 0.8321995139122009, + "learning_rate": 2.6697133333333336e-05, + "loss": 1.5658473205566406, + "step": 349700 + }, + { + "epoch": 46.64, + "grad_norm": 0.8178289532661438, + "learning_rate": 2.6690466666666668e-05, + "loss": 1.5612675476074218, + "step": 349800 + }, + { + "epoch": 46.653333333333336, + "grad_norm": 0.7792300581932068, + "learning_rate": 2.6683800000000004e-05, + "loss": 1.5632437133789063, + "step": 349900 + }, + { + "epoch": 46.666666666666664, + "grad_norm": 0.7988590002059937, + "learning_rate": 2.6677133333333336e-05, + "loss": 1.5675028991699218, + "step": 350000 + }, + { + "epoch": 46.68, + "grad_norm": 0.8445242643356323, + "learning_rate": 2.6670533333333335e-05, + "loss": 1.5669676208496093, + "step": 350100 + }, + { + "epoch": 46.693333333333335, + "grad_norm": 0.8198060989379883, + "learning_rate": 2.666386666666667e-05, + "loss": 1.5665971374511718, + "step": 350200 + }, + { + "epoch": 46.70666666666666, + "grad_norm": 0.8664674162864685, + "learning_rate": 2.66572e-05, + "loss": 1.5654718017578124, + "step": 350300 + }, + { + "epoch": 46.72, + "grad_norm": 0.819105863571167, + "learning_rate": 2.6650533333333332e-05, + "loss": 1.567599334716797, + "step": 350400 + }, + { + "epoch": 46.733333333333334, + "grad_norm": 0.8594771027565002, + "learning_rate": 2.6643866666666667e-05, + "loss": 1.5679061889648438, + "step": 350500 + }, + { + "epoch": 46.74666666666667, + "grad_norm": 0.8125904202461243, + "learning_rate": 2.66372e-05, + "loss": 1.5722848510742187, + "step": 350600 + }, + { + "epoch": 46.76, + "grad_norm": 0.8537176847457886, + "learning_rate": 2.6630533333333335e-05, + "loss": 1.5686172485351562, + "step": 350700 + }, + { + "epoch": 46.77333333333333, + "grad_norm": 0.8427459001541138, + "learning_rate": 2.6623866666666668e-05, + "loss": 1.571588592529297, + "step": 350800 + }, + { + "epoch": 46.78666666666667, + "grad_norm": 0.827638566493988, + "learning_rate": 2.6617200000000003e-05, + "loss": 1.5718766784667968, + "step": 350900 + }, + { + "epoch": 46.8, + "grad_norm": 0.8735706806182861, + "learning_rate": 2.661053333333334e-05, + "loss": 1.5722669982910156, + "step": 351000 + }, + { + "epoch": 46.81333333333333, + "grad_norm": 0.8201860785484314, + "learning_rate": 2.6603866666666664e-05, + "loss": 1.5740573120117187, + "step": 351100 + }, + { + "epoch": 46.82666666666667, + "grad_norm": 0.8265976309776306, + "learning_rate": 2.65972e-05, + "loss": 1.5777357482910157, + "step": 351200 + }, + { + "epoch": 46.84, + "grad_norm": 0.8381431698799133, + "learning_rate": 2.6590533333333332e-05, + "loss": 1.5748936462402343, + "step": 351300 + }, + { + "epoch": 46.85333333333333, + "grad_norm": 0.8063822388648987, + "learning_rate": 2.6583866666666668e-05, + "loss": 1.5776918029785156, + "step": 351400 + }, + { + "epoch": 46.86666666666667, + "grad_norm": 0.831693172454834, + "learning_rate": 2.6577200000000004e-05, + "loss": 1.5761140441894532, + "step": 351500 + }, + { + "epoch": 46.88, + "grad_norm": 0.8381946682929993, + "learning_rate": 2.6570533333333336e-05, + "loss": 1.5803857421875, + "step": 351600 + }, + { + "epoch": 46.89333333333333, + "grad_norm": 0.8485809564590454, + "learning_rate": 2.656386666666667e-05, + "loss": 1.5759907531738282, + "step": 351700 + }, + { + "epoch": 46.906666666666666, + "grad_norm": 0.8247084617614746, + "learning_rate": 2.6557199999999997e-05, + "loss": 1.5766317749023437, + "step": 351800 + }, + { + "epoch": 46.92, + "grad_norm": 0.8473241925239563, + "learning_rate": 2.6550533333333333e-05, + "loss": 1.5800099182128906, + "step": 351900 + }, + { + "epoch": 46.93333333333333, + "grad_norm": 0.8938542604446411, + "learning_rate": 2.654386666666667e-05, + "loss": 1.575980224609375, + "step": 352000 + }, + { + "epoch": 46.946666666666665, + "grad_norm": 0.8447518348693848, + "learning_rate": 2.6537266666666667e-05, + "loss": 1.5792408752441407, + "step": 352100 + }, + { + "epoch": 46.96, + "grad_norm": 0.8477917313575745, + "learning_rate": 2.65306e-05, + "loss": 1.5817056274414063, + "step": 352200 + }, + { + "epoch": 46.973333333333336, + "grad_norm": 0.8412907123565674, + "learning_rate": 2.6523933333333335e-05, + "loss": 1.5827552795410156, + "step": 352300 + }, + { + "epoch": 46.986666666666665, + "grad_norm": 0.8627504706382751, + "learning_rate": 2.6517266666666668e-05, + "loss": 1.5811537170410157, + "step": 352400 + }, + { + "epoch": 47.0, + "grad_norm": 0.8609046936035156, + "learning_rate": 2.6510600000000003e-05, + "loss": 1.5816255187988282, + "step": 352500 + }, + { + "epoch": 47.013333333333335, + "grad_norm": 0.7538483142852783, + "learning_rate": 2.6503933333333336e-05, + "loss": 1.5079031372070313, + "step": 352600 + }, + { + "epoch": 47.026666666666664, + "grad_norm": 0.813092827796936, + "learning_rate": 2.649726666666667e-05, + "loss": 1.5056570434570313, + "step": 352700 + }, + { + "epoch": 47.04, + "grad_norm": 0.8041110634803772, + "learning_rate": 2.64906e-05, + "loss": 1.5061376953125, + "step": 352800 + }, + { + "epoch": 47.053333333333335, + "grad_norm": 0.8193392753601074, + "learning_rate": 2.6483933333333332e-05, + "loss": 1.5078268432617188, + "step": 352900 + }, + { + "epoch": 47.06666666666667, + "grad_norm": 0.8413985371589661, + "learning_rate": 2.6477266666666668e-05, + "loss": 1.5114471435546875, + "step": 353000 + }, + { + "epoch": 47.08, + "grad_norm": 0.8073115348815918, + "learning_rate": 2.64706e-05, + "loss": 1.5135585021972657, + "step": 353100 + }, + { + "epoch": 47.093333333333334, + "grad_norm": 0.7779039740562439, + "learning_rate": 2.6463933333333336e-05, + "loss": 1.5116209411621093, + "step": 353200 + }, + { + "epoch": 47.10666666666667, + "grad_norm": 0.807697594165802, + "learning_rate": 2.6457266666666668e-05, + "loss": 1.517572479248047, + "step": 353300 + }, + { + "epoch": 47.12, + "grad_norm": 0.8400974869728088, + "learning_rate": 2.6450600000000004e-05, + "loss": 1.5178854370117187, + "step": 353400 + }, + { + "epoch": 47.13333333333333, + "grad_norm": 0.8194504976272583, + "learning_rate": 2.6443933333333336e-05, + "loss": 1.5146188354492187, + "step": 353500 + }, + { + "epoch": 47.14666666666667, + "grad_norm": 0.8018361926078796, + "learning_rate": 2.6437266666666665e-05, + "loss": 1.5214445495605469, + "step": 353600 + }, + { + "epoch": 47.16, + "grad_norm": 0.8167159557342529, + "learning_rate": 2.64306e-05, + "loss": 1.5156454467773437, + "step": 353700 + }, + { + "epoch": 47.17333333333333, + "grad_norm": 0.8039659857749939, + "learning_rate": 2.6423933333333333e-05, + "loss": 1.5151275634765624, + "step": 353800 + }, + { + "epoch": 47.18666666666667, + "grad_norm": 0.8017700910568237, + "learning_rate": 2.641726666666667e-05, + "loss": 1.5202009582519531, + "step": 353900 + }, + { + "epoch": 47.2, + "grad_norm": 0.7832367420196533, + "learning_rate": 2.64106e-05, + "loss": 1.519759521484375, + "step": 354000 + }, + { + "epoch": 47.21333333333333, + "grad_norm": 0.8337007761001587, + "learning_rate": 2.6403933333333337e-05, + "loss": 1.5221978759765624, + "step": 354100 + }, + { + "epoch": 47.22666666666667, + "grad_norm": 0.7870599031448364, + "learning_rate": 2.639726666666667e-05, + "loss": 1.523798065185547, + "step": 354200 + }, + { + "epoch": 47.24, + "grad_norm": 0.8411582708358765, + "learning_rate": 2.6390666666666668e-05, + "loss": 1.5253703308105468, + "step": 354300 + }, + { + "epoch": 47.25333333333333, + "grad_norm": 0.8832390308380127, + "learning_rate": 2.6384000000000004e-05, + "loss": 1.5262484741210938, + "step": 354400 + }, + { + "epoch": 47.266666666666666, + "grad_norm": 0.7941514253616333, + "learning_rate": 2.6377333333333336e-05, + "loss": 1.525479736328125, + "step": 354500 + }, + { + "epoch": 47.28, + "grad_norm": 0.7702394127845764, + "learning_rate": 2.6370666666666665e-05, + "loss": 1.5219073486328125, + "step": 354600 + }, + { + "epoch": 47.29333333333334, + "grad_norm": 0.8129458427429199, + "learning_rate": 2.6364e-05, + "loss": 1.5250271606445311, + "step": 354700 + }, + { + "epoch": 47.306666666666665, + "grad_norm": 0.8214989304542542, + "learning_rate": 2.6357333333333333e-05, + "loss": 1.5251333618164062, + "step": 354800 + }, + { + "epoch": 47.32, + "grad_norm": 0.7877672910690308, + "learning_rate": 2.6350666666666668e-05, + "loss": 1.5243698120117188, + "step": 354900 + }, + { + "epoch": 47.333333333333336, + "grad_norm": 0.8471348285675049, + "learning_rate": 2.6344e-05, + "loss": 1.5322015380859375, + "step": 355000 + }, + { + "epoch": 47.346666666666664, + "grad_norm": 0.8431065082550049, + "learning_rate": 2.6337333333333336e-05, + "loss": 1.530186767578125, + "step": 355100 + }, + { + "epoch": 47.36, + "grad_norm": 0.8179681897163391, + "learning_rate": 2.6330666666666672e-05, + "loss": 1.5326658630371093, + "step": 355200 + }, + { + "epoch": 47.373333333333335, + "grad_norm": 0.8299217820167542, + "learning_rate": 2.6323999999999997e-05, + "loss": 1.5337423706054687, + "step": 355300 + }, + { + "epoch": 47.38666666666666, + "grad_norm": 0.7992455363273621, + "learning_rate": 2.6317333333333333e-05, + "loss": 1.5334547424316407, + "step": 355400 + }, + { + "epoch": 47.4, + "grad_norm": 0.8198468089103699, + "learning_rate": 2.6310666666666665e-05, + "loss": 1.5330128479003906, + "step": 355500 + }, + { + "epoch": 47.413333333333334, + "grad_norm": 0.8227736353874207, + "learning_rate": 2.6304e-05, + "loss": 1.5363392639160156, + "step": 355600 + }, + { + "epoch": 47.42666666666667, + "grad_norm": 0.8037164807319641, + "learning_rate": 2.6297333333333337e-05, + "loss": 1.5415556335449219, + "step": 355700 + }, + { + "epoch": 47.44, + "grad_norm": 0.8218553066253662, + "learning_rate": 2.629066666666667e-05, + "loss": 1.536182861328125, + "step": 355800 + }, + { + "epoch": 47.45333333333333, + "grad_norm": 0.8205154538154602, + "learning_rate": 2.6284000000000004e-05, + "loss": 1.5415779113769532, + "step": 355900 + }, + { + "epoch": 47.46666666666667, + "grad_norm": 0.8422571420669556, + "learning_rate": 2.6277333333333337e-05, + "loss": 1.5379583740234375, + "step": 356000 + }, + { + "epoch": 47.48, + "grad_norm": 0.8234130144119263, + "learning_rate": 2.6270666666666666e-05, + "loss": 1.538638153076172, + "step": 356100 + }, + { + "epoch": 47.49333333333333, + "grad_norm": 0.8543081879615784, + "learning_rate": 2.6264e-05, + "loss": 1.5433369445800782, + "step": 356200 + }, + { + "epoch": 47.50666666666667, + "grad_norm": 0.8039753437042236, + "learning_rate": 2.6257399999999997e-05, + "loss": 1.5409135437011718, + "step": 356300 + }, + { + "epoch": 47.52, + "grad_norm": 0.807433545589447, + "learning_rate": 2.6250733333333333e-05, + "loss": 1.538723907470703, + "step": 356400 + }, + { + "epoch": 47.53333333333333, + "grad_norm": 0.829760730266571, + "learning_rate": 2.6244066666666668e-05, + "loss": 1.5394581604003905, + "step": 356500 + }, + { + "epoch": 47.54666666666667, + "grad_norm": 0.83366858959198, + "learning_rate": 2.62374e-05, + "loss": 1.545363311767578, + "step": 356600 + }, + { + "epoch": 47.56, + "grad_norm": 0.8441088795661926, + "learning_rate": 2.6230733333333336e-05, + "loss": 1.5482498168945313, + "step": 356700 + }, + { + "epoch": 47.57333333333333, + "grad_norm": 0.8056532740592957, + "learning_rate": 2.622406666666667e-05, + "loss": 1.5447674560546876, + "step": 356800 + }, + { + "epoch": 47.586666666666666, + "grad_norm": 0.8894994258880615, + "learning_rate": 2.6217400000000004e-05, + "loss": 1.5502810668945313, + "step": 356900 + }, + { + "epoch": 47.6, + "grad_norm": 0.8194480538368225, + "learning_rate": 2.6210733333333336e-05, + "loss": 1.5432069396972656, + "step": 357000 + }, + { + "epoch": 47.61333333333333, + "grad_norm": 0.8140724897384644, + "learning_rate": 2.6204066666666665e-05, + "loss": 1.5478276062011718, + "step": 357100 + }, + { + "epoch": 47.626666666666665, + "grad_norm": 0.8195116519927979, + "learning_rate": 2.61974e-05, + "loss": 1.544815673828125, + "step": 357200 + }, + { + "epoch": 47.64, + "grad_norm": 0.8061419725418091, + "learning_rate": 2.6190733333333333e-05, + "loss": 1.5499363708496094, + "step": 357300 + }, + { + "epoch": 47.653333333333336, + "grad_norm": 0.8833538293838501, + "learning_rate": 2.618406666666667e-05, + "loss": 1.5492486572265625, + "step": 357400 + }, + { + "epoch": 47.666666666666664, + "grad_norm": 0.817891001701355, + "learning_rate": 2.61774e-05, + "loss": 1.5491177368164062, + "step": 357500 + }, + { + "epoch": 47.68, + "grad_norm": 0.8547759652137756, + "learning_rate": 2.6170733333333337e-05, + "loss": 1.5468995666503906, + "step": 357600 + }, + { + "epoch": 47.693333333333335, + "grad_norm": 0.8713561296463013, + "learning_rate": 2.616406666666667e-05, + "loss": 1.5532452392578124, + "step": 357700 + }, + { + "epoch": 47.70666666666666, + "grad_norm": 0.8616589307785034, + "learning_rate": 2.6157399999999998e-05, + "loss": 1.5543402099609376, + "step": 357800 + }, + { + "epoch": 47.72, + "grad_norm": 0.8249148726463318, + "learning_rate": 2.6150733333333334e-05, + "loss": 1.5558518981933593, + "step": 357900 + }, + { + "epoch": 47.733333333333334, + "grad_norm": 0.8403042554855347, + "learning_rate": 2.6144066666666666e-05, + "loss": 1.55149169921875, + "step": 358000 + }, + { + "epoch": 47.74666666666667, + "grad_norm": 0.8018736839294434, + "learning_rate": 2.61374e-05, + "loss": 1.5553018188476562, + "step": 358100 + }, + { + "epoch": 47.76, + "grad_norm": 0.8302009701728821, + "learning_rate": 2.6130733333333334e-05, + "loss": 1.5563357543945313, + "step": 358200 + }, + { + "epoch": 47.77333333333333, + "grad_norm": 0.8318833708763123, + "learning_rate": 2.6124133333333333e-05, + "loss": 1.5607223510742188, + "step": 358300 + }, + { + "epoch": 47.78666666666667, + "grad_norm": 0.8090811967849731, + "learning_rate": 2.611746666666667e-05, + "loss": 1.5559880065917968, + "step": 358400 + }, + { + "epoch": 47.8, + "grad_norm": 0.868520975112915, + "learning_rate": 2.61108e-05, + "loss": 1.55770751953125, + "step": 358500 + }, + { + "epoch": 47.81333333333333, + "grad_norm": 0.8197623491287231, + "learning_rate": 2.6104133333333336e-05, + "loss": 1.558822021484375, + "step": 358600 + }, + { + "epoch": 47.82666666666667, + "grad_norm": 0.8163467645645142, + "learning_rate": 2.609746666666667e-05, + "loss": 1.557568359375, + "step": 358700 + }, + { + "epoch": 47.84, + "grad_norm": 0.7725224494934082, + "learning_rate": 2.6090799999999998e-05, + "loss": 1.5549420166015624, + "step": 358800 + }, + { + "epoch": 47.85333333333333, + "grad_norm": 0.8405675292015076, + "learning_rate": 2.6084133333333333e-05, + "loss": 1.5608193969726563, + "step": 358900 + }, + { + "epoch": 47.86666666666667, + "grad_norm": 0.8494597673416138, + "learning_rate": 2.6077466666666666e-05, + "loss": 1.5580606079101562, + "step": 359000 + }, + { + "epoch": 47.88, + "grad_norm": 0.8636260032653809, + "learning_rate": 2.60708e-05, + "loss": 1.5591242980957032, + "step": 359100 + }, + { + "epoch": 47.89333333333333, + "grad_norm": 0.8216843008995056, + "learning_rate": 2.6064133333333333e-05, + "loss": 1.5577593994140626, + "step": 359200 + }, + { + "epoch": 47.906666666666666, + "grad_norm": 0.8437257409095764, + "learning_rate": 2.605746666666667e-05, + "loss": 1.5638467407226562, + "step": 359300 + }, + { + "epoch": 47.92, + "grad_norm": 0.8391488790512085, + "learning_rate": 2.60508e-05, + "loss": 1.559764404296875, + "step": 359400 + }, + { + "epoch": 47.93333333333333, + "grad_norm": 0.8953635096549988, + "learning_rate": 2.6044133333333337e-05, + "loss": 1.5598916625976562, + "step": 359500 + }, + { + "epoch": 47.946666666666665, + "grad_norm": 0.8865219950675964, + "learning_rate": 2.6037466666666666e-05, + "loss": 1.56525390625, + "step": 359600 + }, + { + "epoch": 47.96, + "grad_norm": 0.8346757888793945, + "learning_rate": 2.6030799999999998e-05, + "loss": 1.5669119262695312, + "step": 359700 + }, + { + "epoch": 47.973333333333336, + "grad_norm": 0.7953504920005798, + "learning_rate": 2.6024133333333334e-05, + "loss": 1.5616644287109376, + "step": 359800 + }, + { + "epoch": 47.986666666666665, + "grad_norm": 0.8168767094612122, + "learning_rate": 2.6017466666666666e-05, + "loss": 1.5720118713378906, + "step": 359900 + }, + { + "epoch": 48.0, + "grad_norm": 0.874919593334198, + "learning_rate": 2.6010800000000002e-05, + "loss": 1.5705772399902345, + "step": 360000 + }, + { + "epoch": 48.013333333333335, + "grad_norm": 0.8366668820381165, + "learning_rate": 2.6004133333333337e-05, + "loss": 1.4951602172851564, + "step": 360100 + }, + { + "epoch": 48.026666666666664, + "grad_norm": 0.8061423897743225, + "learning_rate": 2.599746666666667e-05, + "loss": 1.49366455078125, + "step": 360200 + }, + { + "epoch": 48.04, + "grad_norm": 0.8062233328819275, + "learning_rate": 2.59908e-05, + "loss": 1.4919319152832031, + "step": 360300 + }, + { + "epoch": 48.053333333333335, + "grad_norm": 0.7820529341697693, + "learning_rate": 2.5984200000000004e-05, + "loss": 1.4933494567871093, + "step": 360400 + }, + { + "epoch": 48.06666666666667, + "grad_norm": 0.7874485850334167, + "learning_rate": 2.5977533333333337e-05, + "loss": 1.4942898559570312, + "step": 360500 + }, + { + "epoch": 48.08, + "grad_norm": 0.8219860792160034, + "learning_rate": 2.5970866666666666e-05, + "loss": 1.4994293212890626, + "step": 360600 + }, + { + "epoch": 48.093333333333334, + "grad_norm": 0.806149959564209, + "learning_rate": 2.59642e-05, + "loss": 1.5014764404296874, + "step": 360700 + }, + { + "epoch": 48.10666666666667, + "grad_norm": 0.8026537895202637, + "learning_rate": 2.5957533333333333e-05, + "loss": 1.5005511474609374, + "step": 360800 + }, + { + "epoch": 48.12, + "grad_norm": 0.803657591342926, + "learning_rate": 2.595086666666667e-05, + "loss": 1.500188446044922, + "step": 360900 + }, + { + "epoch": 48.13333333333333, + "grad_norm": 0.8763360977172852, + "learning_rate": 2.59442e-05, + "loss": 1.5009043884277344, + "step": 361000 + }, + { + "epoch": 48.14666666666667, + "grad_norm": 0.7982499003410339, + "learning_rate": 2.5937533333333337e-05, + "loss": 1.5045884704589845, + "step": 361100 + }, + { + "epoch": 48.16, + "grad_norm": 0.8596701622009277, + "learning_rate": 2.593086666666667e-05, + "loss": 1.5040025329589843, + "step": 361200 + }, + { + "epoch": 48.17333333333333, + "grad_norm": 0.8158277869224548, + "learning_rate": 2.5924199999999998e-05, + "loss": 1.5009864807128905, + "step": 361300 + }, + { + "epoch": 48.18666666666667, + "grad_norm": 0.8603137135505676, + "learning_rate": 2.5917533333333334e-05, + "loss": 1.5051220703125, + "step": 361400 + }, + { + "epoch": 48.2, + "grad_norm": 0.8475449085235596, + "learning_rate": 2.5910866666666666e-05, + "loss": 1.5040087890625, + "step": 361500 + }, + { + "epoch": 48.21333333333333, + "grad_norm": 0.8340404629707336, + "learning_rate": 2.5904200000000002e-05, + "loss": 1.5033770751953126, + "step": 361600 + }, + { + "epoch": 48.22666666666667, + "grad_norm": 0.8179289102554321, + "learning_rate": 2.5897533333333334e-05, + "loss": 1.5125186157226562, + "step": 361700 + }, + { + "epoch": 48.24, + "grad_norm": 0.8329739570617676, + "learning_rate": 2.589086666666667e-05, + "loss": 1.5081419372558593, + "step": 361800 + }, + { + "epoch": 48.25333333333333, + "grad_norm": 0.8692247271537781, + "learning_rate": 2.5884200000000002e-05, + "loss": 1.509202880859375, + "step": 361900 + }, + { + "epoch": 48.266666666666666, + "grad_norm": 0.8539946675300598, + "learning_rate": 2.5877533333333338e-05, + "loss": 1.505505828857422, + "step": 362000 + }, + { + "epoch": 48.28, + "grad_norm": 0.8623639345169067, + "learning_rate": 2.5870866666666667e-05, + "loss": 1.5125834655761718, + "step": 362100 + }, + { + "epoch": 48.29333333333334, + "grad_norm": 0.8657389283180237, + "learning_rate": 2.58642e-05, + "loss": 1.517348175048828, + "step": 362200 + }, + { + "epoch": 48.306666666666665, + "grad_norm": 0.8074204921722412, + "learning_rate": 2.5857533333333334e-05, + "loss": 1.5124046325683593, + "step": 362300 + }, + { + "epoch": 48.32, + "grad_norm": 0.8119105100631714, + "learning_rate": 2.5850933333333334e-05, + "loss": 1.5156207275390625, + "step": 362400 + }, + { + "epoch": 48.333333333333336, + "grad_norm": 0.8001854419708252, + "learning_rate": 2.5844266666666666e-05, + "loss": 1.520142822265625, + "step": 362500 + }, + { + "epoch": 48.346666666666664, + "grad_norm": 0.8105164766311646, + "learning_rate": 2.58376e-05, + "loss": 1.51326904296875, + "step": 362600 + }, + { + "epoch": 48.36, + "grad_norm": 0.8771947026252747, + "learning_rate": 2.5830933333333334e-05, + "loss": 1.5151416015625, + "step": 362700 + }, + { + "epoch": 48.373333333333335, + "grad_norm": 0.8079180717468262, + "learning_rate": 2.582426666666667e-05, + "loss": 1.5162548828125, + "step": 362800 + }, + { + "epoch": 48.38666666666666, + "grad_norm": 0.8303863406181335, + "learning_rate": 2.58176e-05, + "loss": 1.517666015625, + "step": 362900 + }, + { + "epoch": 48.4, + "grad_norm": 0.8090680837631226, + "learning_rate": 2.5810933333333337e-05, + "loss": 1.5149562072753906, + "step": 363000 + }, + { + "epoch": 48.413333333333334, + "grad_norm": 0.8291407227516174, + "learning_rate": 2.5804266666666666e-05, + "loss": 1.5243867492675782, + "step": 363100 + }, + { + "epoch": 48.42666666666667, + "grad_norm": 0.8551901578903198, + "learning_rate": 2.57976e-05, + "loss": 1.5234576416015626, + "step": 363200 + }, + { + "epoch": 48.44, + "grad_norm": 0.8535791039466858, + "learning_rate": 2.5790933333333334e-05, + "loss": 1.52187744140625, + "step": 363300 + }, + { + "epoch": 48.45333333333333, + "grad_norm": 0.8479459881782532, + "learning_rate": 2.5784266666666666e-05, + "loss": 1.51526611328125, + "step": 363400 + }, + { + "epoch": 48.46666666666667, + "grad_norm": 0.7857949733734131, + "learning_rate": 2.5777600000000002e-05, + "loss": 1.5265869140625, + "step": 363500 + }, + { + "epoch": 48.48, + "grad_norm": 0.8698379397392273, + "learning_rate": 2.5770933333333334e-05, + "loss": 1.5276319885253906, + "step": 363600 + }, + { + "epoch": 48.49333333333333, + "grad_norm": 0.817887544631958, + "learning_rate": 2.576426666666667e-05, + "loss": 1.5276255798339844, + "step": 363700 + }, + { + "epoch": 48.50666666666667, + "grad_norm": 0.8234931826591492, + "learning_rate": 2.5757600000000006e-05, + "loss": 1.5249510192871094, + "step": 363800 + }, + { + "epoch": 48.52, + "grad_norm": 0.8288886547088623, + "learning_rate": 2.575093333333333e-05, + "loss": 1.528853759765625, + "step": 363900 + }, + { + "epoch": 48.53333333333333, + "grad_norm": 0.8396264314651489, + "learning_rate": 2.5744266666666667e-05, + "loss": 1.5318849182128906, + "step": 364000 + }, + { + "epoch": 48.54666666666667, + "grad_norm": 0.824802041053772, + "learning_rate": 2.57376e-05, + "loss": 1.5319622802734374, + "step": 364100 + }, + { + "epoch": 48.56, + "grad_norm": 0.8573387861251831, + "learning_rate": 2.5730933333333335e-05, + "loss": 1.5280552673339844, + "step": 364200 + }, + { + "epoch": 48.57333333333333, + "grad_norm": 0.836539089679718, + "learning_rate": 2.572426666666667e-05, + "loss": 1.5268043518066405, + "step": 364300 + }, + { + "epoch": 48.586666666666666, + "grad_norm": 0.885406494140625, + "learning_rate": 2.5717666666666666e-05, + "loss": 1.5300917053222656, + "step": 364400 + }, + { + "epoch": 48.6, + "grad_norm": 0.8176631331443787, + "learning_rate": 2.5711e-05, + "loss": 1.5323922729492188, + "step": 364500 + }, + { + "epoch": 48.61333333333333, + "grad_norm": 0.8315919637680054, + "learning_rate": 2.5704333333333337e-05, + "loss": 1.53243408203125, + "step": 364600 + }, + { + "epoch": 48.626666666666665, + "grad_norm": 0.822803258895874, + "learning_rate": 2.569766666666667e-05, + "loss": 1.5390171813964844, + "step": 364700 + }, + { + "epoch": 48.64, + "grad_norm": 0.8383143544197083, + "learning_rate": 2.5691000000000005e-05, + "loss": 1.5334788513183595, + "step": 364800 + }, + { + "epoch": 48.653333333333336, + "grad_norm": 0.8430681824684143, + "learning_rate": 2.5684333333333334e-05, + "loss": 1.5373228454589845, + "step": 364900 + }, + { + "epoch": 48.666666666666664, + "grad_norm": 0.861682653427124, + "learning_rate": 2.5677666666666666e-05, + "loss": 1.536941680908203, + "step": 365000 + }, + { + "epoch": 48.68, + "grad_norm": 0.8224048018455505, + "learning_rate": 2.5671000000000002e-05, + "loss": 1.5357330322265625, + "step": 365100 + }, + { + "epoch": 48.693333333333335, + "grad_norm": 0.8081045150756836, + "learning_rate": 2.5664333333333334e-05, + "loss": 1.5333282470703125, + "step": 365200 + }, + { + "epoch": 48.70666666666666, + "grad_norm": 0.8442122340202332, + "learning_rate": 2.565766666666667e-05, + "loss": 1.536866455078125, + "step": 365300 + }, + { + "epoch": 48.72, + "grad_norm": 0.822340190410614, + "learning_rate": 2.5651000000000002e-05, + "loss": 1.5430012512207032, + "step": 365400 + }, + { + "epoch": 48.733333333333334, + "grad_norm": 0.8340216875076294, + "learning_rate": 2.5644333333333338e-05, + "loss": 1.5356080627441406, + "step": 365500 + }, + { + "epoch": 48.74666666666667, + "grad_norm": 0.8153738975524902, + "learning_rate": 2.5637666666666667e-05, + "loss": 1.5389717102050782, + "step": 365600 + }, + { + "epoch": 48.76, + "grad_norm": 0.8527360558509827, + "learning_rate": 2.5631e-05, + "loss": 1.5421336364746094, + "step": 365700 + }, + { + "epoch": 48.77333333333333, + "grad_norm": 0.8141431212425232, + "learning_rate": 2.5624333333333335e-05, + "loss": 1.537602081298828, + "step": 365800 + }, + { + "epoch": 48.78666666666667, + "grad_norm": 0.8881790041923523, + "learning_rate": 2.5617666666666667e-05, + "loss": 1.5385264587402343, + "step": 365900 + }, + { + "epoch": 48.8, + "grad_norm": 0.8357459902763367, + "learning_rate": 2.5611000000000003e-05, + "loss": 1.5437425231933595, + "step": 366000 + }, + { + "epoch": 48.81333333333333, + "grad_norm": 0.828778088092804, + "learning_rate": 2.5604333333333335e-05, + "loss": 1.540460968017578, + "step": 366100 + }, + { + "epoch": 48.82666666666667, + "grad_norm": 0.8588747382164001, + "learning_rate": 2.559766666666667e-05, + "loss": 1.545701446533203, + "step": 366200 + }, + { + "epoch": 48.84, + "grad_norm": 0.8609989285469055, + "learning_rate": 2.5591000000000003e-05, + "loss": 1.5466421508789063, + "step": 366300 + }, + { + "epoch": 48.85333333333333, + "grad_norm": 0.7956804633140564, + "learning_rate": 2.5584400000000002e-05, + "loss": 1.54723388671875, + "step": 366400 + }, + { + "epoch": 48.86666666666667, + "grad_norm": 0.8610774278640747, + "learning_rate": 2.5577733333333338e-05, + "loss": 1.5450926208496094, + "step": 366500 + }, + { + "epoch": 48.88, + "grad_norm": 0.8780190944671631, + "learning_rate": 2.5571066666666666e-05, + "loss": 1.547249298095703, + "step": 366600 + }, + { + "epoch": 48.89333333333333, + "grad_norm": 0.8510201573371887, + "learning_rate": 2.55644e-05, + "loss": 1.5473715209960937, + "step": 366700 + }, + { + "epoch": 48.906666666666666, + "grad_norm": 0.8271015882492065, + "learning_rate": 2.5557733333333334e-05, + "loss": 1.5514225769042969, + "step": 366800 + }, + { + "epoch": 48.92, + "grad_norm": 0.8673347234725952, + "learning_rate": 2.5551066666666667e-05, + "loss": 1.5482473754882813, + "step": 366900 + }, + { + "epoch": 48.93333333333333, + "grad_norm": 0.9040217995643616, + "learning_rate": 2.5544400000000002e-05, + "loss": 1.5476766967773437, + "step": 367000 + }, + { + "epoch": 48.946666666666665, + "grad_norm": 0.8571226000785828, + "learning_rate": 2.5537733333333335e-05, + "loss": 1.5490121459960937, + "step": 367100 + }, + { + "epoch": 48.96, + "grad_norm": 0.8800345659255981, + "learning_rate": 2.553106666666667e-05, + "loss": 1.5518528747558593, + "step": 367200 + }, + { + "epoch": 48.973333333333336, + "grad_norm": 0.8253681659698486, + "learning_rate": 2.5524400000000002e-05, + "loss": 1.5538876342773438, + "step": 367300 + }, + { + "epoch": 48.986666666666665, + "grad_norm": 0.8854805827140808, + "learning_rate": 2.551773333333333e-05, + "loss": 1.5536569213867188, + "step": 367400 + }, + { + "epoch": 49.0, + "grad_norm": 0.8323401808738708, + "learning_rate": 2.5511066666666667e-05, + "loss": 1.5535047912597657, + "step": 367500 + }, + { + "epoch": 49.013333333333335, + "grad_norm": 0.7903602719306946, + "learning_rate": 2.55044e-05, + "loss": 1.478652801513672, + "step": 367600 + }, + { + "epoch": 49.026666666666664, + "grad_norm": 0.7994419932365417, + "learning_rate": 2.5497733333333335e-05, + "loss": 1.4753775024414062, + "step": 367700 + }, + { + "epoch": 49.04, + "grad_norm": 0.8322893381118774, + "learning_rate": 2.5491066666666667e-05, + "loss": 1.47673583984375, + "step": 367800 + }, + { + "epoch": 49.053333333333335, + "grad_norm": 0.8257775902748108, + "learning_rate": 2.5484400000000003e-05, + "loss": 1.4793165588378907, + "step": 367900 + }, + { + "epoch": 49.06666666666667, + "grad_norm": 0.8123628497123718, + "learning_rate": 2.5477733333333335e-05, + "loss": 1.4788943481445314, + "step": 368000 + }, + { + "epoch": 49.08, + "grad_norm": 0.849601149559021, + "learning_rate": 2.5471066666666664e-05, + "loss": 1.4821792602539063, + "step": 368100 + }, + { + "epoch": 49.093333333333334, + "grad_norm": 0.8008491396903992, + "learning_rate": 2.54644e-05, + "loss": 1.4849171447753906, + "step": 368200 + }, + { + "epoch": 49.10666666666667, + "grad_norm": 0.8216526508331299, + "learning_rate": 2.5457733333333332e-05, + "loss": 1.4855982971191406, + "step": 368300 + }, + { + "epoch": 49.12, + "grad_norm": 0.8552011847496033, + "learning_rate": 2.5451066666666668e-05, + "loss": 1.4879904174804688, + "step": 368400 + }, + { + "epoch": 49.13333333333333, + "grad_norm": 0.7977767586708069, + "learning_rate": 2.5444466666666667e-05, + "loss": 1.4883206176757813, + "step": 368500 + }, + { + "epoch": 49.14666666666667, + "grad_norm": 0.8241558074951172, + "learning_rate": 2.54378e-05, + "loss": 1.4861485290527343, + "step": 368600 + }, + { + "epoch": 49.16, + "grad_norm": 0.8472109436988831, + "learning_rate": 2.5431133333333335e-05, + "loss": 1.4872750854492187, + "step": 368700 + }, + { + "epoch": 49.17333333333333, + "grad_norm": 0.8214472532272339, + "learning_rate": 2.542446666666667e-05, + "loss": 1.487729034423828, + "step": 368800 + }, + { + "epoch": 49.18666666666667, + "grad_norm": 0.8378106355667114, + "learning_rate": 2.5417800000000003e-05, + "loss": 1.48987060546875, + "step": 368900 + }, + { + "epoch": 49.2, + "grad_norm": 0.7991240620613098, + "learning_rate": 2.5411133333333338e-05, + "loss": 1.492364501953125, + "step": 369000 + }, + { + "epoch": 49.21333333333333, + "grad_norm": 0.8102217316627502, + "learning_rate": 2.5404466666666664e-05, + "loss": 1.4964356994628907, + "step": 369100 + }, + { + "epoch": 49.22666666666667, + "grad_norm": 0.7787119150161743, + "learning_rate": 2.53978e-05, + "loss": 1.4987217712402343, + "step": 369200 + }, + { + "epoch": 49.24, + "grad_norm": 0.8689252138137817, + "learning_rate": 2.5391133333333335e-05, + "loss": 1.497693328857422, + "step": 369300 + }, + { + "epoch": 49.25333333333333, + "grad_norm": 0.8548557162284851, + "learning_rate": 2.5384466666666667e-05, + "loss": 1.4954206848144531, + "step": 369400 + }, + { + "epoch": 49.266666666666666, + "grad_norm": 0.8644983172416687, + "learning_rate": 2.5377800000000003e-05, + "loss": 1.4990921020507812, + "step": 369500 + }, + { + "epoch": 49.28, + "grad_norm": 0.8004375696182251, + "learning_rate": 2.5371133333333335e-05, + "loss": 1.4989527893066406, + "step": 369600 + }, + { + "epoch": 49.29333333333334, + "grad_norm": 0.811881959438324, + "learning_rate": 2.536446666666667e-05, + "loss": 1.4984857177734374, + "step": 369700 + }, + { + "epoch": 49.306666666666665, + "grad_norm": 0.8403072953224182, + "learning_rate": 2.5357800000000003e-05, + "loss": 1.4975395202636719, + "step": 369800 + }, + { + "epoch": 49.32, + "grad_norm": 0.8402568697929382, + "learning_rate": 2.5351133333333332e-05, + "loss": 1.4993600463867187, + "step": 369900 + }, + { + "epoch": 49.333333333333336, + "grad_norm": 0.8742866516113281, + "learning_rate": 2.5344466666666668e-05, + "loss": 1.504093475341797, + "step": 370000 + }, + { + "epoch": 49.346666666666664, + "grad_norm": 0.8136636018753052, + "learning_rate": 2.53378e-05, + "loss": 1.5030204772949218, + "step": 370100 + }, + { + "epoch": 49.36, + "grad_norm": 0.846967339515686, + "learning_rate": 2.5331133333333336e-05, + "loss": 1.5024598693847657, + "step": 370200 + }, + { + "epoch": 49.373333333333335, + "grad_norm": 0.784156858921051, + "learning_rate": 2.5324466666666668e-05, + "loss": 1.5066024780273437, + "step": 370300 + }, + { + "epoch": 49.38666666666666, + "grad_norm": 0.8611376881599426, + "learning_rate": 2.5317800000000003e-05, + "loss": 1.5030882263183594, + "step": 370400 + }, + { + "epoch": 49.4, + "grad_norm": 0.8456284403800964, + "learning_rate": 2.5311200000000003e-05, + "loss": 1.5110250854492187, + "step": 370500 + }, + { + "epoch": 49.413333333333334, + "grad_norm": 0.8738457560539246, + "learning_rate": 2.5304533333333335e-05, + "loss": 1.5068327331542968, + "step": 370600 + }, + { + "epoch": 49.42666666666667, + "grad_norm": 0.81916743516922, + "learning_rate": 2.529786666666667e-05, + "loss": 1.5101161193847656, + "step": 370700 + }, + { + "epoch": 49.44, + "grad_norm": 0.8413360714912415, + "learning_rate": 2.5291200000000003e-05, + "loss": 1.509934844970703, + "step": 370800 + }, + { + "epoch": 49.45333333333333, + "grad_norm": 0.8540857434272766, + "learning_rate": 2.528453333333333e-05, + "loss": 1.5118212890625, + "step": 370900 + }, + { + "epoch": 49.46666666666667, + "grad_norm": 0.8651217222213745, + "learning_rate": 2.5277866666666667e-05, + "loss": 1.5078504943847657, + "step": 371000 + }, + { + "epoch": 49.48, + "grad_norm": 0.8294056057929993, + "learning_rate": 2.52712e-05, + "loss": 1.5105992126464844, + "step": 371100 + }, + { + "epoch": 49.49333333333333, + "grad_norm": 0.8947125673294067, + "learning_rate": 2.5264533333333335e-05, + "loss": 1.5177714538574218, + "step": 371200 + }, + { + "epoch": 49.50666666666667, + "grad_norm": 0.8449296951293945, + "learning_rate": 2.5257866666666667e-05, + "loss": 1.5125474548339843, + "step": 371300 + }, + { + "epoch": 49.52, + "grad_norm": 0.849795401096344, + "learning_rate": 2.5251200000000003e-05, + "loss": 1.5124183654785157, + "step": 371400 + }, + { + "epoch": 49.53333333333333, + "grad_norm": 0.8208550810813904, + "learning_rate": 2.5244533333333335e-05, + "loss": 1.5178236389160156, + "step": 371500 + }, + { + "epoch": 49.54666666666667, + "grad_norm": 0.8659239411354065, + "learning_rate": 2.5237866666666664e-05, + "loss": 1.51171875, + "step": 371600 + }, + { + "epoch": 49.56, + "grad_norm": 0.8339199423789978, + "learning_rate": 2.52312e-05, + "loss": 1.5164427185058593, + "step": 371700 + }, + { + "epoch": 49.57333333333333, + "grad_norm": 0.817791759967804, + "learning_rate": 2.5224533333333332e-05, + "loss": 1.5198959350585937, + "step": 371800 + }, + { + "epoch": 49.586666666666666, + "grad_norm": 0.8938850164413452, + "learning_rate": 2.5217866666666668e-05, + "loss": 1.5189447021484375, + "step": 371900 + }, + { + "epoch": 49.6, + "grad_norm": 0.8634279370307922, + "learning_rate": 2.52112e-05, + "loss": 1.5181257629394531, + "step": 372000 + }, + { + "epoch": 49.61333333333333, + "grad_norm": 0.8766525983810425, + "learning_rate": 2.5204533333333336e-05, + "loss": 1.5201939392089843, + "step": 372100 + }, + { + "epoch": 49.626666666666665, + "grad_norm": 0.8618395328521729, + "learning_rate": 2.5197866666666668e-05, + "loss": 1.5215455627441405, + "step": 372200 + }, + { + "epoch": 49.64, + "grad_norm": 0.8641324043273926, + "learning_rate": 2.5191200000000004e-05, + "loss": 1.5232699584960938, + "step": 372300 + }, + { + "epoch": 49.653333333333336, + "grad_norm": 0.8349089026451111, + "learning_rate": 2.5184533333333333e-05, + "loss": 1.5240145874023439, + "step": 372400 + }, + { + "epoch": 49.666666666666664, + "grad_norm": 0.8367394804954529, + "learning_rate": 2.5177933333333335e-05, + "loss": 1.520089111328125, + "step": 372500 + }, + { + "epoch": 49.68, + "grad_norm": 0.8456884026527405, + "learning_rate": 2.5171266666666664e-05, + "loss": 1.5240330505371094, + "step": 372600 + }, + { + "epoch": 49.693333333333335, + "grad_norm": 0.8970924615859985, + "learning_rate": 2.51646e-05, + "loss": 1.5220384216308593, + "step": 372700 + }, + { + "epoch": 49.70666666666666, + "grad_norm": 0.8440273404121399, + "learning_rate": 2.5157933333333332e-05, + "loss": 1.5244894409179688, + "step": 372800 + }, + { + "epoch": 49.72, + "grad_norm": 0.8721365332603455, + "learning_rate": 2.5151266666666668e-05, + "loss": 1.5227665710449219, + "step": 372900 + }, + { + "epoch": 49.733333333333334, + "grad_norm": 0.9237975478172302, + "learning_rate": 2.5144600000000003e-05, + "loss": 1.5297914123535157, + "step": 373000 + }, + { + "epoch": 49.74666666666667, + "grad_norm": 0.8599965572357178, + "learning_rate": 2.5137933333333335e-05, + "loss": 1.5247174072265626, + "step": 373100 + }, + { + "epoch": 49.76, + "grad_norm": 0.8520407676696777, + "learning_rate": 2.513126666666667e-05, + "loss": 1.5293832397460938, + "step": 373200 + }, + { + "epoch": 49.77333333333333, + "grad_norm": 0.8867288827896118, + "learning_rate": 2.5124600000000003e-05, + "loss": 1.5261709594726562, + "step": 373300 + }, + { + "epoch": 49.78666666666667, + "grad_norm": 0.8335996866226196, + "learning_rate": 2.5117933333333332e-05, + "loss": 1.5297763061523437, + "step": 373400 + }, + { + "epoch": 49.8, + "grad_norm": 0.8595085144042969, + "learning_rate": 2.5111266666666668e-05, + "loss": 1.5318873596191407, + "step": 373500 + }, + { + "epoch": 49.81333333333333, + "grad_norm": 0.8604120016098022, + "learning_rate": 2.51046e-05, + "loss": 1.5329582214355468, + "step": 373600 + }, + { + "epoch": 49.82666666666667, + "grad_norm": 0.8619903922080994, + "learning_rate": 2.5097933333333336e-05, + "loss": 1.5340994262695313, + "step": 373700 + }, + { + "epoch": 49.84, + "grad_norm": 0.8415823578834534, + "learning_rate": 2.5091266666666668e-05, + "loss": 1.5291461181640624, + "step": 373800 + }, + { + "epoch": 49.85333333333333, + "grad_norm": 0.8430103063583374, + "learning_rate": 2.5084600000000004e-05, + "loss": 1.5344522094726563, + "step": 373900 + }, + { + "epoch": 49.86666666666667, + "grad_norm": 0.8401354551315308, + "learning_rate": 2.5077933333333336e-05, + "loss": 1.5318260192871094, + "step": 374000 + }, + { + "epoch": 49.88, + "grad_norm": 0.8805033564567566, + "learning_rate": 2.5071266666666665e-05, + "loss": 1.5331027221679687, + "step": 374100 + }, + { + "epoch": 49.89333333333333, + "grad_norm": 0.8586838245391846, + "learning_rate": 2.50646e-05, + "loss": 1.5350416564941407, + "step": 374200 + }, + { + "epoch": 49.906666666666666, + "grad_norm": 0.8289893269538879, + "learning_rate": 2.5057933333333333e-05, + "loss": 1.531967315673828, + "step": 374300 + }, + { + "epoch": 49.92, + "grad_norm": 0.8118442893028259, + "learning_rate": 2.505126666666667e-05, + "loss": 1.5373696899414062, + "step": 374400 + }, + { + "epoch": 49.93333333333333, + "grad_norm": 0.8152410984039307, + "learning_rate": 2.5044666666666668e-05, + "loss": 1.5317294311523437, + "step": 374500 + }, + { + "epoch": 49.946666666666665, + "grad_norm": 0.8541066646575928, + "learning_rate": 2.5038e-05, + "loss": 1.5318400573730468, + "step": 374600 + }, + { + "epoch": 49.96, + "grad_norm": 0.8401637673377991, + "learning_rate": 2.5031333333333335e-05, + "loss": 1.53946044921875, + "step": 374700 + }, + { + "epoch": 49.973333333333336, + "grad_norm": 0.8769694566726685, + "learning_rate": 2.5024666666666668e-05, + "loss": 1.5422596740722656, + "step": 374800 + }, + { + "epoch": 49.986666666666665, + "grad_norm": 0.8622532486915588, + "learning_rate": 2.5018000000000003e-05, + "loss": 1.535623779296875, + "step": 374900 + }, + { + "epoch": 50.0, + "grad_norm": 0.8721447587013245, + "learning_rate": 2.5011333333333336e-05, + "loss": 1.5350186157226562, + "step": 375000 + }, + { + "epoch": 50.013333333333335, + "grad_norm": 0.8176959753036499, + "learning_rate": 2.5004666666666665e-05, + "loss": 1.466029052734375, + "step": 375100 + }, + { + "epoch": 50.026666666666664, + "grad_norm": 0.8403975963592529, + "learning_rate": 2.4998000000000004e-05, + "loss": 1.4674476623535155, + "step": 375200 + }, + { + "epoch": 50.04, + "grad_norm": 0.7836979031562805, + "learning_rate": 2.4991333333333332e-05, + "loss": 1.4652630615234374, + "step": 375300 + }, + { + "epoch": 50.053333333333335, + "grad_norm": 0.8018586039543152, + "learning_rate": 2.4984666666666668e-05, + "loss": 1.4712281799316407, + "step": 375400 + }, + { + "epoch": 50.06666666666667, + "grad_norm": 0.8064463138580322, + "learning_rate": 2.4978e-05, + "loss": 1.4708700561523438, + "step": 375500 + }, + { + "epoch": 50.08, + "grad_norm": 0.8261614441871643, + "learning_rate": 2.4971333333333336e-05, + "loss": 1.4716073608398437, + "step": 375600 + }, + { + "epoch": 50.093333333333334, + "grad_norm": 0.837766706943512, + "learning_rate": 2.496466666666667e-05, + "loss": 1.4701448059082032, + "step": 375700 + }, + { + "epoch": 50.10666666666667, + "grad_norm": 0.8290911912918091, + "learning_rate": 2.4958e-05, + "loss": 1.4736390686035157, + "step": 375800 + }, + { + "epoch": 50.12, + "grad_norm": 0.8385511636734009, + "learning_rate": 2.4951333333333336e-05, + "loss": 1.47410888671875, + "step": 375900 + }, + { + "epoch": 50.13333333333333, + "grad_norm": 0.8306918144226074, + "learning_rate": 2.494466666666667e-05, + "loss": 1.473253173828125, + "step": 376000 + }, + { + "epoch": 50.14666666666667, + "grad_norm": 0.8213056325912476, + "learning_rate": 2.4938e-05, + "loss": 1.4761256408691406, + "step": 376100 + }, + { + "epoch": 50.16, + "grad_norm": 0.8195951581001282, + "learning_rate": 2.4931333333333333e-05, + "loss": 1.4738999938964843, + "step": 376200 + }, + { + "epoch": 50.17333333333333, + "grad_norm": 0.8188632130622864, + "learning_rate": 2.492466666666667e-05, + "loss": 1.474258270263672, + "step": 376300 + }, + { + "epoch": 50.18666666666667, + "grad_norm": 0.8272870182991028, + "learning_rate": 2.4918e-05, + "loss": 1.4804847717285157, + "step": 376400 + }, + { + "epoch": 50.2, + "grad_norm": 0.8472500443458557, + "learning_rate": 2.4911333333333333e-05, + "loss": 1.4830419921875, + "step": 376500 + }, + { + "epoch": 50.21333333333333, + "grad_norm": 0.8540857434272766, + "learning_rate": 2.4904733333333336e-05, + "loss": 1.4762397766113282, + "step": 376600 + }, + { + "epoch": 50.22666666666667, + "grad_norm": 0.8313518762588501, + "learning_rate": 2.4898066666666668e-05, + "loss": 1.488265838623047, + "step": 376700 + }, + { + "epoch": 50.24, + "grad_norm": 0.8233117461204529, + "learning_rate": 2.48914e-05, + "loss": 1.4829058837890625, + "step": 376800 + }, + { + "epoch": 50.25333333333333, + "grad_norm": 0.779459536075592, + "learning_rate": 2.4884733333333336e-05, + "loss": 1.4825271606445312, + "step": 376900 + }, + { + "epoch": 50.266666666666666, + "grad_norm": 0.8867989182472229, + "learning_rate": 2.4878066666666668e-05, + "loss": 1.4807273864746093, + "step": 377000 + }, + { + "epoch": 50.28, + "grad_norm": 0.8341526985168457, + "learning_rate": 2.48714e-05, + "loss": 1.4884478759765625, + "step": 377100 + }, + { + "epoch": 50.29333333333334, + "grad_norm": 0.8194299340248108, + "learning_rate": 2.4864733333333333e-05, + "loss": 1.49041259765625, + "step": 377200 + }, + { + "epoch": 50.306666666666665, + "grad_norm": 0.8118073344230652, + "learning_rate": 2.485806666666667e-05, + "loss": 1.4905577087402344, + "step": 377300 + }, + { + "epoch": 50.32, + "grad_norm": 0.8379462361335754, + "learning_rate": 2.4851400000000004e-05, + "loss": 1.489639434814453, + "step": 377400 + }, + { + "epoch": 50.333333333333336, + "grad_norm": 0.8261382579803467, + "learning_rate": 2.4844733333333333e-05, + "loss": 1.4874810791015625, + "step": 377500 + }, + { + "epoch": 50.346666666666664, + "grad_norm": 0.8561468124389648, + "learning_rate": 2.483806666666667e-05, + "loss": 1.4892660522460937, + "step": 377600 + }, + { + "epoch": 50.36, + "grad_norm": 0.8199340105056763, + "learning_rate": 2.48314e-05, + "loss": 1.4900086975097657, + "step": 377700 + }, + { + "epoch": 50.373333333333335, + "grad_norm": 0.8406544327735901, + "learning_rate": 2.4824733333333333e-05, + "loss": 1.4931591796875, + "step": 377800 + }, + { + "epoch": 50.38666666666666, + "grad_norm": 0.855679452419281, + "learning_rate": 2.481806666666667e-05, + "loss": 1.496982879638672, + "step": 377900 + }, + { + "epoch": 50.4, + "grad_norm": 0.8296971917152405, + "learning_rate": 2.48114e-05, + "loss": 1.4914996337890625, + "step": 378000 + }, + { + "epoch": 50.413333333333334, + "grad_norm": 0.8180424571037292, + "learning_rate": 2.4804733333333337e-05, + "loss": 1.4951356506347657, + "step": 378100 + }, + { + "epoch": 50.42666666666667, + "grad_norm": 0.7618070244789124, + "learning_rate": 2.4798066666666666e-05, + "loss": 1.4911334228515625, + "step": 378200 + }, + { + "epoch": 50.44, + "grad_norm": 0.8503825664520264, + "learning_rate": 2.47914e-05, + "loss": 1.4923796081542968, + "step": 378300 + }, + { + "epoch": 50.45333333333333, + "grad_norm": 0.8834084272384644, + "learning_rate": 2.4784733333333333e-05, + "loss": 1.5002174377441406, + "step": 378400 + }, + { + "epoch": 50.46666666666667, + "grad_norm": 0.8220873475074768, + "learning_rate": 2.477806666666667e-05, + "loss": 1.4986158752441405, + "step": 378500 + }, + { + "epoch": 50.48, + "grad_norm": 0.8193914294242859, + "learning_rate": 2.4771466666666668e-05, + "loss": 1.5011746215820312, + "step": 378600 + }, + { + "epoch": 50.49333333333333, + "grad_norm": 0.800317108631134, + "learning_rate": 2.47648e-05, + "loss": 1.4963475036621094, + "step": 378700 + }, + { + "epoch": 50.50666666666667, + "grad_norm": 0.9164362549781799, + "learning_rate": 2.4758133333333333e-05, + "loss": 1.5000321960449219, + "step": 378800 + }, + { + "epoch": 50.52, + "grad_norm": 0.8191181421279907, + "learning_rate": 2.475146666666667e-05, + "loss": 1.4975949096679688, + "step": 378900 + }, + { + "epoch": 50.53333333333333, + "grad_norm": 0.8659054040908813, + "learning_rate": 2.47448e-05, + "loss": 1.5002691650390625, + "step": 379000 + }, + { + "epoch": 50.54666666666667, + "grad_norm": 0.8360313177108765, + "learning_rate": 2.4738133333333336e-05, + "loss": 1.5039067077636719, + "step": 379100 + }, + { + "epoch": 50.56, + "grad_norm": 0.8391720652580261, + "learning_rate": 2.4731466666666665e-05, + "loss": 1.5015184020996093, + "step": 379200 + }, + { + "epoch": 50.57333333333333, + "grad_norm": 0.8605763912200928, + "learning_rate": 2.47248e-05, + "loss": 1.4976239013671875, + "step": 379300 + }, + { + "epoch": 50.586666666666666, + "grad_norm": 0.8516925573348999, + "learning_rate": 2.4718133333333333e-05, + "loss": 1.506053466796875, + "step": 379400 + }, + { + "epoch": 50.6, + "grad_norm": 0.8585731387138367, + "learning_rate": 2.471146666666667e-05, + "loss": 1.5041627502441406, + "step": 379500 + }, + { + "epoch": 50.61333333333333, + "grad_norm": 0.8855695724487305, + "learning_rate": 2.47048e-05, + "loss": 1.511184539794922, + "step": 379600 + }, + { + "epoch": 50.626666666666665, + "grad_norm": 0.8389919996261597, + "learning_rate": 2.4698133333333333e-05, + "loss": 1.5034822082519532, + "step": 379700 + }, + { + "epoch": 50.64, + "grad_norm": 0.8592944145202637, + "learning_rate": 2.469146666666667e-05, + "loss": 1.5039569091796876, + "step": 379800 + }, + { + "epoch": 50.653333333333336, + "grad_norm": 0.8480226397514343, + "learning_rate": 2.46848e-05, + "loss": 1.5057781982421874, + "step": 379900 + }, + { + "epoch": 50.666666666666664, + "grad_norm": 0.8565899133682251, + "learning_rate": 2.4678133333333334e-05, + "loss": 1.5090969848632811, + "step": 380000 + }, + { + "epoch": 50.68, + "grad_norm": 0.8642663359642029, + "learning_rate": 2.467146666666667e-05, + "loss": 1.5119166564941406, + "step": 380100 + }, + { + "epoch": 50.693333333333335, + "grad_norm": 0.8396902084350586, + "learning_rate": 2.46648e-05, + "loss": 1.5146353149414062, + "step": 380200 + }, + { + "epoch": 50.70666666666666, + "grad_norm": 0.8606100678443909, + "learning_rate": 2.4658133333333337e-05, + "loss": 1.5087774658203126, + "step": 380300 + }, + { + "epoch": 50.72, + "grad_norm": 0.8133344054222107, + "learning_rate": 2.4651466666666666e-05, + "loss": 1.5128636169433594, + "step": 380400 + }, + { + "epoch": 50.733333333333334, + "grad_norm": 0.8432591557502747, + "learning_rate": 2.46448e-05, + "loss": 1.5084796142578125, + "step": 380500 + }, + { + "epoch": 50.74666666666667, + "grad_norm": 0.8862467408180237, + "learning_rate": 2.46382e-05, + "loss": 1.5145498657226562, + "step": 380600 + }, + { + "epoch": 50.76, + "grad_norm": 0.883004903793335, + "learning_rate": 2.4631533333333333e-05, + "loss": 1.5110755920410157, + "step": 380700 + }, + { + "epoch": 50.77333333333333, + "grad_norm": 0.8901974558830261, + "learning_rate": 2.462486666666667e-05, + "loss": 1.5167329406738281, + "step": 380800 + }, + { + "epoch": 50.78666666666667, + "grad_norm": 0.841244637966156, + "learning_rate": 2.46182e-05, + "loss": 1.5136112976074219, + "step": 380900 + }, + { + "epoch": 50.8, + "grad_norm": 0.8438834547996521, + "learning_rate": 2.4611533333333333e-05, + "loss": 1.5152095031738282, + "step": 381000 + }, + { + "epoch": 50.81333333333333, + "grad_norm": 0.8658137321472168, + "learning_rate": 2.460486666666667e-05, + "loss": 1.513826904296875, + "step": 381100 + }, + { + "epoch": 50.82666666666667, + "grad_norm": 0.882071852684021, + "learning_rate": 2.45982e-05, + "loss": 1.5154730224609374, + "step": 381200 + }, + { + "epoch": 50.84, + "grad_norm": 0.8813706040382385, + "learning_rate": 2.4591533333333337e-05, + "loss": 1.51885498046875, + "step": 381300 + }, + { + "epoch": 50.85333333333333, + "grad_norm": 0.8508647084236145, + "learning_rate": 2.4584866666666666e-05, + "loss": 1.5158058166503907, + "step": 381400 + }, + { + "epoch": 50.86666666666667, + "grad_norm": 0.8502191305160522, + "learning_rate": 2.45782e-05, + "loss": 1.5165373229980468, + "step": 381500 + }, + { + "epoch": 50.88, + "grad_norm": 0.8656032085418701, + "learning_rate": 2.4571533333333337e-05, + "loss": 1.5202676391601562, + "step": 381600 + }, + { + "epoch": 50.89333333333333, + "grad_norm": 0.8280258774757385, + "learning_rate": 2.4564866666666666e-05, + "loss": 1.523727569580078, + "step": 381700 + }, + { + "epoch": 50.906666666666666, + "grad_norm": 0.8496196269989014, + "learning_rate": 2.45582e-05, + "loss": 1.5180378723144532, + "step": 381800 + }, + { + "epoch": 50.92, + "grad_norm": 0.9003440141677856, + "learning_rate": 2.4551533333333334e-05, + "loss": 1.52153564453125, + "step": 381900 + }, + { + "epoch": 50.93333333333333, + "grad_norm": 0.8458821177482605, + "learning_rate": 2.454486666666667e-05, + "loss": 1.5277166748046875, + "step": 382000 + }, + { + "epoch": 50.946666666666665, + "grad_norm": 0.8582217693328857, + "learning_rate": 2.45382e-05, + "loss": 1.5160935974121095, + "step": 382100 + }, + { + "epoch": 50.96, + "grad_norm": 0.8812438249588013, + "learning_rate": 2.4531533333333334e-05, + "loss": 1.5228970336914063, + "step": 382200 + }, + { + "epoch": 50.973333333333336, + "grad_norm": 0.8399114608764648, + "learning_rate": 2.452486666666667e-05, + "loss": 1.5246499633789063, + "step": 382300 + }, + { + "epoch": 50.986666666666665, + "grad_norm": 0.8204259276390076, + "learning_rate": 2.4518200000000002e-05, + "loss": 1.5253396606445313, + "step": 382400 + }, + { + "epoch": 51.0, + "grad_norm": 0.8467189073562622, + "learning_rate": 2.4511533333333334e-05, + "loss": 1.5258003234863282, + "step": 382500 + }, + { + "epoch": 51.013333333333335, + "grad_norm": 0.8255739212036133, + "learning_rate": 2.4504933333333337e-05, + "loss": 1.4497154235839844, + "step": 382600 + }, + { + "epoch": 51.026666666666664, + "grad_norm": 0.8379701375961304, + "learning_rate": 2.4498266666666665e-05, + "loss": 1.452757568359375, + "step": 382700 + }, + { + "epoch": 51.04, + "grad_norm": 0.8153045177459717, + "learning_rate": 2.44916e-05, + "loss": 1.4591259765625, + "step": 382800 + }, + { + "epoch": 51.053333333333335, + "grad_norm": 0.8011037111282349, + "learning_rate": 2.4484933333333333e-05, + "loss": 1.4575518798828124, + "step": 382900 + }, + { + "epoch": 51.06666666666667, + "grad_norm": 0.8315128087997437, + "learning_rate": 2.447826666666667e-05, + "loss": 1.4647442626953124, + "step": 383000 + }, + { + "epoch": 51.08, + "grad_norm": 0.8852720260620117, + "learning_rate": 2.44716e-05, + "loss": 1.459652099609375, + "step": 383100 + }, + { + "epoch": 51.093333333333334, + "grad_norm": 0.837066113948822, + "learning_rate": 2.4464933333333334e-05, + "loss": 1.4613265991210938, + "step": 383200 + }, + { + "epoch": 51.10666666666667, + "grad_norm": 0.8697075843811035, + "learning_rate": 2.445826666666667e-05, + "loss": 1.4583189392089844, + "step": 383300 + }, + { + "epoch": 51.12, + "grad_norm": 0.8551360368728638, + "learning_rate": 2.44516e-05, + "loss": 1.4582942199707032, + "step": 383400 + }, + { + "epoch": 51.13333333333333, + "grad_norm": 0.8545364141464233, + "learning_rate": 2.4444933333333334e-05, + "loss": 1.460870819091797, + "step": 383500 + }, + { + "epoch": 51.14666666666667, + "grad_norm": 0.8045480251312256, + "learning_rate": 2.4438266666666666e-05, + "loss": 1.4661735534667968, + "step": 383600 + }, + { + "epoch": 51.16, + "grad_norm": 0.8242552876472473, + "learning_rate": 2.44316e-05, + "loss": 1.4653382873535157, + "step": 383700 + }, + { + "epoch": 51.17333333333333, + "grad_norm": 0.8422017693519592, + "learning_rate": 2.4424933333333337e-05, + "loss": 1.467156982421875, + "step": 383800 + }, + { + "epoch": 51.18666666666667, + "grad_norm": 0.8462349772453308, + "learning_rate": 2.4418266666666666e-05, + "loss": 1.471797637939453, + "step": 383900 + }, + { + "epoch": 51.2, + "grad_norm": 0.8934951424598694, + "learning_rate": 2.4411600000000002e-05, + "loss": 1.4692425537109375, + "step": 384000 + }, + { + "epoch": 51.21333333333333, + "grad_norm": 0.8612936735153198, + "learning_rate": 2.4404933333333334e-05, + "loss": 1.4652291870117187, + "step": 384100 + }, + { + "epoch": 51.22666666666667, + "grad_norm": 0.8447757959365845, + "learning_rate": 2.4398266666666666e-05, + "loss": 1.4715693664550782, + "step": 384200 + }, + { + "epoch": 51.24, + "grad_norm": 0.8683099746704102, + "learning_rate": 2.4391600000000002e-05, + "loss": 1.4702517700195312, + "step": 384300 + }, + { + "epoch": 51.25333333333333, + "grad_norm": 0.789240837097168, + "learning_rate": 2.4384933333333334e-05, + "loss": 1.4706991577148438, + "step": 384400 + }, + { + "epoch": 51.266666666666666, + "grad_norm": 0.8664871454238892, + "learning_rate": 2.437826666666667e-05, + "loss": 1.4718405151367187, + "step": 384500 + }, + { + "epoch": 51.28, + "grad_norm": 0.8637537956237793, + "learning_rate": 2.437166666666667e-05, + "loss": 1.4716297912597656, + "step": 384600 + }, + { + "epoch": 51.29333333333334, + "grad_norm": 0.8115244507789612, + "learning_rate": 2.4365e-05, + "loss": 1.4719580078125, + "step": 384700 + }, + { + "epoch": 51.306666666666665, + "grad_norm": 0.8004962801933289, + "learning_rate": 2.4358333333333337e-05, + "loss": 1.4749884033203124, + "step": 384800 + }, + { + "epoch": 51.32, + "grad_norm": 0.8783427476882935, + "learning_rate": 2.4351666666666666e-05, + "loss": 1.4797103881835938, + "step": 384900 + }, + { + "epoch": 51.333333333333336, + "grad_norm": 0.8578570485115051, + "learning_rate": 2.4345e-05, + "loss": 1.4746359252929688, + "step": 385000 + }, + { + "epoch": 51.346666666666664, + "grad_norm": 0.8788546323776245, + "learning_rate": 2.4338333333333334e-05, + "loss": 1.4802169799804688, + "step": 385100 + }, + { + "epoch": 51.36, + "grad_norm": 0.8816238641738892, + "learning_rate": 2.4331666666666666e-05, + "loss": 1.47786865234375, + "step": 385200 + }, + { + "epoch": 51.373333333333335, + "grad_norm": 0.8610212206840515, + "learning_rate": 2.4325000000000002e-05, + "loss": 1.4802935791015626, + "step": 385300 + }, + { + "epoch": 51.38666666666666, + "grad_norm": 0.8929548263549805, + "learning_rate": 2.4318333333333334e-05, + "loss": 1.4820956420898437, + "step": 385400 + }, + { + "epoch": 51.4, + "grad_norm": 0.8102960586547852, + "learning_rate": 2.431166666666667e-05, + "loss": 1.4810777282714844, + "step": 385500 + }, + { + "epoch": 51.413333333333334, + "grad_norm": 0.8530375361442566, + "learning_rate": 2.4305e-05, + "loss": 1.4792242431640625, + "step": 385600 + }, + { + "epoch": 51.42666666666667, + "grad_norm": 0.8311903476715088, + "learning_rate": 2.4298333333333334e-05, + "loss": 1.4845094299316406, + "step": 385700 + }, + { + "epoch": 51.44, + "grad_norm": 0.8655042052268982, + "learning_rate": 2.4291666666666666e-05, + "loss": 1.482476043701172, + "step": 385800 + }, + { + "epoch": 51.45333333333333, + "grad_norm": 0.8922598361968994, + "learning_rate": 2.4285000000000002e-05, + "loss": 1.4829647827148438, + "step": 385900 + }, + { + "epoch": 51.46666666666667, + "grad_norm": 0.8447866439819336, + "learning_rate": 2.4278333333333334e-05, + "loss": 1.4828948974609375, + "step": 386000 + }, + { + "epoch": 51.48, + "grad_norm": 0.8586673736572266, + "learning_rate": 2.4271666666666667e-05, + "loss": 1.4850732421875, + "step": 386100 + }, + { + "epoch": 51.49333333333333, + "grad_norm": 0.8505076766014099, + "learning_rate": 2.4265000000000002e-05, + "loss": 1.4824075317382812, + "step": 386200 + }, + { + "epoch": 51.50666666666667, + "grad_norm": 0.8577302694320679, + "learning_rate": 2.4258333333333335e-05, + "loss": 1.4877815246582031, + "step": 386300 + }, + { + "epoch": 51.52, + "grad_norm": 0.8362126350402832, + "learning_rate": 2.4251666666666667e-05, + "loss": 1.4846498107910155, + "step": 386400 + }, + { + "epoch": 51.53333333333333, + "grad_norm": 0.8587775230407715, + "learning_rate": 2.4245000000000002e-05, + "loss": 1.484984130859375, + "step": 386500 + }, + { + "epoch": 51.54666666666667, + "grad_norm": 0.871204137802124, + "learning_rate": 2.4238333333333335e-05, + "loss": 1.4914971923828124, + "step": 386600 + }, + { + "epoch": 51.56, + "grad_norm": 0.8179042935371399, + "learning_rate": 2.4231733333333334e-05, + "loss": 1.4899531555175782, + "step": 386700 + }, + { + "epoch": 51.57333333333333, + "grad_norm": 0.8490532040596008, + "learning_rate": 2.422506666666667e-05, + "loss": 1.4912181091308594, + "step": 386800 + }, + { + "epoch": 51.586666666666666, + "grad_norm": 0.8682654500007629, + "learning_rate": 2.4218400000000002e-05, + "loss": 1.4918653869628906, + "step": 386900 + }, + { + "epoch": 51.6, + "grad_norm": 0.890491247177124, + "learning_rate": 2.4211733333333334e-05, + "loss": 1.4917636108398438, + "step": 387000 + }, + { + "epoch": 51.61333333333333, + "grad_norm": 0.8665891885757446, + "learning_rate": 2.4205066666666666e-05, + "loss": 1.4941488647460937, + "step": 387100 + }, + { + "epoch": 51.626666666666665, + "grad_norm": 0.8592315316200256, + "learning_rate": 2.4198400000000002e-05, + "loss": 1.492812042236328, + "step": 387200 + }, + { + "epoch": 51.64, + "grad_norm": 0.8546895980834961, + "learning_rate": 2.4191733333333334e-05, + "loss": 1.4904875183105468, + "step": 387300 + }, + { + "epoch": 51.653333333333336, + "grad_norm": 0.8656253814697266, + "learning_rate": 2.4185066666666666e-05, + "loss": 1.4929344177246093, + "step": 387400 + }, + { + "epoch": 51.666666666666664, + "grad_norm": 0.8968192934989929, + "learning_rate": 2.4178400000000002e-05, + "loss": 1.4941493225097657, + "step": 387500 + }, + { + "epoch": 51.68, + "grad_norm": 0.8238973617553711, + "learning_rate": 2.4171733333333334e-05, + "loss": 1.4932928466796875, + "step": 387600 + }, + { + "epoch": 51.693333333333335, + "grad_norm": 0.8756453394889832, + "learning_rate": 2.416506666666667e-05, + "loss": 1.5003330993652344, + "step": 387700 + }, + { + "epoch": 51.70666666666666, + "grad_norm": 0.8613998293876648, + "learning_rate": 2.41584e-05, + "loss": 1.499681396484375, + "step": 387800 + }, + { + "epoch": 51.72, + "grad_norm": 0.8716132640838623, + "learning_rate": 2.4151733333333335e-05, + "loss": 1.4972032165527345, + "step": 387900 + }, + { + "epoch": 51.733333333333334, + "grad_norm": 0.8987093567848206, + "learning_rate": 2.414506666666667e-05, + "loss": 1.5022872924804687, + "step": 388000 + }, + { + "epoch": 51.74666666666667, + "grad_norm": 0.8321843147277832, + "learning_rate": 2.41384e-05, + "loss": 1.4971646118164061, + "step": 388100 + }, + { + "epoch": 51.76, + "grad_norm": 0.8500959277153015, + "learning_rate": 2.4131733333333335e-05, + "loss": 1.5017050170898438, + "step": 388200 + }, + { + "epoch": 51.77333333333333, + "grad_norm": 0.8492921590805054, + "learning_rate": 2.4125066666666667e-05, + "loss": 1.4948918151855468, + "step": 388300 + }, + { + "epoch": 51.78666666666667, + "grad_norm": 0.8338704705238342, + "learning_rate": 2.4118400000000003e-05, + "loss": 1.5020379638671875, + "step": 388400 + }, + { + "epoch": 51.8, + "grad_norm": 0.8522675037384033, + "learning_rate": 2.4111733333333335e-05, + "loss": 1.5005595397949218, + "step": 388500 + }, + { + "epoch": 51.81333333333333, + "grad_norm": 0.8284652829170227, + "learning_rate": 2.4105066666666667e-05, + "loss": 1.5022247314453125, + "step": 388600 + }, + { + "epoch": 51.82666666666667, + "grad_norm": 0.862209141254425, + "learning_rate": 2.409846666666667e-05, + "loss": 1.504408416748047, + "step": 388700 + }, + { + "epoch": 51.84, + "grad_norm": 0.8681904077529907, + "learning_rate": 2.4091800000000002e-05, + "loss": 1.5046144104003907, + "step": 388800 + }, + { + "epoch": 51.85333333333333, + "grad_norm": 0.8120859861373901, + "learning_rate": 2.4085133333333334e-05, + "loss": 1.5099690246582032, + "step": 388900 + }, + { + "epoch": 51.86666666666667, + "grad_norm": 0.8199965357780457, + "learning_rate": 2.407846666666667e-05, + "loss": 1.5086412048339843, + "step": 389000 + }, + { + "epoch": 51.88, + "grad_norm": 0.8781035542488098, + "learning_rate": 2.40718e-05, + "loss": 1.5068019104003907, + "step": 389100 + }, + { + "epoch": 51.89333333333333, + "grad_norm": 0.8746353983879089, + "learning_rate": 2.4065133333333334e-05, + "loss": 1.5051779174804687, + "step": 389200 + }, + { + "epoch": 51.906666666666666, + "grad_norm": 0.8584237098693848, + "learning_rate": 2.4058466666666667e-05, + "loss": 1.5083631896972656, + "step": 389300 + }, + { + "epoch": 51.92, + "grad_norm": 0.9089388251304626, + "learning_rate": 2.4051800000000002e-05, + "loss": 1.5061935424804687, + "step": 389400 + }, + { + "epoch": 51.93333333333333, + "grad_norm": 0.8394655585289001, + "learning_rate": 2.4045133333333335e-05, + "loss": 1.509464569091797, + "step": 389500 + }, + { + "epoch": 51.946666666666665, + "grad_norm": 0.8279618620872498, + "learning_rate": 2.4038466666666667e-05, + "loss": 1.5109159851074219, + "step": 389600 + }, + { + "epoch": 51.96, + "grad_norm": 0.9038397669792175, + "learning_rate": 2.4031800000000003e-05, + "loss": 1.510810089111328, + "step": 389700 + }, + { + "epoch": 51.973333333333336, + "grad_norm": 0.899217963218689, + "learning_rate": 2.4025133333333335e-05, + "loss": 1.5102980041503906, + "step": 389800 + }, + { + "epoch": 51.986666666666665, + "grad_norm": 0.905498743057251, + "learning_rate": 2.4018466666666667e-05, + "loss": 1.510074920654297, + "step": 389900 + }, + { + "epoch": 52.0, + "grad_norm": 0.8077598214149475, + "learning_rate": 2.40118e-05, + "loss": 1.5141552734375, + "step": 390000 + }, + { + "epoch": 52.013333333333335, + "grad_norm": 0.8236868381500244, + "learning_rate": 2.4005133333333335e-05, + "loss": 1.444603729248047, + "step": 390100 + }, + { + "epoch": 52.026666666666664, + "grad_norm": 0.8070313930511475, + "learning_rate": 2.399846666666667e-05, + "loss": 1.4379257202148437, + "step": 390200 + }, + { + "epoch": 52.04, + "grad_norm": 0.7745979428291321, + "learning_rate": 2.39918e-05, + "loss": 1.4440399169921876, + "step": 390300 + }, + { + "epoch": 52.053333333333335, + "grad_norm": 0.8141463398933411, + "learning_rate": 2.3985133333333335e-05, + "loss": 1.4421783447265626, + "step": 390400 + }, + { + "epoch": 52.06666666666667, + "grad_norm": 0.8253259062767029, + "learning_rate": 2.3978466666666667e-05, + "loss": 1.4468896484375, + "step": 390500 + }, + { + "epoch": 52.08, + "grad_norm": 0.8300577402114868, + "learning_rate": 2.39718e-05, + "loss": 1.4401560974121095, + "step": 390600 + }, + { + "epoch": 52.093333333333334, + "grad_norm": 0.854324996471405, + "learning_rate": 2.3965200000000002e-05, + "loss": 1.4524754333496093, + "step": 390700 + }, + { + "epoch": 52.10666666666667, + "grad_norm": 0.8196046352386475, + "learning_rate": 2.3958533333333334e-05, + "loss": 1.4522889709472657, + "step": 390800 + }, + { + "epoch": 52.12, + "grad_norm": 0.8217240571975708, + "learning_rate": 2.3951866666666667e-05, + "loss": 1.4478153991699219, + "step": 390900 + }, + { + "epoch": 52.13333333333333, + "grad_norm": 0.8146061301231384, + "learning_rate": 2.3945200000000002e-05, + "loss": 1.450179443359375, + "step": 391000 + }, + { + "epoch": 52.14666666666667, + "grad_norm": 0.8496772646903992, + "learning_rate": 2.3938533333333335e-05, + "loss": 1.448777618408203, + "step": 391100 + }, + { + "epoch": 52.16, + "grad_norm": 0.8619560599327087, + "learning_rate": 2.393186666666667e-05, + "loss": 1.4484617614746094, + "step": 391200 + }, + { + "epoch": 52.17333333333333, + "grad_norm": 0.8483819365501404, + "learning_rate": 2.39252e-05, + "loss": 1.451850128173828, + "step": 391300 + }, + { + "epoch": 52.18666666666667, + "grad_norm": 0.8521955609321594, + "learning_rate": 2.3918533333333335e-05, + "loss": 1.459192657470703, + "step": 391400 + }, + { + "epoch": 52.2, + "grad_norm": 0.8739776611328125, + "learning_rate": 2.3911866666666667e-05, + "loss": 1.4575103759765624, + "step": 391500 + }, + { + "epoch": 52.21333333333333, + "grad_norm": 0.8248653411865234, + "learning_rate": 2.39052e-05, + "loss": 1.458475341796875, + "step": 391600 + }, + { + "epoch": 52.22666666666667, + "grad_norm": 0.8667312264442444, + "learning_rate": 2.3898533333333335e-05, + "loss": 1.4586300659179687, + "step": 391700 + }, + { + "epoch": 52.24, + "grad_norm": 0.8715050220489502, + "learning_rate": 2.3891866666666667e-05, + "loss": 1.4606393432617188, + "step": 391800 + }, + { + "epoch": 52.25333333333333, + "grad_norm": 0.8274866342544556, + "learning_rate": 2.3885200000000003e-05, + "loss": 1.4589753723144532, + "step": 391900 + }, + { + "epoch": 52.266666666666666, + "grad_norm": 0.8984260559082031, + "learning_rate": 2.3878533333333332e-05, + "loss": 1.4624786376953125, + "step": 392000 + }, + { + "epoch": 52.28, + "grad_norm": 0.8441860675811768, + "learning_rate": 2.3871866666666668e-05, + "loss": 1.4648696899414062, + "step": 392100 + }, + { + "epoch": 52.29333333333334, + "grad_norm": 0.8562932014465332, + "learning_rate": 2.38652e-05, + "loss": 1.4625413513183594, + "step": 392200 + }, + { + "epoch": 52.306666666666665, + "grad_norm": 0.8100069165229797, + "learning_rate": 2.3858533333333335e-05, + "loss": 1.4674345397949218, + "step": 392300 + }, + { + "epoch": 52.32, + "grad_norm": 0.879694938659668, + "learning_rate": 2.3851866666666668e-05, + "loss": 1.462593536376953, + "step": 392400 + }, + { + "epoch": 52.333333333333336, + "grad_norm": 0.8324185609817505, + "learning_rate": 2.38452e-05, + "loss": 1.4686509704589843, + "step": 392500 + }, + { + "epoch": 52.346666666666664, + "grad_norm": 0.8371502161026001, + "learning_rate": 2.3838533333333336e-05, + "loss": 1.468300323486328, + "step": 392600 + }, + { + "epoch": 52.36, + "grad_norm": 0.8931401968002319, + "learning_rate": 2.3831866666666668e-05, + "loss": 1.4668818664550782, + "step": 392700 + }, + { + "epoch": 52.373333333333335, + "grad_norm": 0.8364928960800171, + "learning_rate": 2.3825266666666667e-05, + "loss": 1.4689984130859375, + "step": 392800 + }, + { + "epoch": 52.38666666666666, + "grad_norm": 0.861511766910553, + "learning_rate": 2.3818600000000003e-05, + "loss": 1.4642536926269532, + "step": 392900 + }, + { + "epoch": 52.4, + "grad_norm": 0.8501995801925659, + "learning_rate": 2.3811933333333335e-05, + "loss": 1.4702130126953126, + "step": 393000 + }, + { + "epoch": 52.413333333333334, + "grad_norm": 0.8685861229896545, + "learning_rate": 2.3805266666666667e-05, + "loss": 1.472560577392578, + "step": 393100 + }, + { + "epoch": 52.42666666666667, + "grad_norm": 0.8422084450721741, + "learning_rate": 2.3798600000000003e-05, + "loss": 1.4753160095214843, + "step": 393200 + }, + { + "epoch": 52.44, + "grad_norm": 0.8546521663665771, + "learning_rate": 2.3791933333333335e-05, + "loss": 1.473077392578125, + "step": 393300 + }, + { + "epoch": 52.45333333333333, + "grad_norm": 0.8383651375770569, + "learning_rate": 2.3785266666666667e-05, + "loss": 1.468947296142578, + "step": 393400 + }, + { + "epoch": 52.46666666666667, + "grad_norm": 0.8365948796272278, + "learning_rate": 2.37786e-05, + "loss": 1.4694491577148439, + "step": 393500 + }, + { + "epoch": 52.48, + "grad_norm": 0.8776941299438477, + "learning_rate": 2.3771933333333335e-05, + "loss": 1.4765846252441406, + "step": 393600 + }, + { + "epoch": 52.49333333333333, + "grad_norm": 0.8972512483596802, + "learning_rate": 2.3765266666666668e-05, + "loss": 1.4798658752441407, + "step": 393700 + }, + { + "epoch": 52.50666666666667, + "grad_norm": 0.87769615650177, + "learning_rate": 2.37586e-05, + "loss": 1.4698507690429687, + "step": 393800 + }, + { + "epoch": 52.52, + "grad_norm": 0.8386378884315491, + "learning_rate": 2.3751933333333335e-05, + "loss": 1.4793057250976562, + "step": 393900 + }, + { + "epoch": 52.53333333333333, + "grad_norm": 0.85838383436203, + "learning_rate": 2.3745266666666668e-05, + "loss": 1.4752388000488281, + "step": 394000 + }, + { + "epoch": 52.54666666666667, + "grad_norm": 0.8824598789215088, + "learning_rate": 2.3738600000000003e-05, + "loss": 1.4773374938964843, + "step": 394100 + }, + { + "epoch": 52.56, + "grad_norm": 0.8590186834335327, + "learning_rate": 2.3731933333333332e-05, + "loss": 1.4786466979980468, + "step": 394200 + }, + { + "epoch": 52.57333333333333, + "grad_norm": 0.8705313801765442, + "learning_rate": 2.3725266666666668e-05, + "loss": 1.4816523742675782, + "step": 394300 + }, + { + "epoch": 52.586666666666666, + "grad_norm": 0.865382194519043, + "learning_rate": 2.3718600000000004e-05, + "loss": 1.478979034423828, + "step": 394400 + }, + { + "epoch": 52.6, + "grad_norm": 0.8217282891273499, + "learning_rate": 2.3711933333333332e-05, + "loss": 1.4787644958496093, + "step": 394500 + }, + { + "epoch": 52.61333333333333, + "grad_norm": 0.8592541217803955, + "learning_rate": 2.3705266666666668e-05, + "loss": 1.482845458984375, + "step": 394600 + }, + { + "epoch": 52.626666666666665, + "grad_norm": 0.8390605449676514, + "learning_rate": 2.36986e-05, + "loss": 1.4851654052734375, + "step": 394700 + }, + { + "epoch": 52.64, + "grad_norm": 0.9070495963096619, + "learning_rate": 2.3692e-05, + "loss": 1.4781282043457031, + "step": 394800 + }, + { + "epoch": 52.653333333333336, + "grad_norm": 0.8450265526771545, + "learning_rate": 2.3685333333333335e-05, + "loss": 1.483128204345703, + "step": 394900 + }, + { + "epoch": 52.666666666666664, + "grad_norm": 0.8272682428359985, + "learning_rate": 2.3678666666666667e-05, + "loss": 1.484342041015625, + "step": 395000 + }, + { + "epoch": 52.68, + "grad_norm": 0.9051398634910583, + "learning_rate": 2.3672000000000003e-05, + "loss": 1.4861419677734375, + "step": 395100 + }, + { + "epoch": 52.693333333333335, + "grad_norm": 0.8721572160720825, + "learning_rate": 2.3665333333333335e-05, + "loss": 1.4825254821777343, + "step": 395200 + }, + { + "epoch": 52.70666666666666, + "grad_norm": 0.8346722722053528, + "learning_rate": 2.3658666666666668e-05, + "loss": 1.486527099609375, + "step": 395300 + }, + { + "epoch": 52.72, + "grad_norm": 0.8343473076820374, + "learning_rate": 2.3652000000000003e-05, + "loss": 1.485967254638672, + "step": 395400 + }, + { + "epoch": 52.733333333333334, + "grad_norm": 0.849467396736145, + "learning_rate": 2.3645333333333332e-05, + "loss": 1.485404510498047, + "step": 395500 + }, + { + "epoch": 52.74666666666667, + "grad_norm": 0.8700857162475586, + "learning_rate": 2.3638666666666668e-05, + "loss": 1.4913349914550782, + "step": 395600 + }, + { + "epoch": 52.76, + "grad_norm": 0.9438149929046631, + "learning_rate": 2.3632e-05, + "loss": 1.4887771606445312, + "step": 395700 + }, + { + "epoch": 52.77333333333333, + "grad_norm": 0.8537826538085938, + "learning_rate": 2.3625333333333336e-05, + "loss": 1.4901506042480468, + "step": 395800 + }, + { + "epoch": 52.78666666666667, + "grad_norm": 0.8943189382553101, + "learning_rate": 2.3618666666666668e-05, + "loss": 1.4895608520507813, + "step": 395900 + }, + { + "epoch": 52.8, + "grad_norm": 0.8864601254463196, + "learning_rate": 2.3612e-05, + "loss": 1.4893939208984375, + "step": 396000 + }, + { + "epoch": 52.81333333333333, + "grad_norm": 0.8941498398780823, + "learning_rate": 2.3605333333333336e-05, + "loss": 1.4906712341308594, + "step": 396100 + }, + { + "epoch": 52.82666666666667, + "grad_norm": 0.8816115260124207, + "learning_rate": 2.3598666666666668e-05, + "loss": 1.4948838806152345, + "step": 396200 + }, + { + "epoch": 52.84, + "grad_norm": 0.8456717133522034, + "learning_rate": 2.3592e-05, + "loss": 1.4868934631347657, + "step": 396300 + }, + { + "epoch": 52.85333333333333, + "grad_norm": 0.8491533994674683, + "learning_rate": 2.3585333333333333e-05, + "loss": 1.4916058349609376, + "step": 396400 + }, + { + "epoch": 52.86666666666667, + "grad_norm": 0.8934788107872009, + "learning_rate": 2.357866666666667e-05, + "loss": 1.4947138977050782, + "step": 396500 + }, + { + "epoch": 52.88, + "grad_norm": 0.8404362797737122, + "learning_rate": 2.3572000000000004e-05, + "loss": 1.4902780151367188, + "step": 396600 + }, + { + "epoch": 52.89333333333333, + "grad_norm": 0.8693411946296692, + "learning_rate": 2.3565333333333333e-05, + "loss": 1.493137969970703, + "step": 396700 + }, + { + "epoch": 52.906666666666666, + "grad_norm": 0.8568634986877441, + "learning_rate": 2.3558733333333335e-05, + "loss": 1.4958587646484376, + "step": 396800 + }, + { + "epoch": 52.92, + "grad_norm": 0.8633151054382324, + "learning_rate": 2.3552066666666668e-05, + "loss": 1.4957908630371093, + "step": 396900 + }, + { + "epoch": 52.93333333333333, + "grad_norm": 0.8764383792877197, + "learning_rate": 2.35454e-05, + "loss": 1.498976287841797, + "step": 397000 + }, + { + "epoch": 52.946666666666665, + "grad_norm": 0.8593562841415405, + "learning_rate": 2.3538733333333336e-05, + "loss": 1.496341552734375, + "step": 397100 + }, + { + "epoch": 52.96, + "grad_norm": 0.864981472492218, + "learning_rate": 2.3532066666666668e-05, + "loss": 1.500501708984375, + "step": 397200 + }, + { + "epoch": 52.973333333333336, + "grad_norm": 0.869564950466156, + "learning_rate": 2.35254e-05, + "loss": 1.4988710021972655, + "step": 397300 + }, + { + "epoch": 52.986666666666665, + "grad_norm": 0.8883520364761353, + "learning_rate": 2.3518733333333336e-05, + "loss": 1.5024085998535157, + "step": 397400 + }, + { + "epoch": 53.0, + "grad_norm": 0.8562717437744141, + "learning_rate": 2.3512066666666668e-05, + "loss": 1.5046351623535157, + "step": 397500 + }, + { + "epoch": 53.013333333333335, + "grad_norm": 0.805515706539154, + "learning_rate": 2.3505400000000004e-05, + "loss": 1.4346591186523439, + "step": 397600 + }, + { + "epoch": 53.026666666666664, + "grad_norm": 0.80479896068573, + "learning_rate": 2.3498733333333333e-05, + "loss": 1.4268614196777343, + "step": 397700 + }, + { + "epoch": 53.04, + "grad_norm": 0.8560926914215088, + "learning_rate": 2.3492066666666668e-05, + "loss": 1.4327865600585938, + "step": 397800 + }, + { + "epoch": 53.053333333333335, + "grad_norm": 0.8021524548530579, + "learning_rate": 2.34854e-05, + "loss": 1.4293780517578125, + "step": 397900 + }, + { + "epoch": 53.06666666666667, + "grad_norm": 0.80971360206604, + "learning_rate": 2.3478733333333333e-05, + "loss": 1.4374539184570312, + "step": 398000 + }, + { + "epoch": 53.08, + "grad_norm": 0.838452935218811, + "learning_rate": 2.347206666666667e-05, + "loss": 1.4421630859375, + "step": 398100 + }, + { + "epoch": 53.093333333333334, + "grad_norm": 0.8354381322860718, + "learning_rate": 2.34654e-05, + "loss": 1.43285400390625, + "step": 398200 + }, + { + "epoch": 53.10666666666667, + "grad_norm": 0.8726691007614136, + "learning_rate": 2.3458733333333336e-05, + "loss": 1.4365280151367188, + "step": 398300 + }, + { + "epoch": 53.12, + "grad_norm": 0.8390151262283325, + "learning_rate": 2.3452066666666665e-05, + "loss": 1.4363105773925782, + "step": 398400 + }, + { + "epoch": 53.13333333333333, + "grad_norm": 0.8505403995513916, + "learning_rate": 2.34454e-05, + "loss": 1.4446278381347657, + "step": 398500 + }, + { + "epoch": 53.14666666666667, + "grad_norm": 0.8463150262832642, + "learning_rate": 2.3438733333333333e-05, + "loss": 1.4427076721191405, + "step": 398600 + }, + { + "epoch": 53.16, + "grad_norm": 0.8394322991371155, + "learning_rate": 2.343206666666667e-05, + "loss": 1.4383731079101563, + "step": 398700 + }, + { + "epoch": 53.17333333333333, + "grad_norm": 0.8394029140472412, + "learning_rate": 2.3425466666666668e-05, + "loss": 1.443642578125, + "step": 398800 + }, + { + "epoch": 53.18666666666667, + "grad_norm": 0.8809831738471985, + "learning_rate": 2.3418800000000004e-05, + "loss": 1.4458544921875, + "step": 398900 + }, + { + "epoch": 53.2, + "grad_norm": 0.9032037258148193, + "learning_rate": 2.3412133333333332e-05, + "loss": 1.4469097900390624, + "step": 399000 + }, + { + "epoch": 53.21333333333333, + "grad_norm": 0.7470035552978516, + "learning_rate": 2.3405466666666668e-05, + "loss": 1.4481082153320313, + "step": 399100 + }, + { + "epoch": 53.22666666666667, + "grad_norm": 0.8141319155693054, + "learning_rate": 2.33988e-05, + "loss": 1.4453059387207032, + "step": 399200 + }, + { + "epoch": 53.24, + "grad_norm": 0.8504648804664612, + "learning_rate": 2.3392133333333336e-05, + "loss": 1.4482171630859375, + "step": 399300 + }, + { + "epoch": 53.25333333333333, + "grad_norm": 0.8674839735031128, + "learning_rate": 2.3385466666666668e-05, + "loss": 1.4432850646972657, + "step": 399400 + }, + { + "epoch": 53.266666666666666, + "grad_norm": 0.8443961143493652, + "learning_rate": 2.33788e-05, + "loss": 1.4486787414550781, + "step": 399500 + }, + { + "epoch": 53.28, + "grad_norm": 0.8612597584724426, + "learning_rate": 2.3372133333333336e-05, + "loss": 1.4492063903808594, + "step": 399600 + }, + { + "epoch": 53.29333333333334, + "grad_norm": 0.8739829659461975, + "learning_rate": 2.336546666666667e-05, + "loss": 1.4499366760253907, + "step": 399700 + }, + { + "epoch": 53.306666666666665, + "grad_norm": 0.8640965819358826, + "learning_rate": 2.33588e-05, + "loss": 1.454102783203125, + "step": 399800 + }, + { + "epoch": 53.32, + "grad_norm": 0.830761730670929, + "learning_rate": 2.3352133333333333e-05, + "loss": 1.4512599182128907, + "step": 399900 + }, + { + "epoch": 53.333333333333336, + "grad_norm": 0.8445847034454346, + "learning_rate": 2.334546666666667e-05, + "loss": 1.451502685546875, + "step": 400000 + }, + { + "epoch": 53.346666666666664, + "grad_norm": 0.8434433937072754, + "learning_rate": 2.33388e-05, + "loss": 1.4518226623535155, + "step": 400100 + }, + { + "epoch": 53.36, + "grad_norm": 0.8982335925102234, + "learning_rate": 2.3332133333333333e-05, + "loss": 1.4535255432128906, + "step": 400200 + }, + { + "epoch": 53.373333333333335, + "grad_norm": 0.8745660781860352, + "learning_rate": 2.332546666666667e-05, + "loss": 1.4575784301757813, + "step": 400300 + }, + { + "epoch": 53.38666666666666, + "grad_norm": 0.8744916319847107, + "learning_rate": 2.33188e-05, + "loss": 1.4541175842285157, + "step": 400400 + }, + { + "epoch": 53.4, + "grad_norm": 0.8759534955024719, + "learning_rate": 2.3312133333333337e-05, + "loss": 1.4521678161621094, + "step": 400500 + }, + { + "epoch": 53.413333333333334, + "grad_norm": 0.7871354222297668, + "learning_rate": 2.3305466666666666e-05, + "loss": 1.4580287170410156, + "step": 400600 + }, + { + "epoch": 53.42666666666667, + "grad_norm": 0.8808795809745789, + "learning_rate": 2.32988e-05, + "loss": 1.4611434936523438, + "step": 400700 + }, + { + "epoch": 53.44, + "grad_norm": 0.8959735035896301, + "learning_rate": 2.32922e-05, + "loss": 1.459822998046875, + "step": 400800 + }, + { + "epoch": 53.45333333333333, + "grad_norm": 0.8618682622909546, + "learning_rate": 2.3285533333333333e-05, + "loss": 1.4601959228515624, + "step": 400900 + }, + { + "epoch": 53.46666666666667, + "grad_norm": 0.8385915160179138, + "learning_rate": 2.3278866666666668e-05, + "loss": 1.464827423095703, + "step": 401000 + }, + { + "epoch": 53.48, + "grad_norm": 0.8934867978096008, + "learning_rate": 2.3272200000000004e-05, + "loss": 1.4627699279785156, + "step": 401100 + }, + { + "epoch": 53.49333333333333, + "grad_norm": 0.846880316734314, + "learning_rate": 2.3265533333333333e-05, + "loss": 1.4640000915527345, + "step": 401200 + }, + { + "epoch": 53.50666666666667, + "grad_norm": 0.8630863428115845, + "learning_rate": 2.325886666666667e-05, + "loss": 1.460301971435547, + "step": 401300 + }, + { + "epoch": 53.52, + "grad_norm": 0.8449327945709229, + "learning_rate": 2.32522e-05, + "loss": 1.4675813293457032, + "step": 401400 + }, + { + "epoch": 53.53333333333333, + "grad_norm": 0.875411331653595, + "learning_rate": 2.3245533333333336e-05, + "loss": 1.463404541015625, + "step": 401500 + }, + { + "epoch": 53.54666666666667, + "grad_norm": 0.8588878512382507, + "learning_rate": 2.323886666666667e-05, + "loss": 1.4630206298828126, + "step": 401600 + }, + { + "epoch": 53.56, + "grad_norm": 0.8418893814086914, + "learning_rate": 2.32322e-05, + "loss": 1.4669151306152344, + "step": 401700 + }, + { + "epoch": 53.57333333333333, + "grad_norm": 0.8740350604057312, + "learning_rate": 2.3225533333333337e-05, + "loss": 1.4691087341308593, + "step": 401800 + }, + { + "epoch": 53.586666666666666, + "grad_norm": 0.8648200035095215, + "learning_rate": 2.3218866666666665e-05, + "loss": 1.4714599609375, + "step": 401900 + }, + { + "epoch": 53.6, + "grad_norm": 0.8941342830657959, + "learning_rate": 2.32122e-05, + "loss": 1.4738253784179687, + "step": 402000 + }, + { + "epoch": 53.61333333333333, + "grad_norm": 0.8258972764015198, + "learning_rate": 2.3205533333333333e-05, + "loss": 1.4741175842285157, + "step": 402100 + }, + { + "epoch": 53.626666666666665, + "grad_norm": 0.8815823793411255, + "learning_rate": 2.319886666666667e-05, + "loss": 1.4661442565917968, + "step": 402200 + }, + { + "epoch": 53.64, + "grad_norm": 0.8187025785446167, + "learning_rate": 2.31922e-05, + "loss": 1.4684117126464844, + "step": 402300 + }, + { + "epoch": 53.653333333333336, + "grad_norm": 0.8981267809867859, + "learning_rate": 2.3185533333333334e-05, + "loss": 1.4723139953613282, + "step": 402400 + }, + { + "epoch": 53.666666666666664, + "grad_norm": 0.8515080213546753, + "learning_rate": 2.317886666666667e-05, + "loss": 1.47446044921875, + "step": 402500 + }, + { + "epoch": 53.68, + "grad_norm": 0.8341559171676636, + "learning_rate": 2.31722e-05, + "loss": 1.4706192016601562, + "step": 402600 + }, + { + "epoch": 53.693333333333335, + "grad_norm": 0.8234730362892151, + "learning_rate": 2.3165533333333334e-05, + "loss": 1.4750930786132812, + "step": 402700 + }, + { + "epoch": 53.70666666666666, + "grad_norm": 0.854006290435791, + "learning_rate": 2.3158866666666666e-05, + "loss": 1.4691725158691407, + "step": 402800 + }, + { + "epoch": 53.72, + "grad_norm": 0.871201753616333, + "learning_rate": 2.3152266666666665e-05, + "loss": 1.4737733459472657, + "step": 402900 + }, + { + "epoch": 53.733333333333334, + "grad_norm": 0.8627591729164124, + "learning_rate": 2.31456e-05, + "loss": 1.4719656372070313, + "step": 403000 + }, + { + "epoch": 53.74666666666667, + "grad_norm": 0.937736988067627, + "learning_rate": 2.3138933333333333e-05, + "loss": 1.4713555908203124, + "step": 403100 + }, + { + "epoch": 53.76, + "grad_norm": 0.8441616892814636, + "learning_rate": 2.313226666666667e-05, + "loss": 1.4788174438476562, + "step": 403200 + }, + { + "epoch": 53.77333333333333, + "grad_norm": 0.8520199060440063, + "learning_rate": 2.31256e-05, + "loss": 1.4727986145019532, + "step": 403300 + }, + { + "epoch": 53.78666666666667, + "grad_norm": 0.9087309837341309, + "learning_rate": 2.3118933333333333e-05, + "loss": 1.4800141906738282, + "step": 403400 + }, + { + "epoch": 53.8, + "grad_norm": 0.8902503252029419, + "learning_rate": 2.311226666666667e-05, + "loss": 1.4767436218261718, + "step": 403500 + }, + { + "epoch": 53.81333333333333, + "grad_norm": 0.8224707245826721, + "learning_rate": 2.31056e-05, + "loss": 1.4753680419921875, + "step": 403600 + }, + { + "epoch": 53.82666666666667, + "grad_norm": 0.8903453946113586, + "learning_rate": 2.3098933333333333e-05, + "loss": 1.478042449951172, + "step": 403700 + }, + { + "epoch": 53.84, + "grad_norm": 0.8610987663269043, + "learning_rate": 2.309226666666667e-05, + "loss": 1.4786669921875, + "step": 403800 + }, + { + "epoch": 53.85333333333333, + "grad_norm": 0.8663672804832458, + "learning_rate": 2.30856e-05, + "loss": 1.4798565673828126, + "step": 403900 + }, + { + "epoch": 53.86666666666667, + "grad_norm": 0.8928523659706116, + "learning_rate": 2.3078933333333337e-05, + "loss": 1.476539306640625, + "step": 404000 + }, + { + "epoch": 53.88, + "grad_norm": 0.8405497670173645, + "learning_rate": 2.3072266666666666e-05, + "loss": 1.4814393615722656, + "step": 404100 + }, + { + "epoch": 53.89333333333333, + "grad_norm": 0.9027117490768433, + "learning_rate": 2.30656e-05, + "loss": 1.48431884765625, + "step": 404200 + }, + { + "epoch": 53.906666666666666, + "grad_norm": 0.8880442380905151, + "learning_rate": 2.3058933333333334e-05, + "loss": 1.4846881103515626, + "step": 404300 + }, + { + "epoch": 53.92, + "grad_norm": 0.8744670152664185, + "learning_rate": 2.3052266666666666e-05, + "loss": 1.48605224609375, + "step": 404400 + }, + { + "epoch": 53.93333333333333, + "grad_norm": 0.9039588570594788, + "learning_rate": 2.3045600000000002e-05, + "loss": 1.483401336669922, + "step": 404500 + }, + { + "epoch": 53.946666666666665, + "grad_norm": 0.8488764762878418, + "learning_rate": 2.3038933333333334e-05, + "loss": 1.4856008911132812, + "step": 404600 + }, + { + "epoch": 53.96, + "grad_norm": 0.8746914267539978, + "learning_rate": 2.303226666666667e-05, + "loss": 1.4808277893066406, + "step": 404700 + }, + { + "epoch": 53.973333333333336, + "grad_norm": 0.859261691570282, + "learning_rate": 2.30256e-05, + "loss": 1.481783447265625, + "step": 404800 + }, + { + "epoch": 53.986666666666665, + "grad_norm": 0.8789514899253845, + "learning_rate": 2.3019e-05, + "loss": 1.4835377502441407, + "step": 404900 + }, + { + "epoch": 54.0, + "grad_norm": 0.850490927696228, + "learning_rate": 2.3012333333333337e-05, + "loss": 1.4867596435546875, + "step": 405000 + }, + { + "epoch": 54.013333333333335, + "grad_norm": 0.8333851099014282, + "learning_rate": 2.3005666666666666e-05, + "loss": 1.4200978088378906, + "step": 405100 + }, + { + "epoch": 54.026666666666664, + "grad_norm": 0.8395662903785706, + "learning_rate": 2.2999e-05, + "loss": 1.4196142578125, + "step": 405200 + }, + { + "epoch": 54.04, + "grad_norm": 0.8212039470672607, + "learning_rate": 2.2992333333333333e-05, + "loss": 1.425306854248047, + "step": 405300 + }, + { + "epoch": 54.053333333333335, + "grad_norm": 0.7914276123046875, + "learning_rate": 2.2985666666666666e-05, + "loss": 1.4204986572265625, + "step": 405400 + }, + { + "epoch": 54.06666666666667, + "grad_norm": 0.8050218820571899, + "learning_rate": 2.2979e-05, + "loss": 1.4295758056640624, + "step": 405500 + }, + { + "epoch": 54.08, + "grad_norm": 0.8524725437164307, + "learning_rate": 2.2972333333333334e-05, + "loss": 1.4244723510742188, + "step": 405600 + }, + { + "epoch": 54.093333333333334, + "grad_norm": 0.812785804271698, + "learning_rate": 2.296566666666667e-05, + "loss": 1.4250279235839844, + "step": 405700 + }, + { + "epoch": 54.10666666666667, + "grad_norm": 0.8275474905967712, + "learning_rate": 2.2959e-05, + "loss": 1.430595703125, + "step": 405800 + }, + { + "epoch": 54.12, + "grad_norm": 0.8649910688400269, + "learning_rate": 2.2952333333333334e-05, + "loss": 1.431238250732422, + "step": 405900 + }, + { + "epoch": 54.13333333333333, + "grad_norm": 0.8428074717521667, + "learning_rate": 2.294566666666667e-05, + "loss": 1.4303498840332032, + "step": 406000 + }, + { + "epoch": 54.14666666666667, + "grad_norm": 0.8515647649765015, + "learning_rate": 2.2939000000000002e-05, + "loss": 1.4309127807617188, + "step": 406100 + }, + { + "epoch": 54.16, + "grad_norm": 0.8191271424293518, + "learning_rate": 2.2932333333333334e-05, + "loss": 1.4284707641601562, + "step": 406200 + }, + { + "epoch": 54.17333333333333, + "grad_norm": 0.869966447353363, + "learning_rate": 2.2925666666666666e-05, + "loss": 1.4276429748535155, + "step": 406300 + }, + { + "epoch": 54.18666666666667, + "grad_norm": 0.8617979288101196, + "learning_rate": 2.2919000000000002e-05, + "loss": 1.4300892639160157, + "step": 406400 + }, + { + "epoch": 54.2, + "grad_norm": 0.8274814486503601, + "learning_rate": 2.2912333333333334e-05, + "loss": 1.43626708984375, + "step": 406500 + }, + { + "epoch": 54.21333333333333, + "grad_norm": 0.8476601243019104, + "learning_rate": 2.2905666666666667e-05, + "loss": 1.43748046875, + "step": 406600 + }, + { + "epoch": 54.22666666666667, + "grad_norm": 0.8396388292312622, + "learning_rate": 2.2899000000000002e-05, + "loss": 1.4325535583496094, + "step": 406700 + }, + { + "epoch": 54.24, + "grad_norm": 0.8823912143707275, + "learning_rate": 2.2892333333333334e-05, + "loss": 1.4390623474121094, + "step": 406800 + }, + { + "epoch": 54.25333333333333, + "grad_norm": 0.8651164770126343, + "learning_rate": 2.2885733333333334e-05, + "loss": 1.434818878173828, + "step": 406900 + }, + { + "epoch": 54.266666666666666, + "grad_norm": 0.8942626714706421, + "learning_rate": 2.287906666666667e-05, + "loss": 1.4403004455566406, + "step": 407000 + }, + { + "epoch": 54.28, + "grad_norm": 0.81056809425354, + "learning_rate": 2.28724e-05, + "loss": 1.437251739501953, + "step": 407100 + }, + { + "epoch": 54.29333333333334, + "grad_norm": 0.8536822199821472, + "learning_rate": 2.2865733333333334e-05, + "loss": 1.4415220642089843, + "step": 407200 + }, + { + "epoch": 54.306666666666665, + "grad_norm": 0.850678026676178, + "learning_rate": 2.2859066666666666e-05, + "loss": 1.4421534729003906, + "step": 407300 + }, + { + "epoch": 54.32, + "grad_norm": 0.8688512444496155, + "learning_rate": 2.28524e-05, + "loss": 1.4458406066894531, + "step": 407400 + }, + { + "epoch": 54.333333333333336, + "grad_norm": 0.8030053973197937, + "learning_rate": 2.2845733333333337e-05, + "loss": 1.4411915588378905, + "step": 407500 + }, + { + "epoch": 54.346666666666664, + "grad_norm": 0.8313712477684021, + "learning_rate": 2.2839066666666666e-05, + "loss": 1.4449412536621093, + "step": 407600 + }, + { + "epoch": 54.36, + "grad_norm": 0.8125160932540894, + "learning_rate": 2.2832400000000002e-05, + "loss": 1.4425570678710937, + "step": 407700 + }, + { + "epoch": 54.373333333333335, + "grad_norm": 0.8480263352394104, + "learning_rate": 2.2825733333333334e-05, + "loss": 1.4434786987304689, + "step": 407800 + }, + { + "epoch": 54.38666666666666, + "grad_norm": 0.8349584341049194, + "learning_rate": 2.281906666666667e-05, + "loss": 1.4428903198242187, + "step": 407900 + }, + { + "epoch": 54.4, + "grad_norm": 0.8668252229690552, + "learning_rate": 2.2812400000000002e-05, + "loss": 1.4503041076660157, + "step": 408000 + }, + { + "epoch": 54.413333333333334, + "grad_norm": 0.8634394407272339, + "learning_rate": 2.2805733333333334e-05, + "loss": 1.450373992919922, + "step": 408100 + }, + { + "epoch": 54.42666666666667, + "grad_norm": 0.8869138956069946, + "learning_rate": 2.279906666666667e-05, + "loss": 1.4448956298828124, + "step": 408200 + }, + { + "epoch": 54.44, + "grad_norm": 0.8381974697113037, + "learning_rate": 2.27924e-05, + "loss": 1.4506912231445312, + "step": 408300 + }, + { + "epoch": 54.45333333333333, + "grad_norm": 0.8984852433204651, + "learning_rate": 2.2785733333333334e-05, + "loss": 1.4506108093261718, + "step": 408400 + }, + { + "epoch": 54.46666666666667, + "grad_norm": 0.8341385126113892, + "learning_rate": 2.2779066666666667e-05, + "loss": 1.4481794738769531, + "step": 408500 + }, + { + "epoch": 54.48, + "grad_norm": 0.8450107574462891, + "learning_rate": 2.2772400000000002e-05, + "loss": 1.452357635498047, + "step": 408600 + }, + { + "epoch": 54.49333333333333, + "grad_norm": 0.8467490077018738, + "learning_rate": 2.2765733333333335e-05, + "loss": 1.4530352783203124, + "step": 408700 + }, + { + "epoch": 54.50666666666667, + "grad_norm": 0.8854357004165649, + "learning_rate": 2.2759066666666667e-05, + "loss": 1.4446238708496093, + "step": 408800 + }, + { + "epoch": 54.52, + "grad_norm": 0.8822206258773804, + "learning_rate": 2.2752466666666666e-05, + "loss": 1.4520494079589843, + "step": 408900 + }, + { + "epoch": 54.53333333333333, + "grad_norm": 0.8779937028884888, + "learning_rate": 2.27458e-05, + "loss": 1.4530328369140626, + "step": 409000 + }, + { + "epoch": 54.54666666666667, + "grad_norm": 0.8283098340034485, + "learning_rate": 2.2739133333333334e-05, + "loss": 1.452464599609375, + "step": 409100 + }, + { + "epoch": 54.56, + "grad_norm": 0.9348580837249756, + "learning_rate": 2.273246666666667e-05, + "loss": 1.4534254455566407, + "step": 409200 + }, + { + "epoch": 54.57333333333333, + "grad_norm": 0.8854987621307373, + "learning_rate": 2.27258e-05, + "loss": 1.4535916137695313, + "step": 409300 + }, + { + "epoch": 54.586666666666666, + "grad_norm": 0.9117794632911682, + "learning_rate": 2.2719133333333334e-05, + "loss": 1.457483367919922, + "step": 409400 + }, + { + "epoch": 54.6, + "grad_norm": 0.8725807070732117, + "learning_rate": 2.2712466666666666e-05, + "loss": 1.4577378845214843, + "step": 409500 + }, + { + "epoch": 54.61333333333333, + "grad_norm": 0.9138243198394775, + "learning_rate": 2.2705800000000002e-05, + "loss": 1.4621884155273437, + "step": 409600 + }, + { + "epoch": 54.626666666666665, + "grad_norm": 0.8634496927261353, + "learning_rate": 2.2699133333333334e-05, + "loss": 1.4550845336914062, + "step": 409700 + }, + { + "epoch": 54.64, + "grad_norm": 0.8755178451538086, + "learning_rate": 2.2692466666666667e-05, + "loss": 1.45973388671875, + "step": 409800 + }, + { + "epoch": 54.653333333333336, + "grad_norm": 0.8733647465705872, + "learning_rate": 2.2685800000000002e-05, + "loss": 1.4567936706542968, + "step": 409900 + }, + { + "epoch": 54.666666666666664, + "grad_norm": 0.8817700147628784, + "learning_rate": 2.2679133333333335e-05, + "loss": 1.4601559448242187, + "step": 410000 + }, + { + "epoch": 54.68, + "grad_norm": 0.8758354187011719, + "learning_rate": 2.2672466666666667e-05, + "loss": 1.46127685546875, + "step": 410100 + }, + { + "epoch": 54.693333333333335, + "grad_norm": 0.8473187685012817, + "learning_rate": 2.2665800000000002e-05, + "loss": 1.4609004211425782, + "step": 410200 + }, + { + "epoch": 54.70666666666666, + "grad_norm": 0.8869526386260986, + "learning_rate": 2.2659133333333335e-05, + "loss": 1.4645802307128906, + "step": 410300 + }, + { + "epoch": 54.72, + "grad_norm": 0.8255419731140137, + "learning_rate": 2.265246666666667e-05, + "loss": 1.46389892578125, + "step": 410400 + }, + { + "epoch": 54.733333333333334, + "grad_norm": 0.831465482711792, + "learning_rate": 2.26458e-05, + "loss": 1.463885498046875, + "step": 410500 + }, + { + "epoch": 54.74666666666667, + "grad_norm": 0.9016580581665039, + "learning_rate": 2.2639133333333335e-05, + "loss": 1.4642086791992188, + "step": 410600 + }, + { + "epoch": 54.76, + "grad_norm": 0.8602574467658997, + "learning_rate": 2.2632466666666667e-05, + "loss": 1.4626669311523437, + "step": 410700 + }, + { + "epoch": 54.77333333333333, + "grad_norm": 0.8852930665016174, + "learning_rate": 2.26258e-05, + "loss": 1.467047882080078, + "step": 410800 + }, + { + "epoch": 54.78666666666667, + "grad_norm": 0.8360097408294678, + "learning_rate": 2.2619133333333335e-05, + "loss": 1.4667416381835938, + "step": 410900 + }, + { + "epoch": 54.8, + "grad_norm": 0.8857517242431641, + "learning_rate": 2.2612533333333334e-05, + "loss": 1.46333740234375, + "step": 411000 + }, + { + "epoch": 54.81333333333333, + "grad_norm": 0.8212206363677979, + "learning_rate": 2.2605866666666666e-05, + "loss": 1.467716827392578, + "step": 411100 + }, + { + "epoch": 54.82666666666667, + "grad_norm": 0.8455966711044312, + "learning_rate": 2.2599200000000002e-05, + "loss": 1.4688453674316406, + "step": 411200 + }, + { + "epoch": 54.84, + "grad_norm": 0.8679726719856262, + "learning_rate": 2.2592533333333334e-05, + "loss": 1.4663377380371094, + "step": 411300 + }, + { + "epoch": 54.85333333333333, + "grad_norm": 0.8671688437461853, + "learning_rate": 2.258586666666667e-05, + "loss": 1.4694053649902343, + "step": 411400 + }, + { + "epoch": 54.86666666666667, + "grad_norm": 0.8496808409690857, + "learning_rate": 2.25792e-05, + "loss": 1.46614013671875, + "step": 411500 + }, + { + "epoch": 54.88, + "grad_norm": 0.8471501469612122, + "learning_rate": 2.2572533333333335e-05, + "loss": 1.474624786376953, + "step": 411600 + }, + { + "epoch": 54.89333333333333, + "grad_norm": 0.8803544640541077, + "learning_rate": 2.2565866666666667e-05, + "loss": 1.4705052185058594, + "step": 411700 + }, + { + "epoch": 54.906666666666666, + "grad_norm": 0.9258813858032227, + "learning_rate": 2.25592e-05, + "loss": 1.4725639343261718, + "step": 411800 + }, + { + "epoch": 54.92, + "grad_norm": 0.8967903852462769, + "learning_rate": 2.2552533333333335e-05, + "loss": 1.4728996276855468, + "step": 411900 + }, + { + "epoch": 54.93333333333333, + "grad_norm": 0.8787213563919067, + "learning_rate": 2.2545866666666667e-05, + "loss": 1.4686712646484374, + "step": 412000 + }, + { + "epoch": 54.946666666666665, + "grad_norm": 0.8793955445289612, + "learning_rate": 2.2539200000000003e-05, + "loss": 1.4694187927246094, + "step": 412100 + }, + { + "epoch": 54.96, + "grad_norm": 0.8531497120857239, + "learning_rate": 2.2532533333333335e-05, + "loss": 1.4769473266601563, + "step": 412200 + }, + { + "epoch": 54.973333333333336, + "grad_norm": 0.8888368010520935, + "learning_rate": 2.2525866666666667e-05, + "loss": 1.4720077514648438, + "step": 412300 + }, + { + "epoch": 54.986666666666665, + "grad_norm": 0.893952488899231, + "learning_rate": 2.2519200000000003e-05, + "loss": 1.470653076171875, + "step": 412400 + }, + { + "epoch": 55.0, + "grad_norm": 0.8932615518569946, + "learning_rate": 2.2512533333333335e-05, + "loss": 1.4741424560546874, + "step": 412500 + }, + { + "epoch": 55.013333333333335, + "grad_norm": 0.8639925718307495, + "learning_rate": 2.2505866666666667e-05, + "loss": 1.4064114379882813, + "step": 412600 + }, + { + "epoch": 55.026666666666664, + "grad_norm": 0.8224576711654663, + "learning_rate": 2.24992e-05, + "loss": 1.412123260498047, + "step": 412700 + }, + { + "epoch": 55.04, + "grad_norm": 0.8823965191841125, + "learning_rate": 2.2492533333333335e-05, + "loss": 1.4082809448242188, + "step": 412800 + }, + { + "epoch": 55.053333333333335, + "grad_norm": 0.860645055770874, + "learning_rate": 2.2485866666666668e-05, + "loss": 1.4148016357421875, + "step": 412900 + }, + { + "epoch": 55.06666666666667, + "grad_norm": 0.876783549785614, + "learning_rate": 2.2479266666666667e-05, + "loss": 1.4186094665527345, + "step": 413000 + }, + { + "epoch": 55.08, + "grad_norm": 0.857022762298584, + "learning_rate": 2.2472600000000002e-05, + "loss": 1.4122817993164063, + "step": 413100 + }, + { + "epoch": 55.093333333333334, + "grad_norm": 0.8272480368614197, + "learning_rate": 2.2465933333333335e-05, + "loss": 1.4125518798828125, + "step": 413200 + }, + { + "epoch": 55.10666666666667, + "grad_norm": 0.8472641110420227, + "learning_rate": 2.2459266666666667e-05, + "loss": 1.412246551513672, + "step": 413300 + }, + { + "epoch": 55.12, + "grad_norm": 0.9146363139152527, + "learning_rate": 2.2452600000000003e-05, + "loss": 1.4172994995117187, + "step": 413400 + }, + { + "epoch": 55.13333333333333, + "grad_norm": 0.8248025178909302, + "learning_rate": 2.2445933333333335e-05, + "loss": 1.4187237548828124, + "step": 413500 + }, + { + "epoch": 55.14666666666667, + "grad_norm": 0.874271810054779, + "learning_rate": 2.2439266666666667e-05, + "loss": 1.41408935546875, + "step": 413600 + }, + { + "epoch": 55.16, + "grad_norm": 0.8196364641189575, + "learning_rate": 2.24326e-05, + "loss": 1.4154962158203126, + "step": 413700 + }, + { + "epoch": 55.17333333333333, + "grad_norm": 0.8373938798904419, + "learning_rate": 2.2425933333333335e-05, + "loss": 1.4177433776855468, + "step": 413800 + }, + { + "epoch": 55.18666666666667, + "grad_norm": 0.80357426404953, + "learning_rate": 2.241926666666667e-05, + "loss": 1.4225418090820312, + "step": 413900 + }, + { + "epoch": 55.2, + "grad_norm": 0.7960191965103149, + "learning_rate": 2.24126e-05, + "loss": 1.4238473510742187, + "step": 414000 + }, + { + "epoch": 55.21333333333333, + "grad_norm": 0.8417536020278931, + "learning_rate": 2.2405933333333335e-05, + "loss": 1.4218621826171876, + "step": 414100 + }, + { + "epoch": 55.22666666666667, + "grad_norm": 0.8823829889297485, + "learning_rate": 2.2399266666666667e-05, + "loss": 1.4251284790039063, + "step": 414200 + }, + { + "epoch": 55.24, + "grad_norm": 0.8325697183609009, + "learning_rate": 2.23926e-05, + "loss": 1.4224729919433594, + "step": 414300 + }, + { + "epoch": 55.25333333333333, + "grad_norm": 0.8879687786102295, + "learning_rate": 2.2385933333333335e-05, + "loss": 1.4293856811523438, + "step": 414400 + }, + { + "epoch": 55.266666666666666, + "grad_norm": 0.8998637199401855, + "learning_rate": 2.2379266666666668e-05, + "loss": 1.4206253051757813, + "step": 414500 + }, + { + "epoch": 55.28, + "grad_norm": 0.8645532727241516, + "learning_rate": 2.2372600000000003e-05, + "loss": 1.4249339294433594, + "step": 414600 + }, + { + "epoch": 55.29333333333334, + "grad_norm": 0.9286399483680725, + "learning_rate": 2.2365933333333332e-05, + "loss": 1.4289715576171875, + "step": 414700 + }, + { + "epoch": 55.306666666666665, + "grad_norm": 0.9058271646499634, + "learning_rate": 2.2359266666666668e-05, + "loss": 1.4306143188476563, + "step": 414800 + }, + { + "epoch": 55.32, + "grad_norm": 0.8806909918785095, + "learning_rate": 2.23526e-05, + "loss": 1.4301678466796874, + "step": 414900 + }, + { + "epoch": 55.333333333333336, + "grad_norm": 0.8449000120162964, + "learning_rate": 2.2345933333333336e-05, + "loss": 1.4272940063476562, + "step": 415000 + }, + { + "epoch": 55.346666666666664, + "grad_norm": 0.8805742263793945, + "learning_rate": 2.2339333333333335e-05, + "loss": 1.4354100036621094, + "step": 415100 + }, + { + "epoch": 55.36, + "grad_norm": 0.8670299649238586, + "learning_rate": 2.2332666666666667e-05, + "loss": 1.438927001953125, + "step": 415200 + }, + { + "epoch": 55.373333333333335, + "grad_norm": 0.8531759977340698, + "learning_rate": 2.2326e-05, + "loss": 1.4368338012695312, + "step": 415300 + }, + { + "epoch": 55.38666666666666, + "grad_norm": 0.8793957829475403, + "learning_rate": 2.2319333333333335e-05, + "loss": 1.4326312255859375, + "step": 415400 + }, + { + "epoch": 55.4, + "grad_norm": 0.8549216389656067, + "learning_rate": 2.2312666666666667e-05, + "loss": 1.4309808349609374, + "step": 415500 + }, + { + "epoch": 55.413333333333334, + "grad_norm": 0.8728709816932678, + "learning_rate": 2.2306000000000003e-05, + "loss": 1.4356973266601563, + "step": 415600 + }, + { + "epoch": 55.42666666666667, + "grad_norm": 0.8787753582000732, + "learning_rate": 2.2299333333333332e-05, + "loss": 1.435236053466797, + "step": 415700 + }, + { + "epoch": 55.44, + "grad_norm": 0.8510148525238037, + "learning_rate": 2.2292666666666667e-05, + "loss": 1.4368995666503905, + "step": 415800 + }, + { + "epoch": 55.45333333333333, + "grad_norm": 0.8644002079963684, + "learning_rate": 2.2286e-05, + "loss": 1.439784698486328, + "step": 415900 + }, + { + "epoch": 55.46666666666667, + "grad_norm": 0.8767049908638, + "learning_rate": 2.2279333333333335e-05, + "loss": 1.4385952758789062, + "step": 416000 + }, + { + "epoch": 55.48, + "grad_norm": 0.9412136673927307, + "learning_rate": 2.2272666666666668e-05, + "loss": 1.4417005920410155, + "step": 416100 + }, + { + "epoch": 55.49333333333333, + "grad_norm": 0.8540670275688171, + "learning_rate": 2.2266e-05, + "loss": 1.4380416870117188, + "step": 416200 + }, + { + "epoch": 55.50666666666667, + "grad_norm": 0.8778327107429504, + "learning_rate": 2.2259333333333336e-05, + "loss": 1.4395338439941405, + "step": 416300 + }, + { + "epoch": 55.52, + "grad_norm": 0.8598795533180237, + "learning_rate": 2.2252666666666668e-05, + "loss": 1.4399174499511718, + "step": 416400 + }, + { + "epoch": 55.53333333333333, + "grad_norm": 0.8614322543144226, + "learning_rate": 2.2246e-05, + "loss": 1.4443963623046876, + "step": 416500 + }, + { + "epoch": 55.54666666666667, + "grad_norm": 0.8454569578170776, + "learning_rate": 2.2239333333333336e-05, + "loss": 1.445623321533203, + "step": 416600 + }, + { + "epoch": 55.56, + "grad_norm": 0.8974414467811584, + "learning_rate": 2.2232666666666668e-05, + "loss": 1.4426679992675782, + "step": 416700 + }, + { + "epoch": 55.57333333333333, + "grad_norm": 0.8307322859764099, + "learning_rate": 2.2226000000000004e-05, + "loss": 1.4424739074707031, + "step": 416800 + }, + { + "epoch": 55.586666666666666, + "grad_norm": 0.8424813747406006, + "learning_rate": 2.2219333333333333e-05, + "loss": 1.4472550964355468, + "step": 416900 + }, + { + "epoch": 55.6, + "grad_norm": 0.8699893355369568, + "learning_rate": 2.2212666666666668e-05, + "loss": 1.437730712890625, + "step": 417000 + }, + { + "epoch": 55.61333333333333, + "grad_norm": 0.8717418313026428, + "learning_rate": 2.2206066666666667e-05, + "loss": 1.4472259521484374, + "step": 417100 + }, + { + "epoch": 55.626666666666665, + "grad_norm": 0.868630051612854, + "learning_rate": 2.21994e-05, + "loss": 1.4468307495117188, + "step": 417200 + }, + { + "epoch": 55.64, + "grad_norm": 0.9016746878623962, + "learning_rate": 2.2192733333333335e-05, + "loss": 1.4494607543945313, + "step": 417300 + }, + { + "epoch": 55.653333333333336, + "grad_norm": 0.8572381138801575, + "learning_rate": 2.2186066666666668e-05, + "loss": 1.4463278198242187, + "step": 417400 + }, + { + "epoch": 55.666666666666664, + "grad_norm": 0.9099103808403015, + "learning_rate": 2.21794e-05, + "loss": 1.4500961303710938, + "step": 417500 + }, + { + "epoch": 55.68, + "grad_norm": 0.9122660160064697, + "learning_rate": 2.2172733333333335e-05, + "loss": 1.4482554626464843, + "step": 417600 + }, + { + "epoch": 55.693333333333335, + "grad_norm": 0.8462883830070496, + "learning_rate": 2.2166066666666668e-05, + "loss": 1.447459716796875, + "step": 417700 + }, + { + "epoch": 55.70666666666666, + "grad_norm": 0.8462685942649841, + "learning_rate": 2.2159400000000003e-05, + "loss": 1.450800323486328, + "step": 417800 + }, + { + "epoch": 55.72, + "grad_norm": 0.8912447094917297, + "learning_rate": 2.2152733333333332e-05, + "loss": 1.4528042602539062, + "step": 417900 + }, + { + "epoch": 55.733333333333334, + "grad_norm": 0.8451516628265381, + "learning_rate": 2.2146066666666668e-05, + "loss": 1.4554351806640624, + "step": 418000 + }, + { + "epoch": 55.74666666666667, + "grad_norm": 0.8609992265701294, + "learning_rate": 2.21394e-05, + "loss": 1.4512791442871094, + "step": 418100 + }, + { + "epoch": 55.76, + "grad_norm": 0.8943572640419006, + "learning_rate": 2.2132733333333332e-05, + "loss": 1.4537530517578126, + "step": 418200 + }, + { + "epoch": 55.77333333333333, + "grad_norm": 0.8712022304534912, + "learning_rate": 2.2126066666666668e-05, + "loss": 1.4538926696777343, + "step": 418300 + }, + { + "epoch": 55.78666666666667, + "grad_norm": 0.9167302846908569, + "learning_rate": 2.21194e-05, + "loss": 1.457858123779297, + "step": 418400 + }, + { + "epoch": 55.8, + "grad_norm": 0.8773967623710632, + "learning_rate": 2.2112733333333336e-05, + "loss": 1.4523738098144532, + "step": 418500 + }, + { + "epoch": 55.81333333333333, + "grad_norm": 0.9126933217048645, + "learning_rate": 2.2106066666666668e-05, + "loss": 1.4570416259765624, + "step": 418600 + }, + { + "epoch": 55.82666666666667, + "grad_norm": 0.874134361743927, + "learning_rate": 2.20994e-05, + "loss": 1.456673583984375, + "step": 418700 + }, + { + "epoch": 55.84, + "grad_norm": 0.8987679481506348, + "learning_rate": 2.2092733333333336e-05, + "loss": 1.4605398559570313, + "step": 418800 + }, + { + "epoch": 55.85333333333333, + "grad_norm": 0.875527024269104, + "learning_rate": 2.208606666666667e-05, + "loss": 1.4604426574707032, + "step": 418900 + }, + { + "epoch": 55.86666666666667, + "grad_norm": 0.8008150458335876, + "learning_rate": 2.20794e-05, + "loss": 1.4571929931640626, + "step": 419000 + }, + { + "epoch": 55.88, + "grad_norm": 0.8355134129524231, + "learning_rate": 2.2072800000000003e-05, + "loss": 1.455338134765625, + "step": 419100 + }, + { + "epoch": 55.89333333333333, + "grad_norm": 0.8764241933822632, + "learning_rate": 2.2066133333333332e-05, + "loss": 1.454462432861328, + "step": 419200 + }, + { + "epoch": 55.906666666666666, + "grad_norm": 0.9243341088294983, + "learning_rate": 2.2059466666666668e-05, + "loss": 1.4607615661621094, + "step": 419300 + }, + { + "epoch": 55.92, + "grad_norm": 0.9032407402992249, + "learning_rate": 2.20528e-05, + "loss": 1.4592213439941406, + "step": 419400 + }, + { + "epoch": 55.93333333333333, + "grad_norm": 0.8600060939788818, + "learning_rate": 2.2046133333333336e-05, + "loss": 1.4632615661621093, + "step": 419500 + }, + { + "epoch": 55.946666666666665, + "grad_norm": 0.8559837937355042, + "learning_rate": 2.2039466666666668e-05, + "loss": 1.4599595642089844, + "step": 419600 + }, + { + "epoch": 55.96, + "grad_norm": 0.8894732594490051, + "learning_rate": 2.20328e-05, + "loss": 1.461082763671875, + "step": 419700 + }, + { + "epoch": 55.973333333333336, + "grad_norm": 0.8696638345718384, + "learning_rate": 2.2026133333333336e-05, + "loss": 1.4608134460449218, + "step": 419800 + }, + { + "epoch": 55.986666666666665, + "grad_norm": 0.9014117121696472, + "learning_rate": 2.2019466666666668e-05, + "loss": 1.4612680053710938, + "step": 419900 + }, + { + "epoch": 56.0, + "grad_norm": 0.934181272983551, + "learning_rate": 2.20128e-05, + "loss": 1.4615724182128906, + "step": 420000 + }, + { + "epoch": 56.013333333333335, + "grad_norm": 0.8485944867134094, + "learning_rate": 2.2006133333333333e-05, + "loss": 1.4035435485839844, + "step": 420100 + }, + { + "epoch": 56.026666666666664, + "grad_norm": 0.8273961544036865, + "learning_rate": 2.199946666666667e-05, + "loss": 1.4005302429199218, + "step": 420200 + }, + { + "epoch": 56.04, + "grad_norm": 0.8239974975585938, + "learning_rate": 2.1992800000000004e-05, + "loss": 1.3968911743164063, + "step": 420300 + }, + { + "epoch": 56.053333333333335, + "grad_norm": 0.8783063292503357, + "learning_rate": 2.1986133333333333e-05, + "loss": 1.3976206970214844, + "step": 420400 + }, + { + "epoch": 56.06666666666667, + "grad_norm": 0.8536005616188049, + "learning_rate": 2.197946666666667e-05, + "loss": 1.4026289367675782, + "step": 420500 + }, + { + "epoch": 56.08, + "grad_norm": 0.8284283876419067, + "learning_rate": 2.19728e-05, + "loss": 1.4048745727539063, + "step": 420600 + }, + { + "epoch": 56.093333333333334, + "grad_norm": 0.8265491724014282, + "learning_rate": 2.1966133333333333e-05, + "loss": 1.4086897277832031, + "step": 420700 + }, + { + "epoch": 56.10666666666667, + "grad_norm": 0.8136721849441528, + "learning_rate": 2.195946666666667e-05, + "loss": 1.4020260620117186, + "step": 420800 + }, + { + "epoch": 56.12, + "grad_norm": 0.8343340754508972, + "learning_rate": 2.19528e-05, + "loss": 1.4086201477050782, + "step": 420900 + }, + { + "epoch": 56.13333333333333, + "grad_norm": 0.8710994720458984, + "learning_rate": 2.1946133333333337e-05, + "loss": 1.407528839111328, + "step": 421000 + }, + { + "epoch": 56.14666666666667, + "grad_norm": 0.8886542916297913, + "learning_rate": 2.1939466666666665e-05, + "loss": 1.4091169738769531, + "step": 421100 + }, + { + "epoch": 56.16, + "grad_norm": 0.8041443228721619, + "learning_rate": 2.1932866666666668e-05, + "loss": 1.410533447265625, + "step": 421200 + }, + { + "epoch": 56.17333333333333, + "grad_norm": 0.8319317102432251, + "learning_rate": 2.1926200000000004e-05, + "loss": 1.4141780090332032, + "step": 421300 + }, + { + "epoch": 56.18666666666667, + "grad_norm": 0.8654050827026367, + "learning_rate": 2.1919533333333333e-05, + "loss": 1.417386016845703, + "step": 421400 + }, + { + "epoch": 56.2, + "grad_norm": 0.889337420463562, + "learning_rate": 2.1912866666666668e-05, + "loss": 1.411129150390625, + "step": 421500 + }, + { + "epoch": 56.21333333333333, + "grad_norm": 0.8444649577140808, + "learning_rate": 2.19062e-05, + "loss": 1.4155207824707032, + "step": 421600 + }, + { + "epoch": 56.22666666666667, + "grad_norm": 0.861868143081665, + "learning_rate": 2.1899533333333333e-05, + "loss": 1.417073974609375, + "step": 421700 + }, + { + "epoch": 56.24, + "grad_norm": 0.8739286661148071, + "learning_rate": 2.189286666666667e-05, + "loss": 1.4147346496582032, + "step": 421800 + }, + { + "epoch": 56.25333333333333, + "grad_norm": 0.8628485798835754, + "learning_rate": 2.18862e-05, + "loss": 1.416077880859375, + "step": 421900 + }, + { + "epoch": 56.266666666666666, + "grad_norm": 0.8855887055397034, + "learning_rate": 2.1879533333333336e-05, + "loss": 1.4169512939453126, + "step": 422000 + }, + { + "epoch": 56.28, + "grad_norm": 0.8673357963562012, + "learning_rate": 2.1872866666666665e-05, + "loss": 1.4148150634765626, + "step": 422100 + }, + { + "epoch": 56.29333333333334, + "grad_norm": 0.8554036617279053, + "learning_rate": 2.18662e-05, + "loss": 1.420289306640625, + "step": 422200 + }, + { + "epoch": 56.306666666666665, + "grad_norm": 0.8555299639701843, + "learning_rate": 2.1859533333333333e-05, + "loss": 1.4149293518066406, + "step": 422300 + }, + { + "epoch": 56.32, + "grad_norm": 0.9046564102172852, + "learning_rate": 2.185286666666667e-05, + "loss": 1.4149856567382812, + "step": 422400 + }, + { + "epoch": 56.333333333333336, + "grad_norm": 0.8520922660827637, + "learning_rate": 2.18462e-05, + "loss": 1.4218994140625, + "step": 422500 + }, + { + "epoch": 56.346666666666664, + "grad_norm": 0.8806357383728027, + "learning_rate": 2.1839533333333333e-05, + "loss": 1.4222920227050782, + "step": 422600 + }, + { + "epoch": 56.36, + "grad_norm": 0.9276759028434753, + "learning_rate": 2.183286666666667e-05, + "loss": 1.4219160461425782, + "step": 422700 + }, + { + "epoch": 56.373333333333335, + "grad_norm": 0.8782113194465637, + "learning_rate": 2.18262e-05, + "loss": 1.4204927062988282, + "step": 422800 + }, + { + "epoch": 56.38666666666666, + "grad_norm": 0.8631399869918823, + "learning_rate": 2.1819533333333333e-05, + "loss": 1.4249102783203125, + "step": 422900 + }, + { + "epoch": 56.4, + "grad_norm": 0.8936483860015869, + "learning_rate": 2.181286666666667e-05, + "loss": 1.4240966796875, + "step": 423000 + }, + { + "epoch": 56.413333333333334, + "grad_norm": 0.8748154640197754, + "learning_rate": 2.18062e-05, + "loss": 1.4252513122558594, + "step": 423100 + }, + { + "epoch": 56.42666666666667, + "grad_norm": 0.8596419095993042, + "learning_rate": 2.17996e-05, + "loss": 1.4259548950195313, + "step": 423200 + }, + { + "epoch": 56.44, + "grad_norm": 0.8839332461357117, + "learning_rate": 2.1792933333333336e-05, + "loss": 1.4302554321289063, + "step": 423300 + }, + { + "epoch": 56.45333333333333, + "grad_norm": 0.8390047550201416, + "learning_rate": 2.178626666666667e-05, + "loss": 1.4292677307128907, + "step": 423400 + }, + { + "epoch": 56.46666666666667, + "grad_norm": 0.8832520842552185, + "learning_rate": 2.17796e-05, + "loss": 1.426236114501953, + "step": 423500 + }, + { + "epoch": 56.48, + "grad_norm": 0.8132560849189758, + "learning_rate": 2.1772933333333333e-05, + "loss": 1.434789581298828, + "step": 423600 + }, + { + "epoch": 56.49333333333333, + "grad_norm": 0.8635860085487366, + "learning_rate": 2.176626666666667e-05, + "loss": 1.4259471130371093, + "step": 423700 + }, + { + "epoch": 56.50666666666667, + "grad_norm": 0.9170502424240112, + "learning_rate": 2.17596e-05, + "loss": 1.4286590576171876, + "step": 423800 + }, + { + "epoch": 56.52, + "grad_norm": 0.8722943663597107, + "learning_rate": 2.1752933333333333e-05, + "loss": 1.4344573974609376, + "step": 423900 + }, + { + "epoch": 56.53333333333333, + "grad_norm": 0.8727033138275146, + "learning_rate": 2.174626666666667e-05, + "loss": 1.4311439514160156, + "step": 424000 + }, + { + "epoch": 56.54666666666667, + "grad_norm": 0.8507550358772278, + "learning_rate": 2.17396e-05, + "loss": 1.4281155395507812, + "step": 424100 + }, + { + "epoch": 56.56, + "grad_norm": 0.9152675271034241, + "learning_rate": 2.1732933333333337e-05, + "loss": 1.4395048522949219, + "step": 424200 + }, + { + "epoch": 56.57333333333333, + "grad_norm": 0.8492377400398254, + "learning_rate": 2.1726266666666666e-05, + "loss": 1.43418212890625, + "step": 424300 + }, + { + "epoch": 56.586666666666666, + "grad_norm": 0.9120678901672363, + "learning_rate": 2.17196e-05, + "loss": 1.4339697265625, + "step": 424400 + }, + { + "epoch": 56.6, + "grad_norm": 0.9099976420402527, + "learning_rate": 2.1712933333333333e-05, + "loss": 1.4328225708007813, + "step": 424500 + }, + { + "epoch": 56.61333333333333, + "grad_norm": 0.846580445766449, + "learning_rate": 2.1706266666666666e-05, + "loss": 1.4381451416015625, + "step": 424600 + }, + { + "epoch": 56.626666666666665, + "grad_norm": 0.8989025950431824, + "learning_rate": 2.16996e-05, + "loss": 1.4314509582519532, + "step": 424700 + }, + { + "epoch": 56.64, + "grad_norm": 0.9448224306106567, + "learning_rate": 2.1692933333333334e-05, + "loss": 1.438125457763672, + "step": 424800 + }, + { + "epoch": 56.653333333333336, + "grad_norm": 0.8047678470611572, + "learning_rate": 2.168626666666667e-05, + "loss": 1.4364503479003907, + "step": 424900 + }, + { + "epoch": 56.666666666666664, + "grad_norm": 0.8994755148887634, + "learning_rate": 2.1679599999999998e-05, + "loss": 1.4405902099609376, + "step": 425000 + }, + { + "epoch": 56.68, + "grad_norm": 0.8442021608352661, + "learning_rate": 2.1672933333333334e-05, + "loss": 1.4396397399902343, + "step": 425100 + }, + { + "epoch": 56.693333333333335, + "grad_norm": 0.8690568804740906, + "learning_rate": 2.166626666666667e-05, + "loss": 1.443184814453125, + "step": 425200 + }, + { + "epoch": 56.70666666666666, + "grad_norm": 0.861370325088501, + "learning_rate": 2.165966666666667e-05, + "loss": 1.4361355590820313, + "step": 425300 + }, + { + "epoch": 56.72, + "grad_norm": 0.8897193670272827, + "learning_rate": 2.1653e-05, + "loss": 1.4400205993652344, + "step": 425400 + }, + { + "epoch": 56.733333333333334, + "grad_norm": 0.8475616574287415, + "learning_rate": 2.1646333333333337e-05, + "loss": 1.4406410217285157, + "step": 425500 + }, + { + "epoch": 56.74666666666667, + "grad_norm": 0.8466712236404419, + "learning_rate": 2.1639666666666665e-05, + "loss": 1.441578369140625, + "step": 425600 + }, + { + "epoch": 56.76, + "grad_norm": 0.9051734805107117, + "learning_rate": 2.1633e-05, + "loss": 1.4405007934570313, + "step": 425700 + }, + { + "epoch": 56.77333333333333, + "grad_norm": 0.8877379894256592, + "learning_rate": 2.1626333333333333e-05, + "loss": 1.4456788635253905, + "step": 425800 + }, + { + "epoch": 56.78666666666667, + "grad_norm": 0.914776623249054, + "learning_rate": 2.161966666666667e-05, + "loss": 1.4449098205566406, + "step": 425900 + }, + { + "epoch": 56.8, + "grad_norm": 0.8987554311752319, + "learning_rate": 2.1613e-05, + "loss": 1.445513916015625, + "step": 426000 + }, + { + "epoch": 56.81333333333333, + "grad_norm": 0.9004293084144592, + "learning_rate": 2.1606333333333334e-05, + "loss": 1.4431794738769532, + "step": 426100 + }, + { + "epoch": 56.82666666666667, + "grad_norm": 0.8796115517616272, + "learning_rate": 2.159966666666667e-05, + "loss": 1.444052734375, + "step": 426200 + }, + { + "epoch": 56.84, + "grad_norm": 0.8850584030151367, + "learning_rate": 2.1593e-05, + "loss": 1.442793426513672, + "step": 426300 + }, + { + "epoch": 56.85333333333333, + "grad_norm": 0.8874107003211975, + "learning_rate": 2.1586333333333334e-05, + "loss": 1.445687255859375, + "step": 426400 + }, + { + "epoch": 56.86666666666667, + "grad_norm": 0.8388593196868896, + "learning_rate": 2.1579666666666666e-05, + "loss": 1.447087860107422, + "step": 426500 + }, + { + "epoch": 56.88, + "grad_norm": 0.8567925095558167, + "learning_rate": 2.1573e-05, + "loss": 1.4455339050292968, + "step": 426600 + }, + { + "epoch": 56.89333333333333, + "grad_norm": 0.905091404914856, + "learning_rate": 2.1566333333333334e-05, + "loss": 1.4496022033691407, + "step": 426700 + }, + { + "epoch": 56.906666666666666, + "grad_norm": 0.851197361946106, + "learning_rate": 2.1559666666666666e-05, + "loss": 1.4433763122558594, + "step": 426800 + }, + { + "epoch": 56.92, + "grad_norm": 0.9563655257225037, + "learning_rate": 2.1553000000000002e-05, + "loss": 1.445602264404297, + "step": 426900 + }, + { + "epoch": 56.93333333333333, + "grad_norm": 0.8808197379112244, + "learning_rate": 2.1546333333333334e-05, + "loss": 1.4505947875976561, + "step": 427000 + }, + { + "epoch": 56.946666666666665, + "grad_norm": 0.8648757338523865, + "learning_rate": 2.1539666666666666e-05, + "loss": 1.4465037536621095, + "step": 427100 + }, + { + "epoch": 56.96, + "grad_norm": 0.8864550590515137, + "learning_rate": 2.1533000000000002e-05, + "loss": 1.4506777954101562, + "step": 427200 + }, + { + "epoch": 56.973333333333336, + "grad_norm": 0.8874581456184387, + "learning_rate": 2.15264e-05, + "loss": 1.449134063720703, + "step": 427300 + }, + { + "epoch": 56.986666666666665, + "grad_norm": 0.903593897819519, + "learning_rate": 2.1519733333333333e-05, + "loss": 1.4498974609375, + "step": 427400 + }, + { + "epoch": 57.0, + "grad_norm": 0.8335684537887573, + "learning_rate": 2.151306666666667e-05, + "loss": 1.4513101196289062, + "step": 427500 + }, + { + "epoch": 57.013333333333335, + "grad_norm": 0.8453123569488525, + "learning_rate": 2.15064e-05, + "loss": 1.3873635864257812, + "step": 427600 + }, + { + "epoch": 57.026666666666664, + "grad_norm": 0.892532229423523, + "learning_rate": 2.1499733333333337e-05, + "loss": 1.3913172912597656, + "step": 427700 + }, + { + "epoch": 57.04, + "grad_norm": 0.8891882300376892, + "learning_rate": 2.1493066666666666e-05, + "loss": 1.3940931701660155, + "step": 427800 + }, + { + "epoch": 57.053333333333335, + "grad_norm": 0.8671453595161438, + "learning_rate": 2.14864e-05, + "loss": 1.392352294921875, + "step": 427900 + }, + { + "epoch": 57.06666666666667, + "grad_norm": 0.8824362754821777, + "learning_rate": 2.1479733333333334e-05, + "loss": 1.3905747985839845, + "step": 428000 + }, + { + "epoch": 57.08, + "grad_norm": 0.8569581508636475, + "learning_rate": 2.1473066666666666e-05, + "loss": 1.3913356018066407, + "step": 428100 + }, + { + "epoch": 57.093333333333334, + "grad_norm": 0.8542196750640869, + "learning_rate": 2.14664e-05, + "loss": 1.39747314453125, + "step": 428200 + }, + { + "epoch": 57.10666666666667, + "grad_norm": 0.8506782054901123, + "learning_rate": 2.1459733333333334e-05, + "loss": 1.3980393981933594, + "step": 428300 + }, + { + "epoch": 57.12, + "grad_norm": 0.8215917944908142, + "learning_rate": 2.145306666666667e-05, + "loss": 1.3985368347167968, + "step": 428400 + }, + { + "epoch": 57.13333333333333, + "grad_norm": 0.8183411955833435, + "learning_rate": 2.14464e-05, + "loss": 1.3943287658691406, + "step": 428500 + }, + { + "epoch": 57.14666666666667, + "grad_norm": 0.8586587309837341, + "learning_rate": 2.1439733333333334e-05, + "loss": 1.3957505798339844, + "step": 428600 + }, + { + "epoch": 57.16, + "grad_norm": 0.873313307762146, + "learning_rate": 2.1433066666666666e-05, + "loss": 1.3994070434570312, + "step": 428700 + }, + { + "epoch": 57.17333333333333, + "grad_norm": 0.8390573263168335, + "learning_rate": 2.1426400000000002e-05, + "loss": 1.402987060546875, + "step": 428800 + }, + { + "epoch": 57.18666666666667, + "grad_norm": 0.8784012794494629, + "learning_rate": 2.1419733333333334e-05, + "loss": 1.4021636962890625, + "step": 428900 + }, + { + "epoch": 57.2, + "grad_norm": 0.8398882150650024, + "learning_rate": 2.1413066666666667e-05, + "loss": 1.4004843139648437, + "step": 429000 + }, + { + "epoch": 57.21333333333333, + "grad_norm": 0.8533040285110474, + "learning_rate": 2.1406400000000002e-05, + "loss": 1.4055615234375, + "step": 429100 + }, + { + "epoch": 57.22666666666667, + "grad_norm": 0.8388049602508545, + "learning_rate": 2.1399733333333335e-05, + "loss": 1.4073393249511719, + "step": 429200 + }, + { + "epoch": 57.24, + "grad_norm": 0.8552389740943909, + "learning_rate": 2.1393133333333334e-05, + "loss": 1.404532928466797, + "step": 429300 + }, + { + "epoch": 57.25333333333333, + "grad_norm": 0.8817448019981384, + "learning_rate": 2.138646666666667e-05, + "loss": 1.4020608520507813, + "step": 429400 + }, + { + "epoch": 57.266666666666666, + "grad_norm": 0.8578885793685913, + "learning_rate": 2.1379799999999998e-05, + "loss": 1.4063929748535156, + "step": 429500 + }, + { + "epoch": 57.28, + "grad_norm": 0.8610025644302368, + "learning_rate": 2.1373133333333334e-05, + "loss": 1.4068283081054687, + "step": 429600 + }, + { + "epoch": 57.29333333333334, + "grad_norm": 0.9056425094604492, + "learning_rate": 2.136646666666667e-05, + "loss": 1.4069955444335938, + "step": 429700 + }, + { + "epoch": 57.306666666666665, + "grad_norm": 0.8811911344528198, + "learning_rate": 2.1359800000000002e-05, + "loss": 1.4090301513671875, + "step": 429800 + }, + { + "epoch": 57.32, + "grad_norm": 0.8970731496810913, + "learning_rate": 2.1353133333333334e-05, + "loss": 1.41206298828125, + "step": 429900 + }, + { + "epoch": 57.333333333333336, + "grad_norm": 0.8743362426757812, + "learning_rate": 2.1346466666666666e-05, + "loss": 1.4041651916503906, + "step": 430000 + }, + { + "epoch": 57.346666666666664, + "grad_norm": 0.8430378437042236, + "learning_rate": 2.1339800000000002e-05, + "loss": 1.4116816711425781, + "step": 430100 + }, + { + "epoch": 57.36, + "grad_norm": 0.8529326915740967, + "learning_rate": 2.1333133333333334e-05, + "loss": 1.409462890625, + "step": 430200 + }, + { + "epoch": 57.373333333333335, + "grad_norm": 0.8731967210769653, + "learning_rate": 2.1326466666666666e-05, + "loss": 1.4143032836914062, + "step": 430300 + }, + { + "epoch": 57.38666666666666, + "grad_norm": 0.8534825444221497, + "learning_rate": 2.1319800000000002e-05, + "loss": 1.411023406982422, + "step": 430400 + }, + { + "epoch": 57.4, + "grad_norm": 0.8644077777862549, + "learning_rate": 2.1313133333333334e-05, + "loss": 1.4160220336914062, + "step": 430500 + }, + { + "epoch": 57.413333333333334, + "grad_norm": 0.875743567943573, + "learning_rate": 2.130646666666667e-05, + "loss": 1.4175732421875, + "step": 430600 + }, + { + "epoch": 57.42666666666667, + "grad_norm": 0.8708527088165283, + "learning_rate": 2.12998e-05, + "loss": 1.4122679138183594, + "step": 430700 + }, + { + "epoch": 57.44, + "grad_norm": 0.8806803822517395, + "learning_rate": 2.1293133333333335e-05, + "loss": 1.4234275817871094, + "step": 430800 + }, + { + "epoch": 57.45333333333333, + "grad_norm": 0.8835158348083496, + "learning_rate": 2.1286466666666667e-05, + "loss": 1.4142134094238281, + "step": 430900 + }, + { + "epoch": 57.46666666666667, + "grad_norm": 0.8983718752861023, + "learning_rate": 2.12798e-05, + "loss": 1.4219779968261719, + "step": 431000 + }, + { + "epoch": 57.48, + "grad_norm": 0.8711386322975159, + "learning_rate": 2.1273133333333335e-05, + "loss": 1.4237786865234374, + "step": 431100 + }, + { + "epoch": 57.49333333333333, + "grad_norm": 0.8646780848503113, + "learning_rate": 2.1266466666666667e-05, + "loss": 1.4190533447265625, + "step": 431200 + }, + { + "epoch": 57.50666666666667, + "grad_norm": 0.863576352596283, + "learning_rate": 2.1259800000000003e-05, + "loss": 1.4201698303222656, + "step": 431300 + }, + { + "epoch": 57.52, + "grad_norm": 0.8763824105262756, + "learning_rate": 2.1253200000000002e-05, + "loss": 1.4242768859863282, + "step": 431400 + }, + { + "epoch": 57.53333333333333, + "grad_norm": 0.8644374012947083, + "learning_rate": 2.1246533333333334e-05, + "loss": 1.4194601440429688, + "step": 431500 + }, + { + "epoch": 57.54666666666667, + "grad_norm": 0.868061900138855, + "learning_rate": 2.123986666666667e-05, + "loss": 1.4254354858398437, + "step": 431600 + }, + { + "epoch": 57.56, + "grad_norm": 0.8473526239395142, + "learning_rate": 2.1233200000000002e-05, + "loss": 1.4216069030761718, + "step": 431700 + }, + { + "epoch": 57.57333333333333, + "grad_norm": 0.8738334774971008, + "learning_rate": 2.1226533333333334e-05, + "loss": 1.4271109008789062, + "step": 431800 + }, + { + "epoch": 57.586666666666666, + "grad_norm": 0.8677930235862732, + "learning_rate": 2.121986666666667e-05, + "loss": 1.4229975891113282, + "step": 431900 + }, + { + "epoch": 57.6, + "grad_norm": 0.8332538604736328, + "learning_rate": 2.12132e-05, + "loss": 1.426571807861328, + "step": 432000 + }, + { + "epoch": 57.61333333333333, + "grad_norm": 0.8856222033500671, + "learning_rate": 2.1206533333333334e-05, + "loss": 1.429196319580078, + "step": 432100 + }, + { + "epoch": 57.626666666666665, + "grad_norm": 0.8730775713920593, + "learning_rate": 2.1199866666666667e-05, + "loss": 1.4241506958007812, + "step": 432200 + }, + { + "epoch": 57.64, + "grad_norm": 0.8760560750961304, + "learning_rate": 2.1193200000000002e-05, + "loss": 1.4274005126953124, + "step": 432300 + }, + { + "epoch": 57.653333333333336, + "grad_norm": 0.8515337705612183, + "learning_rate": 2.1186533333333335e-05, + "loss": 1.4225738525390625, + "step": 432400 + }, + { + "epoch": 57.666666666666664, + "grad_norm": 0.8787199854850769, + "learning_rate": 2.1179866666666667e-05, + "loss": 1.4261997985839843, + "step": 432500 + }, + { + "epoch": 57.68, + "grad_norm": 0.8842175006866455, + "learning_rate": 2.1173200000000003e-05, + "loss": 1.4274266052246094, + "step": 432600 + }, + { + "epoch": 57.693333333333335, + "grad_norm": 0.8846668601036072, + "learning_rate": 2.1166533333333335e-05, + "loss": 1.427220001220703, + "step": 432700 + }, + { + "epoch": 57.70666666666666, + "grad_norm": 0.8565542101860046, + "learning_rate": 2.1159866666666667e-05, + "loss": 1.431591796875, + "step": 432800 + }, + { + "epoch": 57.72, + "grad_norm": 0.9259876608848572, + "learning_rate": 2.11532e-05, + "loss": 1.427034912109375, + "step": 432900 + }, + { + "epoch": 57.733333333333334, + "grad_norm": 0.8708376884460449, + "learning_rate": 2.1146533333333335e-05, + "loss": 1.4335169982910156, + "step": 433000 + }, + { + "epoch": 57.74666666666667, + "grad_norm": 0.865197479724884, + "learning_rate": 2.1139866666666667e-05, + "loss": 1.434145965576172, + "step": 433100 + }, + { + "epoch": 57.76, + "grad_norm": 0.8874461650848389, + "learning_rate": 2.11332e-05, + "loss": 1.43084228515625, + "step": 433200 + }, + { + "epoch": 57.77333333333333, + "grad_norm": 0.8610783219337463, + "learning_rate": 2.1126533333333335e-05, + "loss": 1.4350297546386719, + "step": 433300 + }, + { + "epoch": 57.78666666666667, + "grad_norm": 0.8552179932594299, + "learning_rate": 2.1119933333333334e-05, + "loss": 1.4353605651855468, + "step": 433400 + }, + { + "epoch": 57.8, + "grad_norm": 0.8936259746551514, + "learning_rate": 2.1113266666666667e-05, + "loss": 1.4357664489746094, + "step": 433500 + }, + { + "epoch": 57.81333333333333, + "grad_norm": 0.8511193990707397, + "learning_rate": 2.1106600000000002e-05, + "loss": 1.4354666137695313, + "step": 433600 + }, + { + "epoch": 57.82666666666667, + "grad_norm": 0.8757380247116089, + "learning_rate": 2.1099933333333334e-05, + "loss": 1.440109405517578, + "step": 433700 + }, + { + "epoch": 57.84, + "grad_norm": 0.921246349811554, + "learning_rate": 2.1093266666666667e-05, + "loss": 1.4303897094726563, + "step": 433800 + }, + { + "epoch": 57.85333333333333, + "grad_norm": 0.9038046002388, + "learning_rate": 2.1086600000000002e-05, + "loss": 1.43283203125, + "step": 433900 + }, + { + "epoch": 57.86666666666667, + "grad_norm": 0.9284953474998474, + "learning_rate": 2.1079933333333335e-05, + "loss": 1.439587860107422, + "step": 434000 + }, + { + "epoch": 57.88, + "grad_norm": 0.8677544593811035, + "learning_rate": 2.107326666666667e-05, + "loss": 1.432835693359375, + "step": 434100 + }, + { + "epoch": 57.89333333333333, + "grad_norm": 0.8702775239944458, + "learning_rate": 2.10666e-05, + "loss": 1.4360232543945313, + "step": 434200 + }, + { + "epoch": 57.906666666666666, + "grad_norm": 0.9052044153213501, + "learning_rate": 2.1059933333333335e-05, + "loss": 1.4358711242675781, + "step": 434300 + }, + { + "epoch": 57.92, + "grad_norm": 0.8295144438743591, + "learning_rate": 2.1053266666666667e-05, + "loss": 1.4382148742675782, + "step": 434400 + }, + { + "epoch": 57.93333333333333, + "grad_norm": 0.8926219344139099, + "learning_rate": 2.10466e-05, + "loss": 1.4372708129882812, + "step": 434500 + }, + { + "epoch": 57.946666666666665, + "grad_norm": 0.8741112351417542, + "learning_rate": 2.1039933333333335e-05, + "loss": 1.4404176330566407, + "step": 434600 + }, + { + "epoch": 57.96, + "grad_norm": 0.8536452651023865, + "learning_rate": 2.1033266666666667e-05, + "loss": 1.4389004516601562, + "step": 434700 + }, + { + "epoch": 57.973333333333336, + "grad_norm": 0.8683491945266724, + "learning_rate": 2.1026600000000003e-05, + "loss": 1.4402836608886718, + "step": 434800 + }, + { + "epoch": 57.986666666666665, + "grad_norm": 0.8583080172538757, + "learning_rate": 2.1019933333333332e-05, + "loss": 1.4441624450683594, + "step": 434900 + }, + { + "epoch": 58.0, + "grad_norm": 0.8596425652503967, + "learning_rate": 2.1013266666666667e-05, + "loss": 1.4424615478515626, + "step": 435000 + }, + { + "epoch": 58.013333333333335, + "grad_norm": 0.8734589219093323, + "learning_rate": 2.10066e-05, + "loss": 1.3811009216308594, + "step": 435100 + }, + { + "epoch": 58.026666666666664, + "grad_norm": 0.8984307050704956, + "learning_rate": 2.0999933333333335e-05, + "loss": 1.3851551818847656, + "step": 435200 + }, + { + "epoch": 58.04, + "grad_norm": 0.870807945728302, + "learning_rate": 2.0993266666666668e-05, + "loss": 1.383925323486328, + "step": 435300 + }, + { + "epoch": 58.053333333333335, + "grad_norm": 0.8193836808204651, + "learning_rate": 2.0986666666666667e-05, + "loss": 1.3839663696289062, + "step": 435400 + }, + { + "epoch": 58.06666666666667, + "grad_norm": 0.8609771132469177, + "learning_rate": 2.098e-05, + "loss": 1.3863719177246094, + "step": 435500 + }, + { + "epoch": 58.08, + "grad_norm": 0.8306235074996948, + "learning_rate": 2.0973333333333335e-05, + "loss": 1.3829759216308595, + "step": 435600 + }, + { + "epoch": 58.093333333333334, + "grad_norm": 0.8595555424690247, + "learning_rate": 2.0966666666666667e-05, + "loss": 1.3847052001953124, + "step": 435700 + }, + { + "epoch": 58.10666666666667, + "grad_norm": 0.8563652634620667, + "learning_rate": 2.0960000000000003e-05, + "loss": 1.386361083984375, + "step": 435800 + }, + { + "epoch": 58.12, + "grad_norm": 0.8658237457275391, + "learning_rate": 2.095333333333333e-05, + "loss": 1.388785400390625, + "step": 435900 + }, + { + "epoch": 58.13333333333333, + "grad_norm": 0.8627846837043762, + "learning_rate": 2.0946666666666667e-05, + "loss": 1.393494873046875, + "step": 436000 + }, + { + "epoch": 58.14666666666667, + "grad_norm": 0.8761343955993652, + "learning_rate": 2.0940000000000003e-05, + "loss": 1.3921939086914064, + "step": 436100 + }, + { + "epoch": 58.16, + "grad_norm": 0.8637253642082214, + "learning_rate": 2.0933333333333335e-05, + "loss": 1.3898490905761718, + "step": 436200 + }, + { + "epoch": 58.17333333333333, + "grad_norm": 0.8888680934906006, + "learning_rate": 2.0926666666666667e-05, + "loss": 1.3912742614746094, + "step": 436300 + }, + { + "epoch": 58.18666666666667, + "grad_norm": 0.8735535144805908, + "learning_rate": 2.092e-05, + "loss": 1.3885147094726562, + "step": 436400 + }, + { + "epoch": 58.2, + "grad_norm": 0.8976262807846069, + "learning_rate": 2.0913333333333335e-05, + "loss": 1.3988859558105469, + "step": 436500 + }, + { + "epoch": 58.21333333333333, + "grad_norm": 0.8783442974090576, + "learning_rate": 2.0906666666666668e-05, + "loss": 1.3914523315429688, + "step": 436600 + }, + { + "epoch": 58.22666666666667, + "grad_norm": 0.8859887719154358, + "learning_rate": 2.09e-05, + "loss": 1.390671844482422, + "step": 436700 + }, + { + "epoch": 58.24, + "grad_norm": 0.8783445358276367, + "learning_rate": 2.0893333333333335e-05, + "loss": 1.3934185791015625, + "step": 436800 + }, + { + "epoch": 58.25333333333333, + "grad_norm": 0.8454920053482056, + "learning_rate": 2.0886666666666668e-05, + "loss": 1.3974107360839845, + "step": 436900 + }, + { + "epoch": 58.266666666666666, + "grad_norm": 0.895043134689331, + "learning_rate": 2.0880000000000003e-05, + "loss": 1.3971817016601562, + "step": 437000 + }, + { + "epoch": 58.28, + "grad_norm": 0.9361661076545715, + "learning_rate": 2.0873333333333332e-05, + "loss": 1.39865234375, + "step": 437100 + }, + { + "epoch": 58.29333333333334, + "grad_norm": 0.8844481110572815, + "learning_rate": 2.0866666666666668e-05, + "loss": 1.3997993469238281, + "step": 437200 + }, + { + "epoch": 58.306666666666665, + "grad_norm": 0.7877687215805054, + "learning_rate": 2.086e-05, + "loss": 1.4015354919433594, + "step": 437300 + }, + { + "epoch": 58.32, + "grad_norm": 0.7823760509490967, + "learning_rate": 2.08534e-05, + "loss": 1.3993243408203124, + "step": 437400 + }, + { + "epoch": 58.333333333333336, + "grad_norm": 0.8986889123916626, + "learning_rate": 2.0846733333333335e-05, + "loss": 1.402682342529297, + "step": 437500 + }, + { + "epoch": 58.346666666666664, + "grad_norm": 0.8212663531303406, + "learning_rate": 2.0840066666666667e-05, + "loss": 1.4034190368652344, + "step": 437600 + }, + { + "epoch": 58.36, + "grad_norm": 0.865929365158081, + "learning_rate": 2.08334e-05, + "loss": 1.4008261108398437, + "step": 437700 + }, + { + "epoch": 58.373333333333335, + "grad_norm": 0.8731956481933594, + "learning_rate": 2.0826733333333335e-05, + "loss": 1.4043699645996093, + "step": 437800 + }, + { + "epoch": 58.38666666666666, + "grad_norm": 0.8673787117004395, + "learning_rate": 2.0820066666666667e-05, + "loss": 1.4046339416503906, + "step": 437900 + }, + { + "epoch": 58.4, + "grad_norm": 0.8785029053688049, + "learning_rate": 2.0813400000000003e-05, + "loss": 1.404567108154297, + "step": 438000 + }, + { + "epoch": 58.413333333333334, + "grad_norm": 0.831731379032135, + "learning_rate": 2.0806733333333335e-05, + "loss": 1.4076467895507812, + "step": 438100 + }, + { + "epoch": 58.42666666666667, + "grad_norm": 0.8772410750389099, + "learning_rate": 2.0800066666666668e-05, + "loss": 1.4042951965332031, + "step": 438200 + }, + { + "epoch": 58.44, + "grad_norm": 0.8620854616165161, + "learning_rate": 2.0793400000000003e-05, + "loss": 1.4063218688964845, + "step": 438300 + }, + { + "epoch": 58.45333333333333, + "grad_norm": 0.8375303149223328, + "learning_rate": 2.0786733333333332e-05, + "loss": 1.4067355346679689, + "step": 438400 + }, + { + "epoch": 58.46666666666667, + "grad_norm": 0.8386953473091125, + "learning_rate": 2.0780066666666668e-05, + "loss": 1.4097119140625, + "step": 438500 + }, + { + "epoch": 58.48, + "grad_norm": 0.8893094062805176, + "learning_rate": 2.07734e-05, + "loss": 1.4094076538085938, + "step": 438600 + }, + { + "epoch": 58.49333333333333, + "grad_norm": 0.8755731582641602, + "learning_rate": 2.0766733333333336e-05, + "loss": 1.4084201049804688, + "step": 438700 + }, + { + "epoch": 58.50666666666667, + "grad_norm": 0.8995118737220764, + "learning_rate": 2.0760066666666668e-05, + "loss": 1.4081155395507812, + "step": 438800 + }, + { + "epoch": 58.52, + "grad_norm": 0.8784931302070618, + "learning_rate": 2.07534e-05, + "loss": 1.4106106567382812, + "step": 438900 + }, + { + "epoch": 58.53333333333333, + "grad_norm": 0.8496900796890259, + "learning_rate": 2.0746733333333336e-05, + "loss": 1.4154051208496095, + "step": 439000 + }, + { + "epoch": 58.54666666666667, + "grad_norm": 0.9111222624778748, + "learning_rate": 2.0740066666666668e-05, + "loss": 1.4134213256835937, + "step": 439100 + }, + { + "epoch": 58.56, + "grad_norm": 0.9012070298194885, + "learning_rate": 2.07334e-05, + "loss": 1.4138330078125, + "step": 439200 + }, + { + "epoch": 58.57333333333333, + "grad_norm": 0.8513124585151672, + "learning_rate": 2.0726733333333333e-05, + "loss": 1.414625701904297, + "step": 439300 + }, + { + "epoch": 58.586666666666666, + "grad_norm": 0.8750892877578735, + "learning_rate": 2.0720133333333332e-05, + "loss": 1.4188406372070312, + "step": 439400 + }, + { + "epoch": 58.6, + "grad_norm": 0.8822923302650452, + "learning_rate": 2.0713466666666667e-05, + "loss": 1.4158790588378907, + "step": 439500 + }, + { + "epoch": 58.61333333333333, + "grad_norm": 0.8047091364860535, + "learning_rate": 2.07068e-05, + "loss": 1.414635009765625, + "step": 439600 + }, + { + "epoch": 58.626666666666665, + "grad_norm": 0.8577402234077454, + "learning_rate": 2.0700133333333335e-05, + "loss": 1.4141645812988282, + "step": 439700 + }, + { + "epoch": 58.64, + "grad_norm": 0.8721509575843811, + "learning_rate": 2.0693466666666668e-05, + "loss": 1.4171902465820312, + "step": 439800 + }, + { + "epoch": 58.653333333333336, + "grad_norm": 0.852287769317627, + "learning_rate": 2.06868e-05, + "loss": 1.4161666870117187, + "step": 439900 + }, + { + "epoch": 58.666666666666664, + "grad_norm": 0.8711374402046204, + "learning_rate": 2.0680133333333336e-05, + "loss": 1.4154249572753905, + "step": 440000 + }, + { + "epoch": 58.68, + "grad_norm": 0.9298127889633179, + "learning_rate": 2.0673466666666668e-05, + "loss": 1.416683349609375, + "step": 440100 + }, + { + "epoch": 58.693333333333335, + "grad_norm": 0.8794826865196228, + "learning_rate": 2.06668e-05, + "loss": 1.4199267578125, + "step": 440200 + }, + { + "epoch": 58.70666666666666, + "grad_norm": 0.8694095015525818, + "learning_rate": 2.0660133333333336e-05, + "loss": 1.417292938232422, + "step": 440300 + }, + { + "epoch": 58.72, + "grad_norm": 0.8695284128189087, + "learning_rate": 2.0653466666666668e-05, + "loss": 1.4181063842773438, + "step": 440400 + }, + { + "epoch": 58.733333333333334, + "grad_norm": 0.8681213855743408, + "learning_rate": 2.0646800000000004e-05, + "loss": 1.4154566955566406, + "step": 440500 + }, + { + "epoch": 58.74666666666667, + "grad_norm": 0.8768618106842041, + "learning_rate": 2.0640133333333333e-05, + "loss": 1.4236866760253906, + "step": 440600 + }, + { + "epoch": 58.76, + "grad_norm": 0.8256394267082214, + "learning_rate": 2.0633466666666668e-05, + "loss": 1.41985107421875, + "step": 440700 + }, + { + "epoch": 58.77333333333333, + "grad_norm": 0.8697381019592285, + "learning_rate": 2.06268e-05, + "loss": 1.4237368774414063, + "step": 440800 + }, + { + "epoch": 58.78666666666667, + "grad_norm": 0.8941296935081482, + "learning_rate": 2.0620133333333333e-05, + "loss": 1.4222611999511718, + "step": 440900 + }, + { + "epoch": 58.8, + "grad_norm": 0.8877124786376953, + "learning_rate": 2.061346666666667e-05, + "loss": 1.4254855346679687, + "step": 441000 + }, + { + "epoch": 58.81333333333333, + "grad_norm": 0.9030829071998596, + "learning_rate": 2.06068e-05, + "loss": 1.4235409545898436, + "step": 441100 + }, + { + "epoch": 58.82666666666667, + "grad_norm": 0.9028357267379761, + "learning_rate": 2.0600133333333336e-05, + "loss": 1.4207374572753906, + "step": 441200 + }, + { + "epoch": 58.84, + "grad_norm": 0.9188116192817688, + "learning_rate": 2.0593466666666665e-05, + "loss": 1.4223762512207032, + "step": 441300 + }, + { + "epoch": 58.85333333333333, + "grad_norm": 0.9232787489891052, + "learning_rate": 2.0586866666666668e-05, + "loss": 1.4255131530761718, + "step": 441400 + }, + { + "epoch": 58.86666666666667, + "grad_norm": 0.874527633190155, + "learning_rate": 2.0580200000000003e-05, + "loss": 1.4305357360839843, + "step": 441500 + }, + { + "epoch": 58.88, + "grad_norm": 0.8727383017539978, + "learning_rate": 2.0573533333333332e-05, + "loss": 1.4260952758789063, + "step": 441600 + }, + { + "epoch": 58.89333333333333, + "grad_norm": 0.8848722577095032, + "learning_rate": 2.0566866666666668e-05, + "loss": 1.425802001953125, + "step": 441700 + }, + { + "epoch": 58.906666666666666, + "grad_norm": 0.8801239132881165, + "learning_rate": 2.05602e-05, + "loss": 1.4275160217285157, + "step": 441800 + }, + { + "epoch": 58.92, + "grad_norm": 0.8728554248809814, + "learning_rate": 2.0553533333333332e-05, + "loss": 1.4327494812011718, + "step": 441900 + }, + { + "epoch": 58.93333333333333, + "grad_norm": 0.8942492008209229, + "learning_rate": 2.0546866666666668e-05, + "loss": 1.4299046325683593, + "step": 442000 + }, + { + "epoch": 58.946666666666665, + "grad_norm": 0.9094804525375366, + "learning_rate": 2.05402e-05, + "loss": 1.4307928466796875, + "step": 442100 + }, + { + "epoch": 58.96, + "grad_norm": 0.871557891368866, + "learning_rate": 2.0533533333333336e-05, + "loss": 1.42893310546875, + "step": 442200 + }, + { + "epoch": 58.973333333333336, + "grad_norm": 0.8748642802238464, + "learning_rate": 2.0526866666666665e-05, + "loss": 1.4272027587890626, + "step": 442300 + }, + { + "epoch": 58.986666666666665, + "grad_norm": 0.8672638535499573, + "learning_rate": 2.05202e-05, + "loss": 1.4299638366699219, + "step": 442400 + }, + { + "epoch": 59.0, + "grad_norm": 0.8816332221031189, + "learning_rate": 2.0513533333333336e-05, + "loss": 1.434586944580078, + "step": 442500 + }, + { + "epoch": 59.013333333333335, + "grad_norm": 0.8527655601501465, + "learning_rate": 2.050686666666667e-05, + "loss": 1.3740353393554687, + "step": 442600 + }, + { + "epoch": 59.026666666666664, + "grad_norm": 0.8620314598083496, + "learning_rate": 2.05002e-05, + "loss": 1.3709056091308593, + "step": 442700 + }, + { + "epoch": 59.04, + "grad_norm": 0.8591675758361816, + "learning_rate": 2.0493533333333333e-05, + "loss": 1.3708229064941406, + "step": 442800 + }, + { + "epoch": 59.053333333333335, + "grad_norm": 0.8642350435256958, + "learning_rate": 2.048686666666667e-05, + "loss": 1.373277587890625, + "step": 442900 + }, + { + "epoch": 59.06666666666667, + "grad_norm": 0.8944986462593079, + "learning_rate": 2.04802e-05, + "loss": 1.3693106079101562, + "step": 443000 + }, + { + "epoch": 59.08, + "grad_norm": 0.8772505521774292, + "learning_rate": 2.0473533333333333e-05, + "loss": 1.3786691284179688, + "step": 443100 + }, + { + "epoch": 59.093333333333334, + "grad_norm": 0.828309178352356, + "learning_rate": 2.046686666666667e-05, + "loss": 1.3788882446289064, + "step": 443200 + }, + { + "epoch": 59.10666666666667, + "grad_norm": 0.8052541613578796, + "learning_rate": 2.04602e-05, + "loss": 1.3764219665527344, + "step": 443300 + }, + { + "epoch": 59.12, + "grad_norm": 0.8364429473876953, + "learning_rate": 2.0453533333333337e-05, + "loss": 1.3792369079589843, + "step": 443400 + }, + { + "epoch": 59.13333333333333, + "grad_norm": 0.8565122485160828, + "learning_rate": 2.0446933333333336e-05, + "loss": 1.3825364685058594, + "step": 443500 + }, + { + "epoch": 59.14666666666667, + "grad_norm": 0.8464578986167908, + "learning_rate": 2.0440266666666668e-05, + "loss": 1.38104248046875, + "step": 443600 + }, + { + "epoch": 59.16, + "grad_norm": 0.8631567358970642, + "learning_rate": 2.04336e-05, + "loss": 1.383396759033203, + "step": 443700 + }, + { + "epoch": 59.17333333333333, + "grad_norm": 0.8802007436752319, + "learning_rate": 2.0426933333333333e-05, + "loss": 1.3867723083496093, + "step": 443800 + }, + { + "epoch": 59.18666666666667, + "grad_norm": 0.8594309687614441, + "learning_rate": 2.0420266666666668e-05, + "loss": 1.3859178161621093, + "step": 443900 + }, + { + "epoch": 59.2, + "grad_norm": 0.8774383068084717, + "learning_rate": 2.04136e-05, + "loss": 1.3861714172363282, + "step": 444000 + }, + { + "epoch": 59.21333333333333, + "grad_norm": 0.8826853632926941, + "learning_rate": 2.0406933333333333e-05, + "loss": 1.3873568725585939, + "step": 444100 + }, + { + "epoch": 59.22666666666667, + "grad_norm": 0.7932345867156982, + "learning_rate": 2.040026666666667e-05, + "loss": 1.387662353515625, + "step": 444200 + }, + { + "epoch": 59.24, + "grad_norm": 0.8927592635154724, + "learning_rate": 2.03936e-05, + "loss": 1.3858427429199218, + "step": 444300 + }, + { + "epoch": 59.25333333333333, + "grad_norm": 0.8642708659172058, + "learning_rate": 2.0386933333333336e-05, + "loss": 1.392750244140625, + "step": 444400 + }, + { + "epoch": 59.266666666666666, + "grad_norm": 0.8669323325157166, + "learning_rate": 2.038026666666667e-05, + "loss": 1.383953857421875, + "step": 444500 + }, + { + "epoch": 59.28, + "grad_norm": 0.8710570931434631, + "learning_rate": 2.03736e-05, + "loss": 1.3882061767578124, + "step": 444600 + }, + { + "epoch": 59.29333333333334, + "grad_norm": 0.9176151752471924, + "learning_rate": 2.0366933333333337e-05, + "loss": 1.391685791015625, + "step": 444700 + }, + { + "epoch": 59.306666666666665, + "grad_norm": 0.831787109375, + "learning_rate": 2.0360266666666665e-05, + "loss": 1.3894924926757812, + "step": 444800 + }, + { + "epoch": 59.32, + "grad_norm": 0.8599420785903931, + "learning_rate": 2.03536e-05, + "loss": 1.3913801574707032, + "step": 444900 + }, + { + "epoch": 59.333333333333336, + "grad_norm": 0.8475634455680847, + "learning_rate": 2.0346933333333333e-05, + "loss": 1.392063751220703, + "step": 445000 + }, + { + "epoch": 59.346666666666664, + "grad_norm": 0.8321338891983032, + "learning_rate": 2.034026666666667e-05, + "loss": 1.3921504211425781, + "step": 445100 + }, + { + "epoch": 59.36, + "grad_norm": 0.8083276748657227, + "learning_rate": 2.03336e-05, + "loss": 1.3912481689453124, + "step": 445200 + }, + { + "epoch": 59.373333333333335, + "grad_norm": 0.8358070850372314, + "learning_rate": 2.0326933333333334e-05, + "loss": 1.3926693725585937, + "step": 445300 + }, + { + "epoch": 59.38666666666666, + "grad_norm": 0.8596873879432678, + "learning_rate": 2.032026666666667e-05, + "loss": 1.397172088623047, + "step": 445400 + }, + { + "epoch": 59.4, + "grad_norm": 0.8789359331130981, + "learning_rate": 2.0313666666666668e-05, + "loss": 1.3950949096679688, + "step": 445500 + }, + { + "epoch": 59.413333333333334, + "grad_norm": 0.8819690346717834, + "learning_rate": 2.0307e-05, + "loss": 1.3969586181640625, + "step": 445600 + }, + { + "epoch": 59.42666666666667, + "grad_norm": 0.8241303563117981, + "learning_rate": 2.0300333333333336e-05, + "loss": 1.3977046203613281, + "step": 445700 + }, + { + "epoch": 59.44, + "grad_norm": 0.8681808114051819, + "learning_rate": 2.0293666666666665e-05, + "loss": 1.395835418701172, + "step": 445800 + }, + { + "epoch": 59.45333333333333, + "grad_norm": 0.8753331899642944, + "learning_rate": 2.0287e-05, + "loss": 1.397332763671875, + "step": 445900 + }, + { + "epoch": 59.46666666666667, + "grad_norm": 0.936934769153595, + "learning_rate": 2.0280333333333333e-05, + "loss": 1.396897430419922, + "step": 446000 + }, + { + "epoch": 59.48, + "grad_norm": 0.9100282788276672, + "learning_rate": 2.027366666666667e-05, + "loss": 1.4025897216796874, + "step": 446100 + }, + { + "epoch": 59.49333333333333, + "grad_norm": 0.8733969330787659, + "learning_rate": 2.0267e-05, + "loss": 1.4047660827636719, + "step": 446200 + }, + { + "epoch": 59.50666666666667, + "grad_norm": 0.879501461982727, + "learning_rate": 2.0260333333333333e-05, + "loss": 1.4029029846191405, + "step": 446300 + }, + { + "epoch": 59.52, + "grad_norm": 0.8982552886009216, + "learning_rate": 2.025366666666667e-05, + "loss": 1.4038697814941405, + "step": 446400 + }, + { + "epoch": 59.53333333333333, + "grad_norm": 0.853354811668396, + "learning_rate": 2.0247e-05, + "loss": 1.3982884216308593, + "step": 446500 + }, + { + "epoch": 59.54666666666667, + "grad_norm": 0.8160167336463928, + "learning_rate": 2.0240333333333333e-05, + "loss": 1.4008200073242187, + "step": 446600 + }, + { + "epoch": 59.56, + "grad_norm": 0.8860510587692261, + "learning_rate": 2.023366666666667e-05, + "loss": 1.40131591796875, + "step": 446700 + }, + { + "epoch": 59.57333333333333, + "grad_norm": 0.9074357748031616, + "learning_rate": 2.0227e-05, + "loss": 1.4021209716796874, + "step": 446800 + }, + { + "epoch": 59.586666666666666, + "grad_norm": 0.9050543904304504, + "learning_rate": 2.0220333333333337e-05, + "loss": 1.4041819763183594, + "step": 446900 + }, + { + "epoch": 59.6, + "grad_norm": 0.8996903896331787, + "learning_rate": 2.0213666666666666e-05, + "loss": 1.4066482543945313, + "step": 447000 + }, + { + "epoch": 59.61333333333333, + "grad_norm": 0.8637166619300842, + "learning_rate": 2.0207e-05, + "loss": 1.40481689453125, + "step": 447100 + }, + { + "epoch": 59.626666666666665, + "grad_norm": 0.915777325630188, + "learning_rate": 2.0200333333333334e-05, + "loss": 1.4069454956054688, + "step": 447200 + }, + { + "epoch": 59.64, + "grad_norm": 0.8580685257911682, + "learning_rate": 2.0193666666666666e-05, + "loss": 1.4054689025878906, + "step": 447300 + }, + { + "epoch": 59.653333333333336, + "grad_norm": 0.8624551296234131, + "learning_rate": 2.0187000000000002e-05, + "loss": 1.406177978515625, + "step": 447400 + }, + { + "epoch": 59.666666666666664, + "grad_norm": 0.9435851573944092, + "learning_rate": 2.01804e-05, + "loss": 1.410730743408203, + "step": 447500 + }, + { + "epoch": 59.68, + "grad_norm": 0.8933364152908325, + "learning_rate": 2.0173733333333333e-05, + "loss": 1.4079649353027344, + "step": 447600 + }, + { + "epoch": 59.693333333333335, + "grad_norm": 0.9013268351554871, + "learning_rate": 2.016706666666667e-05, + "loss": 1.4075224304199219, + "step": 447700 + }, + { + "epoch": 59.70666666666666, + "grad_norm": 0.8835455775260925, + "learning_rate": 2.01604e-05, + "loss": 1.408735809326172, + "step": 447800 + }, + { + "epoch": 59.72, + "grad_norm": 0.9013435244560242, + "learning_rate": 2.0153733333333337e-05, + "loss": 1.4129440307617187, + "step": 447900 + }, + { + "epoch": 59.733333333333334, + "grad_norm": 0.9216914772987366, + "learning_rate": 2.0147066666666666e-05, + "loss": 1.413671875, + "step": 448000 + }, + { + "epoch": 59.74666666666667, + "grad_norm": 0.9072982668876648, + "learning_rate": 2.01404e-05, + "loss": 1.4080628967285156, + "step": 448100 + }, + { + "epoch": 59.76, + "grad_norm": 0.9267192482948303, + "learning_rate": 2.0133733333333333e-05, + "loss": 1.4114108276367188, + "step": 448200 + }, + { + "epoch": 59.77333333333333, + "grad_norm": 0.8571563959121704, + "learning_rate": 2.0127066666666666e-05, + "loss": 1.4090080261230469, + "step": 448300 + }, + { + "epoch": 59.78666666666667, + "grad_norm": 0.927082896232605, + "learning_rate": 2.01204e-05, + "loss": 1.4117256164550782, + "step": 448400 + }, + { + "epoch": 59.8, + "grad_norm": 0.9052351117134094, + "learning_rate": 2.0113733333333334e-05, + "loss": 1.4136744689941407, + "step": 448500 + }, + { + "epoch": 59.81333333333333, + "grad_norm": 0.9458771347999573, + "learning_rate": 2.010706666666667e-05, + "loss": 1.4105580139160157, + "step": 448600 + }, + { + "epoch": 59.82666666666667, + "grad_norm": 0.7968136072158813, + "learning_rate": 2.0100399999999998e-05, + "loss": 1.4169776916503907, + "step": 448700 + }, + { + "epoch": 59.84, + "grad_norm": 0.8549537658691406, + "learning_rate": 2.0093733333333334e-05, + "loss": 1.4146495056152344, + "step": 448800 + }, + { + "epoch": 59.85333333333333, + "grad_norm": 0.8725696802139282, + "learning_rate": 2.008706666666667e-05, + "loss": 1.4181309509277344, + "step": 448900 + }, + { + "epoch": 59.86666666666667, + "grad_norm": 0.8683002591133118, + "learning_rate": 2.0080400000000002e-05, + "loss": 1.4133045959472657, + "step": 449000 + }, + { + "epoch": 59.88, + "grad_norm": 0.8000110387802124, + "learning_rate": 2.0073733333333334e-05, + "loss": 1.4159756469726563, + "step": 449100 + }, + { + "epoch": 59.89333333333333, + "grad_norm": 0.887690544128418, + "learning_rate": 2.0067066666666666e-05, + "loss": 1.4154435729980468, + "step": 449200 + }, + { + "epoch": 59.906666666666666, + "grad_norm": 0.8402546644210815, + "learning_rate": 2.0060400000000002e-05, + "loss": 1.4177676391601564, + "step": 449300 + }, + { + "epoch": 59.92, + "grad_norm": 0.9004342555999756, + "learning_rate": 2.0053733333333334e-05, + "loss": 1.4182846069335937, + "step": 449400 + }, + { + "epoch": 59.93333333333333, + "grad_norm": 0.8389486074447632, + "learning_rate": 2.0047066666666666e-05, + "loss": 1.4176017761230468, + "step": 449500 + }, + { + "epoch": 59.946666666666665, + "grad_norm": 0.889369785785675, + "learning_rate": 2.0040400000000002e-05, + "loss": 1.4182723999023437, + "step": 449600 + }, + { + "epoch": 59.96, + "grad_norm": 0.9012863039970398, + "learning_rate": 2.00338e-05, + "loss": 1.4193865966796875, + "step": 449700 + }, + { + "epoch": 59.973333333333336, + "grad_norm": 0.9062787294387817, + "learning_rate": 2.0027133333333333e-05, + "loss": 1.4206649780273437, + "step": 449800 + }, + { + "epoch": 59.986666666666665, + "grad_norm": 0.8925827145576477, + "learning_rate": 2.002046666666667e-05, + "loss": 1.4192771911621094, + "step": 449900 + }, + { + "epoch": 60.0, + "grad_norm": 0.9131714105606079, + "learning_rate": 2.00138e-05, + "loss": 1.4141000366210938, + "step": 450000 + }, + { + "epoch": 60.013333333333335, + "grad_norm": 0.8766162991523743, + "learning_rate": 2.0007133333333334e-05, + "loss": 1.3626673889160157, + "step": 450100 + }, + { + "epoch": 60.026666666666664, + "grad_norm": 0.8619803786277771, + "learning_rate": 2.0000466666666666e-05, + "loss": 1.365054931640625, + "step": 450200 + }, + { + "epoch": 60.04, + "grad_norm": 0.8605244159698486, + "learning_rate": 1.99938e-05, + "loss": 1.3631307983398437, + "step": 450300 + }, + { + "epoch": 60.053333333333335, + "grad_norm": 0.855178713798523, + "learning_rate": 1.9987133333333334e-05, + "loss": 1.3666217041015625, + "step": 450400 + }, + { + "epoch": 60.06666666666667, + "grad_norm": 0.8652241826057434, + "learning_rate": 1.9980466666666666e-05, + "loss": 1.36834228515625, + "step": 450500 + }, + { + "epoch": 60.08, + "grad_norm": 0.7819242477416992, + "learning_rate": 1.9973800000000002e-05, + "loss": 1.3638204956054687, + "step": 450600 + }, + { + "epoch": 60.093333333333334, + "grad_norm": 0.8712034225463867, + "learning_rate": 1.9967133333333334e-05, + "loss": 1.3687100219726562, + "step": 450700 + }, + { + "epoch": 60.10666666666667, + "grad_norm": 0.8641767501831055, + "learning_rate": 1.996046666666667e-05, + "loss": 1.3722442626953124, + "step": 450800 + }, + { + "epoch": 60.12, + "grad_norm": 0.800079882144928, + "learning_rate": 1.99538e-05, + "loss": 1.3667047119140625, + "step": 450900 + }, + { + "epoch": 60.13333333333333, + "grad_norm": 0.8609186410903931, + "learning_rate": 1.9947133333333334e-05, + "loss": 1.370550079345703, + "step": 451000 + }, + { + "epoch": 60.14666666666667, + "grad_norm": 0.8792775869369507, + "learning_rate": 1.994046666666667e-05, + "loss": 1.3739710998535157, + "step": 451100 + }, + { + "epoch": 60.16, + "grad_norm": 0.8350428938865662, + "learning_rate": 1.99338e-05, + "loss": 1.3673428344726561, + "step": 451200 + }, + { + "epoch": 60.17333333333333, + "grad_norm": 0.8641292452812195, + "learning_rate": 1.9927133333333334e-05, + "loss": 1.3756710815429687, + "step": 451300 + }, + { + "epoch": 60.18666666666667, + "grad_norm": 0.8623048663139343, + "learning_rate": 1.9920466666666667e-05, + "loss": 1.3705751037597655, + "step": 451400 + }, + { + "epoch": 60.2, + "grad_norm": 0.8862844705581665, + "learning_rate": 1.9913800000000002e-05, + "loss": 1.3776641845703126, + "step": 451500 + }, + { + "epoch": 60.21333333333333, + "grad_norm": 0.85312819480896, + "learning_rate": 1.9907133333333335e-05, + "loss": 1.3766864013671876, + "step": 451600 + }, + { + "epoch": 60.22666666666667, + "grad_norm": 0.860139787197113, + "learning_rate": 1.9900533333333334e-05, + "loss": 1.376378936767578, + "step": 451700 + }, + { + "epoch": 60.24, + "grad_norm": 0.895366370677948, + "learning_rate": 1.989386666666667e-05, + "loss": 1.3810842895507813, + "step": 451800 + }, + { + "epoch": 60.25333333333333, + "grad_norm": 0.8239558935165405, + "learning_rate": 1.98872e-05, + "loss": 1.376715850830078, + "step": 451900 + }, + { + "epoch": 60.266666666666666, + "grad_norm": 0.8806911110877991, + "learning_rate": 1.9880533333333334e-05, + "loss": 1.3794581604003906, + "step": 452000 + }, + { + "epoch": 60.28, + "grad_norm": 0.8843830823898315, + "learning_rate": 1.987386666666667e-05, + "loss": 1.3751409912109376, + "step": 452100 + }, + { + "epoch": 60.29333333333334, + "grad_norm": 0.8291395902633667, + "learning_rate": 1.98672e-05, + "loss": 1.3803631591796874, + "step": 452200 + }, + { + "epoch": 60.306666666666665, + "grad_norm": 0.8579269051551819, + "learning_rate": 1.9860533333333334e-05, + "loss": 1.379007568359375, + "step": 452300 + }, + { + "epoch": 60.32, + "grad_norm": 0.8788613080978394, + "learning_rate": 1.9853866666666666e-05, + "loss": 1.3800997924804688, + "step": 452400 + }, + { + "epoch": 60.333333333333336, + "grad_norm": 0.8551366925239563, + "learning_rate": 1.9847200000000002e-05, + "loss": 1.380692138671875, + "step": 452500 + }, + { + "epoch": 60.346666666666664, + "grad_norm": 0.897996187210083, + "learning_rate": 1.9840533333333334e-05, + "loss": 1.3825259399414063, + "step": 452600 + }, + { + "epoch": 60.36, + "grad_norm": 0.8699089288711548, + "learning_rate": 1.9833866666666667e-05, + "loss": 1.3819764709472657, + "step": 452700 + }, + { + "epoch": 60.373333333333335, + "grad_norm": 0.8734973669052124, + "learning_rate": 1.9827200000000002e-05, + "loss": 1.385391082763672, + "step": 452800 + }, + { + "epoch": 60.38666666666666, + "grad_norm": 0.8809809684753418, + "learning_rate": 1.9820533333333334e-05, + "loss": 1.3871815490722657, + "step": 452900 + }, + { + "epoch": 60.4, + "grad_norm": 0.8975648880004883, + "learning_rate": 1.9813866666666667e-05, + "loss": 1.38472412109375, + "step": 453000 + }, + { + "epoch": 60.413333333333334, + "grad_norm": 0.9081311225891113, + "learning_rate": 1.9807200000000002e-05, + "loss": 1.3865188598632812, + "step": 453100 + }, + { + "epoch": 60.42666666666667, + "grad_norm": 0.9099006652832031, + "learning_rate": 1.9800533333333335e-05, + "loss": 1.389481201171875, + "step": 453200 + }, + { + "epoch": 60.44, + "grad_norm": 0.864206850528717, + "learning_rate": 1.979386666666667e-05, + "loss": 1.390070037841797, + "step": 453300 + }, + { + "epoch": 60.45333333333333, + "grad_norm": 0.8600577116012573, + "learning_rate": 1.97872e-05, + "loss": 1.392391357421875, + "step": 453400 + }, + { + "epoch": 60.46666666666667, + "grad_norm": 0.8773865103721619, + "learning_rate": 1.9780533333333335e-05, + "loss": 1.3893141174316406, + "step": 453500 + }, + { + "epoch": 60.48, + "grad_norm": 0.8529485464096069, + "learning_rate": 1.9773866666666667e-05, + "loss": 1.3895809936523438, + "step": 453600 + }, + { + "epoch": 60.49333333333333, + "grad_norm": 0.9243431687355042, + "learning_rate": 1.9767266666666666e-05, + "loss": 1.391697540283203, + "step": 453700 + }, + { + "epoch": 60.50666666666667, + "grad_norm": 0.8365994691848755, + "learning_rate": 1.9760600000000002e-05, + "loss": 1.39140869140625, + "step": 453800 + }, + { + "epoch": 60.52, + "grad_norm": 0.8463616371154785, + "learning_rate": 1.9753933333333334e-05, + "loss": 1.3897438049316406, + "step": 453900 + }, + { + "epoch": 60.53333333333333, + "grad_norm": 0.8689169883728027, + "learning_rate": 1.9747266666666666e-05, + "loss": 1.3926591491699218, + "step": 454000 + }, + { + "epoch": 60.54666666666667, + "grad_norm": 0.8810186386108398, + "learning_rate": 1.9740600000000002e-05, + "loss": 1.3944500732421874, + "step": 454100 + }, + { + "epoch": 60.56, + "grad_norm": 0.8771687150001526, + "learning_rate": 1.9733933333333334e-05, + "loss": 1.3929228210449218, + "step": 454200 + }, + { + "epoch": 60.57333333333333, + "grad_norm": 0.854418933391571, + "learning_rate": 1.972726666666667e-05, + "loss": 1.3968455505371093, + "step": 454300 + }, + { + "epoch": 60.586666666666666, + "grad_norm": 0.8878345489501953, + "learning_rate": 1.97206e-05, + "loss": 1.3940657043457032, + "step": 454400 + }, + { + "epoch": 60.6, + "grad_norm": 0.8897739052772522, + "learning_rate": 1.9713933333333335e-05, + "loss": 1.3936965942382813, + "step": 454500 + }, + { + "epoch": 60.61333333333333, + "grad_norm": 0.9403147101402283, + "learning_rate": 1.9707266666666667e-05, + "loss": 1.3955183410644532, + "step": 454600 + }, + { + "epoch": 60.626666666666665, + "grad_norm": 0.8647699952125549, + "learning_rate": 1.97006e-05, + "loss": 1.3931178283691406, + "step": 454700 + }, + { + "epoch": 60.64, + "grad_norm": 0.9250267744064331, + "learning_rate": 1.9693933333333335e-05, + "loss": 1.394335479736328, + "step": 454800 + }, + { + "epoch": 60.653333333333336, + "grad_norm": 0.9054676294326782, + "learning_rate": 1.9687266666666667e-05, + "loss": 1.3964520263671876, + "step": 454900 + }, + { + "epoch": 60.666666666666664, + "grad_norm": 0.8482034206390381, + "learning_rate": 1.9680600000000003e-05, + "loss": 1.401461639404297, + "step": 455000 + }, + { + "epoch": 60.68, + "grad_norm": 0.8947781920433044, + "learning_rate": 1.967393333333333e-05, + "loss": 1.398545684814453, + "step": 455100 + }, + { + "epoch": 60.693333333333335, + "grad_norm": 0.834432065486908, + "learning_rate": 1.9667266666666667e-05, + "loss": 1.3957997131347657, + "step": 455200 + }, + { + "epoch": 60.70666666666666, + "grad_norm": 0.8843758702278137, + "learning_rate": 1.9660600000000003e-05, + "loss": 1.397581787109375, + "step": 455300 + }, + { + "epoch": 60.72, + "grad_norm": 0.8692967295646667, + "learning_rate": 1.9653933333333335e-05, + "loss": 1.3974429321289064, + "step": 455400 + }, + { + "epoch": 60.733333333333334, + "grad_norm": 0.8995789885520935, + "learning_rate": 1.9647266666666667e-05, + "loss": 1.3975807189941407, + "step": 455500 + }, + { + "epoch": 60.74666666666667, + "grad_norm": 0.9164907932281494, + "learning_rate": 1.96406e-05, + "loss": 1.4055183410644532, + "step": 455600 + }, + { + "epoch": 60.76, + "grad_norm": 0.8928161859512329, + "learning_rate": 1.9634e-05, + "loss": 1.4037777709960937, + "step": 455700 + }, + { + "epoch": 60.77333333333333, + "grad_norm": 0.8764446377754211, + "learning_rate": 1.9627333333333334e-05, + "loss": 1.4005415344238281, + "step": 455800 + }, + { + "epoch": 60.78666666666667, + "grad_norm": 0.904509425163269, + "learning_rate": 1.9620666666666667e-05, + "loss": 1.4026527404785156, + "step": 455900 + }, + { + "epoch": 60.8, + "grad_norm": 0.898916482925415, + "learning_rate": 1.9614000000000002e-05, + "loss": 1.407811279296875, + "step": 456000 + }, + { + "epoch": 60.81333333333333, + "grad_norm": 0.9085363149642944, + "learning_rate": 1.9607333333333335e-05, + "loss": 1.4023429870605468, + "step": 456100 + }, + { + "epoch": 60.82666666666667, + "grad_norm": 0.8209180235862732, + "learning_rate": 1.9600666666666667e-05, + "loss": 1.4042745971679687, + "step": 456200 + }, + { + "epoch": 60.84, + "grad_norm": 0.9050608277320862, + "learning_rate": 1.9594000000000002e-05, + "loss": 1.4010504150390626, + "step": 456300 + }, + { + "epoch": 60.85333333333333, + "grad_norm": 0.8617534637451172, + "learning_rate": 1.9587333333333335e-05, + "loss": 1.4049598693847656, + "step": 456400 + }, + { + "epoch": 60.86666666666667, + "grad_norm": 0.8977437615394592, + "learning_rate": 1.9580666666666667e-05, + "loss": 1.408564910888672, + "step": 456500 + }, + { + "epoch": 60.88, + "grad_norm": 0.9017003178596497, + "learning_rate": 1.9574e-05, + "loss": 1.4092807006835937, + "step": 456600 + }, + { + "epoch": 60.89333333333333, + "grad_norm": 0.8867468237876892, + "learning_rate": 1.9567333333333335e-05, + "loss": 1.4079061889648437, + "step": 456700 + }, + { + "epoch": 60.906666666666666, + "grad_norm": 0.9068670868873596, + "learning_rate": 1.9560666666666667e-05, + "loss": 1.408272705078125, + "step": 456800 + }, + { + "epoch": 60.92, + "grad_norm": 0.9402436017990112, + "learning_rate": 1.9554e-05, + "loss": 1.4082586669921875, + "step": 456900 + }, + { + "epoch": 60.93333333333333, + "grad_norm": 0.8949838280677795, + "learning_rate": 1.9547333333333335e-05, + "loss": 1.4101248168945313, + "step": 457000 + }, + { + "epoch": 60.946666666666665, + "grad_norm": 0.8980549573898315, + "learning_rate": 1.9540666666666667e-05, + "loss": 1.4082913208007812, + "step": 457100 + }, + { + "epoch": 60.96, + "grad_norm": 0.8805965781211853, + "learning_rate": 1.9534000000000003e-05, + "loss": 1.4107188415527343, + "step": 457200 + }, + { + "epoch": 60.973333333333336, + "grad_norm": 0.8333622217178345, + "learning_rate": 1.9527333333333332e-05, + "loss": 1.40792236328125, + "step": 457300 + }, + { + "epoch": 60.986666666666665, + "grad_norm": 0.872611403465271, + "learning_rate": 1.9520666666666668e-05, + "loss": 1.4117628479003905, + "step": 457400 + }, + { + "epoch": 61.0, + "grad_norm": 0.8566659092903137, + "learning_rate": 1.9514000000000003e-05, + "loss": 1.409874725341797, + "step": 457500 + }, + { + "epoch": 61.013333333333335, + "grad_norm": 0.8656761050224304, + "learning_rate": 1.9507333333333332e-05, + "loss": 1.3577760314941407, + "step": 457600 + }, + { + "epoch": 61.026666666666664, + "grad_norm": 0.8465045094490051, + "learning_rate": 1.9500733333333335e-05, + "loss": 1.358833770751953, + "step": 457700 + }, + { + "epoch": 61.04, + "grad_norm": 0.8309293985366821, + "learning_rate": 1.949406666666667e-05, + "loss": 1.356152801513672, + "step": 457800 + }, + { + "epoch": 61.053333333333335, + "grad_norm": 0.9162067174911499, + "learning_rate": 1.94874e-05, + "loss": 1.355301971435547, + "step": 457900 + }, + { + "epoch": 61.06666666666667, + "grad_norm": 0.9088298678398132, + "learning_rate": 1.9480733333333335e-05, + "loss": 1.3575556945800782, + "step": 458000 + }, + { + "epoch": 61.08, + "grad_norm": 0.8428143262863159, + "learning_rate": 1.9474066666666667e-05, + "loss": 1.3585945129394532, + "step": 458100 + }, + { + "epoch": 61.093333333333334, + "grad_norm": 0.8562920093536377, + "learning_rate": 1.9467400000000003e-05, + "loss": 1.361529541015625, + "step": 458200 + }, + { + "epoch": 61.10666666666667, + "grad_norm": 0.8210142254829407, + "learning_rate": 1.9460733333333335e-05, + "loss": 1.3608488464355468, + "step": 458300 + }, + { + "epoch": 61.12, + "grad_norm": 0.8906102180480957, + "learning_rate": 1.9454066666666667e-05, + "loss": 1.3610110473632813, + "step": 458400 + }, + { + "epoch": 61.13333333333333, + "grad_norm": 0.8572280406951904, + "learning_rate": 1.9447400000000003e-05, + "loss": 1.359154510498047, + "step": 458500 + }, + { + "epoch": 61.14666666666667, + "grad_norm": 0.8383269906044006, + "learning_rate": 1.9440733333333332e-05, + "loss": 1.3642387390136719, + "step": 458600 + }, + { + "epoch": 61.16, + "grad_norm": 0.8838930726051331, + "learning_rate": 1.9434066666666667e-05, + "loss": 1.3644644165039062, + "step": 458700 + }, + { + "epoch": 61.17333333333333, + "grad_norm": 0.8675736784934998, + "learning_rate": 1.94274e-05, + "loss": 1.3637721252441406, + "step": 458800 + }, + { + "epoch": 61.18666666666667, + "grad_norm": 0.8860127329826355, + "learning_rate": 1.9420733333333335e-05, + "loss": 1.3696493530273437, + "step": 458900 + }, + { + "epoch": 61.2, + "grad_norm": 0.8294709920883179, + "learning_rate": 1.9414066666666668e-05, + "loss": 1.3652156066894532, + "step": 459000 + }, + { + "epoch": 61.21333333333333, + "grad_norm": 0.8422327041625977, + "learning_rate": 1.94074e-05, + "loss": 1.36591064453125, + "step": 459100 + }, + { + "epoch": 61.22666666666667, + "grad_norm": 0.8764711618423462, + "learning_rate": 1.9400733333333336e-05, + "loss": 1.3690542602539062, + "step": 459200 + }, + { + "epoch": 61.24, + "grad_norm": 0.8453260064125061, + "learning_rate": 1.9394066666666668e-05, + "loss": 1.3683854675292968, + "step": 459300 + }, + { + "epoch": 61.25333333333333, + "grad_norm": 0.8774312734603882, + "learning_rate": 1.93874e-05, + "loss": 1.3740834045410155, + "step": 459400 + }, + { + "epoch": 61.266666666666666, + "grad_norm": 0.8766496777534485, + "learning_rate": 1.9380733333333336e-05, + "loss": 1.3723397827148438, + "step": 459500 + }, + { + "epoch": 61.28, + "grad_norm": 0.8459547162055969, + "learning_rate": 1.9374066666666668e-05, + "loss": 1.3714936828613282, + "step": 459600 + }, + { + "epoch": 61.29333333333334, + "grad_norm": 0.8652738332748413, + "learning_rate": 1.9367466666666667e-05, + "loss": 1.3694456481933595, + "step": 459700 + }, + { + "epoch": 61.306666666666665, + "grad_norm": 0.8927618265151978, + "learning_rate": 1.9360800000000003e-05, + "loss": 1.3731556701660157, + "step": 459800 + }, + { + "epoch": 61.32, + "grad_norm": 0.9212049841880798, + "learning_rate": 1.9354133333333335e-05, + "loss": 1.371415557861328, + "step": 459900 + }, + { + "epoch": 61.333333333333336, + "grad_norm": 0.8938565850257874, + "learning_rate": 1.9347466666666667e-05, + "loss": 1.3725595092773437, + "step": 460000 + }, + { + "epoch": 61.346666666666664, + "grad_norm": 0.9088102579116821, + "learning_rate": 1.93408e-05, + "loss": 1.368966064453125, + "step": 460100 + }, + { + "epoch": 61.36, + "grad_norm": 0.8691730499267578, + "learning_rate": 1.9334133333333335e-05, + "loss": 1.374231719970703, + "step": 460200 + }, + { + "epoch": 61.373333333333335, + "grad_norm": 0.922798752784729, + "learning_rate": 1.9327466666666667e-05, + "loss": 1.3764288330078125, + "step": 460300 + }, + { + "epoch": 61.38666666666666, + "grad_norm": 0.83963543176651, + "learning_rate": 1.93208e-05, + "loss": 1.3810987854003907, + "step": 460400 + }, + { + "epoch": 61.4, + "grad_norm": 0.839726448059082, + "learning_rate": 1.9314133333333335e-05, + "loss": 1.3756941223144532, + "step": 460500 + }, + { + "epoch": 61.413333333333334, + "grad_norm": 0.8824960589408875, + "learning_rate": 1.9307466666666668e-05, + "loss": 1.3773788452148437, + "step": 460600 + }, + { + "epoch": 61.42666666666667, + "grad_norm": 0.8845879435539246, + "learning_rate": 1.9300800000000003e-05, + "loss": 1.377089080810547, + "step": 460700 + }, + { + "epoch": 61.44, + "grad_norm": 0.8615458011627197, + "learning_rate": 1.9294133333333332e-05, + "loss": 1.3773002624511719, + "step": 460800 + }, + { + "epoch": 61.45333333333333, + "grad_norm": 0.934096097946167, + "learning_rate": 1.9287466666666668e-05, + "loss": 1.3814968872070312, + "step": 460900 + }, + { + "epoch": 61.46666666666667, + "grad_norm": 0.8833667039871216, + "learning_rate": 1.92808e-05, + "loss": 1.379684295654297, + "step": 461000 + }, + { + "epoch": 61.48, + "grad_norm": 0.8190123438835144, + "learning_rate": 1.9274133333333332e-05, + "loss": 1.3798077392578125, + "step": 461100 + }, + { + "epoch": 61.49333333333333, + "grad_norm": 0.8761352300643921, + "learning_rate": 1.9267466666666668e-05, + "loss": 1.3821427917480469, + "step": 461200 + }, + { + "epoch": 61.50666666666667, + "grad_norm": 0.8497684597969055, + "learning_rate": 1.92608e-05, + "loss": 1.3799111938476563, + "step": 461300 + }, + { + "epoch": 61.52, + "grad_norm": 0.9118313789367676, + "learning_rate": 1.9254133333333336e-05, + "loss": 1.3833085632324218, + "step": 461400 + }, + { + "epoch": 61.53333333333333, + "grad_norm": 0.8651177287101746, + "learning_rate": 1.9247466666666665e-05, + "loss": 1.3809347534179688, + "step": 461500 + }, + { + "epoch": 61.54666666666667, + "grad_norm": 0.889124870300293, + "learning_rate": 1.92408e-05, + "loss": 1.3849130249023438, + "step": 461600 + }, + { + "epoch": 61.56, + "grad_norm": 0.8513779640197754, + "learning_rate": 1.9234200000000003e-05, + "loss": 1.3853852844238281, + "step": 461700 + }, + { + "epoch": 61.57333333333333, + "grad_norm": 0.887895941734314, + "learning_rate": 1.9227533333333332e-05, + "loss": 1.3864006042480468, + "step": 461800 + }, + { + "epoch": 61.586666666666666, + "grad_norm": 0.8509908318519592, + "learning_rate": 1.9220866666666668e-05, + "loss": 1.3839459228515625, + "step": 461900 + }, + { + "epoch": 61.6, + "grad_norm": 0.9221972823143005, + "learning_rate": 1.9214200000000003e-05, + "loss": 1.383968048095703, + "step": 462000 + }, + { + "epoch": 61.61333333333333, + "grad_norm": 0.9250000715255737, + "learning_rate": 1.9207533333333332e-05, + "loss": 1.3876034545898437, + "step": 462100 + }, + { + "epoch": 61.626666666666665, + "grad_norm": 0.8646901845932007, + "learning_rate": 1.9200866666666668e-05, + "loss": 1.3860377502441406, + "step": 462200 + }, + { + "epoch": 61.64, + "grad_norm": 0.861657440662384, + "learning_rate": 1.91942e-05, + "loss": 1.383225555419922, + "step": 462300 + }, + { + "epoch": 61.653333333333336, + "grad_norm": 0.8866887092590332, + "learning_rate": 1.9187533333333336e-05, + "loss": 1.3847361755371095, + "step": 462400 + }, + { + "epoch": 61.666666666666664, + "grad_norm": 0.9262802004814148, + "learning_rate": 1.9180866666666668e-05, + "loss": 1.388157958984375, + "step": 462500 + }, + { + "epoch": 61.68, + "grad_norm": 0.9400535225868225, + "learning_rate": 1.91742e-05, + "loss": 1.393813018798828, + "step": 462600 + }, + { + "epoch": 61.693333333333335, + "grad_norm": 0.8449798822402954, + "learning_rate": 1.9167533333333336e-05, + "loss": 1.3909236145019532, + "step": 462700 + }, + { + "epoch": 61.70666666666666, + "grad_norm": 0.9139823913574219, + "learning_rate": 1.9160866666666668e-05, + "loss": 1.3890992736816405, + "step": 462800 + }, + { + "epoch": 61.72, + "grad_norm": 0.8991366028785706, + "learning_rate": 1.91542e-05, + "loss": 1.3909164428710938, + "step": 462900 + }, + { + "epoch": 61.733333333333334, + "grad_norm": 0.8757520914077759, + "learning_rate": 1.9147533333333333e-05, + "loss": 1.3896699523925782, + "step": 463000 + }, + { + "epoch": 61.74666666666667, + "grad_norm": 0.9049115180969238, + "learning_rate": 1.9140866666666668e-05, + "loss": 1.394837646484375, + "step": 463100 + }, + { + "epoch": 61.76, + "grad_norm": 0.8733699917793274, + "learning_rate": 1.91342e-05, + "loss": 1.3964109802246094, + "step": 463200 + }, + { + "epoch": 61.77333333333333, + "grad_norm": 0.8619510531425476, + "learning_rate": 1.9127533333333333e-05, + "loss": 1.3983462524414063, + "step": 463300 + }, + { + "epoch": 61.78666666666667, + "grad_norm": 0.9041216373443604, + "learning_rate": 1.912086666666667e-05, + "loss": 1.3950437927246093, + "step": 463400 + }, + { + "epoch": 61.8, + "grad_norm": 0.8376539349555969, + "learning_rate": 1.91142e-05, + "loss": 1.3959678649902343, + "step": 463500 + }, + { + "epoch": 61.81333333333333, + "grad_norm": 0.9201698899269104, + "learning_rate": 1.9107533333333336e-05, + "loss": 1.3929420471191407, + "step": 463600 + }, + { + "epoch": 61.82666666666667, + "grad_norm": 0.8924663066864014, + "learning_rate": 1.9100866666666665e-05, + "loss": 1.3928451538085938, + "step": 463700 + }, + { + "epoch": 61.84, + "grad_norm": 0.9583051204681396, + "learning_rate": 1.9094266666666668e-05, + "loss": 1.3949006652832032, + "step": 463800 + }, + { + "epoch": 61.85333333333333, + "grad_norm": 0.9100115299224854, + "learning_rate": 1.90876e-05, + "loss": 1.3972018432617188, + "step": 463900 + }, + { + "epoch": 61.86666666666667, + "grad_norm": 0.8739942908287048, + "learning_rate": 1.9080933333333336e-05, + "loss": 1.3991426086425782, + "step": 464000 + }, + { + "epoch": 61.88, + "grad_norm": 0.8799852728843689, + "learning_rate": 1.9074266666666668e-05, + "loss": 1.3998698425292968, + "step": 464100 + }, + { + "epoch": 61.89333333333333, + "grad_norm": 0.9696583151817322, + "learning_rate": 1.9067600000000004e-05, + "loss": 1.3958427429199218, + "step": 464200 + }, + { + "epoch": 61.906666666666666, + "grad_norm": 0.8549162745475769, + "learning_rate": 1.9060933333333332e-05, + "loss": 1.3939924621582032, + "step": 464300 + }, + { + "epoch": 61.92, + "grad_norm": 0.8806065320968628, + "learning_rate": 1.9054266666666668e-05, + "loss": 1.3964865112304687, + "step": 464400 + }, + { + "epoch": 61.93333333333333, + "grad_norm": 0.9188470840454102, + "learning_rate": 1.90476e-05, + "loss": 1.399241943359375, + "step": 464500 + }, + { + "epoch": 61.946666666666665, + "grad_norm": 0.8856474161148071, + "learning_rate": 1.9040933333333336e-05, + "loss": 1.3998440551757811, + "step": 464600 + }, + { + "epoch": 61.96, + "grad_norm": 0.9105949401855469, + "learning_rate": 1.903426666666667e-05, + "loss": 1.4019500732421875, + "step": 464700 + }, + { + "epoch": 61.973333333333336, + "grad_norm": 0.8759123682975769, + "learning_rate": 1.90276e-05, + "loss": 1.4000885009765625, + "step": 464800 + }, + { + "epoch": 61.986666666666665, + "grad_norm": 0.9017794728279114, + "learning_rate": 1.9020933333333336e-05, + "loss": 1.3990060424804687, + "step": 464900 + }, + { + "epoch": 62.0, + "grad_norm": 0.9188961982727051, + "learning_rate": 1.9014266666666665e-05, + "loss": 1.4041940307617187, + "step": 465000 + }, + { + "epoch": 62.013333333333335, + "grad_norm": 0.8573675751686096, + "learning_rate": 1.90076e-05, + "loss": 1.3513052368164062, + "step": 465100 + }, + { + "epoch": 62.026666666666664, + "grad_norm": 0.8655972480773926, + "learning_rate": 1.9000933333333333e-05, + "loss": 1.3455097961425782, + "step": 465200 + }, + { + "epoch": 62.04, + "grad_norm": 0.8731736540794373, + "learning_rate": 1.899426666666667e-05, + "loss": 1.3468002319335937, + "step": 465300 + }, + { + "epoch": 62.053333333333335, + "grad_norm": 0.8214830756187439, + "learning_rate": 1.89876e-05, + "loss": 1.3466973876953126, + "step": 465400 + }, + { + "epoch": 62.06666666666667, + "grad_norm": 0.8522217273712158, + "learning_rate": 1.8980933333333333e-05, + "loss": 1.3482205200195312, + "step": 465500 + }, + { + "epoch": 62.08, + "grad_norm": 0.8417600989341736, + "learning_rate": 1.897426666666667e-05, + "loss": 1.34806640625, + "step": 465600 + }, + { + "epoch": 62.093333333333334, + "grad_norm": 0.8675144910812378, + "learning_rate": 1.89676e-05, + "loss": 1.3566635131835938, + "step": 465700 + }, + { + "epoch": 62.10666666666667, + "grad_norm": 0.7986916303634644, + "learning_rate": 1.8961e-05, + "loss": 1.353138427734375, + "step": 465800 + }, + { + "epoch": 62.12, + "grad_norm": 0.8446239829063416, + "learning_rate": 1.8954333333333336e-05, + "loss": 1.3517807006835938, + "step": 465900 + }, + { + "epoch": 62.13333333333333, + "grad_norm": 0.8451570272445679, + "learning_rate": 1.8947666666666665e-05, + "loss": 1.3576107788085938, + "step": 466000 + }, + { + "epoch": 62.14666666666667, + "grad_norm": 0.8504143953323364, + "learning_rate": 1.8941e-05, + "loss": 1.357427215576172, + "step": 466100 + }, + { + "epoch": 62.16, + "grad_norm": 0.8272042274475098, + "learning_rate": 1.8934333333333336e-05, + "loss": 1.3584977722167968, + "step": 466200 + }, + { + "epoch": 62.17333333333333, + "grad_norm": 0.8340880274772644, + "learning_rate": 1.892766666666667e-05, + "loss": 1.35913330078125, + "step": 466300 + }, + { + "epoch": 62.18666666666667, + "grad_norm": 0.8207993507385254, + "learning_rate": 1.8921e-05, + "loss": 1.356055908203125, + "step": 466400 + }, + { + "epoch": 62.2, + "grad_norm": 0.8401222229003906, + "learning_rate": 1.8914333333333333e-05, + "loss": 1.3570013427734375, + "step": 466500 + }, + { + "epoch": 62.21333333333333, + "grad_norm": 0.8501874804496765, + "learning_rate": 1.890766666666667e-05, + "loss": 1.3550076293945312, + "step": 466600 + }, + { + "epoch": 62.22666666666667, + "grad_norm": 0.8478946089744568, + "learning_rate": 1.8901e-05, + "loss": 1.3626107788085937, + "step": 466700 + }, + { + "epoch": 62.24, + "grad_norm": 0.889898955821991, + "learning_rate": 1.8894333333333333e-05, + "loss": 1.3627383422851562, + "step": 466800 + }, + { + "epoch": 62.25333333333333, + "grad_norm": 0.8666733503341675, + "learning_rate": 1.888766666666667e-05, + "loss": 1.3645501708984376, + "step": 466900 + }, + { + "epoch": 62.266666666666666, + "grad_norm": 0.9081425070762634, + "learning_rate": 1.8881e-05, + "loss": 1.3609548950195312, + "step": 467000 + }, + { + "epoch": 62.28, + "grad_norm": 0.8720145225524902, + "learning_rate": 1.8874333333333337e-05, + "loss": 1.365575714111328, + "step": 467100 + }, + { + "epoch": 62.29333333333334, + "grad_norm": 0.8420373797416687, + "learning_rate": 1.8867666666666666e-05, + "loss": 1.3625498962402345, + "step": 467200 + }, + { + "epoch": 62.306666666666665, + "grad_norm": 0.8779093623161316, + "learning_rate": 1.8861e-05, + "loss": 1.3643501281738282, + "step": 467300 + }, + { + "epoch": 62.32, + "grad_norm": 0.8036565780639648, + "learning_rate": 1.8854333333333333e-05, + "loss": 1.3618597412109374, + "step": 467400 + }, + { + "epoch": 62.333333333333336, + "grad_norm": 0.8801616430282593, + "learning_rate": 1.8847666666666666e-05, + "loss": 1.3635311889648438, + "step": 467500 + }, + { + "epoch": 62.346666666666664, + "grad_norm": 0.8832975029945374, + "learning_rate": 1.8841e-05, + "loss": 1.3624273681640624, + "step": 467600 + }, + { + "epoch": 62.36, + "grad_norm": 0.8669077157974243, + "learning_rate": 1.8834333333333334e-05, + "loss": 1.3672244262695312, + "step": 467700 + }, + { + "epoch": 62.373333333333335, + "grad_norm": 0.8744094371795654, + "learning_rate": 1.8827733333333333e-05, + "loss": 1.3657164001464843, + "step": 467800 + }, + { + "epoch": 62.38666666666666, + "grad_norm": 0.8977140784263611, + "learning_rate": 1.882106666666667e-05, + "loss": 1.3728543090820313, + "step": 467900 + }, + { + "epoch": 62.4, + "grad_norm": 0.9251410961151123, + "learning_rate": 1.88144e-05, + "loss": 1.3700556945800781, + "step": 468000 + }, + { + "epoch": 62.413333333333334, + "grad_norm": 0.8600748181343079, + "learning_rate": 1.8807733333333336e-05, + "loss": 1.3633903503417968, + "step": 468100 + }, + { + "epoch": 62.42666666666667, + "grad_norm": 0.8662360310554504, + "learning_rate": 1.8801066666666665e-05, + "loss": 1.3714529418945312, + "step": 468200 + }, + { + "epoch": 62.44, + "grad_norm": 0.8972686529159546, + "learning_rate": 1.87944e-05, + "loss": 1.3743254089355468, + "step": 468300 + }, + { + "epoch": 62.45333333333333, + "grad_norm": 0.8791953921318054, + "learning_rate": 1.8787733333333337e-05, + "loss": 1.3700238037109376, + "step": 468400 + }, + { + "epoch": 62.46666666666667, + "grad_norm": 0.8646233677864075, + "learning_rate": 1.8781066666666665e-05, + "loss": 1.3702452087402344, + "step": 468500 + }, + { + "epoch": 62.48, + "grad_norm": 0.8732235431671143, + "learning_rate": 1.87744e-05, + "loss": 1.381118621826172, + "step": 468600 + }, + { + "epoch": 62.49333333333333, + "grad_norm": 0.8889748454093933, + "learning_rate": 1.8767733333333333e-05, + "loss": 1.3723052978515624, + "step": 468700 + }, + { + "epoch": 62.50666666666667, + "grad_norm": 0.8828487992286682, + "learning_rate": 1.876106666666667e-05, + "loss": 1.3749916076660156, + "step": 468800 + }, + { + "epoch": 62.52, + "grad_norm": 0.842641294002533, + "learning_rate": 1.87544e-05, + "loss": 1.3710438537597656, + "step": 468900 + }, + { + "epoch": 62.53333333333333, + "grad_norm": 0.8470684885978699, + "learning_rate": 1.8747733333333333e-05, + "loss": 1.37222412109375, + "step": 469000 + }, + { + "epoch": 62.54666666666667, + "grad_norm": 0.9085938334465027, + "learning_rate": 1.874106666666667e-05, + "loss": 1.3758197021484375, + "step": 469100 + }, + { + "epoch": 62.56, + "grad_norm": 0.8867812156677246, + "learning_rate": 1.87344e-05, + "loss": 1.3802314758300782, + "step": 469200 + }, + { + "epoch": 62.57333333333333, + "grad_norm": 0.8809147477149963, + "learning_rate": 1.8727733333333334e-05, + "loss": 1.3785780334472657, + "step": 469300 + }, + { + "epoch": 62.586666666666666, + "grad_norm": 0.8905417323112488, + "learning_rate": 1.8721066666666666e-05, + "loss": 1.3713362121582031, + "step": 469400 + }, + { + "epoch": 62.6, + "grad_norm": 0.8625428080558777, + "learning_rate": 1.87144e-05, + "loss": 1.3784394836425782, + "step": 469500 + }, + { + "epoch": 62.61333333333333, + "grad_norm": 0.8563883304595947, + "learning_rate": 1.8707733333333334e-05, + "loss": 1.3763919067382813, + "step": 469600 + }, + { + "epoch": 62.626666666666665, + "grad_norm": 0.9011384844779968, + "learning_rate": 1.8701066666666666e-05, + "loss": 1.379695587158203, + "step": 469700 + }, + { + "epoch": 62.64, + "grad_norm": 0.8625617623329163, + "learning_rate": 1.8694400000000002e-05, + "loss": 1.376241455078125, + "step": 469800 + }, + { + "epoch": 62.653333333333336, + "grad_norm": 0.9148832559585571, + "learning_rate": 1.86878e-05, + "loss": 1.3796707153320313, + "step": 469900 + }, + { + "epoch": 62.666666666666664, + "grad_norm": 0.8644863367080688, + "learning_rate": 1.8681133333333333e-05, + "loss": 1.3743251037597657, + "step": 470000 + }, + { + "epoch": 62.68, + "grad_norm": 0.8707835674285889, + "learning_rate": 1.867446666666667e-05, + "loss": 1.3785989379882813, + "step": 470100 + }, + { + "epoch": 62.693333333333335, + "grad_norm": 0.8736674785614014, + "learning_rate": 1.86678e-05, + "loss": 1.3785296630859376, + "step": 470200 + }, + { + "epoch": 62.70666666666666, + "grad_norm": 0.8863952159881592, + "learning_rate": 1.8661133333333333e-05, + "loss": 1.3846035766601563, + "step": 470300 + }, + { + "epoch": 62.72, + "grad_norm": 0.8530660271644592, + "learning_rate": 1.865446666666667e-05, + "loss": 1.3847772216796874, + "step": 470400 + }, + { + "epoch": 62.733333333333334, + "grad_norm": 0.9117617607116699, + "learning_rate": 1.86478e-05, + "loss": 1.379307403564453, + "step": 470500 + }, + { + "epoch": 62.74666666666667, + "grad_norm": 0.9356516003608704, + "learning_rate": 1.8641133333333337e-05, + "loss": 1.3868818664550782, + "step": 470600 + }, + { + "epoch": 62.76, + "grad_norm": 0.9563553929328918, + "learning_rate": 1.8634466666666666e-05, + "loss": 1.3831312561035156, + "step": 470700 + }, + { + "epoch": 62.77333333333333, + "grad_norm": 0.8613978028297424, + "learning_rate": 1.86278e-05, + "loss": 1.386735382080078, + "step": 470800 + }, + { + "epoch": 62.78666666666667, + "grad_norm": 0.8880415558815002, + "learning_rate": 1.8621133333333334e-05, + "loss": 1.3830174255371093, + "step": 470900 + }, + { + "epoch": 62.8, + "grad_norm": 0.8753419518470764, + "learning_rate": 1.861446666666667e-05, + "loss": 1.3831968688964844, + "step": 471000 + }, + { + "epoch": 62.81333333333333, + "grad_norm": 0.8973806500434875, + "learning_rate": 1.86078e-05, + "loss": 1.384782257080078, + "step": 471100 + }, + { + "epoch": 62.82666666666667, + "grad_norm": 0.8728386759757996, + "learning_rate": 1.8601133333333334e-05, + "loss": 1.3836083984375, + "step": 471200 + }, + { + "epoch": 62.84, + "grad_norm": 0.8542366623878479, + "learning_rate": 1.859446666666667e-05, + "loss": 1.3806695556640625, + "step": 471300 + }, + { + "epoch": 62.85333333333333, + "grad_norm": 0.9084987640380859, + "learning_rate": 1.85878e-05, + "loss": 1.3919306945800782, + "step": 471400 + }, + { + "epoch": 62.86666666666667, + "grad_norm": 0.9229134321212769, + "learning_rate": 1.8581133333333334e-05, + "loss": 1.3888737487792968, + "step": 471500 + }, + { + "epoch": 62.88, + "grad_norm": 0.9117254614830017, + "learning_rate": 1.8574466666666666e-05, + "loss": 1.389185791015625, + "step": 471600 + }, + { + "epoch": 62.89333333333333, + "grad_norm": 0.9002920389175415, + "learning_rate": 1.8567800000000002e-05, + "loss": 1.3870626831054687, + "step": 471700 + }, + { + "epoch": 62.906666666666666, + "grad_norm": 0.9569069743156433, + "learning_rate": 1.8561133333333334e-05, + "loss": 1.3885276794433594, + "step": 471800 + }, + { + "epoch": 62.92, + "grad_norm": 0.8567367196083069, + "learning_rate": 1.8554533333333333e-05, + "loss": 1.3927679443359375, + "step": 471900 + }, + { + "epoch": 62.93333333333333, + "grad_norm": 0.8821707963943481, + "learning_rate": 1.8547866666666666e-05, + "loss": 1.385771484375, + "step": 472000 + }, + { + "epoch": 62.946666666666665, + "grad_norm": 0.934012234210968, + "learning_rate": 1.85412e-05, + "loss": 1.3942887878417969, + "step": 472100 + }, + { + "epoch": 62.96, + "grad_norm": 0.9266797304153442, + "learning_rate": 1.8534533333333334e-05, + "loss": 1.3928118896484376, + "step": 472200 + }, + { + "epoch": 62.973333333333336, + "grad_norm": 0.9574691653251648, + "learning_rate": 1.852786666666667e-05, + "loss": 1.3905284118652343, + "step": 472300 + }, + { + "epoch": 62.986666666666665, + "grad_norm": 0.924963116645813, + "learning_rate": 1.8521199999999998e-05, + "loss": 1.3944451904296875, + "step": 472400 + }, + { + "epoch": 63.0, + "grad_norm": 0.8816106915473938, + "learning_rate": 1.8514533333333334e-05, + "loss": 1.393121795654297, + "step": 472500 + }, + { + "epoch": 63.013333333333335, + "grad_norm": 0.8383874297142029, + "learning_rate": 1.850786666666667e-05, + "loss": 1.3370849609375, + "step": 472600 + }, + { + "epoch": 63.026666666666664, + "grad_norm": 0.8403507471084595, + "learning_rate": 1.85012e-05, + "loss": 1.3425094604492187, + "step": 472700 + }, + { + "epoch": 63.04, + "grad_norm": 0.8906253576278687, + "learning_rate": 1.8494533333333334e-05, + "loss": 1.340731658935547, + "step": 472800 + }, + { + "epoch": 63.053333333333335, + "grad_norm": 0.9231695532798767, + "learning_rate": 1.8487866666666666e-05, + "loss": 1.3418489074707032, + "step": 472900 + }, + { + "epoch": 63.06666666666667, + "grad_norm": 0.879458487033844, + "learning_rate": 1.8481200000000002e-05, + "loss": 1.3442330932617188, + "step": 473000 + }, + { + "epoch": 63.08, + "grad_norm": 0.8238392472267151, + "learning_rate": 1.8474533333333334e-05, + "loss": 1.3447978210449218, + "step": 473100 + }, + { + "epoch": 63.093333333333334, + "grad_norm": 0.8179836273193359, + "learning_rate": 1.8467866666666666e-05, + "loss": 1.3443252563476562, + "step": 473200 + }, + { + "epoch": 63.10666666666667, + "grad_norm": 0.8274221420288086, + "learning_rate": 1.8461200000000002e-05, + "loss": 1.3449710083007813, + "step": 473300 + }, + { + "epoch": 63.12, + "grad_norm": 0.8805060982704163, + "learning_rate": 1.8454533333333334e-05, + "loss": 1.34772705078125, + "step": 473400 + }, + { + "epoch": 63.13333333333333, + "grad_norm": 0.856552004814148, + "learning_rate": 1.844786666666667e-05, + "loss": 1.34474609375, + "step": 473500 + }, + { + "epoch": 63.14666666666667, + "grad_norm": 0.8999550938606262, + "learning_rate": 1.84412e-05, + "loss": 1.3447769165039063, + "step": 473600 + }, + { + "epoch": 63.16, + "grad_norm": 0.8466945886611938, + "learning_rate": 1.8434533333333335e-05, + "loss": 1.3498774719238282, + "step": 473700 + }, + { + "epoch": 63.17333333333333, + "grad_norm": 0.8720507621765137, + "learning_rate": 1.8427866666666667e-05, + "loss": 1.3509268188476562, + "step": 473800 + }, + { + "epoch": 63.18666666666667, + "grad_norm": 0.8553282618522644, + "learning_rate": 1.84212e-05, + "loss": 1.3472882080078126, + "step": 473900 + }, + { + "epoch": 63.2, + "grad_norm": 0.8717467188835144, + "learning_rate": 1.84146e-05, + "loss": 1.3507821655273438, + "step": 474000 + }, + { + "epoch": 63.21333333333333, + "grad_norm": 0.8789405822753906, + "learning_rate": 1.8407933333333334e-05, + "loss": 1.3463182067871093, + "step": 474100 + }, + { + "epoch": 63.22666666666667, + "grad_norm": 0.8856403231620789, + "learning_rate": 1.8401266666666666e-05, + "loss": 1.3535433959960939, + "step": 474200 + }, + { + "epoch": 63.24, + "grad_norm": 0.8736082911491394, + "learning_rate": 1.8394600000000002e-05, + "loss": 1.353790283203125, + "step": 474300 + }, + { + "epoch": 63.25333333333333, + "grad_norm": 0.8425241112709045, + "learning_rate": 1.8387933333333334e-05, + "loss": 1.3515614318847655, + "step": 474400 + }, + { + "epoch": 63.266666666666666, + "grad_norm": 0.8841555118560791, + "learning_rate": 1.838126666666667e-05, + "loss": 1.357039794921875, + "step": 474500 + }, + { + "epoch": 63.28, + "grad_norm": 0.8851358890533447, + "learning_rate": 1.83746e-05, + "loss": 1.3571649169921876, + "step": 474600 + }, + { + "epoch": 63.29333333333334, + "grad_norm": 0.8119401335716248, + "learning_rate": 1.8367933333333334e-05, + "loss": 1.3512042236328126, + "step": 474700 + }, + { + "epoch": 63.306666666666665, + "grad_norm": 0.8968778848648071, + "learning_rate": 1.836126666666667e-05, + "loss": 1.3547596740722656, + "step": 474800 + }, + { + "epoch": 63.32, + "grad_norm": 0.9098058938980103, + "learning_rate": 1.83546e-05, + "loss": 1.3593733215332031, + "step": 474900 + }, + { + "epoch": 63.333333333333336, + "grad_norm": 0.8831583857536316, + "learning_rate": 1.8347933333333334e-05, + "loss": 1.355583953857422, + "step": 475000 + }, + { + "epoch": 63.346666666666664, + "grad_norm": 0.8631011843681335, + "learning_rate": 1.8341266666666667e-05, + "loss": 1.3582133483886718, + "step": 475100 + }, + { + "epoch": 63.36, + "grad_norm": 0.8748294115066528, + "learning_rate": 1.8334600000000002e-05, + "loss": 1.359095458984375, + "step": 475200 + }, + { + "epoch": 63.373333333333335, + "grad_norm": 0.8583943247795105, + "learning_rate": 1.8327933333333335e-05, + "loss": 1.3613153076171876, + "step": 475300 + }, + { + "epoch": 63.38666666666666, + "grad_norm": 0.8866649270057678, + "learning_rate": 1.8321266666666667e-05, + "loss": 1.3615292358398436, + "step": 475400 + }, + { + "epoch": 63.4, + "grad_norm": 0.8681355714797974, + "learning_rate": 1.8314600000000002e-05, + "loss": 1.3599000549316407, + "step": 475500 + }, + { + "epoch": 63.413333333333334, + "grad_norm": 0.9076934456825256, + "learning_rate": 1.8307933333333335e-05, + "loss": 1.3641069030761719, + "step": 475600 + }, + { + "epoch": 63.42666666666667, + "grad_norm": 0.8490332961082458, + "learning_rate": 1.8301266666666667e-05, + "loss": 1.3651712036132813, + "step": 475700 + }, + { + "epoch": 63.44, + "grad_norm": 0.8959413170814514, + "learning_rate": 1.82946e-05, + "loss": 1.3646134948730468, + "step": 475800 + }, + { + "epoch": 63.45333333333333, + "grad_norm": 0.843246340751648, + "learning_rate": 1.8287933333333335e-05, + "loss": 1.362332763671875, + "step": 475900 + }, + { + "epoch": 63.46666666666667, + "grad_norm": 0.874142050743103, + "learning_rate": 1.8281333333333334e-05, + "loss": 1.3656585693359375, + "step": 476000 + }, + { + "epoch": 63.48, + "grad_norm": 0.9227689504623413, + "learning_rate": 1.8274666666666666e-05, + "loss": 1.3628779602050782, + "step": 476100 + }, + { + "epoch": 63.49333333333333, + "grad_norm": 0.8379034399986267, + "learning_rate": 1.8268000000000002e-05, + "loss": 1.3627792358398438, + "step": 476200 + }, + { + "epoch": 63.50666666666667, + "grad_norm": 0.8998229503631592, + "learning_rate": 1.8261333333333334e-05, + "loss": 1.3685745239257812, + "step": 476300 + }, + { + "epoch": 63.52, + "grad_norm": 0.9073343276977539, + "learning_rate": 1.8254666666666666e-05, + "loss": 1.3673577880859376, + "step": 476400 + }, + { + "epoch": 63.53333333333333, + "grad_norm": 0.8960281014442444, + "learning_rate": 1.8248000000000002e-05, + "loss": 1.3650401306152344, + "step": 476500 + }, + { + "epoch": 63.54666666666667, + "grad_norm": 0.8500860333442688, + "learning_rate": 1.8241333333333334e-05, + "loss": 1.363343505859375, + "step": 476600 + }, + { + "epoch": 63.56, + "grad_norm": 0.9132857918739319, + "learning_rate": 1.8234666666666667e-05, + "loss": 1.3673420715332032, + "step": 476700 + }, + { + "epoch": 63.57333333333333, + "grad_norm": 0.851512610912323, + "learning_rate": 1.8228e-05, + "loss": 1.3654722595214843, + "step": 476800 + }, + { + "epoch": 63.586666666666666, + "grad_norm": 0.9432153701782227, + "learning_rate": 1.8221333333333335e-05, + "loss": 1.37032470703125, + "step": 476900 + }, + { + "epoch": 63.6, + "grad_norm": 0.8776945471763611, + "learning_rate": 1.821466666666667e-05, + "loss": 1.3680665588378906, + "step": 477000 + }, + { + "epoch": 63.61333333333333, + "grad_norm": 0.8363541960716248, + "learning_rate": 1.8208e-05, + "loss": 1.3700338745117187, + "step": 477100 + }, + { + "epoch": 63.626666666666665, + "grad_norm": 0.8852552771568298, + "learning_rate": 1.8201333333333335e-05, + "loss": 1.367037811279297, + "step": 477200 + }, + { + "epoch": 63.64, + "grad_norm": 0.9047751426696777, + "learning_rate": 1.8194666666666667e-05, + "loss": 1.3724662780761718, + "step": 477300 + }, + { + "epoch": 63.653333333333336, + "grad_norm": 0.9022383093833923, + "learning_rate": 1.8188e-05, + "loss": 1.36989013671875, + "step": 477400 + }, + { + "epoch": 63.666666666666664, + "grad_norm": 0.8873071670532227, + "learning_rate": 1.8181333333333335e-05, + "loss": 1.3709544372558593, + "step": 477500 + }, + { + "epoch": 63.68, + "grad_norm": 0.8178770542144775, + "learning_rate": 1.8174666666666667e-05, + "loss": 1.3764271545410156, + "step": 477600 + }, + { + "epoch": 63.693333333333335, + "grad_norm": 0.8374172449111938, + "learning_rate": 1.8168000000000003e-05, + "loss": 1.3749362182617189, + "step": 477700 + }, + { + "epoch": 63.70666666666666, + "grad_norm": 0.8704270124435425, + "learning_rate": 1.8161333333333332e-05, + "loss": 1.3716815185546876, + "step": 477800 + }, + { + "epoch": 63.72, + "grad_norm": 0.8928576111793518, + "learning_rate": 1.8154666666666667e-05, + "loss": 1.3758961486816406, + "step": 477900 + }, + { + "epoch": 63.733333333333334, + "grad_norm": 0.8924788236618042, + "learning_rate": 1.814806666666667e-05, + "loss": 1.3712451171875, + "step": 478000 + }, + { + "epoch": 63.74666666666667, + "grad_norm": 0.9000948071479797, + "learning_rate": 1.81414e-05, + "loss": 1.3741796875, + "step": 478100 + }, + { + "epoch": 63.76, + "grad_norm": 0.8834265470504761, + "learning_rate": 1.8134733333333334e-05, + "loss": 1.3737052917480468, + "step": 478200 + }, + { + "epoch": 63.77333333333333, + "grad_norm": 0.9444625377655029, + "learning_rate": 1.8128066666666667e-05, + "loss": 1.373978729248047, + "step": 478300 + }, + { + "epoch": 63.78666666666667, + "grad_norm": 0.9131369590759277, + "learning_rate": 1.81214e-05, + "loss": 1.376599578857422, + "step": 478400 + }, + { + "epoch": 63.8, + "grad_norm": 0.9047242999076843, + "learning_rate": 1.8114733333333335e-05, + "loss": 1.3785902404785155, + "step": 478500 + }, + { + "epoch": 63.81333333333333, + "grad_norm": 0.9182378649711609, + "learning_rate": 1.8108066666666667e-05, + "loss": 1.3755938720703125, + "step": 478600 + }, + { + "epoch": 63.82666666666667, + "grad_norm": 0.8585050106048584, + "learning_rate": 1.8101400000000003e-05, + "loss": 1.378345947265625, + "step": 478700 + }, + { + "epoch": 63.84, + "grad_norm": 0.9279830455780029, + "learning_rate": 1.809473333333333e-05, + "loss": 1.3787484741210938, + "step": 478800 + }, + { + "epoch": 63.85333333333333, + "grad_norm": 0.9332795739173889, + "learning_rate": 1.8088066666666667e-05, + "loss": 1.375228271484375, + "step": 478900 + }, + { + "epoch": 63.86666666666667, + "grad_norm": 0.8513908386230469, + "learning_rate": 1.8081400000000003e-05, + "loss": 1.3808787536621094, + "step": 479000 + }, + { + "epoch": 63.88, + "grad_norm": 0.8637625575065613, + "learning_rate": 1.8074733333333335e-05, + "loss": 1.3811036682128905, + "step": 479100 + }, + { + "epoch": 63.89333333333333, + "grad_norm": 0.8872289061546326, + "learning_rate": 1.8068066666666667e-05, + "loss": 1.3788679504394532, + "step": 479200 + }, + { + "epoch": 63.906666666666666, + "grad_norm": 0.8666730523109436, + "learning_rate": 1.80614e-05, + "loss": 1.3822543334960937, + "step": 479300 + }, + { + "epoch": 63.92, + "grad_norm": 0.8657490015029907, + "learning_rate": 1.8054733333333335e-05, + "loss": 1.3822019958496095, + "step": 479400 + }, + { + "epoch": 63.93333333333333, + "grad_norm": 0.8995828032493591, + "learning_rate": 1.8048066666666667e-05, + "loss": 1.3845445251464843, + "step": 479500 + }, + { + "epoch": 63.946666666666665, + "grad_norm": 0.882078230381012, + "learning_rate": 1.80414e-05, + "loss": 1.3831179809570313, + "step": 479600 + }, + { + "epoch": 63.96, + "grad_norm": 0.9140791296958923, + "learning_rate": 1.8034733333333335e-05, + "loss": 1.38243408203125, + "step": 479700 + }, + { + "epoch": 63.973333333333336, + "grad_norm": 0.9000608921051025, + "learning_rate": 1.8028066666666668e-05, + "loss": 1.3803366088867188, + "step": 479800 + }, + { + "epoch": 63.986666666666665, + "grad_norm": 0.8583875894546509, + "learning_rate": 1.8021400000000003e-05, + "loss": 1.378529052734375, + "step": 479900 + }, + { + "epoch": 64.0, + "grad_norm": 0.8945102095603943, + "learning_rate": 1.8014800000000002e-05, + "loss": 1.384607696533203, + "step": 480000 + }, + { + "epoch": 64.01333333333334, + "grad_norm": 0.8934009671211243, + "learning_rate": 1.8008133333333335e-05, + "loss": 1.3323703002929688, + "step": 480100 + }, + { + "epoch": 64.02666666666667, + "grad_norm": 0.9144300222396851, + "learning_rate": 1.8001466666666667e-05, + "loss": 1.330888671875, + "step": 480200 + }, + { + "epoch": 64.04, + "grad_norm": 0.8587374091148376, + "learning_rate": 1.79948e-05, + "loss": 1.3373068237304688, + "step": 480300 + }, + { + "epoch": 64.05333333333333, + "grad_norm": 0.8584490418434143, + "learning_rate": 1.7988133333333335e-05, + "loss": 1.3341929626464843, + "step": 480400 + }, + { + "epoch": 64.06666666666666, + "grad_norm": 0.8442391753196716, + "learning_rate": 1.7981466666666667e-05, + "loss": 1.3336114501953125, + "step": 480500 + }, + { + "epoch": 64.08, + "grad_norm": 0.8665919899940491, + "learning_rate": 1.79748e-05, + "loss": 1.338314208984375, + "step": 480600 + }, + { + "epoch": 64.09333333333333, + "grad_norm": 0.8454016447067261, + "learning_rate": 1.7968133333333335e-05, + "loss": 1.3366471862792968, + "step": 480700 + }, + { + "epoch": 64.10666666666667, + "grad_norm": 0.8860534429550171, + "learning_rate": 1.7961466666666667e-05, + "loss": 1.3377793884277345, + "step": 480800 + }, + { + "epoch": 64.12, + "grad_norm": 0.8886109590530396, + "learning_rate": 1.7954800000000003e-05, + "loss": 1.3379669189453125, + "step": 480900 + }, + { + "epoch": 64.13333333333334, + "grad_norm": 0.8925758600234985, + "learning_rate": 1.7948133333333332e-05, + "loss": 1.33873046875, + "step": 481000 + }, + { + "epoch": 64.14666666666666, + "grad_norm": 0.8780699968338013, + "learning_rate": 1.7941466666666668e-05, + "loss": 1.3358087158203125, + "step": 481100 + }, + { + "epoch": 64.16, + "grad_norm": 0.8357890844345093, + "learning_rate": 1.7934800000000003e-05, + "loss": 1.3425820922851563, + "step": 481200 + }, + { + "epoch": 64.17333333333333, + "grad_norm": 0.8988547921180725, + "learning_rate": 1.7928133333333332e-05, + "loss": 1.3423739624023439, + "step": 481300 + }, + { + "epoch": 64.18666666666667, + "grad_norm": 0.8725674152374268, + "learning_rate": 1.7921466666666668e-05, + "loss": 1.3443193054199218, + "step": 481400 + }, + { + "epoch": 64.2, + "grad_norm": 0.9312418103218079, + "learning_rate": 1.79148e-05, + "loss": 1.340561065673828, + "step": 481500 + }, + { + "epoch": 64.21333333333334, + "grad_norm": 0.9096835255622864, + "learning_rate": 1.7908133333333336e-05, + "loss": 1.3408326721191406, + "step": 481600 + }, + { + "epoch": 64.22666666666667, + "grad_norm": 0.869185745716095, + "learning_rate": 1.7901466666666668e-05, + "loss": 1.3416743469238281, + "step": 481700 + }, + { + "epoch": 64.24, + "grad_norm": 0.8828217387199402, + "learning_rate": 1.78948e-05, + "loss": 1.34640625, + "step": 481800 + }, + { + "epoch": 64.25333333333333, + "grad_norm": 0.8781388401985168, + "learning_rate": 1.7888133333333336e-05, + "loss": 1.3463336181640626, + "step": 481900 + }, + { + "epoch": 64.26666666666667, + "grad_norm": 0.8844797611236572, + "learning_rate": 1.7881466666666668e-05, + "loss": 1.3434307861328125, + "step": 482000 + }, + { + "epoch": 64.28, + "grad_norm": 0.9093835949897766, + "learning_rate": 1.7874866666666667e-05, + "loss": 1.3477468872070313, + "step": 482100 + }, + { + "epoch": 64.29333333333334, + "grad_norm": 0.9038063287734985, + "learning_rate": 1.7868200000000003e-05, + "loss": 1.3481039428710937, + "step": 482200 + }, + { + "epoch": 64.30666666666667, + "grad_norm": 0.8139824867248535, + "learning_rate": 1.7861533333333332e-05, + "loss": 1.34718505859375, + "step": 482300 + }, + { + "epoch": 64.32, + "grad_norm": 0.8709118366241455, + "learning_rate": 1.7854866666666667e-05, + "loss": 1.3521086120605468, + "step": 482400 + }, + { + "epoch": 64.33333333333333, + "grad_norm": 0.8406969904899597, + "learning_rate": 1.78482e-05, + "loss": 1.3482559204101563, + "step": 482500 + }, + { + "epoch": 64.34666666666666, + "grad_norm": 0.8496643304824829, + "learning_rate": 1.7841533333333335e-05, + "loss": 1.3503038024902343, + "step": 482600 + }, + { + "epoch": 64.36, + "grad_norm": 0.8447983264923096, + "learning_rate": 1.7834866666666668e-05, + "loss": 1.3484323120117188, + "step": 482700 + }, + { + "epoch": 64.37333333333333, + "grad_norm": 0.9065347909927368, + "learning_rate": 1.78282e-05, + "loss": 1.350572052001953, + "step": 482800 + }, + { + "epoch": 64.38666666666667, + "grad_norm": 0.8340687155723572, + "learning_rate": 1.7821533333333335e-05, + "loss": 1.3543763732910157, + "step": 482900 + }, + { + "epoch": 64.4, + "grad_norm": 0.8966395854949951, + "learning_rate": 1.7814866666666668e-05, + "loss": 1.3548075866699218, + "step": 483000 + }, + { + "epoch": 64.41333333333333, + "grad_norm": 0.8993328809738159, + "learning_rate": 1.78082e-05, + "loss": 1.354648895263672, + "step": 483100 + }, + { + "epoch": 64.42666666666666, + "grad_norm": 0.9374759793281555, + "learning_rate": 1.7801533333333332e-05, + "loss": 1.361200714111328, + "step": 483200 + }, + { + "epoch": 64.44, + "grad_norm": 0.8411123752593994, + "learning_rate": 1.7794866666666668e-05, + "loss": 1.3539253234863282, + "step": 483300 + }, + { + "epoch": 64.45333333333333, + "grad_norm": 0.8600159287452698, + "learning_rate": 1.7788200000000004e-05, + "loss": 1.3555935668945311, + "step": 483400 + }, + { + "epoch": 64.46666666666667, + "grad_norm": 0.8644974827766418, + "learning_rate": 1.7781533333333332e-05, + "loss": 1.3521513366699218, + "step": 483500 + }, + { + "epoch": 64.48, + "grad_norm": 0.8847560882568359, + "learning_rate": 1.7774866666666668e-05, + "loss": 1.3578965759277344, + "step": 483600 + }, + { + "epoch": 64.49333333333334, + "grad_norm": 0.9277763366699219, + "learning_rate": 1.77682e-05, + "loss": 1.3535302734375, + "step": 483700 + }, + { + "epoch": 64.50666666666666, + "grad_norm": 0.8610851168632507, + "learning_rate": 1.7761533333333333e-05, + "loss": 1.3627682495117188, + "step": 483800 + }, + { + "epoch": 64.52, + "grad_norm": 0.9150212407112122, + "learning_rate": 1.775486666666667e-05, + "loss": 1.3568341064453124, + "step": 483900 + }, + { + "epoch": 64.53333333333333, + "grad_norm": 0.8788309097290039, + "learning_rate": 1.77482e-05, + "loss": 1.35930908203125, + "step": 484000 + }, + { + "epoch": 64.54666666666667, + "grad_norm": 0.877782940864563, + "learning_rate": 1.77416e-05, + "loss": 1.3600112915039062, + "step": 484100 + }, + { + "epoch": 64.56, + "grad_norm": 0.8888121843338013, + "learning_rate": 1.7734933333333335e-05, + "loss": 1.3572149658203125, + "step": 484200 + }, + { + "epoch": 64.57333333333334, + "grad_norm": 0.884781539440155, + "learning_rate": 1.7728266666666668e-05, + "loss": 1.358846435546875, + "step": 484300 + }, + { + "epoch": 64.58666666666667, + "grad_norm": 0.8472477793693542, + "learning_rate": 1.7721600000000003e-05, + "loss": 1.3618157958984376, + "step": 484400 + }, + { + "epoch": 64.6, + "grad_norm": 0.8843161463737488, + "learning_rate": 1.7714933333333332e-05, + "loss": 1.3596778869628907, + "step": 484500 + }, + { + "epoch": 64.61333333333333, + "grad_norm": 0.8994573950767517, + "learning_rate": 1.7708266666666668e-05, + "loss": 1.3632307434082032, + "step": 484600 + }, + { + "epoch": 64.62666666666667, + "grad_norm": 0.8576304316520691, + "learning_rate": 1.77016e-05, + "loss": 1.363969268798828, + "step": 484700 + }, + { + "epoch": 64.64, + "grad_norm": 0.9063739776611328, + "learning_rate": 1.7694933333333332e-05, + "loss": 1.3635774230957032, + "step": 484800 + }, + { + "epoch": 64.65333333333334, + "grad_norm": 0.9036448001861572, + "learning_rate": 1.7688266666666668e-05, + "loss": 1.3654200744628906, + "step": 484900 + }, + { + "epoch": 64.66666666666667, + "grad_norm": 0.8992440104484558, + "learning_rate": 1.76816e-05, + "loss": 1.363550262451172, + "step": 485000 + }, + { + "epoch": 64.68, + "grad_norm": 0.9224612712860107, + "learning_rate": 1.7674933333333336e-05, + "loss": 1.363682403564453, + "step": 485100 + }, + { + "epoch": 64.69333333333333, + "grad_norm": 0.9652465581893921, + "learning_rate": 1.7668266666666665e-05, + "loss": 1.361661376953125, + "step": 485200 + }, + { + "epoch": 64.70666666666666, + "grad_norm": 0.9061663150787354, + "learning_rate": 1.76616e-05, + "loss": 1.3631404113769532, + "step": 485300 + }, + { + "epoch": 64.72, + "grad_norm": 0.8742295503616333, + "learning_rate": 1.7654933333333336e-05, + "loss": 1.365829620361328, + "step": 485400 + }, + { + "epoch": 64.73333333333333, + "grad_norm": 0.8189981579780579, + "learning_rate": 1.764826666666667e-05, + "loss": 1.3672276306152344, + "step": 485500 + }, + { + "epoch": 64.74666666666667, + "grad_norm": 0.9038211107254028, + "learning_rate": 1.76416e-05, + "loss": 1.367249755859375, + "step": 485600 + }, + { + "epoch": 64.76, + "grad_norm": 0.9079329967498779, + "learning_rate": 1.7634933333333333e-05, + "loss": 1.3658090209960938, + "step": 485700 + }, + { + "epoch": 64.77333333333333, + "grad_norm": 0.8886961340904236, + "learning_rate": 1.762826666666667e-05, + "loss": 1.3678729248046875, + "step": 485800 + }, + { + "epoch": 64.78666666666666, + "grad_norm": 0.8585326671600342, + "learning_rate": 1.76216e-05, + "loss": 1.3665878295898437, + "step": 485900 + }, + { + "epoch": 64.8, + "grad_norm": 0.8595222234725952, + "learning_rate": 1.7614933333333333e-05, + "loss": 1.370436553955078, + "step": 486000 + }, + { + "epoch": 64.81333333333333, + "grad_norm": 0.8745478987693787, + "learning_rate": 1.7608333333333336e-05, + "loss": 1.366385955810547, + "step": 486100 + }, + { + "epoch": 64.82666666666667, + "grad_norm": 0.8671027421951294, + "learning_rate": 1.7601666666666668e-05, + "loss": 1.3709756469726562, + "step": 486200 + }, + { + "epoch": 64.84, + "grad_norm": 0.8887233734130859, + "learning_rate": 1.7595e-05, + "loss": 1.3694778442382813, + "step": 486300 + }, + { + "epoch": 64.85333333333334, + "grad_norm": 0.8951408863067627, + "learning_rate": 1.7588333333333336e-05, + "loss": 1.3722352600097656, + "step": 486400 + }, + { + "epoch": 64.86666666666666, + "grad_norm": 0.9203891158103943, + "learning_rate": 1.7581666666666668e-05, + "loss": 1.3695021057128907, + "step": 486500 + }, + { + "epoch": 64.88, + "grad_norm": 0.8783578872680664, + "learning_rate": 1.7575e-05, + "loss": 1.3721949768066406, + "step": 486600 + }, + { + "epoch": 64.89333333333333, + "grad_norm": 0.8755213618278503, + "learning_rate": 1.7568333333333333e-05, + "loss": 1.3693832397460937, + "step": 486700 + }, + { + "epoch": 64.90666666666667, + "grad_norm": 0.8497536182403564, + "learning_rate": 1.7561666666666668e-05, + "loss": 1.3738072204589844, + "step": 486800 + }, + { + "epoch": 64.92, + "grad_norm": 0.8674045205116272, + "learning_rate": 1.7555e-05, + "loss": 1.3736123657226562, + "step": 486900 + }, + { + "epoch": 64.93333333333334, + "grad_norm": 0.924431562423706, + "learning_rate": 1.7548333333333333e-05, + "loss": 1.3719955444335938, + "step": 487000 + }, + { + "epoch": 64.94666666666667, + "grad_norm": 0.9057454466819763, + "learning_rate": 1.754166666666667e-05, + "loss": 1.3727705383300781, + "step": 487100 + }, + { + "epoch": 64.96, + "grad_norm": 0.8692907691001892, + "learning_rate": 1.7535e-05, + "loss": 1.3746487426757812, + "step": 487200 + }, + { + "epoch": 64.97333333333333, + "grad_norm": 0.9203537106513977, + "learning_rate": 1.7528333333333336e-05, + "loss": 1.37078369140625, + "step": 487300 + }, + { + "epoch": 64.98666666666666, + "grad_norm": 0.929847240447998, + "learning_rate": 1.7521666666666665e-05, + "loss": 1.3816091918945312, + "step": 487400 + }, + { + "epoch": 65.0, + "grad_norm": 0.9408981800079346, + "learning_rate": 1.7515e-05, + "loss": 1.3738502502441405, + "step": 487500 + }, + { + "epoch": 65.01333333333334, + "grad_norm": 0.8666677474975586, + "learning_rate": 1.7508333333333337e-05, + "loss": 1.3275274658203124, + "step": 487600 + }, + { + "epoch": 65.02666666666667, + "grad_norm": 0.883374035358429, + "learning_rate": 1.7501666666666665e-05, + "loss": 1.322354278564453, + "step": 487700 + }, + { + "epoch": 65.04, + "grad_norm": 0.9123470187187195, + "learning_rate": 1.7495e-05, + "loss": 1.3236787414550781, + "step": 487800 + }, + { + "epoch": 65.05333333333333, + "grad_norm": 0.8003033399581909, + "learning_rate": 1.7488333333333333e-05, + "loss": 1.3260044860839844, + "step": 487900 + }, + { + "epoch": 65.06666666666666, + "grad_norm": 0.8853775858879089, + "learning_rate": 1.748166666666667e-05, + "loss": 1.3234710693359375, + "step": 488000 + }, + { + "epoch": 65.08, + "grad_norm": 0.8827279806137085, + "learning_rate": 1.7475e-05, + "loss": 1.3306411743164062, + "step": 488100 + }, + { + "epoch": 65.09333333333333, + "grad_norm": 0.8656889200210571, + "learning_rate": 1.74684e-05, + "loss": 1.3258221435546875, + "step": 488200 + }, + { + "epoch": 65.10666666666667, + "grad_norm": 0.8413640856742859, + "learning_rate": 1.7461733333333336e-05, + "loss": 1.3284645080566406, + "step": 488300 + }, + { + "epoch": 65.12, + "grad_norm": 0.8911667466163635, + "learning_rate": 1.7455066666666668e-05, + "loss": 1.3333392333984375, + "step": 488400 + }, + { + "epoch": 65.13333333333334, + "grad_norm": 0.9145627021789551, + "learning_rate": 1.74484e-05, + "loss": 1.3321968078613282, + "step": 488500 + }, + { + "epoch": 65.14666666666666, + "grad_norm": 0.8469613194465637, + "learning_rate": 1.7441733333333336e-05, + "loss": 1.3286016845703126, + "step": 488600 + }, + { + "epoch": 65.16, + "grad_norm": 0.8619856238365173, + "learning_rate": 1.7435066666666665e-05, + "loss": 1.333924560546875, + "step": 488700 + }, + { + "epoch": 65.17333333333333, + "grad_norm": 0.9197624921798706, + "learning_rate": 1.74284e-05, + "loss": 1.3354296875, + "step": 488800 + }, + { + "epoch": 65.18666666666667, + "grad_norm": 0.8337293863296509, + "learning_rate": 1.7421733333333333e-05, + "loss": 1.3360716247558593, + "step": 488900 + }, + { + "epoch": 65.2, + "grad_norm": 0.8918238878250122, + "learning_rate": 1.741506666666667e-05, + "loss": 1.3376748657226563, + "step": 489000 + }, + { + "epoch": 65.21333333333334, + "grad_norm": 0.8520711660385132, + "learning_rate": 1.74084e-05, + "loss": 1.3359193420410156, + "step": 489100 + }, + { + "epoch": 65.22666666666667, + "grad_norm": 0.8971502184867859, + "learning_rate": 1.7401733333333333e-05, + "loss": 1.337491455078125, + "step": 489200 + }, + { + "epoch": 65.24, + "grad_norm": 0.9194210767745972, + "learning_rate": 1.739506666666667e-05, + "loss": 1.3362680053710938, + "step": 489300 + }, + { + "epoch": 65.25333333333333, + "grad_norm": 0.8638772964477539, + "learning_rate": 1.73884e-05, + "loss": 1.3411000061035157, + "step": 489400 + }, + { + "epoch": 65.26666666666667, + "grad_norm": 0.8430476188659668, + "learning_rate": 1.7381733333333333e-05, + "loss": 1.3354183959960937, + "step": 489500 + }, + { + "epoch": 65.28, + "grad_norm": 0.8449836373329163, + "learning_rate": 1.7375066666666666e-05, + "loss": 1.3406202697753906, + "step": 489600 + }, + { + "epoch": 65.29333333333334, + "grad_norm": 0.914038360118866, + "learning_rate": 1.73684e-05, + "loss": 1.3422569274902343, + "step": 489700 + }, + { + "epoch": 65.30666666666667, + "grad_norm": 0.8925040364265442, + "learning_rate": 1.7361733333333337e-05, + "loss": 1.3404884338378906, + "step": 489800 + }, + { + "epoch": 65.32, + "grad_norm": 0.9155729413032532, + "learning_rate": 1.7355066666666666e-05, + "loss": 1.3383328247070312, + "step": 489900 + }, + { + "epoch": 65.33333333333333, + "grad_norm": 0.8363727331161499, + "learning_rate": 1.73484e-05, + "loss": 1.3454109191894532, + "step": 490000 + }, + { + "epoch": 65.34666666666666, + "grad_norm": 0.8507674932479858, + "learning_rate": 1.7341733333333334e-05, + "loss": 1.3441416931152343, + "step": 490100 + }, + { + "epoch": 65.36, + "grad_norm": 0.8748927116394043, + "learning_rate": 1.7335133333333333e-05, + "loss": 1.3435476684570313, + "step": 490200 + }, + { + "epoch": 65.37333333333333, + "grad_norm": 0.8672348856925964, + "learning_rate": 1.732846666666667e-05, + "loss": 1.3459814453125, + "step": 490300 + }, + { + "epoch": 65.38666666666667, + "grad_norm": 0.88212651014328, + "learning_rate": 1.73218e-05, + "loss": 1.3407472229003907, + "step": 490400 + }, + { + "epoch": 65.4, + "grad_norm": 0.8583021759986877, + "learning_rate": 1.7315133333333333e-05, + "loss": 1.3463021850585937, + "step": 490500 + }, + { + "epoch": 65.41333333333333, + "grad_norm": 0.9152435660362244, + "learning_rate": 1.730846666666667e-05, + "loss": 1.3485971069335938, + "step": 490600 + }, + { + "epoch": 65.42666666666666, + "grad_norm": 0.8737739324569702, + "learning_rate": 1.73018e-05, + "loss": 1.3460276794433594, + "step": 490700 + }, + { + "epoch": 65.44, + "grad_norm": 0.9325355887413025, + "learning_rate": 1.7295133333333337e-05, + "loss": 1.3474514770507813, + "step": 490800 + }, + { + "epoch": 65.45333333333333, + "grad_norm": 0.890143632888794, + "learning_rate": 1.7288466666666665e-05, + "loss": 1.351007537841797, + "step": 490900 + }, + { + "epoch": 65.46666666666667, + "grad_norm": 0.8700892925262451, + "learning_rate": 1.72818e-05, + "loss": 1.350022735595703, + "step": 491000 + }, + { + "epoch": 65.48, + "grad_norm": 0.8921332955360413, + "learning_rate": 1.7275133333333333e-05, + "loss": 1.3486946105957032, + "step": 491100 + }, + { + "epoch": 65.49333333333334, + "grad_norm": 0.8532953262329102, + "learning_rate": 1.7268466666666666e-05, + "loss": 1.3525364685058594, + "step": 491200 + }, + { + "epoch": 65.50666666666666, + "grad_norm": 0.8729583024978638, + "learning_rate": 1.72618e-05, + "loss": 1.3483073425292968, + "step": 491300 + }, + { + "epoch": 65.52, + "grad_norm": 0.8708832263946533, + "learning_rate": 1.7255133333333334e-05, + "loss": 1.3524284362792969, + "step": 491400 + }, + { + "epoch": 65.53333333333333, + "grad_norm": 0.8295683860778809, + "learning_rate": 1.724846666666667e-05, + "loss": 1.3510769653320311, + "step": 491500 + }, + { + "epoch": 65.54666666666667, + "grad_norm": 0.8452852964401245, + "learning_rate": 1.7241799999999998e-05, + "loss": 1.3477371215820313, + "step": 491600 + }, + { + "epoch": 65.56, + "grad_norm": 0.8989164233207703, + "learning_rate": 1.7235133333333334e-05, + "loss": 1.3510366821289062, + "step": 491700 + }, + { + "epoch": 65.57333333333334, + "grad_norm": 0.9267915487289429, + "learning_rate": 1.722846666666667e-05, + "loss": 1.3512055969238281, + "step": 491800 + }, + { + "epoch": 65.58666666666667, + "grad_norm": 0.8938575387001038, + "learning_rate": 1.7221800000000002e-05, + "loss": 1.3483731079101562, + "step": 491900 + }, + { + "epoch": 65.6, + "grad_norm": 0.8966379761695862, + "learning_rate": 1.7215133333333334e-05, + "loss": 1.3562388610839844, + "step": 492000 + }, + { + "epoch": 65.61333333333333, + "grad_norm": 0.9655941724777222, + "learning_rate": 1.7208466666666666e-05, + "loss": 1.3572232055664062, + "step": 492100 + }, + { + "epoch": 65.62666666666667, + "grad_norm": 0.8997311592102051, + "learning_rate": 1.7201866666666665e-05, + "loss": 1.3530233764648438, + "step": 492200 + }, + { + "epoch": 65.64, + "grad_norm": 0.9643396735191345, + "learning_rate": 1.71952e-05, + "loss": 1.3538816833496095, + "step": 492300 + }, + { + "epoch": 65.65333333333334, + "grad_norm": 0.8839356899261475, + "learning_rate": 1.7188533333333333e-05, + "loss": 1.353894500732422, + "step": 492400 + }, + { + "epoch": 65.66666666666667, + "grad_norm": 0.8668888807296753, + "learning_rate": 1.718186666666667e-05, + "loss": 1.3576565551757813, + "step": 492500 + }, + { + "epoch": 65.68, + "grad_norm": 0.9418817758560181, + "learning_rate": 1.71752e-05, + "loss": 1.3552629089355468, + "step": 492600 + }, + { + "epoch": 65.69333333333333, + "grad_norm": 0.8563518524169922, + "learning_rate": 1.7168533333333333e-05, + "loss": 1.3564772033691406, + "step": 492700 + }, + { + "epoch": 65.70666666666666, + "grad_norm": 0.8663268685340881, + "learning_rate": 1.716186666666667e-05, + "loss": 1.3568724060058595, + "step": 492800 + }, + { + "epoch": 65.72, + "grad_norm": 0.9083966612815857, + "learning_rate": 1.71552e-05, + "loss": 1.3571450805664063, + "step": 492900 + }, + { + "epoch": 65.73333333333333, + "grad_norm": 0.8793100118637085, + "learning_rate": 1.7148533333333334e-05, + "loss": 1.358192901611328, + "step": 493000 + }, + { + "epoch": 65.74666666666667, + "grad_norm": 0.8852581977844238, + "learning_rate": 1.7141866666666666e-05, + "loss": 1.3583030700683594, + "step": 493100 + }, + { + "epoch": 65.76, + "grad_norm": 0.8649989366531372, + "learning_rate": 1.71352e-05, + "loss": 1.3607272338867187, + "step": 493200 + }, + { + "epoch": 65.77333333333333, + "grad_norm": 0.9444963335990906, + "learning_rate": 1.7128533333333334e-05, + "loss": 1.3594973754882813, + "step": 493300 + }, + { + "epoch": 65.78666666666666, + "grad_norm": 0.8799870610237122, + "learning_rate": 1.7121866666666666e-05, + "loss": 1.3647491455078125, + "step": 493400 + }, + { + "epoch": 65.8, + "grad_norm": 0.8851443529129028, + "learning_rate": 1.7115200000000002e-05, + "loss": 1.3620616149902345, + "step": 493500 + }, + { + "epoch": 65.81333333333333, + "grad_norm": 0.8632842898368835, + "learning_rate": 1.7108533333333334e-05, + "loss": 1.3599568176269532, + "step": 493600 + }, + { + "epoch": 65.82666666666667, + "grad_norm": 0.889917254447937, + "learning_rate": 1.710186666666667e-05, + "loss": 1.3595269775390626, + "step": 493700 + }, + { + "epoch": 65.84, + "grad_norm": 0.8989757895469666, + "learning_rate": 1.70952e-05, + "loss": 1.3624153137207031, + "step": 493800 + }, + { + "epoch": 65.85333333333334, + "grad_norm": 0.9110841751098633, + "learning_rate": 1.7088533333333334e-05, + "loss": 1.3641012573242188, + "step": 493900 + }, + { + "epoch": 65.86666666666666, + "grad_norm": 0.8911044597625732, + "learning_rate": 1.708186666666667e-05, + "loss": 1.3604220581054687, + "step": 494000 + }, + { + "epoch": 65.88, + "grad_norm": 0.8616090416908264, + "learning_rate": 1.70752e-05, + "loss": 1.3651438903808595, + "step": 494100 + }, + { + "epoch": 65.89333333333333, + "grad_norm": 0.9104633331298828, + "learning_rate": 1.70686e-05, + "loss": 1.3625418090820312, + "step": 494200 + }, + { + "epoch": 65.90666666666667, + "grad_norm": 0.8897743821144104, + "learning_rate": 1.7061933333333337e-05, + "loss": 1.3588157653808595, + "step": 494300 + }, + { + "epoch": 65.92, + "grad_norm": 0.9464109539985657, + "learning_rate": 1.7055266666666666e-05, + "loss": 1.3652839660644531, + "step": 494400 + }, + { + "epoch": 65.93333333333334, + "grad_norm": 0.8611365556716919, + "learning_rate": 1.70486e-05, + "loss": 1.3610792541503907, + "step": 494500 + }, + { + "epoch": 65.94666666666667, + "grad_norm": 0.9123305082321167, + "learning_rate": 1.7041933333333334e-05, + "loss": 1.3650492858886718, + "step": 494600 + }, + { + "epoch": 65.96, + "grad_norm": 0.8548987507820129, + "learning_rate": 1.703526666666667e-05, + "loss": 1.3598005676269531, + "step": 494700 + }, + { + "epoch": 65.97333333333333, + "grad_norm": 0.9494167566299438, + "learning_rate": 1.70286e-05, + "loss": 1.3669606018066407, + "step": 494800 + }, + { + "epoch": 65.98666666666666, + "grad_norm": 0.9031914472579956, + "learning_rate": 1.7021933333333334e-05, + "loss": 1.3666676330566405, + "step": 494900 + }, + { + "epoch": 66.0, + "grad_norm": 0.9000195264816284, + "learning_rate": 1.701526666666667e-05, + "loss": 1.3696188354492187, + "step": 495000 + }, + { + "epoch": 66.01333333333334, + "grad_norm": 0.8464391231536865, + "learning_rate": 1.70086e-05, + "loss": 1.3161962890625, + "step": 495100 + }, + { + "epoch": 66.02666666666667, + "grad_norm": 0.8270666599273682, + "learning_rate": 1.7001933333333334e-05, + "loss": 1.319871368408203, + "step": 495200 + }, + { + "epoch": 66.04, + "grad_norm": 0.852210283279419, + "learning_rate": 1.6995266666666666e-05, + "loss": 1.3218473815917968, + "step": 495300 + }, + { + "epoch": 66.05333333333333, + "grad_norm": 0.879362165927887, + "learning_rate": 1.6988600000000002e-05, + "loss": 1.318983612060547, + "step": 495400 + }, + { + "epoch": 66.06666666666666, + "grad_norm": 0.8811297416687012, + "learning_rate": 1.6981933333333334e-05, + "loss": 1.320828399658203, + "step": 495500 + }, + { + "epoch": 66.08, + "grad_norm": 0.8936617970466614, + "learning_rate": 1.6975266666666667e-05, + "loss": 1.319468994140625, + "step": 495600 + }, + { + "epoch": 66.09333333333333, + "grad_norm": 0.8245587944984436, + "learning_rate": 1.6968600000000002e-05, + "loss": 1.3200828552246093, + "step": 495700 + }, + { + "epoch": 66.10666666666667, + "grad_norm": 0.9125563502311707, + "learning_rate": 1.6961933333333334e-05, + "loss": 1.3209025573730468, + "step": 495800 + }, + { + "epoch": 66.12, + "grad_norm": 0.8604671955108643, + "learning_rate": 1.6955266666666667e-05, + "loss": 1.3225840759277343, + "step": 495900 + }, + { + "epoch": 66.13333333333334, + "grad_norm": 0.8596413135528564, + "learning_rate": 1.69486e-05, + "loss": 1.3214039611816406, + "step": 496000 + }, + { + "epoch": 66.14666666666666, + "grad_norm": 0.8338813185691833, + "learning_rate": 1.6941933333333335e-05, + "loss": 1.3240989685058593, + "step": 496100 + }, + { + "epoch": 66.16, + "grad_norm": 0.8821403980255127, + "learning_rate": 1.6935333333333334e-05, + "loss": 1.3248197937011719, + "step": 496200 + }, + { + "epoch": 66.17333333333333, + "grad_norm": 0.9026249051094055, + "learning_rate": 1.692866666666667e-05, + "loss": 1.3284371948242188, + "step": 496300 + }, + { + "epoch": 66.18666666666667, + "grad_norm": 0.8741923570632935, + "learning_rate": 1.6922e-05, + "loss": 1.3267121887207032, + "step": 496400 + }, + { + "epoch": 66.2, + "grad_norm": 0.8702110052108765, + "learning_rate": 1.6915333333333334e-05, + "loss": 1.326593475341797, + "step": 496500 + }, + { + "epoch": 66.21333333333334, + "grad_norm": 0.8829630613327026, + "learning_rate": 1.6908666666666666e-05, + "loss": 1.3249797058105468, + "step": 496600 + }, + { + "epoch": 66.22666666666667, + "grad_norm": 0.8170766830444336, + "learning_rate": 1.6902000000000002e-05, + "loss": 1.3290678405761718, + "step": 496700 + }, + { + "epoch": 66.24, + "grad_norm": 0.8386065363883972, + "learning_rate": 1.6895333333333334e-05, + "loss": 1.3280769348144532, + "step": 496800 + }, + { + "epoch": 66.25333333333333, + "grad_norm": 0.9074498414993286, + "learning_rate": 1.6888666666666666e-05, + "loss": 1.3333543395996095, + "step": 496900 + }, + { + "epoch": 66.26666666666667, + "grad_norm": 0.8878492116928101, + "learning_rate": 1.6882000000000002e-05, + "loss": 1.3320777893066407, + "step": 497000 + }, + { + "epoch": 66.28, + "grad_norm": 0.9520934820175171, + "learning_rate": 1.6875333333333334e-05, + "loss": 1.332491455078125, + "step": 497100 + }, + { + "epoch": 66.29333333333334, + "grad_norm": 0.8975771069526672, + "learning_rate": 1.686866666666667e-05, + "loss": 1.3285887145996094, + "step": 497200 + }, + { + "epoch": 66.30666666666667, + "grad_norm": 0.9283040165901184, + "learning_rate": 1.6862e-05, + "loss": 1.3328883361816406, + "step": 497300 + }, + { + "epoch": 66.32, + "grad_norm": 0.8596479892730713, + "learning_rate": 1.6855333333333334e-05, + "loss": 1.337887725830078, + "step": 497400 + }, + { + "epoch": 66.33333333333333, + "grad_norm": 0.8887840509414673, + "learning_rate": 1.6848666666666667e-05, + "loss": 1.3309591674804688, + "step": 497500 + }, + { + "epoch": 66.34666666666666, + "grad_norm": 0.8658081889152527, + "learning_rate": 1.6842e-05, + "loss": 1.3348977661132813, + "step": 497600 + }, + { + "epoch": 66.36, + "grad_norm": 0.8536320924758911, + "learning_rate": 1.6835333333333335e-05, + "loss": 1.3311074829101563, + "step": 497700 + }, + { + "epoch": 66.37333333333333, + "grad_norm": 0.8975630402565002, + "learning_rate": 1.6828666666666667e-05, + "loss": 1.3381869506835937, + "step": 497800 + }, + { + "epoch": 66.38666666666667, + "grad_norm": 0.9293047189712524, + "learning_rate": 1.6822000000000003e-05, + "loss": 1.338460693359375, + "step": 497900 + }, + { + "epoch": 66.4, + "grad_norm": 0.8931173086166382, + "learning_rate": 1.681533333333333e-05, + "loss": 1.3359477233886718, + "step": 498000 + }, + { + "epoch": 66.41333333333333, + "grad_norm": 0.9041270613670349, + "learning_rate": 1.6808666666666667e-05, + "loss": 1.3406436157226562, + "step": 498100 + }, + { + "epoch": 66.42666666666666, + "grad_norm": 0.8692404627799988, + "learning_rate": 1.680206666666667e-05, + "loss": 1.3393113708496094, + "step": 498200 + }, + { + "epoch": 66.44, + "grad_norm": 0.8984732627868652, + "learning_rate": 1.67954e-05, + "loss": 1.3371609497070311, + "step": 498300 + }, + { + "epoch": 66.45333333333333, + "grad_norm": 0.8967075347900391, + "learning_rate": 1.6788733333333334e-05, + "loss": 1.3435694885253906, + "step": 498400 + }, + { + "epoch": 66.46666666666667, + "grad_norm": 0.8753262162208557, + "learning_rate": 1.678206666666667e-05, + "loss": 1.3449749755859375, + "step": 498500 + }, + { + "epoch": 66.48, + "grad_norm": 0.907174825668335, + "learning_rate": 1.67754e-05, + "loss": 1.3397930908203124, + "step": 498600 + }, + { + "epoch": 66.49333333333334, + "grad_norm": 0.8881757855415344, + "learning_rate": 1.6768733333333334e-05, + "loss": 1.3411907958984375, + "step": 498700 + }, + { + "epoch": 66.50666666666666, + "grad_norm": 0.880740761756897, + "learning_rate": 1.6762066666666667e-05, + "loss": 1.3427651977539063, + "step": 498800 + }, + { + "epoch": 66.52, + "grad_norm": 0.8613744378089905, + "learning_rate": 1.6755400000000002e-05, + "loss": 1.34215576171875, + "step": 498900 + }, + { + "epoch": 66.53333333333333, + "grad_norm": 0.8675311803817749, + "learning_rate": 1.6748733333333335e-05, + "loss": 1.3419883728027344, + "step": 499000 + }, + { + "epoch": 66.54666666666667, + "grad_norm": 0.8745658993721008, + "learning_rate": 1.6742066666666667e-05, + "loss": 1.3410050964355469, + "step": 499100 + }, + { + "epoch": 66.56, + "grad_norm": 0.903735876083374, + "learning_rate": 1.6735400000000002e-05, + "loss": 1.3437112426757813, + "step": 499200 + }, + { + "epoch": 66.57333333333334, + "grad_norm": 0.9387283325195312, + "learning_rate": 1.6728733333333335e-05, + "loss": 1.3478224182128906, + "step": 499300 + }, + { + "epoch": 66.58666666666667, + "grad_norm": 0.8882374167442322, + "learning_rate": 1.6722066666666667e-05, + "loss": 1.3502310180664063, + "step": 499400 + }, + { + "epoch": 66.6, + "grad_norm": 0.8444065451622009, + "learning_rate": 1.67154e-05, + "loss": 1.3418290710449219, + "step": 499500 + }, + { + "epoch": 66.61333333333333, + "grad_norm": 0.8583235740661621, + "learning_rate": 1.6708733333333335e-05, + "loss": 1.346663818359375, + "step": 499600 + }, + { + "epoch": 66.62666666666667, + "grad_norm": 0.861813485622406, + "learning_rate": 1.6702066666666667e-05, + "loss": 1.3438009643554687, + "step": 499700 + }, + { + "epoch": 66.64, + "grad_norm": 0.9351439476013184, + "learning_rate": 1.66954e-05, + "loss": 1.3432070922851562, + "step": 499800 + }, + { + "epoch": 66.65333333333334, + "grad_norm": 0.8280015587806702, + "learning_rate": 1.6688733333333335e-05, + "loss": 1.3487863159179687, + "step": 499900 + }, + { + "epoch": 66.66666666666667, + "grad_norm": 0.9261816143989563, + "learning_rate": 1.6682066666666667e-05, + "loss": 1.348236083984375, + "step": 500000 + }, + { + "epoch": 66.68, + "grad_norm": 0.8890721201896667, + "learning_rate": 1.6675400000000003e-05, + "loss": 1.3480813598632813, + "step": 500100 + }, + { + "epoch": 66.69333333333333, + "grad_norm": 0.881643533706665, + "learning_rate": 1.6668800000000002e-05, + "loss": 1.3505299377441407, + "step": 500200 + }, + { + "epoch": 66.70666666666666, + "grad_norm": 0.8827385306358337, + "learning_rate": 1.6662133333333334e-05, + "loss": 1.3477456665039063, + "step": 500300 + }, + { + "epoch": 66.72, + "grad_norm": 0.9698315262794495, + "learning_rate": 1.6655466666666667e-05, + "loss": 1.3486949157714845, + "step": 500400 + }, + { + "epoch": 66.73333333333333, + "grad_norm": 0.864273726940155, + "learning_rate": 1.66488e-05, + "loss": 1.3506986999511719, + "step": 500500 + }, + { + "epoch": 66.74666666666667, + "grad_norm": 0.9118615388870239, + "learning_rate": 1.6642133333333335e-05, + "loss": 1.3483343505859375, + "step": 500600 + }, + { + "epoch": 66.76, + "grad_norm": 0.8899751901626587, + "learning_rate": 1.663546666666667e-05, + "loss": 1.3553768920898437, + "step": 500700 + }, + { + "epoch": 66.77333333333333, + "grad_norm": 0.9060136675834656, + "learning_rate": 1.66288e-05, + "loss": 1.345452117919922, + "step": 500800 + }, + { + "epoch": 66.78666666666666, + "grad_norm": 0.9999998211860657, + "learning_rate": 1.6622133333333335e-05, + "loss": 1.350277862548828, + "step": 500900 + }, + { + "epoch": 66.8, + "grad_norm": 0.8866046667098999, + "learning_rate": 1.6615466666666667e-05, + "loss": 1.3576226806640626, + "step": 501000 + }, + { + "epoch": 66.81333333333333, + "grad_norm": 0.9324911832809448, + "learning_rate": 1.6608800000000003e-05, + "loss": 1.350228271484375, + "step": 501100 + }, + { + "epoch": 66.82666666666667, + "grad_norm": 0.9233900904655457, + "learning_rate": 1.6602133333333335e-05, + "loss": 1.3524874877929687, + "step": 501200 + }, + { + "epoch": 66.84, + "grad_norm": 0.8950480818748474, + "learning_rate": 1.6595466666666667e-05, + "loss": 1.3505656433105468, + "step": 501300 + }, + { + "epoch": 66.85333333333334, + "grad_norm": 0.8450494408607483, + "learning_rate": 1.6588800000000003e-05, + "loss": 1.353629150390625, + "step": 501400 + }, + { + "epoch": 66.86666666666666, + "grad_norm": 0.8349661827087402, + "learning_rate": 1.6582133333333332e-05, + "loss": 1.3550460815429688, + "step": 501500 + }, + { + "epoch": 66.88, + "grad_norm": 0.8485316038131714, + "learning_rate": 1.6575466666666667e-05, + "loss": 1.35274658203125, + "step": 501600 + }, + { + "epoch": 66.89333333333333, + "grad_norm": 0.8575172424316406, + "learning_rate": 1.65688e-05, + "loss": 1.3558840942382813, + "step": 501700 + }, + { + "epoch": 66.90666666666667, + "grad_norm": 0.8949342370033264, + "learning_rate": 1.6562133333333335e-05, + "loss": 1.3565489196777343, + "step": 501800 + }, + { + "epoch": 66.92, + "grad_norm": 0.8905797600746155, + "learning_rate": 1.6555466666666668e-05, + "loss": 1.3542637634277344, + "step": 501900 + }, + { + "epoch": 66.93333333333334, + "grad_norm": 0.8685753345489502, + "learning_rate": 1.65488e-05, + "loss": 1.3555860900878907, + "step": 502000 + }, + { + "epoch": 66.94666666666667, + "grad_norm": 0.8902389407157898, + "learning_rate": 1.6542133333333336e-05, + "loss": 1.357294921875, + "step": 502100 + }, + { + "epoch": 66.96, + "grad_norm": 0.8817318677902222, + "learning_rate": 1.6535533333333335e-05, + "loss": 1.354560089111328, + "step": 502200 + }, + { + "epoch": 66.97333333333333, + "grad_norm": 0.8877972960472107, + "learning_rate": 1.6528866666666667e-05, + "loss": 1.3581826782226563, + "step": 502300 + }, + { + "epoch": 66.98666666666666, + "grad_norm": 0.9648900628089905, + "learning_rate": 1.6522200000000003e-05, + "loss": 1.3576654052734376, + "step": 502400 + }, + { + "epoch": 67.0, + "grad_norm": 0.8821939826011658, + "learning_rate": 1.651553333333333e-05, + "loss": 1.3601315307617188, + "step": 502500 + }, + { + "epoch": 67.01333333333334, + "grad_norm": 0.8473901748657227, + "learning_rate": 1.6508866666666667e-05, + "loss": 1.310140380859375, + "step": 502600 + }, + { + "epoch": 67.02666666666667, + "grad_norm": 0.8751438856124878, + "learning_rate": 1.65022e-05, + "loss": 1.3117538452148438, + "step": 502700 + }, + { + "epoch": 67.04, + "grad_norm": 0.8518862128257751, + "learning_rate": 1.6495533333333335e-05, + "loss": 1.3125653076171875, + "step": 502800 + }, + { + "epoch": 67.05333333333333, + "grad_norm": 0.8928504586219788, + "learning_rate": 1.6488866666666667e-05, + "loss": 1.3104530334472657, + "step": 502900 + }, + { + "epoch": 67.06666666666666, + "grad_norm": 0.8880503177642822, + "learning_rate": 1.64822e-05, + "loss": 1.3163229370117187, + "step": 503000 + }, + { + "epoch": 67.08, + "grad_norm": 0.9034183621406555, + "learning_rate": 1.6475533333333335e-05, + "loss": 1.3216062927246093, + "step": 503100 + }, + { + "epoch": 67.09333333333333, + "grad_norm": 0.8415785431861877, + "learning_rate": 1.6468866666666667e-05, + "loss": 1.3180642700195313, + "step": 503200 + }, + { + "epoch": 67.10666666666667, + "grad_norm": 0.8426023125648499, + "learning_rate": 1.64622e-05, + "loss": 1.3171853637695312, + "step": 503300 + }, + { + "epoch": 67.12, + "grad_norm": 0.9098384976387024, + "learning_rate": 1.6455533333333335e-05, + "loss": 1.3160491943359376, + "step": 503400 + }, + { + "epoch": 67.13333333333334, + "grad_norm": 0.910634458065033, + "learning_rate": 1.6448866666666668e-05, + "loss": 1.3179133605957032, + "step": 503500 + }, + { + "epoch": 67.14666666666666, + "grad_norm": 0.8796761631965637, + "learning_rate": 1.6442200000000003e-05, + "loss": 1.3178306579589845, + "step": 503600 + }, + { + "epoch": 67.16, + "grad_norm": 0.9137388467788696, + "learning_rate": 1.6435533333333332e-05, + "loss": 1.3195364379882812, + "step": 503700 + }, + { + "epoch": 67.17333333333333, + "grad_norm": 0.8771604895591736, + "learning_rate": 1.6428866666666668e-05, + "loss": 1.3253799438476563, + "step": 503800 + }, + { + "epoch": 67.18666666666667, + "grad_norm": 0.8796737194061279, + "learning_rate": 1.64222e-05, + "loss": 1.3219993591308594, + "step": 503900 + }, + { + "epoch": 67.2, + "grad_norm": 0.8637896180152893, + "learning_rate": 1.6415533333333332e-05, + "loss": 1.3234608459472657, + "step": 504000 + }, + { + "epoch": 67.21333333333334, + "grad_norm": 0.8395215272903442, + "learning_rate": 1.6408866666666668e-05, + "loss": 1.3233541870117187, + "step": 504100 + }, + { + "epoch": 67.22666666666667, + "grad_norm": 0.8876785039901733, + "learning_rate": 1.6402266666666667e-05, + "loss": 1.32363037109375, + "step": 504200 + }, + { + "epoch": 67.24, + "grad_norm": 0.8801200985908508, + "learning_rate": 1.63956e-05, + "loss": 1.328302764892578, + "step": 504300 + }, + { + "epoch": 67.25333333333333, + "grad_norm": 0.9056000709533691, + "learning_rate": 1.6388933333333335e-05, + "loss": 1.323112030029297, + "step": 504400 + }, + { + "epoch": 67.26666666666667, + "grad_norm": 0.9226976633071899, + "learning_rate": 1.6382266666666667e-05, + "loss": 1.328287353515625, + "step": 504500 + }, + { + "epoch": 67.28, + "grad_norm": 0.8553920984268188, + "learning_rate": 1.6375600000000003e-05, + "loss": 1.324569549560547, + "step": 504600 + }, + { + "epoch": 67.29333333333334, + "grad_norm": 0.8892163038253784, + "learning_rate": 1.6368933333333332e-05, + "loss": 1.3272508239746095, + "step": 504700 + }, + { + "epoch": 67.30666666666667, + "grad_norm": 0.828970193862915, + "learning_rate": 1.6362266666666667e-05, + "loss": 1.325264892578125, + "step": 504800 + }, + { + "epoch": 67.32, + "grad_norm": 0.8796325325965881, + "learning_rate": 1.6355600000000003e-05, + "loss": 1.3304495239257812, + "step": 504900 + }, + { + "epoch": 67.33333333333333, + "grad_norm": 0.8535403609275818, + "learning_rate": 1.6348933333333332e-05, + "loss": 1.3281263732910156, + "step": 505000 + }, + { + "epoch": 67.34666666666666, + "grad_norm": 0.9329071640968323, + "learning_rate": 1.6342266666666668e-05, + "loss": 1.3269728088378907, + "step": 505100 + }, + { + "epoch": 67.36, + "grad_norm": 0.8434710502624512, + "learning_rate": 1.63356e-05, + "loss": 1.330979461669922, + "step": 505200 + }, + { + "epoch": 67.37333333333333, + "grad_norm": 0.9090546369552612, + "learning_rate": 1.6328933333333336e-05, + "loss": 1.3287429809570312, + "step": 505300 + }, + { + "epoch": 67.38666666666667, + "grad_norm": 0.8121486902236938, + "learning_rate": 1.6322266666666668e-05, + "loss": 1.3265771484375, + "step": 505400 + }, + { + "epoch": 67.4, + "grad_norm": 0.92621248960495, + "learning_rate": 1.63156e-05, + "loss": 1.331717529296875, + "step": 505500 + }, + { + "epoch": 67.41333333333333, + "grad_norm": 0.861219048500061, + "learning_rate": 1.6308933333333336e-05, + "loss": 1.331618194580078, + "step": 505600 + }, + { + "epoch": 67.42666666666666, + "grad_norm": 0.8709635734558105, + "learning_rate": 1.6302266666666668e-05, + "loss": 1.3293948364257813, + "step": 505700 + }, + { + "epoch": 67.44, + "grad_norm": 0.9250495433807373, + "learning_rate": 1.62956e-05, + "loss": 1.3288381958007813, + "step": 505800 + }, + { + "epoch": 67.45333333333333, + "grad_norm": 0.9058433771133423, + "learning_rate": 1.6288933333333333e-05, + "loss": 1.33401123046875, + "step": 505900 + }, + { + "epoch": 67.46666666666667, + "grad_norm": 0.8685875535011292, + "learning_rate": 1.6282266666666668e-05, + "loss": 1.3351644897460937, + "step": 506000 + }, + { + "epoch": 67.48, + "grad_norm": 0.8778988122940063, + "learning_rate": 1.62756e-05, + "loss": 1.3352923583984375, + "step": 506100 + }, + { + "epoch": 67.49333333333334, + "grad_norm": 0.900501549243927, + "learning_rate": 1.6269e-05, + "loss": 1.3364425659179688, + "step": 506200 + }, + { + "epoch": 67.50666666666666, + "grad_norm": 0.832356333732605, + "learning_rate": 1.6262333333333335e-05, + "loss": 1.3344007873535155, + "step": 506300 + }, + { + "epoch": 67.52, + "grad_norm": 0.8706467747688293, + "learning_rate": 1.6255666666666668e-05, + "loss": 1.335708465576172, + "step": 506400 + }, + { + "epoch": 67.53333333333333, + "grad_norm": 0.9022287130355835, + "learning_rate": 1.6249e-05, + "loss": 1.334958038330078, + "step": 506500 + }, + { + "epoch": 67.54666666666667, + "grad_norm": 0.9078052043914795, + "learning_rate": 1.6242333333333335e-05, + "loss": 1.3339247131347656, + "step": 506600 + }, + { + "epoch": 67.56, + "grad_norm": 0.8930740356445312, + "learning_rate": 1.6235666666666668e-05, + "loss": 1.3345040893554687, + "step": 506700 + }, + { + "epoch": 67.57333333333334, + "grad_norm": 0.8925511837005615, + "learning_rate": 1.6229e-05, + "loss": 1.3339421081542968, + "step": 506800 + }, + { + "epoch": 67.58666666666667, + "grad_norm": 0.9075053334236145, + "learning_rate": 1.6222333333333332e-05, + "loss": 1.3400006103515625, + "step": 506900 + }, + { + "epoch": 67.6, + "grad_norm": 0.8388199210166931, + "learning_rate": 1.6215666666666668e-05, + "loss": 1.339932403564453, + "step": 507000 + }, + { + "epoch": 67.61333333333333, + "grad_norm": 0.9314302206039429, + "learning_rate": 1.6209000000000004e-05, + "loss": 1.3385556030273438, + "step": 507100 + }, + { + "epoch": 67.62666666666667, + "grad_norm": 0.936500608921051, + "learning_rate": 1.6202333333333332e-05, + "loss": 1.3391481018066407, + "step": 507200 + }, + { + "epoch": 67.64, + "grad_norm": 0.9487819671630859, + "learning_rate": 1.6195666666666668e-05, + "loss": 1.3424884033203126, + "step": 507300 + }, + { + "epoch": 67.65333333333334, + "grad_norm": 0.8992325663566589, + "learning_rate": 1.6189e-05, + "loss": 1.3376817321777343, + "step": 507400 + }, + { + "epoch": 67.66666666666667, + "grad_norm": 0.8715090155601501, + "learning_rate": 1.6182333333333336e-05, + "loss": 1.3390425109863282, + "step": 507500 + }, + { + "epoch": 67.68, + "grad_norm": 0.926875650882721, + "learning_rate": 1.6175666666666668e-05, + "loss": 1.3368760681152343, + "step": 507600 + }, + { + "epoch": 67.69333333333333, + "grad_norm": 0.8483115434646606, + "learning_rate": 1.6169e-05, + "loss": 1.3436689758300782, + "step": 507700 + }, + { + "epoch": 67.70666666666666, + "grad_norm": 0.9174588918685913, + "learning_rate": 1.6162333333333336e-05, + "loss": 1.3432699584960937, + "step": 507800 + }, + { + "epoch": 67.72, + "grad_norm": 0.8918784260749817, + "learning_rate": 1.6155666666666665e-05, + "loss": 1.342838592529297, + "step": 507900 + }, + { + "epoch": 67.73333333333333, + "grad_norm": 0.9192767143249512, + "learning_rate": 1.6149e-05, + "loss": 1.3431192016601563, + "step": 508000 + }, + { + "epoch": 67.74666666666667, + "grad_norm": 0.9048521518707275, + "learning_rate": 1.6142333333333333e-05, + "loss": 1.341384735107422, + "step": 508100 + }, + { + "epoch": 67.76, + "grad_norm": 0.8069953918457031, + "learning_rate": 1.613566666666667e-05, + "loss": 1.3444508361816405, + "step": 508200 + }, + { + "epoch": 67.77333333333333, + "grad_norm": 0.9301212430000305, + "learning_rate": 1.6129066666666668e-05, + "loss": 1.342718048095703, + "step": 508300 + }, + { + "epoch": 67.78666666666666, + "grad_norm": 0.8530392646789551, + "learning_rate": 1.61224e-05, + "loss": 1.343582763671875, + "step": 508400 + }, + { + "epoch": 67.8, + "grad_norm": 0.8464934825897217, + "learning_rate": 1.6115733333333336e-05, + "loss": 1.3441999816894532, + "step": 508500 + }, + { + "epoch": 67.81333333333333, + "grad_norm": 0.8721790313720703, + "learning_rate": 1.6109066666666668e-05, + "loss": 1.3421063232421875, + "step": 508600 + }, + { + "epoch": 67.82666666666667, + "grad_norm": 0.8738119006156921, + "learning_rate": 1.61024e-05, + "loss": 1.350204315185547, + "step": 508700 + }, + { + "epoch": 67.84, + "grad_norm": 0.961629331111908, + "learning_rate": 1.6095733333333336e-05, + "loss": 1.3457203674316407, + "step": 508800 + }, + { + "epoch": 67.85333333333334, + "grad_norm": 0.8968521952629089, + "learning_rate": 1.6089066666666665e-05, + "loss": 1.3510127258300781, + "step": 508900 + }, + { + "epoch": 67.86666666666666, + "grad_norm": 0.8948931694030762, + "learning_rate": 1.60824e-05, + "loss": 1.3487330627441407, + "step": 509000 + }, + { + "epoch": 67.88, + "grad_norm": 0.9145134091377258, + "learning_rate": 1.6075733333333333e-05, + "loss": 1.3471894836425782, + "step": 509100 + }, + { + "epoch": 67.89333333333333, + "grad_norm": 0.871657133102417, + "learning_rate": 1.606906666666667e-05, + "loss": 1.3422882080078125, + "step": 509200 + }, + { + "epoch": 67.90666666666667, + "grad_norm": 0.9065093398094177, + "learning_rate": 1.60624e-05, + "loss": 1.3477850341796875, + "step": 509300 + }, + { + "epoch": 67.92, + "grad_norm": 0.9234089255332947, + "learning_rate": 1.6055733333333333e-05, + "loss": 1.3499220275878907, + "step": 509400 + }, + { + "epoch": 67.93333333333334, + "grad_norm": 0.9075988531112671, + "learning_rate": 1.604906666666667e-05, + "loss": 1.3501620483398438, + "step": 509500 + }, + { + "epoch": 67.94666666666667, + "grad_norm": 0.8884494304656982, + "learning_rate": 1.60424e-05, + "loss": 1.348383331298828, + "step": 509600 + }, + { + "epoch": 67.96, + "grad_norm": 0.896177351474762, + "learning_rate": 1.6035733333333333e-05, + "loss": 1.3463504028320312, + "step": 509700 + }, + { + "epoch": 67.97333333333333, + "grad_norm": 0.9698064923286438, + "learning_rate": 1.602906666666667e-05, + "loss": 1.3500189208984374, + "step": 509800 + }, + { + "epoch": 67.98666666666666, + "grad_norm": 0.9053831100463867, + "learning_rate": 1.60224e-05, + "loss": 1.3513795471191405, + "step": 509900 + }, + { + "epoch": 68.0, + "grad_norm": 0.9011847972869873, + "learning_rate": 1.6015733333333337e-05, + "loss": 1.3465042114257812, + "step": 510000 + }, + { + "epoch": 68.01333333333334, + "grad_norm": 0.8597659468650818, + "learning_rate": 1.6009066666666665e-05, + "loss": 1.3004315185546875, + "step": 510100 + }, + { + "epoch": 68.02666666666667, + "grad_norm": 0.928426206111908, + "learning_rate": 1.60024e-05, + "loss": 1.3039891052246093, + "step": 510200 + }, + { + "epoch": 68.04, + "grad_norm": 0.8113676309585571, + "learning_rate": 1.59958e-05, + "loss": 1.3047027587890625, + "step": 510300 + }, + { + "epoch": 68.05333333333333, + "grad_norm": 0.9048395752906799, + "learning_rate": 1.5989133333333332e-05, + "loss": 1.3024574279785157, + "step": 510400 + }, + { + "epoch": 68.06666666666666, + "grad_norm": 0.8462424874305725, + "learning_rate": 1.5982466666666668e-05, + "loss": 1.3085397338867188, + "step": 510500 + }, + { + "epoch": 68.08, + "grad_norm": 0.8260025978088379, + "learning_rate": 1.59758e-05, + "loss": 1.3069618225097657, + "step": 510600 + }, + { + "epoch": 68.09333333333333, + "grad_norm": 0.9367395639419556, + "learning_rate": 1.5969133333333333e-05, + "loss": 1.3096812438964844, + "step": 510700 + }, + { + "epoch": 68.10666666666667, + "grad_norm": 0.8826059699058533, + "learning_rate": 1.596246666666667e-05, + "loss": 1.31156494140625, + "step": 510800 + }, + { + "epoch": 68.12, + "grad_norm": 0.8369840383529663, + "learning_rate": 1.59558e-05, + "loss": 1.3101882934570312, + "step": 510900 + }, + { + "epoch": 68.13333333333334, + "grad_norm": 0.89353346824646, + "learning_rate": 1.5949133333333336e-05, + "loss": 1.3151426696777344, + "step": 511000 + }, + { + "epoch": 68.14666666666666, + "grad_norm": 0.9131789803504944, + "learning_rate": 1.5942466666666665e-05, + "loss": 1.3127870178222656, + "step": 511100 + }, + { + "epoch": 68.16, + "grad_norm": 0.8653157353401184, + "learning_rate": 1.59358e-05, + "loss": 1.3090579223632812, + "step": 511200 + }, + { + "epoch": 68.17333333333333, + "grad_norm": 0.9040849804878235, + "learning_rate": 1.5929133333333336e-05, + "loss": 1.312974395751953, + "step": 511300 + }, + { + "epoch": 68.18666666666667, + "grad_norm": 0.8667581081390381, + "learning_rate": 1.5922466666666665e-05, + "loss": 1.3097319030761718, + "step": 511400 + }, + { + "epoch": 68.2, + "grad_norm": 0.8813672065734863, + "learning_rate": 1.59158e-05, + "loss": 1.3151568603515624, + "step": 511500 + }, + { + "epoch": 68.21333333333334, + "grad_norm": 0.8864101767539978, + "learning_rate": 1.5909133333333333e-05, + "loss": 1.318709716796875, + "step": 511600 + }, + { + "epoch": 68.22666666666667, + "grad_norm": 0.8745055794715881, + "learning_rate": 1.590246666666667e-05, + "loss": 1.3160711669921874, + "step": 511700 + }, + { + "epoch": 68.24, + "grad_norm": 0.8819094896316528, + "learning_rate": 1.58958e-05, + "loss": 1.3141668701171876, + "step": 511800 + }, + { + "epoch": 68.25333333333333, + "grad_norm": 0.8686659336090088, + "learning_rate": 1.5889133333333333e-05, + "loss": 1.3141128540039062, + "step": 511900 + }, + { + "epoch": 68.26666666666667, + "grad_norm": 0.8981601595878601, + "learning_rate": 1.588246666666667e-05, + "loss": 1.318443603515625, + "step": 512000 + }, + { + "epoch": 68.28, + "grad_norm": 0.9074696898460388, + "learning_rate": 1.58758e-05, + "loss": 1.3188632202148438, + "step": 512100 + }, + { + "epoch": 68.29333333333334, + "grad_norm": 0.8958747386932373, + "learning_rate": 1.5869133333333334e-05, + "loss": 1.3215031433105469, + "step": 512200 + }, + { + "epoch": 68.30666666666667, + "grad_norm": 0.8791993260383606, + "learning_rate": 1.5862533333333336e-05, + "loss": 1.31865478515625, + "step": 512300 + }, + { + "epoch": 68.32, + "grad_norm": 0.8460490107536316, + "learning_rate": 1.5855866666666665e-05, + "loss": 1.3209242248535156, + "step": 512400 + }, + { + "epoch": 68.33333333333333, + "grad_norm": 0.8700122833251953, + "learning_rate": 1.58492e-05, + "loss": 1.3208595275878907, + "step": 512500 + }, + { + "epoch": 68.34666666666666, + "grad_norm": 0.8390049934387207, + "learning_rate": 1.5842533333333333e-05, + "loss": 1.3223390197753906, + "step": 512600 + }, + { + "epoch": 68.36, + "grad_norm": 0.8614577054977417, + "learning_rate": 1.583586666666667e-05, + "loss": 1.3204753112792968, + "step": 512700 + }, + { + "epoch": 68.37333333333333, + "grad_norm": 0.8901036977767944, + "learning_rate": 1.58292e-05, + "loss": 1.324432373046875, + "step": 512800 + }, + { + "epoch": 68.38666666666667, + "grad_norm": 0.8955973386764526, + "learning_rate": 1.5822533333333333e-05, + "loss": 1.3183277893066405, + "step": 512900 + }, + { + "epoch": 68.4, + "grad_norm": 0.8843805193901062, + "learning_rate": 1.581586666666667e-05, + "loss": 1.3242254638671875, + "step": 513000 + }, + { + "epoch": 68.41333333333333, + "grad_norm": 0.8797668218612671, + "learning_rate": 1.58092e-05, + "loss": 1.3225811767578124, + "step": 513100 + }, + { + "epoch": 68.42666666666666, + "grad_norm": 0.9109477400779724, + "learning_rate": 1.5802533333333333e-05, + "loss": 1.3278276062011718, + "step": 513200 + }, + { + "epoch": 68.44, + "grad_norm": 0.9226241111755371, + "learning_rate": 1.5795866666666666e-05, + "loss": 1.31931640625, + "step": 513300 + }, + { + "epoch": 68.45333333333333, + "grad_norm": 0.8409252762794495, + "learning_rate": 1.57892e-05, + "loss": 1.3215591430664062, + "step": 513400 + }, + { + "epoch": 68.46666666666667, + "grad_norm": 0.8817701935768127, + "learning_rate": 1.5782533333333337e-05, + "loss": 1.3250498962402344, + "step": 513500 + }, + { + "epoch": 68.48, + "grad_norm": 0.868848979473114, + "learning_rate": 1.5775866666666666e-05, + "loss": 1.329929656982422, + "step": 513600 + }, + { + "epoch": 68.49333333333334, + "grad_norm": 0.9269536137580872, + "learning_rate": 1.57692e-05, + "loss": 1.3273797607421876, + "step": 513700 + }, + { + "epoch": 68.50666666666666, + "grad_norm": 0.8891344666481018, + "learning_rate": 1.5762533333333334e-05, + "loss": 1.3250120544433595, + "step": 513800 + }, + { + "epoch": 68.52, + "grad_norm": 0.8972460031509399, + "learning_rate": 1.575586666666667e-05, + "loss": 1.3335025024414062, + "step": 513900 + }, + { + "epoch": 68.53333333333333, + "grad_norm": 0.8979598879814148, + "learning_rate": 1.57492e-05, + "loss": 1.327074737548828, + "step": 514000 + }, + { + "epoch": 68.54666666666667, + "grad_norm": 0.9028379917144775, + "learning_rate": 1.5742533333333334e-05, + "loss": 1.32595947265625, + "step": 514100 + }, + { + "epoch": 68.56, + "grad_norm": 0.8925226926803589, + "learning_rate": 1.573586666666667e-05, + "loss": 1.3272763061523438, + "step": 514200 + }, + { + "epoch": 68.57333333333334, + "grad_norm": 0.9189619421958923, + "learning_rate": 1.572926666666667e-05, + "loss": 1.3309127807617187, + "step": 514300 + }, + { + "epoch": 68.58666666666667, + "grad_norm": 0.8941634893417358, + "learning_rate": 1.57226e-05, + "loss": 1.3285725402832032, + "step": 514400 + }, + { + "epoch": 68.6, + "grad_norm": 0.9585229158401489, + "learning_rate": 1.5715933333333337e-05, + "loss": 1.3328392028808593, + "step": 514500 + }, + { + "epoch": 68.61333333333333, + "grad_norm": 0.8872119784355164, + "learning_rate": 1.5709266666666665e-05, + "loss": 1.3325770568847657, + "step": 514600 + }, + { + "epoch": 68.62666666666667, + "grad_norm": 0.8843336701393127, + "learning_rate": 1.57026e-05, + "loss": 1.331486358642578, + "step": 514700 + }, + { + "epoch": 68.64, + "grad_norm": 0.9135434031486511, + "learning_rate": 1.5695933333333333e-05, + "loss": 1.333922119140625, + "step": 514800 + }, + { + "epoch": 68.65333333333334, + "grad_norm": 0.9394828677177429, + "learning_rate": 1.568926666666667e-05, + "loss": 1.3295352172851562, + "step": 514900 + }, + { + "epoch": 68.66666666666667, + "grad_norm": 0.9578185081481934, + "learning_rate": 1.56826e-05, + "loss": 1.331282958984375, + "step": 515000 + }, + { + "epoch": 68.68, + "grad_norm": 0.9389871954917908, + "learning_rate": 1.5675933333333334e-05, + "loss": 1.3376300048828125, + "step": 515100 + }, + { + "epoch": 68.69333333333333, + "grad_norm": 0.8578580021858215, + "learning_rate": 1.566926666666667e-05, + "loss": 1.333085479736328, + "step": 515200 + }, + { + "epoch": 68.70666666666666, + "grad_norm": 0.9202980399131775, + "learning_rate": 1.5662599999999998e-05, + "loss": 1.33133544921875, + "step": 515300 + }, + { + "epoch": 68.72, + "grad_norm": 0.9534364938735962, + "learning_rate": 1.5655933333333334e-05, + "loss": 1.3320506286621094, + "step": 515400 + }, + { + "epoch": 68.73333333333333, + "grad_norm": 0.8657859563827515, + "learning_rate": 1.5649266666666666e-05, + "loss": 1.3358692932128906, + "step": 515500 + }, + { + "epoch": 68.74666666666667, + "grad_norm": 0.8687852621078491, + "learning_rate": 1.56426e-05, + "loss": 1.3360931396484375, + "step": 515600 + }, + { + "epoch": 68.76, + "grad_norm": 0.9254283308982849, + "learning_rate": 1.5635933333333334e-05, + "loss": 1.3366038513183593, + "step": 515700 + }, + { + "epoch": 68.77333333333333, + "grad_norm": 0.9339519739151001, + "learning_rate": 1.5629266666666666e-05, + "loss": 1.3345875549316406, + "step": 515800 + }, + { + "epoch": 68.78666666666666, + "grad_norm": 0.942951500415802, + "learning_rate": 1.5622600000000002e-05, + "loss": 1.3363542175292968, + "step": 515900 + }, + { + "epoch": 68.8, + "grad_norm": 0.8819780945777893, + "learning_rate": 1.5615933333333334e-05, + "loss": 1.33906005859375, + "step": 516000 + }, + { + "epoch": 68.81333333333333, + "grad_norm": 0.9070013761520386, + "learning_rate": 1.5609266666666666e-05, + "loss": 1.3376704406738282, + "step": 516100 + }, + { + "epoch": 68.82666666666667, + "grad_norm": 0.9122033715248108, + "learning_rate": 1.5602600000000002e-05, + "loss": 1.339272003173828, + "step": 516200 + }, + { + "epoch": 68.84, + "grad_norm": 0.8980287313461304, + "learning_rate": 1.5595933333333334e-05, + "loss": 1.336685791015625, + "step": 516300 + }, + { + "epoch": 68.85333333333334, + "grad_norm": 0.8671182990074158, + "learning_rate": 1.5589333333333333e-05, + "loss": 1.338714599609375, + "step": 516400 + }, + { + "epoch": 68.86666666666666, + "grad_norm": 0.8897833228111267, + "learning_rate": 1.558266666666667e-05, + "loss": 1.3385552978515625, + "step": 516500 + }, + { + "epoch": 68.88, + "grad_norm": 0.8926507830619812, + "learning_rate": 1.5576e-05, + "loss": 1.3375399780273438, + "step": 516600 + }, + { + "epoch": 68.89333333333333, + "grad_norm": 0.9504712224006653, + "learning_rate": 1.5569333333333334e-05, + "loss": 1.3395611572265624, + "step": 516700 + }, + { + "epoch": 68.90666666666667, + "grad_norm": 0.9633262753486633, + "learning_rate": 1.5562666666666666e-05, + "loss": 1.337670135498047, + "step": 516800 + }, + { + "epoch": 68.92, + "grad_norm": 0.9180074334144592, + "learning_rate": 1.5556e-05, + "loss": 1.3344358825683593, + "step": 516900 + }, + { + "epoch": 68.93333333333334, + "grad_norm": 0.9330366849899292, + "learning_rate": 1.5549333333333334e-05, + "loss": 1.3429493713378906, + "step": 517000 + }, + { + "epoch": 68.94666666666667, + "grad_norm": 0.8484285473823547, + "learning_rate": 1.5542666666666666e-05, + "loss": 1.33810791015625, + "step": 517100 + }, + { + "epoch": 68.96, + "grad_norm": 0.9376809597015381, + "learning_rate": 1.5536e-05, + "loss": 1.3395620727539062, + "step": 517200 + }, + { + "epoch": 68.97333333333333, + "grad_norm": 0.8969297409057617, + "learning_rate": 1.5529333333333334e-05, + "loss": 1.340773468017578, + "step": 517300 + }, + { + "epoch": 68.98666666666666, + "grad_norm": 0.8501908779144287, + "learning_rate": 1.552266666666667e-05, + "loss": 1.34123046875, + "step": 517400 + }, + { + "epoch": 69.0, + "grad_norm": 0.9352733492851257, + "learning_rate": 1.5516e-05, + "loss": 1.3383326721191406, + "step": 517500 + }, + { + "epoch": 69.01333333333334, + "grad_norm": 0.909633219242096, + "learning_rate": 1.5509333333333334e-05, + "loss": 1.3029652404785157, + "step": 517600 + }, + { + "epoch": 69.02666666666667, + "grad_norm": 0.8774516582489014, + "learning_rate": 1.550266666666667e-05, + "loss": 1.3019322204589843, + "step": 517700 + }, + { + "epoch": 69.04, + "grad_norm": 0.8658164143562317, + "learning_rate": 1.5496e-05, + "loss": 1.3007429504394532, + "step": 517800 + }, + { + "epoch": 69.05333333333333, + "grad_norm": 0.9352324604988098, + "learning_rate": 1.5489333333333334e-05, + "loss": 1.2994084167480469, + "step": 517900 + }, + { + "epoch": 69.06666666666666, + "grad_norm": 0.8457640409469604, + "learning_rate": 1.5482666666666667e-05, + "loss": 1.3021054077148437, + "step": 518000 + }, + { + "epoch": 69.08, + "grad_norm": 0.8199939727783203, + "learning_rate": 1.5476000000000002e-05, + "loss": 1.303291015625, + "step": 518100 + }, + { + "epoch": 69.09333333333333, + "grad_norm": 0.9278339743614197, + "learning_rate": 1.5469333333333335e-05, + "loss": 1.3022172546386719, + "step": 518200 + }, + { + "epoch": 69.10666666666667, + "grad_norm": 0.8438993096351624, + "learning_rate": 1.5462666666666667e-05, + "loss": 1.3028335571289062, + "step": 518300 + }, + { + "epoch": 69.12, + "grad_norm": 0.87488853931427, + "learning_rate": 1.5456000000000002e-05, + "loss": 1.3034165954589845, + "step": 518400 + }, + { + "epoch": 69.13333333333334, + "grad_norm": 0.8736199140548706, + "learning_rate": 1.54494e-05, + "loss": 1.304062042236328, + "step": 518500 + }, + { + "epoch": 69.14666666666666, + "grad_norm": 0.8868971467018127, + "learning_rate": 1.5442733333333334e-05, + "loss": 1.303873291015625, + "step": 518600 + }, + { + "epoch": 69.16, + "grad_norm": 0.8616037964820862, + "learning_rate": 1.543606666666667e-05, + "loss": 1.3016984558105469, + "step": 518700 + }, + { + "epoch": 69.17333333333333, + "grad_norm": 0.8724547624588013, + "learning_rate": 1.54294e-05, + "loss": 1.3086442565917968, + "step": 518800 + }, + { + "epoch": 69.18666666666667, + "grad_norm": 0.8624784350395203, + "learning_rate": 1.5422733333333334e-05, + "loss": 1.3114741516113282, + "step": 518900 + }, + { + "epoch": 69.2, + "grad_norm": 0.8696256875991821, + "learning_rate": 1.5416066666666666e-05, + "loss": 1.3064015197753907, + "step": 519000 + }, + { + "epoch": 69.21333333333334, + "grad_norm": 0.9286923408508301, + "learning_rate": 1.5409400000000002e-05, + "loss": 1.3089067077636718, + "step": 519100 + }, + { + "epoch": 69.22666666666667, + "grad_norm": 0.8909485936164856, + "learning_rate": 1.5402733333333334e-05, + "loss": 1.3079788208007812, + "step": 519200 + }, + { + "epoch": 69.24, + "grad_norm": 0.8831815123558044, + "learning_rate": 1.5396066666666666e-05, + "loss": 1.3152728271484375, + "step": 519300 + }, + { + "epoch": 69.25333333333333, + "grad_norm": 0.8436625003814697, + "learning_rate": 1.5389400000000002e-05, + "loss": 1.3138188171386718, + "step": 519400 + }, + { + "epoch": 69.26666666666667, + "grad_norm": 0.9039004445075989, + "learning_rate": 1.5382733333333334e-05, + "loss": 1.3095545959472656, + "step": 519500 + }, + { + "epoch": 69.28, + "grad_norm": 0.8767098188400269, + "learning_rate": 1.5376066666666667e-05, + "loss": 1.3092991638183593, + "step": 519600 + }, + { + "epoch": 69.29333333333334, + "grad_norm": 0.894680917263031, + "learning_rate": 1.53694e-05, + "loss": 1.3123838806152344, + "step": 519700 + }, + { + "epoch": 69.30666666666667, + "grad_norm": 0.8522490859031677, + "learning_rate": 1.5362733333333335e-05, + "loss": 1.3137554931640625, + "step": 519800 + }, + { + "epoch": 69.32, + "grad_norm": 0.9253702759742737, + "learning_rate": 1.535606666666667e-05, + "loss": 1.312119140625, + "step": 519900 + }, + { + "epoch": 69.33333333333333, + "grad_norm": 0.8951952457427979, + "learning_rate": 1.53494e-05, + "loss": 1.3125660705566407, + "step": 520000 + }, + { + "epoch": 69.34666666666666, + "grad_norm": 0.8459183573722839, + "learning_rate": 1.5342733333333335e-05, + "loss": 1.3168217468261718, + "step": 520100 + }, + { + "epoch": 69.36, + "grad_norm": 0.9312644600868225, + "learning_rate": 1.5336066666666667e-05, + "loss": 1.3158766174316405, + "step": 520200 + }, + { + "epoch": 69.37333333333333, + "grad_norm": 0.885540783405304, + "learning_rate": 1.5329400000000003e-05, + "loss": 1.3112091064453124, + "step": 520300 + }, + { + "epoch": 69.38666666666667, + "grad_norm": 0.8519514203071594, + "learning_rate": 1.5322733333333335e-05, + "loss": 1.3133538818359376, + "step": 520400 + }, + { + "epoch": 69.4, + "grad_norm": 0.9369427561759949, + "learning_rate": 1.5316133333333334e-05, + "loss": 1.3154583740234376, + "step": 520500 + }, + { + "epoch": 69.41333333333333, + "grad_norm": 0.8602283596992493, + "learning_rate": 1.5309466666666666e-05, + "loss": 1.3165095520019532, + "step": 520600 + }, + { + "epoch": 69.42666666666666, + "grad_norm": 0.9157493114471436, + "learning_rate": 1.5302800000000002e-05, + "loss": 1.3148411560058593, + "step": 520700 + }, + { + "epoch": 69.44, + "grad_norm": 0.9101560711860657, + "learning_rate": 1.5296133333333334e-05, + "loss": 1.3182754516601562, + "step": 520800 + }, + { + "epoch": 69.45333333333333, + "grad_norm": 0.9380730390548706, + "learning_rate": 1.528946666666667e-05, + "loss": 1.3192401123046875, + "step": 520900 + }, + { + "epoch": 69.46666666666667, + "grad_norm": 0.9109295010566711, + "learning_rate": 1.52828e-05, + "loss": 1.3193789672851564, + "step": 521000 + }, + { + "epoch": 69.48, + "grad_norm": 0.8645269274711609, + "learning_rate": 1.5276133333333334e-05, + "loss": 1.3203118896484376, + "step": 521100 + }, + { + "epoch": 69.49333333333334, + "grad_norm": 0.8796331882476807, + "learning_rate": 1.5269466666666667e-05, + "loss": 1.3172000122070313, + "step": 521200 + }, + { + "epoch": 69.50666666666666, + "grad_norm": 0.9040528535842896, + "learning_rate": 1.5262800000000002e-05, + "loss": 1.3217599487304688, + "step": 521300 + }, + { + "epoch": 69.52, + "grad_norm": 0.9129952788352966, + "learning_rate": 1.5256133333333333e-05, + "loss": 1.3199691772460938, + "step": 521400 + }, + { + "epoch": 69.53333333333333, + "grad_norm": 0.927264928817749, + "learning_rate": 1.5249466666666667e-05, + "loss": 1.3197657775878906, + "step": 521500 + }, + { + "epoch": 69.54666666666667, + "grad_norm": 0.8854173421859741, + "learning_rate": 1.52428e-05, + "loss": 1.32036865234375, + "step": 521600 + }, + { + "epoch": 69.56, + "grad_norm": 0.864914059638977, + "learning_rate": 1.5236133333333333e-05, + "loss": 1.3250689697265625, + "step": 521700 + }, + { + "epoch": 69.57333333333334, + "grad_norm": 0.9233516454696655, + "learning_rate": 1.5229466666666667e-05, + "loss": 1.3195721435546874, + "step": 521800 + }, + { + "epoch": 69.58666666666667, + "grad_norm": 0.8919656872749329, + "learning_rate": 1.5222800000000001e-05, + "loss": 1.3226580810546875, + "step": 521900 + }, + { + "epoch": 69.6, + "grad_norm": 0.9302183389663696, + "learning_rate": 1.5216133333333335e-05, + "loss": 1.325461883544922, + "step": 522000 + }, + { + "epoch": 69.61333333333333, + "grad_norm": 0.8252825736999512, + "learning_rate": 1.5209466666666666e-05, + "loss": 1.3249801635742187, + "step": 522100 + }, + { + "epoch": 69.62666666666667, + "grad_norm": 0.9176365733146667, + "learning_rate": 1.5202800000000001e-05, + "loss": 1.3211125183105468, + "step": 522200 + }, + { + "epoch": 69.64, + "grad_norm": 0.8246389627456665, + "learning_rate": 1.5196133333333335e-05, + "loss": 1.3223980712890624, + "step": 522300 + }, + { + "epoch": 69.65333333333334, + "grad_norm": 0.9392738938331604, + "learning_rate": 1.5189466666666669e-05, + "loss": 1.319575653076172, + "step": 522400 + }, + { + "epoch": 69.66666666666667, + "grad_norm": 0.888167142868042, + "learning_rate": 1.5182866666666668e-05, + "loss": 1.3244210815429687, + "step": 522500 + }, + { + "epoch": 69.68, + "grad_norm": 0.8745282292366028, + "learning_rate": 1.5176200000000002e-05, + "loss": 1.322125244140625, + "step": 522600 + }, + { + "epoch": 69.69333333333333, + "grad_norm": 0.8966434001922607, + "learning_rate": 1.5169533333333333e-05, + "loss": 1.328828125, + "step": 522700 + }, + { + "epoch": 69.70666666666666, + "grad_norm": 0.8466253876686096, + "learning_rate": 1.5162866666666667e-05, + "loss": 1.3279318237304687, + "step": 522800 + }, + { + "epoch": 69.72, + "grad_norm": 0.8887118697166443, + "learning_rate": 1.51562e-05, + "loss": 1.3284657287597657, + "step": 522900 + }, + { + "epoch": 69.73333333333333, + "grad_norm": 0.7998771667480469, + "learning_rate": 1.5149533333333335e-05, + "loss": 1.32925537109375, + "step": 523000 + }, + { + "epoch": 69.74666666666667, + "grad_norm": 0.8823466300964355, + "learning_rate": 1.5142866666666667e-05, + "loss": 1.3294252014160157, + "step": 523100 + }, + { + "epoch": 69.76, + "grad_norm": 0.9160724878311157, + "learning_rate": 1.5136200000000001e-05, + "loss": 1.327671356201172, + "step": 523200 + }, + { + "epoch": 69.77333333333333, + "grad_norm": 0.8401466012001038, + "learning_rate": 1.5129533333333335e-05, + "loss": 1.3307571411132812, + "step": 523300 + }, + { + "epoch": 69.78666666666666, + "grad_norm": 0.8765178322792053, + "learning_rate": 1.5122866666666669e-05, + "loss": 1.329644775390625, + "step": 523400 + }, + { + "epoch": 69.8, + "grad_norm": 0.87641841173172, + "learning_rate": 1.51162e-05, + "loss": 1.3258184814453124, + "step": 523500 + }, + { + "epoch": 69.81333333333333, + "grad_norm": 0.8888761401176453, + "learning_rate": 1.5109533333333333e-05, + "loss": 1.3236990356445313, + "step": 523600 + }, + { + "epoch": 69.82666666666667, + "grad_norm": 0.91169273853302, + "learning_rate": 1.5102866666666667e-05, + "loss": 1.3255255126953125, + "step": 523700 + }, + { + "epoch": 69.84, + "grad_norm": 0.8905537724494934, + "learning_rate": 1.5096200000000001e-05, + "loss": 1.3305224609375, + "step": 523800 + }, + { + "epoch": 69.85333333333334, + "grad_norm": 0.8976826667785645, + "learning_rate": 1.5089533333333334e-05, + "loss": 1.3281327819824218, + "step": 523900 + }, + { + "epoch": 69.86666666666666, + "grad_norm": 0.9264980554580688, + "learning_rate": 1.5082866666666667e-05, + "loss": 1.3322329711914063, + "step": 524000 + }, + { + "epoch": 69.88, + "grad_norm": 0.8969742059707642, + "learning_rate": 1.5076200000000001e-05, + "loss": 1.3304733276367187, + "step": 524100 + }, + { + "epoch": 69.89333333333333, + "grad_norm": 0.9283936619758606, + "learning_rate": 1.5069533333333332e-05, + "loss": 1.3320317077636719, + "step": 524200 + }, + { + "epoch": 69.90666666666667, + "grad_norm": 0.9455838203430176, + "learning_rate": 1.5062866666666666e-05, + "loss": 1.3323895263671874, + "step": 524300 + }, + { + "epoch": 69.92, + "grad_norm": 0.9530020356178284, + "learning_rate": 1.5056200000000002e-05, + "loss": 1.333441162109375, + "step": 524400 + }, + { + "epoch": 69.93333333333334, + "grad_norm": 0.8964418768882751, + "learning_rate": 1.5049599999999999e-05, + "loss": 1.3335765075683594, + "step": 524500 + }, + { + "epoch": 69.94666666666667, + "grad_norm": 0.8553877472877502, + "learning_rate": 1.5042933333333335e-05, + "loss": 1.3312777709960937, + "step": 524600 + }, + { + "epoch": 69.96, + "grad_norm": 0.8218632936477661, + "learning_rate": 1.5036266666666669e-05, + "loss": 1.3336231994628907, + "step": 524700 + }, + { + "epoch": 69.97333333333333, + "grad_norm": 0.8228429555892944, + "learning_rate": 1.5029600000000003e-05, + "loss": 1.3307693481445313, + "step": 524800 + }, + { + "epoch": 69.98666666666666, + "grad_norm": 0.890493631362915, + "learning_rate": 1.5022933333333333e-05, + "loss": 1.3317050170898437, + "step": 524900 + }, + { + "epoch": 70.0, + "grad_norm": 0.8892182111740112, + "learning_rate": 1.5016266666666667e-05, + "loss": 1.3370907592773438, + "step": 525000 + }, + { + "epoch": 70.01333333333334, + "grad_norm": 0.8805796504020691, + "learning_rate": 1.5009600000000001e-05, + "loss": 1.2896534729003906, + "step": 525100 + }, + { + "epoch": 70.02666666666667, + "grad_norm": 0.8995780348777771, + "learning_rate": 1.5002933333333333e-05, + "loss": 1.289251251220703, + "step": 525200 + }, + { + "epoch": 70.04, + "grad_norm": 0.8692154884338379, + "learning_rate": 1.4996266666666667e-05, + "loss": 1.2940298461914062, + "step": 525300 + }, + { + "epoch": 70.05333333333333, + "grad_norm": 0.9129854440689087, + "learning_rate": 1.4989600000000001e-05, + "loss": 1.2941226196289062, + "step": 525400 + }, + { + "epoch": 70.06666666666666, + "grad_norm": 0.8497447371482849, + "learning_rate": 1.4982933333333335e-05, + "loss": 1.2971897888183594, + "step": 525500 + }, + { + "epoch": 70.08, + "grad_norm": 0.9296039342880249, + "learning_rate": 1.4976266666666666e-05, + "loss": 1.2974925231933594, + "step": 525600 + }, + { + "epoch": 70.09333333333333, + "grad_norm": 0.8348743915557861, + "learning_rate": 1.49696e-05, + "loss": 1.2969551086425781, + "step": 525700 + }, + { + "epoch": 70.10666666666667, + "grad_norm": 0.9072258472442627, + "learning_rate": 1.4962933333333334e-05, + "loss": 1.2984727478027345, + "step": 525800 + }, + { + "epoch": 70.12, + "grad_norm": 0.87555330991745, + "learning_rate": 1.4956266666666668e-05, + "loss": 1.2968763732910156, + "step": 525900 + }, + { + "epoch": 70.13333333333334, + "grad_norm": 0.8605111837387085, + "learning_rate": 1.49496e-05, + "loss": 1.2984910583496094, + "step": 526000 + }, + { + "epoch": 70.14666666666666, + "grad_norm": 0.9041507840156555, + "learning_rate": 1.4942933333333334e-05, + "loss": 1.2995046997070312, + "step": 526100 + }, + { + "epoch": 70.16, + "grad_norm": 0.8892377018928528, + "learning_rate": 1.4936266666666668e-05, + "loss": 1.2987435913085938, + "step": 526200 + }, + { + "epoch": 70.17333333333333, + "grad_norm": 0.8845103979110718, + "learning_rate": 1.4929600000000002e-05, + "loss": 1.3019927978515624, + "step": 526300 + }, + { + "epoch": 70.18666666666667, + "grad_norm": 0.9019655585289001, + "learning_rate": 1.4922933333333332e-05, + "loss": 1.3028900146484375, + "step": 526400 + }, + { + "epoch": 70.2, + "grad_norm": 0.9145544171333313, + "learning_rate": 1.4916333333333335e-05, + "loss": 1.2975439453125, + "step": 526500 + }, + { + "epoch": 70.21333333333334, + "grad_norm": 0.8441560864448547, + "learning_rate": 1.4909666666666665e-05, + "loss": 1.2994468688964844, + "step": 526600 + }, + { + "epoch": 70.22666666666667, + "grad_norm": 0.9168753623962402, + "learning_rate": 1.4903000000000001e-05, + "loss": 1.2965029907226562, + "step": 526700 + }, + { + "epoch": 70.24, + "grad_norm": 0.918009340763092, + "learning_rate": 1.4896333333333335e-05, + "loss": 1.3034149169921876, + "step": 526800 + }, + { + "epoch": 70.25333333333333, + "grad_norm": 0.8701112866401672, + "learning_rate": 1.4889666666666669e-05, + "loss": 1.306947021484375, + "step": 526900 + }, + { + "epoch": 70.26666666666667, + "grad_norm": 0.8067172765731812, + "learning_rate": 1.4883e-05, + "loss": 1.3056159973144532, + "step": 527000 + }, + { + "epoch": 70.28, + "grad_norm": 0.8838335871696472, + "learning_rate": 1.4876333333333334e-05, + "loss": 1.3039329528808594, + "step": 527100 + }, + { + "epoch": 70.29333333333334, + "grad_norm": 0.7886351346969604, + "learning_rate": 1.4869666666666668e-05, + "loss": 1.3026358032226562, + "step": 527200 + }, + { + "epoch": 70.30666666666667, + "grad_norm": 0.858665406703949, + "learning_rate": 1.4863000000000002e-05, + "loss": 1.3058314514160156, + "step": 527300 + }, + { + "epoch": 70.32, + "grad_norm": 0.888764500617981, + "learning_rate": 1.4856333333333334e-05, + "loss": 1.2972772216796875, + "step": 527400 + }, + { + "epoch": 70.33333333333333, + "grad_norm": 0.8429321050643921, + "learning_rate": 1.4849666666666668e-05, + "loss": 1.3043406677246094, + "step": 527500 + }, + { + "epoch": 70.34666666666666, + "grad_norm": 0.877232015132904, + "learning_rate": 1.4843000000000002e-05, + "loss": 1.3073738098144532, + "step": 527600 + }, + { + "epoch": 70.36, + "grad_norm": 0.8669724464416504, + "learning_rate": 1.4836333333333336e-05, + "loss": 1.30747314453125, + "step": 527700 + }, + { + "epoch": 70.37333333333333, + "grad_norm": 0.8887328505516052, + "learning_rate": 1.4829666666666666e-05, + "loss": 1.3084428405761719, + "step": 527800 + }, + { + "epoch": 70.38666666666667, + "grad_norm": 0.8904489874839783, + "learning_rate": 1.4823e-05, + "loss": 1.3099253845214844, + "step": 527900 + }, + { + "epoch": 70.4, + "grad_norm": 0.8574255704879761, + "learning_rate": 1.4816333333333334e-05, + "loss": 1.3076028442382812, + "step": 528000 + }, + { + "epoch": 70.41333333333333, + "grad_norm": 0.8327115774154663, + "learning_rate": 1.4809666666666666e-05, + "loss": 1.3109042358398437, + "step": 528100 + }, + { + "epoch": 70.42666666666666, + "grad_norm": 0.8879788517951965, + "learning_rate": 1.4803e-05, + "loss": 1.3088136291503907, + "step": 528200 + }, + { + "epoch": 70.44, + "grad_norm": 0.9286050200462341, + "learning_rate": 1.4796333333333334e-05, + "loss": 1.308986358642578, + "step": 528300 + }, + { + "epoch": 70.45333333333333, + "grad_norm": 0.8870999217033386, + "learning_rate": 1.4789666666666668e-05, + "loss": 1.3082102966308593, + "step": 528400 + }, + { + "epoch": 70.46666666666667, + "grad_norm": 0.9179296493530273, + "learning_rate": 1.4783066666666667e-05, + "loss": 1.3106611633300782, + "step": 528500 + }, + { + "epoch": 70.48, + "grad_norm": 0.9033756852149963, + "learning_rate": 1.4776400000000001e-05, + "loss": 1.314158935546875, + "step": 528600 + }, + { + "epoch": 70.49333333333334, + "grad_norm": 0.8611282706260681, + "learning_rate": 1.4769733333333335e-05, + "loss": 1.3064042663574218, + "step": 528700 + }, + { + "epoch": 70.50666666666666, + "grad_norm": 0.8423687219619751, + "learning_rate": 1.4763066666666666e-05, + "loss": 1.3101791381835937, + "step": 528800 + }, + { + "epoch": 70.52, + "grad_norm": 0.8234757781028748, + "learning_rate": 1.4756400000000002e-05, + "loss": 1.3123239135742188, + "step": 528900 + }, + { + "epoch": 70.53333333333333, + "grad_norm": 0.8716632127761841, + "learning_rate": 1.4749733333333336e-05, + "loss": 1.3124678039550781, + "step": 529000 + }, + { + "epoch": 70.54666666666667, + "grad_norm": 0.9232488870620728, + "learning_rate": 1.4743066666666666e-05, + "loss": 1.3115689086914062, + "step": 529100 + }, + { + "epoch": 70.56, + "grad_norm": 0.8848524689674377, + "learning_rate": 1.47364e-05, + "loss": 1.3127764892578124, + "step": 529200 + }, + { + "epoch": 70.57333333333334, + "grad_norm": 0.875851035118103, + "learning_rate": 1.4729733333333334e-05, + "loss": 1.3133317565917968, + "step": 529300 + }, + { + "epoch": 70.58666666666667, + "grad_norm": 0.8727511763572693, + "learning_rate": 1.4723066666666668e-05, + "loss": 1.314737548828125, + "step": 529400 + }, + { + "epoch": 70.6, + "grad_norm": 0.8630813956260681, + "learning_rate": 1.47164e-05, + "loss": 1.3156022644042968, + "step": 529500 + }, + { + "epoch": 70.61333333333333, + "grad_norm": 0.8557106852531433, + "learning_rate": 1.4709733333333334e-05, + "loss": 1.3173948669433593, + "step": 529600 + }, + { + "epoch": 70.62666666666667, + "grad_norm": 0.9779431819915771, + "learning_rate": 1.4703066666666668e-05, + "loss": 1.3198297119140625, + "step": 529700 + }, + { + "epoch": 70.64, + "grad_norm": 0.8593903183937073, + "learning_rate": 1.4696400000000002e-05, + "loss": 1.316092529296875, + "step": 529800 + }, + { + "epoch": 70.65333333333334, + "grad_norm": 0.9095006585121155, + "learning_rate": 1.4689733333333333e-05, + "loss": 1.3180062866210938, + "step": 529900 + }, + { + "epoch": 70.66666666666667, + "grad_norm": 0.8926806449890137, + "learning_rate": 1.4683066666666667e-05, + "loss": 1.3165269470214844, + "step": 530000 + }, + { + "epoch": 70.68, + "grad_norm": 0.9139357805252075, + "learning_rate": 1.46764e-05, + "loss": 1.3208946228027343, + "step": 530100 + }, + { + "epoch": 70.69333333333333, + "grad_norm": 0.8682335615158081, + "learning_rate": 1.4669733333333335e-05, + "loss": 1.3224298095703124, + "step": 530200 + }, + { + "epoch": 70.70666666666666, + "grad_norm": 0.8869616985321045, + "learning_rate": 1.4663066666666667e-05, + "loss": 1.3226483154296875, + "step": 530300 + }, + { + "epoch": 70.72, + "grad_norm": 0.8614656925201416, + "learning_rate": 1.46564e-05, + "loss": 1.3232708740234376, + "step": 530400 + }, + { + "epoch": 70.73333333333333, + "grad_norm": 0.9762331247329712, + "learning_rate": 1.46498e-05, + "loss": 1.3229257202148437, + "step": 530500 + }, + { + "epoch": 70.74666666666667, + "grad_norm": 0.8502513766288757, + "learning_rate": 1.4643133333333334e-05, + "loss": 1.3204423522949218, + "step": 530600 + }, + { + "epoch": 70.76, + "grad_norm": 0.9142144918441772, + "learning_rate": 1.4636466666666668e-05, + "loss": 1.322928924560547, + "step": 530700 + }, + { + "epoch": 70.77333333333333, + "grad_norm": 0.9454054236412048, + "learning_rate": 1.4629800000000002e-05, + "loss": 1.3222068786621093, + "step": 530800 + }, + { + "epoch": 70.78666666666666, + "grad_norm": 0.8787757754325867, + "learning_rate": 1.4623133333333332e-05, + "loss": 1.3248483276367187, + "step": 530900 + }, + { + "epoch": 70.8, + "grad_norm": 0.9337016940116882, + "learning_rate": 1.4616466666666668e-05, + "loss": 1.32533447265625, + "step": 531000 + }, + { + "epoch": 70.81333333333333, + "grad_norm": 0.8793279528617859, + "learning_rate": 1.4609800000000002e-05, + "loss": 1.3210690307617188, + "step": 531100 + }, + { + "epoch": 70.82666666666667, + "grad_norm": 0.9024862051010132, + "learning_rate": 1.4603133333333336e-05, + "loss": 1.3219599914550781, + "step": 531200 + }, + { + "epoch": 70.84, + "grad_norm": 0.8972877264022827, + "learning_rate": 1.4596466666666667e-05, + "loss": 1.3197425842285155, + "step": 531300 + }, + { + "epoch": 70.85333333333334, + "grad_norm": 0.909234344959259, + "learning_rate": 1.45898e-05, + "loss": 1.3218959045410157, + "step": 531400 + }, + { + "epoch": 70.86666666666666, + "grad_norm": 0.9078801870346069, + "learning_rate": 1.4583133333333334e-05, + "loss": 1.3193194580078125, + "step": 531500 + }, + { + "epoch": 70.88, + "grad_norm": 0.8946749567985535, + "learning_rate": 1.4576466666666667e-05, + "loss": 1.3258621215820312, + "step": 531600 + }, + { + "epoch": 70.89333333333333, + "grad_norm": 0.8717100620269775, + "learning_rate": 1.45698e-05, + "loss": 1.324842529296875, + "step": 531700 + }, + { + "epoch": 70.90666666666667, + "grad_norm": 0.9220655560493469, + "learning_rate": 1.4563133333333335e-05, + "loss": 1.32437255859375, + "step": 531800 + }, + { + "epoch": 70.92, + "grad_norm": 0.9325002431869507, + "learning_rate": 1.4556466666666669e-05, + "loss": 1.3232379150390625, + "step": 531900 + }, + { + "epoch": 70.93333333333334, + "grad_norm": 0.9063462615013123, + "learning_rate": 1.45498e-05, + "loss": 1.324942626953125, + "step": 532000 + }, + { + "epoch": 70.94666666666667, + "grad_norm": 0.9205593466758728, + "learning_rate": 1.4543133333333333e-05, + "loss": 1.3274571228027343, + "step": 532100 + }, + { + "epoch": 70.96, + "grad_norm": 0.887042760848999, + "learning_rate": 1.4536466666666667e-05, + "loss": 1.3272421264648437, + "step": 532200 + }, + { + "epoch": 70.97333333333333, + "grad_norm": 0.8990888595581055, + "learning_rate": 1.4529800000000001e-05, + "loss": 1.3276673889160155, + "step": 532300 + }, + { + "epoch": 70.98666666666666, + "grad_norm": 0.86974036693573, + "learning_rate": 1.4523133333333333e-05, + "loss": 1.329319610595703, + "step": 532400 + }, + { + "epoch": 71.0, + "grad_norm": 0.8930814266204834, + "learning_rate": 1.4516533333333334e-05, + "loss": 1.325640869140625, + "step": 532500 + }, + { + "epoch": 71.01333333333334, + "grad_norm": 0.8759956955909729, + "learning_rate": 1.4509866666666666e-05, + "loss": 1.2856077575683593, + "step": 532600 + }, + { + "epoch": 71.02666666666667, + "grad_norm": 0.8954336047172546, + "learning_rate": 1.45032e-05, + "loss": 1.2832220458984376, + "step": 532700 + }, + { + "epoch": 71.04, + "grad_norm": 0.8733825087547302, + "learning_rate": 1.4496533333333334e-05, + "loss": 1.28903564453125, + "step": 532800 + }, + { + "epoch": 71.05333333333333, + "grad_norm": 0.9075688123703003, + "learning_rate": 1.4489866666666668e-05, + "loss": 1.28570556640625, + "step": 532900 + }, + { + "epoch": 71.06666666666666, + "grad_norm": 0.9383872747421265, + "learning_rate": 1.4483199999999999e-05, + "loss": 1.2899357604980468, + "step": 533000 + }, + { + "epoch": 71.08, + "grad_norm": 0.9034363031387329, + "learning_rate": 1.4476533333333333e-05, + "loss": 1.286364288330078, + "step": 533100 + }, + { + "epoch": 71.09333333333333, + "grad_norm": 0.8787199854850769, + "learning_rate": 1.4469866666666668e-05, + "loss": 1.2864273071289063, + "step": 533200 + }, + { + "epoch": 71.10666666666667, + "grad_norm": 0.8827729821205139, + "learning_rate": 1.4463200000000002e-05, + "loss": 1.2890650939941406, + "step": 533300 + }, + { + "epoch": 71.12, + "grad_norm": 0.8463526964187622, + "learning_rate": 1.4456533333333333e-05, + "loss": 1.2948846435546875, + "step": 533400 + }, + { + "epoch": 71.13333333333334, + "grad_norm": 0.903069794178009, + "learning_rate": 1.4449866666666667e-05, + "loss": 1.292220458984375, + "step": 533500 + }, + { + "epoch": 71.14666666666666, + "grad_norm": 0.9482007622718811, + "learning_rate": 1.4443200000000001e-05, + "loss": 1.2937982177734375, + "step": 533600 + }, + { + "epoch": 71.16, + "grad_norm": 0.8994336724281311, + "learning_rate": 1.4436533333333335e-05, + "loss": 1.2911940002441407, + "step": 533700 + }, + { + "epoch": 71.17333333333333, + "grad_norm": 0.8807686567306519, + "learning_rate": 1.4429866666666667e-05, + "loss": 1.2945388793945312, + "step": 533800 + }, + { + "epoch": 71.18666666666667, + "grad_norm": 0.8905879259109497, + "learning_rate": 1.4423200000000001e-05, + "loss": 1.294481964111328, + "step": 533900 + }, + { + "epoch": 71.2, + "grad_norm": 0.8632029891014099, + "learning_rate": 1.4416533333333335e-05, + "loss": 1.2912913513183595, + "step": 534000 + }, + { + "epoch": 71.21333333333334, + "grad_norm": 0.9372066259384155, + "learning_rate": 1.4409866666666669e-05, + "loss": 1.2954859924316406, + "step": 534100 + }, + { + "epoch": 71.22666666666667, + "grad_norm": 0.870266854763031, + "learning_rate": 1.44032e-05, + "loss": 1.2997502136230468, + "step": 534200 + }, + { + "epoch": 71.24, + "grad_norm": 0.8637234568595886, + "learning_rate": 1.4396533333333334e-05, + "loss": 1.2924945068359375, + "step": 534300 + }, + { + "epoch": 71.25333333333333, + "grad_norm": 0.9175564050674438, + "learning_rate": 1.4389866666666668e-05, + "loss": 1.2968971252441406, + "step": 534400 + }, + { + "epoch": 71.26666666666667, + "grad_norm": 0.876574695110321, + "learning_rate": 1.43832e-05, + "loss": 1.2949362182617188, + "step": 534500 + }, + { + "epoch": 71.28, + "grad_norm": 0.9054247140884399, + "learning_rate": 1.43766e-05, + "loss": 1.300845947265625, + "step": 534600 + }, + { + "epoch": 71.29333333333334, + "grad_norm": 0.9211097359657288, + "learning_rate": 1.4369933333333335e-05, + "loss": 1.3006065368652344, + "step": 534700 + }, + { + "epoch": 71.30666666666667, + "grad_norm": 0.8372483849525452, + "learning_rate": 1.4363266666666667e-05, + "loss": 1.2985647583007813, + "step": 534800 + }, + { + "epoch": 71.32, + "grad_norm": 0.8625202775001526, + "learning_rate": 1.43566e-05, + "loss": 1.3008456420898438, + "step": 534900 + }, + { + "epoch": 71.33333333333333, + "grad_norm": 0.8992438912391663, + "learning_rate": 1.4349933333333335e-05, + "loss": 1.301300048828125, + "step": 535000 + }, + { + "epoch": 71.34666666666666, + "grad_norm": 0.8850386738777161, + "learning_rate": 1.4343266666666669e-05, + "loss": 1.301788330078125, + "step": 535100 + }, + { + "epoch": 71.36, + "grad_norm": 0.8406701683998108, + "learning_rate": 1.43366e-05, + "loss": 1.2999703979492188, + "step": 535200 + }, + { + "epoch": 71.37333333333333, + "grad_norm": 0.8646606802940369, + "learning_rate": 1.4329933333333335e-05, + "loss": 1.3001799011230468, + "step": 535300 + }, + { + "epoch": 71.38666666666667, + "grad_norm": 0.9445309638977051, + "learning_rate": 1.4323266666666669e-05, + "loss": 1.302128143310547, + "step": 535400 + }, + { + "epoch": 71.4, + "grad_norm": 0.9471325874328613, + "learning_rate": 1.43166e-05, + "loss": 1.2999264526367187, + "step": 535500 + }, + { + "epoch": 71.41333333333333, + "grad_norm": 0.8217885494232178, + "learning_rate": 1.4309933333333333e-05, + "loss": 1.3032241821289063, + "step": 535600 + }, + { + "epoch": 71.42666666666666, + "grad_norm": 0.9401599764823914, + "learning_rate": 1.4303266666666667e-05, + "loss": 1.3056138610839845, + "step": 535700 + }, + { + "epoch": 71.44, + "grad_norm": 0.9012302756309509, + "learning_rate": 1.4296600000000001e-05, + "loss": 1.3041902160644532, + "step": 535800 + }, + { + "epoch": 71.45333333333333, + "grad_norm": 0.9111303091049194, + "learning_rate": 1.4289933333333334e-05, + "loss": 1.3063230895996094, + "step": 535900 + }, + { + "epoch": 71.46666666666667, + "grad_norm": 0.8673276901245117, + "learning_rate": 1.4283266666666668e-05, + "loss": 1.3001760864257812, + "step": 536000 + }, + { + "epoch": 71.48, + "grad_norm": 0.9236326217651367, + "learning_rate": 1.4276600000000002e-05, + "loss": 1.3068719482421876, + "step": 536100 + }, + { + "epoch": 71.49333333333334, + "grad_norm": 0.9119008779525757, + "learning_rate": 1.4269933333333335e-05, + "loss": 1.3041954040527344, + "step": 536200 + }, + { + "epoch": 71.50666666666666, + "grad_norm": 0.8844600319862366, + "learning_rate": 1.4263266666666666e-05, + "loss": 1.3039337158203126, + "step": 536300 + }, + { + "epoch": 71.52, + "grad_norm": 0.9151673316955566, + "learning_rate": 1.42566e-05, + "loss": 1.3061659240722656, + "step": 536400 + }, + { + "epoch": 71.53333333333333, + "grad_norm": 0.9146116971969604, + "learning_rate": 1.4249933333333334e-05, + "loss": 1.3047665405273436, + "step": 536500 + }, + { + "epoch": 71.54666666666667, + "grad_norm": 0.909635066986084, + "learning_rate": 1.4243333333333333e-05, + "loss": 1.3087080383300782, + "step": 536600 + }, + { + "epoch": 71.56, + "grad_norm": 0.9132217168807983, + "learning_rate": 1.4236666666666667e-05, + "loss": 1.3109938049316405, + "step": 536700 + }, + { + "epoch": 71.57333333333334, + "grad_norm": 0.9197409749031067, + "learning_rate": 1.4230000000000001e-05, + "loss": 1.3079139709472656, + "step": 536800 + }, + { + "epoch": 71.58666666666667, + "grad_norm": 0.8718376755714417, + "learning_rate": 1.4223333333333333e-05, + "loss": 1.3103158569335938, + "step": 536900 + }, + { + "epoch": 71.6, + "grad_norm": 0.8622058629989624, + "learning_rate": 1.4216666666666667e-05, + "loss": 1.31333251953125, + "step": 537000 + }, + { + "epoch": 71.61333333333333, + "grad_norm": 0.8807839155197144, + "learning_rate": 1.4210000000000001e-05, + "loss": 1.3074960327148437, + "step": 537100 + }, + { + "epoch": 71.62666666666667, + "grad_norm": 0.8405951261520386, + "learning_rate": 1.4203333333333335e-05, + "loss": 1.3117068481445313, + "step": 537200 + }, + { + "epoch": 71.64, + "grad_norm": 0.882014811038971, + "learning_rate": 1.4196666666666666e-05, + "loss": 1.3139077758789062, + "step": 537300 + }, + { + "epoch": 71.65333333333334, + "grad_norm": 0.9259293675422668, + "learning_rate": 1.4190000000000001e-05, + "loss": 1.310390625, + "step": 537400 + }, + { + "epoch": 71.66666666666667, + "grad_norm": 0.9055889248847961, + "learning_rate": 1.4183333333333335e-05, + "loss": 1.3092813110351562, + "step": 537500 + }, + { + "epoch": 71.68, + "grad_norm": 0.8556098937988281, + "learning_rate": 1.417666666666667e-05, + "loss": 1.30866455078125, + "step": 537600 + }, + { + "epoch": 71.69333333333333, + "grad_norm": 0.8926159143447876, + "learning_rate": 1.417e-05, + "loss": 1.3125555419921875, + "step": 537700 + }, + { + "epoch": 71.70666666666666, + "grad_norm": 0.9067847728729248, + "learning_rate": 1.4163333333333334e-05, + "loss": 1.3115115356445313, + "step": 537800 + }, + { + "epoch": 71.72, + "grad_norm": 0.9084548950195312, + "learning_rate": 1.4156666666666668e-05, + "loss": 1.310784912109375, + "step": 537900 + }, + { + "epoch": 71.73333333333333, + "grad_norm": 0.9122881889343262, + "learning_rate": 1.415e-05, + "loss": 1.3145706176757812, + "step": 538000 + }, + { + "epoch": 71.74666666666667, + "grad_norm": 0.9275632500648499, + "learning_rate": 1.4143333333333334e-05, + "loss": 1.3158493041992188, + "step": 538100 + }, + { + "epoch": 71.76, + "grad_norm": 0.8880303502082825, + "learning_rate": 1.4136666666666668e-05, + "loss": 1.3153211975097656, + "step": 538200 + }, + { + "epoch": 71.77333333333333, + "grad_norm": 0.8939701318740845, + "learning_rate": 1.4130000000000002e-05, + "loss": 1.3133526611328126, + "step": 538300 + }, + { + "epoch": 71.78666666666666, + "grad_norm": 0.9312496781349182, + "learning_rate": 1.4123333333333333e-05, + "loss": 1.3141810607910156, + "step": 538400 + }, + { + "epoch": 71.8, + "grad_norm": 0.8720466494560242, + "learning_rate": 1.4116666666666666e-05, + "loss": 1.3163778686523437, + "step": 538500 + }, + { + "epoch": 71.81333333333333, + "grad_norm": 0.8582771420478821, + "learning_rate": 1.4110066666666669e-05, + "loss": 1.3129298400878906, + "step": 538600 + }, + { + "epoch": 71.82666666666667, + "grad_norm": 0.8980292677879333, + "learning_rate": 1.41034e-05, + "loss": 1.3134010314941407, + "step": 538700 + }, + { + "epoch": 71.84, + "grad_norm": 0.8518330454826355, + "learning_rate": 1.4096733333333333e-05, + "loss": 1.318262176513672, + "step": 538800 + }, + { + "epoch": 71.85333333333334, + "grad_norm": 0.9726895689964294, + "learning_rate": 1.4090066666666667e-05, + "loss": 1.3170086669921874, + "step": 538900 + }, + { + "epoch": 71.86666666666666, + "grad_norm": 0.9808132648468018, + "learning_rate": 1.40834e-05, + "loss": 1.3163888549804688, + "step": 539000 + }, + { + "epoch": 71.88, + "grad_norm": 0.9004959464073181, + "learning_rate": 1.4076733333333334e-05, + "loss": 1.319114227294922, + "step": 539100 + }, + { + "epoch": 71.89333333333333, + "grad_norm": 0.9053959846496582, + "learning_rate": 1.4070066666666668e-05, + "loss": 1.31746337890625, + "step": 539200 + }, + { + "epoch": 71.90666666666667, + "grad_norm": 0.9328406453132629, + "learning_rate": 1.4063400000000002e-05, + "loss": 1.3196490478515626, + "step": 539300 + }, + { + "epoch": 71.92, + "grad_norm": 0.9023466110229492, + "learning_rate": 1.4056733333333332e-05, + "loss": 1.3168644714355469, + "step": 539400 + }, + { + "epoch": 71.93333333333334, + "grad_norm": 0.9490998983383179, + "learning_rate": 1.4050066666666666e-05, + "loss": 1.3167729187011719, + "step": 539500 + }, + { + "epoch": 71.94666666666667, + "grad_norm": 0.8722997903823853, + "learning_rate": 1.4043400000000002e-05, + "loss": 1.3187103271484375, + "step": 539600 + }, + { + "epoch": 71.96, + "grad_norm": 0.8097230792045593, + "learning_rate": 1.4036733333333336e-05, + "loss": 1.3224807739257813, + "step": 539700 + }, + { + "epoch": 71.97333333333333, + "grad_norm": 0.8848879337310791, + "learning_rate": 1.4030066666666666e-05, + "loss": 1.3202239990234375, + "step": 539800 + }, + { + "epoch": 71.98666666666666, + "grad_norm": 0.9258289933204651, + "learning_rate": 1.40234e-05, + "loss": 1.316883544921875, + "step": 539900 + }, + { + "epoch": 72.0, + "grad_norm": 0.8436217904090881, + "learning_rate": 1.4016733333333334e-05, + "loss": 1.315811309814453, + "step": 540000 + }, + { + "epoch": 72.01333333333334, + "grad_norm": 0.8667635321617126, + "learning_rate": 1.4010066666666668e-05, + "loss": 1.276677932739258, + "step": 540100 + }, + { + "epoch": 72.02666666666667, + "grad_norm": 0.9259230494499207, + "learning_rate": 1.40034e-05, + "loss": 1.281935577392578, + "step": 540200 + }, + { + "epoch": 72.04, + "grad_norm": 0.8905673027038574, + "learning_rate": 1.3996733333333334e-05, + "loss": 1.279156951904297, + "step": 540300 + }, + { + "epoch": 72.05333333333333, + "grad_norm": 0.829764723777771, + "learning_rate": 1.3990066666666668e-05, + "loss": 1.2802044677734374, + "step": 540400 + }, + { + "epoch": 72.06666666666666, + "grad_norm": 0.8586835861206055, + "learning_rate": 1.3983400000000002e-05, + "loss": 1.2799781036376954, + "step": 540500 + }, + { + "epoch": 72.08, + "grad_norm": 0.9158450365066528, + "learning_rate": 1.3976800000000001e-05, + "loss": 1.2819879150390625, + "step": 540600 + }, + { + "epoch": 72.09333333333333, + "grad_norm": 0.8834480047225952, + "learning_rate": 1.3970133333333335e-05, + "loss": 1.286240234375, + "step": 540700 + }, + { + "epoch": 72.10666666666667, + "grad_norm": 0.8838781118392944, + "learning_rate": 1.3963466666666666e-05, + "loss": 1.2864297485351563, + "step": 540800 + }, + { + "epoch": 72.12, + "grad_norm": 0.8703628778457642, + "learning_rate": 1.39568e-05, + "loss": 1.2833221435546875, + "step": 540900 + }, + { + "epoch": 72.13333333333334, + "grad_norm": 0.8430854678153992, + "learning_rate": 1.3950133333333334e-05, + "loss": 1.2873780822753906, + "step": 541000 + }, + { + "epoch": 72.14666666666666, + "grad_norm": 0.8535856008529663, + "learning_rate": 1.3943466666666668e-05, + "loss": 1.285396728515625, + "step": 541100 + }, + { + "epoch": 72.16, + "grad_norm": 0.9505435228347778, + "learning_rate": 1.39368e-05, + "loss": 1.2908889770507812, + "step": 541200 + }, + { + "epoch": 72.17333333333333, + "grad_norm": 0.9199652671813965, + "learning_rate": 1.3930133333333334e-05, + "loss": 1.2874760437011719, + "step": 541300 + }, + { + "epoch": 72.18666666666667, + "grad_norm": 0.9367565512657166, + "learning_rate": 1.3923466666666668e-05, + "loss": 1.2900453186035157, + "step": 541400 + }, + { + "epoch": 72.2, + "grad_norm": 0.8932370543479919, + "learning_rate": 1.3916799999999999e-05, + "loss": 1.290118408203125, + "step": 541500 + }, + { + "epoch": 72.21333333333334, + "grad_norm": 0.8846625089645386, + "learning_rate": 1.3910133333333333e-05, + "loss": 1.289880828857422, + "step": 541600 + }, + { + "epoch": 72.22666666666667, + "grad_norm": 0.8700215816497803, + "learning_rate": 1.3903466666666668e-05, + "loss": 1.2882028198242188, + "step": 541700 + }, + { + "epoch": 72.24, + "grad_norm": 0.8952950239181519, + "learning_rate": 1.3896800000000002e-05, + "loss": 1.2952290344238282, + "step": 541800 + }, + { + "epoch": 72.25333333333333, + "grad_norm": 0.8888140320777893, + "learning_rate": 1.3890133333333333e-05, + "loss": 1.2887269592285155, + "step": 541900 + }, + { + "epoch": 72.26666666666667, + "grad_norm": 0.873499870300293, + "learning_rate": 1.3883466666666667e-05, + "loss": 1.2873663330078124, + "step": 542000 + }, + { + "epoch": 72.28, + "grad_norm": 0.8604170083999634, + "learning_rate": 1.38768e-05, + "loss": 1.2889486694335937, + "step": 542100 + }, + { + "epoch": 72.29333333333334, + "grad_norm": 0.8493339419364929, + "learning_rate": 1.3870133333333335e-05, + "loss": 1.2932403564453125, + "step": 542200 + }, + { + "epoch": 72.30666666666667, + "grad_norm": 0.8944411873817444, + "learning_rate": 1.3863466666666667e-05, + "loss": 1.298619384765625, + "step": 542300 + }, + { + "epoch": 72.32, + "grad_norm": 0.9077425003051758, + "learning_rate": 1.3856800000000001e-05, + "loss": 1.291400146484375, + "step": 542400 + }, + { + "epoch": 72.33333333333333, + "grad_norm": 0.9395051598548889, + "learning_rate": 1.3850133333333335e-05, + "loss": 1.2952896118164063, + "step": 542500 + }, + { + "epoch": 72.34666666666666, + "grad_norm": 0.9028144478797913, + "learning_rate": 1.3843533333333334e-05, + "loss": 1.290705108642578, + "step": 542600 + }, + { + "epoch": 72.36, + "grad_norm": 0.9369432330131531, + "learning_rate": 1.3836866666666668e-05, + "loss": 1.2938015747070313, + "step": 542700 + }, + { + "epoch": 72.37333333333333, + "grad_norm": 0.8780479431152344, + "learning_rate": 1.3830200000000002e-05, + "loss": 1.296564483642578, + "step": 542800 + }, + { + "epoch": 72.38666666666667, + "grad_norm": 0.9035230875015259, + "learning_rate": 1.3823533333333332e-05, + "loss": 1.3008587646484375, + "step": 542900 + }, + { + "epoch": 72.4, + "grad_norm": 0.8920375108718872, + "learning_rate": 1.3816866666666666e-05, + "loss": 1.2913095092773437, + "step": 543000 + }, + { + "epoch": 72.41333333333333, + "grad_norm": 0.8965349793434143, + "learning_rate": 1.38102e-05, + "loss": 1.2953553771972657, + "step": 543100 + }, + { + "epoch": 72.42666666666666, + "grad_norm": 0.8993667364120483, + "learning_rate": 1.3803533333333334e-05, + "loss": 1.300503692626953, + "step": 543200 + }, + { + "epoch": 72.44, + "grad_norm": 0.8752589821815491, + "learning_rate": 1.3796866666666667e-05, + "loss": 1.2973211669921876, + "step": 543300 + }, + { + "epoch": 72.45333333333333, + "grad_norm": 0.9074227809906006, + "learning_rate": 1.37902e-05, + "loss": 1.2994436645507812, + "step": 543400 + }, + { + "epoch": 72.46666666666667, + "grad_norm": 0.8692722320556641, + "learning_rate": 1.3783533333333335e-05, + "loss": 1.3030880737304686, + "step": 543500 + }, + { + "epoch": 72.48, + "grad_norm": 0.9283269047737122, + "learning_rate": 1.3776866666666668e-05, + "loss": 1.2986073303222656, + "step": 543600 + }, + { + "epoch": 72.49333333333334, + "grad_norm": 0.8463515639305115, + "learning_rate": 1.3770199999999999e-05, + "loss": 1.3008390808105468, + "step": 543700 + }, + { + "epoch": 72.50666666666666, + "grad_norm": 0.9368971586227417, + "learning_rate": 1.3763533333333333e-05, + "loss": 1.3003103637695312, + "step": 543800 + }, + { + "epoch": 72.52, + "grad_norm": 0.8514252305030823, + "learning_rate": 1.3756866666666669e-05, + "loss": 1.2996723937988282, + "step": 543900 + }, + { + "epoch": 72.53333333333333, + "grad_norm": 0.9113193154335022, + "learning_rate": 1.3750200000000003e-05, + "loss": 1.3013104248046874, + "step": 544000 + }, + { + "epoch": 72.54666666666667, + "grad_norm": 0.8973194360733032, + "learning_rate": 1.3743533333333333e-05, + "loss": 1.303866424560547, + "step": 544100 + }, + { + "epoch": 72.56, + "grad_norm": 0.9292814135551453, + "learning_rate": 1.3736866666666667e-05, + "loss": 1.3007473754882812, + "step": 544200 + }, + { + "epoch": 72.57333333333334, + "grad_norm": 0.8650021553039551, + "learning_rate": 1.3730200000000001e-05, + "loss": 1.3053372192382813, + "step": 544300 + }, + { + "epoch": 72.58666666666667, + "grad_norm": 0.9136223196983337, + "learning_rate": 1.3723533333333333e-05, + "loss": 1.305074462890625, + "step": 544400 + }, + { + "epoch": 72.6, + "grad_norm": 0.899770975112915, + "learning_rate": 1.3716866666666667e-05, + "loss": 1.304183807373047, + "step": 544500 + }, + { + "epoch": 72.61333333333333, + "grad_norm": 0.9051358699798584, + "learning_rate": 1.3710200000000001e-05, + "loss": 1.2999253845214844, + "step": 544600 + }, + { + "epoch": 72.62666666666667, + "grad_norm": 0.8969173431396484, + "learning_rate": 1.37036e-05, + "loss": 1.301925048828125, + "step": 544700 + }, + { + "epoch": 72.64, + "grad_norm": 0.8683328032493591, + "learning_rate": 1.3696933333333334e-05, + "loss": 1.3041268920898437, + "step": 544800 + }, + { + "epoch": 72.65333333333334, + "grad_norm": 0.9285234808921814, + "learning_rate": 1.3690266666666668e-05, + "loss": 1.3035903930664063, + "step": 544900 + }, + { + "epoch": 72.66666666666667, + "grad_norm": 0.9057257175445557, + "learning_rate": 1.3683600000000002e-05, + "loss": 1.3026934814453126, + "step": 545000 + }, + { + "epoch": 72.68, + "grad_norm": 0.9157271385192871, + "learning_rate": 1.3676933333333333e-05, + "loss": 1.303736114501953, + "step": 545100 + }, + { + "epoch": 72.69333333333333, + "grad_norm": 0.8953295350074768, + "learning_rate": 1.3670266666666667e-05, + "loss": 1.3063804626464843, + "step": 545200 + }, + { + "epoch": 72.70666666666666, + "grad_norm": 0.9013524651527405, + "learning_rate": 1.36636e-05, + "loss": 1.3081599426269532, + "step": 545300 + }, + { + "epoch": 72.72, + "grad_norm": 0.8747628331184387, + "learning_rate": 1.3656933333333333e-05, + "loss": 1.3081907653808593, + "step": 545400 + }, + { + "epoch": 72.73333333333333, + "grad_norm": 0.8898458480834961, + "learning_rate": 1.3650266666666667e-05, + "loss": 1.308251953125, + "step": 545500 + }, + { + "epoch": 72.74666666666667, + "grad_norm": 0.9078856110572815, + "learning_rate": 1.3643600000000001e-05, + "loss": 1.3066876220703125, + "step": 545600 + }, + { + "epoch": 72.76, + "grad_norm": 0.8842049241065979, + "learning_rate": 1.3636933333333335e-05, + "loss": 1.3049169921875, + "step": 545700 + }, + { + "epoch": 72.77333333333333, + "grad_norm": 0.9232098460197449, + "learning_rate": 1.3630266666666666e-05, + "loss": 1.3058796691894532, + "step": 545800 + }, + { + "epoch": 72.78666666666666, + "grad_norm": 0.9262491464614868, + "learning_rate": 1.36236e-05, + "loss": 1.3056631469726563, + "step": 545900 + }, + { + "epoch": 72.8, + "grad_norm": 0.9117762446403503, + "learning_rate": 1.3616933333333335e-05, + "loss": 1.3098313903808594, + "step": 546000 + }, + { + "epoch": 72.81333333333333, + "grad_norm": 0.8940130472183228, + "learning_rate": 1.3610266666666669e-05, + "loss": 1.3110063171386719, + "step": 546100 + }, + { + "epoch": 72.82666666666667, + "grad_norm": 0.8723244071006775, + "learning_rate": 1.36036e-05, + "loss": 1.3087918090820312, + "step": 546200 + }, + { + "epoch": 72.84, + "grad_norm": 0.8790159821510315, + "learning_rate": 1.3596933333333334e-05, + "loss": 1.3090879821777344, + "step": 546300 + }, + { + "epoch": 72.85333333333334, + "grad_norm": 0.9324440956115723, + "learning_rate": 1.3590266666666668e-05, + "loss": 1.3065005493164064, + "step": 546400 + }, + { + "epoch": 72.86666666666666, + "grad_norm": 0.9022642374038696, + "learning_rate": 1.3583600000000002e-05, + "loss": 1.308943634033203, + "step": 546500 + }, + { + "epoch": 72.88, + "grad_norm": 0.8869839906692505, + "learning_rate": 1.3576933333333334e-05, + "loss": 1.3140464782714845, + "step": 546600 + }, + { + "epoch": 72.89333333333333, + "grad_norm": 0.9020800590515137, + "learning_rate": 1.3570333333333335e-05, + "loss": 1.3082620239257812, + "step": 546700 + }, + { + "epoch": 72.90666666666667, + "grad_norm": 0.8998864889144897, + "learning_rate": 1.3563666666666667e-05, + "loss": 1.3143278503417968, + "step": 546800 + }, + { + "epoch": 72.92, + "grad_norm": 0.9254443645477295, + "learning_rate": 1.3557e-05, + "loss": 1.3102537536621093, + "step": 546900 + }, + { + "epoch": 72.93333333333334, + "grad_norm": 0.8916531205177307, + "learning_rate": 1.3550333333333335e-05, + "loss": 1.3090887451171875, + "step": 547000 + }, + { + "epoch": 72.94666666666667, + "grad_norm": 0.8924204707145691, + "learning_rate": 1.3543666666666669e-05, + "loss": 1.3153028869628907, + "step": 547100 + }, + { + "epoch": 72.96, + "grad_norm": 0.8734211921691895, + "learning_rate": 1.3537e-05, + "loss": 1.3160145568847657, + "step": 547200 + }, + { + "epoch": 72.97333333333333, + "grad_norm": 0.8596046566963196, + "learning_rate": 1.3530333333333333e-05, + "loss": 1.3085627746582031, + "step": 547300 + }, + { + "epoch": 72.98666666666666, + "grad_norm": 0.8837646842002869, + "learning_rate": 1.3523666666666667e-05, + "loss": 1.3099195861816406, + "step": 547400 + }, + { + "epoch": 73.0, + "grad_norm": 0.9559072852134705, + "learning_rate": 1.3517000000000001e-05, + "loss": 1.3160740661621093, + "step": 547500 + }, + { + "epoch": 73.01333333333334, + "grad_norm": 0.9471146464347839, + "learning_rate": 1.3510333333333333e-05, + "loss": 1.2761563110351561, + "step": 547600 + }, + { + "epoch": 73.02666666666667, + "grad_norm": 0.8618519306182861, + "learning_rate": 1.3503666666666667e-05, + "loss": 1.2729344940185547, + "step": 547700 + }, + { + "epoch": 73.04, + "grad_norm": 0.8488065600395203, + "learning_rate": 1.3497000000000001e-05, + "loss": 1.273756561279297, + "step": 547800 + }, + { + "epoch": 73.05333333333333, + "grad_norm": 0.8331854343414307, + "learning_rate": 1.3490333333333332e-05, + "loss": 1.277390899658203, + "step": 547900 + }, + { + "epoch": 73.06666666666666, + "grad_norm": 0.8586211204528809, + "learning_rate": 1.3483666666666666e-05, + "loss": 1.276772689819336, + "step": 548000 + }, + { + "epoch": 73.08, + "grad_norm": 0.8098661303520203, + "learning_rate": 1.3477000000000002e-05, + "loss": 1.2797915649414062, + "step": 548100 + }, + { + "epoch": 73.09333333333333, + "grad_norm": 0.953315019607544, + "learning_rate": 1.3470333333333336e-05, + "loss": 1.276962432861328, + "step": 548200 + }, + { + "epoch": 73.10666666666667, + "grad_norm": 0.8598954677581787, + "learning_rate": 1.3463666666666666e-05, + "loss": 1.2770060729980468, + "step": 548300 + }, + { + "epoch": 73.12, + "grad_norm": 0.8851730227470398, + "learning_rate": 1.3457e-05, + "loss": 1.2772944641113282, + "step": 548400 + }, + { + "epoch": 73.13333333333334, + "grad_norm": 0.8884763121604919, + "learning_rate": 1.3450333333333334e-05, + "loss": 1.2774359130859374, + "step": 548500 + }, + { + "epoch": 73.14666666666666, + "grad_norm": 0.9043313264846802, + "learning_rate": 1.3443666666666668e-05, + "loss": 1.2833470153808593, + "step": 548600 + }, + { + "epoch": 73.16, + "grad_norm": 0.9404314160346985, + "learning_rate": 1.3437066666666667e-05, + "loss": 1.2804563903808595, + "step": 548700 + }, + { + "epoch": 73.17333333333333, + "grad_norm": 0.8437866568565369, + "learning_rate": 1.3430400000000001e-05, + "loss": 1.2854263305664062, + "step": 548800 + }, + { + "epoch": 73.18666666666667, + "grad_norm": 0.927335798740387, + "learning_rate": 1.3423733333333333e-05, + "loss": 1.2844186401367188, + "step": 548900 + }, + { + "epoch": 73.2, + "grad_norm": 0.8449512124061584, + "learning_rate": 1.3417066666666667e-05, + "loss": 1.2796637725830078, + "step": 549000 + }, + { + "epoch": 73.21333333333334, + "grad_norm": 0.8738372325897217, + "learning_rate": 1.3410400000000001e-05, + "loss": 1.2857395935058593, + "step": 549100 + }, + { + "epoch": 73.22666666666667, + "grad_norm": 0.8766629695892334, + "learning_rate": 1.3403733333333335e-05, + "loss": 1.2832762145996093, + "step": 549200 + }, + { + "epoch": 73.24, + "grad_norm": 0.8308307528495789, + "learning_rate": 1.3397066666666666e-05, + "loss": 1.2830810546875, + "step": 549300 + }, + { + "epoch": 73.25333333333333, + "grad_norm": 0.9020586013793945, + "learning_rate": 1.33904e-05, + "loss": 1.2846853637695312, + "step": 549400 + }, + { + "epoch": 73.26666666666667, + "grad_norm": 0.8639815449714661, + "learning_rate": 1.3383733333333334e-05, + "loss": 1.287603302001953, + "step": 549500 + }, + { + "epoch": 73.28, + "grad_norm": 0.8645631670951843, + "learning_rate": 1.3377066666666668e-05, + "loss": 1.287257537841797, + "step": 549600 + }, + { + "epoch": 73.29333333333334, + "grad_norm": 0.8956714868545532, + "learning_rate": 1.33704e-05, + "loss": 1.2851387023925782, + "step": 549700 + }, + { + "epoch": 73.30666666666667, + "grad_norm": 0.9055325984954834, + "learning_rate": 1.3363733333333334e-05, + "loss": 1.2879544067382813, + "step": 549800 + }, + { + "epoch": 73.32, + "grad_norm": 0.8861287236213684, + "learning_rate": 1.3357066666666668e-05, + "loss": 1.2887428283691407, + "step": 549900 + }, + { + "epoch": 73.33333333333333, + "grad_norm": 0.9045313000679016, + "learning_rate": 1.3350400000000002e-05, + "loss": 1.2884335327148437, + "step": 550000 + }, + { + "epoch": 73.34666666666666, + "grad_norm": 0.8875342011451721, + "learning_rate": 1.3343733333333332e-05, + "loss": 1.2835194396972656, + "step": 550100 + }, + { + "epoch": 73.36, + "grad_norm": 0.8842615485191345, + "learning_rate": 1.3337066666666666e-05, + "loss": 1.2884930419921874, + "step": 550200 + }, + { + "epoch": 73.37333333333333, + "grad_norm": 0.9177148342132568, + "learning_rate": 1.3330400000000002e-05, + "loss": 1.290846710205078, + "step": 550300 + }, + { + "epoch": 73.38666666666667, + "grad_norm": 0.913221538066864, + "learning_rate": 1.3323733333333336e-05, + "loss": 1.2883349609375, + "step": 550400 + }, + { + "epoch": 73.4, + "grad_norm": 0.9081894159317017, + "learning_rate": 1.3317066666666667e-05, + "loss": 1.2872616577148437, + "step": 550500 + }, + { + "epoch": 73.41333333333333, + "grad_norm": 0.8833068609237671, + "learning_rate": 1.33104e-05, + "loss": 1.2878277587890625, + "step": 550600 + }, + { + "epoch": 73.42666666666666, + "grad_norm": 0.8581375479698181, + "learning_rate": 1.33038e-05, + "loss": 1.2895700073242187, + "step": 550700 + }, + { + "epoch": 73.44, + "grad_norm": 0.9249962568283081, + "learning_rate": 1.3297133333333334e-05, + "loss": 1.2897068786621093, + "step": 550800 + }, + { + "epoch": 73.45333333333333, + "grad_norm": 0.9126532077789307, + "learning_rate": 1.3290466666666668e-05, + "loss": 1.2911618041992188, + "step": 550900 + }, + { + "epoch": 73.46666666666667, + "grad_norm": 0.91612708568573, + "learning_rate": 1.3283800000000001e-05, + "loss": 1.2918502807617187, + "step": 551000 + }, + { + "epoch": 73.48, + "grad_norm": 0.8593502044677734, + "learning_rate": 1.3277133333333334e-05, + "loss": 1.292982177734375, + "step": 551100 + }, + { + "epoch": 73.49333333333334, + "grad_norm": 0.9457326531410217, + "learning_rate": 1.3270466666666668e-05, + "loss": 1.2906185913085937, + "step": 551200 + }, + { + "epoch": 73.50666666666666, + "grad_norm": 0.8378877639770508, + "learning_rate": 1.3263800000000002e-05, + "loss": 1.29209228515625, + "step": 551300 + }, + { + "epoch": 73.52, + "grad_norm": 0.9088276624679565, + "learning_rate": 1.3257133333333336e-05, + "loss": 1.2912477111816407, + "step": 551400 + }, + { + "epoch": 73.53333333333333, + "grad_norm": 0.9294626712799072, + "learning_rate": 1.3250466666666666e-05, + "loss": 1.2885626220703126, + "step": 551500 + }, + { + "epoch": 73.54666666666667, + "grad_norm": 0.876581072807312, + "learning_rate": 1.32438e-05, + "loss": 1.2994056701660157, + "step": 551600 + }, + { + "epoch": 73.56, + "grad_norm": 0.9063646793365479, + "learning_rate": 1.3237133333333334e-05, + "loss": 1.2967149353027343, + "step": 551700 + }, + { + "epoch": 73.57333333333334, + "grad_norm": 0.8408426642417908, + "learning_rate": 1.3230466666666666e-05, + "loss": 1.2977626037597656, + "step": 551800 + }, + { + "epoch": 73.58666666666667, + "grad_norm": 0.9056010246276855, + "learning_rate": 1.32238e-05, + "loss": 1.2985139465332032, + "step": 551900 + }, + { + "epoch": 73.6, + "grad_norm": 0.8862862586975098, + "learning_rate": 1.3217133333333334e-05, + "loss": 1.2940017700195312, + "step": 552000 + }, + { + "epoch": 73.61333333333333, + "grad_norm": 0.8660182356834412, + "learning_rate": 1.3210466666666668e-05, + "loss": 1.2961624145507813, + "step": 552100 + }, + { + "epoch": 73.62666666666667, + "grad_norm": 0.8667203187942505, + "learning_rate": 1.3203799999999999e-05, + "loss": 1.2973252868652343, + "step": 552200 + }, + { + "epoch": 73.64, + "grad_norm": 0.8764863014221191, + "learning_rate": 1.3197133333333333e-05, + "loss": 1.3011990356445313, + "step": 552300 + }, + { + "epoch": 73.65333333333334, + "grad_norm": 0.854836106300354, + "learning_rate": 1.3190466666666668e-05, + "loss": 1.301475830078125, + "step": 552400 + }, + { + "epoch": 73.66666666666667, + "grad_norm": 0.8675264716148376, + "learning_rate": 1.3183800000000002e-05, + "loss": 1.2946461486816405, + "step": 552500 + }, + { + "epoch": 73.68, + "grad_norm": 0.8799411654472351, + "learning_rate": 1.3177133333333333e-05, + "loss": 1.2978501892089844, + "step": 552600 + }, + { + "epoch": 73.69333333333333, + "grad_norm": 0.8406023979187012, + "learning_rate": 1.3170466666666667e-05, + "loss": 1.2984336853027343, + "step": 552700 + }, + { + "epoch": 73.70666666666666, + "grad_norm": 0.8912414908409119, + "learning_rate": 1.3163866666666666e-05, + "loss": 1.3007151794433593, + "step": 552800 + }, + { + "epoch": 73.72, + "grad_norm": 0.8535100221633911, + "learning_rate": 1.31572e-05, + "loss": 1.2961094665527344, + "step": 552900 + }, + { + "epoch": 73.73333333333333, + "grad_norm": 0.932938814163208, + "learning_rate": 1.3150533333333334e-05, + "loss": 1.2960186767578126, + "step": 553000 + }, + { + "epoch": 73.74666666666667, + "grad_norm": 0.9171094298362732, + "learning_rate": 1.3143866666666668e-05, + "loss": 1.3013040161132812, + "step": 553100 + }, + { + "epoch": 73.76, + "grad_norm": 0.923318088054657, + "learning_rate": 1.31372e-05, + "loss": 1.300777130126953, + "step": 553200 + }, + { + "epoch": 73.77333333333333, + "grad_norm": 0.9453115463256836, + "learning_rate": 1.3130533333333334e-05, + "loss": 1.3012001037597656, + "step": 553300 + }, + { + "epoch": 73.78666666666666, + "grad_norm": 0.9598022699356079, + "learning_rate": 1.3123866666666668e-05, + "loss": 1.3000535583496093, + "step": 553400 + }, + { + "epoch": 73.8, + "grad_norm": 0.8746120929718018, + "learning_rate": 1.3117200000000002e-05, + "loss": 1.299759979248047, + "step": 553500 + }, + { + "epoch": 73.81333333333333, + "grad_norm": 0.8909258842468262, + "learning_rate": 1.3110533333333333e-05, + "loss": 1.3039195251464843, + "step": 553600 + }, + { + "epoch": 73.82666666666667, + "grad_norm": 0.899439811706543, + "learning_rate": 1.3103866666666667e-05, + "loss": 1.3032107543945313, + "step": 553700 + }, + { + "epoch": 73.84, + "grad_norm": 0.9339725375175476, + "learning_rate": 1.30972e-05, + "loss": 1.2999578857421874, + "step": 553800 + }, + { + "epoch": 73.85333333333334, + "grad_norm": 0.8592462539672852, + "learning_rate": 1.3090533333333335e-05, + "loss": 1.3077874755859376, + "step": 553900 + }, + { + "epoch": 73.86666666666666, + "grad_norm": 0.8757080435752869, + "learning_rate": 1.3083866666666667e-05, + "loss": 1.3068240356445313, + "step": 554000 + }, + { + "epoch": 73.88, + "grad_norm": 0.893817663192749, + "learning_rate": 1.30772e-05, + "loss": 1.3072088623046876, + "step": 554100 + }, + { + "epoch": 73.89333333333333, + "grad_norm": 0.8930887579917908, + "learning_rate": 1.3070533333333335e-05, + "loss": 1.303759307861328, + "step": 554200 + }, + { + "epoch": 73.90666666666667, + "grad_norm": 0.9105483293533325, + "learning_rate": 1.3063866666666665e-05, + "loss": 1.3057803344726562, + "step": 554300 + }, + { + "epoch": 73.92, + "grad_norm": 0.9180082678794861, + "learning_rate": 1.30572e-05, + "loss": 1.3057562255859374, + "step": 554400 + }, + { + "epoch": 73.93333333333334, + "grad_norm": 0.900630533695221, + "learning_rate": 1.3050533333333333e-05, + "loss": 1.3036831665039061, + "step": 554500 + }, + { + "epoch": 73.94666666666667, + "grad_norm": 0.9302444458007812, + "learning_rate": 1.3043866666666669e-05, + "loss": 1.3099397277832032, + "step": 554600 + }, + { + "epoch": 73.96, + "grad_norm": 0.9064813256263733, + "learning_rate": 1.30372e-05, + "loss": 1.3054379272460936, + "step": 554700 + }, + { + "epoch": 73.97333333333333, + "grad_norm": 0.8835692405700684, + "learning_rate": 1.3030600000000002e-05, + "loss": 1.3077413940429687, + "step": 554800 + }, + { + "epoch": 73.98666666666666, + "grad_norm": 0.8917888402938843, + "learning_rate": 1.3023933333333336e-05, + "loss": 1.3091519165039063, + "step": 554900 + }, + { + "epoch": 74.0, + "grad_norm": 0.8641742467880249, + "learning_rate": 1.3017266666666666e-05, + "loss": 1.3092634582519531, + "step": 555000 + }, + { + "epoch": 74.01333333333334, + "grad_norm": 0.944517970085144, + "learning_rate": 1.30106e-05, + "loss": 1.2658570861816407, + "step": 555100 + }, + { + "epoch": 74.02666666666667, + "grad_norm": 0.8598766326904297, + "learning_rate": 1.3003933333333334e-05, + "loss": 1.2683529663085937, + "step": 555200 + }, + { + "epoch": 74.04, + "grad_norm": 0.860201895236969, + "learning_rate": 1.2997266666666667e-05, + "loss": 1.2708037567138672, + "step": 555300 + }, + { + "epoch": 74.05333333333333, + "grad_norm": 0.8917511105537415, + "learning_rate": 1.29906e-05, + "loss": 1.271436004638672, + "step": 555400 + }, + { + "epoch": 74.06666666666666, + "grad_norm": 0.939109742641449, + "learning_rate": 1.2983933333333335e-05, + "loss": 1.2716947937011718, + "step": 555500 + }, + { + "epoch": 74.08, + "grad_norm": 0.8807459473609924, + "learning_rate": 1.2977266666666669e-05, + "loss": 1.2712261199951171, + "step": 555600 + }, + { + "epoch": 74.09333333333333, + "grad_norm": 0.8981074094772339, + "learning_rate": 1.2970599999999999e-05, + "loss": 1.2726960754394532, + "step": 555700 + }, + { + "epoch": 74.10666666666667, + "grad_norm": 0.920891523361206, + "learning_rate": 1.2963933333333333e-05, + "loss": 1.271525650024414, + "step": 555800 + }, + { + "epoch": 74.12, + "grad_norm": 0.8784647583961487, + "learning_rate": 1.2957266666666667e-05, + "loss": 1.2761204528808594, + "step": 555900 + }, + { + "epoch": 74.13333333333334, + "grad_norm": 0.9443046450614929, + "learning_rate": 1.2950600000000001e-05, + "loss": 1.2812734985351562, + "step": 556000 + }, + { + "epoch": 74.14666666666666, + "grad_norm": 0.9324434995651245, + "learning_rate": 1.2943933333333333e-05, + "loss": 1.2774497985839843, + "step": 556100 + }, + { + "epoch": 74.16, + "grad_norm": 0.9151404500007629, + "learning_rate": 1.2937266666666667e-05, + "loss": 1.2794931030273438, + "step": 556200 + }, + { + "epoch": 74.17333333333333, + "grad_norm": 0.9019087553024292, + "learning_rate": 1.2930600000000001e-05, + "loss": 1.272760467529297, + "step": 556300 + }, + { + "epoch": 74.18666666666667, + "grad_norm": 0.9008191823959351, + "learning_rate": 1.2923933333333335e-05, + "loss": 1.2791709899902344, + "step": 556400 + }, + { + "epoch": 74.2, + "grad_norm": 0.9243355393409729, + "learning_rate": 1.2917266666666666e-05, + "loss": 1.2742820739746095, + "step": 556500 + }, + { + "epoch": 74.21333333333334, + "grad_norm": 0.8960252404212952, + "learning_rate": 1.29106e-05, + "loss": 1.2767957305908204, + "step": 556600 + }, + { + "epoch": 74.22666666666667, + "grad_norm": 0.8784938454627991, + "learning_rate": 1.2903933333333335e-05, + "loss": 1.2783699798583985, + "step": 556700 + }, + { + "epoch": 74.24, + "grad_norm": 0.9372243285179138, + "learning_rate": 1.2897333333333333e-05, + "loss": 1.2807513427734376, + "step": 556800 + }, + { + "epoch": 74.25333333333333, + "grad_norm": 0.8725894093513489, + "learning_rate": 1.2890666666666668e-05, + "loss": 1.280004119873047, + "step": 556900 + }, + { + "epoch": 74.26666666666667, + "grad_norm": 0.8671815991401672, + "learning_rate": 1.2884000000000002e-05, + "loss": 1.276363296508789, + "step": 557000 + }, + { + "epoch": 74.28, + "grad_norm": 0.8304952383041382, + "learning_rate": 1.2877333333333333e-05, + "loss": 1.2792926025390625, + "step": 557100 + }, + { + "epoch": 74.29333333333334, + "grad_norm": 0.8606889247894287, + "learning_rate": 1.2870666666666667e-05, + "loss": 1.2823660278320312, + "step": 557200 + }, + { + "epoch": 74.30666666666667, + "grad_norm": 0.8777315020561218, + "learning_rate": 1.2864e-05, + "loss": 1.2785820007324218, + "step": 557300 + }, + { + "epoch": 74.32, + "grad_norm": 0.8733790516853333, + "learning_rate": 1.2857333333333335e-05, + "loss": 1.281063232421875, + "step": 557400 + }, + { + "epoch": 74.33333333333333, + "grad_norm": 0.8477702140808105, + "learning_rate": 1.2850666666666667e-05, + "loss": 1.2849333190917969, + "step": 557500 + }, + { + "epoch": 74.34666666666666, + "grad_norm": 0.9036483764648438, + "learning_rate": 1.2844000000000001e-05, + "loss": 1.2832469177246093, + "step": 557600 + }, + { + "epoch": 74.36, + "grad_norm": 0.8794974684715271, + "learning_rate": 1.2837333333333335e-05, + "loss": 1.2776331329345703, + "step": 557700 + }, + { + "epoch": 74.37333333333333, + "grad_norm": 0.9200766682624817, + "learning_rate": 1.2830666666666669e-05, + "loss": 1.2813546752929688, + "step": 557800 + }, + { + "epoch": 74.38666666666667, + "grad_norm": 0.8847201466560364, + "learning_rate": 1.2824e-05, + "loss": 1.2843760681152343, + "step": 557900 + }, + { + "epoch": 74.4, + "grad_norm": 0.880175769329071, + "learning_rate": 1.2817333333333333e-05, + "loss": 1.287875213623047, + "step": 558000 + }, + { + "epoch": 74.41333333333333, + "grad_norm": 0.8858283162117004, + "learning_rate": 1.2810666666666667e-05, + "loss": 1.2829354858398438, + "step": 558100 + }, + { + "epoch": 74.42666666666666, + "grad_norm": 0.8578990697860718, + "learning_rate": 1.2804e-05, + "loss": 1.2892631530761718, + "step": 558200 + }, + { + "epoch": 74.44, + "grad_norm": 0.9900735020637512, + "learning_rate": 1.2797333333333334e-05, + "loss": 1.2847103881835937, + "step": 558300 + }, + { + "epoch": 74.45333333333333, + "grad_norm": 0.8830659985542297, + "learning_rate": 1.2790666666666668e-05, + "loss": 1.2800477600097657, + "step": 558400 + }, + { + "epoch": 74.46666666666667, + "grad_norm": 0.8871668577194214, + "learning_rate": 1.2784000000000002e-05, + "loss": 1.284095001220703, + "step": 558500 + }, + { + "epoch": 74.48, + "grad_norm": 0.8544827103614807, + "learning_rate": 1.2777333333333332e-05, + "loss": 1.2865316772460937, + "step": 558600 + }, + { + "epoch": 74.49333333333334, + "grad_norm": 0.900020956993103, + "learning_rate": 1.2770666666666666e-05, + "loss": 1.2850057983398437, + "step": 558700 + }, + { + "epoch": 74.50666666666666, + "grad_norm": 0.867059051990509, + "learning_rate": 1.2764066666666669e-05, + "loss": 1.2903533935546876, + "step": 558800 + }, + { + "epoch": 74.52, + "grad_norm": 0.8870203495025635, + "learning_rate": 1.27574e-05, + "loss": 1.287705535888672, + "step": 558900 + }, + { + "epoch": 74.53333333333333, + "grad_norm": 0.9314866662025452, + "learning_rate": 1.2750733333333333e-05, + "loss": 1.28730224609375, + "step": 559000 + }, + { + "epoch": 74.54666666666667, + "grad_norm": 0.8612186908721924, + "learning_rate": 1.2744066666666669e-05, + "loss": 1.289891815185547, + "step": 559100 + }, + { + "epoch": 74.56, + "grad_norm": 0.899004340171814, + "learning_rate": 1.27374e-05, + "loss": 1.2894015502929688, + "step": 559200 + }, + { + "epoch": 74.57333333333334, + "grad_norm": 0.8479779958724976, + "learning_rate": 1.2730733333333333e-05, + "loss": 1.2877230834960938, + "step": 559300 + }, + { + "epoch": 74.58666666666667, + "grad_norm": 0.8701773285865784, + "learning_rate": 1.2724066666666667e-05, + "loss": 1.2875765991210937, + "step": 559400 + }, + { + "epoch": 74.6, + "grad_norm": 0.9275473356246948, + "learning_rate": 1.2717400000000001e-05, + "loss": 1.2902964782714843, + "step": 559500 + }, + { + "epoch": 74.61333333333333, + "grad_norm": 0.8632954359054565, + "learning_rate": 1.2710733333333334e-05, + "loss": 1.292191162109375, + "step": 559600 + }, + { + "epoch": 74.62666666666667, + "grad_norm": 0.9471471905708313, + "learning_rate": 1.2704066666666667e-05, + "loss": 1.2906411743164063, + "step": 559700 + }, + { + "epoch": 74.64, + "grad_norm": 0.949734091758728, + "learning_rate": 1.2697400000000001e-05, + "loss": 1.2944467163085938, + "step": 559800 + }, + { + "epoch": 74.65333333333334, + "grad_norm": 0.8871404528617859, + "learning_rate": 1.2690733333333335e-05, + "loss": 1.2892448425292968, + "step": 559900 + }, + { + "epoch": 74.66666666666667, + "grad_norm": 0.8793107271194458, + "learning_rate": 1.2684066666666666e-05, + "loss": 1.2894142150878907, + "step": 560000 + }, + { + "epoch": 74.68, + "grad_norm": 0.9287523031234741, + "learning_rate": 1.26774e-05, + "loss": 1.2898847961425781, + "step": 560100 + }, + { + "epoch": 74.69333333333333, + "grad_norm": 0.9169420599937439, + "learning_rate": 1.2670733333333334e-05, + "loss": 1.2945254516601563, + "step": 560200 + }, + { + "epoch": 74.70666666666666, + "grad_norm": 0.9196577668190002, + "learning_rate": 1.2664066666666668e-05, + "loss": 1.2968296813964844, + "step": 560300 + }, + { + "epoch": 74.72, + "grad_norm": 0.8801164031028748, + "learning_rate": 1.26574e-05, + "loss": 1.2895684814453126, + "step": 560400 + }, + { + "epoch": 74.73333333333333, + "grad_norm": 0.9066420793533325, + "learning_rate": 1.2650733333333334e-05, + "loss": 1.2975363159179687, + "step": 560500 + }, + { + "epoch": 74.74666666666667, + "grad_norm": 0.8789073824882507, + "learning_rate": 1.2644066666666668e-05, + "loss": 1.2992245483398437, + "step": 560600 + }, + { + "epoch": 74.76, + "grad_norm": 0.8771540522575378, + "learning_rate": 1.2637399999999999e-05, + "loss": 1.2950447082519532, + "step": 560700 + }, + { + "epoch": 74.77333333333333, + "grad_norm": 0.9482132196426392, + "learning_rate": 1.2630800000000001e-05, + "loss": 1.2989950561523438, + "step": 560800 + }, + { + "epoch": 74.78666666666666, + "grad_norm": 0.9016578793525696, + "learning_rate": 1.2624133333333335e-05, + "loss": 1.2909823608398439, + "step": 560900 + }, + { + "epoch": 74.8, + "grad_norm": 0.9523131847381592, + "learning_rate": 1.2617466666666666e-05, + "loss": 1.2979310607910157, + "step": 561000 + }, + { + "epoch": 74.81333333333333, + "grad_norm": 0.8999745845794678, + "learning_rate": 1.26108e-05, + "loss": 1.2966058349609375, + "step": 561100 + }, + { + "epoch": 74.82666666666667, + "grad_norm": 0.8210212588310242, + "learning_rate": 1.2604133333333335e-05, + "loss": 1.297114715576172, + "step": 561200 + }, + { + "epoch": 74.84, + "grad_norm": 0.8882796764373779, + "learning_rate": 1.259746666666667e-05, + "loss": 1.2930776977539062, + "step": 561300 + }, + { + "epoch": 74.85333333333334, + "grad_norm": 0.8462830185890198, + "learning_rate": 1.25908e-05, + "loss": 1.2994015502929688, + "step": 561400 + }, + { + "epoch": 74.86666666666666, + "grad_norm": 0.9026128649711609, + "learning_rate": 1.2584133333333334e-05, + "loss": 1.29409912109375, + "step": 561500 + }, + { + "epoch": 74.88, + "grad_norm": 0.9389071464538574, + "learning_rate": 1.2577466666666668e-05, + "loss": 1.2977705383300782, + "step": 561600 + }, + { + "epoch": 74.89333333333333, + "grad_norm": 0.9085119366645813, + "learning_rate": 1.25708e-05, + "loss": 1.296661376953125, + "step": 561700 + }, + { + "epoch": 74.90666666666667, + "grad_norm": 1.0114595890045166, + "learning_rate": 1.2564133333333334e-05, + "loss": 1.2983500671386718, + "step": 561800 + }, + { + "epoch": 74.92, + "grad_norm": 0.8648547530174255, + "learning_rate": 1.2557466666666668e-05, + "loss": 1.2987898254394532, + "step": 561900 + }, + { + "epoch": 74.93333333333334, + "grad_norm": 0.9071376323699951, + "learning_rate": 1.2550800000000002e-05, + "loss": 1.295235137939453, + "step": 562000 + }, + { + "epoch": 74.94666666666667, + "grad_norm": 0.8965473175048828, + "learning_rate": 1.2544133333333332e-05, + "loss": 1.3004685974121093, + "step": 562100 + }, + { + "epoch": 74.96, + "grad_norm": 0.8977342844009399, + "learning_rate": 1.2537466666666666e-05, + "loss": 1.297232666015625, + "step": 562200 + }, + { + "epoch": 74.97333333333333, + "grad_norm": 0.9045539498329163, + "learning_rate": 1.25308e-05, + "loss": 1.298996124267578, + "step": 562300 + }, + { + "epoch": 74.98666666666666, + "grad_norm": 0.8950331807136536, + "learning_rate": 1.2524133333333334e-05, + "loss": 1.2971505737304687, + "step": 562400 + }, + { + "epoch": 75.0, + "grad_norm": 0.8777759671211243, + "learning_rate": 1.2517466666666667e-05, + "loss": 1.2992008972167968, + "step": 562500 + }, + { + "epoch": 75.01333333333334, + "grad_norm": 0.8952645063400269, + "learning_rate": 1.25108e-05, + "loss": 1.2640491485595704, + "step": 562600 + }, + { + "epoch": 75.02666666666667, + "grad_norm": 0.877943217754364, + "learning_rate": 1.2504133333333335e-05, + "loss": 1.2647196197509765, + "step": 562700 + }, + { + "epoch": 75.04, + "grad_norm": 0.8919233083724976, + "learning_rate": 1.2497466666666667e-05, + "loss": 1.2628135681152344, + "step": 562800 + }, + { + "epoch": 75.05333333333333, + "grad_norm": 0.8733011484146118, + "learning_rate": 1.2490866666666668e-05, + "loss": 1.2628070831298828, + "step": 562900 + }, + { + "epoch": 75.06666666666666, + "grad_norm": 0.9152896404266357, + "learning_rate": 1.24842e-05, + "loss": 1.264164352416992, + "step": 563000 + }, + { + "epoch": 75.08, + "grad_norm": 0.8281626105308533, + "learning_rate": 1.2477533333333334e-05, + "loss": 1.2650759887695313, + "step": 563100 + }, + { + "epoch": 75.09333333333333, + "grad_norm": 0.8916683197021484, + "learning_rate": 1.2470866666666666e-05, + "loss": 1.2685887145996093, + "step": 563200 + }, + { + "epoch": 75.10666666666667, + "grad_norm": 0.9115118980407715, + "learning_rate": 1.2464200000000002e-05, + "loss": 1.272508544921875, + "step": 563300 + }, + { + "epoch": 75.12, + "grad_norm": 0.8884676098823547, + "learning_rate": 1.2457533333333334e-05, + "loss": 1.2687050628662109, + "step": 563400 + }, + { + "epoch": 75.13333333333334, + "grad_norm": 0.8922853469848633, + "learning_rate": 1.2450866666666668e-05, + "loss": 1.2676511383056641, + "step": 563500 + }, + { + "epoch": 75.14666666666666, + "grad_norm": 0.8890056610107422, + "learning_rate": 1.24442e-05, + "loss": 1.2675907135009765, + "step": 563600 + }, + { + "epoch": 75.16, + "grad_norm": 0.8995161652565002, + "learning_rate": 1.2437533333333334e-05, + "loss": 1.2708394622802734, + "step": 563700 + }, + { + "epoch": 75.17333333333333, + "grad_norm": 0.8850069046020508, + "learning_rate": 1.2430866666666666e-05, + "loss": 1.268143768310547, + "step": 563800 + }, + { + "epoch": 75.18666666666667, + "grad_norm": 0.8508411645889282, + "learning_rate": 1.24242e-05, + "loss": 1.2690723419189454, + "step": 563900 + }, + { + "epoch": 75.2, + "grad_norm": 0.8832269310951233, + "learning_rate": 1.2417533333333334e-05, + "loss": 1.2709259033203124, + "step": 564000 + }, + { + "epoch": 75.21333333333334, + "grad_norm": 0.8733813762664795, + "learning_rate": 1.2410866666666668e-05, + "loss": 1.2706985473632812, + "step": 564100 + }, + { + "epoch": 75.22666666666667, + "grad_norm": 0.8645262122154236, + "learning_rate": 1.24042e-05, + "loss": 1.27591796875, + "step": 564200 + }, + { + "epoch": 75.24, + "grad_norm": 0.8740404844284058, + "learning_rate": 1.2397533333333335e-05, + "loss": 1.2723672485351563, + "step": 564300 + }, + { + "epoch": 75.25333333333333, + "grad_norm": 0.8905038833618164, + "learning_rate": 1.2390866666666667e-05, + "loss": 1.2685739135742187, + "step": 564400 + }, + { + "epoch": 75.26666666666667, + "grad_norm": 0.8788304328918457, + "learning_rate": 1.23842e-05, + "loss": 1.275366973876953, + "step": 564500 + }, + { + "epoch": 75.28, + "grad_norm": 0.9056509733200073, + "learning_rate": 1.2377533333333335e-05, + "loss": 1.2775337982177735, + "step": 564600 + }, + { + "epoch": 75.29333333333334, + "grad_norm": 0.900590181350708, + "learning_rate": 1.2370866666666667e-05, + "loss": 1.2763518524169921, + "step": 564700 + }, + { + "epoch": 75.30666666666667, + "grad_norm": 0.8497269153594971, + "learning_rate": 1.2364200000000001e-05, + "loss": 1.273313980102539, + "step": 564800 + }, + { + "epoch": 75.32, + "grad_norm": 0.9780153036117554, + "learning_rate": 1.2357600000000002e-05, + "loss": 1.2757484436035156, + "step": 564900 + }, + { + "epoch": 75.33333333333333, + "grad_norm": 0.9048566818237305, + "learning_rate": 1.2350933333333334e-05, + "loss": 1.2719178771972657, + "step": 565000 + }, + { + "epoch": 75.34666666666666, + "grad_norm": 0.8986741900444031, + "learning_rate": 1.2344266666666668e-05, + "loss": 1.2778455352783202, + "step": 565100 + }, + { + "epoch": 75.36, + "grad_norm": 0.8905960321426392, + "learning_rate": 1.23376e-05, + "loss": 1.2795767974853516, + "step": 565200 + }, + { + "epoch": 75.37333333333333, + "grad_norm": 0.9009892344474792, + "learning_rate": 1.2330933333333334e-05, + "loss": 1.2813603210449218, + "step": 565300 + }, + { + "epoch": 75.38666666666667, + "grad_norm": 0.8851236701011658, + "learning_rate": 1.2324266666666666e-05, + "loss": 1.2804205322265625, + "step": 565400 + }, + { + "epoch": 75.4, + "grad_norm": 0.8907919526100159, + "learning_rate": 1.23176e-05, + "loss": 1.2816227722167968, + "step": 565500 + }, + { + "epoch": 75.41333333333333, + "grad_norm": 0.8697381019592285, + "learning_rate": 1.2310933333333334e-05, + "loss": 1.2802578735351562, + "step": 565600 + }, + { + "epoch": 75.42666666666666, + "grad_norm": 0.9782188534736633, + "learning_rate": 1.2304266666666667e-05, + "loss": 1.2815553283691405, + "step": 565700 + }, + { + "epoch": 75.44, + "grad_norm": 0.9227743744850159, + "learning_rate": 1.22976e-05, + "loss": 1.2832655334472656, + "step": 565800 + }, + { + "epoch": 75.45333333333333, + "grad_norm": 0.903657078742981, + "learning_rate": 1.2290933333333333e-05, + "loss": 1.2772044372558593, + "step": 565900 + }, + { + "epoch": 75.46666666666667, + "grad_norm": 0.8705148696899414, + "learning_rate": 1.2284266666666667e-05, + "loss": 1.28025146484375, + "step": 566000 + }, + { + "epoch": 75.48, + "grad_norm": 0.8651654720306396, + "learning_rate": 1.22776e-05, + "loss": 1.280309600830078, + "step": 566100 + }, + { + "epoch": 75.49333333333334, + "grad_norm": 0.8842359185218811, + "learning_rate": 1.2270933333333335e-05, + "loss": 1.2774700927734375, + "step": 566200 + }, + { + "epoch": 75.50666666666666, + "grad_norm": 0.8937225341796875, + "learning_rate": 1.2264266666666667e-05, + "loss": 1.2816136169433594, + "step": 566300 + }, + { + "epoch": 75.52, + "grad_norm": 0.9345490336418152, + "learning_rate": 1.2257600000000001e-05, + "loss": 1.2842210388183595, + "step": 566400 + }, + { + "epoch": 75.53333333333333, + "grad_norm": 0.859245777130127, + "learning_rate": 1.2250933333333333e-05, + "loss": 1.2751191711425782, + "step": 566500 + }, + { + "epoch": 75.54666666666667, + "grad_norm": 0.9067889451980591, + "learning_rate": 1.2244266666666667e-05, + "loss": 1.2782907104492187, + "step": 566600 + }, + { + "epoch": 75.56, + "grad_norm": 0.9356161952018738, + "learning_rate": 1.2237600000000001e-05, + "loss": 1.2806317138671874, + "step": 566700 + }, + { + "epoch": 75.57333333333334, + "grad_norm": 0.9229298830032349, + "learning_rate": 1.2230933333333335e-05, + "loss": 1.2850361633300782, + "step": 566800 + }, + { + "epoch": 75.58666666666667, + "grad_norm": 0.9154577851295471, + "learning_rate": 1.2224333333333334e-05, + "loss": 1.2825677490234375, + "step": 566900 + }, + { + "epoch": 75.6, + "grad_norm": 0.9192464351654053, + "learning_rate": 1.2217666666666668e-05, + "loss": 1.2844052124023437, + "step": 567000 + }, + { + "epoch": 75.61333333333333, + "grad_norm": 0.8860438466072083, + "learning_rate": 1.2211e-05, + "loss": 1.2842628479003906, + "step": 567100 + }, + { + "epoch": 75.62666666666667, + "grad_norm": 0.9283733367919922, + "learning_rate": 1.2204333333333334e-05, + "loss": 1.2807681274414062, + "step": 567200 + }, + { + "epoch": 75.64, + "grad_norm": 0.9022039771080017, + "learning_rate": 1.2197666666666667e-05, + "loss": 1.2847116088867188, + "step": 567300 + }, + { + "epoch": 75.65333333333334, + "grad_norm": 0.9383234977722168, + "learning_rate": 1.2191e-05, + "loss": 1.2842823791503906, + "step": 567400 + }, + { + "epoch": 75.66666666666667, + "grad_norm": 0.8987548351287842, + "learning_rate": 1.2184333333333333e-05, + "loss": 1.2830416870117187, + "step": 567500 + }, + { + "epoch": 75.68, + "grad_norm": 0.9250150918960571, + "learning_rate": 1.2177666666666669e-05, + "loss": 1.2888677978515626, + "step": 567600 + }, + { + "epoch": 75.69333333333333, + "grad_norm": 0.8937551975250244, + "learning_rate": 1.2171000000000001e-05, + "loss": 1.2843814086914063, + "step": 567700 + }, + { + "epoch": 75.70666666666666, + "grad_norm": 0.93442302942276, + "learning_rate": 1.2164333333333335e-05, + "loss": 1.2801531982421874, + "step": 567800 + }, + { + "epoch": 75.72, + "grad_norm": 0.9443467855453491, + "learning_rate": 1.2157666666666667e-05, + "loss": 1.2907289123535157, + "step": 567900 + }, + { + "epoch": 75.73333333333333, + "grad_norm": 0.9479007124900818, + "learning_rate": 1.2151000000000001e-05, + "loss": 1.2885336303710937, + "step": 568000 + }, + { + "epoch": 75.74666666666667, + "grad_norm": 0.9026948809623718, + "learning_rate": 1.2144333333333333e-05, + "loss": 1.28862060546875, + "step": 568100 + }, + { + "epoch": 75.76, + "grad_norm": 0.9431944489479065, + "learning_rate": 1.2137666666666667e-05, + "loss": 1.2903639221191405, + "step": 568200 + }, + { + "epoch": 75.77333333333333, + "grad_norm": 0.8847748637199402, + "learning_rate": 1.2131000000000001e-05, + "loss": 1.2831291198730468, + "step": 568300 + }, + { + "epoch": 75.78666666666666, + "grad_norm": 0.9042606949806213, + "learning_rate": 1.2124333333333334e-05, + "loss": 1.2880831909179689, + "step": 568400 + }, + { + "epoch": 75.8, + "grad_norm": 0.8872798085212708, + "learning_rate": 1.2117666666666667e-05, + "loss": 1.289575958251953, + "step": 568500 + }, + { + "epoch": 75.81333333333333, + "grad_norm": 0.8426007628440857, + "learning_rate": 1.2111e-05, + "loss": 1.2929600524902343, + "step": 568600 + }, + { + "epoch": 75.82666666666667, + "grad_norm": 0.8785552978515625, + "learning_rate": 1.2104333333333334e-05, + "loss": 1.2918893432617187, + "step": 568700 + }, + { + "epoch": 75.84, + "grad_norm": 0.8560172915458679, + "learning_rate": 1.2097666666666668e-05, + "loss": 1.2879776000976562, + "step": 568800 + }, + { + "epoch": 75.85333333333334, + "grad_norm": 0.9080483317375183, + "learning_rate": 1.2091000000000002e-05, + "loss": 1.289279022216797, + "step": 568900 + }, + { + "epoch": 75.86666666666666, + "grad_norm": 0.8898365497589111, + "learning_rate": 1.20844e-05, + "loss": 1.2897042846679687, + "step": 569000 + }, + { + "epoch": 75.88, + "grad_norm": 0.95564204454422, + "learning_rate": 1.2077733333333335e-05, + "loss": 1.2889401245117187, + "step": 569100 + }, + { + "epoch": 75.89333333333333, + "grad_norm": 0.8454336524009705, + "learning_rate": 1.2071066666666667e-05, + "loss": 1.293185272216797, + "step": 569200 + }, + { + "epoch": 75.90666666666667, + "grad_norm": 0.9560728669166565, + "learning_rate": 1.2064400000000001e-05, + "loss": 1.2893829345703125, + "step": 569300 + }, + { + "epoch": 75.92, + "grad_norm": 0.9126923084259033, + "learning_rate": 1.2057733333333333e-05, + "loss": 1.2923159790039063, + "step": 569400 + }, + { + "epoch": 75.93333333333334, + "grad_norm": 0.8590043783187866, + "learning_rate": 1.2051066666666667e-05, + "loss": 1.29072265625, + "step": 569500 + }, + { + "epoch": 75.94666666666667, + "grad_norm": 0.8858271241188049, + "learning_rate": 1.20444e-05, + "loss": 1.2948809814453126, + "step": 569600 + }, + { + "epoch": 75.96, + "grad_norm": 0.9448450803756714, + "learning_rate": 1.2037733333333333e-05, + "loss": 1.2897013854980468, + "step": 569700 + }, + { + "epoch": 75.97333333333333, + "grad_norm": 0.8658963441848755, + "learning_rate": 1.2031066666666667e-05, + "loss": 1.2937811279296876, + "step": 569800 + }, + { + "epoch": 75.98666666666666, + "grad_norm": 0.9109137654304504, + "learning_rate": 1.2024400000000001e-05, + "loss": 1.2949751281738282, + "step": 569900 + }, + { + "epoch": 76.0, + "grad_norm": 0.90373694896698, + "learning_rate": 1.2017733333333334e-05, + "loss": 1.2907695007324218, + "step": 570000 + }, + { + "epoch": 76.01333333333334, + "grad_norm": 0.9023296236991882, + "learning_rate": 1.2011066666666668e-05, + "loss": 1.2564220428466797, + "step": 570100 + }, + { + "epoch": 76.02666666666667, + "grad_norm": 0.9075928926467896, + "learning_rate": 1.20044e-05, + "loss": 1.2600310516357422, + "step": 570200 + }, + { + "epoch": 76.04, + "grad_norm": 0.8993645310401917, + "learning_rate": 1.1997733333333334e-05, + "loss": 1.2612214660644532, + "step": 570300 + }, + { + "epoch": 76.05333333333333, + "grad_norm": 0.8090634942054749, + "learning_rate": 1.1991066666666668e-05, + "loss": 1.2595449829101562, + "step": 570400 + }, + { + "epoch": 76.06666666666666, + "grad_norm": 0.8265924453735352, + "learning_rate": 1.1984400000000002e-05, + "loss": 1.260252914428711, + "step": 570500 + }, + { + "epoch": 76.08, + "grad_norm": 0.9115302562713623, + "learning_rate": 1.1977733333333334e-05, + "loss": 1.2610408020019532, + "step": 570600 + }, + { + "epoch": 76.09333333333333, + "grad_norm": 0.9297177195549011, + "learning_rate": 1.1971066666666668e-05, + "loss": 1.2638664245605469, + "step": 570700 + }, + { + "epoch": 76.10666666666667, + "grad_norm": 0.8523125648498535, + "learning_rate": 1.19644e-05, + "loss": 1.2649871063232423, + "step": 570800 + }, + { + "epoch": 76.12, + "grad_norm": 0.9545742869377136, + "learning_rate": 1.1957733333333334e-05, + "loss": 1.2625828552246094, + "step": 570900 + }, + { + "epoch": 76.13333333333334, + "grad_norm": 0.8487697839736938, + "learning_rate": 1.1951133333333333e-05, + "loss": 1.2658775329589844, + "step": 571000 + }, + { + "epoch": 76.14666666666666, + "grad_norm": 0.9032588601112366, + "learning_rate": 1.1944466666666667e-05, + "loss": 1.2628345489501953, + "step": 571100 + }, + { + "epoch": 76.16, + "grad_norm": 0.8663509488105774, + "learning_rate": 1.1937800000000001e-05, + "loss": 1.2638357543945313, + "step": 571200 + }, + { + "epoch": 76.17333333333333, + "grad_norm": 0.8065935373306274, + "learning_rate": 1.1931133333333335e-05, + "loss": 1.2654532623291015, + "step": 571300 + }, + { + "epoch": 76.18666666666667, + "grad_norm": 0.8923590779304504, + "learning_rate": 1.1924466666666667e-05, + "loss": 1.2625431823730469, + "step": 571400 + }, + { + "epoch": 76.2, + "grad_norm": 0.9256909489631653, + "learning_rate": 1.1917800000000001e-05, + "loss": 1.2661501312255858, + "step": 571500 + }, + { + "epoch": 76.21333333333334, + "grad_norm": 0.8839671015739441, + "learning_rate": 1.1911133333333334e-05, + "loss": 1.2691407775878907, + "step": 571600 + }, + { + "epoch": 76.22666666666667, + "grad_norm": 0.9196544289588928, + "learning_rate": 1.1904466666666666e-05, + "loss": 1.2661520385742187, + "step": 571700 + }, + { + "epoch": 76.24, + "grad_norm": 0.8353877663612366, + "learning_rate": 1.18978e-05, + "loss": 1.2685884094238282, + "step": 571800 + }, + { + "epoch": 76.25333333333333, + "grad_norm": 0.8533715605735779, + "learning_rate": 1.1891133333333334e-05, + "loss": 1.2692129516601562, + "step": 571900 + }, + { + "epoch": 76.26666666666667, + "grad_norm": 0.8897333145141602, + "learning_rate": 1.1884466666666668e-05, + "loss": 1.2691090393066407, + "step": 572000 + }, + { + "epoch": 76.28, + "grad_norm": 0.90340656042099, + "learning_rate": 1.18778e-05, + "loss": 1.2702519989013672, + "step": 572100 + }, + { + "epoch": 76.29333333333334, + "grad_norm": 0.8940246105194092, + "learning_rate": 1.1871133333333334e-05, + "loss": 1.2684158325195312, + "step": 572200 + }, + { + "epoch": 76.30666666666667, + "grad_norm": 0.8823217153549194, + "learning_rate": 1.1864466666666666e-05, + "loss": 1.2694771575927735, + "step": 572300 + }, + { + "epoch": 76.32, + "grad_norm": 0.8801313638687134, + "learning_rate": 1.18578e-05, + "loss": 1.2695850372314452, + "step": 572400 + }, + { + "epoch": 76.33333333333333, + "grad_norm": 0.8763577342033386, + "learning_rate": 1.1851133333333334e-05, + "loss": 1.2703809356689453, + "step": 572500 + }, + { + "epoch": 76.34666666666666, + "grad_norm": 0.9414470195770264, + "learning_rate": 1.1844466666666668e-05, + "loss": 1.2732679748535156, + "step": 572600 + }, + { + "epoch": 76.36, + "grad_norm": 0.918465256690979, + "learning_rate": 1.18378e-05, + "loss": 1.2702081298828125, + "step": 572700 + }, + { + "epoch": 76.37333333333333, + "grad_norm": 0.8856133222579956, + "learning_rate": 1.1831133333333334e-05, + "loss": 1.2735169219970703, + "step": 572800 + }, + { + "epoch": 76.38666666666667, + "grad_norm": 0.9244083166122437, + "learning_rate": 1.1824466666666667e-05, + "loss": 1.273417739868164, + "step": 572900 + }, + { + "epoch": 76.4, + "grad_norm": 0.8916839957237244, + "learning_rate": 1.1817866666666667e-05, + "loss": 1.2737143707275391, + "step": 573000 + }, + { + "epoch": 76.41333333333333, + "grad_norm": 0.8814034461975098, + "learning_rate": 1.18112e-05, + "loss": 1.27196533203125, + "step": 573100 + }, + { + "epoch": 76.42666666666666, + "grad_norm": 0.8989616632461548, + "learning_rate": 1.1804533333333334e-05, + "loss": 1.2706958770751953, + "step": 573200 + }, + { + "epoch": 76.44, + "grad_norm": 0.8440143465995789, + "learning_rate": 1.1797866666666668e-05, + "loss": 1.271722946166992, + "step": 573300 + }, + { + "epoch": 76.45333333333333, + "grad_norm": 0.9400561451911926, + "learning_rate": 1.1791200000000002e-05, + "loss": 1.27082763671875, + "step": 573400 + }, + { + "epoch": 76.46666666666667, + "grad_norm": 0.9104871153831482, + "learning_rate": 1.1784533333333334e-05, + "loss": 1.274063720703125, + "step": 573500 + }, + { + "epoch": 76.48, + "grad_norm": 0.9427663087844849, + "learning_rate": 1.1777866666666668e-05, + "loss": 1.2744304656982421, + "step": 573600 + }, + { + "epoch": 76.49333333333334, + "grad_norm": 0.930120587348938, + "learning_rate": 1.17712e-05, + "loss": 1.2735147857666016, + "step": 573700 + }, + { + "epoch": 76.50666666666666, + "grad_norm": 0.8373743891716003, + "learning_rate": 1.1764533333333334e-05, + "loss": 1.2727003479003907, + "step": 573800 + }, + { + "epoch": 76.52, + "grad_norm": 0.8900668621063232, + "learning_rate": 1.1757866666666666e-05, + "loss": 1.278759994506836, + "step": 573900 + }, + { + "epoch": 76.53333333333333, + "grad_norm": 0.9131837487220764, + "learning_rate": 1.1751200000000002e-05, + "loss": 1.279442596435547, + "step": 574000 + }, + { + "epoch": 76.54666666666667, + "grad_norm": 0.8976189494132996, + "learning_rate": 1.1744533333333334e-05, + "loss": 1.2741080474853517, + "step": 574100 + }, + { + "epoch": 76.56, + "grad_norm": 0.8666889071464539, + "learning_rate": 1.1737866666666668e-05, + "loss": 1.2774742126464844, + "step": 574200 + }, + { + "epoch": 76.57333333333334, + "grad_norm": 0.8947174549102783, + "learning_rate": 1.17312e-05, + "loss": 1.2774790954589843, + "step": 574300 + }, + { + "epoch": 76.58666666666667, + "grad_norm": 0.9052897691726685, + "learning_rate": 1.1724533333333333e-05, + "loss": 1.2790341949462891, + "step": 574400 + }, + { + "epoch": 76.6, + "grad_norm": 0.8981863260269165, + "learning_rate": 1.1717866666666667e-05, + "loss": 1.2725530242919922, + "step": 574500 + }, + { + "epoch": 76.61333333333333, + "grad_norm": 0.8950761556625366, + "learning_rate": 1.17112e-05, + "loss": 1.277298583984375, + "step": 574600 + }, + { + "epoch": 76.62666666666667, + "grad_norm": 0.9243502616882324, + "learning_rate": 1.1704533333333335e-05, + "loss": 1.279012222290039, + "step": 574700 + }, + { + "epoch": 76.64, + "grad_norm": 0.9470920562744141, + "learning_rate": 1.1697866666666667e-05, + "loss": 1.2796407318115235, + "step": 574800 + }, + { + "epoch": 76.65333333333334, + "grad_norm": 0.9210641980171204, + "learning_rate": 1.16912e-05, + "loss": 1.27352294921875, + "step": 574900 + }, + { + "epoch": 76.66666666666667, + "grad_norm": 0.9046253561973572, + "learning_rate": 1.1684600000000002e-05, + "loss": 1.2836494445800781, + "step": 575000 + }, + { + "epoch": 76.68, + "grad_norm": 0.8648155927658081, + "learning_rate": 1.1677933333333334e-05, + "loss": 1.283481903076172, + "step": 575100 + }, + { + "epoch": 76.69333333333333, + "grad_norm": 0.9311123490333557, + "learning_rate": 1.1671266666666668e-05, + "loss": 1.2783139801025392, + "step": 575200 + }, + { + "epoch": 76.70666666666666, + "grad_norm": 0.913091242313385, + "learning_rate": 1.16646e-05, + "loss": 1.2771622467041015, + "step": 575300 + }, + { + "epoch": 76.72, + "grad_norm": 0.8883966207504272, + "learning_rate": 1.1657933333333332e-05, + "loss": 1.2791126251220704, + "step": 575400 + }, + { + "epoch": 76.73333333333333, + "grad_norm": 0.9038500189781189, + "learning_rate": 1.1651266666666668e-05, + "loss": 1.2827508544921875, + "step": 575500 + }, + { + "epoch": 76.74666666666667, + "grad_norm": 0.8970502614974976, + "learning_rate": 1.16446e-05, + "loss": 1.2832752990722656, + "step": 575600 + }, + { + "epoch": 76.76, + "grad_norm": 0.9356183409690857, + "learning_rate": 1.1637933333333334e-05, + "loss": 1.2858283996582032, + "step": 575700 + }, + { + "epoch": 76.77333333333333, + "grad_norm": 0.8676143288612366, + "learning_rate": 1.1631266666666667e-05, + "loss": 1.2802749633789063, + "step": 575800 + }, + { + "epoch": 76.78666666666666, + "grad_norm": 0.901439368724823, + "learning_rate": 1.16246e-05, + "loss": 1.279897689819336, + "step": 575900 + }, + { + "epoch": 76.8, + "grad_norm": 0.9266265630722046, + "learning_rate": 1.1617933333333333e-05, + "loss": 1.2846217346191406, + "step": 576000 + }, + { + "epoch": 76.81333333333333, + "grad_norm": 0.8446720838546753, + "learning_rate": 1.1611266666666667e-05, + "loss": 1.28507568359375, + "step": 576100 + }, + { + "epoch": 76.82666666666667, + "grad_norm": 0.9122141599655151, + "learning_rate": 1.16046e-05, + "loss": 1.2835508728027343, + "step": 576200 + }, + { + "epoch": 76.84, + "grad_norm": 0.9296014308929443, + "learning_rate": 1.1597933333333335e-05, + "loss": 1.2806108093261719, + "step": 576300 + }, + { + "epoch": 76.85333333333334, + "grad_norm": 0.9515265226364136, + "learning_rate": 1.1591266666666667e-05, + "loss": 1.2886801147460938, + "step": 576400 + }, + { + "epoch": 76.86666666666666, + "grad_norm": 0.9384329915046692, + "learning_rate": 1.1584600000000001e-05, + "loss": 1.2862442016601563, + "step": 576500 + }, + { + "epoch": 76.88, + "grad_norm": 0.911675214767456, + "learning_rate": 1.1577933333333333e-05, + "loss": 1.2852195739746093, + "step": 576600 + }, + { + "epoch": 76.89333333333333, + "grad_norm": 0.9368600845336914, + "learning_rate": 1.1571266666666667e-05, + "loss": 1.2880644226074218, + "step": 576700 + }, + { + "epoch": 76.90666666666667, + "grad_norm": 0.9342831373214722, + "learning_rate": 1.1564600000000001e-05, + "loss": 1.2856315612792968, + "step": 576800 + }, + { + "epoch": 76.92, + "grad_norm": 0.8949527144432068, + "learning_rate": 1.1557933333333335e-05, + "loss": 1.290764617919922, + "step": 576900 + }, + { + "epoch": 76.93333333333334, + "grad_norm": 0.9204317927360535, + "learning_rate": 1.1551333333333334e-05, + "loss": 1.2894427490234375, + "step": 577000 + }, + { + "epoch": 76.94666666666667, + "grad_norm": 0.9253742098808289, + "learning_rate": 1.1544666666666668e-05, + "loss": 1.2840521240234375, + "step": 577100 + }, + { + "epoch": 76.96, + "grad_norm": 0.9282165765762329, + "learning_rate": 1.1538e-05, + "loss": 1.2856878662109374, + "step": 577200 + }, + { + "epoch": 76.97333333333333, + "grad_norm": 0.8722630143165588, + "learning_rate": 1.1531333333333334e-05, + "loss": 1.2854739379882814, + "step": 577300 + }, + { + "epoch": 76.98666666666666, + "grad_norm": 0.913749098777771, + "learning_rate": 1.1524666666666667e-05, + "loss": 1.2859970092773438, + "step": 577400 + }, + { + "epoch": 77.0, + "grad_norm": 0.961866021156311, + "learning_rate": 1.1518e-05, + "loss": 1.2846250915527344, + "step": 577500 + }, + { + "epoch": 77.01333333333334, + "grad_norm": 0.905587375164032, + "learning_rate": 1.1511333333333334e-05, + "loss": 1.255999755859375, + "step": 577600 + }, + { + "epoch": 77.02666666666667, + "grad_norm": 0.9109494686126709, + "learning_rate": 1.1504666666666668e-05, + "loss": 1.257362823486328, + "step": 577700 + }, + { + "epoch": 77.04, + "grad_norm": 0.8600365519523621, + "learning_rate": 1.1498e-05, + "loss": 1.255925064086914, + "step": 577800 + }, + { + "epoch": 77.05333333333333, + "grad_norm": 0.898125410079956, + "learning_rate": 1.1491333333333335e-05, + "loss": 1.251571273803711, + "step": 577900 + }, + { + "epoch": 77.06666666666666, + "grad_norm": 0.8492289185523987, + "learning_rate": 1.1484666666666667e-05, + "loss": 1.2551496887207032, + "step": 578000 + }, + { + "epoch": 77.08, + "grad_norm": 0.8958540558815002, + "learning_rate": 1.1478e-05, + "loss": 1.2567188262939453, + "step": 578100 + }, + { + "epoch": 77.09333333333333, + "grad_norm": 0.8623022437095642, + "learning_rate": 1.1471333333333333e-05, + "loss": 1.2552345275878907, + "step": 578200 + }, + { + "epoch": 77.10666666666667, + "grad_norm": 0.8635573983192444, + "learning_rate": 1.1464666666666667e-05, + "loss": 1.2586454010009767, + "step": 578300 + }, + { + "epoch": 77.12, + "grad_norm": 0.8765349388122559, + "learning_rate": 1.1458000000000001e-05, + "loss": 1.2600203704833985, + "step": 578400 + }, + { + "epoch": 77.13333333333334, + "grad_norm": 0.862362802028656, + "learning_rate": 1.1451333333333333e-05, + "loss": 1.2597164916992187, + "step": 578500 + }, + { + "epoch": 77.14666666666666, + "grad_norm": 0.910469651222229, + "learning_rate": 1.1444666666666667e-05, + "loss": 1.2607437896728515, + "step": 578600 + }, + { + "epoch": 77.16, + "grad_norm": 0.9068487286567688, + "learning_rate": 1.1438e-05, + "loss": 1.2581224060058593, + "step": 578700 + }, + { + "epoch": 77.17333333333333, + "grad_norm": 0.818719744682312, + "learning_rate": 1.1431333333333334e-05, + "loss": 1.257034454345703, + "step": 578800 + }, + { + "epoch": 77.18666666666667, + "grad_norm": 0.9217579364776611, + "learning_rate": 1.1424666666666668e-05, + "loss": 1.2629297637939454, + "step": 578900 + }, + { + "epoch": 77.2, + "grad_norm": 0.848243772983551, + "learning_rate": 1.1418066666666667e-05, + "loss": 1.2635003662109374, + "step": 579000 + }, + { + "epoch": 77.21333333333334, + "grad_norm": 0.8776289820671082, + "learning_rate": 1.14114e-05, + "loss": 1.2585693359375, + "step": 579100 + }, + { + "epoch": 77.22666666666667, + "grad_norm": 0.9173794388771057, + "learning_rate": 1.1404733333333335e-05, + "loss": 1.2622824859619142, + "step": 579200 + }, + { + "epoch": 77.24, + "grad_norm": 0.873337984085083, + "learning_rate": 1.1398066666666667e-05, + "loss": 1.2653639221191406, + "step": 579300 + }, + { + "epoch": 77.25333333333333, + "grad_norm": 0.9575465321540833, + "learning_rate": 1.13914e-05, + "loss": 1.2643247222900391, + "step": 579400 + }, + { + "epoch": 77.26666666666667, + "grad_norm": 0.8416218161582947, + "learning_rate": 1.1384733333333333e-05, + "loss": 1.2624178314208985, + "step": 579500 + }, + { + "epoch": 77.28, + "grad_norm": 0.9230799674987793, + "learning_rate": 1.1378066666666667e-05, + "loss": 1.2626051330566406, + "step": 579600 + }, + { + "epoch": 77.29333333333334, + "grad_norm": 0.8633724451065063, + "learning_rate": 1.1371400000000001e-05, + "loss": 1.2685257720947265, + "step": 579700 + }, + { + "epoch": 77.30666666666667, + "grad_norm": 0.9460192322731018, + "learning_rate": 1.1364733333333335e-05, + "loss": 1.2646743774414062, + "step": 579800 + }, + { + "epoch": 77.32, + "grad_norm": 0.8928385376930237, + "learning_rate": 1.1358066666666667e-05, + "loss": 1.2659114837646483, + "step": 579900 + }, + { + "epoch": 77.33333333333333, + "grad_norm": 0.8571158051490784, + "learning_rate": 1.1351400000000001e-05, + "loss": 1.2670587921142578, + "step": 580000 + }, + { + "epoch": 77.34666666666666, + "grad_norm": 0.858704686164856, + "learning_rate": 1.1344733333333333e-05, + "loss": 1.2675933837890625, + "step": 580100 + }, + { + "epoch": 77.36, + "grad_norm": 0.9516656398773193, + "learning_rate": 1.1338066666666667e-05, + "loss": 1.2708335876464845, + "step": 580200 + }, + { + "epoch": 77.37333333333333, + "grad_norm": 0.8929257392883301, + "learning_rate": 1.13314e-05, + "loss": 1.265479278564453, + "step": 580300 + }, + { + "epoch": 77.38666666666667, + "grad_norm": 0.912930428981781, + "learning_rate": 1.1324733333333334e-05, + "loss": 1.2636156463623047, + "step": 580400 + }, + { + "epoch": 77.4, + "grad_norm": 0.8615267276763916, + "learning_rate": 1.1318066666666668e-05, + "loss": 1.2651126861572266, + "step": 580500 + }, + { + "epoch": 77.41333333333333, + "grad_norm": 0.8684864640235901, + "learning_rate": 1.1311400000000002e-05, + "loss": 1.2702027130126954, + "step": 580600 + }, + { + "epoch": 77.42666666666666, + "grad_norm": 0.8868072628974915, + "learning_rate": 1.1304733333333334e-05, + "loss": 1.2698739624023438, + "step": 580700 + }, + { + "epoch": 77.44, + "grad_norm": 0.9572634696960449, + "learning_rate": 1.1298066666666666e-05, + "loss": 1.268133544921875, + "step": 580800 + }, + { + "epoch": 77.45333333333333, + "grad_norm": 0.9197629690170288, + "learning_rate": 1.12914e-05, + "loss": 1.2709165954589843, + "step": 580900 + }, + { + "epoch": 77.46666666666667, + "grad_norm": 0.8801963329315186, + "learning_rate": 1.1284733333333334e-05, + "loss": 1.2684906768798827, + "step": 581000 + }, + { + "epoch": 77.48, + "grad_norm": 0.8818572163581848, + "learning_rate": 1.1278133333333333e-05, + "loss": 1.273465576171875, + "step": 581100 + }, + { + "epoch": 77.49333333333334, + "grad_norm": 0.9402119517326355, + "learning_rate": 1.1271466666666667e-05, + "loss": 1.266955108642578, + "step": 581200 + }, + { + "epoch": 77.50666666666666, + "grad_norm": 0.8809628486633301, + "learning_rate": 1.1264800000000001e-05, + "loss": 1.271000289916992, + "step": 581300 + }, + { + "epoch": 77.52, + "grad_norm": 0.9298728108406067, + "learning_rate": 1.1258133333333335e-05, + "loss": 1.2696641540527345, + "step": 581400 + }, + { + "epoch": 77.53333333333333, + "grad_norm": 0.9338729977607727, + "learning_rate": 1.1251466666666667e-05, + "loss": 1.2723861694335938, + "step": 581500 + }, + { + "epoch": 77.54666666666667, + "grad_norm": 0.8930231332778931, + "learning_rate": 1.1244800000000001e-05, + "loss": 1.2670636749267579, + "step": 581600 + }, + { + "epoch": 77.56, + "grad_norm": 0.8689009547233582, + "learning_rate": 1.1238133333333333e-05, + "loss": 1.2678091430664062, + "step": 581700 + }, + { + "epoch": 77.57333333333334, + "grad_norm": 0.8521204590797424, + "learning_rate": 1.1231466666666666e-05, + "loss": 1.2707132720947265, + "step": 581800 + }, + { + "epoch": 77.58666666666667, + "grad_norm": 0.8917391896247864, + "learning_rate": 1.1224800000000001e-05, + "loss": 1.2752569580078126, + "step": 581900 + }, + { + "epoch": 77.6, + "grad_norm": 0.9497755169868469, + "learning_rate": 1.1218133333333334e-05, + "loss": 1.2703166961669923, + "step": 582000 + }, + { + "epoch": 77.61333333333333, + "grad_norm": 0.9635091423988342, + "learning_rate": 1.1211466666666668e-05, + "loss": 1.2678369903564453, + "step": 582100 + }, + { + "epoch": 77.62666666666667, + "grad_norm": 0.9281509518623352, + "learning_rate": 1.12048e-05, + "loss": 1.2707953643798828, + "step": 582200 + }, + { + "epoch": 77.64, + "grad_norm": 0.8660150170326233, + "learning_rate": 1.1198133333333334e-05, + "loss": 1.272255401611328, + "step": 582300 + }, + { + "epoch": 77.65333333333334, + "grad_norm": 0.9285011291503906, + "learning_rate": 1.1191466666666666e-05, + "loss": 1.2756419372558594, + "step": 582400 + }, + { + "epoch": 77.66666666666667, + "grad_norm": 0.932344377040863, + "learning_rate": 1.11848e-05, + "loss": 1.2738219451904298, + "step": 582500 + }, + { + "epoch": 77.68, + "grad_norm": 0.9365657567977905, + "learning_rate": 1.1178133333333334e-05, + "loss": 1.2753623199462891, + "step": 582600 + }, + { + "epoch": 77.69333333333333, + "grad_norm": 0.825846791267395, + "learning_rate": 1.1171466666666668e-05, + "loss": 1.2731678771972657, + "step": 582700 + }, + { + "epoch": 77.70666666666666, + "grad_norm": 0.9342759847640991, + "learning_rate": 1.11648e-05, + "loss": 1.277725067138672, + "step": 582800 + }, + { + "epoch": 77.72, + "grad_norm": 0.9432119131088257, + "learning_rate": 1.1158133333333334e-05, + "loss": 1.2735256958007812, + "step": 582900 + }, + { + "epoch": 77.73333333333333, + "grad_norm": 0.9605401158332825, + "learning_rate": 1.1151466666666666e-05, + "loss": 1.2816490173339843, + "step": 583000 + }, + { + "epoch": 77.74666666666667, + "grad_norm": 0.9029577374458313, + "learning_rate": 1.1144866666666667e-05, + "loss": 1.2802981567382812, + "step": 583100 + }, + { + "epoch": 77.76, + "grad_norm": 0.8637961745262146, + "learning_rate": 1.11382e-05, + "loss": 1.2796761322021484, + "step": 583200 + }, + { + "epoch": 77.77333333333333, + "grad_norm": 0.921112596988678, + "learning_rate": 1.1131533333333333e-05, + "loss": 1.2756118774414062, + "step": 583300 + }, + { + "epoch": 77.78666666666666, + "grad_norm": 0.9237424731254578, + "learning_rate": 1.1124866666666667e-05, + "loss": 1.2745748901367187, + "step": 583400 + }, + { + "epoch": 77.8, + "grad_norm": 0.843678891658783, + "learning_rate": 1.1118200000000001e-05, + "loss": 1.2792215728759766, + "step": 583500 + }, + { + "epoch": 77.81333333333333, + "grad_norm": 0.9343549609184265, + "learning_rate": 1.1111533333333334e-05, + "loss": 1.277459716796875, + "step": 583600 + }, + { + "epoch": 77.82666666666667, + "grad_norm": 0.8938376307487488, + "learning_rate": 1.1104866666666668e-05, + "loss": 1.2799664306640626, + "step": 583700 + }, + { + "epoch": 77.84, + "grad_norm": 0.910925030708313, + "learning_rate": 1.10982e-05, + "loss": 1.280896453857422, + "step": 583800 + }, + { + "epoch": 77.85333333333334, + "grad_norm": 0.8991851806640625, + "learning_rate": 1.1091533333333334e-05, + "loss": 1.2770259857177735, + "step": 583900 + }, + { + "epoch": 77.86666666666666, + "grad_norm": 0.8709640502929688, + "learning_rate": 1.1084866666666668e-05, + "loss": 1.2761578369140625, + "step": 584000 + }, + { + "epoch": 77.88, + "grad_norm": 0.8845403790473938, + "learning_rate": 1.1078200000000002e-05, + "loss": 1.2800413513183593, + "step": 584100 + }, + { + "epoch": 77.89333333333333, + "grad_norm": 0.8760946393013, + "learning_rate": 1.1071533333333334e-05, + "loss": 1.2795198822021485, + "step": 584200 + }, + { + "epoch": 77.90666666666667, + "grad_norm": 0.9131218791007996, + "learning_rate": 1.1064866666666668e-05, + "loss": 1.2759528350830078, + "step": 584300 + }, + { + "epoch": 77.92, + "grad_norm": 0.8943530321121216, + "learning_rate": 1.10582e-05, + "loss": 1.2813719177246095, + "step": 584400 + }, + { + "epoch": 77.93333333333334, + "grad_norm": 0.9106712937355042, + "learning_rate": 1.1051533333333333e-05, + "loss": 1.2769749450683594, + "step": 584500 + }, + { + "epoch": 77.94666666666667, + "grad_norm": 0.9153562188148499, + "learning_rate": 1.1044866666666667e-05, + "loss": 1.2757042694091796, + "step": 584600 + }, + { + "epoch": 77.96, + "grad_norm": 0.9484046697616577, + "learning_rate": 1.10382e-05, + "loss": 1.2819232177734374, + "step": 584700 + }, + { + "epoch": 77.97333333333333, + "grad_norm": 0.9584998488426208, + "learning_rate": 1.1031533333333334e-05, + "loss": 1.2835421752929688, + "step": 584800 + }, + { + "epoch": 77.98666666666666, + "grad_norm": 0.9356921911239624, + "learning_rate": 1.1024866666666667e-05, + "loss": 1.2813420104980469, + "step": 584900 + }, + { + "epoch": 78.0, + "grad_norm": 0.9255989193916321, + "learning_rate": 1.10182e-05, + "loss": 1.2774526977539062, + "step": 585000 + }, + { + "epoch": 78.01333333333334, + "grad_norm": 0.8795908093452454, + "learning_rate": 1.1011600000000001e-05, + "loss": 1.249991455078125, + "step": 585100 + }, + { + "epoch": 78.02666666666667, + "grad_norm": 0.9239431619644165, + "learning_rate": 1.1004933333333334e-05, + "loss": 1.2514543151855468, + "step": 585200 + }, + { + "epoch": 78.04, + "grad_norm": 0.8539057374000549, + "learning_rate": 1.0998266666666668e-05, + "loss": 1.2499234008789062, + "step": 585300 + }, + { + "epoch": 78.05333333333333, + "grad_norm": 0.8485280871391296, + "learning_rate": 1.09916e-05, + "loss": 1.2504238891601562, + "step": 585400 + }, + { + "epoch": 78.06666666666666, + "grad_norm": 0.8902794718742371, + "learning_rate": 1.0984933333333334e-05, + "loss": 1.2511708068847656, + "step": 585500 + }, + { + "epoch": 78.08, + "grad_norm": 0.9052618741989136, + "learning_rate": 1.0978266666666668e-05, + "loss": 1.2486000061035156, + "step": 585600 + }, + { + "epoch": 78.09333333333333, + "grad_norm": 0.8789846897125244, + "learning_rate": 1.09716e-05, + "loss": 1.251748275756836, + "step": 585700 + }, + { + "epoch": 78.10666666666667, + "grad_norm": 0.885184109210968, + "learning_rate": 1.0964933333333334e-05, + "loss": 1.2532960510253905, + "step": 585800 + }, + { + "epoch": 78.12, + "grad_norm": 0.8550071120262146, + "learning_rate": 1.0958266666666666e-05, + "loss": 1.2503804779052734, + "step": 585900 + }, + { + "epoch": 78.13333333333334, + "grad_norm": 0.9323640465736389, + "learning_rate": 1.09516e-05, + "loss": 1.2534485626220704, + "step": 586000 + }, + { + "epoch": 78.14666666666666, + "grad_norm": 0.8850072026252747, + "learning_rate": 1.0944933333333334e-05, + "loss": 1.2556941986083985, + "step": 586100 + }, + { + "epoch": 78.16, + "grad_norm": 0.8399662971496582, + "learning_rate": 1.0938266666666668e-05, + "loss": 1.2542850494384765, + "step": 586200 + }, + { + "epoch": 78.17333333333333, + "grad_norm": 0.919593095779419, + "learning_rate": 1.09316e-05, + "loss": 1.2562599182128906, + "step": 586300 + }, + { + "epoch": 78.18666666666667, + "grad_norm": 0.8908868432044983, + "learning_rate": 1.0924933333333334e-05, + "loss": 1.2563451385498048, + "step": 586400 + }, + { + "epoch": 78.2, + "grad_norm": 0.8848934769630432, + "learning_rate": 1.0918266666666667e-05, + "loss": 1.2524043273925782, + "step": 586500 + }, + { + "epoch": 78.21333333333334, + "grad_norm": 0.8833860158920288, + "learning_rate": 1.09116e-05, + "loss": 1.2593082427978515, + "step": 586600 + }, + { + "epoch": 78.22666666666667, + "grad_norm": 0.8572924733161926, + "learning_rate": 1.0904933333333333e-05, + "loss": 1.2562625885009766, + "step": 586700 + }, + { + "epoch": 78.24, + "grad_norm": 0.8951097726821899, + "learning_rate": 1.0898266666666667e-05, + "loss": 1.2585964965820313, + "step": 586800 + }, + { + "epoch": 78.25333333333333, + "grad_norm": 0.879523515701294, + "learning_rate": 1.0891600000000001e-05, + "loss": 1.2556568908691406, + "step": 586900 + }, + { + "epoch": 78.26666666666667, + "grad_norm": 0.9368571043014526, + "learning_rate": 1.0884933333333335e-05, + "loss": 1.2600704193115235, + "step": 587000 + }, + { + "epoch": 78.28, + "grad_norm": 0.8886348009109497, + "learning_rate": 1.0878333333333334e-05, + "loss": 1.2605961608886718, + "step": 587100 + }, + { + "epoch": 78.29333333333334, + "grad_norm": 0.8580905199050903, + "learning_rate": 1.0871666666666668e-05, + "loss": 1.2552318572998047, + "step": 587200 + }, + { + "epoch": 78.30666666666667, + "grad_norm": 0.9353607296943665, + "learning_rate": 1.0865e-05, + "loss": 1.256221389770508, + "step": 587300 + }, + { + "epoch": 78.32, + "grad_norm": 0.8265605568885803, + "learning_rate": 1.0858333333333334e-05, + "loss": 1.2583871459960938, + "step": 587400 + }, + { + "epoch": 78.33333333333333, + "grad_norm": 0.956251859664917, + "learning_rate": 1.0851666666666666e-05, + "loss": 1.2614502716064453, + "step": 587500 + }, + { + "epoch": 78.34666666666666, + "grad_norm": 0.8545957207679749, + "learning_rate": 1.0845e-05, + "loss": 1.2584918212890626, + "step": 587600 + }, + { + "epoch": 78.36, + "grad_norm": 0.8909661769866943, + "learning_rate": 1.0838333333333334e-05, + "loss": 1.2615117645263672, + "step": 587700 + }, + { + "epoch": 78.37333333333333, + "grad_norm": 0.9129730463027954, + "learning_rate": 1.0831666666666668e-05, + "loss": 1.255586166381836, + "step": 587800 + }, + { + "epoch": 78.38666666666667, + "grad_norm": 0.8736388683319092, + "learning_rate": 1.0825e-05, + "loss": 1.2649986267089843, + "step": 587900 + }, + { + "epoch": 78.4, + "grad_norm": 0.931929886341095, + "learning_rate": 1.0818333333333335e-05, + "loss": 1.2623023223876952, + "step": 588000 + }, + { + "epoch": 78.41333333333333, + "grad_norm": 0.9257421493530273, + "learning_rate": 1.0811666666666667e-05, + "loss": 1.258783950805664, + "step": 588100 + }, + { + "epoch": 78.42666666666666, + "grad_norm": 0.8989784717559814, + "learning_rate": 1.0804999999999999e-05, + "loss": 1.2628663635253907, + "step": 588200 + }, + { + "epoch": 78.44, + "grad_norm": 0.9080356359481812, + "learning_rate": 1.0798333333333335e-05, + "loss": 1.2631582641601562, + "step": 588300 + }, + { + "epoch": 78.45333333333333, + "grad_norm": 0.864266574382782, + "learning_rate": 1.0791666666666667e-05, + "loss": 1.2602297973632812, + "step": 588400 + }, + { + "epoch": 78.46666666666667, + "grad_norm": 0.9377700686454773, + "learning_rate": 1.0785000000000001e-05, + "loss": 1.2689905548095703, + "step": 588500 + }, + { + "epoch": 78.48, + "grad_norm": 0.9184496998786926, + "learning_rate": 1.0778333333333333e-05, + "loss": 1.2642398834228517, + "step": 588600 + }, + { + "epoch": 78.49333333333334, + "grad_norm": 0.9387530088424683, + "learning_rate": 1.0771666666666667e-05, + "loss": 1.2622312164306642, + "step": 588700 + }, + { + "epoch": 78.50666666666666, + "grad_norm": 0.8708038926124573, + "learning_rate": 1.0765e-05, + "loss": 1.265206298828125, + "step": 588800 + }, + { + "epoch": 78.52, + "grad_norm": 0.8846192955970764, + "learning_rate": 1.0758333333333333e-05, + "loss": 1.2633629608154298, + "step": 588900 + }, + { + "epoch": 78.53333333333333, + "grad_norm": 0.8851326704025269, + "learning_rate": 1.0751666666666667e-05, + "loss": 1.266950912475586, + "step": 589000 + }, + { + "epoch": 78.54666666666667, + "grad_norm": 0.9254246950149536, + "learning_rate": 1.0745000000000001e-05, + "loss": 1.2651148223876953, + "step": 589100 + }, + { + "epoch": 78.56, + "grad_norm": 0.886559784412384, + "learning_rate": 1.07384e-05, + "loss": 1.2686289215087891, + "step": 589200 + }, + { + "epoch": 78.57333333333334, + "grad_norm": 0.8676953315734863, + "learning_rate": 1.0731733333333334e-05, + "loss": 1.2632874298095702, + "step": 589300 + }, + { + "epoch": 78.58666666666667, + "grad_norm": 0.911446213722229, + "learning_rate": 1.0725066666666667e-05, + "loss": 1.2674727630615235, + "step": 589400 + }, + { + "epoch": 78.6, + "grad_norm": 0.9178944230079651, + "learning_rate": 1.07184e-05, + "loss": 1.2665594482421876, + "step": 589500 + }, + { + "epoch": 78.61333333333333, + "grad_norm": 0.9570107460021973, + "learning_rate": 1.0711733333333333e-05, + "loss": 1.2660420989990235, + "step": 589600 + }, + { + "epoch": 78.62666666666667, + "grad_norm": 0.9041311144828796, + "learning_rate": 1.0705066666666667e-05, + "loss": 1.2692436218261718, + "step": 589700 + }, + { + "epoch": 78.64, + "grad_norm": 0.8909561634063721, + "learning_rate": 1.06984e-05, + "loss": 1.2753994750976563, + "step": 589800 + }, + { + "epoch": 78.65333333333334, + "grad_norm": 0.883059561252594, + "learning_rate": 1.0691733333333335e-05, + "loss": 1.2698513793945312, + "step": 589900 + }, + { + "epoch": 78.66666666666667, + "grad_norm": 0.8872081637382507, + "learning_rate": 1.0685066666666667e-05, + "loss": 1.268332748413086, + "step": 590000 + }, + { + "epoch": 78.68, + "grad_norm": 0.9364659190177917, + "learning_rate": 1.0678400000000001e-05, + "loss": 1.2715838623046876, + "step": 590100 + }, + { + "epoch": 78.69333333333333, + "grad_norm": 0.8873387575149536, + "learning_rate": 1.0671733333333333e-05, + "loss": 1.2653190612792968, + "step": 590200 + }, + { + "epoch": 78.70666666666666, + "grad_norm": 0.9163351058959961, + "learning_rate": 1.0665066666666667e-05, + "loss": 1.2706766510009766, + "step": 590300 + }, + { + "epoch": 78.72, + "grad_norm": 0.8802734017372131, + "learning_rate": 1.0658400000000001e-05, + "loss": 1.2680073547363282, + "step": 590400 + }, + { + "epoch": 78.73333333333333, + "grad_norm": 0.8930662870407104, + "learning_rate": 1.0651733333333335e-05, + "loss": 1.2715739440917968, + "step": 590500 + }, + { + "epoch": 78.74666666666667, + "grad_norm": 0.8921145796775818, + "learning_rate": 1.0645066666666667e-05, + "loss": 1.2718709564208985, + "step": 590600 + }, + { + "epoch": 78.76, + "grad_norm": 0.9061724543571472, + "learning_rate": 1.0638400000000001e-05, + "loss": 1.2666871643066406, + "step": 590700 + }, + { + "epoch": 78.77333333333333, + "grad_norm": 0.9512609839439392, + "learning_rate": 1.0631733333333334e-05, + "loss": 1.2725698852539062, + "step": 590800 + }, + { + "epoch": 78.78666666666666, + "grad_norm": 0.8718198537826538, + "learning_rate": 1.0625066666666666e-05, + "loss": 1.2700515747070313, + "step": 590900 + }, + { + "epoch": 78.8, + "grad_norm": 0.9610340595245361, + "learning_rate": 1.06184e-05, + "loss": 1.2690962982177734, + "step": 591000 + }, + { + "epoch": 78.81333333333333, + "grad_norm": 0.9104143977165222, + "learning_rate": 1.0611733333333334e-05, + "loss": 1.2665902709960937, + "step": 591100 + }, + { + "epoch": 78.82666666666667, + "grad_norm": 0.9109393358230591, + "learning_rate": 1.0605133333333333e-05, + "loss": 1.2704518127441407, + "step": 591200 + }, + { + "epoch": 78.84, + "grad_norm": 0.9059329032897949, + "learning_rate": 1.0598466666666667e-05, + "loss": 1.273515396118164, + "step": 591300 + }, + { + "epoch": 78.85333333333334, + "grad_norm": 0.9386402368545532, + "learning_rate": 1.05918e-05, + "loss": 1.2749934387207031, + "step": 591400 + }, + { + "epoch": 78.86666666666666, + "grad_norm": 0.8592071533203125, + "learning_rate": 1.0585133333333335e-05, + "loss": 1.274554214477539, + "step": 591500 + }, + { + "epoch": 78.88, + "grad_norm": 0.903801679611206, + "learning_rate": 1.0578466666666667e-05, + "loss": 1.2715023040771485, + "step": 591600 + }, + { + "epoch": 78.89333333333333, + "grad_norm": 0.9000576138496399, + "learning_rate": 1.0571800000000001e-05, + "loss": 1.2724392700195313, + "step": 591700 + }, + { + "epoch": 78.90666666666667, + "grad_norm": 0.9397499561309814, + "learning_rate": 1.0565133333333333e-05, + "loss": 1.2701983642578125, + "step": 591800 + }, + { + "epoch": 78.92, + "grad_norm": 0.9019601345062256, + "learning_rate": 1.0558466666666667e-05, + "loss": 1.2739637756347657, + "step": 591900 + }, + { + "epoch": 78.93333333333334, + "grad_norm": 0.9267058372497559, + "learning_rate": 1.0551800000000001e-05, + "loss": 1.278916778564453, + "step": 592000 + }, + { + "epoch": 78.94666666666667, + "grad_norm": 0.9432265162467957, + "learning_rate": 1.0545133333333333e-05, + "loss": 1.2765323638916015, + "step": 592100 + }, + { + "epoch": 78.96, + "grad_norm": 0.905218243598938, + "learning_rate": 1.0538466666666667e-05, + "loss": 1.2738363647460937, + "step": 592200 + }, + { + "epoch": 78.97333333333333, + "grad_norm": 0.8922687768936157, + "learning_rate": 1.05318e-05, + "loss": 1.2749046325683593, + "step": 592300 + }, + { + "epoch": 78.98666666666666, + "grad_norm": 0.9277877807617188, + "learning_rate": 1.0525133333333334e-05, + "loss": 1.2721634674072266, + "step": 592400 + }, + { + "epoch": 79.0, + "grad_norm": 0.9030377268791199, + "learning_rate": 1.0518466666666666e-05, + "loss": 1.2747603607177735, + "step": 592500 + }, + { + "epoch": 79.01333333333334, + "grad_norm": 0.8378993272781372, + "learning_rate": 1.0511800000000002e-05, + "loss": 1.24189208984375, + "step": 592600 + }, + { + "epoch": 79.02666666666667, + "grad_norm": 0.9222813248634338, + "learning_rate": 1.0505133333333334e-05, + "loss": 1.2447259521484375, + "step": 592700 + }, + { + "epoch": 79.04, + "grad_norm": 0.8688544034957886, + "learning_rate": 1.0498466666666668e-05, + "loss": 1.2454937744140624, + "step": 592800 + }, + { + "epoch": 79.05333333333333, + "grad_norm": 0.8973101377487183, + "learning_rate": 1.04918e-05, + "loss": 1.2433192443847656, + "step": 592900 + }, + { + "epoch": 79.06666666666666, + "grad_norm": 0.868934154510498, + "learning_rate": 1.0485133333333334e-05, + "loss": 1.2476187133789063, + "step": 593000 + }, + { + "epoch": 79.08, + "grad_norm": 0.9051042795181274, + "learning_rate": 1.0478466666666666e-05, + "loss": 1.246639404296875, + "step": 593100 + }, + { + "epoch": 79.09333333333333, + "grad_norm": 0.8593751192092896, + "learning_rate": 1.0471866666666667e-05, + "loss": 1.2500391387939453, + "step": 593200 + }, + { + "epoch": 79.10666666666667, + "grad_norm": 0.8476565480232239, + "learning_rate": 1.04652e-05, + "loss": 1.246165542602539, + "step": 593300 + }, + { + "epoch": 79.12, + "grad_norm": 0.8801284432411194, + "learning_rate": 1.0458533333333333e-05, + "loss": 1.246192092895508, + "step": 593400 + }, + { + "epoch": 79.13333333333334, + "grad_norm": 0.8846884369850159, + "learning_rate": 1.0451866666666667e-05, + "loss": 1.2439684295654296, + "step": 593500 + }, + { + "epoch": 79.14666666666666, + "grad_norm": 0.9294757843017578, + "learning_rate": 1.0445200000000001e-05, + "loss": 1.2488855743408203, + "step": 593600 + }, + { + "epoch": 79.16, + "grad_norm": 0.8399421572685242, + "learning_rate": 1.0438533333333333e-05, + "loss": 1.2482614135742187, + "step": 593700 + }, + { + "epoch": 79.17333333333333, + "grad_norm": 0.911873459815979, + "learning_rate": 1.0431866666666667e-05, + "loss": 1.2482553100585938, + "step": 593800 + }, + { + "epoch": 79.18666666666667, + "grad_norm": 0.8314080834388733, + "learning_rate": 1.04252e-05, + "loss": 1.247007827758789, + "step": 593900 + }, + { + "epoch": 79.2, + "grad_norm": 0.9181894063949585, + "learning_rate": 1.0418533333333334e-05, + "loss": 1.2536485290527344, + "step": 594000 + }, + { + "epoch": 79.21333333333334, + "grad_norm": 0.8740313649177551, + "learning_rate": 1.0411866666666668e-05, + "loss": 1.2519398498535157, + "step": 594100 + }, + { + "epoch": 79.22666666666667, + "grad_norm": 0.9068511128425598, + "learning_rate": 1.0405200000000002e-05, + "loss": 1.2476766967773438, + "step": 594200 + }, + { + "epoch": 79.24, + "grad_norm": 0.9321922063827515, + "learning_rate": 1.0398533333333334e-05, + "loss": 1.2513009643554687, + "step": 594300 + }, + { + "epoch": 79.25333333333333, + "grad_norm": 0.888857901096344, + "learning_rate": 1.0391866666666668e-05, + "loss": 1.2504447937011718, + "step": 594400 + }, + { + "epoch": 79.26666666666667, + "grad_norm": 0.9641751050949097, + "learning_rate": 1.03852e-05, + "loss": 1.2548712921142577, + "step": 594500 + }, + { + "epoch": 79.28, + "grad_norm": 0.8727660775184631, + "learning_rate": 1.0378533333333332e-05, + "loss": 1.2525074005126953, + "step": 594600 + }, + { + "epoch": 79.29333333333334, + "grad_norm": 0.8915736675262451, + "learning_rate": 1.0371866666666668e-05, + "loss": 1.2563622283935547, + "step": 594700 + }, + { + "epoch": 79.30666666666667, + "grad_norm": 0.8992096781730652, + "learning_rate": 1.03652e-05, + "loss": 1.250523452758789, + "step": 594800 + }, + { + "epoch": 79.32, + "grad_norm": 0.9542332291603088, + "learning_rate": 1.0358533333333334e-05, + "loss": 1.2581777954101563, + "step": 594900 + }, + { + "epoch": 79.33333333333333, + "grad_norm": 0.8994565606117249, + "learning_rate": 1.0351866666666667e-05, + "loss": 1.2560828399658204, + "step": 595000 + }, + { + "epoch": 79.34666666666666, + "grad_norm": 0.9147607088088989, + "learning_rate": 1.03452e-05, + "loss": 1.2500714111328124, + "step": 595100 + }, + { + "epoch": 79.36, + "grad_norm": 0.9078018069267273, + "learning_rate": 1.0338600000000001e-05, + "loss": 1.257826385498047, + "step": 595200 + }, + { + "epoch": 79.37333333333333, + "grad_norm": 0.9065786004066467, + "learning_rate": 1.0331933333333334e-05, + "loss": 1.2560930633544922, + "step": 595300 + }, + { + "epoch": 79.38666666666667, + "grad_norm": 0.9030917286872864, + "learning_rate": 1.0325266666666667e-05, + "loss": 1.2558876800537109, + "step": 595400 + }, + { + "epoch": 79.4, + "grad_norm": 0.9185391664505005, + "learning_rate": 1.03186e-05, + "loss": 1.2556648254394531, + "step": 595500 + }, + { + "epoch": 79.41333333333333, + "grad_norm": 0.8820536136627197, + "learning_rate": 1.0311933333333334e-05, + "loss": 1.25557373046875, + "step": 595600 + }, + { + "epoch": 79.42666666666666, + "grad_norm": 0.872558057308197, + "learning_rate": 1.0305266666666668e-05, + "loss": 1.2546512603759765, + "step": 595700 + }, + { + "epoch": 79.44, + "grad_norm": 0.9479767680168152, + "learning_rate": 1.02986e-05, + "loss": 1.2602999114990234, + "step": 595800 + }, + { + "epoch": 79.45333333333333, + "grad_norm": 0.8801756501197815, + "learning_rate": 1.0291933333333334e-05, + "loss": 1.2596167755126952, + "step": 595900 + }, + { + "epoch": 79.46666666666667, + "grad_norm": 0.8682863116264343, + "learning_rate": 1.0285266666666666e-05, + "loss": 1.2621781158447265, + "step": 596000 + }, + { + "epoch": 79.48, + "grad_norm": 0.9202213883399963, + "learning_rate": 1.02786e-05, + "loss": 1.2601839447021483, + "step": 596100 + }, + { + "epoch": 79.49333333333334, + "grad_norm": 0.8812510371208191, + "learning_rate": 1.0271933333333334e-05, + "loss": 1.2634574890136718, + "step": 596200 + }, + { + "epoch": 79.50666666666666, + "grad_norm": 0.9358564019203186, + "learning_rate": 1.0265266666666668e-05, + "loss": 1.2560010528564454, + "step": 596300 + }, + { + "epoch": 79.52, + "grad_norm": 0.9232118725776672, + "learning_rate": 1.02586e-05, + "loss": 1.2569718170166015, + "step": 596400 + }, + { + "epoch": 79.53333333333333, + "grad_norm": 0.9304707050323486, + "learning_rate": 1.0251933333333334e-05, + "loss": 1.2577223205566406, + "step": 596500 + }, + { + "epoch": 79.54666666666667, + "grad_norm": 0.8667801022529602, + "learning_rate": 1.0245266666666667e-05, + "loss": 1.2640282440185546, + "step": 596600 + }, + { + "epoch": 79.56, + "grad_norm": 0.9173431992530823, + "learning_rate": 1.02386e-05, + "loss": 1.2618460083007812, + "step": 596700 + }, + { + "epoch": 79.57333333333334, + "grad_norm": 0.9202678203582764, + "learning_rate": 1.0231933333333334e-05, + "loss": 1.2610095977783202, + "step": 596800 + }, + { + "epoch": 79.58666666666667, + "grad_norm": 0.8916814923286438, + "learning_rate": 1.0225266666666668e-05, + "loss": 1.2634732055664062, + "step": 596900 + }, + { + "epoch": 79.6, + "grad_norm": 0.8657307624816895, + "learning_rate": 1.02186e-05, + "loss": 1.2660941314697265, + "step": 597000 + }, + { + "epoch": 79.61333333333333, + "grad_norm": 0.948290228843689, + "learning_rate": 1.0211933333333335e-05, + "loss": 1.2630126953125, + "step": 597100 + }, + { + "epoch": 79.62666666666667, + "grad_norm": 0.8405894041061401, + "learning_rate": 1.0205333333333334e-05, + "loss": 1.2619757080078124, + "step": 597200 + }, + { + "epoch": 79.64, + "grad_norm": 0.9192798137664795, + "learning_rate": 1.0198666666666668e-05, + "loss": 1.2630854797363282, + "step": 597300 + }, + { + "epoch": 79.65333333333334, + "grad_norm": 0.8935139179229736, + "learning_rate": 1.0192e-05, + "loss": 1.2599110412597656, + "step": 597400 + }, + { + "epoch": 79.66666666666667, + "grad_norm": 0.9552688598632812, + "learning_rate": 1.0185333333333334e-05, + "loss": 1.2634823608398438, + "step": 597500 + }, + { + "epoch": 79.68, + "grad_norm": 0.9792049527168274, + "learning_rate": 1.0178666666666666e-05, + "loss": 1.2599063110351563, + "step": 597600 + }, + { + "epoch": 79.69333333333333, + "grad_norm": 0.8858845233917236, + "learning_rate": 1.0172e-05, + "loss": 1.262656021118164, + "step": 597700 + }, + { + "epoch": 79.70666666666666, + "grad_norm": 0.8454314470291138, + "learning_rate": 1.0165333333333334e-05, + "loss": 1.2662943267822266, + "step": 597800 + }, + { + "epoch": 79.72, + "grad_norm": 0.8796765208244324, + "learning_rate": 1.0158666666666668e-05, + "loss": 1.2636601257324218, + "step": 597900 + }, + { + "epoch": 79.73333333333333, + "grad_norm": 0.9347110390663147, + "learning_rate": 1.0152e-05, + "loss": 1.2646561431884766, + "step": 598000 + }, + { + "epoch": 79.74666666666667, + "grad_norm": 0.8910204172134399, + "learning_rate": 1.0145333333333334e-05, + "loss": 1.268468780517578, + "step": 598100 + }, + { + "epoch": 79.76, + "grad_norm": 0.8769538998603821, + "learning_rate": 1.0138666666666667e-05, + "loss": 1.2662653350830078, + "step": 598200 + }, + { + "epoch": 79.77333333333333, + "grad_norm": 0.8732584714889526, + "learning_rate": 1.0132e-05, + "loss": 1.2627813720703125, + "step": 598300 + }, + { + "epoch": 79.78666666666666, + "grad_norm": 0.927267849445343, + "learning_rate": 1.0125333333333335e-05, + "loss": 1.2639500427246093, + "step": 598400 + }, + { + "epoch": 79.8, + "grad_norm": 0.8972467184066772, + "learning_rate": 1.0118666666666667e-05, + "loss": 1.265300064086914, + "step": 598500 + }, + { + "epoch": 79.81333333333333, + "grad_norm": 0.9230730533599854, + "learning_rate": 1.0112e-05, + "loss": 1.2670893096923828, + "step": 598600 + }, + { + "epoch": 79.82666666666667, + "grad_norm": 0.8692210912704468, + "learning_rate": 1.0105333333333333e-05, + "loss": 1.2643206787109376, + "step": 598700 + }, + { + "epoch": 79.84, + "grad_norm": 0.9208062291145325, + "learning_rate": 1.0098666666666667e-05, + "loss": 1.266007766723633, + "step": 598800 + }, + { + "epoch": 79.85333333333334, + "grad_norm": 0.8955254554748535, + "learning_rate": 1.0092e-05, + "loss": 1.2656437683105468, + "step": 598900 + }, + { + "epoch": 79.86666666666666, + "grad_norm": 0.8898331522941589, + "learning_rate": 1.0085333333333335e-05, + "loss": 1.268927993774414, + "step": 599000 + }, + { + "epoch": 79.88, + "grad_norm": 0.9004736542701721, + "learning_rate": 1.0078666666666667e-05, + "loss": 1.2676744079589843, + "step": 599100 + }, + { + "epoch": 79.89333333333333, + "grad_norm": 0.879002571105957, + "learning_rate": 1.0072066666666668e-05, + "loss": 1.268192672729492, + "step": 599200 + }, + { + "epoch": 79.90666666666667, + "grad_norm": 0.8479452133178711, + "learning_rate": 1.00654e-05, + "loss": 1.2690647888183593, + "step": 599300 + }, + { + "epoch": 79.92, + "grad_norm": 0.9314066171646118, + "learning_rate": 1.0058733333333334e-05, + "loss": 1.2657173156738282, + "step": 599400 + }, + { + "epoch": 79.93333333333334, + "grad_norm": 0.9445568919181824, + "learning_rate": 1.0052066666666666e-05, + "loss": 1.268585205078125, + "step": 599500 + }, + { + "epoch": 79.94666666666667, + "grad_norm": 0.8672616481781006, + "learning_rate": 1.00454e-05, + "loss": 1.2684510040283203, + "step": 599600 + }, + { + "epoch": 79.96, + "grad_norm": 0.9522123336791992, + "learning_rate": 1.0038733333333333e-05, + "loss": 1.2633151245117187, + "step": 599700 + }, + { + "epoch": 79.97333333333333, + "grad_norm": 0.8980398774147034, + "learning_rate": 1.0032066666666667e-05, + "loss": 1.2709536743164063, + "step": 599800 + }, + { + "epoch": 79.98666666666666, + "grad_norm": 0.9412267804145813, + "learning_rate": 1.00254e-05, + "loss": 1.2736549377441406, + "step": 599900 + }, + { + "epoch": 80.0, + "grad_norm": 0.958734929561615, + "learning_rate": 1.0018733333333335e-05, + "loss": 1.2687025451660157, + "step": 600000 + }, + { + "epoch": 80.01333333333334, + "grad_norm": 0.9288617968559265, + "learning_rate": 1.0012066666666667e-05, + "loss": 1.2443870544433593, + "step": 600100 + }, + { + "epoch": 80.02666666666667, + "grad_norm": 0.9338223338127136, + "learning_rate": 1.00054e-05, + "loss": 1.243735122680664, + "step": 600200 + }, + { + "epoch": 80.04, + "grad_norm": 0.9002096056938171, + "learning_rate": 9.998733333333333e-06, + "loss": 1.2413943481445313, + "step": 600300 + }, + { + "epoch": 80.05333333333333, + "grad_norm": 0.9089773297309875, + "learning_rate": 9.992066666666667e-06, + "loss": 1.2424115753173828, + "step": 600400 + }, + { + "epoch": 80.06666666666666, + "grad_norm": 0.919051468372345, + "learning_rate": 9.985400000000001e-06, + "loss": 1.2413393402099608, + "step": 600500 + }, + { + "epoch": 80.08, + "grad_norm": 0.9045332670211792, + "learning_rate": 9.978733333333335e-06, + "loss": 1.2448829650878905, + "step": 600600 + }, + { + "epoch": 80.09333333333333, + "grad_norm": 0.9014262557029724, + "learning_rate": 9.972066666666667e-06, + "loss": 1.2456900024414062, + "step": 600700 + }, + { + "epoch": 80.10666666666667, + "grad_norm": 0.9010103344917297, + "learning_rate": 9.965400000000001e-06, + "loss": 1.2381111907958984, + "step": 600800 + }, + { + "epoch": 80.12, + "grad_norm": 0.8444560170173645, + "learning_rate": 9.958733333333333e-06, + "loss": 1.2418882751464844, + "step": 600900 + }, + { + "epoch": 80.13333333333334, + "grad_norm": 0.9013086557388306, + "learning_rate": 9.952066666666666e-06, + "loss": 1.2470101165771483, + "step": 601000 + }, + { + "epoch": 80.14666666666666, + "grad_norm": 0.8963460326194763, + "learning_rate": 9.945400000000001e-06, + "loss": 1.2434548950195312, + "step": 601100 + }, + { + "epoch": 80.16, + "grad_norm": 0.8968179821968079, + "learning_rate": 9.9388e-06, + "loss": 1.244561996459961, + "step": 601200 + }, + { + "epoch": 80.17333333333333, + "grad_norm": 0.8898792862892151, + "learning_rate": 9.932133333333333e-06, + "loss": 1.2477424621582032, + "step": 601300 + }, + { + "epoch": 80.18666666666667, + "grad_norm": 0.9151734709739685, + "learning_rate": 9.925466666666668e-06, + "loss": 1.2453786468505859, + "step": 601400 + }, + { + "epoch": 80.2, + "grad_norm": 0.8821862936019897, + "learning_rate": 9.9188e-06, + "loss": 1.250970993041992, + "step": 601500 + }, + { + "epoch": 80.21333333333334, + "grad_norm": 0.8794935941696167, + "learning_rate": 9.912133333333335e-06, + "loss": 1.2464175415039063, + "step": 601600 + }, + { + "epoch": 80.22666666666667, + "grad_norm": 0.8836155533790588, + "learning_rate": 9.905466666666667e-06, + "loss": 1.2436624908447265, + "step": 601700 + }, + { + "epoch": 80.24, + "grad_norm": 0.881230354309082, + "learning_rate": 9.8988e-06, + "loss": 1.2490660095214843, + "step": 601800 + }, + { + "epoch": 80.25333333333333, + "grad_norm": 0.9362554550170898, + "learning_rate": 9.892133333333333e-06, + "loss": 1.2497845458984376, + "step": 601900 + }, + { + "epoch": 80.26666666666667, + "grad_norm": 0.8518027663230896, + "learning_rate": 9.885466666666667e-06, + "loss": 1.247543487548828, + "step": 602000 + }, + { + "epoch": 80.28, + "grad_norm": 0.9236149787902832, + "learning_rate": 9.878800000000001e-06, + "loss": 1.2505050659179688, + "step": 602100 + }, + { + "epoch": 80.29333333333334, + "grad_norm": 0.9130676984786987, + "learning_rate": 9.872133333333333e-06, + "loss": 1.2465634918212891, + "step": 602200 + }, + { + "epoch": 80.30666666666667, + "grad_norm": 0.9139811992645264, + "learning_rate": 9.865466666666667e-06, + "loss": 1.2522836303710938, + "step": 602300 + }, + { + "epoch": 80.32, + "grad_norm": 0.8871936202049255, + "learning_rate": 9.8588e-06, + "loss": 1.2477921295166015, + "step": 602400 + }, + { + "epoch": 80.33333333333333, + "grad_norm": 0.9056395888328552, + "learning_rate": 9.852133333333333e-06, + "loss": 1.25315185546875, + "step": 602500 + }, + { + "epoch": 80.34666666666666, + "grad_norm": 0.881733238697052, + "learning_rate": 9.845466666666667e-06, + "loss": 1.25149169921875, + "step": 602600 + }, + { + "epoch": 80.36, + "grad_norm": 0.8879048228263855, + "learning_rate": 9.838800000000001e-06, + "loss": 1.2514451599121095, + "step": 602700 + }, + { + "epoch": 80.37333333333333, + "grad_norm": 0.9176741242408752, + "learning_rate": 9.832133333333334e-06, + "loss": 1.2507662963867188, + "step": 602800 + }, + { + "epoch": 80.38666666666667, + "grad_norm": 0.8852501511573792, + "learning_rate": 9.825466666666668e-06, + "loss": 1.2502633666992187, + "step": 602900 + }, + { + "epoch": 80.4, + "grad_norm": 0.8856446743011475, + "learning_rate": 9.8188e-06, + "loss": 1.2474871826171876, + "step": 603000 + }, + { + "epoch": 80.41333333333333, + "grad_norm": 0.7928372621536255, + "learning_rate": 9.812133333333334e-06, + "loss": 1.252954635620117, + "step": 603100 + }, + { + "epoch": 80.42666666666666, + "grad_norm": 0.9248310327529907, + "learning_rate": 9.805533333333333e-06, + "loss": 1.255914306640625, + "step": 603200 + }, + { + "epoch": 80.44, + "grad_norm": 0.8597677946090698, + "learning_rate": 9.798866666666667e-06, + "loss": 1.2539872741699218, + "step": 603300 + }, + { + "epoch": 80.45333333333333, + "grad_norm": 0.9030819535255432, + "learning_rate": 9.7922e-06, + "loss": 1.2549383544921875, + "step": 603400 + }, + { + "epoch": 80.46666666666667, + "grad_norm": 0.9179391860961914, + "learning_rate": 9.785533333333335e-06, + "loss": 1.255010757446289, + "step": 603500 + }, + { + "epoch": 80.48, + "grad_norm": 0.8762322068214417, + "learning_rate": 9.778866666666667e-06, + "loss": 1.2511839294433593, + "step": 603600 + }, + { + "epoch": 80.49333333333334, + "grad_norm": 0.9009326696395874, + "learning_rate": 9.772200000000001e-06, + "loss": 1.2546797180175782, + "step": 603700 + }, + { + "epoch": 80.50666666666666, + "grad_norm": 0.8604843020439148, + "learning_rate": 9.765533333333333e-06, + "loss": 1.2558490753173828, + "step": 603800 + }, + { + "epoch": 80.52, + "grad_norm": 0.7724893093109131, + "learning_rate": 9.758866666666667e-06, + "loss": 1.254795150756836, + "step": 603900 + }, + { + "epoch": 80.53333333333333, + "grad_norm": 0.9349945783615112, + "learning_rate": 9.7522e-06, + "loss": 1.2588446044921875, + "step": 604000 + }, + { + "epoch": 80.54666666666667, + "grad_norm": 0.8668858408927917, + "learning_rate": 9.745533333333334e-06, + "loss": 1.2564624786376952, + "step": 604100 + }, + { + "epoch": 80.56, + "grad_norm": 0.872798502445221, + "learning_rate": 9.738866666666667e-06, + "loss": 1.2593098449707032, + "step": 604200 + }, + { + "epoch": 80.57333333333334, + "grad_norm": 0.8730403780937195, + "learning_rate": 9.732200000000001e-06, + "loss": 1.2532449340820313, + "step": 604300 + }, + { + "epoch": 80.58666666666667, + "grad_norm": 0.9731208682060242, + "learning_rate": 9.725533333333334e-06, + "loss": 1.258994598388672, + "step": 604400 + }, + { + "epoch": 80.6, + "grad_norm": 0.9248079061508179, + "learning_rate": 9.718866666666668e-06, + "loss": 1.2537442779541015, + "step": 604500 + }, + { + "epoch": 80.61333333333333, + "grad_norm": 0.8961241841316223, + "learning_rate": 9.7122e-06, + "loss": 1.2533512115478516, + "step": 604600 + }, + { + "epoch": 80.62666666666667, + "grad_norm": 0.8987104296684265, + "learning_rate": 9.705533333333334e-06, + "loss": 1.2551846313476562, + "step": 604700 + }, + { + "epoch": 80.64, + "grad_norm": 0.8422402143478394, + "learning_rate": 9.698866666666668e-06, + "loss": 1.2600907135009765, + "step": 604800 + }, + { + "epoch": 80.65333333333334, + "grad_norm": 0.9396112561225891, + "learning_rate": 9.6922e-06, + "loss": 1.2541912841796874, + "step": 604900 + }, + { + "epoch": 80.66666666666667, + "grad_norm": 0.8763729333877563, + "learning_rate": 9.685533333333334e-06, + "loss": 1.255435791015625, + "step": 605000 + }, + { + "epoch": 80.68, + "grad_norm": 0.9729053974151611, + "learning_rate": 9.678866666666666e-06, + "loss": 1.2559229278564452, + "step": 605100 + }, + { + "epoch": 80.69333333333333, + "grad_norm": 0.9245437979698181, + "learning_rate": 9.6722e-06, + "loss": 1.2618405151367187, + "step": 605200 + }, + { + "epoch": 80.70666666666666, + "grad_norm": 0.9225579500198364, + "learning_rate": 9.665600000000001e-06, + "loss": 1.25842529296875, + "step": 605300 + }, + { + "epoch": 80.72, + "grad_norm": 0.8995950222015381, + "learning_rate": 9.658933333333333e-06, + "loss": 1.2611757659912108, + "step": 605400 + }, + { + "epoch": 80.73333333333333, + "grad_norm": 0.8765818476676941, + "learning_rate": 9.652266666666667e-06, + "loss": 1.2570573425292968, + "step": 605500 + }, + { + "epoch": 80.74666666666667, + "grad_norm": 0.8758502006530762, + "learning_rate": 9.645600000000001e-06, + "loss": 1.2593089294433595, + "step": 605600 + }, + { + "epoch": 80.76, + "grad_norm": 0.9053191542625427, + "learning_rate": 9.638933333333334e-06, + "loss": 1.2571390533447266, + "step": 605700 + }, + { + "epoch": 80.77333333333333, + "grad_norm": 0.8636969327926636, + "learning_rate": 9.632266666666668e-06, + "loss": 1.259483871459961, + "step": 605800 + }, + { + "epoch": 80.78666666666666, + "grad_norm": 0.9549551010131836, + "learning_rate": 9.6256e-06, + "loss": 1.2597525787353516, + "step": 605900 + }, + { + "epoch": 80.8, + "grad_norm": 0.8548250794410706, + "learning_rate": 9.618933333333334e-06, + "loss": 1.2577105712890626, + "step": 606000 + }, + { + "epoch": 80.81333333333333, + "grad_norm": 0.9075458645820618, + "learning_rate": 9.612266666666666e-06, + "loss": 1.2630501556396485, + "step": 606100 + }, + { + "epoch": 80.82666666666667, + "grad_norm": 0.9351378083229065, + "learning_rate": 9.6056e-06, + "loss": 1.2618649291992188, + "step": 606200 + }, + { + "epoch": 80.84, + "grad_norm": 0.8505954742431641, + "learning_rate": 9.598933333333334e-06, + "loss": 1.2608261108398438, + "step": 606300 + }, + { + "epoch": 80.85333333333334, + "grad_norm": 0.8611586093902588, + "learning_rate": 9.592266666666668e-06, + "loss": 1.2637861633300782, + "step": 606400 + }, + { + "epoch": 80.86666666666666, + "grad_norm": 0.8829309940338135, + "learning_rate": 9.5856e-06, + "loss": 1.2620301055908203, + "step": 606500 + }, + { + "epoch": 80.88, + "grad_norm": 0.906769335269928, + "learning_rate": 9.578933333333334e-06, + "loss": 1.2620735168457031, + "step": 606600 + }, + { + "epoch": 80.89333333333333, + "grad_norm": 0.896776020526886, + "learning_rate": 9.572266666666666e-06, + "loss": 1.263584213256836, + "step": 606700 + }, + { + "epoch": 80.90666666666667, + "grad_norm": 0.887713611125946, + "learning_rate": 9.5656e-06, + "loss": 1.264889907836914, + "step": 606800 + }, + { + "epoch": 80.92, + "grad_norm": 0.9247974753379822, + "learning_rate": 9.558933333333334e-06, + "loss": 1.2628305053710938, + "step": 606900 + }, + { + "epoch": 80.93333333333334, + "grad_norm": 0.9135413765907288, + "learning_rate": 9.552266666666668e-06, + "loss": 1.2610269165039063, + "step": 607000 + }, + { + "epoch": 80.94666666666667, + "grad_norm": 0.816784143447876, + "learning_rate": 9.5456e-06, + "loss": 1.264756851196289, + "step": 607100 + }, + { + "epoch": 80.96, + "grad_norm": 0.8519019484519958, + "learning_rate": 9.538933333333335e-06, + "loss": 1.2676949310302734, + "step": 607200 + }, + { + "epoch": 80.97333333333333, + "grad_norm": 0.8847300410270691, + "learning_rate": 9.532333333333334e-06, + "loss": 1.2613274383544921, + "step": 607300 + }, + { + "epoch": 80.98666666666666, + "grad_norm": 0.9292627573013306, + "learning_rate": 9.525666666666668e-06, + "loss": 1.264800796508789, + "step": 607400 + }, + { + "epoch": 81.0, + "grad_norm": 0.9245173335075378, + "learning_rate": 9.519e-06, + "loss": 1.2614967346191406, + "step": 607500 + }, + { + "epoch": 81.01333333333334, + "grad_norm": 0.8275742530822754, + "learning_rate": 9.512333333333334e-06, + "loss": 1.2391834259033203, + "step": 607600 + }, + { + "epoch": 81.02666666666667, + "grad_norm": 0.9047415256500244, + "learning_rate": 9.505666666666666e-06, + "loss": 1.2392681884765624, + "step": 607700 + }, + { + "epoch": 81.04, + "grad_norm": 0.8522070646286011, + "learning_rate": 9.499000000000002e-06, + "loss": 1.2342119598388672, + "step": 607800 + }, + { + "epoch": 81.05333333333333, + "grad_norm": 0.9225237369537354, + "learning_rate": 9.492333333333334e-06, + "loss": 1.240270004272461, + "step": 607900 + }, + { + "epoch": 81.06666666666666, + "grad_norm": 0.877410352230072, + "learning_rate": 9.485666666666668e-06, + "loss": 1.2419137573242187, + "step": 608000 + }, + { + "epoch": 81.08, + "grad_norm": 0.895682156085968, + "learning_rate": 9.479e-06, + "loss": 1.2361355590820313, + "step": 608100 + }, + { + "epoch": 81.09333333333333, + "grad_norm": 0.9138928055763245, + "learning_rate": 9.472333333333334e-06, + "loss": 1.2378245544433595, + "step": 608200 + }, + { + "epoch": 81.10666666666667, + "grad_norm": 0.8844442963600159, + "learning_rate": 9.465666666666666e-06, + "loss": 1.238951644897461, + "step": 608300 + }, + { + "epoch": 81.12, + "grad_norm": 0.9086583852767944, + "learning_rate": 9.459e-06, + "loss": 1.238919219970703, + "step": 608400 + }, + { + "epoch": 81.13333333333334, + "grad_norm": 0.9068462252616882, + "learning_rate": 9.452333333333334e-06, + "loss": 1.2433626556396484, + "step": 608500 + }, + { + "epoch": 81.14666666666666, + "grad_norm": 0.8883899450302124, + "learning_rate": 9.445666666666667e-06, + "loss": 1.2401612091064453, + "step": 608600 + }, + { + "epoch": 81.16, + "grad_norm": 0.8467079401016235, + "learning_rate": 9.439e-06, + "loss": 1.2381580352783204, + "step": 608700 + }, + { + "epoch": 81.17333333333333, + "grad_norm": 0.9207153916358948, + "learning_rate": 9.432333333333333e-06, + "loss": 1.2427813720703125, + "step": 608800 + }, + { + "epoch": 81.18666666666667, + "grad_norm": 0.912255585193634, + "learning_rate": 9.425666666666667e-06, + "loss": 1.240965805053711, + "step": 608900 + }, + { + "epoch": 81.2, + "grad_norm": 0.9188990592956543, + "learning_rate": 9.419e-06, + "loss": 1.2408465576171874, + "step": 609000 + }, + { + "epoch": 81.21333333333334, + "grad_norm": 0.9256595373153687, + "learning_rate": 9.412333333333335e-06, + "loss": 1.2405252075195312, + "step": 609100 + }, + { + "epoch": 81.22666666666667, + "grad_norm": 0.9291117787361145, + "learning_rate": 9.405666666666667e-06, + "loss": 1.245336685180664, + "step": 609200 + }, + { + "epoch": 81.24, + "grad_norm": 0.9023730158805847, + "learning_rate": 9.399066666666668e-06, + "loss": 1.247289276123047, + "step": 609300 + }, + { + "epoch": 81.25333333333333, + "grad_norm": 0.8725359439849854, + "learning_rate": 9.3924e-06, + "loss": 1.242955322265625, + "step": 609400 + }, + { + "epoch": 81.26666666666667, + "grad_norm": 0.93658846616745, + "learning_rate": 9.385733333333334e-06, + "loss": 1.2417597198486328, + "step": 609500 + }, + { + "epoch": 81.28, + "grad_norm": 0.8989132642745972, + "learning_rate": 9.379066666666666e-06, + "loss": 1.2406790924072266, + "step": 609600 + }, + { + "epoch": 81.29333333333334, + "grad_norm": 0.8773770928382874, + "learning_rate": 9.3724e-06, + "loss": 1.2456909942626953, + "step": 609700 + }, + { + "epoch": 81.30666666666667, + "grad_norm": 0.9248537421226501, + "learning_rate": 9.365733333333333e-06, + "loss": 1.2468321990966797, + "step": 609800 + }, + { + "epoch": 81.32, + "grad_norm": 0.9012039303779602, + "learning_rate": 9.359066666666668e-06, + "loss": 1.2451560974121094, + "step": 609900 + }, + { + "epoch": 81.33333333333333, + "grad_norm": 0.8763637542724609, + "learning_rate": 9.3524e-06, + "loss": 1.2435193634033204, + "step": 610000 + }, + { + "epoch": 81.34666666666666, + "grad_norm": 0.9104039669036865, + "learning_rate": 9.345733333333334e-06, + "loss": 1.2489257049560547, + "step": 610100 + }, + { + "epoch": 81.36, + "grad_norm": 0.9854726195335388, + "learning_rate": 9.339066666666667e-06, + "loss": 1.2438234710693359, + "step": 610200 + }, + { + "epoch": 81.37333333333333, + "grad_norm": 0.8832777142524719, + "learning_rate": 9.3324e-06, + "loss": 1.2450476837158204, + "step": 610300 + }, + { + "epoch": 81.38666666666667, + "grad_norm": 0.8616676926612854, + "learning_rate": 9.325733333333333e-06, + "loss": 1.24720703125, + "step": 610400 + }, + { + "epoch": 81.4, + "grad_norm": 0.8933054208755493, + "learning_rate": 9.319066666666667e-06, + "loss": 1.248559799194336, + "step": 610500 + }, + { + "epoch": 81.41333333333333, + "grad_norm": 0.9103077054023743, + "learning_rate": 9.3124e-06, + "loss": 1.2462962341308594, + "step": 610600 + }, + { + "epoch": 81.42666666666666, + "grad_norm": 0.8590754866600037, + "learning_rate": 9.305733333333335e-06, + "loss": 1.246546859741211, + "step": 610700 + }, + { + "epoch": 81.44, + "grad_norm": 0.9296621084213257, + "learning_rate": 9.299066666666667e-06, + "loss": 1.2495183563232422, + "step": 610800 + }, + { + "epoch": 81.45333333333333, + "grad_norm": 0.9122717380523682, + "learning_rate": 9.292400000000001e-06, + "loss": 1.2485328674316407, + "step": 610900 + }, + { + "epoch": 81.46666666666667, + "grad_norm": 0.894951343536377, + "learning_rate": 9.285733333333333e-06, + "loss": 1.2503672790527345, + "step": 611000 + }, + { + "epoch": 81.48, + "grad_norm": 0.8775086402893066, + "learning_rate": 9.279066666666667e-06, + "loss": 1.2496353149414063, + "step": 611100 + }, + { + "epoch": 81.49333333333334, + "grad_norm": 0.9073229432106018, + "learning_rate": 9.272400000000001e-06, + "loss": 1.2485159301757813, + "step": 611200 + }, + { + "epoch": 81.50666666666666, + "grad_norm": 0.8721373081207275, + "learning_rate": 9.2658e-06, + "loss": 1.249385452270508, + "step": 611300 + }, + { + "epoch": 81.52, + "grad_norm": 0.8617298007011414, + "learning_rate": 9.259133333333334e-06, + "loss": 1.2492945861816407, + "step": 611400 + }, + { + "epoch": 81.53333333333333, + "grad_norm": 0.9376047253608704, + "learning_rate": 9.252466666666668e-06, + "loss": 1.2484706878662108, + "step": 611500 + }, + { + "epoch": 81.54666666666667, + "grad_norm": 0.9316357970237732, + "learning_rate": 9.2458e-06, + "loss": 1.2509843444824218, + "step": 611600 + }, + { + "epoch": 81.56, + "grad_norm": 0.9092914462089539, + "learning_rate": 9.239133333333334e-06, + "loss": 1.252373046875, + "step": 611700 + }, + { + "epoch": 81.57333333333334, + "grad_norm": 0.9230238199234009, + "learning_rate": 9.232466666666667e-06, + "loss": 1.2522103881835938, + "step": 611800 + }, + { + "epoch": 81.58666666666667, + "grad_norm": 0.9527510404586792, + "learning_rate": 9.2258e-06, + "loss": 1.2519025421142578, + "step": 611900 + }, + { + "epoch": 81.6, + "grad_norm": 0.9313916563987732, + "learning_rate": 9.219133333333333e-06, + "loss": 1.2490794372558593, + "step": 612000 + }, + { + "epoch": 81.61333333333333, + "grad_norm": 0.9925395846366882, + "learning_rate": 9.212466666666667e-06, + "loss": 1.2542919921875, + "step": 612100 + }, + { + "epoch": 81.62666666666667, + "grad_norm": 0.9218894839286804, + "learning_rate": 9.205800000000001e-06, + "loss": 1.2550067138671874, + "step": 612200 + }, + { + "epoch": 81.64, + "grad_norm": 0.9411338567733765, + "learning_rate": 9.199133333333333e-06, + "loss": 1.249119644165039, + "step": 612300 + }, + { + "epoch": 81.65333333333334, + "grad_norm": 0.9338614344596863, + "learning_rate": 9.192466666666667e-06, + "loss": 1.2516092681884765, + "step": 612400 + }, + { + "epoch": 81.66666666666667, + "grad_norm": 0.984487771987915, + "learning_rate": 9.1858e-06, + "loss": 1.253871078491211, + "step": 612500 + }, + { + "epoch": 81.68, + "grad_norm": 0.8881129026412964, + "learning_rate": 9.179133333333333e-06, + "loss": 1.2527835845947266, + "step": 612600 + }, + { + "epoch": 81.69333333333333, + "grad_norm": 0.9168439507484436, + "learning_rate": 9.172466666666667e-06, + "loss": 1.2484764862060547, + "step": 612700 + }, + { + "epoch": 81.70666666666666, + "grad_norm": 0.8874577283859253, + "learning_rate": 9.165800000000001e-06, + "loss": 1.2515900421142578, + "step": 612800 + }, + { + "epoch": 81.72, + "grad_norm": 0.905847430229187, + "learning_rate": 9.159133333333334e-06, + "loss": 1.2533546447753907, + "step": 612900 + }, + { + "epoch": 81.73333333333333, + "grad_norm": 0.8582006096839905, + "learning_rate": 9.152466666666667e-06, + "loss": 1.2524093627929687, + "step": 613000 + }, + { + "epoch": 81.74666666666667, + "grad_norm": 0.9305291175842285, + "learning_rate": 9.1458e-06, + "loss": 1.2540251922607422, + "step": 613100 + }, + { + "epoch": 81.76, + "grad_norm": 0.9581021666526794, + "learning_rate": 9.139133333333334e-06, + "loss": 1.2542661285400392, + "step": 613200 + }, + { + "epoch": 81.77333333333333, + "grad_norm": 0.8602609634399414, + "learning_rate": 9.132533333333333e-06, + "loss": 1.250102767944336, + "step": 613300 + }, + { + "epoch": 81.78666666666666, + "grad_norm": 0.9307783842086792, + "learning_rate": 9.125866666666667e-06, + "loss": 1.25496826171875, + "step": 613400 + }, + { + "epoch": 81.8, + "grad_norm": 0.9519327282905579, + "learning_rate": 9.1192e-06, + "loss": 1.2568404388427734, + "step": 613500 + }, + { + "epoch": 81.81333333333333, + "grad_norm": 0.9594677090644836, + "learning_rate": 9.112533333333335e-06, + "loss": 1.2542708587646485, + "step": 613600 + }, + { + "epoch": 81.82666666666667, + "grad_norm": 0.9347852468490601, + "learning_rate": 9.105866666666667e-06, + "loss": 1.2561700439453125, + "step": 613700 + }, + { + "epoch": 81.84, + "grad_norm": 0.9031361937522888, + "learning_rate": 9.099200000000001e-06, + "loss": 1.250828399658203, + "step": 613800 + }, + { + "epoch": 81.85333333333334, + "grad_norm": 0.9028738141059875, + "learning_rate": 9.092533333333333e-06, + "loss": 1.2556254577636718, + "step": 613900 + }, + { + "epoch": 81.86666666666666, + "grad_norm": 0.8947298526763916, + "learning_rate": 9.085866666666667e-06, + "loss": 1.2577997589111327, + "step": 614000 + }, + { + "epoch": 81.88, + "grad_norm": 0.9742893576622009, + "learning_rate": 9.0792e-06, + "loss": 1.2556832122802735, + "step": 614100 + }, + { + "epoch": 81.89333333333333, + "grad_norm": 0.9164856672286987, + "learning_rate": 9.072533333333335e-06, + "loss": 1.2557017517089843, + "step": 614200 + }, + { + "epoch": 81.90666666666667, + "grad_norm": 0.915895938873291, + "learning_rate": 9.065866666666667e-06, + "loss": 1.2530562591552734, + "step": 614300 + }, + { + "epoch": 81.92, + "grad_norm": 0.8925107717514038, + "learning_rate": 9.059200000000001e-06, + "loss": 1.26068115234375, + "step": 614400 + }, + { + "epoch": 81.93333333333334, + "grad_norm": 0.8939207196235657, + "learning_rate": 9.052533333333334e-06, + "loss": 1.2526610565185547, + "step": 614500 + }, + { + "epoch": 81.94666666666667, + "grad_norm": 0.8300981521606445, + "learning_rate": 9.045866666666668e-06, + "loss": 1.2572245025634765, + "step": 614600 + }, + { + "epoch": 81.96, + "grad_norm": 0.8693681955337524, + "learning_rate": 9.0392e-06, + "loss": 1.2559279632568359, + "step": 614700 + }, + { + "epoch": 81.97333333333333, + "grad_norm": 0.8896282315254211, + "learning_rate": 9.032533333333334e-06, + "loss": 1.2625821685791017, + "step": 614800 + }, + { + "epoch": 81.98666666666666, + "grad_norm": 0.8908337354660034, + "learning_rate": 9.025866666666668e-06, + "loss": 1.2559323120117187, + "step": 614900 + }, + { + "epoch": 82.0, + "grad_norm": 0.9439942836761475, + "learning_rate": 9.0192e-06, + "loss": 1.2595707702636718, + "step": 615000 + }, + { + "epoch": 82.01333333333334, + "grad_norm": 0.9085642099380493, + "learning_rate": 9.012533333333334e-06, + "loss": 1.234801025390625, + "step": 615100 + }, + { + "epoch": 82.02666666666667, + "grad_norm": 0.86478590965271, + "learning_rate": 9.005866666666666e-06, + "loss": 1.2301112365722657, + "step": 615200 + }, + { + "epoch": 82.04, + "grad_norm": 0.8402786254882812, + "learning_rate": 8.999266666666667e-06, + "loss": 1.2340145111083984, + "step": 615300 + }, + { + "epoch": 82.05333333333333, + "grad_norm": 0.9000765681266785, + "learning_rate": 8.992600000000001e-06, + "loss": 1.234165496826172, + "step": 615400 + }, + { + "epoch": 82.06666666666666, + "grad_norm": 0.8875935673713684, + "learning_rate": 8.985933333333333e-06, + "loss": 1.2338397216796875, + "step": 615500 + }, + { + "epoch": 82.08, + "grad_norm": 0.8624498248100281, + "learning_rate": 8.979266666666667e-06, + "loss": 1.2306690216064453, + "step": 615600 + }, + { + "epoch": 82.09333333333333, + "grad_norm": 0.8691593408584595, + "learning_rate": 8.972600000000001e-06, + "loss": 1.2350591278076173, + "step": 615700 + }, + { + "epoch": 82.10666666666667, + "grad_norm": 0.9431705474853516, + "learning_rate": 8.965933333333333e-06, + "loss": 1.2306092071533203, + "step": 615800 + }, + { + "epoch": 82.12, + "grad_norm": 0.8544008135795593, + "learning_rate": 8.959266666666667e-06, + "loss": 1.2384963989257813, + "step": 615900 + }, + { + "epoch": 82.13333333333334, + "grad_norm": 0.9354866147041321, + "learning_rate": 8.9526e-06, + "loss": 1.2398062896728517, + "step": 616000 + }, + { + "epoch": 82.14666666666666, + "grad_norm": 0.8743143677711487, + "learning_rate": 8.945933333333334e-06, + "loss": 1.2414376068115234, + "step": 616100 + }, + { + "epoch": 82.16, + "grad_norm": 0.8810702562332153, + "learning_rate": 8.939266666666666e-06, + "loss": 1.2354586029052734, + "step": 616200 + }, + { + "epoch": 82.17333333333333, + "grad_norm": 0.8954576849937439, + "learning_rate": 8.932600000000002e-06, + "loss": 1.2339041137695312, + "step": 616300 + }, + { + "epoch": 82.18666666666667, + "grad_norm": 0.9300366640090942, + "learning_rate": 8.925933333333334e-06, + "loss": 1.2386576843261718, + "step": 616400 + }, + { + "epoch": 82.2, + "grad_norm": 0.9427330493927002, + "learning_rate": 8.919266666666668e-06, + "loss": 1.2405809020996095, + "step": 616500 + }, + { + "epoch": 82.21333333333334, + "grad_norm": 0.9200528264045715, + "learning_rate": 8.9126e-06, + "loss": 1.2397397613525392, + "step": 616600 + }, + { + "epoch": 82.22666666666667, + "grad_norm": 0.9477024078369141, + "learning_rate": 8.905933333333334e-06, + "loss": 1.2361534118652344, + "step": 616700 + }, + { + "epoch": 82.24, + "grad_norm": 0.860318660736084, + "learning_rate": 8.899266666666666e-06, + "loss": 1.24165771484375, + "step": 616800 + }, + { + "epoch": 82.25333333333333, + "grad_norm": 0.8930957317352295, + "learning_rate": 8.8926e-06, + "loss": 1.240411376953125, + "step": 616900 + }, + { + "epoch": 82.26666666666667, + "grad_norm": 0.8713201284408569, + "learning_rate": 8.885933333333334e-06, + "loss": 1.2389635467529296, + "step": 617000 + }, + { + "epoch": 82.28, + "grad_norm": 0.8821374773979187, + "learning_rate": 8.879266666666668e-06, + "loss": 1.240754165649414, + "step": 617100 + }, + { + "epoch": 82.29333333333334, + "grad_norm": 0.8835667967796326, + "learning_rate": 8.8726e-06, + "loss": 1.2408916473388671, + "step": 617200 + }, + { + "epoch": 82.30666666666667, + "grad_norm": 0.878227949142456, + "learning_rate": 8.866000000000001e-06, + "loss": 1.239891357421875, + "step": 617300 + }, + { + "epoch": 82.32, + "grad_norm": 0.9137305021286011, + "learning_rate": 8.859333333333333e-06, + "loss": 1.2434058380126953, + "step": 617400 + }, + { + "epoch": 82.33333333333333, + "grad_norm": 0.9233280420303345, + "learning_rate": 8.852666666666667e-06, + "loss": 1.240920867919922, + "step": 617500 + }, + { + "epoch": 82.34666666666666, + "grad_norm": 0.9034508466720581, + "learning_rate": 8.846e-06, + "loss": 1.2437106323242189, + "step": 617600 + }, + { + "epoch": 82.36, + "grad_norm": 0.9077682495117188, + "learning_rate": 8.839333333333334e-06, + "loss": 1.2439752960205077, + "step": 617700 + }, + { + "epoch": 82.37333333333333, + "grad_norm": 0.9524446725845337, + "learning_rate": 8.832666666666668e-06, + "loss": 1.2423672485351562, + "step": 617800 + }, + { + "epoch": 82.38666666666667, + "grad_norm": 0.8799779415130615, + "learning_rate": 8.826000000000002e-06, + "loss": 1.2455381011962892, + "step": 617900 + }, + { + "epoch": 82.4, + "grad_norm": 0.9285022616386414, + "learning_rate": 8.819333333333334e-06, + "loss": 1.2448921966552735, + "step": 618000 + }, + { + "epoch": 82.41333333333333, + "grad_norm": 0.9084222912788391, + "learning_rate": 8.812666666666668e-06, + "loss": 1.2376979064941407, + "step": 618100 + }, + { + "epoch": 82.42666666666666, + "grad_norm": 0.8648841381072998, + "learning_rate": 8.806e-06, + "loss": 1.2406005859375, + "step": 618200 + }, + { + "epoch": 82.44, + "grad_norm": 0.9781367778778076, + "learning_rate": 8.799333333333334e-06, + "loss": 1.243892593383789, + "step": 618300 + }, + { + "epoch": 82.45333333333333, + "grad_norm": 0.8798574805259705, + "learning_rate": 8.792666666666666e-06, + "loss": 1.2451769256591796, + "step": 618400 + }, + { + "epoch": 82.46666666666667, + "grad_norm": 0.9308679103851318, + "learning_rate": 8.786e-06, + "loss": 1.2392099761962891, + "step": 618500 + }, + { + "epoch": 82.48, + "grad_norm": 0.9308741688728333, + "learning_rate": 8.779333333333334e-06, + "loss": 1.2419159698486328, + "step": 618600 + }, + { + "epoch": 82.49333333333334, + "grad_norm": 0.9221790432929993, + "learning_rate": 8.772666666666666e-06, + "loss": 1.2452362060546875, + "step": 618700 + }, + { + "epoch": 82.50666666666666, + "grad_norm": 0.8636195063591003, + "learning_rate": 8.766e-06, + "loss": 1.2443165588378906, + "step": 618800 + }, + { + "epoch": 82.52, + "grad_norm": 0.8592165112495422, + "learning_rate": 8.759333333333333e-06, + "loss": 1.2440619659423828, + "step": 618900 + }, + { + "epoch": 82.53333333333333, + "grad_norm": 0.9434940814971924, + "learning_rate": 8.752666666666667e-06, + "loss": 1.2442166900634766, + "step": 619000 + }, + { + "epoch": 82.54666666666667, + "grad_norm": 0.9361331462860107, + "learning_rate": 8.746e-06, + "loss": 1.247313461303711, + "step": 619100 + }, + { + "epoch": 82.56, + "grad_norm": 0.9202352166175842, + "learning_rate": 8.739333333333335e-06, + "loss": 1.240821304321289, + "step": 619200 + }, + { + "epoch": 82.57333333333334, + "grad_norm": 0.9500649571418762, + "learning_rate": 8.732733333333334e-06, + "loss": 1.2460474395751953, + "step": 619300 + }, + { + "epoch": 82.58666666666667, + "grad_norm": 0.9258289933204651, + "learning_rate": 8.726066666666668e-06, + "loss": 1.2472043609619141, + "step": 619400 + }, + { + "epoch": 82.6, + "grad_norm": 0.9140313267707825, + "learning_rate": 8.7194e-06, + "loss": 1.2448184204101562, + "step": 619500 + }, + { + "epoch": 82.61333333333333, + "grad_norm": 0.9324513077735901, + "learning_rate": 8.712733333333334e-06, + "loss": 1.2494194030761718, + "step": 619600 + }, + { + "epoch": 82.62666666666667, + "grad_norm": 0.9109006524085999, + "learning_rate": 8.706066666666666e-06, + "loss": 1.247740707397461, + "step": 619700 + }, + { + "epoch": 82.64, + "grad_norm": 0.9407756328582764, + "learning_rate": 8.6994e-06, + "loss": 1.2482675170898438, + "step": 619800 + }, + { + "epoch": 82.65333333333334, + "grad_norm": 0.9115416407585144, + "learning_rate": 8.692733333333334e-06, + "loss": 1.2482878112792968, + "step": 619900 + }, + { + "epoch": 82.66666666666667, + "grad_norm": 0.9408479928970337, + "learning_rate": 8.686066666666668e-06, + "loss": 1.2521448516845703, + "step": 620000 + }, + { + "epoch": 82.68, + "grad_norm": 0.8845256567001343, + "learning_rate": 8.6794e-06, + "loss": 1.2493247985839844, + "step": 620100 + }, + { + "epoch": 82.69333333333333, + "grad_norm": 0.8882789015769958, + "learning_rate": 8.672733333333334e-06, + "loss": 1.2499993896484376, + "step": 620200 + }, + { + "epoch": 82.70666666666666, + "grad_norm": 0.8768792152404785, + "learning_rate": 8.666066666666667e-06, + "loss": 1.2518183135986327, + "step": 620300 + }, + { + "epoch": 82.72, + "grad_norm": 0.9239054322242737, + "learning_rate": 8.6594e-06, + "loss": 1.2470800018310546, + "step": 620400 + }, + { + "epoch": 82.73333333333333, + "grad_norm": 0.9029996991157532, + "learning_rate": 8.652733333333333e-06, + "loss": 1.250694808959961, + "step": 620500 + }, + { + "epoch": 82.74666666666667, + "grad_norm": 0.8475874662399292, + "learning_rate": 8.646066666666668e-06, + "loss": 1.2475482940673828, + "step": 620600 + }, + { + "epoch": 82.76, + "grad_norm": 0.9280046820640564, + "learning_rate": 8.6394e-06, + "loss": 1.247471923828125, + "step": 620700 + }, + { + "epoch": 82.77333333333333, + "grad_norm": 0.8895213603973389, + "learning_rate": 8.632733333333335e-06, + "loss": 1.249181594848633, + "step": 620800 + }, + { + "epoch": 82.78666666666666, + "grad_norm": 0.9662532806396484, + "learning_rate": 8.626066666666667e-06, + "loss": 1.2477493286132812, + "step": 620900 + }, + { + "epoch": 82.8, + "grad_norm": 0.9350543022155762, + "learning_rate": 8.619400000000001e-06, + "loss": 1.2516327667236329, + "step": 621000 + }, + { + "epoch": 82.81333333333333, + "grad_norm": 0.9173975586891174, + "learning_rate": 8.612733333333333e-06, + "loss": 1.2521589660644532, + "step": 621100 + }, + { + "epoch": 82.82666666666667, + "grad_norm": 0.9485138654708862, + "learning_rate": 8.606066666666667e-06, + "loss": 1.2502504730224608, + "step": 621200 + }, + { + "epoch": 82.84, + "grad_norm": 0.9641520977020264, + "learning_rate": 8.599466666666666e-06, + "loss": 1.2493783569335937, + "step": 621300 + }, + { + "epoch": 82.85333333333334, + "grad_norm": 0.9128257036209106, + "learning_rate": 8.5928e-06, + "loss": 1.2476416778564454, + "step": 621400 + }, + { + "epoch": 82.86666666666666, + "grad_norm": 0.926476001739502, + "learning_rate": 8.586133333333334e-06, + "loss": 1.2498722076416016, + "step": 621500 + }, + { + "epoch": 82.88, + "grad_norm": 0.8476603031158447, + "learning_rate": 8.579466666666668e-06, + "loss": 1.2490251922607423, + "step": 621600 + }, + { + "epoch": 82.89333333333333, + "grad_norm": 0.9261386394500732, + "learning_rate": 8.5728e-06, + "loss": 1.2508720397949218, + "step": 621700 + }, + { + "epoch": 82.90666666666667, + "grad_norm": 0.9281954765319824, + "learning_rate": 8.566133333333334e-06, + "loss": 1.2504344177246094, + "step": 621800 + }, + { + "epoch": 82.92, + "grad_norm": 0.9179771542549133, + "learning_rate": 8.559466666666667e-06, + "loss": 1.2538750457763672, + "step": 621900 + }, + { + "epoch": 82.93333333333334, + "grad_norm": 0.931770920753479, + "learning_rate": 8.5528e-06, + "loss": 1.251114959716797, + "step": 622000 + }, + { + "epoch": 82.94666666666667, + "grad_norm": 0.9326673150062561, + "learning_rate": 8.546133333333334e-06, + "loss": 1.2516678619384765, + "step": 622100 + }, + { + "epoch": 82.96, + "grad_norm": 0.9263719320297241, + "learning_rate": 8.539466666666667e-06, + "loss": 1.2495791625976562, + "step": 622200 + }, + { + "epoch": 82.97333333333333, + "grad_norm": 0.902750551700592, + "learning_rate": 8.5328e-06, + "loss": 1.2547737884521484, + "step": 622300 + }, + { + "epoch": 82.98666666666666, + "grad_norm": 0.9616686105728149, + "learning_rate": 8.526133333333333e-06, + "loss": 1.2510566711425781, + "step": 622400 + }, + { + "epoch": 83.0, + "grad_norm": 0.9818671941757202, + "learning_rate": 8.519466666666667e-06, + "loss": 1.255392837524414, + "step": 622500 + }, + { + "epoch": 83.01333333333334, + "grad_norm": 0.8741009831428528, + "learning_rate": 8.5128e-06, + "loss": 1.2268238830566407, + "step": 622600 + }, + { + "epoch": 83.02666666666667, + "grad_norm": 0.8773664236068726, + "learning_rate": 8.506133333333333e-06, + "loss": 1.2288787078857422, + "step": 622700 + }, + { + "epoch": 83.04, + "grad_norm": 0.896050214767456, + "learning_rate": 8.499466666666667e-06, + "loss": 1.2286920166015625, + "step": 622800 + }, + { + "epoch": 83.05333333333333, + "grad_norm": 0.8688726425170898, + "learning_rate": 8.492800000000001e-06, + "loss": 1.2317049407958984, + "step": 622900 + }, + { + "epoch": 83.06666666666666, + "grad_norm": 0.8627607226371765, + "learning_rate": 8.486133333333333e-06, + "loss": 1.2319934844970704, + "step": 623000 + }, + { + "epoch": 83.08, + "grad_norm": 0.9010234475135803, + "learning_rate": 8.479466666666667e-06, + "loss": 1.227967758178711, + "step": 623100 + }, + { + "epoch": 83.09333333333333, + "grad_norm": 0.9134891629219055, + "learning_rate": 8.4728e-06, + "loss": 1.2302108001708985, + "step": 623200 + }, + { + "epoch": 83.10666666666667, + "grad_norm": 0.8885038495063782, + "learning_rate": 8.466133333333334e-06, + "loss": 1.2306111145019532, + "step": 623300 + }, + { + "epoch": 83.12, + "grad_norm": 0.8855066299438477, + "learning_rate": 8.459533333333333e-06, + "loss": 1.2339430236816407, + "step": 623400 + }, + { + "epoch": 83.13333333333334, + "grad_norm": 0.8828930258750916, + "learning_rate": 8.452866666666667e-06, + "loss": 1.2353226470947265, + "step": 623500 + }, + { + "epoch": 83.14666666666666, + "grad_norm": 0.875651478767395, + "learning_rate": 8.4462e-06, + "loss": 1.2287565612792968, + "step": 623600 + }, + { + "epoch": 83.16, + "grad_norm": 0.8633849024772644, + "learning_rate": 8.439533333333335e-06, + "loss": 1.2340455627441407, + "step": 623700 + }, + { + "epoch": 83.17333333333333, + "grad_norm": 0.8406652212142944, + "learning_rate": 8.432866666666667e-06, + "loss": 1.2317752838134766, + "step": 623800 + }, + { + "epoch": 83.18666666666667, + "grad_norm": 0.8680077791213989, + "learning_rate": 8.4262e-06, + "loss": 1.2286119079589843, + "step": 623900 + }, + { + "epoch": 83.2, + "grad_norm": 0.8827568888664246, + "learning_rate": 8.419533333333333e-06, + "loss": 1.2330582427978516, + "step": 624000 + }, + { + "epoch": 83.21333333333334, + "grad_norm": 0.8410494923591614, + "learning_rate": 8.412866666666667e-06, + "loss": 1.2319648742675782, + "step": 624100 + }, + { + "epoch": 83.22666666666667, + "grad_norm": 0.945569634437561, + "learning_rate": 8.406200000000001e-06, + "loss": 1.2348339080810546, + "step": 624200 + }, + { + "epoch": 83.24, + "grad_norm": 0.9145014882087708, + "learning_rate": 8.399533333333335e-06, + "loss": 1.2309622192382812, + "step": 624300 + }, + { + "epoch": 83.25333333333333, + "grad_norm": 0.8928866982460022, + "learning_rate": 8.392866666666667e-06, + "loss": 1.2331744384765626, + "step": 624400 + }, + { + "epoch": 83.26666666666667, + "grad_norm": 0.9226345419883728, + "learning_rate": 8.386200000000001e-06, + "loss": 1.2304218292236329, + "step": 624500 + }, + { + "epoch": 83.28, + "grad_norm": 0.9208539128303528, + "learning_rate": 8.379533333333333e-06, + "loss": 1.2353579711914062, + "step": 624600 + }, + { + "epoch": 83.29333333333334, + "grad_norm": 0.8835161328315735, + "learning_rate": 8.372866666666667e-06, + "loss": 1.2308840942382813, + "step": 624700 + }, + { + "epoch": 83.30666666666667, + "grad_norm": 0.9109699130058289, + "learning_rate": 8.3662e-06, + "loss": 1.2373240661621094, + "step": 624800 + }, + { + "epoch": 83.32, + "grad_norm": 0.8914778232574463, + "learning_rate": 8.359533333333334e-06, + "loss": 1.2385607147216797, + "step": 624900 + }, + { + "epoch": 83.33333333333333, + "grad_norm": 0.9099097847938538, + "learning_rate": 8.352866666666668e-06, + "loss": 1.2351886749267578, + "step": 625000 + }, + { + "epoch": 83.34666666666666, + "grad_norm": 0.9224347472190857, + "learning_rate": 8.3462e-06, + "loss": 1.239847412109375, + "step": 625100 + }, + { + "epoch": 83.36, + "grad_norm": 0.8941978216171265, + "learning_rate": 8.339533333333334e-06, + "loss": 1.2408080291748047, + "step": 625200 + }, + { + "epoch": 83.37333333333333, + "grad_norm": 0.9112878441810608, + "learning_rate": 8.332866666666666e-06, + "loss": 1.2382213592529296, + "step": 625300 + }, + { + "epoch": 83.38666666666667, + "grad_norm": 0.8820027112960815, + "learning_rate": 8.326266666666667e-06, + "loss": 1.2374537658691407, + "step": 625400 + }, + { + "epoch": 83.4, + "grad_norm": 0.9008810520172119, + "learning_rate": 8.3196e-06, + "loss": 1.2357157897949218, + "step": 625500 + }, + { + "epoch": 83.41333333333333, + "grad_norm": 0.8950514793395996, + "learning_rate": 8.312933333333333e-06, + "loss": 1.2395166778564453, + "step": 625600 + }, + { + "epoch": 83.42666666666666, + "grad_norm": 0.877662718296051, + "learning_rate": 8.306266666666667e-06, + "loss": 1.2368050384521485, + "step": 625700 + }, + { + "epoch": 83.44, + "grad_norm": 0.8988947868347168, + "learning_rate": 8.299600000000001e-06, + "loss": 1.2367508697509766, + "step": 625800 + }, + { + "epoch": 83.45333333333333, + "grad_norm": 0.8748953342437744, + "learning_rate": 8.292933333333333e-06, + "loss": 1.2388724517822265, + "step": 625900 + }, + { + "epoch": 83.46666666666667, + "grad_norm": 0.937595009803772, + "learning_rate": 8.286266666666667e-06, + "loss": 1.2392095947265624, + "step": 626000 + }, + { + "epoch": 83.48, + "grad_norm": 0.9471210241317749, + "learning_rate": 8.2796e-06, + "loss": 1.236856460571289, + "step": 626100 + }, + { + "epoch": 83.49333333333334, + "grad_norm": 0.8821884393692017, + "learning_rate": 8.272933333333333e-06, + "loss": 1.239179916381836, + "step": 626200 + }, + { + "epoch": 83.50666666666666, + "grad_norm": 0.919651210308075, + "learning_rate": 8.266266666666667e-06, + "loss": 1.2402806854248047, + "step": 626300 + }, + { + "epoch": 83.52, + "grad_norm": 0.9665860533714294, + "learning_rate": 8.259600000000001e-06, + "loss": 1.2379183197021484, + "step": 626400 + }, + { + "epoch": 83.53333333333333, + "grad_norm": 0.8893381357192993, + "learning_rate": 8.252933333333334e-06, + "loss": 1.2422509765625, + "step": 626500 + }, + { + "epoch": 83.54666666666667, + "grad_norm": 0.9082131385803223, + "learning_rate": 8.246266666666668e-06, + "loss": 1.2425847625732422, + "step": 626600 + }, + { + "epoch": 83.56, + "grad_norm": 0.9207640290260315, + "learning_rate": 8.2396e-06, + "loss": 1.2419153594970702, + "step": 626700 + }, + { + "epoch": 83.57333333333334, + "grad_norm": 0.8709291219711304, + "learning_rate": 8.232933333333334e-06, + "loss": 1.2439161682128905, + "step": 626800 + }, + { + "epoch": 83.58666666666667, + "grad_norm": 0.945469856262207, + "learning_rate": 8.226266666666666e-06, + "loss": 1.2438876342773437, + "step": 626900 + }, + { + "epoch": 83.6, + "grad_norm": 0.8752225041389465, + "learning_rate": 8.219600000000002e-06, + "loss": 1.2426612854003907, + "step": 627000 + }, + { + "epoch": 83.61333333333333, + "grad_norm": 0.9232311844825745, + "learning_rate": 8.212933333333334e-06, + "loss": 1.2439415740966797, + "step": 627100 + }, + { + "epoch": 83.62666666666667, + "grad_norm": 0.9110270142555237, + "learning_rate": 8.206266666666668e-06, + "loss": 1.2405470275878907, + "step": 627200 + }, + { + "epoch": 83.64, + "grad_norm": 0.8702139854431152, + "learning_rate": 8.1996e-06, + "loss": 1.2478545379638672, + "step": 627300 + }, + { + "epoch": 83.65333333333334, + "grad_norm": 0.9222458004951477, + "learning_rate": 8.193000000000001e-06, + "loss": 1.2415824127197266, + "step": 627400 + }, + { + "epoch": 83.66666666666667, + "grad_norm": 0.8984431624412537, + "learning_rate": 8.186333333333333e-06, + "loss": 1.2407730102539063, + "step": 627500 + }, + { + "epoch": 83.68, + "grad_norm": 0.9315071702003479, + "learning_rate": 8.179666666666667e-06, + "loss": 1.240757598876953, + "step": 627600 + }, + { + "epoch": 83.69333333333333, + "grad_norm": 0.8998625874519348, + "learning_rate": 8.173e-06, + "loss": 1.2405057525634766, + "step": 627700 + }, + { + "epoch": 83.70666666666666, + "grad_norm": 0.9560902714729309, + "learning_rate": 8.166333333333333e-06, + "loss": 1.2425275421142579, + "step": 627800 + }, + { + "epoch": 83.72, + "grad_norm": 0.9313591718673706, + "learning_rate": 8.159666666666667e-06, + "loss": 1.2417723083496093, + "step": 627900 + }, + { + "epoch": 83.73333333333333, + "grad_norm": 0.8887977600097656, + "learning_rate": 8.153000000000001e-06, + "loss": 1.2461432647705077, + "step": 628000 + }, + { + "epoch": 83.74666666666667, + "grad_norm": 0.8665767908096313, + "learning_rate": 8.146333333333334e-06, + "loss": 1.2395530700683595, + "step": 628100 + }, + { + "epoch": 83.76, + "grad_norm": 0.8512284755706787, + "learning_rate": 8.139666666666668e-06, + "loss": 1.2442801666259766, + "step": 628200 + }, + { + "epoch": 83.77333333333333, + "grad_norm": 0.9400811791419983, + "learning_rate": 8.133e-06, + "loss": 1.244218521118164, + "step": 628300 + }, + { + "epoch": 83.78666666666666, + "grad_norm": 0.9075484275817871, + "learning_rate": 8.126333333333334e-06, + "loss": 1.245132827758789, + "step": 628400 + }, + { + "epoch": 83.8, + "grad_norm": 0.9220568537712097, + "learning_rate": 8.119666666666668e-06, + "loss": 1.2457878875732422, + "step": 628500 + }, + { + "epoch": 83.81333333333333, + "grad_norm": 0.8934618830680847, + "learning_rate": 8.113e-06, + "loss": 1.2488687896728516, + "step": 628600 + }, + { + "epoch": 83.82666666666667, + "grad_norm": 0.9469342231750488, + "learning_rate": 8.106333333333334e-06, + "loss": 1.2456256103515626, + "step": 628700 + }, + { + "epoch": 83.84, + "grad_norm": 0.8682982921600342, + "learning_rate": 8.099666666666666e-06, + "loss": 1.2437528991699218, + "step": 628800 + }, + { + "epoch": 83.85333333333334, + "grad_norm": 0.9430522918701172, + "learning_rate": 8.093e-06, + "loss": 1.2466936492919922, + "step": 628900 + }, + { + "epoch": 83.86666666666666, + "grad_norm": 0.9409758448600769, + "learning_rate": 8.086333333333333e-06, + "loss": 1.244860610961914, + "step": 629000 + }, + { + "epoch": 83.88, + "grad_norm": 0.958746612071991, + "learning_rate": 8.079666666666667e-06, + "loss": 1.246984634399414, + "step": 629100 + }, + { + "epoch": 83.89333333333333, + "grad_norm": 0.8642282485961914, + "learning_rate": 8.073e-06, + "loss": 1.2486931610107421, + "step": 629200 + }, + { + "epoch": 83.90666666666667, + "grad_norm": 0.9085518717765808, + "learning_rate": 8.066333333333334e-06, + "loss": 1.2516922760009765, + "step": 629300 + }, + { + "epoch": 83.92, + "grad_norm": 0.8967764973640442, + "learning_rate": 8.059733333333335e-06, + "loss": 1.2464397430419922, + "step": 629400 + }, + { + "epoch": 83.93333333333334, + "grad_norm": 0.9250491261482239, + "learning_rate": 8.053066666666667e-06, + "loss": 1.2472023010253905, + "step": 629500 + }, + { + "epoch": 83.94666666666667, + "grad_norm": 0.893845796585083, + "learning_rate": 8.0464e-06, + "loss": 1.2489615631103517, + "step": 629600 + }, + { + "epoch": 83.96, + "grad_norm": 0.907304048538208, + "learning_rate": 8.039733333333334e-06, + "loss": 1.2466935729980468, + "step": 629700 + }, + { + "epoch": 83.97333333333333, + "grad_norm": 0.8819485902786255, + "learning_rate": 8.033066666666666e-06, + "loss": 1.244398651123047, + "step": 629800 + }, + { + "epoch": 83.98666666666666, + "grad_norm": 0.9273881912231445, + "learning_rate": 8.0264e-06, + "loss": 1.2486519622802734, + "step": 629900 + }, + { + "epoch": 84.0, + "grad_norm": 0.879425585269928, + "learning_rate": 8.019733333333334e-06, + "loss": 1.2535282897949218, + "step": 630000 + }, + { + "epoch": 84.01333333333334, + "grad_norm": 0.8982846140861511, + "learning_rate": 8.013066666666668e-06, + "loss": 1.2259478759765625, + "step": 630100 + }, + { + "epoch": 84.02666666666667, + "grad_norm": 0.9428343176841736, + "learning_rate": 8.0064e-06, + "loss": 1.228878936767578, + "step": 630200 + }, + { + "epoch": 84.04, + "grad_norm": 0.9072933197021484, + "learning_rate": 7.999733333333334e-06, + "loss": 1.223412399291992, + "step": 630300 + }, + { + "epoch": 84.05333333333333, + "grad_norm": 0.9243832230567932, + "learning_rate": 7.993066666666666e-06, + "loss": 1.224007797241211, + "step": 630400 + }, + { + "epoch": 84.06666666666666, + "grad_norm": 0.8180492520332336, + "learning_rate": 7.9864e-06, + "loss": 1.2259696960449218, + "step": 630500 + }, + { + "epoch": 84.08, + "grad_norm": 0.888479471206665, + "learning_rate": 7.979733333333334e-06, + "loss": 1.2236656951904297, + "step": 630600 + }, + { + "epoch": 84.09333333333333, + "grad_norm": 0.9106174111366272, + "learning_rate": 7.973066666666668e-06, + "loss": 1.2281214904785156, + "step": 630700 + }, + { + "epoch": 84.10666666666667, + "grad_norm": 0.9094051122665405, + "learning_rate": 7.9664e-06, + "loss": 1.2281082916259765, + "step": 630800 + }, + { + "epoch": 84.12, + "grad_norm": 0.9189176559448242, + "learning_rate": 7.959733333333334e-06, + "loss": 1.2266500091552734, + "step": 630900 + }, + { + "epoch": 84.13333333333334, + "grad_norm": 0.8246629238128662, + "learning_rate": 7.953066666666667e-06, + "loss": 1.2251168823242187, + "step": 631000 + }, + { + "epoch": 84.14666666666666, + "grad_norm": 0.826525866985321, + "learning_rate": 7.9464e-06, + "loss": 1.2267461395263672, + "step": 631100 + }, + { + "epoch": 84.16, + "grad_norm": 0.9305570721626282, + "learning_rate": 7.939733333333333e-06, + "loss": 1.2317483520507813, + "step": 631200 + }, + { + "epoch": 84.17333333333333, + "grad_norm": 0.877616822719574, + "learning_rate": 7.933066666666667e-06, + "loss": 1.2281706237792969, + "step": 631300 + }, + { + "epoch": 84.18666666666667, + "grad_norm": 0.9188335537910461, + "learning_rate": 7.926466666666666e-06, + "loss": 1.2292250061035157, + "step": 631400 + }, + { + "epoch": 84.2, + "grad_norm": 0.9196408987045288, + "learning_rate": 7.919800000000002e-06, + "loss": 1.2331906127929688, + "step": 631500 + }, + { + "epoch": 84.21333333333334, + "grad_norm": 0.9125308990478516, + "learning_rate": 7.913133333333334e-06, + "loss": 1.2301849365234374, + "step": 631600 + }, + { + "epoch": 84.22666666666667, + "grad_norm": 0.8713774681091309, + "learning_rate": 7.906466666666668e-06, + "loss": 1.230985107421875, + "step": 631700 + }, + { + "epoch": 84.24, + "grad_norm": 0.9613950848579407, + "learning_rate": 7.8998e-06, + "loss": 1.2276271057128907, + "step": 631800 + }, + { + "epoch": 84.25333333333333, + "grad_norm": 0.8837341666221619, + "learning_rate": 7.893133333333334e-06, + "loss": 1.2295457458496093, + "step": 631900 + }, + { + "epoch": 84.26666666666667, + "grad_norm": 0.8872280120849609, + "learning_rate": 7.886466666666666e-06, + "loss": 1.2273683166503906, + "step": 632000 + }, + { + "epoch": 84.28, + "grad_norm": 0.8547608852386475, + "learning_rate": 7.8798e-06, + "loss": 1.2305823516845704, + "step": 632100 + }, + { + "epoch": 84.29333333333334, + "grad_norm": 0.9107147455215454, + "learning_rate": 7.873133333333334e-06, + "loss": 1.2315924072265625, + "step": 632200 + }, + { + "epoch": 84.30666666666667, + "grad_norm": 0.8627474904060364, + "learning_rate": 7.866466666666667e-06, + "loss": 1.230730972290039, + "step": 632300 + }, + { + "epoch": 84.32, + "grad_norm": 0.9304380416870117, + "learning_rate": 7.8598e-06, + "loss": 1.2302085876464843, + "step": 632400 + }, + { + "epoch": 84.33333333333333, + "grad_norm": 0.8998819589614868, + "learning_rate": 7.853133333333333e-06, + "loss": 1.2364775085449218, + "step": 632500 + }, + { + "epoch": 84.34666666666666, + "grad_norm": 0.8804898858070374, + "learning_rate": 7.846466666666667e-06, + "loss": 1.2302351379394532, + "step": 632600 + }, + { + "epoch": 84.36, + "grad_norm": 0.8894650936126709, + "learning_rate": 7.8398e-06, + "loss": 1.2332183074951173, + "step": 632700 + }, + { + "epoch": 84.37333333333333, + "grad_norm": 0.8644715547561646, + "learning_rate": 7.833133333333335e-06, + "loss": 1.2344248962402344, + "step": 632800 + }, + { + "epoch": 84.38666666666667, + "grad_norm": 0.9465084671974182, + "learning_rate": 7.826466666666667e-06, + "loss": 1.2316624450683593, + "step": 632900 + }, + { + "epoch": 84.4, + "grad_norm": 0.9370139241218567, + "learning_rate": 7.819800000000001e-06, + "loss": 1.2370130157470702, + "step": 633000 + }, + { + "epoch": 84.41333333333333, + "grad_norm": 0.888559877872467, + "learning_rate": 7.813133333333333e-06, + "loss": 1.2325920867919922, + "step": 633100 + }, + { + "epoch": 84.42666666666666, + "grad_norm": 0.8683785200119019, + "learning_rate": 7.806466666666667e-06, + "loss": 1.229187240600586, + "step": 633200 + }, + { + "epoch": 84.44, + "grad_norm": 0.9215974807739258, + "learning_rate": 7.7998e-06, + "loss": 1.2338642120361327, + "step": 633300 + }, + { + "epoch": 84.45333333333333, + "grad_norm": 0.9330242276191711, + "learning_rate": 7.7932e-06, + "loss": 1.234636001586914, + "step": 633400 + }, + { + "epoch": 84.46666666666667, + "grad_norm": 0.8812191486358643, + "learning_rate": 7.786533333333332e-06, + "loss": 1.233119659423828, + "step": 633500 + }, + { + "epoch": 84.48, + "grad_norm": 0.9350599646568298, + "learning_rate": 7.779866666666666e-06, + "loss": 1.2376564788818358, + "step": 633600 + }, + { + "epoch": 84.49333333333334, + "grad_norm": 0.8722426295280457, + "learning_rate": 7.7732e-06, + "loss": 1.2354527282714844, + "step": 633700 + }, + { + "epoch": 84.50666666666666, + "grad_norm": 0.9167805910110474, + "learning_rate": 7.766533333333334e-06, + "loss": 1.2361752319335937, + "step": 633800 + }, + { + "epoch": 84.52, + "grad_norm": 0.908461332321167, + "learning_rate": 7.759866666666667e-06, + "loss": 1.232997589111328, + "step": 633900 + }, + { + "epoch": 84.53333333333333, + "grad_norm": 0.9203801155090332, + "learning_rate": 7.7532e-06, + "loss": 1.2356761169433594, + "step": 634000 + }, + { + "epoch": 84.54666666666667, + "grad_norm": 0.8989818692207336, + "learning_rate": 7.746533333333333e-06, + "loss": 1.2334909057617187, + "step": 634100 + }, + { + "epoch": 84.56, + "grad_norm": 0.9835088849067688, + "learning_rate": 7.739866666666667e-06, + "loss": 1.2388640594482423, + "step": 634200 + }, + { + "epoch": 84.57333333333334, + "grad_norm": 0.8754939436912537, + "learning_rate": 7.7332e-06, + "loss": 1.241256866455078, + "step": 634300 + }, + { + "epoch": 84.58666666666667, + "grad_norm": 0.8577386736869812, + "learning_rate": 7.726533333333335e-06, + "loss": 1.2348951721191406, + "step": 634400 + }, + { + "epoch": 84.6, + "grad_norm": 0.8799518346786499, + "learning_rate": 7.719866666666667e-06, + "loss": 1.2372528839111328, + "step": 634500 + }, + { + "epoch": 84.61333333333333, + "grad_norm": 0.9047410488128662, + "learning_rate": 7.713200000000001e-06, + "loss": 1.2386643981933594, + "step": 634600 + }, + { + "epoch": 84.62666666666667, + "grad_norm": 0.9157127141952515, + "learning_rate": 7.706533333333333e-06, + "loss": 1.2385972595214845, + "step": 634700 + }, + { + "epoch": 84.64, + "grad_norm": 0.9638254046440125, + "learning_rate": 7.699866666666667e-06, + "loss": 1.236525115966797, + "step": 634800 + }, + { + "epoch": 84.65333333333334, + "grad_norm": 0.8745006322860718, + "learning_rate": 7.693200000000001e-06, + "loss": 1.237788314819336, + "step": 634900 + }, + { + "epoch": 84.66666666666667, + "grad_norm": 0.8753082752227783, + "learning_rate": 7.686533333333333e-06, + "loss": 1.2403019714355468, + "step": 635000 + }, + { + "epoch": 84.68, + "grad_norm": 0.9249312877655029, + "learning_rate": 7.679866666666667e-06, + "loss": 1.2393556976318358, + "step": 635100 + }, + { + "epoch": 84.69333333333333, + "grad_norm": 0.9037955403327942, + "learning_rate": 7.6732e-06, + "loss": 1.240056838989258, + "step": 635200 + }, + { + "epoch": 84.70666666666666, + "grad_norm": 0.8841052651405334, + "learning_rate": 7.666533333333334e-06, + "loss": 1.2407506561279298, + "step": 635300 + }, + { + "epoch": 84.72, + "grad_norm": 0.8909189701080322, + "learning_rate": 7.659933333333334e-06, + "loss": 1.2383670806884766, + "step": 635400 + }, + { + "epoch": 84.73333333333333, + "grad_norm": 0.827193021774292, + "learning_rate": 7.653266666666667e-06, + "loss": 1.2386473083496095, + "step": 635500 + }, + { + "epoch": 84.74666666666667, + "grad_norm": 0.8958622813224792, + "learning_rate": 7.6466e-06, + "loss": 1.2380664825439454, + "step": 635600 + }, + { + "epoch": 84.76, + "grad_norm": 0.9114907383918762, + "learning_rate": 7.639933333333333e-06, + "loss": 1.240849151611328, + "step": 635700 + }, + { + "epoch": 84.77333333333333, + "grad_norm": 0.907952070236206, + "learning_rate": 7.633266666666667e-06, + "loss": 1.2389560699462892, + "step": 635800 + }, + { + "epoch": 84.78666666666666, + "grad_norm": 0.8953930735588074, + "learning_rate": 7.626600000000001e-06, + "loss": 1.2392295074462891, + "step": 635900 + }, + { + "epoch": 84.8, + "grad_norm": 0.8722439408302307, + "learning_rate": 7.619933333333333e-06, + "loss": 1.2366736602783204, + "step": 636000 + }, + { + "epoch": 84.81333333333333, + "grad_norm": 0.9456676244735718, + "learning_rate": 7.613266666666667e-06, + "loss": 1.237574005126953, + "step": 636100 + }, + { + "epoch": 84.82666666666667, + "grad_norm": 0.919913113117218, + "learning_rate": 7.6066e-06, + "loss": 1.2442679595947266, + "step": 636200 + }, + { + "epoch": 84.84, + "grad_norm": 0.9416049718856812, + "learning_rate": 7.599933333333334e-06, + "loss": 1.243212890625, + "step": 636300 + }, + { + "epoch": 84.85333333333334, + "grad_norm": 0.9268980026245117, + "learning_rate": 7.593266666666666e-06, + "loss": 1.2382852172851562, + "step": 636400 + }, + { + "epoch": 84.86666666666666, + "grad_norm": 0.8669841885566711, + "learning_rate": 7.5866e-06, + "loss": 1.240669708251953, + "step": 636500 + }, + { + "epoch": 84.88, + "grad_norm": 0.9298033714294434, + "learning_rate": 7.5799333333333335e-06, + "loss": 1.2412749481201173, + "step": 636600 + }, + { + "epoch": 84.89333333333333, + "grad_norm": 0.962435245513916, + "learning_rate": 7.573266666666667e-06, + "loss": 1.2403402709960938, + "step": 636700 + }, + { + "epoch": 84.90666666666667, + "grad_norm": 0.8809468150138855, + "learning_rate": 7.5666e-06, + "loss": 1.240942153930664, + "step": 636800 + }, + { + "epoch": 84.92, + "grad_norm": 0.8820023536682129, + "learning_rate": 7.5599333333333345e-06, + "loss": 1.2404846954345703, + "step": 636900 + }, + { + "epoch": 84.93333333333334, + "grad_norm": 0.9361487030982971, + "learning_rate": 7.553266666666667e-06, + "loss": 1.246995849609375, + "step": 637000 + }, + { + "epoch": 84.94666666666667, + "grad_norm": 0.8973338603973389, + "learning_rate": 7.546600000000001e-06, + "loss": 1.242446517944336, + "step": 637100 + }, + { + "epoch": 84.96, + "grad_norm": 0.9044018387794495, + "learning_rate": 7.539933333333334e-06, + "loss": 1.2397714233398438, + "step": 637200 + }, + { + "epoch": 84.97333333333333, + "grad_norm": 0.9448003768920898, + "learning_rate": 7.533266666666668e-06, + "loss": 1.239171905517578, + "step": 637300 + }, + { + "epoch": 84.98666666666666, + "grad_norm": 0.9056717753410339, + "learning_rate": 7.526666666666667e-06, + "loss": 1.2440061950683594, + "step": 637400 + }, + { + "epoch": 85.0, + "grad_norm": 0.9282798171043396, + "learning_rate": 7.520000000000001e-06, + "loss": 1.2430106353759767, + "step": 637500 + }, + { + "epoch": 85.01333333333334, + "grad_norm": 0.8406403660774231, + "learning_rate": 7.513333333333333e-06, + "loss": 1.2223043823242188, + "step": 637600 + }, + { + "epoch": 85.02666666666667, + "grad_norm": 0.8572675585746765, + "learning_rate": 7.506666666666667e-06, + "loss": 1.2273347473144531, + "step": 637700 + }, + { + "epoch": 85.04, + "grad_norm": 0.887302815914154, + "learning_rate": 7.5e-06, + "loss": 1.221242446899414, + "step": 637800 + }, + { + "epoch": 85.05333333333333, + "grad_norm": 0.91096431016922, + "learning_rate": 7.493333333333334e-06, + "loss": 1.2202544403076172, + "step": 637900 + }, + { + "epoch": 85.06666666666666, + "grad_norm": 0.8980180621147156, + "learning_rate": 7.486666666666666e-06, + "loss": 1.2262554931640626, + "step": 638000 + }, + { + "epoch": 85.08, + "grad_norm": 0.9790130257606506, + "learning_rate": 7.480000000000001e-06, + "loss": 1.2260646057128906, + "step": 638100 + }, + { + "epoch": 85.09333333333333, + "grad_norm": 0.9041993021965027, + "learning_rate": 7.4733333333333335e-06, + "loss": 1.2228318023681641, + "step": 638200 + }, + { + "epoch": 85.10666666666667, + "grad_norm": 0.9332461953163147, + "learning_rate": 7.4666666666666675e-06, + "loss": 1.2237569427490234, + "step": 638300 + }, + { + "epoch": 85.12, + "grad_norm": 0.8508715033531189, + "learning_rate": 7.4600000000000006e-06, + "loss": 1.22271240234375, + "step": 638400 + }, + { + "epoch": 85.13333333333334, + "grad_norm": 0.8810603618621826, + "learning_rate": 7.453333333333333e-06, + "loss": 1.2232743835449218, + "step": 638500 + }, + { + "epoch": 85.14666666666666, + "grad_norm": 0.9365109801292419, + "learning_rate": 7.446666666666667e-06, + "loss": 1.2257044982910157, + "step": 638600 + }, + { + "epoch": 85.16, + "grad_norm": 0.9457574486732483, + "learning_rate": 7.44e-06, + "loss": 1.2268252563476563, + "step": 638700 + }, + { + "epoch": 85.17333333333333, + "grad_norm": 0.9184970855712891, + "learning_rate": 7.433333333333334e-06, + "loss": 1.2216042327880858, + "step": 638800 + }, + { + "epoch": 85.18666666666667, + "grad_norm": 0.8944892883300781, + "learning_rate": 7.426666666666666e-06, + "loss": 1.2262333679199218, + "step": 638900 + }, + { + "epoch": 85.2, + "grad_norm": 0.9582709670066833, + "learning_rate": 7.420000000000001e-06, + "loss": 1.2231621551513672, + "step": 639000 + }, + { + "epoch": 85.21333333333334, + "grad_norm": 0.9123549461364746, + "learning_rate": 7.413333333333333e-06, + "loss": 1.2277581787109375, + "step": 639100 + }, + { + "epoch": 85.22666666666667, + "grad_norm": 0.8903558850288391, + "learning_rate": 7.406666666666667e-06, + "loss": 1.2252957916259766, + "step": 639200 + }, + { + "epoch": 85.24, + "grad_norm": 0.8448173999786377, + "learning_rate": 7.4e-06, + "loss": 1.224297332763672, + "step": 639300 + }, + { + "epoch": 85.25333333333333, + "grad_norm": 0.9212110638618469, + "learning_rate": 7.3934e-06, + "loss": 1.2260472869873047, + "step": 639400 + }, + { + "epoch": 85.26666666666667, + "grad_norm": 0.8959601521492004, + "learning_rate": 7.386733333333333e-06, + "loss": 1.2307054901123047, + "step": 639500 + }, + { + "epoch": 85.28, + "grad_norm": 0.8986248970031738, + "learning_rate": 7.380066666666667e-06, + "loss": 1.2230642700195313, + "step": 639600 + }, + { + "epoch": 85.29333333333334, + "grad_norm": 0.9850512146949768, + "learning_rate": 7.3733999999999996e-06, + "loss": 1.2273857879638672, + "step": 639700 + }, + { + "epoch": 85.30666666666667, + "grad_norm": 0.8248298764228821, + "learning_rate": 7.3667333333333335e-06, + "loss": 1.226371307373047, + "step": 639800 + }, + { + "epoch": 85.32, + "grad_norm": 0.9425682425498962, + "learning_rate": 7.360066666666667e-06, + "loss": 1.2281211090087891, + "step": 639900 + }, + { + "epoch": 85.33333333333333, + "grad_norm": 0.8708743453025818, + "learning_rate": 7.353400000000001e-06, + "loss": 1.225609664916992, + "step": 640000 + }, + { + "epoch": 85.34666666666666, + "grad_norm": 0.9035684466362, + "learning_rate": 7.346733333333333e-06, + "loss": 1.2235333251953124, + "step": 640100 + }, + { + "epoch": 85.36, + "grad_norm": 0.9259425401687622, + "learning_rate": 7.340066666666668e-06, + "loss": 1.23236083984375, + "step": 640200 + }, + { + "epoch": 85.37333333333333, + "grad_norm": 0.9252036213874817, + "learning_rate": 7.3334e-06, + "loss": 1.229639205932617, + "step": 640300 + }, + { + "epoch": 85.38666666666667, + "grad_norm": 0.9062958359718323, + "learning_rate": 7.326733333333334e-06, + "loss": 1.2285384368896484, + "step": 640400 + }, + { + "epoch": 85.4, + "grad_norm": 0.9291536211967468, + "learning_rate": 7.320066666666667e-06, + "loss": 1.2298905944824219, + "step": 640500 + }, + { + "epoch": 85.41333333333333, + "grad_norm": 0.8647129535675049, + "learning_rate": 7.313400000000001e-06, + "loss": 1.2309508514404297, + "step": 640600 + }, + { + "epoch": 85.42666666666666, + "grad_norm": 0.9247118234634399, + "learning_rate": 7.306733333333333e-06, + "loss": 1.2306937408447265, + "step": 640700 + }, + { + "epoch": 85.44, + "grad_norm": 0.8799145221710205, + "learning_rate": 7.300066666666667e-06, + "loss": 1.226353759765625, + "step": 640800 + }, + { + "epoch": 85.45333333333333, + "grad_norm": 0.9392918944358826, + "learning_rate": 7.2934e-06, + "loss": 1.2263146209716798, + "step": 640900 + }, + { + "epoch": 85.46666666666667, + "grad_norm": 0.8683087229728699, + "learning_rate": 7.286733333333334e-06, + "loss": 1.2288311767578124, + "step": 641000 + }, + { + "epoch": 85.48, + "grad_norm": 0.9020020365715027, + "learning_rate": 7.2800666666666666e-06, + "loss": 1.229554214477539, + "step": 641100 + }, + { + "epoch": 85.49333333333334, + "grad_norm": 0.8641257882118225, + "learning_rate": 7.2734e-06, + "loss": 1.2283095550537109, + "step": 641200 + }, + { + "epoch": 85.50666666666666, + "grad_norm": 0.8976728320121765, + "learning_rate": 7.266733333333334e-06, + "loss": 1.2341390991210937, + "step": 641300 + }, + { + "epoch": 85.52, + "grad_norm": 0.9710721373558044, + "learning_rate": 7.260133333333334e-06, + "loss": 1.228611831665039, + "step": 641400 + }, + { + "epoch": 85.53333333333333, + "grad_norm": 0.9804433584213257, + "learning_rate": 7.253466666666667e-06, + "loss": 1.231660385131836, + "step": 641500 + }, + { + "epoch": 85.54666666666667, + "grad_norm": 0.9250527620315552, + "learning_rate": 7.246800000000001e-06, + "loss": 1.2287106323242187, + "step": 641600 + }, + { + "epoch": 85.56, + "grad_norm": 0.8953940868377686, + "learning_rate": 7.240133333333334e-06, + "loss": 1.2353031158447265, + "step": 641700 + }, + { + "epoch": 85.57333333333334, + "grad_norm": 0.8646306991577148, + "learning_rate": 7.233466666666668e-06, + "loss": 1.232652053833008, + "step": 641800 + }, + { + "epoch": 85.58666666666667, + "grad_norm": 0.9270492792129517, + "learning_rate": 7.2268e-06, + "loss": 1.2340243530273438, + "step": 641900 + }, + { + "epoch": 85.6, + "grad_norm": 0.9221645593643188, + "learning_rate": 7.220133333333334e-06, + "loss": 1.2317237091064452, + "step": 642000 + }, + { + "epoch": 85.61333333333333, + "grad_norm": 0.8994006514549255, + "learning_rate": 7.213466666666667e-06, + "loss": 1.2312322998046874, + "step": 642100 + }, + { + "epoch": 85.62666666666667, + "grad_norm": 0.9039101600646973, + "learning_rate": 7.206799999999999e-06, + "loss": 1.2359030151367187, + "step": 642200 + }, + { + "epoch": 85.64, + "grad_norm": 0.9876293540000916, + "learning_rate": 7.200133333333334e-06, + "loss": 1.231430435180664, + "step": 642300 + }, + { + "epoch": 85.65333333333334, + "grad_norm": 0.8660300970077515, + "learning_rate": 7.193466666666666e-06, + "loss": 1.232857437133789, + "step": 642400 + }, + { + "epoch": 85.66666666666667, + "grad_norm": 0.9719154834747314, + "learning_rate": 7.1868e-06, + "loss": 1.2365948486328124, + "step": 642500 + }, + { + "epoch": 85.68, + "grad_norm": 0.9251152276992798, + "learning_rate": 7.1801333333333335e-06, + "loss": 1.2319696044921875, + "step": 642600 + }, + { + "epoch": 85.69333333333333, + "grad_norm": 0.8920202255249023, + "learning_rate": 7.1734666666666675e-06, + "loss": 1.2325668334960938, + "step": 642700 + }, + { + "epoch": 85.70666666666666, + "grad_norm": 0.9049530625343323, + "learning_rate": 7.1668e-06, + "loss": 1.2362017822265625, + "step": 642800 + }, + { + "epoch": 85.72, + "grad_norm": 0.8955960869789124, + "learning_rate": 7.160133333333334e-06, + "loss": 1.2367591094970702, + "step": 642900 + }, + { + "epoch": 85.73333333333333, + "grad_norm": 0.8741152286529541, + "learning_rate": 7.153466666666667e-06, + "loss": 1.2382603454589844, + "step": 643000 + }, + { + "epoch": 85.74666666666667, + "grad_norm": 0.8936929106712341, + "learning_rate": 7.146800000000001e-06, + "loss": 1.2319417572021485, + "step": 643100 + }, + { + "epoch": 85.76, + "grad_norm": 0.8739801645278931, + "learning_rate": 7.140133333333333e-06, + "loss": 1.2322359466552735, + "step": 643200 + }, + { + "epoch": 85.77333333333333, + "grad_norm": 0.9064525961875916, + "learning_rate": 7.133466666666668e-06, + "loss": 1.2369744110107421, + "step": 643300 + }, + { + "epoch": 85.78666666666666, + "grad_norm": 0.8985515236854553, + "learning_rate": 7.1268e-06, + "loss": 1.2325567626953124, + "step": 643400 + }, + { + "epoch": 85.8, + "grad_norm": 0.9307603240013123, + "learning_rate": 7.120200000000001e-06, + "loss": 1.238876495361328, + "step": 643500 + }, + { + "epoch": 85.81333333333333, + "grad_norm": 0.8941517472267151, + "learning_rate": 7.113533333333333e-06, + "loss": 1.2391890716552734, + "step": 643600 + }, + { + "epoch": 85.82666666666667, + "grad_norm": 0.9674673676490784, + "learning_rate": 7.106866666666667e-06, + "loss": 1.2368927764892579, + "step": 643700 + }, + { + "epoch": 85.84, + "grad_norm": 0.933340847492218, + "learning_rate": 7.1002e-06, + "loss": 1.2422388458251954, + "step": 643800 + }, + { + "epoch": 85.85333333333334, + "grad_norm": 0.8938137888908386, + "learning_rate": 7.093533333333334e-06, + "loss": 1.2338928985595703, + "step": 643900 + }, + { + "epoch": 85.86666666666666, + "grad_norm": 0.8926107287406921, + "learning_rate": 7.0868666666666665e-06, + "loss": 1.2356930541992188, + "step": 644000 + }, + { + "epoch": 85.88, + "grad_norm": 0.8534455299377441, + "learning_rate": 7.0802e-06, + "loss": 1.2378578186035156, + "step": 644100 + }, + { + "epoch": 85.89333333333333, + "grad_norm": 1.000348448753357, + "learning_rate": 7.0735333333333335e-06, + "loss": 1.2363401794433593, + "step": 644200 + }, + { + "epoch": 85.90666666666667, + "grad_norm": 0.9621683359146118, + "learning_rate": 7.0668666666666675e-06, + "loss": 1.241478271484375, + "step": 644300 + }, + { + "epoch": 85.92, + "grad_norm": 0.9294373989105225, + "learning_rate": 7.0602e-06, + "loss": 1.237207565307617, + "step": 644400 + }, + { + "epoch": 85.93333333333334, + "grad_norm": 0.9206804037094116, + "learning_rate": 7.0535333333333346e-06, + "loss": 1.2392974090576172, + "step": 644500 + }, + { + "epoch": 85.94666666666667, + "grad_norm": 0.8890131115913391, + "learning_rate": 7.046866666666667e-06, + "loss": 1.2358542633056642, + "step": 644600 + }, + { + "epoch": 85.96, + "grad_norm": 0.887895941734314, + "learning_rate": 7.040200000000001e-06, + "loss": 1.2418438720703124, + "step": 644700 + }, + { + "epoch": 85.97333333333333, + "grad_norm": 0.8878814578056335, + "learning_rate": 7.033533333333334e-06, + "loss": 1.2417584991455077, + "step": 644800 + }, + { + "epoch": 85.98666666666666, + "grad_norm": 0.9163659811019897, + "learning_rate": 7.026866666666666e-06, + "loss": 1.2418124389648437, + "step": 644900 + }, + { + "epoch": 86.0, + "grad_norm": 0.9403581023216248, + "learning_rate": 7.0202e-06, + "loss": 1.2414751434326172, + "step": 645000 + }, + { + "epoch": 86.01333333333334, + "grad_norm": 0.8630901575088501, + "learning_rate": 7.013533333333333e-06, + "loss": 1.2175826263427734, + "step": 645100 + }, + { + "epoch": 86.02666666666667, + "grad_norm": 0.9154542684555054, + "learning_rate": 7.006866666666667e-06, + "loss": 1.2209982299804687, + "step": 645200 + }, + { + "epoch": 86.04, + "grad_norm": 0.9038174748420715, + "learning_rate": 7.0001999999999995e-06, + "loss": 1.216339340209961, + "step": 645300 + }, + { + "epoch": 86.05333333333333, + "grad_norm": 0.8506960272789001, + "learning_rate": 6.993533333333334e-06, + "loss": 1.218511962890625, + "step": 645400 + }, + { + "epoch": 86.06666666666666, + "grad_norm": 0.8634645342826843, + "learning_rate": 6.986933333333334e-06, + "loss": 1.2178488922119142, + "step": 645500 + }, + { + "epoch": 86.08, + "grad_norm": 0.9225000739097595, + "learning_rate": 6.9802666666666665e-06, + "loss": 1.2196299743652343, + "step": 645600 + }, + { + "epoch": 86.09333333333333, + "grad_norm": 0.9054206609725952, + "learning_rate": 6.973600000000001e-06, + "loss": 1.2221673583984376, + "step": 645700 + }, + { + "epoch": 86.10666666666667, + "grad_norm": 0.8930476307868958, + "learning_rate": 6.9669333333333336e-06, + "loss": 1.219794464111328, + "step": 645800 + }, + { + "epoch": 86.12, + "grad_norm": 0.8613491058349609, + "learning_rate": 6.960266666666667e-06, + "loss": 1.21840576171875, + "step": 645900 + }, + { + "epoch": 86.13333333333334, + "grad_norm": 0.9077932238578796, + "learning_rate": 6.953600000000001e-06, + "loss": 1.2229581451416016, + "step": 646000 + }, + { + "epoch": 86.14666666666666, + "grad_norm": 0.9440174102783203, + "learning_rate": 6.946933333333333e-06, + "loss": 1.217189178466797, + "step": 646100 + }, + { + "epoch": 86.16, + "grad_norm": 0.906891405582428, + "learning_rate": 6.940266666666667e-06, + "loss": 1.2184838104248046, + "step": 646200 + }, + { + "epoch": 86.17333333333333, + "grad_norm": 0.8963661193847656, + "learning_rate": 6.9336e-06, + "loss": 1.2230545043945313, + "step": 646300 + }, + { + "epoch": 86.18666666666667, + "grad_norm": 0.8720294833183289, + "learning_rate": 6.926933333333334e-06, + "loss": 1.2247891998291016, + "step": 646400 + }, + { + "epoch": 86.2, + "grad_norm": 0.9351063966751099, + "learning_rate": 6.920266666666666e-06, + "loss": 1.2246680450439453, + "step": 646500 + }, + { + "epoch": 86.21333333333334, + "grad_norm": 0.9471380114555359, + "learning_rate": 6.913600000000001e-06, + "loss": 1.2222270965576172, + "step": 646600 + }, + { + "epoch": 86.22666666666667, + "grad_norm": 0.8749629259109497, + "learning_rate": 6.906933333333333e-06, + "loss": 1.2154730987548827, + "step": 646700 + }, + { + "epoch": 86.24, + "grad_norm": 0.8750444650650024, + "learning_rate": 6.900266666666667e-06, + "loss": 1.2247186279296876, + "step": 646800 + }, + { + "epoch": 86.25333333333333, + "grad_norm": 0.9080207347869873, + "learning_rate": 6.8936e-06, + "loss": 1.2202265930175782, + "step": 646900 + }, + { + "epoch": 86.26666666666667, + "grad_norm": 0.9241020679473877, + "learning_rate": 6.886933333333334e-06, + "loss": 1.224848175048828, + "step": 647000 + }, + { + "epoch": 86.28, + "grad_norm": 0.907421350479126, + "learning_rate": 6.880266666666667e-06, + "loss": 1.2235704040527344, + "step": 647100 + }, + { + "epoch": 86.29333333333334, + "grad_norm": 0.9098572731018066, + "learning_rate": 6.8736000000000006e-06, + "loss": 1.2222378540039063, + "step": 647200 + }, + { + "epoch": 86.30666666666667, + "grad_norm": 0.8905967473983765, + "learning_rate": 6.866933333333334e-06, + "loss": 1.2262596130371093, + "step": 647300 + }, + { + "epoch": 86.32, + "grad_norm": 0.8770264387130737, + "learning_rate": 6.860266666666668e-06, + "loss": 1.2231716156005858, + "step": 647400 + }, + { + "epoch": 86.33333333333333, + "grad_norm": 0.8793537616729736, + "learning_rate": 6.853666666666667e-06, + "loss": 1.2286277770996095, + "step": 647500 + }, + { + "epoch": 86.34666666666666, + "grad_norm": 0.8772323131561279, + "learning_rate": 6.847000000000001e-06, + "loss": 1.2212282562255858, + "step": 647600 + }, + { + "epoch": 86.36, + "grad_norm": 0.891001284122467, + "learning_rate": 6.840333333333333e-06, + "loss": 1.222700729370117, + "step": 647700 + }, + { + "epoch": 86.37333333333333, + "grad_norm": 0.9272405505180359, + "learning_rate": 6.833666666666668e-06, + "loss": 1.2218807220458985, + "step": 647800 + }, + { + "epoch": 86.38666666666667, + "grad_norm": 0.884071409702301, + "learning_rate": 6.827e-06, + "loss": 1.2227737426757812, + "step": 647900 + }, + { + "epoch": 86.4, + "grad_norm": 0.9387223720550537, + "learning_rate": 6.820333333333334e-06, + "loss": 1.227510986328125, + "step": 648000 + }, + { + "epoch": 86.41333333333333, + "grad_norm": 0.8574748039245605, + "learning_rate": 6.813666666666667e-06, + "loss": 1.2250510406494142, + "step": 648100 + }, + { + "epoch": 86.42666666666666, + "grad_norm": 0.8585149049758911, + "learning_rate": 6.807000000000001e-06, + "loss": 1.2231393432617188, + "step": 648200 + }, + { + "epoch": 86.44, + "grad_norm": 0.8672378659248352, + "learning_rate": 6.800333333333333e-06, + "loss": 1.2262419891357421, + "step": 648300 + }, + { + "epoch": 86.45333333333333, + "grad_norm": 0.8681180477142334, + "learning_rate": 6.793666666666667e-06, + "loss": 1.2264180755615235, + "step": 648400 + }, + { + "epoch": 86.46666666666667, + "grad_norm": 0.9366236329078674, + "learning_rate": 6.787e-06, + "loss": 1.2281493377685546, + "step": 648500 + }, + { + "epoch": 86.48, + "grad_norm": 0.9453869462013245, + "learning_rate": 6.780333333333333e-06, + "loss": 1.2302886199951173, + "step": 648600 + }, + { + "epoch": 86.49333333333334, + "grad_norm": 0.8976516127586365, + "learning_rate": 6.773666666666667e-06, + "loss": 1.227205810546875, + "step": 648700 + }, + { + "epoch": 86.50666666666666, + "grad_norm": 0.9220427870750427, + "learning_rate": 6.767e-06, + "loss": 1.2235513305664063, + "step": 648800 + }, + { + "epoch": 86.52, + "grad_norm": 0.912756085395813, + "learning_rate": 6.760333333333334e-06, + "loss": 1.2255386352539062, + "step": 648900 + }, + { + "epoch": 86.53333333333333, + "grad_norm": 0.9162057042121887, + "learning_rate": 6.753666666666667e-06, + "loss": 1.2223670959472657, + "step": 649000 + }, + { + "epoch": 86.54666666666667, + "grad_norm": 0.8735973238945007, + "learning_rate": 6.747000000000001e-06, + "loss": 1.2262992858886719, + "step": 649100 + }, + { + "epoch": 86.56, + "grad_norm": 0.8713511228561401, + "learning_rate": 6.740333333333333e-06, + "loss": 1.231358871459961, + "step": 649200 + }, + { + "epoch": 86.57333333333334, + "grad_norm": 0.879443883895874, + "learning_rate": 6.733666666666667e-06, + "loss": 1.2286178588867187, + "step": 649300 + }, + { + "epoch": 86.58666666666667, + "grad_norm": 0.9119516015052795, + "learning_rate": 6.727e-06, + "loss": 1.2312828063964845, + "step": 649400 + }, + { + "epoch": 86.6, + "grad_norm": 0.9122266173362732, + "learning_rate": 6.7204e-06, + "loss": 1.2293184661865235, + "step": 649500 + }, + { + "epoch": 86.61333333333333, + "grad_norm": 0.9306323528289795, + "learning_rate": 6.713733333333333e-06, + "loss": 1.2252943420410156, + "step": 649600 + }, + { + "epoch": 86.62666666666667, + "grad_norm": 0.8929945230484009, + "learning_rate": 6.707066666666667e-06, + "loss": 1.2296338653564454, + "step": 649700 + }, + { + "epoch": 86.64, + "grad_norm": 0.9355345964431763, + "learning_rate": 6.700399999999999e-06, + "loss": 1.229610595703125, + "step": 649800 + }, + { + "epoch": 86.65333333333334, + "grad_norm": 0.9156262278556824, + "learning_rate": 6.693733333333334e-06, + "loss": 1.2348743438720704, + "step": 649900 + }, + { + "epoch": 86.66666666666667, + "grad_norm": 0.9362950921058655, + "learning_rate": 6.6870666666666665e-06, + "loss": 1.2279579162597656, + "step": 650000 + }, + { + "epoch": 86.68, + "grad_norm": 0.8823856711387634, + "learning_rate": 6.6804000000000004e-06, + "loss": 1.23043212890625, + "step": 650100 + }, + { + "epoch": 86.69333333333333, + "grad_norm": 0.9650241732597351, + "learning_rate": 6.6737333333333336e-06, + "loss": 1.2296434020996094, + "step": 650200 + }, + { + "epoch": 86.70666666666666, + "grad_norm": 0.8565574288368225, + "learning_rate": 6.6670666666666675e-06, + "loss": 1.2308535003662109, + "step": 650300 + }, + { + "epoch": 86.72, + "grad_norm": 0.9410964846611023, + "learning_rate": 6.6604e-06, + "loss": 1.2321768951416017, + "step": 650400 + }, + { + "epoch": 86.73333333333333, + "grad_norm": 0.9220337867736816, + "learning_rate": 6.653733333333334e-06, + "loss": 1.231683349609375, + "step": 650500 + }, + { + "epoch": 86.74666666666667, + "grad_norm": 0.8969945907592773, + "learning_rate": 6.647066666666667e-06, + "loss": 1.233789291381836, + "step": 650600 + }, + { + "epoch": 86.76, + "grad_norm": 0.9641741514205933, + "learning_rate": 6.640400000000001e-06, + "loss": 1.230896987915039, + "step": 650700 + }, + { + "epoch": 86.77333333333333, + "grad_norm": 0.9212261438369751, + "learning_rate": 6.633733333333333e-06, + "loss": 1.2316611480712891, + "step": 650800 + }, + { + "epoch": 86.78666666666666, + "grad_norm": 0.8244799971580505, + "learning_rate": 6.627066666666668e-06, + "loss": 1.2281710815429687, + "step": 650900 + }, + { + "epoch": 86.8, + "grad_norm": 0.89630126953125, + "learning_rate": 6.6204e-06, + "loss": 1.2288339233398438, + "step": 651000 + }, + { + "epoch": 86.81333333333333, + "grad_norm": 0.8904646635055542, + "learning_rate": 6.613733333333334e-06, + "loss": 1.2315651702880859, + "step": 651100 + }, + { + "epoch": 86.82666666666667, + "grad_norm": 0.9223039150238037, + "learning_rate": 6.607066666666667e-06, + "loss": 1.2328720855712891, + "step": 651200 + }, + { + "epoch": 86.84, + "grad_norm": 0.8785363435745239, + "learning_rate": 6.6003999999999995e-06, + "loss": 1.2333258056640626, + "step": 651300 + }, + { + "epoch": 86.85333333333334, + "grad_norm": 0.9430354237556458, + "learning_rate": 6.5937333333333335e-06, + "loss": 1.231754913330078, + "step": 651400 + }, + { + "epoch": 86.86666666666666, + "grad_norm": 0.9277433156967163, + "learning_rate": 6.587133333333334e-06, + "loss": 1.2332256317138672, + "step": 651500 + }, + { + "epoch": 86.88, + "grad_norm": 0.9251424670219421, + "learning_rate": 6.5804666666666665e-06, + "loss": 1.2302942657470703, + "step": 651600 + }, + { + "epoch": 86.89333333333333, + "grad_norm": 0.9771026968955994, + "learning_rate": 6.5738000000000005e-06, + "loss": 1.2350211334228516, + "step": 651700 + }, + { + "epoch": 86.90666666666667, + "grad_norm": 0.9614867568016052, + "learning_rate": 6.567133333333334e-06, + "loss": 1.2328236389160157, + "step": 651800 + }, + { + "epoch": 86.92, + "grad_norm": 0.9628375768661499, + "learning_rate": 6.5604666666666676e-06, + "loss": 1.2369357299804689, + "step": 651900 + }, + { + "epoch": 86.93333333333334, + "grad_norm": 0.8983745574951172, + "learning_rate": 6.5538e-06, + "loss": 1.2343621063232422, + "step": 652000 + }, + { + "epoch": 86.94666666666667, + "grad_norm": 0.9080144166946411, + "learning_rate": 6.547133333333335e-06, + "loss": 1.2306615447998046, + "step": 652100 + }, + { + "epoch": 86.96, + "grad_norm": 0.8796840906143188, + "learning_rate": 6.540466666666667e-06, + "loss": 1.2312027740478515, + "step": 652200 + }, + { + "epoch": 86.97333333333333, + "grad_norm": 0.9401488304138184, + "learning_rate": 6.5338e-06, + "loss": 1.23423828125, + "step": 652300 + }, + { + "epoch": 86.98666666666666, + "grad_norm": 0.9651604890823364, + "learning_rate": 6.527133333333334e-06, + "loss": 1.2338542175292968, + "step": 652400 + }, + { + "epoch": 87.0, + "grad_norm": 0.9266039729118347, + "learning_rate": 6.520466666666666e-06, + "loss": 1.2390645599365235, + "step": 652500 + }, + { + "epoch": 87.01333333333334, + "grad_norm": 0.8999123573303223, + "learning_rate": 6.5138e-06, + "loss": 1.214796905517578, + "step": 652600 + }, + { + "epoch": 87.02666666666667, + "grad_norm": 0.903722882270813, + "learning_rate": 6.507133333333333e-06, + "loss": 1.2141775512695312, + "step": 652700 + }, + { + "epoch": 87.04, + "grad_norm": 0.8932545781135559, + "learning_rate": 6.500466666666667e-06, + "loss": 1.2154994201660156, + "step": 652800 + }, + { + "epoch": 87.05333333333333, + "grad_norm": 0.8836954236030579, + "learning_rate": 6.4937999999999996e-06, + "loss": 1.2121443939208985, + "step": 652900 + }, + { + "epoch": 87.06666666666666, + "grad_norm": 0.9204801321029663, + "learning_rate": 6.487133333333334e-06, + "loss": 1.2122740936279297, + "step": 653000 + }, + { + "epoch": 87.08, + "grad_norm": 0.8981918692588806, + "learning_rate": 6.480466666666667e-06, + "loss": 1.221134490966797, + "step": 653100 + }, + { + "epoch": 87.09333333333333, + "grad_norm": 0.926282525062561, + "learning_rate": 6.473800000000001e-06, + "loss": 1.2155657196044922, + "step": 653200 + }, + { + "epoch": 87.10666666666667, + "grad_norm": 0.8902606964111328, + "learning_rate": 6.467133333333334e-06, + "loss": 1.2164243316650392, + "step": 653300 + }, + { + "epoch": 87.12, + "grad_norm": 0.8815839290618896, + "learning_rate": 6.460466666666668e-06, + "loss": 1.2138585662841797, + "step": 653400 + }, + { + "epoch": 87.13333333333334, + "grad_norm": 0.9262551069259644, + "learning_rate": 6.453866666666667e-06, + "loss": 1.2137595367431642, + "step": 653500 + }, + { + "epoch": 87.14666666666666, + "grad_norm": 0.891934871673584, + "learning_rate": 6.447200000000001e-06, + "loss": 1.214564666748047, + "step": 653600 + }, + { + "epoch": 87.16, + "grad_norm": 0.8836770057678223, + "learning_rate": 6.440533333333333e-06, + "loss": 1.2159810638427735, + "step": 653700 + }, + { + "epoch": 87.17333333333333, + "grad_norm": 0.9016736745834351, + "learning_rate": 6.433866666666667e-06, + "loss": 1.2174545288085938, + "step": 653800 + }, + { + "epoch": 87.18666666666667, + "grad_norm": 0.9326723217964172, + "learning_rate": 6.4272e-06, + "loss": 1.2156101226806642, + "step": 653900 + }, + { + "epoch": 87.2, + "grad_norm": 0.8592504858970642, + "learning_rate": 6.420533333333334e-06, + "loss": 1.2173818969726562, + "step": 654000 + }, + { + "epoch": 87.21333333333334, + "grad_norm": 0.8951143026351929, + "learning_rate": 6.413866666666666e-06, + "loss": 1.2178955841064454, + "step": 654100 + }, + { + "epoch": 87.22666666666667, + "grad_norm": 0.9222288131713867, + "learning_rate": 6.407200000000001e-06, + "loss": 1.2179863739013672, + "step": 654200 + }, + { + "epoch": 87.24, + "grad_norm": 0.9849110245704651, + "learning_rate": 6.400533333333333e-06, + "loss": 1.2230202484130859, + "step": 654300 + }, + { + "epoch": 87.25333333333333, + "grad_norm": 0.9216305017471313, + "learning_rate": 6.393866666666667e-06, + "loss": 1.2152316284179687, + "step": 654400 + }, + { + "epoch": 87.26666666666667, + "grad_norm": 0.8858641982078552, + "learning_rate": 6.3872000000000004e-06, + "loss": 1.2167332458496094, + "step": 654500 + }, + { + "epoch": 87.28, + "grad_norm": 0.907527506351471, + "learning_rate": 6.380533333333334e-06, + "loss": 1.223568115234375, + "step": 654600 + }, + { + "epoch": 87.29333333333334, + "grad_norm": 0.928432285785675, + "learning_rate": 6.373866666666667e-06, + "loss": 1.221104507446289, + "step": 654700 + }, + { + "epoch": 87.30666666666667, + "grad_norm": 0.8888409733772278, + "learning_rate": 6.367200000000001e-06, + "loss": 1.2164854431152343, + "step": 654800 + }, + { + "epoch": 87.32, + "grad_norm": 0.9260812401771545, + "learning_rate": 6.360533333333334e-06, + "loss": 1.2207078552246093, + "step": 654900 + }, + { + "epoch": 87.33333333333333, + "grad_norm": 0.9093630313873291, + "learning_rate": 6.353866666666666e-06, + "loss": 1.221835174560547, + "step": 655000 + }, + { + "epoch": 87.34666666666666, + "grad_norm": 0.9289301633834839, + "learning_rate": 6.3472e-06, + "loss": 1.2211975860595703, + "step": 655100 + }, + { + "epoch": 87.36, + "grad_norm": 0.8211119771003723, + "learning_rate": 6.340533333333333e-06, + "loss": 1.2244545745849609, + "step": 655200 + }, + { + "epoch": 87.37333333333333, + "grad_norm": 0.9515888690948486, + "learning_rate": 6.333866666666667e-06, + "loss": 1.2235546112060547, + "step": 655300 + }, + { + "epoch": 87.38666666666667, + "grad_norm": 0.8519609570503235, + "learning_rate": 6.3272e-06, + "loss": 1.2207803344726562, + "step": 655400 + }, + { + "epoch": 87.4, + "grad_norm": 0.8767391443252563, + "learning_rate": 6.3206e-06, + "loss": 1.2202215576171875, + "step": 655500 + }, + { + "epoch": 87.41333333333333, + "grad_norm": 1.0171016454696655, + "learning_rate": 6.313933333333334e-06, + "loss": 1.2231157684326173, + "step": 655600 + }, + { + "epoch": 87.42666666666666, + "grad_norm": 0.86667400598526, + "learning_rate": 6.307266666666667e-06, + "loss": 1.2254328155517578, + "step": 655700 + }, + { + "epoch": 87.44, + "grad_norm": 0.9001585245132446, + "learning_rate": 6.300600000000001e-06, + "loss": 1.2218850708007813, + "step": 655800 + }, + { + "epoch": 87.45333333333333, + "grad_norm": 0.939195454120636, + "learning_rate": 6.293933333333333e-06, + "loss": 1.2206802368164062, + "step": 655900 + }, + { + "epoch": 87.46666666666667, + "grad_norm": 0.8869876265525818, + "learning_rate": 6.2872666666666665e-06, + "loss": 1.2218120574951172, + "step": 656000 + }, + { + "epoch": 87.48, + "grad_norm": 0.898676872253418, + "learning_rate": 6.2806000000000005e-06, + "loss": 1.2209648895263672, + "step": 656100 + }, + { + "epoch": 87.49333333333334, + "grad_norm": 0.9363060593605042, + "learning_rate": 6.273933333333333e-06, + "loss": 1.2237455749511719, + "step": 656200 + }, + { + "epoch": 87.50666666666666, + "grad_norm": 0.9196439981460571, + "learning_rate": 6.267266666666667e-06, + "loss": 1.2262535095214844, + "step": 656300 + }, + { + "epoch": 87.52, + "grad_norm": 0.7970747947692871, + "learning_rate": 6.2606e-06, + "loss": 1.2225990295410156, + "step": 656400 + }, + { + "epoch": 87.53333333333333, + "grad_norm": 0.8288227915763855, + "learning_rate": 6.253933333333334e-06, + "loss": 1.2242842864990235, + "step": 656500 + }, + { + "epoch": 87.54666666666667, + "grad_norm": 0.9207773804664612, + "learning_rate": 6.247266666666667e-06, + "loss": 1.2214242553710937, + "step": 656600 + }, + { + "epoch": 87.56, + "grad_norm": 0.9800169467926025, + "learning_rate": 6.240600000000001e-06, + "loss": 1.2252493286132813, + "step": 656700 + }, + { + "epoch": 87.57333333333334, + "grad_norm": 0.9389280080795288, + "learning_rate": 6.233933333333333e-06, + "loss": 1.220586700439453, + "step": 656800 + }, + { + "epoch": 87.58666666666667, + "grad_norm": 0.9566884636878967, + "learning_rate": 6.227266666666666e-06, + "loss": 1.2238873291015624, + "step": 656900 + }, + { + "epoch": 87.6, + "grad_norm": 0.9968175292015076, + "learning_rate": 6.2206e-06, + "loss": 1.2255178833007812, + "step": 657000 + }, + { + "epoch": 87.61333333333333, + "grad_norm": 0.9001134037971497, + "learning_rate": 6.213933333333333e-06, + "loss": 1.2253036499023438, + "step": 657100 + }, + { + "epoch": 87.62666666666667, + "grad_norm": 0.920998215675354, + "learning_rate": 6.2072666666666664e-06, + "loss": 1.2283302307128907, + "step": 657200 + }, + { + "epoch": 87.64, + "grad_norm": 0.9255244731903076, + "learning_rate": 6.2006e-06, + "loss": 1.2279671478271483, + "step": 657300 + }, + { + "epoch": 87.65333333333334, + "grad_norm": 0.8817408680915833, + "learning_rate": 6.1939333333333335e-06, + "loss": 1.222409210205078, + "step": 657400 + }, + { + "epoch": 87.66666666666667, + "grad_norm": 0.9020600914955139, + "learning_rate": 6.187333333333334e-06, + "loss": 1.2292388153076172, + "step": 657500 + }, + { + "epoch": 87.68, + "grad_norm": 0.880594789981842, + "learning_rate": 6.180666666666667e-06, + "loss": 1.2260498046875, + "step": 657600 + }, + { + "epoch": 87.69333333333333, + "grad_norm": 0.9309771656990051, + "learning_rate": 6.1740000000000005e-06, + "loss": 1.2300214385986328, + "step": 657700 + }, + { + "epoch": 87.70666666666666, + "grad_norm": 0.8785908222198486, + "learning_rate": 6.167333333333334e-06, + "loss": 1.2290544891357422, + "step": 657800 + }, + { + "epoch": 87.72, + "grad_norm": 0.8739680647850037, + "learning_rate": 6.160666666666667e-06, + "loss": 1.2261587524414062, + "step": 657900 + }, + { + "epoch": 87.73333333333333, + "grad_norm": 0.8887823224067688, + "learning_rate": 6.154e-06, + "loss": 1.2235511779785155, + "step": 658000 + }, + { + "epoch": 87.74666666666667, + "grad_norm": 0.9344404339790344, + "learning_rate": 6.147333333333334e-06, + "loss": 1.2311840057373047, + "step": 658100 + }, + { + "epoch": 87.76, + "grad_norm": 0.9279657006263733, + "learning_rate": 6.140666666666667e-06, + "loss": 1.2299423217773438, + "step": 658200 + }, + { + "epoch": 87.77333333333333, + "grad_norm": 0.9525284767150879, + "learning_rate": 6.134e-06, + "loss": 1.2301526641845704, + "step": 658300 + }, + { + "epoch": 87.78666666666666, + "grad_norm": 0.8445433378219604, + "learning_rate": 6.127333333333333e-06, + "loss": 1.226542739868164, + "step": 658400 + }, + { + "epoch": 87.8, + "grad_norm": 0.9366630911827087, + "learning_rate": 6.120666666666667e-06, + "loss": 1.2329245758056642, + "step": 658500 + }, + { + "epoch": 87.81333333333333, + "grad_norm": 0.9238616228103638, + "learning_rate": 6.114e-06, + "loss": 1.2254788970947266, + "step": 658600 + }, + { + "epoch": 87.82666666666667, + "grad_norm": 0.8797993063926697, + "learning_rate": 6.107333333333333e-06, + "loss": 1.2281143951416016, + "step": 658700 + }, + { + "epoch": 87.84, + "grad_norm": 0.8559375405311584, + "learning_rate": 6.100666666666667e-06, + "loss": 1.224699478149414, + "step": 658800 + }, + { + "epoch": 87.85333333333334, + "grad_norm": 0.9214592576026917, + "learning_rate": 6.0940000000000004e-06, + "loss": 1.2267461395263672, + "step": 658900 + }, + { + "epoch": 87.86666666666666, + "grad_norm": 0.9385553002357483, + "learning_rate": 6.0873333333333336e-06, + "loss": 1.2321873474121094, + "step": 659000 + }, + { + "epoch": 87.88, + "grad_norm": 0.9742735028266907, + "learning_rate": 6.0806666666666675e-06, + "loss": 1.224165802001953, + "step": 659100 + }, + { + "epoch": 87.89333333333333, + "grad_norm": 0.8828876614570618, + "learning_rate": 6.074000000000001e-06, + "loss": 1.2293293762207032, + "step": 659200 + }, + { + "epoch": 87.90666666666667, + "grad_norm": 0.8725327253341675, + "learning_rate": 6.067333333333334e-06, + "loss": 1.2297024536132812, + "step": 659300 + }, + { + "epoch": 87.92, + "grad_norm": 0.8858145475387573, + "learning_rate": 6.060666666666667e-06, + "loss": 1.231685256958008, + "step": 659400 + }, + { + "epoch": 87.93333333333334, + "grad_norm": 0.8619421124458313, + "learning_rate": 6.054066666666667e-06, + "loss": 1.227284164428711, + "step": 659500 + }, + { + "epoch": 87.94666666666667, + "grad_norm": 0.8720583915710449, + "learning_rate": 6.0474e-06, + "loss": 1.2259799194335939, + "step": 659600 + }, + { + "epoch": 87.96, + "grad_norm": 0.9668527841567993, + "learning_rate": 6.040733333333334e-06, + "loss": 1.2270006561279296, + "step": 659700 + }, + { + "epoch": 87.97333333333333, + "grad_norm": 0.8741607069969177, + "learning_rate": 6.034066666666667e-06, + "loss": 1.2342427825927735, + "step": 659800 + }, + { + "epoch": 87.98666666666666, + "grad_norm": 0.9043229818344116, + "learning_rate": 6.0274e-06, + "loss": 1.2302300262451171, + "step": 659900 + }, + { + "epoch": 88.0, + "grad_norm": 0.8614948391914368, + "learning_rate": 6.020733333333334e-06, + "loss": 1.2277375030517579, + "step": 660000 + }, + { + "epoch": 88.01333333333334, + "grad_norm": 0.8440125584602356, + "learning_rate": 6.014066666666667e-06, + "loss": 1.2098700714111328, + "step": 660100 + }, + { + "epoch": 88.02666666666667, + "grad_norm": 0.8795732855796814, + "learning_rate": 6.0074e-06, + "loss": 1.2145481872558594, + "step": 660200 + }, + { + "epoch": 88.04, + "grad_norm": 0.9388731718063354, + "learning_rate": 6.000733333333334e-06, + "loss": 1.2113359832763673, + "step": 660300 + }, + { + "epoch": 88.05333333333333, + "grad_norm": 0.9349479079246521, + "learning_rate": 5.994066666666667e-06, + "loss": 1.2147767639160156, + "step": 660400 + }, + { + "epoch": 88.06666666666666, + "grad_norm": 0.8859605193138123, + "learning_rate": 5.9874e-06, + "loss": 1.2128377532958985, + "step": 660500 + }, + { + "epoch": 88.08, + "grad_norm": 0.9146501421928406, + "learning_rate": 5.980733333333334e-06, + "loss": 1.2150657653808594, + "step": 660600 + }, + { + "epoch": 88.09333333333333, + "grad_norm": 0.8667988777160645, + "learning_rate": 5.974066666666667e-06, + "loss": 1.2110105133056641, + "step": 660700 + }, + { + "epoch": 88.10666666666667, + "grad_norm": 0.9527876973152161, + "learning_rate": 5.9674e-06, + "loss": 1.2121669006347657, + "step": 660800 + }, + { + "epoch": 88.12, + "grad_norm": 0.9000213146209717, + "learning_rate": 5.960733333333334e-06, + "loss": 1.2135875701904297, + "step": 660900 + }, + { + "epoch": 88.13333333333334, + "grad_norm": 0.9539820551872253, + "learning_rate": 5.954066666666667e-06, + "loss": 1.2122388458251954, + "step": 661000 + }, + { + "epoch": 88.14666666666666, + "grad_norm": 0.8554858565330505, + "learning_rate": 5.9474e-06, + "loss": 1.2159857177734374, + "step": 661100 + }, + { + "epoch": 88.16, + "grad_norm": 0.8576105833053589, + "learning_rate": 5.940733333333334e-06, + "loss": 1.214066848754883, + "step": 661200 + }, + { + "epoch": 88.17333333333333, + "grad_norm": 0.938084065914154, + "learning_rate": 5.934066666666667e-06, + "loss": 1.2105953216552734, + "step": 661300 + }, + { + "epoch": 88.18666666666667, + "grad_norm": 0.9702228307723999, + "learning_rate": 5.9274e-06, + "loss": 1.218522186279297, + "step": 661400 + }, + { + "epoch": 88.2, + "grad_norm": 0.9396708607673645, + "learning_rate": 5.9208e-06, + "loss": 1.2127921295166015, + "step": 661500 + }, + { + "epoch": 88.21333333333334, + "grad_norm": 0.8523475527763367, + "learning_rate": 5.914133333333333e-06, + "loss": 1.2177894592285157, + "step": 661600 + }, + { + "epoch": 88.22666666666667, + "grad_norm": 0.9162245392799377, + "learning_rate": 5.907466666666666e-06, + "loss": 1.2171736145019532, + "step": 661700 + }, + { + "epoch": 88.24, + "grad_norm": 0.909294843673706, + "learning_rate": 5.9008e-06, + "loss": 1.2113314819335939, + "step": 661800 + }, + { + "epoch": 88.25333333333333, + "grad_norm": 0.822942316532135, + "learning_rate": 5.8941333333333334e-06, + "loss": 1.2202149200439454, + "step": 661900 + }, + { + "epoch": 88.26666666666667, + "grad_norm": 0.9095253944396973, + "learning_rate": 5.8874666666666666e-06, + "loss": 1.2153319549560546, + "step": 662000 + }, + { + "epoch": 88.28, + "grad_norm": 0.9375243782997131, + "learning_rate": 5.8808000000000005e-06, + "loss": 1.2144713592529297, + "step": 662100 + }, + { + "epoch": 88.29333333333334, + "grad_norm": 0.8997815847396851, + "learning_rate": 5.874133333333334e-06, + "loss": 1.2190712738037108, + "step": 662200 + }, + { + "epoch": 88.30666666666667, + "grad_norm": 0.831521213054657, + "learning_rate": 5.867466666666667e-06, + "loss": 1.217860107421875, + "step": 662300 + }, + { + "epoch": 88.32, + "grad_norm": 0.9350924491882324, + "learning_rate": 5.860800000000001e-06, + "loss": 1.2177651977539063, + "step": 662400 + }, + { + "epoch": 88.33333333333333, + "grad_norm": 0.9330512285232544, + "learning_rate": 5.854133333333334e-06, + "loss": 1.2167528533935548, + "step": 662500 + }, + { + "epoch": 88.34666666666666, + "grad_norm": 0.8898918032646179, + "learning_rate": 5.847466666666667e-06, + "loss": 1.2190279388427734, + "step": 662600 + }, + { + "epoch": 88.36, + "grad_norm": 0.9025176167488098, + "learning_rate": 5.8408e-06, + "loss": 1.2180398559570313, + "step": 662700 + }, + { + "epoch": 88.37333333333333, + "grad_norm": 0.9351064562797546, + "learning_rate": 5.834133333333334e-06, + "loss": 1.2161642456054687, + "step": 662800 + }, + { + "epoch": 88.38666666666667, + "grad_norm": 0.8625040054321289, + "learning_rate": 5.827466666666667e-06, + "loss": 1.2185457611083985, + "step": 662900 + }, + { + "epoch": 88.4, + "grad_norm": 0.8925670981407166, + "learning_rate": 5.8208e-06, + "loss": 1.219074478149414, + "step": 663000 + }, + { + "epoch": 88.41333333333333, + "grad_norm": 0.8783120512962341, + "learning_rate": 5.814133333333334e-06, + "loss": 1.2135558319091797, + "step": 663100 + }, + { + "epoch": 88.42666666666666, + "grad_norm": 0.9169807434082031, + "learning_rate": 5.8074666666666665e-06, + "loss": 1.2201927185058594, + "step": 663200 + }, + { + "epoch": 88.44, + "grad_norm": 0.9173704385757446, + "learning_rate": 5.8008e-06, + "loss": 1.2177742767333983, + "step": 663300 + }, + { + "epoch": 88.45333333333333, + "grad_norm": 0.9613504409790039, + "learning_rate": 5.7941333333333335e-06, + "loss": 1.2174214935302734, + "step": 663400 + }, + { + "epoch": 88.46666666666667, + "grad_norm": 0.9053784012794495, + "learning_rate": 5.7875333333333335e-06, + "loss": 1.2211524963378906, + "step": 663500 + }, + { + "epoch": 88.48, + "grad_norm": 0.8977215886116028, + "learning_rate": 5.7808666666666674e-06, + "loss": 1.2180975341796876, + "step": 663600 + }, + { + "epoch": 88.49333333333334, + "grad_norm": 0.9076542258262634, + "learning_rate": 5.7742000000000006e-06, + "loss": 1.2158096313476563, + "step": 663700 + }, + { + "epoch": 88.50666666666666, + "grad_norm": 0.9158226251602173, + "learning_rate": 5.767533333333334e-06, + "loss": 1.218250961303711, + "step": 663800 + }, + { + "epoch": 88.52, + "grad_norm": 0.9524657726287842, + "learning_rate": 5.760866666666667e-06, + "loss": 1.2187013244628906, + "step": 663900 + }, + { + "epoch": 88.53333333333333, + "grad_norm": 0.931620717048645, + "learning_rate": 5.754200000000001e-06, + "loss": 1.2208222198486327, + "step": 664000 + }, + { + "epoch": 88.54666666666667, + "grad_norm": 0.9844622015953064, + "learning_rate": 5.747533333333334e-06, + "loss": 1.2225242614746095, + "step": 664100 + }, + { + "epoch": 88.56, + "grad_norm": 0.9277436137199402, + "learning_rate": 5.740866666666667e-06, + "loss": 1.2201163482666015, + "step": 664200 + }, + { + "epoch": 88.57333333333334, + "grad_norm": 0.8789235353469849, + "learning_rate": 5.7342e-06, + "loss": 1.2224101257324218, + "step": 664300 + }, + { + "epoch": 88.58666666666667, + "grad_norm": 0.9313110709190369, + "learning_rate": 5.727533333333333e-06, + "loss": 1.2181917572021483, + "step": 664400 + }, + { + "epoch": 88.6, + "grad_norm": 0.9556103348731995, + "learning_rate": 5.720866666666666e-06, + "loss": 1.2208975219726563, + "step": 664500 + }, + { + "epoch": 88.61333333333333, + "grad_norm": 0.9766332507133484, + "learning_rate": 5.7142e-06, + "loss": 1.2226788330078124, + "step": 664600 + }, + { + "epoch": 88.62666666666667, + "grad_norm": 0.8844559192657471, + "learning_rate": 5.707533333333333e-06, + "loss": 1.2230628204345704, + "step": 664700 + }, + { + "epoch": 88.64, + "grad_norm": 0.8664445281028748, + "learning_rate": 5.7008666666666665e-06, + "loss": 1.2178475189208984, + "step": 664800 + }, + { + "epoch": 88.65333333333334, + "grad_norm": 0.9188632369041443, + "learning_rate": 5.6942000000000005e-06, + "loss": 1.2229035186767578, + "step": 664900 + }, + { + "epoch": 88.66666666666667, + "grad_norm": 0.9534464478492737, + "learning_rate": 5.687533333333334e-06, + "loss": 1.2201636505126954, + "step": 665000 + }, + { + "epoch": 88.68, + "grad_norm": 0.8590039610862732, + "learning_rate": 5.680866666666667e-06, + "loss": 1.2217842102050782, + "step": 665100 + }, + { + "epoch": 88.69333333333333, + "grad_norm": 0.9341287016868591, + "learning_rate": 5.674200000000001e-06, + "loss": 1.2232160949707032, + "step": 665200 + }, + { + "epoch": 88.70666666666666, + "grad_norm": 0.851928174495697, + "learning_rate": 5.667533333333334e-06, + "loss": 1.2228545379638671, + "step": 665300 + }, + { + "epoch": 88.72, + "grad_norm": 0.8709028959274292, + "learning_rate": 5.660866666666667e-06, + "loss": 1.224917449951172, + "step": 665400 + }, + { + "epoch": 88.73333333333333, + "grad_norm": 0.9012889266014099, + "learning_rate": 5.654266666666667e-06, + "loss": 1.2241983795166016, + "step": 665500 + }, + { + "epoch": 88.74666666666667, + "grad_norm": 0.9009696245193481, + "learning_rate": 5.6476e-06, + "loss": 1.2221090698242187, + "step": 665600 + }, + { + "epoch": 88.76, + "grad_norm": 0.911006510257721, + "learning_rate": 5.640933333333334e-06, + "loss": 1.2238897705078124, + "step": 665700 + }, + { + "epoch": 88.77333333333333, + "grad_norm": 0.9231188297271729, + "learning_rate": 5.634266666666667e-06, + "loss": 1.2244586944580078, + "step": 665800 + }, + { + "epoch": 88.78666666666666, + "grad_norm": 0.8802729249000549, + "learning_rate": 5.6276e-06, + "loss": 1.2238041687011718, + "step": 665900 + }, + { + "epoch": 88.8, + "grad_norm": 0.9299485683441162, + "learning_rate": 5.620933333333333e-06, + "loss": 1.2228865814208985, + "step": 666000 + }, + { + "epoch": 88.81333333333333, + "grad_norm": 0.8775696754455566, + "learning_rate": 5.614266666666667e-06, + "loss": 1.2266053771972656, + "step": 666100 + }, + { + "epoch": 88.82666666666667, + "grad_norm": 0.8580496311187744, + "learning_rate": 5.6076e-06, + "loss": 1.2229470062255858, + "step": 666200 + }, + { + "epoch": 88.84, + "grad_norm": 0.9241933822631836, + "learning_rate": 5.6009333333333334e-06, + "loss": 1.2229337310791015, + "step": 666300 + }, + { + "epoch": 88.85333333333334, + "grad_norm": 0.9201433658599854, + "learning_rate": 5.594266666666667e-06, + "loss": 1.2231851959228515, + "step": 666400 + }, + { + "epoch": 88.86666666666666, + "grad_norm": 0.9110192060470581, + "learning_rate": 5.5876000000000005e-06, + "loss": 1.225495376586914, + "step": 666500 + }, + { + "epoch": 88.88, + "grad_norm": 0.9712668061256409, + "learning_rate": 5.580933333333334e-06, + "loss": 1.2213951873779296, + "step": 666600 + }, + { + "epoch": 88.89333333333333, + "grad_norm": 0.8844518065452576, + "learning_rate": 5.574266666666668e-06, + "loss": 1.2240930938720702, + "step": 666700 + }, + { + "epoch": 88.90666666666667, + "grad_norm": 0.9546579122543335, + "learning_rate": 5.567600000000001e-06, + "loss": 1.226476287841797, + "step": 666800 + }, + { + "epoch": 88.92, + "grad_norm": 0.8933039903640747, + "learning_rate": 5.560933333333333e-06, + "loss": 1.2249333953857422, + "step": 666900 + }, + { + "epoch": 88.93333333333334, + "grad_norm": 0.9278029799461365, + "learning_rate": 5.554266666666667e-06, + "loss": 1.224727325439453, + "step": 667000 + }, + { + "epoch": 88.94666666666667, + "grad_norm": 0.9233989119529724, + "learning_rate": 5.5476e-06, + "loss": 1.2280259704589844, + "step": 667100 + }, + { + "epoch": 88.96, + "grad_norm": 0.8747185468673706, + "learning_rate": 5.540933333333333e-06, + "loss": 1.2299307250976563, + "step": 667200 + }, + { + "epoch": 88.97333333333333, + "grad_norm": 0.9252629280090332, + "learning_rate": 5.534266666666667e-06, + "loss": 1.2250003051757812, + "step": 667300 + }, + { + "epoch": 88.98666666666666, + "grad_norm": 0.8873195052146912, + "learning_rate": 5.5276e-06, + "loss": 1.2243363189697265, + "step": 667400 + }, + { + "epoch": 89.0, + "grad_norm": 0.8737539052963257, + "learning_rate": 5.521e-06, + "loss": 1.2273259735107422, + "step": 667500 + }, + { + "epoch": 89.01333333333334, + "grad_norm": 0.8994724154472351, + "learning_rate": 5.514333333333334e-06, + "loss": 1.2065253448486328, + "step": 667600 + }, + { + "epoch": 89.02666666666667, + "grad_norm": 0.8773201107978821, + "learning_rate": 5.507666666666667e-06, + "loss": 1.2066268157958984, + "step": 667700 + }, + { + "epoch": 89.04, + "grad_norm": 0.9253839254379272, + "learning_rate": 5.501e-06, + "loss": 1.2097785949707032, + "step": 667800 + }, + { + "epoch": 89.05333333333333, + "grad_norm": 0.9354826211929321, + "learning_rate": 5.4943333333333335e-06, + "loss": 1.2124601745605468, + "step": 667900 + }, + { + "epoch": 89.06666666666666, + "grad_norm": 0.8192519545555115, + "learning_rate": 5.487666666666667e-06, + "loss": 1.2061328887939453, + "step": 668000 + }, + { + "epoch": 89.08, + "grad_norm": 0.8822228312492371, + "learning_rate": 5.481e-06, + "loss": 1.2111685180664062, + "step": 668100 + }, + { + "epoch": 89.09333333333333, + "grad_norm": 0.914986252784729, + "learning_rate": 5.474333333333334e-06, + "loss": 1.211805648803711, + "step": 668200 + }, + { + "epoch": 89.10666666666667, + "grad_norm": 0.9351910948753357, + "learning_rate": 5.467666666666667e-06, + "loss": 1.2042337036132813, + "step": 668300 + }, + { + "epoch": 89.12, + "grad_norm": 0.9000957012176514, + "learning_rate": 5.461e-06, + "loss": 1.2112418365478517, + "step": 668400 + }, + { + "epoch": 89.13333333333334, + "grad_norm": 0.9186215996742249, + "learning_rate": 5.454333333333334e-06, + "loss": 1.2067839050292968, + "step": 668500 + }, + { + "epoch": 89.14666666666666, + "grad_norm": 0.8771560788154602, + "learning_rate": 5.447666666666667e-06, + "loss": 1.2109234619140625, + "step": 668600 + }, + { + "epoch": 89.16, + "grad_norm": 0.9361634254455566, + "learning_rate": 5.441e-06, + "loss": 1.2112667846679688, + "step": 668700 + }, + { + "epoch": 89.17333333333333, + "grad_norm": 0.9080511331558228, + "learning_rate": 5.434333333333334e-06, + "loss": 1.2091513824462892, + "step": 668800 + }, + { + "epoch": 89.18666666666667, + "grad_norm": 0.9087415933609009, + "learning_rate": 5.427666666666667e-06, + "loss": 1.209826431274414, + "step": 668900 + }, + { + "epoch": 89.2, + "grad_norm": 0.8701626658439636, + "learning_rate": 5.421e-06, + "loss": 1.213840560913086, + "step": 669000 + }, + { + "epoch": 89.21333333333334, + "grad_norm": 0.8287436962127686, + "learning_rate": 5.414333333333333e-06, + "loss": 1.2152737426757811, + "step": 669100 + }, + { + "epoch": 89.22666666666667, + "grad_norm": 0.9009669423103333, + "learning_rate": 5.407666666666667e-06, + "loss": 1.2100643157958983, + "step": 669200 + }, + { + "epoch": 89.24, + "grad_norm": 0.9228776693344116, + "learning_rate": 5.4010000000000005e-06, + "loss": 1.2168802642822265, + "step": 669300 + }, + { + "epoch": 89.25333333333333, + "grad_norm": 0.8409181237220764, + "learning_rate": 5.394333333333334e-06, + "loss": 1.212371597290039, + "step": 669400 + }, + { + "epoch": 89.26666666666667, + "grad_norm": 0.8922165632247925, + "learning_rate": 5.3877333333333335e-06, + "loss": 1.2138323974609375, + "step": 669500 + }, + { + "epoch": 89.28, + "grad_norm": 0.9000787138938904, + "learning_rate": 5.381066666666667e-06, + "loss": 1.211551742553711, + "step": 669600 + }, + { + "epoch": 89.29333333333334, + "grad_norm": 0.8795856237411499, + "learning_rate": 5.374400000000001e-06, + "loss": 1.209929428100586, + "step": 669700 + }, + { + "epoch": 89.30666666666667, + "grad_norm": 0.8757795691490173, + "learning_rate": 5.367733333333334e-06, + "loss": 1.2100962829589843, + "step": 669800 + }, + { + "epoch": 89.32, + "grad_norm": 0.9000317454338074, + "learning_rate": 5.361066666666667e-06, + "loss": 1.2151318359375, + "step": 669900 + }, + { + "epoch": 89.33333333333333, + "grad_norm": 0.9361692667007446, + "learning_rate": 5.354400000000001e-06, + "loss": 1.212879638671875, + "step": 670000 + }, + { + "epoch": 89.34666666666666, + "grad_norm": 0.8566330671310425, + "learning_rate": 5.347733333333334e-06, + "loss": 1.2143052673339845, + "step": 670100 + }, + { + "epoch": 89.36, + "grad_norm": 0.9182000160217285, + "learning_rate": 5.341066666666667e-06, + "loss": 1.2156490325927733, + "step": 670200 + }, + { + "epoch": 89.37333333333333, + "grad_norm": 0.8849942684173584, + "learning_rate": 5.3344e-06, + "loss": 1.2155682373046874, + "step": 670300 + }, + { + "epoch": 89.38666666666667, + "grad_norm": 0.948589563369751, + "learning_rate": 5.327733333333334e-06, + "loss": 1.2158618927001954, + "step": 670400 + }, + { + "epoch": 89.4, + "grad_norm": 0.870638906955719, + "learning_rate": 5.321066666666667e-06, + "loss": 1.2140827178955078, + "step": 670500 + }, + { + "epoch": 89.41333333333333, + "grad_norm": 0.9196882247924805, + "learning_rate": 5.3144e-06, + "loss": 1.2150801086425782, + "step": 670600 + }, + { + "epoch": 89.42666666666666, + "grad_norm": 0.9664023518562317, + "learning_rate": 5.3077333333333334e-06, + "loss": 1.216825942993164, + "step": 670700 + }, + { + "epoch": 89.44, + "grad_norm": 0.9256287813186646, + "learning_rate": 5.3010666666666665e-06, + "loss": 1.212283935546875, + "step": 670800 + }, + { + "epoch": 89.45333333333333, + "grad_norm": 0.8842042684555054, + "learning_rate": 5.2944e-06, + "loss": 1.2171527862548828, + "step": 670900 + }, + { + "epoch": 89.46666666666667, + "grad_norm": 0.8998342752456665, + "learning_rate": 5.287733333333334e-06, + "loss": 1.212213363647461, + "step": 671000 + }, + { + "epoch": 89.48, + "grad_norm": 0.8604910969734192, + "learning_rate": 5.281066666666667e-06, + "loss": 1.2178185272216797, + "step": 671100 + }, + { + "epoch": 89.49333333333334, + "grad_norm": 0.9574484825134277, + "learning_rate": 5.2744e-06, + "loss": 1.2192330169677734, + "step": 671200 + }, + { + "epoch": 89.50666666666666, + "grad_norm": 0.9058186411857605, + "learning_rate": 5.267733333333334e-06, + "loss": 1.2213152313232423, + "step": 671300 + }, + { + "epoch": 89.52, + "grad_norm": 0.8801227807998657, + "learning_rate": 5.261066666666667e-06, + "loss": 1.2144708251953125, + "step": 671400 + }, + { + "epoch": 89.53333333333333, + "grad_norm": 0.9073898196220398, + "learning_rate": 5.2544e-06, + "loss": 1.2126658630371094, + "step": 671500 + }, + { + "epoch": 89.54666666666667, + "grad_norm": 0.8924538493156433, + "learning_rate": 5.2478e-06, + "loss": 1.2133853149414062, + "step": 671600 + }, + { + "epoch": 89.56, + "grad_norm": 0.8589732646942139, + "learning_rate": 5.241133333333333e-06, + "loss": 1.216434783935547, + "step": 671700 + }, + { + "epoch": 89.57333333333334, + "grad_norm": 0.8957362174987793, + "learning_rate": 5.234466666666667e-06, + "loss": 1.2140837860107423, + "step": 671800 + }, + { + "epoch": 89.58666666666667, + "grad_norm": 0.9001540541648865, + "learning_rate": 5.2278e-06, + "loss": 1.2144945526123048, + "step": 671900 + }, + { + "epoch": 89.6, + "grad_norm": 0.9157114028930664, + "learning_rate": 5.221133333333333e-06, + "loss": 1.217526397705078, + "step": 672000 + }, + { + "epoch": 89.61333333333333, + "grad_norm": 0.9104243516921997, + "learning_rate": 5.214466666666666e-06, + "loss": 1.2151515197753906, + "step": 672100 + }, + { + "epoch": 89.62666666666667, + "grad_norm": 0.9351614117622375, + "learning_rate": 5.2078e-06, + "loss": 1.2169363403320312, + "step": 672200 + }, + { + "epoch": 89.64, + "grad_norm": 0.8728863596916199, + "learning_rate": 5.2011333333333335e-06, + "loss": 1.2184024810791017, + "step": 672300 + }, + { + "epoch": 89.65333333333334, + "grad_norm": 0.8635854125022888, + "learning_rate": 5.194466666666667e-06, + "loss": 1.221156997680664, + "step": 672400 + }, + { + "epoch": 89.66666666666667, + "grad_norm": 0.964632511138916, + "learning_rate": 5.1878000000000005e-06, + "loss": 1.2214126586914062, + "step": 672500 + }, + { + "epoch": 89.68, + "grad_norm": 0.934449315071106, + "learning_rate": 5.181133333333334e-06, + "loss": 1.2185586547851563, + "step": 672600 + }, + { + "epoch": 89.69333333333333, + "grad_norm": 0.8776857256889343, + "learning_rate": 5.174466666666667e-06, + "loss": 1.223541488647461, + "step": 672700 + }, + { + "epoch": 89.70666666666666, + "grad_norm": 0.9184494018554688, + "learning_rate": 5.167800000000001e-06, + "loss": 1.2196424865722657, + "step": 672800 + }, + { + "epoch": 89.72, + "grad_norm": 0.9252554178237915, + "learning_rate": 5.161133333333334e-06, + "loss": 1.216479263305664, + "step": 672900 + }, + { + "epoch": 89.73333333333333, + "grad_norm": 0.8667902946472168, + "learning_rate": 5.154466666666667e-06, + "loss": 1.2210060882568359, + "step": 673000 + }, + { + "epoch": 89.74666666666667, + "grad_norm": 0.8820723295211792, + "learning_rate": 5.147800000000001e-06, + "loss": 1.218407211303711, + "step": 673100 + }, + { + "epoch": 89.76, + "grad_norm": 0.8611978888511658, + "learning_rate": 5.141133333333334e-06, + "loss": 1.2198648071289062, + "step": 673200 + }, + { + "epoch": 89.77333333333333, + "grad_norm": 0.8947012424468994, + "learning_rate": 5.134466666666666e-06, + "loss": 1.223352584838867, + "step": 673300 + }, + { + "epoch": 89.78666666666666, + "grad_norm": 0.8866718411445618, + "learning_rate": 5.1278e-06, + "loss": 1.2186518096923828, + "step": 673400 + }, + { + "epoch": 89.8, + "grad_norm": 0.8624308705329895, + "learning_rate": 5.121133333333333e-06, + "loss": 1.2187384033203126, + "step": 673500 + }, + { + "epoch": 89.81333333333333, + "grad_norm": 0.9323912858963013, + "learning_rate": 5.114533333333333e-06, + "loss": 1.2192816925048828, + "step": 673600 + }, + { + "epoch": 89.82666666666667, + "grad_norm": 0.8835723996162415, + "learning_rate": 5.107866666666667e-06, + "loss": 1.2200238037109374, + "step": 673700 + }, + { + "epoch": 89.84, + "grad_norm": 0.9300037026405334, + "learning_rate": 5.1012e-06, + "loss": 1.2211270141601562, + "step": 673800 + }, + { + "epoch": 89.85333333333334, + "grad_norm": 0.8939962983131409, + "learning_rate": 5.0945333333333335e-06, + "loss": 1.2231653594970704, + "step": 673900 + }, + { + "epoch": 89.86666666666666, + "grad_norm": 0.8576112985610962, + "learning_rate": 5.0878666666666675e-06, + "loss": 1.2236614990234376, + "step": 674000 + }, + { + "epoch": 89.88, + "grad_norm": 0.9398141503334045, + "learning_rate": 5.081200000000001e-06, + "loss": 1.2185122680664062, + "step": 674100 + }, + { + "epoch": 89.89333333333333, + "grad_norm": 0.8942651152610779, + "learning_rate": 5.074533333333334e-06, + "loss": 1.2213440704345704, + "step": 674200 + }, + { + "epoch": 89.90666666666667, + "grad_norm": 0.9299342036247253, + "learning_rate": 5.067866666666667e-06, + "loss": 1.217512741088867, + "step": 674300 + }, + { + "epoch": 89.92, + "grad_norm": 0.9243706464767456, + "learning_rate": 5.0612e-06, + "loss": 1.2212284851074218, + "step": 674400 + }, + { + "epoch": 89.93333333333334, + "grad_norm": 0.9882511496543884, + "learning_rate": 5.054533333333333e-06, + "loss": 1.2185203552246093, + "step": 674500 + }, + { + "epoch": 89.94666666666667, + "grad_norm": 0.8811713457107544, + "learning_rate": 5.047866666666667e-06, + "loss": 1.2216316223144532, + "step": 674600 + }, + { + "epoch": 89.96, + "grad_norm": 0.8866249322891235, + "learning_rate": 5.0412e-06, + "loss": 1.2194962310791015, + "step": 674700 + }, + { + "epoch": 89.97333333333333, + "grad_norm": 0.8802648186683655, + "learning_rate": 5.034533333333333e-06, + "loss": 1.222801513671875, + "step": 674800 + }, + { + "epoch": 89.98666666666666, + "grad_norm": 0.9410952925682068, + "learning_rate": 5.027866666666667e-06, + "loss": 1.22396484375, + "step": 674900 + }, + { + "epoch": 90.0, + "grad_norm": 0.8734154105186462, + "learning_rate": 5.0212e-06, + "loss": 1.2178419494628907, + "step": 675000 + }, + { + "epoch": 90.01333333333334, + "grad_norm": 0.9289048910140991, + "learning_rate": 5.014533333333333e-06, + "loss": 1.2043888092041015, + "step": 675100 + }, + { + "epoch": 90.02666666666667, + "grad_norm": 0.918481707572937, + "learning_rate": 5.0078666666666665e-06, + "loss": 1.2099720001220704, + "step": 675200 + }, + { + "epoch": 90.04, + "grad_norm": 0.9005312919616699, + "learning_rate": 5.0012000000000005e-06, + "loss": 1.2031187438964843, + "step": 675300 + }, + { + "epoch": 90.05333333333333, + "grad_norm": 0.957449197769165, + "learning_rate": 4.994533333333334e-06, + "loss": 1.2071781158447266, + "step": 675400 + }, + { + "epoch": 90.06666666666666, + "grad_norm": 0.910042941570282, + "learning_rate": 4.987866666666667e-06, + "loss": 1.2066966247558595, + "step": 675500 + }, + { + "epoch": 90.08, + "grad_norm": 0.8937907218933105, + "learning_rate": 4.981266666666667e-06, + "loss": 1.2074835205078125, + "step": 675600 + }, + { + "epoch": 90.09333333333333, + "grad_norm": 0.8752577900886536, + "learning_rate": 4.9746e-06, + "loss": 1.208895492553711, + "step": 675700 + }, + { + "epoch": 90.10666666666667, + "grad_norm": 0.8520717620849609, + "learning_rate": 4.967933333333334e-06, + "loss": 1.2053620147705078, + "step": 675800 + }, + { + "epoch": 90.12, + "grad_norm": 0.8855275511741638, + "learning_rate": 4.961266666666667e-06, + "loss": 1.208665771484375, + "step": 675900 + }, + { + "epoch": 90.13333333333334, + "grad_norm": 0.9631090760231018, + "learning_rate": 4.9546e-06, + "loss": 1.2092572021484376, + "step": 676000 + }, + { + "epoch": 90.14666666666666, + "grad_norm": 0.8636735677719116, + "learning_rate": 4.947933333333334e-06, + "loss": 1.205884246826172, + "step": 676100 + }, + { + "epoch": 90.16, + "grad_norm": 0.9243836998939514, + "learning_rate": 4.941266666666667e-06, + "loss": 1.2106959533691406, + "step": 676200 + }, + { + "epoch": 90.17333333333333, + "grad_norm": 0.9383106231689453, + "learning_rate": 4.9346e-06, + "loss": 1.2110034942626953, + "step": 676300 + }, + { + "epoch": 90.18666666666667, + "grad_norm": 0.8857131600379944, + "learning_rate": 4.927933333333334e-06, + "loss": 1.2083201599121094, + "step": 676400 + }, + { + "epoch": 90.2, + "grad_norm": 0.9113370180130005, + "learning_rate": 4.921266666666667e-06, + "loss": 1.2091306304931642, + "step": 676500 + }, + { + "epoch": 90.21333333333334, + "grad_norm": 0.8388907313346863, + "learning_rate": 4.9146e-06, + "loss": 1.2119139862060546, + "step": 676600 + }, + { + "epoch": 90.22666666666667, + "grad_norm": 0.847788393497467, + "learning_rate": 4.9079333333333335e-06, + "loss": 1.210832061767578, + "step": 676700 + }, + { + "epoch": 90.24, + "grad_norm": 0.8751381039619446, + "learning_rate": 4.901266666666667e-06, + "loss": 1.20989013671875, + "step": 676800 + }, + { + "epoch": 90.25333333333333, + "grad_norm": 0.8831285238265991, + "learning_rate": 4.8946000000000005e-06, + "loss": 1.2075450134277343, + "step": 676900 + }, + { + "epoch": 90.26666666666667, + "grad_norm": 0.9753007888793945, + "learning_rate": 4.887933333333334e-06, + "loss": 1.2117955780029297, + "step": 677000 + }, + { + "epoch": 90.28, + "grad_norm": 0.952491819858551, + "learning_rate": 4.881266666666667e-06, + "loss": 1.212402572631836, + "step": 677100 + }, + { + "epoch": 90.29333333333334, + "grad_norm": 0.9106137156486511, + "learning_rate": 4.8746e-06, + "loss": 1.2052900695800781, + "step": 677200 + }, + { + "epoch": 90.30666666666667, + "grad_norm": 0.926100492477417, + "learning_rate": 4.867933333333333e-06, + "loss": 1.2105538177490234, + "step": 677300 + }, + { + "epoch": 90.32, + "grad_norm": 0.8455801010131836, + "learning_rate": 4.861266666666667e-06, + "loss": 1.2121770477294922, + "step": 677400 + }, + { + "epoch": 90.33333333333333, + "grad_norm": 0.9143370389938354, + "learning_rate": 4.8546e-06, + "loss": 1.2079702758789062, + "step": 677500 + }, + { + "epoch": 90.34666666666666, + "grad_norm": 0.8968600034713745, + "learning_rate": 4.848000000000001e-06, + "loss": 1.2125999450683593, + "step": 677600 + }, + { + "epoch": 90.36, + "grad_norm": 0.8847452402114868, + "learning_rate": 4.841333333333334e-06, + "loss": 1.2117592620849609, + "step": 677700 + }, + { + "epoch": 90.37333333333333, + "grad_norm": 0.9163066744804382, + "learning_rate": 4.834666666666667e-06, + "loss": 1.2076231384277343, + "step": 677800 + }, + { + "epoch": 90.38666666666667, + "grad_norm": 0.9202780723571777, + "learning_rate": 4.828e-06, + "loss": 1.210972213745117, + "step": 677900 + }, + { + "epoch": 90.4, + "grad_norm": 0.9594050049781799, + "learning_rate": 4.821333333333333e-06, + "loss": 1.2101927947998048, + "step": 678000 + }, + { + "epoch": 90.41333333333333, + "grad_norm": 0.8588058948516846, + "learning_rate": 4.814666666666666e-06, + "loss": 1.2125477600097656, + "step": 678100 + }, + { + "epoch": 90.42666666666666, + "grad_norm": 0.8945148587226868, + "learning_rate": 4.808e-06, + "loss": 1.2116073608398437, + "step": 678200 + }, + { + "epoch": 90.44, + "grad_norm": 0.9500113129615784, + "learning_rate": 4.8013333333333335e-06, + "loss": 1.2133517456054688, + "step": 678300 + }, + { + "epoch": 90.45333333333333, + "grad_norm": 0.8919427990913391, + "learning_rate": 4.794666666666667e-06, + "loss": 1.2090089416503906, + "step": 678400 + }, + { + "epoch": 90.46666666666667, + "grad_norm": 0.9410059452056885, + "learning_rate": 4.788e-06, + "loss": 1.210514144897461, + "step": 678500 + }, + { + "epoch": 90.48, + "grad_norm": 0.9124793410301208, + "learning_rate": 4.781333333333334e-06, + "loss": 1.2172020721435546, + "step": 678600 + }, + { + "epoch": 90.49333333333334, + "grad_norm": 0.9013743996620178, + "learning_rate": 4.774666666666667e-06, + "loss": 1.2081442260742188, + "step": 678700 + }, + { + "epoch": 90.50666666666666, + "grad_norm": 0.9235624670982361, + "learning_rate": 4.768e-06, + "loss": 1.2106606292724609, + "step": 678800 + }, + { + "epoch": 90.52, + "grad_norm": 0.9490922689437866, + "learning_rate": 4.761333333333334e-06, + "loss": 1.2129822540283204, + "step": 678900 + }, + { + "epoch": 90.53333333333333, + "grad_norm": 0.9190055727958679, + "learning_rate": 4.754666666666667e-06, + "loss": 1.2117118835449219, + "step": 679000 + }, + { + "epoch": 90.54666666666667, + "grad_norm": 0.9155454635620117, + "learning_rate": 4.748e-06, + "loss": 1.2153356170654297, + "step": 679100 + }, + { + "epoch": 90.56, + "grad_norm": 0.9508551955223083, + "learning_rate": 4.741333333333334e-06, + "loss": 1.214925765991211, + "step": 679200 + }, + { + "epoch": 90.57333333333334, + "grad_norm": 0.9003883600234985, + "learning_rate": 4.734666666666667e-06, + "loss": 1.2155438232421876, + "step": 679300 + }, + { + "epoch": 90.58666666666667, + "grad_norm": 0.8104000091552734, + "learning_rate": 4.728e-06, + "loss": 1.212996063232422, + "step": 679400 + }, + { + "epoch": 90.6, + "grad_norm": 0.8884322047233582, + "learning_rate": 4.721333333333334e-06, + "loss": 1.208837890625, + "step": 679500 + }, + { + "epoch": 90.61333333333333, + "grad_norm": 0.900663435459137, + "learning_rate": 4.714733333333333e-06, + "loss": 1.2164701843261718, + "step": 679600 + }, + { + "epoch": 90.62666666666667, + "grad_norm": 0.9068719148635864, + "learning_rate": 4.7080666666666665e-06, + "loss": 1.2146306610107422, + "step": 679700 + }, + { + "epoch": 90.64, + "grad_norm": 0.8906852006912231, + "learning_rate": 4.7014e-06, + "loss": 1.211735382080078, + "step": 679800 + }, + { + "epoch": 90.65333333333334, + "grad_norm": 0.8880618214607239, + "learning_rate": 4.6947333333333335e-06, + "loss": 1.2147854614257811, + "step": 679900 + }, + { + "epoch": 90.66666666666667, + "grad_norm": 0.9201205372810364, + "learning_rate": 4.688066666666667e-06, + "loss": 1.2103929901123047, + "step": 680000 + }, + { + "epoch": 90.68, + "grad_norm": 0.8812013864517212, + "learning_rate": 4.681400000000001e-06, + "loss": 1.2157184600830078, + "step": 680100 + }, + { + "epoch": 90.69333333333333, + "grad_norm": 0.8855476975440979, + "learning_rate": 4.674733333333334e-06, + "loss": 1.2132430267333985, + "step": 680200 + }, + { + "epoch": 90.70666666666666, + "grad_norm": 0.9242827892303467, + "learning_rate": 4.668066666666667e-06, + "loss": 1.2172369384765624, + "step": 680300 + }, + { + "epoch": 90.72, + "grad_norm": 0.9888787865638733, + "learning_rate": 4.661400000000001e-06, + "loss": 1.2181033325195312, + "step": 680400 + }, + { + "epoch": 90.73333333333333, + "grad_norm": 0.9318944811820984, + "learning_rate": 4.654733333333334e-06, + "loss": 1.2127987670898437, + "step": 680500 + }, + { + "epoch": 90.74666666666667, + "grad_norm": 0.9456973671913147, + "learning_rate": 4.648066666666667e-06, + "loss": 1.213536834716797, + "step": 680600 + }, + { + "epoch": 90.76, + "grad_norm": 0.951168954372406, + "learning_rate": 4.6414e-06, + "loss": 1.2176351928710938, + "step": 680700 + }, + { + "epoch": 90.77333333333333, + "grad_norm": 0.9500468969345093, + "learning_rate": 4.634733333333333e-06, + "loss": 1.2171255493164062, + "step": 680800 + }, + { + "epoch": 90.78666666666666, + "grad_norm": 0.9571161270141602, + "learning_rate": 4.628066666666666e-06, + "loss": 1.2125713348388671, + "step": 680900 + }, + { + "epoch": 90.8, + "grad_norm": 0.9615257978439331, + "learning_rate": 4.6214e-06, + "loss": 1.2181266021728516, + "step": 681000 + }, + { + "epoch": 90.81333333333333, + "grad_norm": 0.9538195133209229, + "learning_rate": 4.6147333333333335e-06, + "loss": 1.2164169311523438, + "step": 681100 + }, + { + "epoch": 90.82666666666667, + "grad_norm": 0.9797369241714478, + "learning_rate": 4.6080666666666666e-06, + "loss": 1.218907012939453, + "step": 681200 + }, + { + "epoch": 90.84, + "grad_norm": 0.9338709712028503, + "learning_rate": 4.6014000000000005e-06, + "loss": 1.2184577941894532, + "step": 681300 + }, + { + "epoch": 90.85333333333334, + "grad_norm": 0.9682694673538208, + "learning_rate": 4.594733333333334e-06, + "loss": 1.2135367584228516, + "step": 681400 + }, + { + "epoch": 90.86666666666666, + "grad_norm": 0.8703393936157227, + "learning_rate": 4.588066666666667e-06, + "loss": 1.2133425903320312, + "step": 681500 + }, + { + "epoch": 90.88, + "grad_norm": 0.9350166916847229, + "learning_rate": 4.581466666666667e-06, + "loss": 1.2187168884277344, + "step": 681600 + }, + { + "epoch": 90.89333333333333, + "grad_norm": 0.8443960547447205, + "learning_rate": 4.5748e-06, + "loss": 1.2129023742675782, + "step": 681700 + }, + { + "epoch": 90.90666666666667, + "grad_norm": 0.9225748181343079, + "learning_rate": 4.568133333333333e-06, + "loss": 1.21633056640625, + "step": 681800 + }, + { + "epoch": 90.92, + "grad_norm": 0.8942683339118958, + "learning_rate": 4.561466666666667e-06, + "loss": 1.2165023040771485, + "step": 681900 + }, + { + "epoch": 90.93333333333334, + "grad_norm": 0.9616734981536865, + "learning_rate": 4.5548e-06, + "loss": 1.2154533386230468, + "step": 682000 + }, + { + "epoch": 90.94666666666667, + "grad_norm": 0.881159782409668, + "learning_rate": 4.548133333333333e-06, + "loss": 1.2169892120361328, + "step": 682100 + }, + { + "epoch": 90.96, + "grad_norm": 0.9500011205673218, + "learning_rate": 4.541466666666667e-06, + "loss": 1.218693389892578, + "step": 682200 + }, + { + "epoch": 90.97333333333333, + "grad_norm": 0.9119076728820801, + "learning_rate": 4.5348e-06, + "loss": 1.216949462890625, + "step": 682300 + }, + { + "epoch": 90.98666666666666, + "grad_norm": 0.8956566452980042, + "learning_rate": 4.528133333333333e-06, + "loss": 1.2165196228027344, + "step": 682400 + }, + { + "epoch": 91.0, + "grad_norm": 0.8929473757743835, + "learning_rate": 4.521466666666667e-06, + "loss": 1.2148597717285157, + "step": 682500 + }, + { + "epoch": 91.01333333333334, + "grad_norm": 0.85610431432724, + "learning_rate": 4.5148e-06, + "loss": 1.200636215209961, + "step": 682600 + }, + { + "epoch": 91.02666666666667, + "grad_norm": 0.9160832166671753, + "learning_rate": 4.5081333333333335e-06, + "loss": 1.2068274688720704, + "step": 682700 + }, + { + "epoch": 91.04, + "grad_norm": 0.9119850993156433, + "learning_rate": 4.501466666666667e-06, + "loss": 1.208277587890625, + "step": 682800 + }, + { + "epoch": 91.05333333333333, + "grad_norm": 0.9079209566116333, + "learning_rate": 4.4948000000000006e-06, + "loss": 1.2017269897460938, + "step": 682900 + }, + { + "epoch": 91.06666666666666, + "grad_norm": 0.9564381241798401, + "learning_rate": 4.488133333333334e-06, + "loss": 1.207140655517578, + "step": 683000 + }, + { + "epoch": 91.08, + "grad_norm": 0.9598597288131714, + "learning_rate": 4.481466666666667e-06, + "loss": 1.203281784057617, + "step": 683100 + }, + { + "epoch": 91.09333333333333, + "grad_norm": 0.861584484577179, + "learning_rate": 4.474800000000001e-06, + "loss": 1.2081224060058593, + "step": 683200 + }, + { + "epoch": 91.10666666666667, + "grad_norm": 0.8429510593414307, + "learning_rate": 4.468133333333334e-06, + "loss": 1.2070238494873047, + "step": 683300 + }, + { + "epoch": 91.12, + "grad_norm": 0.8890085220336914, + "learning_rate": 4.461466666666667e-06, + "loss": 1.2043938446044922, + "step": 683400 + }, + { + "epoch": 91.13333333333334, + "grad_norm": 0.8663833737373352, + "learning_rate": 4.4548e-06, + "loss": 1.20203125, + "step": 683500 + }, + { + "epoch": 91.14666666666666, + "grad_norm": 0.9313666224479675, + "learning_rate": 4.448133333333333e-06, + "loss": 1.2063787841796876, + "step": 683600 + }, + { + "epoch": 91.16, + "grad_norm": 0.8840457201004028, + "learning_rate": 4.441533333333334e-06, + "loss": 1.2069801330566405, + "step": 683700 + }, + { + "epoch": 91.17333333333333, + "grad_norm": 0.8782556653022766, + "learning_rate": 4.434866666666667e-06, + "loss": 1.2082003021240235, + "step": 683800 + }, + { + "epoch": 91.18666666666667, + "grad_norm": 0.9454366564750671, + "learning_rate": 4.4282e-06, + "loss": 1.2090266418457032, + "step": 683900 + }, + { + "epoch": 91.2, + "grad_norm": 0.8991572260856628, + "learning_rate": 4.421533333333334e-06, + "loss": 1.2046781921386718, + "step": 684000 + }, + { + "epoch": 91.21333333333334, + "grad_norm": 0.8746281862258911, + "learning_rate": 4.414866666666667e-06, + "loss": 1.2073801422119141, + "step": 684100 + }, + { + "epoch": 91.22666666666667, + "grad_norm": 0.9214029312133789, + "learning_rate": 4.4082e-06, + "loss": 1.2062918853759765, + "step": 684200 + }, + { + "epoch": 91.24, + "grad_norm": 0.9604611992835999, + "learning_rate": 4.4015333333333335e-06, + "loss": 1.2054164123535156, + "step": 684300 + }, + { + "epoch": 91.25333333333333, + "grad_norm": 0.8675783276557922, + "learning_rate": 4.394866666666667e-06, + "loss": 1.208896942138672, + "step": 684400 + }, + { + "epoch": 91.26666666666667, + "grad_norm": 0.9738113880157471, + "learning_rate": 4.3882e-06, + "loss": 1.2100360107421875, + "step": 684500 + }, + { + "epoch": 91.28, + "grad_norm": 0.8885136842727661, + "learning_rate": 4.381533333333334e-06, + "loss": 1.2070569610595703, + "step": 684600 + }, + { + "epoch": 91.29333333333334, + "grad_norm": 0.9425179362297058, + "learning_rate": 4.374866666666667e-06, + "loss": 1.2077506256103516, + "step": 684700 + }, + { + "epoch": 91.30666666666667, + "grad_norm": 0.9048968553543091, + "learning_rate": 4.3682e-06, + "loss": 1.2081721496582032, + "step": 684800 + }, + { + "epoch": 91.32, + "grad_norm": 0.9390761256217957, + "learning_rate": 4.361533333333333e-06, + "loss": 1.207364044189453, + "step": 684900 + }, + { + "epoch": 91.33333333333333, + "grad_norm": 0.9158327579498291, + "learning_rate": 4.354866666666667e-06, + "loss": 1.2073294830322265, + "step": 685000 + }, + { + "epoch": 91.34666666666666, + "grad_norm": 0.8673156499862671, + "learning_rate": 4.3482e-06, + "loss": 1.2052005004882813, + "step": 685100 + }, + { + "epoch": 91.36, + "grad_norm": 0.8864044547080994, + "learning_rate": 4.341533333333333e-06, + "loss": 1.2118058013916015, + "step": 685200 + }, + { + "epoch": 91.37333333333333, + "grad_norm": 0.9207347631454468, + "learning_rate": 4.334866666666667e-06, + "loss": 1.2065187835693358, + "step": 685300 + }, + { + "epoch": 91.38666666666667, + "grad_norm": 0.900858998298645, + "learning_rate": 4.3282e-06, + "loss": 1.2105420684814454, + "step": 685400 + }, + { + "epoch": 91.4, + "grad_norm": 0.9267945885658264, + "learning_rate": 4.3215333333333335e-06, + "loss": 1.20435302734375, + "step": 685500 + }, + { + "epoch": 91.41333333333333, + "grad_norm": 0.9637866020202637, + "learning_rate": 4.314866666666667e-06, + "loss": 1.2085104370117188, + "step": 685600 + }, + { + "epoch": 91.42666666666666, + "grad_norm": 0.9455682039260864, + "learning_rate": 4.3082666666666665e-06, + "loss": 1.2091656494140626, + "step": 685700 + }, + { + "epoch": 91.44, + "grad_norm": 0.8735678195953369, + "learning_rate": 4.3016000000000005e-06, + "loss": 1.2076645660400391, + "step": 685800 + }, + { + "epoch": 91.45333333333333, + "grad_norm": 0.9294810891151428, + "learning_rate": 4.2949333333333336e-06, + "loss": 1.208891830444336, + "step": 685900 + }, + { + "epoch": 91.46666666666667, + "grad_norm": 0.92054283618927, + "learning_rate": 4.288266666666667e-06, + "loss": 1.2102249145507813, + "step": 686000 + }, + { + "epoch": 91.48, + "grad_norm": 0.8439618349075317, + "learning_rate": 4.2816e-06, + "loss": 1.2142427062988281, + "step": 686100 + }, + { + "epoch": 91.49333333333334, + "grad_norm": 0.8484886884689331, + "learning_rate": 4.274933333333334e-06, + "loss": 1.2077330017089845, + "step": 686200 + }, + { + "epoch": 91.50666666666666, + "grad_norm": 0.9745410680770874, + "learning_rate": 4.268266666666667e-06, + "loss": 1.2066510009765625, + "step": 686300 + }, + { + "epoch": 91.52, + "grad_norm": 0.8893364667892456, + "learning_rate": 4.2616e-06, + "loss": 1.2086053466796876, + "step": 686400 + }, + { + "epoch": 91.53333333333333, + "grad_norm": 0.8825772404670715, + "learning_rate": 4.254933333333334e-06, + "loss": 1.2083636474609376, + "step": 686500 + }, + { + "epoch": 91.54666666666667, + "grad_norm": 0.8804160356521606, + "learning_rate": 4.248266666666667e-06, + "loss": 1.2095064544677734, + "step": 686600 + }, + { + "epoch": 91.56, + "grad_norm": 0.9658887386322021, + "learning_rate": 4.2416e-06, + "loss": 1.2093119049072265, + "step": 686700 + }, + { + "epoch": 91.57333333333334, + "grad_norm": 0.952987790107727, + "learning_rate": 4.234933333333334e-06, + "loss": 1.2097184753417969, + "step": 686800 + }, + { + "epoch": 91.58666666666667, + "grad_norm": 0.8630662560462952, + "learning_rate": 4.228266666666667e-06, + "loss": 1.2081199645996095, + "step": 686900 + }, + { + "epoch": 91.6, + "grad_norm": 0.9706721901893616, + "learning_rate": 4.2215999999999995e-06, + "loss": 1.2103736114501953, + "step": 687000 + }, + { + "epoch": 91.61333333333333, + "grad_norm": 0.9168404936790466, + "learning_rate": 4.2149333333333335e-06, + "loss": 1.2104512023925782, + "step": 687100 + }, + { + "epoch": 91.62666666666667, + "grad_norm": 0.9021251201629639, + "learning_rate": 4.208266666666667e-06, + "loss": 1.208455810546875, + "step": 687200 + }, + { + "epoch": 91.64, + "grad_norm": 0.9148797392845154, + "learning_rate": 4.2016e-06, + "loss": 1.21326904296875, + "step": 687300 + }, + { + "epoch": 91.65333333333334, + "grad_norm": 0.8841809630393982, + "learning_rate": 4.194933333333334e-06, + "loss": 1.2070911407470704, + "step": 687400 + }, + { + "epoch": 91.66666666666667, + "grad_norm": 0.9368838667869568, + "learning_rate": 4.188266666666667e-06, + "loss": 1.2107268524169923, + "step": 687500 + }, + { + "epoch": 91.68, + "grad_norm": 0.9060821533203125, + "learning_rate": 4.1816e-06, + "loss": 1.2130730438232422, + "step": 687600 + }, + { + "epoch": 91.69333333333333, + "grad_norm": 0.9751666188240051, + "learning_rate": 4.175000000000001e-06, + "loss": 1.2097231292724608, + "step": 687700 + }, + { + "epoch": 91.70666666666666, + "grad_norm": 0.8472406268119812, + "learning_rate": 4.168333333333334e-06, + "loss": 1.2085147094726563, + "step": 687800 + }, + { + "epoch": 91.72, + "grad_norm": 1.005416989326477, + "learning_rate": 4.161666666666667e-06, + "loss": 1.2118323516845704, + "step": 687900 + }, + { + "epoch": 91.73333333333333, + "grad_norm": 0.8820925951004028, + "learning_rate": 4.155e-06, + "loss": 1.2112535095214845, + "step": 688000 + }, + { + "epoch": 91.74666666666667, + "grad_norm": 0.8622952103614807, + "learning_rate": 4.148333333333333e-06, + "loss": 1.2110252380371094, + "step": 688100 + }, + { + "epoch": 91.76, + "grad_norm": 0.8722947239875793, + "learning_rate": 4.141666666666666e-06, + "loss": 1.2133953857421875, + "step": 688200 + }, + { + "epoch": 91.77333333333333, + "grad_norm": 0.9638639688491821, + "learning_rate": 4.135e-06, + "loss": 1.2091949462890625, + "step": 688300 + }, + { + "epoch": 91.78666666666666, + "grad_norm": 0.9140656590461731, + "learning_rate": 4.128333333333333e-06, + "loss": 1.2114816284179688, + "step": 688400 + }, + { + "epoch": 91.8, + "grad_norm": 0.9216871857643127, + "learning_rate": 4.1216666666666665e-06, + "loss": 1.2120486450195314, + "step": 688500 + }, + { + "epoch": 91.81333333333333, + "grad_norm": 0.8618937134742737, + "learning_rate": 4.115e-06, + "loss": 1.2109370422363281, + "step": 688600 + }, + { + "epoch": 91.82666666666667, + "grad_norm": 0.8921952247619629, + "learning_rate": 4.1083333333333335e-06, + "loss": 1.2133558654785157, + "step": 688700 + }, + { + "epoch": 91.84, + "grad_norm": 0.895045280456543, + "learning_rate": 4.101666666666667e-06, + "loss": 1.2121337890625, + "step": 688800 + }, + { + "epoch": 91.85333333333334, + "grad_norm": 0.8907344341278076, + "learning_rate": 4.095000000000001e-06, + "loss": 1.2133706665039063, + "step": 688900 + }, + { + "epoch": 91.86666666666666, + "grad_norm": 0.87125563621521, + "learning_rate": 4.088333333333334e-06, + "loss": 1.2131654357910155, + "step": 689000 + }, + { + "epoch": 91.88, + "grad_norm": 0.8448019623756409, + "learning_rate": 4.081666666666667e-06, + "loss": 1.2095771026611328, + "step": 689100 + }, + { + "epoch": 91.89333333333333, + "grad_norm": 0.8955243229866028, + "learning_rate": 4.075e-06, + "loss": 1.2100251770019532, + "step": 689200 + }, + { + "epoch": 91.90666666666667, + "grad_norm": 0.9619772434234619, + "learning_rate": 4.068333333333334e-06, + "loss": 1.2143017578125, + "step": 689300 + }, + { + "epoch": 91.92, + "grad_norm": 0.893493115901947, + "learning_rate": 4.061666666666667e-06, + "loss": 1.213790283203125, + "step": 689400 + }, + { + "epoch": 91.93333333333334, + "grad_norm": 0.9905881285667419, + "learning_rate": 4.055e-06, + "loss": 1.2162788391113282, + "step": 689500 + }, + { + "epoch": 91.94666666666667, + "grad_norm": 0.9450225830078125, + "learning_rate": 4.048333333333334e-06, + "loss": 1.213459243774414, + "step": 689600 + }, + { + "epoch": 91.96, + "grad_norm": 0.9374111294746399, + "learning_rate": 4.041733333333333e-06, + "loss": 1.21458984375, + "step": 689700 + }, + { + "epoch": 91.97333333333333, + "grad_norm": 0.8688250780105591, + "learning_rate": 4.035066666666667e-06, + "loss": 1.2136087799072266, + "step": 689800 + }, + { + "epoch": 91.98666666666666, + "grad_norm": 0.912335216999054, + "learning_rate": 4.0284e-06, + "loss": 1.2162496948242187, + "step": 689900 + }, + { + "epoch": 92.0, + "grad_norm": 0.8809793591499329, + "learning_rate": 4.021733333333333e-06, + "loss": 1.215945281982422, + "step": 690000 + }, + { + "epoch": 92.01333333333334, + "grad_norm": 0.8624962568283081, + "learning_rate": 4.015066666666667e-06, + "loss": 1.1997320556640625, + "step": 690100 + }, + { + "epoch": 92.02666666666667, + "grad_norm": 0.8585469126701355, + "learning_rate": 4.0084000000000005e-06, + "loss": 1.198604278564453, + "step": 690200 + }, + { + "epoch": 92.04, + "grad_norm": 0.9289453029632568, + "learning_rate": 4.0017333333333336e-06, + "loss": 1.2011491394042968, + "step": 690300 + }, + { + "epoch": 92.05333333333333, + "grad_norm": 0.81109219789505, + "learning_rate": 3.995066666666667e-06, + "loss": 1.200951156616211, + "step": 690400 + }, + { + "epoch": 92.06666666666666, + "grad_norm": 0.8511631488800049, + "learning_rate": 3.988400000000001e-06, + "loss": 1.2002388000488282, + "step": 690500 + }, + { + "epoch": 92.08, + "grad_norm": 0.9203524589538574, + "learning_rate": 3.981733333333334e-06, + "loss": 1.1966284942626952, + "step": 690600 + }, + { + "epoch": 92.09333333333333, + "grad_norm": 0.9373264312744141, + "learning_rate": 3.975066666666667e-06, + "loss": 1.20522705078125, + "step": 690700 + }, + { + "epoch": 92.10666666666667, + "grad_norm": 0.8882933855056763, + "learning_rate": 3.9684e-06, + "loss": 1.1983634948730468, + "step": 690800 + }, + { + "epoch": 92.12, + "grad_norm": 0.9304332733154297, + "learning_rate": 3.961733333333333e-06, + "loss": 1.201865005493164, + "step": 690900 + }, + { + "epoch": 92.13333333333334, + "grad_norm": 0.8630163669586182, + "learning_rate": 3.955066666666667e-06, + "loss": 1.203161163330078, + "step": 691000 + }, + { + "epoch": 92.14666666666666, + "grad_norm": 0.8729649782180786, + "learning_rate": 3.9484e-06, + "loss": 1.1991504669189452, + "step": 691100 + }, + { + "epoch": 92.16, + "grad_norm": 0.9168478846549988, + "learning_rate": 3.941733333333333e-06, + "loss": 1.2062628936767579, + "step": 691200 + }, + { + "epoch": 92.17333333333333, + "grad_norm": 0.947083055973053, + "learning_rate": 3.935066666666666e-06, + "loss": 1.2042913818359375, + "step": 691300 + }, + { + "epoch": 92.18666666666667, + "grad_norm": 0.8406407237052917, + "learning_rate": 3.9284e-06, + "loss": 1.2058570861816407, + "step": 691400 + }, + { + "epoch": 92.2, + "grad_norm": 0.8867647051811218, + "learning_rate": 3.9217333333333335e-06, + "loss": 1.205999526977539, + "step": 691500 + }, + { + "epoch": 92.21333333333334, + "grad_norm": 0.8558156490325928, + "learning_rate": 3.915066666666667e-06, + "loss": 1.2016780853271485, + "step": 691600 + }, + { + "epoch": 92.22666666666667, + "grad_norm": 0.9120957851409912, + "learning_rate": 3.9084666666666665e-06, + "loss": 1.2028411102294922, + "step": 691700 + }, + { + "epoch": 92.24, + "grad_norm": 0.8666041493415833, + "learning_rate": 3.9018e-06, + "loss": 1.2044637298583984, + "step": 691800 + }, + { + "epoch": 92.25333333333333, + "grad_norm": 0.9331375956535339, + "learning_rate": 3.895133333333334e-06, + "loss": 1.2048243713378906, + "step": 691900 + }, + { + "epoch": 92.26666666666667, + "grad_norm": 0.9363828301429749, + "learning_rate": 3.888466666666667e-06, + "loss": 1.20224609375, + "step": 692000 + }, + { + "epoch": 92.28, + "grad_norm": 0.8703069686889648, + "learning_rate": 3.8818e-06, + "loss": 1.2026631927490234, + "step": 692100 + }, + { + "epoch": 92.29333333333334, + "grad_norm": 0.8834508061408997, + "learning_rate": 3.875133333333334e-06, + "loss": 1.205963134765625, + "step": 692200 + }, + { + "epoch": 92.30666666666667, + "grad_norm": 0.9188662171363831, + "learning_rate": 3.868466666666667e-06, + "loss": 1.2017127227783204, + "step": 692300 + }, + { + "epoch": 92.32, + "grad_norm": 0.9342883825302124, + "learning_rate": 3.8618e-06, + "loss": 1.2051532745361329, + "step": 692400 + }, + { + "epoch": 92.33333333333333, + "grad_norm": 0.8774183988571167, + "learning_rate": 3.855133333333333e-06, + "loss": 1.2030648803710937, + "step": 692500 + }, + { + "epoch": 92.34666666666666, + "grad_norm": 0.9485383033752441, + "learning_rate": 3.848466666666667e-06, + "loss": 1.2045017242431642, + "step": 692600 + }, + { + "epoch": 92.36, + "grad_norm": 0.8900927305221558, + "learning_rate": 3.8418e-06, + "loss": 1.2074580383300781, + "step": 692700 + }, + { + "epoch": 92.37333333333333, + "grad_norm": 0.92417973279953, + "learning_rate": 3.835133333333333e-06, + "loss": 1.2043077087402343, + "step": 692800 + }, + { + "epoch": 92.38666666666667, + "grad_norm": 0.9447479844093323, + "learning_rate": 3.828466666666667e-06, + "loss": 1.2089013671875, + "step": 692900 + }, + { + "epoch": 92.4, + "grad_norm": 0.8772882223129272, + "learning_rate": 3.8218e-06, + "loss": 1.2071390533447266, + "step": 693000 + }, + { + "epoch": 92.41333333333333, + "grad_norm": 1.0013352632522583, + "learning_rate": 3.8151333333333335e-06, + "loss": 1.2067708587646484, + "step": 693100 + }, + { + "epoch": 92.42666666666666, + "grad_norm": 0.933141827583313, + "learning_rate": 3.808466666666667e-06, + "loss": 1.203813018798828, + "step": 693200 + }, + { + "epoch": 92.44, + "grad_norm": 0.8919726610183716, + "learning_rate": 3.8018000000000006e-06, + "loss": 1.2031111907958985, + "step": 693300 + }, + { + "epoch": 92.45333333333333, + "grad_norm": 0.9562348127365112, + "learning_rate": 3.7951333333333333e-06, + "loss": 1.2068241882324218, + "step": 693400 + }, + { + "epoch": 92.46666666666667, + "grad_norm": 0.8733388185501099, + "learning_rate": 3.7884666666666664e-06, + "loss": 1.2057405090332032, + "step": 693500 + }, + { + "epoch": 92.48, + "grad_norm": 0.837426483631134, + "learning_rate": 3.7818e-06, + "loss": 1.2067436218261718, + "step": 693600 + }, + { + "epoch": 92.49333333333334, + "grad_norm": 0.881060004234314, + "learning_rate": 3.7752000000000003e-06, + "loss": 1.2039698028564454, + "step": 693700 + }, + { + "epoch": 92.50666666666666, + "grad_norm": 0.9489794969558716, + "learning_rate": 3.768533333333334e-06, + "loss": 1.2064761352539062, + "step": 693800 + }, + { + "epoch": 92.52, + "grad_norm": 0.8895357847213745, + "learning_rate": 3.761866666666667e-06, + "loss": 1.202109375, + "step": 693900 + }, + { + "epoch": 92.53333333333333, + "grad_norm": 0.9040202498435974, + "learning_rate": 3.7552000000000005e-06, + "loss": 1.2075955963134766, + "step": 694000 + }, + { + "epoch": 92.54666666666667, + "grad_norm": 0.9203453660011292, + "learning_rate": 3.7485333333333336e-06, + "loss": 1.2062896728515624, + "step": 694100 + }, + { + "epoch": 92.56, + "grad_norm": 0.8410115242004395, + "learning_rate": 3.741866666666667e-06, + "loss": 1.2079099273681642, + "step": 694200 + }, + { + "epoch": 92.57333333333334, + "grad_norm": 0.8776598572731018, + "learning_rate": 3.7352000000000007e-06, + "loss": 1.201023941040039, + "step": 694300 + }, + { + "epoch": 92.58666666666667, + "grad_norm": 0.9552059769630432, + "learning_rate": 3.7285333333333334e-06, + "loss": 1.209650650024414, + "step": 694400 + }, + { + "epoch": 92.6, + "grad_norm": 0.9305794835090637, + "learning_rate": 3.7218666666666665e-06, + "loss": 1.2058026885986328, + "step": 694500 + }, + { + "epoch": 92.61333333333333, + "grad_norm": 0.9237838387489319, + "learning_rate": 3.7152e-06, + "loss": 1.2126660919189454, + "step": 694600 + }, + { + "epoch": 92.62666666666667, + "grad_norm": 0.9203336834907532, + "learning_rate": 3.708533333333333e-06, + "loss": 1.207015380859375, + "step": 694700 + }, + { + "epoch": 92.64, + "grad_norm": 0.9319577217102051, + "learning_rate": 3.7018666666666667e-06, + "loss": 1.2062096405029297, + "step": 694800 + }, + { + "epoch": 92.65333333333334, + "grad_norm": 0.8748674988746643, + "learning_rate": 3.6952000000000002e-06, + "loss": 1.2033453369140625, + "step": 694900 + }, + { + "epoch": 92.66666666666667, + "grad_norm": 0.8956521153450012, + "learning_rate": 3.6885333333333333e-06, + "loss": 1.2087307739257813, + "step": 695000 + }, + { + "epoch": 92.68, + "grad_norm": 0.8896095156669617, + "learning_rate": 3.681866666666667e-06, + "loss": 1.2088866424560547, + "step": 695100 + }, + { + "epoch": 92.69333333333333, + "grad_norm": 0.9287655353546143, + "learning_rate": 3.6752e-06, + "loss": 1.2099744415283202, + "step": 695200 + }, + { + "epoch": 92.70666666666666, + "grad_norm": 0.8579117655754089, + "learning_rate": 3.6685333333333335e-06, + "loss": 1.2089561462402343, + "step": 695300 + }, + { + "epoch": 92.72, + "grad_norm": 0.906623125076294, + "learning_rate": 3.661866666666667e-06, + "loss": 1.207219009399414, + "step": 695400 + }, + { + "epoch": 92.73333333333333, + "grad_norm": 0.8688279390335083, + "learning_rate": 3.6552e-06, + "loss": 1.205895233154297, + "step": 695500 + }, + { + "epoch": 92.74666666666667, + "grad_norm": 0.9425486326217651, + "learning_rate": 3.6485333333333337e-06, + "loss": 1.205015869140625, + "step": 695600 + }, + { + "epoch": 92.76, + "grad_norm": 0.9034813046455383, + "learning_rate": 3.6419333333333332e-06, + "loss": 1.2078257751464845, + "step": 695700 + }, + { + "epoch": 92.77333333333333, + "grad_norm": 0.9471731781959534, + "learning_rate": 3.6352666666666668e-06, + "loss": 1.2084870147705078, + "step": 695800 + }, + { + "epoch": 92.78666666666666, + "grad_norm": 0.8931053280830383, + "learning_rate": 3.6286e-06, + "loss": 1.2065433502197265, + "step": 695900 + }, + { + "epoch": 92.8, + "grad_norm": 0.9375083446502686, + "learning_rate": 3.6219333333333334e-06, + "loss": 1.2090350341796876, + "step": 696000 + }, + { + "epoch": 92.81333333333333, + "grad_norm": 0.8571840524673462, + "learning_rate": 3.615266666666667e-06, + "loss": 1.2078850555419922, + "step": 696100 + }, + { + "epoch": 92.82666666666667, + "grad_norm": 0.9313179850578308, + "learning_rate": 3.6086e-06, + "loss": 1.2092186737060546, + "step": 696200 + }, + { + "epoch": 92.84, + "grad_norm": 0.8702300786972046, + "learning_rate": 3.6019333333333336e-06, + "loss": 1.209949951171875, + "step": 696300 + }, + { + "epoch": 92.85333333333334, + "grad_norm": 0.9009842872619629, + "learning_rate": 3.5952666666666667e-06, + "loss": 1.2110611724853515, + "step": 696400 + }, + { + "epoch": 92.86666666666666, + "grad_norm": 0.8789703249931335, + "learning_rate": 3.5886000000000003e-06, + "loss": 1.212374267578125, + "step": 696500 + }, + { + "epoch": 92.88, + "grad_norm": 0.937931478023529, + "learning_rate": 3.581933333333334e-06, + "loss": 1.2115992736816406, + "step": 696600 + }, + { + "epoch": 92.89333333333333, + "grad_norm": 0.8966504335403442, + "learning_rate": 3.575266666666667e-06, + "loss": 1.2094432067871095, + "step": 696700 + }, + { + "epoch": 92.90666666666667, + "grad_norm": 0.9230213761329651, + "learning_rate": 3.5686000000000004e-06, + "loss": 1.2086225128173829, + "step": 696800 + }, + { + "epoch": 92.92, + "grad_norm": 0.9597765803337097, + "learning_rate": 3.561933333333334e-06, + "loss": 1.2142015075683594, + "step": 696900 + }, + { + "epoch": 92.93333333333334, + "grad_norm": 0.9093431830406189, + "learning_rate": 3.555266666666667e-06, + "loss": 1.2086906433105469, + "step": 697000 + }, + { + "epoch": 92.94666666666667, + "grad_norm": 0.897400438785553, + "learning_rate": 3.5485999999999998e-06, + "loss": 1.211206283569336, + "step": 697100 + }, + { + "epoch": 92.96, + "grad_norm": 0.867046594619751, + "learning_rate": 3.5419333333333333e-06, + "loss": 1.2069461822509766, + "step": 697200 + }, + { + "epoch": 92.97333333333333, + "grad_norm": 0.8881245255470276, + "learning_rate": 3.5352666666666664e-06, + "loss": 1.2137161254882813, + "step": 697300 + }, + { + "epoch": 92.98666666666666, + "grad_norm": 0.9253084063529968, + "learning_rate": 3.5286e-06, + "loss": 1.2097924041748047, + "step": 697400 + }, + { + "epoch": 93.0, + "grad_norm": 0.938310980796814, + "learning_rate": 3.5219333333333335e-06, + "loss": 1.2097466278076172, + "step": 697500 + }, + { + "epoch": 93.01333333333334, + "grad_norm": 0.9459820985794067, + "learning_rate": 3.5152666666666666e-06, + "loss": 1.2002715301513671, + "step": 697600 + }, + { + "epoch": 93.02666666666667, + "grad_norm": 0.8648054003715515, + "learning_rate": 3.508666666666667e-06, + "loss": 1.1980596923828124, + "step": 697700 + }, + { + "epoch": 93.04, + "grad_norm": 0.9034267067909241, + "learning_rate": 3.5020000000000005e-06, + "loss": 1.1980625915527343, + "step": 697800 + }, + { + "epoch": 93.05333333333333, + "grad_norm": 0.891040027141571, + "learning_rate": 3.4953333333333336e-06, + "loss": 1.196813735961914, + "step": 697900 + }, + { + "epoch": 93.06666666666666, + "grad_norm": 0.8857132792472839, + "learning_rate": 3.488666666666667e-06, + "loss": 1.1995645141601563, + "step": 698000 + }, + { + "epoch": 93.08, + "grad_norm": 0.8220590949058533, + "learning_rate": 3.482e-06, + "loss": 1.199000930786133, + "step": 698100 + }, + { + "epoch": 93.09333333333333, + "grad_norm": 0.9337181448936462, + "learning_rate": 3.4753333333333334e-06, + "loss": 1.1981783294677735, + "step": 698200 + }, + { + "epoch": 93.10666666666667, + "grad_norm": 0.8952512145042419, + "learning_rate": 3.4686666666666665e-06, + "loss": 1.203648910522461, + "step": 698300 + }, + { + "epoch": 93.12, + "grad_norm": 0.932554304599762, + "learning_rate": 3.462e-06, + "loss": 1.2012419891357422, + "step": 698400 + }, + { + "epoch": 93.13333333333334, + "grad_norm": 0.8617738485336304, + "learning_rate": 3.455333333333333e-06, + "loss": 1.1994852447509765, + "step": 698500 + }, + { + "epoch": 93.14666666666666, + "grad_norm": 0.9104321599006653, + "learning_rate": 3.4486666666666667e-06, + "loss": 1.207906723022461, + "step": 698600 + }, + { + "epoch": 93.16, + "grad_norm": 0.8374426960945129, + "learning_rate": 3.4420000000000002e-06, + "loss": 1.1999403381347655, + "step": 698700 + }, + { + "epoch": 93.17333333333333, + "grad_norm": 0.8905571103096008, + "learning_rate": 3.4353333333333334e-06, + "loss": 1.1972482299804688, + "step": 698800 + }, + { + "epoch": 93.18666666666667, + "grad_norm": 0.8699285387992859, + "learning_rate": 3.428666666666667e-06, + "loss": 1.2003094482421874, + "step": 698900 + }, + { + "epoch": 93.2, + "grad_norm": 0.8738979697227478, + "learning_rate": 3.422e-06, + "loss": 1.2002088928222656, + "step": 699000 + }, + { + "epoch": 93.21333333333334, + "grad_norm": 0.8332516551017761, + "learning_rate": 3.4153333333333336e-06, + "loss": 1.1950491333007813, + "step": 699100 + }, + { + "epoch": 93.22666666666667, + "grad_norm": 0.8510139584541321, + "learning_rate": 3.408666666666667e-06, + "loss": 1.1995225524902344, + "step": 699200 + }, + { + "epoch": 93.24, + "grad_norm": 0.9004165530204773, + "learning_rate": 3.402e-06, + "loss": 1.2011061096191407, + "step": 699300 + }, + { + "epoch": 93.25333333333333, + "grad_norm": 0.9277057647705078, + "learning_rate": 3.3953333333333337e-06, + "loss": 1.2032598876953124, + "step": 699400 + }, + { + "epoch": 93.26666666666667, + "grad_norm": 0.9293489456176758, + "learning_rate": 3.388666666666667e-06, + "loss": 1.2010295867919922, + "step": 699500 + }, + { + "epoch": 93.28, + "grad_norm": 0.9297680854797363, + "learning_rate": 3.3820000000000004e-06, + "loss": 1.1998831176757812, + "step": 699600 + }, + { + "epoch": 93.29333333333334, + "grad_norm": 0.9310411810874939, + "learning_rate": 3.375333333333334e-06, + "loss": 1.2022223663330078, + "step": 699700 + }, + { + "epoch": 93.30666666666667, + "grad_norm": 0.8587492108345032, + "learning_rate": 3.3687333333333334e-06, + "loss": 1.2029190063476562, + "step": 699800 + }, + { + "epoch": 93.32, + "grad_norm": 0.8777822852134705, + "learning_rate": 3.362066666666667e-06, + "loss": 1.1976495361328126, + "step": 699900 + }, + { + "epoch": 93.33333333333333, + "grad_norm": 0.9253079891204834, + "learning_rate": 3.3554e-06, + "loss": 1.205234909057617, + "step": 700000 + }, + { + "epoch": 93.34666666666666, + "grad_norm": 0.9172502160072327, + "learning_rate": 3.3487333333333336e-06, + "loss": 1.2025753784179687, + "step": 700100 + }, + { + "epoch": 93.36, + "grad_norm": 0.8835508227348328, + "learning_rate": 3.3420666666666667e-06, + "loss": 1.203255386352539, + "step": 700200 + }, + { + "epoch": 93.37333333333333, + "grad_norm": 0.9050441980361938, + "learning_rate": 3.3354000000000003e-06, + "loss": 1.2038262176513672, + "step": 700300 + }, + { + "epoch": 93.38666666666667, + "grad_norm": 0.8916856050491333, + "learning_rate": 3.328733333333334e-06, + "loss": 1.2023595428466798, + "step": 700400 + }, + { + "epoch": 93.4, + "grad_norm": 0.945793867111206, + "learning_rate": 3.322066666666667e-06, + "loss": 1.2015753173828125, + "step": 700500 + }, + { + "epoch": 93.41333333333333, + "grad_norm": 0.8409869074821472, + "learning_rate": 3.3154000000000005e-06, + "loss": 1.200424346923828, + "step": 700600 + }, + { + "epoch": 93.42666666666666, + "grad_norm": 0.8369486927986145, + "learning_rate": 3.308733333333334e-06, + "loss": 1.2012825012207031, + "step": 700700 + }, + { + "epoch": 93.44, + "grad_norm": 0.9023328423500061, + "learning_rate": 3.3020666666666667e-06, + "loss": 1.1996861267089844, + "step": 700800 + }, + { + "epoch": 93.45333333333333, + "grad_norm": 0.9621808528900146, + "learning_rate": 3.2954e-06, + "loss": 1.2020472717285156, + "step": 700900 + }, + { + "epoch": 93.46666666666667, + "grad_norm": 0.9381176829338074, + "learning_rate": 3.2887333333333334e-06, + "loss": 1.2013578033447265, + "step": 701000 + }, + { + "epoch": 93.48, + "grad_norm": 0.9038723111152649, + "learning_rate": 3.2820666666666665e-06, + "loss": 1.2052571868896484, + "step": 701100 + }, + { + "epoch": 93.49333333333334, + "grad_norm": 0.8777031898498535, + "learning_rate": 3.2754e-06, + "loss": 1.2066443634033204, + "step": 701200 + }, + { + "epoch": 93.50666666666666, + "grad_norm": 0.898979663848877, + "learning_rate": 3.2687333333333336e-06, + "loss": 1.2039942932128906, + "step": 701300 + }, + { + "epoch": 93.52, + "grad_norm": 0.9564325213432312, + "learning_rate": 3.2620666666666667e-06, + "loss": 1.203017120361328, + "step": 701400 + }, + { + "epoch": 93.53333333333333, + "grad_norm": 0.8886229991912842, + "learning_rate": 3.2554e-06, + "loss": 1.2048358917236328, + "step": 701500 + }, + { + "epoch": 93.54666666666667, + "grad_norm": 0.9237152338027954, + "learning_rate": 3.2487333333333333e-06, + "loss": 1.2045701599121095, + "step": 701600 + }, + { + "epoch": 93.56, + "grad_norm": 0.896867036819458, + "learning_rate": 3.242066666666667e-06, + "loss": 1.2023987579345703, + "step": 701700 + }, + { + "epoch": 93.57333333333334, + "grad_norm": 0.9271662831306458, + "learning_rate": 3.2354666666666664e-06, + "loss": 1.2070915985107422, + "step": 701800 + }, + { + "epoch": 93.58666666666667, + "grad_norm": 0.9243695139884949, + "learning_rate": 3.2288e-06, + "loss": 1.2029459381103516, + "step": 701900 + }, + { + "epoch": 93.6, + "grad_norm": 0.8733084797859192, + "learning_rate": 3.2221333333333334e-06, + "loss": 1.2044219207763671, + "step": 702000 + }, + { + "epoch": 93.61333333333333, + "grad_norm": 0.8613144159317017, + "learning_rate": 3.2154666666666666e-06, + "loss": 1.2015194702148437, + "step": 702100 + }, + { + "epoch": 93.62666666666667, + "grad_norm": 0.8946916460990906, + "learning_rate": 3.2088e-06, + "loss": 1.2066204071044921, + "step": 702200 + }, + { + "epoch": 93.64, + "grad_norm": 0.8852377533912659, + "learning_rate": 3.202133333333333e-06, + "loss": 1.2049375915527343, + "step": 702300 + }, + { + "epoch": 93.65333333333334, + "grad_norm": 0.9133490324020386, + "learning_rate": 3.1954666666666667e-06, + "loss": 1.2069032287597656, + "step": 702400 + }, + { + "epoch": 93.66666666666667, + "grad_norm": 0.9736997485160828, + "learning_rate": 3.1888000000000003e-06, + "loss": 1.2061416625976562, + "step": 702500 + }, + { + "epoch": 93.68, + "grad_norm": 0.8475258946418762, + "learning_rate": 3.1821333333333334e-06, + "loss": 1.2070252227783203, + "step": 702600 + }, + { + "epoch": 93.69333333333333, + "grad_norm": 0.8701179623603821, + "learning_rate": 3.175466666666667e-06, + "loss": 1.2072611236572266, + "step": 702700 + }, + { + "epoch": 93.70666666666666, + "grad_norm": 0.9371302723884583, + "learning_rate": 3.1688e-06, + "loss": 1.2073512268066406, + "step": 702800 + }, + { + "epoch": 93.72, + "grad_norm": 0.9097060561180115, + "learning_rate": 3.1621333333333336e-06, + "loss": 1.2026378631591796, + "step": 702900 + }, + { + "epoch": 93.73333333333333, + "grad_norm": 0.938374936580658, + "learning_rate": 3.155466666666667e-06, + "loss": 1.2043750762939454, + "step": 703000 + }, + { + "epoch": 93.74666666666667, + "grad_norm": 0.9308724999427795, + "learning_rate": 3.1488000000000002e-06, + "loss": 1.2057681274414063, + "step": 703100 + }, + { + "epoch": 93.76, + "grad_norm": 0.9380525350570679, + "learning_rate": 3.1421333333333338e-06, + "loss": 1.2027383422851563, + "step": 703200 + }, + { + "epoch": 93.77333333333333, + "grad_norm": 0.9042573571205139, + "learning_rate": 3.135466666666667e-06, + "loss": 1.2053038787841797, + "step": 703300 + }, + { + "epoch": 93.78666666666666, + "grad_norm": 0.8465674519538879, + "learning_rate": 3.1288000000000004e-06, + "loss": 1.2070914459228517, + "step": 703400 + }, + { + "epoch": 93.8, + "grad_norm": 0.9048718214035034, + "learning_rate": 3.1221333333333336e-06, + "loss": 1.2079029846191407, + "step": 703500 + }, + { + "epoch": 93.81333333333333, + "grad_norm": 0.9605961441993713, + "learning_rate": 3.115466666666667e-06, + "loss": 1.205398712158203, + "step": 703600 + }, + { + "epoch": 93.82666666666667, + "grad_norm": 0.8697989583015442, + "learning_rate": 3.1088e-06, + "loss": 1.2042691040039062, + "step": 703700 + }, + { + "epoch": 93.84, + "grad_norm": 0.8812441229820251, + "learning_rate": 3.1022e-06, + "loss": 1.2068780517578126, + "step": 703800 + }, + { + "epoch": 93.85333333333334, + "grad_norm": 0.8852190375328064, + "learning_rate": 3.0955333333333337e-06, + "loss": 1.2042357635498047, + "step": 703900 + }, + { + "epoch": 93.86666666666666, + "grad_norm": 0.9224363565444946, + "learning_rate": 3.0888666666666668e-06, + "loss": 1.203583755493164, + "step": 704000 + }, + { + "epoch": 93.88, + "grad_norm": 0.9226585626602173, + "learning_rate": 3.0822e-06, + "loss": 1.2078118896484376, + "step": 704100 + }, + { + "epoch": 93.89333333333333, + "grad_norm": 0.8923982381820679, + "learning_rate": 3.0755333333333334e-06, + "loss": 1.2106005859375, + "step": 704200 + }, + { + "epoch": 93.90666666666667, + "grad_norm": 0.8998373746871948, + "learning_rate": 3.068866666666667e-06, + "loss": 1.2074279022216796, + "step": 704300 + }, + { + "epoch": 93.92, + "grad_norm": 0.8896543383598328, + "learning_rate": 3.0622e-06, + "loss": 1.2062702178955078, + "step": 704400 + }, + { + "epoch": 93.93333333333334, + "grad_norm": 0.9087594747543335, + "learning_rate": 3.0555333333333336e-06, + "loss": 1.2025060272216797, + "step": 704500 + }, + { + "epoch": 93.94666666666667, + "grad_norm": 0.8689560890197754, + "learning_rate": 3.0488666666666667e-06, + "loss": 1.2087166595458985, + "step": 704600 + }, + { + "epoch": 93.96, + "grad_norm": 0.8625527620315552, + "learning_rate": 3.0422000000000003e-06, + "loss": 1.2062256622314453, + "step": 704700 + }, + { + "epoch": 93.97333333333333, + "grad_norm": 0.895000159740448, + "learning_rate": 3.035533333333334e-06, + "loss": 1.2069078826904296, + "step": 704800 + }, + { + "epoch": 93.98666666666666, + "grad_norm": 0.9123364090919495, + "learning_rate": 3.0288666666666665e-06, + "loss": 1.2070018005371095, + "step": 704900 + }, + { + "epoch": 94.0, + "grad_norm": 0.9559196829795837, + "learning_rate": 3.0222e-06, + "loss": 1.2079464721679687, + "step": 705000 + }, + { + "epoch": 94.01333333333334, + "grad_norm": 0.8545342087745667, + "learning_rate": 3.0155333333333336e-06, + "loss": 1.1980677795410157, + "step": 705100 + }, + { + "epoch": 94.02666666666667, + "grad_norm": 0.8731397390365601, + "learning_rate": 3.0088666666666667e-06, + "loss": 1.1981246948242188, + "step": 705200 + }, + { + "epoch": 94.04, + "grad_norm": 0.9388912320137024, + "learning_rate": 3.0022000000000002e-06, + "loss": 1.198083953857422, + "step": 705300 + }, + { + "epoch": 94.05333333333333, + "grad_norm": 0.8558587431907654, + "learning_rate": 2.9955333333333334e-06, + "loss": 1.1956981658935546, + "step": 705400 + }, + { + "epoch": 94.06666666666666, + "grad_norm": 0.9336191415786743, + "learning_rate": 2.988866666666667e-06, + "loss": 1.1954840087890626, + "step": 705500 + }, + { + "epoch": 94.08, + "grad_norm": 0.9011601209640503, + "learning_rate": 2.9822000000000004e-06, + "loss": 1.1973772430419922, + "step": 705600 + }, + { + "epoch": 94.09333333333333, + "grad_norm": 0.8702425956726074, + "learning_rate": 2.9755333333333335e-06, + "loss": 1.1975491333007813, + "step": 705700 + }, + { + "epoch": 94.10666666666667, + "grad_norm": 0.8665642738342285, + "learning_rate": 2.9689333333333335e-06, + "loss": 1.1951853942871093, + "step": 705800 + }, + { + "epoch": 94.12, + "grad_norm": 0.9032362103462219, + "learning_rate": 2.9622666666666666e-06, + "loss": 1.2001158905029297, + "step": 705900 + }, + { + "epoch": 94.13333333333334, + "grad_norm": 0.8543294668197632, + "learning_rate": 2.9556e-06, + "loss": 1.1968789672851563, + "step": 706000 + }, + { + "epoch": 94.14666666666666, + "grad_norm": 0.8729653358459473, + "learning_rate": 2.9489333333333332e-06, + "loss": 1.2012832641601563, + "step": 706100 + }, + { + "epoch": 94.16, + "grad_norm": 0.9173882603645325, + "learning_rate": 2.9422666666666668e-06, + "loss": 1.197931900024414, + "step": 706200 + }, + { + "epoch": 94.17333333333333, + "grad_norm": 0.8953747153282166, + "learning_rate": 2.9356000000000003e-06, + "loss": 1.201817169189453, + "step": 706300 + }, + { + "epoch": 94.18666666666667, + "grad_norm": 0.9290673732757568, + "learning_rate": 2.9289333333333334e-06, + "loss": 1.2014652252197267, + "step": 706400 + }, + { + "epoch": 94.2, + "grad_norm": 0.8571107387542725, + "learning_rate": 2.922266666666667e-06, + "loss": 1.199576187133789, + "step": 706500 + }, + { + "epoch": 94.21333333333334, + "grad_norm": 0.8771602511405945, + "learning_rate": 2.9156e-06, + "loss": 1.1957323455810547, + "step": 706600 + }, + { + "epoch": 94.22666666666667, + "grad_norm": 0.9305838346481323, + "learning_rate": 2.908933333333333e-06, + "loss": 1.1971856689453124, + "step": 706700 + }, + { + "epoch": 94.24, + "grad_norm": 0.8944154381752014, + "learning_rate": 2.9022666666666667e-06, + "loss": 1.197287826538086, + "step": 706800 + }, + { + "epoch": 94.25333333333333, + "grad_norm": 0.8940684199333191, + "learning_rate": 2.8956e-06, + "loss": 1.197225570678711, + "step": 706900 + }, + { + "epoch": 94.26666666666667, + "grad_norm": 0.9056709408760071, + "learning_rate": 2.8889333333333334e-06, + "loss": 1.1965518951416017, + "step": 707000 + }, + { + "epoch": 94.28, + "grad_norm": 0.9414792060852051, + "learning_rate": 2.882266666666667e-06, + "loss": 1.1968941497802734, + "step": 707100 + }, + { + "epoch": 94.29333333333334, + "grad_norm": 0.8908376097679138, + "learning_rate": 2.8756e-06, + "loss": 1.1973877716064454, + "step": 707200 + }, + { + "epoch": 94.30666666666667, + "grad_norm": 0.9297679662704468, + "learning_rate": 2.8689333333333336e-06, + "loss": 1.1994965362548828, + "step": 707300 + }, + { + "epoch": 94.32, + "grad_norm": 0.8703739047050476, + "learning_rate": 2.862266666666667e-06, + "loss": 1.1965327453613281, + "step": 707400 + }, + { + "epoch": 94.33333333333333, + "grad_norm": 0.8615278601646423, + "learning_rate": 2.8556000000000002e-06, + "loss": 1.2004428863525392, + "step": 707500 + }, + { + "epoch": 94.34666666666666, + "grad_norm": 0.9227656722068787, + "learning_rate": 2.8489333333333334e-06, + "loss": 1.2004918670654297, + "step": 707600 + }, + { + "epoch": 94.36, + "grad_norm": 0.9245252013206482, + "learning_rate": 2.842266666666667e-06, + "loss": 1.1989990997314453, + "step": 707700 + }, + { + "epoch": 94.37333333333333, + "grad_norm": 0.9238764643669128, + "learning_rate": 2.835666666666667e-06, + "loss": 1.2016976928710938, + "step": 707800 + }, + { + "epoch": 94.38666666666667, + "grad_norm": 0.9158653616905212, + "learning_rate": 2.829e-06, + "loss": 1.2035940551757813, + "step": 707900 + }, + { + "epoch": 94.4, + "grad_norm": 0.9159825444221497, + "learning_rate": 2.8223333333333335e-06, + "loss": 1.2021241760253907, + "step": 708000 + }, + { + "epoch": 94.41333333333333, + "grad_norm": 0.9235730171203613, + "learning_rate": 2.815666666666667e-06, + "loss": 1.197962875366211, + "step": 708100 + }, + { + "epoch": 94.42666666666666, + "grad_norm": 0.8646361231803894, + "learning_rate": 2.809e-06, + "loss": 1.1968673706054687, + "step": 708200 + }, + { + "epoch": 94.44, + "grad_norm": 0.9146223068237305, + "learning_rate": 2.8023333333333337e-06, + "loss": 1.1992236328125, + "step": 708300 + }, + { + "epoch": 94.45333333333333, + "grad_norm": 0.9262514710426331, + "learning_rate": 2.7956666666666668e-06, + "loss": 1.1973857879638672, + "step": 708400 + }, + { + "epoch": 94.46666666666667, + "grad_norm": 0.9602396488189697, + "learning_rate": 2.7890000000000003e-06, + "loss": 1.2021874237060546, + "step": 708500 + }, + { + "epoch": 94.48, + "grad_norm": 0.9169455766677856, + "learning_rate": 2.7823333333333334e-06, + "loss": 1.201337127685547, + "step": 708600 + }, + { + "epoch": 94.49333333333334, + "grad_norm": 0.922653079032898, + "learning_rate": 2.7756666666666665e-06, + "loss": 1.2005847930908202, + "step": 708700 + }, + { + "epoch": 94.50666666666666, + "grad_norm": 0.8886169195175171, + "learning_rate": 2.769e-06, + "loss": 1.2020726776123047, + "step": 708800 + }, + { + "epoch": 94.52, + "grad_norm": 0.9149191379547119, + "learning_rate": 2.7623333333333336e-06, + "loss": 1.2006275177001953, + "step": 708900 + }, + { + "epoch": 94.53333333333333, + "grad_norm": 0.9416818618774414, + "learning_rate": 2.7556666666666667e-06, + "loss": 1.20090576171875, + "step": 709000 + }, + { + "epoch": 94.54666666666667, + "grad_norm": 0.9213252067565918, + "learning_rate": 2.7490000000000003e-06, + "loss": 1.1960865783691406, + "step": 709100 + }, + { + "epoch": 94.56, + "grad_norm": 0.9599847197532654, + "learning_rate": 2.7423333333333334e-06, + "loss": 1.2013865661621095, + "step": 709200 + }, + { + "epoch": 94.57333333333334, + "grad_norm": 0.8929022550582886, + "learning_rate": 2.735666666666667e-06, + "loss": 1.1997483825683595, + "step": 709300 + }, + { + "epoch": 94.58666666666667, + "grad_norm": 0.9808670878410339, + "learning_rate": 2.729e-06, + "loss": 1.2010655975341797, + "step": 709400 + }, + { + "epoch": 94.6, + "grad_norm": 0.8982358574867249, + "learning_rate": 2.722333333333333e-06, + "loss": 1.2008942413330077, + "step": 709500 + }, + { + "epoch": 94.61333333333333, + "grad_norm": 0.9171635508537292, + "learning_rate": 2.7156666666666667e-06, + "loss": 1.1997940826416016, + "step": 709600 + }, + { + "epoch": 94.62666666666667, + "grad_norm": 0.8832179307937622, + "learning_rate": 2.7090000000000002e-06, + "loss": 1.2014200592041016, + "step": 709700 + }, + { + "epoch": 94.64, + "grad_norm": 0.8543769121170044, + "learning_rate": 2.7024e-06, + "loss": 1.2015788269042968, + "step": 709800 + }, + { + "epoch": 94.65333333333334, + "grad_norm": 0.8646900057792664, + "learning_rate": 2.6957333333333333e-06, + "loss": 1.203617935180664, + "step": 709900 + }, + { + "epoch": 94.66666666666667, + "grad_norm": 0.8815392255783081, + "learning_rate": 2.689066666666667e-06, + "loss": 1.2008470916748046, + "step": 710000 + }, + { + "epoch": 94.68, + "grad_norm": 0.9132913947105408, + "learning_rate": 2.6824000000000004e-06, + "loss": 1.2024823760986327, + "step": 710100 + }, + { + "epoch": 94.69333333333333, + "grad_norm": 0.9004465341567993, + "learning_rate": 2.6757333333333335e-06, + "loss": 1.2015773010253907, + "step": 710200 + }, + { + "epoch": 94.70666666666666, + "grad_norm": 0.9427282214164734, + "learning_rate": 2.669066666666667e-06, + "loss": 1.2027558135986327, + "step": 710300 + }, + { + "epoch": 94.72, + "grad_norm": 0.9398279786109924, + "learning_rate": 2.6624e-06, + "loss": 1.2022799682617187, + "step": 710400 + }, + { + "epoch": 94.73333333333333, + "grad_norm": 0.953403651714325, + "learning_rate": 2.6557333333333332e-06, + "loss": 1.2058155822753907, + "step": 710500 + }, + { + "epoch": 94.74666666666667, + "grad_norm": 0.9545753598213196, + "learning_rate": 2.6490666666666668e-06, + "loss": 1.204290542602539, + "step": 710600 + }, + { + "epoch": 94.76, + "grad_norm": 0.9156383872032166, + "learning_rate": 2.6424e-06, + "loss": 1.2020454406738281, + "step": 710700 + }, + { + "epoch": 94.77333333333333, + "grad_norm": 0.9403426647186279, + "learning_rate": 2.6357333333333334e-06, + "loss": 1.1997908020019532, + "step": 710800 + }, + { + "epoch": 94.78666666666666, + "grad_norm": 0.8966497182846069, + "learning_rate": 2.629066666666667e-06, + "loss": 1.2073065185546874, + "step": 710900 + }, + { + "epoch": 94.8, + "grad_norm": 0.933814287185669, + "learning_rate": 2.6224e-06, + "loss": 1.2032772064208985, + "step": 711000 + }, + { + "epoch": 94.81333333333333, + "grad_norm": 0.8316300511360168, + "learning_rate": 2.6157333333333336e-06, + "loss": 1.1999528503417969, + "step": 711100 + }, + { + "epoch": 94.82666666666667, + "grad_norm": 0.945821225643158, + "learning_rate": 2.609066666666667e-06, + "loss": 1.2072616577148438, + "step": 711200 + }, + { + "epoch": 94.84, + "grad_norm": 0.9445672035217285, + "learning_rate": 2.6024e-06, + "loss": 1.207545623779297, + "step": 711300 + }, + { + "epoch": 94.85333333333334, + "grad_norm": 0.9229156970977783, + "learning_rate": 2.5957333333333334e-06, + "loss": 1.2040837860107423, + "step": 711400 + }, + { + "epoch": 94.86666666666666, + "grad_norm": 0.9328680634498596, + "learning_rate": 2.589066666666667e-06, + "loss": 1.200493392944336, + "step": 711500 + }, + { + "epoch": 94.88, + "grad_norm": 0.8817058801651001, + "learning_rate": 2.5824e-06, + "loss": 1.204656448364258, + "step": 711600 + }, + { + "epoch": 94.89333333333333, + "grad_norm": 0.8611106276512146, + "learning_rate": 2.5757333333333336e-06, + "loss": 1.2088603973388672, + "step": 711700 + }, + { + "epoch": 94.90666666666667, + "grad_norm": 0.9168562889099121, + "learning_rate": 2.5691333333333335e-06, + "loss": 1.2051824951171874, + "step": 711800 + }, + { + "epoch": 94.92, + "grad_norm": 0.8960808515548706, + "learning_rate": 2.5624666666666666e-06, + "loss": 1.2036978912353515, + "step": 711900 + }, + { + "epoch": 94.93333333333334, + "grad_norm": 0.9241425395011902, + "learning_rate": 2.5558e-06, + "loss": 1.2029954528808593, + "step": 712000 + }, + { + "epoch": 94.94666666666667, + "grad_norm": 0.8758190274238586, + "learning_rate": 2.5491333333333337e-06, + "loss": 1.20275390625, + "step": 712100 + }, + { + "epoch": 94.96, + "grad_norm": 0.8666814565658569, + "learning_rate": 2.542466666666667e-06, + "loss": 1.2033231353759766, + "step": 712200 + }, + { + "epoch": 94.97333333333333, + "grad_norm": 0.9167757034301758, + "learning_rate": 2.5358e-06, + "loss": 1.2045973968505859, + "step": 712300 + }, + { + "epoch": 94.98666666666666, + "grad_norm": 0.9360477924346924, + "learning_rate": 2.5291333333333335e-06, + "loss": 1.2020364379882813, + "step": 712400 + }, + { + "epoch": 95.0, + "grad_norm": 0.9205434918403625, + "learning_rate": 2.5224666666666666e-06, + "loss": 1.2040877532958985, + "step": 712500 + }, + { + "epoch": 95.01333333333334, + "grad_norm": 0.8948925733566284, + "learning_rate": 2.5158e-06, + "loss": 1.1948794555664062, + "step": 712600 + }, + { + "epoch": 95.02666666666667, + "grad_norm": 0.9492332935333252, + "learning_rate": 2.5091333333333337e-06, + "loss": 1.1927398681640624, + "step": 712700 + }, + { + "epoch": 95.04, + "grad_norm": 0.9059979319572449, + "learning_rate": 2.5024666666666668e-06, + "loss": 1.1940172576904298, + "step": 712800 + }, + { + "epoch": 95.05333333333333, + "grad_norm": 0.8861105442047119, + "learning_rate": 2.4958000000000003e-06, + "loss": 1.1955216217041016, + "step": 712900 + }, + { + "epoch": 95.06666666666666, + "grad_norm": 0.9048792719841003, + "learning_rate": 2.4891333333333334e-06, + "loss": 1.1973499298095702, + "step": 713000 + }, + { + "epoch": 95.08, + "grad_norm": 0.8883659839630127, + "learning_rate": 2.4824666666666665e-06, + "loss": 1.1946544647216797, + "step": 713100 + }, + { + "epoch": 95.09333333333333, + "grad_norm": 0.9289974570274353, + "learning_rate": 2.4758e-06, + "loss": 1.1974421691894532, + "step": 713200 + }, + { + "epoch": 95.10666666666667, + "grad_norm": 0.9032652378082275, + "learning_rate": 2.469133333333333e-06, + "loss": 1.1930424499511718, + "step": 713300 + }, + { + "epoch": 95.12, + "grad_norm": 0.8951370716094971, + "learning_rate": 2.4624666666666667e-06, + "loss": 1.197111587524414, + "step": 713400 + }, + { + "epoch": 95.13333333333334, + "grad_norm": 0.8893224596977234, + "learning_rate": 2.4558000000000003e-06, + "loss": 1.1959721374511718, + "step": 713500 + }, + { + "epoch": 95.14666666666666, + "grad_norm": 0.8968496918678284, + "learning_rate": 2.4491333333333334e-06, + "loss": 1.1987583923339844, + "step": 713600 + }, + { + "epoch": 95.16, + "grad_norm": 0.8864784240722656, + "learning_rate": 2.442466666666667e-06, + "loss": 1.1947860717773438, + "step": 713700 + }, + { + "epoch": 95.17333333333333, + "grad_norm": 0.8457802534103394, + "learning_rate": 2.435866666666667e-06, + "loss": 1.1984773254394532, + "step": 713800 + }, + { + "epoch": 95.18666666666667, + "grad_norm": 0.9682843685150146, + "learning_rate": 2.4292000000000004e-06, + "loss": 1.1989812469482422, + "step": 713900 + }, + { + "epoch": 95.2, + "grad_norm": 0.9019679427146912, + "learning_rate": 2.4225333333333335e-06, + "loss": 1.1998885345458985, + "step": 714000 + }, + { + "epoch": 95.21333333333334, + "grad_norm": 0.8968068361282349, + "learning_rate": 2.4158666666666666e-06, + "loss": 1.196024169921875, + "step": 714100 + }, + { + "epoch": 95.22666666666667, + "grad_norm": 0.9033806324005127, + "learning_rate": 2.4092e-06, + "loss": 1.1988829803466796, + "step": 714200 + }, + { + "epoch": 95.24, + "grad_norm": 0.8861857056617737, + "learning_rate": 2.4025333333333333e-06, + "loss": 1.1954184722900392, + "step": 714300 + }, + { + "epoch": 95.25333333333333, + "grad_norm": 0.8714227676391602, + "learning_rate": 2.395866666666667e-06, + "loss": 1.1975115203857423, + "step": 714400 + }, + { + "epoch": 95.26666666666667, + "grad_norm": 0.8732222318649292, + "learning_rate": 2.3892e-06, + "loss": 1.1969498443603515, + "step": 714500 + }, + { + "epoch": 95.28, + "grad_norm": 0.8276050090789795, + "learning_rate": 2.3825333333333335e-06, + "loss": 1.197633285522461, + "step": 714600 + }, + { + "epoch": 95.29333333333334, + "grad_norm": 0.8574380278587341, + "learning_rate": 2.375866666666667e-06, + "loss": 1.1978040313720704, + "step": 714700 + }, + { + "epoch": 95.30666666666667, + "grad_norm": 0.9271215200424194, + "learning_rate": 2.3692e-06, + "loss": 1.1961704254150392, + "step": 714800 + }, + { + "epoch": 95.32, + "grad_norm": 0.9471455216407776, + "learning_rate": 2.3625333333333337e-06, + "loss": 1.193292694091797, + "step": 714900 + }, + { + "epoch": 95.33333333333333, + "grad_norm": 0.9028796553611755, + "learning_rate": 2.3558666666666668e-06, + "loss": 1.1993869018554688, + "step": 715000 + }, + { + "epoch": 95.34666666666666, + "grad_norm": 0.8910233378410339, + "learning_rate": 2.3492e-06, + "loss": 1.1982572174072266, + "step": 715100 + }, + { + "epoch": 95.36, + "grad_norm": 0.8883600831031799, + "learning_rate": 2.3425333333333334e-06, + "loss": 1.1972041320800781, + "step": 715200 + }, + { + "epoch": 95.37333333333333, + "grad_norm": 0.8244373202323914, + "learning_rate": 2.335866666666667e-06, + "loss": 1.1958223724365233, + "step": 715300 + }, + { + "epoch": 95.38666666666667, + "grad_norm": 0.8764129281044006, + "learning_rate": 2.3292e-06, + "loss": 1.197607421875, + "step": 715400 + }, + { + "epoch": 95.4, + "grad_norm": 0.9632822275161743, + "learning_rate": 2.3225333333333336e-06, + "loss": 1.1966116333007812, + "step": 715500 + }, + { + "epoch": 95.41333333333333, + "grad_norm": 0.8649945855140686, + "learning_rate": 2.3158666666666667e-06, + "loss": 1.2001445770263672, + "step": 715600 + }, + { + "epoch": 95.42666666666666, + "grad_norm": 0.8928907513618469, + "learning_rate": 2.3092000000000003e-06, + "loss": 1.1985771942138672, + "step": 715700 + }, + { + "epoch": 95.44, + "grad_norm": 0.8795034289360046, + "learning_rate": 2.3026e-06, + "loss": 1.1941232299804687, + "step": 715800 + }, + { + "epoch": 95.45333333333333, + "grad_norm": 0.8100056052207947, + "learning_rate": 2.2959333333333337e-06, + "loss": 1.1983812713623048, + "step": 715900 + }, + { + "epoch": 95.46666666666667, + "grad_norm": 0.8939315676689148, + "learning_rate": 2.289266666666667e-06, + "loss": 1.199446029663086, + "step": 716000 + }, + { + "epoch": 95.48, + "grad_norm": 0.8684143424034119, + "learning_rate": 2.2826e-06, + "loss": 1.1973661804199218, + "step": 716100 + }, + { + "epoch": 95.49333333333334, + "grad_norm": 0.8790379166603088, + "learning_rate": 2.2759333333333335e-06, + "loss": 1.198766098022461, + "step": 716200 + }, + { + "epoch": 95.50666666666666, + "grad_norm": 0.8545668721199036, + "learning_rate": 2.2692666666666666e-06, + "loss": 1.2022593688964844, + "step": 716300 + }, + { + "epoch": 95.52, + "grad_norm": 0.9270732402801514, + "learning_rate": 2.2626e-06, + "loss": 1.1938504028320311, + "step": 716400 + }, + { + "epoch": 95.53333333333333, + "grad_norm": 0.9058865308761597, + "learning_rate": 2.2559333333333337e-06, + "loss": 1.1984404754638671, + "step": 716500 + }, + { + "epoch": 95.54666666666667, + "grad_norm": 0.9313427805900574, + "learning_rate": 2.249266666666667e-06, + "loss": 1.1992517852783202, + "step": 716600 + }, + { + "epoch": 95.56, + "grad_norm": 0.9284090399742126, + "learning_rate": 2.2426000000000003e-06, + "loss": 1.2009918212890625, + "step": 716700 + }, + { + "epoch": 95.57333333333334, + "grad_norm": 0.893657386302948, + "learning_rate": 2.2359333333333335e-06, + "loss": 1.1964833068847656, + "step": 716800 + }, + { + "epoch": 95.58666666666667, + "grad_norm": 0.8945286273956299, + "learning_rate": 2.2292666666666666e-06, + "loss": 1.197146224975586, + "step": 716900 + }, + { + "epoch": 95.6, + "grad_norm": 0.945655345916748, + "learning_rate": 2.2226e-06, + "loss": 1.197714614868164, + "step": 717000 + }, + { + "epoch": 95.61333333333333, + "grad_norm": 0.8761715292930603, + "learning_rate": 2.2159333333333332e-06, + "loss": 1.1985298919677734, + "step": 717100 + }, + { + "epoch": 95.62666666666667, + "grad_norm": 0.9021620154380798, + "learning_rate": 2.2092666666666668e-06, + "loss": 1.1991383361816406, + "step": 717200 + }, + { + "epoch": 95.64, + "grad_norm": 0.8844672441482544, + "learning_rate": 2.2026000000000003e-06, + "loss": 1.1967192840576173, + "step": 717300 + }, + { + "epoch": 95.65333333333334, + "grad_norm": 0.8024809956550598, + "learning_rate": 2.1959333333333334e-06, + "loss": 1.1974788665771485, + "step": 717400 + }, + { + "epoch": 95.66666666666667, + "grad_norm": 0.9280022978782654, + "learning_rate": 2.189266666666667e-06, + "loss": 1.1954544830322265, + "step": 717500 + }, + { + "epoch": 95.68, + "grad_norm": 0.9242950677871704, + "learning_rate": 2.1826e-06, + "loss": 1.1988795471191407, + "step": 717600 + }, + { + "epoch": 95.69333333333333, + "grad_norm": 0.8772919178009033, + "learning_rate": 2.175933333333333e-06, + "loss": 1.1997234344482421, + "step": 717700 + }, + { + "epoch": 95.70666666666666, + "grad_norm": 0.9006758332252502, + "learning_rate": 2.169333333333333e-06, + "loss": 1.1984378814697265, + "step": 717800 + }, + { + "epoch": 95.72, + "grad_norm": 0.8565598726272583, + "learning_rate": 2.1626666666666667e-06, + "loss": 1.1955886840820313, + "step": 717900 + }, + { + "epoch": 95.73333333333333, + "grad_norm": 0.933894157409668, + "learning_rate": 2.156e-06, + "loss": 1.1962789154052735, + "step": 718000 + }, + { + "epoch": 95.74666666666667, + "grad_norm": 0.8751091957092285, + "learning_rate": 2.1493333333333333e-06, + "loss": 1.201226043701172, + "step": 718100 + }, + { + "epoch": 95.76, + "grad_norm": 0.8495886921882629, + "learning_rate": 2.142666666666667e-06, + "loss": 1.1997674560546876, + "step": 718200 + }, + { + "epoch": 95.77333333333333, + "grad_norm": 0.9047145247459412, + "learning_rate": 2.136e-06, + "loss": 1.193944854736328, + "step": 718300 + }, + { + "epoch": 95.78666666666666, + "grad_norm": 0.9060803055763245, + "learning_rate": 2.1293333333333335e-06, + "loss": 1.1976805877685548, + "step": 718400 + }, + { + "epoch": 95.8, + "grad_norm": 0.9374447464942932, + "learning_rate": 2.122666666666667e-06, + "loss": 1.1980715942382814, + "step": 718500 + }, + { + "epoch": 95.81333333333333, + "grad_norm": 0.9492117762565613, + "learning_rate": 2.116e-06, + "loss": 1.2027890014648437, + "step": 718600 + }, + { + "epoch": 95.82666666666667, + "grad_norm": 0.9291294813156128, + "learning_rate": 2.1093333333333333e-06, + "loss": 1.19962158203125, + "step": 718700 + }, + { + "epoch": 95.84, + "grad_norm": 0.8308159112930298, + "learning_rate": 2.102666666666667e-06, + "loss": 1.197718048095703, + "step": 718800 + }, + { + "epoch": 95.85333333333334, + "grad_norm": 0.8678395748138428, + "learning_rate": 2.096e-06, + "loss": 1.200029296875, + "step": 718900 + }, + { + "epoch": 95.86666666666666, + "grad_norm": 0.8894922733306885, + "learning_rate": 2.0893333333333335e-06, + "loss": 1.2026903533935547, + "step": 719000 + }, + { + "epoch": 95.88, + "grad_norm": 0.9153121113777161, + "learning_rate": 2.082666666666667e-06, + "loss": 1.204001922607422, + "step": 719100 + }, + { + "epoch": 95.89333333333333, + "grad_norm": 0.8754669427871704, + "learning_rate": 2.076e-06, + "loss": 1.197853546142578, + "step": 719200 + }, + { + "epoch": 95.90666666666667, + "grad_norm": 0.8554826974868774, + "learning_rate": 2.0693333333333337e-06, + "loss": 1.205391387939453, + "step": 719300 + }, + { + "epoch": 95.92, + "grad_norm": 0.9618128538131714, + "learning_rate": 2.0626666666666668e-06, + "loss": 1.2002410125732421, + "step": 719400 + }, + { + "epoch": 95.93333333333334, + "grad_norm": 0.9223273992538452, + "learning_rate": 2.056e-06, + "loss": 1.1999185943603516, + "step": 719500 + }, + { + "epoch": 95.94666666666667, + "grad_norm": 0.9011958241462708, + "learning_rate": 2.0493333333333334e-06, + "loss": 1.1979779815673828, + "step": 719600 + }, + { + "epoch": 95.96, + "grad_norm": 0.9180704951286316, + "learning_rate": 2.0426666666666665e-06, + "loss": 1.198479537963867, + "step": 719700 + }, + { + "epoch": 95.97333333333333, + "grad_norm": 0.9206179976463318, + "learning_rate": 2.036066666666667e-06, + "loss": 1.2030664825439452, + "step": 719800 + }, + { + "epoch": 95.98666666666666, + "grad_norm": 0.9367160797119141, + "learning_rate": 2.0294e-06, + "loss": 1.2019683837890625, + "step": 719900 + }, + { + "epoch": 96.0, + "grad_norm": 0.9119823575019836, + "learning_rate": 2.0227333333333335e-06, + "loss": 1.202654571533203, + "step": 720000 + }, + { + "epoch": 96.01333333333334, + "grad_norm": 0.9093582034111023, + "learning_rate": 2.0160666666666667e-06, + "loss": 1.1921070098876954, + "step": 720100 + }, + { + "epoch": 96.02666666666667, + "grad_norm": 0.8500725030899048, + "learning_rate": 2.0094e-06, + "loss": 1.1908522033691407, + "step": 720200 + }, + { + "epoch": 96.04, + "grad_norm": 0.9141291379928589, + "learning_rate": 2.0027333333333337e-06, + "loss": 1.1958201599121094, + "step": 720300 + }, + { + "epoch": 96.05333333333333, + "grad_norm": 0.9543992280960083, + "learning_rate": 1.996066666666667e-06, + "loss": 1.1920267486572265, + "step": 720400 + }, + { + "epoch": 96.06666666666666, + "grad_norm": 0.9262734651565552, + "learning_rate": 1.9894e-06, + "loss": 1.193255157470703, + "step": 720500 + }, + { + "epoch": 96.08, + "grad_norm": 0.8305232524871826, + "learning_rate": 1.9827333333333335e-06, + "loss": 1.1950745391845703, + "step": 720600 + }, + { + "epoch": 96.09333333333333, + "grad_norm": 0.8898489475250244, + "learning_rate": 1.9760666666666666e-06, + "loss": 1.1932999420166015, + "step": 720700 + }, + { + "epoch": 96.10666666666667, + "grad_norm": 0.8334019780158997, + "learning_rate": 1.9694e-06, + "loss": 1.1975872039794921, + "step": 720800 + }, + { + "epoch": 96.12, + "grad_norm": 0.8538830876350403, + "learning_rate": 1.9627333333333333e-06, + "loss": 1.1930878448486328, + "step": 720900 + }, + { + "epoch": 96.13333333333334, + "grad_norm": 0.940512478351593, + "learning_rate": 1.956066666666667e-06, + "loss": 1.1931523895263672, + "step": 721000 + }, + { + "epoch": 96.14666666666666, + "grad_norm": 0.9328157305717468, + "learning_rate": 1.9494000000000003e-06, + "loss": 1.1930429077148437, + "step": 721100 + }, + { + "epoch": 96.16, + "grad_norm": 0.8638653755187988, + "learning_rate": 1.9427333333333335e-06, + "loss": 1.1945172119140626, + "step": 721200 + }, + { + "epoch": 96.17333333333333, + "grad_norm": 0.9362466931343079, + "learning_rate": 1.936066666666667e-06, + "loss": 1.1952394104003907, + "step": 721300 + }, + { + "epoch": 96.18666666666667, + "grad_norm": 0.9211965203285217, + "learning_rate": 1.9294e-06, + "loss": 1.1918714141845703, + "step": 721400 + }, + { + "epoch": 96.2, + "grad_norm": 0.8353525996208191, + "learning_rate": 1.9227333333333332e-06, + "loss": 1.1955091857910156, + "step": 721500 + }, + { + "epoch": 96.21333333333334, + "grad_norm": 0.92364901304245, + "learning_rate": 1.9160666666666668e-06, + "loss": 1.196720428466797, + "step": 721600 + }, + { + "epoch": 96.22666666666667, + "grad_norm": 0.8855310082435608, + "learning_rate": 1.9094e-06, + "loss": 1.1948504638671875, + "step": 721700 + }, + { + "epoch": 96.24, + "grad_norm": 0.8908301591873169, + "learning_rate": 1.9028e-06, + "loss": 1.1984718322753907, + "step": 721800 + }, + { + "epoch": 96.25333333333333, + "grad_norm": 0.8790364861488342, + "learning_rate": 1.8961333333333333e-06, + "loss": 1.196904296875, + "step": 721900 + }, + { + "epoch": 96.26666666666667, + "grad_norm": 0.883306622505188, + "learning_rate": 1.8894666666666669e-06, + "loss": 1.1939882659912109, + "step": 722000 + }, + { + "epoch": 96.28, + "grad_norm": 0.9927467107772827, + "learning_rate": 1.8828000000000002e-06, + "loss": 1.19223388671875, + "step": 722100 + }, + { + "epoch": 96.29333333333334, + "grad_norm": 0.8814199566841125, + "learning_rate": 1.8761333333333335e-06, + "loss": 1.1944772338867187, + "step": 722200 + }, + { + "epoch": 96.30666666666667, + "grad_norm": 0.9252114295959473, + "learning_rate": 1.8694666666666667e-06, + "loss": 1.1965172576904297, + "step": 722300 + }, + { + "epoch": 96.32, + "grad_norm": 0.997600257396698, + "learning_rate": 1.8628e-06, + "loss": 1.1935216522216796, + "step": 722400 + }, + { + "epoch": 96.33333333333333, + "grad_norm": 0.9429076910018921, + "learning_rate": 1.8561333333333333e-06, + "loss": 1.1952505493164063, + "step": 722500 + }, + { + "epoch": 96.34666666666666, + "grad_norm": 0.9006048440933228, + "learning_rate": 1.8494666666666666e-06, + "loss": 1.195484848022461, + "step": 722600 + }, + { + "epoch": 96.36, + "grad_norm": 0.8496437072753906, + "learning_rate": 1.8428000000000002e-06, + "loss": 1.1942832946777344, + "step": 722700 + }, + { + "epoch": 96.37333333333333, + "grad_norm": 0.9131640791893005, + "learning_rate": 1.8361333333333335e-06, + "loss": 1.1970438385009765, + "step": 722800 + }, + { + "epoch": 96.38666666666667, + "grad_norm": 0.861127495765686, + "learning_rate": 1.8294666666666668e-06, + "loss": 1.1988032531738282, + "step": 722900 + }, + { + "epoch": 96.4, + "grad_norm": 0.8841111063957214, + "learning_rate": 1.8228000000000001e-06, + "loss": 1.1938710021972656, + "step": 723000 + }, + { + "epoch": 96.41333333333333, + "grad_norm": 0.8644812107086182, + "learning_rate": 1.8161333333333335e-06, + "loss": 1.1916226959228515, + "step": 723100 + }, + { + "epoch": 96.42666666666666, + "grad_norm": 0.9179438352584839, + "learning_rate": 1.8094666666666666e-06, + "loss": 1.1959225463867187, + "step": 723200 + }, + { + "epoch": 96.44, + "grad_norm": 0.8909555077552795, + "learning_rate": 1.8028e-06, + "loss": 1.1968844604492188, + "step": 723300 + }, + { + "epoch": 96.45333333333333, + "grad_norm": 0.8341104984283447, + "learning_rate": 1.7961333333333332e-06, + "loss": 1.1963389587402344, + "step": 723400 + }, + { + "epoch": 96.46666666666667, + "grad_norm": 0.8875642418861389, + "learning_rate": 1.7894666666666668e-06, + "loss": 1.200348129272461, + "step": 723500 + }, + { + "epoch": 96.48, + "grad_norm": 0.9483053684234619, + "learning_rate": 1.7828000000000001e-06, + "loss": 1.1985345458984376, + "step": 723600 + }, + { + "epoch": 96.49333333333334, + "grad_norm": 0.8640918731689453, + "learning_rate": 1.7761333333333334e-06, + "loss": 1.1940691375732422, + "step": 723700 + }, + { + "epoch": 96.50666666666666, + "grad_norm": 0.8642159700393677, + "learning_rate": 1.7695333333333334e-06, + "loss": 1.1963560485839844, + "step": 723800 + }, + { + "epoch": 96.52, + "grad_norm": 0.8903900384902954, + "learning_rate": 1.762866666666667e-06, + "loss": 1.199880599975586, + "step": 723900 + }, + { + "epoch": 96.53333333333333, + "grad_norm": 0.9225534200668335, + "learning_rate": 1.7562000000000002e-06, + "loss": 1.197684326171875, + "step": 724000 + }, + { + "epoch": 96.54666666666667, + "grad_norm": 0.8352228403091431, + "learning_rate": 1.7495333333333336e-06, + "loss": 1.200512924194336, + "step": 724100 + }, + { + "epoch": 96.56, + "grad_norm": 0.895626962184906, + "learning_rate": 1.7428666666666667e-06, + "loss": 1.1950564575195313, + "step": 724200 + }, + { + "epoch": 96.57333333333334, + "grad_norm": 0.8830674290657043, + "learning_rate": 1.7362e-06, + "loss": 1.1997767639160157, + "step": 724300 + }, + { + "epoch": 96.58666666666667, + "grad_norm": 0.875395655632019, + "learning_rate": 1.7295333333333333e-06, + "loss": 1.197208786010742, + "step": 724400 + }, + { + "epoch": 96.6, + "grad_norm": 0.9121081233024597, + "learning_rate": 1.7228666666666666e-06, + "loss": 1.1945203399658204, + "step": 724500 + }, + { + "epoch": 96.61333333333333, + "grad_norm": 0.9376330375671387, + "learning_rate": 1.7162000000000002e-06, + "loss": 1.1965845489501954, + "step": 724600 + }, + { + "epoch": 96.62666666666667, + "grad_norm": 0.8596921563148499, + "learning_rate": 1.7095333333333335e-06, + "loss": 1.195692138671875, + "step": 724700 + }, + { + "epoch": 96.64, + "grad_norm": 0.8527398705482483, + "learning_rate": 1.7028666666666668e-06, + "loss": 1.1965853118896483, + "step": 724800 + }, + { + "epoch": 96.65333333333334, + "grad_norm": 0.8580175042152405, + "learning_rate": 1.6962000000000002e-06, + "loss": 1.1956391143798828, + "step": 724900 + }, + { + "epoch": 96.66666666666667, + "grad_norm": 0.9003075957298279, + "learning_rate": 1.6895333333333333e-06, + "loss": 1.1976248931884765, + "step": 725000 + }, + { + "epoch": 96.68, + "grad_norm": 0.8510597348213196, + "learning_rate": 1.6828666666666666e-06, + "loss": 1.1964473724365234, + "step": 725100 + }, + { + "epoch": 96.69333333333333, + "grad_norm": 0.8973057866096497, + "learning_rate": 1.6762e-06, + "loss": 1.197496337890625, + "step": 725200 + }, + { + "epoch": 96.70666666666666, + "grad_norm": 0.8938978910446167, + "learning_rate": 1.6695333333333333e-06, + "loss": 1.195022964477539, + "step": 725300 + }, + { + "epoch": 96.72, + "grad_norm": 0.9063222408294678, + "learning_rate": 1.6628666666666668e-06, + "loss": 1.1933713531494141, + "step": 725400 + }, + { + "epoch": 96.73333333333333, + "grad_norm": 0.8786043524742126, + "learning_rate": 1.6562000000000001e-06, + "loss": 1.1964022827148437, + "step": 725500 + }, + { + "epoch": 96.74666666666667, + "grad_norm": 0.9674188494682312, + "learning_rate": 1.6495333333333335e-06, + "loss": 1.1983873748779297, + "step": 725600 + }, + { + "epoch": 96.76, + "grad_norm": 0.9302994608879089, + "learning_rate": 1.6428666666666668e-06, + "loss": 1.1975536346435547, + "step": 725700 + }, + { + "epoch": 96.77333333333333, + "grad_norm": 0.8915535807609558, + "learning_rate": 1.636266666666667e-06, + "loss": 1.1970543670654297, + "step": 725800 + }, + { + "epoch": 96.78666666666666, + "grad_norm": 0.91758793592453, + "learning_rate": 1.6296000000000002e-06, + "loss": 1.2024964141845702, + "step": 725900 + }, + { + "epoch": 96.8, + "grad_norm": 0.8457819223403931, + "learning_rate": 1.6229333333333331e-06, + "loss": 1.195786590576172, + "step": 726000 + }, + { + "epoch": 96.81333333333333, + "grad_norm": 0.9062672257423401, + "learning_rate": 1.6162666666666667e-06, + "loss": 1.1972097778320312, + "step": 726100 + }, + { + "epoch": 96.82666666666667, + "grad_norm": 0.9275849461555481, + "learning_rate": 1.6096e-06, + "loss": 1.2003240966796875, + "step": 726200 + }, + { + "epoch": 96.84, + "grad_norm": 0.9141822457313538, + "learning_rate": 1.6029333333333333e-06, + "loss": 1.1985065460205078, + "step": 726300 + }, + { + "epoch": 96.85333333333334, + "grad_norm": 0.8968507647514343, + "learning_rate": 1.5962666666666667e-06, + "loss": 1.1965088653564453, + "step": 726400 + }, + { + "epoch": 96.86666666666666, + "grad_norm": 0.913077175617218, + "learning_rate": 1.5896000000000002e-06, + "loss": 1.1945548248291016, + "step": 726500 + }, + { + "epoch": 96.88, + "grad_norm": 0.8856280446052551, + "learning_rate": 1.5829333333333335e-06, + "loss": 1.198264389038086, + "step": 726600 + }, + { + "epoch": 96.89333333333333, + "grad_norm": 0.9587183594703674, + "learning_rate": 1.5762666666666669e-06, + "loss": 1.198867950439453, + "step": 726700 + }, + { + "epoch": 96.90666666666667, + "grad_norm": 0.8962403535842896, + "learning_rate": 1.5696000000000002e-06, + "loss": 1.1941478729248047, + "step": 726800 + }, + { + "epoch": 96.92, + "grad_norm": 0.9148259162902832, + "learning_rate": 1.5629333333333333e-06, + "loss": 1.1963572692871094, + "step": 726900 + }, + { + "epoch": 96.93333333333334, + "grad_norm": 0.9416415691375732, + "learning_rate": 1.5562666666666668e-06, + "loss": 1.1955250549316405, + "step": 727000 + }, + { + "epoch": 96.94666666666667, + "grad_norm": 0.835249662399292, + "learning_rate": 1.5496e-06, + "loss": 1.1965911102294922, + "step": 727100 + }, + { + "epoch": 96.96, + "grad_norm": 0.8827676177024841, + "learning_rate": 1.5429333333333333e-06, + "loss": 1.1973089599609374, + "step": 727200 + }, + { + "epoch": 96.97333333333333, + "grad_norm": 0.8775216937065125, + "learning_rate": 1.5362666666666668e-06, + "loss": 1.1944822692871093, + "step": 727300 + }, + { + "epoch": 96.98666666666666, + "grad_norm": 0.8615829944610596, + "learning_rate": 1.5296000000000001e-06, + "loss": 1.1994013214111328, + "step": 727400 + }, + { + "epoch": 97.0, + "grad_norm": 0.9200208783149719, + "learning_rate": 1.5229333333333333e-06, + "loss": 1.1997895050048828, + "step": 727500 + }, + { + "epoch": 97.01333333333334, + "grad_norm": 0.8486922383308411, + "learning_rate": 1.5162666666666668e-06, + "loss": 1.1949724578857421, + "step": 727600 + }, + { + "epoch": 97.02666666666667, + "grad_norm": 0.8756220936775208, + "learning_rate": 1.5096000000000001e-06, + "loss": 1.1930170440673828, + "step": 727700 + }, + { + "epoch": 97.04, + "grad_norm": Infinity, + "learning_rate": 1.5029333333333335e-06, + "loss": 1.1907662200927733, + "step": 727800 + }, + { + "epoch": 97.05333333333333, + "grad_norm": 0.9102802276611328, + "learning_rate": 1.4963333333333334e-06, + "loss": 1.1966674041748047, + "step": 727900 + }, + { + "epoch": 97.06666666666666, + "grad_norm": 0.8804049491882324, + "learning_rate": 1.489666666666667e-06, + "loss": 1.1915321350097656, + "step": 728000 + }, + { + "epoch": 97.08, + "grad_norm": 0.8462570309638977, + "learning_rate": 1.483e-06, + "loss": 1.188415756225586, + "step": 728100 + }, + { + "epoch": 97.09333333333333, + "grad_norm": 0.9019154906272888, + "learning_rate": 1.4763333333333334e-06, + "loss": 1.1914682006835937, + "step": 728200 + }, + { + "epoch": 97.10666666666667, + "grad_norm": 0.9102103114128113, + "learning_rate": 1.4696666666666667e-06, + "loss": 1.1929423522949218, + "step": 728300 + }, + { + "epoch": 97.12, + "grad_norm": 0.9278746843338013, + "learning_rate": 1.4630000000000002e-06, + "loss": 1.190726318359375, + "step": 728400 + }, + { + "epoch": 97.13333333333334, + "grad_norm": 0.9312158226966858, + "learning_rate": 1.4563333333333333e-06, + "loss": 1.1920890045166015, + "step": 728500 + }, + { + "epoch": 97.14666666666666, + "grad_norm": 0.8610623478889465, + "learning_rate": 1.4496666666666667e-06, + "loss": 1.1913136291503905, + "step": 728600 + }, + { + "epoch": 97.16, + "grad_norm": 0.8517552614212036, + "learning_rate": 1.443e-06, + "loss": 1.1964224243164063, + "step": 728700 + }, + { + "epoch": 97.17333333333333, + "grad_norm": 0.9079805612564087, + "learning_rate": 1.4363333333333335e-06, + "loss": 1.1886049652099608, + "step": 728800 + }, + { + "epoch": 97.18666666666667, + "grad_norm": 0.8894618153572083, + "learning_rate": 1.4296666666666666e-06, + "loss": 1.1893565368652343, + "step": 728900 + }, + { + "epoch": 97.2, + "grad_norm": 0.927837610244751, + "learning_rate": 1.423e-06, + "loss": 1.1915690612792968, + "step": 729000 + }, + { + "epoch": 97.21333333333334, + "grad_norm": 0.9195118546485901, + "learning_rate": 1.4163333333333333e-06, + "loss": 1.192691650390625, + "step": 729100 + }, + { + "epoch": 97.22666666666667, + "grad_norm": 0.8661218285560608, + "learning_rate": 1.4096666666666668e-06, + "loss": 1.1943994903564452, + "step": 729200 + }, + { + "epoch": 97.24, + "grad_norm": 0.9145841002464294, + "learning_rate": 1.4030000000000002e-06, + "loss": 1.197445068359375, + "step": 729300 + }, + { + "epoch": 97.25333333333333, + "grad_norm": 0.8523109555244446, + "learning_rate": 1.3963333333333333e-06, + "loss": 1.194771499633789, + "step": 729400 + }, + { + "epoch": 97.26666666666667, + "grad_norm": 0.8701912760734558, + "learning_rate": 1.3896666666666668e-06, + "loss": 1.1876846313476563, + "step": 729500 + }, + { + "epoch": 97.28, + "grad_norm": 0.8822584748268127, + "learning_rate": 1.3830000000000001e-06, + "loss": 1.195957565307617, + "step": 729600 + }, + { + "epoch": 97.29333333333334, + "grad_norm": 0.8969473242759705, + "learning_rate": 1.3763333333333335e-06, + "loss": 1.1934420013427733, + "step": 729700 + }, + { + "epoch": 97.30666666666667, + "grad_norm": 0.9088907241821289, + "learning_rate": 1.3696666666666666e-06, + "loss": 1.1958892822265625, + "step": 729800 + }, + { + "epoch": 97.32, + "grad_norm": 0.7961787581443787, + "learning_rate": 1.3630666666666667e-06, + "loss": 1.189772491455078, + "step": 729900 + }, + { + "epoch": 97.33333333333333, + "grad_norm": 0.9014933705329895, + "learning_rate": 1.3564e-06, + "loss": 1.1911412811279296, + "step": 730000 + }, + { + "epoch": 97.34666666666666, + "grad_norm": 0.9077130556106567, + "learning_rate": 1.3497333333333334e-06, + "loss": 1.1925405883789062, + "step": 730100 + }, + { + "epoch": 97.36, + "grad_norm": 0.8387811779975891, + "learning_rate": 1.3430666666666667e-06, + "loss": 1.191651382446289, + "step": 730200 + }, + { + "epoch": 97.37333333333333, + "grad_norm": 0.8837115168571472, + "learning_rate": 1.3364e-06, + "loss": 1.1978406524658203, + "step": 730300 + }, + { + "epoch": 97.38666666666667, + "grad_norm": 0.891261100769043, + "learning_rate": 1.3297333333333334e-06, + "loss": 1.1935235595703124, + "step": 730400 + }, + { + "epoch": 97.4, + "grad_norm": 0.9634777903556824, + "learning_rate": 1.3230666666666667e-06, + "loss": 1.1935658264160156, + "step": 730500 + }, + { + "epoch": 97.41333333333333, + "grad_norm": 0.9264794588088989, + "learning_rate": 1.3164e-06, + "loss": 1.1933699035644532, + "step": 730600 + }, + { + "epoch": 97.42666666666666, + "grad_norm": 0.9273287653923035, + "learning_rate": 1.3097333333333335e-06, + "loss": 1.1926664733886718, + "step": 730700 + }, + { + "epoch": 97.44, + "grad_norm": 0.9044145941734314, + "learning_rate": 1.3030666666666667e-06, + "loss": 1.194606475830078, + "step": 730800 + }, + { + "epoch": 97.45333333333333, + "grad_norm": 0.916735053062439, + "learning_rate": 1.2964e-06, + "loss": 1.192816925048828, + "step": 730900 + }, + { + "epoch": 97.46666666666667, + "grad_norm": 0.9041197896003723, + "learning_rate": 1.2897333333333333e-06, + "loss": 1.1932903289794923, + "step": 731000 + }, + { + "epoch": 97.48, + "grad_norm": 0.8889577984809875, + "learning_rate": 1.2830666666666669e-06, + "loss": 1.1962411499023438, + "step": 731100 + }, + { + "epoch": 97.49333333333334, + "grad_norm": 0.910078763961792, + "learning_rate": 1.2764e-06, + "loss": 1.1956531524658203, + "step": 731200 + }, + { + "epoch": 97.50666666666666, + "grad_norm": 0.8650588393211365, + "learning_rate": 1.2697333333333333e-06, + "loss": 1.1919945526123046, + "step": 731300 + }, + { + "epoch": 97.52, + "grad_norm": 0.9000649452209473, + "learning_rate": 1.2630666666666668e-06, + "loss": 1.1926378631591796, + "step": 731400 + }, + { + "epoch": 97.53333333333333, + "grad_norm": 0.8907895088195801, + "learning_rate": 1.2564000000000002e-06, + "loss": 1.1921055603027344, + "step": 731500 + }, + { + "epoch": 97.54666666666667, + "grad_norm": 0.8809535503387451, + "learning_rate": 1.2497333333333333e-06, + "loss": 1.1962607574462891, + "step": 731600 + }, + { + "epoch": 97.56, + "grad_norm": 0.8726817965507507, + "learning_rate": 1.2430666666666666e-06, + "loss": 1.1959927368164063, + "step": 731700 + }, + { + "epoch": 97.57333333333334, + "grad_norm": 0.9167771935462952, + "learning_rate": 1.2364000000000001e-06, + "loss": 1.1933238220214843, + "step": 731800 + }, + { + "epoch": 97.58666666666667, + "grad_norm": 0.8944850564002991, + "learning_rate": 1.2298e-06, + "loss": 1.198369140625, + "step": 731900 + }, + { + "epoch": 97.6, + "grad_norm": 0.9288177490234375, + "learning_rate": 1.2231333333333334e-06, + "loss": 1.1962329864501953, + "step": 732000 + }, + { + "epoch": 97.61333333333333, + "grad_norm": 0.8759905099868774, + "learning_rate": 1.2164666666666667e-06, + "loss": 1.1970404815673827, + "step": 732100 + }, + { + "epoch": 97.62666666666667, + "grad_norm": 0.9289444088935852, + "learning_rate": 1.2098e-06, + "loss": 1.1988601684570312, + "step": 732200 + }, + { + "epoch": 97.64, + "grad_norm": 0.888252317905426, + "learning_rate": 1.2031333333333334e-06, + "loss": 1.1959870910644532, + "step": 732300 + }, + { + "epoch": 97.65333333333334, + "grad_norm": 0.9400676488876343, + "learning_rate": 1.1964666666666667e-06, + "loss": 1.1936607360839844, + "step": 732400 + }, + { + "epoch": 97.66666666666667, + "grad_norm": 0.7995263934135437, + "learning_rate": 1.1898e-06, + "loss": 1.1914346313476563, + "step": 732500 + }, + { + "epoch": 97.68, + "grad_norm": 0.911656379699707, + "learning_rate": 1.1831333333333334e-06, + "loss": 1.1957060241699218, + "step": 732600 + }, + { + "epoch": 97.69333333333333, + "grad_norm": 0.9077141880989075, + "learning_rate": 1.1764666666666667e-06, + "loss": 1.1969277191162109, + "step": 732700 + }, + { + "epoch": 97.70666666666666, + "grad_norm": 0.922042191028595, + "learning_rate": 1.1698e-06, + "loss": 1.1913483428955078, + "step": 732800 + }, + { + "epoch": 97.72, + "grad_norm": 0.8728546500205994, + "learning_rate": 1.1631333333333333e-06, + "loss": 1.192550277709961, + "step": 732900 + }, + { + "epoch": 97.73333333333333, + "grad_norm": 0.9435664415359497, + "learning_rate": 1.1564666666666667e-06, + "loss": 1.1956972503662109, + "step": 733000 + }, + { + "epoch": 97.74666666666667, + "grad_norm": 0.9456507563591003, + "learning_rate": 1.1498e-06, + "loss": 1.198812255859375, + "step": 733100 + }, + { + "epoch": 97.76, + "grad_norm": 0.9041507244110107, + "learning_rate": 1.1431333333333333e-06, + "loss": 1.1941202545166016, + "step": 733200 + }, + { + "epoch": 97.77333333333333, + "grad_norm": 0.9364042282104492, + "learning_rate": 1.1364666666666669e-06, + "loss": 1.1956196594238282, + "step": 733300 + }, + { + "epoch": 97.78666666666666, + "grad_norm": 0.901881754398346, + "learning_rate": 1.1298000000000002e-06, + "loss": 1.1942565155029297, + "step": 733400 + }, + { + "epoch": 97.8, + "grad_norm": 0.9191442728042603, + "learning_rate": 1.1231333333333333e-06, + "loss": 1.1965391540527344, + "step": 733500 + }, + { + "epoch": 97.81333333333333, + "grad_norm": 0.9554629921913147, + "learning_rate": 1.1164666666666666e-06, + "loss": 1.1935279846191407, + "step": 733600 + }, + { + "epoch": 97.82666666666667, + "grad_norm": 0.903621256351471, + "learning_rate": 1.1098000000000002e-06, + "loss": 1.1937690734863282, + "step": 733700 + }, + { + "epoch": 97.84, + "grad_norm": 0.9251970052719116, + "learning_rate": 1.1031333333333335e-06, + "loss": 1.1984178161621093, + "step": 733800 + }, + { + "epoch": 97.85333333333334, + "grad_norm": 0.9287400245666504, + "learning_rate": 1.0965333333333334e-06, + "loss": 1.196386184692383, + "step": 733900 + }, + { + "epoch": 97.86666666666666, + "grad_norm": 0.9118936061859131, + "learning_rate": 1.0898666666666667e-06, + "loss": 1.1918663787841797, + "step": 734000 + }, + { + "epoch": 97.88, + "grad_norm": 0.9294499754905701, + "learning_rate": 1.0832e-06, + "loss": 1.1964964294433593, + "step": 734100 + }, + { + "epoch": 97.89333333333333, + "grad_norm": 0.8662843704223633, + "learning_rate": 1.0765333333333334e-06, + "loss": 1.1969724273681641, + "step": 734200 + }, + { + "epoch": 97.90666666666667, + "grad_norm": 0.8762206435203552, + "learning_rate": 1.0698666666666667e-06, + "loss": 1.1970738983154297, + "step": 734300 + }, + { + "epoch": 97.92, + "grad_norm": 0.9251389503479004, + "learning_rate": 1.0632e-06, + "loss": 1.1950054168701172, + "step": 734400 + }, + { + "epoch": 97.93333333333334, + "grad_norm": 0.8627253174781799, + "learning_rate": 1.0565333333333334e-06, + "loss": 1.194439926147461, + "step": 734500 + }, + { + "epoch": 97.94666666666667, + "grad_norm": 0.9262219071388245, + "learning_rate": 1.0498666666666667e-06, + "loss": 1.1964743804931641, + "step": 734600 + }, + { + "epoch": 97.96, + "grad_norm": 0.8800917863845825, + "learning_rate": 1.0432e-06, + "loss": 1.1948735046386718, + "step": 734700 + }, + { + "epoch": 97.97333333333333, + "grad_norm": 0.9554460644721985, + "learning_rate": 1.0365333333333334e-06, + "loss": 1.1973654174804687, + "step": 734800 + }, + { + "epoch": 97.98666666666666, + "grad_norm": 0.8912851214408875, + "learning_rate": 1.0298666666666667e-06, + "loss": 1.1976622009277345, + "step": 734900 + }, + { + "epoch": 98.0, + "grad_norm": 0.9327476024627686, + "learning_rate": 1.0232e-06, + "loss": 1.1984359741210937, + "step": 735000 + }, + { + "epoch": 98.01333333333334, + "grad_norm": 0.898631751537323, + "learning_rate": 1.0165333333333333e-06, + "loss": 1.191797409057617, + "step": 735100 + }, + { + "epoch": 98.02666666666667, + "grad_norm": 0.8860185146331787, + "learning_rate": 1.0098666666666669e-06, + "loss": 1.19053955078125, + "step": 735200 + }, + { + "epoch": 98.04, + "grad_norm": 0.8919152617454529, + "learning_rate": 1.0032e-06, + "loss": 1.1930453491210937, + "step": 735300 + }, + { + "epoch": 98.05333333333333, + "grad_norm": 0.9268627762794495, + "learning_rate": 9.965333333333333e-07, + "loss": 1.1904096984863282, + "step": 735400 + }, + { + "epoch": 98.06666666666666, + "grad_norm": 0.9463122487068176, + "learning_rate": 9.898666666666666e-07, + "loss": 1.1924416351318359, + "step": 735500 + }, + { + "epoch": 98.08, + "grad_norm": 0.9249300956726074, + "learning_rate": 9.832000000000002e-07, + "loss": 1.190969467163086, + "step": 735600 + }, + { + "epoch": 98.09333333333333, + "grad_norm": 0.9573506116867065, + "learning_rate": 9.765333333333335e-07, + "loss": 1.1920275115966796, + "step": 735700 + }, + { + "epoch": 98.10666666666667, + "grad_norm": 0.8895424604415894, + "learning_rate": 9.698666666666666e-07, + "loss": 1.1897706604003906, + "step": 735800 + }, + { + "epoch": 98.12, + "grad_norm": 0.8485841155052185, + "learning_rate": 9.632666666666668e-07, + "loss": 1.1928855895996093, + "step": 735900 + }, + { + "epoch": 98.13333333333334, + "grad_norm": 0.9169514775276184, + "learning_rate": 9.566e-07, + "loss": 1.1923430633544922, + "step": 736000 + }, + { + "epoch": 98.14666666666666, + "grad_norm": 0.9484817981719971, + "learning_rate": 9.499333333333334e-07, + "loss": 1.1894152069091797, + "step": 736100 + }, + { + "epoch": 98.16, + "grad_norm": 0.8725702166557312, + "learning_rate": 9.432666666666667e-07, + "loss": 1.1909805297851563, + "step": 736200 + }, + { + "epoch": 98.17333333333333, + "grad_norm": 0.9127253293991089, + "learning_rate": 9.366e-07, + "loss": 1.193762969970703, + "step": 736300 + }, + { + "epoch": 98.18666666666667, + "grad_norm": 0.8876358270645142, + "learning_rate": 9.299333333333334e-07, + "loss": 1.1921793365478515, + "step": 736400 + }, + { + "epoch": 98.2, + "grad_norm": 0.9053890109062195, + "learning_rate": 9.232666666666667e-07, + "loss": 1.1964334106445313, + "step": 736500 + }, + { + "epoch": 98.21333333333334, + "grad_norm": 0.9463318586349487, + "learning_rate": 9.166000000000001e-07, + "loss": 1.188143539428711, + "step": 736600 + }, + { + "epoch": 98.22666666666667, + "grad_norm": 0.8585167527198792, + "learning_rate": 9.099333333333333e-07, + "loss": 1.1954288482666016, + "step": 736700 + }, + { + "epoch": 98.24, + "grad_norm": 0.9063857197761536, + "learning_rate": 9.032666666666667e-07, + "loss": 1.1938237762451172, + "step": 736800 + }, + { + "epoch": 98.25333333333333, + "grad_norm": 0.848952054977417, + "learning_rate": 8.966e-07, + "loss": 1.1889173889160156, + "step": 736900 + }, + { + "epoch": 98.26666666666667, + "grad_norm": 0.9032663106918335, + "learning_rate": 8.899333333333335e-07, + "loss": 1.1894258880615234, + "step": 737000 + }, + { + "epoch": 98.28, + "grad_norm": 0.9298050403594971, + "learning_rate": 8.832666666666668e-07, + "loss": 1.1893203735351563, + "step": 737100 + }, + { + "epoch": 98.29333333333334, + "grad_norm": 0.8868449926376343, + "learning_rate": 8.766e-07, + "loss": 1.1898612976074219, + "step": 737200 + }, + { + "epoch": 98.30666666666667, + "grad_norm": 0.8657017350196838, + "learning_rate": 8.699333333333333e-07, + "loss": 1.1897797393798828, + "step": 737300 + }, + { + "epoch": 98.32, + "grad_norm": 0.8774369359016418, + "learning_rate": 8.632666666666668e-07, + "loss": 1.1933421325683593, + "step": 737400 + }, + { + "epoch": 98.33333333333333, + "grad_norm": 0.9083582758903503, + "learning_rate": 8.566000000000001e-07, + "loss": 1.1912253570556641, + "step": 737500 + }, + { + "epoch": 98.34666666666666, + "grad_norm": 0.8991101980209351, + "learning_rate": 8.499333333333333e-07, + "loss": 1.193739547729492, + "step": 737600 + }, + { + "epoch": 98.36, + "grad_norm": 0.9866260886192322, + "learning_rate": 8.432666666666666e-07, + "loss": 1.1906326293945313, + "step": 737700 + }, + { + "epoch": 98.37333333333333, + "grad_norm": 0.9080073833465576, + "learning_rate": 8.366000000000001e-07, + "loss": 1.192478561401367, + "step": 737800 + }, + { + "epoch": 98.38666666666667, + "grad_norm": 0.8622914552688599, + "learning_rate": 8.300000000000001e-07, + "loss": 1.1917598724365235, + "step": 737900 + }, + { + "epoch": 98.4, + "grad_norm": 0.9066656231880188, + "learning_rate": 8.233333333333334e-07, + "loss": 1.1930951690673828, + "step": 738000 + }, + { + "epoch": 98.41333333333333, + "grad_norm": 0.8253511190414429, + "learning_rate": 8.166666666666666e-07, + "loss": 1.1881201934814454, + "step": 738100 + }, + { + "epoch": 98.42666666666666, + "grad_norm": 0.8869616389274597, + "learning_rate": 8.1e-07, + "loss": 1.1893899536132813, + "step": 738200 + }, + { + "epoch": 98.44, + "grad_norm": 0.8886020183563232, + "learning_rate": 8.033333333333334e-07, + "loss": 1.1935739135742187, + "step": 738300 + }, + { + "epoch": 98.45333333333333, + "grad_norm": 0.9000334143638611, + "learning_rate": 7.966666666666667e-07, + "loss": 1.189201889038086, + "step": 738400 + }, + { + "epoch": 98.46666666666667, + "grad_norm": 0.8531255125999451, + "learning_rate": 7.900000000000002e-07, + "loss": 1.191848373413086, + "step": 738500 + }, + { + "epoch": 98.48, + "grad_norm": 0.9446560144424438, + "learning_rate": 7.833333333333333e-07, + "loss": 1.1940558624267579, + "step": 738600 + }, + { + "epoch": 98.49333333333334, + "grad_norm": 0.8816220760345459, + "learning_rate": 7.766666666666667e-07, + "loss": 1.1970796966552735, + "step": 738700 + }, + { + "epoch": 98.50666666666666, + "grad_norm": 0.8878071308135986, + "learning_rate": 7.7e-07, + "loss": 1.191910171508789, + "step": 738800 + }, + { + "epoch": 98.52, + "grad_norm": 0.9086691737174988, + "learning_rate": 7.633333333333334e-07, + "loss": 1.1919632720947266, + "step": 738900 + }, + { + "epoch": 98.53333333333333, + "grad_norm": 0.9125364422798157, + "learning_rate": 7.566666666666667e-07, + "loss": 1.1903729248046875, + "step": 739000 + }, + { + "epoch": 98.54666666666667, + "grad_norm": 0.9102436900138855, + "learning_rate": 7.5e-07, + "loss": 1.1952772521972657, + "step": 739100 + }, + { + "epoch": 98.56, + "grad_norm": 0.8782820105552673, + "learning_rate": 7.433333333333333e-07, + "loss": 1.1924925994873048, + "step": 739200 + }, + { + "epoch": 98.57333333333334, + "grad_norm": 0.9105757474899292, + "learning_rate": 7.366666666666667e-07, + "loss": 1.1958279418945312, + "step": 739300 + }, + { + "epoch": 98.58666666666667, + "grad_norm": 0.8756064176559448, + "learning_rate": 7.3e-07, + "loss": 1.1938359069824218, + "step": 739400 + }, + { + "epoch": 98.6, + "grad_norm": 0.8714690208435059, + "learning_rate": 7.233333333333333e-07, + "loss": 1.1933795166015626, + "step": 739500 + }, + { + "epoch": 98.61333333333333, + "grad_norm": 0.846801221370697, + "learning_rate": 7.166666666666667e-07, + "loss": 1.1944500732421874, + "step": 739600 + }, + { + "epoch": 98.62666666666667, + "grad_norm": 0.8956632018089294, + "learning_rate": 7.100000000000001e-07, + "loss": 1.1958086395263672, + "step": 739700 + }, + { + "epoch": 98.64, + "grad_norm": 0.8939581513404846, + "learning_rate": 7.033333333333334e-07, + "loss": 1.1935520935058594, + "step": 739800 + }, + { + "epoch": 98.65333333333334, + "grad_norm": 0.8881719708442688, + "learning_rate": 6.967333333333333e-07, + "loss": 1.1934709930419922, + "step": 739900 + }, + { + "epoch": 98.66666666666667, + "grad_norm": 0.9042186141014099, + "learning_rate": 6.900666666666668e-07, + "loss": 1.1922380828857422, + "step": 740000 + }, + { + "epoch": 98.68, + "grad_norm": 0.8477785587310791, + "learning_rate": 6.834e-07, + "loss": 1.1890042877197267, + "step": 740100 + }, + { + "epoch": 98.69333333333333, + "grad_norm": 0.8813819289207458, + "learning_rate": 6.767333333333334e-07, + "loss": 1.1922322082519532, + "step": 740200 + }, + { + "epoch": 98.70666666666666, + "grad_norm": 0.9520646333694458, + "learning_rate": 6.700666666666666e-07, + "loss": 1.1949353790283204, + "step": 740300 + }, + { + "epoch": 98.72, + "grad_norm": 0.8981533050537109, + "learning_rate": 6.634000000000001e-07, + "loss": 1.1972361755371095, + "step": 740400 + }, + { + "epoch": 98.73333333333333, + "grad_norm": 0.8700048327445984, + "learning_rate": 6.567333333333333e-07, + "loss": 1.1961135864257812, + "step": 740500 + }, + { + "epoch": 98.74666666666667, + "grad_norm": 0.9323988556861877, + "learning_rate": 6.500666666666667e-07, + "loss": 1.1912552642822265, + "step": 740600 + }, + { + "epoch": 98.76, + "grad_norm": 0.8961540460586548, + "learning_rate": 6.434e-07, + "loss": 1.1949165344238282, + "step": 740700 + }, + { + "epoch": 98.77333333333333, + "grad_norm": 0.8768694996833801, + "learning_rate": 6.367333333333334e-07, + "loss": 1.193530044555664, + "step": 740800 + }, + { + "epoch": 98.78666666666666, + "grad_norm": 0.9372314810752869, + "learning_rate": 6.300666666666667e-07, + "loss": 1.1909781646728517, + "step": 740900 + }, + { + "epoch": 98.8, + "grad_norm": 0.9452794194221497, + "learning_rate": 6.234e-07, + "loss": 1.1920659637451172, + "step": 741000 + }, + { + "epoch": 98.81333333333333, + "grad_norm": 0.8834349513053894, + "learning_rate": 6.167333333333334e-07, + "loss": 1.194448471069336, + "step": 741100 + }, + { + "epoch": 98.82666666666667, + "grad_norm": 0.8450713157653809, + "learning_rate": 6.100666666666667e-07, + "loss": 1.1934151458740234, + "step": 741200 + }, + { + "epoch": 98.84, + "grad_norm": 0.897294819355011, + "learning_rate": 6.034e-07, + "loss": 1.1937016296386718, + "step": 741300 + }, + { + "epoch": 98.85333333333334, + "grad_norm": 0.9136027693748474, + "learning_rate": 5.967333333333333e-07, + "loss": 1.194300994873047, + "step": 741400 + }, + { + "epoch": 98.86666666666666, + "grad_norm": 0.8889844417572021, + "learning_rate": 5.900666666666667e-07, + "loss": 1.1939845275878906, + "step": 741500 + }, + { + "epoch": 98.88, + "grad_norm": 0.8959463238716125, + "learning_rate": 5.834e-07, + "loss": 1.1932821655273438, + "step": 741600 + }, + { + "epoch": 98.89333333333333, + "grad_norm": 0.9319109320640564, + "learning_rate": 5.767333333333334e-07, + "loss": 1.1942572784423828, + "step": 741700 + }, + { + "epoch": 98.90666666666667, + "grad_norm": 0.948413074016571, + "learning_rate": 5.700666666666666e-07, + "loss": 1.1931224822998048, + "step": 741800 + }, + { + "epoch": 98.92, + "grad_norm": 0.943126380443573, + "learning_rate": 5.634666666666667e-07, + "loss": 1.1902999877929688, + "step": 741900 + }, + { + "epoch": 98.93333333333334, + "grad_norm": 0.9261944890022278, + "learning_rate": 5.568e-07, + "loss": 1.1924332427978515, + "step": 742000 + }, + { + "epoch": 98.94666666666667, + "grad_norm": 0.8977665901184082, + "learning_rate": 5.501333333333333e-07, + "loss": 1.1910804748535155, + "step": 742100 + }, + { + "epoch": 98.96, + "grad_norm": 0.9129285216331482, + "learning_rate": 5.434666666666667e-07, + "loss": 1.1923501586914063, + "step": 742200 + }, + { + "epoch": 98.97333333333333, + "grad_norm": 0.9128681421279907, + "learning_rate": 5.368000000000001e-07, + "loss": 1.1889964294433595, + "step": 742300 + }, + { + "epoch": 98.98666666666666, + "grad_norm": 0.9412058591842651, + "learning_rate": 5.301333333333333e-07, + "loss": 1.192625732421875, + "step": 742400 + }, + { + "epoch": 99.0, + "grad_norm": 0.8482484221458435, + "learning_rate": 5.234666666666667e-07, + "loss": 1.1931838989257812, + "step": 742500 + }, + { + "epoch": 99.01333333333334, + "grad_norm": 0.9009374976158142, + "learning_rate": 5.168e-07, + "loss": 1.1919266510009765, + "step": 742600 + }, + { + "epoch": 99.02666666666667, + "grad_norm": 0.9100991487503052, + "learning_rate": 5.101333333333334e-07, + "loss": 1.1920348358154298, + "step": 742700 + }, + { + "epoch": 99.04, + "grad_norm": 0.896523118019104, + "learning_rate": 5.034666666666666e-07, + "loss": 1.1886348724365234, + "step": 742800 + }, + { + "epoch": 99.05333333333333, + "grad_norm": 0.8603360652923584, + "learning_rate": 4.968000000000001e-07, + "loss": 1.1856871032714844, + "step": 742900 + }, + { + "epoch": 99.06666666666666, + "grad_norm": 0.9280701279640198, + "learning_rate": 4.901333333333334e-07, + "loss": 1.188511962890625, + "step": 743000 + }, + { + "epoch": 99.08, + "grad_norm": 0.9534225463867188, + "learning_rate": 4.834666666666667e-07, + "loss": 1.1933180236816405, + "step": 743100 + }, + { + "epoch": 99.09333333333333, + "grad_norm": 0.8999395370483398, + "learning_rate": 4.768e-07, + "loss": 1.189303436279297, + "step": 743200 + }, + { + "epoch": 99.10666666666667, + "grad_norm": 0.8953112363815308, + "learning_rate": 4.7013333333333336e-07, + "loss": 1.18920166015625, + "step": 743300 + }, + { + "epoch": 99.12, + "grad_norm": 0.8740084767341614, + "learning_rate": 4.6346666666666663e-07, + "loss": 1.1907463073730469, + "step": 743400 + }, + { + "epoch": 99.13333333333334, + "grad_norm": 0.8928273320198059, + "learning_rate": 4.568e-07, + "loss": 1.1911299133300781, + "step": 743500 + }, + { + "epoch": 99.14666666666666, + "grad_norm": 0.8718655705451965, + "learning_rate": 4.501333333333334e-07, + "loss": 1.1908772277832032, + "step": 743600 + }, + { + "epoch": 99.16, + "grad_norm": 0.9151206612586975, + "learning_rate": 4.4346666666666667e-07, + "loss": 1.1899483489990235, + "step": 743700 + }, + { + "epoch": 99.17333333333333, + "grad_norm": 0.891651451587677, + "learning_rate": 4.3680000000000005e-07, + "loss": 1.19437744140625, + "step": 743800 + }, + { + "epoch": 99.18666666666667, + "grad_norm": 0.8451858758926392, + "learning_rate": 4.3020000000000003e-07, + "loss": 1.1926042175292968, + "step": 743900 + }, + { + "epoch": 99.2, + "grad_norm": 0.8772236108779907, + "learning_rate": 4.2353333333333335e-07, + "loss": 1.1880721282958984, + "step": 744000 + }, + { + "epoch": 99.21333333333334, + "grad_norm": 0.857770562171936, + "learning_rate": 4.1686666666666673e-07, + "loss": 1.1957527923583984, + "step": 744100 + }, + { + "epoch": 99.22666666666667, + "grad_norm": 0.9516028165817261, + "learning_rate": 4.102e-07, + "loss": 1.1945584869384767, + "step": 744200 + }, + { + "epoch": 99.24, + "grad_norm": 0.843956708908081, + "learning_rate": 4.035333333333334e-07, + "loss": 1.1935086059570312, + "step": 744300 + }, + { + "epoch": 99.25333333333333, + "grad_norm": 0.8973932862281799, + "learning_rate": 3.9686666666666666e-07, + "loss": 1.1924853515625, + "step": 744400 + }, + { + "epoch": 99.26666666666667, + "grad_norm": 0.8814348578453064, + "learning_rate": 3.9020000000000004e-07, + "loss": 1.1938815307617188, + "step": 744500 + }, + { + "epoch": 99.28, + "grad_norm": 0.9305223226547241, + "learning_rate": 3.8353333333333337e-07, + "loss": 1.1920265197753905, + "step": 744600 + }, + { + "epoch": 99.29333333333334, + "grad_norm": 0.8577662706375122, + "learning_rate": 3.768666666666667e-07, + "loss": 1.1892983245849609, + "step": 744700 + }, + { + "epoch": 99.30666666666667, + "grad_norm": 0.9148098230361938, + "learning_rate": 3.702e-07, + "loss": 1.193815689086914, + "step": 744800 + }, + { + "epoch": 99.32, + "grad_norm": 0.8657062649726868, + "learning_rate": 3.6353333333333335e-07, + "loss": 1.1912665557861328, + "step": 744900 + }, + { + "epoch": 99.33333333333333, + "grad_norm": 0.9293052554130554, + "learning_rate": 3.5686666666666667e-07, + "loss": 1.19271728515625, + "step": 745000 + }, + { + "epoch": 99.34666666666666, + "grad_norm": 0.9440531134605408, + "learning_rate": 3.502e-07, + "loss": 1.1907530975341798, + "step": 745100 + }, + { + "epoch": 99.36, + "grad_norm": 0.8987706303596497, + "learning_rate": 3.435333333333333e-07, + "loss": 1.1910220336914064, + "step": 745200 + }, + { + "epoch": 99.37333333333333, + "grad_norm": 0.9358866214752197, + "learning_rate": 3.3686666666666665e-07, + "loss": 1.194500732421875, + "step": 745300 + }, + { + "epoch": 99.38666666666667, + "grad_norm": 0.8812012672424316, + "learning_rate": 3.302e-07, + "loss": 1.1937469482421874, + "step": 745400 + }, + { + "epoch": 99.4, + "grad_norm": 0.9004390239715576, + "learning_rate": 3.235333333333333e-07, + "loss": 1.1931354522705078, + "step": 745500 + }, + { + "epoch": 99.41333333333333, + "grad_norm": 0.870255708694458, + "learning_rate": 3.168666666666667e-07, + "loss": 1.1928106689453124, + "step": 745600 + }, + { + "epoch": 99.42666666666666, + "grad_norm": 0.8272011280059814, + "learning_rate": 3.102e-07, + "loss": 1.1933961486816407, + "step": 745700 + }, + { + "epoch": 99.44, + "grad_norm": 0.904954731464386, + "learning_rate": 3.0353333333333334e-07, + "loss": 1.1930033874511718, + "step": 745800 + }, + { + "epoch": 99.45333333333333, + "grad_norm": 0.8282216191291809, + "learning_rate": 2.9693333333333337e-07, + "loss": 1.1900058746337892, + "step": 745900 + }, + { + "epoch": 99.46666666666667, + "grad_norm": 0.9468961954116821, + "learning_rate": 2.902666666666667e-07, + "loss": 1.1919841003417968, + "step": 746000 + }, + { + "epoch": 99.48, + "grad_norm": 0.9418879151344299, + "learning_rate": 2.836e-07, + "loss": 1.1886141204833984, + "step": 746100 + }, + { + "epoch": 99.49333333333334, + "grad_norm": 0.8836652636528015, + "learning_rate": 2.7693333333333335e-07, + "loss": 1.1884160614013672, + "step": 746200 + }, + { + "epoch": 99.50666666666666, + "grad_norm": 0.9527371525764465, + "learning_rate": 2.702666666666667e-07, + "loss": 1.1915505981445313, + "step": 746300 + }, + { + "epoch": 99.52, + "grad_norm": 0.8506571054458618, + "learning_rate": 2.636e-07, + "loss": 1.1904411315917969, + "step": 746400 + }, + { + "epoch": 99.53333333333333, + "grad_norm": 0.8335494995117188, + "learning_rate": 2.5693333333333333e-07, + "loss": 1.1901004028320312, + "step": 746500 + }, + { + "epoch": 99.54666666666667, + "grad_norm": 0.9234083890914917, + "learning_rate": 2.5026666666666666e-07, + "loss": 1.1895111846923827, + "step": 746600 + }, + { + "epoch": 99.56, + "grad_norm": 0.9194679260253906, + "learning_rate": 2.436e-07, + "loss": 1.1904415130615233, + "step": 746700 + }, + { + "epoch": 99.57333333333334, + "grad_norm": 0.9224709868431091, + "learning_rate": 2.3693333333333336e-07, + "loss": 1.1882210540771485, + "step": 746800 + }, + { + "epoch": 99.58666666666667, + "grad_norm": 0.9308574795722961, + "learning_rate": 2.302666666666667e-07, + "loss": 1.1944318389892579, + "step": 746900 + }, + { + "epoch": 99.6, + "grad_norm": 0.8662922382354736, + "learning_rate": 2.2360000000000002e-07, + "loss": 1.1902082824707032, + "step": 747000 + }, + { + "epoch": 99.61333333333333, + "grad_norm": 0.9251387715339661, + "learning_rate": 2.1693333333333334e-07, + "loss": 1.1896009826660157, + "step": 747100 + }, + { + "epoch": 99.62666666666667, + "grad_norm": 0.8867355585098267, + "learning_rate": 2.102666666666667e-07, + "loss": 1.1914397430419923, + "step": 747200 + }, + { + "epoch": 99.64, + "grad_norm": 0.8558920621871948, + "learning_rate": 2.0360000000000002e-07, + "loss": 1.193257827758789, + "step": 747300 + }, + { + "epoch": 99.65333333333334, + "grad_norm": 0.8549710512161255, + "learning_rate": 1.9693333333333335e-07, + "loss": 1.1871185302734375, + "step": 747400 + }, + { + "epoch": 99.66666666666667, + "grad_norm": 0.9454492330551147, + "learning_rate": 1.9026666666666668e-07, + "loss": 1.1909255218505859, + "step": 747500 + }, + { + "epoch": 99.68, + "grad_norm": 0.8846890330314636, + "learning_rate": 1.836e-07, + "loss": 1.191995849609375, + "step": 747600 + }, + { + "epoch": 99.69333333333333, + "grad_norm": 0.8920761942863464, + "learning_rate": 1.7693333333333333e-07, + "loss": 1.1904275512695313, + "step": 747700 + }, + { + "epoch": 99.70666666666666, + "grad_norm": 0.9085679054260254, + "learning_rate": 1.7026666666666666e-07, + "loss": 1.1856131744384766, + "step": 747800 + }, + { + "epoch": 99.72, + "grad_norm": 0.8654316663742065, + "learning_rate": 1.636666666666667e-07, + "loss": 1.1924869537353515, + "step": 747900 + }, + { + "epoch": 99.73333333333333, + "grad_norm": 0.9672116041183472, + "learning_rate": 1.5700000000000002e-07, + "loss": 1.1914896392822265, + "step": 748000 + }, + { + "epoch": 99.74666666666667, + "grad_norm": 0.8933631181716919, + "learning_rate": 1.5033333333333334e-07, + "loss": 1.1880557250976562, + "step": 748100 + }, + { + "epoch": 99.76, + "grad_norm": 0.8144270777702332, + "learning_rate": 1.4366666666666667e-07, + "loss": 1.1939049530029298, + "step": 748200 + }, + { + "epoch": 99.77333333333333, + "grad_norm": 0.942760169506073, + "learning_rate": 1.37e-07, + "loss": 1.1934993743896485, + "step": 748300 + }, + { + "epoch": 99.78666666666666, + "grad_norm": 0.9373781085014343, + "learning_rate": 1.3033333333333335e-07, + "loss": 1.1954252624511719, + "step": 748400 + }, + { + "epoch": 99.8, + "grad_norm": 0.852530837059021, + "learning_rate": 1.2366666666666668e-07, + "loss": 1.1905007934570313, + "step": 748500 + }, + { + "epoch": 99.81333333333333, + "grad_norm": 0.9099419116973877, + "learning_rate": 1.1700000000000002e-07, + "loss": 1.1874067687988281, + "step": 748600 + }, + { + "epoch": 99.82666666666667, + "grad_norm": 0.9150423407554626, + "learning_rate": 1.1033333333333334e-07, + "loss": 1.1895872497558593, + "step": 748700 + }, + { + "epoch": 99.84, + "grad_norm": 0.9039080142974854, + "learning_rate": 1.0366666666666667e-07, + "loss": 1.1886183166503905, + "step": 748800 + }, + { + "epoch": 99.85333333333334, + "grad_norm": 0.8735392689704895, + "learning_rate": 9.700000000000001e-08, + "loss": 1.1912483978271484, + "step": 748900 + }, + { + "epoch": 99.86666666666666, + "grad_norm": 0.9005591869354248, + "learning_rate": 9.033333333333333e-08, + "loss": 1.1915541076660157, + "step": 749000 + }, + { + "epoch": 99.88, + "grad_norm": 0.914032518863678, + "learning_rate": 8.366666666666667e-08, + "loss": 1.194538803100586, + "step": 749100 + }, + { + "epoch": 99.89333333333333, + "grad_norm": 0.9344823360443115, + "learning_rate": 7.7e-08, + "loss": 1.1954287719726562, + "step": 749200 + }, + { + "epoch": 99.90666666666667, + "grad_norm": 0.9338550567626953, + "learning_rate": 7.033333333333334e-08, + "loss": 1.188226318359375, + "step": 749300 + }, + { + "epoch": 99.92, + "grad_norm": 0.8841633796691895, + "learning_rate": 6.366666666666667e-08, + "loss": 1.1888745880126954, + "step": 749400 + }, + { + "epoch": 99.93333333333334, + "grad_norm": 0.9246593117713928, + "learning_rate": 5.7e-08, + "loss": 1.1918194580078125, + "step": 749500 + } + ], + "logging_steps": 100, + "max_steps": 750000, + "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": 2.01961974398976e+17, + "train_batch_size": 8, + "trial_name": null, + "trial_params": null +} diff --git a/timecost/c14/realtabformer/rtf-c14-20260501_010151/rtf_checkpoints/checkpoint-749500/training_args.bin b/timecost/c14/realtabformer/rtf-c14-20260501_010151/rtf_checkpoints/checkpoint-749500/training_args.bin new file mode 100644 index 0000000000000000000000000000000000000000..34d68dc0e0fe1c1f12a2e581dd1b166aa7178a9e --- /dev/null +++ b/timecost/c14/realtabformer/rtf-c14-20260501_010151/rtf_checkpoints/checkpoint-749500/training_args.bin @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:9e2cd88337d1d846c6918d2b3b63fa3e5c93f12fefc082497590da854a564607 +size 5201 diff --git a/timecost/c14/realtabformer/rtf-c14-20260501_010151/rtf_checkpoints/checkpoint-749600/config.json b/timecost/c14/realtabformer/rtf-c14-20260501_010151/rtf_checkpoints/checkpoint-749600/config.json new file mode 100644 index 0000000000000000000000000000000000000000..79a0184a09b7bca7a3c208529833166f08ca48c0 --- /dev/null +++ b/timecost/c14/realtabformer/rtf-c14-20260501_010151/rtf_checkpoints/checkpoint-749600/config.json @@ -0,0 +1,34 @@ +{ + "activation_function": "gelu_new", + "add_cross_attention": false, + "architectures": [ + "GPT2LMHeadModel" + ], + "attn_pdrop": 0.1, + "bos_token_id": 5, + "dtype": "float32", + "embd_pdrop": 0.1, + "eos_token_id": 6, + "initializer_range": 0.02, + "layer_norm_epsilon": 1e-05, + "model_type": "gpt2", + "n_embd": 768, + "n_head": 12, + "n_inner": null, + "n_layer": 6, + "n_positions": 1024, + "pad_token_id": null, + "reorder_and_upcast_attn": false, + "resid_pdrop": 0.1, + "scale_attn_by_inverse_layer_idx": false, + "scale_attn_weights": true, + "summary_activation": null, + "summary_first_dropout": 0.1, + "summary_proj_to_labels": true, + "summary_type": "cls_index", + "summary_use_proj": true, + "tie_word_embeddings": true, + "transformers_version": "5.5.3", + "use_cache": false, + "vocab_size": 16472 +} diff --git a/timecost/c14/realtabformer/rtf-c14-20260501_010151/rtf_checkpoints/checkpoint-749600/generation_config.json b/timecost/c14/realtabformer/rtf-c14-20260501_010151/rtf_checkpoints/checkpoint-749600/generation_config.json new file mode 100644 index 0000000000000000000000000000000000000000..ffe89567780e75b5c22eade9be971483b9618f39 --- /dev/null +++ b/timecost/c14/realtabformer/rtf-c14-20260501_010151/rtf_checkpoints/checkpoint-749600/generation_config.json @@ -0,0 +1,9 @@ +{ + "_from_model_config": true, + "bos_token_id": 5, + "eos_token_id": 6, + "output_attentions": false, + "output_hidden_states": false, + "transformers_version": "5.5.3", + "use_cache": true +} diff --git a/timecost/c14/realtabformer/rtf-c14-20260501_010151/rtf_checkpoints/checkpoint-749600/model.safetensors b/timecost/c14/realtabformer/rtf-c14-20260501_010151/rtf_checkpoints/checkpoint-749600/model.safetensors new file mode 100644 index 0000000000000000000000000000000000000000..d53be7f6f82c0715bb3f8edf9aa9613cbf5624b1 --- /dev/null +++ b/timecost/c14/realtabformer/rtf-c14-20260501_010151/rtf_checkpoints/checkpoint-749600/model.safetensors @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:d6a614d54930e2fced4526ccaa5ea35140b93ecc8ea84beb0820b42dec3c9e3f +size 223870408 diff --git a/timecost/c14/realtabformer/rtf-c14-20260501_010151/rtf_checkpoints/checkpoint-749600/optimizer.pt b/timecost/c14/realtabformer/rtf-c14-20260501_010151/rtf_checkpoints/checkpoint-749600/optimizer.pt new file mode 100644 index 0000000000000000000000000000000000000000..9c27264bbd1f29a2396d27ea829675c4b24c9836 --- /dev/null +++ b/timecost/c14/realtabformer/rtf-c14-20260501_010151/rtf_checkpoints/checkpoint-749600/optimizer.pt @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:cafe5665d480e47300e5abdb47c4a670c4992a147dc4e76292442b8299dd9498 +size 447789899 diff --git a/timecost/c14/realtabformer/rtf-c14-20260501_010151/rtf_checkpoints/checkpoint-749600/rng_state.pth b/timecost/c14/realtabformer/rtf-c14-20260501_010151/rtf_checkpoints/checkpoint-749600/rng_state.pth new file mode 100644 index 0000000000000000000000000000000000000000..a0afa2db05e60b80ddfc46711e7e9921d2fdd884 --- /dev/null +++ b/timecost/c14/realtabformer/rtf-c14-20260501_010151/rtf_checkpoints/checkpoint-749600/rng_state.pth @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:5f68b39803e317beb5e219ab295ced2ffba421f93291ab022d9a8fd8c8f5aecd +size 14645 diff --git a/timecost/c14/realtabformer/rtf-c14-20260501_010151/rtf_checkpoints/checkpoint-749600/scaler.pt b/timecost/c14/realtabformer/rtf-c14-20260501_010151/rtf_checkpoints/checkpoint-749600/scaler.pt new file mode 100644 index 0000000000000000000000000000000000000000..08e3d875647f6e30a9ed7d79fe9d7ed9631d6870 --- /dev/null +++ b/timecost/c14/realtabformer/rtf-c14-20260501_010151/rtf_checkpoints/checkpoint-749600/scaler.pt @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:657feea39b031289830aabcf07736308fa1b8e587395357b1888f5e3ba22a2b4 +size 1383 diff --git a/timecost/c14/realtabformer/rtf-c14-20260501_010151/rtf_checkpoints/checkpoint-749600/scheduler.pt b/timecost/c14/realtabformer/rtf-c14-20260501_010151/rtf_checkpoints/checkpoint-749600/scheduler.pt new file mode 100644 index 0000000000000000000000000000000000000000..3b9e24843e783c3809eba9c4b1c2aed84d806b17 --- /dev/null +++ b/timecost/c14/realtabformer/rtf-c14-20260501_010151/rtf_checkpoints/checkpoint-749600/scheduler.pt @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:8ac9c370fd2ddca47ec531e5b201cd63bff98ee36d3adc0fe9e5be3e498ab5cc +size 1465 diff --git a/timecost/c14/realtabformer/rtf-c14-20260501_010151/rtf_checkpoints/checkpoint-749600/trainer_state.json b/timecost/c14/realtabformer/rtf-c14-20260501_010151/rtf_checkpoints/checkpoint-749600/trainer_state.json new file mode 100644 index 0000000000000000000000000000000000000000..bbb6f5dff6cce2dbff6c9ad1e80732f69d8a5e6b --- /dev/null +++ b/timecost/c14/realtabformer/rtf-c14-20260501_010151/rtf_checkpoints/checkpoint-749600/trainer_state.json @@ -0,0 +1,52506 @@ +{ + "best_global_step": null, + "best_metric": null, + "best_model_checkpoint": null, + "epoch": 99.94666666666667, + "eval_steps": 100, + "global_step": 749600, + "is_hyper_param_search": false, + "is_local_process_zero": true, + "is_world_process_zero": true, + "log_history": [ + { + "epoch": 0.013333333333333334, + "grad_norm": 0.3097156882286072, + "learning_rate": 4.99934e-05, + "loss": 4.729451904296875, + "step": 100 + }, + { + "epoch": 0.02666666666666667, + "grad_norm": 0.2790767550468445, + "learning_rate": 4.9986733333333334e-05, + "loss": 2.9246112060546876, + "step": 200 + }, + { + "epoch": 0.04, + "grad_norm": 0.2287004292011261, + "learning_rate": 4.998006666666667e-05, + "loss": 2.681365966796875, + "step": 300 + }, + { + "epoch": 0.05333333333333334, + "grad_norm": 0.2410515397787094, + "learning_rate": 4.9973400000000005e-05, + "loss": 2.57897216796875, + "step": 400 + }, + { + "epoch": 0.06666666666666667, + "grad_norm": 0.23536495864391327, + "learning_rate": 4.996673333333334e-05, + "loss": 2.5199215698242186, + "step": 500 + }, + { + "epoch": 0.08, + "grad_norm": 0.2238040715456009, + "learning_rate": 4.996006666666667e-05, + "loss": 2.4802560424804687, + "step": 600 + }, + { + "epoch": 0.09333333333333334, + "grad_norm": 0.2373904138803482, + "learning_rate": 4.99534e-05, + "loss": 2.4584336853027344, + "step": 700 + }, + { + "epoch": 0.10666666666666667, + "grad_norm": 0.2210150510072708, + "learning_rate": 4.9946733333333334e-05, + "loss": 2.4438829040527343, + "step": 800 + }, + { + "epoch": 0.12, + "grad_norm": 0.23910416662693024, + "learning_rate": 4.9940066666666666e-05, + "loss": 2.430836181640625, + "step": 900 + }, + { + "epoch": 0.13333333333333333, + "grad_norm": 0.21543893218040466, + "learning_rate": 4.9933400000000005e-05, + "loss": 2.416129150390625, + "step": 1000 + }, + { + "epoch": 0.14666666666666667, + "grad_norm": 0.21585851907730103, + "learning_rate": 4.992673333333334e-05, + "loss": 2.4107843017578126, + "step": 1100 + }, + { + "epoch": 0.16, + "grad_norm": 0.24163727462291718, + "learning_rate": 4.992006666666667e-05, + "loss": 2.406159210205078, + "step": 1200 + }, + { + "epoch": 0.17333333333333334, + "grad_norm": 0.1956426501274109, + "learning_rate": 4.99134e-05, + "loss": 2.403145751953125, + "step": 1300 + }, + { + "epoch": 0.18666666666666668, + "grad_norm": 0.22274842858314514, + "learning_rate": 4.9906733333333335e-05, + "loss": 2.4001878356933593, + "step": 1400 + }, + { + "epoch": 0.2, + "grad_norm": 0.21048018336296082, + "learning_rate": 4.990006666666667e-05, + "loss": 2.396698455810547, + "step": 1500 + }, + { + "epoch": 0.21333333333333335, + "grad_norm": 0.20668183267116547, + "learning_rate": 4.98934e-05, + "loss": 2.3899136352539063, + "step": 1600 + }, + { + "epoch": 0.22666666666666666, + "grad_norm": 0.21129441261291504, + "learning_rate": 4.988673333333334e-05, + "loss": 2.3887448120117187, + "step": 1700 + }, + { + "epoch": 0.24, + "grad_norm": 0.19339148700237274, + "learning_rate": 4.988006666666667e-05, + "loss": 2.386446228027344, + "step": 1800 + }, + { + "epoch": 0.25333333333333335, + "grad_norm": 0.24494831264019012, + "learning_rate": 4.98734e-05, + "loss": 2.3824462890625, + "step": 1900 + }, + { + "epoch": 0.26666666666666666, + "grad_norm": 0.22533085942268372, + "learning_rate": 4.9866733333333335e-05, + "loss": 2.382945709228516, + "step": 2000 + }, + { + "epoch": 0.28, + "grad_norm": 0.19327044486999512, + "learning_rate": 4.9860066666666674e-05, + "loss": 2.380709533691406, + "step": 2100 + }, + { + "epoch": 0.29333333333333333, + "grad_norm": 0.21988032758235931, + "learning_rate": 4.98534e-05, + "loss": 2.3797772216796873, + "step": 2200 + }, + { + "epoch": 0.30666666666666664, + "grad_norm": 0.21458032727241516, + "learning_rate": 4.984673333333333e-05, + "loss": 2.3806968688964845, + "step": 2300 + }, + { + "epoch": 0.32, + "grad_norm": 0.1938823163509369, + "learning_rate": 4.984006666666667e-05, + "loss": 2.377256317138672, + "step": 2400 + }, + { + "epoch": 0.3333333333333333, + "grad_norm": 0.2332620471715927, + "learning_rate": 4.98334e-05, + "loss": 2.3771754455566407, + "step": 2500 + }, + { + "epoch": 0.3466666666666667, + "grad_norm": 0.2167084515094757, + "learning_rate": 4.9826733333333335e-05, + "loss": 2.379599151611328, + "step": 2600 + }, + { + "epoch": 0.36, + "grad_norm": 0.21894526481628418, + "learning_rate": 4.982006666666667e-05, + "loss": 2.376912078857422, + "step": 2700 + }, + { + "epoch": 0.37333333333333335, + "grad_norm": 0.21106357872486115, + "learning_rate": 4.9813400000000007e-05, + "loss": 2.374015045166016, + "step": 2800 + }, + { + "epoch": 0.38666666666666666, + "grad_norm": 0.19057656824588776, + "learning_rate": 4.980673333333333e-05, + "loss": 2.3733976745605467, + "step": 2900 + }, + { + "epoch": 0.4, + "grad_norm": 0.21368202567100525, + "learning_rate": 4.9800066666666664e-05, + "loss": 2.3731019592285154, + "step": 3000 + }, + { + "epoch": 0.41333333333333333, + "grad_norm": 0.20361854135990143, + "learning_rate": 4.9793400000000003e-05, + "loss": 2.372502746582031, + "step": 3100 + }, + { + "epoch": 0.4266666666666667, + "grad_norm": 0.21937857568264008, + "learning_rate": 4.9786733333333336e-05, + "loss": 2.3699537658691407, + "step": 3200 + }, + { + "epoch": 0.44, + "grad_norm": 0.20447471737861633, + "learning_rate": 4.978006666666667e-05, + "loss": 2.3710557556152345, + "step": 3300 + }, + { + "epoch": 0.4533333333333333, + "grad_norm": 0.21187078952789307, + "learning_rate": 4.97734e-05, + "loss": 2.3726930236816406, + "step": 3400 + }, + { + "epoch": 0.4666666666666667, + "grad_norm": 0.2117481529712677, + "learning_rate": 4.976673333333334e-05, + "loss": 2.3712057495117187, + "step": 3500 + }, + { + "epoch": 0.48, + "grad_norm": 0.21514153480529785, + "learning_rate": 4.976006666666667e-05, + "loss": 2.3699081420898436, + "step": 3600 + }, + { + "epoch": 0.49333333333333335, + "grad_norm": 0.21301567554473877, + "learning_rate": 4.97534e-05, + "loss": 2.3686956787109374, + "step": 3700 + }, + { + "epoch": 0.5066666666666667, + "grad_norm": 0.21573932468891144, + "learning_rate": 4.9746733333333336e-05, + "loss": 2.3669277954101564, + "step": 3800 + }, + { + "epoch": 0.52, + "grad_norm": 0.21901340782642365, + "learning_rate": 4.974006666666667e-05, + "loss": 2.3691697692871094, + "step": 3900 + }, + { + "epoch": 0.5333333333333333, + "grad_norm": 0.17888770997524261, + "learning_rate": 4.97334e-05, + "loss": 2.3694166564941406, + "step": 4000 + }, + { + "epoch": 0.5466666666666666, + "grad_norm": 0.20132586359977722, + "learning_rate": 4.972673333333334e-05, + "loss": 2.3693058776855467, + "step": 4100 + }, + { + "epoch": 0.56, + "grad_norm": 0.20158927142620087, + "learning_rate": 4.972006666666667e-05, + "loss": 2.3696084594726563, + "step": 4200 + }, + { + "epoch": 0.5733333333333334, + "grad_norm": 0.19169336557388306, + "learning_rate": 4.9713400000000004e-05, + "loss": 2.3690890502929687, + "step": 4300 + }, + { + "epoch": 0.5866666666666667, + "grad_norm": 0.1851499378681183, + "learning_rate": 4.9706733333333336e-05, + "loss": 2.365598602294922, + "step": 4400 + }, + { + "epoch": 0.6, + "grad_norm": 0.17640796303749084, + "learning_rate": 4.970006666666667e-05, + "loss": 2.3662982177734375, + "step": 4500 + }, + { + "epoch": 0.6133333333333333, + "grad_norm": 0.19363251328468323, + "learning_rate": 4.96934e-05, + "loss": 2.366368408203125, + "step": 4600 + }, + { + "epoch": 0.6266666666666667, + "grad_norm": 0.18789421021938324, + "learning_rate": 4.968673333333333e-05, + "loss": 2.3673724365234374, + "step": 4700 + }, + { + "epoch": 0.64, + "grad_norm": 0.2276417762041092, + "learning_rate": 4.968006666666667e-05, + "loss": 2.3687364196777345, + "step": 4800 + }, + { + "epoch": 0.6533333333333333, + "grad_norm": 0.24959126114845276, + "learning_rate": 4.9673400000000005e-05, + "loss": 2.3668873596191404, + "step": 4900 + }, + { + "epoch": 0.6666666666666666, + "grad_norm": 0.1974227875471115, + "learning_rate": 4.966673333333334e-05, + "loss": 2.367490539550781, + "step": 5000 + }, + { + "epoch": 0.68, + "grad_norm": 0.21331575512886047, + "learning_rate": 4.966006666666667e-05, + "loss": 2.3667413330078126, + "step": 5100 + }, + { + "epoch": 0.6933333333333334, + "grad_norm": 0.19911886751651764, + "learning_rate": 4.96534e-05, + "loss": 2.3675457763671877, + "step": 5200 + }, + { + "epoch": 0.7066666666666667, + "grad_norm": 0.18808232247829437, + "learning_rate": 4.9646733333333334e-05, + "loss": 2.365087432861328, + "step": 5300 + }, + { + "epoch": 0.72, + "grad_norm": 0.20785415172576904, + "learning_rate": 4.9640066666666666e-05, + "loss": 2.364909362792969, + "step": 5400 + }, + { + "epoch": 0.7333333333333333, + "grad_norm": 0.20224037766456604, + "learning_rate": 4.9633400000000005e-05, + "loss": 2.3632057189941404, + "step": 5500 + }, + { + "epoch": 0.7466666666666667, + "grad_norm": 0.2229875922203064, + "learning_rate": 4.962673333333334e-05, + "loss": 2.3641395568847656, + "step": 5600 + }, + { + "epoch": 0.76, + "grad_norm": 0.1919153928756714, + "learning_rate": 4.962006666666667e-05, + "loss": 2.3659425354003907, + "step": 5700 + }, + { + "epoch": 0.7733333333333333, + "grad_norm": 0.20427671074867249, + "learning_rate": 4.96134e-05, + "loss": 2.363852081298828, + "step": 5800 + }, + { + "epoch": 0.7866666666666666, + "grad_norm": 0.21656429767608643, + "learning_rate": 4.960673333333334e-05, + "loss": 2.362543182373047, + "step": 5900 + }, + { + "epoch": 0.8, + "grad_norm": 0.2063402533531189, + "learning_rate": 4.9600066666666666e-05, + "loss": 2.366965026855469, + "step": 6000 + }, + { + "epoch": 0.8133333333333334, + "grad_norm": 0.1898108273744583, + "learning_rate": 4.95934e-05, + "loss": 2.3621893310546875, + "step": 6100 + }, + { + "epoch": 0.8266666666666667, + "grad_norm": 0.20282649993896484, + "learning_rate": 4.958673333333334e-05, + "loss": 2.3625088500976563, + "step": 6200 + }, + { + "epoch": 0.84, + "grad_norm": 0.20909225940704346, + "learning_rate": 4.958006666666667e-05, + "loss": 2.3645458984375, + "step": 6300 + }, + { + "epoch": 0.8533333333333334, + "grad_norm": 0.1983426809310913, + "learning_rate": 4.95734e-05, + "loss": 2.3627133178710937, + "step": 6400 + }, + { + "epoch": 0.8666666666666667, + "grad_norm": 0.19243596494197845, + "learning_rate": 4.9566733333333334e-05, + "loss": 2.3633660888671875, + "step": 6500 + }, + { + "epoch": 0.88, + "grad_norm": 0.2079390585422516, + "learning_rate": 4.9560066666666673e-05, + "loss": 2.3625689697265626, + "step": 6600 + }, + { + "epoch": 0.8933333333333333, + "grad_norm": 0.21222324669361115, + "learning_rate": 4.95534e-05, + "loss": 2.3634515380859376, + "step": 6700 + }, + { + "epoch": 0.9066666666666666, + "grad_norm": 0.20715859532356262, + "learning_rate": 4.954673333333333e-05, + "loss": 2.361647186279297, + "step": 6800 + }, + { + "epoch": 0.92, + "grad_norm": 0.20895737409591675, + "learning_rate": 4.954006666666667e-05, + "loss": 2.3614102172851563, + "step": 6900 + }, + { + "epoch": 0.9333333333333333, + "grad_norm": 0.2002798467874527, + "learning_rate": 4.95334e-05, + "loss": 2.36139892578125, + "step": 7000 + }, + { + "epoch": 0.9466666666666667, + "grad_norm": 0.19291919469833374, + "learning_rate": 4.9526733333333335e-05, + "loss": 2.3608961486816407, + "step": 7100 + }, + { + "epoch": 0.96, + "grad_norm": 0.21889089047908783, + "learning_rate": 4.952006666666667e-05, + "loss": 2.3637326049804686, + "step": 7200 + }, + { + "epoch": 0.9733333333333334, + "grad_norm": 0.2078685611486435, + "learning_rate": 4.9513400000000006e-05, + "loss": 2.3617208862304686, + "step": 7300 + }, + { + "epoch": 0.9866666666666667, + "grad_norm": 0.2064240425825119, + "learning_rate": 4.950673333333334e-05, + "loss": 2.363861083984375, + "step": 7400 + }, + { + "epoch": 1.0, + "grad_norm": 0.20584005117416382, + "learning_rate": 4.9500066666666664e-05, + "loss": 2.361913146972656, + "step": 7500 + }, + { + "epoch": 1.0133333333333334, + "grad_norm": 0.1801510751247406, + "learning_rate": 4.94934e-05, + "loss": 2.360869903564453, + "step": 7600 + }, + { + "epoch": 1.0266666666666666, + "grad_norm": 0.1993046998977661, + "learning_rate": 4.9486733333333335e-05, + "loss": 2.361507568359375, + "step": 7700 + }, + { + "epoch": 1.04, + "grad_norm": 0.19615833461284637, + "learning_rate": 4.948006666666667e-05, + "loss": 2.3610348510742187, + "step": 7800 + }, + { + "epoch": 1.0533333333333332, + "grad_norm": 0.21650268137454987, + "learning_rate": 4.9473400000000006e-05, + "loss": 2.3594178771972656, + "step": 7900 + }, + { + "epoch": 1.0666666666666667, + "grad_norm": 0.21163895726203918, + "learning_rate": 4.946673333333334e-05, + "loss": 2.360281982421875, + "step": 8000 + }, + { + "epoch": 1.08, + "grad_norm": 0.204850971698761, + "learning_rate": 4.946006666666667e-05, + "loss": 2.3587506103515623, + "step": 8100 + }, + { + "epoch": 1.0933333333333333, + "grad_norm": 0.19019952416419983, + "learning_rate": 4.9453399999999996e-05, + "loss": 2.359633331298828, + "step": 8200 + }, + { + "epoch": 1.1066666666666667, + "grad_norm": 0.19061067700386047, + "learning_rate": 4.9446733333333336e-05, + "loss": 2.3588740539550783, + "step": 8300 + }, + { + "epoch": 1.12, + "grad_norm": 0.17677488923072815, + "learning_rate": 4.944006666666667e-05, + "loss": 2.3598394775390625, + "step": 8400 + }, + { + "epoch": 1.1333333333333333, + "grad_norm": 0.1912253499031067, + "learning_rate": 4.94334e-05, + "loss": 2.360320739746094, + "step": 8500 + }, + { + "epoch": 1.1466666666666667, + "grad_norm": 0.2024315893650055, + "learning_rate": 4.942673333333334e-05, + "loss": 2.3580809020996094, + "step": 8600 + }, + { + "epoch": 1.16, + "grad_norm": 0.18786175549030304, + "learning_rate": 4.942006666666667e-05, + "loss": 2.3593084716796877, + "step": 8700 + }, + { + "epoch": 1.1733333333333333, + "grad_norm": 0.21662430465221405, + "learning_rate": 4.9413400000000004e-05, + "loss": 2.3598200988769533, + "step": 8800 + }, + { + "epoch": 1.1866666666666668, + "grad_norm": 0.1833869218826294, + "learning_rate": 4.9406733333333336e-05, + "loss": 2.3603662109375, + "step": 8900 + }, + { + "epoch": 1.2, + "grad_norm": 0.17883288860321045, + "learning_rate": 4.940006666666667e-05, + "loss": 2.3576153564453124, + "step": 9000 + }, + { + "epoch": 1.2133333333333334, + "grad_norm": 0.20075617730617523, + "learning_rate": 4.93934e-05, + "loss": 2.359826965332031, + "step": 9100 + }, + { + "epoch": 1.2266666666666666, + "grad_norm": 0.2007887363433838, + "learning_rate": 4.938673333333333e-05, + "loss": 2.358603210449219, + "step": 9200 + }, + { + "epoch": 1.24, + "grad_norm": 0.1917891800403595, + "learning_rate": 4.938006666666667e-05, + "loss": 2.3588916015625, + "step": 9300 + }, + { + "epoch": 1.2533333333333334, + "grad_norm": 0.21604856848716736, + "learning_rate": 4.9373400000000004e-05, + "loss": 2.3602168273925783, + "step": 9400 + }, + { + "epoch": 1.2666666666666666, + "grad_norm": 0.17735335230827332, + "learning_rate": 4.9366733333333336e-05, + "loss": 2.3565715026855467, + "step": 9500 + }, + { + "epoch": 1.28, + "grad_norm": 0.19378457963466644, + "learning_rate": 4.936006666666667e-05, + "loss": 2.3594598388671875, + "step": 9600 + }, + { + "epoch": 1.2933333333333334, + "grad_norm": 0.17695476114749908, + "learning_rate": 4.93534e-05, + "loss": 2.3589300537109374, + "step": 9700 + }, + { + "epoch": 1.3066666666666666, + "grad_norm": 0.21539485454559326, + "learning_rate": 4.934673333333333e-05, + "loss": 2.3615129089355467, + "step": 9800 + }, + { + "epoch": 1.32, + "grad_norm": 0.19134896993637085, + "learning_rate": 4.9340066666666665e-05, + "loss": 2.362266082763672, + "step": 9900 + }, + { + "epoch": 1.3333333333333333, + "grad_norm": 0.21886669099330902, + "learning_rate": 4.9333400000000004e-05, + "loss": 2.358092956542969, + "step": 10000 + }, + { + "epoch": 1.3466666666666667, + "grad_norm": 0.2164846807718277, + "learning_rate": 4.932673333333334e-05, + "loss": 2.3595159912109374, + "step": 10100 + }, + { + "epoch": 1.3599999999999999, + "grad_norm": 0.2044377326965332, + "learning_rate": 4.932006666666667e-05, + "loss": 2.3593812561035157, + "step": 10200 + }, + { + "epoch": 1.3733333333333333, + "grad_norm": 0.19607120752334595, + "learning_rate": 4.93134e-05, + "loss": 2.3597682189941405, + "step": 10300 + }, + { + "epoch": 1.3866666666666667, + "grad_norm": 0.20865550637245178, + "learning_rate": 4.930673333333334e-05, + "loss": 2.3585769653320314, + "step": 10400 + }, + { + "epoch": 1.4, + "grad_norm": 0.19647538661956787, + "learning_rate": 4.9300066666666666e-05, + "loss": 2.357613525390625, + "step": 10500 + }, + { + "epoch": 1.4133333333333333, + "grad_norm": 0.20263008773326874, + "learning_rate": 4.92934e-05, + "loss": 2.3594039916992187, + "step": 10600 + }, + { + "epoch": 1.4266666666666667, + "grad_norm": 0.20336301624774933, + "learning_rate": 4.928673333333334e-05, + "loss": 2.358168487548828, + "step": 10700 + }, + { + "epoch": 1.44, + "grad_norm": 0.19379153847694397, + "learning_rate": 4.928006666666667e-05, + "loss": 2.357987060546875, + "step": 10800 + }, + { + "epoch": 1.4533333333333334, + "grad_norm": 0.19382280111312866, + "learning_rate": 4.92734e-05, + "loss": 2.358719482421875, + "step": 10900 + }, + { + "epoch": 1.4666666666666668, + "grad_norm": 0.22233974933624268, + "learning_rate": 4.9266733333333334e-05, + "loss": 2.359342498779297, + "step": 11000 + }, + { + "epoch": 1.48, + "grad_norm": 0.2031731903553009, + "learning_rate": 4.926006666666667e-05, + "loss": 2.3575526428222657, + "step": 11100 + }, + { + "epoch": 1.4933333333333334, + "grad_norm": 0.2249104380607605, + "learning_rate": 4.9253400000000005e-05, + "loss": 2.359127197265625, + "step": 11200 + }, + { + "epoch": 1.5066666666666668, + "grad_norm": 0.19960635900497437, + "learning_rate": 4.924673333333333e-05, + "loss": 2.35850830078125, + "step": 11300 + }, + { + "epoch": 1.52, + "grad_norm": 0.17657485604286194, + "learning_rate": 4.924006666666667e-05, + "loss": 2.3599581909179688, + "step": 11400 + }, + { + "epoch": 1.5333333333333332, + "grad_norm": 0.2015186995267868, + "learning_rate": 4.92334e-05, + "loss": 2.3588160705566406, + "step": 11500 + }, + { + "epoch": 1.5466666666666666, + "grad_norm": 0.20554782450199127, + "learning_rate": 4.9226733333333334e-05, + "loss": 2.3559320068359373, + "step": 11600 + }, + { + "epoch": 1.56, + "grad_norm": 0.1838974952697754, + "learning_rate": 4.9220066666666667e-05, + "loss": 2.3575198364257814, + "step": 11700 + }, + { + "epoch": 1.5733333333333333, + "grad_norm": 0.19607774913311005, + "learning_rate": 4.9213400000000006e-05, + "loss": 2.3575714111328123, + "step": 11800 + }, + { + "epoch": 1.5866666666666667, + "grad_norm": 0.178280308842659, + "learning_rate": 4.920673333333334e-05, + "loss": 2.3576229858398436, + "step": 11900 + }, + { + "epoch": 1.6, + "grad_norm": 0.18399088084697723, + "learning_rate": 4.920006666666666e-05, + "loss": 2.3562477111816404, + "step": 12000 + }, + { + "epoch": 1.6133333333333333, + "grad_norm": 0.20826038718223572, + "learning_rate": 4.91934e-05, + "loss": 2.355485382080078, + "step": 12100 + }, + { + "epoch": 1.6266666666666667, + "grad_norm": 0.20758900046348572, + "learning_rate": 4.9186733333333335e-05, + "loss": 2.3574794006347655, + "step": 12200 + }, + { + "epoch": 1.6400000000000001, + "grad_norm": 0.19196072220802307, + "learning_rate": 4.918006666666667e-05, + "loss": 2.3581634521484376, + "step": 12300 + }, + { + "epoch": 1.6533333333333333, + "grad_norm": 0.1848619282245636, + "learning_rate": 4.9173400000000006e-05, + "loss": 2.3570237731933594, + "step": 12400 + }, + { + "epoch": 1.6666666666666665, + "grad_norm": 0.2013252079486847, + "learning_rate": 4.916673333333334e-05, + "loss": 2.3577528381347657, + "step": 12500 + }, + { + "epoch": 1.6800000000000002, + "grad_norm": 0.1901196390390396, + "learning_rate": 4.916006666666667e-05, + "loss": 2.356570129394531, + "step": 12600 + }, + { + "epoch": 1.6933333333333334, + "grad_norm": 0.21528318524360657, + "learning_rate": 4.91534e-05, + "loss": 2.3587225341796874, + "step": 12700 + }, + { + "epoch": 1.7066666666666666, + "grad_norm": 0.21024923026561737, + "learning_rate": 4.9146733333333335e-05, + "loss": 2.356683349609375, + "step": 12800 + }, + { + "epoch": 1.72, + "grad_norm": 0.21185488998889923, + "learning_rate": 4.914006666666667e-05, + "loss": 2.3565196228027343, + "step": 12900 + }, + { + "epoch": 1.7333333333333334, + "grad_norm": 0.1909532994031906, + "learning_rate": 4.91334e-05, + "loss": 2.3565260314941407, + "step": 13000 + }, + { + "epoch": 1.7466666666666666, + "grad_norm": 0.17285031080245972, + "learning_rate": 4.912673333333334e-05, + "loss": 2.3597225952148437, + "step": 13100 + }, + { + "epoch": 1.76, + "grad_norm": 0.20661011338233948, + "learning_rate": 4.912006666666667e-05, + "loss": 2.355798797607422, + "step": 13200 + }, + { + "epoch": 1.7733333333333334, + "grad_norm": 0.17752040922641754, + "learning_rate": 4.91134e-05, + "loss": 2.358916931152344, + "step": 13300 + }, + { + "epoch": 1.7866666666666666, + "grad_norm": 0.1924242228269577, + "learning_rate": 4.9106733333333335e-05, + "loss": 2.3583119201660154, + "step": 13400 + }, + { + "epoch": 1.8, + "grad_norm": 0.1849152147769928, + "learning_rate": 4.910006666666667e-05, + "loss": 2.3570172119140627, + "step": 13500 + }, + { + "epoch": 1.8133333333333335, + "grad_norm": 0.185477152466774, + "learning_rate": 4.90934e-05, + "loss": 2.3571125793457033, + "step": 13600 + }, + { + "epoch": 1.8266666666666667, + "grad_norm": 0.20487146079540253, + "learning_rate": 4.908673333333333e-05, + "loss": 2.3563079833984375, + "step": 13700 + }, + { + "epoch": 1.8399999999999999, + "grad_norm": 0.1872117966413498, + "learning_rate": 4.908006666666667e-05, + "loss": 2.3568649291992188, + "step": 13800 + }, + { + "epoch": 1.8533333333333335, + "grad_norm": 0.20117762684822083, + "learning_rate": 4.9073400000000004e-05, + "loss": 2.3565196228027343, + "step": 13900 + }, + { + "epoch": 1.8666666666666667, + "grad_norm": 0.19476266205310822, + "learning_rate": 4.9066733333333336e-05, + "loss": 2.358032989501953, + "step": 14000 + }, + { + "epoch": 1.88, + "grad_norm": 0.22407779097557068, + "learning_rate": 4.906006666666667e-05, + "loss": 2.3561721801757813, + "step": 14100 + }, + { + "epoch": 1.8933333333333333, + "grad_norm": 0.17407096922397614, + "learning_rate": 4.905340000000001e-05, + "loss": 2.3565065002441408, + "step": 14200 + }, + { + "epoch": 1.9066666666666667, + "grad_norm": 0.20838646590709686, + "learning_rate": 4.904673333333333e-05, + "loss": 2.3535838317871094, + "step": 14300 + }, + { + "epoch": 1.92, + "grad_norm": 0.1853237748146057, + "learning_rate": 4.9040066666666665e-05, + "loss": 2.354512481689453, + "step": 14400 + }, + { + "epoch": 1.9333333333333333, + "grad_norm": 0.19149570167064667, + "learning_rate": 4.9033400000000004e-05, + "loss": 2.3577252197265626, + "step": 14500 + }, + { + "epoch": 1.9466666666666668, + "grad_norm": 0.17799700796604156, + "learning_rate": 4.9026733333333336e-05, + "loss": 2.35733154296875, + "step": 14600 + }, + { + "epoch": 1.96, + "grad_norm": 0.19204910099506378, + "learning_rate": 4.902006666666667e-05, + "loss": 2.354717559814453, + "step": 14700 + }, + { + "epoch": 1.9733333333333334, + "grad_norm": 0.2267007678747177, + "learning_rate": 4.90134e-05, + "loss": 2.356217041015625, + "step": 14800 + }, + { + "epoch": 1.9866666666666668, + "grad_norm": 0.19406317174434662, + "learning_rate": 4.900673333333334e-05, + "loss": 2.3556443786621095, + "step": 14900 + }, + { + "epoch": 2.0, + "grad_norm": 0.204499751329422, + "learning_rate": 4.9000066666666665e-05, + "loss": 2.356020965576172, + "step": 15000 + }, + { + "epoch": 2.013333333333333, + "grad_norm": 0.1888091266155243, + "learning_rate": 4.89934e-05, + "loss": 2.352834930419922, + "step": 15100 + }, + { + "epoch": 2.026666666666667, + "grad_norm": 0.19324932992458344, + "learning_rate": 4.8986733333333337e-05, + "loss": 2.354947357177734, + "step": 15200 + }, + { + "epoch": 2.04, + "grad_norm": 0.18967552483081818, + "learning_rate": 4.898006666666667e-05, + "loss": 2.3552085876464846, + "step": 15300 + }, + { + "epoch": 2.0533333333333332, + "grad_norm": 0.1882469207048416, + "learning_rate": 4.89734e-05, + "loss": 2.354617462158203, + "step": 15400 + }, + { + "epoch": 2.066666666666667, + "grad_norm": 0.2014245092868805, + "learning_rate": 4.896673333333333e-05, + "loss": 2.3554867553710936, + "step": 15500 + }, + { + "epoch": 2.08, + "grad_norm": 0.20610852539539337, + "learning_rate": 4.896006666666667e-05, + "loss": 2.3536581420898437, + "step": 15600 + }, + { + "epoch": 2.0933333333333333, + "grad_norm": 0.21335220336914062, + "learning_rate": 4.8953400000000005e-05, + "loss": 2.354955291748047, + "step": 15700 + }, + { + "epoch": 2.1066666666666665, + "grad_norm": 0.19335633516311646, + "learning_rate": 4.894673333333333e-05, + "loss": 2.3532504272460937, + "step": 15800 + }, + { + "epoch": 2.12, + "grad_norm": 0.1970617026090622, + "learning_rate": 4.894006666666667e-05, + "loss": 2.3523245239257813, + "step": 15900 + }, + { + "epoch": 2.1333333333333333, + "grad_norm": 0.195561483502388, + "learning_rate": 4.89334e-05, + "loss": 2.354027099609375, + "step": 16000 + }, + { + "epoch": 2.1466666666666665, + "grad_norm": 0.18854361772537231, + "learning_rate": 4.89268e-05, + "loss": 2.35153564453125, + "step": 16100 + }, + { + "epoch": 2.16, + "grad_norm": 0.20224016904830933, + "learning_rate": 4.892013333333333e-05, + "loss": 2.356122589111328, + "step": 16200 + }, + { + "epoch": 2.1733333333333333, + "grad_norm": 0.18668098747730255, + "learning_rate": 4.891346666666667e-05, + "loss": 2.354725189208984, + "step": 16300 + }, + { + "epoch": 2.1866666666666665, + "grad_norm": 0.1866915374994278, + "learning_rate": 4.8906800000000004e-05, + "loss": 2.354028625488281, + "step": 16400 + }, + { + "epoch": 2.2, + "grad_norm": 0.21461573243141174, + "learning_rate": 4.8900133333333336e-05, + "loss": 2.3526856994628904, + "step": 16500 + }, + { + "epoch": 2.2133333333333334, + "grad_norm": 0.18227700889110565, + "learning_rate": 4.889346666666667e-05, + "loss": 2.3545989990234375, + "step": 16600 + }, + { + "epoch": 2.2266666666666666, + "grad_norm": 0.19773833453655243, + "learning_rate": 4.888680000000001e-05, + "loss": 2.351981201171875, + "step": 16700 + }, + { + "epoch": 2.24, + "grad_norm": 0.20956110954284668, + "learning_rate": 4.888013333333333e-05, + "loss": 2.355366516113281, + "step": 16800 + }, + { + "epoch": 2.2533333333333334, + "grad_norm": 0.1993572860956192, + "learning_rate": 4.8873466666666665e-05, + "loss": 2.3551705932617186, + "step": 16900 + }, + { + "epoch": 2.2666666666666666, + "grad_norm": 0.2015913426876068, + "learning_rate": 4.8866800000000005e-05, + "loss": 2.3545513916015626, + "step": 17000 + }, + { + "epoch": 2.2800000000000002, + "grad_norm": 0.19929593801498413, + "learning_rate": 4.886013333333334e-05, + "loss": 2.352397766113281, + "step": 17100 + }, + { + "epoch": 2.2933333333333334, + "grad_norm": 0.20449623465538025, + "learning_rate": 4.885346666666667e-05, + "loss": 2.354527893066406, + "step": 17200 + }, + { + "epoch": 2.3066666666666666, + "grad_norm": 0.20281392335891724, + "learning_rate": 4.88468e-05, + "loss": 2.351980438232422, + "step": 17300 + }, + { + "epoch": 2.32, + "grad_norm": 0.21583755314350128, + "learning_rate": 4.884013333333334e-05, + "loss": 2.3545767211914064, + "step": 17400 + }, + { + "epoch": 2.3333333333333335, + "grad_norm": 0.20362140238285065, + "learning_rate": 4.8833466666666666e-05, + "loss": 2.3561666870117186, + "step": 17500 + }, + { + "epoch": 2.3466666666666667, + "grad_norm": 0.1887034773826599, + "learning_rate": 4.88268e-05, + "loss": 2.353743438720703, + "step": 17600 + }, + { + "epoch": 2.36, + "grad_norm": 0.1752418577671051, + "learning_rate": 4.882013333333334e-05, + "loss": 2.35181884765625, + "step": 17700 + }, + { + "epoch": 2.3733333333333335, + "grad_norm": 0.19891609251499176, + "learning_rate": 4.881346666666667e-05, + "loss": 2.3536032104492186, + "step": 17800 + }, + { + "epoch": 2.3866666666666667, + "grad_norm": 0.1945076882839203, + "learning_rate": 4.88068e-05, + "loss": 2.35367919921875, + "step": 17900 + }, + { + "epoch": 2.4, + "grad_norm": 0.17770184576511383, + "learning_rate": 4.8800133333333334e-05, + "loss": 2.3528033447265626, + "step": 18000 + }, + { + "epoch": 2.413333333333333, + "grad_norm": 0.223379448056221, + "learning_rate": 4.879353333333333e-05, + "loss": 2.35432861328125, + "step": 18100 + }, + { + "epoch": 2.4266666666666667, + "grad_norm": 0.18828672170639038, + "learning_rate": 4.878686666666667e-05, + "loss": 2.355252380371094, + "step": 18200 + }, + { + "epoch": 2.44, + "grad_norm": 0.18844439089298248, + "learning_rate": 4.8780200000000004e-05, + "loss": 2.3561915588378906, + "step": 18300 + }, + { + "epoch": 2.453333333333333, + "grad_norm": 0.21294449269771576, + "learning_rate": 4.877353333333334e-05, + "loss": 2.3547706604003906, + "step": 18400 + }, + { + "epoch": 2.466666666666667, + "grad_norm": 0.17931200563907623, + "learning_rate": 4.876686666666667e-05, + "loss": 2.355154724121094, + "step": 18500 + }, + { + "epoch": 2.48, + "grad_norm": 0.21106231212615967, + "learning_rate": 4.87602e-05, + "loss": 2.352605895996094, + "step": 18600 + }, + { + "epoch": 2.493333333333333, + "grad_norm": 0.1965954452753067, + "learning_rate": 4.8753533333333333e-05, + "loss": 2.354511260986328, + "step": 18700 + }, + { + "epoch": 2.506666666666667, + "grad_norm": 0.2056257575750351, + "learning_rate": 4.8746866666666666e-05, + "loss": 2.3556398010253905, + "step": 18800 + }, + { + "epoch": 2.52, + "grad_norm": 0.21052542328834534, + "learning_rate": 4.8740200000000005e-05, + "loss": 2.3537603759765626, + "step": 18900 + }, + { + "epoch": 2.533333333333333, + "grad_norm": 0.19049997627735138, + "learning_rate": 4.873353333333334e-05, + "loss": 2.353008270263672, + "step": 19000 + }, + { + "epoch": 2.546666666666667, + "grad_norm": 0.17134717106819153, + "learning_rate": 4.872686666666667e-05, + "loss": 2.3548989868164063, + "step": 19100 + }, + { + "epoch": 2.56, + "grad_norm": 0.19276337325572968, + "learning_rate": 4.87202e-05, + "loss": 2.3533308410644533, + "step": 19200 + }, + { + "epoch": 2.5733333333333333, + "grad_norm": 0.20519237220287323, + "learning_rate": 4.8713533333333334e-05, + "loss": 2.353628692626953, + "step": 19300 + }, + { + "epoch": 2.586666666666667, + "grad_norm": 0.19865448772907257, + "learning_rate": 4.8706866666666666e-05, + "loss": 2.3552372741699217, + "step": 19400 + }, + { + "epoch": 2.6, + "grad_norm": 0.21072329580783844, + "learning_rate": 4.87002e-05, + "loss": 2.354803009033203, + "step": 19500 + }, + { + "epoch": 2.6133333333333333, + "grad_norm": 0.20858490467071533, + "learning_rate": 4.869353333333334e-05, + "loss": 2.352855224609375, + "step": 19600 + }, + { + "epoch": 2.626666666666667, + "grad_norm": 0.19127769768238068, + "learning_rate": 4.868686666666667e-05, + "loss": 2.3559735107421873, + "step": 19700 + }, + { + "epoch": 2.64, + "grad_norm": 0.1971408575773239, + "learning_rate": 4.86802e-05, + "loss": 2.3524879455566405, + "step": 19800 + }, + { + "epoch": 2.6533333333333333, + "grad_norm": 0.19466613233089447, + "learning_rate": 4.867353333333334e-05, + "loss": 2.35252685546875, + "step": 19900 + }, + { + "epoch": 2.6666666666666665, + "grad_norm": 0.17773135006427765, + "learning_rate": 4.866686666666667e-05, + "loss": 2.3533396911621094, + "step": 20000 + }, + { + "epoch": 2.68, + "grad_norm": 0.2046392261981964, + "learning_rate": 4.866026666666667e-05, + "loss": 2.3539585876464844, + "step": 20100 + }, + { + "epoch": 2.6933333333333334, + "grad_norm": 0.1670500934123993, + "learning_rate": 4.8653600000000005e-05, + "loss": 2.353471527099609, + "step": 20200 + }, + { + "epoch": 2.7066666666666666, + "grad_norm": 0.1887359917163849, + "learning_rate": 4.864693333333333e-05, + "loss": 2.3529425048828125, + "step": 20300 + }, + { + "epoch": 2.7199999999999998, + "grad_norm": 0.19046323001384735, + "learning_rate": 4.864026666666667e-05, + "loss": 2.353743133544922, + "step": 20400 + }, + { + "epoch": 2.7333333333333334, + "grad_norm": 0.20893333852291107, + "learning_rate": 4.86336e-05, + "loss": 2.354876708984375, + "step": 20500 + }, + { + "epoch": 2.7466666666666666, + "grad_norm": 0.20090077817440033, + "learning_rate": 4.8626933333333334e-05, + "loss": 2.354145050048828, + "step": 20600 + }, + { + "epoch": 2.76, + "grad_norm": 0.1944134384393692, + "learning_rate": 4.862026666666667e-05, + "loss": 2.3537525939941406, + "step": 20700 + }, + { + "epoch": 2.7733333333333334, + "grad_norm": 0.19937659800052643, + "learning_rate": 4.8613600000000005e-05, + "loss": 2.3532589721679686, + "step": 20800 + }, + { + "epoch": 2.7866666666666666, + "grad_norm": 0.19922621548175812, + "learning_rate": 4.860693333333334e-05, + "loss": 2.3535202026367186, + "step": 20900 + }, + { + "epoch": 2.8, + "grad_norm": 0.17885304987430573, + "learning_rate": 4.860026666666667e-05, + "loss": 2.3526271057128905, + "step": 21000 + }, + { + "epoch": 2.8133333333333335, + "grad_norm": 0.19968298077583313, + "learning_rate": 4.85936e-05, + "loss": 2.351287078857422, + "step": 21100 + }, + { + "epoch": 2.8266666666666667, + "grad_norm": 0.20618899166584015, + "learning_rate": 4.8586933333333334e-05, + "loss": 2.35383544921875, + "step": 21200 + }, + { + "epoch": 2.84, + "grad_norm": 0.18697108328342438, + "learning_rate": 4.8580266666666666e-05, + "loss": 2.3557089233398436, + "step": 21300 + }, + { + "epoch": 2.8533333333333335, + "grad_norm": 0.1982707530260086, + "learning_rate": 4.8573600000000005e-05, + "loss": 2.3569706726074218, + "step": 21400 + }, + { + "epoch": 2.8666666666666667, + "grad_norm": 0.1921544075012207, + "learning_rate": 4.856693333333334e-05, + "loss": 2.354062042236328, + "step": 21500 + }, + { + "epoch": 2.88, + "grad_norm": 0.18305157124996185, + "learning_rate": 4.856026666666667e-05, + "loss": 2.3534732055664063, + "step": 21600 + }, + { + "epoch": 2.8933333333333335, + "grad_norm": 0.1875217705965042, + "learning_rate": 4.85536e-05, + "loss": 2.354545135498047, + "step": 21700 + }, + { + "epoch": 2.9066666666666667, + "grad_norm": 0.20880307257175446, + "learning_rate": 4.8546933333333334e-05, + "loss": 2.353887939453125, + "step": 21800 + }, + { + "epoch": 2.92, + "grad_norm": 0.21262428164482117, + "learning_rate": 4.854026666666667e-05, + "loss": 2.352968292236328, + "step": 21900 + }, + { + "epoch": 2.9333333333333336, + "grad_norm": 0.19341909885406494, + "learning_rate": 4.85336e-05, + "loss": 2.3549241638183593, + "step": 22000 + }, + { + "epoch": 2.9466666666666668, + "grad_norm": 0.2057921290397644, + "learning_rate": 4.8527e-05, + "loss": 2.3518043518066407, + "step": 22100 + }, + { + "epoch": 2.96, + "grad_norm": 0.1986525058746338, + "learning_rate": 4.852033333333334e-05, + "loss": 2.3545606994628905, + "step": 22200 + }, + { + "epoch": 2.9733333333333336, + "grad_norm": 0.19995741546154022, + "learning_rate": 4.851366666666667e-05, + "loss": 2.35246826171875, + "step": 22300 + }, + { + "epoch": 2.986666666666667, + "grad_norm": 0.18662478029727936, + "learning_rate": 4.8507e-05, + "loss": 2.3534344482421874, + "step": 22400 + }, + { + "epoch": 3.0, + "grad_norm": 0.19860990345478058, + "learning_rate": 4.8500333333333334e-05, + "loss": 2.3527035522460937, + "step": 22500 + }, + { + "epoch": 3.013333333333333, + "grad_norm": 0.20039217174053192, + "learning_rate": 4.849366666666667e-05, + "loss": 2.348377532958984, + "step": 22600 + }, + { + "epoch": 3.026666666666667, + "grad_norm": 0.2021869421005249, + "learning_rate": 4.8487000000000005e-05, + "loss": 2.351779022216797, + "step": 22700 + }, + { + "epoch": 3.04, + "grad_norm": 0.1985320746898651, + "learning_rate": 4.848033333333333e-05, + "loss": 2.3483657836914062, + "step": 22800 + }, + { + "epoch": 3.0533333333333332, + "grad_norm": 0.1824573427438736, + "learning_rate": 4.847366666666667e-05, + "loss": 2.347190704345703, + "step": 22900 + }, + { + "epoch": 3.066666666666667, + "grad_norm": 0.19089816510677338, + "learning_rate": 4.8467e-05, + "loss": 2.3492135620117187, + "step": 23000 + }, + { + "epoch": 3.08, + "grad_norm": 0.23082399368286133, + "learning_rate": 4.8460333333333334e-05, + "loss": 2.348924560546875, + "step": 23100 + }, + { + "epoch": 3.0933333333333333, + "grad_norm": 0.18981102108955383, + "learning_rate": 4.8453666666666667e-05, + "loss": 2.350345001220703, + "step": 23200 + }, + { + "epoch": 3.1066666666666665, + "grad_norm": 0.19843408465385437, + "learning_rate": 4.8447000000000006e-05, + "loss": 2.3490699768066405, + "step": 23300 + }, + { + "epoch": 3.12, + "grad_norm": 0.19274167716503143, + "learning_rate": 4.844033333333334e-05, + "loss": 2.350037078857422, + "step": 23400 + }, + { + "epoch": 3.1333333333333333, + "grad_norm": 0.1848369985818863, + "learning_rate": 4.843366666666667e-05, + "loss": 2.3491517639160158, + "step": 23500 + }, + { + "epoch": 3.1466666666666665, + "grad_norm": 0.18349026143550873, + "learning_rate": 4.8427e-05, + "loss": 2.3494111633300783, + "step": 23600 + }, + { + "epoch": 3.16, + "grad_norm": 0.20055054128170013, + "learning_rate": 4.8420333333333335e-05, + "loss": 2.3514225769042967, + "step": 23700 + }, + { + "epoch": 3.1733333333333333, + "grad_norm": 0.17645560204982758, + "learning_rate": 4.841366666666667e-05, + "loss": 2.3496327209472656, + "step": 23800 + }, + { + "epoch": 3.1866666666666665, + "grad_norm": 0.20394593477249146, + "learning_rate": 4.8407e-05, + "loss": 2.34930908203125, + "step": 23900 + }, + { + "epoch": 3.2, + "grad_norm": 0.19807790219783783, + "learning_rate": 4.840033333333334e-05, + "loss": 2.350684814453125, + "step": 24000 + }, + { + "epoch": 3.2133333333333334, + "grad_norm": 0.19074247777462006, + "learning_rate": 4.839373333333334e-05, + "loss": 2.3482009887695314, + "step": 24100 + }, + { + "epoch": 3.2266666666666666, + "grad_norm": 0.184867724776268, + "learning_rate": 4.838706666666667e-05, + "loss": 2.3509567260742186, + "step": 24200 + }, + { + "epoch": 3.24, + "grad_norm": 0.20876654982566833, + "learning_rate": 4.83804e-05, + "loss": 2.351715393066406, + "step": 24300 + }, + { + "epoch": 3.2533333333333334, + "grad_norm": 0.20710976421833038, + "learning_rate": 4.837373333333334e-05, + "loss": 2.352671813964844, + "step": 24400 + }, + { + "epoch": 3.2666666666666666, + "grad_norm": 0.2047370821237564, + "learning_rate": 4.836706666666667e-05, + "loss": 2.347806701660156, + "step": 24500 + }, + { + "epoch": 3.2800000000000002, + "grad_norm": 0.19557665288448334, + "learning_rate": 4.83604e-05, + "loss": 2.3503456115722656, + "step": 24600 + }, + { + "epoch": 3.2933333333333334, + "grad_norm": 0.19264017045497894, + "learning_rate": 4.835373333333333e-05, + "loss": 2.350893859863281, + "step": 24700 + }, + { + "epoch": 3.3066666666666666, + "grad_norm": 0.1815241277217865, + "learning_rate": 4.834706666666667e-05, + "loss": 2.3506166076660158, + "step": 24800 + }, + { + "epoch": 3.32, + "grad_norm": 0.19273795187473297, + "learning_rate": 4.83404e-05, + "loss": 2.3491062927246094, + "step": 24900 + }, + { + "epoch": 3.3333333333333335, + "grad_norm": 0.1982475221157074, + "learning_rate": 4.8333733333333334e-05, + "loss": 2.350149383544922, + "step": 25000 + }, + { + "epoch": 3.3466666666666667, + "grad_norm": 0.19936062395572662, + "learning_rate": 4.8327066666666674e-05, + "loss": 2.349862518310547, + "step": 25100 + }, + { + "epoch": 3.36, + "grad_norm": 0.1829392910003662, + "learning_rate": 4.8320400000000006e-05, + "loss": 2.351768035888672, + "step": 25200 + }, + { + "epoch": 3.3733333333333335, + "grad_norm": 0.1831563413143158, + "learning_rate": 4.831373333333333e-05, + "loss": 2.351492919921875, + "step": 25300 + }, + { + "epoch": 3.3866666666666667, + "grad_norm": 0.20415860414505005, + "learning_rate": 4.830706666666667e-05, + "loss": 2.3486749267578126, + "step": 25400 + }, + { + "epoch": 3.4, + "grad_norm": 0.17977586388587952, + "learning_rate": 4.83004e-05, + "loss": 2.351340026855469, + "step": 25500 + }, + { + "epoch": 3.413333333333333, + "grad_norm": 0.1846362203359604, + "learning_rate": 4.8293733333333335e-05, + "loss": 2.351724090576172, + "step": 25600 + }, + { + "epoch": 3.4266666666666667, + "grad_norm": 0.18675661087036133, + "learning_rate": 4.828706666666667e-05, + "loss": 2.351480712890625, + "step": 25700 + }, + { + "epoch": 3.44, + "grad_norm": 0.18456125259399414, + "learning_rate": 4.8280400000000006e-05, + "loss": 2.3500599670410156, + "step": 25800 + }, + { + "epoch": 3.453333333333333, + "grad_norm": 0.19029958546161652, + "learning_rate": 4.827373333333334e-05, + "loss": 2.350344543457031, + "step": 25900 + }, + { + "epoch": 3.466666666666667, + "grad_norm": 0.17213845252990723, + "learning_rate": 4.826706666666667e-05, + "loss": 2.3511953735351563, + "step": 26000 + }, + { + "epoch": 3.48, + "grad_norm": 0.19007565081119537, + "learning_rate": 4.826046666666667e-05, + "loss": 2.3536442565917968, + "step": 26100 + }, + { + "epoch": 3.493333333333333, + "grad_norm": 0.2030433863401413, + "learning_rate": 4.82538e-05, + "loss": 2.3524905395507814, + "step": 26200 + }, + { + "epoch": 3.506666666666667, + "grad_norm": 0.1910092532634735, + "learning_rate": 4.8247133333333334e-05, + "loss": 2.349417419433594, + "step": 26300 + }, + { + "epoch": 3.52, + "grad_norm": 0.1992577612400055, + "learning_rate": 4.8240466666666667e-05, + "loss": 2.350249938964844, + "step": 26400 + }, + { + "epoch": 3.533333333333333, + "grad_norm": 0.2043229341506958, + "learning_rate": 4.82338e-05, + "loss": 2.3508177185058594, + "step": 26500 + }, + { + "epoch": 3.546666666666667, + "grad_norm": 0.19904406368732452, + "learning_rate": 4.822713333333334e-05, + "loss": 2.3501368713378907, + "step": 26600 + }, + { + "epoch": 3.56, + "grad_norm": 0.2048622965812683, + "learning_rate": 4.822046666666667e-05, + "loss": 2.3512261962890624, + "step": 26700 + }, + { + "epoch": 3.5733333333333333, + "grad_norm": 0.18168894946575165, + "learning_rate": 4.82138e-05, + "loss": 2.3506343078613283, + "step": 26800 + }, + { + "epoch": 3.586666666666667, + "grad_norm": 0.2186703383922577, + "learning_rate": 4.8207133333333335e-05, + "loss": 2.3507453918457033, + "step": 26900 + }, + { + "epoch": 3.6, + "grad_norm": 0.17658771574497223, + "learning_rate": 4.8200466666666674e-05, + "loss": 2.350555114746094, + "step": 27000 + }, + { + "epoch": 3.6133333333333333, + "grad_norm": 0.18329951167106628, + "learning_rate": 4.81938e-05, + "loss": 2.3507563781738283, + "step": 27100 + }, + { + "epoch": 3.626666666666667, + "grad_norm": 0.17677000164985657, + "learning_rate": 4.818713333333333e-05, + "loss": 2.3508815002441406, + "step": 27200 + }, + { + "epoch": 3.64, + "grad_norm": 0.18543322384357452, + "learning_rate": 4.818046666666667e-05, + "loss": 2.353324737548828, + "step": 27300 + }, + { + "epoch": 3.6533333333333333, + "grad_norm": 0.17043279111385345, + "learning_rate": 4.81738e-05, + "loss": 2.351223907470703, + "step": 27400 + }, + { + "epoch": 3.6666666666666665, + "grad_norm": 0.196268692612648, + "learning_rate": 4.8167133333333335e-05, + "loss": 2.348458557128906, + "step": 27500 + }, + { + "epoch": 3.68, + "grad_norm": 0.21252736449241638, + "learning_rate": 4.816046666666667e-05, + "loss": 2.351412811279297, + "step": 27600 + }, + { + "epoch": 3.6933333333333334, + "grad_norm": 0.1941421627998352, + "learning_rate": 4.8153800000000006e-05, + "loss": 2.3509474182128907, + "step": 27700 + }, + { + "epoch": 3.7066666666666666, + "grad_norm": 0.18156079947948456, + "learning_rate": 4.814713333333333e-05, + "loss": 2.3500953674316407, + "step": 27800 + }, + { + "epoch": 3.7199999999999998, + "grad_norm": 0.18474163115024567, + "learning_rate": 4.8140466666666664e-05, + "loss": 2.3500129699707033, + "step": 27900 + }, + { + "epoch": 3.7333333333333334, + "grad_norm": 0.1893375813961029, + "learning_rate": 4.81338e-05, + "loss": 2.3503759765625, + "step": 28000 + }, + { + "epoch": 3.7466666666666666, + "grad_norm": 0.18845497071743011, + "learning_rate": 4.81272e-05, + "loss": 2.3525970458984373, + "step": 28100 + }, + { + "epoch": 3.76, + "grad_norm": 0.21595294773578644, + "learning_rate": 4.8120533333333335e-05, + "loss": 2.3500466918945313, + "step": 28200 + }, + { + "epoch": 3.7733333333333334, + "grad_norm": 0.19505618512630463, + "learning_rate": 4.811386666666667e-05, + "loss": 2.349498748779297, + "step": 28300 + }, + { + "epoch": 3.7866666666666666, + "grad_norm": 0.17862743139266968, + "learning_rate": 4.81072e-05, + "loss": 2.348866424560547, + "step": 28400 + }, + { + "epoch": 3.8, + "grad_norm": 0.194855734705925, + "learning_rate": 4.810053333333334e-05, + "loss": 2.3509757995605467, + "step": 28500 + }, + { + "epoch": 3.8133333333333335, + "grad_norm": 0.19078636169433594, + "learning_rate": 4.809386666666667e-05, + "loss": 2.3488845825195312, + "step": 28600 + }, + { + "epoch": 3.8266666666666667, + "grad_norm": 0.18988379836082458, + "learning_rate": 4.80872e-05, + "loss": 2.35125244140625, + "step": 28700 + }, + { + "epoch": 3.84, + "grad_norm": 0.1913130134344101, + "learning_rate": 4.8080533333333335e-05, + "loss": 2.3494662475585937, + "step": 28800 + }, + { + "epoch": 3.8533333333333335, + "grad_norm": 0.2060711681842804, + "learning_rate": 4.807386666666667e-05, + "loss": 2.3524136352539062, + "step": 28900 + }, + { + "epoch": 3.8666666666666667, + "grad_norm": 0.18792103230953217, + "learning_rate": 4.80672e-05, + "loss": 2.351210479736328, + "step": 29000 + }, + { + "epoch": 3.88, + "grad_norm": 0.2034904658794403, + "learning_rate": 4.806053333333334e-05, + "loss": 2.3502317810058595, + "step": 29100 + }, + { + "epoch": 3.8933333333333335, + "grad_norm": 0.20705494284629822, + "learning_rate": 4.805386666666667e-05, + "loss": 2.3528851318359374, + "step": 29200 + }, + { + "epoch": 3.9066666666666667, + "grad_norm": 0.17130215466022491, + "learning_rate": 4.80472e-05, + "loss": 2.3496728515625, + "step": 29300 + }, + { + "epoch": 3.92, + "grad_norm": 0.22938485443592072, + "learning_rate": 4.8040533333333335e-05, + "loss": 2.3508564758300783, + "step": 29400 + }, + { + "epoch": 3.9333333333333336, + "grad_norm": 0.20697031915187836, + "learning_rate": 4.8033866666666674e-05, + "loss": 2.350555419921875, + "step": 29500 + }, + { + "epoch": 3.9466666666666668, + "grad_norm": 0.21105030179023743, + "learning_rate": 4.80272e-05, + "loss": 2.3500137329101562, + "step": 29600 + }, + { + "epoch": 3.96, + "grad_norm": 0.1795365959405899, + "learning_rate": 4.802053333333333e-05, + "loss": 2.351229705810547, + "step": 29700 + }, + { + "epoch": 3.9733333333333336, + "grad_norm": 0.20336268842220306, + "learning_rate": 4.801386666666667e-05, + "loss": 2.3524740600585936, + "step": 29800 + }, + { + "epoch": 3.986666666666667, + "grad_norm": 0.18867026269435883, + "learning_rate": 4.8007200000000003e-05, + "loss": 2.35136474609375, + "step": 29900 + }, + { + "epoch": 4.0, + "grad_norm": 0.1865285336971283, + "learning_rate": 4.8000533333333336e-05, + "loss": 2.3508816528320313, + "step": 30000 + }, + { + "epoch": 4.013333333333334, + "grad_norm": 0.19620107114315033, + "learning_rate": 4.7993933333333335e-05, + "loss": 2.344427185058594, + "step": 30100 + }, + { + "epoch": 4.026666666666666, + "grad_norm": 0.19542329013347626, + "learning_rate": 4.798726666666667e-05, + "loss": 2.3426863098144532, + "step": 30200 + }, + { + "epoch": 4.04, + "grad_norm": 0.19271595776081085, + "learning_rate": 4.7980600000000006e-05, + "loss": 2.340071258544922, + "step": 30300 + }, + { + "epoch": 4.053333333333334, + "grad_norm": 0.1889171600341797, + "learning_rate": 4.797393333333334e-05, + "loss": 2.338631896972656, + "step": 30400 + }, + { + "epoch": 4.066666666666666, + "grad_norm": 0.19066178798675537, + "learning_rate": 4.796726666666667e-05, + "loss": 2.342739715576172, + "step": 30500 + }, + { + "epoch": 4.08, + "grad_norm": 0.1947835087776184, + "learning_rate": 4.79606e-05, + "loss": 2.3432049560546875, + "step": 30600 + }, + { + "epoch": 4.093333333333334, + "grad_norm": 0.21322356164455414, + "learning_rate": 4.7953933333333335e-05, + "loss": 2.342285614013672, + "step": 30700 + }, + { + "epoch": 4.1066666666666665, + "grad_norm": 0.20188263058662415, + "learning_rate": 4.794726666666667e-05, + "loss": 2.3427188110351564, + "step": 30800 + }, + { + "epoch": 4.12, + "grad_norm": 0.19048044085502625, + "learning_rate": 4.79406e-05, + "loss": 2.3455911254882813, + "step": 30900 + }, + { + "epoch": 4.133333333333334, + "grad_norm": 0.20373786985874176, + "learning_rate": 4.793393333333334e-05, + "loss": 2.34266845703125, + "step": 31000 + }, + { + "epoch": 4.1466666666666665, + "grad_norm": 0.19136583805084229, + "learning_rate": 4.792726666666667e-05, + "loss": 2.345565185546875, + "step": 31100 + }, + { + "epoch": 4.16, + "grad_norm": 0.20485562086105347, + "learning_rate": 4.79206e-05, + "loss": 2.3444659423828127, + "step": 31200 + }, + { + "epoch": 4.173333333333334, + "grad_norm": 0.19716604053974152, + "learning_rate": 4.7913933333333336e-05, + "loss": 2.3462744140625, + "step": 31300 + }, + { + "epoch": 4.1866666666666665, + "grad_norm": 0.1901930719614029, + "learning_rate": 4.790726666666667e-05, + "loss": 2.3410409545898436, + "step": 31400 + }, + { + "epoch": 4.2, + "grad_norm": 0.19195866584777832, + "learning_rate": 4.79006e-05, + "loss": 2.3443292236328124, + "step": 31500 + }, + { + "epoch": 4.213333333333333, + "grad_norm": 0.19171933829784393, + "learning_rate": 4.789393333333333e-05, + "loss": 2.3432662963867186, + "step": 31600 + }, + { + "epoch": 4.226666666666667, + "grad_norm": 0.20632386207580566, + "learning_rate": 4.788726666666667e-05, + "loss": 2.3424139404296875, + "step": 31700 + }, + { + "epoch": 4.24, + "grad_norm": 0.20935772359371185, + "learning_rate": 4.7880600000000004e-05, + "loss": 2.3445693969726564, + "step": 31800 + }, + { + "epoch": 4.253333333333333, + "grad_norm": 0.2092011719942093, + "learning_rate": 4.7873933333333336e-05, + "loss": 2.3450819396972657, + "step": 31900 + }, + { + "epoch": 4.266666666666667, + "grad_norm": 0.18511556088924408, + "learning_rate": 4.786726666666667e-05, + "loss": 2.3434269714355467, + "step": 32000 + }, + { + "epoch": 4.28, + "grad_norm": 0.19721107184886932, + "learning_rate": 4.786066666666667e-05, + "loss": 2.3466552734375, + "step": 32100 + }, + { + "epoch": 4.293333333333333, + "grad_norm": 0.20387394726276398, + "learning_rate": 4.7854000000000006e-05, + "loss": 2.344354705810547, + "step": 32200 + }, + { + "epoch": 4.306666666666667, + "grad_norm": 0.1933874487876892, + "learning_rate": 4.784733333333333e-05, + "loss": 2.3450242614746095, + "step": 32300 + }, + { + "epoch": 4.32, + "grad_norm": 0.18852448463439941, + "learning_rate": 4.7840666666666664e-05, + "loss": 2.345384368896484, + "step": 32400 + }, + { + "epoch": 4.333333333333333, + "grad_norm": 0.1856076568365097, + "learning_rate": 4.7834e-05, + "loss": 2.3448046875, + "step": 32500 + }, + { + "epoch": 4.346666666666667, + "grad_norm": 0.1768845170736313, + "learning_rate": 4.7827333333333335e-05, + "loss": 2.3447705078125, + "step": 32600 + }, + { + "epoch": 4.36, + "grad_norm": 0.2036508321762085, + "learning_rate": 4.782066666666667e-05, + "loss": 2.3455548095703125, + "step": 32700 + }, + { + "epoch": 4.373333333333333, + "grad_norm": 0.2223418802022934, + "learning_rate": 4.7814e-05, + "loss": 2.345106353759766, + "step": 32800 + }, + { + "epoch": 4.386666666666667, + "grad_norm": 0.19732633233070374, + "learning_rate": 4.780733333333334e-05, + "loss": 2.34563720703125, + "step": 32900 + }, + { + "epoch": 4.4, + "grad_norm": 0.19825312495231628, + "learning_rate": 4.780066666666667e-05, + "loss": 2.3472279357910155, + "step": 33000 + }, + { + "epoch": 4.413333333333333, + "grad_norm": 0.20383819937705994, + "learning_rate": 4.7794e-05, + "loss": 2.3474839782714843, + "step": 33100 + }, + { + "epoch": 4.426666666666667, + "grad_norm": 0.18383854627609253, + "learning_rate": 4.7787333333333336e-05, + "loss": 2.347451171875, + "step": 33200 + }, + { + "epoch": 4.44, + "grad_norm": 0.2009461224079132, + "learning_rate": 4.778066666666667e-05, + "loss": 2.3456491088867186, + "step": 33300 + }, + { + "epoch": 4.453333333333333, + "grad_norm": 0.1955096274614334, + "learning_rate": 4.7774e-05, + "loss": 2.347562255859375, + "step": 33400 + }, + { + "epoch": 4.466666666666667, + "grad_norm": 0.1971255987882614, + "learning_rate": 4.776733333333334e-05, + "loss": 2.3455210876464845, + "step": 33500 + }, + { + "epoch": 4.48, + "grad_norm": 0.2104266732931137, + "learning_rate": 4.776066666666667e-05, + "loss": 2.3482284545898438, + "step": 33600 + }, + { + "epoch": 4.493333333333333, + "grad_norm": 0.19855403900146484, + "learning_rate": 4.7754000000000004e-05, + "loss": 2.345506439208984, + "step": 33700 + }, + { + "epoch": 4.506666666666667, + "grad_norm": 0.1903480589389801, + "learning_rate": 4.7747333333333336e-05, + "loss": 2.345941925048828, + "step": 33800 + }, + { + "epoch": 4.52, + "grad_norm": 0.18413390219211578, + "learning_rate": 4.774066666666667e-05, + "loss": 2.345931091308594, + "step": 33900 + }, + { + "epoch": 4.533333333333333, + "grad_norm": 0.2099205106496811, + "learning_rate": 4.7734e-05, + "loss": 2.34525146484375, + "step": 34000 + }, + { + "epoch": 4.546666666666667, + "grad_norm": 0.19890472292900085, + "learning_rate": 4.77274e-05, + "loss": 2.3454127502441406, + "step": 34100 + }, + { + "epoch": 4.5600000000000005, + "grad_norm": 0.1928263008594513, + "learning_rate": 4.772073333333333e-05, + "loss": 2.3484063720703126, + "step": 34200 + }, + { + "epoch": 4.573333333333333, + "grad_norm": 0.19899751245975494, + "learning_rate": 4.771406666666667e-05, + "loss": 2.344409637451172, + "step": 34300 + }, + { + "epoch": 4.586666666666667, + "grad_norm": 0.19718094170093536, + "learning_rate": 4.77074e-05, + "loss": 2.346121520996094, + "step": 34400 + }, + { + "epoch": 4.6, + "grad_norm": 0.20367039740085602, + "learning_rate": 4.7700733333333336e-05, + "loss": 2.3464027404785157, + "step": 34500 + }, + { + "epoch": 4.613333333333333, + "grad_norm": 0.2027977555990219, + "learning_rate": 4.769406666666667e-05, + "loss": 2.346643371582031, + "step": 34600 + }, + { + "epoch": 4.626666666666667, + "grad_norm": 0.19116739928722382, + "learning_rate": 4.768740000000001e-05, + "loss": 2.3448785400390624, + "step": 34700 + }, + { + "epoch": 4.64, + "grad_norm": 0.1741366684436798, + "learning_rate": 4.768073333333334e-05, + "loss": 2.3467585754394533, + "step": 34800 + }, + { + "epoch": 4.653333333333333, + "grad_norm": 0.19366861879825592, + "learning_rate": 4.7674066666666665e-05, + "loss": 2.346854248046875, + "step": 34900 + }, + { + "epoch": 4.666666666666667, + "grad_norm": 0.1961996853351593, + "learning_rate": 4.7667400000000004e-05, + "loss": 2.346597442626953, + "step": 35000 + }, + { + "epoch": 4.68, + "grad_norm": 0.20493026077747345, + "learning_rate": 4.7660733333333336e-05, + "loss": 2.3467396545410155, + "step": 35100 + }, + { + "epoch": 4.693333333333333, + "grad_norm": 0.19343268871307373, + "learning_rate": 4.765406666666667e-05, + "loss": 2.345442352294922, + "step": 35200 + }, + { + "epoch": 4.706666666666667, + "grad_norm": 0.19839325547218323, + "learning_rate": 4.76474e-05, + "loss": 2.348248291015625, + "step": 35300 + }, + { + "epoch": 4.72, + "grad_norm": 0.19443462789058685, + "learning_rate": 4.764073333333334e-05, + "loss": 2.3478456115722657, + "step": 35400 + }, + { + "epoch": 4.733333333333333, + "grad_norm": 0.18703633546829224, + "learning_rate": 4.763406666666667e-05, + "loss": 2.3447303771972656, + "step": 35500 + }, + { + "epoch": 4.746666666666667, + "grad_norm": 0.19159509241580963, + "learning_rate": 4.76274e-05, + "loss": 2.3463864135742187, + "step": 35600 + }, + { + "epoch": 4.76, + "grad_norm": 0.19903169572353363, + "learning_rate": 4.7620733333333336e-05, + "loss": 2.347983093261719, + "step": 35700 + }, + { + "epoch": 4.773333333333333, + "grad_norm": 0.19707246124744415, + "learning_rate": 4.761406666666667e-05, + "loss": 2.3435577392578124, + "step": 35800 + }, + { + "epoch": 4.786666666666667, + "grad_norm": 0.183243989944458, + "learning_rate": 4.76074e-05, + "loss": 2.346152038574219, + "step": 35900 + }, + { + "epoch": 4.8, + "grad_norm": 0.1864614188671112, + "learning_rate": 4.760073333333333e-05, + "loss": 2.3478399658203126, + "step": 36000 + }, + { + "epoch": 4.8133333333333335, + "grad_norm": 0.19538547098636627, + "learning_rate": 4.759413333333333e-05, + "loss": 2.34772705078125, + "step": 36100 + }, + { + "epoch": 4.826666666666666, + "grad_norm": 0.19601057469844818, + "learning_rate": 4.758746666666667e-05, + "loss": 2.3468177795410154, + "step": 36200 + }, + { + "epoch": 4.84, + "grad_norm": 0.19639572501182556, + "learning_rate": 4.7580800000000004e-05, + "loss": 2.3478041076660157, + "step": 36300 + }, + { + "epoch": 4.8533333333333335, + "grad_norm": 0.19426213204860687, + "learning_rate": 4.7574133333333336e-05, + "loss": 2.345642547607422, + "step": 36400 + }, + { + "epoch": 4.866666666666667, + "grad_norm": 0.17866654694080353, + "learning_rate": 4.756746666666667e-05, + "loss": 2.3476348876953126, + "step": 36500 + }, + { + "epoch": 4.88, + "grad_norm": 0.20611488819122314, + "learning_rate": 4.75608e-05, + "loss": 2.3455621337890626, + "step": 36600 + }, + { + "epoch": 4.8933333333333335, + "grad_norm": 0.19792433083057404, + "learning_rate": 4.755413333333333e-05, + "loss": 2.3475059509277343, + "step": 36700 + }, + { + "epoch": 4.906666666666666, + "grad_norm": 0.20012043416500092, + "learning_rate": 4.7547466666666665e-05, + "loss": 2.3476327514648436, + "step": 36800 + }, + { + "epoch": 4.92, + "grad_norm": 0.21811543405056, + "learning_rate": 4.7540800000000004e-05, + "loss": 2.3479005432128908, + "step": 36900 + }, + { + "epoch": 4.933333333333334, + "grad_norm": 0.18837958574295044, + "learning_rate": 4.7534133333333336e-05, + "loss": 2.3472393798828124, + "step": 37000 + }, + { + "epoch": 4.946666666666666, + "grad_norm": 0.20428119599819183, + "learning_rate": 4.752746666666667e-05, + "loss": 2.3473336791992185, + "step": 37100 + }, + { + "epoch": 4.96, + "grad_norm": 0.2100653052330017, + "learning_rate": 4.752080000000001e-05, + "loss": 2.3485343933105467, + "step": 37200 + }, + { + "epoch": 4.973333333333334, + "grad_norm": 0.19952954351902008, + "learning_rate": 4.751413333333334e-05, + "loss": 2.347123718261719, + "step": 37300 + }, + { + "epoch": 4.986666666666666, + "grad_norm": 0.19739681482315063, + "learning_rate": 4.7507466666666665e-05, + "loss": 2.347565155029297, + "step": 37400 + }, + { + "epoch": 5.0, + "grad_norm": 0.20094037055969238, + "learning_rate": 4.75008e-05, + "loss": 2.3468731689453124, + "step": 37500 + }, + { + "epoch": 5.013333333333334, + "grad_norm": 0.21585266292095184, + "learning_rate": 4.749413333333334e-05, + "loss": 2.333679962158203, + "step": 37600 + }, + { + "epoch": 5.026666666666666, + "grad_norm": 0.20911413431167603, + "learning_rate": 4.748746666666667e-05, + "loss": 2.3350621032714844, + "step": 37700 + }, + { + "epoch": 5.04, + "grad_norm": 0.19561605155467987, + "learning_rate": 4.74808e-05, + "loss": 2.334278564453125, + "step": 37800 + }, + { + "epoch": 5.053333333333334, + "grad_norm": 0.2007005661725998, + "learning_rate": 4.747413333333334e-05, + "loss": 2.3355723571777345, + "step": 37900 + }, + { + "epoch": 5.066666666666666, + "grad_norm": 0.21478916704654694, + "learning_rate": 4.746746666666667e-05, + "loss": 2.335912628173828, + "step": 38000 + }, + { + "epoch": 5.08, + "grad_norm": 0.20300929248332977, + "learning_rate": 4.74608e-05, + "loss": 2.3348677062988283, + "step": 38100 + }, + { + "epoch": 5.093333333333334, + "grad_norm": 0.1893633008003235, + "learning_rate": 4.7454200000000004e-05, + "loss": 2.3340078735351564, + "step": 38200 + }, + { + "epoch": 5.1066666666666665, + "grad_norm": 0.20675773918628693, + "learning_rate": 4.7447533333333336e-05, + "loss": 2.3374041748046874, + "step": 38300 + }, + { + "epoch": 5.12, + "grad_norm": 0.21601155400276184, + "learning_rate": 4.744086666666667e-05, + "loss": 2.3355015563964843, + "step": 38400 + }, + { + "epoch": 5.133333333333334, + "grad_norm": 0.20173364877700806, + "learning_rate": 4.74342e-05, + "loss": 2.336921844482422, + "step": 38500 + }, + { + "epoch": 5.1466666666666665, + "grad_norm": 0.19146205484867096, + "learning_rate": 4.742753333333333e-05, + "loss": 2.338092956542969, + "step": 38600 + }, + { + "epoch": 5.16, + "grad_norm": 0.19151638448238373, + "learning_rate": 4.742086666666667e-05, + "loss": 2.337191162109375, + "step": 38700 + }, + { + "epoch": 5.173333333333334, + "grad_norm": 0.19342660903930664, + "learning_rate": 4.7414200000000004e-05, + "loss": 2.338902893066406, + "step": 38800 + }, + { + "epoch": 5.1866666666666665, + "grad_norm": 0.18506617844104767, + "learning_rate": 4.7407533333333336e-05, + "loss": 2.3370294189453125, + "step": 38900 + }, + { + "epoch": 5.2, + "grad_norm": 0.1852942407131195, + "learning_rate": 4.740086666666667e-05, + "loss": 2.3374237060546874, + "step": 39000 + }, + { + "epoch": 5.213333333333333, + "grad_norm": 0.22944355010986328, + "learning_rate": 4.73942e-05, + "loss": 2.336438751220703, + "step": 39100 + }, + { + "epoch": 5.226666666666667, + "grad_norm": 0.19692735373973846, + "learning_rate": 4.738753333333333e-05, + "loss": 2.3369683837890625, + "step": 39200 + }, + { + "epoch": 5.24, + "grad_norm": 0.21631871163845062, + "learning_rate": 4.7380866666666666e-05, + "loss": 2.3371484375, + "step": 39300 + }, + { + "epoch": 5.253333333333333, + "grad_norm": 0.20942172408103943, + "learning_rate": 4.7374200000000005e-05, + "loss": 2.3369624328613283, + "step": 39400 + }, + { + "epoch": 5.266666666666667, + "grad_norm": 0.1939464509487152, + "learning_rate": 4.736753333333334e-05, + "loss": 2.337432556152344, + "step": 39500 + }, + { + "epoch": 5.28, + "grad_norm": 0.17876707017421722, + "learning_rate": 4.736086666666667e-05, + "loss": 2.3396649169921875, + "step": 39600 + }, + { + "epoch": 5.293333333333333, + "grad_norm": 0.21455919742584229, + "learning_rate": 4.73542e-05, + "loss": 2.3403550720214845, + "step": 39700 + }, + { + "epoch": 5.306666666666667, + "grad_norm": 0.19953106343746185, + "learning_rate": 4.734753333333334e-05, + "loss": 2.3371241760253905, + "step": 39800 + }, + { + "epoch": 5.32, + "grad_norm": 0.19843876361846924, + "learning_rate": 4.7340866666666666e-05, + "loss": 2.3368731689453126, + "step": 39900 + }, + { + "epoch": 5.333333333333333, + "grad_norm": 0.20457053184509277, + "learning_rate": 4.73342e-05, + "loss": 2.3382992553710937, + "step": 40000 + }, + { + "epoch": 5.346666666666667, + "grad_norm": 0.195728600025177, + "learning_rate": 4.732753333333334e-05, + "loss": 2.337715911865234, + "step": 40100 + }, + { + "epoch": 5.36, + "grad_norm": 0.19587790966033936, + "learning_rate": 4.7320933333333336e-05, + "loss": 2.3404110717773436, + "step": 40200 + }, + { + "epoch": 5.373333333333333, + "grad_norm": 0.20648671686649323, + "learning_rate": 4.731426666666667e-05, + "loss": 2.3392234802246095, + "step": 40300 + }, + { + "epoch": 5.386666666666667, + "grad_norm": 0.1902915984392166, + "learning_rate": 4.73076e-05, + "loss": 2.3366790771484376, + "step": 40400 + }, + { + "epoch": 5.4, + "grad_norm": 0.19474172592163086, + "learning_rate": 4.730093333333333e-05, + "loss": 2.337915344238281, + "step": 40500 + }, + { + "epoch": 5.413333333333333, + "grad_norm": 0.19446231424808502, + "learning_rate": 4.729426666666667e-05, + "loss": 2.3386886596679686, + "step": 40600 + }, + { + "epoch": 5.426666666666667, + "grad_norm": 0.18280309438705444, + "learning_rate": 4.7287600000000004e-05, + "loss": 2.3403004455566405, + "step": 40700 + }, + { + "epoch": 5.44, + "grad_norm": 0.1899874061346054, + "learning_rate": 4.728093333333334e-05, + "loss": 2.3395709228515624, + "step": 40800 + }, + { + "epoch": 5.453333333333333, + "grad_norm": 0.21245285868644714, + "learning_rate": 4.727426666666667e-05, + "loss": 2.341641693115234, + "step": 40900 + }, + { + "epoch": 5.466666666666667, + "grad_norm": 0.18492910265922546, + "learning_rate": 4.72676e-05, + "loss": 2.338828277587891, + "step": 41000 + }, + { + "epoch": 5.48, + "grad_norm": 0.19576863944530487, + "learning_rate": 4.7260933333333334e-05, + "loss": 2.340592498779297, + "step": 41100 + }, + { + "epoch": 5.493333333333333, + "grad_norm": 0.21991156041622162, + "learning_rate": 4.7254266666666666e-05, + "loss": 2.3374070739746093, + "step": 41200 + }, + { + "epoch": 5.506666666666667, + "grad_norm": 0.2011844664812088, + "learning_rate": 4.7247600000000005e-05, + "loss": 2.340482025146484, + "step": 41300 + }, + { + "epoch": 5.52, + "grad_norm": 0.1887616068124771, + "learning_rate": 4.724093333333334e-05, + "loss": 2.3403477478027344, + "step": 41400 + }, + { + "epoch": 5.533333333333333, + "grad_norm": 0.2083723396062851, + "learning_rate": 4.723426666666667e-05, + "loss": 2.338939361572266, + "step": 41500 + }, + { + "epoch": 5.546666666666667, + "grad_norm": 0.20391573011875153, + "learning_rate": 4.72276e-05, + "loss": 2.341011962890625, + "step": 41600 + }, + { + "epoch": 5.5600000000000005, + "grad_norm": 0.2055550515651703, + "learning_rate": 4.7220933333333334e-05, + "loss": 2.3417536926269533, + "step": 41700 + }, + { + "epoch": 5.573333333333333, + "grad_norm": 0.20119526982307434, + "learning_rate": 4.7214266666666666e-05, + "loss": 2.341081390380859, + "step": 41800 + }, + { + "epoch": 5.586666666666667, + "grad_norm": 0.19019430875778198, + "learning_rate": 4.7207600000000005e-05, + "loss": 2.3428114318847655, + "step": 41900 + }, + { + "epoch": 5.6, + "grad_norm": 0.21287046372890472, + "learning_rate": 4.720093333333334e-05, + "loss": 2.3393617248535157, + "step": 42000 + }, + { + "epoch": 5.613333333333333, + "grad_norm": 0.19636501371860504, + "learning_rate": 4.719426666666667e-05, + "loss": 2.341305694580078, + "step": 42100 + }, + { + "epoch": 5.626666666666667, + "grad_norm": 0.19112545251846313, + "learning_rate": 4.718766666666667e-05, + "loss": 2.338633728027344, + "step": 42200 + }, + { + "epoch": 5.64, + "grad_norm": 0.2038842886686325, + "learning_rate": 4.7181e-05, + "loss": 2.341297302246094, + "step": 42300 + }, + { + "epoch": 5.653333333333333, + "grad_norm": 0.20965079963207245, + "learning_rate": 4.717433333333334e-05, + "loss": 2.341322784423828, + "step": 42400 + }, + { + "epoch": 5.666666666666667, + "grad_norm": 0.2007293701171875, + "learning_rate": 4.716766666666667e-05, + "loss": 2.3385604858398437, + "step": 42500 + }, + { + "epoch": 5.68, + "grad_norm": 0.2063182145357132, + "learning_rate": 4.7161e-05, + "loss": 2.33922119140625, + "step": 42600 + }, + { + "epoch": 5.693333333333333, + "grad_norm": 0.2027292102575302, + "learning_rate": 4.715433333333334e-05, + "loss": 2.3407470703125, + "step": 42700 + }, + { + "epoch": 5.706666666666667, + "grad_norm": 0.1970498412847519, + "learning_rate": 4.714766666666667e-05, + "loss": 2.34189697265625, + "step": 42800 + }, + { + "epoch": 5.72, + "grad_norm": 0.21546319127082825, + "learning_rate": 4.7141e-05, + "loss": 2.3410997009277343, + "step": 42900 + }, + { + "epoch": 5.733333333333333, + "grad_norm": 0.20953406393527985, + "learning_rate": 4.7134333333333334e-05, + "loss": 2.341014404296875, + "step": 43000 + }, + { + "epoch": 5.746666666666667, + "grad_norm": 0.18453386425971985, + "learning_rate": 4.712766666666667e-05, + "loss": 2.3420458984375, + "step": 43100 + }, + { + "epoch": 5.76, + "grad_norm": 0.18693557381629944, + "learning_rate": 4.7121000000000005e-05, + "loss": 2.3417478942871095, + "step": 43200 + }, + { + "epoch": 5.773333333333333, + "grad_norm": 0.20244468748569489, + "learning_rate": 4.711433333333334e-05, + "loss": 2.341094970703125, + "step": 43300 + }, + { + "epoch": 5.786666666666667, + "grad_norm": 0.2122134268283844, + "learning_rate": 4.710766666666667e-05, + "loss": 2.339507598876953, + "step": 43400 + }, + { + "epoch": 5.8, + "grad_norm": 0.19113102555274963, + "learning_rate": 4.7101e-05, + "loss": 2.3414321899414063, + "step": 43500 + }, + { + "epoch": 5.8133333333333335, + "grad_norm": 0.2206200510263443, + "learning_rate": 4.7094333333333334e-05, + "loss": 2.341671600341797, + "step": 43600 + }, + { + "epoch": 5.826666666666666, + "grad_norm": 0.20389395952224731, + "learning_rate": 4.7087666666666666e-05, + "loss": 2.340543060302734, + "step": 43700 + }, + { + "epoch": 5.84, + "grad_norm": 0.20174798369407654, + "learning_rate": 4.7081000000000005e-05, + "loss": 2.339455261230469, + "step": 43800 + }, + { + "epoch": 5.8533333333333335, + "grad_norm": 0.20874814689159393, + "learning_rate": 4.707433333333334e-05, + "loss": 2.340840301513672, + "step": 43900 + }, + { + "epoch": 5.866666666666667, + "grad_norm": 0.19134193658828735, + "learning_rate": 4.706766666666667e-05, + "loss": 2.341136016845703, + "step": 44000 + }, + { + "epoch": 5.88, + "grad_norm": 0.21130426228046417, + "learning_rate": 4.7061e-05, + "loss": 2.341613311767578, + "step": 44100 + }, + { + "epoch": 5.8933333333333335, + "grad_norm": 0.23179572820663452, + "learning_rate": 4.70544e-05, + "loss": 2.3433583068847654, + "step": 44200 + }, + { + "epoch": 5.906666666666666, + "grad_norm": 0.1910688281059265, + "learning_rate": 4.704773333333334e-05, + "loss": 2.3415071105957033, + "step": 44300 + }, + { + "epoch": 5.92, + "grad_norm": 0.20032565295696259, + "learning_rate": 4.7041066666666666e-05, + "loss": 2.3411441040039063, + "step": 44400 + }, + { + "epoch": 5.933333333333334, + "grad_norm": 0.19156421720981598, + "learning_rate": 4.70344e-05, + "loss": 2.3405520629882814, + "step": 44500 + }, + { + "epoch": 5.946666666666666, + "grad_norm": 0.1907392293214798, + "learning_rate": 4.702773333333334e-05, + "loss": 2.3425755310058594, + "step": 44600 + }, + { + "epoch": 5.96, + "grad_norm": 0.200932115316391, + "learning_rate": 4.702106666666667e-05, + "loss": 2.3439457702636717, + "step": 44700 + }, + { + "epoch": 5.973333333333334, + "grad_norm": 0.2054533064365387, + "learning_rate": 4.70144e-05, + "loss": 2.3415347290039064, + "step": 44800 + }, + { + "epoch": 5.986666666666666, + "grad_norm": 0.20519991219043732, + "learning_rate": 4.7007733333333334e-05, + "loss": 2.3422901916503904, + "step": 44900 + }, + { + "epoch": 6.0, + "grad_norm": 0.19351975619792938, + "learning_rate": 4.700106666666667e-05, + "loss": 2.343433380126953, + "step": 45000 + }, + { + "epoch": 6.013333333333334, + "grad_norm": 0.20407870411872864, + "learning_rate": 4.69944e-05, + "loss": 2.3262948608398437, + "step": 45100 + }, + { + "epoch": 6.026666666666666, + "grad_norm": 0.19466857612133026, + "learning_rate": 4.698773333333333e-05, + "loss": 2.326324462890625, + "step": 45200 + }, + { + "epoch": 6.04, + "grad_norm": 0.20036247372627258, + "learning_rate": 4.698106666666667e-05, + "loss": 2.3274658203125, + "step": 45300 + }, + { + "epoch": 6.053333333333334, + "grad_norm": 0.20382268726825714, + "learning_rate": 4.69744e-05, + "loss": 2.325162353515625, + "step": 45400 + }, + { + "epoch": 6.066666666666666, + "grad_norm": 0.21262048184871674, + "learning_rate": 4.6967733333333334e-05, + "loss": 2.3246685791015627, + "step": 45500 + }, + { + "epoch": 6.08, + "grad_norm": 0.19266580045223236, + "learning_rate": 4.696106666666667e-05, + "loss": 2.3265760803222655, + "step": 45600 + }, + { + "epoch": 6.093333333333334, + "grad_norm": 0.1924133151769638, + "learning_rate": 4.6954400000000006e-05, + "loss": 2.3272021484375, + "step": 45700 + }, + { + "epoch": 6.1066666666666665, + "grad_norm": 0.1988048404455185, + "learning_rate": 4.694773333333334e-05, + "loss": 2.327220916748047, + "step": 45800 + }, + { + "epoch": 6.12, + "grad_norm": 0.1879425197839737, + "learning_rate": 4.6941066666666663e-05, + "loss": 2.328949737548828, + "step": 45900 + }, + { + "epoch": 6.133333333333334, + "grad_norm": 0.23073047399520874, + "learning_rate": 4.69344e-05, + "loss": 2.328899230957031, + "step": 46000 + }, + { + "epoch": 6.1466666666666665, + "grad_norm": 0.20694105327129364, + "learning_rate": 4.6927733333333335e-05, + "loss": 2.329393005371094, + "step": 46100 + }, + { + "epoch": 6.16, + "grad_norm": 0.2188512235879898, + "learning_rate": 4.6921133333333334e-05, + "loss": 2.3258409118652343, + "step": 46200 + }, + { + "epoch": 6.173333333333334, + "grad_norm": 0.18700923025608063, + "learning_rate": 4.6914466666666666e-05, + "loss": 2.331009979248047, + "step": 46300 + }, + { + "epoch": 6.1866666666666665, + "grad_norm": 0.20359359681606293, + "learning_rate": 4.69078e-05, + "loss": 2.3292669677734374, + "step": 46400 + }, + { + "epoch": 6.2, + "grad_norm": 0.22610503435134888, + "learning_rate": 4.690113333333334e-05, + "loss": 2.330577850341797, + "step": 46500 + }, + { + "epoch": 6.213333333333333, + "grad_norm": 0.18864652514457703, + "learning_rate": 4.689446666666667e-05, + "loss": 2.330567626953125, + "step": 46600 + }, + { + "epoch": 6.226666666666667, + "grad_norm": 0.20041510462760925, + "learning_rate": 4.68878e-05, + "loss": 2.327003173828125, + "step": 46700 + }, + { + "epoch": 6.24, + "grad_norm": 0.21242272853851318, + "learning_rate": 4.688113333333334e-05, + "loss": 2.3281683349609374, + "step": 46800 + }, + { + "epoch": 6.253333333333333, + "grad_norm": 0.19361090660095215, + "learning_rate": 4.6874466666666666e-05, + "loss": 2.331831512451172, + "step": 46900 + }, + { + "epoch": 6.266666666666667, + "grad_norm": 0.20165066421031952, + "learning_rate": 4.68678e-05, + "loss": 2.3307310485839845, + "step": 47000 + }, + { + "epoch": 6.28, + "grad_norm": 0.18842047452926636, + "learning_rate": 4.686113333333334e-05, + "loss": 2.3280589294433596, + "step": 47100 + }, + { + "epoch": 6.293333333333333, + "grad_norm": 0.2256300151348114, + "learning_rate": 4.685446666666667e-05, + "loss": 2.3284527587890627, + "step": 47200 + }, + { + "epoch": 6.306666666666667, + "grad_norm": 0.18087539076805115, + "learning_rate": 4.68478e-05, + "loss": 2.3301324462890625, + "step": 47300 + }, + { + "epoch": 6.32, + "grad_norm": 0.207829549908638, + "learning_rate": 4.6841133333333335e-05, + "loss": 2.330213623046875, + "step": 47400 + }, + { + "epoch": 6.333333333333333, + "grad_norm": 0.19543009996414185, + "learning_rate": 4.6834466666666674e-05, + "loss": 2.3290335083007814, + "step": 47500 + }, + { + "epoch": 6.346666666666667, + "grad_norm": 0.2060248702764511, + "learning_rate": 4.6827800000000006e-05, + "loss": 2.331068572998047, + "step": 47600 + }, + { + "epoch": 6.36, + "grad_norm": 0.2179960161447525, + "learning_rate": 4.682113333333333e-05, + "loss": 2.330615997314453, + "step": 47700 + }, + { + "epoch": 6.373333333333333, + "grad_norm": 0.22476692497730255, + "learning_rate": 4.681446666666667e-05, + "loss": 2.3329974365234376, + "step": 47800 + }, + { + "epoch": 6.386666666666667, + "grad_norm": 0.1948496699333191, + "learning_rate": 4.68078e-05, + "loss": 2.3322357177734374, + "step": 47900 + }, + { + "epoch": 6.4, + "grad_norm": 0.19658160209655762, + "learning_rate": 4.6801133333333335e-05, + "loss": 2.329741668701172, + "step": 48000 + }, + { + "epoch": 6.413333333333333, + "grad_norm": 0.21576018631458282, + "learning_rate": 4.679446666666667e-05, + "loss": 2.331051788330078, + "step": 48100 + }, + { + "epoch": 6.426666666666667, + "grad_norm": 0.20465338230133057, + "learning_rate": 4.6787866666666666e-05, + "loss": 2.3314564514160154, + "step": 48200 + }, + { + "epoch": 6.44, + "grad_norm": 0.2254284769296646, + "learning_rate": 4.6781200000000005e-05, + "loss": 2.3306893920898437, + "step": 48300 + }, + { + "epoch": 6.453333333333333, + "grad_norm": 0.21523387730121613, + "learning_rate": 4.677453333333334e-05, + "loss": 2.3328369140625, + "step": 48400 + }, + { + "epoch": 6.466666666666667, + "grad_norm": 0.20994578301906586, + "learning_rate": 4.676786666666667e-05, + "loss": 2.3308122253417967, + "step": 48500 + }, + { + "epoch": 6.48, + "grad_norm": 0.21397413313388824, + "learning_rate": 4.67612e-05, + "loss": 2.3299708557128906, + "step": 48600 + }, + { + "epoch": 6.493333333333333, + "grad_norm": 0.20089605450630188, + "learning_rate": 4.6754533333333334e-05, + "loss": 2.3305317687988283, + "step": 48700 + }, + { + "epoch": 6.506666666666667, + "grad_norm": 0.21305248141288757, + "learning_rate": 4.674786666666667e-05, + "loss": 2.3314739990234377, + "step": 48800 + }, + { + "epoch": 6.52, + "grad_norm": 0.20678336918354034, + "learning_rate": 4.67412e-05, + "loss": 2.3338267517089846, + "step": 48900 + }, + { + "epoch": 6.533333333333333, + "grad_norm": 0.20186908543109894, + "learning_rate": 4.673453333333334e-05, + "loss": 2.3309475708007814, + "step": 49000 + }, + { + "epoch": 6.546666666666667, + "grad_norm": 0.1907065063714981, + "learning_rate": 4.672786666666667e-05, + "loss": 2.3316998291015625, + "step": 49100 + }, + { + "epoch": 6.5600000000000005, + "grad_norm": 0.21854570508003235, + "learning_rate": 4.67212e-05, + "loss": 2.3346012878417968, + "step": 49200 + }, + { + "epoch": 6.573333333333333, + "grad_norm": 0.1847628653049469, + "learning_rate": 4.6714533333333335e-05, + "loss": 2.3357057189941406, + "step": 49300 + }, + { + "epoch": 6.586666666666667, + "grad_norm": 0.19201835989952087, + "learning_rate": 4.670786666666667e-05, + "loss": 2.3363993835449217, + "step": 49400 + }, + { + "epoch": 6.6, + "grad_norm": 0.19336426258087158, + "learning_rate": 4.67012e-05, + "loss": 2.3319854736328125, + "step": 49500 + }, + { + "epoch": 6.613333333333333, + "grad_norm": 0.20099902153015137, + "learning_rate": 4.669453333333333e-05, + "loss": 2.3336613464355467, + "step": 49600 + }, + { + "epoch": 6.626666666666667, + "grad_norm": 0.1986514925956726, + "learning_rate": 4.668786666666667e-05, + "loss": 2.3317831420898436, + "step": 49700 + }, + { + "epoch": 6.64, + "grad_norm": 0.20249810814857483, + "learning_rate": 4.66812e-05, + "loss": 2.3329707336425782, + "step": 49800 + }, + { + "epoch": 6.653333333333333, + "grad_norm": 0.21656836569309235, + "learning_rate": 4.6674533333333335e-05, + "loss": 2.3322386169433593, + "step": 49900 + }, + { + "epoch": 6.666666666666667, + "grad_norm": 0.19392716884613037, + "learning_rate": 4.666786666666667e-05, + "loss": 2.334392852783203, + "step": 50000 + }, + { + "epoch": 6.68, + "grad_norm": 0.19600430130958557, + "learning_rate": 4.6661200000000007e-05, + "loss": 2.3346022033691405, + "step": 50100 + }, + { + "epoch": 6.693333333333333, + "grad_norm": 0.21334628760814667, + "learning_rate": 4.6654600000000006e-05, + "loss": 2.3344834899902343, + "step": 50200 + }, + { + "epoch": 6.706666666666667, + "grad_norm": 0.19854342937469482, + "learning_rate": 4.664793333333334e-05, + "loss": 2.3333599853515623, + "step": 50300 + }, + { + "epoch": 6.72, + "grad_norm": 0.2086271196603775, + "learning_rate": 4.664126666666666e-05, + "loss": 2.335559997558594, + "step": 50400 + }, + { + "epoch": 6.733333333333333, + "grad_norm": 0.20393237471580505, + "learning_rate": 4.66346e-05, + "loss": 2.3350341796875, + "step": 50500 + }, + { + "epoch": 6.746666666666667, + "grad_norm": 0.2037380337715149, + "learning_rate": 4.6627933333333335e-05, + "loss": 2.3359445190429686, + "step": 50600 + }, + { + "epoch": 6.76, + "grad_norm": 0.2010214924812317, + "learning_rate": 4.662126666666667e-05, + "loss": 2.333213348388672, + "step": 50700 + }, + { + "epoch": 6.773333333333333, + "grad_norm": 0.211711123585701, + "learning_rate": 4.6614600000000006e-05, + "loss": 2.333146209716797, + "step": 50800 + }, + { + "epoch": 6.786666666666667, + "grad_norm": 0.20048975944519043, + "learning_rate": 4.660793333333334e-05, + "loss": 2.332876892089844, + "step": 50900 + }, + { + "epoch": 6.8, + "grad_norm": 0.20532432198524475, + "learning_rate": 4.660126666666667e-05, + "loss": 2.335528564453125, + "step": 51000 + }, + { + "epoch": 6.8133333333333335, + "grad_norm": 0.19597899913787842, + "learning_rate": 4.65946e-05, + "loss": 2.3326602172851563, + "step": 51100 + }, + { + "epoch": 6.826666666666666, + "grad_norm": 0.20233699679374695, + "learning_rate": 4.6587933333333335e-05, + "loss": 2.3346743774414063, + "step": 51200 + }, + { + "epoch": 6.84, + "grad_norm": 0.1949591040611267, + "learning_rate": 4.658126666666667e-05, + "loss": 2.335735168457031, + "step": 51300 + }, + { + "epoch": 6.8533333333333335, + "grad_norm": 0.1934141367673874, + "learning_rate": 4.65746e-05, + "loss": 2.335612487792969, + "step": 51400 + }, + { + "epoch": 6.866666666666667, + "grad_norm": 0.2191038280725479, + "learning_rate": 4.656793333333334e-05, + "loss": 2.3345936584472655, + "step": 51500 + }, + { + "epoch": 6.88, + "grad_norm": 0.20383000373840332, + "learning_rate": 4.656126666666667e-05, + "loss": 2.3339216613769533, + "step": 51600 + }, + { + "epoch": 6.8933333333333335, + "grad_norm": 0.19669340550899506, + "learning_rate": 4.65546e-05, + "loss": 2.3346900939941406, + "step": 51700 + }, + { + "epoch": 6.906666666666666, + "grad_norm": 0.20373137295246124, + "learning_rate": 4.6547933333333335e-05, + "loss": 2.3349125671386717, + "step": 51800 + }, + { + "epoch": 6.92, + "grad_norm": 0.2109116166830063, + "learning_rate": 4.654126666666667e-05, + "loss": 2.3348736572265625, + "step": 51900 + }, + { + "epoch": 6.933333333333334, + "grad_norm": 0.21398979425430298, + "learning_rate": 4.65346e-05, + "loss": 2.336753692626953, + "step": 52000 + }, + { + "epoch": 6.946666666666666, + "grad_norm": 0.1936953067779541, + "learning_rate": 4.652793333333333e-05, + "loss": 2.3369993591308593, + "step": 52100 + }, + { + "epoch": 6.96, + "grad_norm": 0.22233432531356812, + "learning_rate": 4.652133333333333e-05, + "loss": 2.3361253356933593, + "step": 52200 + }, + { + "epoch": 6.973333333333334, + "grad_norm": 0.20416876673698425, + "learning_rate": 4.651466666666667e-05, + "loss": 2.3360031127929686, + "step": 52300 + }, + { + "epoch": 6.986666666666666, + "grad_norm": 0.2030036300420761, + "learning_rate": 4.6508e-05, + "loss": 2.337208099365234, + "step": 52400 + }, + { + "epoch": 7.0, + "grad_norm": 0.19202755391597748, + "learning_rate": 4.6501333333333335e-05, + "loss": 2.336151123046875, + "step": 52500 + }, + { + "epoch": 7.013333333333334, + "grad_norm": 0.206998810172081, + "learning_rate": 4.649466666666667e-05, + "loss": 2.315085906982422, + "step": 52600 + }, + { + "epoch": 7.026666666666666, + "grad_norm": 0.2254278063774109, + "learning_rate": 4.6488000000000006e-05, + "loss": 2.316161651611328, + "step": 52700 + }, + { + "epoch": 7.04, + "grad_norm": 0.2177981585264206, + "learning_rate": 4.648133333333334e-05, + "loss": 2.3162889099121093, + "step": 52800 + }, + { + "epoch": 7.053333333333334, + "grad_norm": 0.22323600947856903, + "learning_rate": 4.6474666666666664e-05, + "loss": 2.3178530883789064, + "step": 52900 + }, + { + "epoch": 7.066666666666666, + "grad_norm": 0.20918424427509308, + "learning_rate": 4.6468e-05, + "loss": 2.315562438964844, + "step": 53000 + }, + { + "epoch": 7.08, + "grad_norm": 0.22114083170890808, + "learning_rate": 4.6461333333333335e-05, + "loss": 2.315318145751953, + "step": 53100 + }, + { + "epoch": 7.093333333333334, + "grad_norm": 0.19929060339927673, + "learning_rate": 4.645466666666667e-05, + "loss": 2.319254913330078, + "step": 53200 + }, + { + "epoch": 7.1066666666666665, + "grad_norm": 0.22897835075855255, + "learning_rate": 4.6448e-05, + "loss": 2.3185064697265627, + "step": 53300 + }, + { + "epoch": 7.12, + "grad_norm": 0.20979653298854828, + "learning_rate": 4.644133333333334e-05, + "loss": 2.3153074645996092, + "step": 53400 + }, + { + "epoch": 7.133333333333334, + "grad_norm": 0.208432137966156, + "learning_rate": 4.643466666666667e-05, + "loss": 2.3188551330566405, + "step": 53500 + }, + { + "epoch": 7.1466666666666665, + "grad_norm": 0.2060391902923584, + "learning_rate": 4.6428000000000003e-05, + "loss": 2.319374694824219, + "step": 53600 + }, + { + "epoch": 7.16, + "grad_norm": 0.2240801900625229, + "learning_rate": 4.6421333333333336e-05, + "loss": 2.315366668701172, + "step": 53700 + }, + { + "epoch": 7.173333333333334, + "grad_norm": 0.21705488860607147, + "learning_rate": 4.641466666666667e-05, + "loss": 2.320493469238281, + "step": 53800 + }, + { + "epoch": 7.1866666666666665, + "grad_norm": 0.22233860194683075, + "learning_rate": 4.6408e-05, + "loss": 2.318059844970703, + "step": 53900 + }, + { + "epoch": 7.2, + "grad_norm": 0.2171303927898407, + "learning_rate": 4.640133333333333e-05, + "loss": 2.320230712890625, + "step": 54000 + }, + { + "epoch": 7.213333333333333, + "grad_norm": 0.21981152892112732, + "learning_rate": 4.639466666666667e-05, + "loss": 2.3186485290527346, + "step": 54100 + }, + { + "epoch": 7.226666666666667, + "grad_norm": 0.2230496108531952, + "learning_rate": 4.638806666666667e-05, + "loss": 2.3200640869140625, + "step": 54200 + }, + { + "epoch": 7.24, + "grad_norm": 0.2142811268568039, + "learning_rate": 4.63814e-05, + "loss": 2.3188714599609375, + "step": 54300 + }, + { + "epoch": 7.253333333333333, + "grad_norm": 0.20586246252059937, + "learning_rate": 4.6374733333333335e-05, + "loss": 2.3214300537109374, + "step": 54400 + }, + { + "epoch": 7.266666666666667, + "grad_norm": 0.206768199801445, + "learning_rate": 4.636806666666667e-05, + "loss": 2.317760467529297, + "step": 54500 + }, + { + "epoch": 7.28, + "grad_norm": 0.22308428585529327, + "learning_rate": 4.6361400000000006e-05, + "loss": 2.32193359375, + "step": 54600 + }, + { + "epoch": 7.293333333333333, + "grad_norm": 0.21023783087730408, + "learning_rate": 4.635473333333333e-05, + "loss": 2.321294860839844, + "step": 54700 + }, + { + "epoch": 7.306666666666667, + "grad_norm": 0.20875036716461182, + "learning_rate": 4.6348066666666664e-05, + "loss": 2.3194563293457033, + "step": 54800 + }, + { + "epoch": 7.32, + "grad_norm": 0.22223174571990967, + "learning_rate": 4.63414e-05, + "loss": 2.3206028747558594, + "step": 54900 + }, + { + "epoch": 7.333333333333333, + "grad_norm": 0.19239133596420288, + "learning_rate": 4.6334733333333336e-05, + "loss": 2.321158599853516, + "step": 55000 + }, + { + "epoch": 7.346666666666667, + "grad_norm": 0.22706732153892517, + "learning_rate": 4.632806666666667e-05, + "loss": 2.3212765502929686, + "step": 55100 + }, + { + "epoch": 7.36, + "grad_norm": 0.23205487430095673, + "learning_rate": 4.632140000000001e-05, + "loss": 2.322073974609375, + "step": 55200 + }, + { + "epoch": 7.373333333333333, + "grad_norm": 0.2067403942346573, + "learning_rate": 4.631473333333334e-05, + "loss": 2.3220693969726565, + "step": 55300 + }, + { + "epoch": 7.386666666666667, + "grad_norm": 0.20351338386535645, + "learning_rate": 4.6308066666666665e-05, + "loss": 2.32278076171875, + "step": 55400 + }, + { + "epoch": 7.4, + "grad_norm": 0.21386387944221497, + "learning_rate": 4.6301400000000004e-05, + "loss": 2.3235244750976562, + "step": 55500 + }, + { + "epoch": 7.413333333333333, + "grad_norm": 0.2237972617149353, + "learning_rate": 4.6294733333333336e-05, + "loss": 2.3205836486816405, + "step": 55600 + }, + { + "epoch": 7.426666666666667, + "grad_norm": 0.196205735206604, + "learning_rate": 4.628806666666667e-05, + "loss": 2.324235687255859, + "step": 55700 + }, + { + "epoch": 7.44, + "grad_norm": 0.20559580624103546, + "learning_rate": 4.62814e-05, + "loss": 2.3239215087890623, + "step": 55800 + }, + { + "epoch": 7.453333333333333, + "grad_norm": 0.22416776418685913, + "learning_rate": 4.627473333333334e-05, + "loss": 2.3214433288574217, + "step": 55900 + }, + { + "epoch": 7.466666666666667, + "grad_norm": 0.20037733018398285, + "learning_rate": 4.626806666666667e-05, + "loss": 2.322022247314453, + "step": 56000 + }, + { + "epoch": 7.48, + "grad_norm": 0.21654389798641205, + "learning_rate": 4.6261400000000004e-05, + "loss": 2.3236199951171876, + "step": 56100 + }, + { + "epoch": 7.493333333333333, + "grad_norm": 0.21859359741210938, + "learning_rate": 4.62548e-05, + "loss": 2.3238677978515625, + "step": 56200 + }, + { + "epoch": 7.506666666666667, + "grad_norm": 0.22405706346035004, + "learning_rate": 4.6248133333333335e-05, + "loss": 2.326851654052734, + "step": 56300 + }, + { + "epoch": 7.52, + "grad_norm": 0.1978028565645218, + "learning_rate": 4.624146666666667e-05, + "loss": 2.3240150451660155, + "step": 56400 + }, + { + "epoch": 7.533333333333333, + "grad_norm": 0.21222999691963196, + "learning_rate": 4.62348e-05, + "loss": 2.3225338745117186, + "step": 56500 + }, + { + "epoch": 7.546666666666667, + "grad_norm": 0.22027376294136047, + "learning_rate": 4.622813333333333e-05, + "loss": 2.324446563720703, + "step": 56600 + }, + { + "epoch": 7.5600000000000005, + "grad_norm": 0.21182918548583984, + "learning_rate": 4.622146666666667e-05, + "loss": 2.3254127502441406, + "step": 56700 + }, + { + "epoch": 7.573333333333333, + "grad_norm": 0.19568821787834167, + "learning_rate": 4.6214800000000003e-05, + "loss": 2.325800323486328, + "step": 56800 + }, + { + "epoch": 7.586666666666667, + "grad_norm": 0.20319704711437225, + "learning_rate": 4.6208133333333336e-05, + "loss": 2.325161590576172, + "step": 56900 + }, + { + "epoch": 7.6, + "grad_norm": 0.22199761867523193, + "learning_rate": 4.620146666666667e-05, + "loss": 2.3248526000976564, + "step": 57000 + }, + { + "epoch": 7.613333333333333, + "grad_norm": 0.19542196393013, + "learning_rate": 4.619480000000001e-05, + "loss": 2.3250607299804686, + "step": 57100 + }, + { + "epoch": 7.626666666666667, + "grad_norm": 0.19808714091777802, + "learning_rate": 4.618813333333333e-05, + "loss": 2.3261805725097657, + "step": 57200 + }, + { + "epoch": 7.64, + "grad_norm": 0.22000600397586823, + "learning_rate": 4.6181466666666665e-05, + "loss": 2.3237953186035156, + "step": 57300 + }, + { + "epoch": 7.653333333333333, + "grad_norm": 0.2083161324262619, + "learning_rate": 4.6174800000000004e-05, + "loss": 2.3280027770996092, + "step": 57400 + }, + { + "epoch": 7.666666666666667, + "grad_norm": 0.2168016880750656, + "learning_rate": 4.6168133333333336e-05, + "loss": 2.324162902832031, + "step": 57500 + }, + { + "epoch": 7.68, + "grad_norm": 0.21734952926635742, + "learning_rate": 4.616146666666667e-05, + "loss": 2.3249171447753905, + "step": 57600 + }, + { + "epoch": 7.693333333333333, + "grad_norm": 0.20479203760623932, + "learning_rate": 4.61548e-05, + "loss": 2.327186737060547, + "step": 57700 + }, + { + "epoch": 7.706666666666667, + "grad_norm": 0.2028800994157791, + "learning_rate": 4.614813333333334e-05, + "loss": 2.327611999511719, + "step": 57800 + }, + { + "epoch": 7.72, + "grad_norm": 0.21738632023334503, + "learning_rate": 4.6141466666666665e-05, + "loss": 2.324887390136719, + "step": 57900 + }, + { + "epoch": 7.733333333333333, + "grad_norm": 0.227495938539505, + "learning_rate": 4.61348e-05, + "loss": 2.3263511657714844, + "step": 58000 + }, + { + "epoch": 7.746666666666667, + "grad_norm": 0.22351373732089996, + "learning_rate": 4.6128133333333337e-05, + "loss": 2.324449005126953, + "step": 58100 + }, + { + "epoch": 7.76, + "grad_norm": 0.19855080544948578, + "learning_rate": 4.6121533333333336e-05, + "loss": 2.3279388427734373, + "step": 58200 + }, + { + "epoch": 7.773333333333333, + "grad_norm": 0.21258243918418884, + "learning_rate": 4.611486666666667e-05, + "loss": 2.3258876037597656, + "step": 58300 + }, + { + "epoch": 7.786666666666667, + "grad_norm": 0.23399053514003754, + "learning_rate": 4.61082e-05, + "loss": 2.328024597167969, + "step": 58400 + }, + { + "epoch": 7.8, + "grad_norm": 0.20555289089679718, + "learning_rate": 4.610153333333333e-05, + "loss": 2.324607391357422, + "step": 58500 + }, + { + "epoch": 7.8133333333333335, + "grad_norm": 0.22223757207393646, + "learning_rate": 4.609486666666667e-05, + "loss": 2.328887634277344, + "step": 58600 + }, + { + "epoch": 7.826666666666666, + "grad_norm": 0.20944397151470184, + "learning_rate": 4.6088200000000004e-05, + "loss": 2.326324005126953, + "step": 58700 + }, + { + "epoch": 7.84, + "grad_norm": 0.21754513680934906, + "learning_rate": 4.6081533333333336e-05, + "loss": 2.3285617065429687, + "step": 58800 + }, + { + "epoch": 7.8533333333333335, + "grad_norm": 0.2218855917453766, + "learning_rate": 4.607486666666667e-05, + "loss": 2.3279769897460936, + "step": 58900 + }, + { + "epoch": 7.866666666666667, + "grad_norm": 0.2152242809534073, + "learning_rate": 4.60682e-05, + "loss": 2.327835998535156, + "step": 59000 + }, + { + "epoch": 7.88, + "grad_norm": 0.19836048781871796, + "learning_rate": 4.606153333333333e-05, + "loss": 2.330382843017578, + "step": 59100 + }, + { + "epoch": 7.8933333333333335, + "grad_norm": 0.2070547193288803, + "learning_rate": 4.6054866666666665e-05, + "loss": 2.328244171142578, + "step": 59200 + }, + { + "epoch": 7.906666666666666, + "grad_norm": 0.2064908742904663, + "learning_rate": 4.6048200000000004e-05, + "loss": 2.327570037841797, + "step": 59300 + }, + { + "epoch": 7.92, + "grad_norm": 0.19223378598690033, + "learning_rate": 4.6041533333333336e-05, + "loss": 2.327322540283203, + "step": 59400 + }, + { + "epoch": 7.933333333333334, + "grad_norm": 0.2263549417257309, + "learning_rate": 4.603486666666667e-05, + "loss": 2.329267120361328, + "step": 59500 + }, + { + "epoch": 7.946666666666666, + "grad_norm": 0.21715712547302246, + "learning_rate": 4.602820000000001e-05, + "loss": 2.3234599304199217, + "step": 59600 + }, + { + "epoch": 7.96, + "grad_norm": 0.2264692485332489, + "learning_rate": 4.602153333333333e-05, + "loss": 2.326782531738281, + "step": 59700 + }, + { + "epoch": 7.973333333333334, + "grad_norm": 0.20843270421028137, + "learning_rate": 4.6014866666666665e-05, + "loss": 2.3266970825195314, + "step": 59800 + }, + { + "epoch": 7.986666666666666, + "grad_norm": 0.20484039187431335, + "learning_rate": 4.6008200000000004e-05, + "loss": 2.3275350952148437, + "step": 59900 + }, + { + "epoch": 8.0, + "grad_norm": 0.21979759633541107, + "learning_rate": 4.600153333333334e-05, + "loss": 2.327262115478516, + "step": 60000 + }, + { + "epoch": 8.013333333333334, + "grad_norm": 0.2148316353559494, + "learning_rate": 4.599486666666667e-05, + "loss": 2.3032371520996096, + "step": 60100 + }, + { + "epoch": 8.026666666666667, + "grad_norm": 0.2427894026041031, + "learning_rate": 4.598826666666667e-05, + "loss": 2.306138000488281, + "step": 60200 + }, + { + "epoch": 8.04, + "grad_norm": 0.23417937755584717, + "learning_rate": 4.59816e-05, + "loss": 2.3055377197265625, + "step": 60300 + }, + { + "epoch": 8.053333333333333, + "grad_norm": 0.22597885131835938, + "learning_rate": 4.597493333333334e-05, + "loss": 2.308175354003906, + "step": 60400 + }, + { + "epoch": 8.066666666666666, + "grad_norm": 0.22343474626541138, + "learning_rate": 4.596826666666667e-05, + "loss": 2.3064723205566406, + "step": 60500 + }, + { + "epoch": 8.08, + "grad_norm": 0.22558583319187164, + "learning_rate": 4.5961600000000004e-05, + "loss": 2.305071258544922, + "step": 60600 + }, + { + "epoch": 8.093333333333334, + "grad_norm": 0.20653437077999115, + "learning_rate": 4.5954933333333336e-05, + "loss": 2.307345428466797, + "step": 60700 + }, + { + "epoch": 8.106666666666667, + "grad_norm": 0.2216809093952179, + "learning_rate": 4.594826666666667e-05, + "loss": 2.3047059631347655, + "step": 60800 + }, + { + "epoch": 8.12, + "grad_norm": 0.22799284756183624, + "learning_rate": 4.59416e-05, + "loss": 2.307566833496094, + "step": 60900 + }, + { + "epoch": 8.133333333333333, + "grad_norm": 0.22076313197612762, + "learning_rate": 4.593493333333333e-05, + "loss": 2.3049078369140625, + "step": 61000 + }, + { + "epoch": 8.146666666666667, + "grad_norm": 0.2266998142004013, + "learning_rate": 4.592826666666667e-05, + "loss": 2.3053494262695313, + "step": 61100 + }, + { + "epoch": 8.16, + "grad_norm": 0.23705247044563293, + "learning_rate": 4.5921600000000004e-05, + "loss": 2.3077027893066404, + "step": 61200 + }, + { + "epoch": 8.173333333333334, + "grad_norm": 0.21669632196426392, + "learning_rate": 4.5914933333333337e-05, + "loss": 2.3076458740234376, + "step": 61300 + }, + { + "epoch": 8.186666666666667, + "grad_norm": 0.2006712257862091, + "learning_rate": 4.590826666666667e-05, + "loss": 2.3063531494140626, + "step": 61400 + }, + { + "epoch": 8.2, + "grad_norm": 0.21064023673534393, + "learning_rate": 4.59016e-05, + "loss": 2.3089945983886717, + "step": 61500 + }, + { + "epoch": 8.213333333333333, + "grad_norm": 0.21858380734920502, + "learning_rate": 4.589493333333333e-05, + "loss": 2.307320098876953, + "step": 61600 + }, + { + "epoch": 8.226666666666667, + "grad_norm": 0.21644806861877441, + "learning_rate": 4.5888266666666666e-05, + "loss": 2.3085394287109375, + "step": 61700 + }, + { + "epoch": 8.24, + "grad_norm": 0.22975999116897583, + "learning_rate": 4.5881600000000005e-05, + "loss": 2.3101947021484377, + "step": 61800 + }, + { + "epoch": 8.253333333333334, + "grad_norm": 0.21924324333667755, + "learning_rate": 4.587493333333334e-05, + "loss": 2.3123768615722655, + "step": 61900 + }, + { + "epoch": 8.266666666666667, + "grad_norm": 0.22921468317508698, + "learning_rate": 4.586826666666667e-05, + "loss": 2.3115985107421877, + "step": 62000 + }, + { + "epoch": 8.28, + "grad_norm": 0.21891409158706665, + "learning_rate": 4.58616e-05, + "loss": 2.309479217529297, + "step": 62100 + }, + { + "epoch": 8.293333333333333, + "grad_norm": 0.22286993265151978, + "learning_rate": 4.5855e-05, + "loss": 2.3122218322753905, + "step": 62200 + }, + { + "epoch": 8.306666666666667, + "grad_norm": 0.24152639508247375, + "learning_rate": 4.584833333333334e-05, + "loss": 2.308910217285156, + "step": 62300 + }, + { + "epoch": 8.32, + "grad_norm": 0.21503682434558868, + "learning_rate": 4.5841666666666665e-05, + "loss": 2.307999572753906, + "step": 62400 + }, + { + "epoch": 8.333333333333334, + "grad_norm": 0.20558761060237885, + "learning_rate": 4.5835e-05, + "loss": 2.3080621337890626, + "step": 62500 + }, + { + "epoch": 8.346666666666668, + "grad_norm": 0.21116876602172852, + "learning_rate": 4.5828333333333336e-05, + "loss": 2.3105264282226563, + "step": 62600 + }, + { + "epoch": 8.36, + "grad_norm": 0.2325267195701599, + "learning_rate": 4.582166666666667e-05, + "loss": 2.309617919921875, + "step": 62700 + }, + { + "epoch": 8.373333333333333, + "grad_norm": 0.2288995385169983, + "learning_rate": 4.5815e-05, + "loss": 2.3135015869140627, + "step": 62800 + }, + { + "epoch": 8.386666666666667, + "grad_norm": 0.23661412298679352, + "learning_rate": 4.580833333333333e-05, + "loss": 2.311595153808594, + "step": 62900 + }, + { + "epoch": 8.4, + "grad_norm": 0.22704863548278809, + "learning_rate": 4.580166666666667e-05, + "loss": 2.311846160888672, + "step": 63000 + }, + { + "epoch": 8.413333333333334, + "grad_norm": 0.21123670041561127, + "learning_rate": 4.5795000000000005e-05, + "loss": 2.3099000549316404, + "step": 63100 + }, + { + "epoch": 8.426666666666666, + "grad_norm": 0.22051377594470978, + "learning_rate": 4.578833333333333e-05, + "loss": 2.314755401611328, + "step": 63200 + }, + { + "epoch": 8.44, + "grad_norm": 0.21824777126312256, + "learning_rate": 4.578166666666667e-05, + "loss": 2.3122979736328126, + "step": 63300 + }, + { + "epoch": 8.453333333333333, + "grad_norm": 0.2141052782535553, + "learning_rate": 4.5775e-05, + "loss": 2.314187316894531, + "step": 63400 + }, + { + "epoch": 8.466666666666667, + "grad_norm": 0.22229032218456268, + "learning_rate": 4.5768333333333334e-05, + "loss": 2.3118528747558593, + "step": 63500 + }, + { + "epoch": 8.48, + "grad_norm": 0.21177971363067627, + "learning_rate": 4.576166666666667e-05, + "loss": 2.314485626220703, + "step": 63600 + }, + { + "epoch": 8.493333333333334, + "grad_norm": 0.2159062772989273, + "learning_rate": 4.5755000000000005e-05, + "loss": 2.3116845703125, + "step": 63700 + }, + { + "epoch": 8.506666666666666, + "grad_norm": 0.21478477120399475, + "learning_rate": 4.574833333333334e-05, + "loss": 2.3143507385253907, + "step": 63800 + }, + { + "epoch": 8.52, + "grad_norm": 0.22522731125354767, + "learning_rate": 4.574166666666667e-05, + "loss": 2.315663604736328, + "step": 63900 + }, + { + "epoch": 8.533333333333333, + "grad_norm": 0.22168120741844177, + "learning_rate": 4.5735e-05, + "loss": 2.3135195922851564, + "step": 64000 + }, + { + "epoch": 8.546666666666667, + "grad_norm": 0.2298642098903656, + "learning_rate": 4.5728333333333334e-05, + "loss": 2.315981140136719, + "step": 64100 + }, + { + "epoch": 8.56, + "grad_norm": 0.2253265529870987, + "learning_rate": 4.572173333333333e-05, + "loss": 2.315703887939453, + "step": 64200 + }, + { + "epoch": 8.573333333333334, + "grad_norm": 0.22435899078845978, + "learning_rate": 4.5715066666666665e-05, + "loss": 2.314583282470703, + "step": 64300 + }, + { + "epoch": 8.586666666666666, + "grad_norm": 0.21293385326862335, + "learning_rate": 4.5708400000000004e-05, + "loss": 2.3148568725585936, + "step": 64400 + }, + { + "epoch": 8.6, + "grad_norm": 0.2217615693807602, + "learning_rate": 4.570173333333334e-05, + "loss": 2.3133966064453126, + "step": 64500 + }, + { + "epoch": 8.613333333333333, + "grad_norm": 0.21577724814414978, + "learning_rate": 4.569506666666667e-05, + "loss": 2.3160128784179688, + "step": 64600 + }, + { + "epoch": 8.626666666666667, + "grad_norm": 0.20894163846969604, + "learning_rate": 4.56884e-05, + "loss": 2.316580505371094, + "step": 64700 + }, + { + "epoch": 8.64, + "grad_norm": 0.22660347819328308, + "learning_rate": 4.568173333333334e-05, + "loss": 2.3132757568359374, + "step": 64800 + }, + { + "epoch": 8.653333333333332, + "grad_norm": 0.20169147849082947, + "learning_rate": 4.567506666666667e-05, + "loss": 2.3164935302734375, + "step": 64900 + }, + { + "epoch": 8.666666666666666, + "grad_norm": 0.22867351770401, + "learning_rate": 4.56684e-05, + "loss": 2.3162477111816404, + "step": 65000 + }, + { + "epoch": 8.68, + "grad_norm": 0.23090234398841858, + "learning_rate": 4.566173333333334e-05, + "loss": 2.3189874267578126, + "step": 65100 + }, + { + "epoch": 8.693333333333333, + "grad_norm": 0.22201119363307953, + "learning_rate": 4.565506666666667e-05, + "loss": 2.31669921875, + "step": 65200 + }, + { + "epoch": 8.706666666666667, + "grad_norm": 0.2174353450536728, + "learning_rate": 4.56484e-05, + "loss": 2.3188742065429686, + "step": 65300 + }, + { + "epoch": 8.72, + "grad_norm": 0.21239978075027466, + "learning_rate": 4.5641733333333334e-05, + "loss": 2.3161309814453124, + "step": 65400 + }, + { + "epoch": 8.733333333333333, + "grad_norm": 0.19849137961864471, + "learning_rate": 4.563506666666667e-05, + "loss": 2.3190155029296875, + "step": 65500 + }, + { + "epoch": 8.746666666666666, + "grad_norm": 0.2238064557313919, + "learning_rate": 4.5628400000000005e-05, + "loss": 2.3172088623046876, + "step": 65600 + }, + { + "epoch": 8.76, + "grad_norm": 0.22363531589508057, + "learning_rate": 4.562173333333333e-05, + "loss": 2.3175604248046877, + "step": 65700 + }, + { + "epoch": 8.773333333333333, + "grad_norm": 0.22062158584594727, + "learning_rate": 4.561506666666667e-05, + "loss": 2.3156175231933593, + "step": 65800 + }, + { + "epoch": 8.786666666666667, + "grad_norm": 0.2074691206216812, + "learning_rate": 4.56084e-05, + "loss": 2.317613372802734, + "step": 65900 + }, + { + "epoch": 8.8, + "grad_norm": 0.21585817635059357, + "learning_rate": 4.5601733333333334e-05, + "loss": 2.317025909423828, + "step": 66000 + }, + { + "epoch": 8.813333333333333, + "grad_norm": 0.24289225041866302, + "learning_rate": 4.5595066666666666e-05, + "loss": 2.3176622009277343, + "step": 66100 + }, + { + "epoch": 8.826666666666666, + "grad_norm": 0.22260883450508118, + "learning_rate": 4.5588466666666666e-05, + "loss": 2.3193907165527343, + "step": 66200 + }, + { + "epoch": 8.84, + "grad_norm": 0.20685255527496338, + "learning_rate": 4.5581800000000005e-05, + "loss": 2.3187965393066405, + "step": 66300 + }, + { + "epoch": 8.853333333333333, + "grad_norm": 0.2502782940864563, + "learning_rate": 4.557513333333334e-05, + "loss": 2.3181417846679686, + "step": 66400 + }, + { + "epoch": 8.866666666666667, + "grad_norm": 0.20513685047626495, + "learning_rate": 4.556846666666667e-05, + "loss": 2.318340606689453, + "step": 66500 + }, + { + "epoch": 8.88, + "grad_norm": 0.2085087150335312, + "learning_rate": 4.55618e-05, + "loss": 2.320625762939453, + "step": 66600 + }, + { + "epoch": 8.893333333333333, + "grad_norm": 0.2202482372522354, + "learning_rate": 4.5555133333333334e-05, + "loss": 2.317662811279297, + "step": 66700 + }, + { + "epoch": 8.906666666666666, + "grad_norm": 0.20364412665367126, + "learning_rate": 4.5548466666666666e-05, + "loss": 2.320509796142578, + "step": 66800 + }, + { + "epoch": 8.92, + "grad_norm": 0.2078937292098999, + "learning_rate": 4.55418e-05, + "loss": 2.3180162048339845, + "step": 66900 + }, + { + "epoch": 8.933333333333334, + "grad_norm": 0.21178776025772095, + "learning_rate": 4.553513333333334e-05, + "loss": 2.318477783203125, + "step": 67000 + }, + { + "epoch": 8.946666666666667, + "grad_norm": 0.2264500856399536, + "learning_rate": 4.552846666666667e-05, + "loss": 2.321943511962891, + "step": 67100 + }, + { + "epoch": 8.96, + "grad_norm": 0.2113855928182602, + "learning_rate": 4.55218e-05, + "loss": 2.318071746826172, + "step": 67200 + }, + { + "epoch": 8.973333333333333, + "grad_norm": 0.19603019952774048, + "learning_rate": 4.5515133333333334e-05, + "loss": 2.3197503662109376, + "step": 67300 + }, + { + "epoch": 8.986666666666666, + "grad_norm": 0.2236277014017105, + "learning_rate": 4.550846666666667e-05, + "loss": 2.320359344482422, + "step": 67400 + }, + { + "epoch": 9.0, + "grad_norm": 0.21920901536941528, + "learning_rate": 4.55018e-05, + "loss": 2.318968963623047, + "step": 67500 + }, + { + "epoch": 9.013333333333334, + "grad_norm": 0.23331010341644287, + "learning_rate": 4.549513333333333e-05, + "loss": 2.2941917419433593, + "step": 67600 + }, + { + "epoch": 9.026666666666667, + "grad_norm": 0.21596217155456543, + "learning_rate": 4.548846666666667e-05, + "loss": 2.290107421875, + "step": 67700 + }, + { + "epoch": 9.04, + "grad_norm": 0.22891509532928467, + "learning_rate": 4.54818e-05, + "loss": 2.2925718688964842, + "step": 67800 + }, + { + "epoch": 9.053333333333333, + "grad_norm": 0.21967433393001556, + "learning_rate": 4.5475133333333334e-05, + "loss": 2.2921377563476564, + "step": 67900 + }, + { + "epoch": 9.066666666666666, + "grad_norm": 0.25205832719802856, + "learning_rate": 4.5468466666666673e-05, + "loss": 2.293820037841797, + "step": 68000 + }, + { + "epoch": 9.08, + "grad_norm": 0.2291940152645111, + "learning_rate": 4.5461800000000006e-05, + "loss": 2.293941650390625, + "step": 68100 + }, + { + "epoch": 9.093333333333334, + "grad_norm": 0.23932799696922302, + "learning_rate": 4.5455200000000005e-05, + "loss": 2.2932688903808596, + "step": 68200 + }, + { + "epoch": 9.106666666666667, + "grad_norm": 0.22407028079032898, + "learning_rate": 4.544853333333334e-05, + "loss": 2.296217193603516, + "step": 68300 + }, + { + "epoch": 9.12, + "grad_norm": 0.2332010418176651, + "learning_rate": 4.544186666666667e-05, + "loss": 2.296667022705078, + "step": 68400 + }, + { + "epoch": 9.133333333333333, + "grad_norm": 0.22865130007266998, + "learning_rate": 4.54352e-05, + "loss": 2.2938783264160154, + "step": 68500 + }, + { + "epoch": 9.146666666666667, + "grad_norm": 0.23731687664985657, + "learning_rate": 4.5428533333333334e-05, + "loss": 2.296278381347656, + "step": 68600 + }, + { + "epoch": 9.16, + "grad_norm": 0.21626006066799164, + "learning_rate": 4.5421866666666666e-05, + "loss": 2.2968585205078127, + "step": 68700 + }, + { + "epoch": 9.173333333333334, + "grad_norm": 0.23821845650672913, + "learning_rate": 4.5415200000000005e-05, + "loss": 2.2977059936523436, + "step": 68800 + }, + { + "epoch": 9.186666666666667, + "grad_norm": 0.2369178831577301, + "learning_rate": 4.540853333333334e-05, + "loss": 2.296495208740234, + "step": 68900 + }, + { + "epoch": 9.2, + "grad_norm": 0.22190576791763306, + "learning_rate": 4.540186666666667e-05, + "loss": 2.297707366943359, + "step": 69000 + }, + { + "epoch": 9.213333333333333, + "grad_norm": 0.22970540821552277, + "learning_rate": 4.53952e-05, + "loss": 2.2968077087402343, + "step": 69100 + }, + { + "epoch": 9.226666666666667, + "grad_norm": 0.23141416907310486, + "learning_rate": 4.5388533333333334e-05, + "loss": 2.297506103515625, + "step": 69200 + }, + { + "epoch": 9.24, + "grad_norm": 0.22547562420368195, + "learning_rate": 4.5381866666666667e-05, + "loss": 2.2980027770996094, + "step": 69300 + }, + { + "epoch": 9.253333333333334, + "grad_norm": 0.24733230471611023, + "learning_rate": 4.53752e-05, + "loss": 2.29823486328125, + "step": 69400 + }, + { + "epoch": 9.266666666666667, + "grad_norm": 0.23954610526561737, + "learning_rate": 4.536853333333334e-05, + "loss": 2.300198974609375, + "step": 69500 + }, + { + "epoch": 9.28, + "grad_norm": 0.253302663564682, + "learning_rate": 4.536186666666667e-05, + "loss": 2.2968313598632815, + "step": 69600 + }, + { + "epoch": 9.293333333333333, + "grad_norm": 0.2572624385356903, + "learning_rate": 4.53552e-05, + "loss": 2.3007162475585936, + "step": 69700 + }, + { + "epoch": 9.306666666666667, + "grad_norm": 0.2580345869064331, + "learning_rate": 4.5348533333333335e-05, + "loss": 2.2998121643066405, + "step": 69800 + }, + { + "epoch": 9.32, + "grad_norm": 0.23370671272277832, + "learning_rate": 4.5341866666666674e-05, + "loss": 2.302071075439453, + "step": 69900 + }, + { + "epoch": 9.333333333333334, + "grad_norm": 0.2354464828968048, + "learning_rate": 4.53352e-05, + "loss": 2.3010763549804687, + "step": 70000 + }, + { + "epoch": 9.346666666666668, + "grad_norm": 0.22726485133171082, + "learning_rate": 4.532853333333333e-05, + "loss": 2.302950897216797, + "step": 70100 + }, + { + "epoch": 9.36, + "grad_norm": 0.24437928199768066, + "learning_rate": 4.532193333333333e-05, + "loss": 2.301619110107422, + "step": 70200 + }, + { + "epoch": 9.373333333333333, + "grad_norm": 0.22362923622131348, + "learning_rate": 4.531526666666667e-05, + "loss": 2.301064147949219, + "step": 70300 + }, + { + "epoch": 9.386666666666667, + "grad_norm": 0.22675906121730804, + "learning_rate": 4.53086e-05, + "loss": 2.300765380859375, + "step": 70400 + }, + { + "epoch": 9.4, + "grad_norm": 0.23232199251651764, + "learning_rate": 4.5301933333333334e-05, + "loss": 2.2998236083984374, + "step": 70500 + }, + { + "epoch": 9.413333333333334, + "grad_norm": 0.2357228696346283, + "learning_rate": 4.5295266666666666e-05, + "loss": 2.300859375, + "step": 70600 + }, + { + "epoch": 9.426666666666666, + "grad_norm": 0.22707265615463257, + "learning_rate": 4.5288600000000005e-05, + "loss": 2.30189697265625, + "step": 70700 + }, + { + "epoch": 9.44, + "grad_norm": 0.22745104134082794, + "learning_rate": 4.528193333333334e-05, + "loss": 2.3032139587402343, + "step": 70800 + }, + { + "epoch": 9.453333333333333, + "grad_norm": 0.2270699143409729, + "learning_rate": 4.527526666666667e-05, + "loss": 2.3027561950683593, + "step": 70900 + }, + { + "epoch": 9.466666666666667, + "grad_norm": 0.22705000638961792, + "learning_rate": 4.52686e-05, + "loss": 2.30169677734375, + "step": 71000 + }, + { + "epoch": 9.48, + "grad_norm": 0.24112239480018616, + "learning_rate": 4.5261933333333335e-05, + "loss": 2.3032855224609374, + "step": 71100 + }, + { + "epoch": 9.493333333333334, + "grad_norm": 0.22396592795848846, + "learning_rate": 4.525526666666667e-05, + "loss": 2.3002029418945313, + "step": 71200 + }, + { + "epoch": 9.506666666666666, + "grad_norm": 0.21745307743549347, + "learning_rate": 4.52486e-05, + "loss": 2.3029249572753905, + "step": 71300 + }, + { + "epoch": 9.52, + "grad_norm": 0.23369887471199036, + "learning_rate": 4.524193333333334e-05, + "loss": 2.304996337890625, + "step": 71400 + }, + { + "epoch": 9.533333333333333, + "grad_norm": 0.23318316042423248, + "learning_rate": 4.523526666666667e-05, + "loss": 2.3056065368652345, + "step": 71500 + }, + { + "epoch": 9.546666666666667, + "grad_norm": 0.2250574827194214, + "learning_rate": 4.52286e-05, + "loss": 2.3032150268554688, + "step": 71600 + }, + { + "epoch": 9.56, + "grad_norm": 0.2183639109134674, + "learning_rate": 4.5221933333333335e-05, + "loss": 2.305579833984375, + "step": 71700 + }, + { + "epoch": 9.573333333333334, + "grad_norm": 0.2082279771566391, + "learning_rate": 4.521526666666667e-05, + "loss": 2.3057624816894533, + "step": 71800 + }, + { + "epoch": 9.586666666666666, + "grad_norm": 0.23728124797344208, + "learning_rate": 4.52086e-05, + "loss": 2.3048939514160156, + "step": 71900 + }, + { + "epoch": 9.6, + "grad_norm": 0.23262864351272583, + "learning_rate": 4.520193333333333e-05, + "loss": 2.303785400390625, + "step": 72000 + }, + { + "epoch": 9.613333333333333, + "grad_norm": 0.22944900393486023, + "learning_rate": 4.519526666666667e-05, + "loss": 2.3056602478027344, + "step": 72100 + }, + { + "epoch": 9.626666666666667, + "grad_norm": 0.2632165551185608, + "learning_rate": 4.518866666666667e-05, + "loss": 2.3039901733398436, + "step": 72200 + }, + { + "epoch": 9.64, + "grad_norm": 0.23915515840053558, + "learning_rate": 4.5182e-05, + "loss": 2.3091696166992186, + "step": 72300 + }, + { + "epoch": 9.653333333333332, + "grad_norm": 0.24298280477523804, + "learning_rate": 4.5175333333333334e-05, + "loss": 2.3061654663085935, + "step": 72400 + }, + { + "epoch": 9.666666666666666, + "grad_norm": 0.23660294711589813, + "learning_rate": 4.5168666666666673e-05, + "loss": 2.3104348754882813, + "step": 72500 + }, + { + "epoch": 9.68, + "grad_norm": 0.2370450496673584, + "learning_rate": 4.5162000000000006e-05, + "loss": 2.3079653930664064, + "step": 72600 + }, + { + "epoch": 9.693333333333333, + "grad_norm": 0.2323356717824936, + "learning_rate": 4.515533333333333e-05, + "loss": 2.3062504577636718, + "step": 72700 + }, + { + "epoch": 9.706666666666667, + "grad_norm": 0.2260921448469162, + "learning_rate": 4.514866666666667e-05, + "loss": 2.3086776733398438, + "step": 72800 + }, + { + "epoch": 9.72, + "grad_norm": 0.23469285666942596, + "learning_rate": 4.5142e-05, + "loss": 2.306175079345703, + "step": 72900 + }, + { + "epoch": 9.733333333333333, + "grad_norm": 0.2398371398448944, + "learning_rate": 4.5135333333333335e-05, + "loss": 2.3068536376953124, + "step": 73000 + }, + { + "epoch": 9.746666666666666, + "grad_norm": 0.2239067405462265, + "learning_rate": 4.512866666666667e-05, + "loss": 2.30914306640625, + "step": 73100 + }, + { + "epoch": 9.76, + "grad_norm": 0.22555306553840637, + "learning_rate": 4.5122000000000006e-05, + "loss": 2.3087586975097656, + "step": 73200 + }, + { + "epoch": 9.773333333333333, + "grad_norm": 0.22917480766773224, + "learning_rate": 4.511533333333334e-05, + "loss": 2.310619201660156, + "step": 73300 + }, + { + "epoch": 9.786666666666667, + "grad_norm": 0.23775242269039154, + "learning_rate": 4.510866666666667e-05, + "loss": 2.3091854858398437, + "step": 73400 + }, + { + "epoch": 9.8, + "grad_norm": 0.24801835417747498, + "learning_rate": 4.5102e-05, + "loss": 2.3082546997070312, + "step": 73500 + }, + { + "epoch": 9.813333333333333, + "grad_norm": 0.23106469213962555, + "learning_rate": 4.5095333333333335e-05, + "loss": 2.3087344360351563, + "step": 73600 + }, + { + "epoch": 9.826666666666666, + "grad_norm": 0.22504796087741852, + "learning_rate": 4.508866666666667e-05, + "loss": 2.308363494873047, + "step": 73700 + }, + { + "epoch": 9.84, + "grad_norm": 0.23639419674873352, + "learning_rate": 4.5082e-05, + "loss": 2.30758544921875, + "step": 73800 + }, + { + "epoch": 9.853333333333333, + "grad_norm": 0.24086354672908783, + "learning_rate": 4.507533333333334e-05, + "loss": 2.3087428283691405, + "step": 73900 + }, + { + "epoch": 9.866666666666667, + "grad_norm": 0.2180139571428299, + "learning_rate": 4.506866666666667e-05, + "loss": 2.308798828125, + "step": 74000 + }, + { + "epoch": 9.88, + "grad_norm": 0.22501300275325775, + "learning_rate": 4.5062e-05, + "loss": 2.3099415588378904, + "step": 74100 + }, + { + "epoch": 9.893333333333333, + "grad_norm": 0.23066537082195282, + "learning_rate": 4.50554e-05, + "loss": 2.307503662109375, + "step": 74200 + }, + { + "epoch": 9.906666666666666, + "grad_norm": 0.22434760630130768, + "learning_rate": 4.5048733333333335e-05, + "loss": 2.3106227111816406, + "step": 74300 + }, + { + "epoch": 9.92, + "grad_norm": 0.25195831060409546, + "learning_rate": 4.5042066666666674e-05, + "loss": 2.3048329162597656, + "step": 74400 + }, + { + "epoch": 9.933333333333334, + "grad_norm": 0.2128189355134964, + "learning_rate": 4.50354e-05, + "loss": 2.3085731506347655, + "step": 74500 + }, + { + "epoch": 9.946666666666667, + "grad_norm": 0.2209046483039856, + "learning_rate": 4.502873333333333e-05, + "loss": 2.3103427124023437, + "step": 74600 + }, + { + "epoch": 9.96, + "grad_norm": 0.4690224528312683, + "learning_rate": 4.502206666666667e-05, + "loss": 2.312327423095703, + "step": 74700 + }, + { + "epoch": 9.973333333333333, + "grad_norm": 0.21926158666610718, + "learning_rate": 4.50154e-05, + "loss": 2.310508575439453, + "step": 74800 + }, + { + "epoch": 9.986666666666666, + "grad_norm": 0.2374141365289688, + "learning_rate": 4.5008733333333335e-05, + "loss": 2.31052978515625, + "step": 74900 + }, + { + "epoch": 10.0, + "grad_norm": 0.22070780396461487, + "learning_rate": 4.500206666666667e-05, + "loss": 2.3100782775878907, + "step": 75000 + }, + { + "epoch": 10.013333333333334, + "grad_norm": 0.23315180838108063, + "learning_rate": 4.4995400000000006e-05, + "loss": 2.2820582580566406, + "step": 75100 + }, + { + "epoch": 10.026666666666667, + "grad_norm": 0.2489648312330246, + "learning_rate": 4.498873333333333e-05, + "loss": 2.2800167846679686, + "step": 75200 + }, + { + "epoch": 10.04, + "grad_norm": 0.2430664449930191, + "learning_rate": 4.4982066666666664e-05, + "loss": 2.2820753479003906, + "step": 75300 + }, + { + "epoch": 10.053333333333333, + "grad_norm": 0.24344773590564728, + "learning_rate": 4.49754e-05, + "loss": 2.2796278381347657, + "step": 75400 + }, + { + "epoch": 10.066666666666666, + "grad_norm": 0.24810276925563812, + "learning_rate": 4.4968733333333335e-05, + "loss": 2.279807586669922, + "step": 75500 + }, + { + "epoch": 10.08, + "grad_norm": 0.24132785201072693, + "learning_rate": 4.496206666666667e-05, + "loss": 2.2805412292480467, + "step": 75600 + }, + { + "epoch": 10.093333333333334, + "grad_norm": 0.24037568271160126, + "learning_rate": 4.49554e-05, + "loss": 2.2824276733398436, + "step": 75700 + }, + { + "epoch": 10.106666666666667, + "grad_norm": 0.23821789026260376, + "learning_rate": 4.494873333333334e-05, + "loss": 2.284660186767578, + "step": 75800 + }, + { + "epoch": 10.12, + "grad_norm": 0.2437891960144043, + "learning_rate": 4.494206666666667e-05, + "loss": 2.2823611450195314, + "step": 75900 + }, + { + "epoch": 10.133333333333333, + "grad_norm": 0.23768781125545502, + "learning_rate": 4.49354e-05, + "loss": 2.2855105590820313, + "step": 76000 + }, + { + "epoch": 10.146666666666667, + "grad_norm": 0.24591408669948578, + "learning_rate": 4.4928733333333336e-05, + "loss": 2.2840614318847656, + "step": 76100 + }, + { + "epoch": 10.16, + "grad_norm": 0.2379213571548462, + "learning_rate": 4.4922133333333335e-05, + "loss": 2.2879397583007814, + "step": 76200 + }, + { + "epoch": 10.173333333333334, + "grad_norm": 0.2505422532558441, + "learning_rate": 4.491546666666667e-05, + "loss": 2.2845729064941405, + "step": 76300 + }, + { + "epoch": 10.186666666666667, + "grad_norm": 0.24018126726150513, + "learning_rate": 4.49088e-05, + "loss": 2.287251281738281, + "step": 76400 + }, + { + "epoch": 10.2, + "grad_norm": 0.26669764518737793, + "learning_rate": 4.490213333333333e-05, + "loss": 2.284190826416016, + "step": 76500 + }, + { + "epoch": 10.213333333333333, + "grad_norm": 0.24248762428760529, + "learning_rate": 4.489546666666667e-05, + "loss": 2.287902374267578, + "step": 76600 + }, + { + "epoch": 10.226666666666667, + "grad_norm": 0.23663915693759918, + "learning_rate": 4.48888e-05, + "loss": 2.286513214111328, + "step": 76700 + }, + { + "epoch": 10.24, + "grad_norm": 0.25117191672325134, + "learning_rate": 4.4882133333333335e-05, + "loss": 2.289020538330078, + "step": 76800 + }, + { + "epoch": 10.253333333333334, + "grad_norm": 0.23214347660541534, + "learning_rate": 4.4875466666666674e-05, + "loss": 2.2866584777832033, + "step": 76900 + }, + { + "epoch": 10.266666666666667, + "grad_norm": 0.2386721670627594, + "learning_rate": 4.48688e-05, + "loss": 2.289106597900391, + "step": 77000 + }, + { + "epoch": 10.28, + "grad_norm": 0.24421949684619904, + "learning_rate": 4.486213333333333e-05, + "loss": 2.28677490234375, + "step": 77100 + }, + { + "epoch": 10.293333333333333, + "grad_norm": 0.2612295150756836, + "learning_rate": 4.485546666666667e-05, + "loss": 2.289345703125, + "step": 77200 + }, + { + "epoch": 10.306666666666667, + "grad_norm": 0.22263416647911072, + "learning_rate": 4.48488e-05, + "loss": 2.2870338439941404, + "step": 77300 + }, + { + "epoch": 10.32, + "grad_norm": 0.2574688494205475, + "learning_rate": 4.4842133333333336e-05, + "loss": 2.2890251159667967, + "step": 77400 + }, + { + "epoch": 10.333333333333334, + "grad_norm": 0.25357821583747864, + "learning_rate": 4.483546666666667e-05, + "loss": 2.2873045349121095, + "step": 77500 + }, + { + "epoch": 10.346666666666668, + "grad_norm": 0.2804579734802246, + "learning_rate": 4.482880000000001e-05, + "loss": 2.2914703369140623, + "step": 77600 + }, + { + "epoch": 10.36, + "grad_norm": 0.24506065249443054, + "learning_rate": 4.482213333333334e-05, + "loss": 2.2905569458007813, + "step": 77700 + }, + { + "epoch": 10.373333333333333, + "grad_norm": 0.25503185391426086, + "learning_rate": 4.4815466666666665e-05, + "loss": 2.290155334472656, + "step": 77800 + }, + { + "epoch": 10.386666666666667, + "grad_norm": 0.2579893171787262, + "learning_rate": 4.4808800000000004e-05, + "loss": 2.291581115722656, + "step": 77900 + }, + { + "epoch": 10.4, + "grad_norm": 0.22538907825946808, + "learning_rate": 4.4802133333333336e-05, + "loss": 2.291281280517578, + "step": 78000 + }, + { + "epoch": 10.413333333333334, + "grad_norm": 0.24924156069755554, + "learning_rate": 4.479546666666667e-05, + "loss": 2.289500885009766, + "step": 78100 + }, + { + "epoch": 10.426666666666666, + "grad_norm": 0.2366298884153366, + "learning_rate": 4.478886666666667e-05, + "loss": 2.290386047363281, + "step": 78200 + }, + { + "epoch": 10.44, + "grad_norm": 0.22278301417827606, + "learning_rate": 4.47822e-05, + "loss": 2.2905796813964843, + "step": 78300 + }, + { + "epoch": 10.453333333333333, + "grad_norm": 0.25287824869155884, + "learning_rate": 4.477553333333334e-05, + "loss": 2.290713653564453, + "step": 78400 + }, + { + "epoch": 10.466666666666667, + "grad_norm": 0.24435845017433167, + "learning_rate": 4.476886666666667e-05, + "loss": 2.2916438293457033, + "step": 78500 + }, + { + "epoch": 10.48, + "grad_norm": 0.24885345995426178, + "learning_rate": 4.47622e-05, + "loss": 2.2903347778320313, + "step": 78600 + }, + { + "epoch": 10.493333333333334, + "grad_norm": 0.2466493546962738, + "learning_rate": 4.4755533333333335e-05, + "loss": 2.292062225341797, + "step": 78700 + }, + { + "epoch": 10.506666666666666, + "grad_norm": 0.25343602895736694, + "learning_rate": 4.474886666666667e-05, + "loss": 2.293315124511719, + "step": 78800 + }, + { + "epoch": 10.52, + "grad_norm": 0.26084843277931213, + "learning_rate": 4.47422e-05, + "loss": 2.290987854003906, + "step": 78900 + }, + { + "epoch": 10.533333333333333, + "grad_norm": 0.22565628588199615, + "learning_rate": 4.473553333333333e-05, + "loss": 2.291141357421875, + "step": 79000 + }, + { + "epoch": 10.546666666666667, + "grad_norm": 0.2424556016921997, + "learning_rate": 4.472886666666667e-05, + "loss": 2.2940351867675783, + "step": 79100 + }, + { + "epoch": 10.56, + "grad_norm": 0.23173433542251587, + "learning_rate": 4.4722200000000004e-05, + "loss": 2.2938632202148437, + "step": 79200 + }, + { + "epoch": 10.573333333333334, + "grad_norm": 0.24767623841762543, + "learning_rate": 4.4715533333333336e-05, + "loss": 2.294097595214844, + "step": 79300 + }, + { + "epoch": 10.586666666666666, + "grad_norm": 0.2494058907032013, + "learning_rate": 4.470886666666667e-05, + "loss": 2.292882843017578, + "step": 79400 + }, + { + "epoch": 10.6, + "grad_norm": 0.2309560924768448, + "learning_rate": 4.47022e-05, + "loss": 2.2917105102539064, + "step": 79500 + }, + { + "epoch": 10.613333333333333, + "grad_norm": 0.2502034306526184, + "learning_rate": 4.469553333333333e-05, + "loss": 2.2940020751953125, + "step": 79600 + }, + { + "epoch": 10.626666666666667, + "grad_norm": 0.2417595088481903, + "learning_rate": 4.4688866666666665e-05, + "loss": 2.2959962463378907, + "step": 79700 + }, + { + "epoch": 10.64, + "grad_norm": 0.2390497922897339, + "learning_rate": 4.4682200000000004e-05, + "loss": 2.2932833862304687, + "step": 79800 + }, + { + "epoch": 10.653333333333332, + "grad_norm": 0.25319451093673706, + "learning_rate": 4.4675533333333336e-05, + "loss": 2.2950804138183596, + "step": 79900 + }, + { + "epoch": 10.666666666666666, + "grad_norm": 0.23525965213775635, + "learning_rate": 4.466886666666667e-05, + "loss": 2.2939056396484374, + "step": 80000 + }, + { + "epoch": 10.68, + "grad_norm": 0.24645350873470306, + "learning_rate": 4.46622e-05, + "loss": 2.2950694274902346, + "step": 80100 + }, + { + "epoch": 10.693333333333333, + "grad_norm": 0.24350802600383759, + "learning_rate": 4.46556e-05, + "loss": 2.295481414794922, + "step": 80200 + }, + { + "epoch": 10.706666666666667, + "grad_norm": 0.24546648561954498, + "learning_rate": 4.464893333333334e-05, + "loss": 2.2965150451660157, + "step": 80300 + }, + { + "epoch": 10.72, + "grad_norm": 0.24012289941310883, + "learning_rate": 4.464226666666667e-05, + "loss": 2.29464111328125, + "step": 80400 + }, + { + "epoch": 10.733333333333333, + "grad_norm": 0.2439471334218979, + "learning_rate": 4.46356e-05, + "loss": 2.2982655334472657, + "step": 80500 + }, + { + "epoch": 10.746666666666666, + "grad_norm": 0.24235573410987854, + "learning_rate": 4.4628933333333336e-05, + "loss": 2.2973838806152345, + "step": 80600 + }, + { + "epoch": 10.76, + "grad_norm": 0.2552349865436554, + "learning_rate": 4.462226666666667e-05, + "loss": 2.2967495727539062, + "step": 80700 + }, + { + "epoch": 10.773333333333333, + "grad_norm": 0.2687914967536926, + "learning_rate": 4.46156e-05, + "loss": 2.2971734619140625, + "step": 80800 + }, + { + "epoch": 10.786666666666667, + "grad_norm": 0.22800393402576447, + "learning_rate": 4.460893333333334e-05, + "loss": 2.295909881591797, + "step": 80900 + }, + { + "epoch": 10.8, + "grad_norm": 0.25448915362358093, + "learning_rate": 4.460226666666667e-05, + "loss": 2.299366455078125, + "step": 81000 + }, + { + "epoch": 10.813333333333333, + "grad_norm": 0.24387459456920624, + "learning_rate": 4.4595600000000004e-05, + "loss": 2.297369384765625, + "step": 81100 + }, + { + "epoch": 10.826666666666666, + "grad_norm": 0.24151787161827087, + "learning_rate": 4.4588933333333336e-05, + "loss": 2.299127197265625, + "step": 81200 + }, + { + "epoch": 10.84, + "grad_norm": 0.2260817289352417, + "learning_rate": 4.458226666666667e-05, + "loss": 2.2975596618652343, + "step": 81300 + }, + { + "epoch": 10.853333333333333, + "grad_norm": 0.24239422380924225, + "learning_rate": 4.45756e-05, + "loss": 2.2985691833496094, + "step": 81400 + }, + { + "epoch": 10.866666666666667, + "grad_norm": 0.21752089262008667, + "learning_rate": 4.456893333333333e-05, + "loss": 2.300589294433594, + "step": 81500 + }, + { + "epoch": 10.88, + "grad_norm": 0.23936143517494202, + "learning_rate": 4.456226666666667e-05, + "loss": 2.2985806274414062, + "step": 81600 + }, + { + "epoch": 10.893333333333333, + "grad_norm": 0.25165167450904846, + "learning_rate": 4.4555600000000004e-05, + "loss": 2.3023681640625, + "step": 81700 + }, + { + "epoch": 10.906666666666666, + "grad_norm": 0.24560686945915222, + "learning_rate": 4.4548933333333336e-05, + "loss": 2.296816101074219, + "step": 81800 + }, + { + "epoch": 10.92, + "grad_norm": 0.235377699136734, + "learning_rate": 4.454226666666667e-05, + "loss": 2.3003538513183592, + "step": 81900 + }, + { + "epoch": 10.933333333333334, + "grad_norm": 0.21916425228118896, + "learning_rate": 4.45356e-05, + "loss": 2.302768096923828, + "step": 82000 + }, + { + "epoch": 10.946666666666667, + "grad_norm": 0.23057326674461365, + "learning_rate": 4.452893333333333e-05, + "loss": 2.299179992675781, + "step": 82100 + }, + { + "epoch": 10.96, + "grad_norm": 0.23899604380130768, + "learning_rate": 4.452233333333334e-05, + "loss": 2.3004336547851563, + "step": 82200 + }, + { + "epoch": 10.973333333333333, + "grad_norm": 0.23253585398197174, + "learning_rate": 4.4515666666666665e-05, + "loss": 2.3014898681640625, + "step": 82300 + }, + { + "epoch": 10.986666666666666, + "grad_norm": 0.24487797915935516, + "learning_rate": 4.4509000000000004e-05, + "loss": 2.3026199340820312, + "step": 82400 + }, + { + "epoch": 11.0, + "grad_norm": 0.2387479692697525, + "learning_rate": 4.4502333333333336e-05, + "loss": 2.2974674987792967, + "step": 82500 + }, + { + "epoch": 11.013333333333334, + "grad_norm": 0.2720658481121063, + "learning_rate": 4.4495733333333335e-05, + "loss": 2.2671746826171875, + "step": 82600 + }, + { + "epoch": 11.026666666666667, + "grad_norm": 0.263578861951828, + "learning_rate": 4.448906666666667e-05, + "loss": 2.2688304138183595, + "step": 82700 + }, + { + "epoch": 11.04, + "grad_norm": 0.2674785852432251, + "learning_rate": 4.44824e-05, + "loss": 2.270413055419922, + "step": 82800 + }, + { + "epoch": 11.053333333333333, + "grad_norm": 0.28208568692207336, + "learning_rate": 4.447573333333334e-05, + "loss": 2.267439422607422, + "step": 82900 + }, + { + "epoch": 11.066666666666666, + "grad_norm": 0.2503279447555542, + "learning_rate": 4.446906666666667e-05, + "loss": 2.27013427734375, + "step": 83000 + }, + { + "epoch": 11.08, + "grad_norm": 0.2667846083641052, + "learning_rate": 4.44624e-05, + "loss": 2.270685577392578, + "step": 83100 + }, + { + "epoch": 11.093333333333334, + "grad_norm": 0.2649480700492859, + "learning_rate": 4.4455733333333335e-05, + "loss": 2.2691964721679687, + "step": 83200 + }, + { + "epoch": 11.106666666666667, + "grad_norm": 0.27101367712020874, + "learning_rate": 4.444906666666667e-05, + "loss": 2.272455291748047, + "step": 83300 + }, + { + "epoch": 11.12, + "grad_norm": 0.24341875314712524, + "learning_rate": 4.44424e-05, + "loss": 2.2689295959472657, + "step": 83400 + }, + { + "epoch": 11.133333333333333, + "grad_norm": 0.25448212027549744, + "learning_rate": 4.443573333333333e-05, + "loss": 2.2724458312988283, + "step": 83500 + }, + { + "epoch": 11.146666666666667, + "grad_norm": 0.25443369150161743, + "learning_rate": 4.442906666666667e-05, + "loss": 2.271412811279297, + "step": 83600 + }, + { + "epoch": 11.16, + "grad_norm": 0.26732975244522095, + "learning_rate": 4.4422400000000003e-05, + "loss": 2.271360321044922, + "step": 83700 + }, + { + "epoch": 11.173333333333334, + "grad_norm": 0.26395460963249207, + "learning_rate": 4.4415733333333336e-05, + "loss": 2.26961669921875, + "step": 83800 + }, + { + "epoch": 11.186666666666667, + "grad_norm": 0.24745440483093262, + "learning_rate": 4.440906666666667e-05, + "loss": 2.2744174194335938, + "step": 83900 + }, + { + "epoch": 11.2, + "grad_norm": 0.26402172446250916, + "learning_rate": 4.44024e-05, + "loss": 2.2720037841796876, + "step": 84000 + }, + { + "epoch": 11.213333333333333, + "grad_norm": 0.23789356648921967, + "learning_rate": 4.439573333333333e-05, + "loss": 2.274175109863281, + "step": 84100 + }, + { + "epoch": 11.226666666666667, + "grad_norm": 0.24144236743450165, + "learning_rate": 4.4389066666666665e-05, + "loss": 2.2732891845703125, + "step": 84200 + }, + { + "epoch": 11.24, + "grad_norm": 0.2500831186771393, + "learning_rate": 4.4382400000000004e-05, + "loss": 2.2730227661132814, + "step": 84300 + }, + { + "epoch": 11.253333333333334, + "grad_norm": 0.25501829385757446, + "learning_rate": 4.4375733333333336e-05, + "loss": 2.274988708496094, + "step": 84400 + }, + { + "epoch": 11.266666666666667, + "grad_norm": 0.22763259708881378, + "learning_rate": 4.436906666666667e-05, + "loss": 2.272532196044922, + "step": 84500 + }, + { + "epoch": 11.28, + "grad_norm": 0.25562381744384766, + "learning_rate": 4.43624e-05, + "loss": 2.2755363464355467, + "step": 84600 + }, + { + "epoch": 11.293333333333333, + "grad_norm": 0.25353795289993286, + "learning_rate": 4.435573333333334e-05, + "loss": 2.2750617980957033, + "step": 84700 + }, + { + "epoch": 11.306666666666667, + "grad_norm": 0.26931309700012207, + "learning_rate": 4.4349066666666665e-05, + "loss": 2.2751278686523437, + "step": 84800 + }, + { + "epoch": 11.32, + "grad_norm": 0.2389533370733261, + "learning_rate": 4.43424e-05, + "loss": 2.278493194580078, + "step": 84900 + }, + { + "epoch": 11.333333333333334, + "grad_norm": 0.2465227097272873, + "learning_rate": 4.4335733333333337e-05, + "loss": 2.2789736938476564, + "step": 85000 + }, + { + "epoch": 11.346666666666668, + "grad_norm": 0.25453120470046997, + "learning_rate": 4.432906666666667e-05, + "loss": 2.2776898193359374, + "step": 85100 + }, + { + "epoch": 11.36, + "grad_norm": 0.2660987377166748, + "learning_rate": 4.43224e-05, + "loss": 2.2778756713867185, + "step": 85200 + }, + { + "epoch": 11.373333333333333, + "grad_norm": 0.25308796763420105, + "learning_rate": 4.431573333333334e-05, + "loss": 2.279368438720703, + "step": 85300 + }, + { + "epoch": 11.386666666666667, + "grad_norm": 0.25836026668548584, + "learning_rate": 4.430906666666667e-05, + "loss": 2.2798582458496095, + "step": 85400 + }, + { + "epoch": 11.4, + "grad_norm": 0.25316664576530457, + "learning_rate": 4.43024e-05, + "loss": 2.279602813720703, + "step": 85500 + }, + { + "epoch": 11.413333333333334, + "grad_norm": 0.2550676167011261, + "learning_rate": 4.429573333333334e-05, + "loss": 2.2755258178710935, + "step": 85600 + }, + { + "epoch": 11.426666666666666, + "grad_norm": 0.23546501994132996, + "learning_rate": 4.428906666666667e-05, + "loss": 2.2800631713867188, + "step": 85700 + }, + { + "epoch": 11.44, + "grad_norm": 0.264654278755188, + "learning_rate": 4.42824e-05, + "loss": 2.2767239379882813, + "step": 85800 + }, + { + "epoch": 11.453333333333333, + "grad_norm": 0.24899619817733765, + "learning_rate": 4.4275733333333334e-05, + "loss": 2.2798704528808593, + "step": 85900 + }, + { + "epoch": 11.466666666666667, + "grad_norm": 0.24456363916397095, + "learning_rate": 4.426906666666667e-05, + "loss": 2.2780026245117186, + "step": 86000 + }, + { + "epoch": 11.48, + "grad_norm": 0.25708940625190735, + "learning_rate": 4.4262400000000005e-05, + "loss": 2.2792425537109375, + "step": 86100 + }, + { + "epoch": 11.493333333333334, + "grad_norm": 0.2511962354183197, + "learning_rate": 4.425573333333334e-05, + "loss": 2.282320251464844, + "step": 86200 + }, + { + "epoch": 11.506666666666666, + "grad_norm": 0.24816451966762543, + "learning_rate": 4.424906666666667e-05, + "loss": 2.2792512512207033, + "step": 86300 + }, + { + "epoch": 11.52, + "grad_norm": 0.2514301836490631, + "learning_rate": 4.42424e-05, + "loss": 2.2795748901367188, + "step": 86400 + }, + { + "epoch": 11.533333333333333, + "grad_norm": 0.2495884746313095, + "learning_rate": 4.4235733333333334e-05, + "loss": 2.278619689941406, + "step": 86500 + }, + { + "epoch": 11.546666666666667, + "grad_norm": 0.24815420806407928, + "learning_rate": 4.422913333333333e-05, + "loss": 2.2829832458496093, + "step": 86600 + }, + { + "epoch": 11.56, + "grad_norm": 0.2668995261192322, + "learning_rate": 4.4222466666666665e-05, + "loss": 2.2842198181152344, + "step": 86700 + }, + { + "epoch": 11.573333333333334, + "grad_norm": 0.256393700838089, + "learning_rate": 4.4215800000000004e-05, + "loss": 2.2821044921875, + "step": 86800 + }, + { + "epoch": 11.586666666666666, + "grad_norm": 0.2424868494272232, + "learning_rate": 4.420913333333334e-05, + "loss": 2.2830775451660155, + "step": 86900 + }, + { + "epoch": 11.6, + "grad_norm": 0.27431467175483704, + "learning_rate": 4.420246666666667e-05, + "loss": 2.28398681640625, + "step": 87000 + }, + { + "epoch": 11.613333333333333, + "grad_norm": 0.267622709274292, + "learning_rate": 4.41958e-05, + "loss": 2.283782958984375, + "step": 87100 + }, + { + "epoch": 11.626666666666667, + "grad_norm": 0.2440316379070282, + "learning_rate": 4.418913333333334e-05, + "loss": 2.28414794921875, + "step": 87200 + }, + { + "epoch": 11.64, + "grad_norm": 0.259630411863327, + "learning_rate": 4.4182466666666666e-05, + "loss": 2.2857057189941408, + "step": 87300 + }, + { + "epoch": 11.653333333333332, + "grad_norm": 0.2571096122264862, + "learning_rate": 4.41758e-05, + "loss": 2.2847987365722657, + "step": 87400 + }, + { + "epoch": 11.666666666666666, + "grad_norm": 0.2570159137248993, + "learning_rate": 4.416913333333334e-05, + "loss": 2.2837939453125, + "step": 87500 + }, + { + "epoch": 11.68, + "grad_norm": 0.2649681270122528, + "learning_rate": 4.416246666666667e-05, + "loss": 2.2841265869140623, + "step": 87600 + }, + { + "epoch": 11.693333333333333, + "grad_norm": 0.26410555839538574, + "learning_rate": 4.41558e-05, + "loss": 2.2851953125, + "step": 87700 + }, + { + "epoch": 11.706666666666667, + "grad_norm": 0.2622752785682678, + "learning_rate": 4.4149133333333334e-05, + "loss": 2.2836956787109375, + "step": 87800 + }, + { + "epoch": 11.72, + "grad_norm": 0.2514193058013916, + "learning_rate": 4.414246666666667e-05, + "loss": 2.2842561340332033, + "step": 87900 + }, + { + "epoch": 11.733333333333333, + "grad_norm": 0.2531854212284088, + "learning_rate": 4.41358e-05, + "loss": 2.284789733886719, + "step": 88000 + }, + { + "epoch": 11.746666666666666, + "grad_norm": 0.2689782679080963, + "learning_rate": 4.412913333333333e-05, + "loss": 2.2857350158691405, + "step": 88100 + }, + { + "epoch": 11.76, + "grad_norm": 0.24945223331451416, + "learning_rate": 4.412246666666667e-05, + "loss": 2.2845068359375, + "step": 88200 + }, + { + "epoch": 11.773333333333333, + "grad_norm": 0.26712265610694885, + "learning_rate": 4.41158e-05, + "loss": 2.2854434204101564, + "step": 88300 + }, + { + "epoch": 11.786666666666667, + "grad_norm": 0.256874680519104, + "learning_rate": 4.4109133333333334e-05, + "loss": 2.287956085205078, + "step": 88400 + }, + { + "epoch": 11.8, + "grad_norm": 0.2476692944765091, + "learning_rate": 4.4102533333333333e-05, + "loss": 2.286315460205078, + "step": 88500 + }, + { + "epoch": 11.813333333333333, + "grad_norm": 0.2615588903427124, + "learning_rate": 4.4095866666666666e-05, + "loss": 2.284837188720703, + "step": 88600 + }, + { + "epoch": 11.826666666666666, + "grad_norm": 0.24872687458992004, + "learning_rate": 4.4089200000000005e-05, + "loss": 2.285694580078125, + "step": 88700 + }, + { + "epoch": 11.84, + "grad_norm": 0.2530681788921356, + "learning_rate": 4.408253333333334e-05, + "loss": 2.2873902893066407, + "step": 88800 + }, + { + "epoch": 11.853333333333333, + "grad_norm": 0.24849970638751984, + "learning_rate": 4.407586666666667e-05, + "loss": 2.2867955017089843, + "step": 88900 + }, + { + "epoch": 11.866666666666667, + "grad_norm": 0.24246734380722046, + "learning_rate": 4.40692e-05, + "loss": 2.289001770019531, + "step": 89000 + }, + { + "epoch": 11.88, + "grad_norm": 0.2607153654098511, + "learning_rate": 4.4062533333333334e-05, + "loss": 2.2897518920898436, + "step": 89100 + }, + { + "epoch": 11.893333333333333, + "grad_norm": 0.2614729106426239, + "learning_rate": 4.4055866666666666e-05, + "loss": 2.2860928344726563, + "step": 89200 + }, + { + "epoch": 11.906666666666666, + "grad_norm": 0.2584093511104584, + "learning_rate": 4.40492e-05, + "loss": 2.2889364624023436, + "step": 89300 + }, + { + "epoch": 11.92, + "grad_norm": 0.25701311230659485, + "learning_rate": 4.404253333333334e-05, + "loss": 2.2891424560546874, + "step": 89400 + }, + { + "epoch": 11.933333333333334, + "grad_norm": 0.2440747767686844, + "learning_rate": 4.403586666666667e-05, + "loss": 2.2895196533203124, + "step": 89500 + }, + { + "epoch": 11.946666666666667, + "grad_norm": 0.2381986528635025, + "learning_rate": 4.40292e-05, + "loss": 2.2897454833984376, + "step": 89600 + }, + { + "epoch": 11.96, + "grad_norm": 0.26296404004096985, + "learning_rate": 4.402253333333334e-05, + "loss": 2.2879896545410157, + "step": 89700 + }, + { + "epoch": 11.973333333333333, + "grad_norm": 0.25517991185188293, + "learning_rate": 4.4015866666666666e-05, + "loss": 2.2889413452148437, + "step": 89800 + }, + { + "epoch": 11.986666666666666, + "grad_norm": 0.2450113147497177, + "learning_rate": 4.40092e-05, + "loss": 2.2893191528320314, + "step": 89900 + }, + { + "epoch": 12.0, + "grad_norm": 0.250333309173584, + "learning_rate": 4.400253333333334e-05, + "loss": 2.289803161621094, + "step": 90000 + }, + { + "epoch": 12.013333333333334, + "grad_norm": 0.26415345072746277, + "learning_rate": 4.399586666666667e-05, + "loss": 2.2520457458496095, + "step": 90100 + }, + { + "epoch": 12.026666666666667, + "grad_norm": 0.270293265581131, + "learning_rate": 4.39892e-05, + "loss": 2.256067810058594, + "step": 90200 + }, + { + "epoch": 12.04, + "grad_norm": 0.26308006048202515, + "learning_rate": 4.3982533333333335e-05, + "loss": 2.254475402832031, + "step": 90300 + }, + { + "epoch": 12.053333333333333, + "grad_norm": 0.26801061630249023, + "learning_rate": 4.3975866666666674e-05, + "loss": 2.2552793884277342, + "step": 90400 + }, + { + "epoch": 12.066666666666666, + "grad_norm": 0.26214471459388733, + "learning_rate": 4.3969200000000006e-05, + "loss": 2.258145599365234, + "step": 90500 + }, + { + "epoch": 12.08, + "grad_norm": 0.28105658292770386, + "learning_rate": 4.396253333333333e-05, + "loss": 2.2529132080078127, + "step": 90600 + }, + { + "epoch": 12.093333333333334, + "grad_norm": 0.2663695216178894, + "learning_rate": 4.395586666666667e-05, + "loss": 2.255912322998047, + "step": 90700 + }, + { + "epoch": 12.106666666666667, + "grad_norm": 0.2649990916252136, + "learning_rate": 4.39492e-05, + "loss": 2.257332000732422, + "step": 90800 + }, + { + "epoch": 12.12, + "grad_norm": 0.2807125747203827, + "learning_rate": 4.39426e-05, + "loss": 2.254444274902344, + "step": 90900 + }, + { + "epoch": 12.133333333333333, + "grad_norm": 0.2781652510166168, + "learning_rate": 4.3935933333333334e-05, + "loss": 2.255809478759766, + "step": 91000 + }, + { + "epoch": 12.146666666666667, + "grad_norm": 0.2698095142841339, + "learning_rate": 4.3929266666666666e-05, + "loss": 2.2598388671875, + "step": 91100 + }, + { + "epoch": 12.16, + "grad_norm": 0.2597528100013733, + "learning_rate": 4.3922600000000005e-05, + "loss": 2.2584068298339846, + "step": 91200 + }, + { + "epoch": 12.173333333333334, + "grad_norm": 0.29636549949645996, + "learning_rate": 4.391593333333334e-05, + "loss": 2.2593704223632813, + "step": 91300 + }, + { + "epoch": 12.186666666666667, + "grad_norm": 0.26234522461891174, + "learning_rate": 4.390926666666667e-05, + "loss": 2.2581317138671877, + "step": 91400 + }, + { + "epoch": 12.2, + "grad_norm": 0.2541376054286957, + "learning_rate": 4.39026e-05, + "loss": 2.2626708984375, + "step": 91500 + }, + { + "epoch": 12.213333333333333, + "grad_norm": 0.26197925209999084, + "learning_rate": 4.3895933333333334e-05, + "loss": 2.260786285400391, + "step": 91600 + }, + { + "epoch": 12.226666666666667, + "grad_norm": 0.2817310690879822, + "learning_rate": 4.388926666666667e-05, + "loss": 2.2600221252441406, + "step": 91700 + }, + { + "epoch": 12.24, + "grad_norm": 0.2767874002456665, + "learning_rate": 4.38826e-05, + "loss": 2.259307556152344, + "step": 91800 + }, + { + "epoch": 12.253333333333334, + "grad_norm": 0.28231081366539, + "learning_rate": 4.387593333333334e-05, + "loss": 2.26181396484375, + "step": 91900 + }, + { + "epoch": 12.266666666666667, + "grad_norm": 0.29353827238082886, + "learning_rate": 4.386926666666667e-05, + "loss": 2.2626690673828125, + "step": 92000 + }, + { + "epoch": 12.28, + "grad_norm": 0.28261885046958923, + "learning_rate": 4.38626e-05, + "loss": 2.2611619567871095, + "step": 92100 + }, + { + "epoch": 12.293333333333333, + "grad_norm": 0.27281126379966736, + "learning_rate": 4.3855933333333335e-05, + "loss": 2.2623275756835937, + "step": 92200 + }, + { + "epoch": 12.306666666666667, + "grad_norm": 0.27092328667640686, + "learning_rate": 4.384926666666667e-05, + "loss": 2.2650576782226564, + "step": 92300 + }, + { + "epoch": 12.32, + "grad_norm": 0.27784717082977295, + "learning_rate": 4.38426e-05, + "loss": 2.265977478027344, + "step": 92400 + }, + { + "epoch": 12.333333333333334, + "grad_norm": 0.2821849286556244, + "learning_rate": 4.383593333333333e-05, + "loss": 2.2627384948730467, + "step": 92500 + }, + { + "epoch": 12.346666666666668, + "grad_norm": 0.2593942880630493, + "learning_rate": 4.382926666666667e-05, + "loss": 2.2643051147460938, + "step": 92600 + }, + { + "epoch": 12.36, + "grad_norm": 0.2664111852645874, + "learning_rate": 4.38226e-05, + "loss": 2.263711700439453, + "step": 92700 + }, + { + "epoch": 12.373333333333333, + "grad_norm": 0.27181532979011536, + "learning_rate": 4.3815933333333335e-05, + "loss": 2.2646673583984374, + "step": 92800 + }, + { + "epoch": 12.386666666666667, + "grad_norm": 0.27028733491897583, + "learning_rate": 4.380926666666667e-05, + "loss": 2.263740997314453, + "step": 92900 + }, + { + "epoch": 12.4, + "grad_norm": 0.27383387088775635, + "learning_rate": 4.3802600000000006e-05, + "loss": 2.2647544860839846, + "step": 93000 + }, + { + "epoch": 12.413333333333334, + "grad_norm": 0.2857363820075989, + "learning_rate": 4.379593333333333e-05, + "loss": 2.2678724670410157, + "step": 93100 + }, + { + "epoch": 12.426666666666666, + "grad_norm": 0.2589321434497833, + "learning_rate": 4.3789266666666664e-05, + "loss": 2.266948547363281, + "step": 93200 + }, + { + "epoch": 12.44, + "grad_norm": 0.2658815085887909, + "learning_rate": 4.37826e-05, + "loss": 2.266887969970703, + "step": 93300 + }, + { + "epoch": 12.453333333333333, + "grad_norm": 0.25604525208473206, + "learning_rate": 4.3775933333333336e-05, + "loss": 2.2663844299316405, + "step": 93400 + }, + { + "epoch": 12.466666666666667, + "grad_norm": 0.2693767249584198, + "learning_rate": 4.376926666666667e-05, + "loss": 2.268565368652344, + "step": 93500 + }, + { + "epoch": 12.48, + "grad_norm": 0.2705082297325134, + "learning_rate": 4.376260000000001e-05, + "loss": 2.2688444519042967, + "step": 93600 + }, + { + "epoch": 12.493333333333334, + "grad_norm": 0.26299747824668884, + "learning_rate": 4.375593333333334e-05, + "loss": 2.2663604736328127, + "step": 93700 + }, + { + "epoch": 12.506666666666666, + "grad_norm": 0.2636234760284424, + "learning_rate": 4.3749266666666665e-05, + "loss": 2.267936096191406, + "step": 93800 + }, + { + "epoch": 12.52, + "grad_norm": 0.27005478739738464, + "learning_rate": 4.37426e-05, + "loss": 2.2693917846679685, + "step": 93900 + }, + { + "epoch": 12.533333333333333, + "grad_norm": 0.26250335574150085, + "learning_rate": 4.3735933333333336e-05, + "loss": 2.2679597473144533, + "step": 94000 + }, + { + "epoch": 12.546666666666667, + "grad_norm": 0.2671932876110077, + "learning_rate": 4.3729333333333335e-05, + "loss": 2.2690809631347655, + "step": 94100 + }, + { + "epoch": 12.56, + "grad_norm": 0.2680586576461792, + "learning_rate": 4.372266666666667e-05, + "loss": 2.271476287841797, + "step": 94200 + }, + { + "epoch": 12.573333333333334, + "grad_norm": 0.2628432512283325, + "learning_rate": 4.3716e-05, + "loss": 2.2699676513671876, + "step": 94300 + }, + { + "epoch": 12.586666666666666, + "grad_norm": 0.2540188431739807, + "learning_rate": 4.370933333333334e-05, + "loss": 2.2718327331542967, + "step": 94400 + }, + { + "epoch": 12.6, + "grad_norm": 0.2647560238838196, + "learning_rate": 4.370266666666667e-05, + "loss": 2.2681085205078126, + "step": 94500 + }, + { + "epoch": 12.613333333333333, + "grad_norm": 0.2745302617549896, + "learning_rate": 4.3696e-05, + "loss": 2.2698655700683594, + "step": 94600 + }, + { + "epoch": 12.626666666666667, + "grad_norm": 0.26162075996398926, + "learning_rate": 4.3689333333333335e-05, + "loss": 2.2712269592285157, + "step": 94700 + }, + { + "epoch": 12.64, + "grad_norm": 0.2582067847251892, + "learning_rate": 4.368266666666667e-05, + "loss": 2.272103271484375, + "step": 94800 + }, + { + "epoch": 12.653333333333332, + "grad_norm": 0.27295711636543274, + "learning_rate": 4.3676e-05, + "loss": 2.272527618408203, + "step": 94900 + }, + { + "epoch": 12.666666666666666, + "grad_norm": 0.2765968441963196, + "learning_rate": 4.366933333333333e-05, + "loss": 2.271612243652344, + "step": 95000 + }, + { + "epoch": 12.68, + "grad_norm": 0.25656306743621826, + "learning_rate": 4.366266666666667e-05, + "loss": 2.271820068359375, + "step": 95100 + }, + { + "epoch": 12.693333333333333, + "grad_norm": 0.2678724527359009, + "learning_rate": 4.3656000000000004e-05, + "loss": 2.271623992919922, + "step": 95200 + }, + { + "epoch": 12.706666666666667, + "grad_norm": 0.26828429102897644, + "learning_rate": 4.3649333333333336e-05, + "loss": 2.272816467285156, + "step": 95300 + }, + { + "epoch": 12.72, + "grad_norm": 0.2544470429420471, + "learning_rate": 4.364266666666667e-05, + "loss": 2.2750363159179687, + "step": 95400 + }, + { + "epoch": 12.733333333333333, + "grad_norm": 0.2685322165489197, + "learning_rate": 4.363600000000001e-05, + "loss": 2.2729071044921874, + "step": 95500 + }, + { + "epoch": 12.746666666666666, + "grad_norm": 0.26069387793540955, + "learning_rate": 4.362933333333333e-05, + "loss": 2.2722439575195312, + "step": 95600 + }, + { + "epoch": 12.76, + "grad_norm": 0.2649424374103546, + "learning_rate": 4.3622666666666665e-05, + "loss": 2.272758026123047, + "step": 95700 + }, + { + "epoch": 12.773333333333333, + "grad_norm": 0.2521308660507202, + "learning_rate": 4.3616000000000004e-05, + "loss": 2.272996520996094, + "step": 95800 + }, + { + "epoch": 12.786666666666667, + "grad_norm": 0.25602442026138306, + "learning_rate": 4.3609333333333336e-05, + "loss": 2.2761857604980467, + "step": 95900 + }, + { + "epoch": 12.8, + "grad_norm": 0.267101913690567, + "learning_rate": 4.360266666666667e-05, + "loss": 2.2757493591308595, + "step": 96000 + }, + { + "epoch": 12.813333333333333, + "grad_norm": 0.26094216108322144, + "learning_rate": 4.3596e-05, + "loss": 2.2767680358886717, + "step": 96100 + }, + { + "epoch": 12.826666666666666, + "grad_norm": 0.3060274124145508, + "learning_rate": 4.358933333333334e-05, + "loss": 2.276941833496094, + "step": 96200 + }, + { + "epoch": 12.84, + "grad_norm": 0.26290687918663025, + "learning_rate": 4.3582666666666665e-05, + "loss": 2.275010528564453, + "step": 96300 + }, + { + "epoch": 12.853333333333333, + "grad_norm": 0.2535942792892456, + "learning_rate": 4.3576e-05, + "loss": 2.273764343261719, + "step": 96400 + }, + { + "epoch": 12.866666666666667, + "grad_norm": 0.27731791138648987, + "learning_rate": 4.3569333333333337e-05, + "loss": 2.2726361083984377, + "step": 96500 + }, + { + "epoch": 12.88, + "grad_norm": 0.2616978585720062, + "learning_rate": 4.356266666666667e-05, + "loss": 2.2775596618652343, + "step": 96600 + }, + { + "epoch": 12.893333333333333, + "grad_norm": 0.28346607089042664, + "learning_rate": 4.3556e-05, + "loss": 2.277263488769531, + "step": 96700 + }, + { + "epoch": 12.906666666666666, + "grad_norm": 0.26759618520736694, + "learning_rate": 4.354933333333333e-05, + "loss": 2.2788565063476565, + "step": 96800 + }, + { + "epoch": 12.92, + "grad_norm": 0.25372806191444397, + "learning_rate": 4.354266666666667e-05, + "loss": 2.278957977294922, + "step": 96900 + }, + { + "epoch": 12.933333333333334, + "grad_norm": 0.2680625319480896, + "learning_rate": 4.3536000000000005e-05, + "loss": 2.2768804931640627, + "step": 97000 + }, + { + "epoch": 12.946666666666667, + "grad_norm": 0.28444984555244446, + "learning_rate": 4.352933333333333e-05, + "loss": 2.2771568298339844, + "step": 97100 + }, + { + "epoch": 12.96, + "grad_norm": 0.26102322340011597, + "learning_rate": 4.352266666666667e-05, + "loss": 2.277088928222656, + "step": 97200 + }, + { + "epoch": 12.973333333333333, + "grad_norm": 0.25774040818214417, + "learning_rate": 4.3516e-05, + "loss": 2.2783038330078127, + "step": 97300 + }, + { + "epoch": 12.986666666666666, + "grad_norm": 0.27031639218330383, + "learning_rate": 4.3509333333333334e-05, + "loss": 2.276095275878906, + "step": 97400 + }, + { + "epoch": 13.0, + "grad_norm": 0.262939989566803, + "learning_rate": 4.3502666666666666e-05, + "loss": 2.2774124145507812, + "step": 97500 + }, + { + "epoch": 13.013333333333334, + "grad_norm": 0.29187247157096863, + "learning_rate": 4.3496066666666665e-05, + "loss": 2.2387960815429686, + "step": 97600 + }, + { + "epoch": 13.026666666666667, + "grad_norm": 0.2766711413860321, + "learning_rate": 4.3489400000000004e-05, + "loss": 2.2393284606933594, + "step": 97700 + }, + { + "epoch": 13.04, + "grad_norm": 0.26698678731918335, + "learning_rate": 4.3482733333333336e-05, + "loss": 2.2385823059082033, + "step": 97800 + }, + { + "epoch": 13.053333333333333, + "grad_norm": 0.28331395983695984, + "learning_rate": 4.347606666666667e-05, + "loss": 2.23583251953125, + "step": 97900 + }, + { + "epoch": 13.066666666666666, + "grad_norm": 0.27367907762527466, + "learning_rate": 4.346940000000001e-05, + "loss": 2.2407188415527344, + "step": 98000 + }, + { + "epoch": 13.08, + "grad_norm": 0.28484055399894714, + "learning_rate": 4.346273333333333e-05, + "loss": 2.244789886474609, + "step": 98100 + }, + { + "epoch": 13.093333333333334, + "grad_norm": 0.28485485911369324, + "learning_rate": 4.3456066666666665e-05, + "loss": 2.242432861328125, + "step": 98200 + }, + { + "epoch": 13.106666666666667, + "grad_norm": 0.2772075831890106, + "learning_rate": 4.3449400000000005e-05, + "loss": 2.242548370361328, + "step": 98300 + }, + { + "epoch": 13.12, + "grad_norm": 0.2794252336025238, + "learning_rate": 4.344273333333334e-05, + "loss": 2.241208953857422, + "step": 98400 + }, + { + "epoch": 13.133333333333333, + "grad_norm": 0.2768386900424957, + "learning_rate": 4.343606666666667e-05, + "loss": 2.2418304443359376, + "step": 98500 + }, + { + "epoch": 13.146666666666667, + "grad_norm": 0.29671546816825867, + "learning_rate": 4.34294e-05, + "loss": 2.24133544921875, + "step": 98600 + }, + { + "epoch": 13.16, + "grad_norm": 0.28922173380851746, + "learning_rate": 4.342273333333334e-05, + "loss": 2.2457321166992186, + "step": 98700 + }, + { + "epoch": 13.173333333333334, + "grad_norm": 0.2911158800125122, + "learning_rate": 4.3416066666666666e-05, + "loss": 2.243005676269531, + "step": 98800 + }, + { + "epoch": 13.186666666666667, + "grad_norm": 0.2844465374946594, + "learning_rate": 4.34094e-05, + "loss": 2.2428907775878906, + "step": 98900 + }, + { + "epoch": 13.2, + "grad_norm": 0.29359185695648193, + "learning_rate": 4.340273333333334e-05, + "loss": 2.2461944580078126, + "step": 99000 + }, + { + "epoch": 13.213333333333333, + "grad_norm": 0.2992889881134033, + "learning_rate": 4.339606666666667e-05, + "loss": 2.2442695617675783, + "step": 99100 + }, + { + "epoch": 13.226666666666667, + "grad_norm": 0.28376510739326477, + "learning_rate": 4.33894e-05, + "loss": 2.2490634155273437, + "step": 99200 + }, + { + "epoch": 13.24, + "grad_norm": 0.26906511187553406, + "learning_rate": 4.3382733333333334e-05, + "loss": 2.248119354248047, + "step": 99300 + }, + { + "epoch": 13.253333333333334, + "grad_norm": 0.2935919165611267, + "learning_rate": 4.337606666666667e-05, + "loss": 2.244882354736328, + "step": 99400 + }, + { + "epoch": 13.266666666666667, + "grad_norm": 0.27943170070648193, + "learning_rate": 4.3369400000000005e-05, + "loss": 2.247407989501953, + "step": 99500 + }, + { + "epoch": 13.28, + "grad_norm": 0.27867066860198975, + "learning_rate": 4.336273333333333e-05, + "loss": 2.247802429199219, + "step": 99600 + }, + { + "epoch": 13.293333333333333, + "grad_norm": 0.29325079917907715, + "learning_rate": 4.335606666666667e-05, + "loss": 2.248299865722656, + "step": 99700 + }, + { + "epoch": 13.306666666666667, + "grad_norm": 0.276795893907547, + "learning_rate": 4.33494e-05, + "loss": 2.2507450866699217, + "step": 99800 + }, + { + "epoch": 13.32, + "grad_norm": 0.2778800427913666, + "learning_rate": 4.3342733333333334e-05, + "loss": 2.249114990234375, + "step": 99900 + }, + { + "epoch": 13.333333333333334, + "grad_norm": 0.2965216636657715, + "learning_rate": 4.3336066666666667e-05, + "loss": 2.250552520751953, + "step": 100000 + }, + { + "epoch": 13.346666666666668, + "grad_norm": 0.2709920108318329, + "learning_rate": 4.3329400000000006e-05, + "loss": 2.2509161376953126, + "step": 100100 + }, + { + "epoch": 13.36, + "grad_norm": 0.2882387638092041, + "learning_rate": 4.332273333333334e-05, + "loss": 2.2525457763671874, + "step": 100200 + }, + { + "epoch": 13.373333333333333, + "grad_norm": 0.2988874316215515, + "learning_rate": 4.331606666666667e-05, + "loss": 2.2508233642578124, + "step": 100300 + }, + { + "epoch": 13.386666666666667, + "grad_norm": 0.274324506521225, + "learning_rate": 4.33094e-05, + "loss": 2.2498133850097655, + "step": 100400 + }, + { + "epoch": 13.4, + "grad_norm": 0.29012390971183777, + "learning_rate": 4.3302733333333335e-05, + "loss": 2.252369079589844, + "step": 100500 + }, + { + "epoch": 13.413333333333334, + "grad_norm": 0.2632313668727875, + "learning_rate": 4.329606666666667e-05, + "loss": 2.2533638000488283, + "step": 100600 + }, + { + "epoch": 13.426666666666666, + "grad_norm": 0.26571324467658997, + "learning_rate": 4.32894e-05, + "loss": 2.253193054199219, + "step": 100700 + }, + { + "epoch": 13.44, + "grad_norm": 0.289485901594162, + "learning_rate": 4.328273333333334e-05, + "loss": 2.251653747558594, + "step": 100800 + }, + { + "epoch": 13.453333333333333, + "grad_norm": 0.2886415421962738, + "learning_rate": 4.327606666666667e-05, + "loss": 2.251334228515625, + "step": 100900 + }, + { + "epoch": 13.466666666666667, + "grad_norm": 0.2879510819911957, + "learning_rate": 4.32694e-05, + "loss": 2.2535078430175783, + "step": 101000 + }, + { + "epoch": 13.48, + "grad_norm": 0.2864849269390106, + "learning_rate": 4.3262733333333335e-05, + "loss": 2.2524153137207032, + "step": 101100 + }, + { + "epoch": 13.493333333333334, + "grad_norm": 0.27846381068229675, + "learning_rate": 4.325606666666667e-05, + "loss": 2.255931549072266, + "step": 101200 + }, + { + "epoch": 13.506666666666666, + "grad_norm": 0.293816477060318, + "learning_rate": 4.32494e-05, + "loss": 2.256122894287109, + "step": 101300 + }, + { + "epoch": 13.52, + "grad_norm": 0.2949255704879761, + "learning_rate": 4.324273333333333e-05, + "loss": 2.2581175231933592, + "step": 101400 + }, + { + "epoch": 13.533333333333333, + "grad_norm": 0.2826773226261139, + "learning_rate": 4.323606666666667e-05, + "loss": 2.255837097167969, + "step": 101500 + }, + { + "epoch": 13.546666666666667, + "grad_norm": 0.2743004262447357, + "learning_rate": 4.322953333333333e-05, + "loss": 2.2541908264160155, + "step": 101600 + }, + { + "epoch": 13.56, + "grad_norm": 0.2713441550731659, + "learning_rate": 4.322286666666667e-05, + "loss": 2.258142547607422, + "step": 101700 + }, + { + "epoch": 13.573333333333334, + "grad_norm": 0.283563494682312, + "learning_rate": 4.32162e-05, + "loss": 2.2553956604003904, + "step": 101800 + }, + { + "epoch": 13.586666666666666, + "grad_norm": 0.28330928087234497, + "learning_rate": 4.3209533333333334e-05, + "loss": 2.257396697998047, + "step": 101900 + }, + { + "epoch": 13.6, + "grad_norm": 0.2793908715248108, + "learning_rate": 4.3202866666666666e-05, + "loss": 2.256497344970703, + "step": 102000 + }, + { + "epoch": 13.613333333333333, + "grad_norm": 0.2900395393371582, + "learning_rate": 4.3196200000000005e-05, + "loss": 2.255678405761719, + "step": 102100 + }, + { + "epoch": 13.626666666666667, + "grad_norm": 0.27794957160949707, + "learning_rate": 4.318953333333334e-05, + "loss": 2.2580166625976563, + "step": 102200 + }, + { + "epoch": 13.64, + "grad_norm": 0.2686266303062439, + "learning_rate": 4.318286666666667e-05, + "loss": 2.260865478515625, + "step": 102300 + }, + { + "epoch": 13.653333333333332, + "grad_norm": 0.2785786986351013, + "learning_rate": 4.31762e-05, + "loss": 2.260006561279297, + "step": 102400 + }, + { + "epoch": 13.666666666666666, + "grad_norm": 0.28079360723495483, + "learning_rate": 4.3169533333333334e-05, + "loss": 2.2595237731933593, + "step": 102500 + }, + { + "epoch": 13.68, + "grad_norm": 0.3011217415332794, + "learning_rate": 4.3162866666666666e-05, + "loss": 2.2576690673828126, + "step": 102600 + }, + { + "epoch": 13.693333333333333, + "grad_norm": 0.29701074957847595, + "learning_rate": 4.3156200000000005e-05, + "loss": 2.2590093994140625, + "step": 102700 + }, + { + "epoch": 13.706666666666667, + "grad_norm": 0.284489244222641, + "learning_rate": 4.314953333333334e-05, + "loss": 2.2569615173339845, + "step": 102800 + }, + { + "epoch": 13.72, + "grad_norm": 0.29608434438705444, + "learning_rate": 4.314286666666667e-05, + "loss": 2.26008544921875, + "step": 102900 + }, + { + "epoch": 13.733333333333333, + "grad_norm": 0.2743198275566101, + "learning_rate": 4.31362e-05, + "loss": 2.2595872497558593, + "step": 103000 + }, + { + "epoch": 13.746666666666666, + "grad_norm": 0.2759169340133667, + "learning_rate": 4.3129533333333334e-05, + "loss": 2.260936737060547, + "step": 103100 + }, + { + "epoch": 13.76, + "grad_norm": 0.2984674274921417, + "learning_rate": 4.312286666666667e-05, + "loss": 2.2615948486328126, + "step": 103200 + }, + { + "epoch": 13.773333333333333, + "grad_norm": 0.27188169956207275, + "learning_rate": 4.31162e-05, + "loss": 2.2584141540527343, + "step": 103300 + }, + { + "epoch": 13.786666666666667, + "grad_norm": 0.2684420943260193, + "learning_rate": 4.310953333333334e-05, + "loss": 2.26137451171875, + "step": 103400 + }, + { + "epoch": 13.8, + "grad_norm": 0.2790769040584564, + "learning_rate": 4.310286666666667e-05, + "loss": 2.260129089355469, + "step": 103500 + }, + { + "epoch": 13.813333333333333, + "grad_norm": 0.28276488184928894, + "learning_rate": 4.30962e-05, + "loss": 2.261208038330078, + "step": 103600 + }, + { + "epoch": 13.826666666666666, + "grad_norm": 0.27551108598709106, + "learning_rate": 4.30896e-05, + "loss": 2.2652987670898437, + "step": 103700 + }, + { + "epoch": 13.84, + "grad_norm": 0.27749794721603394, + "learning_rate": 4.3082933333333334e-05, + "loss": 2.2623104858398437, + "step": 103800 + }, + { + "epoch": 13.853333333333333, + "grad_norm": 0.29130128026008606, + "learning_rate": 4.307626666666667e-05, + "loss": 2.2647268676757815, + "step": 103900 + }, + { + "epoch": 13.866666666666667, + "grad_norm": 0.27854955196380615, + "learning_rate": 4.3069600000000005e-05, + "loss": 2.2648512268066407, + "step": 104000 + }, + { + "epoch": 13.88, + "grad_norm": 0.2763110399246216, + "learning_rate": 4.306293333333333e-05, + "loss": 2.262389678955078, + "step": 104100 + }, + { + "epoch": 13.893333333333333, + "grad_norm": 0.2861855626106262, + "learning_rate": 4.305626666666667e-05, + "loss": 2.260863952636719, + "step": 104200 + }, + { + "epoch": 13.906666666666666, + "grad_norm": 0.2763212323188782, + "learning_rate": 4.30496e-05, + "loss": 2.2617811584472656, + "step": 104300 + }, + { + "epoch": 13.92, + "grad_norm": 0.27700719237327576, + "learning_rate": 4.3042933333333334e-05, + "loss": 2.2629629516601564, + "step": 104400 + }, + { + "epoch": 13.933333333333334, + "grad_norm": 0.289580374956131, + "learning_rate": 4.3036266666666667e-05, + "loss": 2.2654957580566406, + "step": 104500 + }, + { + "epoch": 13.946666666666667, + "grad_norm": 0.288922518491745, + "learning_rate": 4.3029600000000006e-05, + "loss": 2.2641279602050783, + "step": 104600 + }, + { + "epoch": 13.96, + "grad_norm": 0.2980629503726959, + "learning_rate": 4.302293333333334e-05, + "loss": 2.2678652954101564, + "step": 104700 + }, + { + "epoch": 13.973333333333333, + "grad_norm": 0.279041051864624, + "learning_rate": 4.301626666666667e-05, + "loss": 2.264940185546875, + "step": 104800 + }, + { + "epoch": 13.986666666666666, + "grad_norm": 0.2885514497756958, + "learning_rate": 4.30096e-05, + "loss": 2.264721221923828, + "step": 104900 + }, + { + "epoch": 14.0, + "grad_norm": 0.2856515347957611, + "learning_rate": 4.3002933333333335e-05, + "loss": 2.2638644409179687, + "step": 105000 + }, + { + "epoch": 14.013333333333334, + "grad_norm": 0.2933811843395233, + "learning_rate": 4.299626666666667e-05, + "loss": 2.223587951660156, + "step": 105100 + }, + { + "epoch": 14.026666666666667, + "grad_norm": 0.3170996308326721, + "learning_rate": 4.29896e-05, + "loss": 2.2215760803222655, + "step": 105200 + }, + { + "epoch": 14.04, + "grad_norm": 0.32004064321517944, + "learning_rate": 4.298293333333334e-05, + "loss": 2.2238189697265627, + "step": 105300 + }, + { + "epoch": 14.053333333333333, + "grad_norm": 0.29204490780830383, + "learning_rate": 4.297626666666667e-05, + "loss": 2.2225723266601562, + "step": 105400 + }, + { + "epoch": 14.066666666666666, + "grad_norm": 0.3062141239643097, + "learning_rate": 4.29696e-05, + "loss": 2.223246765136719, + "step": 105500 + }, + { + "epoch": 14.08, + "grad_norm": 0.30984053015708923, + "learning_rate": 4.2962933333333335e-05, + "loss": 2.2242507934570312, + "step": 105600 + }, + { + "epoch": 14.093333333333334, + "grad_norm": 0.322451651096344, + "learning_rate": 4.295626666666667e-05, + "loss": 2.2280723571777346, + "step": 105700 + }, + { + "epoch": 14.106666666666667, + "grad_norm": 0.3022569417953491, + "learning_rate": 4.29496e-05, + "loss": 2.226327209472656, + "step": 105800 + }, + { + "epoch": 14.12, + "grad_norm": 0.30784836411476135, + "learning_rate": 4.294293333333333e-05, + "loss": 2.2258816528320313, + "step": 105900 + }, + { + "epoch": 14.133333333333333, + "grad_norm": 0.30157235264778137, + "learning_rate": 4.293626666666667e-05, + "loss": 2.2270236206054688, + "step": 106000 + }, + { + "epoch": 14.146666666666667, + "grad_norm": 0.30551230907440186, + "learning_rate": 4.29296e-05, + "loss": 2.231392822265625, + "step": 106100 + }, + { + "epoch": 14.16, + "grad_norm": 0.2978629171848297, + "learning_rate": 4.2922933333333335e-05, + "loss": 2.228222198486328, + "step": 106200 + }, + { + "epoch": 14.173333333333334, + "grad_norm": 0.3043777644634247, + "learning_rate": 4.2916333333333334e-05, + "loss": 2.2319209289550783, + "step": 106300 + }, + { + "epoch": 14.186666666666667, + "grad_norm": 0.29846736788749695, + "learning_rate": 4.2909666666666674e-05, + "loss": 2.228956451416016, + "step": 106400 + }, + { + "epoch": 14.2, + "grad_norm": 0.30101996660232544, + "learning_rate": 4.2903000000000006e-05, + "loss": 2.233109588623047, + "step": 106500 + }, + { + "epoch": 14.213333333333333, + "grad_norm": 0.2905249297618866, + "learning_rate": 4.289633333333333e-05, + "loss": 2.23214111328125, + "step": 106600 + }, + { + "epoch": 14.226666666666667, + "grad_norm": 0.31870153546333313, + "learning_rate": 4.2889666666666664e-05, + "loss": 2.23111572265625, + "step": 106700 + }, + { + "epoch": 14.24, + "grad_norm": 0.31344854831695557, + "learning_rate": 4.2883e-05, + "loss": 2.2312010192871092, + "step": 106800 + }, + { + "epoch": 14.253333333333334, + "grad_norm": 0.3159984350204468, + "learning_rate": 4.2876333333333335e-05, + "loss": 2.234411315917969, + "step": 106900 + }, + { + "epoch": 14.266666666666667, + "grad_norm": 0.3049383759498596, + "learning_rate": 4.286966666666667e-05, + "loss": 2.232013854980469, + "step": 107000 + }, + { + "epoch": 14.28, + "grad_norm": 0.2840105891227722, + "learning_rate": 4.2863000000000006e-05, + "loss": 2.2319927978515626, + "step": 107100 + }, + { + "epoch": 14.293333333333333, + "grad_norm": 0.3090221881866455, + "learning_rate": 4.285633333333334e-05, + "loss": 2.235484771728516, + "step": 107200 + }, + { + "epoch": 14.306666666666667, + "grad_norm": 0.2912992835044861, + "learning_rate": 4.284966666666667e-05, + "loss": 2.233905944824219, + "step": 107300 + }, + { + "epoch": 14.32, + "grad_norm": 0.2928401231765747, + "learning_rate": 4.2843e-05, + "loss": 2.2329034423828125, + "step": 107400 + }, + { + "epoch": 14.333333333333334, + "grad_norm": 0.2940289080142975, + "learning_rate": 4.2836333333333335e-05, + "loss": 2.23254150390625, + "step": 107500 + }, + { + "epoch": 14.346666666666668, + "grad_norm": 0.3051759898662567, + "learning_rate": 4.282966666666667e-05, + "loss": 2.235914764404297, + "step": 107600 + }, + { + "epoch": 14.36, + "grad_norm": 0.29925987124443054, + "learning_rate": 4.2823e-05, + "loss": 2.236822052001953, + "step": 107700 + }, + { + "epoch": 14.373333333333333, + "grad_norm": 0.30133113265037537, + "learning_rate": 4.281633333333334e-05, + "loss": 2.237333068847656, + "step": 107800 + }, + { + "epoch": 14.386666666666667, + "grad_norm": 0.2979786694049835, + "learning_rate": 4.280966666666667e-05, + "loss": 2.2337214660644533, + "step": 107900 + }, + { + "epoch": 14.4, + "grad_norm": 0.30509302020072937, + "learning_rate": 4.2803e-05, + "loss": 2.234857177734375, + "step": 108000 + }, + { + "epoch": 14.413333333333334, + "grad_norm": 0.31245774030685425, + "learning_rate": 4.2796333333333336e-05, + "loss": 2.2369602966308593, + "step": 108100 + }, + { + "epoch": 14.426666666666666, + "grad_norm": 0.28808292746543884, + "learning_rate": 4.278966666666667e-05, + "loss": 2.2391943359375, + "step": 108200 + }, + { + "epoch": 14.44, + "grad_norm": 0.3327585756778717, + "learning_rate": 4.2783066666666674e-05, + "loss": 2.2387188720703124, + "step": 108300 + }, + { + "epoch": 14.453333333333333, + "grad_norm": 0.3101474940776825, + "learning_rate": 4.27764e-05, + "loss": 2.2376824951171876, + "step": 108400 + }, + { + "epoch": 14.466666666666667, + "grad_norm": 0.2869791090488434, + "learning_rate": 4.276973333333333e-05, + "loss": 2.237794189453125, + "step": 108500 + }, + { + "epoch": 14.48, + "grad_norm": 0.3071404695510864, + "learning_rate": 4.276306666666667e-05, + "loss": 2.239633331298828, + "step": 108600 + }, + { + "epoch": 14.493333333333334, + "grad_norm": 0.2966044843196869, + "learning_rate": 4.27564e-05, + "loss": 2.2403135681152344, + "step": 108700 + }, + { + "epoch": 14.506666666666666, + "grad_norm": 0.2996501624584198, + "learning_rate": 4.2749733333333335e-05, + "loss": 2.240699920654297, + "step": 108800 + }, + { + "epoch": 14.52, + "grad_norm": 0.3051213026046753, + "learning_rate": 4.274306666666667e-05, + "loss": 2.241038360595703, + "step": 108900 + }, + { + "epoch": 14.533333333333333, + "grad_norm": 0.3177984952926636, + "learning_rate": 4.2736400000000006e-05, + "loss": 2.241685485839844, + "step": 109000 + }, + { + "epoch": 14.546666666666667, + "grad_norm": 0.31197378039360046, + "learning_rate": 4.272973333333333e-05, + "loss": 2.2384878540039064, + "step": 109100 + }, + { + "epoch": 14.56, + "grad_norm": 0.3031216263771057, + "learning_rate": 4.2723066666666664e-05, + "loss": 2.240026397705078, + "step": 109200 + }, + { + "epoch": 14.573333333333334, + "grad_norm": 0.2918401062488556, + "learning_rate": 4.27164e-05, + "loss": 2.2429275512695312, + "step": 109300 + }, + { + "epoch": 14.586666666666666, + "grad_norm": 0.30749937891960144, + "learning_rate": 4.2709733333333335e-05, + "loss": 2.2420500183105467, + "step": 109400 + }, + { + "epoch": 14.6, + "grad_norm": 0.30055928230285645, + "learning_rate": 4.270306666666667e-05, + "loss": 2.2444825744628907, + "step": 109500 + }, + { + "epoch": 14.613333333333333, + "grad_norm": 0.3009972870349884, + "learning_rate": 4.26964e-05, + "loss": 2.2414918518066407, + "step": 109600 + }, + { + "epoch": 14.626666666666667, + "grad_norm": 0.29409679770469666, + "learning_rate": 4.268973333333334e-05, + "loss": 2.243094940185547, + "step": 109700 + }, + { + "epoch": 14.64, + "grad_norm": 0.3000005781650543, + "learning_rate": 4.268306666666667e-05, + "loss": 2.243612060546875, + "step": 109800 + }, + { + "epoch": 14.653333333333332, + "grad_norm": 0.31389036774635315, + "learning_rate": 4.26764e-05, + "loss": 2.247608337402344, + "step": 109900 + }, + { + "epoch": 14.666666666666666, + "grad_norm": 0.30435290932655334, + "learning_rate": 4.2669733333333336e-05, + "loss": 2.2452850341796875, + "step": 110000 + }, + { + "epoch": 14.68, + "grad_norm": 0.31581467390060425, + "learning_rate": 4.266306666666667e-05, + "loss": 2.2423834228515624, + "step": 110100 + }, + { + "epoch": 14.693333333333333, + "grad_norm": 0.30677202343940735, + "learning_rate": 4.26564e-05, + "loss": 2.2448631286621095, + "step": 110200 + }, + { + "epoch": 14.706666666666667, + "grad_norm": 0.2914011776447296, + "learning_rate": 4.264973333333333e-05, + "loss": 2.2458355712890623, + "step": 110300 + }, + { + "epoch": 14.72, + "grad_norm": 0.30041709542274475, + "learning_rate": 4.264313333333333e-05, + "loss": 2.2454510498046876, + "step": 110400 + }, + { + "epoch": 14.733333333333333, + "grad_norm": 0.29341447353363037, + "learning_rate": 4.263646666666667e-05, + "loss": 2.2464495849609376, + "step": 110500 + }, + { + "epoch": 14.746666666666666, + "grad_norm": 0.2851749658584595, + "learning_rate": 4.26298e-05, + "loss": 2.2466586303710936, + "step": 110600 + }, + { + "epoch": 14.76, + "grad_norm": 0.297852486371994, + "learning_rate": 4.2623133333333335e-05, + "loss": 2.2463618469238282, + "step": 110700 + }, + { + "epoch": 14.773333333333333, + "grad_norm": 0.2981916666030884, + "learning_rate": 4.2616466666666674e-05, + "loss": 2.2474107360839843, + "step": 110800 + }, + { + "epoch": 14.786666666666667, + "grad_norm": 0.29726073145866394, + "learning_rate": 4.26098e-05, + "loss": 2.2470823669433595, + "step": 110900 + }, + { + "epoch": 14.8, + "grad_norm": 0.29146844148635864, + "learning_rate": 4.260313333333333e-05, + "loss": 2.248656005859375, + "step": 111000 + }, + { + "epoch": 14.813333333333333, + "grad_norm": 0.30146679282188416, + "learning_rate": 4.259646666666667e-05, + "loss": 2.2492645263671873, + "step": 111100 + }, + { + "epoch": 14.826666666666666, + "grad_norm": 0.30518659949302673, + "learning_rate": 4.2589800000000003e-05, + "loss": 2.2455149841308595, + "step": 111200 + }, + { + "epoch": 14.84, + "grad_norm": 0.2941482663154602, + "learning_rate": 4.2583133333333336e-05, + "loss": 2.247636413574219, + "step": 111300 + }, + { + "epoch": 14.853333333333333, + "grad_norm": 0.3071843981742859, + "learning_rate": 4.257646666666667e-05, + "loss": 2.249114227294922, + "step": 111400 + }, + { + "epoch": 14.866666666666667, + "grad_norm": 0.2867000102996826, + "learning_rate": 4.256980000000001e-05, + "loss": 2.244889831542969, + "step": 111500 + }, + { + "epoch": 14.88, + "grad_norm": 0.29321691393852234, + "learning_rate": 4.256313333333333e-05, + "loss": 2.2497218322753905, + "step": 111600 + }, + { + "epoch": 14.893333333333333, + "grad_norm": 0.28539395332336426, + "learning_rate": 4.2556466666666665e-05, + "loss": 2.2499490356445313, + "step": 111700 + }, + { + "epoch": 14.906666666666666, + "grad_norm": 0.2966148257255554, + "learning_rate": 4.2549800000000004e-05, + "loss": 2.251126708984375, + "step": 111800 + }, + { + "epoch": 14.92, + "grad_norm": 0.30318519473075867, + "learning_rate": 4.2543133333333336e-05, + "loss": 2.251923370361328, + "step": 111900 + }, + { + "epoch": 14.933333333333334, + "grad_norm": 0.30401572585105896, + "learning_rate": 4.253646666666667e-05, + "loss": 2.247659912109375, + "step": 112000 + }, + { + "epoch": 14.946666666666667, + "grad_norm": 0.42713233828544617, + "learning_rate": 4.25298e-05, + "loss": 2.2480320739746094, + "step": 112100 + }, + { + "epoch": 14.96, + "grad_norm": 0.3023832440376282, + "learning_rate": 4.252313333333334e-05, + "loss": 2.252263946533203, + "step": 112200 + }, + { + "epoch": 14.973333333333333, + "grad_norm": 0.31739455461502075, + "learning_rate": 4.251646666666667e-05, + "loss": 2.250135040283203, + "step": 112300 + }, + { + "epoch": 14.986666666666666, + "grad_norm": 0.2998296618461609, + "learning_rate": 4.25098e-05, + "loss": 2.250568542480469, + "step": 112400 + }, + { + "epoch": 15.0, + "grad_norm": 0.3116128146648407, + "learning_rate": 4.25032e-05, + "loss": 2.254090118408203, + "step": 112500 + }, + { + "epoch": 15.013333333333334, + "grad_norm": 0.324983686208725, + "learning_rate": 4.2496533333333336e-05, + "loss": 2.2063966369628907, + "step": 112600 + }, + { + "epoch": 15.026666666666667, + "grad_norm": 0.32630521059036255, + "learning_rate": 4.248986666666667e-05, + "loss": 2.204698486328125, + "step": 112700 + }, + { + "epoch": 15.04, + "grad_norm": 0.33141613006591797, + "learning_rate": 4.24832e-05, + "loss": 2.2065577697753906, + "step": 112800 + }, + { + "epoch": 15.053333333333333, + "grad_norm": 0.29963183403015137, + "learning_rate": 4.247653333333333e-05, + "loss": 2.208046569824219, + "step": 112900 + }, + { + "epoch": 15.066666666666666, + "grad_norm": 0.30262288451194763, + "learning_rate": 4.246986666666667e-05, + "loss": 2.208232574462891, + "step": 113000 + }, + { + "epoch": 15.08, + "grad_norm": 0.31407952308654785, + "learning_rate": 4.2463200000000004e-05, + "loss": 2.2060285949707032, + "step": 113100 + }, + { + "epoch": 15.093333333333334, + "grad_norm": 0.3279408812522888, + "learning_rate": 4.2456533333333336e-05, + "loss": 2.2077986145019532, + "step": 113200 + }, + { + "epoch": 15.106666666666667, + "grad_norm": 0.3157520592212677, + "learning_rate": 4.244986666666667e-05, + "loss": 2.2095164489746093, + "step": 113300 + }, + { + "epoch": 15.12, + "grad_norm": 0.31880176067352295, + "learning_rate": 4.24432e-05, + "loss": 2.210868377685547, + "step": 113400 + }, + { + "epoch": 15.133333333333333, + "grad_norm": 0.31537145376205444, + "learning_rate": 4.243653333333333e-05, + "loss": 2.208413391113281, + "step": 113500 + }, + { + "epoch": 15.146666666666667, + "grad_norm": 0.34451282024383545, + "learning_rate": 4.2429866666666665e-05, + "loss": 2.216689453125, + "step": 113600 + }, + { + "epoch": 15.16, + "grad_norm": 0.343150794506073, + "learning_rate": 4.2423200000000004e-05, + "loss": 2.2148944091796876, + "step": 113700 + }, + { + "epoch": 15.173333333333334, + "grad_norm": 0.33272266387939453, + "learning_rate": 4.2416533333333336e-05, + "loss": 2.2134307861328124, + "step": 113800 + }, + { + "epoch": 15.186666666666667, + "grad_norm": 0.3378112018108368, + "learning_rate": 4.240986666666667e-05, + "loss": 2.2136904907226564, + "step": 113900 + }, + { + "epoch": 15.2, + "grad_norm": 0.31077101826667786, + "learning_rate": 4.24032e-05, + "loss": 2.2134745788574217, + "step": 114000 + }, + { + "epoch": 15.213333333333333, + "grad_norm": 0.32572445273399353, + "learning_rate": 4.239653333333334e-05, + "loss": 2.217989654541016, + "step": 114100 + }, + { + "epoch": 15.226666666666667, + "grad_norm": 0.3158329725265503, + "learning_rate": 4.2389866666666665e-05, + "loss": 2.213584442138672, + "step": 114200 + }, + { + "epoch": 15.24, + "grad_norm": 0.3473946750164032, + "learning_rate": 4.23832e-05, + "loss": 2.212930450439453, + "step": 114300 + }, + { + "epoch": 15.253333333333334, + "grad_norm": 0.32019126415252686, + "learning_rate": 4.237653333333334e-05, + "loss": 2.2173892211914064, + "step": 114400 + }, + { + "epoch": 15.266666666666667, + "grad_norm": 0.31340309977531433, + "learning_rate": 4.236986666666667e-05, + "loss": 2.2174838256835936, + "step": 114500 + }, + { + "epoch": 15.28, + "grad_norm": 0.33847081661224365, + "learning_rate": 4.236326666666667e-05, + "loss": 2.21783203125, + "step": 114600 + }, + { + "epoch": 15.293333333333333, + "grad_norm": 0.32491597533226013, + "learning_rate": 4.23566e-05, + "loss": 2.2157107543945314, + "step": 114700 + }, + { + "epoch": 15.306666666666667, + "grad_norm": 0.3161472976207733, + "learning_rate": 4.234993333333333e-05, + "loss": 2.2165769958496093, + "step": 114800 + }, + { + "epoch": 15.32, + "grad_norm": 0.35170355439186096, + "learning_rate": 4.234326666666667e-05, + "loss": 2.217754211425781, + "step": 114900 + }, + { + "epoch": 15.333333333333334, + "grad_norm": 0.3464552164077759, + "learning_rate": 4.2336600000000004e-05, + "loss": 2.219124450683594, + "step": 115000 + }, + { + "epoch": 15.346666666666668, + "grad_norm": 0.2998979389667511, + "learning_rate": 4.2329933333333336e-05, + "loss": 2.218946075439453, + "step": 115100 + }, + { + "epoch": 15.36, + "grad_norm": 0.33624839782714844, + "learning_rate": 4.232326666666667e-05, + "loss": 2.2174595642089843, + "step": 115200 + }, + { + "epoch": 15.373333333333333, + "grad_norm": 0.322299987077713, + "learning_rate": 4.23166e-05, + "loss": 2.2204608154296874, + "step": 115300 + }, + { + "epoch": 15.386666666666667, + "grad_norm": 0.3346404731273651, + "learning_rate": 4.230993333333333e-05, + "loss": 2.220567169189453, + "step": 115400 + }, + { + "epoch": 15.4, + "grad_norm": 0.3098982870578766, + "learning_rate": 4.230326666666667e-05, + "loss": 2.2207266235351564, + "step": 115500 + }, + { + "epoch": 15.413333333333334, + "grad_norm": 0.31962502002716064, + "learning_rate": 4.2296600000000004e-05, + "loss": 2.2188589477539065, + "step": 115600 + }, + { + "epoch": 15.426666666666666, + "grad_norm": 0.3353968560695648, + "learning_rate": 4.2289933333333337e-05, + "loss": 2.2199302673339845, + "step": 115700 + }, + { + "epoch": 15.44, + "grad_norm": 0.30936282873153687, + "learning_rate": 4.228326666666667e-05, + "loss": 2.2257254028320315, + "step": 115800 + }, + { + "epoch": 15.453333333333333, + "grad_norm": 0.30855420231819153, + "learning_rate": 4.22766e-05, + "loss": 2.2245237731933596, + "step": 115900 + }, + { + "epoch": 15.466666666666667, + "grad_norm": 0.3352759778499603, + "learning_rate": 4.226993333333333e-05, + "loss": 2.2239312744140625, + "step": 116000 + }, + { + "epoch": 15.48, + "grad_norm": 0.34826841950416565, + "learning_rate": 4.2263266666666666e-05, + "loss": 2.222242889404297, + "step": 116100 + }, + { + "epoch": 15.493333333333334, + "grad_norm": 0.30927276611328125, + "learning_rate": 4.2256600000000005e-05, + "loss": 2.22566650390625, + "step": 116200 + }, + { + "epoch": 15.506666666666666, + "grad_norm": 0.3213530480861664, + "learning_rate": 4.224993333333334e-05, + "loss": 2.2234091186523437, + "step": 116300 + }, + { + "epoch": 15.52, + "grad_norm": 0.3208419382572174, + "learning_rate": 4.224326666666667e-05, + "loss": 2.221222686767578, + "step": 116400 + }, + { + "epoch": 15.533333333333333, + "grad_norm": 0.3189323842525482, + "learning_rate": 4.22366e-05, + "loss": 2.22309814453125, + "step": 116500 + }, + { + "epoch": 15.546666666666667, + "grad_norm": 0.32015132904052734, + "learning_rate": 4.222993333333334e-05, + "loss": 2.224478302001953, + "step": 116600 + }, + { + "epoch": 15.56, + "grad_norm": 0.3235848844051361, + "learning_rate": 4.222333333333334e-05, + "loss": 2.22633544921875, + "step": 116700 + }, + { + "epoch": 15.573333333333334, + "grad_norm": 0.31360262632369995, + "learning_rate": 4.221666666666667e-05, + "loss": 2.223683624267578, + "step": 116800 + }, + { + "epoch": 15.586666666666666, + "grad_norm": 0.3163805603981018, + "learning_rate": 4.221e-05, + "loss": 2.226057891845703, + "step": 116900 + }, + { + "epoch": 15.6, + "grad_norm": 0.3102477192878723, + "learning_rate": 4.2203333333333336e-05, + "loss": 2.228474578857422, + "step": 117000 + }, + { + "epoch": 15.613333333333333, + "grad_norm": 0.30548936128616333, + "learning_rate": 4.219666666666667e-05, + "loss": 2.2281097412109374, + "step": 117100 + }, + { + "epoch": 15.626666666666667, + "grad_norm": 0.33137276768684387, + "learning_rate": 4.219e-05, + "loss": 2.227537841796875, + "step": 117200 + }, + { + "epoch": 15.64, + "grad_norm": 0.32980573177337646, + "learning_rate": 4.218333333333333e-05, + "loss": 2.2250877380371095, + "step": 117300 + }, + { + "epoch": 15.653333333333332, + "grad_norm": 0.34230107069015503, + "learning_rate": 4.217666666666667e-05, + "loss": 2.2286297607421877, + "step": 117400 + }, + { + "epoch": 15.666666666666666, + "grad_norm": 0.31690576672554016, + "learning_rate": 4.2170000000000005e-05, + "loss": 2.228667907714844, + "step": 117500 + }, + { + "epoch": 15.68, + "grad_norm": 0.32873931527137756, + "learning_rate": 4.216333333333334e-05, + "loss": 2.229040222167969, + "step": 117600 + }, + { + "epoch": 15.693333333333333, + "grad_norm": 0.31361329555511475, + "learning_rate": 4.215666666666667e-05, + "loss": 2.229720153808594, + "step": 117700 + }, + { + "epoch": 15.706666666666667, + "grad_norm": 0.30917590856552124, + "learning_rate": 4.215e-05, + "loss": 2.2290550231933595, + "step": 117800 + }, + { + "epoch": 15.72, + "grad_norm": 0.31262990832328796, + "learning_rate": 4.2143333333333334e-05, + "loss": 2.229103698730469, + "step": 117900 + }, + { + "epoch": 15.733333333333333, + "grad_norm": 0.32043468952178955, + "learning_rate": 4.2136666666666666e-05, + "loss": 2.2294845581054688, + "step": 118000 + }, + { + "epoch": 15.746666666666666, + "grad_norm": 0.31594914197921753, + "learning_rate": 4.2130000000000005e-05, + "loss": 2.2269740295410156, + "step": 118100 + }, + { + "epoch": 15.76, + "grad_norm": 0.3129127025604248, + "learning_rate": 4.212333333333334e-05, + "loss": 2.232552947998047, + "step": 118200 + }, + { + "epoch": 15.773333333333333, + "grad_norm": 0.3038434088230133, + "learning_rate": 4.211666666666667e-05, + "loss": 2.232527770996094, + "step": 118300 + }, + { + "epoch": 15.786666666666667, + "grad_norm": 0.3090043067932129, + "learning_rate": 4.211e-05, + "loss": 2.229136505126953, + "step": 118400 + }, + { + "epoch": 15.8, + "grad_norm": 0.32611995935440063, + "learning_rate": 4.2103333333333334e-05, + "loss": 2.2315130615234375, + "step": 118500 + }, + { + "epoch": 15.813333333333333, + "grad_norm": 0.31808626651763916, + "learning_rate": 4.2096666666666666e-05, + "loss": 2.2304783630371094, + "step": 118600 + }, + { + "epoch": 15.826666666666666, + "grad_norm": 0.3187323808670044, + "learning_rate": 4.2090066666666665e-05, + "loss": 2.2350709533691404, + "step": 118700 + }, + { + "epoch": 15.84, + "grad_norm": 0.3571641445159912, + "learning_rate": 4.20834e-05, + "loss": 2.231884002685547, + "step": 118800 + }, + { + "epoch": 15.853333333333333, + "grad_norm": 0.3414985239505768, + "learning_rate": 4.207673333333334e-05, + "loss": 2.2351057434082033, + "step": 118900 + }, + { + "epoch": 15.866666666666667, + "grad_norm": 0.3118877112865448, + "learning_rate": 4.207006666666667e-05, + "loss": 2.231129150390625, + "step": 119000 + }, + { + "epoch": 15.88, + "grad_norm": 0.319547176361084, + "learning_rate": 4.20634e-05, + "loss": 2.234002685546875, + "step": 119100 + }, + { + "epoch": 15.893333333333333, + "grad_norm": 0.3334439992904663, + "learning_rate": 4.205673333333334e-05, + "loss": 2.236300201416016, + "step": 119200 + }, + { + "epoch": 15.906666666666666, + "grad_norm": 0.31229543685913086, + "learning_rate": 4.205006666666667e-05, + "loss": 2.2334967041015625, + "step": 119300 + }, + { + "epoch": 15.92, + "grad_norm": 0.3132321834564209, + "learning_rate": 4.20434e-05, + "loss": 2.2348391723632814, + "step": 119400 + }, + { + "epoch": 15.933333333333334, + "grad_norm": 0.3149288594722748, + "learning_rate": 4.203673333333333e-05, + "loss": 2.2346974182128907, + "step": 119500 + }, + { + "epoch": 15.946666666666667, + "grad_norm": 0.31693968176841736, + "learning_rate": 4.203006666666667e-05, + "loss": 2.233512268066406, + "step": 119600 + }, + { + "epoch": 15.96, + "grad_norm": 0.3221350312232971, + "learning_rate": 4.20234e-05, + "loss": 2.2346560668945314, + "step": 119700 + }, + { + "epoch": 15.973333333333333, + "grad_norm": 0.3314872682094574, + "learning_rate": 4.2016733333333334e-05, + "loss": 2.2337542724609376, + "step": 119800 + }, + { + "epoch": 15.986666666666666, + "grad_norm": 0.2964302599430084, + "learning_rate": 4.201006666666667e-05, + "loss": 2.235452423095703, + "step": 119900 + }, + { + "epoch": 16.0, + "grad_norm": 0.30500471591949463, + "learning_rate": 4.2003400000000005e-05, + "loss": 2.2356527709960936, + "step": 120000 + }, + { + "epoch": 16.013333333333332, + "grad_norm": 0.33137601613998413, + "learning_rate": 4.199673333333334e-05, + "loss": 2.191378479003906, + "step": 120100 + }, + { + "epoch": 16.026666666666667, + "grad_norm": 0.3438156843185425, + "learning_rate": 4.199006666666667e-05, + "loss": 2.1892555236816404, + "step": 120200 + }, + { + "epoch": 16.04, + "grad_norm": 0.3476172983646393, + "learning_rate": 4.19834e-05, + "loss": 2.185308380126953, + "step": 120300 + }, + { + "epoch": 16.053333333333335, + "grad_norm": 0.3344581723213196, + "learning_rate": 4.1976733333333334e-05, + "loss": 2.1885577392578126, + "step": 120400 + }, + { + "epoch": 16.066666666666666, + "grad_norm": 0.3536999225616455, + "learning_rate": 4.1970066666666666e-05, + "loss": 2.190690002441406, + "step": 120500 + }, + { + "epoch": 16.08, + "grad_norm": 0.327150821685791, + "learning_rate": 4.1963400000000006e-05, + "loss": 2.192127532958984, + "step": 120600 + }, + { + "epoch": 16.093333333333334, + "grad_norm": 0.34501543641090393, + "learning_rate": 4.195673333333334e-05, + "loss": 2.1904525756835938, + "step": 120700 + }, + { + "epoch": 16.106666666666666, + "grad_norm": 0.33292821049690247, + "learning_rate": 4.195006666666667e-05, + "loss": 2.1916839599609377, + "step": 120800 + }, + { + "epoch": 16.12, + "grad_norm": 0.33096081018447876, + "learning_rate": 4.194346666666667e-05, + "loss": 2.1918682861328125, + "step": 120900 + }, + { + "epoch": 16.133333333333333, + "grad_norm": 0.342189759016037, + "learning_rate": 4.19368e-05, + "loss": 2.194641418457031, + "step": 121000 + }, + { + "epoch": 16.14666666666667, + "grad_norm": 0.3368053436279297, + "learning_rate": 4.193013333333334e-05, + "loss": 2.1912602233886718, + "step": 121100 + }, + { + "epoch": 16.16, + "grad_norm": 0.32896357774734497, + "learning_rate": 4.1923466666666666e-05, + "loss": 2.191945343017578, + "step": 121200 + }, + { + "epoch": 16.173333333333332, + "grad_norm": 0.3394027352333069, + "learning_rate": 4.19168e-05, + "loss": 2.1953201293945312, + "step": 121300 + }, + { + "epoch": 16.186666666666667, + "grad_norm": 0.3458661735057831, + "learning_rate": 4.191013333333334e-05, + "loss": 2.191509246826172, + "step": 121400 + }, + { + "epoch": 16.2, + "grad_norm": 0.3341262936592102, + "learning_rate": 4.190346666666667e-05, + "loss": 2.196238708496094, + "step": 121500 + }, + { + "epoch": 16.213333333333335, + "grad_norm": 0.3546558916568756, + "learning_rate": 4.18968e-05, + "loss": 2.197465515136719, + "step": 121600 + }, + { + "epoch": 16.226666666666667, + "grad_norm": 0.322582483291626, + "learning_rate": 4.1890133333333334e-05, + "loss": 2.19465576171875, + "step": 121700 + }, + { + "epoch": 16.24, + "grad_norm": 0.33463671803474426, + "learning_rate": 4.188346666666667e-05, + "loss": 2.1976629638671876, + "step": 121800 + }, + { + "epoch": 16.253333333333334, + "grad_norm": 0.3399517834186554, + "learning_rate": 4.18768e-05, + "loss": 2.1987896728515626, + "step": 121900 + }, + { + "epoch": 16.266666666666666, + "grad_norm": 0.3466789722442627, + "learning_rate": 4.187013333333333e-05, + "loss": 2.197012939453125, + "step": 122000 + }, + { + "epoch": 16.28, + "grad_norm": 0.3435020446777344, + "learning_rate": 4.186346666666667e-05, + "loss": 2.1984803771972654, + "step": 122100 + }, + { + "epoch": 16.293333333333333, + "grad_norm": 0.33346107602119446, + "learning_rate": 4.18568e-05, + "loss": 2.2026689147949217, + "step": 122200 + }, + { + "epoch": 16.306666666666665, + "grad_norm": 0.3218962550163269, + "learning_rate": 4.1850133333333334e-05, + "loss": 2.199356689453125, + "step": 122300 + }, + { + "epoch": 16.32, + "grad_norm": 0.35545775294303894, + "learning_rate": 4.184346666666667e-05, + "loss": 2.2024908447265625, + "step": 122400 + }, + { + "epoch": 16.333333333333332, + "grad_norm": 0.33396291732788086, + "learning_rate": 4.1836800000000006e-05, + "loss": 2.198677215576172, + "step": 122500 + }, + { + "epoch": 16.346666666666668, + "grad_norm": 0.3423805236816406, + "learning_rate": 4.183013333333334e-05, + "loss": 2.203605041503906, + "step": 122600 + }, + { + "epoch": 16.36, + "grad_norm": 0.3493040204048157, + "learning_rate": 4.1823466666666664e-05, + "loss": 2.2042369079589843, + "step": 122700 + }, + { + "epoch": 16.373333333333335, + "grad_norm": 0.32711881399154663, + "learning_rate": 4.18168e-05, + "loss": 2.20152099609375, + "step": 122800 + }, + { + "epoch": 16.386666666666667, + "grad_norm": 0.3408143222332001, + "learning_rate": 4.18102e-05, + "loss": 2.20054931640625, + "step": 122900 + }, + { + "epoch": 16.4, + "grad_norm": 0.3470470607280731, + "learning_rate": 4.1803533333333334e-05, + "loss": 2.203308410644531, + "step": 123000 + }, + { + "epoch": 16.413333333333334, + "grad_norm": 0.3393367826938629, + "learning_rate": 4.1796866666666666e-05, + "loss": 2.203702392578125, + "step": 123100 + }, + { + "epoch": 16.426666666666666, + "grad_norm": 0.3487272560596466, + "learning_rate": 4.17902e-05, + "loss": 2.207674713134766, + "step": 123200 + }, + { + "epoch": 16.44, + "grad_norm": 0.31673720479011536, + "learning_rate": 4.178353333333334e-05, + "loss": 2.2054902648925783, + "step": 123300 + }, + { + "epoch": 16.453333333333333, + "grad_norm": 0.34609508514404297, + "learning_rate": 4.177686666666667e-05, + "loss": 2.2037092590332032, + "step": 123400 + }, + { + "epoch": 16.466666666666665, + "grad_norm": 0.3488747477531433, + "learning_rate": 4.17702e-05, + "loss": 2.2059857177734377, + "step": 123500 + }, + { + "epoch": 16.48, + "grad_norm": 0.34992608428001404, + "learning_rate": 4.176353333333334e-05, + "loss": 2.205555877685547, + "step": 123600 + }, + { + "epoch": 16.493333333333332, + "grad_norm": 0.3459303677082062, + "learning_rate": 4.1756866666666667e-05, + "loss": 2.2075044250488283, + "step": 123700 + }, + { + "epoch": 16.506666666666668, + "grad_norm": 0.34837567806243896, + "learning_rate": 4.17502e-05, + "loss": 2.2081297302246092, + "step": 123800 + }, + { + "epoch": 16.52, + "grad_norm": 0.3326612710952759, + "learning_rate": 4.174353333333334e-05, + "loss": 2.2074159240722655, + "step": 123900 + }, + { + "epoch": 16.533333333333335, + "grad_norm": 0.343517929315567, + "learning_rate": 4.173686666666667e-05, + "loss": 2.205991058349609, + "step": 124000 + }, + { + "epoch": 16.546666666666667, + "grad_norm": 0.36404263973236084, + "learning_rate": 4.17302e-05, + "loss": 2.2090086364746093, + "step": 124100 + }, + { + "epoch": 16.56, + "grad_norm": 0.3330126404762268, + "learning_rate": 4.1723533333333335e-05, + "loss": 2.207509002685547, + "step": 124200 + }, + { + "epoch": 16.573333333333334, + "grad_norm": 0.3251371681690216, + "learning_rate": 4.1716866666666674e-05, + "loss": 2.2095204162597657, + "step": 124300 + }, + { + "epoch": 16.586666666666666, + "grad_norm": 0.3344780206680298, + "learning_rate": 4.17102e-05, + "loss": 2.2100448608398438, + "step": 124400 + }, + { + "epoch": 16.6, + "grad_norm": 0.3297218978404999, + "learning_rate": 4.170353333333333e-05, + "loss": 2.211772613525391, + "step": 124500 + }, + { + "epoch": 16.613333333333333, + "grad_norm": 0.32694414258003235, + "learning_rate": 4.169686666666667e-05, + "loss": 2.2118515014648437, + "step": 124600 + }, + { + "epoch": 16.626666666666665, + "grad_norm": 0.3583586812019348, + "learning_rate": 4.16902e-05, + "loss": 2.208268737792969, + "step": 124700 + }, + { + "epoch": 16.64, + "grad_norm": 0.3415539562702179, + "learning_rate": 4.1683533333333335e-05, + "loss": 2.210078125, + "step": 124800 + }, + { + "epoch": 16.653333333333332, + "grad_norm": 0.3332410752773285, + "learning_rate": 4.167686666666667e-05, + "loss": 2.209375915527344, + "step": 124900 + }, + { + "epoch": 16.666666666666668, + "grad_norm": 0.3438263237476349, + "learning_rate": 4.1670200000000006e-05, + "loss": 2.213215789794922, + "step": 125000 + }, + { + "epoch": 16.68, + "grad_norm": 0.33631184697151184, + "learning_rate": 4.1663600000000005e-05, + "loss": 2.2115354919433594, + "step": 125100 + }, + { + "epoch": 16.693333333333335, + "grad_norm": 0.33590415120124817, + "learning_rate": 4.165693333333334e-05, + "loss": 2.2166558837890626, + "step": 125200 + }, + { + "epoch": 16.706666666666667, + "grad_norm": 0.33931294083595276, + "learning_rate": 4.165026666666667e-05, + "loss": 2.2135350036621095, + "step": 125300 + }, + { + "epoch": 16.72, + "grad_norm": 0.3370099365711212, + "learning_rate": 4.16436e-05, + "loss": 2.2108302307128906, + "step": 125400 + }, + { + "epoch": 16.733333333333334, + "grad_norm": 0.3390389680862427, + "learning_rate": 4.1636933333333335e-05, + "loss": 2.2139320373535156, + "step": 125500 + }, + { + "epoch": 16.746666666666666, + "grad_norm": 0.33029329776763916, + "learning_rate": 4.163026666666667e-05, + "loss": 2.2104266357421873, + "step": 125600 + }, + { + "epoch": 16.76, + "grad_norm": 0.3493773937225342, + "learning_rate": 4.16236e-05, + "loss": 2.2143878173828124, + "step": 125700 + }, + { + "epoch": 16.773333333333333, + "grad_norm": 0.3342851400375366, + "learning_rate": 4.161693333333334e-05, + "loss": 2.2172373962402343, + "step": 125800 + }, + { + "epoch": 16.786666666666665, + "grad_norm": 0.33905649185180664, + "learning_rate": 4.161026666666667e-05, + "loss": 2.2138526916503904, + "step": 125900 + }, + { + "epoch": 16.8, + "grad_norm": 0.33980846405029297, + "learning_rate": 4.16036e-05, + "loss": 2.2161383056640624, + "step": 126000 + }, + { + "epoch": 16.813333333333333, + "grad_norm": 0.3446345627307892, + "learning_rate": 4.1596933333333335e-05, + "loss": 2.214365234375, + "step": 126100 + }, + { + "epoch": 16.826666666666668, + "grad_norm": 0.32393285632133484, + "learning_rate": 4.159026666666667e-05, + "loss": 2.2161341857910157, + "step": 126200 + }, + { + "epoch": 16.84, + "grad_norm": 0.32899361848831177, + "learning_rate": 4.15836e-05, + "loss": 2.2143894958496095, + "step": 126300 + }, + { + "epoch": 16.85333333333333, + "grad_norm": 0.33458665013313293, + "learning_rate": 4.157693333333333e-05, + "loss": 2.2169989013671874, + "step": 126400 + }, + { + "epoch": 16.866666666666667, + "grad_norm": 0.34240177273750305, + "learning_rate": 4.157026666666667e-05, + "loss": 2.216192169189453, + "step": 126500 + }, + { + "epoch": 16.88, + "grad_norm": 0.33219918608665466, + "learning_rate": 4.15636e-05, + "loss": 2.216274871826172, + "step": 126600 + }, + { + "epoch": 16.893333333333334, + "grad_norm": 0.3476578891277313, + "learning_rate": 4.1556933333333335e-05, + "loss": 2.2149917602539064, + "step": 126700 + }, + { + "epoch": 16.906666666666666, + "grad_norm": 0.3385222852230072, + "learning_rate": 4.155026666666667e-05, + "loss": 2.21719482421875, + "step": 126800 + }, + { + "epoch": 16.92, + "grad_norm": 0.3350334167480469, + "learning_rate": 4.1543600000000007e-05, + "loss": 2.2180024719238283, + "step": 126900 + }, + { + "epoch": 16.933333333333334, + "grad_norm": 0.3438946604728699, + "learning_rate": 4.153693333333333e-05, + "loss": 2.217221221923828, + "step": 127000 + }, + { + "epoch": 16.946666666666665, + "grad_norm": 0.35046643018722534, + "learning_rate": 4.153033333333334e-05, + "loss": 2.220390625, + "step": 127100 + }, + { + "epoch": 16.96, + "grad_norm": 0.34361323714256287, + "learning_rate": 4.1523666666666663e-05, + "loss": 2.216808013916016, + "step": 127200 + }, + { + "epoch": 16.973333333333333, + "grad_norm": 0.32188111543655396, + "learning_rate": 4.1517e-05, + "loss": 2.2157418823242185, + "step": 127300 + }, + { + "epoch": 16.986666666666668, + "grad_norm": 0.32064762711524963, + "learning_rate": 4.1510333333333335e-05, + "loss": 2.2176025390625, + "step": 127400 + }, + { + "epoch": 17.0, + "grad_norm": 0.3368901014328003, + "learning_rate": 4.150366666666667e-05, + "loss": 2.219560241699219, + "step": 127500 + }, + { + "epoch": 17.013333333333332, + "grad_norm": 0.34540697932243347, + "learning_rate": 4.1497e-05, + "loss": 2.1651565551757814, + "step": 127600 + }, + { + "epoch": 17.026666666666667, + "grad_norm": 0.3554867208003998, + "learning_rate": 4.149033333333334e-05, + "loss": 2.168620910644531, + "step": 127700 + }, + { + "epoch": 17.04, + "grad_norm": 0.35656651854515076, + "learning_rate": 4.148366666666667e-05, + "loss": 2.1688262939453127, + "step": 127800 + }, + { + "epoch": 17.053333333333335, + "grad_norm": 0.434224396944046, + "learning_rate": 4.1477e-05, + "loss": 2.1681300354003907, + "step": 127900 + }, + { + "epoch": 17.066666666666666, + "grad_norm": 0.3526768386363983, + "learning_rate": 4.1470333333333335e-05, + "loss": 2.1689207458496096, + "step": 128000 + }, + { + "epoch": 17.08, + "grad_norm": 0.35668861865997314, + "learning_rate": 4.146366666666667e-05, + "loss": 2.168590240478516, + "step": 128100 + }, + { + "epoch": 17.093333333333334, + "grad_norm": 0.368394672870636, + "learning_rate": 4.1457e-05, + "loss": 2.173952941894531, + "step": 128200 + }, + { + "epoch": 17.106666666666666, + "grad_norm": 0.3651200532913208, + "learning_rate": 4.145033333333334e-05, + "loss": 2.172222137451172, + "step": 128300 + }, + { + "epoch": 17.12, + "grad_norm": 0.36325615644454956, + "learning_rate": 4.144366666666667e-05, + "loss": 2.16880859375, + "step": 128400 + }, + { + "epoch": 17.133333333333333, + "grad_norm": 0.3802001476287842, + "learning_rate": 4.1437e-05, + "loss": 2.1748728942871094, + "step": 128500 + }, + { + "epoch": 17.14666666666667, + "grad_norm": 0.3565540611743927, + "learning_rate": 4.1430333333333336e-05, + "loss": 2.1752804565429686, + "step": 128600 + }, + { + "epoch": 17.16, + "grad_norm": 0.3572203814983368, + "learning_rate": 4.142366666666667e-05, + "loss": 2.1743450927734376, + "step": 128700 + }, + { + "epoch": 17.173333333333332, + "grad_norm": 0.350844144821167, + "learning_rate": 4.1417e-05, + "loss": 2.172934722900391, + "step": 128800 + }, + { + "epoch": 17.186666666666667, + "grad_norm": 0.36539897322654724, + "learning_rate": 4.141033333333333e-05, + "loss": 2.176778564453125, + "step": 128900 + }, + { + "epoch": 17.2, + "grad_norm": 0.35811370611190796, + "learning_rate": 4.140366666666667e-05, + "loss": 2.174437713623047, + "step": 129000 + }, + { + "epoch": 17.213333333333335, + "grad_norm": 0.3664299547672272, + "learning_rate": 4.139706666666667e-05, + "loss": 2.1781724548339843, + "step": 129100 + }, + { + "epoch": 17.226666666666667, + "grad_norm": 0.3659532070159912, + "learning_rate": 4.13904e-05, + "loss": 2.176842041015625, + "step": 129200 + }, + { + "epoch": 17.24, + "grad_norm": 0.36825552582740784, + "learning_rate": 4.1383733333333335e-05, + "loss": 2.179559631347656, + "step": 129300 + }, + { + "epoch": 17.253333333333334, + "grad_norm": 0.36417168378829956, + "learning_rate": 4.137706666666667e-05, + "loss": 2.182062072753906, + "step": 129400 + }, + { + "epoch": 17.266666666666666, + "grad_norm": 0.3718934655189514, + "learning_rate": 4.1370400000000006e-05, + "loss": 2.180594177246094, + "step": 129500 + }, + { + "epoch": 17.28, + "grad_norm": 0.3516819477081299, + "learning_rate": 4.136373333333334e-05, + "loss": 2.180480499267578, + "step": 129600 + }, + { + "epoch": 17.293333333333333, + "grad_norm": 0.3652108609676361, + "learning_rate": 4.1357066666666664e-05, + "loss": 2.182070770263672, + "step": 129700 + }, + { + "epoch": 17.306666666666665, + "grad_norm": 0.3595081865787506, + "learning_rate": 4.13504e-05, + "loss": 2.1821852111816407, + "step": 129800 + }, + { + "epoch": 17.32, + "grad_norm": 0.3393441140651703, + "learning_rate": 4.1343733333333335e-05, + "loss": 2.178795166015625, + "step": 129900 + }, + { + "epoch": 17.333333333333332, + "grad_norm": 0.36966830492019653, + "learning_rate": 4.133706666666667e-05, + "loss": 2.1857032775878906, + "step": 130000 + }, + { + "epoch": 17.346666666666668, + "grad_norm": 0.3546712100505829, + "learning_rate": 4.13304e-05, + "loss": 2.180518798828125, + "step": 130100 + }, + { + "epoch": 17.36, + "grad_norm": 0.37151312828063965, + "learning_rate": 4.132373333333334e-05, + "loss": 2.1837088012695314, + "step": 130200 + }, + { + "epoch": 17.373333333333335, + "grad_norm": 0.34406447410583496, + "learning_rate": 4.131706666666667e-05, + "loss": 2.1844528198242186, + "step": 130300 + }, + { + "epoch": 17.386666666666667, + "grad_norm": 0.44284486770629883, + "learning_rate": 4.1310400000000003e-05, + "loss": 2.1846923828125, + "step": 130400 + }, + { + "epoch": 17.4, + "grad_norm": 0.38338637351989746, + "learning_rate": 4.1303733333333336e-05, + "loss": 2.1837538146972655, + "step": 130500 + }, + { + "epoch": 17.413333333333334, + "grad_norm": 0.3616061210632324, + "learning_rate": 4.129706666666667e-05, + "loss": 2.1846038818359377, + "step": 130600 + }, + { + "epoch": 17.426666666666666, + "grad_norm": 0.35662466287612915, + "learning_rate": 4.12904e-05, + "loss": 2.186310272216797, + "step": 130700 + }, + { + "epoch": 17.44, + "grad_norm": 0.34366509318351746, + "learning_rate": 4.128373333333333e-05, + "loss": 2.1828770446777344, + "step": 130800 + }, + { + "epoch": 17.453333333333333, + "grad_norm": 0.35822221636772156, + "learning_rate": 4.127706666666667e-05, + "loss": 2.1853370666503906, + "step": 130900 + }, + { + "epoch": 17.466666666666665, + "grad_norm": 0.382191002368927, + "learning_rate": 4.1270400000000004e-05, + "loss": 2.184327392578125, + "step": 131000 + }, + { + "epoch": 17.48, + "grad_norm": 0.3557610511779785, + "learning_rate": 4.12638e-05, + "loss": 2.188468170166016, + "step": 131100 + }, + { + "epoch": 17.493333333333332, + "grad_norm": 0.3445620536804199, + "learning_rate": 4.1257133333333335e-05, + "loss": 2.1877789306640625, + "step": 131200 + }, + { + "epoch": 17.506666666666668, + "grad_norm": 0.356189489364624, + "learning_rate": 4.125046666666667e-05, + "loss": 2.186894989013672, + "step": 131300 + }, + { + "epoch": 17.52, + "grad_norm": 0.37347978353500366, + "learning_rate": 4.1243800000000007e-05, + "loss": 2.1881455993652343, + "step": 131400 + }, + { + "epoch": 17.533333333333335, + "grad_norm": 0.4915677309036255, + "learning_rate": 4.123713333333333e-05, + "loss": 2.188135528564453, + "step": 131500 + }, + { + "epoch": 17.546666666666667, + "grad_norm": 0.33609944581985474, + "learning_rate": 4.1230466666666664e-05, + "loss": 2.1907609558105468, + "step": 131600 + }, + { + "epoch": 17.56, + "grad_norm": 0.36254754662513733, + "learning_rate": 4.12238e-05, + "loss": 2.1870379638671875, + "step": 131700 + }, + { + "epoch": 17.573333333333334, + "grad_norm": 0.3741578459739685, + "learning_rate": 4.1217133333333336e-05, + "loss": 2.1931048583984376, + "step": 131800 + }, + { + "epoch": 17.586666666666666, + "grad_norm": 0.3609215319156647, + "learning_rate": 4.121046666666667e-05, + "loss": 2.19150146484375, + "step": 131900 + }, + { + "epoch": 17.6, + "grad_norm": 0.35999777913093567, + "learning_rate": 4.120380000000001e-05, + "loss": 2.191175537109375, + "step": 132000 + }, + { + "epoch": 17.613333333333333, + "grad_norm": 0.3569694459438324, + "learning_rate": 4.119713333333334e-05, + "loss": 2.192285614013672, + "step": 132100 + }, + { + "epoch": 17.626666666666665, + "grad_norm": 0.3714178502559662, + "learning_rate": 4.1190466666666665e-05, + "loss": 2.192773895263672, + "step": 132200 + }, + { + "epoch": 17.64, + "grad_norm": 0.3539521396160126, + "learning_rate": 4.11838e-05, + "loss": 2.190313415527344, + "step": 132300 + }, + { + "epoch": 17.653333333333332, + "grad_norm": 0.358467698097229, + "learning_rate": 4.1177133333333336e-05, + "loss": 2.195655517578125, + "step": 132400 + }, + { + "epoch": 17.666666666666668, + "grad_norm": 0.3586037755012512, + "learning_rate": 4.117046666666667e-05, + "loss": 2.192008819580078, + "step": 132500 + }, + { + "epoch": 17.68, + "grad_norm": 0.3595978915691376, + "learning_rate": 4.11638e-05, + "loss": 2.1931185913085938, + "step": 132600 + }, + { + "epoch": 17.693333333333335, + "grad_norm": 0.35596606135368347, + "learning_rate": 4.115713333333334e-05, + "loss": 2.1931863403320313, + "step": 132700 + }, + { + "epoch": 17.706666666666667, + "grad_norm": 0.349572092294693, + "learning_rate": 4.115046666666667e-05, + "loss": 2.1953758239746093, + "step": 132800 + }, + { + "epoch": 17.72, + "grad_norm": 0.3638124167919159, + "learning_rate": 4.1143800000000004e-05, + "loss": 2.197004547119141, + "step": 132900 + }, + { + "epoch": 17.733333333333334, + "grad_norm": 0.3515288531780243, + "learning_rate": 4.1137133333333336e-05, + "loss": 2.1984828186035155, + "step": 133000 + }, + { + "epoch": 17.746666666666666, + "grad_norm": 0.37091967463493347, + "learning_rate": 4.1130533333333335e-05, + "loss": 2.1952162170410157, + "step": 133100 + }, + { + "epoch": 17.76, + "grad_norm": 0.3641296923160553, + "learning_rate": 4.112386666666667e-05, + "loss": 2.1980247497558594, + "step": 133200 + }, + { + "epoch": 17.773333333333333, + "grad_norm": 0.3431222438812256, + "learning_rate": 4.11172e-05, + "loss": 2.196508483886719, + "step": 133300 + }, + { + "epoch": 17.786666666666665, + "grad_norm": 0.35797178745269775, + "learning_rate": 4.111053333333333e-05, + "loss": 2.199690704345703, + "step": 133400 + }, + { + "epoch": 17.8, + "grad_norm": 0.3545133173465729, + "learning_rate": 4.110386666666667e-05, + "loss": 2.1973370361328124, + "step": 133500 + }, + { + "epoch": 17.813333333333333, + "grad_norm": 0.36000749468803406, + "learning_rate": 4.1097200000000004e-05, + "loss": 2.2000468444824217, + "step": 133600 + }, + { + "epoch": 17.826666666666668, + "grad_norm": 0.3570917546749115, + "learning_rate": 4.1090533333333336e-05, + "loss": 2.199578857421875, + "step": 133700 + }, + { + "epoch": 17.84, + "grad_norm": 0.36283078789711, + "learning_rate": 4.108386666666667e-05, + "loss": 2.199168853759766, + "step": 133800 + }, + { + "epoch": 17.85333333333333, + "grad_norm": 0.37170839309692383, + "learning_rate": 4.107720000000001e-05, + "loss": 2.199163818359375, + "step": 133900 + }, + { + "epoch": 17.866666666666667, + "grad_norm": 0.35398539900779724, + "learning_rate": 4.107053333333333e-05, + "loss": 2.2005375671386718, + "step": 134000 + }, + { + "epoch": 17.88, + "grad_norm": 0.3618471622467041, + "learning_rate": 4.1063866666666665e-05, + "loss": 2.193340606689453, + "step": 134100 + }, + { + "epoch": 17.893333333333334, + "grad_norm": 0.36715346574783325, + "learning_rate": 4.1057200000000004e-05, + "loss": 2.201223602294922, + "step": 134200 + }, + { + "epoch": 17.906666666666666, + "grad_norm": 0.35410168766975403, + "learning_rate": 4.1050533333333336e-05, + "loss": 2.1994700622558594, + "step": 134300 + }, + { + "epoch": 17.92, + "grad_norm": 0.34702470898628235, + "learning_rate": 4.104386666666667e-05, + "loss": 2.2010435485839843, + "step": 134400 + }, + { + "epoch": 17.933333333333334, + "grad_norm": 0.33663272857666016, + "learning_rate": 4.10372e-05, + "loss": 2.2017396545410155, + "step": 134500 + }, + { + "epoch": 17.946666666666665, + "grad_norm": 0.36605820059776306, + "learning_rate": 4.103053333333334e-05, + "loss": 2.2016064453125, + "step": 134600 + }, + { + "epoch": 17.96, + "grad_norm": 0.3492322564125061, + "learning_rate": 4.1023866666666665e-05, + "loss": 2.202108154296875, + "step": 134700 + }, + { + "epoch": 17.973333333333333, + "grad_norm": 0.36869311332702637, + "learning_rate": 4.10172e-05, + "loss": 2.2017369079589844, + "step": 134800 + }, + { + "epoch": 17.986666666666668, + "grad_norm": 0.36540335416793823, + "learning_rate": 4.1010533333333337e-05, + "loss": 2.200558624267578, + "step": 134900 + }, + { + "epoch": 18.0, + "grad_norm": 0.36333802342414856, + "learning_rate": 4.100386666666667e-05, + "loss": 2.203197174072266, + "step": 135000 + }, + { + "epoch": 18.013333333333332, + "grad_norm": 0.3684398829936981, + "learning_rate": 4.09972e-05, + "loss": 2.144236297607422, + "step": 135100 + }, + { + "epoch": 18.026666666666667, + "grad_norm": 0.3864319622516632, + "learning_rate": 4.09906e-05, + "loss": 2.147691650390625, + "step": 135200 + }, + { + "epoch": 18.04, + "grad_norm": 0.39713576436042786, + "learning_rate": 4.098393333333333e-05, + "loss": 2.1479608154296876, + "step": 135300 + }, + { + "epoch": 18.053333333333335, + "grad_norm": 0.38535943627357483, + "learning_rate": 4.097726666666667e-05, + "loss": 2.149579620361328, + "step": 135400 + }, + { + "epoch": 18.066666666666666, + "grad_norm": 0.37120920419692993, + "learning_rate": 4.0970600000000004e-05, + "loss": 2.1504815673828124, + "step": 135500 + }, + { + "epoch": 18.08, + "grad_norm": 0.3953970968723297, + "learning_rate": 4.0963933333333336e-05, + "loss": 2.1479664611816407, + "step": 135600 + }, + { + "epoch": 18.093333333333334, + "grad_norm": 0.3948633372783661, + "learning_rate": 4.095726666666667e-05, + "loss": 2.1526097106933593, + "step": 135700 + }, + { + "epoch": 18.106666666666666, + "grad_norm": 0.38562309741973877, + "learning_rate": 4.09506e-05, + "loss": 2.147718963623047, + "step": 135800 + }, + { + "epoch": 18.12, + "grad_norm": 0.38705727458000183, + "learning_rate": 4.094393333333333e-05, + "loss": 2.1560462951660155, + "step": 135900 + }, + { + "epoch": 18.133333333333333, + "grad_norm": 0.3904648721218109, + "learning_rate": 4.0937266666666665e-05, + "loss": 2.148473815917969, + "step": 136000 + }, + { + "epoch": 18.14666666666667, + "grad_norm": 0.3789866268634796, + "learning_rate": 4.0930600000000004e-05, + "loss": 2.1551133728027345, + "step": 136100 + }, + { + "epoch": 18.16, + "grad_norm": 0.3716281056404114, + "learning_rate": 4.0923933333333336e-05, + "loss": 2.1517713928222655, + "step": 136200 + }, + { + "epoch": 18.173333333333332, + "grad_norm": 0.4038568437099457, + "learning_rate": 4.091726666666667e-05, + "loss": 2.154055633544922, + "step": 136300 + }, + { + "epoch": 18.186666666666667, + "grad_norm": 0.3836662173271179, + "learning_rate": 4.091060000000001e-05, + "loss": 2.1555635070800783, + "step": 136400 + }, + { + "epoch": 18.2, + "grad_norm": 0.4338989853858948, + "learning_rate": 4.090393333333333e-05, + "loss": 2.1564508056640626, + "step": 136500 + }, + { + "epoch": 18.213333333333335, + "grad_norm": 0.3803965747356415, + "learning_rate": 4.0897266666666665e-05, + "loss": 2.15535888671875, + "step": 136600 + }, + { + "epoch": 18.226666666666667, + "grad_norm": 0.38790804147720337, + "learning_rate": 4.08906e-05, + "loss": 2.155977935791016, + "step": 136700 + }, + { + "epoch": 18.24, + "grad_norm": 0.4054514169692993, + "learning_rate": 4.088393333333334e-05, + "loss": 2.1601606750488282, + "step": 136800 + }, + { + "epoch": 18.253333333333334, + "grad_norm": 0.39995694160461426, + "learning_rate": 4.087726666666667e-05, + "loss": 2.1544822692871093, + "step": 136900 + }, + { + "epoch": 18.266666666666666, + "grad_norm": 0.399427592754364, + "learning_rate": 4.08706e-05, + "loss": 2.157484436035156, + "step": 137000 + }, + { + "epoch": 18.28, + "grad_norm": 0.380747526884079, + "learning_rate": 4.086393333333334e-05, + "loss": 2.1604388427734373, + "step": 137100 + }, + { + "epoch": 18.293333333333333, + "grad_norm": 0.3849477767944336, + "learning_rate": 4.085733333333334e-05, + "loss": 2.1585659790039062, + "step": 137200 + }, + { + "epoch": 18.306666666666665, + "grad_norm": 0.3770460784435272, + "learning_rate": 4.085066666666667e-05, + "loss": 2.1618302917480468, + "step": 137300 + }, + { + "epoch": 18.32, + "grad_norm": 0.4081668257713318, + "learning_rate": 4.0844000000000004e-05, + "loss": 2.1609623718261717, + "step": 137400 + }, + { + "epoch": 18.333333333333332, + "grad_norm": 0.37667742371559143, + "learning_rate": 4.0837333333333336e-05, + "loss": 2.162608642578125, + "step": 137500 + }, + { + "epoch": 18.346666666666668, + "grad_norm": 0.3946523070335388, + "learning_rate": 4.083066666666667e-05, + "loss": 2.1644091796875, + "step": 137600 + }, + { + "epoch": 18.36, + "grad_norm": 0.38843250274658203, + "learning_rate": 4.0824e-05, + "loss": 2.161121063232422, + "step": 137700 + }, + { + "epoch": 18.373333333333335, + "grad_norm": 0.4010300040245056, + "learning_rate": 4.081733333333333e-05, + "loss": 2.1667359924316405, + "step": 137800 + }, + { + "epoch": 18.386666666666667, + "grad_norm": 0.3785018026828766, + "learning_rate": 4.081066666666667e-05, + "loss": 2.167360992431641, + "step": 137900 + }, + { + "epoch": 18.4, + "grad_norm": 0.39816367626190186, + "learning_rate": 4.0804000000000004e-05, + "loss": 2.164031677246094, + "step": 138000 + }, + { + "epoch": 18.413333333333334, + "grad_norm": 0.38204148411750793, + "learning_rate": 4.079733333333334e-05, + "loss": 2.166887054443359, + "step": 138100 + }, + { + "epoch": 18.426666666666666, + "grad_norm": 0.36739620566368103, + "learning_rate": 4.079066666666667e-05, + "loss": 2.1648483276367188, + "step": 138200 + }, + { + "epoch": 18.44, + "grad_norm": 0.40818193554878235, + "learning_rate": 4.0784e-05, + "loss": 2.167153778076172, + "step": 138300 + }, + { + "epoch": 18.453333333333333, + "grad_norm": 0.3707272410392761, + "learning_rate": 4.0777333333333333e-05, + "loss": 2.1704667663574218, + "step": 138400 + }, + { + "epoch": 18.466666666666665, + "grad_norm": 0.3825608491897583, + "learning_rate": 4.0770666666666666e-05, + "loss": 2.1677491760253904, + "step": 138500 + }, + { + "epoch": 18.48, + "grad_norm": 0.3704966902732849, + "learning_rate": 4.0764000000000005e-05, + "loss": 2.168622589111328, + "step": 138600 + }, + { + "epoch": 18.493333333333332, + "grad_norm": 0.38297003507614136, + "learning_rate": 4.075733333333334e-05, + "loss": 2.1695802307128904, + "step": 138700 + }, + { + "epoch": 18.506666666666668, + "grad_norm": 0.369875431060791, + "learning_rate": 4.075066666666667e-05, + "loss": 2.1684419250488283, + "step": 138800 + }, + { + "epoch": 18.52, + "grad_norm": 0.38239753246307373, + "learning_rate": 4.0744e-05, + "loss": 2.1713496398925782, + "step": 138900 + }, + { + "epoch": 18.533333333333335, + "grad_norm": 0.37456804513931274, + "learning_rate": 4.0737333333333334e-05, + "loss": 2.171775360107422, + "step": 139000 + }, + { + "epoch": 18.546666666666667, + "grad_norm": 0.36324089765548706, + "learning_rate": 4.0730666666666666e-05, + "loss": 2.168131103515625, + "step": 139100 + }, + { + "epoch": 18.56, + "grad_norm": 0.3825380206108093, + "learning_rate": 4.0724066666666665e-05, + "loss": 2.1711878967285156, + "step": 139200 + }, + { + "epoch": 18.573333333333334, + "grad_norm": 0.38280192017555237, + "learning_rate": 4.07174e-05, + "loss": 2.1701324462890623, + "step": 139300 + }, + { + "epoch": 18.586666666666666, + "grad_norm": 0.3777543902397156, + "learning_rate": 4.0710733333333336e-05, + "loss": 2.1692018127441406, + "step": 139400 + }, + { + "epoch": 18.6, + "grad_norm": 0.387617290019989, + "learning_rate": 4.070406666666667e-05, + "loss": 2.1738621520996095, + "step": 139500 + }, + { + "epoch": 18.613333333333333, + "grad_norm": 0.38992756605148315, + "learning_rate": 4.06974e-05, + "loss": 2.173524932861328, + "step": 139600 + }, + { + "epoch": 18.626666666666665, + "grad_norm": 0.382716566324234, + "learning_rate": 4.069073333333333e-05, + "loss": 2.1713710021972656, + "step": 139700 + }, + { + "epoch": 18.64, + "grad_norm": 0.36141642928123474, + "learning_rate": 4.068406666666667e-05, + "loss": 2.1703253173828125, + "step": 139800 + }, + { + "epoch": 18.653333333333332, + "grad_norm": 0.37553125619888306, + "learning_rate": 4.0677400000000005e-05, + "loss": 2.1746434020996093, + "step": 139900 + }, + { + "epoch": 18.666666666666668, + "grad_norm": 0.40358760952949524, + "learning_rate": 4.067073333333333e-05, + "loss": 2.172953643798828, + "step": 140000 + }, + { + "epoch": 18.68, + "grad_norm": 0.35741183161735535, + "learning_rate": 4.066406666666667e-05, + "loss": 2.1734686279296875, + "step": 140100 + }, + { + "epoch": 18.693333333333335, + "grad_norm": 0.3769322633743286, + "learning_rate": 4.06574e-05, + "loss": 2.1750888061523437, + "step": 140200 + }, + { + "epoch": 18.706666666666667, + "grad_norm": 0.3802931606769562, + "learning_rate": 4.0650733333333334e-05, + "loss": 2.1736627197265626, + "step": 140300 + }, + { + "epoch": 18.72, + "grad_norm": 0.3812218904495239, + "learning_rate": 4.0644066666666666e-05, + "loss": 2.176966552734375, + "step": 140400 + }, + { + "epoch": 18.733333333333334, + "grad_norm": 0.38916149735450745, + "learning_rate": 4.0637400000000005e-05, + "loss": 2.172593231201172, + "step": 140500 + }, + { + "epoch": 18.746666666666666, + "grad_norm": 0.38093966245651245, + "learning_rate": 4.063073333333334e-05, + "loss": 2.1759133911132813, + "step": 140600 + }, + { + "epoch": 18.76, + "grad_norm": 0.4063868224620819, + "learning_rate": 4.062406666666667e-05, + "loss": 2.1767710876464843, + "step": 140700 + }, + { + "epoch": 18.773333333333333, + "grad_norm": 0.37494465708732605, + "learning_rate": 4.06174e-05, + "loss": 2.1748062133789063, + "step": 140800 + }, + { + "epoch": 18.786666666666665, + "grad_norm": 0.38622939586639404, + "learning_rate": 4.0610733333333334e-05, + "loss": 2.17905029296875, + "step": 140900 + }, + { + "epoch": 18.8, + "grad_norm": 0.41010287404060364, + "learning_rate": 4.0604066666666666e-05, + "loss": 2.1740985107421875, + "step": 141000 + }, + { + "epoch": 18.813333333333333, + "grad_norm": 0.38058510422706604, + "learning_rate": 4.0597400000000005e-05, + "loss": 2.1741783142089846, + "step": 141100 + }, + { + "epoch": 18.826666666666668, + "grad_norm": 0.36692535877227783, + "learning_rate": 4.05908e-05, + "loss": 2.1796223449707033, + "step": 141200 + }, + { + "epoch": 18.84, + "grad_norm": 0.3798985779285431, + "learning_rate": 4.058413333333334e-05, + "loss": 2.1784815979003906, + "step": 141300 + }, + { + "epoch": 18.85333333333333, + "grad_norm": 0.3722667098045349, + "learning_rate": 4.057746666666667e-05, + "loss": 2.1829788208007814, + "step": 141400 + }, + { + "epoch": 18.866666666666667, + "grad_norm": 0.39556455612182617, + "learning_rate": 4.05708e-05, + "loss": 2.179154815673828, + "step": 141500 + }, + { + "epoch": 18.88, + "grad_norm": 0.3847595453262329, + "learning_rate": 4.056413333333334e-05, + "loss": 2.1796925354003904, + "step": 141600 + }, + { + "epoch": 18.893333333333334, + "grad_norm": 0.37797436118125916, + "learning_rate": 4.055746666666667e-05, + "loss": 2.1813531494140626, + "step": 141700 + }, + { + "epoch": 18.906666666666666, + "grad_norm": 0.3832587003707886, + "learning_rate": 4.05508e-05, + "loss": 2.179685516357422, + "step": 141800 + }, + { + "epoch": 18.92, + "grad_norm": 0.3763803541660309, + "learning_rate": 4.054413333333334e-05, + "loss": 2.1807159423828124, + "step": 141900 + }, + { + "epoch": 18.933333333333334, + "grad_norm": 0.39702609181404114, + "learning_rate": 4.053746666666667e-05, + "loss": 2.18234619140625, + "step": 142000 + }, + { + "epoch": 18.946666666666665, + "grad_norm": 0.3635548949241638, + "learning_rate": 4.05308e-05, + "loss": 2.1816770935058596, + "step": 142100 + }, + { + "epoch": 18.96, + "grad_norm": 0.3698504567146301, + "learning_rate": 4.0524133333333334e-05, + "loss": 2.1805545043945314, + "step": 142200 + }, + { + "epoch": 18.973333333333333, + "grad_norm": 0.38847336173057556, + "learning_rate": 4.051746666666667e-05, + "loss": 2.18578125, + "step": 142300 + }, + { + "epoch": 18.986666666666668, + "grad_norm": 0.380186527967453, + "learning_rate": 4.0510800000000005e-05, + "loss": 2.1846510314941407, + "step": 142400 + }, + { + "epoch": 19.0, + "grad_norm": 0.37036606669425964, + "learning_rate": 4.050413333333333e-05, + "loss": 2.184918212890625, + "step": 142500 + }, + { + "epoch": 19.013333333333332, + "grad_norm": 0.4196798503398895, + "learning_rate": 4.049746666666667e-05, + "loss": 2.122628021240234, + "step": 142600 + }, + { + "epoch": 19.026666666666667, + "grad_norm": 0.4127017557621002, + "learning_rate": 4.04908e-05, + "loss": 2.1235401916503904, + "step": 142700 + }, + { + "epoch": 19.04, + "grad_norm": 0.4180348813533783, + "learning_rate": 4.0484133333333334e-05, + "loss": 2.123696746826172, + "step": 142800 + }, + { + "epoch": 19.053333333333335, + "grad_norm": 0.40591850876808167, + "learning_rate": 4.0477466666666667e-05, + "loss": 2.12607177734375, + "step": 142900 + }, + { + "epoch": 19.066666666666666, + "grad_norm": 0.4013535678386688, + "learning_rate": 4.0470800000000006e-05, + "loss": 2.1254452514648436, + "step": 143000 + }, + { + "epoch": 19.08, + "grad_norm": 0.3990405797958374, + "learning_rate": 4.046413333333334e-05, + "loss": 2.1275210571289063, + "step": 143100 + }, + { + "epoch": 19.093333333333334, + "grad_norm": 0.3961292803287506, + "learning_rate": 4.045753333333334e-05, + "loss": 2.1298793029785155, + "step": 143200 + }, + { + "epoch": 19.106666666666666, + "grad_norm": 0.38968828320503235, + "learning_rate": 4.045086666666667e-05, + "loss": 2.130485382080078, + "step": 143300 + }, + { + "epoch": 19.12, + "grad_norm": 0.38888853788375854, + "learning_rate": 4.04442e-05, + "loss": 2.1340348815917967, + "step": 143400 + }, + { + "epoch": 19.133333333333333, + "grad_norm": 0.4043475091457367, + "learning_rate": 4.0437533333333334e-05, + "loss": 2.132088317871094, + "step": 143500 + }, + { + "epoch": 19.14666666666667, + "grad_norm": 0.3911975920200348, + "learning_rate": 4.0430866666666666e-05, + "loss": 2.136121826171875, + "step": 143600 + }, + { + "epoch": 19.16, + "grad_norm": 0.43989744782447815, + "learning_rate": 4.04242e-05, + "loss": 2.129822998046875, + "step": 143700 + }, + { + "epoch": 19.173333333333332, + "grad_norm": 0.3966082036495209, + "learning_rate": 4.041753333333334e-05, + "loss": 2.132376403808594, + "step": 143800 + }, + { + "epoch": 19.186666666666667, + "grad_norm": 0.3992730975151062, + "learning_rate": 4.041086666666667e-05, + "loss": 2.139486999511719, + "step": 143900 + }, + { + "epoch": 19.2, + "grad_norm": 0.4032175838947296, + "learning_rate": 4.04042e-05, + "loss": 2.13601318359375, + "step": 144000 + }, + { + "epoch": 19.213333333333335, + "grad_norm": 0.396996408700943, + "learning_rate": 4.0397533333333334e-05, + "loss": 2.1378729248046877, + "step": 144100 + }, + { + "epoch": 19.226666666666667, + "grad_norm": 0.4150291085243225, + "learning_rate": 4.039086666666667e-05, + "loss": 2.1334957885742187, + "step": 144200 + }, + { + "epoch": 19.24, + "grad_norm": 0.3937293291091919, + "learning_rate": 4.03842e-05, + "loss": 2.136308135986328, + "step": 144300 + }, + { + "epoch": 19.253333333333334, + "grad_norm": 0.4123186469078064, + "learning_rate": 4.037753333333333e-05, + "loss": 2.1393890380859375, + "step": 144400 + }, + { + "epoch": 19.266666666666666, + "grad_norm": 0.39195558428764343, + "learning_rate": 4.037086666666667e-05, + "loss": 2.1392486572265623, + "step": 144500 + }, + { + "epoch": 19.28, + "grad_norm": 0.4173942506313324, + "learning_rate": 4.03642e-05, + "loss": 2.137723846435547, + "step": 144600 + }, + { + "epoch": 19.293333333333333, + "grad_norm": 0.4093802273273468, + "learning_rate": 4.0357533333333335e-05, + "loss": 2.136879577636719, + "step": 144700 + }, + { + "epoch": 19.306666666666665, + "grad_norm": 0.4126907289028168, + "learning_rate": 4.035086666666667e-05, + "loss": 2.1385182189941405, + "step": 144800 + }, + { + "epoch": 19.32, + "grad_norm": 0.4639165699481964, + "learning_rate": 4.0344200000000006e-05, + "loss": 2.1417454528808593, + "step": 144900 + }, + { + "epoch": 19.333333333333332, + "grad_norm": 0.405304491519928, + "learning_rate": 4.033753333333333e-05, + "loss": 2.1422581481933594, + "step": 145000 + }, + { + "epoch": 19.346666666666668, + "grad_norm": 0.3977564573287964, + "learning_rate": 4.0330866666666664e-05, + "loss": 2.142159118652344, + "step": 145100 + }, + { + "epoch": 19.36, + "grad_norm": 0.3873383104801178, + "learning_rate": 4.032426666666667e-05, + "loss": 2.141308135986328, + "step": 145200 + }, + { + "epoch": 19.373333333333335, + "grad_norm": 0.40484434366226196, + "learning_rate": 4.03176e-05, + "loss": 2.1436500549316406, + "step": 145300 + }, + { + "epoch": 19.386666666666667, + "grad_norm": 0.3954225480556488, + "learning_rate": 4.0310933333333334e-05, + "loss": 2.1450897216796876, + "step": 145400 + }, + { + "epoch": 19.4, + "grad_norm": 0.40232667326927185, + "learning_rate": 4.0304266666666666e-05, + "loss": 2.14369140625, + "step": 145500 + }, + { + "epoch": 19.413333333333334, + "grad_norm": 0.4098379909992218, + "learning_rate": 4.0297600000000005e-05, + "loss": 2.142886199951172, + "step": 145600 + }, + { + "epoch": 19.426666666666666, + "grad_norm": 0.5938084125518799, + "learning_rate": 4.029093333333334e-05, + "loss": 2.142805480957031, + "step": 145700 + }, + { + "epoch": 19.44, + "grad_norm": 0.4229917824268341, + "learning_rate": 4.028426666666667e-05, + "loss": 2.1455670166015626, + "step": 145800 + }, + { + "epoch": 19.453333333333333, + "grad_norm": 0.4009098410606384, + "learning_rate": 4.02776e-05, + "loss": 2.1452354431152343, + "step": 145900 + }, + { + "epoch": 19.466666666666665, + "grad_norm": 0.4073621928691864, + "learning_rate": 4.0270933333333334e-05, + "loss": 2.148215484619141, + "step": 146000 + }, + { + "epoch": 19.48, + "grad_norm": 0.4084467887878418, + "learning_rate": 4.026426666666667e-05, + "loss": 2.1478231811523436, + "step": 146100 + }, + { + "epoch": 19.493333333333332, + "grad_norm": 0.41249674558639526, + "learning_rate": 4.02576e-05, + "loss": 2.146228485107422, + "step": 146200 + }, + { + "epoch": 19.506666666666668, + "grad_norm": 0.4140562415122986, + "learning_rate": 4.025093333333334e-05, + "loss": 2.1468472290039062, + "step": 146300 + }, + { + "epoch": 19.52, + "grad_norm": 0.4109251797199249, + "learning_rate": 4.024426666666667e-05, + "loss": 2.1486239624023438, + "step": 146400 + }, + { + "epoch": 19.533333333333335, + "grad_norm": 0.4116007089614868, + "learning_rate": 4.02376e-05, + "loss": 2.1508238220214846, + "step": 146500 + }, + { + "epoch": 19.546666666666667, + "grad_norm": 0.4088853895664215, + "learning_rate": 4.0230933333333335e-05, + "loss": 2.1514797973632813, + "step": 146600 + }, + { + "epoch": 19.56, + "grad_norm": 0.41675347089767456, + "learning_rate": 4.0224266666666674e-05, + "loss": 2.1524058532714845, + "step": 146700 + }, + { + "epoch": 19.573333333333334, + "grad_norm": 0.3963926136493683, + "learning_rate": 4.02176e-05, + "loss": 2.148751525878906, + "step": 146800 + }, + { + "epoch": 19.586666666666666, + "grad_norm": 0.40617915987968445, + "learning_rate": 4.021093333333333e-05, + "loss": 2.149855194091797, + "step": 146900 + }, + { + "epoch": 19.6, + "grad_norm": 0.41876712441444397, + "learning_rate": 4.020426666666667e-05, + "loss": 2.150911560058594, + "step": 147000 + }, + { + "epoch": 19.613333333333333, + "grad_norm": 0.3804861605167389, + "learning_rate": 4.01976e-05, + "loss": 2.1560760498046876, + "step": 147100 + }, + { + "epoch": 19.626666666666665, + "grad_norm": 0.4384894073009491, + "learning_rate": 4.0191e-05, + "loss": 2.1526423645019532, + "step": 147200 + }, + { + "epoch": 19.64, + "grad_norm": 0.41497132182121277, + "learning_rate": 4.0184333333333334e-05, + "loss": 2.155290374755859, + "step": 147300 + }, + { + "epoch": 19.653333333333332, + "grad_norm": 0.41495493054389954, + "learning_rate": 4.0177666666666666e-05, + "loss": 2.151389465332031, + "step": 147400 + }, + { + "epoch": 19.666666666666668, + "grad_norm": 0.4099428355693817, + "learning_rate": 4.0171000000000006e-05, + "loss": 2.1499951171875, + "step": 147500 + }, + { + "epoch": 19.68, + "grad_norm": 0.3970455825328827, + "learning_rate": 4.016433333333334e-05, + "loss": 2.1519485473632813, + "step": 147600 + }, + { + "epoch": 19.693333333333335, + "grad_norm": 0.39993080496788025, + "learning_rate": 4.015766666666667e-05, + "loss": 2.1552606201171876, + "step": 147700 + }, + { + "epoch": 19.706666666666667, + "grad_norm": 0.3965042233467102, + "learning_rate": 4.0151e-05, + "loss": 2.15621826171875, + "step": 147800 + }, + { + "epoch": 19.72, + "grad_norm": 0.39892885088920593, + "learning_rate": 4.0144333333333335e-05, + "loss": 2.1579328918457032, + "step": 147900 + }, + { + "epoch": 19.733333333333334, + "grad_norm": 0.3992300033569336, + "learning_rate": 4.013766666666667e-05, + "loss": 2.1543257141113283, + "step": 148000 + }, + { + "epoch": 19.746666666666666, + "grad_norm": 0.4157925844192505, + "learning_rate": 4.0131e-05, + "loss": 2.1553553771972656, + "step": 148100 + }, + { + "epoch": 19.76, + "grad_norm": 0.4068884253501892, + "learning_rate": 4.012433333333334e-05, + "loss": 2.1588153076171874, + "step": 148200 + }, + { + "epoch": 19.773333333333333, + "grad_norm": 0.38905492424964905, + "learning_rate": 4.011766666666667e-05, + "loss": 2.15878662109375, + "step": 148300 + }, + { + "epoch": 19.786666666666665, + "grad_norm": 0.4091239869594574, + "learning_rate": 4.0111e-05, + "loss": 2.1591731262207032, + "step": 148400 + }, + { + "epoch": 19.8, + "grad_norm": 0.40158993005752563, + "learning_rate": 4.0104333333333335e-05, + "loss": 2.1584709167480467, + "step": 148500 + }, + { + "epoch": 19.813333333333333, + "grad_norm": 0.39406251907348633, + "learning_rate": 4.009766666666667e-05, + "loss": 2.1566011047363283, + "step": 148600 + }, + { + "epoch": 19.826666666666668, + "grad_norm": 0.407062292098999, + "learning_rate": 4.0091e-05, + "loss": 2.1586177062988283, + "step": 148700 + }, + { + "epoch": 19.84, + "grad_norm": 0.405785471200943, + "learning_rate": 4.008433333333333e-05, + "loss": 2.16111083984375, + "step": 148800 + }, + { + "epoch": 19.85333333333333, + "grad_norm": 0.41420650482177734, + "learning_rate": 4.007766666666667e-05, + "loss": 2.1617213439941407, + "step": 148900 + }, + { + "epoch": 19.866666666666667, + "grad_norm": 0.394771933555603, + "learning_rate": 4.0071e-05, + "loss": 2.1623408508300783, + "step": 149000 + }, + { + "epoch": 19.88, + "grad_norm": 0.40892547369003296, + "learning_rate": 4.0064333333333335e-05, + "loss": 2.157855987548828, + "step": 149100 + }, + { + "epoch": 19.893333333333334, + "grad_norm": 0.3987767994403839, + "learning_rate": 4.0057733333333334e-05, + "loss": 2.1613093566894532, + "step": 149200 + }, + { + "epoch": 19.906666666666666, + "grad_norm": 0.3993833661079407, + "learning_rate": 4.005106666666667e-05, + "loss": 2.1549281311035156, + "step": 149300 + }, + { + "epoch": 19.92, + "grad_norm": 0.38621968030929565, + "learning_rate": 4.0044400000000006e-05, + "loss": 2.160150146484375, + "step": 149400 + }, + { + "epoch": 19.933333333333334, + "grad_norm": 0.3897809386253357, + "learning_rate": 4.003773333333333e-05, + "loss": 2.1631517028808593, + "step": 149500 + }, + { + "epoch": 19.946666666666665, + "grad_norm": 0.398573637008667, + "learning_rate": 4.0031066666666664e-05, + "loss": 2.157795104980469, + "step": 149600 + }, + { + "epoch": 19.96, + "grad_norm": 0.40121105313301086, + "learning_rate": 4.00244e-05, + "loss": 2.1640524291992187, + "step": 149700 + }, + { + "epoch": 19.973333333333333, + "grad_norm": 0.4069249927997589, + "learning_rate": 4.0017733333333335e-05, + "loss": 2.166029052734375, + "step": 149800 + }, + { + "epoch": 19.986666666666668, + "grad_norm": 0.3973349928855896, + "learning_rate": 4.001106666666667e-05, + "loss": 2.1621893310546874, + "step": 149900 + }, + { + "epoch": 20.0, + "grad_norm": 0.41031596064567566, + "learning_rate": 4.0004400000000006e-05, + "loss": 2.164129180908203, + "step": 150000 + }, + { + "epoch": 20.013333333333332, + "grad_norm": 0.4144793748855591, + "learning_rate": 3.999773333333334e-05, + "loss": 2.1011627197265623, + "step": 150100 + }, + { + "epoch": 20.026666666666667, + "grad_norm": 0.4213844835758209, + "learning_rate": 3.999106666666667e-05, + "loss": 2.1013143920898436, + "step": 150200 + }, + { + "epoch": 20.04, + "grad_norm": 0.4233456254005432, + "learning_rate": 3.99844e-05, + "loss": 2.102215118408203, + "step": 150300 + }, + { + "epoch": 20.053333333333335, + "grad_norm": 0.4110080897808075, + "learning_rate": 3.9977733333333335e-05, + "loss": 2.1024229431152346, + "step": 150400 + }, + { + "epoch": 20.066666666666666, + "grad_norm": 0.43383386731147766, + "learning_rate": 3.997106666666667e-05, + "loss": 2.1043170166015623, + "step": 150500 + }, + { + "epoch": 20.08, + "grad_norm": 0.44916924834251404, + "learning_rate": 3.99644e-05, + "loss": 2.1046258544921876, + "step": 150600 + }, + { + "epoch": 20.093333333333334, + "grad_norm": 0.41945359110832214, + "learning_rate": 3.995773333333334e-05, + "loss": 2.1057843017578124, + "step": 150700 + }, + { + "epoch": 20.106666666666666, + "grad_norm": 0.4138963222503662, + "learning_rate": 3.995106666666667e-05, + "loss": 2.109571533203125, + "step": 150800 + }, + { + "epoch": 20.12, + "grad_norm": 0.4254426956176758, + "learning_rate": 3.99444e-05, + "loss": 2.110528869628906, + "step": 150900 + }, + { + "epoch": 20.133333333333333, + "grad_norm": 0.4162181615829468, + "learning_rate": 3.9937733333333336e-05, + "loss": 2.109608459472656, + "step": 151000 + }, + { + "epoch": 20.14666666666667, + "grad_norm": 0.4359742999076843, + "learning_rate": 3.993106666666667e-05, + "loss": 2.111918640136719, + "step": 151100 + }, + { + "epoch": 20.16, + "grad_norm": 0.43765124678611755, + "learning_rate": 3.9924466666666674e-05, + "loss": 2.1102365112304686, + "step": 151200 + }, + { + "epoch": 20.173333333333332, + "grad_norm": 0.4108990728855133, + "learning_rate": 3.99178e-05, + "loss": 2.1093389892578127, + "step": 151300 + }, + { + "epoch": 20.186666666666667, + "grad_norm": 0.44729962944984436, + "learning_rate": 3.991113333333333e-05, + "loss": 2.109452209472656, + "step": 151400 + }, + { + "epoch": 20.2, + "grad_norm": 0.44547468423843384, + "learning_rate": 3.990446666666667e-05, + "loss": 2.112231903076172, + "step": 151500 + }, + { + "epoch": 20.213333333333335, + "grad_norm": 0.41629984974861145, + "learning_rate": 3.98978e-05, + "loss": 2.113887939453125, + "step": 151600 + }, + { + "epoch": 20.226666666666667, + "grad_norm": 0.40394192934036255, + "learning_rate": 3.9891133333333335e-05, + "loss": 2.115534362792969, + "step": 151700 + }, + { + "epoch": 20.24, + "grad_norm": 0.44830042123794556, + "learning_rate": 3.988446666666667e-05, + "loss": 2.1146437072753907, + "step": 151800 + }, + { + "epoch": 20.253333333333334, + "grad_norm": 0.4912000596523285, + "learning_rate": 3.9877800000000006e-05, + "loss": 2.1153712463378906, + "step": 151900 + }, + { + "epoch": 20.266666666666666, + "grad_norm": 0.42249879240989685, + "learning_rate": 3.987113333333333e-05, + "loss": 2.115755615234375, + "step": 152000 + }, + { + "epoch": 20.28, + "grad_norm": 0.4368637204170227, + "learning_rate": 3.9864466666666664e-05, + "loss": 2.116807403564453, + "step": 152100 + }, + { + "epoch": 20.293333333333333, + "grad_norm": 0.4537985920906067, + "learning_rate": 3.98578e-05, + "loss": 2.1168971252441406, + "step": 152200 + }, + { + "epoch": 20.306666666666665, + "grad_norm": 0.4116325378417969, + "learning_rate": 3.9851133333333335e-05, + "loss": 2.1171247863769533, + "step": 152300 + }, + { + "epoch": 20.32, + "grad_norm": 0.4562799632549286, + "learning_rate": 3.984446666666667e-05, + "loss": 2.120128326416016, + "step": 152400 + }, + { + "epoch": 20.333333333333332, + "grad_norm": 0.48379048705101013, + "learning_rate": 3.98378e-05, + "loss": 2.1202543640136717, + "step": 152500 + }, + { + "epoch": 20.346666666666668, + "grad_norm": 0.4196086823940277, + "learning_rate": 3.983113333333334e-05, + "loss": 2.1200096130371096, + "step": 152600 + }, + { + "epoch": 20.36, + "grad_norm": 0.4291480481624603, + "learning_rate": 3.982446666666667e-05, + "loss": 2.1247039794921876, + "step": 152700 + }, + { + "epoch": 20.373333333333335, + "grad_norm": 0.435103178024292, + "learning_rate": 3.98178e-05, + "loss": 2.123348846435547, + "step": 152800 + }, + { + "epoch": 20.386666666666667, + "grad_norm": 0.4345220923423767, + "learning_rate": 3.9811133333333336e-05, + "loss": 2.1262147521972654, + "step": 152900 + }, + { + "epoch": 20.4, + "grad_norm": 0.4328380823135376, + "learning_rate": 3.980446666666667e-05, + "loss": 2.121066131591797, + "step": 153000 + }, + { + "epoch": 20.413333333333334, + "grad_norm": 0.4451119303703308, + "learning_rate": 3.97978e-05, + "loss": 2.1231698608398437, + "step": 153100 + }, + { + "epoch": 20.426666666666666, + "grad_norm": 0.4360395669937134, + "learning_rate": 3.979113333333333e-05, + "loss": 2.125181121826172, + "step": 153200 + }, + { + "epoch": 20.44, + "grad_norm": 0.4354141354560852, + "learning_rate": 3.978453333333333e-05, + "loss": 2.1249436950683593, + "step": 153300 + }, + { + "epoch": 20.453333333333333, + "grad_norm": 0.4377344250679016, + "learning_rate": 3.977786666666667e-05, + "loss": 2.1251399230957033, + "step": 153400 + }, + { + "epoch": 20.466666666666665, + "grad_norm": 0.4143160581588745, + "learning_rate": 3.97712e-05, + "loss": 2.128079681396484, + "step": 153500 + }, + { + "epoch": 20.48, + "grad_norm": 0.42408105731010437, + "learning_rate": 3.9764533333333335e-05, + "loss": 2.1228724670410157, + "step": 153600 + }, + { + "epoch": 20.493333333333332, + "grad_norm": 0.42520079016685486, + "learning_rate": 3.9757866666666674e-05, + "loss": 2.1246131896972655, + "step": 153700 + }, + { + "epoch": 20.506666666666668, + "grad_norm": 0.43026211857795715, + "learning_rate": 3.97512e-05, + "loss": 2.1264944458007813, + "step": 153800 + }, + { + "epoch": 20.52, + "grad_norm": 0.4304378628730774, + "learning_rate": 3.974453333333333e-05, + "loss": 2.128600616455078, + "step": 153900 + }, + { + "epoch": 20.533333333333335, + "grad_norm": 0.4374537765979767, + "learning_rate": 3.9737866666666664e-05, + "loss": 2.127030944824219, + "step": 154000 + }, + { + "epoch": 20.546666666666667, + "grad_norm": 0.42087990045547485, + "learning_rate": 3.9731200000000003e-05, + "loss": 2.127199859619141, + "step": 154100 + }, + { + "epoch": 20.56, + "grad_norm": 0.44808924198150635, + "learning_rate": 3.9724533333333336e-05, + "loss": 2.130141143798828, + "step": 154200 + }, + { + "epoch": 20.573333333333334, + "grad_norm": 0.4425102770328522, + "learning_rate": 3.971786666666667e-05, + "loss": 2.128837432861328, + "step": 154300 + }, + { + "epoch": 20.586666666666666, + "grad_norm": 0.4478192925453186, + "learning_rate": 3.971120000000001e-05, + "loss": 2.126686859130859, + "step": 154400 + }, + { + "epoch": 20.6, + "grad_norm": 0.40875598788261414, + "learning_rate": 3.970453333333333e-05, + "loss": 2.1303999328613283, + "step": 154500 + }, + { + "epoch": 20.613333333333333, + "grad_norm": 0.4193249046802521, + "learning_rate": 3.9697866666666665e-05, + "loss": 2.1299224853515626, + "step": 154600 + }, + { + "epoch": 20.626666666666665, + "grad_norm": 0.42445623874664307, + "learning_rate": 3.9691200000000004e-05, + "loss": 2.129607696533203, + "step": 154700 + }, + { + "epoch": 20.64, + "grad_norm": 0.42908674478530884, + "learning_rate": 3.9684533333333336e-05, + "loss": 2.13080322265625, + "step": 154800 + }, + { + "epoch": 20.653333333333332, + "grad_norm": 0.41622525453567505, + "learning_rate": 3.967786666666667e-05, + "loss": 2.1290174865722657, + "step": 154900 + }, + { + "epoch": 20.666666666666668, + "grad_norm": 0.4262298047542572, + "learning_rate": 3.96712e-05, + "loss": 2.1313914489746093, + "step": 155000 + }, + { + "epoch": 20.68, + "grad_norm": 0.4326687753200531, + "learning_rate": 3.966453333333334e-05, + "loss": 2.1320542907714843, + "step": 155100 + }, + { + "epoch": 20.693333333333335, + "grad_norm": 0.4377034902572632, + "learning_rate": 3.965786666666667e-05, + "loss": 2.1338987731933594, + "step": 155200 + }, + { + "epoch": 20.706666666666667, + "grad_norm": 0.41697245836257935, + "learning_rate": 3.965126666666667e-05, + "loss": 2.1323886108398438, + "step": 155300 + }, + { + "epoch": 20.72, + "grad_norm": 0.4141487777233124, + "learning_rate": 3.96446e-05, + "loss": 2.1330581665039063, + "step": 155400 + }, + { + "epoch": 20.733333333333334, + "grad_norm": 0.44619297981262207, + "learning_rate": 3.9637933333333336e-05, + "loss": 2.133800811767578, + "step": 155500 + }, + { + "epoch": 20.746666666666666, + "grad_norm": 0.4493109881877899, + "learning_rate": 3.963126666666667e-05, + "loss": 2.1314244079589844, + "step": 155600 + }, + { + "epoch": 20.76, + "grad_norm": 0.42815864086151123, + "learning_rate": 3.96246e-05, + "loss": 2.1383274841308593, + "step": 155700 + }, + { + "epoch": 20.773333333333333, + "grad_norm": 0.42495793104171753, + "learning_rate": 3.961793333333333e-05, + "loss": 2.134236602783203, + "step": 155800 + }, + { + "epoch": 20.786666666666665, + "grad_norm": 0.43157216906547546, + "learning_rate": 3.961126666666667e-05, + "loss": 2.1373394775390624, + "step": 155900 + }, + { + "epoch": 20.8, + "grad_norm": 0.4456236958503723, + "learning_rate": 3.9604600000000004e-05, + "loss": 2.13835693359375, + "step": 156000 + }, + { + "epoch": 20.813333333333333, + "grad_norm": 0.4253341853618622, + "learning_rate": 3.9597933333333336e-05, + "loss": 2.1404833984375, + "step": 156100 + }, + { + "epoch": 20.826666666666668, + "grad_norm": 0.4421469569206238, + "learning_rate": 3.959126666666667e-05, + "loss": 2.134762725830078, + "step": 156200 + }, + { + "epoch": 20.84, + "grad_norm": 0.4644703269004822, + "learning_rate": 3.95846e-05, + "loss": 2.1389283752441406, + "step": 156300 + }, + { + "epoch": 20.85333333333333, + "grad_norm": 0.4606155753135681, + "learning_rate": 3.957793333333333e-05, + "loss": 2.140909423828125, + "step": 156400 + }, + { + "epoch": 20.866666666666667, + "grad_norm": 0.4364932179450989, + "learning_rate": 3.9571266666666665e-05, + "loss": 2.1414125061035154, + "step": 156500 + }, + { + "epoch": 20.88, + "grad_norm": 0.41626495122909546, + "learning_rate": 3.9564600000000004e-05, + "loss": 2.139465789794922, + "step": 156600 + }, + { + "epoch": 20.893333333333334, + "grad_norm": 0.43859004974365234, + "learning_rate": 3.9557933333333336e-05, + "loss": 2.139771728515625, + "step": 156700 + }, + { + "epoch": 20.906666666666666, + "grad_norm": 0.41686686873435974, + "learning_rate": 3.955126666666667e-05, + "loss": 2.1382980346679688, + "step": 156800 + }, + { + "epoch": 20.92, + "grad_norm": 0.4283873438835144, + "learning_rate": 3.95446e-05, + "loss": 2.138336181640625, + "step": 156900 + }, + { + "epoch": 20.933333333333334, + "grad_norm": 0.433183878660202, + "learning_rate": 3.953793333333334e-05, + "loss": 2.1397128295898438, + "step": 157000 + }, + { + "epoch": 20.946666666666665, + "grad_norm": 0.4318670928478241, + "learning_rate": 3.9531266666666665e-05, + "loss": 2.1437940979003907, + "step": 157100 + }, + { + "epoch": 20.96, + "grad_norm": 0.40270859003067017, + "learning_rate": 3.95246e-05, + "loss": 2.14356689453125, + "step": 157200 + }, + { + "epoch": 20.973333333333333, + "grad_norm": 0.4244714379310608, + "learning_rate": 3.9518e-05, + "loss": 2.139528503417969, + "step": 157300 + }, + { + "epoch": 20.986666666666668, + "grad_norm": 0.45268091559410095, + "learning_rate": 3.9511333333333336e-05, + "loss": 2.145069427490234, + "step": 157400 + }, + { + "epoch": 21.0, + "grad_norm": 0.40507015585899353, + "learning_rate": 3.950466666666667e-05, + "loss": 2.143871154785156, + "step": 157500 + }, + { + "epoch": 21.013333333333332, + "grad_norm": 0.4375498592853546, + "learning_rate": 3.9498e-05, + "loss": 2.076609649658203, + "step": 157600 + }, + { + "epoch": 21.026666666666667, + "grad_norm": 0.4368535876274109, + "learning_rate": 3.949133333333333e-05, + "loss": 2.081154022216797, + "step": 157700 + }, + { + "epoch": 21.04, + "grad_norm": 0.4447578489780426, + "learning_rate": 3.948466666666667e-05, + "loss": 2.080892333984375, + "step": 157800 + }, + { + "epoch": 21.053333333333335, + "grad_norm": 0.46905946731567383, + "learning_rate": 3.9478000000000004e-05, + "loss": 2.082366485595703, + "step": 157900 + }, + { + "epoch": 21.066666666666666, + "grad_norm": 0.4563233554363251, + "learning_rate": 3.9471333333333336e-05, + "loss": 2.081029815673828, + "step": 158000 + }, + { + "epoch": 21.08, + "grad_norm": 0.442941278219223, + "learning_rate": 3.946466666666667e-05, + "loss": 2.079813690185547, + "step": 158100 + }, + { + "epoch": 21.093333333333334, + "grad_norm": 0.44517138600349426, + "learning_rate": 3.9458e-05, + "loss": 2.0806849670410155, + "step": 158200 + }, + { + "epoch": 21.106666666666666, + "grad_norm": 0.4202803075313568, + "learning_rate": 3.945133333333333e-05, + "loss": 2.0857112121582033, + "step": 158300 + }, + { + "epoch": 21.12, + "grad_norm": 0.443814218044281, + "learning_rate": 3.944466666666667e-05, + "loss": 2.0827932739257813, + "step": 158400 + }, + { + "epoch": 21.133333333333333, + "grad_norm": 0.4491780698299408, + "learning_rate": 3.9438000000000004e-05, + "loss": 2.0842088317871093, + "step": 158500 + }, + { + "epoch": 21.14666666666667, + "grad_norm": 0.45883890986442566, + "learning_rate": 3.9431333333333337e-05, + "loss": 2.086201019287109, + "step": 158600 + }, + { + "epoch": 21.16, + "grad_norm": 0.4523576498031616, + "learning_rate": 3.942466666666667e-05, + "loss": 2.088128967285156, + "step": 158700 + }, + { + "epoch": 21.173333333333332, + "grad_norm": 0.44423168897628784, + "learning_rate": 3.9418e-05, + "loss": 2.0868064880371096, + "step": 158800 + }, + { + "epoch": 21.186666666666667, + "grad_norm": 0.43601688742637634, + "learning_rate": 3.941133333333333e-05, + "loss": 2.089644470214844, + "step": 158900 + }, + { + "epoch": 21.2, + "grad_norm": 0.46989673376083374, + "learning_rate": 3.9404666666666666e-05, + "loss": 2.093050231933594, + "step": 159000 + }, + { + "epoch": 21.213333333333335, + "grad_norm": 0.43255218863487244, + "learning_rate": 3.9398000000000005e-05, + "loss": 2.0879270935058596, + "step": 159100 + }, + { + "epoch": 21.226666666666667, + "grad_norm": 0.49605920910835266, + "learning_rate": 3.939133333333334e-05, + "loss": 2.0937208557128906, + "step": 159200 + }, + { + "epoch": 21.24, + "grad_norm": 0.45772337913513184, + "learning_rate": 3.9384733333333336e-05, + "loss": 2.088824462890625, + "step": 159300 + }, + { + "epoch": 21.253333333333334, + "grad_norm": 0.47145646810531616, + "learning_rate": 3.937806666666667e-05, + "loss": 2.093097839355469, + "step": 159400 + }, + { + "epoch": 21.266666666666666, + "grad_norm": 0.4515535235404968, + "learning_rate": 3.93714e-05, + "loss": 2.0927359008789064, + "step": 159500 + }, + { + "epoch": 21.28, + "grad_norm": 0.4473794102668762, + "learning_rate": 3.936473333333334e-05, + "loss": 2.09676513671875, + "step": 159600 + }, + { + "epoch": 21.293333333333333, + "grad_norm": 0.4367310106754303, + "learning_rate": 3.935806666666667e-05, + "loss": 2.101490173339844, + "step": 159700 + }, + { + "epoch": 21.306666666666665, + "grad_norm": 0.4792206585407257, + "learning_rate": 3.93514e-05, + "loss": 2.0952803039550782, + "step": 159800 + }, + { + "epoch": 21.32, + "grad_norm": 0.47740694880485535, + "learning_rate": 3.9344733333333336e-05, + "loss": 2.095529022216797, + "step": 159900 + }, + { + "epoch": 21.333333333333332, + "grad_norm": 0.4495086371898651, + "learning_rate": 3.933806666666667e-05, + "loss": 2.0941035461425783, + "step": 160000 + }, + { + "epoch": 21.346666666666668, + "grad_norm": 0.45994919538497925, + "learning_rate": 3.93314e-05, + "loss": 2.097761993408203, + "step": 160100 + }, + { + "epoch": 21.36, + "grad_norm": 0.45980381965637207, + "learning_rate": 3.932473333333333e-05, + "loss": 2.103887634277344, + "step": 160200 + }, + { + "epoch": 21.373333333333335, + "grad_norm": 0.4462270438671112, + "learning_rate": 3.931806666666667e-05, + "loss": 2.1018940734863283, + "step": 160300 + }, + { + "epoch": 21.386666666666667, + "grad_norm": 0.44747424125671387, + "learning_rate": 3.9311400000000004e-05, + "loss": 2.100036163330078, + "step": 160400 + }, + { + "epoch": 21.4, + "grad_norm": 0.45789986848831177, + "learning_rate": 3.930473333333334e-05, + "loss": 2.097904052734375, + "step": 160500 + }, + { + "epoch": 21.413333333333334, + "grad_norm": 0.4360867440700531, + "learning_rate": 3.929806666666667e-05, + "loss": 2.100706787109375, + "step": 160600 + }, + { + "epoch": 21.426666666666666, + "grad_norm": 0.4504407048225403, + "learning_rate": 3.92914e-05, + "loss": 2.1013177490234374, + "step": 160700 + }, + { + "epoch": 21.44, + "grad_norm": 0.44968169927597046, + "learning_rate": 3.9284733333333334e-05, + "loss": 2.1003431701660156, + "step": 160800 + }, + { + "epoch": 21.453333333333333, + "grad_norm": 0.4681168794631958, + "learning_rate": 3.9278066666666666e-05, + "loss": 2.100907440185547, + "step": 160900 + }, + { + "epoch": 21.466666666666665, + "grad_norm": 0.4619245231151581, + "learning_rate": 3.9271400000000005e-05, + "loss": 2.103074035644531, + "step": 161000 + }, + { + "epoch": 21.48, + "grad_norm": 0.46537071466445923, + "learning_rate": 3.926473333333334e-05, + "loss": 2.1030101013183593, + "step": 161100 + }, + { + "epoch": 21.493333333333332, + "grad_norm": 0.44652751088142395, + "learning_rate": 3.925806666666667e-05, + "loss": 2.1046063232421877, + "step": 161200 + }, + { + "epoch": 21.506666666666668, + "grad_norm": 0.4665990173816681, + "learning_rate": 3.925146666666667e-05, + "loss": 2.103731842041016, + "step": 161300 + }, + { + "epoch": 21.52, + "grad_norm": 0.4317059814929962, + "learning_rate": 3.92448e-05, + "loss": 2.1036187744140626, + "step": 161400 + }, + { + "epoch": 21.533333333333335, + "grad_norm": 0.435001015663147, + "learning_rate": 3.923813333333334e-05, + "loss": 2.1071646118164065, + "step": 161500 + }, + { + "epoch": 21.546666666666667, + "grad_norm": 0.453155517578125, + "learning_rate": 3.9231466666666665e-05, + "loss": 2.104129638671875, + "step": 161600 + }, + { + "epoch": 21.56, + "grad_norm": 0.4656548798084259, + "learning_rate": 3.92248e-05, + "loss": 2.1059341430664062, + "step": 161700 + }, + { + "epoch": 21.573333333333334, + "grad_norm": 0.4497198164463043, + "learning_rate": 3.9218133333333337e-05, + "loss": 2.107401885986328, + "step": 161800 + }, + { + "epoch": 21.586666666666666, + "grad_norm": 0.45339301228523254, + "learning_rate": 3.921146666666667e-05, + "loss": 2.107149658203125, + "step": 161900 + }, + { + "epoch": 21.6, + "grad_norm": 0.46817344427108765, + "learning_rate": 3.92048e-05, + "loss": 2.1110685729980467, + "step": 162000 + }, + { + "epoch": 21.613333333333333, + "grad_norm": 0.4366016983985901, + "learning_rate": 3.9198133333333333e-05, + "loss": 2.1120893859863283, + "step": 162100 + }, + { + "epoch": 21.626666666666665, + "grad_norm": 0.4366924464702606, + "learning_rate": 3.919146666666667e-05, + "loss": 2.108365173339844, + "step": 162200 + }, + { + "epoch": 21.64, + "grad_norm": 0.4303394556045532, + "learning_rate": 3.91848e-05, + "loss": 2.1109800720214844, + "step": 162300 + }, + { + "epoch": 21.653333333333332, + "grad_norm": 0.4512556791305542, + "learning_rate": 3.917813333333333e-05, + "loss": 2.1110675048828127, + "step": 162400 + }, + { + "epoch": 21.666666666666668, + "grad_norm": 0.4542624056339264, + "learning_rate": 3.917146666666667e-05, + "loss": 2.1098895263671875, + "step": 162500 + }, + { + "epoch": 21.68, + "grad_norm": 0.4364491403102875, + "learning_rate": 3.91648e-05, + "loss": 2.1100592041015624, + "step": 162600 + }, + { + "epoch": 21.693333333333335, + "grad_norm": 0.4367804229259491, + "learning_rate": 3.9158133333333334e-05, + "loss": 2.111675109863281, + "step": 162700 + }, + { + "epoch": 21.706666666666667, + "grad_norm": 0.4421547055244446, + "learning_rate": 3.915146666666667e-05, + "loss": 2.113012390136719, + "step": 162800 + }, + { + "epoch": 21.72, + "grad_norm": 0.4768464267253876, + "learning_rate": 3.9144800000000005e-05, + "loss": 2.112431945800781, + "step": 162900 + }, + { + "epoch": 21.733333333333334, + "grad_norm": 0.470196008682251, + "learning_rate": 3.913813333333334e-05, + "loss": 2.115672760009766, + "step": 163000 + }, + { + "epoch": 21.746666666666666, + "grad_norm": 0.45648738741874695, + "learning_rate": 3.913146666666667e-05, + "loss": 2.113785858154297, + "step": 163100 + }, + { + "epoch": 21.76, + "grad_norm": 0.43980491161346436, + "learning_rate": 3.91248e-05, + "loss": 2.1120240783691404, + "step": 163200 + }, + { + "epoch": 21.773333333333333, + "grad_norm": 0.4451877772808075, + "learning_rate": 3.91182e-05, + "loss": 2.1176910400390625, + "step": 163300 + }, + { + "epoch": 21.786666666666665, + "grad_norm": 0.4444795250892639, + "learning_rate": 3.911153333333333e-05, + "loss": 2.1153562927246092, + "step": 163400 + }, + { + "epoch": 21.8, + "grad_norm": 0.45172980427742004, + "learning_rate": 3.9104866666666666e-05, + "loss": 2.1131268310546876, + "step": 163500 + }, + { + "epoch": 21.813333333333333, + "grad_norm": 0.44000083208084106, + "learning_rate": 3.9098200000000005e-05, + "loss": 2.1168165588378907, + "step": 163600 + }, + { + "epoch": 21.826666666666668, + "grad_norm": 0.43779900670051575, + "learning_rate": 3.909153333333334e-05, + "loss": 2.117685546875, + "step": 163700 + }, + { + "epoch": 21.84, + "grad_norm": 0.4511207640171051, + "learning_rate": 3.908486666666667e-05, + "loss": 2.1206480407714845, + "step": 163800 + }, + { + "epoch": 21.85333333333333, + "grad_norm": 0.44668668508529663, + "learning_rate": 3.90782e-05, + "loss": 2.1188619995117186, + "step": 163900 + }, + { + "epoch": 21.866666666666667, + "grad_norm": 0.4455656409263611, + "learning_rate": 3.907153333333334e-05, + "loss": 2.1155546569824217, + "step": 164000 + }, + { + "epoch": 21.88, + "grad_norm": 0.4516298770904541, + "learning_rate": 3.9064866666666666e-05, + "loss": 2.1179278564453123, + "step": 164100 + }, + { + "epoch": 21.893333333333334, + "grad_norm": 0.46956104040145874, + "learning_rate": 3.90582e-05, + "loss": 2.1160130310058594, + "step": 164200 + }, + { + "epoch": 21.906666666666666, + "grad_norm": 0.449705570936203, + "learning_rate": 3.905153333333334e-05, + "loss": 2.117757568359375, + "step": 164300 + }, + { + "epoch": 21.92, + "grad_norm": 0.4311459958553314, + "learning_rate": 3.904486666666667e-05, + "loss": 2.1182154846191406, + "step": 164400 + }, + { + "epoch": 21.933333333333334, + "grad_norm": 0.45638683438301086, + "learning_rate": 3.90382e-05, + "loss": 2.118441925048828, + "step": 164500 + }, + { + "epoch": 21.946666666666665, + "grad_norm": 0.4434240758419037, + "learning_rate": 3.9031533333333334e-05, + "loss": 2.1223045349121095, + "step": 164600 + }, + { + "epoch": 21.96, + "grad_norm": 0.46672335267066956, + "learning_rate": 3.902486666666667e-05, + "loss": 2.1176348876953126, + "step": 164700 + }, + { + "epoch": 21.973333333333333, + "grad_norm": 0.4445401430130005, + "learning_rate": 3.90182e-05, + "loss": 2.1194577026367187, + "step": 164800 + }, + { + "epoch": 21.986666666666668, + "grad_norm": 0.4556116461753845, + "learning_rate": 3.901153333333333e-05, + "loss": 2.124223175048828, + "step": 164900 + }, + { + "epoch": 22.0, + "grad_norm": 0.46571463346481323, + "learning_rate": 3.900486666666667e-05, + "loss": 2.123155517578125, + "step": 165000 + }, + { + "epoch": 22.013333333333332, + "grad_norm": 0.4723842740058899, + "learning_rate": 3.89982e-05, + "loss": 2.052652130126953, + "step": 165100 + }, + { + "epoch": 22.026666666666667, + "grad_norm": 0.4425469636917114, + "learning_rate": 3.8991533333333334e-05, + "loss": 2.052018890380859, + "step": 165200 + }, + { + "epoch": 22.04, + "grad_norm": 0.47095298767089844, + "learning_rate": 3.8984933333333333e-05, + "loss": 2.055422058105469, + "step": 165300 + }, + { + "epoch": 22.053333333333335, + "grad_norm": 0.46141520142555237, + "learning_rate": 3.8978266666666666e-05, + "loss": 2.0570689392089845, + "step": 165400 + }, + { + "epoch": 22.066666666666666, + "grad_norm": 0.471127450466156, + "learning_rate": 3.8971600000000005e-05, + "loss": 2.058157958984375, + "step": 165500 + }, + { + "epoch": 22.08, + "grad_norm": 0.48794686794281006, + "learning_rate": 3.896493333333334e-05, + "loss": 2.0558770751953124, + "step": 165600 + }, + { + "epoch": 22.093333333333334, + "grad_norm": 0.4672645926475525, + "learning_rate": 3.895826666666667e-05, + "loss": 2.061310272216797, + "step": 165700 + }, + { + "epoch": 22.106666666666666, + "grad_norm": 0.4862455427646637, + "learning_rate": 3.89516e-05, + "loss": 2.0606340026855468, + "step": 165800 + }, + { + "epoch": 22.12, + "grad_norm": 0.4853212833404541, + "learning_rate": 3.8944933333333334e-05, + "loss": 2.061323699951172, + "step": 165900 + }, + { + "epoch": 22.133333333333333, + "grad_norm": 0.4732306897640228, + "learning_rate": 3.8938266666666666e-05, + "loss": 2.0635455322265623, + "step": 166000 + }, + { + "epoch": 22.14666666666667, + "grad_norm": 0.4706946611404419, + "learning_rate": 3.89316e-05, + "loss": 2.063304595947266, + "step": 166100 + }, + { + "epoch": 22.16, + "grad_norm": 0.47907590866088867, + "learning_rate": 3.892493333333334e-05, + "loss": 2.063959503173828, + "step": 166200 + }, + { + "epoch": 22.173333333333332, + "grad_norm": 0.4727233946323395, + "learning_rate": 3.891826666666667e-05, + "loss": 2.0665432739257814, + "step": 166300 + }, + { + "epoch": 22.186666666666667, + "grad_norm": 0.450941264629364, + "learning_rate": 3.89116e-05, + "loss": 2.069130706787109, + "step": 166400 + }, + { + "epoch": 22.2, + "grad_norm": 0.4796398878097534, + "learning_rate": 3.890493333333334e-05, + "loss": 2.066522521972656, + "step": 166500 + }, + { + "epoch": 22.213333333333335, + "grad_norm": 0.44986021518707275, + "learning_rate": 3.8898266666666667e-05, + "loss": 2.068634033203125, + "step": 166600 + }, + { + "epoch": 22.226666666666667, + "grad_norm": 0.4744917154312134, + "learning_rate": 3.88916e-05, + "loss": 2.071067047119141, + "step": 166700 + }, + { + "epoch": 22.24, + "grad_norm": 0.4827626943588257, + "learning_rate": 3.888493333333333e-05, + "loss": 2.0700621032714843, + "step": 166800 + }, + { + "epoch": 22.253333333333334, + "grad_norm": 0.46759262681007385, + "learning_rate": 3.887826666666667e-05, + "loss": 2.0715043640136717, + "step": 166900 + }, + { + "epoch": 22.266666666666666, + "grad_norm": 0.4774859845638275, + "learning_rate": 3.88716e-05, + "loss": 2.071572113037109, + "step": 167000 + }, + { + "epoch": 22.28, + "grad_norm": 0.46241122484207153, + "learning_rate": 3.8864933333333335e-05, + "loss": 2.070568389892578, + "step": 167100 + }, + { + "epoch": 22.293333333333333, + "grad_norm": 0.46631354093551636, + "learning_rate": 3.8858266666666674e-05, + "loss": 2.067816162109375, + "step": 167200 + }, + { + "epoch": 22.306666666666665, + "grad_norm": 0.4631997346878052, + "learning_rate": 3.885166666666667e-05, + "loss": 2.06839599609375, + "step": 167300 + }, + { + "epoch": 22.32, + "grad_norm": 0.4765164852142334, + "learning_rate": 3.8845000000000005e-05, + "loss": 2.075525665283203, + "step": 167400 + }, + { + "epoch": 22.333333333333332, + "grad_norm": 0.4727115035057068, + "learning_rate": 3.883833333333334e-05, + "loss": 2.07642822265625, + "step": 167500 + }, + { + "epoch": 22.346666666666668, + "grad_norm": 0.455098956823349, + "learning_rate": 3.883166666666667e-05, + "loss": 2.078255157470703, + "step": 167600 + }, + { + "epoch": 22.36, + "grad_norm": 0.49284619092941284, + "learning_rate": 3.8825e-05, + "loss": 2.0744464111328127, + "step": 167700 + }, + { + "epoch": 22.373333333333335, + "grad_norm": 0.4699040651321411, + "learning_rate": 3.8818333333333334e-05, + "loss": 2.0767945861816406, + "step": 167800 + }, + { + "epoch": 22.386666666666667, + "grad_norm": 0.45493465662002563, + "learning_rate": 3.8811666666666666e-05, + "loss": 2.0780029296875, + "step": 167900 + }, + { + "epoch": 22.4, + "grad_norm": 0.4484899938106537, + "learning_rate": 3.8805000000000005e-05, + "loss": 2.080047302246094, + "step": 168000 + }, + { + "epoch": 22.413333333333334, + "grad_norm": 0.47381719946861267, + "learning_rate": 3.879833333333334e-05, + "loss": 2.077555694580078, + "step": 168100 + }, + { + "epoch": 22.426666666666666, + "grad_norm": 0.46231788396835327, + "learning_rate": 3.879166666666667e-05, + "loss": 2.079783172607422, + "step": 168200 + }, + { + "epoch": 22.44, + "grad_norm": 0.47428375482559204, + "learning_rate": 3.8785e-05, + "loss": 2.0778314208984376, + "step": 168300 + }, + { + "epoch": 22.453333333333333, + "grad_norm": 0.4597417116165161, + "learning_rate": 3.8778333333333334e-05, + "loss": 2.0790553283691406, + "step": 168400 + }, + { + "epoch": 22.466666666666665, + "grad_norm": 0.4623263478279114, + "learning_rate": 3.877166666666667e-05, + "loss": 2.0836700439453124, + "step": 168500 + }, + { + "epoch": 22.48, + "grad_norm": 0.4659540355205536, + "learning_rate": 3.8765e-05, + "loss": 2.0827793884277344, + "step": 168600 + }, + { + "epoch": 22.493333333333332, + "grad_norm": 0.47923794388771057, + "learning_rate": 3.875833333333334e-05, + "loss": 2.080955810546875, + "step": 168700 + }, + { + "epoch": 22.506666666666668, + "grad_norm": 0.4475663900375366, + "learning_rate": 3.875166666666667e-05, + "loss": 2.0815643310546874, + "step": 168800 + }, + { + "epoch": 22.52, + "grad_norm": 0.4618177115917206, + "learning_rate": 3.8745e-05, + "loss": 2.086231689453125, + "step": 168900 + }, + { + "epoch": 22.533333333333335, + "grad_norm": 0.4708126187324524, + "learning_rate": 3.8738333333333335e-05, + "loss": 2.080514373779297, + "step": 169000 + }, + { + "epoch": 22.546666666666667, + "grad_norm": 0.49023526906967163, + "learning_rate": 3.873166666666667e-05, + "loss": 2.084552001953125, + "step": 169100 + }, + { + "epoch": 22.56, + "grad_norm": 0.48341864347457886, + "learning_rate": 3.8725e-05, + "loss": 2.083937530517578, + "step": 169200 + }, + { + "epoch": 22.573333333333334, + "grad_norm": 0.4568435251712799, + "learning_rate": 3.87184e-05, + "loss": 2.0851905822753904, + "step": 169300 + }, + { + "epoch": 22.586666666666666, + "grad_norm": 0.46612024307250977, + "learning_rate": 3.871173333333333e-05, + "loss": 2.084072265625, + "step": 169400 + }, + { + "epoch": 22.6, + "grad_norm": 0.4634513258934021, + "learning_rate": 3.870506666666667e-05, + "loss": 2.0853956604003905, + "step": 169500 + }, + { + "epoch": 22.613333333333333, + "grad_norm": 0.46668726205825806, + "learning_rate": 3.86984e-05, + "loss": 2.084056854248047, + "step": 169600 + }, + { + "epoch": 22.626666666666665, + "grad_norm": 0.4836789667606354, + "learning_rate": 3.8691733333333334e-05, + "loss": 2.0863687133789064, + "step": 169700 + }, + { + "epoch": 22.64, + "grad_norm": 0.48101136088371277, + "learning_rate": 3.8685066666666667e-05, + "loss": 2.0898916625976565, + "step": 169800 + }, + { + "epoch": 22.653333333333332, + "grad_norm": 0.4785110652446747, + "learning_rate": 3.8678400000000006e-05, + "loss": 2.088622589111328, + "step": 169900 + }, + { + "epoch": 22.666666666666668, + "grad_norm": 0.4937325716018677, + "learning_rate": 3.867173333333334e-05, + "loss": 2.0871990966796874, + "step": 170000 + }, + { + "epoch": 22.68, + "grad_norm": 0.5297033786773682, + "learning_rate": 3.866506666666666e-05, + "loss": 2.09009033203125, + "step": 170100 + }, + { + "epoch": 22.693333333333335, + "grad_norm": 0.4711852967739105, + "learning_rate": 3.86584e-05, + "loss": 2.089188690185547, + "step": 170200 + }, + { + "epoch": 22.706666666666667, + "grad_norm": 0.5121586322784424, + "learning_rate": 3.8651733333333335e-05, + "loss": 2.0879640197753906, + "step": 170300 + }, + { + "epoch": 22.72, + "grad_norm": 0.4589405953884125, + "learning_rate": 3.864506666666667e-05, + "loss": 2.088956298828125, + "step": 170400 + }, + { + "epoch": 22.733333333333334, + "grad_norm": 0.4850880205631256, + "learning_rate": 3.86384e-05, + "loss": 2.090540466308594, + "step": 170500 + }, + { + "epoch": 22.746666666666666, + "grad_norm": 0.47406673431396484, + "learning_rate": 3.863173333333334e-05, + "loss": 2.090264892578125, + "step": 170600 + }, + { + "epoch": 22.76, + "grad_norm": 0.45255404710769653, + "learning_rate": 3.862506666666667e-05, + "loss": 2.0918638610839846, + "step": 170700 + }, + { + "epoch": 22.773333333333333, + "grad_norm": 0.5285037159919739, + "learning_rate": 3.86184e-05, + "loss": 2.0930937194824217, + "step": 170800 + }, + { + "epoch": 22.786666666666665, + "grad_norm": 0.45995503664016724, + "learning_rate": 3.8611733333333335e-05, + "loss": 2.0932025146484374, + "step": 170900 + }, + { + "epoch": 22.8, + "grad_norm": 0.4696432054042816, + "learning_rate": 3.860506666666667e-05, + "loss": 2.0916217041015623, + "step": 171000 + }, + { + "epoch": 22.813333333333333, + "grad_norm": 0.4758760929107666, + "learning_rate": 3.85984e-05, + "loss": 2.0916656494140624, + "step": 171100 + }, + { + "epoch": 22.826666666666668, + "grad_norm": 0.4615608751773834, + "learning_rate": 3.859173333333334e-05, + "loss": 2.0914183044433594, + "step": 171200 + }, + { + "epoch": 22.84, + "grad_norm": 0.4628288149833679, + "learning_rate": 3.858513333333333e-05, + "loss": 2.0931082153320313, + "step": 171300 + }, + { + "epoch": 22.85333333333333, + "grad_norm": 0.47100356221199036, + "learning_rate": 3.857846666666667e-05, + "loss": 2.0922206115722655, + "step": 171400 + }, + { + "epoch": 22.866666666666667, + "grad_norm": 0.4577377736568451, + "learning_rate": 3.85718e-05, + "loss": 2.094632263183594, + "step": 171500 + }, + { + "epoch": 22.88, + "grad_norm": 0.4824475944042206, + "learning_rate": 3.8565133333333335e-05, + "loss": 2.0955517578125, + "step": 171600 + }, + { + "epoch": 22.893333333333334, + "grad_norm": 0.46944087743759155, + "learning_rate": 3.8558466666666674e-05, + "loss": 2.0956381225585936, + "step": 171700 + }, + { + "epoch": 22.906666666666666, + "grad_norm": 0.4713914692401886, + "learning_rate": 3.8551800000000006e-05, + "loss": 2.0936820983886717, + "step": 171800 + }, + { + "epoch": 22.92, + "grad_norm": 0.4607670307159424, + "learning_rate": 3.854513333333333e-05, + "loss": 2.093219757080078, + "step": 171900 + }, + { + "epoch": 22.933333333333334, + "grad_norm": 0.46481382846832275, + "learning_rate": 3.853846666666667e-05, + "loss": 2.0938676452636718, + "step": 172000 + }, + { + "epoch": 22.946666666666665, + "grad_norm": 0.46048957109451294, + "learning_rate": 3.85318e-05, + "loss": 2.0956375122070314, + "step": 172100 + }, + { + "epoch": 22.96, + "grad_norm": 0.4736049771308899, + "learning_rate": 3.8525133333333335e-05, + "loss": 2.1002877807617186, + "step": 172200 + }, + { + "epoch": 22.973333333333333, + "grad_norm": 0.4825821816921234, + "learning_rate": 3.851846666666667e-05, + "loss": 2.0992372131347654, + "step": 172300 + }, + { + "epoch": 22.986666666666668, + "grad_norm": 0.4482329785823822, + "learning_rate": 3.8511800000000006e-05, + "loss": 2.100669708251953, + "step": 172400 + }, + { + "epoch": 23.0, + "grad_norm": 0.477242648601532, + "learning_rate": 3.850513333333334e-05, + "loss": 2.098603057861328, + "step": 172500 + }, + { + "epoch": 23.013333333333332, + "grad_norm": 0.49231958389282227, + "learning_rate": 3.8498466666666664e-05, + "loss": 2.028154296875, + "step": 172600 + }, + { + "epoch": 23.026666666666667, + "grad_norm": 0.4812023937702179, + "learning_rate": 3.84918e-05, + "loss": 2.0299658203125, + "step": 172700 + }, + { + "epoch": 23.04, + "grad_norm": 0.4930895268917084, + "learning_rate": 3.8485133333333335e-05, + "loss": 2.031252746582031, + "step": 172800 + }, + { + "epoch": 23.053333333333335, + "grad_norm": 0.48605743050575256, + "learning_rate": 3.847846666666667e-05, + "loss": 2.0349273681640625, + "step": 172900 + }, + { + "epoch": 23.066666666666666, + "grad_norm": 0.4839179813861847, + "learning_rate": 3.84718e-05, + "loss": 2.031682891845703, + "step": 173000 + }, + { + "epoch": 23.08, + "grad_norm": 0.5092812180519104, + "learning_rate": 3.846513333333334e-05, + "loss": 2.033275451660156, + "step": 173100 + }, + { + "epoch": 23.093333333333334, + "grad_norm": 0.4731476604938507, + "learning_rate": 3.845853333333334e-05, + "loss": 2.0364311218261717, + "step": 173200 + }, + { + "epoch": 23.106666666666666, + "grad_norm": 0.5190111398696899, + "learning_rate": 3.845186666666667e-05, + "loss": 2.0340025329589846, + "step": 173300 + }, + { + "epoch": 23.12, + "grad_norm": 0.48105064034461975, + "learning_rate": 3.84452e-05, + "loss": 2.037009582519531, + "step": 173400 + }, + { + "epoch": 23.133333333333333, + "grad_norm": 0.52114337682724, + "learning_rate": 3.8438533333333335e-05, + "loss": 2.0407159423828123, + "step": 173500 + }, + { + "epoch": 23.14666666666667, + "grad_norm": 0.4885977804660797, + "learning_rate": 3.843186666666667e-05, + "loss": 2.03779541015625, + "step": 173600 + }, + { + "epoch": 23.16, + "grad_norm": 0.48264557123184204, + "learning_rate": 3.84252e-05, + "loss": 2.0406539916992186, + "step": 173700 + }, + { + "epoch": 23.173333333333332, + "grad_norm": 0.4905865490436554, + "learning_rate": 3.841853333333333e-05, + "loss": 2.0425653076171875, + "step": 173800 + }, + { + "epoch": 23.186666666666667, + "grad_norm": 0.5025938749313354, + "learning_rate": 3.841186666666667e-05, + "loss": 2.0424517822265624, + "step": 173900 + }, + { + "epoch": 23.2, + "grad_norm": 0.4712689220905304, + "learning_rate": 3.84052e-05, + "loss": 2.0432838439941405, + "step": 174000 + }, + { + "epoch": 23.213333333333335, + "grad_norm": 0.48581528663635254, + "learning_rate": 3.8398533333333335e-05, + "loss": 2.0483238220214846, + "step": 174100 + }, + { + "epoch": 23.226666666666667, + "grad_norm": 0.4895326793193817, + "learning_rate": 3.839186666666667e-05, + "loss": 2.0430706787109374, + "step": 174200 + }, + { + "epoch": 23.24, + "grad_norm": 0.48464319109916687, + "learning_rate": 3.8385200000000006e-05, + "loss": 2.041295623779297, + "step": 174300 + }, + { + "epoch": 23.253333333333334, + "grad_norm": 0.47198572754859924, + "learning_rate": 3.837853333333333e-05, + "loss": 2.046827850341797, + "step": 174400 + }, + { + "epoch": 23.266666666666666, + "grad_norm": 0.5147217512130737, + "learning_rate": 3.8371866666666664e-05, + "loss": 2.04611572265625, + "step": 174500 + }, + { + "epoch": 23.28, + "grad_norm": 0.597183108329773, + "learning_rate": 3.83652e-05, + "loss": 2.0490652465820314, + "step": 174600 + }, + { + "epoch": 23.293333333333333, + "grad_norm": 0.4989413022994995, + "learning_rate": 3.8358533333333336e-05, + "loss": 2.0499391174316406, + "step": 174700 + }, + { + "epoch": 23.306666666666665, + "grad_norm": 0.48632174730300903, + "learning_rate": 3.835186666666667e-05, + "loss": 2.046672515869141, + "step": 174800 + }, + { + "epoch": 23.32, + "grad_norm": 0.5028402209281921, + "learning_rate": 3.83452e-05, + "loss": 2.05111572265625, + "step": 174900 + }, + { + "epoch": 23.333333333333332, + "grad_norm": 0.5091901421546936, + "learning_rate": 3.833853333333334e-05, + "loss": 2.051913299560547, + "step": 175000 + }, + { + "epoch": 23.346666666666668, + "grad_norm": 0.4841155409812927, + "learning_rate": 3.8331866666666665e-05, + "loss": 2.051449737548828, + "step": 175100 + }, + { + "epoch": 23.36, + "grad_norm": 0.4835347533226013, + "learning_rate": 3.83252e-05, + "loss": 2.050365295410156, + "step": 175200 + }, + { + "epoch": 23.373333333333335, + "grad_norm": 0.4950560927391052, + "learning_rate": 3.8318533333333336e-05, + "loss": 2.0553269958496094, + "step": 175300 + }, + { + "epoch": 23.386666666666667, + "grad_norm": 0.4722176492214203, + "learning_rate": 3.831186666666667e-05, + "loss": 2.049596862792969, + "step": 175400 + }, + { + "epoch": 23.4, + "grad_norm": 0.48539531230926514, + "learning_rate": 3.83052e-05, + "loss": 2.055406036376953, + "step": 175500 + }, + { + "epoch": 23.413333333333334, + "grad_norm": 0.49876898527145386, + "learning_rate": 3.829853333333334e-05, + "loss": 2.055661163330078, + "step": 175600 + }, + { + "epoch": 23.426666666666666, + "grad_norm": 0.48749157786369324, + "learning_rate": 3.829186666666667e-05, + "loss": 2.053136749267578, + "step": 175700 + }, + { + "epoch": 23.44, + "grad_norm": 0.49499818682670593, + "learning_rate": 3.8285200000000004e-05, + "loss": 2.049785614013672, + "step": 175800 + }, + { + "epoch": 23.453333333333333, + "grad_norm": 0.4992135465145111, + "learning_rate": 3.827853333333333e-05, + "loss": 2.0580978393554688, + "step": 175900 + }, + { + "epoch": 23.466666666666665, + "grad_norm": 0.5279852747917175, + "learning_rate": 3.827186666666667e-05, + "loss": 2.056828918457031, + "step": 176000 + }, + { + "epoch": 23.48, + "grad_norm": 0.4881434440612793, + "learning_rate": 3.82652e-05, + "loss": 2.057747039794922, + "step": 176100 + }, + { + "epoch": 23.493333333333332, + "grad_norm": 0.4738701283931732, + "learning_rate": 3.825853333333333e-05, + "loss": 2.0571058654785155, + "step": 176200 + }, + { + "epoch": 23.506666666666668, + "grad_norm": 0.5095720887184143, + "learning_rate": 3.825186666666667e-05, + "loss": 2.0584869384765625, + "step": 176300 + }, + { + "epoch": 23.52, + "grad_norm": 0.5219035148620605, + "learning_rate": 3.824526666666667e-05, + "loss": 2.0586363220214845, + "step": 176400 + }, + { + "epoch": 23.533333333333335, + "grad_norm": 0.47829073667526245, + "learning_rate": 3.8238600000000004e-05, + "loss": 2.0578681945800783, + "step": 176500 + }, + { + "epoch": 23.546666666666667, + "grad_norm": 0.4869665205478668, + "learning_rate": 3.8231933333333336e-05, + "loss": 2.0592056274414063, + "step": 176600 + }, + { + "epoch": 23.56, + "grad_norm": 0.5007086396217346, + "learning_rate": 3.822526666666667e-05, + "loss": 2.0624826049804685, + "step": 176700 + }, + { + "epoch": 23.573333333333334, + "grad_norm": 0.5046160221099854, + "learning_rate": 3.821860000000001e-05, + "loss": 2.057146453857422, + "step": 176800 + }, + { + "epoch": 23.586666666666666, + "grad_norm": 0.5090702772140503, + "learning_rate": 3.821193333333333e-05, + "loss": 2.060751647949219, + "step": 176900 + }, + { + "epoch": 23.6, + "grad_norm": 0.47376617789268494, + "learning_rate": 3.8205266666666665e-05, + "loss": 2.061948089599609, + "step": 177000 + }, + { + "epoch": 23.613333333333333, + "grad_norm": 0.5011287331581116, + "learning_rate": 3.8198600000000004e-05, + "loss": 2.0626011657714844, + "step": 177100 + }, + { + "epoch": 23.626666666666665, + "grad_norm": 0.47504308819770813, + "learning_rate": 3.8191933333333336e-05, + "loss": 2.062792205810547, + "step": 177200 + }, + { + "epoch": 23.64, + "grad_norm": 0.4749816358089447, + "learning_rate": 3.818526666666667e-05, + "loss": 2.063485412597656, + "step": 177300 + }, + { + "epoch": 23.653333333333332, + "grad_norm": 0.48922663927078247, + "learning_rate": 3.81786e-05, + "loss": 2.065717926025391, + "step": 177400 + }, + { + "epoch": 23.666666666666668, + "grad_norm": 0.5128903985023499, + "learning_rate": 3.817193333333334e-05, + "loss": 2.0668560791015627, + "step": 177500 + }, + { + "epoch": 23.68, + "grad_norm": 0.508452832698822, + "learning_rate": 3.8165266666666665e-05, + "loss": 2.0685348510742188, + "step": 177600 + }, + { + "epoch": 23.693333333333335, + "grad_norm": 0.5150190591812134, + "learning_rate": 3.81586e-05, + "loss": 2.0641282653808593, + "step": 177700 + }, + { + "epoch": 23.706666666666667, + "grad_norm": 0.4919812083244324, + "learning_rate": 3.8151933333333337e-05, + "loss": 2.066805725097656, + "step": 177800 + }, + { + "epoch": 23.72, + "grad_norm": 0.48557278513908386, + "learning_rate": 3.814526666666667e-05, + "loss": 2.066239013671875, + "step": 177900 + }, + { + "epoch": 23.733333333333334, + "grad_norm": 0.500818133354187, + "learning_rate": 3.81386e-05, + "loss": 2.0668170166015627, + "step": 178000 + }, + { + "epoch": 23.746666666666666, + "grad_norm": 0.5056354999542236, + "learning_rate": 3.813193333333333e-05, + "loss": 2.067618103027344, + "step": 178100 + }, + { + "epoch": 23.76, + "grad_norm": 0.4854942858219147, + "learning_rate": 3.812526666666667e-05, + "loss": 2.0688438415527344, + "step": 178200 + }, + { + "epoch": 23.773333333333333, + "grad_norm": 0.48774439096450806, + "learning_rate": 3.8118600000000005e-05, + "loss": 2.072354278564453, + "step": 178300 + }, + { + "epoch": 23.786666666666665, + "grad_norm": 0.4946364462375641, + "learning_rate": 3.811193333333333e-05, + "loss": 2.0678961181640627, + "step": 178400 + }, + { + "epoch": 23.8, + "grad_norm": 0.4886922240257263, + "learning_rate": 3.810526666666667e-05, + "loss": 2.0691818237304687, + "step": 178500 + }, + { + "epoch": 23.813333333333333, + "grad_norm": 0.5024255514144897, + "learning_rate": 3.80986e-05, + "loss": 2.072510223388672, + "step": 178600 + }, + { + "epoch": 23.826666666666668, + "grad_norm": 0.4981136620044708, + "learning_rate": 3.8091933333333334e-05, + "loss": 2.067329864501953, + "step": 178700 + }, + { + "epoch": 23.84, + "grad_norm": 0.48290660977363586, + "learning_rate": 3.8085266666666666e-05, + "loss": 2.0694883728027342, + "step": 178800 + }, + { + "epoch": 23.85333333333333, + "grad_norm": 0.49647679924964905, + "learning_rate": 3.8078600000000005e-05, + "loss": 2.068336639404297, + "step": 178900 + }, + { + "epoch": 23.866666666666667, + "grad_norm": 0.49168041348457336, + "learning_rate": 3.807193333333334e-05, + "loss": 2.0738255310058595, + "step": 179000 + }, + { + "epoch": 23.88, + "grad_norm": 0.49252060055732727, + "learning_rate": 3.806526666666666e-05, + "loss": 2.0729522705078125, + "step": 179100 + }, + { + "epoch": 23.893333333333334, + "grad_norm": 0.49251434206962585, + "learning_rate": 3.80586e-05, + "loss": 2.071816711425781, + "step": 179200 + }, + { + "epoch": 23.906666666666666, + "grad_norm": 0.506790280342102, + "learning_rate": 3.8051933333333334e-05, + "loss": 2.0729002380371093, + "step": 179300 + }, + { + "epoch": 23.92, + "grad_norm": 0.4773724377155304, + "learning_rate": 3.8045266666666666e-05, + "loss": 2.077678680419922, + "step": 179400 + }, + { + "epoch": 23.933333333333334, + "grad_norm": 0.5092328786849976, + "learning_rate": 3.80386e-05, + "loss": 2.07469482421875, + "step": 179500 + }, + { + "epoch": 23.946666666666665, + "grad_norm": 0.4978293776512146, + "learning_rate": 3.803193333333334e-05, + "loss": 2.07491455078125, + "step": 179600 + }, + { + "epoch": 23.96, + "grad_norm": 0.508801281452179, + "learning_rate": 3.802526666666667e-05, + "loss": 2.0768801879882814, + "step": 179700 + }, + { + "epoch": 23.973333333333333, + "grad_norm": 0.4916593134403229, + "learning_rate": 3.80186e-05, + "loss": 2.0758741760253905, + "step": 179800 + }, + { + "epoch": 23.986666666666668, + "grad_norm": 0.5212649703025818, + "learning_rate": 3.8011933333333334e-05, + "loss": 2.0771376037597657, + "step": 179900 + }, + { + "epoch": 24.0, + "grad_norm": 0.4899154007434845, + "learning_rate": 3.800526666666667e-05, + "loss": 2.076003112792969, + "step": 180000 + }, + { + "epoch": 24.013333333333332, + "grad_norm": 0.501743733882904, + "learning_rate": 3.7998666666666666e-05, + "loss": 2.003984069824219, + "step": 180100 + }, + { + "epoch": 24.026666666666667, + "grad_norm": 0.5196168422698975, + "learning_rate": 3.7992e-05, + "loss": 2.0016387939453124, + "step": 180200 + }, + { + "epoch": 24.04, + "grad_norm": 0.5263530015945435, + "learning_rate": 3.798533333333334e-05, + "loss": 2.0039300537109375, + "step": 180300 + }, + { + "epoch": 24.053333333333335, + "grad_norm": 0.4923747777938843, + "learning_rate": 3.797866666666667e-05, + "loss": 2.005165252685547, + "step": 180400 + }, + { + "epoch": 24.066666666666666, + "grad_norm": 0.5033460259437561, + "learning_rate": 3.7972e-05, + "loss": 2.006126708984375, + "step": 180500 + }, + { + "epoch": 24.08, + "grad_norm": 0.5112701058387756, + "learning_rate": 3.7965333333333334e-05, + "loss": 2.0073692321777346, + "step": 180600 + }, + { + "epoch": 24.093333333333334, + "grad_norm": 0.511628270149231, + "learning_rate": 3.795866666666667e-05, + "loss": 2.0070504760742187, + "step": 180700 + }, + { + "epoch": 24.106666666666666, + "grad_norm": 0.5259645581245422, + "learning_rate": 3.7952000000000005e-05, + "loss": 2.005118865966797, + "step": 180800 + }, + { + "epoch": 24.12, + "grad_norm": 0.48191338777542114, + "learning_rate": 3.794533333333333e-05, + "loss": 2.0112799072265624, + "step": 180900 + }, + { + "epoch": 24.133333333333333, + "grad_norm": 0.5414926409721375, + "learning_rate": 3.793866666666667e-05, + "loss": 2.0131875610351564, + "step": 181000 + }, + { + "epoch": 24.14666666666667, + "grad_norm": 0.5131890773773193, + "learning_rate": 3.7932e-05, + "loss": 2.0128208923339845, + "step": 181100 + }, + { + "epoch": 24.16, + "grad_norm": 0.486336350440979, + "learning_rate": 3.7925333333333334e-05, + "loss": 2.017211151123047, + "step": 181200 + }, + { + "epoch": 24.173333333333332, + "grad_norm": 0.49979206919670105, + "learning_rate": 3.7918666666666667e-05, + "loss": 2.013517150878906, + "step": 181300 + }, + { + "epoch": 24.186666666666667, + "grad_norm": 0.508499801158905, + "learning_rate": 3.7912000000000006e-05, + "loss": 2.0146775817871094, + "step": 181400 + }, + { + "epoch": 24.2, + "grad_norm": 0.5656309127807617, + "learning_rate": 3.790533333333334e-05, + "loss": 2.017547607421875, + "step": 181500 + }, + { + "epoch": 24.213333333333335, + "grad_norm": 0.5219641327857971, + "learning_rate": 3.789866666666667e-05, + "loss": 2.0210311889648436, + "step": 181600 + }, + { + "epoch": 24.226666666666667, + "grad_norm": 0.5194352269172668, + "learning_rate": 3.7892e-05, + "loss": 2.016371612548828, + "step": 181700 + }, + { + "epoch": 24.24, + "grad_norm": 0.5241196155548096, + "learning_rate": 3.7885333333333335e-05, + "loss": 2.022900390625, + "step": 181800 + }, + { + "epoch": 24.253333333333334, + "grad_norm": 0.48599502444267273, + "learning_rate": 3.787866666666667e-05, + "loss": 2.0237261962890627, + "step": 181900 + }, + { + "epoch": 24.266666666666666, + "grad_norm": 0.5147618055343628, + "learning_rate": 3.7872e-05, + "loss": 2.023406219482422, + "step": 182000 + }, + { + "epoch": 24.28, + "grad_norm": 0.5101783275604248, + "learning_rate": 3.786533333333334e-05, + "loss": 2.0179656982421874, + "step": 182100 + }, + { + "epoch": 24.293333333333333, + "grad_norm": 0.505097508430481, + "learning_rate": 3.785873333333334e-05, + "loss": 2.0241987609863283, + "step": 182200 + }, + { + "epoch": 24.306666666666665, + "grad_norm": 0.5323469638824463, + "learning_rate": 3.785206666666667e-05, + "loss": 2.0228041076660155, + "step": 182300 + }, + { + "epoch": 24.32, + "grad_norm": 0.5330120325088501, + "learning_rate": 3.78454e-05, + "loss": 2.0276548767089846, + "step": 182400 + }, + { + "epoch": 24.333333333333332, + "grad_norm": 0.5185723900794983, + "learning_rate": 3.7838733333333334e-05, + "loss": 2.027704772949219, + "step": 182500 + }, + { + "epoch": 24.346666666666668, + "grad_norm": 0.5001394152641296, + "learning_rate": 3.783206666666667e-05, + "loss": 2.028656463623047, + "step": 182600 + }, + { + "epoch": 24.36, + "grad_norm": 0.5111181139945984, + "learning_rate": 3.78254e-05, + "loss": 2.0222459411621094, + "step": 182700 + }, + { + "epoch": 24.373333333333335, + "grad_norm": 0.5283573865890503, + "learning_rate": 3.781873333333333e-05, + "loss": 2.025753631591797, + "step": 182800 + }, + { + "epoch": 24.386666666666667, + "grad_norm": 0.5587430000305176, + "learning_rate": 3.781206666666667e-05, + "loss": 2.0282719421386717, + "step": 182900 + }, + { + "epoch": 24.4, + "grad_norm": 0.5276029109954834, + "learning_rate": 3.78054e-05, + "loss": 2.0236598205566407, + "step": 183000 + }, + { + "epoch": 24.413333333333334, + "grad_norm": 0.517819881439209, + "learning_rate": 3.7798733333333335e-05, + "loss": 2.0305661010742186, + "step": 183100 + }, + { + "epoch": 24.426666666666666, + "grad_norm": 0.5286267995834351, + "learning_rate": 3.779206666666667e-05, + "loss": 2.030503387451172, + "step": 183200 + }, + { + "epoch": 24.44, + "grad_norm": 0.5311276912689209, + "learning_rate": 3.7785400000000006e-05, + "loss": 2.0295208740234374, + "step": 183300 + }, + { + "epoch": 24.453333333333333, + "grad_norm": 0.5239437222480774, + "learning_rate": 3.777873333333333e-05, + "loss": 2.032499237060547, + "step": 183400 + }, + { + "epoch": 24.466666666666665, + "grad_norm": 0.5115417242050171, + "learning_rate": 3.7772066666666664e-05, + "loss": 2.0358099365234374, + "step": 183500 + }, + { + "epoch": 24.48, + "grad_norm": 0.5413856506347656, + "learning_rate": 3.77654e-05, + "loss": 2.033902130126953, + "step": 183600 + }, + { + "epoch": 24.493333333333332, + "grad_norm": 0.5350323915481567, + "learning_rate": 3.7758733333333335e-05, + "loss": 2.03102783203125, + "step": 183700 + }, + { + "epoch": 24.506666666666668, + "grad_norm": 0.5200849175453186, + "learning_rate": 3.775206666666667e-05, + "loss": 2.0346524047851564, + "step": 183800 + }, + { + "epoch": 24.52, + "grad_norm": 0.5102962255477905, + "learning_rate": 3.7745400000000006e-05, + "loss": 2.03560791015625, + "step": 183900 + }, + { + "epoch": 24.533333333333335, + "grad_norm": 0.5746884346008301, + "learning_rate": 3.773873333333334e-05, + "loss": 2.0360655212402343, + "step": 184000 + }, + { + "epoch": 24.546666666666667, + "grad_norm": 0.5304731726646423, + "learning_rate": 3.773206666666667e-05, + "loss": 2.0354969787597654, + "step": 184100 + }, + { + "epoch": 24.56, + "grad_norm": 0.5169298648834229, + "learning_rate": 3.772546666666667e-05, + "loss": 2.0382408142089843, + "step": 184200 + }, + { + "epoch": 24.573333333333334, + "grad_norm": 0.5369707345962524, + "learning_rate": 3.77188e-05, + "loss": 2.039522399902344, + "step": 184300 + }, + { + "epoch": 24.586666666666666, + "grad_norm": 0.4798973798751831, + "learning_rate": 3.7712133333333334e-05, + "loss": 2.0367251586914064, + "step": 184400 + }, + { + "epoch": 24.6, + "grad_norm": 0.5089485049247742, + "learning_rate": 3.770546666666667e-05, + "loss": 2.03658203125, + "step": 184500 + }, + { + "epoch": 24.613333333333333, + "grad_norm": 0.5315452814102173, + "learning_rate": 3.76988e-05, + "loss": 2.0440740966796875, + "step": 184600 + }, + { + "epoch": 24.626666666666665, + "grad_norm": 0.5431042313575745, + "learning_rate": 3.769213333333334e-05, + "loss": 2.0387681579589843, + "step": 184700 + }, + { + "epoch": 24.64, + "grad_norm": 0.5244868993759155, + "learning_rate": 3.768546666666667e-05, + "loss": 2.0414497375488283, + "step": 184800 + }, + { + "epoch": 24.653333333333332, + "grad_norm": 0.5108836889266968, + "learning_rate": 3.76788e-05, + "loss": 2.0410122680664062, + "step": 184900 + }, + { + "epoch": 24.666666666666668, + "grad_norm": 0.5050901770591736, + "learning_rate": 3.7672133333333335e-05, + "loss": 2.041776580810547, + "step": 185000 + }, + { + "epoch": 24.68, + "grad_norm": 0.5396665930747986, + "learning_rate": 3.7665466666666674e-05, + "loss": 2.0429249572753907, + "step": 185100 + }, + { + "epoch": 24.693333333333335, + "grad_norm": 0.5454257726669312, + "learning_rate": 3.76588e-05, + "loss": 2.044694671630859, + "step": 185200 + }, + { + "epoch": 24.706666666666667, + "grad_norm": 0.5190442204475403, + "learning_rate": 3.765213333333333e-05, + "loss": 2.04460205078125, + "step": 185300 + }, + { + "epoch": 24.72, + "grad_norm": 0.5234954953193665, + "learning_rate": 3.764546666666667e-05, + "loss": 2.0423243713378905, + "step": 185400 + }, + { + "epoch": 24.733333333333334, + "grad_norm": 0.5175752639770508, + "learning_rate": 3.76388e-05, + "loss": 2.043539276123047, + "step": 185500 + }, + { + "epoch": 24.746666666666666, + "grad_norm": 0.519957423210144, + "learning_rate": 3.7632133333333335e-05, + "loss": 2.0451559448242187, + "step": 185600 + }, + { + "epoch": 24.76, + "grad_norm": 0.49500152468681335, + "learning_rate": 3.762546666666667e-05, + "loss": 2.043379211425781, + "step": 185700 + }, + { + "epoch": 24.773333333333333, + "grad_norm": 0.5160672664642334, + "learning_rate": 3.7618800000000006e-05, + "loss": 2.046691589355469, + "step": 185800 + }, + { + "epoch": 24.786666666666665, + "grad_norm": 0.5067774057388306, + "learning_rate": 3.761213333333333e-05, + "loss": 2.046448211669922, + "step": 185900 + }, + { + "epoch": 24.8, + "grad_norm": 0.537140429019928, + "learning_rate": 3.7605466666666664e-05, + "loss": 2.045804901123047, + "step": 186000 + }, + { + "epoch": 24.813333333333333, + "grad_norm": 0.5184574127197266, + "learning_rate": 3.75988e-05, + "loss": 2.0455780029296875, + "step": 186100 + }, + { + "epoch": 24.826666666666668, + "grad_norm": 0.5265442728996277, + "learning_rate": 3.7592133333333336e-05, + "loss": 2.0486622619628907, + "step": 186200 + }, + { + "epoch": 24.84, + "grad_norm": 0.5227593183517456, + "learning_rate": 3.758546666666667e-05, + "loss": 2.0465821838378906, + "step": 186300 + }, + { + "epoch": 24.85333333333333, + "grad_norm": 0.5115875005722046, + "learning_rate": 3.75788e-05, + "loss": 2.048692321777344, + "step": 186400 + }, + { + "epoch": 24.866666666666667, + "grad_norm": 0.5175586342811584, + "learning_rate": 3.75722e-05, + "loss": 2.04896240234375, + "step": 186500 + }, + { + "epoch": 24.88, + "grad_norm": 0.523460865020752, + "learning_rate": 3.756553333333334e-05, + "loss": 2.0502452087402343, + "step": 186600 + }, + { + "epoch": 24.893333333333334, + "grad_norm": 0.5361924767494202, + "learning_rate": 3.755886666666667e-05, + "loss": 2.0494508361816406, + "step": 186700 + }, + { + "epoch": 24.906666666666666, + "grad_norm": 0.5198230743408203, + "learning_rate": 3.75522e-05, + "loss": 2.0510104370117186, + "step": 186800 + }, + { + "epoch": 24.92, + "grad_norm": 0.5249742269515991, + "learning_rate": 3.7545533333333335e-05, + "loss": 2.05044189453125, + "step": 186900 + }, + { + "epoch": 24.933333333333334, + "grad_norm": 0.5150473117828369, + "learning_rate": 3.753886666666667e-05, + "loss": 2.0530665588378905, + "step": 187000 + }, + { + "epoch": 24.946666666666665, + "grad_norm": 0.5269672870635986, + "learning_rate": 3.75322e-05, + "loss": 2.052723236083984, + "step": 187100 + }, + { + "epoch": 24.96, + "grad_norm": 0.498569518327713, + "learning_rate": 3.752553333333333e-05, + "loss": 2.053250579833984, + "step": 187200 + }, + { + "epoch": 24.973333333333333, + "grad_norm": 0.5326972007751465, + "learning_rate": 3.751886666666667e-05, + "loss": 2.0500621032714843, + "step": 187300 + }, + { + "epoch": 24.986666666666668, + "grad_norm": 0.5814267992973328, + "learning_rate": 3.75122e-05, + "loss": 2.0546443176269533, + "step": 187400 + }, + { + "epoch": 25.0, + "grad_norm": 0.5015130043029785, + "learning_rate": 3.7505533333333335e-05, + "loss": 2.0553138732910154, + "step": 187500 + }, + { + "epoch": 25.013333333333332, + "grad_norm": 0.5198807120323181, + "learning_rate": 3.749886666666667e-05, + "loss": 1.9766946411132813, + "step": 187600 + }, + { + "epoch": 25.026666666666667, + "grad_norm": 0.5337755680084229, + "learning_rate": 3.74922e-05, + "loss": 1.9777664184570312, + "step": 187700 + }, + { + "epoch": 25.04, + "grad_norm": 0.5432220697402954, + "learning_rate": 3.748553333333333e-05, + "loss": 1.9787986755371094, + "step": 187800 + }, + { + "epoch": 25.053333333333335, + "grad_norm": 0.5276835560798645, + "learning_rate": 3.7478866666666664e-05, + "loss": 1.9827880859375, + "step": 187900 + }, + { + "epoch": 25.066666666666666, + "grad_norm": 0.5256075263023376, + "learning_rate": 3.7472200000000004e-05, + "loss": 1.9845838928222657, + "step": 188000 + }, + { + "epoch": 25.08, + "grad_norm": 0.521128237247467, + "learning_rate": 3.7465533333333336e-05, + "loss": 1.984072265625, + "step": 188100 + }, + { + "epoch": 25.093333333333334, + "grad_norm": 0.7402787208557129, + "learning_rate": 3.745886666666667e-05, + "loss": 1.9819233703613282, + "step": 188200 + }, + { + "epoch": 25.106666666666666, + "grad_norm": 0.5602257251739502, + "learning_rate": 3.745220000000001e-05, + "loss": 1.9857809448242187, + "step": 188300 + }, + { + "epoch": 25.12, + "grad_norm": 0.5449258685112, + "learning_rate": 3.744553333333333e-05, + "loss": 1.9836058044433593, + "step": 188400 + }, + { + "epoch": 25.133333333333333, + "grad_norm": 0.5279524326324463, + "learning_rate": 3.7438866666666665e-05, + "loss": 1.9868746948242189, + "step": 188500 + }, + { + "epoch": 25.14666666666667, + "grad_norm": 0.5134731531143188, + "learning_rate": 3.7432200000000004e-05, + "loss": 1.984371337890625, + "step": 188600 + }, + { + "epoch": 25.16, + "grad_norm": 0.534136950969696, + "learning_rate": 3.7425533333333336e-05, + "loss": 1.990037841796875, + "step": 188700 + }, + { + "epoch": 25.173333333333332, + "grad_norm": 0.5440365672111511, + "learning_rate": 3.741886666666667e-05, + "loss": 1.9899058532714844, + "step": 188800 + }, + { + "epoch": 25.186666666666667, + "grad_norm": 0.5396292209625244, + "learning_rate": 3.741226666666667e-05, + "loss": 1.9931028747558595, + "step": 188900 + }, + { + "epoch": 25.2, + "grad_norm": 0.5376026034355164, + "learning_rate": 3.74056e-05, + "loss": 1.99557373046875, + "step": 189000 + }, + { + "epoch": 25.213333333333335, + "grad_norm": 0.5177650451660156, + "learning_rate": 3.739893333333334e-05, + "loss": 1.9946913146972656, + "step": 189100 + }, + { + "epoch": 25.226666666666667, + "grad_norm": 0.5463927984237671, + "learning_rate": 3.739226666666667e-05, + "loss": 1.993941192626953, + "step": 189200 + }, + { + "epoch": 25.24, + "grad_norm": 0.5426744818687439, + "learning_rate": 3.73856e-05, + "loss": 1.9958428955078125, + "step": 189300 + }, + { + "epoch": 25.253333333333334, + "grad_norm": 0.5297708511352539, + "learning_rate": 3.7378933333333336e-05, + "loss": 1.995465087890625, + "step": 189400 + }, + { + "epoch": 25.266666666666666, + "grad_norm": 0.5523133873939514, + "learning_rate": 3.737226666666667e-05, + "loss": 2.0024423217773437, + "step": 189500 + }, + { + "epoch": 25.28, + "grad_norm": 0.551189124584198, + "learning_rate": 3.73656e-05, + "loss": 1.996693115234375, + "step": 189600 + }, + { + "epoch": 25.293333333333333, + "grad_norm": 0.5185670852661133, + "learning_rate": 3.735893333333333e-05, + "loss": 1.9998982238769532, + "step": 189700 + }, + { + "epoch": 25.306666666666665, + "grad_norm": 0.5398461818695068, + "learning_rate": 3.735226666666667e-05, + "loss": 1.9971189880371094, + "step": 189800 + }, + { + "epoch": 25.32, + "grad_norm": 0.5354723930358887, + "learning_rate": 3.7345600000000004e-05, + "loss": 1.9997674560546874, + "step": 189900 + }, + { + "epoch": 25.333333333333332, + "grad_norm": 0.5407664775848389, + "learning_rate": 3.7338933333333336e-05, + "loss": 1.9974674987792969, + "step": 190000 + }, + { + "epoch": 25.346666666666668, + "grad_norm": 0.5344270467758179, + "learning_rate": 3.733226666666667e-05, + "loss": 2.003179473876953, + "step": 190100 + }, + { + "epoch": 25.36, + "grad_norm": 0.5190737247467041, + "learning_rate": 3.73256e-05, + "loss": 2.006910552978516, + "step": 190200 + }, + { + "epoch": 25.373333333333335, + "grad_norm": 0.5444039106369019, + "learning_rate": 3.731893333333333e-05, + "loss": 2.0056292724609377, + "step": 190300 + }, + { + "epoch": 25.386666666666667, + "grad_norm": 0.5827769041061401, + "learning_rate": 3.7312266666666665e-05, + "loss": 2.003057098388672, + "step": 190400 + }, + { + "epoch": 25.4, + "grad_norm": 0.5491002202033997, + "learning_rate": 3.7305600000000004e-05, + "loss": 2.005493469238281, + "step": 190500 + }, + { + "epoch": 25.413333333333334, + "grad_norm": 0.5325082540512085, + "learning_rate": 3.7298933333333336e-05, + "loss": 2.0034739685058596, + "step": 190600 + }, + { + "epoch": 25.426666666666666, + "grad_norm": 0.5534201860427856, + "learning_rate": 3.729226666666667e-05, + "loss": 2.005567169189453, + "step": 190700 + }, + { + "epoch": 25.44, + "grad_norm": 0.5325811505317688, + "learning_rate": 3.72856e-05, + "loss": 2.004087371826172, + "step": 190800 + }, + { + "epoch": 25.453333333333333, + "grad_norm": 0.5336616039276123, + "learning_rate": 3.727893333333333e-05, + "loss": 2.0060054016113282, + "step": 190900 + }, + { + "epoch": 25.466666666666665, + "grad_norm": 0.550896406173706, + "learning_rate": 3.7272266666666665e-05, + "loss": 2.0102296447753907, + "step": 191000 + }, + { + "epoch": 25.48, + "grad_norm": 0.5317057967185974, + "learning_rate": 3.72656e-05, + "loss": 2.0113670349121096, + "step": 191100 + }, + { + "epoch": 25.493333333333332, + "grad_norm": 0.5150067806243896, + "learning_rate": 3.725893333333334e-05, + "loss": 2.013133697509766, + "step": 191200 + }, + { + "epoch": 25.506666666666668, + "grad_norm": 0.5351247787475586, + "learning_rate": 3.725226666666667e-05, + "loss": 2.010963134765625, + "step": 191300 + }, + { + "epoch": 25.52, + "grad_norm": 0.5194895267486572, + "learning_rate": 3.724566666666667e-05, + "loss": 2.012650451660156, + "step": 191400 + }, + { + "epoch": 25.533333333333335, + "grad_norm": 0.539284884929657, + "learning_rate": 3.7239e-05, + "loss": 2.010073394775391, + "step": 191500 + }, + { + "epoch": 25.546666666666667, + "grad_norm": 0.5227241516113281, + "learning_rate": 3.723233333333333e-05, + "loss": 2.011913299560547, + "step": 191600 + }, + { + "epoch": 25.56, + "grad_norm": 0.5342681407928467, + "learning_rate": 3.722566666666667e-05, + "loss": 2.012406921386719, + "step": 191700 + }, + { + "epoch": 25.573333333333334, + "grad_norm": 0.5252745151519775, + "learning_rate": 3.7219000000000004e-05, + "loss": 2.011879577636719, + "step": 191800 + }, + { + "epoch": 25.586666666666666, + "grad_norm": 0.5306975245475769, + "learning_rate": 3.721233333333333e-05, + "loss": 2.0142337036132814, + "step": 191900 + }, + { + "epoch": 25.6, + "grad_norm": 0.5551440119743347, + "learning_rate": 3.720566666666667e-05, + "loss": 2.011077880859375, + "step": 192000 + }, + { + "epoch": 25.613333333333333, + "grad_norm": 0.5400145053863525, + "learning_rate": 3.7199e-05, + "loss": 2.012953643798828, + "step": 192100 + }, + { + "epoch": 25.626666666666665, + "grad_norm": 0.5293111205101013, + "learning_rate": 3.719233333333333e-05, + "loss": 2.0181004333496095, + "step": 192200 + }, + { + "epoch": 25.64, + "grad_norm": 0.5242292284965515, + "learning_rate": 3.7185666666666665e-05, + "loss": 2.017105712890625, + "step": 192300 + }, + { + "epoch": 25.653333333333332, + "grad_norm": 0.5292710065841675, + "learning_rate": 3.7179000000000004e-05, + "loss": 2.0163299560546877, + "step": 192400 + }, + { + "epoch": 25.666666666666668, + "grad_norm": 0.5424890518188477, + "learning_rate": 3.717233333333334e-05, + "loss": 2.015196533203125, + "step": 192500 + }, + { + "epoch": 25.68, + "grad_norm": 0.5193257927894592, + "learning_rate": 3.716566666666667e-05, + "loss": 2.0220237731933595, + "step": 192600 + }, + { + "epoch": 25.693333333333335, + "grad_norm": 0.5442838072776794, + "learning_rate": 3.7159e-05, + "loss": 2.0192355346679687, + "step": 192700 + }, + { + "epoch": 25.706666666666667, + "grad_norm": 0.5463152527809143, + "learning_rate": 3.7152333333333333e-05, + "loss": 2.0164019775390627, + "step": 192800 + }, + { + "epoch": 25.72, + "grad_norm": 0.5344257354736328, + "learning_rate": 3.7145666666666666e-05, + "loss": 2.0162734985351562, + "step": 192900 + }, + { + "epoch": 25.733333333333334, + "grad_norm": 0.5351117253303528, + "learning_rate": 3.7139000000000005e-05, + "loss": 2.023134460449219, + "step": 193000 + }, + { + "epoch": 25.746666666666666, + "grad_norm": 0.5418599843978882, + "learning_rate": 3.713233333333334e-05, + "loss": 2.020071563720703, + "step": 193100 + }, + { + "epoch": 25.76, + "grad_norm": 0.5406211018562317, + "learning_rate": 3.712566666666667e-05, + "loss": 2.0211688232421876, + "step": 193200 + }, + { + "epoch": 25.773333333333333, + "grad_norm": 0.5392265915870667, + "learning_rate": 3.7119e-05, + "loss": 2.02107177734375, + "step": 193300 + }, + { + "epoch": 25.786666666666665, + "grad_norm": 0.5478586554527283, + "learning_rate": 3.71124e-05, + "loss": 2.0197589111328127, + "step": 193400 + }, + { + "epoch": 25.8, + "grad_norm": 0.5384021401405334, + "learning_rate": 3.710573333333334e-05, + "loss": 2.0261798095703125, + "step": 193500 + }, + { + "epoch": 25.813333333333333, + "grad_norm": 0.5637001991271973, + "learning_rate": 3.709906666666667e-05, + "loss": 2.0208526611328126, + "step": 193600 + }, + { + "epoch": 25.826666666666668, + "grad_norm": 0.5373884439468384, + "learning_rate": 3.70924e-05, + "loss": 2.0243865966796877, + "step": 193700 + }, + { + "epoch": 25.84, + "grad_norm": 0.5258835554122925, + "learning_rate": 3.7085733333333336e-05, + "loss": 2.025778961181641, + "step": 193800 + }, + { + "epoch": 25.85333333333333, + "grad_norm": 0.5321053862571716, + "learning_rate": 3.707906666666667e-05, + "loss": 2.0245960998535155, + "step": 193900 + }, + { + "epoch": 25.866666666666667, + "grad_norm": 0.5242984294891357, + "learning_rate": 3.70724e-05, + "loss": 2.027090301513672, + "step": 194000 + }, + { + "epoch": 25.88, + "grad_norm": 0.5495437979698181, + "learning_rate": 3.706573333333333e-05, + "loss": 2.0237530517578124, + "step": 194100 + }, + { + "epoch": 25.893333333333334, + "grad_norm": 0.5291945338249207, + "learning_rate": 3.705906666666667e-05, + "loss": 2.0295460510253904, + "step": 194200 + }, + { + "epoch": 25.906666666666666, + "grad_norm": 0.5402800440788269, + "learning_rate": 3.7052400000000005e-05, + "loss": 2.0260325622558595, + "step": 194300 + }, + { + "epoch": 25.92, + "grad_norm": 0.5184854865074158, + "learning_rate": 3.704573333333334e-05, + "loss": 2.0257765197753907, + "step": 194400 + }, + { + "epoch": 25.933333333333334, + "grad_norm": 0.53758704662323, + "learning_rate": 3.703906666666667e-05, + "loss": 2.0274493408203127, + "step": 194500 + }, + { + "epoch": 25.946666666666665, + "grad_norm": 0.5527028441429138, + "learning_rate": 3.70324e-05, + "loss": 2.0257112121582033, + "step": 194600 + }, + { + "epoch": 25.96, + "grad_norm": 0.5566267967224121, + "learning_rate": 3.7025733333333334e-05, + "loss": 2.026977081298828, + "step": 194700 + }, + { + "epoch": 25.973333333333333, + "grad_norm": 0.5336237549781799, + "learning_rate": 3.7019066666666666e-05, + "loss": 2.028018035888672, + "step": 194800 + }, + { + "epoch": 25.986666666666668, + "grad_norm": 0.5185402631759644, + "learning_rate": 3.7012400000000005e-05, + "loss": 2.0281407165527345, + "step": 194900 + }, + { + "epoch": 26.0, + "grad_norm": 0.5450587272644043, + "learning_rate": 3.700573333333334e-05, + "loss": 2.0281640625, + "step": 195000 + }, + { + "epoch": 26.013333333333332, + "grad_norm": 0.541812002658844, + "learning_rate": 3.699906666666667e-05, + "loss": 1.957196044921875, + "step": 195100 + }, + { + "epoch": 26.026666666666667, + "grad_norm": 0.5567891597747803, + "learning_rate": 3.69924e-05, + "loss": 1.9547212219238281, + "step": 195200 + }, + { + "epoch": 26.04, + "grad_norm": 0.5365836024284363, + "learning_rate": 3.6985733333333334e-05, + "loss": 1.9568002319335938, + "step": 195300 + }, + { + "epoch": 26.053333333333335, + "grad_norm": 0.5200800895690918, + "learning_rate": 3.697913333333334e-05, + "loss": 1.9555859375, + "step": 195400 + }, + { + "epoch": 26.066666666666666, + "grad_norm": 0.5740585327148438, + "learning_rate": 3.6972466666666665e-05, + "loss": 1.9540396118164063, + "step": 195500 + }, + { + "epoch": 26.08, + "grad_norm": 0.5473860502243042, + "learning_rate": 3.69658e-05, + "loss": 1.9564674377441407, + "step": 195600 + }, + { + "epoch": 26.093333333333334, + "grad_norm": 0.5414859652519226, + "learning_rate": 3.695913333333334e-05, + "loss": 1.9615504455566406, + "step": 195700 + }, + { + "epoch": 26.106666666666666, + "grad_norm": 0.5546607375144958, + "learning_rate": 3.695246666666667e-05, + "loss": 1.9621275329589845, + "step": 195800 + }, + { + "epoch": 26.12, + "grad_norm": 0.5604114532470703, + "learning_rate": 3.69458e-05, + "loss": 1.958752899169922, + "step": 195900 + }, + { + "epoch": 26.133333333333333, + "grad_norm": 0.5639984607696533, + "learning_rate": 3.6939133333333334e-05, + "loss": 1.9659051513671875, + "step": 196000 + }, + { + "epoch": 26.14666666666667, + "grad_norm": 0.552521288394928, + "learning_rate": 3.693246666666667e-05, + "loss": 1.9680455017089844, + "step": 196100 + }, + { + "epoch": 26.16, + "grad_norm": 0.5784633755683899, + "learning_rate": 3.69258e-05, + "loss": 1.9671054077148438, + "step": 196200 + }, + { + "epoch": 26.173333333333332, + "grad_norm": 0.558786928653717, + "learning_rate": 3.691913333333333e-05, + "loss": 1.9637820434570312, + "step": 196300 + }, + { + "epoch": 26.186666666666667, + "grad_norm": 0.577648401260376, + "learning_rate": 3.691246666666667e-05, + "loss": 1.9695333862304687, + "step": 196400 + }, + { + "epoch": 26.2, + "grad_norm": 0.5630086064338684, + "learning_rate": 3.69058e-05, + "loss": 1.9683534240722655, + "step": 196500 + }, + { + "epoch": 26.213333333333335, + "grad_norm": 0.5924582481384277, + "learning_rate": 3.6899133333333334e-05, + "loss": 1.9684716796875, + "step": 196600 + }, + { + "epoch": 26.226666666666667, + "grad_norm": 0.5777826309204102, + "learning_rate": 3.689246666666667e-05, + "loss": 1.9659332275390624, + "step": 196700 + }, + { + "epoch": 26.24, + "grad_norm": 0.5597606301307678, + "learning_rate": 3.6885800000000005e-05, + "loss": 1.9684400939941407, + "step": 196800 + }, + { + "epoch": 26.253333333333334, + "grad_norm": 0.5973007082939148, + "learning_rate": 3.687913333333334e-05, + "loss": 1.968690185546875, + "step": 196900 + }, + { + "epoch": 26.266666666666666, + "grad_norm": 0.5487164855003357, + "learning_rate": 3.687246666666666e-05, + "loss": 1.9721401977539061, + "step": 197000 + }, + { + "epoch": 26.28, + "grad_norm": 0.5761642456054688, + "learning_rate": 3.68658e-05, + "loss": 1.9738571166992187, + "step": 197100 + }, + { + "epoch": 26.293333333333333, + "grad_norm": 0.5579527020454407, + "learning_rate": 3.6859133333333334e-05, + "loss": 1.9721127319335938, + "step": 197200 + }, + { + "epoch": 26.306666666666665, + "grad_norm": 0.5521603226661682, + "learning_rate": 3.6852466666666667e-05, + "loss": 1.9772552490234374, + "step": 197300 + }, + { + "epoch": 26.32, + "grad_norm": 0.5767320394515991, + "learning_rate": 3.6845800000000006e-05, + "loss": 1.975111846923828, + "step": 197400 + }, + { + "epoch": 26.333333333333332, + "grad_norm": 0.568122148513794, + "learning_rate": 3.6839200000000005e-05, + "loss": 1.9748057556152343, + "step": 197500 + }, + { + "epoch": 26.346666666666668, + "grad_norm": 0.54569411277771, + "learning_rate": 3.683253333333334e-05, + "loss": 1.975630340576172, + "step": 197600 + }, + { + "epoch": 26.36, + "grad_norm": 0.5550498962402344, + "learning_rate": 3.682586666666667e-05, + "loss": 1.976104736328125, + "step": 197700 + }, + { + "epoch": 26.373333333333335, + "grad_norm": 0.5575002431869507, + "learning_rate": 3.68192e-05, + "loss": 1.979742431640625, + "step": 197800 + }, + { + "epoch": 26.386666666666667, + "grad_norm": 0.5659462809562683, + "learning_rate": 3.681253333333334e-05, + "loss": 1.982191925048828, + "step": 197900 + }, + { + "epoch": 26.4, + "grad_norm": 0.5659615397453308, + "learning_rate": 3.6805866666666666e-05, + "loss": 1.979058837890625, + "step": 198000 + }, + { + "epoch": 26.413333333333334, + "grad_norm": 0.5449748039245605, + "learning_rate": 3.67992e-05, + "loss": 1.9774148559570313, + "step": 198100 + }, + { + "epoch": 26.426666666666666, + "grad_norm": 0.578723669052124, + "learning_rate": 3.679253333333334e-05, + "loss": 1.9768846130371094, + "step": 198200 + }, + { + "epoch": 26.44, + "grad_norm": 0.5675528645515442, + "learning_rate": 3.678586666666667e-05, + "loss": 1.979735107421875, + "step": 198300 + }, + { + "epoch": 26.453333333333333, + "grad_norm": 0.5619545578956604, + "learning_rate": 3.67792e-05, + "loss": 1.9831944274902344, + "step": 198400 + }, + { + "epoch": 26.466666666666665, + "grad_norm": 0.5641692876815796, + "learning_rate": 3.6772533333333334e-05, + "loss": 1.9841481018066407, + "step": 198500 + }, + { + "epoch": 26.48, + "grad_norm": 0.569416344165802, + "learning_rate": 3.676586666666667e-05, + "loss": 1.981822509765625, + "step": 198600 + }, + { + "epoch": 26.493333333333332, + "grad_norm": 0.583523690700531, + "learning_rate": 3.67592e-05, + "loss": 1.982010955810547, + "step": 198700 + }, + { + "epoch": 26.506666666666668, + "grad_norm": 0.5771437883377075, + "learning_rate": 3.675253333333333e-05, + "loss": 1.9882267761230468, + "step": 198800 + }, + { + "epoch": 26.52, + "grad_norm": 0.6403129696846008, + "learning_rate": 3.674586666666667e-05, + "loss": 1.985286102294922, + "step": 198900 + }, + { + "epoch": 26.533333333333335, + "grad_norm": 0.5762969851493835, + "learning_rate": 3.67392e-05, + "loss": 1.9854814147949218, + "step": 199000 + }, + { + "epoch": 26.546666666666667, + "grad_norm": 0.5455479025840759, + "learning_rate": 3.6732533333333335e-05, + "loss": 1.9807121276855468, + "step": 199100 + }, + { + "epoch": 26.56, + "grad_norm": 0.5566051006317139, + "learning_rate": 3.672586666666667e-05, + "loss": 1.99121337890625, + "step": 199200 + }, + { + "epoch": 26.573333333333334, + "grad_norm": 0.5699354410171509, + "learning_rate": 3.6719200000000006e-05, + "loss": 1.9884609985351562, + "step": 199300 + }, + { + "epoch": 26.586666666666666, + "grad_norm": 0.5869739651679993, + "learning_rate": 3.671253333333334e-05, + "loss": 1.9882350158691406, + "step": 199400 + }, + { + "epoch": 26.6, + "grad_norm": 0.5663924813270569, + "learning_rate": 3.670593333333334e-05, + "loss": 1.9908465576171874, + "step": 199500 + }, + { + "epoch": 26.613333333333333, + "grad_norm": 0.5577260255813599, + "learning_rate": 3.669926666666667e-05, + "loss": 1.9867439270019531, + "step": 199600 + }, + { + "epoch": 26.626666666666665, + "grad_norm": 0.5420724153518677, + "learning_rate": 3.66926e-05, + "loss": 1.9890168762207032, + "step": 199700 + }, + { + "epoch": 26.64, + "grad_norm": 0.5668867230415344, + "learning_rate": 3.6685933333333334e-05, + "loss": 1.989038848876953, + "step": 199800 + }, + { + "epoch": 26.653333333333332, + "grad_norm": 0.536382257938385, + "learning_rate": 3.6679266666666666e-05, + "loss": 1.9933232116699218, + "step": 199900 + }, + { + "epoch": 26.666666666666668, + "grad_norm": 0.6233078837394714, + "learning_rate": 3.66726e-05, + "loss": 1.9922142028808594, + "step": 200000 + }, + { + "epoch": 26.68, + "grad_norm": 0.5758584141731262, + "learning_rate": 3.666593333333334e-05, + "loss": 1.9919984436035156, + "step": 200100 + }, + { + "epoch": 26.693333333333335, + "grad_norm": 0.5576504468917847, + "learning_rate": 3.665926666666667e-05, + "loss": 1.9917649841308593, + "step": 200200 + }, + { + "epoch": 26.706666666666667, + "grad_norm": 0.5854286551475525, + "learning_rate": 3.66526e-05, + "loss": 1.9912901306152344, + "step": 200300 + }, + { + "epoch": 26.72, + "grad_norm": 0.5664922595024109, + "learning_rate": 3.6645933333333334e-05, + "loss": 1.998155059814453, + "step": 200400 + }, + { + "epoch": 26.733333333333334, + "grad_norm": 0.5407897233963013, + "learning_rate": 3.663926666666667e-05, + "loss": 1.9952912902832032, + "step": 200500 + }, + { + "epoch": 26.746666666666666, + "grad_norm": 0.5883836150169373, + "learning_rate": 3.66326e-05, + "loss": 1.9951287841796874, + "step": 200600 + }, + { + "epoch": 26.76, + "grad_norm": 0.5882517099380493, + "learning_rate": 3.662593333333333e-05, + "loss": 1.9948817443847657, + "step": 200700 + }, + { + "epoch": 26.773333333333333, + "grad_norm": 0.572609543800354, + "learning_rate": 3.661926666666667e-05, + "loss": 1.9994200134277345, + "step": 200800 + }, + { + "epoch": 26.786666666666665, + "grad_norm": 0.5723763108253479, + "learning_rate": 3.66126e-05, + "loss": 1.9964186096191405, + "step": 200900 + }, + { + "epoch": 26.8, + "grad_norm": 0.571183979511261, + "learning_rate": 3.6605933333333335e-05, + "loss": 1.9989100646972657, + "step": 201000 + }, + { + "epoch": 26.813333333333333, + "grad_norm": 0.5754789113998413, + "learning_rate": 3.6599266666666674e-05, + "loss": 1.9968698120117188, + "step": 201100 + }, + { + "epoch": 26.826666666666668, + "grad_norm": 0.5623466372489929, + "learning_rate": 3.65926e-05, + "loss": 1.9973426818847657, + "step": 201200 + }, + { + "epoch": 26.84, + "grad_norm": 0.5691098570823669, + "learning_rate": 3.658593333333333e-05, + "loss": 1.995333709716797, + "step": 201300 + }, + { + "epoch": 26.85333333333333, + "grad_norm": 0.5785391926765442, + "learning_rate": 3.657926666666667e-05, + "loss": 2.0026919555664064, + "step": 201400 + }, + { + "epoch": 26.866666666666667, + "grad_norm": 0.5716009736061096, + "learning_rate": 3.657266666666666e-05, + "loss": 1.9967724609375, + "step": 201500 + }, + { + "epoch": 26.88, + "grad_norm": 0.5728231072425842, + "learning_rate": 3.6566e-05, + "loss": 2.003606719970703, + "step": 201600 + }, + { + "epoch": 26.893333333333334, + "grad_norm": 0.5723952054977417, + "learning_rate": 3.6559333333333334e-05, + "loss": 2.0006785583496094, + "step": 201700 + }, + { + "epoch": 26.906666666666666, + "grad_norm": 0.5781197547912598, + "learning_rate": 3.6552666666666666e-05, + "loss": 2.001742095947266, + "step": 201800 + }, + { + "epoch": 26.92, + "grad_norm": 0.5599796772003174, + "learning_rate": 3.6546000000000006e-05, + "loss": 2.0006167602539064, + "step": 201900 + }, + { + "epoch": 26.933333333333334, + "grad_norm": 0.6010822653770447, + "learning_rate": 3.653933333333334e-05, + "loss": 2.0031967163085938, + "step": 202000 + }, + { + "epoch": 26.946666666666665, + "grad_norm": 0.563437819480896, + "learning_rate": 3.653266666666667e-05, + "loss": 2.004565887451172, + "step": 202100 + }, + { + "epoch": 26.96, + "grad_norm": 0.5698239803314209, + "learning_rate": 3.6526e-05, + "loss": 2.004854431152344, + "step": 202200 + }, + { + "epoch": 26.973333333333333, + "grad_norm": 0.5538843274116516, + "learning_rate": 3.6519333333333335e-05, + "loss": 2.006410827636719, + "step": 202300 + }, + { + "epoch": 26.986666666666668, + "grad_norm": 0.590229332447052, + "learning_rate": 3.651266666666667e-05, + "loss": 2.004330596923828, + "step": 202400 + }, + { + "epoch": 27.0, + "grad_norm": 0.5651915073394775, + "learning_rate": 3.6506e-05, + "loss": 2.004520263671875, + "step": 202500 + }, + { + "epoch": 27.013333333333332, + "grad_norm": 0.581447184085846, + "learning_rate": 3.649933333333334e-05, + "loss": 1.927707977294922, + "step": 202600 + }, + { + "epoch": 27.026666666666667, + "grad_norm": 0.5724103450775146, + "learning_rate": 3.649266666666667e-05, + "loss": 1.9301573181152343, + "step": 202700 + }, + { + "epoch": 27.04, + "grad_norm": 0.5678054690361023, + "learning_rate": 3.6486e-05, + "loss": 1.9268736267089843, + "step": 202800 + }, + { + "epoch": 27.053333333333335, + "grad_norm": 0.5841068625450134, + "learning_rate": 3.6479333333333335e-05, + "loss": 1.9276795959472657, + "step": 202900 + }, + { + "epoch": 27.066666666666666, + "grad_norm": 0.5919205546379089, + "learning_rate": 3.647266666666667e-05, + "loss": 1.9338473510742187, + "step": 203000 + }, + { + "epoch": 27.08, + "grad_norm": 0.593210756778717, + "learning_rate": 3.6466e-05, + "loss": 1.9268548583984375, + "step": 203100 + }, + { + "epoch": 27.093333333333334, + "grad_norm": 0.5299606919288635, + "learning_rate": 3.645933333333333e-05, + "loss": 1.9322509765625, + "step": 203200 + }, + { + "epoch": 27.106666666666666, + "grad_norm": 0.5877776741981506, + "learning_rate": 3.645266666666667e-05, + "loss": 1.9314346313476562, + "step": 203300 + }, + { + "epoch": 27.12, + "grad_norm": 0.5868698954582214, + "learning_rate": 3.6446e-05, + "loss": 1.9356802368164063, + "step": 203400 + }, + { + "epoch": 27.133333333333333, + "grad_norm": 0.5853486061096191, + "learning_rate": 3.64394e-05, + "loss": 1.9343838500976562, + "step": 203500 + }, + { + "epoch": 27.14666666666667, + "grad_norm": 0.5599203705787659, + "learning_rate": 3.6432733333333334e-05, + "loss": 1.9365560913085937, + "step": 203600 + }, + { + "epoch": 27.16, + "grad_norm": 0.5584514737129211, + "learning_rate": 3.642606666666667e-05, + "loss": 1.9372349548339844, + "step": 203700 + }, + { + "epoch": 27.173333333333332, + "grad_norm": 0.5899976491928101, + "learning_rate": 3.6419400000000006e-05, + "loss": 1.94076416015625, + "step": 203800 + }, + { + "epoch": 27.186666666666667, + "grad_norm": 0.5896082520484924, + "learning_rate": 3.641273333333334e-05, + "loss": 1.9411949157714843, + "step": 203900 + }, + { + "epoch": 27.2, + "grad_norm": 0.6029268503189087, + "learning_rate": 3.6406066666666663e-05, + "loss": 1.9456289672851563, + "step": 204000 + }, + { + "epoch": 27.213333333333335, + "grad_norm": 0.5602301955223083, + "learning_rate": 3.63994e-05, + "loss": 1.9383029174804687, + "step": 204100 + }, + { + "epoch": 27.226666666666667, + "grad_norm": 0.5736998319625854, + "learning_rate": 3.6392733333333335e-05, + "loss": 1.945543975830078, + "step": 204200 + }, + { + "epoch": 27.24, + "grad_norm": 0.5835820436477661, + "learning_rate": 3.638606666666667e-05, + "loss": 1.9456192016601563, + "step": 204300 + }, + { + "epoch": 27.253333333333334, + "grad_norm": 0.5935140252113342, + "learning_rate": 3.63794e-05, + "loss": 1.9459524536132813, + "step": 204400 + }, + { + "epoch": 27.266666666666666, + "grad_norm": 0.5856873393058777, + "learning_rate": 3.637273333333334e-05, + "loss": 1.9468795776367187, + "step": 204500 + }, + { + "epoch": 27.28, + "grad_norm": 0.5846020579338074, + "learning_rate": 3.636606666666667e-05, + "loss": 1.947487335205078, + "step": 204600 + }, + { + "epoch": 27.293333333333333, + "grad_norm": 0.6289901733398438, + "learning_rate": 3.6359399999999996e-05, + "loss": 1.9467887878417969, + "step": 204700 + }, + { + "epoch": 27.306666666666665, + "grad_norm": 0.5840248465538025, + "learning_rate": 3.6352733333333335e-05, + "loss": 1.9474456787109375, + "step": 204800 + }, + { + "epoch": 27.32, + "grad_norm": 0.5707332491874695, + "learning_rate": 3.634606666666667e-05, + "loss": 1.9438954162597657, + "step": 204900 + }, + { + "epoch": 27.333333333333332, + "grad_norm": 0.5975301861763, + "learning_rate": 3.63394e-05, + "loss": 1.951266326904297, + "step": 205000 + }, + { + "epoch": 27.346666666666668, + "grad_norm": 0.5705687999725342, + "learning_rate": 3.633273333333333e-05, + "loss": 1.9507940673828126, + "step": 205100 + }, + { + "epoch": 27.36, + "grad_norm": 0.5590121150016785, + "learning_rate": 3.632606666666667e-05, + "loss": 1.9493692016601563, + "step": 205200 + }, + { + "epoch": 27.373333333333335, + "grad_norm": 0.5685244798660278, + "learning_rate": 3.63194e-05, + "loss": 1.950657196044922, + "step": 205300 + }, + { + "epoch": 27.386666666666667, + "grad_norm": 0.5888789892196655, + "learning_rate": 3.6312733333333336e-05, + "loss": 1.9549993896484374, + "step": 205400 + }, + { + "epoch": 27.4, + "grad_norm": 0.5904676914215088, + "learning_rate": 3.6306133333333335e-05, + "loss": 1.955000762939453, + "step": 205500 + }, + { + "epoch": 27.413333333333334, + "grad_norm": 0.5819377303123474, + "learning_rate": 3.6299466666666674e-05, + "loss": 1.9578860473632813, + "step": 205600 + }, + { + "epoch": 27.426666666666666, + "grad_norm": 0.5758692026138306, + "learning_rate": 3.62928e-05, + "loss": 1.9549250793457031, + "step": 205700 + }, + { + "epoch": 27.44, + "grad_norm": 0.6009901165962219, + "learning_rate": 3.628613333333333e-05, + "loss": 1.952675323486328, + "step": 205800 + }, + { + "epoch": 27.453333333333333, + "grad_norm": 0.5837755799293518, + "learning_rate": 3.627946666666667e-05, + "loss": 1.9591851806640626, + "step": 205900 + }, + { + "epoch": 27.466666666666665, + "grad_norm": 0.5634909272193909, + "learning_rate": 3.62728e-05, + "loss": 1.9552839660644532, + "step": 206000 + }, + { + "epoch": 27.48, + "grad_norm": 0.5781852602958679, + "learning_rate": 3.6266133333333335e-05, + "loss": 1.9604965209960938, + "step": 206100 + }, + { + "epoch": 27.493333333333332, + "grad_norm": 0.58583664894104, + "learning_rate": 3.625946666666667e-05, + "loss": 1.9583544921875, + "step": 206200 + }, + { + "epoch": 27.506666666666668, + "grad_norm": 0.5962403416633606, + "learning_rate": 3.6252800000000006e-05, + "loss": 1.9607644653320313, + "step": 206300 + }, + { + "epoch": 27.52, + "grad_norm": 0.5640053749084473, + "learning_rate": 3.624613333333334e-05, + "loss": 1.9606808471679686, + "step": 206400 + }, + { + "epoch": 27.533333333333335, + "grad_norm": 0.5817745327949524, + "learning_rate": 3.6239466666666664e-05, + "loss": 1.9592042541503907, + "step": 206500 + }, + { + "epoch": 27.546666666666667, + "grad_norm": 0.6114230751991272, + "learning_rate": 3.62328e-05, + "loss": 1.9615921020507812, + "step": 206600 + }, + { + "epoch": 27.56, + "grad_norm": 0.5722009539604187, + "learning_rate": 3.6226133333333335e-05, + "loss": 1.9608853149414063, + "step": 206700 + }, + { + "epoch": 27.573333333333334, + "grad_norm": 0.5720607042312622, + "learning_rate": 3.621946666666667e-05, + "loss": 1.962681884765625, + "step": 206800 + }, + { + "epoch": 27.586666666666666, + "grad_norm": 0.596661388874054, + "learning_rate": 3.62128e-05, + "loss": 1.9644792175292969, + "step": 206900 + }, + { + "epoch": 27.6, + "grad_norm": 0.5807399749755859, + "learning_rate": 3.620613333333334e-05, + "loss": 1.9695454406738282, + "step": 207000 + }, + { + "epoch": 27.613333333333333, + "grad_norm": 0.5708223581314087, + "learning_rate": 3.619946666666667e-05, + "loss": 1.963555145263672, + "step": 207100 + }, + { + "epoch": 27.626666666666665, + "grad_norm": 0.5941387414932251, + "learning_rate": 3.6192800000000004e-05, + "loss": 1.9702226257324218, + "step": 207200 + }, + { + "epoch": 27.64, + "grad_norm": 0.568341851234436, + "learning_rate": 3.6186133333333336e-05, + "loss": 1.9717837524414064, + "step": 207300 + }, + { + "epoch": 27.653333333333332, + "grad_norm": 0.5917574167251587, + "learning_rate": 3.617946666666667e-05, + "loss": 1.9671156311035156, + "step": 207400 + }, + { + "epoch": 27.666666666666668, + "grad_norm": 0.5893895030021667, + "learning_rate": 3.61728e-05, + "loss": 1.9676268005371094, + "step": 207500 + }, + { + "epoch": 27.68, + "grad_norm": 0.5909178256988525, + "learning_rate": 3.61662e-05, + "loss": 1.9683328247070313, + "step": 207600 + }, + { + "epoch": 27.693333333333335, + "grad_norm": 0.601280689239502, + "learning_rate": 3.615953333333333e-05, + "loss": 1.9703788757324219, + "step": 207700 + }, + { + "epoch": 27.706666666666667, + "grad_norm": 0.5855022072792053, + "learning_rate": 3.615286666666667e-05, + "loss": 1.9706231689453124, + "step": 207800 + }, + { + "epoch": 27.72, + "grad_norm": 0.5767050385475159, + "learning_rate": 3.61462e-05, + "loss": 1.9699440002441406, + "step": 207900 + }, + { + "epoch": 27.733333333333334, + "grad_norm": 0.5902249813079834, + "learning_rate": 3.6139533333333335e-05, + "loss": 1.964881134033203, + "step": 208000 + }, + { + "epoch": 27.746666666666666, + "grad_norm": 0.5634693503379822, + "learning_rate": 3.613286666666667e-05, + "loss": 1.9723870849609375, + "step": 208100 + }, + { + "epoch": 27.76, + "grad_norm": 0.6080737113952637, + "learning_rate": 3.6126200000000007e-05, + "loss": 1.968502197265625, + "step": 208200 + }, + { + "epoch": 27.773333333333333, + "grad_norm": 0.5652815103530884, + "learning_rate": 3.611953333333333e-05, + "loss": 1.9760067749023438, + "step": 208300 + }, + { + "epoch": 27.786666666666665, + "grad_norm": 0.5851750373840332, + "learning_rate": 3.6112866666666664e-05, + "loss": 1.9739956665039062, + "step": 208400 + }, + { + "epoch": 27.8, + "grad_norm": 0.5799194574356079, + "learning_rate": 3.61062e-05, + "loss": 1.9709002685546875, + "step": 208500 + }, + { + "epoch": 27.813333333333333, + "grad_norm": 0.607318103313446, + "learning_rate": 3.6099533333333336e-05, + "loss": 1.9714559936523437, + "step": 208600 + }, + { + "epoch": 27.826666666666668, + "grad_norm": 0.570615828037262, + "learning_rate": 3.609286666666667e-05, + "loss": 1.9726187133789062, + "step": 208700 + }, + { + "epoch": 27.84, + "grad_norm": 0.5773420929908752, + "learning_rate": 3.60862e-05, + "loss": 1.9740589904785155, + "step": 208800 + }, + { + "epoch": 27.85333333333333, + "grad_norm": 0.5621991753578186, + "learning_rate": 3.607953333333334e-05, + "loss": 1.9761262512207032, + "step": 208900 + }, + { + "epoch": 27.866666666666667, + "grad_norm": 0.5754197835922241, + "learning_rate": 3.6072866666666665e-05, + "loss": 1.9745481872558595, + "step": 209000 + }, + { + "epoch": 27.88, + "grad_norm": 0.5961983799934387, + "learning_rate": 3.60662e-05, + "loss": 1.9757182312011718, + "step": 209100 + }, + { + "epoch": 27.893333333333334, + "grad_norm": 0.5758571028709412, + "learning_rate": 3.6059533333333336e-05, + "loss": 1.974927978515625, + "step": 209200 + }, + { + "epoch": 27.906666666666666, + "grad_norm": 0.5897004008293152, + "learning_rate": 3.605286666666667e-05, + "loss": 1.97732177734375, + "step": 209300 + }, + { + "epoch": 27.92, + "grad_norm": 0.5555986762046814, + "learning_rate": 3.60462e-05, + "loss": 1.97912841796875, + "step": 209400 + }, + { + "epoch": 27.933333333333334, + "grad_norm": 0.5782080888748169, + "learning_rate": 3.603953333333334e-05, + "loss": 1.9758847045898438, + "step": 209500 + }, + { + "epoch": 27.946666666666665, + "grad_norm": 0.5872431397438049, + "learning_rate": 3.603293333333333e-05, + "loss": 1.9807801818847657, + "step": 209600 + }, + { + "epoch": 27.96, + "grad_norm": 0.6015269756317139, + "learning_rate": 3.602626666666667e-05, + "loss": 1.9804434204101562, + "step": 209700 + }, + { + "epoch": 27.973333333333333, + "grad_norm": 0.6062453985214233, + "learning_rate": 3.60196e-05, + "loss": 1.9817405700683595, + "step": 209800 + }, + { + "epoch": 27.986666666666668, + "grad_norm": 0.5964453220367432, + "learning_rate": 3.6012933333333335e-05, + "loss": 1.9792985534667968, + "step": 209900 + }, + { + "epoch": 28.0, + "grad_norm": 0.5917948484420776, + "learning_rate": 3.600626666666667e-05, + "loss": 1.9797233581542968, + "step": 210000 + }, + { + "epoch": 28.013333333333332, + "grad_norm": 0.5753324031829834, + "learning_rate": 3.59996e-05, + "loss": 1.8963658142089843, + "step": 210100 + }, + { + "epoch": 28.026666666666667, + "grad_norm": 0.5823311805725098, + "learning_rate": 3.599293333333333e-05, + "loss": 1.90039794921875, + "step": 210200 + }, + { + "epoch": 28.04, + "grad_norm": 0.6098815202713013, + "learning_rate": 3.598626666666667e-05, + "loss": 1.9037353515625, + "step": 210300 + }, + { + "epoch": 28.053333333333335, + "grad_norm": 0.591463565826416, + "learning_rate": 3.5979600000000004e-05, + "loss": 1.9031809997558593, + "step": 210400 + }, + { + "epoch": 28.066666666666666, + "grad_norm": 0.6484287977218628, + "learning_rate": 3.5972933333333336e-05, + "loss": 1.90722900390625, + "step": 210500 + }, + { + "epoch": 28.08, + "grad_norm": 0.5851206183433533, + "learning_rate": 3.596626666666667e-05, + "loss": 1.907454376220703, + "step": 210600 + }, + { + "epoch": 28.093333333333334, + "grad_norm": 0.5893003940582275, + "learning_rate": 3.595960000000001e-05, + "loss": 1.9102708435058593, + "step": 210700 + }, + { + "epoch": 28.106666666666666, + "grad_norm": 0.5920806527137756, + "learning_rate": 3.595293333333333e-05, + "loss": 1.906302490234375, + "step": 210800 + }, + { + "epoch": 28.12, + "grad_norm": 0.5820571780204773, + "learning_rate": 3.5946266666666665e-05, + "loss": 1.9106333923339844, + "step": 210900 + }, + { + "epoch": 28.133333333333333, + "grad_norm": 0.6000703573226929, + "learning_rate": 3.5939600000000004e-05, + "loss": 1.9108970642089844, + "step": 211000 + }, + { + "epoch": 28.14666666666667, + "grad_norm": 0.6043274402618408, + "learning_rate": 3.5932933333333336e-05, + "loss": 1.9127066040039062, + "step": 211100 + }, + { + "epoch": 28.16, + "grad_norm": 0.589103639125824, + "learning_rate": 3.592626666666667e-05, + "loss": 1.9146939086914063, + "step": 211200 + }, + { + "epoch": 28.173333333333332, + "grad_norm": 0.5709384679794312, + "learning_rate": 3.59196e-05, + "loss": 1.9095561218261718, + "step": 211300 + }, + { + "epoch": 28.186666666666667, + "grad_norm": 0.6060921549797058, + "learning_rate": 3.591293333333334e-05, + "loss": 1.912783203125, + "step": 211400 + }, + { + "epoch": 28.2, + "grad_norm": 0.6131394505500793, + "learning_rate": 3.5906266666666665e-05, + "loss": 1.9097198486328124, + "step": 211500 + }, + { + "epoch": 28.213333333333335, + "grad_norm": 0.5825812220573425, + "learning_rate": 3.589966666666667e-05, + "loss": 1.9186415100097656, + "step": 211600 + }, + { + "epoch": 28.226666666666667, + "grad_norm": 0.5944445729255676, + "learning_rate": 3.5893000000000003e-05, + "loss": 1.9187173461914062, + "step": 211700 + }, + { + "epoch": 28.24, + "grad_norm": 0.5729975700378418, + "learning_rate": 3.5886333333333336e-05, + "loss": 1.9198851013183593, + "step": 211800 + }, + { + "epoch": 28.253333333333334, + "grad_norm": 0.6041490435600281, + "learning_rate": 3.587966666666667e-05, + "loss": 1.9200152587890624, + "step": 211900 + }, + { + "epoch": 28.266666666666666, + "grad_norm": 0.6032606363296509, + "learning_rate": 3.5873e-05, + "loss": 1.9239161682128907, + "step": 212000 + }, + { + "epoch": 28.28, + "grad_norm": 0.6063857078552246, + "learning_rate": 3.586633333333333e-05, + "loss": 1.921931915283203, + "step": 212100 + }, + { + "epoch": 28.293333333333333, + "grad_norm": 0.6095187664031982, + "learning_rate": 3.585966666666667e-05, + "loss": 1.9245355224609375, + "step": 212200 + }, + { + "epoch": 28.306666666666665, + "grad_norm": 0.6013233065605164, + "learning_rate": 3.5853000000000004e-05, + "loss": 1.920060577392578, + "step": 212300 + }, + { + "epoch": 28.32, + "grad_norm": 0.5829028487205505, + "learning_rate": 3.5846333333333336e-05, + "loss": 1.923076171875, + "step": 212400 + }, + { + "epoch": 28.333333333333332, + "grad_norm": 0.6095953583717346, + "learning_rate": 3.583966666666667e-05, + "loss": 1.9266374206542969, + "step": 212500 + }, + { + "epoch": 28.346666666666668, + "grad_norm": 0.6123775243759155, + "learning_rate": 3.5833e-05, + "loss": 1.923944091796875, + "step": 212600 + }, + { + "epoch": 28.36, + "grad_norm": 0.6038895845413208, + "learning_rate": 3.582633333333333e-05, + "loss": 1.9256845092773438, + "step": 212700 + }, + { + "epoch": 28.373333333333335, + "grad_norm": 0.5949887037277222, + "learning_rate": 3.5819666666666665e-05, + "loss": 1.925125732421875, + "step": 212800 + }, + { + "epoch": 28.386666666666667, + "grad_norm": 0.5919845104217529, + "learning_rate": 3.5813000000000004e-05, + "loss": 1.92591796875, + "step": 212900 + }, + { + "epoch": 28.4, + "grad_norm": 0.5925742387771606, + "learning_rate": 3.5806333333333336e-05, + "loss": 1.9260887145996093, + "step": 213000 + }, + { + "epoch": 28.413333333333334, + "grad_norm": 0.5978710055351257, + "learning_rate": 3.579966666666667e-05, + "loss": 1.9299237060546874, + "step": 213100 + }, + { + "epoch": 28.426666666666666, + "grad_norm": 0.6156143546104431, + "learning_rate": 3.5793e-05, + "loss": 1.9283975219726563, + "step": 213200 + }, + { + "epoch": 28.44, + "grad_norm": 0.6074989438056946, + "learning_rate": 3.578633333333333e-05, + "loss": 1.9329901123046875, + "step": 213300 + }, + { + "epoch": 28.453333333333333, + "grad_norm": 0.6070049405097961, + "learning_rate": 3.5779666666666666e-05, + "loss": 1.9311386108398438, + "step": 213400 + }, + { + "epoch": 28.466666666666665, + "grad_norm": 0.627319872379303, + "learning_rate": 3.5773e-05, + "loss": 1.93387451171875, + "step": 213500 + }, + { + "epoch": 28.48, + "grad_norm": 0.6070690155029297, + "learning_rate": 3.57664e-05, + "loss": 1.933914337158203, + "step": 213600 + }, + { + "epoch": 28.493333333333332, + "grad_norm": 0.6085487008094788, + "learning_rate": 3.5759733333333336e-05, + "loss": 1.9377674865722656, + "step": 213700 + }, + { + "epoch": 28.506666666666668, + "grad_norm": 0.6239941120147705, + "learning_rate": 3.575306666666667e-05, + "loss": 1.9339775085449218, + "step": 213800 + }, + { + "epoch": 28.52, + "grad_norm": 0.6024758219718933, + "learning_rate": 3.57464e-05, + "loss": 1.9365673828125, + "step": 213900 + }, + { + "epoch": 28.533333333333335, + "grad_norm": 0.6340709924697876, + "learning_rate": 3.573973333333334e-05, + "loss": 1.9337480163574219, + "step": 214000 + }, + { + "epoch": 28.546666666666667, + "grad_norm": 0.5885015726089478, + "learning_rate": 3.573306666666667e-05, + "loss": 1.935907745361328, + "step": 214100 + }, + { + "epoch": 28.56, + "grad_norm": 0.6116124391555786, + "learning_rate": 3.5726400000000004e-05, + "loss": 1.9376171875, + "step": 214200 + }, + { + "epoch": 28.573333333333334, + "grad_norm": 0.5820707082748413, + "learning_rate": 3.571973333333333e-05, + "loss": 1.9389529418945313, + "step": 214300 + }, + { + "epoch": 28.586666666666666, + "grad_norm": 0.5670823454856873, + "learning_rate": 3.571306666666667e-05, + "loss": 1.938601531982422, + "step": 214400 + }, + { + "epoch": 28.6, + "grad_norm": 0.6194178462028503, + "learning_rate": 3.57064e-05, + "loss": 1.9407998657226562, + "step": 214500 + }, + { + "epoch": 28.613333333333333, + "grad_norm": 0.6202486753463745, + "learning_rate": 3.569973333333333e-05, + "loss": 1.9379768371582031, + "step": 214600 + }, + { + "epoch": 28.626666666666665, + "grad_norm": 0.6014044880867004, + "learning_rate": 3.569306666666667e-05, + "loss": 1.9406600952148438, + "step": 214700 + }, + { + "epoch": 28.64, + "grad_norm": 0.6088877320289612, + "learning_rate": 3.5686400000000004e-05, + "loss": 1.9415878295898437, + "step": 214800 + }, + { + "epoch": 28.653333333333332, + "grad_norm": 0.6067546010017395, + "learning_rate": 3.567973333333334e-05, + "loss": 1.9418251037597656, + "step": 214900 + }, + { + "epoch": 28.666666666666668, + "grad_norm": 0.5925686955451965, + "learning_rate": 3.567306666666667e-05, + "loss": 1.9406690979003907, + "step": 215000 + }, + { + "epoch": 28.68, + "grad_norm": 0.6045867800712585, + "learning_rate": 3.56664e-05, + "loss": 1.9402273559570313, + "step": 215100 + }, + { + "epoch": 28.693333333333335, + "grad_norm": 0.6042197942733765, + "learning_rate": 3.5659733333333334e-05, + "loss": 1.9467068481445313, + "step": 215200 + }, + { + "epoch": 28.706666666666667, + "grad_norm": 0.6190263628959656, + "learning_rate": 3.5653066666666666e-05, + "loss": 1.9422659301757812, + "step": 215300 + }, + { + "epoch": 28.72, + "grad_norm": 0.6239484548568726, + "learning_rate": 3.5646400000000005e-05, + "loss": 1.9453689575195312, + "step": 215400 + }, + { + "epoch": 28.733333333333334, + "grad_norm": 0.5972684621810913, + "learning_rate": 3.563973333333334e-05, + "loss": 1.945398406982422, + "step": 215500 + }, + { + "epoch": 28.746666666666666, + "grad_norm": 0.6258236169815063, + "learning_rate": 3.5633133333333336e-05, + "loss": 1.947290802001953, + "step": 215600 + }, + { + "epoch": 28.76, + "grad_norm": 0.6004676818847656, + "learning_rate": 3.562646666666667e-05, + "loss": 1.9425833129882812, + "step": 215700 + }, + { + "epoch": 28.773333333333333, + "grad_norm": 0.6066743731498718, + "learning_rate": 3.56198e-05, + "loss": 1.9450428771972657, + "step": 215800 + }, + { + "epoch": 28.786666666666665, + "grad_norm": 0.6220128536224365, + "learning_rate": 3.561313333333334e-05, + "loss": 1.9462014770507812, + "step": 215900 + }, + { + "epoch": 28.8, + "grad_norm": 0.6090360283851624, + "learning_rate": 3.5606466666666665e-05, + "loss": 1.9469538879394532, + "step": 216000 + }, + { + "epoch": 28.813333333333333, + "grad_norm": 0.5942463278770447, + "learning_rate": 3.55998e-05, + "loss": 1.9527642822265625, + "step": 216100 + }, + { + "epoch": 28.826666666666668, + "grad_norm": 0.6522825360298157, + "learning_rate": 3.5593133333333337e-05, + "loss": 1.947396240234375, + "step": 216200 + }, + { + "epoch": 28.84, + "grad_norm": 0.6047014594078064, + "learning_rate": 3.558646666666667e-05, + "loss": 1.953114013671875, + "step": 216300 + }, + { + "epoch": 28.85333333333333, + "grad_norm": 0.6015614867210388, + "learning_rate": 3.55798e-05, + "loss": 1.9483316040039063, + "step": 216400 + }, + { + "epoch": 28.866666666666667, + "grad_norm": 0.588139533996582, + "learning_rate": 3.557313333333333e-05, + "loss": 1.95369384765625, + "step": 216500 + }, + { + "epoch": 28.88, + "grad_norm": 0.6121417880058289, + "learning_rate": 3.556646666666667e-05, + "loss": 1.9504942321777343, + "step": 216600 + }, + { + "epoch": 28.893333333333334, + "grad_norm": 0.6152277588844299, + "learning_rate": 3.5559800000000005e-05, + "loss": 1.9528102111816406, + "step": 216700 + }, + { + "epoch": 28.906666666666666, + "grad_norm": 0.5864558815956116, + "learning_rate": 3.555313333333333e-05, + "loss": 1.9556744384765625, + "step": 216800 + }, + { + "epoch": 28.92, + "grad_norm": 0.6150722503662109, + "learning_rate": 3.554646666666667e-05, + "loss": 1.9557850646972657, + "step": 216900 + }, + { + "epoch": 28.933333333333334, + "grad_norm": 0.6126604676246643, + "learning_rate": 3.55398e-05, + "loss": 1.957655487060547, + "step": 217000 + }, + { + "epoch": 28.946666666666665, + "grad_norm": 0.6212007403373718, + "learning_rate": 3.5533133333333334e-05, + "loss": 1.952845458984375, + "step": 217100 + }, + { + "epoch": 28.96, + "grad_norm": 0.6093801856040955, + "learning_rate": 3.5526466666666666e-05, + "loss": 1.9500978088378906, + "step": 217200 + }, + { + "epoch": 28.973333333333333, + "grad_norm": 0.6195286512374878, + "learning_rate": 3.5519800000000005e-05, + "loss": 1.9568482971191405, + "step": 217300 + }, + { + "epoch": 28.986666666666668, + "grad_norm": 0.6141052842140198, + "learning_rate": 3.551313333333334e-05, + "loss": 1.9551716613769532, + "step": 217400 + }, + { + "epoch": 29.0, + "grad_norm": 0.6240456700325012, + "learning_rate": 3.550646666666666e-05, + "loss": 1.9593727111816406, + "step": 217500 + }, + { + "epoch": 29.013333333333332, + "grad_norm": 0.6141709089279175, + "learning_rate": 3.549986666666667e-05, + "loss": 1.8731291198730469, + "step": 217600 + }, + { + "epoch": 29.026666666666667, + "grad_norm": 0.6149386763572693, + "learning_rate": 3.54932e-05, + "loss": 1.8731167602539063, + "step": 217700 + }, + { + "epoch": 29.04, + "grad_norm": 0.6323212385177612, + "learning_rate": 3.548653333333333e-05, + "loss": 1.871314697265625, + "step": 217800 + }, + { + "epoch": 29.053333333333335, + "grad_norm": 0.6484255790710449, + "learning_rate": 3.5479866666666665e-05, + "loss": 1.8755429077148438, + "step": 217900 + }, + { + "epoch": 29.066666666666666, + "grad_norm": 0.6272088289260864, + "learning_rate": 3.54732e-05, + "loss": 1.8729833984375, + "step": 218000 + }, + { + "epoch": 29.08, + "grad_norm": 0.6121836304664612, + "learning_rate": 3.546653333333334e-05, + "loss": 1.87686767578125, + "step": 218100 + }, + { + "epoch": 29.093333333333334, + "grad_norm": 0.6073644757270813, + "learning_rate": 3.545986666666667e-05, + "loss": 1.8814959716796875, + "step": 218200 + }, + { + "epoch": 29.106666666666666, + "grad_norm": 0.6518145799636841, + "learning_rate": 3.54532e-05, + "loss": 1.8825758361816407, + "step": 218300 + }, + { + "epoch": 29.12, + "grad_norm": 0.6225592494010925, + "learning_rate": 3.544653333333334e-05, + "loss": 1.8884323120117188, + "step": 218400 + }, + { + "epoch": 29.133333333333333, + "grad_norm": 0.6254275441169739, + "learning_rate": 3.5439866666666666e-05, + "loss": 1.8810324096679687, + "step": 218500 + }, + { + "epoch": 29.14666666666667, + "grad_norm": 0.6428091526031494, + "learning_rate": 3.54332e-05, + "loss": 1.8841964721679687, + "step": 218600 + }, + { + "epoch": 29.16, + "grad_norm": 0.6066590547561646, + "learning_rate": 3.542653333333334e-05, + "loss": 1.8872183227539063, + "step": 218700 + }, + { + "epoch": 29.173333333333332, + "grad_norm": 0.6072599291801453, + "learning_rate": 3.541986666666667e-05, + "loss": 1.888301544189453, + "step": 218800 + }, + { + "epoch": 29.186666666666667, + "grad_norm": 0.6293680667877197, + "learning_rate": 3.54132e-05, + "loss": 1.891027374267578, + "step": 218900 + }, + { + "epoch": 29.2, + "grad_norm": 0.6067629456520081, + "learning_rate": 3.5406533333333334e-05, + "loss": 1.8863351440429688, + "step": 219000 + }, + { + "epoch": 29.213333333333335, + "grad_norm": 0.5995946526527405, + "learning_rate": 3.539986666666667e-05, + "loss": 1.8922694396972657, + "step": 219100 + }, + { + "epoch": 29.226666666666667, + "grad_norm": 0.6211652159690857, + "learning_rate": 3.5393200000000005e-05, + "loss": 1.8898019409179687, + "step": 219200 + }, + { + "epoch": 29.24, + "grad_norm": 0.6280918717384338, + "learning_rate": 3.538653333333333e-05, + "loss": 1.892053680419922, + "step": 219300 + }, + { + "epoch": 29.253333333333334, + "grad_norm": 0.6313039064407349, + "learning_rate": 3.537986666666667e-05, + "loss": 1.8970526123046876, + "step": 219400 + }, + { + "epoch": 29.266666666666666, + "grad_norm": 0.6204928159713745, + "learning_rate": 3.53732e-05, + "loss": 1.8941494750976562, + "step": 219500 + }, + { + "epoch": 29.28, + "grad_norm": 0.6099953055381775, + "learning_rate": 3.53666e-05, + "loss": 1.8936624145507812, + "step": 219600 + }, + { + "epoch": 29.293333333333333, + "grad_norm": 0.6010173559188843, + "learning_rate": 3.5359933333333333e-05, + "loss": 1.8962115478515624, + "step": 219700 + }, + { + "epoch": 29.306666666666665, + "grad_norm": 0.6187490820884705, + "learning_rate": 3.5353266666666666e-05, + "loss": 1.8990090942382813, + "step": 219800 + }, + { + "epoch": 29.32, + "grad_norm": 0.6025696396827698, + "learning_rate": 3.5346600000000005e-05, + "loss": 1.899090576171875, + "step": 219900 + }, + { + "epoch": 29.333333333333332, + "grad_norm": 0.6101509928703308, + "learning_rate": 3.533993333333334e-05, + "loss": 1.8987478637695312, + "step": 220000 + }, + { + "epoch": 29.346666666666668, + "grad_norm": 0.6143890619277954, + "learning_rate": 3.533326666666667e-05, + "loss": 1.8977235412597657, + "step": 220100 + }, + { + "epoch": 29.36, + "grad_norm": 0.628218412399292, + "learning_rate": 3.53266e-05, + "loss": 1.9033868408203125, + "step": 220200 + }, + { + "epoch": 29.373333333333335, + "grad_norm": 0.6350439786911011, + "learning_rate": 3.5319933333333334e-05, + "loss": 1.8994992065429688, + "step": 220300 + }, + { + "epoch": 29.386666666666667, + "grad_norm": 0.6280394792556763, + "learning_rate": 3.5313266666666666e-05, + "loss": 1.9002314758300782, + "step": 220400 + }, + { + "epoch": 29.4, + "grad_norm": 0.6128666996955872, + "learning_rate": 3.53066e-05, + "loss": 1.9010800170898436, + "step": 220500 + }, + { + "epoch": 29.413333333333334, + "grad_norm": 0.636648952960968, + "learning_rate": 3.529993333333334e-05, + "loss": 1.9034559631347656, + "step": 220600 + }, + { + "epoch": 29.426666666666666, + "grad_norm": 0.6053557395935059, + "learning_rate": 3.529326666666667e-05, + "loss": 1.9045362854003907, + "step": 220700 + }, + { + "epoch": 29.44, + "grad_norm": 0.6217942833900452, + "learning_rate": 3.52866e-05, + "loss": 1.9091796875, + "step": 220800 + }, + { + "epoch": 29.453333333333333, + "grad_norm": 0.6204298734664917, + "learning_rate": 3.5279933333333334e-05, + "loss": 1.9048878479003906, + "step": 220900 + }, + { + "epoch": 29.466666666666665, + "grad_norm": 0.618732750415802, + "learning_rate": 3.527326666666667e-05, + "loss": 1.906492919921875, + "step": 221000 + }, + { + "epoch": 29.48, + "grad_norm": 0.6301329135894775, + "learning_rate": 3.52666e-05, + "loss": 1.9087861633300782, + "step": 221100 + }, + { + "epoch": 29.493333333333332, + "grad_norm": 0.6499351859092712, + "learning_rate": 3.525993333333333e-05, + "loss": 1.9047959899902345, + "step": 221200 + }, + { + "epoch": 29.506666666666668, + "grad_norm": 0.6507390141487122, + "learning_rate": 3.525326666666667e-05, + "loss": 1.9099015808105468, + "step": 221300 + }, + { + "epoch": 29.52, + "grad_norm": 0.6272179484367371, + "learning_rate": 3.52466e-05, + "loss": 1.9120497131347656, + "step": 221400 + }, + { + "epoch": 29.533333333333335, + "grad_norm": 0.6267956495285034, + "learning_rate": 3.5239933333333335e-05, + "loss": 1.9138475036621094, + "step": 221500 + }, + { + "epoch": 29.546666666666667, + "grad_norm": 0.6450830101966858, + "learning_rate": 3.5233333333333334e-05, + "loss": 1.910146484375, + "step": 221600 + }, + { + "epoch": 29.56, + "grad_norm": 0.618111789226532, + "learning_rate": 3.5226666666666666e-05, + "loss": 1.912001495361328, + "step": 221700 + }, + { + "epoch": 29.573333333333334, + "grad_norm": 0.6099219918251038, + "learning_rate": 3.5220000000000005e-05, + "loss": 1.9133241271972656, + "step": 221800 + }, + { + "epoch": 29.586666666666666, + "grad_norm": 0.6343381404876709, + "learning_rate": 3.521333333333334e-05, + "loss": 1.9161970520019531, + "step": 221900 + }, + { + "epoch": 29.6, + "grad_norm": 0.6319106817245483, + "learning_rate": 3.520666666666667e-05, + "loss": 1.9144822692871093, + "step": 222000 + }, + { + "epoch": 29.613333333333333, + "grad_norm": 0.6410270929336548, + "learning_rate": 3.52e-05, + "loss": 1.9168218994140624, + "step": 222100 + }, + { + "epoch": 29.626666666666665, + "grad_norm": 0.6186690330505371, + "learning_rate": 3.5193333333333334e-05, + "loss": 1.9132901000976563, + "step": 222200 + }, + { + "epoch": 29.64, + "grad_norm": 0.6537576913833618, + "learning_rate": 3.5186666666666666e-05, + "loss": 1.913599853515625, + "step": 222300 + }, + { + "epoch": 29.653333333333332, + "grad_norm": 0.6208250522613525, + "learning_rate": 3.518e-05, + "loss": 1.9217842102050782, + "step": 222400 + }, + { + "epoch": 29.666666666666668, + "grad_norm": 0.613583505153656, + "learning_rate": 3.517333333333334e-05, + "loss": 1.9240948486328124, + "step": 222500 + }, + { + "epoch": 29.68, + "grad_norm": 0.6155552864074707, + "learning_rate": 3.516666666666667e-05, + "loss": 1.9173712158203124, + "step": 222600 + }, + { + "epoch": 29.693333333333335, + "grad_norm": 0.6076659560203552, + "learning_rate": 3.516e-05, + "loss": 1.9172421264648438, + "step": 222700 + }, + { + "epoch": 29.706666666666667, + "grad_norm": 0.6185587048530579, + "learning_rate": 3.5153333333333334e-05, + "loss": 1.9175602722167968, + "step": 222800 + }, + { + "epoch": 29.72, + "grad_norm": 0.7048514485359192, + "learning_rate": 3.514666666666667e-05, + "loss": 1.9214109802246093, + "step": 222900 + }, + { + "epoch": 29.733333333333334, + "grad_norm": 0.648773729801178, + "learning_rate": 3.514e-05, + "loss": 1.9188169860839843, + "step": 223000 + }, + { + "epoch": 29.746666666666666, + "grad_norm": 0.6280819177627563, + "learning_rate": 3.513333333333334e-05, + "loss": 1.920139923095703, + "step": 223100 + }, + { + "epoch": 29.76, + "grad_norm": 0.5966166257858276, + "learning_rate": 3.512666666666667e-05, + "loss": 1.9221627807617188, + "step": 223200 + }, + { + "epoch": 29.773333333333333, + "grad_norm": 0.6173168420791626, + "learning_rate": 3.512e-05, + "loss": 1.924539794921875, + "step": 223300 + }, + { + "epoch": 29.786666666666665, + "grad_norm": 0.6122573018074036, + "learning_rate": 3.5113333333333335e-05, + "loss": 1.9245417785644532, + "step": 223400 + }, + { + "epoch": 29.8, + "grad_norm": 0.6305630803108215, + "learning_rate": 3.5106666666666674e-05, + "loss": 1.9254067993164063, + "step": 223500 + }, + { + "epoch": 29.813333333333333, + "grad_norm": 0.6451953053474426, + "learning_rate": 3.510006666666667e-05, + "loss": 1.9255630493164062, + "step": 223600 + }, + { + "epoch": 29.826666666666668, + "grad_norm": 0.6407766342163086, + "learning_rate": 3.5093400000000005e-05, + "loss": 1.9248118591308594, + "step": 223700 + }, + { + "epoch": 29.84, + "grad_norm": 0.627864420413971, + "learning_rate": 3.508673333333333e-05, + "loss": 1.9239891052246094, + "step": 223800 + }, + { + "epoch": 29.85333333333333, + "grad_norm": 0.6414026618003845, + "learning_rate": 3.508006666666667e-05, + "loss": 1.9280026245117188, + "step": 223900 + }, + { + "epoch": 29.866666666666667, + "grad_norm": 0.628401517868042, + "learning_rate": 3.50734e-05, + "loss": 1.9231156921386718, + "step": 224000 + }, + { + "epoch": 29.88, + "grad_norm": 0.6258181929588318, + "learning_rate": 3.5066733333333334e-05, + "loss": 1.926804962158203, + "step": 224100 + }, + { + "epoch": 29.893333333333334, + "grad_norm": 0.6521549820899963, + "learning_rate": 3.5060066666666667e-05, + "loss": 1.928329620361328, + "step": 224200 + }, + { + "epoch": 29.906666666666666, + "grad_norm": 0.6125701069831848, + "learning_rate": 3.5053400000000006e-05, + "loss": 1.9327384948730468, + "step": 224300 + }, + { + "epoch": 29.92, + "grad_norm": 0.627855658531189, + "learning_rate": 3.504673333333334e-05, + "loss": 1.927176971435547, + "step": 224400 + }, + { + "epoch": 29.933333333333334, + "grad_norm": 0.6648500561714172, + "learning_rate": 3.504006666666667e-05, + "loss": 1.9303471374511718, + "step": 224500 + }, + { + "epoch": 29.946666666666665, + "grad_norm": 0.6420508027076721, + "learning_rate": 3.50334e-05, + "loss": 1.9273306274414062, + "step": 224600 + }, + { + "epoch": 29.96, + "grad_norm": 0.6278482675552368, + "learning_rate": 3.5026733333333335e-05, + "loss": 1.9288194274902344, + "step": 224700 + }, + { + "epoch": 29.973333333333333, + "grad_norm": 0.5989758372306824, + "learning_rate": 3.502006666666667e-05, + "loss": 1.930438232421875, + "step": 224800 + }, + { + "epoch": 29.986666666666668, + "grad_norm": 0.6249135136604309, + "learning_rate": 3.50134e-05, + "loss": 1.9307928466796875, + "step": 224900 + }, + { + "epoch": 30.0, + "grad_norm": 0.6104187965393066, + "learning_rate": 3.500673333333334e-05, + "loss": 1.9333016967773438, + "step": 225000 + }, + { + "epoch": 30.013333333333332, + "grad_norm": 0.6293696761131287, + "learning_rate": 3.500006666666667e-05, + "loss": 1.8476805114746093, + "step": 225100 + }, + { + "epoch": 30.026666666666667, + "grad_norm": 0.6297232508659363, + "learning_rate": 3.49934e-05, + "loss": 1.845593719482422, + "step": 225200 + }, + { + "epoch": 30.04, + "grad_norm": 0.6466991305351257, + "learning_rate": 3.4986733333333335e-05, + "loss": 1.8487274169921875, + "step": 225300 + }, + { + "epoch": 30.053333333333335, + "grad_norm": 0.6279363036155701, + "learning_rate": 3.498006666666667e-05, + "loss": 1.8542190551757813, + "step": 225400 + }, + { + "epoch": 30.066666666666666, + "grad_norm": 0.644621729850769, + "learning_rate": 3.49734e-05, + "loss": 1.8500912475585938, + "step": 225500 + }, + { + "epoch": 30.08, + "grad_norm": 0.6442613005638123, + "learning_rate": 3.49668e-05, + "loss": 1.8522134399414063, + "step": 225600 + }, + { + "epoch": 30.093333333333334, + "grad_norm": 0.619848370552063, + "learning_rate": 3.496013333333333e-05, + "loss": 1.8562557983398438, + "step": 225700 + }, + { + "epoch": 30.106666666666666, + "grad_norm": 0.6512423157691956, + "learning_rate": 3.495346666666667e-05, + "loss": 1.8515933227539063, + "step": 225800 + }, + { + "epoch": 30.12, + "grad_norm": 0.6524722576141357, + "learning_rate": 3.49468e-05, + "loss": 1.859434814453125, + "step": 225900 + }, + { + "epoch": 30.133333333333333, + "grad_norm": 0.6379408836364746, + "learning_rate": 3.4940133333333335e-05, + "loss": 1.8575267028808593, + "step": 226000 + }, + { + "epoch": 30.14666666666667, + "grad_norm": 0.6395164132118225, + "learning_rate": 3.493346666666667e-05, + "loss": 1.8595333862304688, + "step": 226100 + }, + { + "epoch": 30.16, + "grad_norm": 0.6441857814788818, + "learning_rate": 3.4926800000000006e-05, + "loss": 1.860304718017578, + "step": 226200 + }, + { + "epoch": 30.173333333333332, + "grad_norm": 0.6614034175872803, + "learning_rate": 3.492013333333333e-05, + "loss": 1.8629020690917968, + "step": 226300 + }, + { + "epoch": 30.186666666666667, + "grad_norm": 0.6289846897125244, + "learning_rate": 3.4913466666666664e-05, + "loss": 1.8599790954589843, + "step": 226400 + }, + { + "epoch": 30.2, + "grad_norm": 0.6655375957489014, + "learning_rate": 3.49068e-05, + "loss": 1.8705145263671874, + "step": 226500 + }, + { + "epoch": 30.213333333333335, + "grad_norm": 0.6143892407417297, + "learning_rate": 3.4900133333333335e-05, + "loss": 1.8633598327636718, + "step": 226600 + }, + { + "epoch": 30.226666666666667, + "grad_norm": 0.6168250441551208, + "learning_rate": 3.489346666666667e-05, + "loss": 1.866641845703125, + "step": 226700 + }, + { + "epoch": 30.24, + "grad_norm": 0.6689651012420654, + "learning_rate": 3.48868e-05, + "loss": 1.863162841796875, + "step": 226800 + }, + { + "epoch": 30.253333333333334, + "grad_norm": 0.6845178604125977, + "learning_rate": 3.488013333333334e-05, + "loss": 1.8685459899902344, + "step": 226900 + }, + { + "epoch": 30.266666666666666, + "grad_norm": 0.6048876047134399, + "learning_rate": 3.487346666666667e-05, + "loss": 1.8716763305664061, + "step": 227000 + }, + { + "epoch": 30.28, + "grad_norm": 0.6472257375717163, + "learning_rate": 3.4866799999999996e-05, + "loss": 1.8674250793457032, + "step": 227100 + }, + { + "epoch": 30.293333333333333, + "grad_norm": 0.6502028703689575, + "learning_rate": 3.4860133333333335e-05, + "loss": 1.8718875122070313, + "step": 227200 + }, + { + "epoch": 30.306666666666665, + "grad_norm": 0.6495829820632935, + "learning_rate": 3.485346666666667e-05, + "loss": 1.8765740966796876, + "step": 227300 + }, + { + "epoch": 30.32, + "grad_norm": 0.6474784016609192, + "learning_rate": 3.48468e-05, + "loss": 1.8689016723632812, + "step": 227400 + }, + { + "epoch": 30.333333333333332, + "grad_norm": 0.652237057685852, + "learning_rate": 3.484013333333334e-05, + "loss": 1.8737103271484374, + "step": 227500 + }, + { + "epoch": 30.346666666666668, + "grad_norm": 0.6202793717384338, + "learning_rate": 3.483346666666667e-05, + "loss": 1.8773468017578125, + "step": 227600 + }, + { + "epoch": 30.36, + "grad_norm": 0.6398950815200806, + "learning_rate": 3.482686666666667e-05, + "loss": 1.8740312194824218, + "step": 227700 + }, + { + "epoch": 30.373333333333335, + "grad_norm": 0.679435670375824, + "learning_rate": 3.48202e-05, + "loss": 1.8724604797363282, + "step": 227800 + }, + { + "epoch": 30.386666666666667, + "grad_norm": 0.6420354843139648, + "learning_rate": 3.4813533333333335e-05, + "loss": 1.8720265197753907, + "step": 227900 + }, + { + "epoch": 30.4, + "grad_norm": 0.6483940482139587, + "learning_rate": 3.4806866666666674e-05, + "loss": 1.8791566467285157, + "step": 228000 + }, + { + "epoch": 30.413333333333334, + "grad_norm": 0.6276984810829163, + "learning_rate": 3.48002e-05, + "loss": 1.8788121032714844, + "step": 228100 + }, + { + "epoch": 30.426666666666666, + "grad_norm": 0.6200658082962036, + "learning_rate": 3.479353333333333e-05, + "loss": 1.8798104858398437, + "step": 228200 + }, + { + "epoch": 30.44, + "grad_norm": 0.6153615117073059, + "learning_rate": 3.478686666666667e-05, + "loss": 1.878331298828125, + "step": 228300 + }, + { + "epoch": 30.453333333333333, + "grad_norm": 0.664184033870697, + "learning_rate": 3.47802e-05, + "loss": 1.879515380859375, + "step": 228400 + }, + { + "epoch": 30.466666666666665, + "grad_norm": 0.6094868779182434, + "learning_rate": 3.4773533333333335e-05, + "loss": 1.8832115173339843, + "step": 228500 + }, + { + "epoch": 30.48, + "grad_norm": 0.6478238701820374, + "learning_rate": 3.476686666666667e-05, + "loss": 1.8848756408691407, + "step": 228600 + }, + { + "epoch": 30.493333333333332, + "grad_norm": 0.6715877652168274, + "learning_rate": 3.4760200000000006e-05, + "loss": 1.8839694213867189, + "step": 228700 + }, + { + "epoch": 30.506666666666668, + "grad_norm": 0.65712571144104, + "learning_rate": 3.475353333333333e-05, + "loss": 1.8820346069335938, + "step": 228800 + }, + { + "epoch": 30.52, + "grad_norm": 0.6317829489707947, + "learning_rate": 3.4746866666666664e-05, + "loss": 1.8841021728515626, + "step": 228900 + }, + { + "epoch": 30.533333333333335, + "grad_norm": 0.654059886932373, + "learning_rate": 3.47402e-05, + "loss": 1.8871124267578125, + "step": 229000 + }, + { + "epoch": 30.546666666666667, + "grad_norm": 0.6421239972114563, + "learning_rate": 3.4733533333333336e-05, + "loss": 1.8896517944335938, + "step": 229100 + }, + { + "epoch": 30.56, + "grad_norm": 0.6650997996330261, + "learning_rate": 3.472686666666667e-05, + "loss": 1.8887339782714845, + "step": 229200 + }, + { + "epoch": 30.573333333333334, + "grad_norm": 0.6281959414482117, + "learning_rate": 3.47202e-05, + "loss": 1.8887667846679688, + "step": 229300 + }, + { + "epoch": 30.586666666666666, + "grad_norm": 0.6575733423233032, + "learning_rate": 3.471353333333334e-05, + "loss": 1.889744110107422, + "step": 229400 + }, + { + "epoch": 30.6, + "grad_norm": 0.6337116360664368, + "learning_rate": 3.470686666666667e-05, + "loss": 1.8880189514160157, + "step": 229500 + }, + { + "epoch": 30.613333333333333, + "grad_norm": 0.6612198948860168, + "learning_rate": 3.47002e-05, + "loss": 1.8879634094238282, + "step": 229600 + }, + { + "epoch": 30.626666666666665, + "grad_norm": 0.6376072764396667, + "learning_rate": 3.46936e-05, + "loss": 1.8931094360351564, + "step": 229700 + }, + { + "epoch": 30.64, + "grad_norm": 0.6279535889625549, + "learning_rate": 3.4686933333333335e-05, + "loss": 1.890915069580078, + "step": 229800 + }, + { + "epoch": 30.653333333333332, + "grad_norm": 0.6393465399742126, + "learning_rate": 3.468026666666667e-05, + "loss": 1.889798583984375, + "step": 229900 + }, + { + "epoch": 30.666666666666668, + "grad_norm": 0.6623516082763672, + "learning_rate": 3.46736e-05, + "loss": 1.8915354919433593, + "step": 230000 + }, + { + "epoch": 30.68, + "grad_norm": 0.628612756729126, + "learning_rate": 3.466693333333333e-05, + "loss": 1.8947076416015625, + "step": 230100 + }, + { + "epoch": 30.693333333333335, + "grad_norm": 0.6295715570449829, + "learning_rate": 3.466026666666667e-05, + "loss": 1.8961087036132813, + "step": 230200 + }, + { + "epoch": 30.706666666666667, + "grad_norm": 0.6464623212814331, + "learning_rate": 3.46536e-05, + "loss": 1.8944891357421876, + "step": 230300 + }, + { + "epoch": 30.72, + "grad_norm": 0.6213361620903015, + "learning_rate": 3.4646933333333335e-05, + "loss": 1.8963340759277343, + "step": 230400 + }, + { + "epoch": 30.733333333333334, + "grad_norm": 0.6335080862045288, + "learning_rate": 3.464026666666667e-05, + "loss": 1.8955998229980469, + "step": 230500 + }, + { + "epoch": 30.746666666666666, + "grad_norm": 0.6538170576095581, + "learning_rate": 3.46336e-05, + "loss": 1.895076141357422, + "step": 230600 + }, + { + "epoch": 30.76, + "grad_norm": 0.6481654047966003, + "learning_rate": 3.462693333333333e-05, + "loss": 1.896536865234375, + "step": 230700 + }, + { + "epoch": 30.773333333333333, + "grad_norm": 0.6416306495666504, + "learning_rate": 3.4620266666666664e-05, + "loss": 1.8968507385253905, + "step": 230800 + }, + { + "epoch": 30.786666666666665, + "grad_norm": 0.6325493454933167, + "learning_rate": 3.4613600000000003e-05, + "loss": 1.8965896606445312, + "step": 230900 + }, + { + "epoch": 30.8, + "grad_norm": 0.6334678530693054, + "learning_rate": 3.4606933333333336e-05, + "loss": 1.8993826293945313, + "step": 231000 + }, + { + "epoch": 30.813333333333333, + "grad_norm": 0.642789363861084, + "learning_rate": 3.460026666666667e-05, + "loss": 1.899892578125, + "step": 231100 + }, + { + "epoch": 30.826666666666668, + "grad_norm": 0.6502810716629028, + "learning_rate": 3.459360000000001e-05, + "loss": 1.9054344177246094, + "step": 231200 + }, + { + "epoch": 30.84, + "grad_norm": 0.6091868281364441, + "learning_rate": 3.458693333333333e-05, + "loss": 1.9026506042480469, + "step": 231300 + }, + { + "epoch": 30.85333333333333, + "grad_norm": 0.656499981880188, + "learning_rate": 3.4580266666666665e-05, + "loss": 1.9024732971191407, + "step": 231400 + }, + { + "epoch": 30.866666666666667, + "grad_norm": 0.6632031202316284, + "learning_rate": 3.45736e-05, + "loss": 1.9011004638671876, + "step": 231500 + }, + { + "epoch": 30.88, + "grad_norm": 0.6348013281822205, + "learning_rate": 3.4566933333333336e-05, + "loss": 1.9027983093261718, + "step": 231600 + }, + { + "epoch": 30.893333333333334, + "grad_norm": 0.6693485975265503, + "learning_rate": 3.4560333333333335e-05, + "loss": 1.9033485412597657, + "step": 231700 + }, + { + "epoch": 30.906666666666666, + "grad_norm": 0.628446638584137, + "learning_rate": 3.455366666666667e-05, + "loss": 1.905799102783203, + "step": 231800 + }, + { + "epoch": 30.92, + "grad_norm": 0.6061755418777466, + "learning_rate": 3.4547e-05, + "loss": 1.9038815307617187, + "step": 231900 + }, + { + "epoch": 30.933333333333334, + "grad_norm": 0.6528656482696533, + "learning_rate": 3.454033333333334e-05, + "loss": 1.8988880920410156, + "step": 232000 + }, + { + "epoch": 30.946666666666665, + "grad_norm": 0.6434139609336853, + "learning_rate": 3.453366666666667e-05, + "loss": 1.9047633361816407, + "step": 232100 + }, + { + "epoch": 30.96, + "grad_norm": 0.621820330619812, + "learning_rate": 3.4527e-05, + "loss": 1.906195068359375, + "step": 232200 + }, + { + "epoch": 30.973333333333333, + "grad_norm": 0.6167011857032776, + "learning_rate": 3.4520333333333336e-05, + "loss": 1.9075782775878907, + "step": 232300 + }, + { + "epoch": 30.986666666666668, + "grad_norm": 0.6764289736747742, + "learning_rate": 3.451366666666667e-05, + "loss": 1.9077426147460939, + "step": 232400 + }, + { + "epoch": 31.0, + "grad_norm": 0.6597962975502014, + "learning_rate": 3.4507e-05, + "loss": 1.9063412475585937, + "step": 232500 + }, + { + "epoch": 31.013333333333332, + "grad_norm": 0.6323487758636475, + "learning_rate": 3.450033333333333e-05, + "loss": 1.8208100891113281, + "step": 232600 + }, + { + "epoch": 31.026666666666667, + "grad_norm": 0.6353087425231934, + "learning_rate": 3.449366666666667e-05, + "loss": 1.8169317626953125, + "step": 232700 + }, + { + "epoch": 31.04, + "grad_norm": 0.6516137719154358, + "learning_rate": 3.4487000000000004e-05, + "loss": 1.8187254333496095, + "step": 232800 + }, + { + "epoch": 31.053333333333335, + "grad_norm": 0.6380991339683533, + "learning_rate": 3.4480333333333336e-05, + "loss": 1.828922119140625, + "step": 232900 + }, + { + "epoch": 31.066666666666666, + "grad_norm": 0.6637365221977234, + "learning_rate": 3.447366666666667e-05, + "loss": 1.8281976318359374, + "step": 233000 + }, + { + "epoch": 31.08, + "grad_norm": 0.6347978115081787, + "learning_rate": 3.4467e-05, + "loss": 1.8291136169433593, + "step": 233100 + }, + { + "epoch": 31.093333333333334, + "grad_norm": 0.6856868863105774, + "learning_rate": 3.446033333333333e-05, + "loss": 1.8266050720214844, + "step": 233200 + }, + { + "epoch": 31.106666666666666, + "grad_norm": 0.6957641839981079, + "learning_rate": 3.4453666666666665e-05, + "loss": 1.8307728576660156, + "step": 233300 + }, + { + "epoch": 31.12, + "grad_norm": 0.657038688659668, + "learning_rate": 3.4447000000000004e-05, + "loss": 1.8359172058105468, + "step": 233400 + }, + { + "epoch": 31.133333333333333, + "grad_norm": 0.6168066263198853, + "learning_rate": 3.4440333333333336e-05, + "loss": 1.8327171325683593, + "step": 233500 + }, + { + "epoch": 31.14666666666667, + "grad_norm": 0.6589761972427368, + "learning_rate": 3.443366666666667e-05, + "loss": 1.8356471252441406, + "step": 233600 + }, + { + "epoch": 31.16, + "grad_norm": 0.656284749507904, + "learning_rate": 3.442706666666667e-05, + "loss": 1.8352957153320313, + "step": 233700 + }, + { + "epoch": 31.173333333333332, + "grad_norm": 0.6507891416549683, + "learning_rate": 3.44204e-05, + "loss": 1.8356683349609375, + "step": 233800 + }, + { + "epoch": 31.186666666666667, + "grad_norm": 0.6691421270370483, + "learning_rate": 3.441373333333334e-05, + "loss": 1.8375747680664063, + "step": 233900 + }, + { + "epoch": 31.2, + "grad_norm": 0.6770158410072327, + "learning_rate": 3.440706666666667e-05, + "loss": 1.8438589477539062, + "step": 234000 + }, + { + "epoch": 31.213333333333335, + "grad_norm": 0.6403542160987854, + "learning_rate": 3.44004e-05, + "loss": 1.8394532775878907, + "step": 234100 + }, + { + "epoch": 31.226666666666667, + "grad_norm": 0.6421419978141785, + "learning_rate": 3.4393733333333336e-05, + "loss": 1.8419064331054686, + "step": 234200 + }, + { + "epoch": 31.24, + "grad_norm": 0.6424593925476074, + "learning_rate": 3.438706666666667e-05, + "loss": 1.839052734375, + "step": 234300 + }, + { + "epoch": 31.253333333333334, + "grad_norm": 0.6520510911941528, + "learning_rate": 3.43804e-05, + "loss": 1.8442149353027344, + "step": 234400 + }, + { + "epoch": 31.266666666666666, + "grad_norm": 0.6459802985191345, + "learning_rate": 3.437373333333333e-05, + "loss": 1.8480723571777344, + "step": 234500 + }, + { + "epoch": 31.28, + "grad_norm": 0.6531192660331726, + "learning_rate": 3.436706666666667e-05, + "loss": 1.8451568603515625, + "step": 234600 + }, + { + "epoch": 31.293333333333333, + "grad_norm": 0.6506422758102417, + "learning_rate": 3.4360400000000004e-05, + "loss": 1.8467247009277343, + "step": 234700 + }, + { + "epoch": 31.306666666666665, + "grad_norm": 0.6557679176330566, + "learning_rate": 3.435373333333333e-05, + "loss": 1.8464105224609375, + "step": 234800 + }, + { + "epoch": 31.32, + "grad_norm": 0.6555748581886292, + "learning_rate": 3.434706666666667e-05, + "loss": 1.8486134338378906, + "step": 234900 + }, + { + "epoch": 31.333333333333332, + "grad_norm": 0.6634244322776794, + "learning_rate": 3.43404e-05, + "loss": 1.8502972412109375, + "step": 235000 + }, + { + "epoch": 31.346666666666668, + "grad_norm": 0.6522782444953918, + "learning_rate": 3.433373333333333e-05, + "loss": 1.8538160705566407, + "step": 235100 + }, + { + "epoch": 31.36, + "grad_norm": 0.6471147537231445, + "learning_rate": 3.4327066666666665e-05, + "loss": 1.8480146789550782, + "step": 235200 + }, + { + "epoch": 31.373333333333335, + "grad_norm": 0.6697273254394531, + "learning_rate": 3.4320400000000004e-05, + "loss": 1.8517044067382813, + "step": 235300 + }, + { + "epoch": 31.386666666666667, + "grad_norm": 0.6725065112113953, + "learning_rate": 3.4313733333333337e-05, + "loss": 1.8513163757324218, + "step": 235400 + }, + { + "epoch": 31.4, + "grad_norm": 0.6726689338684082, + "learning_rate": 3.430706666666667e-05, + "loss": 1.8532307434082032, + "step": 235500 + }, + { + "epoch": 31.413333333333334, + "grad_norm": 0.6598038673400879, + "learning_rate": 3.43004e-05, + "loss": 1.8543743896484375, + "step": 235600 + }, + { + "epoch": 31.426666666666666, + "grad_norm": 0.6628021001815796, + "learning_rate": 3.429380000000001e-05, + "loss": 1.8543577575683594, + "step": 235700 + }, + { + "epoch": 31.44, + "grad_norm": 0.677413284778595, + "learning_rate": 3.428713333333333e-05, + "loss": 1.8539126586914063, + "step": 235800 + }, + { + "epoch": 31.453333333333333, + "grad_norm": 0.6506122350692749, + "learning_rate": 3.4280466666666665e-05, + "loss": 1.8576051330566405, + "step": 235900 + }, + { + "epoch": 31.466666666666665, + "grad_norm": 0.6622093319892883, + "learning_rate": 3.42738e-05, + "loss": 1.8572665405273439, + "step": 236000 + }, + { + "epoch": 31.48, + "grad_norm": 0.674359142780304, + "learning_rate": 3.4267133333333336e-05, + "loss": 1.8588676452636719, + "step": 236100 + }, + { + "epoch": 31.493333333333332, + "grad_norm": 0.6599639058113098, + "learning_rate": 3.426046666666667e-05, + "loss": 1.8583624267578125, + "step": 236200 + }, + { + "epoch": 31.506666666666668, + "grad_norm": 0.6558268666267395, + "learning_rate": 3.42538e-05, + "loss": 1.8596633911132812, + "step": 236300 + }, + { + "epoch": 31.52, + "grad_norm": 0.6776077151298523, + "learning_rate": 3.424713333333334e-05, + "loss": 1.8617288208007812, + "step": 236400 + }, + { + "epoch": 31.533333333333335, + "grad_norm": 0.6699625253677368, + "learning_rate": 3.424046666666667e-05, + "loss": 1.8598435974121095, + "step": 236500 + }, + { + "epoch": 31.546666666666667, + "grad_norm": 0.6473347544670105, + "learning_rate": 3.42338e-05, + "loss": 1.8564553833007813, + "step": 236600 + }, + { + "epoch": 31.56, + "grad_norm": 0.6418144702911377, + "learning_rate": 3.4227133333333336e-05, + "loss": 1.8607228088378907, + "step": 236700 + }, + { + "epoch": 31.573333333333334, + "grad_norm": 0.6646478772163391, + "learning_rate": 3.422046666666667e-05, + "loss": 1.8621051025390625, + "step": 236800 + }, + { + "epoch": 31.586666666666666, + "grad_norm": 0.6577756404876709, + "learning_rate": 3.42138e-05, + "loss": 1.8664056396484374, + "step": 236900 + }, + { + "epoch": 31.6, + "grad_norm": 0.6546629667282104, + "learning_rate": 3.420713333333333e-05, + "loss": 1.8602700805664063, + "step": 237000 + }, + { + "epoch": 31.613333333333333, + "grad_norm": 0.6508590579032898, + "learning_rate": 3.420046666666667e-05, + "loss": 1.8613612365722656, + "step": 237100 + }, + { + "epoch": 31.626666666666665, + "grad_norm": 0.6625661253929138, + "learning_rate": 3.4193800000000005e-05, + "loss": 1.8683642578125, + "step": 237200 + }, + { + "epoch": 31.64, + "grad_norm": 0.6706848740577698, + "learning_rate": 3.418713333333334e-05, + "loss": 1.8645219421386718, + "step": 237300 + }, + { + "epoch": 31.653333333333332, + "grad_norm": 0.6599859595298767, + "learning_rate": 3.418046666666667e-05, + "loss": 1.8640052795410156, + "step": 237400 + }, + { + "epoch": 31.666666666666668, + "grad_norm": 0.6782610416412354, + "learning_rate": 3.41738e-05, + "loss": 1.8663507080078126, + "step": 237500 + }, + { + "epoch": 31.68, + "grad_norm": 0.6501734852790833, + "learning_rate": 3.4167133333333334e-05, + "loss": 1.864781951904297, + "step": 237600 + }, + { + "epoch": 31.693333333333335, + "grad_norm": 0.6596933603286743, + "learning_rate": 3.416053333333333e-05, + "loss": 1.8692094421386718, + "step": 237700 + }, + { + "epoch": 31.706666666666667, + "grad_norm": 0.6630842685699463, + "learning_rate": 3.4153866666666665e-05, + "loss": 1.8750367736816407, + "step": 237800 + }, + { + "epoch": 31.72, + "grad_norm": 0.6862805485725403, + "learning_rate": 3.4147200000000004e-05, + "loss": 1.8699729919433594, + "step": 237900 + }, + { + "epoch": 31.733333333333334, + "grad_norm": 0.6476590037345886, + "learning_rate": 3.4140533333333336e-05, + "loss": 1.8710263061523438, + "step": 238000 + }, + { + "epoch": 31.746666666666666, + "grad_norm": 0.6775981187820435, + "learning_rate": 3.413386666666667e-05, + "loss": 1.8723735046386718, + "step": 238100 + }, + { + "epoch": 31.76, + "grad_norm": 0.6427512168884277, + "learning_rate": 3.41272e-05, + "loss": 1.8744818115234374, + "step": 238200 + }, + { + "epoch": 31.773333333333333, + "grad_norm": 0.6625904440879822, + "learning_rate": 3.412053333333334e-05, + "loss": 1.8720915222167969, + "step": 238300 + }, + { + "epoch": 31.786666666666665, + "grad_norm": 0.6708217859268188, + "learning_rate": 3.4113866666666665e-05, + "loss": 1.8733248901367188, + "step": 238400 + }, + { + "epoch": 31.8, + "grad_norm": 0.6499980092048645, + "learning_rate": 3.41072e-05, + "loss": 1.8720248413085938, + "step": 238500 + }, + { + "epoch": 31.813333333333333, + "grad_norm": 0.6474357843399048, + "learning_rate": 3.41006e-05, + "loss": 1.875724334716797, + "step": 238600 + }, + { + "epoch": 31.826666666666668, + "grad_norm": 0.639595627784729, + "learning_rate": 3.4093933333333336e-05, + "loss": 1.8767543029785156, + "step": 238700 + }, + { + "epoch": 31.84, + "grad_norm": 0.6569827795028687, + "learning_rate": 3.408726666666667e-05, + "loss": 1.8743658447265625, + "step": 238800 + }, + { + "epoch": 31.85333333333333, + "grad_norm": 0.6573343873023987, + "learning_rate": 3.40806e-05, + "loss": 1.876455078125, + "step": 238900 + }, + { + "epoch": 31.866666666666667, + "grad_norm": 0.6686303019523621, + "learning_rate": 3.407393333333333e-05, + "loss": 1.875361785888672, + "step": 239000 + }, + { + "epoch": 31.88, + "grad_norm": 0.6887635588645935, + "learning_rate": 3.406726666666667e-05, + "loss": 1.87423583984375, + "step": 239100 + }, + { + "epoch": 31.893333333333334, + "grad_norm": 0.6796891093254089, + "learning_rate": 3.4060600000000004e-05, + "loss": 1.878402099609375, + "step": 239200 + }, + { + "epoch": 31.906666666666666, + "grad_norm": 0.7028095722198486, + "learning_rate": 3.4053933333333336e-05, + "loss": 1.879278106689453, + "step": 239300 + }, + { + "epoch": 31.92, + "grad_norm": 0.6571170687675476, + "learning_rate": 3.404726666666667e-05, + "loss": 1.8795460510253905, + "step": 239400 + }, + { + "epoch": 31.933333333333334, + "grad_norm": 0.6626359820365906, + "learning_rate": 3.40406e-05, + "loss": 1.8782347106933595, + "step": 239500 + }, + { + "epoch": 31.946666666666665, + "grad_norm": 0.6341395378112793, + "learning_rate": 3.403393333333333e-05, + "loss": 1.8807855224609376, + "step": 239600 + }, + { + "epoch": 31.96, + "grad_norm": 0.7045288681983948, + "learning_rate": 3.4027266666666665e-05, + "loss": 1.8818238830566407, + "step": 239700 + }, + { + "epoch": 31.973333333333333, + "grad_norm": 0.6587862372398376, + "learning_rate": 3.4020600000000004e-05, + "loss": 1.8825888061523437, + "step": 239800 + }, + { + "epoch": 31.986666666666668, + "grad_norm": 0.6503267288208008, + "learning_rate": 3.4013933333333337e-05, + "loss": 1.8872879028320313, + "step": 239900 + }, + { + "epoch": 32.0, + "grad_norm": 0.6603325605392456, + "learning_rate": 3.400726666666667e-05, + "loss": 1.8781341552734374, + "step": 240000 + }, + { + "epoch": 32.013333333333335, + "grad_norm": 0.6310288906097412, + "learning_rate": 3.40006e-05, + "loss": 1.7969367980957032, + "step": 240100 + }, + { + "epoch": 32.026666666666664, + "grad_norm": 0.6715329885482788, + "learning_rate": 3.399393333333333e-05, + "loss": 1.8000009155273438, + "step": 240200 + }, + { + "epoch": 32.04, + "grad_norm": 0.6543241143226624, + "learning_rate": 3.3987266666666666e-05, + "loss": 1.7961320495605468, + "step": 240300 + }, + { + "epoch": 32.053333333333335, + "grad_norm": 0.6774461269378662, + "learning_rate": 3.3980600000000005e-05, + "loss": 1.8003314208984376, + "step": 240400 + }, + { + "epoch": 32.06666666666667, + "grad_norm": 0.6529948711395264, + "learning_rate": 3.397393333333334e-05, + "loss": 1.8036393737792968, + "step": 240500 + }, + { + "epoch": 32.08, + "grad_norm": 0.6645397543907166, + "learning_rate": 3.396726666666667e-05, + "loss": 1.7999684143066406, + "step": 240600 + }, + { + "epoch": 32.093333333333334, + "grad_norm": 0.6966586112976074, + "learning_rate": 3.39606e-05, + "loss": 1.8084344482421875, + "step": 240700 + }, + { + "epoch": 32.10666666666667, + "grad_norm": 0.6967159509658813, + "learning_rate": 3.395393333333334e-05, + "loss": 1.8040733337402344, + "step": 240800 + }, + { + "epoch": 32.12, + "grad_norm": 0.6923654675483704, + "learning_rate": 3.3947266666666666e-05, + "loss": 1.8065350341796875, + "step": 240900 + }, + { + "epoch": 32.13333333333333, + "grad_norm": 0.6938139200210571, + "learning_rate": 3.39406e-05, + "loss": 1.8069944763183594, + "step": 241000 + }, + { + "epoch": 32.14666666666667, + "grad_norm": 0.6618465781211853, + "learning_rate": 3.393393333333334e-05, + "loss": 1.80832763671875, + "step": 241100 + }, + { + "epoch": 32.16, + "grad_norm": 0.681530773639679, + "learning_rate": 3.392726666666667e-05, + "loss": 1.8130369567871094, + "step": 241200 + }, + { + "epoch": 32.17333333333333, + "grad_norm": 0.692341148853302, + "learning_rate": 3.39206e-05, + "loss": 1.8068063354492188, + "step": 241300 + }, + { + "epoch": 32.18666666666667, + "grad_norm": 0.6659745573997498, + "learning_rate": 3.3913933333333334e-05, + "loss": 1.8177037048339844, + "step": 241400 + }, + { + "epoch": 32.2, + "grad_norm": 0.6756054162979126, + "learning_rate": 3.390726666666667e-05, + "loss": 1.812709503173828, + "step": 241500 + }, + { + "epoch": 32.21333333333333, + "grad_norm": 0.6909893751144409, + "learning_rate": 3.39006e-05, + "loss": 1.8146788024902343, + "step": 241600 + }, + { + "epoch": 32.22666666666667, + "grad_norm": 0.6421316266059875, + "learning_rate": 3.389393333333333e-05, + "loss": 1.8204322814941407, + "step": 241700 + }, + { + "epoch": 32.24, + "grad_norm": 0.6924384236335754, + "learning_rate": 3.388726666666667e-05, + "loss": 1.8170956420898436, + "step": 241800 + }, + { + "epoch": 32.25333333333333, + "grad_norm": 0.7075912356376648, + "learning_rate": 3.38806e-05, + "loss": 1.8158349609375, + "step": 241900 + }, + { + "epoch": 32.266666666666666, + "grad_norm": 0.698880136013031, + "learning_rate": 3.3873933333333334e-05, + "loss": 1.822403564453125, + "step": 242000 + }, + { + "epoch": 32.28, + "grad_norm": 0.6914991736412048, + "learning_rate": 3.386726666666667e-05, + "loss": 1.8238410949707031, + "step": 242100 + }, + { + "epoch": 32.29333333333334, + "grad_norm": 0.6999617218971252, + "learning_rate": 3.3860600000000006e-05, + "loss": 1.8204554748535156, + "step": 242200 + }, + { + "epoch": 32.306666666666665, + "grad_norm": 0.6469098925590515, + "learning_rate": 3.385393333333334e-05, + "loss": 1.8187814331054688, + "step": 242300 + }, + { + "epoch": 32.32, + "grad_norm": 0.6881408095359802, + "learning_rate": 3.3847266666666664e-05, + "loss": 1.823394775390625, + "step": 242400 + }, + { + "epoch": 32.333333333333336, + "grad_norm": 0.6413573622703552, + "learning_rate": 3.38406e-05, + "loss": 1.8220912170410157, + "step": 242500 + }, + { + "epoch": 32.346666666666664, + "grad_norm": 0.6949501633644104, + "learning_rate": 3.3834e-05, + "loss": 1.825587921142578, + "step": 242600 + }, + { + "epoch": 32.36, + "grad_norm": 0.6824288964271545, + "learning_rate": 3.3827333333333334e-05, + "loss": 1.8236434936523438, + "step": 242700 + }, + { + "epoch": 32.373333333333335, + "grad_norm": 0.6769747734069824, + "learning_rate": 3.3820666666666666e-05, + "loss": 1.8265499877929687, + "step": 242800 + }, + { + "epoch": 32.38666666666666, + "grad_norm": 0.663185715675354, + "learning_rate": 3.3814e-05, + "loss": 1.8235643005371094, + "step": 242900 + }, + { + "epoch": 32.4, + "grad_norm": 0.6693112254142761, + "learning_rate": 3.380733333333334e-05, + "loss": 1.830492706298828, + "step": 243000 + }, + { + "epoch": 32.413333333333334, + "grad_norm": 0.6796991229057312, + "learning_rate": 3.3800733333333337e-05, + "loss": 1.8297494506835938, + "step": 243100 + }, + { + "epoch": 32.42666666666667, + "grad_norm": 0.6557438969612122, + "learning_rate": 3.379406666666667e-05, + "loss": 1.8294140625, + "step": 243200 + }, + { + "epoch": 32.44, + "grad_norm": 0.6834737062454224, + "learning_rate": 3.37874e-05, + "loss": 1.8335061645507813, + "step": 243300 + }, + { + "epoch": 32.45333333333333, + "grad_norm": 0.6919399499893188, + "learning_rate": 3.3780733333333333e-05, + "loss": 1.829990997314453, + "step": 243400 + }, + { + "epoch": 32.46666666666667, + "grad_norm": 0.6703587174415588, + "learning_rate": 3.377406666666667e-05, + "loss": 1.8283270263671876, + "step": 243500 + }, + { + "epoch": 32.48, + "grad_norm": 0.6480154991149902, + "learning_rate": 3.37674e-05, + "loss": 1.8319325256347656, + "step": 243600 + }, + { + "epoch": 32.49333333333333, + "grad_norm": 0.6802955865859985, + "learning_rate": 3.376073333333333e-05, + "loss": 1.8309434509277345, + "step": 243700 + }, + { + "epoch": 32.50666666666667, + "grad_norm": 0.6789207458496094, + "learning_rate": 3.375406666666667e-05, + "loss": 1.8343551635742188, + "step": 243800 + }, + { + "epoch": 32.52, + "grad_norm": 0.679716169834137, + "learning_rate": 3.37474e-05, + "loss": 1.8310325622558594, + "step": 243900 + }, + { + "epoch": 32.53333333333333, + "grad_norm": 0.6787630319595337, + "learning_rate": 3.3740733333333334e-05, + "loss": 1.8323744201660157, + "step": 244000 + }, + { + "epoch": 32.54666666666667, + "grad_norm": 0.7034173011779785, + "learning_rate": 3.3734066666666666e-05, + "loss": 1.8383087158203124, + "step": 244100 + }, + { + "epoch": 32.56, + "grad_norm": 0.6853973865509033, + "learning_rate": 3.3727400000000005e-05, + "loss": 1.8405967712402345, + "step": 244200 + }, + { + "epoch": 32.57333333333333, + "grad_norm": 0.6757837533950806, + "learning_rate": 3.372073333333334e-05, + "loss": 1.8397735595703124, + "step": 244300 + }, + { + "epoch": 32.586666666666666, + "grad_norm": 0.7057570815086365, + "learning_rate": 3.371406666666666e-05, + "loss": 1.8403346252441406, + "step": 244400 + }, + { + "epoch": 32.6, + "grad_norm": 0.6852734684944153, + "learning_rate": 3.37074e-05, + "loss": 1.8357850646972655, + "step": 244500 + }, + { + "epoch": 32.61333333333333, + "grad_norm": 0.6865105628967285, + "learning_rate": 3.3700733333333334e-05, + "loss": 1.8388577270507813, + "step": 244600 + }, + { + "epoch": 32.626666666666665, + "grad_norm": 0.6819406747817993, + "learning_rate": 3.3694066666666666e-05, + "loss": 1.8388409423828125, + "step": 244700 + }, + { + "epoch": 32.64, + "grad_norm": 0.70542311668396, + "learning_rate": 3.3687400000000005e-05, + "loss": 1.8410357666015624, + "step": 244800 + }, + { + "epoch": 32.653333333333336, + "grad_norm": 0.6699349284172058, + "learning_rate": 3.368073333333334e-05, + "loss": 1.838839569091797, + "step": 244900 + }, + { + "epoch": 32.666666666666664, + "grad_norm": 0.6589396595954895, + "learning_rate": 3.367406666666667e-05, + "loss": 1.8432624816894532, + "step": 245000 + }, + { + "epoch": 32.68, + "grad_norm": 0.6670289635658264, + "learning_rate": 3.36674e-05, + "loss": 1.8423471069335937, + "step": 245100 + }, + { + "epoch": 32.693333333333335, + "grad_norm": 0.7071298956871033, + "learning_rate": 3.3660733333333335e-05, + "loss": 1.8458381652832032, + "step": 245200 + }, + { + "epoch": 32.70666666666666, + "grad_norm": 0.6842973232269287, + "learning_rate": 3.365406666666667e-05, + "loss": 1.8477865600585937, + "step": 245300 + }, + { + "epoch": 32.72, + "grad_norm": 0.6763595342636108, + "learning_rate": 3.36474e-05, + "loss": 1.8455276489257812, + "step": 245400 + }, + { + "epoch": 32.733333333333334, + "grad_norm": 0.6894487142562866, + "learning_rate": 3.364073333333334e-05, + "loss": 1.847926025390625, + "step": 245500 + }, + { + "epoch": 32.74666666666667, + "grad_norm": 0.6884575486183167, + "learning_rate": 3.363406666666667e-05, + "loss": 1.8473049926757812, + "step": 245600 + }, + { + "epoch": 32.76, + "grad_norm": 0.6874258518218994, + "learning_rate": 3.36274e-05, + "loss": 1.8455709838867187, + "step": 245700 + }, + { + "epoch": 32.77333333333333, + "grad_norm": 0.6681150197982788, + "learning_rate": 3.3620733333333335e-05, + "loss": 1.8474746704101563, + "step": 245800 + }, + { + "epoch": 32.78666666666667, + "grad_norm": 0.6818782687187195, + "learning_rate": 3.361406666666667e-05, + "loss": 1.848689727783203, + "step": 245900 + }, + { + "epoch": 32.8, + "grad_norm": 0.6926629543304443, + "learning_rate": 3.36074e-05, + "loss": 1.8480201721191407, + "step": 246000 + }, + { + "epoch": 32.81333333333333, + "grad_norm": 0.6802074313163757, + "learning_rate": 3.360073333333333e-05, + "loss": 1.8487611389160157, + "step": 246100 + }, + { + "epoch": 32.82666666666667, + "grad_norm": 0.6938923597335815, + "learning_rate": 3.359406666666667e-05, + "loss": 1.8549391174316405, + "step": 246200 + }, + { + "epoch": 32.84, + "grad_norm": 0.6887032389640808, + "learning_rate": 3.35874e-05, + "loss": 1.855552978515625, + "step": 246300 + }, + { + "epoch": 32.85333333333333, + "grad_norm": 0.6876346468925476, + "learning_rate": 3.3580733333333335e-05, + "loss": 1.8523348999023437, + "step": 246400 + }, + { + "epoch": 32.86666666666667, + "grad_norm": 0.6914822459220886, + "learning_rate": 3.357406666666667e-05, + "loss": 1.851287841796875, + "step": 246500 + }, + { + "epoch": 32.88, + "grad_norm": 0.6880086660385132, + "learning_rate": 3.35674e-05, + "loss": 1.8532257080078125, + "step": 246600 + }, + { + "epoch": 32.89333333333333, + "grad_norm": 0.6851861476898193, + "learning_rate": 3.356073333333333e-05, + "loss": 1.8526493835449218, + "step": 246700 + }, + { + "epoch": 32.906666666666666, + "grad_norm": 0.7228900194168091, + "learning_rate": 3.3554066666666664e-05, + "loss": 1.8538876342773438, + "step": 246800 + }, + { + "epoch": 32.92, + "grad_norm": 0.6968467831611633, + "learning_rate": 3.3547400000000003e-05, + "loss": 1.855828857421875, + "step": 246900 + }, + { + "epoch": 32.93333333333333, + "grad_norm": 0.6718273162841797, + "learning_rate": 3.3540733333333336e-05, + "loss": 1.8609310913085937, + "step": 247000 + }, + { + "epoch": 32.946666666666665, + "grad_norm": 0.7059205174446106, + "learning_rate": 3.3534133333333335e-05, + "loss": 1.8553521728515625, + "step": 247100 + }, + { + "epoch": 32.96, + "grad_norm": 0.6735067963600159, + "learning_rate": 3.352746666666667e-05, + "loss": 1.8593675231933593, + "step": 247200 + }, + { + "epoch": 32.973333333333336, + "grad_norm": 0.6527106165885925, + "learning_rate": 3.35208e-05, + "loss": 1.8580506896972657, + "step": 247300 + }, + { + "epoch": 32.986666666666665, + "grad_norm": 0.6713843941688538, + "learning_rate": 3.351413333333334e-05, + "loss": 1.8553984069824219, + "step": 247400 + }, + { + "epoch": 33.0, + "grad_norm": 0.6805854439735413, + "learning_rate": 3.350746666666667e-05, + "loss": 1.8589930725097656, + "step": 247500 + }, + { + "epoch": 33.013333333333335, + "grad_norm": 0.6813168525695801, + "learning_rate": 3.3500799999999996e-05, + "loss": 1.7653323364257814, + "step": 247600 + }, + { + "epoch": 33.026666666666664, + "grad_norm": 0.7006181478500366, + "learning_rate": 3.3494133333333335e-05, + "loss": 1.7744679260253906, + "step": 247700 + }, + { + "epoch": 33.04, + "grad_norm": 0.6603790521621704, + "learning_rate": 3.348746666666667e-05, + "loss": 1.7725636291503906, + "step": 247800 + }, + { + "epoch": 33.053333333333335, + "grad_norm": 0.7163404226303101, + "learning_rate": 3.34808e-05, + "loss": 1.7759190368652344, + "step": 247900 + }, + { + "epoch": 33.06666666666667, + "grad_norm": 0.6999438405036926, + "learning_rate": 3.347413333333333e-05, + "loss": 1.779423828125, + "step": 248000 + }, + { + "epoch": 33.08, + "grad_norm": 0.6900789737701416, + "learning_rate": 3.346746666666667e-05, + "loss": 1.777518768310547, + "step": 248100 + }, + { + "epoch": 33.093333333333334, + "grad_norm": 0.6616639494895935, + "learning_rate": 3.346086666666667e-05, + "loss": 1.7815655517578124, + "step": 248200 + }, + { + "epoch": 33.10666666666667, + "grad_norm": 0.6825656890869141, + "learning_rate": 3.34542e-05, + "loss": 1.7781207275390625, + "step": 248300 + }, + { + "epoch": 33.12, + "grad_norm": 0.6620200872421265, + "learning_rate": 3.3447533333333335e-05, + "loss": 1.780341796875, + "step": 248400 + }, + { + "epoch": 33.13333333333333, + "grad_norm": 0.69339919090271, + "learning_rate": 3.3440866666666674e-05, + "loss": 1.7857955932617187, + "step": 248500 + }, + { + "epoch": 33.14666666666667, + "grad_norm": 0.6670458316802979, + "learning_rate": 3.34342e-05, + "loss": 1.782757568359375, + "step": 248600 + }, + { + "epoch": 33.16, + "grad_norm": 0.6833922863006592, + "learning_rate": 3.342753333333333e-05, + "loss": 1.7865505981445313, + "step": 248700 + }, + { + "epoch": 33.17333333333333, + "grad_norm": 0.691870927810669, + "learning_rate": 3.3420866666666664e-05, + "loss": 1.7900071716308594, + "step": 248800 + }, + { + "epoch": 33.18666666666667, + "grad_norm": 0.6759406924247742, + "learning_rate": 3.34142e-05, + "loss": 1.7894091796875, + "step": 248900 + }, + { + "epoch": 33.2, + "grad_norm": 0.6733843684196472, + "learning_rate": 3.3407533333333335e-05, + "loss": 1.789012451171875, + "step": 249000 + }, + { + "epoch": 33.21333333333333, + "grad_norm": 0.6950940489768982, + "learning_rate": 3.340086666666667e-05, + "loss": 1.7880499267578125, + "step": 249100 + }, + { + "epoch": 33.22666666666667, + "grad_norm": 0.7324302792549133, + "learning_rate": 3.3394200000000006e-05, + "loss": 1.7905299377441406, + "step": 249200 + }, + { + "epoch": 33.24, + "grad_norm": 0.6907392144203186, + "learning_rate": 3.338753333333334e-05, + "loss": 1.7943400573730468, + "step": 249300 + }, + { + "epoch": 33.25333333333333, + "grad_norm": 0.7105041742324829, + "learning_rate": 3.3380866666666664e-05, + "loss": 1.7948751831054688, + "step": 249400 + }, + { + "epoch": 33.266666666666666, + "grad_norm": 0.709616482257843, + "learning_rate": 3.33742e-05, + "loss": 1.7902720642089844, + "step": 249500 + }, + { + "epoch": 33.28, + "grad_norm": 0.6986458897590637, + "learning_rate": 3.3367533333333335e-05, + "loss": 1.7960736083984374, + "step": 249600 + }, + { + "epoch": 33.29333333333334, + "grad_norm": 0.6758502125740051, + "learning_rate": 3.336086666666667e-05, + "loss": 1.7959979248046876, + "step": 249700 + }, + { + "epoch": 33.306666666666665, + "grad_norm": 0.6880955100059509, + "learning_rate": 3.33542e-05, + "loss": 1.7931544494628906, + "step": 249800 + }, + { + "epoch": 33.32, + "grad_norm": 0.7262503504753113, + "learning_rate": 3.334753333333334e-05, + "loss": 1.7994598388671874, + "step": 249900 + }, + { + "epoch": 33.333333333333336, + "grad_norm": 0.7109691500663757, + "learning_rate": 3.334086666666667e-05, + "loss": 1.79959716796875, + "step": 250000 + }, + { + "epoch": 33.346666666666664, + "grad_norm": 0.6842638850212097, + "learning_rate": 3.3334200000000003e-05, + "loss": 1.8011337280273438, + "step": 250100 + }, + { + "epoch": 33.36, + "grad_norm": 0.6685046553611755, + "learning_rate": 3.3327533333333336e-05, + "loss": 1.7983401489257813, + "step": 250200 + }, + { + "epoch": 33.373333333333335, + "grad_norm": 0.6885914206504822, + "learning_rate": 3.332086666666667e-05, + "loss": 1.7981385803222656, + "step": 250300 + }, + { + "epoch": 33.38666666666666, + "grad_norm": 0.6753001809120178, + "learning_rate": 3.33142e-05, + "loss": 1.801946258544922, + "step": 250400 + }, + { + "epoch": 33.4, + "grad_norm": 0.7187413573265076, + "learning_rate": 3.330753333333333e-05, + "loss": 1.8074136352539063, + "step": 250500 + }, + { + "epoch": 33.413333333333334, + "grad_norm": 0.6833614706993103, + "learning_rate": 3.330086666666667e-05, + "loss": 1.8049317932128905, + "step": 250600 + }, + { + "epoch": 33.42666666666667, + "grad_norm": 0.7071197032928467, + "learning_rate": 3.3294200000000004e-05, + "loss": 1.806915283203125, + "step": 250700 + }, + { + "epoch": 33.44, + "grad_norm": 0.6831562519073486, + "learning_rate": 3.3287533333333336e-05, + "loss": 1.8139138793945313, + "step": 250800 + }, + { + "epoch": 33.45333333333333, + "grad_norm": 0.6773768663406372, + "learning_rate": 3.328086666666667e-05, + "loss": 1.8078269958496094, + "step": 250900 + }, + { + "epoch": 33.46666666666667, + "grad_norm": 0.7057144045829773, + "learning_rate": 3.32742e-05, + "loss": 1.8035978698730468, + "step": 251000 + }, + { + "epoch": 33.48, + "grad_norm": 0.6799418926239014, + "learning_rate": 3.326753333333333e-05, + "loss": 1.8070053100585937, + "step": 251100 + }, + { + "epoch": 33.49333333333333, + "grad_norm": 0.7026559710502625, + "learning_rate": 3.3260866666666665e-05, + "loss": 1.8107217407226563, + "step": 251200 + }, + { + "epoch": 33.50666666666667, + "grad_norm": 0.7009078860282898, + "learning_rate": 3.3254200000000004e-05, + "loss": 1.8101768493652344, + "step": 251300 + }, + { + "epoch": 33.52, + "grad_norm": 0.6963510513305664, + "learning_rate": 3.3247533333333337e-05, + "loss": 1.8111842346191407, + "step": 251400 + }, + { + "epoch": 33.53333333333333, + "grad_norm": 0.7202256321907043, + "learning_rate": 3.324086666666667e-05, + "loss": 1.8143753051757812, + "step": 251500 + }, + { + "epoch": 33.54666666666667, + "grad_norm": 0.7055407166481018, + "learning_rate": 3.32342e-05, + "loss": 1.809178924560547, + "step": 251600 + }, + { + "epoch": 33.56, + "grad_norm": 0.6829138398170471, + "learning_rate": 3.322753333333333e-05, + "loss": 1.8132537841796874, + "step": 251700 + }, + { + "epoch": 33.57333333333333, + "grad_norm": 0.7111719250679016, + "learning_rate": 3.3220866666666666e-05, + "loss": 1.814945831298828, + "step": 251800 + }, + { + "epoch": 33.586666666666666, + "grad_norm": 0.686894953250885, + "learning_rate": 3.32142e-05, + "loss": 1.8139251708984374, + "step": 251900 + }, + { + "epoch": 33.6, + "grad_norm": 0.717078685760498, + "learning_rate": 3.320753333333334e-05, + "loss": 1.8149430847167969, + "step": 252000 + }, + { + "epoch": 33.61333333333333, + "grad_norm": 0.7175689935684204, + "learning_rate": 3.320086666666667e-05, + "loss": 1.816144256591797, + "step": 252100 + }, + { + "epoch": 33.626666666666665, + "grad_norm": 0.683018684387207, + "learning_rate": 3.319426666666667e-05, + "loss": 1.8191485595703125, + "step": 252200 + }, + { + "epoch": 33.64, + "grad_norm": 0.7148421406745911, + "learning_rate": 3.31876e-05, + "loss": 1.818320770263672, + "step": 252300 + }, + { + "epoch": 33.653333333333336, + "grad_norm": 0.7053855061531067, + "learning_rate": 3.318093333333333e-05, + "loss": 1.8194677734375, + "step": 252400 + }, + { + "epoch": 33.666666666666664, + "grad_norm": 0.7079534530639648, + "learning_rate": 3.317426666666667e-05, + "loss": 1.81727783203125, + "step": 252500 + }, + { + "epoch": 33.68, + "grad_norm": 0.7095150351524353, + "learning_rate": 3.3167600000000004e-05, + "loss": 1.8225425720214843, + "step": 252600 + }, + { + "epoch": 33.693333333333335, + "grad_norm": 0.69334477186203, + "learning_rate": 3.316093333333333e-05, + "loss": 1.8201156616210938, + "step": 252700 + }, + { + "epoch": 33.70666666666666, + "grad_norm": 0.6913406848907471, + "learning_rate": 3.315426666666667e-05, + "loss": 1.8216618347167968, + "step": 252800 + }, + { + "epoch": 33.72, + "grad_norm": 0.7094120979309082, + "learning_rate": 3.31476e-05, + "loss": 1.8205288696289061, + "step": 252900 + }, + { + "epoch": 33.733333333333334, + "grad_norm": 0.7051302790641785, + "learning_rate": 3.314093333333333e-05, + "loss": 1.8198191833496093, + "step": 253000 + }, + { + "epoch": 33.74666666666667, + "grad_norm": 0.7253535985946655, + "learning_rate": 3.313426666666667e-05, + "loss": 1.8211686706542969, + "step": 253100 + }, + { + "epoch": 33.76, + "grad_norm": 0.7110514044761658, + "learning_rate": 3.3127600000000004e-05, + "loss": 1.8267140197753906, + "step": 253200 + }, + { + "epoch": 33.77333333333333, + "grad_norm": 0.7230038046836853, + "learning_rate": 3.312093333333334e-05, + "loss": 1.8259141540527344, + "step": 253300 + }, + { + "epoch": 33.78666666666667, + "grad_norm": 0.6794722080230713, + "learning_rate": 3.311426666666667e-05, + "loss": 1.8242117309570312, + "step": 253400 + }, + { + "epoch": 33.8, + "grad_norm": 0.7026447653770447, + "learning_rate": 3.31076e-05, + "loss": 1.8272193908691405, + "step": 253500 + }, + { + "epoch": 33.81333333333333, + "grad_norm": 0.6905506253242493, + "learning_rate": 3.3100933333333334e-05, + "loss": 1.8256301879882812, + "step": 253600 + }, + { + "epoch": 33.82666666666667, + "grad_norm": 0.7163878679275513, + "learning_rate": 3.3094266666666666e-05, + "loss": 1.8273219299316406, + "step": 253700 + }, + { + "epoch": 33.84, + "grad_norm": 0.7006620764732361, + "learning_rate": 3.3087600000000005e-05, + "loss": 1.8279637145996093, + "step": 253800 + }, + { + "epoch": 33.85333333333333, + "grad_norm": 0.7368113994598389, + "learning_rate": 3.308093333333334e-05, + "loss": 1.8289633178710938, + "step": 253900 + }, + { + "epoch": 33.86666666666667, + "grad_norm": 0.7007164359092712, + "learning_rate": 3.307426666666667e-05, + "loss": 1.8291307067871094, + "step": 254000 + }, + { + "epoch": 33.88, + "grad_norm": 0.6749239563941956, + "learning_rate": 3.30676e-05, + "loss": 1.8294178771972656, + "step": 254100 + }, + { + "epoch": 33.89333333333333, + "grad_norm": 0.6939826011657715, + "learning_rate": 3.3061e-05, + "loss": 1.8320030212402343, + "step": 254200 + }, + { + "epoch": 33.906666666666666, + "grad_norm": 0.6852236390113831, + "learning_rate": 3.305433333333334e-05, + "loss": 1.8298947143554687, + "step": 254300 + }, + { + "epoch": 33.92, + "grad_norm": 0.6890901923179626, + "learning_rate": 3.3047666666666665e-05, + "loss": 1.8333465576171875, + "step": 254400 + }, + { + "epoch": 33.93333333333333, + "grad_norm": 0.6870790719985962, + "learning_rate": 3.3041e-05, + "loss": 1.8343376159667968, + "step": 254500 + }, + { + "epoch": 33.946666666666665, + "grad_norm": 0.6900056004524231, + "learning_rate": 3.3034333333333337e-05, + "loss": 1.8305508422851562, + "step": 254600 + }, + { + "epoch": 33.96, + "grad_norm": 0.725274920463562, + "learning_rate": 3.302766666666667e-05, + "loss": 1.8356878662109375, + "step": 254700 + }, + { + "epoch": 33.973333333333336, + "grad_norm": 0.7070014476776123, + "learning_rate": 3.3021e-05, + "loss": 1.8370289611816406, + "step": 254800 + }, + { + "epoch": 33.986666666666665, + "grad_norm": 0.671153724193573, + "learning_rate": 3.3014333333333333e-05, + "loss": 1.8323648071289063, + "step": 254900 + }, + { + "epoch": 34.0, + "grad_norm": 0.722389280796051, + "learning_rate": 3.300766666666667e-05, + "loss": 1.8307501220703124, + "step": 255000 + }, + { + "epoch": 34.013333333333335, + "grad_norm": 0.6944375038146973, + "learning_rate": 3.3001000000000005e-05, + "loss": 1.7463754272460938, + "step": 255100 + }, + { + "epoch": 34.026666666666664, + "grad_norm": 0.7085298895835876, + "learning_rate": 3.299433333333333e-05, + "loss": 1.7458438110351562, + "step": 255200 + }, + { + "epoch": 34.04, + "grad_norm": 0.7206888794898987, + "learning_rate": 3.298766666666667e-05, + "loss": 1.7499029541015625, + "step": 255300 + }, + { + "epoch": 34.053333333333335, + "grad_norm": 0.7031662464141846, + "learning_rate": 3.2981e-05, + "loss": 1.748662109375, + "step": 255400 + }, + { + "epoch": 34.06666666666667, + "grad_norm": 0.6964542269706726, + "learning_rate": 3.2974333333333334e-05, + "loss": 1.7524285888671876, + "step": 255500 + }, + { + "epoch": 34.08, + "grad_norm": 0.684666097164154, + "learning_rate": 3.2967666666666666e-05, + "loss": 1.7483273315429688, + "step": 255600 + }, + { + "epoch": 34.093333333333334, + "grad_norm": 0.7105111479759216, + "learning_rate": 3.2961000000000005e-05, + "loss": 1.7552597045898437, + "step": 255700 + }, + { + "epoch": 34.10666666666667, + "grad_norm": 0.7125686407089233, + "learning_rate": 3.295433333333334e-05, + "loss": 1.7612779235839844, + "step": 255800 + }, + { + "epoch": 34.12, + "grad_norm": 0.7236320972442627, + "learning_rate": 3.294766666666666e-05, + "loss": 1.7570318603515624, + "step": 255900 + }, + { + "epoch": 34.13333333333333, + "grad_norm": 0.7234290242195129, + "learning_rate": 3.2941e-05, + "loss": 1.7590721130371094, + "step": 256000 + }, + { + "epoch": 34.14666666666667, + "grad_norm": 0.709517776966095, + "learning_rate": 3.2934333333333334e-05, + "loss": 1.7588279724121094, + "step": 256100 + }, + { + "epoch": 34.16, + "grad_norm": 0.7075774669647217, + "learning_rate": 3.292773333333333e-05, + "loss": 1.7636314392089845, + "step": 256200 + }, + { + "epoch": 34.17333333333333, + "grad_norm": 0.685980498790741, + "learning_rate": 3.2921066666666666e-05, + "loss": 1.7642453002929688, + "step": 256300 + }, + { + "epoch": 34.18666666666667, + "grad_norm": 0.6789040565490723, + "learning_rate": 3.29144e-05, + "loss": 1.7647459411621094, + "step": 256400 + }, + { + "epoch": 34.2, + "grad_norm": 0.7118276357650757, + "learning_rate": 3.290773333333334e-05, + "loss": 1.7657359313964844, + "step": 256500 + }, + { + "epoch": 34.21333333333333, + "grad_norm": 0.7182782292366028, + "learning_rate": 3.290106666666667e-05, + "loss": 1.767525634765625, + "step": 256600 + }, + { + "epoch": 34.22666666666667, + "grad_norm": 0.6663193106651306, + "learning_rate": 3.28944e-05, + "loss": 1.7640966796875, + "step": 256700 + }, + { + "epoch": 34.24, + "grad_norm": 0.6728143692016602, + "learning_rate": 3.288773333333334e-05, + "loss": 1.7657148742675781, + "step": 256800 + }, + { + "epoch": 34.25333333333333, + "grad_norm": 0.7225044369697571, + "learning_rate": 3.2881066666666666e-05, + "loss": 1.771612091064453, + "step": 256900 + }, + { + "epoch": 34.266666666666666, + "grad_norm": 0.6851556897163391, + "learning_rate": 3.28744e-05, + "loss": 1.7695832824707032, + "step": 257000 + }, + { + "epoch": 34.28, + "grad_norm": 0.6964775323867798, + "learning_rate": 3.286773333333333e-05, + "loss": 1.7699888610839845, + "step": 257100 + }, + { + "epoch": 34.29333333333334, + "grad_norm": 0.708335280418396, + "learning_rate": 3.286106666666667e-05, + "loss": 1.769803009033203, + "step": 257200 + }, + { + "epoch": 34.306666666666665, + "grad_norm": 0.7314557433128357, + "learning_rate": 3.28544e-05, + "loss": 1.7759251403808594, + "step": 257300 + }, + { + "epoch": 34.32, + "grad_norm": 0.7204164862632751, + "learning_rate": 3.2847733333333334e-05, + "loss": 1.7730311584472656, + "step": 257400 + }, + { + "epoch": 34.333333333333336, + "grad_norm": 0.71314936876297, + "learning_rate": 3.284106666666667e-05, + "loss": 1.7768055725097656, + "step": 257500 + }, + { + "epoch": 34.346666666666664, + "grad_norm": 0.6884594559669495, + "learning_rate": 3.2834400000000005e-05, + "loss": 1.7790744018554687, + "step": 257600 + }, + { + "epoch": 34.36, + "grad_norm": 0.7092511653900146, + "learning_rate": 3.282773333333333e-05, + "loss": 1.7782786560058594, + "step": 257700 + }, + { + "epoch": 34.373333333333335, + "grad_norm": 0.758355438709259, + "learning_rate": 3.282106666666667e-05, + "loss": 1.7751937866210938, + "step": 257800 + }, + { + "epoch": 34.38666666666666, + "grad_norm": 0.7290791869163513, + "learning_rate": 3.28144e-05, + "loss": 1.7803231811523437, + "step": 257900 + }, + { + "epoch": 34.4, + "grad_norm": 0.7067010998725891, + "learning_rate": 3.2807733333333334e-05, + "loss": 1.7779922485351562, + "step": 258000 + }, + { + "epoch": 34.413333333333334, + "grad_norm": 0.7042437791824341, + "learning_rate": 3.280106666666667e-05, + "loss": 1.7828672790527345, + "step": 258100 + }, + { + "epoch": 34.42666666666667, + "grad_norm": 0.7334814667701721, + "learning_rate": 3.2794466666666666e-05, + "loss": 1.7837445068359374, + "step": 258200 + }, + { + "epoch": 34.44, + "grad_norm": 0.6984947919845581, + "learning_rate": 3.2787800000000005e-05, + "loss": 1.7827430725097657, + "step": 258300 + }, + { + "epoch": 34.45333333333333, + "grad_norm": 0.7189805507659912, + "learning_rate": 3.278113333333334e-05, + "loss": 1.7818618774414063, + "step": 258400 + }, + { + "epoch": 34.46666666666667, + "grad_norm": 0.7172175049781799, + "learning_rate": 3.277446666666667e-05, + "loss": 1.786385040283203, + "step": 258500 + }, + { + "epoch": 34.48, + "grad_norm": 0.6976024508476257, + "learning_rate": 3.27678e-05, + "loss": 1.7863441467285157, + "step": 258600 + }, + { + "epoch": 34.49333333333333, + "grad_norm": 0.7336111664772034, + "learning_rate": 3.2761133333333334e-05, + "loss": 1.7882395935058595, + "step": 258700 + }, + { + "epoch": 34.50666666666667, + "grad_norm": 0.7398297190666199, + "learning_rate": 3.2754466666666666e-05, + "loss": 1.7881121826171875, + "step": 258800 + }, + { + "epoch": 34.52, + "grad_norm": 0.7262130379676819, + "learning_rate": 3.27478e-05, + "loss": 1.7835282897949218, + "step": 258900 + }, + { + "epoch": 34.53333333333333, + "grad_norm": 0.7167975306510925, + "learning_rate": 3.274113333333334e-05, + "loss": 1.7948524475097656, + "step": 259000 + }, + { + "epoch": 34.54666666666667, + "grad_norm": 0.7211325764656067, + "learning_rate": 3.273446666666667e-05, + "loss": 1.7875064086914063, + "step": 259100 + }, + { + "epoch": 34.56, + "grad_norm": 0.7152880430221558, + "learning_rate": 3.27278e-05, + "loss": 1.7891029357910155, + "step": 259200 + }, + { + "epoch": 34.57333333333333, + "grad_norm": 0.6966748833656311, + "learning_rate": 3.2721133333333334e-05, + "loss": 1.792362823486328, + "step": 259300 + }, + { + "epoch": 34.586666666666666, + "grad_norm": 0.7045295238494873, + "learning_rate": 3.2714466666666667e-05, + "loss": 1.7886041259765626, + "step": 259400 + }, + { + "epoch": 34.6, + "grad_norm": 0.7518943548202515, + "learning_rate": 3.27078e-05, + "loss": 1.7914320373535155, + "step": 259500 + }, + { + "epoch": 34.61333333333333, + "grad_norm": 0.7086119651794434, + "learning_rate": 3.2701200000000005e-05, + "loss": 1.7893756103515626, + "step": 259600 + }, + { + "epoch": 34.626666666666665, + "grad_norm": 0.7113426923751831, + "learning_rate": 3.269453333333333e-05, + "loss": 1.7912899780273437, + "step": 259700 + }, + { + "epoch": 34.64, + "grad_norm": 0.7117241621017456, + "learning_rate": 3.268786666666667e-05, + "loss": 1.7933538818359376, + "step": 259800 + }, + { + "epoch": 34.653333333333336, + "grad_norm": 0.7044850587844849, + "learning_rate": 3.26812e-05, + "loss": 1.7952735900878907, + "step": 259900 + }, + { + "epoch": 34.666666666666664, + "grad_norm": 0.7023999691009521, + "learning_rate": 3.2674533333333334e-05, + "loss": 1.7962698364257812, + "step": 260000 + }, + { + "epoch": 34.68, + "grad_norm": 0.7212279438972473, + "learning_rate": 3.2667866666666666e-05, + "loss": 1.795453338623047, + "step": 260100 + }, + { + "epoch": 34.693333333333335, + "grad_norm": 0.7294625043869019, + "learning_rate": 3.2661200000000005e-05, + "loss": 1.8032328796386718, + "step": 260200 + }, + { + "epoch": 34.70666666666666, + "grad_norm": 0.7199930548667908, + "learning_rate": 3.265453333333334e-05, + "loss": 1.7969496154785156, + "step": 260300 + }, + { + "epoch": 34.72, + "grad_norm": 0.7424473166465759, + "learning_rate": 3.264786666666666e-05, + "loss": 1.8003564453125, + "step": 260400 + }, + { + "epoch": 34.733333333333334, + "grad_norm": 0.6995416283607483, + "learning_rate": 3.26412e-05, + "loss": 1.8012725830078125, + "step": 260500 + }, + { + "epoch": 34.74666666666667, + "grad_norm": 0.712614893913269, + "learning_rate": 3.2634533333333334e-05, + "loss": 1.79720458984375, + "step": 260600 + }, + { + "epoch": 34.76, + "grad_norm": 0.7090932130813599, + "learning_rate": 3.2627866666666666e-05, + "loss": 1.796382598876953, + "step": 260700 + }, + { + "epoch": 34.77333333333333, + "grad_norm": 0.715495765209198, + "learning_rate": 3.26212e-05, + "loss": 1.8014085388183594, + "step": 260800 + }, + { + "epoch": 34.78666666666667, + "grad_norm": 0.6967054009437561, + "learning_rate": 3.261453333333334e-05, + "loss": 1.8019192504882813, + "step": 260900 + }, + { + "epoch": 34.8, + "grad_norm": 0.7249776124954224, + "learning_rate": 3.260786666666667e-05, + "loss": 1.8009378051757812, + "step": 261000 + }, + { + "epoch": 34.81333333333333, + "grad_norm": 0.7215238213539124, + "learning_rate": 3.26012e-05, + "loss": 1.8022233581542968, + "step": 261100 + }, + { + "epoch": 34.82666666666667, + "grad_norm": 0.6885356903076172, + "learning_rate": 3.2594533333333334e-05, + "loss": 1.8026568603515625, + "step": 261200 + }, + { + "epoch": 34.84, + "grad_norm": 0.732446551322937, + "learning_rate": 3.258786666666667e-05, + "loss": 1.8067509460449218, + "step": 261300 + }, + { + "epoch": 34.85333333333333, + "grad_norm": 0.7237669229507446, + "learning_rate": 3.25812e-05, + "loss": 1.8049159240722656, + "step": 261400 + }, + { + "epoch": 34.86666666666667, + "grad_norm": 0.7220719456672668, + "learning_rate": 3.257453333333334e-05, + "loss": 1.8078208923339845, + "step": 261500 + }, + { + "epoch": 34.88, + "grad_norm": 0.7088682651519775, + "learning_rate": 3.256786666666667e-05, + "loss": 1.8080841064453126, + "step": 261600 + }, + { + "epoch": 34.89333333333333, + "grad_norm": 0.7922437787055969, + "learning_rate": 3.25612e-05, + "loss": 1.8082931518554688, + "step": 261700 + }, + { + "epoch": 34.906666666666666, + "grad_norm": 0.707200825214386, + "learning_rate": 3.25546e-05, + "loss": 1.8050637817382813, + "step": 261800 + }, + { + "epoch": 34.92, + "grad_norm": 0.7059547305107117, + "learning_rate": 3.2547933333333334e-05, + "loss": 1.8101914978027345, + "step": 261900 + }, + { + "epoch": 34.93333333333333, + "grad_norm": 0.7146642804145813, + "learning_rate": 3.254126666666667e-05, + "loss": 1.8113522338867187, + "step": 262000 + }, + { + "epoch": 34.946666666666665, + "grad_norm": 0.7141034603118896, + "learning_rate": 3.2534600000000005e-05, + "loss": 1.8065060424804686, + "step": 262100 + }, + { + "epoch": 34.96, + "grad_norm": 0.7005040645599365, + "learning_rate": 3.252793333333333e-05, + "loss": 1.8118878173828126, + "step": 262200 + }, + { + "epoch": 34.973333333333336, + "grad_norm": 0.6977455019950867, + "learning_rate": 3.252126666666667e-05, + "loss": 1.8072309875488282, + "step": 262300 + }, + { + "epoch": 34.986666666666665, + "grad_norm": 0.7083906531333923, + "learning_rate": 3.25146e-05, + "loss": 1.8132292175292968, + "step": 262400 + }, + { + "epoch": 35.0, + "grad_norm": 0.7053395509719849, + "learning_rate": 3.2507933333333334e-05, + "loss": 1.810267333984375, + "step": 262500 + }, + { + "epoch": 35.013333333333335, + "grad_norm": 0.7179415225982666, + "learning_rate": 3.2501266666666667e-05, + "loss": 1.720147705078125, + "step": 262600 + }, + { + "epoch": 35.026666666666664, + "grad_norm": 0.6983874440193176, + "learning_rate": 3.2494600000000006e-05, + "loss": 1.7274235534667968, + "step": 262700 + }, + { + "epoch": 35.04, + "grad_norm": 0.7099409699440002, + "learning_rate": 3.248793333333334e-05, + "loss": 1.7269102478027343, + "step": 262800 + }, + { + "epoch": 35.053333333333335, + "grad_norm": 0.7118650674819946, + "learning_rate": 3.248126666666667e-05, + "loss": 1.7248257446289061, + "step": 262900 + }, + { + "epoch": 35.06666666666667, + "grad_norm": 0.7239251136779785, + "learning_rate": 3.24746e-05, + "loss": 1.7289593505859375, + "step": 263000 + }, + { + "epoch": 35.08, + "grad_norm": 0.7100144624710083, + "learning_rate": 3.2467933333333335e-05, + "loss": 1.7312472534179688, + "step": 263100 + }, + { + "epoch": 35.093333333333334, + "grad_norm": 0.7234798669815063, + "learning_rate": 3.246126666666667e-05, + "loss": 1.73094970703125, + "step": 263200 + }, + { + "epoch": 35.10666666666667, + "grad_norm": 0.6909958124160767, + "learning_rate": 3.24546e-05, + "loss": 1.736466522216797, + "step": 263300 + }, + { + "epoch": 35.12, + "grad_norm": 0.7305464148521423, + "learning_rate": 3.244793333333334e-05, + "loss": 1.7368101501464843, + "step": 263400 + }, + { + "epoch": 35.13333333333333, + "grad_norm": 0.716325044631958, + "learning_rate": 3.244126666666667e-05, + "loss": 1.7344117736816407, + "step": 263500 + }, + { + "epoch": 35.14666666666667, + "grad_norm": 0.7322099208831787, + "learning_rate": 3.24346e-05, + "loss": 1.7373164367675782, + "step": 263600 + }, + { + "epoch": 35.16, + "grad_norm": 0.7618185877799988, + "learning_rate": 3.2427933333333335e-05, + "loss": 1.7396737670898437, + "step": 263700 + }, + { + "epoch": 35.17333333333333, + "grad_norm": 0.7051612138748169, + "learning_rate": 3.242126666666667e-05, + "loss": 1.7394839477539064, + "step": 263800 + }, + { + "epoch": 35.18666666666667, + "grad_norm": 0.6973703503608704, + "learning_rate": 3.24146e-05, + "loss": 1.7405155944824218, + "step": 263900 + }, + { + "epoch": 35.2, + "grad_norm": 0.7270771265029907, + "learning_rate": 3.240793333333333e-05, + "loss": 1.742344970703125, + "step": 264000 + }, + { + "epoch": 35.21333333333333, + "grad_norm": 0.7269550561904907, + "learning_rate": 3.240126666666667e-05, + "loss": 1.7401051330566406, + "step": 264100 + }, + { + "epoch": 35.22666666666667, + "grad_norm": 0.7064307928085327, + "learning_rate": 3.23946e-05, + "loss": 1.742832489013672, + "step": 264200 + }, + { + "epoch": 35.24, + "grad_norm": 0.6901838779449463, + "learning_rate": 3.2387933333333335e-05, + "loss": 1.7487083435058595, + "step": 264300 + }, + { + "epoch": 35.25333333333333, + "grad_norm": 0.7132669687271118, + "learning_rate": 3.238126666666667e-05, + "loss": 1.7473236083984376, + "step": 264400 + }, + { + "epoch": 35.266666666666666, + "grad_norm": 0.7222061157226562, + "learning_rate": 3.23746e-05, + "loss": 1.7487094116210937, + "step": 264500 + }, + { + "epoch": 35.28, + "grad_norm": 0.7056880593299866, + "learning_rate": 3.236793333333333e-05, + "loss": 1.7457852172851562, + "step": 264600 + }, + { + "epoch": 35.29333333333334, + "grad_norm": 0.7410815954208374, + "learning_rate": 3.2361266666666665e-05, + "loss": 1.7503875732421874, + "step": 264700 + }, + { + "epoch": 35.306666666666665, + "grad_norm": 0.7270119786262512, + "learning_rate": 3.2354600000000004e-05, + "loss": 1.7513735961914063, + "step": 264800 + }, + { + "epoch": 35.32, + "grad_norm": 0.7054768204689026, + "learning_rate": 3.2347933333333336e-05, + "loss": 1.7556321716308594, + "step": 264900 + }, + { + "epoch": 35.333333333333336, + "grad_norm": 0.7149020433425903, + "learning_rate": 3.234126666666667e-05, + "loss": 1.7507872009277343, + "step": 265000 + }, + { + "epoch": 35.346666666666664, + "grad_norm": 0.7018755674362183, + "learning_rate": 3.23346e-05, + "loss": 1.7512226867675782, + "step": 265100 + }, + { + "epoch": 35.36, + "grad_norm": 0.7539740204811096, + "learning_rate": 3.232793333333333e-05, + "loss": 1.751693115234375, + "step": 265200 + }, + { + "epoch": 35.373333333333335, + "grad_norm": 0.7125043869018555, + "learning_rate": 3.2321266666666665e-05, + "loss": 1.751684112548828, + "step": 265300 + }, + { + "epoch": 35.38666666666666, + "grad_norm": 0.7284225821495056, + "learning_rate": 3.23146e-05, + "loss": 1.7530982971191407, + "step": 265400 + }, + { + "epoch": 35.4, + "grad_norm": 0.7372731566429138, + "learning_rate": 3.2307933333333336e-05, + "loss": 1.7575666809082031, + "step": 265500 + }, + { + "epoch": 35.413333333333334, + "grad_norm": 0.7320109009742737, + "learning_rate": 3.230126666666667e-05, + "loss": 1.7619415283203126, + "step": 265600 + }, + { + "epoch": 35.42666666666667, + "grad_norm": 0.715881884098053, + "learning_rate": 3.22946e-05, + "loss": 1.75659912109375, + "step": 265700 + }, + { + "epoch": 35.44, + "grad_norm": 0.7461238503456116, + "learning_rate": 3.2288e-05, + "loss": 1.7591160583496093, + "step": 265800 + }, + { + "epoch": 35.45333333333333, + "grad_norm": 0.751312255859375, + "learning_rate": 3.228133333333334e-05, + "loss": 1.761936492919922, + "step": 265900 + }, + { + "epoch": 35.46666666666667, + "grad_norm": 0.7453945279121399, + "learning_rate": 3.227466666666667e-05, + "loss": 1.7588221740722656, + "step": 266000 + }, + { + "epoch": 35.48, + "grad_norm": 0.7304133176803589, + "learning_rate": 3.2268000000000003e-05, + "loss": 1.7641864013671875, + "step": 266100 + }, + { + "epoch": 35.49333333333333, + "grad_norm": 0.7159408926963806, + "learning_rate": 3.226133333333333e-05, + "loss": 1.763712158203125, + "step": 266200 + }, + { + "epoch": 35.50666666666667, + "grad_norm": 0.7238728404045105, + "learning_rate": 3.225466666666667e-05, + "loss": 1.766953582763672, + "step": 266300 + }, + { + "epoch": 35.52, + "grad_norm": 0.7204245924949646, + "learning_rate": 3.2248e-05, + "loss": 1.7641201782226563, + "step": 266400 + }, + { + "epoch": 35.53333333333333, + "grad_norm": 0.7490574717521667, + "learning_rate": 3.224133333333333e-05, + "loss": 1.7628182983398437, + "step": 266500 + }, + { + "epoch": 35.54666666666667, + "grad_norm": 0.7318447232246399, + "learning_rate": 3.223466666666667e-05, + "loss": 1.768040008544922, + "step": 266600 + }, + { + "epoch": 35.56, + "grad_norm": 0.7002058625221252, + "learning_rate": 3.2228000000000004e-05, + "loss": 1.7642034912109374, + "step": 266700 + }, + { + "epoch": 35.57333333333333, + "grad_norm": 0.7356955409049988, + "learning_rate": 3.2221333333333336e-05, + "loss": 1.765457000732422, + "step": 266800 + }, + { + "epoch": 35.586666666666666, + "grad_norm": 0.7351566553115845, + "learning_rate": 3.2214733333333335e-05, + "loss": 1.7657107543945312, + "step": 266900 + }, + { + "epoch": 35.6, + "grad_norm": 0.7202064394950867, + "learning_rate": 3.220806666666667e-05, + "loss": 1.7705520629882812, + "step": 267000 + }, + { + "epoch": 35.61333333333333, + "grad_norm": 0.7428541779518127, + "learning_rate": 3.2201400000000006e-05, + "loss": 1.769801483154297, + "step": 267100 + }, + { + "epoch": 35.626666666666665, + "grad_norm": 0.7157596349716187, + "learning_rate": 3.219473333333333e-05, + "loss": 1.769151153564453, + "step": 267200 + }, + { + "epoch": 35.64, + "grad_norm": 0.7332503199577332, + "learning_rate": 3.2188066666666664e-05, + "loss": 1.7689814758300781, + "step": 267300 + }, + { + "epoch": 35.653333333333336, + "grad_norm": 0.7052285075187683, + "learning_rate": 3.21814e-05, + "loss": 1.7711866760253907, + "step": 267400 + }, + { + "epoch": 35.666666666666664, + "grad_norm": 0.7430896162986755, + "learning_rate": 3.2174733333333336e-05, + "loss": 1.7715708923339843, + "step": 267500 + }, + { + "epoch": 35.68, + "grad_norm": 0.7421042323112488, + "learning_rate": 3.216806666666667e-05, + "loss": 1.7714950561523437, + "step": 267600 + }, + { + "epoch": 35.693333333333335, + "grad_norm": 0.7241594791412354, + "learning_rate": 3.21614e-05, + "loss": 1.7752314758300782, + "step": 267700 + }, + { + "epoch": 35.70666666666666, + "grad_norm": 0.6929828524589539, + "learning_rate": 3.215473333333334e-05, + "loss": 1.778212127685547, + "step": 267800 + }, + { + "epoch": 35.72, + "grad_norm": 0.7369002103805542, + "learning_rate": 3.214806666666667e-05, + "loss": 1.774071502685547, + "step": 267900 + }, + { + "epoch": 35.733333333333334, + "grad_norm": 0.7390934824943542, + "learning_rate": 3.21414e-05, + "loss": 1.7779090881347657, + "step": 268000 + }, + { + "epoch": 35.74666666666667, + "grad_norm": 0.7036294341087341, + "learning_rate": 3.2134733333333336e-05, + "loss": 1.77925537109375, + "step": 268100 + }, + { + "epoch": 35.76, + "grad_norm": 0.713968813419342, + "learning_rate": 3.212806666666667e-05, + "loss": 1.780936279296875, + "step": 268200 + }, + { + "epoch": 35.77333333333333, + "grad_norm": 0.7476961612701416, + "learning_rate": 3.21214e-05, + "loss": 1.7815696716308593, + "step": 268300 + }, + { + "epoch": 35.78666666666667, + "grad_norm": 0.7531934380531311, + "learning_rate": 3.211473333333333e-05, + "loss": 1.778701171875, + "step": 268400 + }, + { + "epoch": 35.8, + "grad_norm": 0.7263785600662231, + "learning_rate": 3.210806666666667e-05, + "loss": 1.7831895446777344, + "step": 268500 + }, + { + "epoch": 35.81333333333333, + "grad_norm": 0.7144677042961121, + "learning_rate": 3.2101400000000004e-05, + "loss": 1.7823295593261719, + "step": 268600 + }, + { + "epoch": 35.82666666666667, + "grad_norm": 0.7361660003662109, + "learning_rate": 3.209473333333333e-05, + "loss": 1.7813780212402344, + "step": 268700 + }, + { + "epoch": 35.84, + "grad_norm": 0.7294068932533264, + "learning_rate": 3.208806666666667e-05, + "loss": 1.776859588623047, + "step": 268800 + }, + { + "epoch": 35.85333333333333, + "grad_norm": 0.7189229726791382, + "learning_rate": 3.20814e-05, + "loss": 1.7815873718261719, + "step": 268900 + }, + { + "epoch": 35.86666666666667, + "grad_norm": 0.7154908180236816, + "learning_rate": 3.207473333333333e-05, + "loss": 1.7768629455566407, + "step": 269000 + }, + { + "epoch": 35.88, + "grad_norm": 0.7369889616966248, + "learning_rate": 3.2068066666666665e-05, + "loss": 1.7820993041992188, + "step": 269100 + }, + { + "epoch": 35.89333333333333, + "grad_norm": 0.7437416911125183, + "learning_rate": 3.2061400000000004e-05, + "loss": 1.7829997253417968, + "step": 269200 + }, + { + "epoch": 35.906666666666666, + "grad_norm": 0.6980392336845398, + "learning_rate": 3.2054800000000004e-05, + "loss": 1.788327178955078, + "step": 269300 + }, + { + "epoch": 35.92, + "grad_norm": 0.7489062547683716, + "learning_rate": 3.2048133333333336e-05, + "loss": 1.784275360107422, + "step": 269400 + }, + { + "epoch": 35.93333333333333, + "grad_norm": 0.7697765827178955, + "learning_rate": 3.204146666666667e-05, + "loss": 1.7840049743652344, + "step": 269500 + }, + { + "epoch": 35.946666666666665, + "grad_norm": 0.7413792014122009, + "learning_rate": 3.20348e-05, + "loss": 1.7808065795898438, + "step": 269600 + }, + { + "epoch": 35.96, + "grad_norm": 0.7363737225532532, + "learning_rate": 3.202813333333333e-05, + "loss": 1.7876707458496093, + "step": 269700 + }, + { + "epoch": 35.973333333333336, + "grad_norm": 0.7427986860275269, + "learning_rate": 3.2021466666666665e-05, + "loss": 1.786104736328125, + "step": 269800 + }, + { + "epoch": 35.986666666666665, + "grad_norm": 0.7256585359573364, + "learning_rate": 3.20148e-05, + "loss": 1.7870755004882812, + "step": 269900 + }, + { + "epoch": 36.0, + "grad_norm": 0.7233152389526367, + "learning_rate": 3.2008133333333336e-05, + "loss": 1.78588623046875, + "step": 270000 + }, + { + "epoch": 36.013333333333335, + "grad_norm": 0.711797833442688, + "learning_rate": 3.200146666666667e-05, + "loss": 1.7004847717285156, + "step": 270100 + }, + { + "epoch": 36.026666666666664, + "grad_norm": 0.7260730862617493, + "learning_rate": 3.19948e-05, + "loss": 1.701490478515625, + "step": 270200 + }, + { + "epoch": 36.04, + "grad_norm": 0.7351646423339844, + "learning_rate": 3.198813333333334e-05, + "loss": 1.70460205078125, + "step": 270300 + }, + { + "epoch": 36.053333333333335, + "grad_norm": 0.7190471291542053, + "learning_rate": 3.198146666666667e-05, + "loss": 1.6980458068847657, + "step": 270400 + }, + { + "epoch": 36.06666666666667, + "grad_norm": 0.7336345911026001, + "learning_rate": 3.19748e-05, + "loss": 1.707018585205078, + "step": 270500 + }, + { + "epoch": 36.08, + "grad_norm": 0.7053529024124146, + "learning_rate": 3.1968133333333337e-05, + "loss": 1.7060832214355468, + "step": 270600 + }, + { + "epoch": 36.093333333333334, + "grad_norm": 0.723622739315033, + "learning_rate": 3.196146666666667e-05, + "loss": 1.7135696411132812, + "step": 270700 + }, + { + "epoch": 36.10666666666667, + "grad_norm": 0.6846678853034973, + "learning_rate": 3.19548e-05, + "loss": 1.7092733764648438, + "step": 270800 + }, + { + "epoch": 36.12, + "grad_norm": 0.7483423352241516, + "learning_rate": 3.194813333333333e-05, + "loss": 1.7153257751464843, + "step": 270900 + }, + { + "epoch": 36.13333333333333, + "grad_norm": 0.7453268766403198, + "learning_rate": 3.194146666666667e-05, + "loss": 1.7127186584472656, + "step": 271000 + }, + { + "epoch": 36.14666666666667, + "grad_norm": 0.7087700963020325, + "learning_rate": 3.1934800000000005e-05, + "loss": 1.7130256652832032, + "step": 271100 + }, + { + "epoch": 36.16, + "grad_norm": 0.7314236164093018, + "learning_rate": 3.192813333333333e-05, + "loss": 1.7165345764160156, + "step": 271200 + }, + { + "epoch": 36.17333333333333, + "grad_norm": 0.7344350218772888, + "learning_rate": 3.192146666666667e-05, + "loss": 1.7190016174316407, + "step": 271300 + }, + { + "epoch": 36.18666666666667, + "grad_norm": 0.7444190979003906, + "learning_rate": 3.19148e-05, + "loss": 1.7203594970703124, + "step": 271400 + }, + { + "epoch": 36.2, + "grad_norm": 0.7286201119422913, + "learning_rate": 3.1908133333333334e-05, + "loss": 1.7190869140625, + "step": 271500 + }, + { + "epoch": 36.21333333333333, + "grad_norm": 0.7416961789131165, + "learning_rate": 3.1901466666666666e-05, + "loss": 1.7250083923339843, + "step": 271600 + }, + { + "epoch": 36.22666666666667, + "grad_norm": 0.7191265225410461, + "learning_rate": 3.1894800000000005e-05, + "loss": 1.7248774719238282, + "step": 271700 + }, + { + "epoch": 36.24, + "grad_norm": 0.7464678287506104, + "learning_rate": 3.188813333333334e-05, + "loss": 1.7244654846191407, + "step": 271800 + }, + { + "epoch": 36.25333333333333, + "grad_norm": 0.741040050983429, + "learning_rate": 3.188146666666667e-05, + "loss": 1.7217869567871094, + "step": 271900 + }, + { + "epoch": 36.266666666666666, + "grad_norm": 0.7492501735687256, + "learning_rate": 3.18748e-05, + "loss": 1.7232154846191405, + "step": 272000 + }, + { + "epoch": 36.28, + "grad_norm": 0.7506824135780334, + "learning_rate": 3.1868133333333334e-05, + "loss": 1.72467529296875, + "step": 272100 + }, + { + "epoch": 36.29333333333334, + "grad_norm": 0.7682024836540222, + "learning_rate": 3.1861466666666666e-05, + "loss": 1.7257017517089843, + "step": 272200 + }, + { + "epoch": 36.306666666666665, + "grad_norm": 0.7348060011863708, + "learning_rate": 3.18548e-05, + "loss": 1.7308767700195313, + "step": 272300 + }, + { + "epoch": 36.32, + "grad_norm": 0.7420241236686707, + "learning_rate": 3.184813333333334e-05, + "loss": 1.7316539001464843, + "step": 272400 + }, + { + "epoch": 36.333333333333336, + "grad_norm": 0.7520580291748047, + "learning_rate": 3.184146666666667e-05, + "loss": 1.7281611633300782, + "step": 272500 + }, + { + "epoch": 36.346666666666664, + "grad_norm": 0.7573596835136414, + "learning_rate": 3.18348e-05, + "loss": 1.731063995361328, + "step": 272600 + }, + { + "epoch": 36.36, + "grad_norm": 0.725255012512207, + "learning_rate": 3.1828133333333335e-05, + "loss": 1.7307705688476562, + "step": 272700 + }, + { + "epoch": 36.373333333333335, + "grad_norm": 0.7543401122093201, + "learning_rate": 3.182146666666667e-05, + "loss": 1.7375082397460937, + "step": 272800 + }, + { + "epoch": 36.38666666666666, + "grad_norm": 0.7458380460739136, + "learning_rate": 3.18148e-05, + "loss": 1.7346005249023437, + "step": 272900 + }, + { + "epoch": 36.4, + "grad_norm": 0.7144700884819031, + "learning_rate": 3.18082e-05, + "loss": 1.7303981018066406, + "step": 273000 + }, + { + "epoch": 36.413333333333334, + "grad_norm": 0.7560714483261108, + "learning_rate": 3.180153333333333e-05, + "loss": 1.7310597229003906, + "step": 273100 + }, + { + "epoch": 36.42666666666667, + "grad_norm": 0.7326061129570007, + "learning_rate": 3.179486666666667e-05, + "loss": 1.7362249755859376, + "step": 273200 + }, + { + "epoch": 36.44, + "grad_norm": 0.7293363809585571, + "learning_rate": 3.17882e-05, + "loss": 1.7362820434570312, + "step": 273300 + }, + { + "epoch": 36.45333333333333, + "grad_norm": 0.7394217252731323, + "learning_rate": 3.1781533333333334e-05, + "loss": 1.7399252319335938, + "step": 273400 + }, + { + "epoch": 36.46666666666667, + "grad_norm": 0.742487907409668, + "learning_rate": 3.1774866666666666e-05, + "loss": 1.7383834838867187, + "step": 273500 + }, + { + "epoch": 36.48, + "grad_norm": 0.7589447498321533, + "learning_rate": 3.1768200000000005e-05, + "loss": 1.7370097351074218, + "step": 273600 + }, + { + "epoch": 36.49333333333333, + "grad_norm": 0.7348843812942505, + "learning_rate": 3.176153333333334e-05, + "loss": 1.7422178649902345, + "step": 273700 + }, + { + "epoch": 36.50666666666667, + "grad_norm": 0.7847718000411987, + "learning_rate": 3.175486666666666e-05, + "loss": 1.736515350341797, + "step": 273800 + }, + { + "epoch": 36.52, + "grad_norm": 0.7392397522926331, + "learning_rate": 3.17482e-05, + "loss": 1.7417140197753906, + "step": 273900 + }, + { + "epoch": 36.53333333333333, + "grad_norm": 0.6962413787841797, + "learning_rate": 3.1741533333333334e-05, + "loss": 1.741837921142578, + "step": 274000 + }, + { + "epoch": 36.54666666666667, + "grad_norm": 0.7503619194030762, + "learning_rate": 3.173486666666667e-05, + "loss": 1.741531982421875, + "step": 274100 + }, + { + "epoch": 36.56, + "grad_norm": 0.7087076902389526, + "learning_rate": 3.1728200000000006e-05, + "loss": 1.7447845458984375, + "step": 274200 + }, + { + "epoch": 36.57333333333333, + "grad_norm": 0.7223750352859497, + "learning_rate": 3.172153333333334e-05, + "loss": 1.7459292602539063, + "step": 274300 + }, + { + "epoch": 36.586666666666666, + "grad_norm": 0.7215844392776489, + "learning_rate": 3.171486666666667e-05, + "loss": 1.7434147644042968, + "step": 274400 + }, + { + "epoch": 36.6, + "grad_norm": 0.7404847145080566, + "learning_rate": 3.1708199999999996e-05, + "loss": 1.749951171875, + "step": 274500 + }, + { + "epoch": 36.61333333333333, + "grad_norm": 0.7521648406982422, + "learning_rate": 3.1701533333333335e-05, + "loss": 1.7496371459960938, + "step": 274600 + }, + { + "epoch": 36.626666666666665, + "grad_norm": 0.7401891946792603, + "learning_rate": 3.169486666666667e-05, + "loss": 1.7497813415527343, + "step": 274700 + }, + { + "epoch": 36.64, + "grad_norm": 0.7280316948890686, + "learning_rate": 3.16882e-05, + "loss": 1.7507594299316407, + "step": 274800 + }, + { + "epoch": 36.653333333333336, + "grad_norm": 0.7239392995834351, + "learning_rate": 3.168153333333334e-05, + "loss": 1.7507579040527343, + "step": 274900 + }, + { + "epoch": 36.666666666666664, + "grad_norm": 0.7553678750991821, + "learning_rate": 3.167486666666667e-05, + "loss": 1.751461181640625, + "step": 275000 + }, + { + "epoch": 36.68, + "grad_norm": 0.7435064911842346, + "learning_rate": 3.16682e-05, + "loss": 1.7519636535644532, + "step": 275100 + }, + { + "epoch": 36.693333333333335, + "grad_norm": 0.7470516562461853, + "learning_rate": 3.1661533333333335e-05, + "loss": 1.7504707336425782, + "step": 275200 + }, + { + "epoch": 36.70666666666666, + "grad_norm": 0.74057537317276, + "learning_rate": 3.165486666666667e-05, + "loss": 1.7527505493164062, + "step": 275300 + }, + { + "epoch": 36.72, + "grad_norm": 0.7247684597969055, + "learning_rate": 3.16482e-05, + "loss": 1.7530410766601563, + "step": 275400 + }, + { + "epoch": 36.733333333333334, + "grad_norm": 0.7498241662979126, + "learning_rate": 3.16416e-05, + "loss": 1.7541891479492187, + "step": 275500 + }, + { + "epoch": 36.74666666666667, + "grad_norm": 0.7495251297950745, + "learning_rate": 3.163493333333333e-05, + "loss": 1.7568766784667968, + "step": 275600 + }, + { + "epoch": 36.76, + "grad_norm": 0.7617773413658142, + "learning_rate": 3.162826666666667e-05, + "loss": 1.7529084777832031, + "step": 275700 + }, + { + "epoch": 36.77333333333333, + "grad_norm": 0.7428836226463318, + "learning_rate": 3.16216e-05, + "loss": 1.7551524353027343, + "step": 275800 + }, + { + "epoch": 36.78666666666667, + "grad_norm": 0.7389662265777588, + "learning_rate": 3.1614933333333335e-05, + "loss": 1.7577822875976563, + "step": 275900 + }, + { + "epoch": 36.8, + "grad_norm": 0.743245542049408, + "learning_rate": 3.160826666666667e-05, + "loss": 1.75811279296875, + "step": 276000 + }, + { + "epoch": 36.81333333333333, + "grad_norm": 0.7568553686141968, + "learning_rate": 3.1601600000000006e-05, + "loss": 1.7519479370117188, + "step": 276100 + }, + { + "epoch": 36.82666666666667, + "grad_norm": 0.7454259991645813, + "learning_rate": 3.159493333333334e-05, + "loss": 1.7604170227050782, + "step": 276200 + }, + { + "epoch": 36.84, + "grad_norm": 0.7492554187774658, + "learning_rate": 3.1588266666666664e-05, + "loss": 1.7641816711425782, + "step": 276300 + }, + { + "epoch": 36.85333333333333, + "grad_norm": 0.7113311290740967, + "learning_rate": 3.15816e-05, + "loss": 1.7588400268554687, + "step": 276400 + }, + { + "epoch": 36.86666666666667, + "grad_norm": 0.764880359172821, + "learning_rate": 3.1574933333333335e-05, + "loss": 1.7627790832519532, + "step": 276500 + }, + { + "epoch": 36.88, + "grad_norm": 0.7248684167861938, + "learning_rate": 3.156826666666667e-05, + "loss": 1.7612380981445312, + "step": 276600 + }, + { + "epoch": 36.89333333333333, + "grad_norm": 0.7168259024620056, + "learning_rate": 3.15616e-05, + "loss": 1.7612693786621094, + "step": 276700 + }, + { + "epoch": 36.906666666666666, + "grad_norm": 0.7467043995857239, + "learning_rate": 3.155493333333334e-05, + "loss": 1.7591070556640624, + "step": 276800 + }, + { + "epoch": 36.92, + "grad_norm": 0.7475593686103821, + "learning_rate": 3.154826666666667e-05, + "loss": 1.7618537902832032, + "step": 276900 + }, + { + "epoch": 36.93333333333333, + "grad_norm": 0.7402468323707581, + "learning_rate": 3.1541599999999996e-05, + "loss": 1.7640028381347657, + "step": 277000 + }, + { + "epoch": 36.946666666666665, + "grad_norm": 0.7494368553161621, + "learning_rate": 3.1534933333333335e-05, + "loss": 1.7653765869140625, + "step": 277100 + }, + { + "epoch": 36.96, + "grad_norm": 0.7230552434921265, + "learning_rate": 3.152826666666667e-05, + "loss": 1.7666098022460937, + "step": 277200 + }, + { + "epoch": 36.973333333333336, + "grad_norm": 0.7665003538131714, + "learning_rate": 3.15216e-05, + "loss": 1.765568084716797, + "step": 277300 + }, + { + "epoch": 36.986666666666665, + "grad_norm": 0.7451346516609192, + "learning_rate": 3.151493333333333e-05, + "loss": 1.7677928161621095, + "step": 277400 + }, + { + "epoch": 37.0, + "grad_norm": 0.76631760597229, + "learning_rate": 3.150833333333333e-05, + "loss": 1.7689274597167968, + "step": 277500 + }, + { + "epoch": 37.013333333333335, + "grad_norm": 0.7045518755912781, + "learning_rate": 3.150166666666667e-05, + "loss": 1.6803143310546875, + "step": 277600 + }, + { + "epoch": 37.026666666666664, + "grad_norm": 0.7285835146903992, + "learning_rate": 3.1495e-05, + "loss": 1.6813021850585939, + "step": 277700 + }, + { + "epoch": 37.04, + "grad_norm": 0.7426738739013672, + "learning_rate": 3.1488333333333335e-05, + "loss": 1.681758270263672, + "step": 277800 + }, + { + "epoch": 37.053333333333335, + "grad_norm": 0.7622446417808533, + "learning_rate": 3.148166666666667e-05, + "loss": 1.6819073486328124, + "step": 277900 + }, + { + "epoch": 37.06666666666667, + "grad_norm": 0.7410486340522766, + "learning_rate": 3.1475e-05, + "loss": 1.6838929748535156, + "step": 278000 + }, + { + "epoch": 37.08, + "grad_norm": 0.7304770946502686, + "learning_rate": 3.146833333333333e-05, + "loss": 1.6852511596679687, + "step": 278100 + }, + { + "epoch": 37.093333333333334, + "grad_norm": 0.7022737264633179, + "learning_rate": 3.1461666666666664e-05, + "loss": 1.6852027893066406, + "step": 278200 + }, + { + "epoch": 37.10666666666667, + "grad_norm": 0.7408353686332703, + "learning_rate": 3.1455e-05, + "loss": 1.688455810546875, + "step": 278300 + }, + { + "epoch": 37.12, + "grad_norm": 0.7150797843933105, + "learning_rate": 3.1448333333333335e-05, + "loss": 1.6884025573730468, + "step": 278400 + }, + { + "epoch": 37.13333333333333, + "grad_norm": 0.7726892828941345, + "learning_rate": 3.144166666666667e-05, + "loss": 1.6898381042480468, + "step": 278500 + }, + { + "epoch": 37.14666666666667, + "grad_norm": 0.7211053371429443, + "learning_rate": 3.1435000000000007e-05, + "loss": 1.6924490356445312, + "step": 278600 + }, + { + "epoch": 37.16, + "grad_norm": 0.7419326305389404, + "learning_rate": 3.142833333333334e-05, + "loss": 1.689315643310547, + "step": 278700 + }, + { + "epoch": 37.17333333333333, + "grad_norm": 0.7313926219940186, + "learning_rate": 3.1421666666666664e-05, + "loss": 1.6908987426757813, + "step": 278800 + }, + { + "epoch": 37.18666666666667, + "grad_norm": 0.7286278605461121, + "learning_rate": 3.1415e-05, + "loss": 1.6980317687988282, + "step": 278900 + }, + { + "epoch": 37.2, + "grad_norm": 0.7605856657028198, + "learning_rate": 3.1408333333333336e-05, + "loss": 1.696996307373047, + "step": 279000 + }, + { + "epoch": 37.21333333333333, + "grad_norm": 0.7458546757698059, + "learning_rate": 3.140166666666667e-05, + "loss": 1.6983421325683594, + "step": 279100 + }, + { + "epoch": 37.22666666666667, + "grad_norm": 0.7429274916648865, + "learning_rate": 3.1395e-05, + "loss": 1.7024613952636718, + "step": 279200 + }, + { + "epoch": 37.24, + "grad_norm": 0.7884694337844849, + "learning_rate": 3.138833333333334e-05, + "loss": 1.7007711791992188, + "step": 279300 + }, + { + "epoch": 37.25333333333333, + "grad_norm": 0.7464330792427063, + "learning_rate": 3.138166666666667e-05, + "loss": 1.7008659362792968, + "step": 279400 + }, + { + "epoch": 37.266666666666666, + "grad_norm": 0.728084921836853, + "learning_rate": 3.1375e-05, + "loss": 1.7043988037109374, + "step": 279500 + }, + { + "epoch": 37.28, + "grad_norm": 0.7497456669807434, + "learning_rate": 3.13684e-05, + "loss": 1.7014207458496093, + "step": 279600 + }, + { + "epoch": 37.29333333333334, + "grad_norm": 0.7020012140274048, + "learning_rate": 3.1361733333333335e-05, + "loss": 1.7052900695800781, + "step": 279700 + }, + { + "epoch": 37.306666666666665, + "grad_norm": 0.739156186580658, + "learning_rate": 3.135506666666667e-05, + "loss": 1.703553466796875, + "step": 279800 + }, + { + "epoch": 37.32, + "grad_norm": 0.7595281600952148, + "learning_rate": 3.13484e-05, + "loss": 1.7069859313964844, + "step": 279900 + }, + { + "epoch": 37.333333333333336, + "grad_norm": 0.75346440076828, + "learning_rate": 3.134173333333333e-05, + "loss": 1.7072439575195313, + "step": 280000 + }, + { + "epoch": 37.346666666666664, + "grad_norm": 0.7546751499176025, + "learning_rate": 3.133506666666667e-05, + "loss": 1.7088861083984375, + "step": 280100 + }, + { + "epoch": 37.36, + "grad_norm": 0.7886497974395752, + "learning_rate": 3.13284e-05, + "loss": 1.7056680297851563, + "step": 280200 + }, + { + "epoch": 37.373333333333335, + "grad_norm": 0.743929922580719, + "learning_rate": 3.1321733333333335e-05, + "loss": 1.7099371337890625, + "step": 280300 + }, + { + "epoch": 37.38666666666666, + "grad_norm": 0.7662741541862488, + "learning_rate": 3.131506666666667e-05, + "loss": 1.7150563049316405, + "step": 280400 + }, + { + "epoch": 37.4, + "grad_norm": 0.72809898853302, + "learning_rate": 3.13084e-05, + "loss": 1.7117857360839843, + "step": 280500 + }, + { + "epoch": 37.413333333333334, + "grad_norm": 0.7383192181587219, + "learning_rate": 3.130173333333333e-05, + "loss": 1.7104786682128905, + "step": 280600 + }, + { + "epoch": 37.42666666666667, + "grad_norm": 0.755443274974823, + "learning_rate": 3.1295066666666664e-05, + "loss": 1.7123095703125, + "step": 280700 + }, + { + "epoch": 37.44, + "grad_norm": 0.7860985994338989, + "learning_rate": 3.1288400000000004e-05, + "loss": 1.7170570373535157, + "step": 280800 + }, + { + "epoch": 37.45333333333333, + "grad_norm": 0.7551179528236389, + "learning_rate": 3.1281733333333336e-05, + "loss": 1.716322021484375, + "step": 280900 + }, + { + "epoch": 37.46666666666667, + "grad_norm": 0.7542992830276489, + "learning_rate": 3.127506666666667e-05, + "loss": 1.714727783203125, + "step": 281000 + }, + { + "epoch": 37.48, + "grad_norm": 0.7533883452415466, + "learning_rate": 3.12684e-05, + "loss": 1.720811309814453, + "step": 281100 + }, + { + "epoch": 37.49333333333333, + "grad_norm": 0.7798376083374023, + "learning_rate": 3.126173333333334e-05, + "loss": 1.7136112976074218, + "step": 281200 + }, + { + "epoch": 37.50666666666667, + "grad_norm": 0.7293563485145569, + "learning_rate": 3.1255066666666665e-05, + "loss": 1.7199661254882812, + "step": 281300 + }, + { + "epoch": 37.52, + "grad_norm": 0.7498854994773865, + "learning_rate": 3.12484e-05, + "loss": 1.7169015502929688, + "step": 281400 + }, + { + "epoch": 37.53333333333333, + "grad_norm": 0.7195653915405273, + "learning_rate": 3.1241733333333336e-05, + "loss": 1.7198953247070312, + "step": 281500 + }, + { + "epoch": 37.54666666666667, + "grad_norm": 0.7342607378959656, + "learning_rate": 3.123506666666667e-05, + "loss": 1.724787139892578, + "step": 281600 + }, + { + "epoch": 37.56, + "grad_norm": 0.7618938684463501, + "learning_rate": 3.122846666666667e-05, + "loss": 1.7263723754882812, + "step": 281700 + }, + { + "epoch": 37.57333333333333, + "grad_norm": 0.73606938123703, + "learning_rate": 3.12218e-05, + "loss": 1.7267738342285157, + "step": 281800 + }, + { + "epoch": 37.586666666666666, + "grad_norm": 0.7361858487129211, + "learning_rate": 3.121513333333333e-05, + "loss": 1.7204446411132812, + "step": 281900 + }, + { + "epoch": 37.6, + "grad_norm": 0.7650215029716492, + "learning_rate": 3.120846666666667e-05, + "loss": 1.722607879638672, + "step": 282000 + }, + { + "epoch": 37.61333333333333, + "grad_norm": 0.7414928078651428, + "learning_rate": 3.12018e-05, + "loss": 1.7260256958007814, + "step": 282100 + }, + { + "epoch": 37.626666666666665, + "grad_norm": 0.7534034252166748, + "learning_rate": 3.1195133333333336e-05, + "loss": 1.726140899658203, + "step": 282200 + }, + { + "epoch": 37.64, + "grad_norm": 0.7416046857833862, + "learning_rate": 3.118846666666667e-05, + "loss": 1.7296353149414063, + "step": 282300 + }, + { + "epoch": 37.653333333333336, + "grad_norm": 0.7440157532691956, + "learning_rate": 3.11818e-05, + "loss": 1.7297128295898438, + "step": 282400 + }, + { + "epoch": 37.666666666666664, + "grad_norm": 0.7524501085281372, + "learning_rate": 3.117513333333333e-05, + "loss": 1.73589599609375, + "step": 282500 + }, + { + "epoch": 37.68, + "grad_norm": 0.757587730884552, + "learning_rate": 3.1168466666666665e-05, + "loss": 1.7298715209960938, + "step": 282600 + }, + { + "epoch": 37.693333333333335, + "grad_norm": 0.7522934675216675, + "learning_rate": 3.1161800000000004e-05, + "loss": 1.7345960998535157, + "step": 282700 + }, + { + "epoch": 37.70666666666666, + "grad_norm": 0.7544682621955872, + "learning_rate": 3.1155133333333336e-05, + "loss": 1.7308802795410156, + "step": 282800 + }, + { + "epoch": 37.72, + "grad_norm": 0.7192630171775818, + "learning_rate": 3.114846666666667e-05, + "loss": 1.7340335083007812, + "step": 282900 + }, + { + "epoch": 37.733333333333334, + "grad_norm": 0.7458509206771851, + "learning_rate": 3.11418e-05, + "loss": 1.734874267578125, + "step": 283000 + }, + { + "epoch": 37.74666666666667, + "grad_norm": 0.7439426779747009, + "learning_rate": 3.113513333333333e-05, + "loss": 1.7350709533691406, + "step": 283100 + }, + { + "epoch": 37.76, + "grad_norm": 0.7385891675949097, + "learning_rate": 3.1128466666666665e-05, + "loss": 1.730778045654297, + "step": 283200 + }, + { + "epoch": 37.77333333333333, + "grad_norm": 0.731911838054657, + "learning_rate": 3.1121800000000004e-05, + "loss": 1.7314964294433595, + "step": 283300 + }, + { + "epoch": 37.78666666666667, + "grad_norm": 0.7846623063087463, + "learning_rate": 3.1115133333333336e-05, + "loss": 1.733455352783203, + "step": 283400 + }, + { + "epoch": 37.8, + "grad_norm": 0.7687591910362244, + "learning_rate": 3.110846666666667e-05, + "loss": 1.7341983032226562, + "step": 283500 + }, + { + "epoch": 37.81333333333333, + "grad_norm": 0.7925374507904053, + "learning_rate": 3.11018e-05, + "loss": 1.7374996948242187, + "step": 283600 + }, + { + "epoch": 37.82666666666667, + "grad_norm": 0.7608065009117126, + "learning_rate": 3.109513333333334e-05, + "loss": 1.7386874389648437, + "step": 283700 + }, + { + "epoch": 37.84, + "grad_norm": 0.7788674235343933, + "learning_rate": 3.1088466666666665e-05, + "loss": 1.742396697998047, + "step": 283800 + }, + { + "epoch": 37.85333333333333, + "grad_norm": 0.7511487007141113, + "learning_rate": 3.10818e-05, + "loss": 1.7363363647460937, + "step": 283900 + }, + { + "epoch": 37.86666666666667, + "grad_norm": 0.7553167939186096, + "learning_rate": 3.107513333333334e-05, + "loss": 1.7385067749023437, + "step": 284000 + }, + { + "epoch": 37.88, + "grad_norm": 0.7409266233444214, + "learning_rate": 3.106846666666667e-05, + "loss": 1.7398283386230469, + "step": 284100 + }, + { + "epoch": 37.89333333333333, + "grad_norm": 0.7326803207397461, + "learning_rate": 3.10618e-05, + "loss": 1.738975067138672, + "step": 284200 + }, + { + "epoch": 37.906666666666666, + "grad_norm": 0.7426642179489136, + "learning_rate": 3.1055133333333334e-05, + "loss": 1.741965789794922, + "step": 284300 + }, + { + "epoch": 37.92, + "grad_norm": 0.7844317555427551, + "learning_rate": 3.104846666666667e-05, + "loss": 1.740626220703125, + "step": 284400 + }, + { + "epoch": 37.93333333333333, + "grad_norm": 0.7489057183265686, + "learning_rate": 3.1041800000000005e-05, + "loss": 1.7419303894042968, + "step": 284500 + }, + { + "epoch": 37.946666666666665, + "grad_norm": 0.766936719417572, + "learning_rate": 3.1035200000000004e-05, + "loss": 1.7452520751953124, + "step": 284600 + }, + { + "epoch": 37.96, + "grad_norm": 0.7706231474876404, + "learning_rate": 3.1028533333333336e-05, + "loss": 1.744236602783203, + "step": 284700 + }, + { + "epoch": 37.973333333333336, + "grad_norm": 0.7537173628807068, + "learning_rate": 3.102186666666667e-05, + "loss": 1.7478404235839844, + "step": 284800 + }, + { + "epoch": 37.986666666666665, + "grad_norm": 0.7413330078125, + "learning_rate": 3.10152e-05, + "loss": 1.7494500732421876, + "step": 284900 + }, + { + "epoch": 38.0, + "grad_norm": 0.7850656509399414, + "learning_rate": 3.100853333333333e-05, + "loss": 1.750704803466797, + "step": 285000 + }, + { + "epoch": 38.013333333333335, + "grad_norm": 0.7259971499443054, + "learning_rate": 3.1001866666666665e-05, + "loss": 1.6590287780761719, + "step": 285100 + }, + { + "epoch": 38.026666666666664, + "grad_norm": 0.746416449546814, + "learning_rate": 3.0995200000000004e-05, + "loss": 1.6625711059570312, + "step": 285200 + }, + { + "epoch": 38.04, + "grad_norm": 0.7898942232131958, + "learning_rate": 3.098853333333334e-05, + "loss": 1.6607310485839843, + "step": 285300 + }, + { + "epoch": 38.053333333333335, + "grad_norm": 0.7729313969612122, + "learning_rate": 3.098186666666667e-05, + "loss": 1.662105255126953, + "step": 285400 + }, + { + "epoch": 38.06666666666667, + "grad_norm": 0.7406087517738342, + "learning_rate": 3.09752e-05, + "loss": 1.6623809814453125, + "step": 285500 + }, + { + "epoch": 38.08, + "grad_norm": 0.7400987148284912, + "learning_rate": 3.0968533333333333e-05, + "loss": 1.6635809326171875, + "step": 285600 + }, + { + "epoch": 38.093333333333334, + "grad_norm": 0.7489773035049438, + "learning_rate": 3.0961866666666666e-05, + "loss": 1.6699810791015626, + "step": 285700 + }, + { + "epoch": 38.10666666666667, + "grad_norm": 0.7790253162384033, + "learning_rate": 3.09552e-05, + "loss": 1.669601287841797, + "step": 285800 + }, + { + "epoch": 38.12, + "grad_norm": 0.7665462493896484, + "learning_rate": 3.094853333333334e-05, + "loss": 1.6737181091308593, + "step": 285900 + }, + { + "epoch": 38.13333333333333, + "grad_norm": 0.7243815064430237, + "learning_rate": 3.094186666666667e-05, + "loss": 1.6687673950195312, + "step": 286000 + }, + { + "epoch": 38.14666666666667, + "grad_norm": 0.7670396566390991, + "learning_rate": 3.09352e-05, + "loss": 1.6730580139160156, + "step": 286100 + }, + { + "epoch": 38.16, + "grad_norm": 0.7733235359191895, + "learning_rate": 3.0928533333333334e-05, + "loss": 1.6757229614257811, + "step": 286200 + }, + { + "epoch": 38.17333333333333, + "grad_norm": 0.7491257190704346, + "learning_rate": 3.0921866666666666e-05, + "loss": 1.669895477294922, + "step": 286300 + }, + { + "epoch": 38.18666666666667, + "grad_norm": 0.7852340340614319, + "learning_rate": 3.09152e-05, + "loss": 1.6757810974121095, + "step": 286400 + }, + { + "epoch": 38.2, + "grad_norm": 0.7656257152557373, + "learning_rate": 3.090853333333333e-05, + "loss": 1.6795205688476562, + "step": 286500 + }, + { + "epoch": 38.21333333333333, + "grad_norm": 0.7430424094200134, + "learning_rate": 3.090186666666667e-05, + "loss": 1.6734898376464844, + "step": 286600 + }, + { + "epoch": 38.22666666666667, + "grad_norm": 0.7725613117218018, + "learning_rate": 3.089526666666667e-05, + "loss": 1.6736170959472656, + "step": 286700 + }, + { + "epoch": 38.24, + "grad_norm": 0.7913093566894531, + "learning_rate": 3.08886e-05, + "loss": 1.6843594360351561, + "step": 286800 + }, + { + "epoch": 38.25333333333333, + "grad_norm": 0.7620664238929749, + "learning_rate": 3.088193333333333e-05, + "loss": 1.6822517395019532, + "step": 286900 + }, + { + "epoch": 38.266666666666666, + "grad_norm": 0.8010652661323547, + "learning_rate": 3.087526666666667e-05, + "loss": 1.682193603515625, + "step": 287000 + }, + { + "epoch": 38.28, + "grad_norm": 0.7800931334495544, + "learning_rate": 3.0868600000000005e-05, + "loss": 1.68789794921875, + "step": 287100 + }, + { + "epoch": 38.29333333333334, + "grad_norm": 0.7320764064788818, + "learning_rate": 3.086193333333334e-05, + "loss": 1.677606201171875, + "step": 287200 + }, + { + "epoch": 38.306666666666665, + "grad_norm": 0.7963472604751587, + "learning_rate": 3.085526666666666e-05, + "loss": 1.6835293579101562, + "step": 287300 + }, + { + "epoch": 38.32, + "grad_norm": 0.7579801678657532, + "learning_rate": 3.08486e-05, + "loss": 1.6827491760253905, + "step": 287400 + }, + { + "epoch": 38.333333333333336, + "grad_norm": 0.7616518139839172, + "learning_rate": 3.0841933333333334e-05, + "loss": 1.689130859375, + "step": 287500 + }, + { + "epoch": 38.346666666666664, + "grad_norm": 0.7492512464523315, + "learning_rate": 3.0835266666666666e-05, + "loss": 1.6856808471679687, + "step": 287600 + }, + { + "epoch": 38.36, + "grad_norm": 0.7573805451393127, + "learning_rate": 3.0828600000000005e-05, + "loss": 1.690630645751953, + "step": 287700 + }, + { + "epoch": 38.373333333333335, + "grad_norm": 0.7447465062141418, + "learning_rate": 3.082193333333334e-05, + "loss": 1.689488525390625, + "step": 287800 + }, + { + "epoch": 38.38666666666666, + "grad_norm": 0.7608117461204529, + "learning_rate": 3.081526666666667e-05, + "loss": 1.6932475280761718, + "step": 287900 + }, + { + "epoch": 38.4, + "grad_norm": 0.7536253333091736, + "learning_rate": 3.08086e-05, + "loss": 1.6915469360351563, + "step": 288000 + }, + { + "epoch": 38.413333333333334, + "grad_norm": 0.754641056060791, + "learning_rate": 3.0801933333333334e-05, + "loss": 1.6956082153320313, + "step": 288100 + }, + { + "epoch": 38.42666666666667, + "grad_norm": 0.7657079696655273, + "learning_rate": 3.0795266666666666e-05, + "loss": 1.6968582153320313, + "step": 288200 + }, + { + "epoch": 38.44, + "grad_norm": 0.7657183408737183, + "learning_rate": 3.07886e-05, + "loss": 1.696566619873047, + "step": 288300 + }, + { + "epoch": 38.45333333333333, + "grad_norm": 0.7208789587020874, + "learning_rate": 3.078193333333334e-05, + "loss": 1.692105255126953, + "step": 288400 + }, + { + "epoch": 38.46666666666667, + "grad_norm": 0.774307906627655, + "learning_rate": 3.077526666666667e-05, + "loss": 1.6932823181152343, + "step": 288500 + }, + { + "epoch": 38.48, + "grad_norm": 0.7949078679084778, + "learning_rate": 3.07686e-05, + "loss": 1.6973165893554687, + "step": 288600 + }, + { + "epoch": 38.49333333333333, + "grad_norm": 0.7806784510612488, + "learning_rate": 3.0761933333333334e-05, + "loss": 1.6917153930664062, + "step": 288700 + }, + { + "epoch": 38.50666666666667, + "grad_norm": 0.7916117906570435, + "learning_rate": 3.075526666666667e-05, + "loss": 1.7009848022460938, + "step": 288800 + }, + { + "epoch": 38.52, + "grad_norm": 0.759568989276886, + "learning_rate": 3.07486e-05, + "loss": 1.7016871643066407, + "step": 288900 + }, + { + "epoch": 38.53333333333333, + "grad_norm": 0.7423282861709595, + "learning_rate": 3.0742000000000005e-05, + "loss": 1.6960887145996093, + "step": 289000 + }, + { + "epoch": 38.54666666666667, + "grad_norm": 0.7630002498626709, + "learning_rate": 3.073533333333333e-05, + "loss": 1.7025230407714844, + "step": 289100 + }, + { + "epoch": 38.56, + "grad_norm": 0.7927618026733398, + "learning_rate": 3.072866666666667e-05, + "loss": 1.7043484497070311, + "step": 289200 + }, + { + "epoch": 38.57333333333333, + "grad_norm": 0.7585164308547974, + "learning_rate": 3.0722e-05, + "loss": 1.7019801330566406, + "step": 289300 + }, + { + "epoch": 38.586666666666666, + "grad_norm": 0.7974201440811157, + "learning_rate": 3.0715333333333334e-05, + "loss": 1.6983253479003906, + "step": 289400 + }, + { + "epoch": 38.6, + "grad_norm": 0.7960885763168335, + "learning_rate": 3.0708666666666666e-05, + "loss": 1.7020025634765625, + "step": 289500 + }, + { + "epoch": 38.61333333333333, + "grad_norm": 0.7698130011558533, + "learning_rate": 3.0702000000000005e-05, + "loss": 1.7045166015625, + "step": 289600 + }, + { + "epoch": 38.626666666666665, + "grad_norm": 0.7774978876113892, + "learning_rate": 3.069533333333334e-05, + "loss": 1.7092160034179686, + "step": 289700 + }, + { + "epoch": 38.64, + "grad_norm": 0.7904421091079712, + "learning_rate": 3.068866666666666e-05, + "loss": 1.7111721801757813, + "step": 289800 + }, + { + "epoch": 38.653333333333336, + "grad_norm": 0.7613751292228699, + "learning_rate": 3.0682e-05, + "loss": 1.7066726684570312, + "step": 289900 + }, + { + "epoch": 38.666666666666664, + "grad_norm": 0.7756422758102417, + "learning_rate": 3.0675333333333334e-05, + "loss": 1.7077285766601562, + "step": 290000 + }, + { + "epoch": 38.68, + "grad_norm": 0.7973787784576416, + "learning_rate": 3.0668666666666667e-05, + "loss": 1.706180419921875, + "step": 290100 + }, + { + "epoch": 38.693333333333335, + "grad_norm": 0.7484989762306213, + "learning_rate": 3.0662e-05, + "loss": 1.7061300659179688, + "step": 290200 + }, + { + "epoch": 38.70666666666666, + "grad_norm": 0.7544485926628113, + "learning_rate": 3.065533333333334e-05, + "loss": 1.7120814514160156, + "step": 290300 + }, + { + "epoch": 38.72, + "grad_norm": 0.7512329816818237, + "learning_rate": 3.064866666666667e-05, + "loss": 1.710401611328125, + "step": 290400 + }, + { + "epoch": 38.733333333333334, + "grad_norm": 0.7429623007774353, + "learning_rate": 3.0642e-05, + "loss": 1.7145462036132812, + "step": 290500 + }, + { + "epoch": 38.74666666666667, + "grad_norm": 0.7737287878990173, + "learning_rate": 3.0635333333333335e-05, + "loss": 1.7123170471191407, + "step": 290600 + }, + { + "epoch": 38.76, + "grad_norm": 0.7839905023574829, + "learning_rate": 3.062866666666667e-05, + "loss": 1.714277801513672, + "step": 290700 + }, + { + "epoch": 38.77333333333333, + "grad_norm": 0.7753442525863647, + "learning_rate": 3.0622e-05, + "loss": 1.711389923095703, + "step": 290800 + }, + { + "epoch": 38.78666666666667, + "grad_norm": 0.7696095108985901, + "learning_rate": 3.061533333333333e-05, + "loss": 1.712263946533203, + "step": 290900 + }, + { + "epoch": 38.8, + "grad_norm": 0.78681880235672, + "learning_rate": 3.060866666666667e-05, + "loss": 1.7169947814941406, + "step": 291000 + }, + { + "epoch": 38.81333333333333, + "grad_norm": 0.7666211128234863, + "learning_rate": 3.060206666666667e-05, + "loss": 1.713688201904297, + "step": 291100 + }, + { + "epoch": 38.82666666666667, + "grad_norm": 0.8072649836540222, + "learning_rate": 3.05954e-05, + "loss": 1.7122874450683594, + "step": 291200 + }, + { + "epoch": 38.84, + "grad_norm": 0.8129579424858093, + "learning_rate": 3.0588733333333334e-05, + "loss": 1.7165837097167969, + "step": 291300 + }, + { + "epoch": 38.85333333333333, + "grad_norm": 0.759157121181488, + "learning_rate": 3.058206666666667e-05, + "loss": 1.7154681396484375, + "step": 291400 + }, + { + "epoch": 38.86666666666667, + "grad_norm": 0.7481434345245361, + "learning_rate": 3.0575400000000005e-05, + "loss": 1.7192173767089844, + "step": 291500 + }, + { + "epoch": 38.88, + "grad_norm": 0.751333475112915, + "learning_rate": 3.056873333333333e-05, + "loss": 1.7186842346191407, + "step": 291600 + }, + { + "epoch": 38.89333333333333, + "grad_norm": 0.7542101740837097, + "learning_rate": 3.056206666666667e-05, + "loss": 1.7197854614257813, + "step": 291700 + }, + { + "epoch": 38.906666666666666, + "grad_norm": 0.7745694518089294, + "learning_rate": 3.05554e-05, + "loss": 1.717758026123047, + "step": 291800 + }, + { + "epoch": 38.92, + "grad_norm": 0.785905122756958, + "learning_rate": 3.0548733333333335e-05, + "loss": 1.7214923095703125, + "step": 291900 + }, + { + "epoch": 38.93333333333333, + "grad_norm": 0.737249493598938, + "learning_rate": 3.054206666666667e-05, + "loss": 1.721144256591797, + "step": 292000 + }, + { + "epoch": 38.946666666666665, + "grad_norm": 0.7561144828796387, + "learning_rate": 3.0535400000000006e-05, + "loss": 1.7213453674316406, + "step": 292100 + }, + { + "epoch": 38.96, + "grad_norm": 0.769527018070221, + "learning_rate": 3.052873333333334e-05, + "loss": 1.7238650512695313, + "step": 292200 + }, + { + "epoch": 38.973333333333336, + "grad_norm": 0.781715452671051, + "learning_rate": 3.0522066666666664e-05, + "loss": 1.7266677856445312, + "step": 292300 + }, + { + "epoch": 38.986666666666665, + "grad_norm": 0.7867762446403503, + "learning_rate": 3.05154e-05, + "loss": 1.7263604736328124, + "step": 292400 + }, + { + "epoch": 39.0, + "grad_norm": 0.7711582183837891, + "learning_rate": 3.0508733333333335e-05, + "loss": 1.7235179138183594, + "step": 292500 + }, + { + "epoch": 39.013333333333335, + "grad_norm": 0.7427387237548828, + "learning_rate": 3.0502066666666667e-05, + "loss": 1.636926727294922, + "step": 292600 + }, + { + "epoch": 39.026666666666664, + "grad_norm": 0.7548815011978149, + "learning_rate": 3.0495400000000003e-05, + "loss": 1.638148193359375, + "step": 292700 + }, + { + "epoch": 39.04, + "grad_norm": 0.766891598701477, + "learning_rate": 3.0488733333333335e-05, + "loss": 1.6450836181640625, + "step": 292800 + }, + { + "epoch": 39.053333333333335, + "grad_norm": 0.7814005017280579, + "learning_rate": 3.048206666666667e-05, + "loss": 1.6402984619140626, + "step": 292900 + }, + { + "epoch": 39.06666666666667, + "grad_norm": 0.7863591909408569, + "learning_rate": 3.0475400000000003e-05, + "loss": 1.645513916015625, + "step": 293000 + }, + { + "epoch": 39.08, + "grad_norm": 0.7696388959884644, + "learning_rate": 3.0468733333333332e-05, + "loss": 1.6503067016601562, + "step": 293100 + }, + { + "epoch": 39.093333333333334, + "grad_norm": 0.7683019042015076, + "learning_rate": 3.0462066666666668e-05, + "loss": 1.6453077697753906, + "step": 293200 + }, + { + "epoch": 39.10666666666667, + "grad_norm": 0.8194789886474609, + "learning_rate": 3.04554e-05, + "loss": 1.6493295288085938, + "step": 293300 + }, + { + "epoch": 39.12, + "grad_norm": 0.7500215172767639, + "learning_rate": 3.04488e-05, + "loss": 1.6437741088867188, + "step": 293400 + }, + { + "epoch": 39.13333333333333, + "grad_norm": 0.7612013220787048, + "learning_rate": 3.0442133333333335e-05, + "loss": 1.6460026550292968, + "step": 293500 + }, + { + "epoch": 39.14666666666667, + "grad_norm": 0.7490237355232239, + "learning_rate": 3.0435466666666667e-05, + "loss": 1.6469500732421876, + "step": 293600 + }, + { + "epoch": 39.16, + "grad_norm": 0.7428447604179382, + "learning_rate": 3.0428800000000002e-05, + "loss": 1.6538037109375, + "step": 293700 + }, + { + "epoch": 39.17333333333333, + "grad_norm": 0.771937906742096, + "learning_rate": 3.0422133333333335e-05, + "loss": 1.6548284912109374, + "step": 293800 + }, + { + "epoch": 39.18666666666667, + "grad_norm": 0.8053415417671204, + "learning_rate": 3.041546666666667e-05, + "loss": 1.6548187255859375, + "step": 293900 + }, + { + "epoch": 39.2, + "grad_norm": 0.7840629816055298, + "learning_rate": 3.0408800000000003e-05, + "loss": 1.656223907470703, + "step": 294000 + }, + { + "epoch": 39.21333333333333, + "grad_norm": 0.7682107090950012, + "learning_rate": 3.040213333333333e-05, + "loss": 1.6517486572265625, + "step": 294100 + }, + { + "epoch": 39.22666666666667, + "grad_norm": 0.7796576619148254, + "learning_rate": 3.0395466666666667e-05, + "loss": 1.6598385620117186, + "step": 294200 + }, + { + "epoch": 39.24, + "grad_norm": 0.7165907025337219, + "learning_rate": 3.03888e-05, + "loss": 1.6587965393066406, + "step": 294300 + }, + { + "epoch": 39.25333333333333, + "grad_norm": 0.7674499154090881, + "learning_rate": 3.0382133333333335e-05, + "loss": 1.6644235229492188, + "step": 294400 + }, + { + "epoch": 39.266666666666666, + "grad_norm": 0.7708069086074829, + "learning_rate": 3.0375466666666667e-05, + "loss": 1.6615855407714843, + "step": 294500 + }, + { + "epoch": 39.28, + "grad_norm": 0.7408686876296997, + "learning_rate": 3.0368800000000003e-05, + "loss": 1.6682752990722656, + "step": 294600 + }, + { + "epoch": 39.29333333333334, + "grad_norm": 0.7657552361488342, + "learning_rate": 3.0362133333333335e-05, + "loss": 1.6586656188964843, + "step": 294700 + }, + { + "epoch": 39.306666666666665, + "grad_norm": 0.7995692491531372, + "learning_rate": 3.0355466666666664e-05, + "loss": 1.6587791442871094, + "step": 294800 + }, + { + "epoch": 39.32, + "grad_norm": 0.748633086681366, + "learning_rate": 3.03488e-05, + "loss": 1.66481689453125, + "step": 294900 + }, + { + "epoch": 39.333333333333336, + "grad_norm": 0.7635269165039062, + "learning_rate": 3.0342133333333332e-05, + "loss": 1.6681814575195313, + "step": 295000 + }, + { + "epoch": 39.346666666666664, + "grad_norm": 0.7503258585929871, + "learning_rate": 3.0335466666666668e-05, + "loss": 1.6664021301269532, + "step": 295100 + }, + { + "epoch": 39.36, + "grad_norm": 0.7651309370994568, + "learning_rate": 3.03288e-05, + "loss": 1.6657469177246094, + "step": 295200 + }, + { + "epoch": 39.373333333333335, + "grad_norm": 0.7666741013526917, + "learning_rate": 3.0322133333333336e-05, + "loss": 1.6691456604003907, + "step": 295300 + }, + { + "epoch": 39.38666666666666, + "grad_norm": 0.7548410296440125, + "learning_rate": 3.031546666666667e-05, + "loss": 1.670536651611328, + "step": 295400 + }, + { + "epoch": 39.4, + "grad_norm": 0.74871826171875, + "learning_rate": 3.0308866666666667e-05, + "loss": 1.667931365966797, + "step": 295500 + }, + { + "epoch": 39.413333333333334, + "grad_norm": 0.8039665222167969, + "learning_rate": 3.0302200000000003e-05, + "loss": 1.6696517944335938, + "step": 295600 + }, + { + "epoch": 39.42666666666667, + "grad_norm": 0.770044207572937, + "learning_rate": 3.029553333333334e-05, + "loss": 1.6706535339355468, + "step": 295700 + }, + { + "epoch": 39.44, + "grad_norm": 0.7525724768638611, + "learning_rate": 3.0288866666666664e-05, + "loss": 1.6772557067871094, + "step": 295800 + }, + { + "epoch": 39.45333333333333, + "grad_norm": 0.7813305258750916, + "learning_rate": 3.02822e-05, + "loss": 1.671944122314453, + "step": 295900 + }, + { + "epoch": 39.46666666666667, + "grad_norm": 0.7860172390937805, + "learning_rate": 3.0275533333333335e-05, + "loss": 1.6785629272460938, + "step": 296000 + }, + { + "epoch": 39.48, + "grad_norm": 0.7601441740989685, + "learning_rate": 3.0268866666666667e-05, + "loss": 1.679444580078125, + "step": 296100 + }, + { + "epoch": 39.49333333333333, + "grad_norm": 0.7699296474456787, + "learning_rate": 3.0262200000000003e-05, + "loss": 1.6728718566894532, + "step": 296200 + }, + { + "epoch": 39.50666666666667, + "grad_norm": 0.8299603462219238, + "learning_rate": 3.0255533333333335e-05, + "loss": 1.672165069580078, + "step": 296300 + }, + { + "epoch": 39.52, + "grad_norm": 0.7380194067955017, + "learning_rate": 3.024886666666667e-05, + "loss": 1.6806745910644532, + "step": 296400 + }, + { + "epoch": 39.53333333333333, + "grad_norm": 0.774158239364624, + "learning_rate": 3.0242200000000003e-05, + "loss": 1.6795536804199218, + "step": 296500 + }, + { + "epoch": 39.54666666666667, + "grad_norm": 0.7721417546272278, + "learning_rate": 3.0235533333333332e-05, + "loss": 1.6812428283691405, + "step": 296600 + }, + { + "epoch": 39.56, + "grad_norm": 0.7454893589019775, + "learning_rate": 3.0228866666666668e-05, + "loss": 1.6825442504882813, + "step": 296700 + }, + { + "epoch": 39.57333333333333, + "grad_norm": 0.7825901508331299, + "learning_rate": 3.02222e-05, + "loss": 1.684827117919922, + "step": 296800 + }, + { + "epoch": 39.586666666666666, + "grad_norm": 0.7577589750289917, + "learning_rate": 3.0215533333333336e-05, + "loss": 1.686151885986328, + "step": 296900 + }, + { + "epoch": 39.6, + "grad_norm": 0.7495019435882568, + "learning_rate": 3.0208866666666668e-05, + "loss": 1.6861024475097657, + "step": 297000 + }, + { + "epoch": 39.61333333333333, + "grad_norm": 0.7696591019630432, + "learning_rate": 3.0202200000000004e-05, + "loss": 1.6808950805664062, + "step": 297100 + }, + { + "epoch": 39.626666666666665, + "grad_norm": 0.7768684029579163, + "learning_rate": 3.0195533333333336e-05, + "loss": 1.6860086059570312, + "step": 297200 + }, + { + "epoch": 39.64, + "grad_norm": 0.8358619809150696, + "learning_rate": 3.018886666666667e-05, + "loss": 1.6880392456054687, + "step": 297300 + }, + { + "epoch": 39.653333333333336, + "grad_norm": 0.7638468742370605, + "learning_rate": 3.01822e-05, + "loss": 1.6880755615234375, + "step": 297400 + }, + { + "epoch": 39.666666666666664, + "grad_norm": 0.7862942814826965, + "learning_rate": 3.0175533333333333e-05, + "loss": 1.6920382690429687, + "step": 297500 + }, + { + "epoch": 39.68, + "grad_norm": 0.7873303890228271, + "learning_rate": 3.016886666666667e-05, + "loss": 1.688036651611328, + "step": 297600 + }, + { + "epoch": 39.693333333333335, + "grad_norm": 0.7888381481170654, + "learning_rate": 3.01622e-05, + "loss": 1.6933929443359375, + "step": 297700 + }, + { + "epoch": 39.70666666666666, + "grad_norm": 0.7556432485580444, + "learning_rate": 3.01556e-05, + "loss": 1.6857225036621093, + "step": 297800 + }, + { + "epoch": 39.72, + "grad_norm": 0.7747805714607239, + "learning_rate": 3.0148933333333335e-05, + "loss": 1.693270721435547, + "step": 297900 + }, + { + "epoch": 39.733333333333334, + "grad_norm": 0.7705897092819214, + "learning_rate": 3.0142266666666668e-05, + "loss": 1.69430419921875, + "step": 298000 + }, + { + "epoch": 39.74666666666667, + "grad_norm": 0.7893573045730591, + "learning_rate": 3.0135600000000003e-05, + "loss": 1.6897537231445312, + "step": 298100 + }, + { + "epoch": 39.76, + "grad_norm": 0.7793616056442261, + "learning_rate": 3.0128933333333336e-05, + "loss": 1.6898460388183594, + "step": 298200 + }, + { + "epoch": 39.77333333333333, + "grad_norm": 0.7738221883773804, + "learning_rate": 3.012226666666667e-05, + "loss": 1.6978416442871094, + "step": 298300 + }, + { + "epoch": 39.78666666666667, + "grad_norm": 0.7676934599876404, + "learning_rate": 3.01156e-05, + "loss": 1.699170379638672, + "step": 298400 + }, + { + "epoch": 39.8, + "grad_norm": 0.7687268853187561, + "learning_rate": 3.0108933333333332e-05, + "loss": 1.6959735107421876, + "step": 298500 + }, + { + "epoch": 39.81333333333333, + "grad_norm": 0.7735351920127869, + "learning_rate": 3.0102266666666668e-05, + "loss": 1.6969778442382812, + "step": 298600 + }, + { + "epoch": 39.82666666666667, + "grad_norm": 0.7656512260437012, + "learning_rate": 3.00956e-05, + "loss": 1.6993966674804688, + "step": 298700 + }, + { + "epoch": 39.84, + "grad_norm": 0.782088577747345, + "learning_rate": 3.0088933333333336e-05, + "loss": 1.699752960205078, + "step": 298800 + }, + { + "epoch": 39.85333333333333, + "grad_norm": 0.773292601108551, + "learning_rate": 3.0082266666666668e-05, + "loss": 1.6988934326171874, + "step": 298900 + }, + { + "epoch": 39.86666666666667, + "grad_norm": 0.7811734080314636, + "learning_rate": 3.0075600000000004e-05, + "loss": 1.6964959716796875, + "step": 299000 + }, + { + "epoch": 39.88, + "grad_norm": 0.7883747220039368, + "learning_rate": 3.0068933333333333e-05, + "loss": 1.7006631469726563, + "step": 299100 + }, + { + "epoch": 39.89333333333333, + "grad_norm": 0.7700868844985962, + "learning_rate": 3.0062266666666665e-05, + "loss": 1.6964584350585938, + "step": 299200 + }, + { + "epoch": 39.906666666666666, + "grad_norm": 0.803329348564148, + "learning_rate": 3.00556e-05, + "loss": 1.6985226440429688, + "step": 299300 + }, + { + "epoch": 39.92, + "grad_norm": 0.7313794493675232, + "learning_rate": 3.0048933333333333e-05, + "loss": 1.6996687316894532, + "step": 299400 + }, + { + "epoch": 39.93333333333333, + "grad_norm": 0.8017928004264832, + "learning_rate": 3.004226666666667e-05, + "loss": 1.7024073791503906, + "step": 299500 + }, + { + "epoch": 39.946666666666665, + "grad_norm": 0.7980249524116516, + "learning_rate": 3.0035600000000004e-05, + "loss": 1.7046482849121094, + "step": 299600 + }, + { + "epoch": 39.96, + "grad_norm": 0.7558285593986511, + "learning_rate": 3.0028933333333337e-05, + "loss": 1.7029963684082032, + "step": 299700 + }, + { + "epoch": 39.973333333333336, + "grad_norm": 0.7704285383224487, + "learning_rate": 3.0022266666666672e-05, + "loss": 1.7064549255371093, + "step": 299800 + }, + { + "epoch": 39.986666666666665, + "grad_norm": 0.7782922983169556, + "learning_rate": 3.0015599999999998e-05, + "loss": 1.7005975341796875, + "step": 299900 + }, + { + "epoch": 40.0, + "grad_norm": 0.7687188982963562, + "learning_rate": 3.0008933333333333e-05, + "loss": 1.7041835021972656, + "step": 300000 + }, + { + "epoch": 40.013333333333335, + "grad_norm": 0.7731031775474548, + "learning_rate": 3.000226666666667e-05, + "loss": 1.620243377685547, + "step": 300100 + }, + { + "epoch": 40.026666666666664, + "grad_norm": 0.7835327386856079, + "learning_rate": 2.99956e-05, + "loss": 1.6189300537109375, + "step": 300200 + }, + { + "epoch": 40.04, + "grad_norm": 0.788834273815155, + "learning_rate": 2.9989e-05, + "loss": 1.6183770751953126, + "step": 300300 + }, + { + "epoch": 40.053333333333335, + "grad_norm": 0.7707294225692749, + "learning_rate": 2.9982333333333336e-05, + "loss": 1.624232940673828, + "step": 300400 + }, + { + "epoch": 40.06666666666667, + "grad_norm": 0.7670961618423462, + "learning_rate": 2.9975666666666668e-05, + "loss": 1.6271139526367187, + "step": 300500 + }, + { + "epoch": 40.08, + "grad_norm": 0.7733743190765381, + "learning_rate": 2.9969000000000004e-05, + "loss": 1.6237083435058595, + "step": 300600 + }, + { + "epoch": 40.093333333333334, + "grad_norm": 0.7543879747390747, + "learning_rate": 2.9962333333333336e-05, + "loss": 1.6283514404296875, + "step": 300700 + }, + { + "epoch": 40.10666666666667, + "grad_norm": 0.7911033630371094, + "learning_rate": 2.9955666666666672e-05, + "loss": 1.6246966552734374, + "step": 300800 + }, + { + "epoch": 40.12, + "grad_norm": 0.758840799331665, + "learning_rate": 2.9949e-05, + "loss": 1.6292984008789062, + "step": 300900 + }, + { + "epoch": 40.13333333333333, + "grad_norm": 0.7979432344436646, + "learning_rate": 2.9942333333333333e-05, + "loss": 1.6320713806152343, + "step": 301000 + }, + { + "epoch": 40.14666666666667, + "grad_norm": 0.7912939786911011, + "learning_rate": 2.993566666666667e-05, + "loss": 1.6327186584472657, + "step": 301100 + }, + { + "epoch": 40.16, + "grad_norm": 0.7603537440299988, + "learning_rate": 2.9929e-05, + "loss": 1.6343653869628907, + "step": 301200 + }, + { + "epoch": 40.17333333333333, + "grad_norm": 0.7935387492179871, + "learning_rate": 2.9922333333333337e-05, + "loss": 1.6328231811523437, + "step": 301300 + }, + { + "epoch": 40.18666666666667, + "grad_norm": 0.7534608244895935, + "learning_rate": 2.991566666666667e-05, + "loss": 1.6297528076171874, + "step": 301400 + }, + { + "epoch": 40.2, + "grad_norm": 0.7596133351325989, + "learning_rate": 2.9909000000000005e-05, + "loss": 1.6323152160644532, + "step": 301500 + }, + { + "epoch": 40.21333333333333, + "grad_norm": 0.7837437987327576, + "learning_rate": 2.9902333333333333e-05, + "loss": 1.6390170288085937, + "step": 301600 + }, + { + "epoch": 40.22666666666667, + "grad_norm": 0.7405257821083069, + "learning_rate": 2.9895666666666666e-05, + "loss": 1.6328970336914062, + "step": 301700 + }, + { + "epoch": 40.24, + "grad_norm": 0.7964353561401367, + "learning_rate": 2.9889e-05, + "loss": 1.6418511962890625, + "step": 301800 + }, + { + "epoch": 40.25333333333333, + "grad_norm": 0.7721452713012695, + "learning_rate": 2.9882333333333334e-05, + "loss": 1.6432241821289062, + "step": 301900 + }, + { + "epoch": 40.266666666666666, + "grad_norm": 0.7319056987762451, + "learning_rate": 2.987566666666667e-05, + "loss": 1.6457327270507813, + "step": 302000 + }, + { + "epoch": 40.28, + "grad_norm": 0.7476204037666321, + "learning_rate": 2.9869e-05, + "loss": 1.63947265625, + "step": 302100 + }, + { + "epoch": 40.29333333333334, + "grad_norm": 0.7636196613311768, + "learning_rate": 2.9862333333333337e-05, + "loss": 1.6431263732910155, + "step": 302200 + }, + { + "epoch": 40.306666666666665, + "grad_norm": 0.7672015428543091, + "learning_rate": 2.985566666666667e-05, + "loss": 1.6432777404785157, + "step": 302300 + }, + { + "epoch": 40.32, + "grad_norm": 0.7906679511070251, + "learning_rate": 2.984906666666667e-05, + "loss": 1.6422769165039062, + "step": 302400 + }, + { + "epoch": 40.333333333333336, + "grad_norm": 0.7585984468460083, + "learning_rate": 2.9842400000000004e-05, + "loss": 1.645401611328125, + "step": 302500 + }, + { + "epoch": 40.346666666666664, + "grad_norm": 0.7551888227462769, + "learning_rate": 2.9835733333333333e-05, + "loss": 1.6521505737304687, + "step": 302600 + }, + { + "epoch": 40.36, + "grad_norm": 0.7747895121574402, + "learning_rate": 2.9829066666666665e-05, + "loss": 1.653616943359375, + "step": 302700 + }, + { + "epoch": 40.373333333333335, + "grad_norm": 0.7973045706748962, + "learning_rate": 2.98224e-05, + "loss": 1.6516969299316406, + "step": 302800 + }, + { + "epoch": 40.38666666666666, + "grad_norm": 0.7736092209815979, + "learning_rate": 2.9815733333333333e-05, + "loss": 1.6533767700195312, + "step": 302900 + }, + { + "epoch": 40.4, + "grad_norm": 0.8287850618362427, + "learning_rate": 2.980906666666667e-05, + "loss": 1.650742950439453, + "step": 303000 + }, + { + "epoch": 40.413333333333334, + "grad_norm": 0.7991235256195068, + "learning_rate": 2.98024e-05, + "loss": 1.6495477294921874, + "step": 303100 + }, + { + "epoch": 40.42666666666667, + "grad_norm": 0.7750113010406494, + "learning_rate": 2.9795733333333337e-05, + "loss": 1.6545738220214843, + "step": 303200 + }, + { + "epoch": 40.44, + "grad_norm": 0.7548984885215759, + "learning_rate": 2.978906666666667e-05, + "loss": 1.6560383605957032, + "step": 303300 + }, + { + "epoch": 40.45333333333333, + "grad_norm": 0.7681398987770081, + "learning_rate": 2.9782399999999998e-05, + "loss": 1.6523040771484374, + "step": 303400 + }, + { + "epoch": 40.46666666666667, + "grad_norm": 0.7958689332008362, + "learning_rate": 2.9775733333333334e-05, + "loss": 1.654131622314453, + "step": 303500 + }, + { + "epoch": 40.48, + "grad_norm": 0.8112989068031311, + "learning_rate": 2.9769066666666666e-05, + "loss": 1.6542424011230468, + "step": 303600 + }, + { + "epoch": 40.49333333333333, + "grad_norm": 0.8102808594703674, + "learning_rate": 2.97624e-05, + "loss": 1.6532270812988281, + "step": 303700 + }, + { + "epoch": 40.50666666666667, + "grad_norm": 0.7980448603630066, + "learning_rate": 2.9755733333333334e-05, + "loss": 1.6606166076660156, + "step": 303800 + }, + { + "epoch": 40.52, + "grad_norm": 0.7753362655639648, + "learning_rate": 2.974906666666667e-05, + "loss": 1.6590802001953124, + "step": 303900 + }, + { + "epoch": 40.53333333333333, + "grad_norm": 0.7801727056503296, + "learning_rate": 2.9742400000000005e-05, + "loss": 1.6569808959960937, + "step": 304000 + }, + { + "epoch": 40.54666666666667, + "grad_norm": 0.7659746408462524, + "learning_rate": 2.973573333333333e-05, + "loss": 1.6627920532226563, + "step": 304100 + }, + { + "epoch": 40.56, + "grad_norm": 0.8251011371612549, + "learning_rate": 2.9729066666666666e-05, + "loss": 1.6599037170410156, + "step": 304200 + }, + { + "epoch": 40.57333333333333, + "grad_norm": 0.7905187010765076, + "learning_rate": 2.9722400000000002e-05, + "loss": 1.6602447509765625, + "step": 304300 + }, + { + "epoch": 40.586666666666666, + "grad_norm": 0.7680100202560425, + "learning_rate": 2.9715733333333334e-05, + "loss": 1.6645524597167969, + "step": 304400 + }, + { + "epoch": 40.6, + "grad_norm": 0.8009008765220642, + "learning_rate": 2.970906666666667e-05, + "loss": 1.6655874633789063, + "step": 304500 + }, + { + "epoch": 40.61333333333333, + "grad_norm": 0.7796105742454529, + "learning_rate": 2.9702400000000002e-05, + "loss": 1.6701692199707032, + "step": 304600 + }, + { + "epoch": 40.626666666666665, + "grad_norm": 0.8052720427513123, + "learning_rate": 2.96958e-05, + "loss": 1.67267333984375, + "step": 304700 + }, + { + "epoch": 40.64, + "grad_norm": 0.8020023703575134, + "learning_rate": 2.9689133333333337e-05, + "loss": 1.6702662658691407, + "step": 304800 + }, + { + "epoch": 40.653333333333336, + "grad_norm": 0.7790773510932922, + "learning_rate": 2.968246666666667e-05, + "loss": 1.6637289428710937, + "step": 304900 + }, + { + "epoch": 40.666666666666664, + "grad_norm": 0.7891820073127747, + "learning_rate": 2.9675800000000005e-05, + "loss": 1.6721121215820312, + "step": 305000 + }, + { + "epoch": 40.68, + "grad_norm": 0.8255475759506226, + "learning_rate": 2.9669133333333334e-05, + "loss": 1.668660888671875, + "step": 305100 + }, + { + "epoch": 40.693333333333335, + "grad_norm": 0.7707953453063965, + "learning_rate": 2.9662466666666666e-05, + "loss": 1.670304718017578, + "step": 305200 + }, + { + "epoch": 40.70666666666666, + "grad_norm": 0.789410412311554, + "learning_rate": 2.96558e-05, + "loss": 1.6723420715332031, + "step": 305300 + }, + { + "epoch": 40.72, + "grad_norm": 0.7793656587600708, + "learning_rate": 2.9649133333333334e-05, + "loss": 1.6703863525390625, + "step": 305400 + }, + { + "epoch": 40.733333333333334, + "grad_norm": 0.7544719576835632, + "learning_rate": 2.964246666666667e-05, + "loss": 1.670694580078125, + "step": 305500 + }, + { + "epoch": 40.74666666666667, + "grad_norm": 0.7913680076599121, + "learning_rate": 2.9635800000000002e-05, + "loss": 1.6704800415039063, + "step": 305600 + }, + { + "epoch": 40.76, + "grad_norm": 0.8109893798828125, + "learning_rate": 2.9629133333333337e-05, + "loss": 1.674829864501953, + "step": 305700 + }, + { + "epoch": 40.77333333333333, + "grad_norm": 0.7733386754989624, + "learning_rate": 2.962246666666667e-05, + "loss": 1.671063690185547, + "step": 305800 + }, + { + "epoch": 40.78666666666667, + "grad_norm": 0.8088369965553284, + "learning_rate": 2.96158e-05, + "loss": 1.6718939208984376, + "step": 305900 + }, + { + "epoch": 40.8, + "grad_norm": 0.7910258173942566, + "learning_rate": 2.9609133333333334e-05, + "loss": 1.6722633361816406, + "step": 306000 + }, + { + "epoch": 40.81333333333333, + "grad_norm": 0.8270725607872009, + "learning_rate": 2.9602466666666667e-05, + "loss": 1.6770217895507813, + "step": 306100 + }, + { + "epoch": 40.82666666666667, + "grad_norm": 0.8187015056610107, + "learning_rate": 2.9595800000000002e-05, + "loss": 1.6784989929199219, + "step": 306200 + }, + { + "epoch": 40.84, + "grad_norm": 0.7722174525260925, + "learning_rate": 2.9589133333333334e-05, + "loss": 1.675601806640625, + "step": 306300 + }, + { + "epoch": 40.85333333333333, + "grad_norm": 0.7953956127166748, + "learning_rate": 2.958246666666667e-05, + "loss": 1.6758319091796876, + "step": 306400 + }, + { + "epoch": 40.86666666666667, + "grad_norm": 0.7955514788627625, + "learning_rate": 2.9575800000000002e-05, + "loss": 1.6785484313964845, + "step": 306500 + }, + { + "epoch": 40.88, + "grad_norm": 0.8043191432952881, + "learning_rate": 2.956913333333333e-05, + "loss": 1.6791413879394532, + "step": 306600 + }, + { + "epoch": 40.89333333333333, + "grad_norm": 0.8214145302772522, + "learning_rate": 2.9562466666666667e-05, + "loss": 1.6822396850585937, + "step": 306700 + }, + { + "epoch": 40.906666666666666, + "grad_norm": 0.7704736590385437, + "learning_rate": 2.95558e-05, + "loss": 1.6834477233886718, + "step": 306800 + }, + { + "epoch": 40.92, + "grad_norm": 0.8391588926315308, + "learning_rate": 2.9549133333333335e-05, + "loss": 1.680575408935547, + "step": 306900 + }, + { + "epoch": 40.93333333333333, + "grad_norm": 0.8125873804092407, + "learning_rate": 2.9542533333333334e-05, + "loss": 1.683341522216797, + "step": 307000 + }, + { + "epoch": 40.946666666666665, + "grad_norm": 0.7934849262237549, + "learning_rate": 2.9535866666666666e-05, + "loss": 1.6847650146484374, + "step": 307100 + }, + { + "epoch": 40.96, + "grad_norm": 0.7980996966362, + "learning_rate": 2.9529200000000002e-05, + "loss": 1.6811965942382812, + "step": 307200 + }, + { + "epoch": 40.973333333333336, + "grad_norm": 0.802399754524231, + "learning_rate": 2.9522533333333334e-05, + "loss": 1.6897067260742187, + "step": 307300 + }, + { + "epoch": 40.986666666666665, + "grad_norm": 0.7816872000694275, + "learning_rate": 2.951586666666667e-05, + "loss": 1.6832794189453124, + "step": 307400 + }, + { + "epoch": 41.0, + "grad_norm": 0.7761144638061523, + "learning_rate": 2.9509200000000002e-05, + "loss": 1.6881805419921876, + "step": 307500 + }, + { + "epoch": 41.013333333333335, + "grad_norm": 0.7764184474945068, + "learning_rate": 2.950253333333333e-05, + "loss": 1.5990695190429687, + "step": 307600 + }, + { + "epoch": 41.026666666666664, + "grad_norm": 0.7701564431190491, + "learning_rate": 2.9495866666666667e-05, + "loss": 1.6041400146484375, + "step": 307700 + }, + { + "epoch": 41.04, + "grad_norm": 0.7842352390289307, + "learning_rate": 2.94892e-05, + "loss": 1.6026243591308593, + "step": 307800 + }, + { + "epoch": 41.053333333333335, + "grad_norm": 0.8398421406745911, + "learning_rate": 2.9482533333333334e-05, + "loss": 1.6042144775390625, + "step": 307900 + }, + { + "epoch": 41.06666666666667, + "grad_norm": 0.7771956920623779, + "learning_rate": 2.9475866666666667e-05, + "loss": 1.6058041381835937, + "step": 308000 + }, + { + "epoch": 41.08, + "grad_norm": 0.7307206392288208, + "learning_rate": 2.9469200000000002e-05, + "loss": 1.6052072143554688, + "step": 308100 + }, + { + "epoch": 41.093333333333334, + "grad_norm": 0.7741842269897461, + "learning_rate": 2.9462533333333338e-05, + "loss": 1.6063827514648437, + "step": 308200 + }, + { + "epoch": 41.10666666666667, + "grad_norm": 0.7664023637771606, + "learning_rate": 2.945586666666667e-05, + "loss": 1.6085012817382813, + "step": 308300 + }, + { + "epoch": 41.12, + "grad_norm": 0.7947597503662109, + "learning_rate": 2.94492e-05, + "loss": 1.6075529479980468, + "step": 308400 + }, + { + "epoch": 41.13333333333333, + "grad_norm": 0.8271000385284424, + "learning_rate": 2.944253333333333e-05, + "loss": 1.611210479736328, + "step": 308500 + }, + { + "epoch": 41.14666666666667, + "grad_norm": 0.8020433783531189, + "learning_rate": 2.9435866666666667e-05, + "loss": 1.613904266357422, + "step": 308600 + }, + { + "epoch": 41.16, + "grad_norm": 0.7996675968170166, + "learning_rate": 2.9429200000000003e-05, + "loss": 1.617792205810547, + "step": 308700 + }, + { + "epoch": 41.17333333333333, + "grad_norm": 0.7714760899543762, + "learning_rate": 2.9422533333333335e-05, + "loss": 1.6162484741210938, + "step": 308800 + }, + { + "epoch": 41.18666666666667, + "grad_norm": 0.7961992621421814, + "learning_rate": 2.941586666666667e-05, + "loss": 1.6189137268066407, + "step": 308900 + }, + { + "epoch": 41.2, + "grad_norm": 0.7719022631645203, + "learning_rate": 2.9409200000000003e-05, + "loss": 1.6185585021972657, + "step": 309000 + }, + { + "epoch": 41.21333333333333, + "grad_norm": 0.7894253730773926, + "learning_rate": 2.940253333333334e-05, + "loss": 1.6159666442871095, + "step": 309100 + }, + { + "epoch": 41.22666666666667, + "grad_norm": 0.8292324542999268, + "learning_rate": 2.9395933333333338e-05, + "loss": 1.6167066955566407, + "step": 309200 + }, + { + "epoch": 41.24, + "grad_norm": 0.7811465859413147, + "learning_rate": 2.938926666666667e-05, + "loss": 1.6240852355957032, + "step": 309300 + }, + { + "epoch": 41.25333333333333, + "grad_norm": 0.7826862931251526, + "learning_rate": 2.93826e-05, + "loss": 1.6248715209960938, + "step": 309400 + }, + { + "epoch": 41.266666666666666, + "grad_norm": 0.7634377479553223, + "learning_rate": 2.9375933333333335e-05, + "loss": 1.6282896423339843, + "step": 309500 + }, + { + "epoch": 41.28, + "grad_norm": 0.7704088091850281, + "learning_rate": 2.9369266666666667e-05, + "loss": 1.6228341674804687, + "step": 309600 + }, + { + "epoch": 41.29333333333334, + "grad_norm": 0.776517391204834, + "learning_rate": 2.9362600000000002e-05, + "loss": 1.6235067749023437, + "step": 309700 + }, + { + "epoch": 41.306666666666665, + "grad_norm": 0.7937943935394287, + "learning_rate": 2.9355933333333335e-05, + "loss": 1.6245884704589844, + "step": 309800 + }, + { + "epoch": 41.32, + "grad_norm": 0.7816150784492493, + "learning_rate": 2.934926666666667e-05, + "loss": 1.6250926208496095, + "step": 309900 + }, + { + "epoch": 41.333333333333336, + "grad_norm": 0.789966344833374, + "learning_rate": 2.9342600000000003e-05, + "loss": 1.6290631103515625, + "step": 310000 + }, + { + "epoch": 41.346666666666664, + "grad_norm": 0.7828590273857117, + "learning_rate": 2.9335933333333338e-05, + "loss": 1.6320005798339843, + "step": 310100 + }, + { + "epoch": 41.36, + "grad_norm": 0.7721713781356812, + "learning_rate": 2.9329266666666667e-05, + "loss": 1.6315066528320312, + "step": 310200 + }, + { + "epoch": 41.373333333333335, + "grad_norm": 0.7936566472053528, + "learning_rate": 2.93226e-05, + "loss": 1.6328521728515626, + "step": 310300 + }, + { + "epoch": 41.38666666666666, + "grad_norm": 0.8090173602104187, + "learning_rate": 2.9315933333333335e-05, + "loss": 1.6380584716796875, + "step": 310400 + }, + { + "epoch": 41.4, + "grad_norm": 0.7758917808532715, + "learning_rate": 2.9309266666666667e-05, + "loss": 1.6311029052734376, + "step": 310500 + }, + { + "epoch": 41.413333333333334, + "grad_norm": 0.7972980737686157, + "learning_rate": 2.9302600000000003e-05, + "loss": 1.6364056396484374, + "step": 310600 + }, + { + "epoch": 41.42666666666667, + "grad_norm": 0.795874834060669, + "learning_rate": 2.9295933333333335e-05, + "loss": 1.636111297607422, + "step": 310700 + }, + { + "epoch": 41.44, + "grad_norm": 0.8138737678527832, + "learning_rate": 2.928926666666667e-05, + "loss": 1.636154022216797, + "step": 310800 + }, + { + "epoch": 41.45333333333333, + "grad_norm": 0.8085600137710571, + "learning_rate": 2.92826e-05, + "loss": 1.6349728393554688, + "step": 310900 + }, + { + "epoch": 41.46666666666667, + "grad_norm": 0.7742388844490051, + "learning_rate": 2.9275933333333332e-05, + "loss": 1.63881591796875, + "step": 311000 + }, + { + "epoch": 41.48, + "grad_norm": 0.7965194582939148, + "learning_rate": 2.9269266666666668e-05, + "loss": 1.6336904907226562, + "step": 311100 + }, + { + "epoch": 41.49333333333333, + "grad_norm": 0.8123679161071777, + "learning_rate": 2.9262666666666667e-05, + "loss": 1.6433746337890625, + "step": 311200 + }, + { + "epoch": 41.50666666666667, + "grad_norm": 0.799063503742218, + "learning_rate": 2.9256e-05, + "loss": 1.6420155334472657, + "step": 311300 + }, + { + "epoch": 41.52, + "grad_norm": 0.7700026631355286, + "learning_rate": 2.9249333333333335e-05, + "loss": 1.6381747436523437, + "step": 311400 + }, + { + "epoch": 41.53333333333333, + "grad_norm": 0.783812940120697, + "learning_rate": 2.9242666666666667e-05, + "loss": 1.6365054321289063, + "step": 311500 + }, + { + "epoch": 41.54666666666667, + "grad_norm": 0.7764769792556763, + "learning_rate": 2.9236000000000003e-05, + "loss": 1.6388162231445313, + "step": 311600 + }, + { + "epoch": 41.56, + "grad_norm": 0.7944959402084351, + "learning_rate": 2.9229333333333335e-05, + "loss": 1.6455184936523437, + "step": 311700 + }, + { + "epoch": 41.57333333333333, + "grad_norm": 0.7800427079200745, + "learning_rate": 2.922266666666667e-05, + "loss": 1.6459024047851563, + "step": 311800 + }, + { + "epoch": 41.586666666666666, + "grad_norm": 0.8255797624588013, + "learning_rate": 2.9216e-05, + "loss": 1.6468026733398438, + "step": 311900 + }, + { + "epoch": 41.6, + "grad_norm": 0.7957680225372314, + "learning_rate": 2.9209333333333332e-05, + "loss": 1.6451564025878906, + "step": 312000 + }, + { + "epoch": 41.61333333333333, + "grad_norm": 0.8067429661750793, + "learning_rate": 2.9202666666666667e-05, + "loss": 1.649429168701172, + "step": 312100 + }, + { + "epoch": 41.626666666666665, + "grad_norm": 0.7828828692436218, + "learning_rate": 2.9196e-05, + "loss": 1.6439801025390626, + "step": 312200 + }, + { + "epoch": 41.64, + "grad_norm": 0.7971386313438416, + "learning_rate": 2.9189333333333335e-05, + "loss": 1.6461314392089843, + "step": 312300 + }, + { + "epoch": 41.653333333333336, + "grad_norm": 0.8209567666053772, + "learning_rate": 2.9182666666666668e-05, + "loss": 1.6470904541015625, + "step": 312400 + }, + { + "epoch": 41.666666666666664, + "grad_norm": 0.8193508386611938, + "learning_rate": 2.9176000000000003e-05, + "loss": 1.6506707763671875, + "step": 312500 + }, + { + "epoch": 41.68, + "grad_norm": 0.8329564929008484, + "learning_rate": 2.916933333333334e-05, + "loss": 1.6542561340332032, + "step": 312600 + }, + { + "epoch": 41.693333333333335, + "grad_norm": 0.7866358160972595, + "learning_rate": 2.9162666666666664e-05, + "loss": 1.6521278381347657, + "step": 312700 + }, + { + "epoch": 41.70666666666666, + "grad_norm": 0.8379685878753662, + "learning_rate": 2.9156e-05, + "loss": 1.6496038818359375, + "step": 312800 + }, + { + "epoch": 41.72, + "grad_norm": 0.7962581515312195, + "learning_rate": 2.9149333333333336e-05, + "loss": 1.6517626953125, + "step": 312900 + }, + { + "epoch": 41.733333333333334, + "grad_norm": 0.7623695135116577, + "learning_rate": 2.9142666666666668e-05, + "loss": 1.6487763977050782, + "step": 313000 + }, + { + "epoch": 41.74666666666667, + "grad_norm": 0.7969656586647034, + "learning_rate": 2.9136000000000004e-05, + "loss": 1.6543055725097657, + "step": 313100 + }, + { + "epoch": 41.76, + "grad_norm": 0.8090587258338928, + "learning_rate": 2.9129333333333336e-05, + "loss": 1.6550767517089844, + "step": 313200 + }, + { + "epoch": 41.77333333333333, + "grad_norm": 0.8005834817886353, + "learning_rate": 2.912266666666667e-05, + "loss": 1.6577835083007812, + "step": 313300 + }, + { + "epoch": 41.78666666666667, + "grad_norm": 0.7874211668968201, + "learning_rate": 2.9116e-05, + "loss": 1.6544857788085938, + "step": 313400 + }, + { + "epoch": 41.8, + "grad_norm": 0.7901095747947693, + "learning_rate": 2.9109400000000003e-05, + "loss": 1.6523391723632812, + "step": 313500 + }, + { + "epoch": 41.81333333333333, + "grad_norm": 0.7718372344970703, + "learning_rate": 2.910273333333334e-05, + "loss": 1.657394256591797, + "step": 313600 + }, + { + "epoch": 41.82666666666667, + "grad_norm": 0.8033204078674316, + "learning_rate": 2.9096066666666667e-05, + "loss": 1.6549183654785156, + "step": 313700 + }, + { + "epoch": 41.84, + "grad_norm": 0.773262619972229, + "learning_rate": 2.90894e-05, + "loss": 1.660445556640625, + "step": 313800 + }, + { + "epoch": 41.85333333333333, + "grad_norm": 0.781597375869751, + "learning_rate": 2.9082733333333335e-05, + "loss": 1.659234619140625, + "step": 313900 + }, + { + "epoch": 41.86666666666667, + "grad_norm": 0.823759138584137, + "learning_rate": 2.9076066666666668e-05, + "loss": 1.6564396667480468, + "step": 314000 + }, + { + "epoch": 41.88, + "grad_norm": 0.7636963725090027, + "learning_rate": 2.9069400000000003e-05, + "loss": 1.65720703125, + "step": 314100 + }, + { + "epoch": 41.89333333333333, + "grad_norm": 0.7856835126876831, + "learning_rate": 2.9062733333333336e-05, + "loss": 1.6625801086425782, + "step": 314200 + }, + { + "epoch": 41.906666666666666, + "grad_norm": 0.7966486215591431, + "learning_rate": 2.905606666666667e-05, + "loss": 1.6632244873046875, + "step": 314300 + }, + { + "epoch": 41.92, + "grad_norm": 0.7848227024078369, + "learning_rate": 2.90494e-05, + "loss": 1.6618414306640625, + "step": 314400 + }, + { + "epoch": 41.93333333333333, + "grad_norm": 0.8092052936553955, + "learning_rate": 2.9042733333333332e-05, + "loss": 1.6637734985351562, + "step": 314500 + }, + { + "epoch": 41.946666666666665, + "grad_norm": 0.8151919841766357, + "learning_rate": 2.9036066666666668e-05, + "loss": 1.6675376892089844, + "step": 314600 + }, + { + "epoch": 41.96, + "grad_norm": 0.7819831371307373, + "learning_rate": 2.90294e-05, + "loss": 1.6665446472167968, + "step": 314700 + }, + { + "epoch": 41.973333333333336, + "grad_norm": 0.7871850728988647, + "learning_rate": 2.9022733333333336e-05, + "loss": 1.66580810546875, + "step": 314800 + }, + { + "epoch": 41.986666666666665, + "grad_norm": 0.8031324744224548, + "learning_rate": 2.9016066666666668e-05, + "loss": 1.6656488037109376, + "step": 314900 + }, + { + "epoch": 42.0, + "grad_norm": 0.8214955925941467, + "learning_rate": 2.9009400000000004e-05, + "loss": 1.6649081420898437, + "step": 315000 + }, + { + "epoch": 42.013333333333335, + "grad_norm": 0.7725866436958313, + "learning_rate": 2.9002733333333336e-05, + "loss": 1.579239501953125, + "step": 315100 + }, + { + "epoch": 42.026666666666664, + "grad_norm": 0.7591557502746582, + "learning_rate": 2.8996066666666665e-05, + "loss": 1.5807839965820312, + "step": 315200 + }, + { + "epoch": 42.04, + "grad_norm": 0.7683588862419128, + "learning_rate": 2.89894e-05, + "loss": 1.584822235107422, + "step": 315300 + }, + { + "epoch": 42.053333333333335, + "grad_norm": 0.7662196159362793, + "learning_rate": 2.8982733333333333e-05, + "loss": 1.5851914978027344, + "step": 315400 + }, + { + "epoch": 42.06666666666667, + "grad_norm": 0.8008477687835693, + "learning_rate": 2.897606666666667e-05, + "loss": 1.5897236633300782, + "step": 315500 + }, + { + "epoch": 42.08, + "grad_norm": 0.8044509291648865, + "learning_rate": 2.8969466666666668e-05, + "loss": 1.5850997924804688, + "step": 315600 + }, + { + "epoch": 42.093333333333334, + "grad_norm": 0.82093745470047, + "learning_rate": 2.89628e-05, + "loss": 1.5886293029785157, + "step": 315700 + }, + { + "epoch": 42.10666666666667, + "grad_norm": 0.7949629426002502, + "learning_rate": 2.8956133333333336e-05, + "loss": 1.5937432861328125, + "step": 315800 + }, + { + "epoch": 42.12, + "grad_norm": 0.7797324657440186, + "learning_rate": 2.8949466666666668e-05, + "loss": 1.5901795959472655, + "step": 315900 + }, + { + "epoch": 42.13333333333333, + "grad_norm": 0.7416061758995056, + "learning_rate": 2.8942800000000003e-05, + "loss": 1.5912071228027345, + "step": 316000 + }, + { + "epoch": 42.14666666666667, + "grad_norm": 0.796648383140564, + "learning_rate": 2.8936133333333336e-05, + "loss": 1.5968006896972655, + "step": 316100 + }, + { + "epoch": 42.16, + "grad_norm": 0.7828426361083984, + "learning_rate": 2.8929466666666665e-05, + "loss": 1.6001832580566406, + "step": 316200 + }, + { + "epoch": 42.17333333333333, + "grad_norm": 0.778724193572998, + "learning_rate": 2.89228e-05, + "loss": 1.5923294067382812, + "step": 316300 + }, + { + "epoch": 42.18666666666667, + "grad_norm": 0.7975136637687683, + "learning_rate": 2.8916133333333333e-05, + "loss": 1.5967176818847657, + "step": 316400 + }, + { + "epoch": 42.2, + "grad_norm": 0.7668192386627197, + "learning_rate": 2.8909466666666668e-05, + "loss": 1.6007345581054688, + "step": 316500 + }, + { + "epoch": 42.21333333333333, + "grad_norm": 0.7750270366668701, + "learning_rate": 2.89028e-05, + "loss": 1.601139373779297, + "step": 316600 + }, + { + "epoch": 42.22666666666667, + "grad_norm": 0.8115882873535156, + "learning_rate": 2.8896133333333336e-05, + "loss": 1.5999020385742186, + "step": 316700 + }, + { + "epoch": 42.24, + "grad_norm": 0.8152367472648621, + "learning_rate": 2.8889466666666672e-05, + "loss": 1.6009846496582032, + "step": 316800 + }, + { + "epoch": 42.25333333333333, + "grad_norm": 0.7818172574043274, + "learning_rate": 2.8882799999999997e-05, + "loss": 1.6060690307617187, + "step": 316900 + }, + { + "epoch": 42.266666666666666, + "grad_norm": 0.7581207156181335, + "learning_rate": 2.8876133333333333e-05, + "loss": 1.61083984375, + "step": 317000 + }, + { + "epoch": 42.28, + "grad_norm": 0.797792911529541, + "learning_rate": 2.8869466666666665e-05, + "loss": 1.6037715148925782, + "step": 317100 + }, + { + "epoch": 42.29333333333334, + "grad_norm": 0.8175429701805115, + "learning_rate": 2.88628e-05, + "loss": 1.6076036071777344, + "step": 317200 + }, + { + "epoch": 42.306666666666665, + "grad_norm": 0.772908627986908, + "learning_rate": 2.8856133333333337e-05, + "loss": 1.6125408935546874, + "step": 317300 + }, + { + "epoch": 42.32, + "grad_norm": 0.7854279279708862, + "learning_rate": 2.884946666666667e-05, + "loss": 1.6088632202148438, + "step": 317400 + }, + { + "epoch": 42.333333333333336, + "grad_norm": 0.7655262351036072, + "learning_rate": 2.8842800000000004e-05, + "loss": 1.610213623046875, + "step": 317500 + }, + { + "epoch": 42.346666666666664, + "grad_norm": 0.7729225754737854, + "learning_rate": 2.8836133333333337e-05, + "loss": 1.6126589965820313, + "step": 317600 + }, + { + "epoch": 42.36, + "grad_norm": 0.7809514403343201, + "learning_rate": 2.8829466666666666e-05, + "loss": 1.6137397766113282, + "step": 317700 + }, + { + "epoch": 42.373333333333335, + "grad_norm": 0.8015533089637756, + "learning_rate": 2.88228e-05, + "loss": 1.6137492370605468, + "step": 317800 + }, + { + "epoch": 42.38666666666666, + "grad_norm": 0.8014168739318848, + "learning_rate": 2.8816133333333334e-05, + "loss": 1.6128648376464845, + "step": 317900 + }, + { + "epoch": 42.4, + "grad_norm": 0.8032166957855225, + "learning_rate": 2.8809533333333333e-05, + "loss": 1.617438507080078, + "step": 318000 + }, + { + "epoch": 42.413333333333334, + "grad_norm": 0.7962257266044617, + "learning_rate": 2.8802866666666668e-05, + "loss": 1.6180424499511719, + "step": 318100 + }, + { + "epoch": 42.42666666666667, + "grad_norm": 0.7772518992424011, + "learning_rate": 2.87962e-05, + "loss": 1.618890838623047, + "step": 318200 + }, + { + "epoch": 42.44, + "grad_norm": 0.8154412508010864, + "learning_rate": 2.8789533333333336e-05, + "loss": 1.6198379516601562, + "step": 318300 + }, + { + "epoch": 42.45333333333333, + "grad_norm": 0.8127172589302063, + "learning_rate": 2.878286666666667e-05, + "loss": 1.620894317626953, + "step": 318400 + }, + { + "epoch": 42.46666666666667, + "grad_norm": 0.7918204069137573, + "learning_rate": 2.8776200000000004e-05, + "loss": 1.620947265625, + "step": 318500 + }, + { + "epoch": 42.48, + "grad_norm": 0.7991171479225159, + "learning_rate": 2.8769533333333336e-05, + "loss": 1.6179556274414062, + "step": 318600 + }, + { + "epoch": 42.49333333333333, + "grad_norm": 0.7768269777297974, + "learning_rate": 2.8762866666666665e-05, + "loss": 1.619527587890625, + "step": 318700 + }, + { + "epoch": 42.50666666666667, + "grad_norm": 0.8096961379051208, + "learning_rate": 2.87562e-05, + "loss": 1.618616943359375, + "step": 318800 + }, + { + "epoch": 42.52, + "grad_norm": 0.7590042352676392, + "learning_rate": 2.8749533333333333e-05, + "loss": 1.6230258178710937, + "step": 318900 + }, + { + "epoch": 42.53333333333333, + "grad_norm": 0.8029301762580872, + "learning_rate": 2.874286666666667e-05, + "loss": 1.6235476684570314, + "step": 319000 + }, + { + "epoch": 42.54666666666667, + "grad_norm": 0.794658899307251, + "learning_rate": 2.87362e-05, + "loss": 1.6211264038085937, + "step": 319100 + }, + { + "epoch": 42.56, + "grad_norm": 0.843220591545105, + "learning_rate": 2.8729533333333337e-05, + "loss": 1.6271005249023438, + "step": 319200 + }, + { + "epoch": 42.57333333333333, + "grad_norm": 0.8237653374671936, + "learning_rate": 2.872286666666667e-05, + "loss": 1.6294674682617187, + "step": 319300 + }, + { + "epoch": 42.586666666666666, + "grad_norm": 0.8025068640708923, + "learning_rate": 2.8716199999999998e-05, + "loss": 1.6239111328125, + "step": 319400 + }, + { + "epoch": 42.6, + "grad_norm": 0.7929406762123108, + "learning_rate": 2.8709533333333334e-05, + "loss": 1.6274394226074218, + "step": 319500 + }, + { + "epoch": 42.61333333333333, + "grad_norm": 0.8021830320358276, + "learning_rate": 2.8702866666666666e-05, + "loss": 1.6309587097167968, + "step": 319600 + }, + { + "epoch": 42.626666666666665, + "grad_norm": 0.8247801661491394, + "learning_rate": 2.86962e-05, + "loss": 1.6306277465820314, + "step": 319700 + }, + { + "epoch": 42.64, + "grad_norm": 0.7925310134887695, + "learning_rate": 2.8689533333333334e-05, + "loss": 1.6312562561035155, + "step": 319800 + }, + { + "epoch": 42.653333333333336, + "grad_norm": 0.7969545722007751, + "learning_rate": 2.868286666666667e-05, + "loss": 1.6337765502929686, + "step": 319900 + }, + { + "epoch": 42.666666666666664, + "grad_norm": 0.8170307278633118, + "learning_rate": 2.86762e-05, + "loss": 1.6321212768554687, + "step": 320000 + }, + { + "epoch": 42.68, + "grad_norm": 0.77912837266922, + "learning_rate": 2.86696e-05, + "loss": 1.6315771484375, + "step": 320100 + }, + { + "epoch": 42.693333333333335, + "grad_norm": 0.788314938545227, + "learning_rate": 2.8662933333333336e-05, + "loss": 1.6329681396484375, + "step": 320200 + }, + { + "epoch": 42.70666666666666, + "grad_norm": 0.8608801960945129, + "learning_rate": 2.865626666666667e-05, + "loss": 1.6328976440429688, + "step": 320300 + }, + { + "epoch": 42.72, + "grad_norm": 0.8006208539009094, + "learning_rate": 2.8649599999999998e-05, + "loss": 1.6340364074707032, + "step": 320400 + }, + { + "epoch": 42.733333333333334, + "grad_norm": 0.7970700263977051, + "learning_rate": 2.8642933333333333e-05, + "loss": 1.633923797607422, + "step": 320500 + }, + { + "epoch": 42.74666666666667, + "grad_norm": 0.7704428434371948, + "learning_rate": 2.8636266666666665e-05, + "loss": 1.6360755920410157, + "step": 320600 + }, + { + "epoch": 42.76, + "grad_norm": 0.8283227682113647, + "learning_rate": 2.86296e-05, + "loss": 1.637872772216797, + "step": 320700 + }, + { + "epoch": 42.77333333333333, + "grad_norm": 0.851524293422699, + "learning_rate": 2.8622933333333333e-05, + "loss": 1.6359402465820312, + "step": 320800 + }, + { + "epoch": 42.78666666666667, + "grad_norm": 0.7893416881561279, + "learning_rate": 2.861626666666667e-05, + "loss": 1.6323648071289063, + "step": 320900 + }, + { + "epoch": 42.8, + "grad_norm": 0.8033201098442078, + "learning_rate": 2.8609600000000005e-05, + "loss": 1.6443894958496095, + "step": 321000 + }, + { + "epoch": 42.81333333333333, + "grad_norm": 0.8074483275413513, + "learning_rate": 2.8602933333333337e-05, + "loss": 1.639532470703125, + "step": 321100 + }, + { + "epoch": 42.82666666666667, + "grad_norm": 0.7866470217704773, + "learning_rate": 2.8596266666666666e-05, + "loss": 1.64190673828125, + "step": 321200 + }, + { + "epoch": 42.84, + "grad_norm": 0.8023852109909058, + "learning_rate": 2.8589599999999998e-05, + "loss": 1.638301239013672, + "step": 321300 + }, + { + "epoch": 42.85333333333333, + "grad_norm": 0.8220396637916565, + "learning_rate": 2.8582933333333334e-05, + "loss": 1.6426438903808593, + "step": 321400 + }, + { + "epoch": 42.86666666666667, + "grad_norm": 0.8232139945030212, + "learning_rate": 2.857626666666667e-05, + "loss": 1.6402984619140626, + "step": 321500 + }, + { + "epoch": 42.88, + "grad_norm": 0.8309381604194641, + "learning_rate": 2.8569600000000002e-05, + "loss": 1.636634521484375, + "step": 321600 + }, + { + "epoch": 42.89333333333333, + "grad_norm": 0.8182979226112366, + "learning_rate": 2.8562933333333337e-05, + "loss": 1.6453871154785156, + "step": 321700 + }, + { + "epoch": 42.906666666666666, + "grad_norm": 0.8423646688461304, + "learning_rate": 2.855626666666667e-05, + "loss": 1.6444189453125, + "step": 321800 + }, + { + "epoch": 42.92, + "grad_norm": 0.8091830015182495, + "learning_rate": 2.8549600000000005e-05, + "loss": 1.6435879516601561, + "step": 321900 + }, + { + "epoch": 42.93333333333333, + "grad_norm": 0.8040499091148376, + "learning_rate": 2.8542933333333334e-05, + "loss": 1.6471051025390624, + "step": 322000 + }, + { + "epoch": 42.946666666666665, + "grad_norm": 0.8056833148002625, + "learning_rate": 2.8536266666666666e-05, + "loss": 1.6470870971679688, + "step": 322100 + }, + { + "epoch": 42.96, + "grad_norm": 0.8252720832824707, + "learning_rate": 2.8529600000000002e-05, + "loss": 1.647276611328125, + "step": 322200 + }, + { + "epoch": 42.973333333333336, + "grad_norm": 0.7846107482910156, + "learning_rate": 2.8522933333333334e-05, + "loss": 1.6448028564453125, + "step": 322300 + }, + { + "epoch": 42.986666666666665, + "grad_norm": 0.8476292490959167, + "learning_rate": 2.851626666666667e-05, + "loss": 1.6520864868164062, + "step": 322400 + }, + { + "epoch": 43.0, + "grad_norm": 0.8160085678100586, + "learning_rate": 2.850966666666667e-05, + "loss": 1.6483326721191407, + "step": 322500 + }, + { + "epoch": 43.013333333333335, + "grad_norm": 0.8134644627571106, + "learning_rate": 2.8503e-05, + "loss": 1.564569854736328, + "step": 322600 + }, + { + "epoch": 43.026666666666664, + "grad_norm": 0.7962319850921631, + "learning_rate": 2.8496333333333337e-05, + "loss": 1.5676768493652344, + "step": 322700 + }, + { + "epoch": 43.04, + "grad_norm": 0.7382012009620667, + "learning_rate": 2.848966666666667e-05, + "loss": 1.566510467529297, + "step": 322800 + }, + { + "epoch": 43.053333333333335, + "grad_norm": 0.7968773245811462, + "learning_rate": 2.8483000000000005e-05, + "loss": 1.5708531188964843, + "step": 322900 + }, + { + "epoch": 43.06666666666667, + "grad_norm": 0.7553964853286743, + "learning_rate": 2.8476333333333334e-05, + "loss": 1.5697604370117189, + "step": 323000 + }, + { + "epoch": 43.08, + "grad_norm": 0.7678956389427185, + "learning_rate": 2.8469666666666666e-05, + "loss": 1.5742947387695312, + "step": 323100 + }, + { + "epoch": 43.093333333333334, + "grad_norm": 0.80665522813797, + "learning_rate": 2.8463000000000002e-05, + "loss": 1.5716915893554688, + "step": 323200 + }, + { + "epoch": 43.10666666666667, + "grad_norm": 0.8582669496536255, + "learning_rate": 2.8456333333333334e-05, + "loss": 1.5759283447265624, + "step": 323300 + }, + { + "epoch": 43.12, + "grad_norm": 0.8015368580818176, + "learning_rate": 2.844966666666667e-05, + "loss": 1.5717546081542968, + "step": 323400 + }, + { + "epoch": 43.13333333333333, + "grad_norm": 0.7866412997245789, + "learning_rate": 2.8443000000000002e-05, + "loss": 1.5720692443847657, + "step": 323500 + }, + { + "epoch": 43.14666666666667, + "grad_norm": 0.7602863311767578, + "learning_rate": 2.8436333333333338e-05, + "loss": 1.5750347900390624, + "step": 323600 + }, + { + "epoch": 43.16, + "grad_norm": 0.7865772843360901, + "learning_rate": 2.8429666666666666e-05, + "loss": 1.578832550048828, + "step": 323700 + }, + { + "epoch": 43.17333333333333, + "grad_norm": 0.7900835871696472, + "learning_rate": 2.8423e-05, + "loss": 1.576087188720703, + "step": 323800 + }, + { + "epoch": 43.18666666666667, + "grad_norm": 0.7576287984848022, + "learning_rate": 2.8416333333333334e-05, + "loss": 1.582108917236328, + "step": 323900 + }, + { + "epoch": 43.2, + "grad_norm": 0.8061697483062744, + "learning_rate": 2.8409666666666667e-05, + "loss": 1.5846551513671876, + "step": 324000 + }, + { + "epoch": 43.21333333333333, + "grad_norm": 0.8036941289901733, + "learning_rate": 2.8403000000000002e-05, + "loss": 1.5829280090332032, + "step": 324100 + }, + { + "epoch": 43.22666666666667, + "grad_norm": 0.81672602891922, + "learning_rate": 2.8396333333333335e-05, + "loss": 1.5833650207519532, + "step": 324200 + }, + { + "epoch": 43.24, + "grad_norm": 0.7637189626693726, + "learning_rate": 2.838966666666667e-05, + "loss": 1.5832330322265624, + "step": 324300 + }, + { + "epoch": 43.25333333333333, + "grad_norm": 0.810999870300293, + "learning_rate": 2.8383000000000003e-05, + "loss": 1.585732421875, + "step": 324400 + }, + { + "epoch": 43.266666666666666, + "grad_norm": 0.7959699034690857, + "learning_rate": 2.837633333333333e-05, + "loss": 1.5903799438476562, + "step": 324500 + }, + { + "epoch": 43.28, + "grad_norm": 0.8153569102287292, + "learning_rate": 2.8369666666666667e-05, + "loss": 1.5871414184570312, + "step": 324600 + }, + { + "epoch": 43.29333333333334, + "grad_norm": 0.7914409637451172, + "learning_rate": 2.8363066666666666e-05, + "loss": 1.5875323486328126, + "step": 324700 + }, + { + "epoch": 43.306666666666665, + "grad_norm": 0.7989243268966675, + "learning_rate": 2.83564e-05, + "loss": 1.5916000366210938, + "step": 324800 + }, + { + "epoch": 43.32, + "grad_norm": 0.7825499773025513, + "learning_rate": 2.8349733333333334e-05, + "loss": 1.5893446350097655, + "step": 324900 + }, + { + "epoch": 43.333333333333336, + "grad_norm": 0.8575960993766785, + "learning_rate": 2.8343066666666666e-05, + "loss": 1.5977841186523438, + "step": 325000 + }, + { + "epoch": 43.346666666666664, + "grad_norm": 0.8244292736053467, + "learning_rate": 2.8336400000000002e-05, + "loss": 1.601702880859375, + "step": 325100 + }, + { + "epoch": 43.36, + "grad_norm": 0.7933399677276611, + "learning_rate": 2.8329733333333334e-05, + "loss": 1.5982562255859376, + "step": 325200 + }, + { + "epoch": 43.373333333333335, + "grad_norm": 0.767894446849823, + "learning_rate": 2.832306666666667e-05, + "loss": 1.5982928466796875, + "step": 325300 + }, + { + "epoch": 43.38666666666666, + "grad_norm": 0.7718991041183472, + "learning_rate": 2.8316400000000006e-05, + "loss": 1.595538330078125, + "step": 325400 + }, + { + "epoch": 43.4, + "grad_norm": 0.8214613795280457, + "learning_rate": 2.830973333333333e-05, + "loss": 1.5974700927734375, + "step": 325500 + }, + { + "epoch": 43.413333333333334, + "grad_norm": 0.7975192666053772, + "learning_rate": 2.8303066666666667e-05, + "loss": 1.5963027954101563, + "step": 325600 + }, + { + "epoch": 43.42666666666667, + "grad_norm": 0.8252496123313904, + "learning_rate": 2.8296400000000002e-05, + "loss": 1.602006072998047, + "step": 325700 + }, + { + "epoch": 43.44, + "grad_norm": 0.7980925440788269, + "learning_rate": 2.8289733333333335e-05, + "loss": 1.5992507934570312, + "step": 325800 + }, + { + "epoch": 43.45333333333333, + "grad_norm": 0.8060539960861206, + "learning_rate": 2.828306666666667e-05, + "loss": 1.6028526306152344, + "step": 325900 + }, + { + "epoch": 43.46666666666667, + "grad_norm": 0.8016360998153687, + "learning_rate": 2.8276400000000003e-05, + "loss": 1.6021473693847657, + "step": 326000 + }, + { + "epoch": 43.48, + "grad_norm": 0.8183965086936951, + "learning_rate": 2.8269733333333338e-05, + "loss": 1.604202117919922, + "step": 326100 + }, + { + "epoch": 43.49333333333333, + "grad_norm": 0.8167826533317566, + "learning_rate": 2.8263066666666667e-05, + "loss": 1.6037716674804687, + "step": 326200 + }, + { + "epoch": 43.50666666666667, + "grad_norm": 0.822792649269104, + "learning_rate": 2.82564e-05, + "loss": 1.6101824951171875, + "step": 326300 + }, + { + "epoch": 43.52, + "grad_norm": 0.8114305734634399, + "learning_rate": 2.8249733333333335e-05, + "loss": 1.6087193298339844, + "step": 326400 + }, + { + "epoch": 43.53333333333333, + "grad_norm": 0.7822854518890381, + "learning_rate": 2.8243066666666667e-05, + "loss": 1.6054570007324218, + "step": 326500 + }, + { + "epoch": 43.54666666666667, + "grad_norm": 0.8089674115180969, + "learning_rate": 2.8236400000000003e-05, + "loss": 1.6116357421875, + "step": 326600 + }, + { + "epoch": 43.56, + "grad_norm": 0.8371312618255615, + "learning_rate": 2.8229733333333335e-05, + "loss": 1.6092622375488281, + "step": 326700 + }, + { + "epoch": 43.57333333333333, + "grad_norm": 0.8427196145057678, + "learning_rate": 2.822306666666667e-05, + "loss": 1.6071795654296874, + "step": 326800 + }, + { + "epoch": 43.586666666666666, + "grad_norm": 0.8295238614082336, + "learning_rate": 2.8216400000000003e-05, + "loss": 1.6127923583984376, + "step": 326900 + }, + { + "epoch": 43.6, + "grad_norm": 0.7599214315414429, + "learning_rate": 2.8209733333333332e-05, + "loss": 1.6075257873535156, + "step": 327000 + }, + { + "epoch": 43.61333333333333, + "grad_norm": 0.8173493146896362, + "learning_rate": 2.8203133333333338e-05, + "loss": 1.614122314453125, + "step": 327100 + }, + { + "epoch": 43.626666666666665, + "grad_norm": 0.8332886695861816, + "learning_rate": 2.8196466666666667e-05, + "loss": 1.6084408569335937, + "step": 327200 + }, + { + "epoch": 43.64, + "grad_norm": 0.7986454367637634, + "learning_rate": 2.81898e-05, + "loss": 1.611384735107422, + "step": 327300 + }, + { + "epoch": 43.653333333333336, + "grad_norm": 0.810438334941864, + "learning_rate": 2.8183133333333335e-05, + "loss": 1.6099681091308593, + "step": 327400 + }, + { + "epoch": 43.666666666666664, + "grad_norm": 0.8122630715370178, + "learning_rate": 2.8176466666666667e-05, + "loss": 1.6159297180175782, + "step": 327500 + }, + { + "epoch": 43.68, + "grad_norm": 0.8273375630378723, + "learning_rate": 2.8169800000000003e-05, + "loss": 1.61582275390625, + "step": 327600 + }, + { + "epoch": 43.693333333333335, + "grad_norm": 0.8308714628219604, + "learning_rate": 2.8163133333333335e-05, + "loss": 1.6199285888671875, + "step": 327700 + }, + { + "epoch": 43.70666666666666, + "grad_norm": 0.8172910809516907, + "learning_rate": 2.815646666666667e-05, + "loss": 1.6155218505859374, + "step": 327800 + }, + { + "epoch": 43.72, + "grad_norm": 0.8160513639450073, + "learning_rate": 2.8149800000000003e-05, + "loss": 1.6149066162109376, + "step": 327900 + }, + { + "epoch": 43.733333333333334, + "grad_norm": 0.8249967098236084, + "learning_rate": 2.814313333333333e-05, + "loss": 1.6162269592285157, + "step": 328000 + }, + { + "epoch": 43.74666666666667, + "grad_norm": 0.8377850651741028, + "learning_rate": 2.8136466666666667e-05, + "loss": 1.618191680908203, + "step": 328100 + }, + { + "epoch": 43.76, + "grad_norm": 0.8137295842170715, + "learning_rate": 2.81298e-05, + "loss": 1.6187442016601563, + "step": 328200 + }, + { + "epoch": 43.77333333333333, + "grad_norm": 0.837970495223999, + "learning_rate": 2.8123133333333335e-05, + "loss": 1.6166807556152343, + "step": 328300 + }, + { + "epoch": 43.78666666666667, + "grad_norm": 0.8243003487586975, + "learning_rate": 2.8116466666666668e-05, + "loss": 1.616520233154297, + "step": 328400 + }, + { + "epoch": 43.8, + "grad_norm": 0.803848147392273, + "learning_rate": 2.8109800000000003e-05, + "loss": 1.6198391723632812, + "step": 328500 + }, + { + "epoch": 43.81333333333333, + "grad_norm": 0.833913266658783, + "learning_rate": 2.8103133333333335e-05, + "loss": 1.6213204956054688, + "step": 328600 + }, + { + "epoch": 43.82666666666667, + "grad_norm": 0.8218970894813538, + "learning_rate": 2.8096466666666664e-05, + "loss": 1.6247633361816407, + "step": 328700 + }, + { + "epoch": 43.84, + "grad_norm": 0.7986996173858643, + "learning_rate": 2.80898e-05, + "loss": 1.6211305236816407, + "step": 328800 + }, + { + "epoch": 43.85333333333333, + "grad_norm": 0.8100335597991943, + "learning_rate": 2.8083133333333332e-05, + "loss": 1.6219183349609374, + "step": 328900 + }, + { + "epoch": 43.86666666666667, + "grad_norm": 0.8108803033828735, + "learning_rate": 2.8076466666666668e-05, + "loss": 1.625777587890625, + "step": 329000 + }, + { + "epoch": 43.88, + "grad_norm": 0.8235127329826355, + "learning_rate": 2.80698e-05, + "loss": 1.6242713928222656, + "step": 329100 + }, + { + "epoch": 43.89333333333333, + "grad_norm": 0.8156707882881165, + "learning_rate": 2.8063133333333336e-05, + "loss": 1.6232484436035157, + "step": 329200 + }, + { + "epoch": 43.906666666666666, + "grad_norm": 0.8078377842903137, + "learning_rate": 2.805646666666667e-05, + "loss": 1.628054656982422, + "step": 329300 + }, + { + "epoch": 43.92, + "grad_norm": 0.8015416264533997, + "learning_rate": 2.8049866666666667e-05, + "loss": 1.6264244079589845, + "step": 329400 + }, + { + "epoch": 43.93333333333333, + "grad_norm": 0.8207682967185974, + "learning_rate": 2.8043200000000003e-05, + "loss": 1.6302552795410157, + "step": 329500 + }, + { + "epoch": 43.946666666666665, + "grad_norm": 0.8398280739784241, + "learning_rate": 2.803653333333334e-05, + "loss": 1.6280979919433594, + "step": 329600 + }, + { + "epoch": 43.96, + "grad_norm": 0.8197426199913025, + "learning_rate": 2.8029866666666664e-05, + "loss": 1.628609619140625, + "step": 329700 + }, + { + "epoch": 43.973333333333336, + "grad_norm": 0.8169100284576416, + "learning_rate": 2.80232e-05, + "loss": 1.6312359619140624, + "step": 329800 + }, + { + "epoch": 43.986666666666665, + "grad_norm": 0.83058100938797, + "learning_rate": 2.8016533333333332e-05, + "loss": 1.6318269348144532, + "step": 329900 + }, + { + "epoch": 44.0, + "grad_norm": 0.8323699831962585, + "learning_rate": 2.8009866666666668e-05, + "loss": 1.630924072265625, + "step": 330000 + }, + { + "epoch": 44.013333333333335, + "grad_norm": 0.7513566613197327, + "learning_rate": 2.8003200000000003e-05, + "loss": 1.5481965637207031, + "step": 330100 + }, + { + "epoch": 44.026666666666664, + "grad_norm": 0.795397162437439, + "learning_rate": 2.7996533333333335e-05, + "loss": 1.548214874267578, + "step": 330200 + }, + { + "epoch": 44.04, + "grad_norm": 0.8049753904342651, + "learning_rate": 2.798986666666667e-05, + "loss": 1.5531326293945313, + "step": 330300 + }, + { + "epoch": 44.053333333333335, + "grad_norm": 0.8120512366294861, + "learning_rate": 2.7983200000000003e-05, + "loss": 1.5544256591796874, + "step": 330400 + }, + { + "epoch": 44.06666666666667, + "grad_norm": 0.7974734306335449, + "learning_rate": 2.7976533333333332e-05, + "loss": 1.5533895874023438, + "step": 330500 + }, + { + "epoch": 44.08, + "grad_norm": 0.7629339098930359, + "learning_rate": 2.7969866666666668e-05, + "loss": 1.5582643127441407, + "step": 330600 + }, + { + "epoch": 44.093333333333334, + "grad_norm": 0.8154823184013367, + "learning_rate": 2.79632e-05, + "loss": 1.5581031799316407, + "step": 330700 + }, + { + "epoch": 44.10666666666667, + "grad_norm": 0.7857486605644226, + "learning_rate": 2.7956533333333336e-05, + "loss": 1.5564183044433593, + "step": 330800 + }, + { + "epoch": 44.12, + "grad_norm": 0.787510097026825, + "learning_rate": 2.7949866666666668e-05, + "loss": 1.5604660034179687, + "step": 330900 + }, + { + "epoch": 44.13333333333333, + "grad_norm": 0.8060212135314941, + "learning_rate": 2.7943200000000004e-05, + "loss": 1.5654124450683593, + "step": 331000 + }, + { + "epoch": 44.14666666666667, + "grad_norm": 0.7761242389678955, + "learning_rate": 2.7936533333333336e-05, + "loss": 1.5596726989746095, + "step": 331100 + }, + { + "epoch": 44.16, + "grad_norm": 0.8251379132270813, + "learning_rate": 2.7929866666666665e-05, + "loss": 1.5614840698242187, + "step": 331200 + }, + { + "epoch": 44.17333333333333, + "grad_norm": 0.7911105155944824, + "learning_rate": 2.79232e-05, + "loss": 1.56426025390625, + "step": 331300 + }, + { + "epoch": 44.18666666666667, + "grad_norm": 0.8405753374099731, + "learning_rate": 2.7916533333333333e-05, + "loss": 1.5673910522460937, + "step": 331400 + }, + { + "epoch": 44.2, + "grad_norm": 0.8145385384559631, + "learning_rate": 2.790986666666667e-05, + "loss": 1.5684516906738282, + "step": 331500 + }, + { + "epoch": 44.21333333333333, + "grad_norm": 0.773007333278656, + "learning_rate": 2.7903266666666668e-05, + "loss": 1.5602330017089843, + "step": 331600 + }, + { + "epoch": 44.22666666666667, + "grad_norm": 0.7946937680244446, + "learning_rate": 2.78966e-05, + "loss": 1.5710047912597656, + "step": 331700 + }, + { + "epoch": 44.24, + "grad_norm": 0.7660664916038513, + "learning_rate": 2.7889933333333336e-05, + "loss": 1.5709490966796875, + "step": 331800 + }, + { + "epoch": 44.25333333333333, + "grad_norm": 0.8005920052528381, + "learning_rate": 2.7883266666666668e-05, + "loss": 1.574346160888672, + "step": 331900 + }, + { + "epoch": 44.266666666666666, + "grad_norm": 0.7568239569664001, + "learning_rate": 2.7876600000000003e-05, + "loss": 1.5710443115234376, + "step": 332000 + }, + { + "epoch": 44.28, + "grad_norm": 0.7837048172950745, + "learning_rate": 2.7869933333333336e-05, + "loss": 1.5691023254394532, + "step": 332100 + }, + { + "epoch": 44.29333333333334, + "grad_norm": 0.8391625881195068, + "learning_rate": 2.7863266666666665e-05, + "loss": 1.5703250122070314, + "step": 332200 + }, + { + "epoch": 44.306666666666665, + "grad_norm": 0.8348113298416138, + "learning_rate": 2.78566e-05, + "loss": 1.5742678833007813, + "step": 332300 + }, + { + "epoch": 44.32, + "grad_norm": 0.8065680861473083, + "learning_rate": 2.7849933333333333e-05, + "loss": 1.574197998046875, + "step": 332400 + }, + { + "epoch": 44.333333333333336, + "grad_norm": 0.810249388217926, + "learning_rate": 2.7843266666666668e-05, + "loss": 1.5787997436523438, + "step": 332500 + }, + { + "epoch": 44.346666666666664, + "grad_norm": 0.8214126229286194, + "learning_rate": 2.78366e-05, + "loss": 1.5753494262695313, + "step": 332600 + }, + { + "epoch": 44.36, + "grad_norm": 0.7763717770576477, + "learning_rate": 2.7829933333333336e-05, + "loss": 1.5762429809570313, + "step": 332700 + }, + { + "epoch": 44.373333333333335, + "grad_norm": 0.8266735076904297, + "learning_rate": 2.782326666666667e-05, + "loss": 1.5780609130859375, + "step": 332800 + }, + { + "epoch": 44.38666666666666, + "grad_norm": 0.7696077823638916, + "learning_rate": 2.7816600000000004e-05, + "loss": 1.5806687927246095, + "step": 332900 + }, + { + "epoch": 44.4, + "grad_norm": 0.8544163703918457, + "learning_rate": 2.7809933333333333e-05, + "loss": 1.5851622009277344, + "step": 333000 + }, + { + "epoch": 44.413333333333334, + "grad_norm": 0.8484505414962769, + "learning_rate": 2.7803266666666665e-05, + "loss": 1.581590576171875, + "step": 333100 + }, + { + "epoch": 44.42666666666667, + "grad_norm": 0.8385995626449585, + "learning_rate": 2.77966e-05, + "loss": 1.5861528015136719, + "step": 333200 + }, + { + "epoch": 44.44, + "grad_norm": 0.8071863651275635, + "learning_rate": 2.7789933333333333e-05, + "loss": 1.5843661499023438, + "step": 333300 + }, + { + "epoch": 44.45333333333333, + "grad_norm": 0.7563880085945129, + "learning_rate": 2.778326666666667e-05, + "loss": 1.5832810974121094, + "step": 333400 + }, + { + "epoch": 44.46666666666667, + "grad_norm": 0.8372814655303955, + "learning_rate": 2.77766e-05, + "loss": 1.5854434204101562, + "step": 333500 + }, + { + "epoch": 44.48, + "grad_norm": 0.8299968838691711, + "learning_rate": 2.777e-05, + "loss": 1.5830865478515626, + "step": 333600 + }, + { + "epoch": 44.49333333333333, + "grad_norm": 0.8309788107872009, + "learning_rate": 2.7763333333333336e-05, + "loss": 1.5840238952636718, + "step": 333700 + }, + { + "epoch": 44.50666666666667, + "grad_norm": 0.8194689154624939, + "learning_rate": 2.7756666666666668e-05, + "loss": 1.5837715148925782, + "step": 333800 + }, + { + "epoch": 44.52, + "grad_norm": 0.8060626983642578, + "learning_rate": 2.7750000000000004e-05, + "loss": 1.5884098815917969, + "step": 333900 + }, + { + "epoch": 44.53333333333333, + "grad_norm": 0.8061336278915405, + "learning_rate": 2.7743333333333333e-05, + "loss": 1.588507080078125, + "step": 334000 + }, + { + "epoch": 44.54666666666667, + "grad_norm": 0.8367504477500916, + "learning_rate": 2.7736666666666665e-05, + "loss": 1.5918386840820313, + "step": 334100 + }, + { + "epoch": 44.56, + "grad_norm": 0.7728124260902405, + "learning_rate": 2.773e-05, + "loss": 1.5909431457519532, + "step": 334200 + }, + { + "epoch": 44.57333333333333, + "grad_norm": 0.8325085639953613, + "learning_rate": 2.7723333333333336e-05, + "loss": 1.592117156982422, + "step": 334300 + }, + { + "epoch": 44.586666666666666, + "grad_norm": 0.8074480295181274, + "learning_rate": 2.771666666666667e-05, + "loss": 1.5892124938964844, + "step": 334400 + }, + { + "epoch": 44.6, + "grad_norm": 0.8252527117729187, + "learning_rate": 2.7710000000000004e-05, + "loss": 1.5915934753417968, + "step": 334500 + }, + { + "epoch": 44.61333333333333, + "grad_norm": 0.8227205276489258, + "learning_rate": 2.7703333333333336e-05, + "loss": 1.5954025268554688, + "step": 334600 + }, + { + "epoch": 44.626666666666665, + "grad_norm": 0.7897677421569824, + "learning_rate": 2.7696666666666672e-05, + "loss": 1.595858154296875, + "step": 334700 + }, + { + "epoch": 44.64, + "grad_norm": 0.8313090801239014, + "learning_rate": 2.769e-05, + "loss": 1.5937057495117188, + "step": 334800 + }, + { + "epoch": 44.653333333333336, + "grad_norm": 0.8491702675819397, + "learning_rate": 2.7683333333333333e-05, + "loss": 1.5937522888183593, + "step": 334900 + }, + { + "epoch": 44.666666666666664, + "grad_norm": 0.8034929633140564, + "learning_rate": 2.767666666666667e-05, + "loss": 1.5955474853515625, + "step": 335000 + }, + { + "epoch": 44.68, + "grad_norm": 0.8023072481155396, + "learning_rate": 2.767e-05, + "loss": 1.5998284912109375, + "step": 335100 + }, + { + "epoch": 44.693333333333335, + "grad_norm": 0.8060296177864075, + "learning_rate": 2.7663333333333337e-05, + "loss": 1.5983045959472657, + "step": 335200 + }, + { + "epoch": 44.70666666666666, + "grad_norm": 0.8240456581115723, + "learning_rate": 2.765666666666667e-05, + "loss": 1.6016310119628907, + "step": 335300 + }, + { + "epoch": 44.72, + "grad_norm": 0.8086797595024109, + "learning_rate": 2.7650000000000005e-05, + "loss": 1.5979426574707032, + "step": 335400 + }, + { + "epoch": 44.733333333333334, + "grad_norm": 0.868865966796875, + "learning_rate": 2.7643333333333334e-05, + "loss": 1.6031364440917968, + "step": 335500 + }, + { + "epoch": 44.74666666666667, + "grad_norm": 0.8430706858634949, + "learning_rate": 2.7636733333333336e-05, + "loss": 1.599954833984375, + "step": 335600 + }, + { + "epoch": 44.76, + "grad_norm": 0.8253472447395325, + "learning_rate": 2.763006666666667e-05, + "loss": 1.5997967529296875, + "step": 335700 + }, + { + "epoch": 44.77333333333333, + "grad_norm": 0.8024996519088745, + "learning_rate": 2.76234e-05, + "loss": 1.603931884765625, + "step": 335800 + }, + { + "epoch": 44.78666666666667, + "grad_norm": 0.8097237348556519, + "learning_rate": 2.7616733333333333e-05, + "loss": 1.60475830078125, + "step": 335900 + }, + { + "epoch": 44.8, + "grad_norm": 0.7891868352890015, + "learning_rate": 2.761006666666667e-05, + "loss": 1.5993539428710937, + "step": 336000 + }, + { + "epoch": 44.81333333333333, + "grad_norm": 0.7946909070014954, + "learning_rate": 2.76034e-05, + "loss": 1.608636932373047, + "step": 336100 + }, + { + "epoch": 44.82666666666667, + "grad_norm": 0.8104386329650879, + "learning_rate": 2.7596733333333336e-05, + "loss": 1.6042922973632812, + "step": 336200 + }, + { + "epoch": 44.84, + "grad_norm": 0.8731896281242371, + "learning_rate": 2.759006666666667e-05, + "loss": 1.6097525024414063, + "step": 336300 + }, + { + "epoch": 44.85333333333333, + "grad_norm": 0.8121789693832397, + "learning_rate": 2.7583400000000004e-05, + "loss": 1.606430206298828, + "step": 336400 + }, + { + "epoch": 44.86666666666667, + "grad_norm": 0.8330267667770386, + "learning_rate": 2.7576733333333333e-05, + "loss": 1.6087510681152344, + "step": 336500 + }, + { + "epoch": 44.88, + "grad_norm": 0.852932333946228, + "learning_rate": 2.7570066666666665e-05, + "loss": 1.6065789794921874, + "step": 336600 + }, + { + "epoch": 44.89333333333333, + "grad_norm": 0.8132789134979248, + "learning_rate": 2.75634e-05, + "loss": 1.6074699401855468, + "step": 336700 + }, + { + "epoch": 44.906666666666666, + "grad_norm": 0.8489792943000793, + "learning_rate": 2.7556733333333333e-05, + "loss": 1.606990509033203, + "step": 336800 + }, + { + "epoch": 44.92, + "grad_norm": 0.8278707265853882, + "learning_rate": 2.755006666666667e-05, + "loss": 1.6092149353027343, + "step": 336900 + }, + { + "epoch": 44.93333333333333, + "grad_norm": 0.8030561804771423, + "learning_rate": 2.75434e-05, + "loss": 1.6118333435058594, + "step": 337000 + }, + { + "epoch": 44.946666666666665, + "grad_norm": 0.8444882035255432, + "learning_rate": 2.7536733333333337e-05, + "loss": 1.61545166015625, + "step": 337100 + }, + { + "epoch": 44.96, + "grad_norm": 0.7839025259017944, + "learning_rate": 2.753006666666667e-05, + "loss": 1.6124861145019531, + "step": 337200 + }, + { + "epoch": 44.973333333333336, + "grad_norm": 0.8304545283317566, + "learning_rate": 2.7523399999999998e-05, + "loss": 1.6095152282714844, + "step": 337300 + }, + { + "epoch": 44.986666666666665, + "grad_norm": 0.822806179523468, + "learning_rate": 2.7516733333333334e-05, + "loss": 1.6171923828125, + "step": 337400 + }, + { + "epoch": 45.0, + "grad_norm": 0.8254655003547668, + "learning_rate": 2.7510066666666666e-05, + "loss": 1.61357666015625, + "step": 337500 + }, + { + "epoch": 45.013333333333335, + "grad_norm": 0.75385981798172, + "learning_rate": 2.7503466666666665e-05, + "loss": 1.5345475769042969, + "step": 337600 + }, + { + "epoch": 45.026666666666664, + "grad_norm": 0.7878371477127075, + "learning_rate": 2.74968e-05, + "loss": 1.5335455322265625, + "step": 337700 + }, + { + "epoch": 45.04, + "grad_norm": 0.7791154384613037, + "learning_rate": 2.7490133333333333e-05, + "loss": 1.5394093322753906, + "step": 337800 + }, + { + "epoch": 45.053333333333335, + "grad_norm": 0.8024111390113831, + "learning_rate": 2.748346666666667e-05, + "loss": 1.5331953430175782, + "step": 337900 + }, + { + "epoch": 45.06666666666667, + "grad_norm": 0.8430346846580505, + "learning_rate": 2.74768e-05, + "loss": 1.5368072509765625, + "step": 338000 + }, + { + "epoch": 45.08, + "grad_norm": 0.8052778840065002, + "learning_rate": 2.7470133333333337e-05, + "loss": 1.546075439453125, + "step": 338100 + }, + { + "epoch": 45.093333333333334, + "grad_norm": 0.7933223843574524, + "learning_rate": 2.7463466666666672e-05, + "loss": 1.5412501525878906, + "step": 338200 + }, + { + "epoch": 45.10666666666667, + "grad_norm": 0.801228940486908, + "learning_rate": 2.7456799999999998e-05, + "loss": 1.539934844970703, + "step": 338300 + }, + { + "epoch": 45.12, + "grad_norm": 0.7986882328987122, + "learning_rate": 2.7450133333333333e-05, + "loss": 1.5405552673339844, + "step": 338400 + }, + { + "epoch": 45.13333333333333, + "grad_norm": 0.8069292306900024, + "learning_rate": 2.7443466666666666e-05, + "loss": 1.545841064453125, + "step": 338500 + }, + { + "epoch": 45.14666666666667, + "grad_norm": 0.7927032113075256, + "learning_rate": 2.74368e-05, + "loss": 1.5462718200683594, + "step": 338600 + }, + { + "epoch": 45.16, + "grad_norm": 0.7794001698493958, + "learning_rate": 2.7430133333333337e-05, + "loss": 1.5485234069824219, + "step": 338700 + }, + { + "epoch": 45.17333333333333, + "grad_norm": 0.7855547070503235, + "learning_rate": 2.742346666666667e-05, + "loss": 1.5519866943359375, + "step": 338800 + }, + { + "epoch": 45.18666666666667, + "grad_norm": 0.8333518505096436, + "learning_rate": 2.7416800000000005e-05, + "loss": 1.5467234802246095, + "step": 338900 + }, + { + "epoch": 45.2, + "grad_norm": 0.8590301275253296, + "learning_rate": 2.7410133333333334e-05, + "loss": 1.5527265930175782, + "step": 339000 + }, + { + "epoch": 45.21333333333333, + "grad_norm": 0.8133448958396912, + "learning_rate": 2.7403466666666666e-05, + "loss": 1.5531710815429687, + "step": 339100 + }, + { + "epoch": 45.22666666666667, + "grad_norm": 0.843085527420044, + "learning_rate": 2.7396800000000002e-05, + "loss": 1.552749786376953, + "step": 339200 + }, + { + "epoch": 45.24, + "grad_norm": 0.8271104693412781, + "learning_rate": 2.7390133333333334e-05, + "loss": 1.55497802734375, + "step": 339300 + }, + { + "epoch": 45.25333333333333, + "grad_norm": 0.7889156937599182, + "learning_rate": 2.738346666666667e-05, + "loss": 1.554407958984375, + "step": 339400 + }, + { + "epoch": 45.266666666666666, + "grad_norm": 0.8237720131874084, + "learning_rate": 2.7376800000000002e-05, + "loss": 1.5559963989257812, + "step": 339500 + }, + { + "epoch": 45.28, + "grad_norm": 0.8432164192199707, + "learning_rate": 2.7370133333333338e-05, + "loss": 1.5602865600585938, + "step": 339600 + }, + { + "epoch": 45.29333333333334, + "grad_norm": 0.8066620826721191, + "learning_rate": 2.7363533333333337e-05, + "loss": 1.5569775390625, + "step": 339700 + }, + { + "epoch": 45.306666666666665, + "grad_norm": 0.8251729011535645, + "learning_rate": 2.735686666666667e-05, + "loss": 1.5603398132324218, + "step": 339800 + }, + { + "epoch": 45.32, + "grad_norm": 0.8274789452552795, + "learning_rate": 2.7350200000000005e-05, + "loss": 1.5607125854492188, + "step": 339900 + }, + { + "epoch": 45.333333333333336, + "grad_norm": 0.7985981702804565, + "learning_rate": 2.7343533333333333e-05, + "loss": 1.5612689208984376, + "step": 340000 + }, + { + "epoch": 45.346666666666664, + "grad_norm": 0.8099194765090942, + "learning_rate": 2.7336866666666666e-05, + "loss": 1.5611070251464845, + "step": 340100 + }, + { + "epoch": 45.36, + "grad_norm": 0.7862045764923096, + "learning_rate": 2.73302e-05, + "loss": 1.561177978515625, + "step": 340200 + }, + { + "epoch": 45.373333333333335, + "grad_norm": 0.8008959293365479, + "learning_rate": 2.7323533333333334e-05, + "loss": 1.5632902526855468, + "step": 340300 + }, + { + "epoch": 45.38666666666666, + "grad_norm": 0.8084346055984497, + "learning_rate": 2.731686666666667e-05, + "loss": 1.56494384765625, + "step": 340400 + }, + { + "epoch": 45.4, + "grad_norm": 0.7950522303581238, + "learning_rate": 2.73102e-05, + "loss": 1.563892822265625, + "step": 340500 + }, + { + "epoch": 45.413333333333334, + "grad_norm": 0.8112916350364685, + "learning_rate": 2.7303533333333337e-05, + "loss": 1.5658737182617188, + "step": 340600 + }, + { + "epoch": 45.42666666666667, + "grad_norm": 0.8019904494285583, + "learning_rate": 2.729686666666667e-05, + "loss": 1.5665919494628906, + "step": 340700 + }, + { + "epoch": 45.44, + "grad_norm": 0.8604961037635803, + "learning_rate": 2.72902e-05, + "loss": 1.5618829345703125, + "step": 340800 + }, + { + "epoch": 45.45333333333333, + "grad_norm": 0.8297909498214722, + "learning_rate": 2.7283533333333334e-05, + "loss": 1.5690985107421875, + "step": 340900 + }, + { + "epoch": 45.46666666666667, + "grad_norm": 0.8290330171585083, + "learning_rate": 2.7276866666666666e-05, + "loss": 1.5725372314453125, + "step": 341000 + }, + { + "epoch": 45.48, + "grad_norm": 0.8196405172348022, + "learning_rate": 2.7270200000000002e-05, + "loss": 1.5716435241699218, + "step": 341100 + }, + { + "epoch": 45.49333333333333, + "grad_norm": 0.8516254425048828, + "learning_rate": 2.7263533333333334e-05, + "loss": 1.5708955383300782, + "step": 341200 + }, + { + "epoch": 45.50666666666667, + "grad_norm": 0.8195080161094666, + "learning_rate": 2.725686666666667e-05, + "loss": 1.5677909851074219, + "step": 341300 + }, + { + "epoch": 45.52, + "grad_norm": 0.8368141055107117, + "learning_rate": 2.7250200000000002e-05, + "loss": 1.5750044250488282, + "step": 341400 + }, + { + "epoch": 45.53333333333333, + "grad_norm": 0.8141370415687561, + "learning_rate": 2.724353333333333e-05, + "loss": 1.5710145568847655, + "step": 341500 + }, + { + "epoch": 45.54666666666667, + "grad_norm": 0.8688223361968994, + "learning_rate": 2.7236866666666667e-05, + "loss": 1.577767333984375, + "step": 341600 + }, + { + "epoch": 45.56, + "grad_norm": 0.8282235860824585, + "learning_rate": 2.723026666666667e-05, + "loss": 1.5752143859863281, + "step": 341700 + }, + { + "epoch": 45.57333333333333, + "grad_norm": 0.8183776140213013, + "learning_rate": 2.7223599999999998e-05, + "loss": 1.5708876037597657, + "step": 341800 + }, + { + "epoch": 45.586666666666666, + "grad_norm": 0.820489227771759, + "learning_rate": 2.7216933333333334e-05, + "loss": 1.5763885498046875, + "step": 341900 + }, + { + "epoch": 45.6, + "grad_norm": 0.7990655899047852, + "learning_rate": 2.7210266666666666e-05, + "loss": 1.579280242919922, + "step": 342000 + }, + { + "epoch": 45.61333333333333, + "grad_norm": 0.8262766003608704, + "learning_rate": 2.72036e-05, + "loss": 1.5800761413574218, + "step": 342100 + }, + { + "epoch": 45.626666666666665, + "grad_norm": 0.8294216990470886, + "learning_rate": 2.7196933333333334e-05, + "loss": 1.5776101684570312, + "step": 342200 + }, + { + "epoch": 45.64, + "grad_norm": 0.8527024984359741, + "learning_rate": 2.719026666666667e-05, + "loss": 1.5793777465820313, + "step": 342300 + }, + { + "epoch": 45.653333333333336, + "grad_norm": 0.8285980224609375, + "learning_rate": 2.7183600000000005e-05, + "loss": 1.5826039123535156, + "step": 342400 + }, + { + "epoch": 45.666666666666664, + "grad_norm": 0.7973678708076477, + "learning_rate": 2.717693333333333e-05, + "loss": 1.5825093078613282, + "step": 342500 + }, + { + "epoch": 45.68, + "grad_norm": 0.8386090993881226, + "learning_rate": 2.7170266666666666e-05, + "loss": 1.5819102478027345, + "step": 342600 + }, + { + "epoch": 45.693333333333335, + "grad_norm": 0.8596566915512085, + "learning_rate": 2.71636e-05, + "loss": 1.5824310302734375, + "step": 342700 + }, + { + "epoch": 45.70666666666666, + "grad_norm": 0.84074467420578, + "learning_rate": 2.7156933333333334e-05, + "loss": 1.5835606384277343, + "step": 342800 + }, + { + "epoch": 45.72, + "grad_norm": 0.8335156440734863, + "learning_rate": 2.715026666666667e-05, + "loss": 1.5831988525390626, + "step": 342900 + }, + { + "epoch": 45.733333333333334, + "grad_norm": 0.8545652031898499, + "learning_rate": 2.7143600000000002e-05, + "loss": 1.5821173095703125, + "step": 343000 + }, + { + "epoch": 45.74666666666667, + "grad_norm": 0.8127861022949219, + "learning_rate": 2.7136933333333338e-05, + "loss": 1.5852001953125, + "step": 343100 + }, + { + "epoch": 45.76, + "grad_norm": 0.8396148085594177, + "learning_rate": 2.713026666666667e-05, + "loss": 1.5899464416503906, + "step": 343200 + }, + { + "epoch": 45.77333333333333, + "grad_norm": 0.8626675605773926, + "learning_rate": 2.71236e-05, + "loss": 1.5838290405273439, + "step": 343300 + }, + { + "epoch": 45.78666666666667, + "grad_norm": 0.8253298997879028, + "learning_rate": 2.7116933333333335e-05, + "loss": 1.5856344604492187, + "step": 343400 + }, + { + "epoch": 45.8, + "grad_norm": 0.8361122012138367, + "learning_rate": 2.7110266666666667e-05, + "loss": 1.5906475830078124, + "step": 343500 + }, + { + "epoch": 45.81333333333333, + "grad_norm": 0.7877110242843628, + "learning_rate": 2.7103600000000003e-05, + "loss": 1.5869761657714845, + "step": 343600 + }, + { + "epoch": 45.82666666666667, + "grad_norm": 0.8173111081123352, + "learning_rate": 2.7097e-05, + "loss": 1.5882725524902344, + "step": 343700 + }, + { + "epoch": 45.84, + "grad_norm": 0.8360334038734436, + "learning_rate": 2.7090333333333334e-05, + "loss": 1.5957424926757813, + "step": 343800 + }, + { + "epoch": 45.85333333333333, + "grad_norm": 0.8417925834655762, + "learning_rate": 2.708366666666667e-05, + "loss": 1.589451446533203, + "step": 343900 + }, + { + "epoch": 45.86666666666667, + "grad_norm": 0.7977088689804077, + "learning_rate": 2.7077000000000002e-05, + "loss": 1.5911802673339843, + "step": 344000 + }, + { + "epoch": 45.88, + "grad_norm": 0.8282347321510315, + "learning_rate": 2.7070333333333337e-05, + "loss": 1.5962525939941405, + "step": 344100 + }, + { + "epoch": 45.89333333333333, + "grad_norm": 0.8380323648452759, + "learning_rate": 2.706366666666667e-05, + "loss": 1.5943394470214844, + "step": 344200 + }, + { + "epoch": 45.906666666666666, + "grad_norm": 0.8266421556472778, + "learning_rate": 2.7057e-05, + "loss": 1.5934329223632813, + "step": 344300 + }, + { + "epoch": 45.92, + "grad_norm": 0.8296067118644714, + "learning_rate": 2.7050333333333334e-05, + "loss": 1.5951394653320312, + "step": 344400 + }, + { + "epoch": 45.93333333333333, + "grad_norm": 0.8238825798034668, + "learning_rate": 2.7043666666666667e-05, + "loss": 1.5956932067871095, + "step": 344500 + }, + { + "epoch": 45.946666666666665, + "grad_norm": 0.8402311205863953, + "learning_rate": 2.7037000000000002e-05, + "loss": 1.5972817993164063, + "step": 344600 + }, + { + "epoch": 45.96, + "grad_norm": 0.819067656993866, + "learning_rate": 2.7030333333333334e-05, + "loss": 1.5947479248046874, + "step": 344700 + }, + { + "epoch": 45.973333333333336, + "grad_norm": 0.8134846687316895, + "learning_rate": 2.702366666666667e-05, + "loss": 1.5938349914550782, + "step": 344800 + }, + { + "epoch": 45.986666666666665, + "grad_norm": 0.8139092326164246, + "learning_rate": 2.7017000000000002e-05, + "loss": 1.5983534240722657, + "step": 344900 + }, + { + "epoch": 46.0, + "grad_norm": 0.845569908618927, + "learning_rate": 2.701033333333333e-05, + "loss": 1.5993333435058594, + "step": 345000 + }, + { + "epoch": 46.013333333333335, + "grad_norm": 0.8060302138328552, + "learning_rate": 2.7003666666666667e-05, + "loss": 1.5197933959960936, + "step": 345100 + }, + { + "epoch": 46.026666666666664, + "grad_norm": 0.8016753196716309, + "learning_rate": 2.6997e-05, + "loss": 1.5163864135742187, + "step": 345200 + }, + { + "epoch": 46.04, + "grad_norm": 0.824266791343689, + "learning_rate": 2.6990333333333335e-05, + "loss": 1.5196403503417968, + "step": 345300 + }, + { + "epoch": 46.053333333333335, + "grad_norm": 0.831349790096283, + "learning_rate": 2.6983666666666667e-05, + "loss": 1.5196861267089843, + "step": 345400 + }, + { + "epoch": 46.06666666666667, + "grad_norm": 0.794564425945282, + "learning_rate": 2.6977000000000003e-05, + "loss": 1.5226402282714844, + "step": 345500 + }, + { + "epoch": 46.08, + "grad_norm": 0.864202618598938, + "learning_rate": 2.6970333333333335e-05, + "loss": 1.52418701171875, + "step": 345600 + }, + { + "epoch": 46.093333333333334, + "grad_norm": 0.8275471925735474, + "learning_rate": 2.696366666666667e-05, + "loss": 1.5281210327148438, + "step": 345700 + }, + { + "epoch": 46.10666666666667, + "grad_norm": 0.8034723401069641, + "learning_rate": 2.695706666666667e-05, + "loss": 1.5245565795898437, + "step": 345800 + }, + { + "epoch": 46.12, + "grad_norm": 0.8259097337722778, + "learning_rate": 2.6950400000000002e-05, + "loss": 1.531691436767578, + "step": 345900 + }, + { + "epoch": 46.13333333333333, + "grad_norm": 0.8168667554855347, + "learning_rate": 2.694373333333333e-05, + "loss": 1.5279510498046875, + "step": 346000 + }, + { + "epoch": 46.14666666666667, + "grad_norm": 0.8043650984764099, + "learning_rate": 2.6937066666666667e-05, + "loss": 1.530906219482422, + "step": 346100 + }, + { + "epoch": 46.16, + "grad_norm": 0.7977316379547119, + "learning_rate": 2.69304e-05, + "loss": 1.5317568969726563, + "step": 346200 + }, + { + "epoch": 46.17333333333333, + "grad_norm": 0.8600273728370667, + "learning_rate": 2.6923733333333334e-05, + "loss": 1.5322166442871095, + "step": 346300 + }, + { + "epoch": 46.18666666666667, + "grad_norm": 0.8048485517501831, + "learning_rate": 2.6917066666666667e-05, + "loss": 1.5342538452148438, + "step": 346400 + }, + { + "epoch": 46.2, + "grad_norm": 0.8028460144996643, + "learning_rate": 2.6910400000000002e-05, + "loss": 1.538252716064453, + "step": 346500 + }, + { + "epoch": 46.21333333333333, + "grad_norm": 0.8104482293128967, + "learning_rate": 2.6903733333333335e-05, + "loss": 1.537858123779297, + "step": 346600 + }, + { + "epoch": 46.22666666666667, + "grad_norm": 0.8299853205680847, + "learning_rate": 2.689706666666667e-05, + "loss": 1.5331761169433593, + "step": 346700 + }, + { + "epoch": 46.24, + "grad_norm": 0.8089656829833984, + "learning_rate": 2.68904e-05, + "loss": 1.5343820190429687, + "step": 346800 + }, + { + "epoch": 46.25333333333333, + "grad_norm": 0.8413048982620239, + "learning_rate": 2.688373333333333e-05, + "loss": 1.5428427124023438, + "step": 346900 + }, + { + "epoch": 46.266666666666666, + "grad_norm": 0.8163671493530273, + "learning_rate": 2.6877066666666667e-05, + "loss": 1.5400894165039063, + "step": 347000 + }, + { + "epoch": 46.28, + "grad_norm": 0.8367263674736023, + "learning_rate": 2.6870400000000003e-05, + "loss": 1.5393385314941406, + "step": 347100 + }, + { + "epoch": 46.29333333333334, + "grad_norm": 0.8091789484024048, + "learning_rate": 2.6863733333333335e-05, + "loss": 1.5403530883789063, + "step": 347200 + }, + { + "epoch": 46.306666666666665, + "grad_norm": 0.7646798491477966, + "learning_rate": 2.685706666666667e-05, + "loss": 1.5441659545898438, + "step": 347300 + }, + { + "epoch": 46.32, + "grad_norm": 0.8175348043441772, + "learning_rate": 2.6850400000000003e-05, + "loss": 1.5414935302734376, + "step": 347400 + }, + { + "epoch": 46.333333333333336, + "grad_norm": 0.8292933702468872, + "learning_rate": 2.6843733333333332e-05, + "loss": 1.5435244750976562, + "step": 347500 + }, + { + "epoch": 46.346666666666664, + "grad_norm": 0.8154855966567993, + "learning_rate": 2.6837066666666668e-05, + "loss": 1.5483761596679688, + "step": 347600 + }, + { + "epoch": 46.36, + "grad_norm": 0.7751580476760864, + "learning_rate": 2.68304e-05, + "loss": 1.5469662475585937, + "step": 347700 + }, + { + "epoch": 46.373333333333335, + "grad_norm": 0.8045754432678223, + "learning_rate": 2.6823733333333335e-05, + "loss": 1.5475198364257812, + "step": 347800 + }, + { + "epoch": 46.38666666666666, + "grad_norm": 0.8215160965919495, + "learning_rate": 2.6817133333333335e-05, + "loss": 1.545174560546875, + "step": 347900 + }, + { + "epoch": 46.4, + "grad_norm": 0.8201582431793213, + "learning_rate": 2.6810466666666667e-05, + "loss": 1.548802490234375, + "step": 348000 + }, + { + "epoch": 46.413333333333334, + "grad_norm": 0.8398956060409546, + "learning_rate": 2.6803800000000002e-05, + "loss": 1.5487840270996094, + "step": 348100 + }, + { + "epoch": 46.42666666666667, + "grad_norm": 0.8224796652793884, + "learning_rate": 2.6797133333333335e-05, + "loss": 1.549246826171875, + "step": 348200 + }, + { + "epoch": 46.44, + "grad_norm": 0.8594797849655151, + "learning_rate": 2.679046666666667e-05, + "loss": 1.5520086669921875, + "step": 348300 + }, + { + "epoch": 46.45333333333333, + "grad_norm": 0.8207729458808899, + "learning_rate": 2.6783800000000003e-05, + "loss": 1.5540689086914063, + "step": 348400 + }, + { + "epoch": 46.46666666666667, + "grad_norm": 0.8314641714096069, + "learning_rate": 2.677713333333333e-05, + "loss": 1.5520907592773439, + "step": 348500 + }, + { + "epoch": 46.48, + "grad_norm": 0.8217018246650696, + "learning_rate": 2.6770466666666667e-05, + "loss": 1.5557980346679687, + "step": 348600 + }, + { + "epoch": 46.49333333333333, + "grad_norm": 0.8059836030006409, + "learning_rate": 2.67638e-05, + "loss": 1.5601199340820313, + "step": 348700 + }, + { + "epoch": 46.50666666666667, + "grad_norm": 0.8552286028862, + "learning_rate": 2.6757133333333335e-05, + "loss": 1.5559910583496093, + "step": 348800 + }, + { + "epoch": 46.52, + "grad_norm": 0.8301519155502319, + "learning_rate": 2.6750466666666667e-05, + "loss": 1.5562776184082032, + "step": 348900 + }, + { + "epoch": 46.53333333333333, + "grad_norm": 0.8431631326675415, + "learning_rate": 2.6743800000000003e-05, + "loss": 1.5593917846679688, + "step": 349000 + }, + { + "epoch": 46.54666666666667, + "grad_norm": 0.8206700682640076, + "learning_rate": 2.6737133333333335e-05, + "loss": 1.5606121826171875, + "step": 349100 + }, + { + "epoch": 46.56, + "grad_norm": 0.8263945579528809, + "learning_rate": 2.673046666666667e-05, + "loss": 1.5540763854980468, + "step": 349200 + }, + { + "epoch": 46.57333333333333, + "grad_norm": 0.8618150949478149, + "learning_rate": 2.67238e-05, + "loss": 1.5589299011230469, + "step": 349300 + }, + { + "epoch": 46.586666666666666, + "grad_norm": 0.8470207452774048, + "learning_rate": 2.6717133333333332e-05, + "loss": 1.561882781982422, + "step": 349400 + }, + { + "epoch": 46.6, + "grad_norm": 0.8224665522575378, + "learning_rate": 2.6710466666666668e-05, + "loss": 1.5630607604980469, + "step": 349500 + }, + { + "epoch": 46.61333333333333, + "grad_norm": 0.8316152691841125, + "learning_rate": 2.67038e-05, + "loss": 1.55953369140625, + "step": 349600 + }, + { + "epoch": 46.626666666666665, + "grad_norm": 0.8321995139122009, + "learning_rate": 2.6697133333333336e-05, + "loss": 1.5658473205566406, + "step": 349700 + }, + { + "epoch": 46.64, + "grad_norm": 0.8178289532661438, + "learning_rate": 2.6690466666666668e-05, + "loss": 1.5612675476074218, + "step": 349800 + }, + { + "epoch": 46.653333333333336, + "grad_norm": 0.7792300581932068, + "learning_rate": 2.6683800000000004e-05, + "loss": 1.5632437133789063, + "step": 349900 + }, + { + "epoch": 46.666666666666664, + "grad_norm": 0.7988590002059937, + "learning_rate": 2.6677133333333336e-05, + "loss": 1.5675028991699218, + "step": 350000 + }, + { + "epoch": 46.68, + "grad_norm": 0.8445242643356323, + "learning_rate": 2.6670533333333335e-05, + "loss": 1.5669676208496093, + "step": 350100 + }, + { + "epoch": 46.693333333333335, + "grad_norm": 0.8198060989379883, + "learning_rate": 2.666386666666667e-05, + "loss": 1.5665971374511718, + "step": 350200 + }, + { + "epoch": 46.70666666666666, + "grad_norm": 0.8664674162864685, + "learning_rate": 2.66572e-05, + "loss": 1.5654718017578124, + "step": 350300 + }, + { + "epoch": 46.72, + "grad_norm": 0.819105863571167, + "learning_rate": 2.6650533333333332e-05, + "loss": 1.567599334716797, + "step": 350400 + }, + { + "epoch": 46.733333333333334, + "grad_norm": 0.8594771027565002, + "learning_rate": 2.6643866666666667e-05, + "loss": 1.5679061889648438, + "step": 350500 + }, + { + "epoch": 46.74666666666667, + "grad_norm": 0.8125904202461243, + "learning_rate": 2.66372e-05, + "loss": 1.5722848510742187, + "step": 350600 + }, + { + "epoch": 46.76, + "grad_norm": 0.8537176847457886, + "learning_rate": 2.6630533333333335e-05, + "loss": 1.5686172485351562, + "step": 350700 + }, + { + "epoch": 46.77333333333333, + "grad_norm": 0.8427459001541138, + "learning_rate": 2.6623866666666668e-05, + "loss": 1.571588592529297, + "step": 350800 + }, + { + "epoch": 46.78666666666667, + "grad_norm": 0.827638566493988, + "learning_rate": 2.6617200000000003e-05, + "loss": 1.5718766784667968, + "step": 350900 + }, + { + "epoch": 46.8, + "grad_norm": 0.8735706806182861, + "learning_rate": 2.661053333333334e-05, + "loss": 1.5722669982910156, + "step": 351000 + }, + { + "epoch": 46.81333333333333, + "grad_norm": 0.8201860785484314, + "learning_rate": 2.6603866666666664e-05, + "loss": 1.5740573120117187, + "step": 351100 + }, + { + "epoch": 46.82666666666667, + "grad_norm": 0.8265976309776306, + "learning_rate": 2.65972e-05, + "loss": 1.5777357482910157, + "step": 351200 + }, + { + "epoch": 46.84, + "grad_norm": 0.8381431698799133, + "learning_rate": 2.6590533333333332e-05, + "loss": 1.5748936462402343, + "step": 351300 + }, + { + "epoch": 46.85333333333333, + "grad_norm": 0.8063822388648987, + "learning_rate": 2.6583866666666668e-05, + "loss": 1.5776918029785156, + "step": 351400 + }, + { + "epoch": 46.86666666666667, + "grad_norm": 0.831693172454834, + "learning_rate": 2.6577200000000004e-05, + "loss": 1.5761140441894532, + "step": 351500 + }, + { + "epoch": 46.88, + "grad_norm": 0.8381946682929993, + "learning_rate": 2.6570533333333336e-05, + "loss": 1.5803857421875, + "step": 351600 + }, + { + "epoch": 46.89333333333333, + "grad_norm": 0.8485809564590454, + "learning_rate": 2.656386666666667e-05, + "loss": 1.5759907531738282, + "step": 351700 + }, + { + "epoch": 46.906666666666666, + "grad_norm": 0.8247084617614746, + "learning_rate": 2.6557199999999997e-05, + "loss": 1.5766317749023437, + "step": 351800 + }, + { + "epoch": 46.92, + "grad_norm": 0.8473241925239563, + "learning_rate": 2.6550533333333333e-05, + "loss": 1.5800099182128906, + "step": 351900 + }, + { + "epoch": 46.93333333333333, + "grad_norm": 0.8938542604446411, + "learning_rate": 2.654386666666667e-05, + "loss": 1.575980224609375, + "step": 352000 + }, + { + "epoch": 46.946666666666665, + "grad_norm": 0.8447518348693848, + "learning_rate": 2.6537266666666667e-05, + "loss": 1.5792408752441407, + "step": 352100 + }, + { + "epoch": 46.96, + "grad_norm": 0.8477917313575745, + "learning_rate": 2.65306e-05, + "loss": 1.5817056274414063, + "step": 352200 + }, + { + "epoch": 46.973333333333336, + "grad_norm": 0.8412907123565674, + "learning_rate": 2.6523933333333335e-05, + "loss": 1.5827552795410156, + "step": 352300 + }, + { + "epoch": 46.986666666666665, + "grad_norm": 0.8627504706382751, + "learning_rate": 2.6517266666666668e-05, + "loss": 1.5811537170410157, + "step": 352400 + }, + { + "epoch": 47.0, + "grad_norm": 0.8609046936035156, + "learning_rate": 2.6510600000000003e-05, + "loss": 1.5816255187988282, + "step": 352500 + }, + { + "epoch": 47.013333333333335, + "grad_norm": 0.7538483142852783, + "learning_rate": 2.6503933333333336e-05, + "loss": 1.5079031372070313, + "step": 352600 + }, + { + "epoch": 47.026666666666664, + "grad_norm": 0.813092827796936, + "learning_rate": 2.649726666666667e-05, + "loss": 1.5056570434570313, + "step": 352700 + }, + { + "epoch": 47.04, + "grad_norm": 0.8041110634803772, + "learning_rate": 2.64906e-05, + "loss": 1.5061376953125, + "step": 352800 + }, + { + "epoch": 47.053333333333335, + "grad_norm": 0.8193392753601074, + "learning_rate": 2.6483933333333332e-05, + "loss": 1.5078268432617188, + "step": 352900 + }, + { + "epoch": 47.06666666666667, + "grad_norm": 0.8413985371589661, + "learning_rate": 2.6477266666666668e-05, + "loss": 1.5114471435546875, + "step": 353000 + }, + { + "epoch": 47.08, + "grad_norm": 0.8073115348815918, + "learning_rate": 2.64706e-05, + "loss": 1.5135585021972657, + "step": 353100 + }, + { + "epoch": 47.093333333333334, + "grad_norm": 0.7779039740562439, + "learning_rate": 2.6463933333333336e-05, + "loss": 1.5116209411621093, + "step": 353200 + }, + { + "epoch": 47.10666666666667, + "grad_norm": 0.807697594165802, + "learning_rate": 2.6457266666666668e-05, + "loss": 1.517572479248047, + "step": 353300 + }, + { + "epoch": 47.12, + "grad_norm": 0.8400974869728088, + "learning_rate": 2.6450600000000004e-05, + "loss": 1.5178854370117187, + "step": 353400 + }, + { + "epoch": 47.13333333333333, + "grad_norm": 0.8194504976272583, + "learning_rate": 2.6443933333333336e-05, + "loss": 1.5146188354492187, + "step": 353500 + }, + { + "epoch": 47.14666666666667, + "grad_norm": 0.8018361926078796, + "learning_rate": 2.6437266666666665e-05, + "loss": 1.5214445495605469, + "step": 353600 + }, + { + "epoch": 47.16, + "grad_norm": 0.8167159557342529, + "learning_rate": 2.64306e-05, + "loss": 1.5156454467773437, + "step": 353700 + }, + { + "epoch": 47.17333333333333, + "grad_norm": 0.8039659857749939, + "learning_rate": 2.6423933333333333e-05, + "loss": 1.5151275634765624, + "step": 353800 + }, + { + "epoch": 47.18666666666667, + "grad_norm": 0.8017700910568237, + "learning_rate": 2.641726666666667e-05, + "loss": 1.5202009582519531, + "step": 353900 + }, + { + "epoch": 47.2, + "grad_norm": 0.7832367420196533, + "learning_rate": 2.64106e-05, + "loss": 1.519759521484375, + "step": 354000 + }, + { + "epoch": 47.21333333333333, + "grad_norm": 0.8337007761001587, + "learning_rate": 2.6403933333333337e-05, + "loss": 1.5221978759765624, + "step": 354100 + }, + { + "epoch": 47.22666666666667, + "grad_norm": 0.7870599031448364, + "learning_rate": 2.639726666666667e-05, + "loss": 1.523798065185547, + "step": 354200 + }, + { + "epoch": 47.24, + "grad_norm": 0.8411582708358765, + "learning_rate": 2.6390666666666668e-05, + "loss": 1.5253703308105468, + "step": 354300 + }, + { + "epoch": 47.25333333333333, + "grad_norm": 0.8832390308380127, + "learning_rate": 2.6384000000000004e-05, + "loss": 1.5262484741210938, + "step": 354400 + }, + { + "epoch": 47.266666666666666, + "grad_norm": 0.7941514253616333, + "learning_rate": 2.6377333333333336e-05, + "loss": 1.525479736328125, + "step": 354500 + }, + { + "epoch": 47.28, + "grad_norm": 0.7702394127845764, + "learning_rate": 2.6370666666666665e-05, + "loss": 1.5219073486328125, + "step": 354600 + }, + { + "epoch": 47.29333333333334, + "grad_norm": 0.8129458427429199, + "learning_rate": 2.6364e-05, + "loss": 1.5250271606445311, + "step": 354700 + }, + { + "epoch": 47.306666666666665, + "grad_norm": 0.8214989304542542, + "learning_rate": 2.6357333333333333e-05, + "loss": 1.5251333618164062, + "step": 354800 + }, + { + "epoch": 47.32, + "grad_norm": 0.7877672910690308, + "learning_rate": 2.6350666666666668e-05, + "loss": 1.5243698120117188, + "step": 354900 + }, + { + "epoch": 47.333333333333336, + "grad_norm": 0.8471348285675049, + "learning_rate": 2.6344e-05, + "loss": 1.5322015380859375, + "step": 355000 + }, + { + "epoch": 47.346666666666664, + "grad_norm": 0.8431065082550049, + "learning_rate": 2.6337333333333336e-05, + "loss": 1.530186767578125, + "step": 355100 + }, + { + "epoch": 47.36, + "grad_norm": 0.8179681897163391, + "learning_rate": 2.6330666666666672e-05, + "loss": 1.5326658630371093, + "step": 355200 + }, + { + "epoch": 47.373333333333335, + "grad_norm": 0.8299217820167542, + "learning_rate": 2.6323999999999997e-05, + "loss": 1.5337423706054687, + "step": 355300 + }, + { + "epoch": 47.38666666666666, + "grad_norm": 0.7992455363273621, + "learning_rate": 2.6317333333333333e-05, + "loss": 1.5334547424316407, + "step": 355400 + }, + { + "epoch": 47.4, + "grad_norm": 0.8198468089103699, + "learning_rate": 2.6310666666666665e-05, + "loss": 1.5330128479003906, + "step": 355500 + }, + { + "epoch": 47.413333333333334, + "grad_norm": 0.8227736353874207, + "learning_rate": 2.6304e-05, + "loss": 1.5363392639160156, + "step": 355600 + }, + { + "epoch": 47.42666666666667, + "grad_norm": 0.8037164807319641, + "learning_rate": 2.6297333333333337e-05, + "loss": 1.5415556335449219, + "step": 355700 + }, + { + "epoch": 47.44, + "grad_norm": 0.8218553066253662, + "learning_rate": 2.629066666666667e-05, + "loss": 1.536182861328125, + "step": 355800 + }, + { + "epoch": 47.45333333333333, + "grad_norm": 0.8205154538154602, + "learning_rate": 2.6284000000000004e-05, + "loss": 1.5415779113769532, + "step": 355900 + }, + { + "epoch": 47.46666666666667, + "grad_norm": 0.8422571420669556, + "learning_rate": 2.6277333333333337e-05, + "loss": 1.5379583740234375, + "step": 356000 + }, + { + "epoch": 47.48, + "grad_norm": 0.8234130144119263, + "learning_rate": 2.6270666666666666e-05, + "loss": 1.538638153076172, + "step": 356100 + }, + { + "epoch": 47.49333333333333, + "grad_norm": 0.8543081879615784, + "learning_rate": 2.6264e-05, + "loss": 1.5433369445800782, + "step": 356200 + }, + { + "epoch": 47.50666666666667, + "grad_norm": 0.8039753437042236, + "learning_rate": 2.6257399999999997e-05, + "loss": 1.5409135437011718, + "step": 356300 + }, + { + "epoch": 47.52, + "grad_norm": 0.807433545589447, + "learning_rate": 2.6250733333333333e-05, + "loss": 1.538723907470703, + "step": 356400 + }, + { + "epoch": 47.53333333333333, + "grad_norm": 0.829760730266571, + "learning_rate": 2.6244066666666668e-05, + "loss": 1.5394581604003905, + "step": 356500 + }, + { + "epoch": 47.54666666666667, + "grad_norm": 0.83366858959198, + "learning_rate": 2.62374e-05, + "loss": 1.545363311767578, + "step": 356600 + }, + { + "epoch": 47.56, + "grad_norm": 0.8441088795661926, + "learning_rate": 2.6230733333333336e-05, + "loss": 1.5482498168945313, + "step": 356700 + }, + { + "epoch": 47.57333333333333, + "grad_norm": 0.8056532740592957, + "learning_rate": 2.622406666666667e-05, + "loss": 1.5447674560546876, + "step": 356800 + }, + { + "epoch": 47.586666666666666, + "grad_norm": 0.8894994258880615, + "learning_rate": 2.6217400000000004e-05, + "loss": 1.5502810668945313, + "step": 356900 + }, + { + "epoch": 47.6, + "grad_norm": 0.8194480538368225, + "learning_rate": 2.6210733333333336e-05, + "loss": 1.5432069396972656, + "step": 357000 + }, + { + "epoch": 47.61333333333333, + "grad_norm": 0.8140724897384644, + "learning_rate": 2.6204066666666665e-05, + "loss": 1.5478276062011718, + "step": 357100 + }, + { + "epoch": 47.626666666666665, + "grad_norm": 0.8195116519927979, + "learning_rate": 2.61974e-05, + "loss": 1.544815673828125, + "step": 357200 + }, + { + "epoch": 47.64, + "grad_norm": 0.8061419725418091, + "learning_rate": 2.6190733333333333e-05, + "loss": 1.5499363708496094, + "step": 357300 + }, + { + "epoch": 47.653333333333336, + "grad_norm": 0.8833538293838501, + "learning_rate": 2.618406666666667e-05, + "loss": 1.5492486572265625, + "step": 357400 + }, + { + "epoch": 47.666666666666664, + "grad_norm": 0.817891001701355, + "learning_rate": 2.61774e-05, + "loss": 1.5491177368164062, + "step": 357500 + }, + { + "epoch": 47.68, + "grad_norm": 0.8547759652137756, + "learning_rate": 2.6170733333333337e-05, + "loss": 1.5468995666503906, + "step": 357600 + }, + { + "epoch": 47.693333333333335, + "grad_norm": 0.8713561296463013, + "learning_rate": 2.616406666666667e-05, + "loss": 1.5532452392578124, + "step": 357700 + }, + { + "epoch": 47.70666666666666, + "grad_norm": 0.8616589307785034, + "learning_rate": 2.6157399999999998e-05, + "loss": 1.5543402099609376, + "step": 357800 + }, + { + "epoch": 47.72, + "grad_norm": 0.8249148726463318, + "learning_rate": 2.6150733333333334e-05, + "loss": 1.5558518981933593, + "step": 357900 + }, + { + "epoch": 47.733333333333334, + "grad_norm": 0.8403042554855347, + "learning_rate": 2.6144066666666666e-05, + "loss": 1.55149169921875, + "step": 358000 + }, + { + "epoch": 47.74666666666667, + "grad_norm": 0.8018736839294434, + "learning_rate": 2.61374e-05, + "loss": 1.5553018188476562, + "step": 358100 + }, + { + "epoch": 47.76, + "grad_norm": 0.8302009701728821, + "learning_rate": 2.6130733333333334e-05, + "loss": 1.5563357543945313, + "step": 358200 + }, + { + "epoch": 47.77333333333333, + "grad_norm": 0.8318833708763123, + "learning_rate": 2.6124133333333333e-05, + "loss": 1.5607223510742188, + "step": 358300 + }, + { + "epoch": 47.78666666666667, + "grad_norm": 0.8090811967849731, + "learning_rate": 2.611746666666667e-05, + "loss": 1.5559880065917968, + "step": 358400 + }, + { + "epoch": 47.8, + "grad_norm": 0.868520975112915, + "learning_rate": 2.61108e-05, + "loss": 1.55770751953125, + "step": 358500 + }, + { + "epoch": 47.81333333333333, + "grad_norm": 0.8197623491287231, + "learning_rate": 2.6104133333333336e-05, + "loss": 1.558822021484375, + "step": 358600 + }, + { + "epoch": 47.82666666666667, + "grad_norm": 0.8163467645645142, + "learning_rate": 2.609746666666667e-05, + "loss": 1.557568359375, + "step": 358700 + }, + { + "epoch": 47.84, + "grad_norm": 0.7725224494934082, + "learning_rate": 2.6090799999999998e-05, + "loss": 1.5549420166015624, + "step": 358800 + }, + { + "epoch": 47.85333333333333, + "grad_norm": 0.8405675292015076, + "learning_rate": 2.6084133333333333e-05, + "loss": 1.5608193969726563, + "step": 358900 + }, + { + "epoch": 47.86666666666667, + "grad_norm": 0.8494597673416138, + "learning_rate": 2.6077466666666666e-05, + "loss": 1.5580606079101562, + "step": 359000 + }, + { + "epoch": 47.88, + "grad_norm": 0.8636260032653809, + "learning_rate": 2.60708e-05, + "loss": 1.5591242980957032, + "step": 359100 + }, + { + "epoch": 47.89333333333333, + "grad_norm": 0.8216843008995056, + "learning_rate": 2.6064133333333333e-05, + "loss": 1.5577593994140626, + "step": 359200 + }, + { + "epoch": 47.906666666666666, + "grad_norm": 0.8437257409095764, + "learning_rate": 2.605746666666667e-05, + "loss": 1.5638467407226562, + "step": 359300 + }, + { + "epoch": 47.92, + "grad_norm": 0.8391488790512085, + "learning_rate": 2.60508e-05, + "loss": 1.559764404296875, + "step": 359400 + }, + { + "epoch": 47.93333333333333, + "grad_norm": 0.8953635096549988, + "learning_rate": 2.6044133333333337e-05, + "loss": 1.5598916625976562, + "step": 359500 + }, + { + "epoch": 47.946666666666665, + "grad_norm": 0.8865219950675964, + "learning_rate": 2.6037466666666666e-05, + "loss": 1.56525390625, + "step": 359600 + }, + { + "epoch": 47.96, + "grad_norm": 0.8346757888793945, + "learning_rate": 2.6030799999999998e-05, + "loss": 1.5669119262695312, + "step": 359700 + }, + { + "epoch": 47.973333333333336, + "grad_norm": 0.7953504920005798, + "learning_rate": 2.6024133333333334e-05, + "loss": 1.5616644287109376, + "step": 359800 + }, + { + "epoch": 47.986666666666665, + "grad_norm": 0.8168767094612122, + "learning_rate": 2.6017466666666666e-05, + "loss": 1.5720118713378906, + "step": 359900 + }, + { + "epoch": 48.0, + "grad_norm": 0.874919593334198, + "learning_rate": 2.6010800000000002e-05, + "loss": 1.5705772399902345, + "step": 360000 + }, + { + "epoch": 48.013333333333335, + "grad_norm": 0.8366668820381165, + "learning_rate": 2.6004133333333337e-05, + "loss": 1.4951602172851564, + "step": 360100 + }, + { + "epoch": 48.026666666666664, + "grad_norm": 0.8061423897743225, + "learning_rate": 2.599746666666667e-05, + "loss": 1.49366455078125, + "step": 360200 + }, + { + "epoch": 48.04, + "grad_norm": 0.8062233328819275, + "learning_rate": 2.59908e-05, + "loss": 1.4919319152832031, + "step": 360300 + }, + { + "epoch": 48.053333333333335, + "grad_norm": 0.7820529341697693, + "learning_rate": 2.5984200000000004e-05, + "loss": 1.4933494567871093, + "step": 360400 + }, + { + "epoch": 48.06666666666667, + "grad_norm": 0.7874485850334167, + "learning_rate": 2.5977533333333337e-05, + "loss": 1.4942898559570312, + "step": 360500 + }, + { + "epoch": 48.08, + "grad_norm": 0.8219860792160034, + "learning_rate": 2.5970866666666666e-05, + "loss": 1.4994293212890626, + "step": 360600 + }, + { + "epoch": 48.093333333333334, + "grad_norm": 0.806149959564209, + "learning_rate": 2.59642e-05, + "loss": 1.5014764404296874, + "step": 360700 + }, + { + "epoch": 48.10666666666667, + "grad_norm": 0.8026537895202637, + "learning_rate": 2.5957533333333333e-05, + "loss": 1.5005511474609374, + "step": 360800 + }, + { + "epoch": 48.12, + "grad_norm": 0.803657591342926, + "learning_rate": 2.595086666666667e-05, + "loss": 1.500188446044922, + "step": 360900 + }, + { + "epoch": 48.13333333333333, + "grad_norm": 0.8763360977172852, + "learning_rate": 2.59442e-05, + "loss": 1.5009043884277344, + "step": 361000 + }, + { + "epoch": 48.14666666666667, + "grad_norm": 0.7982499003410339, + "learning_rate": 2.5937533333333337e-05, + "loss": 1.5045884704589845, + "step": 361100 + }, + { + "epoch": 48.16, + "grad_norm": 0.8596701622009277, + "learning_rate": 2.593086666666667e-05, + "loss": 1.5040025329589843, + "step": 361200 + }, + { + "epoch": 48.17333333333333, + "grad_norm": 0.8158277869224548, + "learning_rate": 2.5924199999999998e-05, + "loss": 1.5009864807128905, + "step": 361300 + }, + { + "epoch": 48.18666666666667, + "grad_norm": 0.8603137135505676, + "learning_rate": 2.5917533333333334e-05, + "loss": 1.5051220703125, + "step": 361400 + }, + { + "epoch": 48.2, + "grad_norm": 0.8475449085235596, + "learning_rate": 2.5910866666666666e-05, + "loss": 1.5040087890625, + "step": 361500 + }, + { + "epoch": 48.21333333333333, + "grad_norm": 0.8340404629707336, + "learning_rate": 2.5904200000000002e-05, + "loss": 1.5033770751953126, + "step": 361600 + }, + { + "epoch": 48.22666666666667, + "grad_norm": 0.8179289102554321, + "learning_rate": 2.5897533333333334e-05, + "loss": 1.5125186157226562, + "step": 361700 + }, + { + "epoch": 48.24, + "grad_norm": 0.8329739570617676, + "learning_rate": 2.589086666666667e-05, + "loss": 1.5081419372558593, + "step": 361800 + }, + { + "epoch": 48.25333333333333, + "grad_norm": 0.8692247271537781, + "learning_rate": 2.5884200000000002e-05, + "loss": 1.509202880859375, + "step": 361900 + }, + { + "epoch": 48.266666666666666, + "grad_norm": 0.8539946675300598, + "learning_rate": 2.5877533333333338e-05, + "loss": 1.505505828857422, + "step": 362000 + }, + { + "epoch": 48.28, + "grad_norm": 0.8623639345169067, + "learning_rate": 2.5870866666666667e-05, + "loss": 1.5125834655761718, + "step": 362100 + }, + { + "epoch": 48.29333333333334, + "grad_norm": 0.8657389283180237, + "learning_rate": 2.58642e-05, + "loss": 1.517348175048828, + "step": 362200 + }, + { + "epoch": 48.306666666666665, + "grad_norm": 0.8074204921722412, + "learning_rate": 2.5857533333333334e-05, + "loss": 1.5124046325683593, + "step": 362300 + }, + { + "epoch": 48.32, + "grad_norm": 0.8119105100631714, + "learning_rate": 2.5850933333333334e-05, + "loss": 1.5156207275390625, + "step": 362400 + }, + { + "epoch": 48.333333333333336, + "grad_norm": 0.8001854419708252, + "learning_rate": 2.5844266666666666e-05, + "loss": 1.520142822265625, + "step": 362500 + }, + { + "epoch": 48.346666666666664, + "grad_norm": 0.8105164766311646, + "learning_rate": 2.58376e-05, + "loss": 1.51326904296875, + "step": 362600 + }, + { + "epoch": 48.36, + "grad_norm": 0.8771947026252747, + "learning_rate": 2.5830933333333334e-05, + "loss": 1.5151416015625, + "step": 362700 + }, + { + "epoch": 48.373333333333335, + "grad_norm": 0.8079180717468262, + "learning_rate": 2.582426666666667e-05, + "loss": 1.5162548828125, + "step": 362800 + }, + { + "epoch": 48.38666666666666, + "grad_norm": 0.8303863406181335, + "learning_rate": 2.58176e-05, + "loss": 1.517666015625, + "step": 362900 + }, + { + "epoch": 48.4, + "grad_norm": 0.8090680837631226, + "learning_rate": 2.5810933333333337e-05, + "loss": 1.5149562072753906, + "step": 363000 + }, + { + "epoch": 48.413333333333334, + "grad_norm": 0.8291407227516174, + "learning_rate": 2.5804266666666666e-05, + "loss": 1.5243867492675782, + "step": 363100 + }, + { + "epoch": 48.42666666666667, + "grad_norm": 0.8551901578903198, + "learning_rate": 2.57976e-05, + "loss": 1.5234576416015626, + "step": 363200 + }, + { + "epoch": 48.44, + "grad_norm": 0.8535791039466858, + "learning_rate": 2.5790933333333334e-05, + "loss": 1.52187744140625, + "step": 363300 + }, + { + "epoch": 48.45333333333333, + "grad_norm": 0.8479459881782532, + "learning_rate": 2.5784266666666666e-05, + "loss": 1.51526611328125, + "step": 363400 + }, + { + "epoch": 48.46666666666667, + "grad_norm": 0.7857949733734131, + "learning_rate": 2.5777600000000002e-05, + "loss": 1.5265869140625, + "step": 363500 + }, + { + "epoch": 48.48, + "grad_norm": 0.8698379397392273, + "learning_rate": 2.5770933333333334e-05, + "loss": 1.5276319885253906, + "step": 363600 + }, + { + "epoch": 48.49333333333333, + "grad_norm": 0.817887544631958, + "learning_rate": 2.576426666666667e-05, + "loss": 1.5276255798339844, + "step": 363700 + }, + { + "epoch": 48.50666666666667, + "grad_norm": 0.8234931826591492, + "learning_rate": 2.5757600000000006e-05, + "loss": 1.5249510192871094, + "step": 363800 + }, + { + "epoch": 48.52, + "grad_norm": 0.8288886547088623, + "learning_rate": 2.575093333333333e-05, + "loss": 1.528853759765625, + "step": 363900 + }, + { + "epoch": 48.53333333333333, + "grad_norm": 0.8396264314651489, + "learning_rate": 2.5744266666666667e-05, + "loss": 1.5318849182128906, + "step": 364000 + }, + { + "epoch": 48.54666666666667, + "grad_norm": 0.824802041053772, + "learning_rate": 2.57376e-05, + "loss": 1.5319622802734374, + "step": 364100 + }, + { + "epoch": 48.56, + "grad_norm": 0.8573387861251831, + "learning_rate": 2.5730933333333335e-05, + "loss": 1.5280552673339844, + "step": 364200 + }, + { + "epoch": 48.57333333333333, + "grad_norm": 0.836539089679718, + "learning_rate": 2.572426666666667e-05, + "loss": 1.5268043518066405, + "step": 364300 + }, + { + "epoch": 48.586666666666666, + "grad_norm": 0.885406494140625, + "learning_rate": 2.5717666666666666e-05, + "loss": 1.5300917053222656, + "step": 364400 + }, + { + "epoch": 48.6, + "grad_norm": 0.8176631331443787, + "learning_rate": 2.5711e-05, + "loss": 1.5323922729492188, + "step": 364500 + }, + { + "epoch": 48.61333333333333, + "grad_norm": 0.8315919637680054, + "learning_rate": 2.5704333333333337e-05, + "loss": 1.53243408203125, + "step": 364600 + }, + { + "epoch": 48.626666666666665, + "grad_norm": 0.822803258895874, + "learning_rate": 2.569766666666667e-05, + "loss": 1.5390171813964844, + "step": 364700 + }, + { + "epoch": 48.64, + "grad_norm": 0.8383143544197083, + "learning_rate": 2.5691000000000005e-05, + "loss": 1.5334788513183595, + "step": 364800 + }, + { + "epoch": 48.653333333333336, + "grad_norm": 0.8430681824684143, + "learning_rate": 2.5684333333333334e-05, + "loss": 1.5373228454589845, + "step": 364900 + }, + { + "epoch": 48.666666666666664, + "grad_norm": 0.861682653427124, + "learning_rate": 2.5677666666666666e-05, + "loss": 1.536941680908203, + "step": 365000 + }, + { + "epoch": 48.68, + "grad_norm": 0.8224048018455505, + "learning_rate": 2.5671000000000002e-05, + "loss": 1.5357330322265625, + "step": 365100 + }, + { + "epoch": 48.693333333333335, + "grad_norm": 0.8081045150756836, + "learning_rate": 2.5664333333333334e-05, + "loss": 1.5333282470703125, + "step": 365200 + }, + { + "epoch": 48.70666666666666, + "grad_norm": 0.8442122340202332, + "learning_rate": 2.565766666666667e-05, + "loss": 1.536866455078125, + "step": 365300 + }, + { + "epoch": 48.72, + "grad_norm": 0.822340190410614, + "learning_rate": 2.5651000000000002e-05, + "loss": 1.5430012512207032, + "step": 365400 + }, + { + "epoch": 48.733333333333334, + "grad_norm": 0.8340216875076294, + "learning_rate": 2.5644333333333338e-05, + "loss": 1.5356080627441406, + "step": 365500 + }, + { + "epoch": 48.74666666666667, + "grad_norm": 0.8153738975524902, + "learning_rate": 2.5637666666666667e-05, + "loss": 1.5389717102050782, + "step": 365600 + }, + { + "epoch": 48.76, + "grad_norm": 0.8527360558509827, + "learning_rate": 2.5631e-05, + "loss": 1.5421336364746094, + "step": 365700 + }, + { + "epoch": 48.77333333333333, + "grad_norm": 0.8141431212425232, + "learning_rate": 2.5624333333333335e-05, + "loss": 1.537602081298828, + "step": 365800 + }, + { + "epoch": 48.78666666666667, + "grad_norm": 0.8881790041923523, + "learning_rate": 2.5617666666666667e-05, + "loss": 1.5385264587402343, + "step": 365900 + }, + { + "epoch": 48.8, + "grad_norm": 0.8357459902763367, + "learning_rate": 2.5611000000000003e-05, + "loss": 1.5437425231933595, + "step": 366000 + }, + { + "epoch": 48.81333333333333, + "grad_norm": 0.828778088092804, + "learning_rate": 2.5604333333333335e-05, + "loss": 1.540460968017578, + "step": 366100 + }, + { + "epoch": 48.82666666666667, + "grad_norm": 0.8588747382164001, + "learning_rate": 2.559766666666667e-05, + "loss": 1.545701446533203, + "step": 366200 + }, + { + "epoch": 48.84, + "grad_norm": 0.8609989285469055, + "learning_rate": 2.5591000000000003e-05, + "loss": 1.5466421508789063, + "step": 366300 + }, + { + "epoch": 48.85333333333333, + "grad_norm": 0.7956804633140564, + "learning_rate": 2.5584400000000002e-05, + "loss": 1.54723388671875, + "step": 366400 + }, + { + "epoch": 48.86666666666667, + "grad_norm": 0.8610774278640747, + "learning_rate": 2.5577733333333338e-05, + "loss": 1.5450926208496094, + "step": 366500 + }, + { + "epoch": 48.88, + "grad_norm": 0.8780190944671631, + "learning_rate": 2.5571066666666666e-05, + "loss": 1.547249298095703, + "step": 366600 + }, + { + "epoch": 48.89333333333333, + "grad_norm": 0.8510201573371887, + "learning_rate": 2.55644e-05, + "loss": 1.5473715209960937, + "step": 366700 + }, + { + "epoch": 48.906666666666666, + "grad_norm": 0.8271015882492065, + "learning_rate": 2.5557733333333334e-05, + "loss": 1.5514225769042969, + "step": 366800 + }, + { + "epoch": 48.92, + "grad_norm": 0.8673347234725952, + "learning_rate": 2.5551066666666667e-05, + "loss": 1.5482473754882813, + "step": 366900 + }, + { + "epoch": 48.93333333333333, + "grad_norm": 0.9040217995643616, + "learning_rate": 2.5544400000000002e-05, + "loss": 1.5476766967773437, + "step": 367000 + }, + { + "epoch": 48.946666666666665, + "grad_norm": 0.8571226000785828, + "learning_rate": 2.5537733333333335e-05, + "loss": 1.5490121459960937, + "step": 367100 + }, + { + "epoch": 48.96, + "grad_norm": 0.8800345659255981, + "learning_rate": 2.553106666666667e-05, + "loss": 1.5518528747558593, + "step": 367200 + }, + { + "epoch": 48.973333333333336, + "grad_norm": 0.8253681659698486, + "learning_rate": 2.5524400000000002e-05, + "loss": 1.5538876342773438, + "step": 367300 + }, + { + "epoch": 48.986666666666665, + "grad_norm": 0.8854805827140808, + "learning_rate": 2.551773333333333e-05, + "loss": 1.5536569213867188, + "step": 367400 + }, + { + "epoch": 49.0, + "grad_norm": 0.8323401808738708, + "learning_rate": 2.5511066666666667e-05, + "loss": 1.5535047912597657, + "step": 367500 + }, + { + "epoch": 49.013333333333335, + "grad_norm": 0.7903602719306946, + "learning_rate": 2.55044e-05, + "loss": 1.478652801513672, + "step": 367600 + }, + { + "epoch": 49.026666666666664, + "grad_norm": 0.7994419932365417, + "learning_rate": 2.5497733333333335e-05, + "loss": 1.4753775024414062, + "step": 367700 + }, + { + "epoch": 49.04, + "grad_norm": 0.8322893381118774, + "learning_rate": 2.5491066666666667e-05, + "loss": 1.47673583984375, + "step": 367800 + }, + { + "epoch": 49.053333333333335, + "grad_norm": 0.8257775902748108, + "learning_rate": 2.5484400000000003e-05, + "loss": 1.4793165588378907, + "step": 367900 + }, + { + "epoch": 49.06666666666667, + "grad_norm": 0.8123628497123718, + "learning_rate": 2.5477733333333335e-05, + "loss": 1.4788943481445314, + "step": 368000 + }, + { + "epoch": 49.08, + "grad_norm": 0.849601149559021, + "learning_rate": 2.5471066666666664e-05, + "loss": 1.4821792602539063, + "step": 368100 + }, + { + "epoch": 49.093333333333334, + "grad_norm": 0.8008491396903992, + "learning_rate": 2.54644e-05, + "loss": 1.4849171447753906, + "step": 368200 + }, + { + "epoch": 49.10666666666667, + "grad_norm": 0.8216526508331299, + "learning_rate": 2.5457733333333332e-05, + "loss": 1.4855982971191406, + "step": 368300 + }, + { + "epoch": 49.12, + "grad_norm": 0.8552011847496033, + "learning_rate": 2.5451066666666668e-05, + "loss": 1.4879904174804688, + "step": 368400 + }, + { + "epoch": 49.13333333333333, + "grad_norm": 0.7977767586708069, + "learning_rate": 2.5444466666666667e-05, + "loss": 1.4883206176757813, + "step": 368500 + }, + { + "epoch": 49.14666666666667, + "grad_norm": 0.8241558074951172, + "learning_rate": 2.54378e-05, + "loss": 1.4861485290527343, + "step": 368600 + }, + { + "epoch": 49.16, + "grad_norm": 0.8472109436988831, + "learning_rate": 2.5431133333333335e-05, + "loss": 1.4872750854492187, + "step": 368700 + }, + { + "epoch": 49.17333333333333, + "grad_norm": 0.8214472532272339, + "learning_rate": 2.542446666666667e-05, + "loss": 1.487729034423828, + "step": 368800 + }, + { + "epoch": 49.18666666666667, + "grad_norm": 0.8378106355667114, + "learning_rate": 2.5417800000000003e-05, + "loss": 1.48987060546875, + "step": 368900 + }, + { + "epoch": 49.2, + "grad_norm": 0.7991240620613098, + "learning_rate": 2.5411133333333338e-05, + "loss": 1.492364501953125, + "step": 369000 + }, + { + "epoch": 49.21333333333333, + "grad_norm": 0.8102217316627502, + "learning_rate": 2.5404466666666664e-05, + "loss": 1.4964356994628907, + "step": 369100 + }, + { + "epoch": 49.22666666666667, + "grad_norm": 0.7787119150161743, + "learning_rate": 2.53978e-05, + "loss": 1.4987217712402343, + "step": 369200 + }, + { + "epoch": 49.24, + "grad_norm": 0.8689252138137817, + "learning_rate": 2.5391133333333335e-05, + "loss": 1.497693328857422, + "step": 369300 + }, + { + "epoch": 49.25333333333333, + "grad_norm": 0.8548557162284851, + "learning_rate": 2.5384466666666667e-05, + "loss": 1.4954206848144531, + "step": 369400 + }, + { + "epoch": 49.266666666666666, + "grad_norm": 0.8644983172416687, + "learning_rate": 2.5377800000000003e-05, + "loss": 1.4990921020507812, + "step": 369500 + }, + { + "epoch": 49.28, + "grad_norm": 0.8004375696182251, + "learning_rate": 2.5371133333333335e-05, + "loss": 1.4989527893066406, + "step": 369600 + }, + { + "epoch": 49.29333333333334, + "grad_norm": 0.811881959438324, + "learning_rate": 2.536446666666667e-05, + "loss": 1.4984857177734374, + "step": 369700 + }, + { + "epoch": 49.306666666666665, + "grad_norm": 0.8403072953224182, + "learning_rate": 2.5357800000000003e-05, + "loss": 1.4975395202636719, + "step": 369800 + }, + { + "epoch": 49.32, + "grad_norm": 0.8402568697929382, + "learning_rate": 2.5351133333333332e-05, + "loss": 1.4993600463867187, + "step": 369900 + }, + { + "epoch": 49.333333333333336, + "grad_norm": 0.8742866516113281, + "learning_rate": 2.5344466666666668e-05, + "loss": 1.504093475341797, + "step": 370000 + }, + { + "epoch": 49.346666666666664, + "grad_norm": 0.8136636018753052, + "learning_rate": 2.53378e-05, + "loss": 1.5030204772949218, + "step": 370100 + }, + { + "epoch": 49.36, + "grad_norm": 0.846967339515686, + "learning_rate": 2.5331133333333336e-05, + "loss": 1.5024598693847657, + "step": 370200 + }, + { + "epoch": 49.373333333333335, + "grad_norm": 0.784156858921051, + "learning_rate": 2.5324466666666668e-05, + "loss": 1.5066024780273437, + "step": 370300 + }, + { + "epoch": 49.38666666666666, + "grad_norm": 0.8611376881599426, + "learning_rate": 2.5317800000000003e-05, + "loss": 1.5030882263183594, + "step": 370400 + }, + { + "epoch": 49.4, + "grad_norm": 0.8456284403800964, + "learning_rate": 2.5311200000000003e-05, + "loss": 1.5110250854492187, + "step": 370500 + }, + { + "epoch": 49.413333333333334, + "grad_norm": 0.8738457560539246, + "learning_rate": 2.5304533333333335e-05, + "loss": 1.5068327331542968, + "step": 370600 + }, + { + "epoch": 49.42666666666667, + "grad_norm": 0.81916743516922, + "learning_rate": 2.529786666666667e-05, + "loss": 1.5101161193847656, + "step": 370700 + }, + { + "epoch": 49.44, + "grad_norm": 0.8413360714912415, + "learning_rate": 2.5291200000000003e-05, + "loss": 1.509934844970703, + "step": 370800 + }, + { + "epoch": 49.45333333333333, + "grad_norm": 0.8540857434272766, + "learning_rate": 2.528453333333333e-05, + "loss": 1.5118212890625, + "step": 370900 + }, + { + "epoch": 49.46666666666667, + "grad_norm": 0.8651217222213745, + "learning_rate": 2.5277866666666667e-05, + "loss": 1.5078504943847657, + "step": 371000 + }, + { + "epoch": 49.48, + "grad_norm": 0.8294056057929993, + "learning_rate": 2.52712e-05, + "loss": 1.5105992126464844, + "step": 371100 + }, + { + "epoch": 49.49333333333333, + "grad_norm": 0.8947125673294067, + "learning_rate": 2.5264533333333335e-05, + "loss": 1.5177714538574218, + "step": 371200 + }, + { + "epoch": 49.50666666666667, + "grad_norm": 0.8449296951293945, + "learning_rate": 2.5257866666666667e-05, + "loss": 1.5125474548339843, + "step": 371300 + }, + { + "epoch": 49.52, + "grad_norm": 0.849795401096344, + "learning_rate": 2.5251200000000003e-05, + "loss": 1.5124183654785157, + "step": 371400 + }, + { + "epoch": 49.53333333333333, + "grad_norm": 0.8208550810813904, + "learning_rate": 2.5244533333333335e-05, + "loss": 1.5178236389160156, + "step": 371500 + }, + { + "epoch": 49.54666666666667, + "grad_norm": 0.8659239411354065, + "learning_rate": 2.5237866666666664e-05, + "loss": 1.51171875, + "step": 371600 + }, + { + "epoch": 49.56, + "grad_norm": 0.8339199423789978, + "learning_rate": 2.52312e-05, + "loss": 1.5164427185058593, + "step": 371700 + }, + { + "epoch": 49.57333333333333, + "grad_norm": 0.817791759967804, + "learning_rate": 2.5224533333333332e-05, + "loss": 1.5198959350585937, + "step": 371800 + }, + { + "epoch": 49.586666666666666, + "grad_norm": 0.8938850164413452, + "learning_rate": 2.5217866666666668e-05, + "loss": 1.5189447021484375, + "step": 371900 + }, + { + "epoch": 49.6, + "grad_norm": 0.8634279370307922, + "learning_rate": 2.52112e-05, + "loss": 1.5181257629394531, + "step": 372000 + }, + { + "epoch": 49.61333333333333, + "grad_norm": 0.8766525983810425, + "learning_rate": 2.5204533333333336e-05, + "loss": 1.5201939392089843, + "step": 372100 + }, + { + "epoch": 49.626666666666665, + "grad_norm": 0.8618395328521729, + "learning_rate": 2.5197866666666668e-05, + "loss": 1.5215455627441405, + "step": 372200 + }, + { + "epoch": 49.64, + "grad_norm": 0.8641324043273926, + "learning_rate": 2.5191200000000004e-05, + "loss": 1.5232699584960938, + "step": 372300 + }, + { + "epoch": 49.653333333333336, + "grad_norm": 0.8349089026451111, + "learning_rate": 2.5184533333333333e-05, + "loss": 1.5240145874023439, + "step": 372400 + }, + { + "epoch": 49.666666666666664, + "grad_norm": 0.8367394804954529, + "learning_rate": 2.5177933333333335e-05, + "loss": 1.520089111328125, + "step": 372500 + }, + { + "epoch": 49.68, + "grad_norm": 0.8456884026527405, + "learning_rate": 2.5171266666666664e-05, + "loss": 1.5240330505371094, + "step": 372600 + }, + { + "epoch": 49.693333333333335, + "grad_norm": 0.8970924615859985, + "learning_rate": 2.51646e-05, + "loss": 1.5220384216308593, + "step": 372700 + }, + { + "epoch": 49.70666666666666, + "grad_norm": 0.8440273404121399, + "learning_rate": 2.5157933333333332e-05, + "loss": 1.5244894409179688, + "step": 372800 + }, + { + "epoch": 49.72, + "grad_norm": 0.8721365332603455, + "learning_rate": 2.5151266666666668e-05, + "loss": 1.5227665710449219, + "step": 372900 + }, + { + "epoch": 49.733333333333334, + "grad_norm": 0.9237975478172302, + "learning_rate": 2.5144600000000003e-05, + "loss": 1.5297914123535157, + "step": 373000 + }, + { + "epoch": 49.74666666666667, + "grad_norm": 0.8599965572357178, + "learning_rate": 2.5137933333333335e-05, + "loss": 1.5247174072265626, + "step": 373100 + }, + { + "epoch": 49.76, + "grad_norm": 0.8520407676696777, + "learning_rate": 2.513126666666667e-05, + "loss": 1.5293832397460938, + "step": 373200 + }, + { + "epoch": 49.77333333333333, + "grad_norm": 0.8867288827896118, + "learning_rate": 2.5124600000000003e-05, + "loss": 1.5261709594726562, + "step": 373300 + }, + { + "epoch": 49.78666666666667, + "grad_norm": 0.8335996866226196, + "learning_rate": 2.5117933333333332e-05, + "loss": 1.5297763061523437, + "step": 373400 + }, + { + "epoch": 49.8, + "grad_norm": 0.8595085144042969, + "learning_rate": 2.5111266666666668e-05, + "loss": 1.5318873596191407, + "step": 373500 + }, + { + "epoch": 49.81333333333333, + "grad_norm": 0.8604120016098022, + "learning_rate": 2.51046e-05, + "loss": 1.5329582214355468, + "step": 373600 + }, + { + "epoch": 49.82666666666667, + "grad_norm": 0.8619903922080994, + "learning_rate": 2.5097933333333336e-05, + "loss": 1.5340994262695313, + "step": 373700 + }, + { + "epoch": 49.84, + "grad_norm": 0.8415823578834534, + "learning_rate": 2.5091266666666668e-05, + "loss": 1.5291461181640624, + "step": 373800 + }, + { + "epoch": 49.85333333333333, + "grad_norm": 0.8430103063583374, + "learning_rate": 2.5084600000000004e-05, + "loss": 1.5344522094726563, + "step": 373900 + }, + { + "epoch": 49.86666666666667, + "grad_norm": 0.8401354551315308, + "learning_rate": 2.5077933333333336e-05, + "loss": 1.5318260192871094, + "step": 374000 + }, + { + "epoch": 49.88, + "grad_norm": 0.8805033564567566, + "learning_rate": 2.5071266666666665e-05, + "loss": 1.5331027221679687, + "step": 374100 + }, + { + "epoch": 49.89333333333333, + "grad_norm": 0.8586838245391846, + "learning_rate": 2.50646e-05, + "loss": 1.5350416564941407, + "step": 374200 + }, + { + "epoch": 49.906666666666666, + "grad_norm": 0.8289893269538879, + "learning_rate": 2.5057933333333333e-05, + "loss": 1.531967315673828, + "step": 374300 + }, + { + "epoch": 49.92, + "grad_norm": 0.8118442893028259, + "learning_rate": 2.505126666666667e-05, + "loss": 1.5373696899414062, + "step": 374400 + }, + { + "epoch": 49.93333333333333, + "grad_norm": 0.8152410984039307, + "learning_rate": 2.5044666666666668e-05, + "loss": 1.5317294311523437, + "step": 374500 + }, + { + "epoch": 49.946666666666665, + "grad_norm": 0.8541066646575928, + "learning_rate": 2.5038e-05, + "loss": 1.5318400573730468, + "step": 374600 + }, + { + "epoch": 49.96, + "grad_norm": 0.8401637673377991, + "learning_rate": 2.5031333333333335e-05, + "loss": 1.53946044921875, + "step": 374700 + }, + { + "epoch": 49.973333333333336, + "grad_norm": 0.8769694566726685, + "learning_rate": 2.5024666666666668e-05, + "loss": 1.5422596740722656, + "step": 374800 + }, + { + "epoch": 49.986666666666665, + "grad_norm": 0.8622532486915588, + "learning_rate": 2.5018000000000003e-05, + "loss": 1.535623779296875, + "step": 374900 + }, + { + "epoch": 50.0, + "grad_norm": 0.8721447587013245, + "learning_rate": 2.5011333333333336e-05, + "loss": 1.5350186157226562, + "step": 375000 + }, + { + "epoch": 50.013333333333335, + "grad_norm": 0.8176959753036499, + "learning_rate": 2.5004666666666665e-05, + "loss": 1.466029052734375, + "step": 375100 + }, + { + "epoch": 50.026666666666664, + "grad_norm": 0.8403975963592529, + "learning_rate": 2.4998000000000004e-05, + "loss": 1.4674476623535155, + "step": 375200 + }, + { + "epoch": 50.04, + "grad_norm": 0.7836979031562805, + "learning_rate": 2.4991333333333332e-05, + "loss": 1.4652630615234374, + "step": 375300 + }, + { + "epoch": 50.053333333333335, + "grad_norm": 0.8018586039543152, + "learning_rate": 2.4984666666666668e-05, + "loss": 1.4712281799316407, + "step": 375400 + }, + { + "epoch": 50.06666666666667, + "grad_norm": 0.8064463138580322, + "learning_rate": 2.4978e-05, + "loss": 1.4708700561523438, + "step": 375500 + }, + { + "epoch": 50.08, + "grad_norm": 0.8261614441871643, + "learning_rate": 2.4971333333333336e-05, + "loss": 1.4716073608398437, + "step": 375600 + }, + { + "epoch": 50.093333333333334, + "grad_norm": 0.837766706943512, + "learning_rate": 2.496466666666667e-05, + "loss": 1.4701448059082032, + "step": 375700 + }, + { + "epoch": 50.10666666666667, + "grad_norm": 0.8290911912918091, + "learning_rate": 2.4958e-05, + "loss": 1.4736390686035157, + "step": 375800 + }, + { + "epoch": 50.12, + "grad_norm": 0.8385511636734009, + "learning_rate": 2.4951333333333336e-05, + "loss": 1.47410888671875, + "step": 375900 + }, + { + "epoch": 50.13333333333333, + "grad_norm": 0.8306918144226074, + "learning_rate": 2.494466666666667e-05, + "loss": 1.473253173828125, + "step": 376000 + }, + { + "epoch": 50.14666666666667, + "grad_norm": 0.8213056325912476, + "learning_rate": 2.4938e-05, + "loss": 1.4761256408691406, + "step": 376100 + }, + { + "epoch": 50.16, + "grad_norm": 0.8195951581001282, + "learning_rate": 2.4931333333333333e-05, + "loss": 1.4738999938964843, + "step": 376200 + }, + { + "epoch": 50.17333333333333, + "grad_norm": 0.8188632130622864, + "learning_rate": 2.492466666666667e-05, + "loss": 1.474258270263672, + "step": 376300 + }, + { + "epoch": 50.18666666666667, + "grad_norm": 0.8272870182991028, + "learning_rate": 2.4918e-05, + "loss": 1.4804847717285157, + "step": 376400 + }, + { + "epoch": 50.2, + "grad_norm": 0.8472500443458557, + "learning_rate": 2.4911333333333333e-05, + "loss": 1.4830419921875, + "step": 376500 + }, + { + "epoch": 50.21333333333333, + "grad_norm": 0.8540857434272766, + "learning_rate": 2.4904733333333336e-05, + "loss": 1.4762397766113282, + "step": 376600 + }, + { + "epoch": 50.22666666666667, + "grad_norm": 0.8313518762588501, + "learning_rate": 2.4898066666666668e-05, + "loss": 1.488265838623047, + "step": 376700 + }, + { + "epoch": 50.24, + "grad_norm": 0.8233117461204529, + "learning_rate": 2.48914e-05, + "loss": 1.4829058837890625, + "step": 376800 + }, + { + "epoch": 50.25333333333333, + "grad_norm": 0.779459536075592, + "learning_rate": 2.4884733333333336e-05, + "loss": 1.4825271606445312, + "step": 376900 + }, + { + "epoch": 50.266666666666666, + "grad_norm": 0.8867989182472229, + "learning_rate": 2.4878066666666668e-05, + "loss": 1.4807273864746093, + "step": 377000 + }, + { + "epoch": 50.28, + "grad_norm": 0.8341526985168457, + "learning_rate": 2.48714e-05, + "loss": 1.4884478759765625, + "step": 377100 + }, + { + "epoch": 50.29333333333334, + "grad_norm": 0.8194299340248108, + "learning_rate": 2.4864733333333333e-05, + "loss": 1.49041259765625, + "step": 377200 + }, + { + "epoch": 50.306666666666665, + "grad_norm": 0.8118073344230652, + "learning_rate": 2.485806666666667e-05, + "loss": 1.4905577087402344, + "step": 377300 + }, + { + "epoch": 50.32, + "grad_norm": 0.8379462361335754, + "learning_rate": 2.4851400000000004e-05, + "loss": 1.489639434814453, + "step": 377400 + }, + { + "epoch": 50.333333333333336, + "grad_norm": 0.8261382579803467, + "learning_rate": 2.4844733333333333e-05, + "loss": 1.4874810791015625, + "step": 377500 + }, + { + "epoch": 50.346666666666664, + "grad_norm": 0.8561468124389648, + "learning_rate": 2.483806666666667e-05, + "loss": 1.4892660522460937, + "step": 377600 + }, + { + "epoch": 50.36, + "grad_norm": 0.8199340105056763, + "learning_rate": 2.48314e-05, + "loss": 1.4900086975097657, + "step": 377700 + }, + { + "epoch": 50.373333333333335, + "grad_norm": 0.8406544327735901, + "learning_rate": 2.4824733333333333e-05, + "loss": 1.4931591796875, + "step": 377800 + }, + { + "epoch": 50.38666666666666, + "grad_norm": 0.855679452419281, + "learning_rate": 2.481806666666667e-05, + "loss": 1.496982879638672, + "step": 377900 + }, + { + "epoch": 50.4, + "grad_norm": 0.8296971917152405, + "learning_rate": 2.48114e-05, + "loss": 1.4914996337890625, + "step": 378000 + }, + { + "epoch": 50.413333333333334, + "grad_norm": 0.8180424571037292, + "learning_rate": 2.4804733333333337e-05, + "loss": 1.4951356506347657, + "step": 378100 + }, + { + "epoch": 50.42666666666667, + "grad_norm": 0.7618070244789124, + "learning_rate": 2.4798066666666666e-05, + "loss": 1.4911334228515625, + "step": 378200 + }, + { + "epoch": 50.44, + "grad_norm": 0.8503825664520264, + "learning_rate": 2.47914e-05, + "loss": 1.4923796081542968, + "step": 378300 + }, + { + "epoch": 50.45333333333333, + "grad_norm": 0.8834084272384644, + "learning_rate": 2.4784733333333333e-05, + "loss": 1.5002174377441406, + "step": 378400 + }, + { + "epoch": 50.46666666666667, + "grad_norm": 0.8220873475074768, + "learning_rate": 2.477806666666667e-05, + "loss": 1.4986158752441405, + "step": 378500 + }, + { + "epoch": 50.48, + "grad_norm": 0.8193914294242859, + "learning_rate": 2.4771466666666668e-05, + "loss": 1.5011746215820312, + "step": 378600 + }, + { + "epoch": 50.49333333333333, + "grad_norm": 0.800317108631134, + "learning_rate": 2.47648e-05, + "loss": 1.4963475036621094, + "step": 378700 + }, + { + "epoch": 50.50666666666667, + "grad_norm": 0.9164362549781799, + "learning_rate": 2.4758133333333333e-05, + "loss": 1.5000321960449219, + "step": 378800 + }, + { + "epoch": 50.52, + "grad_norm": 0.8191181421279907, + "learning_rate": 2.475146666666667e-05, + "loss": 1.4975949096679688, + "step": 378900 + }, + { + "epoch": 50.53333333333333, + "grad_norm": 0.8659054040908813, + "learning_rate": 2.47448e-05, + "loss": 1.5002691650390625, + "step": 379000 + }, + { + "epoch": 50.54666666666667, + "grad_norm": 0.8360313177108765, + "learning_rate": 2.4738133333333336e-05, + "loss": 1.5039067077636719, + "step": 379100 + }, + { + "epoch": 50.56, + "grad_norm": 0.8391720652580261, + "learning_rate": 2.4731466666666665e-05, + "loss": 1.5015184020996093, + "step": 379200 + }, + { + "epoch": 50.57333333333333, + "grad_norm": 0.8605763912200928, + "learning_rate": 2.47248e-05, + "loss": 1.4976239013671875, + "step": 379300 + }, + { + "epoch": 50.586666666666666, + "grad_norm": 0.8516925573348999, + "learning_rate": 2.4718133333333333e-05, + "loss": 1.506053466796875, + "step": 379400 + }, + { + "epoch": 50.6, + "grad_norm": 0.8585731387138367, + "learning_rate": 2.471146666666667e-05, + "loss": 1.5041627502441406, + "step": 379500 + }, + { + "epoch": 50.61333333333333, + "grad_norm": 0.8855695724487305, + "learning_rate": 2.47048e-05, + "loss": 1.511184539794922, + "step": 379600 + }, + { + "epoch": 50.626666666666665, + "grad_norm": 0.8389919996261597, + "learning_rate": 2.4698133333333333e-05, + "loss": 1.5034822082519532, + "step": 379700 + }, + { + "epoch": 50.64, + "grad_norm": 0.8592944145202637, + "learning_rate": 2.469146666666667e-05, + "loss": 1.5039569091796876, + "step": 379800 + }, + { + "epoch": 50.653333333333336, + "grad_norm": 0.8480226397514343, + "learning_rate": 2.46848e-05, + "loss": 1.5057781982421874, + "step": 379900 + }, + { + "epoch": 50.666666666666664, + "grad_norm": 0.8565899133682251, + "learning_rate": 2.4678133333333334e-05, + "loss": 1.5090969848632811, + "step": 380000 + }, + { + "epoch": 50.68, + "grad_norm": 0.8642663359642029, + "learning_rate": 2.467146666666667e-05, + "loss": 1.5119166564941406, + "step": 380100 + }, + { + "epoch": 50.693333333333335, + "grad_norm": 0.8396902084350586, + "learning_rate": 2.46648e-05, + "loss": 1.5146353149414062, + "step": 380200 + }, + { + "epoch": 50.70666666666666, + "grad_norm": 0.8606100678443909, + "learning_rate": 2.4658133333333337e-05, + "loss": 1.5087774658203126, + "step": 380300 + }, + { + "epoch": 50.72, + "grad_norm": 0.8133344054222107, + "learning_rate": 2.4651466666666666e-05, + "loss": 1.5128636169433594, + "step": 380400 + }, + { + "epoch": 50.733333333333334, + "grad_norm": 0.8432591557502747, + "learning_rate": 2.46448e-05, + "loss": 1.5084796142578125, + "step": 380500 + }, + { + "epoch": 50.74666666666667, + "grad_norm": 0.8862467408180237, + "learning_rate": 2.46382e-05, + "loss": 1.5145498657226562, + "step": 380600 + }, + { + "epoch": 50.76, + "grad_norm": 0.883004903793335, + "learning_rate": 2.4631533333333333e-05, + "loss": 1.5110755920410157, + "step": 380700 + }, + { + "epoch": 50.77333333333333, + "grad_norm": 0.8901974558830261, + "learning_rate": 2.462486666666667e-05, + "loss": 1.5167329406738281, + "step": 380800 + }, + { + "epoch": 50.78666666666667, + "grad_norm": 0.841244637966156, + "learning_rate": 2.46182e-05, + "loss": 1.5136112976074219, + "step": 380900 + }, + { + "epoch": 50.8, + "grad_norm": 0.8438834547996521, + "learning_rate": 2.4611533333333333e-05, + "loss": 1.5152095031738282, + "step": 381000 + }, + { + "epoch": 50.81333333333333, + "grad_norm": 0.8658137321472168, + "learning_rate": 2.460486666666667e-05, + "loss": 1.513826904296875, + "step": 381100 + }, + { + "epoch": 50.82666666666667, + "grad_norm": 0.882071852684021, + "learning_rate": 2.45982e-05, + "loss": 1.5154730224609374, + "step": 381200 + }, + { + "epoch": 50.84, + "grad_norm": 0.8813706040382385, + "learning_rate": 2.4591533333333337e-05, + "loss": 1.51885498046875, + "step": 381300 + }, + { + "epoch": 50.85333333333333, + "grad_norm": 0.8508647084236145, + "learning_rate": 2.4584866666666666e-05, + "loss": 1.5158058166503907, + "step": 381400 + }, + { + "epoch": 50.86666666666667, + "grad_norm": 0.8502191305160522, + "learning_rate": 2.45782e-05, + "loss": 1.5165373229980468, + "step": 381500 + }, + { + "epoch": 50.88, + "grad_norm": 0.8656032085418701, + "learning_rate": 2.4571533333333337e-05, + "loss": 1.5202676391601562, + "step": 381600 + }, + { + "epoch": 50.89333333333333, + "grad_norm": 0.8280258774757385, + "learning_rate": 2.4564866666666666e-05, + "loss": 1.523727569580078, + "step": 381700 + }, + { + "epoch": 50.906666666666666, + "grad_norm": 0.8496196269989014, + "learning_rate": 2.45582e-05, + "loss": 1.5180378723144532, + "step": 381800 + }, + { + "epoch": 50.92, + "grad_norm": 0.9003440141677856, + "learning_rate": 2.4551533333333334e-05, + "loss": 1.52153564453125, + "step": 381900 + }, + { + "epoch": 50.93333333333333, + "grad_norm": 0.8458821177482605, + "learning_rate": 2.454486666666667e-05, + "loss": 1.5277166748046875, + "step": 382000 + }, + { + "epoch": 50.946666666666665, + "grad_norm": 0.8582217693328857, + "learning_rate": 2.45382e-05, + "loss": 1.5160935974121095, + "step": 382100 + }, + { + "epoch": 50.96, + "grad_norm": 0.8812438249588013, + "learning_rate": 2.4531533333333334e-05, + "loss": 1.5228970336914063, + "step": 382200 + }, + { + "epoch": 50.973333333333336, + "grad_norm": 0.8399114608764648, + "learning_rate": 2.452486666666667e-05, + "loss": 1.5246499633789063, + "step": 382300 + }, + { + "epoch": 50.986666666666665, + "grad_norm": 0.8204259276390076, + "learning_rate": 2.4518200000000002e-05, + "loss": 1.5253396606445313, + "step": 382400 + }, + { + "epoch": 51.0, + "grad_norm": 0.8467189073562622, + "learning_rate": 2.4511533333333334e-05, + "loss": 1.5258003234863282, + "step": 382500 + }, + { + "epoch": 51.013333333333335, + "grad_norm": 0.8255739212036133, + "learning_rate": 2.4504933333333337e-05, + "loss": 1.4497154235839844, + "step": 382600 + }, + { + "epoch": 51.026666666666664, + "grad_norm": 0.8379701375961304, + "learning_rate": 2.4498266666666665e-05, + "loss": 1.452757568359375, + "step": 382700 + }, + { + "epoch": 51.04, + "grad_norm": 0.8153045177459717, + "learning_rate": 2.44916e-05, + "loss": 1.4591259765625, + "step": 382800 + }, + { + "epoch": 51.053333333333335, + "grad_norm": 0.8011037111282349, + "learning_rate": 2.4484933333333333e-05, + "loss": 1.4575518798828124, + "step": 382900 + }, + { + "epoch": 51.06666666666667, + "grad_norm": 0.8315128087997437, + "learning_rate": 2.447826666666667e-05, + "loss": 1.4647442626953124, + "step": 383000 + }, + { + "epoch": 51.08, + "grad_norm": 0.8852720260620117, + "learning_rate": 2.44716e-05, + "loss": 1.459652099609375, + "step": 383100 + }, + { + "epoch": 51.093333333333334, + "grad_norm": 0.837066113948822, + "learning_rate": 2.4464933333333334e-05, + "loss": 1.4613265991210938, + "step": 383200 + }, + { + "epoch": 51.10666666666667, + "grad_norm": 0.8697075843811035, + "learning_rate": 2.445826666666667e-05, + "loss": 1.4583189392089844, + "step": 383300 + }, + { + "epoch": 51.12, + "grad_norm": 0.8551360368728638, + "learning_rate": 2.44516e-05, + "loss": 1.4582942199707032, + "step": 383400 + }, + { + "epoch": 51.13333333333333, + "grad_norm": 0.8545364141464233, + "learning_rate": 2.4444933333333334e-05, + "loss": 1.460870819091797, + "step": 383500 + }, + { + "epoch": 51.14666666666667, + "grad_norm": 0.8045480251312256, + "learning_rate": 2.4438266666666666e-05, + "loss": 1.4661735534667968, + "step": 383600 + }, + { + "epoch": 51.16, + "grad_norm": 0.8242552876472473, + "learning_rate": 2.44316e-05, + "loss": 1.4653382873535157, + "step": 383700 + }, + { + "epoch": 51.17333333333333, + "grad_norm": 0.8422017693519592, + "learning_rate": 2.4424933333333337e-05, + "loss": 1.467156982421875, + "step": 383800 + }, + { + "epoch": 51.18666666666667, + "grad_norm": 0.8462349772453308, + "learning_rate": 2.4418266666666666e-05, + "loss": 1.471797637939453, + "step": 383900 + }, + { + "epoch": 51.2, + "grad_norm": 0.8934951424598694, + "learning_rate": 2.4411600000000002e-05, + "loss": 1.4692425537109375, + "step": 384000 + }, + { + "epoch": 51.21333333333333, + "grad_norm": 0.8612936735153198, + "learning_rate": 2.4404933333333334e-05, + "loss": 1.4652291870117187, + "step": 384100 + }, + { + "epoch": 51.22666666666667, + "grad_norm": 0.8447757959365845, + "learning_rate": 2.4398266666666666e-05, + "loss": 1.4715693664550782, + "step": 384200 + }, + { + "epoch": 51.24, + "grad_norm": 0.8683099746704102, + "learning_rate": 2.4391600000000002e-05, + "loss": 1.4702517700195312, + "step": 384300 + }, + { + "epoch": 51.25333333333333, + "grad_norm": 0.789240837097168, + "learning_rate": 2.4384933333333334e-05, + "loss": 1.4706991577148438, + "step": 384400 + }, + { + "epoch": 51.266666666666666, + "grad_norm": 0.8664871454238892, + "learning_rate": 2.437826666666667e-05, + "loss": 1.4718405151367187, + "step": 384500 + }, + { + "epoch": 51.28, + "grad_norm": 0.8637537956237793, + "learning_rate": 2.437166666666667e-05, + "loss": 1.4716297912597656, + "step": 384600 + }, + { + "epoch": 51.29333333333334, + "grad_norm": 0.8115244507789612, + "learning_rate": 2.4365e-05, + "loss": 1.4719580078125, + "step": 384700 + }, + { + "epoch": 51.306666666666665, + "grad_norm": 0.8004962801933289, + "learning_rate": 2.4358333333333337e-05, + "loss": 1.4749884033203124, + "step": 384800 + }, + { + "epoch": 51.32, + "grad_norm": 0.8783427476882935, + "learning_rate": 2.4351666666666666e-05, + "loss": 1.4797103881835938, + "step": 384900 + }, + { + "epoch": 51.333333333333336, + "grad_norm": 0.8578570485115051, + "learning_rate": 2.4345e-05, + "loss": 1.4746359252929688, + "step": 385000 + }, + { + "epoch": 51.346666666666664, + "grad_norm": 0.8788546323776245, + "learning_rate": 2.4338333333333334e-05, + "loss": 1.4802169799804688, + "step": 385100 + }, + { + "epoch": 51.36, + "grad_norm": 0.8816238641738892, + "learning_rate": 2.4331666666666666e-05, + "loss": 1.47786865234375, + "step": 385200 + }, + { + "epoch": 51.373333333333335, + "grad_norm": 0.8610212206840515, + "learning_rate": 2.4325000000000002e-05, + "loss": 1.4802935791015626, + "step": 385300 + }, + { + "epoch": 51.38666666666666, + "grad_norm": 0.8929548263549805, + "learning_rate": 2.4318333333333334e-05, + "loss": 1.4820956420898437, + "step": 385400 + }, + { + "epoch": 51.4, + "grad_norm": 0.8102960586547852, + "learning_rate": 2.431166666666667e-05, + "loss": 1.4810777282714844, + "step": 385500 + }, + { + "epoch": 51.413333333333334, + "grad_norm": 0.8530375361442566, + "learning_rate": 2.4305e-05, + "loss": 1.4792242431640625, + "step": 385600 + }, + { + "epoch": 51.42666666666667, + "grad_norm": 0.8311903476715088, + "learning_rate": 2.4298333333333334e-05, + "loss": 1.4845094299316406, + "step": 385700 + }, + { + "epoch": 51.44, + "grad_norm": 0.8655042052268982, + "learning_rate": 2.4291666666666666e-05, + "loss": 1.482476043701172, + "step": 385800 + }, + { + "epoch": 51.45333333333333, + "grad_norm": 0.8922598361968994, + "learning_rate": 2.4285000000000002e-05, + "loss": 1.4829647827148438, + "step": 385900 + }, + { + "epoch": 51.46666666666667, + "grad_norm": 0.8447866439819336, + "learning_rate": 2.4278333333333334e-05, + "loss": 1.4828948974609375, + "step": 386000 + }, + { + "epoch": 51.48, + "grad_norm": 0.8586673736572266, + "learning_rate": 2.4271666666666667e-05, + "loss": 1.4850732421875, + "step": 386100 + }, + { + "epoch": 51.49333333333333, + "grad_norm": 0.8505076766014099, + "learning_rate": 2.4265000000000002e-05, + "loss": 1.4824075317382812, + "step": 386200 + }, + { + "epoch": 51.50666666666667, + "grad_norm": 0.8577302694320679, + "learning_rate": 2.4258333333333335e-05, + "loss": 1.4877815246582031, + "step": 386300 + }, + { + "epoch": 51.52, + "grad_norm": 0.8362126350402832, + "learning_rate": 2.4251666666666667e-05, + "loss": 1.4846498107910155, + "step": 386400 + }, + { + "epoch": 51.53333333333333, + "grad_norm": 0.8587775230407715, + "learning_rate": 2.4245000000000002e-05, + "loss": 1.484984130859375, + "step": 386500 + }, + { + "epoch": 51.54666666666667, + "grad_norm": 0.871204137802124, + "learning_rate": 2.4238333333333335e-05, + "loss": 1.4914971923828124, + "step": 386600 + }, + { + "epoch": 51.56, + "grad_norm": 0.8179042935371399, + "learning_rate": 2.4231733333333334e-05, + "loss": 1.4899531555175782, + "step": 386700 + }, + { + "epoch": 51.57333333333333, + "grad_norm": 0.8490532040596008, + "learning_rate": 2.422506666666667e-05, + "loss": 1.4912181091308594, + "step": 386800 + }, + { + "epoch": 51.586666666666666, + "grad_norm": 0.8682654500007629, + "learning_rate": 2.4218400000000002e-05, + "loss": 1.4918653869628906, + "step": 386900 + }, + { + "epoch": 51.6, + "grad_norm": 0.890491247177124, + "learning_rate": 2.4211733333333334e-05, + "loss": 1.4917636108398438, + "step": 387000 + }, + { + "epoch": 51.61333333333333, + "grad_norm": 0.8665891885757446, + "learning_rate": 2.4205066666666666e-05, + "loss": 1.4941488647460937, + "step": 387100 + }, + { + "epoch": 51.626666666666665, + "grad_norm": 0.8592315316200256, + "learning_rate": 2.4198400000000002e-05, + "loss": 1.492812042236328, + "step": 387200 + }, + { + "epoch": 51.64, + "grad_norm": 0.8546895980834961, + "learning_rate": 2.4191733333333334e-05, + "loss": 1.4904875183105468, + "step": 387300 + }, + { + "epoch": 51.653333333333336, + "grad_norm": 0.8656253814697266, + "learning_rate": 2.4185066666666666e-05, + "loss": 1.4929344177246093, + "step": 387400 + }, + { + "epoch": 51.666666666666664, + "grad_norm": 0.8968192934989929, + "learning_rate": 2.4178400000000002e-05, + "loss": 1.4941493225097657, + "step": 387500 + }, + { + "epoch": 51.68, + "grad_norm": 0.8238973617553711, + "learning_rate": 2.4171733333333334e-05, + "loss": 1.4932928466796875, + "step": 387600 + }, + { + "epoch": 51.693333333333335, + "grad_norm": 0.8756453394889832, + "learning_rate": 2.416506666666667e-05, + "loss": 1.5003330993652344, + "step": 387700 + }, + { + "epoch": 51.70666666666666, + "grad_norm": 0.8613998293876648, + "learning_rate": 2.41584e-05, + "loss": 1.499681396484375, + "step": 387800 + }, + { + "epoch": 51.72, + "grad_norm": 0.8716132640838623, + "learning_rate": 2.4151733333333335e-05, + "loss": 1.4972032165527345, + "step": 387900 + }, + { + "epoch": 51.733333333333334, + "grad_norm": 0.8987093567848206, + "learning_rate": 2.414506666666667e-05, + "loss": 1.5022872924804687, + "step": 388000 + }, + { + "epoch": 51.74666666666667, + "grad_norm": 0.8321843147277832, + "learning_rate": 2.41384e-05, + "loss": 1.4971646118164061, + "step": 388100 + }, + { + "epoch": 51.76, + "grad_norm": 0.8500959277153015, + "learning_rate": 2.4131733333333335e-05, + "loss": 1.5017050170898438, + "step": 388200 + }, + { + "epoch": 51.77333333333333, + "grad_norm": 0.8492921590805054, + "learning_rate": 2.4125066666666667e-05, + "loss": 1.4948918151855468, + "step": 388300 + }, + { + "epoch": 51.78666666666667, + "grad_norm": 0.8338704705238342, + "learning_rate": 2.4118400000000003e-05, + "loss": 1.5020379638671875, + "step": 388400 + }, + { + "epoch": 51.8, + "grad_norm": 0.8522675037384033, + "learning_rate": 2.4111733333333335e-05, + "loss": 1.5005595397949218, + "step": 388500 + }, + { + "epoch": 51.81333333333333, + "grad_norm": 0.8284652829170227, + "learning_rate": 2.4105066666666667e-05, + "loss": 1.5022247314453125, + "step": 388600 + }, + { + "epoch": 51.82666666666667, + "grad_norm": 0.862209141254425, + "learning_rate": 2.409846666666667e-05, + "loss": 1.504408416748047, + "step": 388700 + }, + { + "epoch": 51.84, + "grad_norm": 0.8681904077529907, + "learning_rate": 2.4091800000000002e-05, + "loss": 1.5046144104003907, + "step": 388800 + }, + { + "epoch": 51.85333333333333, + "grad_norm": 0.8120859861373901, + "learning_rate": 2.4085133333333334e-05, + "loss": 1.5099690246582032, + "step": 388900 + }, + { + "epoch": 51.86666666666667, + "grad_norm": 0.8199965357780457, + "learning_rate": 2.407846666666667e-05, + "loss": 1.5086412048339843, + "step": 389000 + }, + { + "epoch": 51.88, + "grad_norm": 0.8781035542488098, + "learning_rate": 2.40718e-05, + "loss": 1.5068019104003907, + "step": 389100 + }, + { + "epoch": 51.89333333333333, + "grad_norm": 0.8746353983879089, + "learning_rate": 2.4065133333333334e-05, + "loss": 1.5051779174804687, + "step": 389200 + }, + { + "epoch": 51.906666666666666, + "grad_norm": 0.8584237098693848, + "learning_rate": 2.4058466666666667e-05, + "loss": 1.5083631896972656, + "step": 389300 + }, + { + "epoch": 51.92, + "grad_norm": 0.9089388251304626, + "learning_rate": 2.4051800000000002e-05, + "loss": 1.5061935424804687, + "step": 389400 + }, + { + "epoch": 51.93333333333333, + "grad_norm": 0.8394655585289001, + "learning_rate": 2.4045133333333335e-05, + "loss": 1.509464569091797, + "step": 389500 + }, + { + "epoch": 51.946666666666665, + "grad_norm": 0.8279618620872498, + "learning_rate": 2.4038466666666667e-05, + "loss": 1.5109159851074219, + "step": 389600 + }, + { + "epoch": 51.96, + "grad_norm": 0.9038397669792175, + "learning_rate": 2.4031800000000003e-05, + "loss": 1.510810089111328, + "step": 389700 + }, + { + "epoch": 51.973333333333336, + "grad_norm": 0.899217963218689, + "learning_rate": 2.4025133333333335e-05, + "loss": 1.5102980041503906, + "step": 389800 + }, + { + "epoch": 51.986666666666665, + "grad_norm": 0.905498743057251, + "learning_rate": 2.4018466666666667e-05, + "loss": 1.510074920654297, + "step": 389900 + }, + { + "epoch": 52.0, + "grad_norm": 0.8077598214149475, + "learning_rate": 2.40118e-05, + "loss": 1.5141552734375, + "step": 390000 + }, + { + "epoch": 52.013333333333335, + "grad_norm": 0.8236868381500244, + "learning_rate": 2.4005133333333335e-05, + "loss": 1.444603729248047, + "step": 390100 + }, + { + "epoch": 52.026666666666664, + "grad_norm": 0.8070313930511475, + "learning_rate": 2.399846666666667e-05, + "loss": 1.4379257202148437, + "step": 390200 + }, + { + "epoch": 52.04, + "grad_norm": 0.7745979428291321, + "learning_rate": 2.39918e-05, + "loss": 1.4440399169921876, + "step": 390300 + }, + { + "epoch": 52.053333333333335, + "grad_norm": 0.8141463398933411, + "learning_rate": 2.3985133333333335e-05, + "loss": 1.4421783447265626, + "step": 390400 + }, + { + "epoch": 52.06666666666667, + "grad_norm": 0.8253259062767029, + "learning_rate": 2.3978466666666667e-05, + "loss": 1.4468896484375, + "step": 390500 + }, + { + "epoch": 52.08, + "grad_norm": 0.8300577402114868, + "learning_rate": 2.39718e-05, + "loss": 1.4401560974121095, + "step": 390600 + }, + { + "epoch": 52.093333333333334, + "grad_norm": 0.854324996471405, + "learning_rate": 2.3965200000000002e-05, + "loss": 1.4524754333496093, + "step": 390700 + }, + { + "epoch": 52.10666666666667, + "grad_norm": 0.8196046352386475, + "learning_rate": 2.3958533333333334e-05, + "loss": 1.4522889709472657, + "step": 390800 + }, + { + "epoch": 52.12, + "grad_norm": 0.8217240571975708, + "learning_rate": 2.3951866666666667e-05, + "loss": 1.4478153991699219, + "step": 390900 + }, + { + "epoch": 52.13333333333333, + "grad_norm": 0.8146061301231384, + "learning_rate": 2.3945200000000002e-05, + "loss": 1.450179443359375, + "step": 391000 + }, + { + "epoch": 52.14666666666667, + "grad_norm": 0.8496772646903992, + "learning_rate": 2.3938533333333335e-05, + "loss": 1.448777618408203, + "step": 391100 + }, + { + "epoch": 52.16, + "grad_norm": 0.8619560599327087, + "learning_rate": 2.393186666666667e-05, + "loss": 1.4484617614746094, + "step": 391200 + }, + { + "epoch": 52.17333333333333, + "grad_norm": 0.8483819365501404, + "learning_rate": 2.39252e-05, + "loss": 1.451850128173828, + "step": 391300 + }, + { + "epoch": 52.18666666666667, + "grad_norm": 0.8521955609321594, + "learning_rate": 2.3918533333333335e-05, + "loss": 1.459192657470703, + "step": 391400 + }, + { + "epoch": 52.2, + "grad_norm": 0.8739776611328125, + "learning_rate": 2.3911866666666667e-05, + "loss": 1.4575103759765624, + "step": 391500 + }, + { + "epoch": 52.21333333333333, + "grad_norm": 0.8248653411865234, + "learning_rate": 2.39052e-05, + "loss": 1.458475341796875, + "step": 391600 + }, + { + "epoch": 52.22666666666667, + "grad_norm": 0.8667312264442444, + "learning_rate": 2.3898533333333335e-05, + "loss": 1.4586300659179687, + "step": 391700 + }, + { + "epoch": 52.24, + "grad_norm": 0.8715050220489502, + "learning_rate": 2.3891866666666667e-05, + "loss": 1.4606393432617188, + "step": 391800 + }, + { + "epoch": 52.25333333333333, + "grad_norm": 0.8274866342544556, + "learning_rate": 2.3885200000000003e-05, + "loss": 1.4589753723144532, + "step": 391900 + }, + { + "epoch": 52.266666666666666, + "grad_norm": 0.8984260559082031, + "learning_rate": 2.3878533333333332e-05, + "loss": 1.4624786376953125, + "step": 392000 + }, + { + "epoch": 52.28, + "grad_norm": 0.8441860675811768, + "learning_rate": 2.3871866666666668e-05, + "loss": 1.4648696899414062, + "step": 392100 + }, + { + "epoch": 52.29333333333334, + "grad_norm": 0.8562932014465332, + "learning_rate": 2.38652e-05, + "loss": 1.4625413513183594, + "step": 392200 + }, + { + "epoch": 52.306666666666665, + "grad_norm": 0.8100069165229797, + "learning_rate": 2.3858533333333335e-05, + "loss": 1.4674345397949218, + "step": 392300 + }, + { + "epoch": 52.32, + "grad_norm": 0.879694938659668, + "learning_rate": 2.3851866666666668e-05, + "loss": 1.462593536376953, + "step": 392400 + }, + { + "epoch": 52.333333333333336, + "grad_norm": 0.8324185609817505, + "learning_rate": 2.38452e-05, + "loss": 1.4686509704589843, + "step": 392500 + }, + { + "epoch": 52.346666666666664, + "grad_norm": 0.8371502161026001, + "learning_rate": 2.3838533333333336e-05, + "loss": 1.468300323486328, + "step": 392600 + }, + { + "epoch": 52.36, + "grad_norm": 0.8931401968002319, + "learning_rate": 2.3831866666666668e-05, + "loss": 1.4668818664550782, + "step": 392700 + }, + { + "epoch": 52.373333333333335, + "grad_norm": 0.8364928960800171, + "learning_rate": 2.3825266666666667e-05, + "loss": 1.4689984130859375, + "step": 392800 + }, + { + "epoch": 52.38666666666666, + "grad_norm": 0.861511766910553, + "learning_rate": 2.3818600000000003e-05, + "loss": 1.4642536926269532, + "step": 392900 + }, + { + "epoch": 52.4, + "grad_norm": 0.8501995801925659, + "learning_rate": 2.3811933333333335e-05, + "loss": 1.4702130126953126, + "step": 393000 + }, + { + "epoch": 52.413333333333334, + "grad_norm": 0.8685861229896545, + "learning_rate": 2.3805266666666667e-05, + "loss": 1.472560577392578, + "step": 393100 + }, + { + "epoch": 52.42666666666667, + "grad_norm": 0.8422084450721741, + "learning_rate": 2.3798600000000003e-05, + "loss": 1.4753160095214843, + "step": 393200 + }, + { + "epoch": 52.44, + "grad_norm": 0.8546521663665771, + "learning_rate": 2.3791933333333335e-05, + "loss": 1.473077392578125, + "step": 393300 + }, + { + "epoch": 52.45333333333333, + "grad_norm": 0.8383651375770569, + "learning_rate": 2.3785266666666667e-05, + "loss": 1.468947296142578, + "step": 393400 + }, + { + "epoch": 52.46666666666667, + "grad_norm": 0.8365948796272278, + "learning_rate": 2.37786e-05, + "loss": 1.4694491577148439, + "step": 393500 + }, + { + "epoch": 52.48, + "grad_norm": 0.8776941299438477, + "learning_rate": 2.3771933333333335e-05, + "loss": 1.4765846252441406, + "step": 393600 + }, + { + "epoch": 52.49333333333333, + "grad_norm": 0.8972512483596802, + "learning_rate": 2.3765266666666668e-05, + "loss": 1.4798658752441407, + "step": 393700 + }, + { + "epoch": 52.50666666666667, + "grad_norm": 0.87769615650177, + "learning_rate": 2.37586e-05, + "loss": 1.4698507690429687, + "step": 393800 + }, + { + "epoch": 52.52, + "grad_norm": 0.8386378884315491, + "learning_rate": 2.3751933333333335e-05, + "loss": 1.4793057250976562, + "step": 393900 + }, + { + "epoch": 52.53333333333333, + "grad_norm": 0.85838383436203, + "learning_rate": 2.3745266666666668e-05, + "loss": 1.4752388000488281, + "step": 394000 + }, + { + "epoch": 52.54666666666667, + "grad_norm": 0.8824598789215088, + "learning_rate": 2.3738600000000003e-05, + "loss": 1.4773374938964843, + "step": 394100 + }, + { + "epoch": 52.56, + "grad_norm": 0.8590186834335327, + "learning_rate": 2.3731933333333332e-05, + "loss": 1.4786466979980468, + "step": 394200 + }, + { + "epoch": 52.57333333333333, + "grad_norm": 0.8705313801765442, + "learning_rate": 2.3725266666666668e-05, + "loss": 1.4816523742675782, + "step": 394300 + }, + { + "epoch": 52.586666666666666, + "grad_norm": 0.865382194519043, + "learning_rate": 2.3718600000000004e-05, + "loss": 1.478979034423828, + "step": 394400 + }, + { + "epoch": 52.6, + "grad_norm": 0.8217282891273499, + "learning_rate": 2.3711933333333332e-05, + "loss": 1.4787644958496093, + "step": 394500 + }, + { + "epoch": 52.61333333333333, + "grad_norm": 0.8592541217803955, + "learning_rate": 2.3705266666666668e-05, + "loss": 1.482845458984375, + "step": 394600 + }, + { + "epoch": 52.626666666666665, + "grad_norm": 0.8390605449676514, + "learning_rate": 2.36986e-05, + "loss": 1.4851654052734375, + "step": 394700 + }, + { + "epoch": 52.64, + "grad_norm": 0.9070495963096619, + "learning_rate": 2.3692e-05, + "loss": 1.4781282043457031, + "step": 394800 + }, + { + "epoch": 52.653333333333336, + "grad_norm": 0.8450265526771545, + "learning_rate": 2.3685333333333335e-05, + "loss": 1.483128204345703, + "step": 394900 + }, + { + "epoch": 52.666666666666664, + "grad_norm": 0.8272682428359985, + "learning_rate": 2.3678666666666667e-05, + "loss": 1.484342041015625, + "step": 395000 + }, + { + "epoch": 52.68, + "grad_norm": 0.9051398634910583, + "learning_rate": 2.3672000000000003e-05, + "loss": 1.4861419677734375, + "step": 395100 + }, + { + "epoch": 52.693333333333335, + "grad_norm": 0.8721572160720825, + "learning_rate": 2.3665333333333335e-05, + "loss": 1.4825254821777343, + "step": 395200 + }, + { + "epoch": 52.70666666666666, + "grad_norm": 0.8346722722053528, + "learning_rate": 2.3658666666666668e-05, + "loss": 1.486527099609375, + "step": 395300 + }, + { + "epoch": 52.72, + "grad_norm": 0.8343473076820374, + "learning_rate": 2.3652000000000003e-05, + "loss": 1.485967254638672, + "step": 395400 + }, + { + "epoch": 52.733333333333334, + "grad_norm": 0.849467396736145, + "learning_rate": 2.3645333333333332e-05, + "loss": 1.485404510498047, + "step": 395500 + }, + { + "epoch": 52.74666666666667, + "grad_norm": 0.8700857162475586, + "learning_rate": 2.3638666666666668e-05, + "loss": 1.4913349914550782, + "step": 395600 + }, + { + "epoch": 52.76, + "grad_norm": 0.9438149929046631, + "learning_rate": 2.3632e-05, + "loss": 1.4887771606445312, + "step": 395700 + }, + { + "epoch": 52.77333333333333, + "grad_norm": 0.8537826538085938, + "learning_rate": 2.3625333333333336e-05, + "loss": 1.4901506042480468, + "step": 395800 + }, + { + "epoch": 52.78666666666667, + "grad_norm": 0.8943189382553101, + "learning_rate": 2.3618666666666668e-05, + "loss": 1.4895608520507813, + "step": 395900 + }, + { + "epoch": 52.8, + "grad_norm": 0.8864601254463196, + "learning_rate": 2.3612e-05, + "loss": 1.4893939208984375, + "step": 396000 + }, + { + "epoch": 52.81333333333333, + "grad_norm": 0.8941498398780823, + "learning_rate": 2.3605333333333336e-05, + "loss": 1.4906712341308594, + "step": 396100 + }, + { + "epoch": 52.82666666666667, + "grad_norm": 0.8816115260124207, + "learning_rate": 2.3598666666666668e-05, + "loss": 1.4948838806152345, + "step": 396200 + }, + { + "epoch": 52.84, + "grad_norm": 0.8456717133522034, + "learning_rate": 2.3592e-05, + "loss": 1.4868934631347657, + "step": 396300 + }, + { + "epoch": 52.85333333333333, + "grad_norm": 0.8491533994674683, + "learning_rate": 2.3585333333333333e-05, + "loss": 1.4916058349609376, + "step": 396400 + }, + { + "epoch": 52.86666666666667, + "grad_norm": 0.8934788107872009, + "learning_rate": 2.357866666666667e-05, + "loss": 1.4947138977050782, + "step": 396500 + }, + { + "epoch": 52.88, + "grad_norm": 0.8404362797737122, + "learning_rate": 2.3572000000000004e-05, + "loss": 1.4902780151367188, + "step": 396600 + }, + { + "epoch": 52.89333333333333, + "grad_norm": 0.8693411946296692, + "learning_rate": 2.3565333333333333e-05, + "loss": 1.493137969970703, + "step": 396700 + }, + { + "epoch": 52.906666666666666, + "grad_norm": 0.8568634986877441, + "learning_rate": 2.3558733333333335e-05, + "loss": 1.4958587646484376, + "step": 396800 + }, + { + "epoch": 52.92, + "grad_norm": 0.8633151054382324, + "learning_rate": 2.3552066666666668e-05, + "loss": 1.4957908630371093, + "step": 396900 + }, + { + "epoch": 52.93333333333333, + "grad_norm": 0.8764383792877197, + "learning_rate": 2.35454e-05, + "loss": 1.498976287841797, + "step": 397000 + }, + { + "epoch": 52.946666666666665, + "grad_norm": 0.8593562841415405, + "learning_rate": 2.3538733333333336e-05, + "loss": 1.496341552734375, + "step": 397100 + }, + { + "epoch": 52.96, + "grad_norm": 0.864981472492218, + "learning_rate": 2.3532066666666668e-05, + "loss": 1.500501708984375, + "step": 397200 + }, + { + "epoch": 52.973333333333336, + "grad_norm": 0.869564950466156, + "learning_rate": 2.35254e-05, + "loss": 1.4988710021972655, + "step": 397300 + }, + { + "epoch": 52.986666666666665, + "grad_norm": 0.8883520364761353, + "learning_rate": 2.3518733333333336e-05, + "loss": 1.5024085998535157, + "step": 397400 + }, + { + "epoch": 53.0, + "grad_norm": 0.8562717437744141, + "learning_rate": 2.3512066666666668e-05, + "loss": 1.5046351623535157, + "step": 397500 + }, + { + "epoch": 53.013333333333335, + "grad_norm": 0.805515706539154, + "learning_rate": 2.3505400000000004e-05, + "loss": 1.4346591186523439, + "step": 397600 + }, + { + "epoch": 53.026666666666664, + "grad_norm": 0.80479896068573, + "learning_rate": 2.3498733333333333e-05, + "loss": 1.4268614196777343, + "step": 397700 + }, + { + "epoch": 53.04, + "grad_norm": 0.8560926914215088, + "learning_rate": 2.3492066666666668e-05, + "loss": 1.4327865600585938, + "step": 397800 + }, + { + "epoch": 53.053333333333335, + "grad_norm": 0.8021524548530579, + "learning_rate": 2.34854e-05, + "loss": 1.4293780517578125, + "step": 397900 + }, + { + "epoch": 53.06666666666667, + "grad_norm": 0.80971360206604, + "learning_rate": 2.3478733333333333e-05, + "loss": 1.4374539184570312, + "step": 398000 + }, + { + "epoch": 53.08, + "grad_norm": 0.838452935218811, + "learning_rate": 2.347206666666667e-05, + "loss": 1.4421630859375, + "step": 398100 + }, + { + "epoch": 53.093333333333334, + "grad_norm": 0.8354381322860718, + "learning_rate": 2.34654e-05, + "loss": 1.43285400390625, + "step": 398200 + }, + { + "epoch": 53.10666666666667, + "grad_norm": 0.8726691007614136, + "learning_rate": 2.3458733333333336e-05, + "loss": 1.4365280151367188, + "step": 398300 + }, + { + "epoch": 53.12, + "grad_norm": 0.8390151262283325, + "learning_rate": 2.3452066666666665e-05, + "loss": 1.4363105773925782, + "step": 398400 + }, + { + "epoch": 53.13333333333333, + "grad_norm": 0.8505403995513916, + "learning_rate": 2.34454e-05, + "loss": 1.4446278381347657, + "step": 398500 + }, + { + "epoch": 53.14666666666667, + "grad_norm": 0.8463150262832642, + "learning_rate": 2.3438733333333333e-05, + "loss": 1.4427076721191405, + "step": 398600 + }, + { + "epoch": 53.16, + "grad_norm": 0.8394322991371155, + "learning_rate": 2.343206666666667e-05, + "loss": 1.4383731079101563, + "step": 398700 + }, + { + "epoch": 53.17333333333333, + "grad_norm": 0.8394029140472412, + "learning_rate": 2.3425466666666668e-05, + "loss": 1.443642578125, + "step": 398800 + }, + { + "epoch": 53.18666666666667, + "grad_norm": 0.8809831738471985, + "learning_rate": 2.3418800000000004e-05, + "loss": 1.4458544921875, + "step": 398900 + }, + { + "epoch": 53.2, + "grad_norm": 0.9032037258148193, + "learning_rate": 2.3412133333333332e-05, + "loss": 1.4469097900390624, + "step": 399000 + }, + { + "epoch": 53.21333333333333, + "grad_norm": 0.7470035552978516, + "learning_rate": 2.3405466666666668e-05, + "loss": 1.4481082153320313, + "step": 399100 + }, + { + "epoch": 53.22666666666667, + "grad_norm": 0.8141319155693054, + "learning_rate": 2.33988e-05, + "loss": 1.4453059387207032, + "step": 399200 + }, + { + "epoch": 53.24, + "grad_norm": 0.8504648804664612, + "learning_rate": 2.3392133333333336e-05, + "loss": 1.4482171630859375, + "step": 399300 + }, + { + "epoch": 53.25333333333333, + "grad_norm": 0.8674839735031128, + "learning_rate": 2.3385466666666668e-05, + "loss": 1.4432850646972657, + "step": 399400 + }, + { + "epoch": 53.266666666666666, + "grad_norm": 0.8443961143493652, + "learning_rate": 2.33788e-05, + "loss": 1.4486787414550781, + "step": 399500 + }, + { + "epoch": 53.28, + "grad_norm": 0.8612597584724426, + "learning_rate": 2.3372133333333336e-05, + "loss": 1.4492063903808594, + "step": 399600 + }, + { + "epoch": 53.29333333333334, + "grad_norm": 0.8739829659461975, + "learning_rate": 2.336546666666667e-05, + "loss": 1.4499366760253907, + "step": 399700 + }, + { + "epoch": 53.306666666666665, + "grad_norm": 0.8640965819358826, + "learning_rate": 2.33588e-05, + "loss": 1.454102783203125, + "step": 399800 + }, + { + "epoch": 53.32, + "grad_norm": 0.830761730670929, + "learning_rate": 2.3352133333333333e-05, + "loss": 1.4512599182128907, + "step": 399900 + }, + { + "epoch": 53.333333333333336, + "grad_norm": 0.8445847034454346, + "learning_rate": 2.334546666666667e-05, + "loss": 1.451502685546875, + "step": 400000 + }, + { + "epoch": 53.346666666666664, + "grad_norm": 0.8434433937072754, + "learning_rate": 2.33388e-05, + "loss": 1.4518226623535155, + "step": 400100 + }, + { + "epoch": 53.36, + "grad_norm": 0.8982335925102234, + "learning_rate": 2.3332133333333333e-05, + "loss": 1.4535255432128906, + "step": 400200 + }, + { + "epoch": 53.373333333333335, + "grad_norm": 0.8745660781860352, + "learning_rate": 2.332546666666667e-05, + "loss": 1.4575784301757813, + "step": 400300 + }, + { + "epoch": 53.38666666666666, + "grad_norm": 0.8744916319847107, + "learning_rate": 2.33188e-05, + "loss": 1.4541175842285157, + "step": 400400 + }, + { + "epoch": 53.4, + "grad_norm": 0.8759534955024719, + "learning_rate": 2.3312133333333337e-05, + "loss": 1.4521678161621094, + "step": 400500 + }, + { + "epoch": 53.413333333333334, + "grad_norm": 0.7871354222297668, + "learning_rate": 2.3305466666666666e-05, + "loss": 1.4580287170410156, + "step": 400600 + }, + { + "epoch": 53.42666666666667, + "grad_norm": 0.8808795809745789, + "learning_rate": 2.32988e-05, + "loss": 1.4611434936523438, + "step": 400700 + }, + { + "epoch": 53.44, + "grad_norm": 0.8959735035896301, + "learning_rate": 2.32922e-05, + "loss": 1.459822998046875, + "step": 400800 + }, + { + "epoch": 53.45333333333333, + "grad_norm": 0.8618682622909546, + "learning_rate": 2.3285533333333333e-05, + "loss": 1.4601959228515624, + "step": 400900 + }, + { + "epoch": 53.46666666666667, + "grad_norm": 0.8385915160179138, + "learning_rate": 2.3278866666666668e-05, + "loss": 1.464827423095703, + "step": 401000 + }, + { + "epoch": 53.48, + "grad_norm": 0.8934867978096008, + "learning_rate": 2.3272200000000004e-05, + "loss": 1.4627699279785156, + "step": 401100 + }, + { + "epoch": 53.49333333333333, + "grad_norm": 0.846880316734314, + "learning_rate": 2.3265533333333333e-05, + "loss": 1.4640000915527345, + "step": 401200 + }, + { + "epoch": 53.50666666666667, + "grad_norm": 0.8630863428115845, + "learning_rate": 2.325886666666667e-05, + "loss": 1.460301971435547, + "step": 401300 + }, + { + "epoch": 53.52, + "grad_norm": 0.8449327945709229, + "learning_rate": 2.32522e-05, + "loss": 1.4675813293457032, + "step": 401400 + }, + { + "epoch": 53.53333333333333, + "grad_norm": 0.875411331653595, + "learning_rate": 2.3245533333333336e-05, + "loss": 1.463404541015625, + "step": 401500 + }, + { + "epoch": 53.54666666666667, + "grad_norm": 0.8588878512382507, + "learning_rate": 2.323886666666667e-05, + "loss": 1.4630206298828126, + "step": 401600 + }, + { + "epoch": 53.56, + "grad_norm": 0.8418893814086914, + "learning_rate": 2.32322e-05, + "loss": 1.4669151306152344, + "step": 401700 + }, + { + "epoch": 53.57333333333333, + "grad_norm": 0.8740350604057312, + "learning_rate": 2.3225533333333337e-05, + "loss": 1.4691087341308593, + "step": 401800 + }, + { + "epoch": 53.586666666666666, + "grad_norm": 0.8648200035095215, + "learning_rate": 2.3218866666666665e-05, + "loss": 1.4714599609375, + "step": 401900 + }, + { + "epoch": 53.6, + "grad_norm": 0.8941342830657959, + "learning_rate": 2.32122e-05, + "loss": 1.4738253784179687, + "step": 402000 + }, + { + "epoch": 53.61333333333333, + "grad_norm": 0.8258972764015198, + "learning_rate": 2.3205533333333333e-05, + "loss": 1.4741175842285157, + "step": 402100 + }, + { + "epoch": 53.626666666666665, + "grad_norm": 0.8815823793411255, + "learning_rate": 2.319886666666667e-05, + "loss": 1.4661442565917968, + "step": 402200 + }, + { + "epoch": 53.64, + "grad_norm": 0.8187025785446167, + "learning_rate": 2.31922e-05, + "loss": 1.4684117126464844, + "step": 402300 + }, + { + "epoch": 53.653333333333336, + "grad_norm": 0.8981267809867859, + "learning_rate": 2.3185533333333334e-05, + "loss": 1.4723139953613282, + "step": 402400 + }, + { + "epoch": 53.666666666666664, + "grad_norm": 0.8515080213546753, + "learning_rate": 2.317886666666667e-05, + "loss": 1.47446044921875, + "step": 402500 + }, + { + "epoch": 53.68, + "grad_norm": 0.8341559171676636, + "learning_rate": 2.31722e-05, + "loss": 1.4706192016601562, + "step": 402600 + }, + { + "epoch": 53.693333333333335, + "grad_norm": 0.8234730362892151, + "learning_rate": 2.3165533333333334e-05, + "loss": 1.4750930786132812, + "step": 402700 + }, + { + "epoch": 53.70666666666666, + "grad_norm": 0.854006290435791, + "learning_rate": 2.3158866666666666e-05, + "loss": 1.4691725158691407, + "step": 402800 + }, + { + "epoch": 53.72, + "grad_norm": 0.871201753616333, + "learning_rate": 2.3152266666666665e-05, + "loss": 1.4737733459472657, + "step": 402900 + }, + { + "epoch": 53.733333333333334, + "grad_norm": 0.8627591729164124, + "learning_rate": 2.31456e-05, + "loss": 1.4719656372070313, + "step": 403000 + }, + { + "epoch": 53.74666666666667, + "grad_norm": 0.937736988067627, + "learning_rate": 2.3138933333333333e-05, + "loss": 1.4713555908203124, + "step": 403100 + }, + { + "epoch": 53.76, + "grad_norm": 0.8441616892814636, + "learning_rate": 2.313226666666667e-05, + "loss": 1.4788174438476562, + "step": 403200 + }, + { + "epoch": 53.77333333333333, + "grad_norm": 0.8520199060440063, + "learning_rate": 2.31256e-05, + "loss": 1.4727986145019532, + "step": 403300 + }, + { + "epoch": 53.78666666666667, + "grad_norm": 0.9087309837341309, + "learning_rate": 2.3118933333333333e-05, + "loss": 1.4800141906738282, + "step": 403400 + }, + { + "epoch": 53.8, + "grad_norm": 0.8902503252029419, + "learning_rate": 2.311226666666667e-05, + "loss": 1.4767436218261718, + "step": 403500 + }, + { + "epoch": 53.81333333333333, + "grad_norm": 0.8224707245826721, + "learning_rate": 2.31056e-05, + "loss": 1.4753680419921875, + "step": 403600 + }, + { + "epoch": 53.82666666666667, + "grad_norm": 0.8903453946113586, + "learning_rate": 2.3098933333333333e-05, + "loss": 1.478042449951172, + "step": 403700 + }, + { + "epoch": 53.84, + "grad_norm": 0.8610987663269043, + "learning_rate": 2.309226666666667e-05, + "loss": 1.4786669921875, + "step": 403800 + }, + { + "epoch": 53.85333333333333, + "grad_norm": 0.8663672804832458, + "learning_rate": 2.30856e-05, + "loss": 1.4798565673828126, + "step": 403900 + }, + { + "epoch": 53.86666666666667, + "grad_norm": 0.8928523659706116, + "learning_rate": 2.3078933333333337e-05, + "loss": 1.476539306640625, + "step": 404000 + }, + { + "epoch": 53.88, + "grad_norm": 0.8405497670173645, + "learning_rate": 2.3072266666666666e-05, + "loss": 1.4814393615722656, + "step": 404100 + }, + { + "epoch": 53.89333333333333, + "grad_norm": 0.9027117490768433, + "learning_rate": 2.30656e-05, + "loss": 1.48431884765625, + "step": 404200 + }, + { + "epoch": 53.906666666666666, + "grad_norm": 0.8880442380905151, + "learning_rate": 2.3058933333333334e-05, + "loss": 1.4846881103515626, + "step": 404300 + }, + { + "epoch": 53.92, + "grad_norm": 0.8744670152664185, + "learning_rate": 2.3052266666666666e-05, + "loss": 1.48605224609375, + "step": 404400 + }, + { + "epoch": 53.93333333333333, + "grad_norm": 0.9039588570594788, + "learning_rate": 2.3045600000000002e-05, + "loss": 1.483401336669922, + "step": 404500 + }, + { + "epoch": 53.946666666666665, + "grad_norm": 0.8488764762878418, + "learning_rate": 2.3038933333333334e-05, + "loss": 1.4856008911132812, + "step": 404600 + }, + { + "epoch": 53.96, + "grad_norm": 0.8746914267539978, + "learning_rate": 2.303226666666667e-05, + "loss": 1.4808277893066406, + "step": 404700 + }, + { + "epoch": 53.973333333333336, + "grad_norm": 0.859261691570282, + "learning_rate": 2.30256e-05, + "loss": 1.481783447265625, + "step": 404800 + }, + { + "epoch": 53.986666666666665, + "grad_norm": 0.8789514899253845, + "learning_rate": 2.3019e-05, + "loss": 1.4835377502441407, + "step": 404900 + }, + { + "epoch": 54.0, + "grad_norm": 0.850490927696228, + "learning_rate": 2.3012333333333337e-05, + "loss": 1.4867596435546875, + "step": 405000 + }, + { + "epoch": 54.013333333333335, + "grad_norm": 0.8333851099014282, + "learning_rate": 2.3005666666666666e-05, + "loss": 1.4200978088378906, + "step": 405100 + }, + { + "epoch": 54.026666666666664, + "grad_norm": 0.8395662903785706, + "learning_rate": 2.2999e-05, + "loss": 1.4196142578125, + "step": 405200 + }, + { + "epoch": 54.04, + "grad_norm": 0.8212039470672607, + "learning_rate": 2.2992333333333333e-05, + "loss": 1.425306854248047, + "step": 405300 + }, + { + "epoch": 54.053333333333335, + "grad_norm": 0.7914276123046875, + "learning_rate": 2.2985666666666666e-05, + "loss": 1.4204986572265625, + "step": 405400 + }, + { + "epoch": 54.06666666666667, + "grad_norm": 0.8050218820571899, + "learning_rate": 2.2979e-05, + "loss": 1.4295758056640624, + "step": 405500 + }, + { + "epoch": 54.08, + "grad_norm": 0.8524725437164307, + "learning_rate": 2.2972333333333334e-05, + "loss": 1.4244723510742188, + "step": 405600 + }, + { + "epoch": 54.093333333333334, + "grad_norm": 0.812785804271698, + "learning_rate": 2.296566666666667e-05, + "loss": 1.4250279235839844, + "step": 405700 + }, + { + "epoch": 54.10666666666667, + "grad_norm": 0.8275474905967712, + "learning_rate": 2.2959e-05, + "loss": 1.430595703125, + "step": 405800 + }, + { + "epoch": 54.12, + "grad_norm": 0.8649910688400269, + "learning_rate": 2.2952333333333334e-05, + "loss": 1.431238250732422, + "step": 405900 + }, + { + "epoch": 54.13333333333333, + "grad_norm": 0.8428074717521667, + "learning_rate": 2.294566666666667e-05, + "loss": 1.4303498840332032, + "step": 406000 + }, + { + "epoch": 54.14666666666667, + "grad_norm": 0.8515647649765015, + "learning_rate": 2.2939000000000002e-05, + "loss": 1.4309127807617188, + "step": 406100 + }, + { + "epoch": 54.16, + "grad_norm": 0.8191271424293518, + "learning_rate": 2.2932333333333334e-05, + "loss": 1.4284707641601562, + "step": 406200 + }, + { + "epoch": 54.17333333333333, + "grad_norm": 0.869966447353363, + "learning_rate": 2.2925666666666666e-05, + "loss": 1.4276429748535155, + "step": 406300 + }, + { + "epoch": 54.18666666666667, + "grad_norm": 0.8617979288101196, + "learning_rate": 2.2919000000000002e-05, + "loss": 1.4300892639160157, + "step": 406400 + }, + { + "epoch": 54.2, + "grad_norm": 0.8274814486503601, + "learning_rate": 2.2912333333333334e-05, + "loss": 1.43626708984375, + "step": 406500 + }, + { + "epoch": 54.21333333333333, + "grad_norm": 0.8476601243019104, + "learning_rate": 2.2905666666666667e-05, + "loss": 1.43748046875, + "step": 406600 + }, + { + "epoch": 54.22666666666667, + "grad_norm": 0.8396388292312622, + "learning_rate": 2.2899000000000002e-05, + "loss": 1.4325535583496094, + "step": 406700 + }, + { + "epoch": 54.24, + "grad_norm": 0.8823912143707275, + "learning_rate": 2.2892333333333334e-05, + "loss": 1.4390623474121094, + "step": 406800 + }, + { + "epoch": 54.25333333333333, + "grad_norm": 0.8651164770126343, + "learning_rate": 2.2885733333333334e-05, + "loss": 1.434818878173828, + "step": 406900 + }, + { + "epoch": 54.266666666666666, + "grad_norm": 0.8942626714706421, + "learning_rate": 2.287906666666667e-05, + "loss": 1.4403004455566406, + "step": 407000 + }, + { + "epoch": 54.28, + "grad_norm": 0.81056809425354, + "learning_rate": 2.28724e-05, + "loss": 1.437251739501953, + "step": 407100 + }, + { + "epoch": 54.29333333333334, + "grad_norm": 0.8536822199821472, + "learning_rate": 2.2865733333333334e-05, + "loss": 1.4415220642089843, + "step": 407200 + }, + { + "epoch": 54.306666666666665, + "grad_norm": 0.850678026676178, + "learning_rate": 2.2859066666666666e-05, + "loss": 1.4421534729003906, + "step": 407300 + }, + { + "epoch": 54.32, + "grad_norm": 0.8688512444496155, + "learning_rate": 2.28524e-05, + "loss": 1.4458406066894531, + "step": 407400 + }, + { + "epoch": 54.333333333333336, + "grad_norm": 0.8030053973197937, + "learning_rate": 2.2845733333333337e-05, + "loss": 1.4411915588378905, + "step": 407500 + }, + { + "epoch": 54.346666666666664, + "grad_norm": 0.8313712477684021, + "learning_rate": 2.2839066666666666e-05, + "loss": 1.4449412536621093, + "step": 407600 + }, + { + "epoch": 54.36, + "grad_norm": 0.8125160932540894, + "learning_rate": 2.2832400000000002e-05, + "loss": 1.4425570678710937, + "step": 407700 + }, + { + "epoch": 54.373333333333335, + "grad_norm": 0.8480263352394104, + "learning_rate": 2.2825733333333334e-05, + "loss": 1.4434786987304689, + "step": 407800 + }, + { + "epoch": 54.38666666666666, + "grad_norm": 0.8349584341049194, + "learning_rate": 2.281906666666667e-05, + "loss": 1.4428903198242187, + "step": 407900 + }, + { + "epoch": 54.4, + "grad_norm": 0.8668252229690552, + "learning_rate": 2.2812400000000002e-05, + "loss": 1.4503041076660157, + "step": 408000 + }, + { + "epoch": 54.413333333333334, + "grad_norm": 0.8634394407272339, + "learning_rate": 2.2805733333333334e-05, + "loss": 1.450373992919922, + "step": 408100 + }, + { + "epoch": 54.42666666666667, + "grad_norm": 0.8869138956069946, + "learning_rate": 2.279906666666667e-05, + "loss": 1.4448956298828124, + "step": 408200 + }, + { + "epoch": 54.44, + "grad_norm": 0.8381974697113037, + "learning_rate": 2.27924e-05, + "loss": 1.4506912231445312, + "step": 408300 + }, + { + "epoch": 54.45333333333333, + "grad_norm": 0.8984852433204651, + "learning_rate": 2.2785733333333334e-05, + "loss": 1.4506108093261718, + "step": 408400 + }, + { + "epoch": 54.46666666666667, + "grad_norm": 0.8341385126113892, + "learning_rate": 2.2779066666666667e-05, + "loss": 1.4481794738769531, + "step": 408500 + }, + { + "epoch": 54.48, + "grad_norm": 0.8450107574462891, + "learning_rate": 2.2772400000000002e-05, + "loss": 1.452357635498047, + "step": 408600 + }, + { + "epoch": 54.49333333333333, + "grad_norm": 0.8467490077018738, + "learning_rate": 2.2765733333333335e-05, + "loss": 1.4530352783203124, + "step": 408700 + }, + { + "epoch": 54.50666666666667, + "grad_norm": 0.8854357004165649, + "learning_rate": 2.2759066666666667e-05, + "loss": 1.4446238708496093, + "step": 408800 + }, + { + "epoch": 54.52, + "grad_norm": 0.8822206258773804, + "learning_rate": 2.2752466666666666e-05, + "loss": 1.4520494079589843, + "step": 408900 + }, + { + "epoch": 54.53333333333333, + "grad_norm": 0.8779937028884888, + "learning_rate": 2.27458e-05, + "loss": 1.4530328369140626, + "step": 409000 + }, + { + "epoch": 54.54666666666667, + "grad_norm": 0.8283098340034485, + "learning_rate": 2.2739133333333334e-05, + "loss": 1.452464599609375, + "step": 409100 + }, + { + "epoch": 54.56, + "grad_norm": 0.9348580837249756, + "learning_rate": 2.273246666666667e-05, + "loss": 1.4534254455566407, + "step": 409200 + }, + { + "epoch": 54.57333333333333, + "grad_norm": 0.8854987621307373, + "learning_rate": 2.27258e-05, + "loss": 1.4535916137695313, + "step": 409300 + }, + { + "epoch": 54.586666666666666, + "grad_norm": 0.9117794632911682, + "learning_rate": 2.2719133333333334e-05, + "loss": 1.457483367919922, + "step": 409400 + }, + { + "epoch": 54.6, + "grad_norm": 0.8725807070732117, + "learning_rate": 2.2712466666666666e-05, + "loss": 1.4577378845214843, + "step": 409500 + }, + { + "epoch": 54.61333333333333, + "grad_norm": 0.9138243198394775, + "learning_rate": 2.2705800000000002e-05, + "loss": 1.4621884155273437, + "step": 409600 + }, + { + "epoch": 54.626666666666665, + "grad_norm": 0.8634496927261353, + "learning_rate": 2.2699133333333334e-05, + "loss": 1.4550845336914062, + "step": 409700 + }, + { + "epoch": 54.64, + "grad_norm": 0.8755178451538086, + "learning_rate": 2.2692466666666667e-05, + "loss": 1.45973388671875, + "step": 409800 + }, + { + "epoch": 54.653333333333336, + "grad_norm": 0.8733647465705872, + "learning_rate": 2.2685800000000002e-05, + "loss": 1.4567936706542968, + "step": 409900 + }, + { + "epoch": 54.666666666666664, + "grad_norm": 0.8817700147628784, + "learning_rate": 2.2679133333333335e-05, + "loss": 1.4601559448242187, + "step": 410000 + }, + { + "epoch": 54.68, + "grad_norm": 0.8758354187011719, + "learning_rate": 2.2672466666666667e-05, + "loss": 1.46127685546875, + "step": 410100 + }, + { + "epoch": 54.693333333333335, + "grad_norm": 0.8473187685012817, + "learning_rate": 2.2665800000000002e-05, + "loss": 1.4609004211425782, + "step": 410200 + }, + { + "epoch": 54.70666666666666, + "grad_norm": 0.8869526386260986, + "learning_rate": 2.2659133333333335e-05, + "loss": 1.4645802307128906, + "step": 410300 + }, + { + "epoch": 54.72, + "grad_norm": 0.8255419731140137, + "learning_rate": 2.265246666666667e-05, + "loss": 1.46389892578125, + "step": 410400 + }, + { + "epoch": 54.733333333333334, + "grad_norm": 0.831465482711792, + "learning_rate": 2.26458e-05, + "loss": 1.463885498046875, + "step": 410500 + }, + { + "epoch": 54.74666666666667, + "grad_norm": 0.9016580581665039, + "learning_rate": 2.2639133333333335e-05, + "loss": 1.4642086791992188, + "step": 410600 + }, + { + "epoch": 54.76, + "grad_norm": 0.8602574467658997, + "learning_rate": 2.2632466666666667e-05, + "loss": 1.4626669311523437, + "step": 410700 + }, + { + "epoch": 54.77333333333333, + "grad_norm": 0.8852930665016174, + "learning_rate": 2.26258e-05, + "loss": 1.467047882080078, + "step": 410800 + }, + { + "epoch": 54.78666666666667, + "grad_norm": 0.8360097408294678, + "learning_rate": 2.2619133333333335e-05, + "loss": 1.4667416381835938, + "step": 410900 + }, + { + "epoch": 54.8, + "grad_norm": 0.8857517242431641, + "learning_rate": 2.2612533333333334e-05, + "loss": 1.46333740234375, + "step": 411000 + }, + { + "epoch": 54.81333333333333, + "grad_norm": 0.8212206363677979, + "learning_rate": 2.2605866666666666e-05, + "loss": 1.467716827392578, + "step": 411100 + }, + { + "epoch": 54.82666666666667, + "grad_norm": 0.8455966711044312, + "learning_rate": 2.2599200000000002e-05, + "loss": 1.4688453674316406, + "step": 411200 + }, + { + "epoch": 54.84, + "grad_norm": 0.8679726719856262, + "learning_rate": 2.2592533333333334e-05, + "loss": 1.4663377380371094, + "step": 411300 + }, + { + "epoch": 54.85333333333333, + "grad_norm": 0.8671688437461853, + "learning_rate": 2.258586666666667e-05, + "loss": 1.4694053649902343, + "step": 411400 + }, + { + "epoch": 54.86666666666667, + "grad_norm": 0.8496808409690857, + "learning_rate": 2.25792e-05, + "loss": 1.46614013671875, + "step": 411500 + }, + { + "epoch": 54.88, + "grad_norm": 0.8471501469612122, + "learning_rate": 2.2572533333333335e-05, + "loss": 1.474624786376953, + "step": 411600 + }, + { + "epoch": 54.89333333333333, + "grad_norm": 0.8803544640541077, + "learning_rate": 2.2565866666666667e-05, + "loss": 1.4705052185058594, + "step": 411700 + }, + { + "epoch": 54.906666666666666, + "grad_norm": 0.9258813858032227, + "learning_rate": 2.25592e-05, + "loss": 1.4725639343261718, + "step": 411800 + }, + { + "epoch": 54.92, + "grad_norm": 0.8967903852462769, + "learning_rate": 2.2552533333333335e-05, + "loss": 1.4728996276855468, + "step": 411900 + }, + { + "epoch": 54.93333333333333, + "grad_norm": 0.8787213563919067, + "learning_rate": 2.2545866666666667e-05, + "loss": 1.4686712646484374, + "step": 412000 + }, + { + "epoch": 54.946666666666665, + "grad_norm": 0.8793955445289612, + "learning_rate": 2.2539200000000003e-05, + "loss": 1.4694187927246094, + "step": 412100 + }, + { + "epoch": 54.96, + "grad_norm": 0.8531497120857239, + "learning_rate": 2.2532533333333335e-05, + "loss": 1.4769473266601563, + "step": 412200 + }, + { + "epoch": 54.973333333333336, + "grad_norm": 0.8888368010520935, + "learning_rate": 2.2525866666666667e-05, + "loss": 1.4720077514648438, + "step": 412300 + }, + { + "epoch": 54.986666666666665, + "grad_norm": 0.893952488899231, + "learning_rate": 2.2519200000000003e-05, + "loss": 1.470653076171875, + "step": 412400 + }, + { + "epoch": 55.0, + "grad_norm": 0.8932615518569946, + "learning_rate": 2.2512533333333335e-05, + "loss": 1.4741424560546874, + "step": 412500 + }, + { + "epoch": 55.013333333333335, + "grad_norm": 0.8639925718307495, + "learning_rate": 2.2505866666666667e-05, + "loss": 1.4064114379882813, + "step": 412600 + }, + { + "epoch": 55.026666666666664, + "grad_norm": 0.8224576711654663, + "learning_rate": 2.24992e-05, + "loss": 1.412123260498047, + "step": 412700 + }, + { + "epoch": 55.04, + "grad_norm": 0.8823965191841125, + "learning_rate": 2.2492533333333335e-05, + "loss": 1.4082809448242188, + "step": 412800 + }, + { + "epoch": 55.053333333333335, + "grad_norm": 0.860645055770874, + "learning_rate": 2.2485866666666668e-05, + "loss": 1.4148016357421875, + "step": 412900 + }, + { + "epoch": 55.06666666666667, + "grad_norm": 0.876783549785614, + "learning_rate": 2.2479266666666667e-05, + "loss": 1.4186094665527345, + "step": 413000 + }, + { + "epoch": 55.08, + "grad_norm": 0.857022762298584, + "learning_rate": 2.2472600000000002e-05, + "loss": 1.4122817993164063, + "step": 413100 + }, + { + "epoch": 55.093333333333334, + "grad_norm": 0.8272480368614197, + "learning_rate": 2.2465933333333335e-05, + "loss": 1.4125518798828125, + "step": 413200 + }, + { + "epoch": 55.10666666666667, + "grad_norm": 0.8472641110420227, + "learning_rate": 2.2459266666666667e-05, + "loss": 1.412246551513672, + "step": 413300 + }, + { + "epoch": 55.12, + "grad_norm": 0.9146363139152527, + "learning_rate": 2.2452600000000003e-05, + "loss": 1.4172994995117187, + "step": 413400 + }, + { + "epoch": 55.13333333333333, + "grad_norm": 0.8248025178909302, + "learning_rate": 2.2445933333333335e-05, + "loss": 1.4187237548828124, + "step": 413500 + }, + { + "epoch": 55.14666666666667, + "grad_norm": 0.874271810054779, + "learning_rate": 2.2439266666666667e-05, + "loss": 1.41408935546875, + "step": 413600 + }, + { + "epoch": 55.16, + "grad_norm": 0.8196364641189575, + "learning_rate": 2.24326e-05, + "loss": 1.4154962158203126, + "step": 413700 + }, + { + "epoch": 55.17333333333333, + "grad_norm": 0.8373938798904419, + "learning_rate": 2.2425933333333335e-05, + "loss": 1.4177433776855468, + "step": 413800 + }, + { + "epoch": 55.18666666666667, + "grad_norm": 0.80357426404953, + "learning_rate": 2.241926666666667e-05, + "loss": 1.4225418090820312, + "step": 413900 + }, + { + "epoch": 55.2, + "grad_norm": 0.7960191965103149, + "learning_rate": 2.24126e-05, + "loss": 1.4238473510742187, + "step": 414000 + }, + { + "epoch": 55.21333333333333, + "grad_norm": 0.8417536020278931, + "learning_rate": 2.2405933333333335e-05, + "loss": 1.4218621826171876, + "step": 414100 + }, + { + "epoch": 55.22666666666667, + "grad_norm": 0.8823829889297485, + "learning_rate": 2.2399266666666667e-05, + "loss": 1.4251284790039063, + "step": 414200 + }, + { + "epoch": 55.24, + "grad_norm": 0.8325697183609009, + "learning_rate": 2.23926e-05, + "loss": 1.4224729919433594, + "step": 414300 + }, + { + "epoch": 55.25333333333333, + "grad_norm": 0.8879687786102295, + "learning_rate": 2.2385933333333335e-05, + "loss": 1.4293856811523438, + "step": 414400 + }, + { + "epoch": 55.266666666666666, + "grad_norm": 0.8998637199401855, + "learning_rate": 2.2379266666666668e-05, + "loss": 1.4206253051757813, + "step": 414500 + }, + { + "epoch": 55.28, + "grad_norm": 0.8645532727241516, + "learning_rate": 2.2372600000000003e-05, + "loss": 1.4249339294433594, + "step": 414600 + }, + { + "epoch": 55.29333333333334, + "grad_norm": 0.9286399483680725, + "learning_rate": 2.2365933333333332e-05, + "loss": 1.4289715576171875, + "step": 414700 + }, + { + "epoch": 55.306666666666665, + "grad_norm": 0.9058271646499634, + "learning_rate": 2.2359266666666668e-05, + "loss": 1.4306143188476563, + "step": 414800 + }, + { + "epoch": 55.32, + "grad_norm": 0.8806909918785095, + "learning_rate": 2.23526e-05, + "loss": 1.4301678466796874, + "step": 414900 + }, + { + "epoch": 55.333333333333336, + "grad_norm": 0.8449000120162964, + "learning_rate": 2.2345933333333336e-05, + "loss": 1.4272940063476562, + "step": 415000 + }, + { + "epoch": 55.346666666666664, + "grad_norm": 0.8805742263793945, + "learning_rate": 2.2339333333333335e-05, + "loss": 1.4354100036621094, + "step": 415100 + }, + { + "epoch": 55.36, + "grad_norm": 0.8670299649238586, + "learning_rate": 2.2332666666666667e-05, + "loss": 1.438927001953125, + "step": 415200 + }, + { + "epoch": 55.373333333333335, + "grad_norm": 0.8531759977340698, + "learning_rate": 2.2326e-05, + "loss": 1.4368338012695312, + "step": 415300 + }, + { + "epoch": 55.38666666666666, + "grad_norm": 0.8793957829475403, + "learning_rate": 2.2319333333333335e-05, + "loss": 1.4326312255859375, + "step": 415400 + }, + { + "epoch": 55.4, + "grad_norm": 0.8549216389656067, + "learning_rate": 2.2312666666666667e-05, + "loss": 1.4309808349609374, + "step": 415500 + }, + { + "epoch": 55.413333333333334, + "grad_norm": 0.8728709816932678, + "learning_rate": 2.2306000000000003e-05, + "loss": 1.4356973266601563, + "step": 415600 + }, + { + "epoch": 55.42666666666667, + "grad_norm": 0.8787753582000732, + "learning_rate": 2.2299333333333332e-05, + "loss": 1.435236053466797, + "step": 415700 + }, + { + "epoch": 55.44, + "grad_norm": 0.8510148525238037, + "learning_rate": 2.2292666666666667e-05, + "loss": 1.4368995666503905, + "step": 415800 + }, + { + "epoch": 55.45333333333333, + "grad_norm": 0.8644002079963684, + "learning_rate": 2.2286e-05, + "loss": 1.439784698486328, + "step": 415900 + }, + { + "epoch": 55.46666666666667, + "grad_norm": 0.8767049908638, + "learning_rate": 2.2279333333333335e-05, + "loss": 1.4385952758789062, + "step": 416000 + }, + { + "epoch": 55.48, + "grad_norm": 0.9412136673927307, + "learning_rate": 2.2272666666666668e-05, + "loss": 1.4417005920410155, + "step": 416100 + }, + { + "epoch": 55.49333333333333, + "grad_norm": 0.8540670275688171, + "learning_rate": 2.2266e-05, + "loss": 1.4380416870117188, + "step": 416200 + }, + { + "epoch": 55.50666666666667, + "grad_norm": 0.8778327107429504, + "learning_rate": 2.2259333333333336e-05, + "loss": 1.4395338439941405, + "step": 416300 + }, + { + "epoch": 55.52, + "grad_norm": 0.8598795533180237, + "learning_rate": 2.2252666666666668e-05, + "loss": 1.4399174499511718, + "step": 416400 + }, + { + "epoch": 55.53333333333333, + "grad_norm": 0.8614322543144226, + "learning_rate": 2.2246e-05, + "loss": 1.4443963623046876, + "step": 416500 + }, + { + "epoch": 55.54666666666667, + "grad_norm": 0.8454569578170776, + "learning_rate": 2.2239333333333336e-05, + "loss": 1.445623321533203, + "step": 416600 + }, + { + "epoch": 55.56, + "grad_norm": 0.8974414467811584, + "learning_rate": 2.2232666666666668e-05, + "loss": 1.4426679992675782, + "step": 416700 + }, + { + "epoch": 55.57333333333333, + "grad_norm": 0.8307322859764099, + "learning_rate": 2.2226000000000004e-05, + "loss": 1.4424739074707031, + "step": 416800 + }, + { + "epoch": 55.586666666666666, + "grad_norm": 0.8424813747406006, + "learning_rate": 2.2219333333333333e-05, + "loss": 1.4472550964355468, + "step": 416900 + }, + { + "epoch": 55.6, + "grad_norm": 0.8699893355369568, + "learning_rate": 2.2212666666666668e-05, + "loss": 1.437730712890625, + "step": 417000 + }, + { + "epoch": 55.61333333333333, + "grad_norm": 0.8717418313026428, + "learning_rate": 2.2206066666666667e-05, + "loss": 1.4472259521484374, + "step": 417100 + }, + { + "epoch": 55.626666666666665, + "grad_norm": 0.868630051612854, + "learning_rate": 2.21994e-05, + "loss": 1.4468307495117188, + "step": 417200 + }, + { + "epoch": 55.64, + "grad_norm": 0.9016746878623962, + "learning_rate": 2.2192733333333335e-05, + "loss": 1.4494607543945313, + "step": 417300 + }, + { + "epoch": 55.653333333333336, + "grad_norm": 0.8572381138801575, + "learning_rate": 2.2186066666666668e-05, + "loss": 1.4463278198242187, + "step": 417400 + }, + { + "epoch": 55.666666666666664, + "grad_norm": 0.9099103808403015, + "learning_rate": 2.21794e-05, + "loss": 1.4500961303710938, + "step": 417500 + }, + { + "epoch": 55.68, + "grad_norm": 0.9122660160064697, + "learning_rate": 2.2172733333333335e-05, + "loss": 1.4482554626464843, + "step": 417600 + }, + { + "epoch": 55.693333333333335, + "grad_norm": 0.8462883830070496, + "learning_rate": 2.2166066666666668e-05, + "loss": 1.447459716796875, + "step": 417700 + }, + { + "epoch": 55.70666666666666, + "grad_norm": 0.8462685942649841, + "learning_rate": 2.2159400000000003e-05, + "loss": 1.450800323486328, + "step": 417800 + }, + { + "epoch": 55.72, + "grad_norm": 0.8912447094917297, + "learning_rate": 2.2152733333333332e-05, + "loss": 1.4528042602539062, + "step": 417900 + }, + { + "epoch": 55.733333333333334, + "grad_norm": 0.8451516628265381, + "learning_rate": 2.2146066666666668e-05, + "loss": 1.4554351806640624, + "step": 418000 + }, + { + "epoch": 55.74666666666667, + "grad_norm": 0.8609992265701294, + "learning_rate": 2.21394e-05, + "loss": 1.4512791442871094, + "step": 418100 + }, + { + "epoch": 55.76, + "grad_norm": 0.8943572640419006, + "learning_rate": 2.2132733333333332e-05, + "loss": 1.4537530517578126, + "step": 418200 + }, + { + "epoch": 55.77333333333333, + "grad_norm": 0.8712022304534912, + "learning_rate": 2.2126066666666668e-05, + "loss": 1.4538926696777343, + "step": 418300 + }, + { + "epoch": 55.78666666666667, + "grad_norm": 0.9167302846908569, + "learning_rate": 2.21194e-05, + "loss": 1.457858123779297, + "step": 418400 + }, + { + "epoch": 55.8, + "grad_norm": 0.8773967623710632, + "learning_rate": 2.2112733333333336e-05, + "loss": 1.4523738098144532, + "step": 418500 + }, + { + "epoch": 55.81333333333333, + "grad_norm": 0.9126933217048645, + "learning_rate": 2.2106066666666668e-05, + "loss": 1.4570416259765624, + "step": 418600 + }, + { + "epoch": 55.82666666666667, + "grad_norm": 0.874134361743927, + "learning_rate": 2.20994e-05, + "loss": 1.456673583984375, + "step": 418700 + }, + { + "epoch": 55.84, + "grad_norm": 0.8987679481506348, + "learning_rate": 2.2092733333333336e-05, + "loss": 1.4605398559570313, + "step": 418800 + }, + { + "epoch": 55.85333333333333, + "grad_norm": 0.875527024269104, + "learning_rate": 2.208606666666667e-05, + "loss": 1.4604426574707032, + "step": 418900 + }, + { + "epoch": 55.86666666666667, + "grad_norm": 0.8008150458335876, + "learning_rate": 2.20794e-05, + "loss": 1.4571929931640626, + "step": 419000 + }, + { + "epoch": 55.88, + "grad_norm": 0.8355134129524231, + "learning_rate": 2.2072800000000003e-05, + "loss": 1.455338134765625, + "step": 419100 + }, + { + "epoch": 55.89333333333333, + "grad_norm": 0.8764241933822632, + "learning_rate": 2.2066133333333332e-05, + "loss": 1.454462432861328, + "step": 419200 + }, + { + "epoch": 55.906666666666666, + "grad_norm": 0.9243341088294983, + "learning_rate": 2.2059466666666668e-05, + "loss": 1.4607615661621094, + "step": 419300 + }, + { + "epoch": 55.92, + "grad_norm": 0.9032407402992249, + "learning_rate": 2.20528e-05, + "loss": 1.4592213439941406, + "step": 419400 + }, + { + "epoch": 55.93333333333333, + "grad_norm": 0.8600060939788818, + "learning_rate": 2.2046133333333336e-05, + "loss": 1.4632615661621093, + "step": 419500 + }, + { + "epoch": 55.946666666666665, + "grad_norm": 0.8559837937355042, + "learning_rate": 2.2039466666666668e-05, + "loss": 1.4599595642089844, + "step": 419600 + }, + { + "epoch": 55.96, + "grad_norm": 0.8894732594490051, + "learning_rate": 2.20328e-05, + "loss": 1.461082763671875, + "step": 419700 + }, + { + "epoch": 55.973333333333336, + "grad_norm": 0.8696638345718384, + "learning_rate": 2.2026133333333336e-05, + "loss": 1.4608134460449218, + "step": 419800 + }, + { + "epoch": 55.986666666666665, + "grad_norm": 0.9014117121696472, + "learning_rate": 2.2019466666666668e-05, + "loss": 1.4612680053710938, + "step": 419900 + }, + { + "epoch": 56.0, + "grad_norm": 0.934181272983551, + "learning_rate": 2.20128e-05, + "loss": 1.4615724182128906, + "step": 420000 + }, + { + "epoch": 56.013333333333335, + "grad_norm": 0.8485944867134094, + "learning_rate": 2.2006133333333333e-05, + "loss": 1.4035435485839844, + "step": 420100 + }, + { + "epoch": 56.026666666666664, + "grad_norm": 0.8273961544036865, + "learning_rate": 2.199946666666667e-05, + "loss": 1.4005302429199218, + "step": 420200 + }, + { + "epoch": 56.04, + "grad_norm": 0.8239974975585938, + "learning_rate": 2.1992800000000004e-05, + "loss": 1.3968911743164063, + "step": 420300 + }, + { + "epoch": 56.053333333333335, + "grad_norm": 0.8783063292503357, + "learning_rate": 2.1986133333333333e-05, + "loss": 1.3976206970214844, + "step": 420400 + }, + { + "epoch": 56.06666666666667, + "grad_norm": 0.8536005616188049, + "learning_rate": 2.197946666666667e-05, + "loss": 1.4026289367675782, + "step": 420500 + }, + { + "epoch": 56.08, + "grad_norm": 0.8284283876419067, + "learning_rate": 2.19728e-05, + "loss": 1.4048745727539063, + "step": 420600 + }, + { + "epoch": 56.093333333333334, + "grad_norm": 0.8265491724014282, + "learning_rate": 2.1966133333333333e-05, + "loss": 1.4086897277832031, + "step": 420700 + }, + { + "epoch": 56.10666666666667, + "grad_norm": 0.8136721849441528, + "learning_rate": 2.195946666666667e-05, + "loss": 1.4020260620117186, + "step": 420800 + }, + { + "epoch": 56.12, + "grad_norm": 0.8343340754508972, + "learning_rate": 2.19528e-05, + "loss": 1.4086201477050782, + "step": 420900 + }, + { + "epoch": 56.13333333333333, + "grad_norm": 0.8710994720458984, + "learning_rate": 2.1946133333333337e-05, + "loss": 1.407528839111328, + "step": 421000 + }, + { + "epoch": 56.14666666666667, + "grad_norm": 0.8886542916297913, + "learning_rate": 2.1939466666666665e-05, + "loss": 1.4091169738769531, + "step": 421100 + }, + { + "epoch": 56.16, + "grad_norm": 0.8041443228721619, + "learning_rate": 2.1932866666666668e-05, + "loss": 1.410533447265625, + "step": 421200 + }, + { + "epoch": 56.17333333333333, + "grad_norm": 0.8319317102432251, + "learning_rate": 2.1926200000000004e-05, + "loss": 1.4141780090332032, + "step": 421300 + }, + { + "epoch": 56.18666666666667, + "grad_norm": 0.8654050827026367, + "learning_rate": 2.1919533333333333e-05, + "loss": 1.417386016845703, + "step": 421400 + }, + { + "epoch": 56.2, + "grad_norm": 0.889337420463562, + "learning_rate": 2.1912866666666668e-05, + "loss": 1.411129150390625, + "step": 421500 + }, + { + "epoch": 56.21333333333333, + "grad_norm": 0.8444649577140808, + "learning_rate": 2.19062e-05, + "loss": 1.4155207824707032, + "step": 421600 + }, + { + "epoch": 56.22666666666667, + "grad_norm": 0.861868143081665, + "learning_rate": 2.1899533333333333e-05, + "loss": 1.417073974609375, + "step": 421700 + }, + { + "epoch": 56.24, + "grad_norm": 0.8739286661148071, + "learning_rate": 2.189286666666667e-05, + "loss": 1.4147346496582032, + "step": 421800 + }, + { + "epoch": 56.25333333333333, + "grad_norm": 0.8628485798835754, + "learning_rate": 2.18862e-05, + "loss": 1.416077880859375, + "step": 421900 + }, + { + "epoch": 56.266666666666666, + "grad_norm": 0.8855887055397034, + "learning_rate": 2.1879533333333336e-05, + "loss": 1.4169512939453126, + "step": 422000 + }, + { + "epoch": 56.28, + "grad_norm": 0.8673357963562012, + "learning_rate": 2.1872866666666665e-05, + "loss": 1.4148150634765626, + "step": 422100 + }, + { + "epoch": 56.29333333333334, + "grad_norm": 0.8554036617279053, + "learning_rate": 2.18662e-05, + "loss": 1.420289306640625, + "step": 422200 + }, + { + "epoch": 56.306666666666665, + "grad_norm": 0.8555299639701843, + "learning_rate": 2.1859533333333333e-05, + "loss": 1.4149293518066406, + "step": 422300 + }, + { + "epoch": 56.32, + "grad_norm": 0.9046564102172852, + "learning_rate": 2.185286666666667e-05, + "loss": 1.4149856567382812, + "step": 422400 + }, + { + "epoch": 56.333333333333336, + "grad_norm": 0.8520922660827637, + "learning_rate": 2.18462e-05, + "loss": 1.4218994140625, + "step": 422500 + }, + { + "epoch": 56.346666666666664, + "grad_norm": 0.8806357383728027, + "learning_rate": 2.1839533333333333e-05, + "loss": 1.4222920227050782, + "step": 422600 + }, + { + "epoch": 56.36, + "grad_norm": 0.9276759028434753, + "learning_rate": 2.183286666666667e-05, + "loss": 1.4219160461425782, + "step": 422700 + }, + { + "epoch": 56.373333333333335, + "grad_norm": 0.8782113194465637, + "learning_rate": 2.18262e-05, + "loss": 1.4204927062988282, + "step": 422800 + }, + { + "epoch": 56.38666666666666, + "grad_norm": 0.8631399869918823, + "learning_rate": 2.1819533333333333e-05, + "loss": 1.4249102783203125, + "step": 422900 + }, + { + "epoch": 56.4, + "grad_norm": 0.8936483860015869, + "learning_rate": 2.181286666666667e-05, + "loss": 1.4240966796875, + "step": 423000 + }, + { + "epoch": 56.413333333333334, + "grad_norm": 0.8748154640197754, + "learning_rate": 2.18062e-05, + "loss": 1.4252513122558594, + "step": 423100 + }, + { + "epoch": 56.42666666666667, + "grad_norm": 0.8596419095993042, + "learning_rate": 2.17996e-05, + "loss": 1.4259548950195313, + "step": 423200 + }, + { + "epoch": 56.44, + "grad_norm": 0.8839332461357117, + "learning_rate": 2.1792933333333336e-05, + "loss": 1.4302554321289063, + "step": 423300 + }, + { + "epoch": 56.45333333333333, + "grad_norm": 0.8390047550201416, + "learning_rate": 2.178626666666667e-05, + "loss": 1.4292677307128907, + "step": 423400 + }, + { + "epoch": 56.46666666666667, + "grad_norm": 0.8832520842552185, + "learning_rate": 2.17796e-05, + "loss": 1.426236114501953, + "step": 423500 + }, + { + "epoch": 56.48, + "grad_norm": 0.8132560849189758, + "learning_rate": 2.1772933333333333e-05, + "loss": 1.434789581298828, + "step": 423600 + }, + { + "epoch": 56.49333333333333, + "grad_norm": 0.8635860085487366, + "learning_rate": 2.176626666666667e-05, + "loss": 1.4259471130371093, + "step": 423700 + }, + { + "epoch": 56.50666666666667, + "grad_norm": 0.9170502424240112, + "learning_rate": 2.17596e-05, + "loss": 1.4286590576171876, + "step": 423800 + }, + { + "epoch": 56.52, + "grad_norm": 0.8722943663597107, + "learning_rate": 2.1752933333333333e-05, + "loss": 1.4344573974609376, + "step": 423900 + }, + { + "epoch": 56.53333333333333, + "grad_norm": 0.8727033138275146, + "learning_rate": 2.174626666666667e-05, + "loss": 1.4311439514160156, + "step": 424000 + }, + { + "epoch": 56.54666666666667, + "grad_norm": 0.8507550358772278, + "learning_rate": 2.17396e-05, + "loss": 1.4281155395507812, + "step": 424100 + }, + { + "epoch": 56.56, + "grad_norm": 0.9152675271034241, + "learning_rate": 2.1732933333333337e-05, + "loss": 1.4395048522949219, + "step": 424200 + }, + { + "epoch": 56.57333333333333, + "grad_norm": 0.8492377400398254, + "learning_rate": 2.1726266666666666e-05, + "loss": 1.43418212890625, + "step": 424300 + }, + { + "epoch": 56.586666666666666, + "grad_norm": 0.9120678901672363, + "learning_rate": 2.17196e-05, + "loss": 1.4339697265625, + "step": 424400 + }, + { + "epoch": 56.6, + "grad_norm": 0.9099976420402527, + "learning_rate": 2.1712933333333333e-05, + "loss": 1.4328225708007813, + "step": 424500 + }, + { + "epoch": 56.61333333333333, + "grad_norm": 0.846580445766449, + "learning_rate": 2.1706266666666666e-05, + "loss": 1.4381451416015625, + "step": 424600 + }, + { + "epoch": 56.626666666666665, + "grad_norm": 0.8989025950431824, + "learning_rate": 2.16996e-05, + "loss": 1.4314509582519532, + "step": 424700 + }, + { + "epoch": 56.64, + "grad_norm": 0.9448224306106567, + "learning_rate": 2.1692933333333334e-05, + "loss": 1.438125457763672, + "step": 424800 + }, + { + "epoch": 56.653333333333336, + "grad_norm": 0.8047678470611572, + "learning_rate": 2.168626666666667e-05, + "loss": 1.4364503479003907, + "step": 424900 + }, + { + "epoch": 56.666666666666664, + "grad_norm": 0.8994755148887634, + "learning_rate": 2.1679599999999998e-05, + "loss": 1.4405902099609376, + "step": 425000 + }, + { + "epoch": 56.68, + "grad_norm": 0.8442021608352661, + "learning_rate": 2.1672933333333334e-05, + "loss": 1.4396397399902343, + "step": 425100 + }, + { + "epoch": 56.693333333333335, + "grad_norm": 0.8690568804740906, + "learning_rate": 2.166626666666667e-05, + "loss": 1.443184814453125, + "step": 425200 + }, + { + "epoch": 56.70666666666666, + "grad_norm": 0.861370325088501, + "learning_rate": 2.165966666666667e-05, + "loss": 1.4361355590820313, + "step": 425300 + }, + { + "epoch": 56.72, + "grad_norm": 0.8897193670272827, + "learning_rate": 2.1653e-05, + "loss": 1.4400205993652344, + "step": 425400 + }, + { + "epoch": 56.733333333333334, + "grad_norm": 0.8475616574287415, + "learning_rate": 2.1646333333333337e-05, + "loss": 1.4406410217285157, + "step": 425500 + }, + { + "epoch": 56.74666666666667, + "grad_norm": 0.8466712236404419, + "learning_rate": 2.1639666666666665e-05, + "loss": 1.441578369140625, + "step": 425600 + }, + { + "epoch": 56.76, + "grad_norm": 0.9051734805107117, + "learning_rate": 2.1633e-05, + "loss": 1.4405007934570313, + "step": 425700 + }, + { + "epoch": 56.77333333333333, + "grad_norm": 0.8877379894256592, + "learning_rate": 2.1626333333333333e-05, + "loss": 1.4456788635253905, + "step": 425800 + }, + { + "epoch": 56.78666666666667, + "grad_norm": 0.914776623249054, + "learning_rate": 2.161966666666667e-05, + "loss": 1.4449098205566406, + "step": 425900 + }, + { + "epoch": 56.8, + "grad_norm": 0.8987554311752319, + "learning_rate": 2.1613e-05, + "loss": 1.445513916015625, + "step": 426000 + }, + { + "epoch": 56.81333333333333, + "grad_norm": 0.9004293084144592, + "learning_rate": 2.1606333333333334e-05, + "loss": 1.4431794738769532, + "step": 426100 + }, + { + "epoch": 56.82666666666667, + "grad_norm": 0.8796115517616272, + "learning_rate": 2.159966666666667e-05, + "loss": 1.444052734375, + "step": 426200 + }, + { + "epoch": 56.84, + "grad_norm": 0.8850584030151367, + "learning_rate": 2.1593e-05, + "loss": 1.442793426513672, + "step": 426300 + }, + { + "epoch": 56.85333333333333, + "grad_norm": 0.8874107003211975, + "learning_rate": 2.1586333333333334e-05, + "loss": 1.445687255859375, + "step": 426400 + }, + { + "epoch": 56.86666666666667, + "grad_norm": 0.8388593196868896, + "learning_rate": 2.1579666666666666e-05, + "loss": 1.447087860107422, + "step": 426500 + }, + { + "epoch": 56.88, + "grad_norm": 0.8567925095558167, + "learning_rate": 2.1573e-05, + "loss": 1.4455339050292968, + "step": 426600 + }, + { + "epoch": 56.89333333333333, + "grad_norm": 0.905091404914856, + "learning_rate": 2.1566333333333334e-05, + "loss": 1.4496022033691407, + "step": 426700 + }, + { + "epoch": 56.906666666666666, + "grad_norm": 0.851197361946106, + "learning_rate": 2.1559666666666666e-05, + "loss": 1.4433763122558594, + "step": 426800 + }, + { + "epoch": 56.92, + "grad_norm": 0.9563655257225037, + "learning_rate": 2.1553000000000002e-05, + "loss": 1.445602264404297, + "step": 426900 + }, + { + "epoch": 56.93333333333333, + "grad_norm": 0.8808197379112244, + "learning_rate": 2.1546333333333334e-05, + "loss": 1.4505947875976561, + "step": 427000 + }, + { + "epoch": 56.946666666666665, + "grad_norm": 0.8648757338523865, + "learning_rate": 2.1539666666666666e-05, + "loss": 1.4465037536621095, + "step": 427100 + }, + { + "epoch": 56.96, + "grad_norm": 0.8864550590515137, + "learning_rate": 2.1533000000000002e-05, + "loss": 1.4506777954101562, + "step": 427200 + }, + { + "epoch": 56.973333333333336, + "grad_norm": 0.8874581456184387, + "learning_rate": 2.15264e-05, + "loss": 1.449134063720703, + "step": 427300 + }, + { + "epoch": 56.986666666666665, + "grad_norm": 0.903593897819519, + "learning_rate": 2.1519733333333333e-05, + "loss": 1.4498974609375, + "step": 427400 + }, + { + "epoch": 57.0, + "grad_norm": 0.8335684537887573, + "learning_rate": 2.151306666666667e-05, + "loss": 1.4513101196289062, + "step": 427500 + }, + { + "epoch": 57.013333333333335, + "grad_norm": 0.8453123569488525, + "learning_rate": 2.15064e-05, + "loss": 1.3873635864257812, + "step": 427600 + }, + { + "epoch": 57.026666666666664, + "grad_norm": 0.892532229423523, + "learning_rate": 2.1499733333333337e-05, + "loss": 1.3913172912597656, + "step": 427700 + }, + { + "epoch": 57.04, + "grad_norm": 0.8891882300376892, + "learning_rate": 2.1493066666666666e-05, + "loss": 1.3940931701660155, + "step": 427800 + }, + { + "epoch": 57.053333333333335, + "grad_norm": 0.8671453595161438, + "learning_rate": 2.14864e-05, + "loss": 1.392352294921875, + "step": 427900 + }, + { + "epoch": 57.06666666666667, + "grad_norm": 0.8824362754821777, + "learning_rate": 2.1479733333333334e-05, + "loss": 1.3905747985839845, + "step": 428000 + }, + { + "epoch": 57.08, + "grad_norm": 0.8569581508636475, + "learning_rate": 2.1473066666666666e-05, + "loss": 1.3913356018066407, + "step": 428100 + }, + { + "epoch": 57.093333333333334, + "grad_norm": 0.8542196750640869, + "learning_rate": 2.14664e-05, + "loss": 1.39747314453125, + "step": 428200 + }, + { + "epoch": 57.10666666666667, + "grad_norm": 0.8506782054901123, + "learning_rate": 2.1459733333333334e-05, + "loss": 1.3980393981933594, + "step": 428300 + }, + { + "epoch": 57.12, + "grad_norm": 0.8215917944908142, + "learning_rate": 2.145306666666667e-05, + "loss": 1.3985368347167968, + "step": 428400 + }, + { + "epoch": 57.13333333333333, + "grad_norm": 0.8183411955833435, + "learning_rate": 2.14464e-05, + "loss": 1.3943287658691406, + "step": 428500 + }, + { + "epoch": 57.14666666666667, + "grad_norm": 0.8586587309837341, + "learning_rate": 2.1439733333333334e-05, + "loss": 1.3957505798339844, + "step": 428600 + }, + { + "epoch": 57.16, + "grad_norm": 0.873313307762146, + "learning_rate": 2.1433066666666666e-05, + "loss": 1.3994070434570312, + "step": 428700 + }, + { + "epoch": 57.17333333333333, + "grad_norm": 0.8390573263168335, + "learning_rate": 2.1426400000000002e-05, + "loss": 1.402987060546875, + "step": 428800 + }, + { + "epoch": 57.18666666666667, + "grad_norm": 0.8784012794494629, + "learning_rate": 2.1419733333333334e-05, + "loss": 1.4021636962890625, + "step": 428900 + }, + { + "epoch": 57.2, + "grad_norm": 0.8398882150650024, + "learning_rate": 2.1413066666666667e-05, + "loss": 1.4004843139648437, + "step": 429000 + }, + { + "epoch": 57.21333333333333, + "grad_norm": 0.8533040285110474, + "learning_rate": 2.1406400000000002e-05, + "loss": 1.4055615234375, + "step": 429100 + }, + { + "epoch": 57.22666666666667, + "grad_norm": 0.8388049602508545, + "learning_rate": 2.1399733333333335e-05, + "loss": 1.4073393249511719, + "step": 429200 + }, + { + "epoch": 57.24, + "grad_norm": 0.8552389740943909, + "learning_rate": 2.1393133333333334e-05, + "loss": 1.404532928466797, + "step": 429300 + }, + { + "epoch": 57.25333333333333, + "grad_norm": 0.8817448019981384, + "learning_rate": 2.138646666666667e-05, + "loss": 1.4020608520507813, + "step": 429400 + }, + { + "epoch": 57.266666666666666, + "grad_norm": 0.8578885793685913, + "learning_rate": 2.1379799999999998e-05, + "loss": 1.4063929748535156, + "step": 429500 + }, + { + "epoch": 57.28, + "grad_norm": 0.8610025644302368, + "learning_rate": 2.1373133333333334e-05, + "loss": 1.4068283081054687, + "step": 429600 + }, + { + "epoch": 57.29333333333334, + "grad_norm": 0.9056425094604492, + "learning_rate": 2.136646666666667e-05, + "loss": 1.4069955444335938, + "step": 429700 + }, + { + "epoch": 57.306666666666665, + "grad_norm": 0.8811911344528198, + "learning_rate": 2.1359800000000002e-05, + "loss": 1.4090301513671875, + "step": 429800 + }, + { + "epoch": 57.32, + "grad_norm": 0.8970731496810913, + "learning_rate": 2.1353133333333334e-05, + "loss": 1.41206298828125, + "step": 429900 + }, + { + "epoch": 57.333333333333336, + "grad_norm": 0.8743362426757812, + "learning_rate": 2.1346466666666666e-05, + "loss": 1.4041651916503906, + "step": 430000 + }, + { + "epoch": 57.346666666666664, + "grad_norm": 0.8430378437042236, + "learning_rate": 2.1339800000000002e-05, + "loss": 1.4116816711425781, + "step": 430100 + }, + { + "epoch": 57.36, + "grad_norm": 0.8529326915740967, + "learning_rate": 2.1333133333333334e-05, + "loss": 1.409462890625, + "step": 430200 + }, + { + "epoch": 57.373333333333335, + "grad_norm": 0.8731967210769653, + "learning_rate": 2.1326466666666666e-05, + "loss": 1.4143032836914062, + "step": 430300 + }, + { + "epoch": 57.38666666666666, + "grad_norm": 0.8534825444221497, + "learning_rate": 2.1319800000000002e-05, + "loss": 1.411023406982422, + "step": 430400 + }, + { + "epoch": 57.4, + "grad_norm": 0.8644077777862549, + "learning_rate": 2.1313133333333334e-05, + "loss": 1.4160220336914062, + "step": 430500 + }, + { + "epoch": 57.413333333333334, + "grad_norm": 0.875743567943573, + "learning_rate": 2.130646666666667e-05, + "loss": 1.4175732421875, + "step": 430600 + }, + { + "epoch": 57.42666666666667, + "grad_norm": 0.8708527088165283, + "learning_rate": 2.12998e-05, + "loss": 1.4122679138183594, + "step": 430700 + }, + { + "epoch": 57.44, + "grad_norm": 0.8806803822517395, + "learning_rate": 2.1293133333333335e-05, + "loss": 1.4234275817871094, + "step": 430800 + }, + { + "epoch": 57.45333333333333, + "grad_norm": 0.8835158348083496, + "learning_rate": 2.1286466666666667e-05, + "loss": 1.4142134094238281, + "step": 430900 + }, + { + "epoch": 57.46666666666667, + "grad_norm": 0.8983718752861023, + "learning_rate": 2.12798e-05, + "loss": 1.4219779968261719, + "step": 431000 + }, + { + "epoch": 57.48, + "grad_norm": 0.8711386322975159, + "learning_rate": 2.1273133333333335e-05, + "loss": 1.4237786865234374, + "step": 431100 + }, + { + "epoch": 57.49333333333333, + "grad_norm": 0.8646780848503113, + "learning_rate": 2.1266466666666667e-05, + "loss": 1.4190533447265625, + "step": 431200 + }, + { + "epoch": 57.50666666666667, + "grad_norm": 0.863576352596283, + "learning_rate": 2.1259800000000003e-05, + "loss": 1.4201698303222656, + "step": 431300 + }, + { + "epoch": 57.52, + "grad_norm": 0.8763824105262756, + "learning_rate": 2.1253200000000002e-05, + "loss": 1.4242768859863282, + "step": 431400 + }, + { + "epoch": 57.53333333333333, + "grad_norm": 0.8644374012947083, + "learning_rate": 2.1246533333333334e-05, + "loss": 1.4194601440429688, + "step": 431500 + }, + { + "epoch": 57.54666666666667, + "grad_norm": 0.868061900138855, + "learning_rate": 2.123986666666667e-05, + "loss": 1.4254354858398437, + "step": 431600 + }, + { + "epoch": 57.56, + "grad_norm": 0.8473526239395142, + "learning_rate": 2.1233200000000002e-05, + "loss": 1.4216069030761718, + "step": 431700 + }, + { + "epoch": 57.57333333333333, + "grad_norm": 0.8738334774971008, + "learning_rate": 2.1226533333333334e-05, + "loss": 1.4271109008789062, + "step": 431800 + }, + { + "epoch": 57.586666666666666, + "grad_norm": 0.8677930235862732, + "learning_rate": 2.121986666666667e-05, + "loss": 1.4229975891113282, + "step": 431900 + }, + { + "epoch": 57.6, + "grad_norm": 0.8332538604736328, + "learning_rate": 2.12132e-05, + "loss": 1.426571807861328, + "step": 432000 + }, + { + "epoch": 57.61333333333333, + "grad_norm": 0.8856222033500671, + "learning_rate": 2.1206533333333334e-05, + "loss": 1.429196319580078, + "step": 432100 + }, + { + "epoch": 57.626666666666665, + "grad_norm": 0.8730775713920593, + "learning_rate": 2.1199866666666667e-05, + "loss": 1.4241506958007812, + "step": 432200 + }, + { + "epoch": 57.64, + "grad_norm": 0.8760560750961304, + "learning_rate": 2.1193200000000002e-05, + "loss": 1.4274005126953124, + "step": 432300 + }, + { + "epoch": 57.653333333333336, + "grad_norm": 0.8515337705612183, + "learning_rate": 2.1186533333333335e-05, + "loss": 1.4225738525390625, + "step": 432400 + }, + { + "epoch": 57.666666666666664, + "grad_norm": 0.8787199854850769, + "learning_rate": 2.1179866666666667e-05, + "loss": 1.4261997985839843, + "step": 432500 + }, + { + "epoch": 57.68, + "grad_norm": 0.8842175006866455, + "learning_rate": 2.1173200000000003e-05, + "loss": 1.4274266052246094, + "step": 432600 + }, + { + "epoch": 57.693333333333335, + "grad_norm": 0.8846668601036072, + "learning_rate": 2.1166533333333335e-05, + "loss": 1.427220001220703, + "step": 432700 + }, + { + "epoch": 57.70666666666666, + "grad_norm": 0.8565542101860046, + "learning_rate": 2.1159866666666667e-05, + "loss": 1.431591796875, + "step": 432800 + }, + { + "epoch": 57.72, + "grad_norm": 0.9259876608848572, + "learning_rate": 2.11532e-05, + "loss": 1.427034912109375, + "step": 432900 + }, + { + "epoch": 57.733333333333334, + "grad_norm": 0.8708376884460449, + "learning_rate": 2.1146533333333335e-05, + "loss": 1.4335169982910156, + "step": 433000 + }, + { + "epoch": 57.74666666666667, + "grad_norm": 0.865197479724884, + "learning_rate": 2.1139866666666667e-05, + "loss": 1.434145965576172, + "step": 433100 + }, + { + "epoch": 57.76, + "grad_norm": 0.8874461650848389, + "learning_rate": 2.11332e-05, + "loss": 1.43084228515625, + "step": 433200 + }, + { + "epoch": 57.77333333333333, + "grad_norm": 0.8610783219337463, + "learning_rate": 2.1126533333333335e-05, + "loss": 1.4350297546386719, + "step": 433300 + }, + { + "epoch": 57.78666666666667, + "grad_norm": 0.8552179932594299, + "learning_rate": 2.1119933333333334e-05, + "loss": 1.4353605651855468, + "step": 433400 + }, + { + "epoch": 57.8, + "grad_norm": 0.8936259746551514, + "learning_rate": 2.1113266666666667e-05, + "loss": 1.4357664489746094, + "step": 433500 + }, + { + "epoch": 57.81333333333333, + "grad_norm": 0.8511193990707397, + "learning_rate": 2.1106600000000002e-05, + "loss": 1.4354666137695313, + "step": 433600 + }, + { + "epoch": 57.82666666666667, + "grad_norm": 0.8757380247116089, + "learning_rate": 2.1099933333333334e-05, + "loss": 1.440109405517578, + "step": 433700 + }, + { + "epoch": 57.84, + "grad_norm": 0.921246349811554, + "learning_rate": 2.1093266666666667e-05, + "loss": 1.4303897094726563, + "step": 433800 + }, + { + "epoch": 57.85333333333333, + "grad_norm": 0.9038046002388, + "learning_rate": 2.1086600000000002e-05, + "loss": 1.43283203125, + "step": 433900 + }, + { + "epoch": 57.86666666666667, + "grad_norm": 0.9284953474998474, + "learning_rate": 2.1079933333333335e-05, + "loss": 1.439587860107422, + "step": 434000 + }, + { + "epoch": 57.88, + "grad_norm": 0.8677544593811035, + "learning_rate": 2.107326666666667e-05, + "loss": 1.432835693359375, + "step": 434100 + }, + { + "epoch": 57.89333333333333, + "grad_norm": 0.8702775239944458, + "learning_rate": 2.10666e-05, + "loss": 1.4360232543945313, + "step": 434200 + }, + { + "epoch": 57.906666666666666, + "grad_norm": 0.9052044153213501, + "learning_rate": 2.1059933333333335e-05, + "loss": 1.4358711242675781, + "step": 434300 + }, + { + "epoch": 57.92, + "grad_norm": 0.8295144438743591, + "learning_rate": 2.1053266666666667e-05, + "loss": 1.4382148742675782, + "step": 434400 + }, + { + "epoch": 57.93333333333333, + "grad_norm": 0.8926219344139099, + "learning_rate": 2.10466e-05, + "loss": 1.4372708129882812, + "step": 434500 + }, + { + "epoch": 57.946666666666665, + "grad_norm": 0.8741112351417542, + "learning_rate": 2.1039933333333335e-05, + "loss": 1.4404176330566407, + "step": 434600 + }, + { + "epoch": 57.96, + "grad_norm": 0.8536452651023865, + "learning_rate": 2.1033266666666667e-05, + "loss": 1.4389004516601562, + "step": 434700 + }, + { + "epoch": 57.973333333333336, + "grad_norm": 0.8683491945266724, + "learning_rate": 2.1026600000000003e-05, + "loss": 1.4402836608886718, + "step": 434800 + }, + { + "epoch": 57.986666666666665, + "grad_norm": 0.8583080172538757, + "learning_rate": 2.1019933333333332e-05, + "loss": 1.4441624450683594, + "step": 434900 + }, + { + "epoch": 58.0, + "grad_norm": 0.8596425652503967, + "learning_rate": 2.1013266666666667e-05, + "loss": 1.4424615478515626, + "step": 435000 + }, + { + "epoch": 58.013333333333335, + "grad_norm": 0.8734589219093323, + "learning_rate": 2.10066e-05, + "loss": 1.3811009216308594, + "step": 435100 + }, + { + "epoch": 58.026666666666664, + "grad_norm": 0.8984307050704956, + "learning_rate": 2.0999933333333335e-05, + "loss": 1.3851551818847656, + "step": 435200 + }, + { + "epoch": 58.04, + "grad_norm": 0.870807945728302, + "learning_rate": 2.0993266666666668e-05, + "loss": 1.383925323486328, + "step": 435300 + }, + { + "epoch": 58.053333333333335, + "grad_norm": 0.8193836808204651, + "learning_rate": 2.0986666666666667e-05, + "loss": 1.3839663696289062, + "step": 435400 + }, + { + "epoch": 58.06666666666667, + "grad_norm": 0.8609771132469177, + "learning_rate": 2.098e-05, + "loss": 1.3863719177246094, + "step": 435500 + }, + { + "epoch": 58.08, + "grad_norm": 0.8306235074996948, + "learning_rate": 2.0973333333333335e-05, + "loss": 1.3829759216308595, + "step": 435600 + }, + { + "epoch": 58.093333333333334, + "grad_norm": 0.8595555424690247, + "learning_rate": 2.0966666666666667e-05, + "loss": 1.3847052001953124, + "step": 435700 + }, + { + "epoch": 58.10666666666667, + "grad_norm": 0.8563652634620667, + "learning_rate": 2.0960000000000003e-05, + "loss": 1.386361083984375, + "step": 435800 + }, + { + "epoch": 58.12, + "grad_norm": 0.8658237457275391, + "learning_rate": 2.095333333333333e-05, + "loss": 1.388785400390625, + "step": 435900 + }, + { + "epoch": 58.13333333333333, + "grad_norm": 0.8627846837043762, + "learning_rate": 2.0946666666666667e-05, + "loss": 1.393494873046875, + "step": 436000 + }, + { + "epoch": 58.14666666666667, + "grad_norm": 0.8761343955993652, + "learning_rate": 2.0940000000000003e-05, + "loss": 1.3921939086914064, + "step": 436100 + }, + { + "epoch": 58.16, + "grad_norm": 0.8637253642082214, + "learning_rate": 2.0933333333333335e-05, + "loss": 1.3898490905761718, + "step": 436200 + }, + { + "epoch": 58.17333333333333, + "grad_norm": 0.8888680934906006, + "learning_rate": 2.0926666666666667e-05, + "loss": 1.3912742614746094, + "step": 436300 + }, + { + "epoch": 58.18666666666667, + "grad_norm": 0.8735535144805908, + "learning_rate": 2.092e-05, + "loss": 1.3885147094726562, + "step": 436400 + }, + { + "epoch": 58.2, + "grad_norm": 0.8976262807846069, + "learning_rate": 2.0913333333333335e-05, + "loss": 1.3988859558105469, + "step": 436500 + }, + { + "epoch": 58.21333333333333, + "grad_norm": 0.8783442974090576, + "learning_rate": 2.0906666666666668e-05, + "loss": 1.3914523315429688, + "step": 436600 + }, + { + "epoch": 58.22666666666667, + "grad_norm": 0.8859887719154358, + "learning_rate": 2.09e-05, + "loss": 1.390671844482422, + "step": 436700 + }, + { + "epoch": 58.24, + "grad_norm": 0.8783445358276367, + "learning_rate": 2.0893333333333335e-05, + "loss": 1.3934185791015625, + "step": 436800 + }, + { + "epoch": 58.25333333333333, + "grad_norm": 0.8454920053482056, + "learning_rate": 2.0886666666666668e-05, + "loss": 1.3974107360839845, + "step": 436900 + }, + { + "epoch": 58.266666666666666, + "grad_norm": 0.895043134689331, + "learning_rate": 2.0880000000000003e-05, + "loss": 1.3971817016601562, + "step": 437000 + }, + { + "epoch": 58.28, + "grad_norm": 0.9361661076545715, + "learning_rate": 2.0873333333333332e-05, + "loss": 1.39865234375, + "step": 437100 + }, + { + "epoch": 58.29333333333334, + "grad_norm": 0.8844481110572815, + "learning_rate": 2.0866666666666668e-05, + "loss": 1.3997993469238281, + "step": 437200 + }, + { + "epoch": 58.306666666666665, + "grad_norm": 0.7877687215805054, + "learning_rate": 2.086e-05, + "loss": 1.4015354919433594, + "step": 437300 + }, + { + "epoch": 58.32, + "grad_norm": 0.7823760509490967, + "learning_rate": 2.08534e-05, + "loss": 1.3993243408203124, + "step": 437400 + }, + { + "epoch": 58.333333333333336, + "grad_norm": 0.8986889123916626, + "learning_rate": 2.0846733333333335e-05, + "loss": 1.402682342529297, + "step": 437500 + }, + { + "epoch": 58.346666666666664, + "grad_norm": 0.8212663531303406, + "learning_rate": 2.0840066666666667e-05, + "loss": 1.4034190368652344, + "step": 437600 + }, + { + "epoch": 58.36, + "grad_norm": 0.865929365158081, + "learning_rate": 2.08334e-05, + "loss": 1.4008261108398437, + "step": 437700 + }, + { + "epoch": 58.373333333333335, + "grad_norm": 0.8731956481933594, + "learning_rate": 2.0826733333333335e-05, + "loss": 1.4043699645996093, + "step": 437800 + }, + { + "epoch": 58.38666666666666, + "grad_norm": 0.8673787117004395, + "learning_rate": 2.0820066666666667e-05, + "loss": 1.4046339416503906, + "step": 437900 + }, + { + "epoch": 58.4, + "grad_norm": 0.8785029053688049, + "learning_rate": 2.0813400000000003e-05, + "loss": 1.404567108154297, + "step": 438000 + }, + { + "epoch": 58.413333333333334, + "grad_norm": 0.831731379032135, + "learning_rate": 2.0806733333333335e-05, + "loss": 1.4076467895507812, + "step": 438100 + }, + { + "epoch": 58.42666666666667, + "grad_norm": 0.8772410750389099, + "learning_rate": 2.0800066666666668e-05, + "loss": 1.4042951965332031, + "step": 438200 + }, + { + "epoch": 58.44, + "grad_norm": 0.8620854616165161, + "learning_rate": 2.0793400000000003e-05, + "loss": 1.4063218688964845, + "step": 438300 + }, + { + "epoch": 58.45333333333333, + "grad_norm": 0.8375303149223328, + "learning_rate": 2.0786733333333332e-05, + "loss": 1.4067355346679689, + "step": 438400 + }, + { + "epoch": 58.46666666666667, + "grad_norm": 0.8386953473091125, + "learning_rate": 2.0780066666666668e-05, + "loss": 1.4097119140625, + "step": 438500 + }, + { + "epoch": 58.48, + "grad_norm": 0.8893094062805176, + "learning_rate": 2.07734e-05, + "loss": 1.4094076538085938, + "step": 438600 + }, + { + "epoch": 58.49333333333333, + "grad_norm": 0.8755731582641602, + "learning_rate": 2.0766733333333336e-05, + "loss": 1.4084201049804688, + "step": 438700 + }, + { + "epoch": 58.50666666666667, + "grad_norm": 0.8995118737220764, + "learning_rate": 2.0760066666666668e-05, + "loss": 1.4081155395507812, + "step": 438800 + }, + { + "epoch": 58.52, + "grad_norm": 0.8784931302070618, + "learning_rate": 2.07534e-05, + "loss": 1.4106106567382812, + "step": 438900 + }, + { + "epoch": 58.53333333333333, + "grad_norm": 0.8496900796890259, + "learning_rate": 2.0746733333333336e-05, + "loss": 1.4154051208496095, + "step": 439000 + }, + { + "epoch": 58.54666666666667, + "grad_norm": 0.9111222624778748, + "learning_rate": 2.0740066666666668e-05, + "loss": 1.4134213256835937, + "step": 439100 + }, + { + "epoch": 58.56, + "grad_norm": 0.9012070298194885, + "learning_rate": 2.07334e-05, + "loss": 1.4138330078125, + "step": 439200 + }, + { + "epoch": 58.57333333333333, + "grad_norm": 0.8513124585151672, + "learning_rate": 2.0726733333333333e-05, + "loss": 1.414625701904297, + "step": 439300 + }, + { + "epoch": 58.586666666666666, + "grad_norm": 0.8750892877578735, + "learning_rate": 2.0720133333333332e-05, + "loss": 1.4188406372070312, + "step": 439400 + }, + { + "epoch": 58.6, + "grad_norm": 0.8822923302650452, + "learning_rate": 2.0713466666666667e-05, + "loss": 1.4158790588378907, + "step": 439500 + }, + { + "epoch": 58.61333333333333, + "grad_norm": 0.8047091364860535, + "learning_rate": 2.07068e-05, + "loss": 1.414635009765625, + "step": 439600 + }, + { + "epoch": 58.626666666666665, + "grad_norm": 0.8577402234077454, + "learning_rate": 2.0700133333333335e-05, + "loss": 1.4141645812988282, + "step": 439700 + }, + { + "epoch": 58.64, + "grad_norm": 0.8721509575843811, + "learning_rate": 2.0693466666666668e-05, + "loss": 1.4171902465820312, + "step": 439800 + }, + { + "epoch": 58.653333333333336, + "grad_norm": 0.852287769317627, + "learning_rate": 2.06868e-05, + "loss": 1.4161666870117187, + "step": 439900 + }, + { + "epoch": 58.666666666666664, + "grad_norm": 0.8711374402046204, + "learning_rate": 2.0680133333333336e-05, + "loss": 1.4154249572753905, + "step": 440000 + }, + { + "epoch": 58.68, + "grad_norm": 0.9298127889633179, + "learning_rate": 2.0673466666666668e-05, + "loss": 1.416683349609375, + "step": 440100 + }, + { + "epoch": 58.693333333333335, + "grad_norm": 0.8794826865196228, + "learning_rate": 2.06668e-05, + "loss": 1.4199267578125, + "step": 440200 + }, + { + "epoch": 58.70666666666666, + "grad_norm": 0.8694095015525818, + "learning_rate": 2.0660133333333336e-05, + "loss": 1.417292938232422, + "step": 440300 + }, + { + "epoch": 58.72, + "grad_norm": 0.8695284128189087, + "learning_rate": 2.0653466666666668e-05, + "loss": 1.4181063842773438, + "step": 440400 + }, + { + "epoch": 58.733333333333334, + "grad_norm": 0.8681213855743408, + "learning_rate": 2.0646800000000004e-05, + "loss": 1.4154566955566406, + "step": 440500 + }, + { + "epoch": 58.74666666666667, + "grad_norm": 0.8768618106842041, + "learning_rate": 2.0640133333333333e-05, + "loss": 1.4236866760253906, + "step": 440600 + }, + { + "epoch": 58.76, + "grad_norm": 0.8256394267082214, + "learning_rate": 2.0633466666666668e-05, + "loss": 1.41985107421875, + "step": 440700 + }, + { + "epoch": 58.77333333333333, + "grad_norm": 0.8697381019592285, + "learning_rate": 2.06268e-05, + "loss": 1.4237368774414063, + "step": 440800 + }, + { + "epoch": 58.78666666666667, + "grad_norm": 0.8941296935081482, + "learning_rate": 2.0620133333333333e-05, + "loss": 1.4222611999511718, + "step": 440900 + }, + { + "epoch": 58.8, + "grad_norm": 0.8877124786376953, + "learning_rate": 2.061346666666667e-05, + "loss": 1.4254855346679687, + "step": 441000 + }, + { + "epoch": 58.81333333333333, + "grad_norm": 0.9030829071998596, + "learning_rate": 2.06068e-05, + "loss": 1.4235409545898436, + "step": 441100 + }, + { + "epoch": 58.82666666666667, + "grad_norm": 0.9028357267379761, + "learning_rate": 2.0600133333333336e-05, + "loss": 1.4207374572753906, + "step": 441200 + }, + { + "epoch": 58.84, + "grad_norm": 0.9188116192817688, + "learning_rate": 2.0593466666666665e-05, + "loss": 1.4223762512207032, + "step": 441300 + }, + { + "epoch": 58.85333333333333, + "grad_norm": 0.9232787489891052, + "learning_rate": 2.0586866666666668e-05, + "loss": 1.4255131530761718, + "step": 441400 + }, + { + "epoch": 58.86666666666667, + "grad_norm": 0.874527633190155, + "learning_rate": 2.0580200000000003e-05, + "loss": 1.4305357360839843, + "step": 441500 + }, + { + "epoch": 58.88, + "grad_norm": 0.8727383017539978, + "learning_rate": 2.0573533333333332e-05, + "loss": 1.4260952758789063, + "step": 441600 + }, + { + "epoch": 58.89333333333333, + "grad_norm": 0.8848722577095032, + "learning_rate": 2.0566866666666668e-05, + "loss": 1.425802001953125, + "step": 441700 + }, + { + "epoch": 58.906666666666666, + "grad_norm": 0.8801239132881165, + "learning_rate": 2.05602e-05, + "loss": 1.4275160217285157, + "step": 441800 + }, + { + "epoch": 58.92, + "grad_norm": 0.8728554248809814, + "learning_rate": 2.0553533333333332e-05, + "loss": 1.4327494812011718, + "step": 441900 + }, + { + "epoch": 58.93333333333333, + "grad_norm": 0.8942492008209229, + "learning_rate": 2.0546866666666668e-05, + "loss": 1.4299046325683593, + "step": 442000 + }, + { + "epoch": 58.946666666666665, + "grad_norm": 0.9094804525375366, + "learning_rate": 2.05402e-05, + "loss": 1.4307928466796875, + "step": 442100 + }, + { + "epoch": 58.96, + "grad_norm": 0.871557891368866, + "learning_rate": 2.0533533333333336e-05, + "loss": 1.42893310546875, + "step": 442200 + }, + { + "epoch": 58.973333333333336, + "grad_norm": 0.8748642802238464, + "learning_rate": 2.0526866666666665e-05, + "loss": 1.4272027587890626, + "step": 442300 + }, + { + "epoch": 58.986666666666665, + "grad_norm": 0.8672638535499573, + "learning_rate": 2.05202e-05, + "loss": 1.4299638366699219, + "step": 442400 + }, + { + "epoch": 59.0, + "grad_norm": 0.8816332221031189, + "learning_rate": 2.0513533333333336e-05, + "loss": 1.434586944580078, + "step": 442500 + }, + { + "epoch": 59.013333333333335, + "grad_norm": 0.8527655601501465, + "learning_rate": 2.050686666666667e-05, + "loss": 1.3740353393554687, + "step": 442600 + }, + { + "epoch": 59.026666666666664, + "grad_norm": 0.8620314598083496, + "learning_rate": 2.05002e-05, + "loss": 1.3709056091308593, + "step": 442700 + }, + { + "epoch": 59.04, + "grad_norm": 0.8591675758361816, + "learning_rate": 2.0493533333333333e-05, + "loss": 1.3708229064941406, + "step": 442800 + }, + { + "epoch": 59.053333333333335, + "grad_norm": 0.8642350435256958, + "learning_rate": 2.048686666666667e-05, + "loss": 1.373277587890625, + "step": 442900 + }, + { + "epoch": 59.06666666666667, + "grad_norm": 0.8944986462593079, + "learning_rate": 2.04802e-05, + "loss": 1.3693106079101562, + "step": 443000 + }, + { + "epoch": 59.08, + "grad_norm": 0.8772505521774292, + "learning_rate": 2.0473533333333333e-05, + "loss": 1.3786691284179688, + "step": 443100 + }, + { + "epoch": 59.093333333333334, + "grad_norm": 0.828309178352356, + "learning_rate": 2.046686666666667e-05, + "loss": 1.3788882446289064, + "step": 443200 + }, + { + "epoch": 59.10666666666667, + "grad_norm": 0.8052541613578796, + "learning_rate": 2.04602e-05, + "loss": 1.3764219665527344, + "step": 443300 + }, + { + "epoch": 59.12, + "grad_norm": 0.8364429473876953, + "learning_rate": 2.0453533333333337e-05, + "loss": 1.3792369079589843, + "step": 443400 + }, + { + "epoch": 59.13333333333333, + "grad_norm": 0.8565122485160828, + "learning_rate": 2.0446933333333336e-05, + "loss": 1.3825364685058594, + "step": 443500 + }, + { + "epoch": 59.14666666666667, + "grad_norm": 0.8464578986167908, + "learning_rate": 2.0440266666666668e-05, + "loss": 1.38104248046875, + "step": 443600 + }, + { + "epoch": 59.16, + "grad_norm": 0.8631567358970642, + "learning_rate": 2.04336e-05, + "loss": 1.383396759033203, + "step": 443700 + }, + { + "epoch": 59.17333333333333, + "grad_norm": 0.8802007436752319, + "learning_rate": 2.0426933333333333e-05, + "loss": 1.3867723083496093, + "step": 443800 + }, + { + "epoch": 59.18666666666667, + "grad_norm": 0.8594309687614441, + "learning_rate": 2.0420266666666668e-05, + "loss": 1.3859178161621093, + "step": 443900 + }, + { + "epoch": 59.2, + "grad_norm": 0.8774383068084717, + "learning_rate": 2.04136e-05, + "loss": 1.3861714172363282, + "step": 444000 + }, + { + "epoch": 59.21333333333333, + "grad_norm": 0.8826853632926941, + "learning_rate": 2.0406933333333333e-05, + "loss": 1.3873568725585939, + "step": 444100 + }, + { + "epoch": 59.22666666666667, + "grad_norm": 0.7932345867156982, + "learning_rate": 2.040026666666667e-05, + "loss": 1.387662353515625, + "step": 444200 + }, + { + "epoch": 59.24, + "grad_norm": 0.8927592635154724, + "learning_rate": 2.03936e-05, + "loss": 1.3858427429199218, + "step": 444300 + }, + { + "epoch": 59.25333333333333, + "grad_norm": 0.8642708659172058, + "learning_rate": 2.0386933333333336e-05, + "loss": 1.392750244140625, + "step": 444400 + }, + { + "epoch": 59.266666666666666, + "grad_norm": 0.8669323325157166, + "learning_rate": 2.038026666666667e-05, + "loss": 1.383953857421875, + "step": 444500 + }, + { + "epoch": 59.28, + "grad_norm": 0.8710570931434631, + "learning_rate": 2.03736e-05, + "loss": 1.3882061767578124, + "step": 444600 + }, + { + "epoch": 59.29333333333334, + "grad_norm": 0.9176151752471924, + "learning_rate": 2.0366933333333337e-05, + "loss": 1.391685791015625, + "step": 444700 + }, + { + "epoch": 59.306666666666665, + "grad_norm": 0.831787109375, + "learning_rate": 2.0360266666666665e-05, + "loss": 1.3894924926757812, + "step": 444800 + }, + { + "epoch": 59.32, + "grad_norm": 0.8599420785903931, + "learning_rate": 2.03536e-05, + "loss": 1.3913801574707032, + "step": 444900 + }, + { + "epoch": 59.333333333333336, + "grad_norm": 0.8475634455680847, + "learning_rate": 2.0346933333333333e-05, + "loss": 1.392063751220703, + "step": 445000 + }, + { + "epoch": 59.346666666666664, + "grad_norm": 0.8321338891983032, + "learning_rate": 2.034026666666667e-05, + "loss": 1.3921504211425781, + "step": 445100 + }, + { + "epoch": 59.36, + "grad_norm": 0.8083276748657227, + "learning_rate": 2.03336e-05, + "loss": 1.3912481689453124, + "step": 445200 + }, + { + "epoch": 59.373333333333335, + "grad_norm": 0.8358070850372314, + "learning_rate": 2.0326933333333334e-05, + "loss": 1.3926693725585937, + "step": 445300 + }, + { + "epoch": 59.38666666666666, + "grad_norm": 0.8596873879432678, + "learning_rate": 2.032026666666667e-05, + "loss": 1.397172088623047, + "step": 445400 + }, + { + "epoch": 59.4, + "grad_norm": 0.8789359331130981, + "learning_rate": 2.0313666666666668e-05, + "loss": 1.3950949096679688, + "step": 445500 + }, + { + "epoch": 59.413333333333334, + "grad_norm": 0.8819690346717834, + "learning_rate": 2.0307e-05, + "loss": 1.3969586181640625, + "step": 445600 + }, + { + "epoch": 59.42666666666667, + "grad_norm": 0.8241303563117981, + "learning_rate": 2.0300333333333336e-05, + "loss": 1.3977046203613281, + "step": 445700 + }, + { + "epoch": 59.44, + "grad_norm": 0.8681808114051819, + "learning_rate": 2.0293666666666665e-05, + "loss": 1.395835418701172, + "step": 445800 + }, + { + "epoch": 59.45333333333333, + "grad_norm": 0.8753331899642944, + "learning_rate": 2.0287e-05, + "loss": 1.397332763671875, + "step": 445900 + }, + { + "epoch": 59.46666666666667, + "grad_norm": 0.936934769153595, + "learning_rate": 2.0280333333333333e-05, + "loss": 1.396897430419922, + "step": 446000 + }, + { + "epoch": 59.48, + "grad_norm": 0.9100282788276672, + "learning_rate": 2.027366666666667e-05, + "loss": 1.4025897216796874, + "step": 446100 + }, + { + "epoch": 59.49333333333333, + "grad_norm": 0.8733969330787659, + "learning_rate": 2.0267e-05, + "loss": 1.4047660827636719, + "step": 446200 + }, + { + "epoch": 59.50666666666667, + "grad_norm": 0.879501461982727, + "learning_rate": 2.0260333333333333e-05, + "loss": 1.4029029846191405, + "step": 446300 + }, + { + "epoch": 59.52, + "grad_norm": 0.8982552886009216, + "learning_rate": 2.025366666666667e-05, + "loss": 1.4038697814941405, + "step": 446400 + }, + { + "epoch": 59.53333333333333, + "grad_norm": 0.853354811668396, + "learning_rate": 2.0247e-05, + "loss": 1.3982884216308593, + "step": 446500 + }, + { + "epoch": 59.54666666666667, + "grad_norm": 0.8160167336463928, + "learning_rate": 2.0240333333333333e-05, + "loss": 1.4008200073242187, + "step": 446600 + }, + { + "epoch": 59.56, + "grad_norm": 0.8860510587692261, + "learning_rate": 2.023366666666667e-05, + "loss": 1.40131591796875, + "step": 446700 + }, + { + "epoch": 59.57333333333333, + "grad_norm": 0.9074357748031616, + "learning_rate": 2.0227e-05, + "loss": 1.4021209716796874, + "step": 446800 + }, + { + "epoch": 59.586666666666666, + "grad_norm": 0.9050543904304504, + "learning_rate": 2.0220333333333337e-05, + "loss": 1.4041819763183594, + "step": 446900 + }, + { + "epoch": 59.6, + "grad_norm": 0.8996903896331787, + "learning_rate": 2.0213666666666666e-05, + "loss": 1.4066482543945313, + "step": 447000 + }, + { + "epoch": 59.61333333333333, + "grad_norm": 0.8637166619300842, + "learning_rate": 2.0207e-05, + "loss": 1.40481689453125, + "step": 447100 + }, + { + "epoch": 59.626666666666665, + "grad_norm": 0.915777325630188, + "learning_rate": 2.0200333333333334e-05, + "loss": 1.4069454956054688, + "step": 447200 + }, + { + "epoch": 59.64, + "grad_norm": 0.8580685257911682, + "learning_rate": 2.0193666666666666e-05, + "loss": 1.4054689025878906, + "step": 447300 + }, + { + "epoch": 59.653333333333336, + "grad_norm": 0.8624551296234131, + "learning_rate": 2.0187000000000002e-05, + "loss": 1.406177978515625, + "step": 447400 + }, + { + "epoch": 59.666666666666664, + "grad_norm": 0.9435851573944092, + "learning_rate": 2.01804e-05, + "loss": 1.410730743408203, + "step": 447500 + }, + { + "epoch": 59.68, + "grad_norm": 0.8933364152908325, + "learning_rate": 2.0173733333333333e-05, + "loss": 1.4079649353027344, + "step": 447600 + }, + { + "epoch": 59.693333333333335, + "grad_norm": 0.9013268351554871, + "learning_rate": 2.016706666666667e-05, + "loss": 1.4075224304199219, + "step": 447700 + }, + { + "epoch": 59.70666666666666, + "grad_norm": 0.8835455775260925, + "learning_rate": 2.01604e-05, + "loss": 1.408735809326172, + "step": 447800 + }, + { + "epoch": 59.72, + "grad_norm": 0.9013435244560242, + "learning_rate": 2.0153733333333337e-05, + "loss": 1.4129440307617187, + "step": 447900 + }, + { + "epoch": 59.733333333333334, + "grad_norm": 0.9216914772987366, + "learning_rate": 2.0147066666666666e-05, + "loss": 1.413671875, + "step": 448000 + }, + { + "epoch": 59.74666666666667, + "grad_norm": 0.9072982668876648, + "learning_rate": 2.01404e-05, + "loss": 1.4080628967285156, + "step": 448100 + }, + { + "epoch": 59.76, + "grad_norm": 0.9267192482948303, + "learning_rate": 2.0133733333333333e-05, + "loss": 1.4114108276367188, + "step": 448200 + }, + { + "epoch": 59.77333333333333, + "grad_norm": 0.8571563959121704, + "learning_rate": 2.0127066666666666e-05, + "loss": 1.4090080261230469, + "step": 448300 + }, + { + "epoch": 59.78666666666667, + "grad_norm": 0.927082896232605, + "learning_rate": 2.01204e-05, + "loss": 1.4117256164550782, + "step": 448400 + }, + { + "epoch": 59.8, + "grad_norm": 0.9052351117134094, + "learning_rate": 2.0113733333333334e-05, + "loss": 1.4136744689941407, + "step": 448500 + }, + { + "epoch": 59.81333333333333, + "grad_norm": 0.9458771347999573, + "learning_rate": 2.010706666666667e-05, + "loss": 1.4105580139160157, + "step": 448600 + }, + { + "epoch": 59.82666666666667, + "grad_norm": 0.7968136072158813, + "learning_rate": 2.0100399999999998e-05, + "loss": 1.4169776916503907, + "step": 448700 + }, + { + "epoch": 59.84, + "grad_norm": 0.8549537658691406, + "learning_rate": 2.0093733333333334e-05, + "loss": 1.4146495056152344, + "step": 448800 + }, + { + "epoch": 59.85333333333333, + "grad_norm": 0.8725696802139282, + "learning_rate": 2.008706666666667e-05, + "loss": 1.4181309509277344, + "step": 448900 + }, + { + "epoch": 59.86666666666667, + "grad_norm": 0.8683002591133118, + "learning_rate": 2.0080400000000002e-05, + "loss": 1.4133045959472657, + "step": 449000 + }, + { + "epoch": 59.88, + "grad_norm": 0.8000110387802124, + "learning_rate": 2.0073733333333334e-05, + "loss": 1.4159756469726563, + "step": 449100 + }, + { + "epoch": 59.89333333333333, + "grad_norm": 0.887690544128418, + "learning_rate": 2.0067066666666666e-05, + "loss": 1.4154435729980468, + "step": 449200 + }, + { + "epoch": 59.906666666666666, + "grad_norm": 0.8402546644210815, + "learning_rate": 2.0060400000000002e-05, + "loss": 1.4177676391601564, + "step": 449300 + }, + { + "epoch": 59.92, + "grad_norm": 0.9004342555999756, + "learning_rate": 2.0053733333333334e-05, + "loss": 1.4182846069335937, + "step": 449400 + }, + { + "epoch": 59.93333333333333, + "grad_norm": 0.8389486074447632, + "learning_rate": 2.0047066666666666e-05, + "loss": 1.4176017761230468, + "step": 449500 + }, + { + "epoch": 59.946666666666665, + "grad_norm": 0.889369785785675, + "learning_rate": 2.0040400000000002e-05, + "loss": 1.4182723999023437, + "step": 449600 + }, + { + "epoch": 59.96, + "grad_norm": 0.9012863039970398, + "learning_rate": 2.00338e-05, + "loss": 1.4193865966796875, + "step": 449700 + }, + { + "epoch": 59.973333333333336, + "grad_norm": 0.9062787294387817, + "learning_rate": 2.0027133333333333e-05, + "loss": 1.4206649780273437, + "step": 449800 + }, + { + "epoch": 59.986666666666665, + "grad_norm": 0.8925827145576477, + "learning_rate": 2.002046666666667e-05, + "loss": 1.4192771911621094, + "step": 449900 + }, + { + "epoch": 60.0, + "grad_norm": 0.9131714105606079, + "learning_rate": 2.00138e-05, + "loss": 1.4141000366210938, + "step": 450000 + }, + { + "epoch": 60.013333333333335, + "grad_norm": 0.8766162991523743, + "learning_rate": 2.0007133333333334e-05, + "loss": 1.3626673889160157, + "step": 450100 + }, + { + "epoch": 60.026666666666664, + "grad_norm": 0.8619803786277771, + "learning_rate": 2.0000466666666666e-05, + "loss": 1.365054931640625, + "step": 450200 + }, + { + "epoch": 60.04, + "grad_norm": 0.8605244159698486, + "learning_rate": 1.99938e-05, + "loss": 1.3631307983398437, + "step": 450300 + }, + { + "epoch": 60.053333333333335, + "grad_norm": 0.855178713798523, + "learning_rate": 1.9987133333333334e-05, + "loss": 1.3666217041015625, + "step": 450400 + }, + { + "epoch": 60.06666666666667, + "grad_norm": 0.8652241826057434, + "learning_rate": 1.9980466666666666e-05, + "loss": 1.36834228515625, + "step": 450500 + }, + { + "epoch": 60.08, + "grad_norm": 0.7819242477416992, + "learning_rate": 1.9973800000000002e-05, + "loss": 1.3638204956054687, + "step": 450600 + }, + { + "epoch": 60.093333333333334, + "grad_norm": 0.8712034225463867, + "learning_rate": 1.9967133333333334e-05, + "loss": 1.3687100219726562, + "step": 450700 + }, + { + "epoch": 60.10666666666667, + "grad_norm": 0.8641767501831055, + "learning_rate": 1.996046666666667e-05, + "loss": 1.3722442626953124, + "step": 450800 + }, + { + "epoch": 60.12, + "grad_norm": 0.800079882144928, + "learning_rate": 1.99538e-05, + "loss": 1.3667047119140625, + "step": 450900 + }, + { + "epoch": 60.13333333333333, + "grad_norm": 0.8609186410903931, + "learning_rate": 1.9947133333333334e-05, + "loss": 1.370550079345703, + "step": 451000 + }, + { + "epoch": 60.14666666666667, + "grad_norm": 0.8792775869369507, + "learning_rate": 1.994046666666667e-05, + "loss": 1.3739710998535157, + "step": 451100 + }, + { + "epoch": 60.16, + "grad_norm": 0.8350428938865662, + "learning_rate": 1.99338e-05, + "loss": 1.3673428344726561, + "step": 451200 + }, + { + "epoch": 60.17333333333333, + "grad_norm": 0.8641292452812195, + "learning_rate": 1.9927133333333334e-05, + "loss": 1.3756710815429687, + "step": 451300 + }, + { + "epoch": 60.18666666666667, + "grad_norm": 0.8623048663139343, + "learning_rate": 1.9920466666666667e-05, + "loss": 1.3705751037597655, + "step": 451400 + }, + { + "epoch": 60.2, + "grad_norm": 0.8862844705581665, + "learning_rate": 1.9913800000000002e-05, + "loss": 1.3776641845703126, + "step": 451500 + }, + { + "epoch": 60.21333333333333, + "grad_norm": 0.85312819480896, + "learning_rate": 1.9907133333333335e-05, + "loss": 1.3766864013671876, + "step": 451600 + }, + { + "epoch": 60.22666666666667, + "grad_norm": 0.860139787197113, + "learning_rate": 1.9900533333333334e-05, + "loss": 1.376378936767578, + "step": 451700 + }, + { + "epoch": 60.24, + "grad_norm": 0.895366370677948, + "learning_rate": 1.989386666666667e-05, + "loss": 1.3810842895507813, + "step": 451800 + }, + { + "epoch": 60.25333333333333, + "grad_norm": 0.8239558935165405, + "learning_rate": 1.98872e-05, + "loss": 1.376715850830078, + "step": 451900 + }, + { + "epoch": 60.266666666666666, + "grad_norm": 0.8806911110877991, + "learning_rate": 1.9880533333333334e-05, + "loss": 1.3794581604003906, + "step": 452000 + }, + { + "epoch": 60.28, + "grad_norm": 0.8843830823898315, + "learning_rate": 1.987386666666667e-05, + "loss": 1.3751409912109376, + "step": 452100 + }, + { + "epoch": 60.29333333333334, + "grad_norm": 0.8291395902633667, + "learning_rate": 1.98672e-05, + "loss": 1.3803631591796874, + "step": 452200 + }, + { + "epoch": 60.306666666666665, + "grad_norm": 0.8579269051551819, + "learning_rate": 1.9860533333333334e-05, + "loss": 1.379007568359375, + "step": 452300 + }, + { + "epoch": 60.32, + "grad_norm": 0.8788613080978394, + "learning_rate": 1.9853866666666666e-05, + "loss": 1.3800997924804688, + "step": 452400 + }, + { + "epoch": 60.333333333333336, + "grad_norm": 0.8551366925239563, + "learning_rate": 1.9847200000000002e-05, + "loss": 1.380692138671875, + "step": 452500 + }, + { + "epoch": 60.346666666666664, + "grad_norm": 0.897996187210083, + "learning_rate": 1.9840533333333334e-05, + "loss": 1.3825259399414063, + "step": 452600 + }, + { + "epoch": 60.36, + "grad_norm": 0.8699089288711548, + "learning_rate": 1.9833866666666667e-05, + "loss": 1.3819764709472657, + "step": 452700 + }, + { + "epoch": 60.373333333333335, + "grad_norm": 0.8734973669052124, + "learning_rate": 1.9827200000000002e-05, + "loss": 1.385391082763672, + "step": 452800 + }, + { + "epoch": 60.38666666666666, + "grad_norm": 0.8809809684753418, + "learning_rate": 1.9820533333333334e-05, + "loss": 1.3871815490722657, + "step": 452900 + }, + { + "epoch": 60.4, + "grad_norm": 0.8975648880004883, + "learning_rate": 1.9813866666666667e-05, + "loss": 1.38472412109375, + "step": 453000 + }, + { + "epoch": 60.413333333333334, + "grad_norm": 0.9081311225891113, + "learning_rate": 1.9807200000000002e-05, + "loss": 1.3865188598632812, + "step": 453100 + }, + { + "epoch": 60.42666666666667, + "grad_norm": 0.9099006652832031, + "learning_rate": 1.9800533333333335e-05, + "loss": 1.389481201171875, + "step": 453200 + }, + { + "epoch": 60.44, + "grad_norm": 0.864206850528717, + "learning_rate": 1.979386666666667e-05, + "loss": 1.390070037841797, + "step": 453300 + }, + { + "epoch": 60.45333333333333, + "grad_norm": 0.8600577116012573, + "learning_rate": 1.97872e-05, + "loss": 1.392391357421875, + "step": 453400 + }, + { + "epoch": 60.46666666666667, + "grad_norm": 0.8773865103721619, + "learning_rate": 1.9780533333333335e-05, + "loss": 1.3893141174316406, + "step": 453500 + }, + { + "epoch": 60.48, + "grad_norm": 0.8529485464096069, + "learning_rate": 1.9773866666666667e-05, + "loss": 1.3895809936523438, + "step": 453600 + }, + { + "epoch": 60.49333333333333, + "grad_norm": 0.9243431687355042, + "learning_rate": 1.9767266666666666e-05, + "loss": 1.391697540283203, + "step": 453700 + }, + { + "epoch": 60.50666666666667, + "grad_norm": 0.8365994691848755, + "learning_rate": 1.9760600000000002e-05, + "loss": 1.39140869140625, + "step": 453800 + }, + { + "epoch": 60.52, + "grad_norm": 0.8463616371154785, + "learning_rate": 1.9753933333333334e-05, + "loss": 1.3897438049316406, + "step": 453900 + }, + { + "epoch": 60.53333333333333, + "grad_norm": 0.8689169883728027, + "learning_rate": 1.9747266666666666e-05, + "loss": 1.3926591491699218, + "step": 454000 + }, + { + "epoch": 60.54666666666667, + "grad_norm": 0.8810186386108398, + "learning_rate": 1.9740600000000002e-05, + "loss": 1.3944500732421874, + "step": 454100 + }, + { + "epoch": 60.56, + "grad_norm": 0.8771687150001526, + "learning_rate": 1.9733933333333334e-05, + "loss": 1.3929228210449218, + "step": 454200 + }, + { + "epoch": 60.57333333333333, + "grad_norm": 0.854418933391571, + "learning_rate": 1.972726666666667e-05, + "loss": 1.3968455505371093, + "step": 454300 + }, + { + "epoch": 60.586666666666666, + "grad_norm": 0.8878345489501953, + "learning_rate": 1.97206e-05, + "loss": 1.3940657043457032, + "step": 454400 + }, + { + "epoch": 60.6, + "grad_norm": 0.8897739052772522, + "learning_rate": 1.9713933333333335e-05, + "loss": 1.3936965942382813, + "step": 454500 + }, + { + "epoch": 60.61333333333333, + "grad_norm": 0.9403147101402283, + "learning_rate": 1.9707266666666667e-05, + "loss": 1.3955183410644532, + "step": 454600 + }, + { + "epoch": 60.626666666666665, + "grad_norm": 0.8647699952125549, + "learning_rate": 1.97006e-05, + "loss": 1.3931178283691406, + "step": 454700 + }, + { + "epoch": 60.64, + "grad_norm": 0.9250267744064331, + "learning_rate": 1.9693933333333335e-05, + "loss": 1.394335479736328, + "step": 454800 + }, + { + "epoch": 60.653333333333336, + "grad_norm": 0.9054676294326782, + "learning_rate": 1.9687266666666667e-05, + "loss": 1.3964520263671876, + "step": 454900 + }, + { + "epoch": 60.666666666666664, + "grad_norm": 0.8482034206390381, + "learning_rate": 1.9680600000000003e-05, + "loss": 1.401461639404297, + "step": 455000 + }, + { + "epoch": 60.68, + "grad_norm": 0.8947781920433044, + "learning_rate": 1.967393333333333e-05, + "loss": 1.398545684814453, + "step": 455100 + }, + { + "epoch": 60.693333333333335, + "grad_norm": 0.834432065486908, + "learning_rate": 1.9667266666666667e-05, + "loss": 1.3957997131347657, + "step": 455200 + }, + { + "epoch": 60.70666666666666, + "grad_norm": 0.8843758702278137, + "learning_rate": 1.9660600000000003e-05, + "loss": 1.397581787109375, + "step": 455300 + }, + { + "epoch": 60.72, + "grad_norm": 0.8692967295646667, + "learning_rate": 1.9653933333333335e-05, + "loss": 1.3974429321289064, + "step": 455400 + }, + { + "epoch": 60.733333333333334, + "grad_norm": 0.8995789885520935, + "learning_rate": 1.9647266666666667e-05, + "loss": 1.3975807189941407, + "step": 455500 + }, + { + "epoch": 60.74666666666667, + "grad_norm": 0.9164907932281494, + "learning_rate": 1.96406e-05, + "loss": 1.4055183410644532, + "step": 455600 + }, + { + "epoch": 60.76, + "grad_norm": 0.8928161859512329, + "learning_rate": 1.9634e-05, + "loss": 1.4037777709960937, + "step": 455700 + }, + { + "epoch": 60.77333333333333, + "grad_norm": 0.8764446377754211, + "learning_rate": 1.9627333333333334e-05, + "loss": 1.4005415344238281, + "step": 455800 + }, + { + "epoch": 60.78666666666667, + "grad_norm": 0.904509425163269, + "learning_rate": 1.9620666666666667e-05, + "loss": 1.4026527404785156, + "step": 455900 + }, + { + "epoch": 60.8, + "grad_norm": 0.898916482925415, + "learning_rate": 1.9614000000000002e-05, + "loss": 1.407811279296875, + "step": 456000 + }, + { + "epoch": 60.81333333333333, + "grad_norm": 0.9085363149642944, + "learning_rate": 1.9607333333333335e-05, + "loss": 1.4023429870605468, + "step": 456100 + }, + { + "epoch": 60.82666666666667, + "grad_norm": 0.8209180235862732, + "learning_rate": 1.9600666666666667e-05, + "loss": 1.4042745971679687, + "step": 456200 + }, + { + "epoch": 60.84, + "grad_norm": 0.9050608277320862, + "learning_rate": 1.9594000000000002e-05, + "loss": 1.4010504150390626, + "step": 456300 + }, + { + "epoch": 60.85333333333333, + "grad_norm": 0.8617534637451172, + "learning_rate": 1.9587333333333335e-05, + "loss": 1.4049598693847656, + "step": 456400 + }, + { + "epoch": 60.86666666666667, + "grad_norm": 0.8977437615394592, + "learning_rate": 1.9580666666666667e-05, + "loss": 1.408564910888672, + "step": 456500 + }, + { + "epoch": 60.88, + "grad_norm": 0.9017003178596497, + "learning_rate": 1.9574e-05, + "loss": 1.4092807006835937, + "step": 456600 + }, + { + "epoch": 60.89333333333333, + "grad_norm": 0.8867468237876892, + "learning_rate": 1.9567333333333335e-05, + "loss": 1.4079061889648437, + "step": 456700 + }, + { + "epoch": 60.906666666666666, + "grad_norm": 0.9068670868873596, + "learning_rate": 1.9560666666666667e-05, + "loss": 1.408272705078125, + "step": 456800 + }, + { + "epoch": 60.92, + "grad_norm": 0.9402436017990112, + "learning_rate": 1.9554e-05, + "loss": 1.4082586669921875, + "step": 456900 + }, + { + "epoch": 60.93333333333333, + "grad_norm": 0.8949838280677795, + "learning_rate": 1.9547333333333335e-05, + "loss": 1.4101248168945313, + "step": 457000 + }, + { + "epoch": 60.946666666666665, + "grad_norm": 0.8980549573898315, + "learning_rate": 1.9540666666666667e-05, + "loss": 1.4082913208007812, + "step": 457100 + }, + { + "epoch": 60.96, + "grad_norm": 0.8805965781211853, + "learning_rate": 1.9534000000000003e-05, + "loss": 1.4107188415527343, + "step": 457200 + }, + { + "epoch": 60.973333333333336, + "grad_norm": 0.8333622217178345, + "learning_rate": 1.9527333333333332e-05, + "loss": 1.40792236328125, + "step": 457300 + }, + { + "epoch": 60.986666666666665, + "grad_norm": 0.872611403465271, + "learning_rate": 1.9520666666666668e-05, + "loss": 1.4117628479003905, + "step": 457400 + }, + { + "epoch": 61.0, + "grad_norm": 0.8566659092903137, + "learning_rate": 1.9514000000000003e-05, + "loss": 1.409874725341797, + "step": 457500 + }, + { + "epoch": 61.013333333333335, + "grad_norm": 0.8656761050224304, + "learning_rate": 1.9507333333333332e-05, + "loss": 1.3577760314941407, + "step": 457600 + }, + { + "epoch": 61.026666666666664, + "grad_norm": 0.8465045094490051, + "learning_rate": 1.9500733333333335e-05, + "loss": 1.358833770751953, + "step": 457700 + }, + { + "epoch": 61.04, + "grad_norm": 0.8309293985366821, + "learning_rate": 1.949406666666667e-05, + "loss": 1.356152801513672, + "step": 457800 + }, + { + "epoch": 61.053333333333335, + "grad_norm": 0.9162067174911499, + "learning_rate": 1.94874e-05, + "loss": 1.355301971435547, + "step": 457900 + }, + { + "epoch": 61.06666666666667, + "grad_norm": 0.9088298678398132, + "learning_rate": 1.9480733333333335e-05, + "loss": 1.3575556945800782, + "step": 458000 + }, + { + "epoch": 61.08, + "grad_norm": 0.8428143262863159, + "learning_rate": 1.9474066666666667e-05, + "loss": 1.3585945129394532, + "step": 458100 + }, + { + "epoch": 61.093333333333334, + "grad_norm": 0.8562920093536377, + "learning_rate": 1.9467400000000003e-05, + "loss": 1.361529541015625, + "step": 458200 + }, + { + "epoch": 61.10666666666667, + "grad_norm": 0.8210142254829407, + "learning_rate": 1.9460733333333335e-05, + "loss": 1.3608488464355468, + "step": 458300 + }, + { + "epoch": 61.12, + "grad_norm": 0.8906102180480957, + "learning_rate": 1.9454066666666667e-05, + "loss": 1.3610110473632813, + "step": 458400 + }, + { + "epoch": 61.13333333333333, + "grad_norm": 0.8572280406951904, + "learning_rate": 1.9447400000000003e-05, + "loss": 1.359154510498047, + "step": 458500 + }, + { + "epoch": 61.14666666666667, + "grad_norm": 0.8383269906044006, + "learning_rate": 1.9440733333333332e-05, + "loss": 1.3642387390136719, + "step": 458600 + }, + { + "epoch": 61.16, + "grad_norm": 0.8838930726051331, + "learning_rate": 1.9434066666666667e-05, + "loss": 1.3644644165039062, + "step": 458700 + }, + { + "epoch": 61.17333333333333, + "grad_norm": 0.8675736784934998, + "learning_rate": 1.94274e-05, + "loss": 1.3637721252441406, + "step": 458800 + }, + { + "epoch": 61.18666666666667, + "grad_norm": 0.8860127329826355, + "learning_rate": 1.9420733333333335e-05, + "loss": 1.3696493530273437, + "step": 458900 + }, + { + "epoch": 61.2, + "grad_norm": 0.8294709920883179, + "learning_rate": 1.9414066666666668e-05, + "loss": 1.3652156066894532, + "step": 459000 + }, + { + "epoch": 61.21333333333333, + "grad_norm": 0.8422327041625977, + "learning_rate": 1.94074e-05, + "loss": 1.36591064453125, + "step": 459100 + }, + { + "epoch": 61.22666666666667, + "grad_norm": 0.8764711618423462, + "learning_rate": 1.9400733333333336e-05, + "loss": 1.3690542602539062, + "step": 459200 + }, + { + "epoch": 61.24, + "grad_norm": 0.8453260064125061, + "learning_rate": 1.9394066666666668e-05, + "loss": 1.3683854675292968, + "step": 459300 + }, + { + "epoch": 61.25333333333333, + "grad_norm": 0.8774312734603882, + "learning_rate": 1.93874e-05, + "loss": 1.3740834045410155, + "step": 459400 + }, + { + "epoch": 61.266666666666666, + "grad_norm": 0.8766496777534485, + "learning_rate": 1.9380733333333336e-05, + "loss": 1.3723397827148438, + "step": 459500 + }, + { + "epoch": 61.28, + "grad_norm": 0.8459547162055969, + "learning_rate": 1.9374066666666668e-05, + "loss": 1.3714936828613282, + "step": 459600 + }, + { + "epoch": 61.29333333333334, + "grad_norm": 0.8652738332748413, + "learning_rate": 1.9367466666666667e-05, + "loss": 1.3694456481933595, + "step": 459700 + }, + { + "epoch": 61.306666666666665, + "grad_norm": 0.8927618265151978, + "learning_rate": 1.9360800000000003e-05, + "loss": 1.3731556701660157, + "step": 459800 + }, + { + "epoch": 61.32, + "grad_norm": 0.9212049841880798, + "learning_rate": 1.9354133333333335e-05, + "loss": 1.371415557861328, + "step": 459900 + }, + { + "epoch": 61.333333333333336, + "grad_norm": 0.8938565850257874, + "learning_rate": 1.9347466666666667e-05, + "loss": 1.3725595092773437, + "step": 460000 + }, + { + "epoch": 61.346666666666664, + "grad_norm": 0.9088102579116821, + "learning_rate": 1.93408e-05, + "loss": 1.368966064453125, + "step": 460100 + }, + { + "epoch": 61.36, + "grad_norm": 0.8691730499267578, + "learning_rate": 1.9334133333333335e-05, + "loss": 1.374231719970703, + "step": 460200 + }, + { + "epoch": 61.373333333333335, + "grad_norm": 0.922798752784729, + "learning_rate": 1.9327466666666667e-05, + "loss": 1.3764288330078125, + "step": 460300 + }, + { + "epoch": 61.38666666666666, + "grad_norm": 0.83963543176651, + "learning_rate": 1.93208e-05, + "loss": 1.3810987854003907, + "step": 460400 + }, + { + "epoch": 61.4, + "grad_norm": 0.839726448059082, + "learning_rate": 1.9314133333333335e-05, + "loss": 1.3756941223144532, + "step": 460500 + }, + { + "epoch": 61.413333333333334, + "grad_norm": 0.8824960589408875, + "learning_rate": 1.9307466666666668e-05, + "loss": 1.3773788452148437, + "step": 460600 + }, + { + "epoch": 61.42666666666667, + "grad_norm": 0.8845879435539246, + "learning_rate": 1.9300800000000003e-05, + "loss": 1.377089080810547, + "step": 460700 + }, + { + "epoch": 61.44, + "grad_norm": 0.8615458011627197, + "learning_rate": 1.9294133333333332e-05, + "loss": 1.3773002624511719, + "step": 460800 + }, + { + "epoch": 61.45333333333333, + "grad_norm": 0.934096097946167, + "learning_rate": 1.9287466666666668e-05, + "loss": 1.3814968872070312, + "step": 460900 + }, + { + "epoch": 61.46666666666667, + "grad_norm": 0.8833667039871216, + "learning_rate": 1.92808e-05, + "loss": 1.379684295654297, + "step": 461000 + }, + { + "epoch": 61.48, + "grad_norm": 0.8190123438835144, + "learning_rate": 1.9274133333333332e-05, + "loss": 1.3798077392578125, + "step": 461100 + }, + { + "epoch": 61.49333333333333, + "grad_norm": 0.8761352300643921, + "learning_rate": 1.9267466666666668e-05, + "loss": 1.3821427917480469, + "step": 461200 + }, + { + "epoch": 61.50666666666667, + "grad_norm": 0.8497684597969055, + "learning_rate": 1.92608e-05, + "loss": 1.3799111938476563, + "step": 461300 + }, + { + "epoch": 61.52, + "grad_norm": 0.9118313789367676, + "learning_rate": 1.9254133333333336e-05, + "loss": 1.3833085632324218, + "step": 461400 + }, + { + "epoch": 61.53333333333333, + "grad_norm": 0.8651177287101746, + "learning_rate": 1.9247466666666665e-05, + "loss": 1.3809347534179688, + "step": 461500 + }, + { + "epoch": 61.54666666666667, + "grad_norm": 0.889124870300293, + "learning_rate": 1.92408e-05, + "loss": 1.3849130249023438, + "step": 461600 + }, + { + "epoch": 61.56, + "grad_norm": 0.8513779640197754, + "learning_rate": 1.9234200000000003e-05, + "loss": 1.3853852844238281, + "step": 461700 + }, + { + "epoch": 61.57333333333333, + "grad_norm": 0.887895941734314, + "learning_rate": 1.9227533333333332e-05, + "loss": 1.3864006042480468, + "step": 461800 + }, + { + "epoch": 61.586666666666666, + "grad_norm": 0.8509908318519592, + "learning_rate": 1.9220866666666668e-05, + "loss": 1.3839459228515625, + "step": 461900 + }, + { + "epoch": 61.6, + "grad_norm": 0.9221972823143005, + "learning_rate": 1.9214200000000003e-05, + "loss": 1.383968048095703, + "step": 462000 + }, + { + "epoch": 61.61333333333333, + "grad_norm": 0.9250000715255737, + "learning_rate": 1.9207533333333332e-05, + "loss": 1.3876034545898437, + "step": 462100 + }, + { + "epoch": 61.626666666666665, + "grad_norm": 0.8646901845932007, + "learning_rate": 1.9200866666666668e-05, + "loss": 1.3860377502441406, + "step": 462200 + }, + { + "epoch": 61.64, + "grad_norm": 0.861657440662384, + "learning_rate": 1.91942e-05, + "loss": 1.383225555419922, + "step": 462300 + }, + { + "epoch": 61.653333333333336, + "grad_norm": 0.8866887092590332, + "learning_rate": 1.9187533333333336e-05, + "loss": 1.3847361755371095, + "step": 462400 + }, + { + "epoch": 61.666666666666664, + "grad_norm": 0.9262802004814148, + "learning_rate": 1.9180866666666668e-05, + "loss": 1.388157958984375, + "step": 462500 + }, + { + "epoch": 61.68, + "grad_norm": 0.9400535225868225, + "learning_rate": 1.91742e-05, + "loss": 1.393813018798828, + "step": 462600 + }, + { + "epoch": 61.693333333333335, + "grad_norm": 0.8449798822402954, + "learning_rate": 1.9167533333333336e-05, + "loss": 1.3909236145019532, + "step": 462700 + }, + { + "epoch": 61.70666666666666, + "grad_norm": 0.9139823913574219, + "learning_rate": 1.9160866666666668e-05, + "loss": 1.3890992736816405, + "step": 462800 + }, + { + "epoch": 61.72, + "grad_norm": 0.8991366028785706, + "learning_rate": 1.91542e-05, + "loss": 1.3909164428710938, + "step": 462900 + }, + { + "epoch": 61.733333333333334, + "grad_norm": 0.8757520914077759, + "learning_rate": 1.9147533333333333e-05, + "loss": 1.3896699523925782, + "step": 463000 + }, + { + "epoch": 61.74666666666667, + "grad_norm": 0.9049115180969238, + "learning_rate": 1.9140866666666668e-05, + "loss": 1.394837646484375, + "step": 463100 + }, + { + "epoch": 61.76, + "grad_norm": 0.8733699917793274, + "learning_rate": 1.91342e-05, + "loss": 1.3964109802246094, + "step": 463200 + }, + { + "epoch": 61.77333333333333, + "grad_norm": 0.8619510531425476, + "learning_rate": 1.9127533333333333e-05, + "loss": 1.3983462524414063, + "step": 463300 + }, + { + "epoch": 61.78666666666667, + "grad_norm": 0.9041216373443604, + "learning_rate": 1.912086666666667e-05, + "loss": 1.3950437927246093, + "step": 463400 + }, + { + "epoch": 61.8, + "grad_norm": 0.8376539349555969, + "learning_rate": 1.91142e-05, + "loss": 1.3959678649902343, + "step": 463500 + }, + { + "epoch": 61.81333333333333, + "grad_norm": 0.9201698899269104, + "learning_rate": 1.9107533333333336e-05, + "loss": 1.3929420471191407, + "step": 463600 + }, + { + "epoch": 61.82666666666667, + "grad_norm": 0.8924663066864014, + "learning_rate": 1.9100866666666665e-05, + "loss": 1.3928451538085938, + "step": 463700 + }, + { + "epoch": 61.84, + "grad_norm": 0.9583051204681396, + "learning_rate": 1.9094266666666668e-05, + "loss": 1.3949006652832032, + "step": 463800 + }, + { + "epoch": 61.85333333333333, + "grad_norm": 0.9100115299224854, + "learning_rate": 1.90876e-05, + "loss": 1.3972018432617188, + "step": 463900 + }, + { + "epoch": 61.86666666666667, + "grad_norm": 0.8739942908287048, + "learning_rate": 1.9080933333333336e-05, + "loss": 1.3991426086425782, + "step": 464000 + }, + { + "epoch": 61.88, + "grad_norm": 0.8799852728843689, + "learning_rate": 1.9074266666666668e-05, + "loss": 1.3998698425292968, + "step": 464100 + }, + { + "epoch": 61.89333333333333, + "grad_norm": 0.9696583151817322, + "learning_rate": 1.9067600000000004e-05, + "loss": 1.3958427429199218, + "step": 464200 + }, + { + "epoch": 61.906666666666666, + "grad_norm": 0.8549162745475769, + "learning_rate": 1.9060933333333332e-05, + "loss": 1.3939924621582032, + "step": 464300 + }, + { + "epoch": 61.92, + "grad_norm": 0.8806065320968628, + "learning_rate": 1.9054266666666668e-05, + "loss": 1.3964865112304687, + "step": 464400 + }, + { + "epoch": 61.93333333333333, + "grad_norm": 0.9188470840454102, + "learning_rate": 1.90476e-05, + "loss": 1.399241943359375, + "step": 464500 + }, + { + "epoch": 61.946666666666665, + "grad_norm": 0.8856474161148071, + "learning_rate": 1.9040933333333336e-05, + "loss": 1.3998440551757811, + "step": 464600 + }, + { + "epoch": 61.96, + "grad_norm": 0.9105949401855469, + "learning_rate": 1.903426666666667e-05, + "loss": 1.4019500732421875, + "step": 464700 + }, + { + "epoch": 61.973333333333336, + "grad_norm": 0.8759123682975769, + "learning_rate": 1.90276e-05, + "loss": 1.4000885009765625, + "step": 464800 + }, + { + "epoch": 61.986666666666665, + "grad_norm": 0.9017794728279114, + "learning_rate": 1.9020933333333336e-05, + "loss": 1.3990060424804687, + "step": 464900 + }, + { + "epoch": 62.0, + "grad_norm": 0.9188961982727051, + "learning_rate": 1.9014266666666665e-05, + "loss": 1.4041940307617187, + "step": 465000 + }, + { + "epoch": 62.013333333333335, + "grad_norm": 0.8573675751686096, + "learning_rate": 1.90076e-05, + "loss": 1.3513052368164062, + "step": 465100 + }, + { + "epoch": 62.026666666666664, + "grad_norm": 0.8655972480773926, + "learning_rate": 1.9000933333333333e-05, + "loss": 1.3455097961425782, + "step": 465200 + }, + { + "epoch": 62.04, + "grad_norm": 0.8731736540794373, + "learning_rate": 1.899426666666667e-05, + "loss": 1.3468002319335937, + "step": 465300 + }, + { + "epoch": 62.053333333333335, + "grad_norm": 0.8214830756187439, + "learning_rate": 1.89876e-05, + "loss": 1.3466973876953126, + "step": 465400 + }, + { + "epoch": 62.06666666666667, + "grad_norm": 0.8522217273712158, + "learning_rate": 1.8980933333333333e-05, + "loss": 1.3482205200195312, + "step": 465500 + }, + { + "epoch": 62.08, + "grad_norm": 0.8417600989341736, + "learning_rate": 1.897426666666667e-05, + "loss": 1.34806640625, + "step": 465600 + }, + { + "epoch": 62.093333333333334, + "grad_norm": 0.8675144910812378, + "learning_rate": 1.89676e-05, + "loss": 1.3566635131835938, + "step": 465700 + }, + { + "epoch": 62.10666666666667, + "grad_norm": 0.7986916303634644, + "learning_rate": 1.8961e-05, + "loss": 1.353138427734375, + "step": 465800 + }, + { + "epoch": 62.12, + "grad_norm": 0.8446239829063416, + "learning_rate": 1.8954333333333336e-05, + "loss": 1.3517807006835938, + "step": 465900 + }, + { + "epoch": 62.13333333333333, + "grad_norm": 0.8451570272445679, + "learning_rate": 1.8947666666666665e-05, + "loss": 1.3576107788085938, + "step": 466000 + }, + { + "epoch": 62.14666666666667, + "grad_norm": 0.8504143953323364, + "learning_rate": 1.8941e-05, + "loss": 1.357427215576172, + "step": 466100 + }, + { + "epoch": 62.16, + "grad_norm": 0.8272042274475098, + "learning_rate": 1.8934333333333336e-05, + "loss": 1.3584977722167968, + "step": 466200 + }, + { + "epoch": 62.17333333333333, + "grad_norm": 0.8340880274772644, + "learning_rate": 1.892766666666667e-05, + "loss": 1.35913330078125, + "step": 466300 + }, + { + "epoch": 62.18666666666667, + "grad_norm": 0.8207993507385254, + "learning_rate": 1.8921e-05, + "loss": 1.356055908203125, + "step": 466400 + }, + { + "epoch": 62.2, + "grad_norm": 0.8401222229003906, + "learning_rate": 1.8914333333333333e-05, + "loss": 1.3570013427734375, + "step": 466500 + }, + { + "epoch": 62.21333333333333, + "grad_norm": 0.8501874804496765, + "learning_rate": 1.890766666666667e-05, + "loss": 1.3550076293945312, + "step": 466600 + }, + { + "epoch": 62.22666666666667, + "grad_norm": 0.8478946089744568, + "learning_rate": 1.8901e-05, + "loss": 1.3626107788085937, + "step": 466700 + }, + { + "epoch": 62.24, + "grad_norm": 0.889898955821991, + "learning_rate": 1.8894333333333333e-05, + "loss": 1.3627383422851562, + "step": 466800 + }, + { + "epoch": 62.25333333333333, + "grad_norm": 0.8666733503341675, + "learning_rate": 1.888766666666667e-05, + "loss": 1.3645501708984376, + "step": 466900 + }, + { + "epoch": 62.266666666666666, + "grad_norm": 0.9081425070762634, + "learning_rate": 1.8881e-05, + "loss": 1.3609548950195312, + "step": 467000 + }, + { + "epoch": 62.28, + "grad_norm": 0.8720145225524902, + "learning_rate": 1.8874333333333337e-05, + "loss": 1.365575714111328, + "step": 467100 + }, + { + "epoch": 62.29333333333334, + "grad_norm": 0.8420373797416687, + "learning_rate": 1.8867666666666666e-05, + "loss": 1.3625498962402345, + "step": 467200 + }, + { + "epoch": 62.306666666666665, + "grad_norm": 0.8779093623161316, + "learning_rate": 1.8861e-05, + "loss": 1.3643501281738282, + "step": 467300 + }, + { + "epoch": 62.32, + "grad_norm": 0.8036565780639648, + "learning_rate": 1.8854333333333333e-05, + "loss": 1.3618597412109374, + "step": 467400 + }, + { + "epoch": 62.333333333333336, + "grad_norm": 0.8801616430282593, + "learning_rate": 1.8847666666666666e-05, + "loss": 1.3635311889648438, + "step": 467500 + }, + { + "epoch": 62.346666666666664, + "grad_norm": 0.8832975029945374, + "learning_rate": 1.8841e-05, + "loss": 1.3624273681640624, + "step": 467600 + }, + { + "epoch": 62.36, + "grad_norm": 0.8669077157974243, + "learning_rate": 1.8834333333333334e-05, + "loss": 1.3672244262695312, + "step": 467700 + }, + { + "epoch": 62.373333333333335, + "grad_norm": 0.8744094371795654, + "learning_rate": 1.8827733333333333e-05, + "loss": 1.3657164001464843, + "step": 467800 + }, + { + "epoch": 62.38666666666666, + "grad_norm": 0.8977140784263611, + "learning_rate": 1.882106666666667e-05, + "loss": 1.3728543090820313, + "step": 467900 + }, + { + "epoch": 62.4, + "grad_norm": 0.9251410961151123, + "learning_rate": 1.88144e-05, + "loss": 1.3700556945800781, + "step": 468000 + }, + { + "epoch": 62.413333333333334, + "grad_norm": 0.8600748181343079, + "learning_rate": 1.8807733333333336e-05, + "loss": 1.3633903503417968, + "step": 468100 + }, + { + "epoch": 62.42666666666667, + "grad_norm": 0.8662360310554504, + "learning_rate": 1.8801066666666665e-05, + "loss": 1.3714529418945312, + "step": 468200 + }, + { + "epoch": 62.44, + "grad_norm": 0.8972686529159546, + "learning_rate": 1.87944e-05, + "loss": 1.3743254089355468, + "step": 468300 + }, + { + "epoch": 62.45333333333333, + "grad_norm": 0.8791953921318054, + "learning_rate": 1.8787733333333337e-05, + "loss": 1.3700238037109376, + "step": 468400 + }, + { + "epoch": 62.46666666666667, + "grad_norm": 0.8646233677864075, + "learning_rate": 1.8781066666666665e-05, + "loss": 1.3702452087402344, + "step": 468500 + }, + { + "epoch": 62.48, + "grad_norm": 0.8732235431671143, + "learning_rate": 1.87744e-05, + "loss": 1.381118621826172, + "step": 468600 + }, + { + "epoch": 62.49333333333333, + "grad_norm": 0.8889748454093933, + "learning_rate": 1.8767733333333333e-05, + "loss": 1.3723052978515624, + "step": 468700 + }, + { + "epoch": 62.50666666666667, + "grad_norm": 0.8828487992286682, + "learning_rate": 1.876106666666667e-05, + "loss": 1.3749916076660156, + "step": 468800 + }, + { + "epoch": 62.52, + "grad_norm": 0.842641294002533, + "learning_rate": 1.87544e-05, + "loss": 1.3710438537597656, + "step": 468900 + }, + { + "epoch": 62.53333333333333, + "grad_norm": 0.8470684885978699, + "learning_rate": 1.8747733333333333e-05, + "loss": 1.37222412109375, + "step": 469000 + }, + { + "epoch": 62.54666666666667, + "grad_norm": 0.9085938334465027, + "learning_rate": 1.874106666666667e-05, + "loss": 1.3758197021484375, + "step": 469100 + }, + { + "epoch": 62.56, + "grad_norm": 0.8867812156677246, + "learning_rate": 1.87344e-05, + "loss": 1.3802314758300782, + "step": 469200 + }, + { + "epoch": 62.57333333333333, + "grad_norm": 0.8809147477149963, + "learning_rate": 1.8727733333333334e-05, + "loss": 1.3785780334472657, + "step": 469300 + }, + { + "epoch": 62.586666666666666, + "grad_norm": 0.8905417323112488, + "learning_rate": 1.8721066666666666e-05, + "loss": 1.3713362121582031, + "step": 469400 + }, + { + "epoch": 62.6, + "grad_norm": 0.8625428080558777, + "learning_rate": 1.87144e-05, + "loss": 1.3784394836425782, + "step": 469500 + }, + { + "epoch": 62.61333333333333, + "grad_norm": 0.8563883304595947, + "learning_rate": 1.8707733333333334e-05, + "loss": 1.3763919067382813, + "step": 469600 + }, + { + "epoch": 62.626666666666665, + "grad_norm": 0.9011384844779968, + "learning_rate": 1.8701066666666666e-05, + "loss": 1.379695587158203, + "step": 469700 + }, + { + "epoch": 62.64, + "grad_norm": 0.8625617623329163, + "learning_rate": 1.8694400000000002e-05, + "loss": 1.376241455078125, + "step": 469800 + }, + { + "epoch": 62.653333333333336, + "grad_norm": 0.9148832559585571, + "learning_rate": 1.86878e-05, + "loss": 1.3796707153320313, + "step": 469900 + }, + { + "epoch": 62.666666666666664, + "grad_norm": 0.8644863367080688, + "learning_rate": 1.8681133333333333e-05, + "loss": 1.3743251037597657, + "step": 470000 + }, + { + "epoch": 62.68, + "grad_norm": 0.8707835674285889, + "learning_rate": 1.867446666666667e-05, + "loss": 1.3785989379882813, + "step": 470100 + }, + { + "epoch": 62.693333333333335, + "grad_norm": 0.8736674785614014, + "learning_rate": 1.86678e-05, + "loss": 1.3785296630859376, + "step": 470200 + }, + { + "epoch": 62.70666666666666, + "grad_norm": 0.8863952159881592, + "learning_rate": 1.8661133333333333e-05, + "loss": 1.3846035766601563, + "step": 470300 + }, + { + "epoch": 62.72, + "grad_norm": 0.8530660271644592, + "learning_rate": 1.865446666666667e-05, + "loss": 1.3847772216796874, + "step": 470400 + }, + { + "epoch": 62.733333333333334, + "grad_norm": 0.9117617607116699, + "learning_rate": 1.86478e-05, + "loss": 1.379307403564453, + "step": 470500 + }, + { + "epoch": 62.74666666666667, + "grad_norm": 0.9356516003608704, + "learning_rate": 1.8641133333333337e-05, + "loss": 1.3868818664550782, + "step": 470600 + }, + { + "epoch": 62.76, + "grad_norm": 0.9563553929328918, + "learning_rate": 1.8634466666666666e-05, + "loss": 1.3831312561035156, + "step": 470700 + }, + { + "epoch": 62.77333333333333, + "grad_norm": 0.8613978028297424, + "learning_rate": 1.86278e-05, + "loss": 1.386735382080078, + "step": 470800 + }, + { + "epoch": 62.78666666666667, + "grad_norm": 0.8880415558815002, + "learning_rate": 1.8621133333333334e-05, + "loss": 1.3830174255371093, + "step": 470900 + }, + { + "epoch": 62.8, + "grad_norm": 0.8753419518470764, + "learning_rate": 1.861446666666667e-05, + "loss": 1.3831968688964844, + "step": 471000 + }, + { + "epoch": 62.81333333333333, + "grad_norm": 0.8973806500434875, + "learning_rate": 1.86078e-05, + "loss": 1.384782257080078, + "step": 471100 + }, + { + "epoch": 62.82666666666667, + "grad_norm": 0.8728386759757996, + "learning_rate": 1.8601133333333334e-05, + "loss": 1.3836083984375, + "step": 471200 + }, + { + "epoch": 62.84, + "grad_norm": 0.8542366623878479, + "learning_rate": 1.859446666666667e-05, + "loss": 1.3806695556640625, + "step": 471300 + }, + { + "epoch": 62.85333333333333, + "grad_norm": 0.9084987640380859, + "learning_rate": 1.85878e-05, + "loss": 1.3919306945800782, + "step": 471400 + }, + { + "epoch": 62.86666666666667, + "grad_norm": 0.9229134321212769, + "learning_rate": 1.8581133333333334e-05, + "loss": 1.3888737487792968, + "step": 471500 + }, + { + "epoch": 62.88, + "grad_norm": 0.9117254614830017, + "learning_rate": 1.8574466666666666e-05, + "loss": 1.389185791015625, + "step": 471600 + }, + { + "epoch": 62.89333333333333, + "grad_norm": 0.9002920389175415, + "learning_rate": 1.8567800000000002e-05, + "loss": 1.3870626831054687, + "step": 471700 + }, + { + "epoch": 62.906666666666666, + "grad_norm": 0.9569069743156433, + "learning_rate": 1.8561133333333334e-05, + "loss": 1.3885276794433594, + "step": 471800 + }, + { + "epoch": 62.92, + "grad_norm": 0.8567367196083069, + "learning_rate": 1.8554533333333333e-05, + "loss": 1.3927679443359375, + "step": 471900 + }, + { + "epoch": 62.93333333333333, + "grad_norm": 0.8821707963943481, + "learning_rate": 1.8547866666666666e-05, + "loss": 1.385771484375, + "step": 472000 + }, + { + "epoch": 62.946666666666665, + "grad_norm": 0.934012234210968, + "learning_rate": 1.85412e-05, + "loss": 1.3942887878417969, + "step": 472100 + }, + { + "epoch": 62.96, + "grad_norm": 0.9266797304153442, + "learning_rate": 1.8534533333333334e-05, + "loss": 1.3928118896484376, + "step": 472200 + }, + { + "epoch": 62.973333333333336, + "grad_norm": 0.9574691653251648, + "learning_rate": 1.852786666666667e-05, + "loss": 1.3905284118652343, + "step": 472300 + }, + { + "epoch": 62.986666666666665, + "grad_norm": 0.924963116645813, + "learning_rate": 1.8521199999999998e-05, + "loss": 1.3944451904296875, + "step": 472400 + }, + { + "epoch": 63.0, + "grad_norm": 0.8816106915473938, + "learning_rate": 1.8514533333333334e-05, + "loss": 1.393121795654297, + "step": 472500 + }, + { + "epoch": 63.013333333333335, + "grad_norm": 0.8383874297142029, + "learning_rate": 1.850786666666667e-05, + "loss": 1.3370849609375, + "step": 472600 + }, + { + "epoch": 63.026666666666664, + "grad_norm": 0.8403507471084595, + "learning_rate": 1.85012e-05, + "loss": 1.3425094604492187, + "step": 472700 + }, + { + "epoch": 63.04, + "grad_norm": 0.8906253576278687, + "learning_rate": 1.8494533333333334e-05, + "loss": 1.340731658935547, + "step": 472800 + }, + { + "epoch": 63.053333333333335, + "grad_norm": 0.9231695532798767, + "learning_rate": 1.8487866666666666e-05, + "loss": 1.3418489074707032, + "step": 472900 + }, + { + "epoch": 63.06666666666667, + "grad_norm": 0.879458487033844, + "learning_rate": 1.8481200000000002e-05, + "loss": 1.3442330932617188, + "step": 473000 + }, + { + "epoch": 63.08, + "grad_norm": 0.8238392472267151, + "learning_rate": 1.8474533333333334e-05, + "loss": 1.3447978210449218, + "step": 473100 + }, + { + "epoch": 63.093333333333334, + "grad_norm": 0.8179836273193359, + "learning_rate": 1.8467866666666666e-05, + "loss": 1.3443252563476562, + "step": 473200 + }, + { + "epoch": 63.10666666666667, + "grad_norm": 0.8274221420288086, + "learning_rate": 1.8461200000000002e-05, + "loss": 1.3449710083007813, + "step": 473300 + }, + { + "epoch": 63.12, + "grad_norm": 0.8805060982704163, + "learning_rate": 1.8454533333333334e-05, + "loss": 1.34772705078125, + "step": 473400 + }, + { + "epoch": 63.13333333333333, + "grad_norm": 0.856552004814148, + "learning_rate": 1.844786666666667e-05, + "loss": 1.34474609375, + "step": 473500 + }, + { + "epoch": 63.14666666666667, + "grad_norm": 0.8999550938606262, + "learning_rate": 1.84412e-05, + "loss": 1.3447769165039063, + "step": 473600 + }, + { + "epoch": 63.16, + "grad_norm": 0.8466945886611938, + "learning_rate": 1.8434533333333335e-05, + "loss": 1.3498774719238282, + "step": 473700 + }, + { + "epoch": 63.17333333333333, + "grad_norm": 0.8720507621765137, + "learning_rate": 1.8427866666666667e-05, + "loss": 1.3509268188476562, + "step": 473800 + }, + { + "epoch": 63.18666666666667, + "grad_norm": 0.8553282618522644, + "learning_rate": 1.84212e-05, + "loss": 1.3472882080078126, + "step": 473900 + }, + { + "epoch": 63.2, + "grad_norm": 0.8717467188835144, + "learning_rate": 1.84146e-05, + "loss": 1.3507821655273438, + "step": 474000 + }, + { + "epoch": 63.21333333333333, + "grad_norm": 0.8789405822753906, + "learning_rate": 1.8407933333333334e-05, + "loss": 1.3463182067871093, + "step": 474100 + }, + { + "epoch": 63.22666666666667, + "grad_norm": 0.8856403231620789, + "learning_rate": 1.8401266666666666e-05, + "loss": 1.3535433959960939, + "step": 474200 + }, + { + "epoch": 63.24, + "grad_norm": 0.8736082911491394, + "learning_rate": 1.8394600000000002e-05, + "loss": 1.353790283203125, + "step": 474300 + }, + { + "epoch": 63.25333333333333, + "grad_norm": 0.8425241112709045, + "learning_rate": 1.8387933333333334e-05, + "loss": 1.3515614318847655, + "step": 474400 + }, + { + "epoch": 63.266666666666666, + "grad_norm": 0.8841555118560791, + "learning_rate": 1.838126666666667e-05, + "loss": 1.357039794921875, + "step": 474500 + }, + { + "epoch": 63.28, + "grad_norm": 0.8851358890533447, + "learning_rate": 1.83746e-05, + "loss": 1.3571649169921876, + "step": 474600 + }, + { + "epoch": 63.29333333333334, + "grad_norm": 0.8119401335716248, + "learning_rate": 1.8367933333333334e-05, + "loss": 1.3512042236328126, + "step": 474700 + }, + { + "epoch": 63.306666666666665, + "grad_norm": 0.8968778848648071, + "learning_rate": 1.836126666666667e-05, + "loss": 1.3547596740722656, + "step": 474800 + }, + { + "epoch": 63.32, + "grad_norm": 0.9098058938980103, + "learning_rate": 1.83546e-05, + "loss": 1.3593733215332031, + "step": 474900 + }, + { + "epoch": 63.333333333333336, + "grad_norm": 0.8831583857536316, + "learning_rate": 1.8347933333333334e-05, + "loss": 1.355583953857422, + "step": 475000 + }, + { + "epoch": 63.346666666666664, + "grad_norm": 0.8631011843681335, + "learning_rate": 1.8341266666666667e-05, + "loss": 1.3582133483886718, + "step": 475100 + }, + { + "epoch": 63.36, + "grad_norm": 0.8748294115066528, + "learning_rate": 1.8334600000000002e-05, + "loss": 1.359095458984375, + "step": 475200 + }, + { + "epoch": 63.373333333333335, + "grad_norm": 0.8583943247795105, + "learning_rate": 1.8327933333333335e-05, + "loss": 1.3613153076171876, + "step": 475300 + }, + { + "epoch": 63.38666666666666, + "grad_norm": 0.8866649270057678, + "learning_rate": 1.8321266666666667e-05, + "loss": 1.3615292358398436, + "step": 475400 + }, + { + "epoch": 63.4, + "grad_norm": 0.8681355714797974, + "learning_rate": 1.8314600000000002e-05, + "loss": 1.3599000549316407, + "step": 475500 + }, + { + "epoch": 63.413333333333334, + "grad_norm": 0.9076934456825256, + "learning_rate": 1.8307933333333335e-05, + "loss": 1.3641069030761719, + "step": 475600 + }, + { + "epoch": 63.42666666666667, + "grad_norm": 0.8490332961082458, + "learning_rate": 1.8301266666666667e-05, + "loss": 1.3651712036132813, + "step": 475700 + }, + { + "epoch": 63.44, + "grad_norm": 0.8959413170814514, + "learning_rate": 1.82946e-05, + "loss": 1.3646134948730468, + "step": 475800 + }, + { + "epoch": 63.45333333333333, + "grad_norm": 0.843246340751648, + "learning_rate": 1.8287933333333335e-05, + "loss": 1.362332763671875, + "step": 475900 + }, + { + "epoch": 63.46666666666667, + "grad_norm": 0.874142050743103, + "learning_rate": 1.8281333333333334e-05, + "loss": 1.3656585693359375, + "step": 476000 + }, + { + "epoch": 63.48, + "grad_norm": 0.9227689504623413, + "learning_rate": 1.8274666666666666e-05, + "loss": 1.3628779602050782, + "step": 476100 + }, + { + "epoch": 63.49333333333333, + "grad_norm": 0.8379034399986267, + "learning_rate": 1.8268000000000002e-05, + "loss": 1.3627792358398438, + "step": 476200 + }, + { + "epoch": 63.50666666666667, + "grad_norm": 0.8998229503631592, + "learning_rate": 1.8261333333333334e-05, + "loss": 1.3685745239257812, + "step": 476300 + }, + { + "epoch": 63.52, + "grad_norm": 0.9073343276977539, + "learning_rate": 1.8254666666666666e-05, + "loss": 1.3673577880859376, + "step": 476400 + }, + { + "epoch": 63.53333333333333, + "grad_norm": 0.8960281014442444, + "learning_rate": 1.8248000000000002e-05, + "loss": 1.3650401306152344, + "step": 476500 + }, + { + "epoch": 63.54666666666667, + "grad_norm": 0.8500860333442688, + "learning_rate": 1.8241333333333334e-05, + "loss": 1.363343505859375, + "step": 476600 + }, + { + "epoch": 63.56, + "grad_norm": 0.9132857918739319, + "learning_rate": 1.8234666666666667e-05, + "loss": 1.3673420715332032, + "step": 476700 + }, + { + "epoch": 63.57333333333333, + "grad_norm": 0.851512610912323, + "learning_rate": 1.8228e-05, + "loss": 1.3654722595214843, + "step": 476800 + }, + { + "epoch": 63.586666666666666, + "grad_norm": 0.9432153701782227, + "learning_rate": 1.8221333333333335e-05, + "loss": 1.37032470703125, + "step": 476900 + }, + { + "epoch": 63.6, + "grad_norm": 0.8776945471763611, + "learning_rate": 1.821466666666667e-05, + "loss": 1.3680665588378906, + "step": 477000 + }, + { + "epoch": 63.61333333333333, + "grad_norm": 0.8363541960716248, + "learning_rate": 1.8208e-05, + "loss": 1.3700338745117187, + "step": 477100 + }, + { + "epoch": 63.626666666666665, + "grad_norm": 0.8852552771568298, + "learning_rate": 1.8201333333333335e-05, + "loss": 1.367037811279297, + "step": 477200 + }, + { + "epoch": 63.64, + "grad_norm": 0.9047751426696777, + "learning_rate": 1.8194666666666667e-05, + "loss": 1.3724662780761718, + "step": 477300 + }, + { + "epoch": 63.653333333333336, + "grad_norm": 0.9022383093833923, + "learning_rate": 1.8188e-05, + "loss": 1.36989013671875, + "step": 477400 + }, + { + "epoch": 63.666666666666664, + "grad_norm": 0.8873071670532227, + "learning_rate": 1.8181333333333335e-05, + "loss": 1.3709544372558593, + "step": 477500 + }, + { + "epoch": 63.68, + "grad_norm": 0.8178770542144775, + "learning_rate": 1.8174666666666667e-05, + "loss": 1.3764271545410156, + "step": 477600 + }, + { + "epoch": 63.693333333333335, + "grad_norm": 0.8374172449111938, + "learning_rate": 1.8168000000000003e-05, + "loss": 1.3749362182617189, + "step": 477700 + }, + { + "epoch": 63.70666666666666, + "grad_norm": 0.8704270124435425, + "learning_rate": 1.8161333333333332e-05, + "loss": 1.3716815185546876, + "step": 477800 + }, + { + "epoch": 63.72, + "grad_norm": 0.8928576111793518, + "learning_rate": 1.8154666666666667e-05, + "loss": 1.3758961486816406, + "step": 477900 + }, + { + "epoch": 63.733333333333334, + "grad_norm": 0.8924788236618042, + "learning_rate": 1.814806666666667e-05, + "loss": 1.3712451171875, + "step": 478000 + }, + { + "epoch": 63.74666666666667, + "grad_norm": 0.9000948071479797, + "learning_rate": 1.81414e-05, + "loss": 1.3741796875, + "step": 478100 + }, + { + "epoch": 63.76, + "grad_norm": 0.8834265470504761, + "learning_rate": 1.8134733333333334e-05, + "loss": 1.3737052917480468, + "step": 478200 + }, + { + "epoch": 63.77333333333333, + "grad_norm": 0.9444625377655029, + "learning_rate": 1.8128066666666667e-05, + "loss": 1.373978729248047, + "step": 478300 + }, + { + "epoch": 63.78666666666667, + "grad_norm": 0.9131369590759277, + "learning_rate": 1.81214e-05, + "loss": 1.376599578857422, + "step": 478400 + }, + { + "epoch": 63.8, + "grad_norm": 0.9047242999076843, + "learning_rate": 1.8114733333333335e-05, + "loss": 1.3785902404785155, + "step": 478500 + }, + { + "epoch": 63.81333333333333, + "grad_norm": 0.9182378649711609, + "learning_rate": 1.8108066666666667e-05, + "loss": 1.3755938720703125, + "step": 478600 + }, + { + "epoch": 63.82666666666667, + "grad_norm": 0.8585050106048584, + "learning_rate": 1.8101400000000003e-05, + "loss": 1.378345947265625, + "step": 478700 + }, + { + "epoch": 63.84, + "grad_norm": 0.9279830455780029, + "learning_rate": 1.809473333333333e-05, + "loss": 1.3787484741210938, + "step": 478800 + }, + { + "epoch": 63.85333333333333, + "grad_norm": 0.9332795739173889, + "learning_rate": 1.8088066666666667e-05, + "loss": 1.375228271484375, + "step": 478900 + }, + { + "epoch": 63.86666666666667, + "grad_norm": 0.8513908386230469, + "learning_rate": 1.8081400000000003e-05, + "loss": 1.3808787536621094, + "step": 479000 + }, + { + "epoch": 63.88, + "grad_norm": 0.8637625575065613, + "learning_rate": 1.8074733333333335e-05, + "loss": 1.3811036682128905, + "step": 479100 + }, + { + "epoch": 63.89333333333333, + "grad_norm": 0.8872289061546326, + "learning_rate": 1.8068066666666667e-05, + "loss": 1.3788679504394532, + "step": 479200 + }, + { + "epoch": 63.906666666666666, + "grad_norm": 0.8666730523109436, + "learning_rate": 1.80614e-05, + "loss": 1.3822543334960937, + "step": 479300 + }, + { + "epoch": 63.92, + "grad_norm": 0.8657490015029907, + "learning_rate": 1.8054733333333335e-05, + "loss": 1.3822019958496095, + "step": 479400 + }, + { + "epoch": 63.93333333333333, + "grad_norm": 0.8995828032493591, + "learning_rate": 1.8048066666666667e-05, + "loss": 1.3845445251464843, + "step": 479500 + }, + { + "epoch": 63.946666666666665, + "grad_norm": 0.882078230381012, + "learning_rate": 1.80414e-05, + "loss": 1.3831179809570313, + "step": 479600 + }, + { + "epoch": 63.96, + "grad_norm": 0.9140791296958923, + "learning_rate": 1.8034733333333335e-05, + "loss": 1.38243408203125, + "step": 479700 + }, + { + "epoch": 63.973333333333336, + "grad_norm": 0.9000608921051025, + "learning_rate": 1.8028066666666668e-05, + "loss": 1.3803366088867188, + "step": 479800 + }, + { + "epoch": 63.986666666666665, + "grad_norm": 0.8583875894546509, + "learning_rate": 1.8021400000000003e-05, + "loss": 1.378529052734375, + "step": 479900 + }, + { + "epoch": 64.0, + "grad_norm": 0.8945102095603943, + "learning_rate": 1.8014800000000002e-05, + "loss": 1.384607696533203, + "step": 480000 + }, + { + "epoch": 64.01333333333334, + "grad_norm": 0.8934009671211243, + "learning_rate": 1.8008133333333335e-05, + "loss": 1.3323703002929688, + "step": 480100 + }, + { + "epoch": 64.02666666666667, + "grad_norm": 0.9144300222396851, + "learning_rate": 1.8001466666666667e-05, + "loss": 1.330888671875, + "step": 480200 + }, + { + "epoch": 64.04, + "grad_norm": 0.8587374091148376, + "learning_rate": 1.79948e-05, + "loss": 1.3373068237304688, + "step": 480300 + }, + { + "epoch": 64.05333333333333, + "grad_norm": 0.8584490418434143, + "learning_rate": 1.7988133333333335e-05, + "loss": 1.3341929626464843, + "step": 480400 + }, + { + "epoch": 64.06666666666666, + "grad_norm": 0.8442391753196716, + "learning_rate": 1.7981466666666667e-05, + "loss": 1.3336114501953125, + "step": 480500 + }, + { + "epoch": 64.08, + "grad_norm": 0.8665919899940491, + "learning_rate": 1.79748e-05, + "loss": 1.338314208984375, + "step": 480600 + }, + { + "epoch": 64.09333333333333, + "grad_norm": 0.8454016447067261, + "learning_rate": 1.7968133333333335e-05, + "loss": 1.3366471862792968, + "step": 480700 + }, + { + "epoch": 64.10666666666667, + "grad_norm": 0.8860534429550171, + "learning_rate": 1.7961466666666667e-05, + "loss": 1.3377793884277345, + "step": 480800 + }, + { + "epoch": 64.12, + "grad_norm": 0.8886109590530396, + "learning_rate": 1.7954800000000003e-05, + "loss": 1.3379669189453125, + "step": 480900 + }, + { + "epoch": 64.13333333333334, + "grad_norm": 0.8925758600234985, + "learning_rate": 1.7948133333333332e-05, + "loss": 1.33873046875, + "step": 481000 + }, + { + "epoch": 64.14666666666666, + "grad_norm": 0.8780699968338013, + "learning_rate": 1.7941466666666668e-05, + "loss": 1.3358087158203125, + "step": 481100 + }, + { + "epoch": 64.16, + "grad_norm": 0.8357890844345093, + "learning_rate": 1.7934800000000003e-05, + "loss": 1.3425820922851563, + "step": 481200 + }, + { + "epoch": 64.17333333333333, + "grad_norm": 0.8988547921180725, + "learning_rate": 1.7928133333333332e-05, + "loss": 1.3423739624023439, + "step": 481300 + }, + { + "epoch": 64.18666666666667, + "grad_norm": 0.8725674152374268, + "learning_rate": 1.7921466666666668e-05, + "loss": 1.3443193054199218, + "step": 481400 + }, + { + "epoch": 64.2, + "grad_norm": 0.9312418103218079, + "learning_rate": 1.79148e-05, + "loss": 1.340561065673828, + "step": 481500 + }, + { + "epoch": 64.21333333333334, + "grad_norm": 0.9096835255622864, + "learning_rate": 1.7908133333333336e-05, + "loss": 1.3408326721191406, + "step": 481600 + }, + { + "epoch": 64.22666666666667, + "grad_norm": 0.869185745716095, + "learning_rate": 1.7901466666666668e-05, + "loss": 1.3416743469238281, + "step": 481700 + }, + { + "epoch": 64.24, + "grad_norm": 0.8828217387199402, + "learning_rate": 1.78948e-05, + "loss": 1.34640625, + "step": 481800 + }, + { + "epoch": 64.25333333333333, + "grad_norm": 0.8781388401985168, + "learning_rate": 1.7888133333333336e-05, + "loss": 1.3463336181640626, + "step": 481900 + }, + { + "epoch": 64.26666666666667, + "grad_norm": 0.8844797611236572, + "learning_rate": 1.7881466666666668e-05, + "loss": 1.3434307861328125, + "step": 482000 + }, + { + "epoch": 64.28, + "grad_norm": 0.9093835949897766, + "learning_rate": 1.7874866666666667e-05, + "loss": 1.3477468872070313, + "step": 482100 + }, + { + "epoch": 64.29333333333334, + "grad_norm": 0.9038063287734985, + "learning_rate": 1.7868200000000003e-05, + "loss": 1.3481039428710937, + "step": 482200 + }, + { + "epoch": 64.30666666666667, + "grad_norm": 0.8139824867248535, + "learning_rate": 1.7861533333333332e-05, + "loss": 1.34718505859375, + "step": 482300 + }, + { + "epoch": 64.32, + "grad_norm": 0.8709118366241455, + "learning_rate": 1.7854866666666667e-05, + "loss": 1.3521086120605468, + "step": 482400 + }, + { + "epoch": 64.33333333333333, + "grad_norm": 0.8406969904899597, + "learning_rate": 1.78482e-05, + "loss": 1.3482559204101563, + "step": 482500 + }, + { + "epoch": 64.34666666666666, + "grad_norm": 0.8496643304824829, + "learning_rate": 1.7841533333333335e-05, + "loss": 1.3503038024902343, + "step": 482600 + }, + { + "epoch": 64.36, + "grad_norm": 0.8447983264923096, + "learning_rate": 1.7834866666666668e-05, + "loss": 1.3484323120117188, + "step": 482700 + }, + { + "epoch": 64.37333333333333, + "grad_norm": 0.9065347909927368, + "learning_rate": 1.78282e-05, + "loss": 1.350572052001953, + "step": 482800 + }, + { + "epoch": 64.38666666666667, + "grad_norm": 0.8340687155723572, + "learning_rate": 1.7821533333333335e-05, + "loss": 1.3543763732910157, + "step": 482900 + }, + { + "epoch": 64.4, + "grad_norm": 0.8966395854949951, + "learning_rate": 1.7814866666666668e-05, + "loss": 1.3548075866699218, + "step": 483000 + }, + { + "epoch": 64.41333333333333, + "grad_norm": 0.8993328809738159, + "learning_rate": 1.78082e-05, + "loss": 1.354648895263672, + "step": 483100 + }, + { + "epoch": 64.42666666666666, + "grad_norm": 0.9374759793281555, + "learning_rate": 1.7801533333333332e-05, + "loss": 1.361200714111328, + "step": 483200 + }, + { + "epoch": 64.44, + "grad_norm": 0.8411123752593994, + "learning_rate": 1.7794866666666668e-05, + "loss": 1.3539253234863282, + "step": 483300 + }, + { + "epoch": 64.45333333333333, + "grad_norm": 0.8600159287452698, + "learning_rate": 1.7788200000000004e-05, + "loss": 1.3555935668945311, + "step": 483400 + }, + { + "epoch": 64.46666666666667, + "grad_norm": 0.8644974827766418, + "learning_rate": 1.7781533333333332e-05, + "loss": 1.3521513366699218, + "step": 483500 + }, + { + "epoch": 64.48, + "grad_norm": 0.8847560882568359, + "learning_rate": 1.7774866666666668e-05, + "loss": 1.3578965759277344, + "step": 483600 + }, + { + "epoch": 64.49333333333334, + "grad_norm": 0.9277763366699219, + "learning_rate": 1.77682e-05, + "loss": 1.3535302734375, + "step": 483700 + }, + { + "epoch": 64.50666666666666, + "grad_norm": 0.8610851168632507, + "learning_rate": 1.7761533333333333e-05, + "loss": 1.3627682495117188, + "step": 483800 + }, + { + "epoch": 64.52, + "grad_norm": 0.9150212407112122, + "learning_rate": 1.775486666666667e-05, + "loss": 1.3568341064453124, + "step": 483900 + }, + { + "epoch": 64.53333333333333, + "grad_norm": 0.8788309097290039, + "learning_rate": 1.77482e-05, + "loss": 1.35930908203125, + "step": 484000 + }, + { + "epoch": 64.54666666666667, + "grad_norm": 0.877782940864563, + "learning_rate": 1.77416e-05, + "loss": 1.3600112915039062, + "step": 484100 + }, + { + "epoch": 64.56, + "grad_norm": 0.8888121843338013, + "learning_rate": 1.7734933333333335e-05, + "loss": 1.3572149658203125, + "step": 484200 + }, + { + "epoch": 64.57333333333334, + "grad_norm": 0.884781539440155, + "learning_rate": 1.7728266666666668e-05, + "loss": 1.358846435546875, + "step": 484300 + }, + { + "epoch": 64.58666666666667, + "grad_norm": 0.8472477793693542, + "learning_rate": 1.7721600000000003e-05, + "loss": 1.3618157958984376, + "step": 484400 + }, + { + "epoch": 64.6, + "grad_norm": 0.8843161463737488, + "learning_rate": 1.7714933333333332e-05, + "loss": 1.3596778869628907, + "step": 484500 + }, + { + "epoch": 64.61333333333333, + "grad_norm": 0.8994573950767517, + "learning_rate": 1.7708266666666668e-05, + "loss": 1.3632307434082032, + "step": 484600 + }, + { + "epoch": 64.62666666666667, + "grad_norm": 0.8576304316520691, + "learning_rate": 1.77016e-05, + "loss": 1.363969268798828, + "step": 484700 + }, + { + "epoch": 64.64, + "grad_norm": 0.9063739776611328, + "learning_rate": 1.7694933333333332e-05, + "loss": 1.3635774230957032, + "step": 484800 + }, + { + "epoch": 64.65333333333334, + "grad_norm": 0.9036448001861572, + "learning_rate": 1.7688266666666668e-05, + "loss": 1.3654200744628906, + "step": 484900 + }, + { + "epoch": 64.66666666666667, + "grad_norm": 0.8992440104484558, + "learning_rate": 1.76816e-05, + "loss": 1.363550262451172, + "step": 485000 + }, + { + "epoch": 64.68, + "grad_norm": 0.9224612712860107, + "learning_rate": 1.7674933333333336e-05, + "loss": 1.363682403564453, + "step": 485100 + }, + { + "epoch": 64.69333333333333, + "grad_norm": 0.9652465581893921, + "learning_rate": 1.7668266666666665e-05, + "loss": 1.361661376953125, + "step": 485200 + }, + { + "epoch": 64.70666666666666, + "grad_norm": 0.9061663150787354, + "learning_rate": 1.76616e-05, + "loss": 1.3631404113769532, + "step": 485300 + }, + { + "epoch": 64.72, + "grad_norm": 0.8742295503616333, + "learning_rate": 1.7654933333333336e-05, + "loss": 1.365829620361328, + "step": 485400 + }, + { + "epoch": 64.73333333333333, + "grad_norm": 0.8189981579780579, + "learning_rate": 1.764826666666667e-05, + "loss": 1.3672276306152344, + "step": 485500 + }, + { + "epoch": 64.74666666666667, + "grad_norm": 0.9038211107254028, + "learning_rate": 1.76416e-05, + "loss": 1.367249755859375, + "step": 485600 + }, + { + "epoch": 64.76, + "grad_norm": 0.9079329967498779, + "learning_rate": 1.7634933333333333e-05, + "loss": 1.3658090209960938, + "step": 485700 + }, + { + "epoch": 64.77333333333333, + "grad_norm": 0.8886961340904236, + "learning_rate": 1.762826666666667e-05, + "loss": 1.3678729248046875, + "step": 485800 + }, + { + "epoch": 64.78666666666666, + "grad_norm": 0.8585326671600342, + "learning_rate": 1.76216e-05, + "loss": 1.3665878295898437, + "step": 485900 + }, + { + "epoch": 64.8, + "grad_norm": 0.8595222234725952, + "learning_rate": 1.7614933333333333e-05, + "loss": 1.370436553955078, + "step": 486000 + }, + { + "epoch": 64.81333333333333, + "grad_norm": 0.8745478987693787, + "learning_rate": 1.7608333333333336e-05, + "loss": 1.366385955810547, + "step": 486100 + }, + { + "epoch": 64.82666666666667, + "grad_norm": 0.8671027421951294, + "learning_rate": 1.7601666666666668e-05, + "loss": 1.3709756469726562, + "step": 486200 + }, + { + "epoch": 64.84, + "grad_norm": 0.8887233734130859, + "learning_rate": 1.7595e-05, + "loss": 1.3694778442382813, + "step": 486300 + }, + { + "epoch": 64.85333333333334, + "grad_norm": 0.8951408863067627, + "learning_rate": 1.7588333333333336e-05, + "loss": 1.3722352600097656, + "step": 486400 + }, + { + "epoch": 64.86666666666666, + "grad_norm": 0.9203891158103943, + "learning_rate": 1.7581666666666668e-05, + "loss": 1.3695021057128907, + "step": 486500 + }, + { + "epoch": 64.88, + "grad_norm": 0.8783578872680664, + "learning_rate": 1.7575e-05, + "loss": 1.3721949768066406, + "step": 486600 + }, + { + "epoch": 64.89333333333333, + "grad_norm": 0.8755213618278503, + "learning_rate": 1.7568333333333333e-05, + "loss": 1.3693832397460937, + "step": 486700 + }, + { + "epoch": 64.90666666666667, + "grad_norm": 0.8497536182403564, + "learning_rate": 1.7561666666666668e-05, + "loss": 1.3738072204589844, + "step": 486800 + }, + { + "epoch": 64.92, + "grad_norm": 0.8674045205116272, + "learning_rate": 1.7555e-05, + "loss": 1.3736123657226562, + "step": 486900 + }, + { + "epoch": 64.93333333333334, + "grad_norm": 0.924431562423706, + "learning_rate": 1.7548333333333333e-05, + "loss": 1.3719955444335938, + "step": 487000 + }, + { + "epoch": 64.94666666666667, + "grad_norm": 0.9057454466819763, + "learning_rate": 1.754166666666667e-05, + "loss": 1.3727705383300781, + "step": 487100 + }, + { + "epoch": 64.96, + "grad_norm": 0.8692907691001892, + "learning_rate": 1.7535e-05, + "loss": 1.3746487426757812, + "step": 487200 + }, + { + "epoch": 64.97333333333333, + "grad_norm": 0.9203537106513977, + "learning_rate": 1.7528333333333336e-05, + "loss": 1.37078369140625, + "step": 487300 + }, + { + "epoch": 64.98666666666666, + "grad_norm": 0.929847240447998, + "learning_rate": 1.7521666666666665e-05, + "loss": 1.3816091918945312, + "step": 487400 + }, + { + "epoch": 65.0, + "grad_norm": 0.9408981800079346, + "learning_rate": 1.7515e-05, + "loss": 1.3738502502441405, + "step": 487500 + }, + { + "epoch": 65.01333333333334, + "grad_norm": 0.8666677474975586, + "learning_rate": 1.7508333333333337e-05, + "loss": 1.3275274658203124, + "step": 487600 + }, + { + "epoch": 65.02666666666667, + "grad_norm": 0.883374035358429, + "learning_rate": 1.7501666666666665e-05, + "loss": 1.322354278564453, + "step": 487700 + }, + { + "epoch": 65.04, + "grad_norm": 0.9123470187187195, + "learning_rate": 1.7495e-05, + "loss": 1.3236787414550781, + "step": 487800 + }, + { + "epoch": 65.05333333333333, + "grad_norm": 0.8003033399581909, + "learning_rate": 1.7488333333333333e-05, + "loss": 1.3260044860839844, + "step": 487900 + }, + { + "epoch": 65.06666666666666, + "grad_norm": 0.8853775858879089, + "learning_rate": 1.748166666666667e-05, + "loss": 1.3234710693359375, + "step": 488000 + }, + { + "epoch": 65.08, + "grad_norm": 0.8827279806137085, + "learning_rate": 1.7475e-05, + "loss": 1.3306411743164062, + "step": 488100 + }, + { + "epoch": 65.09333333333333, + "grad_norm": 0.8656889200210571, + "learning_rate": 1.74684e-05, + "loss": 1.3258221435546875, + "step": 488200 + }, + { + "epoch": 65.10666666666667, + "grad_norm": 0.8413640856742859, + "learning_rate": 1.7461733333333336e-05, + "loss": 1.3284645080566406, + "step": 488300 + }, + { + "epoch": 65.12, + "grad_norm": 0.8911667466163635, + "learning_rate": 1.7455066666666668e-05, + "loss": 1.3333392333984375, + "step": 488400 + }, + { + "epoch": 65.13333333333334, + "grad_norm": 0.9145627021789551, + "learning_rate": 1.74484e-05, + "loss": 1.3321968078613282, + "step": 488500 + }, + { + "epoch": 65.14666666666666, + "grad_norm": 0.8469613194465637, + "learning_rate": 1.7441733333333336e-05, + "loss": 1.3286016845703126, + "step": 488600 + }, + { + "epoch": 65.16, + "grad_norm": 0.8619856238365173, + "learning_rate": 1.7435066666666665e-05, + "loss": 1.333924560546875, + "step": 488700 + }, + { + "epoch": 65.17333333333333, + "grad_norm": 0.9197624921798706, + "learning_rate": 1.74284e-05, + "loss": 1.3354296875, + "step": 488800 + }, + { + "epoch": 65.18666666666667, + "grad_norm": 0.8337293863296509, + "learning_rate": 1.7421733333333333e-05, + "loss": 1.3360716247558593, + "step": 488900 + }, + { + "epoch": 65.2, + "grad_norm": 0.8918238878250122, + "learning_rate": 1.741506666666667e-05, + "loss": 1.3376748657226563, + "step": 489000 + }, + { + "epoch": 65.21333333333334, + "grad_norm": 0.8520711660385132, + "learning_rate": 1.74084e-05, + "loss": 1.3359193420410156, + "step": 489100 + }, + { + "epoch": 65.22666666666667, + "grad_norm": 0.8971502184867859, + "learning_rate": 1.7401733333333333e-05, + "loss": 1.337491455078125, + "step": 489200 + }, + { + "epoch": 65.24, + "grad_norm": 0.9194210767745972, + "learning_rate": 1.739506666666667e-05, + "loss": 1.3362680053710938, + "step": 489300 + }, + { + "epoch": 65.25333333333333, + "grad_norm": 0.8638772964477539, + "learning_rate": 1.73884e-05, + "loss": 1.3411000061035157, + "step": 489400 + }, + { + "epoch": 65.26666666666667, + "grad_norm": 0.8430476188659668, + "learning_rate": 1.7381733333333333e-05, + "loss": 1.3354183959960937, + "step": 489500 + }, + { + "epoch": 65.28, + "grad_norm": 0.8449836373329163, + "learning_rate": 1.7375066666666666e-05, + "loss": 1.3406202697753906, + "step": 489600 + }, + { + "epoch": 65.29333333333334, + "grad_norm": 0.914038360118866, + "learning_rate": 1.73684e-05, + "loss": 1.3422569274902343, + "step": 489700 + }, + { + "epoch": 65.30666666666667, + "grad_norm": 0.8925040364265442, + "learning_rate": 1.7361733333333337e-05, + "loss": 1.3404884338378906, + "step": 489800 + }, + { + "epoch": 65.32, + "grad_norm": 0.9155729413032532, + "learning_rate": 1.7355066666666666e-05, + "loss": 1.3383328247070312, + "step": 489900 + }, + { + "epoch": 65.33333333333333, + "grad_norm": 0.8363727331161499, + "learning_rate": 1.73484e-05, + "loss": 1.3454109191894532, + "step": 490000 + }, + { + "epoch": 65.34666666666666, + "grad_norm": 0.8507674932479858, + "learning_rate": 1.7341733333333334e-05, + "loss": 1.3441416931152343, + "step": 490100 + }, + { + "epoch": 65.36, + "grad_norm": 0.8748927116394043, + "learning_rate": 1.7335133333333333e-05, + "loss": 1.3435476684570313, + "step": 490200 + }, + { + "epoch": 65.37333333333333, + "grad_norm": 0.8672348856925964, + "learning_rate": 1.732846666666667e-05, + "loss": 1.3459814453125, + "step": 490300 + }, + { + "epoch": 65.38666666666667, + "grad_norm": 0.88212651014328, + "learning_rate": 1.73218e-05, + "loss": 1.3407472229003907, + "step": 490400 + }, + { + "epoch": 65.4, + "grad_norm": 0.8583021759986877, + "learning_rate": 1.7315133333333333e-05, + "loss": 1.3463021850585937, + "step": 490500 + }, + { + "epoch": 65.41333333333333, + "grad_norm": 0.9152435660362244, + "learning_rate": 1.730846666666667e-05, + "loss": 1.3485971069335938, + "step": 490600 + }, + { + "epoch": 65.42666666666666, + "grad_norm": 0.8737739324569702, + "learning_rate": 1.73018e-05, + "loss": 1.3460276794433594, + "step": 490700 + }, + { + "epoch": 65.44, + "grad_norm": 0.9325355887413025, + "learning_rate": 1.7295133333333337e-05, + "loss": 1.3474514770507813, + "step": 490800 + }, + { + "epoch": 65.45333333333333, + "grad_norm": 0.890143632888794, + "learning_rate": 1.7288466666666665e-05, + "loss": 1.351007537841797, + "step": 490900 + }, + { + "epoch": 65.46666666666667, + "grad_norm": 0.8700892925262451, + "learning_rate": 1.72818e-05, + "loss": 1.350022735595703, + "step": 491000 + }, + { + "epoch": 65.48, + "grad_norm": 0.8921332955360413, + "learning_rate": 1.7275133333333333e-05, + "loss": 1.3486946105957032, + "step": 491100 + }, + { + "epoch": 65.49333333333334, + "grad_norm": 0.8532953262329102, + "learning_rate": 1.7268466666666666e-05, + "loss": 1.3525364685058594, + "step": 491200 + }, + { + "epoch": 65.50666666666666, + "grad_norm": 0.8729583024978638, + "learning_rate": 1.72618e-05, + "loss": 1.3483073425292968, + "step": 491300 + }, + { + "epoch": 65.52, + "grad_norm": 0.8708832263946533, + "learning_rate": 1.7255133333333334e-05, + "loss": 1.3524284362792969, + "step": 491400 + }, + { + "epoch": 65.53333333333333, + "grad_norm": 0.8295683860778809, + "learning_rate": 1.724846666666667e-05, + "loss": 1.3510769653320311, + "step": 491500 + }, + { + "epoch": 65.54666666666667, + "grad_norm": 0.8452852964401245, + "learning_rate": 1.7241799999999998e-05, + "loss": 1.3477371215820313, + "step": 491600 + }, + { + "epoch": 65.56, + "grad_norm": 0.8989164233207703, + "learning_rate": 1.7235133333333334e-05, + "loss": 1.3510366821289062, + "step": 491700 + }, + { + "epoch": 65.57333333333334, + "grad_norm": 0.9267915487289429, + "learning_rate": 1.722846666666667e-05, + "loss": 1.3512055969238281, + "step": 491800 + }, + { + "epoch": 65.58666666666667, + "grad_norm": 0.8938575387001038, + "learning_rate": 1.7221800000000002e-05, + "loss": 1.3483731079101562, + "step": 491900 + }, + { + "epoch": 65.6, + "grad_norm": 0.8966379761695862, + "learning_rate": 1.7215133333333334e-05, + "loss": 1.3562388610839844, + "step": 492000 + }, + { + "epoch": 65.61333333333333, + "grad_norm": 0.9655941724777222, + "learning_rate": 1.7208466666666666e-05, + "loss": 1.3572232055664062, + "step": 492100 + }, + { + "epoch": 65.62666666666667, + "grad_norm": 0.8997311592102051, + "learning_rate": 1.7201866666666665e-05, + "loss": 1.3530233764648438, + "step": 492200 + }, + { + "epoch": 65.64, + "grad_norm": 0.9643396735191345, + "learning_rate": 1.71952e-05, + "loss": 1.3538816833496095, + "step": 492300 + }, + { + "epoch": 65.65333333333334, + "grad_norm": 0.8839356899261475, + "learning_rate": 1.7188533333333333e-05, + "loss": 1.353894500732422, + "step": 492400 + }, + { + "epoch": 65.66666666666667, + "grad_norm": 0.8668888807296753, + "learning_rate": 1.718186666666667e-05, + "loss": 1.3576565551757813, + "step": 492500 + }, + { + "epoch": 65.68, + "grad_norm": 0.9418817758560181, + "learning_rate": 1.71752e-05, + "loss": 1.3552629089355468, + "step": 492600 + }, + { + "epoch": 65.69333333333333, + "grad_norm": 0.8563518524169922, + "learning_rate": 1.7168533333333333e-05, + "loss": 1.3564772033691406, + "step": 492700 + }, + { + "epoch": 65.70666666666666, + "grad_norm": 0.8663268685340881, + "learning_rate": 1.716186666666667e-05, + "loss": 1.3568724060058595, + "step": 492800 + }, + { + "epoch": 65.72, + "grad_norm": 0.9083966612815857, + "learning_rate": 1.71552e-05, + "loss": 1.3571450805664063, + "step": 492900 + }, + { + "epoch": 65.73333333333333, + "grad_norm": 0.8793100118637085, + "learning_rate": 1.7148533333333334e-05, + "loss": 1.358192901611328, + "step": 493000 + }, + { + "epoch": 65.74666666666667, + "grad_norm": 0.8852581977844238, + "learning_rate": 1.7141866666666666e-05, + "loss": 1.3583030700683594, + "step": 493100 + }, + { + "epoch": 65.76, + "grad_norm": 0.8649989366531372, + "learning_rate": 1.71352e-05, + "loss": 1.3607272338867187, + "step": 493200 + }, + { + "epoch": 65.77333333333333, + "grad_norm": 0.9444963335990906, + "learning_rate": 1.7128533333333334e-05, + "loss": 1.3594973754882813, + "step": 493300 + }, + { + "epoch": 65.78666666666666, + "grad_norm": 0.8799870610237122, + "learning_rate": 1.7121866666666666e-05, + "loss": 1.3647491455078125, + "step": 493400 + }, + { + "epoch": 65.8, + "grad_norm": 0.8851443529129028, + "learning_rate": 1.7115200000000002e-05, + "loss": 1.3620616149902345, + "step": 493500 + }, + { + "epoch": 65.81333333333333, + "grad_norm": 0.8632842898368835, + "learning_rate": 1.7108533333333334e-05, + "loss": 1.3599568176269532, + "step": 493600 + }, + { + "epoch": 65.82666666666667, + "grad_norm": 0.889917254447937, + "learning_rate": 1.710186666666667e-05, + "loss": 1.3595269775390626, + "step": 493700 + }, + { + "epoch": 65.84, + "grad_norm": 0.8989757895469666, + "learning_rate": 1.70952e-05, + "loss": 1.3624153137207031, + "step": 493800 + }, + { + "epoch": 65.85333333333334, + "grad_norm": 0.9110841751098633, + "learning_rate": 1.7088533333333334e-05, + "loss": 1.3641012573242188, + "step": 493900 + }, + { + "epoch": 65.86666666666666, + "grad_norm": 0.8911044597625732, + "learning_rate": 1.708186666666667e-05, + "loss": 1.3604220581054687, + "step": 494000 + }, + { + "epoch": 65.88, + "grad_norm": 0.8616090416908264, + "learning_rate": 1.70752e-05, + "loss": 1.3651438903808595, + "step": 494100 + }, + { + "epoch": 65.89333333333333, + "grad_norm": 0.9104633331298828, + "learning_rate": 1.70686e-05, + "loss": 1.3625418090820312, + "step": 494200 + }, + { + "epoch": 65.90666666666667, + "grad_norm": 0.8897743821144104, + "learning_rate": 1.7061933333333337e-05, + "loss": 1.3588157653808595, + "step": 494300 + }, + { + "epoch": 65.92, + "grad_norm": 0.9464109539985657, + "learning_rate": 1.7055266666666666e-05, + "loss": 1.3652839660644531, + "step": 494400 + }, + { + "epoch": 65.93333333333334, + "grad_norm": 0.8611365556716919, + "learning_rate": 1.70486e-05, + "loss": 1.3610792541503907, + "step": 494500 + }, + { + "epoch": 65.94666666666667, + "grad_norm": 0.9123305082321167, + "learning_rate": 1.7041933333333334e-05, + "loss": 1.3650492858886718, + "step": 494600 + }, + { + "epoch": 65.96, + "grad_norm": 0.8548987507820129, + "learning_rate": 1.703526666666667e-05, + "loss": 1.3598005676269531, + "step": 494700 + }, + { + "epoch": 65.97333333333333, + "grad_norm": 0.9494167566299438, + "learning_rate": 1.70286e-05, + "loss": 1.3669606018066407, + "step": 494800 + }, + { + "epoch": 65.98666666666666, + "grad_norm": 0.9031914472579956, + "learning_rate": 1.7021933333333334e-05, + "loss": 1.3666676330566405, + "step": 494900 + }, + { + "epoch": 66.0, + "grad_norm": 0.9000195264816284, + "learning_rate": 1.701526666666667e-05, + "loss": 1.3696188354492187, + "step": 495000 + }, + { + "epoch": 66.01333333333334, + "grad_norm": 0.8464391231536865, + "learning_rate": 1.70086e-05, + "loss": 1.3161962890625, + "step": 495100 + }, + { + "epoch": 66.02666666666667, + "grad_norm": 0.8270666599273682, + "learning_rate": 1.7001933333333334e-05, + "loss": 1.319871368408203, + "step": 495200 + }, + { + "epoch": 66.04, + "grad_norm": 0.852210283279419, + "learning_rate": 1.6995266666666666e-05, + "loss": 1.3218473815917968, + "step": 495300 + }, + { + "epoch": 66.05333333333333, + "grad_norm": 0.879362165927887, + "learning_rate": 1.6988600000000002e-05, + "loss": 1.318983612060547, + "step": 495400 + }, + { + "epoch": 66.06666666666666, + "grad_norm": 0.8811297416687012, + "learning_rate": 1.6981933333333334e-05, + "loss": 1.320828399658203, + "step": 495500 + }, + { + "epoch": 66.08, + "grad_norm": 0.8936617970466614, + "learning_rate": 1.6975266666666667e-05, + "loss": 1.319468994140625, + "step": 495600 + }, + { + "epoch": 66.09333333333333, + "grad_norm": 0.8245587944984436, + "learning_rate": 1.6968600000000002e-05, + "loss": 1.3200828552246093, + "step": 495700 + }, + { + "epoch": 66.10666666666667, + "grad_norm": 0.9125563502311707, + "learning_rate": 1.6961933333333334e-05, + "loss": 1.3209025573730468, + "step": 495800 + }, + { + "epoch": 66.12, + "grad_norm": 0.8604671955108643, + "learning_rate": 1.6955266666666667e-05, + "loss": 1.3225840759277343, + "step": 495900 + }, + { + "epoch": 66.13333333333334, + "grad_norm": 0.8596413135528564, + "learning_rate": 1.69486e-05, + "loss": 1.3214039611816406, + "step": 496000 + }, + { + "epoch": 66.14666666666666, + "grad_norm": 0.8338813185691833, + "learning_rate": 1.6941933333333335e-05, + "loss": 1.3240989685058593, + "step": 496100 + }, + { + "epoch": 66.16, + "grad_norm": 0.8821403980255127, + "learning_rate": 1.6935333333333334e-05, + "loss": 1.3248197937011719, + "step": 496200 + }, + { + "epoch": 66.17333333333333, + "grad_norm": 0.9026249051094055, + "learning_rate": 1.692866666666667e-05, + "loss": 1.3284371948242188, + "step": 496300 + }, + { + "epoch": 66.18666666666667, + "grad_norm": 0.8741923570632935, + "learning_rate": 1.6922e-05, + "loss": 1.3267121887207032, + "step": 496400 + }, + { + "epoch": 66.2, + "grad_norm": 0.8702110052108765, + "learning_rate": 1.6915333333333334e-05, + "loss": 1.326593475341797, + "step": 496500 + }, + { + "epoch": 66.21333333333334, + "grad_norm": 0.8829630613327026, + "learning_rate": 1.6908666666666666e-05, + "loss": 1.3249797058105468, + "step": 496600 + }, + { + "epoch": 66.22666666666667, + "grad_norm": 0.8170766830444336, + "learning_rate": 1.6902000000000002e-05, + "loss": 1.3290678405761718, + "step": 496700 + }, + { + "epoch": 66.24, + "grad_norm": 0.8386065363883972, + "learning_rate": 1.6895333333333334e-05, + "loss": 1.3280769348144532, + "step": 496800 + }, + { + "epoch": 66.25333333333333, + "grad_norm": 0.9074498414993286, + "learning_rate": 1.6888666666666666e-05, + "loss": 1.3333543395996095, + "step": 496900 + }, + { + "epoch": 66.26666666666667, + "grad_norm": 0.8878492116928101, + "learning_rate": 1.6882000000000002e-05, + "loss": 1.3320777893066407, + "step": 497000 + }, + { + "epoch": 66.28, + "grad_norm": 0.9520934820175171, + "learning_rate": 1.6875333333333334e-05, + "loss": 1.332491455078125, + "step": 497100 + }, + { + "epoch": 66.29333333333334, + "grad_norm": 0.8975771069526672, + "learning_rate": 1.686866666666667e-05, + "loss": 1.3285887145996094, + "step": 497200 + }, + { + "epoch": 66.30666666666667, + "grad_norm": 0.9283040165901184, + "learning_rate": 1.6862e-05, + "loss": 1.3328883361816406, + "step": 497300 + }, + { + "epoch": 66.32, + "grad_norm": 0.8596479892730713, + "learning_rate": 1.6855333333333334e-05, + "loss": 1.337887725830078, + "step": 497400 + }, + { + "epoch": 66.33333333333333, + "grad_norm": 0.8887840509414673, + "learning_rate": 1.6848666666666667e-05, + "loss": 1.3309591674804688, + "step": 497500 + }, + { + "epoch": 66.34666666666666, + "grad_norm": 0.8658081889152527, + "learning_rate": 1.6842e-05, + "loss": 1.3348977661132813, + "step": 497600 + }, + { + "epoch": 66.36, + "grad_norm": 0.8536320924758911, + "learning_rate": 1.6835333333333335e-05, + "loss": 1.3311074829101563, + "step": 497700 + }, + { + "epoch": 66.37333333333333, + "grad_norm": 0.8975630402565002, + "learning_rate": 1.6828666666666667e-05, + "loss": 1.3381869506835937, + "step": 497800 + }, + { + "epoch": 66.38666666666667, + "grad_norm": 0.9293047189712524, + "learning_rate": 1.6822000000000003e-05, + "loss": 1.338460693359375, + "step": 497900 + }, + { + "epoch": 66.4, + "grad_norm": 0.8931173086166382, + "learning_rate": 1.681533333333333e-05, + "loss": 1.3359477233886718, + "step": 498000 + }, + { + "epoch": 66.41333333333333, + "grad_norm": 0.9041270613670349, + "learning_rate": 1.6808666666666667e-05, + "loss": 1.3406436157226562, + "step": 498100 + }, + { + "epoch": 66.42666666666666, + "grad_norm": 0.8692404627799988, + "learning_rate": 1.680206666666667e-05, + "loss": 1.3393113708496094, + "step": 498200 + }, + { + "epoch": 66.44, + "grad_norm": 0.8984732627868652, + "learning_rate": 1.67954e-05, + "loss": 1.3371609497070311, + "step": 498300 + }, + { + "epoch": 66.45333333333333, + "grad_norm": 0.8967075347900391, + "learning_rate": 1.6788733333333334e-05, + "loss": 1.3435694885253906, + "step": 498400 + }, + { + "epoch": 66.46666666666667, + "grad_norm": 0.8753262162208557, + "learning_rate": 1.678206666666667e-05, + "loss": 1.3449749755859375, + "step": 498500 + }, + { + "epoch": 66.48, + "grad_norm": 0.907174825668335, + "learning_rate": 1.67754e-05, + "loss": 1.3397930908203124, + "step": 498600 + }, + { + "epoch": 66.49333333333334, + "grad_norm": 0.8881757855415344, + "learning_rate": 1.6768733333333334e-05, + "loss": 1.3411907958984375, + "step": 498700 + }, + { + "epoch": 66.50666666666666, + "grad_norm": 0.880740761756897, + "learning_rate": 1.6762066666666667e-05, + "loss": 1.3427651977539063, + "step": 498800 + }, + { + "epoch": 66.52, + "grad_norm": 0.8613744378089905, + "learning_rate": 1.6755400000000002e-05, + "loss": 1.34215576171875, + "step": 498900 + }, + { + "epoch": 66.53333333333333, + "grad_norm": 0.8675311803817749, + "learning_rate": 1.6748733333333335e-05, + "loss": 1.3419883728027344, + "step": 499000 + }, + { + "epoch": 66.54666666666667, + "grad_norm": 0.8745658993721008, + "learning_rate": 1.6742066666666667e-05, + "loss": 1.3410050964355469, + "step": 499100 + }, + { + "epoch": 66.56, + "grad_norm": 0.903735876083374, + "learning_rate": 1.6735400000000002e-05, + "loss": 1.3437112426757813, + "step": 499200 + }, + { + "epoch": 66.57333333333334, + "grad_norm": 0.9387283325195312, + "learning_rate": 1.6728733333333335e-05, + "loss": 1.3478224182128906, + "step": 499300 + }, + { + "epoch": 66.58666666666667, + "grad_norm": 0.8882374167442322, + "learning_rate": 1.6722066666666667e-05, + "loss": 1.3502310180664063, + "step": 499400 + }, + { + "epoch": 66.6, + "grad_norm": 0.8444065451622009, + "learning_rate": 1.67154e-05, + "loss": 1.3418290710449219, + "step": 499500 + }, + { + "epoch": 66.61333333333333, + "grad_norm": 0.8583235740661621, + "learning_rate": 1.6708733333333335e-05, + "loss": 1.346663818359375, + "step": 499600 + }, + { + "epoch": 66.62666666666667, + "grad_norm": 0.861813485622406, + "learning_rate": 1.6702066666666667e-05, + "loss": 1.3438009643554687, + "step": 499700 + }, + { + "epoch": 66.64, + "grad_norm": 0.9351439476013184, + "learning_rate": 1.66954e-05, + "loss": 1.3432070922851562, + "step": 499800 + }, + { + "epoch": 66.65333333333334, + "grad_norm": 0.8280015587806702, + "learning_rate": 1.6688733333333335e-05, + "loss": 1.3487863159179687, + "step": 499900 + }, + { + "epoch": 66.66666666666667, + "grad_norm": 0.9261816143989563, + "learning_rate": 1.6682066666666667e-05, + "loss": 1.348236083984375, + "step": 500000 + }, + { + "epoch": 66.68, + "grad_norm": 0.8890721201896667, + "learning_rate": 1.6675400000000003e-05, + "loss": 1.3480813598632813, + "step": 500100 + }, + { + "epoch": 66.69333333333333, + "grad_norm": 0.881643533706665, + "learning_rate": 1.6668800000000002e-05, + "loss": 1.3505299377441407, + "step": 500200 + }, + { + "epoch": 66.70666666666666, + "grad_norm": 0.8827385306358337, + "learning_rate": 1.6662133333333334e-05, + "loss": 1.3477456665039063, + "step": 500300 + }, + { + "epoch": 66.72, + "grad_norm": 0.9698315262794495, + "learning_rate": 1.6655466666666667e-05, + "loss": 1.3486949157714845, + "step": 500400 + }, + { + "epoch": 66.73333333333333, + "grad_norm": 0.864273726940155, + "learning_rate": 1.66488e-05, + "loss": 1.3506986999511719, + "step": 500500 + }, + { + "epoch": 66.74666666666667, + "grad_norm": 0.9118615388870239, + "learning_rate": 1.6642133333333335e-05, + "loss": 1.3483343505859375, + "step": 500600 + }, + { + "epoch": 66.76, + "grad_norm": 0.8899751901626587, + "learning_rate": 1.663546666666667e-05, + "loss": 1.3553768920898437, + "step": 500700 + }, + { + "epoch": 66.77333333333333, + "grad_norm": 0.9060136675834656, + "learning_rate": 1.66288e-05, + "loss": 1.345452117919922, + "step": 500800 + }, + { + "epoch": 66.78666666666666, + "grad_norm": 0.9999998211860657, + "learning_rate": 1.6622133333333335e-05, + "loss": 1.350277862548828, + "step": 500900 + }, + { + "epoch": 66.8, + "grad_norm": 0.8866046667098999, + "learning_rate": 1.6615466666666667e-05, + "loss": 1.3576226806640626, + "step": 501000 + }, + { + "epoch": 66.81333333333333, + "grad_norm": 0.9324911832809448, + "learning_rate": 1.6608800000000003e-05, + "loss": 1.350228271484375, + "step": 501100 + }, + { + "epoch": 66.82666666666667, + "grad_norm": 0.9233900904655457, + "learning_rate": 1.6602133333333335e-05, + "loss": 1.3524874877929687, + "step": 501200 + }, + { + "epoch": 66.84, + "grad_norm": 0.8950480818748474, + "learning_rate": 1.6595466666666667e-05, + "loss": 1.3505656433105468, + "step": 501300 + }, + { + "epoch": 66.85333333333334, + "grad_norm": 0.8450494408607483, + "learning_rate": 1.6588800000000003e-05, + "loss": 1.353629150390625, + "step": 501400 + }, + { + "epoch": 66.86666666666666, + "grad_norm": 0.8349661827087402, + "learning_rate": 1.6582133333333332e-05, + "loss": 1.3550460815429688, + "step": 501500 + }, + { + "epoch": 66.88, + "grad_norm": 0.8485316038131714, + "learning_rate": 1.6575466666666667e-05, + "loss": 1.35274658203125, + "step": 501600 + }, + { + "epoch": 66.89333333333333, + "grad_norm": 0.8575172424316406, + "learning_rate": 1.65688e-05, + "loss": 1.3558840942382813, + "step": 501700 + }, + { + "epoch": 66.90666666666667, + "grad_norm": 0.8949342370033264, + "learning_rate": 1.6562133333333335e-05, + "loss": 1.3565489196777343, + "step": 501800 + }, + { + "epoch": 66.92, + "grad_norm": 0.8905797600746155, + "learning_rate": 1.6555466666666668e-05, + "loss": 1.3542637634277344, + "step": 501900 + }, + { + "epoch": 66.93333333333334, + "grad_norm": 0.8685753345489502, + "learning_rate": 1.65488e-05, + "loss": 1.3555860900878907, + "step": 502000 + }, + { + "epoch": 66.94666666666667, + "grad_norm": 0.8902389407157898, + "learning_rate": 1.6542133333333336e-05, + "loss": 1.357294921875, + "step": 502100 + }, + { + "epoch": 66.96, + "grad_norm": 0.8817318677902222, + "learning_rate": 1.6535533333333335e-05, + "loss": 1.354560089111328, + "step": 502200 + }, + { + "epoch": 66.97333333333333, + "grad_norm": 0.8877972960472107, + "learning_rate": 1.6528866666666667e-05, + "loss": 1.3581826782226563, + "step": 502300 + }, + { + "epoch": 66.98666666666666, + "grad_norm": 0.9648900628089905, + "learning_rate": 1.6522200000000003e-05, + "loss": 1.3576654052734376, + "step": 502400 + }, + { + "epoch": 67.0, + "grad_norm": 0.8821939826011658, + "learning_rate": 1.651553333333333e-05, + "loss": 1.3601315307617188, + "step": 502500 + }, + { + "epoch": 67.01333333333334, + "grad_norm": 0.8473901748657227, + "learning_rate": 1.6508866666666667e-05, + "loss": 1.310140380859375, + "step": 502600 + }, + { + "epoch": 67.02666666666667, + "grad_norm": 0.8751438856124878, + "learning_rate": 1.65022e-05, + "loss": 1.3117538452148438, + "step": 502700 + }, + { + "epoch": 67.04, + "grad_norm": 0.8518862128257751, + "learning_rate": 1.6495533333333335e-05, + "loss": 1.3125653076171875, + "step": 502800 + }, + { + "epoch": 67.05333333333333, + "grad_norm": 0.8928504586219788, + "learning_rate": 1.6488866666666667e-05, + "loss": 1.3104530334472657, + "step": 502900 + }, + { + "epoch": 67.06666666666666, + "grad_norm": 0.8880503177642822, + "learning_rate": 1.64822e-05, + "loss": 1.3163229370117187, + "step": 503000 + }, + { + "epoch": 67.08, + "grad_norm": 0.9034183621406555, + "learning_rate": 1.6475533333333335e-05, + "loss": 1.3216062927246093, + "step": 503100 + }, + { + "epoch": 67.09333333333333, + "grad_norm": 0.8415785431861877, + "learning_rate": 1.6468866666666667e-05, + "loss": 1.3180642700195313, + "step": 503200 + }, + { + "epoch": 67.10666666666667, + "grad_norm": 0.8426023125648499, + "learning_rate": 1.64622e-05, + "loss": 1.3171853637695312, + "step": 503300 + }, + { + "epoch": 67.12, + "grad_norm": 0.9098384976387024, + "learning_rate": 1.6455533333333335e-05, + "loss": 1.3160491943359376, + "step": 503400 + }, + { + "epoch": 67.13333333333334, + "grad_norm": 0.910634458065033, + "learning_rate": 1.6448866666666668e-05, + "loss": 1.3179133605957032, + "step": 503500 + }, + { + "epoch": 67.14666666666666, + "grad_norm": 0.8796761631965637, + "learning_rate": 1.6442200000000003e-05, + "loss": 1.3178306579589845, + "step": 503600 + }, + { + "epoch": 67.16, + "grad_norm": 0.9137388467788696, + "learning_rate": 1.6435533333333332e-05, + "loss": 1.3195364379882812, + "step": 503700 + }, + { + "epoch": 67.17333333333333, + "grad_norm": 0.8771604895591736, + "learning_rate": 1.6428866666666668e-05, + "loss": 1.3253799438476563, + "step": 503800 + }, + { + "epoch": 67.18666666666667, + "grad_norm": 0.8796737194061279, + "learning_rate": 1.64222e-05, + "loss": 1.3219993591308594, + "step": 503900 + }, + { + "epoch": 67.2, + "grad_norm": 0.8637896180152893, + "learning_rate": 1.6415533333333332e-05, + "loss": 1.3234608459472657, + "step": 504000 + }, + { + "epoch": 67.21333333333334, + "grad_norm": 0.8395215272903442, + "learning_rate": 1.6408866666666668e-05, + "loss": 1.3233541870117187, + "step": 504100 + }, + { + "epoch": 67.22666666666667, + "grad_norm": 0.8876785039901733, + "learning_rate": 1.6402266666666667e-05, + "loss": 1.32363037109375, + "step": 504200 + }, + { + "epoch": 67.24, + "grad_norm": 0.8801200985908508, + "learning_rate": 1.63956e-05, + "loss": 1.328302764892578, + "step": 504300 + }, + { + "epoch": 67.25333333333333, + "grad_norm": 0.9056000709533691, + "learning_rate": 1.6388933333333335e-05, + "loss": 1.323112030029297, + "step": 504400 + }, + { + "epoch": 67.26666666666667, + "grad_norm": 0.9226976633071899, + "learning_rate": 1.6382266666666667e-05, + "loss": 1.328287353515625, + "step": 504500 + }, + { + "epoch": 67.28, + "grad_norm": 0.8553920984268188, + "learning_rate": 1.6375600000000003e-05, + "loss": 1.324569549560547, + "step": 504600 + }, + { + "epoch": 67.29333333333334, + "grad_norm": 0.8892163038253784, + "learning_rate": 1.6368933333333332e-05, + "loss": 1.3272508239746095, + "step": 504700 + }, + { + "epoch": 67.30666666666667, + "grad_norm": 0.828970193862915, + "learning_rate": 1.6362266666666667e-05, + "loss": 1.325264892578125, + "step": 504800 + }, + { + "epoch": 67.32, + "grad_norm": 0.8796325325965881, + "learning_rate": 1.6355600000000003e-05, + "loss": 1.3304495239257812, + "step": 504900 + }, + { + "epoch": 67.33333333333333, + "grad_norm": 0.8535403609275818, + "learning_rate": 1.6348933333333332e-05, + "loss": 1.3281263732910156, + "step": 505000 + }, + { + "epoch": 67.34666666666666, + "grad_norm": 0.9329071640968323, + "learning_rate": 1.6342266666666668e-05, + "loss": 1.3269728088378907, + "step": 505100 + }, + { + "epoch": 67.36, + "grad_norm": 0.8434710502624512, + "learning_rate": 1.63356e-05, + "loss": 1.330979461669922, + "step": 505200 + }, + { + "epoch": 67.37333333333333, + "grad_norm": 0.9090546369552612, + "learning_rate": 1.6328933333333336e-05, + "loss": 1.3287429809570312, + "step": 505300 + }, + { + "epoch": 67.38666666666667, + "grad_norm": 0.8121486902236938, + "learning_rate": 1.6322266666666668e-05, + "loss": 1.3265771484375, + "step": 505400 + }, + { + "epoch": 67.4, + "grad_norm": 0.92621248960495, + "learning_rate": 1.63156e-05, + "loss": 1.331717529296875, + "step": 505500 + }, + { + "epoch": 67.41333333333333, + "grad_norm": 0.861219048500061, + "learning_rate": 1.6308933333333336e-05, + "loss": 1.331618194580078, + "step": 505600 + }, + { + "epoch": 67.42666666666666, + "grad_norm": 0.8709635734558105, + "learning_rate": 1.6302266666666668e-05, + "loss": 1.3293948364257813, + "step": 505700 + }, + { + "epoch": 67.44, + "grad_norm": 0.9250495433807373, + "learning_rate": 1.62956e-05, + "loss": 1.3288381958007813, + "step": 505800 + }, + { + "epoch": 67.45333333333333, + "grad_norm": 0.9058433771133423, + "learning_rate": 1.6288933333333333e-05, + "loss": 1.33401123046875, + "step": 505900 + }, + { + "epoch": 67.46666666666667, + "grad_norm": 0.8685875535011292, + "learning_rate": 1.6282266666666668e-05, + "loss": 1.3351644897460937, + "step": 506000 + }, + { + "epoch": 67.48, + "grad_norm": 0.8778988122940063, + "learning_rate": 1.62756e-05, + "loss": 1.3352923583984375, + "step": 506100 + }, + { + "epoch": 67.49333333333334, + "grad_norm": 0.900501549243927, + "learning_rate": 1.6269e-05, + "loss": 1.3364425659179688, + "step": 506200 + }, + { + "epoch": 67.50666666666666, + "grad_norm": 0.832356333732605, + "learning_rate": 1.6262333333333335e-05, + "loss": 1.3344007873535155, + "step": 506300 + }, + { + "epoch": 67.52, + "grad_norm": 0.8706467747688293, + "learning_rate": 1.6255666666666668e-05, + "loss": 1.335708465576172, + "step": 506400 + }, + { + "epoch": 67.53333333333333, + "grad_norm": 0.9022287130355835, + "learning_rate": 1.6249e-05, + "loss": 1.334958038330078, + "step": 506500 + }, + { + "epoch": 67.54666666666667, + "grad_norm": 0.9078052043914795, + "learning_rate": 1.6242333333333335e-05, + "loss": 1.3339247131347656, + "step": 506600 + }, + { + "epoch": 67.56, + "grad_norm": 0.8930740356445312, + "learning_rate": 1.6235666666666668e-05, + "loss": 1.3345040893554687, + "step": 506700 + }, + { + "epoch": 67.57333333333334, + "grad_norm": 0.8925511837005615, + "learning_rate": 1.6229e-05, + "loss": 1.3339421081542968, + "step": 506800 + }, + { + "epoch": 67.58666666666667, + "grad_norm": 0.9075053334236145, + "learning_rate": 1.6222333333333332e-05, + "loss": 1.3400006103515625, + "step": 506900 + }, + { + "epoch": 67.6, + "grad_norm": 0.8388199210166931, + "learning_rate": 1.6215666666666668e-05, + "loss": 1.339932403564453, + "step": 507000 + }, + { + "epoch": 67.61333333333333, + "grad_norm": 0.9314302206039429, + "learning_rate": 1.6209000000000004e-05, + "loss": 1.3385556030273438, + "step": 507100 + }, + { + "epoch": 67.62666666666667, + "grad_norm": 0.936500608921051, + "learning_rate": 1.6202333333333332e-05, + "loss": 1.3391481018066407, + "step": 507200 + }, + { + "epoch": 67.64, + "grad_norm": 0.9487819671630859, + "learning_rate": 1.6195666666666668e-05, + "loss": 1.3424884033203126, + "step": 507300 + }, + { + "epoch": 67.65333333333334, + "grad_norm": 0.8992325663566589, + "learning_rate": 1.6189e-05, + "loss": 1.3376817321777343, + "step": 507400 + }, + { + "epoch": 67.66666666666667, + "grad_norm": 0.8715090155601501, + "learning_rate": 1.6182333333333336e-05, + "loss": 1.3390425109863282, + "step": 507500 + }, + { + "epoch": 67.68, + "grad_norm": 0.926875650882721, + "learning_rate": 1.6175666666666668e-05, + "loss": 1.3368760681152343, + "step": 507600 + }, + { + "epoch": 67.69333333333333, + "grad_norm": 0.8483115434646606, + "learning_rate": 1.6169e-05, + "loss": 1.3436689758300782, + "step": 507700 + }, + { + "epoch": 67.70666666666666, + "grad_norm": 0.9174588918685913, + "learning_rate": 1.6162333333333336e-05, + "loss": 1.3432699584960937, + "step": 507800 + }, + { + "epoch": 67.72, + "grad_norm": 0.8918784260749817, + "learning_rate": 1.6155666666666665e-05, + "loss": 1.342838592529297, + "step": 507900 + }, + { + "epoch": 67.73333333333333, + "grad_norm": 0.9192767143249512, + "learning_rate": 1.6149e-05, + "loss": 1.3431192016601563, + "step": 508000 + }, + { + "epoch": 67.74666666666667, + "grad_norm": 0.9048521518707275, + "learning_rate": 1.6142333333333333e-05, + "loss": 1.341384735107422, + "step": 508100 + }, + { + "epoch": 67.76, + "grad_norm": 0.8069953918457031, + "learning_rate": 1.613566666666667e-05, + "loss": 1.3444508361816405, + "step": 508200 + }, + { + "epoch": 67.77333333333333, + "grad_norm": 0.9301212430000305, + "learning_rate": 1.6129066666666668e-05, + "loss": 1.342718048095703, + "step": 508300 + }, + { + "epoch": 67.78666666666666, + "grad_norm": 0.8530392646789551, + "learning_rate": 1.61224e-05, + "loss": 1.343582763671875, + "step": 508400 + }, + { + "epoch": 67.8, + "grad_norm": 0.8464934825897217, + "learning_rate": 1.6115733333333336e-05, + "loss": 1.3441999816894532, + "step": 508500 + }, + { + "epoch": 67.81333333333333, + "grad_norm": 0.8721790313720703, + "learning_rate": 1.6109066666666668e-05, + "loss": 1.3421063232421875, + "step": 508600 + }, + { + "epoch": 67.82666666666667, + "grad_norm": 0.8738119006156921, + "learning_rate": 1.61024e-05, + "loss": 1.350204315185547, + "step": 508700 + }, + { + "epoch": 67.84, + "grad_norm": 0.961629331111908, + "learning_rate": 1.6095733333333336e-05, + "loss": 1.3457203674316407, + "step": 508800 + }, + { + "epoch": 67.85333333333334, + "grad_norm": 0.8968521952629089, + "learning_rate": 1.6089066666666665e-05, + "loss": 1.3510127258300781, + "step": 508900 + }, + { + "epoch": 67.86666666666666, + "grad_norm": 0.8948931694030762, + "learning_rate": 1.60824e-05, + "loss": 1.3487330627441407, + "step": 509000 + }, + { + "epoch": 67.88, + "grad_norm": 0.9145134091377258, + "learning_rate": 1.6075733333333333e-05, + "loss": 1.3471894836425782, + "step": 509100 + }, + { + "epoch": 67.89333333333333, + "grad_norm": 0.871657133102417, + "learning_rate": 1.606906666666667e-05, + "loss": 1.3422882080078125, + "step": 509200 + }, + { + "epoch": 67.90666666666667, + "grad_norm": 0.9065093398094177, + "learning_rate": 1.60624e-05, + "loss": 1.3477850341796875, + "step": 509300 + }, + { + "epoch": 67.92, + "grad_norm": 0.9234089255332947, + "learning_rate": 1.6055733333333333e-05, + "loss": 1.3499220275878907, + "step": 509400 + }, + { + "epoch": 67.93333333333334, + "grad_norm": 0.9075988531112671, + "learning_rate": 1.604906666666667e-05, + "loss": 1.3501620483398438, + "step": 509500 + }, + { + "epoch": 67.94666666666667, + "grad_norm": 0.8884494304656982, + "learning_rate": 1.60424e-05, + "loss": 1.348383331298828, + "step": 509600 + }, + { + "epoch": 67.96, + "grad_norm": 0.896177351474762, + "learning_rate": 1.6035733333333333e-05, + "loss": 1.3463504028320312, + "step": 509700 + }, + { + "epoch": 67.97333333333333, + "grad_norm": 0.9698064923286438, + "learning_rate": 1.602906666666667e-05, + "loss": 1.3500189208984374, + "step": 509800 + }, + { + "epoch": 67.98666666666666, + "grad_norm": 0.9053831100463867, + "learning_rate": 1.60224e-05, + "loss": 1.3513795471191405, + "step": 509900 + }, + { + "epoch": 68.0, + "grad_norm": 0.9011847972869873, + "learning_rate": 1.6015733333333337e-05, + "loss": 1.3465042114257812, + "step": 510000 + }, + { + "epoch": 68.01333333333334, + "grad_norm": 0.8597659468650818, + "learning_rate": 1.6009066666666665e-05, + "loss": 1.3004315185546875, + "step": 510100 + }, + { + "epoch": 68.02666666666667, + "grad_norm": 0.928426206111908, + "learning_rate": 1.60024e-05, + "loss": 1.3039891052246093, + "step": 510200 + }, + { + "epoch": 68.04, + "grad_norm": 0.8113676309585571, + "learning_rate": 1.59958e-05, + "loss": 1.3047027587890625, + "step": 510300 + }, + { + "epoch": 68.05333333333333, + "grad_norm": 0.9048395752906799, + "learning_rate": 1.5989133333333332e-05, + "loss": 1.3024574279785157, + "step": 510400 + }, + { + "epoch": 68.06666666666666, + "grad_norm": 0.8462424874305725, + "learning_rate": 1.5982466666666668e-05, + "loss": 1.3085397338867188, + "step": 510500 + }, + { + "epoch": 68.08, + "grad_norm": 0.8260025978088379, + "learning_rate": 1.59758e-05, + "loss": 1.3069618225097657, + "step": 510600 + }, + { + "epoch": 68.09333333333333, + "grad_norm": 0.9367395639419556, + "learning_rate": 1.5969133333333333e-05, + "loss": 1.3096812438964844, + "step": 510700 + }, + { + "epoch": 68.10666666666667, + "grad_norm": 0.8826059699058533, + "learning_rate": 1.596246666666667e-05, + "loss": 1.31156494140625, + "step": 510800 + }, + { + "epoch": 68.12, + "grad_norm": 0.8369840383529663, + "learning_rate": 1.59558e-05, + "loss": 1.3101882934570312, + "step": 510900 + }, + { + "epoch": 68.13333333333334, + "grad_norm": 0.89353346824646, + "learning_rate": 1.5949133333333336e-05, + "loss": 1.3151426696777344, + "step": 511000 + }, + { + "epoch": 68.14666666666666, + "grad_norm": 0.9131789803504944, + "learning_rate": 1.5942466666666665e-05, + "loss": 1.3127870178222656, + "step": 511100 + }, + { + "epoch": 68.16, + "grad_norm": 0.8653157353401184, + "learning_rate": 1.59358e-05, + "loss": 1.3090579223632812, + "step": 511200 + }, + { + "epoch": 68.17333333333333, + "grad_norm": 0.9040849804878235, + "learning_rate": 1.5929133333333336e-05, + "loss": 1.312974395751953, + "step": 511300 + }, + { + "epoch": 68.18666666666667, + "grad_norm": 0.8667581081390381, + "learning_rate": 1.5922466666666665e-05, + "loss": 1.3097319030761718, + "step": 511400 + }, + { + "epoch": 68.2, + "grad_norm": 0.8813672065734863, + "learning_rate": 1.59158e-05, + "loss": 1.3151568603515624, + "step": 511500 + }, + { + "epoch": 68.21333333333334, + "grad_norm": 0.8864101767539978, + "learning_rate": 1.5909133333333333e-05, + "loss": 1.318709716796875, + "step": 511600 + }, + { + "epoch": 68.22666666666667, + "grad_norm": 0.8745055794715881, + "learning_rate": 1.590246666666667e-05, + "loss": 1.3160711669921874, + "step": 511700 + }, + { + "epoch": 68.24, + "grad_norm": 0.8819094896316528, + "learning_rate": 1.58958e-05, + "loss": 1.3141668701171876, + "step": 511800 + }, + { + "epoch": 68.25333333333333, + "grad_norm": 0.8686659336090088, + "learning_rate": 1.5889133333333333e-05, + "loss": 1.3141128540039062, + "step": 511900 + }, + { + "epoch": 68.26666666666667, + "grad_norm": 0.8981601595878601, + "learning_rate": 1.588246666666667e-05, + "loss": 1.318443603515625, + "step": 512000 + }, + { + "epoch": 68.28, + "grad_norm": 0.9074696898460388, + "learning_rate": 1.58758e-05, + "loss": 1.3188632202148438, + "step": 512100 + }, + { + "epoch": 68.29333333333334, + "grad_norm": 0.8958747386932373, + "learning_rate": 1.5869133333333334e-05, + "loss": 1.3215031433105469, + "step": 512200 + }, + { + "epoch": 68.30666666666667, + "grad_norm": 0.8791993260383606, + "learning_rate": 1.5862533333333336e-05, + "loss": 1.31865478515625, + "step": 512300 + }, + { + "epoch": 68.32, + "grad_norm": 0.8460490107536316, + "learning_rate": 1.5855866666666665e-05, + "loss": 1.3209242248535156, + "step": 512400 + }, + { + "epoch": 68.33333333333333, + "grad_norm": 0.8700122833251953, + "learning_rate": 1.58492e-05, + "loss": 1.3208595275878907, + "step": 512500 + }, + { + "epoch": 68.34666666666666, + "grad_norm": 0.8390049934387207, + "learning_rate": 1.5842533333333333e-05, + "loss": 1.3223390197753906, + "step": 512600 + }, + { + "epoch": 68.36, + "grad_norm": 0.8614577054977417, + "learning_rate": 1.583586666666667e-05, + "loss": 1.3204753112792968, + "step": 512700 + }, + { + "epoch": 68.37333333333333, + "grad_norm": 0.8901036977767944, + "learning_rate": 1.58292e-05, + "loss": 1.324432373046875, + "step": 512800 + }, + { + "epoch": 68.38666666666667, + "grad_norm": 0.8955973386764526, + "learning_rate": 1.5822533333333333e-05, + "loss": 1.3183277893066405, + "step": 512900 + }, + { + "epoch": 68.4, + "grad_norm": 0.8843805193901062, + "learning_rate": 1.581586666666667e-05, + "loss": 1.3242254638671875, + "step": 513000 + }, + { + "epoch": 68.41333333333333, + "grad_norm": 0.8797668218612671, + "learning_rate": 1.58092e-05, + "loss": 1.3225811767578124, + "step": 513100 + }, + { + "epoch": 68.42666666666666, + "grad_norm": 0.9109477400779724, + "learning_rate": 1.5802533333333333e-05, + "loss": 1.3278276062011718, + "step": 513200 + }, + { + "epoch": 68.44, + "grad_norm": 0.9226241111755371, + "learning_rate": 1.5795866666666666e-05, + "loss": 1.31931640625, + "step": 513300 + }, + { + "epoch": 68.45333333333333, + "grad_norm": 0.8409252762794495, + "learning_rate": 1.57892e-05, + "loss": 1.3215591430664062, + "step": 513400 + }, + { + "epoch": 68.46666666666667, + "grad_norm": 0.8817701935768127, + "learning_rate": 1.5782533333333337e-05, + "loss": 1.3250498962402344, + "step": 513500 + }, + { + "epoch": 68.48, + "grad_norm": 0.868848979473114, + "learning_rate": 1.5775866666666666e-05, + "loss": 1.329929656982422, + "step": 513600 + }, + { + "epoch": 68.49333333333334, + "grad_norm": 0.9269536137580872, + "learning_rate": 1.57692e-05, + "loss": 1.3273797607421876, + "step": 513700 + }, + { + "epoch": 68.50666666666666, + "grad_norm": 0.8891344666481018, + "learning_rate": 1.5762533333333334e-05, + "loss": 1.3250120544433595, + "step": 513800 + }, + { + "epoch": 68.52, + "grad_norm": 0.8972460031509399, + "learning_rate": 1.575586666666667e-05, + "loss": 1.3335025024414062, + "step": 513900 + }, + { + "epoch": 68.53333333333333, + "grad_norm": 0.8979598879814148, + "learning_rate": 1.57492e-05, + "loss": 1.327074737548828, + "step": 514000 + }, + { + "epoch": 68.54666666666667, + "grad_norm": 0.9028379917144775, + "learning_rate": 1.5742533333333334e-05, + "loss": 1.32595947265625, + "step": 514100 + }, + { + "epoch": 68.56, + "grad_norm": 0.8925226926803589, + "learning_rate": 1.573586666666667e-05, + "loss": 1.3272763061523438, + "step": 514200 + }, + { + "epoch": 68.57333333333334, + "grad_norm": 0.9189619421958923, + "learning_rate": 1.572926666666667e-05, + "loss": 1.3309127807617187, + "step": 514300 + }, + { + "epoch": 68.58666666666667, + "grad_norm": 0.8941634893417358, + "learning_rate": 1.57226e-05, + "loss": 1.3285725402832032, + "step": 514400 + }, + { + "epoch": 68.6, + "grad_norm": 0.9585229158401489, + "learning_rate": 1.5715933333333337e-05, + "loss": 1.3328392028808593, + "step": 514500 + }, + { + "epoch": 68.61333333333333, + "grad_norm": 0.8872119784355164, + "learning_rate": 1.5709266666666665e-05, + "loss": 1.3325770568847657, + "step": 514600 + }, + { + "epoch": 68.62666666666667, + "grad_norm": 0.8843336701393127, + "learning_rate": 1.57026e-05, + "loss": 1.331486358642578, + "step": 514700 + }, + { + "epoch": 68.64, + "grad_norm": 0.9135434031486511, + "learning_rate": 1.5695933333333333e-05, + "loss": 1.333922119140625, + "step": 514800 + }, + { + "epoch": 68.65333333333334, + "grad_norm": 0.9394828677177429, + "learning_rate": 1.568926666666667e-05, + "loss": 1.3295352172851562, + "step": 514900 + }, + { + "epoch": 68.66666666666667, + "grad_norm": 0.9578185081481934, + "learning_rate": 1.56826e-05, + "loss": 1.331282958984375, + "step": 515000 + }, + { + "epoch": 68.68, + "grad_norm": 0.9389871954917908, + "learning_rate": 1.5675933333333334e-05, + "loss": 1.3376300048828125, + "step": 515100 + }, + { + "epoch": 68.69333333333333, + "grad_norm": 0.8578580021858215, + "learning_rate": 1.566926666666667e-05, + "loss": 1.333085479736328, + "step": 515200 + }, + { + "epoch": 68.70666666666666, + "grad_norm": 0.9202980399131775, + "learning_rate": 1.5662599999999998e-05, + "loss": 1.33133544921875, + "step": 515300 + }, + { + "epoch": 68.72, + "grad_norm": 0.9534364938735962, + "learning_rate": 1.5655933333333334e-05, + "loss": 1.3320506286621094, + "step": 515400 + }, + { + "epoch": 68.73333333333333, + "grad_norm": 0.8657859563827515, + "learning_rate": 1.5649266666666666e-05, + "loss": 1.3358692932128906, + "step": 515500 + }, + { + "epoch": 68.74666666666667, + "grad_norm": 0.8687852621078491, + "learning_rate": 1.56426e-05, + "loss": 1.3360931396484375, + "step": 515600 + }, + { + "epoch": 68.76, + "grad_norm": 0.9254283308982849, + "learning_rate": 1.5635933333333334e-05, + "loss": 1.3366038513183593, + "step": 515700 + }, + { + "epoch": 68.77333333333333, + "grad_norm": 0.9339519739151001, + "learning_rate": 1.5629266666666666e-05, + "loss": 1.3345875549316406, + "step": 515800 + }, + { + "epoch": 68.78666666666666, + "grad_norm": 0.942951500415802, + "learning_rate": 1.5622600000000002e-05, + "loss": 1.3363542175292968, + "step": 515900 + }, + { + "epoch": 68.8, + "grad_norm": 0.8819780945777893, + "learning_rate": 1.5615933333333334e-05, + "loss": 1.33906005859375, + "step": 516000 + }, + { + "epoch": 68.81333333333333, + "grad_norm": 0.9070013761520386, + "learning_rate": 1.5609266666666666e-05, + "loss": 1.3376704406738282, + "step": 516100 + }, + { + "epoch": 68.82666666666667, + "grad_norm": 0.9122033715248108, + "learning_rate": 1.5602600000000002e-05, + "loss": 1.339272003173828, + "step": 516200 + }, + { + "epoch": 68.84, + "grad_norm": 0.8980287313461304, + "learning_rate": 1.5595933333333334e-05, + "loss": 1.336685791015625, + "step": 516300 + }, + { + "epoch": 68.85333333333334, + "grad_norm": 0.8671182990074158, + "learning_rate": 1.5589333333333333e-05, + "loss": 1.338714599609375, + "step": 516400 + }, + { + "epoch": 68.86666666666666, + "grad_norm": 0.8897833228111267, + "learning_rate": 1.558266666666667e-05, + "loss": 1.3385552978515625, + "step": 516500 + }, + { + "epoch": 68.88, + "grad_norm": 0.8926507830619812, + "learning_rate": 1.5576e-05, + "loss": 1.3375399780273438, + "step": 516600 + }, + { + "epoch": 68.89333333333333, + "grad_norm": 0.9504712224006653, + "learning_rate": 1.5569333333333334e-05, + "loss": 1.3395611572265624, + "step": 516700 + }, + { + "epoch": 68.90666666666667, + "grad_norm": 0.9633262753486633, + "learning_rate": 1.5562666666666666e-05, + "loss": 1.337670135498047, + "step": 516800 + }, + { + "epoch": 68.92, + "grad_norm": 0.9180074334144592, + "learning_rate": 1.5556e-05, + "loss": 1.3344358825683593, + "step": 516900 + }, + { + "epoch": 68.93333333333334, + "grad_norm": 0.9330366849899292, + "learning_rate": 1.5549333333333334e-05, + "loss": 1.3429493713378906, + "step": 517000 + }, + { + "epoch": 68.94666666666667, + "grad_norm": 0.8484285473823547, + "learning_rate": 1.5542666666666666e-05, + "loss": 1.33810791015625, + "step": 517100 + }, + { + "epoch": 68.96, + "grad_norm": 0.9376809597015381, + "learning_rate": 1.5536e-05, + "loss": 1.3395620727539062, + "step": 517200 + }, + { + "epoch": 68.97333333333333, + "grad_norm": 0.8969297409057617, + "learning_rate": 1.5529333333333334e-05, + "loss": 1.340773468017578, + "step": 517300 + }, + { + "epoch": 68.98666666666666, + "grad_norm": 0.8501908779144287, + "learning_rate": 1.552266666666667e-05, + "loss": 1.34123046875, + "step": 517400 + }, + { + "epoch": 69.0, + "grad_norm": 0.9352733492851257, + "learning_rate": 1.5516e-05, + "loss": 1.3383326721191406, + "step": 517500 + }, + { + "epoch": 69.01333333333334, + "grad_norm": 0.909633219242096, + "learning_rate": 1.5509333333333334e-05, + "loss": 1.3029652404785157, + "step": 517600 + }, + { + "epoch": 69.02666666666667, + "grad_norm": 0.8774516582489014, + "learning_rate": 1.550266666666667e-05, + "loss": 1.3019322204589843, + "step": 517700 + }, + { + "epoch": 69.04, + "grad_norm": 0.8658164143562317, + "learning_rate": 1.5496e-05, + "loss": 1.3007429504394532, + "step": 517800 + }, + { + "epoch": 69.05333333333333, + "grad_norm": 0.9352324604988098, + "learning_rate": 1.5489333333333334e-05, + "loss": 1.2994084167480469, + "step": 517900 + }, + { + "epoch": 69.06666666666666, + "grad_norm": 0.8457640409469604, + "learning_rate": 1.5482666666666667e-05, + "loss": 1.3021054077148437, + "step": 518000 + }, + { + "epoch": 69.08, + "grad_norm": 0.8199939727783203, + "learning_rate": 1.5476000000000002e-05, + "loss": 1.303291015625, + "step": 518100 + }, + { + "epoch": 69.09333333333333, + "grad_norm": 0.9278339743614197, + "learning_rate": 1.5469333333333335e-05, + "loss": 1.3022172546386719, + "step": 518200 + }, + { + "epoch": 69.10666666666667, + "grad_norm": 0.8438993096351624, + "learning_rate": 1.5462666666666667e-05, + "loss": 1.3028335571289062, + "step": 518300 + }, + { + "epoch": 69.12, + "grad_norm": 0.87488853931427, + "learning_rate": 1.5456000000000002e-05, + "loss": 1.3034165954589845, + "step": 518400 + }, + { + "epoch": 69.13333333333334, + "grad_norm": 0.8736199140548706, + "learning_rate": 1.54494e-05, + "loss": 1.304062042236328, + "step": 518500 + }, + { + "epoch": 69.14666666666666, + "grad_norm": 0.8868971467018127, + "learning_rate": 1.5442733333333334e-05, + "loss": 1.303873291015625, + "step": 518600 + }, + { + "epoch": 69.16, + "grad_norm": 0.8616037964820862, + "learning_rate": 1.543606666666667e-05, + "loss": 1.3016984558105469, + "step": 518700 + }, + { + "epoch": 69.17333333333333, + "grad_norm": 0.8724547624588013, + "learning_rate": 1.54294e-05, + "loss": 1.3086442565917968, + "step": 518800 + }, + { + "epoch": 69.18666666666667, + "grad_norm": 0.8624784350395203, + "learning_rate": 1.5422733333333334e-05, + "loss": 1.3114741516113282, + "step": 518900 + }, + { + "epoch": 69.2, + "grad_norm": 0.8696256875991821, + "learning_rate": 1.5416066666666666e-05, + "loss": 1.3064015197753907, + "step": 519000 + }, + { + "epoch": 69.21333333333334, + "grad_norm": 0.9286923408508301, + "learning_rate": 1.5409400000000002e-05, + "loss": 1.3089067077636718, + "step": 519100 + }, + { + "epoch": 69.22666666666667, + "grad_norm": 0.8909485936164856, + "learning_rate": 1.5402733333333334e-05, + "loss": 1.3079788208007812, + "step": 519200 + }, + { + "epoch": 69.24, + "grad_norm": 0.8831815123558044, + "learning_rate": 1.5396066666666666e-05, + "loss": 1.3152728271484375, + "step": 519300 + }, + { + "epoch": 69.25333333333333, + "grad_norm": 0.8436625003814697, + "learning_rate": 1.5389400000000002e-05, + "loss": 1.3138188171386718, + "step": 519400 + }, + { + "epoch": 69.26666666666667, + "grad_norm": 0.9039004445075989, + "learning_rate": 1.5382733333333334e-05, + "loss": 1.3095545959472656, + "step": 519500 + }, + { + "epoch": 69.28, + "grad_norm": 0.8767098188400269, + "learning_rate": 1.5376066666666667e-05, + "loss": 1.3092991638183593, + "step": 519600 + }, + { + "epoch": 69.29333333333334, + "grad_norm": 0.894680917263031, + "learning_rate": 1.53694e-05, + "loss": 1.3123838806152344, + "step": 519700 + }, + { + "epoch": 69.30666666666667, + "grad_norm": 0.8522490859031677, + "learning_rate": 1.5362733333333335e-05, + "loss": 1.3137554931640625, + "step": 519800 + }, + { + "epoch": 69.32, + "grad_norm": 0.9253702759742737, + "learning_rate": 1.535606666666667e-05, + "loss": 1.312119140625, + "step": 519900 + }, + { + "epoch": 69.33333333333333, + "grad_norm": 0.8951952457427979, + "learning_rate": 1.53494e-05, + "loss": 1.3125660705566407, + "step": 520000 + }, + { + "epoch": 69.34666666666666, + "grad_norm": 0.8459183573722839, + "learning_rate": 1.5342733333333335e-05, + "loss": 1.3168217468261718, + "step": 520100 + }, + { + "epoch": 69.36, + "grad_norm": 0.9312644600868225, + "learning_rate": 1.5336066666666667e-05, + "loss": 1.3158766174316405, + "step": 520200 + }, + { + "epoch": 69.37333333333333, + "grad_norm": 0.885540783405304, + "learning_rate": 1.5329400000000003e-05, + "loss": 1.3112091064453124, + "step": 520300 + }, + { + "epoch": 69.38666666666667, + "grad_norm": 0.8519514203071594, + "learning_rate": 1.5322733333333335e-05, + "loss": 1.3133538818359376, + "step": 520400 + }, + { + "epoch": 69.4, + "grad_norm": 0.9369427561759949, + "learning_rate": 1.5316133333333334e-05, + "loss": 1.3154583740234376, + "step": 520500 + }, + { + "epoch": 69.41333333333333, + "grad_norm": 0.8602283596992493, + "learning_rate": 1.5309466666666666e-05, + "loss": 1.3165095520019532, + "step": 520600 + }, + { + "epoch": 69.42666666666666, + "grad_norm": 0.9157493114471436, + "learning_rate": 1.5302800000000002e-05, + "loss": 1.3148411560058593, + "step": 520700 + }, + { + "epoch": 69.44, + "grad_norm": 0.9101560711860657, + "learning_rate": 1.5296133333333334e-05, + "loss": 1.3182754516601562, + "step": 520800 + }, + { + "epoch": 69.45333333333333, + "grad_norm": 0.9380730390548706, + "learning_rate": 1.528946666666667e-05, + "loss": 1.3192401123046875, + "step": 520900 + }, + { + "epoch": 69.46666666666667, + "grad_norm": 0.9109295010566711, + "learning_rate": 1.52828e-05, + "loss": 1.3193789672851564, + "step": 521000 + }, + { + "epoch": 69.48, + "grad_norm": 0.8645269274711609, + "learning_rate": 1.5276133333333334e-05, + "loss": 1.3203118896484376, + "step": 521100 + }, + { + "epoch": 69.49333333333334, + "grad_norm": 0.8796331882476807, + "learning_rate": 1.5269466666666667e-05, + "loss": 1.3172000122070313, + "step": 521200 + }, + { + "epoch": 69.50666666666666, + "grad_norm": 0.9040528535842896, + "learning_rate": 1.5262800000000002e-05, + "loss": 1.3217599487304688, + "step": 521300 + }, + { + "epoch": 69.52, + "grad_norm": 0.9129952788352966, + "learning_rate": 1.5256133333333333e-05, + "loss": 1.3199691772460938, + "step": 521400 + }, + { + "epoch": 69.53333333333333, + "grad_norm": 0.927264928817749, + "learning_rate": 1.5249466666666667e-05, + "loss": 1.3197657775878906, + "step": 521500 + }, + { + "epoch": 69.54666666666667, + "grad_norm": 0.8854173421859741, + "learning_rate": 1.52428e-05, + "loss": 1.32036865234375, + "step": 521600 + }, + { + "epoch": 69.56, + "grad_norm": 0.864914059638977, + "learning_rate": 1.5236133333333333e-05, + "loss": 1.3250689697265625, + "step": 521700 + }, + { + "epoch": 69.57333333333334, + "grad_norm": 0.9233516454696655, + "learning_rate": 1.5229466666666667e-05, + "loss": 1.3195721435546874, + "step": 521800 + }, + { + "epoch": 69.58666666666667, + "grad_norm": 0.8919656872749329, + "learning_rate": 1.5222800000000001e-05, + "loss": 1.3226580810546875, + "step": 521900 + }, + { + "epoch": 69.6, + "grad_norm": 0.9302183389663696, + "learning_rate": 1.5216133333333335e-05, + "loss": 1.325461883544922, + "step": 522000 + }, + { + "epoch": 69.61333333333333, + "grad_norm": 0.8252825736999512, + "learning_rate": 1.5209466666666666e-05, + "loss": 1.3249801635742187, + "step": 522100 + }, + { + "epoch": 69.62666666666667, + "grad_norm": 0.9176365733146667, + "learning_rate": 1.5202800000000001e-05, + "loss": 1.3211125183105468, + "step": 522200 + }, + { + "epoch": 69.64, + "grad_norm": 0.8246389627456665, + "learning_rate": 1.5196133333333335e-05, + "loss": 1.3223980712890624, + "step": 522300 + }, + { + "epoch": 69.65333333333334, + "grad_norm": 0.9392738938331604, + "learning_rate": 1.5189466666666669e-05, + "loss": 1.319575653076172, + "step": 522400 + }, + { + "epoch": 69.66666666666667, + "grad_norm": 0.888167142868042, + "learning_rate": 1.5182866666666668e-05, + "loss": 1.3244210815429687, + "step": 522500 + }, + { + "epoch": 69.68, + "grad_norm": 0.8745282292366028, + "learning_rate": 1.5176200000000002e-05, + "loss": 1.322125244140625, + "step": 522600 + }, + { + "epoch": 69.69333333333333, + "grad_norm": 0.8966434001922607, + "learning_rate": 1.5169533333333333e-05, + "loss": 1.328828125, + "step": 522700 + }, + { + "epoch": 69.70666666666666, + "grad_norm": 0.8466253876686096, + "learning_rate": 1.5162866666666667e-05, + "loss": 1.3279318237304687, + "step": 522800 + }, + { + "epoch": 69.72, + "grad_norm": 0.8887118697166443, + "learning_rate": 1.51562e-05, + "loss": 1.3284657287597657, + "step": 522900 + }, + { + "epoch": 69.73333333333333, + "grad_norm": 0.7998771667480469, + "learning_rate": 1.5149533333333335e-05, + "loss": 1.32925537109375, + "step": 523000 + }, + { + "epoch": 69.74666666666667, + "grad_norm": 0.8823466300964355, + "learning_rate": 1.5142866666666667e-05, + "loss": 1.3294252014160157, + "step": 523100 + }, + { + "epoch": 69.76, + "grad_norm": 0.9160724878311157, + "learning_rate": 1.5136200000000001e-05, + "loss": 1.327671356201172, + "step": 523200 + }, + { + "epoch": 69.77333333333333, + "grad_norm": 0.8401466012001038, + "learning_rate": 1.5129533333333335e-05, + "loss": 1.3307571411132812, + "step": 523300 + }, + { + "epoch": 69.78666666666666, + "grad_norm": 0.8765178322792053, + "learning_rate": 1.5122866666666669e-05, + "loss": 1.329644775390625, + "step": 523400 + }, + { + "epoch": 69.8, + "grad_norm": 0.87641841173172, + "learning_rate": 1.51162e-05, + "loss": 1.3258184814453124, + "step": 523500 + }, + { + "epoch": 69.81333333333333, + "grad_norm": 0.8888761401176453, + "learning_rate": 1.5109533333333333e-05, + "loss": 1.3236990356445313, + "step": 523600 + }, + { + "epoch": 69.82666666666667, + "grad_norm": 0.91169273853302, + "learning_rate": 1.5102866666666667e-05, + "loss": 1.3255255126953125, + "step": 523700 + }, + { + "epoch": 69.84, + "grad_norm": 0.8905537724494934, + "learning_rate": 1.5096200000000001e-05, + "loss": 1.3305224609375, + "step": 523800 + }, + { + "epoch": 69.85333333333334, + "grad_norm": 0.8976826667785645, + "learning_rate": 1.5089533333333334e-05, + "loss": 1.3281327819824218, + "step": 523900 + }, + { + "epoch": 69.86666666666666, + "grad_norm": 0.9264980554580688, + "learning_rate": 1.5082866666666667e-05, + "loss": 1.3322329711914063, + "step": 524000 + }, + { + "epoch": 69.88, + "grad_norm": 0.8969742059707642, + "learning_rate": 1.5076200000000001e-05, + "loss": 1.3304733276367187, + "step": 524100 + }, + { + "epoch": 69.89333333333333, + "grad_norm": 0.9283936619758606, + "learning_rate": 1.5069533333333332e-05, + "loss": 1.3320317077636719, + "step": 524200 + }, + { + "epoch": 69.90666666666667, + "grad_norm": 0.9455838203430176, + "learning_rate": 1.5062866666666666e-05, + "loss": 1.3323895263671874, + "step": 524300 + }, + { + "epoch": 69.92, + "grad_norm": 0.9530020356178284, + "learning_rate": 1.5056200000000002e-05, + "loss": 1.333441162109375, + "step": 524400 + }, + { + "epoch": 69.93333333333334, + "grad_norm": 0.8964418768882751, + "learning_rate": 1.5049599999999999e-05, + "loss": 1.3335765075683594, + "step": 524500 + }, + { + "epoch": 69.94666666666667, + "grad_norm": 0.8553877472877502, + "learning_rate": 1.5042933333333335e-05, + "loss": 1.3312777709960937, + "step": 524600 + }, + { + "epoch": 69.96, + "grad_norm": 0.8218632936477661, + "learning_rate": 1.5036266666666669e-05, + "loss": 1.3336231994628907, + "step": 524700 + }, + { + "epoch": 69.97333333333333, + "grad_norm": 0.8228429555892944, + "learning_rate": 1.5029600000000003e-05, + "loss": 1.3307693481445313, + "step": 524800 + }, + { + "epoch": 69.98666666666666, + "grad_norm": 0.890493631362915, + "learning_rate": 1.5022933333333333e-05, + "loss": 1.3317050170898437, + "step": 524900 + }, + { + "epoch": 70.0, + "grad_norm": 0.8892182111740112, + "learning_rate": 1.5016266666666667e-05, + "loss": 1.3370907592773438, + "step": 525000 + }, + { + "epoch": 70.01333333333334, + "grad_norm": 0.8805796504020691, + "learning_rate": 1.5009600000000001e-05, + "loss": 1.2896534729003906, + "step": 525100 + }, + { + "epoch": 70.02666666666667, + "grad_norm": 0.8995780348777771, + "learning_rate": 1.5002933333333333e-05, + "loss": 1.289251251220703, + "step": 525200 + }, + { + "epoch": 70.04, + "grad_norm": 0.8692154884338379, + "learning_rate": 1.4996266666666667e-05, + "loss": 1.2940298461914062, + "step": 525300 + }, + { + "epoch": 70.05333333333333, + "grad_norm": 0.9129854440689087, + "learning_rate": 1.4989600000000001e-05, + "loss": 1.2941226196289062, + "step": 525400 + }, + { + "epoch": 70.06666666666666, + "grad_norm": 0.8497447371482849, + "learning_rate": 1.4982933333333335e-05, + "loss": 1.2971897888183594, + "step": 525500 + }, + { + "epoch": 70.08, + "grad_norm": 0.9296039342880249, + "learning_rate": 1.4976266666666666e-05, + "loss": 1.2974925231933594, + "step": 525600 + }, + { + "epoch": 70.09333333333333, + "grad_norm": 0.8348743915557861, + "learning_rate": 1.49696e-05, + "loss": 1.2969551086425781, + "step": 525700 + }, + { + "epoch": 70.10666666666667, + "grad_norm": 0.9072258472442627, + "learning_rate": 1.4962933333333334e-05, + "loss": 1.2984727478027345, + "step": 525800 + }, + { + "epoch": 70.12, + "grad_norm": 0.87555330991745, + "learning_rate": 1.4956266666666668e-05, + "loss": 1.2968763732910156, + "step": 525900 + }, + { + "epoch": 70.13333333333334, + "grad_norm": 0.8605111837387085, + "learning_rate": 1.49496e-05, + "loss": 1.2984910583496094, + "step": 526000 + }, + { + "epoch": 70.14666666666666, + "grad_norm": 0.9041507840156555, + "learning_rate": 1.4942933333333334e-05, + "loss": 1.2995046997070312, + "step": 526100 + }, + { + "epoch": 70.16, + "grad_norm": 0.8892377018928528, + "learning_rate": 1.4936266666666668e-05, + "loss": 1.2987435913085938, + "step": 526200 + }, + { + "epoch": 70.17333333333333, + "grad_norm": 0.8845103979110718, + "learning_rate": 1.4929600000000002e-05, + "loss": 1.3019927978515624, + "step": 526300 + }, + { + "epoch": 70.18666666666667, + "grad_norm": 0.9019655585289001, + "learning_rate": 1.4922933333333332e-05, + "loss": 1.3028900146484375, + "step": 526400 + }, + { + "epoch": 70.2, + "grad_norm": 0.9145544171333313, + "learning_rate": 1.4916333333333335e-05, + "loss": 1.2975439453125, + "step": 526500 + }, + { + "epoch": 70.21333333333334, + "grad_norm": 0.8441560864448547, + "learning_rate": 1.4909666666666665e-05, + "loss": 1.2994468688964844, + "step": 526600 + }, + { + "epoch": 70.22666666666667, + "grad_norm": 0.9168753623962402, + "learning_rate": 1.4903000000000001e-05, + "loss": 1.2965029907226562, + "step": 526700 + }, + { + "epoch": 70.24, + "grad_norm": 0.918009340763092, + "learning_rate": 1.4896333333333335e-05, + "loss": 1.3034149169921876, + "step": 526800 + }, + { + "epoch": 70.25333333333333, + "grad_norm": 0.8701112866401672, + "learning_rate": 1.4889666666666669e-05, + "loss": 1.306947021484375, + "step": 526900 + }, + { + "epoch": 70.26666666666667, + "grad_norm": 0.8067172765731812, + "learning_rate": 1.4883e-05, + "loss": 1.3056159973144532, + "step": 527000 + }, + { + "epoch": 70.28, + "grad_norm": 0.8838335871696472, + "learning_rate": 1.4876333333333334e-05, + "loss": 1.3039329528808594, + "step": 527100 + }, + { + "epoch": 70.29333333333334, + "grad_norm": 0.7886351346969604, + "learning_rate": 1.4869666666666668e-05, + "loss": 1.3026358032226562, + "step": 527200 + }, + { + "epoch": 70.30666666666667, + "grad_norm": 0.858665406703949, + "learning_rate": 1.4863000000000002e-05, + "loss": 1.3058314514160156, + "step": 527300 + }, + { + "epoch": 70.32, + "grad_norm": 0.888764500617981, + "learning_rate": 1.4856333333333334e-05, + "loss": 1.2972772216796875, + "step": 527400 + }, + { + "epoch": 70.33333333333333, + "grad_norm": 0.8429321050643921, + "learning_rate": 1.4849666666666668e-05, + "loss": 1.3043406677246094, + "step": 527500 + }, + { + "epoch": 70.34666666666666, + "grad_norm": 0.877232015132904, + "learning_rate": 1.4843000000000002e-05, + "loss": 1.3073738098144532, + "step": 527600 + }, + { + "epoch": 70.36, + "grad_norm": 0.8669724464416504, + "learning_rate": 1.4836333333333336e-05, + "loss": 1.30747314453125, + "step": 527700 + }, + { + "epoch": 70.37333333333333, + "grad_norm": 0.8887328505516052, + "learning_rate": 1.4829666666666666e-05, + "loss": 1.3084428405761719, + "step": 527800 + }, + { + "epoch": 70.38666666666667, + "grad_norm": 0.8904489874839783, + "learning_rate": 1.4823e-05, + "loss": 1.3099253845214844, + "step": 527900 + }, + { + "epoch": 70.4, + "grad_norm": 0.8574255704879761, + "learning_rate": 1.4816333333333334e-05, + "loss": 1.3076028442382812, + "step": 528000 + }, + { + "epoch": 70.41333333333333, + "grad_norm": 0.8327115774154663, + "learning_rate": 1.4809666666666666e-05, + "loss": 1.3109042358398437, + "step": 528100 + }, + { + "epoch": 70.42666666666666, + "grad_norm": 0.8879788517951965, + "learning_rate": 1.4803e-05, + "loss": 1.3088136291503907, + "step": 528200 + }, + { + "epoch": 70.44, + "grad_norm": 0.9286050200462341, + "learning_rate": 1.4796333333333334e-05, + "loss": 1.308986358642578, + "step": 528300 + }, + { + "epoch": 70.45333333333333, + "grad_norm": 0.8870999217033386, + "learning_rate": 1.4789666666666668e-05, + "loss": 1.3082102966308593, + "step": 528400 + }, + { + "epoch": 70.46666666666667, + "grad_norm": 0.9179296493530273, + "learning_rate": 1.4783066666666667e-05, + "loss": 1.3106611633300782, + "step": 528500 + }, + { + "epoch": 70.48, + "grad_norm": 0.9033756852149963, + "learning_rate": 1.4776400000000001e-05, + "loss": 1.314158935546875, + "step": 528600 + }, + { + "epoch": 70.49333333333334, + "grad_norm": 0.8611282706260681, + "learning_rate": 1.4769733333333335e-05, + "loss": 1.3064042663574218, + "step": 528700 + }, + { + "epoch": 70.50666666666666, + "grad_norm": 0.8423687219619751, + "learning_rate": 1.4763066666666666e-05, + "loss": 1.3101791381835937, + "step": 528800 + }, + { + "epoch": 70.52, + "grad_norm": 0.8234757781028748, + "learning_rate": 1.4756400000000002e-05, + "loss": 1.3123239135742188, + "step": 528900 + }, + { + "epoch": 70.53333333333333, + "grad_norm": 0.8716632127761841, + "learning_rate": 1.4749733333333336e-05, + "loss": 1.3124678039550781, + "step": 529000 + }, + { + "epoch": 70.54666666666667, + "grad_norm": 0.9232488870620728, + "learning_rate": 1.4743066666666666e-05, + "loss": 1.3115689086914062, + "step": 529100 + }, + { + "epoch": 70.56, + "grad_norm": 0.8848524689674377, + "learning_rate": 1.47364e-05, + "loss": 1.3127764892578124, + "step": 529200 + }, + { + "epoch": 70.57333333333334, + "grad_norm": 0.875851035118103, + "learning_rate": 1.4729733333333334e-05, + "loss": 1.3133317565917968, + "step": 529300 + }, + { + "epoch": 70.58666666666667, + "grad_norm": 0.8727511763572693, + "learning_rate": 1.4723066666666668e-05, + "loss": 1.314737548828125, + "step": 529400 + }, + { + "epoch": 70.6, + "grad_norm": 0.8630813956260681, + "learning_rate": 1.47164e-05, + "loss": 1.3156022644042968, + "step": 529500 + }, + { + "epoch": 70.61333333333333, + "grad_norm": 0.8557106852531433, + "learning_rate": 1.4709733333333334e-05, + "loss": 1.3173948669433593, + "step": 529600 + }, + { + "epoch": 70.62666666666667, + "grad_norm": 0.9779431819915771, + "learning_rate": 1.4703066666666668e-05, + "loss": 1.3198297119140625, + "step": 529700 + }, + { + "epoch": 70.64, + "grad_norm": 0.8593903183937073, + "learning_rate": 1.4696400000000002e-05, + "loss": 1.316092529296875, + "step": 529800 + }, + { + "epoch": 70.65333333333334, + "grad_norm": 0.9095006585121155, + "learning_rate": 1.4689733333333333e-05, + "loss": 1.3180062866210938, + "step": 529900 + }, + { + "epoch": 70.66666666666667, + "grad_norm": 0.8926806449890137, + "learning_rate": 1.4683066666666667e-05, + "loss": 1.3165269470214844, + "step": 530000 + }, + { + "epoch": 70.68, + "grad_norm": 0.9139357805252075, + "learning_rate": 1.46764e-05, + "loss": 1.3208946228027343, + "step": 530100 + }, + { + "epoch": 70.69333333333333, + "grad_norm": 0.8682335615158081, + "learning_rate": 1.4669733333333335e-05, + "loss": 1.3224298095703124, + "step": 530200 + }, + { + "epoch": 70.70666666666666, + "grad_norm": 0.8869616985321045, + "learning_rate": 1.4663066666666667e-05, + "loss": 1.3226483154296875, + "step": 530300 + }, + { + "epoch": 70.72, + "grad_norm": 0.8614656925201416, + "learning_rate": 1.46564e-05, + "loss": 1.3232708740234376, + "step": 530400 + }, + { + "epoch": 70.73333333333333, + "grad_norm": 0.9762331247329712, + "learning_rate": 1.46498e-05, + "loss": 1.3229257202148437, + "step": 530500 + }, + { + "epoch": 70.74666666666667, + "grad_norm": 0.8502513766288757, + "learning_rate": 1.4643133333333334e-05, + "loss": 1.3204423522949218, + "step": 530600 + }, + { + "epoch": 70.76, + "grad_norm": 0.9142144918441772, + "learning_rate": 1.4636466666666668e-05, + "loss": 1.322928924560547, + "step": 530700 + }, + { + "epoch": 70.77333333333333, + "grad_norm": 0.9454054236412048, + "learning_rate": 1.4629800000000002e-05, + "loss": 1.3222068786621093, + "step": 530800 + }, + { + "epoch": 70.78666666666666, + "grad_norm": 0.8787757754325867, + "learning_rate": 1.4623133333333332e-05, + "loss": 1.3248483276367187, + "step": 530900 + }, + { + "epoch": 70.8, + "grad_norm": 0.9337016940116882, + "learning_rate": 1.4616466666666668e-05, + "loss": 1.32533447265625, + "step": 531000 + }, + { + "epoch": 70.81333333333333, + "grad_norm": 0.8793279528617859, + "learning_rate": 1.4609800000000002e-05, + "loss": 1.3210690307617188, + "step": 531100 + }, + { + "epoch": 70.82666666666667, + "grad_norm": 0.9024862051010132, + "learning_rate": 1.4603133333333336e-05, + "loss": 1.3219599914550781, + "step": 531200 + }, + { + "epoch": 70.84, + "grad_norm": 0.8972877264022827, + "learning_rate": 1.4596466666666667e-05, + "loss": 1.3197425842285155, + "step": 531300 + }, + { + "epoch": 70.85333333333334, + "grad_norm": 0.909234344959259, + "learning_rate": 1.45898e-05, + "loss": 1.3218959045410157, + "step": 531400 + }, + { + "epoch": 70.86666666666666, + "grad_norm": 0.9078801870346069, + "learning_rate": 1.4583133333333334e-05, + "loss": 1.3193194580078125, + "step": 531500 + }, + { + "epoch": 70.88, + "grad_norm": 0.8946749567985535, + "learning_rate": 1.4576466666666667e-05, + "loss": 1.3258621215820312, + "step": 531600 + }, + { + "epoch": 70.89333333333333, + "grad_norm": 0.8717100620269775, + "learning_rate": 1.45698e-05, + "loss": 1.324842529296875, + "step": 531700 + }, + { + "epoch": 70.90666666666667, + "grad_norm": 0.9220655560493469, + "learning_rate": 1.4563133333333335e-05, + "loss": 1.32437255859375, + "step": 531800 + }, + { + "epoch": 70.92, + "grad_norm": 0.9325002431869507, + "learning_rate": 1.4556466666666669e-05, + "loss": 1.3232379150390625, + "step": 531900 + }, + { + "epoch": 70.93333333333334, + "grad_norm": 0.9063462615013123, + "learning_rate": 1.45498e-05, + "loss": 1.324942626953125, + "step": 532000 + }, + { + "epoch": 70.94666666666667, + "grad_norm": 0.9205593466758728, + "learning_rate": 1.4543133333333333e-05, + "loss": 1.3274571228027343, + "step": 532100 + }, + { + "epoch": 70.96, + "grad_norm": 0.887042760848999, + "learning_rate": 1.4536466666666667e-05, + "loss": 1.3272421264648437, + "step": 532200 + }, + { + "epoch": 70.97333333333333, + "grad_norm": 0.8990888595581055, + "learning_rate": 1.4529800000000001e-05, + "loss": 1.3276673889160155, + "step": 532300 + }, + { + "epoch": 70.98666666666666, + "grad_norm": 0.86974036693573, + "learning_rate": 1.4523133333333333e-05, + "loss": 1.329319610595703, + "step": 532400 + }, + { + "epoch": 71.0, + "grad_norm": 0.8930814266204834, + "learning_rate": 1.4516533333333334e-05, + "loss": 1.325640869140625, + "step": 532500 + }, + { + "epoch": 71.01333333333334, + "grad_norm": 0.8759956955909729, + "learning_rate": 1.4509866666666666e-05, + "loss": 1.2856077575683593, + "step": 532600 + }, + { + "epoch": 71.02666666666667, + "grad_norm": 0.8954336047172546, + "learning_rate": 1.45032e-05, + "loss": 1.2832220458984376, + "step": 532700 + }, + { + "epoch": 71.04, + "grad_norm": 0.8733825087547302, + "learning_rate": 1.4496533333333334e-05, + "loss": 1.28903564453125, + "step": 532800 + }, + { + "epoch": 71.05333333333333, + "grad_norm": 0.9075688123703003, + "learning_rate": 1.4489866666666668e-05, + "loss": 1.28570556640625, + "step": 532900 + }, + { + "epoch": 71.06666666666666, + "grad_norm": 0.9383872747421265, + "learning_rate": 1.4483199999999999e-05, + "loss": 1.2899357604980468, + "step": 533000 + }, + { + "epoch": 71.08, + "grad_norm": 0.9034363031387329, + "learning_rate": 1.4476533333333333e-05, + "loss": 1.286364288330078, + "step": 533100 + }, + { + "epoch": 71.09333333333333, + "grad_norm": 0.8787199854850769, + "learning_rate": 1.4469866666666668e-05, + "loss": 1.2864273071289063, + "step": 533200 + }, + { + "epoch": 71.10666666666667, + "grad_norm": 0.8827729821205139, + "learning_rate": 1.4463200000000002e-05, + "loss": 1.2890650939941406, + "step": 533300 + }, + { + "epoch": 71.12, + "grad_norm": 0.8463526964187622, + "learning_rate": 1.4456533333333333e-05, + "loss": 1.2948846435546875, + "step": 533400 + }, + { + "epoch": 71.13333333333334, + "grad_norm": 0.903069794178009, + "learning_rate": 1.4449866666666667e-05, + "loss": 1.292220458984375, + "step": 533500 + }, + { + "epoch": 71.14666666666666, + "grad_norm": 0.9482007622718811, + "learning_rate": 1.4443200000000001e-05, + "loss": 1.2937982177734375, + "step": 533600 + }, + { + "epoch": 71.16, + "grad_norm": 0.8994336724281311, + "learning_rate": 1.4436533333333335e-05, + "loss": 1.2911940002441407, + "step": 533700 + }, + { + "epoch": 71.17333333333333, + "grad_norm": 0.8807686567306519, + "learning_rate": 1.4429866666666667e-05, + "loss": 1.2945388793945312, + "step": 533800 + }, + { + "epoch": 71.18666666666667, + "grad_norm": 0.8905879259109497, + "learning_rate": 1.4423200000000001e-05, + "loss": 1.294481964111328, + "step": 533900 + }, + { + "epoch": 71.2, + "grad_norm": 0.8632029891014099, + "learning_rate": 1.4416533333333335e-05, + "loss": 1.2912913513183595, + "step": 534000 + }, + { + "epoch": 71.21333333333334, + "grad_norm": 0.9372066259384155, + "learning_rate": 1.4409866666666669e-05, + "loss": 1.2954859924316406, + "step": 534100 + }, + { + "epoch": 71.22666666666667, + "grad_norm": 0.870266854763031, + "learning_rate": 1.44032e-05, + "loss": 1.2997502136230468, + "step": 534200 + }, + { + "epoch": 71.24, + "grad_norm": 0.8637234568595886, + "learning_rate": 1.4396533333333334e-05, + "loss": 1.2924945068359375, + "step": 534300 + }, + { + "epoch": 71.25333333333333, + "grad_norm": 0.9175564050674438, + "learning_rate": 1.4389866666666668e-05, + "loss": 1.2968971252441406, + "step": 534400 + }, + { + "epoch": 71.26666666666667, + "grad_norm": 0.876574695110321, + "learning_rate": 1.43832e-05, + "loss": 1.2949362182617188, + "step": 534500 + }, + { + "epoch": 71.28, + "grad_norm": 0.9054247140884399, + "learning_rate": 1.43766e-05, + "loss": 1.300845947265625, + "step": 534600 + }, + { + "epoch": 71.29333333333334, + "grad_norm": 0.9211097359657288, + "learning_rate": 1.4369933333333335e-05, + "loss": 1.3006065368652344, + "step": 534700 + }, + { + "epoch": 71.30666666666667, + "grad_norm": 0.8372483849525452, + "learning_rate": 1.4363266666666667e-05, + "loss": 1.2985647583007813, + "step": 534800 + }, + { + "epoch": 71.32, + "grad_norm": 0.8625202775001526, + "learning_rate": 1.43566e-05, + "loss": 1.3008456420898438, + "step": 534900 + }, + { + "epoch": 71.33333333333333, + "grad_norm": 0.8992438912391663, + "learning_rate": 1.4349933333333335e-05, + "loss": 1.301300048828125, + "step": 535000 + }, + { + "epoch": 71.34666666666666, + "grad_norm": 0.8850386738777161, + "learning_rate": 1.4343266666666669e-05, + "loss": 1.301788330078125, + "step": 535100 + }, + { + "epoch": 71.36, + "grad_norm": 0.8406701683998108, + "learning_rate": 1.43366e-05, + "loss": 1.2999703979492188, + "step": 535200 + }, + { + "epoch": 71.37333333333333, + "grad_norm": 0.8646606802940369, + "learning_rate": 1.4329933333333335e-05, + "loss": 1.3001799011230468, + "step": 535300 + }, + { + "epoch": 71.38666666666667, + "grad_norm": 0.9445309638977051, + "learning_rate": 1.4323266666666669e-05, + "loss": 1.302128143310547, + "step": 535400 + }, + { + "epoch": 71.4, + "grad_norm": 0.9471325874328613, + "learning_rate": 1.43166e-05, + "loss": 1.2999264526367187, + "step": 535500 + }, + { + "epoch": 71.41333333333333, + "grad_norm": 0.8217885494232178, + "learning_rate": 1.4309933333333333e-05, + "loss": 1.3032241821289063, + "step": 535600 + }, + { + "epoch": 71.42666666666666, + "grad_norm": 0.9401599764823914, + "learning_rate": 1.4303266666666667e-05, + "loss": 1.3056138610839845, + "step": 535700 + }, + { + "epoch": 71.44, + "grad_norm": 0.9012302756309509, + "learning_rate": 1.4296600000000001e-05, + "loss": 1.3041902160644532, + "step": 535800 + }, + { + "epoch": 71.45333333333333, + "grad_norm": 0.9111303091049194, + "learning_rate": 1.4289933333333334e-05, + "loss": 1.3063230895996094, + "step": 535900 + }, + { + "epoch": 71.46666666666667, + "grad_norm": 0.8673276901245117, + "learning_rate": 1.4283266666666668e-05, + "loss": 1.3001760864257812, + "step": 536000 + }, + { + "epoch": 71.48, + "grad_norm": 0.9236326217651367, + "learning_rate": 1.4276600000000002e-05, + "loss": 1.3068719482421876, + "step": 536100 + }, + { + "epoch": 71.49333333333334, + "grad_norm": 0.9119008779525757, + "learning_rate": 1.4269933333333335e-05, + "loss": 1.3041954040527344, + "step": 536200 + }, + { + "epoch": 71.50666666666666, + "grad_norm": 0.8844600319862366, + "learning_rate": 1.4263266666666666e-05, + "loss": 1.3039337158203126, + "step": 536300 + }, + { + "epoch": 71.52, + "grad_norm": 0.9151673316955566, + "learning_rate": 1.42566e-05, + "loss": 1.3061659240722656, + "step": 536400 + }, + { + "epoch": 71.53333333333333, + "grad_norm": 0.9146116971969604, + "learning_rate": 1.4249933333333334e-05, + "loss": 1.3047665405273436, + "step": 536500 + }, + { + "epoch": 71.54666666666667, + "grad_norm": 0.909635066986084, + "learning_rate": 1.4243333333333333e-05, + "loss": 1.3087080383300782, + "step": 536600 + }, + { + "epoch": 71.56, + "grad_norm": 0.9132217168807983, + "learning_rate": 1.4236666666666667e-05, + "loss": 1.3109938049316405, + "step": 536700 + }, + { + "epoch": 71.57333333333334, + "grad_norm": 0.9197409749031067, + "learning_rate": 1.4230000000000001e-05, + "loss": 1.3079139709472656, + "step": 536800 + }, + { + "epoch": 71.58666666666667, + "grad_norm": 0.8718376755714417, + "learning_rate": 1.4223333333333333e-05, + "loss": 1.3103158569335938, + "step": 536900 + }, + { + "epoch": 71.6, + "grad_norm": 0.8622058629989624, + "learning_rate": 1.4216666666666667e-05, + "loss": 1.31333251953125, + "step": 537000 + }, + { + "epoch": 71.61333333333333, + "grad_norm": 0.8807839155197144, + "learning_rate": 1.4210000000000001e-05, + "loss": 1.3074960327148437, + "step": 537100 + }, + { + "epoch": 71.62666666666667, + "grad_norm": 0.8405951261520386, + "learning_rate": 1.4203333333333335e-05, + "loss": 1.3117068481445313, + "step": 537200 + }, + { + "epoch": 71.64, + "grad_norm": 0.882014811038971, + "learning_rate": 1.4196666666666666e-05, + "loss": 1.3139077758789062, + "step": 537300 + }, + { + "epoch": 71.65333333333334, + "grad_norm": 0.9259293675422668, + "learning_rate": 1.4190000000000001e-05, + "loss": 1.310390625, + "step": 537400 + }, + { + "epoch": 71.66666666666667, + "grad_norm": 0.9055889248847961, + "learning_rate": 1.4183333333333335e-05, + "loss": 1.3092813110351562, + "step": 537500 + }, + { + "epoch": 71.68, + "grad_norm": 0.8556098937988281, + "learning_rate": 1.417666666666667e-05, + "loss": 1.30866455078125, + "step": 537600 + }, + { + "epoch": 71.69333333333333, + "grad_norm": 0.8926159143447876, + "learning_rate": 1.417e-05, + "loss": 1.3125555419921875, + "step": 537700 + }, + { + "epoch": 71.70666666666666, + "grad_norm": 0.9067847728729248, + "learning_rate": 1.4163333333333334e-05, + "loss": 1.3115115356445313, + "step": 537800 + }, + { + "epoch": 71.72, + "grad_norm": 0.9084548950195312, + "learning_rate": 1.4156666666666668e-05, + "loss": 1.310784912109375, + "step": 537900 + }, + { + "epoch": 71.73333333333333, + "grad_norm": 0.9122881889343262, + "learning_rate": 1.415e-05, + "loss": 1.3145706176757812, + "step": 538000 + }, + { + "epoch": 71.74666666666667, + "grad_norm": 0.9275632500648499, + "learning_rate": 1.4143333333333334e-05, + "loss": 1.3158493041992188, + "step": 538100 + }, + { + "epoch": 71.76, + "grad_norm": 0.8880303502082825, + "learning_rate": 1.4136666666666668e-05, + "loss": 1.3153211975097656, + "step": 538200 + }, + { + "epoch": 71.77333333333333, + "grad_norm": 0.8939701318740845, + "learning_rate": 1.4130000000000002e-05, + "loss": 1.3133526611328126, + "step": 538300 + }, + { + "epoch": 71.78666666666666, + "grad_norm": 0.9312496781349182, + "learning_rate": 1.4123333333333333e-05, + "loss": 1.3141810607910156, + "step": 538400 + }, + { + "epoch": 71.8, + "grad_norm": 0.8720466494560242, + "learning_rate": 1.4116666666666666e-05, + "loss": 1.3163778686523437, + "step": 538500 + }, + { + "epoch": 71.81333333333333, + "grad_norm": 0.8582771420478821, + "learning_rate": 1.4110066666666669e-05, + "loss": 1.3129298400878906, + "step": 538600 + }, + { + "epoch": 71.82666666666667, + "grad_norm": 0.8980292677879333, + "learning_rate": 1.41034e-05, + "loss": 1.3134010314941407, + "step": 538700 + }, + { + "epoch": 71.84, + "grad_norm": 0.8518330454826355, + "learning_rate": 1.4096733333333333e-05, + "loss": 1.318262176513672, + "step": 538800 + }, + { + "epoch": 71.85333333333334, + "grad_norm": 0.9726895689964294, + "learning_rate": 1.4090066666666667e-05, + "loss": 1.3170086669921874, + "step": 538900 + }, + { + "epoch": 71.86666666666666, + "grad_norm": 0.9808132648468018, + "learning_rate": 1.40834e-05, + "loss": 1.3163888549804688, + "step": 539000 + }, + { + "epoch": 71.88, + "grad_norm": 0.9004959464073181, + "learning_rate": 1.4076733333333334e-05, + "loss": 1.319114227294922, + "step": 539100 + }, + { + "epoch": 71.89333333333333, + "grad_norm": 0.9053959846496582, + "learning_rate": 1.4070066666666668e-05, + "loss": 1.31746337890625, + "step": 539200 + }, + { + "epoch": 71.90666666666667, + "grad_norm": 0.9328406453132629, + "learning_rate": 1.4063400000000002e-05, + "loss": 1.3196490478515626, + "step": 539300 + }, + { + "epoch": 71.92, + "grad_norm": 0.9023466110229492, + "learning_rate": 1.4056733333333332e-05, + "loss": 1.3168644714355469, + "step": 539400 + }, + { + "epoch": 71.93333333333334, + "grad_norm": 0.9490998983383179, + "learning_rate": 1.4050066666666666e-05, + "loss": 1.3167729187011719, + "step": 539500 + }, + { + "epoch": 71.94666666666667, + "grad_norm": 0.8722997903823853, + "learning_rate": 1.4043400000000002e-05, + "loss": 1.3187103271484375, + "step": 539600 + }, + { + "epoch": 71.96, + "grad_norm": 0.8097230792045593, + "learning_rate": 1.4036733333333336e-05, + "loss": 1.3224807739257813, + "step": 539700 + }, + { + "epoch": 71.97333333333333, + "grad_norm": 0.8848879337310791, + "learning_rate": 1.4030066666666666e-05, + "loss": 1.3202239990234375, + "step": 539800 + }, + { + "epoch": 71.98666666666666, + "grad_norm": 0.9258289933204651, + "learning_rate": 1.40234e-05, + "loss": 1.316883544921875, + "step": 539900 + }, + { + "epoch": 72.0, + "grad_norm": 0.8436217904090881, + "learning_rate": 1.4016733333333334e-05, + "loss": 1.315811309814453, + "step": 540000 + }, + { + "epoch": 72.01333333333334, + "grad_norm": 0.8667635321617126, + "learning_rate": 1.4010066666666668e-05, + "loss": 1.276677932739258, + "step": 540100 + }, + { + "epoch": 72.02666666666667, + "grad_norm": 0.9259230494499207, + "learning_rate": 1.40034e-05, + "loss": 1.281935577392578, + "step": 540200 + }, + { + "epoch": 72.04, + "grad_norm": 0.8905673027038574, + "learning_rate": 1.3996733333333334e-05, + "loss": 1.279156951904297, + "step": 540300 + }, + { + "epoch": 72.05333333333333, + "grad_norm": 0.829764723777771, + "learning_rate": 1.3990066666666668e-05, + "loss": 1.2802044677734374, + "step": 540400 + }, + { + "epoch": 72.06666666666666, + "grad_norm": 0.8586835861206055, + "learning_rate": 1.3983400000000002e-05, + "loss": 1.2799781036376954, + "step": 540500 + }, + { + "epoch": 72.08, + "grad_norm": 0.9158450365066528, + "learning_rate": 1.3976800000000001e-05, + "loss": 1.2819879150390625, + "step": 540600 + }, + { + "epoch": 72.09333333333333, + "grad_norm": 0.8834480047225952, + "learning_rate": 1.3970133333333335e-05, + "loss": 1.286240234375, + "step": 540700 + }, + { + "epoch": 72.10666666666667, + "grad_norm": 0.8838781118392944, + "learning_rate": 1.3963466666666666e-05, + "loss": 1.2864297485351563, + "step": 540800 + }, + { + "epoch": 72.12, + "grad_norm": 0.8703628778457642, + "learning_rate": 1.39568e-05, + "loss": 1.2833221435546875, + "step": 540900 + }, + { + "epoch": 72.13333333333334, + "grad_norm": 0.8430854678153992, + "learning_rate": 1.3950133333333334e-05, + "loss": 1.2873780822753906, + "step": 541000 + }, + { + "epoch": 72.14666666666666, + "grad_norm": 0.8535856008529663, + "learning_rate": 1.3943466666666668e-05, + "loss": 1.285396728515625, + "step": 541100 + }, + { + "epoch": 72.16, + "grad_norm": 0.9505435228347778, + "learning_rate": 1.39368e-05, + "loss": 1.2908889770507812, + "step": 541200 + }, + { + "epoch": 72.17333333333333, + "grad_norm": 0.9199652671813965, + "learning_rate": 1.3930133333333334e-05, + "loss": 1.2874760437011719, + "step": 541300 + }, + { + "epoch": 72.18666666666667, + "grad_norm": 0.9367565512657166, + "learning_rate": 1.3923466666666668e-05, + "loss": 1.2900453186035157, + "step": 541400 + }, + { + "epoch": 72.2, + "grad_norm": 0.8932370543479919, + "learning_rate": 1.3916799999999999e-05, + "loss": 1.290118408203125, + "step": 541500 + }, + { + "epoch": 72.21333333333334, + "grad_norm": 0.8846625089645386, + "learning_rate": 1.3910133333333333e-05, + "loss": 1.289880828857422, + "step": 541600 + }, + { + "epoch": 72.22666666666667, + "grad_norm": 0.8700215816497803, + "learning_rate": 1.3903466666666668e-05, + "loss": 1.2882028198242188, + "step": 541700 + }, + { + "epoch": 72.24, + "grad_norm": 0.8952950239181519, + "learning_rate": 1.3896800000000002e-05, + "loss": 1.2952290344238282, + "step": 541800 + }, + { + "epoch": 72.25333333333333, + "grad_norm": 0.8888140320777893, + "learning_rate": 1.3890133333333333e-05, + "loss": 1.2887269592285155, + "step": 541900 + }, + { + "epoch": 72.26666666666667, + "grad_norm": 0.873499870300293, + "learning_rate": 1.3883466666666667e-05, + "loss": 1.2873663330078124, + "step": 542000 + }, + { + "epoch": 72.28, + "grad_norm": 0.8604170083999634, + "learning_rate": 1.38768e-05, + "loss": 1.2889486694335937, + "step": 542100 + }, + { + "epoch": 72.29333333333334, + "grad_norm": 0.8493339419364929, + "learning_rate": 1.3870133333333335e-05, + "loss": 1.2932403564453125, + "step": 542200 + }, + { + "epoch": 72.30666666666667, + "grad_norm": 0.8944411873817444, + "learning_rate": 1.3863466666666667e-05, + "loss": 1.298619384765625, + "step": 542300 + }, + { + "epoch": 72.32, + "grad_norm": 0.9077425003051758, + "learning_rate": 1.3856800000000001e-05, + "loss": 1.291400146484375, + "step": 542400 + }, + { + "epoch": 72.33333333333333, + "grad_norm": 0.9395051598548889, + "learning_rate": 1.3850133333333335e-05, + "loss": 1.2952896118164063, + "step": 542500 + }, + { + "epoch": 72.34666666666666, + "grad_norm": 0.9028144478797913, + "learning_rate": 1.3843533333333334e-05, + "loss": 1.290705108642578, + "step": 542600 + }, + { + "epoch": 72.36, + "grad_norm": 0.9369432330131531, + "learning_rate": 1.3836866666666668e-05, + "loss": 1.2938015747070313, + "step": 542700 + }, + { + "epoch": 72.37333333333333, + "grad_norm": 0.8780479431152344, + "learning_rate": 1.3830200000000002e-05, + "loss": 1.296564483642578, + "step": 542800 + }, + { + "epoch": 72.38666666666667, + "grad_norm": 0.9035230875015259, + "learning_rate": 1.3823533333333332e-05, + "loss": 1.3008587646484375, + "step": 542900 + }, + { + "epoch": 72.4, + "grad_norm": 0.8920375108718872, + "learning_rate": 1.3816866666666666e-05, + "loss": 1.2913095092773437, + "step": 543000 + }, + { + "epoch": 72.41333333333333, + "grad_norm": 0.8965349793434143, + "learning_rate": 1.38102e-05, + "loss": 1.2953553771972657, + "step": 543100 + }, + { + "epoch": 72.42666666666666, + "grad_norm": 0.8993667364120483, + "learning_rate": 1.3803533333333334e-05, + "loss": 1.300503692626953, + "step": 543200 + }, + { + "epoch": 72.44, + "grad_norm": 0.8752589821815491, + "learning_rate": 1.3796866666666667e-05, + "loss": 1.2973211669921876, + "step": 543300 + }, + { + "epoch": 72.45333333333333, + "grad_norm": 0.9074227809906006, + "learning_rate": 1.37902e-05, + "loss": 1.2994436645507812, + "step": 543400 + }, + { + "epoch": 72.46666666666667, + "grad_norm": 0.8692722320556641, + "learning_rate": 1.3783533333333335e-05, + "loss": 1.3030880737304686, + "step": 543500 + }, + { + "epoch": 72.48, + "grad_norm": 0.9283269047737122, + "learning_rate": 1.3776866666666668e-05, + "loss": 1.2986073303222656, + "step": 543600 + }, + { + "epoch": 72.49333333333334, + "grad_norm": 0.8463515639305115, + "learning_rate": 1.3770199999999999e-05, + "loss": 1.3008390808105468, + "step": 543700 + }, + { + "epoch": 72.50666666666666, + "grad_norm": 0.9368971586227417, + "learning_rate": 1.3763533333333333e-05, + "loss": 1.3003103637695312, + "step": 543800 + }, + { + "epoch": 72.52, + "grad_norm": 0.8514252305030823, + "learning_rate": 1.3756866666666669e-05, + "loss": 1.2996723937988282, + "step": 543900 + }, + { + "epoch": 72.53333333333333, + "grad_norm": 0.9113193154335022, + "learning_rate": 1.3750200000000003e-05, + "loss": 1.3013104248046874, + "step": 544000 + }, + { + "epoch": 72.54666666666667, + "grad_norm": 0.8973194360733032, + "learning_rate": 1.3743533333333333e-05, + "loss": 1.303866424560547, + "step": 544100 + }, + { + "epoch": 72.56, + "grad_norm": 0.9292814135551453, + "learning_rate": 1.3736866666666667e-05, + "loss": 1.3007473754882812, + "step": 544200 + }, + { + "epoch": 72.57333333333334, + "grad_norm": 0.8650021553039551, + "learning_rate": 1.3730200000000001e-05, + "loss": 1.3053372192382813, + "step": 544300 + }, + { + "epoch": 72.58666666666667, + "grad_norm": 0.9136223196983337, + "learning_rate": 1.3723533333333333e-05, + "loss": 1.305074462890625, + "step": 544400 + }, + { + "epoch": 72.6, + "grad_norm": 0.899770975112915, + "learning_rate": 1.3716866666666667e-05, + "loss": 1.304183807373047, + "step": 544500 + }, + { + "epoch": 72.61333333333333, + "grad_norm": 0.9051358699798584, + "learning_rate": 1.3710200000000001e-05, + "loss": 1.2999253845214844, + "step": 544600 + }, + { + "epoch": 72.62666666666667, + "grad_norm": 0.8969173431396484, + "learning_rate": 1.37036e-05, + "loss": 1.301925048828125, + "step": 544700 + }, + { + "epoch": 72.64, + "grad_norm": 0.8683328032493591, + "learning_rate": 1.3696933333333334e-05, + "loss": 1.3041268920898437, + "step": 544800 + }, + { + "epoch": 72.65333333333334, + "grad_norm": 0.9285234808921814, + "learning_rate": 1.3690266666666668e-05, + "loss": 1.3035903930664063, + "step": 544900 + }, + { + "epoch": 72.66666666666667, + "grad_norm": 0.9057257175445557, + "learning_rate": 1.3683600000000002e-05, + "loss": 1.3026934814453126, + "step": 545000 + }, + { + "epoch": 72.68, + "grad_norm": 0.9157271385192871, + "learning_rate": 1.3676933333333333e-05, + "loss": 1.303736114501953, + "step": 545100 + }, + { + "epoch": 72.69333333333333, + "grad_norm": 0.8953295350074768, + "learning_rate": 1.3670266666666667e-05, + "loss": 1.3063804626464843, + "step": 545200 + }, + { + "epoch": 72.70666666666666, + "grad_norm": 0.9013524651527405, + "learning_rate": 1.36636e-05, + "loss": 1.3081599426269532, + "step": 545300 + }, + { + "epoch": 72.72, + "grad_norm": 0.8747628331184387, + "learning_rate": 1.3656933333333333e-05, + "loss": 1.3081907653808593, + "step": 545400 + }, + { + "epoch": 72.73333333333333, + "grad_norm": 0.8898458480834961, + "learning_rate": 1.3650266666666667e-05, + "loss": 1.308251953125, + "step": 545500 + }, + { + "epoch": 72.74666666666667, + "grad_norm": 0.9078856110572815, + "learning_rate": 1.3643600000000001e-05, + "loss": 1.3066876220703125, + "step": 545600 + }, + { + "epoch": 72.76, + "grad_norm": 0.8842049241065979, + "learning_rate": 1.3636933333333335e-05, + "loss": 1.3049169921875, + "step": 545700 + }, + { + "epoch": 72.77333333333333, + "grad_norm": 0.9232098460197449, + "learning_rate": 1.3630266666666666e-05, + "loss": 1.3058796691894532, + "step": 545800 + }, + { + "epoch": 72.78666666666666, + "grad_norm": 0.9262491464614868, + "learning_rate": 1.36236e-05, + "loss": 1.3056631469726563, + "step": 545900 + }, + { + "epoch": 72.8, + "grad_norm": 0.9117762446403503, + "learning_rate": 1.3616933333333335e-05, + "loss": 1.3098313903808594, + "step": 546000 + }, + { + "epoch": 72.81333333333333, + "grad_norm": 0.8940130472183228, + "learning_rate": 1.3610266666666669e-05, + "loss": 1.3110063171386719, + "step": 546100 + }, + { + "epoch": 72.82666666666667, + "grad_norm": 0.8723244071006775, + "learning_rate": 1.36036e-05, + "loss": 1.3087918090820312, + "step": 546200 + }, + { + "epoch": 72.84, + "grad_norm": 0.8790159821510315, + "learning_rate": 1.3596933333333334e-05, + "loss": 1.3090879821777344, + "step": 546300 + }, + { + "epoch": 72.85333333333334, + "grad_norm": 0.9324440956115723, + "learning_rate": 1.3590266666666668e-05, + "loss": 1.3065005493164064, + "step": 546400 + }, + { + "epoch": 72.86666666666666, + "grad_norm": 0.9022642374038696, + "learning_rate": 1.3583600000000002e-05, + "loss": 1.308943634033203, + "step": 546500 + }, + { + "epoch": 72.88, + "grad_norm": 0.8869839906692505, + "learning_rate": 1.3576933333333334e-05, + "loss": 1.3140464782714845, + "step": 546600 + }, + { + "epoch": 72.89333333333333, + "grad_norm": 0.9020800590515137, + "learning_rate": 1.3570333333333335e-05, + "loss": 1.3082620239257812, + "step": 546700 + }, + { + "epoch": 72.90666666666667, + "grad_norm": 0.8998864889144897, + "learning_rate": 1.3563666666666667e-05, + "loss": 1.3143278503417968, + "step": 546800 + }, + { + "epoch": 72.92, + "grad_norm": 0.9254443645477295, + "learning_rate": 1.3557e-05, + "loss": 1.3102537536621093, + "step": 546900 + }, + { + "epoch": 72.93333333333334, + "grad_norm": 0.8916531205177307, + "learning_rate": 1.3550333333333335e-05, + "loss": 1.3090887451171875, + "step": 547000 + }, + { + "epoch": 72.94666666666667, + "grad_norm": 0.8924204707145691, + "learning_rate": 1.3543666666666669e-05, + "loss": 1.3153028869628907, + "step": 547100 + }, + { + "epoch": 72.96, + "grad_norm": 0.8734211921691895, + "learning_rate": 1.3537e-05, + "loss": 1.3160145568847657, + "step": 547200 + }, + { + "epoch": 72.97333333333333, + "grad_norm": 0.8596046566963196, + "learning_rate": 1.3530333333333333e-05, + "loss": 1.3085627746582031, + "step": 547300 + }, + { + "epoch": 72.98666666666666, + "grad_norm": 0.8837646842002869, + "learning_rate": 1.3523666666666667e-05, + "loss": 1.3099195861816406, + "step": 547400 + }, + { + "epoch": 73.0, + "grad_norm": 0.9559072852134705, + "learning_rate": 1.3517000000000001e-05, + "loss": 1.3160740661621093, + "step": 547500 + }, + { + "epoch": 73.01333333333334, + "grad_norm": 0.9471146464347839, + "learning_rate": 1.3510333333333333e-05, + "loss": 1.2761563110351561, + "step": 547600 + }, + { + "epoch": 73.02666666666667, + "grad_norm": 0.8618519306182861, + "learning_rate": 1.3503666666666667e-05, + "loss": 1.2729344940185547, + "step": 547700 + }, + { + "epoch": 73.04, + "grad_norm": 0.8488065600395203, + "learning_rate": 1.3497000000000001e-05, + "loss": 1.273756561279297, + "step": 547800 + }, + { + "epoch": 73.05333333333333, + "grad_norm": 0.8331854343414307, + "learning_rate": 1.3490333333333332e-05, + "loss": 1.277390899658203, + "step": 547900 + }, + { + "epoch": 73.06666666666666, + "grad_norm": 0.8586211204528809, + "learning_rate": 1.3483666666666666e-05, + "loss": 1.276772689819336, + "step": 548000 + }, + { + "epoch": 73.08, + "grad_norm": 0.8098661303520203, + "learning_rate": 1.3477000000000002e-05, + "loss": 1.2797915649414062, + "step": 548100 + }, + { + "epoch": 73.09333333333333, + "grad_norm": 0.953315019607544, + "learning_rate": 1.3470333333333336e-05, + "loss": 1.276962432861328, + "step": 548200 + }, + { + "epoch": 73.10666666666667, + "grad_norm": 0.8598954677581787, + "learning_rate": 1.3463666666666666e-05, + "loss": 1.2770060729980468, + "step": 548300 + }, + { + "epoch": 73.12, + "grad_norm": 0.8851730227470398, + "learning_rate": 1.3457e-05, + "loss": 1.2772944641113282, + "step": 548400 + }, + { + "epoch": 73.13333333333334, + "grad_norm": 0.8884763121604919, + "learning_rate": 1.3450333333333334e-05, + "loss": 1.2774359130859374, + "step": 548500 + }, + { + "epoch": 73.14666666666666, + "grad_norm": 0.9043313264846802, + "learning_rate": 1.3443666666666668e-05, + "loss": 1.2833470153808593, + "step": 548600 + }, + { + "epoch": 73.16, + "grad_norm": 0.9404314160346985, + "learning_rate": 1.3437066666666667e-05, + "loss": 1.2804563903808595, + "step": 548700 + }, + { + "epoch": 73.17333333333333, + "grad_norm": 0.8437866568565369, + "learning_rate": 1.3430400000000001e-05, + "loss": 1.2854263305664062, + "step": 548800 + }, + { + "epoch": 73.18666666666667, + "grad_norm": 0.927335798740387, + "learning_rate": 1.3423733333333333e-05, + "loss": 1.2844186401367188, + "step": 548900 + }, + { + "epoch": 73.2, + "grad_norm": 0.8449512124061584, + "learning_rate": 1.3417066666666667e-05, + "loss": 1.2796637725830078, + "step": 549000 + }, + { + "epoch": 73.21333333333334, + "grad_norm": 0.8738372325897217, + "learning_rate": 1.3410400000000001e-05, + "loss": 1.2857395935058593, + "step": 549100 + }, + { + "epoch": 73.22666666666667, + "grad_norm": 0.8766629695892334, + "learning_rate": 1.3403733333333335e-05, + "loss": 1.2832762145996093, + "step": 549200 + }, + { + "epoch": 73.24, + "grad_norm": 0.8308307528495789, + "learning_rate": 1.3397066666666666e-05, + "loss": 1.2830810546875, + "step": 549300 + }, + { + "epoch": 73.25333333333333, + "grad_norm": 0.9020586013793945, + "learning_rate": 1.33904e-05, + "loss": 1.2846853637695312, + "step": 549400 + }, + { + "epoch": 73.26666666666667, + "grad_norm": 0.8639815449714661, + "learning_rate": 1.3383733333333334e-05, + "loss": 1.287603302001953, + "step": 549500 + }, + { + "epoch": 73.28, + "grad_norm": 0.8645631670951843, + "learning_rate": 1.3377066666666668e-05, + "loss": 1.287257537841797, + "step": 549600 + }, + { + "epoch": 73.29333333333334, + "grad_norm": 0.8956714868545532, + "learning_rate": 1.33704e-05, + "loss": 1.2851387023925782, + "step": 549700 + }, + { + "epoch": 73.30666666666667, + "grad_norm": 0.9055325984954834, + "learning_rate": 1.3363733333333334e-05, + "loss": 1.2879544067382813, + "step": 549800 + }, + { + "epoch": 73.32, + "grad_norm": 0.8861287236213684, + "learning_rate": 1.3357066666666668e-05, + "loss": 1.2887428283691407, + "step": 549900 + }, + { + "epoch": 73.33333333333333, + "grad_norm": 0.9045313000679016, + "learning_rate": 1.3350400000000002e-05, + "loss": 1.2884335327148437, + "step": 550000 + }, + { + "epoch": 73.34666666666666, + "grad_norm": 0.8875342011451721, + "learning_rate": 1.3343733333333332e-05, + "loss": 1.2835194396972656, + "step": 550100 + }, + { + "epoch": 73.36, + "grad_norm": 0.8842615485191345, + "learning_rate": 1.3337066666666666e-05, + "loss": 1.2884930419921874, + "step": 550200 + }, + { + "epoch": 73.37333333333333, + "grad_norm": 0.9177148342132568, + "learning_rate": 1.3330400000000002e-05, + "loss": 1.290846710205078, + "step": 550300 + }, + { + "epoch": 73.38666666666667, + "grad_norm": 0.913221538066864, + "learning_rate": 1.3323733333333336e-05, + "loss": 1.2883349609375, + "step": 550400 + }, + { + "epoch": 73.4, + "grad_norm": 0.9081894159317017, + "learning_rate": 1.3317066666666667e-05, + "loss": 1.2872616577148437, + "step": 550500 + }, + { + "epoch": 73.41333333333333, + "grad_norm": 0.8833068609237671, + "learning_rate": 1.33104e-05, + "loss": 1.2878277587890625, + "step": 550600 + }, + { + "epoch": 73.42666666666666, + "grad_norm": 0.8581375479698181, + "learning_rate": 1.33038e-05, + "loss": 1.2895700073242187, + "step": 550700 + }, + { + "epoch": 73.44, + "grad_norm": 0.9249962568283081, + "learning_rate": 1.3297133333333334e-05, + "loss": 1.2897068786621093, + "step": 550800 + }, + { + "epoch": 73.45333333333333, + "grad_norm": 0.9126532077789307, + "learning_rate": 1.3290466666666668e-05, + "loss": 1.2911618041992188, + "step": 550900 + }, + { + "epoch": 73.46666666666667, + "grad_norm": 0.91612708568573, + "learning_rate": 1.3283800000000001e-05, + "loss": 1.2918502807617187, + "step": 551000 + }, + { + "epoch": 73.48, + "grad_norm": 0.8593502044677734, + "learning_rate": 1.3277133333333334e-05, + "loss": 1.292982177734375, + "step": 551100 + }, + { + "epoch": 73.49333333333334, + "grad_norm": 0.9457326531410217, + "learning_rate": 1.3270466666666668e-05, + "loss": 1.2906185913085937, + "step": 551200 + }, + { + "epoch": 73.50666666666666, + "grad_norm": 0.8378877639770508, + "learning_rate": 1.3263800000000002e-05, + "loss": 1.29209228515625, + "step": 551300 + }, + { + "epoch": 73.52, + "grad_norm": 0.9088276624679565, + "learning_rate": 1.3257133333333336e-05, + "loss": 1.2912477111816407, + "step": 551400 + }, + { + "epoch": 73.53333333333333, + "grad_norm": 0.9294626712799072, + "learning_rate": 1.3250466666666666e-05, + "loss": 1.2885626220703126, + "step": 551500 + }, + { + "epoch": 73.54666666666667, + "grad_norm": 0.876581072807312, + "learning_rate": 1.32438e-05, + "loss": 1.2994056701660157, + "step": 551600 + }, + { + "epoch": 73.56, + "grad_norm": 0.9063646793365479, + "learning_rate": 1.3237133333333334e-05, + "loss": 1.2967149353027343, + "step": 551700 + }, + { + "epoch": 73.57333333333334, + "grad_norm": 0.8408426642417908, + "learning_rate": 1.3230466666666666e-05, + "loss": 1.2977626037597656, + "step": 551800 + }, + { + "epoch": 73.58666666666667, + "grad_norm": 0.9056010246276855, + "learning_rate": 1.32238e-05, + "loss": 1.2985139465332032, + "step": 551900 + }, + { + "epoch": 73.6, + "grad_norm": 0.8862862586975098, + "learning_rate": 1.3217133333333334e-05, + "loss": 1.2940017700195312, + "step": 552000 + }, + { + "epoch": 73.61333333333333, + "grad_norm": 0.8660182356834412, + "learning_rate": 1.3210466666666668e-05, + "loss": 1.2961624145507813, + "step": 552100 + }, + { + "epoch": 73.62666666666667, + "grad_norm": 0.8667203187942505, + "learning_rate": 1.3203799999999999e-05, + "loss": 1.2973252868652343, + "step": 552200 + }, + { + "epoch": 73.64, + "grad_norm": 0.8764863014221191, + "learning_rate": 1.3197133333333333e-05, + "loss": 1.3011990356445313, + "step": 552300 + }, + { + "epoch": 73.65333333333334, + "grad_norm": 0.854836106300354, + "learning_rate": 1.3190466666666668e-05, + "loss": 1.301475830078125, + "step": 552400 + }, + { + "epoch": 73.66666666666667, + "grad_norm": 0.8675264716148376, + "learning_rate": 1.3183800000000002e-05, + "loss": 1.2946461486816405, + "step": 552500 + }, + { + "epoch": 73.68, + "grad_norm": 0.8799411654472351, + "learning_rate": 1.3177133333333333e-05, + "loss": 1.2978501892089844, + "step": 552600 + }, + { + "epoch": 73.69333333333333, + "grad_norm": 0.8406023979187012, + "learning_rate": 1.3170466666666667e-05, + "loss": 1.2984336853027343, + "step": 552700 + }, + { + "epoch": 73.70666666666666, + "grad_norm": 0.8912414908409119, + "learning_rate": 1.3163866666666666e-05, + "loss": 1.3007151794433593, + "step": 552800 + }, + { + "epoch": 73.72, + "grad_norm": 0.8535100221633911, + "learning_rate": 1.31572e-05, + "loss": 1.2961094665527344, + "step": 552900 + }, + { + "epoch": 73.73333333333333, + "grad_norm": 0.932938814163208, + "learning_rate": 1.3150533333333334e-05, + "loss": 1.2960186767578126, + "step": 553000 + }, + { + "epoch": 73.74666666666667, + "grad_norm": 0.9171094298362732, + "learning_rate": 1.3143866666666668e-05, + "loss": 1.3013040161132812, + "step": 553100 + }, + { + "epoch": 73.76, + "grad_norm": 0.923318088054657, + "learning_rate": 1.31372e-05, + "loss": 1.300777130126953, + "step": 553200 + }, + { + "epoch": 73.77333333333333, + "grad_norm": 0.9453115463256836, + "learning_rate": 1.3130533333333334e-05, + "loss": 1.3012001037597656, + "step": 553300 + }, + { + "epoch": 73.78666666666666, + "grad_norm": 0.9598022699356079, + "learning_rate": 1.3123866666666668e-05, + "loss": 1.3000535583496093, + "step": 553400 + }, + { + "epoch": 73.8, + "grad_norm": 0.8746120929718018, + "learning_rate": 1.3117200000000002e-05, + "loss": 1.299759979248047, + "step": 553500 + }, + { + "epoch": 73.81333333333333, + "grad_norm": 0.8909258842468262, + "learning_rate": 1.3110533333333333e-05, + "loss": 1.3039195251464843, + "step": 553600 + }, + { + "epoch": 73.82666666666667, + "grad_norm": 0.899439811706543, + "learning_rate": 1.3103866666666667e-05, + "loss": 1.3032107543945313, + "step": 553700 + }, + { + "epoch": 73.84, + "grad_norm": 0.9339725375175476, + "learning_rate": 1.30972e-05, + "loss": 1.2999578857421874, + "step": 553800 + }, + { + "epoch": 73.85333333333334, + "grad_norm": 0.8592462539672852, + "learning_rate": 1.3090533333333335e-05, + "loss": 1.3077874755859376, + "step": 553900 + }, + { + "epoch": 73.86666666666666, + "grad_norm": 0.8757080435752869, + "learning_rate": 1.3083866666666667e-05, + "loss": 1.3068240356445313, + "step": 554000 + }, + { + "epoch": 73.88, + "grad_norm": 0.893817663192749, + "learning_rate": 1.30772e-05, + "loss": 1.3072088623046876, + "step": 554100 + }, + { + "epoch": 73.89333333333333, + "grad_norm": 0.8930887579917908, + "learning_rate": 1.3070533333333335e-05, + "loss": 1.303759307861328, + "step": 554200 + }, + { + "epoch": 73.90666666666667, + "grad_norm": 0.9105483293533325, + "learning_rate": 1.3063866666666665e-05, + "loss": 1.3057803344726562, + "step": 554300 + }, + { + "epoch": 73.92, + "grad_norm": 0.9180082678794861, + "learning_rate": 1.30572e-05, + "loss": 1.3057562255859374, + "step": 554400 + }, + { + "epoch": 73.93333333333334, + "grad_norm": 0.900630533695221, + "learning_rate": 1.3050533333333333e-05, + "loss": 1.3036831665039061, + "step": 554500 + }, + { + "epoch": 73.94666666666667, + "grad_norm": 0.9302444458007812, + "learning_rate": 1.3043866666666669e-05, + "loss": 1.3099397277832032, + "step": 554600 + }, + { + "epoch": 73.96, + "grad_norm": 0.9064813256263733, + "learning_rate": 1.30372e-05, + "loss": 1.3054379272460936, + "step": 554700 + }, + { + "epoch": 73.97333333333333, + "grad_norm": 0.8835692405700684, + "learning_rate": 1.3030600000000002e-05, + "loss": 1.3077413940429687, + "step": 554800 + }, + { + "epoch": 73.98666666666666, + "grad_norm": 0.8917888402938843, + "learning_rate": 1.3023933333333336e-05, + "loss": 1.3091519165039063, + "step": 554900 + }, + { + "epoch": 74.0, + "grad_norm": 0.8641742467880249, + "learning_rate": 1.3017266666666666e-05, + "loss": 1.3092634582519531, + "step": 555000 + }, + { + "epoch": 74.01333333333334, + "grad_norm": 0.944517970085144, + "learning_rate": 1.30106e-05, + "loss": 1.2658570861816407, + "step": 555100 + }, + { + "epoch": 74.02666666666667, + "grad_norm": 0.8598766326904297, + "learning_rate": 1.3003933333333334e-05, + "loss": 1.2683529663085937, + "step": 555200 + }, + { + "epoch": 74.04, + "grad_norm": 0.860201895236969, + "learning_rate": 1.2997266666666667e-05, + "loss": 1.2708037567138672, + "step": 555300 + }, + { + "epoch": 74.05333333333333, + "grad_norm": 0.8917511105537415, + "learning_rate": 1.29906e-05, + "loss": 1.271436004638672, + "step": 555400 + }, + { + "epoch": 74.06666666666666, + "grad_norm": 0.939109742641449, + "learning_rate": 1.2983933333333335e-05, + "loss": 1.2716947937011718, + "step": 555500 + }, + { + "epoch": 74.08, + "grad_norm": 0.8807459473609924, + "learning_rate": 1.2977266666666669e-05, + "loss": 1.2712261199951171, + "step": 555600 + }, + { + "epoch": 74.09333333333333, + "grad_norm": 0.8981074094772339, + "learning_rate": 1.2970599999999999e-05, + "loss": 1.2726960754394532, + "step": 555700 + }, + { + "epoch": 74.10666666666667, + "grad_norm": 0.920891523361206, + "learning_rate": 1.2963933333333333e-05, + "loss": 1.271525650024414, + "step": 555800 + }, + { + "epoch": 74.12, + "grad_norm": 0.8784647583961487, + "learning_rate": 1.2957266666666667e-05, + "loss": 1.2761204528808594, + "step": 555900 + }, + { + "epoch": 74.13333333333334, + "grad_norm": 0.9443046450614929, + "learning_rate": 1.2950600000000001e-05, + "loss": 1.2812734985351562, + "step": 556000 + }, + { + "epoch": 74.14666666666666, + "grad_norm": 0.9324434995651245, + "learning_rate": 1.2943933333333333e-05, + "loss": 1.2774497985839843, + "step": 556100 + }, + { + "epoch": 74.16, + "grad_norm": 0.9151404500007629, + "learning_rate": 1.2937266666666667e-05, + "loss": 1.2794931030273438, + "step": 556200 + }, + { + "epoch": 74.17333333333333, + "grad_norm": 0.9019087553024292, + "learning_rate": 1.2930600000000001e-05, + "loss": 1.272760467529297, + "step": 556300 + }, + { + "epoch": 74.18666666666667, + "grad_norm": 0.9008191823959351, + "learning_rate": 1.2923933333333335e-05, + "loss": 1.2791709899902344, + "step": 556400 + }, + { + "epoch": 74.2, + "grad_norm": 0.9243355393409729, + "learning_rate": 1.2917266666666666e-05, + "loss": 1.2742820739746095, + "step": 556500 + }, + { + "epoch": 74.21333333333334, + "grad_norm": 0.8960252404212952, + "learning_rate": 1.29106e-05, + "loss": 1.2767957305908204, + "step": 556600 + }, + { + "epoch": 74.22666666666667, + "grad_norm": 0.8784938454627991, + "learning_rate": 1.2903933333333335e-05, + "loss": 1.2783699798583985, + "step": 556700 + }, + { + "epoch": 74.24, + "grad_norm": 0.9372243285179138, + "learning_rate": 1.2897333333333333e-05, + "loss": 1.2807513427734376, + "step": 556800 + }, + { + "epoch": 74.25333333333333, + "grad_norm": 0.8725894093513489, + "learning_rate": 1.2890666666666668e-05, + "loss": 1.280004119873047, + "step": 556900 + }, + { + "epoch": 74.26666666666667, + "grad_norm": 0.8671815991401672, + "learning_rate": 1.2884000000000002e-05, + "loss": 1.276363296508789, + "step": 557000 + }, + { + "epoch": 74.28, + "grad_norm": 0.8304952383041382, + "learning_rate": 1.2877333333333333e-05, + "loss": 1.2792926025390625, + "step": 557100 + }, + { + "epoch": 74.29333333333334, + "grad_norm": 0.8606889247894287, + "learning_rate": 1.2870666666666667e-05, + "loss": 1.2823660278320312, + "step": 557200 + }, + { + "epoch": 74.30666666666667, + "grad_norm": 0.8777315020561218, + "learning_rate": 1.2864e-05, + "loss": 1.2785820007324218, + "step": 557300 + }, + { + "epoch": 74.32, + "grad_norm": 0.8733790516853333, + "learning_rate": 1.2857333333333335e-05, + "loss": 1.281063232421875, + "step": 557400 + }, + { + "epoch": 74.33333333333333, + "grad_norm": 0.8477702140808105, + "learning_rate": 1.2850666666666667e-05, + "loss": 1.2849333190917969, + "step": 557500 + }, + { + "epoch": 74.34666666666666, + "grad_norm": 0.9036483764648438, + "learning_rate": 1.2844000000000001e-05, + "loss": 1.2832469177246093, + "step": 557600 + }, + { + "epoch": 74.36, + "grad_norm": 0.8794974684715271, + "learning_rate": 1.2837333333333335e-05, + "loss": 1.2776331329345703, + "step": 557700 + }, + { + "epoch": 74.37333333333333, + "grad_norm": 0.9200766682624817, + "learning_rate": 1.2830666666666669e-05, + "loss": 1.2813546752929688, + "step": 557800 + }, + { + "epoch": 74.38666666666667, + "grad_norm": 0.8847201466560364, + "learning_rate": 1.2824e-05, + "loss": 1.2843760681152343, + "step": 557900 + }, + { + "epoch": 74.4, + "grad_norm": 0.880175769329071, + "learning_rate": 1.2817333333333333e-05, + "loss": 1.287875213623047, + "step": 558000 + }, + { + "epoch": 74.41333333333333, + "grad_norm": 0.8858283162117004, + "learning_rate": 1.2810666666666667e-05, + "loss": 1.2829354858398438, + "step": 558100 + }, + { + "epoch": 74.42666666666666, + "grad_norm": 0.8578990697860718, + "learning_rate": 1.2804e-05, + "loss": 1.2892631530761718, + "step": 558200 + }, + { + "epoch": 74.44, + "grad_norm": 0.9900735020637512, + "learning_rate": 1.2797333333333334e-05, + "loss": 1.2847103881835937, + "step": 558300 + }, + { + "epoch": 74.45333333333333, + "grad_norm": 0.8830659985542297, + "learning_rate": 1.2790666666666668e-05, + "loss": 1.2800477600097657, + "step": 558400 + }, + { + "epoch": 74.46666666666667, + "grad_norm": 0.8871668577194214, + "learning_rate": 1.2784000000000002e-05, + "loss": 1.284095001220703, + "step": 558500 + }, + { + "epoch": 74.48, + "grad_norm": 0.8544827103614807, + "learning_rate": 1.2777333333333332e-05, + "loss": 1.2865316772460937, + "step": 558600 + }, + { + "epoch": 74.49333333333334, + "grad_norm": 0.900020956993103, + "learning_rate": 1.2770666666666666e-05, + "loss": 1.2850057983398437, + "step": 558700 + }, + { + "epoch": 74.50666666666666, + "grad_norm": 0.867059051990509, + "learning_rate": 1.2764066666666669e-05, + "loss": 1.2903533935546876, + "step": 558800 + }, + { + "epoch": 74.52, + "grad_norm": 0.8870203495025635, + "learning_rate": 1.27574e-05, + "loss": 1.287705535888672, + "step": 558900 + }, + { + "epoch": 74.53333333333333, + "grad_norm": 0.9314866662025452, + "learning_rate": 1.2750733333333333e-05, + "loss": 1.28730224609375, + "step": 559000 + }, + { + "epoch": 74.54666666666667, + "grad_norm": 0.8612186908721924, + "learning_rate": 1.2744066666666669e-05, + "loss": 1.289891815185547, + "step": 559100 + }, + { + "epoch": 74.56, + "grad_norm": 0.899004340171814, + "learning_rate": 1.27374e-05, + "loss": 1.2894015502929688, + "step": 559200 + }, + { + "epoch": 74.57333333333334, + "grad_norm": 0.8479779958724976, + "learning_rate": 1.2730733333333333e-05, + "loss": 1.2877230834960938, + "step": 559300 + }, + { + "epoch": 74.58666666666667, + "grad_norm": 0.8701773285865784, + "learning_rate": 1.2724066666666667e-05, + "loss": 1.2875765991210937, + "step": 559400 + }, + { + "epoch": 74.6, + "grad_norm": 0.9275473356246948, + "learning_rate": 1.2717400000000001e-05, + "loss": 1.2902964782714843, + "step": 559500 + }, + { + "epoch": 74.61333333333333, + "grad_norm": 0.8632954359054565, + "learning_rate": 1.2710733333333334e-05, + "loss": 1.292191162109375, + "step": 559600 + }, + { + "epoch": 74.62666666666667, + "grad_norm": 0.9471471905708313, + "learning_rate": 1.2704066666666667e-05, + "loss": 1.2906411743164063, + "step": 559700 + }, + { + "epoch": 74.64, + "grad_norm": 0.949734091758728, + "learning_rate": 1.2697400000000001e-05, + "loss": 1.2944467163085938, + "step": 559800 + }, + { + "epoch": 74.65333333333334, + "grad_norm": 0.8871404528617859, + "learning_rate": 1.2690733333333335e-05, + "loss": 1.2892448425292968, + "step": 559900 + }, + { + "epoch": 74.66666666666667, + "grad_norm": 0.8793107271194458, + "learning_rate": 1.2684066666666666e-05, + "loss": 1.2894142150878907, + "step": 560000 + }, + { + "epoch": 74.68, + "grad_norm": 0.9287523031234741, + "learning_rate": 1.26774e-05, + "loss": 1.2898847961425781, + "step": 560100 + }, + { + "epoch": 74.69333333333333, + "grad_norm": 0.9169420599937439, + "learning_rate": 1.2670733333333334e-05, + "loss": 1.2945254516601563, + "step": 560200 + }, + { + "epoch": 74.70666666666666, + "grad_norm": 0.9196577668190002, + "learning_rate": 1.2664066666666668e-05, + "loss": 1.2968296813964844, + "step": 560300 + }, + { + "epoch": 74.72, + "grad_norm": 0.8801164031028748, + "learning_rate": 1.26574e-05, + "loss": 1.2895684814453126, + "step": 560400 + }, + { + "epoch": 74.73333333333333, + "grad_norm": 0.9066420793533325, + "learning_rate": 1.2650733333333334e-05, + "loss": 1.2975363159179687, + "step": 560500 + }, + { + "epoch": 74.74666666666667, + "grad_norm": 0.8789073824882507, + "learning_rate": 1.2644066666666668e-05, + "loss": 1.2992245483398437, + "step": 560600 + }, + { + "epoch": 74.76, + "grad_norm": 0.8771540522575378, + "learning_rate": 1.2637399999999999e-05, + "loss": 1.2950447082519532, + "step": 560700 + }, + { + "epoch": 74.77333333333333, + "grad_norm": 0.9482132196426392, + "learning_rate": 1.2630800000000001e-05, + "loss": 1.2989950561523438, + "step": 560800 + }, + { + "epoch": 74.78666666666666, + "grad_norm": 0.9016578793525696, + "learning_rate": 1.2624133333333335e-05, + "loss": 1.2909823608398439, + "step": 560900 + }, + { + "epoch": 74.8, + "grad_norm": 0.9523131847381592, + "learning_rate": 1.2617466666666666e-05, + "loss": 1.2979310607910157, + "step": 561000 + }, + { + "epoch": 74.81333333333333, + "grad_norm": 0.8999745845794678, + "learning_rate": 1.26108e-05, + "loss": 1.2966058349609375, + "step": 561100 + }, + { + "epoch": 74.82666666666667, + "grad_norm": 0.8210212588310242, + "learning_rate": 1.2604133333333335e-05, + "loss": 1.297114715576172, + "step": 561200 + }, + { + "epoch": 74.84, + "grad_norm": 0.8882796764373779, + "learning_rate": 1.259746666666667e-05, + "loss": 1.2930776977539062, + "step": 561300 + }, + { + "epoch": 74.85333333333334, + "grad_norm": 0.8462830185890198, + "learning_rate": 1.25908e-05, + "loss": 1.2994015502929688, + "step": 561400 + }, + { + "epoch": 74.86666666666666, + "grad_norm": 0.9026128649711609, + "learning_rate": 1.2584133333333334e-05, + "loss": 1.29409912109375, + "step": 561500 + }, + { + "epoch": 74.88, + "grad_norm": 0.9389071464538574, + "learning_rate": 1.2577466666666668e-05, + "loss": 1.2977705383300782, + "step": 561600 + }, + { + "epoch": 74.89333333333333, + "grad_norm": 0.9085119366645813, + "learning_rate": 1.25708e-05, + "loss": 1.296661376953125, + "step": 561700 + }, + { + "epoch": 74.90666666666667, + "grad_norm": 1.0114595890045166, + "learning_rate": 1.2564133333333334e-05, + "loss": 1.2983500671386718, + "step": 561800 + }, + { + "epoch": 74.92, + "grad_norm": 0.8648547530174255, + "learning_rate": 1.2557466666666668e-05, + "loss": 1.2987898254394532, + "step": 561900 + }, + { + "epoch": 74.93333333333334, + "grad_norm": 0.9071376323699951, + "learning_rate": 1.2550800000000002e-05, + "loss": 1.295235137939453, + "step": 562000 + }, + { + "epoch": 74.94666666666667, + "grad_norm": 0.8965473175048828, + "learning_rate": 1.2544133333333332e-05, + "loss": 1.3004685974121093, + "step": 562100 + }, + { + "epoch": 74.96, + "grad_norm": 0.8977342844009399, + "learning_rate": 1.2537466666666666e-05, + "loss": 1.297232666015625, + "step": 562200 + }, + { + "epoch": 74.97333333333333, + "grad_norm": 0.9045539498329163, + "learning_rate": 1.25308e-05, + "loss": 1.298996124267578, + "step": 562300 + }, + { + "epoch": 74.98666666666666, + "grad_norm": 0.8950331807136536, + "learning_rate": 1.2524133333333334e-05, + "loss": 1.2971505737304687, + "step": 562400 + }, + { + "epoch": 75.0, + "grad_norm": 0.8777759671211243, + "learning_rate": 1.2517466666666667e-05, + "loss": 1.2992008972167968, + "step": 562500 + }, + { + "epoch": 75.01333333333334, + "grad_norm": 0.8952645063400269, + "learning_rate": 1.25108e-05, + "loss": 1.2640491485595704, + "step": 562600 + }, + { + "epoch": 75.02666666666667, + "grad_norm": 0.877943217754364, + "learning_rate": 1.2504133333333335e-05, + "loss": 1.2647196197509765, + "step": 562700 + }, + { + "epoch": 75.04, + "grad_norm": 0.8919233083724976, + "learning_rate": 1.2497466666666667e-05, + "loss": 1.2628135681152344, + "step": 562800 + }, + { + "epoch": 75.05333333333333, + "grad_norm": 0.8733011484146118, + "learning_rate": 1.2490866666666668e-05, + "loss": 1.2628070831298828, + "step": 562900 + }, + { + "epoch": 75.06666666666666, + "grad_norm": 0.9152896404266357, + "learning_rate": 1.24842e-05, + "loss": 1.264164352416992, + "step": 563000 + }, + { + "epoch": 75.08, + "grad_norm": 0.8281626105308533, + "learning_rate": 1.2477533333333334e-05, + "loss": 1.2650759887695313, + "step": 563100 + }, + { + "epoch": 75.09333333333333, + "grad_norm": 0.8916683197021484, + "learning_rate": 1.2470866666666666e-05, + "loss": 1.2685887145996093, + "step": 563200 + }, + { + "epoch": 75.10666666666667, + "grad_norm": 0.9115118980407715, + "learning_rate": 1.2464200000000002e-05, + "loss": 1.272508544921875, + "step": 563300 + }, + { + "epoch": 75.12, + "grad_norm": 0.8884676098823547, + "learning_rate": 1.2457533333333334e-05, + "loss": 1.2687050628662109, + "step": 563400 + }, + { + "epoch": 75.13333333333334, + "grad_norm": 0.8922853469848633, + "learning_rate": 1.2450866666666668e-05, + "loss": 1.2676511383056641, + "step": 563500 + }, + { + "epoch": 75.14666666666666, + "grad_norm": 0.8890056610107422, + "learning_rate": 1.24442e-05, + "loss": 1.2675907135009765, + "step": 563600 + }, + { + "epoch": 75.16, + "grad_norm": 0.8995161652565002, + "learning_rate": 1.2437533333333334e-05, + "loss": 1.2708394622802734, + "step": 563700 + }, + { + "epoch": 75.17333333333333, + "grad_norm": 0.8850069046020508, + "learning_rate": 1.2430866666666666e-05, + "loss": 1.268143768310547, + "step": 563800 + }, + { + "epoch": 75.18666666666667, + "grad_norm": 0.8508411645889282, + "learning_rate": 1.24242e-05, + "loss": 1.2690723419189454, + "step": 563900 + }, + { + "epoch": 75.2, + "grad_norm": 0.8832269310951233, + "learning_rate": 1.2417533333333334e-05, + "loss": 1.2709259033203124, + "step": 564000 + }, + { + "epoch": 75.21333333333334, + "grad_norm": 0.8733813762664795, + "learning_rate": 1.2410866666666668e-05, + "loss": 1.2706985473632812, + "step": 564100 + }, + { + "epoch": 75.22666666666667, + "grad_norm": 0.8645262122154236, + "learning_rate": 1.24042e-05, + "loss": 1.27591796875, + "step": 564200 + }, + { + "epoch": 75.24, + "grad_norm": 0.8740404844284058, + "learning_rate": 1.2397533333333335e-05, + "loss": 1.2723672485351563, + "step": 564300 + }, + { + "epoch": 75.25333333333333, + "grad_norm": 0.8905038833618164, + "learning_rate": 1.2390866666666667e-05, + "loss": 1.2685739135742187, + "step": 564400 + }, + { + "epoch": 75.26666666666667, + "grad_norm": 0.8788304328918457, + "learning_rate": 1.23842e-05, + "loss": 1.275366973876953, + "step": 564500 + }, + { + "epoch": 75.28, + "grad_norm": 0.9056509733200073, + "learning_rate": 1.2377533333333335e-05, + "loss": 1.2775337982177735, + "step": 564600 + }, + { + "epoch": 75.29333333333334, + "grad_norm": 0.900590181350708, + "learning_rate": 1.2370866666666667e-05, + "loss": 1.2763518524169921, + "step": 564700 + }, + { + "epoch": 75.30666666666667, + "grad_norm": 0.8497269153594971, + "learning_rate": 1.2364200000000001e-05, + "loss": 1.273313980102539, + "step": 564800 + }, + { + "epoch": 75.32, + "grad_norm": 0.9780153036117554, + "learning_rate": 1.2357600000000002e-05, + "loss": 1.2757484436035156, + "step": 564900 + }, + { + "epoch": 75.33333333333333, + "grad_norm": 0.9048566818237305, + "learning_rate": 1.2350933333333334e-05, + "loss": 1.2719178771972657, + "step": 565000 + }, + { + "epoch": 75.34666666666666, + "grad_norm": 0.8986741900444031, + "learning_rate": 1.2344266666666668e-05, + "loss": 1.2778455352783202, + "step": 565100 + }, + { + "epoch": 75.36, + "grad_norm": 0.8905960321426392, + "learning_rate": 1.23376e-05, + "loss": 1.2795767974853516, + "step": 565200 + }, + { + "epoch": 75.37333333333333, + "grad_norm": 0.9009892344474792, + "learning_rate": 1.2330933333333334e-05, + "loss": 1.2813603210449218, + "step": 565300 + }, + { + "epoch": 75.38666666666667, + "grad_norm": 0.8851236701011658, + "learning_rate": 1.2324266666666666e-05, + "loss": 1.2804205322265625, + "step": 565400 + }, + { + "epoch": 75.4, + "grad_norm": 0.8907919526100159, + "learning_rate": 1.23176e-05, + "loss": 1.2816227722167968, + "step": 565500 + }, + { + "epoch": 75.41333333333333, + "grad_norm": 0.8697381019592285, + "learning_rate": 1.2310933333333334e-05, + "loss": 1.2802578735351562, + "step": 565600 + }, + { + "epoch": 75.42666666666666, + "grad_norm": 0.9782188534736633, + "learning_rate": 1.2304266666666667e-05, + "loss": 1.2815553283691405, + "step": 565700 + }, + { + "epoch": 75.44, + "grad_norm": 0.9227743744850159, + "learning_rate": 1.22976e-05, + "loss": 1.2832655334472656, + "step": 565800 + }, + { + "epoch": 75.45333333333333, + "grad_norm": 0.903657078742981, + "learning_rate": 1.2290933333333333e-05, + "loss": 1.2772044372558593, + "step": 565900 + }, + { + "epoch": 75.46666666666667, + "grad_norm": 0.8705148696899414, + "learning_rate": 1.2284266666666667e-05, + "loss": 1.28025146484375, + "step": 566000 + }, + { + "epoch": 75.48, + "grad_norm": 0.8651654720306396, + "learning_rate": 1.22776e-05, + "loss": 1.280309600830078, + "step": 566100 + }, + { + "epoch": 75.49333333333334, + "grad_norm": 0.8842359185218811, + "learning_rate": 1.2270933333333335e-05, + "loss": 1.2774700927734375, + "step": 566200 + }, + { + "epoch": 75.50666666666666, + "grad_norm": 0.8937225341796875, + "learning_rate": 1.2264266666666667e-05, + "loss": 1.2816136169433594, + "step": 566300 + }, + { + "epoch": 75.52, + "grad_norm": 0.9345490336418152, + "learning_rate": 1.2257600000000001e-05, + "loss": 1.2842210388183595, + "step": 566400 + }, + { + "epoch": 75.53333333333333, + "grad_norm": 0.859245777130127, + "learning_rate": 1.2250933333333333e-05, + "loss": 1.2751191711425782, + "step": 566500 + }, + { + "epoch": 75.54666666666667, + "grad_norm": 0.9067889451980591, + "learning_rate": 1.2244266666666667e-05, + "loss": 1.2782907104492187, + "step": 566600 + }, + { + "epoch": 75.56, + "grad_norm": 0.9356161952018738, + "learning_rate": 1.2237600000000001e-05, + "loss": 1.2806317138671874, + "step": 566700 + }, + { + "epoch": 75.57333333333334, + "grad_norm": 0.9229298830032349, + "learning_rate": 1.2230933333333335e-05, + "loss": 1.2850361633300782, + "step": 566800 + }, + { + "epoch": 75.58666666666667, + "grad_norm": 0.9154577851295471, + "learning_rate": 1.2224333333333334e-05, + "loss": 1.2825677490234375, + "step": 566900 + }, + { + "epoch": 75.6, + "grad_norm": 0.9192464351654053, + "learning_rate": 1.2217666666666668e-05, + "loss": 1.2844052124023437, + "step": 567000 + }, + { + "epoch": 75.61333333333333, + "grad_norm": 0.8860438466072083, + "learning_rate": 1.2211e-05, + "loss": 1.2842628479003906, + "step": 567100 + }, + { + "epoch": 75.62666666666667, + "grad_norm": 0.9283733367919922, + "learning_rate": 1.2204333333333334e-05, + "loss": 1.2807681274414062, + "step": 567200 + }, + { + "epoch": 75.64, + "grad_norm": 0.9022039771080017, + "learning_rate": 1.2197666666666667e-05, + "loss": 1.2847116088867188, + "step": 567300 + }, + { + "epoch": 75.65333333333334, + "grad_norm": 0.9383234977722168, + "learning_rate": 1.2191e-05, + "loss": 1.2842823791503906, + "step": 567400 + }, + { + "epoch": 75.66666666666667, + "grad_norm": 0.8987548351287842, + "learning_rate": 1.2184333333333333e-05, + "loss": 1.2830416870117187, + "step": 567500 + }, + { + "epoch": 75.68, + "grad_norm": 0.9250150918960571, + "learning_rate": 1.2177666666666669e-05, + "loss": 1.2888677978515626, + "step": 567600 + }, + { + "epoch": 75.69333333333333, + "grad_norm": 0.8937551975250244, + "learning_rate": 1.2171000000000001e-05, + "loss": 1.2843814086914063, + "step": 567700 + }, + { + "epoch": 75.70666666666666, + "grad_norm": 0.93442302942276, + "learning_rate": 1.2164333333333335e-05, + "loss": 1.2801531982421874, + "step": 567800 + }, + { + "epoch": 75.72, + "grad_norm": 0.9443467855453491, + "learning_rate": 1.2157666666666667e-05, + "loss": 1.2907289123535157, + "step": 567900 + }, + { + "epoch": 75.73333333333333, + "grad_norm": 0.9479007124900818, + "learning_rate": 1.2151000000000001e-05, + "loss": 1.2885336303710937, + "step": 568000 + }, + { + "epoch": 75.74666666666667, + "grad_norm": 0.9026948809623718, + "learning_rate": 1.2144333333333333e-05, + "loss": 1.28862060546875, + "step": 568100 + }, + { + "epoch": 75.76, + "grad_norm": 0.9431944489479065, + "learning_rate": 1.2137666666666667e-05, + "loss": 1.2903639221191405, + "step": 568200 + }, + { + "epoch": 75.77333333333333, + "grad_norm": 0.8847748637199402, + "learning_rate": 1.2131000000000001e-05, + "loss": 1.2831291198730468, + "step": 568300 + }, + { + "epoch": 75.78666666666666, + "grad_norm": 0.9042606949806213, + "learning_rate": 1.2124333333333334e-05, + "loss": 1.2880831909179689, + "step": 568400 + }, + { + "epoch": 75.8, + "grad_norm": 0.8872798085212708, + "learning_rate": 1.2117666666666667e-05, + "loss": 1.289575958251953, + "step": 568500 + }, + { + "epoch": 75.81333333333333, + "grad_norm": 0.8426007628440857, + "learning_rate": 1.2111e-05, + "loss": 1.2929600524902343, + "step": 568600 + }, + { + "epoch": 75.82666666666667, + "grad_norm": 0.8785552978515625, + "learning_rate": 1.2104333333333334e-05, + "loss": 1.2918893432617187, + "step": 568700 + }, + { + "epoch": 75.84, + "grad_norm": 0.8560172915458679, + "learning_rate": 1.2097666666666668e-05, + "loss": 1.2879776000976562, + "step": 568800 + }, + { + "epoch": 75.85333333333334, + "grad_norm": 0.9080483317375183, + "learning_rate": 1.2091000000000002e-05, + "loss": 1.289279022216797, + "step": 568900 + }, + { + "epoch": 75.86666666666666, + "grad_norm": 0.8898365497589111, + "learning_rate": 1.20844e-05, + "loss": 1.2897042846679687, + "step": 569000 + }, + { + "epoch": 75.88, + "grad_norm": 0.95564204454422, + "learning_rate": 1.2077733333333335e-05, + "loss": 1.2889401245117187, + "step": 569100 + }, + { + "epoch": 75.89333333333333, + "grad_norm": 0.8454336524009705, + "learning_rate": 1.2071066666666667e-05, + "loss": 1.293185272216797, + "step": 569200 + }, + { + "epoch": 75.90666666666667, + "grad_norm": 0.9560728669166565, + "learning_rate": 1.2064400000000001e-05, + "loss": 1.2893829345703125, + "step": 569300 + }, + { + "epoch": 75.92, + "grad_norm": 0.9126923084259033, + "learning_rate": 1.2057733333333333e-05, + "loss": 1.2923159790039063, + "step": 569400 + }, + { + "epoch": 75.93333333333334, + "grad_norm": 0.8590043783187866, + "learning_rate": 1.2051066666666667e-05, + "loss": 1.29072265625, + "step": 569500 + }, + { + "epoch": 75.94666666666667, + "grad_norm": 0.8858271241188049, + "learning_rate": 1.20444e-05, + "loss": 1.2948809814453126, + "step": 569600 + }, + { + "epoch": 75.96, + "grad_norm": 0.9448450803756714, + "learning_rate": 1.2037733333333333e-05, + "loss": 1.2897013854980468, + "step": 569700 + }, + { + "epoch": 75.97333333333333, + "grad_norm": 0.8658963441848755, + "learning_rate": 1.2031066666666667e-05, + "loss": 1.2937811279296876, + "step": 569800 + }, + { + "epoch": 75.98666666666666, + "grad_norm": 0.9109137654304504, + "learning_rate": 1.2024400000000001e-05, + "loss": 1.2949751281738282, + "step": 569900 + }, + { + "epoch": 76.0, + "grad_norm": 0.90373694896698, + "learning_rate": 1.2017733333333334e-05, + "loss": 1.2907695007324218, + "step": 570000 + }, + { + "epoch": 76.01333333333334, + "grad_norm": 0.9023296236991882, + "learning_rate": 1.2011066666666668e-05, + "loss": 1.2564220428466797, + "step": 570100 + }, + { + "epoch": 76.02666666666667, + "grad_norm": 0.9075928926467896, + "learning_rate": 1.20044e-05, + "loss": 1.2600310516357422, + "step": 570200 + }, + { + "epoch": 76.04, + "grad_norm": 0.8993645310401917, + "learning_rate": 1.1997733333333334e-05, + "loss": 1.2612214660644532, + "step": 570300 + }, + { + "epoch": 76.05333333333333, + "grad_norm": 0.8090634942054749, + "learning_rate": 1.1991066666666668e-05, + "loss": 1.2595449829101562, + "step": 570400 + }, + { + "epoch": 76.06666666666666, + "grad_norm": 0.8265924453735352, + "learning_rate": 1.1984400000000002e-05, + "loss": 1.260252914428711, + "step": 570500 + }, + { + "epoch": 76.08, + "grad_norm": 0.9115302562713623, + "learning_rate": 1.1977733333333334e-05, + "loss": 1.2610408020019532, + "step": 570600 + }, + { + "epoch": 76.09333333333333, + "grad_norm": 0.9297177195549011, + "learning_rate": 1.1971066666666668e-05, + "loss": 1.2638664245605469, + "step": 570700 + }, + { + "epoch": 76.10666666666667, + "grad_norm": 0.8523125648498535, + "learning_rate": 1.19644e-05, + "loss": 1.2649871063232423, + "step": 570800 + }, + { + "epoch": 76.12, + "grad_norm": 0.9545742869377136, + "learning_rate": 1.1957733333333334e-05, + "loss": 1.2625828552246094, + "step": 570900 + }, + { + "epoch": 76.13333333333334, + "grad_norm": 0.8487697839736938, + "learning_rate": 1.1951133333333333e-05, + "loss": 1.2658775329589844, + "step": 571000 + }, + { + "epoch": 76.14666666666666, + "grad_norm": 0.9032588601112366, + "learning_rate": 1.1944466666666667e-05, + "loss": 1.2628345489501953, + "step": 571100 + }, + { + "epoch": 76.16, + "grad_norm": 0.8663509488105774, + "learning_rate": 1.1937800000000001e-05, + "loss": 1.2638357543945313, + "step": 571200 + }, + { + "epoch": 76.17333333333333, + "grad_norm": 0.8065935373306274, + "learning_rate": 1.1931133333333335e-05, + "loss": 1.2654532623291015, + "step": 571300 + }, + { + "epoch": 76.18666666666667, + "grad_norm": 0.8923590779304504, + "learning_rate": 1.1924466666666667e-05, + "loss": 1.2625431823730469, + "step": 571400 + }, + { + "epoch": 76.2, + "grad_norm": 0.9256909489631653, + "learning_rate": 1.1917800000000001e-05, + "loss": 1.2661501312255858, + "step": 571500 + }, + { + "epoch": 76.21333333333334, + "grad_norm": 0.8839671015739441, + "learning_rate": 1.1911133333333334e-05, + "loss": 1.2691407775878907, + "step": 571600 + }, + { + "epoch": 76.22666666666667, + "grad_norm": 0.9196544289588928, + "learning_rate": 1.1904466666666666e-05, + "loss": 1.2661520385742187, + "step": 571700 + }, + { + "epoch": 76.24, + "grad_norm": 0.8353877663612366, + "learning_rate": 1.18978e-05, + "loss": 1.2685884094238282, + "step": 571800 + }, + { + "epoch": 76.25333333333333, + "grad_norm": 0.8533715605735779, + "learning_rate": 1.1891133333333334e-05, + "loss": 1.2692129516601562, + "step": 571900 + }, + { + "epoch": 76.26666666666667, + "grad_norm": 0.8897333145141602, + "learning_rate": 1.1884466666666668e-05, + "loss": 1.2691090393066407, + "step": 572000 + }, + { + "epoch": 76.28, + "grad_norm": 0.90340656042099, + "learning_rate": 1.18778e-05, + "loss": 1.2702519989013672, + "step": 572100 + }, + { + "epoch": 76.29333333333334, + "grad_norm": 0.8940246105194092, + "learning_rate": 1.1871133333333334e-05, + "loss": 1.2684158325195312, + "step": 572200 + }, + { + "epoch": 76.30666666666667, + "grad_norm": 0.8823217153549194, + "learning_rate": 1.1864466666666666e-05, + "loss": 1.2694771575927735, + "step": 572300 + }, + { + "epoch": 76.32, + "grad_norm": 0.8801313638687134, + "learning_rate": 1.18578e-05, + "loss": 1.2695850372314452, + "step": 572400 + }, + { + "epoch": 76.33333333333333, + "grad_norm": 0.8763577342033386, + "learning_rate": 1.1851133333333334e-05, + "loss": 1.2703809356689453, + "step": 572500 + }, + { + "epoch": 76.34666666666666, + "grad_norm": 0.9414470195770264, + "learning_rate": 1.1844466666666668e-05, + "loss": 1.2732679748535156, + "step": 572600 + }, + { + "epoch": 76.36, + "grad_norm": 0.918465256690979, + "learning_rate": 1.18378e-05, + "loss": 1.2702081298828125, + "step": 572700 + }, + { + "epoch": 76.37333333333333, + "grad_norm": 0.8856133222579956, + "learning_rate": 1.1831133333333334e-05, + "loss": 1.2735169219970703, + "step": 572800 + }, + { + "epoch": 76.38666666666667, + "grad_norm": 0.9244083166122437, + "learning_rate": 1.1824466666666667e-05, + "loss": 1.273417739868164, + "step": 572900 + }, + { + "epoch": 76.4, + "grad_norm": 0.8916839957237244, + "learning_rate": 1.1817866666666667e-05, + "loss": 1.2737143707275391, + "step": 573000 + }, + { + "epoch": 76.41333333333333, + "grad_norm": 0.8814034461975098, + "learning_rate": 1.18112e-05, + "loss": 1.27196533203125, + "step": 573100 + }, + { + "epoch": 76.42666666666666, + "grad_norm": 0.8989616632461548, + "learning_rate": 1.1804533333333334e-05, + "loss": 1.2706958770751953, + "step": 573200 + }, + { + "epoch": 76.44, + "grad_norm": 0.8440143465995789, + "learning_rate": 1.1797866666666668e-05, + "loss": 1.271722946166992, + "step": 573300 + }, + { + "epoch": 76.45333333333333, + "grad_norm": 0.9400561451911926, + "learning_rate": 1.1791200000000002e-05, + "loss": 1.27082763671875, + "step": 573400 + }, + { + "epoch": 76.46666666666667, + "grad_norm": 0.9104871153831482, + "learning_rate": 1.1784533333333334e-05, + "loss": 1.274063720703125, + "step": 573500 + }, + { + "epoch": 76.48, + "grad_norm": 0.9427663087844849, + "learning_rate": 1.1777866666666668e-05, + "loss": 1.2744304656982421, + "step": 573600 + }, + { + "epoch": 76.49333333333334, + "grad_norm": 0.930120587348938, + "learning_rate": 1.17712e-05, + "loss": 1.2735147857666016, + "step": 573700 + }, + { + "epoch": 76.50666666666666, + "grad_norm": 0.8373743891716003, + "learning_rate": 1.1764533333333334e-05, + "loss": 1.2727003479003907, + "step": 573800 + }, + { + "epoch": 76.52, + "grad_norm": 0.8900668621063232, + "learning_rate": 1.1757866666666666e-05, + "loss": 1.278759994506836, + "step": 573900 + }, + { + "epoch": 76.53333333333333, + "grad_norm": 0.9131837487220764, + "learning_rate": 1.1751200000000002e-05, + "loss": 1.279442596435547, + "step": 574000 + }, + { + "epoch": 76.54666666666667, + "grad_norm": 0.8976189494132996, + "learning_rate": 1.1744533333333334e-05, + "loss": 1.2741080474853517, + "step": 574100 + }, + { + "epoch": 76.56, + "grad_norm": 0.8666889071464539, + "learning_rate": 1.1737866666666668e-05, + "loss": 1.2774742126464844, + "step": 574200 + }, + { + "epoch": 76.57333333333334, + "grad_norm": 0.8947174549102783, + "learning_rate": 1.17312e-05, + "loss": 1.2774790954589843, + "step": 574300 + }, + { + "epoch": 76.58666666666667, + "grad_norm": 0.9052897691726685, + "learning_rate": 1.1724533333333333e-05, + "loss": 1.2790341949462891, + "step": 574400 + }, + { + "epoch": 76.6, + "grad_norm": 0.8981863260269165, + "learning_rate": 1.1717866666666667e-05, + "loss": 1.2725530242919922, + "step": 574500 + }, + { + "epoch": 76.61333333333333, + "grad_norm": 0.8950761556625366, + "learning_rate": 1.17112e-05, + "loss": 1.277298583984375, + "step": 574600 + }, + { + "epoch": 76.62666666666667, + "grad_norm": 0.9243502616882324, + "learning_rate": 1.1704533333333335e-05, + "loss": 1.279012222290039, + "step": 574700 + }, + { + "epoch": 76.64, + "grad_norm": 0.9470920562744141, + "learning_rate": 1.1697866666666667e-05, + "loss": 1.2796407318115235, + "step": 574800 + }, + { + "epoch": 76.65333333333334, + "grad_norm": 0.9210641980171204, + "learning_rate": 1.16912e-05, + "loss": 1.27352294921875, + "step": 574900 + }, + { + "epoch": 76.66666666666667, + "grad_norm": 0.9046253561973572, + "learning_rate": 1.1684600000000002e-05, + "loss": 1.2836494445800781, + "step": 575000 + }, + { + "epoch": 76.68, + "grad_norm": 0.8648155927658081, + "learning_rate": 1.1677933333333334e-05, + "loss": 1.283481903076172, + "step": 575100 + }, + { + "epoch": 76.69333333333333, + "grad_norm": 0.9311123490333557, + "learning_rate": 1.1671266666666668e-05, + "loss": 1.2783139801025392, + "step": 575200 + }, + { + "epoch": 76.70666666666666, + "grad_norm": 0.913091242313385, + "learning_rate": 1.16646e-05, + "loss": 1.2771622467041015, + "step": 575300 + }, + { + "epoch": 76.72, + "grad_norm": 0.8883966207504272, + "learning_rate": 1.1657933333333332e-05, + "loss": 1.2791126251220704, + "step": 575400 + }, + { + "epoch": 76.73333333333333, + "grad_norm": 0.9038500189781189, + "learning_rate": 1.1651266666666668e-05, + "loss": 1.2827508544921875, + "step": 575500 + }, + { + "epoch": 76.74666666666667, + "grad_norm": 0.8970502614974976, + "learning_rate": 1.16446e-05, + "loss": 1.2832752990722656, + "step": 575600 + }, + { + "epoch": 76.76, + "grad_norm": 0.9356183409690857, + "learning_rate": 1.1637933333333334e-05, + "loss": 1.2858283996582032, + "step": 575700 + }, + { + "epoch": 76.77333333333333, + "grad_norm": 0.8676143288612366, + "learning_rate": 1.1631266666666667e-05, + "loss": 1.2802749633789063, + "step": 575800 + }, + { + "epoch": 76.78666666666666, + "grad_norm": 0.901439368724823, + "learning_rate": 1.16246e-05, + "loss": 1.279897689819336, + "step": 575900 + }, + { + "epoch": 76.8, + "grad_norm": 0.9266265630722046, + "learning_rate": 1.1617933333333333e-05, + "loss": 1.2846217346191406, + "step": 576000 + }, + { + "epoch": 76.81333333333333, + "grad_norm": 0.8446720838546753, + "learning_rate": 1.1611266666666667e-05, + "loss": 1.28507568359375, + "step": 576100 + }, + { + "epoch": 76.82666666666667, + "grad_norm": 0.9122141599655151, + "learning_rate": 1.16046e-05, + "loss": 1.2835508728027343, + "step": 576200 + }, + { + "epoch": 76.84, + "grad_norm": 0.9296014308929443, + "learning_rate": 1.1597933333333335e-05, + "loss": 1.2806108093261719, + "step": 576300 + }, + { + "epoch": 76.85333333333334, + "grad_norm": 0.9515265226364136, + "learning_rate": 1.1591266666666667e-05, + "loss": 1.2886801147460938, + "step": 576400 + }, + { + "epoch": 76.86666666666666, + "grad_norm": 0.9384329915046692, + "learning_rate": 1.1584600000000001e-05, + "loss": 1.2862442016601563, + "step": 576500 + }, + { + "epoch": 76.88, + "grad_norm": 0.911675214767456, + "learning_rate": 1.1577933333333333e-05, + "loss": 1.2852195739746093, + "step": 576600 + }, + { + "epoch": 76.89333333333333, + "grad_norm": 0.9368600845336914, + "learning_rate": 1.1571266666666667e-05, + "loss": 1.2880644226074218, + "step": 576700 + }, + { + "epoch": 76.90666666666667, + "grad_norm": 0.9342831373214722, + "learning_rate": 1.1564600000000001e-05, + "loss": 1.2856315612792968, + "step": 576800 + }, + { + "epoch": 76.92, + "grad_norm": 0.8949527144432068, + "learning_rate": 1.1557933333333335e-05, + "loss": 1.290764617919922, + "step": 576900 + }, + { + "epoch": 76.93333333333334, + "grad_norm": 0.9204317927360535, + "learning_rate": 1.1551333333333334e-05, + "loss": 1.2894427490234375, + "step": 577000 + }, + { + "epoch": 76.94666666666667, + "grad_norm": 0.9253742098808289, + "learning_rate": 1.1544666666666668e-05, + "loss": 1.2840521240234375, + "step": 577100 + }, + { + "epoch": 76.96, + "grad_norm": 0.9282165765762329, + "learning_rate": 1.1538e-05, + "loss": 1.2856878662109374, + "step": 577200 + }, + { + "epoch": 76.97333333333333, + "grad_norm": 0.8722630143165588, + "learning_rate": 1.1531333333333334e-05, + "loss": 1.2854739379882814, + "step": 577300 + }, + { + "epoch": 76.98666666666666, + "grad_norm": 0.913749098777771, + "learning_rate": 1.1524666666666667e-05, + "loss": 1.2859970092773438, + "step": 577400 + }, + { + "epoch": 77.0, + "grad_norm": 0.961866021156311, + "learning_rate": 1.1518e-05, + "loss": 1.2846250915527344, + "step": 577500 + }, + { + "epoch": 77.01333333333334, + "grad_norm": 0.905587375164032, + "learning_rate": 1.1511333333333334e-05, + "loss": 1.255999755859375, + "step": 577600 + }, + { + "epoch": 77.02666666666667, + "grad_norm": 0.9109494686126709, + "learning_rate": 1.1504666666666668e-05, + "loss": 1.257362823486328, + "step": 577700 + }, + { + "epoch": 77.04, + "grad_norm": 0.8600365519523621, + "learning_rate": 1.1498e-05, + "loss": 1.255925064086914, + "step": 577800 + }, + { + "epoch": 77.05333333333333, + "grad_norm": 0.898125410079956, + "learning_rate": 1.1491333333333335e-05, + "loss": 1.251571273803711, + "step": 577900 + }, + { + "epoch": 77.06666666666666, + "grad_norm": 0.8492289185523987, + "learning_rate": 1.1484666666666667e-05, + "loss": 1.2551496887207032, + "step": 578000 + }, + { + "epoch": 77.08, + "grad_norm": 0.8958540558815002, + "learning_rate": 1.1478e-05, + "loss": 1.2567188262939453, + "step": 578100 + }, + { + "epoch": 77.09333333333333, + "grad_norm": 0.8623022437095642, + "learning_rate": 1.1471333333333333e-05, + "loss": 1.2552345275878907, + "step": 578200 + }, + { + "epoch": 77.10666666666667, + "grad_norm": 0.8635573983192444, + "learning_rate": 1.1464666666666667e-05, + "loss": 1.2586454010009767, + "step": 578300 + }, + { + "epoch": 77.12, + "grad_norm": 0.8765349388122559, + "learning_rate": 1.1458000000000001e-05, + "loss": 1.2600203704833985, + "step": 578400 + }, + { + "epoch": 77.13333333333334, + "grad_norm": 0.862362802028656, + "learning_rate": 1.1451333333333333e-05, + "loss": 1.2597164916992187, + "step": 578500 + }, + { + "epoch": 77.14666666666666, + "grad_norm": 0.910469651222229, + "learning_rate": 1.1444666666666667e-05, + "loss": 1.2607437896728515, + "step": 578600 + }, + { + "epoch": 77.16, + "grad_norm": 0.9068487286567688, + "learning_rate": 1.1438e-05, + "loss": 1.2581224060058593, + "step": 578700 + }, + { + "epoch": 77.17333333333333, + "grad_norm": 0.818719744682312, + "learning_rate": 1.1431333333333334e-05, + "loss": 1.257034454345703, + "step": 578800 + }, + { + "epoch": 77.18666666666667, + "grad_norm": 0.9217579364776611, + "learning_rate": 1.1424666666666668e-05, + "loss": 1.2629297637939454, + "step": 578900 + }, + { + "epoch": 77.2, + "grad_norm": 0.848243772983551, + "learning_rate": 1.1418066666666667e-05, + "loss": 1.2635003662109374, + "step": 579000 + }, + { + "epoch": 77.21333333333334, + "grad_norm": 0.8776289820671082, + "learning_rate": 1.14114e-05, + "loss": 1.2585693359375, + "step": 579100 + }, + { + "epoch": 77.22666666666667, + "grad_norm": 0.9173794388771057, + "learning_rate": 1.1404733333333335e-05, + "loss": 1.2622824859619142, + "step": 579200 + }, + { + "epoch": 77.24, + "grad_norm": 0.873337984085083, + "learning_rate": 1.1398066666666667e-05, + "loss": 1.2653639221191406, + "step": 579300 + }, + { + "epoch": 77.25333333333333, + "grad_norm": 0.9575465321540833, + "learning_rate": 1.13914e-05, + "loss": 1.2643247222900391, + "step": 579400 + }, + { + "epoch": 77.26666666666667, + "grad_norm": 0.8416218161582947, + "learning_rate": 1.1384733333333333e-05, + "loss": 1.2624178314208985, + "step": 579500 + }, + { + "epoch": 77.28, + "grad_norm": 0.9230799674987793, + "learning_rate": 1.1378066666666667e-05, + "loss": 1.2626051330566406, + "step": 579600 + }, + { + "epoch": 77.29333333333334, + "grad_norm": 0.8633724451065063, + "learning_rate": 1.1371400000000001e-05, + "loss": 1.2685257720947265, + "step": 579700 + }, + { + "epoch": 77.30666666666667, + "grad_norm": 0.9460192322731018, + "learning_rate": 1.1364733333333335e-05, + "loss": 1.2646743774414062, + "step": 579800 + }, + { + "epoch": 77.32, + "grad_norm": 0.8928385376930237, + "learning_rate": 1.1358066666666667e-05, + "loss": 1.2659114837646483, + "step": 579900 + }, + { + "epoch": 77.33333333333333, + "grad_norm": 0.8571158051490784, + "learning_rate": 1.1351400000000001e-05, + "loss": 1.2670587921142578, + "step": 580000 + }, + { + "epoch": 77.34666666666666, + "grad_norm": 0.858704686164856, + "learning_rate": 1.1344733333333333e-05, + "loss": 1.2675933837890625, + "step": 580100 + }, + { + "epoch": 77.36, + "grad_norm": 0.9516656398773193, + "learning_rate": 1.1338066666666667e-05, + "loss": 1.2708335876464845, + "step": 580200 + }, + { + "epoch": 77.37333333333333, + "grad_norm": 0.8929257392883301, + "learning_rate": 1.13314e-05, + "loss": 1.265479278564453, + "step": 580300 + }, + { + "epoch": 77.38666666666667, + "grad_norm": 0.912930428981781, + "learning_rate": 1.1324733333333334e-05, + "loss": 1.2636156463623047, + "step": 580400 + }, + { + "epoch": 77.4, + "grad_norm": 0.8615267276763916, + "learning_rate": 1.1318066666666668e-05, + "loss": 1.2651126861572266, + "step": 580500 + }, + { + "epoch": 77.41333333333333, + "grad_norm": 0.8684864640235901, + "learning_rate": 1.1311400000000002e-05, + "loss": 1.2702027130126954, + "step": 580600 + }, + { + "epoch": 77.42666666666666, + "grad_norm": 0.8868072628974915, + "learning_rate": 1.1304733333333334e-05, + "loss": 1.2698739624023438, + "step": 580700 + }, + { + "epoch": 77.44, + "grad_norm": 0.9572634696960449, + "learning_rate": 1.1298066666666666e-05, + "loss": 1.268133544921875, + "step": 580800 + }, + { + "epoch": 77.45333333333333, + "grad_norm": 0.9197629690170288, + "learning_rate": 1.12914e-05, + "loss": 1.2709165954589843, + "step": 580900 + }, + { + "epoch": 77.46666666666667, + "grad_norm": 0.8801963329315186, + "learning_rate": 1.1284733333333334e-05, + "loss": 1.2684906768798827, + "step": 581000 + }, + { + "epoch": 77.48, + "grad_norm": 0.8818572163581848, + "learning_rate": 1.1278133333333333e-05, + "loss": 1.273465576171875, + "step": 581100 + }, + { + "epoch": 77.49333333333334, + "grad_norm": 0.9402119517326355, + "learning_rate": 1.1271466666666667e-05, + "loss": 1.266955108642578, + "step": 581200 + }, + { + "epoch": 77.50666666666666, + "grad_norm": 0.8809628486633301, + "learning_rate": 1.1264800000000001e-05, + "loss": 1.271000289916992, + "step": 581300 + }, + { + "epoch": 77.52, + "grad_norm": 0.9298728108406067, + "learning_rate": 1.1258133333333335e-05, + "loss": 1.2696641540527345, + "step": 581400 + }, + { + "epoch": 77.53333333333333, + "grad_norm": 0.9338729977607727, + "learning_rate": 1.1251466666666667e-05, + "loss": 1.2723861694335938, + "step": 581500 + }, + { + "epoch": 77.54666666666667, + "grad_norm": 0.8930231332778931, + "learning_rate": 1.1244800000000001e-05, + "loss": 1.2670636749267579, + "step": 581600 + }, + { + "epoch": 77.56, + "grad_norm": 0.8689009547233582, + "learning_rate": 1.1238133333333333e-05, + "loss": 1.2678091430664062, + "step": 581700 + }, + { + "epoch": 77.57333333333334, + "grad_norm": 0.8521204590797424, + "learning_rate": 1.1231466666666666e-05, + "loss": 1.2707132720947265, + "step": 581800 + }, + { + "epoch": 77.58666666666667, + "grad_norm": 0.8917391896247864, + "learning_rate": 1.1224800000000001e-05, + "loss": 1.2752569580078126, + "step": 581900 + }, + { + "epoch": 77.6, + "grad_norm": 0.9497755169868469, + "learning_rate": 1.1218133333333334e-05, + "loss": 1.2703166961669923, + "step": 582000 + }, + { + "epoch": 77.61333333333333, + "grad_norm": 0.9635091423988342, + "learning_rate": 1.1211466666666668e-05, + "loss": 1.2678369903564453, + "step": 582100 + }, + { + "epoch": 77.62666666666667, + "grad_norm": 0.9281509518623352, + "learning_rate": 1.12048e-05, + "loss": 1.2707953643798828, + "step": 582200 + }, + { + "epoch": 77.64, + "grad_norm": 0.8660150170326233, + "learning_rate": 1.1198133333333334e-05, + "loss": 1.272255401611328, + "step": 582300 + }, + { + "epoch": 77.65333333333334, + "grad_norm": 0.9285011291503906, + "learning_rate": 1.1191466666666666e-05, + "loss": 1.2756419372558594, + "step": 582400 + }, + { + "epoch": 77.66666666666667, + "grad_norm": 0.932344377040863, + "learning_rate": 1.11848e-05, + "loss": 1.2738219451904298, + "step": 582500 + }, + { + "epoch": 77.68, + "grad_norm": 0.9365657567977905, + "learning_rate": 1.1178133333333334e-05, + "loss": 1.2753623199462891, + "step": 582600 + }, + { + "epoch": 77.69333333333333, + "grad_norm": 0.825846791267395, + "learning_rate": 1.1171466666666668e-05, + "loss": 1.2731678771972657, + "step": 582700 + }, + { + "epoch": 77.70666666666666, + "grad_norm": 0.9342759847640991, + "learning_rate": 1.11648e-05, + "loss": 1.277725067138672, + "step": 582800 + }, + { + "epoch": 77.72, + "grad_norm": 0.9432119131088257, + "learning_rate": 1.1158133333333334e-05, + "loss": 1.2735256958007812, + "step": 582900 + }, + { + "epoch": 77.73333333333333, + "grad_norm": 0.9605401158332825, + "learning_rate": 1.1151466666666666e-05, + "loss": 1.2816490173339843, + "step": 583000 + }, + { + "epoch": 77.74666666666667, + "grad_norm": 0.9029577374458313, + "learning_rate": 1.1144866666666667e-05, + "loss": 1.2802981567382812, + "step": 583100 + }, + { + "epoch": 77.76, + "grad_norm": 0.8637961745262146, + "learning_rate": 1.11382e-05, + "loss": 1.2796761322021484, + "step": 583200 + }, + { + "epoch": 77.77333333333333, + "grad_norm": 0.921112596988678, + "learning_rate": 1.1131533333333333e-05, + "loss": 1.2756118774414062, + "step": 583300 + }, + { + "epoch": 77.78666666666666, + "grad_norm": 0.9237424731254578, + "learning_rate": 1.1124866666666667e-05, + "loss": 1.2745748901367187, + "step": 583400 + }, + { + "epoch": 77.8, + "grad_norm": 0.843678891658783, + "learning_rate": 1.1118200000000001e-05, + "loss": 1.2792215728759766, + "step": 583500 + }, + { + "epoch": 77.81333333333333, + "grad_norm": 0.9343549609184265, + "learning_rate": 1.1111533333333334e-05, + "loss": 1.277459716796875, + "step": 583600 + }, + { + "epoch": 77.82666666666667, + "grad_norm": 0.8938376307487488, + "learning_rate": 1.1104866666666668e-05, + "loss": 1.2799664306640626, + "step": 583700 + }, + { + "epoch": 77.84, + "grad_norm": 0.910925030708313, + "learning_rate": 1.10982e-05, + "loss": 1.280896453857422, + "step": 583800 + }, + { + "epoch": 77.85333333333334, + "grad_norm": 0.8991851806640625, + "learning_rate": 1.1091533333333334e-05, + "loss": 1.2770259857177735, + "step": 583900 + }, + { + "epoch": 77.86666666666666, + "grad_norm": 0.8709640502929688, + "learning_rate": 1.1084866666666668e-05, + "loss": 1.2761578369140625, + "step": 584000 + }, + { + "epoch": 77.88, + "grad_norm": 0.8845403790473938, + "learning_rate": 1.1078200000000002e-05, + "loss": 1.2800413513183593, + "step": 584100 + }, + { + "epoch": 77.89333333333333, + "grad_norm": 0.8760946393013, + "learning_rate": 1.1071533333333334e-05, + "loss": 1.2795198822021485, + "step": 584200 + }, + { + "epoch": 77.90666666666667, + "grad_norm": 0.9131218791007996, + "learning_rate": 1.1064866666666668e-05, + "loss": 1.2759528350830078, + "step": 584300 + }, + { + "epoch": 77.92, + "grad_norm": 0.8943530321121216, + "learning_rate": 1.10582e-05, + "loss": 1.2813719177246095, + "step": 584400 + }, + { + "epoch": 77.93333333333334, + "grad_norm": 0.9106712937355042, + "learning_rate": 1.1051533333333333e-05, + "loss": 1.2769749450683594, + "step": 584500 + }, + { + "epoch": 77.94666666666667, + "grad_norm": 0.9153562188148499, + "learning_rate": 1.1044866666666667e-05, + "loss": 1.2757042694091796, + "step": 584600 + }, + { + "epoch": 77.96, + "grad_norm": 0.9484046697616577, + "learning_rate": 1.10382e-05, + "loss": 1.2819232177734374, + "step": 584700 + }, + { + "epoch": 77.97333333333333, + "grad_norm": 0.9584998488426208, + "learning_rate": 1.1031533333333334e-05, + "loss": 1.2835421752929688, + "step": 584800 + }, + { + "epoch": 77.98666666666666, + "grad_norm": 0.9356921911239624, + "learning_rate": 1.1024866666666667e-05, + "loss": 1.2813420104980469, + "step": 584900 + }, + { + "epoch": 78.0, + "grad_norm": 0.9255989193916321, + "learning_rate": 1.10182e-05, + "loss": 1.2774526977539062, + "step": 585000 + }, + { + "epoch": 78.01333333333334, + "grad_norm": 0.8795908093452454, + "learning_rate": 1.1011600000000001e-05, + "loss": 1.249991455078125, + "step": 585100 + }, + { + "epoch": 78.02666666666667, + "grad_norm": 0.9239431619644165, + "learning_rate": 1.1004933333333334e-05, + "loss": 1.2514543151855468, + "step": 585200 + }, + { + "epoch": 78.04, + "grad_norm": 0.8539057374000549, + "learning_rate": 1.0998266666666668e-05, + "loss": 1.2499234008789062, + "step": 585300 + }, + { + "epoch": 78.05333333333333, + "grad_norm": 0.8485280871391296, + "learning_rate": 1.09916e-05, + "loss": 1.2504238891601562, + "step": 585400 + }, + { + "epoch": 78.06666666666666, + "grad_norm": 0.8902794718742371, + "learning_rate": 1.0984933333333334e-05, + "loss": 1.2511708068847656, + "step": 585500 + }, + { + "epoch": 78.08, + "grad_norm": 0.9052618741989136, + "learning_rate": 1.0978266666666668e-05, + "loss": 1.2486000061035156, + "step": 585600 + }, + { + "epoch": 78.09333333333333, + "grad_norm": 0.8789846897125244, + "learning_rate": 1.09716e-05, + "loss": 1.251748275756836, + "step": 585700 + }, + { + "epoch": 78.10666666666667, + "grad_norm": 0.885184109210968, + "learning_rate": 1.0964933333333334e-05, + "loss": 1.2532960510253905, + "step": 585800 + }, + { + "epoch": 78.12, + "grad_norm": 0.8550071120262146, + "learning_rate": 1.0958266666666666e-05, + "loss": 1.2503804779052734, + "step": 585900 + }, + { + "epoch": 78.13333333333334, + "grad_norm": 0.9323640465736389, + "learning_rate": 1.09516e-05, + "loss": 1.2534485626220704, + "step": 586000 + }, + { + "epoch": 78.14666666666666, + "grad_norm": 0.8850072026252747, + "learning_rate": 1.0944933333333334e-05, + "loss": 1.2556941986083985, + "step": 586100 + }, + { + "epoch": 78.16, + "grad_norm": 0.8399662971496582, + "learning_rate": 1.0938266666666668e-05, + "loss": 1.2542850494384765, + "step": 586200 + }, + { + "epoch": 78.17333333333333, + "grad_norm": 0.919593095779419, + "learning_rate": 1.09316e-05, + "loss": 1.2562599182128906, + "step": 586300 + }, + { + "epoch": 78.18666666666667, + "grad_norm": 0.8908868432044983, + "learning_rate": 1.0924933333333334e-05, + "loss": 1.2563451385498048, + "step": 586400 + }, + { + "epoch": 78.2, + "grad_norm": 0.8848934769630432, + "learning_rate": 1.0918266666666667e-05, + "loss": 1.2524043273925782, + "step": 586500 + }, + { + "epoch": 78.21333333333334, + "grad_norm": 0.8833860158920288, + "learning_rate": 1.09116e-05, + "loss": 1.2593082427978515, + "step": 586600 + }, + { + "epoch": 78.22666666666667, + "grad_norm": 0.8572924733161926, + "learning_rate": 1.0904933333333333e-05, + "loss": 1.2562625885009766, + "step": 586700 + }, + { + "epoch": 78.24, + "grad_norm": 0.8951097726821899, + "learning_rate": 1.0898266666666667e-05, + "loss": 1.2585964965820313, + "step": 586800 + }, + { + "epoch": 78.25333333333333, + "grad_norm": 0.879523515701294, + "learning_rate": 1.0891600000000001e-05, + "loss": 1.2556568908691406, + "step": 586900 + }, + { + "epoch": 78.26666666666667, + "grad_norm": 0.9368571043014526, + "learning_rate": 1.0884933333333335e-05, + "loss": 1.2600704193115235, + "step": 587000 + }, + { + "epoch": 78.28, + "grad_norm": 0.8886348009109497, + "learning_rate": 1.0878333333333334e-05, + "loss": 1.2605961608886718, + "step": 587100 + }, + { + "epoch": 78.29333333333334, + "grad_norm": 0.8580905199050903, + "learning_rate": 1.0871666666666668e-05, + "loss": 1.2552318572998047, + "step": 587200 + }, + { + "epoch": 78.30666666666667, + "grad_norm": 0.9353607296943665, + "learning_rate": 1.0865e-05, + "loss": 1.256221389770508, + "step": 587300 + }, + { + "epoch": 78.32, + "grad_norm": 0.8265605568885803, + "learning_rate": 1.0858333333333334e-05, + "loss": 1.2583871459960938, + "step": 587400 + }, + { + "epoch": 78.33333333333333, + "grad_norm": 0.956251859664917, + "learning_rate": 1.0851666666666666e-05, + "loss": 1.2614502716064453, + "step": 587500 + }, + { + "epoch": 78.34666666666666, + "grad_norm": 0.8545957207679749, + "learning_rate": 1.0845e-05, + "loss": 1.2584918212890626, + "step": 587600 + }, + { + "epoch": 78.36, + "grad_norm": 0.8909661769866943, + "learning_rate": 1.0838333333333334e-05, + "loss": 1.2615117645263672, + "step": 587700 + }, + { + "epoch": 78.37333333333333, + "grad_norm": 0.9129730463027954, + "learning_rate": 1.0831666666666668e-05, + "loss": 1.255586166381836, + "step": 587800 + }, + { + "epoch": 78.38666666666667, + "grad_norm": 0.8736388683319092, + "learning_rate": 1.0825e-05, + "loss": 1.2649986267089843, + "step": 587900 + }, + { + "epoch": 78.4, + "grad_norm": 0.931929886341095, + "learning_rate": 1.0818333333333335e-05, + "loss": 1.2623023223876952, + "step": 588000 + }, + { + "epoch": 78.41333333333333, + "grad_norm": 0.9257421493530273, + "learning_rate": 1.0811666666666667e-05, + "loss": 1.258783950805664, + "step": 588100 + }, + { + "epoch": 78.42666666666666, + "grad_norm": 0.8989784717559814, + "learning_rate": 1.0804999999999999e-05, + "loss": 1.2628663635253907, + "step": 588200 + }, + { + "epoch": 78.44, + "grad_norm": 0.9080356359481812, + "learning_rate": 1.0798333333333335e-05, + "loss": 1.2631582641601562, + "step": 588300 + }, + { + "epoch": 78.45333333333333, + "grad_norm": 0.864266574382782, + "learning_rate": 1.0791666666666667e-05, + "loss": 1.2602297973632812, + "step": 588400 + }, + { + "epoch": 78.46666666666667, + "grad_norm": 0.9377700686454773, + "learning_rate": 1.0785000000000001e-05, + "loss": 1.2689905548095703, + "step": 588500 + }, + { + "epoch": 78.48, + "grad_norm": 0.9184496998786926, + "learning_rate": 1.0778333333333333e-05, + "loss": 1.2642398834228517, + "step": 588600 + }, + { + "epoch": 78.49333333333334, + "grad_norm": 0.9387530088424683, + "learning_rate": 1.0771666666666667e-05, + "loss": 1.2622312164306642, + "step": 588700 + }, + { + "epoch": 78.50666666666666, + "grad_norm": 0.8708038926124573, + "learning_rate": 1.0765e-05, + "loss": 1.265206298828125, + "step": 588800 + }, + { + "epoch": 78.52, + "grad_norm": 0.8846192955970764, + "learning_rate": 1.0758333333333333e-05, + "loss": 1.2633629608154298, + "step": 588900 + }, + { + "epoch": 78.53333333333333, + "grad_norm": 0.8851326704025269, + "learning_rate": 1.0751666666666667e-05, + "loss": 1.266950912475586, + "step": 589000 + }, + { + "epoch": 78.54666666666667, + "grad_norm": 0.9254246950149536, + "learning_rate": 1.0745000000000001e-05, + "loss": 1.2651148223876953, + "step": 589100 + }, + { + "epoch": 78.56, + "grad_norm": 0.886559784412384, + "learning_rate": 1.07384e-05, + "loss": 1.2686289215087891, + "step": 589200 + }, + { + "epoch": 78.57333333333334, + "grad_norm": 0.8676953315734863, + "learning_rate": 1.0731733333333334e-05, + "loss": 1.2632874298095702, + "step": 589300 + }, + { + "epoch": 78.58666666666667, + "grad_norm": 0.911446213722229, + "learning_rate": 1.0725066666666667e-05, + "loss": 1.2674727630615235, + "step": 589400 + }, + { + "epoch": 78.6, + "grad_norm": 0.9178944230079651, + "learning_rate": 1.07184e-05, + "loss": 1.2665594482421876, + "step": 589500 + }, + { + "epoch": 78.61333333333333, + "grad_norm": 0.9570107460021973, + "learning_rate": 1.0711733333333333e-05, + "loss": 1.2660420989990235, + "step": 589600 + }, + { + "epoch": 78.62666666666667, + "grad_norm": 0.9041311144828796, + "learning_rate": 1.0705066666666667e-05, + "loss": 1.2692436218261718, + "step": 589700 + }, + { + "epoch": 78.64, + "grad_norm": 0.8909561634063721, + "learning_rate": 1.06984e-05, + "loss": 1.2753994750976563, + "step": 589800 + }, + { + "epoch": 78.65333333333334, + "grad_norm": 0.883059561252594, + "learning_rate": 1.0691733333333335e-05, + "loss": 1.2698513793945312, + "step": 589900 + }, + { + "epoch": 78.66666666666667, + "grad_norm": 0.8872081637382507, + "learning_rate": 1.0685066666666667e-05, + "loss": 1.268332748413086, + "step": 590000 + }, + { + "epoch": 78.68, + "grad_norm": 0.9364659190177917, + "learning_rate": 1.0678400000000001e-05, + "loss": 1.2715838623046876, + "step": 590100 + }, + { + "epoch": 78.69333333333333, + "grad_norm": 0.8873387575149536, + "learning_rate": 1.0671733333333333e-05, + "loss": 1.2653190612792968, + "step": 590200 + }, + { + "epoch": 78.70666666666666, + "grad_norm": 0.9163351058959961, + "learning_rate": 1.0665066666666667e-05, + "loss": 1.2706766510009766, + "step": 590300 + }, + { + "epoch": 78.72, + "grad_norm": 0.8802734017372131, + "learning_rate": 1.0658400000000001e-05, + "loss": 1.2680073547363282, + "step": 590400 + }, + { + "epoch": 78.73333333333333, + "grad_norm": 0.8930662870407104, + "learning_rate": 1.0651733333333335e-05, + "loss": 1.2715739440917968, + "step": 590500 + }, + { + "epoch": 78.74666666666667, + "grad_norm": 0.8921145796775818, + "learning_rate": 1.0645066666666667e-05, + "loss": 1.2718709564208985, + "step": 590600 + }, + { + "epoch": 78.76, + "grad_norm": 0.9061724543571472, + "learning_rate": 1.0638400000000001e-05, + "loss": 1.2666871643066406, + "step": 590700 + }, + { + "epoch": 78.77333333333333, + "grad_norm": 0.9512609839439392, + "learning_rate": 1.0631733333333334e-05, + "loss": 1.2725698852539062, + "step": 590800 + }, + { + "epoch": 78.78666666666666, + "grad_norm": 0.8718198537826538, + "learning_rate": 1.0625066666666666e-05, + "loss": 1.2700515747070313, + "step": 590900 + }, + { + "epoch": 78.8, + "grad_norm": 0.9610340595245361, + "learning_rate": 1.06184e-05, + "loss": 1.2690962982177734, + "step": 591000 + }, + { + "epoch": 78.81333333333333, + "grad_norm": 0.9104143977165222, + "learning_rate": 1.0611733333333334e-05, + "loss": 1.2665902709960937, + "step": 591100 + }, + { + "epoch": 78.82666666666667, + "grad_norm": 0.9109393358230591, + "learning_rate": 1.0605133333333333e-05, + "loss": 1.2704518127441407, + "step": 591200 + }, + { + "epoch": 78.84, + "grad_norm": 0.9059329032897949, + "learning_rate": 1.0598466666666667e-05, + "loss": 1.273515396118164, + "step": 591300 + }, + { + "epoch": 78.85333333333334, + "grad_norm": 0.9386402368545532, + "learning_rate": 1.05918e-05, + "loss": 1.2749934387207031, + "step": 591400 + }, + { + "epoch": 78.86666666666666, + "grad_norm": 0.8592071533203125, + "learning_rate": 1.0585133333333335e-05, + "loss": 1.274554214477539, + "step": 591500 + }, + { + "epoch": 78.88, + "grad_norm": 0.903801679611206, + "learning_rate": 1.0578466666666667e-05, + "loss": 1.2715023040771485, + "step": 591600 + }, + { + "epoch": 78.89333333333333, + "grad_norm": 0.9000576138496399, + "learning_rate": 1.0571800000000001e-05, + "loss": 1.2724392700195313, + "step": 591700 + }, + { + "epoch": 78.90666666666667, + "grad_norm": 0.9397499561309814, + "learning_rate": 1.0565133333333333e-05, + "loss": 1.2701983642578125, + "step": 591800 + }, + { + "epoch": 78.92, + "grad_norm": 0.9019601345062256, + "learning_rate": 1.0558466666666667e-05, + "loss": 1.2739637756347657, + "step": 591900 + }, + { + "epoch": 78.93333333333334, + "grad_norm": 0.9267058372497559, + "learning_rate": 1.0551800000000001e-05, + "loss": 1.278916778564453, + "step": 592000 + }, + { + "epoch": 78.94666666666667, + "grad_norm": 0.9432265162467957, + "learning_rate": 1.0545133333333333e-05, + "loss": 1.2765323638916015, + "step": 592100 + }, + { + "epoch": 78.96, + "grad_norm": 0.905218243598938, + "learning_rate": 1.0538466666666667e-05, + "loss": 1.2738363647460937, + "step": 592200 + }, + { + "epoch": 78.97333333333333, + "grad_norm": 0.8922687768936157, + "learning_rate": 1.05318e-05, + "loss": 1.2749046325683593, + "step": 592300 + }, + { + "epoch": 78.98666666666666, + "grad_norm": 0.9277877807617188, + "learning_rate": 1.0525133333333334e-05, + "loss": 1.2721634674072266, + "step": 592400 + }, + { + "epoch": 79.0, + "grad_norm": 0.9030377268791199, + "learning_rate": 1.0518466666666666e-05, + "loss": 1.2747603607177735, + "step": 592500 + }, + { + "epoch": 79.01333333333334, + "grad_norm": 0.8378993272781372, + "learning_rate": 1.0511800000000002e-05, + "loss": 1.24189208984375, + "step": 592600 + }, + { + "epoch": 79.02666666666667, + "grad_norm": 0.9222813248634338, + "learning_rate": 1.0505133333333334e-05, + "loss": 1.2447259521484375, + "step": 592700 + }, + { + "epoch": 79.04, + "grad_norm": 0.8688544034957886, + "learning_rate": 1.0498466666666668e-05, + "loss": 1.2454937744140624, + "step": 592800 + }, + { + "epoch": 79.05333333333333, + "grad_norm": 0.8973101377487183, + "learning_rate": 1.04918e-05, + "loss": 1.2433192443847656, + "step": 592900 + }, + { + "epoch": 79.06666666666666, + "grad_norm": 0.868934154510498, + "learning_rate": 1.0485133333333334e-05, + "loss": 1.2476187133789063, + "step": 593000 + }, + { + "epoch": 79.08, + "grad_norm": 0.9051042795181274, + "learning_rate": 1.0478466666666666e-05, + "loss": 1.246639404296875, + "step": 593100 + }, + { + "epoch": 79.09333333333333, + "grad_norm": 0.8593751192092896, + "learning_rate": 1.0471866666666667e-05, + "loss": 1.2500391387939453, + "step": 593200 + }, + { + "epoch": 79.10666666666667, + "grad_norm": 0.8476565480232239, + "learning_rate": 1.04652e-05, + "loss": 1.246165542602539, + "step": 593300 + }, + { + "epoch": 79.12, + "grad_norm": 0.8801284432411194, + "learning_rate": 1.0458533333333333e-05, + "loss": 1.246192092895508, + "step": 593400 + }, + { + "epoch": 79.13333333333334, + "grad_norm": 0.8846884369850159, + "learning_rate": 1.0451866666666667e-05, + "loss": 1.2439684295654296, + "step": 593500 + }, + { + "epoch": 79.14666666666666, + "grad_norm": 0.9294757843017578, + "learning_rate": 1.0445200000000001e-05, + "loss": 1.2488855743408203, + "step": 593600 + }, + { + "epoch": 79.16, + "grad_norm": 0.8399421572685242, + "learning_rate": 1.0438533333333333e-05, + "loss": 1.2482614135742187, + "step": 593700 + }, + { + "epoch": 79.17333333333333, + "grad_norm": 0.911873459815979, + "learning_rate": 1.0431866666666667e-05, + "loss": 1.2482553100585938, + "step": 593800 + }, + { + "epoch": 79.18666666666667, + "grad_norm": 0.8314080834388733, + "learning_rate": 1.04252e-05, + "loss": 1.247007827758789, + "step": 593900 + }, + { + "epoch": 79.2, + "grad_norm": 0.9181894063949585, + "learning_rate": 1.0418533333333334e-05, + "loss": 1.2536485290527344, + "step": 594000 + }, + { + "epoch": 79.21333333333334, + "grad_norm": 0.8740313649177551, + "learning_rate": 1.0411866666666668e-05, + "loss": 1.2519398498535157, + "step": 594100 + }, + { + "epoch": 79.22666666666667, + "grad_norm": 0.9068511128425598, + "learning_rate": 1.0405200000000002e-05, + "loss": 1.2476766967773438, + "step": 594200 + }, + { + "epoch": 79.24, + "grad_norm": 0.9321922063827515, + "learning_rate": 1.0398533333333334e-05, + "loss": 1.2513009643554687, + "step": 594300 + }, + { + "epoch": 79.25333333333333, + "grad_norm": 0.888857901096344, + "learning_rate": 1.0391866666666668e-05, + "loss": 1.2504447937011718, + "step": 594400 + }, + { + "epoch": 79.26666666666667, + "grad_norm": 0.9641751050949097, + "learning_rate": 1.03852e-05, + "loss": 1.2548712921142577, + "step": 594500 + }, + { + "epoch": 79.28, + "grad_norm": 0.8727660775184631, + "learning_rate": 1.0378533333333332e-05, + "loss": 1.2525074005126953, + "step": 594600 + }, + { + "epoch": 79.29333333333334, + "grad_norm": 0.8915736675262451, + "learning_rate": 1.0371866666666668e-05, + "loss": 1.2563622283935547, + "step": 594700 + }, + { + "epoch": 79.30666666666667, + "grad_norm": 0.8992096781730652, + "learning_rate": 1.03652e-05, + "loss": 1.250523452758789, + "step": 594800 + }, + { + "epoch": 79.32, + "grad_norm": 0.9542332291603088, + "learning_rate": 1.0358533333333334e-05, + "loss": 1.2581777954101563, + "step": 594900 + }, + { + "epoch": 79.33333333333333, + "grad_norm": 0.8994565606117249, + "learning_rate": 1.0351866666666667e-05, + "loss": 1.2560828399658204, + "step": 595000 + }, + { + "epoch": 79.34666666666666, + "grad_norm": 0.9147607088088989, + "learning_rate": 1.03452e-05, + "loss": 1.2500714111328124, + "step": 595100 + }, + { + "epoch": 79.36, + "grad_norm": 0.9078018069267273, + "learning_rate": 1.0338600000000001e-05, + "loss": 1.257826385498047, + "step": 595200 + }, + { + "epoch": 79.37333333333333, + "grad_norm": 0.9065786004066467, + "learning_rate": 1.0331933333333334e-05, + "loss": 1.2560930633544922, + "step": 595300 + }, + { + "epoch": 79.38666666666667, + "grad_norm": 0.9030917286872864, + "learning_rate": 1.0325266666666667e-05, + "loss": 1.2558876800537109, + "step": 595400 + }, + { + "epoch": 79.4, + "grad_norm": 0.9185391664505005, + "learning_rate": 1.03186e-05, + "loss": 1.2556648254394531, + "step": 595500 + }, + { + "epoch": 79.41333333333333, + "grad_norm": 0.8820536136627197, + "learning_rate": 1.0311933333333334e-05, + "loss": 1.25557373046875, + "step": 595600 + }, + { + "epoch": 79.42666666666666, + "grad_norm": 0.872558057308197, + "learning_rate": 1.0305266666666668e-05, + "loss": 1.2546512603759765, + "step": 595700 + }, + { + "epoch": 79.44, + "grad_norm": 0.9479767680168152, + "learning_rate": 1.02986e-05, + "loss": 1.2602999114990234, + "step": 595800 + }, + { + "epoch": 79.45333333333333, + "grad_norm": 0.8801756501197815, + "learning_rate": 1.0291933333333334e-05, + "loss": 1.2596167755126952, + "step": 595900 + }, + { + "epoch": 79.46666666666667, + "grad_norm": 0.8682863116264343, + "learning_rate": 1.0285266666666666e-05, + "loss": 1.2621781158447265, + "step": 596000 + }, + { + "epoch": 79.48, + "grad_norm": 0.9202213883399963, + "learning_rate": 1.02786e-05, + "loss": 1.2601839447021483, + "step": 596100 + }, + { + "epoch": 79.49333333333334, + "grad_norm": 0.8812510371208191, + "learning_rate": 1.0271933333333334e-05, + "loss": 1.2634574890136718, + "step": 596200 + }, + { + "epoch": 79.50666666666666, + "grad_norm": 0.9358564019203186, + "learning_rate": 1.0265266666666668e-05, + "loss": 1.2560010528564454, + "step": 596300 + }, + { + "epoch": 79.52, + "grad_norm": 0.9232118725776672, + "learning_rate": 1.02586e-05, + "loss": 1.2569718170166015, + "step": 596400 + }, + { + "epoch": 79.53333333333333, + "grad_norm": 0.9304707050323486, + "learning_rate": 1.0251933333333334e-05, + "loss": 1.2577223205566406, + "step": 596500 + }, + { + "epoch": 79.54666666666667, + "grad_norm": 0.8667801022529602, + "learning_rate": 1.0245266666666667e-05, + "loss": 1.2640282440185546, + "step": 596600 + }, + { + "epoch": 79.56, + "grad_norm": 0.9173431992530823, + "learning_rate": 1.02386e-05, + "loss": 1.2618460083007812, + "step": 596700 + }, + { + "epoch": 79.57333333333334, + "grad_norm": 0.9202678203582764, + "learning_rate": 1.0231933333333334e-05, + "loss": 1.2610095977783202, + "step": 596800 + }, + { + "epoch": 79.58666666666667, + "grad_norm": 0.8916814923286438, + "learning_rate": 1.0225266666666668e-05, + "loss": 1.2634732055664062, + "step": 596900 + }, + { + "epoch": 79.6, + "grad_norm": 0.8657307624816895, + "learning_rate": 1.02186e-05, + "loss": 1.2660941314697265, + "step": 597000 + }, + { + "epoch": 79.61333333333333, + "grad_norm": 0.948290228843689, + "learning_rate": 1.0211933333333335e-05, + "loss": 1.2630126953125, + "step": 597100 + }, + { + "epoch": 79.62666666666667, + "grad_norm": 0.8405894041061401, + "learning_rate": 1.0205333333333334e-05, + "loss": 1.2619757080078124, + "step": 597200 + }, + { + "epoch": 79.64, + "grad_norm": 0.9192798137664795, + "learning_rate": 1.0198666666666668e-05, + "loss": 1.2630854797363282, + "step": 597300 + }, + { + "epoch": 79.65333333333334, + "grad_norm": 0.8935139179229736, + "learning_rate": 1.0192e-05, + "loss": 1.2599110412597656, + "step": 597400 + }, + { + "epoch": 79.66666666666667, + "grad_norm": 0.9552688598632812, + "learning_rate": 1.0185333333333334e-05, + "loss": 1.2634823608398438, + "step": 597500 + }, + { + "epoch": 79.68, + "grad_norm": 0.9792049527168274, + "learning_rate": 1.0178666666666666e-05, + "loss": 1.2599063110351563, + "step": 597600 + }, + { + "epoch": 79.69333333333333, + "grad_norm": 0.8858845233917236, + "learning_rate": 1.0172e-05, + "loss": 1.262656021118164, + "step": 597700 + }, + { + "epoch": 79.70666666666666, + "grad_norm": 0.8454314470291138, + "learning_rate": 1.0165333333333334e-05, + "loss": 1.2662943267822266, + "step": 597800 + }, + { + "epoch": 79.72, + "grad_norm": 0.8796765208244324, + "learning_rate": 1.0158666666666668e-05, + "loss": 1.2636601257324218, + "step": 597900 + }, + { + "epoch": 79.73333333333333, + "grad_norm": 0.9347110390663147, + "learning_rate": 1.0152e-05, + "loss": 1.2646561431884766, + "step": 598000 + }, + { + "epoch": 79.74666666666667, + "grad_norm": 0.8910204172134399, + "learning_rate": 1.0145333333333334e-05, + "loss": 1.268468780517578, + "step": 598100 + }, + { + "epoch": 79.76, + "grad_norm": 0.8769538998603821, + "learning_rate": 1.0138666666666667e-05, + "loss": 1.2662653350830078, + "step": 598200 + }, + { + "epoch": 79.77333333333333, + "grad_norm": 0.8732584714889526, + "learning_rate": 1.0132e-05, + "loss": 1.2627813720703125, + "step": 598300 + }, + { + "epoch": 79.78666666666666, + "grad_norm": 0.927267849445343, + "learning_rate": 1.0125333333333335e-05, + "loss": 1.2639500427246093, + "step": 598400 + }, + { + "epoch": 79.8, + "grad_norm": 0.8972467184066772, + "learning_rate": 1.0118666666666667e-05, + "loss": 1.265300064086914, + "step": 598500 + }, + { + "epoch": 79.81333333333333, + "grad_norm": 0.9230730533599854, + "learning_rate": 1.0112e-05, + "loss": 1.2670893096923828, + "step": 598600 + }, + { + "epoch": 79.82666666666667, + "grad_norm": 0.8692210912704468, + "learning_rate": 1.0105333333333333e-05, + "loss": 1.2643206787109376, + "step": 598700 + }, + { + "epoch": 79.84, + "grad_norm": 0.9208062291145325, + "learning_rate": 1.0098666666666667e-05, + "loss": 1.266007766723633, + "step": 598800 + }, + { + "epoch": 79.85333333333334, + "grad_norm": 0.8955254554748535, + "learning_rate": 1.0092e-05, + "loss": 1.2656437683105468, + "step": 598900 + }, + { + "epoch": 79.86666666666666, + "grad_norm": 0.8898331522941589, + "learning_rate": 1.0085333333333335e-05, + "loss": 1.268927993774414, + "step": 599000 + }, + { + "epoch": 79.88, + "grad_norm": 0.9004736542701721, + "learning_rate": 1.0078666666666667e-05, + "loss": 1.2676744079589843, + "step": 599100 + }, + { + "epoch": 79.89333333333333, + "grad_norm": 0.879002571105957, + "learning_rate": 1.0072066666666668e-05, + "loss": 1.268192672729492, + "step": 599200 + }, + { + "epoch": 79.90666666666667, + "grad_norm": 0.8479452133178711, + "learning_rate": 1.00654e-05, + "loss": 1.2690647888183593, + "step": 599300 + }, + { + "epoch": 79.92, + "grad_norm": 0.9314066171646118, + "learning_rate": 1.0058733333333334e-05, + "loss": 1.2657173156738282, + "step": 599400 + }, + { + "epoch": 79.93333333333334, + "grad_norm": 0.9445568919181824, + "learning_rate": 1.0052066666666666e-05, + "loss": 1.268585205078125, + "step": 599500 + }, + { + "epoch": 79.94666666666667, + "grad_norm": 0.8672616481781006, + "learning_rate": 1.00454e-05, + "loss": 1.2684510040283203, + "step": 599600 + }, + { + "epoch": 79.96, + "grad_norm": 0.9522123336791992, + "learning_rate": 1.0038733333333333e-05, + "loss": 1.2633151245117187, + "step": 599700 + }, + { + "epoch": 79.97333333333333, + "grad_norm": 0.8980398774147034, + "learning_rate": 1.0032066666666667e-05, + "loss": 1.2709536743164063, + "step": 599800 + }, + { + "epoch": 79.98666666666666, + "grad_norm": 0.9412267804145813, + "learning_rate": 1.00254e-05, + "loss": 1.2736549377441406, + "step": 599900 + }, + { + "epoch": 80.0, + "grad_norm": 0.958734929561615, + "learning_rate": 1.0018733333333335e-05, + "loss": 1.2687025451660157, + "step": 600000 + }, + { + "epoch": 80.01333333333334, + "grad_norm": 0.9288617968559265, + "learning_rate": 1.0012066666666667e-05, + "loss": 1.2443870544433593, + "step": 600100 + }, + { + "epoch": 80.02666666666667, + "grad_norm": 0.9338223338127136, + "learning_rate": 1.00054e-05, + "loss": 1.243735122680664, + "step": 600200 + }, + { + "epoch": 80.04, + "grad_norm": 0.9002096056938171, + "learning_rate": 9.998733333333333e-06, + "loss": 1.2413943481445313, + "step": 600300 + }, + { + "epoch": 80.05333333333333, + "grad_norm": 0.9089773297309875, + "learning_rate": 9.992066666666667e-06, + "loss": 1.2424115753173828, + "step": 600400 + }, + { + "epoch": 80.06666666666666, + "grad_norm": 0.919051468372345, + "learning_rate": 9.985400000000001e-06, + "loss": 1.2413393402099608, + "step": 600500 + }, + { + "epoch": 80.08, + "grad_norm": 0.9045332670211792, + "learning_rate": 9.978733333333335e-06, + "loss": 1.2448829650878905, + "step": 600600 + }, + { + "epoch": 80.09333333333333, + "grad_norm": 0.9014262557029724, + "learning_rate": 9.972066666666667e-06, + "loss": 1.2456900024414062, + "step": 600700 + }, + { + "epoch": 80.10666666666667, + "grad_norm": 0.9010103344917297, + "learning_rate": 9.965400000000001e-06, + "loss": 1.2381111907958984, + "step": 600800 + }, + { + "epoch": 80.12, + "grad_norm": 0.8444560170173645, + "learning_rate": 9.958733333333333e-06, + "loss": 1.2418882751464844, + "step": 600900 + }, + { + "epoch": 80.13333333333334, + "grad_norm": 0.9013086557388306, + "learning_rate": 9.952066666666666e-06, + "loss": 1.2470101165771483, + "step": 601000 + }, + { + "epoch": 80.14666666666666, + "grad_norm": 0.8963460326194763, + "learning_rate": 9.945400000000001e-06, + "loss": 1.2434548950195312, + "step": 601100 + }, + { + "epoch": 80.16, + "grad_norm": 0.8968179821968079, + "learning_rate": 9.9388e-06, + "loss": 1.244561996459961, + "step": 601200 + }, + { + "epoch": 80.17333333333333, + "grad_norm": 0.8898792862892151, + "learning_rate": 9.932133333333333e-06, + "loss": 1.2477424621582032, + "step": 601300 + }, + { + "epoch": 80.18666666666667, + "grad_norm": 0.9151734709739685, + "learning_rate": 9.925466666666668e-06, + "loss": 1.2453786468505859, + "step": 601400 + }, + { + "epoch": 80.2, + "grad_norm": 0.8821862936019897, + "learning_rate": 9.9188e-06, + "loss": 1.250970993041992, + "step": 601500 + }, + { + "epoch": 80.21333333333334, + "grad_norm": 0.8794935941696167, + "learning_rate": 9.912133333333335e-06, + "loss": 1.2464175415039063, + "step": 601600 + }, + { + "epoch": 80.22666666666667, + "grad_norm": 0.8836155533790588, + "learning_rate": 9.905466666666667e-06, + "loss": 1.2436624908447265, + "step": 601700 + }, + { + "epoch": 80.24, + "grad_norm": 0.881230354309082, + "learning_rate": 9.8988e-06, + "loss": 1.2490660095214843, + "step": 601800 + }, + { + "epoch": 80.25333333333333, + "grad_norm": 0.9362554550170898, + "learning_rate": 9.892133333333333e-06, + "loss": 1.2497845458984376, + "step": 601900 + }, + { + "epoch": 80.26666666666667, + "grad_norm": 0.8518027663230896, + "learning_rate": 9.885466666666667e-06, + "loss": 1.247543487548828, + "step": 602000 + }, + { + "epoch": 80.28, + "grad_norm": 0.9236149787902832, + "learning_rate": 9.878800000000001e-06, + "loss": 1.2505050659179688, + "step": 602100 + }, + { + "epoch": 80.29333333333334, + "grad_norm": 0.9130676984786987, + "learning_rate": 9.872133333333333e-06, + "loss": 1.2465634918212891, + "step": 602200 + }, + { + "epoch": 80.30666666666667, + "grad_norm": 0.9139811992645264, + "learning_rate": 9.865466666666667e-06, + "loss": 1.2522836303710938, + "step": 602300 + }, + { + "epoch": 80.32, + "grad_norm": 0.8871936202049255, + "learning_rate": 9.8588e-06, + "loss": 1.2477921295166015, + "step": 602400 + }, + { + "epoch": 80.33333333333333, + "grad_norm": 0.9056395888328552, + "learning_rate": 9.852133333333333e-06, + "loss": 1.25315185546875, + "step": 602500 + }, + { + "epoch": 80.34666666666666, + "grad_norm": 0.881733238697052, + "learning_rate": 9.845466666666667e-06, + "loss": 1.25149169921875, + "step": 602600 + }, + { + "epoch": 80.36, + "grad_norm": 0.8879048228263855, + "learning_rate": 9.838800000000001e-06, + "loss": 1.2514451599121095, + "step": 602700 + }, + { + "epoch": 80.37333333333333, + "grad_norm": 0.9176741242408752, + "learning_rate": 9.832133333333334e-06, + "loss": 1.2507662963867188, + "step": 602800 + }, + { + "epoch": 80.38666666666667, + "grad_norm": 0.8852501511573792, + "learning_rate": 9.825466666666668e-06, + "loss": 1.2502633666992187, + "step": 602900 + }, + { + "epoch": 80.4, + "grad_norm": 0.8856446743011475, + "learning_rate": 9.8188e-06, + "loss": 1.2474871826171876, + "step": 603000 + }, + { + "epoch": 80.41333333333333, + "grad_norm": 0.7928372621536255, + "learning_rate": 9.812133333333334e-06, + "loss": 1.252954635620117, + "step": 603100 + }, + { + "epoch": 80.42666666666666, + "grad_norm": 0.9248310327529907, + "learning_rate": 9.805533333333333e-06, + "loss": 1.255914306640625, + "step": 603200 + }, + { + "epoch": 80.44, + "grad_norm": 0.8597677946090698, + "learning_rate": 9.798866666666667e-06, + "loss": 1.2539872741699218, + "step": 603300 + }, + { + "epoch": 80.45333333333333, + "grad_norm": 0.9030819535255432, + "learning_rate": 9.7922e-06, + "loss": 1.2549383544921875, + "step": 603400 + }, + { + "epoch": 80.46666666666667, + "grad_norm": 0.9179391860961914, + "learning_rate": 9.785533333333335e-06, + "loss": 1.255010757446289, + "step": 603500 + }, + { + "epoch": 80.48, + "grad_norm": 0.8762322068214417, + "learning_rate": 9.778866666666667e-06, + "loss": 1.2511839294433593, + "step": 603600 + }, + { + "epoch": 80.49333333333334, + "grad_norm": 0.9009326696395874, + "learning_rate": 9.772200000000001e-06, + "loss": 1.2546797180175782, + "step": 603700 + }, + { + "epoch": 80.50666666666666, + "grad_norm": 0.8604843020439148, + "learning_rate": 9.765533333333333e-06, + "loss": 1.2558490753173828, + "step": 603800 + }, + { + "epoch": 80.52, + "grad_norm": 0.7724893093109131, + "learning_rate": 9.758866666666667e-06, + "loss": 1.254795150756836, + "step": 603900 + }, + { + "epoch": 80.53333333333333, + "grad_norm": 0.9349945783615112, + "learning_rate": 9.7522e-06, + "loss": 1.2588446044921875, + "step": 604000 + }, + { + "epoch": 80.54666666666667, + "grad_norm": 0.8668858408927917, + "learning_rate": 9.745533333333334e-06, + "loss": 1.2564624786376952, + "step": 604100 + }, + { + "epoch": 80.56, + "grad_norm": 0.872798502445221, + "learning_rate": 9.738866666666667e-06, + "loss": 1.2593098449707032, + "step": 604200 + }, + { + "epoch": 80.57333333333334, + "grad_norm": 0.8730403780937195, + "learning_rate": 9.732200000000001e-06, + "loss": 1.2532449340820313, + "step": 604300 + }, + { + "epoch": 80.58666666666667, + "grad_norm": 0.9731208682060242, + "learning_rate": 9.725533333333334e-06, + "loss": 1.258994598388672, + "step": 604400 + }, + { + "epoch": 80.6, + "grad_norm": 0.9248079061508179, + "learning_rate": 9.718866666666668e-06, + "loss": 1.2537442779541015, + "step": 604500 + }, + { + "epoch": 80.61333333333333, + "grad_norm": 0.8961241841316223, + "learning_rate": 9.7122e-06, + "loss": 1.2533512115478516, + "step": 604600 + }, + { + "epoch": 80.62666666666667, + "grad_norm": 0.8987104296684265, + "learning_rate": 9.705533333333334e-06, + "loss": 1.2551846313476562, + "step": 604700 + }, + { + "epoch": 80.64, + "grad_norm": 0.8422402143478394, + "learning_rate": 9.698866666666668e-06, + "loss": 1.2600907135009765, + "step": 604800 + }, + { + "epoch": 80.65333333333334, + "grad_norm": 0.9396112561225891, + "learning_rate": 9.6922e-06, + "loss": 1.2541912841796874, + "step": 604900 + }, + { + "epoch": 80.66666666666667, + "grad_norm": 0.8763729333877563, + "learning_rate": 9.685533333333334e-06, + "loss": 1.255435791015625, + "step": 605000 + }, + { + "epoch": 80.68, + "grad_norm": 0.9729053974151611, + "learning_rate": 9.678866666666666e-06, + "loss": 1.2559229278564452, + "step": 605100 + }, + { + "epoch": 80.69333333333333, + "grad_norm": 0.9245437979698181, + "learning_rate": 9.6722e-06, + "loss": 1.2618405151367187, + "step": 605200 + }, + { + "epoch": 80.70666666666666, + "grad_norm": 0.9225579500198364, + "learning_rate": 9.665600000000001e-06, + "loss": 1.25842529296875, + "step": 605300 + }, + { + "epoch": 80.72, + "grad_norm": 0.8995950222015381, + "learning_rate": 9.658933333333333e-06, + "loss": 1.2611757659912108, + "step": 605400 + }, + { + "epoch": 80.73333333333333, + "grad_norm": 0.8765818476676941, + "learning_rate": 9.652266666666667e-06, + "loss": 1.2570573425292968, + "step": 605500 + }, + { + "epoch": 80.74666666666667, + "grad_norm": 0.8758502006530762, + "learning_rate": 9.645600000000001e-06, + "loss": 1.2593089294433595, + "step": 605600 + }, + { + "epoch": 80.76, + "grad_norm": 0.9053191542625427, + "learning_rate": 9.638933333333334e-06, + "loss": 1.2571390533447266, + "step": 605700 + }, + { + "epoch": 80.77333333333333, + "grad_norm": 0.8636969327926636, + "learning_rate": 9.632266666666668e-06, + "loss": 1.259483871459961, + "step": 605800 + }, + { + "epoch": 80.78666666666666, + "grad_norm": 0.9549551010131836, + "learning_rate": 9.6256e-06, + "loss": 1.2597525787353516, + "step": 605900 + }, + { + "epoch": 80.8, + "grad_norm": 0.8548250794410706, + "learning_rate": 9.618933333333334e-06, + "loss": 1.2577105712890626, + "step": 606000 + }, + { + "epoch": 80.81333333333333, + "grad_norm": 0.9075458645820618, + "learning_rate": 9.612266666666666e-06, + "loss": 1.2630501556396485, + "step": 606100 + }, + { + "epoch": 80.82666666666667, + "grad_norm": 0.9351378083229065, + "learning_rate": 9.6056e-06, + "loss": 1.2618649291992188, + "step": 606200 + }, + { + "epoch": 80.84, + "grad_norm": 0.8505954742431641, + "learning_rate": 9.598933333333334e-06, + "loss": 1.2608261108398438, + "step": 606300 + }, + { + "epoch": 80.85333333333334, + "grad_norm": 0.8611586093902588, + "learning_rate": 9.592266666666668e-06, + "loss": 1.2637861633300782, + "step": 606400 + }, + { + "epoch": 80.86666666666666, + "grad_norm": 0.8829309940338135, + "learning_rate": 9.5856e-06, + "loss": 1.2620301055908203, + "step": 606500 + }, + { + "epoch": 80.88, + "grad_norm": 0.906769335269928, + "learning_rate": 9.578933333333334e-06, + "loss": 1.2620735168457031, + "step": 606600 + }, + { + "epoch": 80.89333333333333, + "grad_norm": 0.896776020526886, + "learning_rate": 9.572266666666666e-06, + "loss": 1.263584213256836, + "step": 606700 + }, + { + "epoch": 80.90666666666667, + "grad_norm": 0.887713611125946, + "learning_rate": 9.5656e-06, + "loss": 1.264889907836914, + "step": 606800 + }, + { + "epoch": 80.92, + "grad_norm": 0.9247974753379822, + "learning_rate": 9.558933333333334e-06, + "loss": 1.2628305053710938, + "step": 606900 + }, + { + "epoch": 80.93333333333334, + "grad_norm": 0.9135413765907288, + "learning_rate": 9.552266666666668e-06, + "loss": 1.2610269165039063, + "step": 607000 + }, + { + "epoch": 80.94666666666667, + "grad_norm": 0.816784143447876, + "learning_rate": 9.5456e-06, + "loss": 1.264756851196289, + "step": 607100 + }, + { + "epoch": 80.96, + "grad_norm": 0.8519019484519958, + "learning_rate": 9.538933333333335e-06, + "loss": 1.2676949310302734, + "step": 607200 + }, + { + "epoch": 80.97333333333333, + "grad_norm": 0.8847300410270691, + "learning_rate": 9.532333333333334e-06, + "loss": 1.2613274383544921, + "step": 607300 + }, + { + "epoch": 80.98666666666666, + "grad_norm": 0.9292627573013306, + "learning_rate": 9.525666666666668e-06, + "loss": 1.264800796508789, + "step": 607400 + }, + { + "epoch": 81.0, + "grad_norm": 0.9245173335075378, + "learning_rate": 9.519e-06, + "loss": 1.2614967346191406, + "step": 607500 + }, + { + "epoch": 81.01333333333334, + "grad_norm": 0.8275742530822754, + "learning_rate": 9.512333333333334e-06, + "loss": 1.2391834259033203, + "step": 607600 + }, + { + "epoch": 81.02666666666667, + "grad_norm": 0.9047415256500244, + "learning_rate": 9.505666666666666e-06, + "loss": 1.2392681884765624, + "step": 607700 + }, + { + "epoch": 81.04, + "grad_norm": 0.8522070646286011, + "learning_rate": 9.499000000000002e-06, + "loss": 1.2342119598388672, + "step": 607800 + }, + { + "epoch": 81.05333333333333, + "grad_norm": 0.9225237369537354, + "learning_rate": 9.492333333333334e-06, + "loss": 1.240270004272461, + "step": 607900 + }, + { + "epoch": 81.06666666666666, + "grad_norm": 0.877410352230072, + "learning_rate": 9.485666666666668e-06, + "loss": 1.2419137573242187, + "step": 608000 + }, + { + "epoch": 81.08, + "grad_norm": 0.895682156085968, + "learning_rate": 9.479e-06, + "loss": 1.2361355590820313, + "step": 608100 + }, + { + "epoch": 81.09333333333333, + "grad_norm": 0.9138928055763245, + "learning_rate": 9.472333333333334e-06, + "loss": 1.2378245544433595, + "step": 608200 + }, + { + "epoch": 81.10666666666667, + "grad_norm": 0.8844442963600159, + "learning_rate": 9.465666666666666e-06, + "loss": 1.238951644897461, + "step": 608300 + }, + { + "epoch": 81.12, + "grad_norm": 0.9086583852767944, + "learning_rate": 9.459e-06, + "loss": 1.238919219970703, + "step": 608400 + }, + { + "epoch": 81.13333333333334, + "grad_norm": 0.9068462252616882, + "learning_rate": 9.452333333333334e-06, + "loss": 1.2433626556396484, + "step": 608500 + }, + { + "epoch": 81.14666666666666, + "grad_norm": 0.8883899450302124, + "learning_rate": 9.445666666666667e-06, + "loss": 1.2401612091064453, + "step": 608600 + }, + { + "epoch": 81.16, + "grad_norm": 0.8467079401016235, + "learning_rate": 9.439e-06, + "loss": 1.2381580352783204, + "step": 608700 + }, + { + "epoch": 81.17333333333333, + "grad_norm": 0.9207153916358948, + "learning_rate": 9.432333333333333e-06, + "loss": 1.2427813720703125, + "step": 608800 + }, + { + "epoch": 81.18666666666667, + "grad_norm": 0.912255585193634, + "learning_rate": 9.425666666666667e-06, + "loss": 1.240965805053711, + "step": 608900 + }, + { + "epoch": 81.2, + "grad_norm": 0.9188990592956543, + "learning_rate": 9.419e-06, + "loss": 1.2408465576171874, + "step": 609000 + }, + { + "epoch": 81.21333333333334, + "grad_norm": 0.9256595373153687, + "learning_rate": 9.412333333333335e-06, + "loss": 1.2405252075195312, + "step": 609100 + }, + { + "epoch": 81.22666666666667, + "grad_norm": 0.9291117787361145, + "learning_rate": 9.405666666666667e-06, + "loss": 1.245336685180664, + "step": 609200 + }, + { + "epoch": 81.24, + "grad_norm": 0.9023730158805847, + "learning_rate": 9.399066666666668e-06, + "loss": 1.247289276123047, + "step": 609300 + }, + { + "epoch": 81.25333333333333, + "grad_norm": 0.8725359439849854, + "learning_rate": 9.3924e-06, + "loss": 1.242955322265625, + "step": 609400 + }, + { + "epoch": 81.26666666666667, + "grad_norm": 0.93658846616745, + "learning_rate": 9.385733333333334e-06, + "loss": 1.2417597198486328, + "step": 609500 + }, + { + "epoch": 81.28, + "grad_norm": 0.8989132642745972, + "learning_rate": 9.379066666666666e-06, + "loss": 1.2406790924072266, + "step": 609600 + }, + { + "epoch": 81.29333333333334, + "grad_norm": 0.8773770928382874, + "learning_rate": 9.3724e-06, + "loss": 1.2456909942626953, + "step": 609700 + }, + { + "epoch": 81.30666666666667, + "grad_norm": 0.9248537421226501, + "learning_rate": 9.365733333333333e-06, + "loss": 1.2468321990966797, + "step": 609800 + }, + { + "epoch": 81.32, + "grad_norm": 0.9012039303779602, + "learning_rate": 9.359066666666668e-06, + "loss": 1.2451560974121094, + "step": 609900 + }, + { + "epoch": 81.33333333333333, + "grad_norm": 0.8763637542724609, + "learning_rate": 9.3524e-06, + "loss": 1.2435193634033204, + "step": 610000 + }, + { + "epoch": 81.34666666666666, + "grad_norm": 0.9104039669036865, + "learning_rate": 9.345733333333334e-06, + "loss": 1.2489257049560547, + "step": 610100 + }, + { + "epoch": 81.36, + "grad_norm": 0.9854726195335388, + "learning_rate": 9.339066666666667e-06, + "loss": 1.2438234710693359, + "step": 610200 + }, + { + "epoch": 81.37333333333333, + "grad_norm": 0.8832777142524719, + "learning_rate": 9.3324e-06, + "loss": 1.2450476837158204, + "step": 610300 + }, + { + "epoch": 81.38666666666667, + "grad_norm": 0.8616676926612854, + "learning_rate": 9.325733333333333e-06, + "loss": 1.24720703125, + "step": 610400 + }, + { + "epoch": 81.4, + "grad_norm": 0.8933054208755493, + "learning_rate": 9.319066666666667e-06, + "loss": 1.248559799194336, + "step": 610500 + }, + { + "epoch": 81.41333333333333, + "grad_norm": 0.9103077054023743, + "learning_rate": 9.3124e-06, + "loss": 1.2462962341308594, + "step": 610600 + }, + { + "epoch": 81.42666666666666, + "grad_norm": 0.8590754866600037, + "learning_rate": 9.305733333333335e-06, + "loss": 1.246546859741211, + "step": 610700 + }, + { + "epoch": 81.44, + "grad_norm": 0.9296621084213257, + "learning_rate": 9.299066666666667e-06, + "loss": 1.2495183563232422, + "step": 610800 + }, + { + "epoch": 81.45333333333333, + "grad_norm": 0.9122717380523682, + "learning_rate": 9.292400000000001e-06, + "loss": 1.2485328674316407, + "step": 610900 + }, + { + "epoch": 81.46666666666667, + "grad_norm": 0.894951343536377, + "learning_rate": 9.285733333333333e-06, + "loss": 1.2503672790527345, + "step": 611000 + }, + { + "epoch": 81.48, + "grad_norm": 0.8775086402893066, + "learning_rate": 9.279066666666667e-06, + "loss": 1.2496353149414063, + "step": 611100 + }, + { + "epoch": 81.49333333333334, + "grad_norm": 0.9073229432106018, + "learning_rate": 9.272400000000001e-06, + "loss": 1.2485159301757813, + "step": 611200 + }, + { + "epoch": 81.50666666666666, + "grad_norm": 0.8721373081207275, + "learning_rate": 9.2658e-06, + "loss": 1.249385452270508, + "step": 611300 + }, + { + "epoch": 81.52, + "grad_norm": 0.8617298007011414, + "learning_rate": 9.259133333333334e-06, + "loss": 1.2492945861816407, + "step": 611400 + }, + { + "epoch": 81.53333333333333, + "grad_norm": 0.9376047253608704, + "learning_rate": 9.252466666666668e-06, + "loss": 1.2484706878662108, + "step": 611500 + }, + { + "epoch": 81.54666666666667, + "grad_norm": 0.9316357970237732, + "learning_rate": 9.2458e-06, + "loss": 1.2509843444824218, + "step": 611600 + }, + { + "epoch": 81.56, + "grad_norm": 0.9092914462089539, + "learning_rate": 9.239133333333334e-06, + "loss": 1.252373046875, + "step": 611700 + }, + { + "epoch": 81.57333333333334, + "grad_norm": 0.9230238199234009, + "learning_rate": 9.232466666666667e-06, + "loss": 1.2522103881835938, + "step": 611800 + }, + { + "epoch": 81.58666666666667, + "grad_norm": 0.9527510404586792, + "learning_rate": 9.2258e-06, + "loss": 1.2519025421142578, + "step": 611900 + }, + { + "epoch": 81.6, + "grad_norm": 0.9313916563987732, + "learning_rate": 9.219133333333333e-06, + "loss": 1.2490794372558593, + "step": 612000 + }, + { + "epoch": 81.61333333333333, + "grad_norm": 0.9925395846366882, + "learning_rate": 9.212466666666667e-06, + "loss": 1.2542919921875, + "step": 612100 + }, + { + "epoch": 81.62666666666667, + "grad_norm": 0.9218894839286804, + "learning_rate": 9.205800000000001e-06, + "loss": 1.2550067138671874, + "step": 612200 + }, + { + "epoch": 81.64, + "grad_norm": 0.9411338567733765, + "learning_rate": 9.199133333333333e-06, + "loss": 1.249119644165039, + "step": 612300 + }, + { + "epoch": 81.65333333333334, + "grad_norm": 0.9338614344596863, + "learning_rate": 9.192466666666667e-06, + "loss": 1.2516092681884765, + "step": 612400 + }, + { + "epoch": 81.66666666666667, + "grad_norm": 0.984487771987915, + "learning_rate": 9.1858e-06, + "loss": 1.253871078491211, + "step": 612500 + }, + { + "epoch": 81.68, + "grad_norm": 0.8881129026412964, + "learning_rate": 9.179133333333333e-06, + "loss": 1.2527835845947266, + "step": 612600 + }, + { + "epoch": 81.69333333333333, + "grad_norm": 0.9168439507484436, + "learning_rate": 9.172466666666667e-06, + "loss": 1.2484764862060547, + "step": 612700 + }, + { + "epoch": 81.70666666666666, + "grad_norm": 0.8874577283859253, + "learning_rate": 9.165800000000001e-06, + "loss": 1.2515900421142578, + "step": 612800 + }, + { + "epoch": 81.72, + "grad_norm": 0.905847430229187, + "learning_rate": 9.159133333333334e-06, + "loss": 1.2533546447753907, + "step": 612900 + }, + { + "epoch": 81.73333333333333, + "grad_norm": 0.8582006096839905, + "learning_rate": 9.152466666666667e-06, + "loss": 1.2524093627929687, + "step": 613000 + }, + { + "epoch": 81.74666666666667, + "grad_norm": 0.9305291175842285, + "learning_rate": 9.1458e-06, + "loss": 1.2540251922607422, + "step": 613100 + }, + { + "epoch": 81.76, + "grad_norm": 0.9581021666526794, + "learning_rate": 9.139133333333334e-06, + "loss": 1.2542661285400392, + "step": 613200 + }, + { + "epoch": 81.77333333333333, + "grad_norm": 0.8602609634399414, + "learning_rate": 9.132533333333333e-06, + "loss": 1.250102767944336, + "step": 613300 + }, + { + "epoch": 81.78666666666666, + "grad_norm": 0.9307783842086792, + "learning_rate": 9.125866666666667e-06, + "loss": 1.25496826171875, + "step": 613400 + }, + { + "epoch": 81.8, + "grad_norm": 0.9519327282905579, + "learning_rate": 9.1192e-06, + "loss": 1.2568404388427734, + "step": 613500 + }, + { + "epoch": 81.81333333333333, + "grad_norm": 0.9594677090644836, + "learning_rate": 9.112533333333335e-06, + "loss": 1.2542708587646485, + "step": 613600 + }, + { + "epoch": 81.82666666666667, + "grad_norm": 0.9347852468490601, + "learning_rate": 9.105866666666667e-06, + "loss": 1.2561700439453125, + "step": 613700 + }, + { + "epoch": 81.84, + "grad_norm": 0.9031361937522888, + "learning_rate": 9.099200000000001e-06, + "loss": 1.250828399658203, + "step": 613800 + }, + { + "epoch": 81.85333333333334, + "grad_norm": 0.9028738141059875, + "learning_rate": 9.092533333333333e-06, + "loss": 1.2556254577636718, + "step": 613900 + }, + { + "epoch": 81.86666666666666, + "grad_norm": 0.8947298526763916, + "learning_rate": 9.085866666666667e-06, + "loss": 1.2577997589111327, + "step": 614000 + }, + { + "epoch": 81.88, + "grad_norm": 0.9742893576622009, + "learning_rate": 9.0792e-06, + "loss": 1.2556832122802735, + "step": 614100 + }, + { + "epoch": 81.89333333333333, + "grad_norm": 0.9164856672286987, + "learning_rate": 9.072533333333335e-06, + "loss": 1.2557017517089843, + "step": 614200 + }, + { + "epoch": 81.90666666666667, + "grad_norm": 0.915895938873291, + "learning_rate": 9.065866666666667e-06, + "loss": 1.2530562591552734, + "step": 614300 + }, + { + "epoch": 81.92, + "grad_norm": 0.8925107717514038, + "learning_rate": 9.059200000000001e-06, + "loss": 1.26068115234375, + "step": 614400 + }, + { + "epoch": 81.93333333333334, + "grad_norm": 0.8939207196235657, + "learning_rate": 9.052533333333334e-06, + "loss": 1.2526610565185547, + "step": 614500 + }, + { + "epoch": 81.94666666666667, + "grad_norm": 0.8300981521606445, + "learning_rate": 9.045866666666668e-06, + "loss": 1.2572245025634765, + "step": 614600 + }, + { + "epoch": 81.96, + "grad_norm": 0.8693681955337524, + "learning_rate": 9.0392e-06, + "loss": 1.2559279632568359, + "step": 614700 + }, + { + "epoch": 81.97333333333333, + "grad_norm": 0.8896282315254211, + "learning_rate": 9.032533333333334e-06, + "loss": 1.2625821685791017, + "step": 614800 + }, + { + "epoch": 81.98666666666666, + "grad_norm": 0.8908337354660034, + "learning_rate": 9.025866666666668e-06, + "loss": 1.2559323120117187, + "step": 614900 + }, + { + "epoch": 82.0, + "grad_norm": 0.9439942836761475, + "learning_rate": 9.0192e-06, + "loss": 1.2595707702636718, + "step": 615000 + }, + { + "epoch": 82.01333333333334, + "grad_norm": 0.9085642099380493, + "learning_rate": 9.012533333333334e-06, + "loss": 1.234801025390625, + "step": 615100 + }, + { + "epoch": 82.02666666666667, + "grad_norm": 0.86478590965271, + "learning_rate": 9.005866666666666e-06, + "loss": 1.2301112365722657, + "step": 615200 + }, + { + "epoch": 82.04, + "grad_norm": 0.8402786254882812, + "learning_rate": 8.999266666666667e-06, + "loss": 1.2340145111083984, + "step": 615300 + }, + { + "epoch": 82.05333333333333, + "grad_norm": 0.9000765681266785, + "learning_rate": 8.992600000000001e-06, + "loss": 1.234165496826172, + "step": 615400 + }, + { + "epoch": 82.06666666666666, + "grad_norm": 0.8875935673713684, + "learning_rate": 8.985933333333333e-06, + "loss": 1.2338397216796875, + "step": 615500 + }, + { + "epoch": 82.08, + "grad_norm": 0.8624498248100281, + "learning_rate": 8.979266666666667e-06, + "loss": 1.2306690216064453, + "step": 615600 + }, + { + "epoch": 82.09333333333333, + "grad_norm": 0.8691593408584595, + "learning_rate": 8.972600000000001e-06, + "loss": 1.2350591278076173, + "step": 615700 + }, + { + "epoch": 82.10666666666667, + "grad_norm": 0.9431705474853516, + "learning_rate": 8.965933333333333e-06, + "loss": 1.2306092071533203, + "step": 615800 + }, + { + "epoch": 82.12, + "grad_norm": 0.8544008135795593, + "learning_rate": 8.959266666666667e-06, + "loss": 1.2384963989257813, + "step": 615900 + }, + { + "epoch": 82.13333333333334, + "grad_norm": 0.9354866147041321, + "learning_rate": 8.9526e-06, + "loss": 1.2398062896728517, + "step": 616000 + }, + { + "epoch": 82.14666666666666, + "grad_norm": 0.8743143677711487, + "learning_rate": 8.945933333333334e-06, + "loss": 1.2414376068115234, + "step": 616100 + }, + { + "epoch": 82.16, + "grad_norm": 0.8810702562332153, + "learning_rate": 8.939266666666666e-06, + "loss": 1.2354586029052734, + "step": 616200 + }, + { + "epoch": 82.17333333333333, + "grad_norm": 0.8954576849937439, + "learning_rate": 8.932600000000002e-06, + "loss": 1.2339041137695312, + "step": 616300 + }, + { + "epoch": 82.18666666666667, + "grad_norm": 0.9300366640090942, + "learning_rate": 8.925933333333334e-06, + "loss": 1.2386576843261718, + "step": 616400 + }, + { + "epoch": 82.2, + "grad_norm": 0.9427330493927002, + "learning_rate": 8.919266666666668e-06, + "loss": 1.2405809020996095, + "step": 616500 + }, + { + "epoch": 82.21333333333334, + "grad_norm": 0.9200528264045715, + "learning_rate": 8.9126e-06, + "loss": 1.2397397613525392, + "step": 616600 + }, + { + "epoch": 82.22666666666667, + "grad_norm": 0.9477024078369141, + "learning_rate": 8.905933333333334e-06, + "loss": 1.2361534118652344, + "step": 616700 + }, + { + "epoch": 82.24, + "grad_norm": 0.860318660736084, + "learning_rate": 8.899266666666666e-06, + "loss": 1.24165771484375, + "step": 616800 + }, + { + "epoch": 82.25333333333333, + "grad_norm": 0.8930957317352295, + "learning_rate": 8.8926e-06, + "loss": 1.240411376953125, + "step": 616900 + }, + { + "epoch": 82.26666666666667, + "grad_norm": 0.8713201284408569, + "learning_rate": 8.885933333333334e-06, + "loss": 1.2389635467529296, + "step": 617000 + }, + { + "epoch": 82.28, + "grad_norm": 0.8821374773979187, + "learning_rate": 8.879266666666668e-06, + "loss": 1.240754165649414, + "step": 617100 + }, + { + "epoch": 82.29333333333334, + "grad_norm": 0.8835667967796326, + "learning_rate": 8.8726e-06, + "loss": 1.2408916473388671, + "step": 617200 + }, + { + "epoch": 82.30666666666667, + "grad_norm": 0.878227949142456, + "learning_rate": 8.866000000000001e-06, + "loss": 1.239891357421875, + "step": 617300 + }, + { + "epoch": 82.32, + "grad_norm": 0.9137305021286011, + "learning_rate": 8.859333333333333e-06, + "loss": 1.2434058380126953, + "step": 617400 + }, + { + "epoch": 82.33333333333333, + "grad_norm": 0.9233280420303345, + "learning_rate": 8.852666666666667e-06, + "loss": 1.240920867919922, + "step": 617500 + }, + { + "epoch": 82.34666666666666, + "grad_norm": 0.9034508466720581, + "learning_rate": 8.846e-06, + "loss": 1.2437106323242189, + "step": 617600 + }, + { + "epoch": 82.36, + "grad_norm": 0.9077682495117188, + "learning_rate": 8.839333333333334e-06, + "loss": 1.2439752960205077, + "step": 617700 + }, + { + "epoch": 82.37333333333333, + "grad_norm": 0.9524446725845337, + "learning_rate": 8.832666666666668e-06, + "loss": 1.2423672485351562, + "step": 617800 + }, + { + "epoch": 82.38666666666667, + "grad_norm": 0.8799779415130615, + "learning_rate": 8.826000000000002e-06, + "loss": 1.2455381011962892, + "step": 617900 + }, + { + "epoch": 82.4, + "grad_norm": 0.9285022616386414, + "learning_rate": 8.819333333333334e-06, + "loss": 1.2448921966552735, + "step": 618000 + }, + { + "epoch": 82.41333333333333, + "grad_norm": 0.9084222912788391, + "learning_rate": 8.812666666666668e-06, + "loss": 1.2376979064941407, + "step": 618100 + }, + { + "epoch": 82.42666666666666, + "grad_norm": 0.8648841381072998, + "learning_rate": 8.806e-06, + "loss": 1.2406005859375, + "step": 618200 + }, + { + "epoch": 82.44, + "grad_norm": 0.9781367778778076, + "learning_rate": 8.799333333333334e-06, + "loss": 1.243892593383789, + "step": 618300 + }, + { + "epoch": 82.45333333333333, + "grad_norm": 0.8798574805259705, + "learning_rate": 8.792666666666666e-06, + "loss": 1.2451769256591796, + "step": 618400 + }, + { + "epoch": 82.46666666666667, + "grad_norm": 0.9308679103851318, + "learning_rate": 8.786e-06, + "loss": 1.2392099761962891, + "step": 618500 + }, + { + "epoch": 82.48, + "grad_norm": 0.9308741688728333, + "learning_rate": 8.779333333333334e-06, + "loss": 1.2419159698486328, + "step": 618600 + }, + { + "epoch": 82.49333333333334, + "grad_norm": 0.9221790432929993, + "learning_rate": 8.772666666666666e-06, + "loss": 1.2452362060546875, + "step": 618700 + }, + { + "epoch": 82.50666666666666, + "grad_norm": 0.8636195063591003, + "learning_rate": 8.766e-06, + "loss": 1.2443165588378906, + "step": 618800 + }, + { + "epoch": 82.52, + "grad_norm": 0.8592165112495422, + "learning_rate": 8.759333333333333e-06, + "loss": 1.2440619659423828, + "step": 618900 + }, + { + "epoch": 82.53333333333333, + "grad_norm": 0.9434940814971924, + "learning_rate": 8.752666666666667e-06, + "loss": 1.2442166900634766, + "step": 619000 + }, + { + "epoch": 82.54666666666667, + "grad_norm": 0.9361331462860107, + "learning_rate": 8.746e-06, + "loss": 1.247313461303711, + "step": 619100 + }, + { + "epoch": 82.56, + "grad_norm": 0.9202352166175842, + "learning_rate": 8.739333333333335e-06, + "loss": 1.240821304321289, + "step": 619200 + }, + { + "epoch": 82.57333333333334, + "grad_norm": 0.9500649571418762, + "learning_rate": 8.732733333333334e-06, + "loss": 1.2460474395751953, + "step": 619300 + }, + { + "epoch": 82.58666666666667, + "grad_norm": 0.9258289933204651, + "learning_rate": 8.726066666666668e-06, + "loss": 1.2472043609619141, + "step": 619400 + }, + { + "epoch": 82.6, + "grad_norm": 0.9140313267707825, + "learning_rate": 8.7194e-06, + "loss": 1.2448184204101562, + "step": 619500 + }, + { + "epoch": 82.61333333333333, + "grad_norm": 0.9324513077735901, + "learning_rate": 8.712733333333334e-06, + "loss": 1.2494194030761718, + "step": 619600 + }, + { + "epoch": 82.62666666666667, + "grad_norm": 0.9109006524085999, + "learning_rate": 8.706066666666666e-06, + "loss": 1.247740707397461, + "step": 619700 + }, + { + "epoch": 82.64, + "grad_norm": 0.9407756328582764, + "learning_rate": 8.6994e-06, + "loss": 1.2482675170898438, + "step": 619800 + }, + { + "epoch": 82.65333333333334, + "grad_norm": 0.9115416407585144, + "learning_rate": 8.692733333333334e-06, + "loss": 1.2482878112792968, + "step": 619900 + }, + { + "epoch": 82.66666666666667, + "grad_norm": 0.9408479928970337, + "learning_rate": 8.686066666666668e-06, + "loss": 1.2521448516845703, + "step": 620000 + }, + { + "epoch": 82.68, + "grad_norm": 0.8845256567001343, + "learning_rate": 8.6794e-06, + "loss": 1.2493247985839844, + "step": 620100 + }, + { + "epoch": 82.69333333333333, + "grad_norm": 0.8882789015769958, + "learning_rate": 8.672733333333334e-06, + "loss": 1.2499993896484376, + "step": 620200 + }, + { + "epoch": 82.70666666666666, + "grad_norm": 0.8768792152404785, + "learning_rate": 8.666066666666667e-06, + "loss": 1.2518183135986327, + "step": 620300 + }, + { + "epoch": 82.72, + "grad_norm": 0.9239054322242737, + "learning_rate": 8.6594e-06, + "loss": 1.2470800018310546, + "step": 620400 + }, + { + "epoch": 82.73333333333333, + "grad_norm": 0.9029996991157532, + "learning_rate": 8.652733333333333e-06, + "loss": 1.250694808959961, + "step": 620500 + }, + { + "epoch": 82.74666666666667, + "grad_norm": 0.8475874662399292, + "learning_rate": 8.646066666666668e-06, + "loss": 1.2475482940673828, + "step": 620600 + }, + { + "epoch": 82.76, + "grad_norm": 0.9280046820640564, + "learning_rate": 8.6394e-06, + "loss": 1.247471923828125, + "step": 620700 + }, + { + "epoch": 82.77333333333333, + "grad_norm": 0.8895213603973389, + "learning_rate": 8.632733333333335e-06, + "loss": 1.249181594848633, + "step": 620800 + }, + { + "epoch": 82.78666666666666, + "grad_norm": 0.9662532806396484, + "learning_rate": 8.626066666666667e-06, + "loss": 1.2477493286132812, + "step": 620900 + }, + { + "epoch": 82.8, + "grad_norm": 0.9350543022155762, + "learning_rate": 8.619400000000001e-06, + "loss": 1.2516327667236329, + "step": 621000 + }, + { + "epoch": 82.81333333333333, + "grad_norm": 0.9173975586891174, + "learning_rate": 8.612733333333333e-06, + "loss": 1.2521589660644532, + "step": 621100 + }, + { + "epoch": 82.82666666666667, + "grad_norm": 0.9485138654708862, + "learning_rate": 8.606066666666667e-06, + "loss": 1.2502504730224608, + "step": 621200 + }, + { + "epoch": 82.84, + "grad_norm": 0.9641520977020264, + "learning_rate": 8.599466666666666e-06, + "loss": 1.2493783569335937, + "step": 621300 + }, + { + "epoch": 82.85333333333334, + "grad_norm": 0.9128257036209106, + "learning_rate": 8.5928e-06, + "loss": 1.2476416778564454, + "step": 621400 + }, + { + "epoch": 82.86666666666666, + "grad_norm": 0.926476001739502, + "learning_rate": 8.586133333333334e-06, + "loss": 1.2498722076416016, + "step": 621500 + }, + { + "epoch": 82.88, + "grad_norm": 0.8476603031158447, + "learning_rate": 8.579466666666668e-06, + "loss": 1.2490251922607423, + "step": 621600 + }, + { + "epoch": 82.89333333333333, + "grad_norm": 0.9261386394500732, + "learning_rate": 8.5728e-06, + "loss": 1.2508720397949218, + "step": 621700 + }, + { + "epoch": 82.90666666666667, + "grad_norm": 0.9281954765319824, + "learning_rate": 8.566133333333334e-06, + "loss": 1.2504344177246094, + "step": 621800 + }, + { + "epoch": 82.92, + "grad_norm": 0.9179771542549133, + "learning_rate": 8.559466666666667e-06, + "loss": 1.2538750457763672, + "step": 621900 + }, + { + "epoch": 82.93333333333334, + "grad_norm": 0.931770920753479, + "learning_rate": 8.5528e-06, + "loss": 1.251114959716797, + "step": 622000 + }, + { + "epoch": 82.94666666666667, + "grad_norm": 0.9326673150062561, + "learning_rate": 8.546133333333334e-06, + "loss": 1.2516678619384765, + "step": 622100 + }, + { + "epoch": 82.96, + "grad_norm": 0.9263719320297241, + "learning_rate": 8.539466666666667e-06, + "loss": 1.2495791625976562, + "step": 622200 + }, + { + "epoch": 82.97333333333333, + "grad_norm": 0.902750551700592, + "learning_rate": 8.5328e-06, + "loss": 1.2547737884521484, + "step": 622300 + }, + { + "epoch": 82.98666666666666, + "grad_norm": 0.9616686105728149, + "learning_rate": 8.526133333333333e-06, + "loss": 1.2510566711425781, + "step": 622400 + }, + { + "epoch": 83.0, + "grad_norm": 0.9818671941757202, + "learning_rate": 8.519466666666667e-06, + "loss": 1.255392837524414, + "step": 622500 + }, + { + "epoch": 83.01333333333334, + "grad_norm": 0.8741009831428528, + "learning_rate": 8.5128e-06, + "loss": 1.2268238830566407, + "step": 622600 + }, + { + "epoch": 83.02666666666667, + "grad_norm": 0.8773664236068726, + "learning_rate": 8.506133333333333e-06, + "loss": 1.2288787078857422, + "step": 622700 + }, + { + "epoch": 83.04, + "grad_norm": 0.896050214767456, + "learning_rate": 8.499466666666667e-06, + "loss": 1.2286920166015625, + "step": 622800 + }, + { + "epoch": 83.05333333333333, + "grad_norm": 0.8688726425170898, + "learning_rate": 8.492800000000001e-06, + "loss": 1.2317049407958984, + "step": 622900 + }, + { + "epoch": 83.06666666666666, + "grad_norm": 0.8627607226371765, + "learning_rate": 8.486133333333333e-06, + "loss": 1.2319934844970704, + "step": 623000 + }, + { + "epoch": 83.08, + "grad_norm": 0.9010234475135803, + "learning_rate": 8.479466666666667e-06, + "loss": 1.227967758178711, + "step": 623100 + }, + { + "epoch": 83.09333333333333, + "grad_norm": 0.9134891629219055, + "learning_rate": 8.4728e-06, + "loss": 1.2302108001708985, + "step": 623200 + }, + { + "epoch": 83.10666666666667, + "grad_norm": 0.8885038495063782, + "learning_rate": 8.466133333333334e-06, + "loss": 1.2306111145019532, + "step": 623300 + }, + { + "epoch": 83.12, + "grad_norm": 0.8855066299438477, + "learning_rate": 8.459533333333333e-06, + "loss": 1.2339430236816407, + "step": 623400 + }, + { + "epoch": 83.13333333333334, + "grad_norm": 0.8828930258750916, + "learning_rate": 8.452866666666667e-06, + "loss": 1.2353226470947265, + "step": 623500 + }, + { + "epoch": 83.14666666666666, + "grad_norm": 0.875651478767395, + "learning_rate": 8.4462e-06, + "loss": 1.2287565612792968, + "step": 623600 + }, + { + "epoch": 83.16, + "grad_norm": 0.8633849024772644, + "learning_rate": 8.439533333333335e-06, + "loss": 1.2340455627441407, + "step": 623700 + }, + { + "epoch": 83.17333333333333, + "grad_norm": 0.8406652212142944, + "learning_rate": 8.432866666666667e-06, + "loss": 1.2317752838134766, + "step": 623800 + }, + { + "epoch": 83.18666666666667, + "grad_norm": 0.8680077791213989, + "learning_rate": 8.4262e-06, + "loss": 1.2286119079589843, + "step": 623900 + }, + { + "epoch": 83.2, + "grad_norm": 0.8827568888664246, + "learning_rate": 8.419533333333333e-06, + "loss": 1.2330582427978516, + "step": 624000 + }, + { + "epoch": 83.21333333333334, + "grad_norm": 0.8410494923591614, + "learning_rate": 8.412866666666667e-06, + "loss": 1.2319648742675782, + "step": 624100 + }, + { + "epoch": 83.22666666666667, + "grad_norm": 0.945569634437561, + "learning_rate": 8.406200000000001e-06, + "loss": 1.2348339080810546, + "step": 624200 + }, + { + "epoch": 83.24, + "grad_norm": 0.9145014882087708, + "learning_rate": 8.399533333333335e-06, + "loss": 1.2309622192382812, + "step": 624300 + }, + { + "epoch": 83.25333333333333, + "grad_norm": 0.8928866982460022, + "learning_rate": 8.392866666666667e-06, + "loss": 1.2331744384765626, + "step": 624400 + }, + { + "epoch": 83.26666666666667, + "grad_norm": 0.9226345419883728, + "learning_rate": 8.386200000000001e-06, + "loss": 1.2304218292236329, + "step": 624500 + }, + { + "epoch": 83.28, + "grad_norm": 0.9208539128303528, + "learning_rate": 8.379533333333333e-06, + "loss": 1.2353579711914062, + "step": 624600 + }, + { + "epoch": 83.29333333333334, + "grad_norm": 0.8835161328315735, + "learning_rate": 8.372866666666667e-06, + "loss": 1.2308840942382813, + "step": 624700 + }, + { + "epoch": 83.30666666666667, + "grad_norm": 0.9109699130058289, + "learning_rate": 8.3662e-06, + "loss": 1.2373240661621094, + "step": 624800 + }, + { + "epoch": 83.32, + "grad_norm": 0.8914778232574463, + "learning_rate": 8.359533333333334e-06, + "loss": 1.2385607147216797, + "step": 624900 + }, + { + "epoch": 83.33333333333333, + "grad_norm": 0.9099097847938538, + "learning_rate": 8.352866666666668e-06, + "loss": 1.2351886749267578, + "step": 625000 + }, + { + "epoch": 83.34666666666666, + "grad_norm": 0.9224347472190857, + "learning_rate": 8.3462e-06, + "loss": 1.239847412109375, + "step": 625100 + }, + { + "epoch": 83.36, + "grad_norm": 0.8941978216171265, + "learning_rate": 8.339533333333334e-06, + "loss": 1.2408080291748047, + "step": 625200 + }, + { + "epoch": 83.37333333333333, + "grad_norm": 0.9112878441810608, + "learning_rate": 8.332866666666666e-06, + "loss": 1.2382213592529296, + "step": 625300 + }, + { + "epoch": 83.38666666666667, + "grad_norm": 0.8820027112960815, + "learning_rate": 8.326266666666667e-06, + "loss": 1.2374537658691407, + "step": 625400 + }, + { + "epoch": 83.4, + "grad_norm": 0.9008810520172119, + "learning_rate": 8.3196e-06, + "loss": 1.2357157897949218, + "step": 625500 + }, + { + "epoch": 83.41333333333333, + "grad_norm": 0.8950514793395996, + "learning_rate": 8.312933333333333e-06, + "loss": 1.2395166778564453, + "step": 625600 + }, + { + "epoch": 83.42666666666666, + "grad_norm": 0.877662718296051, + "learning_rate": 8.306266666666667e-06, + "loss": 1.2368050384521485, + "step": 625700 + }, + { + "epoch": 83.44, + "grad_norm": 0.8988947868347168, + "learning_rate": 8.299600000000001e-06, + "loss": 1.2367508697509766, + "step": 625800 + }, + { + "epoch": 83.45333333333333, + "grad_norm": 0.8748953342437744, + "learning_rate": 8.292933333333333e-06, + "loss": 1.2388724517822265, + "step": 625900 + }, + { + "epoch": 83.46666666666667, + "grad_norm": 0.937595009803772, + "learning_rate": 8.286266666666667e-06, + "loss": 1.2392095947265624, + "step": 626000 + }, + { + "epoch": 83.48, + "grad_norm": 0.9471210241317749, + "learning_rate": 8.2796e-06, + "loss": 1.236856460571289, + "step": 626100 + }, + { + "epoch": 83.49333333333334, + "grad_norm": 0.8821884393692017, + "learning_rate": 8.272933333333333e-06, + "loss": 1.239179916381836, + "step": 626200 + }, + { + "epoch": 83.50666666666666, + "grad_norm": 0.919651210308075, + "learning_rate": 8.266266666666667e-06, + "loss": 1.2402806854248047, + "step": 626300 + }, + { + "epoch": 83.52, + "grad_norm": 0.9665860533714294, + "learning_rate": 8.259600000000001e-06, + "loss": 1.2379183197021484, + "step": 626400 + }, + { + "epoch": 83.53333333333333, + "grad_norm": 0.8893381357192993, + "learning_rate": 8.252933333333334e-06, + "loss": 1.2422509765625, + "step": 626500 + }, + { + "epoch": 83.54666666666667, + "grad_norm": 0.9082131385803223, + "learning_rate": 8.246266666666668e-06, + "loss": 1.2425847625732422, + "step": 626600 + }, + { + "epoch": 83.56, + "grad_norm": 0.9207640290260315, + "learning_rate": 8.2396e-06, + "loss": 1.2419153594970702, + "step": 626700 + }, + { + "epoch": 83.57333333333334, + "grad_norm": 0.8709291219711304, + "learning_rate": 8.232933333333334e-06, + "loss": 1.2439161682128905, + "step": 626800 + }, + { + "epoch": 83.58666666666667, + "grad_norm": 0.945469856262207, + "learning_rate": 8.226266666666666e-06, + "loss": 1.2438876342773437, + "step": 626900 + }, + { + "epoch": 83.6, + "grad_norm": 0.8752225041389465, + "learning_rate": 8.219600000000002e-06, + "loss": 1.2426612854003907, + "step": 627000 + }, + { + "epoch": 83.61333333333333, + "grad_norm": 0.9232311844825745, + "learning_rate": 8.212933333333334e-06, + "loss": 1.2439415740966797, + "step": 627100 + }, + { + "epoch": 83.62666666666667, + "grad_norm": 0.9110270142555237, + "learning_rate": 8.206266666666668e-06, + "loss": 1.2405470275878907, + "step": 627200 + }, + { + "epoch": 83.64, + "grad_norm": 0.8702139854431152, + "learning_rate": 8.1996e-06, + "loss": 1.2478545379638672, + "step": 627300 + }, + { + "epoch": 83.65333333333334, + "grad_norm": 0.9222458004951477, + "learning_rate": 8.193000000000001e-06, + "loss": 1.2415824127197266, + "step": 627400 + }, + { + "epoch": 83.66666666666667, + "grad_norm": 0.8984431624412537, + "learning_rate": 8.186333333333333e-06, + "loss": 1.2407730102539063, + "step": 627500 + }, + { + "epoch": 83.68, + "grad_norm": 0.9315071702003479, + "learning_rate": 8.179666666666667e-06, + "loss": 1.240757598876953, + "step": 627600 + }, + { + "epoch": 83.69333333333333, + "grad_norm": 0.8998625874519348, + "learning_rate": 8.173e-06, + "loss": 1.2405057525634766, + "step": 627700 + }, + { + "epoch": 83.70666666666666, + "grad_norm": 0.9560902714729309, + "learning_rate": 8.166333333333333e-06, + "loss": 1.2425275421142579, + "step": 627800 + }, + { + "epoch": 83.72, + "grad_norm": 0.9313591718673706, + "learning_rate": 8.159666666666667e-06, + "loss": 1.2417723083496093, + "step": 627900 + }, + { + "epoch": 83.73333333333333, + "grad_norm": 0.8887977600097656, + "learning_rate": 8.153000000000001e-06, + "loss": 1.2461432647705077, + "step": 628000 + }, + { + "epoch": 83.74666666666667, + "grad_norm": 0.8665767908096313, + "learning_rate": 8.146333333333334e-06, + "loss": 1.2395530700683595, + "step": 628100 + }, + { + "epoch": 83.76, + "grad_norm": 0.8512284755706787, + "learning_rate": 8.139666666666668e-06, + "loss": 1.2442801666259766, + "step": 628200 + }, + { + "epoch": 83.77333333333333, + "grad_norm": 0.9400811791419983, + "learning_rate": 8.133e-06, + "loss": 1.244218521118164, + "step": 628300 + }, + { + "epoch": 83.78666666666666, + "grad_norm": 0.9075484275817871, + "learning_rate": 8.126333333333334e-06, + "loss": 1.245132827758789, + "step": 628400 + }, + { + "epoch": 83.8, + "grad_norm": 0.9220568537712097, + "learning_rate": 8.119666666666668e-06, + "loss": 1.2457878875732422, + "step": 628500 + }, + { + "epoch": 83.81333333333333, + "grad_norm": 0.8934618830680847, + "learning_rate": 8.113e-06, + "loss": 1.2488687896728516, + "step": 628600 + }, + { + "epoch": 83.82666666666667, + "grad_norm": 0.9469342231750488, + "learning_rate": 8.106333333333334e-06, + "loss": 1.2456256103515626, + "step": 628700 + }, + { + "epoch": 83.84, + "grad_norm": 0.8682982921600342, + "learning_rate": 8.099666666666666e-06, + "loss": 1.2437528991699218, + "step": 628800 + }, + { + "epoch": 83.85333333333334, + "grad_norm": 0.9430522918701172, + "learning_rate": 8.093e-06, + "loss": 1.2466936492919922, + "step": 628900 + }, + { + "epoch": 83.86666666666666, + "grad_norm": 0.9409758448600769, + "learning_rate": 8.086333333333333e-06, + "loss": 1.244860610961914, + "step": 629000 + }, + { + "epoch": 83.88, + "grad_norm": 0.958746612071991, + "learning_rate": 8.079666666666667e-06, + "loss": 1.246984634399414, + "step": 629100 + }, + { + "epoch": 83.89333333333333, + "grad_norm": 0.8642282485961914, + "learning_rate": 8.073e-06, + "loss": 1.2486931610107421, + "step": 629200 + }, + { + "epoch": 83.90666666666667, + "grad_norm": 0.9085518717765808, + "learning_rate": 8.066333333333334e-06, + "loss": 1.2516922760009765, + "step": 629300 + }, + { + "epoch": 83.92, + "grad_norm": 0.8967764973640442, + "learning_rate": 8.059733333333335e-06, + "loss": 1.2464397430419922, + "step": 629400 + }, + { + "epoch": 83.93333333333334, + "grad_norm": 0.9250491261482239, + "learning_rate": 8.053066666666667e-06, + "loss": 1.2472023010253905, + "step": 629500 + }, + { + "epoch": 83.94666666666667, + "grad_norm": 0.893845796585083, + "learning_rate": 8.0464e-06, + "loss": 1.2489615631103517, + "step": 629600 + }, + { + "epoch": 83.96, + "grad_norm": 0.907304048538208, + "learning_rate": 8.039733333333334e-06, + "loss": 1.2466935729980468, + "step": 629700 + }, + { + "epoch": 83.97333333333333, + "grad_norm": 0.8819485902786255, + "learning_rate": 8.033066666666666e-06, + "loss": 1.244398651123047, + "step": 629800 + }, + { + "epoch": 83.98666666666666, + "grad_norm": 0.9273881912231445, + "learning_rate": 8.0264e-06, + "loss": 1.2486519622802734, + "step": 629900 + }, + { + "epoch": 84.0, + "grad_norm": 0.879425585269928, + "learning_rate": 8.019733333333334e-06, + "loss": 1.2535282897949218, + "step": 630000 + }, + { + "epoch": 84.01333333333334, + "grad_norm": 0.8982846140861511, + "learning_rate": 8.013066666666668e-06, + "loss": 1.2259478759765625, + "step": 630100 + }, + { + "epoch": 84.02666666666667, + "grad_norm": 0.9428343176841736, + "learning_rate": 8.0064e-06, + "loss": 1.228878936767578, + "step": 630200 + }, + { + "epoch": 84.04, + "grad_norm": 0.9072933197021484, + "learning_rate": 7.999733333333334e-06, + "loss": 1.223412399291992, + "step": 630300 + }, + { + "epoch": 84.05333333333333, + "grad_norm": 0.9243832230567932, + "learning_rate": 7.993066666666666e-06, + "loss": 1.224007797241211, + "step": 630400 + }, + { + "epoch": 84.06666666666666, + "grad_norm": 0.8180492520332336, + "learning_rate": 7.9864e-06, + "loss": 1.2259696960449218, + "step": 630500 + }, + { + "epoch": 84.08, + "grad_norm": 0.888479471206665, + "learning_rate": 7.979733333333334e-06, + "loss": 1.2236656951904297, + "step": 630600 + }, + { + "epoch": 84.09333333333333, + "grad_norm": 0.9106174111366272, + "learning_rate": 7.973066666666668e-06, + "loss": 1.2281214904785156, + "step": 630700 + }, + { + "epoch": 84.10666666666667, + "grad_norm": 0.9094051122665405, + "learning_rate": 7.9664e-06, + "loss": 1.2281082916259765, + "step": 630800 + }, + { + "epoch": 84.12, + "grad_norm": 0.9189176559448242, + "learning_rate": 7.959733333333334e-06, + "loss": 1.2266500091552734, + "step": 630900 + }, + { + "epoch": 84.13333333333334, + "grad_norm": 0.8246629238128662, + "learning_rate": 7.953066666666667e-06, + "loss": 1.2251168823242187, + "step": 631000 + }, + { + "epoch": 84.14666666666666, + "grad_norm": 0.826525866985321, + "learning_rate": 7.9464e-06, + "loss": 1.2267461395263672, + "step": 631100 + }, + { + "epoch": 84.16, + "grad_norm": 0.9305570721626282, + "learning_rate": 7.939733333333333e-06, + "loss": 1.2317483520507813, + "step": 631200 + }, + { + "epoch": 84.17333333333333, + "grad_norm": 0.877616822719574, + "learning_rate": 7.933066666666667e-06, + "loss": 1.2281706237792969, + "step": 631300 + }, + { + "epoch": 84.18666666666667, + "grad_norm": 0.9188335537910461, + "learning_rate": 7.926466666666666e-06, + "loss": 1.2292250061035157, + "step": 631400 + }, + { + "epoch": 84.2, + "grad_norm": 0.9196408987045288, + "learning_rate": 7.919800000000002e-06, + "loss": 1.2331906127929688, + "step": 631500 + }, + { + "epoch": 84.21333333333334, + "grad_norm": 0.9125308990478516, + "learning_rate": 7.913133333333334e-06, + "loss": 1.2301849365234374, + "step": 631600 + }, + { + "epoch": 84.22666666666667, + "grad_norm": 0.8713774681091309, + "learning_rate": 7.906466666666668e-06, + "loss": 1.230985107421875, + "step": 631700 + }, + { + "epoch": 84.24, + "grad_norm": 0.9613950848579407, + "learning_rate": 7.8998e-06, + "loss": 1.2276271057128907, + "step": 631800 + }, + { + "epoch": 84.25333333333333, + "grad_norm": 0.8837341666221619, + "learning_rate": 7.893133333333334e-06, + "loss": 1.2295457458496093, + "step": 631900 + }, + { + "epoch": 84.26666666666667, + "grad_norm": 0.8872280120849609, + "learning_rate": 7.886466666666666e-06, + "loss": 1.2273683166503906, + "step": 632000 + }, + { + "epoch": 84.28, + "grad_norm": 0.8547608852386475, + "learning_rate": 7.8798e-06, + "loss": 1.2305823516845704, + "step": 632100 + }, + { + "epoch": 84.29333333333334, + "grad_norm": 0.9107147455215454, + "learning_rate": 7.873133333333334e-06, + "loss": 1.2315924072265625, + "step": 632200 + }, + { + "epoch": 84.30666666666667, + "grad_norm": 0.8627474904060364, + "learning_rate": 7.866466666666667e-06, + "loss": 1.230730972290039, + "step": 632300 + }, + { + "epoch": 84.32, + "grad_norm": 0.9304380416870117, + "learning_rate": 7.8598e-06, + "loss": 1.2302085876464843, + "step": 632400 + }, + { + "epoch": 84.33333333333333, + "grad_norm": 0.8998819589614868, + "learning_rate": 7.853133333333333e-06, + "loss": 1.2364775085449218, + "step": 632500 + }, + { + "epoch": 84.34666666666666, + "grad_norm": 0.8804898858070374, + "learning_rate": 7.846466666666667e-06, + "loss": 1.2302351379394532, + "step": 632600 + }, + { + "epoch": 84.36, + "grad_norm": 0.8894650936126709, + "learning_rate": 7.8398e-06, + "loss": 1.2332183074951173, + "step": 632700 + }, + { + "epoch": 84.37333333333333, + "grad_norm": 0.8644715547561646, + "learning_rate": 7.833133333333335e-06, + "loss": 1.2344248962402344, + "step": 632800 + }, + { + "epoch": 84.38666666666667, + "grad_norm": 0.9465084671974182, + "learning_rate": 7.826466666666667e-06, + "loss": 1.2316624450683593, + "step": 632900 + }, + { + "epoch": 84.4, + "grad_norm": 0.9370139241218567, + "learning_rate": 7.819800000000001e-06, + "loss": 1.2370130157470702, + "step": 633000 + }, + { + "epoch": 84.41333333333333, + "grad_norm": 0.888559877872467, + "learning_rate": 7.813133333333333e-06, + "loss": 1.2325920867919922, + "step": 633100 + }, + { + "epoch": 84.42666666666666, + "grad_norm": 0.8683785200119019, + "learning_rate": 7.806466666666667e-06, + "loss": 1.229187240600586, + "step": 633200 + }, + { + "epoch": 84.44, + "grad_norm": 0.9215974807739258, + "learning_rate": 7.7998e-06, + "loss": 1.2338642120361327, + "step": 633300 + }, + { + "epoch": 84.45333333333333, + "grad_norm": 0.9330242276191711, + "learning_rate": 7.7932e-06, + "loss": 1.234636001586914, + "step": 633400 + }, + { + "epoch": 84.46666666666667, + "grad_norm": 0.8812191486358643, + "learning_rate": 7.786533333333332e-06, + "loss": 1.233119659423828, + "step": 633500 + }, + { + "epoch": 84.48, + "grad_norm": 0.9350599646568298, + "learning_rate": 7.779866666666666e-06, + "loss": 1.2376564788818358, + "step": 633600 + }, + { + "epoch": 84.49333333333334, + "grad_norm": 0.8722426295280457, + "learning_rate": 7.7732e-06, + "loss": 1.2354527282714844, + "step": 633700 + }, + { + "epoch": 84.50666666666666, + "grad_norm": 0.9167805910110474, + "learning_rate": 7.766533333333334e-06, + "loss": 1.2361752319335937, + "step": 633800 + }, + { + "epoch": 84.52, + "grad_norm": 0.908461332321167, + "learning_rate": 7.759866666666667e-06, + "loss": 1.232997589111328, + "step": 633900 + }, + { + "epoch": 84.53333333333333, + "grad_norm": 0.9203801155090332, + "learning_rate": 7.7532e-06, + "loss": 1.2356761169433594, + "step": 634000 + }, + { + "epoch": 84.54666666666667, + "grad_norm": 0.8989818692207336, + "learning_rate": 7.746533333333333e-06, + "loss": 1.2334909057617187, + "step": 634100 + }, + { + "epoch": 84.56, + "grad_norm": 0.9835088849067688, + "learning_rate": 7.739866666666667e-06, + "loss": 1.2388640594482423, + "step": 634200 + }, + { + "epoch": 84.57333333333334, + "grad_norm": 0.8754939436912537, + "learning_rate": 7.7332e-06, + "loss": 1.241256866455078, + "step": 634300 + }, + { + "epoch": 84.58666666666667, + "grad_norm": 0.8577386736869812, + "learning_rate": 7.726533333333335e-06, + "loss": 1.2348951721191406, + "step": 634400 + }, + { + "epoch": 84.6, + "grad_norm": 0.8799518346786499, + "learning_rate": 7.719866666666667e-06, + "loss": 1.2372528839111328, + "step": 634500 + }, + { + "epoch": 84.61333333333333, + "grad_norm": 0.9047410488128662, + "learning_rate": 7.713200000000001e-06, + "loss": 1.2386643981933594, + "step": 634600 + }, + { + "epoch": 84.62666666666667, + "grad_norm": 0.9157127141952515, + "learning_rate": 7.706533333333333e-06, + "loss": 1.2385972595214845, + "step": 634700 + }, + { + "epoch": 84.64, + "grad_norm": 0.9638254046440125, + "learning_rate": 7.699866666666667e-06, + "loss": 1.236525115966797, + "step": 634800 + }, + { + "epoch": 84.65333333333334, + "grad_norm": 0.8745006322860718, + "learning_rate": 7.693200000000001e-06, + "loss": 1.237788314819336, + "step": 634900 + }, + { + "epoch": 84.66666666666667, + "grad_norm": 0.8753082752227783, + "learning_rate": 7.686533333333333e-06, + "loss": 1.2403019714355468, + "step": 635000 + }, + { + "epoch": 84.68, + "grad_norm": 0.9249312877655029, + "learning_rate": 7.679866666666667e-06, + "loss": 1.2393556976318358, + "step": 635100 + }, + { + "epoch": 84.69333333333333, + "grad_norm": 0.9037955403327942, + "learning_rate": 7.6732e-06, + "loss": 1.240056838989258, + "step": 635200 + }, + { + "epoch": 84.70666666666666, + "grad_norm": 0.8841052651405334, + "learning_rate": 7.666533333333334e-06, + "loss": 1.2407506561279298, + "step": 635300 + }, + { + "epoch": 84.72, + "grad_norm": 0.8909189701080322, + "learning_rate": 7.659933333333334e-06, + "loss": 1.2383670806884766, + "step": 635400 + }, + { + "epoch": 84.73333333333333, + "grad_norm": 0.827193021774292, + "learning_rate": 7.653266666666667e-06, + "loss": 1.2386473083496095, + "step": 635500 + }, + { + "epoch": 84.74666666666667, + "grad_norm": 0.8958622813224792, + "learning_rate": 7.6466e-06, + "loss": 1.2380664825439454, + "step": 635600 + }, + { + "epoch": 84.76, + "grad_norm": 0.9114907383918762, + "learning_rate": 7.639933333333333e-06, + "loss": 1.240849151611328, + "step": 635700 + }, + { + "epoch": 84.77333333333333, + "grad_norm": 0.907952070236206, + "learning_rate": 7.633266666666667e-06, + "loss": 1.2389560699462892, + "step": 635800 + }, + { + "epoch": 84.78666666666666, + "grad_norm": 0.8953930735588074, + "learning_rate": 7.626600000000001e-06, + "loss": 1.2392295074462891, + "step": 635900 + }, + { + "epoch": 84.8, + "grad_norm": 0.8722439408302307, + "learning_rate": 7.619933333333333e-06, + "loss": 1.2366736602783204, + "step": 636000 + }, + { + "epoch": 84.81333333333333, + "grad_norm": 0.9456676244735718, + "learning_rate": 7.613266666666667e-06, + "loss": 1.237574005126953, + "step": 636100 + }, + { + "epoch": 84.82666666666667, + "grad_norm": 0.919913113117218, + "learning_rate": 7.6066e-06, + "loss": 1.2442679595947266, + "step": 636200 + }, + { + "epoch": 84.84, + "grad_norm": 0.9416049718856812, + "learning_rate": 7.599933333333334e-06, + "loss": 1.243212890625, + "step": 636300 + }, + { + "epoch": 84.85333333333334, + "grad_norm": 0.9268980026245117, + "learning_rate": 7.593266666666666e-06, + "loss": 1.2382852172851562, + "step": 636400 + }, + { + "epoch": 84.86666666666666, + "grad_norm": 0.8669841885566711, + "learning_rate": 7.5866e-06, + "loss": 1.240669708251953, + "step": 636500 + }, + { + "epoch": 84.88, + "grad_norm": 0.9298033714294434, + "learning_rate": 7.5799333333333335e-06, + "loss": 1.2412749481201173, + "step": 636600 + }, + { + "epoch": 84.89333333333333, + "grad_norm": 0.962435245513916, + "learning_rate": 7.573266666666667e-06, + "loss": 1.2403402709960938, + "step": 636700 + }, + { + "epoch": 84.90666666666667, + "grad_norm": 0.8809468150138855, + "learning_rate": 7.5666e-06, + "loss": 1.240942153930664, + "step": 636800 + }, + { + "epoch": 84.92, + "grad_norm": 0.8820023536682129, + "learning_rate": 7.5599333333333345e-06, + "loss": 1.2404846954345703, + "step": 636900 + }, + { + "epoch": 84.93333333333334, + "grad_norm": 0.9361487030982971, + "learning_rate": 7.553266666666667e-06, + "loss": 1.246995849609375, + "step": 637000 + }, + { + "epoch": 84.94666666666667, + "grad_norm": 0.8973338603973389, + "learning_rate": 7.546600000000001e-06, + "loss": 1.242446517944336, + "step": 637100 + }, + { + "epoch": 84.96, + "grad_norm": 0.9044018387794495, + "learning_rate": 7.539933333333334e-06, + "loss": 1.2397714233398438, + "step": 637200 + }, + { + "epoch": 84.97333333333333, + "grad_norm": 0.9448003768920898, + "learning_rate": 7.533266666666668e-06, + "loss": 1.239171905517578, + "step": 637300 + }, + { + "epoch": 84.98666666666666, + "grad_norm": 0.9056717753410339, + "learning_rate": 7.526666666666667e-06, + "loss": 1.2440061950683594, + "step": 637400 + }, + { + "epoch": 85.0, + "grad_norm": 0.9282798171043396, + "learning_rate": 7.520000000000001e-06, + "loss": 1.2430106353759767, + "step": 637500 + }, + { + "epoch": 85.01333333333334, + "grad_norm": 0.8406403660774231, + "learning_rate": 7.513333333333333e-06, + "loss": 1.2223043823242188, + "step": 637600 + }, + { + "epoch": 85.02666666666667, + "grad_norm": 0.8572675585746765, + "learning_rate": 7.506666666666667e-06, + "loss": 1.2273347473144531, + "step": 637700 + }, + { + "epoch": 85.04, + "grad_norm": 0.887302815914154, + "learning_rate": 7.5e-06, + "loss": 1.221242446899414, + "step": 637800 + }, + { + "epoch": 85.05333333333333, + "grad_norm": 0.91096431016922, + "learning_rate": 7.493333333333334e-06, + "loss": 1.2202544403076172, + "step": 637900 + }, + { + "epoch": 85.06666666666666, + "grad_norm": 0.8980180621147156, + "learning_rate": 7.486666666666666e-06, + "loss": 1.2262554931640626, + "step": 638000 + }, + { + "epoch": 85.08, + "grad_norm": 0.9790130257606506, + "learning_rate": 7.480000000000001e-06, + "loss": 1.2260646057128906, + "step": 638100 + }, + { + "epoch": 85.09333333333333, + "grad_norm": 0.9041993021965027, + "learning_rate": 7.4733333333333335e-06, + "loss": 1.2228318023681641, + "step": 638200 + }, + { + "epoch": 85.10666666666667, + "grad_norm": 0.9332461953163147, + "learning_rate": 7.4666666666666675e-06, + "loss": 1.2237569427490234, + "step": 638300 + }, + { + "epoch": 85.12, + "grad_norm": 0.8508715033531189, + "learning_rate": 7.4600000000000006e-06, + "loss": 1.22271240234375, + "step": 638400 + }, + { + "epoch": 85.13333333333334, + "grad_norm": 0.8810603618621826, + "learning_rate": 7.453333333333333e-06, + "loss": 1.2232743835449218, + "step": 638500 + }, + { + "epoch": 85.14666666666666, + "grad_norm": 0.9365109801292419, + "learning_rate": 7.446666666666667e-06, + "loss": 1.2257044982910157, + "step": 638600 + }, + { + "epoch": 85.16, + "grad_norm": 0.9457574486732483, + "learning_rate": 7.44e-06, + "loss": 1.2268252563476563, + "step": 638700 + }, + { + "epoch": 85.17333333333333, + "grad_norm": 0.9184970855712891, + "learning_rate": 7.433333333333334e-06, + "loss": 1.2216042327880858, + "step": 638800 + }, + { + "epoch": 85.18666666666667, + "grad_norm": 0.8944892883300781, + "learning_rate": 7.426666666666666e-06, + "loss": 1.2262333679199218, + "step": 638900 + }, + { + "epoch": 85.2, + "grad_norm": 0.9582709670066833, + "learning_rate": 7.420000000000001e-06, + "loss": 1.2231621551513672, + "step": 639000 + }, + { + "epoch": 85.21333333333334, + "grad_norm": 0.9123549461364746, + "learning_rate": 7.413333333333333e-06, + "loss": 1.2277581787109375, + "step": 639100 + }, + { + "epoch": 85.22666666666667, + "grad_norm": 0.8903558850288391, + "learning_rate": 7.406666666666667e-06, + "loss": 1.2252957916259766, + "step": 639200 + }, + { + "epoch": 85.24, + "grad_norm": 0.8448173999786377, + "learning_rate": 7.4e-06, + "loss": 1.224297332763672, + "step": 639300 + }, + { + "epoch": 85.25333333333333, + "grad_norm": 0.9212110638618469, + "learning_rate": 7.3934e-06, + "loss": 1.2260472869873047, + "step": 639400 + }, + { + "epoch": 85.26666666666667, + "grad_norm": 0.8959601521492004, + "learning_rate": 7.386733333333333e-06, + "loss": 1.2307054901123047, + "step": 639500 + }, + { + "epoch": 85.28, + "grad_norm": 0.8986248970031738, + "learning_rate": 7.380066666666667e-06, + "loss": 1.2230642700195313, + "step": 639600 + }, + { + "epoch": 85.29333333333334, + "grad_norm": 0.9850512146949768, + "learning_rate": 7.3733999999999996e-06, + "loss": 1.2273857879638672, + "step": 639700 + }, + { + "epoch": 85.30666666666667, + "grad_norm": 0.8248298764228821, + "learning_rate": 7.3667333333333335e-06, + "loss": 1.226371307373047, + "step": 639800 + }, + { + "epoch": 85.32, + "grad_norm": 0.9425682425498962, + "learning_rate": 7.360066666666667e-06, + "loss": 1.2281211090087891, + "step": 639900 + }, + { + "epoch": 85.33333333333333, + "grad_norm": 0.8708743453025818, + "learning_rate": 7.353400000000001e-06, + "loss": 1.225609664916992, + "step": 640000 + }, + { + "epoch": 85.34666666666666, + "grad_norm": 0.9035684466362, + "learning_rate": 7.346733333333333e-06, + "loss": 1.2235333251953124, + "step": 640100 + }, + { + "epoch": 85.36, + "grad_norm": 0.9259425401687622, + "learning_rate": 7.340066666666668e-06, + "loss": 1.23236083984375, + "step": 640200 + }, + { + "epoch": 85.37333333333333, + "grad_norm": 0.9252036213874817, + "learning_rate": 7.3334e-06, + "loss": 1.229639205932617, + "step": 640300 + }, + { + "epoch": 85.38666666666667, + "grad_norm": 0.9062958359718323, + "learning_rate": 7.326733333333334e-06, + "loss": 1.2285384368896484, + "step": 640400 + }, + { + "epoch": 85.4, + "grad_norm": 0.9291536211967468, + "learning_rate": 7.320066666666667e-06, + "loss": 1.2298905944824219, + "step": 640500 + }, + { + "epoch": 85.41333333333333, + "grad_norm": 0.8647129535675049, + "learning_rate": 7.313400000000001e-06, + "loss": 1.2309508514404297, + "step": 640600 + }, + { + "epoch": 85.42666666666666, + "grad_norm": 0.9247118234634399, + "learning_rate": 7.306733333333333e-06, + "loss": 1.2306937408447265, + "step": 640700 + }, + { + "epoch": 85.44, + "grad_norm": 0.8799145221710205, + "learning_rate": 7.300066666666667e-06, + "loss": 1.226353759765625, + "step": 640800 + }, + { + "epoch": 85.45333333333333, + "grad_norm": 0.9392918944358826, + "learning_rate": 7.2934e-06, + "loss": 1.2263146209716798, + "step": 640900 + }, + { + "epoch": 85.46666666666667, + "grad_norm": 0.8683087229728699, + "learning_rate": 7.286733333333334e-06, + "loss": 1.2288311767578124, + "step": 641000 + }, + { + "epoch": 85.48, + "grad_norm": 0.9020020365715027, + "learning_rate": 7.2800666666666666e-06, + "loss": 1.229554214477539, + "step": 641100 + }, + { + "epoch": 85.49333333333334, + "grad_norm": 0.8641257882118225, + "learning_rate": 7.2734e-06, + "loss": 1.2283095550537109, + "step": 641200 + }, + { + "epoch": 85.50666666666666, + "grad_norm": 0.8976728320121765, + "learning_rate": 7.266733333333334e-06, + "loss": 1.2341390991210937, + "step": 641300 + }, + { + "epoch": 85.52, + "grad_norm": 0.9710721373558044, + "learning_rate": 7.260133333333334e-06, + "loss": 1.228611831665039, + "step": 641400 + }, + { + "epoch": 85.53333333333333, + "grad_norm": 0.9804433584213257, + "learning_rate": 7.253466666666667e-06, + "loss": 1.231660385131836, + "step": 641500 + }, + { + "epoch": 85.54666666666667, + "grad_norm": 0.9250527620315552, + "learning_rate": 7.246800000000001e-06, + "loss": 1.2287106323242187, + "step": 641600 + }, + { + "epoch": 85.56, + "grad_norm": 0.8953940868377686, + "learning_rate": 7.240133333333334e-06, + "loss": 1.2353031158447265, + "step": 641700 + }, + { + "epoch": 85.57333333333334, + "grad_norm": 0.8646306991577148, + "learning_rate": 7.233466666666668e-06, + "loss": 1.232652053833008, + "step": 641800 + }, + { + "epoch": 85.58666666666667, + "grad_norm": 0.9270492792129517, + "learning_rate": 7.2268e-06, + "loss": 1.2340243530273438, + "step": 641900 + }, + { + "epoch": 85.6, + "grad_norm": 0.9221645593643188, + "learning_rate": 7.220133333333334e-06, + "loss": 1.2317237091064452, + "step": 642000 + }, + { + "epoch": 85.61333333333333, + "grad_norm": 0.8994006514549255, + "learning_rate": 7.213466666666667e-06, + "loss": 1.2312322998046874, + "step": 642100 + }, + { + "epoch": 85.62666666666667, + "grad_norm": 0.9039101600646973, + "learning_rate": 7.206799999999999e-06, + "loss": 1.2359030151367187, + "step": 642200 + }, + { + "epoch": 85.64, + "grad_norm": 0.9876293540000916, + "learning_rate": 7.200133333333334e-06, + "loss": 1.231430435180664, + "step": 642300 + }, + { + "epoch": 85.65333333333334, + "grad_norm": 0.8660300970077515, + "learning_rate": 7.193466666666666e-06, + "loss": 1.232857437133789, + "step": 642400 + }, + { + "epoch": 85.66666666666667, + "grad_norm": 0.9719154834747314, + "learning_rate": 7.1868e-06, + "loss": 1.2365948486328124, + "step": 642500 + }, + { + "epoch": 85.68, + "grad_norm": 0.9251152276992798, + "learning_rate": 7.1801333333333335e-06, + "loss": 1.2319696044921875, + "step": 642600 + }, + { + "epoch": 85.69333333333333, + "grad_norm": 0.8920202255249023, + "learning_rate": 7.1734666666666675e-06, + "loss": 1.2325668334960938, + "step": 642700 + }, + { + "epoch": 85.70666666666666, + "grad_norm": 0.9049530625343323, + "learning_rate": 7.1668e-06, + "loss": 1.2362017822265625, + "step": 642800 + }, + { + "epoch": 85.72, + "grad_norm": 0.8955960869789124, + "learning_rate": 7.160133333333334e-06, + "loss": 1.2367591094970702, + "step": 642900 + }, + { + "epoch": 85.73333333333333, + "grad_norm": 0.8741152286529541, + "learning_rate": 7.153466666666667e-06, + "loss": 1.2382603454589844, + "step": 643000 + }, + { + "epoch": 85.74666666666667, + "grad_norm": 0.8936929106712341, + "learning_rate": 7.146800000000001e-06, + "loss": 1.2319417572021485, + "step": 643100 + }, + { + "epoch": 85.76, + "grad_norm": 0.8739801645278931, + "learning_rate": 7.140133333333333e-06, + "loss": 1.2322359466552735, + "step": 643200 + }, + { + "epoch": 85.77333333333333, + "grad_norm": 0.9064525961875916, + "learning_rate": 7.133466666666668e-06, + "loss": 1.2369744110107421, + "step": 643300 + }, + { + "epoch": 85.78666666666666, + "grad_norm": 0.8985515236854553, + "learning_rate": 7.1268e-06, + "loss": 1.2325567626953124, + "step": 643400 + }, + { + "epoch": 85.8, + "grad_norm": 0.9307603240013123, + "learning_rate": 7.120200000000001e-06, + "loss": 1.238876495361328, + "step": 643500 + }, + { + "epoch": 85.81333333333333, + "grad_norm": 0.8941517472267151, + "learning_rate": 7.113533333333333e-06, + "loss": 1.2391890716552734, + "step": 643600 + }, + { + "epoch": 85.82666666666667, + "grad_norm": 0.9674673676490784, + "learning_rate": 7.106866666666667e-06, + "loss": 1.2368927764892579, + "step": 643700 + }, + { + "epoch": 85.84, + "grad_norm": 0.933340847492218, + "learning_rate": 7.1002e-06, + "loss": 1.2422388458251954, + "step": 643800 + }, + { + "epoch": 85.85333333333334, + "grad_norm": 0.8938137888908386, + "learning_rate": 7.093533333333334e-06, + "loss": 1.2338928985595703, + "step": 643900 + }, + { + "epoch": 85.86666666666666, + "grad_norm": 0.8926107287406921, + "learning_rate": 7.0868666666666665e-06, + "loss": 1.2356930541992188, + "step": 644000 + }, + { + "epoch": 85.88, + "grad_norm": 0.8534455299377441, + "learning_rate": 7.0802e-06, + "loss": 1.2378578186035156, + "step": 644100 + }, + { + "epoch": 85.89333333333333, + "grad_norm": 1.000348448753357, + "learning_rate": 7.0735333333333335e-06, + "loss": 1.2363401794433593, + "step": 644200 + }, + { + "epoch": 85.90666666666667, + "grad_norm": 0.9621683359146118, + "learning_rate": 7.0668666666666675e-06, + "loss": 1.241478271484375, + "step": 644300 + }, + { + "epoch": 85.92, + "grad_norm": 0.9294373989105225, + "learning_rate": 7.0602e-06, + "loss": 1.237207565307617, + "step": 644400 + }, + { + "epoch": 85.93333333333334, + "grad_norm": 0.9206804037094116, + "learning_rate": 7.0535333333333346e-06, + "loss": 1.2392974090576172, + "step": 644500 + }, + { + "epoch": 85.94666666666667, + "grad_norm": 0.8890131115913391, + "learning_rate": 7.046866666666667e-06, + "loss": 1.2358542633056642, + "step": 644600 + }, + { + "epoch": 85.96, + "grad_norm": 0.887895941734314, + "learning_rate": 7.040200000000001e-06, + "loss": 1.2418438720703124, + "step": 644700 + }, + { + "epoch": 85.97333333333333, + "grad_norm": 0.8878814578056335, + "learning_rate": 7.033533333333334e-06, + "loss": 1.2417584991455077, + "step": 644800 + }, + { + "epoch": 85.98666666666666, + "grad_norm": 0.9163659811019897, + "learning_rate": 7.026866666666666e-06, + "loss": 1.2418124389648437, + "step": 644900 + }, + { + "epoch": 86.0, + "grad_norm": 0.9403581023216248, + "learning_rate": 7.0202e-06, + "loss": 1.2414751434326172, + "step": 645000 + }, + { + "epoch": 86.01333333333334, + "grad_norm": 0.8630901575088501, + "learning_rate": 7.013533333333333e-06, + "loss": 1.2175826263427734, + "step": 645100 + }, + { + "epoch": 86.02666666666667, + "grad_norm": 0.9154542684555054, + "learning_rate": 7.006866666666667e-06, + "loss": 1.2209982299804687, + "step": 645200 + }, + { + "epoch": 86.04, + "grad_norm": 0.9038174748420715, + "learning_rate": 7.0001999999999995e-06, + "loss": 1.216339340209961, + "step": 645300 + }, + { + "epoch": 86.05333333333333, + "grad_norm": 0.8506960272789001, + "learning_rate": 6.993533333333334e-06, + "loss": 1.218511962890625, + "step": 645400 + }, + { + "epoch": 86.06666666666666, + "grad_norm": 0.8634645342826843, + "learning_rate": 6.986933333333334e-06, + "loss": 1.2178488922119142, + "step": 645500 + }, + { + "epoch": 86.08, + "grad_norm": 0.9225000739097595, + "learning_rate": 6.9802666666666665e-06, + "loss": 1.2196299743652343, + "step": 645600 + }, + { + "epoch": 86.09333333333333, + "grad_norm": 0.9054206609725952, + "learning_rate": 6.973600000000001e-06, + "loss": 1.2221673583984376, + "step": 645700 + }, + { + "epoch": 86.10666666666667, + "grad_norm": 0.8930476307868958, + "learning_rate": 6.9669333333333336e-06, + "loss": 1.219794464111328, + "step": 645800 + }, + { + "epoch": 86.12, + "grad_norm": 0.8613491058349609, + "learning_rate": 6.960266666666667e-06, + "loss": 1.21840576171875, + "step": 645900 + }, + { + "epoch": 86.13333333333334, + "grad_norm": 0.9077932238578796, + "learning_rate": 6.953600000000001e-06, + "loss": 1.2229581451416016, + "step": 646000 + }, + { + "epoch": 86.14666666666666, + "grad_norm": 0.9440174102783203, + "learning_rate": 6.946933333333333e-06, + "loss": 1.217189178466797, + "step": 646100 + }, + { + "epoch": 86.16, + "grad_norm": 0.906891405582428, + "learning_rate": 6.940266666666667e-06, + "loss": 1.2184838104248046, + "step": 646200 + }, + { + "epoch": 86.17333333333333, + "grad_norm": 0.8963661193847656, + "learning_rate": 6.9336e-06, + "loss": 1.2230545043945313, + "step": 646300 + }, + { + "epoch": 86.18666666666667, + "grad_norm": 0.8720294833183289, + "learning_rate": 6.926933333333334e-06, + "loss": 1.2247891998291016, + "step": 646400 + }, + { + "epoch": 86.2, + "grad_norm": 0.9351063966751099, + "learning_rate": 6.920266666666666e-06, + "loss": 1.2246680450439453, + "step": 646500 + }, + { + "epoch": 86.21333333333334, + "grad_norm": 0.9471380114555359, + "learning_rate": 6.913600000000001e-06, + "loss": 1.2222270965576172, + "step": 646600 + }, + { + "epoch": 86.22666666666667, + "grad_norm": 0.8749629259109497, + "learning_rate": 6.906933333333333e-06, + "loss": 1.2154730987548827, + "step": 646700 + }, + { + "epoch": 86.24, + "grad_norm": 0.8750444650650024, + "learning_rate": 6.900266666666667e-06, + "loss": 1.2247186279296876, + "step": 646800 + }, + { + "epoch": 86.25333333333333, + "grad_norm": 0.9080207347869873, + "learning_rate": 6.8936e-06, + "loss": 1.2202265930175782, + "step": 646900 + }, + { + "epoch": 86.26666666666667, + "grad_norm": 0.9241020679473877, + "learning_rate": 6.886933333333334e-06, + "loss": 1.224848175048828, + "step": 647000 + }, + { + "epoch": 86.28, + "grad_norm": 0.907421350479126, + "learning_rate": 6.880266666666667e-06, + "loss": 1.2235704040527344, + "step": 647100 + }, + { + "epoch": 86.29333333333334, + "grad_norm": 0.9098572731018066, + "learning_rate": 6.8736000000000006e-06, + "loss": 1.2222378540039063, + "step": 647200 + }, + { + "epoch": 86.30666666666667, + "grad_norm": 0.8905967473983765, + "learning_rate": 6.866933333333334e-06, + "loss": 1.2262596130371093, + "step": 647300 + }, + { + "epoch": 86.32, + "grad_norm": 0.8770264387130737, + "learning_rate": 6.860266666666668e-06, + "loss": 1.2231716156005858, + "step": 647400 + }, + { + "epoch": 86.33333333333333, + "grad_norm": 0.8793537616729736, + "learning_rate": 6.853666666666667e-06, + "loss": 1.2286277770996095, + "step": 647500 + }, + { + "epoch": 86.34666666666666, + "grad_norm": 0.8772323131561279, + "learning_rate": 6.847000000000001e-06, + "loss": 1.2212282562255858, + "step": 647600 + }, + { + "epoch": 86.36, + "grad_norm": 0.891001284122467, + "learning_rate": 6.840333333333333e-06, + "loss": 1.222700729370117, + "step": 647700 + }, + { + "epoch": 86.37333333333333, + "grad_norm": 0.9272405505180359, + "learning_rate": 6.833666666666668e-06, + "loss": 1.2218807220458985, + "step": 647800 + }, + { + "epoch": 86.38666666666667, + "grad_norm": 0.884071409702301, + "learning_rate": 6.827e-06, + "loss": 1.2227737426757812, + "step": 647900 + }, + { + "epoch": 86.4, + "grad_norm": 0.9387223720550537, + "learning_rate": 6.820333333333334e-06, + "loss": 1.227510986328125, + "step": 648000 + }, + { + "epoch": 86.41333333333333, + "grad_norm": 0.8574748039245605, + "learning_rate": 6.813666666666667e-06, + "loss": 1.2250510406494142, + "step": 648100 + }, + { + "epoch": 86.42666666666666, + "grad_norm": 0.8585149049758911, + "learning_rate": 6.807000000000001e-06, + "loss": 1.2231393432617188, + "step": 648200 + }, + { + "epoch": 86.44, + "grad_norm": 0.8672378659248352, + "learning_rate": 6.800333333333333e-06, + "loss": 1.2262419891357421, + "step": 648300 + }, + { + "epoch": 86.45333333333333, + "grad_norm": 0.8681180477142334, + "learning_rate": 6.793666666666667e-06, + "loss": 1.2264180755615235, + "step": 648400 + }, + { + "epoch": 86.46666666666667, + "grad_norm": 0.9366236329078674, + "learning_rate": 6.787e-06, + "loss": 1.2281493377685546, + "step": 648500 + }, + { + "epoch": 86.48, + "grad_norm": 0.9453869462013245, + "learning_rate": 6.780333333333333e-06, + "loss": 1.2302886199951173, + "step": 648600 + }, + { + "epoch": 86.49333333333334, + "grad_norm": 0.8976516127586365, + "learning_rate": 6.773666666666667e-06, + "loss": 1.227205810546875, + "step": 648700 + }, + { + "epoch": 86.50666666666666, + "grad_norm": 0.9220427870750427, + "learning_rate": 6.767e-06, + "loss": 1.2235513305664063, + "step": 648800 + }, + { + "epoch": 86.52, + "grad_norm": 0.912756085395813, + "learning_rate": 6.760333333333334e-06, + "loss": 1.2255386352539062, + "step": 648900 + }, + { + "epoch": 86.53333333333333, + "grad_norm": 0.9162057042121887, + "learning_rate": 6.753666666666667e-06, + "loss": 1.2223670959472657, + "step": 649000 + }, + { + "epoch": 86.54666666666667, + "grad_norm": 0.8735973238945007, + "learning_rate": 6.747000000000001e-06, + "loss": 1.2262992858886719, + "step": 649100 + }, + { + "epoch": 86.56, + "grad_norm": 0.8713511228561401, + "learning_rate": 6.740333333333333e-06, + "loss": 1.231358871459961, + "step": 649200 + }, + { + "epoch": 86.57333333333334, + "grad_norm": 0.879443883895874, + "learning_rate": 6.733666666666667e-06, + "loss": 1.2286178588867187, + "step": 649300 + }, + { + "epoch": 86.58666666666667, + "grad_norm": 0.9119516015052795, + "learning_rate": 6.727e-06, + "loss": 1.2312828063964845, + "step": 649400 + }, + { + "epoch": 86.6, + "grad_norm": 0.9122266173362732, + "learning_rate": 6.7204e-06, + "loss": 1.2293184661865235, + "step": 649500 + }, + { + "epoch": 86.61333333333333, + "grad_norm": 0.9306323528289795, + "learning_rate": 6.713733333333333e-06, + "loss": 1.2252943420410156, + "step": 649600 + }, + { + "epoch": 86.62666666666667, + "grad_norm": 0.8929945230484009, + "learning_rate": 6.707066666666667e-06, + "loss": 1.2296338653564454, + "step": 649700 + }, + { + "epoch": 86.64, + "grad_norm": 0.9355345964431763, + "learning_rate": 6.700399999999999e-06, + "loss": 1.229610595703125, + "step": 649800 + }, + { + "epoch": 86.65333333333334, + "grad_norm": 0.9156262278556824, + "learning_rate": 6.693733333333334e-06, + "loss": 1.2348743438720704, + "step": 649900 + }, + { + "epoch": 86.66666666666667, + "grad_norm": 0.9362950921058655, + "learning_rate": 6.6870666666666665e-06, + "loss": 1.2279579162597656, + "step": 650000 + }, + { + "epoch": 86.68, + "grad_norm": 0.8823856711387634, + "learning_rate": 6.6804000000000004e-06, + "loss": 1.23043212890625, + "step": 650100 + }, + { + "epoch": 86.69333333333333, + "grad_norm": 0.9650241732597351, + "learning_rate": 6.6737333333333336e-06, + "loss": 1.2296434020996094, + "step": 650200 + }, + { + "epoch": 86.70666666666666, + "grad_norm": 0.8565574288368225, + "learning_rate": 6.6670666666666675e-06, + "loss": 1.2308535003662109, + "step": 650300 + }, + { + "epoch": 86.72, + "grad_norm": 0.9410964846611023, + "learning_rate": 6.6604e-06, + "loss": 1.2321768951416017, + "step": 650400 + }, + { + "epoch": 86.73333333333333, + "grad_norm": 0.9220337867736816, + "learning_rate": 6.653733333333334e-06, + "loss": 1.231683349609375, + "step": 650500 + }, + { + "epoch": 86.74666666666667, + "grad_norm": 0.8969945907592773, + "learning_rate": 6.647066666666667e-06, + "loss": 1.233789291381836, + "step": 650600 + }, + { + "epoch": 86.76, + "grad_norm": 0.9641741514205933, + "learning_rate": 6.640400000000001e-06, + "loss": 1.230896987915039, + "step": 650700 + }, + { + "epoch": 86.77333333333333, + "grad_norm": 0.9212261438369751, + "learning_rate": 6.633733333333333e-06, + "loss": 1.2316611480712891, + "step": 650800 + }, + { + "epoch": 86.78666666666666, + "grad_norm": 0.8244799971580505, + "learning_rate": 6.627066666666668e-06, + "loss": 1.2281710815429687, + "step": 650900 + }, + { + "epoch": 86.8, + "grad_norm": 0.89630126953125, + "learning_rate": 6.6204e-06, + "loss": 1.2288339233398438, + "step": 651000 + }, + { + "epoch": 86.81333333333333, + "grad_norm": 0.8904646635055542, + "learning_rate": 6.613733333333334e-06, + "loss": 1.2315651702880859, + "step": 651100 + }, + { + "epoch": 86.82666666666667, + "grad_norm": 0.9223039150238037, + "learning_rate": 6.607066666666667e-06, + "loss": 1.2328720855712891, + "step": 651200 + }, + { + "epoch": 86.84, + "grad_norm": 0.8785363435745239, + "learning_rate": 6.6003999999999995e-06, + "loss": 1.2333258056640626, + "step": 651300 + }, + { + "epoch": 86.85333333333334, + "grad_norm": 0.9430354237556458, + "learning_rate": 6.5937333333333335e-06, + "loss": 1.231754913330078, + "step": 651400 + }, + { + "epoch": 86.86666666666666, + "grad_norm": 0.9277433156967163, + "learning_rate": 6.587133333333334e-06, + "loss": 1.2332256317138672, + "step": 651500 + }, + { + "epoch": 86.88, + "grad_norm": 0.9251424670219421, + "learning_rate": 6.5804666666666665e-06, + "loss": 1.2302942657470703, + "step": 651600 + }, + { + "epoch": 86.89333333333333, + "grad_norm": 0.9771026968955994, + "learning_rate": 6.5738000000000005e-06, + "loss": 1.2350211334228516, + "step": 651700 + }, + { + "epoch": 86.90666666666667, + "grad_norm": 0.9614867568016052, + "learning_rate": 6.567133333333334e-06, + "loss": 1.2328236389160157, + "step": 651800 + }, + { + "epoch": 86.92, + "grad_norm": 0.9628375768661499, + "learning_rate": 6.5604666666666676e-06, + "loss": 1.2369357299804689, + "step": 651900 + }, + { + "epoch": 86.93333333333334, + "grad_norm": 0.8983745574951172, + "learning_rate": 6.5538e-06, + "loss": 1.2343621063232422, + "step": 652000 + }, + { + "epoch": 86.94666666666667, + "grad_norm": 0.9080144166946411, + "learning_rate": 6.547133333333335e-06, + "loss": 1.2306615447998046, + "step": 652100 + }, + { + "epoch": 86.96, + "grad_norm": 0.8796840906143188, + "learning_rate": 6.540466666666667e-06, + "loss": 1.2312027740478515, + "step": 652200 + }, + { + "epoch": 86.97333333333333, + "grad_norm": 0.9401488304138184, + "learning_rate": 6.5338e-06, + "loss": 1.23423828125, + "step": 652300 + }, + { + "epoch": 86.98666666666666, + "grad_norm": 0.9651604890823364, + "learning_rate": 6.527133333333334e-06, + "loss": 1.2338542175292968, + "step": 652400 + }, + { + "epoch": 87.0, + "grad_norm": 0.9266039729118347, + "learning_rate": 6.520466666666666e-06, + "loss": 1.2390645599365235, + "step": 652500 + }, + { + "epoch": 87.01333333333334, + "grad_norm": 0.8999123573303223, + "learning_rate": 6.5138e-06, + "loss": 1.214796905517578, + "step": 652600 + }, + { + "epoch": 87.02666666666667, + "grad_norm": 0.903722882270813, + "learning_rate": 6.507133333333333e-06, + "loss": 1.2141775512695312, + "step": 652700 + }, + { + "epoch": 87.04, + "grad_norm": 0.8932545781135559, + "learning_rate": 6.500466666666667e-06, + "loss": 1.2154994201660156, + "step": 652800 + }, + { + "epoch": 87.05333333333333, + "grad_norm": 0.8836954236030579, + "learning_rate": 6.4937999999999996e-06, + "loss": 1.2121443939208985, + "step": 652900 + }, + { + "epoch": 87.06666666666666, + "grad_norm": 0.9204801321029663, + "learning_rate": 6.487133333333334e-06, + "loss": 1.2122740936279297, + "step": 653000 + }, + { + "epoch": 87.08, + "grad_norm": 0.8981918692588806, + "learning_rate": 6.480466666666667e-06, + "loss": 1.221134490966797, + "step": 653100 + }, + { + "epoch": 87.09333333333333, + "grad_norm": 0.926282525062561, + "learning_rate": 6.473800000000001e-06, + "loss": 1.2155657196044922, + "step": 653200 + }, + { + "epoch": 87.10666666666667, + "grad_norm": 0.8902606964111328, + "learning_rate": 6.467133333333334e-06, + "loss": 1.2164243316650392, + "step": 653300 + }, + { + "epoch": 87.12, + "grad_norm": 0.8815839290618896, + "learning_rate": 6.460466666666668e-06, + "loss": 1.2138585662841797, + "step": 653400 + }, + { + "epoch": 87.13333333333334, + "grad_norm": 0.9262551069259644, + "learning_rate": 6.453866666666667e-06, + "loss": 1.2137595367431642, + "step": 653500 + }, + { + "epoch": 87.14666666666666, + "grad_norm": 0.891934871673584, + "learning_rate": 6.447200000000001e-06, + "loss": 1.214564666748047, + "step": 653600 + }, + { + "epoch": 87.16, + "grad_norm": 0.8836770057678223, + "learning_rate": 6.440533333333333e-06, + "loss": 1.2159810638427735, + "step": 653700 + }, + { + "epoch": 87.17333333333333, + "grad_norm": 0.9016736745834351, + "learning_rate": 6.433866666666667e-06, + "loss": 1.2174545288085938, + "step": 653800 + }, + { + "epoch": 87.18666666666667, + "grad_norm": 0.9326723217964172, + "learning_rate": 6.4272e-06, + "loss": 1.2156101226806642, + "step": 653900 + }, + { + "epoch": 87.2, + "grad_norm": 0.8592504858970642, + "learning_rate": 6.420533333333334e-06, + "loss": 1.2173818969726562, + "step": 654000 + }, + { + "epoch": 87.21333333333334, + "grad_norm": 0.8951143026351929, + "learning_rate": 6.413866666666666e-06, + "loss": 1.2178955841064454, + "step": 654100 + }, + { + "epoch": 87.22666666666667, + "grad_norm": 0.9222288131713867, + "learning_rate": 6.407200000000001e-06, + "loss": 1.2179863739013672, + "step": 654200 + }, + { + "epoch": 87.24, + "grad_norm": 0.9849110245704651, + "learning_rate": 6.400533333333333e-06, + "loss": 1.2230202484130859, + "step": 654300 + }, + { + "epoch": 87.25333333333333, + "grad_norm": 0.9216305017471313, + "learning_rate": 6.393866666666667e-06, + "loss": 1.2152316284179687, + "step": 654400 + }, + { + "epoch": 87.26666666666667, + "grad_norm": 0.8858641982078552, + "learning_rate": 6.3872000000000004e-06, + "loss": 1.2167332458496094, + "step": 654500 + }, + { + "epoch": 87.28, + "grad_norm": 0.907527506351471, + "learning_rate": 6.380533333333334e-06, + "loss": 1.223568115234375, + "step": 654600 + }, + { + "epoch": 87.29333333333334, + "grad_norm": 0.928432285785675, + "learning_rate": 6.373866666666667e-06, + "loss": 1.221104507446289, + "step": 654700 + }, + { + "epoch": 87.30666666666667, + "grad_norm": 0.8888409733772278, + "learning_rate": 6.367200000000001e-06, + "loss": 1.2164854431152343, + "step": 654800 + }, + { + "epoch": 87.32, + "grad_norm": 0.9260812401771545, + "learning_rate": 6.360533333333334e-06, + "loss": 1.2207078552246093, + "step": 654900 + }, + { + "epoch": 87.33333333333333, + "grad_norm": 0.9093630313873291, + "learning_rate": 6.353866666666666e-06, + "loss": 1.221835174560547, + "step": 655000 + }, + { + "epoch": 87.34666666666666, + "grad_norm": 0.9289301633834839, + "learning_rate": 6.3472e-06, + "loss": 1.2211975860595703, + "step": 655100 + }, + { + "epoch": 87.36, + "grad_norm": 0.8211119771003723, + "learning_rate": 6.340533333333333e-06, + "loss": 1.2244545745849609, + "step": 655200 + }, + { + "epoch": 87.37333333333333, + "grad_norm": 0.9515888690948486, + "learning_rate": 6.333866666666667e-06, + "loss": 1.2235546112060547, + "step": 655300 + }, + { + "epoch": 87.38666666666667, + "grad_norm": 0.8519609570503235, + "learning_rate": 6.3272e-06, + "loss": 1.2207803344726562, + "step": 655400 + }, + { + "epoch": 87.4, + "grad_norm": 0.8767391443252563, + "learning_rate": 6.3206e-06, + "loss": 1.2202215576171875, + "step": 655500 + }, + { + "epoch": 87.41333333333333, + "grad_norm": 1.0171016454696655, + "learning_rate": 6.313933333333334e-06, + "loss": 1.2231157684326173, + "step": 655600 + }, + { + "epoch": 87.42666666666666, + "grad_norm": 0.86667400598526, + "learning_rate": 6.307266666666667e-06, + "loss": 1.2254328155517578, + "step": 655700 + }, + { + "epoch": 87.44, + "grad_norm": 0.9001585245132446, + "learning_rate": 6.300600000000001e-06, + "loss": 1.2218850708007813, + "step": 655800 + }, + { + "epoch": 87.45333333333333, + "grad_norm": 0.939195454120636, + "learning_rate": 6.293933333333333e-06, + "loss": 1.2206802368164062, + "step": 655900 + }, + { + "epoch": 87.46666666666667, + "grad_norm": 0.8869876265525818, + "learning_rate": 6.2872666666666665e-06, + "loss": 1.2218120574951172, + "step": 656000 + }, + { + "epoch": 87.48, + "grad_norm": 0.898676872253418, + "learning_rate": 6.2806000000000005e-06, + "loss": 1.2209648895263672, + "step": 656100 + }, + { + "epoch": 87.49333333333334, + "grad_norm": 0.9363060593605042, + "learning_rate": 6.273933333333333e-06, + "loss": 1.2237455749511719, + "step": 656200 + }, + { + "epoch": 87.50666666666666, + "grad_norm": 0.9196439981460571, + "learning_rate": 6.267266666666667e-06, + "loss": 1.2262535095214844, + "step": 656300 + }, + { + "epoch": 87.52, + "grad_norm": 0.7970747947692871, + "learning_rate": 6.2606e-06, + "loss": 1.2225990295410156, + "step": 656400 + }, + { + "epoch": 87.53333333333333, + "grad_norm": 0.8288227915763855, + "learning_rate": 6.253933333333334e-06, + "loss": 1.2242842864990235, + "step": 656500 + }, + { + "epoch": 87.54666666666667, + "grad_norm": 0.9207773804664612, + "learning_rate": 6.247266666666667e-06, + "loss": 1.2214242553710937, + "step": 656600 + }, + { + "epoch": 87.56, + "grad_norm": 0.9800169467926025, + "learning_rate": 6.240600000000001e-06, + "loss": 1.2252493286132813, + "step": 656700 + }, + { + "epoch": 87.57333333333334, + "grad_norm": 0.9389280080795288, + "learning_rate": 6.233933333333333e-06, + "loss": 1.220586700439453, + "step": 656800 + }, + { + "epoch": 87.58666666666667, + "grad_norm": 0.9566884636878967, + "learning_rate": 6.227266666666666e-06, + "loss": 1.2238873291015624, + "step": 656900 + }, + { + "epoch": 87.6, + "grad_norm": 0.9968175292015076, + "learning_rate": 6.2206e-06, + "loss": 1.2255178833007812, + "step": 657000 + }, + { + "epoch": 87.61333333333333, + "grad_norm": 0.9001134037971497, + "learning_rate": 6.213933333333333e-06, + "loss": 1.2253036499023438, + "step": 657100 + }, + { + "epoch": 87.62666666666667, + "grad_norm": 0.920998215675354, + "learning_rate": 6.2072666666666664e-06, + "loss": 1.2283302307128907, + "step": 657200 + }, + { + "epoch": 87.64, + "grad_norm": 0.9255244731903076, + "learning_rate": 6.2006e-06, + "loss": 1.2279671478271483, + "step": 657300 + }, + { + "epoch": 87.65333333333334, + "grad_norm": 0.8817408680915833, + "learning_rate": 6.1939333333333335e-06, + "loss": 1.222409210205078, + "step": 657400 + }, + { + "epoch": 87.66666666666667, + "grad_norm": 0.9020600914955139, + "learning_rate": 6.187333333333334e-06, + "loss": 1.2292388153076172, + "step": 657500 + }, + { + "epoch": 87.68, + "grad_norm": 0.880594789981842, + "learning_rate": 6.180666666666667e-06, + "loss": 1.2260498046875, + "step": 657600 + }, + { + "epoch": 87.69333333333333, + "grad_norm": 0.9309771656990051, + "learning_rate": 6.1740000000000005e-06, + "loss": 1.2300214385986328, + "step": 657700 + }, + { + "epoch": 87.70666666666666, + "grad_norm": 0.8785908222198486, + "learning_rate": 6.167333333333334e-06, + "loss": 1.2290544891357422, + "step": 657800 + }, + { + "epoch": 87.72, + "grad_norm": 0.8739680647850037, + "learning_rate": 6.160666666666667e-06, + "loss": 1.2261587524414062, + "step": 657900 + }, + { + "epoch": 87.73333333333333, + "grad_norm": 0.8887823224067688, + "learning_rate": 6.154e-06, + "loss": 1.2235511779785155, + "step": 658000 + }, + { + "epoch": 87.74666666666667, + "grad_norm": 0.9344404339790344, + "learning_rate": 6.147333333333334e-06, + "loss": 1.2311840057373047, + "step": 658100 + }, + { + "epoch": 87.76, + "grad_norm": 0.9279657006263733, + "learning_rate": 6.140666666666667e-06, + "loss": 1.2299423217773438, + "step": 658200 + }, + { + "epoch": 87.77333333333333, + "grad_norm": 0.9525284767150879, + "learning_rate": 6.134e-06, + "loss": 1.2301526641845704, + "step": 658300 + }, + { + "epoch": 87.78666666666666, + "grad_norm": 0.8445433378219604, + "learning_rate": 6.127333333333333e-06, + "loss": 1.226542739868164, + "step": 658400 + }, + { + "epoch": 87.8, + "grad_norm": 0.9366630911827087, + "learning_rate": 6.120666666666667e-06, + "loss": 1.2329245758056642, + "step": 658500 + }, + { + "epoch": 87.81333333333333, + "grad_norm": 0.9238616228103638, + "learning_rate": 6.114e-06, + "loss": 1.2254788970947266, + "step": 658600 + }, + { + "epoch": 87.82666666666667, + "grad_norm": 0.8797993063926697, + "learning_rate": 6.107333333333333e-06, + "loss": 1.2281143951416016, + "step": 658700 + }, + { + "epoch": 87.84, + "grad_norm": 0.8559375405311584, + "learning_rate": 6.100666666666667e-06, + "loss": 1.224699478149414, + "step": 658800 + }, + { + "epoch": 87.85333333333334, + "grad_norm": 0.9214592576026917, + "learning_rate": 6.0940000000000004e-06, + "loss": 1.2267461395263672, + "step": 658900 + }, + { + "epoch": 87.86666666666666, + "grad_norm": 0.9385553002357483, + "learning_rate": 6.0873333333333336e-06, + "loss": 1.2321873474121094, + "step": 659000 + }, + { + "epoch": 87.88, + "grad_norm": 0.9742735028266907, + "learning_rate": 6.0806666666666675e-06, + "loss": 1.224165802001953, + "step": 659100 + }, + { + "epoch": 87.89333333333333, + "grad_norm": 0.8828876614570618, + "learning_rate": 6.074000000000001e-06, + "loss": 1.2293293762207032, + "step": 659200 + }, + { + "epoch": 87.90666666666667, + "grad_norm": 0.8725327253341675, + "learning_rate": 6.067333333333334e-06, + "loss": 1.2297024536132812, + "step": 659300 + }, + { + "epoch": 87.92, + "grad_norm": 0.8858145475387573, + "learning_rate": 6.060666666666667e-06, + "loss": 1.231685256958008, + "step": 659400 + }, + { + "epoch": 87.93333333333334, + "grad_norm": 0.8619421124458313, + "learning_rate": 6.054066666666667e-06, + "loss": 1.227284164428711, + "step": 659500 + }, + { + "epoch": 87.94666666666667, + "grad_norm": 0.8720583915710449, + "learning_rate": 6.0474e-06, + "loss": 1.2259799194335939, + "step": 659600 + }, + { + "epoch": 87.96, + "grad_norm": 0.9668527841567993, + "learning_rate": 6.040733333333334e-06, + "loss": 1.2270006561279296, + "step": 659700 + }, + { + "epoch": 87.97333333333333, + "grad_norm": 0.8741607069969177, + "learning_rate": 6.034066666666667e-06, + "loss": 1.2342427825927735, + "step": 659800 + }, + { + "epoch": 87.98666666666666, + "grad_norm": 0.9043229818344116, + "learning_rate": 6.0274e-06, + "loss": 1.2302300262451171, + "step": 659900 + }, + { + "epoch": 88.0, + "grad_norm": 0.8614948391914368, + "learning_rate": 6.020733333333334e-06, + "loss": 1.2277375030517579, + "step": 660000 + }, + { + "epoch": 88.01333333333334, + "grad_norm": 0.8440125584602356, + "learning_rate": 6.014066666666667e-06, + "loss": 1.2098700714111328, + "step": 660100 + }, + { + "epoch": 88.02666666666667, + "grad_norm": 0.8795732855796814, + "learning_rate": 6.0074e-06, + "loss": 1.2145481872558594, + "step": 660200 + }, + { + "epoch": 88.04, + "grad_norm": 0.9388731718063354, + "learning_rate": 6.000733333333334e-06, + "loss": 1.2113359832763673, + "step": 660300 + }, + { + "epoch": 88.05333333333333, + "grad_norm": 0.9349479079246521, + "learning_rate": 5.994066666666667e-06, + "loss": 1.2147767639160156, + "step": 660400 + }, + { + "epoch": 88.06666666666666, + "grad_norm": 0.8859605193138123, + "learning_rate": 5.9874e-06, + "loss": 1.2128377532958985, + "step": 660500 + }, + { + "epoch": 88.08, + "grad_norm": 0.9146501421928406, + "learning_rate": 5.980733333333334e-06, + "loss": 1.2150657653808594, + "step": 660600 + }, + { + "epoch": 88.09333333333333, + "grad_norm": 0.8667988777160645, + "learning_rate": 5.974066666666667e-06, + "loss": 1.2110105133056641, + "step": 660700 + }, + { + "epoch": 88.10666666666667, + "grad_norm": 0.9527876973152161, + "learning_rate": 5.9674e-06, + "loss": 1.2121669006347657, + "step": 660800 + }, + { + "epoch": 88.12, + "grad_norm": 0.9000213146209717, + "learning_rate": 5.960733333333334e-06, + "loss": 1.2135875701904297, + "step": 660900 + }, + { + "epoch": 88.13333333333334, + "grad_norm": 0.9539820551872253, + "learning_rate": 5.954066666666667e-06, + "loss": 1.2122388458251954, + "step": 661000 + }, + { + "epoch": 88.14666666666666, + "grad_norm": 0.8554858565330505, + "learning_rate": 5.9474e-06, + "loss": 1.2159857177734374, + "step": 661100 + }, + { + "epoch": 88.16, + "grad_norm": 0.8576105833053589, + "learning_rate": 5.940733333333334e-06, + "loss": 1.214066848754883, + "step": 661200 + }, + { + "epoch": 88.17333333333333, + "grad_norm": 0.938084065914154, + "learning_rate": 5.934066666666667e-06, + "loss": 1.2105953216552734, + "step": 661300 + }, + { + "epoch": 88.18666666666667, + "grad_norm": 0.9702228307723999, + "learning_rate": 5.9274e-06, + "loss": 1.218522186279297, + "step": 661400 + }, + { + "epoch": 88.2, + "grad_norm": 0.9396708607673645, + "learning_rate": 5.9208e-06, + "loss": 1.2127921295166015, + "step": 661500 + }, + { + "epoch": 88.21333333333334, + "grad_norm": 0.8523475527763367, + "learning_rate": 5.914133333333333e-06, + "loss": 1.2177894592285157, + "step": 661600 + }, + { + "epoch": 88.22666666666667, + "grad_norm": 0.9162245392799377, + "learning_rate": 5.907466666666666e-06, + "loss": 1.2171736145019532, + "step": 661700 + }, + { + "epoch": 88.24, + "grad_norm": 0.909294843673706, + "learning_rate": 5.9008e-06, + "loss": 1.2113314819335939, + "step": 661800 + }, + { + "epoch": 88.25333333333333, + "grad_norm": 0.822942316532135, + "learning_rate": 5.8941333333333334e-06, + "loss": 1.2202149200439454, + "step": 661900 + }, + { + "epoch": 88.26666666666667, + "grad_norm": 0.9095253944396973, + "learning_rate": 5.8874666666666666e-06, + "loss": 1.2153319549560546, + "step": 662000 + }, + { + "epoch": 88.28, + "grad_norm": 0.9375243782997131, + "learning_rate": 5.8808000000000005e-06, + "loss": 1.2144713592529297, + "step": 662100 + }, + { + "epoch": 88.29333333333334, + "grad_norm": 0.8997815847396851, + "learning_rate": 5.874133333333334e-06, + "loss": 1.2190712738037108, + "step": 662200 + }, + { + "epoch": 88.30666666666667, + "grad_norm": 0.831521213054657, + "learning_rate": 5.867466666666667e-06, + "loss": 1.217860107421875, + "step": 662300 + }, + { + "epoch": 88.32, + "grad_norm": 0.9350924491882324, + "learning_rate": 5.860800000000001e-06, + "loss": 1.2177651977539063, + "step": 662400 + }, + { + "epoch": 88.33333333333333, + "grad_norm": 0.9330512285232544, + "learning_rate": 5.854133333333334e-06, + "loss": 1.2167528533935548, + "step": 662500 + }, + { + "epoch": 88.34666666666666, + "grad_norm": 0.8898918032646179, + "learning_rate": 5.847466666666667e-06, + "loss": 1.2190279388427734, + "step": 662600 + }, + { + "epoch": 88.36, + "grad_norm": 0.9025176167488098, + "learning_rate": 5.8408e-06, + "loss": 1.2180398559570313, + "step": 662700 + }, + { + "epoch": 88.37333333333333, + "grad_norm": 0.9351064562797546, + "learning_rate": 5.834133333333334e-06, + "loss": 1.2161642456054687, + "step": 662800 + }, + { + "epoch": 88.38666666666667, + "grad_norm": 0.8625040054321289, + "learning_rate": 5.827466666666667e-06, + "loss": 1.2185457611083985, + "step": 662900 + }, + { + "epoch": 88.4, + "grad_norm": 0.8925670981407166, + "learning_rate": 5.8208e-06, + "loss": 1.219074478149414, + "step": 663000 + }, + { + "epoch": 88.41333333333333, + "grad_norm": 0.8783120512962341, + "learning_rate": 5.814133333333334e-06, + "loss": 1.2135558319091797, + "step": 663100 + }, + { + "epoch": 88.42666666666666, + "grad_norm": 0.9169807434082031, + "learning_rate": 5.8074666666666665e-06, + "loss": 1.2201927185058594, + "step": 663200 + }, + { + "epoch": 88.44, + "grad_norm": 0.9173704385757446, + "learning_rate": 5.8008e-06, + "loss": 1.2177742767333983, + "step": 663300 + }, + { + "epoch": 88.45333333333333, + "grad_norm": 0.9613504409790039, + "learning_rate": 5.7941333333333335e-06, + "loss": 1.2174214935302734, + "step": 663400 + }, + { + "epoch": 88.46666666666667, + "grad_norm": 0.9053784012794495, + "learning_rate": 5.7875333333333335e-06, + "loss": 1.2211524963378906, + "step": 663500 + }, + { + "epoch": 88.48, + "grad_norm": 0.8977215886116028, + "learning_rate": 5.7808666666666674e-06, + "loss": 1.2180975341796876, + "step": 663600 + }, + { + "epoch": 88.49333333333334, + "grad_norm": 0.9076542258262634, + "learning_rate": 5.7742000000000006e-06, + "loss": 1.2158096313476563, + "step": 663700 + }, + { + "epoch": 88.50666666666666, + "grad_norm": 0.9158226251602173, + "learning_rate": 5.767533333333334e-06, + "loss": 1.218250961303711, + "step": 663800 + }, + { + "epoch": 88.52, + "grad_norm": 0.9524657726287842, + "learning_rate": 5.760866666666667e-06, + "loss": 1.2187013244628906, + "step": 663900 + }, + { + "epoch": 88.53333333333333, + "grad_norm": 0.931620717048645, + "learning_rate": 5.754200000000001e-06, + "loss": 1.2208222198486327, + "step": 664000 + }, + { + "epoch": 88.54666666666667, + "grad_norm": 0.9844622015953064, + "learning_rate": 5.747533333333334e-06, + "loss": 1.2225242614746095, + "step": 664100 + }, + { + "epoch": 88.56, + "grad_norm": 0.9277436137199402, + "learning_rate": 5.740866666666667e-06, + "loss": 1.2201163482666015, + "step": 664200 + }, + { + "epoch": 88.57333333333334, + "grad_norm": 0.8789235353469849, + "learning_rate": 5.7342e-06, + "loss": 1.2224101257324218, + "step": 664300 + }, + { + "epoch": 88.58666666666667, + "grad_norm": 0.9313110709190369, + "learning_rate": 5.727533333333333e-06, + "loss": 1.2181917572021483, + "step": 664400 + }, + { + "epoch": 88.6, + "grad_norm": 0.9556103348731995, + "learning_rate": 5.720866666666666e-06, + "loss": 1.2208975219726563, + "step": 664500 + }, + { + "epoch": 88.61333333333333, + "grad_norm": 0.9766332507133484, + "learning_rate": 5.7142e-06, + "loss": 1.2226788330078124, + "step": 664600 + }, + { + "epoch": 88.62666666666667, + "grad_norm": 0.8844559192657471, + "learning_rate": 5.707533333333333e-06, + "loss": 1.2230628204345704, + "step": 664700 + }, + { + "epoch": 88.64, + "grad_norm": 0.8664445281028748, + "learning_rate": 5.7008666666666665e-06, + "loss": 1.2178475189208984, + "step": 664800 + }, + { + "epoch": 88.65333333333334, + "grad_norm": 0.9188632369041443, + "learning_rate": 5.6942000000000005e-06, + "loss": 1.2229035186767578, + "step": 664900 + }, + { + "epoch": 88.66666666666667, + "grad_norm": 0.9534464478492737, + "learning_rate": 5.687533333333334e-06, + "loss": 1.2201636505126954, + "step": 665000 + }, + { + "epoch": 88.68, + "grad_norm": 0.8590039610862732, + "learning_rate": 5.680866666666667e-06, + "loss": 1.2217842102050782, + "step": 665100 + }, + { + "epoch": 88.69333333333333, + "grad_norm": 0.9341287016868591, + "learning_rate": 5.674200000000001e-06, + "loss": 1.2232160949707032, + "step": 665200 + }, + { + "epoch": 88.70666666666666, + "grad_norm": 0.851928174495697, + "learning_rate": 5.667533333333334e-06, + "loss": 1.2228545379638671, + "step": 665300 + }, + { + "epoch": 88.72, + "grad_norm": 0.8709028959274292, + "learning_rate": 5.660866666666667e-06, + "loss": 1.224917449951172, + "step": 665400 + }, + { + "epoch": 88.73333333333333, + "grad_norm": 0.9012889266014099, + "learning_rate": 5.654266666666667e-06, + "loss": 1.2241983795166016, + "step": 665500 + }, + { + "epoch": 88.74666666666667, + "grad_norm": 0.9009696245193481, + "learning_rate": 5.6476e-06, + "loss": 1.2221090698242187, + "step": 665600 + }, + { + "epoch": 88.76, + "grad_norm": 0.911006510257721, + "learning_rate": 5.640933333333334e-06, + "loss": 1.2238897705078124, + "step": 665700 + }, + { + "epoch": 88.77333333333333, + "grad_norm": 0.9231188297271729, + "learning_rate": 5.634266666666667e-06, + "loss": 1.2244586944580078, + "step": 665800 + }, + { + "epoch": 88.78666666666666, + "grad_norm": 0.8802729249000549, + "learning_rate": 5.6276e-06, + "loss": 1.2238041687011718, + "step": 665900 + }, + { + "epoch": 88.8, + "grad_norm": 0.9299485683441162, + "learning_rate": 5.620933333333333e-06, + "loss": 1.2228865814208985, + "step": 666000 + }, + { + "epoch": 88.81333333333333, + "grad_norm": 0.8775696754455566, + "learning_rate": 5.614266666666667e-06, + "loss": 1.2266053771972656, + "step": 666100 + }, + { + "epoch": 88.82666666666667, + "grad_norm": 0.8580496311187744, + "learning_rate": 5.6076e-06, + "loss": 1.2229470062255858, + "step": 666200 + }, + { + "epoch": 88.84, + "grad_norm": 0.9241933822631836, + "learning_rate": 5.6009333333333334e-06, + "loss": 1.2229337310791015, + "step": 666300 + }, + { + "epoch": 88.85333333333334, + "grad_norm": 0.9201433658599854, + "learning_rate": 5.594266666666667e-06, + "loss": 1.2231851959228515, + "step": 666400 + }, + { + "epoch": 88.86666666666666, + "grad_norm": 0.9110192060470581, + "learning_rate": 5.5876000000000005e-06, + "loss": 1.225495376586914, + "step": 666500 + }, + { + "epoch": 88.88, + "grad_norm": 0.9712668061256409, + "learning_rate": 5.580933333333334e-06, + "loss": 1.2213951873779296, + "step": 666600 + }, + { + "epoch": 88.89333333333333, + "grad_norm": 0.8844518065452576, + "learning_rate": 5.574266666666668e-06, + "loss": 1.2240930938720702, + "step": 666700 + }, + { + "epoch": 88.90666666666667, + "grad_norm": 0.9546579122543335, + "learning_rate": 5.567600000000001e-06, + "loss": 1.226476287841797, + "step": 666800 + }, + { + "epoch": 88.92, + "grad_norm": 0.8933039903640747, + "learning_rate": 5.560933333333333e-06, + "loss": 1.2249333953857422, + "step": 666900 + }, + { + "epoch": 88.93333333333334, + "grad_norm": 0.9278029799461365, + "learning_rate": 5.554266666666667e-06, + "loss": 1.224727325439453, + "step": 667000 + }, + { + "epoch": 88.94666666666667, + "grad_norm": 0.9233989119529724, + "learning_rate": 5.5476e-06, + "loss": 1.2280259704589844, + "step": 667100 + }, + { + "epoch": 88.96, + "grad_norm": 0.8747185468673706, + "learning_rate": 5.540933333333333e-06, + "loss": 1.2299307250976563, + "step": 667200 + }, + { + "epoch": 88.97333333333333, + "grad_norm": 0.9252629280090332, + "learning_rate": 5.534266666666667e-06, + "loss": 1.2250003051757812, + "step": 667300 + }, + { + "epoch": 88.98666666666666, + "grad_norm": 0.8873195052146912, + "learning_rate": 5.5276e-06, + "loss": 1.2243363189697265, + "step": 667400 + }, + { + "epoch": 89.0, + "grad_norm": 0.8737539052963257, + "learning_rate": 5.521e-06, + "loss": 1.2273259735107422, + "step": 667500 + }, + { + "epoch": 89.01333333333334, + "grad_norm": 0.8994724154472351, + "learning_rate": 5.514333333333334e-06, + "loss": 1.2065253448486328, + "step": 667600 + }, + { + "epoch": 89.02666666666667, + "grad_norm": 0.8773201107978821, + "learning_rate": 5.507666666666667e-06, + "loss": 1.2066268157958984, + "step": 667700 + }, + { + "epoch": 89.04, + "grad_norm": 0.9253839254379272, + "learning_rate": 5.501e-06, + "loss": 1.2097785949707032, + "step": 667800 + }, + { + "epoch": 89.05333333333333, + "grad_norm": 0.9354826211929321, + "learning_rate": 5.4943333333333335e-06, + "loss": 1.2124601745605468, + "step": 667900 + }, + { + "epoch": 89.06666666666666, + "grad_norm": 0.8192519545555115, + "learning_rate": 5.487666666666667e-06, + "loss": 1.2061328887939453, + "step": 668000 + }, + { + "epoch": 89.08, + "grad_norm": 0.8822228312492371, + "learning_rate": 5.481e-06, + "loss": 1.2111685180664062, + "step": 668100 + }, + { + "epoch": 89.09333333333333, + "grad_norm": 0.914986252784729, + "learning_rate": 5.474333333333334e-06, + "loss": 1.211805648803711, + "step": 668200 + }, + { + "epoch": 89.10666666666667, + "grad_norm": 0.9351910948753357, + "learning_rate": 5.467666666666667e-06, + "loss": 1.2042337036132813, + "step": 668300 + }, + { + "epoch": 89.12, + "grad_norm": 0.9000957012176514, + "learning_rate": 5.461e-06, + "loss": 1.2112418365478517, + "step": 668400 + }, + { + "epoch": 89.13333333333334, + "grad_norm": 0.9186215996742249, + "learning_rate": 5.454333333333334e-06, + "loss": 1.2067839050292968, + "step": 668500 + }, + { + "epoch": 89.14666666666666, + "grad_norm": 0.8771560788154602, + "learning_rate": 5.447666666666667e-06, + "loss": 1.2109234619140625, + "step": 668600 + }, + { + "epoch": 89.16, + "grad_norm": 0.9361634254455566, + "learning_rate": 5.441e-06, + "loss": 1.2112667846679688, + "step": 668700 + }, + { + "epoch": 89.17333333333333, + "grad_norm": 0.9080511331558228, + "learning_rate": 5.434333333333334e-06, + "loss": 1.2091513824462892, + "step": 668800 + }, + { + "epoch": 89.18666666666667, + "grad_norm": 0.9087415933609009, + "learning_rate": 5.427666666666667e-06, + "loss": 1.209826431274414, + "step": 668900 + }, + { + "epoch": 89.2, + "grad_norm": 0.8701626658439636, + "learning_rate": 5.421e-06, + "loss": 1.213840560913086, + "step": 669000 + }, + { + "epoch": 89.21333333333334, + "grad_norm": 0.8287436962127686, + "learning_rate": 5.414333333333333e-06, + "loss": 1.2152737426757811, + "step": 669100 + }, + { + "epoch": 89.22666666666667, + "grad_norm": 0.9009669423103333, + "learning_rate": 5.407666666666667e-06, + "loss": 1.2100643157958983, + "step": 669200 + }, + { + "epoch": 89.24, + "grad_norm": 0.9228776693344116, + "learning_rate": 5.4010000000000005e-06, + "loss": 1.2168802642822265, + "step": 669300 + }, + { + "epoch": 89.25333333333333, + "grad_norm": 0.8409181237220764, + "learning_rate": 5.394333333333334e-06, + "loss": 1.212371597290039, + "step": 669400 + }, + { + "epoch": 89.26666666666667, + "grad_norm": 0.8922165632247925, + "learning_rate": 5.3877333333333335e-06, + "loss": 1.2138323974609375, + "step": 669500 + }, + { + "epoch": 89.28, + "grad_norm": 0.9000787138938904, + "learning_rate": 5.381066666666667e-06, + "loss": 1.211551742553711, + "step": 669600 + }, + { + "epoch": 89.29333333333334, + "grad_norm": 0.8795856237411499, + "learning_rate": 5.374400000000001e-06, + "loss": 1.209929428100586, + "step": 669700 + }, + { + "epoch": 89.30666666666667, + "grad_norm": 0.8757795691490173, + "learning_rate": 5.367733333333334e-06, + "loss": 1.2100962829589843, + "step": 669800 + }, + { + "epoch": 89.32, + "grad_norm": 0.9000317454338074, + "learning_rate": 5.361066666666667e-06, + "loss": 1.2151318359375, + "step": 669900 + }, + { + "epoch": 89.33333333333333, + "grad_norm": 0.9361692667007446, + "learning_rate": 5.354400000000001e-06, + "loss": 1.212879638671875, + "step": 670000 + }, + { + "epoch": 89.34666666666666, + "grad_norm": 0.8566330671310425, + "learning_rate": 5.347733333333334e-06, + "loss": 1.2143052673339845, + "step": 670100 + }, + { + "epoch": 89.36, + "grad_norm": 0.9182000160217285, + "learning_rate": 5.341066666666667e-06, + "loss": 1.2156490325927733, + "step": 670200 + }, + { + "epoch": 89.37333333333333, + "grad_norm": 0.8849942684173584, + "learning_rate": 5.3344e-06, + "loss": 1.2155682373046874, + "step": 670300 + }, + { + "epoch": 89.38666666666667, + "grad_norm": 0.948589563369751, + "learning_rate": 5.327733333333334e-06, + "loss": 1.2158618927001954, + "step": 670400 + }, + { + "epoch": 89.4, + "grad_norm": 0.870638906955719, + "learning_rate": 5.321066666666667e-06, + "loss": 1.2140827178955078, + "step": 670500 + }, + { + "epoch": 89.41333333333333, + "grad_norm": 0.9196882247924805, + "learning_rate": 5.3144e-06, + "loss": 1.2150801086425782, + "step": 670600 + }, + { + "epoch": 89.42666666666666, + "grad_norm": 0.9664023518562317, + "learning_rate": 5.3077333333333334e-06, + "loss": 1.216825942993164, + "step": 670700 + }, + { + "epoch": 89.44, + "grad_norm": 0.9256287813186646, + "learning_rate": 5.3010666666666665e-06, + "loss": 1.212283935546875, + "step": 670800 + }, + { + "epoch": 89.45333333333333, + "grad_norm": 0.8842042684555054, + "learning_rate": 5.2944e-06, + "loss": 1.2171527862548828, + "step": 670900 + }, + { + "epoch": 89.46666666666667, + "grad_norm": 0.8998342752456665, + "learning_rate": 5.287733333333334e-06, + "loss": 1.212213363647461, + "step": 671000 + }, + { + "epoch": 89.48, + "grad_norm": 0.8604910969734192, + "learning_rate": 5.281066666666667e-06, + "loss": 1.2178185272216797, + "step": 671100 + }, + { + "epoch": 89.49333333333334, + "grad_norm": 0.9574484825134277, + "learning_rate": 5.2744e-06, + "loss": 1.2192330169677734, + "step": 671200 + }, + { + "epoch": 89.50666666666666, + "grad_norm": 0.9058186411857605, + "learning_rate": 5.267733333333334e-06, + "loss": 1.2213152313232423, + "step": 671300 + }, + { + "epoch": 89.52, + "grad_norm": 0.8801227807998657, + "learning_rate": 5.261066666666667e-06, + "loss": 1.2144708251953125, + "step": 671400 + }, + { + "epoch": 89.53333333333333, + "grad_norm": 0.9073898196220398, + "learning_rate": 5.2544e-06, + "loss": 1.2126658630371094, + "step": 671500 + }, + { + "epoch": 89.54666666666667, + "grad_norm": 0.8924538493156433, + "learning_rate": 5.2478e-06, + "loss": 1.2133853149414062, + "step": 671600 + }, + { + "epoch": 89.56, + "grad_norm": 0.8589732646942139, + "learning_rate": 5.241133333333333e-06, + "loss": 1.216434783935547, + "step": 671700 + }, + { + "epoch": 89.57333333333334, + "grad_norm": 0.8957362174987793, + "learning_rate": 5.234466666666667e-06, + "loss": 1.2140837860107423, + "step": 671800 + }, + { + "epoch": 89.58666666666667, + "grad_norm": 0.9001540541648865, + "learning_rate": 5.2278e-06, + "loss": 1.2144945526123048, + "step": 671900 + }, + { + "epoch": 89.6, + "grad_norm": 0.9157114028930664, + "learning_rate": 5.221133333333333e-06, + "loss": 1.217526397705078, + "step": 672000 + }, + { + "epoch": 89.61333333333333, + "grad_norm": 0.9104243516921997, + "learning_rate": 5.214466666666666e-06, + "loss": 1.2151515197753906, + "step": 672100 + }, + { + "epoch": 89.62666666666667, + "grad_norm": 0.9351614117622375, + "learning_rate": 5.2078e-06, + "loss": 1.2169363403320312, + "step": 672200 + }, + { + "epoch": 89.64, + "grad_norm": 0.8728863596916199, + "learning_rate": 5.2011333333333335e-06, + "loss": 1.2184024810791017, + "step": 672300 + }, + { + "epoch": 89.65333333333334, + "grad_norm": 0.8635854125022888, + "learning_rate": 5.194466666666667e-06, + "loss": 1.221156997680664, + "step": 672400 + }, + { + "epoch": 89.66666666666667, + "grad_norm": 0.964632511138916, + "learning_rate": 5.1878000000000005e-06, + "loss": 1.2214126586914062, + "step": 672500 + }, + { + "epoch": 89.68, + "grad_norm": 0.934449315071106, + "learning_rate": 5.181133333333334e-06, + "loss": 1.2185586547851563, + "step": 672600 + }, + { + "epoch": 89.69333333333333, + "grad_norm": 0.8776857256889343, + "learning_rate": 5.174466666666667e-06, + "loss": 1.223541488647461, + "step": 672700 + }, + { + "epoch": 89.70666666666666, + "grad_norm": 0.9184494018554688, + "learning_rate": 5.167800000000001e-06, + "loss": 1.2196424865722657, + "step": 672800 + }, + { + "epoch": 89.72, + "grad_norm": 0.9252554178237915, + "learning_rate": 5.161133333333334e-06, + "loss": 1.216479263305664, + "step": 672900 + }, + { + "epoch": 89.73333333333333, + "grad_norm": 0.8667902946472168, + "learning_rate": 5.154466666666667e-06, + "loss": 1.2210060882568359, + "step": 673000 + }, + { + "epoch": 89.74666666666667, + "grad_norm": 0.8820723295211792, + "learning_rate": 5.147800000000001e-06, + "loss": 1.218407211303711, + "step": 673100 + }, + { + "epoch": 89.76, + "grad_norm": 0.8611978888511658, + "learning_rate": 5.141133333333334e-06, + "loss": 1.2198648071289062, + "step": 673200 + }, + { + "epoch": 89.77333333333333, + "grad_norm": 0.8947012424468994, + "learning_rate": 5.134466666666666e-06, + "loss": 1.223352584838867, + "step": 673300 + }, + { + "epoch": 89.78666666666666, + "grad_norm": 0.8866718411445618, + "learning_rate": 5.1278e-06, + "loss": 1.2186518096923828, + "step": 673400 + }, + { + "epoch": 89.8, + "grad_norm": 0.8624308705329895, + "learning_rate": 5.121133333333333e-06, + "loss": 1.2187384033203126, + "step": 673500 + }, + { + "epoch": 89.81333333333333, + "grad_norm": 0.9323912858963013, + "learning_rate": 5.114533333333333e-06, + "loss": 1.2192816925048828, + "step": 673600 + }, + { + "epoch": 89.82666666666667, + "grad_norm": 0.8835723996162415, + "learning_rate": 5.107866666666667e-06, + "loss": 1.2200238037109374, + "step": 673700 + }, + { + "epoch": 89.84, + "grad_norm": 0.9300037026405334, + "learning_rate": 5.1012e-06, + "loss": 1.2211270141601562, + "step": 673800 + }, + { + "epoch": 89.85333333333334, + "grad_norm": 0.8939962983131409, + "learning_rate": 5.0945333333333335e-06, + "loss": 1.2231653594970704, + "step": 673900 + }, + { + "epoch": 89.86666666666666, + "grad_norm": 0.8576112985610962, + "learning_rate": 5.0878666666666675e-06, + "loss": 1.2236614990234376, + "step": 674000 + }, + { + "epoch": 89.88, + "grad_norm": 0.9398141503334045, + "learning_rate": 5.081200000000001e-06, + "loss": 1.2185122680664062, + "step": 674100 + }, + { + "epoch": 89.89333333333333, + "grad_norm": 0.8942651152610779, + "learning_rate": 5.074533333333334e-06, + "loss": 1.2213440704345704, + "step": 674200 + }, + { + "epoch": 89.90666666666667, + "grad_norm": 0.9299342036247253, + "learning_rate": 5.067866666666667e-06, + "loss": 1.217512741088867, + "step": 674300 + }, + { + "epoch": 89.92, + "grad_norm": 0.9243706464767456, + "learning_rate": 5.0612e-06, + "loss": 1.2212284851074218, + "step": 674400 + }, + { + "epoch": 89.93333333333334, + "grad_norm": 0.9882511496543884, + "learning_rate": 5.054533333333333e-06, + "loss": 1.2185203552246093, + "step": 674500 + }, + { + "epoch": 89.94666666666667, + "grad_norm": 0.8811713457107544, + "learning_rate": 5.047866666666667e-06, + "loss": 1.2216316223144532, + "step": 674600 + }, + { + "epoch": 89.96, + "grad_norm": 0.8866249322891235, + "learning_rate": 5.0412e-06, + "loss": 1.2194962310791015, + "step": 674700 + }, + { + "epoch": 89.97333333333333, + "grad_norm": 0.8802648186683655, + "learning_rate": 5.034533333333333e-06, + "loss": 1.222801513671875, + "step": 674800 + }, + { + "epoch": 89.98666666666666, + "grad_norm": 0.9410952925682068, + "learning_rate": 5.027866666666667e-06, + "loss": 1.22396484375, + "step": 674900 + }, + { + "epoch": 90.0, + "grad_norm": 0.8734154105186462, + "learning_rate": 5.0212e-06, + "loss": 1.2178419494628907, + "step": 675000 + }, + { + "epoch": 90.01333333333334, + "grad_norm": 0.9289048910140991, + "learning_rate": 5.014533333333333e-06, + "loss": 1.2043888092041015, + "step": 675100 + }, + { + "epoch": 90.02666666666667, + "grad_norm": 0.918481707572937, + "learning_rate": 5.0078666666666665e-06, + "loss": 1.2099720001220704, + "step": 675200 + }, + { + "epoch": 90.04, + "grad_norm": 0.9005312919616699, + "learning_rate": 5.0012000000000005e-06, + "loss": 1.2031187438964843, + "step": 675300 + }, + { + "epoch": 90.05333333333333, + "grad_norm": 0.957449197769165, + "learning_rate": 4.994533333333334e-06, + "loss": 1.2071781158447266, + "step": 675400 + }, + { + "epoch": 90.06666666666666, + "grad_norm": 0.910042941570282, + "learning_rate": 4.987866666666667e-06, + "loss": 1.2066966247558595, + "step": 675500 + }, + { + "epoch": 90.08, + "grad_norm": 0.8937907218933105, + "learning_rate": 4.981266666666667e-06, + "loss": 1.2074835205078125, + "step": 675600 + }, + { + "epoch": 90.09333333333333, + "grad_norm": 0.8752577900886536, + "learning_rate": 4.9746e-06, + "loss": 1.208895492553711, + "step": 675700 + }, + { + "epoch": 90.10666666666667, + "grad_norm": 0.8520717620849609, + "learning_rate": 4.967933333333334e-06, + "loss": 1.2053620147705078, + "step": 675800 + }, + { + "epoch": 90.12, + "grad_norm": 0.8855275511741638, + "learning_rate": 4.961266666666667e-06, + "loss": 1.208665771484375, + "step": 675900 + }, + { + "epoch": 90.13333333333334, + "grad_norm": 0.9631090760231018, + "learning_rate": 4.9546e-06, + "loss": 1.2092572021484376, + "step": 676000 + }, + { + "epoch": 90.14666666666666, + "grad_norm": 0.8636735677719116, + "learning_rate": 4.947933333333334e-06, + "loss": 1.205884246826172, + "step": 676100 + }, + { + "epoch": 90.16, + "grad_norm": 0.9243836998939514, + "learning_rate": 4.941266666666667e-06, + "loss": 1.2106959533691406, + "step": 676200 + }, + { + "epoch": 90.17333333333333, + "grad_norm": 0.9383106231689453, + "learning_rate": 4.9346e-06, + "loss": 1.2110034942626953, + "step": 676300 + }, + { + "epoch": 90.18666666666667, + "grad_norm": 0.8857131600379944, + "learning_rate": 4.927933333333334e-06, + "loss": 1.2083201599121094, + "step": 676400 + }, + { + "epoch": 90.2, + "grad_norm": 0.9113370180130005, + "learning_rate": 4.921266666666667e-06, + "loss": 1.2091306304931642, + "step": 676500 + }, + { + "epoch": 90.21333333333334, + "grad_norm": 0.8388907313346863, + "learning_rate": 4.9146e-06, + "loss": 1.2119139862060546, + "step": 676600 + }, + { + "epoch": 90.22666666666667, + "grad_norm": 0.847788393497467, + "learning_rate": 4.9079333333333335e-06, + "loss": 1.210832061767578, + "step": 676700 + }, + { + "epoch": 90.24, + "grad_norm": 0.8751381039619446, + "learning_rate": 4.901266666666667e-06, + "loss": 1.20989013671875, + "step": 676800 + }, + { + "epoch": 90.25333333333333, + "grad_norm": 0.8831285238265991, + "learning_rate": 4.8946000000000005e-06, + "loss": 1.2075450134277343, + "step": 676900 + }, + { + "epoch": 90.26666666666667, + "grad_norm": 0.9753007888793945, + "learning_rate": 4.887933333333334e-06, + "loss": 1.2117955780029297, + "step": 677000 + }, + { + "epoch": 90.28, + "grad_norm": 0.952491819858551, + "learning_rate": 4.881266666666667e-06, + "loss": 1.212402572631836, + "step": 677100 + }, + { + "epoch": 90.29333333333334, + "grad_norm": 0.9106137156486511, + "learning_rate": 4.8746e-06, + "loss": 1.2052900695800781, + "step": 677200 + }, + { + "epoch": 90.30666666666667, + "grad_norm": 0.926100492477417, + "learning_rate": 4.867933333333333e-06, + "loss": 1.2105538177490234, + "step": 677300 + }, + { + "epoch": 90.32, + "grad_norm": 0.8455801010131836, + "learning_rate": 4.861266666666667e-06, + "loss": 1.2121770477294922, + "step": 677400 + }, + { + "epoch": 90.33333333333333, + "grad_norm": 0.9143370389938354, + "learning_rate": 4.8546e-06, + "loss": 1.2079702758789062, + "step": 677500 + }, + { + "epoch": 90.34666666666666, + "grad_norm": 0.8968600034713745, + "learning_rate": 4.848000000000001e-06, + "loss": 1.2125999450683593, + "step": 677600 + }, + { + "epoch": 90.36, + "grad_norm": 0.8847452402114868, + "learning_rate": 4.841333333333334e-06, + "loss": 1.2117592620849609, + "step": 677700 + }, + { + "epoch": 90.37333333333333, + "grad_norm": 0.9163066744804382, + "learning_rate": 4.834666666666667e-06, + "loss": 1.2076231384277343, + "step": 677800 + }, + { + "epoch": 90.38666666666667, + "grad_norm": 0.9202780723571777, + "learning_rate": 4.828e-06, + "loss": 1.210972213745117, + "step": 677900 + }, + { + "epoch": 90.4, + "grad_norm": 0.9594050049781799, + "learning_rate": 4.821333333333333e-06, + "loss": 1.2101927947998048, + "step": 678000 + }, + { + "epoch": 90.41333333333333, + "grad_norm": 0.8588058948516846, + "learning_rate": 4.814666666666666e-06, + "loss": 1.2125477600097656, + "step": 678100 + }, + { + "epoch": 90.42666666666666, + "grad_norm": 0.8945148587226868, + "learning_rate": 4.808e-06, + "loss": 1.2116073608398437, + "step": 678200 + }, + { + "epoch": 90.44, + "grad_norm": 0.9500113129615784, + "learning_rate": 4.8013333333333335e-06, + "loss": 1.2133517456054688, + "step": 678300 + }, + { + "epoch": 90.45333333333333, + "grad_norm": 0.8919427990913391, + "learning_rate": 4.794666666666667e-06, + "loss": 1.2090089416503906, + "step": 678400 + }, + { + "epoch": 90.46666666666667, + "grad_norm": 0.9410059452056885, + "learning_rate": 4.788e-06, + "loss": 1.210514144897461, + "step": 678500 + }, + { + "epoch": 90.48, + "grad_norm": 0.9124793410301208, + "learning_rate": 4.781333333333334e-06, + "loss": 1.2172020721435546, + "step": 678600 + }, + { + "epoch": 90.49333333333334, + "grad_norm": 0.9013743996620178, + "learning_rate": 4.774666666666667e-06, + "loss": 1.2081442260742188, + "step": 678700 + }, + { + "epoch": 90.50666666666666, + "grad_norm": 0.9235624670982361, + "learning_rate": 4.768e-06, + "loss": 1.2106606292724609, + "step": 678800 + }, + { + "epoch": 90.52, + "grad_norm": 0.9490922689437866, + "learning_rate": 4.761333333333334e-06, + "loss": 1.2129822540283204, + "step": 678900 + }, + { + "epoch": 90.53333333333333, + "grad_norm": 0.9190055727958679, + "learning_rate": 4.754666666666667e-06, + "loss": 1.2117118835449219, + "step": 679000 + }, + { + "epoch": 90.54666666666667, + "grad_norm": 0.9155454635620117, + "learning_rate": 4.748e-06, + "loss": 1.2153356170654297, + "step": 679100 + }, + { + "epoch": 90.56, + "grad_norm": 0.9508551955223083, + "learning_rate": 4.741333333333334e-06, + "loss": 1.214925765991211, + "step": 679200 + }, + { + "epoch": 90.57333333333334, + "grad_norm": 0.9003883600234985, + "learning_rate": 4.734666666666667e-06, + "loss": 1.2155438232421876, + "step": 679300 + }, + { + "epoch": 90.58666666666667, + "grad_norm": 0.8104000091552734, + "learning_rate": 4.728e-06, + "loss": 1.212996063232422, + "step": 679400 + }, + { + "epoch": 90.6, + "grad_norm": 0.8884322047233582, + "learning_rate": 4.721333333333334e-06, + "loss": 1.208837890625, + "step": 679500 + }, + { + "epoch": 90.61333333333333, + "grad_norm": 0.900663435459137, + "learning_rate": 4.714733333333333e-06, + "loss": 1.2164701843261718, + "step": 679600 + }, + { + "epoch": 90.62666666666667, + "grad_norm": 0.9068719148635864, + "learning_rate": 4.7080666666666665e-06, + "loss": 1.2146306610107422, + "step": 679700 + }, + { + "epoch": 90.64, + "grad_norm": 0.8906852006912231, + "learning_rate": 4.7014e-06, + "loss": 1.211735382080078, + "step": 679800 + }, + { + "epoch": 90.65333333333334, + "grad_norm": 0.8880618214607239, + "learning_rate": 4.6947333333333335e-06, + "loss": 1.2147854614257811, + "step": 679900 + }, + { + "epoch": 90.66666666666667, + "grad_norm": 0.9201205372810364, + "learning_rate": 4.688066666666667e-06, + "loss": 1.2103929901123047, + "step": 680000 + }, + { + "epoch": 90.68, + "grad_norm": 0.8812013864517212, + "learning_rate": 4.681400000000001e-06, + "loss": 1.2157184600830078, + "step": 680100 + }, + { + "epoch": 90.69333333333333, + "grad_norm": 0.8855476975440979, + "learning_rate": 4.674733333333334e-06, + "loss": 1.2132430267333985, + "step": 680200 + }, + { + "epoch": 90.70666666666666, + "grad_norm": 0.9242827892303467, + "learning_rate": 4.668066666666667e-06, + "loss": 1.2172369384765624, + "step": 680300 + }, + { + "epoch": 90.72, + "grad_norm": 0.9888787865638733, + "learning_rate": 4.661400000000001e-06, + "loss": 1.2181033325195312, + "step": 680400 + }, + { + "epoch": 90.73333333333333, + "grad_norm": 0.9318944811820984, + "learning_rate": 4.654733333333334e-06, + "loss": 1.2127987670898437, + "step": 680500 + }, + { + "epoch": 90.74666666666667, + "grad_norm": 0.9456973671913147, + "learning_rate": 4.648066666666667e-06, + "loss": 1.213536834716797, + "step": 680600 + }, + { + "epoch": 90.76, + "grad_norm": 0.951168954372406, + "learning_rate": 4.6414e-06, + "loss": 1.2176351928710938, + "step": 680700 + }, + { + "epoch": 90.77333333333333, + "grad_norm": 0.9500468969345093, + "learning_rate": 4.634733333333333e-06, + "loss": 1.2171255493164062, + "step": 680800 + }, + { + "epoch": 90.78666666666666, + "grad_norm": 0.9571161270141602, + "learning_rate": 4.628066666666666e-06, + "loss": 1.2125713348388671, + "step": 680900 + }, + { + "epoch": 90.8, + "grad_norm": 0.9615257978439331, + "learning_rate": 4.6214e-06, + "loss": 1.2181266021728516, + "step": 681000 + }, + { + "epoch": 90.81333333333333, + "grad_norm": 0.9538195133209229, + "learning_rate": 4.6147333333333335e-06, + "loss": 1.2164169311523438, + "step": 681100 + }, + { + "epoch": 90.82666666666667, + "grad_norm": 0.9797369241714478, + "learning_rate": 4.6080666666666666e-06, + "loss": 1.218907012939453, + "step": 681200 + }, + { + "epoch": 90.84, + "grad_norm": 0.9338709712028503, + "learning_rate": 4.6014000000000005e-06, + "loss": 1.2184577941894532, + "step": 681300 + }, + { + "epoch": 90.85333333333334, + "grad_norm": 0.9682694673538208, + "learning_rate": 4.594733333333334e-06, + "loss": 1.2135367584228516, + "step": 681400 + }, + { + "epoch": 90.86666666666666, + "grad_norm": 0.8703393936157227, + "learning_rate": 4.588066666666667e-06, + "loss": 1.2133425903320312, + "step": 681500 + }, + { + "epoch": 90.88, + "grad_norm": 0.9350166916847229, + "learning_rate": 4.581466666666667e-06, + "loss": 1.2187168884277344, + "step": 681600 + }, + { + "epoch": 90.89333333333333, + "grad_norm": 0.8443960547447205, + "learning_rate": 4.5748e-06, + "loss": 1.2129023742675782, + "step": 681700 + }, + { + "epoch": 90.90666666666667, + "grad_norm": 0.9225748181343079, + "learning_rate": 4.568133333333333e-06, + "loss": 1.21633056640625, + "step": 681800 + }, + { + "epoch": 90.92, + "grad_norm": 0.8942683339118958, + "learning_rate": 4.561466666666667e-06, + "loss": 1.2165023040771485, + "step": 681900 + }, + { + "epoch": 90.93333333333334, + "grad_norm": 0.9616734981536865, + "learning_rate": 4.5548e-06, + "loss": 1.2154533386230468, + "step": 682000 + }, + { + "epoch": 90.94666666666667, + "grad_norm": 0.881159782409668, + "learning_rate": 4.548133333333333e-06, + "loss": 1.2169892120361328, + "step": 682100 + }, + { + "epoch": 90.96, + "grad_norm": 0.9500011205673218, + "learning_rate": 4.541466666666667e-06, + "loss": 1.218693389892578, + "step": 682200 + }, + { + "epoch": 90.97333333333333, + "grad_norm": 0.9119076728820801, + "learning_rate": 4.5348e-06, + "loss": 1.216949462890625, + "step": 682300 + }, + { + "epoch": 90.98666666666666, + "grad_norm": 0.8956566452980042, + "learning_rate": 4.528133333333333e-06, + "loss": 1.2165196228027344, + "step": 682400 + }, + { + "epoch": 91.0, + "grad_norm": 0.8929473757743835, + "learning_rate": 4.521466666666667e-06, + "loss": 1.2148597717285157, + "step": 682500 + }, + { + "epoch": 91.01333333333334, + "grad_norm": 0.85610431432724, + "learning_rate": 4.5148e-06, + "loss": 1.200636215209961, + "step": 682600 + }, + { + "epoch": 91.02666666666667, + "grad_norm": 0.9160832166671753, + "learning_rate": 4.5081333333333335e-06, + "loss": 1.2068274688720704, + "step": 682700 + }, + { + "epoch": 91.04, + "grad_norm": 0.9119850993156433, + "learning_rate": 4.501466666666667e-06, + "loss": 1.208277587890625, + "step": 682800 + }, + { + "epoch": 91.05333333333333, + "grad_norm": 0.9079209566116333, + "learning_rate": 4.4948000000000006e-06, + "loss": 1.2017269897460938, + "step": 682900 + }, + { + "epoch": 91.06666666666666, + "grad_norm": 0.9564381241798401, + "learning_rate": 4.488133333333334e-06, + "loss": 1.207140655517578, + "step": 683000 + }, + { + "epoch": 91.08, + "grad_norm": 0.9598597288131714, + "learning_rate": 4.481466666666667e-06, + "loss": 1.203281784057617, + "step": 683100 + }, + { + "epoch": 91.09333333333333, + "grad_norm": 0.861584484577179, + "learning_rate": 4.474800000000001e-06, + "loss": 1.2081224060058593, + "step": 683200 + }, + { + "epoch": 91.10666666666667, + "grad_norm": 0.8429510593414307, + "learning_rate": 4.468133333333334e-06, + "loss": 1.2070238494873047, + "step": 683300 + }, + { + "epoch": 91.12, + "grad_norm": 0.8890085220336914, + "learning_rate": 4.461466666666667e-06, + "loss": 1.2043938446044922, + "step": 683400 + }, + { + "epoch": 91.13333333333334, + "grad_norm": 0.8663833737373352, + "learning_rate": 4.4548e-06, + "loss": 1.20203125, + "step": 683500 + }, + { + "epoch": 91.14666666666666, + "grad_norm": 0.9313666224479675, + "learning_rate": 4.448133333333333e-06, + "loss": 1.2063787841796876, + "step": 683600 + }, + { + "epoch": 91.16, + "grad_norm": 0.8840457201004028, + "learning_rate": 4.441533333333334e-06, + "loss": 1.2069801330566405, + "step": 683700 + }, + { + "epoch": 91.17333333333333, + "grad_norm": 0.8782556653022766, + "learning_rate": 4.434866666666667e-06, + "loss": 1.2082003021240235, + "step": 683800 + }, + { + "epoch": 91.18666666666667, + "grad_norm": 0.9454366564750671, + "learning_rate": 4.4282e-06, + "loss": 1.2090266418457032, + "step": 683900 + }, + { + "epoch": 91.2, + "grad_norm": 0.8991572260856628, + "learning_rate": 4.421533333333334e-06, + "loss": 1.2046781921386718, + "step": 684000 + }, + { + "epoch": 91.21333333333334, + "grad_norm": 0.8746281862258911, + "learning_rate": 4.414866666666667e-06, + "loss": 1.2073801422119141, + "step": 684100 + }, + { + "epoch": 91.22666666666667, + "grad_norm": 0.9214029312133789, + "learning_rate": 4.4082e-06, + "loss": 1.2062918853759765, + "step": 684200 + }, + { + "epoch": 91.24, + "grad_norm": 0.9604611992835999, + "learning_rate": 4.4015333333333335e-06, + "loss": 1.2054164123535156, + "step": 684300 + }, + { + "epoch": 91.25333333333333, + "grad_norm": 0.8675783276557922, + "learning_rate": 4.394866666666667e-06, + "loss": 1.208896942138672, + "step": 684400 + }, + { + "epoch": 91.26666666666667, + "grad_norm": 0.9738113880157471, + "learning_rate": 4.3882e-06, + "loss": 1.2100360107421875, + "step": 684500 + }, + { + "epoch": 91.28, + "grad_norm": 0.8885136842727661, + "learning_rate": 4.381533333333334e-06, + "loss": 1.2070569610595703, + "step": 684600 + }, + { + "epoch": 91.29333333333334, + "grad_norm": 0.9425179362297058, + "learning_rate": 4.374866666666667e-06, + "loss": 1.2077506256103516, + "step": 684700 + }, + { + "epoch": 91.30666666666667, + "grad_norm": 0.9048968553543091, + "learning_rate": 4.3682e-06, + "loss": 1.2081721496582032, + "step": 684800 + }, + { + "epoch": 91.32, + "grad_norm": 0.9390761256217957, + "learning_rate": 4.361533333333333e-06, + "loss": 1.207364044189453, + "step": 684900 + }, + { + "epoch": 91.33333333333333, + "grad_norm": 0.9158327579498291, + "learning_rate": 4.354866666666667e-06, + "loss": 1.2073294830322265, + "step": 685000 + }, + { + "epoch": 91.34666666666666, + "grad_norm": 0.8673156499862671, + "learning_rate": 4.3482e-06, + "loss": 1.2052005004882813, + "step": 685100 + }, + { + "epoch": 91.36, + "grad_norm": 0.8864044547080994, + "learning_rate": 4.341533333333333e-06, + "loss": 1.2118058013916015, + "step": 685200 + }, + { + "epoch": 91.37333333333333, + "grad_norm": 0.9207347631454468, + "learning_rate": 4.334866666666667e-06, + "loss": 1.2065187835693358, + "step": 685300 + }, + { + "epoch": 91.38666666666667, + "grad_norm": 0.900858998298645, + "learning_rate": 4.3282e-06, + "loss": 1.2105420684814454, + "step": 685400 + }, + { + "epoch": 91.4, + "grad_norm": 0.9267945885658264, + "learning_rate": 4.3215333333333335e-06, + "loss": 1.20435302734375, + "step": 685500 + }, + { + "epoch": 91.41333333333333, + "grad_norm": 0.9637866020202637, + "learning_rate": 4.314866666666667e-06, + "loss": 1.2085104370117188, + "step": 685600 + }, + { + "epoch": 91.42666666666666, + "grad_norm": 0.9455682039260864, + "learning_rate": 4.3082666666666665e-06, + "loss": 1.2091656494140626, + "step": 685700 + }, + { + "epoch": 91.44, + "grad_norm": 0.8735678195953369, + "learning_rate": 4.3016000000000005e-06, + "loss": 1.2076645660400391, + "step": 685800 + }, + { + "epoch": 91.45333333333333, + "grad_norm": 0.9294810891151428, + "learning_rate": 4.2949333333333336e-06, + "loss": 1.208891830444336, + "step": 685900 + }, + { + "epoch": 91.46666666666667, + "grad_norm": 0.92054283618927, + "learning_rate": 4.288266666666667e-06, + "loss": 1.2102249145507813, + "step": 686000 + }, + { + "epoch": 91.48, + "grad_norm": 0.8439618349075317, + "learning_rate": 4.2816e-06, + "loss": 1.2142427062988281, + "step": 686100 + }, + { + "epoch": 91.49333333333334, + "grad_norm": 0.8484886884689331, + "learning_rate": 4.274933333333334e-06, + "loss": 1.2077330017089845, + "step": 686200 + }, + { + "epoch": 91.50666666666666, + "grad_norm": 0.9745410680770874, + "learning_rate": 4.268266666666667e-06, + "loss": 1.2066510009765625, + "step": 686300 + }, + { + "epoch": 91.52, + "grad_norm": 0.8893364667892456, + "learning_rate": 4.2616e-06, + "loss": 1.2086053466796876, + "step": 686400 + }, + { + "epoch": 91.53333333333333, + "grad_norm": 0.8825772404670715, + "learning_rate": 4.254933333333334e-06, + "loss": 1.2083636474609376, + "step": 686500 + }, + { + "epoch": 91.54666666666667, + "grad_norm": 0.8804160356521606, + "learning_rate": 4.248266666666667e-06, + "loss": 1.2095064544677734, + "step": 686600 + }, + { + "epoch": 91.56, + "grad_norm": 0.9658887386322021, + "learning_rate": 4.2416e-06, + "loss": 1.2093119049072265, + "step": 686700 + }, + { + "epoch": 91.57333333333334, + "grad_norm": 0.952987790107727, + "learning_rate": 4.234933333333334e-06, + "loss": 1.2097184753417969, + "step": 686800 + }, + { + "epoch": 91.58666666666667, + "grad_norm": 0.8630662560462952, + "learning_rate": 4.228266666666667e-06, + "loss": 1.2081199645996095, + "step": 686900 + }, + { + "epoch": 91.6, + "grad_norm": 0.9706721901893616, + "learning_rate": 4.2215999999999995e-06, + "loss": 1.2103736114501953, + "step": 687000 + }, + { + "epoch": 91.61333333333333, + "grad_norm": 0.9168404936790466, + "learning_rate": 4.2149333333333335e-06, + "loss": 1.2104512023925782, + "step": 687100 + }, + { + "epoch": 91.62666666666667, + "grad_norm": 0.9021251201629639, + "learning_rate": 4.208266666666667e-06, + "loss": 1.208455810546875, + "step": 687200 + }, + { + "epoch": 91.64, + "grad_norm": 0.9148797392845154, + "learning_rate": 4.2016e-06, + "loss": 1.21326904296875, + "step": 687300 + }, + { + "epoch": 91.65333333333334, + "grad_norm": 0.8841809630393982, + "learning_rate": 4.194933333333334e-06, + "loss": 1.2070911407470704, + "step": 687400 + }, + { + "epoch": 91.66666666666667, + "grad_norm": 0.9368838667869568, + "learning_rate": 4.188266666666667e-06, + "loss": 1.2107268524169923, + "step": 687500 + }, + { + "epoch": 91.68, + "grad_norm": 0.9060821533203125, + "learning_rate": 4.1816e-06, + "loss": 1.2130730438232422, + "step": 687600 + }, + { + "epoch": 91.69333333333333, + "grad_norm": 0.9751666188240051, + "learning_rate": 4.175000000000001e-06, + "loss": 1.2097231292724608, + "step": 687700 + }, + { + "epoch": 91.70666666666666, + "grad_norm": 0.8472406268119812, + "learning_rate": 4.168333333333334e-06, + "loss": 1.2085147094726563, + "step": 687800 + }, + { + "epoch": 91.72, + "grad_norm": 1.005416989326477, + "learning_rate": 4.161666666666667e-06, + "loss": 1.2118323516845704, + "step": 687900 + }, + { + "epoch": 91.73333333333333, + "grad_norm": 0.8820925951004028, + "learning_rate": 4.155e-06, + "loss": 1.2112535095214845, + "step": 688000 + }, + { + "epoch": 91.74666666666667, + "grad_norm": 0.8622952103614807, + "learning_rate": 4.148333333333333e-06, + "loss": 1.2110252380371094, + "step": 688100 + }, + { + "epoch": 91.76, + "grad_norm": 0.8722947239875793, + "learning_rate": 4.141666666666666e-06, + "loss": 1.2133953857421875, + "step": 688200 + }, + { + "epoch": 91.77333333333333, + "grad_norm": 0.9638639688491821, + "learning_rate": 4.135e-06, + "loss": 1.2091949462890625, + "step": 688300 + }, + { + "epoch": 91.78666666666666, + "grad_norm": 0.9140656590461731, + "learning_rate": 4.128333333333333e-06, + "loss": 1.2114816284179688, + "step": 688400 + }, + { + "epoch": 91.8, + "grad_norm": 0.9216871857643127, + "learning_rate": 4.1216666666666665e-06, + "loss": 1.2120486450195314, + "step": 688500 + }, + { + "epoch": 91.81333333333333, + "grad_norm": 0.8618937134742737, + "learning_rate": 4.115e-06, + "loss": 1.2109370422363281, + "step": 688600 + }, + { + "epoch": 91.82666666666667, + "grad_norm": 0.8921952247619629, + "learning_rate": 4.1083333333333335e-06, + "loss": 1.2133558654785157, + "step": 688700 + }, + { + "epoch": 91.84, + "grad_norm": 0.895045280456543, + "learning_rate": 4.101666666666667e-06, + "loss": 1.2121337890625, + "step": 688800 + }, + { + "epoch": 91.85333333333334, + "grad_norm": 0.8907344341278076, + "learning_rate": 4.095000000000001e-06, + "loss": 1.2133706665039063, + "step": 688900 + }, + { + "epoch": 91.86666666666666, + "grad_norm": 0.87125563621521, + "learning_rate": 4.088333333333334e-06, + "loss": 1.2131654357910155, + "step": 689000 + }, + { + "epoch": 91.88, + "grad_norm": 0.8448019623756409, + "learning_rate": 4.081666666666667e-06, + "loss": 1.2095771026611328, + "step": 689100 + }, + { + "epoch": 91.89333333333333, + "grad_norm": 0.8955243229866028, + "learning_rate": 4.075e-06, + "loss": 1.2100251770019532, + "step": 689200 + }, + { + "epoch": 91.90666666666667, + "grad_norm": 0.9619772434234619, + "learning_rate": 4.068333333333334e-06, + "loss": 1.2143017578125, + "step": 689300 + }, + { + "epoch": 91.92, + "grad_norm": 0.893493115901947, + "learning_rate": 4.061666666666667e-06, + "loss": 1.213790283203125, + "step": 689400 + }, + { + "epoch": 91.93333333333334, + "grad_norm": 0.9905881285667419, + "learning_rate": 4.055e-06, + "loss": 1.2162788391113282, + "step": 689500 + }, + { + "epoch": 91.94666666666667, + "grad_norm": 0.9450225830078125, + "learning_rate": 4.048333333333334e-06, + "loss": 1.213459243774414, + "step": 689600 + }, + { + "epoch": 91.96, + "grad_norm": 0.9374111294746399, + "learning_rate": 4.041733333333333e-06, + "loss": 1.21458984375, + "step": 689700 + }, + { + "epoch": 91.97333333333333, + "grad_norm": 0.8688250780105591, + "learning_rate": 4.035066666666667e-06, + "loss": 1.2136087799072266, + "step": 689800 + }, + { + "epoch": 91.98666666666666, + "grad_norm": 0.912335216999054, + "learning_rate": 4.0284e-06, + "loss": 1.2162496948242187, + "step": 689900 + }, + { + "epoch": 92.0, + "grad_norm": 0.8809793591499329, + "learning_rate": 4.021733333333333e-06, + "loss": 1.215945281982422, + "step": 690000 + }, + { + "epoch": 92.01333333333334, + "grad_norm": 0.8624962568283081, + "learning_rate": 4.015066666666667e-06, + "loss": 1.1997320556640625, + "step": 690100 + }, + { + "epoch": 92.02666666666667, + "grad_norm": 0.8585469126701355, + "learning_rate": 4.0084000000000005e-06, + "loss": 1.198604278564453, + "step": 690200 + }, + { + "epoch": 92.04, + "grad_norm": 0.9289453029632568, + "learning_rate": 4.0017333333333336e-06, + "loss": 1.2011491394042968, + "step": 690300 + }, + { + "epoch": 92.05333333333333, + "grad_norm": 0.81109219789505, + "learning_rate": 3.995066666666667e-06, + "loss": 1.200951156616211, + "step": 690400 + }, + { + "epoch": 92.06666666666666, + "grad_norm": 0.8511631488800049, + "learning_rate": 3.988400000000001e-06, + "loss": 1.2002388000488282, + "step": 690500 + }, + { + "epoch": 92.08, + "grad_norm": 0.9203524589538574, + "learning_rate": 3.981733333333334e-06, + "loss": 1.1966284942626952, + "step": 690600 + }, + { + "epoch": 92.09333333333333, + "grad_norm": 0.9373264312744141, + "learning_rate": 3.975066666666667e-06, + "loss": 1.20522705078125, + "step": 690700 + }, + { + "epoch": 92.10666666666667, + "grad_norm": 0.8882933855056763, + "learning_rate": 3.9684e-06, + "loss": 1.1983634948730468, + "step": 690800 + }, + { + "epoch": 92.12, + "grad_norm": 0.9304332733154297, + "learning_rate": 3.961733333333333e-06, + "loss": 1.201865005493164, + "step": 690900 + }, + { + "epoch": 92.13333333333334, + "grad_norm": 0.8630163669586182, + "learning_rate": 3.955066666666667e-06, + "loss": 1.203161163330078, + "step": 691000 + }, + { + "epoch": 92.14666666666666, + "grad_norm": 0.8729649782180786, + "learning_rate": 3.9484e-06, + "loss": 1.1991504669189452, + "step": 691100 + }, + { + "epoch": 92.16, + "grad_norm": 0.9168478846549988, + "learning_rate": 3.941733333333333e-06, + "loss": 1.2062628936767579, + "step": 691200 + }, + { + "epoch": 92.17333333333333, + "grad_norm": 0.947083055973053, + "learning_rate": 3.935066666666666e-06, + "loss": 1.2042913818359375, + "step": 691300 + }, + { + "epoch": 92.18666666666667, + "grad_norm": 0.8406407237052917, + "learning_rate": 3.9284e-06, + "loss": 1.2058570861816407, + "step": 691400 + }, + { + "epoch": 92.2, + "grad_norm": 0.8867647051811218, + "learning_rate": 3.9217333333333335e-06, + "loss": 1.205999526977539, + "step": 691500 + }, + { + "epoch": 92.21333333333334, + "grad_norm": 0.8558156490325928, + "learning_rate": 3.915066666666667e-06, + "loss": 1.2016780853271485, + "step": 691600 + }, + { + "epoch": 92.22666666666667, + "grad_norm": 0.9120957851409912, + "learning_rate": 3.9084666666666665e-06, + "loss": 1.2028411102294922, + "step": 691700 + }, + { + "epoch": 92.24, + "grad_norm": 0.8666041493415833, + "learning_rate": 3.9018e-06, + "loss": 1.2044637298583984, + "step": 691800 + }, + { + "epoch": 92.25333333333333, + "grad_norm": 0.9331375956535339, + "learning_rate": 3.895133333333334e-06, + "loss": 1.2048243713378906, + "step": 691900 + }, + { + "epoch": 92.26666666666667, + "grad_norm": 0.9363828301429749, + "learning_rate": 3.888466666666667e-06, + "loss": 1.20224609375, + "step": 692000 + }, + { + "epoch": 92.28, + "grad_norm": 0.8703069686889648, + "learning_rate": 3.8818e-06, + "loss": 1.2026631927490234, + "step": 692100 + }, + { + "epoch": 92.29333333333334, + "grad_norm": 0.8834508061408997, + "learning_rate": 3.875133333333334e-06, + "loss": 1.205963134765625, + "step": 692200 + }, + { + "epoch": 92.30666666666667, + "grad_norm": 0.9188662171363831, + "learning_rate": 3.868466666666667e-06, + "loss": 1.2017127227783204, + "step": 692300 + }, + { + "epoch": 92.32, + "grad_norm": 0.9342883825302124, + "learning_rate": 3.8618e-06, + "loss": 1.2051532745361329, + "step": 692400 + }, + { + "epoch": 92.33333333333333, + "grad_norm": 0.8774183988571167, + "learning_rate": 3.855133333333333e-06, + "loss": 1.2030648803710937, + "step": 692500 + }, + { + "epoch": 92.34666666666666, + "grad_norm": 0.9485383033752441, + "learning_rate": 3.848466666666667e-06, + "loss": 1.2045017242431642, + "step": 692600 + }, + { + "epoch": 92.36, + "grad_norm": 0.8900927305221558, + "learning_rate": 3.8418e-06, + "loss": 1.2074580383300781, + "step": 692700 + }, + { + "epoch": 92.37333333333333, + "grad_norm": 0.92417973279953, + "learning_rate": 3.835133333333333e-06, + "loss": 1.2043077087402343, + "step": 692800 + }, + { + "epoch": 92.38666666666667, + "grad_norm": 0.9447479844093323, + "learning_rate": 3.828466666666667e-06, + "loss": 1.2089013671875, + "step": 692900 + }, + { + "epoch": 92.4, + "grad_norm": 0.8772882223129272, + "learning_rate": 3.8218e-06, + "loss": 1.2071390533447266, + "step": 693000 + }, + { + "epoch": 92.41333333333333, + "grad_norm": 1.0013352632522583, + "learning_rate": 3.8151333333333335e-06, + "loss": 1.2067708587646484, + "step": 693100 + }, + { + "epoch": 92.42666666666666, + "grad_norm": 0.933141827583313, + "learning_rate": 3.808466666666667e-06, + "loss": 1.203813018798828, + "step": 693200 + }, + { + "epoch": 92.44, + "grad_norm": 0.8919726610183716, + "learning_rate": 3.8018000000000006e-06, + "loss": 1.2031111907958985, + "step": 693300 + }, + { + "epoch": 92.45333333333333, + "grad_norm": 0.9562348127365112, + "learning_rate": 3.7951333333333333e-06, + "loss": 1.2068241882324218, + "step": 693400 + }, + { + "epoch": 92.46666666666667, + "grad_norm": 0.8733388185501099, + "learning_rate": 3.7884666666666664e-06, + "loss": 1.2057405090332032, + "step": 693500 + }, + { + "epoch": 92.48, + "grad_norm": 0.837426483631134, + "learning_rate": 3.7818e-06, + "loss": 1.2067436218261718, + "step": 693600 + }, + { + "epoch": 92.49333333333334, + "grad_norm": 0.881060004234314, + "learning_rate": 3.7752000000000003e-06, + "loss": 1.2039698028564454, + "step": 693700 + }, + { + "epoch": 92.50666666666666, + "grad_norm": 0.9489794969558716, + "learning_rate": 3.768533333333334e-06, + "loss": 1.2064761352539062, + "step": 693800 + }, + { + "epoch": 92.52, + "grad_norm": 0.8895357847213745, + "learning_rate": 3.761866666666667e-06, + "loss": 1.202109375, + "step": 693900 + }, + { + "epoch": 92.53333333333333, + "grad_norm": 0.9040202498435974, + "learning_rate": 3.7552000000000005e-06, + "loss": 1.2075955963134766, + "step": 694000 + }, + { + "epoch": 92.54666666666667, + "grad_norm": 0.9203453660011292, + "learning_rate": 3.7485333333333336e-06, + "loss": 1.2062896728515624, + "step": 694100 + }, + { + "epoch": 92.56, + "grad_norm": 0.8410115242004395, + "learning_rate": 3.741866666666667e-06, + "loss": 1.2079099273681642, + "step": 694200 + }, + { + "epoch": 92.57333333333334, + "grad_norm": 0.8776598572731018, + "learning_rate": 3.7352000000000007e-06, + "loss": 1.201023941040039, + "step": 694300 + }, + { + "epoch": 92.58666666666667, + "grad_norm": 0.9552059769630432, + "learning_rate": 3.7285333333333334e-06, + "loss": 1.209650650024414, + "step": 694400 + }, + { + "epoch": 92.6, + "grad_norm": 0.9305794835090637, + "learning_rate": 3.7218666666666665e-06, + "loss": 1.2058026885986328, + "step": 694500 + }, + { + "epoch": 92.61333333333333, + "grad_norm": 0.9237838387489319, + "learning_rate": 3.7152e-06, + "loss": 1.2126660919189454, + "step": 694600 + }, + { + "epoch": 92.62666666666667, + "grad_norm": 0.9203336834907532, + "learning_rate": 3.708533333333333e-06, + "loss": 1.207015380859375, + "step": 694700 + }, + { + "epoch": 92.64, + "grad_norm": 0.9319577217102051, + "learning_rate": 3.7018666666666667e-06, + "loss": 1.2062096405029297, + "step": 694800 + }, + { + "epoch": 92.65333333333334, + "grad_norm": 0.8748674988746643, + "learning_rate": 3.6952000000000002e-06, + "loss": 1.2033453369140625, + "step": 694900 + }, + { + "epoch": 92.66666666666667, + "grad_norm": 0.8956521153450012, + "learning_rate": 3.6885333333333333e-06, + "loss": 1.2087307739257813, + "step": 695000 + }, + { + "epoch": 92.68, + "grad_norm": 0.8896095156669617, + "learning_rate": 3.681866666666667e-06, + "loss": 1.2088866424560547, + "step": 695100 + }, + { + "epoch": 92.69333333333333, + "grad_norm": 0.9287655353546143, + "learning_rate": 3.6752e-06, + "loss": 1.2099744415283202, + "step": 695200 + }, + { + "epoch": 92.70666666666666, + "grad_norm": 0.8579117655754089, + "learning_rate": 3.6685333333333335e-06, + "loss": 1.2089561462402343, + "step": 695300 + }, + { + "epoch": 92.72, + "grad_norm": 0.906623125076294, + "learning_rate": 3.661866666666667e-06, + "loss": 1.207219009399414, + "step": 695400 + }, + { + "epoch": 92.73333333333333, + "grad_norm": 0.8688279390335083, + "learning_rate": 3.6552e-06, + "loss": 1.205895233154297, + "step": 695500 + }, + { + "epoch": 92.74666666666667, + "grad_norm": 0.9425486326217651, + "learning_rate": 3.6485333333333337e-06, + "loss": 1.205015869140625, + "step": 695600 + }, + { + "epoch": 92.76, + "grad_norm": 0.9034813046455383, + "learning_rate": 3.6419333333333332e-06, + "loss": 1.2078257751464845, + "step": 695700 + }, + { + "epoch": 92.77333333333333, + "grad_norm": 0.9471731781959534, + "learning_rate": 3.6352666666666668e-06, + "loss": 1.2084870147705078, + "step": 695800 + }, + { + "epoch": 92.78666666666666, + "grad_norm": 0.8931053280830383, + "learning_rate": 3.6286e-06, + "loss": 1.2065433502197265, + "step": 695900 + }, + { + "epoch": 92.8, + "grad_norm": 0.9375083446502686, + "learning_rate": 3.6219333333333334e-06, + "loss": 1.2090350341796876, + "step": 696000 + }, + { + "epoch": 92.81333333333333, + "grad_norm": 0.8571840524673462, + "learning_rate": 3.615266666666667e-06, + "loss": 1.2078850555419922, + "step": 696100 + }, + { + "epoch": 92.82666666666667, + "grad_norm": 0.9313179850578308, + "learning_rate": 3.6086e-06, + "loss": 1.2092186737060546, + "step": 696200 + }, + { + "epoch": 92.84, + "grad_norm": 0.8702300786972046, + "learning_rate": 3.6019333333333336e-06, + "loss": 1.209949951171875, + "step": 696300 + }, + { + "epoch": 92.85333333333334, + "grad_norm": 0.9009842872619629, + "learning_rate": 3.5952666666666667e-06, + "loss": 1.2110611724853515, + "step": 696400 + }, + { + "epoch": 92.86666666666666, + "grad_norm": 0.8789703249931335, + "learning_rate": 3.5886000000000003e-06, + "loss": 1.212374267578125, + "step": 696500 + }, + { + "epoch": 92.88, + "grad_norm": 0.937931478023529, + "learning_rate": 3.581933333333334e-06, + "loss": 1.2115992736816406, + "step": 696600 + }, + { + "epoch": 92.89333333333333, + "grad_norm": 0.8966504335403442, + "learning_rate": 3.575266666666667e-06, + "loss": 1.2094432067871095, + "step": 696700 + }, + { + "epoch": 92.90666666666667, + "grad_norm": 0.9230213761329651, + "learning_rate": 3.5686000000000004e-06, + "loss": 1.2086225128173829, + "step": 696800 + }, + { + "epoch": 92.92, + "grad_norm": 0.9597765803337097, + "learning_rate": 3.561933333333334e-06, + "loss": 1.2142015075683594, + "step": 696900 + }, + { + "epoch": 92.93333333333334, + "grad_norm": 0.9093431830406189, + "learning_rate": 3.555266666666667e-06, + "loss": 1.2086906433105469, + "step": 697000 + }, + { + "epoch": 92.94666666666667, + "grad_norm": 0.897400438785553, + "learning_rate": 3.5485999999999998e-06, + "loss": 1.211206283569336, + "step": 697100 + }, + { + "epoch": 92.96, + "grad_norm": 0.867046594619751, + "learning_rate": 3.5419333333333333e-06, + "loss": 1.2069461822509766, + "step": 697200 + }, + { + "epoch": 92.97333333333333, + "grad_norm": 0.8881245255470276, + "learning_rate": 3.5352666666666664e-06, + "loss": 1.2137161254882813, + "step": 697300 + }, + { + "epoch": 92.98666666666666, + "grad_norm": 0.9253084063529968, + "learning_rate": 3.5286e-06, + "loss": 1.2097924041748047, + "step": 697400 + }, + { + "epoch": 93.0, + "grad_norm": 0.938310980796814, + "learning_rate": 3.5219333333333335e-06, + "loss": 1.2097466278076172, + "step": 697500 + }, + { + "epoch": 93.01333333333334, + "grad_norm": 0.9459820985794067, + "learning_rate": 3.5152666666666666e-06, + "loss": 1.2002715301513671, + "step": 697600 + }, + { + "epoch": 93.02666666666667, + "grad_norm": 0.8648054003715515, + "learning_rate": 3.508666666666667e-06, + "loss": 1.1980596923828124, + "step": 697700 + }, + { + "epoch": 93.04, + "grad_norm": 0.9034267067909241, + "learning_rate": 3.5020000000000005e-06, + "loss": 1.1980625915527343, + "step": 697800 + }, + { + "epoch": 93.05333333333333, + "grad_norm": 0.891040027141571, + "learning_rate": 3.4953333333333336e-06, + "loss": 1.196813735961914, + "step": 697900 + }, + { + "epoch": 93.06666666666666, + "grad_norm": 0.8857132792472839, + "learning_rate": 3.488666666666667e-06, + "loss": 1.1995645141601563, + "step": 698000 + }, + { + "epoch": 93.08, + "grad_norm": 0.8220590949058533, + "learning_rate": 3.482e-06, + "loss": 1.199000930786133, + "step": 698100 + }, + { + "epoch": 93.09333333333333, + "grad_norm": 0.9337181448936462, + "learning_rate": 3.4753333333333334e-06, + "loss": 1.1981783294677735, + "step": 698200 + }, + { + "epoch": 93.10666666666667, + "grad_norm": 0.8952512145042419, + "learning_rate": 3.4686666666666665e-06, + "loss": 1.203648910522461, + "step": 698300 + }, + { + "epoch": 93.12, + "grad_norm": 0.932554304599762, + "learning_rate": 3.462e-06, + "loss": 1.2012419891357422, + "step": 698400 + }, + { + "epoch": 93.13333333333334, + "grad_norm": 0.8617738485336304, + "learning_rate": 3.455333333333333e-06, + "loss": 1.1994852447509765, + "step": 698500 + }, + { + "epoch": 93.14666666666666, + "grad_norm": 0.9104321599006653, + "learning_rate": 3.4486666666666667e-06, + "loss": 1.207906723022461, + "step": 698600 + }, + { + "epoch": 93.16, + "grad_norm": 0.8374426960945129, + "learning_rate": 3.4420000000000002e-06, + "loss": 1.1999403381347655, + "step": 698700 + }, + { + "epoch": 93.17333333333333, + "grad_norm": 0.8905571103096008, + "learning_rate": 3.4353333333333334e-06, + "loss": 1.1972482299804688, + "step": 698800 + }, + { + "epoch": 93.18666666666667, + "grad_norm": 0.8699285387992859, + "learning_rate": 3.428666666666667e-06, + "loss": 1.2003094482421874, + "step": 698900 + }, + { + "epoch": 93.2, + "grad_norm": 0.8738979697227478, + "learning_rate": 3.422e-06, + "loss": 1.2002088928222656, + "step": 699000 + }, + { + "epoch": 93.21333333333334, + "grad_norm": 0.8332516551017761, + "learning_rate": 3.4153333333333336e-06, + "loss": 1.1950491333007813, + "step": 699100 + }, + { + "epoch": 93.22666666666667, + "grad_norm": 0.8510139584541321, + "learning_rate": 3.408666666666667e-06, + "loss": 1.1995225524902344, + "step": 699200 + }, + { + "epoch": 93.24, + "grad_norm": 0.9004165530204773, + "learning_rate": 3.402e-06, + "loss": 1.2011061096191407, + "step": 699300 + }, + { + "epoch": 93.25333333333333, + "grad_norm": 0.9277057647705078, + "learning_rate": 3.3953333333333337e-06, + "loss": 1.2032598876953124, + "step": 699400 + }, + { + "epoch": 93.26666666666667, + "grad_norm": 0.9293489456176758, + "learning_rate": 3.388666666666667e-06, + "loss": 1.2010295867919922, + "step": 699500 + }, + { + "epoch": 93.28, + "grad_norm": 0.9297680854797363, + "learning_rate": 3.3820000000000004e-06, + "loss": 1.1998831176757812, + "step": 699600 + }, + { + "epoch": 93.29333333333334, + "grad_norm": 0.9310411810874939, + "learning_rate": 3.375333333333334e-06, + "loss": 1.2022223663330078, + "step": 699700 + }, + { + "epoch": 93.30666666666667, + "grad_norm": 0.8587492108345032, + "learning_rate": 3.3687333333333334e-06, + "loss": 1.2029190063476562, + "step": 699800 + }, + { + "epoch": 93.32, + "grad_norm": 0.8777822852134705, + "learning_rate": 3.362066666666667e-06, + "loss": 1.1976495361328126, + "step": 699900 + }, + { + "epoch": 93.33333333333333, + "grad_norm": 0.9253079891204834, + "learning_rate": 3.3554e-06, + "loss": 1.205234909057617, + "step": 700000 + }, + { + "epoch": 93.34666666666666, + "grad_norm": 0.9172502160072327, + "learning_rate": 3.3487333333333336e-06, + "loss": 1.2025753784179687, + "step": 700100 + }, + { + "epoch": 93.36, + "grad_norm": 0.8835508227348328, + "learning_rate": 3.3420666666666667e-06, + "loss": 1.203255386352539, + "step": 700200 + }, + { + "epoch": 93.37333333333333, + "grad_norm": 0.9050441980361938, + "learning_rate": 3.3354000000000003e-06, + "loss": 1.2038262176513672, + "step": 700300 + }, + { + "epoch": 93.38666666666667, + "grad_norm": 0.8916856050491333, + "learning_rate": 3.328733333333334e-06, + "loss": 1.2023595428466798, + "step": 700400 + }, + { + "epoch": 93.4, + "grad_norm": 0.945793867111206, + "learning_rate": 3.322066666666667e-06, + "loss": 1.2015753173828125, + "step": 700500 + }, + { + "epoch": 93.41333333333333, + "grad_norm": 0.8409869074821472, + "learning_rate": 3.3154000000000005e-06, + "loss": 1.200424346923828, + "step": 700600 + }, + { + "epoch": 93.42666666666666, + "grad_norm": 0.8369486927986145, + "learning_rate": 3.308733333333334e-06, + "loss": 1.2012825012207031, + "step": 700700 + }, + { + "epoch": 93.44, + "grad_norm": 0.9023328423500061, + "learning_rate": 3.3020666666666667e-06, + "loss": 1.1996861267089844, + "step": 700800 + }, + { + "epoch": 93.45333333333333, + "grad_norm": 0.9621808528900146, + "learning_rate": 3.2954e-06, + "loss": 1.2020472717285156, + "step": 700900 + }, + { + "epoch": 93.46666666666667, + "grad_norm": 0.9381176829338074, + "learning_rate": 3.2887333333333334e-06, + "loss": 1.2013578033447265, + "step": 701000 + }, + { + "epoch": 93.48, + "grad_norm": 0.9038723111152649, + "learning_rate": 3.2820666666666665e-06, + "loss": 1.2052571868896484, + "step": 701100 + }, + { + "epoch": 93.49333333333334, + "grad_norm": 0.8777031898498535, + "learning_rate": 3.2754e-06, + "loss": 1.2066443634033204, + "step": 701200 + }, + { + "epoch": 93.50666666666666, + "grad_norm": 0.898979663848877, + "learning_rate": 3.2687333333333336e-06, + "loss": 1.2039942932128906, + "step": 701300 + }, + { + "epoch": 93.52, + "grad_norm": 0.9564325213432312, + "learning_rate": 3.2620666666666667e-06, + "loss": 1.203017120361328, + "step": 701400 + }, + { + "epoch": 93.53333333333333, + "grad_norm": 0.8886229991912842, + "learning_rate": 3.2554e-06, + "loss": 1.2048358917236328, + "step": 701500 + }, + { + "epoch": 93.54666666666667, + "grad_norm": 0.9237152338027954, + "learning_rate": 3.2487333333333333e-06, + "loss": 1.2045701599121095, + "step": 701600 + }, + { + "epoch": 93.56, + "grad_norm": 0.896867036819458, + "learning_rate": 3.242066666666667e-06, + "loss": 1.2023987579345703, + "step": 701700 + }, + { + "epoch": 93.57333333333334, + "grad_norm": 0.9271662831306458, + "learning_rate": 3.2354666666666664e-06, + "loss": 1.2070915985107422, + "step": 701800 + }, + { + "epoch": 93.58666666666667, + "grad_norm": 0.9243695139884949, + "learning_rate": 3.2288e-06, + "loss": 1.2029459381103516, + "step": 701900 + }, + { + "epoch": 93.6, + "grad_norm": 0.8733084797859192, + "learning_rate": 3.2221333333333334e-06, + "loss": 1.2044219207763671, + "step": 702000 + }, + { + "epoch": 93.61333333333333, + "grad_norm": 0.8613144159317017, + "learning_rate": 3.2154666666666666e-06, + "loss": 1.2015194702148437, + "step": 702100 + }, + { + "epoch": 93.62666666666667, + "grad_norm": 0.8946916460990906, + "learning_rate": 3.2088e-06, + "loss": 1.2066204071044921, + "step": 702200 + }, + { + "epoch": 93.64, + "grad_norm": 0.8852377533912659, + "learning_rate": 3.202133333333333e-06, + "loss": 1.2049375915527343, + "step": 702300 + }, + { + "epoch": 93.65333333333334, + "grad_norm": 0.9133490324020386, + "learning_rate": 3.1954666666666667e-06, + "loss": 1.2069032287597656, + "step": 702400 + }, + { + "epoch": 93.66666666666667, + "grad_norm": 0.9736997485160828, + "learning_rate": 3.1888000000000003e-06, + "loss": 1.2061416625976562, + "step": 702500 + }, + { + "epoch": 93.68, + "grad_norm": 0.8475258946418762, + "learning_rate": 3.1821333333333334e-06, + "loss": 1.2070252227783203, + "step": 702600 + }, + { + "epoch": 93.69333333333333, + "grad_norm": 0.8701179623603821, + "learning_rate": 3.175466666666667e-06, + "loss": 1.2072611236572266, + "step": 702700 + }, + { + "epoch": 93.70666666666666, + "grad_norm": 0.9371302723884583, + "learning_rate": 3.1688e-06, + "loss": 1.2073512268066406, + "step": 702800 + }, + { + "epoch": 93.72, + "grad_norm": 0.9097060561180115, + "learning_rate": 3.1621333333333336e-06, + "loss": 1.2026378631591796, + "step": 702900 + }, + { + "epoch": 93.73333333333333, + "grad_norm": 0.938374936580658, + "learning_rate": 3.155466666666667e-06, + "loss": 1.2043750762939454, + "step": 703000 + }, + { + "epoch": 93.74666666666667, + "grad_norm": 0.9308724999427795, + "learning_rate": 3.1488000000000002e-06, + "loss": 1.2057681274414063, + "step": 703100 + }, + { + "epoch": 93.76, + "grad_norm": 0.9380525350570679, + "learning_rate": 3.1421333333333338e-06, + "loss": 1.2027383422851563, + "step": 703200 + }, + { + "epoch": 93.77333333333333, + "grad_norm": 0.9042573571205139, + "learning_rate": 3.135466666666667e-06, + "loss": 1.2053038787841797, + "step": 703300 + }, + { + "epoch": 93.78666666666666, + "grad_norm": 0.8465674519538879, + "learning_rate": 3.1288000000000004e-06, + "loss": 1.2070914459228517, + "step": 703400 + }, + { + "epoch": 93.8, + "grad_norm": 0.9048718214035034, + "learning_rate": 3.1221333333333336e-06, + "loss": 1.2079029846191407, + "step": 703500 + }, + { + "epoch": 93.81333333333333, + "grad_norm": 0.9605961441993713, + "learning_rate": 3.115466666666667e-06, + "loss": 1.205398712158203, + "step": 703600 + }, + { + "epoch": 93.82666666666667, + "grad_norm": 0.8697989583015442, + "learning_rate": 3.1088e-06, + "loss": 1.2042691040039062, + "step": 703700 + }, + { + "epoch": 93.84, + "grad_norm": 0.8812441229820251, + "learning_rate": 3.1022e-06, + "loss": 1.2068780517578126, + "step": 703800 + }, + { + "epoch": 93.85333333333334, + "grad_norm": 0.8852190375328064, + "learning_rate": 3.0955333333333337e-06, + "loss": 1.2042357635498047, + "step": 703900 + }, + { + "epoch": 93.86666666666666, + "grad_norm": 0.9224363565444946, + "learning_rate": 3.0888666666666668e-06, + "loss": 1.203583755493164, + "step": 704000 + }, + { + "epoch": 93.88, + "grad_norm": 0.9226585626602173, + "learning_rate": 3.0822e-06, + "loss": 1.2078118896484376, + "step": 704100 + }, + { + "epoch": 93.89333333333333, + "grad_norm": 0.8923982381820679, + "learning_rate": 3.0755333333333334e-06, + "loss": 1.2106005859375, + "step": 704200 + }, + { + "epoch": 93.90666666666667, + "grad_norm": 0.8998373746871948, + "learning_rate": 3.068866666666667e-06, + "loss": 1.2074279022216796, + "step": 704300 + }, + { + "epoch": 93.92, + "grad_norm": 0.8896543383598328, + "learning_rate": 3.0622e-06, + "loss": 1.2062702178955078, + "step": 704400 + }, + { + "epoch": 93.93333333333334, + "grad_norm": 0.9087594747543335, + "learning_rate": 3.0555333333333336e-06, + "loss": 1.2025060272216797, + "step": 704500 + }, + { + "epoch": 93.94666666666667, + "grad_norm": 0.8689560890197754, + "learning_rate": 3.0488666666666667e-06, + "loss": 1.2087166595458985, + "step": 704600 + }, + { + "epoch": 93.96, + "grad_norm": 0.8625527620315552, + "learning_rate": 3.0422000000000003e-06, + "loss": 1.2062256622314453, + "step": 704700 + }, + { + "epoch": 93.97333333333333, + "grad_norm": 0.895000159740448, + "learning_rate": 3.035533333333334e-06, + "loss": 1.2069078826904296, + "step": 704800 + }, + { + "epoch": 93.98666666666666, + "grad_norm": 0.9123364090919495, + "learning_rate": 3.0288666666666665e-06, + "loss": 1.2070018005371095, + "step": 704900 + }, + { + "epoch": 94.0, + "grad_norm": 0.9559196829795837, + "learning_rate": 3.0222e-06, + "loss": 1.2079464721679687, + "step": 705000 + }, + { + "epoch": 94.01333333333334, + "grad_norm": 0.8545342087745667, + "learning_rate": 3.0155333333333336e-06, + "loss": 1.1980677795410157, + "step": 705100 + }, + { + "epoch": 94.02666666666667, + "grad_norm": 0.8731397390365601, + "learning_rate": 3.0088666666666667e-06, + "loss": 1.1981246948242188, + "step": 705200 + }, + { + "epoch": 94.04, + "grad_norm": 0.9388912320137024, + "learning_rate": 3.0022000000000002e-06, + "loss": 1.198083953857422, + "step": 705300 + }, + { + "epoch": 94.05333333333333, + "grad_norm": 0.8558587431907654, + "learning_rate": 2.9955333333333334e-06, + "loss": 1.1956981658935546, + "step": 705400 + }, + { + "epoch": 94.06666666666666, + "grad_norm": 0.9336191415786743, + "learning_rate": 2.988866666666667e-06, + "loss": 1.1954840087890626, + "step": 705500 + }, + { + "epoch": 94.08, + "grad_norm": 0.9011601209640503, + "learning_rate": 2.9822000000000004e-06, + "loss": 1.1973772430419922, + "step": 705600 + }, + { + "epoch": 94.09333333333333, + "grad_norm": 0.8702425956726074, + "learning_rate": 2.9755333333333335e-06, + "loss": 1.1975491333007813, + "step": 705700 + }, + { + "epoch": 94.10666666666667, + "grad_norm": 0.8665642738342285, + "learning_rate": 2.9689333333333335e-06, + "loss": 1.1951853942871093, + "step": 705800 + }, + { + "epoch": 94.12, + "grad_norm": 0.9032362103462219, + "learning_rate": 2.9622666666666666e-06, + "loss": 1.2001158905029297, + "step": 705900 + }, + { + "epoch": 94.13333333333334, + "grad_norm": 0.8543294668197632, + "learning_rate": 2.9556e-06, + "loss": 1.1968789672851563, + "step": 706000 + }, + { + "epoch": 94.14666666666666, + "grad_norm": 0.8729653358459473, + "learning_rate": 2.9489333333333332e-06, + "loss": 1.2012832641601563, + "step": 706100 + }, + { + "epoch": 94.16, + "grad_norm": 0.9173882603645325, + "learning_rate": 2.9422666666666668e-06, + "loss": 1.197931900024414, + "step": 706200 + }, + { + "epoch": 94.17333333333333, + "grad_norm": 0.8953747153282166, + "learning_rate": 2.9356000000000003e-06, + "loss": 1.201817169189453, + "step": 706300 + }, + { + "epoch": 94.18666666666667, + "grad_norm": 0.9290673732757568, + "learning_rate": 2.9289333333333334e-06, + "loss": 1.2014652252197267, + "step": 706400 + }, + { + "epoch": 94.2, + "grad_norm": 0.8571107387542725, + "learning_rate": 2.922266666666667e-06, + "loss": 1.199576187133789, + "step": 706500 + }, + { + "epoch": 94.21333333333334, + "grad_norm": 0.8771602511405945, + "learning_rate": 2.9156e-06, + "loss": 1.1957323455810547, + "step": 706600 + }, + { + "epoch": 94.22666666666667, + "grad_norm": 0.9305838346481323, + "learning_rate": 2.908933333333333e-06, + "loss": 1.1971856689453124, + "step": 706700 + }, + { + "epoch": 94.24, + "grad_norm": 0.8944154381752014, + "learning_rate": 2.9022666666666667e-06, + "loss": 1.197287826538086, + "step": 706800 + }, + { + "epoch": 94.25333333333333, + "grad_norm": 0.8940684199333191, + "learning_rate": 2.8956e-06, + "loss": 1.197225570678711, + "step": 706900 + }, + { + "epoch": 94.26666666666667, + "grad_norm": 0.9056709408760071, + "learning_rate": 2.8889333333333334e-06, + "loss": 1.1965518951416017, + "step": 707000 + }, + { + "epoch": 94.28, + "grad_norm": 0.9414792060852051, + "learning_rate": 2.882266666666667e-06, + "loss": 1.1968941497802734, + "step": 707100 + }, + { + "epoch": 94.29333333333334, + "grad_norm": 0.8908376097679138, + "learning_rate": 2.8756e-06, + "loss": 1.1973877716064454, + "step": 707200 + }, + { + "epoch": 94.30666666666667, + "grad_norm": 0.9297679662704468, + "learning_rate": 2.8689333333333336e-06, + "loss": 1.1994965362548828, + "step": 707300 + }, + { + "epoch": 94.32, + "grad_norm": 0.8703739047050476, + "learning_rate": 2.862266666666667e-06, + "loss": 1.1965327453613281, + "step": 707400 + }, + { + "epoch": 94.33333333333333, + "grad_norm": 0.8615278601646423, + "learning_rate": 2.8556000000000002e-06, + "loss": 1.2004428863525392, + "step": 707500 + }, + { + "epoch": 94.34666666666666, + "grad_norm": 0.9227656722068787, + "learning_rate": 2.8489333333333334e-06, + "loss": 1.2004918670654297, + "step": 707600 + }, + { + "epoch": 94.36, + "grad_norm": 0.9245252013206482, + "learning_rate": 2.842266666666667e-06, + "loss": 1.1989990997314453, + "step": 707700 + }, + { + "epoch": 94.37333333333333, + "grad_norm": 0.9238764643669128, + "learning_rate": 2.835666666666667e-06, + "loss": 1.2016976928710938, + "step": 707800 + }, + { + "epoch": 94.38666666666667, + "grad_norm": 0.9158653616905212, + "learning_rate": 2.829e-06, + "loss": 1.2035940551757813, + "step": 707900 + }, + { + "epoch": 94.4, + "grad_norm": 0.9159825444221497, + "learning_rate": 2.8223333333333335e-06, + "loss": 1.2021241760253907, + "step": 708000 + }, + { + "epoch": 94.41333333333333, + "grad_norm": 0.9235730171203613, + "learning_rate": 2.815666666666667e-06, + "loss": 1.197962875366211, + "step": 708100 + }, + { + "epoch": 94.42666666666666, + "grad_norm": 0.8646361231803894, + "learning_rate": 2.809e-06, + "loss": 1.1968673706054687, + "step": 708200 + }, + { + "epoch": 94.44, + "grad_norm": 0.9146223068237305, + "learning_rate": 2.8023333333333337e-06, + "loss": 1.1992236328125, + "step": 708300 + }, + { + "epoch": 94.45333333333333, + "grad_norm": 0.9262514710426331, + "learning_rate": 2.7956666666666668e-06, + "loss": 1.1973857879638672, + "step": 708400 + }, + { + "epoch": 94.46666666666667, + "grad_norm": 0.9602396488189697, + "learning_rate": 2.7890000000000003e-06, + "loss": 1.2021874237060546, + "step": 708500 + }, + { + "epoch": 94.48, + "grad_norm": 0.9169455766677856, + "learning_rate": 2.7823333333333334e-06, + "loss": 1.201337127685547, + "step": 708600 + }, + { + "epoch": 94.49333333333334, + "grad_norm": 0.922653079032898, + "learning_rate": 2.7756666666666665e-06, + "loss": 1.2005847930908202, + "step": 708700 + }, + { + "epoch": 94.50666666666666, + "grad_norm": 0.8886169195175171, + "learning_rate": 2.769e-06, + "loss": 1.2020726776123047, + "step": 708800 + }, + { + "epoch": 94.52, + "grad_norm": 0.9149191379547119, + "learning_rate": 2.7623333333333336e-06, + "loss": 1.2006275177001953, + "step": 708900 + }, + { + "epoch": 94.53333333333333, + "grad_norm": 0.9416818618774414, + "learning_rate": 2.7556666666666667e-06, + "loss": 1.20090576171875, + "step": 709000 + }, + { + "epoch": 94.54666666666667, + "grad_norm": 0.9213252067565918, + "learning_rate": 2.7490000000000003e-06, + "loss": 1.1960865783691406, + "step": 709100 + }, + { + "epoch": 94.56, + "grad_norm": 0.9599847197532654, + "learning_rate": 2.7423333333333334e-06, + "loss": 1.2013865661621095, + "step": 709200 + }, + { + "epoch": 94.57333333333334, + "grad_norm": 0.8929022550582886, + "learning_rate": 2.735666666666667e-06, + "loss": 1.1997483825683595, + "step": 709300 + }, + { + "epoch": 94.58666666666667, + "grad_norm": 0.9808670878410339, + "learning_rate": 2.729e-06, + "loss": 1.2010655975341797, + "step": 709400 + }, + { + "epoch": 94.6, + "grad_norm": 0.8982358574867249, + "learning_rate": 2.722333333333333e-06, + "loss": 1.2008942413330077, + "step": 709500 + }, + { + "epoch": 94.61333333333333, + "grad_norm": 0.9171635508537292, + "learning_rate": 2.7156666666666667e-06, + "loss": 1.1997940826416016, + "step": 709600 + }, + { + "epoch": 94.62666666666667, + "grad_norm": 0.8832179307937622, + "learning_rate": 2.7090000000000002e-06, + "loss": 1.2014200592041016, + "step": 709700 + }, + { + "epoch": 94.64, + "grad_norm": 0.8543769121170044, + "learning_rate": 2.7024e-06, + "loss": 1.2015788269042968, + "step": 709800 + }, + { + "epoch": 94.65333333333334, + "grad_norm": 0.8646900057792664, + "learning_rate": 2.6957333333333333e-06, + "loss": 1.203617935180664, + "step": 709900 + }, + { + "epoch": 94.66666666666667, + "grad_norm": 0.8815392255783081, + "learning_rate": 2.689066666666667e-06, + "loss": 1.2008470916748046, + "step": 710000 + }, + { + "epoch": 94.68, + "grad_norm": 0.9132913947105408, + "learning_rate": 2.6824000000000004e-06, + "loss": 1.2024823760986327, + "step": 710100 + }, + { + "epoch": 94.69333333333333, + "grad_norm": 0.9004465341567993, + "learning_rate": 2.6757333333333335e-06, + "loss": 1.2015773010253907, + "step": 710200 + }, + { + "epoch": 94.70666666666666, + "grad_norm": 0.9427282214164734, + "learning_rate": 2.669066666666667e-06, + "loss": 1.2027558135986327, + "step": 710300 + }, + { + "epoch": 94.72, + "grad_norm": 0.9398279786109924, + "learning_rate": 2.6624e-06, + "loss": 1.2022799682617187, + "step": 710400 + }, + { + "epoch": 94.73333333333333, + "grad_norm": 0.953403651714325, + "learning_rate": 2.6557333333333332e-06, + "loss": 1.2058155822753907, + "step": 710500 + }, + { + "epoch": 94.74666666666667, + "grad_norm": 0.9545753598213196, + "learning_rate": 2.6490666666666668e-06, + "loss": 1.204290542602539, + "step": 710600 + }, + { + "epoch": 94.76, + "grad_norm": 0.9156383872032166, + "learning_rate": 2.6424e-06, + "loss": 1.2020454406738281, + "step": 710700 + }, + { + "epoch": 94.77333333333333, + "grad_norm": 0.9403426647186279, + "learning_rate": 2.6357333333333334e-06, + "loss": 1.1997908020019532, + "step": 710800 + }, + { + "epoch": 94.78666666666666, + "grad_norm": 0.8966497182846069, + "learning_rate": 2.629066666666667e-06, + "loss": 1.2073065185546874, + "step": 710900 + }, + { + "epoch": 94.8, + "grad_norm": 0.933814287185669, + "learning_rate": 2.6224e-06, + "loss": 1.2032772064208985, + "step": 711000 + }, + { + "epoch": 94.81333333333333, + "grad_norm": 0.8316300511360168, + "learning_rate": 2.6157333333333336e-06, + "loss": 1.1999528503417969, + "step": 711100 + }, + { + "epoch": 94.82666666666667, + "grad_norm": 0.945821225643158, + "learning_rate": 2.609066666666667e-06, + "loss": 1.2072616577148438, + "step": 711200 + }, + { + "epoch": 94.84, + "grad_norm": 0.9445672035217285, + "learning_rate": 2.6024e-06, + "loss": 1.207545623779297, + "step": 711300 + }, + { + "epoch": 94.85333333333334, + "grad_norm": 0.9229156970977783, + "learning_rate": 2.5957333333333334e-06, + "loss": 1.2040837860107423, + "step": 711400 + }, + { + "epoch": 94.86666666666666, + "grad_norm": 0.9328680634498596, + "learning_rate": 2.589066666666667e-06, + "loss": 1.200493392944336, + "step": 711500 + }, + { + "epoch": 94.88, + "grad_norm": 0.8817058801651001, + "learning_rate": 2.5824e-06, + "loss": 1.204656448364258, + "step": 711600 + }, + { + "epoch": 94.89333333333333, + "grad_norm": 0.8611106276512146, + "learning_rate": 2.5757333333333336e-06, + "loss": 1.2088603973388672, + "step": 711700 + }, + { + "epoch": 94.90666666666667, + "grad_norm": 0.9168562889099121, + "learning_rate": 2.5691333333333335e-06, + "loss": 1.2051824951171874, + "step": 711800 + }, + { + "epoch": 94.92, + "grad_norm": 0.8960808515548706, + "learning_rate": 2.5624666666666666e-06, + "loss": 1.2036978912353515, + "step": 711900 + }, + { + "epoch": 94.93333333333334, + "grad_norm": 0.9241425395011902, + "learning_rate": 2.5558e-06, + "loss": 1.2029954528808593, + "step": 712000 + }, + { + "epoch": 94.94666666666667, + "grad_norm": 0.8758190274238586, + "learning_rate": 2.5491333333333337e-06, + "loss": 1.20275390625, + "step": 712100 + }, + { + "epoch": 94.96, + "grad_norm": 0.8666814565658569, + "learning_rate": 2.542466666666667e-06, + "loss": 1.2033231353759766, + "step": 712200 + }, + { + "epoch": 94.97333333333333, + "grad_norm": 0.9167757034301758, + "learning_rate": 2.5358e-06, + "loss": 1.2045973968505859, + "step": 712300 + }, + { + "epoch": 94.98666666666666, + "grad_norm": 0.9360477924346924, + "learning_rate": 2.5291333333333335e-06, + "loss": 1.2020364379882813, + "step": 712400 + }, + { + "epoch": 95.0, + "grad_norm": 0.9205434918403625, + "learning_rate": 2.5224666666666666e-06, + "loss": 1.2040877532958985, + "step": 712500 + }, + { + "epoch": 95.01333333333334, + "grad_norm": 0.8948925733566284, + "learning_rate": 2.5158e-06, + "loss": 1.1948794555664062, + "step": 712600 + }, + { + "epoch": 95.02666666666667, + "grad_norm": 0.9492332935333252, + "learning_rate": 2.5091333333333337e-06, + "loss": 1.1927398681640624, + "step": 712700 + }, + { + "epoch": 95.04, + "grad_norm": 0.9059979319572449, + "learning_rate": 2.5024666666666668e-06, + "loss": 1.1940172576904298, + "step": 712800 + }, + { + "epoch": 95.05333333333333, + "grad_norm": 0.8861105442047119, + "learning_rate": 2.4958000000000003e-06, + "loss": 1.1955216217041016, + "step": 712900 + }, + { + "epoch": 95.06666666666666, + "grad_norm": 0.9048792719841003, + "learning_rate": 2.4891333333333334e-06, + "loss": 1.1973499298095702, + "step": 713000 + }, + { + "epoch": 95.08, + "grad_norm": 0.8883659839630127, + "learning_rate": 2.4824666666666665e-06, + "loss": 1.1946544647216797, + "step": 713100 + }, + { + "epoch": 95.09333333333333, + "grad_norm": 0.9289974570274353, + "learning_rate": 2.4758e-06, + "loss": 1.1974421691894532, + "step": 713200 + }, + { + "epoch": 95.10666666666667, + "grad_norm": 0.9032652378082275, + "learning_rate": 2.469133333333333e-06, + "loss": 1.1930424499511718, + "step": 713300 + }, + { + "epoch": 95.12, + "grad_norm": 0.8951370716094971, + "learning_rate": 2.4624666666666667e-06, + "loss": 1.197111587524414, + "step": 713400 + }, + { + "epoch": 95.13333333333334, + "grad_norm": 0.8893224596977234, + "learning_rate": 2.4558000000000003e-06, + "loss": 1.1959721374511718, + "step": 713500 + }, + { + "epoch": 95.14666666666666, + "grad_norm": 0.8968496918678284, + "learning_rate": 2.4491333333333334e-06, + "loss": 1.1987583923339844, + "step": 713600 + }, + { + "epoch": 95.16, + "grad_norm": 0.8864784240722656, + "learning_rate": 2.442466666666667e-06, + "loss": 1.1947860717773438, + "step": 713700 + }, + { + "epoch": 95.17333333333333, + "grad_norm": 0.8457802534103394, + "learning_rate": 2.435866666666667e-06, + "loss": 1.1984773254394532, + "step": 713800 + }, + { + "epoch": 95.18666666666667, + "grad_norm": 0.9682843685150146, + "learning_rate": 2.4292000000000004e-06, + "loss": 1.1989812469482422, + "step": 713900 + }, + { + "epoch": 95.2, + "grad_norm": 0.9019679427146912, + "learning_rate": 2.4225333333333335e-06, + "loss": 1.1998885345458985, + "step": 714000 + }, + { + "epoch": 95.21333333333334, + "grad_norm": 0.8968068361282349, + "learning_rate": 2.4158666666666666e-06, + "loss": 1.196024169921875, + "step": 714100 + }, + { + "epoch": 95.22666666666667, + "grad_norm": 0.9033806324005127, + "learning_rate": 2.4092e-06, + "loss": 1.1988829803466796, + "step": 714200 + }, + { + "epoch": 95.24, + "grad_norm": 0.8861857056617737, + "learning_rate": 2.4025333333333333e-06, + "loss": 1.1954184722900392, + "step": 714300 + }, + { + "epoch": 95.25333333333333, + "grad_norm": 0.8714227676391602, + "learning_rate": 2.395866666666667e-06, + "loss": 1.1975115203857423, + "step": 714400 + }, + { + "epoch": 95.26666666666667, + "grad_norm": 0.8732222318649292, + "learning_rate": 2.3892e-06, + "loss": 1.1969498443603515, + "step": 714500 + }, + { + "epoch": 95.28, + "grad_norm": 0.8276050090789795, + "learning_rate": 2.3825333333333335e-06, + "loss": 1.197633285522461, + "step": 714600 + }, + { + "epoch": 95.29333333333334, + "grad_norm": 0.8574380278587341, + "learning_rate": 2.375866666666667e-06, + "loss": 1.1978040313720704, + "step": 714700 + }, + { + "epoch": 95.30666666666667, + "grad_norm": 0.9271215200424194, + "learning_rate": 2.3692e-06, + "loss": 1.1961704254150392, + "step": 714800 + }, + { + "epoch": 95.32, + "grad_norm": 0.9471455216407776, + "learning_rate": 2.3625333333333337e-06, + "loss": 1.193292694091797, + "step": 714900 + }, + { + "epoch": 95.33333333333333, + "grad_norm": 0.9028796553611755, + "learning_rate": 2.3558666666666668e-06, + "loss": 1.1993869018554688, + "step": 715000 + }, + { + "epoch": 95.34666666666666, + "grad_norm": 0.8910233378410339, + "learning_rate": 2.3492e-06, + "loss": 1.1982572174072266, + "step": 715100 + }, + { + "epoch": 95.36, + "grad_norm": 0.8883600831031799, + "learning_rate": 2.3425333333333334e-06, + "loss": 1.1972041320800781, + "step": 715200 + }, + { + "epoch": 95.37333333333333, + "grad_norm": 0.8244373202323914, + "learning_rate": 2.335866666666667e-06, + "loss": 1.1958223724365233, + "step": 715300 + }, + { + "epoch": 95.38666666666667, + "grad_norm": 0.8764129281044006, + "learning_rate": 2.3292e-06, + "loss": 1.197607421875, + "step": 715400 + }, + { + "epoch": 95.4, + "grad_norm": 0.9632822275161743, + "learning_rate": 2.3225333333333336e-06, + "loss": 1.1966116333007812, + "step": 715500 + }, + { + "epoch": 95.41333333333333, + "grad_norm": 0.8649945855140686, + "learning_rate": 2.3158666666666667e-06, + "loss": 1.2001445770263672, + "step": 715600 + }, + { + "epoch": 95.42666666666666, + "grad_norm": 0.8928907513618469, + "learning_rate": 2.3092000000000003e-06, + "loss": 1.1985771942138672, + "step": 715700 + }, + { + "epoch": 95.44, + "grad_norm": 0.8795034289360046, + "learning_rate": 2.3026e-06, + "loss": 1.1941232299804687, + "step": 715800 + }, + { + "epoch": 95.45333333333333, + "grad_norm": 0.8100056052207947, + "learning_rate": 2.2959333333333337e-06, + "loss": 1.1983812713623048, + "step": 715900 + }, + { + "epoch": 95.46666666666667, + "grad_norm": 0.8939315676689148, + "learning_rate": 2.289266666666667e-06, + "loss": 1.199446029663086, + "step": 716000 + }, + { + "epoch": 95.48, + "grad_norm": 0.8684143424034119, + "learning_rate": 2.2826e-06, + "loss": 1.1973661804199218, + "step": 716100 + }, + { + "epoch": 95.49333333333334, + "grad_norm": 0.8790379166603088, + "learning_rate": 2.2759333333333335e-06, + "loss": 1.198766098022461, + "step": 716200 + }, + { + "epoch": 95.50666666666666, + "grad_norm": 0.8545668721199036, + "learning_rate": 2.2692666666666666e-06, + "loss": 1.2022593688964844, + "step": 716300 + }, + { + "epoch": 95.52, + "grad_norm": 0.9270732402801514, + "learning_rate": 2.2626e-06, + "loss": 1.1938504028320311, + "step": 716400 + }, + { + "epoch": 95.53333333333333, + "grad_norm": 0.9058865308761597, + "learning_rate": 2.2559333333333337e-06, + "loss": 1.1984404754638671, + "step": 716500 + }, + { + "epoch": 95.54666666666667, + "grad_norm": 0.9313427805900574, + "learning_rate": 2.249266666666667e-06, + "loss": 1.1992517852783202, + "step": 716600 + }, + { + "epoch": 95.56, + "grad_norm": 0.9284090399742126, + "learning_rate": 2.2426000000000003e-06, + "loss": 1.2009918212890625, + "step": 716700 + }, + { + "epoch": 95.57333333333334, + "grad_norm": 0.893657386302948, + "learning_rate": 2.2359333333333335e-06, + "loss": 1.1964833068847656, + "step": 716800 + }, + { + "epoch": 95.58666666666667, + "grad_norm": 0.8945286273956299, + "learning_rate": 2.2292666666666666e-06, + "loss": 1.197146224975586, + "step": 716900 + }, + { + "epoch": 95.6, + "grad_norm": 0.945655345916748, + "learning_rate": 2.2226e-06, + "loss": 1.197714614868164, + "step": 717000 + }, + { + "epoch": 95.61333333333333, + "grad_norm": 0.8761715292930603, + "learning_rate": 2.2159333333333332e-06, + "loss": 1.1985298919677734, + "step": 717100 + }, + { + "epoch": 95.62666666666667, + "grad_norm": 0.9021620154380798, + "learning_rate": 2.2092666666666668e-06, + "loss": 1.1991383361816406, + "step": 717200 + }, + { + "epoch": 95.64, + "grad_norm": 0.8844672441482544, + "learning_rate": 2.2026000000000003e-06, + "loss": 1.1967192840576173, + "step": 717300 + }, + { + "epoch": 95.65333333333334, + "grad_norm": 0.8024809956550598, + "learning_rate": 2.1959333333333334e-06, + "loss": 1.1974788665771485, + "step": 717400 + }, + { + "epoch": 95.66666666666667, + "grad_norm": 0.9280022978782654, + "learning_rate": 2.189266666666667e-06, + "loss": 1.1954544830322265, + "step": 717500 + }, + { + "epoch": 95.68, + "grad_norm": 0.9242950677871704, + "learning_rate": 2.1826e-06, + "loss": 1.1988795471191407, + "step": 717600 + }, + { + "epoch": 95.69333333333333, + "grad_norm": 0.8772919178009033, + "learning_rate": 2.175933333333333e-06, + "loss": 1.1997234344482421, + "step": 717700 + }, + { + "epoch": 95.70666666666666, + "grad_norm": 0.9006758332252502, + "learning_rate": 2.169333333333333e-06, + "loss": 1.1984378814697265, + "step": 717800 + }, + { + "epoch": 95.72, + "grad_norm": 0.8565598726272583, + "learning_rate": 2.1626666666666667e-06, + "loss": 1.1955886840820313, + "step": 717900 + }, + { + "epoch": 95.73333333333333, + "grad_norm": 0.933894157409668, + "learning_rate": 2.156e-06, + "loss": 1.1962789154052735, + "step": 718000 + }, + { + "epoch": 95.74666666666667, + "grad_norm": 0.8751091957092285, + "learning_rate": 2.1493333333333333e-06, + "loss": 1.201226043701172, + "step": 718100 + }, + { + "epoch": 95.76, + "grad_norm": 0.8495886921882629, + "learning_rate": 2.142666666666667e-06, + "loss": 1.1997674560546876, + "step": 718200 + }, + { + "epoch": 95.77333333333333, + "grad_norm": 0.9047145247459412, + "learning_rate": 2.136e-06, + "loss": 1.193944854736328, + "step": 718300 + }, + { + "epoch": 95.78666666666666, + "grad_norm": 0.9060803055763245, + "learning_rate": 2.1293333333333335e-06, + "loss": 1.1976805877685548, + "step": 718400 + }, + { + "epoch": 95.8, + "grad_norm": 0.9374447464942932, + "learning_rate": 2.122666666666667e-06, + "loss": 1.1980715942382814, + "step": 718500 + }, + { + "epoch": 95.81333333333333, + "grad_norm": 0.9492117762565613, + "learning_rate": 2.116e-06, + "loss": 1.2027890014648437, + "step": 718600 + }, + { + "epoch": 95.82666666666667, + "grad_norm": 0.9291294813156128, + "learning_rate": 2.1093333333333333e-06, + "loss": 1.19962158203125, + "step": 718700 + }, + { + "epoch": 95.84, + "grad_norm": 0.8308159112930298, + "learning_rate": 2.102666666666667e-06, + "loss": 1.197718048095703, + "step": 718800 + }, + { + "epoch": 95.85333333333334, + "grad_norm": 0.8678395748138428, + "learning_rate": 2.096e-06, + "loss": 1.200029296875, + "step": 718900 + }, + { + "epoch": 95.86666666666666, + "grad_norm": 0.8894922733306885, + "learning_rate": 2.0893333333333335e-06, + "loss": 1.2026903533935547, + "step": 719000 + }, + { + "epoch": 95.88, + "grad_norm": 0.9153121113777161, + "learning_rate": 2.082666666666667e-06, + "loss": 1.204001922607422, + "step": 719100 + }, + { + "epoch": 95.89333333333333, + "grad_norm": 0.8754669427871704, + "learning_rate": 2.076e-06, + "loss": 1.197853546142578, + "step": 719200 + }, + { + "epoch": 95.90666666666667, + "grad_norm": 0.8554826974868774, + "learning_rate": 2.0693333333333337e-06, + "loss": 1.205391387939453, + "step": 719300 + }, + { + "epoch": 95.92, + "grad_norm": 0.9618128538131714, + "learning_rate": 2.0626666666666668e-06, + "loss": 1.2002410125732421, + "step": 719400 + }, + { + "epoch": 95.93333333333334, + "grad_norm": 0.9223273992538452, + "learning_rate": 2.056e-06, + "loss": 1.1999185943603516, + "step": 719500 + }, + { + "epoch": 95.94666666666667, + "grad_norm": 0.9011958241462708, + "learning_rate": 2.0493333333333334e-06, + "loss": 1.1979779815673828, + "step": 719600 + }, + { + "epoch": 95.96, + "grad_norm": 0.9180704951286316, + "learning_rate": 2.0426666666666665e-06, + "loss": 1.198479537963867, + "step": 719700 + }, + { + "epoch": 95.97333333333333, + "grad_norm": 0.9206179976463318, + "learning_rate": 2.036066666666667e-06, + "loss": 1.2030664825439452, + "step": 719800 + }, + { + "epoch": 95.98666666666666, + "grad_norm": 0.9367160797119141, + "learning_rate": 2.0294e-06, + "loss": 1.2019683837890625, + "step": 719900 + }, + { + "epoch": 96.0, + "grad_norm": 0.9119823575019836, + "learning_rate": 2.0227333333333335e-06, + "loss": 1.202654571533203, + "step": 720000 + }, + { + "epoch": 96.01333333333334, + "grad_norm": 0.9093582034111023, + "learning_rate": 2.0160666666666667e-06, + "loss": 1.1921070098876954, + "step": 720100 + }, + { + "epoch": 96.02666666666667, + "grad_norm": 0.8500725030899048, + "learning_rate": 2.0094e-06, + "loss": 1.1908522033691407, + "step": 720200 + }, + { + "epoch": 96.04, + "grad_norm": 0.9141291379928589, + "learning_rate": 2.0027333333333337e-06, + "loss": 1.1958201599121094, + "step": 720300 + }, + { + "epoch": 96.05333333333333, + "grad_norm": 0.9543992280960083, + "learning_rate": 1.996066666666667e-06, + "loss": 1.1920267486572265, + "step": 720400 + }, + { + "epoch": 96.06666666666666, + "grad_norm": 0.9262734651565552, + "learning_rate": 1.9894e-06, + "loss": 1.193255157470703, + "step": 720500 + }, + { + "epoch": 96.08, + "grad_norm": 0.8305232524871826, + "learning_rate": 1.9827333333333335e-06, + "loss": 1.1950745391845703, + "step": 720600 + }, + { + "epoch": 96.09333333333333, + "grad_norm": 0.8898489475250244, + "learning_rate": 1.9760666666666666e-06, + "loss": 1.1932999420166015, + "step": 720700 + }, + { + "epoch": 96.10666666666667, + "grad_norm": 0.8334019780158997, + "learning_rate": 1.9694e-06, + "loss": 1.1975872039794921, + "step": 720800 + }, + { + "epoch": 96.12, + "grad_norm": 0.8538830876350403, + "learning_rate": 1.9627333333333333e-06, + "loss": 1.1930878448486328, + "step": 720900 + }, + { + "epoch": 96.13333333333334, + "grad_norm": 0.940512478351593, + "learning_rate": 1.956066666666667e-06, + "loss": 1.1931523895263672, + "step": 721000 + }, + { + "epoch": 96.14666666666666, + "grad_norm": 0.9328157305717468, + "learning_rate": 1.9494000000000003e-06, + "loss": 1.1930429077148437, + "step": 721100 + }, + { + "epoch": 96.16, + "grad_norm": 0.8638653755187988, + "learning_rate": 1.9427333333333335e-06, + "loss": 1.1945172119140626, + "step": 721200 + }, + { + "epoch": 96.17333333333333, + "grad_norm": 0.9362466931343079, + "learning_rate": 1.936066666666667e-06, + "loss": 1.1952394104003907, + "step": 721300 + }, + { + "epoch": 96.18666666666667, + "grad_norm": 0.9211965203285217, + "learning_rate": 1.9294e-06, + "loss": 1.1918714141845703, + "step": 721400 + }, + { + "epoch": 96.2, + "grad_norm": 0.8353525996208191, + "learning_rate": 1.9227333333333332e-06, + "loss": 1.1955091857910156, + "step": 721500 + }, + { + "epoch": 96.21333333333334, + "grad_norm": 0.92364901304245, + "learning_rate": 1.9160666666666668e-06, + "loss": 1.196720428466797, + "step": 721600 + }, + { + "epoch": 96.22666666666667, + "grad_norm": 0.8855310082435608, + "learning_rate": 1.9094e-06, + "loss": 1.1948504638671875, + "step": 721700 + }, + { + "epoch": 96.24, + "grad_norm": 0.8908301591873169, + "learning_rate": 1.9028e-06, + "loss": 1.1984718322753907, + "step": 721800 + }, + { + "epoch": 96.25333333333333, + "grad_norm": 0.8790364861488342, + "learning_rate": 1.8961333333333333e-06, + "loss": 1.196904296875, + "step": 721900 + }, + { + "epoch": 96.26666666666667, + "grad_norm": 0.883306622505188, + "learning_rate": 1.8894666666666669e-06, + "loss": 1.1939882659912109, + "step": 722000 + }, + { + "epoch": 96.28, + "grad_norm": 0.9927467107772827, + "learning_rate": 1.8828000000000002e-06, + "loss": 1.19223388671875, + "step": 722100 + }, + { + "epoch": 96.29333333333334, + "grad_norm": 0.8814199566841125, + "learning_rate": 1.8761333333333335e-06, + "loss": 1.1944772338867187, + "step": 722200 + }, + { + "epoch": 96.30666666666667, + "grad_norm": 0.9252114295959473, + "learning_rate": 1.8694666666666667e-06, + "loss": 1.1965172576904297, + "step": 722300 + }, + { + "epoch": 96.32, + "grad_norm": 0.997600257396698, + "learning_rate": 1.8628e-06, + "loss": 1.1935216522216796, + "step": 722400 + }, + { + "epoch": 96.33333333333333, + "grad_norm": 0.9429076910018921, + "learning_rate": 1.8561333333333333e-06, + "loss": 1.1952505493164063, + "step": 722500 + }, + { + "epoch": 96.34666666666666, + "grad_norm": 0.9006048440933228, + "learning_rate": 1.8494666666666666e-06, + "loss": 1.195484848022461, + "step": 722600 + }, + { + "epoch": 96.36, + "grad_norm": 0.8496437072753906, + "learning_rate": 1.8428000000000002e-06, + "loss": 1.1942832946777344, + "step": 722700 + }, + { + "epoch": 96.37333333333333, + "grad_norm": 0.9131640791893005, + "learning_rate": 1.8361333333333335e-06, + "loss": 1.1970438385009765, + "step": 722800 + }, + { + "epoch": 96.38666666666667, + "grad_norm": 0.861127495765686, + "learning_rate": 1.8294666666666668e-06, + "loss": 1.1988032531738282, + "step": 722900 + }, + { + "epoch": 96.4, + "grad_norm": 0.8841111063957214, + "learning_rate": 1.8228000000000001e-06, + "loss": 1.1938710021972656, + "step": 723000 + }, + { + "epoch": 96.41333333333333, + "grad_norm": 0.8644812107086182, + "learning_rate": 1.8161333333333335e-06, + "loss": 1.1916226959228515, + "step": 723100 + }, + { + "epoch": 96.42666666666666, + "grad_norm": 0.9179438352584839, + "learning_rate": 1.8094666666666666e-06, + "loss": 1.1959225463867187, + "step": 723200 + }, + { + "epoch": 96.44, + "grad_norm": 0.8909555077552795, + "learning_rate": 1.8028e-06, + "loss": 1.1968844604492188, + "step": 723300 + }, + { + "epoch": 96.45333333333333, + "grad_norm": 0.8341104984283447, + "learning_rate": 1.7961333333333332e-06, + "loss": 1.1963389587402344, + "step": 723400 + }, + { + "epoch": 96.46666666666667, + "grad_norm": 0.8875642418861389, + "learning_rate": 1.7894666666666668e-06, + "loss": 1.200348129272461, + "step": 723500 + }, + { + "epoch": 96.48, + "grad_norm": 0.9483053684234619, + "learning_rate": 1.7828000000000001e-06, + "loss": 1.1985345458984376, + "step": 723600 + }, + { + "epoch": 96.49333333333334, + "grad_norm": 0.8640918731689453, + "learning_rate": 1.7761333333333334e-06, + "loss": 1.1940691375732422, + "step": 723700 + }, + { + "epoch": 96.50666666666666, + "grad_norm": 0.8642159700393677, + "learning_rate": 1.7695333333333334e-06, + "loss": 1.1963560485839844, + "step": 723800 + }, + { + "epoch": 96.52, + "grad_norm": 0.8903900384902954, + "learning_rate": 1.762866666666667e-06, + "loss": 1.199880599975586, + "step": 723900 + }, + { + "epoch": 96.53333333333333, + "grad_norm": 0.9225534200668335, + "learning_rate": 1.7562000000000002e-06, + "loss": 1.197684326171875, + "step": 724000 + }, + { + "epoch": 96.54666666666667, + "grad_norm": 0.8352228403091431, + "learning_rate": 1.7495333333333336e-06, + "loss": 1.200512924194336, + "step": 724100 + }, + { + "epoch": 96.56, + "grad_norm": 0.895626962184906, + "learning_rate": 1.7428666666666667e-06, + "loss": 1.1950564575195313, + "step": 724200 + }, + { + "epoch": 96.57333333333334, + "grad_norm": 0.8830674290657043, + "learning_rate": 1.7362e-06, + "loss": 1.1997767639160157, + "step": 724300 + }, + { + "epoch": 96.58666666666667, + "grad_norm": 0.875395655632019, + "learning_rate": 1.7295333333333333e-06, + "loss": 1.197208786010742, + "step": 724400 + }, + { + "epoch": 96.6, + "grad_norm": 0.9121081233024597, + "learning_rate": 1.7228666666666666e-06, + "loss": 1.1945203399658204, + "step": 724500 + }, + { + "epoch": 96.61333333333333, + "grad_norm": 0.9376330375671387, + "learning_rate": 1.7162000000000002e-06, + "loss": 1.1965845489501954, + "step": 724600 + }, + { + "epoch": 96.62666666666667, + "grad_norm": 0.8596921563148499, + "learning_rate": 1.7095333333333335e-06, + "loss": 1.195692138671875, + "step": 724700 + }, + { + "epoch": 96.64, + "grad_norm": 0.8527398705482483, + "learning_rate": 1.7028666666666668e-06, + "loss": 1.1965853118896483, + "step": 724800 + }, + { + "epoch": 96.65333333333334, + "grad_norm": 0.8580175042152405, + "learning_rate": 1.6962000000000002e-06, + "loss": 1.1956391143798828, + "step": 724900 + }, + { + "epoch": 96.66666666666667, + "grad_norm": 0.9003075957298279, + "learning_rate": 1.6895333333333333e-06, + "loss": 1.1976248931884765, + "step": 725000 + }, + { + "epoch": 96.68, + "grad_norm": 0.8510597348213196, + "learning_rate": 1.6828666666666666e-06, + "loss": 1.1964473724365234, + "step": 725100 + }, + { + "epoch": 96.69333333333333, + "grad_norm": 0.8973057866096497, + "learning_rate": 1.6762e-06, + "loss": 1.197496337890625, + "step": 725200 + }, + { + "epoch": 96.70666666666666, + "grad_norm": 0.8938978910446167, + "learning_rate": 1.6695333333333333e-06, + "loss": 1.195022964477539, + "step": 725300 + }, + { + "epoch": 96.72, + "grad_norm": 0.9063222408294678, + "learning_rate": 1.6628666666666668e-06, + "loss": 1.1933713531494141, + "step": 725400 + }, + { + "epoch": 96.73333333333333, + "grad_norm": 0.8786043524742126, + "learning_rate": 1.6562000000000001e-06, + "loss": 1.1964022827148437, + "step": 725500 + }, + { + "epoch": 96.74666666666667, + "grad_norm": 0.9674188494682312, + "learning_rate": 1.6495333333333335e-06, + "loss": 1.1983873748779297, + "step": 725600 + }, + { + "epoch": 96.76, + "grad_norm": 0.9302994608879089, + "learning_rate": 1.6428666666666668e-06, + "loss": 1.1975536346435547, + "step": 725700 + }, + { + "epoch": 96.77333333333333, + "grad_norm": 0.8915535807609558, + "learning_rate": 1.636266666666667e-06, + "loss": 1.1970543670654297, + "step": 725800 + }, + { + "epoch": 96.78666666666666, + "grad_norm": 0.91758793592453, + "learning_rate": 1.6296000000000002e-06, + "loss": 1.2024964141845702, + "step": 725900 + }, + { + "epoch": 96.8, + "grad_norm": 0.8457819223403931, + "learning_rate": 1.6229333333333331e-06, + "loss": 1.195786590576172, + "step": 726000 + }, + { + "epoch": 96.81333333333333, + "grad_norm": 0.9062672257423401, + "learning_rate": 1.6162666666666667e-06, + "loss": 1.1972097778320312, + "step": 726100 + }, + { + "epoch": 96.82666666666667, + "grad_norm": 0.9275849461555481, + "learning_rate": 1.6096e-06, + "loss": 1.2003240966796875, + "step": 726200 + }, + { + "epoch": 96.84, + "grad_norm": 0.9141822457313538, + "learning_rate": 1.6029333333333333e-06, + "loss": 1.1985065460205078, + "step": 726300 + }, + { + "epoch": 96.85333333333334, + "grad_norm": 0.8968507647514343, + "learning_rate": 1.5962666666666667e-06, + "loss": 1.1965088653564453, + "step": 726400 + }, + { + "epoch": 96.86666666666666, + "grad_norm": 0.913077175617218, + "learning_rate": 1.5896000000000002e-06, + "loss": 1.1945548248291016, + "step": 726500 + }, + { + "epoch": 96.88, + "grad_norm": 0.8856280446052551, + "learning_rate": 1.5829333333333335e-06, + "loss": 1.198264389038086, + "step": 726600 + }, + { + "epoch": 96.89333333333333, + "grad_norm": 0.9587183594703674, + "learning_rate": 1.5762666666666669e-06, + "loss": 1.198867950439453, + "step": 726700 + }, + { + "epoch": 96.90666666666667, + "grad_norm": 0.8962403535842896, + "learning_rate": 1.5696000000000002e-06, + "loss": 1.1941478729248047, + "step": 726800 + }, + { + "epoch": 96.92, + "grad_norm": 0.9148259162902832, + "learning_rate": 1.5629333333333333e-06, + "loss": 1.1963572692871094, + "step": 726900 + }, + { + "epoch": 96.93333333333334, + "grad_norm": 0.9416415691375732, + "learning_rate": 1.5562666666666668e-06, + "loss": 1.1955250549316405, + "step": 727000 + }, + { + "epoch": 96.94666666666667, + "grad_norm": 0.835249662399292, + "learning_rate": 1.5496e-06, + "loss": 1.1965911102294922, + "step": 727100 + }, + { + "epoch": 96.96, + "grad_norm": 0.8827676177024841, + "learning_rate": 1.5429333333333333e-06, + "loss": 1.1973089599609374, + "step": 727200 + }, + { + "epoch": 96.97333333333333, + "grad_norm": 0.8775216937065125, + "learning_rate": 1.5362666666666668e-06, + "loss": 1.1944822692871093, + "step": 727300 + }, + { + "epoch": 96.98666666666666, + "grad_norm": 0.8615829944610596, + "learning_rate": 1.5296000000000001e-06, + "loss": 1.1994013214111328, + "step": 727400 + }, + { + "epoch": 97.0, + "grad_norm": 0.9200208783149719, + "learning_rate": 1.5229333333333333e-06, + "loss": 1.1997895050048828, + "step": 727500 + }, + { + "epoch": 97.01333333333334, + "grad_norm": 0.8486922383308411, + "learning_rate": 1.5162666666666668e-06, + "loss": 1.1949724578857421, + "step": 727600 + }, + { + "epoch": 97.02666666666667, + "grad_norm": 0.8756220936775208, + "learning_rate": 1.5096000000000001e-06, + "loss": 1.1930170440673828, + "step": 727700 + }, + { + "epoch": 97.04, + "grad_norm": Infinity, + "learning_rate": 1.5029333333333335e-06, + "loss": 1.1907662200927733, + "step": 727800 + }, + { + "epoch": 97.05333333333333, + "grad_norm": 0.9102802276611328, + "learning_rate": 1.4963333333333334e-06, + "loss": 1.1966674041748047, + "step": 727900 + }, + { + "epoch": 97.06666666666666, + "grad_norm": 0.8804049491882324, + "learning_rate": 1.489666666666667e-06, + "loss": 1.1915321350097656, + "step": 728000 + }, + { + "epoch": 97.08, + "grad_norm": 0.8462570309638977, + "learning_rate": 1.483e-06, + "loss": 1.188415756225586, + "step": 728100 + }, + { + "epoch": 97.09333333333333, + "grad_norm": 0.9019154906272888, + "learning_rate": 1.4763333333333334e-06, + "loss": 1.1914682006835937, + "step": 728200 + }, + { + "epoch": 97.10666666666667, + "grad_norm": 0.9102103114128113, + "learning_rate": 1.4696666666666667e-06, + "loss": 1.1929423522949218, + "step": 728300 + }, + { + "epoch": 97.12, + "grad_norm": 0.9278746843338013, + "learning_rate": 1.4630000000000002e-06, + "loss": 1.190726318359375, + "step": 728400 + }, + { + "epoch": 97.13333333333334, + "grad_norm": 0.9312158226966858, + "learning_rate": 1.4563333333333333e-06, + "loss": 1.1920890045166015, + "step": 728500 + }, + { + "epoch": 97.14666666666666, + "grad_norm": 0.8610623478889465, + "learning_rate": 1.4496666666666667e-06, + "loss": 1.1913136291503905, + "step": 728600 + }, + { + "epoch": 97.16, + "grad_norm": 0.8517552614212036, + "learning_rate": 1.443e-06, + "loss": 1.1964224243164063, + "step": 728700 + }, + { + "epoch": 97.17333333333333, + "grad_norm": 0.9079805612564087, + "learning_rate": 1.4363333333333335e-06, + "loss": 1.1886049652099608, + "step": 728800 + }, + { + "epoch": 97.18666666666667, + "grad_norm": 0.8894618153572083, + "learning_rate": 1.4296666666666666e-06, + "loss": 1.1893565368652343, + "step": 728900 + }, + { + "epoch": 97.2, + "grad_norm": 0.927837610244751, + "learning_rate": 1.423e-06, + "loss": 1.1915690612792968, + "step": 729000 + }, + { + "epoch": 97.21333333333334, + "grad_norm": 0.9195118546485901, + "learning_rate": 1.4163333333333333e-06, + "loss": 1.192691650390625, + "step": 729100 + }, + { + "epoch": 97.22666666666667, + "grad_norm": 0.8661218285560608, + "learning_rate": 1.4096666666666668e-06, + "loss": 1.1943994903564452, + "step": 729200 + }, + { + "epoch": 97.24, + "grad_norm": 0.9145841002464294, + "learning_rate": 1.4030000000000002e-06, + "loss": 1.197445068359375, + "step": 729300 + }, + { + "epoch": 97.25333333333333, + "grad_norm": 0.8523109555244446, + "learning_rate": 1.3963333333333333e-06, + "loss": 1.194771499633789, + "step": 729400 + }, + { + "epoch": 97.26666666666667, + "grad_norm": 0.8701912760734558, + "learning_rate": 1.3896666666666668e-06, + "loss": 1.1876846313476563, + "step": 729500 + }, + { + "epoch": 97.28, + "grad_norm": 0.8822584748268127, + "learning_rate": 1.3830000000000001e-06, + "loss": 1.195957565307617, + "step": 729600 + }, + { + "epoch": 97.29333333333334, + "grad_norm": 0.8969473242759705, + "learning_rate": 1.3763333333333335e-06, + "loss": 1.1934420013427733, + "step": 729700 + }, + { + "epoch": 97.30666666666667, + "grad_norm": 0.9088907241821289, + "learning_rate": 1.3696666666666666e-06, + "loss": 1.1958892822265625, + "step": 729800 + }, + { + "epoch": 97.32, + "grad_norm": 0.7961787581443787, + "learning_rate": 1.3630666666666667e-06, + "loss": 1.189772491455078, + "step": 729900 + }, + { + "epoch": 97.33333333333333, + "grad_norm": 0.9014933705329895, + "learning_rate": 1.3564e-06, + "loss": 1.1911412811279296, + "step": 730000 + }, + { + "epoch": 97.34666666666666, + "grad_norm": 0.9077130556106567, + "learning_rate": 1.3497333333333334e-06, + "loss": 1.1925405883789062, + "step": 730100 + }, + { + "epoch": 97.36, + "grad_norm": 0.8387811779975891, + "learning_rate": 1.3430666666666667e-06, + "loss": 1.191651382446289, + "step": 730200 + }, + { + "epoch": 97.37333333333333, + "grad_norm": 0.8837115168571472, + "learning_rate": 1.3364e-06, + "loss": 1.1978406524658203, + "step": 730300 + }, + { + "epoch": 97.38666666666667, + "grad_norm": 0.891261100769043, + "learning_rate": 1.3297333333333334e-06, + "loss": 1.1935235595703124, + "step": 730400 + }, + { + "epoch": 97.4, + "grad_norm": 0.9634777903556824, + "learning_rate": 1.3230666666666667e-06, + "loss": 1.1935658264160156, + "step": 730500 + }, + { + "epoch": 97.41333333333333, + "grad_norm": 0.9264794588088989, + "learning_rate": 1.3164e-06, + "loss": 1.1933699035644532, + "step": 730600 + }, + { + "epoch": 97.42666666666666, + "grad_norm": 0.9273287653923035, + "learning_rate": 1.3097333333333335e-06, + "loss": 1.1926664733886718, + "step": 730700 + }, + { + "epoch": 97.44, + "grad_norm": 0.9044145941734314, + "learning_rate": 1.3030666666666667e-06, + "loss": 1.194606475830078, + "step": 730800 + }, + { + "epoch": 97.45333333333333, + "grad_norm": 0.916735053062439, + "learning_rate": 1.2964e-06, + "loss": 1.192816925048828, + "step": 730900 + }, + { + "epoch": 97.46666666666667, + "grad_norm": 0.9041197896003723, + "learning_rate": 1.2897333333333333e-06, + "loss": 1.1932903289794923, + "step": 731000 + }, + { + "epoch": 97.48, + "grad_norm": 0.8889577984809875, + "learning_rate": 1.2830666666666669e-06, + "loss": 1.1962411499023438, + "step": 731100 + }, + { + "epoch": 97.49333333333334, + "grad_norm": 0.910078763961792, + "learning_rate": 1.2764e-06, + "loss": 1.1956531524658203, + "step": 731200 + }, + { + "epoch": 97.50666666666666, + "grad_norm": 0.8650588393211365, + "learning_rate": 1.2697333333333333e-06, + "loss": 1.1919945526123046, + "step": 731300 + }, + { + "epoch": 97.52, + "grad_norm": 0.9000649452209473, + "learning_rate": 1.2630666666666668e-06, + "loss": 1.1926378631591796, + "step": 731400 + }, + { + "epoch": 97.53333333333333, + "grad_norm": 0.8907895088195801, + "learning_rate": 1.2564000000000002e-06, + "loss": 1.1921055603027344, + "step": 731500 + }, + { + "epoch": 97.54666666666667, + "grad_norm": 0.8809535503387451, + "learning_rate": 1.2497333333333333e-06, + "loss": 1.1962607574462891, + "step": 731600 + }, + { + "epoch": 97.56, + "grad_norm": 0.8726817965507507, + "learning_rate": 1.2430666666666666e-06, + "loss": 1.1959927368164063, + "step": 731700 + }, + { + "epoch": 97.57333333333334, + "grad_norm": 0.9167771935462952, + "learning_rate": 1.2364000000000001e-06, + "loss": 1.1933238220214843, + "step": 731800 + }, + { + "epoch": 97.58666666666667, + "grad_norm": 0.8944850564002991, + "learning_rate": 1.2298e-06, + "loss": 1.198369140625, + "step": 731900 + }, + { + "epoch": 97.6, + "grad_norm": 0.9288177490234375, + "learning_rate": 1.2231333333333334e-06, + "loss": 1.1962329864501953, + "step": 732000 + }, + { + "epoch": 97.61333333333333, + "grad_norm": 0.8759905099868774, + "learning_rate": 1.2164666666666667e-06, + "loss": 1.1970404815673827, + "step": 732100 + }, + { + "epoch": 97.62666666666667, + "grad_norm": 0.9289444088935852, + "learning_rate": 1.2098e-06, + "loss": 1.1988601684570312, + "step": 732200 + }, + { + "epoch": 97.64, + "grad_norm": 0.888252317905426, + "learning_rate": 1.2031333333333334e-06, + "loss": 1.1959870910644532, + "step": 732300 + }, + { + "epoch": 97.65333333333334, + "grad_norm": 0.9400676488876343, + "learning_rate": 1.1964666666666667e-06, + "loss": 1.1936607360839844, + "step": 732400 + }, + { + "epoch": 97.66666666666667, + "grad_norm": 0.7995263934135437, + "learning_rate": 1.1898e-06, + "loss": 1.1914346313476563, + "step": 732500 + }, + { + "epoch": 97.68, + "grad_norm": 0.911656379699707, + "learning_rate": 1.1831333333333334e-06, + "loss": 1.1957060241699218, + "step": 732600 + }, + { + "epoch": 97.69333333333333, + "grad_norm": 0.9077141880989075, + "learning_rate": 1.1764666666666667e-06, + "loss": 1.1969277191162109, + "step": 732700 + }, + { + "epoch": 97.70666666666666, + "grad_norm": 0.922042191028595, + "learning_rate": 1.1698e-06, + "loss": 1.1913483428955078, + "step": 732800 + }, + { + "epoch": 97.72, + "grad_norm": 0.8728546500205994, + "learning_rate": 1.1631333333333333e-06, + "loss": 1.192550277709961, + "step": 732900 + }, + { + "epoch": 97.73333333333333, + "grad_norm": 0.9435664415359497, + "learning_rate": 1.1564666666666667e-06, + "loss": 1.1956972503662109, + "step": 733000 + }, + { + "epoch": 97.74666666666667, + "grad_norm": 0.9456507563591003, + "learning_rate": 1.1498e-06, + "loss": 1.198812255859375, + "step": 733100 + }, + { + "epoch": 97.76, + "grad_norm": 0.9041507244110107, + "learning_rate": 1.1431333333333333e-06, + "loss": 1.1941202545166016, + "step": 733200 + }, + { + "epoch": 97.77333333333333, + "grad_norm": 0.9364042282104492, + "learning_rate": 1.1364666666666669e-06, + "loss": 1.1956196594238282, + "step": 733300 + }, + { + "epoch": 97.78666666666666, + "grad_norm": 0.901881754398346, + "learning_rate": 1.1298000000000002e-06, + "loss": 1.1942565155029297, + "step": 733400 + }, + { + "epoch": 97.8, + "grad_norm": 0.9191442728042603, + "learning_rate": 1.1231333333333333e-06, + "loss": 1.1965391540527344, + "step": 733500 + }, + { + "epoch": 97.81333333333333, + "grad_norm": 0.9554629921913147, + "learning_rate": 1.1164666666666666e-06, + "loss": 1.1935279846191407, + "step": 733600 + }, + { + "epoch": 97.82666666666667, + "grad_norm": 0.903621256351471, + "learning_rate": 1.1098000000000002e-06, + "loss": 1.1937690734863282, + "step": 733700 + }, + { + "epoch": 97.84, + "grad_norm": 0.9251970052719116, + "learning_rate": 1.1031333333333335e-06, + "loss": 1.1984178161621093, + "step": 733800 + }, + { + "epoch": 97.85333333333334, + "grad_norm": 0.9287400245666504, + "learning_rate": 1.0965333333333334e-06, + "loss": 1.196386184692383, + "step": 733900 + }, + { + "epoch": 97.86666666666666, + "grad_norm": 0.9118936061859131, + "learning_rate": 1.0898666666666667e-06, + "loss": 1.1918663787841797, + "step": 734000 + }, + { + "epoch": 97.88, + "grad_norm": 0.9294499754905701, + "learning_rate": 1.0832e-06, + "loss": 1.1964964294433593, + "step": 734100 + }, + { + "epoch": 97.89333333333333, + "grad_norm": 0.8662843704223633, + "learning_rate": 1.0765333333333334e-06, + "loss": 1.1969724273681641, + "step": 734200 + }, + { + "epoch": 97.90666666666667, + "grad_norm": 0.8762206435203552, + "learning_rate": 1.0698666666666667e-06, + "loss": 1.1970738983154297, + "step": 734300 + }, + { + "epoch": 97.92, + "grad_norm": 0.9251389503479004, + "learning_rate": 1.0632e-06, + "loss": 1.1950054168701172, + "step": 734400 + }, + { + "epoch": 97.93333333333334, + "grad_norm": 0.8627253174781799, + "learning_rate": 1.0565333333333334e-06, + "loss": 1.194439926147461, + "step": 734500 + }, + { + "epoch": 97.94666666666667, + "grad_norm": 0.9262219071388245, + "learning_rate": 1.0498666666666667e-06, + "loss": 1.1964743804931641, + "step": 734600 + }, + { + "epoch": 97.96, + "grad_norm": 0.8800917863845825, + "learning_rate": 1.0432e-06, + "loss": 1.1948735046386718, + "step": 734700 + }, + { + "epoch": 97.97333333333333, + "grad_norm": 0.9554460644721985, + "learning_rate": 1.0365333333333334e-06, + "loss": 1.1973654174804687, + "step": 734800 + }, + { + "epoch": 97.98666666666666, + "grad_norm": 0.8912851214408875, + "learning_rate": 1.0298666666666667e-06, + "loss": 1.1976622009277345, + "step": 734900 + }, + { + "epoch": 98.0, + "grad_norm": 0.9327476024627686, + "learning_rate": 1.0232e-06, + "loss": 1.1984359741210937, + "step": 735000 + }, + { + "epoch": 98.01333333333334, + "grad_norm": 0.898631751537323, + "learning_rate": 1.0165333333333333e-06, + "loss": 1.191797409057617, + "step": 735100 + }, + { + "epoch": 98.02666666666667, + "grad_norm": 0.8860185146331787, + "learning_rate": 1.0098666666666669e-06, + "loss": 1.19053955078125, + "step": 735200 + }, + { + "epoch": 98.04, + "grad_norm": 0.8919152617454529, + "learning_rate": 1.0032e-06, + "loss": 1.1930453491210937, + "step": 735300 + }, + { + "epoch": 98.05333333333333, + "grad_norm": 0.9268627762794495, + "learning_rate": 9.965333333333333e-07, + "loss": 1.1904096984863282, + "step": 735400 + }, + { + "epoch": 98.06666666666666, + "grad_norm": 0.9463122487068176, + "learning_rate": 9.898666666666666e-07, + "loss": 1.1924416351318359, + "step": 735500 + }, + { + "epoch": 98.08, + "grad_norm": 0.9249300956726074, + "learning_rate": 9.832000000000002e-07, + "loss": 1.190969467163086, + "step": 735600 + }, + { + "epoch": 98.09333333333333, + "grad_norm": 0.9573506116867065, + "learning_rate": 9.765333333333335e-07, + "loss": 1.1920275115966796, + "step": 735700 + }, + { + "epoch": 98.10666666666667, + "grad_norm": 0.8895424604415894, + "learning_rate": 9.698666666666666e-07, + "loss": 1.1897706604003906, + "step": 735800 + }, + { + "epoch": 98.12, + "grad_norm": 0.8485841155052185, + "learning_rate": 9.632666666666668e-07, + "loss": 1.1928855895996093, + "step": 735900 + }, + { + "epoch": 98.13333333333334, + "grad_norm": 0.9169514775276184, + "learning_rate": 9.566e-07, + "loss": 1.1923430633544922, + "step": 736000 + }, + { + "epoch": 98.14666666666666, + "grad_norm": 0.9484817981719971, + "learning_rate": 9.499333333333334e-07, + "loss": 1.1894152069091797, + "step": 736100 + }, + { + "epoch": 98.16, + "grad_norm": 0.8725702166557312, + "learning_rate": 9.432666666666667e-07, + "loss": 1.1909805297851563, + "step": 736200 + }, + { + "epoch": 98.17333333333333, + "grad_norm": 0.9127253293991089, + "learning_rate": 9.366e-07, + "loss": 1.193762969970703, + "step": 736300 + }, + { + "epoch": 98.18666666666667, + "grad_norm": 0.8876358270645142, + "learning_rate": 9.299333333333334e-07, + "loss": 1.1921793365478515, + "step": 736400 + }, + { + "epoch": 98.2, + "grad_norm": 0.9053890109062195, + "learning_rate": 9.232666666666667e-07, + "loss": 1.1964334106445313, + "step": 736500 + }, + { + "epoch": 98.21333333333334, + "grad_norm": 0.9463318586349487, + "learning_rate": 9.166000000000001e-07, + "loss": 1.188143539428711, + "step": 736600 + }, + { + "epoch": 98.22666666666667, + "grad_norm": 0.8585167527198792, + "learning_rate": 9.099333333333333e-07, + "loss": 1.1954288482666016, + "step": 736700 + }, + { + "epoch": 98.24, + "grad_norm": 0.9063857197761536, + "learning_rate": 9.032666666666667e-07, + "loss": 1.1938237762451172, + "step": 736800 + }, + { + "epoch": 98.25333333333333, + "grad_norm": 0.848952054977417, + "learning_rate": 8.966e-07, + "loss": 1.1889173889160156, + "step": 736900 + }, + { + "epoch": 98.26666666666667, + "grad_norm": 0.9032663106918335, + "learning_rate": 8.899333333333335e-07, + "loss": 1.1894258880615234, + "step": 737000 + }, + { + "epoch": 98.28, + "grad_norm": 0.9298050403594971, + "learning_rate": 8.832666666666668e-07, + "loss": 1.1893203735351563, + "step": 737100 + }, + { + "epoch": 98.29333333333334, + "grad_norm": 0.8868449926376343, + "learning_rate": 8.766e-07, + "loss": 1.1898612976074219, + "step": 737200 + }, + { + "epoch": 98.30666666666667, + "grad_norm": 0.8657017350196838, + "learning_rate": 8.699333333333333e-07, + "loss": 1.1897797393798828, + "step": 737300 + }, + { + "epoch": 98.32, + "grad_norm": 0.8774369359016418, + "learning_rate": 8.632666666666668e-07, + "loss": 1.1933421325683593, + "step": 737400 + }, + { + "epoch": 98.33333333333333, + "grad_norm": 0.9083582758903503, + "learning_rate": 8.566000000000001e-07, + "loss": 1.1912253570556641, + "step": 737500 + }, + { + "epoch": 98.34666666666666, + "grad_norm": 0.8991101980209351, + "learning_rate": 8.499333333333333e-07, + "loss": 1.193739547729492, + "step": 737600 + }, + { + "epoch": 98.36, + "grad_norm": 0.9866260886192322, + "learning_rate": 8.432666666666666e-07, + "loss": 1.1906326293945313, + "step": 737700 + }, + { + "epoch": 98.37333333333333, + "grad_norm": 0.9080073833465576, + "learning_rate": 8.366000000000001e-07, + "loss": 1.192478561401367, + "step": 737800 + }, + { + "epoch": 98.38666666666667, + "grad_norm": 0.8622914552688599, + "learning_rate": 8.300000000000001e-07, + "loss": 1.1917598724365235, + "step": 737900 + }, + { + "epoch": 98.4, + "grad_norm": 0.9066656231880188, + "learning_rate": 8.233333333333334e-07, + "loss": 1.1930951690673828, + "step": 738000 + }, + { + "epoch": 98.41333333333333, + "grad_norm": 0.8253511190414429, + "learning_rate": 8.166666666666666e-07, + "loss": 1.1881201934814454, + "step": 738100 + }, + { + "epoch": 98.42666666666666, + "grad_norm": 0.8869616389274597, + "learning_rate": 8.1e-07, + "loss": 1.1893899536132813, + "step": 738200 + }, + { + "epoch": 98.44, + "grad_norm": 0.8886020183563232, + "learning_rate": 8.033333333333334e-07, + "loss": 1.1935739135742187, + "step": 738300 + }, + { + "epoch": 98.45333333333333, + "grad_norm": 0.9000334143638611, + "learning_rate": 7.966666666666667e-07, + "loss": 1.189201889038086, + "step": 738400 + }, + { + "epoch": 98.46666666666667, + "grad_norm": 0.8531255125999451, + "learning_rate": 7.900000000000002e-07, + "loss": 1.191848373413086, + "step": 738500 + }, + { + "epoch": 98.48, + "grad_norm": 0.9446560144424438, + "learning_rate": 7.833333333333333e-07, + "loss": 1.1940558624267579, + "step": 738600 + }, + { + "epoch": 98.49333333333334, + "grad_norm": 0.8816220760345459, + "learning_rate": 7.766666666666667e-07, + "loss": 1.1970796966552735, + "step": 738700 + }, + { + "epoch": 98.50666666666666, + "grad_norm": 0.8878071308135986, + "learning_rate": 7.7e-07, + "loss": 1.191910171508789, + "step": 738800 + }, + { + "epoch": 98.52, + "grad_norm": 0.9086691737174988, + "learning_rate": 7.633333333333334e-07, + "loss": 1.1919632720947266, + "step": 738900 + }, + { + "epoch": 98.53333333333333, + "grad_norm": 0.9125364422798157, + "learning_rate": 7.566666666666667e-07, + "loss": 1.1903729248046875, + "step": 739000 + }, + { + "epoch": 98.54666666666667, + "grad_norm": 0.9102436900138855, + "learning_rate": 7.5e-07, + "loss": 1.1952772521972657, + "step": 739100 + }, + { + "epoch": 98.56, + "grad_norm": 0.8782820105552673, + "learning_rate": 7.433333333333333e-07, + "loss": 1.1924925994873048, + "step": 739200 + }, + { + "epoch": 98.57333333333334, + "grad_norm": 0.9105757474899292, + "learning_rate": 7.366666666666667e-07, + "loss": 1.1958279418945312, + "step": 739300 + }, + { + "epoch": 98.58666666666667, + "grad_norm": 0.8756064176559448, + "learning_rate": 7.3e-07, + "loss": 1.1938359069824218, + "step": 739400 + }, + { + "epoch": 98.6, + "grad_norm": 0.8714690208435059, + "learning_rate": 7.233333333333333e-07, + "loss": 1.1933795166015626, + "step": 739500 + }, + { + "epoch": 98.61333333333333, + "grad_norm": 0.846801221370697, + "learning_rate": 7.166666666666667e-07, + "loss": 1.1944500732421874, + "step": 739600 + }, + { + "epoch": 98.62666666666667, + "grad_norm": 0.8956632018089294, + "learning_rate": 7.100000000000001e-07, + "loss": 1.1958086395263672, + "step": 739700 + }, + { + "epoch": 98.64, + "grad_norm": 0.8939581513404846, + "learning_rate": 7.033333333333334e-07, + "loss": 1.1935520935058594, + "step": 739800 + }, + { + "epoch": 98.65333333333334, + "grad_norm": 0.8881719708442688, + "learning_rate": 6.967333333333333e-07, + "loss": 1.1934709930419922, + "step": 739900 + }, + { + "epoch": 98.66666666666667, + "grad_norm": 0.9042186141014099, + "learning_rate": 6.900666666666668e-07, + "loss": 1.1922380828857422, + "step": 740000 + }, + { + "epoch": 98.68, + "grad_norm": 0.8477785587310791, + "learning_rate": 6.834e-07, + "loss": 1.1890042877197267, + "step": 740100 + }, + { + "epoch": 98.69333333333333, + "grad_norm": 0.8813819289207458, + "learning_rate": 6.767333333333334e-07, + "loss": 1.1922322082519532, + "step": 740200 + }, + { + "epoch": 98.70666666666666, + "grad_norm": 0.9520646333694458, + "learning_rate": 6.700666666666666e-07, + "loss": 1.1949353790283204, + "step": 740300 + }, + { + "epoch": 98.72, + "grad_norm": 0.8981533050537109, + "learning_rate": 6.634000000000001e-07, + "loss": 1.1972361755371095, + "step": 740400 + }, + { + "epoch": 98.73333333333333, + "grad_norm": 0.8700048327445984, + "learning_rate": 6.567333333333333e-07, + "loss": 1.1961135864257812, + "step": 740500 + }, + { + "epoch": 98.74666666666667, + "grad_norm": 0.9323988556861877, + "learning_rate": 6.500666666666667e-07, + "loss": 1.1912552642822265, + "step": 740600 + }, + { + "epoch": 98.76, + "grad_norm": 0.8961540460586548, + "learning_rate": 6.434e-07, + "loss": 1.1949165344238282, + "step": 740700 + }, + { + "epoch": 98.77333333333333, + "grad_norm": 0.8768694996833801, + "learning_rate": 6.367333333333334e-07, + "loss": 1.193530044555664, + "step": 740800 + }, + { + "epoch": 98.78666666666666, + "grad_norm": 0.9372314810752869, + "learning_rate": 6.300666666666667e-07, + "loss": 1.1909781646728517, + "step": 740900 + }, + { + "epoch": 98.8, + "grad_norm": 0.9452794194221497, + "learning_rate": 6.234e-07, + "loss": 1.1920659637451172, + "step": 741000 + }, + { + "epoch": 98.81333333333333, + "grad_norm": 0.8834349513053894, + "learning_rate": 6.167333333333334e-07, + "loss": 1.194448471069336, + "step": 741100 + }, + { + "epoch": 98.82666666666667, + "grad_norm": 0.8450713157653809, + "learning_rate": 6.100666666666667e-07, + "loss": 1.1934151458740234, + "step": 741200 + }, + { + "epoch": 98.84, + "grad_norm": 0.897294819355011, + "learning_rate": 6.034e-07, + "loss": 1.1937016296386718, + "step": 741300 + }, + { + "epoch": 98.85333333333334, + "grad_norm": 0.9136027693748474, + "learning_rate": 5.967333333333333e-07, + "loss": 1.194300994873047, + "step": 741400 + }, + { + "epoch": 98.86666666666666, + "grad_norm": 0.8889844417572021, + "learning_rate": 5.900666666666667e-07, + "loss": 1.1939845275878906, + "step": 741500 + }, + { + "epoch": 98.88, + "grad_norm": 0.8959463238716125, + "learning_rate": 5.834e-07, + "loss": 1.1932821655273438, + "step": 741600 + }, + { + "epoch": 98.89333333333333, + "grad_norm": 0.9319109320640564, + "learning_rate": 5.767333333333334e-07, + "loss": 1.1942572784423828, + "step": 741700 + }, + { + "epoch": 98.90666666666667, + "grad_norm": 0.948413074016571, + "learning_rate": 5.700666666666666e-07, + "loss": 1.1931224822998048, + "step": 741800 + }, + { + "epoch": 98.92, + "grad_norm": 0.943126380443573, + "learning_rate": 5.634666666666667e-07, + "loss": 1.1902999877929688, + "step": 741900 + }, + { + "epoch": 98.93333333333334, + "grad_norm": 0.9261944890022278, + "learning_rate": 5.568e-07, + "loss": 1.1924332427978515, + "step": 742000 + }, + { + "epoch": 98.94666666666667, + "grad_norm": 0.8977665901184082, + "learning_rate": 5.501333333333333e-07, + "loss": 1.1910804748535155, + "step": 742100 + }, + { + "epoch": 98.96, + "grad_norm": 0.9129285216331482, + "learning_rate": 5.434666666666667e-07, + "loss": 1.1923501586914063, + "step": 742200 + }, + { + "epoch": 98.97333333333333, + "grad_norm": 0.9128681421279907, + "learning_rate": 5.368000000000001e-07, + "loss": 1.1889964294433595, + "step": 742300 + }, + { + "epoch": 98.98666666666666, + "grad_norm": 0.9412058591842651, + "learning_rate": 5.301333333333333e-07, + "loss": 1.192625732421875, + "step": 742400 + }, + { + "epoch": 99.0, + "grad_norm": 0.8482484221458435, + "learning_rate": 5.234666666666667e-07, + "loss": 1.1931838989257812, + "step": 742500 + }, + { + "epoch": 99.01333333333334, + "grad_norm": 0.9009374976158142, + "learning_rate": 5.168e-07, + "loss": 1.1919266510009765, + "step": 742600 + }, + { + "epoch": 99.02666666666667, + "grad_norm": 0.9100991487503052, + "learning_rate": 5.101333333333334e-07, + "loss": 1.1920348358154298, + "step": 742700 + }, + { + "epoch": 99.04, + "grad_norm": 0.896523118019104, + "learning_rate": 5.034666666666666e-07, + "loss": 1.1886348724365234, + "step": 742800 + }, + { + "epoch": 99.05333333333333, + "grad_norm": 0.8603360652923584, + "learning_rate": 4.968000000000001e-07, + "loss": 1.1856871032714844, + "step": 742900 + }, + { + "epoch": 99.06666666666666, + "grad_norm": 0.9280701279640198, + "learning_rate": 4.901333333333334e-07, + "loss": 1.188511962890625, + "step": 743000 + }, + { + "epoch": 99.08, + "grad_norm": 0.9534225463867188, + "learning_rate": 4.834666666666667e-07, + "loss": 1.1933180236816405, + "step": 743100 + }, + { + "epoch": 99.09333333333333, + "grad_norm": 0.8999395370483398, + "learning_rate": 4.768e-07, + "loss": 1.189303436279297, + "step": 743200 + }, + { + "epoch": 99.10666666666667, + "grad_norm": 0.8953112363815308, + "learning_rate": 4.7013333333333336e-07, + "loss": 1.18920166015625, + "step": 743300 + }, + { + "epoch": 99.12, + "grad_norm": 0.8740084767341614, + "learning_rate": 4.6346666666666663e-07, + "loss": 1.1907463073730469, + "step": 743400 + }, + { + "epoch": 99.13333333333334, + "grad_norm": 0.8928273320198059, + "learning_rate": 4.568e-07, + "loss": 1.1911299133300781, + "step": 743500 + }, + { + "epoch": 99.14666666666666, + "grad_norm": 0.8718655705451965, + "learning_rate": 4.501333333333334e-07, + "loss": 1.1908772277832032, + "step": 743600 + }, + { + "epoch": 99.16, + "grad_norm": 0.9151206612586975, + "learning_rate": 4.4346666666666667e-07, + "loss": 1.1899483489990235, + "step": 743700 + }, + { + "epoch": 99.17333333333333, + "grad_norm": 0.891651451587677, + "learning_rate": 4.3680000000000005e-07, + "loss": 1.19437744140625, + "step": 743800 + }, + { + "epoch": 99.18666666666667, + "grad_norm": 0.8451858758926392, + "learning_rate": 4.3020000000000003e-07, + "loss": 1.1926042175292968, + "step": 743900 + }, + { + "epoch": 99.2, + "grad_norm": 0.8772236108779907, + "learning_rate": 4.2353333333333335e-07, + "loss": 1.1880721282958984, + "step": 744000 + }, + { + "epoch": 99.21333333333334, + "grad_norm": 0.857770562171936, + "learning_rate": 4.1686666666666673e-07, + "loss": 1.1957527923583984, + "step": 744100 + }, + { + "epoch": 99.22666666666667, + "grad_norm": 0.9516028165817261, + "learning_rate": 4.102e-07, + "loss": 1.1945584869384767, + "step": 744200 + }, + { + "epoch": 99.24, + "grad_norm": 0.843956708908081, + "learning_rate": 4.035333333333334e-07, + "loss": 1.1935086059570312, + "step": 744300 + }, + { + "epoch": 99.25333333333333, + "grad_norm": 0.8973932862281799, + "learning_rate": 3.9686666666666666e-07, + "loss": 1.1924853515625, + "step": 744400 + }, + { + "epoch": 99.26666666666667, + "grad_norm": 0.8814348578453064, + "learning_rate": 3.9020000000000004e-07, + "loss": 1.1938815307617188, + "step": 744500 + }, + { + "epoch": 99.28, + "grad_norm": 0.9305223226547241, + "learning_rate": 3.8353333333333337e-07, + "loss": 1.1920265197753905, + "step": 744600 + }, + { + "epoch": 99.29333333333334, + "grad_norm": 0.8577662706375122, + "learning_rate": 3.768666666666667e-07, + "loss": 1.1892983245849609, + "step": 744700 + }, + { + "epoch": 99.30666666666667, + "grad_norm": 0.9148098230361938, + "learning_rate": 3.702e-07, + "loss": 1.193815689086914, + "step": 744800 + }, + { + "epoch": 99.32, + "grad_norm": 0.8657062649726868, + "learning_rate": 3.6353333333333335e-07, + "loss": 1.1912665557861328, + "step": 744900 + }, + { + "epoch": 99.33333333333333, + "grad_norm": 0.9293052554130554, + "learning_rate": 3.5686666666666667e-07, + "loss": 1.19271728515625, + "step": 745000 + }, + { + "epoch": 99.34666666666666, + "grad_norm": 0.9440531134605408, + "learning_rate": 3.502e-07, + "loss": 1.1907530975341798, + "step": 745100 + }, + { + "epoch": 99.36, + "grad_norm": 0.8987706303596497, + "learning_rate": 3.435333333333333e-07, + "loss": 1.1910220336914064, + "step": 745200 + }, + { + "epoch": 99.37333333333333, + "grad_norm": 0.9358866214752197, + "learning_rate": 3.3686666666666665e-07, + "loss": 1.194500732421875, + "step": 745300 + }, + { + "epoch": 99.38666666666667, + "grad_norm": 0.8812012672424316, + "learning_rate": 3.302e-07, + "loss": 1.1937469482421874, + "step": 745400 + }, + { + "epoch": 99.4, + "grad_norm": 0.9004390239715576, + "learning_rate": 3.235333333333333e-07, + "loss": 1.1931354522705078, + "step": 745500 + }, + { + "epoch": 99.41333333333333, + "grad_norm": 0.870255708694458, + "learning_rate": 3.168666666666667e-07, + "loss": 1.1928106689453124, + "step": 745600 + }, + { + "epoch": 99.42666666666666, + "grad_norm": 0.8272011280059814, + "learning_rate": 3.102e-07, + "loss": 1.1933961486816407, + "step": 745700 + }, + { + "epoch": 99.44, + "grad_norm": 0.904954731464386, + "learning_rate": 3.0353333333333334e-07, + "loss": 1.1930033874511718, + "step": 745800 + }, + { + "epoch": 99.45333333333333, + "grad_norm": 0.8282216191291809, + "learning_rate": 2.9693333333333337e-07, + "loss": 1.1900058746337892, + "step": 745900 + }, + { + "epoch": 99.46666666666667, + "grad_norm": 0.9468961954116821, + "learning_rate": 2.902666666666667e-07, + "loss": 1.1919841003417968, + "step": 746000 + }, + { + "epoch": 99.48, + "grad_norm": 0.9418879151344299, + "learning_rate": 2.836e-07, + "loss": 1.1886141204833984, + "step": 746100 + }, + { + "epoch": 99.49333333333334, + "grad_norm": 0.8836652636528015, + "learning_rate": 2.7693333333333335e-07, + "loss": 1.1884160614013672, + "step": 746200 + }, + { + "epoch": 99.50666666666666, + "grad_norm": 0.9527371525764465, + "learning_rate": 2.702666666666667e-07, + "loss": 1.1915505981445313, + "step": 746300 + }, + { + "epoch": 99.52, + "grad_norm": 0.8506571054458618, + "learning_rate": 2.636e-07, + "loss": 1.1904411315917969, + "step": 746400 + }, + { + "epoch": 99.53333333333333, + "grad_norm": 0.8335494995117188, + "learning_rate": 2.5693333333333333e-07, + "loss": 1.1901004028320312, + "step": 746500 + }, + { + "epoch": 99.54666666666667, + "grad_norm": 0.9234083890914917, + "learning_rate": 2.5026666666666666e-07, + "loss": 1.1895111846923827, + "step": 746600 + }, + { + "epoch": 99.56, + "grad_norm": 0.9194679260253906, + "learning_rate": 2.436e-07, + "loss": 1.1904415130615233, + "step": 746700 + }, + { + "epoch": 99.57333333333334, + "grad_norm": 0.9224709868431091, + "learning_rate": 2.3693333333333336e-07, + "loss": 1.1882210540771485, + "step": 746800 + }, + { + "epoch": 99.58666666666667, + "grad_norm": 0.9308574795722961, + "learning_rate": 2.302666666666667e-07, + "loss": 1.1944318389892579, + "step": 746900 + }, + { + "epoch": 99.6, + "grad_norm": 0.8662922382354736, + "learning_rate": 2.2360000000000002e-07, + "loss": 1.1902082824707032, + "step": 747000 + }, + { + "epoch": 99.61333333333333, + "grad_norm": 0.9251387715339661, + "learning_rate": 2.1693333333333334e-07, + "loss": 1.1896009826660157, + "step": 747100 + }, + { + "epoch": 99.62666666666667, + "grad_norm": 0.8867355585098267, + "learning_rate": 2.102666666666667e-07, + "loss": 1.1914397430419923, + "step": 747200 + }, + { + "epoch": 99.64, + "grad_norm": 0.8558920621871948, + "learning_rate": 2.0360000000000002e-07, + "loss": 1.193257827758789, + "step": 747300 + }, + { + "epoch": 99.65333333333334, + "grad_norm": 0.8549710512161255, + "learning_rate": 1.9693333333333335e-07, + "loss": 1.1871185302734375, + "step": 747400 + }, + { + "epoch": 99.66666666666667, + "grad_norm": 0.9454492330551147, + "learning_rate": 1.9026666666666668e-07, + "loss": 1.1909255218505859, + "step": 747500 + }, + { + "epoch": 99.68, + "grad_norm": 0.8846890330314636, + "learning_rate": 1.836e-07, + "loss": 1.191995849609375, + "step": 747600 + }, + { + "epoch": 99.69333333333333, + "grad_norm": 0.8920761942863464, + "learning_rate": 1.7693333333333333e-07, + "loss": 1.1904275512695313, + "step": 747700 + }, + { + "epoch": 99.70666666666666, + "grad_norm": 0.9085679054260254, + "learning_rate": 1.7026666666666666e-07, + "loss": 1.1856131744384766, + "step": 747800 + }, + { + "epoch": 99.72, + "grad_norm": 0.8654316663742065, + "learning_rate": 1.636666666666667e-07, + "loss": 1.1924869537353515, + "step": 747900 + }, + { + "epoch": 99.73333333333333, + "grad_norm": 0.9672116041183472, + "learning_rate": 1.5700000000000002e-07, + "loss": 1.1914896392822265, + "step": 748000 + }, + { + "epoch": 99.74666666666667, + "grad_norm": 0.8933631181716919, + "learning_rate": 1.5033333333333334e-07, + "loss": 1.1880557250976562, + "step": 748100 + }, + { + "epoch": 99.76, + "grad_norm": 0.8144270777702332, + "learning_rate": 1.4366666666666667e-07, + "loss": 1.1939049530029298, + "step": 748200 + }, + { + "epoch": 99.77333333333333, + "grad_norm": 0.942760169506073, + "learning_rate": 1.37e-07, + "loss": 1.1934993743896485, + "step": 748300 + }, + { + "epoch": 99.78666666666666, + "grad_norm": 0.9373781085014343, + "learning_rate": 1.3033333333333335e-07, + "loss": 1.1954252624511719, + "step": 748400 + }, + { + "epoch": 99.8, + "grad_norm": 0.852530837059021, + "learning_rate": 1.2366666666666668e-07, + "loss": 1.1905007934570313, + "step": 748500 + }, + { + "epoch": 99.81333333333333, + "grad_norm": 0.9099419116973877, + "learning_rate": 1.1700000000000002e-07, + "loss": 1.1874067687988281, + "step": 748600 + }, + { + "epoch": 99.82666666666667, + "grad_norm": 0.9150423407554626, + "learning_rate": 1.1033333333333334e-07, + "loss": 1.1895872497558593, + "step": 748700 + }, + { + "epoch": 99.84, + "grad_norm": 0.9039080142974854, + "learning_rate": 1.0366666666666667e-07, + "loss": 1.1886183166503905, + "step": 748800 + }, + { + "epoch": 99.85333333333334, + "grad_norm": 0.8735392689704895, + "learning_rate": 9.700000000000001e-08, + "loss": 1.1912483978271484, + "step": 748900 + }, + { + "epoch": 99.86666666666666, + "grad_norm": 0.9005591869354248, + "learning_rate": 9.033333333333333e-08, + "loss": 1.1915541076660157, + "step": 749000 + }, + { + "epoch": 99.88, + "grad_norm": 0.914032518863678, + "learning_rate": 8.366666666666667e-08, + "loss": 1.194538803100586, + "step": 749100 + }, + { + "epoch": 99.89333333333333, + "grad_norm": 0.9344823360443115, + "learning_rate": 7.7e-08, + "loss": 1.1954287719726562, + "step": 749200 + }, + { + "epoch": 99.90666666666667, + "grad_norm": 0.9338550567626953, + "learning_rate": 7.033333333333334e-08, + "loss": 1.188226318359375, + "step": 749300 + }, + { + "epoch": 99.92, + "grad_norm": 0.8841633796691895, + "learning_rate": 6.366666666666667e-08, + "loss": 1.1888745880126954, + "step": 749400 + }, + { + "epoch": 99.93333333333334, + "grad_norm": 0.9246593117713928, + "learning_rate": 5.7e-08, + "loss": 1.1918194580078125, + "step": 749500 + }, + { + "epoch": 99.94666666666667, + "grad_norm": 0.8690961003303528, + "learning_rate": 5.033333333333333e-08, + "loss": 1.1911461639404297, + "step": 749600 + } + ], + "logging_steps": 100, + "max_steps": 750000, + "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": 2.019889206263808e+17, + "train_batch_size": 8, + "trial_name": null, + "trial_params": null +} diff --git a/timecost/c14/realtabformer/rtf-c14-20260501_010151/rtf_checkpoints/checkpoint-749600/training_args.bin b/timecost/c14/realtabformer/rtf-c14-20260501_010151/rtf_checkpoints/checkpoint-749600/training_args.bin new file mode 100644 index 0000000000000000000000000000000000000000..34d68dc0e0fe1c1f12a2e581dd1b166aa7178a9e --- /dev/null +++ b/timecost/c14/realtabformer/rtf-c14-20260501_010151/rtf_checkpoints/checkpoint-749600/training_args.bin @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:9e2cd88337d1d846c6918d2b3b63fa3e5c93f12fefc082497590da854a564607 +size 5201 diff --git a/timecost/c14/realtabformer/rtf-c14-20260501_010151/rtf_checkpoints/checkpoint-749700/config.json b/timecost/c14/realtabformer/rtf-c14-20260501_010151/rtf_checkpoints/checkpoint-749700/config.json new file mode 100644 index 0000000000000000000000000000000000000000..79a0184a09b7bca7a3c208529833166f08ca48c0 --- /dev/null +++ b/timecost/c14/realtabformer/rtf-c14-20260501_010151/rtf_checkpoints/checkpoint-749700/config.json @@ -0,0 +1,34 @@ +{ + "activation_function": "gelu_new", + "add_cross_attention": false, + "architectures": [ + "GPT2LMHeadModel" + ], + "attn_pdrop": 0.1, + "bos_token_id": 5, + "dtype": "float32", + "embd_pdrop": 0.1, + "eos_token_id": 6, + "initializer_range": 0.02, + "layer_norm_epsilon": 1e-05, + "model_type": "gpt2", + "n_embd": 768, + "n_head": 12, + "n_inner": null, + "n_layer": 6, + "n_positions": 1024, + "pad_token_id": null, + "reorder_and_upcast_attn": false, + "resid_pdrop": 0.1, + "scale_attn_by_inverse_layer_idx": false, + "scale_attn_weights": true, + "summary_activation": null, + "summary_first_dropout": 0.1, + "summary_proj_to_labels": true, + "summary_type": "cls_index", + "summary_use_proj": true, + "tie_word_embeddings": true, + "transformers_version": "5.5.3", + "use_cache": false, + "vocab_size": 16472 +} diff --git a/timecost/c14/realtabformer/rtf-c14-20260501_010151/rtf_checkpoints/checkpoint-749700/generation_config.json b/timecost/c14/realtabformer/rtf-c14-20260501_010151/rtf_checkpoints/checkpoint-749700/generation_config.json new file mode 100644 index 0000000000000000000000000000000000000000..ffe89567780e75b5c22eade9be971483b9618f39 --- /dev/null +++ b/timecost/c14/realtabformer/rtf-c14-20260501_010151/rtf_checkpoints/checkpoint-749700/generation_config.json @@ -0,0 +1,9 @@ +{ + "_from_model_config": true, + "bos_token_id": 5, + "eos_token_id": 6, + "output_attentions": false, + "output_hidden_states": false, + "transformers_version": "5.5.3", + "use_cache": true +} diff --git a/timecost/c14/realtabformer/rtf-c14-20260501_010151/rtf_checkpoints/checkpoint-749700/model.safetensors b/timecost/c14/realtabformer/rtf-c14-20260501_010151/rtf_checkpoints/checkpoint-749700/model.safetensors new file mode 100644 index 0000000000000000000000000000000000000000..d683f9021217044d04d0b35625ca753ba99c7bf6 --- /dev/null +++ b/timecost/c14/realtabformer/rtf-c14-20260501_010151/rtf_checkpoints/checkpoint-749700/model.safetensors @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:4190b1c8744a2fd4e9093aa30310ddfbbcbbedc1eb5482c1b10eb113698530fb +size 223870408 diff --git a/timecost/c14/realtabformer/rtf-c14-20260501_010151/rtf_checkpoints/checkpoint-749700/optimizer.pt b/timecost/c14/realtabformer/rtf-c14-20260501_010151/rtf_checkpoints/checkpoint-749700/optimizer.pt new file mode 100644 index 0000000000000000000000000000000000000000..a9afcf74a2fbc45cffb6b5478bac606ae289a303 --- /dev/null +++ b/timecost/c14/realtabformer/rtf-c14-20260501_010151/rtf_checkpoints/checkpoint-749700/optimizer.pt @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:80b192b8ea3ed9c3bee3867e18341685a9503529427d4000fddf9e6889a6f50c +size 447789899 diff --git a/timecost/c14/realtabformer/rtf-c14-20260501_010151/rtf_checkpoints/checkpoint-749700/rng_state.pth b/timecost/c14/realtabformer/rtf-c14-20260501_010151/rtf_checkpoints/checkpoint-749700/rng_state.pth new file mode 100644 index 0000000000000000000000000000000000000000..df7f55ea3762f51ef4c9d13e94e694f766562d6c --- /dev/null +++ b/timecost/c14/realtabformer/rtf-c14-20260501_010151/rtf_checkpoints/checkpoint-749700/rng_state.pth @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:6642011c3de9437bc83d80c3a275f82cd671cdf1d5c81241397411b8549ab20f +size 14645 diff --git a/timecost/c14/realtabformer/rtf-c14-20260501_010151/rtf_checkpoints/checkpoint-749700/scaler.pt b/timecost/c14/realtabformer/rtf-c14-20260501_010151/rtf_checkpoints/checkpoint-749700/scaler.pt new file mode 100644 index 0000000000000000000000000000000000000000..61273cefbdc6823e61131482e8984bfdf559ab80 --- /dev/null +++ b/timecost/c14/realtabformer/rtf-c14-20260501_010151/rtf_checkpoints/checkpoint-749700/scaler.pt @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:656cf14b35789ee9db00c9f971c2e0a63edfdbbf4982c0f22bfcfbed1837ba38 +size 1383 diff --git a/timecost/c14/realtabformer/rtf-c14-20260501_010151/rtf_checkpoints/checkpoint-749700/scheduler.pt b/timecost/c14/realtabformer/rtf-c14-20260501_010151/rtf_checkpoints/checkpoint-749700/scheduler.pt new file mode 100644 index 0000000000000000000000000000000000000000..9a8b8cdcec57c0a6c9250dec56bc6f2203d65dc1 --- /dev/null +++ b/timecost/c14/realtabformer/rtf-c14-20260501_010151/rtf_checkpoints/checkpoint-749700/scheduler.pt @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:87adb8a9f52ac677ba89e19adccb4567cb0630d481515a9ed17ae39ac107337d +size 1465 diff --git a/timecost/c14/realtabformer/rtf-c14-20260501_010151/rtf_checkpoints/checkpoint-749700/trainer_state.json b/timecost/c14/realtabformer/rtf-c14-20260501_010151/rtf_checkpoints/checkpoint-749700/trainer_state.json new file mode 100644 index 0000000000000000000000000000000000000000..e39f3cff4f8e260bbce7184cf47e630a348088c0 --- /dev/null +++ b/timecost/c14/realtabformer/rtf-c14-20260501_010151/rtf_checkpoints/checkpoint-749700/trainer_state.json @@ -0,0 +1,52513 @@ +{ + "best_global_step": null, + "best_metric": null, + "best_model_checkpoint": null, + "epoch": 99.96, + "eval_steps": 100, + "global_step": 749700, + "is_hyper_param_search": false, + "is_local_process_zero": true, + "is_world_process_zero": true, + "log_history": [ + { + "epoch": 0.013333333333333334, + "grad_norm": 0.3097156882286072, + "learning_rate": 4.99934e-05, + "loss": 4.729451904296875, + "step": 100 + }, + { + "epoch": 0.02666666666666667, + "grad_norm": 0.2790767550468445, + "learning_rate": 4.9986733333333334e-05, + "loss": 2.9246112060546876, + "step": 200 + }, + { + "epoch": 0.04, + "grad_norm": 0.2287004292011261, + "learning_rate": 4.998006666666667e-05, + "loss": 2.681365966796875, + "step": 300 + }, + { + "epoch": 0.05333333333333334, + "grad_norm": 0.2410515397787094, + "learning_rate": 4.9973400000000005e-05, + "loss": 2.57897216796875, + "step": 400 + }, + { + "epoch": 0.06666666666666667, + "grad_norm": 0.23536495864391327, + "learning_rate": 4.996673333333334e-05, + "loss": 2.5199215698242186, + "step": 500 + }, + { + "epoch": 0.08, + "grad_norm": 0.2238040715456009, + "learning_rate": 4.996006666666667e-05, + "loss": 2.4802560424804687, + "step": 600 + }, + { + "epoch": 0.09333333333333334, + "grad_norm": 0.2373904138803482, + "learning_rate": 4.99534e-05, + "loss": 2.4584336853027344, + "step": 700 + }, + { + "epoch": 0.10666666666666667, + "grad_norm": 0.2210150510072708, + "learning_rate": 4.9946733333333334e-05, + "loss": 2.4438829040527343, + "step": 800 + }, + { + "epoch": 0.12, + "grad_norm": 0.23910416662693024, + "learning_rate": 4.9940066666666666e-05, + "loss": 2.430836181640625, + "step": 900 + }, + { + "epoch": 0.13333333333333333, + "grad_norm": 0.21543893218040466, + "learning_rate": 4.9933400000000005e-05, + "loss": 2.416129150390625, + "step": 1000 + }, + { + "epoch": 0.14666666666666667, + "grad_norm": 0.21585851907730103, + "learning_rate": 4.992673333333334e-05, + "loss": 2.4107843017578126, + "step": 1100 + }, + { + "epoch": 0.16, + "grad_norm": 0.24163727462291718, + "learning_rate": 4.992006666666667e-05, + "loss": 2.406159210205078, + "step": 1200 + }, + { + "epoch": 0.17333333333333334, + "grad_norm": 0.1956426501274109, + "learning_rate": 4.99134e-05, + "loss": 2.403145751953125, + "step": 1300 + }, + { + "epoch": 0.18666666666666668, + "grad_norm": 0.22274842858314514, + "learning_rate": 4.9906733333333335e-05, + "loss": 2.4001878356933593, + "step": 1400 + }, + { + "epoch": 0.2, + "grad_norm": 0.21048018336296082, + "learning_rate": 4.990006666666667e-05, + "loss": 2.396698455810547, + "step": 1500 + }, + { + "epoch": 0.21333333333333335, + "grad_norm": 0.20668183267116547, + "learning_rate": 4.98934e-05, + "loss": 2.3899136352539063, + "step": 1600 + }, + { + "epoch": 0.22666666666666666, + "grad_norm": 0.21129441261291504, + "learning_rate": 4.988673333333334e-05, + "loss": 2.3887448120117187, + "step": 1700 + }, + { + "epoch": 0.24, + "grad_norm": 0.19339148700237274, + "learning_rate": 4.988006666666667e-05, + "loss": 2.386446228027344, + "step": 1800 + }, + { + "epoch": 0.25333333333333335, + "grad_norm": 0.24494831264019012, + "learning_rate": 4.98734e-05, + "loss": 2.3824462890625, + "step": 1900 + }, + { + "epoch": 0.26666666666666666, + "grad_norm": 0.22533085942268372, + "learning_rate": 4.9866733333333335e-05, + "loss": 2.382945709228516, + "step": 2000 + }, + { + "epoch": 0.28, + "grad_norm": 0.19327044486999512, + "learning_rate": 4.9860066666666674e-05, + "loss": 2.380709533691406, + "step": 2100 + }, + { + "epoch": 0.29333333333333333, + "grad_norm": 0.21988032758235931, + "learning_rate": 4.98534e-05, + "loss": 2.3797772216796873, + "step": 2200 + }, + { + "epoch": 0.30666666666666664, + "grad_norm": 0.21458032727241516, + "learning_rate": 4.984673333333333e-05, + "loss": 2.3806968688964845, + "step": 2300 + }, + { + "epoch": 0.32, + "grad_norm": 0.1938823163509369, + "learning_rate": 4.984006666666667e-05, + "loss": 2.377256317138672, + "step": 2400 + }, + { + "epoch": 0.3333333333333333, + "grad_norm": 0.2332620471715927, + "learning_rate": 4.98334e-05, + "loss": 2.3771754455566407, + "step": 2500 + }, + { + "epoch": 0.3466666666666667, + "grad_norm": 0.2167084515094757, + "learning_rate": 4.9826733333333335e-05, + "loss": 2.379599151611328, + "step": 2600 + }, + { + "epoch": 0.36, + "grad_norm": 0.21894526481628418, + "learning_rate": 4.982006666666667e-05, + "loss": 2.376912078857422, + "step": 2700 + }, + { + "epoch": 0.37333333333333335, + "grad_norm": 0.21106357872486115, + "learning_rate": 4.9813400000000007e-05, + "loss": 2.374015045166016, + "step": 2800 + }, + { + "epoch": 0.38666666666666666, + "grad_norm": 0.19057656824588776, + "learning_rate": 4.980673333333333e-05, + "loss": 2.3733976745605467, + "step": 2900 + }, + { + "epoch": 0.4, + "grad_norm": 0.21368202567100525, + "learning_rate": 4.9800066666666664e-05, + "loss": 2.3731019592285154, + "step": 3000 + }, + { + "epoch": 0.41333333333333333, + "grad_norm": 0.20361854135990143, + "learning_rate": 4.9793400000000003e-05, + "loss": 2.372502746582031, + "step": 3100 + }, + { + "epoch": 0.4266666666666667, + "grad_norm": 0.21937857568264008, + "learning_rate": 4.9786733333333336e-05, + "loss": 2.3699537658691407, + "step": 3200 + }, + { + "epoch": 0.44, + "grad_norm": 0.20447471737861633, + "learning_rate": 4.978006666666667e-05, + "loss": 2.3710557556152345, + "step": 3300 + }, + { + "epoch": 0.4533333333333333, + "grad_norm": 0.21187078952789307, + "learning_rate": 4.97734e-05, + "loss": 2.3726930236816406, + "step": 3400 + }, + { + "epoch": 0.4666666666666667, + "grad_norm": 0.2117481529712677, + "learning_rate": 4.976673333333334e-05, + "loss": 2.3712057495117187, + "step": 3500 + }, + { + "epoch": 0.48, + "grad_norm": 0.21514153480529785, + "learning_rate": 4.976006666666667e-05, + "loss": 2.3699081420898436, + "step": 3600 + }, + { + "epoch": 0.49333333333333335, + "grad_norm": 0.21301567554473877, + "learning_rate": 4.97534e-05, + "loss": 2.3686956787109374, + "step": 3700 + }, + { + "epoch": 0.5066666666666667, + "grad_norm": 0.21573932468891144, + "learning_rate": 4.9746733333333336e-05, + "loss": 2.3669277954101564, + "step": 3800 + }, + { + "epoch": 0.52, + "grad_norm": 0.21901340782642365, + "learning_rate": 4.974006666666667e-05, + "loss": 2.3691697692871094, + "step": 3900 + }, + { + "epoch": 0.5333333333333333, + "grad_norm": 0.17888770997524261, + "learning_rate": 4.97334e-05, + "loss": 2.3694166564941406, + "step": 4000 + }, + { + "epoch": 0.5466666666666666, + "grad_norm": 0.20132586359977722, + "learning_rate": 4.972673333333334e-05, + "loss": 2.3693058776855467, + "step": 4100 + }, + { + "epoch": 0.56, + "grad_norm": 0.20158927142620087, + "learning_rate": 4.972006666666667e-05, + "loss": 2.3696084594726563, + "step": 4200 + }, + { + "epoch": 0.5733333333333334, + "grad_norm": 0.19169336557388306, + "learning_rate": 4.9713400000000004e-05, + "loss": 2.3690890502929687, + "step": 4300 + }, + { + "epoch": 0.5866666666666667, + "grad_norm": 0.1851499378681183, + "learning_rate": 4.9706733333333336e-05, + "loss": 2.365598602294922, + "step": 4400 + }, + { + "epoch": 0.6, + "grad_norm": 0.17640796303749084, + "learning_rate": 4.970006666666667e-05, + "loss": 2.3662982177734375, + "step": 4500 + }, + { + "epoch": 0.6133333333333333, + "grad_norm": 0.19363251328468323, + "learning_rate": 4.96934e-05, + "loss": 2.366368408203125, + "step": 4600 + }, + { + "epoch": 0.6266666666666667, + "grad_norm": 0.18789421021938324, + "learning_rate": 4.968673333333333e-05, + "loss": 2.3673724365234374, + "step": 4700 + }, + { + "epoch": 0.64, + "grad_norm": 0.2276417762041092, + "learning_rate": 4.968006666666667e-05, + "loss": 2.3687364196777345, + "step": 4800 + }, + { + "epoch": 0.6533333333333333, + "grad_norm": 0.24959126114845276, + "learning_rate": 4.9673400000000005e-05, + "loss": 2.3668873596191404, + "step": 4900 + }, + { + "epoch": 0.6666666666666666, + "grad_norm": 0.1974227875471115, + "learning_rate": 4.966673333333334e-05, + "loss": 2.367490539550781, + "step": 5000 + }, + { + "epoch": 0.68, + "grad_norm": 0.21331575512886047, + "learning_rate": 4.966006666666667e-05, + "loss": 2.3667413330078126, + "step": 5100 + }, + { + "epoch": 0.6933333333333334, + "grad_norm": 0.19911886751651764, + "learning_rate": 4.96534e-05, + "loss": 2.3675457763671877, + "step": 5200 + }, + { + "epoch": 0.7066666666666667, + "grad_norm": 0.18808232247829437, + "learning_rate": 4.9646733333333334e-05, + "loss": 2.365087432861328, + "step": 5300 + }, + { + "epoch": 0.72, + "grad_norm": 0.20785415172576904, + "learning_rate": 4.9640066666666666e-05, + "loss": 2.364909362792969, + "step": 5400 + }, + { + "epoch": 0.7333333333333333, + "grad_norm": 0.20224037766456604, + "learning_rate": 4.9633400000000005e-05, + "loss": 2.3632057189941404, + "step": 5500 + }, + { + "epoch": 0.7466666666666667, + "grad_norm": 0.2229875922203064, + "learning_rate": 4.962673333333334e-05, + "loss": 2.3641395568847656, + "step": 5600 + }, + { + "epoch": 0.76, + "grad_norm": 0.1919153928756714, + "learning_rate": 4.962006666666667e-05, + "loss": 2.3659425354003907, + "step": 5700 + }, + { + "epoch": 0.7733333333333333, + "grad_norm": 0.20427671074867249, + "learning_rate": 4.96134e-05, + "loss": 2.363852081298828, + "step": 5800 + }, + { + "epoch": 0.7866666666666666, + "grad_norm": 0.21656429767608643, + "learning_rate": 4.960673333333334e-05, + "loss": 2.362543182373047, + "step": 5900 + }, + { + "epoch": 0.8, + "grad_norm": 0.2063402533531189, + "learning_rate": 4.9600066666666666e-05, + "loss": 2.366965026855469, + "step": 6000 + }, + { + "epoch": 0.8133333333333334, + "grad_norm": 0.1898108273744583, + "learning_rate": 4.95934e-05, + "loss": 2.3621893310546875, + "step": 6100 + }, + { + "epoch": 0.8266666666666667, + "grad_norm": 0.20282649993896484, + "learning_rate": 4.958673333333334e-05, + "loss": 2.3625088500976563, + "step": 6200 + }, + { + "epoch": 0.84, + "grad_norm": 0.20909225940704346, + "learning_rate": 4.958006666666667e-05, + "loss": 2.3645458984375, + "step": 6300 + }, + { + "epoch": 0.8533333333333334, + "grad_norm": 0.1983426809310913, + "learning_rate": 4.95734e-05, + "loss": 2.3627133178710937, + "step": 6400 + }, + { + "epoch": 0.8666666666666667, + "grad_norm": 0.19243596494197845, + "learning_rate": 4.9566733333333334e-05, + "loss": 2.3633660888671875, + "step": 6500 + }, + { + "epoch": 0.88, + "grad_norm": 0.2079390585422516, + "learning_rate": 4.9560066666666673e-05, + "loss": 2.3625689697265626, + "step": 6600 + }, + { + "epoch": 0.8933333333333333, + "grad_norm": 0.21222324669361115, + "learning_rate": 4.95534e-05, + "loss": 2.3634515380859376, + "step": 6700 + }, + { + "epoch": 0.9066666666666666, + "grad_norm": 0.20715859532356262, + "learning_rate": 4.954673333333333e-05, + "loss": 2.361647186279297, + "step": 6800 + }, + { + "epoch": 0.92, + "grad_norm": 0.20895737409591675, + "learning_rate": 4.954006666666667e-05, + "loss": 2.3614102172851563, + "step": 6900 + }, + { + "epoch": 0.9333333333333333, + "grad_norm": 0.2002798467874527, + "learning_rate": 4.95334e-05, + "loss": 2.36139892578125, + "step": 7000 + }, + { + "epoch": 0.9466666666666667, + "grad_norm": 0.19291919469833374, + "learning_rate": 4.9526733333333335e-05, + "loss": 2.3608961486816407, + "step": 7100 + }, + { + "epoch": 0.96, + "grad_norm": 0.21889089047908783, + "learning_rate": 4.952006666666667e-05, + "loss": 2.3637326049804686, + "step": 7200 + }, + { + "epoch": 0.9733333333333334, + "grad_norm": 0.2078685611486435, + "learning_rate": 4.9513400000000006e-05, + "loss": 2.3617208862304686, + "step": 7300 + }, + { + "epoch": 0.9866666666666667, + "grad_norm": 0.2064240425825119, + "learning_rate": 4.950673333333334e-05, + "loss": 2.363861083984375, + "step": 7400 + }, + { + "epoch": 1.0, + "grad_norm": 0.20584005117416382, + "learning_rate": 4.9500066666666664e-05, + "loss": 2.361913146972656, + "step": 7500 + }, + { + "epoch": 1.0133333333333334, + "grad_norm": 0.1801510751247406, + "learning_rate": 4.94934e-05, + "loss": 2.360869903564453, + "step": 7600 + }, + { + "epoch": 1.0266666666666666, + "grad_norm": 0.1993046998977661, + "learning_rate": 4.9486733333333335e-05, + "loss": 2.361507568359375, + "step": 7700 + }, + { + "epoch": 1.04, + "grad_norm": 0.19615833461284637, + "learning_rate": 4.948006666666667e-05, + "loss": 2.3610348510742187, + "step": 7800 + }, + { + "epoch": 1.0533333333333332, + "grad_norm": 0.21650268137454987, + "learning_rate": 4.9473400000000006e-05, + "loss": 2.3594178771972656, + "step": 7900 + }, + { + "epoch": 1.0666666666666667, + "grad_norm": 0.21163895726203918, + "learning_rate": 4.946673333333334e-05, + "loss": 2.360281982421875, + "step": 8000 + }, + { + "epoch": 1.08, + "grad_norm": 0.204850971698761, + "learning_rate": 4.946006666666667e-05, + "loss": 2.3587506103515623, + "step": 8100 + }, + { + "epoch": 1.0933333333333333, + "grad_norm": 0.19019952416419983, + "learning_rate": 4.9453399999999996e-05, + "loss": 2.359633331298828, + "step": 8200 + }, + { + "epoch": 1.1066666666666667, + "grad_norm": 0.19061067700386047, + "learning_rate": 4.9446733333333336e-05, + "loss": 2.3588740539550783, + "step": 8300 + }, + { + "epoch": 1.12, + "grad_norm": 0.17677488923072815, + "learning_rate": 4.944006666666667e-05, + "loss": 2.3598394775390625, + "step": 8400 + }, + { + "epoch": 1.1333333333333333, + "grad_norm": 0.1912253499031067, + "learning_rate": 4.94334e-05, + "loss": 2.360320739746094, + "step": 8500 + }, + { + "epoch": 1.1466666666666667, + "grad_norm": 0.2024315893650055, + "learning_rate": 4.942673333333334e-05, + "loss": 2.3580809020996094, + "step": 8600 + }, + { + "epoch": 1.16, + "grad_norm": 0.18786175549030304, + "learning_rate": 4.942006666666667e-05, + "loss": 2.3593084716796877, + "step": 8700 + }, + { + "epoch": 1.1733333333333333, + "grad_norm": 0.21662430465221405, + "learning_rate": 4.9413400000000004e-05, + "loss": 2.3598200988769533, + "step": 8800 + }, + { + "epoch": 1.1866666666666668, + "grad_norm": 0.1833869218826294, + "learning_rate": 4.9406733333333336e-05, + "loss": 2.3603662109375, + "step": 8900 + }, + { + "epoch": 1.2, + "grad_norm": 0.17883288860321045, + "learning_rate": 4.940006666666667e-05, + "loss": 2.3576153564453124, + "step": 9000 + }, + { + "epoch": 1.2133333333333334, + "grad_norm": 0.20075617730617523, + "learning_rate": 4.93934e-05, + "loss": 2.359826965332031, + "step": 9100 + }, + { + "epoch": 1.2266666666666666, + "grad_norm": 0.2007887363433838, + "learning_rate": 4.938673333333333e-05, + "loss": 2.358603210449219, + "step": 9200 + }, + { + "epoch": 1.24, + "grad_norm": 0.1917891800403595, + "learning_rate": 4.938006666666667e-05, + "loss": 2.3588916015625, + "step": 9300 + }, + { + "epoch": 1.2533333333333334, + "grad_norm": 0.21604856848716736, + "learning_rate": 4.9373400000000004e-05, + "loss": 2.3602168273925783, + "step": 9400 + }, + { + "epoch": 1.2666666666666666, + "grad_norm": 0.17735335230827332, + "learning_rate": 4.9366733333333336e-05, + "loss": 2.3565715026855467, + "step": 9500 + }, + { + "epoch": 1.28, + "grad_norm": 0.19378457963466644, + "learning_rate": 4.936006666666667e-05, + "loss": 2.3594598388671875, + "step": 9600 + }, + { + "epoch": 1.2933333333333334, + "grad_norm": 0.17695476114749908, + "learning_rate": 4.93534e-05, + "loss": 2.3589300537109374, + "step": 9700 + }, + { + "epoch": 1.3066666666666666, + "grad_norm": 0.21539485454559326, + "learning_rate": 4.934673333333333e-05, + "loss": 2.3615129089355467, + "step": 9800 + }, + { + "epoch": 1.32, + "grad_norm": 0.19134896993637085, + "learning_rate": 4.9340066666666665e-05, + "loss": 2.362266082763672, + "step": 9900 + }, + { + "epoch": 1.3333333333333333, + "grad_norm": 0.21886669099330902, + "learning_rate": 4.9333400000000004e-05, + "loss": 2.358092956542969, + "step": 10000 + }, + { + "epoch": 1.3466666666666667, + "grad_norm": 0.2164846807718277, + "learning_rate": 4.932673333333334e-05, + "loss": 2.3595159912109374, + "step": 10100 + }, + { + "epoch": 1.3599999999999999, + "grad_norm": 0.2044377326965332, + "learning_rate": 4.932006666666667e-05, + "loss": 2.3593812561035157, + "step": 10200 + }, + { + "epoch": 1.3733333333333333, + "grad_norm": 0.19607120752334595, + "learning_rate": 4.93134e-05, + "loss": 2.3597682189941405, + "step": 10300 + }, + { + "epoch": 1.3866666666666667, + "grad_norm": 0.20865550637245178, + "learning_rate": 4.930673333333334e-05, + "loss": 2.3585769653320314, + "step": 10400 + }, + { + "epoch": 1.4, + "grad_norm": 0.19647538661956787, + "learning_rate": 4.9300066666666666e-05, + "loss": 2.357613525390625, + "step": 10500 + }, + { + "epoch": 1.4133333333333333, + "grad_norm": 0.20263008773326874, + "learning_rate": 4.92934e-05, + "loss": 2.3594039916992187, + "step": 10600 + }, + { + "epoch": 1.4266666666666667, + "grad_norm": 0.20336301624774933, + "learning_rate": 4.928673333333334e-05, + "loss": 2.358168487548828, + "step": 10700 + }, + { + "epoch": 1.44, + "grad_norm": 0.19379153847694397, + "learning_rate": 4.928006666666667e-05, + "loss": 2.357987060546875, + "step": 10800 + }, + { + "epoch": 1.4533333333333334, + "grad_norm": 0.19382280111312866, + "learning_rate": 4.92734e-05, + "loss": 2.358719482421875, + "step": 10900 + }, + { + "epoch": 1.4666666666666668, + "grad_norm": 0.22233974933624268, + "learning_rate": 4.9266733333333334e-05, + "loss": 2.359342498779297, + "step": 11000 + }, + { + "epoch": 1.48, + "grad_norm": 0.2031731903553009, + "learning_rate": 4.926006666666667e-05, + "loss": 2.3575526428222657, + "step": 11100 + }, + { + "epoch": 1.4933333333333334, + "grad_norm": 0.2249104380607605, + "learning_rate": 4.9253400000000005e-05, + "loss": 2.359127197265625, + "step": 11200 + }, + { + "epoch": 1.5066666666666668, + "grad_norm": 0.19960635900497437, + "learning_rate": 4.924673333333333e-05, + "loss": 2.35850830078125, + "step": 11300 + }, + { + "epoch": 1.52, + "grad_norm": 0.17657485604286194, + "learning_rate": 4.924006666666667e-05, + "loss": 2.3599581909179688, + "step": 11400 + }, + { + "epoch": 1.5333333333333332, + "grad_norm": 0.2015186995267868, + "learning_rate": 4.92334e-05, + "loss": 2.3588160705566406, + "step": 11500 + }, + { + "epoch": 1.5466666666666666, + "grad_norm": 0.20554782450199127, + "learning_rate": 4.9226733333333334e-05, + "loss": 2.3559320068359373, + "step": 11600 + }, + { + "epoch": 1.56, + "grad_norm": 0.1838974952697754, + "learning_rate": 4.9220066666666667e-05, + "loss": 2.3575198364257814, + "step": 11700 + }, + { + "epoch": 1.5733333333333333, + "grad_norm": 0.19607774913311005, + "learning_rate": 4.9213400000000006e-05, + "loss": 2.3575714111328123, + "step": 11800 + }, + { + "epoch": 1.5866666666666667, + "grad_norm": 0.178280308842659, + "learning_rate": 4.920673333333334e-05, + "loss": 2.3576229858398436, + "step": 11900 + }, + { + "epoch": 1.6, + "grad_norm": 0.18399088084697723, + "learning_rate": 4.920006666666666e-05, + "loss": 2.3562477111816404, + "step": 12000 + }, + { + "epoch": 1.6133333333333333, + "grad_norm": 0.20826038718223572, + "learning_rate": 4.91934e-05, + "loss": 2.355485382080078, + "step": 12100 + }, + { + "epoch": 1.6266666666666667, + "grad_norm": 0.20758900046348572, + "learning_rate": 4.9186733333333335e-05, + "loss": 2.3574794006347655, + "step": 12200 + }, + { + "epoch": 1.6400000000000001, + "grad_norm": 0.19196072220802307, + "learning_rate": 4.918006666666667e-05, + "loss": 2.3581634521484376, + "step": 12300 + }, + { + "epoch": 1.6533333333333333, + "grad_norm": 0.1848619282245636, + "learning_rate": 4.9173400000000006e-05, + "loss": 2.3570237731933594, + "step": 12400 + }, + { + "epoch": 1.6666666666666665, + "grad_norm": 0.2013252079486847, + "learning_rate": 4.916673333333334e-05, + "loss": 2.3577528381347657, + "step": 12500 + }, + { + "epoch": 1.6800000000000002, + "grad_norm": 0.1901196390390396, + "learning_rate": 4.916006666666667e-05, + "loss": 2.356570129394531, + "step": 12600 + }, + { + "epoch": 1.6933333333333334, + "grad_norm": 0.21528318524360657, + "learning_rate": 4.91534e-05, + "loss": 2.3587225341796874, + "step": 12700 + }, + { + "epoch": 1.7066666666666666, + "grad_norm": 0.21024923026561737, + "learning_rate": 4.9146733333333335e-05, + "loss": 2.356683349609375, + "step": 12800 + }, + { + "epoch": 1.72, + "grad_norm": 0.21185488998889923, + "learning_rate": 4.914006666666667e-05, + "loss": 2.3565196228027343, + "step": 12900 + }, + { + "epoch": 1.7333333333333334, + "grad_norm": 0.1909532994031906, + "learning_rate": 4.91334e-05, + "loss": 2.3565260314941407, + "step": 13000 + }, + { + "epoch": 1.7466666666666666, + "grad_norm": 0.17285031080245972, + "learning_rate": 4.912673333333334e-05, + "loss": 2.3597225952148437, + "step": 13100 + }, + { + "epoch": 1.76, + "grad_norm": 0.20661011338233948, + "learning_rate": 4.912006666666667e-05, + "loss": 2.355798797607422, + "step": 13200 + }, + { + "epoch": 1.7733333333333334, + "grad_norm": 0.17752040922641754, + "learning_rate": 4.91134e-05, + "loss": 2.358916931152344, + "step": 13300 + }, + { + "epoch": 1.7866666666666666, + "grad_norm": 0.1924242228269577, + "learning_rate": 4.9106733333333335e-05, + "loss": 2.3583119201660154, + "step": 13400 + }, + { + "epoch": 1.8, + "grad_norm": 0.1849152147769928, + "learning_rate": 4.910006666666667e-05, + "loss": 2.3570172119140627, + "step": 13500 + }, + { + "epoch": 1.8133333333333335, + "grad_norm": 0.185477152466774, + "learning_rate": 4.90934e-05, + "loss": 2.3571125793457033, + "step": 13600 + }, + { + "epoch": 1.8266666666666667, + "grad_norm": 0.20487146079540253, + "learning_rate": 4.908673333333333e-05, + "loss": 2.3563079833984375, + "step": 13700 + }, + { + "epoch": 1.8399999999999999, + "grad_norm": 0.1872117966413498, + "learning_rate": 4.908006666666667e-05, + "loss": 2.3568649291992188, + "step": 13800 + }, + { + "epoch": 1.8533333333333335, + "grad_norm": 0.20117762684822083, + "learning_rate": 4.9073400000000004e-05, + "loss": 2.3565196228027343, + "step": 13900 + }, + { + "epoch": 1.8666666666666667, + "grad_norm": 0.19476266205310822, + "learning_rate": 4.9066733333333336e-05, + "loss": 2.358032989501953, + "step": 14000 + }, + { + "epoch": 1.88, + "grad_norm": 0.22407779097557068, + "learning_rate": 4.906006666666667e-05, + "loss": 2.3561721801757813, + "step": 14100 + }, + { + "epoch": 1.8933333333333333, + "grad_norm": 0.17407096922397614, + "learning_rate": 4.905340000000001e-05, + "loss": 2.3565065002441408, + "step": 14200 + }, + { + "epoch": 1.9066666666666667, + "grad_norm": 0.20838646590709686, + "learning_rate": 4.904673333333333e-05, + "loss": 2.3535838317871094, + "step": 14300 + }, + { + "epoch": 1.92, + "grad_norm": 0.1853237748146057, + "learning_rate": 4.9040066666666665e-05, + "loss": 2.354512481689453, + "step": 14400 + }, + { + "epoch": 1.9333333333333333, + "grad_norm": 0.19149570167064667, + "learning_rate": 4.9033400000000004e-05, + "loss": 2.3577252197265626, + "step": 14500 + }, + { + "epoch": 1.9466666666666668, + "grad_norm": 0.17799700796604156, + "learning_rate": 4.9026733333333336e-05, + "loss": 2.35733154296875, + "step": 14600 + }, + { + "epoch": 1.96, + "grad_norm": 0.19204910099506378, + "learning_rate": 4.902006666666667e-05, + "loss": 2.354717559814453, + "step": 14700 + }, + { + "epoch": 1.9733333333333334, + "grad_norm": 0.2267007678747177, + "learning_rate": 4.90134e-05, + "loss": 2.356217041015625, + "step": 14800 + }, + { + "epoch": 1.9866666666666668, + "grad_norm": 0.19406317174434662, + "learning_rate": 4.900673333333334e-05, + "loss": 2.3556443786621095, + "step": 14900 + }, + { + "epoch": 2.0, + "grad_norm": 0.204499751329422, + "learning_rate": 4.9000066666666665e-05, + "loss": 2.356020965576172, + "step": 15000 + }, + { + "epoch": 2.013333333333333, + "grad_norm": 0.1888091266155243, + "learning_rate": 4.89934e-05, + "loss": 2.352834930419922, + "step": 15100 + }, + { + "epoch": 2.026666666666667, + "grad_norm": 0.19324932992458344, + "learning_rate": 4.8986733333333337e-05, + "loss": 2.354947357177734, + "step": 15200 + }, + { + "epoch": 2.04, + "grad_norm": 0.18967552483081818, + "learning_rate": 4.898006666666667e-05, + "loss": 2.3552085876464846, + "step": 15300 + }, + { + "epoch": 2.0533333333333332, + "grad_norm": 0.1882469207048416, + "learning_rate": 4.89734e-05, + "loss": 2.354617462158203, + "step": 15400 + }, + { + "epoch": 2.066666666666667, + "grad_norm": 0.2014245092868805, + "learning_rate": 4.896673333333333e-05, + "loss": 2.3554867553710936, + "step": 15500 + }, + { + "epoch": 2.08, + "grad_norm": 0.20610852539539337, + "learning_rate": 4.896006666666667e-05, + "loss": 2.3536581420898437, + "step": 15600 + }, + { + "epoch": 2.0933333333333333, + "grad_norm": 0.21335220336914062, + "learning_rate": 4.8953400000000005e-05, + "loss": 2.354955291748047, + "step": 15700 + }, + { + "epoch": 2.1066666666666665, + "grad_norm": 0.19335633516311646, + "learning_rate": 4.894673333333333e-05, + "loss": 2.3532504272460937, + "step": 15800 + }, + { + "epoch": 2.12, + "grad_norm": 0.1970617026090622, + "learning_rate": 4.894006666666667e-05, + "loss": 2.3523245239257813, + "step": 15900 + }, + { + "epoch": 2.1333333333333333, + "grad_norm": 0.195561483502388, + "learning_rate": 4.89334e-05, + "loss": 2.354027099609375, + "step": 16000 + }, + { + "epoch": 2.1466666666666665, + "grad_norm": 0.18854361772537231, + "learning_rate": 4.89268e-05, + "loss": 2.35153564453125, + "step": 16100 + }, + { + "epoch": 2.16, + "grad_norm": 0.20224016904830933, + "learning_rate": 4.892013333333333e-05, + "loss": 2.356122589111328, + "step": 16200 + }, + { + "epoch": 2.1733333333333333, + "grad_norm": 0.18668098747730255, + "learning_rate": 4.891346666666667e-05, + "loss": 2.354725189208984, + "step": 16300 + }, + { + "epoch": 2.1866666666666665, + "grad_norm": 0.1866915374994278, + "learning_rate": 4.8906800000000004e-05, + "loss": 2.354028625488281, + "step": 16400 + }, + { + "epoch": 2.2, + "grad_norm": 0.21461573243141174, + "learning_rate": 4.8900133333333336e-05, + "loss": 2.3526856994628904, + "step": 16500 + }, + { + "epoch": 2.2133333333333334, + "grad_norm": 0.18227700889110565, + "learning_rate": 4.889346666666667e-05, + "loss": 2.3545989990234375, + "step": 16600 + }, + { + "epoch": 2.2266666666666666, + "grad_norm": 0.19773833453655243, + "learning_rate": 4.888680000000001e-05, + "loss": 2.351981201171875, + "step": 16700 + }, + { + "epoch": 2.24, + "grad_norm": 0.20956110954284668, + "learning_rate": 4.888013333333333e-05, + "loss": 2.355366516113281, + "step": 16800 + }, + { + "epoch": 2.2533333333333334, + "grad_norm": 0.1993572860956192, + "learning_rate": 4.8873466666666665e-05, + "loss": 2.3551705932617186, + "step": 16900 + }, + { + "epoch": 2.2666666666666666, + "grad_norm": 0.2015913426876068, + "learning_rate": 4.8866800000000005e-05, + "loss": 2.3545513916015626, + "step": 17000 + }, + { + "epoch": 2.2800000000000002, + "grad_norm": 0.19929593801498413, + "learning_rate": 4.886013333333334e-05, + "loss": 2.352397766113281, + "step": 17100 + }, + { + "epoch": 2.2933333333333334, + "grad_norm": 0.20449623465538025, + "learning_rate": 4.885346666666667e-05, + "loss": 2.354527893066406, + "step": 17200 + }, + { + "epoch": 2.3066666666666666, + "grad_norm": 0.20281392335891724, + "learning_rate": 4.88468e-05, + "loss": 2.351980438232422, + "step": 17300 + }, + { + "epoch": 2.32, + "grad_norm": 0.21583755314350128, + "learning_rate": 4.884013333333334e-05, + "loss": 2.3545767211914064, + "step": 17400 + }, + { + "epoch": 2.3333333333333335, + "grad_norm": 0.20362140238285065, + "learning_rate": 4.8833466666666666e-05, + "loss": 2.3561666870117186, + "step": 17500 + }, + { + "epoch": 2.3466666666666667, + "grad_norm": 0.1887034773826599, + "learning_rate": 4.88268e-05, + "loss": 2.353743438720703, + "step": 17600 + }, + { + "epoch": 2.36, + "grad_norm": 0.1752418577671051, + "learning_rate": 4.882013333333334e-05, + "loss": 2.35181884765625, + "step": 17700 + }, + { + "epoch": 2.3733333333333335, + "grad_norm": 0.19891609251499176, + "learning_rate": 4.881346666666667e-05, + "loss": 2.3536032104492186, + "step": 17800 + }, + { + "epoch": 2.3866666666666667, + "grad_norm": 0.1945076882839203, + "learning_rate": 4.88068e-05, + "loss": 2.35367919921875, + "step": 17900 + }, + { + "epoch": 2.4, + "grad_norm": 0.17770184576511383, + "learning_rate": 4.8800133333333334e-05, + "loss": 2.3528033447265626, + "step": 18000 + }, + { + "epoch": 2.413333333333333, + "grad_norm": 0.223379448056221, + "learning_rate": 4.879353333333333e-05, + "loss": 2.35432861328125, + "step": 18100 + }, + { + "epoch": 2.4266666666666667, + "grad_norm": 0.18828672170639038, + "learning_rate": 4.878686666666667e-05, + "loss": 2.355252380371094, + "step": 18200 + }, + { + "epoch": 2.44, + "grad_norm": 0.18844439089298248, + "learning_rate": 4.8780200000000004e-05, + "loss": 2.3561915588378906, + "step": 18300 + }, + { + "epoch": 2.453333333333333, + "grad_norm": 0.21294449269771576, + "learning_rate": 4.877353333333334e-05, + "loss": 2.3547706604003906, + "step": 18400 + }, + { + "epoch": 2.466666666666667, + "grad_norm": 0.17931200563907623, + "learning_rate": 4.876686666666667e-05, + "loss": 2.355154724121094, + "step": 18500 + }, + { + "epoch": 2.48, + "grad_norm": 0.21106231212615967, + "learning_rate": 4.87602e-05, + "loss": 2.352605895996094, + "step": 18600 + }, + { + "epoch": 2.493333333333333, + "grad_norm": 0.1965954452753067, + "learning_rate": 4.8753533333333333e-05, + "loss": 2.354511260986328, + "step": 18700 + }, + { + "epoch": 2.506666666666667, + "grad_norm": 0.2056257575750351, + "learning_rate": 4.8746866666666666e-05, + "loss": 2.3556398010253905, + "step": 18800 + }, + { + "epoch": 2.52, + "grad_norm": 0.21052542328834534, + "learning_rate": 4.8740200000000005e-05, + "loss": 2.3537603759765626, + "step": 18900 + }, + { + "epoch": 2.533333333333333, + "grad_norm": 0.19049997627735138, + "learning_rate": 4.873353333333334e-05, + "loss": 2.353008270263672, + "step": 19000 + }, + { + "epoch": 2.546666666666667, + "grad_norm": 0.17134717106819153, + "learning_rate": 4.872686666666667e-05, + "loss": 2.3548989868164063, + "step": 19100 + }, + { + "epoch": 2.56, + "grad_norm": 0.19276337325572968, + "learning_rate": 4.87202e-05, + "loss": 2.3533308410644533, + "step": 19200 + }, + { + "epoch": 2.5733333333333333, + "grad_norm": 0.20519237220287323, + "learning_rate": 4.8713533333333334e-05, + "loss": 2.353628692626953, + "step": 19300 + }, + { + "epoch": 2.586666666666667, + "grad_norm": 0.19865448772907257, + "learning_rate": 4.8706866666666666e-05, + "loss": 2.3552372741699217, + "step": 19400 + }, + { + "epoch": 2.6, + "grad_norm": 0.21072329580783844, + "learning_rate": 4.87002e-05, + "loss": 2.354803009033203, + "step": 19500 + }, + { + "epoch": 2.6133333333333333, + "grad_norm": 0.20858490467071533, + "learning_rate": 4.869353333333334e-05, + "loss": 2.352855224609375, + "step": 19600 + }, + { + "epoch": 2.626666666666667, + "grad_norm": 0.19127769768238068, + "learning_rate": 4.868686666666667e-05, + "loss": 2.3559735107421873, + "step": 19700 + }, + { + "epoch": 2.64, + "grad_norm": 0.1971408575773239, + "learning_rate": 4.86802e-05, + "loss": 2.3524879455566405, + "step": 19800 + }, + { + "epoch": 2.6533333333333333, + "grad_norm": 0.19466613233089447, + "learning_rate": 4.867353333333334e-05, + "loss": 2.35252685546875, + "step": 19900 + }, + { + "epoch": 2.6666666666666665, + "grad_norm": 0.17773135006427765, + "learning_rate": 4.866686666666667e-05, + "loss": 2.3533396911621094, + "step": 20000 + }, + { + "epoch": 2.68, + "grad_norm": 0.2046392261981964, + "learning_rate": 4.866026666666667e-05, + "loss": 2.3539585876464844, + "step": 20100 + }, + { + "epoch": 2.6933333333333334, + "grad_norm": 0.1670500934123993, + "learning_rate": 4.8653600000000005e-05, + "loss": 2.353471527099609, + "step": 20200 + }, + { + "epoch": 2.7066666666666666, + "grad_norm": 0.1887359917163849, + "learning_rate": 4.864693333333333e-05, + "loss": 2.3529425048828125, + "step": 20300 + }, + { + "epoch": 2.7199999999999998, + "grad_norm": 0.19046323001384735, + "learning_rate": 4.864026666666667e-05, + "loss": 2.353743133544922, + "step": 20400 + }, + { + "epoch": 2.7333333333333334, + "grad_norm": 0.20893333852291107, + "learning_rate": 4.86336e-05, + "loss": 2.354876708984375, + "step": 20500 + }, + { + "epoch": 2.7466666666666666, + "grad_norm": 0.20090077817440033, + "learning_rate": 4.8626933333333334e-05, + "loss": 2.354145050048828, + "step": 20600 + }, + { + "epoch": 2.76, + "grad_norm": 0.1944134384393692, + "learning_rate": 4.862026666666667e-05, + "loss": 2.3537525939941406, + "step": 20700 + }, + { + "epoch": 2.7733333333333334, + "grad_norm": 0.19937659800052643, + "learning_rate": 4.8613600000000005e-05, + "loss": 2.3532589721679686, + "step": 20800 + }, + { + "epoch": 2.7866666666666666, + "grad_norm": 0.19922621548175812, + "learning_rate": 4.860693333333334e-05, + "loss": 2.3535202026367186, + "step": 20900 + }, + { + "epoch": 2.8, + "grad_norm": 0.17885304987430573, + "learning_rate": 4.860026666666667e-05, + "loss": 2.3526271057128905, + "step": 21000 + }, + { + "epoch": 2.8133333333333335, + "grad_norm": 0.19968298077583313, + "learning_rate": 4.85936e-05, + "loss": 2.351287078857422, + "step": 21100 + }, + { + "epoch": 2.8266666666666667, + "grad_norm": 0.20618899166584015, + "learning_rate": 4.8586933333333334e-05, + "loss": 2.35383544921875, + "step": 21200 + }, + { + "epoch": 2.84, + "grad_norm": 0.18697108328342438, + "learning_rate": 4.8580266666666666e-05, + "loss": 2.3557089233398436, + "step": 21300 + }, + { + "epoch": 2.8533333333333335, + "grad_norm": 0.1982707530260086, + "learning_rate": 4.8573600000000005e-05, + "loss": 2.3569706726074218, + "step": 21400 + }, + { + "epoch": 2.8666666666666667, + "grad_norm": 0.1921544075012207, + "learning_rate": 4.856693333333334e-05, + "loss": 2.354062042236328, + "step": 21500 + }, + { + "epoch": 2.88, + "grad_norm": 0.18305157124996185, + "learning_rate": 4.856026666666667e-05, + "loss": 2.3534732055664063, + "step": 21600 + }, + { + "epoch": 2.8933333333333335, + "grad_norm": 0.1875217705965042, + "learning_rate": 4.85536e-05, + "loss": 2.354545135498047, + "step": 21700 + }, + { + "epoch": 2.9066666666666667, + "grad_norm": 0.20880307257175446, + "learning_rate": 4.8546933333333334e-05, + "loss": 2.353887939453125, + "step": 21800 + }, + { + "epoch": 2.92, + "grad_norm": 0.21262428164482117, + "learning_rate": 4.854026666666667e-05, + "loss": 2.352968292236328, + "step": 21900 + }, + { + "epoch": 2.9333333333333336, + "grad_norm": 0.19341909885406494, + "learning_rate": 4.85336e-05, + "loss": 2.3549241638183593, + "step": 22000 + }, + { + "epoch": 2.9466666666666668, + "grad_norm": 0.2057921290397644, + "learning_rate": 4.8527e-05, + "loss": 2.3518043518066407, + "step": 22100 + }, + { + "epoch": 2.96, + "grad_norm": 0.1986525058746338, + "learning_rate": 4.852033333333334e-05, + "loss": 2.3545606994628905, + "step": 22200 + }, + { + "epoch": 2.9733333333333336, + "grad_norm": 0.19995741546154022, + "learning_rate": 4.851366666666667e-05, + "loss": 2.35246826171875, + "step": 22300 + }, + { + "epoch": 2.986666666666667, + "grad_norm": 0.18662478029727936, + "learning_rate": 4.8507e-05, + "loss": 2.3534344482421874, + "step": 22400 + }, + { + "epoch": 3.0, + "grad_norm": 0.19860990345478058, + "learning_rate": 4.8500333333333334e-05, + "loss": 2.3527035522460937, + "step": 22500 + }, + { + "epoch": 3.013333333333333, + "grad_norm": 0.20039217174053192, + "learning_rate": 4.849366666666667e-05, + "loss": 2.348377532958984, + "step": 22600 + }, + { + "epoch": 3.026666666666667, + "grad_norm": 0.2021869421005249, + "learning_rate": 4.8487000000000005e-05, + "loss": 2.351779022216797, + "step": 22700 + }, + { + "epoch": 3.04, + "grad_norm": 0.1985320746898651, + "learning_rate": 4.848033333333333e-05, + "loss": 2.3483657836914062, + "step": 22800 + }, + { + "epoch": 3.0533333333333332, + "grad_norm": 0.1824573427438736, + "learning_rate": 4.847366666666667e-05, + "loss": 2.347190704345703, + "step": 22900 + }, + { + "epoch": 3.066666666666667, + "grad_norm": 0.19089816510677338, + "learning_rate": 4.8467e-05, + "loss": 2.3492135620117187, + "step": 23000 + }, + { + "epoch": 3.08, + "grad_norm": 0.23082399368286133, + "learning_rate": 4.8460333333333334e-05, + "loss": 2.348924560546875, + "step": 23100 + }, + { + "epoch": 3.0933333333333333, + "grad_norm": 0.18981102108955383, + "learning_rate": 4.8453666666666667e-05, + "loss": 2.350345001220703, + "step": 23200 + }, + { + "epoch": 3.1066666666666665, + "grad_norm": 0.19843408465385437, + "learning_rate": 4.8447000000000006e-05, + "loss": 2.3490699768066405, + "step": 23300 + }, + { + "epoch": 3.12, + "grad_norm": 0.19274167716503143, + "learning_rate": 4.844033333333334e-05, + "loss": 2.350037078857422, + "step": 23400 + }, + { + "epoch": 3.1333333333333333, + "grad_norm": 0.1848369985818863, + "learning_rate": 4.843366666666667e-05, + "loss": 2.3491517639160158, + "step": 23500 + }, + { + "epoch": 3.1466666666666665, + "grad_norm": 0.18349026143550873, + "learning_rate": 4.8427e-05, + "loss": 2.3494111633300783, + "step": 23600 + }, + { + "epoch": 3.16, + "grad_norm": 0.20055054128170013, + "learning_rate": 4.8420333333333335e-05, + "loss": 2.3514225769042967, + "step": 23700 + }, + { + "epoch": 3.1733333333333333, + "grad_norm": 0.17645560204982758, + "learning_rate": 4.841366666666667e-05, + "loss": 2.3496327209472656, + "step": 23800 + }, + { + "epoch": 3.1866666666666665, + "grad_norm": 0.20394593477249146, + "learning_rate": 4.8407e-05, + "loss": 2.34930908203125, + "step": 23900 + }, + { + "epoch": 3.2, + "grad_norm": 0.19807790219783783, + "learning_rate": 4.840033333333334e-05, + "loss": 2.350684814453125, + "step": 24000 + }, + { + "epoch": 3.2133333333333334, + "grad_norm": 0.19074247777462006, + "learning_rate": 4.839373333333334e-05, + "loss": 2.3482009887695314, + "step": 24100 + }, + { + "epoch": 3.2266666666666666, + "grad_norm": 0.184867724776268, + "learning_rate": 4.838706666666667e-05, + "loss": 2.3509567260742186, + "step": 24200 + }, + { + "epoch": 3.24, + "grad_norm": 0.20876654982566833, + "learning_rate": 4.83804e-05, + "loss": 2.351715393066406, + "step": 24300 + }, + { + "epoch": 3.2533333333333334, + "grad_norm": 0.20710976421833038, + "learning_rate": 4.837373333333334e-05, + "loss": 2.352671813964844, + "step": 24400 + }, + { + "epoch": 3.2666666666666666, + "grad_norm": 0.2047370821237564, + "learning_rate": 4.836706666666667e-05, + "loss": 2.347806701660156, + "step": 24500 + }, + { + "epoch": 3.2800000000000002, + "grad_norm": 0.19557665288448334, + "learning_rate": 4.83604e-05, + "loss": 2.3503456115722656, + "step": 24600 + }, + { + "epoch": 3.2933333333333334, + "grad_norm": 0.19264017045497894, + "learning_rate": 4.835373333333333e-05, + "loss": 2.350893859863281, + "step": 24700 + }, + { + "epoch": 3.3066666666666666, + "grad_norm": 0.1815241277217865, + "learning_rate": 4.834706666666667e-05, + "loss": 2.3506166076660158, + "step": 24800 + }, + { + "epoch": 3.32, + "grad_norm": 0.19273795187473297, + "learning_rate": 4.83404e-05, + "loss": 2.3491062927246094, + "step": 24900 + }, + { + "epoch": 3.3333333333333335, + "grad_norm": 0.1982475221157074, + "learning_rate": 4.8333733333333334e-05, + "loss": 2.350149383544922, + "step": 25000 + }, + { + "epoch": 3.3466666666666667, + "grad_norm": 0.19936062395572662, + "learning_rate": 4.8327066666666674e-05, + "loss": 2.349862518310547, + "step": 25100 + }, + { + "epoch": 3.36, + "grad_norm": 0.1829392910003662, + "learning_rate": 4.8320400000000006e-05, + "loss": 2.351768035888672, + "step": 25200 + }, + { + "epoch": 3.3733333333333335, + "grad_norm": 0.1831563413143158, + "learning_rate": 4.831373333333333e-05, + "loss": 2.351492919921875, + "step": 25300 + }, + { + "epoch": 3.3866666666666667, + "grad_norm": 0.20415860414505005, + "learning_rate": 4.830706666666667e-05, + "loss": 2.3486749267578126, + "step": 25400 + }, + { + "epoch": 3.4, + "grad_norm": 0.17977586388587952, + "learning_rate": 4.83004e-05, + "loss": 2.351340026855469, + "step": 25500 + }, + { + "epoch": 3.413333333333333, + "grad_norm": 0.1846362203359604, + "learning_rate": 4.8293733333333335e-05, + "loss": 2.351724090576172, + "step": 25600 + }, + { + "epoch": 3.4266666666666667, + "grad_norm": 0.18675661087036133, + "learning_rate": 4.828706666666667e-05, + "loss": 2.351480712890625, + "step": 25700 + }, + { + "epoch": 3.44, + "grad_norm": 0.18456125259399414, + "learning_rate": 4.8280400000000006e-05, + "loss": 2.3500599670410156, + "step": 25800 + }, + { + "epoch": 3.453333333333333, + "grad_norm": 0.19029958546161652, + "learning_rate": 4.827373333333334e-05, + "loss": 2.350344543457031, + "step": 25900 + }, + { + "epoch": 3.466666666666667, + "grad_norm": 0.17213845252990723, + "learning_rate": 4.826706666666667e-05, + "loss": 2.3511953735351563, + "step": 26000 + }, + { + "epoch": 3.48, + "grad_norm": 0.19007565081119537, + "learning_rate": 4.826046666666667e-05, + "loss": 2.3536442565917968, + "step": 26100 + }, + { + "epoch": 3.493333333333333, + "grad_norm": 0.2030433863401413, + "learning_rate": 4.82538e-05, + "loss": 2.3524905395507814, + "step": 26200 + }, + { + "epoch": 3.506666666666667, + "grad_norm": 0.1910092532634735, + "learning_rate": 4.8247133333333334e-05, + "loss": 2.349417419433594, + "step": 26300 + }, + { + "epoch": 3.52, + "grad_norm": 0.1992577612400055, + "learning_rate": 4.8240466666666667e-05, + "loss": 2.350249938964844, + "step": 26400 + }, + { + "epoch": 3.533333333333333, + "grad_norm": 0.2043229341506958, + "learning_rate": 4.82338e-05, + "loss": 2.3508177185058594, + "step": 26500 + }, + { + "epoch": 3.546666666666667, + "grad_norm": 0.19904406368732452, + "learning_rate": 4.822713333333334e-05, + "loss": 2.3501368713378907, + "step": 26600 + }, + { + "epoch": 3.56, + "grad_norm": 0.2048622965812683, + "learning_rate": 4.822046666666667e-05, + "loss": 2.3512261962890624, + "step": 26700 + }, + { + "epoch": 3.5733333333333333, + "grad_norm": 0.18168894946575165, + "learning_rate": 4.82138e-05, + "loss": 2.3506343078613283, + "step": 26800 + }, + { + "epoch": 3.586666666666667, + "grad_norm": 0.2186703383922577, + "learning_rate": 4.8207133333333335e-05, + "loss": 2.3507453918457033, + "step": 26900 + }, + { + "epoch": 3.6, + "grad_norm": 0.17658771574497223, + "learning_rate": 4.8200466666666674e-05, + "loss": 2.350555114746094, + "step": 27000 + }, + { + "epoch": 3.6133333333333333, + "grad_norm": 0.18329951167106628, + "learning_rate": 4.81938e-05, + "loss": 2.3507563781738283, + "step": 27100 + }, + { + "epoch": 3.626666666666667, + "grad_norm": 0.17677000164985657, + "learning_rate": 4.818713333333333e-05, + "loss": 2.3508815002441406, + "step": 27200 + }, + { + "epoch": 3.64, + "grad_norm": 0.18543322384357452, + "learning_rate": 4.818046666666667e-05, + "loss": 2.353324737548828, + "step": 27300 + }, + { + "epoch": 3.6533333333333333, + "grad_norm": 0.17043279111385345, + "learning_rate": 4.81738e-05, + "loss": 2.351223907470703, + "step": 27400 + }, + { + "epoch": 3.6666666666666665, + "grad_norm": 0.196268692612648, + "learning_rate": 4.8167133333333335e-05, + "loss": 2.348458557128906, + "step": 27500 + }, + { + "epoch": 3.68, + "grad_norm": 0.21252736449241638, + "learning_rate": 4.816046666666667e-05, + "loss": 2.351412811279297, + "step": 27600 + }, + { + "epoch": 3.6933333333333334, + "grad_norm": 0.1941421627998352, + "learning_rate": 4.8153800000000006e-05, + "loss": 2.3509474182128907, + "step": 27700 + }, + { + "epoch": 3.7066666666666666, + "grad_norm": 0.18156079947948456, + "learning_rate": 4.814713333333333e-05, + "loss": 2.3500953674316407, + "step": 27800 + }, + { + "epoch": 3.7199999999999998, + "grad_norm": 0.18474163115024567, + "learning_rate": 4.8140466666666664e-05, + "loss": 2.3500129699707033, + "step": 27900 + }, + { + "epoch": 3.7333333333333334, + "grad_norm": 0.1893375813961029, + "learning_rate": 4.81338e-05, + "loss": 2.3503759765625, + "step": 28000 + }, + { + "epoch": 3.7466666666666666, + "grad_norm": 0.18845497071743011, + "learning_rate": 4.81272e-05, + "loss": 2.3525970458984373, + "step": 28100 + }, + { + "epoch": 3.76, + "grad_norm": 0.21595294773578644, + "learning_rate": 4.8120533333333335e-05, + "loss": 2.3500466918945313, + "step": 28200 + }, + { + "epoch": 3.7733333333333334, + "grad_norm": 0.19505618512630463, + "learning_rate": 4.811386666666667e-05, + "loss": 2.349498748779297, + "step": 28300 + }, + { + "epoch": 3.7866666666666666, + "grad_norm": 0.17862743139266968, + "learning_rate": 4.81072e-05, + "loss": 2.348866424560547, + "step": 28400 + }, + { + "epoch": 3.8, + "grad_norm": 0.194855734705925, + "learning_rate": 4.810053333333334e-05, + "loss": 2.3509757995605467, + "step": 28500 + }, + { + "epoch": 3.8133333333333335, + "grad_norm": 0.19078636169433594, + "learning_rate": 4.809386666666667e-05, + "loss": 2.3488845825195312, + "step": 28600 + }, + { + "epoch": 3.8266666666666667, + "grad_norm": 0.18988379836082458, + "learning_rate": 4.80872e-05, + "loss": 2.35125244140625, + "step": 28700 + }, + { + "epoch": 3.84, + "grad_norm": 0.1913130134344101, + "learning_rate": 4.8080533333333335e-05, + "loss": 2.3494662475585937, + "step": 28800 + }, + { + "epoch": 3.8533333333333335, + "grad_norm": 0.2060711681842804, + "learning_rate": 4.807386666666667e-05, + "loss": 2.3524136352539062, + "step": 28900 + }, + { + "epoch": 3.8666666666666667, + "grad_norm": 0.18792103230953217, + "learning_rate": 4.80672e-05, + "loss": 2.351210479736328, + "step": 29000 + }, + { + "epoch": 3.88, + "grad_norm": 0.2034904658794403, + "learning_rate": 4.806053333333334e-05, + "loss": 2.3502317810058595, + "step": 29100 + }, + { + "epoch": 3.8933333333333335, + "grad_norm": 0.20705494284629822, + "learning_rate": 4.805386666666667e-05, + "loss": 2.3528851318359374, + "step": 29200 + }, + { + "epoch": 3.9066666666666667, + "grad_norm": 0.17130215466022491, + "learning_rate": 4.80472e-05, + "loss": 2.3496728515625, + "step": 29300 + }, + { + "epoch": 3.92, + "grad_norm": 0.22938485443592072, + "learning_rate": 4.8040533333333335e-05, + "loss": 2.3508564758300783, + "step": 29400 + }, + { + "epoch": 3.9333333333333336, + "grad_norm": 0.20697031915187836, + "learning_rate": 4.8033866666666674e-05, + "loss": 2.350555419921875, + "step": 29500 + }, + { + "epoch": 3.9466666666666668, + "grad_norm": 0.21105030179023743, + "learning_rate": 4.80272e-05, + "loss": 2.3500137329101562, + "step": 29600 + }, + { + "epoch": 3.96, + "grad_norm": 0.1795365959405899, + "learning_rate": 4.802053333333333e-05, + "loss": 2.351229705810547, + "step": 29700 + }, + { + "epoch": 3.9733333333333336, + "grad_norm": 0.20336268842220306, + "learning_rate": 4.801386666666667e-05, + "loss": 2.3524740600585936, + "step": 29800 + }, + { + "epoch": 3.986666666666667, + "grad_norm": 0.18867026269435883, + "learning_rate": 4.8007200000000003e-05, + "loss": 2.35136474609375, + "step": 29900 + }, + { + "epoch": 4.0, + "grad_norm": 0.1865285336971283, + "learning_rate": 4.8000533333333336e-05, + "loss": 2.3508816528320313, + "step": 30000 + }, + { + "epoch": 4.013333333333334, + "grad_norm": 0.19620107114315033, + "learning_rate": 4.7993933333333335e-05, + "loss": 2.344427185058594, + "step": 30100 + }, + { + "epoch": 4.026666666666666, + "grad_norm": 0.19542329013347626, + "learning_rate": 4.798726666666667e-05, + "loss": 2.3426863098144532, + "step": 30200 + }, + { + "epoch": 4.04, + "grad_norm": 0.19271595776081085, + "learning_rate": 4.7980600000000006e-05, + "loss": 2.340071258544922, + "step": 30300 + }, + { + "epoch": 4.053333333333334, + "grad_norm": 0.1889171600341797, + "learning_rate": 4.797393333333334e-05, + "loss": 2.338631896972656, + "step": 30400 + }, + { + "epoch": 4.066666666666666, + "grad_norm": 0.19066178798675537, + "learning_rate": 4.796726666666667e-05, + "loss": 2.342739715576172, + "step": 30500 + }, + { + "epoch": 4.08, + "grad_norm": 0.1947835087776184, + "learning_rate": 4.79606e-05, + "loss": 2.3432049560546875, + "step": 30600 + }, + { + "epoch": 4.093333333333334, + "grad_norm": 0.21322356164455414, + "learning_rate": 4.7953933333333335e-05, + "loss": 2.342285614013672, + "step": 30700 + }, + { + "epoch": 4.1066666666666665, + "grad_norm": 0.20188263058662415, + "learning_rate": 4.794726666666667e-05, + "loss": 2.3427188110351564, + "step": 30800 + }, + { + "epoch": 4.12, + "grad_norm": 0.19048044085502625, + "learning_rate": 4.79406e-05, + "loss": 2.3455911254882813, + "step": 30900 + }, + { + "epoch": 4.133333333333334, + "grad_norm": 0.20373786985874176, + "learning_rate": 4.793393333333334e-05, + "loss": 2.34266845703125, + "step": 31000 + }, + { + "epoch": 4.1466666666666665, + "grad_norm": 0.19136583805084229, + "learning_rate": 4.792726666666667e-05, + "loss": 2.345565185546875, + "step": 31100 + }, + { + "epoch": 4.16, + "grad_norm": 0.20485562086105347, + "learning_rate": 4.79206e-05, + "loss": 2.3444659423828127, + "step": 31200 + }, + { + "epoch": 4.173333333333334, + "grad_norm": 0.19716604053974152, + "learning_rate": 4.7913933333333336e-05, + "loss": 2.3462744140625, + "step": 31300 + }, + { + "epoch": 4.1866666666666665, + "grad_norm": 0.1901930719614029, + "learning_rate": 4.790726666666667e-05, + "loss": 2.3410409545898436, + "step": 31400 + }, + { + "epoch": 4.2, + "grad_norm": 0.19195866584777832, + "learning_rate": 4.79006e-05, + "loss": 2.3443292236328124, + "step": 31500 + }, + { + "epoch": 4.213333333333333, + "grad_norm": 0.19171933829784393, + "learning_rate": 4.789393333333333e-05, + "loss": 2.3432662963867186, + "step": 31600 + }, + { + "epoch": 4.226666666666667, + "grad_norm": 0.20632386207580566, + "learning_rate": 4.788726666666667e-05, + "loss": 2.3424139404296875, + "step": 31700 + }, + { + "epoch": 4.24, + "grad_norm": 0.20935772359371185, + "learning_rate": 4.7880600000000004e-05, + "loss": 2.3445693969726564, + "step": 31800 + }, + { + "epoch": 4.253333333333333, + "grad_norm": 0.2092011719942093, + "learning_rate": 4.7873933333333336e-05, + "loss": 2.3450819396972657, + "step": 31900 + }, + { + "epoch": 4.266666666666667, + "grad_norm": 0.18511556088924408, + "learning_rate": 4.786726666666667e-05, + "loss": 2.3434269714355467, + "step": 32000 + }, + { + "epoch": 4.28, + "grad_norm": 0.19721107184886932, + "learning_rate": 4.786066666666667e-05, + "loss": 2.3466552734375, + "step": 32100 + }, + { + "epoch": 4.293333333333333, + "grad_norm": 0.20387394726276398, + "learning_rate": 4.7854000000000006e-05, + "loss": 2.344354705810547, + "step": 32200 + }, + { + "epoch": 4.306666666666667, + "grad_norm": 0.1933874487876892, + "learning_rate": 4.784733333333333e-05, + "loss": 2.3450242614746095, + "step": 32300 + }, + { + "epoch": 4.32, + "grad_norm": 0.18852448463439941, + "learning_rate": 4.7840666666666664e-05, + "loss": 2.345384368896484, + "step": 32400 + }, + { + "epoch": 4.333333333333333, + "grad_norm": 0.1856076568365097, + "learning_rate": 4.7834e-05, + "loss": 2.3448046875, + "step": 32500 + }, + { + "epoch": 4.346666666666667, + "grad_norm": 0.1768845170736313, + "learning_rate": 4.7827333333333335e-05, + "loss": 2.3447705078125, + "step": 32600 + }, + { + "epoch": 4.36, + "grad_norm": 0.2036508321762085, + "learning_rate": 4.782066666666667e-05, + "loss": 2.3455548095703125, + "step": 32700 + }, + { + "epoch": 4.373333333333333, + "grad_norm": 0.2223418802022934, + "learning_rate": 4.7814e-05, + "loss": 2.345106353759766, + "step": 32800 + }, + { + "epoch": 4.386666666666667, + "grad_norm": 0.19732633233070374, + "learning_rate": 4.780733333333334e-05, + "loss": 2.34563720703125, + "step": 32900 + }, + { + "epoch": 4.4, + "grad_norm": 0.19825312495231628, + "learning_rate": 4.780066666666667e-05, + "loss": 2.3472279357910155, + "step": 33000 + }, + { + "epoch": 4.413333333333333, + "grad_norm": 0.20383819937705994, + "learning_rate": 4.7794e-05, + "loss": 2.3474839782714843, + "step": 33100 + }, + { + "epoch": 4.426666666666667, + "grad_norm": 0.18383854627609253, + "learning_rate": 4.7787333333333336e-05, + "loss": 2.347451171875, + "step": 33200 + }, + { + "epoch": 4.44, + "grad_norm": 0.2009461224079132, + "learning_rate": 4.778066666666667e-05, + "loss": 2.3456491088867186, + "step": 33300 + }, + { + "epoch": 4.453333333333333, + "grad_norm": 0.1955096274614334, + "learning_rate": 4.7774e-05, + "loss": 2.347562255859375, + "step": 33400 + }, + { + "epoch": 4.466666666666667, + "grad_norm": 0.1971255987882614, + "learning_rate": 4.776733333333334e-05, + "loss": 2.3455210876464845, + "step": 33500 + }, + { + "epoch": 4.48, + "grad_norm": 0.2104266732931137, + "learning_rate": 4.776066666666667e-05, + "loss": 2.3482284545898438, + "step": 33600 + }, + { + "epoch": 4.493333333333333, + "grad_norm": 0.19855403900146484, + "learning_rate": 4.7754000000000004e-05, + "loss": 2.345506439208984, + "step": 33700 + }, + { + "epoch": 4.506666666666667, + "grad_norm": 0.1903480589389801, + "learning_rate": 4.7747333333333336e-05, + "loss": 2.345941925048828, + "step": 33800 + }, + { + "epoch": 4.52, + "grad_norm": 0.18413390219211578, + "learning_rate": 4.774066666666667e-05, + "loss": 2.345931091308594, + "step": 33900 + }, + { + "epoch": 4.533333333333333, + "grad_norm": 0.2099205106496811, + "learning_rate": 4.7734e-05, + "loss": 2.34525146484375, + "step": 34000 + }, + { + "epoch": 4.546666666666667, + "grad_norm": 0.19890472292900085, + "learning_rate": 4.77274e-05, + "loss": 2.3454127502441406, + "step": 34100 + }, + { + "epoch": 4.5600000000000005, + "grad_norm": 0.1928263008594513, + "learning_rate": 4.772073333333333e-05, + "loss": 2.3484063720703126, + "step": 34200 + }, + { + "epoch": 4.573333333333333, + "grad_norm": 0.19899751245975494, + "learning_rate": 4.771406666666667e-05, + "loss": 2.344409637451172, + "step": 34300 + }, + { + "epoch": 4.586666666666667, + "grad_norm": 0.19718094170093536, + "learning_rate": 4.77074e-05, + "loss": 2.346121520996094, + "step": 34400 + }, + { + "epoch": 4.6, + "grad_norm": 0.20367039740085602, + "learning_rate": 4.7700733333333336e-05, + "loss": 2.3464027404785157, + "step": 34500 + }, + { + "epoch": 4.613333333333333, + "grad_norm": 0.2027977555990219, + "learning_rate": 4.769406666666667e-05, + "loss": 2.346643371582031, + "step": 34600 + }, + { + "epoch": 4.626666666666667, + "grad_norm": 0.19116739928722382, + "learning_rate": 4.768740000000001e-05, + "loss": 2.3448785400390624, + "step": 34700 + }, + { + "epoch": 4.64, + "grad_norm": 0.1741366684436798, + "learning_rate": 4.768073333333334e-05, + "loss": 2.3467585754394533, + "step": 34800 + }, + { + "epoch": 4.653333333333333, + "grad_norm": 0.19366861879825592, + "learning_rate": 4.7674066666666665e-05, + "loss": 2.346854248046875, + "step": 34900 + }, + { + "epoch": 4.666666666666667, + "grad_norm": 0.1961996853351593, + "learning_rate": 4.7667400000000004e-05, + "loss": 2.346597442626953, + "step": 35000 + }, + { + "epoch": 4.68, + "grad_norm": 0.20493026077747345, + "learning_rate": 4.7660733333333336e-05, + "loss": 2.3467396545410155, + "step": 35100 + }, + { + "epoch": 4.693333333333333, + "grad_norm": 0.19343268871307373, + "learning_rate": 4.765406666666667e-05, + "loss": 2.345442352294922, + "step": 35200 + }, + { + "epoch": 4.706666666666667, + "grad_norm": 0.19839325547218323, + "learning_rate": 4.76474e-05, + "loss": 2.348248291015625, + "step": 35300 + }, + { + "epoch": 4.72, + "grad_norm": 0.19443462789058685, + "learning_rate": 4.764073333333334e-05, + "loss": 2.3478456115722657, + "step": 35400 + }, + { + "epoch": 4.733333333333333, + "grad_norm": 0.18703633546829224, + "learning_rate": 4.763406666666667e-05, + "loss": 2.3447303771972656, + "step": 35500 + }, + { + "epoch": 4.746666666666667, + "grad_norm": 0.19159509241580963, + "learning_rate": 4.76274e-05, + "loss": 2.3463864135742187, + "step": 35600 + }, + { + "epoch": 4.76, + "grad_norm": 0.19903169572353363, + "learning_rate": 4.7620733333333336e-05, + "loss": 2.347983093261719, + "step": 35700 + }, + { + "epoch": 4.773333333333333, + "grad_norm": 0.19707246124744415, + "learning_rate": 4.761406666666667e-05, + "loss": 2.3435577392578124, + "step": 35800 + }, + { + "epoch": 4.786666666666667, + "grad_norm": 0.183243989944458, + "learning_rate": 4.76074e-05, + "loss": 2.346152038574219, + "step": 35900 + }, + { + "epoch": 4.8, + "grad_norm": 0.1864614188671112, + "learning_rate": 4.760073333333333e-05, + "loss": 2.3478399658203126, + "step": 36000 + }, + { + "epoch": 4.8133333333333335, + "grad_norm": 0.19538547098636627, + "learning_rate": 4.759413333333333e-05, + "loss": 2.34772705078125, + "step": 36100 + }, + { + "epoch": 4.826666666666666, + "grad_norm": 0.19601057469844818, + "learning_rate": 4.758746666666667e-05, + "loss": 2.3468177795410154, + "step": 36200 + }, + { + "epoch": 4.84, + "grad_norm": 0.19639572501182556, + "learning_rate": 4.7580800000000004e-05, + "loss": 2.3478041076660157, + "step": 36300 + }, + { + "epoch": 4.8533333333333335, + "grad_norm": 0.19426213204860687, + "learning_rate": 4.7574133333333336e-05, + "loss": 2.345642547607422, + "step": 36400 + }, + { + "epoch": 4.866666666666667, + "grad_norm": 0.17866654694080353, + "learning_rate": 4.756746666666667e-05, + "loss": 2.3476348876953126, + "step": 36500 + }, + { + "epoch": 4.88, + "grad_norm": 0.20611488819122314, + "learning_rate": 4.75608e-05, + "loss": 2.3455621337890626, + "step": 36600 + }, + { + "epoch": 4.8933333333333335, + "grad_norm": 0.19792433083057404, + "learning_rate": 4.755413333333333e-05, + "loss": 2.3475059509277343, + "step": 36700 + }, + { + "epoch": 4.906666666666666, + "grad_norm": 0.20012043416500092, + "learning_rate": 4.7547466666666665e-05, + "loss": 2.3476327514648436, + "step": 36800 + }, + { + "epoch": 4.92, + "grad_norm": 0.21811543405056, + "learning_rate": 4.7540800000000004e-05, + "loss": 2.3479005432128908, + "step": 36900 + }, + { + "epoch": 4.933333333333334, + "grad_norm": 0.18837958574295044, + "learning_rate": 4.7534133333333336e-05, + "loss": 2.3472393798828124, + "step": 37000 + }, + { + "epoch": 4.946666666666666, + "grad_norm": 0.20428119599819183, + "learning_rate": 4.752746666666667e-05, + "loss": 2.3473336791992185, + "step": 37100 + }, + { + "epoch": 4.96, + "grad_norm": 0.2100653052330017, + "learning_rate": 4.752080000000001e-05, + "loss": 2.3485343933105467, + "step": 37200 + }, + { + "epoch": 4.973333333333334, + "grad_norm": 0.19952954351902008, + "learning_rate": 4.751413333333334e-05, + "loss": 2.347123718261719, + "step": 37300 + }, + { + "epoch": 4.986666666666666, + "grad_norm": 0.19739681482315063, + "learning_rate": 4.7507466666666665e-05, + "loss": 2.347565155029297, + "step": 37400 + }, + { + "epoch": 5.0, + "grad_norm": 0.20094037055969238, + "learning_rate": 4.75008e-05, + "loss": 2.3468731689453124, + "step": 37500 + }, + { + "epoch": 5.013333333333334, + "grad_norm": 0.21585266292095184, + "learning_rate": 4.749413333333334e-05, + "loss": 2.333679962158203, + "step": 37600 + }, + { + "epoch": 5.026666666666666, + "grad_norm": 0.20911413431167603, + "learning_rate": 4.748746666666667e-05, + "loss": 2.3350621032714844, + "step": 37700 + }, + { + "epoch": 5.04, + "grad_norm": 0.19561605155467987, + "learning_rate": 4.74808e-05, + "loss": 2.334278564453125, + "step": 37800 + }, + { + "epoch": 5.053333333333334, + "grad_norm": 0.2007005661725998, + "learning_rate": 4.747413333333334e-05, + "loss": 2.3355723571777345, + "step": 37900 + }, + { + "epoch": 5.066666666666666, + "grad_norm": 0.21478916704654694, + "learning_rate": 4.746746666666667e-05, + "loss": 2.335912628173828, + "step": 38000 + }, + { + "epoch": 5.08, + "grad_norm": 0.20300929248332977, + "learning_rate": 4.74608e-05, + "loss": 2.3348677062988283, + "step": 38100 + }, + { + "epoch": 5.093333333333334, + "grad_norm": 0.1893633008003235, + "learning_rate": 4.7454200000000004e-05, + "loss": 2.3340078735351564, + "step": 38200 + }, + { + "epoch": 5.1066666666666665, + "grad_norm": 0.20675773918628693, + "learning_rate": 4.7447533333333336e-05, + "loss": 2.3374041748046874, + "step": 38300 + }, + { + "epoch": 5.12, + "grad_norm": 0.21601155400276184, + "learning_rate": 4.744086666666667e-05, + "loss": 2.3355015563964843, + "step": 38400 + }, + { + "epoch": 5.133333333333334, + "grad_norm": 0.20173364877700806, + "learning_rate": 4.74342e-05, + "loss": 2.336921844482422, + "step": 38500 + }, + { + "epoch": 5.1466666666666665, + "grad_norm": 0.19146205484867096, + "learning_rate": 4.742753333333333e-05, + "loss": 2.338092956542969, + "step": 38600 + }, + { + "epoch": 5.16, + "grad_norm": 0.19151638448238373, + "learning_rate": 4.742086666666667e-05, + "loss": 2.337191162109375, + "step": 38700 + }, + { + "epoch": 5.173333333333334, + "grad_norm": 0.19342660903930664, + "learning_rate": 4.7414200000000004e-05, + "loss": 2.338902893066406, + "step": 38800 + }, + { + "epoch": 5.1866666666666665, + "grad_norm": 0.18506617844104767, + "learning_rate": 4.7407533333333336e-05, + "loss": 2.3370294189453125, + "step": 38900 + }, + { + "epoch": 5.2, + "grad_norm": 0.1852942407131195, + "learning_rate": 4.740086666666667e-05, + "loss": 2.3374237060546874, + "step": 39000 + }, + { + "epoch": 5.213333333333333, + "grad_norm": 0.22944355010986328, + "learning_rate": 4.73942e-05, + "loss": 2.336438751220703, + "step": 39100 + }, + { + "epoch": 5.226666666666667, + "grad_norm": 0.19692735373973846, + "learning_rate": 4.738753333333333e-05, + "loss": 2.3369683837890625, + "step": 39200 + }, + { + "epoch": 5.24, + "grad_norm": 0.21631871163845062, + "learning_rate": 4.7380866666666666e-05, + "loss": 2.3371484375, + "step": 39300 + }, + { + "epoch": 5.253333333333333, + "grad_norm": 0.20942172408103943, + "learning_rate": 4.7374200000000005e-05, + "loss": 2.3369624328613283, + "step": 39400 + }, + { + "epoch": 5.266666666666667, + "grad_norm": 0.1939464509487152, + "learning_rate": 4.736753333333334e-05, + "loss": 2.337432556152344, + "step": 39500 + }, + { + "epoch": 5.28, + "grad_norm": 0.17876707017421722, + "learning_rate": 4.736086666666667e-05, + "loss": 2.3396649169921875, + "step": 39600 + }, + { + "epoch": 5.293333333333333, + "grad_norm": 0.21455919742584229, + "learning_rate": 4.73542e-05, + "loss": 2.3403550720214845, + "step": 39700 + }, + { + "epoch": 5.306666666666667, + "grad_norm": 0.19953106343746185, + "learning_rate": 4.734753333333334e-05, + "loss": 2.3371241760253905, + "step": 39800 + }, + { + "epoch": 5.32, + "grad_norm": 0.19843876361846924, + "learning_rate": 4.7340866666666666e-05, + "loss": 2.3368731689453126, + "step": 39900 + }, + { + "epoch": 5.333333333333333, + "grad_norm": 0.20457053184509277, + "learning_rate": 4.73342e-05, + "loss": 2.3382992553710937, + "step": 40000 + }, + { + "epoch": 5.346666666666667, + "grad_norm": 0.195728600025177, + "learning_rate": 4.732753333333334e-05, + "loss": 2.337715911865234, + "step": 40100 + }, + { + "epoch": 5.36, + "grad_norm": 0.19587790966033936, + "learning_rate": 4.7320933333333336e-05, + "loss": 2.3404110717773436, + "step": 40200 + }, + { + "epoch": 5.373333333333333, + "grad_norm": 0.20648671686649323, + "learning_rate": 4.731426666666667e-05, + "loss": 2.3392234802246095, + "step": 40300 + }, + { + "epoch": 5.386666666666667, + "grad_norm": 0.1902915984392166, + "learning_rate": 4.73076e-05, + "loss": 2.3366790771484376, + "step": 40400 + }, + { + "epoch": 5.4, + "grad_norm": 0.19474172592163086, + "learning_rate": 4.730093333333333e-05, + "loss": 2.337915344238281, + "step": 40500 + }, + { + "epoch": 5.413333333333333, + "grad_norm": 0.19446231424808502, + "learning_rate": 4.729426666666667e-05, + "loss": 2.3386886596679686, + "step": 40600 + }, + { + "epoch": 5.426666666666667, + "grad_norm": 0.18280309438705444, + "learning_rate": 4.7287600000000004e-05, + "loss": 2.3403004455566405, + "step": 40700 + }, + { + "epoch": 5.44, + "grad_norm": 0.1899874061346054, + "learning_rate": 4.728093333333334e-05, + "loss": 2.3395709228515624, + "step": 40800 + }, + { + "epoch": 5.453333333333333, + "grad_norm": 0.21245285868644714, + "learning_rate": 4.727426666666667e-05, + "loss": 2.341641693115234, + "step": 40900 + }, + { + "epoch": 5.466666666666667, + "grad_norm": 0.18492910265922546, + "learning_rate": 4.72676e-05, + "loss": 2.338828277587891, + "step": 41000 + }, + { + "epoch": 5.48, + "grad_norm": 0.19576863944530487, + "learning_rate": 4.7260933333333334e-05, + "loss": 2.340592498779297, + "step": 41100 + }, + { + "epoch": 5.493333333333333, + "grad_norm": 0.21991156041622162, + "learning_rate": 4.7254266666666666e-05, + "loss": 2.3374070739746093, + "step": 41200 + }, + { + "epoch": 5.506666666666667, + "grad_norm": 0.2011844664812088, + "learning_rate": 4.7247600000000005e-05, + "loss": 2.340482025146484, + "step": 41300 + }, + { + "epoch": 5.52, + "grad_norm": 0.1887616068124771, + "learning_rate": 4.724093333333334e-05, + "loss": 2.3403477478027344, + "step": 41400 + }, + { + "epoch": 5.533333333333333, + "grad_norm": 0.2083723396062851, + "learning_rate": 4.723426666666667e-05, + "loss": 2.338939361572266, + "step": 41500 + }, + { + "epoch": 5.546666666666667, + "grad_norm": 0.20391573011875153, + "learning_rate": 4.72276e-05, + "loss": 2.341011962890625, + "step": 41600 + }, + { + "epoch": 5.5600000000000005, + "grad_norm": 0.2055550515651703, + "learning_rate": 4.7220933333333334e-05, + "loss": 2.3417536926269533, + "step": 41700 + }, + { + "epoch": 5.573333333333333, + "grad_norm": 0.20119526982307434, + "learning_rate": 4.7214266666666666e-05, + "loss": 2.341081390380859, + "step": 41800 + }, + { + "epoch": 5.586666666666667, + "grad_norm": 0.19019430875778198, + "learning_rate": 4.7207600000000005e-05, + "loss": 2.3428114318847655, + "step": 41900 + }, + { + "epoch": 5.6, + "grad_norm": 0.21287046372890472, + "learning_rate": 4.720093333333334e-05, + "loss": 2.3393617248535157, + "step": 42000 + }, + { + "epoch": 5.613333333333333, + "grad_norm": 0.19636501371860504, + "learning_rate": 4.719426666666667e-05, + "loss": 2.341305694580078, + "step": 42100 + }, + { + "epoch": 5.626666666666667, + "grad_norm": 0.19112545251846313, + "learning_rate": 4.718766666666667e-05, + "loss": 2.338633728027344, + "step": 42200 + }, + { + "epoch": 5.64, + "grad_norm": 0.2038842886686325, + "learning_rate": 4.7181e-05, + "loss": 2.341297302246094, + "step": 42300 + }, + { + "epoch": 5.653333333333333, + "grad_norm": 0.20965079963207245, + "learning_rate": 4.717433333333334e-05, + "loss": 2.341322784423828, + "step": 42400 + }, + { + "epoch": 5.666666666666667, + "grad_norm": 0.2007293701171875, + "learning_rate": 4.716766666666667e-05, + "loss": 2.3385604858398437, + "step": 42500 + }, + { + "epoch": 5.68, + "grad_norm": 0.2063182145357132, + "learning_rate": 4.7161e-05, + "loss": 2.33922119140625, + "step": 42600 + }, + { + "epoch": 5.693333333333333, + "grad_norm": 0.2027292102575302, + "learning_rate": 4.715433333333334e-05, + "loss": 2.3407470703125, + "step": 42700 + }, + { + "epoch": 5.706666666666667, + "grad_norm": 0.1970498412847519, + "learning_rate": 4.714766666666667e-05, + "loss": 2.34189697265625, + "step": 42800 + }, + { + "epoch": 5.72, + "grad_norm": 0.21546319127082825, + "learning_rate": 4.7141e-05, + "loss": 2.3410997009277343, + "step": 42900 + }, + { + "epoch": 5.733333333333333, + "grad_norm": 0.20953406393527985, + "learning_rate": 4.7134333333333334e-05, + "loss": 2.341014404296875, + "step": 43000 + }, + { + "epoch": 5.746666666666667, + "grad_norm": 0.18453386425971985, + "learning_rate": 4.712766666666667e-05, + "loss": 2.3420458984375, + "step": 43100 + }, + { + "epoch": 5.76, + "grad_norm": 0.18693557381629944, + "learning_rate": 4.7121000000000005e-05, + "loss": 2.3417478942871095, + "step": 43200 + }, + { + "epoch": 5.773333333333333, + "grad_norm": 0.20244468748569489, + "learning_rate": 4.711433333333334e-05, + "loss": 2.341094970703125, + "step": 43300 + }, + { + "epoch": 5.786666666666667, + "grad_norm": 0.2122134268283844, + "learning_rate": 4.710766666666667e-05, + "loss": 2.339507598876953, + "step": 43400 + }, + { + "epoch": 5.8, + "grad_norm": 0.19113102555274963, + "learning_rate": 4.7101e-05, + "loss": 2.3414321899414063, + "step": 43500 + }, + { + "epoch": 5.8133333333333335, + "grad_norm": 0.2206200510263443, + "learning_rate": 4.7094333333333334e-05, + "loss": 2.341671600341797, + "step": 43600 + }, + { + "epoch": 5.826666666666666, + "grad_norm": 0.20389395952224731, + "learning_rate": 4.7087666666666666e-05, + "loss": 2.340543060302734, + "step": 43700 + }, + { + "epoch": 5.84, + "grad_norm": 0.20174798369407654, + "learning_rate": 4.7081000000000005e-05, + "loss": 2.339455261230469, + "step": 43800 + }, + { + "epoch": 5.8533333333333335, + "grad_norm": 0.20874814689159393, + "learning_rate": 4.707433333333334e-05, + "loss": 2.340840301513672, + "step": 43900 + }, + { + "epoch": 5.866666666666667, + "grad_norm": 0.19134193658828735, + "learning_rate": 4.706766666666667e-05, + "loss": 2.341136016845703, + "step": 44000 + }, + { + "epoch": 5.88, + "grad_norm": 0.21130426228046417, + "learning_rate": 4.7061e-05, + "loss": 2.341613311767578, + "step": 44100 + }, + { + "epoch": 5.8933333333333335, + "grad_norm": 0.23179572820663452, + "learning_rate": 4.70544e-05, + "loss": 2.3433583068847654, + "step": 44200 + }, + { + "epoch": 5.906666666666666, + "grad_norm": 0.1910688281059265, + "learning_rate": 4.704773333333334e-05, + "loss": 2.3415071105957033, + "step": 44300 + }, + { + "epoch": 5.92, + "grad_norm": 0.20032565295696259, + "learning_rate": 4.7041066666666666e-05, + "loss": 2.3411441040039063, + "step": 44400 + }, + { + "epoch": 5.933333333333334, + "grad_norm": 0.19156421720981598, + "learning_rate": 4.70344e-05, + "loss": 2.3405520629882814, + "step": 44500 + }, + { + "epoch": 5.946666666666666, + "grad_norm": 0.1907392293214798, + "learning_rate": 4.702773333333334e-05, + "loss": 2.3425755310058594, + "step": 44600 + }, + { + "epoch": 5.96, + "grad_norm": 0.200932115316391, + "learning_rate": 4.702106666666667e-05, + "loss": 2.3439457702636717, + "step": 44700 + }, + { + "epoch": 5.973333333333334, + "grad_norm": 0.2054533064365387, + "learning_rate": 4.70144e-05, + "loss": 2.3415347290039064, + "step": 44800 + }, + { + "epoch": 5.986666666666666, + "grad_norm": 0.20519991219043732, + "learning_rate": 4.7007733333333334e-05, + "loss": 2.3422901916503904, + "step": 44900 + }, + { + "epoch": 6.0, + "grad_norm": 0.19351975619792938, + "learning_rate": 4.700106666666667e-05, + "loss": 2.343433380126953, + "step": 45000 + }, + { + "epoch": 6.013333333333334, + "grad_norm": 0.20407870411872864, + "learning_rate": 4.69944e-05, + "loss": 2.3262948608398437, + "step": 45100 + }, + { + "epoch": 6.026666666666666, + "grad_norm": 0.19466857612133026, + "learning_rate": 4.698773333333333e-05, + "loss": 2.326324462890625, + "step": 45200 + }, + { + "epoch": 6.04, + "grad_norm": 0.20036247372627258, + "learning_rate": 4.698106666666667e-05, + "loss": 2.3274658203125, + "step": 45300 + }, + { + "epoch": 6.053333333333334, + "grad_norm": 0.20382268726825714, + "learning_rate": 4.69744e-05, + "loss": 2.325162353515625, + "step": 45400 + }, + { + "epoch": 6.066666666666666, + "grad_norm": 0.21262048184871674, + "learning_rate": 4.6967733333333334e-05, + "loss": 2.3246685791015627, + "step": 45500 + }, + { + "epoch": 6.08, + "grad_norm": 0.19266580045223236, + "learning_rate": 4.696106666666667e-05, + "loss": 2.3265760803222655, + "step": 45600 + }, + { + "epoch": 6.093333333333334, + "grad_norm": 0.1924133151769638, + "learning_rate": 4.6954400000000006e-05, + "loss": 2.3272021484375, + "step": 45700 + }, + { + "epoch": 6.1066666666666665, + "grad_norm": 0.1988048404455185, + "learning_rate": 4.694773333333334e-05, + "loss": 2.327220916748047, + "step": 45800 + }, + { + "epoch": 6.12, + "grad_norm": 0.1879425197839737, + "learning_rate": 4.6941066666666663e-05, + "loss": 2.328949737548828, + "step": 45900 + }, + { + "epoch": 6.133333333333334, + "grad_norm": 0.23073047399520874, + "learning_rate": 4.69344e-05, + "loss": 2.328899230957031, + "step": 46000 + }, + { + "epoch": 6.1466666666666665, + "grad_norm": 0.20694105327129364, + "learning_rate": 4.6927733333333335e-05, + "loss": 2.329393005371094, + "step": 46100 + }, + { + "epoch": 6.16, + "grad_norm": 0.2188512235879898, + "learning_rate": 4.6921133333333334e-05, + "loss": 2.3258409118652343, + "step": 46200 + }, + { + "epoch": 6.173333333333334, + "grad_norm": 0.18700923025608063, + "learning_rate": 4.6914466666666666e-05, + "loss": 2.331009979248047, + "step": 46300 + }, + { + "epoch": 6.1866666666666665, + "grad_norm": 0.20359359681606293, + "learning_rate": 4.69078e-05, + "loss": 2.3292669677734374, + "step": 46400 + }, + { + "epoch": 6.2, + "grad_norm": 0.22610503435134888, + "learning_rate": 4.690113333333334e-05, + "loss": 2.330577850341797, + "step": 46500 + }, + { + "epoch": 6.213333333333333, + "grad_norm": 0.18864652514457703, + "learning_rate": 4.689446666666667e-05, + "loss": 2.330567626953125, + "step": 46600 + }, + { + "epoch": 6.226666666666667, + "grad_norm": 0.20041510462760925, + "learning_rate": 4.68878e-05, + "loss": 2.327003173828125, + "step": 46700 + }, + { + "epoch": 6.24, + "grad_norm": 0.21242272853851318, + "learning_rate": 4.688113333333334e-05, + "loss": 2.3281683349609374, + "step": 46800 + }, + { + "epoch": 6.253333333333333, + "grad_norm": 0.19361090660095215, + "learning_rate": 4.6874466666666666e-05, + "loss": 2.331831512451172, + "step": 46900 + }, + { + "epoch": 6.266666666666667, + "grad_norm": 0.20165066421031952, + "learning_rate": 4.68678e-05, + "loss": 2.3307310485839845, + "step": 47000 + }, + { + "epoch": 6.28, + "grad_norm": 0.18842047452926636, + "learning_rate": 4.686113333333334e-05, + "loss": 2.3280589294433596, + "step": 47100 + }, + { + "epoch": 6.293333333333333, + "grad_norm": 0.2256300151348114, + "learning_rate": 4.685446666666667e-05, + "loss": 2.3284527587890627, + "step": 47200 + }, + { + "epoch": 6.306666666666667, + "grad_norm": 0.18087539076805115, + "learning_rate": 4.68478e-05, + "loss": 2.3301324462890625, + "step": 47300 + }, + { + "epoch": 6.32, + "grad_norm": 0.207829549908638, + "learning_rate": 4.6841133333333335e-05, + "loss": 2.330213623046875, + "step": 47400 + }, + { + "epoch": 6.333333333333333, + "grad_norm": 0.19543009996414185, + "learning_rate": 4.6834466666666674e-05, + "loss": 2.3290335083007814, + "step": 47500 + }, + { + "epoch": 6.346666666666667, + "grad_norm": 0.2060248702764511, + "learning_rate": 4.6827800000000006e-05, + "loss": 2.331068572998047, + "step": 47600 + }, + { + "epoch": 6.36, + "grad_norm": 0.2179960161447525, + "learning_rate": 4.682113333333333e-05, + "loss": 2.330615997314453, + "step": 47700 + }, + { + "epoch": 6.373333333333333, + "grad_norm": 0.22476692497730255, + "learning_rate": 4.681446666666667e-05, + "loss": 2.3329974365234376, + "step": 47800 + }, + { + "epoch": 6.386666666666667, + "grad_norm": 0.1948496699333191, + "learning_rate": 4.68078e-05, + "loss": 2.3322357177734374, + "step": 47900 + }, + { + "epoch": 6.4, + "grad_norm": 0.19658160209655762, + "learning_rate": 4.6801133333333335e-05, + "loss": 2.329741668701172, + "step": 48000 + }, + { + "epoch": 6.413333333333333, + "grad_norm": 0.21576018631458282, + "learning_rate": 4.679446666666667e-05, + "loss": 2.331051788330078, + "step": 48100 + }, + { + "epoch": 6.426666666666667, + "grad_norm": 0.20465338230133057, + "learning_rate": 4.6787866666666666e-05, + "loss": 2.3314564514160154, + "step": 48200 + }, + { + "epoch": 6.44, + "grad_norm": 0.2254284769296646, + "learning_rate": 4.6781200000000005e-05, + "loss": 2.3306893920898437, + "step": 48300 + }, + { + "epoch": 6.453333333333333, + "grad_norm": 0.21523387730121613, + "learning_rate": 4.677453333333334e-05, + "loss": 2.3328369140625, + "step": 48400 + }, + { + "epoch": 6.466666666666667, + "grad_norm": 0.20994578301906586, + "learning_rate": 4.676786666666667e-05, + "loss": 2.3308122253417967, + "step": 48500 + }, + { + "epoch": 6.48, + "grad_norm": 0.21397413313388824, + "learning_rate": 4.67612e-05, + "loss": 2.3299708557128906, + "step": 48600 + }, + { + "epoch": 6.493333333333333, + "grad_norm": 0.20089605450630188, + "learning_rate": 4.6754533333333334e-05, + "loss": 2.3305317687988283, + "step": 48700 + }, + { + "epoch": 6.506666666666667, + "grad_norm": 0.21305248141288757, + "learning_rate": 4.674786666666667e-05, + "loss": 2.3314739990234377, + "step": 48800 + }, + { + "epoch": 6.52, + "grad_norm": 0.20678336918354034, + "learning_rate": 4.67412e-05, + "loss": 2.3338267517089846, + "step": 48900 + }, + { + "epoch": 6.533333333333333, + "grad_norm": 0.20186908543109894, + "learning_rate": 4.673453333333334e-05, + "loss": 2.3309475708007814, + "step": 49000 + }, + { + "epoch": 6.546666666666667, + "grad_norm": 0.1907065063714981, + "learning_rate": 4.672786666666667e-05, + "loss": 2.3316998291015625, + "step": 49100 + }, + { + "epoch": 6.5600000000000005, + "grad_norm": 0.21854570508003235, + "learning_rate": 4.67212e-05, + "loss": 2.3346012878417968, + "step": 49200 + }, + { + "epoch": 6.573333333333333, + "grad_norm": 0.1847628653049469, + "learning_rate": 4.6714533333333335e-05, + "loss": 2.3357057189941406, + "step": 49300 + }, + { + "epoch": 6.586666666666667, + "grad_norm": 0.19201835989952087, + "learning_rate": 4.670786666666667e-05, + "loss": 2.3363993835449217, + "step": 49400 + }, + { + "epoch": 6.6, + "grad_norm": 0.19336426258087158, + "learning_rate": 4.67012e-05, + "loss": 2.3319854736328125, + "step": 49500 + }, + { + "epoch": 6.613333333333333, + "grad_norm": 0.20099902153015137, + "learning_rate": 4.669453333333333e-05, + "loss": 2.3336613464355467, + "step": 49600 + }, + { + "epoch": 6.626666666666667, + "grad_norm": 0.1986514925956726, + "learning_rate": 4.668786666666667e-05, + "loss": 2.3317831420898436, + "step": 49700 + }, + { + "epoch": 6.64, + "grad_norm": 0.20249810814857483, + "learning_rate": 4.66812e-05, + "loss": 2.3329707336425782, + "step": 49800 + }, + { + "epoch": 6.653333333333333, + "grad_norm": 0.21656836569309235, + "learning_rate": 4.6674533333333335e-05, + "loss": 2.3322386169433593, + "step": 49900 + }, + { + "epoch": 6.666666666666667, + "grad_norm": 0.19392716884613037, + "learning_rate": 4.666786666666667e-05, + "loss": 2.334392852783203, + "step": 50000 + }, + { + "epoch": 6.68, + "grad_norm": 0.19600430130958557, + "learning_rate": 4.6661200000000007e-05, + "loss": 2.3346022033691405, + "step": 50100 + }, + { + "epoch": 6.693333333333333, + "grad_norm": 0.21334628760814667, + "learning_rate": 4.6654600000000006e-05, + "loss": 2.3344834899902343, + "step": 50200 + }, + { + "epoch": 6.706666666666667, + "grad_norm": 0.19854342937469482, + "learning_rate": 4.664793333333334e-05, + "loss": 2.3333599853515623, + "step": 50300 + }, + { + "epoch": 6.72, + "grad_norm": 0.2086271196603775, + "learning_rate": 4.664126666666666e-05, + "loss": 2.335559997558594, + "step": 50400 + }, + { + "epoch": 6.733333333333333, + "grad_norm": 0.20393237471580505, + "learning_rate": 4.66346e-05, + "loss": 2.3350341796875, + "step": 50500 + }, + { + "epoch": 6.746666666666667, + "grad_norm": 0.2037380337715149, + "learning_rate": 4.6627933333333335e-05, + "loss": 2.3359445190429686, + "step": 50600 + }, + { + "epoch": 6.76, + "grad_norm": 0.2010214924812317, + "learning_rate": 4.662126666666667e-05, + "loss": 2.333213348388672, + "step": 50700 + }, + { + "epoch": 6.773333333333333, + "grad_norm": 0.211711123585701, + "learning_rate": 4.6614600000000006e-05, + "loss": 2.333146209716797, + "step": 50800 + }, + { + "epoch": 6.786666666666667, + "grad_norm": 0.20048975944519043, + "learning_rate": 4.660793333333334e-05, + "loss": 2.332876892089844, + "step": 50900 + }, + { + "epoch": 6.8, + "grad_norm": 0.20532432198524475, + "learning_rate": 4.660126666666667e-05, + "loss": 2.335528564453125, + "step": 51000 + }, + { + "epoch": 6.8133333333333335, + "grad_norm": 0.19597899913787842, + "learning_rate": 4.65946e-05, + "loss": 2.3326602172851563, + "step": 51100 + }, + { + "epoch": 6.826666666666666, + "grad_norm": 0.20233699679374695, + "learning_rate": 4.6587933333333335e-05, + "loss": 2.3346743774414063, + "step": 51200 + }, + { + "epoch": 6.84, + "grad_norm": 0.1949591040611267, + "learning_rate": 4.658126666666667e-05, + "loss": 2.335735168457031, + "step": 51300 + }, + { + "epoch": 6.8533333333333335, + "grad_norm": 0.1934141367673874, + "learning_rate": 4.65746e-05, + "loss": 2.335612487792969, + "step": 51400 + }, + { + "epoch": 6.866666666666667, + "grad_norm": 0.2191038280725479, + "learning_rate": 4.656793333333334e-05, + "loss": 2.3345936584472655, + "step": 51500 + }, + { + "epoch": 6.88, + "grad_norm": 0.20383000373840332, + "learning_rate": 4.656126666666667e-05, + "loss": 2.3339216613769533, + "step": 51600 + }, + { + "epoch": 6.8933333333333335, + "grad_norm": 0.19669340550899506, + "learning_rate": 4.65546e-05, + "loss": 2.3346900939941406, + "step": 51700 + }, + { + "epoch": 6.906666666666666, + "grad_norm": 0.20373137295246124, + "learning_rate": 4.6547933333333335e-05, + "loss": 2.3349125671386717, + "step": 51800 + }, + { + "epoch": 6.92, + "grad_norm": 0.2109116166830063, + "learning_rate": 4.654126666666667e-05, + "loss": 2.3348736572265625, + "step": 51900 + }, + { + "epoch": 6.933333333333334, + "grad_norm": 0.21398979425430298, + "learning_rate": 4.65346e-05, + "loss": 2.336753692626953, + "step": 52000 + }, + { + "epoch": 6.946666666666666, + "grad_norm": 0.1936953067779541, + "learning_rate": 4.652793333333333e-05, + "loss": 2.3369993591308593, + "step": 52100 + }, + { + "epoch": 6.96, + "grad_norm": 0.22233432531356812, + "learning_rate": 4.652133333333333e-05, + "loss": 2.3361253356933593, + "step": 52200 + }, + { + "epoch": 6.973333333333334, + "grad_norm": 0.20416876673698425, + "learning_rate": 4.651466666666667e-05, + "loss": 2.3360031127929686, + "step": 52300 + }, + { + "epoch": 6.986666666666666, + "grad_norm": 0.2030036300420761, + "learning_rate": 4.6508e-05, + "loss": 2.337208099365234, + "step": 52400 + }, + { + "epoch": 7.0, + "grad_norm": 0.19202755391597748, + "learning_rate": 4.6501333333333335e-05, + "loss": 2.336151123046875, + "step": 52500 + }, + { + "epoch": 7.013333333333334, + "grad_norm": 0.206998810172081, + "learning_rate": 4.649466666666667e-05, + "loss": 2.315085906982422, + "step": 52600 + }, + { + "epoch": 7.026666666666666, + "grad_norm": 0.2254278063774109, + "learning_rate": 4.6488000000000006e-05, + "loss": 2.316161651611328, + "step": 52700 + }, + { + "epoch": 7.04, + "grad_norm": 0.2177981585264206, + "learning_rate": 4.648133333333334e-05, + "loss": 2.3162889099121093, + "step": 52800 + }, + { + "epoch": 7.053333333333334, + "grad_norm": 0.22323600947856903, + "learning_rate": 4.6474666666666664e-05, + "loss": 2.3178530883789064, + "step": 52900 + }, + { + "epoch": 7.066666666666666, + "grad_norm": 0.20918424427509308, + "learning_rate": 4.6468e-05, + "loss": 2.315562438964844, + "step": 53000 + }, + { + "epoch": 7.08, + "grad_norm": 0.22114083170890808, + "learning_rate": 4.6461333333333335e-05, + "loss": 2.315318145751953, + "step": 53100 + }, + { + "epoch": 7.093333333333334, + "grad_norm": 0.19929060339927673, + "learning_rate": 4.645466666666667e-05, + "loss": 2.319254913330078, + "step": 53200 + }, + { + "epoch": 7.1066666666666665, + "grad_norm": 0.22897835075855255, + "learning_rate": 4.6448e-05, + "loss": 2.3185064697265627, + "step": 53300 + }, + { + "epoch": 7.12, + "grad_norm": 0.20979653298854828, + "learning_rate": 4.644133333333334e-05, + "loss": 2.3153074645996092, + "step": 53400 + }, + { + "epoch": 7.133333333333334, + "grad_norm": 0.208432137966156, + "learning_rate": 4.643466666666667e-05, + "loss": 2.3188551330566405, + "step": 53500 + }, + { + "epoch": 7.1466666666666665, + "grad_norm": 0.2060391902923584, + "learning_rate": 4.6428000000000003e-05, + "loss": 2.319374694824219, + "step": 53600 + }, + { + "epoch": 7.16, + "grad_norm": 0.2240801900625229, + "learning_rate": 4.6421333333333336e-05, + "loss": 2.315366668701172, + "step": 53700 + }, + { + "epoch": 7.173333333333334, + "grad_norm": 0.21705488860607147, + "learning_rate": 4.641466666666667e-05, + "loss": 2.320493469238281, + "step": 53800 + }, + { + "epoch": 7.1866666666666665, + "grad_norm": 0.22233860194683075, + "learning_rate": 4.6408e-05, + "loss": 2.318059844970703, + "step": 53900 + }, + { + "epoch": 7.2, + "grad_norm": 0.2171303927898407, + "learning_rate": 4.640133333333333e-05, + "loss": 2.320230712890625, + "step": 54000 + }, + { + "epoch": 7.213333333333333, + "grad_norm": 0.21981152892112732, + "learning_rate": 4.639466666666667e-05, + "loss": 2.3186485290527346, + "step": 54100 + }, + { + "epoch": 7.226666666666667, + "grad_norm": 0.2230496108531952, + "learning_rate": 4.638806666666667e-05, + "loss": 2.3200640869140625, + "step": 54200 + }, + { + "epoch": 7.24, + "grad_norm": 0.2142811268568039, + "learning_rate": 4.63814e-05, + "loss": 2.3188714599609375, + "step": 54300 + }, + { + "epoch": 7.253333333333333, + "grad_norm": 0.20586246252059937, + "learning_rate": 4.6374733333333335e-05, + "loss": 2.3214300537109374, + "step": 54400 + }, + { + "epoch": 7.266666666666667, + "grad_norm": 0.206768199801445, + "learning_rate": 4.636806666666667e-05, + "loss": 2.317760467529297, + "step": 54500 + }, + { + "epoch": 7.28, + "grad_norm": 0.22308428585529327, + "learning_rate": 4.6361400000000006e-05, + "loss": 2.32193359375, + "step": 54600 + }, + { + "epoch": 7.293333333333333, + "grad_norm": 0.21023783087730408, + "learning_rate": 4.635473333333333e-05, + "loss": 2.321294860839844, + "step": 54700 + }, + { + "epoch": 7.306666666666667, + "grad_norm": 0.20875036716461182, + "learning_rate": 4.6348066666666664e-05, + "loss": 2.3194563293457033, + "step": 54800 + }, + { + "epoch": 7.32, + "grad_norm": 0.22223174571990967, + "learning_rate": 4.63414e-05, + "loss": 2.3206028747558594, + "step": 54900 + }, + { + "epoch": 7.333333333333333, + "grad_norm": 0.19239133596420288, + "learning_rate": 4.6334733333333336e-05, + "loss": 2.321158599853516, + "step": 55000 + }, + { + "epoch": 7.346666666666667, + "grad_norm": 0.22706732153892517, + "learning_rate": 4.632806666666667e-05, + "loss": 2.3212765502929686, + "step": 55100 + }, + { + "epoch": 7.36, + "grad_norm": 0.23205487430095673, + "learning_rate": 4.632140000000001e-05, + "loss": 2.322073974609375, + "step": 55200 + }, + { + "epoch": 7.373333333333333, + "grad_norm": 0.2067403942346573, + "learning_rate": 4.631473333333334e-05, + "loss": 2.3220693969726565, + "step": 55300 + }, + { + "epoch": 7.386666666666667, + "grad_norm": 0.20351338386535645, + "learning_rate": 4.6308066666666665e-05, + "loss": 2.32278076171875, + "step": 55400 + }, + { + "epoch": 7.4, + "grad_norm": 0.21386387944221497, + "learning_rate": 4.6301400000000004e-05, + "loss": 2.3235244750976562, + "step": 55500 + }, + { + "epoch": 7.413333333333333, + "grad_norm": 0.2237972617149353, + "learning_rate": 4.6294733333333336e-05, + "loss": 2.3205836486816405, + "step": 55600 + }, + { + "epoch": 7.426666666666667, + "grad_norm": 0.196205735206604, + "learning_rate": 4.628806666666667e-05, + "loss": 2.324235687255859, + "step": 55700 + }, + { + "epoch": 7.44, + "grad_norm": 0.20559580624103546, + "learning_rate": 4.62814e-05, + "loss": 2.3239215087890623, + "step": 55800 + }, + { + "epoch": 7.453333333333333, + "grad_norm": 0.22416776418685913, + "learning_rate": 4.627473333333334e-05, + "loss": 2.3214433288574217, + "step": 55900 + }, + { + "epoch": 7.466666666666667, + "grad_norm": 0.20037733018398285, + "learning_rate": 4.626806666666667e-05, + "loss": 2.322022247314453, + "step": 56000 + }, + { + "epoch": 7.48, + "grad_norm": 0.21654389798641205, + "learning_rate": 4.6261400000000004e-05, + "loss": 2.3236199951171876, + "step": 56100 + }, + { + "epoch": 7.493333333333333, + "grad_norm": 0.21859359741210938, + "learning_rate": 4.62548e-05, + "loss": 2.3238677978515625, + "step": 56200 + }, + { + "epoch": 7.506666666666667, + "grad_norm": 0.22405706346035004, + "learning_rate": 4.6248133333333335e-05, + "loss": 2.326851654052734, + "step": 56300 + }, + { + "epoch": 7.52, + "grad_norm": 0.1978028565645218, + "learning_rate": 4.624146666666667e-05, + "loss": 2.3240150451660155, + "step": 56400 + }, + { + "epoch": 7.533333333333333, + "grad_norm": 0.21222999691963196, + "learning_rate": 4.62348e-05, + "loss": 2.3225338745117186, + "step": 56500 + }, + { + "epoch": 7.546666666666667, + "grad_norm": 0.22027376294136047, + "learning_rate": 4.622813333333333e-05, + "loss": 2.324446563720703, + "step": 56600 + }, + { + "epoch": 7.5600000000000005, + "grad_norm": 0.21182918548583984, + "learning_rate": 4.622146666666667e-05, + "loss": 2.3254127502441406, + "step": 56700 + }, + { + "epoch": 7.573333333333333, + "grad_norm": 0.19568821787834167, + "learning_rate": 4.6214800000000003e-05, + "loss": 2.325800323486328, + "step": 56800 + }, + { + "epoch": 7.586666666666667, + "grad_norm": 0.20319704711437225, + "learning_rate": 4.6208133333333336e-05, + "loss": 2.325161590576172, + "step": 56900 + }, + { + "epoch": 7.6, + "grad_norm": 0.22199761867523193, + "learning_rate": 4.620146666666667e-05, + "loss": 2.3248526000976564, + "step": 57000 + }, + { + "epoch": 7.613333333333333, + "grad_norm": 0.19542196393013, + "learning_rate": 4.619480000000001e-05, + "loss": 2.3250607299804686, + "step": 57100 + }, + { + "epoch": 7.626666666666667, + "grad_norm": 0.19808714091777802, + "learning_rate": 4.618813333333333e-05, + "loss": 2.3261805725097657, + "step": 57200 + }, + { + "epoch": 7.64, + "grad_norm": 0.22000600397586823, + "learning_rate": 4.6181466666666665e-05, + "loss": 2.3237953186035156, + "step": 57300 + }, + { + "epoch": 7.653333333333333, + "grad_norm": 0.2083161324262619, + "learning_rate": 4.6174800000000004e-05, + "loss": 2.3280027770996092, + "step": 57400 + }, + { + "epoch": 7.666666666666667, + "grad_norm": 0.2168016880750656, + "learning_rate": 4.6168133333333336e-05, + "loss": 2.324162902832031, + "step": 57500 + }, + { + "epoch": 7.68, + "grad_norm": 0.21734952926635742, + "learning_rate": 4.616146666666667e-05, + "loss": 2.3249171447753905, + "step": 57600 + }, + { + "epoch": 7.693333333333333, + "grad_norm": 0.20479203760623932, + "learning_rate": 4.61548e-05, + "loss": 2.327186737060547, + "step": 57700 + }, + { + "epoch": 7.706666666666667, + "grad_norm": 0.2028800994157791, + "learning_rate": 4.614813333333334e-05, + "loss": 2.327611999511719, + "step": 57800 + }, + { + "epoch": 7.72, + "grad_norm": 0.21738632023334503, + "learning_rate": 4.6141466666666665e-05, + "loss": 2.324887390136719, + "step": 57900 + }, + { + "epoch": 7.733333333333333, + "grad_norm": 0.227495938539505, + "learning_rate": 4.61348e-05, + "loss": 2.3263511657714844, + "step": 58000 + }, + { + "epoch": 7.746666666666667, + "grad_norm": 0.22351373732089996, + "learning_rate": 4.6128133333333337e-05, + "loss": 2.324449005126953, + "step": 58100 + }, + { + "epoch": 7.76, + "grad_norm": 0.19855080544948578, + "learning_rate": 4.6121533333333336e-05, + "loss": 2.3279388427734373, + "step": 58200 + }, + { + "epoch": 7.773333333333333, + "grad_norm": 0.21258243918418884, + "learning_rate": 4.611486666666667e-05, + "loss": 2.3258876037597656, + "step": 58300 + }, + { + "epoch": 7.786666666666667, + "grad_norm": 0.23399053514003754, + "learning_rate": 4.61082e-05, + "loss": 2.328024597167969, + "step": 58400 + }, + { + "epoch": 7.8, + "grad_norm": 0.20555289089679718, + "learning_rate": 4.610153333333333e-05, + "loss": 2.324607391357422, + "step": 58500 + }, + { + "epoch": 7.8133333333333335, + "grad_norm": 0.22223757207393646, + "learning_rate": 4.609486666666667e-05, + "loss": 2.328887634277344, + "step": 58600 + }, + { + "epoch": 7.826666666666666, + "grad_norm": 0.20944397151470184, + "learning_rate": 4.6088200000000004e-05, + "loss": 2.326324005126953, + "step": 58700 + }, + { + "epoch": 7.84, + "grad_norm": 0.21754513680934906, + "learning_rate": 4.6081533333333336e-05, + "loss": 2.3285617065429687, + "step": 58800 + }, + { + "epoch": 7.8533333333333335, + "grad_norm": 0.2218855917453766, + "learning_rate": 4.607486666666667e-05, + "loss": 2.3279769897460936, + "step": 58900 + }, + { + "epoch": 7.866666666666667, + "grad_norm": 0.2152242809534073, + "learning_rate": 4.60682e-05, + "loss": 2.327835998535156, + "step": 59000 + }, + { + "epoch": 7.88, + "grad_norm": 0.19836048781871796, + "learning_rate": 4.606153333333333e-05, + "loss": 2.330382843017578, + "step": 59100 + }, + { + "epoch": 7.8933333333333335, + "grad_norm": 0.2070547193288803, + "learning_rate": 4.6054866666666665e-05, + "loss": 2.328244171142578, + "step": 59200 + }, + { + "epoch": 7.906666666666666, + "grad_norm": 0.2064908742904663, + "learning_rate": 4.6048200000000004e-05, + "loss": 2.327570037841797, + "step": 59300 + }, + { + "epoch": 7.92, + "grad_norm": 0.19223378598690033, + "learning_rate": 4.6041533333333336e-05, + "loss": 2.327322540283203, + "step": 59400 + }, + { + "epoch": 7.933333333333334, + "grad_norm": 0.2263549417257309, + "learning_rate": 4.603486666666667e-05, + "loss": 2.329267120361328, + "step": 59500 + }, + { + "epoch": 7.946666666666666, + "grad_norm": 0.21715712547302246, + "learning_rate": 4.602820000000001e-05, + "loss": 2.3234599304199217, + "step": 59600 + }, + { + "epoch": 7.96, + "grad_norm": 0.2264692485332489, + "learning_rate": 4.602153333333333e-05, + "loss": 2.326782531738281, + "step": 59700 + }, + { + "epoch": 7.973333333333334, + "grad_norm": 0.20843270421028137, + "learning_rate": 4.6014866666666665e-05, + "loss": 2.3266970825195314, + "step": 59800 + }, + { + "epoch": 7.986666666666666, + "grad_norm": 0.20484039187431335, + "learning_rate": 4.6008200000000004e-05, + "loss": 2.3275350952148437, + "step": 59900 + }, + { + "epoch": 8.0, + "grad_norm": 0.21979759633541107, + "learning_rate": 4.600153333333334e-05, + "loss": 2.327262115478516, + "step": 60000 + }, + { + "epoch": 8.013333333333334, + "grad_norm": 0.2148316353559494, + "learning_rate": 4.599486666666667e-05, + "loss": 2.3032371520996096, + "step": 60100 + }, + { + "epoch": 8.026666666666667, + "grad_norm": 0.2427894026041031, + "learning_rate": 4.598826666666667e-05, + "loss": 2.306138000488281, + "step": 60200 + }, + { + "epoch": 8.04, + "grad_norm": 0.23417937755584717, + "learning_rate": 4.59816e-05, + "loss": 2.3055377197265625, + "step": 60300 + }, + { + "epoch": 8.053333333333333, + "grad_norm": 0.22597885131835938, + "learning_rate": 4.597493333333334e-05, + "loss": 2.308175354003906, + "step": 60400 + }, + { + "epoch": 8.066666666666666, + "grad_norm": 0.22343474626541138, + "learning_rate": 4.596826666666667e-05, + "loss": 2.3064723205566406, + "step": 60500 + }, + { + "epoch": 8.08, + "grad_norm": 0.22558583319187164, + "learning_rate": 4.5961600000000004e-05, + "loss": 2.305071258544922, + "step": 60600 + }, + { + "epoch": 8.093333333333334, + "grad_norm": 0.20653437077999115, + "learning_rate": 4.5954933333333336e-05, + "loss": 2.307345428466797, + "step": 60700 + }, + { + "epoch": 8.106666666666667, + "grad_norm": 0.2216809093952179, + "learning_rate": 4.594826666666667e-05, + "loss": 2.3047059631347655, + "step": 60800 + }, + { + "epoch": 8.12, + "grad_norm": 0.22799284756183624, + "learning_rate": 4.59416e-05, + "loss": 2.307566833496094, + "step": 60900 + }, + { + "epoch": 8.133333333333333, + "grad_norm": 0.22076313197612762, + "learning_rate": 4.593493333333333e-05, + "loss": 2.3049078369140625, + "step": 61000 + }, + { + "epoch": 8.146666666666667, + "grad_norm": 0.2266998142004013, + "learning_rate": 4.592826666666667e-05, + "loss": 2.3053494262695313, + "step": 61100 + }, + { + "epoch": 8.16, + "grad_norm": 0.23705247044563293, + "learning_rate": 4.5921600000000004e-05, + "loss": 2.3077027893066404, + "step": 61200 + }, + { + "epoch": 8.173333333333334, + "grad_norm": 0.21669632196426392, + "learning_rate": 4.5914933333333337e-05, + "loss": 2.3076458740234376, + "step": 61300 + }, + { + "epoch": 8.186666666666667, + "grad_norm": 0.2006712257862091, + "learning_rate": 4.590826666666667e-05, + "loss": 2.3063531494140626, + "step": 61400 + }, + { + "epoch": 8.2, + "grad_norm": 0.21064023673534393, + "learning_rate": 4.59016e-05, + "loss": 2.3089945983886717, + "step": 61500 + }, + { + "epoch": 8.213333333333333, + "grad_norm": 0.21858380734920502, + "learning_rate": 4.589493333333333e-05, + "loss": 2.307320098876953, + "step": 61600 + }, + { + "epoch": 8.226666666666667, + "grad_norm": 0.21644806861877441, + "learning_rate": 4.5888266666666666e-05, + "loss": 2.3085394287109375, + "step": 61700 + }, + { + "epoch": 8.24, + "grad_norm": 0.22975999116897583, + "learning_rate": 4.5881600000000005e-05, + "loss": 2.3101947021484377, + "step": 61800 + }, + { + "epoch": 8.253333333333334, + "grad_norm": 0.21924324333667755, + "learning_rate": 4.587493333333334e-05, + "loss": 2.3123768615722655, + "step": 61900 + }, + { + "epoch": 8.266666666666667, + "grad_norm": 0.22921468317508698, + "learning_rate": 4.586826666666667e-05, + "loss": 2.3115985107421877, + "step": 62000 + }, + { + "epoch": 8.28, + "grad_norm": 0.21891409158706665, + "learning_rate": 4.58616e-05, + "loss": 2.309479217529297, + "step": 62100 + }, + { + "epoch": 8.293333333333333, + "grad_norm": 0.22286993265151978, + "learning_rate": 4.5855e-05, + "loss": 2.3122218322753905, + "step": 62200 + }, + { + "epoch": 8.306666666666667, + "grad_norm": 0.24152639508247375, + "learning_rate": 4.584833333333334e-05, + "loss": 2.308910217285156, + "step": 62300 + }, + { + "epoch": 8.32, + "grad_norm": 0.21503682434558868, + "learning_rate": 4.5841666666666665e-05, + "loss": 2.307999572753906, + "step": 62400 + }, + { + "epoch": 8.333333333333334, + "grad_norm": 0.20558761060237885, + "learning_rate": 4.5835e-05, + "loss": 2.3080621337890626, + "step": 62500 + }, + { + "epoch": 8.346666666666668, + "grad_norm": 0.21116876602172852, + "learning_rate": 4.5828333333333336e-05, + "loss": 2.3105264282226563, + "step": 62600 + }, + { + "epoch": 8.36, + "grad_norm": 0.2325267195701599, + "learning_rate": 4.582166666666667e-05, + "loss": 2.309617919921875, + "step": 62700 + }, + { + "epoch": 8.373333333333333, + "grad_norm": 0.2288995385169983, + "learning_rate": 4.5815e-05, + "loss": 2.3135015869140627, + "step": 62800 + }, + { + "epoch": 8.386666666666667, + "grad_norm": 0.23661412298679352, + "learning_rate": 4.580833333333333e-05, + "loss": 2.311595153808594, + "step": 62900 + }, + { + "epoch": 8.4, + "grad_norm": 0.22704863548278809, + "learning_rate": 4.580166666666667e-05, + "loss": 2.311846160888672, + "step": 63000 + }, + { + "epoch": 8.413333333333334, + "grad_norm": 0.21123670041561127, + "learning_rate": 4.5795000000000005e-05, + "loss": 2.3099000549316404, + "step": 63100 + }, + { + "epoch": 8.426666666666666, + "grad_norm": 0.22051377594470978, + "learning_rate": 4.578833333333333e-05, + "loss": 2.314755401611328, + "step": 63200 + }, + { + "epoch": 8.44, + "grad_norm": 0.21824777126312256, + "learning_rate": 4.578166666666667e-05, + "loss": 2.3122979736328126, + "step": 63300 + }, + { + "epoch": 8.453333333333333, + "grad_norm": 0.2141052782535553, + "learning_rate": 4.5775e-05, + "loss": 2.314187316894531, + "step": 63400 + }, + { + "epoch": 8.466666666666667, + "grad_norm": 0.22229032218456268, + "learning_rate": 4.5768333333333334e-05, + "loss": 2.3118528747558593, + "step": 63500 + }, + { + "epoch": 8.48, + "grad_norm": 0.21177971363067627, + "learning_rate": 4.576166666666667e-05, + "loss": 2.314485626220703, + "step": 63600 + }, + { + "epoch": 8.493333333333334, + "grad_norm": 0.2159062772989273, + "learning_rate": 4.5755000000000005e-05, + "loss": 2.3116845703125, + "step": 63700 + }, + { + "epoch": 8.506666666666666, + "grad_norm": 0.21478477120399475, + "learning_rate": 4.574833333333334e-05, + "loss": 2.3143507385253907, + "step": 63800 + }, + { + "epoch": 8.52, + "grad_norm": 0.22522731125354767, + "learning_rate": 4.574166666666667e-05, + "loss": 2.315663604736328, + "step": 63900 + }, + { + "epoch": 8.533333333333333, + "grad_norm": 0.22168120741844177, + "learning_rate": 4.5735e-05, + "loss": 2.3135195922851564, + "step": 64000 + }, + { + "epoch": 8.546666666666667, + "grad_norm": 0.2298642098903656, + "learning_rate": 4.5728333333333334e-05, + "loss": 2.315981140136719, + "step": 64100 + }, + { + "epoch": 8.56, + "grad_norm": 0.2253265529870987, + "learning_rate": 4.572173333333333e-05, + "loss": 2.315703887939453, + "step": 64200 + }, + { + "epoch": 8.573333333333334, + "grad_norm": 0.22435899078845978, + "learning_rate": 4.5715066666666665e-05, + "loss": 2.314583282470703, + "step": 64300 + }, + { + "epoch": 8.586666666666666, + "grad_norm": 0.21293385326862335, + "learning_rate": 4.5708400000000004e-05, + "loss": 2.3148568725585936, + "step": 64400 + }, + { + "epoch": 8.6, + "grad_norm": 0.2217615693807602, + "learning_rate": 4.570173333333334e-05, + "loss": 2.3133966064453126, + "step": 64500 + }, + { + "epoch": 8.613333333333333, + "grad_norm": 0.21577724814414978, + "learning_rate": 4.569506666666667e-05, + "loss": 2.3160128784179688, + "step": 64600 + }, + { + "epoch": 8.626666666666667, + "grad_norm": 0.20894163846969604, + "learning_rate": 4.56884e-05, + "loss": 2.316580505371094, + "step": 64700 + }, + { + "epoch": 8.64, + "grad_norm": 0.22660347819328308, + "learning_rate": 4.568173333333334e-05, + "loss": 2.3132757568359374, + "step": 64800 + }, + { + "epoch": 8.653333333333332, + "grad_norm": 0.20169147849082947, + "learning_rate": 4.567506666666667e-05, + "loss": 2.3164935302734375, + "step": 64900 + }, + { + "epoch": 8.666666666666666, + "grad_norm": 0.22867351770401, + "learning_rate": 4.56684e-05, + "loss": 2.3162477111816404, + "step": 65000 + }, + { + "epoch": 8.68, + "grad_norm": 0.23090234398841858, + "learning_rate": 4.566173333333334e-05, + "loss": 2.3189874267578126, + "step": 65100 + }, + { + "epoch": 8.693333333333333, + "grad_norm": 0.22201119363307953, + "learning_rate": 4.565506666666667e-05, + "loss": 2.31669921875, + "step": 65200 + }, + { + "epoch": 8.706666666666667, + "grad_norm": 0.2174353450536728, + "learning_rate": 4.56484e-05, + "loss": 2.3188742065429686, + "step": 65300 + }, + { + "epoch": 8.72, + "grad_norm": 0.21239978075027466, + "learning_rate": 4.5641733333333334e-05, + "loss": 2.3161309814453124, + "step": 65400 + }, + { + "epoch": 8.733333333333333, + "grad_norm": 0.19849137961864471, + "learning_rate": 4.563506666666667e-05, + "loss": 2.3190155029296875, + "step": 65500 + }, + { + "epoch": 8.746666666666666, + "grad_norm": 0.2238064557313919, + "learning_rate": 4.5628400000000005e-05, + "loss": 2.3172088623046876, + "step": 65600 + }, + { + "epoch": 8.76, + "grad_norm": 0.22363531589508057, + "learning_rate": 4.562173333333333e-05, + "loss": 2.3175604248046877, + "step": 65700 + }, + { + "epoch": 8.773333333333333, + "grad_norm": 0.22062158584594727, + "learning_rate": 4.561506666666667e-05, + "loss": 2.3156175231933593, + "step": 65800 + }, + { + "epoch": 8.786666666666667, + "grad_norm": 0.2074691206216812, + "learning_rate": 4.56084e-05, + "loss": 2.317613372802734, + "step": 65900 + }, + { + "epoch": 8.8, + "grad_norm": 0.21585817635059357, + "learning_rate": 4.5601733333333334e-05, + "loss": 2.317025909423828, + "step": 66000 + }, + { + "epoch": 8.813333333333333, + "grad_norm": 0.24289225041866302, + "learning_rate": 4.5595066666666666e-05, + "loss": 2.3176622009277343, + "step": 66100 + }, + { + "epoch": 8.826666666666666, + "grad_norm": 0.22260883450508118, + "learning_rate": 4.5588466666666666e-05, + "loss": 2.3193907165527343, + "step": 66200 + }, + { + "epoch": 8.84, + "grad_norm": 0.20685255527496338, + "learning_rate": 4.5581800000000005e-05, + "loss": 2.3187965393066405, + "step": 66300 + }, + { + "epoch": 8.853333333333333, + "grad_norm": 0.2502782940864563, + "learning_rate": 4.557513333333334e-05, + "loss": 2.3181417846679686, + "step": 66400 + }, + { + "epoch": 8.866666666666667, + "grad_norm": 0.20513685047626495, + "learning_rate": 4.556846666666667e-05, + "loss": 2.318340606689453, + "step": 66500 + }, + { + "epoch": 8.88, + "grad_norm": 0.2085087150335312, + "learning_rate": 4.55618e-05, + "loss": 2.320625762939453, + "step": 66600 + }, + { + "epoch": 8.893333333333333, + "grad_norm": 0.2202482372522354, + "learning_rate": 4.5555133333333334e-05, + "loss": 2.317662811279297, + "step": 66700 + }, + { + "epoch": 8.906666666666666, + "grad_norm": 0.20364412665367126, + "learning_rate": 4.5548466666666666e-05, + "loss": 2.320509796142578, + "step": 66800 + }, + { + "epoch": 8.92, + "grad_norm": 0.2078937292098999, + "learning_rate": 4.55418e-05, + "loss": 2.3180162048339845, + "step": 66900 + }, + { + "epoch": 8.933333333333334, + "grad_norm": 0.21178776025772095, + "learning_rate": 4.553513333333334e-05, + "loss": 2.318477783203125, + "step": 67000 + }, + { + "epoch": 8.946666666666667, + "grad_norm": 0.2264500856399536, + "learning_rate": 4.552846666666667e-05, + "loss": 2.321943511962891, + "step": 67100 + }, + { + "epoch": 8.96, + "grad_norm": 0.2113855928182602, + "learning_rate": 4.55218e-05, + "loss": 2.318071746826172, + "step": 67200 + }, + { + "epoch": 8.973333333333333, + "grad_norm": 0.19603019952774048, + "learning_rate": 4.5515133333333334e-05, + "loss": 2.3197503662109376, + "step": 67300 + }, + { + "epoch": 8.986666666666666, + "grad_norm": 0.2236277014017105, + "learning_rate": 4.550846666666667e-05, + "loss": 2.320359344482422, + "step": 67400 + }, + { + "epoch": 9.0, + "grad_norm": 0.21920901536941528, + "learning_rate": 4.55018e-05, + "loss": 2.318968963623047, + "step": 67500 + }, + { + "epoch": 9.013333333333334, + "grad_norm": 0.23331010341644287, + "learning_rate": 4.549513333333333e-05, + "loss": 2.2941917419433593, + "step": 67600 + }, + { + "epoch": 9.026666666666667, + "grad_norm": 0.21596217155456543, + "learning_rate": 4.548846666666667e-05, + "loss": 2.290107421875, + "step": 67700 + }, + { + "epoch": 9.04, + "grad_norm": 0.22891509532928467, + "learning_rate": 4.54818e-05, + "loss": 2.2925718688964842, + "step": 67800 + }, + { + "epoch": 9.053333333333333, + "grad_norm": 0.21967433393001556, + "learning_rate": 4.5475133333333334e-05, + "loss": 2.2921377563476564, + "step": 67900 + }, + { + "epoch": 9.066666666666666, + "grad_norm": 0.25205832719802856, + "learning_rate": 4.5468466666666673e-05, + "loss": 2.293820037841797, + "step": 68000 + }, + { + "epoch": 9.08, + "grad_norm": 0.2291940152645111, + "learning_rate": 4.5461800000000006e-05, + "loss": 2.293941650390625, + "step": 68100 + }, + { + "epoch": 9.093333333333334, + "grad_norm": 0.23932799696922302, + "learning_rate": 4.5455200000000005e-05, + "loss": 2.2932688903808596, + "step": 68200 + }, + { + "epoch": 9.106666666666667, + "grad_norm": 0.22407028079032898, + "learning_rate": 4.544853333333334e-05, + "loss": 2.296217193603516, + "step": 68300 + }, + { + "epoch": 9.12, + "grad_norm": 0.2332010418176651, + "learning_rate": 4.544186666666667e-05, + "loss": 2.296667022705078, + "step": 68400 + }, + { + "epoch": 9.133333333333333, + "grad_norm": 0.22865130007266998, + "learning_rate": 4.54352e-05, + "loss": 2.2938783264160154, + "step": 68500 + }, + { + "epoch": 9.146666666666667, + "grad_norm": 0.23731687664985657, + "learning_rate": 4.5428533333333334e-05, + "loss": 2.296278381347656, + "step": 68600 + }, + { + "epoch": 9.16, + "grad_norm": 0.21626006066799164, + "learning_rate": 4.5421866666666666e-05, + "loss": 2.2968585205078127, + "step": 68700 + }, + { + "epoch": 9.173333333333334, + "grad_norm": 0.23821845650672913, + "learning_rate": 4.5415200000000005e-05, + "loss": 2.2977059936523436, + "step": 68800 + }, + { + "epoch": 9.186666666666667, + "grad_norm": 0.2369178831577301, + "learning_rate": 4.540853333333334e-05, + "loss": 2.296495208740234, + "step": 68900 + }, + { + "epoch": 9.2, + "grad_norm": 0.22190576791763306, + "learning_rate": 4.540186666666667e-05, + "loss": 2.297707366943359, + "step": 69000 + }, + { + "epoch": 9.213333333333333, + "grad_norm": 0.22970540821552277, + "learning_rate": 4.53952e-05, + "loss": 2.2968077087402343, + "step": 69100 + }, + { + "epoch": 9.226666666666667, + "grad_norm": 0.23141416907310486, + "learning_rate": 4.5388533333333334e-05, + "loss": 2.297506103515625, + "step": 69200 + }, + { + "epoch": 9.24, + "grad_norm": 0.22547562420368195, + "learning_rate": 4.5381866666666667e-05, + "loss": 2.2980027770996094, + "step": 69300 + }, + { + "epoch": 9.253333333333334, + "grad_norm": 0.24733230471611023, + "learning_rate": 4.53752e-05, + "loss": 2.29823486328125, + "step": 69400 + }, + { + "epoch": 9.266666666666667, + "grad_norm": 0.23954610526561737, + "learning_rate": 4.536853333333334e-05, + "loss": 2.300198974609375, + "step": 69500 + }, + { + "epoch": 9.28, + "grad_norm": 0.253302663564682, + "learning_rate": 4.536186666666667e-05, + "loss": 2.2968313598632815, + "step": 69600 + }, + { + "epoch": 9.293333333333333, + "grad_norm": 0.2572624385356903, + "learning_rate": 4.53552e-05, + "loss": 2.3007162475585936, + "step": 69700 + }, + { + "epoch": 9.306666666666667, + "grad_norm": 0.2580345869064331, + "learning_rate": 4.5348533333333335e-05, + "loss": 2.2998121643066405, + "step": 69800 + }, + { + "epoch": 9.32, + "grad_norm": 0.23370671272277832, + "learning_rate": 4.5341866666666674e-05, + "loss": 2.302071075439453, + "step": 69900 + }, + { + "epoch": 9.333333333333334, + "grad_norm": 0.2354464828968048, + "learning_rate": 4.53352e-05, + "loss": 2.3010763549804687, + "step": 70000 + }, + { + "epoch": 9.346666666666668, + "grad_norm": 0.22726485133171082, + "learning_rate": 4.532853333333333e-05, + "loss": 2.302950897216797, + "step": 70100 + }, + { + "epoch": 9.36, + "grad_norm": 0.24437928199768066, + "learning_rate": 4.532193333333333e-05, + "loss": 2.301619110107422, + "step": 70200 + }, + { + "epoch": 9.373333333333333, + "grad_norm": 0.22362923622131348, + "learning_rate": 4.531526666666667e-05, + "loss": 2.301064147949219, + "step": 70300 + }, + { + "epoch": 9.386666666666667, + "grad_norm": 0.22675906121730804, + "learning_rate": 4.53086e-05, + "loss": 2.300765380859375, + "step": 70400 + }, + { + "epoch": 9.4, + "grad_norm": 0.23232199251651764, + "learning_rate": 4.5301933333333334e-05, + "loss": 2.2998236083984374, + "step": 70500 + }, + { + "epoch": 9.413333333333334, + "grad_norm": 0.2357228696346283, + "learning_rate": 4.5295266666666666e-05, + "loss": 2.300859375, + "step": 70600 + }, + { + "epoch": 9.426666666666666, + "grad_norm": 0.22707265615463257, + "learning_rate": 4.5288600000000005e-05, + "loss": 2.30189697265625, + "step": 70700 + }, + { + "epoch": 9.44, + "grad_norm": 0.22745104134082794, + "learning_rate": 4.528193333333334e-05, + "loss": 2.3032139587402343, + "step": 70800 + }, + { + "epoch": 9.453333333333333, + "grad_norm": 0.2270699143409729, + "learning_rate": 4.527526666666667e-05, + "loss": 2.3027561950683593, + "step": 70900 + }, + { + "epoch": 9.466666666666667, + "grad_norm": 0.22705000638961792, + "learning_rate": 4.52686e-05, + "loss": 2.30169677734375, + "step": 71000 + }, + { + "epoch": 9.48, + "grad_norm": 0.24112239480018616, + "learning_rate": 4.5261933333333335e-05, + "loss": 2.3032855224609374, + "step": 71100 + }, + { + "epoch": 9.493333333333334, + "grad_norm": 0.22396592795848846, + "learning_rate": 4.525526666666667e-05, + "loss": 2.3002029418945313, + "step": 71200 + }, + { + "epoch": 9.506666666666666, + "grad_norm": 0.21745307743549347, + "learning_rate": 4.52486e-05, + "loss": 2.3029249572753905, + "step": 71300 + }, + { + "epoch": 9.52, + "grad_norm": 0.23369887471199036, + "learning_rate": 4.524193333333334e-05, + "loss": 2.304996337890625, + "step": 71400 + }, + { + "epoch": 9.533333333333333, + "grad_norm": 0.23318316042423248, + "learning_rate": 4.523526666666667e-05, + "loss": 2.3056065368652345, + "step": 71500 + }, + { + "epoch": 9.546666666666667, + "grad_norm": 0.2250574827194214, + "learning_rate": 4.52286e-05, + "loss": 2.3032150268554688, + "step": 71600 + }, + { + "epoch": 9.56, + "grad_norm": 0.2183639109134674, + "learning_rate": 4.5221933333333335e-05, + "loss": 2.305579833984375, + "step": 71700 + }, + { + "epoch": 9.573333333333334, + "grad_norm": 0.2082279771566391, + "learning_rate": 4.521526666666667e-05, + "loss": 2.3057624816894533, + "step": 71800 + }, + { + "epoch": 9.586666666666666, + "grad_norm": 0.23728124797344208, + "learning_rate": 4.52086e-05, + "loss": 2.3048939514160156, + "step": 71900 + }, + { + "epoch": 9.6, + "grad_norm": 0.23262864351272583, + "learning_rate": 4.520193333333333e-05, + "loss": 2.303785400390625, + "step": 72000 + }, + { + "epoch": 9.613333333333333, + "grad_norm": 0.22944900393486023, + "learning_rate": 4.519526666666667e-05, + "loss": 2.3056602478027344, + "step": 72100 + }, + { + "epoch": 9.626666666666667, + "grad_norm": 0.2632165551185608, + "learning_rate": 4.518866666666667e-05, + "loss": 2.3039901733398436, + "step": 72200 + }, + { + "epoch": 9.64, + "grad_norm": 0.23915515840053558, + "learning_rate": 4.5182e-05, + "loss": 2.3091696166992186, + "step": 72300 + }, + { + "epoch": 9.653333333333332, + "grad_norm": 0.24298280477523804, + "learning_rate": 4.5175333333333334e-05, + "loss": 2.3061654663085935, + "step": 72400 + }, + { + "epoch": 9.666666666666666, + "grad_norm": 0.23660294711589813, + "learning_rate": 4.5168666666666673e-05, + "loss": 2.3104348754882813, + "step": 72500 + }, + { + "epoch": 9.68, + "grad_norm": 0.2370450496673584, + "learning_rate": 4.5162000000000006e-05, + "loss": 2.3079653930664064, + "step": 72600 + }, + { + "epoch": 9.693333333333333, + "grad_norm": 0.2323356717824936, + "learning_rate": 4.515533333333333e-05, + "loss": 2.3062504577636718, + "step": 72700 + }, + { + "epoch": 9.706666666666667, + "grad_norm": 0.2260921448469162, + "learning_rate": 4.514866666666667e-05, + "loss": 2.3086776733398438, + "step": 72800 + }, + { + "epoch": 9.72, + "grad_norm": 0.23469285666942596, + "learning_rate": 4.5142e-05, + "loss": 2.306175079345703, + "step": 72900 + }, + { + "epoch": 9.733333333333333, + "grad_norm": 0.2398371398448944, + "learning_rate": 4.5135333333333335e-05, + "loss": 2.3068536376953124, + "step": 73000 + }, + { + "epoch": 9.746666666666666, + "grad_norm": 0.2239067405462265, + "learning_rate": 4.512866666666667e-05, + "loss": 2.30914306640625, + "step": 73100 + }, + { + "epoch": 9.76, + "grad_norm": 0.22555306553840637, + "learning_rate": 4.5122000000000006e-05, + "loss": 2.3087586975097656, + "step": 73200 + }, + { + "epoch": 9.773333333333333, + "grad_norm": 0.22917480766773224, + "learning_rate": 4.511533333333334e-05, + "loss": 2.310619201660156, + "step": 73300 + }, + { + "epoch": 9.786666666666667, + "grad_norm": 0.23775242269039154, + "learning_rate": 4.510866666666667e-05, + "loss": 2.3091854858398437, + "step": 73400 + }, + { + "epoch": 9.8, + "grad_norm": 0.24801835417747498, + "learning_rate": 4.5102e-05, + "loss": 2.3082546997070312, + "step": 73500 + }, + { + "epoch": 9.813333333333333, + "grad_norm": 0.23106469213962555, + "learning_rate": 4.5095333333333335e-05, + "loss": 2.3087344360351563, + "step": 73600 + }, + { + "epoch": 9.826666666666666, + "grad_norm": 0.22504796087741852, + "learning_rate": 4.508866666666667e-05, + "loss": 2.308363494873047, + "step": 73700 + }, + { + "epoch": 9.84, + "grad_norm": 0.23639419674873352, + "learning_rate": 4.5082e-05, + "loss": 2.30758544921875, + "step": 73800 + }, + { + "epoch": 9.853333333333333, + "grad_norm": 0.24086354672908783, + "learning_rate": 4.507533333333334e-05, + "loss": 2.3087428283691405, + "step": 73900 + }, + { + "epoch": 9.866666666666667, + "grad_norm": 0.2180139571428299, + "learning_rate": 4.506866666666667e-05, + "loss": 2.308798828125, + "step": 74000 + }, + { + "epoch": 9.88, + "grad_norm": 0.22501300275325775, + "learning_rate": 4.5062e-05, + "loss": 2.3099415588378904, + "step": 74100 + }, + { + "epoch": 9.893333333333333, + "grad_norm": 0.23066537082195282, + "learning_rate": 4.50554e-05, + "loss": 2.307503662109375, + "step": 74200 + }, + { + "epoch": 9.906666666666666, + "grad_norm": 0.22434760630130768, + "learning_rate": 4.5048733333333335e-05, + "loss": 2.3106227111816406, + "step": 74300 + }, + { + "epoch": 9.92, + "grad_norm": 0.25195831060409546, + "learning_rate": 4.5042066666666674e-05, + "loss": 2.3048329162597656, + "step": 74400 + }, + { + "epoch": 9.933333333333334, + "grad_norm": 0.2128189355134964, + "learning_rate": 4.50354e-05, + "loss": 2.3085731506347655, + "step": 74500 + }, + { + "epoch": 9.946666666666667, + "grad_norm": 0.2209046483039856, + "learning_rate": 4.502873333333333e-05, + "loss": 2.3103427124023437, + "step": 74600 + }, + { + "epoch": 9.96, + "grad_norm": 0.4690224528312683, + "learning_rate": 4.502206666666667e-05, + "loss": 2.312327423095703, + "step": 74700 + }, + { + "epoch": 9.973333333333333, + "grad_norm": 0.21926158666610718, + "learning_rate": 4.50154e-05, + "loss": 2.310508575439453, + "step": 74800 + }, + { + "epoch": 9.986666666666666, + "grad_norm": 0.2374141365289688, + "learning_rate": 4.5008733333333335e-05, + "loss": 2.31052978515625, + "step": 74900 + }, + { + "epoch": 10.0, + "grad_norm": 0.22070780396461487, + "learning_rate": 4.500206666666667e-05, + "loss": 2.3100782775878907, + "step": 75000 + }, + { + "epoch": 10.013333333333334, + "grad_norm": 0.23315180838108063, + "learning_rate": 4.4995400000000006e-05, + "loss": 2.2820582580566406, + "step": 75100 + }, + { + "epoch": 10.026666666666667, + "grad_norm": 0.2489648312330246, + "learning_rate": 4.498873333333333e-05, + "loss": 2.2800167846679686, + "step": 75200 + }, + { + "epoch": 10.04, + "grad_norm": 0.2430664449930191, + "learning_rate": 4.4982066666666664e-05, + "loss": 2.2820753479003906, + "step": 75300 + }, + { + "epoch": 10.053333333333333, + "grad_norm": 0.24344773590564728, + "learning_rate": 4.49754e-05, + "loss": 2.2796278381347657, + "step": 75400 + }, + { + "epoch": 10.066666666666666, + "grad_norm": 0.24810276925563812, + "learning_rate": 4.4968733333333335e-05, + "loss": 2.279807586669922, + "step": 75500 + }, + { + "epoch": 10.08, + "grad_norm": 0.24132785201072693, + "learning_rate": 4.496206666666667e-05, + "loss": 2.2805412292480467, + "step": 75600 + }, + { + "epoch": 10.093333333333334, + "grad_norm": 0.24037568271160126, + "learning_rate": 4.49554e-05, + "loss": 2.2824276733398436, + "step": 75700 + }, + { + "epoch": 10.106666666666667, + "grad_norm": 0.23821789026260376, + "learning_rate": 4.494873333333334e-05, + "loss": 2.284660186767578, + "step": 75800 + }, + { + "epoch": 10.12, + "grad_norm": 0.2437891960144043, + "learning_rate": 4.494206666666667e-05, + "loss": 2.2823611450195314, + "step": 75900 + }, + { + "epoch": 10.133333333333333, + "grad_norm": 0.23768781125545502, + "learning_rate": 4.49354e-05, + "loss": 2.2855105590820313, + "step": 76000 + }, + { + "epoch": 10.146666666666667, + "grad_norm": 0.24591408669948578, + "learning_rate": 4.4928733333333336e-05, + "loss": 2.2840614318847656, + "step": 76100 + }, + { + "epoch": 10.16, + "grad_norm": 0.2379213571548462, + "learning_rate": 4.4922133333333335e-05, + "loss": 2.2879397583007814, + "step": 76200 + }, + { + "epoch": 10.173333333333334, + "grad_norm": 0.2505422532558441, + "learning_rate": 4.491546666666667e-05, + "loss": 2.2845729064941405, + "step": 76300 + }, + { + "epoch": 10.186666666666667, + "grad_norm": 0.24018126726150513, + "learning_rate": 4.49088e-05, + "loss": 2.287251281738281, + "step": 76400 + }, + { + "epoch": 10.2, + "grad_norm": 0.26669764518737793, + "learning_rate": 4.490213333333333e-05, + "loss": 2.284190826416016, + "step": 76500 + }, + { + "epoch": 10.213333333333333, + "grad_norm": 0.24248762428760529, + "learning_rate": 4.489546666666667e-05, + "loss": 2.287902374267578, + "step": 76600 + }, + { + "epoch": 10.226666666666667, + "grad_norm": 0.23663915693759918, + "learning_rate": 4.48888e-05, + "loss": 2.286513214111328, + "step": 76700 + }, + { + "epoch": 10.24, + "grad_norm": 0.25117191672325134, + "learning_rate": 4.4882133333333335e-05, + "loss": 2.289020538330078, + "step": 76800 + }, + { + "epoch": 10.253333333333334, + "grad_norm": 0.23214347660541534, + "learning_rate": 4.4875466666666674e-05, + "loss": 2.2866584777832033, + "step": 76900 + }, + { + "epoch": 10.266666666666667, + "grad_norm": 0.2386721670627594, + "learning_rate": 4.48688e-05, + "loss": 2.289106597900391, + "step": 77000 + }, + { + "epoch": 10.28, + "grad_norm": 0.24421949684619904, + "learning_rate": 4.486213333333333e-05, + "loss": 2.28677490234375, + "step": 77100 + }, + { + "epoch": 10.293333333333333, + "grad_norm": 0.2612295150756836, + "learning_rate": 4.485546666666667e-05, + "loss": 2.289345703125, + "step": 77200 + }, + { + "epoch": 10.306666666666667, + "grad_norm": 0.22263416647911072, + "learning_rate": 4.48488e-05, + "loss": 2.2870338439941404, + "step": 77300 + }, + { + "epoch": 10.32, + "grad_norm": 0.2574688494205475, + "learning_rate": 4.4842133333333336e-05, + "loss": 2.2890251159667967, + "step": 77400 + }, + { + "epoch": 10.333333333333334, + "grad_norm": 0.25357821583747864, + "learning_rate": 4.483546666666667e-05, + "loss": 2.2873045349121095, + "step": 77500 + }, + { + "epoch": 10.346666666666668, + "grad_norm": 0.2804579734802246, + "learning_rate": 4.482880000000001e-05, + "loss": 2.2914703369140623, + "step": 77600 + }, + { + "epoch": 10.36, + "grad_norm": 0.24506065249443054, + "learning_rate": 4.482213333333334e-05, + "loss": 2.2905569458007813, + "step": 77700 + }, + { + "epoch": 10.373333333333333, + "grad_norm": 0.25503185391426086, + "learning_rate": 4.4815466666666665e-05, + "loss": 2.290155334472656, + "step": 77800 + }, + { + "epoch": 10.386666666666667, + "grad_norm": 0.2579893171787262, + "learning_rate": 4.4808800000000004e-05, + "loss": 2.291581115722656, + "step": 77900 + }, + { + "epoch": 10.4, + "grad_norm": 0.22538907825946808, + "learning_rate": 4.4802133333333336e-05, + "loss": 2.291281280517578, + "step": 78000 + }, + { + "epoch": 10.413333333333334, + "grad_norm": 0.24924156069755554, + "learning_rate": 4.479546666666667e-05, + "loss": 2.289500885009766, + "step": 78100 + }, + { + "epoch": 10.426666666666666, + "grad_norm": 0.2366298884153366, + "learning_rate": 4.478886666666667e-05, + "loss": 2.290386047363281, + "step": 78200 + }, + { + "epoch": 10.44, + "grad_norm": 0.22278301417827606, + "learning_rate": 4.47822e-05, + "loss": 2.2905796813964843, + "step": 78300 + }, + { + "epoch": 10.453333333333333, + "grad_norm": 0.25287824869155884, + "learning_rate": 4.477553333333334e-05, + "loss": 2.290713653564453, + "step": 78400 + }, + { + "epoch": 10.466666666666667, + "grad_norm": 0.24435845017433167, + "learning_rate": 4.476886666666667e-05, + "loss": 2.2916438293457033, + "step": 78500 + }, + { + "epoch": 10.48, + "grad_norm": 0.24885345995426178, + "learning_rate": 4.47622e-05, + "loss": 2.2903347778320313, + "step": 78600 + }, + { + "epoch": 10.493333333333334, + "grad_norm": 0.2466493546962738, + "learning_rate": 4.4755533333333335e-05, + "loss": 2.292062225341797, + "step": 78700 + }, + { + "epoch": 10.506666666666666, + "grad_norm": 0.25343602895736694, + "learning_rate": 4.474886666666667e-05, + "loss": 2.293315124511719, + "step": 78800 + }, + { + "epoch": 10.52, + "grad_norm": 0.26084843277931213, + "learning_rate": 4.47422e-05, + "loss": 2.290987854003906, + "step": 78900 + }, + { + "epoch": 10.533333333333333, + "grad_norm": 0.22565628588199615, + "learning_rate": 4.473553333333333e-05, + "loss": 2.291141357421875, + "step": 79000 + }, + { + "epoch": 10.546666666666667, + "grad_norm": 0.2424556016921997, + "learning_rate": 4.472886666666667e-05, + "loss": 2.2940351867675783, + "step": 79100 + }, + { + "epoch": 10.56, + "grad_norm": 0.23173433542251587, + "learning_rate": 4.4722200000000004e-05, + "loss": 2.2938632202148437, + "step": 79200 + }, + { + "epoch": 10.573333333333334, + "grad_norm": 0.24767623841762543, + "learning_rate": 4.4715533333333336e-05, + "loss": 2.294097595214844, + "step": 79300 + }, + { + "epoch": 10.586666666666666, + "grad_norm": 0.2494058907032013, + "learning_rate": 4.470886666666667e-05, + "loss": 2.292882843017578, + "step": 79400 + }, + { + "epoch": 10.6, + "grad_norm": 0.2309560924768448, + "learning_rate": 4.47022e-05, + "loss": 2.2917105102539064, + "step": 79500 + }, + { + "epoch": 10.613333333333333, + "grad_norm": 0.2502034306526184, + "learning_rate": 4.469553333333333e-05, + "loss": 2.2940020751953125, + "step": 79600 + }, + { + "epoch": 10.626666666666667, + "grad_norm": 0.2417595088481903, + "learning_rate": 4.4688866666666665e-05, + "loss": 2.2959962463378907, + "step": 79700 + }, + { + "epoch": 10.64, + "grad_norm": 0.2390497922897339, + "learning_rate": 4.4682200000000004e-05, + "loss": 2.2932833862304687, + "step": 79800 + }, + { + "epoch": 10.653333333333332, + "grad_norm": 0.25319451093673706, + "learning_rate": 4.4675533333333336e-05, + "loss": 2.2950804138183596, + "step": 79900 + }, + { + "epoch": 10.666666666666666, + "grad_norm": 0.23525965213775635, + "learning_rate": 4.466886666666667e-05, + "loss": 2.2939056396484374, + "step": 80000 + }, + { + "epoch": 10.68, + "grad_norm": 0.24645350873470306, + "learning_rate": 4.46622e-05, + "loss": 2.2950694274902346, + "step": 80100 + }, + { + "epoch": 10.693333333333333, + "grad_norm": 0.24350802600383759, + "learning_rate": 4.46556e-05, + "loss": 2.295481414794922, + "step": 80200 + }, + { + "epoch": 10.706666666666667, + "grad_norm": 0.24546648561954498, + "learning_rate": 4.464893333333334e-05, + "loss": 2.2965150451660157, + "step": 80300 + }, + { + "epoch": 10.72, + "grad_norm": 0.24012289941310883, + "learning_rate": 4.464226666666667e-05, + "loss": 2.29464111328125, + "step": 80400 + }, + { + "epoch": 10.733333333333333, + "grad_norm": 0.2439471334218979, + "learning_rate": 4.46356e-05, + "loss": 2.2982655334472657, + "step": 80500 + }, + { + "epoch": 10.746666666666666, + "grad_norm": 0.24235573410987854, + "learning_rate": 4.4628933333333336e-05, + "loss": 2.2973838806152345, + "step": 80600 + }, + { + "epoch": 10.76, + "grad_norm": 0.2552349865436554, + "learning_rate": 4.462226666666667e-05, + "loss": 2.2967495727539062, + "step": 80700 + }, + { + "epoch": 10.773333333333333, + "grad_norm": 0.2687914967536926, + "learning_rate": 4.46156e-05, + "loss": 2.2971734619140625, + "step": 80800 + }, + { + "epoch": 10.786666666666667, + "grad_norm": 0.22800393402576447, + "learning_rate": 4.460893333333334e-05, + "loss": 2.295909881591797, + "step": 80900 + }, + { + "epoch": 10.8, + "grad_norm": 0.25448915362358093, + "learning_rate": 4.460226666666667e-05, + "loss": 2.299366455078125, + "step": 81000 + }, + { + "epoch": 10.813333333333333, + "grad_norm": 0.24387459456920624, + "learning_rate": 4.4595600000000004e-05, + "loss": 2.297369384765625, + "step": 81100 + }, + { + "epoch": 10.826666666666666, + "grad_norm": 0.24151787161827087, + "learning_rate": 4.4588933333333336e-05, + "loss": 2.299127197265625, + "step": 81200 + }, + { + "epoch": 10.84, + "grad_norm": 0.2260817289352417, + "learning_rate": 4.458226666666667e-05, + "loss": 2.2975596618652343, + "step": 81300 + }, + { + "epoch": 10.853333333333333, + "grad_norm": 0.24239422380924225, + "learning_rate": 4.45756e-05, + "loss": 2.2985691833496094, + "step": 81400 + }, + { + "epoch": 10.866666666666667, + "grad_norm": 0.21752089262008667, + "learning_rate": 4.456893333333333e-05, + "loss": 2.300589294433594, + "step": 81500 + }, + { + "epoch": 10.88, + "grad_norm": 0.23936143517494202, + "learning_rate": 4.456226666666667e-05, + "loss": 2.2985806274414062, + "step": 81600 + }, + { + "epoch": 10.893333333333333, + "grad_norm": 0.25165167450904846, + "learning_rate": 4.4555600000000004e-05, + "loss": 2.3023681640625, + "step": 81700 + }, + { + "epoch": 10.906666666666666, + "grad_norm": 0.24560686945915222, + "learning_rate": 4.4548933333333336e-05, + "loss": 2.296816101074219, + "step": 81800 + }, + { + "epoch": 10.92, + "grad_norm": 0.235377699136734, + "learning_rate": 4.454226666666667e-05, + "loss": 2.3003538513183592, + "step": 81900 + }, + { + "epoch": 10.933333333333334, + "grad_norm": 0.21916425228118896, + "learning_rate": 4.45356e-05, + "loss": 2.302768096923828, + "step": 82000 + }, + { + "epoch": 10.946666666666667, + "grad_norm": 0.23057326674461365, + "learning_rate": 4.452893333333333e-05, + "loss": 2.299179992675781, + "step": 82100 + }, + { + "epoch": 10.96, + "grad_norm": 0.23899604380130768, + "learning_rate": 4.452233333333334e-05, + "loss": 2.3004336547851563, + "step": 82200 + }, + { + "epoch": 10.973333333333333, + "grad_norm": 0.23253585398197174, + "learning_rate": 4.4515666666666665e-05, + "loss": 2.3014898681640625, + "step": 82300 + }, + { + "epoch": 10.986666666666666, + "grad_norm": 0.24487797915935516, + "learning_rate": 4.4509000000000004e-05, + "loss": 2.3026199340820312, + "step": 82400 + }, + { + "epoch": 11.0, + "grad_norm": 0.2387479692697525, + "learning_rate": 4.4502333333333336e-05, + "loss": 2.2974674987792967, + "step": 82500 + }, + { + "epoch": 11.013333333333334, + "grad_norm": 0.2720658481121063, + "learning_rate": 4.4495733333333335e-05, + "loss": 2.2671746826171875, + "step": 82600 + }, + { + "epoch": 11.026666666666667, + "grad_norm": 0.263578861951828, + "learning_rate": 4.448906666666667e-05, + "loss": 2.2688304138183595, + "step": 82700 + }, + { + "epoch": 11.04, + "grad_norm": 0.2674785852432251, + "learning_rate": 4.44824e-05, + "loss": 2.270413055419922, + "step": 82800 + }, + { + "epoch": 11.053333333333333, + "grad_norm": 0.28208568692207336, + "learning_rate": 4.447573333333334e-05, + "loss": 2.267439422607422, + "step": 82900 + }, + { + "epoch": 11.066666666666666, + "grad_norm": 0.2503279447555542, + "learning_rate": 4.446906666666667e-05, + "loss": 2.27013427734375, + "step": 83000 + }, + { + "epoch": 11.08, + "grad_norm": 0.2667846083641052, + "learning_rate": 4.44624e-05, + "loss": 2.270685577392578, + "step": 83100 + }, + { + "epoch": 11.093333333333334, + "grad_norm": 0.2649480700492859, + "learning_rate": 4.4455733333333335e-05, + "loss": 2.2691964721679687, + "step": 83200 + }, + { + "epoch": 11.106666666666667, + "grad_norm": 0.27101367712020874, + "learning_rate": 4.444906666666667e-05, + "loss": 2.272455291748047, + "step": 83300 + }, + { + "epoch": 11.12, + "grad_norm": 0.24341875314712524, + "learning_rate": 4.44424e-05, + "loss": 2.2689295959472657, + "step": 83400 + }, + { + "epoch": 11.133333333333333, + "grad_norm": 0.25448212027549744, + "learning_rate": 4.443573333333333e-05, + "loss": 2.2724458312988283, + "step": 83500 + }, + { + "epoch": 11.146666666666667, + "grad_norm": 0.25443369150161743, + "learning_rate": 4.442906666666667e-05, + "loss": 2.271412811279297, + "step": 83600 + }, + { + "epoch": 11.16, + "grad_norm": 0.26732975244522095, + "learning_rate": 4.4422400000000003e-05, + "loss": 2.271360321044922, + "step": 83700 + }, + { + "epoch": 11.173333333333334, + "grad_norm": 0.26395460963249207, + "learning_rate": 4.4415733333333336e-05, + "loss": 2.26961669921875, + "step": 83800 + }, + { + "epoch": 11.186666666666667, + "grad_norm": 0.24745440483093262, + "learning_rate": 4.440906666666667e-05, + "loss": 2.2744174194335938, + "step": 83900 + }, + { + "epoch": 11.2, + "grad_norm": 0.26402172446250916, + "learning_rate": 4.44024e-05, + "loss": 2.2720037841796876, + "step": 84000 + }, + { + "epoch": 11.213333333333333, + "grad_norm": 0.23789356648921967, + "learning_rate": 4.439573333333333e-05, + "loss": 2.274175109863281, + "step": 84100 + }, + { + "epoch": 11.226666666666667, + "grad_norm": 0.24144236743450165, + "learning_rate": 4.4389066666666665e-05, + "loss": 2.2732891845703125, + "step": 84200 + }, + { + "epoch": 11.24, + "grad_norm": 0.2500831186771393, + "learning_rate": 4.4382400000000004e-05, + "loss": 2.2730227661132814, + "step": 84300 + }, + { + "epoch": 11.253333333333334, + "grad_norm": 0.25501829385757446, + "learning_rate": 4.4375733333333336e-05, + "loss": 2.274988708496094, + "step": 84400 + }, + { + "epoch": 11.266666666666667, + "grad_norm": 0.22763259708881378, + "learning_rate": 4.436906666666667e-05, + "loss": 2.272532196044922, + "step": 84500 + }, + { + "epoch": 11.28, + "grad_norm": 0.25562381744384766, + "learning_rate": 4.43624e-05, + "loss": 2.2755363464355467, + "step": 84600 + }, + { + "epoch": 11.293333333333333, + "grad_norm": 0.25353795289993286, + "learning_rate": 4.435573333333334e-05, + "loss": 2.2750617980957033, + "step": 84700 + }, + { + "epoch": 11.306666666666667, + "grad_norm": 0.26931309700012207, + "learning_rate": 4.4349066666666665e-05, + "loss": 2.2751278686523437, + "step": 84800 + }, + { + "epoch": 11.32, + "grad_norm": 0.2389533370733261, + "learning_rate": 4.43424e-05, + "loss": 2.278493194580078, + "step": 84900 + }, + { + "epoch": 11.333333333333334, + "grad_norm": 0.2465227097272873, + "learning_rate": 4.4335733333333337e-05, + "loss": 2.2789736938476564, + "step": 85000 + }, + { + "epoch": 11.346666666666668, + "grad_norm": 0.25453120470046997, + "learning_rate": 4.432906666666667e-05, + "loss": 2.2776898193359374, + "step": 85100 + }, + { + "epoch": 11.36, + "grad_norm": 0.2660987377166748, + "learning_rate": 4.43224e-05, + "loss": 2.2778756713867185, + "step": 85200 + }, + { + "epoch": 11.373333333333333, + "grad_norm": 0.25308796763420105, + "learning_rate": 4.431573333333334e-05, + "loss": 2.279368438720703, + "step": 85300 + }, + { + "epoch": 11.386666666666667, + "grad_norm": 0.25836026668548584, + "learning_rate": 4.430906666666667e-05, + "loss": 2.2798582458496095, + "step": 85400 + }, + { + "epoch": 11.4, + "grad_norm": 0.25316664576530457, + "learning_rate": 4.43024e-05, + "loss": 2.279602813720703, + "step": 85500 + }, + { + "epoch": 11.413333333333334, + "grad_norm": 0.2550676167011261, + "learning_rate": 4.429573333333334e-05, + "loss": 2.2755258178710935, + "step": 85600 + }, + { + "epoch": 11.426666666666666, + "grad_norm": 0.23546501994132996, + "learning_rate": 4.428906666666667e-05, + "loss": 2.2800631713867188, + "step": 85700 + }, + { + "epoch": 11.44, + "grad_norm": 0.264654278755188, + "learning_rate": 4.42824e-05, + "loss": 2.2767239379882813, + "step": 85800 + }, + { + "epoch": 11.453333333333333, + "grad_norm": 0.24899619817733765, + "learning_rate": 4.4275733333333334e-05, + "loss": 2.2798704528808593, + "step": 85900 + }, + { + "epoch": 11.466666666666667, + "grad_norm": 0.24456363916397095, + "learning_rate": 4.426906666666667e-05, + "loss": 2.2780026245117186, + "step": 86000 + }, + { + "epoch": 11.48, + "grad_norm": 0.25708940625190735, + "learning_rate": 4.4262400000000005e-05, + "loss": 2.2792425537109375, + "step": 86100 + }, + { + "epoch": 11.493333333333334, + "grad_norm": 0.2511962354183197, + "learning_rate": 4.425573333333334e-05, + "loss": 2.282320251464844, + "step": 86200 + }, + { + "epoch": 11.506666666666666, + "grad_norm": 0.24816451966762543, + "learning_rate": 4.424906666666667e-05, + "loss": 2.2792512512207033, + "step": 86300 + }, + { + "epoch": 11.52, + "grad_norm": 0.2514301836490631, + "learning_rate": 4.42424e-05, + "loss": 2.2795748901367188, + "step": 86400 + }, + { + "epoch": 11.533333333333333, + "grad_norm": 0.2495884746313095, + "learning_rate": 4.4235733333333334e-05, + "loss": 2.278619689941406, + "step": 86500 + }, + { + "epoch": 11.546666666666667, + "grad_norm": 0.24815420806407928, + "learning_rate": 4.422913333333333e-05, + "loss": 2.2829832458496093, + "step": 86600 + }, + { + "epoch": 11.56, + "grad_norm": 0.2668995261192322, + "learning_rate": 4.4222466666666665e-05, + "loss": 2.2842198181152344, + "step": 86700 + }, + { + "epoch": 11.573333333333334, + "grad_norm": 0.256393700838089, + "learning_rate": 4.4215800000000004e-05, + "loss": 2.2821044921875, + "step": 86800 + }, + { + "epoch": 11.586666666666666, + "grad_norm": 0.2424868494272232, + "learning_rate": 4.420913333333334e-05, + "loss": 2.2830775451660155, + "step": 86900 + }, + { + "epoch": 11.6, + "grad_norm": 0.27431467175483704, + "learning_rate": 4.420246666666667e-05, + "loss": 2.28398681640625, + "step": 87000 + }, + { + "epoch": 11.613333333333333, + "grad_norm": 0.267622709274292, + "learning_rate": 4.41958e-05, + "loss": 2.283782958984375, + "step": 87100 + }, + { + "epoch": 11.626666666666667, + "grad_norm": 0.2440316379070282, + "learning_rate": 4.418913333333334e-05, + "loss": 2.28414794921875, + "step": 87200 + }, + { + "epoch": 11.64, + "grad_norm": 0.259630411863327, + "learning_rate": 4.4182466666666666e-05, + "loss": 2.2857057189941408, + "step": 87300 + }, + { + "epoch": 11.653333333333332, + "grad_norm": 0.2571096122264862, + "learning_rate": 4.41758e-05, + "loss": 2.2847987365722657, + "step": 87400 + }, + { + "epoch": 11.666666666666666, + "grad_norm": 0.2570159137248993, + "learning_rate": 4.416913333333334e-05, + "loss": 2.2837939453125, + "step": 87500 + }, + { + "epoch": 11.68, + "grad_norm": 0.2649681270122528, + "learning_rate": 4.416246666666667e-05, + "loss": 2.2841265869140623, + "step": 87600 + }, + { + "epoch": 11.693333333333333, + "grad_norm": 0.26410555839538574, + "learning_rate": 4.41558e-05, + "loss": 2.2851953125, + "step": 87700 + }, + { + "epoch": 11.706666666666667, + "grad_norm": 0.2622752785682678, + "learning_rate": 4.4149133333333334e-05, + "loss": 2.2836956787109375, + "step": 87800 + }, + { + "epoch": 11.72, + "grad_norm": 0.2514193058013916, + "learning_rate": 4.414246666666667e-05, + "loss": 2.2842561340332033, + "step": 87900 + }, + { + "epoch": 11.733333333333333, + "grad_norm": 0.2531854212284088, + "learning_rate": 4.41358e-05, + "loss": 2.284789733886719, + "step": 88000 + }, + { + "epoch": 11.746666666666666, + "grad_norm": 0.2689782679080963, + "learning_rate": 4.412913333333333e-05, + "loss": 2.2857350158691405, + "step": 88100 + }, + { + "epoch": 11.76, + "grad_norm": 0.24945223331451416, + "learning_rate": 4.412246666666667e-05, + "loss": 2.2845068359375, + "step": 88200 + }, + { + "epoch": 11.773333333333333, + "grad_norm": 0.26712265610694885, + "learning_rate": 4.41158e-05, + "loss": 2.2854434204101564, + "step": 88300 + }, + { + "epoch": 11.786666666666667, + "grad_norm": 0.256874680519104, + "learning_rate": 4.4109133333333334e-05, + "loss": 2.287956085205078, + "step": 88400 + }, + { + "epoch": 11.8, + "grad_norm": 0.2476692944765091, + "learning_rate": 4.4102533333333333e-05, + "loss": 2.286315460205078, + "step": 88500 + }, + { + "epoch": 11.813333333333333, + "grad_norm": 0.2615588903427124, + "learning_rate": 4.4095866666666666e-05, + "loss": 2.284837188720703, + "step": 88600 + }, + { + "epoch": 11.826666666666666, + "grad_norm": 0.24872687458992004, + "learning_rate": 4.4089200000000005e-05, + "loss": 2.285694580078125, + "step": 88700 + }, + { + "epoch": 11.84, + "grad_norm": 0.2530681788921356, + "learning_rate": 4.408253333333334e-05, + "loss": 2.2873902893066407, + "step": 88800 + }, + { + "epoch": 11.853333333333333, + "grad_norm": 0.24849970638751984, + "learning_rate": 4.407586666666667e-05, + "loss": 2.2867955017089843, + "step": 88900 + }, + { + "epoch": 11.866666666666667, + "grad_norm": 0.24246734380722046, + "learning_rate": 4.40692e-05, + "loss": 2.289001770019531, + "step": 89000 + }, + { + "epoch": 11.88, + "grad_norm": 0.2607153654098511, + "learning_rate": 4.4062533333333334e-05, + "loss": 2.2897518920898436, + "step": 89100 + }, + { + "epoch": 11.893333333333333, + "grad_norm": 0.2614729106426239, + "learning_rate": 4.4055866666666666e-05, + "loss": 2.2860928344726563, + "step": 89200 + }, + { + "epoch": 11.906666666666666, + "grad_norm": 0.2584093511104584, + "learning_rate": 4.40492e-05, + "loss": 2.2889364624023436, + "step": 89300 + }, + { + "epoch": 11.92, + "grad_norm": 0.25701311230659485, + "learning_rate": 4.404253333333334e-05, + "loss": 2.2891424560546874, + "step": 89400 + }, + { + "epoch": 11.933333333333334, + "grad_norm": 0.2440747767686844, + "learning_rate": 4.403586666666667e-05, + "loss": 2.2895196533203124, + "step": 89500 + }, + { + "epoch": 11.946666666666667, + "grad_norm": 0.2381986528635025, + "learning_rate": 4.40292e-05, + "loss": 2.2897454833984376, + "step": 89600 + }, + { + "epoch": 11.96, + "grad_norm": 0.26296404004096985, + "learning_rate": 4.402253333333334e-05, + "loss": 2.2879896545410157, + "step": 89700 + }, + { + "epoch": 11.973333333333333, + "grad_norm": 0.25517991185188293, + "learning_rate": 4.4015866666666666e-05, + "loss": 2.2889413452148437, + "step": 89800 + }, + { + "epoch": 11.986666666666666, + "grad_norm": 0.2450113147497177, + "learning_rate": 4.40092e-05, + "loss": 2.2893191528320314, + "step": 89900 + }, + { + "epoch": 12.0, + "grad_norm": 0.250333309173584, + "learning_rate": 4.400253333333334e-05, + "loss": 2.289803161621094, + "step": 90000 + }, + { + "epoch": 12.013333333333334, + "grad_norm": 0.26415345072746277, + "learning_rate": 4.399586666666667e-05, + "loss": 2.2520457458496095, + "step": 90100 + }, + { + "epoch": 12.026666666666667, + "grad_norm": 0.270293265581131, + "learning_rate": 4.39892e-05, + "loss": 2.256067810058594, + "step": 90200 + }, + { + "epoch": 12.04, + "grad_norm": 0.26308006048202515, + "learning_rate": 4.3982533333333335e-05, + "loss": 2.254475402832031, + "step": 90300 + }, + { + "epoch": 12.053333333333333, + "grad_norm": 0.26801061630249023, + "learning_rate": 4.3975866666666674e-05, + "loss": 2.2552793884277342, + "step": 90400 + }, + { + "epoch": 12.066666666666666, + "grad_norm": 0.26214471459388733, + "learning_rate": 4.3969200000000006e-05, + "loss": 2.258145599365234, + "step": 90500 + }, + { + "epoch": 12.08, + "grad_norm": 0.28105658292770386, + "learning_rate": 4.396253333333333e-05, + "loss": 2.2529132080078127, + "step": 90600 + }, + { + "epoch": 12.093333333333334, + "grad_norm": 0.2663695216178894, + "learning_rate": 4.395586666666667e-05, + "loss": 2.255912322998047, + "step": 90700 + }, + { + "epoch": 12.106666666666667, + "grad_norm": 0.2649990916252136, + "learning_rate": 4.39492e-05, + "loss": 2.257332000732422, + "step": 90800 + }, + { + "epoch": 12.12, + "grad_norm": 0.2807125747203827, + "learning_rate": 4.39426e-05, + "loss": 2.254444274902344, + "step": 90900 + }, + { + "epoch": 12.133333333333333, + "grad_norm": 0.2781652510166168, + "learning_rate": 4.3935933333333334e-05, + "loss": 2.255809478759766, + "step": 91000 + }, + { + "epoch": 12.146666666666667, + "grad_norm": 0.2698095142841339, + "learning_rate": 4.3929266666666666e-05, + "loss": 2.2598388671875, + "step": 91100 + }, + { + "epoch": 12.16, + "grad_norm": 0.2597528100013733, + "learning_rate": 4.3922600000000005e-05, + "loss": 2.2584068298339846, + "step": 91200 + }, + { + "epoch": 12.173333333333334, + "grad_norm": 0.29636549949645996, + "learning_rate": 4.391593333333334e-05, + "loss": 2.2593704223632813, + "step": 91300 + }, + { + "epoch": 12.186666666666667, + "grad_norm": 0.26234522461891174, + "learning_rate": 4.390926666666667e-05, + "loss": 2.2581317138671877, + "step": 91400 + }, + { + "epoch": 12.2, + "grad_norm": 0.2541376054286957, + "learning_rate": 4.39026e-05, + "loss": 2.2626708984375, + "step": 91500 + }, + { + "epoch": 12.213333333333333, + "grad_norm": 0.26197925209999084, + "learning_rate": 4.3895933333333334e-05, + "loss": 2.260786285400391, + "step": 91600 + }, + { + "epoch": 12.226666666666667, + "grad_norm": 0.2817310690879822, + "learning_rate": 4.388926666666667e-05, + "loss": 2.2600221252441406, + "step": 91700 + }, + { + "epoch": 12.24, + "grad_norm": 0.2767874002456665, + "learning_rate": 4.38826e-05, + "loss": 2.259307556152344, + "step": 91800 + }, + { + "epoch": 12.253333333333334, + "grad_norm": 0.28231081366539, + "learning_rate": 4.387593333333334e-05, + "loss": 2.26181396484375, + "step": 91900 + }, + { + "epoch": 12.266666666666667, + "grad_norm": 0.29353827238082886, + "learning_rate": 4.386926666666667e-05, + "loss": 2.2626690673828125, + "step": 92000 + }, + { + "epoch": 12.28, + "grad_norm": 0.28261885046958923, + "learning_rate": 4.38626e-05, + "loss": 2.2611619567871095, + "step": 92100 + }, + { + "epoch": 12.293333333333333, + "grad_norm": 0.27281126379966736, + "learning_rate": 4.3855933333333335e-05, + "loss": 2.2623275756835937, + "step": 92200 + }, + { + "epoch": 12.306666666666667, + "grad_norm": 0.27092328667640686, + "learning_rate": 4.384926666666667e-05, + "loss": 2.2650576782226564, + "step": 92300 + }, + { + "epoch": 12.32, + "grad_norm": 0.27784717082977295, + "learning_rate": 4.38426e-05, + "loss": 2.265977478027344, + "step": 92400 + }, + { + "epoch": 12.333333333333334, + "grad_norm": 0.2821849286556244, + "learning_rate": 4.383593333333333e-05, + "loss": 2.2627384948730467, + "step": 92500 + }, + { + "epoch": 12.346666666666668, + "grad_norm": 0.2593942880630493, + "learning_rate": 4.382926666666667e-05, + "loss": 2.2643051147460938, + "step": 92600 + }, + { + "epoch": 12.36, + "grad_norm": 0.2664111852645874, + "learning_rate": 4.38226e-05, + "loss": 2.263711700439453, + "step": 92700 + }, + { + "epoch": 12.373333333333333, + "grad_norm": 0.27181532979011536, + "learning_rate": 4.3815933333333335e-05, + "loss": 2.2646673583984374, + "step": 92800 + }, + { + "epoch": 12.386666666666667, + "grad_norm": 0.27028733491897583, + "learning_rate": 4.380926666666667e-05, + "loss": 2.263740997314453, + "step": 92900 + }, + { + "epoch": 12.4, + "grad_norm": 0.27383387088775635, + "learning_rate": 4.3802600000000006e-05, + "loss": 2.2647544860839846, + "step": 93000 + }, + { + "epoch": 12.413333333333334, + "grad_norm": 0.2857363820075989, + "learning_rate": 4.379593333333333e-05, + "loss": 2.2678724670410157, + "step": 93100 + }, + { + "epoch": 12.426666666666666, + "grad_norm": 0.2589321434497833, + "learning_rate": 4.3789266666666664e-05, + "loss": 2.266948547363281, + "step": 93200 + }, + { + "epoch": 12.44, + "grad_norm": 0.2658815085887909, + "learning_rate": 4.37826e-05, + "loss": 2.266887969970703, + "step": 93300 + }, + { + "epoch": 12.453333333333333, + "grad_norm": 0.25604525208473206, + "learning_rate": 4.3775933333333336e-05, + "loss": 2.2663844299316405, + "step": 93400 + }, + { + "epoch": 12.466666666666667, + "grad_norm": 0.2693767249584198, + "learning_rate": 4.376926666666667e-05, + "loss": 2.268565368652344, + "step": 93500 + }, + { + "epoch": 12.48, + "grad_norm": 0.2705082297325134, + "learning_rate": 4.376260000000001e-05, + "loss": 2.2688444519042967, + "step": 93600 + }, + { + "epoch": 12.493333333333334, + "grad_norm": 0.26299747824668884, + "learning_rate": 4.375593333333334e-05, + "loss": 2.2663604736328127, + "step": 93700 + }, + { + "epoch": 12.506666666666666, + "grad_norm": 0.2636234760284424, + "learning_rate": 4.3749266666666665e-05, + "loss": 2.267936096191406, + "step": 93800 + }, + { + "epoch": 12.52, + "grad_norm": 0.27005478739738464, + "learning_rate": 4.37426e-05, + "loss": 2.2693917846679685, + "step": 93900 + }, + { + "epoch": 12.533333333333333, + "grad_norm": 0.26250335574150085, + "learning_rate": 4.3735933333333336e-05, + "loss": 2.2679597473144533, + "step": 94000 + }, + { + "epoch": 12.546666666666667, + "grad_norm": 0.2671932876110077, + "learning_rate": 4.3729333333333335e-05, + "loss": 2.2690809631347655, + "step": 94100 + }, + { + "epoch": 12.56, + "grad_norm": 0.2680586576461792, + "learning_rate": 4.372266666666667e-05, + "loss": 2.271476287841797, + "step": 94200 + }, + { + "epoch": 12.573333333333334, + "grad_norm": 0.2628432512283325, + "learning_rate": 4.3716e-05, + "loss": 2.2699676513671876, + "step": 94300 + }, + { + "epoch": 12.586666666666666, + "grad_norm": 0.2540188431739807, + "learning_rate": 4.370933333333334e-05, + "loss": 2.2718327331542967, + "step": 94400 + }, + { + "epoch": 12.6, + "grad_norm": 0.2647560238838196, + "learning_rate": 4.370266666666667e-05, + "loss": 2.2681085205078126, + "step": 94500 + }, + { + "epoch": 12.613333333333333, + "grad_norm": 0.2745302617549896, + "learning_rate": 4.3696e-05, + "loss": 2.2698655700683594, + "step": 94600 + }, + { + "epoch": 12.626666666666667, + "grad_norm": 0.26162075996398926, + "learning_rate": 4.3689333333333335e-05, + "loss": 2.2712269592285157, + "step": 94700 + }, + { + "epoch": 12.64, + "grad_norm": 0.2582067847251892, + "learning_rate": 4.368266666666667e-05, + "loss": 2.272103271484375, + "step": 94800 + }, + { + "epoch": 12.653333333333332, + "grad_norm": 0.27295711636543274, + "learning_rate": 4.3676e-05, + "loss": 2.272527618408203, + "step": 94900 + }, + { + "epoch": 12.666666666666666, + "grad_norm": 0.2765968441963196, + "learning_rate": 4.366933333333333e-05, + "loss": 2.271612243652344, + "step": 95000 + }, + { + "epoch": 12.68, + "grad_norm": 0.25656306743621826, + "learning_rate": 4.366266666666667e-05, + "loss": 2.271820068359375, + "step": 95100 + }, + { + "epoch": 12.693333333333333, + "grad_norm": 0.2678724527359009, + "learning_rate": 4.3656000000000004e-05, + "loss": 2.271623992919922, + "step": 95200 + }, + { + "epoch": 12.706666666666667, + "grad_norm": 0.26828429102897644, + "learning_rate": 4.3649333333333336e-05, + "loss": 2.272816467285156, + "step": 95300 + }, + { + "epoch": 12.72, + "grad_norm": 0.2544470429420471, + "learning_rate": 4.364266666666667e-05, + "loss": 2.2750363159179687, + "step": 95400 + }, + { + "epoch": 12.733333333333333, + "grad_norm": 0.2685322165489197, + "learning_rate": 4.363600000000001e-05, + "loss": 2.2729071044921874, + "step": 95500 + }, + { + "epoch": 12.746666666666666, + "grad_norm": 0.26069387793540955, + "learning_rate": 4.362933333333333e-05, + "loss": 2.2722439575195312, + "step": 95600 + }, + { + "epoch": 12.76, + "grad_norm": 0.2649424374103546, + "learning_rate": 4.3622666666666665e-05, + "loss": 2.272758026123047, + "step": 95700 + }, + { + "epoch": 12.773333333333333, + "grad_norm": 0.2521308660507202, + "learning_rate": 4.3616000000000004e-05, + "loss": 2.272996520996094, + "step": 95800 + }, + { + "epoch": 12.786666666666667, + "grad_norm": 0.25602442026138306, + "learning_rate": 4.3609333333333336e-05, + "loss": 2.2761857604980467, + "step": 95900 + }, + { + "epoch": 12.8, + "grad_norm": 0.267101913690567, + "learning_rate": 4.360266666666667e-05, + "loss": 2.2757493591308595, + "step": 96000 + }, + { + "epoch": 12.813333333333333, + "grad_norm": 0.26094216108322144, + "learning_rate": 4.3596e-05, + "loss": 2.2767680358886717, + "step": 96100 + }, + { + "epoch": 12.826666666666666, + "grad_norm": 0.3060274124145508, + "learning_rate": 4.358933333333334e-05, + "loss": 2.276941833496094, + "step": 96200 + }, + { + "epoch": 12.84, + "grad_norm": 0.26290687918663025, + "learning_rate": 4.3582666666666665e-05, + "loss": 2.275010528564453, + "step": 96300 + }, + { + "epoch": 12.853333333333333, + "grad_norm": 0.2535942792892456, + "learning_rate": 4.3576e-05, + "loss": 2.273764343261719, + "step": 96400 + }, + { + "epoch": 12.866666666666667, + "grad_norm": 0.27731791138648987, + "learning_rate": 4.3569333333333337e-05, + "loss": 2.2726361083984377, + "step": 96500 + }, + { + "epoch": 12.88, + "grad_norm": 0.2616978585720062, + "learning_rate": 4.356266666666667e-05, + "loss": 2.2775596618652343, + "step": 96600 + }, + { + "epoch": 12.893333333333333, + "grad_norm": 0.28346607089042664, + "learning_rate": 4.3556e-05, + "loss": 2.277263488769531, + "step": 96700 + }, + { + "epoch": 12.906666666666666, + "grad_norm": 0.26759618520736694, + "learning_rate": 4.354933333333333e-05, + "loss": 2.2788565063476565, + "step": 96800 + }, + { + "epoch": 12.92, + "grad_norm": 0.25372806191444397, + "learning_rate": 4.354266666666667e-05, + "loss": 2.278957977294922, + "step": 96900 + }, + { + "epoch": 12.933333333333334, + "grad_norm": 0.2680625319480896, + "learning_rate": 4.3536000000000005e-05, + "loss": 2.2768804931640627, + "step": 97000 + }, + { + "epoch": 12.946666666666667, + "grad_norm": 0.28444984555244446, + "learning_rate": 4.352933333333333e-05, + "loss": 2.2771568298339844, + "step": 97100 + }, + { + "epoch": 12.96, + "grad_norm": 0.26102322340011597, + "learning_rate": 4.352266666666667e-05, + "loss": 2.277088928222656, + "step": 97200 + }, + { + "epoch": 12.973333333333333, + "grad_norm": 0.25774040818214417, + "learning_rate": 4.3516e-05, + "loss": 2.2783038330078127, + "step": 97300 + }, + { + "epoch": 12.986666666666666, + "grad_norm": 0.27031639218330383, + "learning_rate": 4.3509333333333334e-05, + "loss": 2.276095275878906, + "step": 97400 + }, + { + "epoch": 13.0, + "grad_norm": 0.262939989566803, + "learning_rate": 4.3502666666666666e-05, + "loss": 2.2774124145507812, + "step": 97500 + }, + { + "epoch": 13.013333333333334, + "grad_norm": 0.29187247157096863, + "learning_rate": 4.3496066666666665e-05, + "loss": 2.2387960815429686, + "step": 97600 + }, + { + "epoch": 13.026666666666667, + "grad_norm": 0.2766711413860321, + "learning_rate": 4.3489400000000004e-05, + "loss": 2.2393284606933594, + "step": 97700 + }, + { + "epoch": 13.04, + "grad_norm": 0.26698678731918335, + "learning_rate": 4.3482733333333336e-05, + "loss": 2.2385823059082033, + "step": 97800 + }, + { + "epoch": 13.053333333333333, + "grad_norm": 0.28331395983695984, + "learning_rate": 4.347606666666667e-05, + "loss": 2.23583251953125, + "step": 97900 + }, + { + "epoch": 13.066666666666666, + "grad_norm": 0.27367907762527466, + "learning_rate": 4.346940000000001e-05, + "loss": 2.2407188415527344, + "step": 98000 + }, + { + "epoch": 13.08, + "grad_norm": 0.28484055399894714, + "learning_rate": 4.346273333333333e-05, + "loss": 2.244789886474609, + "step": 98100 + }, + { + "epoch": 13.093333333333334, + "grad_norm": 0.28485485911369324, + "learning_rate": 4.3456066666666665e-05, + "loss": 2.242432861328125, + "step": 98200 + }, + { + "epoch": 13.106666666666667, + "grad_norm": 0.2772075831890106, + "learning_rate": 4.3449400000000005e-05, + "loss": 2.242548370361328, + "step": 98300 + }, + { + "epoch": 13.12, + "grad_norm": 0.2794252336025238, + "learning_rate": 4.344273333333334e-05, + "loss": 2.241208953857422, + "step": 98400 + }, + { + "epoch": 13.133333333333333, + "grad_norm": 0.2768386900424957, + "learning_rate": 4.343606666666667e-05, + "loss": 2.2418304443359376, + "step": 98500 + }, + { + "epoch": 13.146666666666667, + "grad_norm": 0.29671546816825867, + "learning_rate": 4.34294e-05, + "loss": 2.24133544921875, + "step": 98600 + }, + { + "epoch": 13.16, + "grad_norm": 0.28922173380851746, + "learning_rate": 4.342273333333334e-05, + "loss": 2.2457321166992186, + "step": 98700 + }, + { + "epoch": 13.173333333333334, + "grad_norm": 0.2911158800125122, + "learning_rate": 4.3416066666666666e-05, + "loss": 2.243005676269531, + "step": 98800 + }, + { + "epoch": 13.186666666666667, + "grad_norm": 0.2844465374946594, + "learning_rate": 4.34094e-05, + "loss": 2.2428907775878906, + "step": 98900 + }, + { + "epoch": 13.2, + "grad_norm": 0.29359185695648193, + "learning_rate": 4.340273333333334e-05, + "loss": 2.2461944580078126, + "step": 99000 + }, + { + "epoch": 13.213333333333333, + "grad_norm": 0.2992889881134033, + "learning_rate": 4.339606666666667e-05, + "loss": 2.2442695617675783, + "step": 99100 + }, + { + "epoch": 13.226666666666667, + "grad_norm": 0.28376510739326477, + "learning_rate": 4.33894e-05, + "loss": 2.2490634155273437, + "step": 99200 + }, + { + "epoch": 13.24, + "grad_norm": 0.26906511187553406, + "learning_rate": 4.3382733333333334e-05, + "loss": 2.248119354248047, + "step": 99300 + }, + { + "epoch": 13.253333333333334, + "grad_norm": 0.2935919165611267, + "learning_rate": 4.337606666666667e-05, + "loss": 2.244882354736328, + "step": 99400 + }, + { + "epoch": 13.266666666666667, + "grad_norm": 0.27943170070648193, + "learning_rate": 4.3369400000000005e-05, + "loss": 2.247407989501953, + "step": 99500 + }, + { + "epoch": 13.28, + "grad_norm": 0.27867066860198975, + "learning_rate": 4.336273333333333e-05, + "loss": 2.247802429199219, + "step": 99600 + }, + { + "epoch": 13.293333333333333, + "grad_norm": 0.29325079917907715, + "learning_rate": 4.335606666666667e-05, + "loss": 2.248299865722656, + "step": 99700 + }, + { + "epoch": 13.306666666666667, + "grad_norm": 0.276795893907547, + "learning_rate": 4.33494e-05, + "loss": 2.2507450866699217, + "step": 99800 + }, + { + "epoch": 13.32, + "grad_norm": 0.2778800427913666, + "learning_rate": 4.3342733333333334e-05, + "loss": 2.249114990234375, + "step": 99900 + }, + { + "epoch": 13.333333333333334, + "grad_norm": 0.2965216636657715, + "learning_rate": 4.3336066666666667e-05, + "loss": 2.250552520751953, + "step": 100000 + }, + { + "epoch": 13.346666666666668, + "grad_norm": 0.2709920108318329, + "learning_rate": 4.3329400000000006e-05, + "loss": 2.2509161376953126, + "step": 100100 + }, + { + "epoch": 13.36, + "grad_norm": 0.2882387638092041, + "learning_rate": 4.332273333333334e-05, + "loss": 2.2525457763671874, + "step": 100200 + }, + { + "epoch": 13.373333333333333, + "grad_norm": 0.2988874316215515, + "learning_rate": 4.331606666666667e-05, + "loss": 2.2508233642578124, + "step": 100300 + }, + { + "epoch": 13.386666666666667, + "grad_norm": 0.274324506521225, + "learning_rate": 4.33094e-05, + "loss": 2.2498133850097655, + "step": 100400 + }, + { + "epoch": 13.4, + "grad_norm": 0.29012390971183777, + "learning_rate": 4.3302733333333335e-05, + "loss": 2.252369079589844, + "step": 100500 + }, + { + "epoch": 13.413333333333334, + "grad_norm": 0.2632313668727875, + "learning_rate": 4.329606666666667e-05, + "loss": 2.2533638000488283, + "step": 100600 + }, + { + "epoch": 13.426666666666666, + "grad_norm": 0.26571324467658997, + "learning_rate": 4.32894e-05, + "loss": 2.253193054199219, + "step": 100700 + }, + { + "epoch": 13.44, + "grad_norm": 0.289485901594162, + "learning_rate": 4.328273333333334e-05, + "loss": 2.251653747558594, + "step": 100800 + }, + { + "epoch": 13.453333333333333, + "grad_norm": 0.2886415421962738, + "learning_rate": 4.327606666666667e-05, + "loss": 2.251334228515625, + "step": 100900 + }, + { + "epoch": 13.466666666666667, + "grad_norm": 0.2879510819911957, + "learning_rate": 4.32694e-05, + "loss": 2.2535078430175783, + "step": 101000 + }, + { + "epoch": 13.48, + "grad_norm": 0.2864849269390106, + "learning_rate": 4.3262733333333335e-05, + "loss": 2.2524153137207032, + "step": 101100 + }, + { + "epoch": 13.493333333333334, + "grad_norm": 0.27846381068229675, + "learning_rate": 4.325606666666667e-05, + "loss": 2.255931549072266, + "step": 101200 + }, + { + "epoch": 13.506666666666666, + "grad_norm": 0.293816477060318, + "learning_rate": 4.32494e-05, + "loss": 2.256122894287109, + "step": 101300 + }, + { + "epoch": 13.52, + "grad_norm": 0.2949255704879761, + "learning_rate": 4.324273333333333e-05, + "loss": 2.2581175231933592, + "step": 101400 + }, + { + "epoch": 13.533333333333333, + "grad_norm": 0.2826773226261139, + "learning_rate": 4.323606666666667e-05, + "loss": 2.255837097167969, + "step": 101500 + }, + { + "epoch": 13.546666666666667, + "grad_norm": 0.2743004262447357, + "learning_rate": 4.322953333333333e-05, + "loss": 2.2541908264160155, + "step": 101600 + }, + { + "epoch": 13.56, + "grad_norm": 0.2713441550731659, + "learning_rate": 4.322286666666667e-05, + "loss": 2.258142547607422, + "step": 101700 + }, + { + "epoch": 13.573333333333334, + "grad_norm": 0.283563494682312, + "learning_rate": 4.32162e-05, + "loss": 2.2553956604003904, + "step": 101800 + }, + { + "epoch": 13.586666666666666, + "grad_norm": 0.28330928087234497, + "learning_rate": 4.3209533333333334e-05, + "loss": 2.257396697998047, + "step": 101900 + }, + { + "epoch": 13.6, + "grad_norm": 0.2793908715248108, + "learning_rate": 4.3202866666666666e-05, + "loss": 2.256497344970703, + "step": 102000 + }, + { + "epoch": 13.613333333333333, + "grad_norm": 0.2900395393371582, + "learning_rate": 4.3196200000000005e-05, + "loss": 2.255678405761719, + "step": 102100 + }, + { + "epoch": 13.626666666666667, + "grad_norm": 0.27794957160949707, + "learning_rate": 4.318953333333334e-05, + "loss": 2.2580166625976563, + "step": 102200 + }, + { + "epoch": 13.64, + "grad_norm": 0.2686266303062439, + "learning_rate": 4.318286666666667e-05, + "loss": 2.260865478515625, + "step": 102300 + }, + { + "epoch": 13.653333333333332, + "grad_norm": 0.2785786986351013, + "learning_rate": 4.31762e-05, + "loss": 2.260006561279297, + "step": 102400 + }, + { + "epoch": 13.666666666666666, + "grad_norm": 0.28079360723495483, + "learning_rate": 4.3169533333333334e-05, + "loss": 2.2595237731933593, + "step": 102500 + }, + { + "epoch": 13.68, + "grad_norm": 0.3011217415332794, + "learning_rate": 4.3162866666666666e-05, + "loss": 2.2576690673828126, + "step": 102600 + }, + { + "epoch": 13.693333333333333, + "grad_norm": 0.29701074957847595, + "learning_rate": 4.3156200000000005e-05, + "loss": 2.2590093994140625, + "step": 102700 + }, + { + "epoch": 13.706666666666667, + "grad_norm": 0.284489244222641, + "learning_rate": 4.314953333333334e-05, + "loss": 2.2569615173339845, + "step": 102800 + }, + { + "epoch": 13.72, + "grad_norm": 0.29608434438705444, + "learning_rate": 4.314286666666667e-05, + "loss": 2.26008544921875, + "step": 102900 + }, + { + "epoch": 13.733333333333333, + "grad_norm": 0.2743198275566101, + "learning_rate": 4.31362e-05, + "loss": 2.2595872497558593, + "step": 103000 + }, + { + "epoch": 13.746666666666666, + "grad_norm": 0.2759169340133667, + "learning_rate": 4.3129533333333334e-05, + "loss": 2.260936737060547, + "step": 103100 + }, + { + "epoch": 13.76, + "grad_norm": 0.2984674274921417, + "learning_rate": 4.312286666666667e-05, + "loss": 2.2615948486328126, + "step": 103200 + }, + { + "epoch": 13.773333333333333, + "grad_norm": 0.27188169956207275, + "learning_rate": 4.31162e-05, + "loss": 2.2584141540527343, + "step": 103300 + }, + { + "epoch": 13.786666666666667, + "grad_norm": 0.2684420943260193, + "learning_rate": 4.310953333333334e-05, + "loss": 2.26137451171875, + "step": 103400 + }, + { + "epoch": 13.8, + "grad_norm": 0.2790769040584564, + "learning_rate": 4.310286666666667e-05, + "loss": 2.260129089355469, + "step": 103500 + }, + { + "epoch": 13.813333333333333, + "grad_norm": 0.28276488184928894, + "learning_rate": 4.30962e-05, + "loss": 2.261208038330078, + "step": 103600 + }, + { + "epoch": 13.826666666666666, + "grad_norm": 0.27551108598709106, + "learning_rate": 4.30896e-05, + "loss": 2.2652987670898437, + "step": 103700 + }, + { + "epoch": 13.84, + "grad_norm": 0.27749794721603394, + "learning_rate": 4.3082933333333334e-05, + "loss": 2.2623104858398437, + "step": 103800 + }, + { + "epoch": 13.853333333333333, + "grad_norm": 0.29130128026008606, + "learning_rate": 4.307626666666667e-05, + "loss": 2.2647268676757815, + "step": 103900 + }, + { + "epoch": 13.866666666666667, + "grad_norm": 0.27854955196380615, + "learning_rate": 4.3069600000000005e-05, + "loss": 2.2648512268066407, + "step": 104000 + }, + { + "epoch": 13.88, + "grad_norm": 0.2763110399246216, + "learning_rate": 4.306293333333333e-05, + "loss": 2.262389678955078, + "step": 104100 + }, + { + "epoch": 13.893333333333333, + "grad_norm": 0.2861855626106262, + "learning_rate": 4.305626666666667e-05, + "loss": 2.260863952636719, + "step": 104200 + }, + { + "epoch": 13.906666666666666, + "grad_norm": 0.2763212323188782, + "learning_rate": 4.30496e-05, + "loss": 2.2617811584472656, + "step": 104300 + }, + { + "epoch": 13.92, + "grad_norm": 0.27700719237327576, + "learning_rate": 4.3042933333333334e-05, + "loss": 2.2629629516601564, + "step": 104400 + }, + { + "epoch": 13.933333333333334, + "grad_norm": 0.289580374956131, + "learning_rate": 4.3036266666666667e-05, + "loss": 2.2654957580566406, + "step": 104500 + }, + { + "epoch": 13.946666666666667, + "grad_norm": 0.288922518491745, + "learning_rate": 4.3029600000000006e-05, + "loss": 2.2641279602050783, + "step": 104600 + }, + { + "epoch": 13.96, + "grad_norm": 0.2980629503726959, + "learning_rate": 4.302293333333334e-05, + "loss": 2.2678652954101564, + "step": 104700 + }, + { + "epoch": 13.973333333333333, + "grad_norm": 0.279041051864624, + "learning_rate": 4.301626666666667e-05, + "loss": 2.264940185546875, + "step": 104800 + }, + { + "epoch": 13.986666666666666, + "grad_norm": 0.2885514497756958, + "learning_rate": 4.30096e-05, + "loss": 2.264721221923828, + "step": 104900 + }, + { + "epoch": 14.0, + "grad_norm": 0.2856515347957611, + "learning_rate": 4.3002933333333335e-05, + "loss": 2.2638644409179687, + "step": 105000 + }, + { + "epoch": 14.013333333333334, + "grad_norm": 0.2933811843395233, + "learning_rate": 4.299626666666667e-05, + "loss": 2.223587951660156, + "step": 105100 + }, + { + "epoch": 14.026666666666667, + "grad_norm": 0.3170996308326721, + "learning_rate": 4.29896e-05, + "loss": 2.2215760803222655, + "step": 105200 + }, + { + "epoch": 14.04, + "grad_norm": 0.32004064321517944, + "learning_rate": 4.298293333333334e-05, + "loss": 2.2238189697265627, + "step": 105300 + }, + { + "epoch": 14.053333333333333, + "grad_norm": 0.29204490780830383, + "learning_rate": 4.297626666666667e-05, + "loss": 2.2225723266601562, + "step": 105400 + }, + { + "epoch": 14.066666666666666, + "grad_norm": 0.3062141239643097, + "learning_rate": 4.29696e-05, + "loss": 2.223246765136719, + "step": 105500 + }, + { + "epoch": 14.08, + "grad_norm": 0.30984053015708923, + "learning_rate": 4.2962933333333335e-05, + "loss": 2.2242507934570312, + "step": 105600 + }, + { + "epoch": 14.093333333333334, + "grad_norm": 0.322451651096344, + "learning_rate": 4.295626666666667e-05, + "loss": 2.2280723571777346, + "step": 105700 + }, + { + "epoch": 14.106666666666667, + "grad_norm": 0.3022569417953491, + "learning_rate": 4.29496e-05, + "loss": 2.226327209472656, + "step": 105800 + }, + { + "epoch": 14.12, + "grad_norm": 0.30784836411476135, + "learning_rate": 4.294293333333333e-05, + "loss": 2.2258816528320313, + "step": 105900 + }, + { + "epoch": 14.133333333333333, + "grad_norm": 0.30157235264778137, + "learning_rate": 4.293626666666667e-05, + "loss": 2.2270236206054688, + "step": 106000 + }, + { + "epoch": 14.146666666666667, + "grad_norm": 0.30551230907440186, + "learning_rate": 4.29296e-05, + "loss": 2.231392822265625, + "step": 106100 + }, + { + "epoch": 14.16, + "grad_norm": 0.2978629171848297, + "learning_rate": 4.2922933333333335e-05, + "loss": 2.228222198486328, + "step": 106200 + }, + { + "epoch": 14.173333333333334, + "grad_norm": 0.3043777644634247, + "learning_rate": 4.2916333333333334e-05, + "loss": 2.2319209289550783, + "step": 106300 + }, + { + "epoch": 14.186666666666667, + "grad_norm": 0.29846736788749695, + "learning_rate": 4.2909666666666674e-05, + "loss": 2.228956451416016, + "step": 106400 + }, + { + "epoch": 14.2, + "grad_norm": 0.30101996660232544, + "learning_rate": 4.2903000000000006e-05, + "loss": 2.233109588623047, + "step": 106500 + }, + { + "epoch": 14.213333333333333, + "grad_norm": 0.2905249297618866, + "learning_rate": 4.289633333333333e-05, + "loss": 2.23214111328125, + "step": 106600 + }, + { + "epoch": 14.226666666666667, + "grad_norm": 0.31870153546333313, + "learning_rate": 4.2889666666666664e-05, + "loss": 2.23111572265625, + "step": 106700 + }, + { + "epoch": 14.24, + "grad_norm": 0.31344854831695557, + "learning_rate": 4.2883e-05, + "loss": 2.2312010192871092, + "step": 106800 + }, + { + "epoch": 14.253333333333334, + "grad_norm": 0.3159984350204468, + "learning_rate": 4.2876333333333335e-05, + "loss": 2.234411315917969, + "step": 106900 + }, + { + "epoch": 14.266666666666667, + "grad_norm": 0.3049383759498596, + "learning_rate": 4.286966666666667e-05, + "loss": 2.232013854980469, + "step": 107000 + }, + { + "epoch": 14.28, + "grad_norm": 0.2840105891227722, + "learning_rate": 4.2863000000000006e-05, + "loss": 2.2319927978515626, + "step": 107100 + }, + { + "epoch": 14.293333333333333, + "grad_norm": 0.3090221881866455, + "learning_rate": 4.285633333333334e-05, + "loss": 2.235484771728516, + "step": 107200 + }, + { + "epoch": 14.306666666666667, + "grad_norm": 0.2912992835044861, + "learning_rate": 4.284966666666667e-05, + "loss": 2.233905944824219, + "step": 107300 + }, + { + "epoch": 14.32, + "grad_norm": 0.2928401231765747, + "learning_rate": 4.2843e-05, + "loss": 2.2329034423828125, + "step": 107400 + }, + { + "epoch": 14.333333333333334, + "grad_norm": 0.2940289080142975, + "learning_rate": 4.2836333333333335e-05, + "loss": 2.23254150390625, + "step": 107500 + }, + { + "epoch": 14.346666666666668, + "grad_norm": 0.3051759898662567, + "learning_rate": 4.282966666666667e-05, + "loss": 2.235914764404297, + "step": 107600 + }, + { + "epoch": 14.36, + "grad_norm": 0.29925987124443054, + "learning_rate": 4.2823e-05, + "loss": 2.236822052001953, + "step": 107700 + }, + { + "epoch": 14.373333333333333, + "grad_norm": 0.30133113265037537, + "learning_rate": 4.281633333333334e-05, + "loss": 2.237333068847656, + "step": 107800 + }, + { + "epoch": 14.386666666666667, + "grad_norm": 0.2979786694049835, + "learning_rate": 4.280966666666667e-05, + "loss": 2.2337214660644533, + "step": 107900 + }, + { + "epoch": 14.4, + "grad_norm": 0.30509302020072937, + "learning_rate": 4.2803e-05, + "loss": 2.234857177734375, + "step": 108000 + }, + { + "epoch": 14.413333333333334, + "grad_norm": 0.31245774030685425, + "learning_rate": 4.2796333333333336e-05, + "loss": 2.2369602966308593, + "step": 108100 + }, + { + "epoch": 14.426666666666666, + "grad_norm": 0.28808292746543884, + "learning_rate": 4.278966666666667e-05, + "loss": 2.2391943359375, + "step": 108200 + }, + { + "epoch": 14.44, + "grad_norm": 0.3327585756778717, + "learning_rate": 4.2783066666666674e-05, + "loss": 2.2387188720703124, + "step": 108300 + }, + { + "epoch": 14.453333333333333, + "grad_norm": 0.3101474940776825, + "learning_rate": 4.27764e-05, + "loss": 2.2376824951171876, + "step": 108400 + }, + { + "epoch": 14.466666666666667, + "grad_norm": 0.2869791090488434, + "learning_rate": 4.276973333333333e-05, + "loss": 2.237794189453125, + "step": 108500 + }, + { + "epoch": 14.48, + "grad_norm": 0.3071404695510864, + "learning_rate": 4.276306666666667e-05, + "loss": 2.239633331298828, + "step": 108600 + }, + { + "epoch": 14.493333333333334, + "grad_norm": 0.2966044843196869, + "learning_rate": 4.27564e-05, + "loss": 2.2403135681152344, + "step": 108700 + }, + { + "epoch": 14.506666666666666, + "grad_norm": 0.2996501624584198, + "learning_rate": 4.2749733333333335e-05, + "loss": 2.240699920654297, + "step": 108800 + }, + { + "epoch": 14.52, + "grad_norm": 0.3051213026046753, + "learning_rate": 4.274306666666667e-05, + "loss": 2.241038360595703, + "step": 108900 + }, + { + "epoch": 14.533333333333333, + "grad_norm": 0.3177984952926636, + "learning_rate": 4.2736400000000006e-05, + "loss": 2.241685485839844, + "step": 109000 + }, + { + "epoch": 14.546666666666667, + "grad_norm": 0.31197378039360046, + "learning_rate": 4.272973333333333e-05, + "loss": 2.2384878540039064, + "step": 109100 + }, + { + "epoch": 14.56, + "grad_norm": 0.3031216263771057, + "learning_rate": 4.2723066666666664e-05, + "loss": 2.240026397705078, + "step": 109200 + }, + { + "epoch": 14.573333333333334, + "grad_norm": 0.2918401062488556, + "learning_rate": 4.27164e-05, + "loss": 2.2429275512695312, + "step": 109300 + }, + { + "epoch": 14.586666666666666, + "grad_norm": 0.30749937891960144, + "learning_rate": 4.2709733333333335e-05, + "loss": 2.2420500183105467, + "step": 109400 + }, + { + "epoch": 14.6, + "grad_norm": 0.30055928230285645, + "learning_rate": 4.270306666666667e-05, + "loss": 2.2444825744628907, + "step": 109500 + }, + { + "epoch": 14.613333333333333, + "grad_norm": 0.3009972870349884, + "learning_rate": 4.26964e-05, + "loss": 2.2414918518066407, + "step": 109600 + }, + { + "epoch": 14.626666666666667, + "grad_norm": 0.29409679770469666, + "learning_rate": 4.268973333333334e-05, + "loss": 2.243094940185547, + "step": 109700 + }, + { + "epoch": 14.64, + "grad_norm": 0.3000005781650543, + "learning_rate": 4.268306666666667e-05, + "loss": 2.243612060546875, + "step": 109800 + }, + { + "epoch": 14.653333333333332, + "grad_norm": 0.31389036774635315, + "learning_rate": 4.26764e-05, + "loss": 2.247608337402344, + "step": 109900 + }, + { + "epoch": 14.666666666666666, + "grad_norm": 0.30435290932655334, + "learning_rate": 4.2669733333333336e-05, + "loss": 2.2452850341796875, + "step": 110000 + }, + { + "epoch": 14.68, + "grad_norm": 0.31581467390060425, + "learning_rate": 4.266306666666667e-05, + "loss": 2.2423834228515624, + "step": 110100 + }, + { + "epoch": 14.693333333333333, + "grad_norm": 0.30677202343940735, + "learning_rate": 4.26564e-05, + "loss": 2.2448631286621095, + "step": 110200 + }, + { + "epoch": 14.706666666666667, + "grad_norm": 0.2914011776447296, + "learning_rate": 4.264973333333333e-05, + "loss": 2.2458355712890623, + "step": 110300 + }, + { + "epoch": 14.72, + "grad_norm": 0.30041709542274475, + "learning_rate": 4.264313333333333e-05, + "loss": 2.2454510498046876, + "step": 110400 + }, + { + "epoch": 14.733333333333333, + "grad_norm": 0.29341447353363037, + "learning_rate": 4.263646666666667e-05, + "loss": 2.2464495849609376, + "step": 110500 + }, + { + "epoch": 14.746666666666666, + "grad_norm": 0.2851749658584595, + "learning_rate": 4.26298e-05, + "loss": 2.2466586303710936, + "step": 110600 + }, + { + "epoch": 14.76, + "grad_norm": 0.297852486371994, + "learning_rate": 4.2623133333333335e-05, + "loss": 2.2463618469238282, + "step": 110700 + }, + { + "epoch": 14.773333333333333, + "grad_norm": 0.2981916666030884, + "learning_rate": 4.2616466666666674e-05, + "loss": 2.2474107360839843, + "step": 110800 + }, + { + "epoch": 14.786666666666667, + "grad_norm": 0.29726073145866394, + "learning_rate": 4.26098e-05, + "loss": 2.2470823669433595, + "step": 110900 + }, + { + "epoch": 14.8, + "grad_norm": 0.29146844148635864, + "learning_rate": 4.260313333333333e-05, + "loss": 2.248656005859375, + "step": 111000 + }, + { + "epoch": 14.813333333333333, + "grad_norm": 0.30146679282188416, + "learning_rate": 4.259646666666667e-05, + "loss": 2.2492645263671873, + "step": 111100 + }, + { + "epoch": 14.826666666666666, + "grad_norm": 0.30518659949302673, + "learning_rate": 4.2589800000000003e-05, + "loss": 2.2455149841308595, + "step": 111200 + }, + { + "epoch": 14.84, + "grad_norm": 0.2941482663154602, + "learning_rate": 4.2583133333333336e-05, + "loss": 2.247636413574219, + "step": 111300 + }, + { + "epoch": 14.853333333333333, + "grad_norm": 0.3071843981742859, + "learning_rate": 4.257646666666667e-05, + "loss": 2.249114227294922, + "step": 111400 + }, + { + "epoch": 14.866666666666667, + "grad_norm": 0.2867000102996826, + "learning_rate": 4.256980000000001e-05, + "loss": 2.244889831542969, + "step": 111500 + }, + { + "epoch": 14.88, + "grad_norm": 0.29321691393852234, + "learning_rate": 4.256313333333333e-05, + "loss": 2.2497218322753905, + "step": 111600 + }, + { + "epoch": 14.893333333333333, + "grad_norm": 0.28539395332336426, + "learning_rate": 4.2556466666666665e-05, + "loss": 2.2499490356445313, + "step": 111700 + }, + { + "epoch": 14.906666666666666, + "grad_norm": 0.2966148257255554, + "learning_rate": 4.2549800000000004e-05, + "loss": 2.251126708984375, + "step": 111800 + }, + { + "epoch": 14.92, + "grad_norm": 0.30318519473075867, + "learning_rate": 4.2543133333333336e-05, + "loss": 2.251923370361328, + "step": 111900 + }, + { + "epoch": 14.933333333333334, + "grad_norm": 0.30401572585105896, + "learning_rate": 4.253646666666667e-05, + "loss": 2.247659912109375, + "step": 112000 + }, + { + "epoch": 14.946666666666667, + "grad_norm": 0.42713233828544617, + "learning_rate": 4.25298e-05, + "loss": 2.2480320739746094, + "step": 112100 + }, + { + "epoch": 14.96, + "grad_norm": 0.3023832440376282, + "learning_rate": 4.252313333333334e-05, + "loss": 2.252263946533203, + "step": 112200 + }, + { + "epoch": 14.973333333333333, + "grad_norm": 0.31739455461502075, + "learning_rate": 4.251646666666667e-05, + "loss": 2.250135040283203, + "step": 112300 + }, + { + "epoch": 14.986666666666666, + "grad_norm": 0.2998296618461609, + "learning_rate": 4.25098e-05, + "loss": 2.250568542480469, + "step": 112400 + }, + { + "epoch": 15.0, + "grad_norm": 0.3116128146648407, + "learning_rate": 4.25032e-05, + "loss": 2.254090118408203, + "step": 112500 + }, + { + "epoch": 15.013333333333334, + "grad_norm": 0.324983686208725, + "learning_rate": 4.2496533333333336e-05, + "loss": 2.2063966369628907, + "step": 112600 + }, + { + "epoch": 15.026666666666667, + "grad_norm": 0.32630521059036255, + "learning_rate": 4.248986666666667e-05, + "loss": 2.204698486328125, + "step": 112700 + }, + { + "epoch": 15.04, + "grad_norm": 0.33141613006591797, + "learning_rate": 4.24832e-05, + "loss": 2.2065577697753906, + "step": 112800 + }, + { + "epoch": 15.053333333333333, + "grad_norm": 0.29963183403015137, + "learning_rate": 4.247653333333333e-05, + "loss": 2.208046569824219, + "step": 112900 + }, + { + "epoch": 15.066666666666666, + "grad_norm": 0.30262288451194763, + "learning_rate": 4.246986666666667e-05, + "loss": 2.208232574462891, + "step": 113000 + }, + { + "epoch": 15.08, + "grad_norm": 0.31407952308654785, + "learning_rate": 4.2463200000000004e-05, + "loss": 2.2060285949707032, + "step": 113100 + }, + { + "epoch": 15.093333333333334, + "grad_norm": 0.3279408812522888, + "learning_rate": 4.2456533333333336e-05, + "loss": 2.2077986145019532, + "step": 113200 + }, + { + "epoch": 15.106666666666667, + "grad_norm": 0.3157520592212677, + "learning_rate": 4.244986666666667e-05, + "loss": 2.2095164489746093, + "step": 113300 + }, + { + "epoch": 15.12, + "grad_norm": 0.31880176067352295, + "learning_rate": 4.24432e-05, + "loss": 2.210868377685547, + "step": 113400 + }, + { + "epoch": 15.133333333333333, + "grad_norm": 0.31537145376205444, + "learning_rate": 4.243653333333333e-05, + "loss": 2.208413391113281, + "step": 113500 + }, + { + "epoch": 15.146666666666667, + "grad_norm": 0.34451282024383545, + "learning_rate": 4.2429866666666665e-05, + "loss": 2.216689453125, + "step": 113600 + }, + { + "epoch": 15.16, + "grad_norm": 0.343150794506073, + "learning_rate": 4.2423200000000004e-05, + "loss": 2.2148944091796876, + "step": 113700 + }, + { + "epoch": 15.173333333333334, + "grad_norm": 0.33272266387939453, + "learning_rate": 4.2416533333333336e-05, + "loss": 2.2134307861328124, + "step": 113800 + }, + { + "epoch": 15.186666666666667, + "grad_norm": 0.3378112018108368, + "learning_rate": 4.240986666666667e-05, + "loss": 2.2136904907226564, + "step": 113900 + }, + { + "epoch": 15.2, + "grad_norm": 0.31077101826667786, + "learning_rate": 4.24032e-05, + "loss": 2.2134745788574217, + "step": 114000 + }, + { + "epoch": 15.213333333333333, + "grad_norm": 0.32572445273399353, + "learning_rate": 4.239653333333334e-05, + "loss": 2.217989654541016, + "step": 114100 + }, + { + "epoch": 15.226666666666667, + "grad_norm": 0.3158329725265503, + "learning_rate": 4.2389866666666665e-05, + "loss": 2.213584442138672, + "step": 114200 + }, + { + "epoch": 15.24, + "grad_norm": 0.3473946750164032, + "learning_rate": 4.23832e-05, + "loss": 2.212930450439453, + "step": 114300 + }, + { + "epoch": 15.253333333333334, + "grad_norm": 0.32019126415252686, + "learning_rate": 4.237653333333334e-05, + "loss": 2.2173892211914064, + "step": 114400 + }, + { + "epoch": 15.266666666666667, + "grad_norm": 0.31340309977531433, + "learning_rate": 4.236986666666667e-05, + "loss": 2.2174838256835936, + "step": 114500 + }, + { + "epoch": 15.28, + "grad_norm": 0.33847081661224365, + "learning_rate": 4.236326666666667e-05, + "loss": 2.21783203125, + "step": 114600 + }, + { + "epoch": 15.293333333333333, + "grad_norm": 0.32491597533226013, + "learning_rate": 4.23566e-05, + "loss": 2.2157107543945314, + "step": 114700 + }, + { + "epoch": 15.306666666666667, + "grad_norm": 0.3161472976207733, + "learning_rate": 4.234993333333333e-05, + "loss": 2.2165769958496093, + "step": 114800 + }, + { + "epoch": 15.32, + "grad_norm": 0.35170355439186096, + "learning_rate": 4.234326666666667e-05, + "loss": 2.217754211425781, + "step": 114900 + }, + { + "epoch": 15.333333333333334, + "grad_norm": 0.3464552164077759, + "learning_rate": 4.2336600000000004e-05, + "loss": 2.219124450683594, + "step": 115000 + }, + { + "epoch": 15.346666666666668, + "grad_norm": 0.2998979389667511, + "learning_rate": 4.2329933333333336e-05, + "loss": 2.218946075439453, + "step": 115100 + }, + { + "epoch": 15.36, + "grad_norm": 0.33624839782714844, + "learning_rate": 4.232326666666667e-05, + "loss": 2.2174595642089843, + "step": 115200 + }, + { + "epoch": 15.373333333333333, + "grad_norm": 0.322299987077713, + "learning_rate": 4.23166e-05, + "loss": 2.2204608154296874, + "step": 115300 + }, + { + "epoch": 15.386666666666667, + "grad_norm": 0.3346404731273651, + "learning_rate": 4.230993333333333e-05, + "loss": 2.220567169189453, + "step": 115400 + }, + { + "epoch": 15.4, + "grad_norm": 0.3098982870578766, + "learning_rate": 4.230326666666667e-05, + "loss": 2.2207266235351564, + "step": 115500 + }, + { + "epoch": 15.413333333333334, + "grad_norm": 0.31962502002716064, + "learning_rate": 4.2296600000000004e-05, + "loss": 2.2188589477539065, + "step": 115600 + }, + { + "epoch": 15.426666666666666, + "grad_norm": 0.3353968560695648, + "learning_rate": 4.2289933333333337e-05, + "loss": 2.2199302673339845, + "step": 115700 + }, + { + "epoch": 15.44, + "grad_norm": 0.30936282873153687, + "learning_rate": 4.228326666666667e-05, + "loss": 2.2257254028320315, + "step": 115800 + }, + { + "epoch": 15.453333333333333, + "grad_norm": 0.30855420231819153, + "learning_rate": 4.22766e-05, + "loss": 2.2245237731933596, + "step": 115900 + }, + { + "epoch": 15.466666666666667, + "grad_norm": 0.3352759778499603, + "learning_rate": 4.226993333333333e-05, + "loss": 2.2239312744140625, + "step": 116000 + }, + { + "epoch": 15.48, + "grad_norm": 0.34826841950416565, + "learning_rate": 4.2263266666666666e-05, + "loss": 2.222242889404297, + "step": 116100 + }, + { + "epoch": 15.493333333333334, + "grad_norm": 0.30927276611328125, + "learning_rate": 4.2256600000000005e-05, + "loss": 2.22566650390625, + "step": 116200 + }, + { + "epoch": 15.506666666666666, + "grad_norm": 0.3213530480861664, + "learning_rate": 4.224993333333334e-05, + "loss": 2.2234091186523437, + "step": 116300 + }, + { + "epoch": 15.52, + "grad_norm": 0.3208419382572174, + "learning_rate": 4.224326666666667e-05, + "loss": 2.221222686767578, + "step": 116400 + }, + { + "epoch": 15.533333333333333, + "grad_norm": 0.3189323842525482, + "learning_rate": 4.22366e-05, + "loss": 2.22309814453125, + "step": 116500 + }, + { + "epoch": 15.546666666666667, + "grad_norm": 0.32015132904052734, + "learning_rate": 4.222993333333334e-05, + "loss": 2.224478302001953, + "step": 116600 + }, + { + "epoch": 15.56, + "grad_norm": 0.3235848844051361, + "learning_rate": 4.222333333333334e-05, + "loss": 2.22633544921875, + "step": 116700 + }, + { + "epoch": 15.573333333333334, + "grad_norm": 0.31360262632369995, + "learning_rate": 4.221666666666667e-05, + "loss": 2.223683624267578, + "step": 116800 + }, + { + "epoch": 15.586666666666666, + "grad_norm": 0.3163805603981018, + "learning_rate": 4.221e-05, + "loss": 2.226057891845703, + "step": 116900 + }, + { + "epoch": 15.6, + "grad_norm": 0.3102477192878723, + "learning_rate": 4.2203333333333336e-05, + "loss": 2.228474578857422, + "step": 117000 + }, + { + "epoch": 15.613333333333333, + "grad_norm": 0.30548936128616333, + "learning_rate": 4.219666666666667e-05, + "loss": 2.2281097412109374, + "step": 117100 + }, + { + "epoch": 15.626666666666667, + "grad_norm": 0.33137276768684387, + "learning_rate": 4.219e-05, + "loss": 2.227537841796875, + "step": 117200 + }, + { + "epoch": 15.64, + "grad_norm": 0.32980573177337646, + "learning_rate": 4.218333333333333e-05, + "loss": 2.2250877380371095, + "step": 117300 + }, + { + "epoch": 15.653333333333332, + "grad_norm": 0.34230107069015503, + "learning_rate": 4.217666666666667e-05, + "loss": 2.2286297607421877, + "step": 117400 + }, + { + "epoch": 15.666666666666666, + "grad_norm": 0.31690576672554016, + "learning_rate": 4.2170000000000005e-05, + "loss": 2.228667907714844, + "step": 117500 + }, + { + "epoch": 15.68, + "grad_norm": 0.32873931527137756, + "learning_rate": 4.216333333333334e-05, + "loss": 2.229040222167969, + "step": 117600 + }, + { + "epoch": 15.693333333333333, + "grad_norm": 0.31361329555511475, + "learning_rate": 4.215666666666667e-05, + "loss": 2.229720153808594, + "step": 117700 + }, + { + "epoch": 15.706666666666667, + "grad_norm": 0.30917590856552124, + "learning_rate": 4.215e-05, + "loss": 2.2290550231933595, + "step": 117800 + }, + { + "epoch": 15.72, + "grad_norm": 0.31262990832328796, + "learning_rate": 4.2143333333333334e-05, + "loss": 2.229103698730469, + "step": 117900 + }, + { + "epoch": 15.733333333333333, + "grad_norm": 0.32043468952178955, + "learning_rate": 4.2136666666666666e-05, + "loss": 2.2294845581054688, + "step": 118000 + }, + { + "epoch": 15.746666666666666, + "grad_norm": 0.31594914197921753, + "learning_rate": 4.2130000000000005e-05, + "loss": 2.2269740295410156, + "step": 118100 + }, + { + "epoch": 15.76, + "grad_norm": 0.3129127025604248, + "learning_rate": 4.212333333333334e-05, + "loss": 2.232552947998047, + "step": 118200 + }, + { + "epoch": 15.773333333333333, + "grad_norm": 0.3038434088230133, + "learning_rate": 4.211666666666667e-05, + "loss": 2.232527770996094, + "step": 118300 + }, + { + "epoch": 15.786666666666667, + "grad_norm": 0.3090043067932129, + "learning_rate": 4.211e-05, + "loss": 2.229136505126953, + "step": 118400 + }, + { + "epoch": 15.8, + "grad_norm": 0.32611995935440063, + "learning_rate": 4.2103333333333334e-05, + "loss": 2.2315130615234375, + "step": 118500 + }, + { + "epoch": 15.813333333333333, + "grad_norm": 0.31808626651763916, + "learning_rate": 4.2096666666666666e-05, + "loss": 2.2304783630371094, + "step": 118600 + }, + { + "epoch": 15.826666666666666, + "grad_norm": 0.3187323808670044, + "learning_rate": 4.2090066666666665e-05, + "loss": 2.2350709533691404, + "step": 118700 + }, + { + "epoch": 15.84, + "grad_norm": 0.3571641445159912, + "learning_rate": 4.20834e-05, + "loss": 2.231884002685547, + "step": 118800 + }, + { + "epoch": 15.853333333333333, + "grad_norm": 0.3414985239505768, + "learning_rate": 4.207673333333334e-05, + "loss": 2.2351057434082033, + "step": 118900 + }, + { + "epoch": 15.866666666666667, + "grad_norm": 0.3118877112865448, + "learning_rate": 4.207006666666667e-05, + "loss": 2.231129150390625, + "step": 119000 + }, + { + "epoch": 15.88, + "grad_norm": 0.319547176361084, + "learning_rate": 4.20634e-05, + "loss": 2.234002685546875, + "step": 119100 + }, + { + "epoch": 15.893333333333333, + "grad_norm": 0.3334439992904663, + "learning_rate": 4.205673333333334e-05, + "loss": 2.236300201416016, + "step": 119200 + }, + { + "epoch": 15.906666666666666, + "grad_norm": 0.31229543685913086, + "learning_rate": 4.205006666666667e-05, + "loss": 2.2334967041015625, + "step": 119300 + }, + { + "epoch": 15.92, + "grad_norm": 0.3132321834564209, + "learning_rate": 4.20434e-05, + "loss": 2.2348391723632814, + "step": 119400 + }, + { + "epoch": 15.933333333333334, + "grad_norm": 0.3149288594722748, + "learning_rate": 4.203673333333333e-05, + "loss": 2.2346974182128907, + "step": 119500 + }, + { + "epoch": 15.946666666666667, + "grad_norm": 0.31693968176841736, + "learning_rate": 4.203006666666667e-05, + "loss": 2.233512268066406, + "step": 119600 + }, + { + "epoch": 15.96, + "grad_norm": 0.3221350312232971, + "learning_rate": 4.20234e-05, + "loss": 2.2346560668945314, + "step": 119700 + }, + { + "epoch": 15.973333333333333, + "grad_norm": 0.3314872682094574, + "learning_rate": 4.2016733333333334e-05, + "loss": 2.2337542724609376, + "step": 119800 + }, + { + "epoch": 15.986666666666666, + "grad_norm": 0.2964302599430084, + "learning_rate": 4.201006666666667e-05, + "loss": 2.235452423095703, + "step": 119900 + }, + { + "epoch": 16.0, + "grad_norm": 0.30500471591949463, + "learning_rate": 4.2003400000000005e-05, + "loss": 2.2356527709960936, + "step": 120000 + }, + { + "epoch": 16.013333333333332, + "grad_norm": 0.33137601613998413, + "learning_rate": 4.199673333333334e-05, + "loss": 2.191378479003906, + "step": 120100 + }, + { + "epoch": 16.026666666666667, + "grad_norm": 0.3438156843185425, + "learning_rate": 4.199006666666667e-05, + "loss": 2.1892555236816404, + "step": 120200 + }, + { + "epoch": 16.04, + "grad_norm": 0.3476172983646393, + "learning_rate": 4.19834e-05, + "loss": 2.185308380126953, + "step": 120300 + }, + { + "epoch": 16.053333333333335, + "grad_norm": 0.3344581723213196, + "learning_rate": 4.1976733333333334e-05, + "loss": 2.1885577392578126, + "step": 120400 + }, + { + "epoch": 16.066666666666666, + "grad_norm": 0.3536999225616455, + "learning_rate": 4.1970066666666666e-05, + "loss": 2.190690002441406, + "step": 120500 + }, + { + "epoch": 16.08, + "grad_norm": 0.327150821685791, + "learning_rate": 4.1963400000000006e-05, + "loss": 2.192127532958984, + "step": 120600 + }, + { + "epoch": 16.093333333333334, + "grad_norm": 0.34501543641090393, + "learning_rate": 4.195673333333334e-05, + "loss": 2.1904525756835938, + "step": 120700 + }, + { + "epoch": 16.106666666666666, + "grad_norm": 0.33292821049690247, + "learning_rate": 4.195006666666667e-05, + "loss": 2.1916839599609377, + "step": 120800 + }, + { + "epoch": 16.12, + "grad_norm": 0.33096081018447876, + "learning_rate": 4.194346666666667e-05, + "loss": 2.1918682861328125, + "step": 120900 + }, + { + "epoch": 16.133333333333333, + "grad_norm": 0.342189759016037, + "learning_rate": 4.19368e-05, + "loss": 2.194641418457031, + "step": 121000 + }, + { + "epoch": 16.14666666666667, + "grad_norm": 0.3368053436279297, + "learning_rate": 4.193013333333334e-05, + "loss": 2.1912602233886718, + "step": 121100 + }, + { + "epoch": 16.16, + "grad_norm": 0.32896357774734497, + "learning_rate": 4.1923466666666666e-05, + "loss": 2.191945343017578, + "step": 121200 + }, + { + "epoch": 16.173333333333332, + "grad_norm": 0.3394027352333069, + "learning_rate": 4.19168e-05, + "loss": 2.1953201293945312, + "step": 121300 + }, + { + "epoch": 16.186666666666667, + "grad_norm": 0.3458661735057831, + "learning_rate": 4.191013333333334e-05, + "loss": 2.191509246826172, + "step": 121400 + }, + { + "epoch": 16.2, + "grad_norm": 0.3341262936592102, + "learning_rate": 4.190346666666667e-05, + "loss": 2.196238708496094, + "step": 121500 + }, + { + "epoch": 16.213333333333335, + "grad_norm": 0.3546558916568756, + "learning_rate": 4.18968e-05, + "loss": 2.197465515136719, + "step": 121600 + }, + { + "epoch": 16.226666666666667, + "grad_norm": 0.322582483291626, + "learning_rate": 4.1890133333333334e-05, + "loss": 2.19465576171875, + "step": 121700 + }, + { + "epoch": 16.24, + "grad_norm": 0.33463671803474426, + "learning_rate": 4.188346666666667e-05, + "loss": 2.1976629638671876, + "step": 121800 + }, + { + "epoch": 16.253333333333334, + "grad_norm": 0.3399517834186554, + "learning_rate": 4.18768e-05, + "loss": 2.1987896728515626, + "step": 121900 + }, + { + "epoch": 16.266666666666666, + "grad_norm": 0.3466789722442627, + "learning_rate": 4.187013333333333e-05, + "loss": 2.197012939453125, + "step": 122000 + }, + { + "epoch": 16.28, + "grad_norm": 0.3435020446777344, + "learning_rate": 4.186346666666667e-05, + "loss": 2.1984803771972654, + "step": 122100 + }, + { + "epoch": 16.293333333333333, + "grad_norm": 0.33346107602119446, + "learning_rate": 4.18568e-05, + "loss": 2.2026689147949217, + "step": 122200 + }, + { + "epoch": 16.306666666666665, + "grad_norm": 0.3218962550163269, + "learning_rate": 4.1850133333333334e-05, + "loss": 2.199356689453125, + "step": 122300 + }, + { + "epoch": 16.32, + "grad_norm": 0.35545775294303894, + "learning_rate": 4.184346666666667e-05, + "loss": 2.2024908447265625, + "step": 122400 + }, + { + "epoch": 16.333333333333332, + "grad_norm": 0.33396291732788086, + "learning_rate": 4.1836800000000006e-05, + "loss": 2.198677215576172, + "step": 122500 + }, + { + "epoch": 16.346666666666668, + "grad_norm": 0.3423805236816406, + "learning_rate": 4.183013333333334e-05, + "loss": 2.203605041503906, + "step": 122600 + }, + { + "epoch": 16.36, + "grad_norm": 0.3493040204048157, + "learning_rate": 4.1823466666666664e-05, + "loss": 2.2042369079589843, + "step": 122700 + }, + { + "epoch": 16.373333333333335, + "grad_norm": 0.32711881399154663, + "learning_rate": 4.18168e-05, + "loss": 2.20152099609375, + "step": 122800 + }, + { + "epoch": 16.386666666666667, + "grad_norm": 0.3408143222332001, + "learning_rate": 4.18102e-05, + "loss": 2.20054931640625, + "step": 122900 + }, + { + "epoch": 16.4, + "grad_norm": 0.3470470607280731, + "learning_rate": 4.1803533333333334e-05, + "loss": 2.203308410644531, + "step": 123000 + }, + { + "epoch": 16.413333333333334, + "grad_norm": 0.3393367826938629, + "learning_rate": 4.1796866666666666e-05, + "loss": 2.203702392578125, + "step": 123100 + }, + { + "epoch": 16.426666666666666, + "grad_norm": 0.3487272560596466, + "learning_rate": 4.17902e-05, + "loss": 2.207674713134766, + "step": 123200 + }, + { + "epoch": 16.44, + "grad_norm": 0.31673720479011536, + "learning_rate": 4.178353333333334e-05, + "loss": 2.2054902648925783, + "step": 123300 + }, + { + "epoch": 16.453333333333333, + "grad_norm": 0.34609508514404297, + "learning_rate": 4.177686666666667e-05, + "loss": 2.2037092590332032, + "step": 123400 + }, + { + "epoch": 16.466666666666665, + "grad_norm": 0.3488747477531433, + "learning_rate": 4.17702e-05, + "loss": 2.2059857177734377, + "step": 123500 + }, + { + "epoch": 16.48, + "grad_norm": 0.34992608428001404, + "learning_rate": 4.176353333333334e-05, + "loss": 2.205555877685547, + "step": 123600 + }, + { + "epoch": 16.493333333333332, + "grad_norm": 0.3459303677082062, + "learning_rate": 4.1756866666666667e-05, + "loss": 2.2075044250488283, + "step": 123700 + }, + { + "epoch": 16.506666666666668, + "grad_norm": 0.34837567806243896, + "learning_rate": 4.17502e-05, + "loss": 2.2081297302246092, + "step": 123800 + }, + { + "epoch": 16.52, + "grad_norm": 0.3326612710952759, + "learning_rate": 4.174353333333334e-05, + "loss": 2.2074159240722655, + "step": 123900 + }, + { + "epoch": 16.533333333333335, + "grad_norm": 0.343517929315567, + "learning_rate": 4.173686666666667e-05, + "loss": 2.205991058349609, + "step": 124000 + }, + { + "epoch": 16.546666666666667, + "grad_norm": 0.36404263973236084, + "learning_rate": 4.17302e-05, + "loss": 2.2090086364746093, + "step": 124100 + }, + { + "epoch": 16.56, + "grad_norm": 0.3330126404762268, + "learning_rate": 4.1723533333333335e-05, + "loss": 2.207509002685547, + "step": 124200 + }, + { + "epoch": 16.573333333333334, + "grad_norm": 0.3251371681690216, + "learning_rate": 4.1716866666666674e-05, + "loss": 2.2095204162597657, + "step": 124300 + }, + { + "epoch": 16.586666666666666, + "grad_norm": 0.3344780206680298, + "learning_rate": 4.17102e-05, + "loss": 2.2100448608398438, + "step": 124400 + }, + { + "epoch": 16.6, + "grad_norm": 0.3297218978404999, + "learning_rate": 4.170353333333333e-05, + "loss": 2.211772613525391, + "step": 124500 + }, + { + "epoch": 16.613333333333333, + "grad_norm": 0.32694414258003235, + "learning_rate": 4.169686666666667e-05, + "loss": 2.2118515014648437, + "step": 124600 + }, + { + "epoch": 16.626666666666665, + "grad_norm": 0.3583586812019348, + "learning_rate": 4.16902e-05, + "loss": 2.208268737792969, + "step": 124700 + }, + { + "epoch": 16.64, + "grad_norm": 0.3415539562702179, + "learning_rate": 4.1683533333333335e-05, + "loss": 2.210078125, + "step": 124800 + }, + { + "epoch": 16.653333333333332, + "grad_norm": 0.3332410752773285, + "learning_rate": 4.167686666666667e-05, + "loss": 2.209375915527344, + "step": 124900 + }, + { + "epoch": 16.666666666666668, + "grad_norm": 0.3438263237476349, + "learning_rate": 4.1670200000000006e-05, + "loss": 2.213215789794922, + "step": 125000 + }, + { + "epoch": 16.68, + "grad_norm": 0.33631184697151184, + "learning_rate": 4.1663600000000005e-05, + "loss": 2.2115354919433594, + "step": 125100 + }, + { + "epoch": 16.693333333333335, + "grad_norm": 0.33590415120124817, + "learning_rate": 4.165693333333334e-05, + "loss": 2.2166558837890626, + "step": 125200 + }, + { + "epoch": 16.706666666666667, + "grad_norm": 0.33931294083595276, + "learning_rate": 4.165026666666667e-05, + "loss": 2.2135350036621095, + "step": 125300 + }, + { + "epoch": 16.72, + "grad_norm": 0.3370099365711212, + "learning_rate": 4.16436e-05, + "loss": 2.2108302307128906, + "step": 125400 + }, + { + "epoch": 16.733333333333334, + "grad_norm": 0.3390389680862427, + "learning_rate": 4.1636933333333335e-05, + "loss": 2.2139320373535156, + "step": 125500 + }, + { + "epoch": 16.746666666666666, + "grad_norm": 0.33029329776763916, + "learning_rate": 4.163026666666667e-05, + "loss": 2.2104266357421873, + "step": 125600 + }, + { + "epoch": 16.76, + "grad_norm": 0.3493773937225342, + "learning_rate": 4.16236e-05, + "loss": 2.2143878173828124, + "step": 125700 + }, + { + "epoch": 16.773333333333333, + "grad_norm": 0.3342851400375366, + "learning_rate": 4.161693333333334e-05, + "loss": 2.2172373962402343, + "step": 125800 + }, + { + "epoch": 16.786666666666665, + "grad_norm": 0.33905649185180664, + "learning_rate": 4.161026666666667e-05, + "loss": 2.2138526916503904, + "step": 125900 + }, + { + "epoch": 16.8, + "grad_norm": 0.33980846405029297, + "learning_rate": 4.16036e-05, + "loss": 2.2161383056640624, + "step": 126000 + }, + { + "epoch": 16.813333333333333, + "grad_norm": 0.3446345627307892, + "learning_rate": 4.1596933333333335e-05, + "loss": 2.214365234375, + "step": 126100 + }, + { + "epoch": 16.826666666666668, + "grad_norm": 0.32393285632133484, + "learning_rate": 4.159026666666667e-05, + "loss": 2.2161341857910157, + "step": 126200 + }, + { + "epoch": 16.84, + "grad_norm": 0.32899361848831177, + "learning_rate": 4.15836e-05, + "loss": 2.2143894958496095, + "step": 126300 + }, + { + "epoch": 16.85333333333333, + "grad_norm": 0.33458665013313293, + "learning_rate": 4.157693333333333e-05, + "loss": 2.2169989013671874, + "step": 126400 + }, + { + "epoch": 16.866666666666667, + "grad_norm": 0.34240177273750305, + "learning_rate": 4.157026666666667e-05, + "loss": 2.216192169189453, + "step": 126500 + }, + { + "epoch": 16.88, + "grad_norm": 0.33219918608665466, + "learning_rate": 4.15636e-05, + "loss": 2.216274871826172, + "step": 126600 + }, + { + "epoch": 16.893333333333334, + "grad_norm": 0.3476578891277313, + "learning_rate": 4.1556933333333335e-05, + "loss": 2.2149917602539064, + "step": 126700 + }, + { + "epoch": 16.906666666666666, + "grad_norm": 0.3385222852230072, + "learning_rate": 4.155026666666667e-05, + "loss": 2.21719482421875, + "step": 126800 + }, + { + "epoch": 16.92, + "grad_norm": 0.3350334167480469, + "learning_rate": 4.1543600000000007e-05, + "loss": 2.2180024719238283, + "step": 126900 + }, + { + "epoch": 16.933333333333334, + "grad_norm": 0.3438946604728699, + "learning_rate": 4.153693333333333e-05, + "loss": 2.217221221923828, + "step": 127000 + }, + { + "epoch": 16.946666666666665, + "grad_norm": 0.35046643018722534, + "learning_rate": 4.153033333333334e-05, + "loss": 2.220390625, + "step": 127100 + }, + { + "epoch": 16.96, + "grad_norm": 0.34361323714256287, + "learning_rate": 4.1523666666666663e-05, + "loss": 2.216808013916016, + "step": 127200 + }, + { + "epoch": 16.973333333333333, + "grad_norm": 0.32188111543655396, + "learning_rate": 4.1517e-05, + "loss": 2.2157418823242185, + "step": 127300 + }, + { + "epoch": 16.986666666666668, + "grad_norm": 0.32064762711524963, + "learning_rate": 4.1510333333333335e-05, + "loss": 2.2176025390625, + "step": 127400 + }, + { + "epoch": 17.0, + "grad_norm": 0.3368901014328003, + "learning_rate": 4.150366666666667e-05, + "loss": 2.219560241699219, + "step": 127500 + }, + { + "epoch": 17.013333333333332, + "grad_norm": 0.34540697932243347, + "learning_rate": 4.1497e-05, + "loss": 2.1651565551757814, + "step": 127600 + }, + { + "epoch": 17.026666666666667, + "grad_norm": 0.3554867208003998, + "learning_rate": 4.149033333333334e-05, + "loss": 2.168620910644531, + "step": 127700 + }, + { + "epoch": 17.04, + "grad_norm": 0.35656651854515076, + "learning_rate": 4.148366666666667e-05, + "loss": 2.1688262939453127, + "step": 127800 + }, + { + "epoch": 17.053333333333335, + "grad_norm": 0.434224396944046, + "learning_rate": 4.1477e-05, + "loss": 2.1681300354003907, + "step": 127900 + }, + { + "epoch": 17.066666666666666, + "grad_norm": 0.3526768386363983, + "learning_rate": 4.1470333333333335e-05, + "loss": 2.1689207458496096, + "step": 128000 + }, + { + "epoch": 17.08, + "grad_norm": 0.35668861865997314, + "learning_rate": 4.146366666666667e-05, + "loss": 2.168590240478516, + "step": 128100 + }, + { + "epoch": 17.093333333333334, + "grad_norm": 0.368394672870636, + "learning_rate": 4.1457e-05, + "loss": 2.173952941894531, + "step": 128200 + }, + { + "epoch": 17.106666666666666, + "grad_norm": 0.3651200532913208, + "learning_rate": 4.145033333333334e-05, + "loss": 2.172222137451172, + "step": 128300 + }, + { + "epoch": 17.12, + "grad_norm": 0.36325615644454956, + "learning_rate": 4.144366666666667e-05, + "loss": 2.16880859375, + "step": 128400 + }, + { + "epoch": 17.133333333333333, + "grad_norm": 0.3802001476287842, + "learning_rate": 4.1437e-05, + "loss": 2.1748728942871094, + "step": 128500 + }, + { + "epoch": 17.14666666666667, + "grad_norm": 0.3565540611743927, + "learning_rate": 4.1430333333333336e-05, + "loss": 2.1752804565429686, + "step": 128600 + }, + { + "epoch": 17.16, + "grad_norm": 0.3572203814983368, + "learning_rate": 4.142366666666667e-05, + "loss": 2.1743450927734376, + "step": 128700 + }, + { + "epoch": 17.173333333333332, + "grad_norm": 0.350844144821167, + "learning_rate": 4.1417e-05, + "loss": 2.172934722900391, + "step": 128800 + }, + { + "epoch": 17.186666666666667, + "grad_norm": 0.36539897322654724, + "learning_rate": 4.141033333333333e-05, + "loss": 2.176778564453125, + "step": 128900 + }, + { + "epoch": 17.2, + "grad_norm": 0.35811370611190796, + "learning_rate": 4.140366666666667e-05, + "loss": 2.174437713623047, + "step": 129000 + }, + { + "epoch": 17.213333333333335, + "grad_norm": 0.3664299547672272, + "learning_rate": 4.139706666666667e-05, + "loss": 2.1781724548339843, + "step": 129100 + }, + { + "epoch": 17.226666666666667, + "grad_norm": 0.3659532070159912, + "learning_rate": 4.13904e-05, + "loss": 2.176842041015625, + "step": 129200 + }, + { + "epoch": 17.24, + "grad_norm": 0.36825552582740784, + "learning_rate": 4.1383733333333335e-05, + "loss": 2.179559631347656, + "step": 129300 + }, + { + "epoch": 17.253333333333334, + "grad_norm": 0.36417168378829956, + "learning_rate": 4.137706666666667e-05, + "loss": 2.182062072753906, + "step": 129400 + }, + { + "epoch": 17.266666666666666, + "grad_norm": 0.3718934655189514, + "learning_rate": 4.1370400000000006e-05, + "loss": 2.180594177246094, + "step": 129500 + }, + { + "epoch": 17.28, + "grad_norm": 0.3516819477081299, + "learning_rate": 4.136373333333334e-05, + "loss": 2.180480499267578, + "step": 129600 + }, + { + "epoch": 17.293333333333333, + "grad_norm": 0.3652108609676361, + "learning_rate": 4.1357066666666664e-05, + "loss": 2.182070770263672, + "step": 129700 + }, + { + "epoch": 17.306666666666665, + "grad_norm": 0.3595081865787506, + "learning_rate": 4.13504e-05, + "loss": 2.1821852111816407, + "step": 129800 + }, + { + "epoch": 17.32, + "grad_norm": 0.3393441140651703, + "learning_rate": 4.1343733333333335e-05, + "loss": 2.178795166015625, + "step": 129900 + }, + { + "epoch": 17.333333333333332, + "grad_norm": 0.36966830492019653, + "learning_rate": 4.133706666666667e-05, + "loss": 2.1857032775878906, + "step": 130000 + }, + { + "epoch": 17.346666666666668, + "grad_norm": 0.3546712100505829, + "learning_rate": 4.13304e-05, + "loss": 2.180518798828125, + "step": 130100 + }, + { + "epoch": 17.36, + "grad_norm": 0.37151312828063965, + "learning_rate": 4.132373333333334e-05, + "loss": 2.1837088012695314, + "step": 130200 + }, + { + "epoch": 17.373333333333335, + "grad_norm": 0.34406447410583496, + "learning_rate": 4.131706666666667e-05, + "loss": 2.1844528198242186, + "step": 130300 + }, + { + "epoch": 17.386666666666667, + "grad_norm": 0.44284486770629883, + "learning_rate": 4.1310400000000003e-05, + "loss": 2.1846923828125, + "step": 130400 + }, + { + "epoch": 17.4, + "grad_norm": 0.38338637351989746, + "learning_rate": 4.1303733333333336e-05, + "loss": 2.1837538146972655, + "step": 130500 + }, + { + "epoch": 17.413333333333334, + "grad_norm": 0.3616061210632324, + "learning_rate": 4.129706666666667e-05, + "loss": 2.1846038818359377, + "step": 130600 + }, + { + "epoch": 17.426666666666666, + "grad_norm": 0.35662466287612915, + "learning_rate": 4.12904e-05, + "loss": 2.186310272216797, + "step": 130700 + }, + { + "epoch": 17.44, + "grad_norm": 0.34366509318351746, + "learning_rate": 4.128373333333333e-05, + "loss": 2.1828770446777344, + "step": 130800 + }, + { + "epoch": 17.453333333333333, + "grad_norm": 0.35822221636772156, + "learning_rate": 4.127706666666667e-05, + "loss": 2.1853370666503906, + "step": 130900 + }, + { + "epoch": 17.466666666666665, + "grad_norm": 0.382191002368927, + "learning_rate": 4.1270400000000004e-05, + "loss": 2.184327392578125, + "step": 131000 + }, + { + "epoch": 17.48, + "grad_norm": 0.3557610511779785, + "learning_rate": 4.12638e-05, + "loss": 2.188468170166016, + "step": 131100 + }, + { + "epoch": 17.493333333333332, + "grad_norm": 0.3445620536804199, + "learning_rate": 4.1257133333333335e-05, + "loss": 2.1877789306640625, + "step": 131200 + }, + { + "epoch": 17.506666666666668, + "grad_norm": 0.356189489364624, + "learning_rate": 4.125046666666667e-05, + "loss": 2.186894989013672, + "step": 131300 + }, + { + "epoch": 17.52, + "grad_norm": 0.37347978353500366, + "learning_rate": 4.1243800000000007e-05, + "loss": 2.1881455993652343, + "step": 131400 + }, + { + "epoch": 17.533333333333335, + "grad_norm": 0.4915677309036255, + "learning_rate": 4.123713333333333e-05, + "loss": 2.188135528564453, + "step": 131500 + }, + { + "epoch": 17.546666666666667, + "grad_norm": 0.33609944581985474, + "learning_rate": 4.1230466666666664e-05, + "loss": 2.1907609558105468, + "step": 131600 + }, + { + "epoch": 17.56, + "grad_norm": 0.36254754662513733, + "learning_rate": 4.12238e-05, + "loss": 2.1870379638671875, + "step": 131700 + }, + { + "epoch": 17.573333333333334, + "grad_norm": 0.3741578459739685, + "learning_rate": 4.1217133333333336e-05, + "loss": 2.1931048583984376, + "step": 131800 + }, + { + "epoch": 17.586666666666666, + "grad_norm": 0.3609215319156647, + "learning_rate": 4.121046666666667e-05, + "loss": 2.19150146484375, + "step": 131900 + }, + { + "epoch": 17.6, + "grad_norm": 0.35999777913093567, + "learning_rate": 4.120380000000001e-05, + "loss": 2.191175537109375, + "step": 132000 + }, + { + "epoch": 17.613333333333333, + "grad_norm": 0.3569694459438324, + "learning_rate": 4.119713333333334e-05, + "loss": 2.192285614013672, + "step": 132100 + }, + { + "epoch": 17.626666666666665, + "grad_norm": 0.3714178502559662, + "learning_rate": 4.1190466666666665e-05, + "loss": 2.192773895263672, + "step": 132200 + }, + { + "epoch": 17.64, + "grad_norm": 0.3539521396160126, + "learning_rate": 4.11838e-05, + "loss": 2.190313415527344, + "step": 132300 + }, + { + "epoch": 17.653333333333332, + "grad_norm": 0.358467698097229, + "learning_rate": 4.1177133333333336e-05, + "loss": 2.195655517578125, + "step": 132400 + }, + { + "epoch": 17.666666666666668, + "grad_norm": 0.3586037755012512, + "learning_rate": 4.117046666666667e-05, + "loss": 2.192008819580078, + "step": 132500 + }, + { + "epoch": 17.68, + "grad_norm": 0.3595978915691376, + "learning_rate": 4.11638e-05, + "loss": 2.1931185913085938, + "step": 132600 + }, + { + "epoch": 17.693333333333335, + "grad_norm": 0.35596606135368347, + "learning_rate": 4.115713333333334e-05, + "loss": 2.1931863403320313, + "step": 132700 + }, + { + "epoch": 17.706666666666667, + "grad_norm": 0.349572092294693, + "learning_rate": 4.115046666666667e-05, + "loss": 2.1953758239746093, + "step": 132800 + }, + { + "epoch": 17.72, + "grad_norm": 0.3638124167919159, + "learning_rate": 4.1143800000000004e-05, + "loss": 2.197004547119141, + "step": 132900 + }, + { + "epoch": 17.733333333333334, + "grad_norm": 0.3515288531780243, + "learning_rate": 4.1137133333333336e-05, + "loss": 2.1984828186035155, + "step": 133000 + }, + { + "epoch": 17.746666666666666, + "grad_norm": 0.37091967463493347, + "learning_rate": 4.1130533333333335e-05, + "loss": 2.1952162170410157, + "step": 133100 + }, + { + "epoch": 17.76, + "grad_norm": 0.3641296923160553, + "learning_rate": 4.112386666666667e-05, + "loss": 2.1980247497558594, + "step": 133200 + }, + { + "epoch": 17.773333333333333, + "grad_norm": 0.3431222438812256, + "learning_rate": 4.11172e-05, + "loss": 2.196508483886719, + "step": 133300 + }, + { + "epoch": 17.786666666666665, + "grad_norm": 0.35797178745269775, + "learning_rate": 4.111053333333333e-05, + "loss": 2.199690704345703, + "step": 133400 + }, + { + "epoch": 17.8, + "grad_norm": 0.3545133173465729, + "learning_rate": 4.110386666666667e-05, + "loss": 2.1973370361328124, + "step": 133500 + }, + { + "epoch": 17.813333333333333, + "grad_norm": 0.36000749468803406, + "learning_rate": 4.1097200000000004e-05, + "loss": 2.2000468444824217, + "step": 133600 + }, + { + "epoch": 17.826666666666668, + "grad_norm": 0.3570917546749115, + "learning_rate": 4.1090533333333336e-05, + "loss": 2.199578857421875, + "step": 133700 + }, + { + "epoch": 17.84, + "grad_norm": 0.36283078789711, + "learning_rate": 4.108386666666667e-05, + "loss": 2.199168853759766, + "step": 133800 + }, + { + "epoch": 17.85333333333333, + "grad_norm": 0.37170839309692383, + "learning_rate": 4.107720000000001e-05, + "loss": 2.199163818359375, + "step": 133900 + }, + { + "epoch": 17.866666666666667, + "grad_norm": 0.35398539900779724, + "learning_rate": 4.107053333333333e-05, + "loss": 2.2005375671386718, + "step": 134000 + }, + { + "epoch": 17.88, + "grad_norm": 0.3618471622467041, + "learning_rate": 4.1063866666666665e-05, + "loss": 2.193340606689453, + "step": 134100 + }, + { + "epoch": 17.893333333333334, + "grad_norm": 0.36715346574783325, + "learning_rate": 4.1057200000000004e-05, + "loss": 2.201223602294922, + "step": 134200 + }, + { + "epoch": 17.906666666666666, + "grad_norm": 0.35410168766975403, + "learning_rate": 4.1050533333333336e-05, + "loss": 2.1994700622558594, + "step": 134300 + }, + { + "epoch": 17.92, + "grad_norm": 0.34702470898628235, + "learning_rate": 4.104386666666667e-05, + "loss": 2.2010435485839843, + "step": 134400 + }, + { + "epoch": 17.933333333333334, + "grad_norm": 0.33663272857666016, + "learning_rate": 4.10372e-05, + "loss": 2.2017396545410155, + "step": 134500 + }, + { + "epoch": 17.946666666666665, + "grad_norm": 0.36605820059776306, + "learning_rate": 4.103053333333334e-05, + "loss": 2.2016064453125, + "step": 134600 + }, + { + "epoch": 17.96, + "grad_norm": 0.3492322564125061, + "learning_rate": 4.1023866666666665e-05, + "loss": 2.202108154296875, + "step": 134700 + }, + { + "epoch": 17.973333333333333, + "grad_norm": 0.36869311332702637, + "learning_rate": 4.10172e-05, + "loss": 2.2017369079589844, + "step": 134800 + }, + { + "epoch": 17.986666666666668, + "grad_norm": 0.36540335416793823, + "learning_rate": 4.1010533333333337e-05, + "loss": 2.200558624267578, + "step": 134900 + }, + { + "epoch": 18.0, + "grad_norm": 0.36333802342414856, + "learning_rate": 4.100386666666667e-05, + "loss": 2.203197174072266, + "step": 135000 + }, + { + "epoch": 18.013333333333332, + "grad_norm": 0.3684398829936981, + "learning_rate": 4.09972e-05, + "loss": 2.144236297607422, + "step": 135100 + }, + { + "epoch": 18.026666666666667, + "grad_norm": 0.3864319622516632, + "learning_rate": 4.09906e-05, + "loss": 2.147691650390625, + "step": 135200 + }, + { + "epoch": 18.04, + "grad_norm": 0.39713576436042786, + "learning_rate": 4.098393333333333e-05, + "loss": 2.1479608154296876, + "step": 135300 + }, + { + "epoch": 18.053333333333335, + "grad_norm": 0.38535943627357483, + "learning_rate": 4.097726666666667e-05, + "loss": 2.149579620361328, + "step": 135400 + }, + { + "epoch": 18.066666666666666, + "grad_norm": 0.37120920419692993, + "learning_rate": 4.0970600000000004e-05, + "loss": 2.1504815673828124, + "step": 135500 + }, + { + "epoch": 18.08, + "grad_norm": 0.3953970968723297, + "learning_rate": 4.0963933333333336e-05, + "loss": 2.1479664611816407, + "step": 135600 + }, + { + "epoch": 18.093333333333334, + "grad_norm": 0.3948633372783661, + "learning_rate": 4.095726666666667e-05, + "loss": 2.1526097106933593, + "step": 135700 + }, + { + "epoch": 18.106666666666666, + "grad_norm": 0.38562309741973877, + "learning_rate": 4.09506e-05, + "loss": 2.147718963623047, + "step": 135800 + }, + { + "epoch": 18.12, + "grad_norm": 0.38705727458000183, + "learning_rate": 4.094393333333333e-05, + "loss": 2.1560462951660155, + "step": 135900 + }, + { + "epoch": 18.133333333333333, + "grad_norm": 0.3904648721218109, + "learning_rate": 4.0937266666666665e-05, + "loss": 2.148473815917969, + "step": 136000 + }, + { + "epoch": 18.14666666666667, + "grad_norm": 0.3789866268634796, + "learning_rate": 4.0930600000000004e-05, + "loss": 2.1551133728027345, + "step": 136100 + }, + { + "epoch": 18.16, + "grad_norm": 0.3716281056404114, + "learning_rate": 4.0923933333333336e-05, + "loss": 2.1517713928222655, + "step": 136200 + }, + { + "epoch": 18.173333333333332, + "grad_norm": 0.4038568437099457, + "learning_rate": 4.091726666666667e-05, + "loss": 2.154055633544922, + "step": 136300 + }, + { + "epoch": 18.186666666666667, + "grad_norm": 0.3836662173271179, + "learning_rate": 4.091060000000001e-05, + "loss": 2.1555635070800783, + "step": 136400 + }, + { + "epoch": 18.2, + "grad_norm": 0.4338989853858948, + "learning_rate": 4.090393333333333e-05, + "loss": 2.1564508056640626, + "step": 136500 + }, + { + "epoch": 18.213333333333335, + "grad_norm": 0.3803965747356415, + "learning_rate": 4.0897266666666665e-05, + "loss": 2.15535888671875, + "step": 136600 + }, + { + "epoch": 18.226666666666667, + "grad_norm": 0.38790804147720337, + "learning_rate": 4.08906e-05, + "loss": 2.155977935791016, + "step": 136700 + }, + { + "epoch": 18.24, + "grad_norm": 0.4054514169692993, + "learning_rate": 4.088393333333334e-05, + "loss": 2.1601606750488282, + "step": 136800 + }, + { + "epoch": 18.253333333333334, + "grad_norm": 0.39995694160461426, + "learning_rate": 4.087726666666667e-05, + "loss": 2.1544822692871093, + "step": 136900 + }, + { + "epoch": 18.266666666666666, + "grad_norm": 0.399427592754364, + "learning_rate": 4.08706e-05, + "loss": 2.157484436035156, + "step": 137000 + }, + { + "epoch": 18.28, + "grad_norm": 0.380747526884079, + "learning_rate": 4.086393333333334e-05, + "loss": 2.1604388427734373, + "step": 137100 + }, + { + "epoch": 18.293333333333333, + "grad_norm": 0.3849477767944336, + "learning_rate": 4.085733333333334e-05, + "loss": 2.1585659790039062, + "step": 137200 + }, + { + "epoch": 18.306666666666665, + "grad_norm": 0.3770460784435272, + "learning_rate": 4.085066666666667e-05, + "loss": 2.1618302917480468, + "step": 137300 + }, + { + "epoch": 18.32, + "grad_norm": 0.4081668257713318, + "learning_rate": 4.0844000000000004e-05, + "loss": 2.1609623718261717, + "step": 137400 + }, + { + "epoch": 18.333333333333332, + "grad_norm": 0.37667742371559143, + "learning_rate": 4.0837333333333336e-05, + "loss": 2.162608642578125, + "step": 137500 + }, + { + "epoch": 18.346666666666668, + "grad_norm": 0.3946523070335388, + "learning_rate": 4.083066666666667e-05, + "loss": 2.1644091796875, + "step": 137600 + }, + { + "epoch": 18.36, + "grad_norm": 0.38843250274658203, + "learning_rate": 4.0824e-05, + "loss": 2.161121063232422, + "step": 137700 + }, + { + "epoch": 18.373333333333335, + "grad_norm": 0.4010300040245056, + "learning_rate": 4.081733333333333e-05, + "loss": 2.1667359924316405, + "step": 137800 + }, + { + "epoch": 18.386666666666667, + "grad_norm": 0.3785018026828766, + "learning_rate": 4.081066666666667e-05, + "loss": 2.167360992431641, + "step": 137900 + }, + { + "epoch": 18.4, + "grad_norm": 0.39816367626190186, + "learning_rate": 4.0804000000000004e-05, + "loss": 2.164031677246094, + "step": 138000 + }, + { + "epoch": 18.413333333333334, + "grad_norm": 0.38204148411750793, + "learning_rate": 4.079733333333334e-05, + "loss": 2.166887054443359, + "step": 138100 + }, + { + "epoch": 18.426666666666666, + "grad_norm": 0.36739620566368103, + "learning_rate": 4.079066666666667e-05, + "loss": 2.1648483276367188, + "step": 138200 + }, + { + "epoch": 18.44, + "grad_norm": 0.40818193554878235, + "learning_rate": 4.0784e-05, + "loss": 2.167153778076172, + "step": 138300 + }, + { + "epoch": 18.453333333333333, + "grad_norm": 0.3707272410392761, + "learning_rate": 4.0777333333333333e-05, + "loss": 2.1704667663574218, + "step": 138400 + }, + { + "epoch": 18.466666666666665, + "grad_norm": 0.3825608491897583, + "learning_rate": 4.0770666666666666e-05, + "loss": 2.1677491760253904, + "step": 138500 + }, + { + "epoch": 18.48, + "grad_norm": 0.3704966902732849, + "learning_rate": 4.0764000000000005e-05, + "loss": 2.168622589111328, + "step": 138600 + }, + { + "epoch": 18.493333333333332, + "grad_norm": 0.38297003507614136, + "learning_rate": 4.075733333333334e-05, + "loss": 2.1695802307128904, + "step": 138700 + }, + { + "epoch": 18.506666666666668, + "grad_norm": 0.369875431060791, + "learning_rate": 4.075066666666667e-05, + "loss": 2.1684419250488283, + "step": 138800 + }, + { + "epoch": 18.52, + "grad_norm": 0.38239753246307373, + "learning_rate": 4.0744e-05, + "loss": 2.1713496398925782, + "step": 138900 + }, + { + "epoch": 18.533333333333335, + "grad_norm": 0.37456804513931274, + "learning_rate": 4.0737333333333334e-05, + "loss": 2.171775360107422, + "step": 139000 + }, + { + "epoch": 18.546666666666667, + "grad_norm": 0.36324089765548706, + "learning_rate": 4.0730666666666666e-05, + "loss": 2.168131103515625, + "step": 139100 + }, + { + "epoch": 18.56, + "grad_norm": 0.3825380206108093, + "learning_rate": 4.0724066666666665e-05, + "loss": 2.1711878967285156, + "step": 139200 + }, + { + "epoch": 18.573333333333334, + "grad_norm": 0.38280192017555237, + "learning_rate": 4.07174e-05, + "loss": 2.1701324462890623, + "step": 139300 + }, + { + "epoch": 18.586666666666666, + "grad_norm": 0.3777543902397156, + "learning_rate": 4.0710733333333336e-05, + "loss": 2.1692018127441406, + "step": 139400 + }, + { + "epoch": 18.6, + "grad_norm": 0.387617290019989, + "learning_rate": 4.070406666666667e-05, + "loss": 2.1738621520996095, + "step": 139500 + }, + { + "epoch": 18.613333333333333, + "grad_norm": 0.38992756605148315, + "learning_rate": 4.06974e-05, + "loss": 2.173524932861328, + "step": 139600 + }, + { + "epoch": 18.626666666666665, + "grad_norm": 0.382716566324234, + "learning_rate": 4.069073333333333e-05, + "loss": 2.1713710021972656, + "step": 139700 + }, + { + "epoch": 18.64, + "grad_norm": 0.36141642928123474, + "learning_rate": 4.068406666666667e-05, + "loss": 2.1703253173828125, + "step": 139800 + }, + { + "epoch": 18.653333333333332, + "grad_norm": 0.37553125619888306, + "learning_rate": 4.0677400000000005e-05, + "loss": 2.1746434020996093, + "step": 139900 + }, + { + "epoch": 18.666666666666668, + "grad_norm": 0.40358760952949524, + "learning_rate": 4.067073333333333e-05, + "loss": 2.172953643798828, + "step": 140000 + }, + { + "epoch": 18.68, + "grad_norm": 0.35741183161735535, + "learning_rate": 4.066406666666667e-05, + "loss": 2.1734686279296875, + "step": 140100 + }, + { + "epoch": 18.693333333333335, + "grad_norm": 0.3769322633743286, + "learning_rate": 4.06574e-05, + "loss": 2.1750888061523437, + "step": 140200 + }, + { + "epoch": 18.706666666666667, + "grad_norm": 0.3802931606769562, + "learning_rate": 4.0650733333333334e-05, + "loss": 2.1736627197265626, + "step": 140300 + }, + { + "epoch": 18.72, + "grad_norm": 0.3812218904495239, + "learning_rate": 4.0644066666666666e-05, + "loss": 2.176966552734375, + "step": 140400 + }, + { + "epoch": 18.733333333333334, + "grad_norm": 0.38916149735450745, + "learning_rate": 4.0637400000000005e-05, + "loss": 2.172593231201172, + "step": 140500 + }, + { + "epoch": 18.746666666666666, + "grad_norm": 0.38093966245651245, + "learning_rate": 4.063073333333334e-05, + "loss": 2.1759133911132813, + "step": 140600 + }, + { + "epoch": 18.76, + "grad_norm": 0.4063868224620819, + "learning_rate": 4.062406666666667e-05, + "loss": 2.1767710876464843, + "step": 140700 + }, + { + "epoch": 18.773333333333333, + "grad_norm": 0.37494465708732605, + "learning_rate": 4.06174e-05, + "loss": 2.1748062133789063, + "step": 140800 + }, + { + "epoch": 18.786666666666665, + "grad_norm": 0.38622939586639404, + "learning_rate": 4.0610733333333334e-05, + "loss": 2.17905029296875, + "step": 140900 + }, + { + "epoch": 18.8, + "grad_norm": 0.41010287404060364, + "learning_rate": 4.0604066666666666e-05, + "loss": 2.1740985107421875, + "step": 141000 + }, + { + "epoch": 18.813333333333333, + "grad_norm": 0.38058510422706604, + "learning_rate": 4.0597400000000005e-05, + "loss": 2.1741783142089846, + "step": 141100 + }, + { + "epoch": 18.826666666666668, + "grad_norm": 0.36692535877227783, + "learning_rate": 4.05908e-05, + "loss": 2.1796223449707033, + "step": 141200 + }, + { + "epoch": 18.84, + "grad_norm": 0.3798985779285431, + "learning_rate": 4.058413333333334e-05, + "loss": 2.1784815979003906, + "step": 141300 + }, + { + "epoch": 18.85333333333333, + "grad_norm": 0.3722667098045349, + "learning_rate": 4.057746666666667e-05, + "loss": 2.1829788208007814, + "step": 141400 + }, + { + "epoch": 18.866666666666667, + "grad_norm": 0.39556455612182617, + "learning_rate": 4.05708e-05, + "loss": 2.179154815673828, + "step": 141500 + }, + { + "epoch": 18.88, + "grad_norm": 0.3847595453262329, + "learning_rate": 4.056413333333334e-05, + "loss": 2.1796925354003904, + "step": 141600 + }, + { + "epoch": 18.893333333333334, + "grad_norm": 0.37797436118125916, + "learning_rate": 4.055746666666667e-05, + "loss": 2.1813531494140626, + "step": 141700 + }, + { + "epoch": 18.906666666666666, + "grad_norm": 0.3832587003707886, + "learning_rate": 4.05508e-05, + "loss": 2.179685516357422, + "step": 141800 + }, + { + "epoch": 18.92, + "grad_norm": 0.3763803541660309, + "learning_rate": 4.054413333333334e-05, + "loss": 2.1807159423828124, + "step": 141900 + }, + { + "epoch": 18.933333333333334, + "grad_norm": 0.39702609181404114, + "learning_rate": 4.053746666666667e-05, + "loss": 2.18234619140625, + "step": 142000 + }, + { + "epoch": 18.946666666666665, + "grad_norm": 0.3635548949241638, + "learning_rate": 4.05308e-05, + "loss": 2.1816770935058596, + "step": 142100 + }, + { + "epoch": 18.96, + "grad_norm": 0.3698504567146301, + "learning_rate": 4.0524133333333334e-05, + "loss": 2.1805545043945314, + "step": 142200 + }, + { + "epoch": 18.973333333333333, + "grad_norm": 0.38847336173057556, + "learning_rate": 4.051746666666667e-05, + "loss": 2.18578125, + "step": 142300 + }, + { + "epoch": 18.986666666666668, + "grad_norm": 0.380186527967453, + "learning_rate": 4.0510800000000005e-05, + "loss": 2.1846510314941407, + "step": 142400 + }, + { + "epoch": 19.0, + "grad_norm": 0.37036606669425964, + "learning_rate": 4.050413333333333e-05, + "loss": 2.184918212890625, + "step": 142500 + }, + { + "epoch": 19.013333333333332, + "grad_norm": 0.4196798503398895, + "learning_rate": 4.049746666666667e-05, + "loss": 2.122628021240234, + "step": 142600 + }, + { + "epoch": 19.026666666666667, + "grad_norm": 0.4127017557621002, + "learning_rate": 4.04908e-05, + "loss": 2.1235401916503904, + "step": 142700 + }, + { + "epoch": 19.04, + "grad_norm": 0.4180348813533783, + "learning_rate": 4.0484133333333334e-05, + "loss": 2.123696746826172, + "step": 142800 + }, + { + "epoch": 19.053333333333335, + "grad_norm": 0.40591850876808167, + "learning_rate": 4.0477466666666667e-05, + "loss": 2.12607177734375, + "step": 142900 + }, + { + "epoch": 19.066666666666666, + "grad_norm": 0.4013535678386688, + "learning_rate": 4.0470800000000006e-05, + "loss": 2.1254452514648436, + "step": 143000 + }, + { + "epoch": 19.08, + "grad_norm": 0.3990405797958374, + "learning_rate": 4.046413333333334e-05, + "loss": 2.1275210571289063, + "step": 143100 + }, + { + "epoch": 19.093333333333334, + "grad_norm": 0.3961292803287506, + "learning_rate": 4.045753333333334e-05, + "loss": 2.1298793029785155, + "step": 143200 + }, + { + "epoch": 19.106666666666666, + "grad_norm": 0.38968828320503235, + "learning_rate": 4.045086666666667e-05, + "loss": 2.130485382080078, + "step": 143300 + }, + { + "epoch": 19.12, + "grad_norm": 0.38888853788375854, + "learning_rate": 4.04442e-05, + "loss": 2.1340348815917967, + "step": 143400 + }, + { + "epoch": 19.133333333333333, + "grad_norm": 0.4043475091457367, + "learning_rate": 4.0437533333333334e-05, + "loss": 2.132088317871094, + "step": 143500 + }, + { + "epoch": 19.14666666666667, + "grad_norm": 0.3911975920200348, + "learning_rate": 4.0430866666666666e-05, + "loss": 2.136121826171875, + "step": 143600 + }, + { + "epoch": 19.16, + "grad_norm": 0.43989744782447815, + "learning_rate": 4.04242e-05, + "loss": 2.129822998046875, + "step": 143700 + }, + { + "epoch": 19.173333333333332, + "grad_norm": 0.3966082036495209, + "learning_rate": 4.041753333333334e-05, + "loss": 2.132376403808594, + "step": 143800 + }, + { + "epoch": 19.186666666666667, + "grad_norm": 0.3992730975151062, + "learning_rate": 4.041086666666667e-05, + "loss": 2.139486999511719, + "step": 143900 + }, + { + "epoch": 19.2, + "grad_norm": 0.4032175838947296, + "learning_rate": 4.04042e-05, + "loss": 2.13601318359375, + "step": 144000 + }, + { + "epoch": 19.213333333333335, + "grad_norm": 0.396996408700943, + "learning_rate": 4.0397533333333334e-05, + "loss": 2.1378729248046877, + "step": 144100 + }, + { + "epoch": 19.226666666666667, + "grad_norm": 0.4150291085243225, + "learning_rate": 4.039086666666667e-05, + "loss": 2.1334957885742187, + "step": 144200 + }, + { + "epoch": 19.24, + "grad_norm": 0.3937293291091919, + "learning_rate": 4.03842e-05, + "loss": 2.136308135986328, + "step": 144300 + }, + { + "epoch": 19.253333333333334, + "grad_norm": 0.4123186469078064, + "learning_rate": 4.037753333333333e-05, + "loss": 2.1393890380859375, + "step": 144400 + }, + { + "epoch": 19.266666666666666, + "grad_norm": 0.39195558428764343, + "learning_rate": 4.037086666666667e-05, + "loss": 2.1392486572265623, + "step": 144500 + }, + { + "epoch": 19.28, + "grad_norm": 0.4173942506313324, + "learning_rate": 4.03642e-05, + "loss": 2.137723846435547, + "step": 144600 + }, + { + "epoch": 19.293333333333333, + "grad_norm": 0.4093802273273468, + "learning_rate": 4.0357533333333335e-05, + "loss": 2.136879577636719, + "step": 144700 + }, + { + "epoch": 19.306666666666665, + "grad_norm": 0.4126907289028168, + "learning_rate": 4.035086666666667e-05, + "loss": 2.1385182189941405, + "step": 144800 + }, + { + "epoch": 19.32, + "grad_norm": 0.4639165699481964, + "learning_rate": 4.0344200000000006e-05, + "loss": 2.1417454528808593, + "step": 144900 + }, + { + "epoch": 19.333333333333332, + "grad_norm": 0.405304491519928, + "learning_rate": 4.033753333333333e-05, + "loss": 2.1422581481933594, + "step": 145000 + }, + { + "epoch": 19.346666666666668, + "grad_norm": 0.3977564573287964, + "learning_rate": 4.0330866666666664e-05, + "loss": 2.142159118652344, + "step": 145100 + }, + { + "epoch": 19.36, + "grad_norm": 0.3873383104801178, + "learning_rate": 4.032426666666667e-05, + "loss": 2.141308135986328, + "step": 145200 + }, + { + "epoch": 19.373333333333335, + "grad_norm": 0.40484434366226196, + "learning_rate": 4.03176e-05, + "loss": 2.1436500549316406, + "step": 145300 + }, + { + "epoch": 19.386666666666667, + "grad_norm": 0.3954225480556488, + "learning_rate": 4.0310933333333334e-05, + "loss": 2.1450897216796876, + "step": 145400 + }, + { + "epoch": 19.4, + "grad_norm": 0.40232667326927185, + "learning_rate": 4.0304266666666666e-05, + "loss": 2.14369140625, + "step": 145500 + }, + { + "epoch": 19.413333333333334, + "grad_norm": 0.4098379909992218, + "learning_rate": 4.0297600000000005e-05, + "loss": 2.142886199951172, + "step": 145600 + }, + { + "epoch": 19.426666666666666, + "grad_norm": 0.5938084125518799, + "learning_rate": 4.029093333333334e-05, + "loss": 2.142805480957031, + "step": 145700 + }, + { + "epoch": 19.44, + "grad_norm": 0.4229917824268341, + "learning_rate": 4.028426666666667e-05, + "loss": 2.1455670166015626, + "step": 145800 + }, + { + "epoch": 19.453333333333333, + "grad_norm": 0.4009098410606384, + "learning_rate": 4.02776e-05, + "loss": 2.1452354431152343, + "step": 145900 + }, + { + "epoch": 19.466666666666665, + "grad_norm": 0.4073621928691864, + "learning_rate": 4.0270933333333334e-05, + "loss": 2.148215484619141, + "step": 146000 + }, + { + "epoch": 19.48, + "grad_norm": 0.4084467887878418, + "learning_rate": 4.026426666666667e-05, + "loss": 2.1478231811523436, + "step": 146100 + }, + { + "epoch": 19.493333333333332, + "grad_norm": 0.41249674558639526, + "learning_rate": 4.02576e-05, + "loss": 2.146228485107422, + "step": 146200 + }, + { + "epoch": 19.506666666666668, + "grad_norm": 0.4140562415122986, + "learning_rate": 4.025093333333334e-05, + "loss": 2.1468472290039062, + "step": 146300 + }, + { + "epoch": 19.52, + "grad_norm": 0.4109251797199249, + "learning_rate": 4.024426666666667e-05, + "loss": 2.1486239624023438, + "step": 146400 + }, + { + "epoch": 19.533333333333335, + "grad_norm": 0.4116007089614868, + "learning_rate": 4.02376e-05, + "loss": 2.1508238220214846, + "step": 146500 + }, + { + "epoch": 19.546666666666667, + "grad_norm": 0.4088853895664215, + "learning_rate": 4.0230933333333335e-05, + "loss": 2.1514797973632813, + "step": 146600 + }, + { + "epoch": 19.56, + "grad_norm": 0.41675347089767456, + "learning_rate": 4.0224266666666674e-05, + "loss": 2.1524058532714845, + "step": 146700 + }, + { + "epoch": 19.573333333333334, + "grad_norm": 0.3963926136493683, + "learning_rate": 4.02176e-05, + "loss": 2.148751525878906, + "step": 146800 + }, + { + "epoch": 19.586666666666666, + "grad_norm": 0.40617915987968445, + "learning_rate": 4.021093333333333e-05, + "loss": 2.149855194091797, + "step": 146900 + }, + { + "epoch": 19.6, + "grad_norm": 0.41876712441444397, + "learning_rate": 4.020426666666667e-05, + "loss": 2.150911560058594, + "step": 147000 + }, + { + "epoch": 19.613333333333333, + "grad_norm": 0.3804861605167389, + "learning_rate": 4.01976e-05, + "loss": 2.1560760498046876, + "step": 147100 + }, + { + "epoch": 19.626666666666665, + "grad_norm": 0.4384894073009491, + "learning_rate": 4.0191e-05, + "loss": 2.1526423645019532, + "step": 147200 + }, + { + "epoch": 19.64, + "grad_norm": 0.41497132182121277, + "learning_rate": 4.0184333333333334e-05, + "loss": 2.155290374755859, + "step": 147300 + }, + { + "epoch": 19.653333333333332, + "grad_norm": 0.41495493054389954, + "learning_rate": 4.0177666666666666e-05, + "loss": 2.151389465332031, + "step": 147400 + }, + { + "epoch": 19.666666666666668, + "grad_norm": 0.4099428355693817, + "learning_rate": 4.0171000000000006e-05, + "loss": 2.1499951171875, + "step": 147500 + }, + { + "epoch": 19.68, + "grad_norm": 0.3970455825328827, + "learning_rate": 4.016433333333334e-05, + "loss": 2.1519485473632813, + "step": 147600 + }, + { + "epoch": 19.693333333333335, + "grad_norm": 0.39993080496788025, + "learning_rate": 4.015766666666667e-05, + "loss": 2.1552606201171876, + "step": 147700 + }, + { + "epoch": 19.706666666666667, + "grad_norm": 0.3965042233467102, + "learning_rate": 4.0151e-05, + "loss": 2.15621826171875, + "step": 147800 + }, + { + "epoch": 19.72, + "grad_norm": 0.39892885088920593, + "learning_rate": 4.0144333333333335e-05, + "loss": 2.1579328918457032, + "step": 147900 + }, + { + "epoch": 19.733333333333334, + "grad_norm": 0.3992300033569336, + "learning_rate": 4.013766666666667e-05, + "loss": 2.1543257141113283, + "step": 148000 + }, + { + "epoch": 19.746666666666666, + "grad_norm": 0.4157925844192505, + "learning_rate": 4.0131e-05, + "loss": 2.1553553771972656, + "step": 148100 + }, + { + "epoch": 19.76, + "grad_norm": 0.4068884253501892, + "learning_rate": 4.012433333333334e-05, + "loss": 2.1588153076171874, + "step": 148200 + }, + { + "epoch": 19.773333333333333, + "grad_norm": 0.38905492424964905, + "learning_rate": 4.011766666666667e-05, + "loss": 2.15878662109375, + "step": 148300 + }, + { + "epoch": 19.786666666666665, + "grad_norm": 0.4091239869594574, + "learning_rate": 4.0111e-05, + "loss": 2.1591731262207032, + "step": 148400 + }, + { + "epoch": 19.8, + "grad_norm": 0.40158993005752563, + "learning_rate": 4.0104333333333335e-05, + "loss": 2.1584709167480467, + "step": 148500 + }, + { + "epoch": 19.813333333333333, + "grad_norm": 0.39406251907348633, + "learning_rate": 4.009766666666667e-05, + "loss": 2.1566011047363283, + "step": 148600 + }, + { + "epoch": 19.826666666666668, + "grad_norm": 0.407062292098999, + "learning_rate": 4.0091e-05, + "loss": 2.1586177062988283, + "step": 148700 + }, + { + "epoch": 19.84, + "grad_norm": 0.405785471200943, + "learning_rate": 4.008433333333333e-05, + "loss": 2.16111083984375, + "step": 148800 + }, + { + "epoch": 19.85333333333333, + "grad_norm": 0.41420650482177734, + "learning_rate": 4.007766666666667e-05, + "loss": 2.1617213439941407, + "step": 148900 + }, + { + "epoch": 19.866666666666667, + "grad_norm": 0.394771933555603, + "learning_rate": 4.0071e-05, + "loss": 2.1623408508300783, + "step": 149000 + }, + { + "epoch": 19.88, + "grad_norm": 0.40892547369003296, + "learning_rate": 4.0064333333333335e-05, + "loss": 2.157855987548828, + "step": 149100 + }, + { + "epoch": 19.893333333333334, + "grad_norm": 0.3987767994403839, + "learning_rate": 4.0057733333333334e-05, + "loss": 2.1613093566894532, + "step": 149200 + }, + { + "epoch": 19.906666666666666, + "grad_norm": 0.3993833661079407, + "learning_rate": 4.005106666666667e-05, + "loss": 2.1549281311035156, + "step": 149300 + }, + { + "epoch": 19.92, + "grad_norm": 0.38621968030929565, + "learning_rate": 4.0044400000000006e-05, + "loss": 2.160150146484375, + "step": 149400 + }, + { + "epoch": 19.933333333333334, + "grad_norm": 0.3897809386253357, + "learning_rate": 4.003773333333333e-05, + "loss": 2.1631517028808593, + "step": 149500 + }, + { + "epoch": 19.946666666666665, + "grad_norm": 0.398573637008667, + "learning_rate": 4.0031066666666664e-05, + "loss": 2.157795104980469, + "step": 149600 + }, + { + "epoch": 19.96, + "grad_norm": 0.40121105313301086, + "learning_rate": 4.00244e-05, + "loss": 2.1640524291992187, + "step": 149700 + }, + { + "epoch": 19.973333333333333, + "grad_norm": 0.4069249927997589, + "learning_rate": 4.0017733333333335e-05, + "loss": 2.166029052734375, + "step": 149800 + }, + { + "epoch": 19.986666666666668, + "grad_norm": 0.3973349928855896, + "learning_rate": 4.001106666666667e-05, + "loss": 2.1621893310546874, + "step": 149900 + }, + { + "epoch": 20.0, + "grad_norm": 0.41031596064567566, + "learning_rate": 4.0004400000000006e-05, + "loss": 2.164129180908203, + "step": 150000 + }, + { + "epoch": 20.013333333333332, + "grad_norm": 0.4144793748855591, + "learning_rate": 3.999773333333334e-05, + "loss": 2.1011627197265623, + "step": 150100 + }, + { + "epoch": 20.026666666666667, + "grad_norm": 0.4213844835758209, + "learning_rate": 3.999106666666667e-05, + "loss": 2.1013143920898436, + "step": 150200 + }, + { + "epoch": 20.04, + "grad_norm": 0.4233456254005432, + "learning_rate": 3.99844e-05, + "loss": 2.102215118408203, + "step": 150300 + }, + { + "epoch": 20.053333333333335, + "grad_norm": 0.4110080897808075, + "learning_rate": 3.9977733333333335e-05, + "loss": 2.1024229431152346, + "step": 150400 + }, + { + "epoch": 20.066666666666666, + "grad_norm": 0.43383386731147766, + "learning_rate": 3.997106666666667e-05, + "loss": 2.1043170166015623, + "step": 150500 + }, + { + "epoch": 20.08, + "grad_norm": 0.44916924834251404, + "learning_rate": 3.99644e-05, + "loss": 2.1046258544921876, + "step": 150600 + }, + { + "epoch": 20.093333333333334, + "grad_norm": 0.41945359110832214, + "learning_rate": 3.995773333333334e-05, + "loss": 2.1057843017578124, + "step": 150700 + }, + { + "epoch": 20.106666666666666, + "grad_norm": 0.4138963222503662, + "learning_rate": 3.995106666666667e-05, + "loss": 2.109571533203125, + "step": 150800 + }, + { + "epoch": 20.12, + "grad_norm": 0.4254426956176758, + "learning_rate": 3.99444e-05, + "loss": 2.110528869628906, + "step": 150900 + }, + { + "epoch": 20.133333333333333, + "grad_norm": 0.4162181615829468, + "learning_rate": 3.9937733333333336e-05, + "loss": 2.109608459472656, + "step": 151000 + }, + { + "epoch": 20.14666666666667, + "grad_norm": 0.4359742999076843, + "learning_rate": 3.993106666666667e-05, + "loss": 2.111918640136719, + "step": 151100 + }, + { + "epoch": 20.16, + "grad_norm": 0.43765124678611755, + "learning_rate": 3.9924466666666674e-05, + "loss": 2.1102365112304686, + "step": 151200 + }, + { + "epoch": 20.173333333333332, + "grad_norm": 0.4108990728855133, + "learning_rate": 3.99178e-05, + "loss": 2.1093389892578127, + "step": 151300 + }, + { + "epoch": 20.186666666666667, + "grad_norm": 0.44729962944984436, + "learning_rate": 3.991113333333333e-05, + "loss": 2.109452209472656, + "step": 151400 + }, + { + "epoch": 20.2, + "grad_norm": 0.44547468423843384, + "learning_rate": 3.990446666666667e-05, + "loss": 2.112231903076172, + "step": 151500 + }, + { + "epoch": 20.213333333333335, + "grad_norm": 0.41629984974861145, + "learning_rate": 3.98978e-05, + "loss": 2.113887939453125, + "step": 151600 + }, + { + "epoch": 20.226666666666667, + "grad_norm": 0.40394192934036255, + "learning_rate": 3.9891133333333335e-05, + "loss": 2.115534362792969, + "step": 151700 + }, + { + "epoch": 20.24, + "grad_norm": 0.44830042123794556, + "learning_rate": 3.988446666666667e-05, + "loss": 2.1146437072753907, + "step": 151800 + }, + { + "epoch": 20.253333333333334, + "grad_norm": 0.4912000596523285, + "learning_rate": 3.9877800000000006e-05, + "loss": 2.1153712463378906, + "step": 151900 + }, + { + "epoch": 20.266666666666666, + "grad_norm": 0.42249879240989685, + "learning_rate": 3.987113333333333e-05, + "loss": 2.115755615234375, + "step": 152000 + }, + { + "epoch": 20.28, + "grad_norm": 0.4368637204170227, + "learning_rate": 3.9864466666666664e-05, + "loss": 2.116807403564453, + "step": 152100 + }, + { + "epoch": 20.293333333333333, + "grad_norm": 0.4537985920906067, + "learning_rate": 3.98578e-05, + "loss": 2.1168971252441406, + "step": 152200 + }, + { + "epoch": 20.306666666666665, + "grad_norm": 0.4116325378417969, + "learning_rate": 3.9851133333333335e-05, + "loss": 2.1171247863769533, + "step": 152300 + }, + { + "epoch": 20.32, + "grad_norm": 0.4562799632549286, + "learning_rate": 3.984446666666667e-05, + "loss": 2.120128326416016, + "step": 152400 + }, + { + "epoch": 20.333333333333332, + "grad_norm": 0.48379048705101013, + "learning_rate": 3.98378e-05, + "loss": 2.1202543640136717, + "step": 152500 + }, + { + "epoch": 20.346666666666668, + "grad_norm": 0.4196086823940277, + "learning_rate": 3.983113333333334e-05, + "loss": 2.1200096130371096, + "step": 152600 + }, + { + "epoch": 20.36, + "grad_norm": 0.4291480481624603, + "learning_rate": 3.982446666666667e-05, + "loss": 2.1247039794921876, + "step": 152700 + }, + { + "epoch": 20.373333333333335, + "grad_norm": 0.435103178024292, + "learning_rate": 3.98178e-05, + "loss": 2.123348846435547, + "step": 152800 + }, + { + "epoch": 20.386666666666667, + "grad_norm": 0.4345220923423767, + "learning_rate": 3.9811133333333336e-05, + "loss": 2.1262147521972654, + "step": 152900 + }, + { + "epoch": 20.4, + "grad_norm": 0.4328380823135376, + "learning_rate": 3.980446666666667e-05, + "loss": 2.121066131591797, + "step": 153000 + }, + { + "epoch": 20.413333333333334, + "grad_norm": 0.4451119303703308, + "learning_rate": 3.97978e-05, + "loss": 2.1231698608398437, + "step": 153100 + }, + { + "epoch": 20.426666666666666, + "grad_norm": 0.4360395669937134, + "learning_rate": 3.979113333333333e-05, + "loss": 2.125181121826172, + "step": 153200 + }, + { + "epoch": 20.44, + "grad_norm": 0.4354141354560852, + "learning_rate": 3.978453333333333e-05, + "loss": 2.1249436950683593, + "step": 153300 + }, + { + "epoch": 20.453333333333333, + "grad_norm": 0.4377344250679016, + "learning_rate": 3.977786666666667e-05, + "loss": 2.1251399230957033, + "step": 153400 + }, + { + "epoch": 20.466666666666665, + "grad_norm": 0.4143160581588745, + "learning_rate": 3.97712e-05, + "loss": 2.128079681396484, + "step": 153500 + }, + { + "epoch": 20.48, + "grad_norm": 0.42408105731010437, + "learning_rate": 3.9764533333333335e-05, + "loss": 2.1228724670410157, + "step": 153600 + }, + { + "epoch": 20.493333333333332, + "grad_norm": 0.42520079016685486, + "learning_rate": 3.9757866666666674e-05, + "loss": 2.1246131896972655, + "step": 153700 + }, + { + "epoch": 20.506666666666668, + "grad_norm": 0.43026211857795715, + "learning_rate": 3.97512e-05, + "loss": 2.1264944458007813, + "step": 153800 + }, + { + "epoch": 20.52, + "grad_norm": 0.4304378628730774, + "learning_rate": 3.974453333333333e-05, + "loss": 2.128600616455078, + "step": 153900 + }, + { + "epoch": 20.533333333333335, + "grad_norm": 0.4374537765979767, + "learning_rate": 3.9737866666666664e-05, + "loss": 2.127030944824219, + "step": 154000 + }, + { + "epoch": 20.546666666666667, + "grad_norm": 0.42087990045547485, + "learning_rate": 3.9731200000000003e-05, + "loss": 2.127199859619141, + "step": 154100 + }, + { + "epoch": 20.56, + "grad_norm": 0.44808924198150635, + "learning_rate": 3.9724533333333336e-05, + "loss": 2.130141143798828, + "step": 154200 + }, + { + "epoch": 20.573333333333334, + "grad_norm": 0.4425102770328522, + "learning_rate": 3.971786666666667e-05, + "loss": 2.128837432861328, + "step": 154300 + }, + { + "epoch": 20.586666666666666, + "grad_norm": 0.4478192925453186, + "learning_rate": 3.971120000000001e-05, + "loss": 2.126686859130859, + "step": 154400 + }, + { + "epoch": 20.6, + "grad_norm": 0.40875598788261414, + "learning_rate": 3.970453333333333e-05, + "loss": 2.1303999328613283, + "step": 154500 + }, + { + "epoch": 20.613333333333333, + "grad_norm": 0.4193249046802521, + "learning_rate": 3.9697866666666665e-05, + "loss": 2.1299224853515626, + "step": 154600 + }, + { + "epoch": 20.626666666666665, + "grad_norm": 0.42445623874664307, + "learning_rate": 3.9691200000000004e-05, + "loss": 2.129607696533203, + "step": 154700 + }, + { + "epoch": 20.64, + "grad_norm": 0.42908674478530884, + "learning_rate": 3.9684533333333336e-05, + "loss": 2.13080322265625, + "step": 154800 + }, + { + "epoch": 20.653333333333332, + "grad_norm": 0.41622525453567505, + "learning_rate": 3.967786666666667e-05, + "loss": 2.1290174865722657, + "step": 154900 + }, + { + "epoch": 20.666666666666668, + "grad_norm": 0.4262298047542572, + "learning_rate": 3.96712e-05, + "loss": 2.1313914489746093, + "step": 155000 + }, + { + "epoch": 20.68, + "grad_norm": 0.4326687753200531, + "learning_rate": 3.966453333333334e-05, + "loss": 2.1320542907714843, + "step": 155100 + }, + { + "epoch": 20.693333333333335, + "grad_norm": 0.4377034902572632, + "learning_rate": 3.965786666666667e-05, + "loss": 2.1338987731933594, + "step": 155200 + }, + { + "epoch": 20.706666666666667, + "grad_norm": 0.41697245836257935, + "learning_rate": 3.965126666666667e-05, + "loss": 2.1323886108398438, + "step": 155300 + }, + { + "epoch": 20.72, + "grad_norm": 0.4141487777233124, + "learning_rate": 3.96446e-05, + "loss": 2.1330581665039063, + "step": 155400 + }, + { + "epoch": 20.733333333333334, + "grad_norm": 0.44619297981262207, + "learning_rate": 3.9637933333333336e-05, + "loss": 2.133800811767578, + "step": 155500 + }, + { + "epoch": 20.746666666666666, + "grad_norm": 0.4493109881877899, + "learning_rate": 3.963126666666667e-05, + "loss": 2.1314244079589844, + "step": 155600 + }, + { + "epoch": 20.76, + "grad_norm": 0.42815864086151123, + "learning_rate": 3.96246e-05, + "loss": 2.1383274841308593, + "step": 155700 + }, + { + "epoch": 20.773333333333333, + "grad_norm": 0.42495793104171753, + "learning_rate": 3.961793333333333e-05, + "loss": 2.134236602783203, + "step": 155800 + }, + { + "epoch": 20.786666666666665, + "grad_norm": 0.43157216906547546, + "learning_rate": 3.961126666666667e-05, + "loss": 2.1373394775390624, + "step": 155900 + }, + { + "epoch": 20.8, + "grad_norm": 0.4456236958503723, + "learning_rate": 3.9604600000000004e-05, + "loss": 2.13835693359375, + "step": 156000 + }, + { + "epoch": 20.813333333333333, + "grad_norm": 0.4253341853618622, + "learning_rate": 3.9597933333333336e-05, + "loss": 2.1404833984375, + "step": 156100 + }, + { + "epoch": 20.826666666666668, + "grad_norm": 0.4421469569206238, + "learning_rate": 3.959126666666667e-05, + "loss": 2.134762725830078, + "step": 156200 + }, + { + "epoch": 20.84, + "grad_norm": 0.4644703269004822, + "learning_rate": 3.95846e-05, + "loss": 2.1389283752441406, + "step": 156300 + }, + { + "epoch": 20.85333333333333, + "grad_norm": 0.4606155753135681, + "learning_rate": 3.957793333333333e-05, + "loss": 2.140909423828125, + "step": 156400 + }, + { + "epoch": 20.866666666666667, + "grad_norm": 0.4364932179450989, + "learning_rate": 3.9571266666666665e-05, + "loss": 2.1414125061035154, + "step": 156500 + }, + { + "epoch": 20.88, + "grad_norm": 0.41626495122909546, + "learning_rate": 3.9564600000000004e-05, + "loss": 2.139465789794922, + "step": 156600 + }, + { + "epoch": 20.893333333333334, + "grad_norm": 0.43859004974365234, + "learning_rate": 3.9557933333333336e-05, + "loss": 2.139771728515625, + "step": 156700 + }, + { + "epoch": 20.906666666666666, + "grad_norm": 0.41686686873435974, + "learning_rate": 3.955126666666667e-05, + "loss": 2.1382980346679688, + "step": 156800 + }, + { + "epoch": 20.92, + "grad_norm": 0.4283873438835144, + "learning_rate": 3.95446e-05, + "loss": 2.138336181640625, + "step": 156900 + }, + { + "epoch": 20.933333333333334, + "grad_norm": 0.433183878660202, + "learning_rate": 3.953793333333334e-05, + "loss": 2.1397128295898438, + "step": 157000 + }, + { + "epoch": 20.946666666666665, + "grad_norm": 0.4318670928478241, + "learning_rate": 3.9531266666666665e-05, + "loss": 2.1437940979003907, + "step": 157100 + }, + { + "epoch": 20.96, + "grad_norm": 0.40270859003067017, + "learning_rate": 3.95246e-05, + "loss": 2.14356689453125, + "step": 157200 + }, + { + "epoch": 20.973333333333333, + "grad_norm": 0.4244714379310608, + "learning_rate": 3.9518e-05, + "loss": 2.139528503417969, + "step": 157300 + }, + { + "epoch": 20.986666666666668, + "grad_norm": 0.45268091559410095, + "learning_rate": 3.9511333333333336e-05, + "loss": 2.145069427490234, + "step": 157400 + }, + { + "epoch": 21.0, + "grad_norm": 0.40507015585899353, + "learning_rate": 3.950466666666667e-05, + "loss": 2.143871154785156, + "step": 157500 + }, + { + "epoch": 21.013333333333332, + "grad_norm": 0.4375498592853546, + "learning_rate": 3.9498e-05, + "loss": 2.076609649658203, + "step": 157600 + }, + { + "epoch": 21.026666666666667, + "grad_norm": 0.4368535876274109, + "learning_rate": 3.949133333333333e-05, + "loss": 2.081154022216797, + "step": 157700 + }, + { + "epoch": 21.04, + "grad_norm": 0.4447578489780426, + "learning_rate": 3.948466666666667e-05, + "loss": 2.080892333984375, + "step": 157800 + }, + { + "epoch": 21.053333333333335, + "grad_norm": 0.46905946731567383, + "learning_rate": 3.9478000000000004e-05, + "loss": 2.082366485595703, + "step": 157900 + }, + { + "epoch": 21.066666666666666, + "grad_norm": 0.4563233554363251, + "learning_rate": 3.9471333333333336e-05, + "loss": 2.081029815673828, + "step": 158000 + }, + { + "epoch": 21.08, + "grad_norm": 0.442941278219223, + "learning_rate": 3.946466666666667e-05, + "loss": 2.079813690185547, + "step": 158100 + }, + { + "epoch": 21.093333333333334, + "grad_norm": 0.44517138600349426, + "learning_rate": 3.9458e-05, + "loss": 2.0806849670410155, + "step": 158200 + }, + { + "epoch": 21.106666666666666, + "grad_norm": 0.4202803075313568, + "learning_rate": 3.945133333333333e-05, + "loss": 2.0857112121582033, + "step": 158300 + }, + { + "epoch": 21.12, + "grad_norm": 0.443814218044281, + "learning_rate": 3.944466666666667e-05, + "loss": 2.0827932739257813, + "step": 158400 + }, + { + "epoch": 21.133333333333333, + "grad_norm": 0.4491780698299408, + "learning_rate": 3.9438000000000004e-05, + "loss": 2.0842088317871093, + "step": 158500 + }, + { + "epoch": 21.14666666666667, + "grad_norm": 0.45883890986442566, + "learning_rate": 3.9431333333333337e-05, + "loss": 2.086201019287109, + "step": 158600 + }, + { + "epoch": 21.16, + "grad_norm": 0.4523576498031616, + "learning_rate": 3.942466666666667e-05, + "loss": 2.088128967285156, + "step": 158700 + }, + { + "epoch": 21.173333333333332, + "grad_norm": 0.44423168897628784, + "learning_rate": 3.9418e-05, + "loss": 2.0868064880371096, + "step": 158800 + }, + { + "epoch": 21.186666666666667, + "grad_norm": 0.43601688742637634, + "learning_rate": 3.941133333333333e-05, + "loss": 2.089644470214844, + "step": 158900 + }, + { + "epoch": 21.2, + "grad_norm": 0.46989673376083374, + "learning_rate": 3.9404666666666666e-05, + "loss": 2.093050231933594, + "step": 159000 + }, + { + "epoch": 21.213333333333335, + "grad_norm": 0.43255218863487244, + "learning_rate": 3.9398000000000005e-05, + "loss": 2.0879270935058596, + "step": 159100 + }, + { + "epoch": 21.226666666666667, + "grad_norm": 0.49605920910835266, + "learning_rate": 3.939133333333334e-05, + "loss": 2.0937208557128906, + "step": 159200 + }, + { + "epoch": 21.24, + "grad_norm": 0.45772337913513184, + "learning_rate": 3.9384733333333336e-05, + "loss": 2.088824462890625, + "step": 159300 + }, + { + "epoch": 21.253333333333334, + "grad_norm": 0.47145646810531616, + "learning_rate": 3.937806666666667e-05, + "loss": 2.093097839355469, + "step": 159400 + }, + { + "epoch": 21.266666666666666, + "grad_norm": 0.4515535235404968, + "learning_rate": 3.93714e-05, + "loss": 2.0927359008789064, + "step": 159500 + }, + { + "epoch": 21.28, + "grad_norm": 0.4473794102668762, + "learning_rate": 3.936473333333334e-05, + "loss": 2.09676513671875, + "step": 159600 + }, + { + "epoch": 21.293333333333333, + "grad_norm": 0.4367310106754303, + "learning_rate": 3.935806666666667e-05, + "loss": 2.101490173339844, + "step": 159700 + }, + { + "epoch": 21.306666666666665, + "grad_norm": 0.4792206585407257, + "learning_rate": 3.93514e-05, + "loss": 2.0952803039550782, + "step": 159800 + }, + { + "epoch": 21.32, + "grad_norm": 0.47740694880485535, + "learning_rate": 3.9344733333333336e-05, + "loss": 2.095529022216797, + "step": 159900 + }, + { + "epoch": 21.333333333333332, + "grad_norm": 0.4495086371898651, + "learning_rate": 3.933806666666667e-05, + "loss": 2.0941035461425783, + "step": 160000 + }, + { + "epoch": 21.346666666666668, + "grad_norm": 0.45994919538497925, + "learning_rate": 3.93314e-05, + "loss": 2.097761993408203, + "step": 160100 + }, + { + "epoch": 21.36, + "grad_norm": 0.45980381965637207, + "learning_rate": 3.932473333333333e-05, + "loss": 2.103887634277344, + "step": 160200 + }, + { + "epoch": 21.373333333333335, + "grad_norm": 0.4462270438671112, + "learning_rate": 3.931806666666667e-05, + "loss": 2.1018940734863283, + "step": 160300 + }, + { + "epoch": 21.386666666666667, + "grad_norm": 0.44747424125671387, + "learning_rate": 3.9311400000000004e-05, + "loss": 2.100036163330078, + "step": 160400 + }, + { + "epoch": 21.4, + "grad_norm": 0.45789986848831177, + "learning_rate": 3.930473333333334e-05, + "loss": 2.097904052734375, + "step": 160500 + }, + { + "epoch": 21.413333333333334, + "grad_norm": 0.4360867440700531, + "learning_rate": 3.929806666666667e-05, + "loss": 2.100706787109375, + "step": 160600 + }, + { + "epoch": 21.426666666666666, + "grad_norm": 0.4504407048225403, + "learning_rate": 3.92914e-05, + "loss": 2.1013177490234374, + "step": 160700 + }, + { + "epoch": 21.44, + "grad_norm": 0.44968169927597046, + "learning_rate": 3.9284733333333334e-05, + "loss": 2.1003431701660156, + "step": 160800 + }, + { + "epoch": 21.453333333333333, + "grad_norm": 0.4681168794631958, + "learning_rate": 3.9278066666666666e-05, + "loss": 2.100907440185547, + "step": 160900 + }, + { + "epoch": 21.466666666666665, + "grad_norm": 0.4619245231151581, + "learning_rate": 3.9271400000000005e-05, + "loss": 2.103074035644531, + "step": 161000 + }, + { + "epoch": 21.48, + "grad_norm": 0.46537071466445923, + "learning_rate": 3.926473333333334e-05, + "loss": 2.1030101013183593, + "step": 161100 + }, + { + "epoch": 21.493333333333332, + "grad_norm": 0.44652751088142395, + "learning_rate": 3.925806666666667e-05, + "loss": 2.1046063232421877, + "step": 161200 + }, + { + "epoch": 21.506666666666668, + "grad_norm": 0.4665990173816681, + "learning_rate": 3.925146666666667e-05, + "loss": 2.103731842041016, + "step": 161300 + }, + { + "epoch": 21.52, + "grad_norm": 0.4317059814929962, + "learning_rate": 3.92448e-05, + "loss": 2.1036187744140626, + "step": 161400 + }, + { + "epoch": 21.533333333333335, + "grad_norm": 0.435001015663147, + "learning_rate": 3.923813333333334e-05, + "loss": 2.1071646118164065, + "step": 161500 + }, + { + "epoch": 21.546666666666667, + "grad_norm": 0.453155517578125, + "learning_rate": 3.9231466666666665e-05, + "loss": 2.104129638671875, + "step": 161600 + }, + { + "epoch": 21.56, + "grad_norm": 0.4656548798084259, + "learning_rate": 3.92248e-05, + "loss": 2.1059341430664062, + "step": 161700 + }, + { + "epoch": 21.573333333333334, + "grad_norm": 0.4497198164463043, + "learning_rate": 3.9218133333333337e-05, + "loss": 2.107401885986328, + "step": 161800 + }, + { + "epoch": 21.586666666666666, + "grad_norm": 0.45339301228523254, + "learning_rate": 3.921146666666667e-05, + "loss": 2.107149658203125, + "step": 161900 + }, + { + "epoch": 21.6, + "grad_norm": 0.46817344427108765, + "learning_rate": 3.92048e-05, + "loss": 2.1110685729980467, + "step": 162000 + }, + { + "epoch": 21.613333333333333, + "grad_norm": 0.4366016983985901, + "learning_rate": 3.9198133333333333e-05, + "loss": 2.1120893859863283, + "step": 162100 + }, + { + "epoch": 21.626666666666665, + "grad_norm": 0.4366924464702606, + "learning_rate": 3.919146666666667e-05, + "loss": 2.108365173339844, + "step": 162200 + }, + { + "epoch": 21.64, + "grad_norm": 0.4303394556045532, + "learning_rate": 3.91848e-05, + "loss": 2.1109800720214844, + "step": 162300 + }, + { + "epoch": 21.653333333333332, + "grad_norm": 0.4512556791305542, + "learning_rate": 3.917813333333333e-05, + "loss": 2.1110675048828127, + "step": 162400 + }, + { + "epoch": 21.666666666666668, + "grad_norm": 0.4542624056339264, + "learning_rate": 3.917146666666667e-05, + "loss": 2.1098895263671875, + "step": 162500 + }, + { + "epoch": 21.68, + "grad_norm": 0.4364491403102875, + "learning_rate": 3.91648e-05, + "loss": 2.1100592041015624, + "step": 162600 + }, + { + "epoch": 21.693333333333335, + "grad_norm": 0.4367804229259491, + "learning_rate": 3.9158133333333334e-05, + "loss": 2.111675109863281, + "step": 162700 + }, + { + "epoch": 21.706666666666667, + "grad_norm": 0.4421547055244446, + "learning_rate": 3.915146666666667e-05, + "loss": 2.113012390136719, + "step": 162800 + }, + { + "epoch": 21.72, + "grad_norm": 0.4768464267253876, + "learning_rate": 3.9144800000000005e-05, + "loss": 2.112431945800781, + "step": 162900 + }, + { + "epoch": 21.733333333333334, + "grad_norm": 0.470196008682251, + "learning_rate": 3.913813333333334e-05, + "loss": 2.115672760009766, + "step": 163000 + }, + { + "epoch": 21.746666666666666, + "grad_norm": 0.45648738741874695, + "learning_rate": 3.913146666666667e-05, + "loss": 2.113785858154297, + "step": 163100 + }, + { + "epoch": 21.76, + "grad_norm": 0.43980491161346436, + "learning_rate": 3.91248e-05, + "loss": 2.1120240783691404, + "step": 163200 + }, + { + "epoch": 21.773333333333333, + "grad_norm": 0.4451877772808075, + "learning_rate": 3.91182e-05, + "loss": 2.1176910400390625, + "step": 163300 + }, + { + "epoch": 21.786666666666665, + "grad_norm": 0.4444795250892639, + "learning_rate": 3.911153333333333e-05, + "loss": 2.1153562927246092, + "step": 163400 + }, + { + "epoch": 21.8, + "grad_norm": 0.45172980427742004, + "learning_rate": 3.9104866666666666e-05, + "loss": 2.1131268310546876, + "step": 163500 + }, + { + "epoch": 21.813333333333333, + "grad_norm": 0.44000083208084106, + "learning_rate": 3.9098200000000005e-05, + "loss": 2.1168165588378907, + "step": 163600 + }, + { + "epoch": 21.826666666666668, + "grad_norm": 0.43779900670051575, + "learning_rate": 3.909153333333334e-05, + "loss": 2.117685546875, + "step": 163700 + }, + { + "epoch": 21.84, + "grad_norm": 0.4511207640171051, + "learning_rate": 3.908486666666667e-05, + "loss": 2.1206480407714845, + "step": 163800 + }, + { + "epoch": 21.85333333333333, + "grad_norm": 0.44668668508529663, + "learning_rate": 3.90782e-05, + "loss": 2.1188619995117186, + "step": 163900 + }, + { + "epoch": 21.866666666666667, + "grad_norm": 0.4455656409263611, + "learning_rate": 3.907153333333334e-05, + "loss": 2.1155546569824217, + "step": 164000 + }, + { + "epoch": 21.88, + "grad_norm": 0.4516298770904541, + "learning_rate": 3.9064866666666666e-05, + "loss": 2.1179278564453123, + "step": 164100 + }, + { + "epoch": 21.893333333333334, + "grad_norm": 0.46956104040145874, + "learning_rate": 3.90582e-05, + "loss": 2.1160130310058594, + "step": 164200 + }, + { + "epoch": 21.906666666666666, + "grad_norm": 0.449705570936203, + "learning_rate": 3.905153333333334e-05, + "loss": 2.117757568359375, + "step": 164300 + }, + { + "epoch": 21.92, + "grad_norm": 0.4311459958553314, + "learning_rate": 3.904486666666667e-05, + "loss": 2.1182154846191406, + "step": 164400 + }, + { + "epoch": 21.933333333333334, + "grad_norm": 0.45638683438301086, + "learning_rate": 3.90382e-05, + "loss": 2.118441925048828, + "step": 164500 + }, + { + "epoch": 21.946666666666665, + "grad_norm": 0.4434240758419037, + "learning_rate": 3.9031533333333334e-05, + "loss": 2.1223045349121095, + "step": 164600 + }, + { + "epoch": 21.96, + "grad_norm": 0.46672335267066956, + "learning_rate": 3.902486666666667e-05, + "loss": 2.1176348876953126, + "step": 164700 + }, + { + "epoch": 21.973333333333333, + "grad_norm": 0.4445401430130005, + "learning_rate": 3.90182e-05, + "loss": 2.1194577026367187, + "step": 164800 + }, + { + "epoch": 21.986666666666668, + "grad_norm": 0.4556116461753845, + "learning_rate": 3.901153333333333e-05, + "loss": 2.124223175048828, + "step": 164900 + }, + { + "epoch": 22.0, + "grad_norm": 0.46571463346481323, + "learning_rate": 3.900486666666667e-05, + "loss": 2.123155517578125, + "step": 165000 + }, + { + "epoch": 22.013333333333332, + "grad_norm": 0.4723842740058899, + "learning_rate": 3.89982e-05, + "loss": 2.052652130126953, + "step": 165100 + }, + { + "epoch": 22.026666666666667, + "grad_norm": 0.4425469636917114, + "learning_rate": 3.8991533333333334e-05, + "loss": 2.052018890380859, + "step": 165200 + }, + { + "epoch": 22.04, + "grad_norm": 0.47095298767089844, + "learning_rate": 3.8984933333333333e-05, + "loss": 2.055422058105469, + "step": 165300 + }, + { + "epoch": 22.053333333333335, + "grad_norm": 0.46141520142555237, + "learning_rate": 3.8978266666666666e-05, + "loss": 2.0570689392089845, + "step": 165400 + }, + { + "epoch": 22.066666666666666, + "grad_norm": 0.471127450466156, + "learning_rate": 3.8971600000000005e-05, + "loss": 2.058157958984375, + "step": 165500 + }, + { + "epoch": 22.08, + "grad_norm": 0.48794686794281006, + "learning_rate": 3.896493333333334e-05, + "loss": 2.0558770751953124, + "step": 165600 + }, + { + "epoch": 22.093333333333334, + "grad_norm": 0.4672645926475525, + "learning_rate": 3.895826666666667e-05, + "loss": 2.061310272216797, + "step": 165700 + }, + { + "epoch": 22.106666666666666, + "grad_norm": 0.4862455427646637, + "learning_rate": 3.89516e-05, + "loss": 2.0606340026855468, + "step": 165800 + }, + { + "epoch": 22.12, + "grad_norm": 0.4853212833404541, + "learning_rate": 3.8944933333333334e-05, + "loss": 2.061323699951172, + "step": 165900 + }, + { + "epoch": 22.133333333333333, + "grad_norm": 0.4732306897640228, + "learning_rate": 3.8938266666666666e-05, + "loss": 2.0635455322265623, + "step": 166000 + }, + { + "epoch": 22.14666666666667, + "grad_norm": 0.4706946611404419, + "learning_rate": 3.89316e-05, + "loss": 2.063304595947266, + "step": 166100 + }, + { + "epoch": 22.16, + "grad_norm": 0.47907590866088867, + "learning_rate": 3.892493333333334e-05, + "loss": 2.063959503173828, + "step": 166200 + }, + { + "epoch": 22.173333333333332, + "grad_norm": 0.4727233946323395, + "learning_rate": 3.891826666666667e-05, + "loss": 2.0665432739257814, + "step": 166300 + }, + { + "epoch": 22.186666666666667, + "grad_norm": 0.450941264629364, + "learning_rate": 3.89116e-05, + "loss": 2.069130706787109, + "step": 166400 + }, + { + "epoch": 22.2, + "grad_norm": 0.4796398878097534, + "learning_rate": 3.890493333333334e-05, + "loss": 2.066522521972656, + "step": 166500 + }, + { + "epoch": 22.213333333333335, + "grad_norm": 0.44986021518707275, + "learning_rate": 3.8898266666666667e-05, + "loss": 2.068634033203125, + "step": 166600 + }, + { + "epoch": 22.226666666666667, + "grad_norm": 0.4744917154312134, + "learning_rate": 3.88916e-05, + "loss": 2.071067047119141, + "step": 166700 + }, + { + "epoch": 22.24, + "grad_norm": 0.4827626943588257, + "learning_rate": 3.888493333333333e-05, + "loss": 2.0700621032714843, + "step": 166800 + }, + { + "epoch": 22.253333333333334, + "grad_norm": 0.46759262681007385, + "learning_rate": 3.887826666666667e-05, + "loss": 2.0715043640136717, + "step": 166900 + }, + { + "epoch": 22.266666666666666, + "grad_norm": 0.4774859845638275, + "learning_rate": 3.88716e-05, + "loss": 2.071572113037109, + "step": 167000 + }, + { + "epoch": 22.28, + "grad_norm": 0.46241122484207153, + "learning_rate": 3.8864933333333335e-05, + "loss": 2.070568389892578, + "step": 167100 + }, + { + "epoch": 22.293333333333333, + "grad_norm": 0.46631354093551636, + "learning_rate": 3.8858266666666674e-05, + "loss": 2.067816162109375, + "step": 167200 + }, + { + "epoch": 22.306666666666665, + "grad_norm": 0.4631997346878052, + "learning_rate": 3.885166666666667e-05, + "loss": 2.06839599609375, + "step": 167300 + }, + { + "epoch": 22.32, + "grad_norm": 0.4765164852142334, + "learning_rate": 3.8845000000000005e-05, + "loss": 2.075525665283203, + "step": 167400 + }, + { + "epoch": 22.333333333333332, + "grad_norm": 0.4727115035057068, + "learning_rate": 3.883833333333334e-05, + "loss": 2.07642822265625, + "step": 167500 + }, + { + "epoch": 22.346666666666668, + "grad_norm": 0.455098956823349, + "learning_rate": 3.883166666666667e-05, + "loss": 2.078255157470703, + "step": 167600 + }, + { + "epoch": 22.36, + "grad_norm": 0.49284619092941284, + "learning_rate": 3.8825e-05, + "loss": 2.0744464111328127, + "step": 167700 + }, + { + "epoch": 22.373333333333335, + "grad_norm": 0.4699040651321411, + "learning_rate": 3.8818333333333334e-05, + "loss": 2.0767945861816406, + "step": 167800 + }, + { + "epoch": 22.386666666666667, + "grad_norm": 0.45493465662002563, + "learning_rate": 3.8811666666666666e-05, + "loss": 2.0780029296875, + "step": 167900 + }, + { + "epoch": 22.4, + "grad_norm": 0.4484899938106537, + "learning_rate": 3.8805000000000005e-05, + "loss": 2.080047302246094, + "step": 168000 + }, + { + "epoch": 22.413333333333334, + "grad_norm": 0.47381719946861267, + "learning_rate": 3.879833333333334e-05, + "loss": 2.077555694580078, + "step": 168100 + }, + { + "epoch": 22.426666666666666, + "grad_norm": 0.46231788396835327, + "learning_rate": 3.879166666666667e-05, + "loss": 2.079783172607422, + "step": 168200 + }, + { + "epoch": 22.44, + "grad_norm": 0.47428375482559204, + "learning_rate": 3.8785e-05, + "loss": 2.0778314208984376, + "step": 168300 + }, + { + "epoch": 22.453333333333333, + "grad_norm": 0.4597417116165161, + "learning_rate": 3.8778333333333334e-05, + "loss": 2.0790553283691406, + "step": 168400 + }, + { + "epoch": 22.466666666666665, + "grad_norm": 0.4623263478279114, + "learning_rate": 3.877166666666667e-05, + "loss": 2.0836700439453124, + "step": 168500 + }, + { + "epoch": 22.48, + "grad_norm": 0.4659540355205536, + "learning_rate": 3.8765e-05, + "loss": 2.0827793884277344, + "step": 168600 + }, + { + "epoch": 22.493333333333332, + "grad_norm": 0.47923794388771057, + "learning_rate": 3.875833333333334e-05, + "loss": 2.080955810546875, + "step": 168700 + }, + { + "epoch": 22.506666666666668, + "grad_norm": 0.4475663900375366, + "learning_rate": 3.875166666666667e-05, + "loss": 2.0815643310546874, + "step": 168800 + }, + { + "epoch": 22.52, + "grad_norm": 0.4618177115917206, + "learning_rate": 3.8745e-05, + "loss": 2.086231689453125, + "step": 168900 + }, + { + "epoch": 22.533333333333335, + "grad_norm": 0.4708126187324524, + "learning_rate": 3.8738333333333335e-05, + "loss": 2.080514373779297, + "step": 169000 + }, + { + "epoch": 22.546666666666667, + "grad_norm": 0.49023526906967163, + "learning_rate": 3.873166666666667e-05, + "loss": 2.084552001953125, + "step": 169100 + }, + { + "epoch": 22.56, + "grad_norm": 0.48341864347457886, + "learning_rate": 3.8725e-05, + "loss": 2.083937530517578, + "step": 169200 + }, + { + "epoch": 22.573333333333334, + "grad_norm": 0.4568435251712799, + "learning_rate": 3.87184e-05, + "loss": 2.0851905822753904, + "step": 169300 + }, + { + "epoch": 22.586666666666666, + "grad_norm": 0.46612024307250977, + "learning_rate": 3.871173333333333e-05, + "loss": 2.084072265625, + "step": 169400 + }, + { + "epoch": 22.6, + "grad_norm": 0.4634513258934021, + "learning_rate": 3.870506666666667e-05, + "loss": 2.0853956604003905, + "step": 169500 + }, + { + "epoch": 22.613333333333333, + "grad_norm": 0.46668726205825806, + "learning_rate": 3.86984e-05, + "loss": 2.084056854248047, + "step": 169600 + }, + { + "epoch": 22.626666666666665, + "grad_norm": 0.4836789667606354, + "learning_rate": 3.8691733333333334e-05, + "loss": 2.0863687133789064, + "step": 169700 + }, + { + "epoch": 22.64, + "grad_norm": 0.48101136088371277, + "learning_rate": 3.8685066666666667e-05, + "loss": 2.0898916625976565, + "step": 169800 + }, + { + "epoch": 22.653333333333332, + "grad_norm": 0.4785110652446747, + "learning_rate": 3.8678400000000006e-05, + "loss": 2.088622589111328, + "step": 169900 + }, + { + "epoch": 22.666666666666668, + "grad_norm": 0.4937325716018677, + "learning_rate": 3.867173333333334e-05, + "loss": 2.0871990966796874, + "step": 170000 + }, + { + "epoch": 22.68, + "grad_norm": 0.5297033786773682, + "learning_rate": 3.866506666666666e-05, + "loss": 2.09009033203125, + "step": 170100 + }, + { + "epoch": 22.693333333333335, + "grad_norm": 0.4711852967739105, + "learning_rate": 3.86584e-05, + "loss": 2.089188690185547, + "step": 170200 + }, + { + "epoch": 22.706666666666667, + "grad_norm": 0.5121586322784424, + "learning_rate": 3.8651733333333335e-05, + "loss": 2.0879640197753906, + "step": 170300 + }, + { + "epoch": 22.72, + "grad_norm": 0.4589405953884125, + "learning_rate": 3.864506666666667e-05, + "loss": 2.088956298828125, + "step": 170400 + }, + { + "epoch": 22.733333333333334, + "grad_norm": 0.4850880205631256, + "learning_rate": 3.86384e-05, + "loss": 2.090540466308594, + "step": 170500 + }, + { + "epoch": 22.746666666666666, + "grad_norm": 0.47406673431396484, + "learning_rate": 3.863173333333334e-05, + "loss": 2.090264892578125, + "step": 170600 + }, + { + "epoch": 22.76, + "grad_norm": 0.45255404710769653, + "learning_rate": 3.862506666666667e-05, + "loss": 2.0918638610839846, + "step": 170700 + }, + { + "epoch": 22.773333333333333, + "grad_norm": 0.5285037159919739, + "learning_rate": 3.86184e-05, + "loss": 2.0930937194824217, + "step": 170800 + }, + { + "epoch": 22.786666666666665, + "grad_norm": 0.45995503664016724, + "learning_rate": 3.8611733333333335e-05, + "loss": 2.0932025146484374, + "step": 170900 + }, + { + "epoch": 22.8, + "grad_norm": 0.4696432054042816, + "learning_rate": 3.860506666666667e-05, + "loss": 2.0916217041015623, + "step": 171000 + }, + { + "epoch": 22.813333333333333, + "grad_norm": 0.4758760929107666, + "learning_rate": 3.85984e-05, + "loss": 2.0916656494140624, + "step": 171100 + }, + { + "epoch": 22.826666666666668, + "grad_norm": 0.4615608751773834, + "learning_rate": 3.859173333333334e-05, + "loss": 2.0914183044433594, + "step": 171200 + }, + { + "epoch": 22.84, + "grad_norm": 0.4628288149833679, + "learning_rate": 3.858513333333333e-05, + "loss": 2.0931082153320313, + "step": 171300 + }, + { + "epoch": 22.85333333333333, + "grad_norm": 0.47100356221199036, + "learning_rate": 3.857846666666667e-05, + "loss": 2.0922206115722655, + "step": 171400 + }, + { + "epoch": 22.866666666666667, + "grad_norm": 0.4577377736568451, + "learning_rate": 3.85718e-05, + "loss": 2.094632263183594, + "step": 171500 + }, + { + "epoch": 22.88, + "grad_norm": 0.4824475944042206, + "learning_rate": 3.8565133333333335e-05, + "loss": 2.0955517578125, + "step": 171600 + }, + { + "epoch": 22.893333333333334, + "grad_norm": 0.46944087743759155, + "learning_rate": 3.8558466666666674e-05, + "loss": 2.0956381225585936, + "step": 171700 + }, + { + "epoch": 22.906666666666666, + "grad_norm": 0.4713914692401886, + "learning_rate": 3.8551800000000006e-05, + "loss": 2.0936820983886717, + "step": 171800 + }, + { + "epoch": 22.92, + "grad_norm": 0.4607670307159424, + "learning_rate": 3.854513333333333e-05, + "loss": 2.093219757080078, + "step": 171900 + }, + { + "epoch": 22.933333333333334, + "grad_norm": 0.46481382846832275, + "learning_rate": 3.853846666666667e-05, + "loss": 2.0938676452636718, + "step": 172000 + }, + { + "epoch": 22.946666666666665, + "grad_norm": 0.46048957109451294, + "learning_rate": 3.85318e-05, + "loss": 2.0956375122070314, + "step": 172100 + }, + { + "epoch": 22.96, + "grad_norm": 0.4736049771308899, + "learning_rate": 3.8525133333333335e-05, + "loss": 2.1002877807617186, + "step": 172200 + }, + { + "epoch": 22.973333333333333, + "grad_norm": 0.4825821816921234, + "learning_rate": 3.851846666666667e-05, + "loss": 2.0992372131347654, + "step": 172300 + }, + { + "epoch": 22.986666666666668, + "grad_norm": 0.4482329785823822, + "learning_rate": 3.8511800000000006e-05, + "loss": 2.100669708251953, + "step": 172400 + }, + { + "epoch": 23.0, + "grad_norm": 0.477242648601532, + "learning_rate": 3.850513333333334e-05, + "loss": 2.098603057861328, + "step": 172500 + }, + { + "epoch": 23.013333333333332, + "grad_norm": 0.49231958389282227, + "learning_rate": 3.8498466666666664e-05, + "loss": 2.028154296875, + "step": 172600 + }, + { + "epoch": 23.026666666666667, + "grad_norm": 0.4812023937702179, + "learning_rate": 3.84918e-05, + "loss": 2.0299658203125, + "step": 172700 + }, + { + "epoch": 23.04, + "grad_norm": 0.4930895268917084, + "learning_rate": 3.8485133333333335e-05, + "loss": 2.031252746582031, + "step": 172800 + }, + { + "epoch": 23.053333333333335, + "grad_norm": 0.48605743050575256, + "learning_rate": 3.847846666666667e-05, + "loss": 2.0349273681640625, + "step": 172900 + }, + { + "epoch": 23.066666666666666, + "grad_norm": 0.4839179813861847, + "learning_rate": 3.84718e-05, + "loss": 2.031682891845703, + "step": 173000 + }, + { + "epoch": 23.08, + "grad_norm": 0.5092812180519104, + "learning_rate": 3.846513333333334e-05, + "loss": 2.033275451660156, + "step": 173100 + }, + { + "epoch": 23.093333333333334, + "grad_norm": 0.4731476604938507, + "learning_rate": 3.845853333333334e-05, + "loss": 2.0364311218261717, + "step": 173200 + }, + { + "epoch": 23.106666666666666, + "grad_norm": 0.5190111398696899, + "learning_rate": 3.845186666666667e-05, + "loss": 2.0340025329589846, + "step": 173300 + }, + { + "epoch": 23.12, + "grad_norm": 0.48105064034461975, + "learning_rate": 3.84452e-05, + "loss": 2.037009582519531, + "step": 173400 + }, + { + "epoch": 23.133333333333333, + "grad_norm": 0.52114337682724, + "learning_rate": 3.8438533333333335e-05, + "loss": 2.0407159423828123, + "step": 173500 + }, + { + "epoch": 23.14666666666667, + "grad_norm": 0.4885977804660797, + "learning_rate": 3.843186666666667e-05, + "loss": 2.03779541015625, + "step": 173600 + }, + { + "epoch": 23.16, + "grad_norm": 0.48264557123184204, + "learning_rate": 3.84252e-05, + "loss": 2.0406539916992186, + "step": 173700 + }, + { + "epoch": 23.173333333333332, + "grad_norm": 0.4905865490436554, + "learning_rate": 3.841853333333333e-05, + "loss": 2.0425653076171875, + "step": 173800 + }, + { + "epoch": 23.186666666666667, + "grad_norm": 0.5025938749313354, + "learning_rate": 3.841186666666667e-05, + "loss": 2.0424517822265624, + "step": 173900 + }, + { + "epoch": 23.2, + "grad_norm": 0.4712689220905304, + "learning_rate": 3.84052e-05, + "loss": 2.0432838439941405, + "step": 174000 + }, + { + "epoch": 23.213333333333335, + "grad_norm": 0.48581528663635254, + "learning_rate": 3.8398533333333335e-05, + "loss": 2.0483238220214846, + "step": 174100 + }, + { + "epoch": 23.226666666666667, + "grad_norm": 0.4895326793193817, + "learning_rate": 3.839186666666667e-05, + "loss": 2.0430706787109374, + "step": 174200 + }, + { + "epoch": 23.24, + "grad_norm": 0.48464319109916687, + "learning_rate": 3.8385200000000006e-05, + "loss": 2.041295623779297, + "step": 174300 + }, + { + "epoch": 23.253333333333334, + "grad_norm": 0.47198572754859924, + "learning_rate": 3.837853333333333e-05, + "loss": 2.046827850341797, + "step": 174400 + }, + { + "epoch": 23.266666666666666, + "grad_norm": 0.5147217512130737, + "learning_rate": 3.8371866666666664e-05, + "loss": 2.04611572265625, + "step": 174500 + }, + { + "epoch": 23.28, + "grad_norm": 0.597183108329773, + "learning_rate": 3.83652e-05, + "loss": 2.0490652465820314, + "step": 174600 + }, + { + "epoch": 23.293333333333333, + "grad_norm": 0.4989413022994995, + "learning_rate": 3.8358533333333336e-05, + "loss": 2.0499391174316406, + "step": 174700 + }, + { + "epoch": 23.306666666666665, + "grad_norm": 0.48632174730300903, + "learning_rate": 3.835186666666667e-05, + "loss": 2.046672515869141, + "step": 174800 + }, + { + "epoch": 23.32, + "grad_norm": 0.5028402209281921, + "learning_rate": 3.83452e-05, + "loss": 2.05111572265625, + "step": 174900 + }, + { + "epoch": 23.333333333333332, + "grad_norm": 0.5091901421546936, + "learning_rate": 3.833853333333334e-05, + "loss": 2.051913299560547, + "step": 175000 + }, + { + "epoch": 23.346666666666668, + "grad_norm": 0.4841155409812927, + "learning_rate": 3.8331866666666665e-05, + "loss": 2.051449737548828, + "step": 175100 + }, + { + "epoch": 23.36, + "grad_norm": 0.4835347533226013, + "learning_rate": 3.83252e-05, + "loss": 2.050365295410156, + "step": 175200 + }, + { + "epoch": 23.373333333333335, + "grad_norm": 0.4950560927391052, + "learning_rate": 3.8318533333333336e-05, + "loss": 2.0553269958496094, + "step": 175300 + }, + { + "epoch": 23.386666666666667, + "grad_norm": 0.4722176492214203, + "learning_rate": 3.831186666666667e-05, + "loss": 2.049596862792969, + "step": 175400 + }, + { + "epoch": 23.4, + "grad_norm": 0.48539531230926514, + "learning_rate": 3.83052e-05, + "loss": 2.055406036376953, + "step": 175500 + }, + { + "epoch": 23.413333333333334, + "grad_norm": 0.49876898527145386, + "learning_rate": 3.829853333333334e-05, + "loss": 2.055661163330078, + "step": 175600 + }, + { + "epoch": 23.426666666666666, + "grad_norm": 0.48749157786369324, + "learning_rate": 3.829186666666667e-05, + "loss": 2.053136749267578, + "step": 175700 + }, + { + "epoch": 23.44, + "grad_norm": 0.49499818682670593, + "learning_rate": 3.8285200000000004e-05, + "loss": 2.049785614013672, + "step": 175800 + }, + { + "epoch": 23.453333333333333, + "grad_norm": 0.4992135465145111, + "learning_rate": 3.827853333333333e-05, + "loss": 2.0580978393554688, + "step": 175900 + }, + { + "epoch": 23.466666666666665, + "grad_norm": 0.5279852747917175, + "learning_rate": 3.827186666666667e-05, + "loss": 2.056828918457031, + "step": 176000 + }, + { + "epoch": 23.48, + "grad_norm": 0.4881434440612793, + "learning_rate": 3.82652e-05, + "loss": 2.057747039794922, + "step": 176100 + }, + { + "epoch": 23.493333333333332, + "grad_norm": 0.4738701283931732, + "learning_rate": 3.825853333333333e-05, + "loss": 2.0571058654785155, + "step": 176200 + }, + { + "epoch": 23.506666666666668, + "grad_norm": 0.5095720887184143, + "learning_rate": 3.825186666666667e-05, + "loss": 2.0584869384765625, + "step": 176300 + }, + { + "epoch": 23.52, + "grad_norm": 0.5219035148620605, + "learning_rate": 3.824526666666667e-05, + "loss": 2.0586363220214845, + "step": 176400 + }, + { + "epoch": 23.533333333333335, + "grad_norm": 0.47829073667526245, + "learning_rate": 3.8238600000000004e-05, + "loss": 2.0578681945800783, + "step": 176500 + }, + { + "epoch": 23.546666666666667, + "grad_norm": 0.4869665205478668, + "learning_rate": 3.8231933333333336e-05, + "loss": 2.0592056274414063, + "step": 176600 + }, + { + "epoch": 23.56, + "grad_norm": 0.5007086396217346, + "learning_rate": 3.822526666666667e-05, + "loss": 2.0624826049804685, + "step": 176700 + }, + { + "epoch": 23.573333333333334, + "grad_norm": 0.5046160221099854, + "learning_rate": 3.821860000000001e-05, + "loss": 2.057146453857422, + "step": 176800 + }, + { + "epoch": 23.586666666666666, + "grad_norm": 0.5090702772140503, + "learning_rate": 3.821193333333333e-05, + "loss": 2.060751647949219, + "step": 176900 + }, + { + "epoch": 23.6, + "grad_norm": 0.47376617789268494, + "learning_rate": 3.8205266666666665e-05, + "loss": 2.061948089599609, + "step": 177000 + }, + { + "epoch": 23.613333333333333, + "grad_norm": 0.5011287331581116, + "learning_rate": 3.8198600000000004e-05, + "loss": 2.0626011657714844, + "step": 177100 + }, + { + "epoch": 23.626666666666665, + "grad_norm": 0.47504308819770813, + "learning_rate": 3.8191933333333336e-05, + "loss": 2.062792205810547, + "step": 177200 + }, + { + "epoch": 23.64, + "grad_norm": 0.4749816358089447, + "learning_rate": 3.818526666666667e-05, + "loss": 2.063485412597656, + "step": 177300 + }, + { + "epoch": 23.653333333333332, + "grad_norm": 0.48922663927078247, + "learning_rate": 3.81786e-05, + "loss": 2.065717926025391, + "step": 177400 + }, + { + "epoch": 23.666666666666668, + "grad_norm": 0.5128903985023499, + "learning_rate": 3.817193333333334e-05, + "loss": 2.0668560791015627, + "step": 177500 + }, + { + "epoch": 23.68, + "grad_norm": 0.508452832698822, + "learning_rate": 3.8165266666666665e-05, + "loss": 2.0685348510742188, + "step": 177600 + }, + { + "epoch": 23.693333333333335, + "grad_norm": 0.5150190591812134, + "learning_rate": 3.81586e-05, + "loss": 2.0641282653808593, + "step": 177700 + }, + { + "epoch": 23.706666666666667, + "grad_norm": 0.4919812083244324, + "learning_rate": 3.8151933333333337e-05, + "loss": 2.066805725097656, + "step": 177800 + }, + { + "epoch": 23.72, + "grad_norm": 0.48557278513908386, + "learning_rate": 3.814526666666667e-05, + "loss": 2.066239013671875, + "step": 177900 + }, + { + "epoch": 23.733333333333334, + "grad_norm": 0.500818133354187, + "learning_rate": 3.81386e-05, + "loss": 2.0668170166015627, + "step": 178000 + }, + { + "epoch": 23.746666666666666, + "grad_norm": 0.5056354999542236, + "learning_rate": 3.813193333333333e-05, + "loss": 2.067618103027344, + "step": 178100 + }, + { + "epoch": 23.76, + "grad_norm": 0.4854942858219147, + "learning_rate": 3.812526666666667e-05, + "loss": 2.0688438415527344, + "step": 178200 + }, + { + "epoch": 23.773333333333333, + "grad_norm": 0.48774439096450806, + "learning_rate": 3.8118600000000005e-05, + "loss": 2.072354278564453, + "step": 178300 + }, + { + "epoch": 23.786666666666665, + "grad_norm": 0.4946364462375641, + "learning_rate": 3.811193333333333e-05, + "loss": 2.0678961181640627, + "step": 178400 + }, + { + "epoch": 23.8, + "grad_norm": 0.4886922240257263, + "learning_rate": 3.810526666666667e-05, + "loss": 2.0691818237304687, + "step": 178500 + }, + { + "epoch": 23.813333333333333, + "grad_norm": 0.5024255514144897, + "learning_rate": 3.80986e-05, + "loss": 2.072510223388672, + "step": 178600 + }, + { + "epoch": 23.826666666666668, + "grad_norm": 0.4981136620044708, + "learning_rate": 3.8091933333333334e-05, + "loss": 2.067329864501953, + "step": 178700 + }, + { + "epoch": 23.84, + "grad_norm": 0.48290660977363586, + "learning_rate": 3.8085266666666666e-05, + "loss": 2.0694883728027342, + "step": 178800 + }, + { + "epoch": 23.85333333333333, + "grad_norm": 0.49647679924964905, + "learning_rate": 3.8078600000000005e-05, + "loss": 2.068336639404297, + "step": 178900 + }, + { + "epoch": 23.866666666666667, + "grad_norm": 0.49168041348457336, + "learning_rate": 3.807193333333334e-05, + "loss": 2.0738255310058595, + "step": 179000 + }, + { + "epoch": 23.88, + "grad_norm": 0.49252060055732727, + "learning_rate": 3.806526666666666e-05, + "loss": 2.0729522705078125, + "step": 179100 + }, + { + "epoch": 23.893333333333334, + "grad_norm": 0.49251434206962585, + "learning_rate": 3.80586e-05, + "loss": 2.071816711425781, + "step": 179200 + }, + { + "epoch": 23.906666666666666, + "grad_norm": 0.506790280342102, + "learning_rate": 3.8051933333333334e-05, + "loss": 2.0729002380371093, + "step": 179300 + }, + { + "epoch": 23.92, + "grad_norm": 0.4773724377155304, + "learning_rate": 3.8045266666666666e-05, + "loss": 2.077678680419922, + "step": 179400 + }, + { + "epoch": 23.933333333333334, + "grad_norm": 0.5092328786849976, + "learning_rate": 3.80386e-05, + "loss": 2.07469482421875, + "step": 179500 + }, + { + "epoch": 23.946666666666665, + "grad_norm": 0.4978293776512146, + "learning_rate": 3.803193333333334e-05, + "loss": 2.07491455078125, + "step": 179600 + }, + { + "epoch": 23.96, + "grad_norm": 0.508801281452179, + "learning_rate": 3.802526666666667e-05, + "loss": 2.0768801879882814, + "step": 179700 + }, + { + "epoch": 23.973333333333333, + "grad_norm": 0.4916593134403229, + "learning_rate": 3.80186e-05, + "loss": 2.0758741760253905, + "step": 179800 + }, + { + "epoch": 23.986666666666668, + "grad_norm": 0.5212649703025818, + "learning_rate": 3.8011933333333334e-05, + "loss": 2.0771376037597657, + "step": 179900 + }, + { + "epoch": 24.0, + "grad_norm": 0.4899154007434845, + "learning_rate": 3.800526666666667e-05, + "loss": 2.076003112792969, + "step": 180000 + }, + { + "epoch": 24.013333333333332, + "grad_norm": 0.501743733882904, + "learning_rate": 3.7998666666666666e-05, + "loss": 2.003984069824219, + "step": 180100 + }, + { + "epoch": 24.026666666666667, + "grad_norm": 0.5196168422698975, + "learning_rate": 3.7992e-05, + "loss": 2.0016387939453124, + "step": 180200 + }, + { + "epoch": 24.04, + "grad_norm": 0.5263530015945435, + "learning_rate": 3.798533333333334e-05, + "loss": 2.0039300537109375, + "step": 180300 + }, + { + "epoch": 24.053333333333335, + "grad_norm": 0.4923747777938843, + "learning_rate": 3.797866666666667e-05, + "loss": 2.005165252685547, + "step": 180400 + }, + { + "epoch": 24.066666666666666, + "grad_norm": 0.5033460259437561, + "learning_rate": 3.7972e-05, + "loss": 2.006126708984375, + "step": 180500 + }, + { + "epoch": 24.08, + "grad_norm": 0.5112701058387756, + "learning_rate": 3.7965333333333334e-05, + "loss": 2.0073692321777346, + "step": 180600 + }, + { + "epoch": 24.093333333333334, + "grad_norm": 0.511628270149231, + "learning_rate": 3.795866666666667e-05, + "loss": 2.0070504760742187, + "step": 180700 + }, + { + "epoch": 24.106666666666666, + "grad_norm": 0.5259645581245422, + "learning_rate": 3.7952000000000005e-05, + "loss": 2.005118865966797, + "step": 180800 + }, + { + "epoch": 24.12, + "grad_norm": 0.48191338777542114, + "learning_rate": 3.794533333333333e-05, + "loss": 2.0112799072265624, + "step": 180900 + }, + { + "epoch": 24.133333333333333, + "grad_norm": 0.5414926409721375, + "learning_rate": 3.793866666666667e-05, + "loss": 2.0131875610351564, + "step": 181000 + }, + { + "epoch": 24.14666666666667, + "grad_norm": 0.5131890773773193, + "learning_rate": 3.7932e-05, + "loss": 2.0128208923339845, + "step": 181100 + }, + { + "epoch": 24.16, + "grad_norm": 0.486336350440979, + "learning_rate": 3.7925333333333334e-05, + "loss": 2.017211151123047, + "step": 181200 + }, + { + "epoch": 24.173333333333332, + "grad_norm": 0.49979206919670105, + "learning_rate": 3.7918666666666667e-05, + "loss": 2.013517150878906, + "step": 181300 + }, + { + "epoch": 24.186666666666667, + "grad_norm": 0.508499801158905, + "learning_rate": 3.7912000000000006e-05, + "loss": 2.0146775817871094, + "step": 181400 + }, + { + "epoch": 24.2, + "grad_norm": 0.5656309127807617, + "learning_rate": 3.790533333333334e-05, + "loss": 2.017547607421875, + "step": 181500 + }, + { + "epoch": 24.213333333333335, + "grad_norm": 0.5219641327857971, + "learning_rate": 3.789866666666667e-05, + "loss": 2.0210311889648436, + "step": 181600 + }, + { + "epoch": 24.226666666666667, + "grad_norm": 0.5194352269172668, + "learning_rate": 3.7892e-05, + "loss": 2.016371612548828, + "step": 181700 + }, + { + "epoch": 24.24, + "grad_norm": 0.5241196155548096, + "learning_rate": 3.7885333333333335e-05, + "loss": 2.022900390625, + "step": 181800 + }, + { + "epoch": 24.253333333333334, + "grad_norm": 0.48599502444267273, + "learning_rate": 3.787866666666667e-05, + "loss": 2.0237261962890627, + "step": 181900 + }, + { + "epoch": 24.266666666666666, + "grad_norm": 0.5147618055343628, + "learning_rate": 3.7872e-05, + "loss": 2.023406219482422, + "step": 182000 + }, + { + "epoch": 24.28, + "grad_norm": 0.5101783275604248, + "learning_rate": 3.786533333333334e-05, + "loss": 2.0179656982421874, + "step": 182100 + }, + { + "epoch": 24.293333333333333, + "grad_norm": 0.505097508430481, + "learning_rate": 3.785873333333334e-05, + "loss": 2.0241987609863283, + "step": 182200 + }, + { + "epoch": 24.306666666666665, + "grad_norm": 0.5323469638824463, + "learning_rate": 3.785206666666667e-05, + "loss": 2.0228041076660155, + "step": 182300 + }, + { + "epoch": 24.32, + "grad_norm": 0.5330120325088501, + "learning_rate": 3.78454e-05, + "loss": 2.0276548767089846, + "step": 182400 + }, + { + "epoch": 24.333333333333332, + "grad_norm": 0.5185723900794983, + "learning_rate": 3.7838733333333334e-05, + "loss": 2.027704772949219, + "step": 182500 + }, + { + "epoch": 24.346666666666668, + "grad_norm": 0.5001394152641296, + "learning_rate": 3.783206666666667e-05, + "loss": 2.028656463623047, + "step": 182600 + }, + { + "epoch": 24.36, + "grad_norm": 0.5111181139945984, + "learning_rate": 3.78254e-05, + "loss": 2.0222459411621094, + "step": 182700 + }, + { + "epoch": 24.373333333333335, + "grad_norm": 0.5283573865890503, + "learning_rate": 3.781873333333333e-05, + "loss": 2.025753631591797, + "step": 182800 + }, + { + "epoch": 24.386666666666667, + "grad_norm": 0.5587430000305176, + "learning_rate": 3.781206666666667e-05, + "loss": 2.0282719421386717, + "step": 182900 + }, + { + "epoch": 24.4, + "grad_norm": 0.5276029109954834, + "learning_rate": 3.78054e-05, + "loss": 2.0236598205566407, + "step": 183000 + }, + { + "epoch": 24.413333333333334, + "grad_norm": 0.517819881439209, + "learning_rate": 3.7798733333333335e-05, + "loss": 2.0305661010742186, + "step": 183100 + }, + { + "epoch": 24.426666666666666, + "grad_norm": 0.5286267995834351, + "learning_rate": 3.779206666666667e-05, + "loss": 2.030503387451172, + "step": 183200 + }, + { + "epoch": 24.44, + "grad_norm": 0.5311276912689209, + "learning_rate": 3.7785400000000006e-05, + "loss": 2.0295208740234374, + "step": 183300 + }, + { + "epoch": 24.453333333333333, + "grad_norm": 0.5239437222480774, + "learning_rate": 3.777873333333333e-05, + "loss": 2.032499237060547, + "step": 183400 + }, + { + "epoch": 24.466666666666665, + "grad_norm": 0.5115417242050171, + "learning_rate": 3.7772066666666664e-05, + "loss": 2.0358099365234374, + "step": 183500 + }, + { + "epoch": 24.48, + "grad_norm": 0.5413856506347656, + "learning_rate": 3.77654e-05, + "loss": 2.033902130126953, + "step": 183600 + }, + { + "epoch": 24.493333333333332, + "grad_norm": 0.5350323915481567, + "learning_rate": 3.7758733333333335e-05, + "loss": 2.03102783203125, + "step": 183700 + }, + { + "epoch": 24.506666666666668, + "grad_norm": 0.5200849175453186, + "learning_rate": 3.775206666666667e-05, + "loss": 2.0346524047851564, + "step": 183800 + }, + { + "epoch": 24.52, + "grad_norm": 0.5102962255477905, + "learning_rate": 3.7745400000000006e-05, + "loss": 2.03560791015625, + "step": 183900 + }, + { + "epoch": 24.533333333333335, + "grad_norm": 0.5746884346008301, + "learning_rate": 3.773873333333334e-05, + "loss": 2.0360655212402343, + "step": 184000 + }, + { + "epoch": 24.546666666666667, + "grad_norm": 0.5304731726646423, + "learning_rate": 3.773206666666667e-05, + "loss": 2.0354969787597654, + "step": 184100 + }, + { + "epoch": 24.56, + "grad_norm": 0.5169298648834229, + "learning_rate": 3.772546666666667e-05, + "loss": 2.0382408142089843, + "step": 184200 + }, + { + "epoch": 24.573333333333334, + "grad_norm": 0.5369707345962524, + "learning_rate": 3.77188e-05, + "loss": 2.039522399902344, + "step": 184300 + }, + { + "epoch": 24.586666666666666, + "grad_norm": 0.4798973798751831, + "learning_rate": 3.7712133333333334e-05, + "loss": 2.0367251586914064, + "step": 184400 + }, + { + "epoch": 24.6, + "grad_norm": 0.5089485049247742, + "learning_rate": 3.770546666666667e-05, + "loss": 2.03658203125, + "step": 184500 + }, + { + "epoch": 24.613333333333333, + "grad_norm": 0.5315452814102173, + "learning_rate": 3.76988e-05, + "loss": 2.0440740966796875, + "step": 184600 + }, + { + "epoch": 24.626666666666665, + "grad_norm": 0.5431042313575745, + "learning_rate": 3.769213333333334e-05, + "loss": 2.0387681579589843, + "step": 184700 + }, + { + "epoch": 24.64, + "grad_norm": 0.5244868993759155, + "learning_rate": 3.768546666666667e-05, + "loss": 2.0414497375488283, + "step": 184800 + }, + { + "epoch": 24.653333333333332, + "grad_norm": 0.5108836889266968, + "learning_rate": 3.76788e-05, + "loss": 2.0410122680664062, + "step": 184900 + }, + { + "epoch": 24.666666666666668, + "grad_norm": 0.5050901770591736, + "learning_rate": 3.7672133333333335e-05, + "loss": 2.041776580810547, + "step": 185000 + }, + { + "epoch": 24.68, + "grad_norm": 0.5396665930747986, + "learning_rate": 3.7665466666666674e-05, + "loss": 2.0429249572753907, + "step": 185100 + }, + { + "epoch": 24.693333333333335, + "grad_norm": 0.5454257726669312, + "learning_rate": 3.76588e-05, + "loss": 2.044694671630859, + "step": 185200 + }, + { + "epoch": 24.706666666666667, + "grad_norm": 0.5190442204475403, + "learning_rate": 3.765213333333333e-05, + "loss": 2.04460205078125, + "step": 185300 + }, + { + "epoch": 24.72, + "grad_norm": 0.5234954953193665, + "learning_rate": 3.764546666666667e-05, + "loss": 2.0423243713378905, + "step": 185400 + }, + { + "epoch": 24.733333333333334, + "grad_norm": 0.5175752639770508, + "learning_rate": 3.76388e-05, + "loss": 2.043539276123047, + "step": 185500 + }, + { + "epoch": 24.746666666666666, + "grad_norm": 0.519957423210144, + "learning_rate": 3.7632133333333335e-05, + "loss": 2.0451559448242187, + "step": 185600 + }, + { + "epoch": 24.76, + "grad_norm": 0.49500152468681335, + "learning_rate": 3.762546666666667e-05, + "loss": 2.043379211425781, + "step": 185700 + }, + { + "epoch": 24.773333333333333, + "grad_norm": 0.5160672664642334, + "learning_rate": 3.7618800000000006e-05, + "loss": 2.046691589355469, + "step": 185800 + }, + { + "epoch": 24.786666666666665, + "grad_norm": 0.5067774057388306, + "learning_rate": 3.761213333333333e-05, + "loss": 2.046448211669922, + "step": 185900 + }, + { + "epoch": 24.8, + "grad_norm": 0.537140429019928, + "learning_rate": 3.7605466666666664e-05, + "loss": 2.045804901123047, + "step": 186000 + }, + { + "epoch": 24.813333333333333, + "grad_norm": 0.5184574127197266, + "learning_rate": 3.75988e-05, + "loss": 2.0455780029296875, + "step": 186100 + }, + { + "epoch": 24.826666666666668, + "grad_norm": 0.5265442728996277, + "learning_rate": 3.7592133333333336e-05, + "loss": 2.0486622619628907, + "step": 186200 + }, + { + "epoch": 24.84, + "grad_norm": 0.5227593183517456, + "learning_rate": 3.758546666666667e-05, + "loss": 2.0465821838378906, + "step": 186300 + }, + { + "epoch": 24.85333333333333, + "grad_norm": 0.5115875005722046, + "learning_rate": 3.75788e-05, + "loss": 2.048692321777344, + "step": 186400 + }, + { + "epoch": 24.866666666666667, + "grad_norm": 0.5175586342811584, + "learning_rate": 3.75722e-05, + "loss": 2.04896240234375, + "step": 186500 + }, + { + "epoch": 24.88, + "grad_norm": 0.523460865020752, + "learning_rate": 3.756553333333334e-05, + "loss": 2.0502452087402343, + "step": 186600 + }, + { + "epoch": 24.893333333333334, + "grad_norm": 0.5361924767494202, + "learning_rate": 3.755886666666667e-05, + "loss": 2.0494508361816406, + "step": 186700 + }, + { + "epoch": 24.906666666666666, + "grad_norm": 0.5198230743408203, + "learning_rate": 3.75522e-05, + "loss": 2.0510104370117186, + "step": 186800 + }, + { + "epoch": 24.92, + "grad_norm": 0.5249742269515991, + "learning_rate": 3.7545533333333335e-05, + "loss": 2.05044189453125, + "step": 186900 + }, + { + "epoch": 24.933333333333334, + "grad_norm": 0.5150473117828369, + "learning_rate": 3.753886666666667e-05, + "loss": 2.0530665588378905, + "step": 187000 + }, + { + "epoch": 24.946666666666665, + "grad_norm": 0.5269672870635986, + "learning_rate": 3.75322e-05, + "loss": 2.052723236083984, + "step": 187100 + }, + { + "epoch": 24.96, + "grad_norm": 0.498569518327713, + "learning_rate": 3.752553333333333e-05, + "loss": 2.053250579833984, + "step": 187200 + }, + { + "epoch": 24.973333333333333, + "grad_norm": 0.5326972007751465, + "learning_rate": 3.751886666666667e-05, + "loss": 2.0500621032714843, + "step": 187300 + }, + { + "epoch": 24.986666666666668, + "grad_norm": 0.5814267992973328, + "learning_rate": 3.75122e-05, + "loss": 2.0546443176269533, + "step": 187400 + }, + { + "epoch": 25.0, + "grad_norm": 0.5015130043029785, + "learning_rate": 3.7505533333333335e-05, + "loss": 2.0553138732910154, + "step": 187500 + }, + { + "epoch": 25.013333333333332, + "grad_norm": 0.5198807120323181, + "learning_rate": 3.749886666666667e-05, + "loss": 1.9766946411132813, + "step": 187600 + }, + { + "epoch": 25.026666666666667, + "grad_norm": 0.5337755680084229, + "learning_rate": 3.74922e-05, + "loss": 1.9777664184570312, + "step": 187700 + }, + { + "epoch": 25.04, + "grad_norm": 0.5432220697402954, + "learning_rate": 3.748553333333333e-05, + "loss": 1.9787986755371094, + "step": 187800 + }, + { + "epoch": 25.053333333333335, + "grad_norm": 0.5276835560798645, + "learning_rate": 3.7478866666666664e-05, + "loss": 1.9827880859375, + "step": 187900 + }, + { + "epoch": 25.066666666666666, + "grad_norm": 0.5256075263023376, + "learning_rate": 3.7472200000000004e-05, + "loss": 1.9845838928222657, + "step": 188000 + }, + { + "epoch": 25.08, + "grad_norm": 0.521128237247467, + "learning_rate": 3.7465533333333336e-05, + "loss": 1.984072265625, + "step": 188100 + }, + { + "epoch": 25.093333333333334, + "grad_norm": 0.7402787208557129, + "learning_rate": 3.745886666666667e-05, + "loss": 1.9819233703613282, + "step": 188200 + }, + { + "epoch": 25.106666666666666, + "grad_norm": 0.5602257251739502, + "learning_rate": 3.745220000000001e-05, + "loss": 1.9857809448242187, + "step": 188300 + }, + { + "epoch": 25.12, + "grad_norm": 0.5449258685112, + "learning_rate": 3.744553333333333e-05, + "loss": 1.9836058044433593, + "step": 188400 + }, + { + "epoch": 25.133333333333333, + "grad_norm": 0.5279524326324463, + "learning_rate": 3.7438866666666665e-05, + "loss": 1.9868746948242189, + "step": 188500 + }, + { + "epoch": 25.14666666666667, + "grad_norm": 0.5134731531143188, + "learning_rate": 3.7432200000000004e-05, + "loss": 1.984371337890625, + "step": 188600 + }, + { + "epoch": 25.16, + "grad_norm": 0.534136950969696, + "learning_rate": 3.7425533333333336e-05, + "loss": 1.990037841796875, + "step": 188700 + }, + { + "epoch": 25.173333333333332, + "grad_norm": 0.5440365672111511, + "learning_rate": 3.741886666666667e-05, + "loss": 1.9899058532714844, + "step": 188800 + }, + { + "epoch": 25.186666666666667, + "grad_norm": 0.5396292209625244, + "learning_rate": 3.741226666666667e-05, + "loss": 1.9931028747558595, + "step": 188900 + }, + { + "epoch": 25.2, + "grad_norm": 0.5376026034355164, + "learning_rate": 3.74056e-05, + "loss": 1.99557373046875, + "step": 189000 + }, + { + "epoch": 25.213333333333335, + "grad_norm": 0.5177650451660156, + "learning_rate": 3.739893333333334e-05, + "loss": 1.9946913146972656, + "step": 189100 + }, + { + "epoch": 25.226666666666667, + "grad_norm": 0.5463927984237671, + "learning_rate": 3.739226666666667e-05, + "loss": 1.993941192626953, + "step": 189200 + }, + { + "epoch": 25.24, + "grad_norm": 0.5426744818687439, + "learning_rate": 3.73856e-05, + "loss": 1.9958428955078125, + "step": 189300 + }, + { + "epoch": 25.253333333333334, + "grad_norm": 0.5297708511352539, + "learning_rate": 3.7378933333333336e-05, + "loss": 1.995465087890625, + "step": 189400 + }, + { + "epoch": 25.266666666666666, + "grad_norm": 0.5523133873939514, + "learning_rate": 3.737226666666667e-05, + "loss": 2.0024423217773437, + "step": 189500 + }, + { + "epoch": 25.28, + "grad_norm": 0.551189124584198, + "learning_rate": 3.73656e-05, + "loss": 1.996693115234375, + "step": 189600 + }, + { + "epoch": 25.293333333333333, + "grad_norm": 0.5185670852661133, + "learning_rate": 3.735893333333333e-05, + "loss": 1.9998982238769532, + "step": 189700 + }, + { + "epoch": 25.306666666666665, + "grad_norm": 0.5398461818695068, + "learning_rate": 3.735226666666667e-05, + "loss": 1.9971189880371094, + "step": 189800 + }, + { + "epoch": 25.32, + "grad_norm": 0.5354723930358887, + "learning_rate": 3.7345600000000004e-05, + "loss": 1.9997674560546874, + "step": 189900 + }, + { + "epoch": 25.333333333333332, + "grad_norm": 0.5407664775848389, + "learning_rate": 3.7338933333333336e-05, + "loss": 1.9974674987792969, + "step": 190000 + }, + { + "epoch": 25.346666666666668, + "grad_norm": 0.5344270467758179, + "learning_rate": 3.733226666666667e-05, + "loss": 2.003179473876953, + "step": 190100 + }, + { + "epoch": 25.36, + "grad_norm": 0.5190737247467041, + "learning_rate": 3.73256e-05, + "loss": 2.006910552978516, + "step": 190200 + }, + { + "epoch": 25.373333333333335, + "grad_norm": 0.5444039106369019, + "learning_rate": 3.731893333333333e-05, + "loss": 2.0056292724609377, + "step": 190300 + }, + { + "epoch": 25.386666666666667, + "grad_norm": 0.5827769041061401, + "learning_rate": 3.7312266666666665e-05, + "loss": 2.003057098388672, + "step": 190400 + }, + { + "epoch": 25.4, + "grad_norm": 0.5491002202033997, + "learning_rate": 3.7305600000000004e-05, + "loss": 2.005493469238281, + "step": 190500 + }, + { + "epoch": 25.413333333333334, + "grad_norm": 0.5325082540512085, + "learning_rate": 3.7298933333333336e-05, + "loss": 2.0034739685058596, + "step": 190600 + }, + { + "epoch": 25.426666666666666, + "grad_norm": 0.5534201860427856, + "learning_rate": 3.729226666666667e-05, + "loss": 2.005567169189453, + "step": 190700 + }, + { + "epoch": 25.44, + "grad_norm": 0.5325811505317688, + "learning_rate": 3.72856e-05, + "loss": 2.004087371826172, + "step": 190800 + }, + { + "epoch": 25.453333333333333, + "grad_norm": 0.5336616039276123, + "learning_rate": 3.727893333333333e-05, + "loss": 2.0060054016113282, + "step": 190900 + }, + { + "epoch": 25.466666666666665, + "grad_norm": 0.550896406173706, + "learning_rate": 3.7272266666666665e-05, + "loss": 2.0102296447753907, + "step": 191000 + }, + { + "epoch": 25.48, + "grad_norm": 0.5317057967185974, + "learning_rate": 3.72656e-05, + "loss": 2.0113670349121096, + "step": 191100 + }, + { + "epoch": 25.493333333333332, + "grad_norm": 0.5150067806243896, + "learning_rate": 3.725893333333334e-05, + "loss": 2.013133697509766, + "step": 191200 + }, + { + "epoch": 25.506666666666668, + "grad_norm": 0.5351247787475586, + "learning_rate": 3.725226666666667e-05, + "loss": 2.010963134765625, + "step": 191300 + }, + { + "epoch": 25.52, + "grad_norm": 0.5194895267486572, + "learning_rate": 3.724566666666667e-05, + "loss": 2.012650451660156, + "step": 191400 + }, + { + "epoch": 25.533333333333335, + "grad_norm": 0.539284884929657, + "learning_rate": 3.7239e-05, + "loss": 2.010073394775391, + "step": 191500 + }, + { + "epoch": 25.546666666666667, + "grad_norm": 0.5227241516113281, + "learning_rate": 3.723233333333333e-05, + "loss": 2.011913299560547, + "step": 191600 + }, + { + "epoch": 25.56, + "grad_norm": 0.5342681407928467, + "learning_rate": 3.722566666666667e-05, + "loss": 2.012406921386719, + "step": 191700 + }, + { + "epoch": 25.573333333333334, + "grad_norm": 0.5252745151519775, + "learning_rate": 3.7219000000000004e-05, + "loss": 2.011879577636719, + "step": 191800 + }, + { + "epoch": 25.586666666666666, + "grad_norm": 0.5306975245475769, + "learning_rate": 3.721233333333333e-05, + "loss": 2.0142337036132814, + "step": 191900 + }, + { + "epoch": 25.6, + "grad_norm": 0.5551440119743347, + "learning_rate": 3.720566666666667e-05, + "loss": 2.011077880859375, + "step": 192000 + }, + { + "epoch": 25.613333333333333, + "grad_norm": 0.5400145053863525, + "learning_rate": 3.7199e-05, + "loss": 2.012953643798828, + "step": 192100 + }, + { + "epoch": 25.626666666666665, + "grad_norm": 0.5293111205101013, + "learning_rate": 3.719233333333333e-05, + "loss": 2.0181004333496095, + "step": 192200 + }, + { + "epoch": 25.64, + "grad_norm": 0.5242292284965515, + "learning_rate": 3.7185666666666665e-05, + "loss": 2.017105712890625, + "step": 192300 + }, + { + "epoch": 25.653333333333332, + "grad_norm": 0.5292710065841675, + "learning_rate": 3.7179000000000004e-05, + "loss": 2.0163299560546877, + "step": 192400 + }, + { + "epoch": 25.666666666666668, + "grad_norm": 0.5424890518188477, + "learning_rate": 3.717233333333334e-05, + "loss": 2.015196533203125, + "step": 192500 + }, + { + "epoch": 25.68, + "grad_norm": 0.5193257927894592, + "learning_rate": 3.716566666666667e-05, + "loss": 2.0220237731933595, + "step": 192600 + }, + { + "epoch": 25.693333333333335, + "grad_norm": 0.5442838072776794, + "learning_rate": 3.7159e-05, + "loss": 2.0192355346679687, + "step": 192700 + }, + { + "epoch": 25.706666666666667, + "grad_norm": 0.5463152527809143, + "learning_rate": 3.7152333333333333e-05, + "loss": 2.0164019775390627, + "step": 192800 + }, + { + "epoch": 25.72, + "grad_norm": 0.5344257354736328, + "learning_rate": 3.7145666666666666e-05, + "loss": 2.0162734985351562, + "step": 192900 + }, + { + "epoch": 25.733333333333334, + "grad_norm": 0.5351117253303528, + "learning_rate": 3.7139000000000005e-05, + "loss": 2.023134460449219, + "step": 193000 + }, + { + "epoch": 25.746666666666666, + "grad_norm": 0.5418599843978882, + "learning_rate": 3.713233333333334e-05, + "loss": 2.020071563720703, + "step": 193100 + }, + { + "epoch": 25.76, + "grad_norm": 0.5406211018562317, + "learning_rate": 3.712566666666667e-05, + "loss": 2.0211688232421876, + "step": 193200 + }, + { + "epoch": 25.773333333333333, + "grad_norm": 0.5392265915870667, + "learning_rate": 3.7119e-05, + "loss": 2.02107177734375, + "step": 193300 + }, + { + "epoch": 25.786666666666665, + "grad_norm": 0.5478586554527283, + "learning_rate": 3.71124e-05, + "loss": 2.0197589111328127, + "step": 193400 + }, + { + "epoch": 25.8, + "grad_norm": 0.5384021401405334, + "learning_rate": 3.710573333333334e-05, + "loss": 2.0261798095703125, + "step": 193500 + }, + { + "epoch": 25.813333333333333, + "grad_norm": 0.5637001991271973, + "learning_rate": 3.709906666666667e-05, + "loss": 2.0208526611328126, + "step": 193600 + }, + { + "epoch": 25.826666666666668, + "grad_norm": 0.5373884439468384, + "learning_rate": 3.70924e-05, + "loss": 2.0243865966796877, + "step": 193700 + }, + { + "epoch": 25.84, + "grad_norm": 0.5258835554122925, + "learning_rate": 3.7085733333333336e-05, + "loss": 2.025778961181641, + "step": 193800 + }, + { + "epoch": 25.85333333333333, + "grad_norm": 0.5321053862571716, + "learning_rate": 3.707906666666667e-05, + "loss": 2.0245960998535155, + "step": 193900 + }, + { + "epoch": 25.866666666666667, + "grad_norm": 0.5242984294891357, + "learning_rate": 3.70724e-05, + "loss": 2.027090301513672, + "step": 194000 + }, + { + "epoch": 25.88, + "grad_norm": 0.5495437979698181, + "learning_rate": 3.706573333333333e-05, + "loss": 2.0237530517578124, + "step": 194100 + }, + { + "epoch": 25.893333333333334, + "grad_norm": 0.5291945338249207, + "learning_rate": 3.705906666666667e-05, + "loss": 2.0295460510253904, + "step": 194200 + }, + { + "epoch": 25.906666666666666, + "grad_norm": 0.5402800440788269, + "learning_rate": 3.7052400000000005e-05, + "loss": 2.0260325622558595, + "step": 194300 + }, + { + "epoch": 25.92, + "grad_norm": 0.5184854865074158, + "learning_rate": 3.704573333333334e-05, + "loss": 2.0257765197753907, + "step": 194400 + }, + { + "epoch": 25.933333333333334, + "grad_norm": 0.53758704662323, + "learning_rate": 3.703906666666667e-05, + "loss": 2.0274493408203127, + "step": 194500 + }, + { + "epoch": 25.946666666666665, + "grad_norm": 0.5527028441429138, + "learning_rate": 3.70324e-05, + "loss": 2.0257112121582033, + "step": 194600 + }, + { + "epoch": 25.96, + "grad_norm": 0.5566267967224121, + "learning_rate": 3.7025733333333334e-05, + "loss": 2.026977081298828, + "step": 194700 + }, + { + "epoch": 25.973333333333333, + "grad_norm": 0.5336237549781799, + "learning_rate": 3.7019066666666666e-05, + "loss": 2.028018035888672, + "step": 194800 + }, + { + "epoch": 25.986666666666668, + "grad_norm": 0.5185402631759644, + "learning_rate": 3.7012400000000005e-05, + "loss": 2.0281407165527345, + "step": 194900 + }, + { + "epoch": 26.0, + "grad_norm": 0.5450587272644043, + "learning_rate": 3.700573333333334e-05, + "loss": 2.0281640625, + "step": 195000 + }, + { + "epoch": 26.013333333333332, + "grad_norm": 0.541812002658844, + "learning_rate": 3.699906666666667e-05, + "loss": 1.957196044921875, + "step": 195100 + }, + { + "epoch": 26.026666666666667, + "grad_norm": 0.5567891597747803, + "learning_rate": 3.69924e-05, + "loss": 1.9547212219238281, + "step": 195200 + }, + { + "epoch": 26.04, + "grad_norm": 0.5365836024284363, + "learning_rate": 3.6985733333333334e-05, + "loss": 1.9568002319335938, + "step": 195300 + }, + { + "epoch": 26.053333333333335, + "grad_norm": 0.5200800895690918, + "learning_rate": 3.697913333333334e-05, + "loss": 1.9555859375, + "step": 195400 + }, + { + "epoch": 26.066666666666666, + "grad_norm": 0.5740585327148438, + "learning_rate": 3.6972466666666665e-05, + "loss": 1.9540396118164063, + "step": 195500 + }, + { + "epoch": 26.08, + "grad_norm": 0.5473860502243042, + "learning_rate": 3.69658e-05, + "loss": 1.9564674377441407, + "step": 195600 + }, + { + "epoch": 26.093333333333334, + "grad_norm": 0.5414859652519226, + "learning_rate": 3.695913333333334e-05, + "loss": 1.9615504455566406, + "step": 195700 + }, + { + "epoch": 26.106666666666666, + "grad_norm": 0.5546607375144958, + "learning_rate": 3.695246666666667e-05, + "loss": 1.9621275329589845, + "step": 195800 + }, + { + "epoch": 26.12, + "grad_norm": 0.5604114532470703, + "learning_rate": 3.69458e-05, + "loss": 1.958752899169922, + "step": 195900 + }, + { + "epoch": 26.133333333333333, + "grad_norm": 0.5639984607696533, + "learning_rate": 3.6939133333333334e-05, + "loss": 1.9659051513671875, + "step": 196000 + }, + { + "epoch": 26.14666666666667, + "grad_norm": 0.552521288394928, + "learning_rate": 3.693246666666667e-05, + "loss": 1.9680455017089844, + "step": 196100 + }, + { + "epoch": 26.16, + "grad_norm": 0.5784633755683899, + "learning_rate": 3.69258e-05, + "loss": 1.9671054077148438, + "step": 196200 + }, + { + "epoch": 26.173333333333332, + "grad_norm": 0.558786928653717, + "learning_rate": 3.691913333333333e-05, + "loss": 1.9637820434570312, + "step": 196300 + }, + { + "epoch": 26.186666666666667, + "grad_norm": 0.577648401260376, + "learning_rate": 3.691246666666667e-05, + "loss": 1.9695333862304687, + "step": 196400 + }, + { + "epoch": 26.2, + "grad_norm": 0.5630086064338684, + "learning_rate": 3.69058e-05, + "loss": 1.9683534240722655, + "step": 196500 + }, + { + "epoch": 26.213333333333335, + "grad_norm": 0.5924582481384277, + "learning_rate": 3.6899133333333334e-05, + "loss": 1.9684716796875, + "step": 196600 + }, + { + "epoch": 26.226666666666667, + "grad_norm": 0.5777826309204102, + "learning_rate": 3.689246666666667e-05, + "loss": 1.9659332275390624, + "step": 196700 + }, + { + "epoch": 26.24, + "grad_norm": 0.5597606301307678, + "learning_rate": 3.6885800000000005e-05, + "loss": 1.9684400939941407, + "step": 196800 + }, + { + "epoch": 26.253333333333334, + "grad_norm": 0.5973007082939148, + "learning_rate": 3.687913333333334e-05, + "loss": 1.968690185546875, + "step": 196900 + }, + { + "epoch": 26.266666666666666, + "grad_norm": 0.5487164855003357, + "learning_rate": 3.687246666666666e-05, + "loss": 1.9721401977539061, + "step": 197000 + }, + { + "epoch": 26.28, + "grad_norm": 0.5761642456054688, + "learning_rate": 3.68658e-05, + "loss": 1.9738571166992187, + "step": 197100 + }, + { + "epoch": 26.293333333333333, + "grad_norm": 0.5579527020454407, + "learning_rate": 3.6859133333333334e-05, + "loss": 1.9721127319335938, + "step": 197200 + }, + { + "epoch": 26.306666666666665, + "grad_norm": 0.5521603226661682, + "learning_rate": 3.6852466666666667e-05, + "loss": 1.9772552490234374, + "step": 197300 + }, + { + "epoch": 26.32, + "grad_norm": 0.5767320394515991, + "learning_rate": 3.6845800000000006e-05, + "loss": 1.975111846923828, + "step": 197400 + }, + { + "epoch": 26.333333333333332, + "grad_norm": 0.568122148513794, + "learning_rate": 3.6839200000000005e-05, + "loss": 1.9748057556152343, + "step": 197500 + }, + { + "epoch": 26.346666666666668, + "grad_norm": 0.54569411277771, + "learning_rate": 3.683253333333334e-05, + "loss": 1.975630340576172, + "step": 197600 + }, + { + "epoch": 26.36, + "grad_norm": 0.5550498962402344, + "learning_rate": 3.682586666666667e-05, + "loss": 1.976104736328125, + "step": 197700 + }, + { + "epoch": 26.373333333333335, + "grad_norm": 0.5575002431869507, + "learning_rate": 3.68192e-05, + "loss": 1.979742431640625, + "step": 197800 + }, + { + "epoch": 26.386666666666667, + "grad_norm": 0.5659462809562683, + "learning_rate": 3.681253333333334e-05, + "loss": 1.982191925048828, + "step": 197900 + }, + { + "epoch": 26.4, + "grad_norm": 0.5659615397453308, + "learning_rate": 3.6805866666666666e-05, + "loss": 1.979058837890625, + "step": 198000 + }, + { + "epoch": 26.413333333333334, + "grad_norm": 0.5449748039245605, + "learning_rate": 3.67992e-05, + "loss": 1.9774148559570313, + "step": 198100 + }, + { + "epoch": 26.426666666666666, + "grad_norm": 0.578723669052124, + "learning_rate": 3.679253333333334e-05, + "loss": 1.9768846130371094, + "step": 198200 + }, + { + "epoch": 26.44, + "grad_norm": 0.5675528645515442, + "learning_rate": 3.678586666666667e-05, + "loss": 1.979735107421875, + "step": 198300 + }, + { + "epoch": 26.453333333333333, + "grad_norm": 0.5619545578956604, + "learning_rate": 3.67792e-05, + "loss": 1.9831944274902344, + "step": 198400 + }, + { + "epoch": 26.466666666666665, + "grad_norm": 0.5641692876815796, + "learning_rate": 3.6772533333333334e-05, + "loss": 1.9841481018066407, + "step": 198500 + }, + { + "epoch": 26.48, + "grad_norm": 0.569416344165802, + "learning_rate": 3.676586666666667e-05, + "loss": 1.981822509765625, + "step": 198600 + }, + { + "epoch": 26.493333333333332, + "grad_norm": 0.583523690700531, + "learning_rate": 3.67592e-05, + "loss": 1.982010955810547, + "step": 198700 + }, + { + "epoch": 26.506666666666668, + "grad_norm": 0.5771437883377075, + "learning_rate": 3.675253333333333e-05, + "loss": 1.9882267761230468, + "step": 198800 + }, + { + "epoch": 26.52, + "grad_norm": 0.6403129696846008, + "learning_rate": 3.674586666666667e-05, + "loss": 1.985286102294922, + "step": 198900 + }, + { + "epoch": 26.533333333333335, + "grad_norm": 0.5762969851493835, + "learning_rate": 3.67392e-05, + "loss": 1.9854814147949218, + "step": 199000 + }, + { + "epoch": 26.546666666666667, + "grad_norm": 0.5455479025840759, + "learning_rate": 3.6732533333333335e-05, + "loss": 1.9807121276855468, + "step": 199100 + }, + { + "epoch": 26.56, + "grad_norm": 0.5566051006317139, + "learning_rate": 3.672586666666667e-05, + "loss": 1.99121337890625, + "step": 199200 + }, + { + "epoch": 26.573333333333334, + "grad_norm": 0.5699354410171509, + "learning_rate": 3.6719200000000006e-05, + "loss": 1.9884609985351562, + "step": 199300 + }, + { + "epoch": 26.586666666666666, + "grad_norm": 0.5869739651679993, + "learning_rate": 3.671253333333334e-05, + "loss": 1.9882350158691406, + "step": 199400 + }, + { + "epoch": 26.6, + "grad_norm": 0.5663924813270569, + "learning_rate": 3.670593333333334e-05, + "loss": 1.9908465576171874, + "step": 199500 + }, + { + "epoch": 26.613333333333333, + "grad_norm": 0.5577260255813599, + "learning_rate": 3.669926666666667e-05, + "loss": 1.9867439270019531, + "step": 199600 + }, + { + "epoch": 26.626666666666665, + "grad_norm": 0.5420724153518677, + "learning_rate": 3.66926e-05, + "loss": 1.9890168762207032, + "step": 199700 + }, + { + "epoch": 26.64, + "grad_norm": 0.5668867230415344, + "learning_rate": 3.6685933333333334e-05, + "loss": 1.989038848876953, + "step": 199800 + }, + { + "epoch": 26.653333333333332, + "grad_norm": 0.536382257938385, + "learning_rate": 3.6679266666666666e-05, + "loss": 1.9933232116699218, + "step": 199900 + }, + { + "epoch": 26.666666666666668, + "grad_norm": 0.6233078837394714, + "learning_rate": 3.66726e-05, + "loss": 1.9922142028808594, + "step": 200000 + }, + { + "epoch": 26.68, + "grad_norm": 0.5758584141731262, + "learning_rate": 3.666593333333334e-05, + "loss": 1.9919984436035156, + "step": 200100 + }, + { + "epoch": 26.693333333333335, + "grad_norm": 0.5576504468917847, + "learning_rate": 3.665926666666667e-05, + "loss": 1.9917649841308593, + "step": 200200 + }, + { + "epoch": 26.706666666666667, + "grad_norm": 0.5854286551475525, + "learning_rate": 3.66526e-05, + "loss": 1.9912901306152344, + "step": 200300 + }, + { + "epoch": 26.72, + "grad_norm": 0.5664922595024109, + "learning_rate": 3.6645933333333334e-05, + "loss": 1.998155059814453, + "step": 200400 + }, + { + "epoch": 26.733333333333334, + "grad_norm": 0.5407897233963013, + "learning_rate": 3.663926666666667e-05, + "loss": 1.9952912902832032, + "step": 200500 + }, + { + "epoch": 26.746666666666666, + "grad_norm": 0.5883836150169373, + "learning_rate": 3.66326e-05, + "loss": 1.9951287841796874, + "step": 200600 + }, + { + "epoch": 26.76, + "grad_norm": 0.5882517099380493, + "learning_rate": 3.662593333333333e-05, + "loss": 1.9948817443847657, + "step": 200700 + }, + { + "epoch": 26.773333333333333, + "grad_norm": 0.572609543800354, + "learning_rate": 3.661926666666667e-05, + "loss": 1.9994200134277345, + "step": 200800 + }, + { + "epoch": 26.786666666666665, + "grad_norm": 0.5723763108253479, + "learning_rate": 3.66126e-05, + "loss": 1.9964186096191405, + "step": 200900 + }, + { + "epoch": 26.8, + "grad_norm": 0.571183979511261, + "learning_rate": 3.6605933333333335e-05, + "loss": 1.9989100646972657, + "step": 201000 + }, + { + "epoch": 26.813333333333333, + "grad_norm": 0.5754789113998413, + "learning_rate": 3.6599266666666674e-05, + "loss": 1.9968698120117188, + "step": 201100 + }, + { + "epoch": 26.826666666666668, + "grad_norm": 0.5623466372489929, + "learning_rate": 3.65926e-05, + "loss": 1.9973426818847657, + "step": 201200 + }, + { + "epoch": 26.84, + "grad_norm": 0.5691098570823669, + "learning_rate": 3.658593333333333e-05, + "loss": 1.995333709716797, + "step": 201300 + }, + { + "epoch": 26.85333333333333, + "grad_norm": 0.5785391926765442, + "learning_rate": 3.657926666666667e-05, + "loss": 2.0026919555664064, + "step": 201400 + }, + { + "epoch": 26.866666666666667, + "grad_norm": 0.5716009736061096, + "learning_rate": 3.657266666666666e-05, + "loss": 1.9967724609375, + "step": 201500 + }, + { + "epoch": 26.88, + "grad_norm": 0.5728231072425842, + "learning_rate": 3.6566e-05, + "loss": 2.003606719970703, + "step": 201600 + }, + { + "epoch": 26.893333333333334, + "grad_norm": 0.5723952054977417, + "learning_rate": 3.6559333333333334e-05, + "loss": 2.0006785583496094, + "step": 201700 + }, + { + "epoch": 26.906666666666666, + "grad_norm": 0.5781197547912598, + "learning_rate": 3.6552666666666666e-05, + "loss": 2.001742095947266, + "step": 201800 + }, + { + "epoch": 26.92, + "grad_norm": 0.5599796772003174, + "learning_rate": 3.6546000000000006e-05, + "loss": 2.0006167602539064, + "step": 201900 + }, + { + "epoch": 26.933333333333334, + "grad_norm": 0.6010822653770447, + "learning_rate": 3.653933333333334e-05, + "loss": 2.0031967163085938, + "step": 202000 + }, + { + "epoch": 26.946666666666665, + "grad_norm": 0.563437819480896, + "learning_rate": 3.653266666666667e-05, + "loss": 2.004565887451172, + "step": 202100 + }, + { + "epoch": 26.96, + "grad_norm": 0.5698239803314209, + "learning_rate": 3.6526e-05, + "loss": 2.004854431152344, + "step": 202200 + }, + { + "epoch": 26.973333333333333, + "grad_norm": 0.5538843274116516, + "learning_rate": 3.6519333333333335e-05, + "loss": 2.006410827636719, + "step": 202300 + }, + { + "epoch": 26.986666666666668, + "grad_norm": 0.590229332447052, + "learning_rate": 3.651266666666667e-05, + "loss": 2.004330596923828, + "step": 202400 + }, + { + "epoch": 27.0, + "grad_norm": 0.5651915073394775, + "learning_rate": 3.6506e-05, + "loss": 2.004520263671875, + "step": 202500 + }, + { + "epoch": 27.013333333333332, + "grad_norm": 0.581447184085846, + "learning_rate": 3.649933333333334e-05, + "loss": 1.927707977294922, + "step": 202600 + }, + { + "epoch": 27.026666666666667, + "grad_norm": 0.5724103450775146, + "learning_rate": 3.649266666666667e-05, + "loss": 1.9301573181152343, + "step": 202700 + }, + { + "epoch": 27.04, + "grad_norm": 0.5678054690361023, + "learning_rate": 3.6486e-05, + "loss": 1.9268736267089843, + "step": 202800 + }, + { + "epoch": 27.053333333333335, + "grad_norm": 0.5841068625450134, + "learning_rate": 3.6479333333333335e-05, + "loss": 1.9276795959472657, + "step": 202900 + }, + { + "epoch": 27.066666666666666, + "grad_norm": 0.5919205546379089, + "learning_rate": 3.647266666666667e-05, + "loss": 1.9338473510742187, + "step": 203000 + }, + { + "epoch": 27.08, + "grad_norm": 0.593210756778717, + "learning_rate": 3.6466e-05, + "loss": 1.9268548583984375, + "step": 203100 + }, + { + "epoch": 27.093333333333334, + "grad_norm": 0.5299606919288635, + "learning_rate": 3.645933333333333e-05, + "loss": 1.9322509765625, + "step": 203200 + }, + { + "epoch": 27.106666666666666, + "grad_norm": 0.5877776741981506, + "learning_rate": 3.645266666666667e-05, + "loss": 1.9314346313476562, + "step": 203300 + }, + { + "epoch": 27.12, + "grad_norm": 0.5868698954582214, + "learning_rate": 3.6446e-05, + "loss": 1.9356802368164063, + "step": 203400 + }, + { + "epoch": 27.133333333333333, + "grad_norm": 0.5853486061096191, + "learning_rate": 3.64394e-05, + "loss": 1.9343838500976562, + "step": 203500 + }, + { + "epoch": 27.14666666666667, + "grad_norm": 0.5599203705787659, + "learning_rate": 3.6432733333333334e-05, + "loss": 1.9365560913085937, + "step": 203600 + }, + { + "epoch": 27.16, + "grad_norm": 0.5584514737129211, + "learning_rate": 3.642606666666667e-05, + "loss": 1.9372349548339844, + "step": 203700 + }, + { + "epoch": 27.173333333333332, + "grad_norm": 0.5899976491928101, + "learning_rate": 3.6419400000000006e-05, + "loss": 1.94076416015625, + "step": 203800 + }, + { + "epoch": 27.186666666666667, + "grad_norm": 0.5896082520484924, + "learning_rate": 3.641273333333334e-05, + "loss": 1.9411949157714843, + "step": 203900 + }, + { + "epoch": 27.2, + "grad_norm": 0.6029268503189087, + "learning_rate": 3.6406066666666663e-05, + "loss": 1.9456289672851563, + "step": 204000 + }, + { + "epoch": 27.213333333333335, + "grad_norm": 0.5602301955223083, + "learning_rate": 3.63994e-05, + "loss": 1.9383029174804687, + "step": 204100 + }, + { + "epoch": 27.226666666666667, + "grad_norm": 0.5736998319625854, + "learning_rate": 3.6392733333333335e-05, + "loss": 1.945543975830078, + "step": 204200 + }, + { + "epoch": 27.24, + "grad_norm": 0.5835820436477661, + "learning_rate": 3.638606666666667e-05, + "loss": 1.9456192016601563, + "step": 204300 + }, + { + "epoch": 27.253333333333334, + "grad_norm": 0.5935140252113342, + "learning_rate": 3.63794e-05, + "loss": 1.9459524536132813, + "step": 204400 + }, + { + "epoch": 27.266666666666666, + "grad_norm": 0.5856873393058777, + "learning_rate": 3.637273333333334e-05, + "loss": 1.9468795776367187, + "step": 204500 + }, + { + "epoch": 27.28, + "grad_norm": 0.5846020579338074, + "learning_rate": 3.636606666666667e-05, + "loss": 1.947487335205078, + "step": 204600 + }, + { + "epoch": 27.293333333333333, + "grad_norm": 0.6289901733398438, + "learning_rate": 3.6359399999999996e-05, + "loss": 1.9467887878417969, + "step": 204700 + }, + { + "epoch": 27.306666666666665, + "grad_norm": 0.5840248465538025, + "learning_rate": 3.6352733333333335e-05, + "loss": 1.9474456787109375, + "step": 204800 + }, + { + "epoch": 27.32, + "grad_norm": 0.5707332491874695, + "learning_rate": 3.634606666666667e-05, + "loss": 1.9438954162597657, + "step": 204900 + }, + { + "epoch": 27.333333333333332, + "grad_norm": 0.5975301861763, + "learning_rate": 3.63394e-05, + "loss": 1.951266326904297, + "step": 205000 + }, + { + "epoch": 27.346666666666668, + "grad_norm": 0.5705687999725342, + "learning_rate": 3.633273333333333e-05, + "loss": 1.9507940673828126, + "step": 205100 + }, + { + "epoch": 27.36, + "grad_norm": 0.5590121150016785, + "learning_rate": 3.632606666666667e-05, + "loss": 1.9493692016601563, + "step": 205200 + }, + { + "epoch": 27.373333333333335, + "grad_norm": 0.5685244798660278, + "learning_rate": 3.63194e-05, + "loss": 1.950657196044922, + "step": 205300 + }, + { + "epoch": 27.386666666666667, + "grad_norm": 0.5888789892196655, + "learning_rate": 3.6312733333333336e-05, + "loss": 1.9549993896484374, + "step": 205400 + }, + { + "epoch": 27.4, + "grad_norm": 0.5904676914215088, + "learning_rate": 3.6306133333333335e-05, + "loss": 1.955000762939453, + "step": 205500 + }, + { + "epoch": 27.413333333333334, + "grad_norm": 0.5819377303123474, + "learning_rate": 3.6299466666666674e-05, + "loss": 1.9578860473632813, + "step": 205600 + }, + { + "epoch": 27.426666666666666, + "grad_norm": 0.5758692026138306, + "learning_rate": 3.62928e-05, + "loss": 1.9549250793457031, + "step": 205700 + }, + { + "epoch": 27.44, + "grad_norm": 0.6009901165962219, + "learning_rate": 3.628613333333333e-05, + "loss": 1.952675323486328, + "step": 205800 + }, + { + "epoch": 27.453333333333333, + "grad_norm": 0.5837755799293518, + "learning_rate": 3.627946666666667e-05, + "loss": 1.9591851806640626, + "step": 205900 + }, + { + "epoch": 27.466666666666665, + "grad_norm": 0.5634909272193909, + "learning_rate": 3.62728e-05, + "loss": 1.9552839660644532, + "step": 206000 + }, + { + "epoch": 27.48, + "grad_norm": 0.5781852602958679, + "learning_rate": 3.6266133333333335e-05, + "loss": 1.9604965209960938, + "step": 206100 + }, + { + "epoch": 27.493333333333332, + "grad_norm": 0.58583664894104, + "learning_rate": 3.625946666666667e-05, + "loss": 1.9583544921875, + "step": 206200 + }, + { + "epoch": 27.506666666666668, + "grad_norm": 0.5962403416633606, + "learning_rate": 3.6252800000000006e-05, + "loss": 1.9607644653320313, + "step": 206300 + }, + { + "epoch": 27.52, + "grad_norm": 0.5640053749084473, + "learning_rate": 3.624613333333334e-05, + "loss": 1.9606808471679686, + "step": 206400 + }, + { + "epoch": 27.533333333333335, + "grad_norm": 0.5817745327949524, + "learning_rate": 3.6239466666666664e-05, + "loss": 1.9592042541503907, + "step": 206500 + }, + { + "epoch": 27.546666666666667, + "grad_norm": 0.6114230751991272, + "learning_rate": 3.62328e-05, + "loss": 1.9615921020507812, + "step": 206600 + }, + { + "epoch": 27.56, + "grad_norm": 0.5722009539604187, + "learning_rate": 3.6226133333333335e-05, + "loss": 1.9608853149414063, + "step": 206700 + }, + { + "epoch": 27.573333333333334, + "grad_norm": 0.5720607042312622, + "learning_rate": 3.621946666666667e-05, + "loss": 1.962681884765625, + "step": 206800 + }, + { + "epoch": 27.586666666666666, + "grad_norm": 0.596661388874054, + "learning_rate": 3.62128e-05, + "loss": 1.9644792175292969, + "step": 206900 + }, + { + "epoch": 27.6, + "grad_norm": 0.5807399749755859, + "learning_rate": 3.620613333333334e-05, + "loss": 1.9695454406738282, + "step": 207000 + }, + { + "epoch": 27.613333333333333, + "grad_norm": 0.5708223581314087, + "learning_rate": 3.619946666666667e-05, + "loss": 1.963555145263672, + "step": 207100 + }, + { + "epoch": 27.626666666666665, + "grad_norm": 0.5941387414932251, + "learning_rate": 3.6192800000000004e-05, + "loss": 1.9702226257324218, + "step": 207200 + }, + { + "epoch": 27.64, + "grad_norm": 0.568341851234436, + "learning_rate": 3.6186133333333336e-05, + "loss": 1.9717837524414064, + "step": 207300 + }, + { + "epoch": 27.653333333333332, + "grad_norm": 0.5917574167251587, + "learning_rate": 3.617946666666667e-05, + "loss": 1.9671156311035156, + "step": 207400 + }, + { + "epoch": 27.666666666666668, + "grad_norm": 0.5893895030021667, + "learning_rate": 3.61728e-05, + "loss": 1.9676268005371094, + "step": 207500 + }, + { + "epoch": 27.68, + "grad_norm": 0.5909178256988525, + "learning_rate": 3.61662e-05, + "loss": 1.9683328247070313, + "step": 207600 + }, + { + "epoch": 27.693333333333335, + "grad_norm": 0.601280689239502, + "learning_rate": 3.615953333333333e-05, + "loss": 1.9703788757324219, + "step": 207700 + }, + { + "epoch": 27.706666666666667, + "grad_norm": 0.5855022072792053, + "learning_rate": 3.615286666666667e-05, + "loss": 1.9706231689453124, + "step": 207800 + }, + { + "epoch": 27.72, + "grad_norm": 0.5767050385475159, + "learning_rate": 3.61462e-05, + "loss": 1.9699440002441406, + "step": 207900 + }, + { + "epoch": 27.733333333333334, + "grad_norm": 0.5902249813079834, + "learning_rate": 3.6139533333333335e-05, + "loss": 1.964881134033203, + "step": 208000 + }, + { + "epoch": 27.746666666666666, + "grad_norm": 0.5634693503379822, + "learning_rate": 3.613286666666667e-05, + "loss": 1.9723870849609375, + "step": 208100 + }, + { + "epoch": 27.76, + "grad_norm": 0.6080737113952637, + "learning_rate": 3.6126200000000007e-05, + "loss": 1.968502197265625, + "step": 208200 + }, + { + "epoch": 27.773333333333333, + "grad_norm": 0.5652815103530884, + "learning_rate": 3.611953333333333e-05, + "loss": 1.9760067749023438, + "step": 208300 + }, + { + "epoch": 27.786666666666665, + "grad_norm": 0.5851750373840332, + "learning_rate": 3.6112866666666664e-05, + "loss": 1.9739956665039062, + "step": 208400 + }, + { + "epoch": 27.8, + "grad_norm": 0.5799194574356079, + "learning_rate": 3.61062e-05, + "loss": 1.9709002685546875, + "step": 208500 + }, + { + "epoch": 27.813333333333333, + "grad_norm": 0.607318103313446, + "learning_rate": 3.6099533333333336e-05, + "loss": 1.9714559936523437, + "step": 208600 + }, + { + "epoch": 27.826666666666668, + "grad_norm": 0.570615828037262, + "learning_rate": 3.609286666666667e-05, + "loss": 1.9726187133789062, + "step": 208700 + }, + { + "epoch": 27.84, + "grad_norm": 0.5773420929908752, + "learning_rate": 3.60862e-05, + "loss": 1.9740589904785155, + "step": 208800 + }, + { + "epoch": 27.85333333333333, + "grad_norm": 0.5621991753578186, + "learning_rate": 3.607953333333334e-05, + "loss": 1.9761262512207032, + "step": 208900 + }, + { + "epoch": 27.866666666666667, + "grad_norm": 0.5754197835922241, + "learning_rate": 3.6072866666666665e-05, + "loss": 1.9745481872558595, + "step": 209000 + }, + { + "epoch": 27.88, + "grad_norm": 0.5961983799934387, + "learning_rate": 3.60662e-05, + "loss": 1.9757182312011718, + "step": 209100 + }, + { + "epoch": 27.893333333333334, + "grad_norm": 0.5758571028709412, + "learning_rate": 3.6059533333333336e-05, + "loss": 1.974927978515625, + "step": 209200 + }, + { + "epoch": 27.906666666666666, + "grad_norm": 0.5897004008293152, + "learning_rate": 3.605286666666667e-05, + "loss": 1.97732177734375, + "step": 209300 + }, + { + "epoch": 27.92, + "grad_norm": 0.5555986762046814, + "learning_rate": 3.60462e-05, + "loss": 1.97912841796875, + "step": 209400 + }, + { + "epoch": 27.933333333333334, + "grad_norm": 0.5782080888748169, + "learning_rate": 3.603953333333334e-05, + "loss": 1.9758847045898438, + "step": 209500 + }, + { + "epoch": 27.946666666666665, + "grad_norm": 0.5872431397438049, + "learning_rate": 3.603293333333333e-05, + "loss": 1.9807801818847657, + "step": 209600 + }, + { + "epoch": 27.96, + "grad_norm": 0.6015269756317139, + "learning_rate": 3.602626666666667e-05, + "loss": 1.9804434204101562, + "step": 209700 + }, + { + "epoch": 27.973333333333333, + "grad_norm": 0.6062453985214233, + "learning_rate": 3.60196e-05, + "loss": 1.9817405700683595, + "step": 209800 + }, + { + "epoch": 27.986666666666668, + "grad_norm": 0.5964453220367432, + "learning_rate": 3.6012933333333335e-05, + "loss": 1.9792985534667968, + "step": 209900 + }, + { + "epoch": 28.0, + "grad_norm": 0.5917948484420776, + "learning_rate": 3.600626666666667e-05, + "loss": 1.9797233581542968, + "step": 210000 + }, + { + "epoch": 28.013333333333332, + "grad_norm": 0.5753324031829834, + "learning_rate": 3.59996e-05, + "loss": 1.8963658142089843, + "step": 210100 + }, + { + "epoch": 28.026666666666667, + "grad_norm": 0.5823311805725098, + "learning_rate": 3.599293333333333e-05, + "loss": 1.90039794921875, + "step": 210200 + }, + { + "epoch": 28.04, + "grad_norm": 0.6098815202713013, + "learning_rate": 3.598626666666667e-05, + "loss": 1.9037353515625, + "step": 210300 + }, + { + "epoch": 28.053333333333335, + "grad_norm": 0.591463565826416, + "learning_rate": 3.5979600000000004e-05, + "loss": 1.9031809997558593, + "step": 210400 + }, + { + "epoch": 28.066666666666666, + "grad_norm": 0.6484287977218628, + "learning_rate": 3.5972933333333336e-05, + "loss": 1.90722900390625, + "step": 210500 + }, + { + "epoch": 28.08, + "grad_norm": 0.5851206183433533, + "learning_rate": 3.596626666666667e-05, + "loss": 1.907454376220703, + "step": 210600 + }, + { + "epoch": 28.093333333333334, + "grad_norm": 0.5893003940582275, + "learning_rate": 3.595960000000001e-05, + "loss": 1.9102708435058593, + "step": 210700 + }, + { + "epoch": 28.106666666666666, + "grad_norm": 0.5920806527137756, + "learning_rate": 3.595293333333333e-05, + "loss": 1.906302490234375, + "step": 210800 + }, + { + "epoch": 28.12, + "grad_norm": 0.5820571780204773, + "learning_rate": 3.5946266666666665e-05, + "loss": 1.9106333923339844, + "step": 210900 + }, + { + "epoch": 28.133333333333333, + "grad_norm": 0.6000703573226929, + "learning_rate": 3.5939600000000004e-05, + "loss": 1.9108970642089844, + "step": 211000 + }, + { + "epoch": 28.14666666666667, + "grad_norm": 0.6043274402618408, + "learning_rate": 3.5932933333333336e-05, + "loss": 1.9127066040039062, + "step": 211100 + }, + { + "epoch": 28.16, + "grad_norm": 0.589103639125824, + "learning_rate": 3.592626666666667e-05, + "loss": 1.9146939086914063, + "step": 211200 + }, + { + "epoch": 28.173333333333332, + "grad_norm": 0.5709384679794312, + "learning_rate": 3.59196e-05, + "loss": 1.9095561218261718, + "step": 211300 + }, + { + "epoch": 28.186666666666667, + "grad_norm": 0.6060921549797058, + "learning_rate": 3.591293333333334e-05, + "loss": 1.912783203125, + "step": 211400 + }, + { + "epoch": 28.2, + "grad_norm": 0.6131394505500793, + "learning_rate": 3.5906266666666665e-05, + "loss": 1.9097198486328124, + "step": 211500 + }, + { + "epoch": 28.213333333333335, + "grad_norm": 0.5825812220573425, + "learning_rate": 3.589966666666667e-05, + "loss": 1.9186415100097656, + "step": 211600 + }, + { + "epoch": 28.226666666666667, + "grad_norm": 0.5944445729255676, + "learning_rate": 3.5893000000000003e-05, + "loss": 1.9187173461914062, + "step": 211700 + }, + { + "epoch": 28.24, + "grad_norm": 0.5729975700378418, + "learning_rate": 3.5886333333333336e-05, + "loss": 1.9198851013183593, + "step": 211800 + }, + { + "epoch": 28.253333333333334, + "grad_norm": 0.6041490435600281, + "learning_rate": 3.587966666666667e-05, + "loss": 1.9200152587890624, + "step": 211900 + }, + { + "epoch": 28.266666666666666, + "grad_norm": 0.6032606363296509, + "learning_rate": 3.5873e-05, + "loss": 1.9239161682128907, + "step": 212000 + }, + { + "epoch": 28.28, + "grad_norm": 0.6063857078552246, + "learning_rate": 3.586633333333333e-05, + "loss": 1.921931915283203, + "step": 212100 + }, + { + "epoch": 28.293333333333333, + "grad_norm": 0.6095187664031982, + "learning_rate": 3.585966666666667e-05, + "loss": 1.9245355224609375, + "step": 212200 + }, + { + "epoch": 28.306666666666665, + "grad_norm": 0.6013233065605164, + "learning_rate": 3.5853000000000004e-05, + "loss": 1.920060577392578, + "step": 212300 + }, + { + "epoch": 28.32, + "grad_norm": 0.5829028487205505, + "learning_rate": 3.5846333333333336e-05, + "loss": 1.923076171875, + "step": 212400 + }, + { + "epoch": 28.333333333333332, + "grad_norm": 0.6095953583717346, + "learning_rate": 3.583966666666667e-05, + "loss": 1.9266374206542969, + "step": 212500 + }, + { + "epoch": 28.346666666666668, + "grad_norm": 0.6123775243759155, + "learning_rate": 3.5833e-05, + "loss": 1.923944091796875, + "step": 212600 + }, + { + "epoch": 28.36, + "grad_norm": 0.6038895845413208, + "learning_rate": 3.582633333333333e-05, + "loss": 1.9256845092773438, + "step": 212700 + }, + { + "epoch": 28.373333333333335, + "grad_norm": 0.5949887037277222, + "learning_rate": 3.5819666666666665e-05, + "loss": 1.925125732421875, + "step": 212800 + }, + { + "epoch": 28.386666666666667, + "grad_norm": 0.5919845104217529, + "learning_rate": 3.5813000000000004e-05, + "loss": 1.92591796875, + "step": 212900 + }, + { + "epoch": 28.4, + "grad_norm": 0.5925742387771606, + "learning_rate": 3.5806333333333336e-05, + "loss": 1.9260887145996093, + "step": 213000 + }, + { + "epoch": 28.413333333333334, + "grad_norm": 0.5978710055351257, + "learning_rate": 3.579966666666667e-05, + "loss": 1.9299237060546874, + "step": 213100 + }, + { + "epoch": 28.426666666666666, + "grad_norm": 0.6156143546104431, + "learning_rate": 3.5793e-05, + "loss": 1.9283975219726563, + "step": 213200 + }, + { + "epoch": 28.44, + "grad_norm": 0.6074989438056946, + "learning_rate": 3.578633333333333e-05, + "loss": 1.9329901123046875, + "step": 213300 + }, + { + "epoch": 28.453333333333333, + "grad_norm": 0.6070049405097961, + "learning_rate": 3.5779666666666666e-05, + "loss": 1.9311386108398438, + "step": 213400 + }, + { + "epoch": 28.466666666666665, + "grad_norm": 0.627319872379303, + "learning_rate": 3.5773e-05, + "loss": 1.93387451171875, + "step": 213500 + }, + { + "epoch": 28.48, + "grad_norm": 0.6070690155029297, + "learning_rate": 3.57664e-05, + "loss": 1.933914337158203, + "step": 213600 + }, + { + "epoch": 28.493333333333332, + "grad_norm": 0.6085487008094788, + "learning_rate": 3.5759733333333336e-05, + "loss": 1.9377674865722656, + "step": 213700 + }, + { + "epoch": 28.506666666666668, + "grad_norm": 0.6239941120147705, + "learning_rate": 3.575306666666667e-05, + "loss": 1.9339775085449218, + "step": 213800 + }, + { + "epoch": 28.52, + "grad_norm": 0.6024758219718933, + "learning_rate": 3.57464e-05, + "loss": 1.9365673828125, + "step": 213900 + }, + { + "epoch": 28.533333333333335, + "grad_norm": 0.6340709924697876, + "learning_rate": 3.573973333333334e-05, + "loss": 1.9337480163574219, + "step": 214000 + }, + { + "epoch": 28.546666666666667, + "grad_norm": 0.5885015726089478, + "learning_rate": 3.573306666666667e-05, + "loss": 1.935907745361328, + "step": 214100 + }, + { + "epoch": 28.56, + "grad_norm": 0.6116124391555786, + "learning_rate": 3.5726400000000004e-05, + "loss": 1.9376171875, + "step": 214200 + }, + { + "epoch": 28.573333333333334, + "grad_norm": 0.5820707082748413, + "learning_rate": 3.571973333333333e-05, + "loss": 1.9389529418945313, + "step": 214300 + }, + { + "epoch": 28.586666666666666, + "grad_norm": 0.5670823454856873, + "learning_rate": 3.571306666666667e-05, + "loss": 1.938601531982422, + "step": 214400 + }, + { + "epoch": 28.6, + "grad_norm": 0.6194178462028503, + "learning_rate": 3.57064e-05, + "loss": 1.9407998657226562, + "step": 214500 + }, + { + "epoch": 28.613333333333333, + "grad_norm": 0.6202486753463745, + "learning_rate": 3.569973333333333e-05, + "loss": 1.9379768371582031, + "step": 214600 + }, + { + "epoch": 28.626666666666665, + "grad_norm": 0.6014044880867004, + "learning_rate": 3.569306666666667e-05, + "loss": 1.9406600952148438, + "step": 214700 + }, + { + "epoch": 28.64, + "grad_norm": 0.6088877320289612, + "learning_rate": 3.5686400000000004e-05, + "loss": 1.9415878295898437, + "step": 214800 + }, + { + "epoch": 28.653333333333332, + "grad_norm": 0.6067546010017395, + "learning_rate": 3.567973333333334e-05, + "loss": 1.9418251037597656, + "step": 214900 + }, + { + "epoch": 28.666666666666668, + "grad_norm": 0.5925686955451965, + "learning_rate": 3.567306666666667e-05, + "loss": 1.9406690979003907, + "step": 215000 + }, + { + "epoch": 28.68, + "grad_norm": 0.6045867800712585, + "learning_rate": 3.56664e-05, + "loss": 1.9402273559570313, + "step": 215100 + }, + { + "epoch": 28.693333333333335, + "grad_norm": 0.6042197942733765, + "learning_rate": 3.5659733333333334e-05, + "loss": 1.9467068481445313, + "step": 215200 + }, + { + "epoch": 28.706666666666667, + "grad_norm": 0.6190263628959656, + "learning_rate": 3.5653066666666666e-05, + "loss": 1.9422659301757812, + "step": 215300 + }, + { + "epoch": 28.72, + "grad_norm": 0.6239484548568726, + "learning_rate": 3.5646400000000005e-05, + "loss": 1.9453689575195312, + "step": 215400 + }, + { + "epoch": 28.733333333333334, + "grad_norm": 0.5972684621810913, + "learning_rate": 3.563973333333334e-05, + "loss": 1.945398406982422, + "step": 215500 + }, + { + "epoch": 28.746666666666666, + "grad_norm": 0.6258236169815063, + "learning_rate": 3.5633133333333336e-05, + "loss": 1.947290802001953, + "step": 215600 + }, + { + "epoch": 28.76, + "grad_norm": 0.6004676818847656, + "learning_rate": 3.562646666666667e-05, + "loss": 1.9425833129882812, + "step": 215700 + }, + { + "epoch": 28.773333333333333, + "grad_norm": 0.6066743731498718, + "learning_rate": 3.56198e-05, + "loss": 1.9450428771972657, + "step": 215800 + }, + { + "epoch": 28.786666666666665, + "grad_norm": 0.6220128536224365, + "learning_rate": 3.561313333333334e-05, + "loss": 1.9462014770507812, + "step": 215900 + }, + { + "epoch": 28.8, + "grad_norm": 0.6090360283851624, + "learning_rate": 3.5606466666666665e-05, + "loss": 1.9469538879394532, + "step": 216000 + }, + { + "epoch": 28.813333333333333, + "grad_norm": 0.5942463278770447, + "learning_rate": 3.55998e-05, + "loss": 1.9527642822265625, + "step": 216100 + }, + { + "epoch": 28.826666666666668, + "grad_norm": 0.6522825360298157, + "learning_rate": 3.5593133333333337e-05, + "loss": 1.947396240234375, + "step": 216200 + }, + { + "epoch": 28.84, + "grad_norm": 0.6047014594078064, + "learning_rate": 3.558646666666667e-05, + "loss": 1.953114013671875, + "step": 216300 + }, + { + "epoch": 28.85333333333333, + "grad_norm": 0.6015614867210388, + "learning_rate": 3.55798e-05, + "loss": 1.9483316040039063, + "step": 216400 + }, + { + "epoch": 28.866666666666667, + "grad_norm": 0.588139533996582, + "learning_rate": 3.557313333333333e-05, + "loss": 1.95369384765625, + "step": 216500 + }, + { + "epoch": 28.88, + "grad_norm": 0.6121417880058289, + "learning_rate": 3.556646666666667e-05, + "loss": 1.9504942321777343, + "step": 216600 + }, + { + "epoch": 28.893333333333334, + "grad_norm": 0.6152277588844299, + "learning_rate": 3.5559800000000005e-05, + "loss": 1.9528102111816406, + "step": 216700 + }, + { + "epoch": 28.906666666666666, + "grad_norm": 0.5864558815956116, + "learning_rate": 3.555313333333333e-05, + "loss": 1.9556744384765625, + "step": 216800 + }, + { + "epoch": 28.92, + "grad_norm": 0.6150722503662109, + "learning_rate": 3.554646666666667e-05, + "loss": 1.9557850646972657, + "step": 216900 + }, + { + "epoch": 28.933333333333334, + "grad_norm": 0.6126604676246643, + "learning_rate": 3.55398e-05, + "loss": 1.957655487060547, + "step": 217000 + }, + { + "epoch": 28.946666666666665, + "grad_norm": 0.6212007403373718, + "learning_rate": 3.5533133333333334e-05, + "loss": 1.952845458984375, + "step": 217100 + }, + { + "epoch": 28.96, + "grad_norm": 0.6093801856040955, + "learning_rate": 3.5526466666666666e-05, + "loss": 1.9500978088378906, + "step": 217200 + }, + { + "epoch": 28.973333333333333, + "grad_norm": 0.6195286512374878, + "learning_rate": 3.5519800000000005e-05, + "loss": 1.9568482971191405, + "step": 217300 + }, + { + "epoch": 28.986666666666668, + "grad_norm": 0.6141052842140198, + "learning_rate": 3.551313333333334e-05, + "loss": 1.9551716613769532, + "step": 217400 + }, + { + "epoch": 29.0, + "grad_norm": 0.6240456700325012, + "learning_rate": 3.550646666666666e-05, + "loss": 1.9593727111816406, + "step": 217500 + }, + { + "epoch": 29.013333333333332, + "grad_norm": 0.6141709089279175, + "learning_rate": 3.549986666666667e-05, + "loss": 1.8731291198730469, + "step": 217600 + }, + { + "epoch": 29.026666666666667, + "grad_norm": 0.6149386763572693, + "learning_rate": 3.54932e-05, + "loss": 1.8731167602539063, + "step": 217700 + }, + { + "epoch": 29.04, + "grad_norm": 0.6323212385177612, + "learning_rate": 3.548653333333333e-05, + "loss": 1.871314697265625, + "step": 217800 + }, + { + "epoch": 29.053333333333335, + "grad_norm": 0.6484255790710449, + "learning_rate": 3.5479866666666665e-05, + "loss": 1.8755429077148438, + "step": 217900 + }, + { + "epoch": 29.066666666666666, + "grad_norm": 0.6272088289260864, + "learning_rate": 3.54732e-05, + "loss": 1.8729833984375, + "step": 218000 + }, + { + "epoch": 29.08, + "grad_norm": 0.6121836304664612, + "learning_rate": 3.546653333333334e-05, + "loss": 1.87686767578125, + "step": 218100 + }, + { + "epoch": 29.093333333333334, + "grad_norm": 0.6073644757270813, + "learning_rate": 3.545986666666667e-05, + "loss": 1.8814959716796875, + "step": 218200 + }, + { + "epoch": 29.106666666666666, + "grad_norm": 0.6518145799636841, + "learning_rate": 3.54532e-05, + "loss": 1.8825758361816407, + "step": 218300 + }, + { + "epoch": 29.12, + "grad_norm": 0.6225592494010925, + "learning_rate": 3.544653333333334e-05, + "loss": 1.8884323120117188, + "step": 218400 + }, + { + "epoch": 29.133333333333333, + "grad_norm": 0.6254275441169739, + "learning_rate": 3.5439866666666666e-05, + "loss": 1.8810324096679687, + "step": 218500 + }, + { + "epoch": 29.14666666666667, + "grad_norm": 0.6428091526031494, + "learning_rate": 3.54332e-05, + "loss": 1.8841964721679687, + "step": 218600 + }, + { + "epoch": 29.16, + "grad_norm": 0.6066590547561646, + "learning_rate": 3.542653333333334e-05, + "loss": 1.8872183227539063, + "step": 218700 + }, + { + "epoch": 29.173333333333332, + "grad_norm": 0.6072599291801453, + "learning_rate": 3.541986666666667e-05, + "loss": 1.888301544189453, + "step": 218800 + }, + { + "epoch": 29.186666666666667, + "grad_norm": 0.6293680667877197, + "learning_rate": 3.54132e-05, + "loss": 1.891027374267578, + "step": 218900 + }, + { + "epoch": 29.2, + "grad_norm": 0.6067629456520081, + "learning_rate": 3.5406533333333334e-05, + "loss": 1.8863351440429688, + "step": 219000 + }, + { + "epoch": 29.213333333333335, + "grad_norm": 0.5995946526527405, + "learning_rate": 3.539986666666667e-05, + "loss": 1.8922694396972657, + "step": 219100 + }, + { + "epoch": 29.226666666666667, + "grad_norm": 0.6211652159690857, + "learning_rate": 3.5393200000000005e-05, + "loss": 1.8898019409179687, + "step": 219200 + }, + { + "epoch": 29.24, + "grad_norm": 0.6280918717384338, + "learning_rate": 3.538653333333333e-05, + "loss": 1.892053680419922, + "step": 219300 + }, + { + "epoch": 29.253333333333334, + "grad_norm": 0.6313039064407349, + "learning_rate": 3.537986666666667e-05, + "loss": 1.8970526123046876, + "step": 219400 + }, + { + "epoch": 29.266666666666666, + "grad_norm": 0.6204928159713745, + "learning_rate": 3.53732e-05, + "loss": 1.8941494750976562, + "step": 219500 + }, + { + "epoch": 29.28, + "grad_norm": 0.6099953055381775, + "learning_rate": 3.53666e-05, + "loss": 1.8936624145507812, + "step": 219600 + }, + { + "epoch": 29.293333333333333, + "grad_norm": 0.6010173559188843, + "learning_rate": 3.5359933333333333e-05, + "loss": 1.8962115478515624, + "step": 219700 + }, + { + "epoch": 29.306666666666665, + "grad_norm": 0.6187490820884705, + "learning_rate": 3.5353266666666666e-05, + "loss": 1.8990090942382813, + "step": 219800 + }, + { + "epoch": 29.32, + "grad_norm": 0.6025696396827698, + "learning_rate": 3.5346600000000005e-05, + "loss": 1.899090576171875, + "step": 219900 + }, + { + "epoch": 29.333333333333332, + "grad_norm": 0.6101509928703308, + "learning_rate": 3.533993333333334e-05, + "loss": 1.8987478637695312, + "step": 220000 + }, + { + "epoch": 29.346666666666668, + "grad_norm": 0.6143890619277954, + "learning_rate": 3.533326666666667e-05, + "loss": 1.8977235412597657, + "step": 220100 + }, + { + "epoch": 29.36, + "grad_norm": 0.628218412399292, + "learning_rate": 3.53266e-05, + "loss": 1.9033868408203125, + "step": 220200 + }, + { + "epoch": 29.373333333333335, + "grad_norm": 0.6350439786911011, + "learning_rate": 3.5319933333333334e-05, + "loss": 1.8994992065429688, + "step": 220300 + }, + { + "epoch": 29.386666666666667, + "grad_norm": 0.6280394792556763, + "learning_rate": 3.5313266666666666e-05, + "loss": 1.9002314758300782, + "step": 220400 + }, + { + "epoch": 29.4, + "grad_norm": 0.6128666996955872, + "learning_rate": 3.53066e-05, + "loss": 1.9010800170898436, + "step": 220500 + }, + { + "epoch": 29.413333333333334, + "grad_norm": 0.636648952960968, + "learning_rate": 3.529993333333334e-05, + "loss": 1.9034559631347656, + "step": 220600 + }, + { + "epoch": 29.426666666666666, + "grad_norm": 0.6053557395935059, + "learning_rate": 3.529326666666667e-05, + "loss": 1.9045362854003907, + "step": 220700 + }, + { + "epoch": 29.44, + "grad_norm": 0.6217942833900452, + "learning_rate": 3.52866e-05, + "loss": 1.9091796875, + "step": 220800 + }, + { + "epoch": 29.453333333333333, + "grad_norm": 0.6204298734664917, + "learning_rate": 3.5279933333333334e-05, + "loss": 1.9048878479003906, + "step": 220900 + }, + { + "epoch": 29.466666666666665, + "grad_norm": 0.618732750415802, + "learning_rate": 3.527326666666667e-05, + "loss": 1.906492919921875, + "step": 221000 + }, + { + "epoch": 29.48, + "grad_norm": 0.6301329135894775, + "learning_rate": 3.52666e-05, + "loss": 1.9087861633300782, + "step": 221100 + }, + { + "epoch": 29.493333333333332, + "grad_norm": 0.6499351859092712, + "learning_rate": 3.525993333333333e-05, + "loss": 1.9047959899902345, + "step": 221200 + }, + { + "epoch": 29.506666666666668, + "grad_norm": 0.6507390141487122, + "learning_rate": 3.525326666666667e-05, + "loss": 1.9099015808105468, + "step": 221300 + }, + { + "epoch": 29.52, + "grad_norm": 0.6272179484367371, + "learning_rate": 3.52466e-05, + "loss": 1.9120497131347656, + "step": 221400 + }, + { + "epoch": 29.533333333333335, + "grad_norm": 0.6267956495285034, + "learning_rate": 3.5239933333333335e-05, + "loss": 1.9138475036621094, + "step": 221500 + }, + { + "epoch": 29.546666666666667, + "grad_norm": 0.6450830101966858, + "learning_rate": 3.5233333333333334e-05, + "loss": 1.910146484375, + "step": 221600 + }, + { + "epoch": 29.56, + "grad_norm": 0.618111789226532, + "learning_rate": 3.5226666666666666e-05, + "loss": 1.912001495361328, + "step": 221700 + }, + { + "epoch": 29.573333333333334, + "grad_norm": 0.6099219918251038, + "learning_rate": 3.5220000000000005e-05, + "loss": 1.9133241271972656, + "step": 221800 + }, + { + "epoch": 29.586666666666666, + "grad_norm": 0.6343381404876709, + "learning_rate": 3.521333333333334e-05, + "loss": 1.9161970520019531, + "step": 221900 + }, + { + "epoch": 29.6, + "grad_norm": 0.6319106817245483, + "learning_rate": 3.520666666666667e-05, + "loss": 1.9144822692871093, + "step": 222000 + }, + { + "epoch": 29.613333333333333, + "grad_norm": 0.6410270929336548, + "learning_rate": 3.52e-05, + "loss": 1.9168218994140624, + "step": 222100 + }, + { + "epoch": 29.626666666666665, + "grad_norm": 0.6186690330505371, + "learning_rate": 3.5193333333333334e-05, + "loss": 1.9132901000976563, + "step": 222200 + }, + { + "epoch": 29.64, + "grad_norm": 0.6537576913833618, + "learning_rate": 3.5186666666666666e-05, + "loss": 1.913599853515625, + "step": 222300 + }, + { + "epoch": 29.653333333333332, + "grad_norm": 0.6208250522613525, + "learning_rate": 3.518e-05, + "loss": 1.9217842102050782, + "step": 222400 + }, + { + "epoch": 29.666666666666668, + "grad_norm": 0.613583505153656, + "learning_rate": 3.517333333333334e-05, + "loss": 1.9240948486328124, + "step": 222500 + }, + { + "epoch": 29.68, + "grad_norm": 0.6155552864074707, + "learning_rate": 3.516666666666667e-05, + "loss": 1.9173712158203124, + "step": 222600 + }, + { + "epoch": 29.693333333333335, + "grad_norm": 0.6076659560203552, + "learning_rate": 3.516e-05, + "loss": 1.9172421264648438, + "step": 222700 + }, + { + "epoch": 29.706666666666667, + "grad_norm": 0.6185587048530579, + "learning_rate": 3.5153333333333334e-05, + "loss": 1.9175602722167968, + "step": 222800 + }, + { + "epoch": 29.72, + "grad_norm": 0.7048514485359192, + "learning_rate": 3.514666666666667e-05, + "loss": 1.9214109802246093, + "step": 222900 + }, + { + "epoch": 29.733333333333334, + "grad_norm": 0.648773729801178, + "learning_rate": 3.514e-05, + "loss": 1.9188169860839843, + "step": 223000 + }, + { + "epoch": 29.746666666666666, + "grad_norm": 0.6280819177627563, + "learning_rate": 3.513333333333334e-05, + "loss": 1.920139923095703, + "step": 223100 + }, + { + "epoch": 29.76, + "grad_norm": 0.5966166257858276, + "learning_rate": 3.512666666666667e-05, + "loss": 1.9221627807617188, + "step": 223200 + }, + { + "epoch": 29.773333333333333, + "grad_norm": 0.6173168420791626, + "learning_rate": 3.512e-05, + "loss": 1.924539794921875, + "step": 223300 + }, + { + "epoch": 29.786666666666665, + "grad_norm": 0.6122573018074036, + "learning_rate": 3.5113333333333335e-05, + "loss": 1.9245417785644532, + "step": 223400 + }, + { + "epoch": 29.8, + "grad_norm": 0.6305630803108215, + "learning_rate": 3.5106666666666674e-05, + "loss": 1.9254067993164063, + "step": 223500 + }, + { + "epoch": 29.813333333333333, + "grad_norm": 0.6451953053474426, + "learning_rate": 3.510006666666667e-05, + "loss": 1.9255630493164062, + "step": 223600 + }, + { + "epoch": 29.826666666666668, + "grad_norm": 0.6407766342163086, + "learning_rate": 3.5093400000000005e-05, + "loss": 1.9248118591308594, + "step": 223700 + }, + { + "epoch": 29.84, + "grad_norm": 0.627864420413971, + "learning_rate": 3.508673333333333e-05, + "loss": 1.9239891052246094, + "step": 223800 + }, + { + "epoch": 29.85333333333333, + "grad_norm": 0.6414026618003845, + "learning_rate": 3.508006666666667e-05, + "loss": 1.9280026245117188, + "step": 223900 + }, + { + "epoch": 29.866666666666667, + "grad_norm": 0.628401517868042, + "learning_rate": 3.50734e-05, + "loss": 1.9231156921386718, + "step": 224000 + }, + { + "epoch": 29.88, + "grad_norm": 0.6258181929588318, + "learning_rate": 3.5066733333333334e-05, + "loss": 1.926804962158203, + "step": 224100 + }, + { + "epoch": 29.893333333333334, + "grad_norm": 0.6521549820899963, + "learning_rate": 3.5060066666666667e-05, + "loss": 1.928329620361328, + "step": 224200 + }, + { + "epoch": 29.906666666666666, + "grad_norm": 0.6125701069831848, + "learning_rate": 3.5053400000000006e-05, + "loss": 1.9327384948730468, + "step": 224300 + }, + { + "epoch": 29.92, + "grad_norm": 0.627855658531189, + "learning_rate": 3.504673333333334e-05, + "loss": 1.927176971435547, + "step": 224400 + }, + { + "epoch": 29.933333333333334, + "grad_norm": 0.6648500561714172, + "learning_rate": 3.504006666666667e-05, + "loss": 1.9303471374511718, + "step": 224500 + }, + { + "epoch": 29.946666666666665, + "grad_norm": 0.6420508027076721, + "learning_rate": 3.50334e-05, + "loss": 1.9273306274414062, + "step": 224600 + }, + { + "epoch": 29.96, + "grad_norm": 0.6278482675552368, + "learning_rate": 3.5026733333333335e-05, + "loss": 1.9288194274902344, + "step": 224700 + }, + { + "epoch": 29.973333333333333, + "grad_norm": 0.5989758372306824, + "learning_rate": 3.502006666666667e-05, + "loss": 1.930438232421875, + "step": 224800 + }, + { + "epoch": 29.986666666666668, + "grad_norm": 0.6249135136604309, + "learning_rate": 3.50134e-05, + "loss": 1.9307928466796875, + "step": 224900 + }, + { + "epoch": 30.0, + "grad_norm": 0.6104187965393066, + "learning_rate": 3.500673333333334e-05, + "loss": 1.9333016967773438, + "step": 225000 + }, + { + "epoch": 30.013333333333332, + "grad_norm": 0.6293696761131287, + "learning_rate": 3.500006666666667e-05, + "loss": 1.8476805114746093, + "step": 225100 + }, + { + "epoch": 30.026666666666667, + "grad_norm": 0.6297232508659363, + "learning_rate": 3.49934e-05, + "loss": 1.845593719482422, + "step": 225200 + }, + { + "epoch": 30.04, + "grad_norm": 0.6466991305351257, + "learning_rate": 3.4986733333333335e-05, + "loss": 1.8487274169921875, + "step": 225300 + }, + { + "epoch": 30.053333333333335, + "grad_norm": 0.6279363036155701, + "learning_rate": 3.498006666666667e-05, + "loss": 1.8542190551757813, + "step": 225400 + }, + { + "epoch": 30.066666666666666, + "grad_norm": 0.644621729850769, + "learning_rate": 3.49734e-05, + "loss": 1.8500912475585938, + "step": 225500 + }, + { + "epoch": 30.08, + "grad_norm": 0.6442613005638123, + "learning_rate": 3.49668e-05, + "loss": 1.8522134399414063, + "step": 225600 + }, + { + "epoch": 30.093333333333334, + "grad_norm": 0.619848370552063, + "learning_rate": 3.496013333333333e-05, + "loss": 1.8562557983398438, + "step": 225700 + }, + { + "epoch": 30.106666666666666, + "grad_norm": 0.6512423157691956, + "learning_rate": 3.495346666666667e-05, + "loss": 1.8515933227539063, + "step": 225800 + }, + { + "epoch": 30.12, + "grad_norm": 0.6524722576141357, + "learning_rate": 3.49468e-05, + "loss": 1.859434814453125, + "step": 225900 + }, + { + "epoch": 30.133333333333333, + "grad_norm": 0.6379408836364746, + "learning_rate": 3.4940133333333335e-05, + "loss": 1.8575267028808593, + "step": 226000 + }, + { + "epoch": 30.14666666666667, + "grad_norm": 0.6395164132118225, + "learning_rate": 3.493346666666667e-05, + "loss": 1.8595333862304688, + "step": 226100 + }, + { + "epoch": 30.16, + "grad_norm": 0.6441857814788818, + "learning_rate": 3.4926800000000006e-05, + "loss": 1.860304718017578, + "step": 226200 + }, + { + "epoch": 30.173333333333332, + "grad_norm": 0.6614034175872803, + "learning_rate": 3.492013333333333e-05, + "loss": 1.8629020690917968, + "step": 226300 + }, + { + "epoch": 30.186666666666667, + "grad_norm": 0.6289846897125244, + "learning_rate": 3.4913466666666664e-05, + "loss": 1.8599790954589843, + "step": 226400 + }, + { + "epoch": 30.2, + "grad_norm": 0.6655375957489014, + "learning_rate": 3.49068e-05, + "loss": 1.8705145263671874, + "step": 226500 + }, + { + "epoch": 30.213333333333335, + "grad_norm": 0.6143892407417297, + "learning_rate": 3.4900133333333335e-05, + "loss": 1.8633598327636718, + "step": 226600 + }, + { + "epoch": 30.226666666666667, + "grad_norm": 0.6168250441551208, + "learning_rate": 3.489346666666667e-05, + "loss": 1.866641845703125, + "step": 226700 + }, + { + "epoch": 30.24, + "grad_norm": 0.6689651012420654, + "learning_rate": 3.48868e-05, + "loss": 1.863162841796875, + "step": 226800 + }, + { + "epoch": 30.253333333333334, + "grad_norm": 0.6845178604125977, + "learning_rate": 3.488013333333334e-05, + "loss": 1.8685459899902344, + "step": 226900 + }, + { + "epoch": 30.266666666666666, + "grad_norm": 0.6048876047134399, + "learning_rate": 3.487346666666667e-05, + "loss": 1.8716763305664061, + "step": 227000 + }, + { + "epoch": 30.28, + "grad_norm": 0.6472257375717163, + "learning_rate": 3.4866799999999996e-05, + "loss": 1.8674250793457032, + "step": 227100 + }, + { + "epoch": 30.293333333333333, + "grad_norm": 0.6502028703689575, + "learning_rate": 3.4860133333333335e-05, + "loss": 1.8718875122070313, + "step": 227200 + }, + { + "epoch": 30.306666666666665, + "grad_norm": 0.6495829820632935, + "learning_rate": 3.485346666666667e-05, + "loss": 1.8765740966796876, + "step": 227300 + }, + { + "epoch": 30.32, + "grad_norm": 0.6474784016609192, + "learning_rate": 3.48468e-05, + "loss": 1.8689016723632812, + "step": 227400 + }, + { + "epoch": 30.333333333333332, + "grad_norm": 0.652237057685852, + "learning_rate": 3.484013333333334e-05, + "loss": 1.8737103271484374, + "step": 227500 + }, + { + "epoch": 30.346666666666668, + "grad_norm": 0.6202793717384338, + "learning_rate": 3.483346666666667e-05, + "loss": 1.8773468017578125, + "step": 227600 + }, + { + "epoch": 30.36, + "grad_norm": 0.6398950815200806, + "learning_rate": 3.482686666666667e-05, + "loss": 1.8740312194824218, + "step": 227700 + }, + { + "epoch": 30.373333333333335, + "grad_norm": 0.679435670375824, + "learning_rate": 3.48202e-05, + "loss": 1.8724604797363282, + "step": 227800 + }, + { + "epoch": 30.386666666666667, + "grad_norm": 0.6420354843139648, + "learning_rate": 3.4813533333333335e-05, + "loss": 1.8720265197753907, + "step": 227900 + }, + { + "epoch": 30.4, + "grad_norm": 0.6483940482139587, + "learning_rate": 3.4806866666666674e-05, + "loss": 1.8791566467285157, + "step": 228000 + }, + { + "epoch": 30.413333333333334, + "grad_norm": 0.6276984810829163, + "learning_rate": 3.48002e-05, + "loss": 1.8788121032714844, + "step": 228100 + }, + { + "epoch": 30.426666666666666, + "grad_norm": 0.6200658082962036, + "learning_rate": 3.479353333333333e-05, + "loss": 1.8798104858398437, + "step": 228200 + }, + { + "epoch": 30.44, + "grad_norm": 0.6153615117073059, + "learning_rate": 3.478686666666667e-05, + "loss": 1.878331298828125, + "step": 228300 + }, + { + "epoch": 30.453333333333333, + "grad_norm": 0.664184033870697, + "learning_rate": 3.47802e-05, + "loss": 1.879515380859375, + "step": 228400 + }, + { + "epoch": 30.466666666666665, + "grad_norm": 0.6094868779182434, + "learning_rate": 3.4773533333333335e-05, + "loss": 1.8832115173339843, + "step": 228500 + }, + { + "epoch": 30.48, + "grad_norm": 0.6478238701820374, + "learning_rate": 3.476686666666667e-05, + "loss": 1.8848756408691407, + "step": 228600 + }, + { + "epoch": 30.493333333333332, + "grad_norm": 0.6715877652168274, + "learning_rate": 3.4760200000000006e-05, + "loss": 1.8839694213867189, + "step": 228700 + }, + { + "epoch": 30.506666666666668, + "grad_norm": 0.65712571144104, + "learning_rate": 3.475353333333333e-05, + "loss": 1.8820346069335938, + "step": 228800 + }, + { + "epoch": 30.52, + "grad_norm": 0.6317829489707947, + "learning_rate": 3.4746866666666664e-05, + "loss": 1.8841021728515626, + "step": 228900 + }, + { + "epoch": 30.533333333333335, + "grad_norm": 0.654059886932373, + "learning_rate": 3.47402e-05, + "loss": 1.8871124267578125, + "step": 229000 + }, + { + "epoch": 30.546666666666667, + "grad_norm": 0.6421239972114563, + "learning_rate": 3.4733533333333336e-05, + "loss": 1.8896517944335938, + "step": 229100 + }, + { + "epoch": 30.56, + "grad_norm": 0.6650997996330261, + "learning_rate": 3.472686666666667e-05, + "loss": 1.8887339782714845, + "step": 229200 + }, + { + "epoch": 30.573333333333334, + "grad_norm": 0.6281959414482117, + "learning_rate": 3.47202e-05, + "loss": 1.8887667846679688, + "step": 229300 + }, + { + "epoch": 30.586666666666666, + "grad_norm": 0.6575733423233032, + "learning_rate": 3.471353333333334e-05, + "loss": 1.889744110107422, + "step": 229400 + }, + { + "epoch": 30.6, + "grad_norm": 0.6337116360664368, + "learning_rate": 3.470686666666667e-05, + "loss": 1.8880189514160157, + "step": 229500 + }, + { + "epoch": 30.613333333333333, + "grad_norm": 0.6612198948860168, + "learning_rate": 3.47002e-05, + "loss": 1.8879634094238282, + "step": 229600 + }, + { + "epoch": 30.626666666666665, + "grad_norm": 0.6376072764396667, + "learning_rate": 3.46936e-05, + "loss": 1.8931094360351564, + "step": 229700 + }, + { + "epoch": 30.64, + "grad_norm": 0.6279535889625549, + "learning_rate": 3.4686933333333335e-05, + "loss": 1.890915069580078, + "step": 229800 + }, + { + "epoch": 30.653333333333332, + "grad_norm": 0.6393465399742126, + "learning_rate": 3.468026666666667e-05, + "loss": 1.889798583984375, + "step": 229900 + }, + { + "epoch": 30.666666666666668, + "grad_norm": 0.6623516082763672, + "learning_rate": 3.46736e-05, + "loss": 1.8915354919433593, + "step": 230000 + }, + { + "epoch": 30.68, + "grad_norm": 0.628612756729126, + "learning_rate": 3.466693333333333e-05, + "loss": 1.8947076416015625, + "step": 230100 + }, + { + "epoch": 30.693333333333335, + "grad_norm": 0.6295715570449829, + "learning_rate": 3.466026666666667e-05, + "loss": 1.8961087036132813, + "step": 230200 + }, + { + "epoch": 30.706666666666667, + "grad_norm": 0.6464623212814331, + "learning_rate": 3.46536e-05, + "loss": 1.8944891357421876, + "step": 230300 + }, + { + "epoch": 30.72, + "grad_norm": 0.6213361620903015, + "learning_rate": 3.4646933333333335e-05, + "loss": 1.8963340759277343, + "step": 230400 + }, + { + "epoch": 30.733333333333334, + "grad_norm": 0.6335080862045288, + "learning_rate": 3.464026666666667e-05, + "loss": 1.8955998229980469, + "step": 230500 + }, + { + "epoch": 30.746666666666666, + "grad_norm": 0.6538170576095581, + "learning_rate": 3.46336e-05, + "loss": 1.895076141357422, + "step": 230600 + }, + { + "epoch": 30.76, + "grad_norm": 0.6481654047966003, + "learning_rate": 3.462693333333333e-05, + "loss": 1.896536865234375, + "step": 230700 + }, + { + "epoch": 30.773333333333333, + "grad_norm": 0.6416306495666504, + "learning_rate": 3.4620266666666664e-05, + "loss": 1.8968507385253905, + "step": 230800 + }, + { + "epoch": 30.786666666666665, + "grad_norm": 0.6325493454933167, + "learning_rate": 3.4613600000000003e-05, + "loss": 1.8965896606445312, + "step": 230900 + }, + { + "epoch": 30.8, + "grad_norm": 0.6334678530693054, + "learning_rate": 3.4606933333333336e-05, + "loss": 1.8993826293945313, + "step": 231000 + }, + { + "epoch": 30.813333333333333, + "grad_norm": 0.642789363861084, + "learning_rate": 3.460026666666667e-05, + "loss": 1.899892578125, + "step": 231100 + }, + { + "epoch": 30.826666666666668, + "grad_norm": 0.6502810716629028, + "learning_rate": 3.459360000000001e-05, + "loss": 1.9054344177246094, + "step": 231200 + }, + { + "epoch": 30.84, + "grad_norm": 0.6091868281364441, + "learning_rate": 3.458693333333333e-05, + "loss": 1.9026506042480469, + "step": 231300 + }, + { + "epoch": 30.85333333333333, + "grad_norm": 0.656499981880188, + "learning_rate": 3.4580266666666665e-05, + "loss": 1.9024732971191407, + "step": 231400 + }, + { + "epoch": 30.866666666666667, + "grad_norm": 0.6632031202316284, + "learning_rate": 3.45736e-05, + "loss": 1.9011004638671876, + "step": 231500 + }, + { + "epoch": 30.88, + "grad_norm": 0.6348013281822205, + "learning_rate": 3.4566933333333336e-05, + "loss": 1.9027983093261718, + "step": 231600 + }, + { + "epoch": 30.893333333333334, + "grad_norm": 0.6693485975265503, + "learning_rate": 3.4560333333333335e-05, + "loss": 1.9033485412597657, + "step": 231700 + }, + { + "epoch": 30.906666666666666, + "grad_norm": 0.628446638584137, + "learning_rate": 3.455366666666667e-05, + "loss": 1.905799102783203, + "step": 231800 + }, + { + "epoch": 30.92, + "grad_norm": 0.6061755418777466, + "learning_rate": 3.4547e-05, + "loss": 1.9038815307617187, + "step": 231900 + }, + { + "epoch": 30.933333333333334, + "grad_norm": 0.6528656482696533, + "learning_rate": 3.454033333333334e-05, + "loss": 1.8988880920410156, + "step": 232000 + }, + { + "epoch": 30.946666666666665, + "grad_norm": 0.6434139609336853, + "learning_rate": 3.453366666666667e-05, + "loss": 1.9047633361816407, + "step": 232100 + }, + { + "epoch": 30.96, + "grad_norm": 0.621820330619812, + "learning_rate": 3.4527e-05, + "loss": 1.906195068359375, + "step": 232200 + }, + { + "epoch": 30.973333333333333, + "grad_norm": 0.6167011857032776, + "learning_rate": 3.4520333333333336e-05, + "loss": 1.9075782775878907, + "step": 232300 + }, + { + "epoch": 30.986666666666668, + "grad_norm": 0.6764289736747742, + "learning_rate": 3.451366666666667e-05, + "loss": 1.9077426147460939, + "step": 232400 + }, + { + "epoch": 31.0, + "grad_norm": 0.6597962975502014, + "learning_rate": 3.4507e-05, + "loss": 1.9063412475585937, + "step": 232500 + }, + { + "epoch": 31.013333333333332, + "grad_norm": 0.6323487758636475, + "learning_rate": 3.450033333333333e-05, + "loss": 1.8208100891113281, + "step": 232600 + }, + { + "epoch": 31.026666666666667, + "grad_norm": 0.6353087425231934, + "learning_rate": 3.449366666666667e-05, + "loss": 1.8169317626953125, + "step": 232700 + }, + { + "epoch": 31.04, + "grad_norm": 0.6516137719154358, + "learning_rate": 3.4487000000000004e-05, + "loss": 1.8187254333496095, + "step": 232800 + }, + { + "epoch": 31.053333333333335, + "grad_norm": 0.6380991339683533, + "learning_rate": 3.4480333333333336e-05, + "loss": 1.828922119140625, + "step": 232900 + }, + { + "epoch": 31.066666666666666, + "grad_norm": 0.6637365221977234, + "learning_rate": 3.447366666666667e-05, + "loss": 1.8281976318359374, + "step": 233000 + }, + { + "epoch": 31.08, + "grad_norm": 0.6347978115081787, + "learning_rate": 3.4467e-05, + "loss": 1.8291136169433593, + "step": 233100 + }, + { + "epoch": 31.093333333333334, + "grad_norm": 0.6856868863105774, + "learning_rate": 3.446033333333333e-05, + "loss": 1.8266050720214844, + "step": 233200 + }, + { + "epoch": 31.106666666666666, + "grad_norm": 0.6957641839981079, + "learning_rate": 3.4453666666666665e-05, + "loss": 1.8307728576660156, + "step": 233300 + }, + { + "epoch": 31.12, + "grad_norm": 0.657038688659668, + "learning_rate": 3.4447000000000004e-05, + "loss": 1.8359172058105468, + "step": 233400 + }, + { + "epoch": 31.133333333333333, + "grad_norm": 0.6168066263198853, + "learning_rate": 3.4440333333333336e-05, + "loss": 1.8327171325683593, + "step": 233500 + }, + { + "epoch": 31.14666666666667, + "grad_norm": 0.6589761972427368, + "learning_rate": 3.443366666666667e-05, + "loss": 1.8356471252441406, + "step": 233600 + }, + { + "epoch": 31.16, + "grad_norm": 0.656284749507904, + "learning_rate": 3.442706666666667e-05, + "loss": 1.8352957153320313, + "step": 233700 + }, + { + "epoch": 31.173333333333332, + "grad_norm": 0.6507891416549683, + "learning_rate": 3.44204e-05, + "loss": 1.8356683349609375, + "step": 233800 + }, + { + "epoch": 31.186666666666667, + "grad_norm": 0.6691421270370483, + "learning_rate": 3.441373333333334e-05, + "loss": 1.8375747680664063, + "step": 233900 + }, + { + "epoch": 31.2, + "grad_norm": 0.6770158410072327, + "learning_rate": 3.440706666666667e-05, + "loss": 1.8438589477539062, + "step": 234000 + }, + { + "epoch": 31.213333333333335, + "grad_norm": 0.6403542160987854, + "learning_rate": 3.44004e-05, + "loss": 1.8394532775878907, + "step": 234100 + }, + { + "epoch": 31.226666666666667, + "grad_norm": 0.6421419978141785, + "learning_rate": 3.4393733333333336e-05, + "loss": 1.8419064331054686, + "step": 234200 + }, + { + "epoch": 31.24, + "grad_norm": 0.6424593925476074, + "learning_rate": 3.438706666666667e-05, + "loss": 1.839052734375, + "step": 234300 + }, + { + "epoch": 31.253333333333334, + "grad_norm": 0.6520510911941528, + "learning_rate": 3.43804e-05, + "loss": 1.8442149353027344, + "step": 234400 + }, + { + "epoch": 31.266666666666666, + "grad_norm": 0.6459802985191345, + "learning_rate": 3.437373333333333e-05, + "loss": 1.8480723571777344, + "step": 234500 + }, + { + "epoch": 31.28, + "grad_norm": 0.6531192660331726, + "learning_rate": 3.436706666666667e-05, + "loss": 1.8451568603515625, + "step": 234600 + }, + { + "epoch": 31.293333333333333, + "grad_norm": 0.6506422758102417, + "learning_rate": 3.4360400000000004e-05, + "loss": 1.8467247009277343, + "step": 234700 + }, + { + "epoch": 31.306666666666665, + "grad_norm": 0.6557679176330566, + "learning_rate": 3.435373333333333e-05, + "loss": 1.8464105224609375, + "step": 234800 + }, + { + "epoch": 31.32, + "grad_norm": 0.6555748581886292, + "learning_rate": 3.434706666666667e-05, + "loss": 1.8486134338378906, + "step": 234900 + }, + { + "epoch": 31.333333333333332, + "grad_norm": 0.6634244322776794, + "learning_rate": 3.43404e-05, + "loss": 1.8502972412109375, + "step": 235000 + }, + { + "epoch": 31.346666666666668, + "grad_norm": 0.6522782444953918, + "learning_rate": 3.433373333333333e-05, + "loss": 1.8538160705566407, + "step": 235100 + }, + { + "epoch": 31.36, + "grad_norm": 0.6471147537231445, + "learning_rate": 3.4327066666666665e-05, + "loss": 1.8480146789550782, + "step": 235200 + }, + { + "epoch": 31.373333333333335, + "grad_norm": 0.6697273254394531, + "learning_rate": 3.4320400000000004e-05, + "loss": 1.8517044067382813, + "step": 235300 + }, + { + "epoch": 31.386666666666667, + "grad_norm": 0.6725065112113953, + "learning_rate": 3.4313733333333337e-05, + "loss": 1.8513163757324218, + "step": 235400 + }, + { + "epoch": 31.4, + "grad_norm": 0.6726689338684082, + "learning_rate": 3.430706666666667e-05, + "loss": 1.8532307434082032, + "step": 235500 + }, + { + "epoch": 31.413333333333334, + "grad_norm": 0.6598038673400879, + "learning_rate": 3.43004e-05, + "loss": 1.8543743896484375, + "step": 235600 + }, + { + "epoch": 31.426666666666666, + "grad_norm": 0.6628021001815796, + "learning_rate": 3.429380000000001e-05, + "loss": 1.8543577575683594, + "step": 235700 + }, + { + "epoch": 31.44, + "grad_norm": 0.677413284778595, + "learning_rate": 3.428713333333333e-05, + "loss": 1.8539126586914063, + "step": 235800 + }, + { + "epoch": 31.453333333333333, + "grad_norm": 0.6506122350692749, + "learning_rate": 3.4280466666666665e-05, + "loss": 1.8576051330566405, + "step": 235900 + }, + { + "epoch": 31.466666666666665, + "grad_norm": 0.6622093319892883, + "learning_rate": 3.42738e-05, + "loss": 1.8572665405273439, + "step": 236000 + }, + { + "epoch": 31.48, + "grad_norm": 0.674359142780304, + "learning_rate": 3.4267133333333336e-05, + "loss": 1.8588676452636719, + "step": 236100 + }, + { + "epoch": 31.493333333333332, + "grad_norm": 0.6599639058113098, + "learning_rate": 3.426046666666667e-05, + "loss": 1.8583624267578125, + "step": 236200 + }, + { + "epoch": 31.506666666666668, + "grad_norm": 0.6558268666267395, + "learning_rate": 3.42538e-05, + "loss": 1.8596633911132812, + "step": 236300 + }, + { + "epoch": 31.52, + "grad_norm": 0.6776077151298523, + "learning_rate": 3.424713333333334e-05, + "loss": 1.8617288208007812, + "step": 236400 + }, + { + "epoch": 31.533333333333335, + "grad_norm": 0.6699625253677368, + "learning_rate": 3.424046666666667e-05, + "loss": 1.8598435974121095, + "step": 236500 + }, + { + "epoch": 31.546666666666667, + "grad_norm": 0.6473347544670105, + "learning_rate": 3.42338e-05, + "loss": 1.8564553833007813, + "step": 236600 + }, + { + "epoch": 31.56, + "grad_norm": 0.6418144702911377, + "learning_rate": 3.4227133333333336e-05, + "loss": 1.8607228088378907, + "step": 236700 + }, + { + "epoch": 31.573333333333334, + "grad_norm": 0.6646478772163391, + "learning_rate": 3.422046666666667e-05, + "loss": 1.8621051025390625, + "step": 236800 + }, + { + "epoch": 31.586666666666666, + "grad_norm": 0.6577756404876709, + "learning_rate": 3.42138e-05, + "loss": 1.8664056396484374, + "step": 236900 + }, + { + "epoch": 31.6, + "grad_norm": 0.6546629667282104, + "learning_rate": 3.420713333333333e-05, + "loss": 1.8602700805664063, + "step": 237000 + }, + { + "epoch": 31.613333333333333, + "grad_norm": 0.6508590579032898, + "learning_rate": 3.420046666666667e-05, + "loss": 1.8613612365722656, + "step": 237100 + }, + { + "epoch": 31.626666666666665, + "grad_norm": 0.6625661253929138, + "learning_rate": 3.4193800000000005e-05, + "loss": 1.8683642578125, + "step": 237200 + }, + { + "epoch": 31.64, + "grad_norm": 0.6706848740577698, + "learning_rate": 3.418713333333334e-05, + "loss": 1.8645219421386718, + "step": 237300 + }, + { + "epoch": 31.653333333333332, + "grad_norm": 0.6599859595298767, + "learning_rate": 3.418046666666667e-05, + "loss": 1.8640052795410156, + "step": 237400 + }, + { + "epoch": 31.666666666666668, + "grad_norm": 0.6782610416412354, + "learning_rate": 3.41738e-05, + "loss": 1.8663507080078126, + "step": 237500 + }, + { + "epoch": 31.68, + "grad_norm": 0.6501734852790833, + "learning_rate": 3.4167133333333334e-05, + "loss": 1.864781951904297, + "step": 237600 + }, + { + "epoch": 31.693333333333335, + "grad_norm": 0.6596933603286743, + "learning_rate": 3.416053333333333e-05, + "loss": 1.8692094421386718, + "step": 237700 + }, + { + "epoch": 31.706666666666667, + "grad_norm": 0.6630842685699463, + "learning_rate": 3.4153866666666665e-05, + "loss": 1.8750367736816407, + "step": 237800 + }, + { + "epoch": 31.72, + "grad_norm": 0.6862805485725403, + "learning_rate": 3.4147200000000004e-05, + "loss": 1.8699729919433594, + "step": 237900 + }, + { + "epoch": 31.733333333333334, + "grad_norm": 0.6476590037345886, + "learning_rate": 3.4140533333333336e-05, + "loss": 1.8710263061523438, + "step": 238000 + }, + { + "epoch": 31.746666666666666, + "grad_norm": 0.6775981187820435, + "learning_rate": 3.413386666666667e-05, + "loss": 1.8723735046386718, + "step": 238100 + }, + { + "epoch": 31.76, + "grad_norm": 0.6427512168884277, + "learning_rate": 3.41272e-05, + "loss": 1.8744818115234374, + "step": 238200 + }, + { + "epoch": 31.773333333333333, + "grad_norm": 0.6625904440879822, + "learning_rate": 3.412053333333334e-05, + "loss": 1.8720915222167969, + "step": 238300 + }, + { + "epoch": 31.786666666666665, + "grad_norm": 0.6708217859268188, + "learning_rate": 3.4113866666666665e-05, + "loss": 1.8733248901367188, + "step": 238400 + }, + { + "epoch": 31.8, + "grad_norm": 0.6499980092048645, + "learning_rate": 3.41072e-05, + "loss": 1.8720248413085938, + "step": 238500 + }, + { + "epoch": 31.813333333333333, + "grad_norm": 0.6474357843399048, + "learning_rate": 3.41006e-05, + "loss": 1.875724334716797, + "step": 238600 + }, + { + "epoch": 31.826666666666668, + "grad_norm": 0.639595627784729, + "learning_rate": 3.4093933333333336e-05, + "loss": 1.8767543029785156, + "step": 238700 + }, + { + "epoch": 31.84, + "grad_norm": 0.6569827795028687, + "learning_rate": 3.408726666666667e-05, + "loss": 1.8743658447265625, + "step": 238800 + }, + { + "epoch": 31.85333333333333, + "grad_norm": 0.6573343873023987, + "learning_rate": 3.40806e-05, + "loss": 1.876455078125, + "step": 238900 + }, + { + "epoch": 31.866666666666667, + "grad_norm": 0.6686303019523621, + "learning_rate": 3.407393333333333e-05, + "loss": 1.875361785888672, + "step": 239000 + }, + { + "epoch": 31.88, + "grad_norm": 0.6887635588645935, + "learning_rate": 3.406726666666667e-05, + "loss": 1.87423583984375, + "step": 239100 + }, + { + "epoch": 31.893333333333334, + "grad_norm": 0.6796891093254089, + "learning_rate": 3.4060600000000004e-05, + "loss": 1.878402099609375, + "step": 239200 + }, + { + "epoch": 31.906666666666666, + "grad_norm": 0.7028095722198486, + "learning_rate": 3.4053933333333336e-05, + "loss": 1.879278106689453, + "step": 239300 + }, + { + "epoch": 31.92, + "grad_norm": 0.6571170687675476, + "learning_rate": 3.404726666666667e-05, + "loss": 1.8795460510253905, + "step": 239400 + }, + { + "epoch": 31.933333333333334, + "grad_norm": 0.6626359820365906, + "learning_rate": 3.40406e-05, + "loss": 1.8782347106933595, + "step": 239500 + }, + { + "epoch": 31.946666666666665, + "grad_norm": 0.6341395378112793, + "learning_rate": 3.403393333333333e-05, + "loss": 1.8807855224609376, + "step": 239600 + }, + { + "epoch": 31.96, + "grad_norm": 0.7045288681983948, + "learning_rate": 3.4027266666666665e-05, + "loss": 1.8818238830566407, + "step": 239700 + }, + { + "epoch": 31.973333333333333, + "grad_norm": 0.6587862372398376, + "learning_rate": 3.4020600000000004e-05, + "loss": 1.8825888061523437, + "step": 239800 + }, + { + "epoch": 31.986666666666668, + "grad_norm": 0.6503267288208008, + "learning_rate": 3.4013933333333337e-05, + "loss": 1.8872879028320313, + "step": 239900 + }, + { + "epoch": 32.0, + "grad_norm": 0.6603325605392456, + "learning_rate": 3.400726666666667e-05, + "loss": 1.8781341552734374, + "step": 240000 + }, + { + "epoch": 32.013333333333335, + "grad_norm": 0.6310288906097412, + "learning_rate": 3.40006e-05, + "loss": 1.7969367980957032, + "step": 240100 + }, + { + "epoch": 32.026666666666664, + "grad_norm": 0.6715329885482788, + "learning_rate": 3.399393333333333e-05, + "loss": 1.8000009155273438, + "step": 240200 + }, + { + "epoch": 32.04, + "grad_norm": 0.6543241143226624, + "learning_rate": 3.3987266666666666e-05, + "loss": 1.7961320495605468, + "step": 240300 + }, + { + "epoch": 32.053333333333335, + "grad_norm": 0.6774461269378662, + "learning_rate": 3.3980600000000005e-05, + "loss": 1.8003314208984376, + "step": 240400 + }, + { + "epoch": 32.06666666666667, + "grad_norm": 0.6529948711395264, + "learning_rate": 3.397393333333334e-05, + "loss": 1.8036393737792968, + "step": 240500 + }, + { + "epoch": 32.08, + "grad_norm": 0.6645397543907166, + "learning_rate": 3.396726666666667e-05, + "loss": 1.7999684143066406, + "step": 240600 + }, + { + "epoch": 32.093333333333334, + "grad_norm": 0.6966586112976074, + "learning_rate": 3.39606e-05, + "loss": 1.8084344482421875, + "step": 240700 + }, + { + "epoch": 32.10666666666667, + "grad_norm": 0.6967159509658813, + "learning_rate": 3.395393333333334e-05, + "loss": 1.8040733337402344, + "step": 240800 + }, + { + "epoch": 32.12, + "grad_norm": 0.6923654675483704, + "learning_rate": 3.3947266666666666e-05, + "loss": 1.8065350341796875, + "step": 240900 + }, + { + "epoch": 32.13333333333333, + "grad_norm": 0.6938139200210571, + "learning_rate": 3.39406e-05, + "loss": 1.8069944763183594, + "step": 241000 + }, + { + "epoch": 32.14666666666667, + "grad_norm": 0.6618465781211853, + "learning_rate": 3.393393333333334e-05, + "loss": 1.80832763671875, + "step": 241100 + }, + { + "epoch": 32.16, + "grad_norm": 0.681530773639679, + "learning_rate": 3.392726666666667e-05, + "loss": 1.8130369567871094, + "step": 241200 + }, + { + "epoch": 32.17333333333333, + "grad_norm": 0.692341148853302, + "learning_rate": 3.39206e-05, + "loss": 1.8068063354492188, + "step": 241300 + }, + { + "epoch": 32.18666666666667, + "grad_norm": 0.6659745573997498, + "learning_rate": 3.3913933333333334e-05, + "loss": 1.8177037048339844, + "step": 241400 + }, + { + "epoch": 32.2, + "grad_norm": 0.6756054162979126, + "learning_rate": 3.390726666666667e-05, + "loss": 1.812709503173828, + "step": 241500 + }, + { + "epoch": 32.21333333333333, + "grad_norm": 0.6909893751144409, + "learning_rate": 3.39006e-05, + "loss": 1.8146788024902343, + "step": 241600 + }, + { + "epoch": 32.22666666666667, + "grad_norm": 0.6421316266059875, + "learning_rate": 3.389393333333333e-05, + "loss": 1.8204322814941407, + "step": 241700 + }, + { + "epoch": 32.24, + "grad_norm": 0.6924384236335754, + "learning_rate": 3.388726666666667e-05, + "loss": 1.8170956420898436, + "step": 241800 + }, + { + "epoch": 32.25333333333333, + "grad_norm": 0.7075912356376648, + "learning_rate": 3.38806e-05, + "loss": 1.8158349609375, + "step": 241900 + }, + { + "epoch": 32.266666666666666, + "grad_norm": 0.698880136013031, + "learning_rate": 3.3873933333333334e-05, + "loss": 1.822403564453125, + "step": 242000 + }, + { + "epoch": 32.28, + "grad_norm": 0.6914991736412048, + "learning_rate": 3.386726666666667e-05, + "loss": 1.8238410949707031, + "step": 242100 + }, + { + "epoch": 32.29333333333334, + "grad_norm": 0.6999617218971252, + "learning_rate": 3.3860600000000006e-05, + "loss": 1.8204554748535156, + "step": 242200 + }, + { + "epoch": 32.306666666666665, + "grad_norm": 0.6469098925590515, + "learning_rate": 3.385393333333334e-05, + "loss": 1.8187814331054688, + "step": 242300 + }, + { + "epoch": 32.32, + "grad_norm": 0.6881408095359802, + "learning_rate": 3.3847266666666664e-05, + "loss": 1.823394775390625, + "step": 242400 + }, + { + "epoch": 32.333333333333336, + "grad_norm": 0.6413573622703552, + "learning_rate": 3.38406e-05, + "loss": 1.8220912170410157, + "step": 242500 + }, + { + "epoch": 32.346666666666664, + "grad_norm": 0.6949501633644104, + "learning_rate": 3.3834e-05, + "loss": 1.825587921142578, + "step": 242600 + }, + { + "epoch": 32.36, + "grad_norm": 0.6824288964271545, + "learning_rate": 3.3827333333333334e-05, + "loss": 1.8236434936523438, + "step": 242700 + }, + { + "epoch": 32.373333333333335, + "grad_norm": 0.6769747734069824, + "learning_rate": 3.3820666666666666e-05, + "loss": 1.8265499877929687, + "step": 242800 + }, + { + "epoch": 32.38666666666666, + "grad_norm": 0.663185715675354, + "learning_rate": 3.3814e-05, + "loss": 1.8235643005371094, + "step": 242900 + }, + { + "epoch": 32.4, + "grad_norm": 0.6693112254142761, + "learning_rate": 3.380733333333334e-05, + "loss": 1.830492706298828, + "step": 243000 + }, + { + "epoch": 32.413333333333334, + "grad_norm": 0.6796991229057312, + "learning_rate": 3.3800733333333337e-05, + "loss": 1.8297494506835938, + "step": 243100 + }, + { + "epoch": 32.42666666666667, + "grad_norm": 0.6557438969612122, + "learning_rate": 3.379406666666667e-05, + "loss": 1.8294140625, + "step": 243200 + }, + { + "epoch": 32.44, + "grad_norm": 0.6834737062454224, + "learning_rate": 3.37874e-05, + "loss": 1.8335061645507813, + "step": 243300 + }, + { + "epoch": 32.45333333333333, + "grad_norm": 0.6919399499893188, + "learning_rate": 3.3780733333333333e-05, + "loss": 1.829990997314453, + "step": 243400 + }, + { + "epoch": 32.46666666666667, + "grad_norm": 0.6703587174415588, + "learning_rate": 3.377406666666667e-05, + "loss": 1.8283270263671876, + "step": 243500 + }, + { + "epoch": 32.48, + "grad_norm": 0.6480154991149902, + "learning_rate": 3.37674e-05, + "loss": 1.8319325256347656, + "step": 243600 + }, + { + "epoch": 32.49333333333333, + "grad_norm": 0.6802955865859985, + "learning_rate": 3.376073333333333e-05, + "loss": 1.8309434509277345, + "step": 243700 + }, + { + "epoch": 32.50666666666667, + "grad_norm": 0.6789207458496094, + "learning_rate": 3.375406666666667e-05, + "loss": 1.8343551635742188, + "step": 243800 + }, + { + "epoch": 32.52, + "grad_norm": 0.679716169834137, + "learning_rate": 3.37474e-05, + "loss": 1.8310325622558594, + "step": 243900 + }, + { + "epoch": 32.53333333333333, + "grad_norm": 0.6787630319595337, + "learning_rate": 3.3740733333333334e-05, + "loss": 1.8323744201660157, + "step": 244000 + }, + { + "epoch": 32.54666666666667, + "grad_norm": 0.7034173011779785, + "learning_rate": 3.3734066666666666e-05, + "loss": 1.8383087158203124, + "step": 244100 + }, + { + "epoch": 32.56, + "grad_norm": 0.6853973865509033, + "learning_rate": 3.3727400000000005e-05, + "loss": 1.8405967712402345, + "step": 244200 + }, + { + "epoch": 32.57333333333333, + "grad_norm": 0.6757837533950806, + "learning_rate": 3.372073333333334e-05, + "loss": 1.8397735595703124, + "step": 244300 + }, + { + "epoch": 32.586666666666666, + "grad_norm": 0.7057570815086365, + "learning_rate": 3.371406666666666e-05, + "loss": 1.8403346252441406, + "step": 244400 + }, + { + "epoch": 32.6, + "grad_norm": 0.6852734684944153, + "learning_rate": 3.37074e-05, + "loss": 1.8357850646972655, + "step": 244500 + }, + { + "epoch": 32.61333333333333, + "grad_norm": 0.6865105628967285, + "learning_rate": 3.3700733333333334e-05, + "loss": 1.8388577270507813, + "step": 244600 + }, + { + "epoch": 32.626666666666665, + "grad_norm": 0.6819406747817993, + "learning_rate": 3.3694066666666666e-05, + "loss": 1.8388409423828125, + "step": 244700 + }, + { + "epoch": 32.64, + "grad_norm": 0.70542311668396, + "learning_rate": 3.3687400000000005e-05, + "loss": 1.8410357666015624, + "step": 244800 + }, + { + "epoch": 32.653333333333336, + "grad_norm": 0.6699349284172058, + "learning_rate": 3.368073333333334e-05, + "loss": 1.838839569091797, + "step": 244900 + }, + { + "epoch": 32.666666666666664, + "grad_norm": 0.6589396595954895, + "learning_rate": 3.367406666666667e-05, + "loss": 1.8432624816894532, + "step": 245000 + }, + { + "epoch": 32.68, + "grad_norm": 0.6670289635658264, + "learning_rate": 3.36674e-05, + "loss": 1.8423471069335937, + "step": 245100 + }, + { + "epoch": 32.693333333333335, + "grad_norm": 0.7071298956871033, + "learning_rate": 3.3660733333333335e-05, + "loss": 1.8458381652832032, + "step": 245200 + }, + { + "epoch": 32.70666666666666, + "grad_norm": 0.6842973232269287, + "learning_rate": 3.365406666666667e-05, + "loss": 1.8477865600585937, + "step": 245300 + }, + { + "epoch": 32.72, + "grad_norm": 0.6763595342636108, + "learning_rate": 3.36474e-05, + "loss": 1.8455276489257812, + "step": 245400 + }, + { + "epoch": 32.733333333333334, + "grad_norm": 0.6894487142562866, + "learning_rate": 3.364073333333334e-05, + "loss": 1.847926025390625, + "step": 245500 + }, + { + "epoch": 32.74666666666667, + "grad_norm": 0.6884575486183167, + "learning_rate": 3.363406666666667e-05, + "loss": 1.8473049926757812, + "step": 245600 + }, + { + "epoch": 32.76, + "grad_norm": 0.6874258518218994, + "learning_rate": 3.36274e-05, + "loss": 1.8455709838867187, + "step": 245700 + }, + { + "epoch": 32.77333333333333, + "grad_norm": 0.6681150197982788, + "learning_rate": 3.3620733333333335e-05, + "loss": 1.8474746704101563, + "step": 245800 + }, + { + "epoch": 32.78666666666667, + "grad_norm": 0.6818782687187195, + "learning_rate": 3.361406666666667e-05, + "loss": 1.848689727783203, + "step": 245900 + }, + { + "epoch": 32.8, + "grad_norm": 0.6926629543304443, + "learning_rate": 3.36074e-05, + "loss": 1.8480201721191407, + "step": 246000 + }, + { + "epoch": 32.81333333333333, + "grad_norm": 0.6802074313163757, + "learning_rate": 3.360073333333333e-05, + "loss": 1.8487611389160157, + "step": 246100 + }, + { + "epoch": 32.82666666666667, + "grad_norm": 0.6938923597335815, + "learning_rate": 3.359406666666667e-05, + "loss": 1.8549391174316405, + "step": 246200 + }, + { + "epoch": 32.84, + "grad_norm": 0.6887032389640808, + "learning_rate": 3.35874e-05, + "loss": 1.855552978515625, + "step": 246300 + }, + { + "epoch": 32.85333333333333, + "grad_norm": 0.6876346468925476, + "learning_rate": 3.3580733333333335e-05, + "loss": 1.8523348999023437, + "step": 246400 + }, + { + "epoch": 32.86666666666667, + "grad_norm": 0.6914822459220886, + "learning_rate": 3.357406666666667e-05, + "loss": 1.851287841796875, + "step": 246500 + }, + { + "epoch": 32.88, + "grad_norm": 0.6880086660385132, + "learning_rate": 3.35674e-05, + "loss": 1.8532257080078125, + "step": 246600 + }, + { + "epoch": 32.89333333333333, + "grad_norm": 0.6851861476898193, + "learning_rate": 3.356073333333333e-05, + "loss": 1.8526493835449218, + "step": 246700 + }, + { + "epoch": 32.906666666666666, + "grad_norm": 0.7228900194168091, + "learning_rate": 3.3554066666666664e-05, + "loss": 1.8538876342773438, + "step": 246800 + }, + { + "epoch": 32.92, + "grad_norm": 0.6968467831611633, + "learning_rate": 3.3547400000000003e-05, + "loss": 1.855828857421875, + "step": 246900 + }, + { + "epoch": 32.93333333333333, + "grad_norm": 0.6718273162841797, + "learning_rate": 3.3540733333333336e-05, + "loss": 1.8609310913085937, + "step": 247000 + }, + { + "epoch": 32.946666666666665, + "grad_norm": 0.7059205174446106, + "learning_rate": 3.3534133333333335e-05, + "loss": 1.8553521728515625, + "step": 247100 + }, + { + "epoch": 32.96, + "grad_norm": 0.6735067963600159, + "learning_rate": 3.352746666666667e-05, + "loss": 1.8593675231933593, + "step": 247200 + }, + { + "epoch": 32.973333333333336, + "grad_norm": 0.6527106165885925, + "learning_rate": 3.35208e-05, + "loss": 1.8580506896972657, + "step": 247300 + }, + { + "epoch": 32.986666666666665, + "grad_norm": 0.6713843941688538, + "learning_rate": 3.351413333333334e-05, + "loss": 1.8553984069824219, + "step": 247400 + }, + { + "epoch": 33.0, + "grad_norm": 0.6805854439735413, + "learning_rate": 3.350746666666667e-05, + "loss": 1.8589930725097656, + "step": 247500 + }, + { + "epoch": 33.013333333333335, + "grad_norm": 0.6813168525695801, + "learning_rate": 3.3500799999999996e-05, + "loss": 1.7653323364257814, + "step": 247600 + }, + { + "epoch": 33.026666666666664, + "grad_norm": 0.7006181478500366, + "learning_rate": 3.3494133333333335e-05, + "loss": 1.7744679260253906, + "step": 247700 + }, + { + "epoch": 33.04, + "grad_norm": 0.6603790521621704, + "learning_rate": 3.348746666666667e-05, + "loss": 1.7725636291503906, + "step": 247800 + }, + { + "epoch": 33.053333333333335, + "grad_norm": 0.7163404226303101, + "learning_rate": 3.34808e-05, + "loss": 1.7759190368652344, + "step": 247900 + }, + { + "epoch": 33.06666666666667, + "grad_norm": 0.6999438405036926, + "learning_rate": 3.347413333333333e-05, + "loss": 1.779423828125, + "step": 248000 + }, + { + "epoch": 33.08, + "grad_norm": 0.6900789737701416, + "learning_rate": 3.346746666666667e-05, + "loss": 1.777518768310547, + "step": 248100 + }, + { + "epoch": 33.093333333333334, + "grad_norm": 0.6616639494895935, + "learning_rate": 3.346086666666667e-05, + "loss": 1.7815655517578124, + "step": 248200 + }, + { + "epoch": 33.10666666666667, + "grad_norm": 0.6825656890869141, + "learning_rate": 3.34542e-05, + "loss": 1.7781207275390625, + "step": 248300 + }, + { + "epoch": 33.12, + "grad_norm": 0.6620200872421265, + "learning_rate": 3.3447533333333335e-05, + "loss": 1.780341796875, + "step": 248400 + }, + { + "epoch": 33.13333333333333, + "grad_norm": 0.69339919090271, + "learning_rate": 3.3440866666666674e-05, + "loss": 1.7857955932617187, + "step": 248500 + }, + { + "epoch": 33.14666666666667, + "grad_norm": 0.6670458316802979, + "learning_rate": 3.34342e-05, + "loss": 1.782757568359375, + "step": 248600 + }, + { + "epoch": 33.16, + "grad_norm": 0.6833922863006592, + "learning_rate": 3.342753333333333e-05, + "loss": 1.7865505981445313, + "step": 248700 + }, + { + "epoch": 33.17333333333333, + "grad_norm": 0.691870927810669, + "learning_rate": 3.3420866666666664e-05, + "loss": 1.7900071716308594, + "step": 248800 + }, + { + "epoch": 33.18666666666667, + "grad_norm": 0.6759406924247742, + "learning_rate": 3.34142e-05, + "loss": 1.7894091796875, + "step": 248900 + }, + { + "epoch": 33.2, + "grad_norm": 0.6733843684196472, + "learning_rate": 3.3407533333333335e-05, + "loss": 1.789012451171875, + "step": 249000 + }, + { + "epoch": 33.21333333333333, + "grad_norm": 0.6950940489768982, + "learning_rate": 3.340086666666667e-05, + "loss": 1.7880499267578125, + "step": 249100 + }, + { + "epoch": 33.22666666666667, + "grad_norm": 0.7324302792549133, + "learning_rate": 3.3394200000000006e-05, + "loss": 1.7905299377441406, + "step": 249200 + }, + { + "epoch": 33.24, + "grad_norm": 0.6907392144203186, + "learning_rate": 3.338753333333334e-05, + "loss": 1.7943400573730468, + "step": 249300 + }, + { + "epoch": 33.25333333333333, + "grad_norm": 0.7105041742324829, + "learning_rate": 3.3380866666666664e-05, + "loss": 1.7948751831054688, + "step": 249400 + }, + { + "epoch": 33.266666666666666, + "grad_norm": 0.709616482257843, + "learning_rate": 3.33742e-05, + "loss": 1.7902720642089844, + "step": 249500 + }, + { + "epoch": 33.28, + "grad_norm": 0.6986458897590637, + "learning_rate": 3.3367533333333335e-05, + "loss": 1.7960736083984374, + "step": 249600 + }, + { + "epoch": 33.29333333333334, + "grad_norm": 0.6758502125740051, + "learning_rate": 3.336086666666667e-05, + "loss": 1.7959979248046876, + "step": 249700 + }, + { + "epoch": 33.306666666666665, + "grad_norm": 0.6880955100059509, + "learning_rate": 3.33542e-05, + "loss": 1.7931544494628906, + "step": 249800 + }, + { + "epoch": 33.32, + "grad_norm": 0.7262503504753113, + "learning_rate": 3.334753333333334e-05, + "loss": 1.7994598388671874, + "step": 249900 + }, + { + "epoch": 33.333333333333336, + "grad_norm": 0.7109691500663757, + "learning_rate": 3.334086666666667e-05, + "loss": 1.79959716796875, + "step": 250000 + }, + { + "epoch": 33.346666666666664, + "grad_norm": 0.6842638850212097, + "learning_rate": 3.3334200000000003e-05, + "loss": 1.8011337280273438, + "step": 250100 + }, + { + "epoch": 33.36, + "grad_norm": 0.6685046553611755, + "learning_rate": 3.3327533333333336e-05, + "loss": 1.7983401489257813, + "step": 250200 + }, + { + "epoch": 33.373333333333335, + "grad_norm": 0.6885914206504822, + "learning_rate": 3.332086666666667e-05, + "loss": 1.7981385803222656, + "step": 250300 + }, + { + "epoch": 33.38666666666666, + "grad_norm": 0.6753001809120178, + "learning_rate": 3.33142e-05, + "loss": 1.801946258544922, + "step": 250400 + }, + { + "epoch": 33.4, + "grad_norm": 0.7187413573265076, + "learning_rate": 3.330753333333333e-05, + "loss": 1.8074136352539063, + "step": 250500 + }, + { + "epoch": 33.413333333333334, + "grad_norm": 0.6833614706993103, + "learning_rate": 3.330086666666667e-05, + "loss": 1.8049317932128905, + "step": 250600 + }, + { + "epoch": 33.42666666666667, + "grad_norm": 0.7071197032928467, + "learning_rate": 3.3294200000000004e-05, + "loss": 1.806915283203125, + "step": 250700 + }, + { + "epoch": 33.44, + "grad_norm": 0.6831562519073486, + "learning_rate": 3.3287533333333336e-05, + "loss": 1.8139138793945313, + "step": 250800 + }, + { + "epoch": 33.45333333333333, + "grad_norm": 0.6773768663406372, + "learning_rate": 3.328086666666667e-05, + "loss": 1.8078269958496094, + "step": 250900 + }, + { + "epoch": 33.46666666666667, + "grad_norm": 0.7057144045829773, + "learning_rate": 3.32742e-05, + "loss": 1.8035978698730468, + "step": 251000 + }, + { + "epoch": 33.48, + "grad_norm": 0.6799418926239014, + "learning_rate": 3.326753333333333e-05, + "loss": 1.8070053100585937, + "step": 251100 + }, + { + "epoch": 33.49333333333333, + "grad_norm": 0.7026559710502625, + "learning_rate": 3.3260866666666665e-05, + "loss": 1.8107217407226563, + "step": 251200 + }, + { + "epoch": 33.50666666666667, + "grad_norm": 0.7009078860282898, + "learning_rate": 3.3254200000000004e-05, + "loss": 1.8101768493652344, + "step": 251300 + }, + { + "epoch": 33.52, + "grad_norm": 0.6963510513305664, + "learning_rate": 3.3247533333333337e-05, + "loss": 1.8111842346191407, + "step": 251400 + }, + { + "epoch": 33.53333333333333, + "grad_norm": 0.7202256321907043, + "learning_rate": 3.324086666666667e-05, + "loss": 1.8143753051757812, + "step": 251500 + }, + { + "epoch": 33.54666666666667, + "grad_norm": 0.7055407166481018, + "learning_rate": 3.32342e-05, + "loss": 1.809178924560547, + "step": 251600 + }, + { + "epoch": 33.56, + "grad_norm": 0.6829138398170471, + "learning_rate": 3.322753333333333e-05, + "loss": 1.8132537841796874, + "step": 251700 + }, + { + "epoch": 33.57333333333333, + "grad_norm": 0.7111719250679016, + "learning_rate": 3.3220866666666666e-05, + "loss": 1.814945831298828, + "step": 251800 + }, + { + "epoch": 33.586666666666666, + "grad_norm": 0.686894953250885, + "learning_rate": 3.32142e-05, + "loss": 1.8139251708984374, + "step": 251900 + }, + { + "epoch": 33.6, + "grad_norm": 0.717078685760498, + "learning_rate": 3.320753333333334e-05, + "loss": 1.8149430847167969, + "step": 252000 + }, + { + "epoch": 33.61333333333333, + "grad_norm": 0.7175689935684204, + "learning_rate": 3.320086666666667e-05, + "loss": 1.816144256591797, + "step": 252100 + }, + { + "epoch": 33.626666666666665, + "grad_norm": 0.683018684387207, + "learning_rate": 3.319426666666667e-05, + "loss": 1.8191485595703125, + "step": 252200 + }, + { + "epoch": 33.64, + "grad_norm": 0.7148421406745911, + "learning_rate": 3.31876e-05, + "loss": 1.818320770263672, + "step": 252300 + }, + { + "epoch": 33.653333333333336, + "grad_norm": 0.7053855061531067, + "learning_rate": 3.318093333333333e-05, + "loss": 1.8194677734375, + "step": 252400 + }, + { + "epoch": 33.666666666666664, + "grad_norm": 0.7079534530639648, + "learning_rate": 3.317426666666667e-05, + "loss": 1.81727783203125, + "step": 252500 + }, + { + "epoch": 33.68, + "grad_norm": 0.7095150351524353, + "learning_rate": 3.3167600000000004e-05, + "loss": 1.8225425720214843, + "step": 252600 + }, + { + "epoch": 33.693333333333335, + "grad_norm": 0.69334477186203, + "learning_rate": 3.316093333333333e-05, + "loss": 1.8201156616210938, + "step": 252700 + }, + { + "epoch": 33.70666666666666, + "grad_norm": 0.6913406848907471, + "learning_rate": 3.315426666666667e-05, + "loss": 1.8216618347167968, + "step": 252800 + }, + { + "epoch": 33.72, + "grad_norm": 0.7094120979309082, + "learning_rate": 3.31476e-05, + "loss": 1.8205288696289061, + "step": 252900 + }, + { + "epoch": 33.733333333333334, + "grad_norm": 0.7051302790641785, + "learning_rate": 3.314093333333333e-05, + "loss": 1.8198191833496093, + "step": 253000 + }, + { + "epoch": 33.74666666666667, + "grad_norm": 0.7253535985946655, + "learning_rate": 3.313426666666667e-05, + "loss": 1.8211686706542969, + "step": 253100 + }, + { + "epoch": 33.76, + "grad_norm": 0.7110514044761658, + "learning_rate": 3.3127600000000004e-05, + "loss": 1.8267140197753906, + "step": 253200 + }, + { + "epoch": 33.77333333333333, + "grad_norm": 0.7230038046836853, + "learning_rate": 3.312093333333334e-05, + "loss": 1.8259141540527344, + "step": 253300 + }, + { + "epoch": 33.78666666666667, + "grad_norm": 0.6794722080230713, + "learning_rate": 3.311426666666667e-05, + "loss": 1.8242117309570312, + "step": 253400 + }, + { + "epoch": 33.8, + "grad_norm": 0.7026447653770447, + "learning_rate": 3.31076e-05, + "loss": 1.8272193908691405, + "step": 253500 + }, + { + "epoch": 33.81333333333333, + "grad_norm": 0.6905506253242493, + "learning_rate": 3.3100933333333334e-05, + "loss": 1.8256301879882812, + "step": 253600 + }, + { + "epoch": 33.82666666666667, + "grad_norm": 0.7163878679275513, + "learning_rate": 3.3094266666666666e-05, + "loss": 1.8273219299316406, + "step": 253700 + }, + { + "epoch": 33.84, + "grad_norm": 0.7006620764732361, + "learning_rate": 3.3087600000000005e-05, + "loss": 1.8279637145996093, + "step": 253800 + }, + { + "epoch": 33.85333333333333, + "grad_norm": 0.7368113994598389, + "learning_rate": 3.308093333333334e-05, + "loss": 1.8289633178710938, + "step": 253900 + }, + { + "epoch": 33.86666666666667, + "grad_norm": 0.7007164359092712, + "learning_rate": 3.307426666666667e-05, + "loss": 1.8291307067871094, + "step": 254000 + }, + { + "epoch": 33.88, + "grad_norm": 0.6749239563941956, + "learning_rate": 3.30676e-05, + "loss": 1.8294178771972656, + "step": 254100 + }, + { + "epoch": 33.89333333333333, + "grad_norm": 0.6939826011657715, + "learning_rate": 3.3061e-05, + "loss": 1.8320030212402343, + "step": 254200 + }, + { + "epoch": 33.906666666666666, + "grad_norm": 0.6852236390113831, + "learning_rate": 3.305433333333334e-05, + "loss": 1.8298947143554687, + "step": 254300 + }, + { + "epoch": 33.92, + "grad_norm": 0.6890901923179626, + "learning_rate": 3.3047666666666665e-05, + "loss": 1.8333465576171875, + "step": 254400 + }, + { + "epoch": 33.93333333333333, + "grad_norm": 0.6870790719985962, + "learning_rate": 3.3041e-05, + "loss": 1.8343376159667968, + "step": 254500 + }, + { + "epoch": 33.946666666666665, + "grad_norm": 0.6900056004524231, + "learning_rate": 3.3034333333333337e-05, + "loss": 1.8305508422851562, + "step": 254600 + }, + { + "epoch": 33.96, + "grad_norm": 0.725274920463562, + "learning_rate": 3.302766666666667e-05, + "loss": 1.8356878662109375, + "step": 254700 + }, + { + "epoch": 33.973333333333336, + "grad_norm": 0.7070014476776123, + "learning_rate": 3.3021e-05, + "loss": 1.8370289611816406, + "step": 254800 + }, + { + "epoch": 33.986666666666665, + "grad_norm": 0.671153724193573, + "learning_rate": 3.3014333333333333e-05, + "loss": 1.8323648071289063, + "step": 254900 + }, + { + "epoch": 34.0, + "grad_norm": 0.722389280796051, + "learning_rate": 3.300766666666667e-05, + "loss": 1.8307501220703124, + "step": 255000 + }, + { + "epoch": 34.013333333333335, + "grad_norm": 0.6944375038146973, + "learning_rate": 3.3001000000000005e-05, + "loss": 1.7463754272460938, + "step": 255100 + }, + { + "epoch": 34.026666666666664, + "grad_norm": 0.7085298895835876, + "learning_rate": 3.299433333333333e-05, + "loss": 1.7458438110351562, + "step": 255200 + }, + { + "epoch": 34.04, + "grad_norm": 0.7206888794898987, + "learning_rate": 3.298766666666667e-05, + "loss": 1.7499029541015625, + "step": 255300 + }, + { + "epoch": 34.053333333333335, + "grad_norm": 0.7031662464141846, + "learning_rate": 3.2981e-05, + "loss": 1.748662109375, + "step": 255400 + }, + { + "epoch": 34.06666666666667, + "grad_norm": 0.6964542269706726, + "learning_rate": 3.2974333333333334e-05, + "loss": 1.7524285888671876, + "step": 255500 + }, + { + "epoch": 34.08, + "grad_norm": 0.684666097164154, + "learning_rate": 3.2967666666666666e-05, + "loss": 1.7483273315429688, + "step": 255600 + }, + { + "epoch": 34.093333333333334, + "grad_norm": 0.7105111479759216, + "learning_rate": 3.2961000000000005e-05, + "loss": 1.7552597045898437, + "step": 255700 + }, + { + "epoch": 34.10666666666667, + "grad_norm": 0.7125686407089233, + "learning_rate": 3.295433333333334e-05, + "loss": 1.7612779235839844, + "step": 255800 + }, + { + "epoch": 34.12, + "grad_norm": 0.7236320972442627, + "learning_rate": 3.294766666666666e-05, + "loss": 1.7570318603515624, + "step": 255900 + }, + { + "epoch": 34.13333333333333, + "grad_norm": 0.7234290242195129, + "learning_rate": 3.2941e-05, + "loss": 1.7590721130371094, + "step": 256000 + }, + { + "epoch": 34.14666666666667, + "grad_norm": 0.709517776966095, + "learning_rate": 3.2934333333333334e-05, + "loss": 1.7588279724121094, + "step": 256100 + }, + { + "epoch": 34.16, + "grad_norm": 0.7075774669647217, + "learning_rate": 3.292773333333333e-05, + "loss": 1.7636314392089845, + "step": 256200 + }, + { + "epoch": 34.17333333333333, + "grad_norm": 0.685980498790741, + "learning_rate": 3.2921066666666666e-05, + "loss": 1.7642453002929688, + "step": 256300 + }, + { + "epoch": 34.18666666666667, + "grad_norm": 0.6789040565490723, + "learning_rate": 3.29144e-05, + "loss": 1.7647459411621094, + "step": 256400 + }, + { + "epoch": 34.2, + "grad_norm": 0.7118276357650757, + "learning_rate": 3.290773333333334e-05, + "loss": 1.7657359313964844, + "step": 256500 + }, + { + "epoch": 34.21333333333333, + "grad_norm": 0.7182782292366028, + "learning_rate": 3.290106666666667e-05, + "loss": 1.767525634765625, + "step": 256600 + }, + { + "epoch": 34.22666666666667, + "grad_norm": 0.6663193106651306, + "learning_rate": 3.28944e-05, + "loss": 1.7640966796875, + "step": 256700 + }, + { + "epoch": 34.24, + "grad_norm": 0.6728143692016602, + "learning_rate": 3.288773333333334e-05, + "loss": 1.7657148742675781, + "step": 256800 + }, + { + "epoch": 34.25333333333333, + "grad_norm": 0.7225044369697571, + "learning_rate": 3.2881066666666666e-05, + "loss": 1.771612091064453, + "step": 256900 + }, + { + "epoch": 34.266666666666666, + "grad_norm": 0.6851556897163391, + "learning_rate": 3.28744e-05, + "loss": 1.7695832824707032, + "step": 257000 + }, + { + "epoch": 34.28, + "grad_norm": 0.6964775323867798, + "learning_rate": 3.286773333333333e-05, + "loss": 1.7699888610839845, + "step": 257100 + }, + { + "epoch": 34.29333333333334, + "grad_norm": 0.708335280418396, + "learning_rate": 3.286106666666667e-05, + "loss": 1.769803009033203, + "step": 257200 + }, + { + "epoch": 34.306666666666665, + "grad_norm": 0.7314557433128357, + "learning_rate": 3.28544e-05, + "loss": 1.7759251403808594, + "step": 257300 + }, + { + "epoch": 34.32, + "grad_norm": 0.7204164862632751, + "learning_rate": 3.2847733333333334e-05, + "loss": 1.7730311584472656, + "step": 257400 + }, + { + "epoch": 34.333333333333336, + "grad_norm": 0.71314936876297, + "learning_rate": 3.284106666666667e-05, + "loss": 1.7768055725097656, + "step": 257500 + }, + { + "epoch": 34.346666666666664, + "grad_norm": 0.6884594559669495, + "learning_rate": 3.2834400000000005e-05, + "loss": 1.7790744018554687, + "step": 257600 + }, + { + "epoch": 34.36, + "grad_norm": 0.7092511653900146, + "learning_rate": 3.282773333333333e-05, + "loss": 1.7782786560058594, + "step": 257700 + }, + { + "epoch": 34.373333333333335, + "grad_norm": 0.758355438709259, + "learning_rate": 3.282106666666667e-05, + "loss": 1.7751937866210938, + "step": 257800 + }, + { + "epoch": 34.38666666666666, + "grad_norm": 0.7290791869163513, + "learning_rate": 3.28144e-05, + "loss": 1.7803231811523437, + "step": 257900 + }, + { + "epoch": 34.4, + "grad_norm": 0.7067010998725891, + "learning_rate": 3.2807733333333334e-05, + "loss": 1.7779922485351562, + "step": 258000 + }, + { + "epoch": 34.413333333333334, + "grad_norm": 0.7042437791824341, + "learning_rate": 3.280106666666667e-05, + "loss": 1.7828672790527345, + "step": 258100 + }, + { + "epoch": 34.42666666666667, + "grad_norm": 0.7334814667701721, + "learning_rate": 3.2794466666666666e-05, + "loss": 1.7837445068359374, + "step": 258200 + }, + { + "epoch": 34.44, + "grad_norm": 0.6984947919845581, + "learning_rate": 3.2787800000000005e-05, + "loss": 1.7827430725097657, + "step": 258300 + }, + { + "epoch": 34.45333333333333, + "grad_norm": 0.7189805507659912, + "learning_rate": 3.278113333333334e-05, + "loss": 1.7818618774414063, + "step": 258400 + }, + { + "epoch": 34.46666666666667, + "grad_norm": 0.7172175049781799, + "learning_rate": 3.277446666666667e-05, + "loss": 1.786385040283203, + "step": 258500 + }, + { + "epoch": 34.48, + "grad_norm": 0.6976024508476257, + "learning_rate": 3.27678e-05, + "loss": 1.7863441467285157, + "step": 258600 + }, + { + "epoch": 34.49333333333333, + "grad_norm": 0.7336111664772034, + "learning_rate": 3.2761133333333334e-05, + "loss": 1.7882395935058595, + "step": 258700 + }, + { + "epoch": 34.50666666666667, + "grad_norm": 0.7398297190666199, + "learning_rate": 3.2754466666666666e-05, + "loss": 1.7881121826171875, + "step": 258800 + }, + { + "epoch": 34.52, + "grad_norm": 0.7262130379676819, + "learning_rate": 3.27478e-05, + "loss": 1.7835282897949218, + "step": 258900 + }, + { + "epoch": 34.53333333333333, + "grad_norm": 0.7167975306510925, + "learning_rate": 3.274113333333334e-05, + "loss": 1.7948524475097656, + "step": 259000 + }, + { + "epoch": 34.54666666666667, + "grad_norm": 0.7211325764656067, + "learning_rate": 3.273446666666667e-05, + "loss": 1.7875064086914063, + "step": 259100 + }, + { + "epoch": 34.56, + "grad_norm": 0.7152880430221558, + "learning_rate": 3.27278e-05, + "loss": 1.7891029357910155, + "step": 259200 + }, + { + "epoch": 34.57333333333333, + "grad_norm": 0.6966748833656311, + "learning_rate": 3.2721133333333334e-05, + "loss": 1.792362823486328, + "step": 259300 + }, + { + "epoch": 34.586666666666666, + "grad_norm": 0.7045295238494873, + "learning_rate": 3.2714466666666667e-05, + "loss": 1.7886041259765626, + "step": 259400 + }, + { + "epoch": 34.6, + "grad_norm": 0.7518943548202515, + "learning_rate": 3.27078e-05, + "loss": 1.7914320373535155, + "step": 259500 + }, + { + "epoch": 34.61333333333333, + "grad_norm": 0.7086119651794434, + "learning_rate": 3.2701200000000005e-05, + "loss": 1.7893756103515626, + "step": 259600 + }, + { + "epoch": 34.626666666666665, + "grad_norm": 0.7113426923751831, + "learning_rate": 3.269453333333333e-05, + "loss": 1.7912899780273437, + "step": 259700 + }, + { + "epoch": 34.64, + "grad_norm": 0.7117241621017456, + "learning_rate": 3.268786666666667e-05, + "loss": 1.7933538818359376, + "step": 259800 + }, + { + "epoch": 34.653333333333336, + "grad_norm": 0.7044850587844849, + "learning_rate": 3.26812e-05, + "loss": 1.7952735900878907, + "step": 259900 + }, + { + "epoch": 34.666666666666664, + "grad_norm": 0.7023999691009521, + "learning_rate": 3.2674533333333334e-05, + "loss": 1.7962698364257812, + "step": 260000 + }, + { + "epoch": 34.68, + "grad_norm": 0.7212279438972473, + "learning_rate": 3.2667866666666666e-05, + "loss": 1.795453338623047, + "step": 260100 + }, + { + "epoch": 34.693333333333335, + "grad_norm": 0.7294625043869019, + "learning_rate": 3.2661200000000005e-05, + "loss": 1.8032328796386718, + "step": 260200 + }, + { + "epoch": 34.70666666666666, + "grad_norm": 0.7199930548667908, + "learning_rate": 3.265453333333334e-05, + "loss": 1.7969496154785156, + "step": 260300 + }, + { + "epoch": 34.72, + "grad_norm": 0.7424473166465759, + "learning_rate": 3.264786666666666e-05, + "loss": 1.8003564453125, + "step": 260400 + }, + { + "epoch": 34.733333333333334, + "grad_norm": 0.6995416283607483, + "learning_rate": 3.26412e-05, + "loss": 1.8012725830078125, + "step": 260500 + }, + { + "epoch": 34.74666666666667, + "grad_norm": 0.712614893913269, + "learning_rate": 3.2634533333333334e-05, + "loss": 1.79720458984375, + "step": 260600 + }, + { + "epoch": 34.76, + "grad_norm": 0.7090932130813599, + "learning_rate": 3.2627866666666666e-05, + "loss": 1.796382598876953, + "step": 260700 + }, + { + "epoch": 34.77333333333333, + "grad_norm": 0.715495765209198, + "learning_rate": 3.26212e-05, + "loss": 1.8014085388183594, + "step": 260800 + }, + { + "epoch": 34.78666666666667, + "grad_norm": 0.6967054009437561, + "learning_rate": 3.261453333333334e-05, + "loss": 1.8019192504882813, + "step": 260900 + }, + { + "epoch": 34.8, + "grad_norm": 0.7249776124954224, + "learning_rate": 3.260786666666667e-05, + "loss": 1.8009378051757812, + "step": 261000 + }, + { + "epoch": 34.81333333333333, + "grad_norm": 0.7215238213539124, + "learning_rate": 3.26012e-05, + "loss": 1.8022233581542968, + "step": 261100 + }, + { + "epoch": 34.82666666666667, + "grad_norm": 0.6885356903076172, + "learning_rate": 3.2594533333333334e-05, + "loss": 1.8026568603515625, + "step": 261200 + }, + { + "epoch": 34.84, + "grad_norm": 0.732446551322937, + "learning_rate": 3.258786666666667e-05, + "loss": 1.8067509460449218, + "step": 261300 + }, + { + "epoch": 34.85333333333333, + "grad_norm": 0.7237669229507446, + "learning_rate": 3.25812e-05, + "loss": 1.8049159240722656, + "step": 261400 + }, + { + "epoch": 34.86666666666667, + "grad_norm": 0.7220719456672668, + "learning_rate": 3.257453333333334e-05, + "loss": 1.8078208923339845, + "step": 261500 + }, + { + "epoch": 34.88, + "grad_norm": 0.7088682651519775, + "learning_rate": 3.256786666666667e-05, + "loss": 1.8080841064453126, + "step": 261600 + }, + { + "epoch": 34.89333333333333, + "grad_norm": 0.7922437787055969, + "learning_rate": 3.25612e-05, + "loss": 1.8082931518554688, + "step": 261700 + }, + { + "epoch": 34.906666666666666, + "grad_norm": 0.707200825214386, + "learning_rate": 3.25546e-05, + "loss": 1.8050637817382813, + "step": 261800 + }, + { + "epoch": 34.92, + "grad_norm": 0.7059547305107117, + "learning_rate": 3.2547933333333334e-05, + "loss": 1.8101914978027345, + "step": 261900 + }, + { + "epoch": 34.93333333333333, + "grad_norm": 0.7146642804145813, + "learning_rate": 3.254126666666667e-05, + "loss": 1.8113522338867187, + "step": 262000 + }, + { + "epoch": 34.946666666666665, + "grad_norm": 0.7141034603118896, + "learning_rate": 3.2534600000000005e-05, + "loss": 1.8065060424804686, + "step": 262100 + }, + { + "epoch": 34.96, + "grad_norm": 0.7005040645599365, + "learning_rate": 3.252793333333333e-05, + "loss": 1.8118878173828126, + "step": 262200 + }, + { + "epoch": 34.973333333333336, + "grad_norm": 0.6977455019950867, + "learning_rate": 3.252126666666667e-05, + "loss": 1.8072309875488282, + "step": 262300 + }, + { + "epoch": 34.986666666666665, + "grad_norm": 0.7083906531333923, + "learning_rate": 3.25146e-05, + "loss": 1.8132292175292968, + "step": 262400 + }, + { + "epoch": 35.0, + "grad_norm": 0.7053395509719849, + "learning_rate": 3.2507933333333334e-05, + "loss": 1.810267333984375, + "step": 262500 + }, + { + "epoch": 35.013333333333335, + "grad_norm": 0.7179415225982666, + "learning_rate": 3.2501266666666667e-05, + "loss": 1.720147705078125, + "step": 262600 + }, + { + "epoch": 35.026666666666664, + "grad_norm": 0.6983874440193176, + "learning_rate": 3.2494600000000006e-05, + "loss": 1.7274235534667968, + "step": 262700 + }, + { + "epoch": 35.04, + "grad_norm": 0.7099409699440002, + "learning_rate": 3.248793333333334e-05, + "loss": 1.7269102478027343, + "step": 262800 + }, + { + "epoch": 35.053333333333335, + "grad_norm": 0.7118650674819946, + "learning_rate": 3.248126666666667e-05, + "loss": 1.7248257446289061, + "step": 262900 + }, + { + "epoch": 35.06666666666667, + "grad_norm": 0.7239251136779785, + "learning_rate": 3.24746e-05, + "loss": 1.7289593505859375, + "step": 263000 + }, + { + "epoch": 35.08, + "grad_norm": 0.7100144624710083, + "learning_rate": 3.2467933333333335e-05, + "loss": 1.7312472534179688, + "step": 263100 + }, + { + "epoch": 35.093333333333334, + "grad_norm": 0.7234798669815063, + "learning_rate": 3.246126666666667e-05, + "loss": 1.73094970703125, + "step": 263200 + }, + { + "epoch": 35.10666666666667, + "grad_norm": 0.6909958124160767, + "learning_rate": 3.24546e-05, + "loss": 1.736466522216797, + "step": 263300 + }, + { + "epoch": 35.12, + "grad_norm": 0.7305464148521423, + "learning_rate": 3.244793333333334e-05, + "loss": 1.7368101501464843, + "step": 263400 + }, + { + "epoch": 35.13333333333333, + "grad_norm": 0.716325044631958, + "learning_rate": 3.244126666666667e-05, + "loss": 1.7344117736816407, + "step": 263500 + }, + { + "epoch": 35.14666666666667, + "grad_norm": 0.7322099208831787, + "learning_rate": 3.24346e-05, + "loss": 1.7373164367675782, + "step": 263600 + }, + { + "epoch": 35.16, + "grad_norm": 0.7618185877799988, + "learning_rate": 3.2427933333333335e-05, + "loss": 1.7396737670898437, + "step": 263700 + }, + { + "epoch": 35.17333333333333, + "grad_norm": 0.7051612138748169, + "learning_rate": 3.242126666666667e-05, + "loss": 1.7394839477539064, + "step": 263800 + }, + { + "epoch": 35.18666666666667, + "grad_norm": 0.6973703503608704, + "learning_rate": 3.24146e-05, + "loss": 1.7405155944824218, + "step": 263900 + }, + { + "epoch": 35.2, + "grad_norm": 0.7270771265029907, + "learning_rate": 3.240793333333333e-05, + "loss": 1.742344970703125, + "step": 264000 + }, + { + "epoch": 35.21333333333333, + "grad_norm": 0.7269550561904907, + "learning_rate": 3.240126666666667e-05, + "loss": 1.7401051330566406, + "step": 264100 + }, + { + "epoch": 35.22666666666667, + "grad_norm": 0.7064307928085327, + "learning_rate": 3.23946e-05, + "loss": 1.742832489013672, + "step": 264200 + }, + { + "epoch": 35.24, + "grad_norm": 0.6901838779449463, + "learning_rate": 3.2387933333333335e-05, + "loss": 1.7487083435058595, + "step": 264300 + }, + { + "epoch": 35.25333333333333, + "grad_norm": 0.7132669687271118, + "learning_rate": 3.238126666666667e-05, + "loss": 1.7473236083984376, + "step": 264400 + }, + { + "epoch": 35.266666666666666, + "grad_norm": 0.7222061157226562, + "learning_rate": 3.23746e-05, + "loss": 1.7487094116210937, + "step": 264500 + }, + { + "epoch": 35.28, + "grad_norm": 0.7056880593299866, + "learning_rate": 3.236793333333333e-05, + "loss": 1.7457852172851562, + "step": 264600 + }, + { + "epoch": 35.29333333333334, + "grad_norm": 0.7410815954208374, + "learning_rate": 3.2361266666666665e-05, + "loss": 1.7503875732421874, + "step": 264700 + }, + { + "epoch": 35.306666666666665, + "grad_norm": 0.7270119786262512, + "learning_rate": 3.2354600000000004e-05, + "loss": 1.7513735961914063, + "step": 264800 + }, + { + "epoch": 35.32, + "grad_norm": 0.7054768204689026, + "learning_rate": 3.2347933333333336e-05, + "loss": 1.7556321716308594, + "step": 264900 + }, + { + "epoch": 35.333333333333336, + "grad_norm": 0.7149020433425903, + "learning_rate": 3.234126666666667e-05, + "loss": 1.7507872009277343, + "step": 265000 + }, + { + "epoch": 35.346666666666664, + "grad_norm": 0.7018755674362183, + "learning_rate": 3.23346e-05, + "loss": 1.7512226867675782, + "step": 265100 + }, + { + "epoch": 35.36, + "grad_norm": 0.7539740204811096, + "learning_rate": 3.232793333333333e-05, + "loss": 1.751693115234375, + "step": 265200 + }, + { + "epoch": 35.373333333333335, + "grad_norm": 0.7125043869018555, + "learning_rate": 3.2321266666666665e-05, + "loss": 1.751684112548828, + "step": 265300 + }, + { + "epoch": 35.38666666666666, + "grad_norm": 0.7284225821495056, + "learning_rate": 3.23146e-05, + "loss": 1.7530982971191407, + "step": 265400 + }, + { + "epoch": 35.4, + "grad_norm": 0.7372731566429138, + "learning_rate": 3.2307933333333336e-05, + "loss": 1.7575666809082031, + "step": 265500 + }, + { + "epoch": 35.413333333333334, + "grad_norm": 0.7320109009742737, + "learning_rate": 3.230126666666667e-05, + "loss": 1.7619415283203126, + "step": 265600 + }, + { + "epoch": 35.42666666666667, + "grad_norm": 0.715881884098053, + "learning_rate": 3.22946e-05, + "loss": 1.75659912109375, + "step": 265700 + }, + { + "epoch": 35.44, + "grad_norm": 0.7461238503456116, + "learning_rate": 3.2288e-05, + "loss": 1.7591160583496093, + "step": 265800 + }, + { + "epoch": 35.45333333333333, + "grad_norm": 0.751312255859375, + "learning_rate": 3.228133333333334e-05, + "loss": 1.761936492919922, + "step": 265900 + }, + { + "epoch": 35.46666666666667, + "grad_norm": 0.7453945279121399, + "learning_rate": 3.227466666666667e-05, + "loss": 1.7588221740722656, + "step": 266000 + }, + { + "epoch": 35.48, + "grad_norm": 0.7304133176803589, + "learning_rate": 3.2268000000000003e-05, + "loss": 1.7641864013671875, + "step": 266100 + }, + { + "epoch": 35.49333333333333, + "grad_norm": 0.7159408926963806, + "learning_rate": 3.226133333333333e-05, + "loss": 1.763712158203125, + "step": 266200 + }, + { + "epoch": 35.50666666666667, + "grad_norm": 0.7238728404045105, + "learning_rate": 3.225466666666667e-05, + "loss": 1.766953582763672, + "step": 266300 + }, + { + "epoch": 35.52, + "grad_norm": 0.7204245924949646, + "learning_rate": 3.2248e-05, + "loss": 1.7641201782226563, + "step": 266400 + }, + { + "epoch": 35.53333333333333, + "grad_norm": 0.7490574717521667, + "learning_rate": 3.224133333333333e-05, + "loss": 1.7628182983398437, + "step": 266500 + }, + { + "epoch": 35.54666666666667, + "grad_norm": 0.7318447232246399, + "learning_rate": 3.223466666666667e-05, + "loss": 1.768040008544922, + "step": 266600 + }, + { + "epoch": 35.56, + "grad_norm": 0.7002058625221252, + "learning_rate": 3.2228000000000004e-05, + "loss": 1.7642034912109374, + "step": 266700 + }, + { + "epoch": 35.57333333333333, + "grad_norm": 0.7356955409049988, + "learning_rate": 3.2221333333333336e-05, + "loss": 1.765457000732422, + "step": 266800 + }, + { + "epoch": 35.586666666666666, + "grad_norm": 0.7351566553115845, + "learning_rate": 3.2214733333333335e-05, + "loss": 1.7657107543945312, + "step": 266900 + }, + { + "epoch": 35.6, + "grad_norm": 0.7202064394950867, + "learning_rate": 3.220806666666667e-05, + "loss": 1.7705520629882812, + "step": 267000 + }, + { + "epoch": 35.61333333333333, + "grad_norm": 0.7428541779518127, + "learning_rate": 3.2201400000000006e-05, + "loss": 1.769801483154297, + "step": 267100 + }, + { + "epoch": 35.626666666666665, + "grad_norm": 0.7157596349716187, + "learning_rate": 3.219473333333333e-05, + "loss": 1.769151153564453, + "step": 267200 + }, + { + "epoch": 35.64, + "grad_norm": 0.7332503199577332, + "learning_rate": 3.2188066666666664e-05, + "loss": 1.7689814758300781, + "step": 267300 + }, + { + "epoch": 35.653333333333336, + "grad_norm": 0.7052285075187683, + "learning_rate": 3.21814e-05, + "loss": 1.7711866760253907, + "step": 267400 + }, + { + "epoch": 35.666666666666664, + "grad_norm": 0.7430896162986755, + "learning_rate": 3.2174733333333336e-05, + "loss": 1.7715708923339843, + "step": 267500 + }, + { + "epoch": 35.68, + "grad_norm": 0.7421042323112488, + "learning_rate": 3.216806666666667e-05, + "loss": 1.7714950561523437, + "step": 267600 + }, + { + "epoch": 35.693333333333335, + "grad_norm": 0.7241594791412354, + "learning_rate": 3.21614e-05, + "loss": 1.7752314758300782, + "step": 267700 + }, + { + "epoch": 35.70666666666666, + "grad_norm": 0.6929828524589539, + "learning_rate": 3.215473333333334e-05, + "loss": 1.778212127685547, + "step": 267800 + }, + { + "epoch": 35.72, + "grad_norm": 0.7369002103805542, + "learning_rate": 3.214806666666667e-05, + "loss": 1.774071502685547, + "step": 267900 + }, + { + "epoch": 35.733333333333334, + "grad_norm": 0.7390934824943542, + "learning_rate": 3.21414e-05, + "loss": 1.7779090881347657, + "step": 268000 + }, + { + "epoch": 35.74666666666667, + "grad_norm": 0.7036294341087341, + "learning_rate": 3.2134733333333336e-05, + "loss": 1.77925537109375, + "step": 268100 + }, + { + "epoch": 35.76, + "grad_norm": 0.713968813419342, + "learning_rate": 3.212806666666667e-05, + "loss": 1.780936279296875, + "step": 268200 + }, + { + "epoch": 35.77333333333333, + "grad_norm": 0.7476961612701416, + "learning_rate": 3.21214e-05, + "loss": 1.7815696716308593, + "step": 268300 + }, + { + "epoch": 35.78666666666667, + "grad_norm": 0.7531934380531311, + "learning_rate": 3.211473333333333e-05, + "loss": 1.778701171875, + "step": 268400 + }, + { + "epoch": 35.8, + "grad_norm": 0.7263785600662231, + "learning_rate": 3.210806666666667e-05, + "loss": 1.7831895446777344, + "step": 268500 + }, + { + "epoch": 35.81333333333333, + "grad_norm": 0.7144677042961121, + "learning_rate": 3.2101400000000004e-05, + "loss": 1.7823295593261719, + "step": 268600 + }, + { + "epoch": 35.82666666666667, + "grad_norm": 0.7361660003662109, + "learning_rate": 3.209473333333333e-05, + "loss": 1.7813780212402344, + "step": 268700 + }, + { + "epoch": 35.84, + "grad_norm": 0.7294068932533264, + "learning_rate": 3.208806666666667e-05, + "loss": 1.776859588623047, + "step": 268800 + }, + { + "epoch": 35.85333333333333, + "grad_norm": 0.7189229726791382, + "learning_rate": 3.20814e-05, + "loss": 1.7815873718261719, + "step": 268900 + }, + { + "epoch": 35.86666666666667, + "grad_norm": 0.7154908180236816, + "learning_rate": 3.207473333333333e-05, + "loss": 1.7768629455566407, + "step": 269000 + }, + { + "epoch": 35.88, + "grad_norm": 0.7369889616966248, + "learning_rate": 3.2068066666666665e-05, + "loss": 1.7820993041992188, + "step": 269100 + }, + { + "epoch": 35.89333333333333, + "grad_norm": 0.7437416911125183, + "learning_rate": 3.2061400000000004e-05, + "loss": 1.7829997253417968, + "step": 269200 + }, + { + "epoch": 35.906666666666666, + "grad_norm": 0.6980392336845398, + "learning_rate": 3.2054800000000004e-05, + "loss": 1.788327178955078, + "step": 269300 + }, + { + "epoch": 35.92, + "grad_norm": 0.7489062547683716, + "learning_rate": 3.2048133333333336e-05, + "loss": 1.784275360107422, + "step": 269400 + }, + { + "epoch": 35.93333333333333, + "grad_norm": 0.7697765827178955, + "learning_rate": 3.204146666666667e-05, + "loss": 1.7840049743652344, + "step": 269500 + }, + { + "epoch": 35.946666666666665, + "grad_norm": 0.7413792014122009, + "learning_rate": 3.20348e-05, + "loss": 1.7808065795898438, + "step": 269600 + }, + { + "epoch": 35.96, + "grad_norm": 0.7363737225532532, + "learning_rate": 3.202813333333333e-05, + "loss": 1.7876707458496093, + "step": 269700 + }, + { + "epoch": 35.973333333333336, + "grad_norm": 0.7427986860275269, + "learning_rate": 3.2021466666666665e-05, + "loss": 1.786104736328125, + "step": 269800 + }, + { + "epoch": 35.986666666666665, + "grad_norm": 0.7256585359573364, + "learning_rate": 3.20148e-05, + "loss": 1.7870755004882812, + "step": 269900 + }, + { + "epoch": 36.0, + "grad_norm": 0.7233152389526367, + "learning_rate": 3.2008133333333336e-05, + "loss": 1.78588623046875, + "step": 270000 + }, + { + "epoch": 36.013333333333335, + "grad_norm": 0.711797833442688, + "learning_rate": 3.200146666666667e-05, + "loss": 1.7004847717285156, + "step": 270100 + }, + { + "epoch": 36.026666666666664, + "grad_norm": 0.7260730862617493, + "learning_rate": 3.19948e-05, + "loss": 1.701490478515625, + "step": 270200 + }, + { + "epoch": 36.04, + "grad_norm": 0.7351646423339844, + "learning_rate": 3.198813333333334e-05, + "loss": 1.70460205078125, + "step": 270300 + }, + { + "epoch": 36.053333333333335, + "grad_norm": 0.7190471291542053, + "learning_rate": 3.198146666666667e-05, + "loss": 1.6980458068847657, + "step": 270400 + }, + { + "epoch": 36.06666666666667, + "grad_norm": 0.7336345911026001, + "learning_rate": 3.19748e-05, + "loss": 1.707018585205078, + "step": 270500 + }, + { + "epoch": 36.08, + "grad_norm": 0.7053529024124146, + "learning_rate": 3.1968133333333337e-05, + "loss": 1.7060832214355468, + "step": 270600 + }, + { + "epoch": 36.093333333333334, + "grad_norm": 0.723622739315033, + "learning_rate": 3.196146666666667e-05, + "loss": 1.7135696411132812, + "step": 270700 + }, + { + "epoch": 36.10666666666667, + "grad_norm": 0.6846678853034973, + "learning_rate": 3.19548e-05, + "loss": 1.7092733764648438, + "step": 270800 + }, + { + "epoch": 36.12, + "grad_norm": 0.7483423352241516, + "learning_rate": 3.194813333333333e-05, + "loss": 1.7153257751464843, + "step": 270900 + }, + { + "epoch": 36.13333333333333, + "grad_norm": 0.7453268766403198, + "learning_rate": 3.194146666666667e-05, + "loss": 1.7127186584472656, + "step": 271000 + }, + { + "epoch": 36.14666666666667, + "grad_norm": 0.7087700963020325, + "learning_rate": 3.1934800000000005e-05, + "loss": 1.7130256652832032, + "step": 271100 + }, + { + "epoch": 36.16, + "grad_norm": 0.7314236164093018, + "learning_rate": 3.192813333333333e-05, + "loss": 1.7165345764160156, + "step": 271200 + }, + { + "epoch": 36.17333333333333, + "grad_norm": 0.7344350218772888, + "learning_rate": 3.192146666666667e-05, + "loss": 1.7190016174316407, + "step": 271300 + }, + { + "epoch": 36.18666666666667, + "grad_norm": 0.7444190979003906, + "learning_rate": 3.19148e-05, + "loss": 1.7203594970703124, + "step": 271400 + }, + { + "epoch": 36.2, + "grad_norm": 0.7286201119422913, + "learning_rate": 3.1908133333333334e-05, + "loss": 1.7190869140625, + "step": 271500 + }, + { + "epoch": 36.21333333333333, + "grad_norm": 0.7416961789131165, + "learning_rate": 3.1901466666666666e-05, + "loss": 1.7250083923339843, + "step": 271600 + }, + { + "epoch": 36.22666666666667, + "grad_norm": 0.7191265225410461, + "learning_rate": 3.1894800000000005e-05, + "loss": 1.7248774719238282, + "step": 271700 + }, + { + "epoch": 36.24, + "grad_norm": 0.7464678287506104, + "learning_rate": 3.188813333333334e-05, + "loss": 1.7244654846191407, + "step": 271800 + }, + { + "epoch": 36.25333333333333, + "grad_norm": 0.741040050983429, + "learning_rate": 3.188146666666667e-05, + "loss": 1.7217869567871094, + "step": 271900 + }, + { + "epoch": 36.266666666666666, + "grad_norm": 0.7492501735687256, + "learning_rate": 3.18748e-05, + "loss": 1.7232154846191405, + "step": 272000 + }, + { + "epoch": 36.28, + "grad_norm": 0.7506824135780334, + "learning_rate": 3.1868133333333334e-05, + "loss": 1.72467529296875, + "step": 272100 + }, + { + "epoch": 36.29333333333334, + "grad_norm": 0.7682024836540222, + "learning_rate": 3.1861466666666666e-05, + "loss": 1.7257017517089843, + "step": 272200 + }, + { + "epoch": 36.306666666666665, + "grad_norm": 0.7348060011863708, + "learning_rate": 3.18548e-05, + "loss": 1.7308767700195313, + "step": 272300 + }, + { + "epoch": 36.32, + "grad_norm": 0.7420241236686707, + "learning_rate": 3.184813333333334e-05, + "loss": 1.7316539001464843, + "step": 272400 + }, + { + "epoch": 36.333333333333336, + "grad_norm": 0.7520580291748047, + "learning_rate": 3.184146666666667e-05, + "loss": 1.7281611633300782, + "step": 272500 + }, + { + "epoch": 36.346666666666664, + "grad_norm": 0.7573596835136414, + "learning_rate": 3.18348e-05, + "loss": 1.731063995361328, + "step": 272600 + }, + { + "epoch": 36.36, + "grad_norm": 0.725255012512207, + "learning_rate": 3.1828133333333335e-05, + "loss": 1.7307705688476562, + "step": 272700 + }, + { + "epoch": 36.373333333333335, + "grad_norm": 0.7543401122093201, + "learning_rate": 3.182146666666667e-05, + "loss": 1.7375082397460937, + "step": 272800 + }, + { + "epoch": 36.38666666666666, + "grad_norm": 0.7458380460739136, + "learning_rate": 3.18148e-05, + "loss": 1.7346005249023437, + "step": 272900 + }, + { + "epoch": 36.4, + "grad_norm": 0.7144700884819031, + "learning_rate": 3.18082e-05, + "loss": 1.7303981018066406, + "step": 273000 + }, + { + "epoch": 36.413333333333334, + "grad_norm": 0.7560714483261108, + "learning_rate": 3.180153333333333e-05, + "loss": 1.7310597229003906, + "step": 273100 + }, + { + "epoch": 36.42666666666667, + "grad_norm": 0.7326061129570007, + "learning_rate": 3.179486666666667e-05, + "loss": 1.7362249755859376, + "step": 273200 + }, + { + "epoch": 36.44, + "grad_norm": 0.7293363809585571, + "learning_rate": 3.17882e-05, + "loss": 1.7362820434570312, + "step": 273300 + }, + { + "epoch": 36.45333333333333, + "grad_norm": 0.7394217252731323, + "learning_rate": 3.1781533333333334e-05, + "loss": 1.7399252319335938, + "step": 273400 + }, + { + "epoch": 36.46666666666667, + "grad_norm": 0.742487907409668, + "learning_rate": 3.1774866666666666e-05, + "loss": 1.7383834838867187, + "step": 273500 + }, + { + "epoch": 36.48, + "grad_norm": 0.7589447498321533, + "learning_rate": 3.1768200000000005e-05, + "loss": 1.7370097351074218, + "step": 273600 + }, + { + "epoch": 36.49333333333333, + "grad_norm": 0.7348843812942505, + "learning_rate": 3.176153333333334e-05, + "loss": 1.7422178649902345, + "step": 273700 + }, + { + "epoch": 36.50666666666667, + "grad_norm": 0.7847718000411987, + "learning_rate": 3.175486666666666e-05, + "loss": 1.736515350341797, + "step": 273800 + }, + { + "epoch": 36.52, + "grad_norm": 0.7392397522926331, + "learning_rate": 3.17482e-05, + "loss": 1.7417140197753906, + "step": 273900 + }, + { + "epoch": 36.53333333333333, + "grad_norm": 0.6962413787841797, + "learning_rate": 3.1741533333333334e-05, + "loss": 1.741837921142578, + "step": 274000 + }, + { + "epoch": 36.54666666666667, + "grad_norm": 0.7503619194030762, + "learning_rate": 3.173486666666667e-05, + "loss": 1.741531982421875, + "step": 274100 + }, + { + "epoch": 36.56, + "grad_norm": 0.7087076902389526, + "learning_rate": 3.1728200000000006e-05, + "loss": 1.7447845458984375, + "step": 274200 + }, + { + "epoch": 36.57333333333333, + "grad_norm": 0.7223750352859497, + "learning_rate": 3.172153333333334e-05, + "loss": 1.7459292602539063, + "step": 274300 + }, + { + "epoch": 36.586666666666666, + "grad_norm": 0.7215844392776489, + "learning_rate": 3.171486666666667e-05, + "loss": 1.7434147644042968, + "step": 274400 + }, + { + "epoch": 36.6, + "grad_norm": 0.7404847145080566, + "learning_rate": 3.1708199999999996e-05, + "loss": 1.749951171875, + "step": 274500 + }, + { + "epoch": 36.61333333333333, + "grad_norm": 0.7521648406982422, + "learning_rate": 3.1701533333333335e-05, + "loss": 1.7496371459960938, + "step": 274600 + }, + { + "epoch": 36.626666666666665, + "grad_norm": 0.7401891946792603, + "learning_rate": 3.169486666666667e-05, + "loss": 1.7497813415527343, + "step": 274700 + }, + { + "epoch": 36.64, + "grad_norm": 0.7280316948890686, + "learning_rate": 3.16882e-05, + "loss": 1.7507594299316407, + "step": 274800 + }, + { + "epoch": 36.653333333333336, + "grad_norm": 0.7239392995834351, + "learning_rate": 3.168153333333334e-05, + "loss": 1.7507579040527343, + "step": 274900 + }, + { + "epoch": 36.666666666666664, + "grad_norm": 0.7553678750991821, + "learning_rate": 3.167486666666667e-05, + "loss": 1.751461181640625, + "step": 275000 + }, + { + "epoch": 36.68, + "grad_norm": 0.7435064911842346, + "learning_rate": 3.16682e-05, + "loss": 1.7519636535644532, + "step": 275100 + }, + { + "epoch": 36.693333333333335, + "grad_norm": 0.7470516562461853, + "learning_rate": 3.1661533333333335e-05, + "loss": 1.7504707336425782, + "step": 275200 + }, + { + "epoch": 36.70666666666666, + "grad_norm": 0.74057537317276, + "learning_rate": 3.165486666666667e-05, + "loss": 1.7527505493164062, + "step": 275300 + }, + { + "epoch": 36.72, + "grad_norm": 0.7247684597969055, + "learning_rate": 3.16482e-05, + "loss": 1.7530410766601563, + "step": 275400 + }, + { + "epoch": 36.733333333333334, + "grad_norm": 0.7498241662979126, + "learning_rate": 3.16416e-05, + "loss": 1.7541891479492187, + "step": 275500 + }, + { + "epoch": 36.74666666666667, + "grad_norm": 0.7495251297950745, + "learning_rate": 3.163493333333333e-05, + "loss": 1.7568766784667968, + "step": 275600 + }, + { + "epoch": 36.76, + "grad_norm": 0.7617773413658142, + "learning_rate": 3.162826666666667e-05, + "loss": 1.7529084777832031, + "step": 275700 + }, + { + "epoch": 36.77333333333333, + "grad_norm": 0.7428836226463318, + "learning_rate": 3.16216e-05, + "loss": 1.7551524353027343, + "step": 275800 + }, + { + "epoch": 36.78666666666667, + "grad_norm": 0.7389662265777588, + "learning_rate": 3.1614933333333335e-05, + "loss": 1.7577822875976563, + "step": 275900 + }, + { + "epoch": 36.8, + "grad_norm": 0.743245542049408, + "learning_rate": 3.160826666666667e-05, + "loss": 1.75811279296875, + "step": 276000 + }, + { + "epoch": 36.81333333333333, + "grad_norm": 0.7568553686141968, + "learning_rate": 3.1601600000000006e-05, + "loss": 1.7519479370117188, + "step": 276100 + }, + { + "epoch": 36.82666666666667, + "grad_norm": 0.7454259991645813, + "learning_rate": 3.159493333333334e-05, + "loss": 1.7604170227050782, + "step": 276200 + }, + { + "epoch": 36.84, + "grad_norm": 0.7492554187774658, + "learning_rate": 3.1588266666666664e-05, + "loss": 1.7641816711425782, + "step": 276300 + }, + { + "epoch": 36.85333333333333, + "grad_norm": 0.7113311290740967, + "learning_rate": 3.15816e-05, + "loss": 1.7588400268554687, + "step": 276400 + }, + { + "epoch": 36.86666666666667, + "grad_norm": 0.764880359172821, + "learning_rate": 3.1574933333333335e-05, + "loss": 1.7627790832519532, + "step": 276500 + }, + { + "epoch": 36.88, + "grad_norm": 0.7248684167861938, + "learning_rate": 3.156826666666667e-05, + "loss": 1.7612380981445312, + "step": 276600 + }, + { + "epoch": 36.89333333333333, + "grad_norm": 0.7168259024620056, + "learning_rate": 3.15616e-05, + "loss": 1.7612693786621094, + "step": 276700 + }, + { + "epoch": 36.906666666666666, + "grad_norm": 0.7467043995857239, + "learning_rate": 3.155493333333334e-05, + "loss": 1.7591070556640624, + "step": 276800 + }, + { + "epoch": 36.92, + "grad_norm": 0.7475593686103821, + "learning_rate": 3.154826666666667e-05, + "loss": 1.7618537902832032, + "step": 276900 + }, + { + "epoch": 36.93333333333333, + "grad_norm": 0.7402468323707581, + "learning_rate": 3.1541599999999996e-05, + "loss": 1.7640028381347657, + "step": 277000 + }, + { + "epoch": 36.946666666666665, + "grad_norm": 0.7494368553161621, + "learning_rate": 3.1534933333333335e-05, + "loss": 1.7653765869140625, + "step": 277100 + }, + { + "epoch": 36.96, + "grad_norm": 0.7230552434921265, + "learning_rate": 3.152826666666667e-05, + "loss": 1.7666098022460937, + "step": 277200 + }, + { + "epoch": 36.973333333333336, + "grad_norm": 0.7665003538131714, + "learning_rate": 3.15216e-05, + "loss": 1.765568084716797, + "step": 277300 + }, + { + "epoch": 36.986666666666665, + "grad_norm": 0.7451346516609192, + "learning_rate": 3.151493333333333e-05, + "loss": 1.7677928161621095, + "step": 277400 + }, + { + "epoch": 37.0, + "grad_norm": 0.76631760597229, + "learning_rate": 3.150833333333333e-05, + "loss": 1.7689274597167968, + "step": 277500 + }, + { + "epoch": 37.013333333333335, + "grad_norm": 0.7045518755912781, + "learning_rate": 3.150166666666667e-05, + "loss": 1.6803143310546875, + "step": 277600 + }, + { + "epoch": 37.026666666666664, + "grad_norm": 0.7285835146903992, + "learning_rate": 3.1495e-05, + "loss": 1.6813021850585939, + "step": 277700 + }, + { + "epoch": 37.04, + "grad_norm": 0.7426738739013672, + "learning_rate": 3.1488333333333335e-05, + "loss": 1.681758270263672, + "step": 277800 + }, + { + "epoch": 37.053333333333335, + "grad_norm": 0.7622446417808533, + "learning_rate": 3.148166666666667e-05, + "loss": 1.6819073486328124, + "step": 277900 + }, + { + "epoch": 37.06666666666667, + "grad_norm": 0.7410486340522766, + "learning_rate": 3.1475e-05, + "loss": 1.6838929748535156, + "step": 278000 + }, + { + "epoch": 37.08, + "grad_norm": 0.7304770946502686, + "learning_rate": 3.146833333333333e-05, + "loss": 1.6852511596679687, + "step": 278100 + }, + { + "epoch": 37.093333333333334, + "grad_norm": 0.7022737264633179, + "learning_rate": 3.1461666666666664e-05, + "loss": 1.6852027893066406, + "step": 278200 + }, + { + "epoch": 37.10666666666667, + "grad_norm": 0.7408353686332703, + "learning_rate": 3.1455e-05, + "loss": 1.688455810546875, + "step": 278300 + }, + { + "epoch": 37.12, + "grad_norm": 0.7150797843933105, + "learning_rate": 3.1448333333333335e-05, + "loss": 1.6884025573730468, + "step": 278400 + }, + { + "epoch": 37.13333333333333, + "grad_norm": 0.7726892828941345, + "learning_rate": 3.144166666666667e-05, + "loss": 1.6898381042480468, + "step": 278500 + }, + { + "epoch": 37.14666666666667, + "grad_norm": 0.7211053371429443, + "learning_rate": 3.1435000000000007e-05, + "loss": 1.6924490356445312, + "step": 278600 + }, + { + "epoch": 37.16, + "grad_norm": 0.7419326305389404, + "learning_rate": 3.142833333333334e-05, + "loss": 1.689315643310547, + "step": 278700 + }, + { + "epoch": 37.17333333333333, + "grad_norm": 0.7313926219940186, + "learning_rate": 3.1421666666666664e-05, + "loss": 1.6908987426757813, + "step": 278800 + }, + { + "epoch": 37.18666666666667, + "grad_norm": 0.7286278605461121, + "learning_rate": 3.1415e-05, + "loss": 1.6980317687988282, + "step": 278900 + }, + { + "epoch": 37.2, + "grad_norm": 0.7605856657028198, + "learning_rate": 3.1408333333333336e-05, + "loss": 1.696996307373047, + "step": 279000 + }, + { + "epoch": 37.21333333333333, + "grad_norm": 0.7458546757698059, + "learning_rate": 3.140166666666667e-05, + "loss": 1.6983421325683594, + "step": 279100 + }, + { + "epoch": 37.22666666666667, + "grad_norm": 0.7429274916648865, + "learning_rate": 3.1395e-05, + "loss": 1.7024613952636718, + "step": 279200 + }, + { + "epoch": 37.24, + "grad_norm": 0.7884694337844849, + "learning_rate": 3.138833333333334e-05, + "loss": 1.7007711791992188, + "step": 279300 + }, + { + "epoch": 37.25333333333333, + "grad_norm": 0.7464330792427063, + "learning_rate": 3.138166666666667e-05, + "loss": 1.7008659362792968, + "step": 279400 + }, + { + "epoch": 37.266666666666666, + "grad_norm": 0.728084921836853, + "learning_rate": 3.1375e-05, + "loss": 1.7043988037109374, + "step": 279500 + }, + { + "epoch": 37.28, + "grad_norm": 0.7497456669807434, + "learning_rate": 3.13684e-05, + "loss": 1.7014207458496093, + "step": 279600 + }, + { + "epoch": 37.29333333333334, + "grad_norm": 0.7020012140274048, + "learning_rate": 3.1361733333333335e-05, + "loss": 1.7052900695800781, + "step": 279700 + }, + { + "epoch": 37.306666666666665, + "grad_norm": 0.739156186580658, + "learning_rate": 3.135506666666667e-05, + "loss": 1.703553466796875, + "step": 279800 + }, + { + "epoch": 37.32, + "grad_norm": 0.7595281600952148, + "learning_rate": 3.13484e-05, + "loss": 1.7069859313964844, + "step": 279900 + }, + { + "epoch": 37.333333333333336, + "grad_norm": 0.75346440076828, + "learning_rate": 3.134173333333333e-05, + "loss": 1.7072439575195313, + "step": 280000 + }, + { + "epoch": 37.346666666666664, + "grad_norm": 0.7546751499176025, + "learning_rate": 3.133506666666667e-05, + "loss": 1.7088861083984375, + "step": 280100 + }, + { + "epoch": 37.36, + "grad_norm": 0.7886497974395752, + "learning_rate": 3.13284e-05, + "loss": 1.7056680297851563, + "step": 280200 + }, + { + "epoch": 37.373333333333335, + "grad_norm": 0.743929922580719, + "learning_rate": 3.1321733333333335e-05, + "loss": 1.7099371337890625, + "step": 280300 + }, + { + "epoch": 37.38666666666666, + "grad_norm": 0.7662741541862488, + "learning_rate": 3.131506666666667e-05, + "loss": 1.7150563049316405, + "step": 280400 + }, + { + "epoch": 37.4, + "grad_norm": 0.72809898853302, + "learning_rate": 3.13084e-05, + "loss": 1.7117857360839843, + "step": 280500 + }, + { + "epoch": 37.413333333333334, + "grad_norm": 0.7383192181587219, + "learning_rate": 3.130173333333333e-05, + "loss": 1.7104786682128905, + "step": 280600 + }, + { + "epoch": 37.42666666666667, + "grad_norm": 0.755443274974823, + "learning_rate": 3.1295066666666664e-05, + "loss": 1.7123095703125, + "step": 280700 + }, + { + "epoch": 37.44, + "grad_norm": 0.7860985994338989, + "learning_rate": 3.1288400000000004e-05, + "loss": 1.7170570373535157, + "step": 280800 + }, + { + "epoch": 37.45333333333333, + "grad_norm": 0.7551179528236389, + "learning_rate": 3.1281733333333336e-05, + "loss": 1.716322021484375, + "step": 280900 + }, + { + "epoch": 37.46666666666667, + "grad_norm": 0.7542992830276489, + "learning_rate": 3.127506666666667e-05, + "loss": 1.714727783203125, + "step": 281000 + }, + { + "epoch": 37.48, + "grad_norm": 0.7533883452415466, + "learning_rate": 3.12684e-05, + "loss": 1.720811309814453, + "step": 281100 + }, + { + "epoch": 37.49333333333333, + "grad_norm": 0.7798376083374023, + "learning_rate": 3.126173333333334e-05, + "loss": 1.7136112976074218, + "step": 281200 + }, + { + "epoch": 37.50666666666667, + "grad_norm": 0.7293563485145569, + "learning_rate": 3.1255066666666665e-05, + "loss": 1.7199661254882812, + "step": 281300 + }, + { + "epoch": 37.52, + "grad_norm": 0.7498854994773865, + "learning_rate": 3.12484e-05, + "loss": 1.7169015502929688, + "step": 281400 + }, + { + "epoch": 37.53333333333333, + "grad_norm": 0.7195653915405273, + "learning_rate": 3.1241733333333336e-05, + "loss": 1.7198953247070312, + "step": 281500 + }, + { + "epoch": 37.54666666666667, + "grad_norm": 0.7342607378959656, + "learning_rate": 3.123506666666667e-05, + "loss": 1.724787139892578, + "step": 281600 + }, + { + "epoch": 37.56, + "grad_norm": 0.7618938684463501, + "learning_rate": 3.122846666666667e-05, + "loss": 1.7263723754882812, + "step": 281700 + }, + { + "epoch": 37.57333333333333, + "grad_norm": 0.73606938123703, + "learning_rate": 3.12218e-05, + "loss": 1.7267738342285157, + "step": 281800 + }, + { + "epoch": 37.586666666666666, + "grad_norm": 0.7361858487129211, + "learning_rate": 3.121513333333333e-05, + "loss": 1.7204446411132812, + "step": 281900 + }, + { + "epoch": 37.6, + "grad_norm": 0.7650215029716492, + "learning_rate": 3.120846666666667e-05, + "loss": 1.722607879638672, + "step": 282000 + }, + { + "epoch": 37.61333333333333, + "grad_norm": 0.7414928078651428, + "learning_rate": 3.12018e-05, + "loss": 1.7260256958007814, + "step": 282100 + }, + { + "epoch": 37.626666666666665, + "grad_norm": 0.7534034252166748, + "learning_rate": 3.1195133333333336e-05, + "loss": 1.726140899658203, + "step": 282200 + }, + { + "epoch": 37.64, + "grad_norm": 0.7416046857833862, + "learning_rate": 3.118846666666667e-05, + "loss": 1.7296353149414063, + "step": 282300 + }, + { + "epoch": 37.653333333333336, + "grad_norm": 0.7440157532691956, + "learning_rate": 3.11818e-05, + "loss": 1.7297128295898438, + "step": 282400 + }, + { + "epoch": 37.666666666666664, + "grad_norm": 0.7524501085281372, + "learning_rate": 3.117513333333333e-05, + "loss": 1.73589599609375, + "step": 282500 + }, + { + "epoch": 37.68, + "grad_norm": 0.757587730884552, + "learning_rate": 3.1168466666666665e-05, + "loss": 1.7298715209960938, + "step": 282600 + }, + { + "epoch": 37.693333333333335, + "grad_norm": 0.7522934675216675, + "learning_rate": 3.1161800000000004e-05, + "loss": 1.7345960998535157, + "step": 282700 + }, + { + "epoch": 37.70666666666666, + "grad_norm": 0.7544682621955872, + "learning_rate": 3.1155133333333336e-05, + "loss": 1.7308802795410156, + "step": 282800 + }, + { + "epoch": 37.72, + "grad_norm": 0.7192630171775818, + "learning_rate": 3.114846666666667e-05, + "loss": 1.7340335083007812, + "step": 282900 + }, + { + "epoch": 37.733333333333334, + "grad_norm": 0.7458509206771851, + "learning_rate": 3.11418e-05, + "loss": 1.734874267578125, + "step": 283000 + }, + { + "epoch": 37.74666666666667, + "grad_norm": 0.7439426779747009, + "learning_rate": 3.113513333333333e-05, + "loss": 1.7350709533691406, + "step": 283100 + }, + { + "epoch": 37.76, + "grad_norm": 0.7385891675949097, + "learning_rate": 3.1128466666666665e-05, + "loss": 1.730778045654297, + "step": 283200 + }, + { + "epoch": 37.77333333333333, + "grad_norm": 0.731911838054657, + "learning_rate": 3.1121800000000004e-05, + "loss": 1.7314964294433595, + "step": 283300 + }, + { + "epoch": 37.78666666666667, + "grad_norm": 0.7846623063087463, + "learning_rate": 3.1115133333333336e-05, + "loss": 1.733455352783203, + "step": 283400 + }, + { + "epoch": 37.8, + "grad_norm": 0.7687591910362244, + "learning_rate": 3.110846666666667e-05, + "loss": 1.7341983032226562, + "step": 283500 + }, + { + "epoch": 37.81333333333333, + "grad_norm": 0.7925374507904053, + "learning_rate": 3.11018e-05, + "loss": 1.7374996948242187, + "step": 283600 + }, + { + "epoch": 37.82666666666667, + "grad_norm": 0.7608065009117126, + "learning_rate": 3.109513333333334e-05, + "loss": 1.7386874389648437, + "step": 283700 + }, + { + "epoch": 37.84, + "grad_norm": 0.7788674235343933, + "learning_rate": 3.1088466666666665e-05, + "loss": 1.742396697998047, + "step": 283800 + }, + { + "epoch": 37.85333333333333, + "grad_norm": 0.7511487007141113, + "learning_rate": 3.10818e-05, + "loss": 1.7363363647460937, + "step": 283900 + }, + { + "epoch": 37.86666666666667, + "grad_norm": 0.7553167939186096, + "learning_rate": 3.107513333333334e-05, + "loss": 1.7385067749023437, + "step": 284000 + }, + { + "epoch": 37.88, + "grad_norm": 0.7409266233444214, + "learning_rate": 3.106846666666667e-05, + "loss": 1.7398283386230469, + "step": 284100 + }, + { + "epoch": 37.89333333333333, + "grad_norm": 0.7326803207397461, + "learning_rate": 3.10618e-05, + "loss": 1.738975067138672, + "step": 284200 + }, + { + "epoch": 37.906666666666666, + "grad_norm": 0.7426642179489136, + "learning_rate": 3.1055133333333334e-05, + "loss": 1.741965789794922, + "step": 284300 + }, + { + "epoch": 37.92, + "grad_norm": 0.7844317555427551, + "learning_rate": 3.104846666666667e-05, + "loss": 1.740626220703125, + "step": 284400 + }, + { + "epoch": 37.93333333333333, + "grad_norm": 0.7489057183265686, + "learning_rate": 3.1041800000000005e-05, + "loss": 1.7419303894042968, + "step": 284500 + }, + { + "epoch": 37.946666666666665, + "grad_norm": 0.766936719417572, + "learning_rate": 3.1035200000000004e-05, + "loss": 1.7452520751953124, + "step": 284600 + }, + { + "epoch": 37.96, + "grad_norm": 0.7706231474876404, + "learning_rate": 3.1028533333333336e-05, + "loss": 1.744236602783203, + "step": 284700 + }, + { + "epoch": 37.973333333333336, + "grad_norm": 0.7537173628807068, + "learning_rate": 3.102186666666667e-05, + "loss": 1.7478404235839844, + "step": 284800 + }, + { + "epoch": 37.986666666666665, + "grad_norm": 0.7413330078125, + "learning_rate": 3.10152e-05, + "loss": 1.7494500732421876, + "step": 284900 + }, + { + "epoch": 38.0, + "grad_norm": 0.7850656509399414, + "learning_rate": 3.100853333333333e-05, + "loss": 1.750704803466797, + "step": 285000 + }, + { + "epoch": 38.013333333333335, + "grad_norm": 0.7259971499443054, + "learning_rate": 3.1001866666666665e-05, + "loss": 1.6590287780761719, + "step": 285100 + }, + { + "epoch": 38.026666666666664, + "grad_norm": 0.746416449546814, + "learning_rate": 3.0995200000000004e-05, + "loss": 1.6625711059570312, + "step": 285200 + }, + { + "epoch": 38.04, + "grad_norm": 0.7898942232131958, + "learning_rate": 3.098853333333334e-05, + "loss": 1.6607310485839843, + "step": 285300 + }, + { + "epoch": 38.053333333333335, + "grad_norm": 0.7729313969612122, + "learning_rate": 3.098186666666667e-05, + "loss": 1.662105255126953, + "step": 285400 + }, + { + "epoch": 38.06666666666667, + "grad_norm": 0.7406087517738342, + "learning_rate": 3.09752e-05, + "loss": 1.6623809814453125, + "step": 285500 + }, + { + "epoch": 38.08, + "grad_norm": 0.7400987148284912, + "learning_rate": 3.0968533333333333e-05, + "loss": 1.6635809326171875, + "step": 285600 + }, + { + "epoch": 38.093333333333334, + "grad_norm": 0.7489773035049438, + "learning_rate": 3.0961866666666666e-05, + "loss": 1.6699810791015626, + "step": 285700 + }, + { + "epoch": 38.10666666666667, + "grad_norm": 0.7790253162384033, + "learning_rate": 3.09552e-05, + "loss": 1.669601287841797, + "step": 285800 + }, + { + "epoch": 38.12, + "grad_norm": 0.7665462493896484, + "learning_rate": 3.094853333333334e-05, + "loss": 1.6737181091308593, + "step": 285900 + }, + { + "epoch": 38.13333333333333, + "grad_norm": 0.7243815064430237, + "learning_rate": 3.094186666666667e-05, + "loss": 1.6687673950195312, + "step": 286000 + }, + { + "epoch": 38.14666666666667, + "grad_norm": 0.7670396566390991, + "learning_rate": 3.09352e-05, + "loss": 1.6730580139160156, + "step": 286100 + }, + { + "epoch": 38.16, + "grad_norm": 0.7733235359191895, + "learning_rate": 3.0928533333333334e-05, + "loss": 1.6757229614257811, + "step": 286200 + }, + { + "epoch": 38.17333333333333, + "grad_norm": 0.7491257190704346, + "learning_rate": 3.0921866666666666e-05, + "loss": 1.669895477294922, + "step": 286300 + }, + { + "epoch": 38.18666666666667, + "grad_norm": 0.7852340340614319, + "learning_rate": 3.09152e-05, + "loss": 1.6757810974121095, + "step": 286400 + }, + { + "epoch": 38.2, + "grad_norm": 0.7656257152557373, + "learning_rate": 3.090853333333333e-05, + "loss": 1.6795205688476562, + "step": 286500 + }, + { + "epoch": 38.21333333333333, + "grad_norm": 0.7430424094200134, + "learning_rate": 3.090186666666667e-05, + "loss": 1.6734898376464844, + "step": 286600 + }, + { + "epoch": 38.22666666666667, + "grad_norm": 0.7725613117218018, + "learning_rate": 3.089526666666667e-05, + "loss": 1.6736170959472656, + "step": 286700 + }, + { + "epoch": 38.24, + "grad_norm": 0.7913093566894531, + "learning_rate": 3.08886e-05, + "loss": 1.6843594360351561, + "step": 286800 + }, + { + "epoch": 38.25333333333333, + "grad_norm": 0.7620664238929749, + "learning_rate": 3.088193333333333e-05, + "loss": 1.6822517395019532, + "step": 286900 + }, + { + "epoch": 38.266666666666666, + "grad_norm": 0.8010652661323547, + "learning_rate": 3.087526666666667e-05, + "loss": 1.682193603515625, + "step": 287000 + }, + { + "epoch": 38.28, + "grad_norm": 0.7800931334495544, + "learning_rate": 3.0868600000000005e-05, + "loss": 1.68789794921875, + "step": 287100 + }, + { + "epoch": 38.29333333333334, + "grad_norm": 0.7320764064788818, + "learning_rate": 3.086193333333334e-05, + "loss": 1.677606201171875, + "step": 287200 + }, + { + "epoch": 38.306666666666665, + "grad_norm": 0.7963472604751587, + "learning_rate": 3.085526666666666e-05, + "loss": 1.6835293579101562, + "step": 287300 + }, + { + "epoch": 38.32, + "grad_norm": 0.7579801678657532, + "learning_rate": 3.08486e-05, + "loss": 1.6827491760253905, + "step": 287400 + }, + { + "epoch": 38.333333333333336, + "grad_norm": 0.7616518139839172, + "learning_rate": 3.0841933333333334e-05, + "loss": 1.689130859375, + "step": 287500 + }, + { + "epoch": 38.346666666666664, + "grad_norm": 0.7492512464523315, + "learning_rate": 3.0835266666666666e-05, + "loss": 1.6856808471679687, + "step": 287600 + }, + { + "epoch": 38.36, + "grad_norm": 0.7573805451393127, + "learning_rate": 3.0828600000000005e-05, + "loss": 1.690630645751953, + "step": 287700 + }, + { + "epoch": 38.373333333333335, + "grad_norm": 0.7447465062141418, + "learning_rate": 3.082193333333334e-05, + "loss": 1.689488525390625, + "step": 287800 + }, + { + "epoch": 38.38666666666666, + "grad_norm": 0.7608117461204529, + "learning_rate": 3.081526666666667e-05, + "loss": 1.6932475280761718, + "step": 287900 + }, + { + "epoch": 38.4, + "grad_norm": 0.7536253333091736, + "learning_rate": 3.08086e-05, + "loss": 1.6915469360351563, + "step": 288000 + }, + { + "epoch": 38.413333333333334, + "grad_norm": 0.754641056060791, + "learning_rate": 3.0801933333333334e-05, + "loss": 1.6956082153320313, + "step": 288100 + }, + { + "epoch": 38.42666666666667, + "grad_norm": 0.7657079696655273, + "learning_rate": 3.0795266666666666e-05, + "loss": 1.6968582153320313, + "step": 288200 + }, + { + "epoch": 38.44, + "grad_norm": 0.7657183408737183, + "learning_rate": 3.07886e-05, + "loss": 1.696566619873047, + "step": 288300 + }, + { + "epoch": 38.45333333333333, + "grad_norm": 0.7208789587020874, + "learning_rate": 3.078193333333334e-05, + "loss": 1.692105255126953, + "step": 288400 + }, + { + "epoch": 38.46666666666667, + "grad_norm": 0.774307906627655, + "learning_rate": 3.077526666666667e-05, + "loss": 1.6932823181152343, + "step": 288500 + }, + { + "epoch": 38.48, + "grad_norm": 0.7949078679084778, + "learning_rate": 3.07686e-05, + "loss": 1.6973165893554687, + "step": 288600 + }, + { + "epoch": 38.49333333333333, + "grad_norm": 0.7806784510612488, + "learning_rate": 3.0761933333333334e-05, + "loss": 1.6917153930664062, + "step": 288700 + }, + { + "epoch": 38.50666666666667, + "grad_norm": 0.7916117906570435, + "learning_rate": 3.075526666666667e-05, + "loss": 1.7009848022460938, + "step": 288800 + }, + { + "epoch": 38.52, + "grad_norm": 0.759568989276886, + "learning_rate": 3.07486e-05, + "loss": 1.7016871643066407, + "step": 288900 + }, + { + "epoch": 38.53333333333333, + "grad_norm": 0.7423282861709595, + "learning_rate": 3.0742000000000005e-05, + "loss": 1.6960887145996093, + "step": 289000 + }, + { + "epoch": 38.54666666666667, + "grad_norm": 0.7630002498626709, + "learning_rate": 3.073533333333333e-05, + "loss": 1.7025230407714844, + "step": 289100 + }, + { + "epoch": 38.56, + "grad_norm": 0.7927618026733398, + "learning_rate": 3.072866666666667e-05, + "loss": 1.7043484497070311, + "step": 289200 + }, + { + "epoch": 38.57333333333333, + "grad_norm": 0.7585164308547974, + "learning_rate": 3.0722e-05, + "loss": 1.7019801330566406, + "step": 289300 + }, + { + "epoch": 38.586666666666666, + "grad_norm": 0.7974201440811157, + "learning_rate": 3.0715333333333334e-05, + "loss": 1.6983253479003906, + "step": 289400 + }, + { + "epoch": 38.6, + "grad_norm": 0.7960885763168335, + "learning_rate": 3.0708666666666666e-05, + "loss": 1.7020025634765625, + "step": 289500 + }, + { + "epoch": 38.61333333333333, + "grad_norm": 0.7698130011558533, + "learning_rate": 3.0702000000000005e-05, + "loss": 1.7045166015625, + "step": 289600 + }, + { + "epoch": 38.626666666666665, + "grad_norm": 0.7774978876113892, + "learning_rate": 3.069533333333334e-05, + "loss": 1.7092160034179686, + "step": 289700 + }, + { + "epoch": 38.64, + "grad_norm": 0.7904421091079712, + "learning_rate": 3.068866666666666e-05, + "loss": 1.7111721801757813, + "step": 289800 + }, + { + "epoch": 38.653333333333336, + "grad_norm": 0.7613751292228699, + "learning_rate": 3.0682e-05, + "loss": 1.7066726684570312, + "step": 289900 + }, + { + "epoch": 38.666666666666664, + "grad_norm": 0.7756422758102417, + "learning_rate": 3.0675333333333334e-05, + "loss": 1.7077285766601562, + "step": 290000 + }, + { + "epoch": 38.68, + "grad_norm": 0.7973787784576416, + "learning_rate": 3.0668666666666667e-05, + "loss": 1.706180419921875, + "step": 290100 + }, + { + "epoch": 38.693333333333335, + "grad_norm": 0.7484989762306213, + "learning_rate": 3.0662e-05, + "loss": 1.7061300659179688, + "step": 290200 + }, + { + "epoch": 38.70666666666666, + "grad_norm": 0.7544485926628113, + "learning_rate": 3.065533333333334e-05, + "loss": 1.7120814514160156, + "step": 290300 + }, + { + "epoch": 38.72, + "grad_norm": 0.7512329816818237, + "learning_rate": 3.064866666666667e-05, + "loss": 1.710401611328125, + "step": 290400 + }, + { + "epoch": 38.733333333333334, + "grad_norm": 0.7429623007774353, + "learning_rate": 3.0642e-05, + "loss": 1.7145462036132812, + "step": 290500 + }, + { + "epoch": 38.74666666666667, + "grad_norm": 0.7737287878990173, + "learning_rate": 3.0635333333333335e-05, + "loss": 1.7123170471191407, + "step": 290600 + }, + { + "epoch": 38.76, + "grad_norm": 0.7839905023574829, + "learning_rate": 3.062866666666667e-05, + "loss": 1.714277801513672, + "step": 290700 + }, + { + "epoch": 38.77333333333333, + "grad_norm": 0.7753442525863647, + "learning_rate": 3.0622e-05, + "loss": 1.711389923095703, + "step": 290800 + }, + { + "epoch": 38.78666666666667, + "grad_norm": 0.7696095108985901, + "learning_rate": 3.061533333333333e-05, + "loss": 1.712263946533203, + "step": 290900 + }, + { + "epoch": 38.8, + "grad_norm": 0.78681880235672, + "learning_rate": 3.060866666666667e-05, + "loss": 1.7169947814941406, + "step": 291000 + }, + { + "epoch": 38.81333333333333, + "grad_norm": 0.7666211128234863, + "learning_rate": 3.060206666666667e-05, + "loss": 1.713688201904297, + "step": 291100 + }, + { + "epoch": 38.82666666666667, + "grad_norm": 0.8072649836540222, + "learning_rate": 3.05954e-05, + "loss": 1.7122874450683594, + "step": 291200 + }, + { + "epoch": 38.84, + "grad_norm": 0.8129579424858093, + "learning_rate": 3.0588733333333334e-05, + "loss": 1.7165837097167969, + "step": 291300 + }, + { + "epoch": 38.85333333333333, + "grad_norm": 0.759157121181488, + "learning_rate": 3.058206666666667e-05, + "loss": 1.7154681396484375, + "step": 291400 + }, + { + "epoch": 38.86666666666667, + "grad_norm": 0.7481434345245361, + "learning_rate": 3.0575400000000005e-05, + "loss": 1.7192173767089844, + "step": 291500 + }, + { + "epoch": 38.88, + "grad_norm": 0.751333475112915, + "learning_rate": 3.056873333333333e-05, + "loss": 1.7186842346191407, + "step": 291600 + }, + { + "epoch": 38.89333333333333, + "grad_norm": 0.7542101740837097, + "learning_rate": 3.056206666666667e-05, + "loss": 1.7197854614257813, + "step": 291700 + }, + { + "epoch": 38.906666666666666, + "grad_norm": 0.7745694518089294, + "learning_rate": 3.05554e-05, + "loss": 1.717758026123047, + "step": 291800 + }, + { + "epoch": 38.92, + "grad_norm": 0.785905122756958, + "learning_rate": 3.0548733333333335e-05, + "loss": 1.7214923095703125, + "step": 291900 + }, + { + "epoch": 38.93333333333333, + "grad_norm": 0.737249493598938, + "learning_rate": 3.054206666666667e-05, + "loss": 1.721144256591797, + "step": 292000 + }, + { + "epoch": 38.946666666666665, + "grad_norm": 0.7561144828796387, + "learning_rate": 3.0535400000000006e-05, + "loss": 1.7213453674316406, + "step": 292100 + }, + { + "epoch": 38.96, + "grad_norm": 0.769527018070221, + "learning_rate": 3.052873333333334e-05, + "loss": 1.7238650512695313, + "step": 292200 + }, + { + "epoch": 38.973333333333336, + "grad_norm": 0.781715452671051, + "learning_rate": 3.0522066666666664e-05, + "loss": 1.7266677856445312, + "step": 292300 + }, + { + "epoch": 38.986666666666665, + "grad_norm": 0.7867762446403503, + "learning_rate": 3.05154e-05, + "loss": 1.7263604736328124, + "step": 292400 + }, + { + "epoch": 39.0, + "grad_norm": 0.7711582183837891, + "learning_rate": 3.0508733333333335e-05, + "loss": 1.7235179138183594, + "step": 292500 + }, + { + "epoch": 39.013333333333335, + "grad_norm": 0.7427387237548828, + "learning_rate": 3.0502066666666667e-05, + "loss": 1.636926727294922, + "step": 292600 + }, + { + "epoch": 39.026666666666664, + "grad_norm": 0.7548815011978149, + "learning_rate": 3.0495400000000003e-05, + "loss": 1.638148193359375, + "step": 292700 + }, + { + "epoch": 39.04, + "grad_norm": 0.766891598701477, + "learning_rate": 3.0488733333333335e-05, + "loss": 1.6450836181640625, + "step": 292800 + }, + { + "epoch": 39.053333333333335, + "grad_norm": 0.7814005017280579, + "learning_rate": 3.048206666666667e-05, + "loss": 1.6402984619140626, + "step": 292900 + }, + { + "epoch": 39.06666666666667, + "grad_norm": 0.7863591909408569, + "learning_rate": 3.0475400000000003e-05, + "loss": 1.645513916015625, + "step": 293000 + }, + { + "epoch": 39.08, + "grad_norm": 0.7696388959884644, + "learning_rate": 3.0468733333333332e-05, + "loss": 1.6503067016601562, + "step": 293100 + }, + { + "epoch": 39.093333333333334, + "grad_norm": 0.7683019042015076, + "learning_rate": 3.0462066666666668e-05, + "loss": 1.6453077697753906, + "step": 293200 + }, + { + "epoch": 39.10666666666667, + "grad_norm": 0.8194789886474609, + "learning_rate": 3.04554e-05, + "loss": 1.6493295288085938, + "step": 293300 + }, + { + "epoch": 39.12, + "grad_norm": 0.7500215172767639, + "learning_rate": 3.04488e-05, + "loss": 1.6437741088867188, + "step": 293400 + }, + { + "epoch": 39.13333333333333, + "grad_norm": 0.7612013220787048, + "learning_rate": 3.0442133333333335e-05, + "loss": 1.6460026550292968, + "step": 293500 + }, + { + "epoch": 39.14666666666667, + "grad_norm": 0.7490237355232239, + "learning_rate": 3.0435466666666667e-05, + "loss": 1.6469500732421876, + "step": 293600 + }, + { + "epoch": 39.16, + "grad_norm": 0.7428447604179382, + "learning_rate": 3.0428800000000002e-05, + "loss": 1.6538037109375, + "step": 293700 + }, + { + "epoch": 39.17333333333333, + "grad_norm": 0.771937906742096, + "learning_rate": 3.0422133333333335e-05, + "loss": 1.6548284912109374, + "step": 293800 + }, + { + "epoch": 39.18666666666667, + "grad_norm": 0.8053415417671204, + "learning_rate": 3.041546666666667e-05, + "loss": 1.6548187255859375, + "step": 293900 + }, + { + "epoch": 39.2, + "grad_norm": 0.7840629816055298, + "learning_rate": 3.0408800000000003e-05, + "loss": 1.656223907470703, + "step": 294000 + }, + { + "epoch": 39.21333333333333, + "grad_norm": 0.7682107090950012, + "learning_rate": 3.040213333333333e-05, + "loss": 1.6517486572265625, + "step": 294100 + }, + { + "epoch": 39.22666666666667, + "grad_norm": 0.7796576619148254, + "learning_rate": 3.0395466666666667e-05, + "loss": 1.6598385620117186, + "step": 294200 + }, + { + "epoch": 39.24, + "grad_norm": 0.7165907025337219, + "learning_rate": 3.03888e-05, + "loss": 1.6587965393066406, + "step": 294300 + }, + { + "epoch": 39.25333333333333, + "grad_norm": 0.7674499154090881, + "learning_rate": 3.0382133333333335e-05, + "loss": 1.6644235229492188, + "step": 294400 + }, + { + "epoch": 39.266666666666666, + "grad_norm": 0.7708069086074829, + "learning_rate": 3.0375466666666667e-05, + "loss": 1.6615855407714843, + "step": 294500 + }, + { + "epoch": 39.28, + "grad_norm": 0.7408686876296997, + "learning_rate": 3.0368800000000003e-05, + "loss": 1.6682752990722656, + "step": 294600 + }, + { + "epoch": 39.29333333333334, + "grad_norm": 0.7657552361488342, + "learning_rate": 3.0362133333333335e-05, + "loss": 1.6586656188964843, + "step": 294700 + }, + { + "epoch": 39.306666666666665, + "grad_norm": 0.7995692491531372, + "learning_rate": 3.0355466666666664e-05, + "loss": 1.6587791442871094, + "step": 294800 + }, + { + "epoch": 39.32, + "grad_norm": 0.748633086681366, + "learning_rate": 3.03488e-05, + "loss": 1.66481689453125, + "step": 294900 + }, + { + "epoch": 39.333333333333336, + "grad_norm": 0.7635269165039062, + "learning_rate": 3.0342133333333332e-05, + "loss": 1.6681814575195313, + "step": 295000 + }, + { + "epoch": 39.346666666666664, + "grad_norm": 0.7503258585929871, + "learning_rate": 3.0335466666666668e-05, + "loss": 1.6664021301269532, + "step": 295100 + }, + { + "epoch": 39.36, + "grad_norm": 0.7651309370994568, + "learning_rate": 3.03288e-05, + "loss": 1.6657469177246094, + "step": 295200 + }, + { + "epoch": 39.373333333333335, + "grad_norm": 0.7666741013526917, + "learning_rate": 3.0322133333333336e-05, + "loss": 1.6691456604003907, + "step": 295300 + }, + { + "epoch": 39.38666666666666, + "grad_norm": 0.7548410296440125, + "learning_rate": 3.031546666666667e-05, + "loss": 1.670536651611328, + "step": 295400 + }, + { + "epoch": 39.4, + "grad_norm": 0.74871826171875, + "learning_rate": 3.0308866666666667e-05, + "loss": 1.667931365966797, + "step": 295500 + }, + { + "epoch": 39.413333333333334, + "grad_norm": 0.8039665222167969, + "learning_rate": 3.0302200000000003e-05, + "loss": 1.6696517944335938, + "step": 295600 + }, + { + "epoch": 39.42666666666667, + "grad_norm": 0.770044207572937, + "learning_rate": 3.029553333333334e-05, + "loss": 1.6706535339355468, + "step": 295700 + }, + { + "epoch": 39.44, + "grad_norm": 0.7525724768638611, + "learning_rate": 3.0288866666666664e-05, + "loss": 1.6772557067871094, + "step": 295800 + }, + { + "epoch": 39.45333333333333, + "grad_norm": 0.7813305258750916, + "learning_rate": 3.02822e-05, + "loss": 1.671944122314453, + "step": 295900 + }, + { + "epoch": 39.46666666666667, + "grad_norm": 0.7860172390937805, + "learning_rate": 3.0275533333333335e-05, + "loss": 1.6785629272460938, + "step": 296000 + }, + { + "epoch": 39.48, + "grad_norm": 0.7601441740989685, + "learning_rate": 3.0268866666666667e-05, + "loss": 1.679444580078125, + "step": 296100 + }, + { + "epoch": 39.49333333333333, + "grad_norm": 0.7699296474456787, + "learning_rate": 3.0262200000000003e-05, + "loss": 1.6728718566894532, + "step": 296200 + }, + { + "epoch": 39.50666666666667, + "grad_norm": 0.8299603462219238, + "learning_rate": 3.0255533333333335e-05, + "loss": 1.672165069580078, + "step": 296300 + }, + { + "epoch": 39.52, + "grad_norm": 0.7380194067955017, + "learning_rate": 3.024886666666667e-05, + "loss": 1.6806745910644532, + "step": 296400 + }, + { + "epoch": 39.53333333333333, + "grad_norm": 0.774158239364624, + "learning_rate": 3.0242200000000003e-05, + "loss": 1.6795536804199218, + "step": 296500 + }, + { + "epoch": 39.54666666666667, + "grad_norm": 0.7721417546272278, + "learning_rate": 3.0235533333333332e-05, + "loss": 1.6812428283691405, + "step": 296600 + }, + { + "epoch": 39.56, + "grad_norm": 0.7454893589019775, + "learning_rate": 3.0228866666666668e-05, + "loss": 1.6825442504882813, + "step": 296700 + }, + { + "epoch": 39.57333333333333, + "grad_norm": 0.7825901508331299, + "learning_rate": 3.02222e-05, + "loss": 1.684827117919922, + "step": 296800 + }, + { + "epoch": 39.586666666666666, + "grad_norm": 0.7577589750289917, + "learning_rate": 3.0215533333333336e-05, + "loss": 1.686151885986328, + "step": 296900 + }, + { + "epoch": 39.6, + "grad_norm": 0.7495019435882568, + "learning_rate": 3.0208866666666668e-05, + "loss": 1.6861024475097657, + "step": 297000 + }, + { + "epoch": 39.61333333333333, + "grad_norm": 0.7696591019630432, + "learning_rate": 3.0202200000000004e-05, + "loss": 1.6808950805664062, + "step": 297100 + }, + { + "epoch": 39.626666666666665, + "grad_norm": 0.7768684029579163, + "learning_rate": 3.0195533333333336e-05, + "loss": 1.6860086059570312, + "step": 297200 + }, + { + "epoch": 39.64, + "grad_norm": 0.8358619809150696, + "learning_rate": 3.018886666666667e-05, + "loss": 1.6880392456054687, + "step": 297300 + }, + { + "epoch": 39.653333333333336, + "grad_norm": 0.7638468742370605, + "learning_rate": 3.01822e-05, + "loss": 1.6880755615234375, + "step": 297400 + }, + { + "epoch": 39.666666666666664, + "grad_norm": 0.7862942814826965, + "learning_rate": 3.0175533333333333e-05, + "loss": 1.6920382690429687, + "step": 297500 + }, + { + "epoch": 39.68, + "grad_norm": 0.7873303890228271, + "learning_rate": 3.016886666666667e-05, + "loss": 1.688036651611328, + "step": 297600 + }, + { + "epoch": 39.693333333333335, + "grad_norm": 0.7888381481170654, + "learning_rate": 3.01622e-05, + "loss": 1.6933929443359375, + "step": 297700 + }, + { + "epoch": 39.70666666666666, + "grad_norm": 0.7556432485580444, + "learning_rate": 3.01556e-05, + "loss": 1.6857225036621093, + "step": 297800 + }, + { + "epoch": 39.72, + "grad_norm": 0.7747805714607239, + "learning_rate": 3.0148933333333335e-05, + "loss": 1.693270721435547, + "step": 297900 + }, + { + "epoch": 39.733333333333334, + "grad_norm": 0.7705897092819214, + "learning_rate": 3.0142266666666668e-05, + "loss": 1.69430419921875, + "step": 298000 + }, + { + "epoch": 39.74666666666667, + "grad_norm": 0.7893573045730591, + "learning_rate": 3.0135600000000003e-05, + "loss": 1.6897537231445312, + "step": 298100 + }, + { + "epoch": 39.76, + "grad_norm": 0.7793616056442261, + "learning_rate": 3.0128933333333336e-05, + "loss": 1.6898460388183594, + "step": 298200 + }, + { + "epoch": 39.77333333333333, + "grad_norm": 0.7738221883773804, + "learning_rate": 3.012226666666667e-05, + "loss": 1.6978416442871094, + "step": 298300 + }, + { + "epoch": 39.78666666666667, + "grad_norm": 0.7676934599876404, + "learning_rate": 3.01156e-05, + "loss": 1.699170379638672, + "step": 298400 + }, + { + "epoch": 39.8, + "grad_norm": 0.7687268853187561, + "learning_rate": 3.0108933333333332e-05, + "loss": 1.6959735107421876, + "step": 298500 + }, + { + "epoch": 39.81333333333333, + "grad_norm": 0.7735351920127869, + "learning_rate": 3.0102266666666668e-05, + "loss": 1.6969778442382812, + "step": 298600 + }, + { + "epoch": 39.82666666666667, + "grad_norm": 0.7656512260437012, + "learning_rate": 3.00956e-05, + "loss": 1.6993966674804688, + "step": 298700 + }, + { + "epoch": 39.84, + "grad_norm": 0.782088577747345, + "learning_rate": 3.0088933333333336e-05, + "loss": 1.699752960205078, + "step": 298800 + }, + { + "epoch": 39.85333333333333, + "grad_norm": 0.773292601108551, + "learning_rate": 3.0082266666666668e-05, + "loss": 1.6988934326171874, + "step": 298900 + }, + { + "epoch": 39.86666666666667, + "grad_norm": 0.7811734080314636, + "learning_rate": 3.0075600000000004e-05, + "loss": 1.6964959716796875, + "step": 299000 + }, + { + "epoch": 39.88, + "grad_norm": 0.7883747220039368, + "learning_rate": 3.0068933333333333e-05, + "loss": 1.7006631469726563, + "step": 299100 + }, + { + "epoch": 39.89333333333333, + "grad_norm": 0.7700868844985962, + "learning_rate": 3.0062266666666665e-05, + "loss": 1.6964584350585938, + "step": 299200 + }, + { + "epoch": 39.906666666666666, + "grad_norm": 0.803329348564148, + "learning_rate": 3.00556e-05, + "loss": 1.6985226440429688, + "step": 299300 + }, + { + "epoch": 39.92, + "grad_norm": 0.7313794493675232, + "learning_rate": 3.0048933333333333e-05, + "loss": 1.6996687316894532, + "step": 299400 + }, + { + "epoch": 39.93333333333333, + "grad_norm": 0.8017928004264832, + "learning_rate": 3.004226666666667e-05, + "loss": 1.7024073791503906, + "step": 299500 + }, + { + "epoch": 39.946666666666665, + "grad_norm": 0.7980249524116516, + "learning_rate": 3.0035600000000004e-05, + "loss": 1.7046482849121094, + "step": 299600 + }, + { + "epoch": 39.96, + "grad_norm": 0.7558285593986511, + "learning_rate": 3.0028933333333337e-05, + "loss": 1.7029963684082032, + "step": 299700 + }, + { + "epoch": 39.973333333333336, + "grad_norm": 0.7704285383224487, + "learning_rate": 3.0022266666666672e-05, + "loss": 1.7064549255371093, + "step": 299800 + }, + { + "epoch": 39.986666666666665, + "grad_norm": 0.7782922983169556, + "learning_rate": 3.0015599999999998e-05, + "loss": 1.7005975341796875, + "step": 299900 + }, + { + "epoch": 40.0, + "grad_norm": 0.7687188982963562, + "learning_rate": 3.0008933333333333e-05, + "loss": 1.7041835021972656, + "step": 300000 + }, + { + "epoch": 40.013333333333335, + "grad_norm": 0.7731031775474548, + "learning_rate": 3.000226666666667e-05, + "loss": 1.620243377685547, + "step": 300100 + }, + { + "epoch": 40.026666666666664, + "grad_norm": 0.7835327386856079, + "learning_rate": 2.99956e-05, + "loss": 1.6189300537109375, + "step": 300200 + }, + { + "epoch": 40.04, + "grad_norm": 0.788834273815155, + "learning_rate": 2.9989e-05, + "loss": 1.6183770751953126, + "step": 300300 + }, + { + "epoch": 40.053333333333335, + "grad_norm": 0.7707294225692749, + "learning_rate": 2.9982333333333336e-05, + "loss": 1.624232940673828, + "step": 300400 + }, + { + "epoch": 40.06666666666667, + "grad_norm": 0.7670961618423462, + "learning_rate": 2.9975666666666668e-05, + "loss": 1.6271139526367187, + "step": 300500 + }, + { + "epoch": 40.08, + "grad_norm": 0.7733743190765381, + "learning_rate": 2.9969000000000004e-05, + "loss": 1.6237083435058595, + "step": 300600 + }, + { + "epoch": 40.093333333333334, + "grad_norm": 0.7543879747390747, + "learning_rate": 2.9962333333333336e-05, + "loss": 1.6283514404296875, + "step": 300700 + }, + { + "epoch": 40.10666666666667, + "grad_norm": 0.7911033630371094, + "learning_rate": 2.9955666666666672e-05, + "loss": 1.6246966552734374, + "step": 300800 + }, + { + "epoch": 40.12, + "grad_norm": 0.758840799331665, + "learning_rate": 2.9949e-05, + "loss": 1.6292984008789062, + "step": 300900 + }, + { + "epoch": 40.13333333333333, + "grad_norm": 0.7979432344436646, + "learning_rate": 2.9942333333333333e-05, + "loss": 1.6320713806152343, + "step": 301000 + }, + { + "epoch": 40.14666666666667, + "grad_norm": 0.7912939786911011, + "learning_rate": 2.993566666666667e-05, + "loss": 1.6327186584472657, + "step": 301100 + }, + { + "epoch": 40.16, + "grad_norm": 0.7603537440299988, + "learning_rate": 2.9929e-05, + "loss": 1.6343653869628907, + "step": 301200 + }, + { + "epoch": 40.17333333333333, + "grad_norm": 0.7935387492179871, + "learning_rate": 2.9922333333333337e-05, + "loss": 1.6328231811523437, + "step": 301300 + }, + { + "epoch": 40.18666666666667, + "grad_norm": 0.7534608244895935, + "learning_rate": 2.991566666666667e-05, + "loss": 1.6297528076171874, + "step": 301400 + }, + { + "epoch": 40.2, + "grad_norm": 0.7596133351325989, + "learning_rate": 2.9909000000000005e-05, + "loss": 1.6323152160644532, + "step": 301500 + }, + { + "epoch": 40.21333333333333, + "grad_norm": 0.7837437987327576, + "learning_rate": 2.9902333333333333e-05, + "loss": 1.6390170288085937, + "step": 301600 + }, + { + "epoch": 40.22666666666667, + "grad_norm": 0.7405257821083069, + "learning_rate": 2.9895666666666666e-05, + "loss": 1.6328970336914062, + "step": 301700 + }, + { + "epoch": 40.24, + "grad_norm": 0.7964353561401367, + "learning_rate": 2.9889e-05, + "loss": 1.6418511962890625, + "step": 301800 + }, + { + "epoch": 40.25333333333333, + "grad_norm": 0.7721452713012695, + "learning_rate": 2.9882333333333334e-05, + "loss": 1.6432241821289062, + "step": 301900 + }, + { + "epoch": 40.266666666666666, + "grad_norm": 0.7319056987762451, + "learning_rate": 2.987566666666667e-05, + "loss": 1.6457327270507813, + "step": 302000 + }, + { + "epoch": 40.28, + "grad_norm": 0.7476204037666321, + "learning_rate": 2.9869e-05, + "loss": 1.63947265625, + "step": 302100 + }, + { + "epoch": 40.29333333333334, + "grad_norm": 0.7636196613311768, + "learning_rate": 2.9862333333333337e-05, + "loss": 1.6431263732910155, + "step": 302200 + }, + { + "epoch": 40.306666666666665, + "grad_norm": 0.7672015428543091, + "learning_rate": 2.985566666666667e-05, + "loss": 1.6432777404785157, + "step": 302300 + }, + { + "epoch": 40.32, + "grad_norm": 0.7906679511070251, + "learning_rate": 2.984906666666667e-05, + "loss": 1.6422769165039062, + "step": 302400 + }, + { + "epoch": 40.333333333333336, + "grad_norm": 0.7585984468460083, + "learning_rate": 2.9842400000000004e-05, + "loss": 1.645401611328125, + "step": 302500 + }, + { + "epoch": 40.346666666666664, + "grad_norm": 0.7551888227462769, + "learning_rate": 2.9835733333333333e-05, + "loss": 1.6521505737304687, + "step": 302600 + }, + { + "epoch": 40.36, + "grad_norm": 0.7747895121574402, + "learning_rate": 2.9829066666666665e-05, + "loss": 1.653616943359375, + "step": 302700 + }, + { + "epoch": 40.373333333333335, + "grad_norm": 0.7973045706748962, + "learning_rate": 2.98224e-05, + "loss": 1.6516969299316406, + "step": 302800 + }, + { + "epoch": 40.38666666666666, + "grad_norm": 0.7736092209815979, + "learning_rate": 2.9815733333333333e-05, + "loss": 1.6533767700195312, + "step": 302900 + }, + { + "epoch": 40.4, + "grad_norm": 0.8287850618362427, + "learning_rate": 2.980906666666667e-05, + "loss": 1.650742950439453, + "step": 303000 + }, + { + "epoch": 40.413333333333334, + "grad_norm": 0.7991235256195068, + "learning_rate": 2.98024e-05, + "loss": 1.6495477294921874, + "step": 303100 + }, + { + "epoch": 40.42666666666667, + "grad_norm": 0.7750113010406494, + "learning_rate": 2.9795733333333337e-05, + "loss": 1.6545738220214843, + "step": 303200 + }, + { + "epoch": 40.44, + "grad_norm": 0.7548984885215759, + "learning_rate": 2.978906666666667e-05, + "loss": 1.6560383605957032, + "step": 303300 + }, + { + "epoch": 40.45333333333333, + "grad_norm": 0.7681398987770081, + "learning_rate": 2.9782399999999998e-05, + "loss": 1.6523040771484374, + "step": 303400 + }, + { + "epoch": 40.46666666666667, + "grad_norm": 0.7958689332008362, + "learning_rate": 2.9775733333333334e-05, + "loss": 1.654131622314453, + "step": 303500 + }, + { + "epoch": 40.48, + "grad_norm": 0.8112989068031311, + "learning_rate": 2.9769066666666666e-05, + "loss": 1.6542424011230468, + "step": 303600 + }, + { + "epoch": 40.49333333333333, + "grad_norm": 0.8102808594703674, + "learning_rate": 2.97624e-05, + "loss": 1.6532270812988281, + "step": 303700 + }, + { + "epoch": 40.50666666666667, + "grad_norm": 0.7980448603630066, + "learning_rate": 2.9755733333333334e-05, + "loss": 1.6606166076660156, + "step": 303800 + }, + { + "epoch": 40.52, + "grad_norm": 0.7753362655639648, + "learning_rate": 2.974906666666667e-05, + "loss": 1.6590802001953124, + "step": 303900 + }, + { + "epoch": 40.53333333333333, + "grad_norm": 0.7801727056503296, + "learning_rate": 2.9742400000000005e-05, + "loss": 1.6569808959960937, + "step": 304000 + }, + { + "epoch": 40.54666666666667, + "grad_norm": 0.7659746408462524, + "learning_rate": 2.973573333333333e-05, + "loss": 1.6627920532226563, + "step": 304100 + }, + { + "epoch": 40.56, + "grad_norm": 0.8251011371612549, + "learning_rate": 2.9729066666666666e-05, + "loss": 1.6599037170410156, + "step": 304200 + }, + { + "epoch": 40.57333333333333, + "grad_norm": 0.7905187010765076, + "learning_rate": 2.9722400000000002e-05, + "loss": 1.6602447509765625, + "step": 304300 + }, + { + "epoch": 40.586666666666666, + "grad_norm": 0.7680100202560425, + "learning_rate": 2.9715733333333334e-05, + "loss": 1.6645524597167969, + "step": 304400 + }, + { + "epoch": 40.6, + "grad_norm": 0.8009008765220642, + "learning_rate": 2.970906666666667e-05, + "loss": 1.6655874633789063, + "step": 304500 + }, + { + "epoch": 40.61333333333333, + "grad_norm": 0.7796105742454529, + "learning_rate": 2.9702400000000002e-05, + "loss": 1.6701692199707032, + "step": 304600 + }, + { + "epoch": 40.626666666666665, + "grad_norm": 0.8052720427513123, + "learning_rate": 2.96958e-05, + "loss": 1.67267333984375, + "step": 304700 + }, + { + "epoch": 40.64, + "grad_norm": 0.8020023703575134, + "learning_rate": 2.9689133333333337e-05, + "loss": 1.6702662658691407, + "step": 304800 + }, + { + "epoch": 40.653333333333336, + "grad_norm": 0.7790773510932922, + "learning_rate": 2.968246666666667e-05, + "loss": 1.6637289428710937, + "step": 304900 + }, + { + "epoch": 40.666666666666664, + "grad_norm": 0.7891820073127747, + "learning_rate": 2.9675800000000005e-05, + "loss": 1.6721121215820312, + "step": 305000 + }, + { + "epoch": 40.68, + "grad_norm": 0.8255475759506226, + "learning_rate": 2.9669133333333334e-05, + "loss": 1.668660888671875, + "step": 305100 + }, + { + "epoch": 40.693333333333335, + "grad_norm": 0.7707953453063965, + "learning_rate": 2.9662466666666666e-05, + "loss": 1.670304718017578, + "step": 305200 + }, + { + "epoch": 40.70666666666666, + "grad_norm": 0.789410412311554, + "learning_rate": 2.96558e-05, + "loss": 1.6723420715332031, + "step": 305300 + }, + { + "epoch": 40.72, + "grad_norm": 0.7793656587600708, + "learning_rate": 2.9649133333333334e-05, + "loss": 1.6703863525390625, + "step": 305400 + }, + { + "epoch": 40.733333333333334, + "grad_norm": 0.7544719576835632, + "learning_rate": 2.964246666666667e-05, + "loss": 1.670694580078125, + "step": 305500 + }, + { + "epoch": 40.74666666666667, + "grad_norm": 0.7913680076599121, + "learning_rate": 2.9635800000000002e-05, + "loss": 1.6704800415039063, + "step": 305600 + }, + { + "epoch": 40.76, + "grad_norm": 0.8109893798828125, + "learning_rate": 2.9629133333333337e-05, + "loss": 1.674829864501953, + "step": 305700 + }, + { + "epoch": 40.77333333333333, + "grad_norm": 0.7733386754989624, + "learning_rate": 2.962246666666667e-05, + "loss": 1.671063690185547, + "step": 305800 + }, + { + "epoch": 40.78666666666667, + "grad_norm": 0.8088369965553284, + "learning_rate": 2.96158e-05, + "loss": 1.6718939208984376, + "step": 305900 + }, + { + "epoch": 40.8, + "grad_norm": 0.7910258173942566, + "learning_rate": 2.9609133333333334e-05, + "loss": 1.6722633361816406, + "step": 306000 + }, + { + "epoch": 40.81333333333333, + "grad_norm": 0.8270725607872009, + "learning_rate": 2.9602466666666667e-05, + "loss": 1.6770217895507813, + "step": 306100 + }, + { + "epoch": 40.82666666666667, + "grad_norm": 0.8187015056610107, + "learning_rate": 2.9595800000000002e-05, + "loss": 1.6784989929199219, + "step": 306200 + }, + { + "epoch": 40.84, + "grad_norm": 0.7722174525260925, + "learning_rate": 2.9589133333333334e-05, + "loss": 1.675601806640625, + "step": 306300 + }, + { + "epoch": 40.85333333333333, + "grad_norm": 0.7953956127166748, + "learning_rate": 2.958246666666667e-05, + "loss": 1.6758319091796876, + "step": 306400 + }, + { + "epoch": 40.86666666666667, + "grad_norm": 0.7955514788627625, + "learning_rate": 2.9575800000000002e-05, + "loss": 1.6785484313964845, + "step": 306500 + }, + { + "epoch": 40.88, + "grad_norm": 0.8043191432952881, + "learning_rate": 2.956913333333333e-05, + "loss": 1.6791413879394532, + "step": 306600 + }, + { + "epoch": 40.89333333333333, + "grad_norm": 0.8214145302772522, + "learning_rate": 2.9562466666666667e-05, + "loss": 1.6822396850585937, + "step": 306700 + }, + { + "epoch": 40.906666666666666, + "grad_norm": 0.7704736590385437, + "learning_rate": 2.95558e-05, + "loss": 1.6834477233886718, + "step": 306800 + }, + { + "epoch": 40.92, + "grad_norm": 0.8391588926315308, + "learning_rate": 2.9549133333333335e-05, + "loss": 1.680575408935547, + "step": 306900 + }, + { + "epoch": 40.93333333333333, + "grad_norm": 0.8125873804092407, + "learning_rate": 2.9542533333333334e-05, + "loss": 1.683341522216797, + "step": 307000 + }, + { + "epoch": 40.946666666666665, + "grad_norm": 0.7934849262237549, + "learning_rate": 2.9535866666666666e-05, + "loss": 1.6847650146484374, + "step": 307100 + }, + { + "epoch": 40.96, + "grad_norm": 0.7980996966362, + "learning_rate": 2.9529200000000002e-05, + "loss": 1.6811965942382812, + "step": 307200 + }, + { + "epoch": 40.973333333333336, + "grad_norm": 0.802399754524231, + "learning_rate": 2.9522533333333334e-05, + "loss": 1.6897067260742187, + "step": 307300 + }, + { + "epoch": 40.986666666666665, + "grad_norm": 0.7816872000694275, + "learning_rate": 2.951586666666667e-05, + "loss": 1.6832794189453124, + "step": 307400 + }, + { + "epoch": 41.0, + "grad_norm": 0.7761144638061523, + "learning_rate": 2.9509200000000002e-05, + "loss": 1.6881805419921876, + "step": 307500 + }, + { + "epoch": 41.013333333333335, + "grad_norm": 0.7764184474945068, + "learning_rate": 2.950253333333333e-05, + "loss": 1.5990695190429687, + "step": 307600 + }, + { + "epoch": 41.026666666666664, + "grad_norm": 0.7701564431190491, + "learning_rate": 2.9495866666666667e-05, + "loss": 1.6041400146484375, + "step": 307700 + }, + { + "epoch": 41.04, + "grad_norm": 0.7842352390289307, + "learning_rate": 2.94892e-05, + "loss": 1.6026243591308593, + "step": 307800 + }, + { + "epoch": 41.053333333333335, + "grad_norm": 0.8398421406745911, + "learning_rate": 2.9482533333333334e-05, + "loss": 1.6042144775390625, + "step": 307900 + }, + { + "epoch": 41.06666666666667, + "grad_norm": 0.7771956920623779, + "learning_rate": 2.9475866666666667e-05, + "loss": 1.6058041381835937, + "step": 308000 + }, + { + "epoch": 41.08, + "grad_norm": 0.7307206392288208, + "learning_rate": 2.9469200000000002e-05, + "loss": 1.6052072143554688, + "step": 308100 + }, + { + "epoch": 41.093333333333334, + "grad_norm": 0.7741842269897461, + "learning_rate": 2.9462533333333338e-05, + "loss": 1.6063827514648437, + "step": 308200 + }, + { + "epoch": 41.10666666666667, + "grad_norm": 0.7664023637771606, + "learning_rate": 2.945586666666667e-05, + "loss": 1.6085012817382813, + "step": 308300 + }, + { + "epoch": 41.12, + "grad_norm": 0.7947597503662109, + "learning_rate": 2.94492e-05, + "loss": 1.6075529479980468, + "step": 308400 + }, + { + "epoch": 41.13333333333333, + "grad_norm": 0.8271000385284424, + "learning_rate": 2.944253333333333e-05, + "loss": 1.611210479736328, + "step": 308500 + }, + { + "epoch": 41.14666666666667, + "grad_norm": 0.8020433783531189, + "learning_rate": 2.9435866666666667e-05, + "loss": 1.613904266357422, + "step": 308600 + }, + { + "epoch": 41.16, + "grad_norm": 0.7996675968170166, + "learning_rate": 2.9429200000000003e-05, + "loss": 1.617792205810547, + "step": 308700 + }, + { + "epoch": 41.17333333333333, + "grad_norm": 0.7714760899543762, + "learning_rate": 2.9422533333333335e-05, + "loss": 1.6162484741210938, + "step": 308800 + }, + { + "epoch": 41.18666666666667, + "grad_norm": 0.7961992621421814, + "learning_rate": 2.941586666666667e-05, + "loss": 1.6189137268066407, + "step": 308900 + }, + { + "epoch": 41.2, + "grad_norm": 0.7719022631645203, + "learning_rate": 2.9409200000000003e-05, + "loss": 1.6185585021972657, + "step": 309000 + }, + { + "epoch": 41.21333333333333, + "grad_norm": 0.7894253730773926, + "learning_rate": 2.940253333333334e-05, + "loss": 1.6159666442871095, + "step": 309100 + }, + { + "epoch": 41.22666666666667, + "grad_norm": 0.8292324542999268, + "learning_rate": 2.9395933333333338e-05, + "loss": 1.6167066955566407, + "step": 309200 + }, + { + "epoch": 41.24, + "grad_norm": 0.7811465859413147, + "learning_rate": 2.938926666666667e-05, + "loss": 1.6240852355957032, + "step": 309300 + }, + { + "epoch": 41.25333333333333, + "grad_norm": 0.7826862931251526, + "learning_rate": 2.93826e-05, + "loss": 1.6248715209960938, + "step": 309400 + }, + { + "epoch": 41.266666666666666, + "grad_norm": 0.7634377479553223, + "learning_rate": 2.9375933333333335e-05, + "loss": 1.6282896423339843, + "step": 309500 + }, + { + "epoch": 41.28, + "grad_norm": 0.7704088091850281, + "learning_rate": 2.9369266666666667e-05, + "loss": 1.6228341674804687, + "step": 309600 + }, + { + "epoch": 41.29333333333334, + "grad_norm": 0.776517391204834, + "learning_rate": 2.9362600000000002e-05, + "loss": 1.6235067749023437, + "step": 309700 + }, + { + "epoch": 41.306666666666665, + "grad_norm": 0.7937943935394287, + "learning_rate": 2.9355933333333335e-05, + "loss": 1.6245884704589844, + "step": 309800 + }, + { + "epoch": 41.32, + "grad_norm": 0.7816150784492493, + "learning_rate": 2.934926666666667e-05, + "loss": 1.6250926208496095, + "step": 309900 + }, + { + "epoch": 41.333333333333336, + "grad_norm": 0.789966344833374, + "learning_rate": 2.9342600000000003e-05, + "loss": 1.6290631103515625, + "step": 310000 + }, + { + "epoch": 41.346666666666664, + "grad_norm": 0.7828590273857117, + "learning_rate": 2.9335933333333338e-05, + "loss": 1.6320005798339843, + "step": 310100 + }, + { + "epoch": 41.36, + "grad_norm": 0.7721713781356812, + "learning_rate": 2.9329266666666667e-05, + "loss": 1.6315066528320312, + "step": 310200 + }, + { + "epoch": 41.373333333333335, + "grad_norm": 0.7936566472053528, + "learning_rate": 2.93226e-05, + "loss": 1.6328521728515626, + "step": 310300 + }, + { + "epoch": 41.38666666666666, + "grad_norm": 0.8090173602104187, + "learning_rate": 2.9315933333333335e-05, + "loss": 1.6380584716796875, + "step": 310400 + }, + { + "epoch": 41.4, + "grad_norm": 0.7758917808532715, + "learning_rate": 2.9309266666666667e-05, + "loss": 1.6311029052734376, + "step": 310500 + }, + { + "epoch": 41.413333333333334, + "grad_norm": 0.7972980737686157, + "learning_rate": 2.9302600000000003e-05, + "loss": 1.6364056396484374, + "step": 310600 + }, + { + "epoch": 41.42666666666667, + "grad_norm": 0.795874834060669, + "learning_rate": 2.9295933333333335e-05, + "loss": 1.636111297607422, + "step": 310700 + }, + { + "epoch": 41.44, + "grad_norm": 0.8138737678527832, + "learning_rate": 2.928926666666667e-05, + "loss": 1.636154022216797, + "step": 310800 + }, + { + "epoch": 41.45333333333333, + "grad_norm": 0.8085600137710571, + "learning_rate": 2.92826e-05, + "loss": 1.6349728393554688, + "step": 310900 + }, + { + "epoch": 41.46666666666667, + "grad_norm": 0.7742388844490051, + "learning_rate": 2.9275933333333332e-05, + "loss": 1.63881591796875, + "step": 311000 + }, + { + "epoch": 41.48, + "grad_norm": 0.7965194582939148, + "learning_rate": 2.9269266666666668e-05, + "loss": 1.6336904907226562, + "step": 311100 + }, + { + "epoch": 41.49333333333333, + "grad_norm": 0.8123679161071777, + "learning_rate": 2.9262666666666667e-05, + "loss": 1.6433746337890625, + "step": 311200 + }, + { + "epoch": 41.50666666666667, + "grad_norm": 0.799063503742218, + "learning_rate": 2.9256e-05, + "loss": 1.6420155334472657, + "step": 311300 + }, + { + "epoch": 41.52, + "grad_norm": 0.7700026631355286, + "learning_rate": 2.9249333333333335e-05, + "loss": 1.6381747436523437, + "step": 311400 + }, + { + "epoch": 41.53333333333333, + "grad_norm": 0.783812940120697, + "learning_rate": 2.9242666666666667e-05, + "loss": 1.6365054321289063, + "step": 311500 + }, + { + "epoch": 41.54666666666667, + "grad_norm": 0.7764769792556763, + "learning_rate": 2.9236000000000003e-05, + "loss": 1.6388162231445313, + "step": 311600 + }, + { + "epoch": 41.56, + "grad_norm": 0.7944959402084351, + "learning_rate": 2.9229333333333335e-05, + "loss": 1.6455184936523437, + "step": 311700 + }, + { + "epoch": 41.57333333333333, + "grad_norm": 0.7800427079200745, + "learning_rate": 2.922266666666667e-05, + "loss": 1.6459024047851563, + "step": 311800 + }, + { + "epoch": 41.586666666666666, + "grad_norm": 0.8255797624588013, + "learning_rate": 2.9216e-05, + "loss": 1.6468026733398438, + "step": 311900 + }, + { + "epoch": 41.6, + "grad_norm": 0.7957680225372314, + "learning_rate": 2.9209333333333332e-05, + "loss": 1.6451564025878906, + "step": 312000 + }, + { + "epoch": 41.61333333333333, + "grad_norm": 0.8067429661750793, + "learning_rate": 2.9202666666666667e-05, + "loss": 1.649429168701172, + "step": 312100 + }, + { + "epoch": 41.626666666666665, + "grad_norm": 0.7828828692436218, + "learning_rate": 2.9196e-05, + "loss": 1.6439801025390626, + "step": 312200 + }, + { + "epoch": 41.64, + "grad_norm": 0.7971386313438416, + "learning_rate": 2.9189333333333335e-05, + "loss": 1.6461314392089843, + "step": 312300 + }, + { + "epoch": 41.653333333333336, + "grad_norm": 0.8209567666053772, + "learning_rate": 2.9182666666666668e-05, + "loss": 1.6470904541015625, + "step": 312400 + }, + { + "epoch": 41.666666666666664, + "grad_norm": 0.8193508386611938, + "learning_rate": 2.9176000000000003e-05, + "loss": 1.6506707763671875, + "step": 312500 + }, + { + "epoch": 41.68, + "grad_norm": 0.8329564929008484, + "learning_rate": 2.916933333333334e-05, + "loss": 1.6542561340332032, + "step": 312600 + }, + { + "epoch": 41.693333333333335, + "grad_norm": 0.7866358160972595, + "learning_rate": 2.9162666666666664e-05, + "loss": 1.6521278381347657, + "step": 312700 + }, + { + "epoch": 41.70666666666666, + "grad_norm": 0.8379685878753662, + "learning_rate": 2.9156e-05, + "loss": 1.6496038818359375, + "step": 312800 + }, + { + "epoch": 41.72, + "grad_norm": 0.7962581515312195, + "learning_rate": 2.9149333333333336e-05, + "loss": 1.6517626953125, + "step": 312900 + }, + { + "epoch": 41.733333333333334, + "grad_norm": 0.7623695135116577, + "learning_rate": 2.9142666666666668e-05, + "loss": 1.6487763977050782, + "step": 313000 + }, + { + "epoch": 41.74666666666667, + "grad_norm": 0.7969656586647034, + "learning_rate": 2.9136000000000004e-05, + "loss": 1.6543055725097657, + "step": 313100 + }, + { + "epoch": 41.76, + "grad_norm": 0.8090587258338928, + "learning_rate": 2.9129333333333336e-05, + "loss": 1.6550767517089844, + "step": 313200 + }, + { + "epoch": 41.77333333333333, + "grad_norm": 0.8005834817886353, + "learning_rate": 2.912266666666667e-05, + "loss": 1.6577835083007812, + "step": 313300 + }, + { + "epoch": 41.78666666666667, + "grad_norm": 0.7874211668968201, + "learning_rate": 2.9116e-05, + "loss": 1.6544857788085938, + "step": 313400 + }, + { + "epoch": 41.8, + "grad_norm": 0.7901095747947693, + "learning_rate": 2.9109400000000003e-05, + "loss": 1.6523391723632812, + "step": 313500 + }, + { + "epoch": 41.81333333333333, + "grad_norm": 0.7718372344970703, + "learning_rate": 2.910273333333334e-05, + "loss": 1.657394256591797, + "step": 313600 + }, + { + "epoch": 41.82666666666667, + "grad_norm": 0.8033204078674316, + "learning_rate": 2.9096066666666667e-05, + "loss": 1.6549183654785156, + "step": 313700 + }, + { + "epoch": 41.84, + "grad_norm": 0.773262619972229, + "learning_rate": 2.90894e-05, + "loss": 1.660445556640625, + "step": 313800 + }, + { + "epoch": 41.85333333333333, + "grad_norm": 0.781597375869751, + "learning_rate": 2.9082733333333335e-05, + "loss": 1.659234619140625, + "step": 313900 + }, + { + "epoch": 41.86666666666667, + "grad_norm": 0.823759138584137, + "learning_rate": 2.9076066666666668e-05, + "loss": 1.6564396667480468, + "step": 314000 + }, + { + "epoch": 41.88, + "grad_norm": 0.7636963725090027, + "learning_rate": 2.9069400000000003e-05, + "loss": 1.65720703125, + "step": 314100 + }, + { + "epoch": 41.89333333333333, + "grad_norm": 0.7856835126876831, + "learning_rate": 2.9062733333333336e-05, + "loss": 1.6625801086425782, + "step": 314200 + }, + { + "epoch": 41.906666666666666, + "grad_norm": 0.7966486215591431, + "learning_rate": 2.905606666666667e-05, + "loss": 1.6632244873046875, + "step": 314300 + }, + { + "epoch": 41.92, + "grad_norm": 0.7848227024078369, + "learning_rate": 2.90494e-05, + "loss": 1.6618414306640625, + "step": 314400 + }, + { + "epoch": 41.93333333333333, + "grad_norm": 0.8092052936553955, + "learning_rate": 2.9042733333333332e-05, + "loss": 1.6637734985351562, + "step": 314500 + }, + { + "epoch": 41.946666666666665, + "grad_norm": 0.8151919841766357, + "learning_rate": 2.9036066666666668e-05, + "loss": 1.6675376892089844, + "step": 314600 + }, + { + "epoch": 41.96, + "grad_norm": 0.7819831371307373, + "learning_rate": 2.90294e-05, + "loss": 1.6665446472167968, + "step": 314700 + }, + { + "epoch": 41.973333333333336, + "grad_norm": 0.7871850728988647, + "learning_rate": 2.9022733333333336e-05, + "loss": 1.66580810546875, + "step": 314800 + }, + { + "epoch": 41.986666666666665, + "grad_norm": 0.8031324744224548, + "learning_rate": 2.9016066666666668e-05, + "loss": 1.6656488037109376, + "step": 314900 + }, + { + "epoch": 42.0, + "grad_norm": 0.8214955925941467, + "learning_rate": 2.9009400000000004e-05, + "loss": 1.6649081420898437, + "step": 315000 + }, + { + "epoch": 42.013333333333335, + "grad_norm": 0.7725866436958313, + "learning_rate": 2.9002733333333336e-05, + "loss": 1.579239501953125, + "step": 315100 + }, + { + "epoch": 42.026666666666664, + "grad_norm": 0.7591557502746582, + "learning_rate": 2.8996066666666665e-05, + "loss": 1.5807839965820312, + "step": 315200 + }, + { + "epoch": 42.04, + "grad_norm": 0.7683588862419128, + "learning_rate": 2.89894e-05, + "loss": 1.584822235107422, + "step": 315300 + }, + { + "epoch": 42.053333333333335, + "grad_norm": 0.7662196159362793, + "learning_rate": 2.8982733333333333e-05, + "loss": 1.5851914978027344, + "step": 315400 + }, + { + "epoch": 42.06666666666667, + "grad_norm": 0.8008477687835693, + "learning_rate": 2.897606666666667e-05, + "loss": 1.5897236633300782, + "step": 315500 + }, + { + "epoch": 42.08, + "grad_norm": 0.8044509291648865, + "learning_rate": 2.8969466666666668e-05, + "loss": 1.5850997924804688, + "step": 315600 + }, + { + "epoch": 42.093333333333334, + "grad_norm": 0.82093745470047, + "learning_rate": 2.89628e-05, + "loss": 1.5886293029785157, + "step": 315700 + }, + { + "epoch": 42.10666666666667, + "grad_norm": 0.7949629426002502, + "learning_rate": 2.8956133333333336e-05, + "loss": 1.5937432861328125, + "step": 315800 + }, + { + "epoch": 42.12, + "grad_norm": 0.7797324657440186, + "learning_rate": 2.8949466666666668e-05, + "loss": 1.5901795959472655, + "step": 315900 + }, + { + "epoch": 42.13333333333333, + "grad_norm": 0.7416061758995056, + "learning_rate": 2.8942800000000003e-05, + "loss": 1.5912071228027345, + "step": 316000 + }, + { + "epoch": 42.14666666666667, + "grad_norm": 0.796648383140564, + "learning_rate": 2.8936133333333336e-05, + "loss": 1.5968006896972655, + "step": 316100 + }, + { + "epoch": 42.16, + "grad_norm": 0.7828426361083984, + "learning_rate": 2.8929466666666665e-05, + "loss": 1.6001832580566406, + "step": 316200 + }, + { + "epoch": 42.17333333333333, + "grad_norm": 0.778724193572998, + "learning_rate": 2.89228e-05, + "loss": 1.5923294067382812, + "step": 316300 + }, + { + "epoch": 42.18666666666667, + "grad_norm": 0.7975136637687683, + "learning_rate": 2.8916133333333333e-05, + "loss": 1.5967176818847657, + "step": 316400 + }, + { + "epoch": 42.2, + "grad_norm": 0.7668192386627197, + "learning_rate": 2.8909466666666668e-05, + "loss": 1.6007345581054688, + "step": 316500 + }, + { + "epoch": 42.21333333333333, + "grad_norm": 0.7750270366668701, + "learning_rate": 2.89028e-05, + "loss": 1.601139373779297, + "step": 316600 + }, + { + "epoch": 42.22666666666667, + "grad_norm": 0.8115882873535156, + "learning_rate": 2.8896133333333336e-05, + "loss": 1.5999020385742186, + "step": 316700 + }, + { + "epoch": 42.24, + "grad_norm": 0.8152367472648621, + "learning_rate": 2.8889466666666672e-05, + "loss": 1.6009846496582032, + "step": 316800 + }, + { + "epoch": 42.25333333333333, + "grad_norm": 0.7818172574043274, + "learning_rate": 2.8882799999999997e-05, + "loss": 1.6060690307617187, + "step": 316900 + }, + { + "epoch": 42.266666666666666, + "grad_norm": 0.7581207156181335, + "learning_rate": 2.8876133333333333e-05, + "loss": 1.61083984375, + "step": 317000 + }, + { + "epoch": 42.28, + "grad_norm": 0.797792911529541, + "learning_rate": 2.8869466666666665e-05, + "loss": 1.6037715148925782, + "step": 317100 + }, + { + "epoch": 42.29333333333334, + "grad_norm": 0.8175429701805115, + "learning_rate": 2.88628e-05, + "loss": 1.6076036071777344, + "step": 317200 + }, + { + "epoch": 42.306666666666665, + "grad_norm": 0.772908627986908, + "learning_rate": 2.8856133333333337e-05, + "loss": 1.6125408935546874, + "step": 317300 + }, + { + "epoch": 42.32, + "grad_norm": 0.7854279279708862, + "learning_rate": 2.884946666666667e-05, + "loss": 1.6088632202148438, + "step": 317400 + }, + { + "epoch": 42.333333333333336, + "grad_norm": 0.7655262351036072, + "learning_rate": 2.8842800000000004e-05, + "loss": 1.610213623046875, + "step": 317500 + }, + { + "epoch": 42.346666666666664, + "grad_norm": 0.7729225754737854, + "learning_rate": 2.8836133333333337e-05, + "loss": 1.6126589965820313, + "step": 317600 + }, + { + "epoch": 42.36, + "grad_norm": 0.7809514403343201, + "learning_rate": 2.8829466666666666e-05, + "loss": 1.6137397766113282, + "step": 317700 + }, + { + "epoch": 42.373333333333335, + "grad_norm": 0.8015533089637756, + "learning_rate": 2.88228e-05, + "loss": 1.6137492370605468, + "step": 317800 + }, + { + "epoch": 42.38666666666666, + "grad_norm": 0.8014168739318848, + "learning_rate": 2.8816133333333334e-05, + "loss": 1.6128648376464845, + "step": 317900 + }, + { + "epoch": 42.4, + "grad_norm": 0.8032166957855225, + "learning_rate": 2.8809533333333333e-05, + "loss": 1.617438507080078, + "step": 318000 + }, + { + "epoch": 42.413333333333334, + "grad_norm": 0.7962257266044617, + "learning_rate": 2.8802866666666668e-05, + "loss": 1.6180424499511719, + "step": 318100 + }, + { + "epoch": 42.42666666666667, + "grad_norm": 0.7772518992424011, + "learning_rate": 2.87962e-05, + "loss": 1.618890838623047, + "step": 318200 + }, + { + "epoch": 42.44, + "grad_norm": 0.8154412508010864, + "learning_rate": 2.8789533333333336e-05, + "loss": 1.6198379516601562, + "step": 318300 + }, + { + "epoch": 42.45333333333333, + "grad_norm": 0.8127172589302063, + "learning_rate": 2.878286666666667e-05, + "loss": 1.620894317626953, + "step": 318400 + }, + { + "epoch": 42.46666666666667, + "grad_norm": 0.7918204069137573, + "learning_rate": 2.8776200000000004e-05, + "loss": 1.620947265625, + "step": 318500 + }, + { + "epoch": 42.48, + "grad_norm": 0.7991171479225159, + "learning_rate": 2.8769533333333336e-05, + "loss": 1.6179556274414062, + "step": 318600 + }, + { + "epoch": 42.49333333333333, + "grad_norm": 0.7768269777297974, + "learning_rate": 2.8762866666666665e-05, + "loss": 1.619527587890625, + "step": 318700 + }, + { + "epoch": 42.50666666666667, + "grad_norm": 0.8096961379051208, + "learning_rate": 2.87562e-05, + "loss": 1.618616943359375, + "step": 318800 + }, + { + "epoch": 42.52, + "grad_norm": 0.7590042352676392, + "learning_rate": 2.8749533333333333e-05, + "loss": 1.6230258178710937, + "step": 318900 + }, + { + "epoch": 42.53333333333333, + "grad_norm": 0.8029301762580872, + "learning_rate": 2.874286666666667e-05, + "loss": 1.6235476684570314, + "step": 319000 + }, + { + "epoch": 42.54666666666667, + "grad_norm": 0.794658899307251, + "learning_rate": 2.87362e-05, + "loss": 1.6211264038085937, + "step": 319100 + }, + { + "epoch": 42.56, + "grad_norm": 0.843220591545105, + "learning_rate": 2.8729533333333337e-05, + "loss": 1.6271005249023438, + "step": 319200 + }, + { + "epoch": 42.57333333333333, + "grad_norm": 0.8237653374671936, + "learning_rate": 2.872286666666667e-05, + "loss": 1.6294674682617187, + "step": 319300 + }, + { + "epoch": 42.586666666666666, + "grad_norm": 0.8025068640708923, + "learning_rate": 2.8716199999999998e-05, + "loss": 1.6239111328125, + "step": 319400 + }, + { + "epoch": 42.6, + "grad_norm": 0.7929406762123108, + "learning_rate": 2.8709533333333334e-05, + "loss": 1.6274394226074218, + "step": 319500 + }, + { + "epoch": 42.61333333333333, + "grad_norm": 0.8021830320358276, + "learning_rate": 2.8702866666666666e-05, + "loss": 1.6309587097167968, + "step": 319600 + }, + { + "epoch": 42.626666666666665, + "grad_norm": 0.8247801661491394, + "learning_rate": 2.86962e-05, + "loss": 1.6306277465820314, + "step": 319700 + }, + { + "epoch": 42.64, + "grad_norm": 0.7925310134887695, + "learning_rate": 2.8689533333333334e-05, + "loss": 1.6312562561035155, + "step": 319800 + }, + { + "epoch": 42.653333333333336, + "grad_norm": 0.7969545722007751, + "learning_rate": 2.868286666666667e-05, + "loss": 1.6337765502929686, + "step": 319900 + }, + { + "epoch": 42.666666666666664, + "grad_norm": 0.8170307278633118, + "learning_rate": 2.86762e-05, + "loss": 1.6321212768554687, + "step": 320000 + }, + { + "epoch": 42.68, + "grad_norm": 0.77912837266922, + "learning_rate": 2.86696e-05, + "loss": 1.6315771484375, + "step": 320100 + }, + { + "epoch": 42.693333333333335, + "grad_norm": 0.788314938545227, + "learning_rate": 2.8662933333333336e-05, + "loss": 1.6329681396484375, + "step": 320200 + }, + { + "epoch": 42.70666666666666, + "grad_norm": 0.8608801960945129, + "learning_rate": 2.865626666666667e-05, + "loss": 1.6328976440429688, + "step": 320300 + }, + { + "epoch": 42.72, + "grad_norm": 0.8006208539009094, + "learning_rate": 2.8649599999999998e-05, + "loss": 1.6340364074707032, + "step": 320400 + }, + { + "epoch": 42.733333333333334, + "grad_norm": 0.7970700263977051, + "learning_rate": 2.8642933333333333e-05, + "loss": 1.633923797607422, + "step": 320500 + }, + { + "epoch": 42.74666666666667, + "grad_norm": 0.7704428434371948, + "learning_rate": 2.8636266666666665e-05, + "loss": 1.6360755920410157, + "step": 320600 + }, + { + "epoch": 42.76, + "grad_norm": 0.8283227682113647, + "learning_rate": 2.86296e-05, + "loss": 1.637872772216797, + "step": 320700 + }, + { + "epoch": 42.77333333333333, + "grad_norm": 0.851524293422699, + "learning_rate": 2.8622933333333333e-05, + "loss": 1.6359402465820312, + "step": 320800 + }, + { + "epoch": 42.78666666666667, + "grad_norm": 0.7893416881561279, + "learning_rate": 2.861626666666667e-05, + "loss": 1.6323648071289063, + "step": 320900 + }, + { + "epoch": 42.8, + "grad_norm": 0.8033201098442078, + "learning_rate": 2.8609600000000005e-05, + "loss": 1.6443894958496095, + "step": 321000 + }, + { + "epoch": 42.81333333333333, + "grad_norm": 0.8074483275413513, + "learning_rate": 2.8602933333333337e-05, + "loss": 1.639532470703125, + "step": 321100 + }, + { + "epoch": 42.82666666666667, + "grad_norm": 0.7866470217704773, + "learning_rate": 2.8596266666666666e-05, + "loss": 1.64190673828125, + "step": 321200 + }, + { + "epoch": 42.84, + "grad_norm": 0.8023852109909058, + "learning_rate": 2.8589599999999998e-05, + "loss": 1.638301239013672, + "step": 321300 + }, + { + "epoch": 42.85333333333333, + "grad_norm": 0.8220396637916565, + "learning_rate": 2.8582933333333334e-05, + "loss": 1.6426438903808593, + "step": 321400 + }, + { + "epoch": 42.86666666666667, + "grad_norm": 0.8232139945030212, + "learning_rate": 2.857626666666667e-05, + "loss": 1.6402984619140626, + "step": 321500 + }, + { + "epoch": 42.88, + "grad_norm": 0.8309381604194641, + "learning_rate": 2.8569600000000002e-05, + "loss": 1.636634521484375, + "step": 321600 + }, + { + "epoch": 42.89333333333333, + "grad_norm": 0.8182979226112366, + "learning_rate": 2.8562933333333337e-05, + "loss": 1.6453871154785156, + "step": 321700 + }, + { + "epoch": 42.906666666666666, + "grad_norm": 0.8423646688461304, + "learning_rate": 2.855626666666667e-05, + "loss": 1.6444189453125, + "step": 321800 + }, + { + "epoch": 42.92, + "grad_norm": 0.8091830015182495, + "learning_rate": 2.8549600000000005e-05, + "loss": 1.6435879516601561, + "step": 321900 + }, + { + "epoch": 42.93333333333333, + "grad_norm": 0.8040499091148376, + "learning_rate": 2.8542933333333334e-05, + "loss": 1.6471051025390624, + "step": 322000 + }, + { + "epoch": 42.946666666666665, + "grad_norm": 0.8056833148002625, + "learning_rate": 2.8536266666666666e-05, + "loss": 1.6470870971679688, + "step": 322100 + }, + { + "epoch": 42.96, + "grad_norm": 0.8252720832824707, + "learning_rate": 2.8529600000000002e-05, + "loss": 1.647276611328125, + "step": 322200 + }, + { + "epoch": 42.973333333333336, + "grad_norm": 0.7846107482910156, + "learning_rate": 2.8522933333333334e-05, + "loss": 1.6448028564453125, + "step": 322300 + }, + { + "epoch": 42.986666666666665, + "grad_norm": 0.8476292490959167, + "learning_rate": 2.851626666666667e-05, + "loss": 1.6520864868164062, + "step": 322400 + }, + { + "epoch": 43.0, + "grad_norm": 0.8160085678100586, + "learning_rate": 2.850966666666667e-05, + "loss": 1.6483326721191407, + "step": 322500 + }, + { + "epoch": 43.013333333333335, + "grad_norm": 0.8134644627571106, + "learning_rate": 2.8503e-05, + "loss": 1.564569854736328, + "step": 322600 + }, + { + "epoch": 43.026666666666664, + "grad_norm": 0.7962319850921631, + "learning_rate": 2.8496333333333337e-05, + "loss": 1.5676768493652344, + "step": 322700 + }, + { + "epoch": 43.04, + "grad_norm": 0.7382012009620667, + "learning_rate": 2.848966666666667e-05, + "loss": 1.566510467529297, + "step": 322800 + }, + { + "epoch": 43.053333333333335, + "grad_norm": 0.7968773245811462, + "learning_rate": 2.8483000000000005e-05, + "loss": 1.5708531188964843, + "step": 322900 + }, + { + "epoch": 43.06666666666667, + "grad_norm": 0.7553964853286743, + "learning_rate": 2.8476333333333334e-05, + "loss": 1.5697604370117189, + "step": 323000 + }, + { + "epoch": 43.08, + "grad_norm": 0.7678956389427185, + "learning_rate": 2.8469666666666666e-05, + "loss": 1.5742947387695312, + "step": 323100 + }, + { + "epoch": 43.093333333333334, + "grad_norm": 0.80665522813797, + "learning_rate": 2.8463000000000002e-05, + "loss": 1.5716915893554688, + "step": 323200 + }, + { + "epoch": 43.10666666666667, + "grad_norm": 0.8582669496536255, + "learning_rate": 2.8456333333333334e-05, + "loss": 1.5759283447265624, + "step": 323300 + }, + { + "epoch": 43.12, + "grad_norm": 0.8015368580818176, + "learning_rate": 2.844966666666667e-05, + "loss": 1.5717546081542968, + "step": 323400 + }, + { + "epoch": 43.13333333333333, + "grad_norm": 0.7866412997245789, + "learning_rate": 2.8443000000000002e-05, + "loss": 1.5720692443847657, + "step": 323500 + }, + { + "epoch": 43.14666666666667, + "grad_norm": 0.7602863311767578, + "learning_rate": 2.8436333333333338e-05, + "loss": 1.5750347900390624, + "step": 323600 + }, + { + "epoch": 43.16, + "grad_norm": 0.7865772843360901, + "learning_rate": 2.8429666666666666e-05, + "loss": 1.578832550048828, + "step": 323700 + }, + { + "epoch": 43.17333333333333, + "grad_norm": 0.7900835871696472, + "learning_rate": 2.8423e-05, + "loss": 1.576087188720703, + "step": 323800 + }, + { + "epoch": 43.18666666666667, + "grad_norm": 0.7576287984848022, + "learning_rate": 2.8416333333333334e-05, + "loss": 1.582108917236328, + "step": 323900 + }, + { + "epoch": 43.2, + "grad_norm": 0.8061697483062744, + "learning_rate": 2.8409666666666667e-05, + "loss": 1.5846551513671876, + "step": 324000 + }, + { + "epoch": 43.21333333333333, + "grad_norm": 0.8036941289901733, + "learning_rate": 2.8403000000000002e-05, + "loss": 1.5829280090332032, + "step": 324100 + }, + { + "epoch": 43.22666666666667, + "grad_norm": 0.81672602891922, + "learning_rate": 2.8396333333333335e-05, + "loss": 1.5833650207519532, + "step": 324200 + }, + { + "epoch": 43.24, + "grad_norm": 0.7637189626693726, + "learning_rate": 2.838966666666667e-05, + "loss": 1.5832330322265624, + "step": 324300 + }, + { + "epoch": 43.25333333333333, + "grad_norm": 0.810999870300293, + "learning_rate": 2.8383000000000003e-05, + "loss": 1.585732421875, + "step": 324400 + }, + { + "epoch": 43.266666666666666, + "grad_norm": 0.7959699034690857, + "learning_rate": 2.837633333333333e-05, + "loss": 1.5903799438476562, + "step": 324500 + }, + { + "epoch": 43.28, + "grad_norm": 0.8153569102287292, + "learning_rate": 2.8369666666666667e-05, + "loss": 1.5871414184570312, + "step": 324600 + }, + { + "epoch": 43.29333333333334, + "grad_norm": 0.7914409637451172, + "learning_rate": 2.8363066666666666e-05, + "loss": 1.5875323486328126, + "step": 324700 + }, + { + "epoch": 43.306666666666665, + "grad_norm": 0.7989243268966675, + "learning_rate": 2.83564e-05, + "loss": 1.5916000366210938, + "step": 324800 + }, + { + "epoch": 43.32, + "grad_norm": 0.7825499773025513, + "learning_rate": 2.8349733333333334e-05, + "loss": 1.5893446350097655, + "step": 324900 + }, + { + "epoch": 43.333333333333336, + "grad_norm": 0.8575960993766785, + "learning_rate": 2.8343066666666666e-05, + "loss": 1.5977841186523438, + "step": 325000 + }, + { + "epoch": 43.346666666666664, + "grad_norm": 0.8244292736053467, + "learning_rate": 2.8336400000000002e-05, + "loss": 1.601702880859375, + "step": 325100 + }, + { + "epoch": 43.36, + "grad_norm": 0.7933399677276611, + "learning_rate": 2.8329733333333334e-05, + "loss": 1.5982562255859376, + "step": 325200 + }, + { + "epoch": 43.373333333333335, + "grad_norm": 0.767894446849823, + "learning_rate": 2.832306666666667e-05, + "loss": 1.5982928466796875, + "step": 325300 + }, + { + "epoch": 43.38666666666666, + "grad_norm": 0.7718991041183472, + "learning_rate": 2.8316400000000006e-05, + "loss": 1.595538330078125, + "step": 325400 + }, + { + "epoch": 43.4, + "grad_norm": 0.8214613795280457, + "learning_rate": 2.830973333333333e-05, + "loss": 1.5974700927734375, + "step": 325500 + }, + { + "epoch": 43.413333333333334, + "grad_norm": 0.7975192666053772, + "learning_rate": 2.8303066666666667e-05, + "loss": 1.5963027954101563, + "step": 325600 + }, + { + "epoch": 43.42666666666667, + "grad_norm": 0.8252496123313904, + "learning_rate": 2.8296400000000002e-05, + "loss": 1.602006072998047, + "step": 325700 + }, + { + "epoch": 43.44, + "grad_norm": 0.7980925440788269, + "learning_rate": 2.8289733333333335e-05, + "loss": 1.5992507934570312, + "step": 325800 + }, + { + "epoch": 43.45333333333333, + "grad_norm": 0.8060539960861206, + "learning_rate": 2.828306666666667e-05, + "loss": 1.6028526306152344, + "step": 325900 + }, + { + "epoch": 43.46666666666667, + "grad_norm": 0.8016360998153687, + "learning_rate": 2.8276400000000003e-05, + "loss": 1.6021473693847657, + "step": 326000 + }, + { + "epoch": 43.48, + "grad_norm": 0.8183965086936951, + "learning_rate": 2.8269733333333338e-05, + "loss": 1.604202117919922, + "step": 326100 + }, + { + "epoch": 43.49333333333333, + "grad_norm": 0.8167826533317566, + "learning_rate": 2.8263066666666667e-05, + "loss": 1.6037716674804687, + "step": 326200 + }, + { + "epoch": 43.50666666666667, + "grad_norm": 0.822792649269104, + "learning_rate": 2.82564e-05, + "loss": 1.6101824951171875, + "step": 326300 + }, + { + "epoch": 43.52, + "grad_norm": 0.8114305734634399, + "learning_rate": 2.8249733333333335e-05, + "loss": 1.6087193298339844, + "step": 326400 + }, + { + "epoch": 43.53333333333333, + "grad_norm": 0.7822854518890381, + "learning_rate": 2.8243066666666667e-05, + "loss": 1.6054570007324218, + "step": 326500 + }, + { + "epoch": 43.54666666666667, + "grad_norm": 0.8089674115180969, + "learning_rate": 2.8236400000000003e-05, + "loss": 1.6116357421875, + "step": 326600 + }, + { + "epoch": 43.56, + "grad_norm": 0.8371312618255615, + "learning_rate": 2.8229733333333335e-05, + "loss": 1.6092622375488281, + "step": 326700 + }, + { + "epoch": 43.57333333333333, + "grad_norm": 0.8427196145057678, + "learning_rate": 2.822306666666667e-05, + "loss": 1.6071795654296874, + "step": 326800 + }, + { + "epoch": 43.586666666666666, + "grad_norm": 0.8295238614082336, + "learning_rate": 2.8216400000000003e-05, + "loss": 1.6127923583984376, + "step": 326900 + }, + { + "epoch": 43.6, + "grad_norm": 0.7599214315414429, + "learning_rate": 2.8209733333333332e-05, + "loss": 1.6075257873535156, + "step": 327000 + }, + { + "epoch": 43.61333333333333, + "grad_norm": 0.8173493146896362, + "learning_rate": 2.8203133333333338e-05, + "loss": 1.614122314453125, + "step": 327100 + }, + { + "epoch": 43.626666666666665, + "grad_norm": 0.8332886695861816, + "learning_rate": 2.8196466666666667e-05, + "loss": 1.6084408569335937, + "step": 327200 + }, + { + "epoch": 43.64, + "grad_norm": 0.7986454367637634, + "learning_rate": 2.81898e-05, + "loss": 1.611384735107422, + "step": 327300 + }, + { + "epoch": 43.653333333333336, + "grad_norm": 0.810438334941864, + "learning_rate": 2.8183133333333335e-05, + "loss": 1.6099681091308593, + "step": 327400 + }, + { + "epoch": 43.666666666666664, + "grad_norm": 0.8122630715370178, + "learning_rate": 2.8176466666666667e-05, + "loss": 1.6159297180175782, + "step": 327500 + }, + { + "epoch": 43.68, + "grad_norm": 0.8273375630378723, + "learning_rate": 2.8169800000000003e-05, + "loss": 1.61582275390625, + "step": 327600 + }, + { + "epoch": 43.693333333333335, + "grad_norm": 0.8308714628219604, + "learning_rate": 2.8163133333333335e-05, + "loss": 1.6199285888671875, + "step": 327700 + }, + { + "epoch": 43.70666666666666, + "grad_norm": 0.8172910809516907, + "learning_rate": 2.815646666666667e-05, + "loss": 1.6155218505859374, + "step": 327800 + }, + { + "epoch": 43.72, + "grad_norm": 0.8160513639450073, + "learning_rate": 2.8149800000000003e-05, + "loss": 1.6149066162109376, + "step": 327900 + }, + { + "epoch": 43.733333333333334, + "grad_norm": 0.8249967098236084, + "learning_rate": 2.814313333333333e-05, + "loss": 1.6162269592285157, + "step": 328000 + }, + { + "epoch": 43.74666666666667, + "grad_norm": 0.8377850651741028, + "learning_rate": 2.8136466666666667e-05, + "loss": 1.618191680908203, + "step": 328100 + }, + { + "epoch": 43.76, + "grad_norm": 0.8137295842170715, + "learning_rate": 2.81298e-05, + "loss": 1.6187442016601563, + "step": 328200 + }, + { + "epoch": 43.77333333333333, + "grad_norm": 0.837970495223999, + "learning_rate": 2.8123133333333335e-05, + "loss": 1.6166807556152343, + "step": 328300 + }, + { + "epoch": 43.78666666666667, + "grad_norm": 0.8243003487586975, + "learning_rate": 2.8116466666666668e-05, + "loss": 1.616520233154297, + "step": 328400 + }, + { + "epoch": 43.8, + "grad_norm": 0.803848147392273, + "learning_rate": 2.8109800000000003e-05, + "loss": 1.6198391723632812, + "step": 328500 + }, + { + "epoch": 43.81333333333333, + "grad_norm": 0.833913266658783, + "learning_rate": 2.8103133333333335e-05, + "loss": 1.6213204956054688, + "step": 328600 + }, + { + "epoch": 43.82666666666667, + "grad_norm": 0.8218970894813538, + "learning_rate": 2.8096466666666664e-05, + "loss": 1.6247633361816407, + "step": 328700 + }, + { + "epoch": 43.84, + "grad_norm": 0.7986996173858643, + "learning_rate": 2.80898e-05, + "loss": 1.6211305236816407, + "step": 328800 + }, + { + "epoch": 43.85333333333333, + "grad_norm": 0.8100335597991943, + "learning_rate": 2.8083133333333332e-05, + "loss": 1.6219183349609374, + "step": 328900 + }, + { + "epoch": 43.86666666666667, + "grad_norm": 0.8108803033828735, + "learning_rate": 2.8076466666666668e-05, + "loss": 1.625777587890625, + "step": 329000 + }, + { + "epoch": 43.88, + "grad_norm": 0.8235127329826355, + "learning_rate": 2.80698e-05, + "loss": 1.6242713928222656, + "step": 329100 + }, + { + "epoch": 43.89333333333333, + "grad_norm": 0.8156707882881165, + "learning_rate": 2.8063133333333336e-05, + "loss": 1.6232484436035157, + "step": 329200 + }, + { + "epoch": 43.906666666666666, + "grad_norm": 0.8078377842903137, + "learning_rate": 2.805646666666667e-05, + "loss": 1.628054656982422, + "step": 329300 + }, + { + "epoch": 43.92, + "grad_norm": 0.8015416264533997, + "learning_rate": 2.8049866666666667e-05, + "loss": 1.6264244079589845, + "step": 329400 + }, + { + "epoch": 43.93333333333333, + "grad_norm": 0.8207682967185974, + "learning_rate": 2.8043200000000003e-05, + "loss": 1.6302552795410157, + "step": 329500 + }, + { + "epoch": 43.946666666666665, + "grad_norm": 0.8398280739784241, + "learning_rate": 2.803653333333334e-05, + "loss": 1.6280979919433594, + "step": 329600 + }, + { + "epoch": 43.96, + "grad_norm": 0.8197426199913025, + "learning_rate": 2.8029866666666664e-05, + "loss": 1.628609619140625, + "step": 329700 + }, + { + "epoch": 43.973333333333336, + "grad_norm": 0.8169100284576416, + "learning_rate": 2.80232e-05, + "loss": 1.6312359619140624, + "step": 329800 + }, + { + "epoch": 43.986666666666665, + "grad_norm": 0.83058100938797, + "learning_rate": 2.8016533333333332e-05, + "loss": 1.6318269348144532, + "step": 329900 + }, + { + "epoch": 44.0, + "grad_norm": 0.8323699831962585, + "learning_rate": 2.8009866666666668e-05, + "loss": 1.630924072265625, + "step": 330000 + }, + { + "epoch": 44.013333333333335, + "grad_norm": 0.7513566613197327, + "learning_rate": 2.8003200000000003e-05, + "loss": 1.5481965637207031, + "step": 330100 + }, + { + "epoch": 44.026666666666664, + "grad_norm": 0.795397162437439, + "learning_rate": 2.7996533333333335e-05, + "loss": 1.548214874267578, + "step": 330200 + }, + { + "epoch": 44.04, + "grad_norm": 0.8049753904342651, + "learning_rate": 2.798986666666667e-05, + "loss": 1.5531326293945313, + "step": 330300 + }, + { + "epoch": 44.053333333333335, + "grad_norm": 0.8120512366294861, + "learning_rate": 2.7983200000000003e-05, + "loss": 1.5544256591796874, + "step": 330400 + }, + { + "epoch": 44.06666666666667, + "grad_norm": 0.7974734306335449, + "learning_rate": 2.7976533333333332e-05, + "loss": 1.5533895874023438, + "step": 330500 + }, + { + "epoch": 44.08, + "grad_norm": 0.7629339098930359, + "learning_rate": 2.7969866666666668e-05, + "loss": 1.5582643127441407, + "step": 330600 + }, + { + "epoch": 44.093333333333334, + "grad_norm": 0.8154823184013367, + "learning_rate": 2.79632e-05, + "loss": 1.5581031799316407, + "step": 330700 + }, + { + "epoch": 44.10666666666667, + "grad_norm": 0.7857486605644226, + "learning_rate": 2.7956533333333336e-05, + "loss": 1.5564183044433593, + "step": 330800 + }, + { + "epoch": 44.12, + "grad_norm": 0.787510097026825, + "learning_rate": 2.7949866666666668e-05, + "loss": 1.5604660034179687, + "step": 330900 + }, + { + "epoch": 44.13333333333333, + "grad_norm": 0.8060212135314941, + "learning_rate": 2.7943200000000004e-05, + "loss": 1.5654124450683593, + "step": 331000 + }, + { + "epoch": 44.14666666666667, + "grad_norm": 0.7761242389678955, + "learning_rate": 2.7936533333333336e-05, + "loss": 1.5596726989746095, + "step": 331100 + }, + { + "epoch": 44.16, + "grad_norm": 0.8251379132270813, + "learning_rate": 2.7929866666666665e-05, + "loss": 1.5614840698242187, + "step": 331200 + }, + { + "epoch": 44.17333333333333, + "grad_norm": 0.7911105155944824, + "learning_rate": 2.79232e-05, + "loss": 1.56426025390625, + "step": 331300 + }, + { + "epoch": 44.18666666666667, + "grad_norm": 0.8405753374099731, + "learning_rate": 2.7916533333333333e-05, + "loss": 1.5673910522460937, + "step": 331400 + }, + { + "epoch": 44.2, + "grad_norm": 0.8145385384559631, + "learning_rate": 2.790986666666667e-05, + "loss": 1.5684516906738282, + "step": 331500 + }, + { + "epoch": 44.21333333333333, + "grad_norm": 0.773007333278656, + "learning_rate": 2.7903266666666668e-05, + "loss": 1.5602330017089843, + "step": 331600 + }, + { + "epoch": 44.22666666666667, + "grad_norm": 0.7946937680244446, + "learning_rate": 2.78966e-05, + "loss": 1.5710047912597656, + "step": 331700 + }, + { + "epoch": 44.24, + "grad_norm": 0.7660664916038513, + "learning_rate": 2.7889933333333336e-05, + "loss": 1.5709490966796875, + "step": 331800 + }, + { + "epoch": 44.25333333333333, + "grad_norm": 0.8005920052528381, + "learning_rate": 2.7883266666666668e-05, + "loss": 1.574346160888672, + "step": 331900 + }, + { + "epoch": 44.266666666666666, + "grad_norm": 0.7568239569664001, + "learning_rate": 2.7876600000000003e-05, + "loss": 1.5710443115234376, + "step": 332000 + }, + { + "epoch": 44.28, + "grad_norm": 0.7837048172950745, + "learning_rate": 2.7869933333333336e-05, + "loss": 1.5691023254394532, + "step": 332100 + }, + { + "epoch": 44.29333333333334, + "grad_norm": 0.8391625881195068, + "learning_rate": 2.7863266666666665e-05, + "loss": 1.5703250122070314, + "step": 332200 + }, + { + "epoch": 44.306666666666665, + "grad_norm": 0.8348113298416138, + "learning_rate": 2.78566e-05, + "loss": 1.5742678833007813, + "step": 332300 + }, + { + "epoch": 44.32, + "grad_norm": 0.8065680861473083, + "learning_rate": 2.7849933333333333e-05, + "loss": 1.574197998046875, + "step": 332400 + }, + { + "epoch": 44.333333333333336, + "grad_norm": 0.810249388217926, + "learning_rate": 2.7843266666666668e-05, + "loss": 1.5787997436523438, + "step": 332500 + }, + { + "epoch": 44.346666666666664, + "grad_norm": 0.8214126229286194, + "learning_rate": 2.78366e-05, + "loss": 1.5753494262695313, + "step": 332600 + }, + { + "epoch": 44.36, + "grad_norm": 0.7763717770576477, + "learning_rate": 2.7829933333333336e-05, + "loss": 1.5762429809570313, + "step": 332700 + }, + { + "epoch": 44.373333333333335, + "grad_norm": 0.8266735076904297, + "learning_rate": 2.782326666666667e-05, + "loss": 1.5780609130859375, + "step": 332800 + }, + { + "epoch": 44.38666666666666, + "grad_norm": 0.7696077823638916, + "learning_rate": 2.7816600000000004e-05, + "loss": 1.5806687927246095, + "step": 332900 + }, + { + "epoch": 44.4, + "grad_norm": 0.8544163703918457, + "learning_rate": 2.7809933333333333e-05, + "loss": 1.5851622009277344, + "step": 333000 + }, + { + "epoch": 44.413333333333334, + "grad_norm": 0.8484505414962769, + "learning_rate": 2.7803266666666665e-05, + "loss": 1.581590576171875, + "step": 333100 + }, + { + "epoch": 44.42666666666667, + "grad_norm": 0.8385995626449585, + "learning_rate": 2.77966e-05, + "loss": 1.5861528015136719, + "step": 333200 + }, + { + "epoch": 44.44, + "grad_norm": 0.8071863651275635, + "learning_rate": 2.7789933333333333e-05, + "loss": 1.5843661499023438, + "step": 333300 + }, + { + "epoch": 44.45333333333333, + "grad_norm": 0.7563880085945129, + "learning_rate": 2.778326666666667e-05, + "loss": 1.5832810974121094, + "step": 333400 + }, + { + "epoch": 44.46666666666667, + "grad_norm": 0.8372814655303955, + "learning_rate": 2.77766e-05, + "loss": 1.5854434204101562, + "step": 333500 + }, + { + "epoch": 44.48, + "grad_norm": 0.8299968838691711, + "learning_rate": 2.777e-05, + "loss": 1.5830865478515626, + "step": 333600 + }, + { + "epoch": 44.49333333333333, + "grad_norm": 0.8309788107872009, + "learning_rate": 2.7763333333333336e-05, + "loss": 1.5840238952636718, + "step": 333700 + }, + { + "epoch": 44.50666666666667, + "grad_norm": 0.8194689154624939, + "learning_rate": 2.7756666666666668e-05, + "loss": 1.5837715148925782, + "step": 333800 + }, + { + "epoch": 44.52, + "grad_norm": 0.8060626983642578, + "learning_rate": 2.7750000000000004e-05, + "loss": 1.5884098815917969, + "step": 333900 + }, + { + "epoch": 44.53333333333333, + "grad_norm": 0.8061336278915405, + "learning_rate": 2.7743333333333333e-05, + "loss": 1.588507080078125, + "step": 334000 + }, + { + "epoch": 44.54666666666667, + "grad_norm": 0.8367504477500916, + "learning_rate": 2.7736666666666665e-05, + "loss": 1.5918386840820313, + "step": 334100 + }, + { + "epoch": 44.56, + "grad_norm": 0.7728124260902405, + "learning_rate": 2.773e-05, + "loss": 1.5909431457519532, + "step": 334200 + }, + { + "epoch": 44.57333333333333, + "grad_norm": 0.8325085639953613, + "learning_rate": 2.7723333333333336e-05, + "loss": 1.592117156982422, + "step": 334300 + }, + { + "epoch": 44.586666666666666, + "grad_norm": 0.8074480295181274, + "learning_rate": 2.771666666666667e-05, + "loss": 1.5892124938964844, + "step": 334400 + }, + { + "epoch": 44.6, + "grad_norm": 0.8252527117729187, + "learning_rate": 2.7710000000000004e-05, + "loss": 1.5915934753417968, + "step": 334500 + }, + { + "epoch": 44.61333333333333, + "grad_norm": 0.8227205276489258, + "learning_rate": 2.7703333333333336e-05, + "loss": 1.5954025268554688, + "step": 334600 + }, + { + "epoch": 44.626666666666665, + "grad_norm": 0.7897677421569824, + "learning_rate": 2.7696666666666672e-05, + "loss": 1.595858154296875, + "step": 334700 + }, + { + "epoch": 44.64, + "grad_norm": 0.8313090801239014, + "learning_rate": 2.769e-05, + "loss": 1.5937057495117188, + "step": 334800 + }, + { + "epoch": 44.653333333333336, + "grad_norm": 0.8491702675819397, + "learning_rate": 2.7683333333333333e-05, + "loss": 1.5937522888183593, + "step": 334900 + }, + { + "epoch": 44.666666666666664, + "grad_norm": 0.8034929633140564, + "learning_rate": 2.767666666666667e-05, + "loss": 1.5955474853515625, + "step": 335000 + }, + { + "epoch": 44.68, + "grad_norm": 0.8023072481155396, + "learning_rate": 2.767e-05, + "loss": 1.5998284912109375, + "step": 335100 + }, + { + "epoch": 44.693333333333335, + "grad_norm": 0.8060296177864075, + "learning_rate": 2.7663333333333337e-05, + "loss": 1.5983045959472657, + "step": 335200 + }, + { + "epoch": 44.70666666666666, + "grad_norm": 0.8240456581115723, + "learning_rate": 2.765666666666667e-05, + "loss": 1.6016310119628907, + "step": 335300 + }, + { + "epoch": 44.72, + "grad_norm": 0.8086797595024109, + "learning_rate": 2.7650000000000005e-05, + "loss": 1.5979426574707032, + "step": 335400 + }, + { + "epoch": 44.733333333333334, + "grad_norm": 0.868865966796875, + "learning_rate": 2.7643333333333334e-05, + "loss": 1.6031364440917968, + "step": 335500 + }, + { + "epoch": 44.74666666666667, + "grad_norm": 0.8430706858634949, + "learning_rate": 2.7636733333333336e-05, + "loss": 1.599954833984375, + "step": 335600 + }, + { + "epoch": 44.76, + "grad_norm": 0.8253472447395325, + "learning_rate": 2.763006666666667e-05, + "loss": 1.5997967529296875, + "step": 335700 + }, + { + "epoch": 44.77333333333333, + "grad_norm": 0.8024996519088745, + "learning_rate": 2.76234e-05, + "loss": 1.603931884765625, + "step": 335800 + }, + { + "epoch": 44.78666666666667, + "grad_norm": 0.8097237348556519, + "learning_rate": 2.7616733333333333e-05, + "loss": 1.60475830078125, + "step": 335900 + }, + { + "epoch": 44.8, + "grad_norm": 0.7891868352890015, + "learning_rate": 2.761006666666667e-05, + "loss": 1.5993539428710937, + "step": 336000 + }, + { + "epoch": 44.81333333333333, + "grad_norm": 0.7946909070014954, + "learning_rate": 2.76034e-05, + "loss": 1.608636932373047, + "step": 336100 + }, + { + "epoch": 44.82666666666667, + "grad_norm": 0.8104386329650879, + "learning_rate": 2.7596733333333336e-05, + "loss": 1.6042922973632812, + "step": 336200 + }, + { + "epoch": 44.84, + "grad_norm": 0.8731896281242371, + "learning_rate": 2.759006666666667e-05, + "loss": 1.6097525024414063, + "step": 336300 + }, + { + "epoch": 44.85333333333333, + "grad_norm": 0.8121789693832397, + "learning_rate": 2.7583400000000004e-05, + "loss": 1.606430206298828, + "step": 336400 + }, + { + "epoch": 44.86666666666667, + "grad_norm": 0.8330267667770386, + "learning_rate": 2.7576733333333333e-05, + "loss": 1.6087510681152344, + "step": 336500 + }, + { + "epoch": 44.88, + "grad_norm": 0.852932333946228, + "learning_rate": 2.7570066666666665e-05, + "loss": 1.6065789794921874, + "step": 336600 + }, + { + "epoch": 44.89333333333333, + "grad_norm": 0.8132789134979248, + "learning_rate": 2.75634e-05, + "loss": 1.6074699401855468, + "step": 336700 + }, + { + "epoch": 44.906666666666666, + "grad_norm": 0.8489792943000793, + "learning_rate": 2.7556733333333333e-05, + "loss": 1.606990509033203, + "step": 336800 + }, + { + "epoch": 44.92, + "grad_norm": 0.8278707265853882, + "learning_rate": 2.755006666666667e-05, + "loss": 1.6092149353027343, + "step": 336900 + }, + { + "epoch": 44.93333333333333, + "grad_norm": 0.8030561804771423, + "learning_rate": 2.75434e-05, + "loss": 1.6118333435058594, + "step": 337000 + }, + { + "epoch": 44.946666666666665, + "grad_norm": 0.8444882035255432, + "learning_rate": 2.7536733333333337e-05, + "loss": 1.61545166015625, + "step": 337100 + }, + { + "epoch": 44.96, + "grad_norm": 0.7839025259017944, + "learning_rate": 2.753006666666667e-05, + "loss": 1.6124861145019531, + "step": 337200 + }, + { + "epoch": 44.973333333333336, + "grad_norm": 0.8304545283317566, + "learning_rate": 2.7523399999999998e-05, + "loss": 1.6095152282714844, + "step": 337300 + }, + { + "epoch": 44.986666666666665, + "grad_norm": 0.822806179523468, + "learning_rate": 2.7516733333333334e-05, + "loss": 1.6171923828125, + "step": 337400 + }, + { + "epoch": 45.0, + "grad_norm": 0.8254655003547668, + "learning_rate": 2.7510066666666666e-05, + "loss": 1.61357666015625, + "step": 337500 + }, + { + "epoch": 45.013333333333335, + "grad_norm": 0.75385981798172, + "learning_rate": 2.7503466666666665e-05, + "loss": 1.5345475769042969, + "step": 337600 + }, + { + "epoch": 45.026666666666664, + "grad_norm": 0.7878371477127075, + "learning_rate": 2.74968e-05, + "loss": 1.5335455322265625, + "step": 337700 + }, + { + "epoch": 45.04, + "grad_norm": 0.7791154384613037, + "learning_rate": 2.7490133333333333e-05, + "loss": 1.5394093322753906, + "step": 337800 + }, + { + "epoch": 45.053333333333335, + "grad_norm": 0.8024111390113831, + "learning_rate": 2.748346666666667e-05, + "loss": 1.5331953430175782, + "step": 337900 + }, + { + "epoch": 45.06666666666667, + "grad_norm": 0.8430346846580505, + "learning_rate": 2.74768e-05, + "loss": 1.5368072509765625, + "step": 338000 + }, + { + "epoch": 45.08, + "grad_norm": 0.8052778840065002, + "learning_rate": 2.7470133333333337e-05, + "loss": 1.546075439453125, + "step": 338100 + }, + { + "epoch": 45.093333333333334, + "grad_norm": 0.7933223843574524, + "learning_rate": 2.7463466666666672e-05, + "loss": 1.5412501525878906, + "step": 338200 + }, + { + "epoch": 45.10666666666667, + "grad_norm": 0.801228940486908, + "learning_rate": 2.7456799999999998e-05, + "loss": 1.539934844970703, + "step": 338300 + }, + { + "epoch": 45.12, + "grad_norm": 0.7986882328987122, + "learning_rate": 2.7450133333333333e-05, + "loss": 1.5405552673339844, + "step": 338400 + }, + { + "epoch": 45.13333333333333, + "grad_norm": 0.8069292306900024, + "learning_rate": 2.7443466666666666e-05, + "loss": 1.545841064453125, + "step": 338500 + }, + { + "epoch": 45.14666666666667, + "grad_norm": 0.7927032113075256, + "learning_rate": 2.74368e-05, + "loss": 1.5462718200683594, + "step": 338600 + }, + { + "epoch": 45.16, + "grad_norm": 0.7794001698493958, + "learning_rate": 2.7430133333333337e-05, + "loss": 1.5485234069824219, + "step": 338700 + }, + { + "epoch": 45.17333333333333, + "grad_norm": 0.7855547070503235, + "learning_rate": 2.742346666666667e-05, + "loss": 1.5519866943359375, + "step": 338800 + }, + { + "epoch": 45.18666666666667, + "grad_norm": 0.8333518505096436, + "learning_rate": 2.7416800000000005e-05, + "loss": 1.5467234802246095, + "step": 338900 + }, + { + "epoch": 45.2, + "grad_norm": 0.8590301275253296, + "learning_rate": 2.7410133333333334e-05, + "loss": 1.5527265930175782, + "step": 339000 + }, + { + "epoch": 45.21333333333333, + "grad_norm": 0.8133448958396912, + "learning_rate": 2.7403466666666666e-05, + "loss": 1.5531710815429687, + "step": 339100 + }, + { + "epoch": 45.22666666666667, + "grad_norm": 0.843085527420044, + "learning_rate": 2.7396800000000002e-05, + "loss": 1.552749786376953, + "step": 339200 + }, + { + "epoch": 45.24, + "grad_norm": 0.8271104693412781, + "learning_rate": 2.7390133333333334e-05, + "loss": 1.55497802734375, + "step": 339300 + }, + { + "epoch": 45.25333333333333, + "grad_norm": 0.7889156937599182, + "learning_rate": 2.738346666666667e-05, + "loss": 1.554407958984375, + "step": 339400 + }, + { + "epoch": 45.266666666666666, + "grad_norm": 0.8237720131874084, + "learning_rate": 2.7376800000000002e-05, + "loss": 1.5559963989257812, + "step": 339500 + }, + { + "epoch": 45.28, + "grad_norm": 0.8432164192199707, + "learning_rate": 2.7370133333333338e-05, + "loss": 1.5602865600585938, + "step": 339600 + }, + { + "epoch": 45.29333333333334, + "grad_norm": 0.8066620826721191, + "learning_rate": 2.7363533333333337e-05, + "loss": 1.5569775390625, + "step": 339700 + }, + { + "epoch": 45.306666666666665, + "grad_norm": 0.8251729011535645, + "learning_rate": 2.735686666666667e-05, + "loss": 1.5603398132324218, + "step": 339800 + }, + { + "epoch": 45.32, + "grad_norm": 0.8274789452552795, + "learning_rate": 2.7350200000000005e-05, + "loss": 1.5607125854492188, + "step": 339900 + }, + { + "epoch": 45.333333333333336, + "grad_norm": 0.7985981702804565, + "learning_rate": 2.7343533333333333e-05, + "loss": 1.5612689208984376, + "step": 340000 + }, + { + "epoch": 45.346666666666664, + "grad_norm": 0.8099194765090942, + "learning_rate": 2.7336866666666666e-05, + "loss": 1.5611070251464845, + "step": 340100 + }, + { + "epoch": 45.36, + "grad_norm": 0.7862045764923096, + "learning_rate": 2.73302e-05, + "loss": 1.561177978515625, + "step": 340200 + }, + { + "epoch": 45.373333333333335, + "grad_norm": 0.8008959293365479, + "learning_rate": 2.7323533333333334e-05, + "loss": 1.5632902526855468, + "step": 340300 + }, + { + "epoch": 45.38666666666666, + "grad_norm": 0.8084346055984497, + "learning_rate": 2.731686666666667e-05, + "loss": 1.56494384765625, + "step": 340400 + }, + { + "epoch": 45.4, + "grad_norm": 0.7950522303581238, + "learning_rate": 2.73102e-05, + "loss": 1.563892822265625, + "step": 340500 + }, + { + "epoch": 45.413333333333334, + "grad_norm": 0.8112916350364685, + "learning_rate": 2.7303533333333337e-05, + "loss": 1.5658737182617188, + "step": 340600 + }, + { + "epoch": 45.42666666666667, + "grad_norm": 0.8019904494285583, + "learning_rate": 2.729686666666667e-05, + "loss": 1.5665919494628906, + "step": 340700 + }, + { + "epoch": 45.44, + "grad_norm": 0.8604961037635803, + "learning_rate": 2.72902e-05, + "loss": 1.5618829345703125, + "step": 340800 + }, + { + "epoch": 45.45333333333333, + "grad_norm": 0.8297909498214722, + "learning_rate": 2.7283533333333334e-05, + "loss": 1.5690985107421875, + "step": 340900 + }, + { + "epoch": 45.46666666666667, + "grad_norm": 0.8290330171585083, + "learning_rate": 2.7276866666666666e-05, + "loss": 1.5725372314453125, + "step": 341000 + }, + { + "epoch": 45.48, + "grad_norm": 0.8196405172348022, + "learning_rate": 2.7270200000000002e-05, + "loss": 1.5716435241699218, + "step": 341100 + }, + { + "epoch": 45.49333333333333, + "grad_norm": 0.8516254425048828, + "learning_rate": 2.7263533333333334e-05, + "loss": 1.5708955383300782, + "step": 341200 + }, + { + "epoch": 45.50666666666667, + "grad_norm": 0.8195080161094666, + "learning_rate": 2.725686666666667e-05, + "loss": 1.5677909851074219, + "step": 341300 + }, + { + "epoch": 45.52, + "grad_norm": 0.8368141055107117, + "learning_rate": 2.7250200000000002e-05, + "loss": 1.5750044250488282, + "step": 341400 + }, + { + "epoch": 45.53333333333333, + "grad_norm": 0.8141370415687561, + "learning_rate": 2.724353333333333e-05, + "loss": 1.5710145568847655, + "step": 341500 + }, + { + "epoch": 45.54666666666667, + "grad_norm": 0.8688223361968994, + "learning_rate": 2.7236866666666667e-05, + "loss": 1.577767333984375, + "step": 341600 + }, + { + "epoch": 45.56, + "grad_norm": 0.8282235860824585, + "learning_rate": 2.723026666666667e-05, + "loss": 1.5752143859863281, + "step": 341700 + }, + { + "epoch": 45.57333333333333, + "grad_norm": 0.8183776140213013, + "learning_rate": 2.7223599999999998e-05, + "loss": 1.5708876037597657, + "step": 341800 + }, + { + "epoch": 45.586666666666666, + "grad_norm": 0.820489227771759, + "learning_rate": 2.7216933333333334e-05, + "loss": 1.5763885498046875, + "step": 341900 + }, + { + "epoch": 45.6, + "grad_norm": 0.7990655899047852, + "learning_rate": 2.7210266666666666e-05, + "loss": 1.579280242919922, + "step": 342000 + }, + { + "epoch": 45.61333333333333, + "grad_norm": 0.8262766003608704, + "learning_rate": 2.72036e-05, + "loss": 1.5800761413574218, + "step": 342100 + }, + { + "epoch": 45.626666666666665, + "grad_norm": 0.8294216990470886, + "learning_rate": 2.7196933333333334e-05, + "loss": 1.5776101684570312, + "step": 342200 + }, + { + "epoch": 45.64, + "grad_norm": 0.8527024984359741, + "learning_rate": 2.719026666666667e-05, + "loss": 1.5793777465820313, + "step": 342300 + }, + { + "epoch": 45.653333333333336, + "grad_norm": 0.8285980224609375, + "learning_rate": 2.7183600000000005e-05, + "loss": 1.5826039123535156, + "step": 342400 + }, + { + "epoch": 45.666666666666664, + "grad_norm": 0.7973678708076477, + "learning_rate": 2.717693333333333e-05, + "loss": 1.5825093078613282, + "step": 342500 + }, + { + "epoch": 45.68, + "grad_norm": 0.8386090993881226, + "learning_rate": 2.7170266666666666e-05, + "loss": 1.5819102478027345, + "step": 342600 + }, + { + "epoch": 45.693333333333335, + "grad_norm": 0.8596566915512085, + "learning_rate": 2.71636e-05, + "loss": 1.5824310302734375, + "step": 342700 + }, + { + "epoch": 45.70666666666666, + "grad_norm": 0.84074467420578, + "learning_rate": 2.7156933333333334e-05, + "loss": 1.5835606384277343, + "step": 342800 + }, + { + "epoch": 45.72, + "grad_norm": 0.8335156440734863, + "learning_rate": 2.715026666666667e-05, + "loss": 1.5831988525390626, + "step": 342900 + }, + { + "epoch": 45.733333333333334, + "grad_norm": 0.8545652031898499, + "learning_rate": 2.7143600000000002e-05, + "loss": 1.5821173095703125, + "step": 343000 + }, + { + "epoch": 45.74666666666667, + "grad_norm": 0.8127861022949219, + "learning_rate": 2.7136933333333338e-05, + "loss": 1.5852001953125, + "step": 343100 + }, + { + "epoch": 45.76, + "grad_norm": 0.8396148085594177, + "learning_rate": 2.713026666666667e-05, + "loss": 1.5899464416503906, + "step": 343200 + }, + { + "epoch": 45.77333333333333, + "grad_norm": 0.8626675605773926, + "learning_rate": 2.71236e-05, + "loss": 1.5838290405273439, + "step": 343300 + }, + { + "epoch": 45.78666666666667, + "grad_norm": 0.8253298997879028, + "learning_rate": 2.7116933333333335e-05, + "loss": 1.5856344604492187, + "step": 343400 + }, + { + "epoch": 45.8, + "grad_norm": 0.8361122012138367, + "learning_rate": 2.7110266666666667e-05, + "loss": 1.5906475830078124, + "step": 343500 + }, + { + "epoch": 45.81333333333333, + "grad_norm": 0.7877110242843628, + "learning_rate": 2.7103600000000003e-05, + "loss": 1.5869761657714845, + "step": 343600 + }, + { + "epoch": 45.82666666666667, + "grad_norm": 0.8173111081123352, + "learning_rate": 2.7097e-05, + "loss": 1.5882725524902344, + "step": 343700 + }, + { + "epoch": 45.84, + "grad_norm": 0.8360334038734436, + "learning_rate": 2.7090333333333334e-05, + "loss": 1.5957424926757813, + "step": 343800 + }, + { + "epoch": 45.85333333333333, + "grad_norm": 0.8417925834655762, + "learning_rate": 2.708366666666667e-05, + "loss": 1.589451446533203, + "step": 343900 + }, + { + "epoch": 45.86666666666667, + "grad_norm": 0.7977088689804077, + "learning_rate": 2.7077000000000002e-05, + "loss": 1.5911802673339843, + "step": 344000 + }, + { + "epoch": 45.88, + "grad_norm": 0.8282347321510315, + "learning_rate": 2.7070333333333337e-05, + "loss": 1.5962525939941405, + "step": 344100 + }, + { + "epoch": 45.89333333333333, + "grad_norm": 0.8380323648452759, + "learning_rate": 2.706366666666667e-05, + "loss": 1.5943394470214844, + "step": 344200 + }, + { + "epoch": 45.906666666666666, + "grad_norm": 0.8266421556472778, + "learning_rate": 2.7057e-05, + "loss": 1.5934329223632813, + "step": 344300 + }, + { + "epoch": 45.92, + "grad_norm": 0.8296067118644714, + "learning_rate": 2.7050333333333334e-05, + "loss": 1.5951394653320312, + "step": 344400 + }, + { + "epoch": 45.93333333333333, + "grad_norm": 0.8238825798034668, + "learning_rate": 2.7043666666666667e-05, + "loss": 1.5956932067871095, + "step": 344500 + }, + { + "epoch": 45.946666666666665, + "grad_norm": 0.8402311205863953, + "learning_rate": 2.7037000000000002e-05, + "loss": 1.5972817993164063, + "step": 344600 + }, + { + "epoch": 45.96, + "grad_norm": 0.819067656993866, + "learning_rate": 2.7030333333333334e-05, + "loss": 1.5947479248046874, + "step": 344700 + }, + { + "epoch": 45.973333333333336, + "grad_norm": 0.8134846687316895, + "learning_rate": 2.702366666666667e-05, + "loss": 1.5938349914550782, + "step": 344800 + }, + { + "epoch": 45.986666666666665, + "grad_norm": 0.8139092326164246, + "learning_rate": 2.7017000000000002e-05, + "loss": 1.5983534240722657, + "step": 344900 + }, + { + "epoch": 46.0, + "grad_norm": 0.845569908618927, + "learning_rate": 2.701033333333333e-05, + "loss": 1.5993333435058594, + "step": 345000 + }, + { + "epoch": 46.013333333333335, + "grad_norm": 0.8060302138328552, + "learning_rate": 2.7003666666666667e-05, + "loss": 1.5197933959960936, + "step": 345100 + }, + { + "epoch": 46.026666666666664, + "grad_norm": 0.8016753196716309, + "learning_rate": 2.6997e-05, + "loss": 1.5163864135742187, + "step": 345200 + }, + { + "epoch": 46.04, + "grad_norm": 0.824266791343689, + "learning_rate": 2.6990333333333335e-05, + "loss": 1.5196403503417968, + "step": 345300 + }, + { + "epoch": 46.053333333333335, + "grad_norm": 0.831349790096283, + "learning_rate": 2.6983666666666667e-05, + "loss": 1.5196861267089843, + "step": 345400 + }, + { + "epoch": 46.06666666666667, + "grad_norm": 0.794564425945282, + "learning_rate": 2.6977000000000003e-05, + "loss": 1.5226402282714844, + "step": 345500 + }, + { + "epoch": 46.08, + "grad_norm": 0.864202618598938, + "learning_rate": 2.6970333333333335e-05, + "loss": 1.52418701171875, + "step": 345600 + }, + { + "epoch": 46.093333333333334, + "grad_norm": 0.8275471925735474, + "learning_rate": 2.696366666666667e-05, + "loss": 1.5281210327148438, + "step": 345700 + }, + { + "epoch": 46.10666666666667, + "grad_norm": 0.8034723401069641, + "learning_rate": 2.695706666666667e-05, + "loss": 1.5245565795898437, + "step": 345800 + }, + { + "epoch": 46.12, + "grad_norm": 0.8259097337722778, + "learning_rate": 2.6950400000000002e-05, + "loss": 1.531691436767578, + "step": 345900 + }, + { + "epoch": 46.13333333333333, + "grad_norm": 0.8168667554855347, + "learning_rate": 2.694373333333333e-05, + "loss": 1.5279510498046875, + "step": 346000 + }, + { + "epoch": 46.14666666666667, + "grad_norm": 0.8043650984764099, + "learning_rate": 2.6937066666666667e-05, + "loss": 1.530906219482422, + "step": 346100 + }, + { + "epoch": 46.16, + "grad_norm": 0.7977316379547119, + "learning_rate": 2.69304e-05, + "loss": 1.5317568969726563, + "step": 346200 + }, + { + "epoch": 46.17333333333333, + "grad_norm": 0.8600273728370667, + "learning_rate": 2.6923733333333334e-05, + "loss": 1.5322166442871095, + "step": 346300 + }, + { + "epoch": 46.18666666666667, + "grad_norm": 0.8048485517501831, + "learning_rate": 2.6917066666666667e-05, + "loss": 1.5342538452148438, + "step": 346400 + }, + { + "epoch": 46.2, + "grad_norm": 0.8028460144996643, + "learning_rate": 2.6910400000000002e-05, + "loss": 1.538252716064453, + "step": 346500 + }, + { + "epoch": 46.21333333333333, + "grad_norm": 0.8104482293128967, + "learning_rate": 2.6903733333333335e-05, + "loss": 1.537858123779297, + "step": 346600 + }, + { + "epoch": 46.22666666666667, + "grad_norm": 0.8299853205680847, + "learning_rate": 2.689706666666667e-05, + "loss": 1.5331761169433593, + "step": 346700 + }, + { + "epoch": 46.24, + "grad_norm": 0.8089656829833984, + "learning_rate": 2.68904e-05, + "loss": 1.5343820190429687, + "step": 346800 + }, + { + "epoch": 46.25333333333333, + "grad_norm": 0.8413048982620239, + "learning_rate": 2.688373333333333e-05, + "loss": 1.5428427124023438, + "step": 346900 + }, + { + "epoch": 46.266666666666666, + "grad_norm": 0.8163671493530273, + "learning_rate": 2.6877066666666667e-05, + "loss": 1.5400894165039063, + "step": 347000 + }, + { + "epoch": 46.28, + "grad_norm": 0.8367263674736023, + "learning_rate": 2.6870400000000003e-05, + "loss": 1.5393385314941406, + "step": 347100 + }, + { + "epoch": 46.29333333333334, + "grad_norm": 0.8091789484024048, + "learning_rate": 2.6863733333333335e-05, + "loss": 1.5403530883789063, + "step": 347200 + }, + { + "epoch": 46.306666666666665, + "grad_norm": 0.7646798491477966, + "learning_rate": 2.685706666666667e-05, + "loss": 1.5441659545898438, + "step": 347300 + }, + { + "epoch": 46.32, + "grad_norm": 0.8175348043441772, + "learning_rate": 2.6850400000000003e-05, + "loss": 1.5414935302734376, + "step": 347400 + }, + { + "epoch": 46.333333333333336, + "grad_norm": 0.8292933702468872, + "learning_rate": 2.6843733333333332e-05, + "loss": 1.5435244750976562, + "step": 347500 + }, + { + "epoch": 46.346666666666664, + "grad_norm": 0.8154855966567993, + "learning_rate": 2.6837066666666668e-05, + "loss": 1.5483761596679688, + "step": 347600 + }, + { + "epoch": 46.36, + "grad_norm": 0.7751580476760864, + "learning_rate": 2.68304e-05, + "loss": 1.5469662475585937, + "step": 347700 + }, + { + "epoch": 46.373333333333335, + "grad_norm": 0.8045754432678223, + "learning_rate": 2.6823733333333335e-05, + "loss": 1.5475198364257812, + "step": 347800 + }, + { + "epoch": 46.38666666666666, + "grad_norm": 0.8215160965919495, + "learning_rate": 2.6817133333333335e-05, + "loss": 1.545174560546875, + "step": 347900 + }, + { + "epoch": 46.4, + "grad_norm": 0.8201582431793213, + "learning_rate": 2.6810466666666667e-05, + "loss": 1.548802490234375, + "step": 348000 + }, + { + "epoch": 46.413333333333334, + "grad_norm": 0.8398956060409546, + "learning_rate": 2.6803800000000002e-05, + "loss": 1.5487840270996094, + "step": 348100 + }, + { + "epoch": 46.42666666666667, + "grad_norm": 0.8224796652793884, + "learning_rate": 2.6797133333333335e-05, + "loss": 1.549246826171875, + "step": 348200 + }, + { + "epoch": 46.44, + "grad_norm": 0.8594797849655151, + "learning_rate": 2.679046666666667e-05, + "loss": 1.5520086669921875, + "step": 348300 + }, + { + "epoch": 46.45333333333333, + "grad_norm": 0.8207729458808899, + "learning_rate": 2.6783800000000003e-05, + "loss": 1.5540689086914063, + "step": 348400 + }, + { + "epoch": 46.46666666666667, + "grad_norm": 0.8314641714096069, + "learning_rate": 2.677713333333333e-05, + "loss": 1.5520907592773439, + "step": 348500 + }, + { + "epoch": 46.48, + "grad_norm": 0.8217018246650696, + "learning_rate": 2.6770466666666667e-05, + "loss": 1.5557980346679687, + "step": 348600 + }, + { + "epoch": 46.49333333333333, + "grad_norm": 0.8059836030006409, + "learning_rate": 2.67638e-05, + "loss": 1.5601199340820313, + "step": 348700 + }, + { + "epoch": 46.50666666666667, + "grad_norm": 0.8552286028862, + "learning_rate": 2.6757133333333335e-05, + "loss": 1.5559910583496093, + "step": 348800 + }, + { + "epoch": 46.52, + "grad_norm": 0.8301519155502319, + "learning_rate": 2.6750466666666667e-05, + "loss": 1.5562776184082032, + "step": 348900 + }, + { + "epoch": 46.53333333333333, + "grad_norm": 0.8431631326675415, + "learning_rate": 2.6743800000000003e-05, + "loss": 1.5593917846679688, + "step": 349000 + }, + { + "epoch": 46.54666666666667, + "grad_norm": 0.8206700682640076, + "learning_rate": 2.6737133333333335e-05, + "loss": 1.5606121826171875, + "step": 349100 + }, + { + "epoch": 46.56, + "grad_norm": 0.8263945579528809, + "learning_rate": 2.673046666666667e-05, + "loss": 1.5540763854980468, + "step": 349200 + }, + { + "epoch": 46.57333333333333, + "grad_norm": 0.8618150949478149, + "learning_rate": 2.67238e-05, + "loss": 1.5589299011230469, + "step": 349300 + }, + { + "epoch": 46.586666666666666, + "grad_norm": 0.8470207452774048, + "learning_rate": 2.6717133333333332e-05, + "loss": 1.561882781982422, + "step": 349400 + }, + { + "epoch": 46.6, + "grad_norm": 0.8224665522575378, + "learning_rate": 2.6710466666666668e-05, + "loss": 1.5630607604980469, + "step": 349500 + }, + { + "epoch": 46.61333333333333, + "grad_norm": 0.8316152691841125, + "learning_rate": 2.67038e-05, + "loss": 1.55953369140625, + "step": 349600 + }, + { + "epoch": 46.626666666666665, + "grad_norm": 0.8321995139122009, + "learning_rate": 2.6697133333333336e-05, + "loss": 1.5658473205566406, + "step": 349700 + }, + { + "epoch": 46.64, + "grad_norm": 0.8178289532661438, + "learning_rate": 2.6690466666666668e-05, + "loss": 1.5612675476074218, + "step": 349800 + }, + { + "epoch": 46.653333333333336, + "grad_norm": 0.7792300581932068, + "learning_rate": 2.6683800000000004e-05, + "loss": 1.5632437133789063, + "step": 349900 + }, + { + "epoch": 46.666666666666664, + "grad_norm": 0.7988590002059937, + "learning_rate": 2.6677133333333336e-05, + "loss": 1.5675028991699218, + "step": 350000 + }, + { + "epoch": 46.68, + "grad_norm": 0.8445242643356323, + "learning_rate": 2.6670533333333335e-05, + "loss": 1.5669676208496093, + "step": 350100 + }, + { + "epoch": 46.693333333333335, + "grad_norm": 0.8198060989379883, + "learning_rate": 2.666386666666667e-05, + "loss": 1.5665971374511718, + "step": 350200 + }, + { + "epoch": 46.70666666666666, + "grad_norm": 0.8664674162864685, + "learning_rate": 2.66572e-05, + "loss": 1.5654718017578124, + "step": 350300 + }, + { + "epoch": 46.72, + "grad_norm": 0.819105863571167, + "learning_rate": 2.6650533333333332e-05, + "loss": 1.567599334716797, + "step": 350400 + }, + { + "epoch": 46.733333333333334, + "grad_norm": 0.8594771027565002, + "learning_rate": 2.6643866666666667e-05, + "loss": 1.5679061889648438, + "step": 350500 + }, + { + "epoch": 46.74666666666667, + "grad_norm": 0.8125904202461243, + "learning_rate": 2.66372e-05, + "loss": 1.5722848510742187, + "step": 350600 + }, + { + "epoch": 46.76, + "grad_norm": 0.8537176847457886, + "learning_rate": 2.6630533333333335e-05, + "loss": 1.5686172485351562, + "step": 350700 + }, + { + "epoch": 46.77333333333333, + "grad_norm": 0.8427459001541138, + "learning_rate": 2.6623866666666668e-05, + "loss": 1.571588592529297, + "step": 350800 + }, + { + "epoch": 46.78666666666667, + "grad_norm": 0.827638566493988, + "learning_rate": 2.6617200000000003e-05, + "loss": 1.5718766784667968, + "step": 350900 + }, + { + "epoch": 46.8, + "grad_norm": 0.8735706806182861, + "learning_rate": 2.661053333333334e-05, + "loss": 1.5722669982910156, + "step": 351000 + }, + { + "epoch": 46.81333333333333, + "grad_norm": 0.8201860785484314, + "learning_rate": 2.6603866666666664e-05, + "loss": 1.5740573120117187, + "step": 351100 + }, + { + "epoch": 46.82666666666667, + "grad_norm": 0.8265976309776306, + "learning_rate": 2.65972e-05, + "loss": 1.5777357482910157, + "step": 351200 + }, + { + "epoch": 46.84, + "grad_norm": 0.8381431698799133, + "learning_rate": 2.6590533333333332e-05, + "loss": 1.5748936462402343, + "step": 351300 + }, + { + "epoch": 46.85333333333333, + "grad_norm": 0.8063822388648987, + "learning_rate": 2.6583866666666668e-05, + "loss": 1.5776918029785156, + "step": 351400 + }, + { + "epoch": 46.86666666666667, + "grad_norm": 0.831693172454834, + "learning_rate": 2.6577200000000004e-05, + "loss": 1.5761140441894532, + "step": 351500 + }, + { + "epoch": 46.88, + "grad_norm": 0.8381946682929993, + "learning_rate": 2.6570533333333336e-05, + "loss": 1.5803857421875, + "step": 351600 + }, + { + "epoch": 46.89333333333333, + "grad_norm": 0.8485809564590454, + "learning_rate": 2.656386666666667e-05, + "loss": 1.5759907531738282, + "step": 351700 + }, + { + "epoch": 46.906666666666666, + "grad_norm": 0.8247084617614746, + "learning_rate": 2.6557199999999997e-05, + "loss": 1.5766317749023437, + "step": 351800 + }, + { + "epoch": 46.92, + "grad_norm": 0.8473241925239563, + "learning_rate": 2.6550533333333333e-05, + "loss": 1.5800099182128906, + "step": 351900 + }, + { + "epoch": 46.93333333333333, + "grad_norm": 0.8938542604446411, + "learning_rate": 2.654386666666667e-05, + "loss": 1.575980224609375, + "step": 352000 + }, + { + "epoch": 46.946666666666665, + "grad_norm": 0.8447518348693848, + "learning_rate": 2.6537266666666667e-05, + "loss": 1.5792408752441407, + "step": 352100 + }, + { + "epoch": 46.96, + "grad_norm": 0.8477917313575745, + "learning_rate": 2.65306e-05, + "loss": 1.5817056274414063, + "step": 352200 + }, + { + "epoch": 46.973333333333336, + "grad_norm": 0.8412907123565674, + "learning_rate": 2.6523933333333335e-05, + "loss": 1.5827552795410156, + "step": 352300 + }, + { + "epoch": 46.986666666666665, + "grad_norm": 0.8627504706382751, + "learning_rate": 2.6517266666666668e-05, + "loss": 1.5811537170410157, + "step": 352400 + }, + { + "epoch": 47.0, + "grad_norm": 0.8609046936035156, + "learning_rate": 2.6510600000000003e-05, + "loss": 1.5816255187988282, + "step": 352500 + }, + { + "epoch": 47.013333333333335, + "grad_norm": 0.7538483142852783, + "learning_rate": 2.6503933333333336e-05, + "loss": 1.5079031372070313, + "step": 352600 + }, + { + "epoch": 47.026666666666664, + "grad_norm": 0.813092827796936, + "learning_rate": 2.649726666666667e-05, + "loss": 1.5056570434570313, + "step": 352700 + }, + { + "epoch": 47.04, + "grad_norm": 0.8041110634803772, + "learning_rate": 2.64906e-05, + "loss": 1.5061376953125, + "step": 352800 + }, + { + "epoch": 47.053333333333335, + "grad_norm": 0.8193392753601074, + "learning_rate": 2.6483933333333332e-05, + "loss": 1.5078268432617188, + "step": 352900 + }, + { + "epoch": 47.06666666666667, + "grad_norm": 0.8413985371589661, + "learning_rate": 2.6477266666666668e-05, + "loss": 1.5114471435546875, + "step": 353000 + }, + { + "epoch": 47.08, + "grad_norm": 0.8073115348815918, + "learning_rate": 2.64706e-05, + "loss": 1.5135585021972657, + "step": 353100 + }, + { + "epoch": 47.093333333333334, + "grad_norm": 0.7779039740562439, + "learning_rate": 2.6463933333333336e-05, + "loss": 1.5116209411621093, + "step": 353200 + }, + { + "epoch": 47.10666666666667, + "grad_norm": 0.807697594165802, + "learning_rate": 2.6457266666666668e-05, + "loss": 1.517572479248047, + "step": 353300 + }, + { + "epoch": 47.12, + "grad_norm": 0.8400974869728088, + "learning_rate": 2.6450600000000004e-05, + "loss": 1.5178854370117187, + "step": 353400 + }, + { + "epoch": 47.13333333333333, + "grad_norm": 0.8194504976272583, + "learning_rate": 2.6443933333333336e-05, + "loss": 1.5146188354492187, + "step": 353500 + }, + { + "epoch": 47.14666666666667, + "grad_norm": 0.8018361926078796, + "learning_rate": 2.6437266666666665e-05, + "loss": 1.5214445495605469, + "step": 353600 + }, + { + "epoch": 47.16, + "grad_norm": 0.8167159557342529, + "learning_rate": 2.64306e-05, + "loss": 1.5156454467773437, + "step": 353700 + }, + { + "epoch": 47.17333333333333, + "grad_norm": 0.8039659857749939, + "learning_rate": 2.6423933333333333e-05, + "loss": 1.5151275634765624, + "step": 353800 + }, + { + "epoch": 47.18666666666667, + "grad_norm": 0.8017700910568237, + "learning_rate": 2.641726666666667e-05, + "loss": 1.5202009582519531, + "step": 353900 + }, + { + "epoch": 47.2, + "grad_norm": 0.7832367420196533, + "learning_rate": 2.64106e-05, + "loss": 1.519759521484375, + "step": 354000 + }, + { + "epoch": 47.21333333333333, + "grad_norm": 0.8337007761001587, + "learning_rate": 2.6403933333333337e-05, + "loss": 1.5221978759765624, + "step": 354100 + }, + { + "epoch": 47.22666666666667, + "grad_norm": 0.7870599031448364, + "learning_rate": 2.639726666666667e-05, + "loss": 1.523798065185547, + "step": 354200 + }, + { + "epoch": 47.24, + "grad_norm": 0.8411582708358765, + "learning_rate": 2.6390666666666668e-05, + "loss": 1.5253703308105468, + "step": 354300 + }, + { + "epoch": 47.25333333333333, + "grad_norm": 0.8832390308380127, + "learning_rate": 2.6384000000000004e-05, + "loss": 1.5262484741210938, + "step": 354400 + }, + { + "epoch": 47.266666666666666, + "grad_norm": 0.7941514253616333, + "learning_rate": 2.6377333333333336e-05, + "loss": 1.525479736328125, + "step": 354500 + }, + { + "epoch": 47.28, + "grad_norm": 0.7702394127845764, + "learning_rate": 2.6370666666666665e-05, + "loss": 1.5219073486328125, + "step": 354600 + }, + { + "epoch": 47.29333333333334, + "grad_norm": 0.8129458427429199, + "learning_rate": 2.6364e-05, + "loss": 1.5250271606445311, + "step": 354700 + }, + { + "epoch": 47.306666666666665, + "grad_norm": 0.8214989304542542, + "learning_rate": 2.6357333333333333e-05, + "loss": 1.5251333618164062, + "step": 354800 + }, + { + "epoch": 47.32, + "grad_norm": 0.7877672910690308, + "learning_rate": 2.6350666666666668e-05, + "loss": 1.5243698120117188, + "step": 354900 + }, + { + "epoch": 47.333333333333336, + "grad_norm": 0.8471348285675049, + "learning_rate": 2.6344e-05, + "loss": 1.5322015380859375, + "step": 355000 + }, + { + "epoch": 47.346666666666664, + "grad_norm": 0.8431065082550049, + "learning_rate": 2.6337333333333336e-05, + "loss": 1.530186767578125, + "step": 355100 + }, + { + "epoch": 47.36, + "grad_norm": 0.8179681897163391, + "learning_rate": 2.6330666666666672e-05, + "loss": 1.5326658630371093, + "step": 355200 + }, + { + "epoch": 47.373333333333335, + "grad_norm": 0.8299217820167542, + "learning_rate": 2.6323999999999997e-05, + "loss": 1.5337423706054687, + "step": 355300 + }, + { + "epoch": 47.38666666666666, + "grad_norm": 0.7992455363273621, + "learning_rate": 2.6317333333333333e-05, + "loss": 1.5334547424316407, + "step": 355400 + }, + { + "epoch": 47.4, + "grad_norm": 0.8198468089103699, + "learning_rate": 2.6310666666666665e-05, + "loss": 1.5330128479003906, + "step": 355500 + }, + { + "epoch": 47.413333333333334, + "grad_norm": 0.8227736353874207, + "learning_rate": 2.6304e-05, + "loss": 1.5363392639160156, + "step": 355600 + }, + { + "epoch": 47.42666666666667, + "grad_norm": 0.8037164807319641, + "learning_rate": 2.6297333333333337e-05, + "loss": 1.5415556335449219, + "step": 355700 + }, + { + "epoch": 47.44, + "grad_norm": 0.8218553066253662, + "learning_rate": 2.629066666666667e-05, + "loss": 1.536182861328125, + "step": 355800 + }, + { + "epoch": 47.45333333333333, + "grad_norm": 0.8205154538154602, + "learning_rate": 2.6284000000000004e-05, + "loss": 1.5415779113769532, + "step": 355900 + }, + { + "epoch": 47.46666666666667, + "grad_norm": 0.8422571420669556, + "learning_rate": 2.6277333333333337e-05, + "loss": 1.5379583740234375, + "step": 356000 + }, + { + "epoch": 47.48, + "grad_norm": 0.8234130144119263, + "learning_rate": 2.6270666666666666e-05, + "loss": 1.538638153076172, + "step": 356100 + }, + { + "epoch": 47.49333333333333, + "grad_norm": 0.8543081879615784, + "learning_rate": 2.6264e-05, + "loss": 1.5433369445800782, + "step": 356200 + }, + { + "epoch": 47.50666666666667, + "grad_norm": 0.8039753437042236, + "learning_rate": 2.6257399999999997e-05, + "loss": 1.5409135437011718, + "step": 356300 + }, + { + "epoch": 47.52, + "grad_norm": 0.807433545589447, + "learning_rate": 2.6250733333333333e-05, + "loss": 1.538723907470703, + "step": 356400 + }, + { + "epoch": 47.53333333333333, + "grad_norm": 0.829760730266571, + "learning_rate": 2.6244066666666668e-05, + "loss": 1.5394581604003905, + "step": 356500 + }, + { + "epoch": 47.54666666666667, + "grad_norm": 0.83366858959198, + "learning_rate": 2.62374e-05, + "loss": 1.545363311767578, + "step": 356600 + }, + { + "epoch": 47.56, + "grad_norm": 0.8441088795661926, + "learning_rate": 2.6230733333333336e-05, + "loss": 1.5482498168945313, + "step": 356700 + }, + { + "epoch": 47.57333333333333, + "grad_norm": 0.8056532740592957, + "learning_rate": 2.622406666666667e-05, + "loss": 1.5447674560546876, + "step": 356800 + }, + { + "epoch": 47.586666666666666, + "grad_norm": 0.8894994258880615, + "learning_rate": 2.6217400000000004e-05, + "loss": 1.5502810668945313, + "step": 356900 + }, + { + "epoch": 47.6, + "grad_norm": 0.8194480538368225, + "learning_rate": 2.6210733333333336e-05, + "loss": 1.5432069396972656, + "step": 357000 + }, + { + "epoch": 47.61333333333333, + "grad_norm": 0.8140724897384644, + "learning_rate": 2.6204066666666665e-05, + "loss": 1.5478276062011718, + "step": 357100 + }, + { + "epoch": 47.626666666666665, + "grad_norm": 0.8195116519927979, + "learning_rate": 2.61974e-05, + "loss": 1.544815673828125, + "step": 357200 + }, + { + "epoch": 47.64, + "grad_norm": 0.8061419725418091, + "learning_rate": 2.6190733333333333e-05, + "loss": 1.5499363708496094, + "step": 357300 + }, + { + "epoch": 47.653333333333336, + "grad_norm": 0.8833538293838501, + "learning_rate": 2.618406666666667e-05, + "loss": 1.5492486572265625, + "step": 357400 + }, + { + "epoch": 47.666666666666664, + "grad_norm": 0.817891001701355, + "learning_rate": 2.61774e-05, + "loss": 1.5491177368164062, + "step": 357500 + }, + { + "epoch": 47.68, + "grad_norm": 0.8547759652137756, + "learning_rate": 2.6170733333333337e-05, + "loss": 1.5468995666503906, + "step": 357600 + }, + { + "epoch": 47.693333333333335, + "grad_norm": 0.8713561296463013, + "learning_rate": 2.616406666666667e-05, + "loss": 1.5532452392578124, + "step": 357700 + }, + { + "epoch": 47.70666666666666, + "grad_norm": 0.8616589307785034, + "learning_rate": 2.6157399999999998e-05, + "loss": 1.5543402099609376, + "step": 357800 + }, + { + "epoch": 47.72, + "grad_norm": 0.8249148726463318, + "learning_rate": 2.6150733333333334e-05, + "loss": 1.5558518981933593, + "step": 357900 + }, + { + "epoch": 47.733333333333334, + "grad_norm": 0.8403042554855347, + "learning_rate": 2.6144066666666666e-05, + "loss": 1.55149169921875, + "step": 358000 + }, + { + "epoch": 47.74666666666667, + "grad_norm": 0.8018736839294434, + "learning_rate": 2.61374e-05, + "loss": 1.5553018188476562, + "step": 358100 + }, + { + "epoch": 47.76, + "grad_norm": 0.8302009701728821, + "learning_rate": 2.6130733333333334e-05, + "loss": 1.5563357543945313, + "step": 358200 + }, + { + "epoch": 47.77333333333333, + "grad_norm": 0.8318833708763123, + "learning_rate": 2.6124133333333333e-05, + "loss": 1.5607223510742188, + "step": 358300 + }, + { + "epoch": 47.78666666666667, + "grad_norm": 0.8090811967849731, + "learning_rate": 2.611746666666667e-05, + "loss": 1.5559880065917968, + "step": 358400 + }, + { + "epoch": 47.8, + "grad_norm": 0.868520975112915, + "learning_rate": 2.61108e-05, + "loss": 1.55770751953125, + "step": 358500 + }, + { + "epoch": 47.81333333333333, + "grad_norm": 0.8197623491287231, + "learning_rate": 2.6104133333333336e-05, + "loss": 1.558822021484375, + "step": 358600 + }, + { + "epoch": 47.82666666666667, + "grad_norm": 0.8163467645645142, + "learning_rate": 2.609746666666667e-05, + "loss": 1.557568359375, + "step": 358700 + }, + { + "epoch": 47.84, + "grad_norm": 0.7725224494934082, + "learning_rate": 2.6090799999999998e-05, + "loss": 1.5549420166015624, + "step": 358800 + }, + { + "epoch": 47.85333333333333, + "grad_norm": 0.8405675292015076, + "learning_rate": 2.6084133333333333e-05, + "loss": 1.5608193969726563, + "step": 358900 + }, + { + "epoch": 47.86666666666667, + "grad_norm": 0.8494597673416138, + "learning_rate": 2.6077466666666666e-05, + "loss": 1.5580606079101562, + "step": 359000 + }, + { + "epoch": 47.88, + "grad_norm": 0.8636260032653809, + "learning_rate": 2.60708e-05, + "loss": 1.5591242980957032, + "step": 359100 + }, + { + "epoch": 47.89333333333333, + "grad_norm": 0.8216843008995056, + "learning_rate": 2.6064133333333333e-05, + "loss": 1.5577593994140626, + "step": 359200 + }, + { + "epoch": 47.906666666666666, + "grad_norm": 0.8437257409095764, + "learning_rate": 2.605746666666667e-05, + "loss": 1.5638467407226562, + "step": 359300 + }, + { + "epoch": 47.92, + "grad_norm": 0.8391488790512085, + "learning_rate": 2.60508e-05, + "loss": 1.559764404296875, + "step": 359400 + }, + { + "epoch": 47.93333333333333, + "grad_norm": 0.8953635096549988, + "learning_rate": 2.6044133333333337e-05, + "loss": 1.5598916625976562, + "step": 359500 + }, + { + "epoch": 47.946666666666665, + "grad_norm": 0.8865219950675964, + "learning_rate": 2.6037466666666666e-05, + "loss": 1.56525390625, + "step": 359600 + }, + { + "epoch": 47.96, + "grad_norm": 0.8346757888793945, + "learning_rate": 2.6030799999999998e-05, + "loss": 1.5669119262695312, + "step": 359700 + }, + { + "epoch": 47.973333333333336, + "grad_norm": 0.7953504920005798, + "learning_rate": 2.6024133333333334e-05, + "loss": 1.5616644287109376, + "step": 359800 + }, + { + "epoch": 47.986666666666665, + "grad_norm": 0.8168767094612122, + "learning_rate": 2.6017466666666666e-05, + "loss": 1.5720118713378906, + "step": 359900 + }, + { + "epoch": 48.0, + "grad_norm": 0.874919593334198, + "learning_rate": 2.6010800000000002e-05, + "loss": 1.5705772399902345, + "step": 360000 + }, + { + "epoch": 48.013333333333335, + "grad_norm": 0.8366668820381165, + "learning_rate": 2.6004133333333337e-05, + "loss": 1.4951602172851564, + "step": 360100 + }, + { + "epoch": 48.026666666666664, + "grad_norm": 0.8061423897743225, + "learning_rate": 2.599746666666667e-05, + "loss": 1.49366455078125, + "step": 360200 + }, + { + "epoch": 48.04, + "grad_norm": 0.8062233328819275, + "learning_rate": 2.59908e-05, + "loss": 1.4919319152832031, + "step": 360300 + }, + { + "epoch": 48.053333333333335, + "grad_norm": 0.7820529341697693, + "learning_rate": 2.5984200000000004e-05, + "loss": 1.4933494567871093, + "step": 360400 + }, + { + "epoch": 48.06666666666667, + "grad_norm": 0.7874485850334167, + "learning_rate": 2.5977533333333337e-05, + "loss": 1.4942898559570312, + "step": 360500 + }, + { + "epoch": 48.08, + "grad_norm": 0.8219860792160034, + "learning_rate": 2.5970866666666666e-05, + "loss": 1.4994293212890626, + "step": 360600 + }, + { + "epoch": 48.093333333333334, + "grad_norm": 0.806149959564209, + "learning_rate": 2.59642e-05, + "loss": 1.5014764404296874, + "step": 360700 + }, + { + "epoch": 48.10666666666667, + "grad_norm": 0.8026537895202637, + "learning_rate": 2.5957533333333333e-05, + "loss": 1.5005511474609374, + "step": 360800 + }, + { + "epoch": 48.12, + "grad_norm": 0.803657591342926, + "learning_rate": 2.595086666666667e-05, + "loss": 1.500188446044922, + "step": 360900 + }, + { + "epoch": 48.13333333333333, + "grad_norm": 0.8763360977172852, + "learning_rate": 2.59442e-05, + "loss": 1.5009043884277344, + "step": 361000 + }, + { + "epoch": 48.14666666666667, + "grad_norm": 0.7982499003410339, + "learning_rate": 2.5937533333333337e-05, + "loss": 1.5045884704589845, + "step": 361100 + }, + { + "epoch": 48.16, + "grad_norm": 0.8596701622009277, + "learning_rate": 2.593086666666667e-05, + "loss": 1.5040025329589843, + "step": 361200 + }, + { + "epoch": 48.17333333333333, + "grad_norm": 0.8158277869224548, + "learning_rate": 2.5924199999999998e-05, + "loss": 1.5009864807128905, + "step": 361300 + }, + { + "epoch": 48.18666666666667, + "grad_norm": 0.8603137135505676, + "learning_rate": 2.5917533333333334e-05, + "loss": 1.5051220703125, + "step": 361400 + }, + { + "epoch": 48.2, + "grad_norm": 0.8475449085235596, + "learning_rate": 2.5910866666666666e-05, + "loss": 1.5040087890625, + "step": 361500 + }, + { + "epoch": 48.21333333333333, + "grad_norm": 0.8340404629707336, + "learning_rate": 2.5904200000000002e-05, + "loss": 1.5033770751953126, + "step": 361600 + }, + { + "epoch": 48.22666666666667, + "grad_norm": 0.8179289102554321, + "learning_rate": 2.5897533333333334e-05, + "loss": 1.5125186157226562, + "step": 361700 + }, + { + "epoch": 48.24, + "grad_norm": 0.8329739570617676, + "learning_rate": 2.589086666666667e-05, + "loss": 1.5081419372558593, + "step": 361800 + }, + { + "epoch": 48.25333333333333, + "grad_norm": 0.8692247271537781, + "learning_rate": 2.5884200000000002e-05, + "loss": 1.509202880859375, + "step": 361900 + }, + { + "epoch": 48.266666666666666, + "grad_norm": 0.8539946675300598, + "learning_rate": 2.5877533333333338e-05, + "loss": 1.505505828857422, + "step": 362000 + }, + { + "epoch": 48.28, + "grad_norm": 0.8623639345169067, + "learning_rate": 2.5870866666666667e-05, + "loss": 1.5125834655761718, + "step": 362100 + }, + { + "epoch": 48.29333333333334, + "grad_norm": 0.8657389283180237, + "learning_rate": 2.58642e-05, + "loss": 1.517348175048828, + "step": 362200 + }, + { + "epoch": 48.306666666666665, + "grad_norm": 0.8074204921722412, + "learning_rate": 2.5857533333333334e-05, + "loss": 1.5124046325683593, + "step": 362300 + }, + { + "epoch": 48.32, + "grad_norm": 0.8119105100631714, + "learning_rate": 2.5850933333333334e-05, + "loss": 1.5156207275390625, + "step": 362400 + }, + { + "epoch": 48.333333333333336, + "grad_norm": 0.8001854419708252, + "learning_rate": 2.5844266666666666e-05, + "loss": 1.520142822265625, + "step": 362500 + }, + { + "epoch": 48.346666666666664, + "grad_norm": 0.8105164766311646, + "learning_rate": 2.58376e-05, + "loss": 1.51326904296875, + "step": 362600 + }, + { + "epoch": 48.36, + "grad_norm": 0.8771947026252747, + "learning_rate": 2.5830933333333334e-05, + "loss": 1.5151416015625, + "step": 362700 + }, + { + "epoch": 48.373333333333335, + "grad_norm": 0.8079180717468262, + "learning_rate": 2.582426666666667e-05, + "loss": 1.5162548828125, + "step": 362800 + }, + { + "epoch": 48.38666666666666, + "grad_norm": 0.8303863406181335, + "learning_rate": 2.58176e-05, + "loss": 1.517666015625, + "step": 362900 + }, + { + "epoch": 48.4, + "grad_norm": 0.8090680837631226, + "learning_rate": 2.5810933333333337e-05, + "loss": 1.5149562072753906, + "step": 363000 + }, + { + "epoch": 48.413333333333334, + "grad_norm": 0.8291407227516174, + "learning_rate": 2.5804266666666666e-05, + "loss": 1.5243867492675782, + "step": 363100 + }, + { + "epoch": 48.42666666666667, + "grad_norm": 0.8551901578903198, + "learning_rate": 2.57976e-05, + "loss": 1.5234576416015626, + "step": 363200 + }, + { + "epoch": 48.44, + "grad_norm": 0.8535791039466858, + "learning_rate": 2.5790933333333334e-05, + "loss": 1.52187744140625, + "step": 363300 + }, + { + "epoch": 48.45333333333333, + "grad_norm": 0.8479459881782532, + "learning_rate": 2.5784266666666666e-05, + "loss": 1.51526611328125, + "step": 363400 + }, + { + "epoch": 48.46666666666667, + "grad_norm": 0.7857949733734131, + "learning_rate": 2.5777600000000002e-05, + "loss": 1.5265869140625, + "step": 363500 + }, + { + "epoch": 48.48, + "grad_norm": 0.8698379397392273, + "learning_rate": 2.5770933333333334e-05, + "loss": 1.5276319885253906, + "step": 363600 + }, + { + "epoch": 48.49333333333333, + "grad_norm": 0.817887544631958, + "learning_rate": 2.576426666666667e-05, + "loss": 1.5276255798339844, + "step": 363700 + }, + { + "epoch": 48.50666666666667, + "grad_norm": 0.8234931826591492, + "learning_rate": 2.5757600000000006e-05, + "loss": 1.5249510192871094, + "step": 363800 + }, + { + "epoch": 48.52, + "grad_norm": 0.8288886547088623, + "learning_rate": 2.575093333333333e-05, + "loss": 1.528853759765625, + "step": 363900 + }, + { + "epoch": 48.53333333333333, + "grad_norm": 0.8396264314651489, + "learning_rate": 2.5744266666666667e-05, + "loss": 1.5318849182128906, + "step": 364000 + }, + { + "epoch": 48.54666666666667, + "grad_norm": 0.824802041053772, + "learning_rate": 2.57376e-05, + "loss": 1.5319622802734374, + "step": 364100 + }, + { + "epoch": 48.56, + "grad_norm": 0.8573387861251831, + "learning_rate": 2.5730933333333335e-05, + "loss": 1.5280552673339844, + "step": 364200 + }, + { + "epoch": 48.57333333333333, + "grad_norm": 0.836539089679718, + "learning_rate": 2.572426666666667e-05, + "loss": 1.5268043518066405, + "step": 364300 + }, + { + "epoch": 48.586666666666666, + "grad_norm": 0.885406494140625, + "learning_rate": 2.5717666666666666e-05, + "loss": 1.5300917053222656, + "step": 364400 + }, + { + "epoch": 48.6, + "grad_norm": 0.8176631331443787, + "learning_rate": 2.5711e-05, + "loss": 1.5323922729492188, + "step": 364500 + }, + { + "epoch": 48.61333333333333, + "grad_norm": 0.8315919637680054, + "learning_rate": 2.5704333333333337e-05, + "loss": 1.53243408203125, + "step": 364600 + }, + { + "epoch": 48.626666666666665, + "grad_norm": 0.822803258895874, + "learning_rate": 2.569766666666667e-05, + "loss": 1.5390171813964844, + "step": 364700 + }, + { + "epoch": 48.64, + "grad_norm": 0.8383143544197083, + "learning_rate": 2.5691000000000005e-05, + "loss": 1.5334788513183595, + "step": 364800 + }, + { + "epoch": 48.653333333333336, + "grad_norm": 0.8430681824684143, + "learning_rate": 2.5684333333333334e-05, + "loss": 1.5373228454589845, + "step": 364900 + }, + { + "epoch": 48.666666666666664, + "grad_norm": 0.861682653427124, + "learning_rate": 2.5677666666666666e-05, + "loss": 1.536941680908203, + "step": 365000 + }, + { + "epoch": 48.68, + "grad_norm": 0.8224048018455505, + "learning_rate": 2.5671000000000002e-05, + "loss": 1.5357330322265625, + "step": 365100 + }, + { + "epoch": 48.693333333333335, + "grad_norm": 0.8081045150756836, + "learning_rate": 2.5664333333333334e-05, + "loss": 1.5333282470703125, + "step": 365200 + }, + { + "epoch": 48.70666666666666, + "grad_norm": 0.8442122340202332, + "learning_rate": 2.565766666666667e-05, + "loss": 1.536866455078125, + "step": 365300 + }, + { + "epoch": 48.72, + "grad_norm": 0.822340190410614, + "learning_rate": 2.5651000000000002e-05, + "loss": 1.5430012512207032, + "step": 365400 + }, + { + "epoch": 48.733333333333334, + "grad_norm": 0.8340216875076294, + "learning_rate": 2.5644333333333338e-05, + "loss": 1.5356080627441406, + "step": 365500 + }, + { + "epoch": 48.74666666666667, + "grad_norm": 0.8153738975524902, + "learning_rate": 2.5637666666666667e-05, + "loss": 1.5389717102050782, + "step": 365600 + }, + { + "epoch": 48.76, + "grad_norm": 0.8527360558509827, + "learning_rate": 2.5631e-05, + "loss": 1.5421336364746094, + "step": 365700 + }, + { + "epoch": 48.77333333333333, + "grad_norm": 0.8141431212425232, + "learning_rate": 2.5624333333333335e-05, + "loss": 1.537602081298828, + "step": 365800 + }, + { + "epoch": 48.78666666666667, + "grad_norm": 0.8881790041923523, + "learning_rate": 2.5617666666666667e-05, + "loss": 1.5385264587402343, + "step": 365900 + }, + { + "epoch": 48.8, + "grad_norm": 0.8357459902763367, + "learning_rate": 2.5611000000000003e-05, + "loss": 1.5437425231933595, + "step": 366000 + }, + { + "epoch": 48.81333333333333, + "grad_norm": 0.828778088092804, + "learning_rate": 2.5604333333333335e-05, + "loss": 1.540460968017578, + "step": 366100 + }, + { + "epoch": 48.82666666666667, + "grad_norm": 0.8588747382164001, + "learning_rate": 2.559766666666667e-05, + "loss": 1.545701446533203, + "step": 366200 + }, + { + "epoch": 48.84, + "grad_norm": 0.8609989285469055, + "learning_rate": 2.5591000000000003e-05, + "loss": 1.5466421508789063, + "step": 366300 + }, + { + "epoch": 48.85333333333333, + "grad_norm": 0.7956804633140564, + "learning_rate": 2.5584400000000002e-05, + "loss": 1.54723388671875, + "step": 366400 + }, + { + "epoch": 48.86666666666667, + "grad_norm": 0.8610774278640747, + "learning_rate": 2.5577733333333338e-05, + "loss": 1.5450926208496094, + "step": 366500 + }, + { + "epoch": 48.88, + "grad_norm": 0.8780190944671631, + "learning_rate": 2.5571066666666666e-05, + "loss": 1.547249298095703, + "step": 366600 + }, + { + "epoch": 48.89333333333333, + "grad_norm": 0.8510201573371887, + "learning_rate": 2.55644e-05, + "loss": 1.5473715209960937, + "step": 366700 + }, + { + "epoch": 48.906666666666666, + "grad_norm": 0.8271015882492065, + "learning_rate": 2.5557733333333334e-05, + "loss": 1.5514225769042969, + "step": 366800 + }, + { + "epoch": 48.92, + "grad_norm": 0.8673347234725952, + "learning_rate": 2.5551066666666667e-05, + "loss": 1.5482473754882813, + "step": 366900 + }, + { + "epoch": 48.93333333333333, + "grad_norm": 0.9040217995643616, + "learning_rate": 2.5544400000000002e-05, + "loss": 1.5476766967773437, + "step": 367000 + }, + { + "epoch": 48.946666666666665, + "grad_norm": 0.8571226000785828, + "learning_rate": 2.5537733333333335e-05, + "loss": 1.5490121459960937, + "step": 367100 + }, + { + "epoch": 48.96, + "grad_norm": 0.8800345659255981, + "learning_rate": 2.553106666666667e-05, + "loss": 1.5518528747558593, + "step": 367200 + }, + { + "epoch": 48.973333333333336, + "grad_norm": 0.8253681659698486, + "learning_rate": 2.5524400000000002e-05, + "loss": 1.5538876342773438, + "step": 367300 + }, + { + "epoch": 48.986666666666665, + "grad_norm": 0.8854805827140808, + "learning_rate": 2.551773333333333e-05, + "loss": 1.5536569213867188, + "step": 367400 + }, + { + "epoch": 49.0, + "grad_norm": 0.8323401808738708, + "learning_rate": 2.5511066666666667e-05, + "loss": 1.5535047912597657, + "step": 367500 + }, + { + "epoch": 49.013333333333335, + "grad_norm": 0.7903602719306946, + "learning_rate": 2.55044e-05, + "loss": 1.478652801513672, + "step": 367600 + }, + { + "epoch": 49.026666666666664, + "grad_norm": 0.7994419932365417, + "learning_rate": 2.5497733333333335e-05, + "loss": 1.4753775024414062, + "step": 367700 + }, + { + "epoch": 49.04, + "grad_norm": 0.8322893381118774, + "learning_rate": 2.5491066666666667e-05, + "loss": 1.47673583984375, + "step": 367800 + }, + { + "epoch": 49.053333333333335, + "grad_norm": 0.8257775902748108, + "learning_rate": 2.5484400000000003e-05, + "loss": 1.4793165588378907, + "step": 367900 + }, + { + "epoch": 49.06666666666667, + "grad_norm": 0.8123628497123718, + "learning_rate": 2.5477733333333335e-05, + "loss": 1.4788943481445314, + "step": 368000 + }, + { + "epoch": 49.08, + "grad_norm": 0.849601149559021, + "learning_rate": 2.5471066666666664e-05, + "loss": 1.4821792602539063, + "step": 368100 + }, + { + "epoch": 49.093333333333334, + "grad_norm": 0.8008491396903992, + "learning_rate": 2.54644e-05, + "loss": 1.4849171447753906, + "step": 368200 + }, + { + "epoch": 49.10666666666667, + "grad_norm": 0.8216526508331299, + "learning_rate": 2.5457733333333332e-05, + "loss": 1.4855982971191406, + "step": 368300 + }, + { + "epoch": 49.12, + "grad_norm": 0.8552011847496033, + "learning_rate": 2.5451066666666668e-05, + "loss": 1.4879904174804688, + "step": 368400 + }, + { + "epoch": 49.13333333333333, + "grad_norm": 0.7977767586708069, + "learning_rate": 2.5444466666666667e-05, + "loss": 1.4883206176757813, + "step": 368500 + }, + { + "epoch": 49.14666666666667, + "grad_norm": 0.8241558074951172, + "learning_rate": 2.54378e-05, + "loss": 1.4861485290527343, + "step": 368600 + }, + { + "epoch": 49.16, + "grad_norm": 0.8472109436988831, + "learning_rate": 2.5431133333333335e-05, + "loss": 1.4872750854492187, + "step": 368700 + }, + { + "epoch": 49.17333333333333, + "grad_norm": 0.8214472532272339, + "learning_rate": 2.542446666666667e-05, + "loss": 1.487729034423828, + "step": 368800 + }, + { + "epoch": 49.18666666666667, + "grad_norm": 0.8378106355667114, + "learning_rate": 2.5417800000000003e-05, + "loss": 1.48987060546875, + "step": 368900 + }, + { + "epoch": 49.2, + "grad_norm": 0.7991240620613098, + "learning_rate": 2.5411133333333338e-05, + "loss": 1.492364501953125, + "step": 369000 + }, + { + "epoch": 49.21333333333333, + "grad_norm": 0.8102217316627502, + "learning_rate": 2.5404466666666664e-05, + "loss": 1.4964356994628907, + "step": 369100 + }, + { + "epoch": 49.22666666666667, + "grad_norm": 0.7787119150161743, + "learning_rate": 2.53978e-05, + "loss": 1.4987217712402343, + "step": 369200 + }, + { + "epoch": 49.24, + "grad_norm": 0.8689252138137817, + "learning_rate": 2.5391133333333335e-05, + "loss": 1.497693328857422, + "step": 369300 + }, + { + "epoch": 49.25333333333333, + "grad_norm": 0.8548557162284851, + "learning_rate": 2.5384466666666667e-05, + "loss": 1.4954206848144531, + "step": 369400 + }, + { + "epoch": 49.266666666666666, + "grad_norm": 0.8644983172416687, + "learning_rate": 2.5377800000000003e-05, + "loss": 1.4990921020507812, + "step": 369500 + }, + { + "epoch": 49.28, + "grad_norm": 0.8004375696182251, + "learning_rate": 2.5371133333333335e-05, + "loss": 1.4989527893066406, + "step": 369600 + }, + { + "epoch": 49.29333333333334, + "grad_norm": 0.811881959438324, + "learning_rate": 2.536446666666667e-05, + "loss": 1.4984857177734374, + "step": 369700 + }, + { + "epoch": 49.306666666666665, + "grad_norm": 0.8403072953224182, + "learning_rate": 2.5357800000000003e-05, + "loss": 1.4975395202636719, + "step": 369800 + }, + { + "epoch": 49.32, + "grad_norm": 0.8402568697929382, + "learning_rate": 2.5351133333333332e-05, + "loss": 1.4993600463867187, + "step": 369900 + }, + { + "epoch": 49.333333333333336, + "grad_norm": 0.8742866516113281, + "learning_rate": 2.5344466666666668e-05, + "loss": 1.504093475341797, + "step": 370000 + }, + { + "epoch": 49.346666666666664, + "grad_norm": 0.8136636018753052, + "learning_rate": 2.53378e-05, + "loss": 1.5030204772949218, + "step": 370100 + }, + { + "epoch": 49.36, + "grad_norm": 0.846967339515686, + "learning_rate": 2.5331133333333336e-05, + "loss": 1.5024598693847657, + "step": 370200 + }, + { + "epoch": 49.373333333333335, + "grad_norm": 0.784156858921051, + "learning_rate": 2.5324466666666668e-05, + "loss": 1.5066024780273437, + "step": 370300 + }, + { + "epoch": 49.38666666666666, + "grad_norm": 0.8611376881599426, + "learning_rate": 2.5317800000000003e-05, + "loss": 1.5030882263183594, + "step": 370400 + }, + { + "epoch": 49.4, + "grad_norm": 0.8456284403800964, + "learning_rate": 2.5311200000000003e-05, + "loss": 1.5110250854492187, + "step": 370500 + }, + { + "epoch": 49.413333333333334, + "grad_norm": 0.8738457560539246, + "learning_rate": 2.5304533333333335e-05, + "loss": 1.5068327331542968, + "step": 370600 + }, + { + "epoch": 49.42666666666667, + "grad_norm": 0.81916743516922, + "learning_rate": 2.529786666666667e-05, + "loss": 1.5101161193847656, + "step": 370700 + }, + { + "epoch": 49.44, + "grad_norm": 0.8413360714912415, + "learning_rate": 2.5291200000000003e-05, + "loss": 1.509934844970703, + "step": 370800 + }, + { + "epoch": 49.45333333333333, + "grad_norm": 0.8540857434272766, + "learning_rate": 2.528453333333333e-05, + "loss": 1.5118212890625, + "step": 370900 + }, + { + "epoch": 49.46666666666667, + "grad_norm": 0.8651217222213745, + "learning_rate": 2.5277866666666667e-05, + "loss": 1.5078504943847657, + "step": 371000 + }, + { + "epoch": 49.48, + "grad_norm": 0.8294056057929993, + "learning_rate": 2.52712e-05, + "loss": 1.5105992126464844, + "step": 371100 + }, + { + "epoch": 49.49333333333333, + "grad_norm": 0.8947125673294067, + "learning_rate": 2.5264533333333335e-05, + "loss": 1.5177714538574218, + "step": 371200 + }, + { + "epoch": 49.50666666666667, + "grad_norm": 0.8449296951293945, + "learning_rate": 2.5257866666666667e-05, + "loss": 1.5125474548339843, + "step": 371300 + }, + { + "epoch": 49.52, + "grad_norm": 0.849795401096344, + "learning_rate": 2.5251200000000003e-05, + "loss": 1.5124183654785157, + "step": 371400 + }, + { + "epoch": 49.53333333333333, + "grad_norm": 0.8208550810813904, + "learning_rate": 2.5244533333333335e-05, + "loss": 1.5178236389160156, + "step": 371500 + }, + { + "epoch": 49.54666666666667, + "grad_norm": 0.8659239411354065, + "learning_rate": 2.5237866666666664e-05, + "loss": 1.51171875, + "step": 371600 + }, + { + "epoch": 49.56, + "grad_norm": 0.8339199423789978, + "learning_rate": 2.52312e-05, + "loss": 1.5164427185058593, + "step": 371700 + }, + { + "epoch": 49.57333333333333, + "grad_norm": 0.817791759967804, + "learning_rate": 2.5224533333333332e-05, + "loss": 1.5198959350585937, + "step": 371800 + }, + { + "epoch": 49.586666666666666, + "grad_norm": 0.8938850164413452, + "learning_rate": 2.5217866666666668e-05, + "loss": 1.5189447021484375, + "step": 371900 + }, + { + "epoch": 49.6, + "grad_norm": 0.8634279370307922, + "learning_rate": 2.52112e-05, + "loss": 1.5181257629394531, + "step": 372000 + }, + { + "epoch": 49.61333333333333, + "grad_norm": 0.8766525983810425, + "learning_rate": 2.5204533333333336e-05, + "loss": 1.5201939392089843, + "step": 372100 + }, + { + "epoch": 49.626666666666665, + "grad_norm": 0.8618395328521729, + "learning_rate": 2.5197866666666668e-05, + "loss": 1.5215455627441405, + "step": 372200 + }, + { + "epoch": 49.64, + "grad_norm": 0.8641324043273926, + "learning_rate": 2.5191200000000004e-05, + "loss": 1.5232699584960938, + "step": 372300 + }, + { + "epoch": 49.653333333333336, + "grad_norm": 0.8349089026451111, + "learning_rate": 2.5184533333333333e-05, + "loss": 1.5240145874023439, + "step": 372400 + }, + { + "epoch": 49.666666666666664, + "grad_norm": 0.8367394804954529, + "learning_rate": 2.5177933333333335e-05, + "loss": 1.520089111328125, + "step": 372500 + }, + { + "epoch": 49.68, + "grad_norm": 0.8456884026527405, + "learning_rate": 2.5171266666666664e-05, + "loss": 1.5240330505371094, + "step": 372600 + }, + { + "epoch": 49.693333333333335, + "grad_norm": 0.8970924615859985, + "learning_rate": 2.51646e-05, + "loss": 1.5220384216308593, + "step": 372700 + }, + { + "epoch": 49.70666666666666, + "grad_norm": 0.8440273404121399, + "learning_rate": 2.5157933333333332e-05, + "loss": 1.5244894409179688, + "step": 372800 + }, + { + "epoch": 49.72, + "grad_norm": 0.8721365332603455, + "learning_rate": 2.5151266666666668e-05, + "loss": 1.5227665710449219, + "step": 372900 + }, + { + "epoch": 49.733333333333334, + "grad_norm": 0.9237975478172302, + "learning_rate": 2.5144600000000003e-05, + "loss": 1.5297914123535157, + "step": 373000 + }, + { + "epoch": 49.74666666666667, + "grad_norm": 0.8599965572357178, + "learning_rate": 2.5137933333333335e-05, + "loss": 1.5247174072265626, + "step": 373100 + }, + { + "epoch": 49.76, + "grad_norm": 0.8520407676696777, + "learning_rate": 2.513126666666667e-05, + "loss": 1.5293832397460938, + "step": 373200 + }, + { + "epoch": 49.77333333333333, + "grad_norm": 0.8867288827896118, + "learning_rate": 2.5124600000000003e-05, + "loss": 1.5261709594726562, + "step": 373300 + }, + { + "epoch": 49.78666666666667, + "grad_norm": 0.8335996866226196, + "learning_rate": 2.5117933333333332e-05, + "loss": 1.5297763061523437, + "step": 373400 + }, + { + "epoch": 49.8, + "grad_norm": 0.8595085144042969, + "learning_rate": 2.5111266666666668e-05, + "loss": 1.5318873596191407, + "step": 373500 + }, + { + "epoch": 49.81333333333333, + "grad_norm": 0.8604120016098022, + "learning_rate": 2.51046e-05, + "loss": 1.5329582214355468, + "step": 373600 + }, + { + "epoch": 49.82666666666667, + "grad_norm": 0.8619903922080994, + "learning_rate": 2.5097933333333336e-05, + "loss": 1.5340994262695313, + "step": 373700 + }, + { + "epoch": 49.84, + "grad_norm": 0.8415823578834534, + "learning_rate": 2.5091266666666668e-05, + "loss": 1.5291461181640624, + "step": 373800 + }, + { + "epoch": 49.85333333333333, + "grad_norm": 0.8430103063583374, + "learning_rate": 2.5084600000000004e-05, + "loss": 1.5344522094726563, + "step": 373900 + }, + { + "epoch": 49.86666666666667, + "grad_norm": 0.8401354551315308, + "learning_rate": 2.5077933333333336e-05, + "loss": 1.5318260192871094, + "step": 374000 + }, + { + "epoch": 49.88, + "grad_norm": 0.8805033564567566, + "learning_rate": 2.5071266666666665e-05, + "loss": 1.5331027221679687, + "step": 374100 + }, + { + "epoch": 49.89333333333333, + "grad_norm": 0.8586838245391846, + "learning_rate": 2.50646e-05, + "loss": 1.5350416564941407, + "step": 374200 + }, + { + "epoch": 49.906666666666666, + "grad_norm": 0.8289893269538879, + "learning_rate": 2.5057933333333333e-05, + "loss": 1.531967315673828, + "step": 374300 + }, + { + "epoch": 49.92, + "grad_norm": 0.8118442893028259, + "learning_rate": 2.505126666666667e-05, + "loss": 1.5373696899414062, + "step": 374400 + }, + { + "epoch": 49.93333333333333, + "grad_norm": 0.8152410984039307, + "learning_rate": 2.5044666666666668e-05, + "loss": 1.5317294311523437, + "step": 374500 + }, + { + "epoch": 49.946666666666665, + "grad_norm": 0.8541066646575928, + "learning_rate": 2.5038e-05, + "loss": 1.5318400573730468, + "step": 374600 + }, + { + "epoch": 49.96, + "grad_norm": 0.8401637673377991, + "learning_rate": 2.5031333333333335e-05, + "loss": 1.53946044921875, + "step": 374700 + }, + { + "epoch": 49.973333333333336, + "grad_norm": 0.8769694566726685, + "learning_rate": 2.5024666666666668e-05, + "loss": 1.5422596740722656, + "step": 374800 + }, + { + "epoch": 49.986666666666665, + "grad_norm": 0.8622532486915588, + "learning_rate": 2.5018000000000003e-05, + "loss": 1.535623779296875, + "step": 374900 + }, + { + "epoch": 50.0, + "grad_norm": 0.8721447587013245, + "learning_rate": 2.5011333333333336e-05, + "loss": 1.5350186157226562, + "step": 375000 + }, + { + "epoch": 50.013333333333335, + "grad_norm": 0.8176959753036499, + "learning_rate": 2.5004666666666665e-05, + "loss": 1.466029052734375, + "step": 375100 + }, + { + "epoch": 50.026666666666664, + "grad_norm": 0.8403975963592529, + "learning_rate": 2.4998000000000004e-05, + "loss": 1.4674476623535155, + "step": 375200 + }, + { + "epoch": 50.04, + "grad_norm": 0.7836979031562805, + "learning_rate": 2.4991333333333332e-05, + "loss": 1.4652630615234374, + "step": 375300 + }, + { + "epoch": 50.053333333333335, + "grad_norm": 0.8018586039543152, + "learning_rate": 2.4984666666666668e-05, + "loss": 1.4712281799316407, + "step": 375400 + }, + { + "epoch": 50.06666666666667, + "grad_norm": 0.8064463138580322, + "learning_rate": 2.4978e-05, + "loss": 1.4708700561523438, + "step": 375500 + }, + { + "epoch": 50.08, + "grad_norm": 0.8261614441871643, + "learning_rate": 2.4971333333333336e-05, + "loss": 1.4716073608398437, + "step": 375600 + }, + { + "epoch": 50.093333333333334, + "grad_norm": 0.837766706943512, + "learning_rate": 2.496466666666667e-05, + "loss": 1.4701448059082032, + "step": 375700 + }, + { + "epoch": 50.10666666666667, + "grad_norm": 0.8290911912918091, + "learning_rate": 2.4958e-05, + "loss": 1.4736390686035157, + "step": 375800 + }, + { + "epoch": 50.12, + "grad_norm": 0.8385511636734009, + "learning_rate": 2.4951333333333336e-05, + "loss": 1.47410888671875, + "step": 375900 + }, + { + "epoch": 50.13333333333333, + "grad_norm": 0.8306918144226074, + "learning_rate": 2.494466666666667e-05, + "loss": 1.473253173828125, + "step": 376000 + }, + { + "epoch": 50.14666666666667, + "grad_norm": 0.8213056325912476, + "learning_rate": 2.4938e-05, + "loss": 1.4761256408691406, + "step": 376100 + }, + { + "epoch": 50.16, + "grad_norm": 0.8195951581001282, + "learning_rate": 2.4931333333333333e-05, + "loss": 1.4738999938964843, + "step": 376200 + }, + { + "epoch": 50.17333333333333, + "grad_norm": 0.8188632130622864, + "learning_rate": 2.492466666666667e-05, + "loss": 1.474258270263672, + "step": 376300 + }, + { + "epoch": 50.18666666666667, + "grad_norm": 0.8272870182991028, + "learning_rate": 2.4918e-05, + "loss": 1.4804847717285157, + "step": 376400 + }, + { + "epoch": 50.2, + "grad_norm": 0.8472500443458557, + "learning_rate": 2.4911333333333333e-05, + "loss": 1.4830419921875, + "step": 376500 + }, + { + "epoch": 50.21333333333333, + "grad_norm": 0.8540857434272766, + "learning_rate": 2.4904733333333336e-05, + "loss": 1.4762397766113282, + "step": 376600 + }, + { + "epoch": 50.22666666666667, + "grad_norm": 0.8313518762588501, + "learning_rate": 2.4898066666666668e-05, + "loss": 1.488265838623047, + "step": 376700 + }, + { + "epoch": 50.24, + "grad_norm": 0.8233117461204529, + "learning_rate": 2.48914e-05, + "loss": 1.4829058837890625, + "step": 376800 + }, + { + "epoch": 50.25333333333333, + "grad_norm": 0.779459536075592, + "learning_rate": 2.4884733333333336e-05, + "loss": 1.4825271606445312, + "step": 376900 + }, + { + "epoch": 50.266666666666666, + "grad_norm": 0.8867989182472229, + "learning_rate": 2.4878066666666668e-05, + "loss": 1.4807273864746093, + "step": 377000 + }, + { + "epoch": 50.28, + "grad_norm": 0.8341526985168457, + "learning_rate": 2.48714e-05, + "loss": 1.4884478759765625, + "step": 377100 + }, + { + "epoch": 50.29333333333334, + "grad_norm": 0.8194299340248108, + "learning_rate": 2.4864733333333333e-05, + "loss": 1.49041259765625, + "step": 377200 + }, + { + "epoch": 50.306666666666665, + "grad_norm": 0.8118073344230652, + "learning_rate": 2.485806666666667e-05, + "loss": 1.4905577087402344, + "step": 377300 + }, + { + "epoch": 50.32, + "grad_norm": 0.8379462361335754, + "learning_rate": 2.4851400000000004e-05, + "loss": 1.489639434814453, + "step": 377400 + }, + { + "epoch": 50.333333333333336, + "grad_norm": 0.8261382579803467, + "learning_rate": 2.4844733333333333e-05, + "loss": 1.4874810791015625, + "step": 377500 + }, + { + "epoch": 50.346666666666664, + "grad_norm": 0.8561468124389648, + "learning_rate": 2.483806666666667e-05, + "loss": 1.4892660522460937, + "step": 377600 + }, + { + "epoch": 50.36, + "grad_norm": 0.8199340105056763, + "learning_rate": 2.48314e-05, + "loss": 1.4900086975097657, + "step": 377700 + }, + { + "epoch": 50.373333333333335, + "grad_norm": 0.8406544327735901, + "learning_rate": 2.4824733333333333e-05, + "loss": 1.4931591796875, + "step": 377800 + }, + { + "epoch": 50.38666666666666, + "grad_norm": 0.855679452419281, + "learning_rate": 2.481806666666667e-05, + "loss": 1.496982879638672, + "step": 377900 + }, + { + "epoch": 50.4, + "grad_norm": 0.8296971917152405, + "learning_rate": 2.48114e-05, + "loss": 1.4914996337890625, + "step": 378000 + }, + { + "epoch": 50.413333333333334, + "grad_norm": 0.8180424571037292, + "learning_rate": 2.4804733333333337e-05, + "loss": 1.4951356506347657, + "step": 378100 + }, + { + "epoch": 50.42666666666667, + "grad_norm": 0.7618070244789124, + "learning_rate": 2.4798066666666666e-05, + "loss": 1.4911334228515625, + "step": 378200 + }, + { + "epoch": 50.44, + "grad_norm": 0.8503825664520264, + "learning_rate": 2.47914e-05, + "loss": 1.4923796081542968, + "step": 378300 + }, + { + "epoch": 50.45333333333333, + "grad_norm": 0.8834084272384644, + "learning_rate": 2.4784733333333333e-05, + "loss": 1.5002174377441406, + "step": 378400 + }, + { + "epoch": 50.46666666666667, + "grad_norm": 0.8220873475074768, + "learning_rate": 2.477806666666667e-05, + "loss": 1.4986158752441405, + "step": 378500 + }, + { + "epoch": 50.48, + "grad_norm": 0.8193914294242859, + "learning_rate": 2.4771466666666668e-05, + "loss": 1.5011746215820312, + "step": 378600 + }, + { + "epoch": 50.49333333333333, + "grad_norm": 0.800317108631134, + "learning_rate": 2.47648e-05, + "loss": 1.4963475036621094, + "step": 378700 + }, + { + "epoch": 50.50666666666667, + "grad_norm": 0.9164362549781799, + "learning_rate": 2.4758133333333333e-05, + "loss": 1.5000321960449219, + "step": 378800 + }, + { + "epoch": 50.52, + "grad_norm": 0.8191181421279907, + "learning_rate": 2.475146666666667e-05, + "loss": 1.4975949096679688, + "step": 378900 + }, + { + "epoch": 50.53333333333333, + "grad_norm": 0.8659054040908813, + "learning_rate": 2.47448e-05, + "loss": 1.5002691650390625, + "step": 379000 + }, + { + "epoch": 50.54666666666667, + "grad_norm": 0.8360313177108765, + "learning_rate": 2.4738133333333336e-05, + "loss": 1.5039067077636719, + "step": 379100 + }, + { + "epoch": 50.56, + "grad_norm": 0.8391720652580261, + "learning_rate": 2.4731466666666665e-05, + "loss": 1.5015184020996093, + "step": 379200 + }, + { + "epoch": 50.57333333333333, + "grad_norm": 0.8605763912200928, + "learning_rate": 2.47248e-05, + "loss": 1.4976239013671875, + "step": 379300 + }, + { + "epoch": 50.586666666666666, + "grad_norm": 0.8516925573348999, + "learning_rate": 2.4718133333333333e-05, + "loss": 1.506053466796875, + "step": 379400 + }, + { + "epoch": 50.6, + "grad_norm": 0.8585731387138367, + "learning_rate": 2.471146666666667e-05, + "loss": 1.5041627502441406, + "step": 379500 + }, + { + "epoch": 50.61333333333333, + "grad_norm": 0.8855695724487305, + "learning_rate": 2.47048e-05, + "loss": 1.511184539794922, + "step": 379600 + }, + { + "epoch": 50.626666666666665, + "grad_norm": 0.8389919996261597, + "learning_rate": 2.4698133333333333e-05, + "loss": 1.5034822082519532, + "step": 379700 + }, + { + "epoch": 50.64, + "grad_norm": 0.8592944145202637, + "learning_rate": 2.469146666666667e-05, + "loss": 1.5039569091796876, + "step": 379800 + }, + { + "epoch": 50.653333333333336, + "grad_norm": 0.8480226397514343, + "learning_rate": 2.46848e-05, + "loss": 1.5057781982421874, + "step": 379900 + }, + { + "epoch": 50.666666666666664, + "grad_norm": 0.8565899133682251, + "learning_rate": 2.4678133333333334e-05, + "loss": 1.5090969848632811, + "step": 380000 + }, + { + "epoch": 50.68, + "grad_norm": 0.8642663359642029, + "learning_rate": 2.467146666666667e-05, + "loss": 1.5119166564941406, + "step": 380100 + }, + { + "epoch": 50.693333333333335, + "grad_norm": 0.8396902084350586, + "learning_rate": 2.46648e-05, + "loss": 1.5146353149414062, + "step": 380200 + }, + { + "epoch": 50.70666666666666, + "grad_norm": 0.8606100678443909, + "learning_rate": 2.4658133333333337e-05, + "loss": 1.5087774658203126, + "step": 380300 + }, + { + "epoch": 50.72, + "grad_norm": 0.8133344054222107, + "learning_rate": 2.4651466666666666e-05, + "loss": 1.5128636169433594, + "step": 380400 + }, + { + "epoch": 50.733333333333334, + "grad_norm": 0.8432591557502747, + "learning_rate": 2.46448e-05, + "loss": 1.5084796142578125, + "step": 380500 + }, + { + "epoch": 50.74666666666667, + "grad_norm": 0.8862467408180237, + "learning_rate": 2.46382e-05, + "loss": 1.5145498657226562, + "step": 380600 + }, + { + "epoch": 50.76, + "grad_norm": 0.883004903793335, + "learning_rate": 2.4631533333333333e-05, + "loss": 1.5110755920410157, + "step": 380700 + }, + { + "epoch": 50.77333333333333, + "grad_norm": 0.8901974558830261, + "learning_rate": 2.462486666666667e-05, + "loss": 1.5167329406738281, + "step": 380800 + }, + { + "epoch": 50.78666666666667, + "grad_norm": 0.841244637966156, + "learning_rate": 2.46182e-05, + "loss": 1.5136112976074219, + "step": 380900 + }, + { + "epoch": 50.8, + "grad_norm": 0.8438834547996521, + "learning_rate": 2.4611533333333333e-05, + "loss": 1.5152095031738282, + "step": 381000 + }, + { + "epoch": 50.81333333333333, + "grad_norm": 0.8658137321472168, + "learning_rate": 2.460486666666667e-05, + "loss": 1.513826904296875, + "step": 381100 + }, + { + "epoch": 50.82666666666667, + "grad_norm": 0.882071852684021, + "learning_rate": 2.45982e-05, + "loss": 1.5154730224609374, + "step": 381200 + }, + { + "epoch": 50.84, + "grad_norm": 0.8813706040382385, + "learning_rate": 2.4591533333333337e-05, + "loss": 1.51885498046875, + "step": 381300 + }, + { + "epoch": 50.85333333333333, + "grad_norm": 0.8508647084236145, + "learning_rate": 2.4584866666666666e-05, + "loss": 1.5158058166503907, + "step": 381400 + }, + { + "epoch": 50.86666666666667, + "grad_norm": 0.8502191305160522, + "learning_rate": 2.45782e-05, + "loss": 1.5165373229980468, + "step": 381500 + }, + { + "epoch": 50.88, + "grad_norm": 0.8656032085418701, + "learning_rate": 2.4571533333333337e-05, + "loss": 1.5202676391601562, + "step": 381600 + }, + { + "epoch": 50.89333333333333, + "grad_norm": 0.8280258774757385, + "learning_rate": 2.4564866666666666e-05, + "loss": 1.523727569580078, + "step": 381700 + }, + { + "epoch": 50.906666666666666, + "grad_norm": 0.8496196269989014, + "learning_rate": 2.45582e-05, + "loss": 1.5180378723144532, + "step": 381800 + }, + { + "epoch": 50.92, + "grad_norm": 0.9003440141677856, + "learning_rate": 2.4551533333333334e-05, + "loss": 1.52153564453125, + "step": 381900 + }, + { + "epoch": 50.93333333333333, + "grad_norm": 0.8458821177482605, + "learning_rate": 2.454486666666667e-05, + "loss": 1.5277166748046875, + "step": 382000 + }, + { + "epoch": 50.946666666666665, + "grad_norm": 0.8582217693328857, + "learning_rate": 2.45382e-05, + "loss": 1.5160935974121095, + "step": 382100 + }, + { + "epoch": 50.96, + "grad_norm": 0.8812438249588013, + "learning_rate": 2.4531533333333334e-05, + "loss": 1.5228970336914063, + "step": 382200 + }, + { + "epoch": 50.973333333333336, + "grad_norm": 0.8399114608764648, + "learning_rate": 2.452486666666667e-05, + "loss": 1.5246499633789063, + "step": 382300 + }, + { + "epoch": 50.986666666666665, + "grad_norm": 0.8204259276390076, + "learning_rate": 2.4518200000000002e-05, + "loss": 1.5253396606445313, + "step": 382400 + }, + { + "epoch": 51.0, + "grad_norm": 0.8467189073562622, + "learning_rate": 2.4511533333333334e-05, + "loss": 1.5258003234863282, + "step": 382500 + }, + { + "epoch": 51.013333333333335, + "grad_norm": 0.8255739212036133, + "learning_rate": 2.4504933333333337e-05, + "loss": 1.4497154235839844, + "step": 382600 + }, + { + "epoch": 51.026666666666664, + "grad_norm": 0.8379701375961304, + "learning_rate": 2.4498266666666665e-05, + "loss": 1.452757568359375, + "step": 382700 + }, + { + "epoch": 51.04, + "grad_norm": 0.8153045177459717, + "learning_rate": 2.44916e-05, + "loss": 1.4591259765625, + "step": 382800 + }, + { + "epoch": 51.053333333333335, + "grad_norm": 0.8011037111282349, + "learning_rate": 2.4484933333333333e-05, + "loss": 1.4575518798828124, + "step": 382900 + }, + { + "epoch": 51.06666666666667, + "grad_norm": 0.8315128087997437, + "learning_rate": 2.447826666666667e-05, + "loss": 1.4647442626953124, + "step": 383000 + }, + { + "epoch": 51.08, + "grad_norm": 0.8852720260620117, + "learning_rate": 2.44716e-05, + "loss": 1.459652099609375, + "step": 383100 + }, + { + "epoch": 51.093333333333334, + "grad_norm": 0.837066113948822, + "learning_rate": 2.4464933333333334e-05, + "loss": 1.4613265991210938, + "step": 383200 + }, + { + "epoch": 51.10666666666667, + "grad_norm": 0.8697075843811035, + "learning_rate": 2.445826666666667e-05, + "loss": 1.4583189392089844, + "step": 383300 + }, + { + "epoch": 51.12, + "grad_norm": 0.8551360368728638, + "learning_rate": 2.44516e-05, + "loss": 1.4582942199707032, + "step": 383400 + }, + { + "epoch": 51.13333333333333, + "grad_norm": 0.8545364141464233, + "learning_rate": 2.4444933333333334e-05, + "loss": 1.460870819091797, + "step": 383500 + }, + { + "epoch": 51.14666666666667, + "grad_norm": 0.8045480251312256, + "learning_rate": 2.4438266666666666e-05, + "loss": 1.4661735534667968, + "step": 383600 + }, + { + "epoch": 51.16, + "grad_norm": 0.8242552876472473, + "learning_rate": 2.44316e-05, + "loss": 1.4653382873535157, + "step": 383700 + }, + { + "epoch": 51.17333333333333, + "grad_norm": 0.8422017693519592, + "learning_rate": 2.4424933333333337e-05, + "loss": 1.467156982421875, + "step": 383800 + }, + { + "epoch": 51.18666666666667, + "grad_norm": 0.8462349772453308, + "learning_rate": 2.4418266666666666e-05, + "loss": 1.471797637939453, + "step": 383900 + }, + { + "epoch": 51.2, + "grad_norm": 0.8934951424598694, + "learning_rate": 2.4411600000000002e-05, + "loss": 1.4692425537109375, + "step": 384000 + }, + { + "epoch": 51.21333333333333, + "grad_norm": 0.8612936735153198, + "learning_rate": 2.4404933333333334e-05, + "loss": 1.4652291870117187, + "step": 384100 + }, + { + "epoch": 51.22666666666667, + "grad_norm": 0.8447757959365845, + "learning_rate": 2.4398266666666666e-05, + "loss": 1.4715693664550782, + "step": 384200 + }, + { + "epoch": 51.24, + "grad_norm": 0.8683099746704102, + "learning_rate": 2.4391600000000002e-05, + "loss": 1.4702517700195312, + "step": 384300 + }, + { + "epoch": 51.25333333333333, + "grad_norm": 0.789240837097168, + "learning_rate": 2.4384933333333334e-05, + "loss": 1.4706991577148438, + "step": 384400 + }, + { + "epoch": 51.266666666666666, + "grad_norm": 0.8664871454238892, + "learning_rate": 2.437826666666667e-05, + "loss": 1.4718405151367187, + "step": 384500 + }, + { + "epoch": 51.28, + "grad_norm": 0.8637537956237793, + "learning_rate": 2.437166666666667e-05, + "loss": 1.4716297912597656, + "step": 384600 + }, + { + "epoch": 51.29333333333334, + "grad_norm": 0.8115244507789612, + "learning_rate": 2.4365e-05, + "loss": 1.4719580078125, + "step": 384700 + }, + { + "epoch": 51.306666666666665, + "grad_norm": 0.8004962801933289, + "learning_rate": 2.4358333333333337e-05, + "loss": 1.4749884033203124, + "step": 384800 + }, + { + "epoch": 51.32, + "grad_norm": 0.8783427476882935, + "learning_rate": 2.4351666666666666e-05, + "loss": 1.4797103881835938, + "step": 384900 + }, + { + "epoch": 51.333333333333336, + "grad_norm": 0.8578570485115051, + "learning_rate": 2.4345e-05, + "loss": 1.4746359252929688, + "step": 385000 + }, + { + "epoch": 51.346666666666664, + "grad_norm": 0.8788546323776245, + "learning_rate": 2.4338333333333334e-05, + "loss": 1.4802169799804688, + "step": 385100 + }, + { + "epoch": 51.36, + "grad_norm": 0.8816238641738892, + "learning_rate": 2.4331666666666666e-05, + "loss": 1.47786865234375, + "step": 385200 + }, + { + "epoch": 51.373333333333335, + "grad_norm": 0.8610212206840515, + "learning_rate": 2.4325000000000002e-05, + "loss": 1.4802935791015626, + "step": 385300 + }, + { + "epoch": 51.38666666666666, + "grad_norm": 0.8929548263549805, + "learning_rate": 2.4318333333333334e-05, + "loss": 1.4820956420898437, + "step": 385400 + }, + { + "epoch": 51.4, + "grad_norm": 0.8102960586547852, + "learning_rate": 2.431166666666667e-05, + "loss": 1.4810777282714844, + "step": 385500 + }, + { + "epoch": 51.413333333333334, + "grad_norm": 0.8530375361442566, + "learning_rate": 2.4305e-05, + "loss": 1.4792242431640625, + "step": 385600 + }, + { + "epoch": 51.42666666666667, + "grad_norm": 0.8311903476715088, + "learning_rate": 2.4298333333333334e-05, + "loss": 1.4845094299316406, + "step": 385700 + }, + { + "epoch": 51.44, + "grad_norm": 0.8655042052268982, + "learning_rate": 2.4291666666666666e-05, + "loss": 1.482476043701172, + "step": 385800 + }, + { + "epoch": 51.45333333333333, + "grad_norm": 0.8922598361968994, + "learning_rate": 2.4285000000000002e-05, + "loss": 1.4829647827148438, + "step": 385900 + }, + { + "epoch": 51.46666666666667, + "grad_norm": 0.8447866439819336, + "learning_rate": 2.4278333333333334e-05, + "loss": 1.4828948974609375, + "step": 386000 + }, + { + "epoch": 51.48, + "grad_norm": 0.8586673736572266, + "learning_rate": 2.4271666666666667e-05, + "loss": 1.4850732421875, + "step": 386100 + }, + { + "epoch": 51.49333333333333, + "grad_norm": 0.8505076766014099, + "learning_rate": 2.4265000000000002e-05, + "loss": 1.4824075317382812, + "step": 386200 + }, + { + "epoch": 51.50666666666667, + "grad_norm": 0.8577302694320679, + "learning_rate": 2.4258333333333335e-05, + "loss": 1.4877815246582031, + "step": 386300 + }, + { + "epoch": 51.52, + "grad_norm": 0.8362126350402832, + "learning_rate": 2.4251666666666667e-05, + "loss": 1.4846498107910155, + "step": 386400 + }, + { + "epoch": 51.53333333333333, + "grad_norm": 0.8587775230407715, + "learning_rate": 2.4245000000000002e-05, + "loss": 1.484984130859375, + "step": 386500 + }, + { + "epoch": 51.54666666666667, + "grad_norm": 0.871204137802124, + "learning_rate": 2.4238333333333335e-05, + "loss": 1.4914971923828124, + "step": 386600 + }, + { + "epoch": 51.56, + "grad_norm": 0.8179042935371399, + "learning_rate": 2.4231733333333334e-05, + "loss": 1.4899531555175782, + "step": 386700 + }, + { + "epoch": 51.57333333333333, + "grad_norm": 0.8490532040596008, + "learning_rate": 2.422506666666667e-05, + "loss": 1.4912181091308594, + "step": 386800 + }, + { + "epoch": 51.586666666666666, + "grad_norm": 0.8682654500007629, + "learning_rate": 2.4218400000000002e-05, + "loss": 1.4918653869628906, + "step": 386900 + }, + { + "epoch": 51.6, + "grad_norm": 0.890491247177124, + "learning_rate": 2.4211733333333334e-05, + "loss": 1.4917636108398438, + "step": 387000 + }, + { + "epoch": 51.61333333333333, + "grad_norm": 0.8665891885757446, + "learning_rate": 2.4205066666666666e-05, + "loss": 1.4941488647460937, + "step": 387100 + }, + { + "epoch": 51.626666666666665, + "grad_norm": 0.8592315316200256, + "learning_rate": 2.4198400000000002e-05, + "loss": 1.492812042236328, + "step": 387200 + }, + { + "epoch": 51.64, + "grad_norm": 0.8546895980834961, + "learning_rate": 2.4191733333333334e-05, + "loss": 1.4904875183105468, + "step": 387300 + }, + { + "epoch": 51.653333333333336, + "grad_norm": 0.8656253814697266, + "learning_rate": 2.4185066666666666e-05, + "loss": 1.4929344177246093, + "step": 387400 + }, + { + "epoch": 51.666666666666664, + "grad_norm": 0.8968192934989929, + "learning_rate": 2.4178400000000002e-05, + "loss": 1.4941493225097657, + "step": 387500 + }, + { + "epoch": 51.68, + "grad_norm": 0.8238973617553711, + "learning_rate": 2.4171733333333334e-05, + "loss": 1.4932928466796875, + "step": 387600 + }, + { + "epoch": 51.693333333333335, + "grad_norm": 0.8756453394889832, + "learning_rate": 2.416506666666667e-05, + "loss": 1.5003330993652344, + "step": 387700 + }, + { + "epoch": 51.70666666666666, + "grad_norm": 0.8613998293876648, + "learning_rate": 2.41584e-05, + "loss": 1.499681396484375, + "step": 387800 + }, + { + "epoch": 51.72, + "grad_norm": 0.8716132640838623, + "learning_rate": 2.4151733333333335e-05, + "loss": 1.4972032165527345, + "step": 387900 + }, + { + "epoch": 51.733333333333334, + "grad_norm": 0.8987093567848206, + "learning_rate": 2.414506666666667e-05, + "loss": 1.5022872924804687, + "step": 388000 + }, + { + "epoch": 51.74666666666667, + "grad_norm": 0.8321843147277832, + "learning_rate": 2.41384e-05, + "loss": 1.4971646118164061, + "step": 388100 + }, + { + "epoch": 51.76, + "grad_norm": 0.8500959277153015, + "learning_rate": 2.4131733333333335e-05, + "loss": 1.5017050170898438, + "step": 388200 + }, + { + "epoch": 51.77333333333333, + "grad_norm": 0.8492921590805054, + "learning_rate": 2.4125066666666667e-05, + "loss": 1.4948918151855468, + "step": 388300 + }, + { + "epoch": 51.78666666666667, + "grad_norm": 0.8338704705238342, + "learning_rate": 2.4118400000000003e-05, + "loss": 1.5020379638671875, + "step": 388400 + }, + { + "epoch": 51.8, + "grad_norm": 0.8522675037384033, + "learning_rate": 2.4111733333333335e-05, + "loss": 1.5005595397949218, + "step": 388500 + }, + { + "epoch": 51.81333333333333, + "grad_norm": 0.8284652829170227, + "learning_rate": 2.4105066666666667e-05, + "loss": 1.5022247314453125, + "step": 388600 + }, + { + "epoch": 51.82666666666667, + "grad_norm": 0.862209141254425, + "learning_rate": 2.409846666666667e-05, + "loss": 1.504408416748047, + "step": 388700 + }, + { + "epoch": 51.84, + "grad_norm": 0.8681904077529907, + "learning_rate": 2.4091800000000002e-05, + "loss": 1.5046144104003907, + "step": 388800 + }, + { + "epoch": 51.85333333333333, + "grad_norm": 0.8120859861373901, + "learning_rate": 2.4085133333333334e-05, + "loss": 1.5099690246582032, + "step": 388900 + }, + { + "epoch": 51.86666666666667, + "grad_norm": 0.8199965357780457, + "learning_rate": 2.407846666666667e-05, + "loss": 1.5086412048339843, + "step": 389000 + }, + { + "epoch": 51.88, + "grad_norm": 0.8781035542488098, + "learning_rate": 2.40718e-05, + "loss": 1.5068019104003907, + "step": 389100 + }, + { + "epoch": 51.89333333333333, + "grad_norm": 0.8746353983879089, + "learning_rate": 2.4065133333333334e-05, + "loss": 1.5051779174804687, + "step": 389200 + }, + { + "epoch": 51.906666666666666, + "grad_norm": 0.8584237098693848, + "learning_rate": 2.4058466666666667e-05, + "loss": 1.5083631896972656, + "step": 389300 + }, + { + "epoch": 51.92, + "grad_norm": 0.9089388251304626, + "learning_rate": 2.4051800000000002e-05, + "loss": 1.5061935424804687, + "step": 389400 + }, + { + "epoch": 51.93333333333333, + "grad_norm": 0.8394655585289001, + "learning_rate": 2.4045133333333335e-05, + "loss": 1.509464569091797, + "step": 389500 + }, + { + "epoch": 51.946666666666665, + "grad_norm": 0.8279618620872498, + "learning_rate": 2.4038466666666667e-05, + "loss": 1.5109159851074219, + "step": 389600 + }, + { + "epoch": 51.96, + "grad_norm": 0.9038397669792175, + "learning_rate": 2.4031800000000003e-05, + "loss": 1.510810089111328, + "step": 389700 + }, + { + "epoch": 51.973333333333336, + "grad_norm": 0.899217963218689, + "learning_rate": 2.4025133333333335e-05, + "loss": 1.5102980041503906, + "step": 389800 + }, + { + "epoch": 51.986666666666665, + "grad_norm": 0.905498743057251, + "learning_rate": 2.4018466666666667e-05, + "loss": 1.510074920654297, + "step": 389900 + }, + { + "epoch": 52.0, + "grad_norm": 0.8077598214149475, + "learning_rate": 2.40118e-05, + "loss": 1.5141552734375, + "step": 390000 + }, + { + "epoch": 52.013333333333335, + "grad_norm": 0.8236868381500244, + "learning_rate": 2.4005133333333335e-05, + "loss": 1.444603729248047, + "step": 390100 + }, + { + "epoch": 52.026666666666664, + "grad_norm": 0.8070313930511475, + "learning_rate": 2.399846666666667e-05, + "loss": 1.4379257202148437, + "step": 390200 + }, + { + "epoch": 52.04, + "grad_norm": 0.7745979428291321, + "learning_rate": 2.39918e-05, + "loss": 1.4440399169921876, + "step": 390300 + }, + { + "epoch": 52.053333333333335, + "grad_norm": 0.8141463398933411, + "learning_rate": 2.3985133333333335e-05, + "loss": 1.4421783447265626, + "step": 390400 + }, + { + "epoch": 52.06666666666667, + "grad_norm": 0.8253259062767029, + "learning_rate": 2.3978466666666667e-05, + "loss": 1.4468896484375, + "step": 390500 + }, + { + "epoch": 52.08, + "grad_norm": 0.8300577402114868, + "learning_rate": 2.39718e-05, + "loss": 1.4401560974121095, + "step": 390600 + }, + { + "epoch": 52.093333333333334, + "grad_norm": 0.854324996471405, + "learning_rate": 2.3965200000000002e-05, + "loss": 1.4524754333496093, + "step": 390700 + }, + { + "epoch": 52.10666666666667, + "grad_norm": 0.8196046352386475, + "learning_rate": 2.3958533333333334e-05, + "loss": 1.4522889709472657, + "step": 390800 + }, + { + "epoch": 52.12, + "grad_norm": 0.8217240571975708, + "learning_rate": 2.3951866666666667e-05, + "loss": 1.4478153991699219, + "step": 390900 + }, + { + "epoch": 52.13333333333333, + "grad_norm": 0.8146061301231384, + "learning_rate": 2.3945200000000002e-05, + "loss": 1.450179443359375, + "step": 391000 + }, + { + "epoch": 52.14666666666667, + "grad_norm": 0.8496772646903992, + "learning_rate": 2.3938533333333335e-05, + "loss": 1.448777618408203, + "step": 391100 + }, + { + "epoch": 52.16, + "grad_norm": 0.8619560599327087, + "learning_rate": 2.393186666666667e-05, + "loss": 1.4484617614746094, + "step": 391200 + }, + { + "epoch": 52.17333333333333, + "grad_norm": 0.8483819365501404, + "learning_rate": 2.39252e-05, + "loss": 1.451850128173828, + "step": 391300 + }, + { + "epoch": 52.18666666666667, + "grad_norm": 0.8521955609321594, + "learning_rate": 2.3918533333333335e-05, + "loss": 1.459192657470703, + "step": 391400 + }, + { + "epoch": 52.2, + "grad_norm": 0.8739776611328125, + "learning_rate": 2.3911866666666667e-05, + "loss": 1.4575103759765624, + "step": 391500 + }, + { + "epoch": 52.21333333333333, + "grad_norm": 0.8248653411865234, + "learning_rate": 2.39052e-05, + "loss": 1.458475341796875, + "step": 391600 + }, + { + "epoch": 52.22666666666667, + "grad_norm": 0.8667312264442444, + "learning_rate": 2.3898533333333335e-05, + "loss": 1.4586300659179687, + "step": 391700 + }, + { + "epoch": 52.24, + "grad_norm": 0.8715050220489502, + "learning_rate": 2.3891866666666667e-05, + "loss": 1.4606393432617188, + "step": 391800 + }, + { + "epoch": 52.25333333333333, + "grad_norm": 0.8274866342544556, + "learning_rate": 2.3885200000000003e-05, + "loss": 1.4589753723144532, + "step": 391900 + }, + { + "epoch": 52.266666666666666, + "grad_norm": 0.8984260559082031, + "learning_rate": 2.3878533333333332e-05, + "loss": 1.4624786376953125, + "step": 392000 + }, + { + "epoch": 52.28, + "grad_norm": 0.8441860675811768, + "learning_rate": 2.3871866666666668e-05, + "loss": 1.4648696899414062, + "step": 392100 + }, + { + "epoch": 52.29333333333334, + "grad_norm": 0.8562932014465332, + "learning_rate": 2.38652e-05, + "loss": 1.4625413513183594, + "step": 392200 + }, + { + "epoch": 52.306666666666665, + "grad_norm": 0.8100069165229797, + "learning_rate": 2.3858533333333335e-05, + "loss": 1.4674345397949218, + "step": 392300 + }, + { + "epoch": 52.32, + "grad_norm": 0.879694938659668, + "learning_rate": 2.3851866666666668e-05, + "loss": 1.462593536376953, + "step": 392400 + }, + { + "epoch": 52.333333333333336, + "grad_norm": 0.8324185609817505, + "learning_rate": 2.38452e-05, + "loss": 1.4686509704589843, + "step": 392500 + }, + { + "epoch": 52.346666666666664, + "grad_norm": 0.8371502161026001, + "learning_rate": 2.3838533333333336e-05, + "loss": 1.468300323486328, + "step": 392600 + }, + { + "epoch": 52.36, + "grad_norm": 0.8931401968002319, + "learning_rate": 2.3831866666666668e-05, + "loss": 1.4668818664550782, + "step": 392700 + }, + { + "epoch": 52.373333333333335, + "grad_norm": 0.8364928960800171, + "learning_rate": 2.3825266666666667e-05, + "loss": 1.4689984130859375, + "step": 392800 + }, + { + "epoch": 52.38666666666666, + "grad_norm": 0.861511766910553, + "learning_rate": 2.3818600000000003e-05, + "loss": 1.4642536926269532, + "step": 392900 + }, + { + "epoch": 52.4, + "grad_norm": 0.8501995801925659, + "learning_rate": 2.3811933333333335e-05, + "loss": 1.4702130126953126, + "step": 393000 + }, + { + "epoch": 52.413333333333334, + "grad_norm": 0.8685861229896545, + "learning_rate": 2.3805266666666667e-05, + "loss": 1.472560577392578, + "step": 393100 + }, + { + "epoch": 52.42666666666667, + "grad_norm": 0.8422084450721741, + "learning_rate": 2.3798600000000003e-05, + "loss": 1.4753160095214843, + "step": 393200 + }, + { + "epoch": 52.44, + "grad_norm": 0.8546521663665771, + "learning_rate": 2.3791933333333335e-05, + "loss": 1.473077392578125, + "step": 393300 + }, + { + "epoch": 52.45333333333333, + "grad_norm": 0.8383651375770569, + "learning_rate": 2.3785266666666667e-05, + "loss": 1.468947296142578, + "step": 393400 + }, + { + "epoch": 52.46666666666667, + "grad_norm": 0.8365948796272278, + "learning_rate": 2.37786e-05, + "loss": 1.4694491577148439, + "step": 393500 + }, + { + "epoch": 52.48, + "grad_norm": 0.8776941299438477, + "learning_rate": 2.3771933333333335e-05, + "loss": 1.4765846252441406, + "step": 393600 + }, + { + "epoch": 52.49333333333333, + "grad_norm": 0.8972512483596802, + "learning_rate": 2.3765266666666668e-05, + "loss": 1.4798658752441407, + "step": 393700 + }, + { + "epoch": 52.50666666666667, + "grad_norm": 0.87769615650177, + "learning_rate": 2.37586e-05, + "loss": 1.4698507690429687, + "step": 393800 + }, + { + "epoch": 52.52, + "grad_norm": 0.8386378884315491, + "learning_rate": 2.3751933333333335e-05, + "loss": 1.4793057250976562, + "step": 393900 + }, + { + "epoch": 52.53333333333333, + "grad_norm": 0.85838383436203, + "learning_rate": 2.3745266666666668e-05, + "loss": 1.4752388000488281, + "step": 394000 + }, + { + "epoch": 52.54666666666667, + "grad_norm": 0.8824598789215088, + "learning_rate": 2.3738600000000003e-05, + "loss": 1.4773374938964843, + "step": 394100 + }, + { + "epoch": 52.56, + "grad_norm": 0.8590186834335327, + "learning_rate": 2.3731933333333332e-05, + "loss": 1.4786466979980468, + "step": 394200 + }, + { + "epoch": 52.57333333333333, + "grad_norm": 0.8705313801765442, + "learning_rate": 2.3725266666666668e-05, + "loss": 1.4816523742675782, + "step": 394300 + }, + { + "epoch": 52.586666666666666, + "grad_norm": 0.865382194519043, + "learning_rate": 2.3718600000000004e-05, + "loss": 1.478979034423828, + "step": 394400 + }, + { + "epoch": 52.6, + "grad_norm": 0.8217282891273499, + "learning_rate": 2.3711933333333332e-05, + "loss": 1.4787644958496093, + "step": 394500 + }, + { + "epoch": 52.61333333333333, + "grad_norm": 0.8592541217803955, + "learning_rate": 2.3705266666666668e-05, + "loss": 1.482845458984375, + "step": 394600 + }, + { + "epoch": 52.626666666666665, + "grad_norm": 0.8390605449676514, + "learning_rate": 2.36986e-05, + "loss": 1.4851654052734375, + "step": 394700 + }, + { + "epoch": 52.64, + "grad_norm": 0.9070495963096619, + "learning_rate": 2.3692e-05, + "loss": 1.4781282043457031, + "step": 394800 + }, + { + "epoch": 52.653333333333336, + "grad_norm": 0.8450265526771545, + "learning_rate": 2.3685333333333335e-05, + "loss": 1.483128204345703, + "step": 394900 + }, + { + "epoch": 52.666666666666664, + "grad_norm": 0.8272682428359985, + "learning_rate": 2.3678666666666667e-05, + "loss": 1.484342041015625, + "step": 395000 + }, + { + "epoch": 52.68, + "grad_norm": 0.9051398634910583, + "learning_rate": 2.3672000000000003e-05, + "loss": 1.4861419677734375, + "step": 395100 + }, + { + "epoch": 52.693333333333335, + "grad_norm": 0.8721572160720825, + "learning_rate": 2.3665333333333335e-05, + "loss": 1.4825254821777343, + "step": 395200 + }, + { + "epoch": 52.70666666666666, + "grad_norm": 0.8346722722053528, + "learning_rate": 2.3658666666666668e-05, + "loss": 1.486527099609375, + "step": 395300 + }, + { + "epoch": 52.72, + "grad_norm": 0.8343473076820374, + "learning_rate": 2.3652000000000003e-05, + "loss": 1.485967254638672, + "step": 395400 + }, + { + "epoch": 52.733333333333334, + "grad_norm": 0.849467396736145, + "learning_rate": 2.3645333333333332e-05, + "loss": 1.485404510498047, + "step": 395500 + }, + { + "epoch": 52.74666666666667, + "grad_norm": 0.8700857162475586, + "learning_rate": 2.3638666666666668e-05, + "loss": 1.4913349914550782, + "step": 395600 + }, + { + "epoch": 52.76, + "grad_norm": 0.9438149929046631, + "learning_rate": 2.3632e-05, + "loss": 1.4887771606445312, + "step": 395700 + }, + { + "epoch": 52.77333333333333, + "grad_norm": 0.8537826538085938, + "learning_rate": 2.3625333333333336e-05, + "loss": 1.4901506042480468, + "step": 395800 + }, + { + "epoch": 52.78666666666667, + "grad_norm": 0.8943189382553101, + "learning_rate": 2.3618666666666668e-05, + "loss": 1.4895608520507813, + "step": 395900 + }, + { + "epoch": 52.8, + "grad_norm": 0.8864601254463196, + "learning_rate": 2.3612e-05, + "loss": 1.4893939208984375, + "step": 396000 + }, + { + "epoch": 52.81333333333333, + "grad_norm": 0.8941498398780823, + "learning_rate": 2.3605333333333336e-05, + "loss": 1.4906712341308594, + "step": 396100 + }, + { + "epoch": 52.82666666666667, + "grad_norm": 0.8816115260124207, + "learning_rate": 2.3598666666666668e-05, + "loss": 1.4948838806152345, + "step": 396200 + }, + { + "epoch": 52.84, + "grad_norm": 0.8456717133522034, + "learning_rate": 2.3592e-05, + "loss": 1.4868934631347657, + "step": 396300 + }, + { + "epoch": 52.85333333333333, + "grad_norm": 0.8491533994674683, + "learning_rate": 2.3585333333333333e-05, + "loss": 1.4916058349609376, + "step": 396400 + }, + { + "epoch": 52.86666666666667, + "grad_norm": 0.8934788107872009, + "learning_rate": 2.357866666666667e-05, + "loss": 1.4947138977050782, + "step": 396500 + }, + { + "epoch": 52.88, + "grad_norm": 0.8404362797737122, + "learning_rate": 2.3572000000000004e-05, + "loss": 1.4902780151367188, + "step": 396600 + }, + { + "epoch": 52.89333333333333, + "grad_norm": 0.8693411946296692, + "learning_rate": 2.3565333333333333e-05, + "loss": 1.493137969970703, + "step": 396700 + }, + { + "epoch": 52.906666666666666, + "grad_norm": 0.8568634986877441, + "learning_rate": 2.3558733333333335e-05, + "loss": 1.4958587646484376, + "step": 396800 + }, + { + "epoch": 52.92, + "grad_norm": 0.8633151054382324, + "learning_rate": 2.3552066666666668e-05, + "loss": 1.4957908630371093, + "step": 396900 + }, + { + "epoch": 52.93333333333333, + "grad_norm": 0.8764383792877197, + "learning_rate": 2.35454e-05, + "loss": 1.498976287841797, + "step": 397000 + }, + { + "epoch": 52.946666666666665, + "grad_norm": 0.8593562841415405, + "learning_rate": 2.3538733333333336e-05, + "loss": 1.496341552734375, + "step": 397100 + }, + { + "epoch": 52.96, + "grad_norm": 0.864981472492218, + "learning_rate": 2.3532066666666668e-05, + "loss": 1.500501708984375, + "step": 397200 + }, + { + "epoch": 52.973333333333336, + "grad_norm": 0.869564950466156, + "learning_rate": 2.35254e-05, + "loss": 1.4988710021972655, + "step": 397300 + }, + { + "epoch": 52.986666666666665, + "grad_norm": 0.8883520364761353, + "learning_rate": 2.3518733333333336e-05, + "loss": 1.5024085998535157, + "step": 397400 + }, + { + "epoch": 53.0, + "grad_norm": 0.8562717437744141, + "learning_rate": 2.3512066666666668e-05, + "loss": 1.5046351623535157, + "step": 397500 + }, + { + "epoch": 53.013333333333335, + "grad_norm": 0.805515706539154, + "learning_rate": 2.3505400000000004e-05, + "loss": 1.4346591186523439, + "step": 397600 + }, + { + "epoch": 53.026666666666664, + "grad_norm": 0.80479896068573, + "learning_rate": 2.3498733333333333e-05, + "loss": 1.4268614196777343, + "step": 397700 + }, + { + "epoch": 53.04, + "grad_norm": 0.8560926914215088, + "learning_rate": 2.3492066666666668e-05, + "loss": 1.4327865600585938, + "step": 397800 + }, + { + "epoch": 53.053333333333335, + "grad_norm": 0.8021524548530579, + "learning_rate": 2.34854e-05, + "loss": 1.4293780517578125, + "step": 397900 + }, + { + "epoch": 53.06666666666667, + "grad_norm": 0.80971360206604, + "learning_rate": 2.3478733333333333e-05, + "loss": 1.4374539184570312, + "step": 398000 + }, + { + "epoch": 53.08, + "grad_norm": 0.838452935218811, + "learning_rate": 2.347206666666667e-05, + "loss": 1.4421630859375, + "step": 398100 + }, + { + "epoch": 53.093333333333334, + "grad_norm": 0.8354381322860718, + "learning_rate": 2.34654e-05, + "loss": 1.43285400390625, + "step": 398200 + }, + { + "epoch": 53.10666666666667, + "grad_norm": 0.8726691007614136, + "learning_rate": 2.3458733333333336e-05, + "loss": 1.4365280151367188, + "step": 398300 + }, + { + "epoch": 53.12, + "grad_norm": 0.8390151262283325, + "learning_rate": 2.3452066666666665e-05, + "loss": 1.4363105773925782, + "step": 398400 + }, + { + "epoch": 53.13333333333333, + "grad_norm": 0.8505403995513916, + "learning_rate": 2.34454e-05, + "loss": 1.4446278381347657, + "step": 398500 + }, + { + "epoch": 53.14666666666667, + "grad_norm": 0.8463150262832642, + "learning_rate": 2.3438733333333333e-05, + "loss": 1.4427076721191405, + "step": 398600 + }, + { + "epoch": 53.16, + "grad_norm": 0.8394322991371155, + "learning_rate": 2.343206666666667e-05, + "loss": 1.4383731079101563, + "step": 398700 + }, + { + "epoch": 53.17333333333333, + "grad_norm": 0.8394029140472412, + "learning_rate": 2.3425466666666668e-05, + "loss": 1.443642578125, + "step": 398800 + }, + { + "epoch": 53.18666666666667, + "grad_norm": 0.8809831738471985, + "learning_rate": 2.3418800000000004e-05, + "loss": 1.4458544921875, + "step": 398900 + }, + { + "epoch": 53.2, + "grad_norm": 0.9032037258148193, + "learning_rate": 2.3412133333333332e-05, + "loss": 1.4469097900390624, + "step": 399000 + }, + { + "epoch": 53.21333333333333, + "grad_norm": 0.7470035552978516, + "learning_rate": 2.3405466666666668e-05, + "loss": 1.4481082153320313, + "step": 399100 + }, + { + "epoch": 53.22666666666667, + "grad_norm": 0.8141319155693054, + "learning_rate": 2.33988e-05, + "loss": 1.4453059387207032, + "step": 399200 + }, + { + "epoch": 53.24, + "grad_norm": 0.8504648804664612, + "learning_rate": 2.3392133333333336e-05, + "loss": 1.4482171630859375, + "step": 399300 + }, + { + "epoch": 53.25333333333333, + "grad_norm": 0.8674839735031128, + "learning_rate": 2.3385466666666668e-05, + "loss": 1.4432850646972657, + "step": 399400 + }, + { + "epoch": 53.266666666666666, + "grad_norm": 0.8443961143493652, + "learning_rate": 2.33788e-05, + "loss": 1.4486787414550781, + "step": 399500 + }, + { + "epoch": 53.28, + "grad_norm": 0.8612597584724426, + "learning_rate": 2.3372133333333336e-05, + "loss": 1.4492063903808594, + "step": 399600 + }, + { + "epoch": 53.29333333333334, + "grad_norm": 0.8739829659461975, + "learning_rate": 2.336546666666667e-05, + "loss": 1.4499366760253907, + "step": 399700 + }, + { + "epoch": 53.306666666666665, + "grad_norm": 0.8640965819358826, + "learning_rate": 2.33588e-05, + "loss": 1.454102783203125, + "step": 399800 + }, + { + "epoch": 53.32, + "grad_norm": 0.830761730670929, + "learning_rate": 2.3352133333333333e-05, + "loss": 1.4512599182128907, + "step": 399900 + }, + { + "epoch": 53.333333333333336, + "grad_norm": 0.8445847034454346, + "learning_rate": 2.334546666666667e-05, + "loss": 1.451502685546875, + "step": 400000 + }, + { + "epoch": 53.346666666666664, + "grad_norm": 0.8434433937072754, + "learning_rate": 2.33388e-05, + "loss": 1.4518226623535155, + "step": 400100 + }, + { + "epoch": 53.36, + "grad_norm": 0.8982335925102234, + "learning_rate": 2.3332133333333333e-05, + "loss": 1.4535255432128906, + "step": 400200 + }, + { + "epoch": 53.373333333333335, + "grad_norm": 0.8745660781860352, + "learning_rate": 2.332546666666667e-05, + "loss": 1.4575784301757813, + "step": 400300 + }, + { + "epoch": 53.38666666666666, + "grad_norm": 0.8744916319847107, + "learning_rate": 2.33188e-05, + "loss": 1.4541175842285157, + "step": 400400 + }, + { + "epoch": 53.4, + "grad_norm": 0.8759534955024719, + "learning_rate": 2.3312133333333337e-05, + "loss": 1.4521678161621094, + "step": 400500 + }, + { + "epoch": 53.413333333333334, + "grad_norm": 0.7871354222297668, + "learning_rate": 2.3305466666666666e-05, + "loss": 1.4580287170410156, + "step": 400600 + }, + { + "epoch": 53.42666666666667, + "grad_norm": 0.8808795809745789, + "learning_rate": 2.32988e-05, + "loss": 1.4611434936523438, + "step": 400700 + }, + { + "epoch": 53.44, + "grad_norm": 0.8959735035896301, + "learning_rate": 2.32922e-05, + "loss": 1.459822998046875, + "step": 400800 + }, + { + "epoch": 53.45333333333333, + "grad_norm": 0.8618682622909546, + "learning_rate": 2.3285533333333333e-05, + "loss": 1.4601959228515624, + "step": 400900 + }, + { + "epoch": 53.46666666666667, + "grad_norm": 0.8385915160179138, + "learning_rate": 2.3278866666666668e-05, + "loss": 1.464827423095703, + "step": 401000 + }, + { + "epoch": 53.48, + "grad_norm": 0.8934867978096008, + "learning_rate": 2.3272200000000004e-05, + "loss": 1.4627699279785156, + "step": 401100 + }, + { + "epoch": 53.49333333333333, + "grad_norm": 0.846880316734314, + "learning_rate": 2.3265533333333333e-05, + "loss": 1.4640000915527345, + "step": 401200 + }, + { + "epoch": 53.50666666666667, + "grad_norm": 0.8630863428115845, + "learning_rate": 2.325886666666667e-05, + "loss": 1.460301971435547, + "step": 401300 + }, + { + "epoch": 53.52, + "grad_norm": 0.8449327945709229, + "learning_rate": 2.32522e-05, + "loss": 1.4675813293457032, + "step": 401400 + }, + { + "epoch": 53.53333333333333, + "grad_norm": 0.875411331653595, + "learning_rate": 2.3245533333333336e-05, + "loss": 1.463404541015625, + "step": 401500 + }, + { + "epoch": 53.54666666666667, + "grad_norm": 0.8588878512382507, + "learning_rate": 2.323886666666667e-05, + "loss": 1.4630206298828126, + "step": 401600 + }, + { + "epoch": 53.56, + "grad_norm": 0.8418893814086914, + "learning_rate": 2.32322e-05, + "loss": 1.4669151306152344, + "step": 401700 + }, + { + "epoch": 53.57333333333333, + "grad_norm": 0.8740350604057312, + "learning_rate": 2.3225533333333337e-05, + "loss": 1.4691087341308593, + "step": 401800 + }, + { + "epoch": 53.586666666666666, + "grad_norm": 0.8648200035095215, + "learning_rate": 2.3218866666666665e-05, + "loss": 1.4714599609375, + "step": 401900 + }, + { + "epoch": 53.6, + "grad_norm": 0.8941342830657959, + "learning_rate": 2.32122e-05, + "loss": 1.4738253784179687, + "step": 402000 + }, + { + "epoch": 53.61333333333333, + "grad_norm": 0.8258972764015198, + "learning_rate": 2.3205533333333333e-05, + "loss": 1.4741175842285157, + "step": 402100 + }, + { + "epoch": 53.626666666666665, + "grad_norm": 0.8815823793411255, + "learning_rate": 2.319886666666667e-05, + "loss": 1.4661442565917968, + "step": 402200 + }, + { + "epoch": 53.64, + "grad_norm": 0.8187025785446167, + "learning_rate": 2.31922e-05, + "loss": 1.4684117126464844, + "step": 402300 + }, + { + "epoch": 53.653333333333336, + "grad_norm": 0.8981267809867859, + "learning_rate": 2.3185533333333334e-05, + "loss": 1.4723139953613282, + "step": 402400 + }, + { + "epoch": 53.666666666666664, + "grad_norm": 0.8515080213546753, + "learning_rate": 2.317886666666667e-05, + "loss": 1.47446044921875, + "step": 402500 + }, + { + "epoch": 53.68, + "grad_norm": 0.8341559171676636, + "learning_rate": 2.31722e-05, + "loss": 1.4706192016601562, + "step": 402600 + }, + { + "epoch": 53.693333333333335, + "grad_norm": 0.8234730362892151, + "learning_rate": 2.3165533333333334e-05, + "loss": 1.4750930786132812, + "step": 402700 + }, + { + "epoch": 53.70666666666666, + "grad_norm": 0.854006290435791, + "learning_rate": 2.3158866666666666e-05, + "loss": 1.4691725158691407, + "step": 402800 + }, + { + "epoch": 53.72, + "grad_norm": 0.871201753616333, + "learning_rate": 2.3152266666666665e-05, + "loss": 1.4737733459472657, + "step": 402900 + }, + { + "epoch": 53.733333333333334, + "grad_norm": 0.8627591729164124, + "learning_rate": 2.31456e-05, + "loss": 1.4719656372070313, + "step": 403000 + }, + { + "epoch": 53.74666666666667, + "grad_norm": 0.937736988067627, + "learning_rate": 2.3138933333333333e-05, + "loss": 1.4713555908203124, + "step": 403100 + }, + { + "epoch": 53.76, + "grad_norm": 0.8441616892814636, + "learning_rate": 2.313226666666667e-05, + "loss": 1.4788174438476562, + "step": 403200 + }, + { + "epoch": 53.77333333333333, + "grad_norm": 0.8520199060440063, + "learning_rate": 2.31256e-05, + "loss": 1.4727986145019532, + "step": 403300 + }, + { + "epoch": 53.78666666666667, + "grad_norm": 0.9087309837341309, + "learning_rate": 2.3118933333333333e-05, + "loss": 1.4800141906738282, + "step": 403400 + }, + { + "epoch": 53.8, + "grad_norm": 0.8902503252029419, + "learning_rate": 2.311226666666667e-05, + "loss": 1.4767436218261718, + "step": 403500 + }, + { + "epoch": 53.81333333333333, + "grad_norm": 0.8224707245826721, + "learning_rate": 2.31056e-05, + "loss": 1.4753680419921875, + "step": 403600 + }, + { + "epoch": 53.82666666666667, + "grad_norm": 0.8903453946113586, + "learning_rate": 2.3098933333333333e-05, + "loss": 1.478042449951172, + "step": 403700 + }, + { + "epoch": 53.84, + "grad_norm": 0.8610987663269043, + "learning_rate": 2.309226666666667e-05, + "loss": 1.4786669921875, + "step": 403800 + }, + { + "epoch": 53.85333333333333, + "grad_norm": 0.8663672804832458, + "learning_rate": 2.30856e-05, + "loss": 1.4798565673828126, + "step": 403900 + }, + { + "epoch": 53.86666666666667, + "grad_norm": 0.8928523659706116, + "learning_rate": 2.3078933333333337e-05, + "loss": 1.476539306640625, + "step": 404000 + }, + { + "epoch": 53.88, + "grad_norm": 0.8405497670173645, + "learning_rate": 2.3072266666666666e-05, + "loss": 1.4814393615722656, + "step": 404100 + }, + { + "epoch": 53.89333333333333, + "grad_norm": 0.9027117490768433, + "learning_rate": 2.30656e-05, + "loss": 1.48431884765625, + "step": 404200 + }, + { + "epoch": 53.906666666666666, + "grad_norm": 0.8880442380905151, + "learning_rate": 2.3058933333333334e-05, + "loss": 1.4846881103515626, + "step": 404300 + }, + { + "epoch": 53.92, + "grad_norm": 0.8744670152664185, + "learning_rate": 2.3052266666666666e-05, + "loss": 1.48605224609375, + "step": 404400 + }, + { + "epoch": 53.93333333333333, + "grad_norm": 0.9039588570594788, + "learning_rate": 2.3045600000000002e-05, + "loss": 1.483401336669922, + "step": 404500 + }, + { + "epoch": 53.946666666666665, + "grad_norm": 0.8488764762878418, + "learning_rate": 2.3038933333333334e-05, + "loss": 1.4856008911132812, + "step": 404600 + }, + { + "epoch": 53.96, + "grad_norm": 0.8746914267539978, + "learning_rate": 2.303226666666667e-05, + "loss": 1.4808277893066406, + "step": 404700 + }, + { + "epoch": 53.973333333333336, + "grad_norm": 0.859261691570282, + "learning_rate": 2.30256e-05, + "loss": 1.481783447265625, + "step": 404800 + }, + { + "epoch": 53.986666666666665, + "grad_norm": 0.8789514899253845, + "learning_rate": 2.3019e-05, + "loss": 1.4835377502441407, + "step": 404900 + }, + { + "epoch": 54.0, + "grad_norm": 0.850490927696228, + "learning_rate": 2.3012333333333337e-05, + "loss": 1.4867596435546875, + "step": 405000 + }, + { + "epoch": 54.013333333333335, + "grad_norm": 0.8333851099014282, + "learning_rate": 2.3005666666666666e-05, + "loss": 1.4200978088378906, + "step": 405100 + }, + { + "epoch": 54.026666666666664, + "grad_norm": 0.8395662903785706, + "learning_rate": 2.2999e-05, + "loss": 1.4196142578125, + "step": 405200 + }, + { + "epoch": 54.04, + "grad_norm": 0.8212039470672607, + "learning_rate": 2.2992333333333333e-05, + "loss": 1.425306854248047, + "step": 405300 + }, + { + "epoch": 54.053333333333335, + "grad_norm": 0.7914276123046875, + "learning_rate": 2.2985666666666666e-05, + "loss": 1.4204986572265625, + "step": 405400 + }, + { + "epoch": 54.06666666666667, + "grad_norm": 0.8050218820571899, + "learning_rate": 2.2979e-05, + "loss": 1.4295758056640624, + "step": 405500 + }, + { + "epoch": 54.08, + "grad_norm": 0.8524725437164307, + "learning_rate": 2.2972333333333334e-05, + "loss": 1.4244723510742188, + "step": 405600 + }, + { + "epoch": 54.093333333333334, + "grad_norm": 0.812785804271698, + "learning_rate": 2.296566666666667e-05, + "loss": 1.4250279235839844, + "step": 405700 + }, + { + "epoch": 54.10666666666667, + "grad_norm": 0.8275474905967712, + "learning_rate": 2.2959e-05, + "loss": 1.430595703125, + "step": 405800 + }, + { + "epoch": 54.12, + "grad_norm": 0.8649910688400269, + "learning_rate": 2.2952333333333334e-05, + "loss": 1.431238250732422, + "step": 405900 + }, + { + "epoch": 54.13333333333333, + "grad_norm": 0.8428074717521667, + "learning_rate": 2.294566666666667e-05, + "loss": 1.4303498840332032, + "step": 406000 + }, + { + "epoch": 54.14666666666667, + "grad_norm": 0.8515647649765015, + "learning_rate": 2.2939000000000002e-05, + "loss": 1.4309127807617188, + "step": 406100 + }, + { + "epoch": 54.16, + "grad_norm": 0.8191271424293518, + "learning_rate": 2.2932333333333334e-05, + "loss": 1.4284707641601562, + "step": 406200 + }, + { + "epoch": 54.17333333333333, + "grad_norm": 0.869966447353363, + "learning_rate": 2.2925666666666666e-05, + "loss": 1.4276429748535155, + "step": 406300 + }, + { + "epoch": 54.18666666666667, + "grad_norm": 0.8617979288101196, + "learning_rate": 2.2919000000000002e-05, + "loss": 1.4300892639160157, + "step": 406400 + }, + { + "epoch": 54.2, + "grad_norm": 0.8274814486503601, + "learning_rate": 2.2912333333333334e-05, + "loss": 1.43626708984375, + "step": 406500 + }, + { + "epoch": 54.21333333333333, + "grad_norm": 0.8476601243019104, + "learning_rate": 2.2905666666666667e-05, + "loss": 1.43748046875, + "step": 406600 + }, + { + "epoch": 54.22666666666667, + "grad_norm": 0.8396388292312622, + "learning_rate": 2.2899000000000002e-05, + "loss": 1.4325535583496094, + "step": 406700 + }, + { + "epoch": 54.24, + "grad_norm": 0.8823912143707275, + "learning_rate": 2.2892333333333334e-05, + "loss": 1.4390623474121094, + "step": 406800 + }, + { + "epoch": 54.25333333333333, + "grad_norm": 0.8651164770126343, + "learning_rate": 2.2885733333333334e-05, + "loss": 1.434818878173828, + "step": 406900 + }, + { + "epoch": 54.266666666666666, + "grad_norm": 0.8942626714706421, + "learning_rate": 2.287906666666667e-05, + "loss": 1.4403004455566406, + "step": 407000 + }, + { + "epoch": 54.28, + "grad_norm": 0.81056809425354, + "learning_rate": 2.28724e-05, + "loss": 1.437251739501953, + "step": 407100 + }, + { + "epoch": 54.29333333333334, + "grad_norm": 0.8536822199821472, + "learning_rate": 2.2865733333333334e-05, + "loss": 1.4415220642089843, + "step": 407200 + }, + { + "epoch": 54.306666666666665, + "grad_norm": 0.850678026676178, + "learning_rate": 2.2859066666666666e-05, + "loss": 1.4421534729003906, + "step": 407300 + }, + { + "epoch": 54.32, + "grad_norm": 0.8688512444496155, + "learning_rate": 2.28524e-05, + "loss": 1.4458406066894531, + "step": 407400 + }, + { + "epoch": 54.333333333333336, + "grad_norm": 0.8030053973197937, + "learning_rate": 2.2845733333333337e-05, + "loss": 1.4411915588378905, + "step": 407500 + }, + { + "epoch": 54.346666666666664, + "grad_norm": 0.8313712477684021, + "learning_rate": 2.2839066666666666e-05, + "loss": 1.4449412536621093, + "step": 407600 + }, + { + "epoch": 54.36, + "grad_norm": 0.8125160932540894, + "learning_rate": 2.2832400000000002e-05, + "loss": 1.4425570678710937, + "step": 407700 + }, + { + "epoch": 54.373333333333335, + "grad_norm": 0.8480263352394104, + "learning_rate": 2.2825733333333334e-05, + "loss": 1.4434786987304689, + "step": 407800 + }, + { + "epoch": 54.38666666666666, + "grad_norm": 0.8349584341049194, + "learning_rate": 2.281906666666667e-05, + "loss": 1.4428903198242187, + "step": 407900 + }, + { + "epoch": 54.4, + "grad_norm": 0.8668252229690552, + "learning_rate": 2.2812400000000002e-05, + "loss": 1.4503041076660157, + "step": 408000 + }, + { + "epoch": 54.413333333333334, + "grad_norm": 0.8634394407272339, + "learning_rate": 2.2805733333333334e-05, + "loss": 1.450373992919922, + "step": 408100 + }, + { + "epoch": 54.42666666666667, + "grad_norm": 0.8869138956069946, + "learning_rate": 2.279906666666667e-05, + "loss": 1.4448956298828124, + "step": 408200 + }, + { + "epoch": 54.44, + "grad_norm": 0.8381974697113037, + "learning_rate": 2.27924e-05, + "loss": 1.4506912231445312, + "step": 408300 + }, + { + "epoch": 54.45333333333333, + "grad_norm": 0.8984852433204651, + "learning_rate": 2.2785733333333334e-05, + "loss": 1.4506108093261718, + "step": 408400 + }, + { + "epoch": 54.46666666666667, + "grad_norm": 0.8341385126113892, + "learning_rate": 2.2779066666666667e-05, + "loss": 1.4481794738769531, + "step": 408500 + }, + { + "epoch": 54.48, + "grad_norm": 0.8450107574462891, + "learning_rate": 2.2772400000000002e-05, + "loss": 1.452357635498047, + "step": 408600 + }, + { + "epoch": 54.49333333333333, + "grad_norm": 0.8467490077018738, + "learning_rate": 2.2765733333333335e-05, + "loss": 1.4530352783203124, + "step": 408700 + }, + { + "epoch": 54.50666666666667, + "grad_norm": 0.8854357004165649, + "learning_rate": 2.2759066666666667e-05, + "loss": 1.4446238708496093, + "step": 408800 + }, + { + "epoch": 54.52, + "grad_norm": 0.8822206258773804, + "learning_rate": 2.2752466666666666e-05, + "loss": 1.4520494079589843, + "step": 408900 + }, + { + "epoch": 54.53333333333333, + "grad_norm": 0.8779937028884888, + "learning_rate": 2.27458e-05, + "loss": 1.4530328369140626, + "step": 409000 + }, + { + "epoch": 54.54666666666667, + "grad_norm": 0.8283098340034485, + "learning_rate": 2.2739133333333334e-05, + "loss": 1.452464599609375, + "step": 409100 + }, + { + "epoch": 54.56, + "grad_norm": 0.9348580837249756, + "learning_rate": 2.273246666666667e-05, + "loss": 1.4534254455566407, + "step": 409200 + }, + { + "epoch": 54.57333333333333, + "grad_norm": 0.8854987621307373, + "learning_rate": 2.27258e-05, + "loss": 1.4535916137695313, + "step": 409300 + }, + { + "epoch": 54.586666666666666, + "grad_norm": 0.9117794632911682, + "learning_rate": 2.2719133333333334e-05, + "loss": 1.457483367919922, + "step": 409400 + }, + { + "epoch": 54.6, + "grad_norm": 0.8725807070732117, + "learning_rate": 2.2712466666666666e-05, + "loss": 1.4577378845214843, + "step": 409500 + }, + { + "epoch": 54.61333333333333, + "grad_norm": 0.9138243198394775, + "learning_rate": 2.2705800000000002e-05, + "loss": 1.4621884155273437, + "step": 409600 + }, + { + "epoch": 54.626666666666665, + "grad_norm": 0.8634496927261353, + "learning_rate": 2.2699133333333334e-05, + "loss": 1.4550845336914062, + "step": 409700 + }, + { + "epoch": 54.64, + "grad_norm": 0.8755178451538086, + "learning_rate": 2.2692466666666667e-05, + "loss": 1.45973388671875, + "step": 409800 + }, + { + "epoch": 54.653333333333336, + "grad_norm": 0.8733647465705872, + "learning_rate": 2.2685800000000002e-05, + "loss": 1.4567936706542968, + "step": 409900 + }, + { + "epoch": 54.666666666666664, + "grad_norm": 0.8817700147628784, + "learning_rate": 2.2679133333333335e-05, + "loss": 1.4601559448242187, + "step": 410000 + }, + { + "epoch": 54.68, + "grad_norm": 0.8758354187011719, + "learning_rate": 2.2672466666666667e-05, + "loss": 1.46127685546875, + "step": 410100 + }, + { + "epoch": 54.693333333333335, + "grad_norm": 0.8473187685012817, + "learning_rate": 2.2665800000000002e-05, + "loss": 1.4609004211425782, + "step": 410200 + }, + { + "epoch": 54.70666666666666, + "grad_norm": 0.8869526386260986, + "learning_rate": 2.2659133333333335e-05, + "loss": 1.4645802307128906, + "step": 410300 + }, + { + "epoch": 54.72, + "grad_norm": 0.8255419731140137, + "learning_rate": 2.265246666666667e-05, + "loss": 1.46389892578125, + "step": 410400 + }, + { + "epoch": 54.733333333333334, + "grad_norm": 0.831465482711792, + "learning_rate": 2.26458e-05, + "loss": 1.463885498046875, + "step": 410500 + }, + { + "epoch": 54.74666666666667, + "grad_norm": 0.9016580581665039, + "learning_rate": 2.2639133333333335e-05, + "loss": 1.4642086791992188, + "step": 410600 + }, + { + "epoch": 54.76, + "grad_norm": 0.8602574467658997, + "learning_rate": 2.2632466666666667e-05, + "loss": 1.4626669311523437, + "step": 410700 + }, + { + "epoch": 54.77333333333333, + "grad_norm": 0.8852930665016174, + "learning_rate": 2.26258e-05, + "loss": 1.467047882080078, + "step": 410800 + }, + { + "epoch": 54.78666666666667, + "grad_norm": 0.8360097408294678, + "learning_rate": 2.2619133333333335e-05, + "loss": 1.4667416381835938, + "step": 410900 + }, + { + "epoch": 54.8, + "grad_norm": 0.8857517242431641, + "learning_rate": 2.2612533333333334e-05, + "loss": 1.46333740234375, + "step": 411000 + }, + { + "epoch": 54.81333333333333, + "grad_norm": 0.8212206363677979, + "learning_rate": 2.2605866666666666e-05, + "loss": 1.467716827392578, + "step": 411100 + }, + { + "epoch": 54.82666666666667, + "grad_norm": 0.8455966711044312, + "learning_rate": 2.2599200000000002e-05, + "loss": 1.4688453674316406, + "step": 411200 + }, + { + "epoch": 54.84, + "grad_norm": 0.8679726719856262, + "learning_rate": 2.2592533333333334e-05, + "loss": 1.4663377380371094, + "step": 411300 + }, + { + "epoch": 54.85333333333333, + "grad_norm": 0.8671688437461853, + "learning_rate": 2.258586666666667e-05, + "loss": 1.4694053649902343, + "step": 411400 + }, + { + "epoch": 54.86666666666667, + "grad_norm": 0.8496808409690857, + "learning_rate": 2.25792e-05, + "loss": 1.46614013671875, + "step": 411500 + }, + { + "epoch": 54.88, + "grad_norm": 0.8471501469612122, + "learning_rate": 2.2572533333333335e-05, + "loss": 1.474624786376953, + "step": 411600 + }, + { + "epoch": 54.89333333333333, + "grad_norm": 0.8803544640541077, + "learning_rate": 2.2565866666666667e-05, + "loss": 1.4705052185058594, + "step": 411700 + }, + { + "epoch": 54.906666666666666, + "grad_norm": 0.9258813858032227, + "learning_rate": 2.25592e-05, + "loss": 1.4725639343261718, + "step": 411800 + }, + { + "epoch": 54.92, + "grad_norm": 0.8967903852462769, + "learning_rate": 2.2552533333333335e-05, + "loss": 1.4728996276855468, + "step": 411900 + }, + { + "epoch": 54.93333333333333, + "grad_norm": 0.8787213563919067, + "learning_rate": 2.2545866666666667e-05, + "loss": 1.4686712646484374, + "step": 412000 + }, + { + "epoch": 54.946666666666665, + "grad_norm": 0.8793955445289612, + "learning_rate": 2.2539200000000003e-05, + "loss": 1.4694187927246094, + "step": 412100 + }, + { + "epoch": 54.96, + "grad_norm": 0.8531497120857239, + "learning_rate": 2.2532533333333335e-05, + "loss": 1.4769473266601563, + "step": 412200 + }, + { + "epoch": 54.973333333333336, + "grad_norm": 0.8888368010520935, + "learning_rate": 2.2525866666666667e-05, + "loss": 1.4720077514648438, + "step": 412300 + }, + { + "epoch": 54.986666666666665, + "grad_norm": 0.893952488899231, + "learning_rate": 2.2519200000000003e-05, + "loss": 1.470653076171875, + "step": 412400 + }, + { + "epoch": 55.0, + "grad_norm": 0.8932615518569946, + "learning_rate": 2.2512533333333335e-05, + "loss": 1.4741424560546874, + "step": 412500 + }, + { + "epoch": 55.013333333333335, + "grad_norm": 0.8639925718307495, + "learning_rate": 2.2505866666666667e-05, + "loss": 1.4064114379882813, + "step": 412600 + }, + { + "epoch": 55.026666666666664, + "grad_norm": 0.8224576711654663, + "learning_rate": 2.24992e-05, + "loss": 1.412123260498047, + "step": 412700 + }, + { + "epoch": 55.04, + "grad_norm": 0.8823965191841125, + "learning_rate": 2.2492533333333335e-05, + "loss": 1.4082809448242188, + "step": 412800 + }, + { + "epoch": 55.053333333333335, + "grad_norm": 0.860645055770874, + "learning_rate": 2.2485866666666668e-05, + "loss": 1.4148016357421875, + "step": 412900 + }, + { + "epoch": 55.06666666666667, + "grad_norm": 0.876783549785614, + "learning_rate": 2.2479266666666667e-05, + "loss": 1.4186094665527345, + "step": 413000 + }, + { + "epoch": 55.08, + "grad_norm": 0.857022762298584, + "learning_rate": 2.2472600000000002e-05, + "loss": 1.4122817993164063, + "step": 413100 + }, + { + "epoch": 55.093333333333334, + "grad_norm": 0.8272480368614197, + "learning_rate": 2.2465933333333335e-05, + "loss": 1.4125518798828125, + "step": 413200 + }, + { + "epoch": 55.10666666666667, + "grad_norm": 0.8472641110420227, + "learning_rate": 2.2459266666666667e-05, + "loss": 1.412246551513672, + "step": 413300 + }, + { + "epoch": 55.12, + "grad_norm": 0.9146363139152527, + "learning_rate": 2.2452600000000003e-05, + "loss": 1.4172994995117187, + "step": 413400 + }, + { + "epoch": 55.13333333333333, + "grad_norm": 0.8248025178909302, + "learning_rate": 2.2445933333333335e-05, + "loss": 1.4187237548828124, + "step": 413500 + }, + { + "epoch": 55.14666666666667, + "grad_norm": 0.874271810054779, + "learning_rate": 2.2439266666666667e-05, + "loss": 1.41408935546875, + "step": 413600 + }, + { + "epoch": 55.16, + "grad_norm": 0.8196364641189575, + "learning_rate": 2.24326e-05, + "loss": 1.4154962158203126, + "step": 413700 + }, + { + "epoch": 55.17333333333333, + "grad_norm": 0.8373938798904419, + "learning_rate": 2.2425933333333335e-05, + "loss": 1.4177433776855468, + "step": 413800 + }, + { + "epoch": 55.18666666666667, + "grad_norm": 0.80357426404953, + "learning_rate": 2.241926666666667e-05, + "loss": 1.4225418090820312, + "step": 413900 + }, + { + "epoch": 55.2, + "grad_norm": 0.7960191965103149, + "learning_rate": 2.24126e-05, + "loss": 1.4238473510742187, + "step": 414000 + }, + { + "epoch": 55.21333333333333, + "grad_norm": 0.8417536020278931, + "learning_rate": 2.2405933333333335e-05, + "loss": 1.4218621826171876, + "step": 414100 + }, + { + "epoch": 55.22666666666667, + "grad_norm": 0.8823829889297485, + "learning_rate": 2.2399266666666667e-05, + "loss": 1.4251284790039063, + "step": 414200 + }, + { + "epoch": 55.24, + "grad_norm": 0.8325697183609009, + "learning_rate": 2.23926e-05, + "loss": 1.4224729919433594, + "step": 414300 + }, + { + "epoch": 55.25333333333333, + "grad_norm": 0.8879687786102295, + "learning_rate": 2.2385933333333335e-05, + "loss": 1.4293856811523438, + "step": 414400 + }, + { + "epoch": 55.266666666666666, + "grad_norm": 0.8998637199401855, + "learning_rate": 2.2379266666666668e-05, + "loss": 1.4206253051757813, + "step": 414500 + }, + { + "epoch": 55.28, + "grad_norm": 0.8645532727241516, + "learning_rate": 2.2372600000000003e-05, + "loss": 1.4249339294433594, + "step": 414600 + }, + { + "epoch": 55.29333333333334, + "grad_norm": 0.9286399483680725, + "learning_rate": 2.2365933333333332e-05, + "loss": 1.4289715576171875, + "step": 414700 + }, + { + "epoch": 55.306666666666665, + "grad_norm": 0.9058271646499634, + "learning_rate": 2.2359266666666668e-05, + "loss": 1.4306143188476563, + "step": 414800 + }, + { + "epoch": 55.32, + "grad_norm": 0.8806909918785095, + "learning_rate": 2.23526e-05, + "loss": 1.4301678466796874, + "step": 414900 + }, + { + "epoch": 55.333333333333336, + "grad_norm": 0.8449000120162964, + "learning_rate": 2.2345933333333336e-05, + "loss": 1.4272940063476562, + "step": 415000 + }, + { + "epoch": 55.346666666666664, + "grad_norm": 0.8805742263793945, + "learning_rate": 2.2339333333333335e-05, + "loss": 1.4354100036621094, + "step": 415100 + }, + { + "epoch": 55.36, + "grad_norm": 0.8670299649238586, + "learning_rate": 2.2332666666666667e-05, + "loss": 1.438927001953125, + "step": 415200 + }, + { + "epoch": 55.373333333333335, + "grad_norm": 0.8531759977340698, + "learning_rate": 2.2326e-05, + "loss": 1.4368338012695312, + "step": 415300 + }, + { + "epoch": 55.38666666666666, + "grad_norm": 0.8793957829475403, + "learning_rate": 2.2319333333333335e-05, + "loss": 1.4326312255859375, + "step": 415400 + }, + { + "epoch": 55.4, + "grad_norm": 0.8549216389656067, + "learning_rate": 2.2312666666666667e-05, + "loss": 1.4309808349609374, + "step": 415500 + }, + { + "epoch": 55.413333333333334, + "grad_norm": 0.8728709816932678, + "learning_rate": 2.2306000000000003e-05, + "loss": 1.4356973266601563, + "step": 415600 + }, + { + "epoch": 55.42666666666667, + "grad_norm": 0.8787753582000732, + "learning_rate": 2.2299333333333332e-05, + "loss": 1.435236053466797, + "step": 415700 + }, + { + "epoch": 55.44, + "grad_norm": 0.8510148525238037, + "learning_rate": 2.2292666666666667e-05, + "loss": 1.4368995666503905, + "step": 415800 + }, + { + "epoch": 55.45333333333333, + "grad_norm": 0.8644002079963684, + "learning_rate": 2.2286e-05, + "loss": 1.439784698486328, + "step": 415900 + }, + { + "epoch": 55.46666666666667, + "grad_norm": 0.8767049908638, + "learning_rate": 2.2279333333333335e-05, + "loss": 1.4385952758789062, + "step": 416000 + }, + { + "epoch": 55.48, + "grad_norm": 0.9412136673927307, + "learning_rate": 2.2272666666666668e-05, + "loss": 1.4417005920410155, + "step": 416100 + }, + { + "epoch": 55.49333333333333, + "grad_norm": 0.8540670275688171, + "learning_rate": 2.2266e-05, + "loss": 1.4380416870117188, + "step": 416200 + }, + { + "epoch": 55.50666666666667, + "grad_norm": 0.8778327107429504, + "learning_rate": 2.2259333333333336e-05, + "loss": 1.4395338439941405, + "step": 416300 + }, + { + "epoch": 55.52, + "grad_norm": 0.8598795533180237, + "learning_rate": 2.2252666666666668e-05, + "loss": 1.4399174499511718, + "step": 416400 + }, + { + "epoch": 55.53333333333333, + "grad_norm": 0.8614322543144226, + "learning_rate": 2.2246e-05, + "loss": 1.4443963623046876, + "step": 416500 + }, + { + "epoch": 55.54666666666667, + "grad_norm": 0.8454569578170776, + "learning_rate": 2.2239333333333336e-05, + "loss": 1.445623321533203, + "step": 416600 + }, + { + "epoch": 55.56, + "grad_norm": 0.8974414467811584, + "learning_rate": 2.2232666666666668e-05, + "loss": 1.4426679992675782, + "step": 416700 + }, + { + "epoch": 55.57333333333333, + "grad_norm": 0.8307322859764099, + "learning_rate": 2.2226000000000004e-05, + "loss": 1.4424739074707031, + "step": 416800 + }, + { + "epoch": 55.586666666666666, + "grad_norm": 0.8424813747406006, + "learning_rate": 2.2219333333333333e-05, + "loss": 1.4472550964355468, + "step": 416900 + }, + { + "epoch": 55.6, + "grad_norm": 0.8699893355369568, + "learning_rate": 2.2212666666666668e-05, + "loss": 1.437730712890625, + "step": 417000 + }, + { + "epoch": 55.61333333333333, + "grad_norm": 0.8717418313026428, + "learning_rate": 2.2206066666666667e-05, + "loss": 1.4472259521484374, + "step": 417100 + }, + { + "epoch": 55.626666666666665, + "grad_norm": 0.868630051612854, + "learning_rate": 2.21994e-05, + "loss": 1.4468307495117188, + "step": 417200 + }, + { + "epoch": 55.64, + "grad_norm": 0.9016746878623962, + "learning_rate": 2.2192733333333335e-05, + "loss": 1.4494607543945313, + "step": 417300 + }, + { + "epoch": 55.653333333333336, + "grad_norm": 0.8572381138801575, + "learning_rate": 2.2186066666666668e-05, + "loss": 1.4463278198242187, + "step": 417400 + }, + { + "epoch": 55.666666666666664, + "grad_norm": 0.9099103808403015, + "learning_rate": 2.21794e-05, + "loss": 1.4500961303710938, + "step": 417500 + }, + { + "epoch": 55.68, + "grad_norm": 0.9122660160064697, + "learning_rate": 2.2172733333333335e-05, + "loss": 1.4482554626464843, + "step": 417600 + }, + { + "epoch": 55.693333333333335, + "grad_norm": 0.8462883830070496, + "learning_rate": 2.2166066666666668e-05, + "loss": 1.447459716796875, + "step": 417700 + }, + { + "epoch": 55.70666666666666, + "grad_norm": 0.8462685942649841, + "learning_rate": 2.2159400000000003e-05, + "loss": 1.450800323486328, + "step": 417800 + }, + { + "epoch": 55.72, + "grad_norm": 0.8912447094917297, + "learning_rate": 2.2152733333333332e-05, + "loss": 1.4528042602539062, + "step": 417900 + }, + { + "epoch": 55.733333333333334, + "grad_norm": 0.8451516628265381, + "learning_rate": 2.2146066666666668e-05, + "loss": 1.4554351806640624, + "step": 418000 + }, + { + "epoch": 55.74666666666667, + "grad_norm": 0.8609992265701294, + "learning_rate": 2.21394e-05, + "loss": 1.4512791442871094, + "step": 418100 + }, + { + "epoch": 55.76, + "grad_norm": 0.8943572640419006, + "learning_rate": 2.2132733333333332e-05, + "loss": 1.4537530517578126, + "step": 418200 + }, + { + "epoch": 55.77333333333333, + "grad_norm": 0.8712022304534912, + "learning_rate": 2.2126066666666668e-05, + "loss": 1.4538926696777343, + "step": 418300 + }, + { + "epoch": 55.78666666666667, + "grad_norm": 0.9167302846908569, + "learning_rate": 2.21194e-05, + "loss": 1.457858123779297, + "step": 418400 + }, + { + "epoch": 55.8, + "grad_norm": 0.8773967623710632, + "learning_rate": 2.2112733333333336e-05, + "loss": 1.4523738098144532, + "step": 418500 + }, + { + "epoch": 55.81333333333333, + "grad_norm": 0.9126933217048645, + "learning_rate": 2.2106066666666668e-05, + "loss": 1.4570416259765624, + "step": 418600 + }, + { + "epoch": 55.82666666666667, + "grad_norm": 0.874134361743927, + "learning_rate": 2.20994e-05, + "loss": 1.456673583984375, + "step": 418700 + }, + { + "epoch": 55.84, + "grad_norm": 0.8987679481506348, + "learning_rate": 2.2092733333333336e-05, + "loss": 1.4605398559570313, + "step": 418800 + }, + { + "epoch": 55.85333333333333, + "grad_norm": 0.875527024269104, + "learning_rate": 2.208606666666667e-05, + "loss": 1.4604426574707032, + "step": 418900 + }, + { + "epoch": 55.86666666666667, + "grad_norm": 0.8008150458335876, + "learning_rate": 2.20794e-05, + "loss": 1.4571929931640626, + "step": 419000 + }, + { + "epoch": 55.88, + "grad_norm": 0.8355134129524231, + "learning_rate": 2.2072800000000003e-05, + "loss": 1.455338134765625, + "step": 419100 + }, + { + "epoch": 55.89333333333333, + "grad_norm": 0.8764241933822632, + "learning_rate": 2.2066133333333332e-05, + "loss": 1.454462432861328, + "step": 419200 + }, + { + "epoch": 55.906666666666666, + "grad_norm": 0.9243341088294983, + "learning_rate": 2.2059466666666668e-05, + "loss": 1.4607615661621094, + "step": 419300 + }, + { + "epoch": 55.92, + "grad_norm": 0.9032407402992249, + "learning_rate": 2.20528e-05, + "loss": 1.4592213439941406, + "step": 419400 + }, + { + "epoch": 55.93333333333333, + "grad_norm": 0.8600060939788818, + "learning_rate": 2.2046133333333336e-05, + "loss": 1.4632615661621093, + "step": 419500 + }, + { + "epoch": 55.946666666666665, + "grad_norm": 0.8559837937355042, + "learning_rate": 2.2039466666666668e-05, + "loss": 1.4599595642089844, + "step": 419600 + }, + { + "epoch": 55.96, + "grad_norm": 0.8894732594490051, + "learning_rate": 2.20328e-05, + "loss": 1.461082763671875, + "step": 419700 + }, + { + "epoch": 55.973333333333336, + "grad_norm": 0.8696638345718384, + "learning_rate": 2.2026133333333336e-05, + "loss": 1.4608134460449218, + "step": 419800 + }, + { + "epoch": 55.986666666666665, + "grad_norm": 0.9014117121696472, + "learning_rate": 2.2019466666666668e-05, + "loss": 1.4612680053710938, + "step": 419900 + }, + { + "epoch": 56.0, + "grad_norm": 0.934181272983551, + "learning_rate": 2.20128e-05, + "loss": 1.4615724182128906, + "step": 420000 + }, + { + "epoch": 56.013333333333335, + "grad_norm": 0.8485944867134094, + "learning_rate": 2.2006133333333333e-05, + "loss": 1.4035435485839844, + "step": 420100 + }, + { + "epoch": 56.026666666666664, + "grad_norm": 0.8273961544036865, + "learning_rate": 2.199946666666667e-05, + "loss": 1.4005302429199218, + "step": 420200 + }, + { + "epoch": 56.04, + "grad_norm": 0.8239974975585938, + "learning_rate": 2.1992800000000004e-05, + "loss": 1.3968911743164063, + "step": 420300 + }, + { + "epoch": 56.053333333333335, + "grad_norm": 0.8783063292503357, + "learning_rate": 2.1986133333333333e-05, + "loss": 1.3976206970214844, + "step": 420400 + }, + { + "epoch": 56.06666666666667, + "grad_norm": 0.8536005616188049, + "learning_rate": 2.197946666666667e-05, + "loss": 1.4026289367675782, + "step": 420500 + }, + { + "epoch": 56.08, + "grad_norm": 0.8284283876419067, + "learning_rate": 2.19728e-05, + "loss": 1.4048745727539063, + "step": 420600 + }, + { + "epoch": 56.093333333333334, + "grad_norm": 0.8265491724014282, + "learning_rate": 2.1966133333333333e-05, + "loss": 1.4086897277832031, + "step": 420700 + }, + { + "epoch": 56.10666666666667, + "grad_norm": 0.8136721849441528, + "learning_rate": 2.195946666666667e-05, + "loss": 1.4020260620117186, + "step": 420800 + }, + { + "epoch": 56.12, + "grad_norm": 0.8343340754508972, + "learning_rate": 2.19528e-05, + "loss": 1.4086201477050782, + "step": 420900 + }, + { + "epoch": 56.13333333333333, + "grad_norm": 0.8710994720458984, + "learning_rate": 2.1946133333333337e-05, + "loss": 1.407528839111328, + "step": 421000 + }, + { + "epoch": 56.14666666666667, + "grad_norm": 0.8886542916297913, + "learning_rate": 2.1939466666666665e-05, + "loss": 1.4091169738769531, + "step": 421100 + }, + { + "epoch": 56.16, + "grad_norm": 0.8041443228721619, + "learning_rate": 2.1932866666666668e-05, + "loss": 1.410533447265625, + "step": 421200 + }, + { + "epoch": 56.17333333333333, + "grad_norm": 0.8319317102432251, + "learning_rate": 2.1926200000000004e-05, + "loss": 1.4141780090332032, + "step": 421300 + }, + { + "epoch": 56.18666666666667, + "grad_norm": 0.8654050827026367, + "learning_rate": 2.1919533333333333e-05, + "loss": 1.417386016845703, + "step": 421400 + }, + { + "epoch": 56.2, + "grad_norm": 0.889337420463562, + "learning_rate": 2.1912866666666668e-05, + "loss": 1.411129150390625, + "step": 421500 + }, + { + "epoch": 56.21333333333333, + "grad_norm": 0.8444649577140808, + "learning_rate": 2.19062e-05, + "loss": 1.4155207824707032, + "step": 421600 + }, + { + "epoch": 56.22666666666667, + "grad_norm": 0.861868143081665, + "learning_rate": 2.1899533333333333e-05, + "loss": 1.417073974609375, + "step": 421700 + }, + { + "epoch": 56.24, + "grad_norm": 0.8739286661148071, + "learning_rate": 2.189286666666667e-05, + "loss": 1.4147346496582032, + "step": 421800 + }, + { + "epoch": 56.25333333333333, + "grad_norm": 0.8628485798835754, + "learning_rate": 2.18862e-05, + "loss": 1.416077880859375, + "step": 421900 + }, + { + "epoch": 56.266666666666666, + "grad_norm": 0.8855887055397034, + "learning_rate": 2.1879533333333336e-05, + "loss": 1.4169512939453126, + "step": 422000 + }, + { + "epoch": 56.28, + "grad_norm": 0.8673357963562012, + "learning_rate": 2.1872866666666665e-05, + "loss": 1.4148150634765626, + "step": 422100 + }, + { + "epoch": 56.29333333333334, + "grad_norm": 0.8554036617279053, + "learning_rate": 2.18662e-05, + "loss": 1.420289306640625, + "step": 422200 + }, + { + "epoch": 56.306666666666665, + "grad_norm": 0.8555299639701843, + "learning_rate": 2.1859533333333333e-05, + "loss": 1.4149293518066406, + "step": 422300 + }, + { + "epoch": 56.32, + "grad_norm": 0.9046564102172852, + "learning_rate": 2.185286666666667e-05, + "loss": 1.4149856567382812, + "step": 422400 + }, + { + "epoch": 56.333333333333336, + "grad_norm": 0.8520922660827637, + "learning_rate": 2.18462e-05, + "loss": 1.4218994140625, + "step": 422500 + }, + { + "epoch": 56.346666666666664, + "grad_norm": 0.8806357383728027, + "learning_rate": 2.1839533333333333e-05, + "loss": 1.4222920227050782, + "step": 422600 + }, + { + "epoch": 56.36, + "grad_norm": 0.9276759028434753, + "learning_rate": 2.183286666666667e-05, + "loss": 1.4219160461425782, + "step": 422700 + }, + { + "epoch": 56.373333333333335, + "grad_norm": 0.8782113194465637, + "learning_rate": 2.18262e-05, + "loss": 1.4204927062988282, + "step": 422800 + }, + { + "epoch": 56.38666666666666, + "grad_norm": 0.8631399869918823, + "learning_rate": 2.1819533333333333e-05, + "loss": 1.4249102783203125, + "step": 422900 + }, + { + "epoch": 56.4, + "grad_norm": 0.8936483860015869, + "learning_rate": 2.181286666666667e-05, + "loss": 1.4240966796875, + "step": 423000 + }, + { + "epoch": 56.413333333333334, + "grad_norm": 0.8748154640197754, + "learning_rate": 2.18062e-05, + "loss": 1.4252513122558594, + "step": 423100 + }, + { + "epoch": 56.42666666666667, + "grad_norm": 0.8596419095993042, + "learning_rate": 2.17996e-05, + "loss": 1.4259548950195313, + "step": 423200 + }, + { + "epoch": 56.44, + "grad_norm": 0.8839332461357117, + "learning_rate": 2.1792933333333336e-05, + "loss": 1.4302554321289063, + "step": 423300 + }, + { + "epoch": 56.45333333333333, + "grad_norm": 0.8390047550201416, + "learning_rate": 2.178626666666667e-05, + "loss": 1.4292677307128907, + "step": 423400 + }, + { + "epoch": 56.46666666666667, + "grad_norm": 0.8832520842552185, + "learning_rate": 2.17796e-05, + "loss": 1.426236114501953, + "step": 423500 + }, + { + "epoch": 56.48, + "grad_norm": 0.8132560849189758, + "learning_rate": 2.1772933333333333e-05, + "loss": 1.434789581298828, + "step": 423600 + }, + { + "epoch": 56.49333333333333, + "grad_norm": 0.8635860085487366, + "learning_rate": 2.176626666666667e-05, + "loss": 1.4259471130371093, + "step": 423700 + }, + { + "epoch": 56.50666666666667, + "grad_norm": 0.9170502424240112, + "learning_rate": 2.17596e-05, + "loss": 1.4286590576171876, + "step": 423800 + }, + { + "epoch": 56.52, + "grad_norm": 0.8722943663597107, + "learning_rate": 2.1752933333333333e-05, + "loss": 1.4344573974609376, + "step": 423900 + }, + { + "epoch": 56.53333333333333, + "grad_norm": 0.8727033138275146, + "learning_rate": 2.174626666666667e-05, + "loss": 1.4311439514160156, + "step": 424000 + }, + { + "epoch": 56.54666666666667, + "grad_norm": 0.8507550358772278, + "learning_rate": 2.17396e-05, + "loss": 1.4281155395507812, + "step": 424100 + }, + { + "epoch": 56.56, + "grad_norm": 0.9152675271034241, + "learning_rate": 2.1732933333333337e-05, + "loss": 1.4395048522949219, + "step": 424200 + }, + { + "epoch": 56.57333333333333, + "grad_norm": 0.8492377400398254, + "learning_rate": 2.1726266666666666e-05, + "loss": 1.43418212890625, + "step": 424300 + }, + { + "epoch": 56.586666666666666, + "grad_norm": 0.9120678901672363, + "learning_rate": 2.17196e-05, + "loss": 1.4339697265625, + "step": 424400 + }, + { + "epoch": 56.6, + "grad_norm": 0.9099976420402527, + "learning_rate": 2.1712933333333333e-05, + "loss": 1.4328225708007813, + "step": 424500 + }, + { + "epoch": 56.61333333333333, + "grad_norm": 0.846580445766449, + "learning_rate": 2.1706266666666666e-05, + "loss": 1.4381451416015625, + "step": 424600 + }, + { + "epoch": 56.626666666666665, + "grad_norm": 0.8989025950431824, + "learning_rate": 2.16996e-05, + "loss": 1.4314509582519532, + "step": 424700 + }, + { + "epoch": 56.64, + "grad_norm": 0.9448224306106567, + "learning_rate": 2.1692933333333334e-05, + "loss": 1.438125457763672, + "step": 424800 + }, + { + "epoch": 56.653333333333336, + "grad_norm": 0.8047678470611572, + "learning_rate": 2.168626666666667e-05, + "loss": 1.4364503479003907, + "step": 424900 + }, + { + "epoch": 56.666666666666664, + "grad_norm": 0.8994755148887634, + "learning_rate": 2.1679599999999998e-05, + "loss": 1.4405902099609376, + "step": 425000 + }, + { + "epoch": 56.68, + "grad_norm": 0.8442021608352661, + "learning_rate": 2.1672933333333334e-05, + "loss": 1.4396397399902343, + "step": 425100 + }, + { + "epoch": 56.693333333333335, + "grad_norm": 0.8690568804740906, + "learning_rate": 2.166626666666667e-05, + "loss": 1.443184814453125, + "step": 425200 + }, + { + "epoch": 56.70666666666666, + "grad_norm": 0.861370325088501, + "learning_rate": 2.165966666666667e-05, + "loss": 1.4361355590820313, + "step": 425300 + }, + { + "epoch": 56.72, + "grad_norm": 0.8897193670272827, + "learning_rate": 2.1653e-05, + "loss": 1.4400205993652344, + "step": 425400 + }, + { + "epoch": 56.733333333333334, + "grad_norm": 0.8475616574287415, + "learning_rate": 2.1646333333333337e-05, + "loss": 1.4406410217285157, + "step": 425500 + }, + { + "epoch": 56.74666666666667, + "grad_norm": 0.8466712236404419, + "learning_rate": 2.1639666666666665e-05, + "loss": 1.441578369140625, + "step": 425600 + }, + { + "epoch": 56.76, + "grad_norm": 0.9051734805107117, + "learning_rate": 2.1633e-05, + "loss": 1.4405007934570313, + "step": 425700 + }, + { + "epoch": 56.77333333333333, + "grad_norm": 0.8877379894256592, + "learning_rate": 2.1626333333333333e-05, + "loss": 1.4456788635253905, + "step": 425800 + }, + { + "epoch": 56.78666666666667, + "grad_norm": 0.914776623249054, + "learning_rate": 2.161966666666667e-05, + "loss": 1.4449098205566406, + "step": 425900 + }, + { + "epoch": 56.8, + "grad_norm": 0.8987554311752319, + "learning_rate": 2.1613e-05, + "loss": 1.445513916015625, + "step": 426000 + }, + { + "epoch": 56.81333333333333, + "grad_norm": 0.9004293084144592, + "learning_rate": 2.1606333333333334e-05, + "loss": 1.4431794738769532, + "step": 426100 + }, + { + "epoch": 56.82666666666667, + "grad_norm": 0.8796115517616272, + "learning_rate": 2.159966666666667e-05, + "loss": 1.444052734375, + "step": 426200 + }, + { + "epoch": 56.84, + "grad_norm": 0.8850584030151367, + "learning_rate": 2.1593e-05, + "loss": 1.442793426513672, + "step": 426300 + }, + { + "epoch": 56.85333333333333, + "grad_norm": 0.8874107003211975, + "learning_rate": 2.1586333333333334e-05, + "loss": 1.445687255859375, + "step": 426400 + }, + { + "epoch": 56.86666666666667, + "grad_norm": 0.8388593196868896, + "learning_rate": 2.1579666666666666e-05, + "loss": 1.447087860107422, + "step": 426500 + }, + { + "epoch": 56.88, + "grad_norm": 0.8567925095558167, + "learning_rate": 2.1573e-05, + "loss": 1.4455339050292968, + "step": 426600 + }, + { + "epoch": 56.89333333333333, + "grad_norm": 0.905091404914856, + "learning_rate": 2.1566333333333334e-05, + "loss": 1.4496022033691407, + "step": 426700 + }, + { + "epoch": 56.906666666666666, + "grad_norm": 0.851197361946106, + "learning_rate": 2.1559666666666666e-05, + "loss": 1.4433763122558594, + "step": 426800 + }, + { + "epoch": 56.92, + "grad_norm": 0.9563655257225037, + "learning_rate": 2.1553000000000002e-05, + "loss": 1.445602264404297, + "step": 426900 + }, + { + "epoch": 56.93333333333333, + "grad_norm": 0.8808197379112244, + "learning_rate": 2.1546333333333334e-05, + "loss": 1.4505947875976561, + "step": 427000 + }, + { + "epoch": 56.946666666666665, + "grad_norm": 0.8648757338523865, + "learning_rate": 2.1539666666666666e-05, + "loss": 1.4465037536621095, + "step": 427100 + }, + { + "epoch": 56.96, + "grad_norm": 0.8864550590515137, + "learning_rate": 2.1533000000000002e-05, + "loss": 1.4506777954101562, + "step": 427200 + }, + { + "epoch": 56.973333333333336, + "grad_norm": 0.8874581456184387, + "learning_rate": 2.15264e-05, + "loss": 1.449134063720703, + "step": 427300 + }, + { + "epoch": 56.986666666666665, + "grad_norm": 0.903593897819519, + "learning_rate": 2.1519733333333333e-05, + "loss": 1.4498974609375, + "step": 427400 + }, + { + "epoch": 57.0, + "grad_norm": 0.8335684537887573, + "learning_rate": 2.151306666666667e-05, + "loss": 1.4513101196289062, + "step": 427500 + }, + { + "epoch": 57.013333333333335, + "grad_norm": 0.8453123569488525, + "learning_rate": 2.15064e-05, + "loss": 1.3873635864257812, + "step": 427600 + }, + { + "epoch": 57.026666666666664, + "grad_norm": 0.892532229423523, + "learning_rate": 2.1499733333333337e-05, + "loss": 1.3913172912597656, + "step": 427700 + }, + { + "epoch": 57.04, + "grad_norm": 0.8891882300376892, + "learning_rate": 2.1493066666666666e-05, + "loss": 1.3940931701660155, + "step": 427800 + }, + { + "epoch": 57.053333333333335, + "grad_norm": 0.8671453595161438, + "learning_rate": 2.14864e-05, + "loss": 1.392352294921875, + "step": 427900 + }, + { + "epoch": 57.06666666666667, + "grad_norm": 0.8824362754821777, + "learning_rate": 2.1479733333333334e-05, + "loss": 1.3905747985839845, + "step": 428000 + }, + { + "epoch": 57.08, + "grad_norm": 0.8569581508636475, + "learning_rate": 2.1473066666666666e-05, + "loss": 1.3913356018066407, + "step": 428100 + }, + { + "epoch": 57.093333333333334, + "grad_norm": 0.8542196750640869, + "learning_rate": 2.14664e-05, + "loss": 1.39747314453125, + "step": 428200 + }, + { + "epoch": 57.10666666666667, + "grad_norm": 0.8506782054901123, + "learning_rate": 2.1459733333333334e-05, + "loss": 1.3980393981933594, + "step": 428300 + }, + { + "epoch": 57.12, + "grad_norm": 0.8215917944908142, + "learning_rate": 2.145306666666667e-05, + "loss": 1.3985368347167968, + "step": 428400 + }, + { + "epoch": 57.13333333333333, + "grad_norm": 0.8183411955833435, + "learning_rate": 2.14464e-05, + "loss": 1.3943287658691406, + "step": 428500 + }, + { + "epoch": 57.14666666666667, + "grad_norm": 0.8586587309837341, + "learning_rate": 2.1439733333333334e-05, + "loss": 1.3957505798339844, + "step": 428600 + }, + { + "epoch": 57.16, + "grad_norm": 0.873313307762146, + "learning_rate": 2.1433066666666666e-05, + "loss": 1.3994070434570312, + "step": 428700 + }, + { + "epoch": 57.17333333333333, + "grad_norm": 0.8390573263168335, + "learning_rate": 2.1426400000000002e-05, + "loss": 1.402987060546875, + "step": 428800 + }, + { + "epoch": 57.18666666666667, + "grad_norm": 0.8784012794494629, + "learning_rate": 2.1419733333333334e-05, + "loss": 1.4021636962890625, + "step": 428900 + }, + { + "epoch": 57.2, + "grad_norm": 0.8398882150650024, + "learning_rate": 2.1413066666666667e-05, + "loss": 1.4004843139648437, + "step": 429000 + }, + { + "epoch": 57.21333333333333, + "grad_norm": 0.8533040285110474, + "learning_rate": 2.1406400000000002e-05, + "loss": 1.4055615234375, + "step": 429100 + }, + { + "epoch": 57.22666666666667, + "grad_norm": 0.8388049602508545, + "learning_rate": 2.1399733333333335e-05, + "loss": 1.4073393249511719, + "step": 429200 + }, + { + "epoch": 57.24, + "grad_norm": 0.8552389740943909, + "learning_rate": 2.1393133333333334e-05, + "loss": 1.404532928466797, + "step": 429300 + }, + { + "epoch": 57.25333333333333, + "grad_norm": 0.8817448019981384, + "learning_rate": 2.138646666666667e-05, + "loss": 1.4020608520507813, + "step": 429400 + }, + { + "epoch": 57.266666666666666, + "grad_norm": 0.8578885793685913, + "learning_rate": 2.1379799999999998e-05, + "loss": 1.4063929748535156, + "step": 429500 + }, + { + "epoch": 57.28, + "grad_norm": 0.8610025644302368, + "learning_rate": 2.1373133333333334e-05, + "loss": 1.4068283081054687, + "step": 429600 + }, + { + "epoch": 57.29333333333334, + "grad_norm": 0.9056425094604492, + "learning_rate": 2.136646666666667e-05, + "loss": 1.4069955444335938, + "step": 429700 + }, + { + "epoch": 57.306666666666665, + "grad_norm": 0.8811911344528198, + "learning_rate": 2.1359800000000002e-05, + "loss": 1.4090301513671875, + "step": 429800 + }, + { + "epoch": 57.32, + "grad_norm": 0.8970731496810913, + "learning_rate": 2.1353133333333334e-05, + "loss": 1.41206298828125, + "step": 429900 + }, + { + "epoch": 57.333333333333336, + "grad_norm": 0.8743362426757812, + "learning_rate": 2.1346466666666666e-05, + "loss": 1.4041651916503906, + "step": 430000 + }, + { + "epoch": 57.346666666666664, + "grad_norm": 0.8430378437042236, + "learning_rate": 2.1339800000000002e-05, + "loss": 1.4116816711425781, + "step": 430100 + }, + { + "epoch": 57.36, + "grad_norm": 0.8529326915740967, + "learning_rate": 2.1333133333333334e-05, + "loss": 1.409462890625, + "step": 430200 + }, + { + "epoch": 57.373333333333335, + "grad_norm": 0.8731967210769653, + "learning_rate": 2.1326466666666666e-05, + "loss": 1.4143032836914062, + "step": 430300 + }, + { + "epoch": 57.38666666666666, + "grad_norm": 0.8534825444221497, + "learning_rate": 2.1319800000000002e-05, + "loss": 1.411023406982422, + "step": 430400 + }, + { + "epoch": 57.4, + "grad_norm": 0.8644077777862549, + "learning_rate": 2.1313133333333334e-05, + "loss": 1.4160220336914062, + "step": 430500 + }, + { + "epoch": 57.413333333333334, + "grad_norm": 0.875743567943573, + "learning_rate": 2.130646666666667e-05, + "loss": 1.4175732421875, + "step": 430600 + }, + { + "epoch": 57.42666666666667, + "grad_norm": 0.8708527088165283, + "learning_rate": 2.12998e-05, + "loss": 1.4122679138183594, + "step": 430700 + }, + { + "epoch": 57.44, + "grad_norm": 0.8806803822517395, + "learning_rate": 2.1293133333333335e-05, + "loss": 1.4234275817871094, + "step": 430800 + }, + { + "epoch": 57.45333333333333, + "grad_norm": 0.8835158348083496, + "learning_rate": 2.1286466666666667e-05, + "loss": 1.4142134094238281, + "step": 430900 + }, + { + "epoch": 57.46666666666667, + "grad_norm": 0.8983718752861023, + "learning_rate": 2.12798e-05, + "loss": 1.4219779968261719, + "step": 431000 + }, + { + "epoch": 57.48, + "grad_norm": 0.8711386322975159, + "learning_rate": 2.1273133333333335e-05, + "loss": 1.4237786865234374, + "step": 431100 + }, + { + "epoch": 57.49333333333333, + "grad_norm": 0.8646780848503113, + "learning_rate": 2.1266466666666667e-05, + "loss": 1.4190533447265625, + "step": 431200 + }, + { + "epoch": 57.50666666666667, + "grad_norm": 0.863576352596283, + "learning_rate": 2.1259800000000003e-05, + "loss": 1.4201698303222656, + "step": 431300 + }, + { + "epoch": 57.52, + "grad_norm": 0.8763824105262756, + "learning_rate": 2.1253200000000002e-05, + "loss": 1.4242768859863282, + "step": 431400 + }, + { + "epoch": 57.53333333333333, + "grad_norm": 0.8644374012947083, + "learning_rate": 2.1246533333333334e-05, + "loss": 1.4194601440429688, + "step": 431500 + }, + { + "epoch": 57.54666666666667, + "grad_norm": 0.868061900138855, + "learning_rate": 2.123986666666667e-05, + "loss": 1.4254354858398437, + "step": 431600 + }, + { + "epoch": 57.56, + "grad_norm": 0.8473526239395142, + "learning_rate": 2.1233200000000002e-05, + "loss": 1.4216069030761718, + "step": 431700 + }, + { + "epoch": 57.57333333333333, + "grad_norm": 0.8738334774971008, + "learning_rate": 2.1226533333333334e-05, + "loss": 1.4271109008789062, + "step": 431800 + }, + { + "epoch": 57.586666666666666, + "grad_norm": 0.8677930235862732, + "learning_rate": 2.121986666666667e-05, + "loss": 1.4229975891113282, + "step": 431900 + }, + { + "epoch": 57.6, + "grad_norm": 0.8332538604736328, + "learning_rate": 2.12132e-05, + "loss": 1.426571807861328, + "step": 432000 + }, + { + "epoch": 57.61333333333333, + "grad_norm": 0.8856222033500671, + "learning_rate": 2.1206533333333334e-05, + "loss": 1.429196319580078, + "step": 432100 + }, + { + "epoch": 57.626666666666665, + "grad_norm": 0.8730775713920593, + "learning_rate": 2.1199866666666667e-05, + "loss": 1.4241506958007812, + "step": 432200 + }, + { + "epoch": 57.64, + "grad_norm": 0.8760560750961304, + "learning_rate": 2.1193200000000002e-05, + "loss": 1.4274005126953124, + "step": 432300 + }, + { + "epoch": 57.653333333333336, + "grad_norm": 0.8515337705612183, + "learning_rate": 2.1186533333333335e-05, + "loss": 1.4225738525390625, + "step": 432400 + }, + { + "epoch": 57.666666666666664, + "grad_norm": 0.8787199854850769, + "learning_rate": 2.1179866666666667e-05, + "loss": 1.4261997985839843, + "step": 432500 + }, + { + "epoch": 57.68, + "grad_norm": 0.8842175006866455, + "learning_rate": 2.1173200000000003e-05, + "loss": 1.4274266052246094, + "step": 432600 + }, + { + "epoch": 57.693333333333335, + "grad_norm": 0.8846668601036072, + "learning_rate": 2.1166533333333335e-05, + "loss": 1.427220001220703, + "step": 432700 + }, + { + "epoch": 57.70666666666666, + "grad_norm": 0.8565542101860046, + "learning_rate": 2.1159866666666667e-05, + "loss": 1.431591796875, + "step": 432800 + }, + { + "epoch": 57.72, + "grad_norm": 0.9259876608848572, + "learning_rate": 2.11532e-05, + "loss": 1.427034912109375, + "step": 432900 + }, + { + "epoch": 57.733333333333334, + "grad_norm": 0.8708376884460449, + "learning_rate": 2.1146533333333335e-05, + "loss": 1.4335169982910156, + "step": 433000 + }, + { + "epoch": 57.74666666666667, + "grad_norm": 0.865197479724884, + "learning_rate": 2.1139866666666667e-05, + "loss": 1.434145965576172, + "step": 433100 + }, + { + "epoch": 57.76, + "grad_norm": 0.8874461650848389, + "learning_rate": 2.11332e-05, + "loss": 1.43084228515625, + "step": 433200 + }, + { + "epoch": 57.77333333333333, + "grad_norm": 0.8610783219337463, + "learning_rate": 2.1126533333333335e-05, + "loss": 1.4350297546386719, + "step": 433300 + }, + { + "epoch": 57.78666666666667, + "grad_norm": 0.8552179932594299, + "learning_rate": 2.1119933333333334e-05, + "loss": 1.4353605651855468, + "step": 433400 + }, + { + "epoch": 57.8, + "grad_norm": 0.8936259746551514, + "learning_rate": 2.1113266666666667e-05, + "loss": 1.4357664489746094, + "step": 433500 + }, + { + "epoch": 57.81333333333333, + "grad_norm": 0.8511193990707397, + "learning_rate": 2.1106600000000002e-05, + "loss": 1.4354666137695313, + "step": 433600 + }, + { + "epoch": 57.82666666666667, + "grad_norm": 0.8757380247116089, + "learning_rate": 2.1099933333333334e-05, + "loss": 1.440109405517578, + "step": 433700 + }, + { + "epoch": 57.84, + "grad_norm": 0.921246349811554, + "learning_rate": 2.1093266666666667e-05, + "loss": 1.4303897094726563, + "step": 433800 + }, + { + "epoch": 57.85333333333333, + "grad_norm": 0.9038046002388, + "learning_rate": 2.1086600000000002e-05, + "loss": 1.43283203125, + "step": 433900 + }, + { + "epoch": 57.86666666666667, + "grad_norm": 0.9284953474998474, + "learning_rate": 2.1079933333333335e-05, + "loss": 1.439587860107422, + "step": 434000 + }, + { + "epoch": 57.88, + "grad_norm": 0.8677544593811035, + "learning_rate": 2.107326666666667e-05, + "loss": 1.432835693359375, + "step": 434100 + }, + { + "epoch": 57.89333333333333, + "grad_norm": 0.8702775239944458, + "learning_rate": 2.10666e-05, + "loss": 1.4360232543945313, + "step": 434200 + }, + { + "epoch": 57.906666666666666, + "grad_norm": 0.9052044153213501, + "learning_rate": 2.1059933333333335e-05, + "loss": 1.4358711242675781, + "step": 434300 + }, + { + "epoch": 57.92, + "grad_norm": 0.8295144438743591, + "learning_rate": 2.1053266666666667e-05, + "loss": 1.4382148742675782, + "step": 434400 + }, + { + "epoch": 57.93333333333333, + "grad_norm": 0.8926219344139099, + "learning_rate": 2.10466e-05, + "loss": 1.4372708129882812, + "step": 434500 + }, + { + "epoch": 57.946666666666665, + "grad_norm": 0.8741112351417542, + "learning_rate": 2.1039933333333335e-05, + "loss": 1.4404176330566407, + "step": 434600 + }, + { + "epoch": 57.96, + "grad_norm": 0.8536452651023865, + "learning_rate": 2.1033266666666667e-05, + "loss": 1.4389004516601562, + "step": 434700 + }, + { + "epoch": 57.973333333333336, + "grad_norm": 0.8683491945266724, + "learning_rate": 2.1026600000000003e-05, + "loss": 1.4402836608886718, + "step": 434800 + }, + { + "epoch": 57.986666666666665, + "grad_norm": 0.8583080172538757, + "learning_rate": 2.1019933333333332e-05, + "loss": 1.4441624450683594, + "step": 434900 + }, + { + "epoch": 58.0, + "grad_norm": 0.8596425652503967, + "learning_rate": 2.1013266666666667e-05, + "loss": 1.4424615478515626, + "step": 435000 + }, + { + "epoch": 58.013333333333335, + "grad_norm": 0.8734589219093323, + "learning_rate": 2.10066e-05, + "loss": 1.3811009216308594, + "step": 435100 + }, + { + "epoch": 58.026666666666664, + "grad_norm": 0.8984307050704956, + "learning_rate": 2.0999933333333335e-05, + "loss": 1.3851551818847656, + "step": 435200 + }, + { + "epoch": 58.04, + "grad_norm": 0.870807945728302, + "learning_rate": 2.0993266666666668e-05, + "loss": 1.383925323486328, + "step": 435300 + }, + { + "epoch": 58.053333333333335, + "grad_norm": 0.8193836808204651, + "learning_rate": 2.0986666666666667e-05, + "loss": 1.3839663696289062, + "step": 435400 + }, + { + "epoch": 58.06666666666667, + "grad_norm": 0.8609771132469177, + "learning_rate": 2.098e-05, + "loss": 1.3863719177246094, + "step": 435500 + }, + { + "epoch": 58.08, + "grad_norm": 0.8306235074996948, + "learning_rate": 2.0973333333333335e-05, + "loss": 1.3829759216308595, + "step": 435600 + }, + { + "epoch": 58.093333333333334, + "grad_norm": 0.8595555424690247, + "learning_rate": 2.0966666666666667e-05, + "loss": 1.3847052001953124, + "step": 435700 + }, + { + "epoch": 58.10666666666667, + "grad_norm": 0.8563652634620667, + "learning_rate": 2.0960000000000003e-05, + "loss": 1.386361083984375, + "step": 435800 + }, + { + "epoch": 58.12, + "grad_norm": 0.8658237457275391, + "learning_rate": 2.095333333333333e-05, + "loss": 1.388785400390625, + "step": 435900 + }, + { + "epoch": 58.13333333333333, + "grad_norm": 0.8627846837043762, + "learning_rate": 2.0946666666666667e-05, + "loss": 1.393494873046875, + "step": 436000 + }, + { + "epoch": 58.14666666666667, + "grad_norm": 0.8761343955993652, + "learning_rate": 2.0940000000000003e-05, + "loss": 1.3921939086914064, + "step": 436100 + }, + { + "epoch": 58.16, + "grad_norm": 0.8637253642082214, + "learning_rate": 2.0933333333333335e-05, + "loss": 1.3898490905761718, + "step": 436200 + }, + { + "epoch": 58.17333333333333, + "grad_norm": 0.8888680934906006, + "learning_rate": 2.0926666666666667e-05, + "loss": 1.3912742614746094, + "step": 436300 + }, + { + "epoch": 58.18666666666667, + "grad_norm": 0.8735535144805908, + "learning_rate": 2.092e-05, + "loss": 1.3885147094726562, + "step": 436400 + }, + { + "epoch": 58.2, + "grad_norm": 0.8976262807846069, + "learning_rate": 2.0913333333333335e-05, + "loss": 1.3988859558105469, + "step": 436500 + }, + { + "epoch": 58.21333333333333, + "grad_norm": 0.8783442974090576, + "learning_rate": 2.0906666666666668e-05, + "loss": 1.3914523315429688, + "step": 436600 + }, + { + "epoch": 58.22666666666667, + "grad_norm": 0.8859887719154358, + "learning_rate": 2.09e-05, + "loss": 1.390671844482422, + "step": 436700 + }, + { + "epoch": 58.24, + "grad_norm": 0.8783445358276367, + "learning_rate": 2.0893333333333335e-05, + "loss": 1.3934185791015625, + "step": 436800 + }, + { + "epoch": 58.25333333333333, + "grad_norm": 0.8454920053482056, + "learning_rate": 2.0886666666666668e-05, + "loss": 1.3974107360839845, + "step": 436900 + }, + { + "epoch": 58.266666666666666, + "grad_norm": 0.895043134689331, + "learning_rate": 2.0880000000000003e-05, + "loss": 1.3971817016601562, + "step": 437000 + }, + { + "epoch": 58.28, + "grad_norm": 0.9361661076545715, + "learning_rate": 2.0873333333333332e-05, + "loss": 1.39865234375, + "step": 437100 + }, + { + "epoch": 58.29333333333334, + "grad_norm": 0.8844481110572815, + "learning_rate": 2.0866666666666668e-05, + "loss": 1.3997993469238281, + "step": 437200 + }, + { + "epoch": 58.306666666666665, + "grad_norm": 0.7877687215805054, + "learning_rate": 2.086e-05, + "loss": 1.4015354919433594, + "step": 437300 + }, + { + "epoch": 58.32, + "grad_norm": 0.7823760509490967, + "learning_rate": 2.08534e-05, + "loss": 1.3993243408203124, + "step": 437400 + }, + { + "epoch": 58.333333333333336, + "grad_norm": 0.8986889123916626, + "learning_rate": 2.0846733333333335e-05, + "loss": 1.402682342529297, + "step": 437500 + }, + { + "epoch": 58.346666666666664, + "grad_norm": 0.8212663531303406, + "learning_rate": 2.0840066666666667e-05, + "loss": 1.4034190368652344, + "step": 437600 + }, + { + "epoch": 58.36, + "grad_norm": 0.865929365158081, + "learning_rate": 2.08334e-05, + "loss": 1.4008261108398437, + "step": 437700 + }, + { + "epoch": 58.373333333333335, + "grad_norm": 0.8731956481933594, + "learning_rate": 2.0826733333333335e-05, + "loss": 1.4043699645996093, + "step": 437800 + }, + { + "epoch": 58.38666666666666, + "grad_norm": 0.8673787117004395, + "learning_rate": 2.0820066666666667e-05, + "loss": 1.4046339416503906, + "step": 437900 + }, + { + "epoch": 58.4, + "grad_norm": 0.8785029053688049, + "learning_rate": 2.0813400000000003e-05, + "loss": 1.404567108154297, + "step": 438000 + }, + { + "epoch": 58.413333333333334, + "grad_norm": 0.831731379032135, + "learning_rate": 2.0806733333333335e-05, + "loss": 1.4076467895507812, + "step": 438100 + }, + { + "epoch": 58.42666666666667, + "grad_norm": 0.8772410750389099, + "learning_rate": 2.0800066666666668e-05, + "loss": 1.4042951965332031, + "step": 438200 + }, + { + "epoch": 58.44, + "grad_norm": 0.8620854616165161, + "learning_rate": 2.0793400000000003e-05, + "loss": 1.4063218688964845, + "step": 438300 + }, + { + "epoch": 58.45333333333333, + "grad_norm": 0.8375303149223328, + "learning_rate": 2.0786733333333332e-05, + "loss": 1.4067355346679689, + "step": 438400 + }, + { + "epoch": 58.46666666666667, + "grad_norm": 0.8386953473091125, + "learning_rate": 2.0780066666666668e-05, + "loss": 1.4097119140625, + "step": 438500 + }, + { + "epoch": 58.48, + "grad_norm": 0.8893094062805176, + "learning_rate": 2.07734e-05, + "loss": 1.4094076538085938, + "step": 438600 + }, + { + "epoch": 58.49333333333333, + "grad_norm": 0.8755731582641602, + "learning_rate": 2.0766733333333336e-05, + "loss": 1.4084201049804688, + "step": 438700 + }, + { + "epoch": 58.50666666666667, + "grad_norm": 0.8995118737220764, + "learning_rate": 2.0760066666666668e-05, + "loss": 1.4081155395507812, + "step": 438800 + }, + { + "epoch": 58.52, + "grad_norm": 0.8784931302070618, + "learning_rate": 2.07534e-05, + "loss": 1.4106106567382812, + "step": 438900 + }, + { + "epoch": 58.53333333333333, + "grad_norm": 0.8496900796890259, + "learning_rate": 2.0746733333333336e-05, + "loss": 1.4154051208496095, + "step": 439000 + }, + { + "epoch": 58.54666666666667, + "grad_norm": 0.9111222624778748, + "learning_rate": 2.0740066666666668e-05, + "loss": 1.4134213256835937, + "step": 439100 + }, + { + "epoch": 58.56, + "grad_norm": 0.9012070298194885, + "learning_rate": 2.07334e-05, + "loss": 1.4138330078125, + "step": 439200 + }, + { + "epoch": 58.57333333333333, + "grad_norm": 0.8513124585151672, + "learning_rate": 2.0726733333333333e-05, + "loss": 1.414625701904297, + "step": 439300 + }, + { + "epoch": 58.586666666666666, + "grad_norm": 0.8750892877578735, + "learning_rate": 2.0720133333333332e-05, + "loss": 1.4188406372070312, + "step": 439400 + }, + { + "epoch": 58.6, + "grad_norm": 0.8822923302650452, + "learning_rate": 2.0713466666666667e-05, + "loss": 1.4158790588378907, + "step": 439500 + }, + { + "epoch": 58.61333333333333, + "grad_norm": 0.8047091364860535, + "learning_rate": 2.07068e-05, + "loss": 1.414635009765625, + "step": 439600 + }, + { + "epoch": 58.626666666666665, + "grad_norm": 0.8577402234077454, + "learning_rate": 2.0700133333333335e-05, + "loss": 1.4141645812988282, + "step": 439700 + }, + { + "epoch": 58.64, + "grad_norm": 0.8721509575843811, + "learning_rate": 2.0693466666666668e-05, + "loss": 1.4171902465820312, + "step": 439800 + }, + { + "epoch": 58.653333333333336, + "grad_norm": 0.852287769317627, + "learning_rate": 2.06868e-05, + "loss": 1.4161666870117187, + "step": 439900 + }, + { + "epoch": 58.666666666666664, + "grad_norm": 0.8711374402046204, + "learning_rate": 2.0680133333333336e-05, + "loss": 1.4154249572753905, + "step": 440000 + }, + { + "epoch": 58.68, + "grad_norm": 0.9298127889633179, + "learning_rate": 2.0673466666666668e-05, + "loss": 1.416683349609375, + "step": 440100 + }, + { + "epoch": 58.693333333333335, + "grad_norm": 0.8794826865196228, + "learning_rate": 2.06668e-05, + "loss": 1.4199267578125, + "step": 440200 + }, + { + "epoch": 58.70666666666666, + "grad_norm": 0.8694095015525818, + "learning_rate": 2.0660133333333336e-05, + "loss": 1.417292938232422, + "step": 440300 + }, + { + "epoch": 58.72, + "grad_norm": 0.8695284128189087, + "learning_rate": 2.0653466666666668e-05, + "loss": 1.4181063842773438, + "step": 440400 + }, + { + "epoch": 58.733333333333334, + "grad_norm": 0.8681213855743408, + "learning_rate": 2.0646800000000004e-05, + "loss": 1.4154566955566406, + "step": 440500 + }, + { + "epoch": 58.74666666666667, + "grad_norm": 0.8768618106842041, + "learning_rate": 2.0640133333333333e-05, + "loss": 1.4236866760253906, + "step": 440600 + }, + { + "epoch": 58.76, + "grad_norm": 0.8256394267082214, + "learning_rate": 2.0633466666666668e-05, + "loss": 1.41985107421875, + "step": 440700 + }, + { + "epoch": 58.77333333333333, + "grad_norm": 0.8697381019592285, + "learning_rate": 2.06268e-05, + "loss": 1.4237368774414063, + "step": 440800 + }, + { + "epoch": 58.78666666666667, + "grad_norm": 0.8941296935081482, + "learning_rate": 2.0620133333333333e-05, + "loss": 1.4222611999511718, + "step": 440900 + }, + { + "epoch": 58.8, + "grad_norm": 0.8877124786376953, + "learning_rate": 2.061346666666667e-05, + "loss": 1.4254855346679687, + "step": 441000 + }, + { + "epoch": 58.81333333333333, + "grad_norm": 0.9030829071998596, + "learning_rate": 2.06068e-05, + "loss": 1.4235409545898436, + "step": 441100 + }, + { + "epoch": 58.82666666666667, + "grad_norm": 0.9028357267379761, + "learning_rate": 2.0600133333333336e-05, + "loss": 1.4207374572753906, + "step": 441200 + }, + { + "epoch": 58.84, + "grad_norm": 0.9188116192817688, + "learning_rate": 2.0593466666666665e-05, + "loss": 1.4223762512207032, + "step": 441300 + }, + { + "epoch": 58.85333333333333, + "grad_norm": 0.9232787489891052, + "learning_rate": 2.0586866666666668e-05, + "loss": 1.4255131530761718, + "step": 441400 + }, + { + "epoch": 58.86666666666667, + "grad_norm": 0.874527633190155, + "learning_rate": 2.0580200000000003e-05, + "loss": 1.4305357360839843, + "step": 441500 + }, + { + "epoch": 58.88, + "grad_norm": 0.8727383017539978, + "learning_rate": 2.0573533333333332e-05, + "loss": 1.4260952758789063, + "step": 441600 + }, + { + "epoch": 58.89333333333333, + "grad_norm": 0.8848722577095032, + "learning_rate": 2.0566866666666668e-05, + "loss": 1.425802001953125, + "step": 441700 + }, + { + "epoch": 58.906666666666666, + "grad_norm": 0.8801239132881165, + "learning_rate": 2.05602e-05, + "loss": 1.4275160217285157, + "step": 441800 + }, + { + "epoch": 58.92, + "grad_norm": 0.8728554248809814, + "learning_rate": 2.0553533333333332e-05, + "loss": 1.4327494812011718, + "step": 441900 + }, + { + "epoch": 58.93333333333333, + "grad_norm": 0.8942492008209229, + "learning_rate": 2.0546866666666668e-05, + "loss": 1.4299046325683593, + "step": 442000 + }, + { + "epoch": 58.946666666666665, + "grad_norm": 0.9094804525375366, + "learning_rate": 2.05402e-05, + "loss": 1.4307928466796875, + "step": 442100 + }, + { + "epoch": 58.96, + "grad_norm": 0.871557891368866, + "learning_rate": 2.0533533333333336e-05, + "loss": 1.42893310546875, + "step": 442200 + }, + { + "epoch": 58.973333333333336, + "grad_norm": 0.8748642802238464, + "learning_rate": 2.0526866666666665e-05, + "loss": 1.4272027587890626, + "step": 442300 + }, + { + "epoch": 58.986666666666665, + "grad_norm": 0.8672638535499573, + "learning_rate": 2.05202e-05, + "loss": 1.4299638366699219, + "step": 442400 + }, + { + "epoch": 59.0, + "grad_norm": 0.8816332221031189, + "learning_rate": 2.0513533333333336e-05, + "loss": 1.434586944580078, + "step": 442500 + }, + { + "epoch": 59.013333333333335, + "grad_norm": 0.8527655601501465, + "learning_rate": 2.050686666666667e-05, + "loss": 1.3740353393554687, + "step": 442600 + }, + { + "epoch": 59.026666666666664, + "grad_norm": 0.8620314598083496, + "learning_rate": 2.05002e-05, + "loss": 1.3709056091308593, + "step": 442700 + }, + { + "epoch": 59.04, + "grad_norm": 0.8591675758361816, + "learning_rate": 2.0493533333333333e-05, + "loss": 1.3708229064941406, + "step": 442800 + }, + { + "epoch": 59.053333333333335, + "grad_norm": 0.8642350435256958, + "learning_rate": 2.048686666666667e-05, + "loss": 1.373277587890625, + "step": 442900 + }, + { + "epoch": 59.06666666666667, + "grad_norm": 0.8944986462593079, + "learning_rate": 2.04802e-05, + "loss": 1.3693106079101562, + "step": 443000 + }, + { + "epoch": 59.08, + "grad_norm": 0.8772505521774292, + "learning_rate": 2.0473533333333333e-05, + "loss": 1.3786691284179688, + "step": 443100 + }, + { + "epoch": 59.093333333333334, + "grad_norm": 0.828309178352356, + "learning_rate": 2.046686666666667e-05, + "loss": 1.3788882446289064, + "step": 443200 + }, + { + "epoch": 59.10666666666667, + "grad_norm": 0.8052541613578796, + "learning_rate": 2.04602e-05, + "loss": 1.3764219665527344, + "step": 443300 + }, + { + "epoch": 59.12, + "grad_norm": 0.8364429473876953, + "learning_rate": 2.0453533333333337e-05, + "loss": 1.3792369079589843, + "step": 443400 + }, + { + "epoch": 59.13333333333333, + "grad_norm": 0.8565122485160828, + "learning_rate": 2.0446933333333336e-05, + "loss": 1.3825364685058594, + "step": 443500 + }, + { + "epoch": 59.14666666666667, + "grad_norm": 0.8464578986167908, + "learning_rate": 2.0440266666666668e-05, + "loss": 1.38104248046875, + "step": 443600 + }, + { + "epoch": 59.16, + "grad_norm": 0.8631567358970642, + "learning_rate": 2.04336e-05, + "loss": 1.383396759033203, + "step": 443700 + }, + { + "epoch": 59.17333333333333, + "grad_norm": 0.8802007436752319, + "learning_rate": 2.0426933333333333e-05, + "loss": 1.3867723083496093, + "step": 443800 + }, + { + "epoch": 59.18666666666667, + "grad_norm": 0.8594309687614441, + "learning_rate": 2.0420266666666668e-05, + "loss": 1.3859178161621093, + "step": 443900 + }, + { + "epoch": 59.2, + "grad_norm": 0.8774383068084717, + "learning_rate": 2.04136e-05, + "loss": 1.3861714172363282, + "step": 444000 + }, + { + "epoch": 59.21333333333333, + "grad_norm": 0.8826853632926941, + "learning_rate": 2.0406933333333333e-05, + "loss": 1.3873568725585939, + "step": 444100 + }, + { + "epoch": 59.22666666666667, + "grad_norm": 0.7932345867156982, + "learning_rate": 2.040026666666667e-05, + "loss": 1.387662353515625, + "step": 444200 + }, + { + "epoch": 59.24, + "grad_norm": 0.8927592635154724, + "learning_rate": 2.03936e-05, + "loss": 1.3858427429199218, + "step": 444300 + }, + { + "epoch": 59.25333333333333, + "grad_norm": 0.8642708659172058, + "learning_rate": 2.0386933333333336e-05, + "loss": 1.392750244140625, + "step": 444400 + }, + { + "epoch": 59.266666666666666, + "grad_norm": 0.8669323325157166, + "learning_rate": 2.038026666666667e-05, + "loss": 1.383953857421875, + "step": 444500 + }, + { + "epoch": 59.28, + "grad_norm": 0.8710570931434631, + "learning_rate": 2.03736e-05, + "loss": 1.3882061767578124, + "step": 444600 + }, + { + "epoch": 59.29333333333334, + "grad_norm": 0.9176151752471924, + "learning_rate": 2.0366933333333337e-05, + "loss": 1.391685791015625, + "step": 444700 + }, + { + "epoch": 59.306666666666665, + "grad_norm": 0.831787109375, + "learning_rate": 2.0360266666666665e-05, + "loss": 1.3894924926757812, + "step": 444800 + }, + { + "epoch": 59.32, + "grad_norm": 0.8599420785903931, + "learning_rate": 2.03536e-05, + "loss": 1.3913801574707032, + "step": 444900 + }, + { + "epoch": 59.333333333333336, + "grad_norm": 0.8475634455680847, + "learning_rate": 2.0346933333333333e-05, + "loss": 1.392063751220703, + "step": 445000 + }, + { + "epoch": 59.346666666666664, + "grad_norm": 0.8321338891983032, + "learning_rate": 2.034026666666667e-05, + "loss": 1.3921504211425781, + "step": 445100 + }, + { + "epoch": 59.36, + "grad_norm": 0.8083276748657227, + "learning_rate": 2.03336e-05, + "loss": 1.3912481689453124, + "step": 445200 + }, + { + "epoch": 59.373333333333335, + "grad_norm": 0.8358070850372314, + "learning_rate": 2.0326933333333334e-05, + "loss": 1.3926693725585937, + "step": 445300 + }, + { + "epoch": 59.38666666666666, + "grad_norm": 0.8596873879432678, + "learning_rate": 2.032026666666667e-05, + "loss": 1.397172088623047, + "step": 445400 + }, + { + "epoch": 59.4, + "grad_norm": 0.8789359331130981, + "learning_rate": 2.0313666666666668e-05, + "loss": 1.3950949096679688, + "step": 445500 + }, + { + "epoch": 59.413333333333334, + "grad_norm": 0.8819690346717834, + "learning_rate": 2.0307e-05, + "loss": 1.3969586181640625, + "step": 445600 + }, + { + "epoch": 59.42666666666667, + "grad_norm": 0.8241303563117981, + "learning_rate": 2.0300333333333336e-05, + "loss": 1.3977046203613281, + "step": 445700 + }, + { + "epoch": 59.44, + "grad_norm": 0.8681808114051819, + "learning_rate": 2.0293666666666665e-05, + "loss": 1.395835418701172, + "step": 445800 + }, + { + "epoch": 59.45333333333333, + "grad_norm": 0.8753331899642944, + "learning_rate": 2.0287e-05, + "loss": 1.397332763671875, + "step": 445900 + }, + { + "epoch": 59.46666666666667, + "grad_norm": 0.936934769153595, + "learning_rate": 2.0280333333333333e-05, + "loss": 1.396897430419922, + "step": 446000 + }, + { + "epoch": 59.48, + "grad_norm": 0.9100282788276672, + "learning_rate": 2.027366666666667e-05, + "loss": 1.4025897216796874, + "step": 446100 + }, + { + "epoch": 59.49333333333333, + "grad_norm": 0.8733969330787659, + "learning_rate": 2.0267e-05, + "loss": 1.4047660827636719, + "step": 446200 + }, + { + "epoch": 59.50666666666667, + "grad_norm": 0.879501461982727, + "learning_rate": 2.0260333333333333e-05, + "loss": 1.4029029846191405, + "step": 446300 + }, + { + "epoch": 59.52, + "grad_norm": 0.8982552886009216, + "learning_rate": 2.025366666666667e-05, + "loss": 1.4038697814941405, + "step": 446400 + }, + { + "epoch": 59.53333333333333, + "grad_norm": 0.853354811668396, + "learning_rate": 2.0247e-05, + "loss": 1.3982884216308593, + "step": 446500 + }, + { + "epoch": 59.54666666666667, + "grad_norm": 0.8160167336463928, + "learning_rate": 2.0240333333333333e-05, + "loss": 1.4008200073242187, + "step": 446600 + }, + { + "epoch": 59.56, + "grad_norm": 0.8860510587692261, + "learning_rate": 2.023366666666667e-05, + "loss": 1.40131591796875, + "step": 446700 + }, + { + "epoch": 59.57333333333333, + "grad_norm": 0.9074357748031616, + "learning_rate": 2.0227e-05, + "loss": 1.4021209716796874, + "step": 446800 + }, + { + "epoch": 59.586666666666666, + "grad_norm": 0.9050543904304504, + "learning_rate": 2.0220333333333337e-05, + "loss": 1.4041819763183594, + "step": 446900 + }, + { + "epoch": 59.6, + "grad_norm": 0.8996903896331787, + "learning_rate": 2.0213666666666666e-05, + "loss": 1.4066482543945313, + "step": 447000 + }, + { + "epoch": 59.61333333333333, + "grad_norm": 0.8637166619300842, + "learning_rate": 2.0207e-05, + "loss": 1.40481689453125, + "step": 447100 + }, + { + "epoch": 59.626666666666665, + "grad_norm": 0.915777325630188, + "learning_rate": 2.0200333333333334e-05, + "loss": 1.4069454956054688, + "step": 447200 + }, + { + "epoch": 59.64, + "grad_norm": 0.8580685257911682, + "learning_rate": 2.0193666666666666e-05, + "loss": 1.4054689025878906, + "step": 447300 + }, + { + "epoch": 59.653333333333336, + "grad_norm": 0.8624551296234131, + "learning_rate": 2.0187000000000002e-05, + "loss": 1.406177978515625, + "step": 447400 + }, + { + "epoch": 59.666666666666664, + "grad_norm": 0.9435851573944092, + "learning_rate": 2.01804e-05, + "loss": 1.410730743408203, + "step": 447500 + }, + { + "epoch": 59.68, + "grad_norm": 0.8933364152908325, + "learning_rate": 2.0173733333333333e-05, + "loss": 1.4079649353027344, + "step": 447600 + }, + { + "epoch": 59.693333333333335, + "grad_norm": 0.9013268351554871, + "learning_rate": 2.016706666666667e-05, + "loss": 1.4075224304199219, + "step": 447700 + }, + { + "epoch": 59.70666666666666, + "grad_norm": 0.8835455775260925, + "learning_rate": 2.01604e-05, + "loss": 1.408735809326172, + "step": 447800 + }, + { + "epoch": 59.72, + "grad_norm": 0.9013435244560242, + "learning_rate": 2.0153733333333337e-05, + "loss": 1.4129440307617187, + "step": 447900 + }, + { + "epoch": 59.733333333333334, + "grad_norm": 0.9216914772987366, + "learning_rate": 2.0147066666666666e-05, + "loss": 1.413671875, + "step": 448000 + }, + { + "epoch": 59.74666666666667, + "grad_norm": 0.9072982668876648, + "learning_rate": 2.01404e-05, + "loss": 1.4080628967285156, + "step": 448100 + }, + { + "epoch": 59.76, + "grad_norm": 0.9267192482948303, + "learning_rate": 2.0133733333333333e-05, + "loss": 1.4114108276367188, + "step": 448200 + }, + { + "epoch": 59.77333333333333, + "grad_norm": 0.8571563959121704, + "learning_rate": 2.0127066666666666e-05, + "loss": 1.4090080261230469, + "step": 448300 + }, + { + "epoch": 59.78666666666667, + "grad_norm": 0.927082896232605, + "learning_rate": 2.01204e-05, + "loss": 1.4117256164550782, + "step": 448400 + }, + { + "epoch": 59.8, + "grad_norm": 0.9052351117134094, + "learning_rate": 2.0113733333333334e-05, + "loss": 1.4136744689941407, + "step": 448500 + }, + { + "epoch": 59.81333333333333, + "grad_norm": 0.9458771347999573, + "learning_rate": 2.010706666666667e-05, + "loss": 1.4105580139160157, + "step": 448600 + }, + { + "epoch": 59.82666666666667, + "grad_norm": 0.7968136072158813, + "learning_rate": 2.0100399999999998e-05, + "loss": 1.4169776916503907, + "step": 448700 + }, + { + "epoch": 59.84, + "grad_norm": 0.8549537658691406, + "learning_rate": 2.0093733333333334e-05, + "loss": 1.4146495056152344, + "step": 448800 + }, + { + "epoch": 59.85333333333333, + "grad_norm": 0.8725696802139282, + "learning_rate": 2.008706666666667e-05, + "loss": 1.4181309509277344, + "step": 448900 + }, + { + "epoch": 59.86666666666667, + "grad_norm": 0.8683002591133118, + "learning_rate": 2.0080400000000002e-05, + "loss": 1.4133045959472657, + "step": 449000 + }, + { + "epoch": 59.88, + "grad_norm": 0.8000110387802124, + "learning_rate": 2.0073733333333334e-05, + "loss": 1.4159756469726563, + "step": 449100 + }, + { + "epoch": 59.89333333333333, + "grad_norm": 0.887690544128418, + "learning_rate": 2.0067066666666666e-05, + "loss": 1.4154435729980468, + "step": 449200 + }, + { + "epoch": 59.906666666666666, + "grad_norm": 0.8402546644210815, + "learning_rate": 2.0060400000000002e-05, + "loss": 1.4177676391601564, + "step": 449300 + }, + { + "epoch": 59.92, + "grad_norm": 0.9004342555999756, + "learning_rate": 2.0053733333333334e-05, + "loss": 1.4182846069335937, + "step": 449400 + }, + { + "epoch": 59.93333333333333, + "grad_norm": 0.8389486074447632, + "learning_rate": 2.0047066666666666e-05, + "loss": 1.4176017761230468, + "step": 449500 + }, + { + "epoch": 59.946666666666665, + "grad_norm": 0.889369785785675, + "learning_rate": 2.0040400000000002e-05, + "loss": 1.4182723999023437, + "step": 449600 + }, + { + "epoch": 59.96, + "grad_norm": 0.9012863039970398, + "learning_rate": 2.00338e-05, + "loss": 1.4193865966796875, + "step": 449700 + }, + { + "epoch": 59.973333333333336, + "grad_norm": 0.9062787294387817, + "learning_rate": 2.0027133333333333e-05, + "loss": 1.4206649780273437, + "step": 449800 + }, + { + "epoch": 59.986666666666665, + "grad_norm": 0.8925827145576477, + "learning_rate": 2.002046666666667e-05, + "loss": 1.4192771911621094, + "step": 449900 + }, + { + "epoch": 60.0, + "grad_norm": 0.9131714105606079, + "learning_rate": 2.00138e-05, + "loss": 1.4141000366210938, + "step": 450000 + }, + { + "epoch": 60.013333333333335, + "grad_norm": 0.8766162991523743, + "learning_rate": 2.0007133333333334e-05, + "loss": 1.3626673889160157, + "step": 450100 + }, + { + "epoch": 60.026666666666664, + "grad_norm": 0.8619803786277771, + "learning_rate": 2.0000466666666666e-05, + "loss": 1.365054931640625, + "step": 450200 + }, + { + "epoch": 60.04, + "grad_norm": 0.8605244159698486, + "learning_rate": 1.99938e-05, + "loss": 1.3631307983398437, + "step": 450300 + }, + { + "epoch": 60.053333333333335, + "grad_norm": 0.855178713798523, + "learning_rate": 1.9987133333333334e-05, + "loss": 1.3666217041015625, + "step": 450400 + }, + { + "epoch": 60.06666666666667, + "grad_norm": 0.8652241826057434, + "learning_rate": 1.9980466666666666e-05, + "loss": 1.36834228515625, + "step": 450500 + }, + { + "epoch": 60.08, + "grad_norm": 0.7819242477416992, + "learning_rate": 1.9973800000000002e-05, + "loss": 1.3638204956054687, + "step": 450600 + }, + { + "epoch": 60.093333333333334, + "grad_norm": 0.8712034225463867, + "learning_rate": 1.9967133333333334e-05, + "loss": 1.3687100219726562, + "step": 450700 + }, + { + "epoch": 60.10666666666667, + "grad_norm": 0.8641767501831055, + "learning_rate": 1.996046666666667e-05, + "loss": 1.3722442626953124, + "step": 450800 + }, + { + "epoch": 60.12, + "grad_norm": 0.800079882144928, + "learning_rate": 1.99538e-05, + "loss": 1.3667047119140625, + "step": 450900 + }, + { + "epoch": 60.13333333333333, + "grad_norm": 0.8609186410903931, + "learning_rate": 1.9947133333333334e-05, + "loss": 1.370550079345703, + "step": 451000 + }, + { + "epoch": 60.14666666666667, + "grad_norm": 0.8792775869369507, + "learning_rate": 1.994046666666667e-05, + "loss": 1.3739710998535157, + "step": 451100 + }, + { + "epoch": 60.16, + "grad_norm": 0.8350428938865662, + "learning_rate": 1.99338e-05, + "loss": 1.3673428344726561, + "step": 451200 + }, + { + "epoch": 60.17333333333333, + "grad_norm": 0.8641292452812195, + "learning_rate": 1.9927133333333334e-05, + "loss": 1.3756710815429687, + "step": 451300 + }, + { + "epoch": 60.18666666666667, + "grad_norm": 0.8623048663139343, + "learning_rate": 1.9920466666666667e-05, + "loss": 1.3705751037597655, + "step": 451400 + }, + { + "epoch": 60.2, + "grad_norm": 0.8862844705581665, + "learning_rate": 1.9913800000000002e-05, + "loss": 1.3776641845703126, + "step": 451500 + }, + { + "epoch": 60.21333333333333, + "grad_norm": 0.85312819480896, + "learning_rate": 1.9907133333333335e-05, + "loss": 1.3766864013671876, + "step": 451600 + }, + { + "epoch": 60.22666666666667, + "grad_norm": 0.860139787197113, + "learning_rate": 1.9900533333333334e-05, + "loss": 1.376378936767578, + "step": 451700 + }, + { + "epoch": 60.24, + "grad_norm": 0.895366370677948, + "learning_rate": 1.989386666666667e-05, + "loss": 1.3810842895507813, + "step": 451800 + }, + { + "epoch": 60.25333333333333, + "grad_norm": 0.8239558935165405, + "learning_rate": 1.98872e-05, + "loss": 1.376715850830078, + "step": 451900 + }, + { + "epoch": 60.266666666666666, + "grad_norm": 0.8806911110877991, + "learning_rate": 1.9880533333333334e-05, + "loss": 1.3794581604003906, + "step": 452000 + }, + { + "epoch": 60.28, + "grad_norm": 0.8843830823898315, + "learning_rate": 1.987386666666667e-05, + "loss": 1.3751409912109376, + "step": 452100 + }, + { + "epoch": 60.29333333333334, + "grad_norm": 0.8291395902633667, + "learning_rate": 1.98672e-05, + "loss": 1.3803631591796874, + "step": 452200 + }, + { + "epoch": 60.306666666666665, + "grad_norm": 0.8579269051551819, + "learning_rate": 1.9860533333333334e-05, + "loss": 1.379007568359375, + "step": 452300 + }, + { + "epoch": 60.32, + "grad_norm": 0.8788613080978394, + "learning_rate": 1.9853866666666666e-05, + "loss": 1.3800997924804688, + "step": 452400 + }, + { + "epoch": 60.333333333333336, + "grad_norm": 0.8551366925239563, + "learning_rate": 1.9847200000000002e-05, + "loss": 1.380692138671875, + "step": 452500 + }, + { + "epoch": 60.346666666666664, + "grad_norm": 0.897996187210083, + "learning_rate": 1.9840533333333334e-05, + "loss": 1.3825259399414063, + "step": 452600 + }, + { + "epoch": 60.36, + "grad_norm": 0.8699089288711548, + "learning_rate": 1.9833866666666667e-05, + "loss": 1.3819764709472657, + "step": 452700 + }, + { + "epoch": 60.373333333333335, + "grad_norm": 0.8734973669052124, + "learning_rate": 1.9827200000000002e-05, + "loss": 1.385391082763672, + "step": 452800 + }, + { + "epoch": 60.38666666666666, + "grad_norm": 0.8809809684753418, + "learning_rate": 1.9820533333333334e-05, + "loss": 1.3871815490722657, + "step": 452900 + }, + { + "epoch": 60.4, + "grad_norm": 0.8975648880004883, + "learning_rate": 1.9813866666666667e-05, + "loss": 1.38472412109375, + "step": 453000 + }, + { + "epoch": 60.413333333333334, + "grad_norm": 0.9081311225891113, + "learning_rate": 1.9807200000000002e-05, + "loss": 1.3865188598632812, + "step": 453100 + }, + { + "epoch": 60.42666666666667, + "grad_norm": 0.9099006652832031, + "learning_rate": 1.9800533333333335e-05, + "loss": 1.389481201171875, + "step": 453200 + }, + { + "epoch": 60.44, + "grad_norm": 0.864206850528717, + "learning_rate": 1.979386666666667e-05, + "loss": 1.390070037841797, + "step": 453300 + }, + { + "epoch": 60.45333333333333, + "grad_norm": 0.8600577116012573, + "learning_rate": 1.97872e-05, + "loss": 1.392391357421875, + "step": 453400 + }, + { + "epoch": 60.46666666666667, + "grad_norm": 0.8773865103721619, + "learning_rate": 1.9780533333333335e-05, + "loss": 1.3893141174316406, + "step": 453500 + }, + { + "epoch": 60.48, + "grad_norm": 0.8529485464096069, + "learning_rate": 1.9773866666666667e-05, + "loss": 1.3895809936523438, + "step": 453600 + }, + { + "epoch": 60.49333333333333, + "grad_norm": 0.9243431687355042, + "learning_rate": 1.9767266666666666e-05, + "loss": 1.391697540283203, + "step": 453700 + }, + { + "epoch": 60.50666666666667, + "grad_norm": 0.8365994691848755, + "learning_rate": 1.9760600000000002e-05, + "loss": 1.39140869140625, + "step": 453800 + }, + { + "epoch": 60.52, + "grad_norm": 0.8463616371154785, + "learning_rate": 1.9753933333333334e-05, + "loss": 1.3897438049316406, + "step": 453900 + }, + { + "epoch": 60.53333333333333, + "grad_norm": 0.8689169883728027, + "learning_rate": 1.9747266666666666e-05, + "loss": 1.3926591491699218, + "step": 454000 + }, + { + "epoch": 60.54666666666667, + "grad_norm": 0.8810186386108398, + "learning_rate": 1.9740600000000002e-05, + "loss": 1.3944500732421874, + "step": 454100 + }, + { + "epoch": 60.56, + "grad_norm": 0.8771687150001526, + "learning_rate": 1.9733933333333334e-05, + "loss": 1.3929228210449218, + "step": 454200 + }, + { + "epoch": 60.57333333333333, + "grad_norm": 0.854418933391571, + "learning_rate": 1.972726666666667e-05, + "loss": 1.3968455505371093, + "step": 454300 + }, + { + "epoch": 60.586666666666666, + "grad_norm": 0.8878345489501953, + "learning_rate": 1.97206e-05, + "loss": 1.3940657043457032, + "step": 454400 + }, + { + "epoch": 60.6, + "grad_norm": 0.8897739052772522, + "learning_rate": 1.9713933333333335e-05, + "loss": 1.3936965942382813, + "step": 454500 + }, + { + "epoch": 60.61333333333333, + "grad_norm": 0.9403147101402283, + "learning_rate": 1.9707266666666667e-05, + "loss": 1.3955183410644532, + "step": 454600 + }, + { + "epoch": 60.626666666666665, + "grad_norm": 0.8647699952125549, + "learning_rate": 1.97006e-05, + "loss": 1.3931178283691406, + "step": 454700 + }, + { + "epoch": 60.64, + "grad_norm": 0.9250267744064331, + "learning_rate": 1.9693933333333335e-05, + "loss": 1.394335479736328, + "step": 454800 + }, + { + "epoch": 60.653333333333336, + "grad_norm": 0.9054676294326782, + "learning_rate": 1.9687266666666667e-05, + "loss": 1.3964520263671876, + "step": 454900 + }, + { + "epoch": 60.666666666666664, + "grad_norm": 0.8482034206390381, + "learning_rate": 1.9680600000000003e-05, + "loss": 1.401461639404297, + "step": 455000 + }, + { + "epoch": 60.68, + "grad_norm": 0.8947781920433044, + "learning_rate": 1.967393333333333e-05, + "loss": 1.398545684814453, + "step": 455100 + }, + { + "epoch": 60.693333333333335, + "grad_norm": 0.834432065486908, + "learning_rate": 1.9667266666666667e-05, + "loss": 1.3957997131347657, + "step": 455200 + }, + { + "epoch": 60.70666666666666, + "grad_norm": 0.8843758702278137, + "learning_rate": 1.9660600000000003e-05, + "loss": 1.397581787109375, + "step": 455300 + }, + { + "epoch": 60.72, + "grad_norm": 0.8692967295646667, + "learning_rate": 1.9653933333333335e-05, + "loss": 1.3974429321289064, + "step": 455400 + }, + { + "epoch": 60.733333333333334, + "grad_norm": 0.8995789885520935, + "learning_rate": 1.9647266666666667e-05, + "loss": 1.3975807189941407, + "step": 455500 + }, + { + "epoch": 60.74666666666667, + "grad_norm": 0.9164907932281494, + "learning_rate": 1.96406e-05, + "loss": 1.4055183410644532, + "step": 455600 + }, + { + "epoch": 60.76, + "grad_norm": 0.8928161859512329, + "learning_rate": 1.9634e-05, + "loss": 1.4037777709960937, + "step": 455700 + }, + { + "epoch": 60.77333333333333, + "grad_norm": 0.8764446377754211, + "learning_rate": 1.9627333333333334e-05, + "loss": 1.4005415344238281, + "step": 455800 + }, + { + "epoch": 60.78666666666667, + "grad_norm": 0.904509425163269, + "learning_rate": 1.9620666666666667e-05, + "loss": 1.4026527404785156, + "step": 455900 + }, + { + "epoch": 60.8, + "grad_norm": 0.898916482925415, + "learning_rate": 1.9614000000000002e-05, + "loss": 1.407811279296875, + "step": 456000 + }, + { + "epoch": 60.81333333333333, + "grad_norm": 0.9085363149642944, + "learning_rate": 1.9607333333333335e-05, + "loss": 1.4023429870605468, + "step": 456100 + }, + { + "epoch": 60.82666666666667, + "grad_norm": 0.8209180235862732, + "learning_rate": 1.9600666666666667e-05, + "loss": 1.4042745971679687, + "step": 456200 + }, + { + "epoch": 60.84, + "grad_norm": 0.9050608277320862, + "learning_rate": 1.9594000000000002e-05, + "loss": 1.4010504150390626, + "step": 456300 + }, + { + "epoch": 60.85333333333333, + "grad_norm": 0.8617534637451172, + "learning_rate": 1.9587333333333335e-05, + "loss": 1.4049598693847656, + "step": 456400 + }, + { + "epoch": 60.86666666666667, + "grad_norm": 0.8977437615394592, + "learning_rate": 1.9580666666666667e-05, + "loss": 1.408564910888672, + "step": 456500 + }, + { + "epoch": 60.88, + "grad_norm": 0.9017003178596497, + "learning_rate": 1.9574e-05, + "loss": 1.4092807006835937, + "step": 456600 + }, + { + "epoch": 60.89333333333333, + "grad_norm": 0.8867468237876892, + "learning_rate": 1.9567333333333335e-05, + "loss": 1.4079061889648437, + "step": 456700 + }, + { + "epoch": 60.906666666666666, + "grad_norm": 0.9068670868873596, + "learning_rate": 1.9560666666666667e-05, + "loss": 1.408272705078125, + "step": 456800 + }, + { + "epoch": 60.92, + "grad_norm": 0.9402436017990112, + "learning_rate": 1.9554e-05, + "loss": 1.4082586669921875, + "step": 456900 + }, + { + "epoch": 60.93333333333333, + "grad_norm": 0.8949838280677795, + "learning_rate": 1.9547333333333335e-05, + "loss": 1.4101248168945313, + "step": 457000 + }, + { + "epoch": 60.946666666666665, + "grad_norm": 0.8980549573898315, + "learning_rate": 1.9540666666666667e-05, + "loss": 1.4082913208007812, + "step": 457100 + }, + { + "epoch": 60.96, + "grad_norm": 0.8805965781211853, + "learning_rate": 1.9534000000000003e-05, + "loss": 1.4107188415527343, + "step": 457200 + }, + { + "epoch": 60.973333333333336, + "grad_norm": 0.8333622217178345, + "learning_rate": 1.9527333333333332e-05, + "loss": 1.40792236328125, + "step": 457300 + }, + { + "epoch": 60.986666666666665, + "grad_norm": 0.872611403465271, + "learning_rate": 1.9520666666666668e-05, + "loss": 1.4117628479003905, + "step": 457400 + }, + { + "epoch": 61.0, + "grad_norm": 0.8566659092903137, + "learning_rate": 1.9514000000000003e-05, + "loss": 1.409874725341797, + "step": 457500 + }, + { + "epoch": 61.013333333333335, + "grad_norm": 0.8656761050224304, + "learning_rate": 1.9507333333333332e-05, + "loss": 1.3577760314941407, + "step": 457600 + }, + { + "epoch": 61.026666666666664, + "grad_norm": 0.8465045094490051, + "learning_rate": 1.9500733333333335e-05, + "loss": 1.358833770751953, + "step": 457700 + }, + { + "epoch": 61.04, + "grad_norm": 0.8309293985366821, + "learning_rate": 1.949406666666667e-05, + "loss": 1.356152801513672, + "step": 457800 + }, + { + "epoch": 61.053333333333335, + "grad_norm": 0.9162067174911499, + "learning_rate": 1.94874e-05, + "loss": 1.355301971435547, + "step": 457900 + }, + { + "epoch": 61.06666666666667, + "grad_norm": 0.9088298678398132, + "learning_rate": 1.9480733333333335e-05, + "loss": 1.3575556945800782, + "step": 458000 + }, + { + "epoch": 61.08, + "grad_norm": 0.8428143262863159, + "learning_rate": 1.9474066666666667e-05, + "loss": 1.3585945129394532, + "step": 458100 + }, + { + "epoch": 61.093333333333334, + "grad_norm": 0.8562920093536377, + "learning_rate": 1.9467400000000003e-05, + "loss": 1.361529541015625, + "step": 458200 + }, + { + "epoch": 61.10666666666667, + "grad_norm": 0.8210142254829407, + "learning_rate": 1.9460733333333335e-05, + "loss": 1.3608488464355468, + "step": 458300 + }, + { + "epoch": 61.12, + "grad_norm": 0.8906102180480957, + "learning_rate": 1.9454066666666667e-05, + "loss": 1.3610110473632813, + "step": 458400 + }, + { + "epoch": 61.13333333333333, + "grad_norm": 0.8572280406951904, + "learning_rate": 1.9447400000000003e-05, + "loss": 1.359154510498047, + "step": 458500 + }, + { + "epoch": 61.14666666666667, + "grad_norm": 0.8383269906044006, + "learning_rate": 1.9440733333333332e-05, + "loss": 1.3642387390136719, + "step": 458600 + }, + { + "epoch": 61.16, + "grad_norm": 0.8838930726051331, + "learning_rate": 1.9434066666666667e-05, + "loss": 1.3644644165039062, + "step": 458700 + }, + { + "epoch": 61.17333333333333, + "grad_norm": 0.8675736784934998, + "learning_rate": 1.94274e-05, + "loss": 1.3637721252441406, + "step": 458800 + }, + { + "epoch": 61.18666666666667, + "grad_norm": 0.8860127329826355, + "learning_rate": 1.9420733333333335e-05, + "loss": 1.3696493530273437, + "step": 458900 + }, + { + "epoch": 61.2, + "grad_norm": 0.8294709920883179, + "learning_rate": 1.9414066666666668e-05, + "loss": 1.3652156066894532, + "step": 459000 + }, + { + "epoch": 61.21333333333333, + "grad_norm": 0.8422327041625977, + "learning_rate": 1.94074e-05, + "loss": 1.36591064453125, + "step": 459100 + }, + { + "epoch": 61.22666666666667, + "grad_norm": 0.8764711618423462, + "learning_rate": 1.9400733333333336e-05, + "loss": 1.3690542602539062, + "step": 459200 + }, + { + "epoch": 61.24, + "grad_norm": 0.8453260064125061, + "learning_rate": 1.9394066666666668e-05, + "loss": 1.3683854675292968, + "step": 459300 + }, + { + "epoch": 61.25333333333333, + "grad_norm": 0.8774312734603882, + "learning_rate": 1.93874e-05, + "loss": 1.3740834045410155, + "step": 459400 + }, + { + "epoch": 61.266666666666666, + "grad_norm": 0.8766496777534485, + "learning_rate": 1.9380733333333336e-05, + "loss": 1.3723397827148438, + "step": 459500 + }, + { + "epoch": 61.28, + "grad_norm": 0.8459547162055969, + "learning_rate": 1.9374066666666668e-05, + "loss": 1.3714936828613282, + "step": 459600 + }, + { + "epoch": 61.29333333333334, + "grad_norm": 0.8652738332748413, + "learning_rate": 1.9367466666666667e-05, + "loss": 1.3694456481933595, + "step": 459700 + }, + { + "epoch": 61.306666666666665, + "grad_norm": 0.8927618265151978, + "learning_rate": 1.9360800000000003e-05, + "loss": 1.3731556701660157, + "step": 459800 + }, + { + "epoch": 61.32, + "grad_norm": 0.9212049841880798, + "learning_rate": 1.9354133333333335e-05, + "loss": 1.371415557861328, + "step": 459900 + }, + { + "epoch": 61.333333333333336, + "grad_norm": 0.8938565850257874, + "learning_rate": 1.9347466666666667e-05, + "loss": 1.3725595092773437, + "step": 460000 + }, + { + "epoch": 61.346666666666664, + "grad_norm": 0.9088102579116821, + "learning_rate": 1.93408e-05, + "loss": 1.368966064453125, + "step": 460100 + }, + { + "epoch": 61.36, + "grad_norm": 0.8691730499267578, + "learning_rate": 1.9334133333333335e-05, + "loss": 1.374231719970703, + "step": 460200 + }, + { + "epoch": 61.373333333333335, + "grad_norm": 0.922798752784729, + "learning_rate": 1.9327466666666667e-05, + "loss": 1.3764288330078125, + "step": 460300 + }, + { + "epoch": 61.38666666666666, + "grad_norm": 0.83963543176651, + "learning_rate": 1.93208e-05, + "loss": 1.3810987854003907, + "step": 460400 + }, + { + "epoch": 61.4, + "grad_norm": 0.839726448059082, + "learning_rate": 1.9314133333333335e-05, + "loss": 1.3756941223144532, + "step": 460500 + }, + { + "epoch": 61.413333333333334, + "grad_norm": 0.8824960589408875, + "learning_rate": 1.9307466666666668e-05, + "loss": 1.3773788452148437, + "step": 460600 + }, + { + "epoch": 61.42666666666667, + "grad_norm": 0.8845879435539246, + "learning_rate": 1.9300800000000003e-05, + "loss": 1.377089080810547, + "step": 460700 + }, + { + "epoch": 61.44, + "grad_norm": 0.8615458011627197, + "learning_rate": 1.9294133333333332e-05, + "loss": 1.3773002624511719, + "step": 460800 + }, + { + "epoch": 61.45333333333333, + "grad_norm": 0.934096097946167, + "learning_rate": 1.9287466666666668e-05, + "loss": 1.3814968872070312, + "step": 460900 + }, + { + "epoch": 61.46666666666667, + "grad_norm": 0.8833667039871216, + "learning_rate": 1.92808e-05, + "loss": 1.379684295654297, + "step": 461000 + }, + { + "epoch": 61.48, + "grad_norm": 0.8190123438835144, + "learning_rate": 1.9274133333333332e-05, + "loss": 1.3798077392578125, + "step": 461100 + }, + { + "epoch": 61.49333333333333, + "grad_norm": 0.8761352300643921, + "learning_rate": 1.9267466666666668e-05, + "loss": 1.3821427917480469, + "step": 461200 + }, + { + "epoch": 61.50666666666667, + "grad_norm": 0.8497684597969055, + "learning_rate": 1.92608e-05, + "loss": 1.3799111938476563, + "step": 461300 + }, + { + "epoch": 61.52, + "grad_norm": 0.9118313789367676, + "learning_rate": 1.9254133333333336e-05, + "loss": 1.3833085632324218, + "step": 461400 + }, + { + "epoch": 61.53333333333333, + "grad_norm": 0.8651177287101746, + "learning_rate": 1.9247466666666665e-05, + "loss": 1.3809347534179688, + "step": 461500 + }, + { + "epoch": 61.54666666666667, + "grad_norm": 0.889124870300293, + "learning_rate": 1.92408e-05, + "loss": 1.3849130249023438, + "step": 461600 + }, + { + "epoch": 61.56, + "grad_norm": 0.8513779640197754, + "learning_rate": 1.9234200000000003e-05, + "loss": 1.3853852844238281, + "step": 461700 + }, + { + "epoch": 61.57333333333333, + "grad_norm": 0.887895941734314, + "learning_rate": 1.9227533333333332e-05, + "loss": 1.3864006042480468, + "step": 461800 + }, + { + "epoch": 61.586666666666666, + "grad_norm": 0.8509908318519592, + "learning_rate": 1.9220866666666668e-05, + "loss": 1.3839459228515625, + "step": 461900 + }, + { + "epoch": 61.6, + "grad_norm": 0.9221972823143005, + "learning_rate": 1.9214200000000003e-05, + "loss": 1.383968048095703, + "step": 462000 + }, + { + "epoch": 61.61333333333333, + "grad_norm": 0.9250000715255737, + "learning_rate": 1.9207533333333332e-05, + "loss": 1.3876034545898437, + "step": 462100 + }, + { + "epoch": 61.626666666666665, + "grad_norm": 0.8646901845932007, + "learning_rate": 1.9200866666666668e-05, + "loss": 1.3860377502441406, + "step": 462200 + }, + { + "epoch": 61.64, + "grad_norm": 0.861657440662384, + "learning_rate": 1.91942e-05, + "loss": 1.383225555419922, + "step": 462300 + }, + { + "epoch": 61.653333333333336, + "grad_norm": 0.8866887092590332, + "learning_rate": 1.9187533333333336e-05, + "loss": 1.3847361755371095, + "step": 462400 + }, + { + "epoch": 61.666666666666664, + "grad_norm": 0.9262802004814148, + "learning_rate": 1.9180866666666668e-05, + "loss": 1.388157958984375, + "step": 462500 + }, + { + "epoch": 61.68, + "grad_norm": 0.9400535225868225, + "learning_rate": 1.91742e-05, + "loss": 1.393813018798828, + "step": 462600 + }, + { + "epoch": 61.693333333333335, + "grad_norm": 0.8449798822402954, + "learning_rate": 1.9167533333333336e-05, + "loss": 1.3909236145019532, + "step": 462700 + }, + { + "epoch": 61.70666666666666, + "grad_norm": 0.9139823913574219, + "learning_rate": 1.9160866666666668e-05, + "loss": 1.3890992736816405, + "step": 462800 + }, + { + "epoch": 61.72, + "grad_norm": 0.8991366028785706, + "learning_rate": 1.91542e-05, + "loss": 1.3909164428710938, + "step": 462900 + }, + { + "epoch": 61.733333333333334, + "grad_norm": 0.8757520914077759, + "learning_rate": 1.9147533333333333e-05, + "loss": 1.3896699523925782, + "step": 463000 + }, + { + "epoch": 61.74666666666667, + "grad_norm": 0.9049115180969238, + "learning_rate": 1.9140866666666668e-05, + "loss": 1.394837646484375, + "step": 463100 + }, + { + "epoch": 61.76, + "grad_norm": 0.8733699917793274, + "learning_rate": 1.91342e-05, + "loss": 1.3964109802246094, + "step": 463200 + }, + { + "epoch": 61.77333333333333, + "grad_norm": 0.8619510531425476, + "learning_rate": 1.9127533333333333e-05, + "loss": 1.3983462524414063, + "step": 463300 + }, + { + "epoch": 61.78666666666667, + "grad_norm": 0.9041216373443604, + "learning_rate": 1.912086666666667e-05, + "loss": 1.3950437927246093, + "step": 463400 + }, + { + "epoch": 61.8, + "grad_norm": 0.8376539349555969, + "learning_rate": 1.91142e-05, + "loss": 1.3959678649902343, + "step": 463500 + }, + { + "epoch": 61.81333333333333, + "grad_norm": 0.9201698899269104, + "learning_rate": 1.9107533333333336e-05, + "loss": 1.3929420471191407, + "step": 463600 + }, + { + "epoch": 61.82666666666667, + "grad_norm": 0.8924663066864014, + "learning_rate": 1.9100866666666665e-05, + "loss": 1.3928451538085938, + "step": 463700 + }, + { + "epoch": 61.84, + "grad_norm": 0.9583051204681396, + "learning_rate": 1.9094266666666668e-05, + "loss": 1.3949006652832032, + "step": 463800 + }, + { + "epoch": 61.85333333333333, + "grad_norm": 0.9100115299224854, + "learning_rate": 1.90876e-05, + "loss": 1.3972018432617188, + "step": 463900 + }, + { + "epoch": 61.86666666666667, + "grad_norm": 0.8739942908287048, + "learning_rate": 1.9080933333333336e-05, + "loss": 1.3991426086425782, + "step": 464000 + }, + { + "epoch": 61.88, + "grad_norm": 0.8799852728843689, + "learning_rate": 1.9074266666666668e-05, + "loss": 1.3998698425292968, + "step": 464100 + }, + { + "epoch": 61.89333333333333, + "grad_norm": 0.9696583151817322, + "learning_rate": 1.9067600000000004e-05, + "loss": 1.3958427429199218, + "step": 464200 + }, + { + "epoch": 61.906666666666666, + "grad_norm": 0.8549162745475769, + "learning_rate": 1.9060933333333332e-05, + "loss": 1.3939924621582032, + "step": 464300 + }, + { + "epoch": 61.92, + "grad_norm": 0.8806065320968628, + "learning_rate": 1.9054266666666668e-05, + "loss": 1.3964865112304687, + "step": 464400 + }, + { + "epoch": 61.93333333333333, + "grad_norm": 0.9188470840454102, + "learning_rate": 1.90476e-05, + "loss": 1.399241943359375, + "step": 464500 + }, + { + "epoch": 61.946666666666665, + "grad_norm": 0.8856474161148071, + "learning_rate": 1.9040933333333336e-05, + "loss": 1.3998440551757811, + "step": 464600 + }, + { + "epoch": 61.96, + "grad_norm": 0.9105949401855469, + "learning_rate": 1.903426666666667e-05, + "loss": 1.4019500732421875, + "step": 464700 + }, + { + "epoch": 61.973333333333336, + "grad_norm": 0.8759123682975769, + "learning_rate": 1.90276e-05, + "loss": 1.4000885009765625, + "step": 464800 + }, + { + "epoch": 61.986666666666665, + "grad_norm": 0.9017794728279114, + "learning_rate": 1.9020933333333336e-05, + "loss": 1.3990060424804687, + "step": 464900 + }, + { + "epoch": 62.0, + "grad_norm": 0.9188961982727051, + "learning_rate": 1.9014266666666665e-05, + "loss": 1.4041940307617187, + "step": 465000 + }, + { + "epoch": 62.013333333333335, + "grad_norm": 0.8573675751686096, + "learning_rate": 1.90076e-05, + "loss": 1.3513052368164062, + "step": 465100 + }, + { + "epoch": 62.026666666666664, + "grad_norm": 0.8655972480773926, + "learning_rate": 1.9000933333333333e-05, + "loss": 1.3455097961425782, + "step": 465200 + }, + { + "epoch": 62.04, + "grad_norm": 0.8731736540794373, + "learning_rate": 1.899426666666667e-05, + "loss": 1.3468002319335937, + "step": 465300 + }, + { + "epoch": 62.053333333333335, + "grad_norm": 0.8214830756187439, + "learning_rate": 1.89876e-05, + "loss": 1.3466973876953126, + "step": 465400 + }, + { + "epoch": 62.06666666666667, + "grad_norm": 0.8522217273712158, + "learning_rate": 1.8980933333333333e-05, + "loss": 1.3482205200195312, + "step": 465500 + }, + { + "epoch": 62.08, + "grad_norm": 0.8417600989341736, + "learning_rate": 1.897426666666667e-05, + "loss": 1.34806640625, + "step": 465600 + }, + { + "epoch": 62.093333333333334, + "grad_norm": 0.8675144910812378, + "learning_rate": 1.89676e-05, + "loss": 1.3566635131835938, + "step": 465700 + }, + { + "epoch": 62.10666666666667, + "grad_norm": 0.7986916303634644, + "learning_rate": 1.8961e-05, + "loss": 1.353138427734375, + "step": 465800 + }, + { + "epoch": 62.12, + "grad_norm": 0.8446239829063416, + "learning_rate": 1.8954333333333336e-05, + "loss": 1.3517807006835938, + "step": 465900 + }, + { + "epoch": 62.13333333333333, + "grad_norm": 0.8451570272445679, + "learning_rate": 1.8947666666666665e-05, + "loss": 1.3576107788085938, + "step": 466000 + }, + { + "epoch": 62.14666666666667, + "grad_norm": 0.8504143953323364, + "learning_rate": 1.8941e-05, + "loss": 1.357427215576172, + "step": 466100 + }, + { + "epoch": 62.16, + "grad_norm": 0.8272042274475098, + "learning_rate": 1.8934333333333336e-05, + "loss": 1.3584977722167968, + "step": 466200 + }, + { + "epoch": 62.17333333333333, + "grad_norm": 0.8340880274772644, + "learning_rate": 1.892766666666667e-05, + "loss": 1.35913330078125, + "step": 466300 + }, + { + "epoch": 62.18666666666667, + "grad_norm": 0.8207993507385254, + "learning_rate": 1.8921e-05, + "loss": 1.356055908203125, + "step": 466400 + }, + { + "epoch": 62.2, + "grad_norm": 0.8401222229003906, + "learning_rate": 1.8914333333333333e-05, + "loss": 1.3570013427734375, + "step": 466500 + }, + { + "epoch": 62.21333333333333, + "grad_norm": 0.8501874804496765, + "learning_rate": 1.890766666666667e-05, + "loss": 1.3550076293945312, + "step": 466600 + }, + { + "epoch": 62.22666666666667, + "grad_norm": 0.8478946089744568, + "learning_rate": 1.8901e-05, + "loss": 1.3626107788085937, + "step": 466700 + }, + { + "epoch": 62.24, + "grad_norm": 0.889898955821991, + "learning_rate": 1.8894333333333333e-05, + "loss": 1.3627383422851562, + "step": 466800 + }, + { + "epoch": 62.25333333333333, + "grad_norm": 0.8666733503341675, + "learning_rate": 1.888766666666667e-05, + "loss": 1.3645501708984376, + "step": 466900 + }, + { + "epoch": 62.266666666666666, + "grad_norm": 0.9081425070762634, + "learning_rate": 1.8881e-05, + "loss": 1.3609548950195312, + "step": 467000 + }, + { + "epoch": 62.28, + "grad_norm": 0.8720145225524902, + "learning_rate": 1.8874333333333337e-05, + "loss": 1.365575714111328, + "step": 467100 + }, + { + "epoch": 62.29333333333334, + "grad_norm": 0.8420373797416687, + "learning_rate": 1.8867666666666666e-05, + "loss": 1.3625498962402345, + "step": 467200 + }, + { + "epoch": 62.306666666666665, + "grad_norm": 0.8779093623161316, + "learning_rate": 1.8861e-05, + "loss": 1.3643501281738282, + "step": 467300 + }, + { + "epoch": 62.32, + "grad_norm": 0.8036565780639648, + "learning_rate": 1.8854333333333333e-05, + "loss": 1.3618597412109374, + "step": 467400 + }, + { + "epoch": 62.333333333333336, + "grad_norm": 0.8801616430282593, + "learning_rate": 1.8847666666666666e-05, + "loss": 1.3635311889648438, + "step": 467500 + }, + { + "epoch": 62.346666666666664, + "grad_norm": 0.8832975029945374, + "learning_rate": 1.8841e-05, + "loss": 1.3624273681640624, + "step": 467600 + }, + { + "epoch": 62.36, + "grad_norm": 0.8669077157974243, + "learning_rate": 1.8834333333333334e-05, + "loss": 1.3672244262695312, + "step": 467700 + }, + { + "epoch": 62.373333333333335, + "grad_norm": 0.8744094371795654, + "learning_rate": 1.8827733333333333e-05, + "loss": 1.3657164001464843, + "step": 467800 + }, + { + "epoch": 62.38666666666666, + "grad_norm": 0.8977140784263611, + "learning_rate": 1.882106666666667e-05, + "loss": 1.3728543090820313, + "step": 467900 + }, + { + "epoch": 62.4, + "grad_norm": 0.9251410961151123, + "learning_rate": 1.88144e-05, + "loss": 1.3700556945800781, + "step": 468000 + }, + { + "epoch": 62.413333333333334, + "grad_norm": 0.8600748181343079, + "learning_rate": 1.8807733333333336e-05, + "loss": 1.3633903503417968, + "step": 468100 + }, + { + "epoch": 62.42666666666667, + "grad_norm": 0.8662360310554504, + "learning_rate": 1.8801066666666665e-05, + "loss": 1.3714529418945312, + "step": 468200 + }, + { + "epoch": 62.44, + "grad_norm": 0.8972686529159546, + "learning_rate": 1.87944e-05, + "loss": 1.3743254089355468, + "step": 468300 + }, + { + "epoch": 62.45333333333333, + "grad_norm": 0.8791953921318054, + "learning_rate": 1.8787733333333337e-05, + "loss": 1.3700238037109376, + "step": 468400 + }, + { + "epoch": 62.46666666666667, + "grad_norm": 0.8646233677864075, + "learning_rate": 1.8781066666666665e-05, + "loss": 1.3702452087402344, + "step": 468500 + }, + { + "epoch": 62.48, + "grad_norm": 0.8732235431671143, + "learning_rate": 1.87744e-05, + "loss": 1.381118621826172, + "step": 468600 + }, + { + "epoch": 62.49333333333333, + "grad_norm": 0.8889748454093933, + "learning_rate": 1.8767733333333333e-05, + "loss": 1.3723052978515624, + "step": 468700 + }, + { + "epoch": 62.50666666666667, + "grad_norm": 0.8828487992286682, + "learning_rate": 1.876106666666667e-05, + "loss": 1.3749916076660156, + "step": 468800 + }, + { + "epoch": 62.52, + "grad_norm": 0.842641294002533, + "learning_rate": 1.87544e-05, + "loss": 1.3710438537597656, + "step": 468900 + }, + { + "epoch": 62.53333333333333, + "grad_norm": 0.8470684885978699, + "learning_rate": 1.8747733333333333e-05, + "loss": 1.37222412109375, + "step": 469000 + }, + { + "epoch": 62.54666666666667, + "grad_norm": 0.9085938334465027, + "learning_rate": 1.874106666666667e-05, + "loss": 1.3758197021484375, + "step": 469100 + }, + { + "epoch": 62.56, + "grad_norm": 0.8867812156677246, + "learning_rate": 1.87344e-05, + "loss": 1.3802314758300782, + "step": 469200 + }, + { + "epoch": 62.57333333333333, + "grad_norm": 0.8809147477149963, + "learning_rate": 1.8727733333333334e-05, + "loss": 1.3785780334472657, + "step": 469300 + }, + { + "epoch": 62.586666666666666, + "grad_norm": 0.8905417323112488, + "learning_rate": 1.8721066666666666e-05, + "loss": 1.3713362121582031, + "step": 469400 + }, + { + "epoch": 62.6, + "grad_norm": 0.8625428080558777, + "learning_rate": 1.87144e-05, + "loss": 1.3784394836425782, + "step": 469500 + }, + { + "epoch": 62.61333333333333, + "grad_norm": 0.8563883304595947, + "learning_rate": 1.8707733333333334e-05, + "loss": 1.3763919067382813, + "step": 469600 + }, + { + "epoch": 62.626666666666665, + "grad_norm": 0.9011384844779968, + "learning_rate": 1.8701066666666666e-05, + "loss": 1.379695587158203, + "step": 469700 + }, + { + "epoch": 62.64, + "grad_norm": 0.8625617623329163, + "learning_rate": 1.8694400000000002e-05, + "loss": 1.376241455078125, + "step": 469800 + }, + { + "epoch": 62.653333333333336, + "grad_norm": 0.9148832559585571, + "learning_rate": 1.86878e-05, + "loss": 1.3796707153320313, + "step": 469900 + }, + { + "epoch": 62.666666666666664, + "grad_norm": 0.8644863367080688, + "learning_rate": 1.8681133333333333e-05, + "loss": 1.3743251037597657, + "step": 470000 + }, + { + "epoch": 62.68, + "grad_norm": 0.8707835674285889, + "learning_rate": 1.867446666666667e-05, + "loss": 1.3785989379882813, + "step": 470100 + }, + { + "epoch": 62.693333333333335, + "grad_norm": 0.8736674785614014, + "learning_rate": 1.86678e-05, + "loss": 1.3785296630859376, + "step": 470200 + }, + { + "epoch": 62.70666666666666, + "grad_norm": 0.8863952159881592, + "learning_rate": 1.8661133333333333e-05, + "loss": 1.3846035766601563, + "step": 470300 + }, + { + "epoch": 62.72, + "grad_norm": 0.8530660271644592, + "learning_rate": 1.865446666666667e-05, + "loss": 1.3847772216796874, + "step": 470400 + }, + { + "epoch": 62.733333333333334, + "grad_norm": 0.9117617607116699, + "learning_rate": 1.86478e-05, + "loss": 1.379307403564453, + "step": 470500 + }, + { + "epoch": 62.74666666666667, + "grad_norm": 0.9356516003608704, + "learning_rate": 1.8641133333333337e-05, + "loss": 1.3868818664550782, + "step": 470600 + }, + { + "epoch": 62.76, + "grad_norm": 0.9563553929328918, + "learning_rate": 1.8634466666666666e-05, + "loss": 1.3831312561035156, + "step": 470700 + }, + { + "epoch": 62.77333333333333, + "grad_norm": 0.8613978028297424, + "learning_rate": 1.86278e-05, + "loss": 1.386735382080078, + "step": 470800 + }, + { + "epoch": 62.78666666666667, + "grad_norm": 0.8880415558815002, + "learning_rate": 1.8621133333333334e-05, + "loss": 1.3830174255371093, + "step": 470900 + }, + { + "epoch": 62.8, + "grad_norm": 0.8753419518470764, + "learning_rate": 1.861446666666667e-05, + "loss": 1.3831968688964844, + "step": 471000 + }, + { + "epoch": 62.81333333333333, + "grad_norm": 0.8973806500434875, + "learning_rate": 1.86078e-05, + "loss": 1.384782257080078, + "step": 471100 + }, + { + "epoch": 62.82666666666667, + "grad_norm": 0.8728386759757996, + "learning_rate": 1.8601133333333334e-05, + "loss": 1.3836083984375, + "step": 471200 + }, + { + "epoch": 62.84, + "grad_norm": 0.8542366623878479, + "learning_rate": 1.859446666666667e-05, + "loss": 1.3806695556640625, + "step": 471300 + }, + { + "epoch": 62.85333333333333, + "grad_norm": 0.9084987640380859, + "learning_rate": 1.85878e-05, + "loss": 1.3919306945800782, + "step": 471400 + }, + { + "epoch": 62.86666666666667, + "grad_norm": 0.9229134321212769, + "learning_rate": 1.8581133333333334e-05, + "loss": 1.3888737487792968, + "step": 471500 + }, + { + "epoch": 62.88, + "grad_norm": 0.9117254614830017, + "learning_rate": 1.8574466666666666e-05, + "loss": 1.389185791015625, + "step": 471600 + }, + { + "epoch": 62.89333333333333, + "grad_norm": 0.9002920389175415, + "learning_rate": 1.8567800000000002e-05, + "loss": 1.3870626831054687, + "step": 471700 + }, + { + "epoch": 62.906666666666666, + "grad_norm": 0.9569069743156433, + "learning_rate": 1.8561133333333334e-05, + "loss": 1.3885276794433594, + "step": 471800 + }, + { + "epoch": 62.92, + "grad_norm": 0.8567367196083069, + "learning_rate": 1.8554533333333333e-05, + "loss": 1.3927679443359375, + "step": 471900 + }, + { + "epoch": 62.93333333333333, + "grad_norm": 0.8821707963943481, + "learning_rate": 1.8547866666666666e-05, + "loss": 1.385771484375, + "step": 472000 + }, + { + "epoch": 62.946666666666665, + "grad_norm": 0.934012234210968, + "learning_rate": 1.85412e-05, + "loss": 1.3942887878417969, + "step": 472100 + }, + { + "epoch": 62.96, + "grad_norm": 0.9266797304153442, + "learning_rate": 1.8534533333333334e-05, + "loss": 1.3928118896484376, + "step": 472200 + }, + { + "epoch": 62.973333333333336, + "grad_norm": 0.9574691653251648, + "learning_rate": 1.852786666666667e-05, + "loss": 1.3905284118652343, + "step": 472300 + }, + { + "epoch": 62.986666666666665, + "grad_norm": 0.924963116645813, + "learning_rate": 1.8521199999999998e-05, + "loss": 1.3944451904296875, + "step": 472400 + }, + { + "epoch": 63.0, + "grad_norm": 0.8816106915473938, + "learning_rate": 1.8514533333333334e-05, + "loss": 1.393121795654297, + "step": 472500 + }, + { + "epoch": 63.013333333333335, + "grad_norm": 0.8383874297142029, + "learning_rate": 1.850786666666667e-05, + "loss": 1.3370849609375, + "step": 472600 + }, + { + "epoch": 63.026666666666664, + "grad_norm": 0.8403507471084595, + "learning_rate": 1.85012e-05, + "loss": 1.3425094604492187, + "step": 472700 + }, + { + "epoch": 63.04, + "grad_norm": 0.8906253576278687, + "learning_rate": 1.8494533333333334e-05, + "loss": 1.340731658935547, + "step": 472800 + }, + { + "epoch": 63.053333333333335, + "grad_norm": 0.9231695532798767, + "learning_rate": 1.8487866666666666e-05, + "loss": 1.3418489074707032, + "step": 472900 + }, + { + "epoch": 63.06666666666667, + "grad_norm": 0.879458487033844, + "learning_rate": 1.8481200000000002e-05, + "loss": 1.3442330932617188, + "step": 473000 + }, + { + "epoch": 63.08, + "grad_norm": 0.8238392472267151, + "learning_rate": 1.8474533333333334e-05, + "loss": 1.3447978210449218, + "step": 473100 + }, + { + "epoch": 63.093333333333334, + "grad_norm": 0.8179836273193359, + "learning_rate": 1.8467866666666666e-05, + "loss": 1.3443252563476562, + "step": 473200 + }, + { + "epoch": 63.10666666666667, + "grad_norm": 0.8274221420288086, + "learning_rate": 1.8461200000000002e-05, + "loss": 1.3449710083007813, + "step": 473300 + }, + { + "epoch": 63.12, + "grad_norm": 0.8805060982704163, + "learning_rate": 1.8454533333333334e-05, + "loss": 1.34772705078125, + "step": 473400 + }, + { + "epoch": 63.13333333333333, + "grad_norm": 0.856552004814148, + "learning_rate": 1.844786666666667e-05, + "loss": 1.34474609375, + "step": 473500 + }, + { + "epoch": 63.14666666666667, + "grad_norm": 0.8999550938606262, + "learning_rate": 1.84412e-05, + "loss": 1.3447769165039063, + "step": 473600 + }, + { + "epoch": 63.16, + "grad_norm": 0.8466945886611938, + "learning_rate": 1.8434533333333335e-05, + "loss": 1.3498774719238282, + "step": 473700 + }, + { + "epoch": 63.17333333333333, + "grad_norm": 0.8720507621765137, + "learning_rate": 1.8427866666666667e-05, + "loss": 1.3509268188476562, + "step": 473800 + }, + { + "epoch": 63.18666666666667, + "grad_norm": 0.8553282618522644, + "learning_rate": 1.84212e-05, + "loss": 1.3472882080078126, + "step": 473900 + }, + { + "epoch": 63.2, + "grad_norm": 0.8717467188835144, + "learning_rate": 1.84146e-05, + "loss": 1.3507821655273438, + "step": 474000 + }, + { + "epoch": 63.21333333333333, + "grad_norm": 0.8789405822753906, + "learning_rate": 1.8407933333333334e-05, + "loss": 1.3463182067871093, + "step": 474100 + }, + { + "epoch": 63.22666666666667, + "grad_norm": 0.8856403231620789, + "learning_rate": 1.8401266666666666e-05, + "loss": 1.3535433959960939, + "step": 474200 + }, + { + "epoch": 63.24, + "grad_norm": 0.8736082911491394, + "learning_rate": 1.8394600000000002e-05, + "loss": 1.353790283203125, + "step": 474300 + }, + { + "epoch": 63.25333333333333, + "grad_norm": 0.8425241112709045, + "learning_rate": 1.8387933333333334e-05, + "loss": 1.3515614318847655, + "step": 474400 + }, + { + "epoch": 63.266666666666666, + "grad_norm": 0.8841555118560791, + "learning_rate": 1.838126666666667e-05, + "loss": 1.357039794921875, + "step": 474500 + }, + { + "epoch": 63.28, + "grad_norm": 0.8851358890533447, + "learning_rate": 1.83746e-05, + "loss": 1.3571649169921876, + "step": 474600 + }, + { + "epoch": 63.29333333333334, + "grad_norm": 0.8119401335716248, + "learning_rate": 1.8367933333333334e-05, + "loss": 1.3512042236328126, + "step": 474700 + }, + { + "epoch": 63.306666666666665, + "grad_norm": 0.8968778848648071, + "learning_rate": 1.836126666666667e-05, + "loss": 1.3547596740722656, + "step": 474800 + }, + { + "epoch": 63.32, + "grad_norm": 0.9098058938980103, + "learning_rate": 1.83546e-05, + "loss": 1.3593733215332031, + "step": 474900 + }, + { + "epoch": 63.333333333333336, + "grad_norm": 0.8831583857536316, + "learning_rate": 1.8347933333333334e-05, + "loss": 1.355583953857422, + "step": 475000 + }, + { + "epoch": 63.346666666666664, + "grad_norm": 0.8631011843681335, + "learning_rate": 1.8341266666666667e-05, + "loss": 1.3582133483886718, + "step": 475100 + }, + { + "epoch": 63.36, + "grad_norm": 0.8748294115066528, + "learning_rate": 1.8334600000000002e-05, + "loss": 1.359095458984375, + "step": 475200 + }, + { + "epoch": 63.373333333333335, + "grad_norm": 0.8583943247795105, + "learning_rate": 1.8327933333333335e-05, + "loss": 1.3613153076171876, + "step": 475300 + }, + { + "epoch": 63.38666666666666, + "grad_norm": 0.8866649270057678, + "learning_rate": 1.8321266666666667e-05, + "loss": 1.3615292358398436, + "step": 475400 + }, + { + "epoch": 63.4, + "grad_norm": 0.8681355714797974, + "learning_rate": 1.8314600000000002e-05, + "loss": 1.3599000549316407, + "step": 475500 + }, + { + "epoch": 63.413333333333334, + "grad_norm": 0.9076934456825256, + "learning_rate": 1.8307933333333335e-05, + "loss": 1.3641069030761719, + "step": 475600 + }, + { + "epoch": 63.42666666666667, + "grad_norm": 0.8490332961082458, + "learning_rate": 1.8301266666666667e-05, + "loss": 1.3651712036132813, + "step": 475700 + }, + { + "epoch": 63.44, + "grad_norm": 0.8959413170814514, + "learning_rate": 1.82946e-05, + "loss": 1.3646134948730468, + "step": 475800 + }, + { + "epoch": 63.45333333333333, + "grad_norm": 0.843246340751648, + "learning_rate": 1.8287933333333335e-05, + "loss": 1.362332763671875, + "step": 475900 + }, + { + "epoch": 63.46666666666667, + "grad_norm": 0.874142050743103, + "learning_rate": 1.8281333333333334e-05, + "loss": 1.3656585693359375, + "step": 476000 + }, + { + "epoch": 63.48, + "grad_norm": 0.9227689504623413, + "learning_rate": 1.8274666666666666e-05, + "loss": 1.3628779602050782, + "step": 476100 + }, + { + "epoch": 63.49333333333333, + "grad_norm": 0.8379034399986267, + "learning_rate": 1.8268000000000002e-05, + "loss": 1.3627792358398438, + "step": 476200 + }, + { + "epoch": 63.50666666666667, + "grad_norm": 0.8998229503631592, + "learning_rate": 1.8261333333333334e-05, + "loss": 1.3685745239257812, + "step": 476300 + }, + { + "epoch": 63.52, + "grad_norm": 0.9073343276977539, + "learning_rate": 1.8254666666666666e-05, + "loss": 1.3673577880859376, + "step": 476400 + }, + { + "epoch": 63.53333333333333, + "grad_norm": 0.8960281014442444, + "learning_rate": 1.8248000000000002e-05, + "loss": 1.3650401306152344, + "step": 476500 + }, + { + "epoch": 63.54666666666667, + "grad_norm": 0.8500860333442688, + "learning_rate": 1.8241333333333334e-05, + "loss": 1.363343505859375, + "step": 476600 + }, + { + "epoch": 63.56, + "grad_norm": 0.9132857918739319, + "learning_rate": 1.8234666666666667e-05, + "loss": 1.3673420715332032, + "step": 476700 + }, + { + "epoch": 63.57333333333333, + "grad_norm": 0.851512610912323, + "learning_rate": 1.8228e-05, + "loss": 1.3654722595214843, + "step": 476800 + }, + { + "epoch": 63.586666666666666, + "grad_norm": 0.9432153701782227, + "learning_rate": 1.8221333333333335e-05, + "loss": 1.37032470703125, + "step": 476900 + }, + { + "epoch": 63.6, + "grad_norm": 0.8776945471763611, + "learning_rate": 1.821466666666667e-05, + "loss": 1.3680665588378906, + "step": 477000 + }, + { + "epoch": 63.61333333333333, + "grad_norm": 0.8363541960716248, + "learning_rate": 1.8208e-05, + "loss": 1.3700338745117187, + "step": 477100 + }, + { + "epoch": 63.626666666666665, + "grad_norm": 0.8852552771568298, + "learning_rate": 1.8201333333333335e-05, + "loss": 1.367037811279297, + "step": 477200 + }, + { + "epoch": 63.64, + "grad_norm": 0.9047751426696777, + "learning_rate": 1.8194666666666667e-05, + "loss": 1.3724662780761718, + "step": 477300 + }, + { + "epoch": 63.653333333333336, + "grad_norm": 0.9022383093833923, + "learning_rate": 1.8188e-05, + "loss": 1.36989013671875, + "step": 477400 + }, + { + "epoch": 63.666666666666664, + "grad_norm": 0.8873071670532227, + "learning_rate": 1.8181333333333335e-05, + "loss": 1.3709544372558593, + "step": 477500 + }, + { + "epoch": 63.68, + "grad_norm": 0.8178770542144775, + "learning_rate": 1.8174666666666667e-05, + "loss": 1.3764271545410156, + "step": 477600 + }, + { + "epoch": 63.693333333333335, + "grad_norm": 0.8374172449111938, + "learning_rate": 1.8168000000000003e-05, + "loss": 1.3749362182617189, + "step": 477700 + }, + { + "epoch": 63.70666666666666, + "grad_norm": 0.8704270124435425, + "learning_rate": 1.8161333333333332e-05, + "loss": 1.3716815185546876, + "step": 477800 + }, + { + "epoch": 63.72, + "grad_norm": 0.8928576111793518, + "learning_rate": 1.8154666666666667e-05, + "loss": 1.3758961486816406, + "step": 477900 + }, + { + "epoch": 63.733333333333334, + "grad_norm": 0.8924788236618042, + "learning_rate": 1.814806666666667e-05, + "loss": 1.3712451171875, + "step": 478000 + }, + { + "epoch": 63.74666666666667, + "grad_norm": 0.9000948071479797, + "learning_rate": 1.81414e-05, + "loss": 1.3741796875, + "step": 478100 + }, + { + "epoch": 63.76, + "grad_norm": 0.8834265470504761, + "learning_rate": 1.8134733333333334e-05, + "loss": 1.3737052917480468, + "step": 478200 + }, + { + "epoch": 63.77333333333333, + "grad_norm": 0.9444625377655029, + "learning_rate": 1.8128066666666667e-05, + "loss": 1.373978729248047, + "step": 478300 + }, + { + "epoch": 63.78666666666667, + "grad_norm": 0.9131369590759277, + "learning_rate": 1.81214e-05, + "loss": 1.376599578857422, + "step": 478400 + }, + { + "epoch": 63.8, + "grad_norm": 0.9047242999076843, + "learning_rate": 1.8114733333333335e-05, + "loss": 1.3785902404785155, + "step": 478500 + }, + { + "epoch": 63.81333333333333, + "grad_norm": 0.9182378649711609, + "learning_rate": 1.8108066666666667e-05, + "loss": 1.3755938720703125, + "step": 478600 + }, + { + "epoch": 63.82666666666667, + "grad_norm": 0.8585050106048584, + "learning_rate": 1.8101400000000003e-05, + "loss": 1.378345947265625, + "step": 478700 + }, + { + "epoch": 63.84, + "grad_norm": 0.9279830455780029, + "learning_rate": 1.809473333333333e-05, + "loss": 1.3787484741210938, + "step": 478800 + }, + { + "epoch": 63.85333333333333, + "grad_norm": 0.9332795739173889, + "learning_rate": 1.8088066666666667e-05, + "loss": 1.375228271484375, + "step": 478900 + }, + { + "epoch": 63.86666666666667, + "grad_norm": 0.8513908386230469, + "learning_rate": 1.8081400000000003e-05, + "loss": 1.3808787536621094, + "step": 479000 + }, + { + "epoch": 63.88, + "grad_norm": 0.8637625575065613, + "learning_rate": 1.8074733333333335e-05, + "loss": 1.3811036682128905, + "step": 479100 + }, + { + "epoch": 63.89333333333333, + "grad_norm": 0.8872289061546326, + "learning_rate": 1.8068066666666667e-05, + "loss": 1.3788679504394532, + "step": 479200 + }, + { + "epoch": 63.906666666666666, + "grad_norm": 0.8666730523109436, + "learning_rate": 1.80614e-05, + "loss": 1.3822543334960937, + "step": 479300 + }, + { + "epoch": 63.92, + "grad_norm": 0.8657490015029907, + "learning_rate": 1.8054733333333335e-05, + "loss": 1.3822019958496095, + "step": 479400 + }, + { + "epoch": 63.93333333333333, + "grad_norm": 0.8995828032493591, + "learning_rate": 1.8048066666666667e-05, + "loss": 1.3845445251464843, + "step": 479500 + }, + { + "epoch": 63.946666666666665, + "grad_norm": 0.882078230381012, + "learning_rate": 1.80414e-05, + "loss": 1.3831179809570313, + "step": 479600 + }, + { + "epoch": 63.96, + "grad_norm": 0.9140791296958923, + "learning_rate": 1.8034733333333335e-05, + "loss": 1.38243408203125, + "step": 479700 + }, + { + "epoch": 63.973333333333336, + "grad_norm": 0.9000608921051025, + "learning_rate": 1.8028066666666668e-05, + "loss": 1.3803366088867188, + "step": 479800 + }, + { + "epoch": 63.986666666666665, + "grad_norm": 0.8583875894546509, + "learning_rate": 1.8021400000000003e-05, + "loss": 1.378529052734375, + "step": 479900 + }, + { + "epoch": 64.0, + "grad_norm": 0.8945102095603943, + "learning_rate": 1.8014800000000002e-05, + "loss": 1.384607696533203, + "step": 480000 + }, + { + "epoch": 64.01333333333334, + "grad_norm": 0.8934009671211243, + "learning_rate": 1.8008133333333335e-05, + "loss": 1.3323703002929688, + "step": 480100 + }, + { + "epoch": 64.02666666666667, + "grad_norm": 0.9144300222396851, + "learning_rate": 1.8001466666666667e-05, + "loss": 1.330888671875, + "step": 480200 + }, + { + "epoch": 64.04, + "grad_norm": 0.8587374091148376, + "learning_rate": 1.79948e-05, + "loss": 1.3373068237304688, + "step": 480300 + }, + { + "epoch": 64.05333333333333, + "grad_norm": 0.8584490418434143, + "learning_rate": 1.7988133333333335e-05, + "loss": 1.3341929626464843, + "step": 480400 + }, + { + "epoch": 64.06666666666666, + "grad_norm": 0.8442391753196716, + "learning_rate": 1.7981466666666667e-05, + "loss": 1.3336114501953125, + "step": 480500 + }, + { + "epoch": 64.08, + "grad_norm": 0.8665919899940491, + "learning_rate": 1.79748e-05, + "loss": 1.338314208984375, + "step": 480600 + }, + { + "epoch": 64.09333333333333, + "grad_norm": 0.8454016447067261, + "learning_rate": 1.7968133333333335e-05, + "loss": 1.3366471862792968, + "step": 480700 + }, + { + "epoch": 64.10666666666667, + "grad_norm": 0.8860534429550171, + "learning_rate": 1.7961466666666667e-05, + "loss": 1.3377793884277345, + "step": 480800 + }, + { + "epoch": 64.12, + "grad_norm": 0.8886109590530396, + "learning_rate": 1.7954800000000003e-05, + "loss": 1.3379669189453125, + "step": 480900 + }, + { + "epoch": 64.13333333333334, + "grad_norm": 0.8925758600234985, + "learning_rate": 1.7948133333333332e-05, + "loss": 1.33873046875, + "step": 481000 + }, + { + "epoch": 64.14666666666666, + "grad_norm": 0.8780699968338013, + "learning_rate": 1.7941466666666668e-05, + "loss": 1.3358087158203125, + "step": 481100 + }, + { + "epoch": 64.16, + "grad_norm": 0.8357890844345093, + "learning_rate": 1.7934800000000003e-05, + "loss": 1.3425820922851563, + "step": 481200 + }, + { + "epoch": 64.17333333333333, + "grad_norm": 0.8988547921180725, + "learning_rate": 1.7928133333333332e-05, + "loss": 1.3423739624023439, + "step": 481300 + }, + { + "epoch": 64.18666666666667, + "grad_norm": 0.8725674152374268, + "learning_rate": 1.7921466666666668e-05, + "loss": 1.3443193054199218, + "step": 481400 + }, + { + "epoch": 64.2, + "grad_norm": 0.9312418103218079, + "learning_rate": 1.79148e-05, + "loss": 1.340561065673828, + "step": 481500 + }, + { + "epoch": 64.21333333333334, + "grad_norm": 0.9096835255622864, + "learning_rate": 1.7908133333333336e-05, + "loss": 1.3408326721191406, + "step": 481600 + }, + { + "epoch": 64.22666666666667, + "grad_norm": 0.869185745716095, + "learning_rate": 1.7901466666666668e-05, + "loss": 1.3416743469238281, + "step": 481700 + }, + { + "epoch": 64.24, + "grad_norm": 0.8828217387199402, + "learning_rate": 1.78948e-05, + "loss": 1.34640625, + "step": 481800 + }, + { + "epoch": 64.25333333333333, + "grad_norm": 0.8781388401985168, + "learning_rate": 1.7888133333333336e-05, + "loss": 1.3463336181640626, + "step": 481900 + }, + { + "epoch": 64.26666666666667, + "grad_norm": 0.8844797611236572, + "learning_rate": 1.7881466666666668e-05, + "loss": 1.3434307861328125, + "step": 482000 + }, + { + "epoch": 64.28, + "grad_norm": 0.9093835949897766, + "learning_rate": 1.7874866666666667e-05, + "loss": 1.3477468872070313, + "step": 482100 + }, + { + "epoch": 64.29333333333334, + "grad_norm": 0.9038063287734985, + "learning_rate": 1.7868200000000003e-05, + "loss": 1.3481039428710937, + "step": 482200 + }, + { + "epoch": 64.30666666666667, + "grad_norm": 0.8139824867248535, + "learning_rate": 1.7861533333333332e-05, + "loss": 1.34718505859375, + "step": 482300 + }, + { + "epoch": 64.32, + "grad_norm": 0.8709118366241455, + "learning_rate": 1.7854866666666667e-05, + "loss": 1.3521086120605468, + "step": 482400 + }, + { + "epoch": 64.33333333333333, + "grad_norm": 0.8406969904899597, + "learning_rate": 1.78482e-05, + "loss": 1.3482559204101563, + "step": 482500 + }, + { + "epoch": 64.34666666666666, + "grad_norm": 0.8496643304824829, + "learning_rate": 1.7841533333333335e-05, + "loss": 1.3503038024902343, + "step": 482600 + }, + { + "epoch": 64.36, + "grad_norm": 0.8447983264923096, + "learning_rate": 1.7834866666666668e-05, + "loss": 1.3484323120117188, + "step": 482700 + }, + { + "epoch": 64.37333333333333, + "grad_norm": 0.9065347909927368, + "learning_rate": 1.78282e-05, + "loss": 1.350572052001953, + "step": 482800 + }, + { + "epoch": 64.38666666666667, + "grad_norm": 0.8340687155723572, + "learning_rate": 1.7821533333333335e-05, + "loss": 1.3543763732910157, + "step": 482900 + }, + { + "epoch": 64.4, + "grad_norm": 0.8966395854949951, + "learning_rate": 1.7814866666666668e-05, + "loss": 1.3548075866699218, + "step": 483000 + }, + { + "epoch": 64.41333333333333, + "grad_norm": 0.8993328809738159, + "learning_rate": 1.78082e-05, + "loss": 1.354648895263672, + "step": 483100 + }, + { + "epoch": 64.42666666666666, + "grad_norm": 0.9374759793281555, + "learning_rate": 1.7801533333333332e-05, + "loss": 1.361200714111328, + "step": 483200 + }, + { + "epoch": 64.44, + "grad_norm": 0.8411123752593994, + "learning_rate": 1.7794866666666668e-05, + "loss": 1.3539253234863282, + "step": 483300 + }, + { + "epoch": 64.45333333333333, + "grad_norm": 0.8600159287452698, + "learning_rate": 1.7788200000000004e-05, + "loss": 1.3555935668945311, + "step": 483400 + }, + { + "epoch": 64.46666666666667, + "grad_norm": 0.8644974827766418, + "learning_rate": 1.7781533333333332e-05, + "loss": 1.3521513366699218, + "step": 483500 + }, + { + "epoch": 64.48, + "grad_norm": 0.8847560882568359, + "learning_rate": 1.7774866666666668e-05, + "loss": 1.3578965759277344, + "step": 483600 + }, + { + "epoch": 64.49333333333334, + "grad_norm": 0.9277763366699219, + "learning_rate": 1.77682e-05, + "loss": 1.3535302734375, + "step": 483700 + }, + { + "epoch": 64.50666666666666, + "grad_norm": 0.8610851168632507, + "learning_rate": 1.7761533333333333e-05, + "loss": 1.3627682495117188, + "step": 483800 + }, + { + "epoch": 64.52, + "grad_norm": 0.9150212407112122, + "learning_rate": 1.775486666666667e-05, + "loss": 1.3568341064453124, + "step": 483900 + }, + { + "epoch": 64.53333333333333, + "grad_norm": 0.8788309097290039, + "learning_rate": 1.77482e-05, + "loss": 1.35930908203125, + "step": 484000 + }, + { + "epoch": 64.54666666666667, + "grad_norm": 0.877782940864563, + "learning_rate": 1.77416e-05, + "loss": 1.3600112915039062, + "step": 484100 + }, + { + "epoch": 64.56, + "grad_norm": 0.8888121843338013, + "learning_rate": 1.7734933333333335e-05, + "loss": 1.3572149658203125, + "step": 484200 + }, + { + "epoch": 64.57333333333334, + "grad_norm": 0.884781539440155, + "learning_rate": 1.7728266666666668e-05, + "loss": 1.358846435546875, + "step": 484300 + }, + { + "epoch": 64.58666666666667, + "grad_norm": 0.8472477793693542, + "learning_rate": 1.7721600000000003e-05, + "loss": 1.3618157958984376, + "step": 484400 + }, + { + "epoch": 64.6, + "grad_norm": 0.8843161463737488, + "learning_rate": 1.7714933333333332e-05, + "loss": 1.3596778869628907, + "step": 484500 + }, + { + "epoch": 64.61333333333333, + "grad_norm": 0.8994573950767517, + "learning_rate": 1.7708266666666668e-05, + "loss": 1.3632307434082032, + "step": 484600 + }, + { + "epoch": 64.62666666666667, + "grad_norm": 0.8576304316520691, + "learning_rate": 1.77016e-05, + "loss": 1.363969268798828, + "step": 484700 + }, + { + "epoch": 64.64, + "grad_norm": 0.9063739776611328, + "learning_rate": 1.7694933333333332e-05, + "loss": 1.3635774230957032, + "step": 484800 + }, + { + "epoch": 64.65333333333334, + "grad_norm": 0.9036448001861572, + "learning_rate": 1.7688266666666668e-05, + "loss": 1.3654200744628906, + "step": 484900 + }, + { + "epoch": 64.66666666666667, + "grad_norm": 0.8992440104484558, + "learning_rate": 1.76816e-05, + "loss": 1.363550262451172, + "step": 485000 + }, + { + "epoch": 64.68, + "grad_norm": 0.9224612712860107, + "learning_rate": 1.7674933333333336e-05, + "loss": 1.363682403564453, + "step": 485100 + }, + { + "epoch": 64.69333333333333, + "grad_norm": 0.9652465581893921, + "learning_rate": 1.7668266666666665e-05, + "loss": 1.361661376953125, + "step": 485200 + }, + { + "epoch": 64.70666666666666, + "grad_norm": 0.9061663150787354, + "learning_rate": 1.76616e-05, + "loss": 1.3631404113769532, + "step": 485300 + }, + { + "epoch": 64.72, + "grad_norm": 0.8742295503616333, + "learning_rate": 1.7654933333333336e-05, + "loss": 1.365829620361328, + "step": 485400 + }, + { + "epoch": 64.73333333333333, + "grad_norm": 0.8189981579780579, + "learning_rate": 1.764826666666667e-05, + "loss": 1.3672276306152344, + "step": 485500 + }, + { + "epoch": 64.74666666666667, + "grad_norm": 0.9038211107254028, + "learning_rate": 1.76416e-05, + "loss": 1.367249755859375, + "step": 485600 + }, + { + "epoch": 64.76, + "grad_norm": 0.9079329967498779, + "learning_rate": 1.7634933333333333e-05, + "loss": 1.3658090209960938, + "step": 485700 + }, + { + "epoch": 64.77333333333333, + "grad_norm": 0.8886961340904236, + "learning_rate": 1.762826666666667e-05, + "loss": 1.3678729248046875, + "step": 485800 + }, + { + "epoch": 64.78666666666666, + "grad_norm": 0.8585326671600342, + "learning_rate": 1.76216e-05, + "loss": 1.3665878295898437, + "step": 485900 + }, + { + "epoch": 64.8, + "grad_norm": 0.8595222234725952, + "learning_rate": 1.7614933333333333e-05, + "loss": 1.370436553955078, + "step": 486000 + }, + { + "epoch": 64.81333333333333, + "grad_norm": 0.8745478987693787, + "learning_rate": 1.7608333333333336e-05, + "loss": 1.366385955810547, + "step": 486100 + }, + { + "epoch": 64.82666666666667, + "grad_norm": 0.8671027421951294, + "learning_rate": 1.7601666666666668e-05, + "loss": 1.3709756469726562, + "step": 486200 + }, + { + "epoch": 64.84, + "grad_norm": 0.8887233734130859, + "learning_rate": 1.7595e-05, + "loss": 1.3694778442382813, + "step": 486300 + }, + { + "epoch": 64.85333333333334, + "grad_norm": 0.8951408863067627, + "learning_rate": 1.7588333333333336e-05, + "loss": 1.3722352600097656, + "step": 486400 + }, + { + "epoch": 64.86666666666666, + "grad_norm": 0.9203891158103943, + "learning_rate": 1.7581666666666668e-05, + "loss": 1.3695021057128907, + "step": 486500 + }, + { + "epoch": 64.88, + "grad_norm": 0.8783578872680664, + "learning_rate": 1.7575e-05, + "loss": 1.3721949768066406, + "step": 486600 + }, + { + "epoch": 64.89333333333333, + "grad_norm": 0.8755213618278503, + "learning_rate": 1.7568333333333333e-05, + "loss": 1.3693832397460937, + "step": 486700 + }, + { + "epoch": 64.90666666666667, + "grad_norm": 0.8497536182403564, + "learning_rate": 1.7561666666666668e-05, + "loss": 1.3738072204589844, + "step": 486800 + }, + { + "epoch": 64.92, + "grad_norm": 0.8674045205116272, + "learning_rate": 1.7555e-05, + "loss": 1.3736123657226562, + "step": 486900 + }, + { + "epoch": 64.93333333333334, + "grad_norm": 0.924431562423706, + "learning_rate": 1.7548333333333333e-05, + "loss": 1.3719955444335938, + "step": 487000 + }, + { + "epoch": 64.94666666666667, + "grad_norm": 0.9057454466819763, + "learning_rate": 1.754166666666667e-05, + "loss": 1.3727705383300781, + "step": 487100 + }, + { + "epoch": 64.96, + "grad_norm": 0.8692907691001892, + "learning_rate": 1.7535e-05, + "loss": 1.3746487426757812, + "step": 487200 + }, + { + "epoch": 64.97333333333333, + "grad_norm": 0.9203537106513977, + "learning_rate": 1.7528333333333336e-05, + "loss": 1.37078369140625, + "step": 487300 + }, + { + "epoch": 64.98666666666666, + "grad_norm": 0.929847240447998, + "learning_rate": 1.7521666666666665e-05, + "loss": 1.3816091918945312, + "step": 487400 + }, + { + "epoch": 65.0, + "grad_norm": 0.9408981800079346, + "learning_rate": 1.7515e-05, + "loss": 1.3738502502441405, + "step": 487500 + }, + { + "epoch": 65.01333333333334, + "grad_norm": 0.8666677474975586, + "learning_rate": 1.7508333333333337e-05, + "loss": 1.3275274658203124, + "step": 487600 + }, + { + "epoch": 65.02666666666667, + "grad_norm": 0.883374035358429, + "learning_rate": 1.7501666666666665e-05, + "loss": 1.322354278564453, + "step": 487700 + }, + { + "epoch": 65.04, + "grad_norm": 0.9123470187187195, + "learning_rate": 1.7495e-05, + "loss": 1.3236787414550781, + "step": 487800 + }, + { + "epoch": 65.05333333333333, + "grad_norm": 0.8003033399581909, + "learning_rate": 1.7488333333333333e-05, + "loss": 1.3260044860839844, + "step": 487900 + }, + { + "epoch": 65.06666666666666, + "grad_norm": 0.8853775858879089, + "learning_rate": 1.748166666666667e-05, + "loss": 1.3234710693359375, + "step": 488000 + }, + { + "epoch": 65.08, + "grad_norm": 0.8827279806137085, + "learning_rate": 1.7475e-05, + "loss": 1.3306411743164062, + "step": 488100 + }, + { + "epoch": 65.09333333333333, + "grad_norm": 0.8656889200210571, + "learning_rate": 1.74684e-05, + "loss": 1.3258221435546875, + "step": 488200 + }, + { + "epoch": 65.10666666666667, + "grad_norm": 0.8413640856742859, + "learning_rate": 1.7461733333333336e-05, + "loss": 1.3284645080566406, + "step": 488300 + }, + { + "epoch": 65.12, + "grad_norm": 0.8911667466163635, + "learning_rate": 1.7455066666666668e-05, + "loss": 1.3333392333984375, + "step": 488400 + }, + { + "epoch": 65.13333333333334, + "grad_norm": 0.9145627021789551, + "learning_rate": 1.74484e-05, + "loss": 1.3321968078613282, + "step": 488500 + }, + { + "epoch": 65.14666666666666, + "grad_norm": 0.8469613194465637, + "learning_rate": 1.7441733333333336e-05, + "loss": 1.3286016845703126, + "step": 488600 + }, + { + "epoch": 65.16, + "grad_norm": 0.8619856238365173, + "learning_rate": 1.7435066666666665e-05, + "loss": 1.333924560546875, + "step": 488700 + }, + { + "epoch": 65.17333333333333, + "grad_norm": 0.9197624921798706, + "learning_rate": 1.74284e-05, + "loss": 1.3354296875, + "step": 488800 + }, + { + "epoch": 65.18666666666667, + "grad_norm": 0.8337293863296509, + "learning_rate": 1.7421733333333333e-05, + "loss": 1.3360716247558593, + "step": 488900 + }, + { + "epoch": 65.2, + "grad_norm": 0.8918238878250122, + "learning_rate": 1.741506666666667e-05, + "loss": 1.3376748657226563, + "step": 489000 + }, + { + "epoch": 65.21333333333334, + "grad_norm": 0.8520711660385132, + "learning_rate": 1.74084e-05, + "loss": 1.3359193420410156, + "step": 489100 + }, + { + "epoch": 65.22666666666667, + "grad_norm": 0.8971502184867859, + "learning_rate": 1.7401733333333333e-05, + "loss": 1.337491455078125, + "step": 489200 + }, + { + "epoch": 65.24, + "grad_norm": 0.9194210767745972, + "learning_rate": 1.739506666666667e-05, + "loss": 1.3362680053710938, + "step": 489300 + }, + { + "epoch": 65.25333333333333, + "grad_norm": 0.8638772964477539, + "learning_rate": 1.73884e-05, + "loss": 1.3411000061035157, + "step": 489400 + }, + { + "epoch": 65.26666666666667, + "grad_norm": 0.8430476188659668, + "learning_rate": 1.7381733333333333e-05, + "loss": 1.3354183959960937, + "step": 489500 + }, + { + "epoch": 65.28, + "grad_norm": 0.8449836373329163, + "learning_rate": 1.7375066666666666e-05, + "loss": 1.3406202697753906, + "step": 489600 + }, + { + "epoch": 65.29333333333334, + "grad_norm": 0.914038360118866, + "learning_rate": 1.73684e-05, + "loss": 1.3422569274902343, + "step": 489700 + }, + { + "epoch": 65.30666666666667, + "grad_norm": 0.8925040364265442, + "learning_rate": 1.7361733333333337e-05, + "loss": 1.3404884338378906, + "step": 489800 + }, + { + "epoch": 65.32, + "grad_norm": 0.9155729413032532, + "learning_rate": 1.7355066666666666e-05, + "loss": 1.3383328247070312, + "step": 489900 + }, + { + "epoch": 65.33333333333333, + "grad_norm": 0.8363727331161499, + "learning_rate": 1.73484e-05, + "loss": 1.3454109191894532, + "step": 490000 + }, + { + "epoch": 65.34666666666666, + "grad_norm": 0.8507674932479858, + "learning_rate": 1.7341733333333334e-05, + "loss": 1.3441416931152343, + "step": 490100 + }, + { + "epoch": 65.36, + "grad_norm": 0.8748927116394043, + "learning_rate": 1.7335133333333333e-05, + "loss": 1.3435476684570313, + "step": 490200 + }, + { + "epoch": 65.37333333333333, + "grad_norm": 0.8672348856925964, + "learning_rate": 1.732846666666667e-05, + "loss": 1.3459814453125, + "step": 490300 + }, + { + "epoch": 65.38666666666667, + "grad_norm": 0.88212651014328, + "learning_rate": 1.73218e-05, + "loss": 1.3407472229003907, + "step": 490400 + }, + { + "epoch": 65.4, + "grad_norm": 0.8583021759986877, + "learning_rate": 1.7315133333333333e-05, + "loss": 1.3463021850585937, + "step": 490500 + }, + { + "epoch": 65.41333333333333, + "grad_norm": 0.9152435660362244, + "learning_rate": 1.730846666666667e-05, + "loss": 1.3485971069335938, + "step": 490600 + }, + { + "epoch": 65.42666666666666, + "grad_norm": 0.8737739324569702, + "learning_rate": 1.73018e-05, + "loss": 1.3460276794433594, + "step": 490700 + }, + { + "epoch": 65.44, + "grad_norm": 0.9325355887413025, + "learning_rate": 1.7295133333333337e-05, + "loss": 1.3474514770507813, + "step": 490800 + }, + { + "epoch": 65.45333333333333, + "grad_norm": 0.890143632888794, + "learning_rate": 1.7288466666666665e-05, + "loss": 1.351007537841797, + "step": 490900 + }, + { + "epoch": 65.46666666666667, + "grad_norm": 0.8700892925262451, + "learning_rate": 1.72818e-05, + "loss": 1.350022735595703, + "step": 491000 + }, + { + "epoch": 65.48, + "grad_norm": 0.8921332955360413, + "learning_rate": 1.7275133333333333e-05, + "loss": 1.3486946105957032, + "step": 491100 + }, + { + "epoch": 65.49333333333334, + "grad_norm": 0.8532953262329102, + "learning_rate": 1.7268466666666666e-05, + "loss": 1.3525364685058594, + "step": 491200 + }, + { + "epoch": 65.50666666666666, + "grad_norm": 0.8729583024978638, + "learning_rate": 1.72618e-05, + "loss": 1.3483073425292968, + "step": 491300 + }, + { + "epoch": 65.52, + "grad_norm": 0.8708832263946533, + "learning_rate": 1.7255133333333334e-05, + "loss": 1.3524284362792969, + "step": 491400 + }, + { + "epoch": 65.53333333333333, + "grad_norm": 0.8295683860778809, + "learning_rate": 1.724846666666667e-05, + "loss": 1.3510769653320311, + "step": 491500 + }, + { + "epoch": 65.54666666666667, + "grad_norm": 0.8452852964401245, + "learning_rate": 1.7241799999999998e-05, + "loss": 1.3477371215820313, + "step": 491600 + }, + { + "epoch": 65.56, + "grad_norm": 0.8989164233207703, + "learning_rate": 1.7235133333333334e-05, + "loss": 1.3510366821289062, + "step": 491700 + }, + { + "epoch": 65.57333333333334, + "grad_norm": 0.9267915487289429, + "learning_rate": 1.722846666666667e-05, + "loss": 1.3512055969238281, + "step": 491800 + }, + { + "epoch": 65.58666666666667, + "grad_norm": 0.8938575387001038, + "learning_rate": 1.7221800000000002e-05, + "loss": 1.3483731079101562, + "step": 491900 + }, + { + "epoch": 65.6, + "grad_norm": 0.8966379761695862, + "learning_rate": 1.7215133333333334e-05, + "loss": 1.3562388610839844, + "step": 492000 + }, + { + "epoch": 65.61333333333333, + "grad_norm": 0.9655941724777222, + "learning_rate": 1.7208466666666666e-05, + "loss": 1.3572232055664062, + "step": 492100 + }, + { + "epoch": 65.62666666666667, + "grad_norm": 0.8997311592102051, + "learning_rate": 1.7201866666666665e-05, + "loss": 1.3530233764648438, + "step": 492200 + }, + { + "epoch": 65.64, + "grad_norm": 0.9643396735191345, + "learning_rate": 1.71952e-05, + "loss": 1.3538816833496095, + "step": 492300 + }, + { + "epoch": 65.65333333333334, + "grad_norm": 0.8839356899261475, + "learning_rate": 1.7188533333333333e-05, + "loss": 1.353894500732422, + "step": 492400 + }, + { + "epoch": 65.66666666666667, + "grad_norm": 0.8668888807296753, + "learning_rate": 1.718186666666667e-05, + "loss": 1.3576565551757813, + "step": 492500 + }, + { + "epoch": 65.68, + "grad_norm": 0.9418817758560181, + "learning_rate": 1.71752e-05, + "loss": 1.3552629089355468, + "step": 492600 + }, + { + "epoch": 65.69333333333333, + "grad_norm": 0.8563518524169922, + "learning_rate": 1.7168533333333333e-05, + "loss": 1.3564772033691406, + "step": 492700 + }, + { + "epoch": 65.70666666666666, + "grad_norm": 0.8663268685340881, + "learning_rate": 1.716186666666667e-05, + "loss": 1.3568724060058595, + "step": 492800 + }, + { + "epoch": 65.72, + "grad_norm": 0.9083966612815857, + "learning_rate": 1.71552e-05, + "loss": 1.3571450805664063, + "step": 492900 + }, + { + "epoch": 65.73333333333333, + "grad_norm": 0.8793100118637085, + "learning_rate": 1.7148533333333334e-05, + "loss": 1.358192901611328, + "step": 493000 + }, + { + "epoch": 65.74666666666667, + "grad_norm": 0.8852581977844238, + "learning_rate": 1.7141866666666666e-05, + "loss": 1.3583030700683594, + "step": 493100 + }, + { + "epoch": 65.76, + "grad_norm": 0.8649989366531372, + "learning_rate": 1.71352e-05, + "loss": 1.3607272338867187, + "step": 493200 + }, + { + "epoch": 65.77333333333333, + "grad_norm": 0.9444963335990906, + "learning_rate": 1.7128533333333334e-05, + "loss": 1.3594973754882813, + "step": 493300 + }, + { + "epoch": 65.78666666666666, + "grad_norm": 0.8799870610237122, + "learning_rate": 1.7121866666666666e-05, + "loss": 1.3647491455078125, + "step": 493400 + }, + { + "epoch": 65.8, + "grad_norm": 0.8851443529129028, + "learning_rate": 1.7115200000000002e-05, + "loss": 1.3620616149902345, + "step": 493500 + }, + { + "epoch": 65.81333333333333, + "grad_norm": 0.8632842898368835, + "learning_rate": 1.7108533333333334e-05, + "loss": 1.3599568176269532, + "step": 493600 + }, + { + "epoch": 65.82666666666667, + "grad_norm": 0.889917254447937, + "learning_rate": 1.710186666666667e-05, + "loss": 1.3595269775390626, + "step": 493700 + }, + { + "epoch": 65.84, + "grad_norm": 0.8989757895469666, + "learning_rate": 1.70952e-05, + "loss": 1.3624153137207031, + "step": 493800 + }, + { + "epoch": 65.85333333333334, + "grad_norm": 0.9110841751098633, + "learning_rate": 1.7088533333333334e-05, + "loss": 1.3641012573242188, + "step": 493900 + }, + { + "epoch": 65.86666666666666, + "grad_norm": 0.8911044597625732, + "learning_rate": 1.708186666666667e-05, + "loss": 1.3604220581054687, + "step": 494000 + }, + { + "epoch": 65.88, + "grad_norm": 0.8616090416908264, + "learning_rate": 1.70752e-05, + "loss": 1.3651438903808595, + "step": 494100 + }, + { + "epoch": 65.89333333333333, + "grad_norm": 0.9104633331298828, + "learning_rate": 1.70686e-05, + "loss": 1.3625418090820312, + "step": 494200 + }, + { + "epoch": 65.90666666666667, + "grad_norm": 0.8897743821144104, + "learning_rate": 1.7061933333333337e-05, + "loss": 1.3588157653808595, + "step": 494300 + }, + { + "epoch": 65.92, + "grad_norm": 0.9464109539985657, + "learning_rate": 1.7055266666666666e-05, + "loss": 1.3652839660644531, + "step": 494400 + }, + { + "epoch": 65.93333333333334, + "grad_norm": 0.8611365556716919, + "learning_rate": 1.70486e-05, + "loss": 1.3610792541503907, + "step": 494500 + }, + { + "epoch": 65.94666666666667, + "grad_norm": 0.9123305082321167, + "learning_rate": 1.7041933333333334e-05, + "loss": 1.3650492858886718, + "step": 494600 + }, + { + "epoch": 65.96, + "grad_norm": 0.8548987507820129, + "learning_rate": 1.703526666666667e-05, + "loss": 1.3598005676269531, + "step": 494700 + }, + { + "epoch": 65.97333333333333, + "grad_norm": 0.9494167566299438, + "learning_rate": 1.70286e-05, + "loss": 1.3669606018066407, + "step": 494800 + }, + { + "epoch": 65.98666666666666, + "grad_norm": 0.9031914472579956, + "learning_rate": 1.7021933333333334e-05, + "loss": 1.3666676330566405, + "step": 494900 + }, + { + "epoch": 66.0, + "grad_norm": 0.9000195264816284, + "learning_rate": 1.701526666666667e-05, + "loss": 1.3696188354492187, + "step": 495000 + }, + { + "epoch": 66.01333333333334, + "grad_norm": 0.8464391231536865, + "learning_rate": 1.70086e-05, + "loss": 1.3161962890625, + "step": 495100 + }, + { + "epoch": 66.02666666666667, + "grad_norm": 0.8270666599273682, + "learning_rate": 1.7001933333333334e-05, + "loss": 1.319871368408203, + "step": 495200 + }, + { + "epoch": 66.04, + "grad_norm": 0.852210283279419, + "learning_rate": 1.6995266666666666e-05, + "loss": 1.3218473815917968, + "step": 495300 + }, + { + "epoch": 66.05333333333333, + "grad_norm": 0.879362165927887, + "learning_rate": 1.6988600000000002e-05, + "loss": 1.318983612060547, + "step": 495400 + }, + { + "epoch": 66.06666666666666, + "grad_norm": 0.8811297416687012, + "learning_rate": 1.6981933333333334e-05, + "loss": 1.320828399658203, + "step": 495500 + }, + { + "epoch": 66.08, + "grad_norm": 0.8936617970466614, + "learning_rate": 1.6975266666666667e-05, + "loss": 1.319468994140625, + "step": 495600 + }, + { + "epoch": 66.09333333333333, + "grad_norm": 0.8245587944984436, + "learning_rate": 1.6968600000000002e-05, + "loss": 1.3200828552246093, + "step": 495700 + }, + { + "epoch": 66.10666666666667, + "grad_norm": 0.9125563502311707, + "learning_rate": 1.6961933333333334e-05, + "loss": 1.3209025573730468, + "step": 495800 + }, + { + "epoch": 66.12, + "grad_norm": 0.8604671955108643, + "learning_rate": 1.6955266666666667e-05, + "loss": 1.3225840759277343, + "step": 495900 + }, + { + "epoch": 66.13333333333334, + "grad_norm": 0.8596413135528564, + "learning_rate": 1.69486e-05, + "loss": 1.3214039611816406, + "step": 496000 + }, + { + "epoch": 66.14666666666666, + "grad_norm": 0.8338813185691833, + "learning_rate": 1.6941933333333335e-05, + "loss": 1.3240989685058593, + "step": 496100 + }, + { + "epoch": 66.16, + "grad_norm": 0.8821403980255127, + "learning_rate": 1.6935333333333334e-05, + "loss": 1.3248197937011719, + "step": 496200 + }, + { + "epoch": 66.17333333333333, + "grad_norm": 0.9026249051094055, + "learning_rate": 1.692866666666667e-05, + "loss": 1.3284371948242188, + "step": 496300 + }, + { + "epoch": 66.18666666666667, + "grad_norm": 0.8741923570632935, + "learning_rate": 1.6922e-05, + "loss": 1.3267121887207032, + "step": 496400 + }, + { + "epoch": 66.2, + "grad_norm": 0.8702110052108765, + "learning_rate": 1.6915333333333334e-05, + "loss": 1.326593475341797, + "step": 496500 + }, + { + "epoch": 66.21333333333334, + "grad_norm": 0.8829630613327026, + "learning_rate": 1.6908666666666666e-05, + "loss": 1.3249797058105468, + "step": 496600 + }, + { + "epoch": 66.22666666666667, + "grad_norm": 0.8170766830444336, + "learning_rate": 1.6902000000000002e-05, + "loss": 1.3290678405761718, + "step": 496700 + }, + { + "epoch": 66.24, + "grad_norm": 0.8386065363883972, + "learning_rate": 1.6895333333333334e-05, + "loss": 1.3280769348144532, + "step": 496800 + }, + { + "epoch": 66.25333333333333, + "grad_norm": 0.9074498414993286, + "learning_rate": 1.6888666666666666e-05, + "loss": 1.3333543395996095, + "step": 496900 + }, + { + "epoch": 66.26666666666667, + "grad_norm": 0.8878492116928101, + "learning_rate": 1.6882000000000002e-05, + "loss": 1.3320777893066407, + "step": 497000 + }, + { + "epoch": 66.28, + "grad_norm": 0.9520934820175171, + "learning_rate": 1.6875333333333334e-05, + "loss": 1.332491455078125, + "step": 497100 + }, + { + "epoch": 66.29333333333334, + "grad_norm": 0.8975771069526672, + "learning_rate": 1.686866666666667e-05, + "loss": 1.3285887145996094, + "step": 497200 + }, + { + "epoch": 66.30666666666667, + "grad_norm": 0.9283040165901184, + "learning_rate": 1.6862e-05, + "loss": 1.3328883361816406, + "step": 497300 + }, + { + "epoch": 66.32, + "grad_norm": 0.8596479892730713, + "learning_rate": 1.6855333333333334e-05, + "loss": 1.337887725830078, + "step": 497400 + }, + { + "epoch": 66.33333333333333, + "grad_norm": 0.8887840509414673, + "learning_rate": 1.6848666666666667e-05, + "loss": 1.3309591674804688, + "step": 497500 + }, + { + "epoch": 66.34666666666666, + "grad_norm": 0.8658081889152527, + "learning_rate": 1.6842e-05, + "loss": 1.3348977661132813, + "step": 497600 + }, + { + "epoch": 66.36, + "grad_norm": 0.8536320924758911, + "learning_rate": 1.6835333333333335e-05, + "loss": 1.3311074829101563, + "step": 497700 + }, + { + "epoch": 66.37333333333333, + "grad_norm": 0.8975630402565002, + "learning_rate": 1.6828666666666667e-05, + "loss": 1.3381869506835937, + "step": 497800 + }, + { + "epoch": 66.38666666666667, + "grad_norm": 0.9293047189712524, + "learning_rate": 1.6822000000000003e-05, + "loss": 1.338460693359375, + "step": 497900 + }, + { + "epoch": 66.4, + "grad_norm": 0.8931173086166382, + "learning_rate": 1.681533333333333e-05, + "loss": 1.3359477233886718, + "step": 498000 + }, + { + "epoch": 66.41333333333333, + "grad_norm": 0.9041270613670349, + "learning_rate": 1.6808666666666667e-05, + "loss": 1.3406436157226562, + "step": 498100 + }, + { + "epoch": 66.42666666666666, + "grad_norm": 0.8692404627799988, + "learning_rate": 1.680206666666667e-05, + "loss": 1.3393113708496094, + "step": 498200 + }, + { + "epoch": 66.44, + "grad_norm": 0.8984732627868652, + "learning_rate": 1.67954e-05, + "loss": 1.3371609497070311, + "step": 498300 + }, + { + "epoch": 66.45333333333333, + "grad_norm": 0.8967075347900391, + "learning_rate": 1.6788733333333334e-05, + "loss": 1.3435694885253906, + "step": 498400 + }, + { + "epoch": 66.46666666666667, + "grad_norm": 0.8753262162208557, + "learning_rate": 1.678206666666667e-05, + "loss": 1.3449749755859375, + "step": 498500 + }, + { + "epoch": 66.48, + "grad_norm": 0.907174825668335, + "learning_rate": 1.67754e-05, + "loss": 1.3397930908203124, + "step": 498600 + }, + { + "epoch": 66.49333333333334, + "grad_norm": 0.8881757855415344, + "learning_rate": 1.6768733333333334e-05, + "loss": 1.3411907958984375, + "step": 498700 + }, + { + "epoch": 66.50666666666666, + "grad_norm": 0.880740761756897, + "learning_rate": 1.6762066666666667e-05, + "loss": 1.3427651977539063, + "step": 498800 + }, + { + "epoch": 66.52, + "grad_norm": 0.8613744378089905, + "learning_rate": 1.6755400000000002e-05, + "loss": 1.34215576171875, + "step": 498900 + }, + { + "epoch": 66.53333333333333, + "grad_norm": 0.8675311803817749, + "learning_rate": 1.6748733333333335e-05, + "loss": 1.3419883728027344, + "step": 499000 + }, + { + "epoch": 66.54666666666667, + "grad_norm": 0.8745658993721008, + "learning_rate": 1.6742066666666667e-05, + "loss": 1.3410050964355469, + "step": 499100 + }, + { + "epoch": 66.56, + "grad_norm": 0.903735876083374, + "learning_rate": 1.6735400000000002e-05, + "loss": 1.3437112426757813, + "step": 499200 + }, + { + "epoch": 66.57333333333334, + "grad_norm": 0.9387283325195312, + "learning_rate": 1.6728733333333335e-05, + "loss": 1.3478224182128906, + "step": 499300 + }, + { + "epoch": 66.58666666666667, + "grad_norm": 0.8882374167442322, + "learning_rate": 1.6722066666666667e-05, + "loss": 1.3502310180664063, + "step": 499400 + }, + { + "epoch": 66.6, + "grad_norm": 0.8444065451622009, + "learning_rate": 1.67154e-05, + "loss": 1.3418290710449219, + "step": 499500 + }, + { + "epoch": 66.61333333333333, + "grad_norm": 0.8583235740661621, + "learning_rate": 1.6708733333333335e-05, + "loss": 1.346663818359375, + "step": 499600 + }, + { + "epoch": 66.62666666666667, + "grad_norm": 0.861813485622406, + "learning_rate": 1.6702066666666667e-05, + "loss": 1.3438009643554687, + "step": 499700 + }, + { + "epoch": 66.64, + "grad_norm": 0.9351439476013184, + "learning_rate": 1.66954e-05, + "loss": 1.3432070922851562, + "step": 499800 + }, + { + "epoch": 66.65333333333334, + "grad_norm": 0.8280015587806702, + "learning_rate": 1.6688733333333335e-05, + "loss": 1.3487863159179687, + "step": 499900 + }, + { + "epoch": 66.66666666666667, + "grad_norm": 0.9261816143989563, + "learning_rate": 1.6682066666666667e-05, + "loss": 1.348236083984375, + "step": 500000 + }, + { + "epoch": 66.68, + "grad_norm": 0.8890721201896667, + "learning_rate": 1.6675400000000003e-05, + "loss": 1.3480813598632813, + "step": 500100 + }, + { + "epoch": 66.69333333333333, + "grad_norm": 0.881643533706665, + "learning_rate": 1.6668800000000002e-05, + "loss": 1.3505299377441407, + "step": 500200 + }, + { + "epoch": 66.70666666666666, + "grad_norm": 0.8827385306358337, + "learning_rate": 1.6662133333333334e-05, + "loss": 1.3477456665039063, + "step": 500300 + }, + { + "epoch": 66.72, + "grad_norm": 0.9698315262794495, + "learning_rate": 1.6655466666666667e-05, + "loss": 1.3486949157714845, + "step": 500400 + }, + { + "epoch": 66.73333333333333, + "grad_norm": 0.864273726940155, + "learning_rate": 1.66488e-05, + "loss": 1.3506986999511719, + "step": 500500 + }, + { + "epoch": 66.74666666666667, + "grad_norm": 0.9118615388870239, + "learning_rate": 1.6642133333333335e-05, + "loss": 1.3483343505859375, + "step": 500600 + }, + { + "epoch": 66.76, + "grad_norm": 0.8899751901626587, + "learning_rate": 1.663546666666667e-05, + "loss": 1.3553768920898437, + "step": 500700 + }, + { + "epoch": 66.77333333333333, + "grad_norm": 0.9060136675834656, + "learning_rate": 1.66288e-05, + "loss": 1.345452117919922, + "step": 500800 + }, + { + "epoch": 66.78666666666666, + "grad_norm": 0.9999998211860657, + "learning_rate": 1.6622133333333335e-05, + "loss": 1.350277862548828, + "step": 500900 + }, + { + "epoch": 66.8, + "grad_norm": 0.8866046667098999, + "learning_rate": 1.6615466666666667e-05, + "loss": 1.3576226806640626, + "step": 501000 + }, + { + "epoch": 66.81333333333333, + "grad_norm": 0.9324911832809448, + "learning_rate": 1.6608800000000003e-05, + "loss": 1.350228271484375, + "step": 501100 + }, + { + "epoch": 66.82666666666667, + "grad_norm": 0.9233900904655457, + "learning_rate": 1.6602133333333335e-05, + "loss": 1.3524874877929687, + "step": 501200 + }, + { + "epoch": 66.84, + "grad_norm": 0.8950480818748474, + "learning_rate": 1.6595466666666667e-05, + "loss": 1.3505656433105468, + "step": 501300 + }, + { + "epoch": 66.85333333333334, + "grad_norm": 0.8450494408607483, + "learning_rate": 1.6588800000000003e-05, + "loss": 1.353629150390625, + "step": 501400 + }, + { + "epoch": 66.86666666666666, + "grad_norm": 0.8349661827087402, + "learning_rate": 1.6582133333333332e-05, + "loss": 1.3550460815429688, + "step": 501500 + }, + { + "epoch": 66.88, + "grad_norm": 0.8485316038131714, + "learning_rate": 1.6575466666666667e-05, + "loss": 1.35274658203125, + "step": 501600 + }, + { + "epoch": 66.89333333333333, + "grad_norm": 0.8575172424316406, + "learning_rate": 1.65688e-05, + "loss": 1.3558840942382813, + "step": 501700 + }, + { + "epoch": 66.90666666666667, + "grad_norm": 0.8949342370033264, + "learning_rate": 1.6562133333333335e-05, + "loss": 1.3565489196777343, + "step": 501800 + }, + { + "epoch": 66.92, + "grad_norm": 0.8905797600746155, + "learning_rate": 1.6555466666666668e-05, + "loss": 1.3542637634277344, + "step": 501900 + }, + { + "epoch": 66.93333333333334, + "grad_norm": 0.8685753345489502, + "learning_rate": 1.65488e-05, + "loss": 1.3555860900878907, + "step": 502000 + }, + { + "epoch": 66.94666666666667, + "grad_norm": 0.8902389407157898, + "learning_rate": 1.6542133333333336e-05, + "loss": 1.357294921875, + "step": 502100 + }, + { + "epoch": 66.96, + "grad_norm": 0.8817318677902222, + "learning_rate": 1.6535533333333335e-05, + "loss": 1.354560089111328, + "step": 502200 + }, + { + "epoch": 66.97333333333333, + "grad_norm": 0.8877972960472107, + "learning_rate": 1.6528866666666667e-05, + "loss": 1.3581826782226563, + "step": 502300 + }, + { + "epoch": 66.98666666666666, + "grad_norm": 0.9648900628089905, + "learning_rate": 1.6522200000000003e-05, + "loss": 1.3576654052734376, + "step": 502400 + }, + { + "epoch": 67.0, + "grad_norm": 0.8821939826011658, + "learning_rate": 1.651553333333333e-05, + "loss": 1.3601315307617188, + "step": 502500 + }, + { + "epoch": 67.01333333333334, + "grad_norm": 0.8473901748657227, + "learning_rate": 1.6508866666666667e-05, + "loss": 1.310140380859375, + "step": 502600 + }, + { + "epoch": 67.02666666666667, + "grad_norm": 0.8751438856124878, + "learning_rate": 1.65022e-05, + "loss": 1.3117538452148438, + "step": 502700 + }, + { + "epoch": 67.04, + "grad_norm": 0.8518862128257751, + "learning_rate": 1.6495533333333335e-05, + "loss": 1.3125653076171875, + "step": 502800 + }, + { + "epoch": 67.05333333333333, + "grad_norm": 0.8928504586219788, + "learning_rate": 1.6488866666666667e-05, + "loss": 1.3104530334472657, + "step": 502900 + }, + { + "epoch": 67.06666666666666, + "grad_norm": 0.8880503177642822, + "learning_rate": 1.64822e-05, + "loss": 1.3163229370117187, + "step": 503000 + }, + { + "epoch": 67.08, + "grad_norm": 0.9034183621406555, + "learning_rate": 1.6475533333333335e-05, + "loss": 1.3216062927246093, + "step": 503100 + }, + { + "epoch": 67.09333333333333, + "grad_norm": 0.8415785431861877, + "learning_rate": 1.6468866666666667e-05, + "loss": 1.3180642700195313, + "step": 503200 + }, + { + "epoch": 67.10666666666667, + "grad_norm": 0.8426023125648499, + "learning_rate": 1.64622e-05, + "loss": 1.3171853637695312, + "step": 503300 + }, + { + "epoch": 67.12, + "grad_norm": 0.9098384976387024, + "learning_rate": 1.6455533333333335e-05, + "loss": 1.3160491943359376, + "step": 503400 + }, + { + "epoch": 67.13333333333334, + "grad_norm": 0.910634458065033, + "learning_rate": 1.6448866666666668e-05, + "loss": 1.3179133605957032, + "step": 503500 + }, + { + "epoch": 67.14666666666666, + "grad_norm": 0.8796761631965637, + "learning_rate": 1.6442200000000003e-05, + "loss": 1.3178306579589845, + "step": 503600 + }, + { + "epoch": 67.16, + "grad_norm": 0.9137388467788696, + "learning_rate": 1.6435533333333332e-05, + "loss": 1.3195364379882812, + "step": 503700 + }, + { + "epoch": 67.17333333333333, + "grad_norm": 0.8771604895591736, + "learning_rate": 1.6428866666666668e-05, + "loss": 1.3253799438476563, + "step": 503800 + }, + { + "epoch": 67.18666666666667, + "grad_norm": 0.8796737194061279, + "learning_rate": 1.64222e-05, + "loss": 1.3219993591308594, + "step": 503900 + }, + { + "epoch": 67.2, + "grad_norm": 0.8637896180152893, + "learning_rate": 1.6415533333333332e-05, + "loss": 1.3234608459472657, + "step": 504000 + }, + { + "epoch": 67.21333333333334, + "grad_norm": 0.8395215272903442, + "learning_rate": 1.6408866666666668e-05, + "loss": 1.3233541870117187, + "step": 504100 + }, + { + "epoch": 67.22666666666667, + "grad_norm": 0.8876785039901733, + "learning_rate": 1.6402266666666667e-05, + "loss": 1.32363037109375, + "step": 504200 + }, + { + "epoch": 67.24, + "grad_norm": 0.8801200985908508, + "learning_rate": 1.63956e-05, + "loss": 1.328302764892578, + "step": 504300 + }, + { + "epoch": 67.25333333333333, + "grad_norm": 0.9056000709533691, + "learning_rate": 1.6388933333333335e-05, + "loss": 1.323112030029297, + "step": 504400 + }, + { + "epoch": 67.26666666666667, + "grad_norm": 0.9226976633071899, + "learning_rate": 1.6382266666666667e-05, + "loss": 1.328287353515625, + "step": 504500 + }, + { + "epoch": 67.28, + "grad_norm": 0.8553920984268188, + "learning_rate": 1.6375600000000003e-05, + "loss": 1.324569549560547, + "step": 504600 + }, + { + "epoch": 67.29333333333334, + "grad_norm": 0.8892163038253784, + "learning_rate": 1.6368933333333332e-05, + "loss": 1.3272508239746095, + "step": 504700 + }, + { + "epoch": 67.30666666666667, + "grad_norm": 0.828970193862915, + "learning_rate": 1.6362266666666667e-05, + "loss": 1.325264892578125, + "step": 504800 + }, + { + "epoch": 67.32, + "grad_norm": 0.8796325325965881, + "learning_rate": 1.6355600000000003e-05, + "loss": 1.3304495239257812, + "step": 504900 + }, + { + "epoch": 67.33333333333333, + "grad_norm": 0.8535403609275818, + "learning_rate": 1.6348933333333332e-05, + "loss": 1.3281263732910156, + "step": 505000 + }, + { + "epoch": 67.34666666666666, + "grad_norm": 0.9329071640968323, + "learning_rate": 1.6342266666666668e-05, + "loss": 1.3269728088378907, + "step": 505100 + }, + { + "epoch": 67.36, + "grad_norm": 0.8434710502624512, + "learning_rate": 1.63356e-05, + "loss": 1.330979461669922, + "step": 505200 + }, + { + "epoch": 67.37333333333333, + "grad_norm": 0.9090546369552612, + "learning_rate": 1.6328933333333336e-05, + "loss": 1.3287429809570312, + "step": 505300 + }, + { + "epoch": 67.38666666666667, + "grad_norm": 0.8121486902236938, + "learning_rate": 1.6322266666666668e-05, + "loss": 1.3265771484375, + "step": 505400 + }, + { + "epoch": 67.4, + "grad_norm": 0.92621248960495, + "learning_rate": 1.63156e-05, + "loss": 1.331717529296875, + "step": 505500 + }, + { + "epoch": 67.41333333333333, + "grad_norm": 0.861219048500061, + "learning_rate": 1.6308933333333336e-05, + "loss": 1.331618194580078, + "step": 505600 + }, + { + "epoch": 67.42666666666666, + "grad_norm": 0.8709635734558105, + "learning_rate": 1.6302266666666668e-05, + "loss": 1.3293948364257813, + "step": 505700 + }, + { + "epoch": 67.44, + "grad_norm": 0.9250495433807373, + "learning_rate": 1.62956e-05, + "loss": 1.3288381958007813, + "step": 505800 + }, + { + "epoch": 67.45333333333333, + "grad_norm": 0.9058433771133423, + "learning_rate": 1.6288933333333333e-05, + "loss": 1.33401123046875, + "step": 505900 + }, + { + "epoch": 67.46666666666667, + "grad_norm": 0.8685875535011292, + "learning_rate": 1.6282266666666668e-05, + "loss": 1.3351644897460937, + "step": 506000 + }, + { + "epoch": 67.48, + "grad_norm": 0.8778988122940063, + "learning_rate": 1.62756e-05, + "loss": 1.3352923583984375, + "step": 506100 + }, + { + "epoch": 67.49333333333334, + "grad_norm": 0.900501549243927, + "learning_rate": 1.6269e-05, + "loss": 1.3364425659179688, + "step": 506200 + }, + { + "epoch": 67.50666666666666, + "grad_norm": 0.832356333732605, + "learning_rate": 1.6262333333333335e-05, + "loss": 1.3344007873535155, + "step": 506300 + }, + { + "epoch": 67.52, + "grad_norm": 0.8706467747688293, + "learning_rate": 1.6255666666666668e-05, + "loss": 1.335708465576172, + "step": 506400 + }, + { + "epoch": 67.53333333333333, + "grad_norm": 0.9022287130355835, + "learning_rate": 1.6249e-05, + "loss": 1.334958038330078, + "step": 506500 + }, + { + "epoch": 67.54666666666667, + "grad_norm": 0.9078052043914795, + "learning_rate": 1.6242333333333335e-05, + "loss": 1.3339247131347656, + "step": 506600 + }, + { + "epoch": 67.56, + "grad_norm": 0.8930740356445312, + "learning_rate": 1.6235666666666668e-05, + "loss": 1.3345040893554687, + "step": 506700 + }, + { + "epoch": 67.57333333333334, + "grad_norm": 0.8925511837005615, + "learning_rate": 1.6229e-05, + "loss": 1.3339421081542968, + "step": 506800 + }, + { + "epoch": 67.58666666666667, + "grad_norm": 0.9075053334236145, + "learning_rate": 1.6222333333333332e-05, + "loss": 1.3400006103515625, + "step": 506900 + }, + { + "epoch": 67.6, + "grad_norm": 0.8388199210166931, + "learning_rate": 1.6215666666666668e-05, + "loss": 1.339932403564453, + "step": 507000 + }, + { + "epoch": 67.61333333333333, + "grad_norm": 0.9314302206039429, + "learning_rate": 1.6209000000000004e-05, + "loss": 1.3385556030273438, + "step": 507100 + }, + { + "epoch": 67.62666666666667, + "grad_norm": 0.936500608921051, + "learning_rate": 1.6202333333333332e-05, + "loss": 1.3391481018066407, + "step": 507200 + }, + { + "epoch": 67.64, + "grad_norm": 0.9487819671630859, + "learning_rate": 1.6195666666666668e-05, + "loss": 1.3424884033203126, + "step": 507300 + }, + { + "epoch": 67.65333333333334, + "grad_norm": 0.8992325663566589, + "learning_rate": 1.6189e-05, + "loss": 1.3376817321777343, + "step": 507400 + }, + { + "epoch": 67.66666666666667, + "grad_norm": 0.8715090155601501, + "learning_rate": 1.6182333333333336e-05, + "loss": 1.3390425109863282, + "step": 507500 + }, + { + "epoch": 67.68, + "grad_norm": 0.926875650882721, + "learning_rate": 1.6175666666666668e-05, + "loss": 1.3368760681152343, + "step": 507600 + }, + { + "epoch": 67.69333333333333, + "grad_norm": 0.8483115434646606, + "learning_rate": 1.6169e-05, + "loss": 1.3436689758300782, + "step": 507700 + }, + { + "epoch": 67.70666666666666, + "grad_norm": 0.9174588918685913, + "learning_rate": 1.6162333333333336e-05, + "loss": 1.3432699584960937, + "step": 507800 + }, + { + "epoch": 67.72, + "grad_norm": 0.8918784260749817, + "learning_rate": 1.6155666666666665e-05, + "loss": 1.342838592529297, + "step": 507900 + }, + { + "epoch": 67.73333333333333, + "grad_norm": 0.9192767143249512, + "learning_rate": 1.6149e-05, + "loss": 1.3431192016601563, + "step": 508000 + }, + { + "epoch": 67.74666666666667, + "grad_norm": 0.9048521518707275, + "learning_rate": 1.6142333333333333e-05, + "loss": 1.341384735107422, + "step": 508100 + }, + { + "epoch": 67.76, + "grad_norm": 0.8069953918457031, + "learning_rate": 1.613566666666667e-05, + "loss": 1.3444508361816405, + "step": 508200 + }, + { + "epoch": 67.77333333333333, + "grad_norm": 0.9301212430000305, + "learning_rate": 1.6129066666666668e-05, + "loss": 1.342718048095703, + "step": 508300 + }, + { + "epoch": 67.78666666666666, + "grad_norm": 0.8530392646789551, + "learning_rate": 1.61224e-05, + "loss": 1.343582763671875, + "step": 508400 + }, + { + "epoch": 67.8, + "grad_norm": 0.8464934825897217, + "learning_rate": 1.6115733333333336e-05, + "loss": 1.3441999816894532, + "step": 508500 + }, + { + "epoch": 67.81333333333333, + "grad_norm": 0.8721790313720703, + "learning_rate": 1.6109066666666668e-05, + "loss": 1.3421063232421875, + "step": 508600 + }, + { + "epoch": 67.82666666666667, + "grad_norm": 0.8738119006156921, + "learning_rate": 1.61024e-05, + "loss": 1.350204315185547, + "step": 508700 + }, + { + "epoch": 67.84, + "grad_norm": 0.961629331111908, + "learning_rate": 1.6095733333333336e-05, + "loss": 1.3457203674316407, + "step": 508800 + }, + { + "epoch": 67.85333333333334, + "grad_norm": 0.8968521952629089, + "learning_rate": 1.6089066666666665e-05, + "loss": 1.3510127258300781, + "step": 508900 + }, + { + "epoch": 67.86666666666666, + "grad_norm": 0.8948931694030762, + "learning_rate": 1.60824e-05, + "loss": 1.3487330627441407, + "step": 509000 + }, + { + "epoch": 67.88, + "grad_norm": 0.9145134091377258, + "learning_rate": 1.6075733333333333e-05, + "loss": 1.3471894836425782, + "step": 509100 + }, + { + "epoch": 67.89333333333333, + "grad_norm": 0.871657133102417, + "learning_rate": 1.606906666666667e-05, + "loss": 1.3422882080078125, + "step": 509200 + }, + { + "epoch": 67.90666666666667, + "grad_norm": 0.9065093398094177, + "learning_rate": 1.60624e-05, + "loss": 1.3477850341796875, + "step": 509300 + }, + { + "epoch": 67.92, + "grad_norm": 0.9234089255332947, + "learning_rate": 1.6055733333333333e-05, + "loss": 1.3499220275878907, + "step": 509400 + }, + { + "epoch": 67.93333333333334, + "grad_norm": 0.9075988531112671, + "learning_rate": 1.604906666666667e-05, + "loss": 1.3501620483398438, + "step": 509500 + }, + { + "epoch": 67.94666666666667, + "grad_norm": 0.8884494304656982, + "learning_rate": 1.60424e-05, + "loss": 1.348383331298828, + "step": 509600 + }, + { + "epoch": 67.96, + "grad_norm": 0.896177351474762, + "learning_rate": 1.6035733333333333e-05, + "loss": 1.3463504028320312, + "step": 509700 + }, + { + "epoch": 67.97333333333333, + "grad_norm": 0.9698064923286438, + "learning_rate": 1.602906666666667e-05, + "loss": 1.3500189208984374, + "step": 509800 + }, + { + "epoch": 67.98666666666666, + "grad_norm": 0.9053831100463867, + "learning_rate": 1.60224e-05, + "loss": 1.3513795471191405, + "step": 509900 + }, + { + "epoch": 68.0, + "grad_norm": 0.9011847972869873, + "learning_rate": 1.6015733333333337e-05, + "loss": 1.3465042114257812, + "step": 510000 + }, + { + "epoch": 68.01333333333334, + "grad_norm": 0.8597659468650818, + "learning_rate": 1.6009066666666665e-05, + "loss": 1.3004315185546875, + "step": 510100 + }, + { + "epoch": 68.02666666666667, + "grad_norm": 0.928426206111908, + "learning_rate": 1.60024e-05, + "loss": 1.3039891052246093, + "step": 510200 + }, + { + "epoch": 68.04, + "grad_norm": 0.8113676309585571, + "learning_rate": 1.59958e-05, + "loss": 1.3047027587890625, + "step": 510300 + }, + { + "epoch": 68.05333333333333, + "grad_norm": 0.9048395752906799, + "learning_rate": 1.5989133333333332e-05, + "loss": 1.3024574279785157, + "step": 510400 + }, + { + "epoch": 68.06666666666666, + "grad_norm": 0.8462424874305725, + "learning_rate": 1.5982466666666668e-05, + "loss": 1.3085397338867188, + "step": 510500 + }, + { + "epoch": 68.08, + "grad_norm": 0.8260025978088379, + "learning_rate": 1.59758e-05, + "loss": 1.3069618225097657, + "step": 510600 + }, + { + "epoch": 68.09333333333333, + "grad_norm": 0.9367395639419556, + "learning_rate": 1.5969133333333333e-05, + "loss": 1.3096812438964844, + "step": 510700 + }, + { + "epoch": 68.10666666666667, + "grad_norm": 0.8826059699058533, + "learning_rate": 1.596246666666667e-05, + "loss": 1.31156494140625, + "step": 510800 + }, + { + "epoch": 68.12, + "grad_norm": 0.8369840383529663, + "learning_rate": 1.59558e-05, + "loss": 1.3101882934570312, + "step": 510900 + }, + { + "epoch": 68.13333333333334, + "grad_norm": 0.89353346824646, + "learning_rate": 1.5949133333333336e-05, + "loss": 1.3151426696777344, + "step": 511000 + }, + { + "epoch": 68.14666666666666, + "grad_norm": 0.9131789803504944, + "learning_rate": 1.5942466666666665e-05, + "loss": 1.3127870178222656, + "step": 511100 + }, + { + "epoch": 68.16, + "grad_norm": 0.8653157353401184, + "learning_rate": 1.59358e-05, + "loss": 1.3090579223632812, + "step": 511200 + }, + { + "epoch": 68.17333333333333, + "grad_norm": 0.9040849804878235, + "learning_rate": 1.5929133333333336e-05, + "loss": 1.312974395751953, + "step": 511300 + }, + { + "epoch": 68.18666666666667, + "grad_norm": 0.8667581081390381, + "learning_rate": 1.5922466666666665e-05, + "loss": 1.3097319030761718, + "step": 511400 + }, + { + "epoch": 68.2, + "grad_norm": 0.8813672065734863, + "learning_rate": 1.59158e-05, + "loss": 1.3151568603515624, + "step": 511500 + }, + { + "epoch": 68.21333333333334, + "grad_norm": 0.8864101767539978, + "learning_rate": 1.5909133333333333e-05, + "loss": 1.318709716796875, + "step": 511600 + }, + { + "epoch": 68.22666666666667, + "grad_norm": 0.8745055794715881, + "learning_rate": 1.590246666666667e-05, + "loss": 1.3160711669921874, + "step": 511700 + }, + { + "epoch": 68.24, + "grad_norm": 0.8819094896316528, + "learning_rate": 1.58958e-05, + "loss": 1.3141668701171876, + "step": 511800 + }, + { + "epoch": 68.25333333333333, + "grad_norm": 0.8686659336090088, + "learning_rate": 1.5889133333333333e-05, + "loss": 1.3141128540039062, + "step": 511900 + }, + { + "epoch": 68.26666666666667, + "grad_norm": 0.8981601595878601, + "learning_rate": 1.588246666666667e-05, + "loss": 1.318443603515625, + "step": 512000 + }, + { + "epoch": 68.28, + "grad_norm": 0.9074696898460388, + "learning_rate": 1.58758e-05, + "loss": 1.3188632202148438, + "step": 512100 + }, + { + "epoch": 68.29333333333334, + "grad_norm": 0.8958747386932373, + "learning_rate": 1.5869133333333334e-05, + "loss": 1.3215031433105469, + "step": 512200 + }, + { + "epoch": 68.30666666666667, + "grad_norm": 0.8791993260383606, + "learning_rate": 1.5862533333333336e-05, + "loss": 1.31865478515625, + "step": 512300 + }, + { + "epoch": 68.32, + "grad_norm": 0.8460490107536316, + "learning_rate": 1.5855866666666665e-05, + "loss": 1.3209242248535156, + "step": 512400 + }, + { + "epoch": 68.33333333333333, + "grad_norm": 0.8700122833251953, + "learning_rate": 1.58492e-05, + "loss": 1.3208595275878907, + "step": 512500 + }, + { + "epoch": 68.34666666666666, + "grad_norm": 0.8390049934387207, + "learning_rate": 1.5842533333333333e-05, + "loss": 1.3223390197753906, + "step": 512600 + }, + { + "epoch": 68.36, + "grad_norm": 0.8614577054977417, + "learning_rate": 1.583586666666667e-05, + "loss": 1.3204753112792968, + "step": 512700 + }, + { + "epoch": 68.37333333333333, + "grad_norm": 0.8901036977767944, + "learning_rate": 1.58292e-05, + "loss": 1.324432373046875, + "step": 512800 + }, + { + "epoch": 68.38666666666667, + "grad_norm": 0.8955973386764526, + "learning_rate": 1.5822533333333333e-05, + "loss": 1.3183277893066405, + "step": 512900 + }, + { + "epoch": 68.4, + "grad_norm": 0.8843805193901062, + "learning_rate": 1.581586666666667e-05, + "loss": 1.3242254638671875, + "step": 513000 + }, + { + "epoch": 68.41333333333333, + "grad_norm": 0.8797668218612671, + "learning_rate": 1.58092e-05, + "loss": 1.3225811767578124, + "step": 513100 + }, + { + "epoch": 68.42666666666666, + "grad_norm": 0.9109477400779724, + "learning_rate": 1.5802533333333333e-05, + "loss": 1.3278276062011718, + "step": 513200 + }, + { + "epoch": 68.44, + "grad_norm": 0.9226241111755371, + "learning_rate": 1.5795866666666666e-05, + "loss": 1.31931640625, + "step": 513300 + }, + { + "epoch": 68.45333333333333, + "grad_norm": 0.8409252762794495, + "learning_rate": 1.57892e-05, + "loss": 1.3215591430664062, + "step": 513400 + }, + { + "epoch": 68.46666666666667, + "grad_norm": 0.8817701935768127, + "learning_rate": 1.5782533333333337e-05, + "loss": 1.3250498962402344, + "step": 513500 + }, + { + "epoch": 68.48, + "grad_norm": 0.868848979473114, + "learning_rate": 1.5775866666666666e-05, + "loss": 1.329929656982422, + "step": 513600 + }, + { + "epoch": 68.49333333333334, + "grad_norm": 0.9269536137580872, + "learning_rate": 1.57692e-05, + "loss": 1.3273797607421876, + "step": 513700 + }, + { + "epoch": 68.50666666666666, + "grad_norm": 0.8891344666481018, + "learning_rate": 1.5762533333333334e-05, + "loss": 1.3250120544433595, + "step": 513800 + }, + { + "epoch": 68.52, + "grad_norm": 0.8972460031509399, + "learning_rate": 1.575586666666667e-05, + "loss": 1.3335025024414062, + "step": 513900 + }, + { + "epoch": 68.53333333333333, + "grad_norm": 0.8979598879814148, + "learning_rate": 1.57492e-05, + "loss": 1.327074737548828, + "step": 514000 + }, + { + "epoch": 68.54666666666667, + "grad_norm": 0.9028379917144775, + "learning_rate": 1.5742533333333334e-05, + "loss": 1.32595947265625, + "step": 514100 + }, + { + "epoch": 68.56, + "grad_norm": 0.8925226926803589, + "learning_rate": 1.573586666666667e-05, + "loss": 1.3272763061523438, + "step": 514200 + }, + { + "epoch": 68.57333333333334, + "grad_norm": 0.9189619421958923, + "learning_rate": 1.572926666666667e-05, + "loss": 1.3309127807617187, + "step": 514300 + }, + { + "epoch": 68.58666666666667, + "grad_norm": 0.8941634893417358, + "learning_rate": 1.57226e-05, + "loss": 1.3285725402832032, + "step": 514400 + }, + { + "epoch": 68.6, + "grad_norm": 0.9585229158401489, + "learning_rate": 1.5715933333333337e-05, + "loss": 1.3328392028808593, + "step": 514500 + }, + { + "epoch": 68.61333333333333, + "grad_norm": 0.8872119784355164, + "learning_rate": 1.5709266666666665e-05, + "loss": 1.3325770568847657, + "step": 514600 + }, + { + "epoch": 68.62666666666667, + "grad_norm": 0.8843336701393127, + "learning_rate": 1.57026e-05, + "loss": 1.331486358642578, + "step": 514700 + }, + { + "epoch": 68.64, + "grad_norm": 0.9135434031486511, + "learning_rate": 1.5695933333333333e-05, + "loss": 1.333922119140625, + "step": 514800 + }, + { + "epoch": 68.65333333333334, + "grad_norm": 0.9394828677177429, + "learning_rate": 1.568926666666667e-05, + "loss": 1.3295352172851562, + "step": 514900 + }, + { + "epoch": 68.66666666666667, + "grad_norm": 0.9578185081481934, + "learning_rate": 1.56826e-05, + "loss": 1.331282958984375, + "step": 515000 + }, + { + "epoch": 68.68, + "grad_norm": 0.9389871954917908, + "learning_rate": 1.5675933333333334e-05, + "loss": 1.3376300048828125, + "step": 515100 + }, + { + "epoch": 68.69333333333333, + "grad_norm": 0.8578580021858215, + "learning_rate": 1.566926666666667e-05, + "loss": 1.333085479736328, + "step": 515200 + }, + { + "epoch": 68.70666666666666, + "grad_norm": 0.9202980399131775, + "learning_rate": 1.5662599999999998e-05, + "loss": 1.33133544921875, + "step": 515300 + }, + { + "epoch": 68.72, + "grad_norm": 0.9534364938735962, + "learning_rate": 1.5655933333333334e-05, + "loss": 1.3320506286621094, + "step": 515400 + }, + { + "epoch": 68.73333333333333, + "grad_norm": 0.8657859563827515, + "learning_rate": 1.5649266666666666e-05, + "loss": 1.3358692932128906, + "step": 515500 + }, + { + "epoch": 68.74666666666667, + "grad_norm": 0.8687852621078491, + "learning_rate": 1.56426e-05, + "loss": 1.3360931396484375, + "step": 515600 + }, + { + "epoch": 68.76, + "grad_norm": 0.9254283308982849, + "learning_rate": 1.5635933333333334e-05, + "loss": 1.3366038513183593, + "step": 515700 + }, + { + "epoch": 68.77333333333333, + "grad_norm": 0.9339519739151001, + "learning_rate": 1.5629266666666666e-05, + "loss": 1.3345875549316406, + "step": 515800 + }, + { + "epoch": 68.78666666666666, + "grad_norm": 0.942951500415802, + "learning_rate": 1.5622600000000002e-05, + "loss": 1.3363542175292968, + "step": 515900 + }, + { + "epoch": 68.8, + "grad_norm": 0.8819780945777893, + "learning_rate": 1.5615933333333334e-05, + "loss": 1.33906005859375, + "step": 516000 + }, + { + "epoch": 68.81333333333333, + "grad_norm": 0.9070013761520386, + "learning_rate": 1.5609266666666666e-05, + "loss": 1.3376704406738282, + "step": 516100 + }, + { + "epoch": 68.82666666666667, + "grad_norm": 0.9122033715248108, + "learning_rate": 1.5602600000000002e-05, + "loss": 1.339272003173828, + "step": 516200 + }, + { + "epoch": 68.84, + "grad_norm": 0.8980287313461304, + "learning_rate": 1.5595933333333334e-05, + "loss": 1.336685791015625, + "step": 516300 + }, + { + "epoch": 68.85333333333334, + "grad_norm": 0.8671182990074158, + "learning_rate": 1.5589333333333333e-05, + "loss": 1.338714599609375, + "step": 516400 + }, + { + "epoch": 68.86666666666666, + "grad_norm": 0.8897833228111267, + "learning_rate": 1.558266666666667e-05, + "loss": 1.3385552978515625, + "step": 516500 + }, + { + "epoch": 68.88, + "grad_norm": 0.8926507830619812, + "learning_rate": 1.5576e-05, + "loss": 1.3375399780273438, + "step": 516600 + }, + { + "epoch": 68.89333333333333, + "grad_norm": 0.9504712224006653, + "learning_rate": 1.5569333333333334e-05, + "loss": 1.3395611572265624, + "step": 516700 + }, + { + "epoch": 68.90666666666667, + "grad_norm": 0.9633262753486633, + "learning_rate": 1.5562666666666666e-05, + "loss": 1.337670135498047, + "step": 516800 + }, + { + "epoch": 68.92, + "grad_norm": 0.9180074334144592, + "learning_rate": 1.5556e-05, + "loss": 1.3344358825683593, + "step": 516900 + }, + { + "epoch": 68.93333333333334, + "grad_norm": 0.9330366849899292, + "learning_rate": 1.5549333333333334e-05, + "loss": 1.3429493713378906, + "step": 517000 + }, + { + "epoch": 68.94666666666667, + "grad_norm": 0.8484285473823547, + "learning_rate": 1.5542666666666666e-05, + "loss": 1.33810791015625, + "step": 517100 + }, + { + "epoch": 68.96, + "grad_norm": 0.9376809597015381, + "learning_rate": 1.5536e-05, + "loss": 1.3395620727539062, + "step": 517200 + }, + { + "epoch": 68.97333333333333, + "grad_norm": 0.8969297409057617, + "learning_rate": 1.5529333333333334e-05, + "loss": 1.340773468017578, + "step": 517300 + }, + { + "epoch": 68.98666666666666, + "grad_norm": 0.8501908779144287, + "learning_rate": 1.552266666666667e-05, + "loss": 1.34123046875, + "step": 517400 + }, + { + "epoch": 69.0, + "grad_norm": 0.9352733492851257, + "learning_rate": 1.5516e-05, + "loss": 1.3383326721191406, + "step": 517500 + }, + { + "epoch": 69.01333333333334, + "grad_norm": 0.909633219242096, + "learning_rate": 1.5509333333333334e-05, + "loss": 1.3029652404785157, + "step": 517600 + }, + { + "epoch": 69.02666666666667, + "grad_norm": 0.8774516582489014, + "learning_rate": 1.550266666666667e-05, + "loss": 1.3019322204589843, + "step": 517700 + }, + { + "epoch": 69.04, + "grad_norm": 0.8658164143562317, + "learning_rate": 1.5496e-05, + "loss": 1.3007429504394532, + "step": 517800 + }, + { + "epoch": 69.05333333333333, + "grad_norm": 0.9352324604988098, + "learning_rate": 1.5489333333333334e-05, + "loss": 1.2994084167480469, + "step": 517900 + }, + { + "epoch": 69.06666666666666, + "grad_norm": 0.8457640409469604, + "learning_rate": 1.5482666666666667e-05, + "loss": 1.3021054077148437, + "step": 518000 + }, + { + "epoch": 69.08, + "grad_norm": 0.8199939727783203, + "learning_rate": 1.5476000000000002e-05, + "loss": 1.303291015625, + "step": 518100 + }, + { + "epoch": 69.09333333333333, + "grad_norm": 0.9278339743614197, + "learning_rate": 1.5469333333333335e-05, + "loss": 1.3022172546386719, + "step": 518200 + }, + { + "epoch": 69.10666666666667, + "grad_norm": 0.8438993096351624, + "learning_rate": 1.5462666666666667e-05, + "loss": 1.3028335571289062, + "step": 518300 + }, + { + "epoch": 69.12, + "grad_norm": 0.87488853931427, + "learning_rate": 1.5456000000000002e-05, + "loss": 1.3034165954589845, + "step": 518400 + }, + { + "epoch": 69.13333333333334, + "grad_norm": 0.8736199140548706, + "learning_rate": 1.54494e-05, + "loss": 1.304062042236328, + "step": 518500 + }, + { + "epoch": 69.14666666666666, + "grad_norm": 0.8868971467018127, + "learning_rate": 1.5442733333333334e-05, + "loss": 1.303873291015625, + "step": 518600 + }, + { + "epoch": 69.16, + "grad_norm": 0.8616037964820862, + "learning_rate": 1.543606666666667e-05, + "loss": 1.3016984558105469, + "step": 518700 + }, + { + "epoch": 69.17333333333333, + "grad_norm": 0.8724547624588013, + "learning_rate": 1.54294e-05, + "loss": 1.3086442565917968, + "step": 518800 + }, + { + "epoch": 69.18666666666667, + "grad_norm": 0.8624784350395203, + "learning_rate": 1.5422733333333334e-05, + "loss": 1.3114741516113282, + "step": 518900 + }, + { + "epoch": 69.2, + "grad_norm": 0.8696256875991821, + "learning_rate": 1.5416066666666666e-05, + "loss": 1.3064015197753907, + "step": 519000 + }, + { + "epoch": 69.21333333333334, + "grad_norm": 0.9286923408508301, + "learning_rate": 1.5409400000000002e-05, + "loss": 1.3089067077636718, + "step": 519100 + }, + { + "epoch": 69.22666666666667, + "grad_norm": 0.8909485936164856, + "learning_rate": 1.5402733333333334e-05, + "loss": 1.3079788208007812, + "step": 519200 + }, + { + "epoch": 69.24, + "grad_norm": 0.8831815123558044, + "learning_rate": 1.5396066666666666e-05, + "loss": 1.3152728271484375, + "step": 519300 + }, + { + "epoch": 69.25333333333333, + "grad_norm": 0.8436625003814697, + "learning_rate": 1.5389400000000002e-05, + "loss": 1.3138188171386718, + "step": 519400 + }, + { + "epoch": 69.26666666666667, + "grad_norm": 0.9039004445075989, + "learning_rate": 1.5382733333333334e-05, + "loss": 1.3095545959472656, + "step": 519500 + }, + { + "epoch": 69.28, + "grad_norm": 0.8767098188400269, + "learning_rate": 1.5376066666666667e-05, + "loss": 1.3092991638183593, + "step": 519600 + }, + { + "epoch": 69.29333333333334, + "grad_norm": 0.894680917263031, + "learning_rate": 1.53694e-05, + "loss": 1.3123838806152344, + "step": 519700 + }, + { + "epoch": 69.30666666666667, + "grad_norm": 0.8522490859031677, + "learning_rate": 1.5362733333333335e-05, + "loss": 1.3137554931640625, + "step": 519800 + }, + { + "epoch": 69.32, + "grad_norm": 0.9253702759742737, + "learning_rate": 1.535606666666667e-05, + "loss": 1.312119140625, + "step": 519900 + }, + { + "epoch": 69.33333333333333, + "grad_norm": 0.8951952457427979, + "learning_rate": 1.53494e-05, + "loss": 1.3125660705566407, + "step": 520000 + }, + { + "epoch": 69.34666666666666, + "grad_norm": 0.8459183573722839, + "learning_rate": 1.5342733333333335e-05, + "loss": 1.3168217468261718, + "step": 520100 + }, + { + "epoch": 69.36, + "grad_norm": 0.9312644600868225, + "learning_rate": 1.5336066666666667e-05, + "loss": 1.3158766174316405, + "step": 520200 + }, + { + "epoch": 69.37333333333333, + "grad_norm": 0.885540783405304, + "learning_rate": 1.5329400000000003e-05, + "loss": 1.3112091064453124, + "step": 520300 + }, + { + "epoch": 69.38666666666667, + "grad_norm": 0.8519514203071594, + "learning_rate": 1.5322733333333335e-05, + "loss": 1.3133538818359376, + "step": 520400 + }, + { + "epoch": 69.4, + "grad_norm": 0.9369427561759949, + "learning_rate": 1.5316133333333334e-05, + "loss": 1.3154583740234376, + "step": 520500 + }, + { + "epoch": 69.41333333333333, + "grad_norm": 0.8602283596992493, + "learning_rate": 1.5309466666666666e-05, + "loss": 1.3165095520019532, + "step": 520600 + }, + { + "epoch": 69.42666666666666, + "grad_norm": 0.9157493114471436, + "learning_rate": 1.5302800000000002e-05, + "loss": 1.3148411560058593, + "step": 520700 + }, + { + "epoch": 69.44, + "grad_norm": 0.9101560711860657, + "learning_rate": 1.5296133333333334e-05, + "loss": 1.3182754516601562, + "step": 520800 + }, + { + "epoch": 69.45333333333333, + "grad_norm": 0.9380730390548706, + "learning_rate": 1.528946666666667e-05, + "loss": 1.3192401123046875, + "step": 520900 + }, + { + "epoch": 69.46666666666667, + "grad_norm": 0.9109295010566711, + "learning_rate": 1.52828e-05, + "loss": 1.3193789672851564, + "step": 521000 + }, + { + "epoch": 69.48, + "grad_norm": 0.8645269274711609, + "learning_rate": 1.5276133333333334e-05, + "loss": 1.3203118896484376, + "step": 521100 + }, + { + "epoch": 69.49333333333334, + "grad_norm": 0.8796331882476807, + "learning_rate": 1.5269466666666667e-05, + "loss": 1.3172000122070313, + "step": 521200 + }, + { + "epoch": 69.50666666666666, + "grad_norm": 0.9040528535842896, + "learning_rate": 1.5262800000000002e-05, + "loss": 1.3217599487304688, + "step": 521300 + }, + { + "epoch": 69.52, + "grad_norm": 0.9129952788352966, + "learning_rate": 1.5256133333333333e-05, + "loss": 1.3199691772460938, + "step": 521400 + }, + { + "epoch": 69.53333333333333, + "grad_norm": 0.927264928817749, + "learning_rate": 1.5249466666666667e-05, + "loss": 1.3197657775878906, + "step": 521500 + }, + { + "epoch": 69.54666666666667, + "grad_norm": 0.8854173421859741, + "learning_rate": 1.52428e-05, + "loss": 1.32036865234375, + "step": 521600 + }, + { + "epoch": 69.56, + "grad_norm": 0.864914059638977, + "learning_rate": 1.5236133333333333e-05, + "loss": 1.3250689697265625, + "step": 521700 + }, + { + "epoch": 69.57333333333334, + "grad_norm": 0.9233516454696655, + "learning_rate": 1.5229466666666667e-05, + "loss": 1.3195721435546874, + "step": 521800 + }, + { + "epoch": 69.58666666666667, + "grad_norm": 0.8919656872749329, + "learning_rate": 1.5222800000000001e-05, + "loss": 1.3226580810546875, + "step": 521900 + }, + { + "epoch": 69.6, + "grad_norm": 0.9302183389663696, + "learning_rate": 1.5216133333333335e-05, + "loss": 1.325461883544922, + "step": 522000 + }, + { + "epoch": 69.61333333333333, + "grad_norm": 0.8252825736999512, + "learning_rate": 1.5209466666666666e-05, + "loss": 1.3249801635742187, + "step": 522100 + }, + { + "epoch": 69.62666666666667, + "grad_norm": 0.9176365733146667, + "learning_rate": 1.5202800000000001e-05, + "loss": 1.3211125183105468, + "step": 522200 + }, + { + "epoch": 69.64, + "grad_norm": 0.8246389627456665, + "learning_rate": 1.5196133333333335e-05, + "loss": 1.3223980712890624, + "step": 522300 + }, + { + "epoch": 69.65333333333334, + "grad_norm": 0.9392738938331604, + "learning_rate": 1.5189466666666669e-05, + "loss": 1.319575653076172, + "step": 522400 + }, + { + "epoch": 69.66666666666667, + "grad_norm": 0.888167142868042, + "learning_rate": 1.5182866666666668e-05, + "loss": 1.3244210815429687, + "step": 522500 + }, + { + "epoch": 69.68, + "grad_norm": 0.8745282292366028, + "learning_rate": 1.5176200000000002e-05, + "loss": 1.322125244140625, + "step": 522600 + }, + { + "epoch": 69.69333333333333, + "grad_norm": 0.8966434001922607, + "learning_rate": 1.5169533333333333e-05, + "loss": 1.328828125, + "step": 522700 + }, + { + "epoch": 69.70666666666666, + "grad_norm": 0.8466253876686096, + "learning_rate": 1.5162866666666667e-05, + "loss": 1.3279318237304687, + "step": 522800 + }, + { + "epoch": 69.72, + "grad_norm": 0.8887118697166443, + "learning_rate": 1.51562e-05, + "loss": 1.3284657287597657, + "step": 522900 + }, + { + "epoch": 69.73333333333333, + "grad_norm": 0.7998771667480469, + "learning_rate": 1.5149533333333335e-05, + "loss": 1.32925537109375, + "step": 523000 + }, + { + "epoch": 69.74666666666667, + "grad_norm": 0.8823466300964355, + "learning_rate": 1.5142866666666667e-05, + "loss": 1.3294252014160157, + "step": 523100 + }, + { + "epoch": 69.76, + "grad_norm": 0.9160724878311157, + "learning_rate": 1.5136200000000001e-05, + "loss": 1.327671356201172, + "step": 523200 + }, + { + "epoch": 69.77333333333333, + "grad_norm": 0.8401466012001038, + "learning_rate": 1.5129533333333335e-05, + "loss": 1.3307571411132812, + "step": 523300 + }, + { + "epoch": 69.78666666666666, + "grad_norm": 0.8765178322792053, + "learning_rate": 1.5122866666666669e-05, + "loss": 1.329644775390625, + "step": 523400 + }, + { + "epoch": 69.8, + "grad_norm": 0.87641841173172, + "learning_rate": 1.51162e-05, + "loss": 1.3258184814453124, + "step": 523500 + }, + { + "epoch": 69.81333333333333, + "grad_norm": 0.8888761401176453, + "learning_rate": 1.5109533333333333e-05, + "loss": 1.3236990356445313, + "step": 523600 + }, + { + "epoch": 69.82666666666667, + "grad_norm": 0.91169273853302, + "learning_rate": 1.5102866666666667e-05, + "loss": 1.3255255126953125, + "step": 523700 + }, + { + "epoch": 69.84, + "grad_norm": 0.8905537724494934, + "learning_rate": 1.5096200000000001e-05, + "loss": 1.3305224609375, + "step": 523800 + }, + { + "epoch": 69.85333333333334, + "grad_norm": 0.8976826667785645, + "learning_rate": 1.5089533333333334e-05, + "loss": 1.3281327819824218, + "step": 523900 + }, + { + "epoch": 69.86666666666666, + "grad_norm": 0.9264980554580688, + "learning_rate": 1.5082866666666667e-05, + "loss": 1.3322329711914063, + "step": 524000 + }, + { + "epoch": 69.88, + "grad_norm": 0.8969742059707642, + "learning_rate": 1.5076200000000001e-05, + "loss": 1.3304733276367187, + "step": 524100 + }, + { + "epoch": 69.89333333333333, + "grad_norm": 0.9283936619758606, + "learning_rate": 1.5069533333333332e-05, + "loss": 1.3320317077636719, + "step": 524200 + }, + { + "epoch": 69.90666666666667, + "grad_norm": 0.9455838203430176, + "learning_rate": 1.5062866666666666e-05, + "loss": 1.3323895263671874, + "step": 524300 + }, + { + "epoch": 69.92, + "grad_norm": 0.9530020356178284, + "learning_rate": 1.5056200000000002e-05, + "loss": 1.333441162109375, + "step": 524400 + }, + { + "epoch": 69.93333333333334, + "grad_norm": 0.8964418768882751, + "learning_rate": 1.5049599999999999e-05, + "loss": 1.3335765075683594, + "step": 524500 + }, + { + "epoch": 69.94666666666667, + "grad_norm": 0.8553877472877502, + "learning_rate": 1.5042933333333335e-05, + "loss": 1.3312777709960937, + "step": 524600 + }, + { + "epoch": 69.96, + "grad_norm": 0.8218632936477661, + "learning_rate": 1.5036266666666669e-05, + "loss": 1.3336231994628907, + "step": 524700 + }, + { + "epoch": 69.97333333333333, + "grad_norm": 0.8228429555892944, + "learning_rate": 1.5029600000000003e-05, + "loss": 1.3307693481445313, + "step": 524800 + }, + { + "epoch": 69.98666666666666, + "grad_norm": 0.890493631362915, + "learning_rate": 1.5022933333333333e-05, + "loss": 1.3317050170898437, + "step": 524900 + }, + { + "epoch": 70.0, + "grad_norm": 0.8892182111740112, + "learning_rate": 1.5016266666666667e-05, + "loss": 1.3370907592773438, + "step": 525000 + }, + { + "epoch": 70.01333333333334, + "grad_norm": 0.8805796504020691, + "learning_rate": 1.5009600000000001e-05, + "loss": 1.2896534729003906, + "step": 525100 + }, + { + "epoch": 70.02666666666667, + "grad_norm": 0.8995780348777771, + "learning_rate": 1.5002933333333333e-05, + "loss": 1.289251251220703, + "step": 525200 + }, + { + "epoch": 70.04, + "grad_norm": 0.8692154884338379, + "learning_rate": 1.4996266666666667e-05, + "loss": 1.2940298461914062, + "step": 525300 + }, + { + "epoch": 70.05333333333333, + "grad_norm": 0.9129854440689087, + "learning_rate": 1.4989600000000001e-05, + "loss": 1.2941226196289062, + "step": 525400 + }, + { + "epoch": 70.06666666666666, + "grad_norm": 0.8497447371482849, + "learning_rate": 1.4982933333333335e-05, + "loss": 1.2971897888183594, + "step": 525500 + }, + { + "epoch": 70.08, + "grad_norm": 0.9296039342880249, + "learning_rate": 1.4976266666666666e-05, + "loss": 1.2974925231933594, + "step": 525600 + }, + { + "epoch": 70.09333333333333, + "grad_norm": 0.8348743915557861, + "learning_rate": 1.49696e-05, + "loss": 1.2969551086425781, + "step": 525700 + }, + { + "epoch": 70.10666666666667, + "grad_norm": 0.9072258472442627, + "learning_rate": 1.4962933333333334e-05, + "loss": 1.2984727478027345, + "step": 525800 + }, + { + "epoch": 70.12, + "grad_norm": 0.87555330991745, + "learning_rate": 1.4956266666666668e-05, + "loss": 1.2968763732910156, + "step": 525900 + }, + { + "epoch": 70.13333333333334, + "grad_norm": 0.8605111837387085, + "learning_rate": 1.49496e-05, + "loss": 1.2984910583496094, + "step": 526000 + }, + { + "epoch": 70.14666666666666, + "grad_norm": 0.9041507840156555, + "learning_rate": 1.4942933333333334e-05, + "loss": 1.2995046997070312, + "step": 526100 + }, + { + "epoch": 70.16, + "grad_norm": 0.8892377018928528, + "learning_rate": 1.4936266666666668e-05, + "loss": 1.2987435913085938, + "step": 526200 + }, + { + "epoch": 70.17333333333333, + "grad_norm": 0.8845103979110718, + "learning_rate": 1.4929600000000002e-05, + "loss": 1.3019927978515624, + "step": 526300 + }, + { + "epoch": 70.18666666666667, + "grad_norm": 0.9019655585289001, + "learning_rate": 1.4922933333333332e-05, + "loss": 1.3028900146484375, + "step": 526400 + }, + { + "epoch": 70.2, + "grad_norm": 0.9145544171333313, + "learning_rate": 1.4916333333333335e-05, + "loss": 1.2975439453125, + "step": 526500 + }, + { + "epoch": 70.21333333333334, + "grad_norm": 0.8441560864448547, + "learning_rate": 1.4909666666666665e-05, + "loss": 1.2994468688964844, + "step": 526600 + }, + { + "epoch": 70.22666666666667, + "grad_norm": 0.9168753623962402, + "learning_rate": 1.4903000000000001e-05, + "loss": 1.2965029907226562, + "step": 526700 + }, + { + "epoch": 70.24, + "grad_norm": 0.918009340763092, + "learning_rate": 1.4896333333333335e-05, + "loss": 1.3034149169921876, + "step": 526800 + }, + { + "epoch": 70.25333333333333, + "grad_norm": 0.8701112866401672, + "learning_rate": 1.4889666666666669e-05, + "loss": 1.306947021484375, + "step": 526900 + }, + { + "epoch": 70.26666666666667, + "grad_norm": 0.8067172765731812, + "learning_rate": 1.4883e-05, + "loss": 1.3056159973144532, + "step": 527000 + }, + { + "epoch": 70.28, + "grad_norm": 0.8838335871696472, + "learning_rate": 1.4876333333333334e-05, + "loss": 1.3039329528808594, + "step": 527100 + }, + { + "epoch": 70.29333333333334, + "grad_norm": 0.7886351346969604, + "learning_rate": 1.4869666666666668e-05, + "loss": 1.3026358032226562, + "step": 527200 + }, + { + "epoch": 70.30666666666667, + "grad_norm": 0.858665406703949, + "learning_rate": 1.4863000000000002e-05, + "loss": 1.3058314514160156, + "step": 527300 + }, + { + "epoch": 70.32, + "grad_norm": 0.888764500617981, + "learning_rate": 1.4856333333333334e-05, + "loss": 1.2972772216796875, + "step": 527400 + }, + { + "epoch": 70.33333333333333, + "grad_norm": 0.8429321050643921, + "learning_rate": 1.4849666666666668e-05, + "loss": 1.3043406677246094, + "step": 527500 + }, + { + "epoch": 70.34666666666666, + "grad_norm": 0.877232015132904, + "learning_rate": 1.4843000000000002e-05, + "loss": 1.3073738098144532, + "step": 527600 + }, + { + "epoch": 70.36, + "grad_norm": 0.8669724464416504, + "learning_rate": 1.4836333333333336e-05, + "loss": 1.30747314453125, + "step": 527700 + }, + { + "epoch": 70.37333333333333, + "grad_norm": 0.8887328505516052, + "learning_rate": 1.4829666666666666e-05, + "loss": 1.3084428405761719, + "step": 527800 + }, + { + "epoch": 70.38666666666667, + "grad_norm": 0.8904489874839783, + "learning_rate": 1.4823e-05, + "loss": 1.3099253845214844, + "step": 527900 + }, + { + "epoch": 70.4, + "grad_norm": 0.8574255704879761, + "learning_rate": 1.4816333333333334e-05, + "loss": 1.3076028442382812, + "step": 528000 + }, + { + "epoch": 70.41333333333333, + "grad_norm": 0.8327115774154663, + "learning_rate": 1.4809666666666666e-05, + "loss": 1.3109042358398437, + "step": 528100 + }, + { + "epoch": 70.42666666666666, + "grad_norm": 0.8879788517951965, + "learning_rate": 1.4803e-05, + "loss": 1.3088136291503907, + "step": 528200 + }, + { + "epoch": 70.44, + "grad_norm": 0.9286050200462341, + "learning_rate": 1.4796333333333334e-05, + "loss": 1.308986358642578, + "step": 528300 + }, + { + "epoch": 70.45333333333333, + "grad_norm": 0.8870999217033386, + "learning_rate": 1.4789666666666668e-05, + "loss": 1.3082102966308593, + "step": 528400 + }, + { + "epoch": 70.46666666666667, + "grad_norm": 0.9179296493530273, + "learning_rate": 1.4783066666666667e-05, + "loss": 1.3106611633300782, + "step": 528500 + }, + { + "epoch": 70.48, + "grad_norm": 0.9033756852149963, + "learning_rate": 1.4776400000000001e-05, + "loss": 1.314158935546875, + "step": 528600 + }, + { + "epoch": 70.49333333333334, + "grad_norm": 0.8611282706260681, + "learning_rate": 1.4769733333333335e-05, + "loss": 1.3064042663574218, + "step": 528700 + }, + { + "epoch": 70.50666666666666, + "grad_norm": 0.8423687219619751, + "learning_rate": 1.4763066666666666e-05, + "loss": 1.3101791381835937, + "step": 528800 + }, + { + "epoch": 70.52, + "grad_norm": 0.8234757781028748, + "learning_rate": 1.4756400000000002e-05, + "loss": 1.3123239135742188, + "step": 528900 + }, + { + "epoch": 70.53333333333333, + "grad_norm": 0.8716632127761841, + "learning_rate": 1.4749733333333336e-05, + "loss": 1.3124678039550781, + "step": 529000 + }, + { + "epoch": 70.54666666666667, + "grad_norm": 0.9232488870620728, + "learning_rate": 1.4743066666666666e-05, + "loss": 1.3115689086914062, + "step": 529100 + }, + { + "epoch": 70.56, + "grad_norm": 0.8848524689674377, + "learning_rate": 1.47364e-05, + "loss": 1.3127764892578124, + "step": 529200 + }, + { + "epoch": 70.57333333333334, + "grad_norm": 0.875851035118103, + "learning_rate": 1.4729733333333334e-05, + "loss": 1.3133317565917968, + "step": 529300 + }, + { + "epoch": 70.58666666666667, + "grad_norm": 0.8727511763572693, + "learning_rate": 1.4723066666666668e-05, + "loss": 1.314737548828125, + "step": 529400 + }, + { + "epoch": 70.6, + "grad_norm": 0.8630813956260681, + "learning_rate": 1.47164e-05, + "loss": 1.3156022644042968, + "step": 529500 + }, + { + "epoch": 70.61333333333333, + "grad_norm": 0.8557106852531433, + "learning_rate": 1.4709733333333334e-05, + "loss": 1.3173948669433593, + "step": 529600 + }, + { + "epoch": 70.62666666666667, + "grad_norm": 0.9779431819915771, + "learning_rate": 1.4703066666666668e-05, + "loss": 1.3198297119140625, + "step": 529700 + }, + { + "epoch": 70.64, + "grad_norm": 0.8593903183937073, + "learning_rate": 1.4696400000000002e-05, + "loss": 1.316092529296875, + "step": 529800 + }, + { + "epoch": 70.65333333333334, + "grad_norm": 0.9095006585121155, + "learning_rate": 1.4689733333333333e-05, + "loss": 1.3180062866210938, + "step": 529900 + }, + { + "epoch": 70.66666666666667, + "grad_norm": 0.8926806449890137, + "learning_rate": 1.4683066666666667e-05, + "loss": 1.3165269470214844, + "step": 530000 + }, + { + "epoch": 70.68, + "grad_norm": 0.9139357805252075, + "learning_rate": 1.46764e-05, + "loss": 1.3208946228027343, + "step": 530100 + }, + { + "epoch": 70.69333333333333, + "grad_norm": 0.8682335615158081, + "learning_rate": 1.4669733333333335e-05, + "loss": 1.3224298095703124, + "step": 530200 + }, + { + "epoch": 70.70666666666666, + "grad_norm": 0.8869616985321045, + "learning_rate": 1.4663066666666667e-05, + "loss": 1.3226483154296875, + "step": 530300 + }, + { + "epoch": 70.72, + "grad_norm": 0.8614656925201416, + "learning_rate": 1.46564e-05, + "loss": 1.3232708740234376, + "step": 530400 + }, + { + "epoch": 70.73333333333333, + "grad_norm": 0.9762331247329712, + "learning_rate": 1.46498e-05, + "loss": 1.3229257202148437, + "step": 530500 + }, + { + "epoch": 70.74666666666667, + "grad_norm": 0.8502513766288757, + "learning_rate": 1.4643133333333334e-05, + "loss": 1.3204423522949218, + "step": 530600 + }, + { + "epoch": 70.76, + "grad_norm": 0.9142144918441772, + "learning_rate": 1.4636466666666668e-05, + "loss": 1.322928924560547, + "step": 530700 + }, + { + "epoch": 70.77333333333333, + "grad_norm": 0.9454054236412048, + "learning_rate": 1.4629800000000002e-05, + "loss": 1.3222068786621093, + "step": 530800 + }, + { + "epoch": 70.78666666666666, + "grad_norm": 0.8787757754325867, + "learning_rate": 1.4623133333333332e-05, + "loss": 1.3248483276367187, + "step": 530900 + }, + { + "epoch": 70.8, + "grad_norm": 0.9337016940116882, + "learning_rate": 1.4616466666666668e-05, + "loss": 1.32533447265625, + "step": 531000 + }, + { + "epoch": 70.81333333333333, + "grad_norm": 0.8793279528617859, + "learning_rate": 1.4609800000000002e-05, + "loss": 1.3210690307617188, + "step": 531100 + }, + { + "epoch": 70.82666666666667, + "grad_norm": 0.9024862051010132, + "learning_rate": 1.4603133333333336e-05, + "loss": 1.3219599914550781, + "step": 531200 + }, + { + "epoch": 70.84, + "grad_norm": 0.8972877264022827, + "learning_rate": 1.4596466666666667e-05, + "loss": 1.3197425842285155, + "step": 531300 + }, + { + "epoch": 70.85333333333334, + "grad_norm": 0.909234344959259, + "learning_rate": 1.45898e-05, + "loss": 1.3218959045410157, + "step": 531400 + }, + { + "epoch": 70.86666666666666, + "grad_norm": 0.9078801870346069, + "learning_rate": 1.4583133333333334e-05, + "loss": 1.3193194580078125, + "step": 531500 + }, + { + "epoch": 70.88, + "grad_norm": 0.8946749567985535, + "learning_rate": 1.4576466666666667e-05, + "loss": 1.3258621215820312, + "step": 531600 + }, + { + "epoch": 70.89333333333333, + "grad_norm": 0.8717100620269775, + "learning_rate": 1.45698e-05, + "loss": 1.324842529296875, + "step": 531700 + }, + { + "epoch": 70.90666666666667, + "grad_norm": 0.9220655560493469, + "learning_rate": 1.4563133333333335e-05, + "loss": 1.32437255859375, + "step": 531800 + }, + { + "epoch": 70.92, + "grad_norm": 0.9325002431869507, + "learning_rate": 1.4556466666666669e-05, + "loss": 1.3232379150390625, + "step": 531900 + }, + { + "epoch": 70.93333333333334, + "grad_norm": 0.9063462615013123, + "learning_rate": 1.45498e-05, + "loss": 1.324942626953125, + "step": 532000 + }, + { + "epoch": 70.94666666666667, + "grad_norm": 0.9205593466758728, + "learning_rate": 1.4543133333333333e-05, + "loss": 1.3274571228027343, + "step": 532100 + }, + { + "epoch": 70.96, + "grad_norm": 0.887042760848999, + "learning_rate": 1.4536466666666667e-05, + "loss": 1.3272421264648437, + "step": 532200 + }, + { + "epoch": 70.97333333333333, + "grad_norm": 0.8990888595581055, + "learning_rate": 1.4529800000000001e-05, + "loss": 1.3276673889160155, + "step": 532300 + }, + { + "epoch": 70.98666666666666, + "grad_norm": 0.86974036693573, + "learning_rate": 1.4523133333333333e-05, + "loss": 1.329319610595703, + "step": 532400 + }, + { + "epoch": 71.0, + "grad_norm": 0.8930814266204834, + "learning_rate": 1.4516533333333334e-05, + "loss": 1.325640869140625, + "step": 532500 + }, + { + "epoch": 71.01333333333334, + "grad_norm": 0.8759956955909729, + "learning_rate": 1.4509866666666666e-05, + "loss": 1.2856077575683593, + "step": 532600 + }, + { + "epoch": 71.02666666666667, + "grad_norm": 0.8954336047172546, + "learning_rate": 1.45032e-05, + "loss": 1.2832220458984376, + "step": 532700 + }, + { + "epoch": 71.04, + "grad_norm": 0.8733825087547302, + "learning_rate": 1.4496533333333334e-05, + "loss": 1.28903564453125, + "step": 532800 + }, + { + "epoch": 71.05333333333333, + "grad_norm": 0.9075688123703003, + "learning_rate": 1.4489866666666668e-05, + "loss": 1.28570556640625, + "step": 532900 + }, + { + "epoch": 71.06666666666666, + "grad_norm": 0.9383872747421265, + "learning_rate": 1.4483199999999999e-05, + "loss": 1.2899357604980468, + "step": 533000 + }, + { + "epoch": 71.08, + "grad_norm": 0.9034363031387329, + "learning_rate": 1.4476533333333333e-05, + "loss": 1.286364288330078, + "step": 533100 + }, + { + "epoch": 71.09333333333333, + "grad_norm": 0.8787199854850769, + "learning_rate": 1.4469866666666668e-05, + "loss": 1.2864273071289063, + "step": 533200 + }, + { + "epoch": 71.10666666666667, + "grad_norm": 0.8827729821205139, + "learning_rate": 1.4463200000000002e-05, + "loss": 1.2890650939941406, + "step": 533300 + }, + { + "epoch": 71.12, + "grad_norm": 0.8463526964187622, + "learning_rate": 1.4456533333333333e-05, + "loss": 1.2948846435546875, + "step": 533400 + }, + { + "epoch": 71.13333333333334, + "grad_norm": 0.903069794178009, + "learning_rate": 1.4449866666666667e-05, + "loss": 1.292220458984375, + "step": 533500 + }, + { + "epoch": 71.14666666666666, + "grad_norm": 0.9482007622718811, + "learning_rate": 1.4443200000000001e-05, + "loss": 1.2937982177734375, + "step": 533600 + }, + { + "epoch": 71.16, + "grad_norm": 0.8994336724281311, + "learning_rate": 1.4436533333333335e-05, + "loss": 1.2911940002441407, + "step": 533700 + }, + { + "epoch": 71.17333333333333, + "grad_norm": 0.8807686567306519, + "learning_rate": 1.4429866666666667e-05, + "loss": 1.2945388793945312, + "step": 533800 + }, + { + "epoch": 71.18666666666667, + "grad_norm": 0.8905879259109497, + "learning_rate": 1.4423200000000001e-05, + "loss": 1.294481964111328, + "step": 533900 + }, + { + "epoch": 71.2, + "grad_norm": 0.8632029891014099, + "learning_rate": 1.4416533333333335e-05, + "loss": 1.2912913513183595, + "step": 534000 + }, + { + "epoch": 71.21333333333334, + "grad_norm": 0.9372066259384155, + "learning_rate": 1.4409866666666669e-05, + "loss": 1.2954859924316406, + "step": 534100 + }, + { + "epoch": 71.22666666666667, + "grad_norm": 0.870266854763031, + "learning_rate": 1.44032e-05, + "loss": 1.2997502136230468, + "step": 534200 + }, + { + "epoch": 71.24, + "grad_norm": 0.8637234568595886, + "learning_rate": 1.4396533333333334e-05, + "loss": 1.2924945068359375, + "step": 534300 + }, + { + "epoch": 71.25333333333333, + "grad_norm": 0.9175564050674438, + "learning_rate": 1.4389866666666668e-05, + "loss": 1.2968971252441406, + "step": 534400 + }, + { + "epoch": 71.26666666666667, + "grad_norm": 0.876574695110321, + "learning_rate": 1.43832e-05, + "loss": 1.2949362182617188, + "step": 534500 + }, + { + "epoch": 71.28, + "grad_norm": 0.9054247140884399, + "learning_rate": 1.43766e-05, + "loss": 1.300845947265625, + "step": 534600 + }, + { + "epoch": 71.29333333333334, + "grad_norm": 0.9211097359657288, + "learning_rate": 1.4369933333333335e-05, + "loss": 1.3006065368652344, + "step": 534700 + }, + { + "epoch": 71.30666666666667, + "grad_norm": 0.8372483849525452, + "learning_rate": 1.4363266666666667e-05, + "loss": 1.2985647583007813, + "step": 534800 + }, + { + "epoch": 71.32, + "grad_norm": 0.8625202775001526, + "learning_rate": 1.43566e-05, + "loss": 1.3008456420898438, + "step": 534900 + }, + { + "epoch": 71.33333333333333, + "grad_norm": 0.8992438912391663, + "learning_rate": 1.4349933333333335e-05, + "loss": 1.301300048828125, + "step": 535000 + }, + { + "epoch": 71.34666666666666, + "grad_norm": 0.8850386738777161, + "learning_rate": 1.4343266666666669e-05, + "loss": 1.301788330078125, + "step": 535100 + }, + { + "epoch": 71.36, + "grad_norm": 0.8406701683998108, + "learning_rate": 1.43366e-05, + "loss": 1.2999703979492188, + "step": 535200 + }, + { + "epoch": 71.37333333333333, + "grad_norm": 0.8646606802940369, + "learning_rate": 1.4329933333333335e-05, + "loss": 1.3001799011230468, + "step": 535300 + }, + { + "epoch": 71.38666666666667, + "grad_norm": 0.9445309638977051, + "learning_rate": 1.4323266666666669e-05, + "loss": 1.302128143310547, + "step": 535400 + }, + { + "epoch": 71.4, + "grad_norm": 0.9471325874328613, + "learning_rate": 1.43166e-05, + "loss": 1.2999264526367187, + "step": 535500 + }, + { + "epoch": 71.41333333333333, + "grad_norm": 0.8217885494232178, + "learning_rate": 1.4309933333333333e-05, + "loss": 1.3032241821289063, + "step": 535600 + }, + { + "epoch": 71.42666666666666, + "grad_norm": 0.9401599764823914, + "learning_rate": 1.4303266666666667e-05, + "loss": 1.3056138610839845, + "step": 535700 + }, + { + "epoch": 71.44, + "grad_norm": 0.9012302756309509, + "learning_rate": 1.4296600000000001e-05, + "loss": 1.3041902160644532, + "step": 535800 + }, + { + "epoch": 71.45333333333333, + "grad_norm": 0.9111303091049194, + "learning_rate": 1.4289933333333334e-05, + "loss": 1.3063230895996094, + "step": 535900 + }, + { + "epoch": 71.46666666666667, + "grad_norm": 0.8673276901245117, + "learning_rate": 1.4283266666666668e-05, + "loss": 1.3001760864257812, + "step": 536000 + }, + { + "epoch": 71.48, + "grad_norm": 0.9236326217651367, + "learning_rate": 1.4276600000000002e-05, + "loss": 1.3068719482421876, + "step": 536100 + }, + { + "epoch": 71.49333333333334, + "grad_norm": 0.9119008779525757, + "learning_rate": 1.4269933333333335e-05, + "loss": 1.3041954040527344, + "step": 536200 + }, + { + "epoch": 71.50666666666666, + "grad_norm": 0.8844600319862366, + "learning_rate": 1.4263266666666666e-05, + "loss": 1.3039337158203126, + "step": 536300 + }, + { + "epoch": 71.52, + "grad_norm": 0.9151673316955566, + "learning_rate": 1.42566e-05, + "loss": 1.3061659240722656, + "step": 536400 + }, + { + "epoch": 71.53333333333333, + "grad_norm": 0.9146116971969604, + "learning_rate": 1.4249933333333334e-05, + "loss": 1.3047665405273436, + "step": 536500 + }, + { + "epoch": 71.54666666666667, + "grad_norm": 0.909635066986084, + "learning_rate": 1.4243333333333333e-05, + "loss": 1.3087080383300782, + "step": 536600 + }, + { + "epoch": 71.56, + "grad_norm": 0.9132217168807983, + "learning_rate": 1.4236666666666667e-05, + "loss": 1.3109938049316405, + "step": 536700 + }, + { + "epoch": 71.57333333333334, + "grad_norm": 0.9197409749031067, + "learning_rate": 1.4230000000000001e-05, + "loss": 1.3079139709472656, + "step": 536800 + }, + { + "epoch": 71.58666666666667, + "grad_norm": 0.8718376755714417, + "learning_rate": 1.4223333333333333e-05, + "loss": 1.3103158569335938, + "step": 536900 + }, + { + "epoch": 71.6, + "grad_norm": 0.8622058629989624, + "learning_rate": 1.4216666666666667e-05, + "loss": 1.31333251953125, + "step": 537000 + }, + { + "epoch": 71.61333333333333, + "grad_norm": 0.8807839155197144, + "learning_rate": 1.4210000000000001e-05, + "loss": 1.3074960327148437, + "step": 537100 + }, + { + "epoch": 71.62666666666667, + "grad_norm": 0.8405951261520386, + "learning_rate": 1.4203333333333335e-05, + "loss": 1.3117068481445313, + "step": 537200 + }, + { + "epoch": 71.64, + "grad_norm": 0.882014811038971, + "learning_rate": 1.4196666666666666e-05, + "loss": 1.3139077758789062, + "step": 537300 + }, + { + "epoch": 71.65333333333334, + "grad_norm": 0.9259293675422668, + "learning_rate": 1.4190000000000001e-05, + "loss": 1.310390625, + "step": 537400 + }, + { + "epoch": 71.66666666666667, + "grad_norm": 0.9055889248847961, + "learning_rate": 1.4183333333333335e-05, + "loss": 1.3092813110351562, + "step": 537500 + }, + { + "epoch": 71.68, + "grad_norm": 0.8556098937988281, + "learning_rate": 1.417666666666667e-05, + "loss": 1.30866455078125, + "step": 537600 + }, + { + "epoch": 71.69333333333333, + "grad_norm": 0.8926159143447876, + "learning_rate": 1.417e-05, + "loss": 1.3125555419921875, + "step": 537700 + }, + { + "epoch": 71.70666666666666, + "grad_norm": 0.9067847728729248, + "learning_rate": 1.4163333333333334e-05, + "loss": 1.3115115356445313, + "step": 537800 + }, + { + "epoch": 71.72, + "grad_norm": 0.9084548950195312, + "learning_rate": 1.4156666666666668e-05, + "loss": 1.310784912109375, + "step": 537900 + }, + { + "epoch": 71.73333333333333, + "grad_norm": 0.9122881889343262, + "learning_rate": 1.415e-05, + "loss": 1.3145706176757812, + "step": 538000 + }, + { + "epoch": 71.74666666666667, + "grad_norm": 0.9275632500648499, + "learning_rate": 1.4143333333333334e-05, + "loss": 1.3158493041992188, + "step": 538100 + }, + { + "epoch": 71.76, + "grad_norm": 0.8880303502082825, + "learning_rate": 1.4136666666666668e-05, + "loss": 1.3153211975097656, + "step": 538200 + }, + { + "epoch": 71.77333333333333, + "grad_norm": 0.8939701318740845, + "learning_rate": 1.4130000000000002e-05, + "loss": 1.3133526611328126, + "step": 538300 + }, + { + "epoch": 71.78666666666666, + "grad_norm": 0.9312496781349182, + "learning_rate": 1.4123333333333333e-05, + "loss": 1.3141810607910156, + "step": 538400 + }, + { + "epoch": 71.8, + "grad_norm": 0.8720466494560242, + "learning_rate": 1.4116666666666666e-05, + "loss": 1.3163778686523437, + "step": 538500 + }, + { + "epoch": 71.81333333333333, + "grad_norm": 0.8582771420478821, + "learning_rate": 1.4110066666666669e-05, + "loss": 1.3129298400878906, + "step": 538600 + }, + { + "epoch": 71.82666666666667, + "grad_norm": 0.8980292677879333, + "learning_rate": 1.41034e-05, + "loss": 1.3134010314941407, + "step": 538700 + }, + { + "epoch": 71.84, + "grad_norm": 0.8518330454826355, + "learning_rate": 1.4096733333333333e-05, + "loss": 1.318262176513672, + "step": 538800 + }, + { + "epoch": 71.85333333333334, + "grad_norm": 0.9726895689964294, + "learning_rate": 1.4090066666666667e-05, + "loss": 1.3170086669921874, + "step": 538900 + }, + { + "epoch": 71.86666666666666, + "grad_norm": 0.9808132648468018, + "learning_rate": 1.40834e-05, + "loss": 1.3163888549804688, + "step": 539000 + }, + { + "epoch": 71.88, + "grad_norm": 0.9004959464073181, + "learning_rate": 1.4076733333333334e-05, + "loss": 1.319114227294922, + "step": 539100 + }, + { + "epoch": 71.89333333333333, + "grad_norm": 0.9053959846496582, + "learning_rate": 1.4070066666666668e-05, + "loss": 1.31746337890625, + "step": 539200 + }, + { + "epoch": 71.90666666666667, + "grad_norm": 0.9328406453132629, + "learning_rate": 1.4063400000000002e-05, + "loss": 1.3196490478515626, + "step": 539300 + }, + { + "epoch": 71.92, + "grad_norm": 0.9023466110229492, + "learning_rate": 1.4056733333333332e-05, + "loss": 1.3168644714355469, + "step": 539400 + }, + { + "epoch": 71.93333333333334, + "grad_norm": 0.9490998983383179, + "learning_rate": 1.4050066666666666e-05, + "loss": 1.3167729187011719, + "step": 539500 + }, + { + "epoch": 71.94666666666667, + "grad_norm": 0.8722997903823853, + "learning_rate": 1.4043400000000002e-05, + "loss": 1.3187103271484375, + "step": 539600 + }, + { + "epoch": 71.96, + "grad_norm": 0.8097230792045593, + "learning_rate": 1.4036733333333336e-05, + "loss": 1.3224807739257813, + "step": 539700 + }, + { + "epoch": 71.97333333333333, + "grad_norm": 0.8848879337310791, + "learning_rate": 1.4030066666666666e-05, + "loss": 1.3202239990234375, + "step": 539800 + }, + { + "epoch": 71.98666666666666, + "grad_norm": 0.9258289933204651, + "learning_rate": 1.40234e-05, + "loss": 1.316883544921875, + "step": 539900 + }, + { + "epoch": 72.0, + "grad_norm": 0.8436217904090881, + "learning_rate": 1.4016733333333334e-05, + "loss": 1.315811309814453, + "step": 540000 + }, + { + "epoch": 72.01333333333334, + "grad_norm": 0.8667635321617126, + "learning_rate": 1.4010066666666668e-05, + "loss": 1.276677932739258, + "step": 540100 + }, + { + "epoch": 72.02666666666667, + "grad_norm": 0.9259230494499207, + "learning_rate": 1.40034e-05, + "loss": 1.281935577392578, + "step": 540200 + }, + { + "epoch": 72.04, + "grad_norm": 0.8905673027038574, + "learning_rate": 1.3996733333333334e-05, + "loss": 1.279156951904297, + "step": 540300 + }, + { + "epoch": 72.05333333333333, + "grad_norm": 0.829764723777771, + "learning_rate": 1.3990066666666668e-05, + "loss": 1.2802044677734374, + "step": 540400 + }, + { + "epoch": 72.06666666666666, + "grad_norm": 0.8586835861206055, + "learning_rate": 1.3983400000000002e-05, + "loss": 1.2799781036376954, + "step": 540500 + }, + { + "epoch": 72.08, + "grad_norm": 0.9158450365066528, + "learning_rate": 1.3976800000000001e-05, + "loss": 1.2819879150390625, + "step": 540600 + }, + { + "epoch": 72.09333333333333, + "grad_norm": 0.8834480047225952, + "learning_rate": 1.3970133333333335e-05, + "loss": 1.286240234375, + "step": 540700 + }, + { + "epoch": 72.10666666666667, + "grad_norm": 0.8838781118392944, + "learning_rate": 1.3963466666666666e-05, + "loss": 1.2864297485351563, + "step": 540800 + }, + { + "epoch": 72.12, + "grad_norm": 0.8703628778457642, + "learning_rate": 1.39568e-05, + "loss": 1.2833221435546875, + "step": 540900 + }, + { + "epoch": 72.13333333333334, + "grad_norm": 0.8430854678153992, + "learning_rate": 1.3950133333333334e-05, + "loss": 1.2873780822753906, + "step": 541000 + }, + { + "epoch": 72.14666666666666, + "grad_norm": 0.8535856008529663, + "learning_rate": 1.3943466666666668e-05, + "loss": 1.285396728515625, + "step": 541100 + }, + { + "epoch": 72.16, + "grad_norm": 0.9505435228347778, + "learning_rate": 1.39368e-05, + "loss": 1.2908889770507812, + "step": 541200 + }, + { + "epoch": 72.17333333333333, + "grad_norm": 0.9199652671813965, + "learning_rate": 1.3930133333333334e-05, + "loss": 1.2874760437011719, + "step": 541300 + }, + { + "epoch": 72.18666666666667, + "grad_norm": 0.9367565512657166, + "learning_rate": 1.3923466666666668e-05, + "loss": 1.2900453186035157, + "step": 541400 + }, + { + "epoch": 72.2, + "grad_norm": 0.8932370543479919, + "learning_rate": 1.3916799999999999e-05, + "loss": 1.290118408203125, + "step": 541500 + }, + { + "epoch": 72.21333333333334, + "grad_norm": 0.8846625089645386, + "learning_rate": 1.3910133333333333e-05, + "loss": 1.289880828857422, + "step": 541600 + }, + { + "epoch": 72.22666666666667, + "grad_norm": 0.8700215816497803, + "learning_rate": 1.3903466666666668e-05, + "loss": 1.2882028198242188, + "step": 541700 + }, + { + "epoch": 72.24, + "grad_norm": 0.8952950239181519, + "learning_rate": 1.3896800000000002e-05, + "loss": 1.2952290344238282, + "step": 541800 + }, + { + "epoch": 72.25333333333333, + "grad_norm": 0.8888140320777893, + "learning_rate": 1.3890133333333333e-05, + "loss": 1.2887269592285155, + "step": 541900 + }, + { + "epoch": 72.26666666666667, + "grad_norm": 0.873499870300293, + "learning_rate": 1.3883466666666667e-05, + "loss": 1.2873663330078124, + "step": 542000 + }, + { + "epoch": 72.28, + "grad_norm": 0.8604170083999634, + "learning_rate": 1.38768e-05, + "loss": 1.2889486694335937, + "step": 542100 + }, + { + "epoch": 72.29333333333334, + "grad_norm": 0.8493339419364929, + "learning_rate": 1.3870133333333335e-05, + "loss": 1.2932403564453125, + "step": 542200 + }, + { + "epoch": 72.30666666666667, + "grad_norm": 0.8944411873817444, + "learning_rate": 1.3863466666666667e-05, + "loss": 1.298619384765625, + "step": 542300 + }, + { + "epoch": 72.32, + "grad_norm": 0.9077425003051758, + "learning_rate": 1.3856800000000001e-05, + "loss": 1.291400146484375, + "step": 542400 + }, + { + "epoch": 72.33333333333333, + "grad_norm": 0.9395051598548889, + "learning_rate": 1.3850133333333335e-05, + "loss": 1.2952896118164063, + "step": 542500 + }, + { + "epoch": 72.34666666666666, + "grad_norm": 0.9028144478797913, + "learning_rate": 1.3843533333333334e-05, + "loss": 1.290705108642578, + "step": 542600 + }, + { + "epoch": 72.36, + "grad_norm": 0.9369432330131531, + "learning_rate": 1.3836866666666668e-05, + "loss": 1.2938015747070313, + "step": 542700 + }, + { + "epoch": 72.37333333333333, + "grad_norm": 0.8780479431152344, + "learning_rate": 1.3830200000000002e-05, + "loss": 1.296564483642578, + "step": 542800 + }, + { + "epoch": 72.38666666666667, + "grad_norm": 0.9035230875015259, + "learning_rate": 1.3823533333333332e-05, + "loss": 1.3008587646484375, + "step": 542900 + }, + { + "epoch": 72.4, + "grad_norm": 0.8920375108718872, + "learning_rate": 1.3816866666666666e-05, + "loss": 1.2913095092773437, + "step": 543000 + }, + { + "epoch": 72.41333333333333, + "grad_norm": 0.8965349793434143, + "learning_rate": 1.38102e-05, + "loss": 1.2953553771972657, + "step": 543100 + }, + { + "epoch": 72.42666666666666, + "grad_norm": 0.8993667364120483, + "learning_rate": 1.3803533333333334e-05, + "loss": 1.300503692626953, + "step": 543200 + }, + { + "epoch": 72.44, + "grad_norm": 0.8752589821815491, + "learning_rate": 1.3796866666666667e-05, + "loss": 1.2973211669921876, + "step": 543300 + }, + { + "epoch": 72.45333333333333, + "grad_norm": 0.9074227809906006, + "learning_rate": 1.37902e-05, + "loss": 1.2994436645507812, + "step": 543400 + }, + { + "epoch": 72.46666666666667, + "grad_norm": 0.8692722320556641, + "learning_rate": 1.3783533333333335e-05, + "loss": 1.3030880737304686, + "step": 543500 + }, + { + "epoch": 72.48, + "grad_norm": 0.9283269047737122, + "learning_rate": 1.3776866666666668e-05, + "loss": 1.2986073303222656, + "step": 543600 + }, + { + "epoch": 72.49333333333334, + "grad_norm": 0.8463515639305115, + "learning_rate": 1.3770199999999999e-05, + "loss": 1.3008390808105468, + "step": 543700 + }, + { + "epoch": 72.50666666666666, + "grad_norm": 0.9368971586227417, + "learning_rate": 1.3763533333333333e-05, + "loss": 1.3003103637695312, + "step": 543800 + }, + { + "epoch": 72.52, + "grad_norm": 0.8514252305030823, + "learning_rate": 1.3756866666666669e-05, + "loss": 1.2996723937988282, + "step": 543900 + }, + { + "epoch": 72.53333333333333, + "grad_norm": 0.9113193154335022, + "learning_rate": 1.3750200000000003e-05, + "loss": 1.3013104248046874, + "step": 544000 + }, + { + "epoch": 72.54666666666667, + "grad_norm": 0.8973194360733032, + "learning_rate": 1.3743533333333333e-05, + "loss": 1.303866424560547, + "step": 544100 + }, + { + "epoch": 72.56, + "grad_norm": 0.9292814135551453, + "learning_rate": 1.3736866666666667e-05, + "loss": 1.3007473754882812, + "step": 544200 + }, + { + "epoch": 72.57333333333334, + "grad_norm": 0.8650021553039551, + "learning_rate": 1.3730200000000001e-05, + "loss": 1.3053372192382813, + "step": 544300 + }, + { + "epoch": 72.58666666666667, + "grad_norm": 0.9136223196983337, + "learning_rate": 1.3723533333333333e-05, + "loss": 1.305074462890625, + "step": 544400 + }, + { + "epoch": 72.6, + "grad_norm": 0.899770975112915, + "learning_rate": 1.3716866666666667e-05, + "loss": 1.304183807373047, + "step": 544500 + }, + { + "epoch": 72.61333333333333, + "grad_norm": 0.9051358699798584, + "learning_rate": 1.3710200000000001e-05, + "loss": 1.2999253845214844, + "step": 544600 + }, + { + "epoch": 72.62666666666667, + "grad_norm": 0.8969173431396484, + "learning_rate": 1.37036e-05, + "loss": 1.301925048828125, + "step": 544700 + }, + { + "epoch": 72.64, + "grad_norm": 0.8683328032493591, + "learning_rate": 1.3696933333333334e-05, + "loss": 1.3041268920898437, + "step": 544800 + }, + { + "epoch": 72.65333333333334, + "grad_norm": 0.9285234808921814, + "learning_rate": 1.3690266666666668e-05, + "loss": 1.3035903930664063, + "step": 544900 + }, + { + "epoch": 72.66666666666667, + "grad_norm": 0.9057257175445557, + "learning_rate": 1.3683600000000002e-05, + "loss": 1.3026934814453126, + "step": 545000 + }, + { + "epoch": 72.68, + "grad_norm": 0.9157271385192871, + "learning_rate": 1.3676933333333333e-05, + "loss": 1.303736114501953, + "step": 545100 + }, + { + "epoch": 72.69333333333333, + "grad_norm": 0.8953295350074768, + "learning_rate": 1.3670266666666667e-05, + "loss": 1.3063804626464843, + "step": 545200 + }, + { + "epoch": 72.70666666666666, + "grad_norm": 0.9013524651527405, + "learning_rate": 1.36636e-05, + "loss": 1.3081599426269532, + "step": 545300 + }, + { + "epoch": 72.72, + "grad_norm": 0.8747628331184387, + "learning_rate": 1.3656933333333333e-05, + "loss": 1.3081907653808593, + "step": 545400 + }, + { + "epoch": 72.73333333333333, + "grad_norm": 0.8898458480834961, + "learning_rate": 1.3650266666666667e-05, + "loss": 1.308251953125, + "step": 545500 + }, + { + "epoch": 72.74666666666667, + "grad_norm": 0.9078856110572815, + "learning_rate": 1.3643600000000001e-05, + "loss": 1.3066876220703125, + "step": 545600 + }, + { + "epoch": 72.76, + "grad_norm": 0.8842049241065979, + "learning_rate": 1.3636933333333335e-05, + "loss": 1.3049169921875, + "step": 545700 + }, + { + "epoch": 72.77333333333333, + "grad_norm": 0.9232098460197449, + "learning_rate": 1.3630266666666666e-05, + "loss": 1.3058796691894532, + "step": 545800 + }, + { + "epoch": 72.78666666666666, + "grad_norm": 0.9262491464614868, + "learning_rate": 1.36236e-05, + "loss": 1.3056631469726563, + "step": 545900 + }, + { + "epoch": 72.8, + "grad_norm": 0.9117762446403503, + "learning_rate": 1.3616933333333335e-05, + "loss": 1.3098313903808594, + "step": 546000 + }, + { + "epoch": 72.81333333333333, + "grad_norm": 0.8940130472183228, + "learning_rate": 1.3610266666666669e-05, + "loss": 1.3110063171386719, + "step": 546100 + }, + { + "epoch": 72.82666666666667, + "grad_norm": 0.8723244071006775, + "learning_rate": 1.36036e-05, + "loss": 1.3087918090820312, + "step": 546200 + }, + { + "epoch": 72.84, + "grad_norm": 0.8790159821510315, + "learning_rate": 1.3596933333333334e-05, + "loss": 1.3090879821777344, + "step": 546300 + }, + { + "epoch": 72.85333333333334, + "grad_norm": 0.9324440956115723, + "learning_rate": 1.3590266666666668e-05, + "loss": 1.3065005493164064, + "step": 546400 + }, + { + "epoch": 72.86666666666666, + "grad_norm": 0.9022642374038696, + "learning_rate": 1.3583600000000002e-05, + "loss": 1.308943634033203, + "step": 546500 + }, + { + "epoch": 72.88, + "grad_norm": 0.8869839906692505, + "learning_rate": 1.3576933333333334e-05, + "loss": 1.3140464782714845, + "step": 546600 + }, + { + "epoch": 72.89333333333333, + "grad_norm": 0.9020800590515137, + "learning_rate": 1.3570333333333335e-05, + "loss": 1.3082620239257812, + "step": 546700 + }, + { + "epoch": 72.90666666666667, + "grad_norm": 0.8998864889144897, + "learning_rate": 1.3563666666666667e-05, + "loss": 1.3143278503417968, + "step": 546800 + }, + { + "epoch": 72.92, + "grad_norm": 0.9254443645477295, + "learning_rate": 1.3557e-05, + "loss": 1.3102537536621093, + "step": 546900 + }, + { + "epoch": 72.93333333333334, + "grad_norm": 0.8916531205177307, + "learning_rate": 1.3550333333333335e-05, + "loss": 1.3090887451171875, + "step": 547000 + }, + { + "epoch": 72.94666666666667, + "grad_norm": 0.8924204707145691, + "learning_rate": 1.3543666666666669e-05, + "loss": 1.3153028869628907, + "step": 547100 + }, + { + "epoch": 72.96, + "grad_norm": 0.8734211921691895, + "learning_rate": 1.3537e-05, + "loss": 1.3160145568847657, + "step": 547200 + }, + { + "epoch": 72.97333333333333, + "grad_norm": 0.8596046566963196, + "learning_rate": 1.3530333333333333e-05, + "loss": 1.3085627746582031, + "step": 547300 + }, + { + "epoch": 72.98666666666666, + "grad_norm": 0.8837646842002869, + "learning_rate": 1.3523666666666667e-05, + "loss": 1.3099195861816406, + "step": 547400 + }, + { + "epoch": 73.0, + "grad_norm": 0.9559072852134705, + "learning_rate": 1.3517000000000001e-05, + "loss": 1.3160740661621093, + "step": 547500 + }, + { + "epoch": 73.01333333333334, + "grad_norm": 0.9471146464347839, + "learning_rate": 1.3510333333333333e-05, + "loss": 1.2761563110351561, + "step": 547600 + }, + { + "epoch": 73.02666666666667, + "grad_norm": 0.8618519306182861, + "learning_rate": 1.3503666666666667e-05, + "loss": 1.2729344940185547, + "step": 547700 + }, + { + "epoch": 73.04, + "grad_norm": 0.8488065600395203, + "learning_rate": 1.3497000000000001e-05, + "loss": 1.273756561279297, + "step": 547800 + }, + { + "epoch": 73.05333333333333, + "grad_norm": 0.8331854343414307, + "learning_rate": 1.3490333333333332e-05, + "loss": 1.277390899658203, + "step": 547900 + }, + { + "epoch": 73.06666666666666, + "grad_norm": 0.8586211204528809, + "learning_rate": 1.3483666666666666e-05, + "loss": 1.276772689819336, + "step": 548000 + }, + { + "epoch": 73.08, + "grad_norm": 0.8098661303520203, + "learning_rate": 1.3477000000000002e-05, + "loss": 1.2797915649414062, + "step": 548100 + }, + { + "epoch": 73.09333333333333, + "grad_norm": 0.953315019607544, + "learning_rate": 1.3470333333333336e-05, + "loss": 1.276962432861328, + "step": 548200 + }, + { + "epoch": 73.10666666666667, + "grad_norm": 0.8598954677581787, + "learning_rate": 1.3463666666666666e-05, + "loss": 1.2770060729980468, + "step": 548300 + }, + { + "epoch": 73.12, + "grad_norm": 0.8851730227470398, + "learning_rate": 1.3457e-05, + "loss": 1.2772944641113282, + "step": 548400 + }, + { + "epoch": 73.13333333333334, + "grad_norm": 0.8884763121604919, + "learning_rate": 1.3450333333333334e-05, + "loss": 1.2774359130859374, + "step": 548500 + }, + { + "epoch": 73.14666666666666, + "grad_norm": 0.9043313264846802, + "learning_rate": 1.3443666666666668e-05, + "loss": 1.2833470153808593, + "step": 548600 + }, + { + "epoch": 73.16, + "grad_norm": 0.9404314160346985, + "learning_rate": 1.3437066666666667e-05, + "loss": 1.2804563903808595, + "step": 548700 + }, + { + "epoch": 73.17333333333333, + "grad_norm": 0.8437866568565369, + "learning_rate": 1.3430400000000001e-05, + "loss": 1.2854263305664062, + "step": 548800 + }, + { + "epoch": 73.18666666666667, + "grad_norm": 0.927335798740387, + "learning_rate": 1.3423733333333333e-05, + "loss": 1.2844186401367188, + "step": 548900 + }, + { + "epoch": 73.2, + "grad_norm": 0.8449512124061584, + "learning_rate": 1.3417066666666667e-05, + "loss": 1.2796637725830078, + "step": 549000 + }, + { + "epoch": 73.21333333333334, + "grad_norm": 0.8738372325897217, + "learning_rate": 1.3410400000000001e-05, + "loss": 1.2857395935058593, + "step": 549100 + }, + { + "epoch": 73.22666666666667, + "grad_norm": 0.8766629695892334, + "learning_rate": 1.3403733333333335e-05, + "loss": 1.2832762145996093, + "step": 549200 + }, + { + "epoch": 73.24, + "grad_norm": 0.8308307528495789, + "learning_rate": 1.3397066666666666e-05, + "loss": 1.2830810546875, + "step": 549300 + }, + { + "epoch": 73.25333333333333, + "grad_norm": 0.9020586013793945, + "learning_rate": 1.33904e-05, + "loss": 1.2846853637695312, + "step": 549400 + }, + { + "epoch": 73.26666666666667, + "grad_norm": 0.8639815449714661, + "learning_rate": 1.3383733333333334e-05, + "loss": 1.287603302001953, + "step": 549500 + }, + { + "epoch": 73.28, + "grad_norm": 0.8645631670951843, + "learning_rate": 1.3377066666666668e-05, + "loss": 1.287257537841797, + "step": 549600 + }, + { + "epoch": 73.29333333333334, + "grad_norm": 0.8956714868545532, + "learning_rate": 1.33704e-05, + "loss": 1.2851387023925782, + "step": 549700 + }, + { + "epoch": 73.30666666666667, + "grad_norm": 0.9055325984954834, + "learning_rate": 1.3363733333333334e-05, + "loss": 1.2879544067382813, + "step": 549800 + }, + { + "epoch": 73.32, + "grad_norm": 0.8861287236213684, + "learning_rate": 1.3357066666666668e-05, + "loss": 1.2887428283691407, + "step": 549900 + }, + { + "epoch": 73.33333333333333, + "grad_norm": 0.9045313000679016, + "learning_rate": 1.3350400000000002e-05, + "loss": 1.2884335327148437, + "step": 550000 + }, + { + "epoch": 73.34666666666666, + "grad_norm": 0.8875342011451721, + "learning_rate": 1.3343733333333332e-05, + "loss": 1.2835194396972656, + "step": 550100 + }, + { + "epoch": 73.36, + "grad_norm": 0.8842615485191345, + "learning_rate": 1.3337066666666666e-05, + "loss": 1.2884930419921874, + "step": 550200 + }, + { + "epoch": 73.37333333333333, + "grad_norm": 0.9177148342132568, + "learning_rate": 1.3330400000000002e-05, + "loss": 1.290846710205078, + "step": 550300 + }, + { + "epoch": 73.38666666666667, + "grad_norm": 0.913221538066864, + "learning_rate": 1.3323733333333336e-05, + "loss": 1.2883349609375, + "step": 550400 + }, + { + "epoch": 73.4, + "grad_norm": 0.9081894159317017, + "learning_rate": 1.3317066666666667e-05, + "loss": 1.2872616577148437, + "step": 550500 + }, + { + "epoch": 73.41333333333333, + "grad_norm": 0.8833068609237671, + "learning_rate": 1.33104e-05, + "loss": 1.2878277587890625, + "step": 550600 + }, + { + "epoch": 73.42666666666666, + "grad_norm": 0.8581375479698181, + "learning_rate": 1.33038e-05, + "loss": 1.2895700073242187, + "step": 550700 + }, + { + "epoch": 73.44, + "grad_norm": 0.9249962568283081, + "learning_rate": 1.3297133333333334e-05, + "loss": 1.2897068786621093, + "step": 550800 + }, + { + "epoch": 73.45333333333333, + "grad_norm": 0.9126532077789307, + "learning_rate": 1.3290466666666668e-05, + "loss": 1.2911618041992188, + "step": 550900 + }, + { + "epoch": 73.46666666666667, + "grad_norm": 0.91612708568573, + "learning_rate": 1.3283800000000001e-05, + "loss": 1.2918502807617187, + "step": 551000 + }, + { + "epoch": 73.48, + "grad_norm": 0.8593502044677734, + "learning_rate": 1.3277133333333334e-05, + "loss": 1.292982177734375, + "step": 551100 + }, + { + "epoch": 73.49333333333334, + "grad_norm": 0.9457326531410217, + "learning_rate": 1.3270466666666668e-05, + "loss": 1.2906185913085937, + "step": 551200 + }, + { + "epoch": 73.50666666666666, + "grad_norm": 0.8378877639770508, + "learning_rate": 1.3263800000000002e-05, + "loss": 1.29209228515625, + "step": 551300 + }, + { + "epoch": 73.52, + "grad_norm": 0.9088276624679565, + "learning_rate": 1.3257133333333336e-05, + "loss": 1.2912477111816407, + "step": 551400 + }, + { + "epoch": 73.53333333333333, + "grad_norm": 0.9294626712799072, + "learning_rate": 1.3250466666666666e-05, + "loss": 1.2885626220703126, + "step": 551500 + }, + { + "epoch": 73.54666666666667, + "grad_norm": 0.876581072807312, + "learning_rate": 1.32438e-05, + "loss": 1.2994056701660157, + "step": 551600 + }, + { + "epoch": 73.56, + "grad_norm": 0.9063646793365479, + "learning_rate": 1.3237133333333334e-05, + "loss": 1.2967149353027343, + "step": 551700 + }, + { + "epoch": 73.57333333333334, + "grad_norm": 0.8408426642417908, + "learning_rate": 1.3230466666666666e-05, + "loss": 1.2977626037597656, + "step": 551800 + }, + { + "epoch": 73.58666666666667, + "grad_norm": 0.9056010246276855, + "learning_rate": 1.32238e-05, + "loss": 1.2985139465332032, + "step": 551900 + }, + { + "epoch": 73.6, + "grad_norm": 0.8862862586975098, + "learning_rate": 1.3217133333333334e-05, + "loss": 1.2940017700195312, + "step": 552000 + }, + { + "epoch": 73.61333333333333, + "grad_norm": 0.8660182356834412, + "learning_rate": 1.3210466666666668e-05, + "loss": 1.2961624145507813, + "step": 552100 + }, + { + "epoch": 73.62666666666667, + "grad_norm": 0.8667203187942505, + "learning_rate": 1.3203799999999999e-05, + "loss": 1.2973252868652343, + "step": 552200 + }, + { + "epoch": 73.64, + "grad_norm": 0.8764863014221191, + "learning_rate": 1.3197133333333333e-05, + "loss": 1.3011990356445313, + "step": 552300 + }, + { + "epoch": 73.65333333333334, + "grad_norm": 0.854836106300354, + "learning_rate": 1.3190466666666668e-05, + "loss": 1.301475830078125, + "step": 552400 + }, + { + "epoch": 73.66666666666667, + "grad_norm": 0.8675264716148376, + "learning_rate": 1.3183800000000002e-05, + "loss": 1.2946461486816405, + "step": 552500 + }, + { + "epoch": 73.68, + "grad_norm": 0.8799411654472351, + "learning_rate": 1.3177133333333333e-05, + "loss": 1.2978501892089844, + "step": 552600 + }, + { + "epoch": 73.69333333333333, + "grad_norm": 0.8406023979187012, + "learning_rate": 1.3170466666666667e-05, + "loss": 1.2984336853027343, + "step": 552700 + }, + { + "epoch": 73.70666666666666, + "grad_norm": 0.8912414908409119, + "learning_rate": 1.3163866666666666e-05, + "loss": 1.3007151794433593, + "step": 552800 + }, + { + "epoch": 73.72, + "grad_norm": 0.8535100221633911, + "learning_rate": 1.31572e-05, + "loss": 1.2961094665527344, + "step": 552900 + }, + { + "epoch": 73.73333333333333, + "grad_norm": 0.932938814163208, + "learning_rate": 1.3150533333333334e-05, + "loss": 1.2960186767578126, + "step": 553000 + }, + { + "epoch": 73.74666666666667, + "grad_norm": 0.9171094298362732, + "learning_rate": 1.3143866666666668e-05, + "loss": 1.3013040161132812, + "step": 553100 + }, + { + "epoch": 73.76, + "grad_norm": 0.923318088054657, + "learning_rate": 1.31372e-05, + "loss": 1.300777130126953, + "step": 553200 + }, + { + "epoch": 73.77333333333333, + "grad_norm": 0.9453115463256836, + "learning_rate": 1.3130533333333334e-05, + "loss": 1.3012001037597656, + "step": 553300 + }, + { + "epoch": 73.78666666666666, + "grad_norm": 0.9598022699356079, + "learning_rate": 1.3123866666666668e-05, + "loss": 1.3000535583496093, + "step": 553400 + }, + { + "epoch": 73.8, + "grad_norm": 0.8746120929718018, + "learning_rate": 1.3117200000000002e-05, + "loss": 1.299759979248047, + "step": 553500 + }, + { + "epoch": 73.81333333333333, + "grad_norm": 0.8909258842468262, + "learning_rate": 1.3110533333333333e-05, + "loss": 1.3039195251464843, + "step": 553600 + }, + { + "epoch": 73.82666666666667, + "grad_norm": 0.899439811706543, + "learning_rate": 1.3103866666666667e-05, + "loss": 1.3032107543945313, + "step": 553700 + }, + { + "epoch": 73.84, + "grad_norm": 0.9339725375175476, + "learning_rate": 1.30972e-05, + "loss": 1.2999578857421874, + "step": 553800 + }, + { + "epoch": 73.85333333333334, + "grad_norm": 0.8592462539672852, + "learning_rate": 1.3090533333333335e-05, + "loss": 1.3077874755859376, + "step": 553900 + }, + { + "epoch": 73.86666666666666, + "grad_norm": 0.8757080435752869, + "learning_rate": 1.3083866666666667e-05, + "loss": 1.3068240356445313, + "step": 554000 + }, + { + "epoch": 73.88, + "grad_norm": 0.893817663192749, + "learning_rate": 1.30772e-05, + "loss": 1.3072088623046876, + "step": 554100 + }, + { + "epoch": 73.89333333333333, + "grad_norm": 0.8930887579917908, + "learning_rate": 1.3070533333333335e-05, + "loss": 1.303759307861328, + "step": 554200 + }, + { + "epoch": 73.90666666666667, + "grad_norm": 0.9105483293533325, + "learning_rate": 1.3063866666666665e-05, + "loss": 1.3057803344726562, + "step": 554300 + }, + { + "epoch": 73.92, + "grad_norm": 0.9180082678794861, + "learning_rate": 1.30572e-05, + "loss": 1.3057562255859374, + "step": 554400 + }, + { + "epoch": 73.93333333333334, + "grad_norm": 0.900630533695221, + "learning_rate": 1.3050533333333333e-05, + "loss": 1.3036831665039061, + "step": 554500 + }, + { + "epoch": 73.94666666666667, + "grad_norm": 0.9302444458007812, + "learning_rate": 1.3043866666666669e-05, + "loss": 1.3099397277832032, + "step": 554600 + }, + { + "epoch": 73.96, + "grad_norm": 0.9064813256263733, + "learning_rate": 1.30372e-05, + "loss": 1.3054379272460936, + "step": 554700 + }, + { + "epoch": 73.97333333333333, + "grad_norm": 0.8835692405700684, + "learning_rate": 1.3030600000000002e-05, + "loss": 1.3077413940429687, + "step": 554800 + }, + { + "epoch": 73.98666666666666, + "grad_norm": 0.8917888402938843, + "learning_rate": 1.3023933333333336e-05, + "loss": 1.3091519165039063, + "step": 554900 + }, + { + "epoch": 74.0, + "grad_norm": 0.8641742467880249, + "learning_rate": 1.3017266666666666e-05, + "loss": 1.3092634582519531, + "step": 555000 + }, + { + "epoch": 74.01333333333334, + "grad_norm": 0.944517970085144, + "learning_rate": 1.30106e-05, + "loss": 1.2658570861816407, + "step": 555100 + }, + { + "epoch": 74.02666666666667, + "grad_norm": 0.8598766326904297, + "learning_rate": 1.3003933333333334e-05, + "loss": 1.2683529663085937, + "step": 555200 + }, + { + "epoch": 74.04, + "grad_norm": 0.860201895236969, + "learning_rate": 1.2997266666666667e-05, + "loss": 1.2708037567138672, + "step": 555300 + }, + { + "epoch": 74.05333333333333, + "grad_norm": 0.8917511105537415, + "learning_rate": 1.29906e-05, + "loss": 1.271436004638672, + "step": 555400 + }, + { + "epoch": 74.06666666666666, + "grad_norm": 0.939109742641449, + "learning_rate": 1.2983933333333335e-05, + "loss": 1.2716947937011718, + "step": 555500 + }, + { + "epoch": 74.08, + "grad_norm": 0.8807459473609924, + "learning_rate": 1.2977266666666669e-05, + "loss": 1.2712261199951171, + "step": 555600 + }, + { + "epoch": 74.09333333333333, + "grad_norm": 0.8981074094772339, + "learning_rate": 1.2970599999999999e-05, + "loss": 1.2726960754394532, + "step": 555700 + }, + { + "epoch": 74.10666666666667, + "grad_norm": 0.920891523361206, + "learning_rate": 1.2963933333333333e-05, + "loss": 1.271525650024414, + "step": 555800 + }, + { + "epoch": 74.12, + "grad_norm": 0.8784647583961487, + "learning_rate": 1.2957266666666667e-05, + "loss": 1.2761204528808594, + "step": 555900 + }, + { + "epoch": 74.13333333333334, + "grad_norm": 0.9443046450614929, + "learning_rate": 1.2950600000000001e-05, + "loss": 1.2812734985351562, + "step": 556000 + }, + { + "epoch": 74.14666666666666, + "grad_norm": 0.9324434995651245, + "learning_rate": 1.2943933333333333e-05, + "loss": 1.2774497985839843, + "step": 556100 + }, + { + "epoch": 74.16, + "grad_norm": 0.9151404500007629, + "learning_rate": 1.2937266666666667e-05, + "loss": 1.2794931030273438, + "step": 556200 + }, + { + "epoch": 74.17333333333333, + "grad_norm": 0.9019087553024292, + "learning_rate": 1.2930600000000001e-05, + "loss": 1.272760467529297, + "step": 556300 + }, + { + "epoch": 74.18666666666667, + "grad_norm": 0.9008191823959351, + "learning_rate": 1.2923933333333335e-05, + "loss": 1.2791709899902344, + "step": 556400 + }, + { + "epoch": 74.2, + "grad_norm": 0.9243355393409729, + "learning_rate": 1.2917266666666666e-05, + "loss": 1.2742820739746095, + "step": 556500 + }, + { + "epoch": 74.21333333333334, + "grad_norm": 0.8960252404212952, + "learning_rate": 1.29106e-05, + "loss": 1.2767957305908204, + "step": 556600 + }, + { + "epoch": 74.22666666666667, + "grad_norm": 0.8784938454627991, + "learning_rate": 1.2903933333333335e-05, + "loss": 1.2783699798583985, + "step": 556700 + }, + { + "epoch": 74.24, + "grad_norm": 0.9372243285179138, + "learning_rate": 1.2897333333333333e-05, + "loss": 1.2807513427734376, + "step": 556800 + }, + { + "epoch": 74.25333333333333, + "grad_norm": 0.8725894093513489, + "learning_rate": 1.2890666666666668e-05, + "loss": 1.280004119873047, + "step": 556900 + }, + { + "epoch": 74.26666666666667, + "grad_norm": 0.8671815991401672, + "learning_rate": 1.2884000000000002e-05, + "loss": 1.276363296508789, + "step": 557000 + }, + { + "epoch": 74.28, + "grad_norm": 0.8304952383041382, + "learning_rate": 1.2877333333333333e-05, + "loss": 1.2792926025390625, + "step": 557100 + }, + { + "epoch": 74.29333333333334, + "grad_norm": 0.8606889247894287, + "learning_rate": 1.2870666666666667e-05, + "loss": 1.2823660278320312, + "step": 557200 + }, + { + "epoch": 74.30666666666667, + "grad_norm": 0.8777315020561218, + "learning_rate": 1.2864e-05, + "loss": 1.2785820007324218, + "step": 557300 + }, + { + "epoch": 74.32, + "grad_norm": 0.8733790516853333, + "learning_rate": 1.2857333333333335e-05, + "loss": 1.281063232421875, + "step": 557400 + }, + { + "epoch": 74.33333333333333, + "grad_norm": 0.8477702140808105, + "learning_rate": 1.2850666666666667e-05, + "loss": 1.2849333190917969, + "step": 557500 + }, + { + "epoch": 74.34666666666666, + "grad_norm": 0.9036483764648438, + "learning_rate": 1.2844000000000001e-05, + "loss": 1.2832469177246093, + "step": 557600 + }, + { + "epoch": 74.36, + "grad_norm": 0.8794974684715271, + "learning_rate": 1.2837333333333335e-05, + "loss": 1.2776331329345703, + "step": 557700 + }, + { + "epoch": 74.37333333333333, + "grad_norm": 0.9200766682624817, + "learning_rate": 1.2830666666666669e-05, + "loss": 1.2813546752929688, + "step": 557800 + }, + { + "epoch": 74.38666666666667, + "grad_norm": 0.8847201466560364, + "learning_rate": 1.2824e-05, + "loss": 1.2843760681152343, + "step": 557900 + }, + { + "epoch": 74.4, + "grad_norm": 0.880175769329071, + "learning_rate": 1.2817333333333333e-05, + "loss": 1.287875213623047, + "step": 558000 + }, + { + "epoch": 74.41333333333333, + "grad_norm": 0.8858283162117004, + "learning_rate": 1.2810666666666667e-05, + "loss": 1.2829354858398438, + "step": 558100 + }, + { + "epoch": 74.42666666666666, + "grad_norm": 0.8578990697860718, + "learning_rate": 1.2804e-05, + "loss": 1.2892631530761718, + "step": 558200 + }, + { + "epoch": 74.44, + "grad_norm": 0.9900735020637512, + "learning_rate": 1.2797333333333334e-05, + "loss": 1.2847103881835937, + "step": 558300 + }, + { + "epoch": 74.45333333333333, + "grad_norm": 0.8830659985542297, + "learning_rate": 1.2790666666666668e-05, + "loss": 1.2800477600097657, + "step": 558400 + }, + { + "epoch": 74.46666666666667, + "grad_norm": 0.8871668577194214, + "learning_rate": 1.2784000000000002e-05, + "loss": 1.284095001220703, + "step": 558500 + }, + { + "epoch": 74.48, + "grad_norm": 0.8544827103614807, + "learning_rate": 1.2777333333333332e-05, + "loss": 1.2865316772460937, + "step": 558600 + }, + { + "epoch": 74.49333333333334, + "grad_norm": 0.900020956993103, + "learning_rate": 1.2770666666666666e-05, + "loss": 1.2850057983398437, + "step": 558700 + }, + { + "epoch": 74.50666666666666, + "grad_norm": 0.867059051990509, + "learning_rate": 1.2764066666666669e-05, + "loss": 1.2903533935546876, + "step": 558800 + }, + { + "epoch": 74.52, + "grad_norm": 0.8870203495025635, + "learning_rate": 1.27574e-05, + "loss": 1.287705535888672, + "step": 558900 + }, + { + "epoch": 74.53333333333333, + "grad_norm": 0.9314866662025452, + "learning_rate": 1.2750733333333333e-05, + "loss": 1.28730224609375, + "step": 559000 + }, + { + "epoch": 74.54666666666667, + "grad_norm": 0.8612186908721924, + "learning_rate": 1.2744066666666669e-05, + "loss": 1.289891815185547, + "step": 559100 + }, + { + "epoch": 74.56, + "grad_norm": 0.899004340171814, + "learning_rate": 1.27374e-05, + "loss": 1.2894015502929688, + "step": 559200 + }, + { + "epoch": 74.57333333333334, + "grad_norm": 0.8479779958724976, + "learning_rate": 1.2730733333333333e-05, + "loss": 1.2877230834960938, + "step": 559300 + }, + { + "epoch": 74.58666666666667, + "grad_norm": 0.8701773285865784, + "learning_rate": 1.2724066666666667e-05, + "loss": 1.2875765991210937, + "step": 559400 + }, + { + "epoch": 74.6, + "grad_norm": 0.9275473356246948, + "learning_rate": 1.2717400000000001e-05, + "loss": 1.2902964782714843, + "step": 559500 + }, + { + "epoch": 74.61333333333333, + "grad_norm": 0.8632954359054565, + "learning_rate": 1.2710733333333334e-05, + "loss": 1.292191162109375, + "step": 559600 + }, + { + "epoch": 74.62666666666667, + "grad_norm": 0.9471471905708313, + "learning_rate": 1.2704066666666667e-05, + "loss": 1.2906411743164063, + "step": 559700 + }, + { + "epoch": 74.64, + "grad_norm": 0.949734091758728, + "learning_rate": 1.2697400000000001e-05, + "loss": 1.2944467163085938, + "step": 559800 + }, + { + "epoch": 74.65333333333334, + "grad_norm": 0.8871404528617859, + "learning_rate": 1.2690733333333335e-05, + "loss": 1.2892448425292968, + "step": 559900 + }, + { + "epoch": 74.66666666666667, + "grad_norm": 0.8793107271194458, + "learning_rate": 1.2684066666666666e-05, + "loss": 1.2894142150878907, + "step": 560000 + }, + { + "epoch": 74.68, + "grad_norm": 0.9287523031234741, + "learning_rate": 1.26774e-05, + "loss": 1.2898847961425781, + "step": 560100 + }, + { + "epoch": 74.69333333333333, + "grad_norm": 0.9169420599937439, + "learning_rate": 1.2670733333333334e-05, + "loss": 1.2945254516601563, + "step": 560200 + }, + { + "epoch": 74.70666666666666, + "grad_norm": 0.9196577668190002, + "learning_rate": 1.2664066666666668e-05, + "loss": 1.2968296813964844, + "step": 560300 + }, + { + "epoch": 74.72, + "grad_norm": 0.8801164031028748, + "learning_rate": 1.26574e-05, + "loss": 1.2895684814453126, + "step": 560400 + }, + { + "epoch": 74.73333333333333, + "grad_norm": 0.9066420793533325, + "learning_rate": 1.2650733333333334e-05, + "loss": 1.2975363159179687, + "step": 560500 + }, + { + "epoch": 74.74666666666667, + "grad_norm": 0.8789073824882507, + "learning_rate": 1.2644066666666668e-05, + "loss": 1.2992245483398437, + "step": 560600 + }, + { + "epoch": 74.76, + "grad_norm": 0.8771540522575378, + "learning_rate": 1.2637399999999999e-05, + "loss": 1.2950447082519532, + "step": 560700 + }, + { + "epoch": 74.77333333333333, + "grad_norm": 0.9482132196426392, + "learning_rate": 1.2630800000000001e-05, + "loss": 1.2989950561523438, + "step": 560800 + }, + { + "epoch": 74.78666666666666, + "grad_norm": 0.9016578793525696, + "learning_rate": 1.2624133333333335e-05, + "loss": 1.2909823608398439, + "step": 560900 + }, + { + "epoch": 74.8, + "grad_norm": 0.9523131847381592, + "learning_rate": 1.2617466666666666e-05, + "loss": 1.2979310607910157, + "step": 561000 + }, + { + "epoch": 74.81333333333333, + "grad_norm": 0.8999745845794678, + "learning_rate": 1.26108e-05, + "loss": 1.2966058349609375, + "step": 561100 + }, + { + "epoch": 74.82666666666667, + "grad_norm": 0.8210212588310242, + "learning_rate": 1.2604133333333335e-05, + "loss": 1.297114715576172, + "step": 561200 + }, + { + "epoch": 74.84, + "grad_norm": 0.8882796764373779, + "learning_rate": 1.259746666666667e-05, + "loss": 1.2930776977539062, + "step": 561300 + }, + { + "epoch": 74.85333333333334, + "grad_norm": 0.8462830185890198, + "learning_rate": 1.25908e-05, + "loss": 1.2994015502929688, + "step": 561400 + }, + { + "epoch": 74.86666666666666, + "grad_norm": 0.9026128649711609, + "learning_rate": 1.2584133333333334e-05, + "loss": 1.29409912109375, + "step": 561500 + }, + { + "epoch": 74.88, + "grad_norm": 0.9389071464538574, + "learning_rate": 1.2577466666666668e-05, + "loss": 1.2977705383300782, + "step": 561600 + }, + { + "epoch": 74.89333333333333, + "grad_norm": 0.9085119366645813, + "learning_rate": 1.25708e-05, + "loss": 1.296661376953125, + "step": 561700 + }, + { + "epoch": 74.90666666666667, + "grad_norm": 1.0114595890045166, + "learning_rate": 1.2564133333333334e-05, + "loss": 1.2983500671386718, + "step": 561800 + }, + { + "epoch": 74.92, + "grad_norm": 0.8648547530174255, + "learning_rate": 1.2557466666666668e-05, + "loss": 1.2987898254394532, + "step": 561900 + }, + { + "epoch": 74.93333333333334, + "grad_norm": 0.9071376323699951, + "learning_rate": 1.2550800000000002e-05, + "loss": 1.295235137939453, + "step": 562000 + }, + { + "epoch": 74.94666666666667, + "grad_norm": 0.8965473175048828, + "learning_rate": 1.2544133333333332e-05, + "loss": 1.3004685974121093, + "step": 562100 + }, + { + "epoch": 74.96, + "grad_norm": 0.8977342844009399, + "learning_rate": 1.2537466666666666e-05, + "loss": 1.297232666015625, + "step": 562200 + }, + { + "epoch": 74.97333333333333, + "grad_norm": 0.9045539498329163, + "learning_rate": 1.25308e-05, + "loss": 1.298996124267578, + "step": 562300 + }, + { + "epoch": 74.98666666666666, + "grad_norm": 0.8950331807136536, + "learning_rate": 1.2524133333333334e-05, + "loss": 1.2971505737304687, + "step": 562400 + }, + { + "epoch": 75.0, + "grad_norm": 0.8777759671211243, + "learning_rate": 1.2517466666666667e-05, + "loss": 1.2992008972167968, + "step": 562500 + }, + { + "epoch": 75.01333333333334, + "grad_norm": 0.8952645063400269, + "learning_rate": 1.25108e-05, + "loss": 1.2640491485595704, + "step": 562600 + }, + { + "epoch": 75.02666666666667, + "grad_norm": 0.877943217754364, + "learning_rate": 1.2504133333333335e-05, + "loss": 1.2647196197509765, + "step": 562700 + }, + { + "epoch": 75.04, + "grad_norm": 0.8919233083724976, + "learning_rate": 1.2497466666666667e-05, + "loss": 1.2628135681152344, + "step": 562800 + }, + { + "epoch": 75.05333333333333, + "grad_norm": 0.8733011484146118, + "learning_rate": 1.2490866666666668e-05, + "loss": 1.2628070831298828, + "step": 562900 + }, + { + "epoch": 75.06666666666666, + "grad_norm": 0.9152896404266357, + "learning_rate": 1.24842e-05, + "loss": 1.264164352416992, + "step": 563000 + }, + { + "epoch": 75.08, + "grad_norm": 0.8281626105308533, + "learning_rate": 1.2477533333333334e-05, + "loss": 1.2650759887695313, + "step": 563100 + }, + { + "epoch": 75.09333333333333, + "grad_norm": 0.8916683197021484, + "learning_rate": 1.2470866666666666e-05, + "loss": 1.2685887145996093, + "step": 563200 + }, + { + "epoch": 75.10666666666667, + "grad_norm": 0.9115118980407715, + "learning_rate": 1.2464200000000002e-05, + "loss": 1.272508544921875, + "step": 563300 + }, + { + "epoch": 75.12, + "grad_norm": 0.8884676098823547, + "learning_rate": 1.2457533333333334e-05, + "loss": 1.2687050628662109, + "step": 563400 + }, + { + "epoch": 75.13333333333334, + "grad_norm": 0.8922853469848633, + "learning_rate": 1.2450866666666668e-05, + "loss": 1.2676511383056641, + "step": 563500 + }, + { + "epoch": 75.14666666666666, + "grad_norm": 0.8890056610107422, + "learning_rate": 1.24442e-05, + "loss": 1.2675907135009765, + "step": 563600 + }, + { + "epoch": 75.16, + "grad_norm": 0.8995161652565002, + "learning_rate": 1.2437533333333334e-05, + "loss": 1.2708394622802734, + "step": 563700 + }, + { + "epoch": 75.17333333333333, + "grad_norm": 0.8850069046020508, + "learning_rate": 1.2430866666666666e-05, + "loss": 1.268143768310547, + "step": 563800 + }, + { + "epoch": 75.18666666666667, + "grad_norm": 0.8508411645889282, + "learning_rate": 1.24242e-05, + "loss": 1.2690723419189454, + "step": 563900 + }, + { + "epoch": 75.2, + "grad_norm": 0.8832269310951233, + "learning_rate": 1.2417533333333334e-05, + "loss": 1.2709259033203124, + "step": 564000 + }, + { + "epoch": 75.21333333333334, + "grad_norm": 0.8733813762664795, + "learning_rate": 1.2410866666666668e-05, + "loss": 1.2706985473632812, + "step": 564100 + }, + { + "epoch": 75.22666666666667, + "grad_norm": 0.8645262122154236, + "learning_rate": 1.24042e-05, + "loss": 1.27591796875, + "step": 564200 + }, + { + "epoch": 75.24, + "grad_norm": 0.8740404844284058, + "learning_rate": 1.2397533333333335e-05, + "loss": 1.2723672485351563, + "step": 564300 + }, + { + "epoch": 75.25333333333333, + "grad_norm": 0.8905038833618164, + "learning_rate": 1.2390866666666667e-05, + "loss": 1.2685739135742187, + "step": 564400 + }, + { + "epoch": 75.26666666666667, + "grad_norm": 0.8788304328918457, + "learning_rate": 1.23842e-05, + "loss": 1.275366973876953, + "step": 564500 + }, + { + "epoch": 75.28, + "grad_norm": 0.9056509733200073, + "learning_rate": 1.2377533333333335e-05, + "loss": 1.2775337982177735, + "step": 564600 + }, + { + "epoch": 75.29333333333334, + "grad_norm": 0.900590181350708, + "learning_rate": 1.2370866666666667e-05, + "loss": 1.2763518524169921, + "step": 564700 + }, + { + "epoch": 75.30666666666667, + "grad_norm": 0.8497269153594971, + "learning_rate": 1.2364200000000001e-05, + "loss": 1.273313980102539, + "step": 564800 + }, + { + "epoch": 75.32, + "grad_norm": 0.9780153036117554, + "learning_rate": 1.2357600000000002e-05, + "loss": 1.2757484436035156, + "step": 564900 + }, + { + "epoch": 75.33333333333333, + "grad_norm": 0.9048566818237305, + "learning_rate": 1.2350933333333334e-05, + "loss": 1.2719178771972657, + "step": 565000 + }, + { + "epoch": 75.34666666666666, + "grad_norm": 0.8986741900444031, + "learning_rate": 1.2344266666666668e-05, + "loss": 1.2778455352783202, + "step": 565100 + }, + { + "epoch": 75.36, + "grad_norm": 0.8905960321426392, + "learning_rate": 1.23376e-05, + "loss": 1.2795767974853516, + "step": 565200 + }, + { + "epoch": 75.37333333333333, + "grad_norm": 0.9009892344474792, + "learning_rate": 1.2330933333333334e-05, + "loss": 1.2813603210449218, + "step": 565300 + }, + { + "epoch": 75.38666666666667, + "grad_norm": 0.8851236701011658, + "learning_rate": 1.2324266666666666e-05, + "loss": 1.2804205322265625, + "step": 565400 + }, + { + "epoch": 75.4, + "grad_norm": 0.8907919526100159, + "learning_rate": 1.23176e-05, + "loss": 1.2816227722167968, + "step": 565500 + }, + { + "epoch": 75.41333333333333, + "grad_norm": 0.8697381019592285, + "learning_rate": 1.2310933333333334e-05, + "loss": 1.2802578735351562, + "step": 565600 + }, + { + "epoch": 75.42666666666666, + "grad_norm": 0.9782188534736633, + "learning_rate": 1.2304266666666667e-05, + "loss": 1.2815553283691405, + "step": 565700 + }, + { + "epoch": 75.44, + "grad_norm": 0.9227743744850159, + "learning_rate": 1.22976e-05, + "loss": 1.2832655334472656, + "step": 565800 + }, + { + "epoch": 75.45333333333333, + "grad_norm": 0.903657078742981, + "learning_rate": 1.2290933333333333e-05, + "loss": 1.2772044372558593, + "step": 565900 + }, + { + "epoch": 75.46666666666667, + "grad_norm": 0.8705148696899414, + "learning_rate": 1.2284266666666667e-05, + "loss": 1.28025146484375, + "step": 566000 + }, + { + "epoch": 75.48, + "grad_norm": 0.8651654720306396, + "learning_rate": 1.22776e-05, + "loss": 1.280309600830078, + "step": 566100 + }, + { + "epoch": 75.49333333333334, + "grad_norm": 0.8842359185218811, + "learning_rate": 1.2270933333333335e-05, + "loss": 1.2774700927734375, + "step": 566200 + }, + { + "epoch": 75.50666666666666, + "grad_norm": 0.8937225341796875, + "learning_rate": 1.2264266666666667e-05, + "loss": 1.2816136169433594, + "step": 566300 + }, + { + "epoch": 75.52, + "grad_norm": 0.9345490336418152, + "learning_rate": 1.2257600000000001e-05, + "loss": 1.2842210388183595, + "step": 566400 + }, + { + "epoch": 75.53333333333333, + "grad_norm": 0.859245777130127, + "learning_rate": 1.2250933333333333e-05, + "loss": 1.2751191711425782, + "step": 566500 + }, + { + "epoch": 75.54666666666667, + "grad_norm": 0.9067889451980591, + "learning_rate": 1.2244266666666667e-05, + "loss": 1.2782907104492187, + "step": 566600 + }, + { + "epoch": 75.56, + "grad_norm": 0.9356161952018738, + "learning_rate": 1.2237600000000001e-05, + "loss": 1.2806317138671874, + "step": 566700 + }, + { + "epoch": 75.57333333333334, + "grad_norm": 0.9229298830032349, + "learning_rate": 1.2230933333333335e-05, + "loss": 1.2850361633300782, + "step": 566800 + }, + { + "epoch": 75.58666666666667, + "grad_norm": 0.9154577851295471, + "learning_rate": 1.2224333333333334e-05, + "loss": 1.2825677490234375, + "step": 566900 + }, + { + "epoch": 75.6, + "grad_norm": 0.9192464351654053, + "learning_rate": 1.2217666666666668e-05, + "loss": 1.2844052124023437, + "step": 567000 + }, + { + "epoch": 75.61333333333333, + "grad_norm": 0.8860438466072083, + "learning_rate": 1.2211e-05, + "loss": 1.2842628479003906, + "step": 567100 + }, + { + "epoch": 75.62666666666667, + "grad_norm": 0.9283733367919922, + "learning_rate": 1.2204333333333334e-05, + "loss": 1.2807681274414062, + "step": 567200 + }, + { + "epoch": 75.64, + "grad_norm": 0.9022039771080017, + "learning_rate": 1.2197666666666667e-05, + "loss": 1.2847116088867188, + "step": 567300 + }, + { + "epoch": 75.65333333333334, + "grad_norm": 0.9383234977722168, + "learning_rate": 1.2191e-05, + "loss": 1.2842823791503906, + "step": 567400 + }, + { + "epoch": 75.66666666666667, + "grad_norm": 0.8987548351287842, + "learning_rate": 1.2184333333333333e-05, + "loss": 1.2830416870117187, + "step": 567500 + }, + { + "epoch": 75.68, + "grad_norm": 0.9250150918960571, + "learning_rate": 1.2177666666666669e-05, + "loss": 1.2888677978515626, + "step": 567600 + }, + { + "epoch": 75.69333333333333, + "grad_norm": 0.8937551975250244, + "learning_rate": 1.2171000000000001e-05, + "loss": 1.2843814086914063, + "step": 567700 + }, + { + "epoch": 75.70666666666666, + "grad_norm": 0.93442302942276, + "learning_rate": 1.2164333333333335e-05, + "loss": 1.2801531982421874, + "step": 567800 + }, + { + "epoch": 75.72, + "grad_norm": 0.9443467855453491, + "learning_rate": 1.2157666666666667e-05, + "loss": 1.2907289123535157, + "step": 567900 + }, + { + "epoch": 75.73333333333333, + "grad_norm": 0.9479007124900818, + "learning_rate": 1.2151000000000001e-05, + "loss": 1.2885336303710937, + "step": 568000 + }, + { + "epoch": 75.74666666666667, + "grad_norm": 0.9026948809623718, + "learning_rate": 1.2144333333333333e-05, + "loss": 1.28862060546875, + "step": 568100 + }, + { + "epoch": 75.76, + "grad_norm": 0.9431944489479065, + "learning_rate": 1.2137666666666667e-05, + "loss": 1.2903639221191405, + "step": 568200 + }, + { + "epoch": 75.77333333333333, + "grad_norm": 0.8847748637199402, + "learning_rate": 1.2131000000000001e-05, + "loss": 1.2831291198730468, + "step": 568300 + }, + { + "epoch": 75.78666666666666, + "grad_norm": 0.9042606949806213, + "learning_rate": 1.2124333333333334e-05, + "loss": 1.2880831909179689, + "step": 568400 + }, + { + "epoch": 75.8, + "grad_norm": 0.8872798085212708, + "learning_rate": 1.2117666666666667e-05, + "loss": 1.289575958251953, + "step": 568500 + }, + { + "epoch": 75.81333333333333, + "grad_norm": 0.8426007628440857, + "learning_rate": 1.2111e-05, + "loss": 1.2929600524902343, + "step": 568600 + }, + { + "epoch": 75.82666666666667, + "grad_norm": 0.8785552978515625, + "learning_rate": 1.2104333333333334e-05, + "loss": 1.2918893432617187, + "step": 568700 + }, + { + "epoch": 75.84, + "grad_norm": 0.8560172915458679, + "learning_rate": 1.2097666666666668e-05, + "loss": 1.2879776000976562, + "step": 568800 + }, + { + "epoch": 75.85333333333334, + "grad_norm": 0.9080483317375183, + "learning_rate": 1.2091000000000002e-05, + "loss": 1.289279022216797, + "step": 568900 + }, + { + "epoch": 75.86666666666666, + "grad_norm": 0.8898365497589111, + "learning_rate": 1.20844e-05, + "loss": 1.2897042846679687, + "step": 569000 + }, + { + "epoch": 75.88, + "grad_norm": 0.95564204454422, + "learning_rate": 1.2077733333333335e-05, + "loss": 1.2889401245117187, + "step": 569100 + }, + { + "epoch": 75.89333333333333, + "grad_norm": 0.8454336524009705, + "learning_rate": 1.2071066666666667e-05, + "loss": 1.293185272216797, + "step": 569200 + }, + { + "epoch": 75.90666666666667, + "grad_norm": 0.9560728669166565, + "learning_rate": 1.2064400000000001e-05, + "loss": 1.2893829345703125, + "step": 569300 + }, + { + "epoch": 75.92, + "grad_norm": 0.9126923084259033, + "learning_rate": 1.2057733333333333e-05, + "loss": 1.2923159790039063, + "step": 569400 + }, + { + "epoch": 75.93333333333334, + "grad_norm": 0.8590043783187866, + "learning_rate": 1.2051066666666667e-05, + "loss": 1.29072265625, + "step": 569500 + }, + { + "epoch": 75.94666666666667, + "grad_norm": 0.8858271241188049, + "learning_rate": 1.20444e-05, + "loss": 1.2948809814453126, + "step": 569600 + }, + { + "epoch": 75.96, + "grad_norm": 0.9448450803756714, + "learning_rate": 1.2037733333333333e-05, + "loss": 1.2897013854980468, + "step": 569700 + }, + { + "epoch": 75.97333333333333, + "grad_norm": 0.8658963441848755, + "learning_rate": 1.2031066666666667e-05, + "loss": 1.2937811279296876, + "step": 569800 + }, + { + "epoch": 75.98666666666666, + "grad_norm": 0.9109137654304504, + "learning_rate": 1.2024400000000001e-05, + "loss": 1.2949751281738282, + "step": 569900 + }, + { + "epoch": 76.0, + "grad_norm": 0.90373694896698, + "learning_rate": 1.2017733333333334e-05, + "loss": 1.2907695007324218, + "step": 570000 + }, + { + "epoch": 76.01333333333334, + "grad_norm": 0.9023296236991882, + "learning_rate": 1.2011066666666668e-05, + "loss": 1.2564220428466797, + "step": 570100 + }, + { + "epoch": 76.02666666666667, + "grad_norm": 0.9075928926467896, + "learning_rate": 1.20044e-05, + "loss": 1.2600310516357422, + "step": 570200 + }, + { + "epoch": 76.04, + "grad_norm": 0.8993645310401917, + "learning_rate": 1.1997733333333334e-05, + "loss": 1.2612214660644532, + "step": 570300 + }, + { + "epoch": 76.05333333333333, + "grad_norm": 0.8090634942054749, + "learning_rate": 1.1991066666666668e-05, + "loss": 1.2595449829101562, + "step": 570400 + }, + { + "epoch": 76.06666666666666, + "grad_norm": 0.8265924453735352, + "learning_rate": 1.1984400000000002e-05, + "loss": 1.260252914428711, + "step": 570500 + }, + { + "epoch": 76.08, + "grad_norm": 0.9115302562713623, + "learning_rate": 1.1977733333333334e-05, + "loss": 1.2610408020019532, + "step": 570600 + }, + { + "epoch": 76.09333333333333, + "grad_norm": 0.9297177195549011, + "learning_rate": 1.1971066666666668e-05, + "loss": 1.2638664245605469, + "step": 570700 + }, + { + "epoch": 76.10666666666667, + "grad_norm": 0.8523125648498535, + "learning_rate": 1.19644e-05, + "loss": 1.2649871063232423, + "step": 570800 + }, + { + "epoch": 76.12, + "grad_norm": 0.9545742869377136, + "learning_rate": 1.1957733333333334e-05, + "loss": 1.2625828552246094, + "step": 570900 + }, + { + "epoch": 76.13333333333334, + "grad_norm": 0.8487697839736938, + "learning_rate": 1.1951133333333333e-05, + "loss": 1.2658775329589844, + "step": 571000 + }, + { + "epoch": 76.14666666666666, + "grad_norm": 0.9032588601112366, + "learning_rate": 1.1944466666666667e-05, + "loss": 1.2628345489501953, + "step": 571100 + }, + { + "epoch": 76.16, + "grad_norm": 0.8663509488105774, + "learning_rate": 1.1937800000000001e-05, + "loss": 1.2638357543945313, + "step": 571200 + }, + { + "epoch": 76.17333333333333, + "grad_norm": 0.8065935373306274, + "learning_rate": 1.1931133333333335e-05, + "loss": 1.2654532623291015, + "step": 571300 + }, + { + "epoch": 76.18666666666667, + "grad_norm": 0.8923590779304504, + "learning_rate": 1.1924466666666667e-05, + "loss": 1.2625431823730469, + "step": 571400 + }, + { + "epoch": 76.2, + "grad_norm": 0.9256909489631653, + "learning_rate": 1.1917800000000001e-05, + "loss": 1.2661501312255858, + "step": 571500 + }, + { + "epoch": 76.21333333333334, + "grad_norm": 0.8839671015739441, + "learning_rate": 1.1911133333333334e-05, + "loss": 1.2691407775878907, + "step": 571600 + }, + { + "epoch": 76.22666666666667, + "grad_norm": 0.9196544289588928, + "learning_rate": 1.1904466666666666e-05, + "loss": 1.2661520385742187, + "step": 571700 + }, + { + "epoch": 76.24, + "grad_norm": 0.8353877663612366, + "learning_rate": 1.18978e-05, + "loss": 1.2685884094238282, + "step": 571800 + }, + { + "epoch": 76.25333333333333, + "grad_norm": 0.8533715605735779, + "learning_rate": 1.1891133333333334e-05, + "loss": 1.2692129516601562, + "step": 571900 + }, + { + "epoch": 76.26666666666667, + "grad_norm": 0.8897333145141602, + "learning_rate": 1.1884466666666668e-05, + "loss": 1.2691090393066407, + "step": 572000 + }, + { + "epoch": 76.28, + "grad_norm": 0.90340656042099, + "learning_rate": 1.18778e-05, + "loss": 1.2702519989013672, + "step": 572100 + }, + { + "epoch": 76.29333333333334, + "grad_norm": 0.8940246105194092, + "learning_rate": 1.1871133333333334e-05, + "loss": 1.2684158325195312, + "step": 572200 + }, + { + "epoch": 76.30666666666667, + "grad_norm": 0.8823217153549194, + "learning_rate": 1.1864466666666666e-05, + "loss": 1.2694771575927735, + "step": 572300 + }, + { + "epoch": 76.32, + "grad_norm": 0.8801313638687134, + "learning_rate": 1.18578e-05, + "loss": 1.2695850372314452, + "step": 572400 + }, + { + "epoch": 76.33333333333333, + "grad_norm": 0.8763577342033386, + "learning_rate": 1.1851133333333334e-05, + "loss": 1.2703809356689453, + "step": 572500 + }, + { + "epoch": 76.34666666666666, + "grad_norm": 0.9414470195770264, + "learning_rate": 1.1844466666666668e-05, + "loss": 1.2732679748535156, + "step": 572600 + }, + { + "epoch": 76.36, + "grad_norm": 0.918465256690979, + "learning_rate": 1.18378e-05, + "loss": 1.2702081298828125, + "step": 572700 + }, + { + "epoch": 76.37333333333333, + "grad_norm": 0.8856133222579956, + "learning_rate": 1.1831133333333334e-05, + "loss": 1.2735169219970703, + "step": 572800 + }, + { + "epoch": 76.38666666666667, + "grad_norm": 0.9244083166122437, + "learning_rate": 1.1824466666666667e-05, + "loss": 1.273417739868164, + "step": 572900 + }, + { + "epoch": 76.4, + "grad_norm": 0.8916839957237244, + "learning_rate": 1.1817866666666667e-05, + "loss": 1.2737143707275391, + "step": 573000 + }, + { + "epoch": 76.41333333333333, + "grad_norm": 0.8814034461975098, + "learning_rate": 1.18112e-05, + "loss": 1.27196533203125, + "step": 573100 + }, + { + "epoch": 76.42666666666666, + "grad_norm": 0.8989616632461548, + "learning_rate": 1.1804533333333334e-05, + "loss": 1.2706958770751953, + "step": 573200 + }, + { + "epoch": 76.44, + "grad_norm": 0.8440143465995789, + "learning_rate": 1.1797866666666668e-05, + "loss": 1.271722946166992, + "step": 573300 + }, + { + "epoch": 76.45333333333333, + "grad_norm": 0.9400561451911926, + "learning_rate": 1.1791200000000002e-05, + "loss": 1.27082763671875, + "step": 573400 + }, + { + "epoch": 76.46666666666667, + "grad_norm": 0.9104871153831482, + "learning_rate": 1.1784533333333334e-05, + "loss": 1.274063720703125, + "step": 573500 + }, + { + "epoch": 76.48, + "grad_norm": 0.9427663087844849, + "learning_rate": 1.1777866666666668e-05, + "loss": 1.2744304656982421, + "step": 573600 + }, + { + "epoch": 76.49333333333334, + "grad_norm": 0.930120587348938, + "learning_rate": 1.17712e-05, + "loss": 1.2735147857666016, + "step": 573700 + }, + { + "epoch": 76.50666666666666, + "grad_norm": 0.8373743891716003, + "learning_rate": 1.1764533333333334e-05, + "loss": 1.2727003479003907, + "step": 573800 + }, + { + "epoch": 76.52, + "grad_norm": 0.8900668621063232, + "learning_rate": 1.1757866666666666e-05, + "loss": 1.278759994506836, + "step": 573900 + }, + { + "epoch": 76.53333333333333, + "grad_norm": 0.9131837487220764, + "learning_rate": 1.1751200000000002e-05, + "loss": 1.279442596435547, + "step": 574000 + }, + { + "epoch": 76.54666666666667, + "grad_norm": 0.8976189494132996, + "learning_rate": 1.1744533333333334e-05, + "loss": 1.2741080474853517, + "step": 574100 + }, + { + "epoch": 76.56, + "grad_norm": 0.8666889071464539, + "learning_rate": 1.1737866666666668e-05, + "loss": 1.2774742126464844, + "step": 574200 + }, + { + "epoch": 76.57333333333334, + "grad_norm": 0.8947174549102783, + "learning_rate": 1.17312e-05, + "loss": 1.2774790954589843, + "step": 574300 + }, + { + "epoch": 76.58666666666667, + "grad_norm": 0.9052897691726685, + "learning_rate": 1.1724533333333333e-05, + "loss": 1.2790341949462891, + "step": 574400 + }, + { + "epoch": 76.6, + "grad_norm": 0.8981863260269165, + "learning_rate": 1.1717866666666667e-05, + "loss": 1.2725530242919922, + "step": 574500 + }, + { + "epoch": 76.61333333333333, + "grad_norm": 0.8950761556625366, + "learning_rate": 1.17112e-05, + "loss": 1.277298583984375, + "step": 574600 + }, + { + "epoch": 76.62666666666667, + "grad_norm": 0.9243502616882324, + "learning_rate": 1.1704533333333335e-05, + "loss": 1.279012222290039, + "step": 574700 + }, + { + "epoch": 76.64, + "grad_norm": 0.9470920562744141, + "learning_rate": 1.1697866666666667e-05, + "loss": 1.2796407318115235, + "step": 574800 + }, + { + "epoch": 76.65333333333334, + "grad_norm": 0.9210641980171204, + "learning_rate": 1.16912e-05, + "loss": 1.27352294921875, + "step": 574900 + }, + { + "epoch": 76.66666666666667, + "grad_norm": 0.9046253561973572, + "learning_rate": 1.1684600000000002e-05, + "loss": 1.2836494445800781, + "step": 575000 + }, + { + "epoch": 76.68, + "grad_norm": 0.8648155927658081, + "learning_rate": 1.1677933333333334e-05, + "loss": 1.283481903076172, + "step": 575100 + }, + { + "epoch": 76.69333333333333, + "grad_norm": 0.9311123490333557, + "learning_rate": 1.1671266666666668e-05, + "loss": 1.2783139801025392, + "step": 575200 + }, + { + "epoch": 76.70666666666666, + "grad_norm": 0.913091242313385, + "learning_rate": 1.16646e-05, + "loss": 1.2771622467041015, + "step": 575300 + }, + { + "epoch": 76.72, + "grad_norm": 0.8883966207504272, + "learning_rate": 1.1657933333333332e-05, + "loss": 1.2791126251220704, + "step": 575400 + }, + { + "epoch": 76.73333333333333, + "grad_norm": 0.9038500189781189, + "learning_rate": 1.1651266666666668e-05, + "loss": 1.2827508544921875, + "step": 575500 + }, + { + "epoch": 76.74666666666667, + "grad_norm": 0.8970502614974976, + "learning_rate": 1.16446e-05, + "loss": 1.2832752990722656, + "step": 575600 + }, + { + "epoch": 76.76, + "grad_norm": 0.9356183409690857, + "learning_rate": 1.1637933333333334e-05, + "loss": 1.2858283996582032, + "step": 575700 + }, + { + "epoch": 76.77333333333333, + "grad_norm": 0.8676143288612366, + "learning_rate": 1.1631266666666667e-05, + "loss": 1.2802749633789063, + "step": 575800 + }, + { + "epoch": 76.78666666666666, + "grad_norm": 0.901439368724823, + "learning_rate": 1.16246e-05, + "loss": 1.279897689819336, + "step": 575900 + }, + { + "epoch": 76.8, + "grad_norm": 0.9266265630722046, + "learning_rate": 1.1617933333333333e-05, + "loss": 1.2846217346191406, + "step": 576000 + }, + { + "epoch": 76.81333333333333, + "grad_norm": 0.8446720838546753, + "learning_rate": 1.1611266666666667e-05, + "loss": 1.28507568359375, + "step": 576100 + }, + { + "epoch": 76.82666666666667, + "grad_norm": 0.9122141599655151, + "learning_rate": 1.16046e-05, + "loss": 1.2835508728027343, + "step": 576200 + }, + { + "epoch": 76.84, + "grad_norm": 0.9296014308929443, + "learning_rate": 1.1597933333333335e-05, + "loss": 1.2806108093261719, + "step": 576300 + }, + { + "epoch": 76.85333333333334, + "grad_norm": 0.9515265226364136, + "learning_rate": 1.1591266666666667e-05, + "loss": 1.2886801147460938, + "step": 576400 + }, + { + "epoch": 76.86666666666666, + "grad_norm": 0.9384329915046692, + "learning_rate": 1.1584600000000001e-05, + "loss": 1.2862442016601563, + "step": 576500 + }, + { + "epoch": 76.88, + "grad_norm": 0.911675214767456, + "learning_rate": 1.1577933333333333e-05, + "loss": 1.2852195739746093, + "step": 576600 + }, + { + "epoch": 76.89333333333333, + "grad_norm": 0.9368600845336914, + "learning_rate": 1.1571266666666667e-05, + "loss": 1.2880644226074218, + "step": 576700 + }, + { + "epoch": 76.90666666666667, + "grad_norm": 0.9342831373214722, + "learning_rate": 1.1564600000000001e-05, + "loss": 1.2856315612792968, + "step": 576800 + }, + { + "epoch": 76.92, + "grad_norm": 0.8949527144432068, + "learning_rate": 1.1557933333333335e-05, + "loss": 1.290764617919922, + "step": 576900 + }, + { + "epoch": 76.93333333333334, + "grad_norm": 0.9204317927360535, + "learning_rate": 1.1551333333333334e-05, + "loss": 1.2894427490234375, + "step": 577000 + }, + { + "epoch": 76.94666666666667, + "grad_norm": 0.9253742098808289, + "learning_rate": 1.1544666666666668e-05, + "loss": 1.2840521240234375, + "step": 577100 + }, + { + "epoch": 76.96, + "grad_norm": 0.9282165765762329, + "learning_rate": 1.1538e-05, + "loss": 1.2856878662109374, + "step": 577200 + }, + { + "epoch": 76.97333333333333, + "grad_norm": 0.8722630143165588, + "learning_rate": 1.1531333333333334e-05, + "loss": 1.2854739379882814, + "step": 577300 + }, + { + "epoch": 76.98666666666666, + "grad_norm": 0.913749098777771, + "learning_rate": 1.1524666666666667e-05, + "loss": 1.2859970092773438, + "step": 577400 + }, + { + "epoch": 77.0, + "grad_norm": 0.961866021156311, + "learning_rate": 1.1518e-05, + "loss": 1.2846250915527344, + "step": 577500 + }, + { + "epoch": 77.01333333333334, + "grad_norm": 0.905587375164032, + "learning_rate": 1.1511333333333334e-05, + "loss": 1.255999755859375, + "step": 577600 + }, + { + "epoch": 77.02666666666667, + "grad_norm": 0.9109494686126709, + "learning_rate": 1.1504666666666668e-05, + "loss": 1.257362823486328, + "step": 577700 + }, + { + "epoch": 77.04, + "grad_norm": 0.8600365519523621, + "learning_rate": 1.1498e-05, + "loss": 1.255925064086914, + "step": 577800 + }, + { + "epoch": 77.05333333333333, + "grad_norm": 0.898125410079956, + "learning_rate": 1.1491333333333335e-05, + "loss": 1.251571273803711, + "step": 577900 + }, + { + "epoch": 77.06666666666666, + "grad_norm": 0.8492289185523987, + "learning_rate": 1.1484666666666667e-05, + "loss": 1.2551496887207032, + "step": 578000 + }, + { + "epoch": 77.08, + "grad_norm": 0.8958540558815002, + "learning_rate": 1.1478e-05, + "loss": 1.2567188262939453, + "step": 578100 + }, + { + "epoch": 77.09333333333333, + "grad_norm": 0.8623022437095642, + "learning_rate": 1.1471333333333333e-05, + "loss": 1.2552345275878907, + "step": 578200 + }, + { + "epoch": 77.10666666666667, + "grad_norm": 0.8635573983192444, + "learning_rate": 1.1464666666666667e-05, + "loss": 1.2586454010009767, + "step": 578300 + }, + { + "epoch": 77.12, + "grad_norm": 0.8765349388122559, + "learning_rate": 1.1458000000000001e-05, + "loss": 1.2600203704833985, + "step": 578400 + }, + { + "epoch": 77.13333333333334, + "grad_norm": 0.862362802028656, + "learning_rate": 1.1451333333333333e-05, + "loss": 1.2597164916992187, + "step": 578500 + }, + { + "epoch": 77.14666666666666, + "grad_norm": 0.910469651222229, + "learning_rate": 1.1444666666666667e-05, + "loss": 1.2607437896728515, + "step": 578600 + }, + { + "epoch": 77.16, + "grad_norm": 0.9068487286567688, + "learning_rate": 1.1438e-05, + "loss": 1.2581224060058593, + "step": 578700 + }, + { + "epoch": 77.17333333333333, + "grad_norm": 0.818719744682312, + "learning_rate": 1.1431333333333334e-05, + "loss": 1.257034454345703, + "step": 578800 + }, + { + "epoch": 77.18666666666667, + "grad_norm": 0.9217579364776611, + "learning_rate": 1.1424666666666668e-05, + "loss": 1.2629297637939454, + "step": 578900 + }, + { + "epoch": 77.2, + "grad_norm": 0.848243772983551, + "learning_rate": 1.1418066666666667e-05, + "loss": 1.2635003662109374, + "step": 579000 + }, + { + "epoch": 77.21333333333334, + "grad_norm": 0.8776289820671082, + "learning_rate": 1.14114e-05, + "loss": 1.2585693359375, + "step": 579100 + }, + { + "epoch": 77.22666666666667, + "grad_norm": 0.9173794388771057, + "learning_rate": 1.1404733333333335e-05, + "loss": 1.2622824859619142, + "step": 579200 + }, + { + "epoch": 77.24, + "grad_norm": 0.873337984085083, + "learning_rate": 1.1398066666666667e-05, + "loss": 1.2653639221191406, + "step": 579300 + }, + { + "epoch": 77.25333333333333, + "grad_norm": 0.9575465321540833, + "learning_rate": 1.13914e-05, + "loss": 1.2643247222900391, + "step": 579400 + }, + { + "epoch": 77.26666666666667, + "grad_norm": 0.8416218161582947, + "learning_rate": 1.1384733333333333e-05, + "loss": 1.2624178314208985, + "step": 579500 + }, + { + "epoch": 77.28, + "grad_norm": 0.9230799674987793, + "learning_rate": 1.1378066666666667e-05, + "loss": 1.2626051330566406, + "step": 579600 + }, + { + "epoch": 77.29333333333334, + "grad_norm": 0.8633724451065063, + "learning_rate": 1.1371400000000001e-05, + "loss": 1.2685257720947265, + "step": 579700 + }, + { + "epoch": 77.30666666666667, + "grad_norm": 0.9460192322731018, + "learning_rate": 1.1364733333333335e-05, + "loss": 1.2646743774414062, + "step": 579800 + }, + { + "epoch": 77.32, + "grad_norm": 0.8928385376930237, + "learning_rate": 1.1358066666666667e-05, + "loss": 1.2659114837646483, + "step": 579900 + }, + { + "epoch": 77.33333333333333, + "grad_norm": 0.8571158051490784, + "learning_rate": 1.1351400000000001e-05, + "loss": 1.2670587921142578, + "step": 580000 + }, + { + "epoch": 77.34666666666666, + "grad_norm": 0.858704686164856, + "learning_rate": 1.1344733333333333e-05, + "loss": 1.2675933837890625, + "step": 580100 + }, + { + "epoch": 77.36, + "grad_norm": 0.9516656398773193, + "learning_rate": 1.1338066666666667e-05, + "loss": 1.2708335876464845, + "step": 580200 + }, + { + "epoch": 77.37333333333333, + "grad_norm": 0.8929257392883301, + "learning_rate": 1.13314e-05, + "loss": 1.265479278564453, + "step": 580300 + }, + { + "epoch": 77.38666666666667, + "grad_norm": 0.912930428981781, + "learning_rate": 1.1324733333333334e-05, + "loss": 1.2636156463623047, + "step": 580400 + }, + { + "epoch": 77.4, + "grad_norm": 0.8615267276763916, + "learning_rate": 1.1318066666666668e-05, + "loss": 1.2651126861572266, + "step": 580500 + }, + { + "epoch": 77.41333333333333, + "grad_norm": 0.8684864640235901, + "learning_rate": 1.1311400000000002e-05, + "loss": 1.2702027130126954, + "step": 580600 + }, + { + "epoch": 77.42666666666666, + "grad_norm": 0.8868072628974915, + "learning_rate": 1.1304733333333334e-05, + "loss": 1.2698739624023438, + "step": 580700 + }, + { + "epoch": 77.44, + "grad_norm": 0.9572634696960449, + "learning_rate": 1.1298066666666666e-05, + "loss": 1.268133544921875, + "step": 580800 + }, + { + "epoch": 77.45333333333333, + "grad_norm": 0.9197629690170288, + "learning_rate": 1.12914e-05, + "loss": 1.2709165954589843, + "step": 580900 + }, + { + "epoch": 77.46666666666667, + "grad_norm": 0.8801963329315186, + "learning_rate": 1.1284733333333334e-05, + "loss": 1.2684906768798827, + "step": 581000 + }, + { + "epoch": 77.48, + "grad_norm": 0.8818572163581848, + "learning_rate": 1.1278133333333333e-05, + "loss": 1.273465576171875, + "step": 581100 + }, + { + "epoch": 77.49333333333334, + "grad_norm": 0.9402119517326355, + "learning_rate": 1.1271466666666667e-05, + "loss": 1.266955108642578, + "step": 581200 + }, + { + "epoch": 77.50666666666666, + "grad_norm": 0.8809628486633301, + "learning_rate": 1.1264800000000001e-05, + "loss": 1.271000289916992, + "step": 581300 + }, + { + "epoch": 77.52, + "grad_norm": 0.9298728108406067, + "learning_rate": 1.1258133333333335e-05, + "loss": 1.2696641540527345, + "step": 581400 + }, + { + "epoch": 77.53333333333333, + "grad_norm": 0.9338729977607727, + "learning_rate": 1.1251466666666667e-05, + "loss": 1.2723861694335938, + "step": 581500 + }, + { + "epoch": 77.54666666666667, + "grad_norm": 0.8930231332778931, + "learning_rate": 1.1244800000000001e-05, + "loss": 1.2670636749267579, + "step": 581600 + }, + { + "epoch": 77.56, + "grad_norm": 0.8689009547233582, + "learning_rate": 1.1238133333333333e-05, + "loss": 1.2678091430664062, + "step": 581700 + }, + { + "epoch": 77.57333333333334, + "grad_norm": 0.8521204590797424, + "learning_rate": 1.1231466666666666e-05, + "loss": 1.2707132720947265, + "step": 581800 + }, + { + "epoch": 77.58666666666667, + "grad_norm": 0.8917391896247864, + "learning_rate": 1.1224800000000001e-05, + "loss": 1.2752569580078126, + "step": 581900 + }, + { + "epoch": 77.6, + "grad_norm": 0.9497755169868469, + "learning_rate": 1.1218133333333334e-05, + "loss": 1.2703166961669923, + "step": 582000 + }, + { + "epoch": 77.61333333333333, + "grad_norm": 0.9635091423988342, + "learning_rate": 1.1211466666666668e-05, + "loss": 1.2678369903564453, + "step": 582100 + }, + { + "epoch": 77.62666666666667, + "grad_norm": 0.9281509518623352, + "learning_rate": 1.12048e-05, + "loss": 1.2707953643798828, + "step": 582200 + }, + { + "epoch": 77.64, + "grad_norm": 0.8660150170326233, + "learning_rate": 1.1198133333333334e-05, + "loss": 1.272255401611328, + "step": 582300 + }, + { + "epoch": 77.65333333333334, + "grad_norm": 0.9285011291503906, + "learning_rate": 1.1191466666666666e-05, + "loss": 1.2756419372558594, + "step": 582400 + }, + { + "epoch": 77.66666666666667, + "grad_norm": 0.932344377040863, + "learning_rate": 1.11848e-05, + "loss": 1.2738219451904298, + "step": 582500 + }, + { + "epoch": 77.68, + "grad_norm": 0.9365657567977905, + "learning_rate": 1.1178133333333334e-05, + "loss": 1.2753623199462891, + "step": 582600 + }, + { + "epoch": 77.69333333333333, + "grad_norm": 0.825846791267395, + "learning_rate": 1.1171466666666668e-05, + "loss": 1.2731678771972657, + "step": 582700 + }, + { + "epoch": 77.70666666666666, + "grad_norm": 0.9342759847640991, + "learning_rate": 1.11648e-05, + "loss": 1.277725067138672, + "step": 582800 + }, + { + "epoch": 77.72, + "grad_norm": 0.9432119131088257, + "learning_rate": 1.1158133333333334e-05, + "loss": 1.2735256958007812, + "step": 582900 + }, + { + "epoch": 77.73333333333333, + "grad_norm": 0.9605401158332825, + "learning_rate": 1.1151466666666666e-05, + "loss": 1.2816490173339843, + "step": 583000 + }, + { + "epoch": 77.74666666666667, + "grad_norm": 0.9029577374458313, + "learning_rate": 1.1144866666666667e-05, + "loss": 1.2802981567382812, + "step": 583100 + }, + { + "epoch": 77.76, + "grad_norm": 0.8637961745262146, + "learning_rate": 1.11382e-05, + "loss": 1.2796761322021484, + "step": 583200 + }, + { + "epoch": 77.77333333333333, + "grad_norm": 0.921112596988678, + "learning_rate": 1.1131533333333333e-05, + "loss": 1.2756118774414062, + "step": 583300 + }, + { + "epoch": 77.78666666666666, + "grad_norm": 0.9237424731254578, + "learning_rate": 1.1124866666666667e-05, + "loss": 1.2745748901367187, + "step": 583400 + }, + { + "epoch": 77.8, + "grad_norm": 0.843678891658783, + "learning_rate": 1.1118200000000001e-05, + "loss": 1.2792215728759766, + "step": 583500 + }, + { + "epoch": 77.81333333333333, + "grad_norm": 0.9343549609184265, + "learning_rate": 1.1111533333333334e-05, + "loss": 1.277459716796875, + "step": 583600 + }, + { + "epoch": 77.82666666666667, + "grad_norm": 0.8938376307487488, + "learning_rate": 1.1104866666666668e-05, + "loss": 1.2799664306640626, + "step": 583700 + }, + { + "epoch": 77.84, + "grad_norm": 0.910925030708313, + "learning_rate": 1.10982e-05, + "loss": 1.280896453857422, + "step": 583800 + }, + { + "epoch": 77.85333333333334, + "grad_norm": 0.8991851806640625, + "learning_rate": 1.1091533333333334e-05, + "loss": 1.2770259857177735, + "step": 583900 + }, + { + "epoch": 77.86666666666666, + "grad_norm": 0.8709640502929688, + "learning_rate": 1.1084866666666668e-05, + "loss": 1.2761578369140625, + "step": 584000 + }, + { + "epoch": 77.88, + "grad_norm": 0.8845403790473938, + "learning_rate": 1.1078200000000002e-05, + "loss": 1.2800413513183593, + "step": 584100 + }, + { + "epoch": 77.89333333333333, + "grad_norm": 0.8760946393013, + "learning_rate": 1.1071533333333334e-05, + "loss": 1.2795198822021485, + "step": 584200 + }, + { + "epoch": 77.90666666666667, + "grad_norm": 0.9131218791007996, + "learning_rate": 1.1064866666666668e-05, + "loss": 1.2759528350830078, + "step": 584300 + }, + { + "epoch": 77.92, + "grad_norm": 0.8943530321121216, + "learning_rate": 1.10582e-05, + "loss": 1.2813719177246095, + "step": 584400 + }, + { + "epoch": 77.93333333333334, + "grad_norm": 0.9106712937355042, + "learning_rate": 1.1051533333333333e-05, + "loss": 1.2769749450683594, + "step": 584500 + }, + { + "epoch": 77.94666666666667, + "grad_norm": 0.9153562188148499, + "learning_rate": 1.1044866666666667e-05, + "loss": 1.2757042694091796, + "step": 584600 + }, + { + "epoch": 77.96, + "grad_norm": 0.9484046697616577, + "learning_rate": 1.10382e-05, + "loss": 1.2819232177734374, + "step": 584700 + }, + { + "epoch": 77.97333333333333, + "grad_norm": 0.9584998488426208, + "learning_rate": 1.1031533333333334e-05, + "loss": 1.2835421752929688, + "step": 584800 + }, + { + "epoch": 77.98666666666666, + "grad_norm": 0.9356921911239624, + "learning_rate": 1.1024866666666667e-05, + "loss": 1.2813420104980469, + "step": 584900 + }, + { + "epoch": 78.0, + "grad_norm": 0.9255989193916321, + "learning_rate": 1.10182e-05, + "loss": 1.2774526977539062, + "step": 585000 + }, + { + "epoch": 78.01333333333334, + "grad_norm": 0.8795908093452454, + "learning_rate": 1.1011600000000001e-05, + "loss": 1.249991455078125, + "step": 585100 + }, + { + "epoch": 78.02666666666667, + "grad_norm": 0.9239431619644165, + "learning_rate": 1.1004933333333334e-05, + "loss": 1.2514543151855468, + "step": 585200 + }, + { + "epoch": 78.04, + "grad_norm": 0.8539057374000549, + "learning_rate": 1.0998266666666668e-05, + "loss": 1.2499234008789062, + "step": 585300 + }, + { + "epoch": 78.05333333333333, + "grad_norm": 0.8485280871391296, + "learning_rate": 1.09916e-05, + "loss": 1.2504238891601562, + "step": 585400 + }, + { + "epoch": 78.06666666666666, + "grad_norm": 0.8902794718742371, + "learning_rate": 1.0984933333333334e-05, + "loss": 1.2511708068847656, + "step": 585500 + }, + { + "epoch": 78.08, + "grad_norm": 0.9052618741989136, + "learning_rate": 1.0978266666666668e-05, + "loss": 1.2486000061035156, + "step": 585600 + }, + { + "epoch": 78.09333333333333, + "grad_norm": 0.8789846897125244, + "learning_rate": 1.09716e-05, + "loss": 1.251748275756836, + "step": 585700 + }, + { + "epoch": 78.10666666666667, + "grad_norm": 0.885184109210968, + "learning_rate": 1.0964933333333334e-05, + "loss": 1.2532960510253905, + "step": 585800 + }, + { + "epoch": 78.12, + "grad_norm": 0.8550071120262146, + "learning_rate": 1.0958266666666666e-05, + "loss": 1.2503804779052734, + "step": 585900 + }, + { + "epoch": 78.13333333333334, + "grad_norm": 0.9323640465736389, + "learning_rate": 1.09516e-05, + "loss": 1.2534485626220704, + "step": 586000 + }, + { + "epoch": 78.14666666666666, + "grad_norm": 0.8850072026252747, + "learning_rate": 1.0944933333333334e-05, + "loss": 1.2556941986083985, + "step": 586100 + }, + { + "epoch": 78.16, + "grad_norm": 0.8399662971496582, + "learning_rate": 1.0938266666666668e-05, + "loss": 1.2542850494384765, + "step": 586200 + }, + { + "epoch": 78.17333333333333, + "grad_norm": 0.919593095779419, + "learning_rate": 1.09316e-05, + "loss": 1.2562599182128906, + "step": 586300 + }, + { + "epoch": 78.18666666666667, + "grad_norm": 0.8908868432044983, + "learning_rate": 1.0924933333333334e-05, + "loss": 1.2563451385498048, + "step": 586400 + }, + { + "epoch": 78.2, + "grad_norm": 0.8848934769630432, + "learning_rate": 1.0918266666666667e-05, + "loss": 1.2524043273925782, + "step": 586500 + }, + { + "epoch": 78.21333333333334, + "grad_norm": 0.8833860158920288, + "learning_rate": 1.09116e-05, + "loss": 1.2593082427978515, + "step": 586600 + }, + { + "epoch": 78.22666666666667, + "grad_norm": 0.8572924733161926, + "learning_rate": 1.0904933333333333e-05, + "loss": 1.2562625885009766, + "step": 586700 + }, + { + "epoch": 78.24, + "grad_norm": 0.8951097726821899, + "learning_rate": 1.0898266666666667e-05, + "loss": 1.2585964965820313, + "step": 586800 + }, + { + "epoch": 78.25333333333333, + "grad_norm": 0.879523515701294, + "learning_rate": 1.0891600000000001e-05, + "loss": 1.2556568908691406, + "step": 586900 + }, + { + "epoch": 78.26666666666667, + "grad_norm": 0.9368571043014526, + "learning_rate": 1.0884933333333335e-05, + "loss": 1.2600704193115235, + "step": 587000 + }, + { + "epoch": 78.28, + "grad_norm": 0.8886348009109497, + "learning_rate": 1.0878333333333334e-05, + "loss": 1.2605961608886718, + "step": 587100 + }, + { + "epoch": 78.29333333333334, + "grad_norm": 0.8580905199050903, + "learning_rate": 1.0871666666666668e-05, + "loss": 1.2552318572998047, + "step": 587200 + }, + { + "epoch": 78.30666666666667, + "grad_norm": 0.9353607296943665, + "learning_rate": 1.0865e-05, + "loss": 1.256221389770508, + "step": 587300 + }, + { + "epoch": 78.32, + "grad_norm": 0.8265605568885803, + "learning_rate": 1.0858333333333334e-05, + "loss": 1.2583871459960938, + "step": 587400 + }, + { + "epoch": 78.33333333333333, + "grad_norm": 0.956251859664917, + "learning_rate": 1.0851666666666666e-05, + "loss": 1.2614502716064453, + "step": 587500 + }, + { + "epoch": 78.34666666666666, + "grad_norm": 0.8545957207679749, + "learning_rate": 1.0845e-05, + "loss": 1.2584918212890626, + "step": 587600 + }, + { + "epoch": 78.36, + "grad_norm": 0.8909661769866943, + "learning_rate": 1.0838333333333334e-05, + "loss": 1.2615117645263672, + "step": 587700 + }, + { + "epoch": 78.37333333333333, + "grad_norm": 0.9129730463027954, + "learning_rate": 1.0831666666666668e-05, + "loss": 1.255586166381836, + "step": 587800 + }, + { + "epoch": 78.38666666666667, + "grad_norm": 0.8736388683319092, + "learning_rate": 1.0825e-05, + "loss": 1.2649986267089843, + "step": 587900 + }, + { + "epoch": 78.4, + "grad_norm": 0.931929886341095, + "learning_rate": 1.0818333333333335e-05, + "loss": 1.2623023223876952, + "step": 588000 + }, + { + "epoch": 78.41333333333333, + "grad_norm": 0.9257421493530273, + "learning_rate": 1.0811666666666667e-05, + "loss": 1.258783950805664, + "step": 588100 + }, + { + "epoch": 78.42666666666666, + "grad_norm": 0.8989784717559814, + "learning_rate": 1.0804999999999999e-05, + "loss": 1.2628663635253907, + "step": 588200 + }, + { + "epoch": 78.44, + "grad_norm": 0.9080356359481812, + "learning_rate": 1.0798333333333335e-05, + "loss": 1.2631582641601562, + "step": 588300 + }, + { + "epoch": 78.45333333333333, + "grad_norm": 0.864266574382782, + "learning_rate": 1.0791666666666667e-05, + "loss": 1.2602297973632812, + "step": 588400 + }, + { + "epoch": 78.46666666666667, + "grad_norm": 0.9377700686454773, + "learning_rate": 1.0785000000000001e-05, + "loss": 1.2689905548095703, + "step": 588500 + }, + { + "epoch": 78.48, + "grad_norm": 0.9184496998786926, + "learning_rate": 1.0778333333333333e-05, + "loss": 1.2642398834228517, + "step": 588600 + }, + { + "epoch": 78.49333333333334, + "grad_norm": 0.9387530088424683, + "learning_rate": 1.0771666666666667e-05, + "loss": 1.2622312164306642, + "step": 588700 + }, + { + "epoch": 78.50666666666666, + "grad_norm": 0.8708038926124573, + "learning_rate": 1.0765e-05, + "loss": 1.265206298828125, + "step": 588800 + }, + { + "epoch": 78.52, + "grad_norm": 0.8846192955970764, + "learning_rate": 1.0758333333333333e-05, + "loss": 1.2633629608154298, + "step": 588900 + }, + { + "epoch": 78.53333333333333, + "grad_norm": 0.8851326704025269, + "learning_rate": 1.0751666666666667e-05, + "loss": 1.266950912475586, + "step": 589000 + }, + { + "epoch": 78.54666666666667, + "grad_norm": 0.9254246950149536, + "learning_rate": 1.0745000000000001e-05, + "loss": 1.2651148223876953, + "step": 589100 + }, + { + "epoch": 78.56, + "grad_norm": 0.886559784412384, + "learning_rate": 1.07384e-05, + "loss": 1.2686289215087891, + "step": 589200 + }, + { + "epoch": 78.57333333333334, + "grad_norm": 0.8676953315734863, + "learning_rate": 1.0731733333333334e-05, + "loss": 1.2632874298095702, + "step": 589300 + }, + { + "epoch": 78.58666666666667, + "grad_norm": 0.911446213722229, + "learning_rate": 1.0725066666666667e-05, + "loss": 1.2674727630615235, + "step": 589400 + }, + { + "epoch": 78.6, + "grad_norm": 0.9178944230079651, + "learning_rate": 1.07184e-05, + "loss": 1.2665594482421876, + "step": 589500 + }, + { + "epoch": 78.61333333333333, + "grad_norm": 0.9570107460021973, + "learning_rate": 1.0711733333333333e-05, + "loss": 1.2660420989990235, + "step": 589600 + }, + { + "epoch": 78.62666666666667, + "grad_norm": 0.9041311144828796, + "learning_rate": 1.0705066666666667e-05, + "loss": 1.2692436218261718, + "step": 589700 + }, + { + "epoch": 78.64, + "grad_norm": 0.8909561634063721, + "learning_rate": 1.06984e-05, + "loss": 1.2753994750976563, + "step": 589800 + }, + { + "epoch": 78.65333333333334, + "grad_norm": 0.883059561252594, + "learning_rate": 1.0691733333333335e-05, + "loss": 1.2698513793945312, + "step": 589900 + }, + { + "epoch": 78.66666666666667, + "grad_norm": 0.8872081637382507, + "learning_rate": 1.0685066666666667e-05, + "loss": 1.268332748413086, + "step": 590000 + }, + { + "epoch": 78.68, + "grad_norm": 0.9364659190177917, + "learning_rate": 1.0678400000000001e-05, + "loss": 1.2715838623046876, + "step": 590100 + }, + { + "epoch": 78.69333333333333, + "grad_norm": 0.8873387575149536, + "learning_rate": 1.0671733333333333e-05, + "loss": 1.2653190612792968, + "step": 590200 + }, + { + "epoch": 78.70666666666666, + "grad_norm": 0.9163351058959961, + "learning_rate": 1.0665066666666667e-05, + "loss": 1.2706766510009766, + "step": 590300 + }, + { + "epoch": 78.72, + "grad_norm": 0.8802734017372131, + "learning_rate": 1.0658400000000001e-05, + "loss": 1.2680073547363282, + "step": 590400 + }, + { + "epoch": 78.73333333333333, + "grad_norm": 0.8930662870407104, + "learning_rate": 1.0651733333333335e-05, + "loss": 1.2715739440917968, + "step": 590500 + }, + { + "epoch": 78.74666666666667, + "grad_norm": 0.8921145796775818, + "learning_rate": 1.0645066666666667e-05, + "loss": 1.2718709564208985, + "step": 590600 + }, + { + "epoch": 78.76, + "grad_norm": 0.9061724543571472, + "learning_rate": 1.0638400000000001e-05, + "loss": 1.2666871643066406, + "step": 590700 + }, + { + "epoch": 78.77333333333333, + "grad_norm": 0.9512609839439392, + "learning_rate": 1.0631733333333334e-05, + "loss": 1.2725698852539062, + "step": 590800 + }, + { + "epoch": 78.78666666666666, + "grad_norm": 0.8718198537826538, + "learning_rate": 1.0625066666666666e-05, + "loss": 1.2700515747070313, + "step": 590900 + }, + { + "epoch": 78.8, + "grad_norm": 0.9610340595245361, + "learning_rate": 1.06184e-05, + "loss": 1.2690962982177734, + "step": 591000 + }, + { + "epoch": 78.81333333333333, + "grad_norm": 0.9104143977165222, + "learning_rate": 1.0611733333333334e-05, + "loss": 1.2665902709960937, + "step": 591100 + }, + { + "epoch": 78.82666666666667, + "grad_norm": 0.9109393358230591, + "learning_rate": 1.0605133333333333e-05, + "loss": 1.2704518127441407, + "step": 591200 + }, + { + "epoch": 78.84, + "grad_norm": 0.9059329032897949, + "learning_rate": 1.0598466666666667e-05, + "loss": 1.273515396118164, + "step": 591300 + }, + { + "epoch": 78.85333333333334, + "grad_norm": 0.9386402368545532, + "learning_rate": 1.05918e-05, + "loss": 1.2749934387207031, + "step": 591400 + }, + { + "epoch": 78.86666666666666, + "grad_norm": 0.8592071533203125, + "learning_rate": 1.0585133333333335e-05, + "loss": 1.274554214477539, + "step": 591500 + }, + { + "epoch": 78.88, + "grad_norm": 0.903801679611206, + "learning_rate": 1.0578466666666667e-05, + "loss": 1.2715023040771485, + "step": 591600 + }, + { + "epoch": 78.89333333333333, + "grad_norm": 0.9000576138496399, + "learning_rate": 1.0571800000000001e-05, + "loss": 1.2724392700195313, + "step": 591700 + }, + { + "epoch": 78.90666666666667, + "grad_norm": 0.9397499561309814, + "learning_rate": 1.0565133333333333e-05, + "loss": 1.2701983642578125, + "step": 591800 + }, + { + "epoch": 78.92, + "grad_norm": 0.9019601345062256, + "learning_rate": 1.0558466666666667e-05, + "loss": 1.2739637756347657, + "step": 591900 + }, + { + "epoch": 78.93333333333334, + "grad_norm": 0.9267058372497559, + "learning_rate": 1.0551800000000001e-05, + "loss": 1.278916778564453, + "step": 592000 + }, + { + "epoch": 78.94666666666667, + "grad_norm": 0.9432265162467957, + "learning_rate": 1.0545133333333333e-05, + "loss": 1.2765323638916015, + "step": 592100 + }, + { + "epoch": 78.96, + "grad_norm": 0.905218243598938, + "learning_rate": 1.0538466666666667e-05, + "loss": 1.2738363647460937, + "step": 592200 + }, + { + "epoch": 78.97333333333333, + "grad_norm": 0.8922687768936157, + "learning_rate": 1.05318e-05, + "loss": 1.2749046325683593, + "step": 592300 + }, + { + "epoch": 78.98666666666666, + "grad_norm": 0.9277877807617188, + "learning_rate": 1.0525133333333334e-05, + "loss": 1.2721634674072266, + "step": 592400 + }, + { + "epoch": 79.0, + "grad_norm": 0.9030377268791199, + "learning_rate": 1.0518466666666666e-05, + "loss": 1.2747603607177735, + "step": 592500 + }, + { + "epoch": 79.01333333333334, + "grad_norm": 0.8378993272781372, + "learning_rate": 1.0511800000000002e-05, + "loss": 1.24189208984375, + "step": 592600 + }, + { + "epoch": 79.02666666666667, + "grad_norm": 0.9222813248634338, + "learning_rate": 1.0505133333333334e-05, + "loss": 1.2447259521484375, + "step": 592700 + }, + { + "epoch": 79.04, + "grad_norm": 0.8688544034957886, + "learning_rate": 1.0498466666666668e-05, + "loss": 1.2454937744140624, + "step": 592800 + }, + { + "epoch": 79.05333333333333, + "grad_norm": 0.8973101377487183, + "learning_rate": 1.04918e-05, + "loss": 1.2433192443847656, + "step": 592900 + }, + { + "epoch": 79.06666666666666, + "grad_norm": 0.868934154510498, + "learning_rate": 1.0485133333333334e-05, + "loss": 1.2476187133789063, + "step": 593000 + }, + { + "epoch": 79.08, + "grad_norm": 0.9051042795181274, + "learning_rate": 1.0478466666666666e-05, + "loss": 1.246639404296875, + "step": 593100 + }, + { + "epoch": 79.09333333333333, + "grad_norm": 0.8593751192092896, + "learning_rate": 1.0471866666666667e-05, + "loss": 1.2500391387939453, + "step": 593200 + }, + { + "epoch": 79.10666666666667, + "grad_norm": 0.8476565480232239, + "learning_rate": 1.04652e-05, + "loss": 1.246165542602539, + "step": 593300 + }, + { + "epoch": 79.12, + "grad_norm": 0.8801284432411194, + "learning_rate": 1.0458533333333333e-05, + "loss": 1.246192092895508, + "step": 593400 + }, + { + "epoch": 79.13333333333334, + "grad_norm": 0.8846884369850159, + "learning_rate": 1.0451866666666667e-05, + "loss": 1.2439684295654296, + "step": 593500 + }, + { + "epoch": 79.14666666666666, + "grad_norm": 0.9294757843017578, + "learning_rate": 1.0445200000000001e-05, + "loss": 1.2488855743408203, + "step": 593600 + }, + { + "epoch": 79.16, + "grad_norm": 0.8399421572685242, + "learning_rate": 1.0438533333333333e-05, + "loss": 1.2482614135742187, + "step": 593700 + }, + { + "epoch": 79.17333333333333, + "grad_norm": 0.911873459815979, + "learning_rate": 1.0431866666666667e-05, + "loss": 1.2482553100585938, + "step": 593800 + }, + { + "epoch": 79.18666666666667, + "grad_norm": 0.8314080834388733, + "learning_rate": 1.04252e-05, + "loss": 1.247007827758789, + "step": 593900 + }, + { + "epoch": 79.2, + "grad_norm": 0.9181894063949585, + "learning_rate": 1.0418533333333334e-05, + "loss": 1.2536485290527344, + "step": 594000 + }, + { + "epoch": 79.21333333333334, + "grad_norm": 0.8740313649177551, + "learning_rate": 1.0411866666666668e-05, + "loss": 1.2519398498535157, + "step": 594100 + }, + { + "epoch": 79.22666666666667, + "grad_norm": 0.9068511128425598, + "learning_rate": 1.0405200000000002e-05, + "loss": 1.2476766967773438, + "step": 594200 + }, + { + "epoch": 79.24, + "grad_norm": 0.9321922063827515, + "learning_rate": 1.0398533333333334e-05, + "loss": 1.2513009643554687, + "step": 594300 + }, + { + "epoch": 79.25333333333333, + "grad_norm": 0.888857901096344, + "learning_rate": 1.0391866666666668e-05, + "loss": 1.2504447937011718, + "step": 594400 + }, + { + "epoch": 79.26666666666667, + "grad_norm": 0.9641751050949097, + "learning_rate": 1.03852e-05, + "loss": 1.2548712921142577, + "step": 594500 + }, + { + "epoch": 79.28, + "grad_norm": 0.8727660775184631, + "learning_rate": 1.0378533333333332e-05, + "loss": 1.2525074005126953, + "step": 594600 + }, + { + "epoch": 79.29333333333334, + "grad_norm": 0.8915736675262451, + "learning_rate": 1.0371866666666668e-05, + "loss": 1.2563622283935547, + "step": 594700 + }, + { + "epoch": 79.30666666666667, + "grad_norm": 0.8992096781730652, + "learning_rate": 1.03652e-05, + "loss": 1.250523452758789, + "step": 594800 + }, + { + "epoch": 79.32, + "grad_norm": 0.9542332291603088, + "learning_rate": 1.0358533333333334e-05, + "loss": 1.2581777954101563, + "step": 594900 + }, + { + "epoch": 79.33333333333333, + "grad_norm": 0.8994565606117249, + "learning_rate": 1.0351866666666667e-05, + "loss": 1.2560828399658204, + "step": 595000 + }, + { + "epoch": 79.34666666666666, + "grad_norm": 0.9147607088088989, + "learning_rate": 1.03452e-05, + "loss": 1.2500714111328124, + "step": 595100 + }, + { + "epoch": 79.36, + "grad_norm": 0.9078018069267273, + "learning_rate": 1.0338600000000001e-05, + "loss": 1.257826385498047, + "step": 595200 + }, + { + "epoch": 79.37333333333333, + "grad_norm": 0.9065786004066467, + "learning_rate": 1.0331933333333334e-05, + "loss": 1.2560930633544922, + "step": 595300 + }, + { + "epoch": 79.38666666666667, + "grad_norm": 0.9030917286872864, + "learning_rate": 1.0325266666666667e-05, + "loss": 1.2558876800537109, + "step": 595400 + }, + { + "epoch": 79.4, + "grad_norm": 0.9185391664505005, + "learning_rate": 1.03186e-05, + "loss": 1.2556648254394531, + "step": 595500 + }, + { + "epoch": 79.41333333333333, + "grad_norm": 0.8820536136627197, + "learning_rate": 1.0311933333333334e-05, + "loss": 1.25557373046875, + "step": 595600 + }, + { + "epoch": 79.42666666666666, + "grad_norm": 0.872558057308197, + "learning_rate": 1.0305266666666668e-05, + "loss": 1.2546512603759765, + "step": 595700 + }, + { + "epoch": 79.44, + "grad_norm": 0.9479767680168152, + "learning_rate": 1.02986e-05, + "loss": 1.2602999114990234, + "step": 595800 + }, + { + "epoch": 79.45333333333333, + "grad_norm": 0.8801756501197815, + "learning_rate": 1.0291933333333334e-05, + "loss": 1.2596167755126952, + "step": 595900 + }, + { + "epoch": 79.46666666666667, + "grad_norm": 0.8682863116264343, + "learning_rate": 1.0285266666666666e-05, + "loss": 1.2621781158447265, + "step": 596000 + }, + { + "epoch": 79.48, + "grad_norm": 0.9202213883399963, + "learning_rate": 1.02786e-05, + "loss": 1.2601839447021483, + "step": 596100 + }, + { + "epoch": 79.49333333333334, + "grad_norm": 0.8812510371208191, + "learning_rate": 1.0271933333333334e-05, + "loss": 1.2634574890136718, + "step": 596200 + }, + { + "epoch": 79.50666666666666, + "grad_norm": 0.9358564019203186, + "learning_rate": 1.0265266666666668e-05, + "loss": 1.2560010528564454, + "step": 596300 + }, + { + "epoch": 79.52, + "grad_norm": 0.9232118725776672, + "learning_rate": 1.02586e-05, + "loss": 1.2569718170166015, + "step": 596400 + }, + { + "epoch": 79.53333333333333, + "grad_norm": 0.9304707050323486, + "learning_rate": 1.0251933333333334e-05, + "loss": 1.2577223205566406, + "step": 596500 + }, + { + "epoch": 79.54666666666667, + "grad_norm": 0.8667801022529602, + "learning_rate": 1.0245266666666667e-05, + "loss": 1.2640282440185546, + "step": 596600 + }, + { + "epoch": 79.56, + "grad_norm": 0.9173431992530823, + "learning_rate": 1.02386e-05, + "loss": 1.2618460083007812, + "step": 596700 + }, + { + "epoch": 79.57333333333334, + "grad_norm": 0.9202678203582764, + "learning_rate": 1.0231933333333334e-05, + "loss": 1.2610095977783202, + "step": 596800 + }, + { + "epoch": 79.58666666666667, + "grad_norm": 0.8916814923286438, + "learning_rate": 1.0225266666666668e-05, + "loss": 1.2634732055664062, + "step": 596900 + }, + { + "epoch": 79.6, + "grad_norm": 0.8657307624816895, + "learning_rate": 1.02186e-05, + "loss": 1.2660941314697265, + "step": 597000 + }, + { + "epoch": 79.61333333333333, + "grad_norm": 0.948290228843689, + "learning_rate": 1.0211933333333335e-05, + "loss": 1.2630126953125, + "step": 597100 + }, + { + "epoch": 79.62666666666667, + "grad_norm": 0.8405894041061401, + "learning_rate": 1.0205333333333334e-05, + "loss": 1.2619757080078124, + "step": 597200 + }, + { + "epoch": 79.64, + "grad_norm": 0.9192798137664795, + "learning_rate": 1.0198666666666668e-05, + "loss": 1.2630854797363282, + "step": 597300 + }, + { + "epoch": 79.65333333333334, + "grad_norm": 0.8935139179229736, + "learning_rate": 1.0192e-05, + "loss": 1.2599110412597656, + "step": 597400 + }, + { + "epoch": 79.66666666666667, + "grad_norm": 0.9552688598632812, + "learning_rate": 1.0185333333333334e-05, + "loss": 1.2634823608398438, + "step": 597500 + }, + { + "epoch": 79.68, + "grad_norm": 0.9792049527168274, + "learning_rate": 1.0178666666666666e-05, + "loss": 1.2599063110351563, + "step": 597600 + }, + { + "epoch": 79.69333333333333, + "grad_norm": 0.8858845233917236, + "learning_rate": 1.0172e-05, + "loss": 1.262656021118164, + "step": 597700 + }, + { + "epoch": 79.70666666666666, + "grad_norm": 0.8454314470291138, + "learning_rate": 1.0165333333333334e-05, + "loss": 1.2662943267822266, + "step": 597800 + }, + { + "epoch": 79.72, + "grad_norm": 0.8796765208244324, + "learning_rate": 1.0158666666666668e-05, + "loss": 1.2636601257324218, + "step": 597900 + }, + { + "epoch": 79.73333333333333, + "grad_norm": 0.9347110390663147, + "learning_rate": 1.0152e-05, + "loss": 1.2646561431884766, + "step": 598000 + }, + { + "epoch": 79.74666666666667, + "grad_norm": 0.8910204172134399, + "learning_rate": 1.0145333333333334e-05, + "loss": 1.268468780517578, + "step": 598100 + }, + { + "epoch": 79.76, + "grad_norm": 0.8769538998603821, + "learning_rate": 1.0138666666666667e-05, + "loss": 1.2662653350830078, + "step": 598200 + }, + { + "epoch": 79.77333333333333, + "grad_norm": 0.8732584714889526, + "learning_rate": 1.0132e-05, + "loss": 1.2627813720703125, + "step": 598300 + }, + { + "epoch": 79.78666666666666, + "grad_norm": 0.927267849445343, + "learning_rate": 1.0125333333333335e-05, + "loss": 1.2639500427246093, + "step": 598400 + }, + { + "epoch": 79.8, + "grad_norm": 0.8972467184066772, + "learning_rate": 1.0118666666666667e-05, + "loss": 1.265300064086914, + "step": 598500 + }, + { + "epoch": 79.81333333333333, + "grad_norm": 0.9230730533599854, + "learning_rate": 1.0112e-05, + "loss": 1.2670893096923828, + "step": 598600 + }, + { + "epoch": 79.82666666666667, + "grad_norm": 0.8692210912704468, + "learning_rate": 1.0105333333333333e-05, + "loss": 1.2643206787109376, + "step": 598700 + }, + { + "epoch": 79.84, + "grad_norm": 0.9208062291145325, + "learning_rate": 1.0098666666666667e-05, + "loss": 1.266007766723633, + "step": 598800 + }, + { + "epoch": 79.85333333333334, + "grad_norm": 0.8955254554748535, + "learning_rate": 1.0092e-05, + "loss": 1.2656437683105468, + "step": 598900 + }, + { + "epoch": 79.86666666666666, + "grad_norm": 0.8898331522941589, + "learning_rate": 1.0085333333333335e-05, + "loss": 1.268927993774414, + "step": 599000 + }, + { + "epoch": 79.88, + "grad_norm": 0.9004736542701721, + "learning_rate": 1.0078666666666667e-05, + "loss": 1.2676744079589843, + "step": 599100 + }, + { + "epoch": 79.89333333333333, + "grad_norm": 0.879002571105957, + "learning_rate": 1.0072066666666668e-05, + "loss": 1.268192672729492, + "step": 599200 + }, + { + "epoch": 79.90666666666667, + "grad_norm": 0.8479452133178711, + "learning_rate": 1.00654e-05, + "loss": 1.2690647888183593, + "step": 599300 + }, + { + "epoch": 79.92, + "grad_norm": 0.9314066171646118, + "learning_rate": 1.0058733333333334e-05, + "loss": 1.2657173156738282, + "step": 599400 + }, + { + "epoch": 79.93333333333334, + "grad_norm": 0.9445568919181824, + "learning_rate": 1.0052066666666666e-05, + "loss": 1.268585205078125, + "step": 599500 + }, + { + "epoch": 79.94666666666667, + "grad_norm": 0.8672616481781006, + "learning_rate": 1.00454e-05, + "loss": 1.2684510040283203, + "step": 599600 + }, + { + "epoch": 79.96, + "grad_norm": 0.9522123336791992, + "learning_rate": 1.0038733333333333e-05, + "loss": 1.2633151245117187, + "step": 599700 + }, + { + "epoch": 79.97333333333333, + "grad_norm": 0.8980398774147034, + "learning_rate": 1.0032066666666667e-05, + "loss": 1.2709536743164063, + "step": 599800 + }, + { + "epoch": 79.98666666666666, + "grad_norm": 0.9412267804145813, + "learning_rate": 1.00254e-05, + "loss": 1.2736549377441406, + "step": 599900 + }, + { + "epoch": 80.0, + "grad_norm": 0.958734929561615, + "learning_rate": 1.0018733333333335e-05, + "loss": 1.2687025451660157, + "step": 600000 + }, + { + "epoch": 80.01333333333334, + "grad_norm": 0.9288617968559265, + "learning_rate": 1.0012066666666667e-05, + "loss": 1.2443870544433593, + "step": 600100 + }, + { + "epoch": 80.02666666666667, + "grad_norm": 0.9338223338127136, + "learning_rate": 1.00054e-05, + "loss": 1.243735122680664, + "step": 600200 + }, + { + "epoch": 80.04, + "grad_norm": 0.9002096056938171, + "learning_rate": 9.998733333333333e-06, + "loss": 1.2413943481445313, + "step": 600300 + }, + { + "epoch": 80.05333333333333, + "grad_norm": 0.9089773297309875, + "learning_rate": 9.992066666666667e-06, + "loss": 1.2424115753173828, + "step": 600400 + }, + { + "epoch": 80.06666666666666, + "grad_norm": 0.919051468372345, + "learning_rate": 9.985400000000001e-06, + "loss": 1.2413393402099608, + "step": 600500 + }, + { + "epoch": 80.08, + "grad_norm": 0.9045332670211792, + "learning_rate": 9.978733333333335e-06, + "loss": 1.2448829650878905, + "step": 600600 + }, + { + "epoch": 80.09333333333333, + "grad_norm": 0.9014262557029724, + "learning_rate": 9.972066666666667e-06, + "loss": 1.2456900024414062, + "step": 600700 + }, + { + "epoch": 80.10666666666667, + "grad_norm": 0.9010103344917297, + "learning_rate": 9.965400000000001e-06, + "loss": 1.2381111907958984, + "step": 600800 + }, + { + "epoch": 80.12, + "grad_norm": 0.8444560170173645, + "learning_rate": 9.958733333333333e-06, + "loss": 1.2418882751464844, + "step": 600900 + }, + { + "epoch": 80.13333333333334, + "grad_norm": 0.9013086557388306, + "learning_rate": 9.952066666666666e-06, + "loss": 1.2470101165771483, + "step": 601000 + }, + { + "epoch": 80.14666666666666, + "grad_norm": 0.8963460326194763, + "learning_rate": 9.945400000000001e-06, + "loss": 1.2434548950195312, + "step": 601100 + }, + { + "epoch": 80.16, + "grad_norm": 0.8968179821968079, + "learning_rate": 9.9388e-06, + "loss": 1.244561996459961, + "step": 601200 + }, + { + "epoch": 80.17333333333333, + "grad_norm": 0.8898792862892151, + "learning_rate": 9.932133333333333e-06, + "loss": 1.2477424621582032, + "step": 601300 + }, + { + "epoch": 80.18666666666667, + "grad_norm": 0.9151734709739685, + "learning_rate": 9.925466666666668e-06, + "loss": 1.2453786468505859, + "step": 601400 + }, + { + "epoch": 80.2, + "grad_norm": 0.8821862936019897, + "learning_rate": 9.9188e-06, + "loss": 1.250970993041992, + "step": 601500 + }, + { + "epoch": 80.21333333333334, + "grad_norm": 0.8794935941696167, + "learning_rate": 9.912133333333335e-06, + "loss": 1.2464175415039063, + "step": 601600 + }, + { + "epoch": 80.22666666666667, + "grad_norm": 0.8836155533790588, + "learning_rate": 9.905466666666667e-06, + "loss": 1.2436624908447265, + "step": 601700 + }, + { + "epoch": 80.24, + "grad_norm": 0.881230354309082, + "learning_rate": 9.8988e-06, + "loss": 1.2490660095214843, + "step": 601800 + }, + { + "epoch": 80.25333333333333, + "grad_norm": 0.9362554550170898, + "learning_rate": 9.892133333333333e-06, + "loss": 1.2497845458984376, + "step": 601900 + }, + { + "epoch": 80.26666666666667, + "grad_norm": 0.8518027663230896, + "learning_rate": 9.885466666666667e-06, + "loss": 1.247543487548828, + "step": 602000 + }, + { + "epoch": 80.28, + "grad_norm": 0.9236149787902832, + "learning_rate": 9.878800000000001e-06, + "loss": 1.2505050659179688, + "step": 602100 + }, + { + "epoch": 80.29333333333334, + "grad_norm": 0.9130676984786987, + "learning_rate": 9.872133333333333e-06, + "loss": 1.2465634918212891, + "step": 602200 + }, + { + "epoch": 80.30666666666667, + "grad_norm": 0.9139811992645264, + "learning_rate": 9.865466666666667e-06, + "loss": 1.2522836303710938, + "step": 602300 + }, + { + "epoch": 80.32, + "grad_norm": 0.8871936202049255, + "learning_rate": 9.8588e-06, + "loss": 1.2477921295166015, + "step": 602400 + }, + { + "epoch": 80.33333333333333, + "grad_norm": 0.9056395888328552, + "learning_rate": 9.852133333333333e-06, + "loss": 1.25315185546875, + "step": 602500 + }, + { + "epoch": 80.34666666666666, + "grad_norm": 0.881733238697052, + "learning_rate": 9.845466666666667e-06, + "loss": 1.25149169921875, + "step": 602600 + }, + { + "epoch": 80.36, + "grad_norm": 0.8879048228263855, + "learning_rate": 9.838800000000001e-06, + "loss": 1.2514451599121095, + "step": 602700 + }, + { + "epoch": 80.37333333333333, + "grad_norm": 0.9176741242408752, + "learning_rate": 9.832133333333334e-06, + "loss": 1.2507662963867188, + "step": 602800 + }, + { + "epoch": 80.38666666666667, + "grad_norm": 0.8852501511573792, + "learning_rate": 9.825466666666668e-06, + "loss": 1.2502633666992187, + "step": 602900 + }, + { + "epoch": 80.4, + "grad_norm": 0.8856446743011475, + "learning_rate": 9.8188e-06, + "loss": 1.2474871826171876, + "step": 603000 + }, + { + "epoch": 80.41333333333333, + "grad_norm": 0.7928372621536255, + "learning_rate": 9.812133333333334e-06, + "loss": 1.252954635620117, + "step": 603100 + }, + { + "epoch": 80.42666666666666, + "grad_norm": 0.9248310327529907, + "learning_rate": 9.805533333333333e-06, + "loss": 1.255914306640625, + "step": 603200 + }, + { + "epoch": 80.44, + "grad_norm": 0.8597677946090698, + "learning_rate": 9.798866666666667e-06, + "loss": 1.2539872741699218, + "step": 603300 + }, + { + "epoch": 80.45333333333333, + "grad_norm": 0.9030819535255432, + "learning_rate": 9.7922e-06, + "loss": 1.2549383544921875, + "step": 603400 + }, + { + "epoch": 80.46666666666667, + "grad_norm": 0.9179391860961914, + "learning_rate": 9.785533333333335e-06, + "loss": 1.255010757446289, + "step": 603500 + }, + { + "epoch": 80.48, + "grad_norm": 0.8762322068214417, + "learning_rate": 9.778866666666667e-06, + "loss": 1.2511839294433593, + "step": 603600 + }, + { + "epoch": 80.49333333333334, + "grad_norm": 0.9009326696395874, + "learning_rate": 9.772200000000001e-06, + "loss": 1.2546797180175782, + "step": 603700 + }, + { + "epoch": 80.50666666666666, + "grad_norm": 0.8604843020439148, + "learning_rate": 9.765533333333333e-06, + "loss": 1.2558490753173828, + "step": 603800 + }, + { + "epoch": 80.52, + "grad_norm": 0.7724893093109131, + "learning_rate": 9.758866666666667e-06, + "loss": 1.254795150756836, + "step": 603900 + }, + { + "epoch": 80.53333333333333, + "grad_norm": 0.9349945783615112, + "learning_rate": 9.7522e-06, + "loss": 1.2588446044921875, + "step": 604000 + }, + { + "epoch": 80.54666666666667, + "grad_norm": 0.8668858408927917, + "learning_rate": 9.745533333333334e-06, + "loss": 1.2564624786376952, + "step": 604100 + }, + { + "epoch": 80.56, + "grad_norm": 0.872798502445221, + "learning_rate": 9.738866666666667e-06, + "loss": 1.2593098449707032, + "step": 604200 + }, + { + "epoch": 80.57333333333334, + "grad_norm": 0.8730403780937195, + "learning_rate": 9.732200000000001e-06, + "loss": 1.2532449340820313, + "step": 604300 + }, + { + "epoch": 80.58666666666667, + "grad_norm": 0.9731208682060242, + "learning_rate": 9.725533333333334e-06, + "loss": 1.258994598388672, + "step": 604400 + }, + { + "epoch": 80.6, + "grad_norm": 0.9248079061508179, + "learning_rate": 9.718866666666668e-06, + "loss": 1.2537442779541015, + "step": 604500 + }, + { + "epoch": 80.61333333333333, + "grad_norm": 0.8961241841316223, + "learning_rate": 9.7122e-06, + "loss": 1.2533512115478516, + "step": 604600 + }, + { + "epoch": 80.62666666666667, + "grad_norm": 0.8987104296684265, + "learning_rate": 9.705533333333334e-06, + "loss": 1.2551846313476562, + "step": 604700 + }, + { + "epoch": 80.64, + "grad_norm": 0.8422402143478394, + "learning_rate": 9.698866666666668e-06, + "loss": 1.2600907135009765, + "step": 604800 + }, + { + "epoch": 80.65333333333334, + "grad_norm": 0.9396112561225891, + "learning_rate": 9.6922e-06, + "loss": 1.2541912841796874, + "step": 604900 + }, + { + "epoch": 80.66666666666667, + "grad_norm": 0.8763729333877563, + "learning_rate": 9.685533333333334e-06, + "loss": 1.255435791015625, + "step": 605000 + }, + { + "epoch": 80.68, + "grad_norm": 0.9729053974151611, + "learning_rate": 9.678866666666666e-06, + "loss": 1.2559229278564452, + "step": 605100 + }, + { + "epoch": 80.69333333333333, + "grad_norm": 0.9245437979698181, + "learning_rate": 9.6722e-06, + "loss": 1.2618405151367187, + "step": 605200 + }, + { + "epoch": 80.70666666666666, + "grad_norm": 0.9225579500198364, + "learning_rate": 9.665600000000001e-06, + "loss": 1.25842529296875, + "step": 605300 + }, + { + "epoch": 80.72, + "grad_norm": 0.8995950222015381, + "learning_rate": 9.658933333333333e-06, + "loss": 1.2611757659912108, + "step": 605400 + }, + { + "epoch": 80.73333333333333, + "grad_norm": 0.8765818476676941, + "learning_rate": 9.652266666666667e-06, + "loss": 1.2570573425292968, + "step": 605500 + }, + { + "epoch": 80.74666666666667, + "grad_norm": 0.8758502006530762, + "learning_rate": 9.645600000000001e-06, + "loss": 1.2593089294433595, + "step": 605600 + }, + { + "epoch": 80.76, + "grad_norm": 0.9053191542625427, + "learning_rate": 9.638933333333334e-06, + "loss": 1.2571390533447266, + "step": 605700 + }, + { + "epoch": 80.77333333333333, + "grad_norm": 0.8636969327926636, + "learning_rate": 9.632266666666668e-06, + "loss": 1.259483871459961, + "step": 605800 + }, + { + "epoch": 80.78666666666666, + "grad_norm": 0.9549551010131836, + "learning_rate": 9.6256e-06, + "loss": 1.2597525787353516, + "step": 605900 + }, + { + "epoch": 80.8, + "grad_norm": 0.8548250794410706, + "learning_rate": 9.618933333333334e-06, + "loss": 1.2577105712890626, + "step": 606000 + }, + { + "epoch": 80.81333333333333, + "grad_norm": 0.9075458645820618, + "learning_rate": 9.612266666666666e-06, + "loss": 1.2630501556396485, + "step": 606100 + }, + { + "epoch": 80.82666666666667, + "grad_norm": 0.9351378083229065, + "learning_rate": 9.6056e-06, + "loss": 1.2618649291992188, + "step": 606200 + }, + { + "epoch": 80.84, + "grad_norm": 0.8505954742431641, + "learning_rate": 9.598933333333334e-06, + "loss": 1.2608261108398438, + "step": 606300 + }, + { + "epoch": 80.85333333333334, + "grad_norm": 0.8611586093902588, + "learning_rate": 9.592266666666668e-06, + "loss": 1.2637861633300782, + "step": 606400 + }, + { + "epoch": 80.86666666666666, + "grad_norm": 0.8829309940338135, + "learning_rate": 9.5856e-06, + "loss": 1.2620301055908203, + "step": 606500 + }, + { + "epoch": 80.88, + "grad_norm": 0.906769335269928, + "learning_rate": 9.578933333333334e-06, + "loss": 1.2620735168457031, + "step": 606600 + }, + { + "epoch": 80.89333333333333, + "grad_norm": 0.896776020526886, + "learning_rate": 9.572266666666666e-06, + "loss": 1.263584213256836, + "step": 606700 + }, + { + "epoch": 80.90666666666667, + "grad_norm": 0.887713611125946, + "learning_rate": 9.5656e-06, + "loss": 1.264889907836914, + "step": 606800 + }, + { + "epoch": 80.92, + "grad_norm": 0.9247974753379822, + "learning_rate": 9.558933333333334e-06, + "loss": 1.2628305053710938, + "step": 606900 + }, + { + "epoch": 80.93333333333334, + "grad_norm": 0.9135413765907288, + "learning_rate": 9.552266666666668e-06, + "loss": 1.2610269165039063, + "step": 607000 + }, + { + "epoch": 80.94666666666667, + "grad_norm": 0.816784143447876, + "learning_rate": 9.5456e-06, + "loss": 1.264756851196289, + "step": 607100 + }, + { + "epoch": 80.96, + "grad_norm": 0.8519019484519958, + "learning_rate": 9.538933333333335e-06, + "loss": 1.2676949310302734, + "step": 607200 + }, + { + "epoch": 80.97333333333333, + "grad_norm": 0.8847300410270691, + "learning_rate": 9.532333333333334e-06, + "loss": 1.2613274383544921, + "step": 607300 + }, + { + "epoch": 80.98666666666666, + "grad_norm": 0.9292627573013306, + "learning_rate": 9.525666666666668e-06, + "loss": 1.264800796508789, + "step": 607400 + }, + { + "epoch": 81.0, + "grad_norm": 0.9245173335075378, + "learning_rate": 9.519e-06, + "loss": 1.2614967346191406, + "step": 607500 + }, + { + "epoch": 81.01333333333334, + "grad_norm": 0.8275742530822754, + "learning_rate": 9.512333333333334e-06, + "loss": 1.2391834259033203, + "step": 607600 + }, + { + "epoch": 81.02666666666667, + "grad_norm": 0.9047415256500244, + "learning_rate": 9.505666666666666e-06, + "loss": 1.2392681884765624, + "step": 607700 + }, + { + "epoch": 81.04, + "grad_norm": 0.8522070646286011, + "learning_rate": 9.499000000000002e-06, + "loss": 1.2342119598388672, + "step": 607800 + }, + { + "epoch": 81.05333333333333, + "grad_norm": 0.9225237369537354, + "learning_rate": 9.492333333333334e-06, + "loss": 1.240270004272461, + "step": 607900 + }, + { + "epoch": 81.06666666666666, + "grad_norm": 0.877410352230072, + "learning_rate": 9.485666666666668e-06, + "loss": 1.2419137573242187, + "step": 608000 + }, + { + "epoch": 81.08, + "grad_norm": 0.895682156085968, + "learning_rate": 9.479e-06, + "loss": 1.2361355590820313, + "step": 608100 + }, + { + "epoch": 81.09333333333333, + "grad_norm": 0.9138928055763245, + "learning_rate": 9.472333333333334e-06, + "loss": 1.2378245544433595, + "step": 608200 + }, + { + "epoch": 81.10666666666667, + "grad_norm": 0.8844442963600159, + "learning_rate": 9.465666666666666e-06, + "loss": 1.238951644897461, + "step": 608300 + }, + { + "epoch": 81.12, + "grad_norm": 0.9086583852767944, + "learning_rate": 9.459e-06, + "loss": 1.238919219970703, + "step": 608400 + }, + { + "epoch": 81.13333333333334, + "grad_norm": 0.9068462252616882, + "learning_rate": 9.452333333333334e-06, + "loss": 1.2433626556396484, + "step": 608500 + }, + { + "epoch": 81.14666666666666, + "grad_norm": 0.8883899450302124, + "learning_rate": 9.445666666666667e-06, + "loss": 1.2401612091064453, + "step": 608600 + }, + { + "epoch": 81.16, + "grad_norm": 0.8467079401016235, + "learning_rate": 9.439e-06, + "loss": 1.2381580352783204, + "step": 608700 + }, + { + "epoch": 81.17333333333333, + "grad_norm": 0.9207153916358948, + "learning_rate": 9.432333333333333e-06, + "loss": 1.2427813720703125, + "step": 608800 + }, + { + "epoch": 81.18666666666667, + "grad_norm": 0.912255585193634, + "learning_rate": 9.425666666666667e-06, + "loss": 1.240965805053711, + "step": 608900 + }, + { + "epoch": 81.2, + "grad_norm": 0.9188990592956543, + "learning_rate": 9.419e-06, + "loss": 1.2408465576171874, + "step": 609000 + }, + { + "epoch": 81.21333333333334, + "grad_norm": 0.9256595373153687, + "learning_rate": 9.412333333333335e-06, + "loss": 1.2405252075195312, + "step": 609100 + }, + { + "epoch": 81.22666666666667, + "grad_norm": 0.9291117787361145, + "learning_rate": 9.405666666666667e-06, + "loss": 1.245336685180664, + "step": 609200 + }, + { + "epoch": 81.24, + "grad_norm": 0.9023730158805847, + "learning_rate": 9.399066666666668e-06, + "loss": 1.247289276123047, + "step": 609300 + }, + { + "epoch": 81.25333333333333, + "grad_norm": 0.8725359439849854, + "learning_rate": 9.3924e-06, + "loss": 1.242955322265625, + "step": 609400 + }, + { + "epoch": 81.26666666666667, + "grad_norm": 0.93658846616745, + "learning_rate": 9.385733333333334e-06, + "loss": 1.2417597198486328, + "step": 609500 + }, + { + "epoch": 81.28, + "grad_norm": 0.8989132642745972, + "learning_rate": 9.379066666666666e-06, + "loss": 1.2406790924072266, + "step": 609600 + }, + { + "epoch": 81.29333333333334, + "grad_norm": 0.8773770928382874, + "learning_rate": 9.3724e-06, + "loss": 1.2456909942626953, + "step": 609700 + }, + { + "epoch": 81.30666666666667, + "grad_norm": 0.9248537421226501, + "learning_rate": 9.365733333333333e-06, + "loss": 1.2468321990966797, + "step": 609800 + }, + { + "epoch": 81.32, + "grad_norm": 0.9012039303779602, + "learning_rate": 9.359066666666668e-06, + "loss": 1.2451560974121094, + "step": 609900 + }, + { + "epoch": 81.33333333333333, + "grad_norm": 0.8763637542724609, + "learning_rate": 9.3524e-06, + "loss": 1.2435193634033204, + "step": 610000 + }, + { + "epoch": 81.34666666666666, + "grad_norm": 0.9104039669036865, + "learning_rate": 9.345733333333334e-06, + "loss": 1.2489257049560547, + "step": 610100 + }, + { + "epoch": 81.36, + "grad_norm": 0.9854726195335388, + "learning_rate": 9.339066666666667e-06, + "loss": 1.2438234710693359, + "step": 610200 + }, + { + "epoch": 81.37333333333333, + "grad_norm": 0.8832777142524719, + "learning_rate": 9.3324e-06, + "loss": 1.2450476837158204, + "step": 610300 + }, + { + "epoch": 81.38666666666667, + "grad_norm": 0.8616676926612854, + "learning_rate": 9.325733333333333e-06, + "loss": 1.24720703125, + "step": 610400 + }, + { + "epoch": 81.4, + "grad_norm": 0.8933054208755493, + "learning_rate": 9.319066666666667e-06, + "loss": 1.248559799194336, + "step": 610500 + }, + { + "epoch": 81.41333333333333, + "grad_norm": 0.9103077054023743, + "learning_rate": 9.3124e-06, + "loss": 1.2462962341308594, + "step": 610600 + }, + { + "epoch": 81.42666666666666, + "grad_norm": 0.8590754866600037, + "learning_rate": 9.305733333333335e-06, + "loss": 1.246546859741211, + "step": 610700 + }, + { + "epoch": 81.44, + "grad_norm": 0.9296621084213257, + "learning_rate": 9.299066666666667e-06, + "loss": 1.2495183563232422, + "step": 610800 + }, + { + "epoch": 81.45333333333333, + "grad_norm": 0.9122717380523682, + "learning_rate": 9.292400000000001e-06, + "loss": 1.2485328674316407, + "step": 610900 + }, + { + "epoch": 81.46666666666667, + "grad_norm": 0.894951343536377, + "learning_rate": 9.285733333333333e-06, + "loss": 1.2503672790527345, + "step": 611000 + }, + { + "epoch": 81.48, + "grad_norm": 0.8775086402893066, + "learning_rate": 9.279066666666667e-06, + "loss": 1.2496353149414063, + "step": 611100 + }, + { + "epoch": 81.49333333333334, + "grad_norm": 0.9073229432106018, + "learning_rate": 9.272400000000001e-06, + "loss": 1.2485159301757813, + "step": 611200 + }, + { + "epoch": 81.50666666666666, + "grad_norm": 0.8721373081207275, + "learning_rate": 9.2658e-06, + "loss": 1.249385452270508, + "step": 611300 + }, + { + "epoch": 81.52, + "grad_norm": 0.8617298007011414, + "learning_rate": 9.259133333333334e-06, + "loss": 1.2492945861816407, + "step": 611400 + }, + { + "epoch": 81.53333333333333, + "grad_norm": 0.9376047253608704, + "learning_rate": 9.252466666666668e-06, + "loss": 1.2484706878662108, + "step": 611500 + }, + { + "epoch": 81.54666666666667, + "grad_norm": 0.9316357970237732, + "learning_rate": 9.2458e-06, + "loss": 1.2509843444824218, + "step": 611600 + }, + { + "epoch": 81.56, + "grad_norm": 0.9092914462089539, + "learning_rate": 9.239133333333334e-06, + "loss": 1.252373046875, + "step": 611700 + }, + { + "epoch": 81.57333333333334, + "grad_norm": 0.9230238199234009, + "learning_rate": 9.232466666666667e-06, + "loss": 1.2522103881835938, + "step": 611800 + }, + { + "epoch": 81.58666666666667, + "grad_norm": 0.9527510404586792, + "learning_rate": 9.2258e-06, + "loss": 1.2519025421142578, + "step": 611900 + }, + { + "epoch": 81.6, + "grad_norm": 0.9313916563987732, + "learning_rate": 9.219133333333333e-06, + "loss": 1.2490794372558593, + "step": 612000 + }, + { + "epoch": 81.61333333333333, + "grad_norm": 0.9925395846366882, + "learning_rate": 9.212466666666667e-06, + "loss": 1.2542919921875, + "step": 612100 + }, + { + "epoch": 81.62666666666667, + "grad_norm": 0.9218894839286804, + "learning_rate": 9.205800000000001e-06, + "loss": 1.2550067138671874, + "step": 612200 + }, + { + "epoch": 81.64, + "grad_norm": 0.9411338567733765, + "learning_rate": 9.199133333333333e-06, + "loss": 1.249119644165039, + "step": 612300 + }, + { + "epoch": 81.65333333333334, + "grad_norm": 0.9338614344596863, + "learning_rate": 9.192466666666667e-06, + "loss": 1.2516092681884765, + "step": 612400 + }, + { + "epoch": 81.66666666666667, + "grad_norm": 0.984487771987915, + "learning_rate": 9.1858e-06, + "loss": 1.253871078491211, + "step": 612500 + }, + { + "epoch": 81.68, + "grad_norm": 0.8881129026412964, + "learning_rate": 9.179133333333333e-06, + "loss": 1.2527835845947266, + "step": 612600 + }, + { + "epoch": 81.69333333333333, + "grad_norm": 0.9168439507484436, + "learning_rate": 9.172466666666667e-06, + "loss": 1.2484764862060547, + "step": 612700 + }, + { + "epoch": 81.70666666666666, + "grad_norm": 0.8874577283859253, + "learning_rate": 9.165800000000001e-06, + "loss": 1.2515900421142578, + "step": 612800 + }, + { + "epoch": 81.72, + "grad_norm": 0.905847430229187, + "learning_rate": 9.159133333333334e-06, + "loss": 1.2533546447753907, + "step": 612900 + }, + { + "epoch": 81.73333333333333, + "grad_norm": 0.8582006096839905, + "learning_rate": 9.152466666666667e-06, + "loss": 1.2524093627929687, + "step": 613000 + }, + { + "epoch": 81.74666666666667, + "grad_norm": 0.9305291175842285, + "learning_rate": 9.1458e-06, + "loss": 1.2540251922607422, + "step": 613100 + }, + { + "epoch": 81.76, + "grad_norm": 0.9581021666526794, + "learning_rate": 9.139133333333334e-06, + "loss": 1.2542661285400392, + "step": 613200 + }, + { + "epoch": 81.77333333333333, + "grad_norm": 0.8602609634399414, + "learning_rate": 9.132533333333333e-06, + "loss": 1.250102767944336, + "step": 613300 + }, + { + "epoch": 81.78666666666666, + "grad_norm": 0.9307783842086792, + "learning_rate": 9.125866666666667e-06, + "loss": 1.25496826171875, + "step": 613400 + }, + { + "epoch": 81.8, + "grad_norm": 0.9519327282905579, + "learning_rate": 9.1192e-06, + "loss": 1.2568404388427734, + "step": 613500 + }, + { + "epoch": 81.81333333333333, + "grad_norm": 0.9594677090644836, + "learning_rate": 9.112533333333335e-06, + "loss": 1.2542708587646485, + "step": 613600 + }, + { + "epoch": 81.82666666666667, + "grad_norm": 0.9347852468490601, + "learning_rate": 9.105866666666667e-06, + "loss": 1.2561700439453125, + "step": 613700 + }, + { + "epoch": 81.84, + "grad_norm": 0.9031361937522888, + "learning_rate": 9.099200000000001e-06, + "loss": 1.250828399658203, + "step": 613800 + }, + { + "epoch": 81.85333333333334, + "grad_norm": 0.9028738141059875, + "learning_rate": 9.092533333333333e-06, + "loss": 1.2556254577636718, + "step": 613900 + }, + { + "epoch": 81.86666666666666, + "grad_norm": 0.8947298526763916, + "learning_rate": 9.085866666666667e-06, + "loss": 1.2577997589111327, + "step": 614000 + }, + { + "epoch": 81.88, + "grad_norm": 0.9742893576622009, + "learning_rate": 9.0792e-06, + "loss": 1.2556832122802735, + "step": 614100 + }, + { + "epoch": 81.89333333333333, + "grad_norm": 0.9164856672286987, + "learning_rate": 9.072533333333335e-06, + "loss": 1.2557017517089843, + "step": 614200 + }, + { + "epoch": 81.90666666666667, + "grad_norm": 0.915895938873291, + "learning_rate": 9.065866666666667e-06, + "loss": 1.2530562591552734, + "step": 614300 + }, + { + "epoch": 81.92, + "grad_norm": 0.8925107717514038, + "learning_rate": 9.059200000000001e-06, + "loss": 1.26068115234375, + "step": 614400 + }, + { + "epoch": 81.93333333333334, + "grad_norm": 0.8939207196235657, + "learning_rate": 9.052533333333334e-06, + "loss": 1.2526610565185547, + "step": 614500 + }, + { + "epoch": 81.94666666666667, + "grad_norm": 0.8300981521606445, + "learning_rate": 9.045866666666668e-06, + "loss": 1.2572245025634765, + "step": 614600 + }, + { + "epoch": 81.96, + "grad_norm": 0.8693681955337524, + "learning_rate": 9.0392e-06, + "loss": 1.2559279632568359, + "step": 614700 + }, + { + "epoch": 81.97333333333333, + "grad_norm": 0.8896282315254211, + "learning_rate": 9.032533333333334e-06, + "loss": 1.2625821685791017, + "step": 614800 + }, + { + "epoch": 81.98666666666666, + "grad_norm": 0.8908337354660034, + "learning_rate": 9.025866666666668e-06, + "loss": 1.2559323120117187, + "step": 614900 + }, + { + "epoch": 82.0, + "grad_norm": 0.9439942836761475, + "learning_rate": 9.0192e-06, + "loss": 1.2595707702636718, + "step": 615000 + }, + { + "epoch": 82.01333333333334, + "grad_norm": 0.9085642099380493, + "learning_rate": 9.012533333333334e-06, + "loss": 1.234801025390625, + "step": 615100 + }, + { + "epoch": 82.02666666666667, + "grad_norm": 0.86478590965271, + "learning_rate": 9.005866666666666e-06, + "loss": 1.2301112365722657, + "step": 615200 + }, + { + "epoch": 82.04, + "grad_norm": 0.8402786254882812, + "learning_rate": 8.999266666666667e-06, + "loss": 1.2340145111083984, + "step": 615300 + }, + { + "epoch": 82.05333333333333, + "grad_norm": 0.9000765681266785, + "learning_rate": 8.992600000000001e-06, + "loss": 1.234165496826172, + "step": 615400 + }, + { + "epoch": 82.06666666666666, + "grad_norm": 0.8875935673713684, + "learning_rate": 8.985933333333333e-06, + "loss": 1.2338397216796875, + "step": 615500 + }, + { + "epoch": 82.08, + "grad_norm": 0.8624498248100281, + "learning_rate": 8.979266666666667e-06, + "loss": 1.2306690216064453, + "step": 615600 + }, + { + "epoch": 82.09333333333333, + "grad_norm": 0.8691593408584595, + "learning_rate": 8.972600000000001e-06, + "loss": 1.2350591278076173, + "step": 615700 + }, + { + "epoch": 82.10666666666667, + "grad_norm": 0.9431705474853516, + "learning_rate": 8.965933333333333e-06, + "loss": 1.2306092071533203, + "step": 615800 + }, + { + "epoch": 82.12, + "grad_norm": 0.8544008135795593, + "learning_rate": 8.959266666666667e-06, + "loss": 1.2384963989257813, + "step": 615900 + }, + { + "epoch": 82.13333333333334, + "grad_norm": 0.9354866147041321, + "learning_rate": 8.9526e-06, + "loss": 1.2398062896728517, + "step": 616000 + }, + { + "epoch": 82.14666666666666, + "grad_norm": 0.8743143677711487, + "learning_rate": 8.945933333333334e-06, + "loss": 1.2414376068115234, + "step": 616100 + }, + { + "epoch": 82.16, + "grad_norm": 0.8810702562332153, + "learning_rate": 8.939266666666666e-06, + "loss": 1.2354586029052734, + "step": 616200 + }, + { + "epoch": 82.17333333333333, + "grad_norm": 0.8954576849937439, + "learning_rate": 8.932600000000002e-06, + "loss": 1.2339041137695312, + "step": 616300 + }, + { + "epoch": 82.18666666666667, + "grad_norm": 0.9300366640090942, + "learning_rate": 8.925933333333334e-06, + "loss": 1.2386576843261718, + "step": 616400 + }, + { + "epoch": 82.2, + "grad_norm": 0.9427330493927002, + "learning_rate": 8.919266666666668e-06, + "loss": 1.2405809020996095, + "step": 616500 + }, + { + "epoch": 82.21333333333334, + "grad_norm": 0.9200528264045715, + "learning_rate": 8.9126e-06, + "loss": 1.2397397613525392, + "step": 616600 + }, + { + "epoch": 82.22666666666667, + "grad_norm": 0.9477024078369141, + "learning_rate": 8.905933333333334e-06, + "loss": 1.2361534118652344, + "step": 616700 + }, + { + "epoch": 82.24, + "grad_norm": 0.860318660736084, + "learning_rate": 8.899266666666666e-06, + "loss": 1.24165771484375, + "step": 616800 + }, + { + "epoch": 82.25333333333333, + "grad_norm": 0.8930957317352295, + "learning_rate": 8.8926e-06, + "loss": 1.240411376953125, + "step": 616900 + }, + { + "epoch": 82.26666666666667, + "grad_norm": 0.8713201284408569, + "learning_rate": 8.885933333333334e-06, + "loss": 1.2389635467529296, + "step": 617000 + }, + { + "epoch": 82.28, + "grad_norm": 0.8821374773979187, + "learning_rate": 8.879266666666668e-06, + "loss": 1.240754165649414, + "step": 617100 + }, + { + "epoch": 82.29333333333334, + "grad_norm": 0.8835667967796326, + "learning_rate": 8.8726e-06, + "loss": 1.2408916473388671, + "step": 617200 + }, + { + "epoch": 82.30666666666667, + "grad_norm": 0.878227949142456, + "learning_rate": 8.866000000000001e-06, + "loss": 1.239891357421875, + "step": 617300 + }, + { + "epoch": 82.32, + "grad_norm": 0.9137305021286011, + "learning_rate": 8.859333333333333e-06, + "loss": 1.2434058380126953, + "step": 617400 + }, + { + "epoch": 82.33333333333333, + "grad_norm": 0.9233280420303345, + "learning_rate": 8.852666666666667e-06, + "loss": 1.240920867919922, + "step": 617500 + }, + { + "epoch": 82.34666666666666, + "grad_norm": 0.9034508466720581, + "learning_rate": 8.846e-06, + "loss": 1.2437106323242189, + "step": 617600 + }, + { + "epoch": 82.36, + "grad_norm": 0.9077682495117188, + "learning_rate": 8.839333333333334e-06, + "loss": 1.2439752960205077, + "step": 617700 + }, + { + "epoch": 82.37333333333333, + "grad_norm": 0.9524446725845337, + "learning_rate": 8.832666666666668e-06, + "loss": 1.2423672485351562, + "step": 617800 + }, + { + "epoch": 82.38666666666667, + "grad_norm": 0.8799779415130615, + "learning_rate": 8.826000000000002e-06, + "loss": 1.2455381011962892, + "step": 617900 + }, + { + "epoch": 82.4, + "grad_norm": 0.9285022616386414, + "learning_rate": 8.819333333333334e-06, + "loss": 1.2448921966552735, + "step": 618000 + }, + { + "epoch": 82.41333333333333, + "grad_norm": 0.9084222912788391, + "learning_rate": 8.812666666666668e-06, + "loss": 1.2376979064941407, + "step": 618100 + }, + { + "epoch": 82.42666666666666, + "grad_norm": 0.8648841381072998, + "learning_rate": 8.806e-06, + "loss": 1.2406005859375, + "step": 618200 + }, + { + "epoch": 82.44, + "grad_norm": 0.9781367778778076, + "learning_rate": 8.799333333333334e-06, + "loss": 1.243892593383789, + "step": 618300 + }, + { + "epoch": 82.45333333333333, + "grad_norm": 0.8798574805259705, + "learning_rate": 8.792666666666666e-06, + "loss": 1.2451769256591796, + "step": 618400 + }, + { + "epoch": 82.46666666666667, + "grad_norm": 0.9308679103851318, + "learning_rate": 8.786e-06, + "loss": 1.2392099761962891, + "step": 618500 + }, + { + "epoch": 82.48, + "grad_norm": 0.9308741688728333, + "learning_rate": 8.779333333333334e-06, + "loss": 1.2419159698486328, + "step": 618600 + }, + { + "epoch": 82.49333333333334, + "grad_norm": 0.9221790432929993, + "learning_rate": 8.772666666666666e-06, + "loss": 1.2452362060546875, + "step": 618700 + }, + { + "epoch": 82.50666666666666, + "grad_norm": 0.8636195063591003, + "learning_rate": 8.766e-06, + "loss": 1.2443165588378906, + "step": 618800 + }, + { + "epoch": 82.52, + "grad_norm": 0.8592165112495422, + "learning_rate": 8.759333333333333e-06, + "loss": 1.2440619659423828, + "step": 618900 + }, + { + "epoch": 82.53333333333333, + "grad_norm": 0.9434940814971924, + "learning_rate": 8.752666666666667e-06, + "loss": 1.2442166900634766, + "step": 619000 + }, + { + "epoch": 82.54666666666667, + "grad_norm": 0.9361331462860107, + "learning_rate": 8.746e-06, + "loss": 1.247313461303711, + "step": 619100 + }, + { + "epoch": 82.56, + "grad_norm": 0.9202352166175842, + "learning_rate": 8.739333333333335e-06, + "loss": 1.240821304321289, + "step": 619200 + }, + { + "epoch": 82.57333333333334, + "grad_norm": 0.9500649571418762, + "learning_rate": 8.732733333333334e-06, + "loss": 1.2460474395751953, + "step": 619300 + }, + { + "epoch": 82.58666666666667, + "grad_norm": 0.9258289933204651, + "learning_rate": 8.726066666666668e-06, + "loss": 1.2472043609619141, + "step": 619400 + }, + { + "epoch": 82.6, + "grad_norm": 0.9140313267707825, + "learning_rate": 8.7194e-06, + "loss": 1.2448184204101562, + "step": 619500 + }, + { + "epoch": 82.61333333333333, + "grad_norm": 0.9324513077735901, + "learning_rate": 8.712733333333334e-06, + "loss": 1.2494194030761718, + "step": 619600 + }, + { + "epoch": 82.62666666666667, + "grad_norm": 0.9109006524085999, + "learning_rate": 8.706066666666666e-06, + "loss": 1.247740707397461, + "step": 619700 + }, + { + "epoch": 82.64, + "grad_norm": 0.9407756328582764, + "learning_rate": 8.6994e-06, + "loss": 1.2482675170898438, + "step": 619800 + }, + { + "epoch": 82.65333333333334, + "grad_norm": 0.9115416407585144, + "learning_rate": 8.692733333333334e-06, + "loss": 1.2482878112792968, + "step": 619900 + }, + { + "epoch": 82.66666666666667, + "grad_norm": 0.9408479928970337, + "learning_rate": 8.686066666666668e-06, + "loss": 1.2521448516845703, + "step": 620000 + }, + { + "epoch": 82.68, + "grad_norm": 0.8845256567001343, + "learning_rate": 8.6794e-06, + "loss": 1.2493247985839844, + "step": 620100 + }, + { + "epoch": 82.69333333333333, + "grad_norm": 0.8882789015769958, + "learning_rate": 8.672733333333334e-06, + "loss": 1.2499993896484376, + "step": 620200 + }, + { + "epoch": 82.70666666666666, + "grad_norm": 0.8768792152404785, + "learning_rate": 8.666066666666667e-06, + "loss": 1.2518183135986327, + "step": 620300 + }, + { + "epoch": 82.72, + "grad_norm": 0.9239054322242737, + "learning_rate": 8.6594e-06, + "loss": 1.2470800018310546, + "step": 620400 + }, + { + "epoch": 82.73333333333333, + "grad_norm": 0.9029996991157532, + "learning_rate": 8.652733333333333e-06, + "loss": 1.250694808959961, + "step": 620500 + }, + { + "epoch": 82.74666666666667, + "grad_norm": 0.8475874662399292, + "learning_rate": 8.646066666666668e-06, + "loss": 1.2475482940673828, + "step": 620600 + }, + { + "epoch": 82.76, + "grad_norm": 0.9280046820640564, + "learning_rate": 8.6394e-06, + "loss": 1.247471923828125, + "step": 620700 + }, + { + "epoch": 82.77333333333333, + "grad_norm": 0.8895213603973389, + "learning_rate": 8.632733333333335e-06, + "loss": 1.249181594848633, + "step": 620800 + }, + { + "epoch": 82.78666666666666, + "grad_norm": 0.9662532806396484, + "learning_rate": 8.626066666666667e-06, + "loss": 1.2477493286132812, + "step": 620900 + }, + { + "epoch": 82.8, + "grad_norm": 0.9350543022155762, + "learning_rate": 8.619400000000001e-06, + "loss": 1.2516327667236329, + "step": 621000 + }, + { + "epoch": 82.81333333333333, + "grad_norm": 0.9173975586891174, + "learning_rate": 8.612733333333333e-06, + "loss": 1.2521589660644532, + "step": 621100 + }, + { + "epoch": 82.82666666666667, + "grad_norm": 0.9485138654708862, + "learning_rate": 8.606066666666667e-06, + "loss": 1.2502504730224608, + "step": 621200 + }, + { + "epoch": 82.84, + "grad_norm": 0.9641520977020264, + "learning_rate": 8.599466666666666e-06, + "loss": 1.2493783569335937, + "step": 621300 + }, + { + "epoch": 82.85333333333334, + "grad_norm": 0.9128257036209106, + "learning_rate": 8.5928e-06, + "loss": 1.2476416778564454, + "step": 621400 + }, + { + "epoch": 82.86666666666666, + "grad_norm": 0.926476001739502, + "learning_rate": 8.586133333333334e-06, + "loss": 1.2498722076416016, + "step": 621500 + }, + { + "epoch": 82.88, + "grad_norm": 0.8476603031158447, + "learning_rate": 8.579466666666668e-06, + "loss": 1.2490251922607423, + "step": 621600 + }, + { + "epoch": 82.89333333333333, + "grad_norm": 0.9261386394500732, + "learning_rate": 8.5728e-06, + "loss": 1.2508720397949218, + "step": 621700 + }, + { + "epoch": 82.90666666666667, + "grad_norm": 0.9281954765319824, + "learning_rate": 8.566133333333334e-06, + "loss": 1.2504344177246094, + "step": 621800 + }, + { + "epoch": 82.92, + "grad_norm": 0.9179771542549133, + "learning_rate": 8.559466666666667e-06, + "loss": 1.2538750457763672, + "step": 621900 + }, + { + "epoch": 82.93333333333334, + "grad_norm": 0.931770920753479, + "learning_rate": 8.5528e-06, + "loss": 1.251114959716797, + "step": 622000 + }, + { + "epoch": 82.94666666666667, + "grad_norm": 0.9326673150062561, + "learning_rate": 8.546133333333334e-06, + "loss": 1.2516678619384765, + "step": 622100 + }, + { + "epoch": 82.96, + "grad_norm": 0.9263719320297241, + "learning_rate": 8.539466666666667e-06, + "loss": 1.2495791625976562, + "step": 622200 + }, + { + "epoch": 82.97333333333333, + "grad_norm": 0.902750551700592, + "learning_rate": 8.5328e-06, + "loss": 1.2547737884521484, + "step": 622300 + }, + { + "epoch": 82.98666666666666, + "grad_norm": 0.9616686105728149, + "learning_rate": 8.526133333333333e-06, + "loss": 1.2510566711425781, + "step": 622400 + }, + { + "epoch": 83.0, + "grad_norm": 0.9818671941757202, + "learning_rate": 8.519466666666667e-06, + "loss": 1.255392837524414, + "step": 622500 + }, + { + "epoch": 83.01333333333334, + "grad_norm": 0.8741009831428528, + "learning_rate": 8.5128e-06, + "loss": 1.2268238830566407, + "step": 622600 + }, + { + "epoch": 83.02666666666667, + "grad_norm": 0.8773664236068726, + "learning_rate": 8.506133333333333e-06, + "loss": 1.2288787078857422, + "step": 622700 + }, + { + "epoch": 83.04, + "grad_norm": 0.896050214767456, + "learning_rate": 8.499466666666667e-06, + "loss": 1.2286920166015625, + "step": 622800 + }, + { + "epoch": 83.05333333333333, + "grad_norm": 0.8688726425170898, + "learning_rate": 8.492800000000001e-06, + "loss": 1.2317049407958984, + "step": 622900 + }, + { + "epoch": 83.06666666666666, + "grad_norm": 0.8627607226371765, + "learning_rate": 8.486133333333333e-06, + "loss": 1.2319934844970704, + "step": 623000 + }, + { + "epoch": 83.08, + "grad_norm": 0.9010234475135803, + "learning_rate": 8.479466666666667e-06, + "loss": 1.227967758178711, + "step": 623100 + }, + { + "epoch": 83.09333333333333, + "grad_norm": 0.9134891629219055, + "learning_rate": 8.4728e-06, + "loss": 1.2302108001708985, + "step": 623200 + }, + { + "epoch": 83.10666666666667, + "grad_norm": 0.8885038495063782, + "learning_rate": 8.466133333333334e-06, + "loss": 1.2306111145019532, + "step": 623300 + }, + { + "epoch": 83.12, + "grad_norm": 0.8855066299438477, + "learning_rate": 8.459533333333333e-06, + "loss": 1.2339430236816407, + "step": 623400 + }, + { + "epoch": 83.13333333333334, + "grad_norm": 0.8828930258750916, + "learning_rate": 8.452866666666667e-06, + "loss": 1.2353226470947265, + "step": 623500 + }, + { + "epoch": 83.14666666666666, + "grad_norm": 0.875651478767395, + "learning_rate": 8.4462e-06, + "loss": 1.2287565612792968, + "step": 623600 + }, + { + "epoch": 83.16, + "grad_norm": 0.8633849024772644, + "learning_rate": 8.439533333333335e-06, + "loss": 1.2340455627441407, + "step": 623700 + }, + { + "epoch": 83.17333333333333, + "grad_norm": 0.8406652212142944, + "learning_rate": 8.432866666666667e-06, + "loss": 1.2317752838134766, + "step": 623800 + }, + { + "epoch": 83.18666666666667, + "grad_norm": 0.8680077791213989, + "learning_rate": 8.4262e-06, + "loss": 1.2286119079589843, + "step": 623900 + }, + { + "epoch": 83.2, + "grad_norm": 0.8827568888664246, + "learning_rate": 8.419533333333333e-06, + "loss": 1.2330582427978516, + "step": 624000 + }, + { + "epoch": 83.21333333333334, + "grad_norm": 0.8410494923591614, + "learning_rate": 8.412866666666667e-06, + "loss": 1.2319648742675782, + "step": 624100 + }, + { + "epoch": 83.22666666666667, + "grad_norm": 0.945569634437561, + "learning_rate": 8.406200000000001e-06, + "loss": 1.2348339080810546, + "step": 624200 + }, + { + "epoch": 83.24, + "grad_norm": 0.9145014882087708, + "learning_rate": 8.399533333333335e-06, + "loss": 1.2309622192382812, + "step": 624300 + }, + { + "epoch": 83.25333333333333, + "grad_norm": 0.8928866982460022, + "learning_rate": 8.392866666666667e-06, + "loss": 1.2331744384765626, + "step": 624400 + }, + { + "epoch": 83.26666666666667, + "grad_norm": 0.9226345419883728, + "learning_rate": 8.386200000000001e-06, + "loss": 1.2304218292236329, + "step": 624500 + }, + { + "epoch": 83.28, + "grad_norm": 0.9208539128303528, + "learning_rate": 8.379533333333333e-06, + "loss": 1.2353579711914062, + "step": 624600 + }, + { + "epoch": 83.29333333333334, + "grad_norm": 0.8835161328315735, + "learning_rate": 8.372866666666667e-06, + "loss": 1.2308840942382813, + "step": 624700 + }, + { + "epoch": 83.30666666666667, + "grad_norm": 0.9109699130058289, + "learning_rate": 8.3662e-06, + "loss": 1.2373240661621094, + "step": 624800 + }, + { + "epoch": 83.32, + "grad_norm": 0.8914778232574463, + "learning_rate": 8.359533333333334e-06, + "loss": 1.2385607147216797, + "step": 624900 + }, + { + "epoch": 83.33333333333333, + "grad_norm": 0.9099097847938538, + "learning_rate": 8.352866666666668e-06, + "loss": 1.2351886749267578, + "step": 625000 + }, + { + "epoch": 83.34666666666666, + "grad_norm": 0.9224347472190857, + "learning_rate": 8.3462e-06, + "loss": 1.239847412109375, + "step": 625100 + }, + { + "epoch": 83.36, + "grad_norm": 0.8941978216171265, + "learning_rate": 8.339533333333334e-06, + "loss": 1.2408080291748047, + "step": 625200 + }, + { + "epoch": 83.37333333333333, + "grad_norm": 0.9112878441810608, + "learning_rate": 8.332866666666666e-06, + "loss": 1.2382213592529296, + "step": 625300 + }, + { + "epoch": 83.38666666666667, + "grad_norm": 0.8820027112960815, + "learning_rate": 8.326266666666667e-06, + "loss": 1.2374537658691407, + "step": 625400 + }, + { + "epoch": 83.4, + "grad_norm": 0.9008810520172119, + "learning_rate": 8.3196e-06, + "loss": 1.2357157897949218, + "step": 625500 + }, + { + "epoch": 83.41333333333333, + "grad_norm": 0.8950514793395996, + "learning_rate": 8.312933333333333e-06, + "loss": 1.2395166778564453, + "step": 625600 + }, + { + "epoch": 83.42666666666666, + "grad_norm": 0.877662718296051, + "learning_rate": 8.306266666666667e-06, + "loss": 1.2368050384521485, + "step": 625700 + }, + { + "epoch": 83.44, + "grad_norm": 0.8988947868347168, + "learning_rate": 8.299600000000001e-06, + "loss": 1.2367508697509766, + "step": 625800 + }, + { + "epoch": 83.45333333333333, + "grad_norm": 0.8748953342437744, + "learning_rate": 8.292933333333333e-06, + "loss": 1.2388724517822265, + "step": 625900 + }, + { + "epoch": 83.46666666666667, + "grad_norm": 0.937595009803772, + "learning_rate": 8.286266666666667e-06, + "loss": 1.2392095947265624, + "step": 626000 + }, + { + "epoch": 83.48, + "grad_norm": 0.9471210241317749, + "learning_rate": 8.2796e-06, + "loss": 1.236856460571289, + "step": 626100 + }, + { + "epoch": 83.49333333333334, + "grad_norm": 0.8821884393692017, + "learning_rate": 8.272933333333333e-06, + "loss": 1.239179916381836, + "step": 626200 + }, + { + "epoch": 83.50666666666666, + "grad_norm": 0.919651210308075, + "learning_rate": 8.266266666666667e-06, + "loss": 1.2402806854248047, + "step": 626300 + }, + { + "epoch": 83.52, + "grad_norm": 0.9665860533714294, + "learning_rate": 8.259600000000001e-06, + "loss": 1.2379183197021484, + "step": 626400 + }, + { + "epoch": 83.53333333333333, + "grad_norm": 0.8893381357192993, + "learning_rate": 8.252933333333334e-06, + "loss": 1.2422509765625, + "step": 626500 + }, + { + "epoch": 83.54666666666667, + "grad_norm": 0.9082131385803223, + "learning_rate": 8.246266666666668e-06, + "loss": 1.2425847625732422, + "step": 626600 + }, + { + "epoch": 83.56, + "grad_norm": 0.9207640290260315, + "learning_rate": 8.2396e-06, + "loss": 1.2419153594970702, + "step": 626700 + }, + { + "epoch": 83.57333333333334, + "grad_norm": 0.8709291219711304, + "learning_rate": 8.232933333333334e-06, + "loss": 1.2439161682128905, + "step": 626800 + }, + { + "epoch": 83.58666666666667, + "grad_norm": 0.945469856262207, + "learning_rate": 8.226266666666666e-06, + "loss": 1.2438876342773437, + "step": 626900 + }, + { + "epoch": 83.6, + "grad_norm": 0.8752225041389465, + "learning_rate": 8.219600000000002e-06, + "loss": 1.2426612854003907, + "step": 627000 + }, + { + "epoch": 83.61333333333333, + "grad_norm": 0.9232311844825745, + "learning_rate": 8.212933333333334e-06, + "loss": 1.2439415740966797, + "step": 627100 + }, + { + "epoch": 83.62666666666667, + "grad_norm": 0.9110270142555237, + "learning_rate": 8.206266666666668e-06, + "loss": 1.2405470275878907, + "step": 627200 + }, + { + "epoch": 83.64, + "grad_norm": 0.8702139854431152, + "learning_rate": 8.1996e-06, + "loss": 1.2478545379638672, + "step": 627300 + }, + { + "epoch": 83.65333333333334, + "grad_norm": 0.9222458004951477, + "learning_rate": 8.193000000000001e-06, + "loss": 1.2415824127197266, + "step": 627400 + }, + { + "epoch": 83.66666666666667, + "grad_norm": 0.8984431624412537, + "learning_rate": 8.186333333333333e-06, + "loss": 1.2407730102539063, + "step": 627500 + }, + { + "epoch": 83.68, + "grad_norm": 0.9315071702003479, + "learning_rate": 8.179666666666667e-06, + "loss": 1.240757598876953, + "step": 627600 + }, + { + "epoch": 83.69333333333333, + "grad_norm": 0.8998625874519348, + "learning_rate": 8.173e-06, + "loss": 1.2405057525634766, + "step": 627700 + }, + { + "epoch": 83.70666666666666, + "grad_norm": 0.9560902714729309, + "learning_rate": 8.166333333333333e-06, + "loss": 1.2425275421142579, + "step": 627800 + }, + { + "epoch": 83.72, + "grad_norm": 0.9313591718673706, + "learning_rate": 8.159666666666667e-06, + "loss": 1.2417723083496093, + "step": 627900 + }, + { + "epoch": 83.73333333333333, + "grad_norm": 0.8887977600097656, + "learning_rate": 8.153000000000001e-06, + "loss": 1.2461432647705077, + "step": 628000 + }, + { + "epoch": 83.74666666666667, + "grad_norm": 0.8665767908096313, + "learning_rate": 8.146333333333334e-06, + "loss": 1.2395530700683595, + "step": 628100 + }, + { + "epoch": 83.76, + "grad_norm": 0.8512284755706787, + "learning_rate": 8.139666666666668e-06, + "loss": 1.2442801666259766, + "step": 628200 + }, + { + "epoch": 83.77333333333333, + "grad_norm": 0.9400811791419983, + "learning_rate": 8.133e-06, + "loss": 1.244218521118164, + "step": 628300 + }, + { + "epoch": 83.78666666666666, + "grad_norm": 0.9075484275817871, + "learning_rate": 8.126333333333334e-06, + "loss": 1.245132827758789, + "step": 628400 + }, + { + "epoch": 83.8, + "grad_norm": 0.9220568537712097, + "learning_rate": 8.119666666666668e-06, + "loss": 1.2457878875732422, + "step": 628500 + }, + { + "epoch": 83.81333333333333, + "grad_norm": 0.8934618830680847, + "learning_rate": 8.113e-06, + "loss": 1.2488687896728516, + "step": 628600 + }, + { + "epoch": 83.82666666666667, + "grad_norm": 0.9469342231750488, + "learning_rate": 8.106333333333334e-06, + "loss": 1.2456256103515626, + "step": 628700 + }, + { + "epoch": 83.84, + "grad_norm": 0.8682982921600342, + "learning_rate": 8.099666666666666e-06, + "loss": 1.2437528991699218, + "step": 628800 + }, + { + "epoch": 83.85333333333334, + "grad_norm": 0.9430522918701172, + "learning_rate": 8.093e-06, + "loss": 1.2466936492919922, + "step": 628900 + }, + { + "epoch": 83.86666666666666, + "grad_norm": 0.9409758448600769, + "learning_rate": 8.086333333333333e-06, + "loss": 1.244860610961914, + "step": 629000 + }, + { + "epoch": 83.88, + "grad_norm": 0.958746612071991, + "learning_rate": 8.079666666666667e-06, + "loss": 1.246984634399414, + "step": 629100 + }, + { + "epoch": 83.89333333333333, + "grad_norm": 0.8642282485961914, + "learning_rate": 8.073e-06, + "loss": 1.2486931610107421, + "step": 629200 + }, + { + "epoch": 83.90666666666667, + "grad_norm": 0.9085518717765808, + "learning_rate": 8.066333333333334e-06, + "loss": 1.2516922760009765, + "step": 629300 + }, + { + "epoch": 83.92, + "grad_norm": 0.8967764973640442, + "learning_rate": 8.059733333333335e-06, + "loss": 1.2464397430419922, + "step": 629400 + }, + { + "epoch": 83.93333333333334, + "grad_norm": 0.9250491261482239, + "learning_rate": 8.053066666666667e-06, + "loss": 1.2472023010253905, + "step": 629500 + }, + { + "epoch": 83.94666666666667, + "grad_norm": 0.893845796585083, + "learning_rate": 8.0464e-06, + "loss": 1.2489615631103517, + "step": 629600 + }, + { + "epoch": 83.96, + "grad_norm": 0.907304048538208, + "learning_rate": 8.039733333333334e-06, + "loss": 1.2466935729980468, + "step": 629700 + }, + { + "epoch": 83.97333333333333, + "grad_norm": 0.8819485902786255, + "learning_rate": 8.033066666666666e-06, + "loss": 1.244398651123047, + "step": 629800 + }, + { + "epoch": 83.98666666666666, + "grad_norm": 0.9273881912231445, + "learning_rate": 8.0264e-06, + "loss": 1.2486519622802734, + "step": 629900 + }, + { + "epoch": 84.0, + "grad_norm": 0.879425585269928, + "learning_rate": 8.019733333333334e-06, + "loss": 1.2535282897949218, + "step": 630000 + }, + { + "epoch": 84.01333333333334, + "grad_norm": 0.8982846140861511, + "learning_rate": 8.013066666666668e-06, + "loss": 1.2259478759765625, + "step": 630100 + }, + { + "epoch": 84.02666666666667, + "grad_norm": 0.9428343176841736, + "learning_rate": 8.0064e-06, + "loss": 1.228878936767578, + "step": 630200 + }, + { + "epoch": 84.04, + "grad_norm": 0.9072933197021484, + "learning_rate": 7.999733333333334e-06, + "loss": 1.223412399291992, + "step": 630300 + }, + { + "epoch": 84.05333333333333, + "grad_norm": 0.9243832230567932, + "learning_rate": 7.993066666666666e-06, + "loss": 1.224007797241211, + "step": 630400 + }, + { + "epoch": 84.06666666666666, + "grad_norm": 0.8180492520332336, + "learning_rate": 7.9864e-06, + "loss": 1.2259696960449218, + "step": 630500 + }, + { + "epoch": 84.08, + "grad_norm": 0.888479471206665, + "learning_rate": 7.979733333333334e-06, + "loss": 1.2236656951904297, + "step": 630600 + }, + { + "epoch": 84.09333333333333, + "grad_norm": 0.9106174111366272, + "learning_rate": 7.973066666666668e-06, + "loss": 1.2281214904785156, + "step": 630700 + }, + { + "epoch": 84.10666666666667, + "grad_norm": 0.9094051122665405, + "learning_rate": 7.9664e-06, + "loss": 1.2281082916259765, + "step": 630800 + }, + { + "epoch": 84.12, + "grad_norm": 0.9189176559448242, + "learning_rate": 7.959733333333334e-06, + "loss": 1.2266500091552734, + "step": 630900 + }, + { + "epoch": 84.13333333333334, + "grad_norm": 0.8246629238128662, + "learning_rate": 7.953066666666667e-06, + "loss": 1.2251168823242187, + "step": 631000 + }, + { + "epoch": 84.14666666666666, + "grad_norm": 0.826525866985321, + "learning_rate": 7.9464e-06, + "loss": 1.2267461395263672, + "step": 631100 + }, + { + "epoch": 84.16, + "grad_norm": 0.9305570721626282, + "learning_rate": 7.939733333333333e-06, + "loss": 1.2317483520507813, + "step": 631200 + }, + { + "epoch": 84.17333333333333, + "grad_norm": 0.877616822719574, + "learning_rate": 7.933066666666667e-06, + "loss": 1.2281706237792969, + "step": 631300 + }, + { + "epoch": 84.18666666666667, + "grad_norm": 0.9188335537910461, + "learning_rate": 7.926466666666666e-06, + "loss": 1.2292250061035157, + "step": 631400 + }, + { + "epoch": 84.2, + "grad_norm": 0.9196408987045288, + "learning_rate": 7.919800000000002e-06, + "loss": 1.2331906127929688, + "step": 631500 + }, + { + "epoch": 84.21333333333334, + "grad_norm": 0.9125308990478516, + "learning_rate": 7.913133333333334e-06, + "loss": 1.2301849365234374, + "step": 631600 + }, + { + "epoch": 84.22666666666667, + "grad_norm": 0.8713774681091309, + "learning_rate": 7.906466666666668e-06, + "loss": 1.230985107421875, + "step": 631700 + }, + { + "epoch": 84.24, + "grad_norm": 0.9613950848579407, + "learning_rate": 7.8998e-06, + "loss": 1.2276271057128907, + "step": 631800 + }, + { + "epoch": 84.25333333333333, + "grad_norm": 0.8837341666221619, + "learning_rate": 7.893133333333334e-06, + "loss": 1.2295457458496093, + "step": 631900 + }, + { + "epoch": 84.26666666666667, + "grad_norm": 0.8872280120849609, + "learning_rate": 7.886466666666666e-06, + "loss": 1.2273683166503906, + "step": 632000 + }, + { + "epoch": 84.28, + "grad_norm": 0.8547608852386475, + "learning_rate": 7.8798e-06, + "loss": 1.2305823516845704, + "step": 632100 + }, + { + "epoch": 84.29333333333334, + "grad_norm": 0.9107147455215454, + "learning_rate": 7.873133333333334e-06, + "loss": 1.2315924072265625, + "step": 632200 + }, + { + "epoch": 84.30666666666667, + "grad_norm": 0.8627474904060364, + "learning_rate": 7.866466666666667e-06, + "loss": 1.230730972290039, + "step": 632300 + }, + { + "epoch": 84.32, + "grad_norm": 0.9304380416870117, + "learning_rate": 7.8598e-06, + "loss": 1.2302085876464843, + "step": 632400 + }, + { + "epoch": 84.33333333333333, + "grad_norm": 0.8998819589614868, + "learning_rate": 7.853133333333333e-06, + "loss": 1.2364775085449218, + "step": 632500 + }, + { + "epoch": 84.34666666666666, + "grad_norm": 0.8804898858070374, + "learning_rate": 7.846466666666667e-06, + "loss": 1.2302351379394532, + "step": 632600 + }, + { + "epoch": 84.36, + "grad_norm": 0.8894650936126709, + "learning_rate": 7.8398e-06, + "loss": 1.2332183074951173, + "step": 632700 + }, + { + "epoch": 84.37333333333333, + "grad_norm": 0.8644715547561646, + "learning_rate": 7.833133333333335e-06, + "loss": 1.2344248962402344, + "step": 632800 + }, + { + "epoch": 84.38666666666667, + "grad_norm": 0.9465084671974182, + "learning_rate": 7.826466666666667e-06, + "loss": 1.2316624450683593, + "step": 632900 + }, + { + "epoch": 84.4, + "grad_norm": 0.9370139241218567, + "learning_rate": 7.819800000000001e-06, + "loss": 1.2370130157470702, + "step": 633000 + }, + { + "epoch": 84.41333333333333, + "grad_norm": 0.888559877872467, + "learning_rate": 7.813133333333333e-06, + "loss": 1.2325920867919922, + "step": 633100 + }, + { + "epoch": 84.42666666666666, + "grad_norm": 0.8683785200119019, + "learning_rate": 7.806466666666667e-06, + "loss": 1.229187240600586, + "step": 633200 + }, + { + "epoch": 84.44, + "grad_norm": 0.9215974807739258, + "learning_rate": 7.7998e-06, + "loss": 1.2338642120361327, + "step": 633300 + }, + { + "epoch": 84.45333333333333, + "grad_norm": 0.9330242276191711, + "learning_rate": 7.7932e-06, + "loss": 1.234636001586914, + "step": 633400 + }, + { + "epoch": 84.46666666666667, + "grad_norm": 0.8812191486358643, + "learning_rate": 7.786533333333332e-06, + "loss": 1.233119659423828, + "step": 633500 + }, + { + "epoch": 84.48, + "grad_norm": 0.9350599646568298, + "learning_rate": 7.779866666666666e-06, + "loss": 1.2376564788818358, + "step": 633600 + }, + { + "epoch": 84.49333333333334, + "grad_norm": 0.8722426295280457, + "learning_rate": 7.7732e-06, + "loss": 1.2354527282714844, + "step": 633700 + }, + { + "epoch": 84.50666666666666, + "grad_norm": 0.9167805910110474, + "learning_rate": 7.766533333333334e-06, + "loss": 1.2361752319335937, + "step": 633800 + }, + { + "epoch": 84.52, + "grad_norm": 0.908461332321167, + "learning_rate": 7.759866666666667e-06, + "loss": 1.232997589111328, + "step": 633900 + }, + { + "epoch": 84.53333333333333, + "grad_norm": 0.9203801155090332, + "learning_rate": 7.7532e-06, + "loss": 1.2356761169433594, + "step": 634000 + }, + { + "epoch": 84.54666666666667, + "grad_norm": 0.8989818692207336, + "learning_rate": 7.746533333333333e-06, + "loss": 1.2334909057617187, + "step": 634100 + }, + { + "epoch": 84.56, + "grad_norm": 0.9835088849067688, + "learning_rate": 7.739866666666667e-06, + "loss": 1.2388640594482423, + "step": 634200 + }, + { + "epoch": 84.57333333333334, + "grad_norm": 0.8754939436912537, + "learning_rate": 7.7332e-06, + "loss": 1.241256866455078, + "step": 634300 + }, + { + "epoch": 84.58666666666667, + "grad_norm": 0.8577386736869812, + "learning_rate": 7.726533333333335e-06, + "loss": 1.2348951721191406, + "step": 634400 + }, + { + "epoch": 84.6, + "grad_norm": 0.8799518346786499, + "learning_rate": 7.719866666666667e-06, + "loss": 1.2372528839111328, + "step": 634500 + }, + { + "epoch": 84.61333333333333, + "grad_norm": 0.9047410488128662, + "learning_rate": 7.713200000000001e-06, + "loss": 1.2386643981933594, + "step": 634600 + }, + { + "epoch": 84.62666666666667, + "grad_norm": 0.9157127141952515, + "learning_rate": 7.706533333333333e-06, + "loss": 1.2385972595214845, + "step": 634700 + }, + { + "epoch": 84.64, + "grad_norm": 0.9638254046440125, + "learning_rate": 7.699866666666667e-06, + "loss": 1.236525115966797, + "step": 634800 + }, + { + "epoch": 84.65333333333334, + "grad_norm": 0.8745006322860718, + "learning_rate": 7.693200000000001e-06, + "loss": 1.237788314819336, + "step": 634900 + }, + { + "epoch": 84.66666666666667, + "grad_norm": 0.8753082752227783, + "learning_rate": 7.686533333333333e-06, + "loss": 1.2403019714355468, + "step": 635000 + }, + { + "epoch": 84.68, + "grad_norm": 0.9249312877655029, + "learning_rate": 7.679866666666667e-06, + "loss": 1.2393556976318358, + "step": 635100 + }, + { + "epoch": 84.69333333333333, + "grad_norm": 0.9037955403327942, + "learning_rate": 7.6732e-06, + "loss": 1.240056838989258, + "step": 635200 + }, + { + "epoch": 84.70666666666666, + "grad_norm": 0.8841052651405334, + "learning_rate": 7.666533333333334e-06, + "loss": 1.2407506561279298, + "step": 635300 + }, + { + "epoch": 84.72, + "grad_norm": 0.8909189701080322, + "learning_rate": 7.659933333333334e-06, + "loss": 1.2383670806884766, + "step": 635400 + }, + { + "epoch": 84.73333333333333, + "grad_norm": 0.827193021774292, + "learning_rate": 7.653266666666667e-06, + "loss": 1.2386473083496095, + "step": 635500 + }, + { + "epoch": 84.74666666666667, + "grad_norm": 0.8958622813224792, + "learning_rate": 7.6466e-06, + "loss": 1.2380664825439454, + "step": 635600 + }, + { + "epoch": 84.76, + "grad_norm": 0.9114907383918762, + "learning_rate": 7.639933333333333e-06, + "loss": 1.240849151611328, + "step": 635700 + }, + { + "epoch": 84.77333333333333, + "grad_norm": 0.907952070236206, + "learning_rate": 7.633266666666667e-06, + "loss": 1.2389560699462892, + "step": 635800 + }, + { + "epoch": 84.78666666666666, + "grad_norm": 0.8953930735588074, + "learning_rate": 7.626600000000001e-06, + "loss": 1.2392295074462891, + "step": 635900 + }, + { + "epoch": 84.8, + "grad_norm": 0.8722439408302307, + "learning_rate": 7.619933333333333e-06, + "loss": 1.2366736602783204, + "step": 636000 + }, + { + "epoch": 84.81333333333333, + "grad_norm": 0.9456676244735718, + "learning_rate": 7.613266666666667e-06, + "loss": 1.237574005126953, + "step": 636100 + }, + { + "epoch": 84.82666666666667, + "grad_norm": 0.919913113117218, + "learning_rate": 7.6066e-06, + "loss": 1.2442679595947266, + "step": 636200 + }, + { + "epoch": 84.84, + "grad_norm": 0.9416049718856812, + "learning_rate": 7.599933333333334e-06, + "loss": 1.243212890625, + "step": 636300 + }, + { + "epoch": 84.85333333333334, + "grad_norm": 0.9268980026245117, + "learning_rate": 7.593266666666666e-06, + "loss": 1.2382852172851562, + "step": 636400 + }, + { + "epoch": 84.86666666666666, + "grad_norm": 0.8669841885566711, + "learning_rate": 7.5866e-06, + "loss": 1.240669708251953, + "step": 636500 + }, + { + "epoch": 84.88, + "grad_norm": 0.9298033714294434, + "learning_rate": 7.5799333333333335e-06, + "loss": 1.2412749481201173, + "step": 636600 + }, + { + "epoch": 84.89333333333333, + "grad_norm": 0.962435245513916, + "learning_rate": 7.573266666666667e-06, + "loss": 1.2403402709960938, + "step": 636700 + }, + { + "epoch": 84.90666666666667, + "grad_norm": 0.8809468150138855, + "learning_rate": 7.5666e-06, + "loss": 1.240942153930664, + "step": 636800 + }, + { + "epoch": 84.92, + "grad_norm": 0.8820023536682129, + "learning_rate": 7.5599333333333345e-06, + "loss": 1.2404846954345703, + "step": 636900 + }, + { + "epoch": 84.93333333333334, + "grad_norm": 0.9361487030982971, + "learning_rate": 7.553266666666667e-06, + "loss": 1.246995849609375, + "step": 637000 + }, + { + "epoch": 84.94666666666667, + "grad_norm": 0.8973338603973389, + "learning_rate": 7.546600000000001e-06, + "loss": 1.242446517944336, + "step": 637100 + }, + { + "epoch": 84.96, + "grad_norm": 0.9044018387794495, + "learning_rate": 7.539933333333334e-06, + "loss": 1.2397714233398438, + "step": 637200 + }, + { + "epoch": 84.97333333333333, + "grad_norm": 0.9448003768920898, + "learning_rate": 7.533266666666668e-06, + "loss": 1.239171905517578, + "step": 637300 + }, + { + "epoch": 84.98666666666666, + "grad_norm": 0.9056717753410339, + "learning_rate": 7.526666666666667e-06, + "loss": 1.2440061950683594, + "step": 637400 + }, + { + "epoch": 85.0, + "grad_norm": 0.9282798171043396, + "learning_rate": 7.520000000000001e-06, + "loss": 1.2430106353759767, + "step": 637500 + }, + { + "epoch": 85.01333333333334, + "grad_norm": 0.8406403660774231, + "learning_rate": 7.513333333333333e-06, + "loss": 1.2223043823242188, + "step": 637600 + }, + { + "epoch": 85.02666666666667, + "grad_norm": 0.8572675585746765, + "learning_rate": 7.506666666666667e-06, + "loss": 1.2273347473144531, + "step": 637700 + }, + { + "epoch": 85.04, + "grad_norm": 0.887302815914154, + "learning_rate": 7.5e-06, + "loss": 1.221242446899414, + "step": 637800 + }, + { + "epoch": 85.05333333333333, + "grad_norm": 0.91096431016922, + "learning_rate": 7.493333333333334e-06, + "loss": 1.2202544403076172, + "step": 637900 + }, + { + "epoch": 85.06666666666666, + "grad_norm": 0.8980180621147156, + "learning_rate": 7.486666666666666e-06, + "loss": 1.2262554931640626, + "step": 638000 + }, + { + "epoch": 85.08, + "grad_norm": 0.9790130257606506, + "learning_rate": 7.480000000000001e-06, + "loss": 1.2260646057128906, + "step": 638100 + }, + { + "epoch": 85.09333333333333, + "grad_norm": 0.9041993021965027, + "learning_rate": 7.4733333333333335e-06, + "loss": 1.2228318023681641, + "step": 638200 + }, + { + "epoch": 85.10666666666667, + "grad_norm": 0.9332461953163147, + "learning_rate": 7.4666666666666675e-06, + "loss": 1.2237569427490234, + "step": 638300 + }, + { + "epoch": 85.12, + "grad_norm": 0.8508715033531189, + "learning_rate": 7.4600000000000006e-06, + "loss": 1.22271240234375, + "step": 638400 + }, + { + "epoch": 85.13333333333334, + "grad_norm": 0.8810603618621826, + "learning_rate": 7.453333333333333e-06, + "loss": 1.2232743835449218, + "step": 638500 + }, + { + "epoch": 85.14666666666666, + "grad_norm": 0.9365109801292419, + "learning_rate": 7.446666666666667e-06, + "loss": 1.2257044982910157, + "step": 638600 + }, + { + "epoch": 85.16, + "grad_norm": 0.9457574486732483, + "learning_rate": 7.44e-06, + "loss": 1.2268252563476563, + "step": 638700 + }, + { + "epoch": 85.17333333333333, + "grad_norm": 0.9184970855712891, + "learning_rate": 7.433333333333334e-06, + "loss": 1.2216042327880858, + "step": 638800 + }, + { + "epoch": 85.18666666666667, + "grad_norm": 0.8944892883300781, + "learning_rate": 7.426666666666666e-06, + "loss": 1.2262333679199218, + "step": 638900 + }, + { + "epoch": 85.2, + "grad_norm": 0.9582709670066833, + "learning_rate": 7.420000000000001e-06, + "loss": 1.2231621551513672, + "step": 639000 + }, + { + "epoch": 85.21333333333334, + "grad_norm": 0.9123549461364746, + "learning_rate": 7.413333333333333e-06, + "loss": 1.2277581787109375, + "step": 639100 + }, + { + "epoch": 85.22666666666667, + "grad_norm": 0.8903558850288391, + "learning_rate": 7.406666666666667e-06, + "loss": 1.2252957916259766, + "step": 639200 + }, + { + "epoch": 85.24, + "grad_norm": 0.8448173999786377, + "learning_rate": 7.4e-06, + "loss": 1.224297332763672, + "step": 639300 + }, + { + "epoch": 85.25333333333333, + "grad_norm": 0.9212110638618469, + "learning_rate": 7.3934e-06, + "loss": 1.2260472869873047, + "step": 639400 + }, + { + "epoch": 85.26666666666667, + "grad_norm": 0.8959601521492004, + "learning_rate": 7.386733333333333e-06, + "loss": 1.2307054901123047, + "step": 639500 + }, + { + "epoch": 85.28, + "grad_norm": 0.8986248970031738, + "learning_rate": 7.380066666666667e-06, + "loss": 1.2230642700195313, + "step": 639600 + }, + { + "epoch": 85.29333333333334, + "grad_norm": 0.9850512146949768, + "learning_rate": 7.3733999999999996e-06, + "loss": 1.2273857879638672, + "step": 639700 + }, + { + "epoch": 85.30666666666667, + "grad_norm": 0.8248298764228821, + "learning_rate": 7.3667333333333335e-06, + "loss": 1.226371307373047, + "step": 639800 + }, + { + "epoch": 85.32, + "grad_norm": 0.9425682425498962, + "learning_rate": 7.360066666666667e-06, + "loss": 1.2281211090087891, + "step": 639900 + }, + { + "epoch": 85.33333333333333, + "grad_norm": 0.8708743453025818, + "learning_rate": 7.353400000000001e-06, + "loss": 1.225609664916992, + "step": 640000 + }, + { + "epoch": 85.34666666666666, + "grad_norm": 0.9035684466362, + "learning_rate": 7.346733333333333e-06, + "loss": 1.2235333251953124, + "step": 640100 + }, + { + "epoch": 85.36, + "grad_norm": 0.9259425401687622, + "learning_rate": 7.340066666666668e-06, + "loss": 1.23236083984375, + "step": 640200 + }, + { + "epoch": 85.37333333333333, + "grad_norm": 0.9252036213874817, + "learning_rate": 7.3334e-06, + "loss": 1.229639205932617, + "step": 640300 + }, + { + "epoch": 85.38666666666667, + "grad_norm": 0.9062958359718323, + "learning_rate": 7.326733333333334e-06, + "loss": 1.2285384368896484, + "step": 640400 + }, + { + "epoch": 85.4, + "grad_norm": 0.9291536211967468, + "learning_rate": 7.320066666666667e-06, + "loss": 1.2298905944824219, + "step": 640500 + }, + { + "epoch": 85.41333333333333, + "grad_norm": 0.8647129535675049, + "learning_rate": 7.313400000000001e-06, + "loss": 1.2309508514404297, + "step": 640600 + }, + { + "epoch": 85.42666666666666, + "grad_norm": 0.9247118234634399, + "learning_rate": 7.306733333333333e-06, + "loss": 1.2306937408447265, + "step": 640700 + }, + { + "epoch": 85.44, + "grad_norm": 0.8799145221710205, + "learning_rate": 7.300066666666667e-06, + "loss": 1.226353759765625, + "step": 640800 + }, + { + "epoch": 85.45333333333333, + "grad_norm": 0.9392918944358826, + "learning_rate": 7.2934e-06, + "loss": 1.2263146209716798, + "step": 640900 + }, + { + "epoch": 85.46666666666667, + "grad_norm": 0.8683087229728699, + "learning_rate": 7.286733333333334e-06, + "loss": 1.2288311767578124, + "step": 641000 + }, + { + "epoch": 85.48, + "grad_norm": 0.9020020365715027, + "learning_rate": 7.2800666666666666e-06, + "loss": 1.229554214477539, + "step": 641100 + }, + { + "epoch": 85.49333333333334, + "grad_norm": 0.8641257882118225, + "learning_rate": 7.2734e-06, + "loss": 1.2283095550537109, + "step": 641200 + }, + { + "epoch": 85.50666666666666, + "grad_norm": 0.8976728320121765, + "learning_rate": 7.266733333333334e-06, + "loss": 1.2341390991210937, + "step": 641300 + }, + { + "epoch": 85.52, + "grad_norm": 0.9710721373558044, + "learning_rate": 7.260133333333334e-06, + "loss": 1.228611831665039, + "step": 641400 + }, + { + "epoch": 85.53333333333333, + "grad_norm": 0.9804433584213257, + "learning_rate": 7.253466666666667e-06, + "loss": 1.231660385131836, + "step": 641500 + }, + { + "epoch": 85.54666666666667, + "grad_norm": 0.9250527620315552, + "learning_rate": 7.246800000000001e-06, + "loss": 1.2287106323242187, + "step": 641600 + }, + { + "epoch": 85.56, + "grad_norm": 0.8953940868377686, + "learning_rate": 7.240133333333334e-06, + "loss": 1.2353031158447265, + "step": 641700 + }, + { + "epoch": 85.57333333333334, + "grad_norm": 0.8646306991577148, + "learning_rate": 7.233466666666668e-06, + "loss": 1.232652053833008, + "step": 641800 + }, + { + "epoch": 85.58666666666667, + "grad_norm": 0.9270492792129517, + "learning_rate": 7.2268e-06, + "loss": 1.2340243530273438, + "step": 641900 + }, + { + "epoch": 85.6, + "grad_norm": 0.9221645593643188, + "learning_rate": 7.220133333333334e-06, + "loss": 1.2317237091064452, + "step": 642000 + }, + { + "epoch": 85.61333333333333, + "grad_norm": 0.8994006514549255, + "learning_rate": 7.213466666666667e-06, + "loss": 1.2312322998046874, + "step": 642100 + }, + { + "epoch": 85.62666666666667, + "grad_norm": 0.9039101600646973, + "learning_rate": 7.206799999999999e-06, + "loss": 1.2359030151367187, + "step": 642200 + }, + { + "epoch": 85.64, + "grad_norm": 0.9876293540000916, + "learning_rate": 7.200133333333334e-06, + "loss": 1.231430435180664, + "step": 642300 + }, + { + "epoch": 85.65333333333334, + "grad_norm": 0.8660300970077515, + "learning_rate": 7.193466666666666e-06, + "loss": 1.232857437133789, + "step": 642400 + }, + { + "epoch": 85.66666666666667, + "grad_norm": 0.9719154834747314, + "learning_rate": 7.1868e-06, + "loss": 1.2365948486328124, + "step": 642500 + }, + { + "epoch": 85.68, + "grad_norm": 0.9251152276992798, + "learning_rate": 7.1801333333333335e-06, + "loss": 1.2319696044921875, + "step": 642600 + }, + { + "epoch": 85.69333333333333, + "grad_norm": 0.8920202255249023, + "learning_rate": 7.1734666666666675e-06, + "loss": 1.2325668334960938, + "step": 642700 + }, + { + "epoch": 85.70666666666666, + "grad_norm": 0.9049530625343323, + "learning_rate": 7.1668e-06, + "loss": 1.2362017822265625, + "step": 642800 + }, + { + "epoch": 85.72, + "grad_norm": 0.8955960869789124, + "learning_rate": 7.160133333333334e-06, + "loss": 1.2367591094970702, + "step": 642900 + }, + { + "epoch": 85.73333333333333, + "grad_norm": 0.8741152286529541, + "learning_rate": 7.153466666666667e-06, + "loss": 1.2382603454589844, + "step": 643000 + }, + { + "epoch": 85.74666666666667, + "grad_norm": 0.8936929106712341, + "learning_rate": 7.146800000000001e-06, + "loss": 1.2319417572021485, + "step": 643100 + }, + { + "epoch": 85.76, + "grad_norm": 0.8739801645278931, + "learning_rate": 7.140133333333333e-06, + "loss": 1.2322359466552735, + "step": 643200 + }, + { + "epoch": 85.77333333333333, + "grad_norm": 0.9064525961875916, + "learning_rate": 7.133466666666668e-06, + "loss": 1.2369744110107421, + "step": 643300 + }, + { + "epoch": 85.78666666666666, + "grad_norm": 0.8985515236854553, + "learning_rate": 7.1268e-06, + "loss": 1.2325567626953124, + "step": 643400 + }, + { + "epoch": 85.8, + "grad_norm": 0.9307603240013123, + "learning_rate": 7.120200000000001e-06, + "loss": 1.238876495361328, + "step": 643500 + }, + { + "epoch": 85.81333333333333, + "grad_norm": 0.8941517472267151, + "learning_rate": 7.113533333333333e-06, + "loss": 1.2391890716552734, + "step": 643600 + }, + { + "epoch": 85.82666666666667, + "grad_norm": 0.9674673676490784, + "learning_rate": 7.106866666666667e-06, + "loss": 1.2368927764892579, + "step": 643700 + }, + { + "epoch": 85.84, + "grad_norm": 0.933340847492218, + "learning_rate": 7.1002e-06, + "loss": 1.2422388458251954, + "step": 643800 + }, + { + "epoch": 85.85333333333334, + "grad_norm": 0.8938137888908386, + "learning_rate": 7.093533333333334e-06, + "loss": 1.2338928985595703, + "step": 643900 + }, + { + "epoch": 85.86666666666666, + "grad_norm": 0.8926107287406921, + "learning_rate": 7.0868666666666665e-06, + "loss": 1.2356930541992188, + "step": 644000 + }, + { + "epoch": 85.88, + "grad_norm": 0.8534455299377441, + "learning_rate": 7.0802e-06, + "loss": 1.2378578186035156, + "step": 644100 + }, + { + "epoch": 85.89333333333333, + "grad_norm": 1.000348448753357, + "learning_rate": 7.0735333333333335e-06, + "loss": 1.2363401794433593, + "step": 644200 + }, + { + "epoch": 85.90666666666667, + "grad_norm": 0.9621683359146118, + "learning_rate": 7.0668666666666675e-06, + "loss": 1.241478271484375, + "step": 644300 + }, + { + "epoch": 85.92, + "grad_norm": 0.9294373989105225, + "learning_rate": 7.0602e-06, + "loss": 1.237207565307617, + "step": 644400 + }, + { + "epoch": 85.93333333333334, + "grad_norm": 0.9206804037094116, + "learning_rate": 7.0535333333333346e-06, + "loss": 1.2392974090576172, + "step": 644500 + }, + { + "epoch": 85.94666666666667, + "grad_norm": 0.8890131115913391, + "learning_rate": 7.046866666666667e-06, + "loss": 1.2358542633056642, + "step": 644600 + }, + { + "epoch": 85.96, + "grad_norm": 0.887895941734314, + "learning_rate": 7.040200000000001e-06, + "loss": 1.2418438720703124, + "step": 644700 + }, + { + "epoch": 85.97333333333333, + "grad_norm": 0.8878814578056335, + "learning_rate": 7.033533333333334e-06, + "loss": 1.2417584991455077, + "step": 644800 + }, + { + "epoch": 85.98666666666666, + "grad_norm": 0.9163659811019897, + "learning_rate": 7.026866666666666e-06, + "loss": 1.2418124389648437, + "step": 644900 + }, + { + "epoch": 86.0, + "grad_norm": 0.9403581023216248, + "learning_rate": 7.0202e-06, + "loss": 1.2414751434326172, + "step": 645000 + }, + { + "epoch": 86.01333333333334, + "grad_norm": 0.8630901575088501, + "learning_rate": 7.013533333333333e-06, + "loss": 1.2175826263427734, + "step": 645100 + }, + { + "epoch": 86.02666666666667, + "grad_norm": 0.9154542684555054, + "learning_rate": 7.006866666666667e-06, + "loss": 1.2209982299804687, + "step": 645200 + }, + { + "epoch": 86.04, + "grad_norm": 0.9038174748420715, + "learning_rate": 7.0001999999999995e-06, + "loss": 1.216339340209961, + "step": 645300 + }, + { + "epoch": 86.05333333333333, + "grad_norm": 0.8506960272789001, + "learning_rate": 6.993533333333334e-06, + "loss": 1.218511962890625, + "step": 645400 + }, + { + "epoch": 86.06666666666666, + "grad_norm": 0.8634645342826843, + "learning_rate": 6.986933333333334e-06, + "loss": 1.2178488922119142, + "step": 645500 + }, + { + "epoch": 86.08, + "grad_norm": 0.9225000739097595, + "learning_rate": 6.9802666666666665e-06, + "loss": 1.2196299743652343, + "step": 645600 + }, + { + "epoch": 86.09333333333333, + "grad_norm": 0.9054206609725952, + "learning_rate": 6.973600000000001e-06, + "loss": 1.2221673583984376, + "step": 645700 + }, + { + "epoch": 86.10666666666667, + "grad_norm": 0.8930476307868958, + "learning_rate": 6.9669333333333336e-06, + "loss": 1.219794464111328, + "step": 645800 + }, + { + "epoch": 86.12, + "grad_norm": 0.8613491058349609, + "learning_rate": 6.960266666666667e-06, + "loss": 1.21840576171875, + "step": 645900 + }, + { + "epoch": 86.13333333333334, + "grad_norm": 0.9077932238578796, + "learning_rate": 6.953600000000001e-06, + "loss": 1.2229581451416016, + "step": 646000 + }, + { + "epoch": 86.14666666666666, + "grad_norm": 0.9440174102783203, + "learning_rate": 6.946933333333333e-06, + "loss": 1.217189178466797, + "step": 646100 + }, + { + "epoch": 86.16, + "grad_norm": 0.906891405582428, + "learning_rate": 6.940266666666667e-06, + "loss": 1.2184838104248046, + "step": 646200 + }, + { + "epoch": 86.17333333333333, + "grad_norm": 0.8963661193847656, + "learning_rate": 6.9336e-06, + "loss": 1.2230545043945313, + "step": 646300 + }, + { + "epoch": 86.18666666666667, + "grad_norm": 0.8720294833183289, + "learning_rate": 6.926933333333334e-06, + "loss": 1.2247891998291016, + "step": 646400 + }, + { + "epoch": 86.2, + "grad_norm": 0.9351063966751099, + "learning_rate": 6.920266666666666e-06, + "loss": 1.2246680450439453, + "step": 646500 + }, + { + "epoch": 86.21333333333334, + "grad_norm": 0.9471380114555359, + "learning_rate": 6.913600000000001e-06, + "loss": 1.2222270965576172, + "step": 646600 + }, + { + "epoch": 86.22666666666667, + "grad_norm": 0.8749629259109497, + "learning_rate": 6.906933333333333e-06, + "loss": 1.2154730987548827, + "step": 646700 + }, + { + "epoch": 86.24, + "grad_norm": 0.8750444650650024, + "learning_rate": 6.900266666666667e-06, + "loss": 1.2247186279296876, + "step": 646800 + }, + { + "epoch": 86.25333333333333, + "grad_norm": 0.9080207347869873, + "learning_rate": 6.8936e-06, + "loss": 1.2202265930175782, + "step": 646900 + }, + { + "epoch": 86.26666666666667, + "grad_norm": 0.9241020679473877, + "learning_rate": 6.886933333333334e-06, + "loss": 1.224848175048828, + "step": 647000 + }, + { + "epoch": 86.28, + "grad_norm": 0.907421350479126, + "learning_rate": 6.880266666666667e-06, + "loss": 1.2235704040527344, + "step": 647100 + }, + { + "epoch": 86.29333333333334, + "grad_norm": 0.9098572731018066, + "learning_rate": 6.8736000000000006e-06, + "loss": 1.2222378540039063, + "step": 647200 + }, + { + "epoch": 86.30666666666667, + "grad_norm": 0.8905967473983765, + "learning_rate": 6.866933333333334e-06, + "loss": 1.2262596130371093, + "step": 647300 + }, + { + "epoch": 86.32, + "grad_norm": 0.8770264387130737, + "learning_rate": 6.860266666666668e-06, + "loss": 1.2231716156005858, + "step": 647400 + }, + { + "epoch": 86.33333333333333, + "grad_norm": 0.8793537616729736, + "learning_rate": 6.853666666666667e-06, + "loss": 1.2286277770996095, + "step": 647500 + }, + { + "epoch": 86.34666666666666, + "grad_norm": 0.8772323131561279, + "learning_rate": 6.847000000000001e-06, + "loss": 1.2212282562255858, + "step": 647600 + }, + { + "epoch": 86.36, + "grad_norm": 0.891001284122467, + "learning_rate": 6.840333333333333e-06, + "loss": 1.222700729370117, + "step": 647700 + }, + { + "epoch": 86.37333333333333, + "grad_norm": 0.9272405505180359, + "learning_rate": 6.833666666666668e-06, + "loss": 1.2218807220458985, + "step": 647800 + }, + { + "epoch": 86.38666666666667, + "grad_norm": 0.884071409702301, + "learning_rate": 6.827e-06, + "loss": 1.2227737426757812, + "step": 647900 + }, + { + "epoch": 86.4, + "grad_norm": 0.9387223720550537, + "learning_rate": 6.820333333333334e-06, + "loss": 1.227510986328125, + "step": 648000 + }, + { + "epoch": 86.41333333333333, + "grad_norm": 0.8574748039245605, + "learning_rate": 6.813666666666667e-06, + "loss": 1.2250510406494142, + "step": 648100 + }, + { + "epoch": 86.42666666666666, + "grad_norm": 0.8585149049758911, + "learning_rate": 6.807000000000001e-06, + "loss": 1.2231393432617188, + "step": 648200 + }, + { + "epoch": 86.44, + "grad_norm": 0.8672378659248352, + "learning_rate": 6.800333333333333e-06, + "loss": 1.2262419891357421, + "step": 648300 + }, + { + "epoch": 86.45333333333333, + "grad_norm": 0.8681180477142334, + "learning_rate": 6.793666666666667e-06, + "loss": 1.2264180755615235, + "step": 648400 + }, + { + "epoch": 86.46666666666667, + "grad_norm": 0.9366236329078674, + "learning_rate": 6.787e-06, + "loss": 1.2281493377685546, + "step": 648500 + }, + { + "epoch": 86.48, + "grad_norm": 0.9453869462013245, + "learning_rate": 6.780333333333333e-06, + "loss": 1.2302886199951173, + "step": 648600 + }, + { + "epoch": 86.49333333333334, + "grad_norm": 0.8976516127586365, + "learning_rate": 6.773666666666667e-06, + "loss": 1.227205810546875, + "step": 648700 + }, + { + "epoch": 86.50666666666666, + "grad_norm": 0.9220427870750427, + "learning_rate": 6.767e-06, + "loss": 1.2235513305664063, + "step": 648800 + }, + { + "epoch": 86.52, + "grad_norm": 0.912756085395813, + "learning_rate": 6.760333333333334e-06, + "loss": 1.2255386352539062, + "step": 648900 + }, + { + "epoch": 86.53333333333333, + "grad_norm": 0.9162057042121887, + "learning_rate": 6.753666666666667e-06, + "loss": 1.2223670959472657, + "step": 649000 + }, + { + "epoch": 86.54666666666667, + "grad_norm": 0.8735973238945007, + "learning_rate": 6.747000000000001e-06, + "loss": 1.2262992858886719, + "step": 649100 + }, + { + "epoch": 86.56, + "grad_norm": 0.8713511228561401, + "learning_rate": 6.740333333333333e-06, + "loss": 1.231358871459961, + "step": 649200 + }, + { + "epoch": 86.57333333333334, + "grad_norm": 0.879443883895874, + "learning_rate": 6.733666666666667e-06, + "loss": 1.2286178588867187, + "step": 649300 + }, + { + "epoch": 86.58666666666667, + "grad_norm": 0.9119516015052795, + "learning_rate": 6.727e-06, + "loss": 1.2312828063964845, + "step": 649400 + }, + { + "epoch": 86.6, + "grad_norm": 0.9122266173362732, + "learning_rate": 6.7204e-06, + "loss": 1.2293184661865235, + "step": 649500 + }, + { + "epoch": 86.61333333333333, + "grad_norm": 0.9306323528289795, + "learning_rate": 6.713733333333333e-06, + "loss": 1.2252943420410156, + "step": 649600 + }, + { + "epoch": 86.62666666666667, + "grad_norm": 0.8929945230484009, + "learning_rate": 6.707066666666667e-06, + "loss": 1.2296338653564454, + "step": 649700 + }, + { + "epoch": 86.64, + "grad_norm": 0.9355345964431763, + "learning_rate": 6.700399999999999e-06, + "loss": 1.229610595703125, + "step": 649800 + }, + { + "epoch": 86.65333333333334, + "grad_norm": 0.9156262278556824, + "learning_rate": 6.693733333333334e-06, + "loss": 1.2348743438720704, + "step": 649900 + }, + { + "epoch": 86.66666666666667, + "grad_norm": 0.9362950921058655, + "learning_rate": 6.6870666666666665e-06, + "loss": 1.2279579162597656, + "step": 650000 + }, + { + "epoch": 86.68, + "grad_norm": 0.8823856711387634, + "learning_rate": 6.6804000000000004e-06, + "loss": 1.23043212890625, + "step": 650100 + }, + { + "epoch": 86.69333333333333, + "grad_norm": 0.9650241732597351, + "learning_rate": 6.6737333333333336e-06, + "loss": 1.2296434020996094, + "step": 650200 + }, + { + "epoch": 86.70666666666666, + "grad_norm": 0.8565574288368225, + "learning_rate": 6.6670666666666675e-06, + "loss": 1.2308535003662109, + "step": 650300 + }, + { + "epoch": 86.72, + "grad_norm": 0.9410964846611023, + "learning_rate": 6.6604e-06, + "loss": 1.2321768951416017, + "step": 650400 + }, + { + "epoch": 86.73333333333333, + "grad_norm": 0.9220337867736816, + "learning_rate": 6.653733333333334e-06, + "loss": 1.231683349609375, + "step": 650500 + }, + { + "epoch": 86.74666666666667, + "grad_norm": 0.8969945907592773, + "learning_rate": 6.647066666666667e-06, + "loss": 1.233789291381836, + "step": 650600 + }, + { + "epoch": 86.76, + "grad_norm": 0.9641741514205933, + "learning_rate": 6.640400000000001e-06, + "loss": 1.230896987915039, + "step": 650700 + }, + { + "epoch": 86.77333333333333, + "grad_norm": 0.9212261438369751, + "learning_rate": 6.633733333333333e-06, + "loss": 1.2316611480712891, + "step": 650800 + }, + { + "epoch": 86.78666666666666, + "grad_norm": 0.8244799971580505, + "learning_rate": 6.627066666666668e-06, + "loss": 1.2281710815429687, + "step": 650900 + }, + { + "epoch": 86.8, + "grad_norm": 0.89630126953125, + "learning_rate": 6.6204e-06, + "loss": 1.2288339233398438, + "step": 651000 + }, + { + "epoch": 86.81333333333333, + "grad_norm": 0.8904646635055542, + "learning_rate": 6.613733333333334e-06, + "loss": 1.2315651702880859, + "step": 651100 + }, + { + "epoch": 86.82666666666667, + "grad_norm": 0.9223039150238037, + "learning_rate": 6.607066666666667e-06, + "loss": 1.2328720855712891, + "step": 651200 + }, + { + "epoch": 86.84, + "grad_norm": 0.8785363435745239, + "learning_rate": 6.6003999999999995e-06, + "loss": 1.2333258056640626, + "step": 651300 + }, + { + "epoch": 86.85333333333334, + "grad_norm": 0.9430354237556458, + "learning_rate": 6.5937333333333335e-06, + "loss": 1.231754913330078, + "step": 651400 + }, + { + "epoch": 86.86666666666666, + "grad_norm": 0.9277433156967163, + "learning_rate": 6.587133333333334e-06, + "loss": 1.2332256317138672, + "step": 651500 + }, + { + "epoch": 86.88, + "grad_norm": 0.9251424670219421, + "learning_rate": 6.5804666666666665e-06, + "loss": 1.2302942657470703, + "step": 651600 + }, + { + "epoch": 86.89333333333333, + "grad_norm": 0.9771026968955994, + "learning_rate": 6.5738000000000005e-06, + "loss": 1.2350211334228516, + "step": 651700 + }, + { + "epoch": 86.90666666666667, + "grad_norm": 0.9614867568016052, + "learning_rate": 6.567133333333334e-06, + "loss": 1.2328236389160157, + "step": 651800 + }, + { + "epoch": 86.92, + "grad_norm": 0.9628375768661499, + "learning_rate": 6.5604666666666676e-06, + "loss": 1.2369357299804689, + "step": 651900 + }, + { + "epoch": 86.93333333333334, + "grad_norm": 0.8983745574951172, + "learning_rate": 6.5538e-06, + "loss": 1.2343621063232422, + "step": 652000 + }, + { + "epoch": 86.94666666666667, + "grad_norm": 0.9080144166946411, + "learning_rate": 6.547133333333335e-06, + "loss": 1.2306615447998046, + "step": 652100 + }, + { + "epoch": 86.96, + "grad_norm": 0.8796840906143188, + "learning_rate": 6.540466666666667e-06, + "loss": 1.2312027740478515, + "step": 652200 + }, + { + "epoch": 86.97333333333333, + "grad_norm": 0.9401488304138184, + "learning_rate": 6.5338e-06, + "loss": 1.23423828125, + "step": 652300 + }, + { + "epoch": 86.98666666666666, + "grad_norm": 0.9651604890823364, + "learning_rate": 6.527133333333334e-06, + "loss": 1.2338542175292968, + "step": 652400 + }, + { + "epoch": 87.0, + "grad_norm": 0.9266039729118347, + "learning_rate": 6.520466666666666e-06, + "loss": 1.2390645599365235, + "step": 652500 + }, + { + "epoch": 87.01333333333334, + "grad_norm": 0.8999123573303223, + "learning_rate": 6.5138e-06, + "loss": 1.214796905517578, + "step": 652600 + }, + { + "epoch": 87.02666666666667, + "grad_norm": 0.903722882270813, + "learning_rate": 6.507133333333333e-06, + "loss": 1.2141775512695312, + "step": 652700 + }, + { + "epoch": 87.04, + "grad_norm": 0.8932545781135559, + "learning_rate": 6.500466666666667e-06, + "loss": 1.2154994201660156, + "step": 652800 + }, + { + "epoch": 87.05333333333333, + "grad_norm": 0.8836954236030579, + "learning_rate": 6.4937999999999996e-06, + "loss": 1.2121443939208985, + "step": 652900 + }, + { + "epoch": 87.06666666666666, + "grad_norm": 0.9204801321029663, + "learning_rate": 6.487133333333334e-06, + "loss": 1.2122740936279297, + "step": 653000 + }, + { + "epoch": 87.08, + "grad_norm": 0.8981918692588806, + "learning_rate": 6.480466666666667e-06, + "loss": 1.221134490966797, + "step": 653100 + }, + { + "epoch": 87.09333333333333, + "grad_norm": 0.926282525062561, + "learning_rate": 6.473800000000001e-06, + "loss": 1.2155657196044922, + "step": 653200 + }, + { + "epoch": 87.10666666666667, + "grad_norm": 0.8902606964111328, + "learning_rate": 6.467133333333334e-06, + "loss": 1.2164243316650392, + "step": 653300 + }, + { + "epoch": 87.12, + "grad_norm": 0.8815839290618896, + "learning_rate": 6.460466666666668e-06, + "loss": 1.2138585662841797, + "step": 653400 + }, + { + "epoch": 87.13333333333334, + "grad_norm": 0.9262551069259644, + "learning_rate": 6.453866666666667e-06, + "loss": 1.2137595367431642, + "step": 653500 + }, + { + "epoch": 87.14666666666666, + "grad_norm": 0.891934871673584, + "learning_rate": 6.447200000000001e-06, + "loss": 1.214564666748047, + "step": 653600 + }, + { + "epoch": 87.16, + "grad_norm": 0.8836770057678223, + "learning_rate": 6.440533333333333e-06, + "loss": 1.2159810638427735, + "step": 653700 + }, + { + "epoch": 87.17333333333333, + "grad_norm": 0.9016736745834351, + "learning_rate": 6.433866666666667e-06, + "loss": 1.2174545288085938, + "step": 653800 + }, + { + "epoch": 87.18666666666667, + "grad_norm": 0.9326723217964172, + "learning_rate": 6.4272e-06, + "loss": 1.2156101226806642, + "step": 653900 + }, + { + "epoch": 87.2, + "grad_norm": 0.8592504858970642, + "learning_rate": 6.420533333333334e-06, + "loss": 1.2173818969726562, + "step": 654000 + }, + { + "epoch": 87.21333333333334, + "grad_norm": 0.8951143026351929, + "learning_rate": 6.413866666666666e-06, + "loss": 1.2178955841064454, + "step": 654100 + }, + { + "epoch": 87.22666666666667, + "grad_norm": 0.9222288131713867, + "learning_rate": 6.407200000000001e-06, + "loss": 1.2179863739013672, + "step": 654200 + }, + { + "epoch": 87.24, + "grad_norm": 0.9849110245704651, + "learning_rate": 6.400533333333333e-06, + "loss": 1.2230202484130859, + "step": 654300 + }, + { + "epoch": 87.25333333333333, + "grad_norm": 0.9216305017471313, + "learning_rate": 6.393866666666667e-06, + "loss": 1.2152316284179687, + "step": 654400 + }, + { + "epoch": 87.26666666666667, + "grad_norm": 0.8858641982078552, + "learning_rate": 6.3872000000000004e-06, + "loss": 1.2167332458496094, + "step": 654500 + }, + { + "epoch": 87.28, + "grad_norm": 0.907527506351471, + "learning_rate": 6.380533333333334e-06, + "loss": 1.223568115234375, + "step": 654600 + }, + { + "epoch": 87.29333333333334, + "grad_norm": 0.928432285785675, + "learning_rate": 6.373866666666667e-06, + "loss": 1.221104507446289, + "step": 654700 + }, + { + "epoch": 87.30666666666667, + "grad_norm": 0.8888409733772278, + "learning_rate": 6.367200000000001e-06, + "loss": 1.2164854431152343, + "step": 654800 + }, + { + "epoch": 87.32, + "grad_norm": 0.9260812401771545, + "learning_rate": 6.360533333333334e-06, + "loss": 1.2207078552246093, + "step": 654900 + }, + { + "epoch": 87.33333333333333, + "grad_norm": 0.9093630313873291, + "learning_rate": 6.353866666666666e-06, + "loss": 1.221835174560547, + "step": 655000 + }, + { + "epoch": 87.34666666666666, + "grad_norm": 0.9289301633834839, + "learning_rate": 6.3472e-06, + "loss": 1.2211975860595703, + "step": 655100 + }, + { + "epoch": 87.36, + "grad_norm": 0.8211119771003723, + "learning_rate": 6.340533333333333e-06, + "loss": 1.2244545745849609, + "step": 655200 + }, + { + "epoch": 87.37333333333333, + "grad_norm": 0.9515888690948486, + "learning_rate": 6.333866666666667e-06, + "loss": 1.2235546112060547, + "step": 655300 + }, + { + "epoch": 87.38666666666667, + "grad_norm": 0.8519609570503235, + "learning_rate": 6.3272e-06, + "loss": 1.2207803344726562, + "step": 655400 + }, + { + "epoch": 87.4, + "grad_norm": 0.8767391443252563, + "learning_rate": 6.3206e-06, + "loss": 1.2202215576171875, + "step": 655500 + }, + { + "epoch": 87.41333333333333, + "grad_norm": 1.0171016454696655, + "learning_rate": 6.313933333333334e-06, + "loss": 1.2231157684326173, + "step": 655600 + }, + { + "epoch": 87.42666666666666, + "grad_norm": 0.86667400598526, + "learning_rate": 6.307266666666667e-06, + "loss": 1.2254328155517578, + "step": 655700 + }, + { + "epoch": 87.44, + "grad_norm": 0.9001585245132446, + "learning_rate": 6.300600000000001e-06, + "loss": 1.2218850708007813, + "step": 655800 + }, + { + "epoch": 87.45333333333333, + "grad_norm": 0.939195454120636, + "learning_rate": 6.293933333333333e-06, + "loss": 1.2206802368164062, + "step": 655900 + }, + { + "epoch": 87.46666666666667, + "grad_norm": 0.8869876265525818, + "learning_rate": 6.2872666666666665e-06, + "loss": 1.2218120574951172, + "step": 656000 + }, + { + "epoch": 87.48, + "grad_norm": 0.898676872253418, + "learning_rate": 6.2806000000000005e-06, + "loss": 1.2209648895263672, + "step": 656100 + }, + { + "epoch": 87.49333333333334, + "grad_norm": 0.9363060593605042, + "learning_rate": 6.273933333333333e-06, + "loss": 1.2237455749511719, + "step": 656200 + }, + { + "epoch": 87.50666666666666, + "grad_norm": 0.9196439981460571, + "learning_rate": 6.267266666666667e-06, + "loss": 1.2262535095214844, + "step": 656300 + }, + { + "epoch": 87.52, + "grad_norm": 0.7970747947692871, + "learning_rate": 6.2606e-06, + "loss": 1.2225990295410156, + "step": 656400 + }, + { + "epoch": 87.53333333333333, + "grad_norm": 0.8288227915763855, + "learning_rate": 6.253933333333334e-06, + "loss": 1.2242842864990235, + "step": 656500 + }, + { + "epoch": 87.54666666666667, + "grad_norm": 0.9207773804664612, + "learning_rate": 6.247266666666667e-06, + "loss": 1.2214242553710937, + "step": 656600 + }, + { + "epoch": 87.56, + "grad_norm": 0.9800169467926025, + "learning_rate": 6.240600000000001e-06, + "loss": 1.2252493286132813, + "step": 656700 + }, + { + "epoch": 87.57333333333334, + "grad_norm": 0.9389280080795288, + "learning_rate": 6.233933333333333e-06, + "loss": 1.220586700439453, + "step": 656800 + }, + { + "epoch": 87.58666666666667, + "grad_norm": 0.9566884636878967, + "learning_rate": 6.227266666666666e-06, + "loss": 1.2238873291015624, + "step": 656900 + }, + { + "epoch": 87.6, + "grad_norm": 0.9968175292015076, + "learning_rate": 6.2206e-06, + "loss": 1.2255178833007812, + "step": 657000 + }, + { + "epoch": 87.61333333333333, + "grad_norm": 0.9001134037971497, + "learning_rate": 6.213933333333333e-06, + "loss": 1.2253036499023438, + "step": 657100 + }, + { + "epoch": 87.62666666666667, + "grad_norm": 0.920998215675354, + "learning_rate": 6.2072666666666664e-06, + "loss": 1.2283302307128907, + "step": 657200 + }, + { + "epoch": 87.64, + "grad_norm": 0.9255244731903076, + "learning_rate": 6.2006e-06, + "loss": 1.2279671478271483, + "step": 657300 + }, + { + "epoch": 87.65333333333334, + "grad_norm": 0.8817408680915833, + "learning_rate": 6.1939333333333335e-06, + "loss": 1.222409210205078, + "step": 657400 + }, + { + "epoch": 87.66666666666667, + "grad_norm": 0.9020600914955139, + "learning_rate": 6.187333333333334e-06, + "loss": 1.2292388153076172, + "step": 657500 + }, + { + "epoch": 87.68, + "grad_norm": 0.880594789981842, + "learning_rate": 6.180666666666667e-06, + "loss": 1.2260498046875, + "step": 657600 + }, + { + "epoch": 87.69333333333333, + "grad_norm": 0.9309771656990051, + "learning_rate": 6.1740000000000005e-06, + "loss": 1.2300214385986328, + "step": 657700 + }, + { + "epoch": 87.70666666666666, + "grad_norm": 0.8785908222198486, + "learning_rate": 6.167333333333334e-06, + "loss": 1.2290544891357422, + "step": 657800 + }, + { + "epoch": 87.72, + "grad_norm": 0.8739680647850037, + "learning_rate": 6.160666666666667e-06, + "loss": 1.2261587524414062, + "step": 657900 + }, + { + "epoch": 87.73333333333333, + "grad_norm": 0.8887823224067688, + "learning_rate": 6.154e-06, + "loss": 1.2235511779785155, + "step": 658000 + }, + { + "epoch": 87.74666666666667, + "grad_norm": 0.9344404339790344, + "learning_rate": 6.147333333333334e-06, + "loss": 1.2311840057373047, + "step": 658100 + }, + { + "epoch": 87.76, + "grad_norm": 0.9279657006263733, + "learning_rate": 6.140666666666667e-06, + "loss": 1.2299423217773438, + "step": 658200 + }, + { + "epoch": 87.77333333333333, + "grad_norm": 0.9525284767150879, + "learning_rate": 6.134e-06, + "loss": 1.2301526641845704, + "step": 658300 + }, + { + "epoch": 87.78666666666666, + "grad_norm": 0.8445433378219604, + "learning_rate": 6.127333333333333e-06, + "loss": 1.226542739868164, + "step": 658400 + }, + { + "epoch": 87.8, + "grad_norm": 0.9366630911827087, + "learning_rate": 6.120666666666667e-06, + "loss": 1.2329245758056642, + "step": 658500 + }, + { + "epoch": 87.81333333333333, + "grad_norm": 0.9238616228103638, + "learning_rate": 6.114e-06, + "loss": 1.2254788970947266, + "step": 658600 + }, + { + "epoch": 87.82666666666667, + "grad_norm": 0.8797993063926697, + "learning_rate": 6.107333333333333e-06, + "loss": 1.2281143951416016, + "step": 658700 + }, + { + "epoch": 87.84, + "grad_norm": 0.8559375405311584, + "learning_rate": 6.100666666666667e-06, + "loss": 1.224699478149414, + "step": 658800 + }, + { + "epoch": 87.85333333333334, + "grad_norm": 0.9214592576026917, + "learning_rate": 6.0940000000000004e-06, + "loss": 1.2267461395263672, + "step": 658900 + }, + { + "epoch": 87.86666666666666, + "grad_norm": 0.9385553002357483, + "learning_rate": 6.0873333333333336e-06, + "loss": 1.2321873474121094, + "step": 659000 + }, + { + "epoch": 87.88, + "grad_norm": 0.9742735028266907, + "learning_rate": 6.0806666666666675e-06, + "loss": 1.224165802001953, + "step": 659100 + }, + { + "epoch": 87.89333333333333, + "grad_norm": 0.8828876614570618, + "learning_rate": 6.074000000000001e-06, + "loss": 1.2293293762207032, + "step": 659200 + }, + { + "epoch": 87.90666666666667, + "grad_norm": 0.8725327253341675, + "learning_rate": 6.067333333333334e-06, + "loss": 1.2297024536132812, + "step": 659300 + }, + { + "epoch": 87.92, + "grad_norm": 0.8858145475387573, + "learning_rate": 6.060666666666667e-06, + "loss": 1.231685256958008, + "step": 659400 + }, + { + "epoch": 87.93333333333334, + "grad_norm": 0.8619421124458313, + "learning_rate": 6.054066666666667e-06, + "loss": 1.227284164428711, + "step": 659500 + }, + { + "epoch": 87.94666666666667, + "grad_norm": 0.8720583915710449, + "learning_rate": 6.0474e-06, + "loss": 1.2259799194335939, + "step": 659600 + }, + { + "epoch": 87.96, + "grad_norm": 0.9668527841567993, + "learning_rate": 6.040733333333334e-06, + "loss": 1.2270006561279296, + "step": 659700 + }, + { + "epoch": 87.97333333333333, + "grad_norm": 0.8741607069969177, + "learning_rate": 6.034066666666667e-06, + "loss": 1.2342427825927735, + "step": 659800 + }, + { + "epoch": 87.98666666666666, + "grad_norm": 0.9043229818344116, + "learning_rate": 6.0274e-06, + "loss": 1.2302300262451171, + "step": 659900 + }, + { + "epoch": 88.0, + "grad_norm": 0.8614948391914368, + "learning_rate": 6.020733333333334e-06, + "loss": 1.2277375030517579, + "step": 660000 + }, + { + "epoch": 88.01333333333334, + "grad_norm": 0.8440125584602356, + "learning_rate": 6.014066666666667e-06, + "loss": 1.2098700714111328, + "step": 660100 + }, + { + "epoch": 88.02666666666667, + "grad_norm": 0.8795732855796814, + "learning_rate": 6.0074e-06, + "loss": 1.2145481872558594, + "step": 660200 + }, + { + "epoch": 88.04, + "grad_norm": 0.9388731718063354, + "learning_rate": 6.000733333333334e-06, + "loss": 1.2113359832763673, + "step": 660300 + }, + { + "epoch": 88.05333333333333, + "grad_norm": 0.9349479079246521, + "learning_rate": 5.994066666666667e-06, + "loss": 1.2147767639160156, + "step": 660400 + }, + { + "epoch": 88.06666666666666, + "grad_norm": 0.8859605193138123, + "learning_rate": 5.9874e-06, + "loss": 1.2128377532958985, + "step": 660500 + }, + { + "epoch": 88.08, + "grad_norm": 0.9146501421928406, + "learning_rate": 5.980733333333334e-06, + "loss": 1.2150657653808594, + "step": 660600 + }, + { + "epoch": 88.09333333333333, + "grad_norm": 0.8667988777160645, + "learning_rate": 5.974066666666667e-06, + "loss": 1.2110105133056641, + "step": 660700 + }, + { + "epoch": 88.10666666666667, + "grad_norm": 0.9527876973152161, + "learning_rate": 5.9674e-06, + "loss": 1.2121669006347657, + "step": 660800 + }, + { + "epoch": 88.12, + "grad_norm": 0.9000213146209717, + "learning_rate": 5.960733333333334e-06, + "loss": 1.2135875701904297, + "step": 660900 + }, + { + "epoch": 88.13333333333334, + "grad_norm": 0.9539820551872253, + "learning_rate": 5.954066666666667e-06, + "loss": 1.2122388458251954, + "step": 661000 + }, + { + "epoch": 88.14666666666666, + "grad_norm": 0.8554858565330505, + "learning_rate": 5.9474e-06, + "loss": 1.2159857177734374, + "step": 661100 + }, + { + "epoch": 88.16, + "grad_norm": 0.8576105833053589, + "learning_rate": 5.940733333333334e-06, + "loss": 1.214066848754883, + "step": 661200 + }, + { + "epoch": 88.17333333333333, + "grad_norm": 0.938084065914154, + "learning_rate": 5.934066666666667e-06, + "loss": 1.2105953216552734, + "step": 661300 + }, + { + "epoch": 88.18666666666667, + "grad_norm": 0.9702228307723999, + "learning_rate": 5.9274e-06, + "loss": 1.218522186279297, + "step": 661400 + }, + { + "epoch": 88.2, + "grad_norm": 0.9396708607673645, + "learning_rate": 5.9208e-06, + "loss": 1.2127921295166015, + "step": 661500 + }, + { + "epoch": 88.21333333333334, + "grad_norm": 0.8523475527763367, + "learning_rate": 5.914133333333333e-06, + "loss": 1.2177894592285157, + "step": 661600 + }, + { + "epoch": 88.22666666666667, + "grad_norm": 0.9162245392799377, + "learning_rate": 5.907466666666666e-06, + "loss": 1.2171736145019532, + "step": 661700 + }, + { + "epoch": 88.24, + "grad_norm": 0.909294843673706, + "learning_rate": 5.9008e-06, + "loss": 1.2113314819335939, + "step": 661800 + }, + { + "epoch": 88.25333333333333, + "grad_norm": 0.822942316532135, + "learning_rate": 5.8941333333333334e-06, + "loss": 1.2202149200439454, + "step": 661900 + }, + { + "epoch": 88.26666666666667, + "grad_norm": 0.9095253944396973, + "learning_rate": 5.8874666666666666e-06, + "loss": 1.2153319549560546, + "step": 662000 + }, + { + "epoch": 88.28, + "grad_norm": 0.9375243782997131, + "learning_rate": 5.8808000000000005e-06, + "loss": 1.2144713592529297, + "step": 662100 + }, + { + "epoch": 88.29333333333334, + "grad_norm": 0.8997815847396851, + "learning_rate": 5.874133333333334e-06, + "loss": 1.2190712738037108, + "step": 662200 + }, + { + "epoch": 88.30666666666667, + "grad_norm": 0.831521213054657, + "learning_rate": 5.867466666666667e-06, + "loss": 1.217860107421875, + "step": 662300 + }, + { + "epoch": 88.32, + "grad_norm": 0.9350924491882324, + "learning_rate": 5.860800000000001e-06, + "loss": 1.2177651977539063, + "step": 662400 + }, + { + "epoch": 88.33333333333333, + "grad_norm": 0.9330512285232544, + "learning_rate": 5.854133333333334e-06, + "loss": 1.2167528533935548, + "step": 662500 + }, + { + "epoch": 88.34666666666666, + "grad_norm": 0.8898918032646179, + "learning_rate": 5.847466666666667e-06, + "loss": 1.2190279388427734, + "step": 662600 + }, + { + "epoch": 88.36, + "grad_norm": 0.9025176167488098, + "learning_rate": 5.8408e-06, + "loss": 1.2180398559570313, + "step": 662700 + }, + { + "epoch": 88.37333333333333, + "grad_norm": 0.9351064562797546, + "learning_rate": 5.834133333333334e-06, + "loss": 1.2161642456054687, + "step": 662800 + }, + { + "epoch": 88.38666666666667, + "grad_norm": 0.8625040054321289, + "learning_rate": 5.827466666666667e-06, + "loss": 1.2185457611083985, + "step": 662900 + }, + { + "epoch": 88.4, + "grad_norm": 0.8925670981407166, + "learning_rate": 5.8208e-06, + "loss": 1.219074478149414, + "step": 663000 + }, + { + "epoch": 88.41333333333333, + "grad_norm": 0.8783120512962341, + "learning_rate": 5.814133333333334e-06, + "loss": 1.2135558319091797, + "step": 663100 + }, + { + "epoch": 88.42666666666666, + "grad_norm": 0.9169807434082031, + "learning_rate": 5.8074666666666665e-06, + "loss": 1.2201927185058594, + "step": 663200 + }, + { + "epoch": 88.44, + "grad_norm": 0.9173704385757446, + "learning_rate": 5.8008e-06, + "loss": 1.2177742767333983, + "step": 663300 + }, + { + "epoch": 88.45333333333333, + "grad_norm": 0.9613504409790039, + "learning_rate": 5.7941333333333335e-06, + "loss": 1.2174214935302734, + "step": 663400 + }, + { + "epoch": 88.46666666666667, + "grad_norm": 0.9053784012794495, + "learning_rate": 5.7875333333333335e-06, + "loss": 1.2211524963378906, + "step": 663500 + }, + { + "epoch": 88.48, + "grad_norm": 0.8977215886116028, + "learning_rate": 5.7808666666666674e-06, + "loss": 1.2180975341796876, + "step": 663600 + }, + { + "epoch": 88.49333333333334, + "grad_norm": 0.9076542258262634, + "learning_rate": 5.7742000000000006e-06, + "loss": 1.2158096313476563, + "step": 663700 + }, + { + "epoch": 88.50666666666666, + "grad_norm": 0.9158226251602173, + "learning_rate": 5.767533333333334e-06, + "loss": 1.218250961303711, + "step": 663800 + }, + { + "epoch": 88.52, + "grad_norm": 0.9524657726287842, + "learning_rate": 5.760866666666667e-06, + "loss": 1.2187013244628906, + "step": 663900 + }, + { + "epoch": 88.53333333333333, + "grad_norm": 0.931620717048645, + "learning_rate": 5.754200000000001e-06, + "loss": 1.2208222198486327, + "step": 664000 + }, + { + "epoch": 88.54666666666667, + "grad_norm": 0.9844622015953064, + "learning_rate": 5.747533333333334e-06, + "loss": 1.2225242614746095, + "step": 664100 + }, + { + "epoch": 88.56, + "grad_norm": 0.9277436137199402, + "learning_rate": 5.740866666666667e-06, + "loss": 1.2201163482666015, + "step": 664200 + }, + { + "epoch": 88.57333333333334, + "grad_norm": 0.8789235353469849, + "learning_rate": 5.7342e-06, + "loss": 1.2224101257324218, + "step": 664300 + }, + { + "epoch": 88.58666666666667, + "grad_norm": 0.9313110709190369, + "learning_rate": 5.727533333333333e-06, + "loss": 1.2181917572021483, + "step": 664400 + }, + { + "epoch": 88.6, + "grad_norm": 0.9556103348731995, + "learning_rate": 5.720866666666666e-06, + "loss": 1.2208975219726563, + "step": 664500 + }, + { + "epoch": 88.61333333333333, + "grad_norm": 0.9766332507133484, + "learning_rate": 5.7142e-06, + "loss": 1.2226788330078124, + "step": 664600 + }, + { + "epoch": 88.62666666666667, + "grad_norm": 0.8844559192657471, + "learning_rate": 5.707533333333333e-06, + "loss": 1.2230628204345704, + "step": 664700 + }, + { + "epoch": 88.64, + "grad_norm": 0.8664445281028748, + "learning_rate": 5.7008666666666665e-06, + "loss": 1.2178475189208984, + "step": 664800 + }, + { + "epoch": 88.65333333333334, + "grad_norm": 0.9188632369041443, + "learning_rate": 5.6942000000000005e-06, + "loss": 1.2229035186767578, + "step": 664900 + }, + { + "epoch": 88.66666666666667, + "grad_norm": 0.9534464478492737, + "learning_rate": 5.687533333333334e-06, + "loss": 1.2201636505126954, + "step": 665000 + }, + { + "epoch": 88.68, + "grad_norm": 0.8590039610862732, + "learning_rate": 5.680866666666667e-06, + "loss": 1.2217842102050782, + "step": 665100 + }, + { + "epoch": 88.69333333333333, + "grad_norm": 0.9341287016868591, + "learning_rate": 5.674200000000001e-06, + "loss": 1.2232160949707032, + "step": 665200 + }, + { + "epoch": 88.70666666666666, + "grad_norm": 0.851928174495697, + "learning_rate": 5.667533333333334e-06, + "loss": 1.2228545379638671, + "step": 665300 + }, + { + "epoch": 88.72, + "grad_norm": 0.8709028959274292, + "learning_rate": 5.660866666666667e-06, + "loss": 1.224917449951172, + "step": 665400 + }, + { + "epoch": 88.73333333333333, + "grad_norm": 0.9012889266014099, + "learning_rate": 5.654266666666667e-06, + "loss": 1.2241983795166016, + "step": 665500 + }, + { + "epoch": 88.74666666666667, + "grad_norm": 0.9009696245193481, + "learning_rate": 5.6476e-06, + "loss": 1.2221090698242187, + "step": 665600 + }, + { + "epoch": 88.76, + "grad_norm": 0.911006510257721, + "learning_rate": 5.640933333333334e-06, + "loss": 1.2238897705078124, + "step": 665700 + }, + { + "epoch": 88.77333333333333, + "grad_norm": 0.9231188297271729, + "learning_rate": 5.634266666666667e-06, + "loss": 1.2244586944580078, + "step": 665800 + }, + { + "epoch": 88.78666666666666, + "grad_norm": 0.8802729249000549, + "learning_rate": 5.6276e-06, + "loss": 1.2238041687011718, + "step": 665900 + }, + { + "epoch": 88.8, + "grad_norm": 0.9299485683441162, + "learning_rate": 5.620933333333333e-06, + "loss": 1.2228865814208985, + "step": 666000 + }, + { + "epoch": 88.81333333333333, + "grad_norm": 0.8775696754455566, + "learning_rate": 5.614266666666667e-06, + "loss": 1.2266053771972656, + "step": 666100 + }, + { + "epoch": 88.82666666666667, + "grad_norm": 0.8580496311187744, + "learning_rate": 5.6076e-06, + "loss": 1.2229470062255858, + "step": 666200 + }, + { + "epoch": 88.84, + "grad_norm": 0.9241933822631836, + "learning_rate": 5.6009333333333334e-06, + "loss": 1.2229337310791015, + "step": 666300 + }, + { + "epoch": 88.85333333333334, + "grad_norm": 0.9201433658599854, + "learning_rate": 5.594266666666667e-06, + "loss": 1.2231851959228515, + "step": 666400 + }, + { + "epoch": 88.86666666666666, + "grad_norm": 0.9110192060470581, + "learning_rate": 5.5876000000000005e-06, + "loss": 1.225495376586914, + "step": 666500 + }, + { + "epoch": 88.88, + "grad_norm": 0.9712668061256409, + "learning_rate": 5.580933333333334e-06, + "loss": 1.2213951873779296, + "step": 666600 + }, + { + "epoch": 88.89333333333333, + "grad_norm": 0.8844518065452576, + "learning_rate": 5.574266666666668e-06, + "loss": 1.2240930938720702, + "step": 666700 + }, + { + "epoch": 88.90666666666667, + "grad_norm": 0.9546579122543335, + "learning_rate": 5.567600000000001e-06, + "loss": 1.226476287841797, + "step": 666800 + }, + { + "epoch": 88.92, + "grad_norm": 0.8933039903640747, + "learning_rate": 5.560933333333333e-06, + "loss": 1.2249333953857422, + "step": 666900 + }, + { + "epoch": 88.93333333333334, + "grad_norm": 0.9278029799461365, + "learning_rate": 5.554266666666667e-06, + "loss": 1.224727325439453, + "step": 667000 + }, + { + "epoch": 88.94666666666667, + "grad_norm": 0.9233989119529724, + "learning_rate": 5.5476e-06, + "loss": 1.2280259704589844, + "step": 667100 + }, + { + "epoch": 88.96, + "grad_norm": 0.8747185468673706, + "learning_rate": 5.540933333333333e-06, + "loss": 1.2299307250976563, + "step": 667200 + }, + { + "epoch": 88.97333333333333, + "grad_norm": 0.9252629280090332, + "learning_rate": 5.534266666666667e-06, + "loss": 1.2250003051757812, + "step": 667300 + }, + { + "epoch": 88.98666666666666, + "grad_norm": 0.8873195052146912, + "learning_rate": 5.5276e-06, + "loss": 1.2243363189697265, + "step": 667400 + }, + { + "epoch": 89.0, + "grad_norm": 0.8737539052963257, + "learning_rate": 5.521e-06, + "loss": 1.2273259735107422, + "step": 667500 + }, + { + "epoch": 89.01333333333334, + "grad_norm": 0.8994724154472351, + "learning_rate": 5.514333333333334e-06, + "loss": 1.2065253448486328, + "step": 667600 + }, + { + "epoch": 89.02666666666667, + "grad_norm": 0.8773201107978821, + "learning_rate": 5.507666666666667e-06, + "loss": 1.2066268157958984, + "step": 667700 + }, + { + "epoch": 89.04, + "grad_norm": 0.9253839254379272, + "learning_rate": 5.501e-06, + "loss": 1.2097785949707032, + "step": 667800 + }, + { + "epoch": 89.05333333333333, + "grad_norm": 0.9354826211929321, + "learning_rate": 5.4943333333333335e-06, + "loss": 1.2124601745605468, + "step": 667900 + }, + { + "epoch": 89.06666666666666, + "grad_norm": 0.8192519545555115, + "learning_rate": 5.487666666666667e-06, + "loss": 1.2061328887939453, + "step": 668000 + }, + { + "epoch": 89.08, + "grad_norm": 0.8822228312492371, + "learning_rate": 5.481e-06, + "loss": 1.2111685180664062, + "step": 668100 + }, + { + "epoch": 89.09333333333333, + "grad_norm": 0.914986252784729, + "learning_rate": 5.474333333333334e-06, + "loss": 1.211805648803711, + "step": 668200 + }, + { + "epoch": 89.10666666666667, + "grad_norm": 0.9351910948753357, + "learning_rate": 5.467666666666667e-06, + "loss": 1.2042337036132813, + "step": 668300 + }, + { + "epoch": 89.12, + "grad_norm": 0.9000957012176514, + "learning_rate": 5.461e-06, + "loss": 1.2112418365478517, + "step": 668400 + }, + { + "epoch": 89.13333333333334, + "grad_norm": 0.9186215996742249, + "learning_rate": 5.454333333333334e-06, + "loss": 1.2067839050292968, + "step": 668500 + }, + { + "epoch": 89.14666666666666, + "grad_norm": 0.8771560788154602, + "learning_rate": 5.447666666666667e-06, + "loss": 1.2109234619140625, + "step": 668600 + }, + { + "epoch": 89.16, + "grad_norm": 0.9361634254455566, + "learning_rate": 5.441e-06, + "loss": 1.2112667846679688, + "step": 668700 + }, + { + "epoch": 89.17333333333333, + "grad_norm": 0.9080511331558228, + "learning_rate": 5.434333333333334e-06, + "loss": 1.2091513824462892, + "step": 668800 + }, + { + "epoch": 89.18666666666667, + "grad_norm": 0.9087415933609009, + "learning_rate": 5.427666666666667e-06, + "loss": 1.209826431274414, + "step": 668900 + }, + { + "epoch": 89.2, + "grad_norm": 0.8701626658439636, + "learning_rate": 5.421e-06, + "loss": 1.213840560913086, + "step": 669000 + }, + { + "epoch": 89.21333333333334, + "grad_norm": 0.8287436962127686, + "learning_rate": 5.414333333333333e-06, + "loss": 1.2152737426757811, + "step": 669100 + }, + { + "epoch": 89.22666666666667, + "grad_norm": 0.9009669423103333, + "learning_rate": 5.407666666666667e-06, + "loss": 1.2100643157958983, + "step": 669200 + }, + { + "epoch": 89.24, + "grad_norm": 0.9228776693344116, + "learning_rate": 5.4010000000000005e-06, + "loss": 1.2168802642822265, + "step": 669300 + }, + { + "epoch": 89.25333333333333, + "grad_norm": 0.8409181237220764, + "learning_rate": 5.394333333333334e-06, + "loss": 1.212371597290039, + "step": 669400 + }, + { + "epoch": 89.26666666666667, + "grad_norm": 0.8922165632247925, + "learning_rate": 5.3877333333333335e-06, + "loss": 1.2138323974609375, + "step": 669500 + }, + { + "epoch": 89.28, + "grad_norm": 0.9000787138938904, + "learning_rate": 5.381066666666667e-06, + "loss": 1.211551742553711, + "step": 669600 + }, + { + "epoch": 89.29333333333334, + "grad_norm": 0.8795856237411499, + "learning_rate": 5.374400000000001e-06, + "loss": 1.209929428100586, + "step": 669700 + }, + { + "epoch": 89.30666666666667, + "grad_norm": 0.8757795691490173, + "learning_rate": 5.367733333333334e-06, + "loss": 1.2100962829589843, + "step": 669800 + }, + { + "epoch": 89.32, + "grad_norm": 0.9000317454338074, + "learning_rate": 5.361066666666667e-06, + "loss": 1.2151318359375, + "step": 669900 + }, + { + "epoch": 89.33333333333333, + "grad_norm": 0.9361692667007446, + "learning_rate": 5.354400000000001e-06, + "loss": 1.212879638671875, + "step": 670000 + }, + { + "epoch": 89.34666666666666, + "grad_norm": 0.8566330671310425, + "learning_rate": 5.347733333333334e-06, + "loss": 1.2143052673339845, + "step": 670100 + }, + { + "epoch": 89.36, + "grad_norm": 0.9182000160217285, + "learning_rate": 5.341066666666667e-06, + "loss": 1.2156490325927733, + "step": 670200 + }, + { + "epoch": 89.37333333333333, + "grad_norm": 0.8849942684173584, + "learning_rate": 5.3344e-06, + "loss": 1.2155682373046874, + "step": 670300 + }, + { + "epoch": 89.38666666666667, + "grad_norm": 0.948589563369751, + "learning_rate": 5.327733333333334e-06, + "loss": 1.2158618927001954, + "step": 670400 + }, + { + "epoch": 89.4, + "grad_norm": 0.870638906955719, + "learning_rate": 5.321066666666667e-06, + "loss": 1.2140827178955078, + "step": 670500 + }, + { + "epoch": 89.41333333333333, + "grad_norm": 0.9196882247924805, + "learning_rate": 5.3144e-06, + "loss": 1.2150801086425782, + "step": 670600 + }, + { + "epoch": 89.42666666666666, + "grad_norm": 0.9664023518562317, + "learning_rate": 5.3077333333333334e-06, + "loss": 1.216825942993164, + "step": 670700 + }, + { + "epoch": 89.44, + "grad_norm": 0.9256287813186646, + "learning_rate": 5.3010666666666665e-06, + "loss": 1.212283935546875, + "step": 670800 + }, + { + "epoch": 89.45333333333333, + "grad_norm": 0.8842042684555054, + "learning_rate": 5.2944e-06, + "loss": 1.2171527862548828, + "step": 670900 + }, + { + "epoch": 89.46666666666667, + "grad_norm": 0.8998342752456665, + "learning_rate": 5.287733333333334e-06, + "loss": 1.212213363647461, + "step": 671000 + }, + { + "epoch": 89.48, + "grad_norm": 0.8604910969734192, + "learning_rate": 5.281066666666667e-06, + "loss": 1.2178185272216797, + "step": 671100 + }, + { + "epoch": 89.49333333333334, + "grad_norm": 0.9574484825134277, + "learning_rate": 5.2744e-06, + "loss": 1.2192330169677734, + "step": 671200 + }, + { + "epoch": 89.50666666666666, + "grad_norm": 0.9058186411857605, + "learning_rate": 5.267733333333334e-06, + "loss": 1.2213152313232423, + "step": 671300 + }, + { + "epoch": 89.52, + "grad_norm": 0.8801227807998657, + "learning_rate": 5.261066666666667e-06, + "loss": 1.2144708251953125, + "step": 671400 + }, + { + "epoch": 89.53333333333333, + "grad_norm": 0.9073898196220398, + "learning_rate": 5.2544e-06, + "loss": 1.2126658630371094, + "step": 671500 + }, + { + "epoch": 89.54666666666667, + "grad_norm": 0.8924538493156433, + "learning_rate": 5.2478e-06, + "loss": 1.2133853149414062, + "step": 671600 + }, + { + "epoch": 89.56, + "grad_norm": 0.8589732646942139, + "learning_rate": 5.241133333333333e-06, + "loss": 1.216434783935547, + "step": 671700 + }, + { + "epoch": 89.57333333333334, + "grad_norm": 0.8957362174987793, + "learning_rate": 5.234466666666667e-06, + "loss": 1.2140837860107423, + "step": 671800 + }, + { + "epoch": 89.58666666666667, + "grad_norm": 0.9001540541648865, + "learning_rate": 5.2278e-06, + "loss": 1.2144945526123048, + "step": 671900 + }, + { + "epoch": 89.6, + "grad_norm": 0.9157114028930664, + "learning_rate": 5.221133333333333e-06, + "loss": 1.217526397705078, + "step": 672000 + }, + { + "epoch": 89.61333333333333, + "grad_norm": 0.9104243516921997, + "learning_rate": 5.214466666666666e-06, + "loss": 1.2151515197753906, + "step": 672100 + }, + { + "epoch": 89.62666666666667, + "grad_norm": 0.9351614117622375, + "learning_rate": 5.2078e-06, + "loss": 1.2169363403320312, + "step": 672200 + }, + { + "epoch": 89.64, + "grad_norm": 0.8728863596916199, + "learning_rate": 5.2011333333333335e-06, + "loss": 1.2184024810791017, + "step": 672300 + }, + { + "epoch": 89.65333333333334, + "grad_norm": 0.8635854125022888, + "learning_rate": 5.194466666666667e-06, + "loss": 1.221156997680664, + "step": 672400 + }, + { + "epoch": 89.66666666666667, + "grad_norm": 0.964632511138916, + "learning_rate": 5.1878000000000005e-06, + "loss": 1.2214126586914062, + "step": 672500 + }, + { + "epoch": 89.68, + "grad_norm": 0.934449315071106, + "learning_rate": 5.181133333333334e-06, + "loss": 1.2185586547851563, + "step": 672600 + }, + { + "epoch": 89.69333333333333, + "grad_norm": 0.8776857256889343, + "learning_rate": 5.174466666666667e-06, + "loss": 1.223541488647461, + "step": 672700 + }, + { + "epoch": 89.70666666666666, + "grad_norm": 0.9184494018554688, + "learning_rate": 5.167800000000001e-06, + "loss": 1.2196424865722657, + "step": 672800 + }, + { + "epoch": 89.72, + "grad_norm": 0.9252554178237915, + "learning_rate": 5.161133333333334e-06, + "loss": 1.216479263305664, + "step": 672900 + }, + { + "epoch": 89.73333333333333, + "grad_norm": 0.8667902946472168, + "learning_rate": 5.154466666666667e-06, + "loss": 1.2210060882568359, + "step": 673000 + }, + { + "epoch": 89.74666666666667, + "grad_norm": 0.8820723295211792, + "learning_rate": 5.147800000000001e-06, + "loss": 1.218407211303711, + "step": 673100 + }, + { + "epoch": 89.76, + "grad_norm": 0.8611978888511658, + "learning_rate": 5.141133333333334e-06, + "loss": 1.2198648071289062, + "step": 673200 + }, + { + "epoch": 89.77333333333333, + "grad_norm": 0.8947012424468994, + "learning_rate": 5.134466666666666e-06, + "loss": 1.223352584838867, + "step": 673300 + }, + { + "epoch": 89.78666666666666, + "grad_norm": 0.8866718411445618, + "learning_rate": 5.1278e-06, + "loss": 1.2186518096923828, + "step": 673400 + }, + { + "epoch": 89.8, + "grad_norm": 0.8624308705329895, + "learning_rate": 5.121133333333333e-06, + "loss": 1.2187384033203126, + "step": 673500 + }, + { + "epoch": 89.81333333333333, + "grad_norm": 0.9323912858963013, + "learning_rate": 5.114533333333333e-06, + "loss": 1.2192816925048828, + "step": 673600 + }, + { + "epoch": 89.82666666666667, + "grad_norm": 0.8835723996162415, + "learning_rate": 5.107866666666667e-06, + "loss": 1.2200238037109374, + "step": 673700 + }, + { + "epoch": 89.84, + "grad_norm": 0.9300037026405334, + "learning_rate": 5.1012e-06, + "loss": 1.2211270141601562, + "step": 673800 + }, + { + "epoch": 89.85333333333334, + "grad_norm": 0.8939962983131409, + "learning_rate": 5.0945333333333335e-06, + "loss": 1.2231653594970704, + "step": 673900 + }, + { + "epoch": 89.86666666666666, + "grad_norm": 0.8576112985610962, + "learning_rate": 5.0878666666666675e-06, + "loss": 1.2236614990234376, + "step": 674000 + }, + { + "epoch": 89.88, + "grad_norm": 0.9398141503334045, + "learning_rate": 5.081200000000001e-06, + "loss": 1.2185122680664062, + "step": 674100 + }, + { + "epoch": 89.89333333333333, + "grad_norm": 0.8942651152610779, + "learning_rate": 5.074533333333334e-06, + "loss": 1.2213440704345704, + "step": 674200 + }, + { + "epoch": 89.90666666666667, + "grad_norm": 0.9299342036247253, + "learning_rate": 5.067866666666667e-06, + "loss": 1.217512741088867, + "step": 674300 + }, + { + "epoch": 89.92, + "grad_norm": 0.9243706464767456, + "learning_rate": 5.0612e-06, + "loss": 1.2212284851074218, + "step": 674400 + }, + { + "epoch": 89.93333333333334, + "grad_norm": 0.9882511496543884, + "learning_rate": 5.054533333333333e-06, + "loss": 1.2185203552246093, + "step": 674500 + }, + { + "epoch": 89.94666666666667, + "grad_norm": 0.8811713457107544, + "learning_rate": 5.047866666666667e-06, + "loss": 1.2216316223144532, + "step": 674600 + }, + { + "epoch": 89.96, + "grad_norm": 0.8866249322891235, + "learning_rate": 5.0412e-06, + "loss": 1.2194962310791015, + "step": 674700 + }, + { + "epoch": 89.97333333333333, + "grad_norm": 0.8802648186683655, + "learning_rate": 5.034533333333333e-06, + "loss": 1.222801513671875, + "step": 674800 + }, + { + "epoch": 89.98666666666666, + "grad_norm": 0.9410952925682068, + "learning_rate": 5.027866666666667e-06, + "loss": 1.22396484375, + "step": 674900 + }, + { + "epoch": 90.0, + "grad_norm": 0.8734154105186462, + "learning_rate": 5.0212e-06, + "loss": 1.2178419494628907, + "step": 675000 + }, + { + "epoch": 90.01333333333334, + "grad_norm": 0.9289048910140991, + "learning_rate": 5.014533333333333e-06, + "loss": 1.2043888092041015, + "step": 675100 + }, + { + "epoch": 90.02666666666667, + "grad_norm": 0.918481707572937, + "learning_rate": 5.0078666666666665e-06, + "loss": 1.2099720001220704, + "step": 675200 + }, + { + "epoch": 90.04, + "grad_norm": 0.9005312919616699, + "learning_rate": 5.0012000000000005e-06, + "loss": 1.2031187438964843, + "step": 675300 + }, + { + "epoch": 90.05333333333333, + "grad_norm": 0.957449197769165, + "learning_rate": 4.994533333333334e-06, + "loss": 1.2071781158447266, + "step": 675400 + }, + { + "epoch": 90.06666666666666, + "grad_norm": 0.910042941570282, + "learning_rate": 4.987866666666667e-06, + "loss": 1.2066966247558595, + "step": 675500 + }, + { + "epoch": 90.08, + "grad_norm": 0.8937907218933105, + "learning_rate": 4.981266666666667e-06, + "loss": 1.2074835205078125, + "step": 675600 + }, + { + "epoch": 90.09333333333333, + "grad_norm": 0.8752577900886536, + "learning_rate": 4.9746e-06, + "loss": 1.208895492553711, + "step": 675700 + }, + { + "epoch": 90.10666666666667, + "grad_norm": 0.8520717620849609, + "learning_rate": 4.967933333333334e-06, + "loss": 1.2053620147705078, + "step": 675800 + }, + { + "epoch": 90.12, + "grad_norm": 0.8855275511741638, + "learning_rate": 4.961266666666667e-06, + "loss": 1.208665771484375, + "step": 675900 + }, + { + "epoch": 90.13333333333334, + "grad_norm": 0.9631090760231018, + "learning_rate": 4.9546e-06, + "loss": 1.2092572021484376, + "step": 676000 + }, + { + "epoch": 90.14666666666666, + "grad_norm": 0.8636735677719116, + "learning_rate": 4.947933333333334e-06, + "loss": 1.205884246826172, + "step": 676100 + }, + { + "epoch": 90.16, + "grad_norm": 0.9243836998939514, + "learning_rate": 4.941266666666667e-06, + "loss": 1.2106959533691406, + "step": 676200 + }, + { + "epoch": 90.17333333333333, + "grad_norm": 0.9383106231689453, + "learning_rate": 4.9346e-06, + "loss": 1.2110034942626953, + "step": 676300 + }, + { + "epoch": 90.18666666666667, + "grad_norm": 0.8857131600379944, + "learning_rate": 4.927933333333334e-06, + "loss": 1.2083201599121094, + "step": 676400 + }, + { + "epoch": 90.2, + "grad_norm": 0.9113370180130005, + "learning_rate": 4.921266666666667e-06, + "loss": 1.2091306304931642, + "step": 676500 + }, + { + "epoch": 90.21333333333334, + "grad_norm": 0.8388907313346863, + "learning_rate": 4.9146e-06, + "loss": 1.2119139862060546, + "step": 676600 + }, + { + "epoch": 90.22666666666667, + "grad_norm": 0.847788393497467, + "learning_rate": 4.9079333333333335e-06, + "loss": 1.210832061767578, + "step": 676700 + }, + { + "epoch": 90.24, + "grad_norm": 0.8751381039619446, + "learning_rate": 4.901266666666667e-06, + "loss": 1.20989013671875, + "step": 676800 + }, + { + "epoch": 90.25333333333333, + "grad_norm": 0.8831285238265991, + "learning_rate": 4.8946000000000005e-06, + "loss": 1.2075450134277343, + "step": 676900 + }, + { + "epoch": 90.26666666666667, + "grad_norm": 0.9753007888793945, + "learning_rate": 4.887933333333334e-06, + "loss": 1.2117955780029297, + "step": 677000 + }, + { + "epoch": 90.28, + "grad_norm": 0.952491819858551, + "learning_rate": 4.881266666666667e-06, + "loss": 1.212402572631836, + "step": 677100 + }, + { + "epoch": 90.29333333333334, + "grad_norm": 0.9106137156486511, + "learning_rate": 4.8746e-06, + "loss": 1.2052900695800781, + "step": 677200 + }, + { + "epoch": 90.30666666666667, + "grad_norm": 0.926100492477417, + "learning_rate": 4.867933333333333e-06, + "loss": 1.2105538177490234, + "step": 677300 + }, + { + "epoch": 90.32, + "grad_norm": 0.8455801010131836, + "learning_rate": 4.861266666666667e-06, + "loss": 1.2121770477294922, + "step": 677400 + }, + { + "epoch": 90.33333333333333, + "grad_norm": 0.9143370389938354, + "learning_rate": 4.8546e-06, + "loss": 1.2079702758789062, + "step": 677500 + }, + { + "epoch": 90.34666666666666, + "grad_norm": 0.8968600034713745, + "learning_rate": 4.848000000000001e-06, + "loss": 1.2125999450683593, + "step": 677600 + }, + { + "epoch": 90.36, + "grad_norm": 0.8847452402114868, + "learning_rate": 4.841333333333334e-06, + "loss": 1.2117592620849609, + "step": 677700 + }, + { + "epoch": 90.37333333333333, + "grad_norm": 0.9163066744804382, + "learning_rate": 4.834666666666667e-06, + "loss": 1.2076231384277343, + "step": 677800 + }, + { + "epoch": 90.38666666666667, + "grad_norm": 0.9202780723571777, + "learning_rate": 4.828e-06, + "loss": 1.210972213745117, + "step": 677900 + }, + { + "epoch": 90.4, + "grad_norm": 0.9594050049781799, + "learning_rate": 4.821333333333333e-06, + "loss": 1.2101927947998048, + "step": 678000 + }, + { + "epoch": 90.41333333333333, + "grad_norm": 0.8588058948516846, + "learning_rate": 4.814666666666666e-06, + "loss": 1.2125477600097656, + "step": 678100 + }, + { + "epoch": 90.42666666666666, + "grad_norm": 0.8945148587226868, + "learning_rate": 4.808e-06, + "loss": 1.2116073608398437, + "step": 678200 + }, + { + "epoch": 90.44, + "grad_norm": 0.9500113129615784, + "learning_rate": 4.8013333333333335e-06, + "loss": 1.2133517456054688, + "step": 678300 + }, + { + "epoch": 90.45333333333333, + "grad_norm": 0.8919427990913391, + "learning_rate": 4.794666666666667e-06, + "loss": 1.2090089416503906, + "step": 678400 + }, + { + "epoch": 90.46666666666667, + "grad_norm": 0.9410059452056885, + "learning_rate": 4.788e-06, + "loss": 1.210514144897461, + "step": 678500 + }, + { + "epoch": 90.48, + "grad_norm": 0.9124793410301208, + "learning_rate": 4.781333333333334e-06, + "loss": 1.2172020721435546, + "step": 678600 + }, + { + "epoch": 90.49333333333334, + "grad_norm": 0.9013743996620178, + "learning_rate": 4.774666666666667e-06, + "loss": 1.2081442260742188, + "step": 678700 + }, + { + "epoch": 90.50666666666666, + "grad_norm": 0.9235624670982361, + "learning_rate": 4.768e-06, + "loss": 1.2106606292724609, + "step": 678800 + }, + { + "epoch": 90.52, + "grad_norm": 0.9490922689437866, + "learning_rate": 4.761333333333334e-06, + "loss": 1.2129822540283204, + "step": 678900 + }, + { + "epoch": 90.53333333333333, + "grad_norm": 0.9190055727958679, + "learning_rate": 4.754666666666667e-06, + "loss": 1.2117118835449219, + "step": 679000 + }, + { + "epoch": 90.54666666666667, + "grad_norm": 0.9155454635620117, + "learning_rate": 4.748e-06, + "loss": 1.2153356170654297, + "step": 679100 + }, + { + "epoch": 90.56, + "grad_norm": 0.9508551955223083, + "learning_rate": 4.741333333333334e-06, + "loss": 1.214925765991211, + "step": 679200 + }, + { + "epoch": 90.57333333333334, + "grad_norm": 0.9003883600234985, + "learning_rate": 4.734666666666667e-06, + "loss": 1.2155438232421876, + "step": 679300 + }, + { + "epoch": 90.58666666666667, + "grad_norm": 0.8104000091552734, + "learning_rate": 4.728e-06, + "loss": 1.212996063232422, + "step": 679400 + }, + { + "epoch": 90.6, + "grad_norm": 0.8884322047233582, + "learning_rate": 4.721333333333334e-06, + "loss": 1.208837890625, + "step": 679500 + }, + { + "epoch": 90.61333333333333, + "grad_norm": 0.900663435459137, + "learning_rate": 4.714733333333333e-06, + "loss": 1.2164701843261718, + "step": 679600 + }, + { + "epoch": 90.62666666666667, + "grad_norm": 0.9068719148635864, + "learning_rate": 4.7080666666666665e-06, + "loss": 1.2146306610107422, + "step": 679700 + }, + { + "epoch": 90.64, + "grad_norm": 0.8906852006912231, + "learning_rate": 4.7014e-06, + "loss": 1.211735382080078, + "step": 679800 + }, + { + "epoch": 90.65333333333334, + "grad_norm": 0.8880618214607239, + "learning_rate": 4.6947333333333335e-06, + "loss": 1.2147854614257811, + "step": 679900 + }, + { + "epoch": 90.66666666666667, + "grad_norm": 0.9201205372810364, + "learning_rate": 4.688066666666667e-06, + "loss": 1.2103929901123047, + "step": 680000 + }, + { + "epoch": 90.68, + "grad_norm": 0.8812013864517212, + "learning_rate": 4.681400000000001e-06, + "loss": 1.2157184600830078, + "step": 680100 + }, + { + "epoch": 90.69333333333333, + "grad_norm": 0.8855476975440979, + "learning_rate": 4.674733333333334e-06, + "loss": 1.2132430267333985, + "step": 680200 + }, + { + "epoch": 90.70666666666666, + "grad_norm": 0.9242827892303467, + "learning_rate": 4.668066666666667e-06, + "loss": 1.2172369384765624, + "step": 680300 + }, + { + "epoch": 90.72, + "grad_norm": 0.9888787865638733, + "learning_rate": 4.661400000000001e-06, + "loss": 1.2181033325195312, + "step": 680400 + }, + { + "epoch": 90.73333333333333, + "grad_norm": 0.9318944811820984, + "learning_rate": 4.654733333333334e-06, + "loss": 1.2127987670898437, + "step": 680500 + }, + { + "epoch": 90.74666666666667, + "grad_norm": 0.9456973671913147, + "learning_rate": 4.648066666666667e-06, + "loss": 1.213536834716797, + "step": 680600 + }, + { + "epoch": 90.76, + "grad_norm": 0.951168954372406, + "learning_rate": 4.6414e-06, + "loss": 1.2176351928710938, + "step": 680700 + }, + { + "epoch": 90.77333333333333, + "grad_norm": 0.9500468969345093, + "learning_rate": 4.634733333333333e-06, + "loss": 1.2171255493164062, + "step": 680800 + }, + { + "epoch": 90.78666666666666, + "grad_norm": 0.9571161270141602, + "learning_rate": 4.628066666666666e-06, + "loss": 1.2125713348388671, + "step": 680900 + }, + { + "epoch": 90.8, + "grad_norm": 0.9615257978439331, + "learning_rate": 4.6214e-06, + "loss": 1.2181266021728516, + "step": 681000 + }, + { + "epoch": 90.81333333333333, + "grad_norm": 0.9538195133209229, + "learning_rate": 4.6147333333333335e-06, + "loss": 1.2164169311523438, + "step": 681100 + }, + { + "epoch": 90.82666666666667, + "grad_norm": 0.9797369241714478, + "learning_rate": 4.6080666666666666e-06, + "loss": 1.218907012939453, + "step": 681200 + }, + { + "epoch": 90.84, + "grad_norm": 0.9338709712028503, + "learning_rate": 4.6014000000000005e-06, + "loss": 1.2184577941894532, + "step": 681300 + }, + { + "epoch": 90.85333333333334, + "grad_norm": 0.9682694673538208, + "learning_rate": 4.594733333333334e-06, + "loss": 1.2135367584228516, + "step": 681400 + }, + { + "epoch": 90.86666666666666, + "grad_norm": 0.8703393936157227, + "learning_rate": 4.588066666666667e-06, + "loss": 1.2133425903320312, + "step": 681500 + }, + { + "epoch": 90.88, + "grad_norm": 0.9350166916847229, + "learning_rate": 4.581466666666667e-06, + "loss": 1.2187168884277344, + "step": 681600 + }, + { + "epoch": 90.89333333333333, + "grad_norm": 0.8443960547447205, + "learning_rate": 4.5748e-06, + "loss": 1.2129023742675782, + "step": 681700 + }, + { + "epoch": 90.90666666666667, + "grad_norm": 0.9225748181343079, + "learning_rate": 4.568133333333333e-06, + "loss": 1.21633056640625, + "step": 681800 + }, + { + "epoch": 90.92, + "grad_norm": 0.8942683339118958, + "learning_rate": 4.561466666666667e-06, + "loss": 1.2165023040771485, + "step": 681900 + }, + { + "epoch": 90.93333333333334, + "grad_norm": 0.9616734981536865, + "learning_rate": 4.5548e-06, + "loss": 1.2154533386230468, + "step": 682000 + }, + { + "epoch": 90.94666666666667, + "grad_norm": 0.881159782409668, + "learning_rate": 4.548133333333333e-06, + "loss": 1.2169892120361328, + "step": 682100 + }, + { + "epoch": 90.96, + "grad_norm": 0.9500011205673218, + "learning_rate": 4.541466666666667e-06, + "loss": 1.218693389892578, + "step": 682200 + }, + { + "epoch": 90.97333333333333, + "grad_norm": 0.9119076728820801, + "learning_rate": 4.5348e-06, + "loss": 1.216949462890625, + "step": 682300 + }, + { + "epoch": 90.98666666666666, + "grad_norm": 0.8956566452980042, + "learning_rate": 4.528133333333333e-06, + "loss": 1.2165196228027344, + "step": 682400 + }, + { + "epoch": 91.0, + "grad_norm": 0.8929473757743835, + "learning_rate": 4.521466666666667e-06, + "loss": 1.2148597717285157, + "step": 682500 + }, + { + "epoch": 91.01333333333334, + "grad_norm": 0.85610431432724, + "learning_rate": 4.5148e-06, + "loss": 1.200636215209961, + "step": 682600 + }, + { + "epoch": 91.02666666666667, + "grad_norm": 0.9160832166671753, + "learning_rate": 4.5081333333333335e-06, + "loss": 1.2068274688720704, + "step": 682700 + }, + { + "epoch": 91.04, + "grad_norm": 0.9119850993156433, + "learning_rate": 4.501466666666667e-06, + "loss": 1.208277587890625, + "step": 682800 + }, + { + "epoch": 91.05333333333333, + "grad_norm": 0.9079209566116333, + "learning_rate": 4.4948000000000006e-06, + "loss": 1.2017269897460938, + "step": 682900 + }, + { + "epoch": 91.06666666666666, + "grad_norm": 0.9564381241798401, + "learning_rate": 4.488133333333334e-06, + "loss": 1.207140655517578, + "step": 683000 + }, + { + "epoch": 91.08, + "grad_norm": 0.9598597288131714, + "learning_rate": 4.481466666666667e-06, + "loss": 1.203281784057617, + "step": 683100 + }, + { + "epoch": 91.09333333333333, + "grad_norm": 0.861584484577179, + "learning_rate": 4.474800000000001e-06, + "loss": 1.2081224060058593, + "step": 683200 + }, + { + "epoch": 91.10666666666667, + "grad_norm": 0.8429510593414307, + "learning_rate": 4.468133333333334e-06, + "loss": 1.2070238494873047, + "step": 683300 + }, + { + "epoch": 91.12, + "grad_norm": 0.8890085220336914, + "learning_rate": 4.461466666666667e-06, + "loss": 1.2043938446044922, + "step": 683400 + }, + { + "epoch": 91.13333333333334, + "grad_norm": 0.8663833737373352, + "learning_rate": 4.4548e-06, + "loss": 1.20203125, + "step": 683500 + }, + { + "epoch": 91.14666666666666, + "grad_norm": 0.9313666224479675, + "learning_rate": 4.448133333333333e-06, + "loss": 1.2063787841796876, + "step": 683600 + }, + { + "epoch": 91.16, + "grad_norm": 0.8840457201004028, + "learning_rate": 4.441533333333334e-06, + "loss": 1.2069801330566405, + "step": 683700 + }, + { + "epoch": 91.17333333333333, + "grad_norm": 0.8782556653022766, + "learning_rate": 4.434866666666667e-06, + "loss": 1.2082003021240235, + "step": 683800 + }, + { + "epoch": 91.18666666666667, + "grad_norm": 0.9454366564750671, + "learning_rate": 4.4282e-06, + "loss": 1.2090266418457032, + "step": 683900 + }, + { + "epoch": 91.2, + "grad_norm": 0.8991572260856628, + "learning_rate": 4.421533333333334e-06, + "loss": 1.2046781921386718, + "step": 684000 + }, + { + "epoch": 91.21333333333334, + "grad_norm": 0.8746281862258911, + "learning_rate": 4.414866666666667e-06, + "loss": 1.2073801422119141, + "step": 684100 + }, + { + "epoch": 91.22666666666667, + "grad_norm": 0.9214029312133789, + "learning_rate": 4.4082e-06, + "loss": 1.2062918853759765, + "step": 684200 + }, + { + "epoch": 91.24, + "grad_norm": 0.9604611992835999, + "learning_rate": 4.4015333333333335e-06, + "loss": 1.2054164123535156, + "step": 684300 + }, + { + "epoch": 91.25333333333333, + "grad_norm": 0.8675783276557922, + "learning_rate": 4.394866666666667e-06, + "loss": 1.208896942138672, + "step": 684400 + }, + { + "epoch": 91.26666666666667, + "grad_norm": 0.9738113880157471, + "learning_rate": 4.3882e-06, + "loss": 1.2100360107421875, + "step": 684500 + }, + { + "epoch": 91.28, + "grad_norm": 0.8885136842727661, + "learning_rate": 4.381533333333334e-06, + "loss": 1.2070569610595703, + "step": 684600 + }, + { + "epoch": 91.29333333333334, + "grad_norm": 0.9425179362297058, + "learning_rate": 4.374866666666667e-06, + "loss": 1.2077506256103516, + "step": 684700 + }, + { + "epoch": 91.30666666666667, + "grad_norm": 0.9048968553543091, + "learning_rate": 4.3682e-06, + "loss": 1.2081721496582032, + "step": 684800 + }, + { + "epoch": 91.32, + "grad_norm": 0.9390761256217957, + "learning_rate": 4.361533333333333e-06, + "loss": 1.207364044189453, + "step": 684900 + }, + { + "epoch": 91.33333333333333, + "grad_norm": 0.9158327579498291, + "learning_rate": 4.354866666666667e-06, + "loss": 1.2073294830322265, + "step": 685000 + }, + { + "epoch": 91.34666666666666, + "grad_norm": 0.8673156499862671, + "learning_rate": 4.3482e-06, + "loss": 1.2052005004882813, + "step": 685100 + }, + { + "epoch": 91.36, + "grad_norm": 0.8864044547080994, + "learning_rate": 4.341533333333333e-06, + "loss": 1.2118058013916015, + "step": 685200 + }, + { + "epoch": 91.37333333333333, + "grad_norm": 0.9207347631454468, + "learning_rate": 4.334866666666667e-06, + "loss": 1.2065187835693358, + "step": 685300 + }, + { + "epoch": 91.38666666666667, + "grad_norm": 0.900858998298645, + "learning_rate": 4.3282e-06, + "loss": 1.2105420684814454, + "step": 685400 + }, + { + "epoch": 91.4, + "grad_norm": 0.9267945885658264, + "learning_rate": 4.3215333333333335e-06, + "loss": 1.20435302734375, + "step": 685500 + }, + { + "epoch": 91.41333333333333, + "grad_norm": 0.9637866020202637, + "learning_rate": 4.314866666666667e-06, + "loss": 1.2085104370117188, + "step": 685600 + }, + { + "epoch": 91.42666666666666, + "grad_norm": 0.9455682039260864, + "learning_rate": 4.3082666666666665e-06, + "loss": 1.2091656494140626, + "step": 685700 + }, + { + "epoch": 91.44, + "grad_norm": 0.8735678195953369, + "learning_rate": 4.3016000000000005e-06, + "loss": 1.2076645660400391, + "step": 685800 + }, + { + "epoch": 91.45333333333333, + "grad_norm": 0.9294810891151428, + "learning_rate": 4.2949333333333336e-06, + "loss": 1.208891830444336, + "step": 685900 + }, + { + "epoch": 91.46666666666667, + "grad_norm": 0.92054283618927, + "learning_rate": 4.288266666666667e-06, + "loss": 1.2102249145507813, + "step": 686000 + }, + { + "epoch": 91.48, + "grad_norm": 0.8439618349075317, + "learning_rate": 4.2816e-06, + "loss": 1.2142427062988281, + "step": 686100 + }, + { + "epoch": 91.49333333333334, + "grad_norm": 0.8484886884689331, + "learning_rate": 4.274933333333334e-06, + "loss": 1.2077330017089845, + "step": 686200 + }, + { + "epoch": 91.50666666666666, + "grad_norm": 0.9745410680770874, + "learning_rate": 4.268266666666667e-06, + "loss": 1.2066510009765625, + "step": 686300 + }, + { + "epoch": 91.52, + "grad_norm": 0.8893364667892456, + "learning_rate": 4.2616e-06, + "loss": 1.2086053466796876, + "step": 686400 + }, + { + "epoch": 91.53333333333333, + "grad_norm": 0.8825772404670715, + "learning_rate": 4.254933333333334e-06, + "loss": 1.2083636474609376, + "step": 686500 + }, + { + "epoch": 91.54666666666667, + "grad_norm": 0.8804160356521606, + "learning_rate": 4.248266666666667e-06, + "loss": 1.2095064544677734, + "step": 686600 + }, + { + "epoch": 91.56, + "grad_norm": 0.9658887386322021, + "learning_rate": 4.2416e-06, + "loss": 1.2093119049072265, + "step": 686700 + }, + { + "epoch": 91.57333333333334, + "grad_norm": 0.952987790107727, + "learning_rate": 4.234933333333334e-06, + "loss": 1.2097184753417969, + "step": 686800 + }, + { + "epoch": 91.58666666666667, + "grad_norm": 0.8630662560462952, + "learning_rate": 4.228266666666667e-06, + "loss": 1.2081199645996095, + "step": 686900 + }, + { + "epoch": 91.6, + "grad_norm": 0.9706721901893616, + "learning_rate": 4.2215999999999995e-06, + "loss": 1.2103736114501953, + "step": 687000 + }, + { + "epoch": 91.61333333333333, + "grad_norm": 0.9168404936790466, + "learning_rate": 4.2149333333333335e-06, + "loss": 1.2104512023925782, + "step": 687100 + }, + { + "epoch": 91.62666666666667, + "grad_norm": 0.9021251201629639, + "learning_rate": 4.208266666666667e-06, + "loss": 1.208455810546875, + "step": 687200 + }, + { + "epoch": 91.64, + "grad_norm": 0.9148797392845154, + "learning_rate": 4.2016e-06, + "loss": 1.21326904296875, + "step": 687300 + }, + { + "epoch": 91.65333333333334, + "grad_norm": 0.8841809630393982, + "learning_rate": 4.194933333333334e-06, + "loss": 1.2070911407470704, + "step": 687400 + }, + { + "epoch": 91.66666666666667, + "grad_norm": 0.9368838667869568, + "learning_rate": 4.188266666666667e-06, + "loss": 1.2107268524169923, + "step": 687500 + }, + { + "epoch": 91.68, + "grad_norm": 0.9060821533203125, + "learning_rate": 4.1816e-06, + "loss": 1.2130730438232422, + "step": 687600 + }, + { + "epoch": 91.69333333333333, + "grad_norm": 0.9751666188240051, + "learning_rate": 4.175000000000001e-06, + "loss": 1.2097231292724608, + "step": 687700 + }, + { + "epoch": 91.70666666666666, + "grad_norm": 0.8472406268119812, + "learning_rate": 4.168333333333334e-06, + "loss": 1.2085147094726563, + "step": 687800 + }, + { + "epoch": 91.72, + "grad_norm": 1.005416989326477, + "learning_rate": 4.161666666666667e-06, + "loss": 1.2118323516845704, + "step": 687900 + }, + { + "epoch": 91.73333333333333, + "grad_norm": 0.8820925951004028, + "learning_rate": 4.155e-06, + "loss": 1.2112535095214845, + "step": 688000 + }, + { + "epoch": 91.74666666666667, + "grad_norm": 0.8622952103614807, + "learning_rate": 4.148333333333333e-06, + "loss": 1.2110252380371094, + "step": 688100 + }, + { + "epoch": 91.76, + "grad_norm": 0.8722947239875793, + "learning_rate": 4.141666666666666e-06, + "loss": 1.2133953857421875, + "step": 688200 + }, + { + "epoch": 91.77333333333333, + "grad_norm": 0.9638639688491821, + "learning_rate": 4.135e-06, + "loss": 1.2091949462890625, + "step": 688300 + }, + { + "epoch": 91.78666666666666, + "grad_norm": 0.9140656590461731, + "learning_rate": 4.128333333333333e-06, + "loss": 1.2114816284179688, + "step": 688400 + }, + { + "epoch": 91.8, + "grad_norm": 0.9216871857643127, + "learning_rate": 4.1216666666666665e-06, + "loss": 1.2120486450195314, + "step": 688500 + }, + { + "epoch": 91.81333333333333, + "grad_norm": 0.8618937134742737, + "learning_rate": 4.115e-06, + "loss": 1.2109370422363281, + "step": 688600 + }, + { + "epoch": 91.82666666666667, + "grad_norm": 0.8921952247619629, + "learning_rate": 4.1083333333333335e-06, + "loss": 1.2133558654785157, + "step": 688700 + }, + { + "epoch": 91.84, + "grad_norm": 0.895045280456543, + "learning_rate": 4.101666666666667e-06, + "loss": 1.2121337890625, + "step": 688800 + }, + { + "epoch": 91.85333333333334, + "grad_norm": 0.8907344341278076, + "learning_rate": 4.095000000000001e-06, + "loss": 1.2133706665039063, + "step": 688900 + }, + { + "epoch": 91.86666666666666, + "grad_norm": 0.87125563621521, + "learning_rate": 4.088333333333334e-06, + "loss": 1.2131654357910155, + "step": 689000 + }, + { + "epoch": 91.88, + "grad_norm": 0.8448019623756409, + "learning_rate": 4.081666666666667e-06, + "loss": 1.2095771026611328, + "step": 689100 + }, + { + "epoch": 91.89333333333333, + "grad_norm": 0.8955243229866028, + "learning_rate": 4.075e-06, + "loss": 1.2100251770019532, + "step": 689200 + }, + { + "epoch": 91.90666666666667, + "grad_norm": 0.9619772434234619, + "learning_rate": 4.068333333333334e-06, + "loss": 1.2143017578125, + "step": 689300 + }, + { + "epoch": 91.92, + "grad_norm": 0.893493115901947, + "learning_rate": 4.061666666666667e-06, + "loss": 1.213790283203125, + "step": 689400 + }, + { + "epoch": 91.93333333333334, + "grad_norm": 0.9905881285667419, + "learning_rate": 4.055e-06, + "loss": 1.2162788391113282, + "step": 689500 + }, + { + "epoch": 91.94666666666667, + "grad_norm": 0.9450225830078125, + "learning_rate": 4.048333333333334e-06, + "loss": 1.213459243774414, + "step": 689600 + }, + { + "epoch": 91.96, + "grad_norm": 0.9374111294746399, + "learning_rate": 4.041733333333333e-06, + "loss": 1.21458984375, + "step": 689700 + }, + { + "epoch": 91.97333333333333, + "grad_norm": 0.8688250780105591, + "learning_rate": 4.035066666666667e-06, + "loss": 1.2136087799072266, + "step": 689800 + }, + { + "epoch": 91.98666666666666, + "grad_norm": 0.912335216999054, + "learning_rate": 4.0284e-06, + "loss": 1.2162496948242187, + "step": 689900 + }, + { + "epoch": 92.0, + "grad_norm": 0.8809793591499329, + "learning_rate": 4.021733333333333e-06, + "loss": 1.215945281982422, + "step": 690000 + }, + { + "epoch": 92.01333333333334, + "grad_norm": 0.8624962568283081, + "learning_rate": 4.015066666666667e-06, + "loss": 1.1997320556640625, + "step": 690100 + }, + { + "epoch": 92.02666666666667, + "grad_norm": 0.8585469126701355, + "learning_rate": 4.0084000000000005e-06, + "loss": 1.198604278564453, + "step": 690200 + }, + { + "epoch": 92.04, + "grad_norm": 0.9289453029632568, + "learning_rate": 4.0017333333333336e-06, + "loss": 1.2011491394042968, + "step": 690300 + }, + { + "epoch": 92.05333333333333, + "grad_norm": 0.81109219789505, + "learning_rate": 3.995066666666667e-06, + "loss": 1.200951156616211, + "step": 690400 + }, + { + "epoch": 92.06666666666666, + "grad_norm": 0.8511631488800049, + "learning_rate": 3.988400000000001e-06, + "loss": 1.2002388000488282, + "step": 690500 + }, + { + "epoch": 92.08, + "grad_norm": 0.9203524589538574, + "learning_rate": 3.981733333333334e-06, + "loss": 1.1966284942626952, + "step": 690600 + }, + { + "epoch": 92.09333333333333, + "grad_norm": 0.9373264312744141, + "learning_rate": 3.975066666666667e-06, + "loss": 1.20522705078125, + "step": 690700 + }, + { + "epoch": 92.10666666666667, + "grad_norm": 0.8882933855056763, + "learning_rate": 3.9684e-06, + "loss": 1.1983634948730468, + "step": 690800 + }, + { + "epoch": 92.12, + "grad_norm": 0.9304332733154297, + "learning_rate": 3.961733333333333e-06, + "loss": 1.201865005493164, + "step": 690900 + }, + { + "epoch": 92.13333333333334, + "grad_norm": 0.8630163669586182, + "learning_rate": 3.955066666666667e-06, + "loss": 1.203161163330078, + "step": 691000 + }, + { + "epoch": 92.14666666666666, + "grad_norm": 0.8729649782180786, + "learning_rate": 3.9484e-06, + "loss": 1.1991504669189452, + "step": 691100 + }, + { + "epoch": 92.16, + "grad_norm": 0.9168478846549988, + "learning_rate": 3.941733333333333e-06, + "loss": 1.2062628936767579, + "step": 691200 + }, + { + "epoch": 92.17333333333333, + "grad_norm": 0.947083055973053, + "learning_rate": 3.935066666666666e-06, + "loss": 1.2042913818359375, + "step": 691300 + }, + { + "epoch": 92.18666666666667, + "grad_norm": 0.8406407237052917, + "learning_rate": 3.9284e-06, + "loss": 1.2058570861816407, + "step": 691400 + }, + { + "epoch": 92.2, + "grad_norm": 0.8867647051811218, + "learning_rate": 3.9217333333333335e-06, + "loss": 1.205999526977539, + "step": 691500 + }, + { + "epoch": 92.21333333333334, + "grad_norm": 0.8558156490325928, + "learning_rate": 3.915066666666667e-06, + "loss": 1.2016780853271485, + "step": 691600 + }, + { + "epoch": 92.22666666666667, + "grad_norm": 0.9120957851409912, + "learning_rate": 3.9084666666666665e-06, + "loss": 1.2028411102294922, + "step": 691700 + }, + { + "epoch": 92.24, + "grad_norm": 0.8666041493415833, + "learning_rate": 3.9018e-06, + "loss": 1.2044637298583984, + "step": 691800 + }, + { + "epoch": 92.25333333333333, + "grad_norm": 0.9331375956535339, + "learning_rate": 3.895133333333334e-06, + "loss": 1.2048243713378906, + "step": 691900 + }, + { + "epoch": 92.26666666666667, + "grad_norm": 0.9363828301429749, + "learning_rate": 3.888466666666667e-06, + "loss": 1.20224609375, + "step": 692000 + }, + { + "epoch": 92.28, + "grad_norm": 0.8703069686889648, + "learning_rate": 3.8818e-06, + "loss": 1.2026631927490234, + "step": 692100 + }, + { + "epoch": 92.29333333333334, + "grad_norm": 0.8834508061408997, + "learning_rate": 3.875133333333334e-06, + "loss": 1.205963134765625, + "step": 692200 + }, + { + "epoch": 92.30666666666667, + "grad_norm": 0.9188662171363831, + "learning_rate": 3.868466666666667e-06, + "loss": 1.2017127227783204, + "step": 692300 + }, + { + "epoch": 92.32, + "grad_norm": 0.9342883825302124, + "learning_rate": 3.8618e-06, + "loss": 1.2051532745361329, + "step": 692400 + }, + { + "epoch": 92.33333333333333, + "grad_norm": 0.8774183988571167, + "learning_rate": 3.855133333333333e-06, + "loss": 1.2030648803710937, + "step": 692500 + }, + { + "epoch": 92.34666666666666, + "grad_norm": 0.9485383033752441, + "learning_rate": 3.848466666666667e-06, + "loss": 1.2045017242431642, + "step": 692600 + }, + { + "epoch": 92.36, + "grad_norm": 0.8900927305221558, + "learning_rate": 3.8418e-06, + "loss": 1.2074580383300781, + "step": 692700 + }, + { + "epoch": 92.37333333333333, + "grad_norm": 0.92417973279953, + "learning_rate": 3.835133333333333e-06, + "loss": 1.2043077087402343, + "step": 692800 + }, + { + "epoch": 92.38666666666667, + "grad_norm": 0.9447479844093323, + "learning_rate": 3.828466666666667e-06, + "loss": 1.2089013671875, + "step": 692900 + }, + { + "epoch": 92.4, + "grad_norm": 0.8772882223129272, + "learning_rate": 3.8218e-06, + "loss": 1.2071390533447266, + "step": 693000 + }, + { + "epoch": 92.41333333333333, + "grad_norm": 1.0013352632522583, + "learning_rate": 3.8151333333333335e-06, + "loss": 1.2067708587646484, + "step": 693100 + }, + { + "epoch": 92.42666666666666, + "grad_norm": 0.933141827583313, + "learning_rate": 3.808466666666667e-06, + "loss": 1.203813018798828, + "step": 693200 + }, + { + "epoch": 92.44, + "grad_norm": 0.8919726610183716, + "learning_rate": 3.8018000000000006e-06, + "loss": 1.2031111907958985, + "step": 693300 + }, + { + "epoch": 92.45333333333333, + "grad_norm": 0.9562348127365112, + "learning_rate": 3.7951333333333333e-06, + "loss": 1.2068241882324218, + "step": 693400 + }, + { + "epoch": 92.46666666666667, + "grad_norm": 0.8733388185501099, + "learning_rate": 3.7884666666666664e-06, + "loss": 1.2057405090332032, + "step": 693500 + }, + { + "epoch": 92.48, + "grad_norm": 0.837426483631134, + "learning_rate": 3.7818e-06, + "loss": 1.2067436218261718, + "step": 693600 + }, + { + "epoch": 92.49333333333334, + "grad_norm": 0.881060004234314, + "learning_rate": 3.7752000000000003e-06, + "loss": 1.2039698028564454, + "step": 693700 + }, + { + "epoch": 92.50666666666666, + "grad_norm": 0.9489794969558716, + "learning_rate": 3.768533333333334e-06, + "loss": 1.2064761352539062, + "step": 693800 + }, + { + "epoch": 92.52, + "grad_norm": 0.8895357847213745, + "learning_rate": 3.761866666666667e-06, + "loss": 1.202109375, + "step": 693900 + }, + { + "epoch": 92.53333333333333, + "grad_norm": 0.9040202498435974, + "learning_rate": 3.7552000000000005e-06, + "loss": 1.2075955963134766, + "step": 694000 + }, + { + "epoch": 92.54666666666667, + "grad_norm": 0.9203453660011292, + "learning_rate": 3.7485333333333336e-06, + "loss": 1.2062896728515624, + "step": 694100 + }, + { + "epoch": 92.56, + "grad_norm": 0.8410115242004395, + "learning_rate": 3.741866666666667e-06, + "loss": 1.2079099273681642, + "step": 694200 + }, + { + "epoch": 92.57333333333334, + "grad_norm": 0.8776598572731018, + "learning_rate": 3.7352000000000007e-06, + "loss": 1.201023941040039, + "step": 694300 + }, + { + "epoch": 92.58666666666667, + "grad_norm": 0.9552059769630432, + "learning_rate": 3.7285333333333334e-06, + "loss": 1.209650650024414, + "step": 694400 + }, + { + "epoch": 92.6, + "grad_norm": 0.9305794835090637, + "learning_rate": 3.7218666666666665e-06, + "loss": 1.2058026885986328, + "step": 694500 + }, + { + "epoch": 92.61333333333333, + "grad_norm": 0.9237838387489319, + "learning_rate": 3.7152e-06, + "loss": 1.2126660919189454, + "step": 694600 + }, + { + "epoch": 92.62666666666667, + "grad_norm": 0.9203336834907532, + "learning_rate": 3.708533333333333e-06, + "loss": 1.207015380859375, + "step": 694700 + }, + { + "epoch": 92.64, + "grad_norm": 0.9319577217102051, + "learning_rate": 3.7018666666666667e-06, + "loss": 1.2062096405029297, + "step": 694800 + }, + { + "epoch": 92.65333333333334, + "grad_norm": 0.8748674988746643, + "learning_rate": 3.6952000000000002e-06, + "loss": 1.2033453369140625, + "step": 694900 + }, + { + "epoch": 92.66666666666667, + "grad_norm": 0.8956521153450012, + "learning_rate": 3.6885333333333333e-06, + "loss": 1.2087307739257813, + "step": 695000 + }, + { + "epoch": 92.68, + "grad_norm": 0.8896095156669617, + "learning_rate": 3.681866666666667e-06, + "loss": 1.2088866424560547, + "step": 695100 + }, + { + "epoch": 92.69333333333333, + "grad_norm": 0.9287655353546143, + "learning_rate": 3.6752e-06, + "loss": 1.2099744415283202, + "step": 695200 + }, + { + "epoch": 92.70666666666666, + "grad_norm": 0.8579117655754089, + "learning_rate": 3.6685333333333335e-06, + "loss": 1.2089561462402343, + "step": 695300 + }, + { + "epoch": 92.72, + "grad_norm": 0.906623125076294, + "learning_rate": 3.661866666666667e-06, + "loss": 1.207219009399414, + "step": 695400 + }, + { + "epoch": 92.73333333333333, + "grad_norm": 0.8688279390335083, + "learning_rate": 3.6552e-06, + "loss": 1.205895233154297, + "step": 695500 + }, + { + "epoch": 92.74666666666667, + "grad_norm": 0.9425486326217651, + "learning_rate": 3.6485333333333337e-06, + "loss": 1.205015869140625, + "step": 695600 + }, + { + "epoch": 92.76, + "grad_norm": 0.9034813046455383, + "learning_rate": 3.6419333333333332e-06, + "loss": 1.2078257751464845, + "step": 695700 + }, + { + "epoch": 92.77333333333333, + "grad_norm": 0.9471731781959534, + "learning_rate": 3.6352666666666668e-06, + "loss": 1.2084870147705078, + "step": 695800 + }, + { + "epoch": 92.78666666666666, + "grad_norm": 0.8931053280830383, + "learning_rate": 3.6286e-06, + "loss": 1.2065433502197265, + "step": 695900 + }, + { + "epoch": 92.8, + "grad_norm": 0.9375083446502686, + "learning_rate": 3.6219333333333334e-06, + "loss": 1.2090350341796876, + "step": 696000 + }, + { + "epoch": 92.81333333333333, + "grad_norm": 0.8571840524673462, + "learning_rate": 3.615266666666667e-06, + "loss": 1.2078850555419922, + "step": 696100 + }, + { + "epoch": 92.82666666666667, + "grad_norm": 0.9313179850578308, + "learning_rate": 3.6086e-06, + "loss": 1.2092186737060546, + "step": 696200 + }, + { + "epoch": 92.84, + "grad_norm": 0.8702300786972046, + "learning_rate": 3.6019333333333336e-06, + "loss": 1.209949951171875, + "step": 696300 + }, + { + "epoch": 92.85333333333334, + "grad_norm": 0.9009842872619629, + "learning_rate": 3.5952666666666667e-06, + "loss": 1.2110611724853515, + "step": 696400 + }, + { + "epoch": 92.86666666666666, + "grad_norm": 0.8789703249931335, + "learning_rate": 3.5886000000000003e-06, + "loss": 1.212374267578125, + "step": 696500 + }, + { + "epoch": 92.88, + "grad_norm": 0.937931478023529, + "learning_rate": 3.581933333333334e-06, + "loss": 1.2115992736816406, + "step": 696600 + }, + { + "epoch": 92.89333333333333, + "grad_norm": 0.8966504335403442, + "learning_rate": 3.575266666666667e-06, + "loss": 1.2094432067871095, + "step": 696700 + }, + { + "epoch": 92.90666666666667, + "grad_norm": 0.9230213761329651, + "learning_rate": 3.5686000000000004e-06, + "loss": 1.2086225128173829, + "step": 696800 + }, + { + "epoch": 92.92, + "grad_norm": 0.9597765803337097, + "learning_rate": 3.561933333333334e-06, + "loss": 1.2142015075683594, + "step": 696900 + }, + { + "epoch": 92.93333333333334, + "grad_norm": 0.9093431830406189, + "learning_rate": 3.555266666666667e-06, + "loss": 1.2086906433105469, + "step": 697000 + }, + { + "epoch": 92.94666666666667, + "grad_norm": 0.897400438785553, + "learning_rate": 3.5485999999999998e-06, + "loss": 1.211206283569336, + "step": 697100 + }, + { + "epoch": 92.96, + "grad_norm": 0.867046594619751, + "learning_rate": 3.5419333333333333e-06, + "loss": 1.2069461822509766, + "step": 697200 + }, + { + "epoch": 92.97333333333333, + "grad_norm": 0.8881245255470276, + "learning_rate": 3.5352666666666664e-06, + "loss": 1.2137161254882813, + "step": 697300 + }, + { + "epoch": 92.98666666666666, + "grad_norm": 0.9253084063529968, + "learning_rate": 3.5286e-06, + "loss": 1.2097924041748047, + "step": 697400 + }, + { + "epoch": 93.0, + "grad_norm": 0.938310980796814, + "learning_rate": 3.5219333333333335e-06, + "loss": 1.2097466278076172, + "step": 697500 + }, + { + "epoch": 93.01333333333334, + "grad_norm": 0.9459820985794067, + "learning_rate": 3.5152666666666666e-06, + "loss": 1.2002715301513671, + "step": 697600 + }, + { + "epoch": 93.02666666666667, + "grad_norm": 0.8648054003715515, + "learning_rate": 3.508666666666667e-06, + "loss": 1.1980596923828124, + "step": 697700 + }, + { + "epoch": 93.04, + "grad_norm": 0.9034267067909241, + "learning_rate": 3.5020000000000005e-06, + "loss": 1.1980625915527343, + "step": 697800 + }, + { + "epoch": 93.05333333333333, + "grad_norm": 0.891040027141571, + "learning_rate": 3.4953333333333336e-06, + "loss": 1.196813735961914, + "step": 697900 + }, + { + "epoch": 93.06666666666666, + "grad_norm": 0.8857132792472839, + "learning_rate": 3.488666666666667e-06, + "loss": 1.1995645141601563, + "step": 698000 + }, + { + "epoch": 93.08, + "grad_norm": 0.8220590949058533, + "learning_rate": 3.482e-06, + "loss": 1.199000930786133, + "step": 698100 + }, + { + "epoch": 93.09333333333333, + "grad_norm": 0.9337181448936462, + "learning_rate": 3.4753333333333334e-06, + "loss": 1.1981783294677735, + "step": 698200 + }, + { + "epoch": 93.10666666666667, + "grad_norm": 0.8952512145042419, + "learning_rate": 3.4686666666666665e-06, + "loss": 1.203648910522461, + "step": 698300 + }, + { + "epoch": 93.12, + "grad_norm": 0.932554304599762, + "learning_rate": 3.462e-06, + "loss": 1.2012419891357422, + "step": 698400 + }, + { + "epoch": 93.13333333333334, + "grad_norm": 0.8617738485336304, + "learning_rate": 3.455333333333333e-06, + "loss": 1.1994852447509765, + "step": 698500 + }, + { + "epoch": 93.14666666666666, + "grad_norm": 0.9104321599006653, + "learning_rate": 3.4486666666666667e-06, + "loss": 1.207906723022461, + "step": 698600 + }, + { + "epoch": 93.16, + "grad_norm": 0.8374426960945129, + "learning_rate": 3.4420000000000002e-06, + "loss": 1.1999403381347655, + "step": 698700 + }, + { + "epoch": 93.17333333333333, + "grad_norm": 0.8905571103096008, + "learning_rate": 3.4353333333333334e-06, + "loss": 1.1972482299804688, + "step": 698800 + }, + { + "epoch": 93.18666666666667, + "grad_norm": 0.8699285387992859, + "learning_rate": 3.428666666666667e-06, + "loss": 1.2003094482421874, + "step": 698900 + }, + { + "epoch": 93.2, + "grad_norm": 0.8738979697227478, + "learning_rate": 3.422e-06, + "loss": 1.2002088928222656, + "step": 699000 + }, + { + "epoch": 93.21333333333334, + "grad_norm": 0.8332516551017761, + "learning_rate": 3.4153333333333336e-06, + "loss": 1.1950491333007813, + "step": 699100 + }, + { + "epoch": 93.22666666666667, + "grad_norm": 0.8510139584541321, + "learning_rate": 3.408666666666667e-06, + "loss": 1.1995225524902344, + "step": 699200 + }, + { + "epoch": 93.24, + "grad_norm": 0.9004165530204773, + "learning_rate": 3.402e-06, + "loss": 1.2011061096191407, + "step": 699300 + }, + { + "epoch": 93.25333333333333, + "grad_norm": 0.9277057647705078, + "learning_rate": 3.3953333333333337e-06, + "loss": 1.2032598876953124, + "step": 699400 + }, + { + "epoch": 93.26666666666667, + "grad_norm": 0.9293489456176758, + "learning_rate": 3.388666666666667e-06, + "loss": 1.2010295867919922, + "step": 699500 + }, + { + "epoch": 93.28, + "grad_norm": 0.9297680854797363, + "learning_rate": 3.3820000000000004e-06, + "loss": 1.1998831176757812, + "step": 699600 + }, + { + "epoch": 93.29333333333334, + "grad_norm": 0.9310411810874939, + "learning_rate": 3.375333333333334e-06, + "loss": 1.2022223663330078, + "step": 699700 + }, + { + "epoch": 93.30666666666667, + "grad_norm": 0.8587492108345032, + "learning_rate": 3.3687333333333334e-06, + "loss": 1.2029190063476562, + "step": 699800 + }, + { + "epoch": 93.32, + "grad_norm": 0.8777822852134705, + "learning_rate": 3.362066666666667e-06, + "loss": 1.1976495361328126, + "step": 699900 + }, + { + "epoch": 93.33333333333333, + "grad_norm": 0.9253079891204834, + "learning_rate": 3.3554e-06, + "loss": 1.205234909057617, + "step": 700000 + }, + { + "epoch": 93.34666666666666, + "grad_norm": 0.9172502160072327, + "learning_rate": 3.3487333333333336e-06, + "loss": 1.2025753784179687, + "step": 700100 + }, + { + "epoch": 93.36, + "grad_norm": 0.8835508227348328, + "learning_rate": 3.3420666666666667e-06, + "loss": 1.203255386352539, + "step": 700200 + }, + { + "epoch": 93.37333333333333, + "grad_norm": 0.9050441980361938, + "learning_rate": 3.3354000000000003e-06, + "loss": 1.2038262176513672, + "step": 700300 + }, + { + "epoch": 93.38666666666667, + "grad_norm": 0.8916856050491333, + "learning_rate": 3.328733333333334e-06, + "loss": 1.2023595428466798, + "step": 700400 + }, + { + "epoch": 93.4, + "grad_norm": 0.945793867111206, + "learning_rate": 3.322066666666667e-06, + "loss": 1.2015753173828125, + "step": 700500 + }, + { + "epoch": 93.41333333333333, + "grad_norm": 0.8409869074821472, + "learning_rate": 3.3154000000000005e-06, + "loss": 1.200424346923828, + "step": 700600 + }, + { + "epoch": 93.42666666666666, + "grad_norm": 0.8369486927986145, + "learning_rate": 3.308733333333334e-06, + "loss": 1.2012825012207031, + "step": 700700 + }, + { + "epoch": 93.44, + "grad_norm": 0.9023328423500061, + "learning_rate": 3.3020666666666667e-06, + "loss": 1.1996861267089844, + "step": 700800 + }, + { + "epoch": 93.45333333333333, + "grad_norm": 0.9621808528900146, + "learning_rate": 3.2954e-06, + "loss": 1.2020472717285156, + "step": 700900 + }, + { + "epoch": 93.46666666666667, + "grad_norm": 0.9381176829338074, + "learning_rate": 3.2887333333333334e-06, + "loss": 1.2013578033447265, + "step": 701000 + }, + { + "epoch": 93.48, + "grad_norm": 0.9038723111152649, + "learning_rate": 3.2820666666666665e-06, + "loss": 1.2052571868896484, + "step": 701100 + }, + { + "epoch": 93.49333333333334, + "grad_norm": 0.8777031898498535, + "learning_rate": 3.2754e-06, + "loss": 1.2066443634033204, + "step": 701200 + }, + { + "epoch": 93.50666666666666, + "grad_norm": 0.898979663848877, + "learning_rate": 3.2687333333333336e-06, + "loss": 1.2039942932128906, + "step": 701300 + }, + { + "epoch": 93.52, + "grad_norm": 0.9564325213432312, + "learning_rate": 3.2620666666666667e-06, + "loss": 1.203017120361328, + "step": 701400 + }, + { + "epoch": 93.53333333333333, + "grad_norm": 0.8886229991912842, + "learning_rate": 3.2554e-06, + "loss": 1.2048358917236328, + "step": 701500 + }, + { + "epoch": 93.54666666666667, + "grad_norm": 0.9237152338027954, + "learning_rate": 3.2487333333333333e-06, + "loss": 1.2045701599121095, + "step": 701600 + }, + { + "epoch": 93.56, + "grad_norm": 0.896867036819458, + "learning_rate": 3.242066666666667e-06, + "loss": 1.2023987579345703, + "step": 701700 + }, + { + "epoch": 93.57333333333334, + "grad_norm": 0.9271662831306458, + "learning_rate": 3.2354666666666664e-06, + "loss": 1.2070915985107422, + "step": 701800 + }, + { + "epoch": 93.58666666666667, + "grad_norm": 0.9243695139884949, + "learning_rate": 3.2288e-06, + "loss": 1.2029459381103516, + "step": 701900 + }, + { + "epoch": 93.6, + "grad_norm": 0.8733084797859192, + "learning_rate": 3.2221333333333334e-06, + "loss": 1.2044219207763671, + "step": 702000 + }, + { + "epoch": 93.61333333333333, + "grad_norm": 0.8613144159317017, + "learning_rate": 3.2154666666666666e-06, + "loss": 1.2015194702148437, + "step": 702100 + }, + { + "epoch": 93.62666666666667, + "grad_norm": 0.8946916460990906, + "learning_rate": 3.2088e-06, + "loss": 1.2066204071044921, + "step": 702200 + }, + { + "epoch": 93.64, + "grad_norm": 0.8852377533912659, + "learning_rate": 3.202133333333333e-06, + "loss": 1.2049375915527343, + "step": 702300 + }, + { + "epoch": 93.65333333333334, + "grad_norm": 0.9133490324020386, + "learning_rate": 3.1954666666666667e-06, + "loss": 1.2069032287597656, + "step": 702400 + }, + { + "epoch": 93.66666666666667, + "grad_norm": 0.9736997485160828, + "learning_rate": 3.1888000000000003e-06, + "loss": 1.2061416625976562, + "step": 702500 + }, + { + "epoch": 93.68, + "grad_norm": 0.8475258946418762, + "learning_rate": 3.1821333333333334e-06, + "loss": 1.2070252227783203, + "step": 702600 + }, + { + "epoch": 93.69333333333333, + "grad_norm": 0.8701179623603821, + "learning_rate": 3.175466666666667e-06, + "loss": 1.2072611236572266, + "step": 702700 + }, + { + "epoch": 93.70666666666666, + "grad_norm": 0.9371302723884583, + "learning_rate": 3.1688e-06, + "loss": 1.2073512268066406, + "step": 702800 + }, + { + "epoch": 93.72, + "grad_norm": 0.9097060561180115, + "learning_rate": 3.1621333333333336e-06, + "loss": 1.2026378631591796, + "step": 702900 + }, + { + "epoch": 93.73333333333333, + "grad_norm": 0.938374936580658, + "learning_rate": 3.155466666666667e-06, + "loss": 1.2043750762939454, + "step": 703000 + }, + { + "epoch": 93.74666666666667, + "grad_norm": 0.9308724999427795, + "learning_rate": 3.1488000000000002e-06, + "loss": 1.2057681274414063, + "step": 703100 + }, + { + "epoch": 93.76, + "grad_norm": 0.9380525350570679, + "learning_rate": 3.1421333333333338e-06, + "loss": 1.2027383422851563, + "step": 703200 + }, + { + "epoch": 93.77333333333333, + "grad_norm": 0.9042573571205139, + "learning_rate": 3.135466666666667e-06, + "loss": 1.2053038787841797, + "step": 703300 + }, + { + "epoch": 93.78666666666666, + "grad_norm": 0.8465674519538879, + "learning_rate": 3.1288000000000004e-06, + "loss": 1.2070914459228517, + "step": 703400 + }, + { + "epoch": 93.8, + "grad_norm": 0.9048718214035034, + "learning_rate": 3.1221333333333336e-06, + "loss": 1.2079029846191407, + "step": 703500 + }, + { + "epoch": 93.81333333333333, + "grad_norm": 0.9605961441993713, + "learning_rate": 3.115466666666667e-06, + "loss": 1.205398712158203, + "step": 703600 + }, + { + "epoch": 93.82666666666667, + "grad_norm": 0.8697989583015442, + "learning_rate": 3.1088e-06, + "loss": 1.2042691040039062, + "step": 703700 + }, + { + "epoch": 93.84, + "grad_norm": 0.8812441229820251, + "learning_rate": 3.1022e-06, + "loss": 1.2068780517578126, + "step": 703800 + }, + { + "epoch": 93.85333333333334, + "grad_norm": 0.8852190375328064, + "learning_rate": 3.0955333333333337e-06, + "loss": 1.2042357635498047, + "step": 703900 + }, + { + "epoch": 93.86666666666666, + "grad_norm": 0.9224363565444946, + "learning_rate": 3.0888666666666668e-06, + "loss": 1.203583755493164, + "step": 704000 + }, + { + "epoch": 93.88, + "grad_norm": 0.9226585626602173, + "learning_rate": 3.0822e-06, + "loss": 1.2078118896484376, + "step": 704100 + }, + { + "epoch": 93.89333333333333, + "grad_norm": 0.8923982381820679, + "learning_rate": 3.0755333333333334e-06, + "loss": 1.2106005859375, + "step": 704200 + }, + { + "epoch": 93.90666666666667, + "grad_norm": 0.8998373746871948, + "learning_rate": 3.068866666666667e-06, + "loss": 1.2074279022216796, + "step": 704300 + }, + { + "epoch": 93.92, + "grad_norm": 0.8896543383598328, + "learning_rate": 3.0622e-06, + "loss": 1.2062702178955078, + "step": 704400 + }, + { + "epoch": 93.93333333333334, + "grad_norm": 0.9087594747543335, + "learning_rate": 3.0555333333333336e-06, + "loss": 1.2025060272216797, + "step": 704500 + }, + { + "epoch": 93.94666666666667, + "grad_norm": 0.8689560890197754, + "learning_rate": 3.0488666666666667e-06, + "loss": 1.2087166595458985, + "step": 704600 + }, + { + "epoch": 93.96, + "grad_norm": 0.8625527620315552, + "learning_rate": 3.0422000000000003e-06, + "loss": 1.2062256622314453, + "step": 704700 + }, + { + "epoch": 93.97333333333333, + "grad_norm": 0.895000159740448, + "learning_rate": 3.035533333333334e-06, + "loss": 1.2069078826904296, + "step": 704800 + }, + { + "epoch": 93.98666666666666, + "grad_norm": 0.9123364090919495, + "learning_rate": 3.0288666666666665e-06, + "loss": 1.2070018005371095, + "step": 704900 + }, + { + "epoch": 94.0, + "grad_norm": 0.9559196829795837, + "learning_rate": 3.0222e-06, + "loss": 1.2079464721679687, + "step": 705000 + }, + { + "epoch": 94.01333333333334, + "grad_norm": 0.8545342087745667, + "learning_rate": 3.0155333333333336e-06, + "loss": 1.1980677795410157, + "step": 705100 + }, + { + "epoch": 94.02666666666667, + "grad_norm": 0.8731397390365601, + "learning_rate": 3.0088666666666667e-06, + "loss": 1.1981246948242188, + "step": 705200 + }, + { + "epoch": 94.04, + "grad_norm": 0.9388912320137024, + "learning_rate": 3.0022000000000002e-06, + "loss": 1.198083953857422, + "step": 705300 + }, + { + "epoch": 94.05333333333333, + "grad_norm": 0.8558587431907654, + "learning_rate": 2.9955333333333334e-06, + "loss": 1.1956981658935546, + "step": 705400 + }, + { + "epoch": 94.06666666666666, + "grad_norm": 0.9336191415786743, + "learning_rate": 2.988866666666667e-06, + "loss": 1.1954840087890626, + "step": 705500 + }, + { + "epoch": 94.08, + "grad_norm": 0.9011601209640503, + "learning_rate": 2.9822000000000004e-06, + "loss": 1.1973772430419922, + "step": 705600 + }, + { + "epoch": 94.09333333333333, + "grad_norm": 0.8702425956726074, + "learning_rate": 2.9755333333333335e-06, + "loss": 1.1975491333007813, + "step": 705700 + }, + { + "epoch": 94.10666666666667, + "grad_norm": 0.8665642738342285, + "learning_rate": 2.9689333333333335e-06, + "loss": 1.1951853942871093, + "step": 705800 + }, + { + "epoch": 94.12, + "grad_norm": 0.9032362103462219, + "learning_rate": 2.9622666666666666e-06, + "loss": 1.2001158905029297, + "step": 705900 + }, + { + "epoch": 94.13333333333334, + "grad_norm": 0.8543294668197632, + "learning_rate": 2.9556e-06, + "loss": 1.1968789672851563, + "step": 706000 + }, + { + "epoch": 94.14666666666666, + "grad_norm": 0.8729653358459473, + "learning_rate": 2.9489333333333332e-06, + "loss": 1.2012832641601563, + "step": 706100 + }, + { + "epoch": 94.16, + "grad_norm": 0.9173882603645325, + "learning_rate": 2.9422666666666668e-06, + "loss": 1.197931900024414, + "step": 706200 + }, + { + "epoch": 94.17333333333333, + "grad_norm": 0.8953747153282166, + "learning_rate": 2.9356000000000003e-06, + "loss": 1.201817169189453, + "step": 706300 + }, + { + "epoch": 94.18666666666667, + "grad_norm": 0.9290673732757568, + "learning_rate": 2.9289333333333334e-06, + "loss": 1.2014652252197267, + "step": 706400 + }, + { + "epoch": 94.2, + "grad_norm": 0.8571107387542725, + "learning_rate": 2.922266666666667e-06, + "loss": 1.199576187133789, + "step": 706500 + }, + { + "epoch": 94.21333333333334, + "grad_norm": 0.8771602511405945, + "learning_rate": 2.9156e-06, + "loss": 1.1957323455810547, + "step": 706600 + }, + { + "epoch": 94.22666666666667, + "grad_norm": 0.9305838346481323, + "learning_rate": 2.908933333333333e-06, + "loss": 1.1971856689453124, + "step": 706700 + }, + { + "epoch": 94.24, + "grad_norm": 0.8944154381752014, + "learning_rate": 2.9022666666666667e-06, + "loss": 1.197287826538086, + "step": 706800 + }, + { + "epoch": 94.25333333333333, + "grad_norm": 0.8940684199333191, + "learning_rate": 2.8956e-06, + "loss": 1.197225570678711, + "step": 706900 + }, + { + "epoch": 94.26666666666667, + "grad_norm": 0.9056709408760071, + "learning_rate": 2.8889333333333334e-06, + "loss": 1.1965518951416017, + "step": 707000 + }, + { + "epoch": 94.28, + "grad_norm": 0.9414792060852051, + "learning_rate": 2.882266666666667e-06, + "loss": 1.1968941497802734, + "step": 707100 + }, + { + "epoch": 94.29333333333334, + "grad_norm": 0.8908376097679138, + "learning_rate": 2.8756e-06, + "loss": 1.1973877716064454, + "step": 707200 + }, + { + "epoch": 94.30666666666667, + "grad_norm": 0.9297679662704468, + "learning_rate": 2.8689333333333336e-06, + "loss": 1.1994965362548828, + "step": 707300 + }, + { + "epoch": 94.32, + "grad_norm": 0.8703739047050476, + "learning_rate": 2.862266666666667e-06, + "loss": 1.1965327453613281, + "step": 707400 + }, + { + "epoch": 94.33333333333333, + "grad_norm": 0.8615278601646423, + "learning_rate": 2.8556000000000002e-06, + "loss": 1.2004428863525392, + "step": 707500 + }, + { + "epoch": 94.34666666666666, + "grad_norm": 0.9227656722068787, + "learning_rate": 2.8489333333333334e-06, + "loss": 1.2004918670654297, + "step": 707600 + }, + { + "epoch": 94.36, + "grad_norm": 0.9245252013206482, + "learning_rate": 2.842266666666667e-06, + "loss": 1.1989990997314453, + "step": 707700 + }, + { + "epoch": 94.37333333333333, + "grad_norm": 0.9238764643669128, + "learning_rate": 2.835666666666667e-06, + "loss": 1.2016976928710938, + "step": 707800 + }, + { + "epoch": 94.38666666666667, + "grad_norm": 0.9158653616905212, + "learning_rate": 2.829e-06, + "loss": 1.2035940551757813, + "step": 707900 + }, + { + "epoch": 94.4, + "grad_norm": 0.9159825444221497, + "learning_rate": 2.8223333333333335e-06, + "loss": 1.2021241760253907, + "step": 708000 + }, + { + "epoch": 94.41333333333333, + "grad_norm": 0.9235730171203613, + "learning_rate": 2.815666666666667e-06, + "loss": 1.197962875366211, + "step": 708100 + }, + { + "epoch": 94.42666666666666, + "grad_norm": 0.8646361231803894, + "learning_rate": 2.809e-06, + "loss": 1.1968673706054687, + "step": 708200 + }, + { + "epoch": 94.44, + "grad_norm": 0.9146223068237305, + "learning_rate": 2.8023333333333337e-06, + "loss": 1.1992236328125, + "step": 708300 + }, + { + "epoch": 94.45333333333333, + "grad_norm": 0.9262514710426331, + "learning_rate": 2.7956666666666668e-06, + "loss": 1.1973857879638672, + "step": 708400 + }, + { + "epoch": 94.46666666666667, + "grad_norm": 0.9602396488189697, + "learning_rate": 2.7890000000000003e-06, + "loss": 1.2021874237060546, + "step": 708500 + }, + { + "epoch": 94.48, + "grad_norm": 0.9169455766677856, + "learning_rate": 2.7823333333333334e-06, + "loss": 1.201337127685547, + "step": 708600 + }, + { + "epoch": 94.49333333333334, + "grad_norm": 0.922653079032898, + "learning_rate": 2.7756666666666665e-06, + "loss": 1.2005847930908202, + "step": 708700 + }, + { + "epoch": 94.50666666666666, + "grad_norm": 0.8886169195175171, + "learning_rate": 2.769e-06, + "loss": 1.2020726776123047, + "step": 708800 + }, + { + "epoch": 94.52, + "grad_norm": 0.9149191379547119, + "learning_rate": 2.7623333333333336e-06, + "loss": 1.2006275177001953, + "step": 708900 + }, + { + "epoch": 94.53333333333333, + "grad_norm": 0.9416818618774414, + "learning_rate": 2.7556666666666667e-06, + "loss": 1.20090576171875, + "step": 709000 + }, + { + "epoch": 94.54666666666667, + "grad_norm": 0.9213252067565918, + "learning_rate": 2.7490000000000003e-06, + "loss": 1.1960865783691406, + "step": 709100 + }, + { + "epoch": 94.56, + "grad_norm": 0.9599847197532654, + "learning_rate": 2.7423333333333334e-06, + "loss": 1.2013865661621095, + "step": 709200 + }, + { + "epoch": 94.57333333333334, + "grad_norm": 0.8929022550582886, + "learning_rate": 2.735666666666667e-06, + "loss": 1.1997483825683595, + "step": 709300 + }, + { + "epoch": 94.58666666666667, + "grad_norm": 0.9808670878410339, + "learning_rate": 2.729e-06, + "loss": 1.2010655975341797, + "step": 709400 + }, + { + "epoch": 94.6, + "grad_norm": 0.8982358574867249, + "learning_rate": 2.722333333333333e-06, + "loss": 1.2008942413330077, + "step": 709500 + }, + { + "epoch": 94.61333333333333, + "grad_norm": 0.9171635508537292, + "learning_rate": 2.7156666666666667e-06, + "loss": 1.1997940826416016, + "step": 709600 + }, + { + "epoch": 94.62666666666667, + "grad_norm": 0.8832179307937622, + "learning_rate": 2.7090000000000002e-06, + "loss": 1.2014200592041016, + "step": 709700 + }, + { + "epoch": 94.64, + "grad_norm": 0.8543769121170044, + "learning_rate": 2.7024e-06, + "loss": 1.2015788269042968, + "step": 709800 + }, + { + "epoch": 94.65333333333334, + "grad_norm": 0.8646900057792664, + "learning_rate": 2.6957333333333333e-06, + "loss": 1.203617935180664, + "step": 709900 + }, + { + "epoch": 94.66666666666667, + "grad_norm": 0.8815392255783081, + "learning_rate": 2.689066666666667e-06, + "loss": 1.2008470916748046, + "step": 710000 + }, + { + "epoch": 94.68, + "grad_norm": 0.9132913947105408, + "learning_rate": 2.6824000000000004e-06, + "loss": 1.2024823760986327, + "step": 710100 + }, + { + "epoch": 94.69333333333333, + "grad_norm": 0.9004465341567993, + "learning_rate": 2.6757333333333335e-06, + "loss": 1.2015773010253907, + "step": 710200 + }, + { + "epoch": 94.70666666666666, + "grad_norm": 0.9427282214164734, + "learning_rate": 2.669066666666667e-06, + "loss": 1.2027558135986327, + "step": 710300 + }, + { + "epoch": 94.72, + "grad_norm": 0.9398279786109924, + "learning_rate": 2.6624e-06, + "loss": 1.2022799682617187, + "step": 710400 + }, + { + "epoch": 94.73333333333333, + "grad_norm": 0.953403651714325, + "learning_rate": 2.6557333333333332e-06, + "loss": 1.2058155822753907, + "step": 710500 + }, + { + "epoch": 94.74666666666667, + "grad_norm": 0.9545753598213196, + "learning_rate": 2.6490666666666668e-06, + "loss": 1.204290542602539, + "step": 710600 + }, + { + "epoch": 94.76, + "grad_norm": 0.9156383872032166, + "learning_rate": 2.6424e-06, + "loss": 1.2020454406738281, + "step": 710700 + }, + { + "epoch": 94.77333333333333, + "grad_norm": 0.9403426647186279, + "learning_rate": 2.6357333333333334e-06, + "loss": 1.1997908020019532, + "step": 710800 + }, + { + "epoch": 94.78666666666666, + "grad_norm": 0.8966497182846069, + "learning_rate": 2.629066666666667e-06, + "loss": 1.2073065185546874, + "step": 710900 + }, + { + "epoch": 94.8, + "grad_norm": 0.933814287185669, + "learning_rate": 2.6224e-06, + "loss": 1.2032772064208985, + "step": 711000 + }, + { + "epoch": 94.81333333333333, + "grad_norm": 0.8316300511360168, + "learning_rate": 2.6157333333333336e-06, + "loss": 1.1999528503417969, + "step": 711100 + }, + { + "epoch": 94.82666666666667, + "grad_norm": 0.945821225643158, + "learning_rate": 2.609066666666667e-06, + "loss": 1.2072616577148438, + "step": 711200 + }, + { + "epoch": 94.84, + "grad_norm": 0.9445672035217285, + "learning_rate": 2.6024e-06, + "loss": 1.207545623779297, + "step": 711300 + }, + { + "epoch": 94.85333333333334, + "grad_norm": 0.9229156970977783, + "learning_rate": 2.5957333333333334e-06, + "loss": 1.2040837860107423, + "step": 711400 + }, + { + "epoch": 94.86666666666666, + "grad_norm": 0.9328680634498596, + "learning_rate": 2.589066666666667e-06, + "loss": 1.200493392944336, + "step": 711500 + }, + { + "epoch": 94.88, + "grad_norm": 0.8817058801651001, + "learning_rate": 2.5824e-06, + "loss": 1.204656448364258, + "step": 711600 + }, + { + "epoch": 94.89333333333333, + "grad_norm": 0.8611106276512146, + "learning_rate": 2.5757333333333336e-06, + "loss": 1.2088603973388672, + "step": 711700 + }, + { + "epoch": 94.90666666666667, + "grad_norm": 0.9168562889099121, + "learning_rate": 2.5691333333333335e-06, + "loss": 1.2051824951171874, + "step": 711800 + }, + { + "epoch": 94.92, + "grad_norm": 0.8960808515548706, + "learning_rate": 2.5624666666666666e-06, + "loss": 1.2036978912353515, + "step": 711900 + }, + { + "epoch": 94.93333333333334, + "grad_norm": 0.9241425395011902, + "learning_rate": 2.5558e-06, + "loss": 1.2029954528808593, + "step": 712000 + }, + { + "epoch": 94.94666666666667, + "grad_norm": 0.8758190274238586, + "learning_rate": 2.5491333333333337e-06, + "loss": 1.20275390625, + "step": 712100 + }, + { + "epoch": 94.96, + "grad_norm": 0.8666814565658569, + "learning_rate": 2.542466666666667e-06, + "loss": 1.2033231353759766, + "step": 712200 + }, + { + "epoch": 94.97333333333333, + "grad_norm": 0.9167757034301758, + "learning_rate": 2.5358e-06, + "loss": 1.2045973968505859, + "step": 712300 + }, + { + "epoch": 94.98666666666666, + "grad_norm": 0.9360477924346924, + "learning_rate": 2.5291333333333335e-06, + "loss": 1.2020364379882813, + "step": 712400 + }, + { + "epoch": 95.0, + "grad_norm": 0.9205434918403625, + "learning_rate": 2.5224666666666666e-06, + "loss": 1.2040877532958985, + "step": 712500 + }, + { + "epoch": 95.01333333333334, + "grad_norm": 0.8948925733566284, + "learning_rate": 2.5158e-06, + "loss": 1.1948794555664062, + "step": 712600 + }, + { + "epoch": 95.02666666666667, + "grad_norm": 0.9492332935333252, + "learning_rate": 2.5091333333333337e-06, + "loss": 1.1927398681640624, + "step": 712700 + }, + { + "epoch": 95.04, + "grad_norm": 0.9059979319572449, + "learning_rate": 2.5024666666666668e-06, + "loss": 1.1940172576904298, + "step": 712800 + }, + { + "epoch": 95.05333333333333, + "grad_norm": 0.8861105442047119, + "learning_rate": 2.4958000000000003e-06, + "loss": 1.1955216217041016, + "step": 712900 + }, + { + "epoch": 95.06666666666666, + "grad_norm": 0.9048792719841003, + "learning_rate": 2.4891333333333334e-06, + "loss": 1.1973499298095702, + "step": 713000 + }, + { + "epoch": 95.08, + "grad_norm": 0.8883659839630127, + "learning_rate": 2.4824666666666665e-06, + "loss": 1.1946544647216797, + "step": 713100 + }, + { + "epoch": 95.09333333333333, + "grad_norm": 0.9289974570274353, + "learning_rate": 2.4758e-06, + "loss": 1.1974421691894532, + "step": 713200 + }, + { + "epoch": 95.10666666666667, + "grad_norm": 0.9032652378082275, + "learning_rate": 2.469133333333333e-06, + "loss": 1.1930424499511718, + "step": 713300 + }, + { + "epoch": 95.12, + "grad_norm": 0.8951370716094971, + "learning_rate": 2.4624666666666667e-06, + "loss": 1.197111587524414, + "step": 713400 + }, + { + "epoch": 95.13333333333334, + "grad_norm": 0.8893224596977234, + "learning_rate": 2.4558000000000003e-06, + "loss": 1.1959721374511718, + "step": 713500 + }, + { + "epoch": 95.14666666666666, + "grad_norm": 0.8968496918678284, + "learning_rate": 2.4491333333333334e-06, + "loss": 1.1987583923339844, + "step": 713600 + }, + { + "epoch": 95.16, + "grad_norm": 0.8864784240722656, + "learning_rate": 2.442466666666667e-06, + "loss": 1.1947860717773438, + "step": 713700 + }, + { + "epoch": 95.17333333333333, + "grad_norm": 0.8457802534103394, + "learning_rate": 2.435866666666667e-06, + "loss": 1.1984773254394532, + "step": 713800 + }, + { + "epoch": 95.18666666666667, + "grad_norm": 0.9682843685150146, + "learning_rate": 2.4292000000000004e-06, + "loss": 1.1989812469482422, + "step": 713900 + }, + { + "epoch": 95.2, + "grad_norm": 0.9019679427146912, + "learning_rate": 2.4225333333333335e-06, + "loss": 1.1998885345458985, + "step": 714000 + }, + { + "epoch": 95.21333333333334, + "grad_norm": 0.8968068361282349, + "learning_rate": 2.4158666666666666e-06, + "loss": 1.196024169921875, + "step": 714100 + }, + { + "epoch": 95.22666666666667, + "grad_norm": 0.9033806324005127, + "learning_rate": 2.4092e-06, + "loss": 1.1988829803466796, + "step": 714200 + }, + { + "epoch": 95.24, + "grad_norm": 0.8861857056617737, + "learning_rate": 2.4025333333333333e-06, + "loss": 1.1954184722900392, + "step": 714300 + }, + { + "epoch": 95.25333333333333, + "grad_norm": 0.8714227676391602, + "learning_rate": 2.395866666666667e-06, + "loss": 1.1975115203857423, + "step": 714400 + }, + { + "epoch": 95.26666666666667, + "grad_norm": 0.8732222318649292, + "learning_rate": 2.3892e-06, + "loss": 1.1969498443603515, + "step": 714500 + }, + { + "epoch": 95.28, + "grad_norm": 0.8276050090789795, + "learning_rate": 2.3825333333333335e-06, + "loss": 1.197633285522461, + "step": 714600 + }, + { + "epoch": 95.29333333333334, + "grad_norm": 0.8574380278587341, + "learning_rate": 2.375866666666667e-06, + "loss": 1.1978040313720704, + "step": 714700 + }, + { + "epoch": 95.30666666666667, + "grad_norm": 0.9271215200424194, + "learning_rate": 2.3692e-06, + "loss": 1.1961704254150392, + "step": 714800 + }, + { + "epoch": 95.32, + "grad_norm": 0.9471455216407776, + "learning_rate": 2.3625333333333337e-06, + "loss": 1.193292694091797, + "step": 714900 + }, + { + "epoch": 95.33333333333333, + "grad_norm": 0.9028796553611755, + "learning_rate": 2.3558666666666668e-06, + "loss": 1.1993869018554688, + "step": 715000 + }, + { + "epoch": 95.34666666666666, + "grad_norm": 0.8910233378410339, + "learning_rate": 2.3492e-06, + "loss": 1.1982572174072266, + "step": 715100 + }, + { + "epoch": 95.36, + "grad_norm": 0.8883600831031799, + "learning_rate": 2.3425333333333334e-06, + "loss": 1.1972041320800781, + "step": 715200 + }, + { + "epoch": 95.37333333333333, + "grad_norm": 0.8244373202323914, + "learning_rate": 2.335866666666667e-06, + "loss": 1.1958223724365233, + "step": 715300 + }, + { + "epoch": 95.38666666666667, + "grad_norm": 0.8764129281044006, + "learning_rate": 2.3292e-06, + "loss": 1.197607421875, + "step": 715400 + }, + { + "epoch": 95.4, + "grad_norm": 0.9632822275161743, + "learning_rate": 2.3225333333333336e-06, + "loss": 1.1966116333007812, + "step": 715500 + }, + { + "epoch": 95.41333333333333, + "grad_norm": 0.8649945855140686, + "learning_rate": 2.3158666666666667e-06, + "loss": 1.2001445770263672, + "step": 715600 + }, + { + "epoch": 95.42666666666666, + "grad_norm": 0.8928907513618469, + "learning_rate": 2.3092000000000003e-06, + "loss": 1.1985771942138672, + "step": 715700 + }, + { + "epoch": 95.44, + "grad_norm": 0.8795034289360046, + "learning_rate": 2.3026e-06, + "loss": 1.1941232299804687, + "step": 715800 + }, + { + "epoch": 95.45333333333333, + "grad_norm": 0.8100056052207947, + "learning_rate": 2.2959333333333337e-06, + "loss": 1.1983812713623048, + "step": 715900 + }, + { + "epoch": 95.46666666666667, + "grad_norm": 0.8939315676689148, + "learning_rate": 2.289266666666667e-06, + "loss": 1.199446029663086, + "step": 716000 + }, + { + "epoch": 95.48, + "grad_norm": 0.8684143424034119, + "learning_rate": 2.2826e-06, + "loss": 1.1973661804199218, + "step": 716100 + }, + { + "epoch": 95.49333333333334, + "grad_norm": 0.8790379166603088, + "learning_rate": 2.2759333333333335e-06, + "loss": 1.198766098022461, + "step": 716200 + }, + { + "epoch": 95.50666666666666, + "grad_norm": 0.8545668721199036, + "learning_rate": 2.2692666666666666e-06, + "loss": 1.2022593688964844, + "step": 716300 + }, + { + "epoch": 95.52, + "grad_norm": 0.9270732402801514, + "learning_rate": 2.2626e-06, + "loss": 1.1938504028320311, + "step": 716400 + }, + { + "epoch": 95.53333333333333, + "grad_norm": 0.9058865308761597, + "learning_rate": 2.2559333333333337e-06, + "loss": 1.1984404754638671, + "step": 716500 + }, + { + "epoch": 95.54666666666667, + "grad_norm": 0.9313427805900574, + "learning_rate": 2.249266666666667e-06, + "loss": 1.1992517852783202, + "step": 716600 + }, + { + "epoch": 95.56, + "grad_norm": 0.9284090399742126, + "learning_rate": 2.2426000000000003e-06, + "loss": 1.2009918212890625, + "step": 716700 + }, + { + "epoch": 95.57333333333334, + "grad_norm": 0.893657386302948, + "learning_rate": 2.2359333333333335e-06, + "loss": 1.1964833068847656, + "step": 716800 + }, + { + "epoch": 95.58666666666667, + "grad_norm": 0.8945286273956299, + "learning_rate": 2.2292666666666666e-06, + "loss": 1.197146224975586, + "step": 716900 + }, + { + "epoch": 95.6, + "grad_norm": 0.945655345916748, + "learning_rate": 2.2226e-06, + "loss": 1.197714614868164, + "step": 717000 + }, + { + "epoch": 95.61333333333333, + "grad_norm": 0.8761715292930603, + "learning_rate": 2.2159333333333332e-06, + "loss": 1.1985298919677734, + "step": 717100 + }, + { + "epoch": 95.62666666666667, + "grad_norm": 0.9021620154380798, + "learning_rate": 2.2092666666666668e-06, + "loss": 1.1991383361816406, + "step": 717200 + }, + { + "epoch": 95.64, + "grad_norm": 0.8844672441482544, + "learning_rate": 2.2026000000000003e-06, + "loss": 1.1967192840576173, + "step": 717300 + }, + { + "epoch": 95.65333333333334, + "grad_norm": 0.8024809956550598, + "learning_rate": 2.1959333333333334e-06, + "loss": 1.1974788665771485, + "step": 717400 + }, + { + "epoch": 95.66666666666667, + "grad_norm": 0.9280022978782654, + "learning_rate": 2.189266666666667e-06, + "loss": 1.1954544830322265, + "step": 717500 + }, + { + "epoch": 95.68, + "grad_norm": 0.9242950677871704, + "learning_rate": 2.1826e-06, + "loss": 1.1988795471191407, + "step": 717600 + }, + { + "epoch": 95.69333333333333, + "grad_norm": 0.8772919178009033, + "learning_rate": 2.175933333333333e-06, + "loss": 1.1997234344482421, + "step": 717700 + }, + { + "epoch": 95.70666666666666, + "grad_norm": 0.9006758332252502, + "learning_rate": 2.169333333333333e-06, + "loss": 1.1984378814697265, + "step": 717800 + }, + { + "epoch": 95.72, + "grad_norm": 0.8565598726272583, + "learning_rate": 2.1626666666666667e-06, + "loss": 1.1955886840820313, + "step": 717900 + }, + { + "epoch": 95.73333333333333, + "grad_norm": 0.933894157409668, + "learning_rate": 2.156e-06, + "loss": 1.1962789154052735, + "step": 718000 + }, + { + "epoch": 95.74666666666667, + "grad_norm": 0.8751091957092285, + "learning_rate": 2.1493333333333333e-06, + "loss": 1.201226043701172, + "step": 718100 + }, + { + "epoch": 95.76, + "grad_norm": 0.8495886921882629, + "learning_rate": 2.142666666666667e-06, + "loss": 1.1997674560546876, + "step": 718200 + }, + { + "epoch": 95.77333333333333, + "grad_norm": 0.9047145247459412, + "learning_rate": 2.136e-06, + "loss": 1.193944854736328, + "step": 718300 + }, + { + "epoch": 95.78666666666666, + "grad_norm": 0.9060803055763245, + "learning_rate": 2.1293333333333335e-06, + "loss": 1.1976805877685548, + "step": 718400 + }, + { + "epoch": 95.8, + "grad_norm": 0.9374447464942932, + "learning_rate": 2.122666666666667e-06, + "loss": 1.1980715942382814, + "step": 718500 + }, + { + "epoch": 95.81333333333333, + "grad_norm": 0.9492117762565613, + "learning_rate": 2.116e-06, + "loss": 1.2027890014648437, + "step": 718600 + }, + { + "epoch": 95.82666666666667, + "grad_norm": 0.9291294813156128, + "learning_rate": 2.1093333333333333e-06, + "loss": 1.19962158203125, + "step": 718700 + }, + { + "epoch": 95.84, + "grad_norm": 0.8308159112930298, + "learning_rate": 2.102666666666667e-06, + "loss": 1.197718048095703, + "step": 718800 + }, + { + "epoch": 95.85333333333334, + "grad_norm": 0.8678395748138428, + "learning_rate": 2.096e-06, + "loss": 1.200029296875, + "step": 718900 + }, + { + "epoch": 95.86666666666666, + "grad_norm": 0.8894922733306885, + "learning_rate": 2.0893333333333335e-06, + "loss": 1.2026903533935547, + "step": 719000 + }, + { + "epoch": 95.88, + "grad_norm": 0.9153121113777161, + "learning_rate": 2.082666666666667e-06, + "loss": 1.204001922607422, + "step": 719100 + }, + { + "epoch": 95.89333333333333, + "grad_norm": 0.8754669427871704, + "learning_rate": 2.076e-06, + "loss": 1.197853546142578, + "step": 719200 + }, + { + "epoch": 95.90666666666667, + "grad_norm": 0.8554826974868774, + "learning_rate": 2.0693333333333337e-06, + "loss": 1.205391387939453, + "step": 719300 + }, + { + "epoch": 95.92, + "grad_norm": 0.9618128538131714, + "learning_rate": 2.0626666666666668e-06, + "loss": 1.2002410125732421, + "step": 719400 + }, + { + "epoch": 95.93333333333334, + "grad_norm": 0.9223273992538452, + "learning_rate": 2.056e-06, + "loss": 1.1999185943603516, + "step": 719500 + }, + { + "epoch": 95.94666666666667, + "grad_norm": 0.9011958241462708, + "learning_rate": 2.0493333333333334e-06, + "loss": 1.1979779815673828, + "step": 719600 + }, + { + "epoch": 95.96, + "grad_norm": 0.9180704951286316, + "learning_rate": 2.0426666666666665e-06, + "loss": 1.198479537963867, + "step": 719700 + }, + { + "epoch": 95.97333333333333, + "grad_norm": 0.9206179976463318, + "learning_rate": 2.036066666666667e-06, + "loss": 1.2030664825439452, + "step": 719800 + }, + { + "epoch": 95.98666666666666, + "grad_norm": 0.9367160797119141, + "learning_rate": 2.0294e-06, + "loss": 1.2019683837890625, + "step": 719900 + }, + { + "epoch": 96.0, + "grad_norm": 0.9119823575019836, + "learning_rate": 2.0227333333333335e-06, + "loss": 1.202654571533203, + "step": 720000 + }, + { + "epoch": 96.01333333333334, + "grad_norm": 0.9093582034111023, + "learning_rate": 2.0160666666666667e-06, + "loss": 1.1921070098876954, + "step": 720100 + }, + { + "epoch": 96.02666666666667, + "grad_norm": 0.8500725030899048, + "learning_rate": 2.0094e-06, + "loss": 1.1908522033691407, + "step": 720200 + }, + { + "epoch": 96.04, + "grad_norm": 0.9141291379928589, + "learning_rate": 2.0027333333333337e-06, + "loss": 1.1958201599121094, + "step": 720300 + }, + { + "epoch": 96.05333333333333, + "grad_norm": 0.9543992280960083, + "learning_rate": 1.996066666666667e-06, + "loss": 1.1920267486572265, + "step": 720400 + }, + { + "epoch": 96.06666666666666, + "grad_norm": 0.9262734651565552, + "learning_rate": 1.9894e-06, + "loss": 1.193255157470703, + "step": 720500 + }, + { + "epoch": 96.08, + "grad_norm": 0.8305232524871826, + "learning_rate": 1.9827333333333335e-06, + "loss": 1.1950745391845703, + "step": 720600 + }, + { + "epoch": 96.09333333333333, + "grad_norm": 0.8898489475250244, + "learning_rate": 1.9760666666666666e-06, + "loss": 1.1932999420166015, + "step": 720700 + }, + { + "epoch": 96.10666666666667, + "grad_norm": 0.8334019780158997, + "learning_rate": 1.9694e-06, + "loss": 1.1975872039794921, + "step": 720800 + }, + { + "epoch": 96.12, + "grad_norm": 0.8538830876350403, + "learning_rate": 1.9627333333333333e-06, + "loss": 1.1930878448486328, + "step": 720900 + }, + { + "epoch": 96.13333333333334, + "grad_norm": 0.940512478351593, + "learning_rate": 1.956066666666667e-06, + "loss": 1.1931523895263672, + "step": 721000 + }, + { + "epoch": 96.14666666666666, + "grad_norm": 0.9328157305717468, + "learning_rate": 1.9494000000000003e-06, + "loss": 1.1930429077148437, + "step": 721100 + }, + { + "epoch": 96.16, + "grad_norm": 0.8638653755187988, + "learning_rate": 1.9427333333333335e-06, + "loss": 1.1945172119140626, + "step": 721200 + }, + { + "epoch": 96.17333333333333, + "grad_norm": 0.9362466931343079, + "learning_rate": 1.936066666666667e-06, + "loss": 1.1952394104003907, + "step": 721300 + }, + { + "epoch": 96.18666666666667, + "grad_norm": 0.9211965203285217, + "learning_rate": 1.9294e-06, + "loss": 1.1918714141845703, + "step": 721400 + }, + { + "epoch": 96.2, + "grad_norm": 0.8353525996208191, + "learning_rate": 1.9227333333333332e-06, + "loss": 1.1955091857910156, + "step": 721500 + }, + { + "epoch": 96.21333333333334, + "grad_norm": 0.92364901304245, + "learning_rate": 1.9160666666666668e-06, + "loss": 1.196720428466797, + "step": 721600 + }, + { + "epoch": 96.22666666666667, + "grad_norm": 0.8855310082435608, + "learning_rate": 1.9094e-06, + "loss": 1.1948504638671875, + "step": 721700 + }, + { + "epoch": 96.24, + "grad_norm": 0.8908301591873169, + "learning_rate": 1.9028e-06, + "loss": 1.1984718322753907, + "step": 721800 + }, + { + "epoch": 96.25333333333333, + "grad_norm": 0.8790364861488342, + "learning_rate": 1.8961333333333333e-06, + "loss": 1.196904296875, + "step": 721900 + }, + { + "epoch": 96.26666666666667, + "grad_norm": 0.883306622505188, + "learning_rate": 1.8894666666666669e-06, + "loss": 1.1939882659912109, + "step": 722000 + }, + { + "epoch": 96.28, + "grad_norm": 0.9927467107772827, + "learning_rate": 1.8828000000000002e-06, + "loss": 1.19223388671875, + "step": 722100 + }, + { + "epoch": 96.29333333333334, + "grad_norm": 0.8814199566841125, + "learning_rate": 1.8761333333333335e-06, + "loss": 1.1944772338867187, + "step": 722200 + }, + { + "epoch": 96.30666666666667, + "grad_norm": 0.9252114295959473, + "learning_rate": 1.8694666666666667e-06, + "loss": 1.1965172576904297, + "step": 722300 + }, + { + "epoch": 96.32, + "grad_norm": 0.997600257396698, + "learning_rate": 1.8628e-06, + "loss": 1.1935216522216796, + "step": 722400 + }, + { + "epoch": 96.33333333333333, + "grad_norm": 0.9429076910018921, + "learning_rate": 1.8561333333333333e-06, + "loss": 1.1952505493164063, + "step": 722500 + }, + { + "epoch": 96.34666666666666, + "grad_norm": 0.9006048440933228, + "learning_rate": 1.8494666666666666e-06, + "loss": 1.195484848022461, + "step": 722600 + }, + { + "epoch": 96.36, + "grad_norm": 0.8496437072753906, + "learning_rate": 1.8428000000000002e-06, + "loss": 1.1942832946777344, + "step": 722700 + }, + { + "epoch": 96.37333333333333, + "grad_norm": 0.9131640791893005, + "learning_rate": 1.8361333333333335e-06, + "loss": 1.1970438385009765, + "step": 722800 + }, + { + "epoch": 96.38666666666667, + "grad_norm": 0.861127495765686, + "learning_rate": 1.8294666666666668e-06, + "loss": 1.1988032531738282, + "step": 722900 + }, + { + "epoch": 96.4, + "grad_norm": 0.8841111063957214, + "learning_rate": 1.8228000000000001e-06, + "loss": 1.1938710021972656, + "step": 723000 + }, + { + "epoch": 96.41333333333333, + "grad_norm": 0.8644812107086182, + "learning_rate": 1.8161333333333335e-06, + "loss": 1.1916226959228515, + "step": 723100 + }, + { + "epoch": 96.42666666666666, + "grad_norm": 0.9179438352584839, + "learning_rate": 1.8094666666666666e-06, + "loss": 1.1959225463867187, + "step": 723200 + }, + { + "epoch": 96.44, + "grad_norm": 0.8909555077552795, + "learning_rate": 1.8028e-06, + "loss": 1.1968844604492188, + "step": 723300 + }, + { + "epoch": 96.45333333333333, + "grad_norm": 0.8341104984283447, + "learning_rate": 1.7961333333333332e-06, + "loss": 1.1963389587402344, + "step": 723400 + }, + { + "epoch": 96.46666666666667, + "grad_norm": 0.8875642418861389, + "learning_rate": 1.7894666666666668e-06, + "loss": 1.200348129272461, + "step": 723500 + }, + { + "epoch": 96.48, + "grad_norm": 0.9483053684234619, + "learning_rate": 1.7828000000000001e-06, + "loss": 1.1985345458984376, + "step": 723600 + }, + { + "epoch": 96.49333333333334, + "grad_norm": 0.8640918731689453, + "learning_rate": 1.7761333333333334e-06, + "loss": 1.1940691375732422, + "step": 723700 + }, + { + "epoch": 96.50666666666666, + "grad_norm": 0.8642159700393677, + "learning_rate": 1.7695333333333334e-06, + "loss": 1.1963560485839844, + "step": 723800 + }, + { + "epoch": 96.52, + "grad_norm": 0.8903900384902954, + "learning_rate": 1.762866666666667e-06, + "loss": 1.199880599975586, + "step": 723900 + }, + { + "epoch": 96.53333333333333, + "grad_norm": 0.9225534200668335, + "learning_rate": 1.7562000000000002e-06, + "loss": 1.197684326171875, + "step": 724000 + }, + { + "epoch": 96.54666666666667, + "grad_norm": 0.8352228403091431, + "learning_rate": 1.7495333333333336e-06, + "loss": 1.200512924194336, + "step": 724100 + }, + { + "epoch": 96.56, + "grad_norm": 0.895626962184906, + "learning_rate": 1.7428666666666667e-06, + "loss": 1.1950564575195313, + "step": 724200 + }, + { + "epoch": 96.57333333333334, + "grad_norm": 0.8830674290657043, + "learning_rate": 1.7362e-06, + "loss": 1.1997767639160157, + "step": 724300 + }, + { + "epoch": 96.58666666666667, + "grad_norm": 0.875395655632019, + "learning_rate": 1.7295333333333333e-06, + "loss": 1.197208786010742, + "step": 724400 + }, + { + "epoch": 96.6, + "grad_norm": 0.9121081233024597, + "learning_rate": 1.7228666666666666e-06, + "loss": 1.1945203399658204, + "step": 724500 + }, + { + "epoch": 96.61333333333333, + "grad_norm": 0.9376330375671387, + "learning_rate": 1.7162000000000002e-06, + "loss": 1.1965845489501954, + "step": 724600 + }, + { + "epoch": 96.62666666666667, + "grad_norm": 0.8596921563148499, + "learning_rate": 1.7095333333333335e-06, + "loss": 1.195692138671875, + "step": 724700 + }, + { + "epoch": 96.64, + "grad_norm": 0.8527398705482483, + "learning_rate": 1.7028666666666668e-06, + "loss": 1.1965853118896483, + "step": 724800 + }, + { + "epoch": 96.65333333333334, + "grad_norm": 0.8580175042152405, + "learning_rate": 1.6962000000000002e-06, + "loss": 1.1956391143798828, + "step": 724900 + }, + { + "epoch": 96.66666666666667, + "grad_norm": 0.9003075957298279, + "learning_rate": 1.6895333333333333e-06, + "loss": 1.1976248931884765, + "step": 725000 + }, + { + "epoch": 96.68, + "grad_norm": 0.8510597348213196, + "learning_rate": 1.6828666666666666e-06, + "loss": 1.1964473724365234, + "step": 725100 + }, + { + "epoch": 96.69333333333333, + "grad_norm": 0.8973057866096497, + "learning_rate": 1.6762e-06, + "loss": 1.197496337890625, + "step": 725200 + }, + { + "epoch": 96.70666666666666, + "grad_norm": 0.8938978910446167, + "learning_rate": 1.6695333333333333e-06, + "loss": 1.195022964477539, + "step": 725300 + }, + { + "epoch": 96.72, + "grad_norm": 0.9063222408294678, + "learning_rate": 1.6628666666666668e-06, + "loss": 1.1933713531494141, + "step": 725400 + }, + { + "epoch": 96.73333333333333, + "grad_norm": 0.8786043524742126, + "learning_rate": 1.6562000000000001e-06, + "loss": 1.1964022827148437, + "step": 725500 + }, + { + "epoch": 96.74666666666667, + "grad_norm": 0.9674188494682312, + "learning_rate": 1.6495333333333335e-06, + "loss": 1.1983873748779297, + "step": 725600 + }, + { + "epoch": 96.76, + "grad_norm": 0.9302994608879089, + "learning_rate": 1.6428666666666668e-06, + "loss": 1.1975536346435547, + "step": 725700 + }, + { + "epoch": 96.77333333333333, + "grad_norm": 0.8915535807609558, + "learning_rate": 1.636266666666667e-06, + "loss": 1.1970543670654297, + "step": 725800 + }, + { + "epoch": 96.78666666666666, + "grad_norm": 0.91758793592453, + "learning_rate": 1.6296000000000002e-06, + "loss": 1.2024964141845702, + "step": 725900 + }, + { + "epoch": 96.8, + "grad_norm": 0.8457819223403931, + "learning_rate": 1.6229333333333331e-06, + "loss": 1.195786590576172, + "step": 726000 + }, + { + "epoch": 96.81333333333333, + "grad_norm": 0.9062672257423401, + "learning_rate": 1.6162666666666667e-06, + "loss": 1.1972097778320312, + "step": 726100 + }, + { + "epoch": 96.82666666666667, + "grad_norm": 0.9275849461555481, + "learning_rate": 1.6096e-06, + "loss": 1.2003240966796875, + "step": 726200 + }, + { + "epoch": 96.84, + "grad_norm": 0.9141822457313538, + "learning_rate": 1.6029333333333333e-06, + "loss": 1.1985065460205078, + "step": 726300 + }, + { + "epoch": 96.85333333333334, + "grad_norm": 0.8968507647514343, + "learning_rate": 1.5962666666666667e-06, + "loss": 1.1965088653564453, + "step": 726400 + }, + { + "epoch": 96.86666666666666, + "grad_norm": 0.913077175617218, + "learning_rate": 1.5896000000000002e-06, + "loss": 1.1945548248291016, + "step": 726500 + }, + { + "epoch": 96.88, + "grad_norm": 0.8856280446052551, + "learning_rate": 1.5829333333333335e-06, + "loss": 1.198264389038086, + "step": 726600 + }, + { + "epoch": 96.89333333333333, + "grad_norm": 0.9587183594703674, + "learning_rate": 1.5762666666666669e-06, + "loss": 1.198867950439453, + "step": 726700 + }, + { + "epoch": 96.90666666666667, + "grad_norm": 0.8962403535842896, + "learning_rate": 1.5696000000000002e-06, + "loss": 1.1941478729248047, + "step": 726800 + }, + { + "epoch": 96.92, + "grad_norm": 0.9148259162902832, + "learning_rate": 1.5629333333333333e-06, + "loss": 1.1963572692871094, + "step": 726900 + }, + { + "epoch": 96.93333333333334, + "grad_norm": 0.9416415691375732, + "learning_rate": 1.5562666666666668e-06, + "loss": 1.1955250549316405, + "step": 727000 + }, + { + "epoch": 96.94666666666667, + "grad_norm": 0.835249662399292, + "learning_rate": 1.5496e-06, + "loss": 1.1965911102294922, + "step": 727100 + }, + { + "epoch": 96.96, + "grad_norm": 0.8827676177024841, + "learning_rate": 1.5429333333333333e-06, + "loss": 1.1973089599609374, + "step": 727200 + }, + { + "epoch": 96.97333333333333, + "grad_norm": 0.8775216937065125, + "learning_rate": 1.5362666666666668e-06, + "loss": 1.1944822692871093, + "step": 727300 + }, + { + "epoch": 96.98666666666666, + "grad_norm": 0.8615829944610596, + "learning_rate": 1.5296000000000001e-06, + "loss": 1.1994013214111328, + "step": 727400 + }, + { + "epoch": 97.0, + "grad_norm": 0.9200208783149719, + "learning_rate": 1.5229333333333333e-06, + "loss": 1.1997895050048828, + "step": 727500 + }, + { + "epoch": 97.01333333333334, + "grad_norm": 0.8486922383308411, + "learning_rate": 1.5162666666666668e-06, + "loss": 1.1949724578857421, + "step": 727600 + }, + { + "epoch": 97.02666666666667, + "grad_norm": 0.8756220936775208, + "learning_rate": 1.5096000000000001e-06, + "loss": 1.1930170440673828, + "step": 727700 + }, + { + "epoch": 97.04, + "grad_norm": Infinity, + "learning_rate": 1.5029333333333335e-06, + "loss": 1.1907662200927733, + "step": 727800 + }, + { + "epoch": 97.05333333333333, + "grad_norm": 0.9102802276611328, + "learning_rate": 1.4963333333333334e-06, + "loss": 1.1966674041748047, + "step": 727900 + }, + { + "epoch": 97.06666666666666, + "grad_norm": 0.8804049491882324, + "learning_rate": 1.489666666666667e-06, + "loss": 1.1915321350097656, + "step": 728000 + }, + { + "epoch": 97.08, + "grad_norm": 0.8462570309638977, + "learning_rate": 1.483e-06, + "loss": 1.188415756225586, + "step": 728100 + }, + { + "epoch": 97.09333333333333, + "grad_norm": 0.9019154906272888, + "learning_rate": 1.4763333333333334e-06, + "loss": 1.1914682006835937, + "step": 728200 + }, + { + "epoch": 97.10666666666667, + "grad_norm": 0.9102103114128113, + "learning_rate": 1.4696666666666667e-06, + "loss": 1.1929423522949218, + "step": 728300 + }, + { + "epoch": 97.12, + "grad_norm": 0.9278746843338013, + "learning_rate": 1.4630000000000002e-06, + "loss": 1.190726318359375, + "step": 728400 + }, + { + "epoch": 97.13333333333334, + "grad_norm": 0.9312158226966858, + "learning_rate": 1.4563333333333333e-06, + "loss": 1.1920890045166015, + "step": 728500 + }, + { + "epoch": 97.14666666666666, + "grad_norm": 0.8610623478889465, + "learning_rate": 1.4496666666666667e-06, + "loss": 1.1913136291503905, + "step": 728600 + }, + { + "epoch": 97.16, + "grad_norm": 0.8517552614212036, + "learning_rate": 1.443e-06, + "loss": 1.1964224243164063, + "step": 728700 + }, + { + "epoch": 97.17333333333333, + "grad_norm": 0.9079805612564087, + "learning_rate": 1.4363333333333335e-06, + "loss": 1.1886049652099608, + "step": 728800 + }, + { + "epoch": 97.18666666666667, + "grad_norm": 0.8894618153572083, + "learning_rate": 1.4296666666666666e-06, + "loss": 1.1893565368652343, + "step": 728900 + }, + { + "epoch": 97.2, + "grad_norm": 0.927837610244751, + "learning_rate": 1.423e-06, + "loss": 1.1915690612792968, + "step": 729000 + }, + { + "epoch": 97.21333333333334, + "grad_norm": 0.9195118546485901, + "learning_rate": 1.4163333333333333e-06, + "loss": 1.192691650390625, + "step": 729100 + }, + { + "epoch": 97.22666666666667, + "grad_norm": 0.8661218285560608, + "learning_rate": 1.4096666666666668e-06, + "loss": 1.1943994903564452, + "step": 729200 + }, + { + "epoch": 97.24, + "grad_norm": 0.9145841002464294, + "learning_rate": 1.4030000000000002e-06, + "loss": 1.197445068359375, + "step": 729300 + }, + { + "epoch": 97.25333333333333, + "grad_norm": 0.8523109555244446, + "learning_rate": 1.3963333333333333e-06, + "loss": 1.194771499633789, + "step": 729400 + }, + { + "epoch": 97.26666666666667, + "grad_norm": 0.8701912760734558, + "learning_rate": 1.3896666666666668e-06, + "loss": 1.1876846313476563, + "step": 729500 + }, + { + "epoch": 97.28, + "grad_norm": 0.8822584748268127, + "learning_rate": 1.3830000000000001e-06, + "loss": 1.195957565307617, + "step": 729600 + }, + { + "epoch": 97.29333333333334, + "grad_norm": 0.8969473242759705, + "learning_rate": 1.3763333333333335e-06, + "loss": 1.1934420013427733, + "step": 729700 + }, + { + "epoch": 97.30666666666667, + "grad_norm": 0.9088907241821289, + "learning_rate": 1.3696666666666666e-06, + "loss": 1.1958892822265625, + "step": 729800 + }, + { + "epoch": 97.32, + "grad_norm": 0.7961787581443787, + "learning_rate": 1.3630666666666667e-06, + "loss": 1.189772491455078, + "step": 729900 + }, + { + "epoch": 97.33333333333333, + "grad_norm": 0.9014933705329895, + "learning_rate": 1.3564e-06, + "loss": 1.1911412811279296, + "step": 730000 + }, + { + "epoch": 97.34666666666666, + "grad_norm": 0.9077130556106567, + "learning_rate": 1.3497333333333334e-06, + "loss": 1.1925405883789062, + "step": 730100 + }, + { + "epoch": 97.36, + "grad_norm": 0.8387811779975891, + "learning_rate": 1.3430666666666667e-06, + "loss": 1.191651382446289, + "step": 730200 + }, + { + "epoch": 97.37333333333333, + "grad_norm": 0.8837115168571472, + "learning_rate": 1.3364e-06, + "loss": 1.1978406524658203, + "step": 730300 + }, + { + "epoch": 97.38666666666667, + "grad_norm": 0.891261100769043, + "learning_rate": 1.3297333333333334e-06, + "loss": 1.1935235595703124, + "step": 730400 + }, + { + "epoch": 97.4, + "grad_norm": 0.9634777903556824, + "learning_rate": 1.3230666666666667e-06, + "loss": 1.1935658264160156, + "step": 730500 + }, + { + "epoch": 97.41333333333333, + "grad_norm": 0.9264794588088989, + "learning_rate": 1.3164e-06, + "loss": 1.1933699035644532, + "step": 730600 + }, + { + "epoch": 97.42666666666666, + "grad_norm": 0.9273287653923035, + "learning_rate": 1.3097333333333335e-06, + "loss": 1.1926664733886718, + "step": 730700 + }, + { + "epoch": 97.44, + "grad_norm": 0.9044145941734314, + "learning_rate": 1.3030666666666667e-06, + "loss": 1.194606475830078, + "step": 730800 + }, + { + "epoch": 97.45333333333333, + "grad_norm": 0.916735053062439, + "learning_rate": 1.2964e-06, + "loss": 1.192816925048828, + "step": 730900 + }, + { + "epoch": 97.46666666666667, + "grad_norm": 0.9041197896003723, + "learning_rate": 1.2897333333333333e-06, + "loss": 1.1932903289794923, + "step": 731000 + }, + { + "epoch": 97.48, + "grad_norm": 0.8889577984809875, + "learning_rate": 1.2830666666666669e-06, + "loss": 1.1962411499023438, + "step": 731100 + }, + { + "epoch": 97.49333333333334, + "grad_norm": 0.910078763961792, + "learning_rate": 1.2764e-06, + "loss": 1.1956531524658203, + "step": 731200 + }, + { + "epoch": 97.50666666666666, + "grad_norm": 0.8650588393211365, + "learning_rate": 1.2697333333333333e-06, + "loss": 1.1919945526123046, + "step": 731300 + }, + { + "epoch": 97.52, + "grad_norm": 0.9000649452209473, + "learning_rate": 1.2630666666666668e-06, + "loss": 1.1926378631591796, + "step": 731400 + }, + { + "epoch": 97.53333333333333, + "grad_norm": 0.8907895088195801, + "learning_rate": 1.2564000000000002e-06, + "loss": 1.1921055603027344, + "step": 731500 + }, + { + "epoch": 97.54666666666667, + "grad_norm": 0.8809535503387451, + "learning_rate": 1.2497333333333333e-06, + "loss": 1.1962607574462891, + "step": 731600 + }, + { + "epoch": 97.56, + "grad_norm": 0.8726817965507507, + "learning_rate": 1.2430666666666666e-06, + "loss": 1.1959927368164063, + "step": 731700 + }, + { + "epoch": 97.57333333333334, + "grad_norm": 0.9167771935462952, + "learning_rate": 1.2364000000000001e-06, + "loss": 1.1933238220214843, + "step": 731800 + }, + { + "epoch": 97.58666666666667, + "grad_norm": 0.8944850564002991, + "learning_rate": 1.2298e-06, + "loss": 1.198369140625, + "step": 731900 + }, + { + "epoch": 97.6, + "grad_norm": 0.9288177490234375, + "learning_rate": 1.2231333333333334e-06, + "loss": 1.1962329864501953, + "step": 732000 + }, + { + "epoch": 97.61333333333333, + "grad_norm": 0.8759905099868774, + "learning_rate": 1.2164666666666667e-06, + "loss": 1.1970404815673827, + "step": 732100 + }, + { + "epoch": 97.62666666666667, + "grad_norm": 0.9289444088935852, + "learning_rate": 1.2098e-06, + "loss": 1.1988601684570312, + "step": 732200 + }, + { + "epoch": 97.64, + "grad_norm": 0.888252317905426, + "learning_rate": 1.2031333333333334e-06, + "loss": 1.1959870910644532, + "step": 732300 + }, + { + "epoch": 97.65333333333334, + "grad_norm": 0.9400676488876343, + "learning_rate": 1.1964666666666667e-06, + "loss": 1.1936607360839844, + "step": 732400 + }, + { + "epoch": 97.66666666666667, + "grad_norm": 0.7995263934135437, + "learning_rate": 1.1898e-06, + "loss": 1.1914346313476563, + "step": 732500 + }, + { + "epoch": 97.68, + "grad_norm": 0.911656379699707, + "learning_rate": 1.1831333333333334e-06, + "loss": 1.1957060241699218, + "step": 732600 + }, + { + "epoch": 97.69333333333333, + "grad_norm": 0.9077141880989075, + "learning_rate": 1.1764666666666667e-06, + "loss": 1.1969277191162109, + "step": 732700 + }, + { + "epoch": 97.70666666666666, + "grad_norm": 0.922042191028595, + "learning_rate": 1.1698e-06, + "loss": 1.1913483428955078, + "step": 732800 + }, + { + "epoch": 97.72, + "grad_norm": 0.8728546500205994, + "learning_rate": 1.1631333333333333e-06, + "loss": 1.192550277709961, + "step": 732900 + }, + { + "epoch": 97.73333333333333, + "grad_norm": 0.9435664415359497, + "learning_rate": 1.1564666666666667e-06, + "loss": 1.1956972503662109, + "step": 733000 + }, + { + "epoch": 97.74666666666667, + "grad_norm": 0.9456507563591003, + "learning_rate": 1.1498e-06, + "loss": 1.198812255859375, + "step": 733100 + }, + { + "epoch": 97.76, + "grad_norm": 0.9041507244110107, + "learning_rate": 1.1431333333333333e-06, + "loss": 1.1941202545166016, + "step": 733200 + }, + { + "epoch": 97.77333333333333, + "grad_norm": 0.9364042282104492, + "learning_rate": 1.1364666666666669e-06, + "loss": 1.1956196594238282, + "step": 733300 + }, + { + "epoch": 97.78666666666666, + "grad_norm": 0.901881754398346, + "learning_rate": 1.1298000000000002e-06, + "loss": 1.1942565155029297, + "step": 733400 + }, + { + "epoch": 97.8, + "grad_norm": 0.9191442728042603, + "learning_rate": 1.1231333333333333e-06, + "loss": 1.1965391540527344, + "step": 733500 + }, + { + "epoch": 97.81333333333333, + "grad_norm": 0.9554629921913147, + "learning_rate": 1.1164666666666666e-06, + "loss": 1.1935279846191407, + "step": 733600 + }, + { + "epoch": 97.82666666666667, + "grad_norm": 0.903621256351471, + "learning_rate": 1.1098000000000002e-06, + "loss": 1.1937690734863282, + "step": 733700 + }, + { + "epoch": 97.84, + "grad_norm": 0.9251970052719116, + "learning_rate": 1.1031333333333335e-06, + "loss": 1.1984178161621093, + "step": 733800 + }, + { + "epoch": 97.85333333333334, + "grad_norm": 0.9287400245666504, + "learning_rate": 1.0965333333333334e-06, + "loss": 1.196386184692383, + "step": 733900 + }, + { + "epoch": 97.86666666666666, + "grad_norm": 0.9118936061859131, + "learning_rate": 1.0898666666666667e-06, + "loss": 1.1918663787841797, + "step": 734000 + }, + { + "epoch": 97.88, + "grad_norm": 0.9294499754905701, + "learning_rate": 1.0832e-06, + "loss": 1.1964964294433593, + "step": 734100 + }, + { + "epoch": 97.89333333333333, + "grad_norm": 0.8662843704223633, + "learning_rate": 1.0765333333333334e-06, + "loss": 1.1969724273681641, + "step": 734200 + }, + { + "epoch": 97.90666666666667, + "grad_norm": 0.8762206435203552, + "learning_rate": 1.0698666666666667e-06, + "loss": 1.1970738983154297, + "step": 734300 + }, + { + "epoch": 97.92, + "grad_norm": 0.9251389503479004, + "learning_rate": 1.0632e-06, + "loss": 1.1950054168701172, + "step": 734400 + }, + { + "epoch": 97.93333333333334, + "grad_norm": 0.8627253174781799, + "learning_rate": 1.0565333333333334e-06, + "loss": 1.194439926147461, + "step": 734500 + }, + { + "epoch": 97.94666666666667, + "grad_norm": 0.9262219071388245, + "learning_rate": 1.0498666666666667e-06, + "loss": 1.1964743804931641, + "step": 734600 + }, + { + "epoch": 97.96, + "grad_norm": 0.8800917863845825, + "learning_rate": 1.0432e-06, + "loss": 1.1948735046386718, + "step": 734700 + }, + { + "epoch": 97.97333333333333, + "grad_norm": 0.9554460644721985, + "learning_rate": 1.0365333333333334e-06, + "loss": 1.1973654174804687, + "step": 734800 + }, + { + "epoch": 97.98666666666666, + "grad_norm": 0.8912851214408875, + "learning_rate": 1.0298666666666667e-06, + "loss": 1.1976622009277345, + "step": 734900 + }, + { + "epoch": 98.0, + "grad_norm": 0.9327476024627686, + "learning_rate": 1.0232e-06, + "loss": 1.1984359741210937, + "step": 735000 + }, + { + "epoch": 98.01333333333334, + "grad_norm": 0.898631751537323, + "learning_rate": 1.0165333333333333e-06, + "loss": 1.191797409057617, + "step": 735100 + }, + { + "epoch": 98.02666666666667, + "grad_norm": 0.8860185146331787, + "learning_rate": 1.0098666666666669e-06, + "loss": 1.19053955078125, + "step": 735200 + }, + { + "epoch": 98.04, + "grad_norm": 0.8919152617454529, + "learning_rate": 1.0032e-06, + "loss": 1.1930453491210937, + "step": 735300 + }, + { + "epoch": 98.05333333333333, + "grad_norm": 0.9268627762794495, + "learning_rate": 9.965333333333333e-07, + "loss": 1.1904096984863282, + "step": 735400 + }, + { + "epoch": 98.06666666666666, + "grad_norm": 0.9463122487068176, + "learning_rate": 9.898666666666666e-07, + "loss": 1.1924416351318359, + "step": 735500 + }, + { + "epoch": 98.08, + "grad_norm": 0.9249300956726074, + "learning_rate": 9.832000000000002e-07, + "loss": 1.190969467163086, + "step": 735600 + }, + { + "epoch": 98.09333333333333, + "grad_norm": 0.9573506116867065, + "learning_rate": 9.765333333333335e-07, + "loss": 1.1920275115966796, + "step": 735700 + }, + { + "epoch": 98.10666666666667, + "grad_norm": 0.8895424604415894, + "learning_rate": 9.698666666666666e-07, + "loss": 1.1897706604003906, + "step": 735800 + }, + { + "epoch": 98.12, + "grad_norm": 0.8485841155052185, + "learning_rate": 9.632666666666668e-07, + "loss": 1.1928855895996093, + "step": 735900 + }, + { + "epoch": 98.13333333333334, + "grad_norm": 0.9169514775276184, + "learning_rate": 9.566e-07, + "loss": 1.1923430633544922, + "step": 736000 + }, + { + "epoch": 98.14666666666666, + "grad_norm": 0.9484817981719971, + "learning_rate": 9.499333333333334e-07, + "loss": 1.1894152069091797, + "step": 736100 + }, + { + "epoch": 98.16, + "grad_norm": 0.8725702166557312, + "learning_rate": 9.432666666666667e-07, + "loss": 1.1909805297851563, + "step": 736200 + }, + { + "epoch": 98.17333333333333, + "grad_norm": 0.9127253293991089, + "learning_rate": 9.366e-07, + "loss": 1.193762969970703, + "step": 736300 + }, + { + "epoch": 98.18666666666667, + "grad_norm": 0.8876358270645142, + "learning_rate": 9.299333333333334e-07, + "loss": 1.1921793365478515, + "step": 736400 + }, + { + "epoch": 98.2, + "grad_norm": 0.9053890109062195, + "learning_rate": 9.232666666666667e-07, + "loss": 1.1964334106445313, + "step": 736500 + }, + { + "epoch": 98.21333333333334, + "grad_norm": 0.9463318586349487, + "learning_rate": 9.166000000000001e-07, + "loss": 1.188143539428711, + "step": 736600 + }, + { + "epoch": 98.22666666666667, + "grad_norm": 0.8585167527198792, + "learning_rate": 9.099333333333333e-07, + "loss": 1.1954288482666016, + "step": 736700 + }, + { + "epoch": 98.24, + "grad_norm": 0.9063857197761536, + "learning_rate": 9.032666666666667e-07, + "loss": 1.1938237762451172, + "step": 736800 + }, + { + "epoch": 98.25333333333333, + "grad_norm": 0.848952054977417, + "learning_rate": 8.966e-07, + "loss": 1.1889173889160156, + "step": 736900 + }, + { + "epoch": 98.26666666666667, + "grad_norm": 0.9032663106918335, + "learning_rate": 8.899333333333335e-07, + "loss": 1.1894258880615234, + "step": 737000 + }, + { + "epoch": 98.28, + "grad_norm": 0.9298050403594971, + "learning_rate": 8.832666666666668e-07, + "loss": 1.1893203735351563, + "step": 737100 + }, + { + "epoch": 98.29333333333334, + "grad_norm": 0.8868449926376343, + "learning_rate": 8.766e-07, + "loss": 1.1898612976074219, + "step": 737200 + }, + { + "epoch": 98.30666666666667, + "grad_norm": 0.8657017350196838, + "learning_rate": 8.699333333333333e-07, + "loss": 1.1897797393798828, + "step": 737300 + }, + { + "epoch": 98.32, + "grad_norm": 0.8774369359016418, + "learning_rate": 8.632666666666668e-07, + "loss": 1.1933421325683593, + "step": 737400 + }, + { + "epoch": 98.33333333333333, + "grad_norm": 0.9083582758903503, + "learning_rate": 8.566000000000001e-07, + "loss": 1.1912253570556641, + "step": 737500 + }, + { + "epoch": 98.34666666666666, + "grad_norm": 0.8991101980209351, + "learning_rate": 8.499333333333333e-07, + "loss": 1.193739547729492, + "step": 737600 + }, + { + "epoch": 98.36, + "grad_norm": 0.9866260886192322, + "learning_rate": 8.432666666666666e-07, + "loss": 1.1906326293945313, + "step": 737700 + }, + { + "epoch": 98.37333333333333, + "grad_norm": 0.9080073833465576, + "learning_rate": 8.366000000000001e-07, + "loss": 1.192478561401367, + "step": 737800 + }, + { + "epoch": 98.38666666666667, + "grad_norm": 0.8622914552688599, + "learning_rate": 8.300000000000001e-07, + "loss": 1.1917598724365235, + "step": 737900 + }, + { + "epoch": 98.4, + "grad_norm": 0.9066656231880188, + "learning_rate": 8.233333333333334e-07, + "loss": 1.1930951690673828, + "step": 738000 + }, + { + "epoch": 98.41333333333333, + "grad_norm": 0.8253511190414429, + "learning_rate": 8.166666666666666e-07, + "loss": 1.1881201934814454, + "step": 738100 + }, + { + "epoch": 98.42666666666666, + "grad_norm": 0.8869616389274597, + "learning_rate": 8.1e-07, + "loss": 1.1893899536132813, + "step": 738200 + }, + { + "epoch": 98.44, + "grad_norm": 0.8886020183563232, + "learning_rate": 8.033333333333334e-07, + "loss": 1.1935739135742187, + "step": 738300 + }, + { + "epoch": 98.45333333333333, + "grad_norm": 0.9000334143638611, + "learning_rate": 7.966666666666667e-07, + "loss": 1.189201889038086, + "step": 738400 + }, + { + "epoch": 98.46666666666667, + "grad_norm": 0.8531255125999451, + "learning_rate": 7.900000000000002e-07, + "loss": 1.191848373413086, + "step": 738500 + }, + { + "epoch": 98.48, + "grad_norm": 0.9446560144424438, + "learning_rate": 7.833333333333333e-07, + "loss": 1.1940558624267579, + "step": 738600 + }, + { + "epoch": 98.49333333333334, + "grad_norm": 0.8816220760345459, + "learning_rate": 7.766666666666667e-07, + "loss": 1.1970796966552735, + "step": 738700 + }, + { + "epoch": 98.50666666666666, + "grad_norm": 0.8878071308135986, + "learning_rate": 7.7e-07, + "loss": 1.191910171508789, + "step": 738800 + }, + { + "epoch": 98.52, + "grad_norm": 0.9086691737174988, + "learning_rate": 7.633333333333334e-07, + "loss": 1.1919632720947266, + "step": 738900 + }, + { + "epoch": 98.53333333333333, + "grad_norm": 0.9125364422798157, + "learning_rate": 7.566666666666667e-07, + "loss": 1.1903729248046875, + "step": 739000 + }, + { + "epoch": 98.54666666666667, + "grad_norm": 0.9102436900138855, + "learning_rate": 7.5e-07, + "loss": 1.1952772521972657, + "step": 739100 + }, + { + "epoch": 98.56, + "grad_norm": 0.8782820105552673, + "learning_rate": 7.433333333333333e-07, + "loss": 1.1924925994873048, + "step": 739200 + }, + { + "epoch": 98.57333333333334, + "grad_norm": 0.9105757474899292, + "learning_rate": 7.366666666666667e-07, + "loss": 1.1958279418945312, + "step": 739300 + }, + { + "epoch": 98.58666666666667, + "grad_norm": 0.8756064176559448, + "learning_rate": 7.3e-07, + "loss": 1.1938359069824218, + "step": 739400 + }, + { + "epoch": 98.6, + "grad_norm": 0.8714690208435059, + "learning_rate": 7.233333333333333e-07, + "loss": 1.1933795166015626, + "step": 739500 + }, + { + "epoch": 98.61333333333333, + "grad_norm": 0.846801221370697, + "learning_rate": 7.166666666666667e-07, + "loss": 1.1944500732421874, + "step": 739600 + }, + { + "epoch": 98.62666666666667, + "grad_norm": 0.8956632018089294, + "learning_rate": 7.100000000000001e-07, + "loss": 1.1958086395263672, + "step": 739700 + }, + { + "epoch": 98.64, + "grad_norm": 0.8939581513404846, + "learning_rate": 7.033333333333334e-07, + "loss": 1.1935520935058594, + "step": 739800 + }, + { + "epoch": 98.65333333333334, + "grad_norm": 0.8881719708442688, + "learning_rate": 6.967333333333333e-07, + "loss": 1.1934709930419922, + "step": 739900 + }, + { + "epoch": 98.66666666666667, + "grad_norm": 0.9042186141014099, + "learning_rate": 6.900666666666668e-07, + "loss": 1.1922380828857422, + "step": 740000 + }, + { + "epoch": 98.68, + "grad_norm": 0.8477785587310791, + "learning_rate": 6.834e-07, + "loss": 1.1890042877197267, + "step": 740100 + }, + { + "epoch": 98.69333333333333, + "grad_norm": 0.8813819289207458, + "learning_rate": 6.767333333333334e-07, + "loss": 1.1922322082519532, + "step": 740200 + }, + { + "epoch": 98.70666666666666, + "grad_norm": 0.9520646333694458, + "learning_rate": 6.700666666666666e-07, + "loss": 1.1949353790283204, + "step": 740300 + }, + { + "epoch": 98.72, + "grad_norm": 0.8981533050537109, + "learning_rate": 6.634000000000001e-07, + "loss": 1.1972361755371095, + "step": 740400 + }, + { + "epoch": 98.73333333333333, + "grad_norm": 0.8700048327445984, + "learning_rate": 6.567333333333333e-07, + "loss": 1.1961135864257812, + "step": 740500 + }, + { + "epoch": 98.74666666666667, + "grad_norm": 0.9323988556861877, + "learning_rate": 6.500666666666667e-07, + "loss": 1.1912552642822265, + "step": 740600 + }, + { + "epoch": 98.76, + "grad_norm": 0.8961540460586548, + "learning_rate": 6.434e-07, + "loss": 1.1949165344238282, + "step": 740700 + }, + { + "epoch": 98.77333333333333, + "grad_norm": 0.8768694996833801, + "learning_rate": 6.367333333333334e-07, + "loss": 1.193530044555664, + "step": 740800 + }, + { + "epoch": 98.78666666666666, + "grad_norm": 0.9372314810752869, + "learning_rate": 6.300666666666667e-07, + "loss": 1.1909781646728517, + "step": 740900 + }, + { + "epoch": 98.8, + "grad_norm": 0.9452794194221497, + "learning_rate": 6.234e-07, + "loss": 1.1920659637451172, + "step": 741000 + }, + { + "epoch": 98.81333333333333, + "grad_norm": 0.8834349513053894, + "learning_rate": 6.167333333333334e-07, + "loss": 1.194448471069336, + "step": 741100 + }, + { + "epoch": 98.82666666666667, + "grad_norm": 0.8450713157653809, + "learning_rate": 6.100666666666667e-07, + "loss": 1.1934151458740234, + "step": 741200 + }, + { + "epoch": 98.84, + "grad_norm": 0.897294819355011, + "learning_rate": 6.034e-07, + "loss": 1.1937016296386718, + "step": 741300 + }, + { + "epoch": 98.85333333333334, + "grad_norm": 0.9136027693748474, + "learning_rate": 5.967333333333333e-07, + "loss": 1.194300994873047, + "step": 741400 + }, + { + "epoch": 98.86666666666666, + "grad_norm": 0.8889844417572021, + "learning_rate": 5.900666666666667e-07, + "loss": 1.1939845275878906, + "step": 741500 + }, + { + "epoch": 98.88, + "grad_norm": 0.8959463238716125, + "learning_rate": 5.834e-07, + "loss": 1.1932821655273438, + "step": 741600 + }, + { + "epoch": 98.89333333333333, + "grad_norm": 0.9319109320640564, + "learning_rate": 5.767333333333334e-07, + "loss": 1.1942572784423828, + "step": 741700 + }, + { + "epoch": 98.90666666666667, + "grad_norm": 0.948413074016571, + "learning_rate": 5.700666666666666e-07, + "loss": 1.1931224822998048, + "step": 741800 + }, + { + "epoch": 98.92, + "grad_norm": 0.943126380443573, + "learning_rate": 5.634666666666667e-07, + "loss": 1.1902999877929688, + "step": 741900 + }, + { + "epoch": 98.93333333333334, + "grad_norm": 0.9261944890022278, + "learning_rate": 5.568e-07, + "loss": 1.1924332427978515, + "step": 742000 + }, + { + "epoch": 98.94666666666667, + "grad_norm": 0.8977665901184082, + "learning_rate": 5.501333333333333e-07, + "loss": 1.1910804748535155, + "step": 742100 + }, + { + "epoch": 98.96, + "grad_norm": 0.9129285216331482, + "learning_rate": 5.434666666666667e-07, + "loss": 1.1923501586914063, + "step": 742200 + }, + { + "epoch": 98.97333333333333, + "grad_norm": 0.9128681421279907, + "learning_rate": 5.368000000000001e-07, + "loss": 1.1889964294433595, + "step": 742300 + }, + { + "epoch": 98.98666666666666, + "grad_norm": 0.9412058591842651, + "learning_rate": 5.301333333333333e-07, + "loss": 1.192625732421875, + "step": 742400 + }, + { + "epoch": 99.0, + "grad_norm": 0.8482484221458435, + "learning_rate": 5.234666666666667e-07, + "loss": 1.1931838989257812, + "step": 742500 + }, + { + "epoch": 99.01333333333334, + "grad_norm": 0.9009374976158142, + "learning_rate": 5.168e-07, + "loss": 1.1919266510009765, + "step": 742600 + }, + { + "epoch": 99.02666666666667, + "grad_norm": 0.9100991487503052, + "learning_rate": 5.101333333333334e-07, + "loss": 1.1920348358154298, + "step": 742700 + }, + { + "epoch": 99.04, + "grad_norm": 0.896523118019104, + "learning_rate": 5.034666666666666e-07, + "loss": 1.1886348724365234, + "step": 742800 + }, + { + "epoch": 99.05333333333333, + "grad_norm": 0.8603360652923584, + "learning_rate": 4.968000000000001e-07, + "loss": 1.1856871032714844, + "step": 742900 + }, + { + "epoch": 99.06666666666666, + "grad_norm": 0.9280701279640198, + "learning_rate": 4.901333333333334e-07, + "loss": 1.188511962890625, + "step": 743000 + }, + { + "epoch": 99.08, + "grad_norm": 0.9534225463867188, + "learning_rate": 4.834666666666667e-07, + "loss": 1.1933180236816405, + "step": 743100 + }, + { + "epoch": 99.09333333333333, + "grad_norm": 0.8999395370483398, + "learning_rate": 4.768e-07, + "loss": 1.189303436279297, + "step": 743200 + }, + { + "epoch": 99.10666666666667, + "grad_norm": 0.8953112363815308, + "learning_rate": 4.7013333333333336e-07, + "loss": 1.18920166015625, + "step": 743300 + }, + { + "epoch": 99.12, + "grad_norm": 0.8740084767341614, + "learning_rate": 4.6346666666666663e-07, + "loss": 1.1907463073730469, + "step": 743400 + }, + { + "epoch": 99.13333333333334, + "grad_norm": 0.8928273320198059, + "learning_rate": 4.568e-07, + "loss": 1.1911299133300781, + "step": 743500 + }, + { + "epoch": 99.14666666666666, + "grad_norm": 0.8718655705451965, + "learning_rate": 4.501333333333334e-07, + "loss": 1.1908772277832032, + "step": 743600 + }, + { + "epoch": 99.16, + "grad_norm": 0.9151206612586975, + "learning_rate": 4.4346666666666667e-07, + "loss": 1.1899483489990235, + "step": 743700 + }, + { + "epoch": 99.17333333333333, + "grad_norm": 0.891651451587677, + "learning_rate": 4.3680000000000005e-07, + "loss": 1.19437744140625, + "step": 743800 + }, + { + "epoch": 99.18666666666667, + "grad_norm": 0.8451858758926392, + "learning_rate": 4.3020000000000003e-07, + "loss": 1.1926042175292968, + "step": 743900 + }, + { + "epoch": 99.2, + "grad_norm": 0.8772236108779907, + "learning_rate": 4.2353333333333335e-07, + "loss": 1.1880721282958984, + "step": 744000 + }, + { + "epoch": 99.21333333333334, + "grad_norm": 0.857770562171936, + "learning_rate": 4.1686666666666673e-07, + "loss": 1.1957527923583984, + "step": 744100 + }, + { + "epoch": 99.22666666666667, + "grad_norm": 0.9516028165817261, + "learning_rate": 4.102e-07, + "loss": 1.1945584869384767, + "step": 744200 + }, + { + "epoch": 99.24, + "grad_norm": 0.843956708908081, + "learning_rate": 4.035333333333334e-07, + "loss": 1.1935086059570312, + "step": 744300 + }, + { + "epoch": 99.25333333333333, + "grad_norm": 0.8973932862281799, + "learning_rate": 3.9686666666666666e-07, + "loss": 1.1924853515625, + "step": 744400 + }, + { + "epoch": 99.26666666666667, + "grad_norm": 0.8814348578453064, + "learning_rate": 3.9020000000000004e-07, + "loss": 1.1938815307617188, + "step": 744500 + }, + { + "epoch": 99.28, + "grad_norm": 0.9305223226547241, + "learning_rate": 3.8353333333333337e-07, + "loss": 1.1920265197753905, + "step": 744600 + }, + { + "epoch": 99.29333333333334, + "grad_norm": 0.8577662706375122, + "learning_rate": 3.768666666666667e-07, + "loss": 1.1892983245849609, + "step": 744700 + }, + { + "epoch": 99.30666666666667, + "grad_norm": 0.9148098230361938, + "learning_rate": 3.702e-07, + "loss": 1.193815689086914, + "step": 744800 + }, + { + "epoch": 99.32, + "grad_norm": 0.8657062649726868, + "learning_rate": 3.6353333333333335e-07, + "loss": 1.1912665557861328, + "step": 744900 + }, + { + "epoch": 99.33333333333333, + "grad_norm": 0.9293052554130554, + "learning_rate": 3.5686666666666667e-07, + "loss": 1.19271728515625, + "step": 745000 + }, + { + "epoch": 99.34666666666666, + "grad_norm": 0.9440531134605408, + "learning_rate": 3.502e-07, + "loss": 1.1907530975341798, + "step": 745100 + }, + { + "epoch": 99.36, + "grad_norm": 0.8987706303596497, + "learning_rate": 3.435333333333333e-07, + "loss": 1.1910220336914064, + "step": 745200 + }, + { + "epoch": 99.37333333333333, + "grad_norm": 0.9358866214752197, + "learning_rate": 3.3686666666666665e-07, + "loss": 1.194500732421875, + "step": 745300 + }, + { + "epoch": 99.38666666666667, + "grad_norm": 0.8812012672424316, + "learning_rate": 3.302e-07, + "loss": 1.1937469482421874, + "step": 745400 + }, + { + "epoch": 99.4, + "grad_norm": 0.9004390239715576, + "learning_rate": 3.235333333333333e-07, + "loss": 1.1931354522705078, + "step": 745500 + }, + { + "epoch": 99.41333333333333, + "grad_norm": 0.870255708694458, + "learning_rate": 3.168666666666667e-07, + "loss": 1.1928106689453124, + "step": 745600 + }, + { + "epoch": 99.42666666666666, + "grad_norm": 0.8272011280059814, + "learning_rate": 3.102e-07, + "loss": 1.1933961486816407, + "step": 745700 + }, + { + "epoch": 99.44, + "grad_norm": 0.904954731464386, + "learning_rate": 3.0353333333333334e-07, + "loss": 1.1930033874511718, + "step": 745800 + }, + { + "epoch": 99.45333333333333, + "grad_norm": 0.8282216191291809, + "learning_rate": 2.9693333333333337e-07, + "loss": 1.1900058746337892, + "step": 745900 + }, + { + "epoch": 99.46666666666667, + "grad_norm": 0.9468961954116821, + "learning_rate": 2.902666666666667e-07, + "loss": 1.1919841003417968, + "step": 746000 + }, + { + "epoch": 99.48, + "grad_norm": 0.9418879151344299, + "learning_rate": 2.836e-07, + "loss": 1.1886141204833984, + "step": 746100 + }, + { + "epoch": 99.49333333333334, + "grad_norm": 0.8836652636528015, + "learning_rate": 2.7693333333333335e-07, + "loss": 1.1884160614013672, + "step": 746200 + }, + { + "epoch": 99.50666666666666, + "grad_norm": 0.9527371525764465, + "learning_rate": 2.702666666666667e-07, + "loss": 1.1915505981445313, + "step": 746300 + }, + { + "epoch": 99.52, + "grad_norm": 0.8506571054458618, + "learning_rate": 2.636e-07, + "loss": 1.1904411315917969, + "step": 746400 + }, + { + "epoch": 99.53333333333333, + "grad_norm": 0.8335494995117188, + "learning_rate": 2.5693333333333333e-07, + "loss": 1.1901004028320312, + "step": 746500 + }, + { + "epoch": 99.54666666666667, + "grad_norm": 0.9234083890914917, + "learning_rate": 2.5026666666666666e-07, + "loss": 1.1895111846923827, + "step": 746600 + }, + { + "epoch": 99.56, + "grad_norm": 0.9194679260253906, + "learning_rate": 2.436e-07, + "loss": 1.1904415130615233, + "step": 746700 + }, + { + "epoch": 99.57333333333334, + "grad_norm": 0.9224709868431091, + "learning_rate": 2.3693333333333336e-07, + "loss": 1.1882210540771485, + "step": 746800 + }, + { + "epoch": 99.58666666666667, + "grad_norm": 0.9308574795722961, + "learning_rate": 2.302666666666667e-07, + "loss": 1.1944318389892579, + "step": 746900 + }, + { + "epoch": 99.6, + "grad_norm": 0.8662922382354736, + "learning_rate": 2.2360000000000002e-07, + "loss": 1.1902082824707032, + "step": 747000 + }, + { + "epoch": 99.61333333333333, + "grad_norm": 0.9251387715339661, + "learning_rate": 2.1693333333333334e-07, + "loss": 1.1896009826660157, + "step": 747100 + }, + { + "epoch": 99.62666666666667, + "grad_norm": 0.8867355585098267, + "learning_rate": 2.102666666666667e-07, + "loss": 1.1914397430419923, + "step": 747200 + }, + { + "epoch": 99.64, + "grad_norm": 0.8558920621871948, + "learning_rate": 2.0360000000000002e-07, + "loss": 1.193257827758789, + "step": 747300 + }, + { + "epoch": 99.65333333333334, + "grad_norm": 0.8549710512161255, + "learning_rate": 1.9693333333333335e-07, + "loss": 1.1871185302734375, + "step": 747400 + }, + { + "epoch": 99.66666666666667, + "grad_norm": 0.9454492330551147, + "learning_rate": 1.9026666666666668e-07, + "loss": 1.1909255218505859, + "step": 747500 + }, + { + "epoch": 99.68, + "grad_norm": 0.8846890330314636, + "learning_rate": 1.836e-07, + "loss": 1.191995849609375, + "step": 747600 + }, + { + "epoch": 99.69333333333333, + "grad_norm": 0.8920761942863464, + "learning_rate": 1.7693333333333333e-07, + "loss": 1.1904275512695313, + "step": 747700 + }, + { + "epoch": 99.70666666666666, + "grad_norm": 0.9085679054260254, + "learning_rate": 1.7026666666666666e-07, + "loss": 1.1856131744384766, + "step": 747800 + }, + { + "epoch": 99.72, + "grad_norm": 0.8654316663742065, + "learning_rate": 1.636666666666667e-07, + "loss": 1.1924869537353515, + "step": 747900 + }, + { + "epoch": 99.73333333333333, + "grad_norm": 0.9672116041183472, + "learning_rate": 1.5700000000000002e-07, + "loss": 1.1914896392822265, + "step": 748000 + }, + { + "epoch": 99.74666666666667, + "grad_norm": 0.8933631181716919, + "learning_rate": 1.5033333333333334e-07, + "loss": 1.1880557250976562, + "step": 748100 + }, + { + "epoch": 99.76, + "grad_norm": 0.8144270777702332, + "learning_rate": 1.4366666666666667e-07, + "loss": 1.1939049530029298, + "step": 748200 + }, + { + "epoch": 99.77333333333333, + "grad_norm": 0.942760169506073, + "learning_rate": 1.37e-07, + "loss": 1.1934993743896485, + "step": 748300 + }, + { + "epoch": 99.78666666666666, + "grad_norm": 0.9373781085014343, + "learning_rate": 1.3033333333333335e-07, + "loss": 1.1954252624511719, + "step": 748400 + }, + { + "epoch": 99.8, + "grad_norm": 0.852530837059021, + "learning_rate": 1.2366666666666668e-07, + "loss": 1.1905007934570313, + "step": 748500 + }, + { + "epoch": 99.81333333333333, + "grad_norm": 0.9099419116973877, + "learning_rate": 1.1700000000000002e-07, + "loss": 1.1874067687988281, + "step": 748600 + }, + { + "epoch": 99.82666666666667, + "grad_norm": 0.9150423407554626, + "learning_rate": 1.1033333333333334e-07, + "loss": 1.1895872497558593, + "step": 748700 + }, + { + "epoch": 99.84, + "grad_norm": 0.9039080142974854, + "learning_rate": 1.0366666666666667e-07, + "loss": 1.1886183166503905, + "step": 748800 + }, + { + "epoch": 99.85333333333334, + "grad_norm": 0.8735392689704895, + "learning_rate": 9.700000000000001e-08, + "loss": 1.1912483978271484, + "step": 748900 + }, + { + "epoch": 99.86666666666666, + "grad_norm": 0.9005591869354248, + "learning_rate": 9.033333333333333e-08, + "loss": 1.1915541076660157, + "step": 749000 + }, + { + "epoch": 99.88, + "grad_norm": 0.914032518863678, + "learning_rate": 8.366666666666667e-08, + "loss": 1.194538803100586, + "step": 749100 + }, + { + "epoch": 99.89333333333333, + "grad_norm": 0.9344823360443115, + "learning_rate": 7.7e-08, + "loss": 1.1954287719726562, + "step": 749200 + }, + { + "epoch": 99.90666666666667, + "grad_norm": 0.9338550567626953, + "learning_rate": 7.033333333333334e-08, + "loss": 1.188226318359375, + "step": 749300 + }, + { + "epoch": 99.92, + "grad_norm": 0.8841633796691895, + "learning_rate": 6.366666666666667e-08, + "loss": 1.1888745880126954, + "step": 749400 + }, + { + "epoch": 99.93333333333334, + "grad_norm": 0.9246593117713928, + "learning_rate": 5.7e-08, + "loss": 1.1918194580078125, + "step": 749500 + }, + { + "epoch": 99.94666666666667, + "grad_norm": 0.8690961003303528, + "learning_rate": 5.033333333333333e-08, + "loss": 1.1911461639404297, + "step": 749600 + }, + { + "epoch": 99.96, + "grad_norm": 0.8422365188598633, + "learning_rate": 4.3666666666666674e-08, + "loss": 1.1900325012207031, + "step": 749700 + } + ], + "logging_steps": 100, + "max_steps": 750000, + "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": 2.020158668537856e+17, + "train_batch_size": 8, + "trial_name": null, + "trial_params": null +} diff --git a/timecost/c14/realtabformer/rtf-c14-20260501_010151/rtf_checkpoints/checkpoint-749700/training_args.bin b/timecost/c14/realtabformer/rtf-c14-20260501_010151/rtf_checkpoints/checkpoint-749700/training_args.bin new file mode 100644 index 0000000000000000000000000000000000000000..34d68dc0e0fe1c1f12a2e581dd1b166aa7178a9e --- /dev/null +++ b/timecost/c14/realtabformer/rtf-c14-20260501_010151/rtf_checkpoints/checkpoint-749700/training_args.bin @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:9e2cd88337d1d846c6918d2b3b63fa3e5c93f12fefc082497590da854a564607 +size 5201 diff --git a/timecost/c14/realtabformer/rtf-c14-20260501_010151/rtf_checkpoints/checkpoint-749800/config.json b/timecost/c14/realtabformer/rtf-c14-20260501_010151/rtf_checkpoints/checkpoint-749800/config.json new file mode 100644 index 0000000000000000000000000000000000000000..79a0184a09b7bca7a3c208529833166f08ca48c0 --- /dev/null +++ b/timecost/c14/realtabformer/rtf-c14-20260501_010151/rtf_checkpoints/checkpoint-749800/config.json @@ -0,0 +1,34 @@ +{ + "activation_function": "gelu_new", + "add_cross_attention": false, + "architectures": [ + "GPT2LMHeadModel" + ], + "attn_pdrop": 0.1, + "bos_token_id": 5, + "dtype": "float32", + "embd_pdrop": 0.1, + "eos_token_id": 6, + "initializer_range": 0.02, + "layer_norm_epsilon": 1e-05, + "model_type": "gpt2", + "n_embd": 768, + "n_head": 12, + "n_inner": null, + "n_layer": 6, + "n_positions": 1024, + "pad_token_id": null, + "reorder_and_upcast_attn": false, + "resid_pdrop": 0.1, + "scale_attn_by_inverse_layer_idx": false, + "scale_attn_weights": true, + "summary_activation": null, + "summary_first_dropout": 0.1, + "summary_proj_to_labels": true, + "summary_type": "cls_index", + "summary_use_proj": true, + "tie_word_embeddings": true, + "transformers_version": "5.5.3", + "use_cache": false, + "vocab_size": 16472 +} diff --git a/timecost/c14/realtabformer/rtf-c14-20260501_010151/rtf_checkpoints/checkpoint-749800/generation_config.json b/timecost/c14/realtabformer/rtf-c14-20260501_010151/rtf_checkpoints/checkpoint-749800/generation_config.json new file mode 100644 index 0000000000000000000000000000000000000000..ffe89567780e75b5c22eade9be971483b9618f39 --- /dev/null +++ b/timecost/c14/realtabformer/rtf-c14-20260501_010151/rtf_checkpoints/checkpoint-749800/generation_config.json @@ -0,0 +1,9 @@ +{ + "_from_model_config": true, + "bos_token_id": 5, + "eos_token_id": 6, + "output_attentions": false, + "output_hidden_states": false, + "transformers_version": "5.5.3", + "use_cache": true +} diff --git a/timecost/c14/realtabformer/rtf-c14-20260501_010151/rtf_checkpoints/checkpoint-749800/model.safetensors b/timecost/c14/realtabformer/rtf-c14-20260501_010151/rtf_checkpoints/checkpoint-749800/model.safetensors new file mode 100644 index 0000000000000000000000000000000000000000..d4cbb8000d5e03c22e91cf9caff4f5c603cc6faa --- /dev/null +++ b/timecost/c14/realtabformer/rtf-c14-20260501_010151/rtf_checkpoints/checkpoint-749800/model.safetensors @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:a37136f8f4a9ad3ed1d484252566131d2266f968924a23a9ce17a95a250ef68b +size 223870408 diff --git a/timecost/c14/realtabformer/rtf-c14-20260501_010151/rtf_checkpoints/checkpoint-749800/optimizer.pt b/timecost/c14/realtabformer/rtf-c14-20260501_010151/rtf_checkpoints/checkpoint-749800/optimizer.pt new file mode 100644 index 0000000000000000000000000000000000000000..8e840c367c82b5893c54b3202ee87373521828b3 --- /dev/null +++ b/timecost/c14/realtabformer/rtf-c14-20260501_010151/rtf_checkpoints/checkpoint-749800/optimizer.pt @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:86297a9938df2a857dd7045a2374fc06550ab8dc88cfd178ef4408209f943825 +size 447789899 diff --git a/timecost/c14/realtabformer/rtf-c14-20260501_010151/rtf_checkpoints/checkpoint-749800/rng_state.pth b/timecost/c14/realtabformer/rtf-c14-20260501_010151/rtf_checkpoints/checkpoint-749800/rng_state.pth new file mode 100644 index 0000000000000000000000000000000000000000..9a62267a0a42413d500ee55e65ccb84902d0b608 --- /dev/null +++ b/timecost/c14/realtabformer/rtf-c14-20260501_010151/rtf_checkpoints/checkpoint-749800/rng_state.pth @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:98703ce5d5303f2f98b06a5e82373e3988013bc5705103f1916324d845e2aaf8 +size 14645 diff --git a/timecost/c14/realtabformer/rtf-c14-20260501_010151/rtf_checkpoints/checkpoint-749800/scaler.pt b/timecost/c14/realtabformer/rtf-c14-20260501_010151/rtf_checkpoints/checkpoint-749800/scaler.pt new file mode 100644 index 0000000000000000000000000000000000000000..4f80385a90913a4d231ffcd88a7851b6a6050532 --- /dev/null +++ b/timecost/c14/realtabformer/rtf-c14-20260501_010151/rtf_checkpoints/checkpoint-749800/scaler.pt @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:cf44495ba328110e6e2f85b0f245cd5aa719dd9c1c0e35af59fdae7101f2b6e6 +size 1383 diff --git a/timecost/c14/realtabformer/rtf-c14-20260501_010151/rtf_checkpoints/checkpoint-749800/scheduler.pt b/timecost/c14/realtabformer/rtf-c14-20260501_010151/rtf_checkpoints/checkpoint-749800/scheduler.pt new file mode 100644 index 0000000000000000000000000000000000000000..0f6666017a160e31836e239eba76ca86447cc189 --- /dev/null +++ b/timecost/c14/realtabformer/rtf-c14-20260501_010151/rtf_checkpoints/checkpoint-749800/scheduler.pt @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:92d32ec942a5a7ad0c5da3f33784ee59437921ae6bb0342dc62242ec14859b17 +size 1465 diff --git a/timecost/c14/realtabformer/rtf-c14-20260501_010151/rtf_checkpoints/checkpoint-749800/trainer_state.json b/timecost/c14/realtabformer/rtf-c14-20260501_010151/rtf_checkpoints/checkpoint-749800/trainer_state.json new file mode 100644 index 0000000000000000000000000000000000000000..bdd9074199a16a3574e0b7e6e986a875c174fa33 --- /dev/null +++ b/timecost/c14/realtabformer/rtf-c14-20260501_010151/rtf_checkpoints/checkpoint-749800/trainer_state.json @@ -0,0 +1,52520 @@ +{ + "best_global_step": null, + "best_metric": null, + "best_model_checkpoint": null, + "epoch": 99.97333333333333, + "eval_steps": 100, + "global_step": 749800, + "is_hyper_param_search": false, + "is_local_process_zero": true, + "is_world_process_zero": true, + "log_history": [ + { + "epoch": 0.013333333333333334, + "grad_norm": 0.3097156882286072, + "learning_rate": 4.99934e-05, + "loss": 4.729451904296875, + "step": 100 + }, + { + "epoch": 0.02666666666666667, + "grad_norm": 0.2790767550468445, + "learning_rate": 4.9986733333333334e-05, + "loss": 2.9246112060546876, + "step": 200 + }, + { + "epoch": 0.04, + "grad_norm": 0.2287004292011261, + "learning_rate": 4.998006666666667e-05, + "loss": 2.681365966796875, + "step": 300 + }, + { + "epoch": 0.05333333333333334, + "grad_norm": 0.2410515397787094, + "learning_rate": 4.9973400000000005e-05, + "loss": 2.57897216796875, + "step": 400 + }, + { + "epoch": 0.06666666666666667, + "grad_norm": 0.23536495864391327, + "learning_rate": 4.996673333333334e-05, + "loss": 2.5199215698242186, + "step": 500 + }, + { + "epoch": 0.08, + "grad_norm": 0.2238040715456009, + "learning_rate": 4.996006666666667e-05, + "loss": 2.4802560424804687, + "step": 600 + }, + { + "epoch": 0.09333333333333334, + "grad_norm": 0.2373904138803482, + "learning_rate": 4.99534e-05, + "loss": 2.4584336853027344, + "step": 700 + }, + { + "epoch": 0.10666666666666667, + "grad_norm": 0.2210150510072708, + "learning_rate": 4.9946733333333334e-05, + "loss": 2.4438829040527343, + "step": 800 + }, + { + "epoch": 0.12, + "grad_norm": 0.23910416662693024, + "learning_rate": 4.9940066666666666e-05, + "loss": 2.430836181640625, + "step": 900 + }, + { + "epoch": 0.13333333333333333, + "grad_norm": 0.21543893218040466, + "learning_rate": 4.9933400000000005e-05, + "loss": 2.416129150390625, + "step": 1000 + }, + { + "epoch": 0.14666666666666667, + "grad_norm": 0.21585851907730103, + "learning_rate": 4.992673333333334e-05, + "loss": 2.4107843017578126, + "step": 1100 + }, + { + "epoch": 0.16, + "grad_norm": 0.24163727462291718, + "learning_rate": 4.992006666666667e-05, + "loss": 2.406159210205078, + "step": 1200 + }, + { + "epoch": 0.17333333333333334, + "grad_norm": 0.1956426501274109, + "learning_rate": 4.99134e-05, + "loss": 2.403145751953125, + "step": 1300 + }, + { + "epoch": 0.18666666666666668, + "grad_norm": 0.22274842858314514, + "learning_rate": 4.9906733333333335e-05, + "loss": 2.4001878356933593, + "step": 1400 + }, + { + "epoch": 0.2, + "grad_norm": 0.21048018336296082, + "learning_rate": 4.990006666666667e-05, + "loss": 2.396698455810547, + "step": 1500 + }, + { + "epoch": 0.21333333333333335, + "grad_norm": 0.20668183267116547, + "learning_rate": 4.98934e-05, + "loss": 2.3899136352539063, + "step": 1600 + }, + { + "epoch": 0.22666666666666666, + "grad_norm": 0.21129441261291504, + "learning_rate": 4.988673333333334e-05, + "loss": 2.3887448120117187, + "step": 1700 + }, + { + "epoch": 0.24, + "grad_norm": 0.19339148700237274, + "learning_rate": 4.988006666666667e-05, + "loss": 2.386446228027344, + "step": 1800 + }, + { + "epoch": 0.25333333333333335, + "grad_norm": 0.24494831264019012, + "learning_rate": 4.98734e-05, + "loss": 2.3824462890625, + "step": 1900 + }, + { + "epoch": 0.26666666666666666, + "grad_norm": 0.22533085942268372, + "learning_rate": 4.9866733333333335e-05, + "loss": 2.382945709228516, + "step": 2000 + }, + { + "epoch": 0.28, + "grad_norm": 0.19327044486999512, + "learning_rate": 4.9860066666666674e-05, + "loss": 2.380709533691406, + "step": 2100 + }, + { + "epoch": 0.29333333333333333, + "grad_norm": 0.21988032758235931, + "learning_rate": 4.98534e-05, + "loss": 2.3797772216796873, + "step": 2200 + }, + { + "epoch": 0.30666666666666664, + "grad_norm": 0.21458032727241516, + "learning_rate": 4.984673333333333e-05, + "loss": 2.3806968688964845, + "step": 2300 + }, + { + "epoch": 0.32, + "grad_norm": 0.1938823163509369, + "learning_rate": 4.984006666666667e-05, + "loss": 2.377256317138672, + "step": 2400 + }, + { + "epoch": 0.3333333333333333, + "grad_norm": 0.2332620471715927, + "learning_rate": 4.98334e-05, + "loss": 2.3771754455566407, + "step": 2500 + }, + { + "epoch": 0.3466666666666667, + "grad_norm": 0.2167084515094757, + "learning_rate": 4.9826733333333335e-05, + "loss": 2.379599151611328, + "step": 2600 + }, + { + "epoch": 0.36, + "grad_norm": 0.21894526481628418, + "learning_rate": 4.982006666666667e-05, + "loss": 2.376912078857422, + "step": 2700 + }, + { + "epoch": 0.37333333333333335, + "grad_norm": 0.21106357872486115, + "learning_rate": 4.9813400000000007e-05, + "loss": 2.374015045166016, + "step": 2800 + }, + { + "epoch": 0.38666666666666666, + "grad_norm": 0.19057656824588776, + "learning_rate": 4.980673333333333e-05, + "loss": 2.3733976745605467, + "step": 2900 + }, + { + "epoch": 0.4, + "grad_norm": 0.21368202567100525, + "learning_rate": 4.9800066666666664e-05, + "loss": 2.3731019592285154, + "step": 3000 + }, + { + "epoch": 0.41333333333333333, + "grad_norm": 0.20361854135990143, + "learning_rate": 4.9793400000000003e-05, + "loss": 2.372502746582031, + "step": 3100 + }, + { + "epoch": 0.4266666666666667, + "grad_norm": 0.21937857568264008, + "learning_rate": 4.9786733333333336e-05, + "loss": 2.3699537658691407, + "step": 3200 + }, + { + "epoch": 0.44, + "grad_norm": 0.20447471737861633, + "learning_rate": 4.978006666666667e-05, + "loss": 2.3710557556152345, + "step": 3300 + }, + { + "epoch": 0.4533333333333333, + "grad_norm": 0.21187078952789307, + "learning_rate": 4.97734e-05, + "loss": 2.3726930236816406, + "step": 3400 + }, + { + "epoch": 0.4666666666666667, + "grad_norm": 0.2117481529712677, + "learning_rate": 4.976673333333334e-05, + "loss": 2.3712057495117187, + "step": 3500 + }, + { + "epoch": 0.48, + "grad_norm": 0.21514153480529785, + "learning_rate": 4.976006666666667e-05, + "loss": 2.3699081420898436, + "step": 3600 + }, + { + "epoch": 0.49333333333333335, + "grad_norm": 0.21301567554473877, + "learning_rate": 4.97534e-05, + "loss": 2.3686956787109374, + "step": 3700 + }, + { + "epoch": 0.5066666666666667, + "grad_norm": 0.21573932468891144, + "learning_rate": 4.9746733333333336e-05, + "loss": 2.3669277954101564, + "step": 3800 + }, + { + "epoch": 0.52, + "grad_norm": 0.21901340782642365, + "learning_rate": 4.974006666666667e-05, + "loss": 2.3691697692871094, + "step": 3900 + }, + { + "epoch": 0.5333333333333333, + "grad_norm": 0.17888770997524261, + "learning_rate": 4.97334e-05, + "loss": 2.3694166564941406, + "step": 4000 + }, + { + "epoch": 0.5466666666666666, + "grad_norm": 0.20132586359977722, + "learning_rate": 4.972673333333334e-05, + "loss": 2.3693058776855467, + "step": 4100 + }, + { + "epoch": 0.56, + "grad_norm": 0.20158927142620087, + "learning_rate": 4.972006666666667e-05, + "loss": 2.3696084594726563, + "step": 4200 + }, + { + "epoch": 0.5733333333333334, + "grad_norm": 0.19169336557388306, + "learning_rate": 4.9713400000000004e-05, + "loss": 2.3690890502929687, + "step": 4300 + }, + { + "epoch": 0.5866666666666667, + "grad_norm": 0.1851499378681183, + "learning_rate": 4.9706733333333336e-05, + "loss": 2.365598602294922, + "step": 4400 + }, + { + "epoch": 0.6, + "grad_norm": 0.17640796303749084, + "learning_rate": 4.970006666666667e-05, + "loss": 2.3662982177734375, + "step": 4500 + }, + { + "epoch": 0.6133333333333333, + "grad_norm": 0.19363251328468323, + "learning_rate": 4.96934e-05, + "loss": 2.366368408203125, + "step": 4600 + }, + { + "epoch": 0.6266666666666667, + "grad_norm": 0.18789421021938324, + "learning_rate": 4.968673333333333e-05, + "loss": 2.3673724365234374, + "step": 4700 + }, + { + "epoch": 0.64, + "grad_norm": 0.2276417762041092, + "learning_rate": 4.968006666666667e-05, + "loss": 2.3687364196777345, + "step": 4800 + }, + { + "epoch": 0.6533333333333333, + "grad_norm": 0.24959126114845276, + "learning_rate": 4.9673400000000005e-05, + "loss": 2.3668873596191404, + "step": 4900 + }, + { + "epoch": 0.6666666666666666, + "grad_norm": 0.1974227875471115, + "learning_rate": 4.966673333333334e-05, + "loss": 2.367490539550781, + "step": 5000 + }, + { + "epoch": 0.68, + "grad_norm": 0.21331575512886047, + "learning_rate": 4.966006666666667e-05, + "loss": 2.3667413330078126, + "step": 5100 + }, + { + "epoch": 0.6933333333333334, + "grad_norm": 0.19911886751651764, + "learning_rate": 4.96534e-05, + "loss": 2.3675457763671877, + "step": 5200 + }, + { + "epoch": 0.7066666666666667, + "grad_norm": 0.18808232247829437, + "learning_rate": 4.9646733333333334e-05, + "loss": 2.365087432861328, + "step": 5300 + }, + { + "epoch": 0.72, + "grad_norm": 0.20785415172576904, + "learning_rate": 4.9640066666666666e-05, + "loss": 2.364909362792969, + "step": 5400 + }, + { + "epoch": 0.7333333333333333, + "grad_norm": 0.20224037766456604, + "learning_rate": 4.9633400000000005e-05, + "loss": 2.3632057189941404, + "step": 5500 + }, + { + "epoch": 0.7466666666666667, + "grad_norm": 0.2229875922203064, + "learning_rate": 4.962673333333334e-05, + "loss": 2.3641395568847656, + "step": 5600 + }, + { + "epoch": 0.76, + "grad_norm": 0.1919153928756714, + "learning_rate": 4.962006666666667e-05, + "loss": 2.3659425354003907, + "step": 5700 + }, + { + "epoch": 0.7733333333333333, + "grad_norm": 0.20427671074867249, + "learning_rate": 4.96134e-05, + "loss": 2.363852081298828, + "step": 5800 + }, + { + "epoch": 0.7866666666666666, + "grad_norm": 0.21656429767608643, + "learning_rate": 4.960673333333334e-05, + "loss": 2.362543182373047, + "step": 5900 + }, + { + "epoch": 0.8, + "grad_norm": 0.2063402533531189, + "learning_rate": 4.9600066666666666e-05, + "loss": 2.366965026855469, + "step": 6000 + }, + { + "epoch": 0.8133333333333334, + "grad_norm": 0.1898108273744583, + "learning_rate": 4.95934e-05, + "loss": 2.3621893310546875, + "step": 6100 + }, + { + "epoch": 0.8266666666666667, + "grad_norm": 0.20282649993896484, + "learning_rate": 4.958673333333334e-05, + "loss": 2.3625088500976563, + "step": 6200 + }, + { + "epoch": 0.84, + "grad_norm": 0.20909225940704346, + "learning_rate": 4.958006666666667e-05, + "loss": 2.3645458984375, + "step": 6300 + }, + { + "epoch": 0.8533333333333334, + "grad_norm": 0.1983426809310913, + "learning_rate": 4.95734e-05, + "loss": 2.3627133178710937, + "step": 6400 + }, + { + "epoch": 0.8666666666666667, + "grad_norm": 0.19243596494197845, + "learning_rate": 4.9566733333333334e-05, + "loss": 2.3633660888671875, + "step": 6500 + }, + { + "epoch": 0.88, + "grad_norm": 0.2079390585422516, + "learning_rate": 4.9560066666666673e-05, + "loss": 2.3625689697265626, + "step": 6600 + }, + { + "epoch": 0.8933333333333333, + "grad_norm": 0.21222324669361115, + "learning_rate": 4.95534e-05, + "loss": 2.3634515380859376, + "step": 6700 + }, + { + "epoch": 0.9066666666666666, + "grad_norm": 0.20715859532356262, + "learning_rate": 4.954673333333333e-05, + "loss": 2.361647186279297, + "step": 6800 + }, + { + "epoch": 0.92, + "grad_norm": 0.20895737409591675, + "learning_rate": 4.954006666666667e-05, + "loss": 2.3614102172851563, + "step": 6900 + }, + { + "epoch": 0.9333333333333333, + "grad_norm": 0.2002798467874527, + "learning_rate": 4.95334e-05, + "loss": 2.36139892578125, + "step": 7000 + }, + { + "epoch": 0.9466666666666667, + "grad_norm": 0.19291919469833374, + "learning_rate": 4.9526733333333335e-05, + "loss": 2.3608961486816407, + "step": 7100 + }, + { + "epoch": 0.96, + "grad_norm": 0.21889089047908783, + "learning_rate": 4.952006666666667e-05, + "loss": 2.3637326049804686, + "step": 7200 + }, + { + "epoch": 0.9733333333333334, + "grad_norm": 0.2078685611486435, + "learning_rate": 4.9513400000000006e-05, + "loss": 2.3617208862304686, + "step": 7300 + }, + { + "epoch": 0.9866666666666667, + "grad_norm": 0.2064240425825119, + "learning_rate": 4.950673333333334e-05, + "loss": 2.363861083984375, + "step": 7400 + }, + { + "epoch": 1.0, + "grad_norm": 0.20584005117416382, + "learning_rate": 4.9500066666666664e-05, + "loss": 2.361913146972656, + "step": 7500 + }, + { + "epoch": 1.0133333333333334, + "grad_norm": 0.1801510751247406, + "learning_rate": 4.94934e-05, + "loss": 2.360869903564453, + "step": 7600 + }, + { + "epoch": 1.0266666666666666, + "grad_norm": 0.1993046998977661, + "learning_rate": 4.9486733333333335e-05, + "loss": 2.361507568359375, + "step": 7700 + }, + { + "epoch": 1.04, + "grad_norm": 0.19615833461284637, + "learning_rate": 4.948006666666667e-05, + "loss": 2.3610348510742187, + "step": 7800 + }, + { + "epoch": 1.0533333333333332, + "grad_norm": 0.21650268137454987, + "learning_rate": 4.9473400000000006e-05, + "loss": 2.3594178771972656, + "step": 7900 + }, + { + "epoch": 1.0666666666666667, + "grad_norm": 0.21163895726203918, + "learning_rate": 4.946673333333334e-05, + "loss": 2.360281982421875, + "step": 8000 + }, + { + "epoch": 1.08, + "grad_norm": 0.204850971698761, + "learning_rate": 4.946006666666667e-05, + "loss": 2.3587506103515623, + "step": 8100 + }, + { + "epoch": 1.0933333333333333, + "grad_norm": 0.19019952416419983, + "learning_rate": 4.9453399999999996e-05, + "loss": 2.359633331298828, + "step": 8200 + }, + { + "epoch": 1.1066666666666667, + "grad_norm": 0.19061067700386047, + "learning_rate": 4.9446733333333336e-05, + "loss": 2.3588740539550783, + "step": 8300 + }, + { + "epoch": 1.12, + "grad_norm": 0.17677488923072815, + "learning_rate": 4.944006666666667e-05, + "loss": 2.3598394775390625, + "step": 8400 + }, + { + "epoch": 1.1333333333333333, + "grad_norm": 0.1912253499031067, + "learning_rate": 4.94334e-05, + "loss": 2.360320739746094, + "step": 8500 + }, + { + "epoch": 1.1466666666666667, + "grad_norm": 0.2024315893650055, + "learning_rate": 4.942673333333334e-05, + "loss": 2.3580809020996094, + "step": 8600 + }, + { + "epoch": 1.16, + "grad_norm": 0.18786175549030304, + "learning_rate": 4.942006666666667e-05, + "loss": 2.3593084716796877, + "step": 8700 + }, + { + "epoch": 1.1733333333333333, + "grad_norm": 0.21662430465221405, + "learning_rate": 4.9413400000000004e-05, + "loss": 2.3598200988769533, + "step": 8800 + }, + { + "epoch": 1.1866666666666668, + "grad_norm": 0.1833869218826294, + "learning_rate": 4.9406733333333336e-05, + "loss": 2.3603662109375, + "step": 8900 + }, + { + "epoch": 1.2, + "grad_norm": 0.17883288860321045, + "learning_rate": 4.940006666666667e-05, + "loss": 2.3576153564453124, + "step": 9000 + }, + { + "epoch": 1.2133333333333334, + "grad_norm": 0.20075617730617523, + "learning_rate": 4.93934e-05, + "loss": 2.359826965332031, + "step": 9100 + }, + { + "epoch": 1.2266666666666666, + "grad_norm": 0.2007887363433838, + "learning_rate": 4.938673333333333e-05, + "loss": 2.358603210449219, + "step": 9200 + }, + { + "epoch": 1.24, + "grad_norm": 0.1917891800403595, + "learning_rate": 4.938006666666667e-05, + "loss": 2.3588916015625, + "step": 9300 + }, + { + "epoch": 1.2533333333333334, + "grad_norm": 0.21604856848716736, + "learning_rate": 4.9373400000000004e-05, + "loss": 2.3602168273925783, + "step": 9400 + }, + { + "epoch": 1.2666666666666666, + "grad_norm": 0.17735335230827332, + "learning_rate": 4.9366733333333336e-05, + "loss": 2.3565715026855467, + "step": 9500 + }, + { + "epoch": 1.28, + "grad_norm": 0.19378457963466644, + "learning_rate": 4.936006666666667e-05, + "loss": 2.3594598388671875, + "step": 9600 + }, + { + "epoch": 1.2933333333333334, + "grad_norm": 0.17695476114749908, + "learning_rate": 4.93534e-05, + "loss": 2.3589300537109374, + "step": 9700 + }, + { + "epoch": 1.3066666666666666, + "grad_norm": 0.21539485454559326, + "learning_rate": 4.934673333333333e-05, + "loss": 2.3615129089355467, + "step": 9800 + }, + { + "epoch": 1.32, + "grad_norm": 0.19134896993637085, + "learning_rate": 4.9340066666666665e-05, + "loss": 2.362266082763672, + "step": 9900 + }, + { + "epoch": 1.3333333333333333, + "grad_norm": 0.21886669099330902, + "learning_rate": 4.9333400000000004e-05, + "loss": 2.358092956542969, + "step": 10000 + }, + { + "epoch": 1.3466666666666667, + "grad_norm": 0.2164846807718277, + "learning_rate": 4.932673333333334e-05, + "loss": 2.3595159912109374, + "step": 10100 + }, + { + "epoch": 1.3599999999999999, + "grad_norm": 0.2044377326965332, + "learning_rate": 4.932006666666667e-05, + "loss": 2.3593812561035157, + "step": 10200 + }, + { + "epoch": 1.3733333333333333, + "grad_norm": 0.19607120752334595, + "learning_rate": 4.93134e-05, + "loss": 2.3597682189941405, + "step": 10300 + }, + { + "epoch": 1.3866666666666667, + "grad_norm": 0.20865550637245178, + "learning_rate": 4.930673333333334e-05, + "loss": 2.3585769653320314, + "step": 10400 + }, + { + "epoch": 1.4, + "grad_norm": 0.19647538661956787, + "learning_rate": 4.9300066666666666e-05, + "loss": 2.357613525390625, + "step": 10500 + }, + { + "epoch": 1.4133333333333333, + "grad_norm": 0.20263008773326874, + "learning_rate": 4.92934e-05, + "loss": 2.3594039916992187, + "step": 10600 + }, + { + "epoch": 1.4266666666666667, + "grad_norm": 0.20336301624774933, + "learning_rate": 4.928673333333334e-05, + "loss": 2.358168487548828, + "step": 10700 + }, + { + "epoch": 1.44, + "grad_norm": 0.19379153847694397, + "learning_rate": 4.928006666666667e-05, + "loss": 2.357987060546875, + "step": 10800 + }, + { + "epoch": 1.4533333333333334, + "grad_norm": 0.19382280111312866, + "learning_rate": 4.92734e-05, + "loss": 2.358719482421875, + "step": 10900 + }, + { + "epoch": 1.4666666666666668, + "grad_norm": 0.22233974933624268, + "learning_rate": 4.9266733333333334e-05, + "loss": 2.359342498779297, + "step": 11000 + }, + { + "epoch": 1.48, + "grad_norm": 0.2031731903553009, + "learning_rate": 4.926006666666667e-05, + "loss": 2.3575526428222657, + "step": 11100 + }, + { + "epoch": 1.4933333333333334, + "grad_norm": 0.2249104380607605, + "learning_rate": 4.9253400000000005e-05, + "loss": 2.359127197265625, + "step": 11200 + }, + { + "epoch": 1.5066666666666668, + "grad_norm": 0.19960635900497437, + "learning_rate": 4.924673333333333e-05, + "loss": 2.35850830078125, + "step": 11300 + }, + { + "epoch": 1.52, + "grad_norm": 0.17657485604286194, + "learning_rate": 4.924006666666667e-05, + "loss": 2.3599581909179688, + "step": 11400 + }, + { + "epoch": 1.5333333333333332, + "grad_norm": 0.2015186995267868, + "learning_rate": 4.92334e-05, + "loss": 2.3588160705566406, + "step": 11500 + }, + { + "epoch": 1.5466666666666666, + "grad_norm": 0.20554782450199127, + "learning_rate": 4.9226733333333334e-05, + "loss": 2.3559320068359373, + "step": 11600 + }, + { + "epoch": 1.56, + "grad_norm": 0.1838974952697754, + "learning_rate": 4.9220066666666667e-05, + "loss": 2.3575198364257814, + "step": 11700 + }, + { + "epoch": 1.5733333333333333, + "grad_norm": 0.19607774913311005, + "learning_rate": 4.9213400000000006e-05, + "loss": 2.3575714111328123, + "step": 11800 + }, + { + "epoch": 1.5866666666666667, + "grad_norm": 0.178280308842659, + "learning_rate": 4.920673333333334e-05, + "loss": 2.3576229858398436, + "step": 11900 + }, + { + "epoch": 1.6, + "grad_norm": 0.18399088084697723, + "learning_rate": 4.920006666666666e-05, + "loss": 2.3562477111816404, + "step": 12000 + }, + { + "epoch": 1.6133333333333333, + "grad_norm": 0.20826038718223572, + "learning_rate": 4.91934e-05, + "loss": 2.355485382080078, + "step": 12100 + }, + { + "epoch": 1.6266666666666667, + "grad_norm": 0.20758900046348572, + "learning_rate": 4.9186733333333335e-05, + "loss": 2.3574794006347655, + "step": 12200 + }, + { + "epoch": 1.6400000000000001, + "grad_norm": 0.19196072220802307, + "learning_rate": 4.918006666666667e-05, + "loss": 2.3581634521484376, + "step": 12300 + }, + { + "epoch": 1.6533333333333333, + "grad_norm": 0.1848619282245636, + "learning_rate": 4.9173400000000006e-05, + "loss": 2.3570237731933594, + "step": 12400 + }, + { + "epoch": 1.6666666666666665, + "grad_norm": 0.2013252079486847, + "learning_rate": 4.916673333333334e-05, + "loss": 2.3577528381347657, + "step": 12500 + }, + { + "epoch": 1.6800000000000002, + "grad_norm": 0.1901196390390396, + "learning_rate": 4.916006666666667e-05, + "loss": 2.356570129394531, + "step": 12600 + }, + { + "epoch": 1.6933333333333334, + "grad_norm": 0.21528318524360657, + "learning_rate": 4.91534e-05, + "loss": 2.3587225341796874, + "step": 12700 + }, + { + "epoch": 1.7066666666666666, + "grad_norm": 0.21024923026561737, + "learning_rate": 4.9146733333333335e-05, + "loss": 2.356683349609375, + "step": 12800 + }, + { + "epoch": 1.72, + "grad_norm": 0.21185488998889923, + "learning_rate": 4.914006666666667e-05, + "loss": 2.3565196228027343, + "step": 12900 + }, + { + "epoch": 1.7333333333333334, + "grad_norm": 0.1909532994031906, + "learning_rate": 4.91334e-05, + "loss": 2.3565260314941407, + "step": 13000 + }, + { + "epoch": 1.7466666666666666, + "grad_norm": 0.17285031080245972, + "learning_rate": 4.912673333333334e-05, + "loss": 2.3597225952148437, + "step": 13100 + }, + { + "epoch": 1.76, + "grad_norm": 0.20661011338233948, + "learning_rate": 4.912006666666667e-05, + "loss": 2.355798797607422, + "step": 13200 + }, + { + "epoch": 1.7733333333333334, + "grad_norm": 0.17752040922641754, + "learning_rate": 4.91134e-05, + "loss": 2.358916931152344, + "step": 13300 + }, + { + "epoch": 1.7866666666666666, + "grad_norm": 0.1924242228269577, + "learning_rate": 4.9106733333333335e-05, + "loss": 2.3583119201660154, + "step": 13400 + }, + { + "epoch": 1.8, + "grad_norm": 0.1849152147769928, + "learning_rate": 4.910006666666667e-05, + "loss": 2.3570172119140627, + "step": 13500 + }, + { + "epoch": 1.8133333333333335, + "grad_norm": 0.185477152466774, + "learning_rate": 4.90934e-05, + "loss": 2.3571125793457033, + "step": 13600 + }, + { + "epoch": 1.8266666666666667, + "grad_norm": 0.20487146079540253, + "learning_rate": 4.908673333333333e-05, + "loss": 2.3563079833984375, + "step": 13700 + }, + { + "epoch": 1.8399999999999999, + "grad_norm": 0.1872117966413498, + "learning_rate": 4.908006666666667e-05, + "loss": 2.3568649291992188, + "step": 13800 + }, + { + "epoch": 1.8533333333333335, + "grad_norm": 0.20117762684822083, + "learning_rate": 4.9073400000000004e-05, + "loss": 2.3565196228027343, + "step": 13900 + }, + { + "epoch": 1.8666666666666667, + "grad_norm": 0.19476266205310822, + "learning_rate": 4.9066733333333336e-05, + "loss": 2.358032989501953, + "step": 14000 + }, + { + "epoch": 1.88, + "grad_norm": 0.22407779097557068, + "learning_rate": 4.906006666666667e-05, + "loss": 2.3561721801757813, + "step": 14100 + }, + { + "epoch": 1.8933333333333333, + "grad_norm": 0.17407096922397614, + "learning_rate": 4.905340000000001e-05, + "loss": 2.3565065002441408, + "step": 14200 + }, + { + "epoch": 1.9066666666666667, + "grad_norm": 0.20838646590709686, + "learning_rate": 4.904673333333333e-05, + "loss": 2.3535838317871094, + "step": 14300 + }, + { + "epoch": 1.92, + "grad_norm": 0.1853237748146057, + "learning_rate": 4.9040066666666665e-05, + "loss": 2.354512481689453, + "step": 14400 + }, + { + "epoch": 1.9333333333333333, + "grad_norm": 0.19149570167064667, + "learning_rate": 4.9033400000000004e-05, + "loss": 2.3577252197265626, + "step": 14500 + }, + { + "epoch": 1.9466666666666668, + "grad_norm": 0.17799700796604156, + "learning_rate": 4.9026733333333336e-05, + "loss": 2.35733154296875, + "step": 14600 + }, + { + "epoch": 1.96, + "grad_norm": 0.19204910099506378, + "learning_rate": 4.902006666666667e-05, + "loss": 2.354717559814453, + "step": 14700 + }, + { + "epoch": 1.9733333333333334, + "grad_norm": 0.2267007678747177, + "learning_rate": 4.90134e-05, + "loss": 2.356217041015625, + "step": 14800 + }, + { + "epoch": 1.9866666666666668, + "grad_norm": 0.19406317174434662, + "learning_rate": 4.900673333333334e-05, + "loss": 2.3556443786621095, + "step": 14900 + }, + { + "epoch": 2.0, + "grad_norm": 0.204499751329422, + "learning_rate": 4.9000066666666665e-05, + "loss": 2.356020965576172, + "step": 15000 + }, + { + "epoch": 2.013333333333333, + "grad_norm": 0.1888091266155243, + "learning_rate": 4.89934e-05, + "loss": 2.352834930419922, + "step": 15100 + }, + { + "epoch": 2.026666666666667, + "grad_norm": 0.19324932992458344, + "learning_rate": 4.8986733333333337e-05, + "loss": 2.354947357177734, + "step": 15200 + }, + { + "epoch": 2.04, + "grad_norm": 0.18967552483081818, + "learning_rate": 4.898006666666667e-05, + "loss": 2.3552085876464846, + "step": 15300 + }, + { + "epoch": 2.0533333333333332, + "grad_norm": 0.1882469207048416, + "learning_rate": 4.89734e-05, + "loss": 2.354617462158203, + "step": 15400 + }, + { + "epoch": 2.066666666666667, + "grad_norm": 0.2014245092868805, + "learning_rate": 4.896673333333333e-05, + "loss": 2.3554867553710936, + "step": 15500 + }, + { + "epoch": 2.08, + "grad_norm": 0.20610852539539337, + "learning_rate": 4.896006666666667e-05, + "loss": 2.3536581420898437, + "step": 15600 + }, + { + "epoch": 2.0933333333333333, + "grad_norm": 0.21335220336914062, + "learning_rate": 4.8953400000000005e-05, + "loss": 2.354955291748047, + "step": 15700 + }, + { + "epoch": 2.1066666666666665, + "grad_norm": 0.19335633516311646, + "learning_rate": 4.894673333333333e-05, + "loss": 2.3532504272460937, + "step": 15800 + }, + { + "epoch": 2.12, + "grad_norm": 0.1970617026090622, + "learning_rate": 4.894006666666667e-05, + "loss": 2.3523245239257813, + "step": 15900 + }, + { + "epoch": 2.1333333333333333, + "grad_norm": 0.195561483502388, + "learning_rate": 4.89334e-05, + "loss": 2.354027099609375, + "step": 16000 + }, + { + "epoch": 2.1466666666666665, + "grad_norm": 0.18854361772537231, + "learning_rate": 4.89268e-05, + "loss": 2.35153564453125, + "step": 16100 + }, + { + "epoch": 2.16, + "grad_norm": 0.20224016904830933, + "learning_rate": 4.892013333333333e-05, + "loss": 2.356122589111328, + "step": 16200 + }, + { + "epoch": 2.1733333333333333, + "grad_norm": 0.18668098747730255, + "learning_rate": 4.891346666666667e-05, + "loss": 2.354725189208984, + "step": 16300 + }, + { + "epoch": 2.1866666666666665, + "grad_norm": 0.1866915374994278, + "learning_rate": 4.8906800000000004e-05, + "loss": 2.354028625488281, + "step": 16400 + }, + { + "epoch": 2.2, + "grad_norm": 0.21461573243141174, + "learning_rate": 4.8900133333333336e-05, + "loss": 2.3526856994628904, + "step": 16500 + }, + { + "epoch": 2.2133333333333334, + "grad_norm": 0.18227700889110565, + "learning_rate": 4.889346666666667e-05, + "loss": 2.3545989990234375, + "step": 16600 + }, + { + "epoch": 2.2266666666666666, + "grad_norm": 0.19773833453655243, + "learning_rate": 4.888680000000001e-05, + "loss": 2.351981201171875, + "step": 16700 + }, + { + "epoch": 2.24, + "grad_norm": 0.20956110954284668, + "learning_rate": 4.888013333333333e-05, + "loss": 2.355366516113281, + "step": 16800 + }, + { + "epoch": 2.2533333333333334, + "grad_norm": 0.1993572860956192, + "learning_rate": 4.8873466666666665e-05, + "loss": 2.3551705932617186, + "step": 16900 + }, + { + "epoch": 2.2666666666666666, + "grad_norm": 0.2015913426876068, + "learning_rate": 4.8866800000000005e-05, + "loss": 2.3545513916015626, + "step": 17000 + }, + { + "epoch": 2.2800000000000002, + "grad_norm": 0.19929593801498413, + "learning_rate": 4.886013333333334e-05, + "loss": 2.352397766113281, + "step": 17100 + }, + { + "epoch": 2.2933333333333334, + "grad_norm": 0.20449623465538025, + "learning_rate": 4.885346666666667e-05, + "loss": 2.354527893066406, + "step": 17200 + }, + { + "epoch": 2.3066666666666666, + "grad_norm": 0.20281392335891724, + "learning_rate": 4.88468e-05, + "loss": 2.351980438232422, + "step": 17300 + }, + { + "epoch": 2.32, + "grad_norm": 0.21583755314350128, + "learning_rate": 4.884013333333334e-05, + "loss": 2.3545767211914064, + "step": 17400 + }, + { + "epoch": 2.3333333333333335, + "grad_norm": 0.20362140238285065, + "learning_rate": 4.8833466666666666e-05, + "loss": 2.3561666870117186, + "step": 17500 + }, + { + "epoch": 2.3466666666666667, + "grad_norm": 0.1887034773826599, + "learning_rate": 4.88268e-05, + "loss": 2.353743438720703, + "step": 17600 + }, + { + "epoch": 2.36, + "grad_norm": 0.1752418577671051, + "learning_rate": 4.882013333333334e-05, + "loss": 2.35181884765625, + "step": 17700 + }, + { + "epoch": 2.3733333333333335, + "grad_norm": 0.19891609251499176, + "learning_rate": 4.881346666666667e-05, + "loss": 2.3536032104492186, + "step": 17800 + }, + { + "epoch": 2.3866666666666667, + "grad_norm": 0.1945076882839203, + "learning_rate": 4.88068e-05, + "loss": 2.35367919921875, + "step": 17900 + }, + { + "epoch": 2.4, + "grad_norm": 0.17770184576511383, + "learning_rate": 4.8800133333333334e-05, + "loss": 2.3528033447265626, + "step": 18000 + }, + { + "epoch": 2.413333333333333, + "grad_norm": 0.223379448056221, + "learning_rate": 4.879353333333333e-05, + "loss": 2.35432861328125, + "step": 18100 + }, + { + "epoch": 2.4266666666666667, + "grad_norm": 0.18828672170639038, + "learning_rate": 4.878686666666667e-05, + "loss": 2.355252380371094, + "step": 18200 + }, + { + "epoch": 2.44, + "grad_norm": 0.18844439089298248, + "learning_rate": 4.8780200000000004e-05, + "loss": 2.3561915588378906, + "step": 18300 + }, + { + "epoch": 2.453333333333333, + "grad_norm": 0.21294449269771576, + "learning_rate": 4.877353333333334e-05, + "loss": 2.3547706604003906, + "step": 18400 + }, + { + "epoch": 2.466666666666667, + "grad_norm": 0.17931200563907623, + "learning_rate": 4.876686666666667e-05, + "loss": 2.355154724121094, + "step": 18500 + }, + { + "epoch": 2.48, + "grad_norm": 0.21106231212615967, + "learning_rate": 4.87602e-05, + "loss": 2.352605895996094, + "step": 18600 + }, + { + "epoch": 2.493333333333333, + "grad_norm": 0.1965954452753067, + "learning_rate": 4.8753533333333333e-05, + "loss": 2.354511260986328, + "step": 18700 + }, + { + "epoch": 2.506666666666667, + "grad_norm": 0.2056257575750351, + "learning_rate": 4.8746866666666666e-05, + "loss": 2.3556398010253905, + "step": 18800 + }, + { + "epoch": 2.52, + "grad_norm": 0.21052542328834534, + "learning_rate": 4.8740200000000005e-05, + "loss": 2.3537603759765626, + "step": 18900 + }, + { + "epoch": 2.533333333333333, + "grad_norm": 0.19049997627735138, + "learning_rate": 4.873353333333334e-05, + "loss": 2.353008270263672, + "step": 19000 + }, + { + "epoch": 2.546666666666667, + "grad_norm": 0.17134717106819153, + "learning_rate": 4.872686666666667e-05, + "loss": 2.3548989868164063, + "step": 19100 + }, + { + "epoch": 2.56, + "grad_norm": 0.19276337325572968, + "learning_rate": 4.87202e-05, + "loss": 2.3533308410644533, + "step": 19200 + }, + { + "epoch": 2.5733333333333333, + "grad_norm": 0.20519237220287323, + "learning_rate": 4.8713533333333334e-05, + "loss": 2.353628692626953, + "step": 19300 + }, + { + "epoch": 2.586666666666667, + "grad_norm": 0.19865448772907257, + "learning_rate": 4.8706866666666666e-05, + "loss": 2.3552372741699217, + "step": 19400 + }, + { + "epoch": 2.6, + "grad_norm": 0.21072329580783844, + "learning_rate": 4.87002e-05, + "loss": 2.354803009033203, + "step": 19500 + }, + { + "epoch": 2.6133333333333333, + "grad_norm": 0.20858490467071533, + "learning_rate": 4.869353333333334e-05, + "loss": 2.352855224609375, + "step": 19600 + }, + { + "epoch": 2.626666666666667, + "grad_norm": 0.19127769768238068, + "learning_rate": 4.868686666666667e-05, + "loss": 2.3559735107421873, + "step": 19700 + }, + { + "epoch": 2.64, + "grad_norm": 0.1971408575773239, + "learning_rate": 4.86802e-05, + "loss": 2.3524879455566405, + "step": 19800 + }, + { + "epoch": 2.6533333333333333, + "grad_norm": 0.19466613233089447, + "learning_rate": 4.867353333333334e-05, + "loss": 2.35252685546875, + "step": 19900 + }, + { + "epoch": 2.6666666666666665, + "grad_norm": 0.17773135006427765, + "learning_rate": 4.866686666666667e-05, + "loss": 2.3533396911621094, + "step": 20000 + }, + { + "epoch": 2.68, + "grad_norm": 0.2046392261981964, + "learning_rate": 4.866026666666667e-05, + "loss": 2.3539585876464844, + "step": 20100 + }, + { + "epoch": 2.6933333333333334, + "grad_norm": 0.1670500934123993, + "learning_rate": 4.8653600000000005e-05, + "loss": 2.353471527099609, + "step": 20200 + }, + { + "epoch": 2.7066666666666666, + "grad_norm": 0.1887359917163849, + "learning_rate": 4.864693333333333e-05, + "loss": 2.3529425048828125, + "step": 20300 + }, + { + "epoch": 2.7199999999999998, + "grad_norm": 0.19046323001384735, + "learning_rate": 4.864026666666667e-05, + "loss": 2.353743133544922, + "step": 20400 + }, + { + "epoch": 2.7333333333333334, + "grad_norm": 0.20893333852291107, + "learning_rate": 4.86336e-05, + "loss": 2.354876708984375, + "step": 20500 + }, + { + "epoch": 2.7466666666666666, + "grad_norm": 0.20090077817440033, + "learning_rate": 4.8626933333333334e-05, + "loss": 2.354145050048828, + "step": 20600 + }, + { + "epoch": 2.76, + "grad_norm": 0.1944134384393692, + "learning_rate": 4.862026666666667e-05, + "loss": 2.3537525939941406, + "step": 20700 + }, + { + "epoch": 2.7733333333333334, + "grad_norm": 0.19937659800052643, + "learning_rate": 4.8613600000000005e-05, + "loss": 2.3532589721679686, + "step": 20800 + }, + { + "epoch": 2.7866666666666666, + "grad_norm": 0.19922621548175812, + "learning_rate": 4.860693333333334e-05, + "loss": 2.3535202026367186, + "step": 20900 + }, + { + "epoch": 2.8, + "grad_norm": 0.17885304987430573, + "learning_rate": 4.860026666666667e-05, + "loss": 2.3526271057128905, + "step": 21000 + }, + { + "epoch": 2.8133333333333335, + "grad_norm": 0.19968298077583313, + "learning_rate": 4.85936e-05, + "loss": 2.351287078857422, + "step": 21100 + }, + { + "epoch": 2.8266666666666667, + "grad_norm": 0.20618899166584015, + "learning_rate": 4.8586933333333334e-05, + "loss": 2.35383544921875, + "step": 21200 + }, + { + "epoch": 2.84, + "grad_norm": 0.18697108328342438, + "learning_rate": 4.8580266666666666e-05, + "loss": 2.3557089233398436, + "step": 21300 + }, + { + "epoch": 2.8533333333333335, + "grad_norm": 0.1982707530260086, + "learning_rate": 4.8573600000000005e-05, + "loss": 2.3569706726074218, + "step": 21400 + }, + { + "epoch": 2.8666666666666667, + "grad_norm": 0.1921544075012207, + "learning_rate": 4.856693333333334e-05, + "loss": 2.354062042236328, + "step": 21500 + }, + { + "epoch": 2.88, + "grad_norm": 0.18305157124996185, + "learning_rate": 4.856026666666667e-05, + "loss": 2.3534732055664063, + "step": 21600 + }, + { + "epoch": 2.8933333333333335, + "grad_norm": 0.1875217705965042, + "learning_rate": 4.85536e-05, + "loss": 2.354545135498047, + "step": 21700 + }, + { + "epoch": 2.9066666666666667, + "grad_norm": 0.20880307257175446, + "learning_rate": 4.8546933333333334e-05, + "loss": 2.353887939453125, + "step": 21800 + }, + { + "epoch": 2.92, + "grad_norm": 0.21262428164482117, + "learning_rate": 4.854026666666667e-05, + "loss": 2.352968292236328, + "step": 21900 + }, + { + "epoch": 2.9333333333333336, + "grad_norm": 0.19341909885406494, + "learning_rate": 4.85336e-05, + "loss": 2.3549241638183593, + "step": 22000 + }, + { + "epoch": 2.9466666666666668, + "grad_norm": 0.2057921290397644, + "learning_rate": 4.8527e-05, + "loss": 2.3518043518066407, + "step": 22100 + }, + { + "epoch": 2.96, + "grad_norm": 0.1986525058746338, + "learning_rate": 4.852033333333334e-05, + "loss": 2.3545606994628905, + "step": 22200 + }, + { + "epoch": 2.9733333333333336, + "grad_norm": 0.19995741546154022, + "learning_rate": 4.851366666666667e-05, + "loss": 2.35246826171875, + "step": 22300 + }, + { + "epoch": 2.986666666666667, + "grad_norm": 0.18662478029727936, + "learning_rate": 4.8507e-05, + "loss": 2.3534344482421874, + "step": 22400 + }, + { + "epoch": 3.0, + "grad_norm": 0.19860990345478058, + "learning_rate": 4.8500333333333334e-05, + "loss": 2.3527035522460937, + "step": 22500 + }, + { + "epoch": 3.013333333333333, + "grad_norm": 0.20039217174053192, + "learning_rate": 4.849366666666667e-05, + "loss": 2.348377532958984, + "step": 22600 + }, + { + "epoch": 3.026666666666667, + "grad_norm": 0.2021869421005249, + "learning_rate": 4.8487000000000005e-05, + "loss": 2.351779022216797, + "step": 22700 + }, + { + "epoch": 3.04, + "grad_norm": 0.1985320746898651, + "learning_rate": 4.848033333333333e-05, + "loss": 2.3483657836914062, + "step": 22800 + }, + { + "epoch": 3.0533333333333332, + "grad_norm": 0.1824573427438736, + "learning_rate": 4.847366666666667e-05, + "loss": 2.347190704345703, + "step": 22900 + }, + { + "epoch": 3.066666666666667, + "grad_norm": 0.19089816510677338, + "learning_rate": 4.8467e-05, + "loss": 2.3492135620117187, + "step": 23000 + }, + { + "epoch": 3.08, + "grad_norm": 0.23082399368286133, + "learning_rate": 4.8460333333333334e-05, + "loss": 2.348924560546875, + "step": 23100 + }, + { + "epoch": 3.0933333333333333, + "grad_norm": 0.18981102108955383, + "learning_rate": 4.8453666666666667e-05, + "loss": 2.350345001220703, + "step": 23200 + }, + { + "epoch": 3.1066666666666665, + "grad_norm": 0.19843408465385437, + "learning_rate": 4.8447000000000006e-05, + "loss": 2.3490699768066405, + "step": 23300 + }, + { + "epoch": 3.12, + "grad_norm": 0.19274167716503143, + "learning_rate": 4.844033333333334e-05, + "loss": 2.350037078857422, + "step": 23400 + }, + { + "epoch": 3.1333333333333333, + "grad_norm": 0.1848369985818863, + "learning_rate": 4.843366666666667e-05, + "loss": 2.3491517639160158, + "step": 23500 + }, + { + "epoch": 3.1466666666666665, + "grad_norm": 0.18349026143550873, + "learning_rate": 4.8427e-05, + "loss": 2.3494111633300783, + "step": 23600 + }, + { + "epoch": 3.16, + "grad_norm": 0.20055054128170013, + "learning_rate": 4.8420333333333335e-05, + "loss": 2.3514225769042967, + "step": 23700 + }, + { + "epoch": 3.1733333333333333, + "grad_norm": 0.17645560204982758, + "learning_rate": 4.841366666666667e-05, + "loss": 2.3496327209472656, + "step": 23800 + }, + { + "epoch": 3.1866666666666665, + "grad_norm": 0.20394593477249146, + "learning_rate": 4.8407e-05, + "loss": 2.34930908203125, + "step": 23900 + }, + { + "epoch": 3.2, + "grad_norm": 0.19807790219783783, + "learning_rate": 4.840033333333334e-05, + "loss": 2.350684814453125, + "step": 24000 + }, + { + "epoch": 3.2133333333333334, + "grad_norm": 0.19074247777462006, + "learning_rate": 4.839373333333334e-05, + "loss": 2.3482009887695314, + "step": 24100 + }, + { + "epoch": 3.2266666666666666, + "grad_norm": 0.184867724776268, + "learning_rate": 4.838706666666667e-05, + "loss": 2.3509567260742186, + "step": 24200 + }, + { + "epoch": 3.24, + "grad_norm": 0.20876654982566833, + "learning_rate": 4.83804e-05, + "loss": 2.351715393066406, + "step": 24300 + }, + { + "epoch": 3.2533333333333334, + "grad_norm": 0.20710976421833038, + "learning_rate": 4.837373333333334e-05, + "loss": 2.352671813964844, + "step": 24400 + }, + { + "epoch": 3.2666666666666666, + "grad_norm": 0.2047370821237564, + "learning_rate": 4.836706666666667e-05, + "loss": 2.347806701660156, + "step": 24500 + }, + { + "epoch": 3.2800000000000002, + "grad_norm": 0.19557665288448334, + "learning_rate": 4.83604e-05, + "loss": 2.3503456115722656, + "step": 24600 + }, + { + "epoch": 3.2933333333333334, + "grad_norm": 0.19264017045497894, + "learning_rate": 4.835373333333333e-05, + "loss": 2.350893859863281, + "step": 24700 + }, + { + "epoch": 3.3066666666666666, + "grad_norm": 0.1815241277217865, + "learning_rate": 4.834706666666667e-05, + "loss": 2.3506166076660158, + "step": 24800 + }, + { + "epoch": 3.32, + "grad_norm": 0.19273795187473297, + "learning_rate": 4.83404e-05, + "loss": 2.3491062927246094, + "step": 24900 + }, + { + "epoch": 3.3333333333333335, + "grad_norm": 0.1982475221157074, + "learning_rate": 4.8333733333333334e-05, + "loss": 2.350149383544922, + "step": 25000 + }, + { + "epoch": 3.3466666666666667, + "grad_norm": 0.19936062395572662, + "learning_rate": 4.8327066666666674e-05, + "loss": 2.349862518310547, + "step": 25100 + }, + { + "epoch": 3.36, + "grad_norm": 0.1829392910003662, + "learning_rate": 4.8320400000000006e-05, + "loss": 2.351768035888672, + "step": 25200 + }, + { + "epoch": 3.3733333333333335, + "grad_norm": 0.1831563413143158, + "learning_rate": 4.831373333333333e-05, + "loss": 2.351492919921875, + "step": 25300 + }, + { + "epoch": 3.3866666666666667, + "grad_norm": 0.20415860414505005, + "learning_rate": 4.830706666666667e-05, + "loss": 2.3486749267578126, + "step": 25400 + }, + { + "epoch": 3.4, + "grad_norm": 0.17977586388587952, + "learning_rate": 4.83004e-05, + "loss": 2.351340026855469, + "step": 25500 + }, + { + "epoch": 3.413333333333333, + "grad_norm": 0.1846362203359604, + "learning_rate": 4.8293733333333335e-05, + "loss": 2.351724090576172, + "step": 25600 + }, + { + "epoch": 3.4266666666666667, + "grad_norm": 0.18675661087036133, + "learning_rate": 4.828706666666667e-05, + "loss": 2.351480712890625, + "step": 25700 + }, + { + "epoch": 3.44, + "grad_norm": 0.18456125259399414, + "learning_rate": 4.8280400000000006e-05, + "loss": 2.3500599670410156, + "step": 25800 + }, + { + "epoch": 3.453333333333333, + "grad_norm": 0.19029958546161652, + "learning_rate": 4.827373333333334e-05, + "loss": 2.350344543457031, + "step": 25900 + }, + { + "epoch": 3.466666666666667, + "grad_norm": 0.17213845252990723, + "learning_rate": 4.826706666666667e-05, + "loss": 2.3511953735351563, + "step": 26000 + }, + { + "epoch": 3.48, + "grad_norm": 0.19007565081119537, + "learning_rate": 4.826046666666667e-05, + "loss": 2.3536442565917968, + "step": 26100 + }, + { + "epoch": 3.493333333333333, + "grad_norm": 0.2030433863401413, + "learning_rate": 4.82538e-05, + "loss": 2.3524905395507814, + "step": 26200 + }, + { + "epoch": 3.506666666666667, + "grad_norm": 0.1910092532634735, + "learning_rate": 4.8247133333333334e-05, + "loss": 2.349417419433594, + "step": 26300 + }, + { + "epoch": 3.52, + "grad_norm": 0.1992577612400055, + "learning_rate": 4.8240466666666667e-05, + "loss": 2.350249938964844, + "step": 26400 + }, + { + "epoch": 3.533333333333333, + "grad_norm": 0.2043229341506958, + "learning_rate": 4.82338e-05, + "loss": 2.3508177185058594, + "step": 26500 + }, + { + "epoch": 3.546666666666667, + "grad_norm": 0.19904406368732452, + "learning_rate": 4.822713333333334e-05, + "loss": 2.3501368713378907, + "step": 26600 + }, + { + "epoch": 3.56, + "grad_norm": 0.2048622965812683, + "learning_rate": 4.822046666666667e-05, + "loss": 2.3512261962890624, + "step": 26700 + }, + { + "epoch": 3.5733333333333333, + "grad_norm": 0.18168894946575165, + "learning_rate": 4.82138e-05, + "loss": 2.3506343078613283, + "step": 26800 + }, + { + "epoch": 3.586666666666667, + "grad_norm": 0.2186703383922577, + "learning_rate": 4.8207133333333335e-05, + "loss": 2.3507453918457033, + "step": 26900 + }, + { + "epoch": 3.6, + "grad_norm": 0.17658771574497223, + "learning_rate": 4.8200466666666674e-05, + "loss": 2.350555114746094, + "step": 27000 + }, + { + "epoch": 3.6133333333333333, + "grad_norm": 0.18329951167106628, + "learning_rate": 4.81938e-05, + "loss": 2.3507563781738283, + "step": 27100 + }, + { + "epoch": 3.626666666666667, + "grad_norm": 0.17677000164985657, + "learning_rate": 4.818713333333333e-05, + "loss": 2.3508815002441406, + "step": 27200 + }, + { + "epoch": 3.64, + "grad_norm": 0.18543322384357452, + "learning_rate": 4.818046666666667e-05, + "loss": 2.353324737548828, + "step": 27300 + }, + { + "epoch": 3.6533333333333333, + "grad_norm": 0.17043279111385345, + "learning_rate": 4.81738e-05, + "loss": 2.351223907470703, + "step": 27400 + }, + { + "epoch": 3.6666666666666665, + "grad_norm": 0.196268692612648, + "learning_rate": 4.8167133333333335e-05, + "loss": 2.348458557128906, + "step": 27500 + }, + { + "epoch": 3.68, + "grad_norm": 0.21252736449241638, + "learning_rate": 4.816046666666667e-05, + "loss": 2.351412811279297, + "step": 27600 + }, + { + "epoch": 3.6933333333333334, + "grad_norm": 0.1941421627998352, + "learning_rate": 4.8153800000000006e-05, + "loss": 2.3509474182128907, + "step": 27700 + }, + { + "epoch": 3.7066666666666666, + "grad_norm": 0.18156079947948456, + "learning_rate": 4.814713333333333e-05, + "loss": 2.3500953674316407, + "step": 27800 + }, + { + "epoch": 3.7199999999999998, + "grad_norm": 0.18474163115024567, + "learning_rate": 4.8140466666666664e-05, + "loss": 2.3500129699707033, + "step": 27900 + }, + { + "epoch": 3.7333333333333334, + "grad_norm": 0.1893375813961029, + "learning_rate": 4.81338e-05, + "loss": 2.3503759765625, + "step": 28000 + }, + { + "epoch": 3.7466666666666666, + "grad_norm": 0.18845497071743011, + "learning_rate": 4.81272e-05, + "loss": 2.3525970458984373, + "step": 28100 + }, + { + "epoch": 3.76, + "grad_norm": 0.21595294773578644, + "learning_rate": 4.8120533333333335e-05, + "loss": 2.3500466918945313, + "step": 28200 + }, + { + "epoch": 3.7733333333333334, + "grad_norm": 0.19505618512630463, + "learning_rate": 4.811386666666667e-05, + "loss": 2.349498748779297, + "step": 28300 + }, + { + "epoch": 3.7866666666666666, + "grad_norm": 0.17862743139266968, + "learning_rate": 4.81072e-05, + "loss": 2.348866424560547, + "step": 28400 + }, + { + "epoch": 3.8, + "grad_norm": 0.194855734705925, + "learning_rate": 4.810053333333334e-05, + "loss": 2.3509757995605467, + "step": 28500 + }, + { + "epoch": 3.8133333333333335, + "grad_norm": 0.19078636169433594, + "learning_rate": 4.809386666666667e-05, + "loss": 2.3488845825195312, + "step": 28600 + }, + { + "epoch": 3.8266666666666667, + "grad_norm": 0.18988379836082458, + "learning_rate": 4.80872e-05, + "loss": 2.35125244140625, + "step": 28700 + }, + { + "epoch": 3.84, + "grad_norm": 0.1913130134344101, + "learning_rate": 4.8080533333333335e-05, + "loss": 2.3494662475585937, + "step": 28800 + }, + { + "epoch": 3.8533333333333335, + "grad_norm": 0.2060711681842804, + "learning_rate": 4.807386666666667e-05, + "loss": 2.3524136352539062, + "step": 28900 + }, + { + "epoch": 3.8666666666666667, + "grad_norm": 0.18792103230953217, + "learning_rate": 4.80672e-05, + "loss": 2.351210479736328, + "step": 29000 + }, + { + "epoch": 3.88, + "grad_norm": 0.2034904658794403, + "learning_rate": 4.806053333333334e-05, + "loss": 2.3502317810058595, + "step": 29100 + }, + { + "epoch": 3.8933333333333335, + "grad_norm": 0.20705494284629822, + "learning_rate": 4.805386666666667e-05, + "loss": 2.3528851318359374, + "step": 29200 + }, + { + "epoch": 3.9066666666666667, + "grad_norm": 0.17130215466022491, + "learning_rate": 4.80472e-05, + "loss": 2.3496728515625, + "step": 29300 + }, + { + "epoch": 3.92, + "grad_norm": 0.22938485443592072, + "learning_rate": 4.8040533333333335e-05, + "loss": 2.3508564758300783, + "step": 29400 + }, + { + "epoch": 3.9333333333333336, + "grad_norm": 0.20697031915187836, + "learning_rate": 4.8033866666666674e-05, + "loss": 2.350555419921875, + "step": 29500 + }, + { + "epoch": 3.9466666666666668, + "grad_norm": 0.21105030179023743, + "learning_rate": 4.80272e-05, + "loss": 2.3500137329101562, + "step": 29600 + }, + { + "epoch": 3.96, + "grad_norm": 0.1795365959405899, + "learning_rate": 4.802053333333333e-05, + "loss": 2.351229705810547, + "step": 29700 + }, + { + "epoch": 3.9733333333333336, + "grad_norm": 0.20336268842220306, + "learning_rate": 4.801386666666667e-05, + "loss": 2.3524740600585936, + "step": 29800 + }, + { + "epoch": 3.986666666666667, + "grad_norm": 0.18867026269435883, + "learning_rate": 4.8007200000000003e-05, + "loss": 2.35136474609375, + "step": 29900 + }, + { + "epoch": 4.0, + "grad_norm": 0.1865285336971283, + "learning_rate": 4.8000533333333336e-05, + "loss": 2.3508816528320313, + "step": 30000 + }, + { + "epoch": 4.013333333333334, + "grad_norm": 0.19620107114315033, + "learning_rate": 4.7993933333333335e-05, + "loss": 2.344427185058594, + "step": 30100 + }, + { + "epoch": 4.026666666666666, + "grad_norm": 0.19542329013347626, + "learning_rate": 4.798726666666667e-05, + "loss": 2.3426863098144532, + "step": 30200 + }, + { + "epoch": 4.04, + "grad_norm": 0.19271595776081085, + "learning_rate": 4.7980600000000006e-05, + "loss": 2.340071258544922, + "step": 30300 + }, + { + "epoch": 4.053333333333334, + "grad_norm": 0.1889171600341797, + "learning_rate": 4.797393333333334e-05, + "loss": 2.338631896972656, + "step": 30400 + }, + { + "epoch": 4.066666666666666, + "grad_norm": 0.19066178798675537, + "learning_rate": 4.796726666666667e-05, + "loss": 2.342739715576172, + "step": 30500 + }, + { + "epoch": 4.08, + "grad_norm": 0.1947835087776184, + "learning_rate": 4.79606e-05, + "loss": 2.3432049560546875, + "step": 30600 + }, + { + "epoch": 4.093333333333334, + "grad_norm": 0.21322356164455414, + "learning_rate": 4.7953933333333335e-05, + "loss": 2.342285614013672, + "step": 30700 + }, + { + "epoch": 4.1066666666666665, + "grad_norm": 0.20188263058662415, + "learning_rate": 4.794726666666667e-05, + "loss": 2.3427188110351564, + "step": 30800 + }, + { + "epoch": 4.12, + "grad_norm": 0.19048044085502625, + "learning_rate": 4.79406e-05, + "loss": 2.3455911254882813, + "step": 30900 + }, + { + "epoch": 4.133333333333334, + "grad_norm": 0.20373786985874176, + "learning_rate": 4.793393333333334e-05, + "loss": 2.34266845703125, + "step": 31000 + }, + { + "epoch": 4.1466666666666665, + "grad_norm": 0.19136583805084229, + "learning_rate": 4.792726666666667e-05, + "loss": 2.345565185546875, + "step": 31100 + }, + { + "epoch": 4.16, + "grad_norm": 0.20485562086105347, + "learning_rate": 4.79206e-05, + "loss": 2.3444659423828127, + "step": 31200 + }, + { + "epoch": 4.173333333333334, + "grad_norm": 0.19716604053974152, + "learning_rate": 4.7913933333333336e-05, + "loss": 2.3462744140625, + "step": 31300 + }, + { + "epoch": 4.1866666666666665, + "grad_norm": 0.1901930719614029, + "learning_rate": 4.790726666666667e-05, + "loss": 2.3410409545898436, + "step": 31400 + }, + { + "epoch": 4.2, + "grad_norm": 0.19195866584777832, + "learning_rate": 4.79006e-05, + "loss": 2.3443292236328124, + "step": 31500 + }, + { + "epoch": 4.213333333333333, + "grad_norm": 0.19171933829784393, + "learning_rate": 4.789393333333333e-05, + "loss": 2.3432662963867186, + "step": 31600 + }, + { + "epoch": 4.226666666666667, + "grad_norm": 0.20632386207580566, + "learning_rate": 4.788726666666667e-05, + "loss": 2.3424139404296875, + "step": 31700 + }, + { + "epoch": 4.24, + "grad_norm": 0.20935772359371185, + "learning_rate": 4.7880600000000004e-05, + "loss": 2.3445693969726564, + "step": 31800 + }, + { + "epoch": 4.253333333333333, + "grad_norm": 0.2092011719942093, + "learning_rate": 4.7873933333333336e-05, + "loss": 2.3450819396972657, + "step": 31900 + }, + { + "epoch": 4.266666666666667, + "grad_norm": 0.18511556088924408, + "learning_rate": 4.786726666666667e-05, + "loss": 2.3434269714355467, + "step": 32000 + }, + { + "epoch": 4.28, + "grad_norm": 0.19721107184886932, + "learning_rate": 4.786066666666667e-05, + "loss": 2.3466552734375, + "step": 32100 + }, + { + "epoch": 4.293333333333333, + "grad_norm": 0.20387394726276398, + "learning_rate": 4.7854000000000006e-05, + "loss": 2.344354705810547, + "step": 32200 + }, + { + "epoch": 4.306666666666667, + "grad_norm": 0.1933874487876892, + "learning_rate": 4.784733333333333e-05, + "loss": 2.3450242614746095, + "step": 32300 + }, + { + "epoch": 4.32, + "grad_norm": 0.18852448463439941, + "learning_rate": 4.7840666666666664e-05, + "loss": 2.345384368896484, + "step": 32400 + }, + { + "epoch": 4.333333333333333, + "grad_norm": 0.1856076568365097, + "learning_rate": 4.7834e-05, + "loss": 2.3448046875, + "step": 32500 + }, + { + "epoch": 4.346666666666667, + "grad_norm": 0.1768845170736313, + "learning_rate": 4.7827333333333335e-05, + "loss": 2.3447705078125, + "step": 32600 + }, + { + "epoch": 4.36, + "grad_norm": 0.2036508321762085, + "learning_rate": 4.782066666666667e-05, + "loss": 2.3455548095703125, + "step": 32700 + }, + { + "epoch": 4.373333333333333, + "grad_norm": 0.2223418802022934, + "learning_rate": 4.7814e-05, + "loss": 2.345106353759766, + "step": 32800 + }, + { + "epoch": 4.386666666666667, + "grad_norm": 0.19732633233070374, + "learning_rate": 4.780733333333334e-05, + "loss": 2.34563720703125, + "step": 32900 + }, + { + "epoch": 4.4, + "grad_norm": 0.19825312495231628, + "learning_rate": 4.780066666666667e-05, + "loss": 2.3472279357910155, + "step": 33000 + }, + { + "epoch": 4.413333333333333, + "grad_norm": 0.20383819937705994, + "learning_rate": 4.7794e-05, + "loss": 2.3474839782714843, + "step": 33100 + }, + { + "epoch": 4.426666666666667, + "grad_norm": 0.18383854627609253, + "learning_rate": 4.7787333333333336e-05, + "loss": 2.347451171875, + "step": 33200 + }, + { + "epoch": 4.44, + "grad_norm": 0.2009461224079132, + "learning_rate": 4.778066666666667e-05, + "loss": 2.3456491088867186, + "step": 33300 + }, + { + "epoch": 4.453333333333333, + "grad_norm": 0.1955096274614334, + "learning_rate": 4.7774e-05, + "loss": 2.347562255859375, + "step": 33400 + }, + { + "epoch": 4.466666666666667, + "grad_norm": 0.1971255987882614, + "learning_rate": 4.776733333333334e-05, + "loss": 2.3455210876464845, + "step": 33500 + }, + { + "epoch": 4.48, + "grad_norm": 0.2104266732931137, + "learning_rate": 4.776066666666667e-05, + "loss": 2.3482284545898438, + "step": 33600 + }, + { + "epoch": 4.493333333333333, + "grad_norm": 0.19855403900146484, + "learning_rate": 4.7754000000000004e-05, + "loss": 2.345506439208984, + "step": 33700 + }, + { + "epoch": 4.506666666666667, + "grad_norm": 0.1903480589389801, + "learning_rate": 4.7747333333333336e-05, + "loss": 2.345941925048828, + "step": 33800 + }, + { + "epoch": 4.52, + "grad_norm": 0.18413390219211578, + "learning_rate": 4.774066666666667e-05, + "loss": 2.345931091308594, + "step": 33900 + }, + { + "epoch": 4.533333333333333, + "grad_norm": 0.2099205106496811, + "learning_rate": 4.7734e-05, + "loss": 2.34525146484375, + "step": 34000 + }, + { + "epoch": 4.546666666666667, + "grad_norm": 0.19890472292900085, + "learning_rate": 4.77274e-05, + "loss": 2.3454127502441406, + "step": 34100 + }, + { + "epoch": 4.5600000000000005, + "grad_norm": 0.1928263008594513, + "learning_rate": 4.772073333333333e-05, + "loss": 2.3484063720703126, + "step": 34200 + }, + { + "epoch": 4.573333333333333, + "grad_norm": 0.19899751245975494, + "learning_rate": 4.771406666666667e-05, + "loss": 2.344409637451172, + "step": 34300 + }, + { + "epoch": 4.586666666666667, + "grad_norm": 0.19718094170093536, + "learning_rate": 4.77074e-05, + "loss": 2.346121520996094, + "step": 34400 + }, + { + "epoch": 4.6, + "grad_norm": 0.20367039740085602, + "learning_rate": 4.7700733333333336e-05, + "loss": 2.3464027404785157, + "step": 34500 + }, + { + "epoch": 4.613333333333333, + "grad_norm": 0.2027977555990219, + "learning_rate": 4.769406666666667e-05, + "loss": 2.346643371582031, + "step": 34600 + }, + { + "epoch": 4.626666666666667, + "grad_norm": 0.19116739928722382, + "learning_rate": 4.768740000000001e-05, + "loss": 2.3448785400390624, + "step": 34700 + }, + { + "epoch": 4.64, + "grad_norm": 0.1741366684436798, + "learning_rate": 4.768073333333334e-05, + "loss": 2.3467585754394533, + "step": 34800 + }, + { + "epoch": 4.653333333333333, + "grad_norm": 0.19366861879825592, + "learning_rate": 4.7674066666666665e-05, + "loss": 2.346854248046875, + "step": 34900 + }, + { + "epoch": 4.666666666666667, + "grad_norm": 0.1961996853351593, + "learning_rate": 4.7667400000000004e-05, + "loss": 2.346597442626953, + "step": 35000 + }, + { + "epoch": 4.68, + "grad_norm": 0.20493026077747345, + "learning_rate": 4.7660733333333336e-05, + "loss": 2.3467396545410155, + "step": 35100 + }, + { + "epoch": 4.693333333333333, + "grad_norm": 0.19343268871307373, + "learning_rate": 4.765406666666667e-05, + "loss": 2.345442352294922, + "step": 35200 + }, + { + "epoch": 4.706666666666667, + "grad_norm": 0.19839325547218323, + "learning_rate": 4.76474e-05, + "loss": 2.348248291015625, + "step": 35300 + }, + { + "epoch": 4.72, + "grad_norm": 0.19443462789058685, + "learning_rate": 4.764073333333334e-05, + "loss": 2.3478456115722657, + "step": 35400 + }, + { + "epoch": 4.733333333333333, + "grad_norm": 0.18703633546829224, + "learning_rate": 4.763406666666667e-05, + "loss": 2.3447303771972656, + "step": 35500 + }, + { + "epoch": 4.746666666666667, + "grad_norm": 0.19159509241580963, + "learning_rate": 4.76274e-05, + "loss": 2.3463864135742187, + "step": 35600 + }, + { + "epoch": 4.76, + "grad_norm": 0.19903169572353363, + "learning_rate": 4.7620733333333336e-05, + "loss": 2.347983093261719, + "step": 35700 + }, + { + "epoch": 4.773333333333333, + "grad_norm": 0.19707246124744415, + "learning_rate": 4.761406666666667e-05, + "loss": 2.3435577392578124, + "step": 35800 + }, + { + "epoch": 4.786666666666667, + "grad_norm": 0.183243989944458, + "learning_rate": 4.76074e-05, + "loss": 2.346152038574219, + "step": 35900 + }, + { + "epoch": 4.8, + "grad_norm": 0.1864614188671112, + "learning_rate": 4.760073333333333e-05, + "loss": 2.3478399658203126, + "step": 36000 + }, + { + "epoch": 4.8133333333333335, + "grad_norm": 0.19538547098636627, + "learning_rate": 4.759413333333333e-05, + "loss": 2.34772705078125, + "step": 36100 + }, + { + "epoch": 4.826666666666666, + "grad_norm": 0.19601057469844818, + "learning_rate": 4.758746666666667e-05, + "loss": 2.3468177795410154, + "step": 36200 + }, + { + "epoch": 4.84, + "grad_norm": 0.19639572501182556, + "learning_rate": 4.7580800000000004e-05, + "loss": 2.3478041076660157, + "step": 36300 + }, + { + "epoch": 4.8533333333333335, + "grad_norm": 0.19426213204860687, + "learning_rate": 4.7574133333333336e-05, + "loss": 2.345642547607422, + "step": 36400 + }, + { + "epoch": 4.866666666666667, + "grad_norm": 0.17866654694080353, + "learning_rate": 4.756746666666667e-05, + "loss": 2.3476348876953126, + "step": 36500 + }, + { + "epoch": 4.88, + "grad_norm": 0.20611488819122314, + "learning_rate": 4.75608e-05, + "loss": 2.3455621337890626, + "step": 36600 + }, + { + "epoch": 4.8933333333333335, + "grad_norm": 0.19792433083057404, + "learning_rate": 4.755413333333333e-05, + "loss": 2.3475059509277343, + "step": 36700 + }, + { + "epoch": 4.906666666666666, + "grad_norm": 0.20012043416500092, + "learning_rate": 4.7547466666666665e-05, + "loss": 2.3476327514648436, + "step": 36800 + }, + { + "epoch": 4.92, + "grad_norm": 0.21811543405056, + "learning_rate": 4.7540800000000004e-05, + "loss": 2.3479005432128908, + "step": 36900 + }, + { + "epoch": 4.933333333333334, + "grad_norm": 0.18837958574295044, + "learning_rate": 4.7534133333333336e-05, + "loss": 2.3472393798828124, + "step": 37000 + }, + { + "epoch": 4.946666666666666, + "grad_norm": 0.20428119599819183, + "learning_rate": 4.752746666666667e-05, + "loss": 2.3473336791992185, + "step": 37100 + }, + { + "epoch": 4.96, + "grad_norm": 0.2100653052330017, + "learning_rate": 4.752080000000001e-05, + "loss": 2.3485343933105467, + "step": 37200 + }, + { + "epoch": 4.973333333333334, + "grad_norm": 0.19952954351902008, + "learning_rate": 4.751413333333334e-05, + "loss": 2.347123718261719, + "step": 37300 + }, + { + "epoch": 4.986666666666666, + "grad_norm": 0.19739681482315063, + "learning_rate": 4.7507466666666665e-05, + "loss": 2.347565155029297, + "step": 37400 + }, + { + "epoch": 5.0, + "grad_norm": 0.20094037055969238, + "learning_rate": 4.75008e-05, + "loss": 2.3468731689453124, + "step": 37500 + }, + { + "epoch": 5.013333333333334, + "grad_norm": 0.21585266292095184, + "learning_rate": 4.749413333333334e-05, + "loss": 2.333679962158203, + "step": 37600 + }, + { + "epoch": 5.026666666666666, + "grad_norm": 0.20911413431167603, + "learning_rate": 4.748746666666667e-05, + "loss": 2.3350621032714844, + "step": 37700 + }, + { + "epoch": 5.04, + "grad_norm": 0.19561605155467987, + "learning_rate": 4.74808e-05, + "loss": 2.334278564453125, + "step": 37800 + }, + { + "epoch": 5.053333333333334, + "grad_norm": 0.2007005661725998, + "learning_rate": 4.747413333333334e-05, + "loss": 2.3355723571777345, + "step": 37900 + }, + { + "epoch": 5.066666666666666, + "grad_norm": 0.21478916704654694, + "learning_rate": 4.746746666666667e-05, + "loss": 2.335912628173828, + "step": 38000 + }, + { + "epoch": 5.08, + "grad_norm": 0.20300929248332977, + "learning_rate": 4.74608e-05, + "loss": 2.3348677062988283, + "step": 38100 + }, + { + "epoch": 5.093333333333334, + "grad_norm": 0.1893633008003235, + "learning_rate": 4.7454200000000004e-05, + "loss": 2.3340078735351564, + "step": 38200 + }, + { + "epoch": 5.1066666666666665, + "grad_norm": 0.20675773918628693, + "learning_rate": 4.7447533333333336e-05, + "loss": 2.3374041748046874, + "step": 38300 + }, + { + "epoch": 5.12, + "grad_norm": 0.21601155400276184, + "learning_rate": 4.744086666666667e-05, + "loss": 2.3355015563964843, + "step": 38400 + }, + { + "epoch": 5.133333333333334, + "grad_norm": 0.20173364877700806, + "learning_rate": 4.74342e-05, + "loss": 2.336921844482422, + "step": 38500 + }, + { + "epoch": 5.1466666666666665, + "grad_norm": 0.19146205484867096, + "learning_rate": 4.742753333333333e-05, + "loss": 2.338092956542969, + "step": 38600 + }, + { + "epoch": 5.16, + "grad_norm": 0.19151638448238373, + "learning_rate": 4.742086666666667e-05, + "loss": 2.337191162109375, + "step": 38700 + }, + { + "epoch": 5.173333333333334, + "grad_norm": 0.19342660903930664, + "learning_rate": 4.7414200000000004e-05, + "loss": 2.338902893066406, + "step": 38800 + }, + { + "epoch": 5.1866666666666665, + "grad_norm": 0.18506617844104767, + "learning_rate": 4.7407533333333336e-05, + "loss": 2.3370294189453125, + "step": 38900 + }, + { + "epoch": 5.2, + "grad_norm": 0.1852942407131195, + "learning_rate": 4.740086666666667e-05, + "loss": 2.3374237060546874, + "step": 39000 + }, + { + "epoch": 5.213333333333333, + "grad_norm": 0.22944355010986328, + "learning_rate": 4.73942e-05, + "loss": 2.336438751220703, + "step": 39100 + }, + { + "epoch": 5.226666666666667, + "grad_norm": 0.19692735373973846, + "learning_rate": 4.738753333333333e-05, + "loss": 2.3369683837890625, + "step": 39200 + }, + { + "epoch": 5.24, + "grad_norm": 0.21631871163845062, + "learning_rate": 4.7380866666666666e-05, + "loss": 2.3371484375, + "step": 39300 + }, + { + "epoch": 5.253333333333333, + "grad_norm": 0.20942172408103943, + "learning_rate": 4.7374200000000005e-05, + "loss": 2.3369624328613283, + "step": 39400 + }, + { + "epoch": 5.266666666666667, + "grad_norm": 0.1939464509487152, + "learning_rate": 4.736753333333334e-05, + "loss": 2.337432556152344, + "step": 39500 + }, + { + "epoch": 5.28, + "grad_norm": 0.17876707017421722, + "learning_rate": 4.736086666666667e-05, + "loss": 2.3396649169921875, + "step": 39600 + }, + { + "epoch": 5.293333333333333, + "grad_norm": 0.21455919742584229, + "learning_rate": 4.73542e-05, + "loss": 2.3403550720214845, + "step": 39700 + }, + { + "epoch": 5.306666666666667, + "grad_norm": 0.19953106343746185, + "learning_rate": 4.734753333333334e-05, + "loss": 2.3371241760253905, + "step": 39800 + }, + { + "epoch": 5.32, + "grad_norm": 0.19843876361846924, + "learning_rate": 4.7340866666666666e-05, + "loss": 2.3368731689453126, + "step": 39900 + }, + { + "epoch": 5.333333333333333, + "grad_norm": 0.20457053184509277, + "learning_rate": 4.73342e-05, + "loss": 2.3382992553710937, + "step": 40000 + }, + { + "epoch": 5.346666666666667, + "grad_norm": 0.195728600025177, + "learning_rate": 4.732753333333334e-05, + "loss": 2.337715911865234, + "step": 40100 + }, + { + "epoch": 5.36, + "grad_norm": 0.19587790966033936, + "learning_rate": 4.7320933333333336e-05, + "loss": 2.3404110717773436, + "step": 40200 + }, + { + "epoch": 5.373333333333333, + "grad_norm": 0.20648671686649323, + "learning_rate": 4.731426666666667e-05, + "loss": 2.3392234802246095, + "step": 40300 + }, + { + "epoch": 5.386666666666667, + "grad_norm": 0.1902915984392166, + "learning_rate": 4.73076e-05, + "loss": 2.3366790771484376, + "step": 40400 + }, + { + "epoch": 5.4, + "grad_norm": 0.19474172592163086, + "learning_rate": 4.730093333333333e-05, + "loss": 2.337915344238281, + "step": 40500 + }, + { + "epoch": 5.413333333333333, + "grad_norm": 0.19446231424808502, + "learning_rate": 4.729426666666667e-05, + "loss": 2.3386886596679686, + "step": 40600 + }, + { + "epoch": 5.426666666666667, + "grad_norm": 0.18280309438705444, + "learning_rate": 4.7287600000000004e-05, + "loss": 2.3403004455566405, + "step": 40700 + }, + { + "epoch": 5.44, + "grad_norm": 0.1899874061346054, + "learning_rate": 4.728093333333334e-05, + "loss": 2.3395709228515624, + "step": 40800 + }, + { + "epoch": 5.453333333333333, + "grad_norm": 0.21245285868644714, + "learning_rate": 4.727426666666667e-05, + "loss": 2.341641693115234, + "step": 40900 + }, + { + "epoch": 5.466666666666667, + "grad_norm": 0.18492910265922546, + "learning_rate": 4.72676e-05, + "loss": 2.338828277587891, + "step": 41000 + }, + { + "epoch": 5.48, + "grad_norm": 0.19576863944530487, + "learning_rate": 4.7260933333333334e-05, + "loss": 2.340592498779297, + "step": 41100 + }, + { + "epoch": 5.493333333333333, + "grad_norm": 0.21991156041622162, + "learning_rate": 4.7254266666666666e-05, + "loss": 2.3374070739746093, + "step": 41200 + }, + { + "epoch": 5.506666666666667, + "grad_norm": 0.2011844664812088, + "learning_rate": 4.7247600000000005e-05, + "loss": 2.340482025146484, + "step": 41300 + }, + { + "epoch": 5.52, + "grad_norm": 0.1887616068124771, + "learning_rate": 4.724093333333334e-05, + "loss": 2.3403477478027344, + "step": 41400 + }, + { + "epoch": 5.533333333333333, + "grad_norm": 0.2083723396062851, + "learning_rate": 4.723426666666667e-05, + "loss": 2.338939361572266, + "step": 41500 + }, + { + "epoch": 5.546666666666667, + "grad_norm": 0.20391573011875153, + "learning_rate": 4.72276e-05, + "loss": 2.341011962890625, + "step": 41600 + }, + { + "epoch": 5.5600000000000005, + "grad_norm": 0.2055550515651703, + "learning_rate": 4.7220933333333334e-05, + "loss": 2.3417536926269533, + "step": 41700 + }, + { + "epoch": 5.573333333333333, + "grad_norm": 0.20119526982307434, + "learning_rate": 4.7214266666666666e-05, + "loss": 2.341081390380859, + "step": 41800 + }, + { + "epoch": 5.586666666666667, + "grad_norm": 0.19019430875778198, + "learning_rate": 4.7207600000000005e-05, + "loss": 2.3428114318847655, + "step": 41900 + }, + { + "epoch": 5.6, + "grad_norm": 0.21287046372890472, + "learning_rate": 4.720093333333334e-05, + "loss": 2.3393617248535157, + "step": 42000 + }, + { + "epoch": 5.613333333333333, + "grad_norm": 0.19636501371860504, + "learning_rate": 4.719426666666667e-05, + "loss": 2.341305694580078, + "step": 42100 + }, + { + "epoch": 5.626666666666667, + "grad_norm": 0.19112545251846313, + "learning_rate": 4.718766666666667e-05, + "loss": 2.338633728027344, + "step": 42200 + }, + { + "epoch": 5.64, + "grad_norm": 0.2038842886686325, + "learning_rate": 4.7181e-05, + "loss": 2.341297302246094, + "step": 42300 + }, + { + "epoch": 5.653333333333333, + "grad_norm": 0.20965079963207245, + "learning_rate": 4.717433333333334e-05, + "loss": 2.341322784423828, + "step": 42400 + }, + { + "epoch": 5.666666666666667, + "grad_norm": 0.2007293701171875, + "learning_rate": 4.716766666666667e-05, + "loss": 2.3385604858398437, + "step": 42500 + }, + { + "epoch": 5.68, + "grad_norm": 0.2063182145357132, + "learning_rate": 4.7161e-05, + "loss": 2.33922119140625, + "step": 42600 + }, + { + "epoch": 5.693333333333333, + "grad_norm": 0.2027292102575302, + "learning_rate": 4.715433333333334e-05, + "loss": 2.3407470703125, + "step": 42700 + }, + { + "epoch": 5.706666666666667, + "grad_norm": 0.1970498412847519, + "learning_rate": 4.714766666666667e-05, + "loss": 2.34189697265625, + "step": 42800 + }, + { + "epoch": 5.72, + "grad_norm": 0.21546319127082825, + "learning_rate": 4.7141e-05, + "loss": 2.3410997009277343, + "step": 42900 + }, + { + "epoch": 5.733333333333333, + "grad_norm": 0.20953406393527985, + "learning_rate": 4.7134333333333334e-05, + "loss": 2.341014404296875, + "step": 43000 + }, + { + "epoch": 5.746666666666667, + "grad_norm": 0.18453386425971985, + "learning_rate": 4.712766666666667e-05, + "loss": 2.3420458984375, + "step": 43100 + }, + { + "epoch": 5.76, + "grad_norm": 0.18693557381629944, + "learning_rate": 4.7121000000000005e-05, + "loss": 2.3417478942871095, + "step": 43200 + }, + { + "epoch": 5.773333333333333, + "grad_norm": 0.20244468748569489, + "learning_rate": 4.711433333333334e-05, + "loss": 2.341094970703125, + "step": 43300 + }, + { + "epoch": 5.786666666666667, + "grad_norm": 0.2122134268283844, + "learning_rate": 4.710766666666667e-05, + "loss": 2.339507598876953, + "step": 43400 + }, + { + "epoch": 5.8, + "grad_norm": 0.19113102555274963, + "learning_rate": 4.7101e-05, + "loss": 2.3414321899414063, + "step": 43500 + }, + { + "epoch": 5.8133333333333335, + "grad_norm": 0.2206200510263443, + "learning_rate": 4.7094333333333334e-05, + "loss": 2.341671600341797, + "step": 43600 + }, + { + "epoch": 5.826666666666666, + "grad_norm": 0.20389395952224731, + "learning_rate": 4.7087666666666666e-05, + "loss": 2.340543060302734, + "step": 43700 + }, + { + "epoch": 5.84, + "grad_norm": 0.20174798369407654, + "learning_rate": 4.7081000000000005e-05, + "loss": 2.339455261230469, + "step": 43800 + }, + { + "epoch": 5.8533333333333335, + "grad_norm": 0.20874814689159393, + "learning_rate": 4.707433333333334e-05, + "loss": 2.340840301513672, + "step": 43900 + }, + { + "epoch": 5.866666666666667, + "grad_norm": 0.19134193658828735, + "learning_rate": 4.706766666666667e-05, + "loss": 2.341136016845703, + "step": 44000 + }, + { + "epoch": 5.88, + "grad_norm": 0.21130426228046417, + "learning_rate": 4.7061e-05, + "loss": 2.341613311767578, + "step": 44100 + }, + { + "epoch": 5.8933333333333335, + "grad_norm": 0.23179572820663452, + "learning_rate": 4.70544e-05, + "loss": 2.3433583068847654, + "step": 44200 + }, + { + "epoch": 5.906666666666666, + "grad_norm": 0.1910688281059265, + "learning_rate": 4.704773333333334e-05, + "loss": 2.3415071105957033, + "step": 44300 + }, + { + "epoch": 5.92, + "grad_norm": 0.20032565295696259, + "learning_rate": 4.7041066666666666e-05, + "loss": 2.3411441040039063, + "step": 44400 + }, + { + "epoch": 5.933333333333334, + "grad_norm": 0.19156421720981598, + "learning_rate": 4.70344e-05, + "loss": 2.3405520629882814, + "step": 44500 + }, + { + "epoch": 5.946666666666666, + "grad_norm": 0.1907392293214798, + "learning_rate": 4.702773333333334e-05, + "loss": 2.3425755310058594, + "step": 44600 + }, + { + "epoch": 5.96, + "grad_norm": 0.200932115316391, + "learning_rate": 4.702106666666667e-05, + "loss": 2.3439457702636717, + "step": 44700 + }, + { + "epoch": 5.973333333333334, + "grad_norm": 0.2054533064365387, + "learning_rate": 4.70144e-05, + "loss": 2.3415347290039064, + "step": 44800 + }, + { + "epoch": 5.986666666666666, + "grad_norm": 0.20519991219043732, + "learning_rate": 4.7007733333333334e-05, + "loss": 2.3422901916503904, + "step": 44900 + }, + { + "epoch": 6.0, + "grad_norm": 0.19351975619792938, + "learning_rate": 4.700106666666667e-05, + "loss": 2.343433380126953, + "step": 45000 + }, + { + "epoch": 6.013333333333334, + "grad_norm": 0.20407870411872864, + "learning_rate": 4.69944e-05, + "loss": 2.3262948608398437, + "step": 45100 + }, + { + "epoch": 6.026666666666666, + "grad_norm": 0.19466857612133026, + "learning_rate": 4.698773333333333e-05, + "loss": 2.326324462890625, + "step": 45200 + }, + { + "epoch": 6.04, + "grad_norm": 0.20036247372627258, + "learning_rate": 4.698106666666667e-05, + "loss": 2.3274658203125, + "step": 45300 + }, + { + "epoch": 6.053333333333334, + "grad_norm": 0.20382268726825714, + "learning_rate": 4.69744e-05, + "loss": 2.325162353515625, + "step": 45400 + }, + { + "epoch": 6.066666666666666, + "grad_norm": 0.21262048184871674, + "learning_rate": 4.6967733333333334e-05, + "loss": 2.3246685791015627, + "step": 45500 + }, + { + "epoch": 6.08, + "grad_norm": 0.19266580045223236, + "learning_rate": 4.696106666666667e-05, + "loss": 2.3265760803222655, + "step": 45600 + }, + { + "epoch": 6.093333333333334, + "grad_norm": 0.1924133151769638, + "learning_rate": 4.6954400000000006e-05, + "loss": 2.3272021484375, + "step": 45700 + }, + { + "epoch": 6.1066666666666665, + "grad_norm": 0.1988048404455185, + "learning_rate": 4.694773333333334e-05, + "loss": 2.327220916748047, + "step": 45800 + }, + { + "epoch": 6.12, + "grad_norm": 0.1879425197839737, + "learning_rate": 4.6941066666666663e-05, + "loss": 2.328949737548828, + "step": 45900 + }, + { + "epoch": 6.133333333333334, + "grad_norm": 0.23073047399520874, + "learning_rate": 4.69344e-05, + "loss": 2.328899230957031, + "step": 46000 + }, + { + "epoch": 6.1466666666666665, + "grad_norm": 0.20694105327129364, + "learning_rate": 4.6927733333333335e-05, + "loss": 2.329393005371094, + "step": 46100 + }, + { + "epoch": 6.16, + "grad_norm": 0.2188512235879898, + "learning_rate": 4.6921133333333334e-05, + "loss": 2.3258409118652343, + "step": 46200 + }, + { + "epoch": 6.173333333333334, + "grad_norm": 0.18700923025608063, + "learning_rate": 4.6914466666666666e-05, + "loss": 2.331009979248047, + "step": 46300 + }, + { + "epoch": 6.1866666666666665, + "grad_norm": 0.20359359681606293, + "learning_rate": 4.69078e-05, + "loss": 2.3292669677734374, + "step": 46400 + }, + { + "epoch": 6.2, + "grad_norm": 0.22610503435134888, + "learning_rate": 4.690113333333334e-05, + "loss": 2.330577850341797, + "step": 46500 + }, + { + "epoch": 6.213333333333333, + "grad_norm": 0.18864652514457703, + "learning_rate": 4.689446666666667e-05, + "loss": 2.330567626953125, + "step": 46600 + }, + { + "epoch": 6.226666666666667, + "grad_norm": 0.20041510462760925, + "learning_rate": 4.68878e-05, + "loss": 2.327003173828125, + "step": 46700 + }, + { + "epoch": 6.24, + "grad_norm": 0.21242272853851318, + "learning_rate": 4.688113333333334e-05, + "loss": 2.3281683349609374, + "step": 46800 + }, + { + "epoch": 6.253333333333333, + "grad_norm": 0.19361090660095215, + "learning_rate": 4.6874466666666666e-05, + "loss": 2.331831512451172, + "step": 46900 + }, + { + "epoch": 6.266666666666667, + "grad_norm": 0.20165066421031952, + "learning_rate": 4.68678e-05, + "loss": 2.3307310485839845, + "step": 47000 + }, + { + "epoch": 6.28, + "grad_norm": 0.18842047452926636, + "learning_rate": 4.686113333333334e-05, + "loss": 2.3280589294433596, + "step": 47100 + }, + { + "epoch": 6.293333333333333, + "grad_norm": 0.2256300151348114, + "learning_rate": 4.685446666666667e-05, + "loss": 2.3284527587890627, + "step": 47200 + }, + { + "epoch": 6.306666666666667, + "grad_norm": 0.18087539076805115, + "learning_rate": 4.68478e-05, + "loss": 2.3301324462890625, + "step": 47300 + }, + { + "epoch": 6.32, + "grad_norm": 0.207829549908638, + "learning_rate": 4.6841133333333335e-05, + "loss": 2.330213623046875, + "step": 47400 + }, + { + "epoch": 6.333333333333333, + "grad_norm": 0.19543009996414185, + "learning_rate": 4.6834466666666674e-05, + "loss": 2.3290335083007814, + "step": 47500 + }, + { + "epoch": 6.346666666666667, + "grad_norm": 0.2060248702764511, + "learning_rate": 4.6827800000000006e-05, + "loss": 2.331068572998047, + "step": 47600 + }, + { + "epoch": 6.36, + "grad_norm": 0.2179960161447525, + "learning_rate": 4.682113333333333e-05, + "loss": 2.330615997314453, + "step": 47700 + }, + { + "epoch": 6.373333333333333, + "grad_norm": 0.22476692497730255, + "learning_rate": 4.681446666666667e-05, + "loss": 2.3329974365234376, + "step": 47800 + }, + { + "epoch": 6.386666666666667, + "grad_norm": 0.1948496699333191, + "learning_rate": 4.68078e-05, + "loss": 2.3322357177734374, + "step": 47900 + }, + { + "epoch": 6.4, + "grad_norm": 0.19658160209655762, + "learning_rate": 4.6801133333333335e-05, + "loss": 2.329741668701172, + "step": 48000 + }, + { + "epoch": 6.413333333333333, + "grad_norm": 0.21576018631458282, + "learning_rate": 4.679446666666667e-05, + "loss": 2.331051788330078, + "step": 48100 + }, + { + "epoch": 6.426666666666667, + "grad_norm": 0.20465338230133057, + "learning_rate": 4.6787866666666666e-05, + "loss": 2.3314564514160154, + "step": 48200 + }, + { + "epoch": 6.44, + "grad_norm": 0.2254284769296646, + "learning_rate": 4.6781200000000005e-05, + "loss": 2.3306893920898437, + "step": 48300 + }, + { + "epoch": 6.453333333333333, + "grad_norm": 0.21523387730121613, + "learning_rate": 4.677453333333334e-05, + "loss": 2.3328369140625, + "step": 48400 + }, + { + "epoch": 6.466666666666667, + "grad_norm": 0.20994578301906586, + "learning_rate": 4.676786666666667e-05, + "loss": 2.3308122253417967, + "step": 48500 + }, + { + "epoch": 6.48, + "grad_norm": 0.21397413313388824, + "learning_rate": 4.67612e-05, + "loss": 2.3299708557128906, + "step": 48600 + }, + { + "epoch": 6.493333333333333, + "grad_norm": 0.20089605450630188, + "learning_rate": 4.6754533333333334e-05, + "loss": 2.3305317687988283, + "step": 48700 + }, + { + "epoch": 6.506666666666667, + "grad_norm": 0.21305248141288757, + "learning_rate": 4.674786666666667e-05, + "loss": 2.3314739990234377, + "step": 48800 + }, + { + "epoch": 6.52, + "grad_norm": 0.20678336918354034, + "learning_rate": 4.67412e-05, + "loss": 2.3338267517089846, + "step": 48900 + }, + { + "epoch": 6.533333333333333, + "grad_norm": 0.20186908543109894, + "learning_rate": 4.673453333333334e-05, + "loss": 2.3309475708007814, + "step": 49000 + }, + { + "epoch": 6.546666666666667, + "grad_norm": 0.1907065063714981, + "learning_rate": 4.672786666666667e-05, + "loss": 2.3316998291015625, + "step": 49100 + }, + { + "epoch": 6.5600000000000005, + "grad_norm": 0.21854570508003235, + "learning_rate": 4.67212e-05, + "loss": 2.3346012878417968, + "step": 49200 + }, + { + "epoch": 6.573333333333333, + "grad_norm": 0.1847628653049469, + "learning_rate": 4.6714533333333335e-05, + "loss": 2.3357057189941406, + "step": 49300 + }, + { + "epoch": 6.586666666666667, + "grad_norm": 0.19201835989952087, + "learning_rate": 4.670786666666667e-05, + "loss": 2.3363993835449217, + "step": 49400 + }, + { + "epoch": 6.6, + "grad_norm": 0.19336426258087158, + "learning_rate": 4.67012e-05, + "loss": 2.3319854736328125, + "step": 49500 + }, + { + "epoch": 6.613333333333333, + "grad_norm": 0.20099902153015137, + "learning_rate": 4.669453333333333e-05, + "loss": 2.3336613464355467, + "step": 49600 + }, + { + "epoch": 6.626666666666667, + "grad_norm": 0.1986514925956726, + "learning_rate": 4.668786666666667e-05, + "loss": 2.3317831420898436, + "step": 49700 + }, + { + "epoch": 6.64, + "grad_norm": 0.20249810814857483, + "learning_rate": 4.66812e-05, + "loss": 2.3329707336425782, + "step": 49800 + }, + { + "epoch": 6.653333333333333, + "grad_norm": 0.21656836569309235, + "learning_rate": 4.6674533333333335e-05, + "loss": 2.3322386169433593, + "step": 49900 + }, + { + "epoch": 6.666666666666667, + "grad_norm": 0.19392716884613037, + "learning_rate": 4.666786666666667e-05, + "loss": 2.334392852783203, + "step": 50000 + }, + { + "epoch": 6.68, + "grad_norm": 0.19600430130958557, + "learning_rate": 4.6661200000000007e-05, + "loss": 2.3346022033691405, + "step": 50100 + }, + { + "epoch": 6.693333333333333, + "grad_norm": 0.21334628760814667, + "learning_rate": 4.6654600000000006e-05, + "loss": 2.3344834899902343, + "step": 50200 + }, + { + "epoch": 6.706666666666667, + "grad_norm": 0.19854342937469482, + "learning_rate": 4.664793333333334e-05, + "loss": 2.3333599853515623, + "step": 50300 + }, + { + "epoch": 6.72, + "grad_norm": 0.2086271196603775, + "learning_rate": 4.664126666666666e-05, + "loss": 2.335559997558594, + "step": 50400 + }, + { + "epoch": 6.733333333333333, + "grad_norm": 0.20393237471580505, + "learning_rate": 4.66346e-05, + "loss": 2.3350341796875, + "step": 50500 + }, + { + "epoch": 6.746666666666667, + "grad_norm": 0.2037380337715149, + "learning_rate": 4.6627933333333335e-05, + "loss": 2.3359445190429686, + "step": 50600 + }, + { + "epoch": 6.76, + "grad_norm": 0.2010214924812317, + "learning_rate": 4.662126666666667e-05, + "loss": 2.333213348388672, + "step": 50700 + }, + { + "epoch": 6.773333333333333, + "grad_norm": 0.211711123585701, + "learning_rate": 4.6614600000000006e-05, + "loss": 2.333146209716797, + "step": 50800 + }, + { + "epoch": 6.786666666666667, + "grad_norm": 0.20048975944519043, + "learning_rate": 4.660793333333334e-05, + "loss": 2.332876892089844, + "step": 50900 + }, + { + "epoch": 6.8, + "grad_norm": 0.20532432198524475, + "learning_rate": 4.660126666666667e-05, + "loss": 2.335528564453125, + "step": 51000 + }, + { + "epoch": 6.8133333333333335, + "grad_norm": 0.19597899913787842, + "learning_rate": 4.65946e-05, + "loss": 2.3326602172851563, + "step": 51100 + }, + { + "epoch": 6.826666666666666, + "grad_norm": 0.20233699679374695, + "learning_rate": 4.6587933333333335e-05, + "loss": 2.3346743774414063, + "step": 51200 + }, + { + "epoch": 6.84, + "grad_norm": 0.1949591040611267, + "learning_rate": 4.658126666666667e-05, + "loss": 2.335735168457031, + "step": 51300 + }, + { + "epoch": 6.8533333333333335, + "grad_norm": 0.1934141367673874, + "learning_rate": 4.65746e-05, + "loss": 2.335612487792969, + "step": 51400 + }, + { + "epoch": 6.866666666666667, + "grad_norm": 0.2191038280725479, + "learning_rate": 4.656793333333334e-05, + "loss": 2.3345936584472655, + "step": 51500 + }, + { + "epoch": 6.88, + "grad_norm": 0.20383000373840332, + "learning_rate": 4.656126666666667e-05, + "loss": 2.3339216613769533, + "step": 51600 + }, + { + "epoch": 6.8933333333333335, + "grad_norm": 0.19669340550899506, + "learning_rate": 4.65546e-05, + "loss": 2.3346900939941406, + "step": 51700 + }, + { + "epoch": 6.906666666666666, + "grad_norm": 0.20373137295246124, + "learning_rate": 4.6547933333333335e-05, + "loss": 2.3349125671386717, + "step": 51800 + }, + { + "epoch": 6.92, + "grad_norm": 0.2109116166830063, + "learning_rate": 4.654126666666667e-05, + "loss": 2.3348736572265625, + "step": 51900 + }, + { + "epoch": 6.933333333333334, + "grad_norm": 0.21398979425430298, + "learning_rate": 4.65346e-05, + "loss": 2.336753692626953, + "step": 52000 + }, + { + "epoch": 6.946666666666666, + "grad_norm": 0.1936953067779541, + "learning_rate": 4.652793333333333e-05, + "loss": 2.3369993591308593, + "step": 52100 + }, + { + "epoch": 6.96, + "grad_norm": 0.22233432531356812, + "learning_rate": 4.652133333333333e-05, + "loss": 2.3361253356933593, + "step": 52200 + }, + { + "epoch": 6.973333333333334, + "grad_norm": 0.20416876673698425, + "learning_rate": 4.651466666666667e-05, + "loss": 2.3360031127929686, + "step": 52300 + }, + { + "epoch": 6.986666666666666, + "grad_norm": 0.2030036300420761, + "learning_rate": 4.6508e-05, + "loss": 2.337208099365234, + "step": 52400 + }, + { + "epoch": 7.0, + "grad_norm": 0.19202755391597748, + "learning_rate": 4.6501333333333335e-05, + "loss": 2.336151123046875, + "step": 52500 + }, + { + "epoch": 7.013333333333334, + "grad_norm": 0.206998810172081, + "learning_rate": 4.649466666666667e-05, + "loss": 2.315085906982422, + "step": 52600 + }, + { + "epoch": 7.026666666666666, + "grad_norm": 0.2254278063774109, + "learning_rate": 4.6488000000000006e-05, + "loss": 2.316161651611328, + "step": 52700 + }, + { + "epoch": 7.04, + "grad_norm": 0.2177981585264206, + "learning_rate": 4.648133333333334e-05, + "loss": 2.3162889099121093, + "step": 52800 + }, + { + "epoch": 7.053333333333334, + "grad_norm": 0.22323600947856903, + "learning_rate": 4.6474666666666664e-05, + "loss": 2.3178530883789064, + "step": 52900 + }, + { + "epoch": 7.066666666666666, + "grad_norm": 0.20918424427509308, + "learning_rate": 4.6468e-05, + "loss": 2.315562438964844, + "step": 53000 + }, + { + "epoch": 7.08, + "grad_norm": 0.22114083170890808, + "learning_rate": 4.6461333333333335e-05, + "loss": 2.315318145751953, + "step": 53100 + }, + { + "epoch": 7.093333333333334, + "grad_norm": 0.19929060339927673, + "learning_rate": 4.645466666666667e-05, + "loss": 2.319254913330078, + "step": 53200 + }, + { + "epoch": 7.1066666666666665, + "grad_norm": 0.22897835075855255, + "learning_rate": 4.6448e-05, + "loss": 2.3185064697265627, + "step": 53300 + }, + { + "epoch": 7.12, + "grad_norm": 0.20979653298854828, + "learning_rate": 4.644133333333334e-05, + "loss": 2.3153074645996092, + "step": 53400 + }, + { + "epoch": 7.133333333333334, + "grad_norm": 0.208432137966156, + "learning_rate": 4.643466666666667e-05, + "loss": 2.3188551330566405, + "step": 53500 + }, + { + "epoch": 7.1466666666666665, + "grad_norm": 0.2060391902923584, + "learning_rate": 4.6428000000000003e-05, + "loss": 2.319374694824219, + "step": 53600 + }, + { + "epoch": 7.16, + "grad_norm": 0.2240801900625229, + "learning_rate": 4.6421333333333336e-05, + "loss": 2.315366668701172, + "step": 53700 + }, + { + "epoch": 7.173333333333334, + "grad_norm": 0.21705488860607147, + "learning_rate": 4.641466666666667e-05, + "loss": 2.320493469238281, + "step": 53800 + }, + { + "epoch": 7.1866666666666665, + "grad_norm": 0.22233860194683075, + "learning_rate": 4.6408e-05, + "loss": 2.318059844970703, + "step": 53900 + }, + { + "epoch": 7.2, + "grad_norm": 0.2171303927898407, + "learning_rate": 4.640133333333333e-05, + "loss": 2.320230712890625, + "step": 54000 + }, + { + "epoch": 7.213333333333333, + "grad_norm": 0.21981152892112732, + "learning_rate": 4.639466666666667e-05, + "loss": 2.3186485290527346, + "step": 54100 + }, + { + "epoch": 7.226666666666667, + "grad_norm": 0.2230496108531952, + "learning_rate": 4.638806666666667e-05, + "loss": 2.3200640869140625, + "step": 54200 + }, + { + "epoch": 7.24, + "grad_norm": 0.2142811268568039, + "learning_rate": 4.63814e-05, + "loss": 2.3188714599609375, + "step": 54300 + }, + { + "epoch": 7.253333333333333, + "grad_norm": 0.20586246252059937, + "learning_rate": 4.6374733333333335e-05, + "loss": 2.3214300537109374, + "step": 54400 + }, + { + "epoch": 7.266666666666667, + "grad_norm": 0.206768199801445, + "learning_rate": 4.636806666666667e-05, + "loss": 2.317760467529297, + "step": 54500 + }, + { + "epoch": 7.28, + "grad_norm": 0.22308428585529327, + "learning_rate": 4.6361400000000006e-05, + "loss": 2.32193359375, + "step": 54600 + }, + { + "epoch": 7.293333333333333, + "grad_norm": 0.21023783087730408, + "learning_rate": 4.635473333333333e-05, + "loss": 2.321294860839844, + "step": 54700 + }, + { + "epoch": 7.306666666666667, + "grad_norm": 0.20875036716461182, + "learning_rate": 4.6348066666666664e-05, + "loss": 2.3194563293457033, + "step": 54800 + }, + { + "epoch": 7.32, + "grad_norm": 0.22223174571990967, + "learning_rate": 4.63414e-05, + "loss": 2.3206028747558594, + "step": 54900 + }, + { + "epoch": 7.333333333333333, + "grad_norm": 0.19239133596420288, + "learning_rate": 4.6334733333333336e-05, + "loss": 2.321158599853516, + "step": 55000 + }, + { + "epoch": 7.346666666666667, + "grad_norm": 0.22706732153892517, + "learning_rate": 4.632806666666667e-05, + "loss": 2.3212765502929686, + "step": 55100 + }, + { + "epoch": 7.36, + "grad_norm": 0.23205487430095673, + "learning_rate": 4.632140000000001e-05, + "loss": 2.322073974609375, + "step": 55200 + }, + { + "epoch": 7.373333333333333, + "grad_norm": 0.2067403942346573, + "learning_rate": 4.631473333333334e-05, + "loss": 2.3220693969726565, + "step": 55300 + }, + { + "epoch": 7.386666666666667, + "grad_norm": 0.20351338386535645, + "learning_rate": 4.6308066666666665e-05, + "loss": 2.32278076171875, + "step": 55400 + }, + { + "epoch": 7.4, + "grad_norm": 0.21386387944221497, + "learning_rate": 4.6301400000000004e-05, + "loss": 2.3235244750976562, + "step": 55500 + }, + { + "epoch": 7.413333333333333, + "grad_norm": 0.2237972617149353, + "learning_rate": 4.6294733333333336e-05, + "loss": 2.3205836486816405, + "step": 55600 + }, + { + "epoch": 7.426666666666667, + "grad_norm": 0.196205735206604, + "learning_rate": 4.628806666666667e-05, + "loss": 2.324235687255859, + "step": 55700 + }, + { + "epoch": 7.44, + "grad_norm": 0.20559580624103546, + "learning_rate": 4.62814e-05, + "loss": 2.3239215087890623, + "step": 55800 + }, + { + "epoch": 7.453333333333333, + "grad_norm": 0.22416776418685913, + "learning_rate": 4.627473333333334e-05, + "loss": 2.3214433288574217, + "step": 55900 + }, + { + "epoch": 7.466666666666667, + "grad_norm": 0.20037733018398285, + "learning_rate": 4.626806666666667e-05, + "loss": 2.322022247314453, + "step": 56000 + }, + { + "epoch": 7.48, + "grad_norm": 0.21654389798641205, + "learning_rate": 4.6261400000000004e-05, + "loss": 2.3236199951171876, + "step": 56100 + }, + { + "epoch": 7.493333333333333, + "grad_norm": 0.21859359741210938, + "learning_rate": 4.62548e-05, + "loss": 2.3238677978515625, + "step": 56200 + }, + { + "epoch": 7.506666666666667, + "grad_norm": 0.22405706346035004, + "learning_rate": 4.6248133333333335e-05, + "loss": 2.326851654052734, + "step": 56300 + }, + { + "epoch": 7.52, + "grad_norm": 0.1978028565645218, + "learning_rate": 4.624146666666667e-05, + "loss": 2.3240150451660155, + "step": 56400 + }, + { + "epoch": 7.533333333333333, + "grad_norm": 0.21222999691963196, + "learning_rate": 4.62348e-05, + "loss": 2.3225338745117186, + "step": 56500 + }, + { + "epoch": 7.546666666666667, + "grad_norm": 0.22027376294136047, + "learning_rate": 4.622813333333333e-05, + "loss": 2.324446563720703, + "step": 56600 + }, + { + "epoch": 7.5600000000000005, + "grad_norm": 0.21182918548583984, + "learning_rate": 4.622146666666667e-05, + "loss": 2.3254127502441406, + "step": 56700 + }, + { + "epoch": 7.573333333333333, + "grad_norm": 0.19568821787834167, + "learning_rate": 4.6214800000000003e-05, + "loss": 2.325800323486328, + "step": 56800 + }, + { + "epoch": 7.586666666666667, + "grad_norm": 0.20319704711437225, + "learning_rate": 4.6208133333333336e-05, + "loss": 2.325161590576172, + "step": 56900 + }, + { + "epoch": 7.6, + "grad_norm": 0.22199761867523193, + "learning_rate": 4.620146666666667e-05, + "loss": 2.3248526000976564, + "step": 57000 + }, + { + "epoch": 7.613333333333333, + "grad_norm": 0.19542196393013, + "learning_rate": 4.619480000000001e-05, + "loss": 2.3250607299804686, + "step": 57100 + }, + { + "epoch": 7.626666666666667, + "grad_norm": 0.19808714091777802, + "learning_rate": 4.618813333333333e-05, + "loss": 2.3261805725097657, + "step": 57200 + }, + { + "epoch": 7.64, + "grad_norm": 0.22000600397586823, + "learning_rate": 4.6181466666666665e-05, + "loss": 2.3237953186035156, + "step": 57300 + }, + { + "epoch": 7.653333333333333, + "grad_norm": 0.2083161324262619, + "learning_rate": 4.6174800000000004e-05, + "loss": 2.3280027770996092, + "step": 57400 + }, + { + "epoch": 7.666666666666667, + "grad_norm": 0.2168016880750656, + "learning_rate": 4.6168133333333336e-05, + "loss": 2.324162902832031, + "step": 57500 + }, + { + "epoch": 7.68, + "grad_norm": 0.21734952926635742, + "learning_rate": 4.616146666666667e-05, + "loss": 2.3249171447753905, + "step": 57600 + }, + { + "epoch": 7.693333333333333, + "grad_norm": 0.20479203760623932, + "learning_rate": 4.61548e-05, + "loss": 2.327186737060547, + "step": 57700 + }, + { + "epoch": 7.706666666666667, + "grad_norm": 0.2028800994157791, + "learning_rate": 4.614813333333334e-05, + "loss": 2.327611999511719, + "step": 57800 + }, + { + "epoch": 7.72, + "grad_norm": 0.21738632023334503, + "learning_rate": 4.6141466666666665e-05, + "loss": 2.324887390136719, + "step": 57900 + }, + { + "epoch": 7.733333333333333, + "grad_norm": 0.227495938539505, + "learning_rate": 4.61348e-05, + "loss": 2.3263511657714844, + "step": 58000 + }, + { + "epoch": 7.746666666666667, + "grad_norm": 0.22351373732089996, + "learning_rate": 4.6128133333333337e-05, + "loss": 2.324449005126953, + "step": 58100 + }, + { + "epoch": 7.76, + "grad_norm": 0.19855080544948578, + "learning_rate": 4.6121533333333336e-05, + "loss": 2.3279388427734373, + "step": 58200 + }, + { + "epoch": 7.773333333333333, + "grad_norm": 0.21258243918418884, + "learning_rate": 4.611486666666667e-05, + "loss": 2.3258876037597656, + "step": 58300 + }, + { + "epoch": 7.786666666666667, + "grad_norm": 0.23399053514003754, + "learning_rate": 4.61082e-05, + "loss": 2.328024597167969, + "step": 58400 + }, + { + "epoch": 7.8, + "grad_norm": 0.20555289089679718, + "learning_rate": 4.610153333333333e-05, + "loss": 2.324607391357422, + "step": 58500 + }, + { + "epoch": 7.8133333333333335, + "grad_norm": 0.22223757207393646, + "learning_rate": 4.609486666666667e-05, + "loss": 2.328887634277344, + "step": 58600 + }, + { + "epoch": 7.826666666666666, + "grad_norm": 0.20944397151470184, + "learning_rate": 4.6088200000000004e-05, + "loss": 2.326324005126953, + "step": 58700 + }, + { + "epoch": 7.84, + "grad_norm": 0.21754513680934906, + "learning_rate": 4.6081533333333336e-05, + "loss": 2.3285617065429687, + "step": 58800 + }, + { + "epoch": 7.8533333333333335, + "grad_norm": 0.2218855917453766, + "learning_rate": 4.607486666666667e-05, + "loss": 2.3279769897460936, + "step": 58900 + }, + { + "epoch": 7.866666666666667, + "grad_norm": 0.2152242809534073, + "learning_rate": 4.60682e-05, + "loss": 2.327835998535156, + "step": 59000 + }, + { + "epoch": 7.88, + "grad_norm": 0.19836048781871796, + "learning_rate": 4.606153333333333e-05, + "loss": 2.330382843017578, + "step": 59100 + }, + { + "epoch": 7.8933333333333335, + "grad_norm": 0.2070547193288803, + "learning_rate": 4.6054866666666665e-05, + "loss": 2.328244171142578, + "step": 59200 + }, + { + "epoch": 7.906666666666666, + "grad_norm": 0.2064908742904663, + "learning_rate": 4.6048200000000004e-05, + "loss": 2.327570037841797, + "step": 59300 + }, + { + "epoch": 7.92, + "grad_norm": 0.19223378598690033, + "learning_rate": 4.6041533333333336e-05, + "loss": 2.327322540283203, + "step": 59400 + }, + { + "epoch": 7.933333333333334, + "grad_norm": 0.2263549417257309, + "learning_rate": 4.603486666666667e-05, + "loss": 2.329267120361328, + "step": 59500 + }, + { + "epoch": 7.946666666666666, + "grad_norm": 0.21715712547302246, + "learning_rate": 4.602820000000001e-05, + "loss": 2.3234599304199217, + "step": 59600 + }, + { + "epoch": 7.96, + "grad_norm": 0.2264692485332489, + "learning_rate": 4.602153333333333e-05, + "loss": 2.326782531738281, + "step": 59700 + }, + { + "epoch": 7.973333333333334, + "grad_norm": 0.20843270421028137, + "learning_rate": 4.6014866666666665e-05, + "loss": 2.3266970825195314, + "step": 59800 + }, + { + "epoch": 7.986666666666666, + "grad_norm": 0.20484039187431335, + "learning_rate": 4.6008200000000004e-05, + "loss": 2.3275350952148437, + "step": 59900 + }, + { + "epoch": 8.0, + "grad_norm": 0.21979759633541107, + "learning_rate": 4.600153333333334e-05, + "loss": 2.327262115478516, + "step": 60000 + }, + { + "epoch": 8.013333333333334, + "grad_norm": 0.2148316353559494, + "learning_rate": 4.599486666666667e-05, + "loss": 2.3032371520996096, + "step": 60100 + }, + { + "epoch": 8.026666666666667, + "grad_norm": 0.2427894026041031, + "learning_rate": 4.598826666666667e-05, + "loss": 2.306138000488281, + "step": 60200 + }, + { + "epoch": 8.04, + "grad_norm": 0.23417937755584717, + "learning_rate": 4.59816e-05, + "loss": 2.3055377197265625, + "step": 60300 + }, + { + "epoch": 8.053333333333333, + "grad_norm": 0.22597885131835938, + "learning_rate": 4.597493333333334e-05, + "loss": 2.308175354003906, + "step": 60400 + }, + { + "epoch": 8.066666666666666, + "grad_norm": 0.22343474626541138, + "learning_rate": 4.596826666666667e-05, + "loss": 2.3064723205566406, + "step": 60500 + }, + { + "epoch": 8.08, + "grad_norm": 0.22558583319187164, + "learning_rate": 4.5961600000000004e-05, + "loss": 2.305071258544922, + "step": 60600 + }, + { + "epoch": 8.093333333333334, + "grad_norm": 0.20653437077999115, + "learning_rate": 4.5954933333333336e-05, + "loss": 2.307345428466797, + "step": 60700 + }, + { + "epoch": 8.106666666666667, + "grad_norm": 0.2216809093952179, + "learning_rate": 4.594826666666667e-05, + "loss": 2.3047059631347655, + "step": 60800 + }, + { + "epoch": 8.12, + "grad_norm": 0.22799284756183624, + "learning_rate": 4.59416e-05, + "loss": 2.307566833496094, + "step": 60900 + }, + { + "epoch": 8.133333333333333, + "grad_norm": 0.22076313197612762, + "learning_rate": 4.593493333333333e-05, + "loss": 2.3049078369140625, + "step": 61000 + }, + { + "epoch": 8.146666666666667, + "grad_norm": 0.2266998142004013, + "learning_rate": 4.592826666666667e-05, + "loss": 2.3053494262695313, + "step": 61100 + }, + { + "epoch": 8.16, + "grad_norm": 0.23705247044563293, + "learning_rate": 4.5921600000000004e-05, + "loss": 2.3077027893066404, + "step": 61200 + }, + { + "epoch": 8.173333333333334, + "grad_norm": 0.21669632196426392, + "learning_rate": 4.5914933333333337e-05, + "loss": 2.3076458740234376, + "step": 61300 + }, + { + "epoch": 8.186666666666667, + "grad_norm": 0.2006712257862091, + "learning_rate": 4.590826666666667e-05, + "loss": 2.3063531494140626, + "step": 61400 + }, + { + "epoch": 8.2, + "grad_norm": 0.21064023673534393, + "learning_rate": 4.59016e-05, + "loss": 2.3089945983886717, + "step": 61500 + }, + { + "epoch": 8.213333333333333, + "grad_norm": 0.21858380734920502, + "learning_rate": 4.589493333333333e-05, + "loss": 2.307320098876953, + "step": 61600 + }, + { + "epoch": 8.226666666666667, + "grad_norm": 0.21644806861877441, + "learning_rate": 4.5888266666666666e-05, + "loss": 2.3085394287109375, + "step": 61700 + }, + { + "epoch": 8.24, + "grad_norm": 0.22975999116897583, + "learning_rate": 4.5881600000000005e-05, + "loss": 2.3101947021484377, + "step": 61800 + }, + { + "epoch": 8.253333333333334, + "grad_norm": 0.21924324333667755, + "learning_rate": 4.587493333333334e-05, + "loss": 2.3123768615722655, + "step": 61900 + }, + { + "epoch": 8.266666666666667, + "grad_norm": 0.22921468317508698, + "learning_rate": 4.586826666666667e-05, + "loss": 2.3115985107421877, + "step": 62000 + }, + { + "epoch": 8.28, + "grad_norm": 0.21891409158706665, + "learning_rate": 4.58616e-05, + "loss": 2.309479217529297, + "step": 62100 + }, + { + "epoch": 8.293333333333333, + "grad_norm": 0.22286993265151978, + "learning_rate": 4.5855e-05, + "loss": 2.3122218322753905, + "step": 62200 + }, + { + "epoch": 8.306666666666667, + "grad_norm": 0.24152639508247375, + "learning_rate": 4.584833333333334e-05, + "loss": 2.308910217285156, + "step": 62300 + }, + { + "epoch": 8.32, + "grad_norm": 0.21503682434558868, + "learning_rate": 4.5841666666666665e-05, + "loss": 2.307999572753906, + "step": 62400 + }, + { + "epoch": 8.333333333333334, + "grad_norm": 0.20558761060237885, + "learning_rate": 4.5835e-05, + "loss": 2.3080621337890626, + "step": 62500 + }, + { + "epoch": 8.346666666666668, + "grad_norm": 0.21116876602172852, + "learning_rate": 4.5828333333333336e-05, + "loss": 2.3105264282226563, + "step": 62600 + }, + { + "epoch": 8.36, + "grad_norm": 0.2325267195701599, + "learning_rate": 4.582166666666667e-05, + "loss": 2.309617919921875, + "step": 62700 + }, + { + "epoch": 8.373333333333333, + "grad_norm": 0.2288995385169983, + "learning_rate": 4.5815e-05, + "loss": 2.3135015869140627, + "step": 62800 + }, + { + "epoch": 8.386666666666667, + "grad_norm": 0.23661412298679352, + "learning_rate": 4.580833333333333e-05, + "loss": 2.311595153808594, + "step": 62900 + }, + { + "epoch": 8.4, + "grad_norm": 0.22704863548278809, + "learning_rate": 4.580166666666667e-05, + "loss": 2.311846160888672, + "step": 63000 + }, + { + "epoch": 8.413333333333334, + "grad_norm": 0.21123670041561127, + "learning_rate": 4.5795000000000005e-05, + "loss": 2.3099000549316404, + "step": 63100 + }, + { + "epoch": 8.426666666666666, + "grad_norm": 0.22051377594470978, + "learning_rate": 4.578833333333333e-05, + "loss": 2.314755401611328, + "step": 63200 + }, + { + "epoch": 8.44, + "grad_norm": 0.21824777126312256, + "learning_rate": 4.578166666666667e-05, + "loss": 2.3122979736328126, + "step": 63300 + }, + { + "epoch": 8.453333333333333, + "grad_norm": 0.2141052782535553, + "learning_rate": 4.5775e-05, + "loss": 2.314187316894531, + "step": 63400 + }, + { + "epoch": 8.466666666666667, + "grad_norm": 0.22229032218456268, + "learning_rate": 4.5768333333333334e-05, + "loss": 2.3118528747558593, + "step": 63500 + }, + { + "epoch": 8.48, + "grad_norm": 0.21177971363067627, + "learning_rate": 4.576166666666667e-05, + "loss": 2.314485626220703, + "step": 63600 + }, + { + "epoch": 8.493333333333334, + "grad_norm": 0.2159062772989273, + "learning_rate": 4.5755000000000005e-05, + "loss": 2.3116845703125, + "step": 63700 + }, + { + "epoch": 8.506666666666666, + "grad_norm": 0.21478477120399475, + "learning_rate": 4.574833333333334e-05, + "loss": 2.3143507385253907, + "step": 63800 + }, + { + "epoch": 8.52, + "grad_norm": 0.22522731125354767, + "learning_rate": 4.574166666666667e-05, + "loss": 2.315663604736328, + "step": 63900 + }, + { + "epoch": 8.533333333333333, + "grad_norm": 0.22168120741844177, + "learning_rate": 4.5735e-05, + "loss": 2.3135195922851564, + "step": 64000 + }, + { + "epoch": 8.546666666666667, + "grad_norm": 0.2298642098903656, + "learning_rate": 4.5728333333333334e-05, + "loss": 2.315981140136719, + "step": 64100 + }, + { + "epoch": 8.56, + "grad_norm": 0.2253265529870987, + "learning_rate": 4.572173333333333e-05, + "loss": 2.315703887939453, + "step": 64200 + }, + { + "epoch": 8.573333333333334, + "grad_norm": 0.22435899078845978, + "learning_rate": 4.5715066666666665e-05, + "loss": 2.314583282470703, + "step": 64300 + }, + { + "epoch": 8.586666666666666, + "grad_norm": 0.21293385326862335, + "learning_rate": 4.5708400000000004e-05, + "loss": 2.3148568725585936, + "step": 64400 + }, + { + "epoch": 8.6, + "grad_norm": 0.2217615693807602, + "learning_rate": 4.570173333333334e-05, + "loss": 2.3133966064453126, + "step": 64500 + }, + { + "epoch": 8.613333333333333, + "grad_norm": 0.21577724814414978, + "learning_rate": 4.569506666666667e-05, + "loss": 2.3160128784179688, + "step": 64600 + }, + { + "epoch": 8.626666666666667, + "grad_norm": 0.20894163846969604, + "learning_rate": 4.56884e-05, + "loss": 2.316580505371094, + "step": 64700 + }, + { + "epoch": 8.64, + "grad_norm": 0.22660347819328308, + "learning_rate": 4.568173333333334e-05, + "loss": 2.3132757568359374, + "step": 64800 + }, + { + "epoch": 8.653333333333332, + "grad_norm": 0.20169147849082947, + "learning_rate": 4.567506666666667e-05, + "loss": 2.3164935302734375, + "step": 64900 + }, + { + "epoch": 8.666666666666666, + "grad_norm": 0.22867351770401, + "learning_rate": 4.56684e-05, + "loss": 2.3162477111816404, + "step": 65000 + }, + { + "epoch": 8.68, + "grad_norm": 0.23090234398841858, + "learning_rate": 4.566173333333334e-05, + "loss": 2.3189874267578126, + "step": 65100 + }, + { + "epoch": 8.693333333333333, + "grad_norm": 0.22201119363307953, + "learning_rate": 4.565506666666667e-05, + "loss": 2.31669921875, + "step": 65200 + }, + { + "epoch": 8.706666666666667, + "grad_norm": 0.2174353450536728, + "learning_rate": 4.56484e-05, + "loss": 2.3188742065429686, + "step": 65300 + }, + { + "epoch": 8.72, + "grad_norm": 0.21239978075027466, + "learning_rate": 4.5641733333333334e-05, + "loss": 2.3161309814453124, + "step": 65400 + }, + { + "epoch": 8.733333333333333, + "grad_norm": 0.19849137961864471, + "learning_rate": 4.563506666666667e-05, + "loss": 2.3190155029296875, + "step": 65500 + }, + { + "epoch": 8.746666666666666, + "grad_norm": 0.2238064557313919, + "learning_rate": 4.5628400000000005e-05, + "loss": 2.3172088623046876, + "step": 65600 + }, + { + "epoch": 8.76, + "grad_norm": 0.22363531589508057, + "learning_rate": 4.562173333333333e-05, + "loss": 2.3175604248046877, + "step": 65700 + }, + { + "epoch": 8.773333333333333, + "grad_norm": 0.22062158584594727, + "learning_rate": 4.561506666666667e-05, + "loss": 2.3156175231933593, + "step": 65800 + }, + { + "epoch": 8.786666666666667, + "grad_norm": 0.2074691206216812, + "learning_rate": 4.56084e-05, + "loss": 2.317613372802734, + "step": 65900 + }, + { + "epoch": 8.8, + "grad_norm": 0.21585817635059357, + "learning_rate": 4.5601733333333334e-05, + "loss": 2.317025909423828, + "step": 66000 + }, + { + "epoch": 8.813333333333333, + "grad_norm": 0.24289225041866302, + "learning_rate": 4.5595066666666666e-05, + "loss": 2.3176622009277343, + "step": 66100 + }, + { + "epoch": 8.826666666666666, + "grad_norm": 0.22260883450508118, + "learning_rate": 4.5588466666666666e-05, + "loss": 2.3193907165527343, + "step": 66200 + }, + { + "epoch": 8.84, + "grad_norm": 0.20685255527496338, + "learning_rate": 4.5581800000000005e-05, + "loss": 2.3187965393066405, + "step": 66300 + }, + { + "epoch": 8.853333333333333, + "grad_norm": 0.2502782940864563, + "learning_rate": 4.557513333333334e-05, + "loss": 2.3181417846679686, + "step": 66400 + }, + { + "epoch": 8.866666666666667, + "grad_norm": 0.20513685047626495, + "learning_rate": 4.556846666666667e-05, + "loss": 2.318340606689453, + "step": 66500 + }, + { + "epoch": 8.88, + "grad_norm": 0.2085087150335312, + "learning_rate": 4.55618e-05, + "loss": 2.320625762939453, + "step": 66600 + }, + { + "epoch": 8.893333333333333, + "grad_norm": 0.2202482372522354, + "learning_rate": 4.5555133333333334e-05, + "loss": 2.317662811279297, + "step": 66700 + }, + { + "epoch": 8.906666666666666, + "grad_norm": 0.20364412665367126, + "learning_rate": 4.5548466666666666e-05, + "loss": 2.320509796142578, + "step": 66800 + }, + { + "epoch": 8.92, + "grad_norm": 0.2078937292098999, + "learning_rate": 4.55418e-05, + "loss": 2.3180162048339845, + "step": 66900 + }, + { + "epoch": 8.933333333333334, + "grad_norm": 0.21178776025772095, + "learning_rate": 4.553513333333334e-05, + "loss": 2.318477783203125, + "step": 67000 + }, + { + "epoch": 8.946666666666667, + "grad_norm": 0.2264500856399536, + "learning_rate": 4.552846666666667e-05, + "loss": 2.321943511962891, + "step": 67100 + }, + { + "epoch": 8.96, + "grad_norm": 0.2113855928182602, + "learning_rate": 4.55218e-05, + "loss": 2.318071746826172, + "step": 67200 + }, + { + "epoch": 8.973333333333333, + "grad_norm": 0.19603019952774048, + "learning_rate": 4.5515133333333334e-05, + "loss": 2.3197503662109376, + "step": 67300 + }, + { + "epoch": 8.986666666666666, + "grad_norm": 0.2236277014017105, + "learning_rate": 4.550846666666667e-05, + "loss": 2.320359344482422, + "step": 67400 + }, + { + "epoch": 9.0, + "grad_norm": 0.21920901536941528, + "learning_rate": 4.55018e-05, + "loss": 2.318968963623047, + "step": 67500 + }, + { + "epoch": 9.013333333333334, + "grad_norm": 0.23331010341644287, + "learning_rate": 4.549513333333333e-05, + "loss": 2.2941917419433593, + "step": 67600 + }, + { + "epoch": 9.026666666666667, + "grad_norm": 0.21596217155456543, + "learning_rate": 4.548846666666667e-05, + "loss": 2.290107421875, + "step": 67700 + }, + { + "epoch": 9.04, + "grad_norm": 0.22891509532928467, + "learning_rate": 4.54818e-05, + "loss": 2.2925718688964842, + "step": 67800 + }, + { + "epoch": 9.053333333333333, + "grad_norm": 0.21967433393001556, + "learning_rate": 4.5475133333333334e-05, + "loss": 2.2921377563476564, + "step": 67900 + }, + { + "epoch": 9.066666666666666, + "grad_norm": 0.25205832719802856, + "learning_rate": 4.5468466666666673e-05, + "loss": 2.293820037841797, + "step": 68000 + }, + { + "epoch": 9.08, + "grad_norm": 0.2291940152645111, + "learning_rate": 4.5461800000000006e-05, + "loss": 2.293941650390625, + "step": 68100 + }, + { + "epoch": 9.093333333333334, + "grad_norm": 0.23932799696922302, + "learning_rate": 4.5455200000000005e-05, + "loss": 2.2932688903808596, + "step": 68200 + }, + { + "epoch": 9.106666666666667, + "grad_norm": 0.22407028079032898, + "learning_rate": 4.544853333333334e-05, + "loss": 2.296217193603516, + "step": 68300 + }, + { + "epoch": 9.12, + "grad_norm": 0.2332010418176651, + "learning_rate": 4.544186666666667e-05, + "loss": 2.296667022705078, + "step": 68400 + }, + { + "epoch": 9.133333333333333, + "grad_norm": 0.22865130007266998, + "learning_rate": 4.54352e-05, + "loss": 2.2938783264160154, + "step": 68500 + }, + { + "epoch": 9.146666666666667, + "grad_norm": 0.23731687664985657, + "learning_rate": 4.5428533333333334e-05, + "loss": 2.296278381347656, + "step": 68600 + }, + { + "epoch": 9.16, + "grad_norm": 0.21626006066799164, + "learning_rate": 4.5421866666666666e-05, + "loss": 2.2968585205078127, + "step": 68700 + }, + { + "epoch": 9.173333333333334, + "grad_norm": 0.23821845650672913, + "learning_rate": 4.5415200000000005e-05, + "loss": 2.2977059936523436, + "step": 68800 + }, + { + "epoch": 9.186666666666667, + "grad_norm": 0.2369178831577301, + "learning_rate": 4.540853333333334e-05, + "loss": 2.296495208740234, + "step": 68900 + }, + { + "epoch": 9.2, + "grad_norm": 0.22190576791763306, + "learning_rate": 4.540186666666667e-05, + "loss": 2.297707366943359, + "step": 69000 + }, + { + "epoch": 9.213333333333333, + "grad_norm": 0.22970540821552277, + "learning_rate": 4.53952e-05, + "loss": 2.2968077087402343, + "step": 69100 + }, + { + "epoch": 9.226666666666667, + "grad_norm": 0.23141416907310486, + "learning_rate": 4.5388533333333334e-05, + "loss": 2.297506103515625, + "step": 69200 + }, + { + "epoch": 9.24, + "grad_norm": 0.22547562420368195, + "learning_rate": 4.5381866666666667e-05, + "loss": 2.2980027770996094, + "step": 69300 + }, + { + "epoch": 9.253333333333334, + "grad_norm": 0.24733230471611023, + "learning_rate": 4.53752e-05, + "loss": 2.29823486328125, + "step": 69400 + }, + { + "epoch": 9.266666666666667, + "grad_norm": 0.23954610526561737, + "learning_rate": 4.536853333333334e-05, + "loss": 2.300198974609375, + "step": 69500 + }, + { + "epoch": 9.28, + "grad_norm": 0.253302663564682, + "learning_rate": 4.536186666666667e-05, + "loss": 2.2968313598632815, + "step": 69600 + }, + { + "epoch": 9.293333333333333, + "grad_norm": 0.2572624385356903, + "learning_rate": 4.53552e-05, + "loss": 2.3007162475585936, + "step": 69700 + }, + { + "epoch": 9.306666666666667, + "grad_norm": 0.2580345869064331, + "learning_rate": 4.5348533333333335e-05, + "loss": 2.2998121643066405, + "step": 69800 + }, + { + "epoch": 9.32, + "grad_norm": 0.23370671272277832, + "learning_rate": 4.5341866666666674e-05, + "loss": 2.302071075439453, + "step": 69900 + }, + { + "epoch": 9.333333333333334, + "grad_norm": 0.2354464828968048, + "learning_rate": 4.53352e-05, + "loss": 2.3010763549804687, + "step": 70000 + }, + { + "epoch": 9.346666666666668, + "grad_norm": 0.22726485133171082, + "learning_rate": 4.532853333333333e-05, + "loss": 2.302950897216797, + "step": 70100 + }, + { + "epoch": 9.36, + "grad_norm": 0.24437928199768066, + "learning_rate": 4.532193333333333e-05, + "loss": 2.301619110107422, + "step": 70200 + }, + { + "epoch": 9.373333333333333, + "grad_norm": 0.22362923622131348, + "learning_rate": 4.531526666666667e-05, + "loss": 2.301064147949219, + "step": 70300 + }, + { + "epoch": 9.386666666666667, + "grad_norm": 0.22675906121730804, + "learning_rate": 4.53086e-05, + "loss": 2.300765380859375, + "step": 70400 + }, + { + "epoch": 9.4, + "grad_norm": 0.23232199251651764, + "learning_rate": 4.5301933333333334e-05, + "loss": 2.2998236083984374, + "step": 70500 + }, + { + "epoch": 9.413333333333334, + "grad_norm": 0.2357228696346283, + "learning_rate": 4.5295266666666666e-05, + "loss": 2.300859375, + "step": 70600 + }, + { + "epoch": 9.426666666666666, + "grad_norm": 0.22707265615463257, + "learning_rate": 4.5288600000000005e-05, + "loss": 2.30189697265625, + "step": 70700 + }, + { + "epoch": 9.44, + "grad_norm": 0.22745104134082794, + "learning_rate": 4.528193333333334e-05, + "loss": 2.3032139587402343, + "step": 70800 + }, + { + "epoch": 9.453333333333333, + "grad_norm": 0.2270699143409729, + "learning_rate": 4.527526666666667e-05, + "loss": 2.3027561950683593, + "step": 70900 + }, + { + "epoch": 9.466666666666667, + "grad_norm": 0.22705000638961792, + "learning_rate": 4.52686e-05, + "loss": 2.30169677734375, + "step": 71000 + }, + { + "epoch": 9.48, + "grad_norm": 0.24112239480018616, + "learning_rate": 4.5261933333333335e-05, + "loss": 2.3032855224609374, + "step": 71100 + }, + { + "epoch": 9.493333333333334, + "grad_norm": 0.22396592795848846, + "learning_rate": 4.525526666666667e-05, + "loss": 2.3002029418945313, + "step": 71200 + }, + { + "epoch": 9.506666666666666, + "grad_norm": 0.21745307743549347, + "learning_rate": 4.52486e-05, + "loss": 2.3029249572753905, + "step": 71300 + }, + { + "epoch": 9.52, + "grad_norm": 0.23369887471199036, + "learning_rate": 4.524193333333334e-05, + "loss": 2.304996337890625, + "step": 71400 + }, + { + "epoch": 9.533333333333333, + "grad_norm": 0.23318316042423248, + "learning_rate": 4.523526666666667e-05, + "loss": 2.3056065368652345, + "step": 71500 + }, + { + "epoch": 9.546666666666667, + "grad_norm": 0.2250574827194214, + "learning_rate": 4.52286e-05, + "loss": 2.3032150268554688, + "step": 71600 + }, + { + "epoch": 9.56, + "grad_norm": 0.2183639109134674, + "learning_rate": 4.5221933333333335e-05, + "loss": 2.305579833984375, + "step": 71700 + }, + { + "epoch": 9.573333333333334, + "grad_norm": 0.2082279771566391, + "learning_rate": 4.521526666666667e-05, + "loss": 2.3057624816894533, + "step": 71800 + }, + { + "epoch": 9.586666666666666, + "grad_norm": 0.23728124797344208, + "learning_rate": 4.52086e-05, + "loss": 2.3048939514160156, + "step": 71900 + }, + { + "epoch": 9.6, + "grad_norm": 0.23262864351272583, + "learning_rate": 4.520193333333333e-05, + "loss": 2.303785400390625, + "step": 72000 + }, + { + "epoch": 9.613333333333333, + "grad_norm": 0.22944900393486023, + "learning_rate": 4.519526666666667e-05, + "loss": 2.3056602478027344, + "step": 72100 + }, + { + "epoch": 9.626666666666667, + "grad_norm": 0.2632165551185608, + "learning_rate": 4.518866666666667e-05, + "loss": 2.3039901733398436, + "step": 72200 + }, + { + "epoch": 9.64, + "grad_norm": 0.23915515840053558, + "learning_rate": 4.5182e-05, + "loss": 2.3091696166992186, + "step": 72300 + }, + { + "epoch": 9.653333333333332, + "grad_norm": 0.24298280477523804, + "learning_rate": 4.5175333333333334e-05, + "loss": 2.3061654663085935, + "step": 72400 + }, + { + "epoch": 9.666666666666666, + "grad_norm": 0.23660294711589813, + "learning_rate": 4.5168666666666673e-05, + "loss": 2.3104348754882813, + "step": 72500 + }, + { + "epoch": 9.68, + "grad_norm": 0.2370450496673584, + "learning_rate": 4.5162000000000006e-05, + "loss": 2.3079653930664064, + "step": 72600 + }, + { + "epoch": 9.693333333333333, + "grad_norm": 0.2323356717824936, + "learning_rate": 4.515533333333333e-05, + "loss": 2.3062504577636718, + "step": 72700 + }, + { + "epoch": 9.706666666666667, + "grad_norm": 0.2260921448469162, + "learning_rate": 4.514866666666667e-05, + "loss": 2.3086776733398438, + "step": 72800 + }, + { + "epoch": 9.72, + "grad_norm": 0.23469285666942596, + "learning_rate": 4.5142e-05, + "loss": 2.306175079345703, + "step": 72900 + }, + { + "epoch": 9.733333333333333, + "grad_norm": 0.2398371398448944, + "learning_rate": 4.5135333333333335e-05, + "loss": 2.3068536376953124, + "step": 73000 + }, + { + "epoch": 9.746666666666666, + "grad_norm": 0.2239067405462265, + "learning_rate": 4.512866666666667e-05, + "loss": 2.30914306640625, + "step": 73100 + }, + { + "epoch": 9.76, + "grad_norm": 0.22555306553840637, + "learning_rate": 4.5122000000000006e-05, + "loss": 2.3087586975097656, + "step": 73200 + }, + { + "epoch": 9.773333333333333, + "grad_norm": 0.22917480766773224, + "learning_rate": 4.511533333333334e-05, + "loss": 2.310619201660156, + "step": 73300 + }, + { + "epoch": 9.786666666666667, + "grad_norm": 0.23775242269039154, + "learning_rate": 4.510866666666667e-05, + "loss": 2.3091854858398437, + "step": 73400 + }, + { + "epoch": 9.8, + "grad_norm": 0.24801835417747498, + "learning_rate": 4.5102e-05, + "loss": 2.3082546997070312, + "step": 73500 + }, + { + "epoch": 9.813333333333333, + "grad_norm": 0.23106469213962555, + "learning_rate": 4.5095333333333335e-05, + "loss": 2.3087344360351563, + "step": 73600 + }, + { + "epoch": 9.826666666666666, + "grad_norm": 0.22504796087741852, + "learning_rate": 4.508866666666667e-05, + "loss": 2.308363494873047, + "step": 73700 + }, + { + "epoch": 9.84, + "grad_norm": 0.23639419674873352, + "learning_rate": 4.5082e-05, + "loss": 2.30758544921875, + "step": 73800 + }, + { + "epoch": 9.853333333333333, + "grad_norm": 0.24086354672908783, + "learning_rate": 4.507533333333334e-05, + "loss": 2.3087428283691405, + "step": 73900 + }, + { + "epoch": 9.866666666666667, + "grad_norm": 0.2180139571428299, + "learning_rate": 4.506866666666667e-05, + "loss": 2.308798828125, + "step": 74000 + }, + { + "epoch": 9.88, + "grad_norm": 0.22501300275325775, + "learning_rate": 4.5062e-05, + "loss": 2.3099415588378904, + "step": 74100 + }, + { + "epoch": 9.893333333333333, + "grad_norm": 0.23066537082195282, + "learning_rate": 4.50554e-05, + "loss": 2.307503662109375, + "step": 74200 + }, + { + "epoch": 9.906666666666666, + "grad_norm": 0.22434760630130768, + "learning_rate": 4.5048733333333335e-05, + "loss": 2.3106227111816406, + "step": 74300 + }, + { + "epoch": 9.92, + "grad_norm": 0.25195831060409546, + "learning_rate": 4.5042066666666674e-05, + "loss": 2.3048329162597656, + "step": 74400 + }, + { + "epoch": 9.933333333333334, + "grad_norm": 0.2128189355134964, + "learning_rate": 4.50354e-05, + "loss": 2.3085731506347655, + "step": 74500 + }, + { + "epoch": 9.946666666666667, + "grad_norm": 0.2209046483039856, + "learning_rate": 4.502873333333333e-05, + "loss": 2.3103427124023437, + "step": 74600 + }, + { + "epoch": 9.96, + "grad_norm": 0.4690224528312683, + "learning_rate": 4.502206666666667e-05, + "loss": 2.312327423095703, + "step": 74700 + }, + { + "epoch": 9.973333333333333, + "grad_norm": 0.21926158666610718, + "learning_rate": 4.50154e-05, + "loss": 2.310508575439453, + "step": 74800 + }, + { + "epoch": 9.986666666666666, + "grad_norm": 0.2374141365289688, + "learning_rate": 4.5008733333333335e-05, + "loss": 2.31052978515625, + "step": 74900 + }, + { + "epoch": 10.0, + "grad_norm": 0.22070780396461487, + "learning_rate": 4.500206666666667e-05, + "loss": 2.3100782775878907, + "step": 75000 + }, + { + "epoch": 10.013333333333334, + "grad_norm": 0.23315180838108063, + "learning_rate": 4.4995400000000006e-05, + "loss": 2.2820582580566406, + "step": 75100 + }, + { + "epoch": 10.026666666666667, + "grad_norm": 0.2489648312330246, + "learning_rate": 4.498873333333333e-05, + "loss": 2.2800167846679686, + "step": 75200 + }, + { + "epoch": 10.04, + "grad_norm": 0.2430664449930191, + "learning_rate": 4.4982066666666664e-05, + "loss": 2.2820753479003906, + "step": 75300 + }, + { + "epoch": 10.053333333333333, + "grad_norm": 0.24344773590564728, + "learning_rate": 4.49754e-05, + "loss": 2.2796278381347657, + "step": 75400 + }, + { + "epoch": 10.066666666666666, + "grad_norm": 0.24810276925563812, + "learning_rate": 4.4968733333333335e-05, + "loss": 2.279807586669922, + "step": 75500 + }, + { + "epoch": 10.08, + "grad_norm": 0.24132785201072693, + "learning_rate": 4.496206666666667e-05, + "loss": 2.2805412292480467, + "step": 75600 + }, + { + "epoch": 10.093333333333334, + "grad_norm": 0.24037568271160126, + "learning_rate": 4.49554e-05, + "loss": 2.2824276733398436, + "step": 75700 + }, + { + "epoch": 10.106666666666667, + "grad_norm": 0.23821789026260376, + "learning_rate": 4.494873333333334e-05, + "loss": 2.284660186767578, + "step": 75800 + }, + { + "epoch": 10.12, + "grad_norm": 0.2437891960144043, + "learning_rate": 4.494206666666667e-05, + "loss": 2.2823611450195314, + "step": 75900 + }, + { + "epoch": 10.133333333333333, + "grad_norm": 0.23768781125545502, + "learning_rate": 4.49354e-05, + "loss": 2.2855105590820313, + "step": 76000 + }, + { + "epoch": 10.146666666666667, + "grad_norm": 0.24591408669948578, + "learning_rate": 4.4928733333333336e-05, + "loss": 2.2840614318847656, + "step": 76100 + }, + { + "epoch": 10.16, + "grad_norm": 0.2379213571548462, + "learning_rate": 4.4922133333333335e-05, + "loss": 2.2879397583007814, + "step": 76200 + }, + { + "epoch": 10.173333333333334, + "grad_norm": 0.2505422532558441, + "learning_rate": 4.491546666666667e-05, + "loss": 2.2845729064941405, + "step": 76300 + }, + { + "epoch": 10.186666666666667, + "grad_norm": 0.24018126726150513, + "learning_rate": 4.49088e-05, + "loss": 2.287251281738281, + "step": 76400 + }, + { + "epoch": 10.2, + "grad_norm": 0.26669764518737793, + "learning_rate": 4.490213333333333e-05, + "loss": 2.284190826416016, + "step": 76500 + }, + { + "epoch": 10.213333333333333, + "grad_norm": 0.24248762428760529, + "learning_rate": 4.489546666666667e-05, + "loss": 2.287902374267578, + "step": 76600 + }, + { + "epoch": 10.226666666666667, + "grad_norm": 0.23663915693759918, + "learning_rate": 4.48888e-05, + "loss": 2.286513214111328, + "step": 76700 + }, + { + "epoch": 10.24, + "grad_norm": 0.25117191672325134, + "learning_rate": 4.4882133333333335e-05, + "loss": 2.289020538330078, + "step": 76800 + }, + { + "epoch": 10.253333333333334, + "grad_norm": 0.23214347660541534, + "learning_rate": 4.4875466666666674e-05, + "loss": 2.2866584777832033, + "step": 76900 + }, + { + "epoch": 10.266666666666667, + "grad_norm": 0.2386721670627594, + "learning_rate": 4.48688e-05, + "loss": 2.289106597900391, + "step": 77000 + }, + { + "epoch": 10.28, + "grad_norm": 0.24421949684619904, + "learning_rate": 4.486213333333333e-05, + "loss": 2.28677490234375, + "step": 77100 + }, + { + "epoch": 10.293333333333333, + "grad_norm": 0.2612295150756836, + "learning_rate": 4.485546666666667e-05, + "loss": 2.289345703125, + "step": 77200 + }, + { + "epoch": 10.306666666666667, + "grad_norm": 0.22263416647911072, + "learning_rate": 4.48488e-05, + "loss": 2.2870338439941404, + "step": 77300 + }, + { + "epoch": 10.32, + "grad_norm": 0.2574688494205475, + "learning_rate": 4.4842133333333336e-05, + "loss": 2.2890251159667967, + "step": 77400 + }, + { + "epoch": 10.333333333333334, + "grad_norm": 0.25357821583747864, + "learning_rate": 4.483546666666667e-05, + "loss": 2.2873045349121095, + "step": 77500 + }, + { + "epoch": 10.346666666666668, + "grad_norm": 0.2804579734802246, + "learning_rate": 4.482880000000001e-05, + "loss": 2.2914703369140623, + "step": 77600 + }, + { + "epoch": 10.36, + "grad_norm": 0.24506065249443054, + "learning_rate": 4.482213333333334e-05, + "loss": 2.2905569458007813, + "step": 77700 + }, + { + "epoch": 10.373333333333333, + "grad_norm": 0.25503185391426086, + "learning_rate": 4.4815466666666665e-05, + "loss": 2.290155334472656, + "step": 77800 + }, + { + "epoch": 10.386666666666667, + "grad_norm": 0.2579893171787262, + "learning_rate": 4.4808800000000004e-05, + "loss": 2.291581115722656, + "step": 77900 + }, + { + "epoch": 10.4, + "grad_norm": 0.22538907825946808, + "learning_rate": 4.4802133333333336e-05, + "loss": 2.291281280517578, + "step": 78000 + }, + { + "epoch": 10.413333333333334, + "grad_norm": 0.24924156069755554, + "learning_rate": 4.479546666666667e-05, + "loss": 2.289500885009766, + "step": 78100 + }, + { + "epoch": 10.426666666666666, + "grad_norm": 0.2366298884153366, + "learning_rate": 4.478886666666667e-05, + "loss": 2.290386047363281, + "step": 78200 + }, + { + "epoch": 10.44, + "grad_norm": 0.22278301417827606, + "learning_rate": 4.47822e-05, + "loss": 2.2905796813964843, + "step": 78300 + }, + { + "epoch": 10.453333333333333, + "grad_norm": 0.25287824869155884, + "learning_rate": 4.477553333333334e-05, + "loss": 2.290713653564453, + "step": 78400 + }, + { + "epoch": 10.466666666666667, + "grad_norm": 0.24435845017433167, + "learning_rate": 4.476886666666667e-05, + "loss": 2.2916438293457033, + "step": 78500 + }, + { + "epoch": 10.48, + "grad_norm": 0.24885345995426178, + "learning_rate": 4.47622e-05, + "loss": 2.2903347778320313, + "step": 78600 + }, + { + "epoch": 10.493333333333334, + "grad_norm": 0.2466493546962738, + "learning_rate": 4.4755533333333335e-05, + "loss": 2.292062225341797, + "step": 78700 + }, + { + "epoch": 10.506666666666666, + "grad_norm": 0.25343602895736694, + "learning_rate": 4.474886666666667e-05, + "loss": 2.293315124511719, + "step": 78800 + }, + { + "epoch": 10.52, + "grad_norm": 0.26084843277931213, + "learning_rate": 4.47422e-05, + "loss": 2.290987854003906, + "step": 78900 + }, + { + "epoch": 10.533333333333333, + "grad_norm": 0.22565628588199615, + "learning_rate": 4.473553333333333e-05, + "loss": 2.291141357421875, + "step": 79000 + }, + { + "epoch": 10.546666666666667, + "grad_norm": 0.2424556016921997, + "learning_rate": 4.472886666666667e-05, + "loss": 2.2940351867675783, + "step": 79100 + }, + { + "epoch": 10.56, + "grad_norm": 0.23173433542251587, + "learning_rate": 4.4722200000000004e-05, + "loss": 2.2938632202148437, + "step": 79200 + }, + { + "epoch": 10.573333333333334, + "grad_norm": 0.24767623841762543, + "learning_rate": 4.4715533333333336e-05, + "loss": 2.294097595214844, + "step": 79300 + }, + { + "epoch": 10.586666666666666, + "grad_norm": 0.2494058907032013, + "learning_rate": 4.470886666666667e-05, + "loss": 2.292882843017578, + "step": 79400 + }, + { + "epoch": 10.6, + "grad_norm": 0.2309560924768448, + "learning_rate": 4.47022e-05, + "loss": 2.2917105102539064, + "step": 79500 + }, + { + "epoch": 10.613333333333333, + "grad_norm": 0.2502034306526184, + "learning_rate": 4.469553333333333e-05, + "loss": 2.2940020751953125, + "step": 79600 + }, + { + "epoch": 10.626666666666667, + "grad_norm": 0.2417595088481903, + "learning_rate": 4.4688866666666665e-05, + "loss": 2.2959962463378907, + "step": 79700 + }, + { + "epoch": 10.64, + "grad_norm": 0.2390497922897339, + "learning_rate": 4.4682200000000004e-05, + "loss": 2.2932833862304687, + "step": 79800 + }, + { + "epoch": 10.653333333333332, + "grad_norm": 0.25319451093673706, + "learning_rate": 4.4675533333333336e-05, + "loss": 2.2950804138183596, + "step": 79900 + }, + { + "epoch": 10.666666666666666, + "grad_norm": 0.23525965213775635, + "learning_rate": 4.466886666666667e-05, + "loss": 2.2939056396484374, + "step": 80000 + }, + { + "epoch": 10.68, + "grad_norm": 0.24645350873470306, + "learning_rate": 4.46622e-05, + "loss": 2.2950694274902346, + "step": 80100 + }, + { + "epoch": 10.693333333333333, + "grad_norm": 0.24350802600383759, + "learning_rate": 4.46556e-05, + "loss": 2.295481414794922, + "step": 80200 + }, + { + "epoch": 10.706666666666667, + "grad_norm": 0.24546648561954498, + "learning_rate": 4.464893333333334e-05, + "loss": 2.2965150451660157, + "step": 80300 + }, + { + "epoch": 10.72, + "grad_norm": 0.24012289941310883, + "learning_rate": 4.464226666666667e-05, + "loss": 2.29464111328125, + "step": 80400 + }, + { + "epoch": 10.733333333333333, + "grad_norm": 0.2439471334218979, + "learning_rate": 4.46356e-05, + "loss": 2.2982655334472657, + "step": 80500 + }, + { + "epoch": 10.746666666666666, + "grad_norm": 0.24235573410987854, + "learning_rate": 4.4628933333333336e-05, + "loss": 2.2973838806152345, + "step": 80600 + }, + { + "epoch": 10.76, + "grad_norm": 0.2552349865436554, + "learning_rate": 4.462226666666667e-05, + "loss": 2.2967495727539062, + "step": 80700 + }, + { + "epoch": 10.773333333333333, + "grad_norm": 0.2687914967536926, + "learning_rate": 4.46156e-05, + "loss": 2.2971734619140625, + "step": 80800 + }, + { + "epoch": 10.786666666666667, + "grad_norm": 0.22800393402576447, + "learning_rate": 4.460893333333334e-05, + "loss": 2.295909881591797, + "step": 80900 + }, + { + "epoch": 10.8, + "grad_norm": 0.25448915362358093, + "learning_rate": 4.460226666666667e-05, + "loss": 2.299366455078125, + "step": 81000 + }, + { + "epoch": 10.813333333333333, + "grad_norm": 0.24387459456920624, + "learning_rate": 4.4595600000000004e-05, + "loss": 2.297369384765625, + "step": 81100 + }, + { + "epoch": 10.826666666666666, + "grad_norm": 0.24151787161827087, + "learning_rate": 4.4588933333333336e-05, + "loss": 2.299127197265625, + "step": 81200 + }, + { + "epoch": 10.84, + "grad_norm": 0.2260817289352417, + "learning_rate": 4.458226666666667e-05, + "loss": 2.2975596618652343, + "step": 81300 + }, + { + "epoch": 10.853333333333333, + "grad_norm": 0.24239422380924225, + "learning_rate": 4.45756e-05, + "loss": 2.2985691833496094, + "step": 81400 + }, + { + "epoch": 10.866666666666667, + "grad_norm": 0.21752089262008667, + "learning_rate": 4.456893333333333e-05, + "loss": 2.300589294433594, + "step": 81500 + }, + { + "epoch": 10.88, + "grad_norm": 0.23936143517494202, + "learning_rate": 4.456226666666667e-05, + "loss": 2.2985806274414062, + "step": 81600 + }, + { + "epoch": 10.893333333333333, + "grad_norm": 0.25165167450904846, + "learning_rate": 4.4555600000000004e-05, + "loss": 2.3023681640625, + "step": 81700 + }, + { + "epoch": 10.906666666666666, + "grad_norm": 0.24560686945915222, + "learning_rate": 4.4548933333333336e-05, + "loss": 2.296816101074219, + "step": 81800 + }, + { + "epoch": 10.92, + "grad_norm": 0.235377699136734, + "learning_rate": 4.454226666666667e-05, + "loss": 2.3003538513183592, + "step": 81900 + }, + { + "epoch": 10.933333333333334, + "grad_norm": 0.21916425228118896, + "learning_rate": 4.45356e-05, + "loss": 2.302768096923828, + "step": 82000 + }, + { + "epoch": 10.946666666666667, + "grad_norm": 0.23057326674461365, + "learning_rate": 4.452893333333333e-05, + "loss": 2.299179992675781, + "step": 82100 + }, + { + "epoch": 10.96, + "grad_norm": 0.23899604380130768, + "learning_rate": 4.452233333333334e-05, + "loss": 2.3004336547851563, + "step": 82200 + }, + { + "epoch": 10.973333333333333, + "grad_norm": 0.23253585398197174, + "learning_rate": 4.4515666666666665e-05, + "loss": 2.3014898681640625, + "step": 82300 + }, + { + "epoch": 10.986666666666666, + "grad_norm": 0.24487797915935516, + "learning_rate": 4.4509000000000004e-05, + "loss": 2.3026199340820312, + "step": 82400 + }, + { + "epoch": 11.0, + "grad_norm": 0.2387479692697525, + "learning_rate": 4.4502333333333336e-05, + "loss": 2.2974674987792967, + "step": 82500 + }, + { + "epoch": 11.013333333333334, + "grad_norm": 0.2720658481121063, + "learning_rate": 4.4495733333333335e-05, + "loss": 2.2671746826171875, + "step": 82600 + }, + { + "epoch": 11.026666666666667, + "grad_norm": 0.263578861951828, + "learning_rate": 4.448906666666667e-05, + "loss": 2.2688304138183595, + "step": 82700 + }, + { + "epoch": 11.04, + "grad_norm": 0.2674785852432251, + "learning_rate": 4.44824e-05, + "loss": 2.270413055419922, + "step": 82800 + }, + { + "epoch": 11.053333333333333, + "grad_norm": 0.28208568692207336, + "learning_rate": 4.447573333333334e-05, + "loss": 2.267439422607422, + "step": 82900 + }, + { + "epoch": 11.066666666666666, + "grad_norm": 0.2503279447555542, + "learning_rate": 4.446906666666667e-05, + "loss": 2.27013427734375, + "step": 83000 + }, + { + "epoch": 11.08, + "grad_norm": 0.2667846083641052, + "learning_rate": 4.44624e-05, + "loss": 2.270685577392578, + "step": 83100 + }, + { + "epoch": 11.093333333333334, + "grad_norm": 0.2649480700492859, + "learning_rate": 4.4455733333333335e-05, + "loss": 2.2691964721679687, + "step": 83200 + }, + { + "epoch": 11.106666666666667, + "grad_norm": 0.27101367712020874, + "learning_rate": 4.444906666666667e-05, + "loss": 2.272455291748047, + "step": 83300 + }, + { + "epoch": 11.12, + "grad_norm": 0.24341875314712524, + "learning_rate": 4.44424e-05, + "loss": 2.2689295959472657, + "step": 83400 + }, + { + "epoch": 11.133333333333333, + "grad_norm": 0.25448212027549744, + "learning_rate": 4.443573333333333e-05, + "loss": 2.2724458312988283, + "step": 83500 + }, + { + "epoch": 11.146666666666667, + "grad_norm": 0.25443369150161743, + "learning_rate": 4.442906666666667e-05, + "loss": 2.271412811279297, + "step": 83600 + }, + { + "epoch": 11.16, + "grad_norm": 0.26732975244522095, + "learning_rate": 4.4422400000000003e-05, + "loss": 2.271360321044922, + "step": 83700 + }, + { + "epoch": 11.173333333333334, + "grad_norm": 0.26395460963249207, + "learning_rate": 4.4415733333333336e-05, + "loss": 2.26961669921875, + "step": 83800 + }, + { + "epoch": 11.186666666666667, + "grad_norm": 0.24745440483093262, + "learning_rate": 4.440906666666667e-05, + "loss": 2.2744174194335938, + "step": 83900 + }, + { + "epoch": 11.2, + "grad_norm": 0.26402172446250916, + "learning_rate": 4.44024e-05, + "loss": 2.2720037841796876, + "step": 84000 + }, + { + "epoch": 11.213333333333333, + "grad_norm": 0.23789356648921967, + "learning_rate": 4.439573333333333e-05, + "loss": 2.274175109863281, + "step": 84100 + }, + { + "epoch": 11.226666666666667, + "grad_norm": 0.24144236743450165, + "learning_rate": 4.4389066666666665e-05, + "loss": 2.2732891845703125, + "step": 84200 + }, + { + "epoch": 11.24, + "grad_norm": 0.2500831186771393, + "learning_rate": 4.4382400000000004e-05, + "loss": 2.2730227661132814, + "step": 84300 + }, + { + "epoch": 11.253333333333334, + "grad_norm": 0.25501829385757446, + "learning_rate": 4.4375733333333336e-05, + "loss": 2.274988708496094, + "step": 84400 + }, + { + "epoch": 11.266666666666667, + "grad_norm": 0.22763259708881378, + "learning_rate": 4.436906666666667e-05, + "loss": 2.272532196044922, + "step": 84500 + }, + { + "epoch": 11.28, + "grad_norm": 0.25562381744384766, + "learning_rate": 4.43624e-05, + "loss": 2.2755363464355467, + "step": 84600 + }, + { + "epoch": 11.293333333333333, + "grad_norm": 0.25353795289993286, + "learning_rate": 4.435573333333334e-05, + "loss": 2.2750617980957033, + "step": 84700 + }, + { + "epoch": 11.306666666666667, + "grad_norm": 0.26931309700012207, + "learning_rate": 4.4349066666666665e-05, + "loss": 2.2751278686523437, + "step": 84800 + }, + { + "epoch": 11.32, + "grad_norm": 0.2389533370733261, + "learning_rate": 4.43424e-05, + "loss": 2.278493194580078, + "step": 84900 + }, + { + "epoch": 11.333333333333334, + "grad_norm": 0.2465227097272873, + "learning_rate": 4.4335733333333337e-05, + "loss": 2.2789736938476564, + "step": 85000 + }, + { + "epoch": 11.346666666666668, + "grad_norm": 0.25453120470046997, + "learning_rate": 4.432906666666667e-05, + "loss": 2.2776898193359374, + "step": 85100 + }, + { + "epoch": 11.36, + "grad_norm": 0.2660987377166748, + "learning_rate": 4.43224e-05, + "loss": 2.2778756713867185, + "step": 85200 + }, + { + "epoch": 11.373333333333333, + "grad_norm": 0.25308796763420105, + "learning_rate": 4.431573333333334e-05, + "loss": 2.279368438720703, + "step": 85300 + }, + { + "epoch": 11.386666666666667, + "grad_norm": 0.25836026668548584, + "learning_rate": 4.430906666666667e-05, + "loss": 2.2798582458496095, + "step": 85400 + }, + { + "epoch": 11.4, + "grad_norm": 0.25316664576530457, + "learning_rate": 4.43024e-05, + "loss": 2.279602813720703, + "step": 85500 + }, + { + "epoch": 11.413333333333334, + "grad_norm": 0.2550676167011261, + "learning_rate": 4.429573333333334e-05, + "loss": 2.2755258178710935, + "step": 85600 + }, + { + "epoch": 11.426666666666666, + "grad_norm": 0.23546501994132996, + "learning_rate": 4.428906666666667e-05, + "loss": 2.2800631713867188, + "step": 85700 + }, + { + "epoch": 11.44, + "grad_norm": 0.264654278755188, + "learning_rate": 4.42824e-05, + "loss": 2.2767239379882813, + "step": 85800 + }, + { + "epoch": 11.453333333333333, + "grad_norm": 0.24899619817733765, + "learning_rate": 4.4275733333333334e-05, + "loss": 2.2798704528808593, + "step": 85900 + }, + { + "epoch": 11.466666666666667, + "grad_norm": 0.24456363916397095, + "learning_rate": 4.426906666666667e-05, + "loss": 2.2780026245117186, + "step": 86000 + }, + { + "epoch": 11.48, + "grad_norm": 0.25708940625190735, + "learning_rate": 4.4262400000000005e-05, + "loss": 2.2792425537109375, + "step": 86100 + }, + { + "epoch": 11.493333333333334, + "grad_norm": 0.2511962354183197, + "learning_rate": 4.425573333333334e-05, + "loss": 2.282320251464844, + "step": 86200 + }, + { + "epoch": 11.506666666666666, + "grad_norm": 0.24816451966762543, + "learning_rate": 4.424906666666667e-05, + "loss": 2.2792512512207033, + "step": 86300 + }, + { + "epoch": 11.52, + "grad_norm": 0.2514301836490631, + "learning_rate": 4.42424e-05, + "loss": 2.2795748901367188, + "step": 86400 + }, + { + "epoch": 11.533333333333333, + "grad_norm": 0.2495884746313095, + "learning_rate": 4.4235733333333334e-05, + "loss": 2.278619689941406, + "step": 86500 + }, + { + "epoch": 11.546666666666667, + "grad_norm": 0.24815420806407928, + "learning_rate": 4.422913333333333e-05, + "loss": 2.2829832458496093, + "step": 86600 + }, + { + "epoch": 11.56, + "grad_norm": 0.2668995261192322, + "learning_rate": 4.4222466666666665e-05, + "loss": 2.2842198181152344, + "step": 86700 + }, + { + "epoch": 11.573333333333334, + "grad_norm": 0.256393700838089, + "learning_rate": 4.4215800000000004e-05, + "loss": 2.2821044921875, + "step": 86800 + }, + { + "epoch": 11.586666666666666, + "grad_norm": 0.2424868494272232, + "learning_rate": 4.420913333333334e-05, + "loss": 2.2830775451660155, + "step": 86900 + }, + { + "epoch": 11.6, + "grad_norm": 0.27431467175483704, + "learning_rate": 4.420246666666667e-05, + "loss": 2.28398681640625, + "step": 87000 + }, + { + "epoch": 11.613333333333333, + "grad_norm": 0.267622709274292, + "learning_rate": 4.41958e-05, + "loss": 2.283782958984375, + "step": 87100 + }, + { + "epoch": 11.626666666666667, + "grad_norm": 0.2440316379070282, + "learning_rate": 4.418913333333334e-05, + "loss": 2.28414794921875, + "step": 87200 + }, + { + "epoch": 11.64, + "grad_norm": 0.259630411863327, + "learning_rate": 4.4182466666666666e-05, + "loss": 2.2857057189941408, + "step": 87300 + }, + { + "epoch": 11.653333333333332, + "grad_norm": 0.2571096122264862, + "learning_rate": 4.41758e-05, + "loss": 2.2847987365722657, + "step": 87400 + }, + { + "epoch": 11.666666666666666, + "grad_norm": 0.2570159137248993, + "learning_rate": 4.416913333333334e-05, + "loss": 2.2837939453125, + "step": 87500 + }, + { + "epoch": 11.68, + "grad_norm": 0.2649681270122528, + "learning_rate": 4.416246666666667e-05, + "loss": 2.2841265869140623, + "step": 87600 + }, + { + "epoch": 11.693333333333333, + "grad_norm": 0.26410555839538574, + "learning_rate": 4.41558e-05, + "loss": 2.2851953125, + "step": 87700 + }, + { + "epoch": 11.706666666666667, + "grad_norm": 0.2622752785682678, + "learning_rate": 4.4149133333333334e-05, + "loss": 2.2836956787109375, + "step": 87800 + }, + { + "epoch": 11.72, + "grad_norm": 0.2514193058013916, + "learning_rate": 4.414246666666667e-05, + "loss": 2.2842561340332033, + "step": 87900 + }, + { + "epoch": 11.733333333333333, + "grad_norm": 0.2531854212284088, + "learning_rate": 4.41358e-05, + "loss": 2.284789733886719, + "step": 88000 + }, + { + "epoch": 11.746666666666666, + "grad_norm": 0.2689782679080963, + "learning_rate": 4.412913333333333e-05, + "loss": 2.2857350158691405, + "step": 88100 + }, + { + "epoch": 11.76, + "grad_norm": 0.24945223331451416, + "learning_rate": 4.412246666666667e-05, + "loss": 2.2845068359375, + "step": 88200 + }, + { + "epoch": 11.773333333333333, + "grad_norm": 0.26712265610694885, + "learning_rate": 4.41158e-05, + "loss": 2.2854434204101564, + "step": 88300 + }, + { + "epoch": 11.786666666666667, + "grad_norm": 0.256874680519104, + "learning_rate": 4.4109133333333334e-05, + "loss": 2.287956085205078, + "step": 88400 + }, + { + "epoch": 11.8, + "grad_norm": 0.2476692944765091, + "learning_rate": 4.4102533333333333e-05, + "loss": 2.286315460205078, + "step": 88500 + }, + { + "epoch": 11.813333333333333, + "grad_norm": 0.2615588903427124, + "learning_rate": 4.4095866666666666e-05, + "loss": 2.284837188720703, + "step": 88600 + }, + { + "epoch": 11.826666666666666, + "grad_norm": 0.24872687458992004, + "learning_rate": 4.4089200000000005e-05, + "loss": 2.285694580078125, + "step": 88700 + }, + { + "epoch": 11.84, + "grad_norm": 0.2530681788921356, + "learning_rate": 4.408253333333334e-05, + "loss": 2.2873902893066407, + "step": 88800 + }, + { + "epoch": 11.853333333333333, + "grad_norm": 0.24849970638751984, + "learning_rate": 4.407586666666667e-05, + "loss": 2.2867955017089843, + "step": 88900 + }, + { + "epoch": 11.866666666666667, + "grad_norm": 0.24246734380722046, + "learning_rate": 4.40692e-05, + "loss": 2.289001770019531, + "step": 89000 + }, + { + "epoch": 11.88, + "grad_norm": 0.2607153654098511, + "learning_rate": 4.4062533333333334e-05, + "loss": 2.2897518920898436, + "step": 89100 + }, + { + "epoch": 11.893333333333333, + "grad_norm": 0.2614729106426239, + "learning_rate": 4.4055866666666666e-05, + "loss": 2.2860928344726563, + "step": 89200 + }, + { + "epoch": 11.906666666666666, + "grad_norm": 0.2584093511104584, + "learning_rate": 4.40492e-05, + "loss": 2.2889364624023436, + "step": 89300 + }, + { + "epoch": 11.92, + "grad_norm": 0.25701311230659485, + "learning_rate": 4.404253333333334e-05, + "loss": 2.2891424560546874, + "step": 89400 + }, + { + "epoch": 11.933333333333334, + "grad_norm": 0.2440747767686844, + "learning_rate": 4.403586666666667e-05, + "loss": 2.2895196533203124, + "step": 89500 + }, + { + "epoch": 11.946666666666667, + "grad_norm": 0.2381986528635025, + "learning_rate": 4.40292e-05, + "loss": 2.2897454833984376, + "step": 89600 + }, + { + "epoch": 11.96, + "grad_norm": 0.26296404004096985, + "learning_rate": 4.402253333333334e-05, + "loss": 2.2879896545410157, + "step": 89700 + }, + { + "epoch": 11.973333333333333, + "grad_norm": 0.25517991185188293, + "learning_rate": 4.4015866666666666e-05, + "loss": 2.2889413452148437, + "step": 89800 + }, + { + "epoch": 11.986666666666666, + "grad_norm": 0.2450113147497177, + "learning_rate": 4.40092e-05, + "loss": 2.2893191528320314, + "step": 89900 + }, + { + "epoch": 12.0, + "grad_norm": 0.250333309173584, + "learning_rate": 4.400253333333334e-05, + "loss": 2.289803161621094, + "step": 90000 + }, + { + "epoch": 12.013333333333334, + "grad_norm": 0.26415345072746277, + "learning_rate": 4.399586666666667e-05, + "loss": 2.2520457458496095, + "step": 90100 + }, + { + "epoch": 12.026666666666667, + "grad_norm": 0.270293265581131, + "learning_rate": 4.39892e-05, + "loss": 2.256067810058594, + "step": 90200 + }, + { + "epoch": 12.04, + "grad_norm": 0.26308006048202515, + "learning_rate": 4.3982533333333335e-05, + "loss": 2.254475402832031, + "step": 90300 + }, + { + "epoch": 12.053333333333333, + "grad_norm": 0.26801061630249023, + "learning_rate": 4.3975866666666674e-05, + "loss": 2.2552793884277342, + "step": 90400 + }, + { + "epoch": 12.066666666666666, + "grad_norm": 0.26214471459388733, + "learning_rate": 4.3969200000000006e-05, + "loss": 2.258145599365234, + "step": 90500 + }, + { + "epoch": 12.08, + "grad_norm": 0.28105658292770386, + "learning_rate": 4.396253333333333e-05, + "loss": 2.2529132080078127, + "step": 90600 + }, + { + "epoch": 12.093333333333334, + "grad_norm": 0.2663695216178894, + "learning_rate": 4.395586666666667e-05, + "loss": 2.255912322998047, + "step": 90700 + }, + { + "epoch": 12.106666666666667, + "grad_norm": 0.2649990916252136, + "learning_rate": 4.39492e-05, + "loss": 2.257332000732422, + "step": 90800 + }, + { + "epoch": 12.12, + "grad_norm": 0.2807125747203827, + "learning_rate": 4.39426e-05, + "loss": 2.254444274902344, + "step": 90900 + }, + { + "epoch": 12.133333333333333, + "grad_norm": 0.2781652510166168, + "learning_rate": 4.3935933333333334e-05, + "loss": 2.255809478759766, + "step": 91000 + }, + { + "epoch": 12.146666666666667, + "grad_norm": 0.2698095142841339, + "learning_rate": 4.3929266666666666e-05, + "loss": 2.2598388671875, + "step": 91100 + }, + { + "epoch": 12.16, + "grad_norm": 0.2597528100013733, + "learning_rate": 4.3922600000000005e-05, + "loss": 2.2584068298339846, + "step": 91200 + }, + { + "epoch": 12.173333333333334, + "grad_norm": 0.29636549949645996, + "learning_rate": 4.391593333333334e-05, + "loss": 2.2593704223632813, + "step": 91300 + }, + { + "epoch": 12.186666666666667, + "grad_norm": 0.26234522461891174, + "learning_rate": 4.390926666666667e-05, + "loss": 2.2581317138671877, + "step": 91400 + }, + { + "epoch": 12.2, + "grad_norm": 0.2541376054286957, + "learning_rate": 4.39026e-05, + "loss": 2.2626708984375, + "step": 91500 + }, + { + "epoch": 12.213333333333333, + "grad_norm": 0.26197925209999084, + "learning_rate": 4.3895933333333334e-05, + "loss": 2.260786285400391, + "step": 91600 + }, + { + "epoch": 12.226666666666667, + "grad_norm": 0.2817310690879822, + "learning_rate": 4.388926666666667e-05, + "loss": 2.2600221252441406, + "step": 91700 + }, + { + "epoch": 12.24, + "grad_norm": 0.2767874002456665, + "learning_rate": 4.38826e-05, + "loss": 2.259307556152344, + "step": 91800 + }, + { + "epoch": 12.253333333333334, + "grad_norm": 0.28231081366539, + "learning_rate": 4.387593333333334e-05, + "loss": 2.26181396484375, + "step": 91900 + }, + { + "epoch": 12.266666666666667, + "grad_norm": 0.29353827238082886, + "learning_rate": 4.386926666666667e-05, + "loss": 2.2626690673828125, + "step": 92000 + }, + { + "epoch": 12.28, + "grad_norm": 0.28261885046958923, + "learning_rate": 4.38626e-05, + "loss": 2.2611619567871095, + "step": 92100 + }, + { + "epoch": 12.293333333333333, + "grad_norm": 0.27281126379966736, + "learning_rate": 4.3855933333333335e-05, + "loss": 2.2623275756835937, + "step": 92200 + }, + { + "epoch": 12.306666666666667, + "grad_norm": 0.27092328667640686, + "learning_rate": 4.384926666666667e-05, + "loss": 2.2650576782226564, + "step": 92300 + }, + { + "epoch": 12.32, + "grad_norm": 0.27784717082977295, + "learning_rate": 4.38426e-05, + "loss": 2.265977478027344, + "step": 92400 + }, + { + "epoch": 12.333333333333334, + "grad_norm": 0.2821849286556244, + "learning_rate": 4.383593333333333e-05, + "loss": 2.2627384948730467, + "step": 92500 + }, + { + "epoch": 12.346666666666668, + "grad_norm": 0.2593942880630493, + "learning_rate": 4.382926666666667e-05, + "loss": 2.2643051147460938, + "step": 92600 + }, + { + "epoch": 12.36, + "grad_norm": 0.2664111852645874, + "learning_rate": 4.38226e-05, + "loss": 2.263711700439453, + "step": 92700 + }, + { + "epoch": 12.373333333333333, + "grad_norm": 0.27181532979011536, + "learning_rate": 4.3815933333333335e-05, + "loss": 2.2646673583984374, + "step": 92800 + }, + { + "epoch": 12.386666666666667, + "grad_norm": 0.27028733491897583, + "learning_rate": 4.380926666666667e-05, + "loss": 2.263740997314453, + "step": 92900 + }, + { + "epoch": 12.4, + "grad_norm": 0.27383387088775635, + "learning_rate": 4.3802600000000006e-05, + "loss": 2.2647544860839846, + "step": 93000 + }, + { + "epoch": 12.413333333333334, + "grad_norm": 0.2857363820075989, + "learning_rate": 4.379593333333333e-05, + "loss": 2.2678724670410157, + "step": 93100 + }, + { + "epoch": 12.426666666666666, + "grad_norm": 0.2589321434497833, + "learning_rate": 4.3789266666666664e-05, + "loss": 2.266948547363281, + "step": 93200 + }, + { + "epoch": 12.44, + "grad_norm": 0.2658815085887909, + "learning_rate": 4.37826e-05, + "loss": 2.266887969970703, + "step": 93300 + }, + { + "epoch": 12.453333333333333, + "grad_norm": 0.25604525208473206, + "learning_rate": 4.3775933333333336e-05, + "loss": 2.2663844299316405, + "step": 93400 + }, + { + "epoch": 12.466666666666667, + "grad_norm": 0.2693767249584198, + "learning_rate": 4.376926666666667e-05, + "loss": 2.268565368652344, + "step": 93500 + }, + { + "epoch": 12.48, + "grad_norm": 0.2705082297325134, + "learning_rate": 4.376260000000001e-05, + "loss": 2.2688444519042967, + "step": 93600 + }, + { + "epoch": 12.493333333333334, + "grad_norm": 0.26299747824668884, + "learning_rate": 4.375593333333334e-05, + "loss": 2.2663604736328127, + "step": 93700 + }, + { + "epoch": 12.506666666666666, + "grad_norm": 0.2636234760284424, + "learning_rate": 4.3749266666666665e-05, + "loss": 2.267936096191406, + "step": 93800 + }, + { + "epoch": 12.52, + "grad_norm": 0.27005478739738464, + "learning_rate": 4.37426e-05, + "loss": 2.2693917846679685, + "step": 93900 + }, + { + "epoch": 12.533333333333333, + "grad_norm": 0.26250335574150085, + "learning_rate": 4.3735933333333336e-05, + "loss": 2.2679597473144533, + "step": 94000 + }, + { + "epoch": 12.546666666666667, + "grad_norm": 0.2671932876110077, + "learning_rate": 4.3729333333333335e-05, + "loss": 2.2690809631347655, + "step": 94100 + }, + { + "epoch": 12.56, + "grad_norm": 0.2680586576461792, + "learning_rate": 4.372266666666667e-05, + "loss": 2.271476287841797, + "step": 94200 + }, + { + "epoch": 12.573333333333334, + "grad_norm": 0.2628432512283325, + "learning_rate": 4.3716e-05, + "loss": 2.2699676513671876, + "step": 94300 + }, + { + "epoch": 12.586666666666666, + "grad_norm": 0.2540188431739807, + "learning_rate": 4.370933333333334e-05, + "loss": 2.2718327331542967, + "step": 94400 + }, + { + "epoch": 12.6, + "grad_norm": 0.2647560238838196, + "learning_rate": 4.370266666666667e-05, + "loss": 2.2681085205078126, + "step": 94500 + }, + { + "epoch": 12.613333333333333, + "grad_norm": 0.2745302617549896, + "learning_rate": 4.3696e-05, + "loss": 2.2698655700683594, + "step": 94600 + }, + { + "epoch": 12.626666666666667, + "grad_norm": 0.26162075996398926, + "learning_rate": 4.3689333333333335e-05, + "loss": 2.2712269592285157, + "step": 94700 + }, + { + "epoch": 12.64, + "grad_norm": 0.2582067847251892, + "learning_rate": 4.368266666666667e-05, + "loss": 2.272103271484375, + "step": 94800 + }, + { + "epoch": 12.653333333333332, + "grad_norm": 0.27295711636543274, + "learning_rate": 4.3676e-05, + "loss": 2.272527618408203, + "step": 94900 + }, + { + "epoch": 12.666666666666666, + "grad_norm": 0.2765968441963196, + "learning_rate": 4.366933333333333e-05, + "loss": 2.271612243652344, + "step": 95000 + }, + { + "epoch": 12.68, + "grad_norm": 0.25656306743621826, + "learning_rate": 4.366266666666667e-05, + "loss": 2.271820068359375, + "step": 95100 + }, + { + "epoch": 12.693333333333333, + "grad_norm": 0.2678724527359009, + "learning_rate": 4.3656000000000004e-05, + "loss": 2.271623992919922, + "step": 95200 + }, + { + "epoch": 12.706666666666667, + "grad_norm": 0.26828429102897644, + "learning_rate": 4.3649333333333336e-05, + "loss": 2.272816467285156, + "step": 95300 + }, + { + "epoch": 12.72, + "grad_norm": 0.2544470429420471, + "learning_rate": 4.364266666666667e-05, + "loss": 2.2750363159179687, + "step": 95400 + }, + { + "epoch": 12.733333333333333, + "grad_norm": 0.2685322165489197, + "learning_rate": 4.363600000000001e-05, + "loss": 2.2729071044921874, + "step": 95500 + }, + { + "epoch": 12.746666666666666, + "grad_norm": 0.26069387793540955, + "learning_rate": 4.362933333333333e-05, + "loss": 2.2722439575195312, + "step": 95600 + }, + { + "epoch": 12.76, + "grad_norm": 0.2649424374103546, + "learning_rate": 4.3622666666666665e-05, + "loss": 2.272758026123047, + "step": 95700 + }, + { + "epoch": 12.773333333333333, + "grad_norm": 0.2521308660507202, + "learning_rate": 4.3616000000000004e-05, + "loss": 2.272996520996094, + "step": 95800 + }, + { + "epoch": 12.786666666666667, + "grad_norm": 0.25602442026138306, + "learning_rate": 4.3609333333333336e-05, + "loss": 2.2761857604980467, + "step": 95900 + }, + { + "epoch": 12.8, + "grad_norm": 0.267101913690567, + "learning_rate": 4.360266666666667e-05, + "loss": 2.2757493591308595, + "step": 96000 + }, + { + "epoch": 12.813333333333333, + "grad_norm": 0.26094216108322144, + "learning_rate": 4.3596e-05, + "loss": 2.2767680358886717, + "step": 96100 + }, + { + "epoch": 12.826666666666666, + "grad_norm": 0.3060274124145508, + "learning_rate": 4.358933333333334e-05, + "loss": 2.276941833496094, + "step": 96200 + }, + { + "epoch": 12.84, + "grad_norm": 0.26290687918663025, + "learning_rate": 4.3582666666666665e-05, + "loss": 2.275010528564453, + "step": 96300 + }, + { + "epoch": 12.853333333333333, + "grad_norm": 0.2535942792892456, + "learning_rate": 4.3576e-05, + "loss": 2.273764343261719, + "step": 96400 + }, + { + "epoch": 12.866666666666667, + "grad_norm": 0.27731791138648987, + "learning_rate": 4.3569333333333337e-05, + "loss": 2.2726361083984377, + "step": 96500 + }, + { + "epoch": 12.88, + "grad_norm": 0.2616978585720062, + "learning_rate": 4.356266666666667e-05, + "loss": 2.2775596618652343, + "step": 96600 + }, + { + "epoch": 12.893333333333333, + "grad_norm": 0.28346607089042664, + "learning_rate": 4.3556e-05, + "loss": 2.277263488769531, + "step": 96700 + }, + { + "epoch": 12.906666666666666, + "grad_norm": 0.26759618520736694, + "learning_rate": 4.354933333333333e-05, + "loss": 2.2788565063476565, + "step": 96800 + }, + { + "epoch": 12.92, + "grad_norm": 0.25372806191444397, + "learning_rate": 4.354266666666667e-05, + "loss": 2.278957977294922, + "step": 96900 + }, + { + "epoch": 12.933333333333334, + "grad_norm": 0.2680625319480896, + "learning_rate": 4.3536000000000005e-05, + "loss": 2.2768804931640627, + "step": 97000 + }, + { + "epoch": 12.946666666666667, + "grad_norm": 0.28444984555244446, + "learning_rate": 4.352933333333333e-05, + "loss": 2.2771568298339844, + "step": 97100 + }, + { + "epoch": 12.96, + "grad_norm": 0.26102322340011597, + "learning_rate": 4.352266666666667e-05, + "loss": 2.277088928222656, + "step": 97200 + }, + { + "epoch": 12.973333333333333, + "grad_norm": 0.25774040818214417, + "learning_rate": 4.3516e-05, + "loss": 2.2783038330078127, + "step": 97300 + }, + { + "epoch": 12.986666666666666, + "grad_norm": 0.27031639218330383, + "learning_rate": 4.3509333333333334e-05, + "loss": 2.276095275878906, + "step": 97400 + }, + { + "epoch": 13.0, + "grad_norm": 0.262939989566803, + "learning_rate": 4.3502666666666666e-05, + "loss": 2.2774124145507812, + "step": 97500 + }, + { + "epoch": 13.013333333333334, + "grad_norm": 0.29187247157096863, + "learning_rate": 4.3496066666666665e-05, + "loss": 2.2387960815429686, + "step": 97600 + }, + { + "epoch": 13.026666666666667, + "grad_norm": 0.2766711413860321, + "learning_rate": 4.3489400000000004e-05, + "loss": 2.2393284606933594, + "step": 97700 + }, + { + "epoch": 13.04, + "grad_norm": 0.26698678731918335, + "learning_rate": 4.3482733333333336e-05, + "loss": 2.2385823059082033, + "step": 97800 + }, + { + "epoch": 13.053333333333333, + "grad_norm": 0.28331395983695984, + "learning_rate": 4.347606666666667e-05, + "loss": 2.23583251953125, + "step": 97900 + }, + { + "epoch": 13.066666666666666, + "grad_norm": 0.27367907762527466, + "learning_rate": 4.346940000000001e-05, + "loss": 2.2407188415527344, + "step": 98000 + }, + { + "epoch": 13.08, + "grad_norm": 0.28484055399894714, + "learning_rate": 4.346273333333333e-05, + "loss": 2.244789886474609, + "step": 98100 + }, + { + "epoch": 13.093333333333334, + "grad_norm": 0.28485485911369324, + "learning_rate": 4.3456066666666665e-05, + "loss": 2.242432861328125, + "step": 98200 + }, + { + "epoch": 13.106666666666667, + "grad_norm": 0.2772075831890106, + "learning_rate": 4.3449400000000005e-05, + "loss": 2.242548370361328, + "step": 98300 + }, + { + "epoch": 13.12, + "grad_norm": 0.2794252336025238, + "learning_rate": 4.344273333333334e-05, + "loss": 2.241208953857422, + "step": 98400 + }, + { + "epoch": 13.133333333333333, + "grad_norm": 0.2768386900424957, + "learning_rate": 4.343606666666667e-05, + "loss": 2.2418304443359376, + "step": 98500 + }, + { + "epoch": 13.146666666666667, + "grad_norm": 0.29671546816825867, + "learning_rate": 4.34294e-05, + "loss": 2.24133544921875, + "step": 98600 + }, + { + "epoch": 13.16, + "grad_norm": 0.28922173380851746, + "learning_rate": 4.342273333333334e-05, + "loss": 2.2457321166992186, + "step": 98700 + }, + { + "epoch": 13.173333333333334, + "grad_norm": 0.2911158800125122, + "learning_rate": 4.3416066666666666e-05, + "loss": 2.243005676269531, + "step": 98800 + }, + { + "epoch": 13.186666666666667, + "grad_norm": 0.2844465374946594, + "learning_rate": 4.34094e-05, + "loss": 2.2428907775878906, + "step": 98900 + }, + { + "epoch": 13.2, + "grad_norm": 0.29359185695648193, + "learning_rate": 4.340273333333334e-05, + "loss": 2.2461944580078126, + "step": 99000 + }, + { + "epoch": 13.213333333333333, + "grad_norm": 0.2992889881134033, + "learning_rate": 4.339606666666667e-05, + "loss": 2.2442695617675783, + "step": 99100 + }, + { + "epoch": 13.226666666666667, + "grad_norm": 0.28376510739326477, + "learning_rate": 4.33894e-05, + "loss": 2.2490634155273437, + "step": 99200 + }, + { + "epoch": 13.24, + "grad_norm": 0.26906511187553406, + "learning_rate": 4.3382733333333334e-05, + "loss": 2.248119354248047, + "step": 99300 + }, + { + "epoch": 13.253333333333334, + "grad_norm": 0.2935919165611267, + "learning_rate": 4.337606666666667e-05, + "loss": 2.244882354736328, + "step": 99400 + }, + { + "epoch": 13.266666666666667, + "grad_norm": 0.27943170070648193, + "learning_rate": 4.3369400000000005e-05, + "loss": 2.247407989501953, + "step": 99500 + }, + { + "epoch": 13.28, + "grad_norm": 0.27867066860198975, + "learning_rate": 4.336273333333333e-05, + "loss": 2.247802429199219, + "step": 99600 + }, + { + "epoch": 13.293333333333333, + "grad_norm": 0.29325079917907715, + "learning_rate": 4.335606666666667e-05, + "loss": 2.248299865722656, + "step": 99700 + }, + { + "epoch": 13.306666666666667, + "grad_norm": 0.276795893907547, + "learning_rate": 4.33494e-05, + "loss": 2.2507450866699217, + "step": 99800 + }, + { + "epoch": 13.32, + "grad_norm": 0.2778800427913666, + "learning_rate": 4.3342733333333334e-05, + "loss": 2.249114990234375, + "step": 99900 + }, + { + "epoch": 13.333333333333334, + "grad_norm": 0.2965216636657715, + "learning_rate": 4.3336066666666667e-05, + "loss": 2.250552520751953, + "step": 100000 + }, + { + "epoch": 13.346666666666668, + "grad_norm": 0.2709920108318329, + "learning_rate": 4.3329400000000006e-05, + "loss": 2.2509161376953126, + "step": 100100 + }, + { + "epoch": 13.36, + "grad_norm": 0.2882387638092041, + "learning_rate": 4.332273333333334e-05, + "loss": 2.2525457763671874, + "step": 100200 + }, + { + "epoch": 13.373333333333333, + "grad_norm": 0.2988874316215515, + "learning_rate": 4.331606666666667e-05, + "loss": 2.2508233642578124, + "step": 100300 + }, + { + "epoch": 13.386666666666667, + "grad_norm": 0.274324506521225, + "learning_rate": 4.33094e-05, + "loss": 2.2498133850097655, + "step": 100400 + }, + { + "epoch": 13.4, + "grad_norm": 0.29012390971183777, + "learning_rate": 4.3302733333333335e-05, + "loss": 2.252369079589844, + "step": 100500 + }, + { + "epoch": 13.413333333333334, + "grad_norm": 0.2632313668727875, + "learning_rate": 4.329606666666667e-05, + "loss": 2.2533638000488283, + "step": 100600 + }, + { + "epoch": 13.426666666666666, + "grad_norm": 0.26571324467658997, + "learning_rate": 4.32894e-05, + "loss": 2.253193054199219, + "step": 100700 + }, + { + "epoch": 13.44, + "grad_norm": 0.289485901594162, + "learning_rate": 4.328273333333334e-05, + "loss": 2.251653747558594, + "step": 100800 + }, + { + "epoch": 13.453333333333333, + "grad_norm": 0.2886415421962738, + "learning_rate": 4.327606666666667e-05, + "loss": 2.251334228515625, + "step": 100900 + }, + { + "epoch": 13.466666666666667, + "grad_norm": 0.2879510819911957, + "learning_rate": 4.32694e-05, + "loss": 2.2535078430175783, + "step": 101000 + }, + { + "epoch": 13.48, + "grad_norm": 0.2864849269390106, + "learning_rate": 4.3262733333333335e-05, + "loss": 2.2524153137207032, + "step": 101100 + }, + { + "epoch": 13.493333333333334, + "grad_norm": 0.27846381068229675, + "learning_rate": 4.325606666666667e-05, + "loss": 2.255931549072266, + "step": 101200 + }, + { + "epoch": 13.506666666666666, + "grad_norm": 0.293816477060318, + "learning_rate": 4.32494e-05, + "loss": 2.256122894287109, + "step": 101300 + }, + { + "epoch": 13.52, + "grad_norm": 0.2949255704879761, + "learning_rate": 4.324273333333333e-05, + "loss": 2.2581175231933592, + "step": 101400 + }, + { + "epoch": 13.533333333333333, + "grad_norm": 0.2826773226261139, + "learning_rate": 4.323606666666667e-05, + "loss": 2.255837097167969, + "step": 101500 + }, + { + "epoch": 13.546666666666667, + "grad_norm": 0.2743004262447357, + "learning_rate": 4.322953333333333e-05, + "loss": 2.2541908264160155, + "step": 101600 + }, + { + "epoch": 13.56, + "grad_norm": 0.2713441550731659, + "learning_rate": 4.322286666666667e-05, + "loss": 2.258142547607422, + "step": 101700 + }, + { + "epoch": 13.573333333333334, + "grad_norm": 0.283563494682312, + "learning_rate": 4.32162e-05, + "loss": 2.2553956604003904, + "step": 101800 + }, + { + "epoch": 13.586666666666666, + "grad_norm": 0.28330928087234497, + "learning_rate": 4.3209533333333334e-05, + "loss": 2.257396697998047, + "step": 101900 + }, + { + "epoch": 13.6, + "grad_norm": 0.2793908715248108, + "learning_rate": 4.3202866666666666e-05, + "loss": 2.256497344970703, + "step": 102000 + }, + { + "epoch": 13.613333333333333, + "grad_norm": 0.2900395393371582, + "learning_rate": 4.3196200000000005e-05, + "loss": 2.255678405761719, + "step": 102100 + }, + { + "epoch": 13.626666666666667, + "grad_norm": 0.27794957160949707, + "learning_rate": 4.318953333333334e-05, + "loss": 2.2580166625976563, + "step": 102200 + }, + { + "epoch": 13.64, + "grad_norm": 0.2686266303062439, + "learning_rate": 4.318286666666667e-05, + "loss": 2.260865478515625, + "step": 102300 + }, + { + "epoch": 13.653333333333332, + "grad_norm": 0.2785786986351013, + "learning_rate": 4.31762e-05, + "loss": 2.260006561279297, + "step": 102400 + }, + { + "epoch": 13.666666666666666, + "grad_norm": 0.28079360723495483, + "learning_rate": 4.3169533333333334e-05, + "loss": 2.2595237731933593, + "step": 102500 + }, + { + "epoch": 13.68, + "grad_norm": 0.3011217415332794, + "learning_rate": 4.3162866666666666e-05, + "loss": 2.2576690673828126, + "step": 102600 + }, + { + "epoch": 13.693333333333333, + "grad_norm": 0.29701074957847595, + "learning_rate": 4.3156200000000005e-05, + "loss": 2.2590093994140625, + "step": 102700 + }, + { + "epoch": 13.706666666666667, + "grad_norm": 0.284489244222641, + "learning_rate": 4.314953333333334e-05, + "loss": 2.2569615173339845, + "step": 102800 + }, + { + "epoch": 13.72, + "grad_norm": 0.29608434438705444, + "learning_rate": 4.314286666666667e-05, + "loss": 2.26008544921875, + "step": 102900 + }, + { + "epoch": 13.733333333333333, + "grad_norm": 0.2743198275566101, + "learning_rate": 4.31362e-05, + "loss": 2.2595872497558593, + "step": 103000 + }, + { + "epoch": 13.746666666666666, + "grad_norm": 0.2759169340133667, + "learning_rate": 4.3129533333333334e-05, + "loss": 2.260936737060547, + "step": 103100 + }, + { + "epoch": 13.76, + "grad_norm": 0.2984674274921417, + "learning_rate": 4.312286666666667e-05, + "loss": 2.2615948486328126, + "step": 103200 + }, + { + "epoch": 13.773333333333333, + "grad_norm": 0.27188169956207275, + "learning_rate": 4.31162e-05, + "loss": 2.2584141540527343, + "step": 103300 + }, + { + "epoch": 13.786666666666667, + "grad_norm": 0.2684420943260193, + "learning_rate": 4.310953333333334e-05, + "loss": 2.26137451171875, + "step": 103400 + }, + { + "epoch": 13.8, + "grad_norm": 0.2790769040584564, + "learning_rate": 4.310286666666667e-05, + "loss": 2.260129089355469, + "step": 103500 + }, + { + "epoch": 13.813333333333333, + "grad_norm": 0.28276488184928894, + "learning_rate": 4.30962e-05, + "loss": 2.261208038330078, + "step": 103600 + }, + { + "epoch": 13.826666666666666, + "grad_norm": 0.27551108598709106, + "learning_rate": 4.30896e-05, + "loss": 2.2652987670898437, + "step": 103700 + }, + { + "epoch": 13.84, + "grad_norm": 0.27749794721603394, + "learning_rate": 4.3082933333333334e-05, + "loss": 2.2623104858398437, + "step": 103800 + }, + { + "epoch": 13.853333333333333, + "grad_norm": 0.29130128026008606, + "learning_rate": 4.307626666666667e-05, + "loss": 2.2647268676757815, + "step": 103900 + }, + { + "epoch": 13.866666666666667, + "grad_norm": 0.27854955196380615, + "learning_rate": 4.3069600000000005e-05, + "loss": 2.2648512268066407, + "step": 104000 + }, + { + "epoch": 13.88, + "grad_norm": 0.2763110399246216, + "learning_rate": 4.306293333333333e-05, + "loss": 2.262389678955078, + "step": 104100 + }, + { + "epoch": 13.893333333333333, + "grad_norm": 0.2861855626106262, + "learning_rate": 4.305626666666667e-05, + "loss": 2.260863952636719, + "step": 104200 + }, + { + "epoch": 13.906666666666666, + "grad_norm": 0.2763212323188782, + "learning_rate": 4.30496e-05, + "loss": 2.2617811584472656, + "step": 104300 + }, + { + "epoch": 13.92, + "grad_norm": 0.27700719237327576, + "learning_rate": 4.3042933333333334e-05, + "loss": 2.2629629516601564, + "step": 104400 + }, + { + "epoch": 13.933333333333334, + "grad_norm": 0.289580374956131, + "learning_rate": 4.3036266666666667e-05, + "loss": 2.2654957580566406, + "step": 104500 + }, + { + "epoch": 13.946666666666667, + "grad_norm": 0.288922518491745, + "learning_rate": 4.3029600000000006e-05, + "loss": 2.2641279602050783, + "step": 104600 + }, + { + "epoch": 13.96, + "grad_norm": 0.2980629503726959, + "learning_rate": 4.302293333333334e-05, + "loss": 2.2678652954101564, + "step": 104700 + }, + { + "epoch": 13.973333333333333, + "grad_norm": 0.279041051864624, + "learning_rate": 4.301626666666667e-05, + "loss": 2.264940185546875, + "step": 104800 + }, + { + "epoch": 13.986666666666666, + "grad_norm": 0.2885514497756958, + "learning_rate": 4.30096e-05, + "loss": 2.264721221923828, + "step": 104900 + }, + { + "epoch": 14.0, + "grad_norm": 0.2856515347957611, + "learning_rate": 4.3002933333333335e-05, + "loss": 2.2638644409179687, + "step": 105000 + }, + { + "epoch": 14.013333333333334, + "grad_norm": 0.2933811843395233, + "learning_rate": 4.299626666666667e-05, + "loss": 2.223587951660156, + "step": 105100 + }, + { + "epoch": 14.026666666666667, + "grad_norm": 0.3170996308326721, + "learning_rate": 4.29896e-05, + "loss": 2.2215760803222655, + "step": 105200 + }, + { + "epoch": 14.04, + "grad_norm": 0.32004064321517944, + "learning_rate": 4.298293333333334e-05, + "loss": 2.2238189697265627, + "step": 105300 + }, + { + "epoch": 14.053333333333333, + "grad_norm": 0.29204490780830383, + "learning_rate": 4.297626666666667e-05, + "loss": 2.2225723266601562, + "step": 105400 + }, + { + "epoch": 14.066666666666666, + "grad_norm": 0.3062141239643097, + "learning_rate": 4.29696e-05, + "loss": 2.223246765136719, + "step": 105500 + }, + { + "epoch": 14.08, + "grad_norm": 0.30984053015708923, + "learning_rate": 4.2962933333333335e-05, + "loss": 2.2242507934570312, + "step": 105600 + }, + { + "epoch": 14.093333333333334, + "grad_norm": 0.322451651096344, + "learning_rate": 4.295626666666667e-05, + "loss": 2.2280723571777346, + "step": 105700 + }, + { + "epoch": 14.106666666666667, + "grad_norm": 0.3022569417953491, + "learning_rate": 4.29496e-05, + "loss": 2.226327209472656, + "step": 105800 + }, + { + "epoch": 14.12, + "grad_norm": 0.30784836411476135, + "learning_rate": 4.294293333333333e-05, + "loss": 2.2258816528320313, + "step": 105900 + }, + { + "epoch": 14.133333333333333, + "grad_norm": 0.30157235264778137, + "learning_rate": 4.293626666666667e-05, + "loss": 2.2270236206054688, + "step": 106000 + }, + { + "epoch": 14.146666666666667, + "grad_norm": 0.30551230907440186, + "learning_rate": 4.29296e-05, + "loss": 2.231392822265625, + "step": 106100 + }, + { + "epoch": 14.16, + "grad_norm": 0.2978629171848297, + "learning_rate": 4.2922933333333335e-05, + "loss": 2.228222198486328, + "step": 106200 + }, + { + "epoch": 14.173333333333334, + "grad_norm": 0.3043777644634247, + "learning_rate": 4.2916333333333334e-05, + "loss": 2.2319209289550783, + "step": 106300 + }, + { + "epoch": 14.186666666666667, + "grad_norm": 0.29846736788749695, + "learning_rate": 4.2909666666666674e-05, + "loss": 2.228956451416016, + "step": 106400 + }, + { + "epoch": 14.2, + "grad_norm": 0.30101996660232544, + "learning_rate": 4.2903000000000006e-05, + "loss": 2.233109588623047, + "step": 106500 + }, + { + "epoch": 14.213333333333333, + "grad_norm": 0.2905249297618866, + "learning_rate": 4.289633333333333e-05, + "loss": 2.23214111328125, + "step": 106600 + }, + { + "epoch": 14.226666666666667, + "grad_norm": 0.31870153546333313, + "learning_rate": 4.2889666666666664e-05, + "loss": 2.23111572265625, + "step": 106700 + }, + { + "epoch": 14.24, + "grad_norm": 0.31344854831695557, + "learning_rate": 4.2883e-05, + "loss": 2.2312010192871092, + "step": 106800 + }, + { + "epoch": 14.253333333333334, + "grad_norm": 0.3159984350204468, + "learning_rate": 4.2876333333333335e-05, + "loss": 2.234411315917969, + "step": 106900 + }, + { + "epoch": 14.266666666666667, + "grad_norm": 0.3049383759498596, + "learning_rate": 4.286966666666667e-05, + "loss": 2.232013854980469, + "step": 107000 + }, + { + "epoch": 14.28, + "grad_norm": 0.2840105891227722, + "learning_rate": 4.2863000000000006e-05, + "loss": 2.2319927978515626, + "step": 107100 + }, + { + "epoch": 14.293333333333333, + "grad_norm": 0.3090221881866455, + "learning_rate": 4.285633333333334e-05, + "loss": 2.235484771728516, + "step": 107200 + }, + { + "epoch": 14.306666666666667, + "grad_norm": 0.2912992835044861, + "learning_rate": 4.284966666666667e-05, + "loss": 2.233905944824219, + "step": 107300 + }, + { + "epoch": 14.32, + "grad_norm": 0.2928401231765747, + "learning_rate": 4.2843e-05, + "loss": 2.2329034423828125, + "step": 107400 + }, + { + "epoch": 14.333333333333334, + "grad_norm": 0.2940289080142975, + "learning_rate": 4.2836333333333335e-05, + "loss": 2.23254150390625, + "step": 107500 + }, + { + "epoch": 14.346666666666668, + "grad_norm": 0.3051759898662567, + "learning_rate": 4.282966666666667e-05, + "loss": 2.235914764404297, + "step": 107600 + }, + { + "epoch": 14.36, + "grad_norm": 0.29925987124443054, + "learning_rate": 4.2823e-05, + "loss": 2.236822052001953, + "step": 107700 + }, + { + "epoch": 14.373333333333333, + "grad_norm": 0.30133113265037537, + "learning_rate": 4.281633333333334e-05, + "loss": 2.237333068847656, + "step": 107800 + }, + { + "epoch": 14.386666666666667, + "grad_norm": 0.2979786694049835, + "learning_rate": 4.280966666666667e-05, + "loss": 2.2337214660644533, + "step": 107900 + }, + { + "epoch": 14.4, + "grad_norm": 0.30509302020072937, + "learning_rate": 4.2803e-05, + "loss": 2.234857177734375, + "step": 108000 + }, + { + "epoch": 14.413333333333334, + "grad_norm": 0.31245774030685425, + "learning_rate": 4.2796333333333336e-05, + "loss": 2.2369602966308593, + "step": 108100 + }, + { + "epoch": 14.426666666666666, + "grad_norm": 0.28808292746543884, + "learning_rate": 4.278966666666667e-05, + "loss": 2.2391943359375, + "step": 108200 + }, + { + "epoch": 14.44, + "grad_norm": 0.3327585756778717, + "learning_rate": 4.2783066666666674e-05, + "loss": 2.2387188720703124, + "step": 108300 + }, + { + "epoch": 14.453333333333333, + "grad_norm": 0.3101474940776825, + "learning_rate": 4.27764e-05, + "loss": 2.2376824951171876, + "step": 108400 + }, + { + "epoch": 14.466666666666667, + "grad_norm": 0.2869791090488434, + "learning_rate": 4.276973333333333e-05, + "loss": 2.237794189453125, + "step": 108500 + }, + { + "epoch": 14.48, + "grad_norm": 0.3071404695510864, + "learning_rate": 4.276306666666667e-05, + "loss": 2.239633331298828, + "step": 108600 + }, + { + "epoch": 14.493333333333334, + "grad_norm": 0.2966044843196869, + "learning_rate": 4.27564e-05, + "loss": 2.2403135681152344, + "step": 108700 + }, + { + "epoch": 14.506666666666666, + "grad_norm": 0.2996501624584198, + "learning_rate": 4.2749733333333335e-05, + "loss": 2.240699920654297, + "step": 108800 + }, + { + "epoch": 14.52, + "grad_norm": 0.3051213026046753, + "learning_rate": 4.274306666666667e-05, + "loss": 2.241038360595703, + "step": 108900 + }, + { + "epoch": 14.533333333333333, + "grad_norm": 0.3177984952926636, + "learning_rate": 4.2736400000000006e-05, + "loss": 2.241685485839844, + "step": 109000 + }, + { + "epoch": 14.546666666666667, + "grad_norm": 0.31197378039360046, + "learning_rate": 4.272973333333333e-05, + "loss": 2.2384878540039064, + "step": 109100 + }, + { + "epoch": 14.56, + "grad_norm": 0.3031216263771057, + "learning_rate": 4.2723066666666664e-05, + "loss": 2.240026397705078, + "step": 109200 + }, + { + "epoch": 14.573333333333334, + "grad_norm": 0.2918401062488556, + "learning_rate": 4.27164e-05, + "loss": 2.2429275512695312, + "step": 109300 + }, + { + "epoch": 14.586666666666666, + "grad_norm": 0.30749937891960144, + "learning_rate": 4.2709733333333335e-05, + "loss": 2.2420500183105467, + "step": 109400 + }, + { + "epoch": 14.6, + "grad_norm": 0.30055928230285645, + "learning_rate": 4.270306666666667e-05, + "loss": 2.2444825744628907, + "step": 109500 + }, + { + "epoch": 14.613333333333333, + "grad_norm": 0.3009972870349884, + "learning_rate": 4.26964e-05, + "loss": 2.2414918518066407, + "step": 109600 + }, + { + "epoch": 14.626666666666667, + "grad_norm": 0.29409679770469666, + "learning_rate": 4.268973333333334e-05, + "loss": 2.243094940185547, + "step": 109700 + }, + { + "epoch": 14.64, + "grad_norm": 0.3000005781650543, + "learning_rate": 4.268306666666667e-05, + "loss": 2.243612060546875, + "step": 109800 + }, + { + "epoch": 14.653333333333332, + "grad_norm": 0.31389036774635315, + "learning_rate": 4.26764e-05, + "loss": 2.247608337402344, + "step": 109900 + }, + { + "epoch": 14.666666666666666, + "grad_norm": 0.30435290932655334, + "learning_rate": 4.2669733333333336e-05, + "loss": 2.2452850341796875, + "step": 110000 + }, + { + "epoch": 14.68, + "grad_norm": 0.31581467390060425, + "learning_rate": 4.266306666666667e-05, + "loss": 2.2423834228515624, + "step": 110100 + }, + { + "epoch": 14.693333333333333, + "grad_norm": 0.30677202343940735, + "learning_rate": 4.26564e-05, + "loss": 2.2448631286621095, + "step": 110200 + }, + { + "epoch": 14.706666666666667, + "grad_norm": 0.2914011776447296, + "learning_rate": 4.264973333333333e-05, + "loss": 2.2458355712890623, + "step": 110300 + }, + { + "epoch": 14.72, + "grad_norm": 0.30041709542274475, + "learning_rate": 4.264313333333333e-05, + "loss": 2.2454510498046876, + "step": 110400 + }, + { + "epoch": 14.733333333333333, + "grad_norm": 0.29341447353363037, + "learning_rate": 4.263646666666667e-05, + "loss": 2.2464495849609376, + "step": 110500 + }, + { + "epoch": 14.746666666666666, + "grad_norm": 0.2851749658584595, + "learning_rate": 4.26298e-05, + "loss": 2.2466586303710936, + "step": 110600 + }, + { + "epoch": 14.76, + "grad_norm": 0.297852486371994, + "learning_rate": 4.2623133333333335e-05, + "loss": 2.2463618469238282, + "step": 110700 + }, + { + "epoch": 14.773333333333333, + "grad_norm": 0.2981916666030884, + "learning_rate": 4.2616466666666674e-05, + "loss": 2.2474107360839843, + "step": 110800 + }, + { + "epoch": 14.786666666666667, + "grad_norm": 0.29726073145866394, + "learning_rate": 4.26098e-05, + "loss": 2.2470823669433595, + "step": 110900 + }, + { + "epoch": 14.8, + "grad_norm": 0.29146844148635864, + "learning_rate": 4.260313333333333e-05, + "loss": 2.248656005859375, + "step": 111000 + }, + { + "epoch": 14.813333333333333, + "grad_norm": 0.30146679282188416, + "learning_rate": 4.259646666666667e-05, + "loss": 2.2492645263671873, + "step": 111100 + }, + { + "epoch": 14.826666666666666, + "grad_norm": 0.30518659949302673, + "learning_rate": 4.2589800000000003e-05, + "loss": 2.2455149841308595, + "step": 111200 + }, + { + "epoch": 14.84, + "grad_norm": 0.2941482663154602, + "learning_rate": 4.2583133333333336e-05, + "loss": 2.247636413574219, + "step": 111300 + }, + { + "epoch": 14.853333333333333, + "grad_norm": 0.3071843981742859, + "learning_rate": 4.257646666666667e-05, + "loss": 2.249114227294922, + "step": 111400 + }, + { + "epoch": 14.866666666666667, + "grad_norm": 0.2867000102996826, + "learning_rate": 4.256980000000001e-05, + "loss": 2.244889831542969, + "step": 111500 + }, + { + "epoch": 14.88, + "grad_norm": 0.29321691393852234, + "learning_rate": 4.256313333333333e-05, + "loss": 2.2497218322753905, + "step": 111600 + }, + { + "epoch": 14.893333333333333, + "grad_norm": 0.28539395332336426, + "learning_rate": 4.2556466666666665e-05, + "loss": 2.2499490356445313, + "step": 111700 + }, + { + "epoch": 14.906666666666666, + "grad_norm": 0.2966148257255554, + "learning_rate": 4.2549800000000004e-05, + "loss": 2.251126708984375, + "step": 111800 + }, + { + "epoch": 14.92, + "grad_norm": 0.30318519473075867, + "learning_rate": 4.2543133333333336e-05, + "loss": 2.251923370361328, + "step": 111900 + }, + { + "epoch": 14.933333333333334, + "grad_norm": 0.30401572585105896, + "learning_rate": 4.253646666666667e-05, + "loss": 2.247659912109375, + "step": 112000 + }, + { + "epoch": 14.946666666666667, + "grad_norm": 0.42713233828544617, + "learning_rate": 4.25298e-05, + "loss": 2.2480320739746094, + "step": 112100 + }, + { + "epoch": 14.96, + "grad_norm": 0.3023832440376282, + "learning_rate": 4.252313333333334e-05, + "loss": 2.252263946533203, + "step": 112200 + }, + { + "epoch": 14.973333333333333, + "grad_norm": 0.31739455461502075, + "learning_rate": 4.251646666666667e-05, + "loss": 2.250135040283203, + "step": 112300 + }, + { + "epoch": 14.986666666666666, + "grad_norm": 0.2998296618461609, + "learning_rate": 4.25098e-05, + "loss": 2.250568542480469, + "step": 112400 + }, + { + "epoch": 15.0, + "grad_norm": 0.3116128146648407, + "learning_rate": 4.25032e-05, + "loss": 2.254090118408203, + "step": 112500 + }, + { + "epoch": 15.013333333333334, + "grad_norm": 0.324983686208725, + "learning_rate": 4.2496533333333336e-05, + "loss": 2.2063966369628907, + "step": 112600 + }, + { + "epoch": 15.026666666666667, + "grad_norm": 0.32630521059036255, + "learning_rate": 4.248986666666667e-05, + "loss": 2.204698486328125, + "step": 112700 + }, + { + "epoch": 15.04, + "grad_norm": 0.33141613006591797, + "learning_rate": 4.24832e-05, + "loss": 2.2065577697753906, + "step": 112800 + }, + { + "epoch": 15.053333333333333, + "grad_norm": 0.29963183403015137, + "learning_rate": 4.247653333333333e-05, + "loss": 2.208046569824219, + "step": 112900 + }, + { + "epoch": 15.066666666666666, + "grad_norm": 0.30262288451194763, + "learning_rate": 4.246986666666667e-05, + "loss": 2.208232574462891, + "step": 113000 + }, + { + "epoch": 15.08, + "grad_norm": 0.31407952308654785, + "learning_rate": 4.2463200000000004e-05, + "loss": 2.2060285949707032, + "step": 113100 + }, + { + "epoch": 15.093333333333334, + "grad_norm": 0.3279408812522888, + "learning_rate": 4.2456533333333336e-05, + "loss": 2.2077986145019532, + "step": 113200 + }, + { + "epoch": 15.106666666666667, + "grad_norm": 0.3157520592212677, + "learning_rate": 4.244986666666667e-05, + "loss": 2.2095164489746093, + "step": 113300 + }, + { + "epoch": 15.12, + "grad_norm": 0.31880176067352295, + "learning_rate": 4.24432e-05, + "loss": 2.210868377685547, + "step": 113400 + }, + { + "epoch": 15.133333333333333, + "grad_norm": 0.31537145376205444, + "learning_rate": 4.243653333333333e-05, + "loss": 2.208413391113281, + "step": 113500 + }, + { + "epoch": 15.146666666666667, + "grad_norm": 0.34451282024383545, + "learning_rate": 4.2429866666666665e-05, + "loss": 2.216689453125, + "step": 113600 + }, + { + "epoch": 15.16, + "grad_norm": 0.343150794506073, + "learning_rate": 4.2423200000000004e-05, + "loss": 2.2148944091796876, + "step": 113700 + }, + { + "epoch": 15.173333333333334, + "grad_norm": 0.33272266387939453, + "learning_rate": 4.2416533333333336e-05, + "loss": 2.2134307861328124, + "step": 113800 + }, + { + "epoch": 15.186666666666667, + "grad_norm": 0.3378112018108368, + "learning_rate": 4.240986666666667e-05, + "loss": 2.2136904907226564, + "step": 113900 + }, + { + "epoch": 15.2, + "grad_norm": 0.31077101826667786, + "learning_rate": 4.24032e-05, + "loss": 2.2134745788574217, + "step": 114000 + }, + { + "epoch": 15.213333333333333, + "grad_norm": 0.32572445273399353, + "learning_rate": 4.239653333333334e-05, + "loss": 2.217989654541016, + "step": 114100 + }, + { + "epoch": 15.226666666666667, + "grad_norm": 0.3158329725265503, + "learning_rate": 4.2389866666666665e-05, + "loss": 2.213584442138672, + "step": 114200 + }, + { + "epoch": 15.24, + "grad_norm": 0.3473946750164032, + "learning_rate": 4.23832e-05, + "loss": 2.212930450439453, + "step": 114300 + }, + { + "epoch": 15.253333333333334, + "grad_norm": 0.32019126415252686, + "learning_rate": 4.237653333333334e-05, + "loss": 2.2173892211914064, + "step": 114400 + }, + { + "epoch": 15.266666666666667, + "grad_norm": 0.31340309977531433, + "learning_rate": 4.236986666666667e-05, + "loss": 2.2174838256835936, + "step": 114500 + }, + { + "epoch": 15.28, + "grad_norm": 0.33847081661224365, + "learning_rate": 4.236326666666667e-05, + "loss": 2.21783203125, + "step": 114600 + }, + { + "epoch": 15.293333333333333, + "grad_norm": 0.32491597533226013, + "learning_rate": 4.23566e-05, + "loss": 2.2157107543945314, + "step": 114700 + }, + { + "epoch": 15.306666666666667, + "grad_norm": 0.3161472976207733, + "learning_rate": 4.234993333333333e-05, + "loss": 2.2165769958496093, + "step": 114800 + }, + { + "epoch": 15.32, + "grad_norm": 0.35170355439186096, + "learning_rate": 4.234326666666667e-05, + "loss": 2.217754211425781, + "step": 114900 + }, + { + "epoch": 15.333333333333334, + "grad_norm": 0.3464552164077759, + "learning_rate": 4.2336600000000004e-05, + "loss": 2.219124450683594, + "step": 115000 + }, + { + "epoch": 15.346666666666668, + "grad_norm": 0.2998979389667511, + "learning_rate": 4.2329933333333336e-05, + "loss": 2.218946075439453, + "step": 115100 + }, + { + "epoch": 15.36, + "grad_norm": 0.33624839782714844, + "learning_rate": 4.232326666666667e-05, + "loss": 2.2174595642089843, + "step": 115200 + }, + { + "epoch": 15.373333333333333, + "grad_norm": 0.322299987077713, + "learning_rate": 4.23166e-05, + "loss": 2.2204608154296874, + "step": 115300 + }, + { + "epoch": 15.386666666666667, + "grad_norm": 0.3346404731273651, + "learning_rate": 4.230993333333333e-05, + "loss": 2.220567169189453, + "step": 115400 + }, + { + "epoch": 15.4, + "grad_norm": 0.3098982870578766, + "learning_rate": 4.230326666666667e-05, + "loss": 2.2207266235351564, + "step": 115500 + }, + { + "epoch": 15.413333333333334, + "grad_norm": 0.31962502002716064, + "learning_rate": 4.2296600000000004e-05, + "loss": 2.2188589477539065, + "step": 115600 + }, + { + "epoch": 15.426666666666666, + "grad_norm": 0.3353968560695648, + "learning_rate": 4.2289933333333337e-05, + "loss": 2.2199302673339845, + "step": 115700 + }, + { + "epoch": 15.44, + "grad_norm": 0.30936282873153687, + "learning_rate": 4.228326666666667e-05, + "loss": 2.2257254028320315, + "step": 115800 + }, + { + "epoch": 15.453333333333333, + "grad_norm": 0.30855420231819153, + "learning_rate": 4.22766e-05, + "loss": 2.2245237731933596, + "step": 115900 + }, + { + "epoch": 15.466666666666667, + "grad_norm": 0.3352759778499603, + "learning_rate": 4.226993333333333e-05, + "loss": 2.2239312744140625, + "step": 116000 + }, + { + "epoch": 15.48, + "grad_norm": 0.34826841950416565, + "learning_rate": 4.2263266666666666e-05, + "loss": 2.222242889404297, + "step": 116100 + }, + { + "epoch": 15.493333333333334, + "grad_norm": 0.30927276611328125, + "learning_rate": 4.2256600000000005e-05, + "loss": 2.22566650390625, + "step": 116200 + }, + { + "epoch": 15.506666666666666, + "grad_norm": 0.3213530480861664, + "learning_rate": 4.224993333333334e-05, + "loss": 2.2234091186523437, + "step": 116300 + }, + { + "epoch": 15.52, + "grad_norm": 0.3208419382572174, + "learning_rate": 4.224326666666667e-05, + "loss": 2.221222686767578, + "step": 116400 + }, + { + "epoch": 15.533333333333333, + "grad_norm": 0.3189323842525482, + "learning_rate": 4.22366e-05, + "loss": 2.22309814453125, + "step": 116500 + }, + { + "epoch": 15.546666666666667, + "grad_norm": 0.32015132904052734, + "learning_rate": 4.222993333333334e-05, + "loss": 2.224478302001953, + "step": 116600 + }, + { + "epoch": 15.56, + "grad_norm": 0.3235848844051361, + "learning_rate": 4.222333333333334e-05, + "loss": 2.22633544921875, + "step": 116700 + }, + { + "epoch": 15.573333333333334, + "grad_norm": 0.31360262632369995, + "learning_rate": 4.221666666666667e-05, + "loss": 2.223683624267578, + "step": 116800 + }, + { + "epoch": 15.586666666666666, + "grad_norm": 0.3163805603981018, + "learning_rate": 4.221e-05, + "loss": 2.226057891845703, + "step": 116900 + }, + { + "epoch": 15.6, + "grad_norm": 0.3102477192878723, + "learning_rate": 4.2203333333333336e-05, + "loss": 2.228474578857422, + "step": 117000 + }, + { + "epoch": 15.613333333333333, + "grad_norm": 0.30548936128616333, + "learning_rate": 4.219666666666667e-05, + "loss": 2.2281097412109374, + "step": 117100 + }, + { + "epoch": 15.626666666666667, + "grad_norm": 0.33137276768684387, + "learning_rate": 4.219e-05, + "loss": 2.227537841796875, + "step": 117200 + }, + { + "epoch": 15.64, + "grad_norm": 0.32980573177337646, + "learning_rate": 4.218333333333333e-05, + "loss": 2.2250877380371095, + "step": 117300 + }, + { + "epoch": 15.653333333333332, + "grad_norm": 0.34230107069015503, + "learning_rate": 4.217666666666667e-05, + "loss": 2.2286297607421877, + "step": 117400 + }, + { + "epoch": 15.666666666666666, + "grad_norm": 0.31690576672554016, + "learning_rate": 4.2170000000000005e-05, + "loss": 2.228667907714844, + "step": 117500 + }, + { + "epoch": 15.68, + "grad_norm": 0.32873931527137756, + "learning_rate": 4.216333333333334e-05, + "loss": 2.229040222167969, + "step": 117600 + }, + { + "epoch": 15.693333333333333, + "grad_norm": 0.31361329555511475, + "learning_rate": 4.215666666666667e-05, + "loss": 2.229720153808594, + "step": 117700 + }, + { + "epoch": 15.706666666666667, + "grad_norm": 0.30917590856552124, + "learning_rate": 4.215e-05, + "loss": 2.2290550231933595, + "step": 117800 + }, + { + "epoch": 15.72, + "grad_norm": 0.31262990832328796, + "learning_rate": 4.2143333333333334e-05, + "loss": 2.229103698730469, + "step": 117900 + }, + { + "epoch": 15.733333333333333, + "grad_norm": 0.32043468952178955, + "learning_rate": 4.2136666666666666e-05, + "loss": 2.2294845581054688, + "step": 118000 + }, + { + "epoch": 15.746666666666666, + "grad_norm": 0.31594914197921753, + "learning_rate": 4.2130000000000005e-05, + "loss": 2.2269740295410156, + "step": 118100 + }, + { + "epoch": 15.76, + "grad_norm": 0.3129127025604248, + "learning_rate": 4.212333333333334e-05, + "loss": 2.232552947998047, + "step": 118200 + }, + { + "epoch": 15.773333333333333, + "grad_norm": 0.3038434088230133, + "learning_rate": 4.211666666666667e-05, + "loss": 2.232527770996094, + "step": 118300 + }, + { + "epoch": 15.786666666666667, + "grad_norm": 0.3090043067932129, + "learning_rate": 4.211e-05, + "loss": 2.229136505126953, + "step": 118400 + }, + { + "epoch": 15.8, + "grad_norm": 0.32611995935440063, + "learning_rate": 4.2103333333333334e-05, + "loss": 2.2315130615234375, + "step": 118500 + }, + { + "epoch": 15.813333333333333, + "grad_norm": 0.31808626651763916, + "learning_rate": 4.2096666666666666e-05, + "loss": 2.2304783630371094, + "step": 118600 + }, + { + "epoch": 15.826666666666666, + "grad_norm": 0.3187323808670044, + "learning_rate": 4.2090066666666665e-05, + "loss": 2.2350709533691404, + "step": 118700 + }, + { + "epoch": 15.84, + "grad_norm": 0.3571641445159912, + "learning_rate": 4.20834e-05, + "loss": 2.231884002685547, + "step": 118800 + }, + { + "epoch": 15.853333333333333, + "grad_norm": 0.3414985239505768, + "learning_rate": 4.207673333333334e-05, + "loss": 2.2351057434082033, + "step": 118900 + }, + { + "epoch": 15.866666666666667, + "grad_norm": 0.3118877112865448, + "learning_rate": 4.207006666666667e-05, + "loss": 2.231129150390625, + "step": 119000 + }, + { + "epoch": 15.88, + "grad_norm": 0.319547176361084, + "learning_rate": 4.20634e-05, + "loss": 2.234002685546875, + "step": 119100 + }, + { + "epoch": 15.893333333333333, + "grad_norm": 0.3334439992904663, + "learning_rate": 4.205673333333334e-05, + "loss": 2.236300201416016, + "step": 119200 + }, + { + "epoch": 15.906666666666666, + "grad_norm": 0.31229543685913086, + "learning_rate": 4.205006666666667e-05, + "loss": 2.2334967041015625, + "step": 119300 + }, + { + "epoch": 15.92, + "grad_norm": 0.3132321834564209, + "learning_rate": 4.20434e-05, + "loss": 2.2348391723632814, + "step": 119400 + }, + { + "epoch": 15.933333333333334, + "grad_norm": 0.3149288594722748, + "learning_rate": 4.203673333333333e-05, + "loss": 2.2346974182128907, + "step": 119500 + }, + { + "epoch": 15.946666666666667, + "grad_norm": 0.31693968176841736, + "learning_rate": 4.203006666666667e-05, + "loss": 2.233512268066406, + "step": 119600 + }, + { + "epoch": 15.96, + "grad_norm": 0.3221350312232971, + "learning_rate": 4.20234e-05, + "loss": 2.2346560668945314, + "step": 119700 + }, + { + "epoch": 15.973333333333333, + "grad_norm": 0.3314872682094574, + "learning_rate": 4.2016733333333334e-05, + "loss": 2.2337542724609376, + "step": 119800 + }, + { + "epoch": 15.986666666666666, + "grad_norm": 0.2964302599430084, + "learning_rate": 4.201006666666667e-05, + "loss": 2.235452423095703, + "step": 119900 + }, + { + "epoch": 16.0, + "grad_norm": 0.30500471591949463, + "learning_rate": 4.2003400000000005e-05, + "loss": 2.2356527709960936, + "step": 120000 + }, + { + "epoch": 16.013333333333332, + "grad_norm": 0.33137601613998413, + "learning_rate": 4.199673333333334e-05, + "loss": 2.191378479003906, + "step": 120100 + }, + { + "epoch": 16.026666666666667, + "grad_norm": 0.3438156843185425, + "learning_rate": 4.199006666666667e-05, + "loss": 2.1892555236816404, + "step": 120200 + }, + { + "epoch": 16.04, + "grad_norm": 0.3476172983646393, + "learning_rate": 4.19834e-05, + "loss": 2.185308380126953, + "step": 120300 + }, + { + "epoch": 16.053333333333335, + "grad_norm": 0.3344581723213196, + "learning_rate": 4.1976733333333334e-05, + "loss": 2.1885577392578126, + "step": 120400 + }, + { + "epoch": 16.066666666666666, + "grad_norm": 0.3536999225616455, + "learning_rate": 4.1970066666666666e-05, + "loss": 2.190690002441406, + "step": 120500 + }, + { + "epoch": 16.08, + "grad_norm": 0.327150821685791, + "learning_rate": 4.1963400000000006e-05, + "loss": 2.192127532958984, + "step": 120600 + }, + { + "epoch": 16.093333333333334, + "grad_norm": 0.34501543641090393, + "learning_rate": 4.195673333333334e-05, + "loss": 2.1904525756835938, + "step": 120700 + }, + { + "epoch": 16.106666666666666, + "grad_norm": 0.33292821049690247, + "learning_rate": 4.195006666666667e-05, + "loss": 2.1916839599609377, + "step": 120800 + }, + { + "epoch": 16.12, + "grad_norm": 0.33096081018447876, + "learning_rate": 4.194346666666667e-05, + "loss": 2.1918682861328125, + "step": 120900 + }, + { + "epoch": 16.133333333333333, + "grad_norm": 0.342189759016037, + "learning_rate": 4.19368e-05, + "loss": 2.194641418457031, + "step": 121000 + }, + { + "epoch": 16.14666666666667, + "grad_norm": 0.3368053436279297, + "learning_rate": 4.193013333333334e-05, + "loss": 2.1912602233886718, + "step": 121100 + }, + { + "epoch": 16.16, + "grad_norm": 0.32896357774734497, + "learning_rate": 4.1923466666666666e-05, + "loss": 2.191945343017578, + "step": 121200 + }, + { + "epoch": 16.173333333333332, + "grad_norm": 0.3394027352333069, + "learning_rate": 4.19168e-05, + "loss": 2.1953201293945312, + "step": 121300 + }, + { + "epoch": 16.186666666666667, + "grad_norm": 0.3458661735057831, + "learning_rate": 4.191013333333334e-05, + "loss": 2.191509246826172, + "step": 121400 + }, + { + "epoch": 16.2, + "grad_norm": 0.3341262936592102, + "learning_rate": 4.190346666666667e-05, + "loss": 2.196238708496094, + "step": 121500 + }, + { + "epoch": 16.213333333333335, + "grad_norm": 0.3546558916568756, + "learning_rate": 4.18968e-05, + "loss": 2.197465515136719, + "step": 121600 + }, + { + "epoch": 16.226666666666667, + "grad_norm": 0.322582483291626, + "learning_rate": 4.1890133333333334e-05, + "loss": 2.19465576171875, + "step": 121700 + }, + { + "epoch": 16.24, + "grad_norm": 0.33463671803474426, + "learning_rate": 4.188346666666667e-05, + "loss": 2.1976629638671876, + "step": 121800 + }, + { + "epoch": 16.253333333333334, + "grad_norm": 0.3399517834186554, + "learning_rate": 4.18768e-05, + "loss": 2.1987896728515626, + "step": 121900 + }, + { + "epoch": 16.266666666666666, + "grad_norm": 0.3466789722442627, + "learning_rate": 4.187013333333333e-05, + "loss": 2.197012939453125, + "step": 122000 + }, + { + "epoch": 16.28, + "grad_norm": 0.3435020446777344, + "learning_rate": 4.186346666666667e-05, + "loss": 2.1984803771972654, + "step": 122100 + }, + { + "epoch": 16.293333333333333, + "grad_norm": 0.33346107602119446, + "learning_rate": 4.18568e-05, + "loss": 2.2026689147949217, + "step": 122200 + }, + { + "epoch": 16.306666666666665, + "grad_norm": 0.3218962550163269, + "learning_rate": 4.1850133333333334e-05, + "loss": 2.199356689453125, + "step": 122300 + }, + { + "epoch": 16.32, + "grad_norm": 0.35545775294303894, + "learning_rate": 4.184346666666667e-05, + "loss": 2.2024908447265625, + "step": 122400 + }, + { + "epoch": 16.333333333333332, + "grad_norm": 0.33396291732788086, + "learning_rate": 4.1836800000000006e-05, + "loss": 2.198677215576172, + "step": 122500 + }, + { + "epoch": 16.346666666666668, + "grad_norm": 0.3423805236816406, + "learning_rate": 4.183013333333334e-05, + "loss": 2.203605041503906, + "step": 122600 + }, + { + "epoch": 16.36, + "grad_norm": 0.3493040204048157, + "learning_rate": 4.1823466666666664e-05, + "loss": 2.2042369079589843, + "step": 122700 + }, + { + "epoch": 16.373333333333335, + "grad_norm": 0.32711881399154663, + "learning_rate": 4.18168e-05, + "loss": 2.20152099609375, + "step": 122800 + }, + { + "epoch": 16.386666666666667, + "grad_norm": 0.3408143222332001, + "learning_rate": 4.18102e-05, + "loss": 2.20054931640625, + "step": 122900 + }, + { + "epoch": 16.4, + "grad_norm": 0.3470470607280731, + "learning_rate": 4.1803533333333334e-05, + "loss": 2.203308410644531, + "step": 123000 + }, + { + "epoch": 16.413333333333334, + "grad_norm": 0.3393367826938629, + "learning_rate": 4.1796866666666666e-05, + "loss": 2.203702392578125, + "step": 123100 + }, + { + "epoch": 16.426666666666666, + "grad_norm": 0.3487272560596466, + "learning_rate": 4.17902e-05, + "loss": 2.207674713134766, + "step": 123200 + }, + { + "epoch": 16.44, + "grad_norm": 0.31673720479011536, + "learning_rate": 4.178353333333334e-05, + "loss": 2.2054902648925783, + "step": 123300 + }, + { + "epoch": 16.453333333333333, + "grad_norm": 0.34609508514404297, + "learning_rate": 4.177686666666667e-05, + "loss": 2.2037092590332032, + "step": 123400 + }, + { + "epoch": 16.466666666666665, + "grad_norm": 0.3488747477531433, + "learning_rate": 4.17702e-05, + "loss": 2.2059857177734377, + "step": 123500 + }, + { + "epoch": 16.48, + "grad_norm": 0.34992608428001404, + "learning_rate": 4.176353333333334e-05, + "loss": 2.205555877685547, + "step": 123600 + }, + { + "epoch": 16.493333333333332, + "grad_norm": 0.3459303677082062, + "learning_rate": 4.1756866666666667e-05, + "loss": 2.2075044250488283, + "step": 123700 + }, + { + "epoch": 16.506666666666668, + "grad_norm": 0.34837567806243896, + "learning_rate": 4.17502e-05, + "loss": 2.2081297302246092, + "step": 123800 + }, + { + "epoch": 16.52, + "grad_norm": 0.3326612710952759, + "learning_rate": 4.174353333333334e-05, + "loss": 2.2074159240722655, + "step": 123900 + }, + { + "epoch": 16.533333333333335, + "grad_norm": 0.343517929315567, + "learning_rate": 4.173686666666667e-05, + "loss": 2.205991058349609, + "step": 124000 + }, + { + "epoch": 16.546666666666667, + "grad_norm": 0.36404263973236084, + "learning_rate": 4.17302e-05, + "loss": 2.2090086364746093, + "step": 124100 + }, + { + "epoch": 16.56, + "grad_norm": 0.3330126404762268, + "learning_rate": 4.1723533333333335e-05, + "loss": 2.207509002685547, + "step": 124200 + }, + { + "epoch": 16.573333333333334, + "grad_norm": 0.3251371681690216, + "learning_rate": 4.1716866666666674e-05, + "loss": 2.2095204162597657, + "step": 124300 + }, + { + "epoch": 16.586666666666666, + "grad_norm": 0.3344780206680298, + "learning_rate": 4.17102e-05, + "loss": 2.2100448608398438, + "step": 124400 + }, + { + "epoch": 16.6, + "grad_norm": 0.3297218978404999, + "learning_rate": 4.170353333333333e-05, + "loss": 2.211772613525391, + "step": 124500 + }, + { + "epoch": 16.613333333333333, + "grad_norm": 0.32694414258003235, + "learning_rate": 4.169686666666667e-05, + "loss": 2.2118515014648437, + "step": 124600 + }, + { + "epoch": 16.626666666666665, + "grad_norm": 0.3583586812019348, + "learning_rate": 4.16902e-05, + "loss": 2.208268737792969, + "step": 124700 + }, + { + "epoch": 16.64, + "grad_norm": 0.3415539562702179, + "learning_rate": 4.1683533333333335e-05, + "loss": 2.210078125, + "step": 124800 + }, + { + "epoch": 16.653333333333332, + "grad_norm": 0.3332410752773285, + "learning_rate": 4.167686666666667e-05, + "loss": 2.209375915527344, + "step": 124900 + }, + { + "epoch": 16.666666666666668, + "grad_norm": 0.3438263237476349, + "learning_rate": 4.1670200000000006e-05, + "loss": 2.213215789794922, + "step": 125000 + }, + { + "epoch": 16.68, + "grad_norm": 0.33631184697151184, + "learning_rate": 4.1663600000000005e-05, + "loss": 2.2115354919433594, + "step": 125100 + }, + { + "epoch": 16.693333333333335, + "grad_norm": 0.33590415120124817, + "learning_rate": 4.165693333333334e-05, + "loss": 2.2166558837890626, + "step": 125200 + }, + { + "epoch": 16.706666666666667, + "grad_norm": 0.33931294083595276, + "learning_rate": 4.165026666666667e-05, + "loss": 2.2135350036621095, + "step": 125300 + }, + { + "epoch": 16.72, + "grad_norm": 0.3370099365711212, + "learning_rate": 4.16436e-05, + "loss": 2.2108302307128906, + "step": 125400 + }, + { + "epoch": 16.733333333333334, + "grad_norm": 0.3390389680862427, + "learning_rate": 4.1636933333333335e-05, + "loss": 2.2139320373535156, + "step": 125500 + }, + { + "epoch": 16.746666666666666, + "grad_norm": 0.33029329776763916, + "learning_rate": 4.163026666666667e-05, + "loss": 2.2104266357421873, + "step": 125600 + }, + { + "epoch": 16.76, + "grad_norm": 0.3493773937225342, + "learning_rate": 4.16236e-05, + "loss": 2.2143878173828124, + "step": 125700 + }, + { + "epoch": 16.773333333333333, + "grad_norm": 0.3342851400375366, + "learning_rate": 4.161693333333334e-05, + "loss": 2.2172373962402343, + "step": 125800 + }, + { + "epoch": 16.786666666666665, + "grad_norm": 0.33905649185180664, + "learning_rate": 4.161026666666667e-05, + "loss": 2.2138526916503904, + "step": 125900 + }, + { + "epoch": 16.8, + "grad_norm": 0.33980846405029297, + "learning_rate": 4.16036e-05, + "loss": 2.2161383056640624, + "step": 126000 + }, + { + "epoch": 16.813333333333333, + "grad_norm": 0.3446345627307892, + "learning_rate": 4.1596933333333335e-05, + "loss": 2.214365234375, + "step": 126100 + }, + { + "epoch": 16.826666666666668, + "grad_norm": 0.32393285632133484, + "learning_rate": 4.159026666666667e-05, + "loss": 2.2161341857910157, + "step": 126200 + }, + { + "epoch": 16.84, + "grad_norm": 0.32899361848831177, + "learning_rate": 4.15836e-05, + "loss": 2.2143894958496095, + "step": 126300 + }, + { + "epoch": 16.85333333333333, + "grad_norm": 0.33458665013313293, + "learning_rate": 4.157693333333333e-05, + "loss": 2.2169989013671874, + "step": 126400 + }, + { + "epoch": 16.866666666666667, + "grad_norm": 0.34240177273750305, + "learning_rate": 4.157026666666667e-05, + "loss": 2.216192169189453, + "step": 126500 + }, + { + "epoch": 16.88, + "grad_norm": 0.33219918608665466, + "learning_rate": 4.15636e-05, + "loss": 2.216274871826172, + "step": 126600 + }, + { + "epoch": 16.893333333333334, + "grad_norm": 0.3476578891277313, + "learning_rate": 4.1556933333333335e-05, + "loss": 2.2149917602539064, + "step": 126700 + }, + { + "epoch": 16.906666666666666, + "grad_norm": 0.3385222852230072, + "learning_rate": 4.155026666666667e-05, + "loss": 2.21719482421875, + "step": 126800 + }, + { + "epoch": 16.92, + "grad_norm": 0.3350334167480469, + "learning_rate": 4.1543600000000007e-05, + "loss": 2.2180024719238283, + "step": 126900 + }, + { + "epoch": 16.933333333333334, + "grad_norm": 0.3438946604728699, + "learning_rate": 4.153693333333333e-05, + "loss": 2.217221221923828, + "step": 127000 + }, + { + "epoch": 16.946666666666665, + "grad_norm": 0.35046643018722534, + "learning_rate": 4.153033333333334e-05, + "loss": 2.220390625, + "step": 127100 + }, + { + "epoch": 16.96, + "grad_norm": 0.34361323714256287, + "learning_rate": 4.1523666666666663e-05, + "loss": 2.216808013916016, + "step": 127200 + }, + { + "epoch": 16.973333333333333, + "grad_norm": 0.32188111543655396, + "learning_rate": 4.1517e-05, + "loss": 2.2157418823242185, + "step": 127300 + }, + { + "epoch": 16.986666666666668, + "grad_norm": 0.32064762711524963, + "learning_rate": 4.1510333333333335e-05, + "loss": 2.2176025390625, + "step": 127400 + }, + { + "epoch": 17.0, + "grad_norm": 0.3368901014328003, + "learning_rate": 4.150366666666667e-05, + "loss": 2.219560241699219, + "step": 127500 + }, + { + "epoch": 17.013333333333332, + "grad_norm": 0.34540697932243347, + "learning_rate": 4.1497e-05, + "loss": 2.1651565551757814, + "step": 127600 + }, + { + "epoch": 17.026666666666667, + "grad_norm": 0.3554867208003998, + "learning_rate": 4.149033333333334e-05, + "loss": 2.168620910644531, + "step": 127700 + }, + { + "epoch": 17.04, + "grad_norm": 0.35656651854515076, + "learning_rate": 4.148366666666667e-05, + "loss": 2.1688262939453127, + "step": 127800 + }, + { + "epoch": 17.053333333333335, + "grad_norm": 0.434224396944046, + "learning_rate": 4.1477e-05, + "loss": 2.1681300354003907, + "step": 127900 + }, + { + "epoch": 17.066666666666666, + "grad_norm": 0.3526768386363983, + "learning_rate": 4.1470333333333335e-05, + "loss": 2.1689207458496096, + "step": 128000 + }, + { + "epoch": 17.08, + "grad_norm": 0.35668861865997314, + "learning_rate": 4.146366666666667e-05, + "loss": 2.168590240478516, + "step": 128100 + }, + { + "epoch": 17.093333333333334, + "grad_norm": 0.368394672870636, + "learning_rate": 4.1457e-05, + "loss": 2.173952941894531, + "step": 128200 + }, + { + "epoch": 17.106666666666666, + "grad_norm": 0.3651200532913208, + "learning_rate": 4.145033333333334e-05, + "loss": 2.172222137451172, + "step": 128300 + }, + { + "epoch": 17.12, + "grad_norm": 0.36325615644454956, + "learning_rate": 4.144366666666667e-05, + "loss": 2.16880859375, + "step": 128400 + }, + { + "epoch": 17.133333333333333, + "grad_norm": 0.3802001476287842, + "learning_rate": 4.1437e-05, + "loss": 2.1748728942871094, + "step": 128500 + }, + { + "epoch": 17.14666666666667, + "grad_norm": 0.3565540611743927, + "learning_rate": 4.1430333333333336e-05, + "loss": 2.1752804565429686, + "step": 128600 + }, + { + "epoch": 17.16, + "grad_norm": 0.3572203814983368, + "learning_rate": 4.142366666666667e-05, + "loss": 2.1743450927734376, + "step": 128700 + }, + { + "epoch": 17.173333333333332, + "grad_norm": 0.350844144821167, + "learning_rate": 4.1417e-05, + "loss": 2.172934722900391, + "step": 128800 + }, + { + "epoch": 17.186666666666667, + "grad_norm": 0.36539897322654724, + "learning_rate": 4.141033333333333e-05, + "loss": 2.176778564453125, + "step": 128900 + }, + { + "epoch": 17.2, + "grad_norm": 0.35811370611190796, + "learning_rate": 4.140366666666667e-05, + "loss": 2.174437713623047, + "step": 129000 + }, + { + "epoch": 17.213333333333335, + "grad_norm": 0.3664299547672272, + "learning_rate": 4.139706666666667e-05, + "loss": 2.1781724548339843, + "step": 129100 + }, + { + "epoch": 17.226666666666667, + "grad_norm": 0.3659532070159912, + "learning_rate": 4.13904e-05, + "loss": 2.176842041015625, + "step": 129200 + }, + { + "epoch": 17.24, + "grad_norm": 0.36825552582740784, + "learning_rate": 4.1383733333333335e-05, + "loss": 2.179559631347656, + "step": 129300 + }, + { + "epoch": 17.253333333333334, + "grad_norm": 0.36417168378829956, + "learning_rate": 4.137706666666667e-05, + "loss": 2.182062072753906, + "step": 129400 + }, + { + "epoch": 17.266666666666666, + "grad_norm": 0.3718934655189514, + "learning_rate": 4.1370400000000006e-05, + "loss": 2.180594177246094, + "step": 129500 + }, + { + "epoch": 17.28, + "grad_norm": 0.3516819477081299, + "learning_rate": 4.136373333333334e-05, + "loss": 2.180480499267578, + "step": 129600 + }, + { + "epoch": 17.293333333333333, + "grad_norm": 0.3652108609676361, + "learning_rate": 4.1357066666666664e-05, + "loss": 2.182070770263672, + "step": 129700 + }, + { + "epoch": 17.306666666666665, + "grad_norm": 0.3595081865787506, + "learning_rate": 4.13504e-05, + "loss": 2.1821852111816407, + "step": 129800 + }, + { + "epoch": 17.32, + "grad_norm": 0.3393441140651703, + "learning_rate": 4.1343733333333335e-05, + "loss": 2.178795166015625, + "step": 129900 + }, + { + "epoch": 17.333333333333332, + "grad_norm": 0.36966830492019653, + "learning_rate": 4.133706666666667e-05, + "loss": 2.1857032775878906, + "step": 130000 + }, + { + "epoch": 17.346666666666668, + "grad_norm": 0.3546712100505829, + "learning_rate": 4.13304e-05, + "loss": 2.180518798828125, + "step": 130100 + }, + { + "epoch": 17.36, + "grad_norm": 0.37151312828063965, + "learning_rate": 4.132373333333334e-05, + "loss": 2.1837088012695314, + "step": 130200 + }, + { + "epoch": 17.373333333333335, + "grad_norm": 0.34406447410583496, + "learning_rate": 4.131706666666667e-05, + "loss": 2.1844528198242186, + "step": 130300 + }, + { + "epoch": 17.386666666666667, + "grad_norm": 0.44284486770629883, + "learning_rate": 4.1310400000000003e-05, + "loss": 2.1846923828125, + "step": 130400 + }, + { + "epoch": 17.4, + "grad_norm": 0.38338637351989746, + "learning_rate": 4.1303733333333336e-05, + "loss": 2.1837538146972655, + "step": 130500 + }, + { + "epoch": 17.413333333333334, + "grad_norm": 0.3616061210632324, + "learning_rate": 4.129706666666667e-05, + "loss": 2.1846038818359377, + "step": 130600 + }, + { + "epoch": 17.426666666666666, + "grad_norm": 0.35662466287612915, + "learning_rate": 4.12904e-05, + "loss": 2.186310272216797, + "step": 130700 + }, + { + "epoch": 17.44, + "grad_norm": 0.34366509318351746, + "learning_rate": 4.128373333333333e-05, + "loss": 2.1828770446777344, + "step": 130800 + }, + { + "epoch": 17.453333333333333, + "grad_norm": 0.35822221636772156, + "learning_rate": 4.127706666666667e-05, + "loss": 2.1853370666503906, + "step": 130900 + }, + { + "epoch": 17.466666666666665, + "grad_norm": 0.382191002368927, + "learning_rate": 4.1270400000000004e-05, + "loss": 2.184327392578125, + "step": 131000 + }, + { + "epoch": 17.48, + "grad_norm": 0.3557610511779785, + "learning_rate": 4.12638e-05, + "loss": 2.188468170166016, + "step": 131100 + }, + { + "epoch": 17.493333333333332, + "grad_norm": 0.3445620536804199, + "learning_rate": 4.1257133333333335e-05, + "loss": 2.1877789306640625, + "step": 131200 + }, + { + "epoch": 17.506666666666668, + "grad_norm": 0.356189489364624, + "learning_rate": 4.125046666666667e-05, + "loss": 2.186894989013672, + "step": 131300 + }, + { + "epoch": 17.52, + "grad_norm": 0.37347978353500366, + "learning_rate": 4.1243800000000007e-05, + "loss": 2.1881455993652343, + "step": 131400 + }, + { + "epoch": 17.533333333333335, + "grad_norm": 0.4915677309036255, + "learning_rate": 4.123713333333333e-05, + "loss": 2.188135528564453, + "step": 131500 + }, + { + "epoch": 17.546666666666667, + "grad_norm": 0.33609944581985474, + "learning_rate": 4.1230466666666664e-05, + "loss": 2.1907609558105468, + "step": 131600 + }, + { + "epoch": 17.56, + "grad_norm": 0.36254754662513733, + "learning_rate": 4.12238e-05, + "loss": 2.1870379638671875, + "step": 131700 + }, + { + "epoch": 17.573333333333334, + "grad_norm": 0.3741578459739685, + "learning_rate": 4.1217133333333336e-05, + "loss": 2.1931048583984376, + "step": 131800 + }, + { + "epoch": 17.586666666666666, + "grad_norm": 0.3609215319156647, + "learning_rate": 4.121046666666667e-05, + "loss": 2.19150146484375, + "step": 131900 + }, + { + "epoch": 17.6, + "grad_norm": 0.35999777913093567, + "learning_rate": 4.120380000000001e-05, + "loss": 2.191175537109375, + "step": 132000 + }, + { + "epoch": 17.613333333333333, + "grad_norm": 0.3569694459438324, + "learning_rate": 4.119713333333334e-05, + "loss": 2.192285614013672, + "step": 132100 + }, + { + "epoch": 17.626666666666665, + "grad_norm": 0.3714178502559662, + "learning_rate": 4.1190466666666665e-05, + "loss": 2.192773895263672, + "step": 132200 + }, + { + "epoch": 17.64, + "grad_norm": 0.3539521396160126, + "learning_rate": 4.11838e-05, + "loss": 2.190313415527344, + "step": 132300 + }, + { + "epoch": 17.653333333333332, + "grad_norm": 0.358467698097229, + "learning_rate": 4.1177133333333336e-05, + "loss": 2.195655517578125, + "step": 132400 + }, + { + "epoch": 17.666666666666668, + "grad_norm": 0.3586037755012512, + "learning_rate": 4.117046666666667e-05, + "loss": 2.192008819580078, + "step": 132500 + }, + { + "epoch": 17.68, + "grad_norm": 0.3595978915691376, + "learning_rate": 4.11638e-05, + "loss": 2.1931185913085938, + "step": 132600 + }, + { + "epoch": 17.693333333333335, + "grad_norm": 0.35596606135368347, + "learning_rate": 4.115713333333334e-05, + "loss": 2.1931863403320313, + "step": 132700 + }, + { + "epoch": 17.706666666666667, + "grad_norm": 0.349572092294693, + "learning_rate": 4.115046666666667e-05, + "loss": 2.1953758239746093, + "step": 132800 + }, + { + "epoch": 17.72, + "grad_norm": 0.3638124167919159, + "learning_rate": 4.1143800000000004e-05, + "loss": 2.197004547119141, + "step": 132900 + }, + { + "epoch": 17.733333333333334, + "grad_norm": 0.3515288531780243, + "learning_rate": 4.1137133333333336e-05, + "loss": 2.1984828186035155, + "step": 133000 + }, + { + "epoch": 17.746666666666666, + "grad_norm": 0.37091967463493347, + "learning_rate": 4.1130533333333335e-05, + "loss": 2.1952162170410157, + "step": 133100 + }, + { + "epoch": 17.76, + "grad_norm": 0.3641296923160553, + "learning_rate": 4.112386666666667e-05, + "loss": 2.1980247497558594, + "step": 133200 + }, + { + "epoch": 17.773333333333333, + "grad_norm": 0.3431222438812256, + "learning_rate": 4.11172e-05, + "loss": 2.196508483886719, + "step": 133300 + }, + { + "epoch": 17.786666666666665, + "grad_norm": 0.35797178745269775, + "learning_rate": 4.111053333333333e-05, + "loss": 2.199690704345703, + "step": 133400 + }, + { + "epoch": 17.8, + "grad_norm": 0.3545133173465729, + "learning_rate": 4.110386666666667e-05, + "loss": 2.1973370361328124, + "step": 133500 + }, + { + "epoch": 17.813333333333333, + "grad_norm": 0.36000749468803406, + "learning_rate": 4.1097200000000004e-05, + "loss": 2.2000468444824217, + "step": 133600 + }, + { + "epoch": 17.826666666666668, + "grad_norm": 0.3570917546749115, + "learning_rate": 4.1090533333333336e-05, + "loss": 2.199578857421875, + "step": 133700 + }, + { + "epoch": 17.84, + "grad_norm": 0.36283078789711, + "learning_rate": 4.108386666666667e-05, + "loss": 2.199168853759766, + "step": 133800 + }, + { + "epoch": 17.85333333333333, + "grad_norm": 0.37170839309692383, + "learning_rate": 4.107720000000001e-05, + "loss": 2.199163818359375, + "step": 133900 + }, + { + "epoch": 17.866666666666667, + "grad_norm": 0.35398539900779724, + "learning_rate": 4.107053333333333e-05, + "loss": 2.2005375671386718, + "step": 134000 + }, + { + "epoch": 17.88, + "grad_norm": 0.3618471622467041, + "learning_rate": 4.1063866666666665e-05, + "loss": 2.193340606689453, + "step": 134100 + }, + { + "epoch": 17.893333333333334, + "grad_norm": 0.36715346574783325, + "learning_rate": 4.1057200000000004e-05, + "loss": 2.201223602294922, + "step": 134200 + }, + { + "epoch": 17.906666666666666, + "grad_norm": 0.35410168766975403, + "learning_rate": 4.1050533333333336e-05, + "loss": 2.1994700622558594, + "step": 134300 + }, + { + "epoch": 17.92, + "grad_norm": 0.34702470898628235, + "learning_rate": 4.104386666666667e-05, + "loss": 2.2010435485839843, + "step": 134400 + }, + { + "epoch": 17.933333333333334, + "grad_norm": 0.33663272857666016, + "learning_rate": 4.10372e-05, + "loss": 2.2017396545410155, + "step": 134500 + }, + { + "epoch": 17.946666666666665, + "grad_norm": 0.36605820059776306, + "learning_rate": 4.103053333333334e-05, + "loss": 2.2016064453125, + "step": 134600 + }, + { + "epoch": 17.96, + "grad_norm": 0.3492322564125061, + "learning_rate": 4.1023866666666665e-05, + "loss": 2.202108154296875, + "step": 134700 + }, + { + "epoch": 17.973333333333333, + "grad_norm": 0.36869311332702637, + "learning_rate": 4.10172e-05, + "loss": 2.2017369079589844, + "step": 134800 + }, + { + "epoch": 17.986666666666668, + "grad_norm": 0.36540335416793823, + "learning_rate": 4.1010533333333337e-05, + "loss": 2.200558624267578, + "step": 134900 + }, + { + "epoch": 18.0, + "grad_norm": 0.36333802342414856, + "learning_rate": 4.100386666666667e-05, + "loss": 2.203197174072266, + "step": 135000 + }, + { + "epoch": 18.013333333333332, + "grad_norm": 0.3684398829936981, + "learning_rate": 4.09972e-05, + "loss": 2.144236297607422, + "step": 135100 + }, + { + "epoch": 18.026666666666667, + "grad_norm": 0.3864319622516632, + "learning_rate": 4.09906e-05, + "loss": 2.147691650390625, + "step": 135200 + }, + { + "epoch": 18.04, + "grad_norm": 0.39713576436042786, + "learning_rate": 4.098393333333333e-05, + "loss": 2.1479608154296876, + "step": 135300 + }, + { + "epoch": 18.053333333333335, + "grad_norm": 0.38535943627357483, + "learning_rate": 4.097726666666667e-05, + "loss": 2.149579620361328, + "step": 135400 + }, + { + "epoch": 18.066666666666666, + "grad_norm": 0.37120920419692993, + "learning_rate": 4.0970600000000004e-05, + "loss": 2.1504815673828124, + "step": 135500 + }, + { + "epoch": 18.08, + "grad_norm": 0.3953970968723297, + "learning_rate": 4.0963933333333336e-05, + "loss": 2.1479664611816407, + "step": 135600 + }, + { + "epoch": 18.093333333333334, + "grad_norm": 0.3948633372783661, + "learning_rate": 4.095726666666667e-05, + "loss": 2.1526097106933593, + "step": 135700 + }, + { + "epoch": 18.106666666666666, + "grad_norm": 0.38562309741973877, + "learning_rate": 4.09506e-05, + "loss": 2.147718963623047, + "step": 135800 + }, + { + "epoch": 18.12, + "grad_norm": 0.38705727458000183, + "learning_rate": 4.094393333333333e-05, + "loss": 2.1560462951660155, + "step": 135900 + }, + { + "epoch": 18.133333333333333, + "grad_norm": 0.3904648721218109, + "learning_rate": 4.0937266666666665e-05, + "loss": 2.148473815917969, + "step": 136000 + }, + { + "epoch": 18.14666666666667, + "grad_norm": 0.3789866268634796, + "learning_rate": 4.0930600000000004e-05, + "loss": 2.1551133728027345, + "step": 136100 + }, + { + "epoch": 18.16, + "grad_norm": 0.3716281056404114, + "learning_rate": 4.0923933333333336e-05, + "loss": 2.1517713928222655, + "step": 136200 + }, + { + "epoch": 18.173333333333332, + "grad_norm": 0.4038568437099457, + "learning_rate": 4.091726666666667e-05, + "loss": 2.154055633544922, + "step": 136300 + }, + { + "epoch": 18.186666666666667, + "grad_norm": 0.3836662173271179, + "learning_rate": 4.091060000000001e-05, + "loss": 2.1555635070800783, + "step": 136400 + }, + { + "epoch": 18.2, + "grad_norm": 0.4338989853858948, + "learning_rate": 4.090393333333333e-05, + "loss": 2.1564508056640626, + "step": 136500 + }, + { + "epoch": 18.213333333333335, + "grad_norm": 0.3803965747356415, + "learning_rate": 4.0897266666666665e-05, + "loss": 2.15535888671875, + "step": 136600 + }, + { + "epoch": 18.226666666666667, + "grad_norm": 0.38790804147720337, + "learning_rate": 4.08906e-05, + "loss": 2.155977935791016, + "step": 136700 + }, + { + "epoch": 18.24, + "grad_norm": 0.4054514169692993, + "learning_rate": 4.088393333333334e-05, + "loss": 2.1601606750488282, + "step": 136800 + }, + { + "epoch": 18.253333333333334, + "grad_norm": 0.39995694160461426, + "learning_rate": 4.087726666666667e-05, + "loss": 2.1544822692871093, + "step": 136900 + }, + { + "epoch": 18.266666666666666, + "grad_norm": 0.399427592754364, + "learning_rate": 4.08706e-05, + "loss": 2.157484436035156, + "step": 137000 + }, + { + "epoch": 18.28, + "grad_norm": 0.380747526884079, + "learning_rate": 4.086393333333334e-05, + "loss": 2.1604388427734373, + "step": 137100 + }, + { + "epoch": 18.293333333333333, + "grad_norm": 0.3849477767944336, + "learning_rate": 4.085733333333334e-05, + "loss": 2.1585659790039062, + "step": 137200 + }, + { + "epoch": 18.306666666666665, + "grad_norm": 0.3770460784435272, + "learning_rate": 4.085066666666667e-05, + "loss": 2.1618302917480468, + "step": 137300 + }, + { + "epoch": 18.32, + "grad_norm": 0.4081668257713318, + "learning_rate": 4.0844000000000004e-05, + "loss": 2.1609623718261717, + "step": 137400 + }, + { + "epoch": 18.333333333333332, + "grad_norm": 0.37667742371559143, + "learning_rate": 4.0837333333333336e-05, + "loss": 2.162608642578125, + "step": 137500 + }, + { + "epoch": 18.346666666666668, + "grad_norm": 0.3946523070335388, + "learning_rate": 4.083066666666667e-05, + "loss": 2.1644091796875, + "step": 137600 + }, + { + "epoch": 18.36, + "grad_norm": 0.38843250274658203, + "learning_rate": 4.0824e-05, + "loss": 2.161121063232422, + "step": 137700 + }, + { + "epoch": 18.373333333333335, + "grad_norm": 0.4010300040245056, + "learning_rate": 4.081733333333333e-05, + "loss": 2.1667359924316405, + "step": 137800 + }, + { + "epoch": 18.386666666666667, + "grad_norm": 0.3785018026828766, + "learning_rate": 4.081066666666667e-05, + "loss": 2.167360992431641, + "step": 137900 + }, + { + "epoch": 18.4, + "grad_norm": 0.39816367626190186, + "learning_rate": 4.0804000000000004e-05, + "loss": 2.164031677246094, + "step": 138000 + }, + { + "epoch": 18.413333333333334, + "grad_norm": 0.38204148411750793, + "learning_rate": 4.079733333333334e-05, + "loss": 2.166887054443359, + "step": 138100 + }, + { + "epoch": 18.426666666666666, + "grad_norm": 0.36739620566368103, + "learning_rate": 4.079066666666667e-05, + "loss": 2.1648483276367188, + "step": 138200 + }, + { + "epoch": 18.44, + "grad_norm": 0.40818193554878235, + "learning_rate": 4.0784e-05, + "loss": 2.167153778076172, + "step": 138300 + }, + { + "epoch": 18.453333333333333, + "grad_norm": 0.3707272410392761, + "learning_rate": 4.0777333333333333e-05, + "loss": 2.1704667663574218, + "step": 138400 + }, + { + "epoch": 18.466666666666665, + "grad_norm": 0.3825608491897583, + "learning_rate": 4.0770666666666666e-05, + "loss": 2.1677491760253904, + "step": 138500 + }, + { + "epoch": 18.48, + "grad_norm": 0.3704966902732849, + "learning_rate": 4.0764000000000005e-05, + "loss": 2.168622589111328, + "step": 138600 + }, + { + "epoch": 18.493333333333332, + "grad_norm": 0.38297003507614136, + "learning_rate": 4.075733333333334e-05, + "loss": 2.1695802307128904, + "step": 138700 + }, + { + "epoch": 18.506666666666668, + "grad_norm": 0.369875431060791, + "learning_rate": 4.075066666666667e-05, + "loss": 2.1684419250488283, + "step": 138800 + }, + { + "epoch": 18.52, + "grad_norm": 0.38239753246307373, + "learning_rate": 4.0744e-05, + "loss": 2.1713496398925782, + "step": 138900 + }, + { + "epoch": 18.533333333333335, + "grad_norm": 0.37456804513931274, + "learning_rate": 4.0737333333333334e-05, + "loss": 2.171775360107422, + "step": 139000 + }, + { + "epoch": 18.546666666666667, + "grad_norm": 0.36324089765548706, + "learning_rate": 4.0730666666666666e-05, + "loss": 2.168131103515625, + "step": 139100 + }, + { + "epoch": 18.56, + "grad_norm": 0.3825380206108093, + "learning_rate": 4.0724066666666665e-05, + "loss": 2.1711878967285156, + "step": 139200 + }, + { + "epoch": 18.573333333333334, + "grad_norm": 0.38280192017555237, + "learning_rate": 4.07174e-05, + "loss": 2.1701324462890623, + "step": 139300 + }, + { + "epoch": 18.586666666666666, + "grad_norm": 0.3777543902397156, + "learning_rate": 4.0710733333333336e-05, + "loss": 2.1692018127441406, + "step": 139400 + }, + { + "epoch": 18.6, + "grad_norm": 0.387617290019989, + "learning_rate": 4.070406666666667e-05, + "loss": 2.1738621520996095, + "step": 139500 + }, + { + "epoch": 18.613333333333333, + "grad_norm": 0.38992756605148315, + "learning_rate": 4.06974e-05, + "loss": 2.173524932861328, + "step": 139600 + }, + { + "epoch": 18.626666666666665, + "grad_norm": 0.382716566324234, + "learning_rate": 4.069073333333333e-05, + "loss": 2.1713710021972656, + "step": 139700 + }, + { + "epoch": 18.64, + "grad_norm": 0.36141642928123474, + "learning_rate": 4.068406666666667e-05, + "loss": 2.1703253173828125, + "step": 139800 + }, + { + "epoch": 18.653333333333332, + "grad_norm": 0.37553125619888306, + "learning_rate": 4.0677400000000005e-05, + "loss": 2.1746434020996093, + "step": 139900 + }, + { + "epoch": 18.666666666666668, + "grad_norm": 0.40358760952949524, + "learning_rate": 4.067073333333333e-05, + "loss": 2.172953643798828, + "step": 140000 + }, + { + "epoch": 18.68, + "grad_norm": 0.35741183161735535, + "learning_rate": 4.066406666666667e-05, + "loss": 2.1734686279296875, + "step": 140100 + }, + { + "epoch": 18.693333333333335, + "grad_norm": 0.3769322633743286, + "learning_rate": 4.06574e-05, + "loss": 2.1750888061523437, + "step": 140200 + }, + { + "epoch": 18.706666666666667, + "grad_norm": 0.3802931606769562, + "learning_rate": 4.0650733333333334e-05, + "loss": 2.1736627197265626, + "step": 140300 + }, + { + "epoch": 18.72, + "grad_norm": 0.3812218904495239, + "learning_rate": 4.0644066666666666e-05, + "loss": 2.176966552734375, + "step": 140400 + }, + { + "epoch": 18.733333333333334, + "grad_norm": 0.38916149735450745, + "learning_rate": 4.0637400000000005e-05, + "loss": 2.172593231201172, + "step": 140500 + }, + { + "epoch": 18.746666666666666, + "grad_norm": 0.38093966245651245, + "learning_rate": 4.063073333333334e-05, + "loss": 2.1759133911132813, + "step": 140600 + }, + { + "epoch": 18.76, + "grad_norm": 0.4063868224620819, + "learning_rate": 4.062406666666667e-05, + "loss": 2.1767710876464843, + "step": 140700 + }, + { + "epoch": 18.773333333333333, + "grad_norm": 0.37494465708732605, + "learning_rate": 4.06174e-05, + "loss": 2.1748062133789063, + "step": 140800 + }, + { + "epoch": 18.786666666666665, + "grad_norm": 0.38622939586639404, + "learning_rate": 4.0610733333333334e-05, + "loss": 2.17905029296875, + "step": 140900 + }, + { + "epoch": 18.8, + "grad_norm": 0.41010287404060364, + "learning_rate": 4.0604066666666666e-05, + "loss": 2.1740985107421875, + "step": 141000 + }, + { + "epoch": 18.813333333333333, + "grad_norm": 0.38058510422706604, + "learning_rate": 4.0597400000000005e-05, + "loss": 2.1741783142089846, + "step": 141100 + }, + { + "epoch": 18.826666666666668, + "grad_norm": 0.36692535877227783, + "learning_rate": 4.05908e-05, + "loss": 2.1796223449707033, + "step": 141200 + }, + { + "epoch": 18.84, + "grad_norm": 0.3798985779285431, + "learning_rate": 4.058413333333334e-05, + "loss": 2.1784815979003906, + "step": 141300 + }, + { + "epoch": 18.85333333333333, + "grad_norm": 0.3722667098045349, + "learning_rate": 4.057746666666667e-05, + "loss": 2.1829788208007814, + "step": 141400 + }, + { + "epoch": 18.866666666666667, + "grad_norm": 0.39556455612182617, + "learning_rate": 4.05708e-05, + "loss": 2.179154815673828, + "step": 141500 + }, + { + "epoch": 18.88, + "grad_norm": 0.3847595453262329, + "learning_rate": 4.056413333333334e-05, + "loss": 2.1796925354003904, + "step": 141600 + }, + { + "epoch": 18.893333333333334, + "grad_norm": 0.37797436118125916, + "learning_rate": 4.055746666666667e-05, + "loss": 2.1813531494140626, + "step": 141700 + }, + { + "epoch": 18.906666666666666, + "grad_norm": 0.3832587003707886, + "learning_rate": 4.05508e-05, + "loss": 2.179685516357422, + "step": 141800 + }, + { + "epoch": 18.92, + "grad_norm": 0.3763803541660309, + "learning_rate": 4.054413333333334e-05, + "loss": 2.1807159423828124, + "step": 141900 + }, + { + "epoch": 18.933333333333334, + "grad_norm": 0.39702609181404114, + "learning_rate": 4.053746666666667e-05, + "loss": 2.18234619140625, + "step": 142000 + }, + { + "epoch": 18.946666666666665, + "grad_norm": 0.3635548949241638, + "learning_rate": 4.05308e-05, + "loss": 2.1816770935058596, + "step": 142100 + }, + { + "epoch": 18.96, + "grad_norm": 0.3698504567146301, + "learning_rate": 4.0524133333333334e-05, + "loss": 2.1805545043945314, + "step": 142200 + }, + { + "epoch": 18.973333333333333, + "grad_norm": 0.38847336173057556, + "learning_rate": 4.051746666666667e-05, + "loss": 2.18578125, + "step": 142300 + }, + { + "epoch": 18.986666666666668, + "grad_norm": 0.380186527967453, + "learning_rate": 4.0510800000000005e-05, + "loss": 2.1846510314941407, + "step": 142400 + }, + { + "epoch": 19.0, + "grad_norm": 0.37036606669425964, + "learning_rate": 4.050413333333333e-05, + "loss": 2.184918212890625, + "step": 142500 + }, + { + "epoch": 19.013333333333332, + "grad_norm": 0.4196798503398895, + "learning_rate": 4.049746666666667e-05, + "loss": 2.122628021240234, + "step": 142600 + }, + { + "epoch": 19.026666666666667, + "grad_norm": 0.4127017557621002, + "learning_rate": 4.04908e-05, + "loss": 2.1235401916503904, + "step": 142700 + }, + { + "epoch": 19.04, + "grad_norm": 0.4180348813533783, + "learning_rate": 4.0484133333333334e-05, + "loss": 2.123696746826172, + "step": 142800 + }, + { + "epoch": 19.053333333333335, + "grad_norm": 0.40591850876808167, + "learning_rate": 4.0477466666666667e-05, + "loss": 2.12607177734375, + "step": 142900 + }, + { + "epoch": 19.066666666666666, + "grad_norm": 0.4013535678386688, + "learning_rate": 4.0470800000000006e-05, + "loss": 2.1254452514648436, + "step": 143000 + }, + { + "epoch": 19.08, + "grad_norm": 0.3990405797958374, + "learning_rate": 4.046413333333334e-05, + "loss": 2.1275210571289063, + "step": 143100 + }, + { + "epoch": 19.093333333333334, + "grad_norm": 0.3961292803287506, + "learning_rate": 4.045753333333334e-05, + "loss": 2.1298793029785155, + "step": 143200 + }, + { + "epoch": 19.106666666666666, + "grad_norm": 0.38968828320503235, + "learning_rate": 4.045086666666667e-05, + "loss": 2.130485382080078, + "step": 143300 + }, + { + "epoch": 19.12, + "grad_norm": 0.38888853788375854, + "learning_rate": 4.04442e-05, + "loss": 2.1340348815917967, + "step": 143400 + }, + { + "epoch": 19.133333333333333, + "grad_norm": 0.4043475091457367, + "learning_rate": 4.0437533333333334e-05, + "loss": 2.132088317871094, + "step": 143500 + }, + { + "epoch": 19.14666666666667, + "grad_norm": 0.3911975920200348, + "learning_rate": 4.0430866666666666e-05, + "loss": 2.136121826171875, + "step": 143600 + }, + { + "epoch": 19.16, + "grad_norm": 0.43989744782447815, + "learning_rate": 4.04242e-05, + "loss": 2.129822998046875, + "step": 143700 + }, + { + "epoch": 19.173333333333332, + "grad_norm": 0.3966082036495209, + "learning_rate": 4.041753333333334e-05, + "loss": 2.132376403808594, + "step": 143800 + }, + { + "epoch": 19.186666666666667, + "grad_norm": 0.3992730975151062, + "learning_rate": 4.041086666666667e-05, + "loss": 2.139486999511719, + "step": 143900 + }, + { + "epoch": 19.2, + "grad_norm": 0.4032175838947296, + "learning_rate": 4.04042e-05, + "loss": 2.13601318359375, + "step": 144000 + }, + { + "epoch": 19.213333333333335, + "grad_norm": 0.396996408700943, + "learning_rate": 4.0397533333333334e-05, + "loss": 2.1378729248046877, + "step": 144100 + }, + { + "epoch": 19.226666666666667, + "grad_norm": 0.4150291085243225, + "learning_rate": 4.039086666666667e-05, + "loss": 2.1334957885742187, + "step": 144200 + }, + { + "epoch": 19.24, + "grad_norm": 0.3937293291091919, + "learning_rate": 4.03842e-05, + "loss": 2.136308135986328, + "step": 144300 + }, + { + "epoch": 19.253333333333334, + "grad_norm": 0.4123186469078064, + "learning_rate": 4.037753333333333e-05, + "loss": 2.1393890380859375, + "step": 144400 + }, + { + "epoch": 19.266666666666666, + "grad_norm": 0.39195558428764343, + "learning_rate": 4.037086666666667e-05, + "loss": 2.1392486572265623, + "step": 144500 + }, + { + "epoch": 19.28, + "grad_norm": 0.4173942506313324, + "learning_rate": 4.03642e-05, + "loss": 2.137723846435547, + "step": 144600 + }, + { + "epoch": 19.293333333333333, + "grad_norm": 0.4093802273273468, + "learning_rate": 4.0357533333333335e-05, + "loss": 2.136879577636719, + "step": 144700 + }, + { + "epoch": 19.306666666666665, + "grad_norm": 0.4126907289028168, + "learning_rate": 4.035086666666667e-05, + "loss": 2.1385182189941405, + "step": 144800 + }, + { + "epoch": 19.32, + "grad_norm": 0.4639165699481964, + "learning_rate": 4.0344200000000006e-05, + "loss": 2.1417454528808593, + "step": 144900 + }, + { + "epoch": 19.333333333333332, + "grad_norm": 0.405304491519928, + "learning_rate": 4.033753333333333e-05, + "loss": 2.1422581481933594, + "step": 145000 + }, + { + "epoch": 19.346666666666668, + "grad_norm": 0.3977564573287964, + "learning_rate": 4.0330866666666664e-05, + "loss": 2.142159118652344, + "step": 145100 + }, + { + "epoch": 19.36, + "grad_norm": 0.3873383104801178, + "learning_rate": 4.032426666666667e-05, + "loss": 2.141308135986328, + "step": 145200 + }, + { + "epoch": 19.373333333333335, + "grad_norm": 0.40484434366226196, + "learning_rate": 4.03176e-05, + "loss": 2.1436500549316406, + "step": 145300 + }, + { + "epoch": 19.386666666666667, + "grad_norm": 0.3954225480556488, + "learning_rate": 4.0310933333333334e-05, + "loss": 2.1450897216796876, + "step": 145400 + }, + { + "epoch": 19.4, + "grad_norm": 0.40232667326927185, + "learning_rate": 4.0304266666666666e-05, + "loss": 2.14369140625, + "step": 145500 + }, + { + "epoch": 19.413333333333334, + "grad_norm": 0.4098379909992218, + "learning_rate": 4.0297600000000005e-05, + "loss": 2.142886199951172, + "step": 145600 + }, + { + "epoch": 19.426666666666666, + "grad_norm": 0.5938084125518799, + "learning_rate": 4.029093333333334e-05, + "loss": 2.142805480957031, + "step": 145700 + }, + { + "epoch": 19.44, + "grad_norm": 0.4229917824268341, + "learning_rate": 4.028426666666667e-05, + "loss": 2.1455670166015626, + "step": 145800 + }, + { + "epoch": 19.453333333333333, + "grad_norm": 0.4009098410606384, + "learning_rate": 4.02776e-05, + "loss": 2.1452354431152343, + "step": 145900 + }, + { + "epoch": 19.466666666666665, + "grad_norm": 0.4073621928691864, + "learning_rate": 4.0270933333333334e-05, + "loss": 2.148215484619141, + "step": 146000 + }, + { + "epoch": 19.48, + "grad_norm": 0.4084467887878418, + "learning_rate": 4.026426666666667e-05, + "loss": 2.1478231811523436, + "step": 146100 + }, + { + "epoch": 19.493333333333332, + "grad_norm": 0.41249674558639526, + "learning_rate": 4.02576e-05, + "loss": 2.146228485107422, + "step": 146200 + }, + { + "epoch": 19.506666666666668, + "grad_norm": 0.4140562415122986, + "learning_rate": 4.025093333333334e-05, + "loss": 2.1468472290039062, + "step": 146300 + }, + { + "epoch": 19.52, + "grad_norm": 0.4109251797199249, + "learning_rate": 4.024426666666667e-05, + "loss": 2.1486239624023438, + "step": 146400 + }, + { + "epoch": 19.533333333333335, + "grad_norm": 0.4116007089614868, + "learning_rate": 4.02376e-05, + "loss": 2.1508238220214846, + "step": 146500 + }, + { + "epoch": 19.546666666666667, + "grad_norm": 0.4088853895664215, + "learning_rate": 4.0230933333333335e-05, + "loss": 2.1514797973632813, + "step": 146600 + }, + { + "epoch": 19.56, + "grad_norm": 0.41675347089767456, + "learning_rate": 4.0224266666666674e-05, + "loss": 2.1524058532714845, + "step": 146700 + }, + { + "epoch": 19.573333333333334, + "grad_norm": 0.3963926136493683, + "learning_rate": 4.02176e-05, + "loss": 2.148751525878906, + "step": 146800 + }, + { + "epoch": 19.586666666666666, + "grad_norm": 0.40617915987968445, + "learning_rate": 4.021093333333333e-05, + "loss": 2.149855194091797, + "step": 146900 + }, + { + "epoch": 19.6, + "grad_norm": 0.41876712441444397, + "learning_rate": 4.020426666666667e-05, + "loss": 2.150911560058594, + "step": 147000 + }, + { + "epoch": 19.613333333333333, + "grad_norm": 0.3804861605167389, + "learning_rate": 4.01976e-05, + "loss": 2.1560760498046876, + "step": 147100 + }, + { + "epoch": 19.626666666666665, + "grad_norm": 0.4384894073009491, + "learning_rate": 4.0191e-05, + "loss": 2.1526423645019532, + "step": 147200 + }, + { + "epoch": 19.64, + "grad_norm": 0.41497132182121277, + "learning_rate": 4.0184333333333334e-05, + "loss": 2.155290374755859, + "step": 147300 + }, + { + "epoch": 19.653333333333332, + "grad_norm": 0.41495493054389954, + "learning_rate": 4.0177666666666666e-05, + "loss": 2.151389465332031, + "step": 147400 + }, + { + "epoch": 19.666666666666668, + "grad_norm": 0.4099428355693817, + "learning_rate": 4.0171000000000006e-05, + "loss": 2.1499951171875, + "step": 147500 + }, + { + "epoch": 19.68, + "grad_norm": 0.3970455825328827, + "learning_rate": 4.016433333333334e-05, + "loss": 2.1519485473632813, + "step": 147600 + }, + { + "epoch": 19.693333333333335, + "grad_norm": 0.39993080496788025, + "learning_rate": 4.015766666666667e-05, + "loss": 2.1552606201171876, + "step": 147700 + }, + { + "epoch": 19.706666666666667, + "grad_norm": 0.3965042233467102, + "learning_rate": 4.0151e-05, + "loss": 2.15621826171875, + "step": 147800 + }, + { + "epoch": 19.72, + "grad_norm": 0.39892885088920593, + "learning_rate": 4.0144333333333335e-05, + "loss": 2.1579328918457032, + "step": 147900 + }, + { + "epoch": 19.733333333333334, + "grad_norm": 0.3992300033569336, + "learning_rate": 4.013766666666667e-05, + "loss": 2.1543257141113283, + "step": 148000 + }, + { + "epoch": 19.746666666666666, + "grad_norm": 0.4157925844192505, + "learning_rate": 4.0131e-05, + "loss": 2.1553553771972656, + "step": 148100 + }, + { + "epoch": 19.76, + "grad_norm": 0.4068884253501892, + "learning_rate": 4.012433333333334e-05, + "loss": 2.1588153076171874, + "step": 148200 + }, + { + "epoch": 19.773333333333333, + "grad_norm": 0.38905492424964905, + "learning_rate": 4.011766666666667e-05, + "loss": 2.15878662109375, + "step": 148300 + }, + { + "epoch": 19.786666666666665, + "grad_norm": 0.4091239869594574, + "learning_rate": 4.0111e-05, + "loss": 2.1591731262207032, + "step": 148400 + }, + { + "epoch": 19.8, + "grad_norm": 0.40158993005752563, + "learning_rate": 4.0104333333333335e-05, + "loss": 2.1584709167480467, + "step": 148500 + }, + { + "epoch": 19.813333333333333, + "grad_norm": 0.39406251907348633, + "learning_rate": 4.009766666666667e-05, + "loss": 2.1566011047363283, + "step": 148600 + }, + { + "epoch": 19.826666666666668, + "grad_norm": 0.407062292098999, + "learning_rate": 4.0091e-05, + "loss": 2.1586177062988283, + "step": 148700 + }, + { + "epoch": 19.84, + "grad_norm": 0.405785471200943, + "learning_rate": 4.008433333333333e-05, + "loss": 2.16111083984375, + "step": 148800 + }, + { + "epoch": 19.85333333333333, + "grad_norm": 0.41420650482177734, + "learning_rate": 4.007766666666667e-05, + "loss": 2.1617213439941407, + "step": 148900 + }, + { + "epoch": 19.866666666666667, + "grad_norm": 0.394771933555603, + "learning_rate": 4.0071e-05, + "loss": 2.1623408508300783, + "step": 149000 + }, + { + "epoch": 19.88, + "grad_norm": 0.40892547369003296, + "learning_rate": 4.0064333333333335e-05, + "loss": 2.157855987548828, + "step": 149100 + }, + { + "epoch": 19.893333333333334, + "grad_norm": 0.3987767994403839, + "learning_rate": 4.0057733333333334e-05, + "loss": 2.1613093566894532, + "step": 149200 + }, + { + "epoch": 19.906666666666666, + "grad_norm": 0.3993833661079407, + "learning_rate": 4.005106666666667e-05, + "loss": 2.1549281311035156, + "step": 149300 + }, + { + "epoch": 19.92, + "grad_norm": 0.38621968030929565, + "learning_rate": 4.0044400000000006e-05, + "loss": 2.160150146484375, + "step": 149400 + }, + { + "epoch": 19.933333333333334, + "grad_norm": 0.3897809386253357, + "learning_rate": 4.003773333333333e-05, + "loss": 2.1631517028808593, + "step": 149500 + }, + { + "epoch": 19.946666666666665, + "grad_norm": 0.398573637008667, + "learning_rate": 4.0031066666666664e-05, + "loss": 2.157795104980469, + "step": 149600 + }, + { + "epoch": 19.96, + "grad_norm": 0.40121105313301086, + "learning_rate": 4.00244e-05, + "loss": 2.1640524291992187, + "step": 149700 + }, + { + "epoch": 19.973333333333333, + "grad_norm": 0.4069249927997589, + "learning_rate": 4.0017733333333335e-05, + "loss": 2.166029052734375, + "step": 149800 + }, + { + "epoch": 19.986666666666668, + "grad_norm": 0.3973349928855896, + "learning_rate": 4.001106666666667e-05, + "loss": 2.1621893310546874, + "step": 149900 + }, + { + "epoch": 20.0, + "grad_norm": 0.41031596064567566, + "learning_rate": 4.0004400000000006e-05, + "loss": 2.164129180908203, + "step": 150000 + }, + { + "epoch": 20.013333333333332, + "grad_norm": 0.4144793748855591, + "learning_rate": 3.999773333333334e-05, + "loss": 2.1011627197265623, + "step": 150100 + }, + { + "epoch": 20.026666666666667, + "grad_norm": 0.4213844835758209, + "learning_rate": 3.999106666666667e-05, + "loss": 2.1013143920898436, + "step": 150200 + }, + { + "epoch": 20.04, + "grad_norm": 0.4233456254005432, + "learning_rate": 3.99844e-05, + "loss": 2.102215118408203, + "step": 150300 + }, + { + "epoch": 20.053333333333335, + "grad_norm": 0.4110080897808075, + "learning_rate": 3.9977733333333335e-05, + "loss": 2.1024229431152346, + "step": 150400 + }, + { + "epoch": 20.066666666666666, + "grad_norm": 0.43383386731147766, + "learning_rate": 3.997106666666667e-05, + "loss": 2.1043170166015623, + "step": 150500 + }, + { + "epoch": 20.08, + "grad_norm": 0.44916924834251404, + "learning_rate": 3.99644e-05, + "loss": 2.1046258544921876, + "step": 150600 + }, + { + "epoch": 20.093333333333334, + "grad_norm": 0.41945359110832214, + "learning_rate": 3.995773333333334e-05, + "loss": 2.1057843017578124, + "step": 150700 + }, + { + "epoch": 20.106666666666666, + "grad_norm": 0.4138963222503662, + "learning_rate": 3.995106666666667e-05, + "loss": 2.109571533203125, + "step": 150800 + }, + { + "epoch": 20.12, + "grad_norm": 0.4254426956176758, + "learning_rate": 3.99444e-05, + "loss": 2.110528869628906, + "step": 150900 + }, + { + "epoch": 20.133333333333333, + "grad_norm": 0.4162181615829468, + "learning_rate": 3.9937733333333336e-05, + "loss": 2.109608459472656, + "step": 151000 + }, + { + "epoch": 20.14666666666667, + "grad_norm": 0.4359742999076843, + "learning_rate": 3.993106666666667e-05, + "loss": 2.111918640136719, + "step": 151100 + }, + { + "epoch": 20.16, + "grad_norm": 0.43765124678611755, + "learning_rate": 3.9924466666666674e-05, + "loss": 2.1102365112304686, + "step": 151200 + }, + { + "epoch": 20.173333333333332, + "grad_norm": 0.4108990728855133, + "learning_rate": 3.99178e-05, + "loss": 2.1093389892578127, + "step": 151300 + }, + { + "epoch": 20.186666666666667, + "grad_norm": 0.44729962944984436, + "learning_rate": 3.991113333333333e-05, + "loss": 2.109452209472656, + "step": 151400 + }, + { + "epoch": 20.2, + "grad_norm": 0.44547468423843384, + "learning_rate": 3.990446666666667e-05, + "loss": 2.112231903076172, + "step": 151500 + }, + { + "epoch": 20.213333333333335, + "grad_norm": 0.41629984974861145, + "learning_rate": 3.98978e-05, + "loss": 2.113887939453125, + "step": 151600 + }, + { + "epoch": 20.226666666666667, + "grad_norm": 0.40394192934036255, + "learning_rate": 3.9891133333333335e-05, + "loss": 2.115534362792969, + "step": 151700 + }, + { + "epoch": 20.24, + "grad_norm": 0.44830042123794556, + "learning_rate": 3.988446666666667e-05, + "loss": 2.1146437072753907, + "step": 151800 + }, + { + "epoch": 20.253333333333334, + "grad_norm": 0.4912000596523285, + "learning_rate": 3.9877800000000006e-05, + "loss": 2.1153712463378906, + "step": 151900 + }, + { + "epoch": 20.266666666666666, + "grad_norm": 0.42249879240989685, + "learning_rate": 3.987113333333333e-05, + "loss": 2.115755615234375, + "step": 152000 + }, + { + "epoch": 20.28, + "grad_norm": 0.4368637204170227, + "learning_rate": 3.9864466666666664e-05, + "loss": 2.116807403564453, + "step": 152100 + }, + { + "epoch": 20.293333333333333, + "grad_norm": 0.4537985920906067, + "learning_rate": 3.98578e-05, + "loss": 2.1168971252441406, + "step": 152200 + }, + { + "epoch": 20.306666666666665, + "grad_norm": 0.4116325378417969, + "learning_rate": 3.9851133333333335e-05, + "loss": 2.1171247863769533, + "step": 152300 + }, + { + "epoch": 20.32, + "grad_norm": 0.4562799632549286, + "learning_rate": 3.984446666666667e-05, + "loss": 2.120128326416016, + "step": 152400 + }, + { + "epoch": 20.333333333333332, + "grad_norm": 0.48379048705101013, + "learning_rate": 3.98378e-05, + "loss": 2.1202543640136717, + "step": 152500 + }, + { + "epoch": 20.346666666666668, + "grad_norm": 0.4196086823940277, + "learning_rate": 3.983113333333334e-05, + "loss": 2.1200096130371096, + "step": 152600 + }, + { + "epoch": 20.36, + "grad_norm": 0.4291480481624603, + "learning_rate": 3.982446666666667e-05, + "loss": 2.1247039794921876, + "step": 152700 + }, + { + "epoch": 20.373333333333335, + "grad_norm": 0.435103178024292, + "learning_rate": 3.98178e-05, + "loss": 2.123348846435547, + "step": 152800 + }, + { + "epoch": 20.386666666666667, + "grad_norm": 0.4345220923423767, + "learning_rate": 3.9811133333333336e-05, + "loss": 2.1262147521972654, + "step": 152900 + }, + { + "epoch": 20.4, + "grad_norm": 0.4328380823135376, + "learning_rate": 3.980446666666667e-05, + "loss": 2.121066131591797, + "step": 153000 + }, + { + "epoch": 20.413333333333334, + "grad_norm": 0.4451119303703308, + "learning_rate": 3.97978e-05, + "loss": 2.1231698608398437, + "step": 153100 + }, + { + "epoch": 20.426666666666666, + "grad_norm": 0.4360395669937134, + "learning_rate": 3.979113333333333e-05, + "loss": 2.125181121826172, + "step": 153200 + }, + { + "epoch": 20.44, + "grad_norm": 0.4354141354560852, + "learning_rate": 3.978453333333333e-05, + "loss": 2.1249436950683593, + "step": 153300 + }, + { + "epoch": 20.453333333333333, + "grad_norm": 0.4377344250679016, + "learning_rate": 3.977786666666667e-05, + "loss": 2.1251399230957033, + "step": 153400 + }, + { + "epoch": 20.466666666666665, + "grad_norm": 0.4143160581588745, + "learning_rate": 3.97712e-05, + "loss": 2.128079681396484, + "step": 153500 + }, + { + "epoch": 20.48, + "grad_norm": 0.42408105731010437, + "learning_rate": 3.9764533333333335e-05, + "loss": 2.1228724670410157, + "step": 153600 + }, + { + "epoch": 20.493333333333332, + "grad_norm": 0.42520079016685486, + "learning_rate": 3.9757866666666674e-05, + "loss": 2.1246131896972655, + "step": 153700 + }, + { + "epoch": 20.506666666666668, + "grad_norm": 0.43026211857795715, + "learning_rate": 3.97512e-05, + "loss": 2.1264944458007813, + "step": 153800 + }, + { + "epoch": 20.52, + "grad_norm": 0.4304378628730774, + "learning_rate": 3.974453333333333e-05, + "loss": 2.128600616455078, + "step": 153900 + }, + { + "epoch": 20.533333333333335, + "grad_norm": 0.4374537765979767, + "learning_rate": 3.9737866666666664e-05, + "loss": 2.127030944824219, + "step": 154000 + }, + { + "epoch": 20.546666666666667, + "grad_norm": 0.42087990045547485, + "learning_rate": 3.9731200000000003e-05, + "loss": 2.127199859619141, + "step": 154100 + }, + { + "epoch": 20.56, + "grad_norm": 0.44808924198150635, + "learning_rate": 3.9724533333333336e-05, + "loss": 2.130141143798828, + "step": 154200 + }, + { + "epoch": 20.573333333333334, + "grad_norm": 0.4425102770328522, + "learning_rate": 3.971786666666667e-05, + "loss": 2.128837432861328, + "step": 154300 + }, + { + "epoch": 20.586666666666666, + "grad_norm": 0.4478192925453186, + "learning_rate": 3.971120000000001e-05, + "loss": 2.126686859130859, + "step": 154400 + }, + { + "epoch": 20.6, + "grad_norm": 0.40875598788261414, + "learning_rate": 3.970453333333333e-05, + "loss": 2.1303999328613283, + "step": 154500 + }, + { + "epoch": 20.613333333333333, + "grad_norm": 0.4193249046802521, + "learning_rate": 3.9697866666666665e-05, + "loss": 2.1299224853515626, + "step": 154600 + }, + { + "epoch": 20.626666666666665, + "grad_norm": 0.42445623874664307, + "learning_rate": 3.9691200000000004e-05, + "loss": 2.129607696533203, + "step": 154700 + }, + { + "epoch": 20.64, + "grad_norm": 0.42908674478530884, + "learning_rate": 3.9684533333333336e-05, + "loss": 2.13080322265625, + "step": 154800 + }, + { + "epoch": 20.653333333333332, + "grad_norm": 0.41622525453567505, + "learning_rate": 3.967786666666667e-05, + "loss": 2.1290174865722657, + "step": 154900 + }, + { + "epoch": 20.666666666666668, + "grad_norm": 0.4262298047542572, + "learning_rate": 3.96712e-05, + "loss": 2.1313914489746093, + "step": 155000 + }, + { + "epoch": 20.68, + "grad_norm": 0.4326687753200531, + "learning_rate": 3.966453333333334e-05, + "loss": 2.1320542907714843, + "step": 155100 + }, + { + "epoch": 20.693333333333335, + "grad_norm": 0.4377034902572632, + "learning_rate": 3.965786666666667e-05, + "loss": 2.1338987731933594, + "step": 155200 + }, + { + "epoch": 20.706666666666667, + "grad_norm": 0.41697245836257935, + "learning_rate": 3.965126666666667e-05, + "loss": 2.1323886108398438, + "step": 155300 + }, + { + "epoch": 20.72, + "grad_norm": 0.4141487777233124, + "learning_rate": 3.96446e-05, + "loss": 2.1330581665039063, + "step": 155400 + }, + { + "epoch": 20.733333333333334, + "grad_norm": 0.44619297981262207, + "learning_rate": 3.9637933333333336e-05, + "loss": 2.133800811767578, + "step": 155500 + }, + { + "epoch": 20.746666666666666, + "grad_norm": 0.4493109881877899, + "learning_rate": 3.963126666666667e-05, + "loss": 2.1314244079589844, + "step": 155600 + }, + { + "epoch": 20.76, + "grad_norm": 0.42815864086151123, + "learning_rate": 3.96246e-05, + "loss": 2.1383274841308593, + "step": 155700 + }, + { + "epoch": 20.773333333333333, + "grad_norm": 0.42495793104171753, + "learning_rate": 3.961793333333333e-05, + "loss": 2.134236602783203, + "step": 155800 + }, + { + "epoch": 20.786666666666665, + "grad_norm": 0.43157216906547546, + "learning_rate": 3.961126666666667e-05, + "loss": 2.1373394775390624, + "step": 155900 + }, + { + "epoch": 20.8, + "grad_norm": 0.4456236958503723, + "learning_rate": 3.9604600000000004e-05, + "loss": 2.13835693359375, + "step": 156000 + }, + { + "epoch": 20.813333333333333, + "grad_norm": 0.4253341853618622, + "learning_rate": 3.9597933333333336e-05, + "loss": 2.1404833984375, + "step": 156100 + }, + { + "epoch": 20.826666666666668, + "grad_norm": 0.4421469569206238, + "learning_rate": 3.959126666666667e-05, + "loss": 2.134762725830078, + "step": 156200 + }, + { + "epoch": 20.84, + "grad_norm": 0.4644703269004822, + "learning_rate": 3.95846e-05, + "loss": 2.1389283752441406, + "step": 156300 + }, + { + "epoch": 20.85333333333333, + "grad_norm": 0.4606155753135681, + "learning_rate": 3.957793333333333e-05, + "loss": 2.140909423828125, + "step": 156400 + }, + { + "epoch": 20.866666666666667, + "grad_norm": 0.4364932179450989, + "learning_rate": 3.9571266666666665e-05, + "loss": 2.1414125061035154, + "step": 156500 + }, + { + "epoch": 20.88, + "grad_norm": 0.41626495122909546, + "learning_rate": 3.9564600000000004e-05, + "loss": 2.139465789794922, + "step": 156600 + }, + { + "epoch": 20.893333333333334, + "grad_norm": 0.43859004974365234, + "learning_rate": 3.9557933333333336e-05, + "loss": 2.139771728515625, + "step": 156700 + }, + { + "epoch": 20.906666666666666, + "grad_norm": 0.41686686873435974, + "learning_rate": 3.955126666666667e-05, + "loss": 2.1382980346679688, + "step": 156800 + }, + { + "epoch": 20.92, + "grad_norm": 0.4283873438835144, + "learning_rate": 3.95446e-05, + "loss": 2.138336181640625, + "step": 156900 + }, + { + "epoch": 20.933333333333334, + "grad_norm": 0.433183878660202, + "learning_rate": 3.953793333333334e-05, + "loss": 2.1397128295898438, + "step": 157000 + }, + { + "epoch": 20.946666666666665, + "grad_norm": 0.4318670928478241, + "learning_rate": 3.9531266666666665e-05, + "loss": 2.1437940979003907, + "step": 157100 + }, + { + "epoch": 20.96, + "grad_norm": 0.40270859003067017, + "learning_rate": 3.95246e-05, + "loss": 2.14356689453125, + "step": 157200 + }, + { + "epoch": 20.973333333333333, + "grad_norm": 0.4244714379310608, + "learning_rate": 3.9518e-05, + "loss": 2.139528503417969, + "step": 157300 + }, + { + "epoch": 20.986666666666668, + "grad_norm": 0.45268091559410095, + "learning_rate": 3.9511333333333336e-05, + "loss": 2.145069427490234, + "step": 157400 + }, + { + "epoch": 21.0, + "grad_norm": 0.40507015585899353, + "learning_rate": 3.950466666666667e-05, + "loss": 2.143871154785156, + "step": 157500 + }, + { + "epoch": 21.013333333333332, + "grad_norm": 0.4375498592853546, + "learning_rate": 3.9498e-05, + "loss": 2.076609649658203, + "step": 157600 + }, + { + "epoch": 21.026666666666667, + "grad_norm": 0.4368535876274109, + "learning_rate": 3.949133333333333e-05, + "loss": 2.081154022216797, + "step": 157700 + }, + { + "epoch": 21.04, + "grad_norm": 0.4447578489780426, + "learning_rate": 3.948466666666667e-05, + "loss": 2.080892333984375, + "step": 157800 + }, + { + "epoch": 21.053333333333335, + "grad_norm": 0.46905946731567383, + "learning_rate": 3.9478000000000004e-05, + "loss": 2.082366485595703, + "step": 157900 + }, + { + "epoch": 21.066666666666666, + "grad_norm": 0.4563233554363251, + "learning_rate": 3.9471333333333336e-05, + "loss": 2.081029815673828, + "step": 158000 + }, + { + "epoch": 21.08, + "grad_norm": 0.442941278219223, + "learning_rate": 3.946466666666667e-05, + "loss": 2.079813690185547, + "step": 158100 + }, + { + "epoch": 21.093333333333334, + "grad_norm": 0.44517138600349426, + "learning_rate": 3.9458e-05, + "loss": 2.0806849670410155, + "step": 158200 + }, + { + "epoch": 21.106666666666666, + "grad_norm": 0.4202803075313568, + "learning_rate": 3.945133333333333e-05, + "loss": 2.0857112121582033, + "step": 158300 + }, + { + "epoch": 21.12, + "grad_norm": 0.443814218044281, + "learning_rate": 3.944466666666667e-05, + "loss": 2.0827932739257813, + "step": 158400 + }, + { + "epoch": 21.133333333333333, + "grad_norm": 0.4491780698299408, + "learning_rate": 3.9438000000000004e-05, + "loss": 2.0842088317871093, + "step": 158500 + }, + { + "epoch": 21.14666666666667, + "grad_norm": 0.45883890986442566, + "learning_rate": 3.9431333333333337e-05, + "loss": 2.086201019287109, + "step": 158600 + }, + { + "epoch": 21.16, + "grad_norm": 0.4523576498031616, + "learning_rate": 3.942466666666667e-05, + "loss": 2.088128967285156, + "step": 158700 + }, + { + "epoch": 21.173333333333332, + "grad_norm": 0.44423168897628784, + "learning_rate": 3.9418e-05, + "loss": 2.0868064880371096, + "step": 158800 + }, + { + "epoch": 21.186666666666667, + "grad_norm": 0.43601688742637634, + "learning_rate": 3.941133333333333e-05, + "loss": 2.089644470214844, + "step": 158900 + }, + { + "epoch": 21.2, + "grad_norm": 0.46989673376083374, + "learning_rate": 3.9404666666666666e-05, + "loss": 2.093050231933594, + "step": 159000 + }, + { + "epoch": 21.213333333333335, + "grad_norm": 0.43255218863487244, + "learning_rate": 3.9398000000000005e-05, + "loss": 2.0879270935058596, + "step": 159100 + }, + { + "epoch": 21.226666666666667, + "grad_norm": 0.49605920910835266, + "learning_rate": 3.939133333333334e-05, + "loss": 2.0937208557128906, + "step": 159200 + }, + { + "epoch": 21.24, + "grad_norm": 0.45772337913513184, + "learning_rate": 3.9384733333333336e-05, + "loss": 2.088824462890625, + "step": 159300 + }, + { + "epoch": 21.253333333333334, + "grad_norm": 0.47145646810531616, + "learning_rate": 3.937806666666667e-05, + "loss": 2.093097839355469, + "step": 159400 + }, + { + "epoch": 21.266666666666666, + "grad_norm": 0.4515535235404968, + "learning_rate": 3.93714e-05, + "loss": 2.0927359008789064, + "step": 159500 + }, + { + "epoch": 21.28, + "grad_norm": 0.4473794102668762, + "learning_rate": 3.936473333333334e-05, + "loss": 2.09676513671875, + "step": 159600 + }, + { + "epoch": 21.293333333333333, + "grad_norm": 0.4367310106754303, + "learning_rate": 3.935806666666667e-05, + "loss": 2.101490173339844, + "step": 159700 + }, + { + "epoch": 21.306666666666665, + "grad_norm": 0.4792206585407257, + "learning_rate": 3.93514e-05, + "loss": 2.0952803039550782, + "step": 159800 + }, + { + "epoch": 21.32, + "grad_norm": 0.47740694880485535, + "learning_rate": 3.9344733333333336e-05, + "loss": 2.095529022216797, + "step": 159900 + }, + { + "epoch": 21.333333333333332, + "grad_norm": 0.4495086371898651, + "learning_rate": 3.933806666666667e-05, + "loss": 2.0941035461425783, + "step": 160000 + }, + { + "epoch": 21.346666666666668, + "grad_norm": 0.45994919538497925, + "learning_rate": 3.93314e-05, + "loss": 2.097761993408203, + "step": 160100 + }, + { + "epoch": 21.36, + "grad_norm": 0.45980381965637207, + "learning_rate": 3.932473333333333e-05, + "loss": 2.103887634277344, + "step": 160200 + }, + { + "epoch": 21.373333333333335, + "grad_norm": 0.4462270438671112, + "learning_rate": 3.931806666666667e-05, + "loss": 2.1018940734863283, + "step": 160300 + }, + { + "epoch": 21.386666666666667, + "grad_norm": 0.44747424125671387, + "learning_rate": 3.9311400000000004e-05, + "loss": 2.100036163330078, + "step": 160400 + }, + { + "epoch": 21.4, + "grad_norm": 0.45789986848831177, + "learning_rate": 3.930473333333334e-05, + "loss": 2.097904052734375, + "step": 160500 + }, + { + "epoch": 21.413333333333334, + "grad_norm": 0.4360867440700531, + "learning_rate": 3.929806666666667e-05, + "loss": 2.100706787109375, + "step": 160600 + }, + { + "epoch": 21.426666666666666, + "grad_norm": 0.4504407048225403, + "learning_rate": 3.92914e-05, + "loss": 2.1013177490234374, + "step": 160700 + }, + { + "epoch": 21.44, + "grad_norm": 0.44968169927597046, + "learning_rate": 3.9284733333333334e-05, + "loss": 2.1003431701660156, + "step": 160800 + }, + { + "epoch": 21.453333333333333, + "grad_norm": 0.4681168794631958, + "learning_rate": 3.9278066666666666e-05, + "loss": 2.100907440185547, + "step": 160900 + }, + { + "epoch": 21.466666666666665, + "grad_norm": 0.4619245231151581, + "learning_rate": 3.9271400000000005e-05, + "loss": 2.103074035644531, + "step": 161000 + }, + { + "epoch": 21.48, + "grad_norm": 0.46537071466445923, + "learning_rate": 3.926473333333334e-05, + "loss": 2.1030101013183593, + "step": 161100 + }, + { + "epoch": 21.493333333333332, + "grad_norm": 0.44652751088142395, + "learning_rate": 3.925806666666667e-05, + "loss": 2.1046063232421877, + "step": 161200 + }, + { + "epoch": 21.506666666666668, + "grad_norm": 0.4665990173816681, + "learning_rate": 3.925146666666667e-05, + "loss": 2.103731842041016, + "step": 161300 + }, + { + "epoch": 21.52, + "grad_norm": 0.4317059814929962, + "learning_rate": 3.92448e-05, + "loss": 2.1036187744140626, + "step": 161400 + }, + { + "epoch": 21.533333333333335, + "grad_norm": 0.435001015663147, + "learning_rate": 3.923813333333334e-05, + "loss": 2.1071646118164065, + "step": 161500 + }, + { + "epoch": 21.546666666666667, + "grad_norm": 0.453155517578125, + "learning_rate": 3.9231466666666665e-05, + "loss": 2.104129638671875, + "step": 161600 + }, + { + "epoch": 21.56, + "grad_norm": 0.4656548798084259, + "learning_rate": 3.92248e-05, + "loss": 2.1059341430664062, + "step": 161700 + }, + { + "epoch": 21.573333333333334, + "grad_norm": 0.4497198164463043, + "learning_rate": 3.9218133333333337e-05, + "loss": 2.107401885986328, + "step": 161800 + }, + { + "epoch": 21.586666666666666, + "grad_norm": 0.45339301228523254, + "learning_rate": 3.921146666666667e-05, + "loss": 2.107149658203125, + "step": 161900 + }, + { + "epoch": 21.6, + "grad_norm": 0.46817344427108765, + "learning_rate": 3.92048e-05, + "loss": 2.1110685729980467, + "step": 162000 + }, + { + "epoch": 21.613333333333333, + "grad_norm": 0.4366016983985901, + "learning_rate": 3.9198133333333333e-05, + "loss": 2.1120893859863283, + "step": 162100 + }, + { + "epoch": 21.626666666666665, + "grad_norm": 0.4366924464702606, + "learning_rate": 3.919146666666667e-05, + "loss": 2.108365173339844, + "step": 162200 + }, + { + "epoch": 21.64, + "grad_norm": 0.4303394556045532, + "learning_rate": 3.91848e-05, + "loss": 2.1109800720214844, + "step": 162300 + }, + { + "epoch": 21.653333333333332, + "grad_norm": 0.4512556791305542, + "learning_rate": 3.917813333333333e-05, + "loss": 2.1110675048828127, + "step": 162400 + }, + { + "epoch": 21.666666666666668, + "grad_norm": 0.4542624056339264, + "learning_rate": 3.917146666666667e-05, + "loss": 2.1098895263671875, + "step": 162500 + }, + { + "epoch": 21.68, + "grad_norm": 0.4364491403102875, + "learning_rate": 3.91648e-05, + "loss": 2.1100592041015624, + "step": 162600 + }, + { + "epoch": 21.693333333333335, + "grad_norm": 0.4367804229259491, + "learning_rate": 3.9158133333333334e-05, + "loss": 2.111675109863281, + "step": 162700 + }, + { + "epoch": 21.706666666666667, + "grad_norm": 0.4421547055244446, + "learning_rate": 3.915146666666667e-05, + "loss": 2.113012390136719, + "step": 162800 + }, + { + "epoch": 21.72, + "grad_norm": 0.4768464267253876, + "learning_rate": 3.9144800000000005e-05, + "loss": 2.112431945800781, + "step": 162900 + }, + { + "epoch": 21.733333333333334, + "grad_norm": 0.470196008682251, + "learning_rate": 3.913813333333334e-05, + "loss": 2.115672760009766, + "step": 163000 + }, + { + "epoch": 21.746666666666666, + "grad_norm": 0.45648738741874695, + "learning_rate": 3.913146666666667e-05, + "loss": 2.113785858154297, + "step": 163100 + }, + { + "epoch": 21.76, + "grad_norm": 0.43980491161346436, + "learning_rate": 3.91248e-05, + "loss": 2.1120240783691404, + "step": 163200 + }, + { + "epoch": 21.773333333333333, + "grad_norm": 0.4451877772808075, + "learning_rate": 3.91182e-05, + "loss": 2.1176910400390625, + "step": 163300 + }, + { + "epoch": 21.786666666666665, + "grad_norm": 0.4444795250892639, + "learning_rate": 3.911153333333333e-05, + "loss": 2.1153562927246092, + "step": 163400 + }, + { + "epoch": 21.8, + "grad_norm": 0.45172980427742004, + "learning_rate": 3.9104866666666666e-05, + "loss": 2.1131268310546876, + "step": 163500 + }, + { + "epoch": 21.813333333333333, + "grad_norm": 0.44000083208084106, + "learning_rate": 3.9098200000000005e-05, + "loss": 2.1168165588378907, + "step": 163600 + }, + { + "epoch": 21.826666666666668, + "grad_norm": 0.43779900670051575, + "learning_rate": 3.909153333333334e-05, + "loss": 2.117685546875, + "step": 163700 + }, + { + "epoch": 21.84, + "grad_norm": 0.4511207640171051, + "learning_rate": 3.908486666666667e-05, + "loss": 2.1206480407714845, + "step": 163800 + }, + { + "epoch": 21.85333333333333, + "grad_norm": 0.44668668508529663, + "learning_rate": 3.90782e-05, + "loss": 2.1188619995117186, + "step": 163900 + }, + { + "epoch": 21.866666666666667, + "grad_norm": 0.4455656409263611, + "learning_rate": 3.907153333333334e-05, + "loss": 2.1155546569824217, + "step": 164000 + }, + { + "epoch": 21.88, + "grad_norm": 0.4516298770904541, + "learning_rate": 3.9064866666666666e-05, + "loss": 2.1179278564453123, + "step": 164100 + }, + { + "epoch": 21.893333333333334, + "grad_norm": 0.46956104040145874, + "learning_rate": 3.90582e-05, + "loss": 2.1160130310058594, + "step": 164200 + }, + { + "epoch": 21.906666666666666, + "grad_norm": 0.449705570936203, + "learning_rate": 3.905153333333334e-05, + "loss": 2.117757568359375, + "step": 164300 + }, + { + "epoch": 21.92, + "grad_norm": 0.4311459958553314, + "learning_rate": 3.904486666666667e-05, + "loss": 2.1182154846191406, + "step": 164400 + }, + { + "epoch": 21.933333333333334, + "grad_norm": 0.45638683438301086, + "learning_rate": 3.90382e-05, + "loss": 2.118441925048828, + "step": 164500 + }, + { + "epoch": 21.946666666666665, + "grad_norm": 0.4434240758419037, + "learning_rate": 3.9031533333333334e-05, + "loss": 2.1223045349121095, + "step": 164600 + }, + { + "epoch": 21.96, + "grad_norm": 0.46672335267066956, + "learning_rate": 3.902486666666667e-05, + "loss": 2.1176348876953126, + "step": 164700 + }, + { + "epoch": 21.973333333333333, + "grad_norm": 0.4445401430130005, + "learning_rate": 3.90182e-05, + "loss": 2.1194577026367187, + "step": 164800 + }, + { + "epoch": 21.986666666666668, + "grad_norm": 0.4556116461753845, + "learning_rate": 3.901153333333333e-05, + "loss": 2.124223175048828, + "step": 164900 + }, + { + "epoch": 22.0, + "grad_norm": 0.46571463346481323, + "learning_rate": 3.900486666666667e-05, + "loss": 2.123155517578125, + "step": 165000 + }, + { + "epoch": 22.013333333333332, + "grad_norm": 0.4723842740058899, + "learning_rate": 3.89982e-05, + "loss": 2.052652130126953, + "step": 165100 + }, + { + "epoch": 22.026666666666667, + "grad_norm": 0.4425469636917114, + "learning_rate": 3.8991533333333334e-05, + "loss": 2.052018890380859, + "step": 165200 + }, + { + "epoch": 22.04, + "grad_norm": 0.47095298767089844, + "learning_rate": 3.8984933333333333e-05, + "loss": 2.055422058105469, + "step": 165300 + }, + { + "epoch": 22.053333333333335, + "grad_norm": 0.46141520142555237, + "learning_rate": 3.8978266666666666e-05, + "loss": 2.0570689392089845, + "step": 165400 + }, + { + "epoch": 22.066666666666666, + "grad_norm": 0.471127450466156, + "learning_rate": 3.8971600000000005e-05, + "loss": 2.058157958984375, + "step": 165500 + }, + { + "epoch": 22.08, + "grad_norm": 0.48794686794281006, + "learning_rate": 3.896493333333334e-05, + "loss": 2.0558770751953124, + "step": 165600 + }, + { + "epoch": 22.093333333333334, + "grad_norm": 0.4672645926475525, + "learning_rate": 3.895826666666667e-05, + "loss": 2.061310272216797, + "step": 165700 + }, + { + "epoch": 22.106666666666666, + "grad_norm": 0.4862455427646637, + "learning_rate": 3.89516e-05, + "loss": 2.0606340026855468, + "step": 165800 + }, + { + "epoch": 22.12, + "grad_norm": 0.4853212833404541, + "learning_rate": 3.8944933333333334e-05, + "loss": 2.061323699951172, + "step": 165900 + }, + { + "epoch": 22.133333333333333, + "grad_norm": 0.4732306897640228, + "learning_rate": 3.8938266666666666e-05, + "loss": 2.0635455322265623, + "step": 166000 + }, + { + "epoch": 22.14666666666667, + "grad_norm": 0.4706946611404419, + "learning_rate": 3.89316e-05, + "loss": 2.063304595947266, + "step": 166100 + }, + { + "epoch": 22.16, + "grad_norm": 0.47907590866088867, + "learning_rate": 3.892493333333334e-05, + "loss": 2.063959503173828, + "step": 166200 + }, + { + "epoch": 22.173333333333332, + "grad_norm": 0.4727233946323395, + "learning_rate": 3.891826666666667e-05, + "loss": 2.0665432739257814, + "step": 166300 + }, + { + "epoch": 22.186666666666667, + "grad_norm": 0.450941264629364, + "learning_rate": 3.89116e-05, + "loss": 2.069130706787109, + "step": 166400 + }, + { + "epoch": 22.2, + "grad_norm": 0.4796398878097534, + "learning_rate": 3.890493333333334e-05, + "loss": 2.066522521972656, + "step": 166500 + }, + { + "epoch": 22.213333333333335, + "grad_norm": 0.44986021518707275, + "learning_rate": 3.8898266666666667e-05, + "loss": 2.068634033203125, + "step": 166600 + }, + { + "epoch": 22.226666666666667, + "grad_norm": 0.4744917154312134, + "learning_rate": 3.88916e-05, + "loss": 2.071067047119141, + "step": 166700 + }, + { + "epoch": 22.24, + "grad_norm": 0.4827626943588257, + "learning_rate": 3.888493333333333e-05, + "loss": 2.0700621032714843, + "step": 166800 + }, + { + "epoch": 22.253333333333334, + "grad_norm": 0.46759262681007385, + "learning_rate": 3.887826666666667e-05, + "loss": 2.0715043640136717, + "step": 166900 + }, + { + "epoch": 22.266666666666666, + "grad_norm": 0.4774859845638275, + "learning_rate": 3.88716e-05, + "loss": 2.071572113037109, + "step": 167000 + }, + { + "epoch": 22.28, + "grad_norm": 0.46241122484207153, + "learning_rate": 3.8864933333333335e-05, + "loss": 2.070568389892578, + "step": 167100 + }, + { + "epoch": 22.293333333333333, + "grad_norm": 0.46631354093551636, + "learning_rate": 3.8858266666666674e-05, + "loss": 2.067816162109375, + "step": 167200 + }, + { + "epoch": 22.306666666666665, + "grad_norm": 0.4631997346878052, + "learning_rate": 3.885166666666667e-05, + "loss": 2.06839599609375, + "step": 167300 + }, + { + "epoch": 22.32, + "grad_norm": 0.4765164852142334, + "learning_rate": 3.8845000000000005e-05, + "loss": 2.075525665283203, + "step": 167400 + }, + { + "epoch": 22.333333333333332, + "grad_norm": 0.4727115035057068, + "learning_rate": 3.883833333333334e-05, + "loss": 2.07642822265625, + "step": 167500 + }, + { + "epoch": 22.346666666666668, + "grad_norm": 0.455098956823349, + "learning_rate": 3.883166666666667e-05, + "loss": 2.078255157470703, + "step": 167600 + }, + { + "epoch": 22.36, + "grad_norm": 0.49284619092941284, + "learning_rate": 3.8825e-05, + "loss": 2.0744464111328127, + "step": 167700 + }, + { + "epoch": 22.373333333333335, + "grad_norm": 0.4699040651321411, + "learning_rate": 3.8818333333333334e-05, + "loss": 2.0767945861816406, + "step": 167800 + }, + { + "epoch": 22.386666666666667, + "grad_norm": 0.45493465662002563, + "learning_rate": 3.8811666666666666e-05, + "loss": 2.0780029296875, + "step": 167900 + }, + { + "epoch": 22.4, + "grad_norm": 0.4484899938106537, + "learning_rate": 3.8805000000000005e-05, + "loss": 2.080047302246094, + "step": 168000 + }, + { + "epoch": 22.413333333333334, + "grad_norm": 0.47381719946861267, + "learning_rate": 3.879833333333334e-05, + "loss": 2.077555694580078, + "step": 168100 + }, + { + "epoch": 22.426666666666666, + "grad_norm": 0.46231788396835327, + "learning_rate": 3.879166666666667e-05, + "loss": 2.079783172607422, + "step": 168200 + }, + { + "epoch": 22.44, + "grad_norm": 0.47428375482559204, + "learning_rate": 3.8785e-05, + "loss": 2.0778314208984376, + "step": 168300 + }, + { + "epoch": 22.453333333333333, + "grad_norm": 0.4597417116165161, + "learning_rate": 3.8778333333333334e-05, + "loss": 2.0790553283691406, + "step": 168400 + }, + { + "epoch": 22.466666666666665, + "grad_norm": 0.4623263478279114, + "learning_rate": 3.877166666666667e-05, + "loss": 2.0836700439453124, + "step": 168500 + }, + { + "epoch": 22.48, + "grad_norm": 0.4659540355205536, + "learning_rate": 3.8765e-05, + "loss": 2.0827793884277344, + "step": 168600 + }, + { + "epoch": 22.493333333333332, + "grad_norm": 0.47923794388771057, + "learning_rate": 3.875833333333334e-05, + "loss": 2.080955810546875, + "step": 168700 + }, + { + "epoch": 22.506666666666668, + "grad_norm": 0.4475663900375366, + "learning_rate": 3.875166666666667e-05, + "loss": 2.0815643310546874, + "step": 168800 + }, + { + "epoch": 22.52, + "grad_norm": 0.4618177115917206, + "learning_rate": 3.8745e-05, + "loss": 2.086231689453125, + "step": 168900 + }, + { + "epoch": 22.533333333333335, + "grad_norm": 0.4708126187324524, + "learning_rate": 3.8738333333333335e-05, + "loss": 2.080514373779297, + "step": 169000 + }, + { + "epoch": 22.546666666666667, + "grad_norm": 0.49023526906967163, + "learning_rate": 3.873166666666667e-05, + "loss": 2.084552001953125, + "step": 169100 + }, + { + "epoch": 22.56, + "grad_norm": 0.48341864347457886, + "learning_rate": 3.8725e-05, + "loss": 2.083937530517578, + "step": 169200 + }, + { + "epoch": 22.573333333333334, + "grad_norm": 0.4568435251712799, + "learning_rate": 3.87184e-05, + "loss": 2.0851905822753904, + "step": 169300 + }, + { + "epoch": 22.586666666666666, + "grad_norm": 0.46612024307250977, + "learning_rate": 3.871173333333333e-05, + "loss": 2.084072265625, + "step": 169400 + }, + { + "epoch": 22.6, + "grad_norm": 0.4634513258934021, + "learning_rate": 3.870506666666667e-05, + "loss": 2.0853956604003905, + "step": 169500 + }, + { + "epoch": 22.613333333333333, + "grad_norm": 0.46668726205825806, + "learning_rate": 3.86984e-05, + "loss": 2.084056854248047, + "step": 169600 + }, + { + "epoch": 22.626666666666665, + "grad_norm": 0.4836789667606354, + "learning_rate": 3.8691733333333334e-05, + "loss": 2.0863687133789064, + "step": 169700 + }, + { + "epoch": 22.64, + "grad_norm": 0.48101136088371277, + "learning_rate": 3.8685066666666667e-05, + "loss": 2.0898916625976565, + "step": 169800 + }, + { + "epoch": 22.653333333333332, + "grad_norm": 0.4785110652446747, + "learning_rate": 3.8678400000000006e-05, + "loss": 2.088622589111328, + "step": 169900 + }, + { + "epoch": 22.666666666666668, + "grad_norm": 0.4937325716018677, + "learning_rate": 3.867173333333334e-05, + "loss": 2.0871990966796874, + "step": 170000 + }, + { + "epoch": 22.68, + "grad_norm": 0.5297033786773682, + "learning_rate": 3.866506666666666e-05, + "loss": 2.09009033203125, + "step": 170100 + }, + { + "epoch": 22.693333333333335, + "grad_norm": 0.4711852967739105, + "learning_rate": 3.86584e-05, + "loss": 2.089188690185547, + "step": 170200 + }, + { + "epoch": 22.706666666666667, + "grad_norm": 0.5121586322784424, + "learning_rate": 3.8651733333333335e-05, + "loss": 2.0879640197753906, + "step": 170300 + }, + { + "epoch": 22.72, + "grad_norm": 0.4589405953884125, + "learning_rate": 3.864506666666667e-05, + "loss": 2.088956298828125, + "step": 170400 + }, + { + "epoch": 22.733333333333334, + "grad_norm": 0.4850880205631256, + "learning_rate": 3.86384e-05, + "loss": 2.090540466308594, + "step": 170500 + }, + { + "epoch": 22.746666666666666, + "grad_norm": 0.47406673431396484, + "learning_rate": 3.863173333333334e-05, + "loss": 2.090264892578125, + "step": 170600 + }, + { + "epoch": 22.76, + "grad_norm": 0.45255404710769653, + "learning_rate": 3.862506666666667e-05, + "loss": 2.0918638610839846, + "step": 170700 + }, + { + "epoch": 22.773333333333333, + "grad_norm": 0.5285037159919739, + "learning_rate": 3.86184e-05, + "loss": 2.0930937194824217, + "step": 170800 + }, + { + "epoch": 22.786666666666665, + "grad_norm": 0.45995503664016724, + "learning_rate": 3.8611733333333335e-05, + "loss": 2.0932025146484374, + "step": 170900 + }, + { + "epoch": 22.8, + "grad_norm": 0.4696432054042816, + "learning_rate": 3.860506666666667e-05, + "loss": 2.0916217041015623, + "step": 171000 + }, + { + "epoch": 22.813333333333333, + "grad_norm": 0.4758760929107666, + "learning_rate": 3.85984e-05, + "loss": 2.0916656494140624, + "step": 171100 + }, + { + "epoch": 22.826666666666668, + "grad_norm": 0.4615608751773834, + "learning_rate": 3.859173333333334e-05, + "loss": 2.0914183044433594, + "step": 171200 + }, + { + "epoch": 22.84, + "grad_norm": 0.4628288149833679, + "learning_rate": 3.858513333333333e-05, + "loss": 2.0931082153320313, + "step": 171300 + }, + { + "epoch": 22.85333333333333, + "grad_norm": 0.47100356221199036, + "learning_rate": 3.857846666666667e-05, + "loss": 2.0922206115722655, + "step": 171400 + }, + { + "epoch": 22.866666666666667, + "grad_norm": 0.4577377736568451, + "learning_rate": 3.85718e-05, + "loss": 2.094632263183594, + "step": 171500 + }, + { + "epoch": 22.88, + "grad_norm": 0.4824475944042206, + "learning_rate": 3.8565133333333335e-05, + "loss": 2.0955517578125, + "step": 171600 + }, + { + "epoch": 22.893333333333334, + "grad_norm": 0.46944087743759155, + "learning_rate": 3.8558466666666674e-05, + "loss": 2.0956381225585936, + "step": 171700 + }, + { + "epoch": 22.906666666666666, + "grad_norm": 0.4713914692401886, + "learning_rate": 3.8551800000000006e-05, + "loss": 2.0936820983886717, + "step": 171800 + }, + { + "epoch": 22.92, + "grad_norm": 0.4607670307159424, + "learning_rate": 3.854513333333333e-05, + "loss": 2.093219757080078, + "step": 171900 + }, + { + "epoch": 22.933333333333334, + "grad_norm": 0.46481382846832275, + "learning_rate": 3.853846666666667e-05, + "loss": 2.0938676452636718, + "step": 172000 + }, + { + "epoch": 22.946666666666665, + "grad_norm": 0.46048957109451294, + "learning_rate": 3.85318e-05, + "loss": 2.0956375122070314, + "step": 172100 + }, + { + "epoch": 22.96, + "grad_norm": 0.4736049771308899, + "learning_rate": 3.8525133333333335e-05, + "loss": 2.1002877807617186, + "step": 172200 + }, + { + "epoch": 22.973333333333333, + "grad_norm": 0.4825821816921234, + "learning_rate": 3.851846666666667e-05, + "loss": 2.0992372131347654, + "step": 172300 + }, + { + "epoch": 22.986666666666668, + "grad_norm": 0.4482329785823822, + "learning_rate": 3.8511800000000006e-05, + "loss": 2.100669708251953, + "step": 172400 + }, + { + "epoch": 23.0, + "grad_norm": 0.477242648601532, + "learning_rate": 3.850513333333334e-05, + "loss": 2.098603057861328, + "step": 172500 + }, + { + "epoch": 23.013333333333332, + "grad_norm": 0.49231958389282227, + "learning_rate": 3.8498466666666664e-05, + "loss": 2.028154296875, + "step": 172600 + }, + { + "epoch": 23.026666666666667, + "grad_norm": 0.4812023937702179, + "learning_rate": 3.84918e-05, + "loss": 2.0299658203125, + "step": 172700 + }, + { + "epoch": 23.04, + "grad_norm": 0.4930895268917084, + "learning_rate": 3.8485133333333335e-05, + "loss": 2.031252746582031, + "step": 172800 + }, + { + "epoch": 23.053333333333335, + "grad_norm": 0.48605743050575256, + "learning_rate": 3.847846666666667e-05, + "loss": 2.0349273681640625, + "step": 172900 + }, + { + "epoch": 23.066666666666666, + "grad_norm": 0.4839179813861847, + "learning_rate": 3.84718e-05, + "loss": 2.031682891845703, + "step": 173000 + }, + { + "epoch": 23.08, + "grad_norm": 0.5092812180519104, + "learning_rate": 3.846513333333334e-05, + "loss": 2.033275451660156, + "step": 173100 + }, + { + "epoch": 23.093333333333334, + "grad_norm": 0.4731476604938507, + "learning_rate": 3.845853333333334e-05, + "loss": 2.0364311218261717, + "step": 173200 + }, + { + "epoch": 23.106666666666666, + "grad_norm": 0.5190111398696899, + "learning_rate": 3.845186666666667e-05, + "loss": 2.0340025329589846, + "step": 173300 + }, + { + "epoch": 23.12, + "grad_norm": 0.48105064034461975, + "learning_rate": 3.84452e-05, + "loss": 2.037009582519531, + "step": 173400 + }, + { + "epoch": 23.133333333333333, + "grad_norm": 0.52114337682724, + "learning_rate": 3.8438533333333335e-05, + "loss": 2.0407159423828123, + "step": 173500 + }, + { + "epoch": 23.14666666666667, + "grad_norm": 0.4885977804660797, + "learning_rate": 3.843186666666667e-05, + "loss": 2.03779541015625, + "step": 173600 + }, + { + "epoch": 23.16, + "grad_norm": 0.48264557123184204, + "learning_rate": 3.84252e-05, + "loss": 2.0406539916992186, + "step": 173700 + }, + { + "epoch": 23.173333333333332, + "grad_norm": 0.4905865490436554, + "learning_rate": 3.841853333333333e-05, + "loss": 2.0425653076171875, + "step": 173800 + }, + { + "epoch": 23.186666666666667, + "grad_norm": 0.5025938749313354, + "learning_rate": 3.841186666666667e-05, + "loss": 2.0424517822265624, + "step": 173900 + }, + { + "epoch": 23.2, + "grad_norm": 0.4712689220905304, + "learning_rate": 3.84052e-05, + "loss": 2.0432838439941405, + "step": 174000 + }, + { + "epoch": 23.213333333333335, + "grad_norm": 0.48581528663635254, + "learning_rate": 3.8398533333333335e-05, + "loss": 2.0483238220214846, + "step": 174100 + }, + { + "epoch": 23.226666666666667, + "grad_norm": 0.4895326793193817, + "learning_rate": 3.839186666666667e-05, + "loss": 2.0430706787109374, + "step": 174200 + }, + { + "epoch": 23.24, + "grad_norm": 0.48464319109916687, + "learning_rate": 3.8385200000000006e-05, + "loss": 2.041295623779297, + "step": 174300 + }, + { + "epoch": 23.253333333333334, + "grad_norm": 0.47198572754859924, + "learning_rate": 3.837853333333333e-05, + "loss": 2.046827850341797, + "step": 174400 + }, + { + "epoch": 23.266666666666666, + "grad_norm": 0.5147217512130737, + "learning_rate": 3.8371866666666664e-05, + "loss": 2.04611572265625, + "step": 174500 + }, + { + "epoch": 23.28, + "grad_norm": 0.597183108329773, + "learning_rate": 3.83652e-05, + "loss": 2.0490652465820314, + "step": 174600 + }, + { + "epoch": 23.293333333333333, + "grad_norm": 0.4989413022994995, + "learning_rate": 3.8358533333333336e-05, + "loss": 2.0499391174316406, + "step": 174700 + }, + { + "epoch": 23.306666666666665, + "grad_norm": 0.48632174730300903, + "learning_rate": 3.835186666666667e-05, + "loss": 2.046672515869141, + "step": 174800 + }, + { + "epoch": 23.32, + "grad_norm": 0.5028402209281921, + "learning_rate": 3.83452e-05, + "loss": 2.05111572265625, + "step": 174900 + }, + { + "epoch": 23.333333333333332, + "grad_norm": 0.5091901421546936, + "learning_rate": 3.833853333333334e-05, + "loss": 2.051913299560547, + "step": 175000 + }, + { + "epoch": 23.346666666666668, + "grad_norm": 0.4841155409812927, + "learning_rate": 3.8331866666666665e-05, + "loss": 2.051449737548828, + "step": 175100 + }, + { + "epoch": 23.36, + "grad_norm": 0.4835347533226013, + "learning_rate": 3.83252e-05, + "loss": 2.050365295410156, + "step": 175200 + }, + { + "epoch": 23.373333333333335, + "grad_norm": 0.4950560927391052, + "learning_rate": 3.8318533333333336e-05, + "loss": 2.0553269958496094, + "step": 175300 + }, + { + "epoch": 23.386666666666667, + "grad_norm": 0.4722176492214203, + "learning_rate": 3.831186666666667e-05, + "loss": 2.049596862792969, + "step": 175400 + }, + { + "epoch": 23.4, + "grad_norm": 0.48539531230926514, + "learning_rate": 3.83052e-05, + "loss": 2.055406036376953, + "step": 175500 + }, + { + "epoch": 23.413333333333334, + "grad_norm": 0.49876898527145386, + "learning_rate": 3.829853333333334e-05, + "loss": 2.055661163330078, + "step": 175600 + }, + { + "epoch": 23.426666666666666, + "grad_norm": 0.48749157786369324, + "learning_rate": 3.829186666666667e-05, + "loss": 2.053136749267578, + "step": 175700 + }, + { + "epoch": 23.44, + "grad_norm": 0.49499818682670593, + "learning_rate": 3.8285200000000004e-05, + "loss": 2.049785614013672, + "step": 175800 + }, + { + "epoch": 23.453333333333333, + "grad_norm": 0.4992135465145111, + "learning_rate": 3.827853333333333e-05, + "loss": 2.0580978393554688, + "step": 175900 + }, + { + "epoch": 23.466666666666665, + "grad_norm": 0.5279852747917175, + "learning_rate": 3.827186666666667e-05, + "loss": 2.056828918457031, + "step": 176000 + }, + { + "epoch": 23.48, + "grad_norm": 0.4881434440612793, + "learning_rate": 3.82652e-05, + "loss": 2.057747039794922, + "step": 176100 + }, + { + "epoch": 23.493333333333332, + "grad_norm": 0.4738701283931732, + "learning_rate": 3.825853333333333e-05, + "loss": 2.0571058654785155, + "step": 176200 + }, + { + "epoch": 23.506666666666668, + "grad_norm": 0.5095720887184143, + "learning_rate": 3.825186666666667e-05, + "loss": 2.0584869384765625, + "step": 176300 + }, + { + "epoch": 23.52, + "grad_norm": 0.5219035148620605, + "learning_rate": 3.824526666666667e-05, + "loss": 2.0586363220214845, + "step": 176400 + }, + { + "epoch": 23.533333333333335, + "grad_norm": 0.47829073667526245, + "learning_rate": 3.8238600000000004e-05, + "loss": 2.0578681945800783, + "step": 176500 + }, + { + "epoch": 23.546666666666667, + "grad_norm": 0.4869665205478668, + "learning_rate": 3.8231933333333336e-05, + "loss": 2.0592056274414063, + "step": 176600 + }, + { + "epoch": 23.56, + "grad_norm": 0.5007086396217346, + "learning_rate": 3.822526666666667e-05, + "loss": 2.0624826049804685, + "step": 176700 + }, + { + "epoch": 23.573333333333334, + "grad_norm": 0.5046160221099854, + "learning_rate": 3.821860000000001e-05, + "loss": 2.057146453857422, + "step": 176800 + }, + { + "epoch": 23.586666666666666, + "grad_norm": 0.5090702772140503, + "learning_rate": 3.821193333333333e-05, + "loss": 2.060751647949219, + "step": 176900 + }, + { + "epoch": 23.6, + "grad_norm": 0.47376617789268494, + "learning_rate": 3.8205266666666665e-05, + "loss": 2.061948089599609, + "step": 177000 + }, + { + "epoch": 23.613333333333333, + "grad_norm": 0.5011287331581116, + "learning_rate": 3.8198600000000004e-05, + "loss": 2.0626011657714844, + "step": 177100 + }, + { + "epoch": 23.626666666666665, + "grad_norm": 0.47504308819770813, + "learning_rate": 3.8191933333333336e-05, + "loss": 2.062792205810547, + "step": 177200 + }, + { + "epoch": 23.64, + "grad_norm": 0.4749816358089447, + "learning_rate": 3.818526666666667e-05, + "loss": 2.063485412597656, + "step": 177300 + }, + { + "epoch": 23.653333333333332, + "grad_norm": 0.48922663927078247, + "learning_rate": 3.81786e-05, + "loss": 2.065717926025391, + "step": 177400 + }, + { + "epoch": 23.666666666666668, + "grad_norm": 0.5128903985023499, + "learning_rate": 3.817193333333334e-05, + "loss": 2.0668560791015627, + "step": 177500 + }, + { + "epoch": 23.68, + "grad_norm": 0.508452832698822, + "learning_rate": 3.8165266666666665e-05, + "loss": 2.0685348510742188, + "step": 177600 + }, + { + "epoch": 23.693333333333335, + "grad_norm": 0.5150190591812134, + "learning_rate": 3.81586e-05, + "loss": 2.0641282653808593, + "step": 177700 + }, + { + "epoch": 23.706666666666667, + "grad_norm": 0.4919812083244324, + "learning_rate": 3.8151933333333337e-05, + "loss": 2.066805725097656, + "step": 177800 + }, + { + "epoch": 23.72, + "grad_norm": 0.48557278513908386, + "learning_rate": 3.814526666666667e-05, + "loss": 2.066239013671875, + "step": 177900 + }, + { + "epoch": 23.733333333333334, + "grad_norm": 0.500818133354187, + "learning_rate": 3.81386e-05, + "loss": 2.0668170166015627, + "step": 178000 + }, + { + "epoch": 23.746666666666666, + "grad_norm": 0.5056354999542236, + "learning_rate": 3.813193333333333e-05, + "loss": 2.067618103027344, + "step": 178100 + }, + { + "epoch": 23.76, + "grad_norm": 0.4854942858219147, + "learning_rate": 3.812526666666667e-05, + "loss": 2.0688438415527344, + "step": 178200 + }, + { + "epoch": 23.773333333333333, + "grad_norm": 0.48774439096450806, + "learning_rate": 3.8118600000000005e-05, + "loss": 2.072354278564453, + "step": 178300 + }, + { + "epoch": 23.786666666666665, + "grad_norm": 0.4946364462375641, + "learning_rate": 3.811193333333333e-05, + "loss": 2.0678961181640627, + "step": 178400 + }, + { + "epoch": 23.8, + "grad_norm": 0.4886922240257263, + "learning_rate": 3.810526666666667e-05, + "loss": 2.0691818237304687, + "step": 178500 + }, + { + "epoch": 23.813333333333333, + "grad_norm": 0.5024255514144897, + "learning_rate": 3.80986e-05, + "loss": 2.072510223388672, + "step": 178600 + }, + { + "epoch": 23.826666666666668, + "grad_norm": 0.4981136620044708, + "learning_rate": 3.8091933333333334e-05, + "loss": 2.067329864501953, + "step": 178700 + }, + { + "epoch": 23.84, + "grad_norm": 0.48290660977363586, + "learning_rate": 3.8085266666666666e-05, + "loss": 2.0694883728027342, + "step": 178800 + }, + { + "epoch": 23.85333333333333, + "grad_norm": 0.49647679924964905, + "learning_rate": 3.8078600000000005e-05, + "loss": 2.068336639404297, + "step": 178900 + }, + { + "epoch": 23.866666666666667, + "grad_norm": 0.49168041348457336, + "learning_rate": 3.807193333333334e-05, + "loss": 2.0738255310058595, + "step": 179000 + }, + { + "epoch": 23.88, + "grad_norm": 0.49252060055732727, + "learning_rate": 3.806526666666666e-05, + "loss": 2.0729522705078125, + "step": 179100 + }, + { + "epoch": 23.893333333333334, + "grad_norm": 0.49251434206962585, + "learning_rate": 3.80586e-05, + "loss": 2.071816711425781, + "step": 179200 + }, + { + "epoch": 23.906666666666666, + "grad_norm": 0.506790280342102, + "learning_rate": 3.8051933333333334e-05, + "loss": 2.0729002380371093, + "step": 179300 + }, + { + "epoch": 23.92, + "grad_norm": 0.4773724377155304, + "learning_rate": 3.8045266666666666e-05, + "loss": 2.077678680419922, + "step": 179400 + }, + { + "epoch": 23.933333333333334, + "grad_norm": 0.5092328786849976, + "learning_rate": 3.80386e-05, + "loss": 2.07469482421875, + "step": 179500 + }, + { + "epoch": 23.946666666666665, + "grad_norm": 0.4978293776512146, + "learning_rate": 3.803193333333334e-05, + "loss": 2.07491455078125, + "step": 179600 + }, + { + "epoch": 23.96, + "grad_norm": 0.508801281452179, + "learning_rate": 3.802526666666667e-05, + "loss": 2.0768801879882814, + "step": 179700 + }, + { + "epoch": 23.973333333333333, + "grad_norm": 0.4916593134403229, + "learning_rate": 3.80186e-05, + "loss": 2.0758741760253905, + "step": 179800 + }, + { + "epoch": 23.986666666666668, + "grad_norm": 0.5212649703025818, + "learning_rate": 3.8011933333333334e-05, + "loss": 2.0771376037597657, + "step": 179900 + }, + { + "epoch": 24.0, + "grad_norm": 0.4899154007434845, + "learning_rate": 3.800526666666667e-05, + "loss": 2.076003112792969, + "step": 180000 + }, + { + "epoch": 24.013333333333332, + "grad_norm": 0.501743733882904, + "learning_rate": 3.7998666666666666e-05, + "loss": 2.003984069824219, + "step": 180100 + }, + { + "epoch": 24.026666666666667, + "grad_norm": 0.5196168422698975, + "learning_rate": 3.7992e-05, + "loss": 2.0016387939453124, + "step": 180200 + }, + { + "epoch": 24.04, + "grad_norm": 0.5263530015945435, + "learning_rate": 3.798533333333334e-05, + "loss": 2.0039300537109375, + "step": 180300 + }, + { + "epoch": 24.053333333333335, + "grad_norm": 0.4923747777938843, + "learning_rate": 3.797866666666667e-05, + "loss": 2.005165252685547, + "step": 180400 + }, + { + "epoch": 24.066666666666666, + "grad_norm": 0.5033460259437561, + "learning_rate": 3.7972e-05, + "loss": 2.006126708984375, + "step": 180500 + }, + { + "epoch": 24.08, + "grad_norm": 0.5112701058387756, + "learning_rate": 3.7965333333333334e-05, + "loss": 2.0073692321777346, + "step": 180600 + }, + { + "epoch": 24.093333333333334, + "grad_norm": 0.511628270149231, + "learning_rate": 3.795866666666667e-05, + "loss": 2.0070504760742187, + "step": 180700 + }, + { + "epoch": 24.106666666666666, + "grad_norm": 0.5259645581245422, + "learning_rate": 3.7952000000000005e-05, + "loss": 2.005118865966797, + "step": 180800 + }, + { + "epoch": 24.12, + "grad_norm": 0.48191338777542114, + "learning_rate": 3.794533333333333e-05, + "loss": 2.0112799072265624, + "step": 180900 + }, + { + "epoch": 24.133333333333333, + "grad_norm": 0.5414926409721375, + "learning_rate": 3.793866666666667e-05, + "loss": 2.0131875610351564, + "step": 181000 + }, + { + "epoch": 24.14666666666667, + "grad_norm": 0.5131890773773193, + "learning_rate": 3.7932e-05, + "loss": 2.0128208923339845, + "step": 181100 + }, + { + "epoch": 24.16, + "grad_norm": 0.486336350440979, + "learning_rate": 3.7925333333333334e-05, + "loss": 2.017211151123047, + "step": 181200 + }, + { + "epoch": 24.173333333333332, + "grad_norm": 0.49979206919670105, + "learning_rate": 3.7918666666666667e-05, + "loss": 2.013517150878906, + "step": 181300 + }, + { + "epoch": 24.186666666666667, + "grad_norm": 0.508499801158905, + "learning_rate": 3.7912000000000006e-05, + "loss": 2.0146775817871094, + "step": 181400 + }, + { + "epoch": 24.2, + "grad_norm": 0.5656309127807617, + "learning_rate": 3.790533333333334e-05, + "loss": 2.017547607421875, + "step": 181500 + }, + { + "epoch": 24.213333333333335, + "grad_norm": 0.5219641327857971, + "learning_rate": 3.789866666666667e-05, + "loss": 2.0210311889648436, + "step": 181600 + }, + { + "epoch": 24.226666666666667, + "grad_norm": 0.5194352269172668, + "learning_rate": 3.7892e-05, + "loss": 2.016371612548828, + "step": 181700 + }, + { + "epoch": 24.24, + "grad_norm": 0.5241196155548096, + "learning_rate": 3.7885333333333335e-05, + "loss": 2.022900390625, + "step": 181800 + }, + { + "epoch": 24.253333333333334, + "grad_norm": 0.48599502444267273, + "learning_rate": 3.787866666666667e-05, + "loss": 2.0237261962890627, + "step": 181900 + }, + { + "epoch": 24.266666666666666, + "grad_norm": 0.5147618055343628, + "learning_rate": 3.7872e-05, + "loss": 2.023406219482422, + "step": 182000 + }, + { + "epoch": 24.28, + "grad_norm": 0.5101783275604248, + "learning_rate": 3.786533333333334e-05, + "loss": 2.0179656982421874, + "step": 182100 + }, + { + "epoch": 24.293333333333333, + "grad_norm": 0.505097508430481, + "learning_rate": 3.785873333333334e-05, + "loss": 2.0241987609863283, + "step": 182200 + }, + { + "epoch": 24.306666666666665, + "grad_norm": 0.5323469638824463, + "learning_rate": 3.785206666666667e-05, + "loss": 2.0228041076660155, + "step": 182300 + }, + { + "epoch": 24.32, + "grad_norm": 0.5330120325088501, + "learning_rate": 3.78454e-05, + "loss": 2.0276548767089846, + "step": 182400 + }, + { + "epoch": 24.333333333333332, + "grad_norm": 0.5185723900794983, + "learning_rate": 3.7838733333333334e-05, + "loss": 2.027704772949219, + "step": 182500 + }, + { + "epoch": 24.346666666666668, + "grad_norm": 0.5001394152641296, + "learning_rate": 3.783206666666667e-05, + "loss": 2.028656463623047, + "step": 182600 + }, + { + "epoch": 24.36, + "grad_norm": 0.5111181139945984, + "learning_rate": 3.78254e-05, + "loss": 2.0222459411621094, + "step": 182700 + }, + { + "epoch": 24.373333333333335, + "grad_norm": 0.5283573865890503, + "learning_rate": 3.781873333333333e-05, + "loss": 2.025753631591797, + "step": 182800 + }, + { + "epoch": 24.386666666666667, + "grad_norm": 0.5587430000305176, + "learning_rate": 3.781206666666667e-05, + "loss": 2.0282719421386717, + "step": 182900 + }, + { + "epoch": 24.4, + "grad_norm": 0.5276029109954834, + "learning_rate": 3.78054e-05, + "loss": 2.0236598205566407, + "step": 183000 + }, + { + "epoch": 24.413333333333334, + "grad_norm": 0.517819881439209, + "learning_rate": 3.7798733333333335e-05, + "loss": 2.0305661010742186, + "step": 183100 + }, + { + "epoch": 24.426666666666666, + "grad_norm": 0.5286267995834351, + "learning_rate": 3.779206666666667e-05, + "loss": 2.030503387451172, + "step": 183200 + }, + { + "epoch": 24.44, + "grad_norm": 0.5311276912689209, + "learning_rate": 3.7785400000000006e-05, + "loss": 2.0295208740234374, + "step": 183300 + }, + { + "epoch": 24.453333333333333, + "grad_norm": 0.5239437222480774, + "learning_rate": 3.777873333333333e-05, + "loss": 2.032499237060547, + "step": 183400 + }, + { + "epoch": 24.466666666666665, + "grad_norm": 0.5115417242050171, + "learning_rate": 3.7772066666666664e-05, + "loss": 2.0358099365234374, + "step": 183500 + }, + { + "epoch": 24.48, + "grad_norm": 0.5413856506347656, + "learning_rate": 3.77654e-05, + "loss": 2.033902130126953, + "step": 183600 + }, + { + "epoch": 24.493333333333332, + "grad_norm": 0.5350323915481567, + "learning_rate": 3.7758733333333335e-05, + "loss": 2.03102783203125, + "step": 183700 + }, + { + "epoch": 24.506666666666668, + "grad_norm": 0.5200849175453186, + "learning_rate": 3.775206666666667e-05, + "loss": 2.0346524047851564, + "step": 183800 + }, + { + "epoch": 24.52, + "grad_norm": 0.5102962255477905, + "learning_rate": 3.7745400000000006e-05, + "loss": 2.03560791015625, + "step": 183900 + }, + { + "epoch": 24.533333333333335, + "grad_norm": 0.5746884346008301, + "learning_rate": 3.773873333333334e-05, + "loss": 2.0360655212402343, + "step": 184000 + }, + { + "epoch": 24.546666666666667, + "grad_norm": 0.5304731726646423, + "learning_rate": 3.773206666666667e-05, + "loss": 2.0354969787597654, + "step": 184100 + }, + { + "epoch": 24.56, + "grad_norm": 0.5169298648834229, + "learning_rate": 3.772546666666667e-05, + "loss": 2.0382408142089843, + "step": 184200 + }, + { + "epoch": 24.573333333333334, + "grad_norm": 0.5369707345962524, + "learning_rate": 3.77188e-05, + "loss": 2.039522399902344, + "step": 184300 + }, + { + "epoch": 24.586666666666666, + "grad_norm": 0.4798973798751831, + "learning_rate": 3.7712133333333334e-05, + "loss": 2.0367251586914064, + "step": 184400 + }, + { + "epoch": 24.6, + "grad_norm": 0.5089485049247742, + "learning_rate": 3.770546666666667e-05, + "loss": 2.03658203125, + "step": 184500 + }, + { + "epoch": 24.613333333333333, + "grad_norm": 0.5315452814102173, + "learning_rate": 3.76988e-05, + "loss": 2.0440740966796875, + "step": 184600 + }, + { + "epoch": 24.626666666666665, + "grad_norm": 0.5431042313575745, + "learning_rate": 3.769213333333334e-05, + "loss": 2.0387681579589843, + "step": 184700 + }, + { + "epoch": 24.64, + "grad_norm": 0.5244868993759155, + "learning_rate": 3.768546666666667e-05, + "loss": 2.0414497375488283, + "step": 184800 + }, + { + "epoch": 24.653333333333332, + "grad_norm": 0.5108836889266968, + "learning_rate": 3.76788e-05, + "loss": 2.0410122680664062, + "step": 184900 + }, + { + "epoch": 24.666666666666668, + "grad_norm": 0.5050901770591736, + "learning_rate": 3.7672133333333335e-05, + "loss": 2.041776580810547, + "step": 185000 + }, + { + "epoch": 24.68, + "grad_norm": 0.5396665930747986, + "learning_rate": 3.7665466666666674e-05, + "loss": 2.0429249572753907, + "step": 185100 + }, + { + "epoch": 24.693333333333335, + "grad_norm": 0.5454257726669312, + "learning_rate": 3.76588e-05, + "loss": 2.044694671630859, + "step": 185200 + }, + { + "epoch": 24.706666666666667, + "grad_norm": 0.5190442204475403, + "learning_rate": 3.765213333333333e-05, + "loss": 2.04460205078125, + "step": 185300 + }, + { + "epoch": 24.72, + "grad_norm": 0.5234954953193665, + "learning_rate": 3.764546666666667e-05, + "loss": 2.0423243713378905, + "step": 185400 + }, + { + "epoch": 24.733333333333334, + "grad_norm": 0.5175752639770508, + "learning_rate": 3.76388e-05, + "loss": 2.043539276123047, + "step": 185500 + }, + { + "epoch": 24.746666666666666, + "grad_norm": 0.519957423210144, + "learning_rate": 3.7632133333333335e-05, + "loss": 2.0451559448242187, + "step": 185600 + }, + { + "epoch": 24.76, + "grad_norm": 0.49500152468681335, + "learning_rate": 3.762546666666667e-05, + "loss": 2.043379211425781, + "step": 185700 + }, + { + "epoch": 24.773333333333333, + "grad_norm": 0.5160672664642334, + "learning_rate": 3.7618800000000006e-05, + "loss": 2.046691589355469, + "step": 185800 + }, + { + "epoch": 24.786666666666665, + "grad_norm": 0.5067774057388306, + "learning_rate": 3.761213333333333e-05, + "loss": 2.046448211669922, + "step": 185900 + }, + { + "epoch": 24.8, + "grad_norm": 0.537140429019928, + "learning_rate": 3.7605466666666664e-05, + "loss": 2.045804901123047, + "step": 186000 + }, + { + "epoch": 24.813333333333333, + "grad_norm": 0.5184574127197266, + "learning_rate": 3.75988e-05, + "loss": 2.0455780029296875, + "step": 186100 + }, + { + "epoch": 24.826666666666668, + "grad_norm": 0.5265442728996277, + "learning_rate": 3.7592133333333336e-05, + "loss": 2.0486622619628907, + "step": 186200 + }, + { + "epoch": 24.84, + "grad_norm": 0.5227593183517456, + "learning_rate": 3.758546666666667e-05, + "loss": 2.0465821838378906, + "step": 186300 + }, + { + "epoch": 24.85333333333333, + "grad_norm": 0.5115875005722046, + "learning_rate": 3.75788e-05, + "loss": 2.048692321777344, + "step": 186400 + }, + { + "epoch": 24.866666666666667, + "grad_norm": 0.5175586342811584, + "learning_rate": 3.75722e-05, + "loss": 2.04896240234375, + "step": 186500 + }, + { + "epoch": 24.88, + "grad_norm": 0.523460865020752, + "learning_rate": 3.756553333333334e-05, + "loss": 2.0502452087402343, + "step": 186600 + }, + { + "epoch": 24.893333333333334, + "grad_norm": 0.5361924767494202, + "learning_rate": 3.755886666666667e-05, + "loss": 2.0494508361816406, + "step": 186700 + }, + { + "epoch": 24.906666666666666, + "grad_norm": 0.5198230743408203, + "learning_rate": 3.75522e-05, + "loss": 2.0510104370117186, + "step": 186800 + }, + { + "epoch": 24.92, + "grad_norm": 0.5249742269515991, + "learning_rate": 3.7545533333333335e-05, + "loss": 2.05044189453125, + "step": 186900 + }, + { + "epoch": 24.933333333333334, + "grad_norm": 0.5150473117828369, + "learning_rate": 3.753886666666667e-05, + "loss": 2.0530665588378905, + "step": 187000 + }, + { + "epoch": 24.946666666666665, + "grad_norm": 0.5269672870635986, + "learning_rate": 3.75322e-05, + "loss": 2.052723236083984, + "step": 187100 + }, + { + "epoch": 24.96, + "grad_norm": 0.498569518327713, + "learning_rate": 3.752553333333333e-05, + "loss": 2.053250579833984, + "step": 187200 + }, + { + "epoch": 24.973333333333333, + "grad_norm": 0.5326972007751465, + "learning_rate": 3.751886666666667e-05, + "loss": 2.0500621032714843, + "step": 187300 + }, + { + "epoch": 24.986666666666668, + "grad_norm": 0.5814267992973328, + "learning_rate": 3.75122e-05, + "loss": 2.0546443176269533, + "step": 187400 + }, + { + "epoch": 25.0, + "grad_norm": 0.5015130043029785, + "learning_rate": 3.7505533333333335e-05, + "loss": 2.0553138732910154, + "step": 187500 + }, + { + "epoch": 25.013333333333332, + "grad_norm": 0.5198807120323181, + "learning_rate": 3.749886666666667e-05, + "loss": 1.9766946411132813, + "step": 187600 + }, + { + "epoch": 25.026666666666667, + "grad_norm": 0.5337755680084229, + "learning_rate": 3.74922e-05, + "loss": 1.9777664184570312, + "step": 187700 + }, + { + "epoch": 25.04, + "grad_norm": 0.5432220697402954, + "learning_rate": 3.748553333333333e-05, + "loss": 1.9787986755371094, + "step": 187800 + }, + { + "epoch": 25.053333333333335, + "grad_norm": 0.5276835560798645, + "learning_rate": 3.7478866666666664e-05, + "loss": 1.9827880859375, + "step": 187900 + }, + { + "epoch": 25.066666666666666, + "grad_norm": 0.5256075263023376, + "learning_rate": 3.7472200000000004e-05, + "loss": 1.9845838928222657, + "step": 188000 + }, + { + "epoch": 25.08, + "grad_norm": 0.521128237247467, + "learning_rate": 3.7465533333333336e-05, + "loss": 1.984072265625, + "step": 188100 + }, + { + "epoch": 25.093333333333334, + "grad_norm": 0.7402787208557129, + "learning_rate": 3.745886666666667e-05, + "loss": 1.9819233703613282, + "step": 188200 + }, + { + "epoch": 25.106666666666666, + "grad_norm": 0.5602257251739502, + "learning_rate": 3.745220000000001e-05, + "loss": 1.9857809448242187, + "step": 188300 + }, + { + "epoch": 25.12, + "grad_norm": 0.5449258685112, + "learning_rate": 3.744553333333333e-05, + "loss": 1.9836058044433593, + "step": 188400 + }, + { + "epoch": 25.133333333333333, + "grad_norm": 0.5279524326324463, + "learning_rate": 3.7438866666666665e-05, + "loss": 1.9868746948242189, + "step": 188500 + }, + { + "epoch": 25.14666666666667, + "grad_norm": 0.5134731531143188, + "learning_rate": 3.7432200000000004e-05, + "loss": 1.984371337890625, + "step": 188600 + }, + { + "epoch": 25.16, + "grad_norm": 0.534136950969696, + "learning_rate": 3.7425533333333336e-05, + "loss": 1.990037841796875, + "step": 188700 + }, + { + "epoch": 25.173333333333332, + "grad_norm": 0.5440365672111511, + "learning_rate": 3.741886666666667e-05, + "loss": 1.9899058532714844, + "step": 188800 + }, + { + "epoch": 25.186666666666667, + "grad_norm": 0.5396292209625244, + "learning_rate": 3.741226666666667e-05, + "loss": 1.9931028747558595, + "step": 188900 + }, + { + "epoch": 25.2, + "grad_norm": 0.5376026034355164, + "learning_rate": 3.74056e-05, + "loss": 1.99557373046875, + "step": 189000 + }, + { + "epoch": 25.213333333333335, + "grad_norm": 0.5177650451660156, + "learning_rate": 3.739893333333334e-05, + "loss": 1.9946913146972656, + "step": 189100 + }, + { + "epoch": 25.226666666666667, + "grad_norm": 0.5463927984237671, + "learning_rate": 3.739226666666667e-05, + "loss": 1.993941192626953, + "step": 189200 + }, + { + "epoch": 25.24, + "grad_norm": 0.5426744818687439, + "learning_rate": 3.73856e-05, + "loss": 1.9958428955078125, + "step": 189300 + }, + { + "epoch": 25.253333333333334, + "grad_norm": 0.5297708511352539, + "learning_rate": 3.7378933333333336e-05, + "loss": 1.995465087890625, + "step": 189400 + }, + { + "epoch": 25.266666666666666, + "grad_norm": 0.5523133873939514, + "learning_rate": 3.737226666666667e-05, + "loss": 2.0024423217773437, + "step": 189500 + }, + { + "epoch": 25.28, + "grad_norm": 0.551189124584198, + "learning_rate": 3.73656e-05, + "loss": 1.996693115234375, + "step": 189600 + }, + { + "epoch": 25.293333333333333, + "grad_norm": 0.5185670852661133, + "learning_rate": 3.735893333333333e-05, + "loss": 1.9998982238769532, + "step": 189700 + }, + { + "epoch": 25.306666666666665, + "grad_norm": 0.5398461818695068, + "learning_rate": 3.735226666666667e-05, + "loss": 1.9971189880371094, + "step": 189800 + }, + { + "epoch": 25.32, + "grad_norm": 0.5354723930358887, + "learning_rate": 3.7345600000000004e-05, + "loss": 1.9997674560546874, + "step": 189900 + }, + { + "epoch": 25.333333333333332, + "grad_norm": 0.5407664775848389, + "learning_rate": 3.7338933333333336e-05, + "loss": 1.9974674987792969, + "step": 190000 + }, + { + "epoch": 25.346666666666668, + "grad_norm": 0.5344270467758179, + "learning_rate": 3.733226666666667e-05, + "loss": 2.003179473876953, + "step": 190100 + }, + { + "epoch": 25.36, + "grad_norm": 0.5190737247467041, + "learning_rate": 3.73256e-05, + "loss": 2.006910552978516, + "step": 190200 + }, + { + "epoch": 25.373333333333335, + "grad_norm": 0.5444039106369019, + "learning_rate": 3.731893333333333e-05, + "loss": 2.0056292724609377, + "step": 190300 + }, + { + "epoch": 25.386666666666667, + "grad_norm": 0.5827769041061401, + "learning_rate": 3.7312266666666665e-05, + "loss": 2.003057098388672, + "step": 190400 + }, + { + "epoch": 25.4, + "grad_norm": 0.5491002202033997, + "learning_rate": 3.7305600000000004e-05, + "loss": 2.005493469238281, + "step": 190500 + }, + { + "epoch": 25.413333333333334, + "grad_norm": 0.5325082540512085, + "learning_rate": 3.7298933333333336e-05, + "loss": 2.0034739685058596, + "step": 190600 + }, + { + "epoch": 25.426666666666666, + "grad_norm": 0.5534201860427856, + "learning_rate": 3.729226666666667e-05, + "loss": 2.005567169189453, + "step": 190700 + }, + { + "epoch": 25.44, + "grad_norm": 0.5325811505317688, + "learning_rate": 3.72856e-05, + "loss": 2.004087371826172, + "step": 190800 + }, + { + "epoch": 25.453333333333333, + "grad_norm": 0.5336616039276123, + "learning_rate": 3.727893333333333e-05, + "loss": 2.0060054016113282, + "step": 190900 + }, + { + "epoch": 25.466666666666665, + "grad_norm": 0.550896406173706, + "learning_rate": 3.7272266666666665e-05, + "loss": 2.0102296447753907, + "step": 191000 + }, + { + "epoch": 25.48, + "grad_norm": 0.5317057967185974, + "learning_rate": 3.72656e-05, + "loss": 2.0113670349121096, + "step": 191100 + }, + { + "epoch": 25.493333333333332, + "grad_norm": 0.5150067806243896, + "learning_rate": 3.725893333333334e-05, + "loss": 2.013133697509766, + "step": 191200 + }, + { + "epoch": 25.506666666666668, + "grad_norm": 0.5351247787475586, + "learning_rate": 3.725226666666667e-05, + "loss": 2.010963134765625, + "step": 191300 + }, + { + "epoch": 25.52, + "grad_norm": 0.5194895267486572, + "learning_rate": 3.724566666666667e-05, + "loss": 2.012650451660156, + "step": 191400 + }, + { + "epoch": 25.533333333333335, + "grad_norm": 0.539284884929657, + "learning_rate": 3.7239e-05, + "loss": 2.010073394775391, + "step": 191500 + }, + { + "epoch": 25.546666666666667, + "grad_norm": 0.5227241516113281, + "learning_rate": 3.723233333333333e-05, + "loss": 2.011913299560547, + "step": 191600 + }, + { + "epoch": 25.56, + "grad_norm": 0.5342681407928467, + "learning_rate": 3.722566666666667e-05, + "loss": 2.012406921386719, + "step": 191700 + }, + { + "epoch": 25.573333333333334, + "grad_norm": 0.5252745151519775, + "learning_rate": 3.7219000000000004e-05, + "loss": 2.011879577636719, + "step": 191800 + }, + { + "epoch": 25.586666666666666, + "grad_norm": 0.5306975245475769, + "learning_rate": 3.721233333333333e-05, + "loss": 2.0142337036132814, + "step": 191900 + }, + { + "epoch": 25.6, + "grad_norm": 0.5551440119743347, + "learning_rate": 3.720566666666667e-05, + "loss": 2.011077880859375, + "step": 192000 + }, + { + "epoch": 25.613333333333333, + "grad_norm": 0.5400145053863525, + "learning_rate": 3.7199e-05, + "loss": 2.012953643798828, + "step": 192100 + }, + { + "epoch": 25.626666666666665, + "grad_norm": 0.5293111205101013, + "learning_rate": 3.719233333333333e-05, + "loss": 2.0181004333496095, + "step": 192200 + }, + { + "epoch": 25.64, + "grad_norm": 0.5242292284965515, + "learning_rate": 3.7185666666666665e-05, + "loss": 2.017105712890625, + "step": 192300 + }, + { + "epoch": 25.653333333333332, + "grad_norm": 0.5292710065841675, + "learning_rate": 3.7179000000000004e-05, + "loss": 2.0163299560546877, + "step": 192400 + }, + { + "epoch": 25.666666666666668, + "grad_norm": 0.5424890518188477, + "learning_rate": 3.717233333333334e-05, + "loss": 2.015196533203125, + "step": 192500 + }, + { + "epoch": 25.68, + "grad_norm": 0.5193257927894592, + "learning_rate": 3.716566666666667e-05, + "loss": 2.0220237731933595, + "step": 192600 + }, + { + "epoch": 25.693333333333335, + "grad_norm": 0.5442838072776794, + "learning_rate": 3.7159e-05, + "loss": 2.0192355346679687, + "step": 192700 + }, + { + "epoch": 25.706666666666667, + "grad_norm": 0.5463152527809143, + "learning_rate": 3.7152333333333333e-05, + "loss": 2.0164019775390627, + "step": 192800 + }, + { + "epoch": 25.72, + "grad_norm": 0.5344257354736328, + "learning_rate": 3.7145666666666666e-05, + "loss": 2.0162734985351562, + "step": 192900 + }, + { + "epoch": 25.733333333333334, + "grad_norm": 0.5351117253303528, + "learning_rate": 3.7139000000000005e-05, + "loss": 2.023134460449219, + "step": 193000 + }, + { + "epoch": 25.746666666666666, + "grad_norm": 0.5418599843978882, + "learning_rate": 3.713233333333334e-05, + "loss": 2.020071563720703, + "step": 193100 + }, + { + "epoch": 25.76, + "grad_norm": 0.5406211018562317, + "learning_rate": 3.712566666666667e-05, + "loss": 2.0211688232421876, + "step": 193200 + }, + { + "epoch": 25.773333333333333, + "grad_norm": 0.5392265915870667, + "learning_rate": 3.7119e-05, + "loss": 2.02107177734375, + "step": 193300 + }, + { + "epoch": 25.786666666666665, + "grad_norm": 0.5478586554527283, + "learning_rate": 3.71124e-05, + "loss": 2.0197589111328127, + "step": 193400 + }, + { + "epoch": 25.8, + "grad_norm": 0.5384021401405334, + "learning_rate": 3.710573333333334e-05, + "loss": 2.0261798095703125, + "step": 193500 + }, + { + "epoch": 25.813333333333333, + "grad_norm": 0.5637001991271973, + "learning_rate": 3.709906666666667e-05, + "loss": 2.0208526611328126, + "step": 193600 + }, + { + "epoch": 25.826666666666668, + "grad_norm": 0.5373884439468384, + "learning_rate": 3.70924e-05, + "loss": 2.0243865966796877, + "step": 193700 + }, + { + "epoch": 25.84, + "grad_norm": 0.5258835554122925, + "learning_rate": 3.7085733333333336e-05, + "loss": 2.025778961181641, + "step": 193800 + }, + { + "epoch": 25.85333333333333, + "grad_norm": 0.5321053862571716, + "learning_rate": 3.707906666666667e-05, + "loss": 2.0245960998535155, + "step": 193900 + }, + { + "epoch": 25.866666666666667, + "grad_norm": 0.5242984294891357, + "learning_rate": 3.70724e-05, + "loss": 2.027090301513672, + "step": 194000 + }, + { + "epoch": 25.88, + "grad_norm": 0.5495437979698181, + "learning_rate": 3.706573333333333e-05, + "loss": 2.0237530517578124, + "step": 194100 + }, + { + "epoch": 25.893333333333334, + "grad_norm": 0.5291945338249207, + "learning_rate": 3.705906666666667e-05, + "loss": 2.0295460510253904, + "step": 194200 + }, + { + "epoch": 25.906666666666666, + "grad_norm": 0.5402800440788269, + "learning_rate": 3.7052400000000005e-05, + "loss": 2.0260325622558595, + "step": 194300 + }, + { + "epoch": 25.92, + "grad_norm": 0.5184854865074158, + "learning_rate": 3.704573333333334e-05, + "loss": 2.0257765197753907, + "step": 194400 + }, + { + "epoch": 25.933333333333334, + "grad_norm": 0.53758704662323, + "learning_rate": 3.703906666666667e-05, + "loss": 2.0274493408203127, + "step": 194500 + }, + { + "epoch": 25.946666666666665, + "grad_norm": 0.5527028441429138, + "learning_rate": 3.70324e-05, + "loss": 2.0257112121582033, + "step": 194600 + }, + { + "epoch": 25.96, + "grad_norm": 0.5566267967224121, + "learning_rate": 3.7025733333333334e-05, + "loss": 2.026977081298828, + "step": 194700 + }, + { + "epoch": 25.973333333333333, + "grad_norm": 0.5336237549781799, + "learning_rate": 3.7019066666666666e-05, + "loss": 2.028018035888672, + "step": 194800 + }, + { + "epoch": 25.986666666666668, + "grad_norm": 0.5185402631759644, + "learning_rate": 3.7012400000000005e-05, + "loss": 2.0281407165527345, + "step": 194900 + }, + { + "epoch": 26.0, + "grad_norm": 0.5450587272644043, + "learning_rate": 3.700573333333334e-05, + "loss": 2.0281640625, + "step": 195000 + }, + { + "epoch": 26.013333333333332, + "grad_norm": 0.541812002658844, + "learning_rate": 3.699906666666667e-05, + "loss": 1.957196044921875, + "step": 195100 + }, + { + "epoch": 26.026666666666667, + "grad_norm": 0.5567891597747803, + "learning_rate": 3.69924e-05, + "loss": 1.9547212219238281, + "step": 195200 + }, + { + "epoch": 26.04, + "grad_norm": 0.5365836024284363, + "learning_rate": 3.6985733333333334e-05, + "loss": 1.9568002319335938, + "step": 195300 + }, + { + "epoch": 26.053333333333335, + "grad_norm": 0.5200800895690918, + "learning_rate": 3.697913333333334e-05, + "loss": 1.9555859375, + "step": 195400 + }, + { + "epoch": 26.066666666666666, + "grad_norm": 0.5740585327148438, + "learning_rate": 3.6972466666666665e-05, + "loss": 1.9540396118164063, + "step": 195500 + }, + { + "epoch": 26.08, + "grad_norm": 0.5473860502243042, + "learning_rate": 3.69658e-05, + "loss": 1.9564674377441407, + "step": 195600 + }, + { + "epoch": 26.093333333333334, + "grad_norm": 0.5414859652519226, + "learning_rate": 3.695913333333334e-05, + "loss": 1.9615504455566406, + "step": 195700 + }, + { + "epoch": 26.106666666666666, + "grad_norm": 0.5546607375144958, + "learning_rate": 3.695246666666667e-05, + "loss": 1.9621275329589845, + "step": 195800 + }, + { + "epoch": 26.12, + "grad_norm": 0.5604114532470703, + "learning_rate": 3.69458e-05, + "loss": 1.958752899169922, + "step": 195900 + }, + { + "epoch": 26.133333333333333, + "grad_norm": 0.5639984607696533, + "learning_rate": 3.6939133333333334e-05, + "loss": 1.9659051513671875, + "step": 196000 + }, + { + "epoch": 26.14666666666667, + "grad_norm": 0.552521288394928, + "learning_rate": 3.693246666666667e-05, + "loss": 1.9680455017089844, + "step": 196100 + }, + { + "epoch": 26.16, + "grad_norm": 0.5784633755683899, + "learning_rate": 3.69258e-05, + "loss": 1.9671054077148438, + "step": 196200 + }, + { + "epoch": 26.173333333333332, + "grad_norm": 0.558786928653717, + "learning_rate": 3.691913333333333e-05, + "loss": 1.9637820434570312, + "step": 196300 + }, + { + "epoch": 26.186666666666667, + "grad_norm": 0.577648401260376, + "learning_rate": 3.691246666666667e-05, + "loss": 1.9695333862304687, + "step": 196400 + }, + { + "epoch": 26.2, + "grad_norm": 0.5630086064338684, + "learning_rate": 3.69058e-05, + "loss": 1.9683534240722655, + "step": 196500 + }, + { + "epoch": 26.213333333333335, + "grad_norm": 0.5924582481384277, + "learning_rate": 3.6899133333333334e-05, + "loss": 1.9684716796875, + "step": 196600 + }, + { + "epoch": 26.226666666666667, + "grad_norm": 0.5777826309204102, + "learning_rate": 3.689246666666667e-05, + "loss": 1.9659332275390624, + "step": 196700 + }, + { + "epoch": 26.24, + "grad_norm": 0.5597606301307678, + "learning_rate": 3.6885800000000005e-05, + "loss": 1.9684400939941407, + "step": 196800 + }, + { + "epoch": 26.253333333333334, + "grad_norm": 0.5973007082939148, + "learning_rate": 3.687913333333334e-05, + "loss": 1.968690185546875, + "step": 196900 + }, + { + "epoch": 26.266666666666666, + "grad_norm": 0.5487164855003357, + "learning_rate": 3.687246666666666e-05, + "loss": 1.9721401977539061, + "step": 197000 + }, + { + "epoch": 26.28, + "grad_norm": 0.5761642456054688, + "learning_rate": 3.68658e-05, + "loss": 1.9738571166992187, + "step": 197100 + }, + { + "epoch": 26.293333333333333, + "grad_norm": 0.5579527020454407, + "learning_rate": 3.6859133333333334e-05, + "loss": 1.9721127319335938, + "step": 197200 + }, + { + "epoch": 26.306666666666665, + "grad_norm": 0.5521603226661682, + "learning_rate": 3.6852466666666667e-05, + "loss": 1.9772552490234374, + "step": 197300 + }, + { + "epoch": 26.32, + "grad_norm": 0.5767320394515991, + "learning_rate": 3.6845800000000006e-05, + "loss": 1.975111846923828, + "step": 197400 + }, + { + "epoch": 26.333333333333332, + "grad_norm": 0.568122148513794, + "learning_rate": 3.6839200000000005e-05, + "loss": 1.9748057556152343, + "step": 197500 + }, + { + "epoch": 26.346666666666668, + "grad_norm": 0.54569411277771, + "learning_rate": 3.683253333333334e-05, + "loss": 1.975630340576172, + "step": 197600 + }, + { + "epoch": 26.36, + "grad_norm": 0.5550498962402344, + "learning_rate": 3.682586666666667e-05, + "loss": 1.976104736328125, + "step": 197700 + }, + { + "epoch": 26.373333333333335, + "grad_norm": 0.5575002431869507, + "learning_rate": 3.68192e-05, + "loss": 1.979742431640625, + "step": 197800 + }, + { + "epoch": 26.386666666666667, + "grad_norm": 0.5659462809562683, + "learning_rate": 3.681253333333334e-05, + "loss": 1.982191925048828, + "step": 197900 + }, + { + "epoch": 26.4, + "grad_norm": 0.5659615397453308, + "learning_rate": 3.6805866666666666e-05, + "loss": 1.979058837890625, + "step": 198000 + }, + { + "epoch": 26.413333333333334, + "grad_norm": 0.5449748039245605, + "learning_rate": 3.67992e-05, + "loss": 1.9774148559570313, + "step": 198100 + }, + { + "epoch": 26.426666666666666, + "grad_norm": 0.578723669052124, + "learning_rate": 3.679253333333334e-05, + "loss": 1.9768846130371094, + "step": 198200 + }, + { + "epoch": 26.44, + "grad_norm": 0.5675528645515442, + "learning_rate": 3.678586666666667e-05, + "loss": 1.979735107421875, + "step": 198300 + }, + { + "epoch": 26.453333333333333, + "grad_norm": 0.5619545578956604, + "learning_rate": 3.67792e-05, + "loss": 1.9831944274902344, + "step": 198400 + }, + { + "epoch": 26.466666666666665, + "grad_norm": 0.5641692876815796, + "learning_rate": 3.6772533333333334e-05, + "loss": 1.9841481018066407, + "step": 198500 + }, + { + "epoch": 26.48, + "grad_norm": 0.569416344165802, + "learning_rate": 3.676586666666667e-05, + "loss": 1.981822509765625, + "step": 198600 + }, + { + "epoch": 26.493333333333332, + "grad_norm": 0.583523690700531, + "learning_rate": 3.67592e-05, + "loss": 1.982010955810547, + "step": 198700 + }, + { + "epoch": 26.506666666666668, + "grad_norm": 0.5771437883377075, + "learning_rate": 3.675253333333333e-05, + "loss": 1.9882267761230468, + "step": 198800 + }, + { + "epoch": 26.52, + "grad_norm": 0.6403129696846008, + "learning_rate": 3.674586666666667e-05, + "loss": 1.985286102294922, + "step": 198900 + }, + { + "epoch": 26.533333333333335, + "grad_norm": 0.5762969851493835, + "learning_rate": 3.67392e-05, + "loss": 1.9854814147949218, + "step": 199000 + }, + { + "epoch": 26.546666666666667, + "grad_norm": 0.5455479025840759, + "learning_rate": 3.6732533333333335e-05, + "loss": 1.9807121276855468, + "step": 199100 + }, + { + "epoch": 26.56, + "grad_norm": 0.5566051006317139, + "learning_rate": 3.672586666666667e-05, + "loss": 1.99121337890625, + "step": 199200 + }, + { + "epoch": 26.573333333333334, + "grad_norm": 0.5699354410171509, + "learning_rate": 3.6719200000000006e-05, + "loss": 1.9884609985351562, + "step": 199300 + }, + { + "epoch": 26.586666666666666, + "grad_norm": 0.5869739651679993, + "learning_rate": 3.671253333333334e-05, + "loss": 1.9882350158691406, + "step": 199400 + }, + { + "epoch": 26.6, + "grad_norm": 0.5663924813270569, + "learning_rate": 3.670593333333334e-05, + "loss": 1.9908465576171874, + "step": 199500 + }, + { + "epoch": 26.613333333333333, + "grad_norm": 0.5577260255813599, + "learning_rate": 3.669926666666667e-05, + "loss": 1.9867439270019531, + "step": 199600 + }, + { + "epoch": 26.626666666666665, + "grad_norm": 0.5420724153518677, + "learning_rate": 3.66926e-05, + "loss": 1.9890168762207032, + "step": 199700 + }, + { + "epoch": 26.64, + "grad_norm": 0.5668867230415344, + "learning_rate": 3.6685933333333334e-05, + "loss": 1.989038848876953, + "step": 199800 + }, + { + "epoch": 26.653333333333332, + "grad_norm": 0.536382257938385, + "learning_rate": 3.6679266666666666e-05, + "loss": 1.9933232116699218, + "step": 199900 + }, + { + "epoch": 26.666666666666668, + "grad_norm": 0.6233078837394714, + "learning_rate": 3.66726e-05, + "loss": 1.9922142028808594, + "step": 200000 + }, + { + "epoch": 26.68, + "grad_norm": 0.5758584141731262, + "learning_rate": 3.666593333333334e-05, + "loss": 1.9919984436035156, + "step": 200100 + }, + { + "epoch": 26.693333333333335, + "grad_norm": 0.5576504468917847, + "learning_rate": 3.665926666666667e-05, + "loss": 1.9917649841308593, + "step": 200200 + }, + { + "epoch": 26.706666666666667, + "grad_norm": 0.5854286551475525, + "learning_rate": 3.66526e-05, + "loss": 1.9912901306152344, + "step": 200300 + }, + { + "epoch": 26.72, + "grad_norm": 0.5664922595024109, + "learning_rate": 3.6645933333333334e-05, + "loss": 1.998155059814453, + "step": 200400 + }, + { + "epoch": 26.733333333333334, + "grad_norm": 0.5407897233963013, + "learning_rate": 3.663926666666667e-05, + "loss": 1.9952912902832032, + "step": 200500 + }, + { + "epoch": 26.746666666666666, + "grad_norm": 0.5883836150169373, + "learning_rate": 3.66326e-05, + "loss": 1.9951287841796874, + "step": 200600 + }, + { + "epoch": 26.76, + "grad_norm": 0.5882517099380493, + "learning_rate": 3.662593333333333e-05, + "loss": 1.9948817443847657, + "step": 200700 + }, + { + "epoch": 26.773333333333333, + "grad_norm": 0.572609543800354, + "learning_rate": 3.661926666666667e-05, + "loss": 1.9994200134277345, + "step": 200800 + }, + { + "epoch": 26.786666666666665, + "grad_norm": 0.5723763108253479, + "learning_rate": 3.66126e-05, + "loss": 1.9964186096191405, + "step": 200900 + }, + { + "epoch": 26.8, + "grad_norm": 0.571183979511261, + "learning_rate": 3.6605933333333335e-05, + "loss": 1.9989100646972657, + "step": 201000 + }, + { + "epoch": 26.813333333333333, + "grad_norm": 0.5754789113998413, + "learning_rate": 3.6599266666666674e-05, + "loss": 1.9968698120117188, + "step": 201100 + }, + { + "epoch": 26.826666666666668, + "grad_norm": 0.5623466372489929, + "learning_rate": 3.65926e-05, + "loss": 1.9973426818847657, + "step": 201200 + }, + { + "epoch": 26.84, + "grad_norm": 0.5691098570823669, + "learning_rate": 3.658593333333333e-05, + "loss": 1.995333709716797, + "step": 201300 + }, + { + "epoch": 26.85333333333333, + "grad_norm": 0.5785391926765442, + "learning_rate": 3.657926666666667e-05, + "loss": 2.0026919555664064, + "step": 201400 + }, + { + "epoch": 26.866666666666667, + "grad_norm": 0.5716009736061096, + "learning_rate": 3.657266666666666e-05, + "loss": 1.9967724609375, + "step": 201500 + }, + { + "epoch": 26.88, + "grad_norm": 0.5728231072425842, + "learning_rate": 3.6566e-05, + "loss": 2.003606719970703, + "step": 201600 + }, + { + "epoch": 26.893333333333334, + "grad_norm": 0.5723952054977417, + "learning_rate": 3.6559333333333334e-05, + "loss": 2.0006785583496094, + "step": 201700 + }, + { + "epoch": 26.906666666666666, + "grad_norm": 0.5781197547912598, + "learning_rate": 3.6552666666666666e-05, + "loss": 2.001742095947266, + "step": 201800 + }, + { + "epoch": 26.92, + "grad_norm": 0.5599796772003174, + "learning_rate": 3.6546000000000006e-05, + "loss": 2.0006167602539064, + "step": 201900 + }, + { + "epoch": 26.933333333333334, + "grad_norm": 0.6010822653770447, + "learning_rate": 3.653933333333334e-05, + "loss": 2.0031967163085938, + "step": 202000 + }, + { + "epoch": 26.946666666666665, + "grad_norm": 0.563437819480896, + "learning_rate": 3.653266666666667e-05, + "loss": 2.004565887451172, + "step": 202100 + }, + { + "epoch": 26.96, + "grad_norm": 0.5698239803314209, + "learning_rate": 3.6526e-05, + "loss": 2.004854431152344, + "step": 202200 + }, + { + "epoch": 26.973333333333333, + "grad_norm": 0.5538843274116516, + "learning_rate": 3.6519333333333335e-05, + "loss": 2.006410827636719, + "step": 202300 + }, + { + "epoch": 26.986666666666668, + "grad_norm": 0.590229332447052, + "learning_rate": 3.651266666666667e-05, + "loss": 2.004330596923828, + "step": 202400 + }, + { + "epoch": 27.0, + "grad_norm": 0.5651915073394775, + "learning_rate": 3.6506e-05, + "loss": 2.004520263671875, + "step": 202500 + }, + { + "epoch": 27.013333333333332, + "grad_norm": 0.581447184085846, + "learning_rate": 3.649933333333334e-05, + "loss": 1.927707977294922, + "step": 202600 + }, + { + "epoch": 27.026666666666667, + "grad_norm": 0.5724103450775146, + "learning_rate": 3.649266666666667e-05, + "loss": 1.9301573181152343, + "step": 202700 + }, + { + "epoch": 27.04, + "grad_norm": 0.5678054690361023, + "learning_rate": 3.6486e-05, + "loss": 1.9268736267089843, + "step": 202800 + }, + { + "epoch": 27.053333333333335, + "grad_norm": 0.5841068625450134, + "learning_rate": 3.6479333333333335e-05, + "loss": 1.9276795959472657, + "step": 202900 + }, + { + "epoch": 27.066666666666666, + "grad_norm": 0.5919205546379089, + "learning_rate": 3.647266666666667e-05, + "loss": 1.9338473510742187, + "step": 203000 + }, + { + "epoch": 27.08, + "grad_norm": 0.593210756778717, + "learning_rate": 3.6466e-05, + "loss": 1.9268548583984375, + "step": 203100 + }, + { + "epoch": 27.093333333333334, + "grad_norm": 0.5299606919288635, + "learning_rate": 3.645933333333333e-05, + "loss": 1.9322509765625, + "step": 203200 + }, + { + "epoch": 27.106666666666666, + "grad_norm": 0.5877776741981506, + "learning_rate": 3.645266666666667e-05, + "loss": 1.9314346313476562, + "step": 203300 + }, + { + "epoch": 27.12, + "grad_norm": 0.5868698954582214, + "learning_rate": 3.6446e-05, + "loss": 1.9356802368164063, + "step": 203400 + }, + { + "epoch": 27.133333333333333, + "grad_norm": 0.5853486061096191, + "learning_rate": 3.64394e-05, + "loss": 1.9343838500976562, + "step": 203500 + }, + { + "epoch": 27.14666666666667, + "grad_norm": 0.5599203705787659, + "learning_rate": 3.6432733333333334e-05, + "loss": 1.9365560913085937, + "step": 203600 + }, + { + "epoch": 27.16, + "grad_norm": 0.5584514737129211, + "learning_rate": 3.642606666666667e-05, + "loss": 1.9372349548339844, + "step": 203700 + }, + { + "epoch": 27.173333333333332, + "grad_norm": 0.5899976491928101, + "learning_rate": 3.6419400000000006e-05, + "loss": 1.94076416015625, + "step": 203800 + }, + { + "epoch": 27.186666666666667, + "grad_norm": 0.5896082520484924, + "learning_rate": 3.641273333333334e-05, + "loss": 1.9411949157714843, + "step": 203900 + }, + { + "epoch": 27.2, + "grad_norm": 0.6029268503189087, + "learning_rate": 3.6406066666666663e-05, + "loss": 1.9456289672851563, + "step": 204000 + }, + { + "epoch": 27.213333333333335, + "grad_norm": 0.5602301955223083, + "learning_rate": 3.63994e-05, + "loss": 1.9383029174804687, + "step": 204100 + }, + { + "epoch": 27.226666666666667, + "grad_norm": 0.5736998319625854, + "learning_rate": 3.6392733333333335e-05, + "loss": 1.945543975830078, + "step": 204200 + }, + { + "epoch": 27.24, + "grad_norm": 0.5835820436477661, + "learning_rate": 3.638606666666667e-05, + "loss": 1.9456192016601563, + "step": 204300 + }, + { + "epoch": 27.253333333333334, + "grad_norm": 0.5935140252113342, + "learning_rate": 3.63794e-05, + "loss": 1.9459524536132813, + "step": 204400 + }, + { + "epoch": 27.266666666666666, + "grad_norm": 0.5856873393058777, + "learning_rate": 3.637273333333334e-05, + "loss": 1.9468795776367187, + "step": 204500 + }, + { + "epoch": 27.28, + "grad_norm": 0.5846020579338074, + "learning_rate": 3.636606666666667e-05, + "loss": 1.947487335205078, + "step": 204600 + }, + { + "epoch": 27.293333333333333, + "grad_norm": 0.6289901733398438, + "learning_rate": 3.6359399999999996e-05, + "loss": 1.9467887878417969, + "step": 204700 + }, + { + "epoch": 27.306666666666665, + "grad_norm": 0.5840248465538025, + "learning_rate": 3.6352733333333335e-05, + "loss": 1.9474456787109375, + "step": 204800 + }, + { + "epoch": 27.32, + "grad_norm": 0.5707332491874695, + "learning_rate": 3.634606666666667e-05, + "loss": 1.9438954162597657, + "step": 204900 + }, + { + "epoch": 27.333333333333332, + "grad_norm": 0.5975301861763, + "learning_rate": 3.63394e-05, + "loss": 1.951266326904297, + "step": 205000 + }, + { + "epoch": 27.346666666666668, + "grad_norm": 0.5705687999725342, + "learning_rate": 3.633273333333333e-05, + "loss": 1.9507940673828126, + "step": 205100 + }, + { + "epoch": 27.36, + "grad_norm": 0.5590121150016785, + "learning_rate": 3.632606666666667e-05, + "loss": 1.9493692016601563, + "step": 205200 + }, + { + "epoch": 27.373333333333335, + "grad_norm": 0.5685244798660278, + "learning_rate": 3.63194e-05, + "loss": 1.950657196044922, + "step": 205300 + }, + { + "epoch": 27.386666666666667, + "grad_norm": 0.5888789892196655, + "learning_rate": 3.6312733333333336e-05, + "loss": 1.9549993896484374, + "step": 205400 + }, + { + "epoch": 27.4, + "grad_norm": 0.5904676914215088, + "learning_rate": 3.6306133333333335e-05, + "loss": 1.955000762939453, + "step": 205500 + }, + { + "epoch": 27.413333333333334, + "grad_norm": 0.5819377303123474, + "learning_rate": 3.6299466666666674e-05, + "loss": 1.9578860473632813, + "step": 205600 + }, + { + "epoch": 27.426666666666666, + "grad_norm": 0.5758692026138306, + "learning_rate": 3.62928e-05, + "loss": 1.9549250793457031, + "step": 205700 + }, + { + "epoch": 27.44, + "grad_norm": 0.6009901165962219, + "learning_rate": 3.628613333333333e-05, + "loss": 1.952675323486328, + "step": 205800 + }, + { + "epoch": 27.453333333333333, + "grad_norm": 0.5837755799293518, + "learning_rate": 3.627946666666667e-05, + "loss": 1.9591851806640626, + "step": 205900 + }, + { + "epoch": 27.466666666666665, + "grad_norm": 0.5634909272193909, + "learning_rate": 3.62728e-05, + "loss": 1.9552839660644532, + "step": 206000 + }, + { + "epoch": 27.48, + "grad_norm": 0.5781852602958679, + "learning_rate": 3.6266133333333335e-05, + "loss": 1.9604965209960938, + "step": 206100 + }, + { + "epoch": 27.493333333333332, + "grad_norm": 0.58583664894104, + "learning_rate": 3.625946666666667e-05, + "loss": 1.9583544921875, + "step": 206200 + }, + { + "epoch": 27.506666666666668, + "grad_norm": 0.5962403416633606, + "learning_rate": 3.6252800000000006e-05, + "loss": 1.9607644653320313, + "step": 206300 + }, + { + "epoch": 27.52, + "grad_norm": 0.5640053749084473, + "learning_rate": 3.624613333333334e-05, + "loss": 1.9606808471679686, + "step": 206400 + }, + { + "epoch": 27.533333333333335, + "grad_norm": 0.5817745327949524, + "learning_rate": 3.6239466666666664e-05, + "loss": 1.9592042541503907, + "step": 206500 + }, + { + "epoch": 27.546666666666667, + "grad_norm": 0.6114230751991272, + "learning_rate": 3.62328e-05, + "loss": 1.9615921020507812, + "step": 206600 + }, + { + "epoch": 27.56, + "grad_norm": 0.5722009539604187, + "learning_rate": 3.6226133333333335e-05, + "loss": 1.9608853149414063, + "step": 206700 + }, + { + "epoch": 27.573333333333334, + "grad_norm": 0.5720607042312622, + "learning_rate": 3.621946666666667e-05, + "loss": 1.962681884765625, + "step": 206800 + }, + { + "epoch": 27.586666666666666, + "grad_norm": 0.596661388874054, + "learning_rate": 3.62128e-05, + "loss": 1.9644792175292969, + "step": 206900 + }, + { + "epoch": 27.6, + "grad_norm": 0.5807399749755859, + "learning_rate": 3.620613333333334e-05, + "loss": 1.9695454406738282, + "step": 207000 + }, + { + "epoch": 27.613333333333333, + "grad_norm": 0.5708223581314087, + "learning_rate": 3.619946666666667e-05, + "loss": 1.963555145263672, + "step": 207100 + }, + { + "epoch": 27.626666666666665, + "grad_norm": 0.5941387414932251, + "learning_rate": 3.6192800000000004e-05, + "loss": 1.9702226257324218, + "step": 207200 + }, + { + "epoch": 27.64, + "grad_norm": 0.568341851234436, + "learning_rate": 3.6186133333333336e-05, + "loss": 1.9717837524414064, + "step": 207300 + }, + { + "epoch": 27.653333333333332, + "grad_norm": 0.5917574167251587, + "learning_rate": 3.617946666666667e-05, + "loss": 1.9671156311035156, + "step": 207400 + }, + { + "epoch": 27.666666666666668, + "grad_norm": 0.5893895030021667, + "learning_rate": 3.61728e-05, + "loss": 1.9676268005371094, + "step": 207500 + }, + { + "epoch": 27.68, + "grad_norm": 0.5909178256988525, + "learning_rate": 3.61662e-05, + "loss": 1.9683328247070313, + "step": 207600 + }, + { + "epoch": 27.693333333333335, + "grad_norm": 0.601280689239502, + "learning_rate": 3.615953333333333e-05, + "loss": 1.9703788757324219, + "step": 207700 + }, + { + "epoch": 27.706666666666667, + "grad_norm": 0.5855022072792053, + "learning_rate": 3.615286666666667e-05, + "loss": 1.9706231689453124, + "step": 207800 + }, + { + "epoch": 27.72, + "grad_norm": 0.5767050385475159, + "learning_rate": 3.61462e-05, + "loss": 1.9699440002441406, + "step": 207900 + }, + { + "epoch": 27.733333333333334, + "grad_norm": 0.5902249813079834, + "learning_rate": 3.6139533333333335e-05, + "loss": 1.964881134033203, + "step": 208000 + }, + { + "epoch": 27.746666666666666, + "grad_norm": 0.5634693503379822, + "learning_rate": 3.613286666666667e-05, + "loss": 1.9723870849609375, + "step": 208100 + }, + { + "epoch": 27.76, + "grad_norm": 0.6080737113952637, + "learning_rate": 3.6126200000000007e-05, + "loss": 1.968502197265625, + "step": 208200 + }, + { + "epoch": 27.773333333333333, + "grad_norm": 0.5652815103530884, + "learning_rate": 3.611953333333333e-05, + "loss": 1.9760067749023438, + "step": 208300 + }, + { + "epoch": 27.786666666666665, + "grad_norm": 0.5851750373840332, + "learning_rate": 3.6112866666666664e-05, + "loss": 1.9739956665039062, + "step": 208400 + }, + { + "epoch": 27.8, + "grad_norm": 0.5799194574356079, + "learning_rate": 3.61062e-05, + "loss": 1.9709002685546875, + "step": 208500 + }, + { + "epoch": 27.813333333333333, + "grad_norm": 0.607318103313446, + "learning_rate": 3.6099533333333336e-05, + "loss": 1.9714559936523437, + "step": 208600 + }, + { + "epoch": 27.826666666666668, + "grad_norm": 0.570615828037262, + "learning_rate": 3.609286666666667e-05, + "loss": 1.9726187133789062, + "step": 208700 + }, + { + "epoch": 27.84, + "grad_norm": 0.5773420929908752, + "learning_rate": 3.60862e-05, + "loss": 1.9740589904785155, + "step": 208800 + }, + { + "epoch": 27.85333333333333, + "grad_norm": 0.5621991753578186, + "learning_rate": 3.607953333333334e-05, + "loss": 1.9761262512207032, + "step": 208900 + }, + { + "epoch": 27.866666666666667, + "grad_norm": 0.5754197835922241, + "learning_rate": 3.6072866666666665e-05, + "loss": 1.9745481872558595, + "step": 209000 + }, + { + "epoch": 27.88, + "grad_norm": 0.5961983799934387, + "learning_rate": 3.60662e-05, + "loss": 1.9757182312011718, + "step": 209100 + }, + { + "epoch": 27.893333333333334, + "grad_norm": 0.5758571028709412, + "learning_rate": 3.6059533333333336e-05, + "loss": 1.974927978515625, + "step": 209200 + }, + { + "epoch": 27.906666666666666, + "grad_norm": 0.5897004008293152, + "learning_rate": 3.605286666666667e-05, + "loss": 1.97732177734375, + "step": 209300 + }, + { + "epoch": 27.92, + "grad_norm": 0.5555986762046814, + "learning_rate": 3.60462e-05, + "loss": 1.97912841796875, + "step": 209400 + }, + { + "epoch": 27.933333333333334, + "grad_norm": 0.5782080888748169, + "learning_rate": 3.603953333333334e-05, + "loss": 1.9758847045898438, + "step": 209500 + }, + { + "epoch": 27.946666666666665, + "grad_norm": 0.5872431397438049, + "learning_rate": 3.603293333333333e-05, + "loss": 1.9807801818847657, + "step": 209600 + }, + { + "epoch": 27.96, + "grad_norm": 0.6015269756317139, + "learning_rate": 3.602626666666667e-05, + "loss": 1.9804434204101562, + "step": 209700 + }, + { + "epoch": 27.973333333333333, + "grad_norm": 0.6062453985214233, + "learning_rate": 3.60196e-05, + "loss": 1.9817405700683595, + "step": 209800 + }, + { + "epoch": 27.986666666666668, + "grad_norm": 0.5964453220367432, + "learning_rate": 3.6012933333333335e-05, + "loss": 1.9792985534667968, + "step": 209900 + }, + { + "epoch": 28.0, + "grad_norm": 0.5917948484420776, + "learning_rate": 3.600626666666667e-05, + "loss": 1.9797233581542968, + "step": 210000 + }, + { + "epoch": 28.013333333333332, + "grad_norm": 0.5753324031829834, + "learning_rate": 3.59996e-05, + "loss": 1.8963658142089843, + "step": 210100 + }, + { + "epoch": 28.026666666666667, + "grad_norm": 0.5823311805725098, + "learning_rate": 3.599293333333333e-05, + "loss": 1.90039794921875, + "step": 210200 + }, + { + "epoch": 28.04, + "grad_norm": 0.6098815202713013, + "learning_rate": 3.598626666666667e-05, + "loss": 1.9037353515625, + "step": 210300 + }, + { + "epoch": 28.053333333333335, + "grad_norm": 0.591463565826416, + "learning_rate": 3.5979600000000004e-05, + "loss": 1.9031809997558593, + "step": 210400 + }, + { + "epoch": 28.066666666666666, + "grad_norm": 0.6484287977218628, + "learning_rate": 3.5972933333333336e-05, + "loss": 1.90722900390625, + "step": 210500 + }, + { + "epoch": 28.08, + "grad_norm": 0.5851206183433533, + "learning_rate": 3.596626666666667e-05, + "loss": 1.907454376220703, + "step": 210600 + }, + { + "epoch": 28.093333333333334, + "grad_norm": 0.5893003940582275, + "learning_rate": 3.595960000000001e-05, + "loss": 1.9102708435058593, + "step": 210700 + }, + { + "epoch": 28.106666666666666, + "grad_norm": 0.5920806527137756, + "learning_rate": 3.595293333333333e-05, + "loss": 1.906302490234375, + "step": 210800 + }, + { + "epoch": 28.12, + "grad_norm": 0.5820571780204773, + "learning_rate": 3.5946266666666665e-05, + "loss": 1.9106333923339844, + "step": 210900 + }, + { + "epoch": 28.133333333333333, + "grad_norm": 0.6000703573226929, + "learning_rate": 3.5939600000000004e-05, + "loss": 1.9108970642089844, + "step": 211000 + }, + { + "epoch": 28.14666666666667, + "grad_norm": 0.6043274402618408, + "learning_rate": 3.5932933333333336e-05, + "loss": 1.9127066040039062, + "step": 211100 + }, + { + "epoch": 28.16, + "grad_norm": 0.589103639125824, + "learning_rate": 3.592626666666667e-05, + "loss": 1.9146939086914063, + "step": 211200 + }, + { + "epoch": 28.173333333333332, + "grad_norm": 0.5709384679794312, + "learning_rate": 3.59196e-05, + "loss": 1.9095561218261718, + "step": 211300 + }, + { + "epoch": 28.186666666666667, + "grad_norm": 0.6060921549797058, + "learning_rate": 3.591293333333334e-05, + "loss": 1.912783203125, + "step": 211400 + }, + { + "epoch": 28.2, + "grad_norm": 0.6131394505500793, + "learning_rate": 3.5906266666666665e-05, + "loss": 1.9097198486328124, + "step": 211500 + }, + { + "epoch": 28.213333333333335, + "grad_norm": 0.5825812220573425, + "learning_rate": 3.589966666666667e-05, + "loss": 1.9186415100097656, + "step": 211600 + }, + { + "epoch": 28.226666666666667, + "grad_norm": 0.5944445729255676, + "learning_rate": 3.5893000000000003e-05, + "loss": 1.9187173461914062, + "step": 211700 + }, + { + "epoch": 28.24, + "grad_norm": 0.5729975700378418, + "learning_rate": 3.5886333333333336e-05, + "loss": 1.9198851013183593, + "step": 211800 + }, + { + "epoch": 28.253333333333334, + "grad_norm": 0.6041490435600281, + "learning_rate": 3.587966666666667e-05, + "loss": 1.9200152587890624, + "step": 211900 + }, + { + "epoch": 28.266666666666666, + "grad_norm": 0.6032606363296509, + "learning_rate": 3.5873e-05, + "loss": 1.9239161682128907, + "step": 212000 + }, + { + "epoch": 28.28, + "grad_norm": 0.6063857078552246, + "learning_rate": 3.586633333333333e-05, + "loss": 1.921931915283203, + "step": 212100 + }, + { + "epoch": 28.293333333333333, + "grad_norm": 0.6095187664031982, + "learning_rate": 3.585966666666667e-05, + "loss": 1.9245355224609375, + "step": 212200 + }, + { + "epoch": 28.306666666666665, + "grad_norm": 0.6013233065605164, + "learning_rate": 3.5853000000000004e-05, + "loss": 1.920060577392578, + "step": 212300 + }, + { + "epoch": 28.32, + "grad_norm": 0.5829028487205505, + "learning_rate": 3.5846333333333336e-05, + "loss": 1.923076171875, + "step": 212400 + }, + { + "epoch": 28.333333333333332, + "grad_norm": 0.6095953583717346, + "learning_rate": 3.583966666666667e-05, + "loss": 1.9266374206542969, + "step": 212500 + }, + { + "epoch": 28.346666666666668, + "grad_norm": 0.6123775243759155, + "learning_rate": 3.5833e-05, + "loss": 1.923944091796875, + "step": 212600 + }, + { + "epoch": 28.36, + "grad_norm": 0.6038895845413208, + "learning_rate": 3.582633333333333e-05, + "loss": 1.9256845092773438, + "step": 212700 + }, + { + "epoch": 28.373333333333335, + "grad_norm": 0.5949887037277222, + "learning_rate": 3.5819666666666665e-05, + "loss": 1.925125732421875, + "step": 212800 + }, + { + "epoch": 28.386666666666667, + "grad_norm": 0.5919845104217529, + "learning_rate": 3.5813000000000004e-05, + "loss": 1.92591796875, + "step": 212900 + }, + { + "epoch": 28.4, + "grad_norm": 0.5925742387771606, + "learning_rate": 3.5806333333333336e-05, + "loss": 1.9260887145996093, + "step": 213000 + }, + { + "epoch": 28.413333333333334, + "grad_norm": 0.5978710055351257, + "learning_rate": 3.579966666666667e-05, + "loss": 1.9299237060546874, + "step": 213100 + }, + { + "epoch": 28.426666666666666, + "grad_norm": 0.6156143546104431, + "learning_rate": 3.5793e-05, + "loss": 1.9283975219726563, + "step": 213200 + }, + { + "epoch": 28.44, + "grad_norm": 0.6074989438056946, + "learning_rate": 3.578633333333333e-05, + "loss": 1.9329901123046875, + "step": 213300 + }, + { + "epoch": 28.453333333333333, + "grad_norm": 0.6070049405097961, + "learning_rate": 3.5779666666666666e-05, + "loss": 1.9311386108398438, + "step": 213400 + }, + { + "epoch": 28.466666666666665, + "grad_norm": 0.627319872379303, + "learning_rate": 3.5773e-05, + "loss": 1.93387451171875, + "step": 213500 + }, + { + "epoch": 28.48, + "grad_norm": 0.6070690155029297, + "learning_rate": 3.57664e-05, + "loss": 1.933914337158203, + "step": 213600 + }, + { + "epoch": 28.493333333333332, + "grad_norm": 0.6085487008094788, + "learning_rate": 3.5759733333333336e-05, + "loss": 1.9377674865722656, + "step": 213700 + }, + { + "epoch": 28.506666666666668, + "grad_norm": 0.6239941120147705, + "learning_rate": 3.575306666666667e-05, + "loss": 1.9339775085449218, + "step": 213800 + }, + { + "epoch": 28.52, + "grad_norm": 0.6024758219718933, + "learning_rate": 3.57464e-05, + "loss": 1.9365673828125, + "step": 213900 + }, + { + "epoch": 28.533333333333335, + "grad_norm": 0.6340709924697876, + "learning_rate": 3.573973333333334e-05, + "loss": 1.9337480163574219, + "step": 214000 + }, + { + "epoch": 28.546666666666667, + "grad_norm": 0.5885015726089478, + "learning_rate": 3.573306666666667e-05, + "loss": 1.935907745361328, + "step": 214100 + }, + { + "epoch": 28.56, + "grad_norm": 0.6116124391555786, + "learning_rate": 3.5726400000000004e-05, + "loss": 1.9376171875, + "step": 214200 + }, + { + "epoch": 28.573333333333334, + "grad_norm": 0.5820707082748413, + "learning_rate": 3.571973333333333e-05, + "loss": 1.9389529418945313, + "step": 214300 + }, + { + "epoch": 28.586666666666666, + "grad_norm": 0.5670823454856873, + "learning_rate": 3.571306666666667e-05, + "loss": 1.938601531982422, + "step": 214400 + }, + { + "epoch": 28.6, + "grad_norm": 0.6194178462028503, + "learning_rate": 3.57064e-05, + "loss": 1.9407998657226562, + "step": 214500 + }, + { + "epoch": 28.613333333333333, + "grad_norm": 0.6202486753463745, + "learning_rate": 3.569973333333333e-05, + "loss": 1.9379768371582031, + "step": 214600 + }, + { + "epoch": 28.626666666666665, + "grad_norm": 0.6014044880867004, + "learning_rate": 3.569306666666667e-05, + "loss": 1.9406600952148438, + "step": 214700 + }, + { + "epoch": 28.64, + "grad_norm": 0.6088877320289612, + "learning_rate": 3.5686400000000004e-05, + "loss": 1.9415878295898437, + "step": 214800 + }, + { + "epoch": 28.653333333333332, + "grad_norm": 0.6067546010017395, + "learning_rate": 3.567973333333334e-05, + "loss": 1.9418251037597656, + "step": 214900 + }, + { + "epoch": 28.666666666666668, + "grad_norm": 0.5925686955451965, + "learning_rate": 3.567306666666667e-05, + "loss": 1.9406690979003907, + "step": 215000 + }, + { + "epoch": 28.68, + "grad_norm": 0.6045867800712585, + "learning_rate": 3.56664e-05, + "loss": 1.9402273559570313, + "step": 215100 + }, + { + "epoch": 28.693333333333335, + "grad_norm": 0.6042197942733765, + "learning_rate": 3.5659733333333334e-05, + "loss": 1.9467068481445313, + "step": 215200 + }, + { + "epoch": 28.706666666666667, + "grad_norm": 0.6190263628959656, + "learning_rate": 3.5653066666666666e-05, + "loss": 1.9422659301757812, + "step": 215300 + }, + { + "epoch": 28.72, + "grad_norm": 0.6239484548568726, + "learning_rate": 3.5646400000000005e-05, + "loss": 1.9453689575195312, + "step": 215400 + }, + { + "epoch": 28.733333333333334, + "grad_norm": 0.5972684621810913, + "learning_rate": 3.563973333333334e-05, + "loss": 1.945398406982422, + "step": 215500 + }, + { + "epoch": 28.746666666666666, + "grad_norm": 0.6258236169815063, + "learning_rate": 3.5633133333333336e-05, + "loss": 1.947290802001953, + "step": 215600 + }, + { + "epoch": 28.76, + "grad_norm": 0.6004676818847656, + "learning_rate": 3.562646666666667e-05, + "loss": 1.9425833129882812, + "step": 215700 + }, + { + "epoch": 28.773333333333333, + "grad_norm": 0.6066743731498718, + "learning_rate": 3.56198e-05, + "loss": 1.9450428771972657, + "step": 215800 + }, + { + "epoch": 28.786666666666665, + "grad_norm": 0.6220128536224365, + "learning_rate": 3.561313333333334e-05, + "loss": 1.9462014770507812, + "step": 215900 + }, + { + "epoch": 28.8, + "grad_norm": 0.6090360283851624, + "learning_rate": 3.5606466666666665e-05, + "loss": 1.9469538879394532, + "step": 216000 + }, + { + "epoch": 28.813333333333333, + "grad_norm": 0.5942463278770447, + "learning_rate": 3.55998e-05, + "loss": 1.9527642822265625, + "step": 216100 + }, + { + "epoch": 28.826666666666668, + "grad_norm": 0.6522825360298157, + "learning_rate": 3.5593133333333337e-05, + "loss": 1.947396240234375, + "step": 216200 + }, + { + "epoch": 28.84, + "grad_norm": 0.6047014594078064, + "learning_rate": 3.558646666666667e-05, + "loss": 1.953114013671875, + "step": 216300 + }, + { + "epoch": 28.85333333333333, + "grad_norm": 0.6015614867210388, + "learning_rate": 3.55798e-05, + "loss": 1.9483316040039063, + "step": 216400 + }, + { + "epoch": 28.866666666666667, + "grad_norm": 0.588139533996582, + "learning_rate": 3.557313333333333e-05, + "loss": 1.95369384765625, + "step": 216500 + }, + { + "epoch": 28.88, + "grad_norm": 0.6121417880058289, + "learning_rate": 3.556646666666667e-05, + "loss": 1.9504942321777343, + "step": 216600 + }, + { + "epoch": 28.893333333333334, + "grad_norm": 0.6152277588844299, + "learning_rate": 3.5559800000000005e-05, + "loss": 1.9528102111816406, + "step": 216700 + }, + { + "epoch": 28.906666666666666, + "grad_norm": 0.5864558815956116, + "learning_rate": 3.555313333333333e-05, + "loss": 1.9556744384765625, + "step": 216800 + }, + { + "epoch": 28.92, + "grad_norm": 0.6150722503662109, + "learning_rate": 3.554646666666667e-05, + "loss": 1.9557850646972657, + "step": 216900 + }, + { + "epoch": 28.933333333333334, + "grad_norm": 0.6126604676246643, + "learning_rate": 3.55398e-05, + "loss": 1.957655487060547, + "step": 217000 + }, + { + "epoch": 28.946666666666665, + "grad_norm": 0.6212007403373718, + "learning_rate": 3.5533133333333334e-05, + "loss": 1.952845458984375, + "step": 217100 + }, + { + "epoch": 28.96, + "grad_norm": 0.6093801856040955, + "learning_rate": 3.5526466666666666e-05, + "loss": 1.9500978088378906, + "step": 217200 + }, + { + "epoch": 28.973333333333333, + "grad_norm": 0.6195286512374878, + "learning_rate": 3.5519800000000005e-05, + "loss": 1.9568482971191405, + "step": 217300 + }, + { + "epoch": 28.986666666666668, + "grad_norm": 0.6141052842140198, + "learning_rate": 3.551313333333334e-05, + "loss": 1.9551716613769532, + "step": 217400 + }, + { + "epoch": 29.0, + "grad_norm": 0.6240456700325012, + "learning_rate": 3.550646666666666e-05, + "loss": 1.9593727111816406, + "step": 217500 + }, + { + "epoch": 29.013333333333332, + "grad_norm": 0.6141709089279175, + "learning_rate": 3.549986666666667e-05, + "loss": 1.8731291198730469, + "step": 217600 + }, + { + "epoch": 29.026666666666667, + "grad_norm": 0.6149386763572693, + "learning_rate": 3.54932e-05, + "loss": 1.8731167602539063, + "step": 217700 + }, + { + "epoch": 29.04, + "grad_norm": 0.6323212385177612, + "learning_rate": 3.548653333333333e-05, + "loss": 1.871314697265625, + "step": 217800 + }, + { + "epoch": 29.053333333333335, + "grad_norm": 0.6484255790710449, + "learning_rate": 3.5479866666666665e-05, + "loss": 1.8755429077148438, + "step": 217900 + }, + { + "epoch": 29.066666666666666, + "grad_norm": 0.6272088289260864, + "learning_rate": 3.54732e-05, + "loss": 1.8729833984375, + "step": 218000 + }, + { + "epoch": 29.08, + "grad_norm": 0.6121836304664612, + "learning_rate": 3.546653333333334e-05, + "loss": 1.87686767578125, + "step": 218100 + }, + { + "epoch": 29.093333333333334, + "grad_norm": 0.6073644757270813, + "learning_rate": 3.545986666666667e-05, + "loss": 1.8814959716796875, + "step": 218200 + }, + { + "epoch": 29.106666666666666, + "grad_norm": 0.6518145799636841, + "learning_rate": 3.54532e-05, + "loss": 1.8825758361816407, + "step": 218300 + }, + { + "epoch": 29.12, + "grad_norm": 0.6225592494010925, + "learning_rate": 3.544653333333334e-05, + "loss": 1.8884323120117188, + "step": 218400 + }, + { + "epoch": 29.133333333333333, + "grad_norm": 0.6254275441169739, + "learning_rate": 3.5439866666666666e-05, + "loss": 1.8810324096679687, + "step": 218500 + }, + { + "epoch": 29.14666666666667, + "grad_norm": 0.6428091526031494, + "learning_rate": 3.54332e-05, + "loss": 1.8841964721679687, + "step": 218600 + }, + { + "epoch": 29.16, + "grad_norm": 0.6066590547561646, + "learning_rate": 3.542653333333334e-05, + "loss": 1.8872183227539063, + "step": 218700 + }, + { + "epoch": 29.173333333333332, + "grad_norm": 0.6072599291801453, + "learning_rate": 3.541986666666667e-05, + "loss": 1.888301544189453, + "step": 218800 + }, + { + "epoch": 29.186666666666667, + "grad_norm": 0.6293680667877197, + "learning_rate": 3.54132e-05, + "loss": 1.891027374267578, + "step": 218900 + }, + { + "epoch": 29.2, + "grad_norm": 0.6067629456520081, + "learning_rate": 3.5406533333333334e-05, + "loss": 1.8863351440429688, + "step": 219000 + }, + { + "epoch": 29.213333333333335, + "grad_norm": 0.5995946526527405, + "learning_rate": 3.539986666666667e-05, + "loss": 1.8922694396972657, + "step": 219100 + }, + { + "epoch": 29.226666666666667, + "grad_norm": 0.6211652159690857, + "learning_rate": 3.5393200000000005e-05, + "loss": 1.8898019409179687, + "step": 219200 + }, + { + "epoch": 29.24, + "grad_norm": 0.6280918717384338, + "learning_rate": 3.538653333333333e-05, + "loss": 1.892053680419922, + "step": 219300 + }, + { + "epoch": 29.253333333333334, + "grad_norm": 0.6313039064407349, + "learning_rate": 3.537986666666667e-05, + "loss": 1.8970526123046876, + "step": 219400 + }, + { + "epoch": 29.266666666666666, + "grad_norm": 0.6204928159713745, + "learning_rate": 3.53732e-05, + "loss": 1.8941494750976562, + "step": 219500 + }, + { + "epoch": 29.28, + "grad_norm": 0.6099953055381775, + "learning_rate": 3.53666e-05, + "loss": 1.8936624145507812, + "step": 219600 + }, + { + "epoch": 29.293333333333333, + "grad_norm": 0.6010173559188843, + "learning_rate": 3.5359933333333333e-05, + "loss": 1.8962115478515624, + "step": 219700 + }, + { + "epoch": 29.306666666666665, + "grad_norm": 0.6187490820884705, + "learning_rate": 3.5353266666666666e-05, + "loss": 1.8990090942382813, + "step": 219800 + }, + { + "epoch": 29.32, + "grad_norm": 0.6025696396827698, + "learning_rate": 3.5346600000000005e-05, + "loss": 1.899090576171875, + "step": 219900 + }, + { + "epoch": 29.333333333333332, + "grad_norm": 0.6101509928703308, + "learning_rate": 3.533993333333334e-05, + "loss": 1.8987478637695312, + "step": 220000 + }, + { + "epoch": 29.346666666666668, + "grad_norm": 0.6143890619277954, + "learning_rate": 3.533326666666667e-05, + "loss": 1.8977235412597657, + "step": 220100 + }, + { + "epoch": 29.36, + "grad_norm": 0.628218412399292, + "learning_rate": 3.53266e-05, + "loss": 1.9033868408203125, + "step": 220200 + }, + { + "epoch": 29.373333333333335, + "grad_norm": 0.6350439786911011, + "learning_rate": 3.5319933333333334e-05, + "loss": 1.8994992065429688, + "step": 220300 + }, + { + "epoch": 29.386666666666667, + "grad_norm": 0.6280394792556763, + "learning_rate": 3.5313266666666666e-05, + "loss": 1.9002314758300782, + "step": 220400 + }, + { + "epoch": 29.4, + "grad_norm": 0.6128666996955872, + "learning_rate": 3.53066e-05, + "loss": 1.9010800170898436, + "step": 220500 + }, + { + "epoch": 29.413333333333334, + "grad_norm": 0.636648952960968, + "learning_rate": 3.529993333333334e-05, + "loss": 1.9034559631347656, + "step": 220600 + }, + { + "epoch": 29.426666666666666, + "grad_norm": 0.6053557395935059, + "learning_rate": 3.529326666666667e-05, + "loss": 1.9045362854003907, + "step": 220700 + }, + { + "epoch": 29.44, + "grad_norm": 0.6217942833900452, + "learning_rate": 3.52866e-05, + "loss": 1.9091796875, + "step": 220800 + }, + { + "epoch": 29.453333333333333, + "grad_norm": 0.6204298734664917, + "learning_rate": 3.5279933333333334e-05, + "loss": 1.9048878479003906, + "step": 220900 + }, + { + "epoch": 29.466666666666665, + "grad_norm": 0.618732750415802, + "learning_rate": 3.527326666666667e-05, + "loss": 1.906492919921875, + "step": 221000 + }, + { + "epoch": 29.48, + "grad_norm": 0.6301329135894775, + "learning_rate": 3.52666e-05, + "loss": 1.9087861633300782, + "step": 221100 + }, + { + "epoch": 29.493333333333332, + "grad_norm": 0.6499351859092712, + "learning_rate": 3.525993333333333e-05, + "loss": 1.9047959899902345, + "step": 221200 + }, + { + "epoch": 29.506666666666668, + "grad_norm": 0.6507390141487122, + "learning_rate": 3.525326666666667e-05, + "loss": 1.9099015808105468, + "step": 221300 + }, + { + "epoch": 29.52, + "grad_norm": 0.6272179484367371, + "learning_rate": 3.52466e-05, + "loss": 1.9120497131347656, + "step": 221400 + }, + { + "epoch": 29.533333333333335, + "grad_norm": 0.6267956495285034, + "learning_rate": 3.5239933333333335e-05, + "loss": 1.9138475036621094, + "step": 221500 + }, + { + "epoch": 29.546666666666667, + "grad_norm": 0.6450830101966858, + "learning_rate": 3.5233333333333334e-05, + "loss": 1.910146484375, + "step": 221600 + }, + { + "epoch": 29.56, + "grad_norm": 0.618111789226532, + "learning_rate": 3.5226666666666666e-05, + "loss": 1.912001495361328, + "step": 221700 + }, + { + "epoch": 29.573333333333334, + "grad_norm": 0.6099219918251038, + "learning_rate": 3.5220000000000005e-05, + "loss": 1.9133241271972656, + "step": 221800 + }, + { + "epoch": 29.586666666666666, + "grad_norm": 0.6343381404876709, + "learning_rate": 3.521333333333334e-05, + "loss": 1.9161970520019531, + "step": 221900 + }, + { + "epoch": 29.6, + "grad_norm": 0.6319106817245483, + "learning_rate": 3.520666666666667e-05, + "loss": 1.9144822692871093, + "step": 222000 + }, + { + "epoch": 29.613333333333333, + "grad_norm": 0.6410270929336548, + "learning_rate": 3.52e-05, + "loss": 1.9168218994140624, + "step": 222100 + }, + { + "epoch": 29.626666666666665, + "grad_norm": 0.6186690330505371, + "learning_rate": 3.5193333333333334e-05, + "loss": 1.9132901000976563, + "step": 222200 + }, + { + "epoch": 29.64, + "grad_norm": 0.6537576913833618, + "learning_rate": 3.5186666666666666e-05, + "loss": 1.913599853515625, + "step": 222300 + }, + { + "epoch": 29.653333333333332, + "grad_norm": 0.6208250522613525, + "learning_rate": 3.518e-05, + "loss": 1.9217842102050782, + "step": 222400 + }, + { + "epoch": 29.666666666666668, + "grad_norm": 0.613583505153656, + "learning_rate": 3.517333333333334e-05, + "loss": 1.9240948486328124, + "step": 222500 + }, + { + "epoch": 29.68, + "grad_norm": 0.6155552864074707, + "learning_rate": 3.516666666666667e-05, + "loss": 1.9173712158203124, + "step": 222600 + }, + { + "epoch": 29.693333333333335, + "grad_norm": 0.6076659560203552, + "learning_rate": 3.516e-05, + "loss": 1.9172421264648438, + "step": 222700 + }, + { + "epoch": 29.706666666666667, + "grad_norm": 0.6185587048530579, + "learning_rate": 3.5153333333333334e-05, + "loss": 1.9175602722167968, + "step": 222800 + }, + { + "epoch": 29.72, + "grad_norm": 0.7048514485359192, + "learning_rate": 3.514666666666667e-05, + "loss": 1.9214109802246093, + "step": 222900 + }, + { + "epoch": 29.733333333333334, + "grad_norm": 0.648773729801178, + "learning_rate": 3.514e-05, + "loss": 1.9188169860839843, + "step": 223000 + }, + { + "epoch": 29.746666666666666, + "grad_norm": 0.6280819177627563, + "learning_rate": 3.513333333333334e-05, + "loss": 1.920139923095703, + "step": 223100 + }, + { + "epoch": 29.76, + "grad_norm": 0.5966166257858276, + "learning_rate": 3.512666666666667e-05, + "loss": 1.9221627807617188, + "step": 223200 + }, + { + "epoch": 29.773333333333333, + "grad_norm": 0.6173168420791626, + "learning_rate": 3.512e-05, + "loss": 1.924539794921875, + "step": 223300 + }, + { + "epoch": 29.786666666666665, + "grad_norm": 0.6122573018074036, + "learning_rate": 3.5113333333333335e-05, + "loss": 1.9245417785644532, + "step": 223400 + }, + { + "epoch": 29.8, + "grad_norm": 0.6305630803108215, + "learning_rate": 3.5106666666666674e-05, + "loss": 1.9254067993164063, + "step": 223500 + }, + { + "epoch": 29.813333333333333, + "grad_norm": 0.6451953053474426, + "learning_rate": 3.510006666666667e-05, + "loss": 1.9255630493164062, + "step": 223600 + }, + { + "epoch": 29.826666666666668, + "grad_norm": 0.6407766342163086, + "learning_rate": 3.5093400000000005e-05, + "loss": 1.9248118591308594, + "step": 223700 + }, + { + "epoch": 29.84, + "grad_norm": 0.627864420413971, + "learning_rate": 3.508673333333333e-05, + "loss": 1.9239891052246094, + "step": 223800 + }, + { + "epoch": 29.85333333333333, + "grad_norm": 0.6414026618003845, + "learning_rate": 3.508006666666667e-05, + "loss": 1.9280026245117188, + "step": 223900 + }, + { + "epoch": 29.866666666666667, + "grad_norm": 0.628401517868042, + "learning_rate": 3.50734e-05, + "loss": 1.9231156921386718, + "step": 224000 + }, + { + "epoch": 29.88, + "grad_norm": 0.6258181929588318, + "learning_rate": 3.5066733333333334e-05, + "loss": 1.926804962158203, + "step": 224100 + }, + { + "epoch": 29.893333333333334, + "grad_norm": 0.6521549820899963, + "learning_rate": 3.5060066666666667e-05, + "loss": 1.928329620361328, + "step": 224200 + }, + { + "epoch": 29.906666666666666, + "grad_norm": 0.6125701069831848, + "learning_rate": 3.5053400000000006e-05, + "loss": 1.9327384948730468, + "step": 224300 + }, + { + "epoch": 29.92, + "grad_norm": 0.627855658531189, + "learning_rate": 3.504673333333334e-05, + "loss": 1.927176971435547, + "step": 224400 + }, + { + "epoch": 29.933333333333334, + "grad_norm": 0.6648500561714172, + "learning_rate": 3.504006666666667e-05, + "loss": 1.9303471374511718, + "step": 224500 + }, + { + "epoch": 29.946666666666665, + "grad_norm": 0.6420508027076721, + "learning_rate": 3.50334e-05, + "loss": 1.9273306274414062, + "step": 224600 + }, + { + "epoch": 29.96, + "grad_norm": 0.6278482675552368, + "learning_rate": 3.5026733333333335e-05, + "loss": 1.9288194274902344, + "step": 224700 + }, + { + "epoch": 29.973333333333333, + "grad_norm": 0.5989758372306824, + "learning_rate": 3.502006666666667e-05, + "loss": 1.930438232421875, + "step": 224800 + }, + { + "epoch": 29.986666666666668, + "grad_norm": 0.6249135136604309, + "learning_rate": 3.50134e-05, + "loss": 1.9307928466796875, + "step": 224900 + }, + { + "epoch": 30.0, + "grad_norm": 0.6104187965393066, + "learning_rate": 3.500673333333334e-05, + "loss": 1.9333016967773438, + "step": 225000 + }, + { + "epoch": 30.013333333333332, + "grad_norm": 0.6293696761131287, + "learning_rate": 3.500006666666667e-05, + "loss": 1.8476805114746093, + "step": 225100 + }, + { + "epoch": 30.026666666666667, + "grad_norm": 0.6297232508659363, + "learning_rate": 3.49934e-05, + "loss": 1.845593719482422, + "step": 225200 + }, + { + "epoch": 30.04, + "grad_norm": 0.6466991305351257, + "learning_rate": 3.4986733333333335e-05, + "loss": 1.8487274169921875, + "step": 225300 + }, + { + "epoch": 30.053333333333335, + "grad_norm": 0.6279363036155701, + "learning_rate": 3.498006666666667e-05, + "loss": 1.8542190551757813, + "step": 225400 + }, + { + "epoch": 30.066666666666666, + "grad_norm": 0.644621729850769, + "learning_rate": 3.49734e-05, + "loss": 1.8500912475585938, + "step": 225500 + }, + { + "epoch": 30.08, + "grad_norm": 0.6442613005638123, + "learning_rate": 3.49668e-05, + "loss": 1.8522134399414063, + "step": 225600 + }, + { + "epoch": 30.093333333333334, + "grad_norm": 0.619848370552063, + "learning_rate": 3.496013333333333e-05, + "loss": 1.8562557983398438, + "step": 225700 + }, + { + "epoch": 30.106666666666666, + "grad_norm": 0.6512423157691956, + "learning_rate": 3.495346666666667e-05, + "loss": 1.8515933227539063, + "step": 225800 + }, + { + "epoch": 30.12, + "grad_norm": 0.6524722576141357, + "learning_rate": 3.49468e-05, + "loss": 1.859434814453125, + "step": 225900 + }, + { + "epoch": 30.133333333333333, + "grad_norm": 0.6379408836364746, + "learning_rate": 3.4940133333333335e-05, + "loss": 1.8575267028808593, + "step": 226000 + }, + { + "epoch": 30.14666666666667, + "grad_norm": 0.6395164132118225, + "learning_rate": 3.493346666666667e-05, + "loss": 1.8595333862304688, + "step": 226100 + }, + { + "epoch": 30.16, + "grad_norm": 0.6441857814788818, + "learning_rate": 3.4926800000000006e-05, + "loss": 1.860304718017578, + "step": 226200 + }, + { + "epoch": 30.173333333333332, + "grad_norm": 0.6614034175872803, + "learning_rate": 3.492013333333333e-05, + "loss": 1.8629020690917968, + "step": 226300 + }, + { + "epoch": 30.186666666666667, + "grad_norm": 0.6289846897125244, + "learning_rate": 3.4913466666666664e-05, + "loss": 1.8599790954589843, + "step": 226400 + }, + { + "epoch": 30.2, + "grad_norm": 0.6655375957489014, + "learning_rate": 3.49068e-05, + "loss": 1.8705145263671874, + "step": 226500 + }, + { + "epoch": 30.213333333333335, + "grad_norm": 0.6143892407417297, + "learning_rate": 3.4900133333333335e-05, + "loss": 1.8633598327636718, + "step": 226600 + }, + { + "epoch": 30.226666666666667, + "grad_norm": 0.6168250441551208, + "learning_rate": 3.489346666666667e-05, + "loss": 1.866641845703125, + "step": 226700 + }, + { + "epoch": 30.24, + "grad_norm": 0.6689651012420654, + "learning_rate": 3.48868e-05, + "loss": 1.863162841796875, + "step": 226800 + }, + { + "epoch": 30.253333333333334, + "grad_norm": 0.6845178604125977, + "learning_rate": 3.488013333333334e-05, + "loss": 1.8685459899902344, + "step": 226900 + }, + { + "epoch": 30.266666666666666, + "grad_norm": 0.6048876047134399, + "learning_rate": 3.487346666666667e-05, + "loss": 1.8716763305664061, + "step": 227000 + }, + { + "epoch": 30.28, + "grad_norm": 0.6472257375717163, + "learning_rate": 3.4866799999999996e-05, + "loss": 1.8674250793457032, + "step": 227100 + }, + { + "epoch": 30.293333333333333, + "grad_norm": 0.6502028703689575, + "learning_rate": 3.4860133333333335e-05, + "loss": 1.8718875122070313, + "step": 227200 + }, + { + "epoch": 30.306666666666665, + "grad_norm": 0.6495829820632935, + "learning_rate": 3.485346666666667e-05, + "loss": 1.8765740966796876, + "step": 227300 + }, + { + "epoch": 30.32, + "grad_norm": 0.6474784016609192, + "learning_rate": 3.48468e-05, + "loss": 1.8689016723632812, + "step": 227400 + }, + { + "epoch": 30.333333333333332, + "grad_norm": 0.652237057685852, + "learning_rate": 3.484013333333334e-05, + "loss": 1.8737103271484374, + "step": 227500 + }, + { + "epoch": 30.346666666666668, + "grad_norm": 0.6202793717384338, + "learning_rate": 3.483346666666667e-05, + "loss": 1.8773468017578125, + "step": 227600 + }, + { + "epoch": 30.36, + "grad_norm": 0.6398950815200806, + "learning_rate": 3.482686666666667e-05, + "loss": 1.8740312194824218, + "step": 227700 + }, + { + "epoch": 30.373333333333335, + "grad_norm": 0.679435670375824, + "learning_rate": 3.48202e-05, + "loss": 1.8724604797363282, + "step": 227800 + }, + { + "epoch": 30.386666666666667, + "grad_norm": 0.6420354843139648, + "learning_rate": 3.4813533333333335e-05, + "loss": 1.8720265197753907, + "step": 227900 + }, + { + "epoch": 30.4, + "grad_norm": 0.6483940482139587, + "learning_rate": 3.4806866666666674e-05, + "loss": 1.8791566467285157, + "step": 228000 + }, + { + "epoch": 30.413333333333334, + "grad_norm": 0.6276984810829163, + "learning_rate": 3.48002e-05, + "loss": 1.8788121032714844, + "step": 228100 + }, + { + "epoch": 30.426666666666666, + "grad_norm": 0.6200658082962036, + "learning_rate": 3.479353333333333e-05, + "loss": 1.8798104858398437, + "step": 228200 + }, + { + "epoch": 30.44, + "grad_norm": 0.6153615117073059, + "learning_rate": 3.478686666666667e-05, + "loss": 1.878331298828125, + "step": 228300 + }, + { + "epoch": 30.453333333333333, + "grad_norm": 0.664184033870697, + "learning_rate": 3.47802e-05, + "loss": 1.879515380859375, + "step": 228400 + }, + { + "epoch": 30.466666666666665, + "grad_norm": 0.6094868779182434, + "learning_rate": 3.4773533333333335e-05, + "loss": 1.8832115173339843, + "step": 228500 + }, + { + "epoch": 30.48, + "grad_norm": 0.6478238701820374, + "learning_rate": 3.476686666666667e-05, + "loss": 1.8848756408691407, + "step": 228600 + }, + { + "epoch": 30.493333333333332, + "grad_norm": 0.6715877652168274, + "learning_rate": 3.4760200000000006e-05, + "loss": 1.8839694213867189, + "step": 228700 + }, + { + "epoch": 30.506666666666668, + "grad_norm": 0.65712571144104, + "learning_rate": 3.475353333333333e-05, + "loss": 1.8820346069335938, + "step": 228800 + }, + { + "epoch": 30.52, + "grad_norm": 0.6317829489707947, + "learning_rate": 3.4746866666666664e-05, + "loss": 1.8841021728515626, + "step": 228900 + }, + { + "epoch": 30.533333333333335, + "grad_norm": 0.654059886932373, + "learning_rate": 3.47402e-05, + "loss": 1.8871124267578125, + "step": 229000 + }, + { + "epoch": 30.546666666666667, + "grad_norm": 0.6421239972114563, + "learning_rate": 3.4733533333333336e-05, + "loss": 1.8896517944335938, + "step": 229100 + }, + { + "epoch": 30.56, + "grad_norm": 0.6650997996330261, + "learning_rate": 3.472686666666667e-05, + "loss": 1.8887339782714845, + "step": 229200 + }, + { + "epoch": 30.573333333333334, + "grad_norm": 0.6281959414482117, + "learning_rate": 3.47202e-05, + "loss": 1.8887667846679688, + "step": 229300 + }, + { + "epoch": 30.586666666666666, + "grad_norm": 0.6575733423233032, + "learning_rate": 3.471353333333334e-05, + "loss": 1.889744110107422, + "step": 229400 + }, + { + "epoch": 30.6, + "grad_norm": 0.6337116360664368, + "learning_rate": 3.470686666666667e-05, + "loss": 1.8880189514160157, + "step": 229500 + }, + { + "epoch": 30.613333333333333, + "grad_norm": 0.6612198948860168, + "learning_rate": 3.47002e-05, + "loss": 1.8879634094238282, + "step": 229600 + }, + { + "epoch": 30.626666666666665, + "grad_norm": 0.6376072764396667, + "learning_rate": 3.46936e-05, + "loss": 1.8931094360351564, + "step": 229700 + }, + { + "epoch": 30.64, + "grad_norm": 0.6279535889625549, + "learning_rate": 3.4686933333333335e-05, + "loss": 1.890915069580078, + "step": 229800 + }, + { + "epoch": 30.653333333333332, + "grad_norm": 0.6393465399742126, + "learning_rate": 3.468026666666667e-05, + "loss": 1.889798583984375, + "step": 229900 + }, + { + "epoch": 30.666666666666668, + "grad_norm": 0.6623516082763672, + "learning_rate": 3.46736e-05, + "loss": 1.8915354919433593, + "step": 230000 + }, + { + "epoch": 30.68, + "grad_norm": 0.628612756729126, + "learning_rate": 3.466693333333333e-05, + "loss": 1.8947076416015625, + "step": 230100 + }, + { + "epoch": 30.693333333333335, + "grad_norm": 0.6295715570449829, + "learning_rate": 3.466026666666667e-05, + "loss": 1.8961087036132813, + "step": 230200 + }, + { + "epoch": 30.706666666666667, + "grad_norm": 0.6464623212814331, + "learning_rate": 3.46536e-05, + "loss": 1.8944891357421876, + "step": 230300 + }, + { + "epoch": 30.72, + "grad_norm": 0.6213361620903015, + "learning_rate": 3.4646933333333335e-05, + "loss": 1.8963340759277343, + "step": 230400 + }, + { + "epoch": 30.733333333333334, + "grad_norm": 0.6335080862045288, + "learning_rate": 3.464026666666667e-05, + "loss": 1.8955998229980469, + "step": 230500 + }, + { + "epoch": 30.746666666666666, + "grad_norm": 0.6538170576095581, + "learning_rate": 3.46336e-05, + "loss": 1.895076141357422, + "step": 230600 + }, + { + "epoch": 30.76, + "grad_norm": 0.6481654047966003, + "learning_rate": 3.462693333333333e-05, + "loss": 1.896536865234375, + "step": 230700 + }, + { + "epoch": 30.773333333333333, + "grad_norm": 0.6416306495666504, + "learning_rate": 3.4620266666666664e-05, + "loss": 1.8968507385253905, + "step": 230800 + }, + { + "epoch": 30.786666666666665, + "grad_norm": 0.6325493454933167, + "learning_rate": 3.4613600000000003e-05, + "loss": 1.8965896606445312, + "step": 230900 + }, + { + "epoch": 30.8, + "grad_norm": 0.6334678530693054, + "learning_rate": 3.4606933333333336e-05, + "loss": 1.8993826293945313, + "step": 231000 + }, + { + "epoch": 30.813333333333333, + "grad_norm": 0.642789363861084, + "learning_rate": 3.460026666666667e-05, + "loss": 1.899892578125, + "step": 231100 + }, + { + "epoch": 30.826666666666668, + "grad_norm": 0.6502810716629028, + "learning_rate": 3.459360000000001e-05, + "loss": 1.9054344177246094, + "step": 231200 + }, + { + "epoch": 30.84, + "grad_norm": 0.6091868281364441, + "learning_rate": 3.458693333333333e-05, + "loss": 1.9026506042480469, + "step": 231300 + }, + { + "epoch": 30.85333333333333, + "grad_norm": 0.656499981880188, + "learning_rate": 3.4580266666666665e-05, + "loss": 1.9024732971191407, + "step": 231400 + }, + { + "epoch": 30.866666666666667, + "grad_norm": 0.6632031202316284, + "learning_rate": 3.45736e-05, + "loss": 1.9011004638671876, + "step": 231500 + }, + { + "epoch": 30.88, + "grad_norm": 0.6348013281822205, + "learning_rate": 3.4566933333333336e-05, + "loss": 1.9027983093261718, + "step": 231600 + }, + { + "epoch": 30.893333333333334, + "grad_norm": 0.6693485975265503, + "learning_rate": 3.4560333333333335e-05, + "loss": 1.9033485412597657, + "step": 231700 + }, + { + "epoch": 30.906666666666666, + "grad_norm": 0.628446638584137, + "learning_rate": 3.455366666666667e-05, + "loss": 1.905799102783203, + "step": 231800 + }, + { + "epoch": 30.92, + "grad_norm": 0.6061755418777466, + "learning_rate": 3.4547e-05, + "loss": 1.9038815307617187, + "step": 231900 + }, + { + "epoch": 30.933333333333334, + "grad_norm": 0.6528656482696533, + "learning_rate": 3.454033333333334e-05, + "loss": 1.8988880920410156, + "step": 232000 + }, + { + "epoch": 30.946666666666665, + "grad_norm": 0.6434139609336853, + "learning_rate": 3.453366666666667e-05, + "loss": 1.9047633361816407, + "step": 232100 + }, + { + "epoch": 30.96, + "grad_norm": 0.621820330619812, + "learning_rate": 3.4527e-05, + "loss": 1.906195068359375, + "step": 232200 + }, + { + "epoch": 30.973333333333333, + "grad_norm": 0.6167011857032776, + "learning_rate": 3.4520333333333336e-05, + "loss": 1.9075782775878907, + "step": 232300 + }, + { + "epoch": 30.986666666666668, + "grad_norm": 0.6764289736747742, + "learning_rate": 3.451366666666667e-05, + "loss": 1.9077426147460939, + "step": 232400 + }, + { + "epoch": 31.0, + "grad_norm": 0.6597962975502014, + "learning_rate": 3.4507e-05, + "loss": 1.9063412475585937, + "step": 232500 + }, + { + "epoch": 31.013333333333332, + "grad_norm": 0.6323487758636475, + "learning_rate": 3.450033333333333e-05, + "loss": 1.8208100891113281, + "step": 232600 + }, + { + "epoch": 31.026666666666667, + "grad_norm": 0.6353087425231934, + "learning_rate": 3.449366666666667e-05, + "loss": 1.8169317626953125, + "step": 232700 + }, + { + "epoch": 31.04, + "grad_norm": 0.6516137719154358, + "learning_rate": 3.4487000000000004e-05, + "loss": 1.8187254333496095, + "step": 232800 + }, + { + "epoch": 31.053333333333335, + "grad_norm": 0.6380991339683533, + "learning_rate": 3.4480333333333336e-05, + "loss": 1.828922119140625, + "step": 232900 + }, + { + "epoch": 31.066666666666666, + "grad_norm": 0.6637365221977234, + "learning_rate": 3.447366666666667e-05, + "loss": 1.8281976318359374, + "step": 233000 + }, + { + "epoch": 31.08, + "grad_norm": 0.6347978115081787, + "learning_rate": 3.4467e-05, + "loss": 1.8291136169433593, + "step": 233100 + }, + { + "epoch": 31.093333333333334, + "grad_norm": 0.6856868863105774, + "learning_rate": 3.446033333333333e-05, + "loss": 1.8266050720214844, + "step": 233200 + }, + { + "epoch": 31.106666666666666, + "grad_norm": 0.6957641839981079, + "learning_rate": 3.4453666666666665e-05, + "loss": 1.8307728576660156, + "step": 233300 + }, + { + "epoch": 31.12, + "grad_norm": 0.657038688659668, + "learning_rate": 3.4447000000000004e-05, + "loss": 1.8359172058105468, + "step": 233400 + }, + { + "epoch": 31.133333333333333, + "grad_norm": 0.6168066263198853, + "learning_rate": 3.4440333333333336e-05, + "loss": 1.8327171325683593, + "step": 233500 + }, + { + "epoch": 31.14666666666667, + "grad_norm": 0.6589761972427368, + "learning_rate": 3.443366666666667e-05, + "loss": 1.8356471252441406, + "step": 233600 + }, + { + "epoch": 31.16, + "grad_norm": 0.656284749507904, + "learning_rate": 3.442706666666667e-05, + "loss": 1.8352957153320313, + "step": 233700 + }, + { + "epoch": 31.173333333333332, + "grad_norm": 0.6507891416549683, + "learning_rate": 3.44204e-05, + "loss": 1.8356683349609375, + "step": 233800 + }, + { + "epoch": 31.186666666666667, + "grad_norm": 0.6691421270370483, + "learning_rate": 3.441373333333334e-05, + "loss": 1.8375747680664063, + "step": 233900 + }, + { + "epoch": 31.2, + "grad_norm": 0.6770158410072327, + "learning_rate": 3.440706666666667e-05, + "loss": 1.8438589477539062, + "step": 234000 + }, + { + "epoch": 31.213333333333335, + "grad_norm": 0.6403542160987854, + "learning_rate": 3.44004e-05, + "loss": 1.8394532775878907, + "step": 234100 + }, + { + "epoch": 31.226666666666667, + "grad_norm": 0.6421419978141785, + "learning_rate": 3.4393733333333336e-05, + "loss": 1.8419064331054686, + "step": 234200 + }, + { + "epoch": 31.24, + "grad_norm": 0.6424593925476074, + "learning_rate": 3.438706666666667e-05, + "loss": 1.839052734375, + "step": 234300 + }, + { + "epoch": 31.253333333333334, + "grad_norm": 0.6520510911941528, + "learning_rate": 3.43804e-05, + "loss": 1.8442149353027344, + "step": 234400 + }, + { + "epoch": 31.266666666666666, + "grad_norm": 0.6459802985191345, + "learning_rate": 3.437373333333333e-05, + "loss": 1.8480723571777344, + "step": 234500 + }, + { + "epoch": 31.28, + "grad_norm": 0.6531192660331726, + "learning_rate": 3.436706666666667e-05, + "loss": 1.8451568603515625, + "step": 234600 + }, + { + "epoch": 31.293333333333333, + "grad_norm": 0.6506422758102417, + "learning_rate": 3.4360400000000004e-05, + "loss": 1.8467247009277343, + "step": 234700 + }, + { + "epoch": 31.306666666666665, + "grad_norm": 0.6557679176330566, + "learning_rate": 3.435373333333333e-05, + "loss": 1.8464105224609375, + "step": 234800 + }, + { + "epoch": 31.32, + "grad_norm": 0.6555748581886292, + "learning_rate": 3.434706666666667e-05, + "loss": 1.8486134338378906, + "step": 234900 + }, + { + "epoch": 31.333333333333332, + "grad_norm": 0.6634244322776794, + "learning_rate": 3.43404e-05, + "loss": 1.8502972412109375, + "step": 235000 + }, + { + "epoch": 31.346666666666668, + "grad_norm": 0.6522782444953918, + "learning_rate": 3.433373333333333e-05, + "loss": 1.8538160705566407, + "step": 235100 + }, + { + "epoch": 31.36, + "grad_norm": 0.6471147537231445, + "learning_rate": 3.4327066666666665e-05, + "loss": 1.8480146789550782, + "step": 235200 + }, + { + "epoch": 31.373333333333335, + "grad_norm": 0.6697273254394531, + "learning_rate": 3.4320400000000004e-05, + "loss": 1.8517044067382813, + "step": 235300 + }, + { + "epoch": 31.386666666666667, + "grad_norm": 0.6725065112113953, + "learning_rate": 3.4313733333333337e-05, + "loss": 1.8513163757324218, + "step": 235400 + }, + { + "epoch": 31.4, + "grad_norm": 0.6726689338684082, + "learning_rate": 3.430706666666667e-05, + "loss": 1.8532307434082032, + "step": 235500 + }, + { + "epoch": 31.413333333333334, + "grad_norm": 0.6598038673400879, + "learning_rate": 3.43004e-05, + "loss": 1.8543743896484375, + "step": 235600 + }, + { + "epoch": 31.426666666666666, + "grad_norm": 0.6628021001815796, + "learning_rate": 3.429380000000001e-05, + "loss": 1.8543577575683594, + "step": 235700 + }, + { + "epoch": 31.44, + "grad_norm": 0.677413284778595, + "learning_rate": 3.428713333333333e-05, + "loss": 1.8539126586914063, + "step": 235800 + }, + { + "epoch": 31.453333333333333, + "grad_norm": 0.6506122350692749, + "learning_rate": 3.4280466666666665e-05, + "loss": 1.8576051330566405, + "step": 235900 + }, + { + "epoch": 31.466666666666665, + "grad_norm": 0.6622093319892883, + "learning_rate": 3.42738e-05, + "loss": 1.8572665405273439, + "step": 236000 + }, + { + "epoch": 31.48, + "grad_norm": 0.674359142780304, + "learning_rate": 3.4267133333333336e-05, + "loss": 1.8588676452636719, + "step": 236100 + }, + { + "epoch": 31.493333333333332, + "grad_norm": 0.6599639058113098, + "learning_rate": 3.426046666666667e-05, + "loss": 1.8583624267578125, + "step": 236200 + }, + { + "epoch": 31.506666666666668, + "grad_norm": 0.6558268666267395, + "learning_rate": 3.42538e-05, + "loss": 1.8596633911132812, + "step": 236300 + }, + { + "epoch": 31.52, + "grad_norm": 0.6776077151298523, + "learning_rate": 3.424713333333334e-05, + "loss": 1.8617288208007812, + "step": 236400 + }, + { + "epoch": 31.533333333333335, + "grad_norm": 0.6699625253677368, + "learning_rate": 3.424046666666667e-05, + "loss": 1.8598435974121095, + "step": 236500 + }, + { + "epoch": 31.546666666666667, + "grad_norm": 0.6473347544670105, + "learning_rate": 3.42338e-05, + "loss": 1.8564553833007813, + "step": 236600 + }, + { + "epoch": 31.56, + "grad_norm": 0.6418144702911377, + "learning_rate": 3.4227133333333336e-05, + "loss": 1.8607228088378907, + "step": 236700 + }, + { + "epoch": 31.573333333333334, + "grad_norm": 0.6646478772163391, + "learning_rate": 3.422046666666667e-05, + "loss": 1.8621051025390625, + "step": 236800 + }, + { + "epoch": 31.586666666666666, + "grad_norm": 0.6577756404876709, + "learning_rate": 3.42138e-05, + "loss": 1.8664056396484374, + "step": 236900 + }, + { + "epoch": 31.6, + "grad_norm": 0.6546629667282104, + "learning_rate": 3.420713333333333e-05, + "loss": 1.8602700805664063, + "step": 237000 + }, + { + "epoch": 31.613333333333333, + "grad_norm": 0.6508590579032898, + "learning_rate": 3.420046666666667e-05, + "loss": 1.8613612365722656, + "step": 237100 + }, + { + "epoch": 31.626666666666665, + "grad_norm": 0.6625661253929138, + "learning_rate": 3.4193800000000005e-05, + "loss": 1.8683642578125, + "step": 237200 + }, + { + "epoch": 31.64, + "grad_norm": 0.6706848740577698, + "learning_rate": 3.418713333333334e-05, + "loss": 1.8645219421386718, + "step": 237300 + }, + { + "epoch": 31.653333333333332, + "grad_norm": 0.6599859595298767, + "learning_rate": 3.418046666666667e-05, + "loss": 1.8640052795410156, + "step": 237400 + }, + { + "epoch": 31.666666666666668, + "grad_norm": 0.6782610416412354, + "learning_rate": 3.41738e-05, + "loss": 1.8663507080078126, + "step": 237500 + }, + { + "epoch": 31.68, + "grad_norm": 0.6501734852790833, + "learning_rate": 3.4167133333333334e-05, + "loss": 1.864781951904297, + "step": 237600 + }, + { + "epoch": 31.693333333333335, + "grad_norm": 0.6596933603286743, + "learning_rate": 3.416053333333333e-05, + "loss": 1.8692094421386718, + "step": 237700 + }, + { + "epoch": 31.706666666666667, + "grad_norm": 0.6630842685699463, + "learning_rate": 3.4153866666666665e-05, + "loss": 1.8750367736816407, + "step": 237800 + }, + { + "epoch": 31.72, + "grad_norm": 0.6862805485725403, + "learning_rate": 3.4147200000000004e-05, + "loss": 1.8699729919433594, + "step": 237900 + }, + { + "epoch": 31.733333333333334, + "grad_norm": 0.6476590037345886, + "learning_rate": 3.4140533333333336e-05, + "loss": 1.8710263061523438, + "step": 238000 + }, + { + "epoch": 31.746666666666666, + "grad_norm": 0.6775981187820435, + "learning_rate": 3.413386666666667e-05, + "loss": 1.8723735046386718, + "step": 238100 + }, + { + "epoch": 31.76, + "grad_norm": 0.6427512168884277, + "learning_rate": 3.41272e-05, + "loss": 1.8744818115234374, + "step": 238200 + }, + { + "epoch": 31.773333333333333, + "grad_norm": 0.6625904440879822, + "learning_rate": 3.412053333333334e-05, + "loss": 1.8720915222167969, + "step": 238300 + }, + { + "epoch": 31.786666666666665, + "grad_norm": 0.6708217859268188, + "learning_rate": 3.4113866666666665e-05, + "loss": 1.8733248901367188, + "step": 238400 + }, + { + "epoch": 31.8, + "grad_norm": 0.6499980092048645, + "learning_rate": 3.41072e-05, + "loss": 1.8720248413085938, + "step": 238500 + }, + { + "epoch": 31.813333333333333, + "grad_norm": 0.6474357843399048, + "learning_rate": 3.41006e-05, + "loss": 1.875724334716797, + "step": 238600 + }, + { + "epoch": 31.826666666666668, + "grad_norm": 0.639595627784729, + "learning_rate": 3.4093933333333336e-05, + "loss": 1.8767543029785156, + "step": 238700 + }, + { + "epoch": 31.84, + "grad_norm": 0.6569827795028687, + "learning_rate": 3.408726666666667e-05, + "loss": 1.8743658447265625, + "step": 238800 + }, + { + "epoch": 31.85333333333333, + "grad_norm": 0.6573343873023987, + "learning_rate": 3.40806e-05, + "loss": 1.876455078125, + "step": 238900 + }, + { + "epoch": 31.866666666666667, + "grad_norm": 0.6686303019523621, + "learning_rate": 3.407393333333333e-05, + "loss": 1.875361785888672, + "step": 239000 + }, + { + "epoch": 31.88, + "grad_norm": 0.6887635588645935, + "learning_rate": 3.406726666666667e-05, + "loss": 1.87423583984375, + "step": 239100 + }, + { + "epoch": 31.893333333333334, + "grad_norm": 0.6796891093254089, + "learning_rate": 3.4060600000000004e-05, + "loss": 1.878402099609375, + "step": 239200 + }, + { + "epoch": 31.906666666666666, + "grad_norm": 0.7028095722198486, + "learning_rate": 3.4053933333333336e-05, + "loss": 1.879278106689453, + "step": 239300 + }, + { + "epoch": 31.92, + "grad_norm": 0.6571170687675476, + "learning_rate": 3.404726666666667e-05, + "loss": 1.8795460510253905, + "step": 239400 + }, + { + "epoch": 31.933333333333334, + "grad_norm": 0.6626359820365906, + "learning_rate": 3.40406e-05, + "loss": 1.8782347106933595, + "step": 239500 + }, + { + "epoch": 31.946666666666665, + "grad_norm": 0.6341395378112793, + "learning_rate": 3.403393333333333e-05, + "loss": 1.8807855224609376, + "step": 239600 + }, + { + "epoch": 31.96, + "grad_norm": 0.7045288681983948, + "learning_rate": 3.4027266666666665e-05, + "loss": 1.8818238830566407, + "step": 239700 + }, + { + "epoch": 31.973333333333333, + "grad_norm": 0.6587862372398376, + "learning_rate": 3.4020600000000004e-05, + "loss": 1.8825888061523437, + "step": 239800 + }, + { + "epoch": 31.986666666666668, + "grad_norm": 0.6503267288208008, + "learning_rate": 3.4013933333333337e-05, + "loss": 1.8872879028320313, + "step": 239900 + }, + { + "epoch": 32.0, + "grad_norm": 0.6603325605392456, + "learning_rate": 3.400726666666667e-05, + "loss": 1.8781341552734374, + "step": 240000 + }, + { + "epoch": 32.013333333333335, + "grad_norm": 0.6310288906097412, + "learning_rate": 3.40006e-05, + "loss": 1.7969367980957032, + "step": 240100 + }, + { + "epoch": 32.026666666666664, + "grad_norm": 0.6715329885482788, + "learning_rate": 3.399393333333333e-05, + "loss": 1.8000009155273438, + "step": 240200 + }, + { + "epoch": 32.04, + "grad_norm": 0.6543241143226624, + "learning_rate": 3.3987266666666666e-05, + "loss": 1.7961320495605468, + "step": 240300 + }, + { + "epoch": 32.053333333333335, + "grad_norm": 0.6774461269378662, + "learning_rate": 3.3980600000000005e-05, + "loss": 1.8003314208984376, + "step": 240400 + }, + { + "epoch": 32.06666666666667, + "grad_norm": 0.6529948711395264, + "learning_rate": 3.397393333333334e-05, + "loss": 1.8036393737792968, + "step": 240500 + }, + { + "epoch": 32.08, + "grad_norm": 0.6645397543907166, + "learning_rate": 3.396726666666667e-05, + "loss": 1.7999684143066406, + "step": 240600 + }, + { + "epoch": 32.093333333333334, + "grad_norm": 0.6966586112976074, + "learning_rate": 3.39606e-05, + "loss": 1.8084344482421875, + "step": 240700 + }, + { + "epoch": 32.10666666666667, + "grad_norm": 0.6967159509658813, + "learning_rate": 3.395393333333334e-05, + "loss": 1.8040733337402344, + "step": 240800 + }, + { + "epoch": 32.12, + "grad_norm": 0.6923654675483704, + "learning_rate": 3.3947266666666666e-05, + "loss": 1.8065350341796875, + "step": 240900 + }, + { + "epoch": 32.13333333333333, + "grad_norm": 0.6938139200210571, + "learning_rate": 3.39406e-05, + "loss": 1.8069944763183594, + "step": 241000 + }, + { + "epoch": 32.14666666666667, + "grad_norm": 0.6618465781211853, + "learning_rate": 3.393393333333334e-05, + "loss": 1.80832763671875, + "step": 241100 + }, + { + "epoch": 32.16, + "grad_norm": 0.681530773639679, + "learning_rate": 3.392726666666667e-05, + "loss": 1.8130369567871094, + "step": 241200 + }, + { + "epoch": 32.17333333333333, + "grad_norm": 0.692341148853302, + "learning_rate": 3.39206e-05, + "loss": 1.8068063354492188, + "step": 241300 + }, + { + "epoch": 32.18666666666667, + "grad_norm": 0.6659745573997498, + "learning_rate": 3.3913933333333334e-05, + "loss": 1.8177037048339844, + "step": 241400 + }, + { + "epoch": 32.2, + "grad_norm": 0.6756054162979126, + "learning_rate": 3.390726666666667e-05, + "loss": 1.812709503173828, + "step": 241500 + }, + { + "epoch": 32.21333333333333, + "grad_norm": 0.6909893751144409, + "learning_rate": 3.39006e-05, + "loss": 1.8146788024902343, + "step": 241600 + }, + { + "epoch": 32.22666666666667, + "grad_norm": 0.6421316266059875, + "learning_rate": 3.389393333333333e-05, + "loss": 1.8204322814941407, + "step": 241700 + }, + { + "epoch": 32.24, + "grad_norm": 0.6924384236335754, + "learning_rate": 3.388726666666667e-05, + "loss": 1.8170956420898436, + "step": 241800 + }, + { + "epoch": 32.25333333333333, + "grad_norm": 0.7075912356376648, + "learning_rate": 3.38806e-05, + "loss": 1.8158349609375, + "step": 241900 + }, + { + "epoch": 32.266666666666666, + "grad_norm": 0.698880136013031, + "learning_rate": 3.3873933333333334e-05, + "loss": 1.822403564453125, + "step": 242000 + }, + { + "epoch": 32.28, + "grad_norm": 0.6914991736412048, + "learning_rate": 3.386726666666667e-05, + "loss": 1.8238410949707031, + "step": 242100 + }, + { + "epoch": 32.29333333333334, + "grad_norm": 0.6999617218971252, + "learning_rate": 3.3860600000000006e-05, + "loss": 1.8204554748535156, + "step": 242200 + }, + { + "epoch": 32.306666666666665, + "grad_norm": 0.6469098925590515, + "learning_rate": 3.385393333333334e-05, + "loss": 1.8187814331054688, + "step": 242300 + }, + { + "epoch": 32.32, + "grad_norm": 0.6881408095359802, + "learning_rate": 3.3847266666666664e-05, + "loss": 1.823394775390625, + "step": 242400 + }, + { + "epoch": 32.333333333333336, + "grad_norm": 0.6413573622703552, + "learning_rate": 3.38406e-05, + "loss": 1.8220912170410157, + "step": 242500 + }, + { + "epoch": 32.346666666666664, + "grad_norm": 0.6949501633644104, + "learning_rate": 3.3834e-05, + "loss": 1.825587921142578, + "step": 242600 + }, + { + "epoch": 32.36, + "grad_norm": 0.6824288964271545, + "learning_rate": 3.3827333333333334e-05, + "loss": 1.8236434936523438, + "step": 242700 + }, + { + "epoch": 32.373333333333335, + "grad_norm": 0.6769747734069824, + "learning_rate": 3.3820666666666666e-05, + "loss": 1.8265499877929687, + "step": 242800 + }, + { + "epoch": 32.38666666666666, + "grad_norm": 0.663185715675354, + "learning_rate": 3.3814e-05, + "loss": 1.8235643005371094, + "step": 242900 + }, + { + "epoch": 32.4, + "grad_norm": 0.6693112254142761, + "learning_rate": 3.380733333333334e-05, + "loss": 1.830492706298828, + "step": 243000 + }, + { + "epoch": 32.413333333333334, + "grad_norm": 0.6796991229057312, + "learning_rate": 3.3800733333333337e-05, + "loss": 1.8297494506835938, + "step": 243100 + }, + { + "epoch": 32.42666666666667, + "grad_norm": 0.6557438969612122, + "learning_rate": 3.379406666666667e-05, + "loss": 1.8294140625, + "step": 243200 + }, + { + "epoch": 32.44, + "grad_norm": 0.6834737062454224, + "learning_rate": 3.37874e-05, + "loss": 1.8335061645507813, + "step": 243300 + }, + { + "epoch": 32.45333333333333, + "grad_norm": 0.6919399499893188, + "learning_rate": 3.3780733333333333e-05, + "loss": 1.829990997314453, + "step": 243400 + }, + { + "epoch": 32.46666666666667, + "grad_norm": 0.6703587174415588, + "learning_rate": 3.377406666666667e-05, + "loss": 1.8283270263671876, + "step": 243500 + }, + { + "epoch": 32.48, + "grad_norm": 0.6480154991149902, + "learning_rate": 3.37674e-05, + "loss": 1.8319325256347656, + "step": 243600 + }, + { + "epoch": 32.49333333333333, + "grad_norm": 0.6802955865859985, + "learning_rate": 3.376073333333333e-05, + "loss": 1.8309434509277345, + "step": 243700 + }, + { + "epoch": 32.50666666666667, + "grad_norm": 0.6789207458496094, + "learning_rate": 3.375406666666667e-05, + "loss": 1.8343551635742188, + "step": 243800 + }, + { + "epoch": 32.52, + "grad_norm": 0.679716169834137, + "learning_rate": 3.37474e-05, + "loss": 1.8310325622558594, + "step": 243900 + }, + { + "epoch": 32.53333333333333, + "grad_norm": 0.6787630319595337, + "learning_rate": 3.3740733333333334e-05, + "loss": 1.8323744201660157, + "step": 244000 + }, + { + "epoch": 32.54666666666667, + "grad_norm": 0.7034173011779785, + "learning_rate": 3.3734066666666666e-05, + "loss": 1.8383087158203124, + "step": 244100 + }, + { + "epoch": 32.56, + "grad_norm": 0.6853973865509033, + "learning_rate": 3.3727400000000005e-05, + "loss": 1.8405967712402345, + "step": 244200 + }, + { + "epoch": 32.57333333333333, + "grad_norm": 0.6757837533950806, + "learning_rate": 3.372073333333334e-05, + "loss": 1.8397735595703124, + "step": 244300 + }, + { + "epoch": 32.586666666666666, + "grad_norm": 0.7057570815086365, + "learning_rate": 3.371406666666666e-05, + "loss": 1.8403346252441406, + "step": 244400 + }, + { + "epoch": 32.6, + "grad_norm": 0.6852734684944153, + "learning_rate": 3.37074e-05, + "loss": 1.8357850646972655, + "step": 244500 + }, + { + "epoch": 32.61333333333333, + "grad_norm": 0.6865105628967285, + "learning_rate": 3.3700733333333334e-05, + "loss": 1.8388577270507813, + "step": 244600 + }, + { + "epoch": 32.626666666666665, + "grad_norm": 0.6819406747817993, + "learning_rate": 3.3694066666666666e-05, + "loss": 1.8388409423828125, + "step": 244700 + }, + { + "epoch": 32.64, + "grad_norm": 0.70542311668396, + "learning_rate": 3.3687400000000005e-05, + "loss": 1.8410357666015624, + "step": 244800 + }, + { + "epoch": 32.653333333333336, + "grad_norm": 0.6699349284172058, + "learning_rate": 3.368073333333334e-05, + "loss": 1.838839569091797, + "step": 244900 + }, + { + "epoch": 32.666666666666664, + "grad_norm": 0.6589396595954895, + "learning_rate": 3.367406666666667e-05, + "loss": 1.8432624816894532, + "step": 245000 + }, + { + "epoch": 32.68, + "grad_norm": 0.6670289635658264, + "learning_rate": 3.36674e-05, + "loss": 1.8423471069335937, + "step": 245100 + }, + { + "epoch": 32.693333333333335, + "grad_norm": 0.7071298956871033, + "learning_rate": 3.3660733333333335e-05, + "loss": 1.8458381652832032, + "step": 245200 + }, + { + "epoch": 32.70666666666666, + "grad_norm": 0.6842973232269287, + "learning_rate": 3.365406666666667e-05, + "loss": 1.8477865600585937, + "step": 245300 + }, + { + "epoch": 32.72, + "grad_norm": 0.6763595342636108, + "learning_rate": 3.36474e-05, + "loss": 1.8455276489257812, + "step": 245400 + }, + { + "epoch": 32.733333333333334, + "grad_norm": 0.6894487142562866, + "learning_rate": 3.364073333333334e-05, + "loss": 1.847926025390625, + "step": 245500 + }, + { + "epoch": 32.74666666666667, + "grad_norm": 0.6884575486183167, + "learning_rate": 3.363406666666667e-05, + "loss": 1.8473049926757812, + "step": 245600 + }, + { + "epoch": 32.76, + "grad_norm": 0.6874258518218994, + "learning_rate": 3.36274e-05, + "loss": 1.8455709838867187, + "step": 245700 + }, + { + "epoch": 32.77333333333333, + "grad_norm": 0.6681150197982788, + "learning_rate": 3.3620733333333335e-05, + "loss": 1.8474746704101563, + "step": 245800 + }, + { + "epoch": 32.78666666666667, + "grad_norm": 0.6818782687187195, + "learning_rate": 3.361406666666667e-05, + "loss": 1.848689727783203, + "step": 245900 + }, + { + "epoch": 32.8, + "grad_norm": 0.6926629543304443, + "learning_rate": 3.36074e-05, + "loss": 1.8480201721191407, + "step": 246000 + }, + { + "epoch": 32.81333333333333, + "grad_norm": 0.6802074313163757, + "learning_rate": 3.360073333333333e-05, + "loss": 1.8487611389160157, + "step": 246100 + }, + { + "epoch": 32.82666666666667, + "grad_norm": 0.6938923597335815, + "learning_rate": 3.359406666666667e-05, + "loss": 1.8549391174316405, + "step": 246200 + }, + { + "epoch": 32.84, + "grad_norm": 0.6887032389640808, + "learning_rate": 3.35874e-05, + "loss": 1.855552978515625, + "step": 246300 + }, + { + "epoch": 32.85333333333333, + "grad_norm": 0.6876346468925476, + "learning_rate": 3.3580733333333335e-05, + "loss": 1.8523348999023437, + "step": 246400 + }, + { + "epoch": 32.86666666666667, + "grad_norm": 0.6914822459220886, + "learning_rate": 3.357406666666667e-05, + "loss": 1.851287841796875, + "step": 246500 + }, + { + "epoch": 32.88, + "grad_norm": 0.6880086660385132, + "learning_rate": 3.35674e-05, + "loss": 1.8532257080078125, + "step": 246600 + }, + { + "epoch": 32.89333333333333, + "grad_norm": 0.6851861476898193, + "learning_rate": 3.356073333333333e-05, + "loss": 1.8526493835449218, + "step": 246700 + }, + { + "epoch": 32.906666666666666, + "grad_norm": 0.7228900194168091, + "learning_rate": 3.3554066666666664e-05, + "loss": 1.8538876342773438, + "step": 246800 + }, + { + "epoch": 32.92, + "grad_norm": 0.6968467831611633, + "learning_rate": 3.3547400000000003e-05, + "loss": 1.855828857421875, + "step": 246900 + }, + { + "epoch": 32.93333333333333, + "grad_norm": 0.6718273162841797, + "learning_rate": 3.3540733333333336e-05, + "loss": 1.8609310913085937, + "step": 247000 + }, + { + "epoch": 32.946666666666665, + "grad_norm": 0.7059205174446106, + "learning_rate": 3.3534133333333335e-05, + "loss": 1.8553521728515625, + "step": 247100 + }, + { + "epoch": 32.96, + "grad_norm": 0.6735067963600159, + "learning_rate": 3.352746666666667e-05, + "loss": 1.8593675231933593, + "step": 247200 + }, + { + "epoch": 32.973333333333336, + "grad_norm": 0.6527106165885925, + "learning_rate": 3.35208e-05, + "loss": 1.8580506896972657, + "step": 247300 + }, + { + "epoch": 32.986666666666665, + "grad_norm": 0.6713843941688538, + "learning_rate": 3.351413333333334e-05, + "loss": 1.8553984069824219, + "step": 247400 + }, + { + "epoch": 33.0, + "grad_norm": 0.6805854439735413, + "learning_rate": 3.350746666666667e-05, + "loss": 1.8589930725097656, + "step": 247500 + }, + { + "epoch": 33.013333333333335, + "grad_norm": 0.6813168525695801, + "learning_rate": 3.3500799999999996e-05, + "loss": 1.7653323364257814, + "step": 247600 + }, + { + "epoch": 33.026666666666664, + "grad_norm": 0.7006181478500366, + "learning_rate": 3.3494133333333335e-05, + "loss": 1.7744679260253906, + "step": 247700 + }, + { + "epoch": 33.04, + "grad_norm": 0.6603790521621704, + "learning_rate": 3.348746666666667e-05, + "loss": 1.7725636291503906, + "step": 247800 + }, + { + "epoch": 33.053333333333335, + "grad_norm": 0.7163404226303101, + "learning_rate": 3.34808e-05, + "loss": 1.7759190368652344, + "step": 247900 + }, + { + "epoch": 33.06666666666667, + "grad_norm": 0.6999438405036926, + "learning_rate": 3.347413333333333e-05, + "loss": 1.779423828125, + "step": 248000 + }, + { + "epoch": 33.08, + "grad_norm": 0.6900789737701416, + "learning_rate": 3.346746666666667e-05, + "loss": 1.777518768310547, + "step": 248100 + }, + { + "epoch": 33.093333333333334, + "grad_norm": 0.6616639494895935, + "learning_rate": 3.346086666666667e-05, + "loss": 1.7815655517578124, + "step": 248200 + }, + { + "epoch": 33.10666666666667, + "grad_norm": 0.6825656890869141, + "learning_rate": 3.34542e-05, + "loss": 1.7781207275390625, + "step": 248300 + }, + { + "epoch": 33.12, + "grad_norm": 0.6620200872421265, + "learning_rate": 3.3447533333333335e-05, + "loss": 1.780341796875, + "step": 248400 + }, + { + "epoch": 33.13333333333333, + "grad_norm": 0.69339919090271, + "learning_rate": 3.3440866666666674e-05, + "loss": 1.7857955932617187, + "step": 248500 + }, + { + "epoch": 33.14666666666667, + "grad_norm": 0.6670458316802979, + "learning_rate": 3.34342e-05, + "loss": 1.782757568359375, + "step": 248600 + }, + { + "epoch": 33.16, + "grad_norm": 0.6833922863006592, + "learning_rate": 3.342753333333333e-05, + "loss": 1.7865505981445313, + "step": 248700 + }, + { + "epoch": 33.17333333333333, + "grad_norm": 0.691870927810669, + "learning_rate": 3.3420866666666664e-05, + "loss": 1.7900071716308594, + "step": 248800 + }, + { + "epoch": 33.18666666666667, + "grad_norm": 0.6759406924247742, + "learning_rate": 3.34142e-05, + "loss": 1.7894091796875, + "step": 248900 + }, + { + "epoch": 33.2, + "grad_norm": 0.6733843684196472, + "learning_rate": 3.3407533333333335e-05, + "loss": 1.789012451171875, + "step": 249000 + }, + { + "epoch": 33.21333333333333, + "grad_norm": 0.6950940489768982, + "learning_rate": 3.340086666666667e-05, + "loss": 1.7880499267578125, + "step": 249100 + }, + { + "epoch": 33.22666666666667, + "grad_norm": 0.7324302792549133, + "learning_rate": 3.3394200000000006e-05, + "loss": 1.7905299377441406, + "step": 249200 + }, + { + "epoch": 33.24, + "grad_norm": 0.6907392144203186, + "learning_rate": 3.338753333333334e-05, + "loss": 1.7943400573730468, + "step": 249300 + }, + { + "epoch": 33.25333333333333, + "grad_norm": 0.7105041742324829, + "learning_rate": 3.3380866666666664e-05, + "loss": 1.7948751831054688, + "step": 249400 + }, + { + "epoch": 33.266666666666666, + "grad_norm": 0.709616482257843, + "learning_rate": 3.33742e-05, + "loss": 1.7902720642089844, + "step": 249500 + }, + { + "epoch": 33.28, + "grad_norm": 0.6986458897590637, + "learning_rate": 3.3367533333333335e-05, + "loss": 1.7960736083984374, + "step": 249600 + }, + { + "epoch": 33.29333333333334, + "grad_norm": 0.6758502125740051, + "learning_rate": 3.336086666666667e-05, + "loss": 1.7959979248046876, + "step": 249700 + }, + { + "epoch": 33.306666666666665, + "grad_norm": 0.6880955100059509, + "learning_rate": 3.33542e-05, + "loss": 1.7931544494628906, + "step": 249800 + }, + { + "epoch": 33.32, + "grad_norm": 0.7262503504753113, + "learning_rate": 3.334753333333334e-05, + "loss": 1.7994598388671874, + "step": 249900 + }, + { + "epoch": 33.333333333333336, + "grad_norm": 0.7109691500663757, + "learning_rate": 3.334086666666667e-05, + "loss": 1.79959716796875, + "step": 250000 + }, + { + "epoch": 33.346666666666664, + "grad_norm": 0.6842638850212097, + "learning_rate": 3.3334200000000003e-05, + "loss": 1.8011337280273438, + "step": 250100 + }, + { + "epoch": 33.36, + "grad_norm": 0.6685046553611755, + "learning_rate": 3.3327533333333336e-05, + "loss": 1.7983401489257813, + "step": 250200 + }, + { + "epoch": 33.373333333333335, + "grad_norm": 0.6885914206504822, + "learning_rate": 3.332086666666667e-05, + "loss": 1.7981385803222656, + "step": 250300 + }, + { + "epoch": 33.38666666666666, + "grad_norm": 0.6753001809120178, + "learning_rate": 3.33142e-05, + "loss": 1.801946258544922, + "step": 250400 + }, + { + "epoch": 33.4, + "grad_norm": 0.7187413573265076, + "learning_rate": 3.330753333333333e-05, + "loss": 1.8074136352539063, + "step": 250500 + }, + { + "epoch": 33.413333333333334, + "grad_norm": 0.6833614706993103, + "learning_rate": 3.330086666666667e-05, + "loss": 1.8049317932128905, + "step": 250600 + }, + { + "epoch": 33.42666666666667, + "grad_norm": 0.7071197032928467, + "learning_rate": 3.3294200000000004e-05, + "loss": 1.806915283203125, + "step": 250700 + }, + { + "epoch": 33.44, + "grad_norm": 0.6831562519073486, + "learning_rate": 3.3287533333333336e-05, + "loss": 1.8139138793945313, + "step": 250800 + }, + { + "epoch": 33.45333333333333, + "grad_norm": 0.6773768663406372, + "learning_rate": 3.328086666666667e-05, + "loss": 1.8078269958496094, + "step": 250900 + }, + { + "epoch": 33.46666666666667, + "grad_norm": 0.7057144045829773, + "learning_rate": 3.32742e-05, + "loss": 1.8035978698730468, + "step": 251000 + }, + { + "epoch": 33.48, + "grad_norm": 0.6799418926239014, + "learning_rate": 3.326753333333333e-05, + "loss": 1.8070053100585937, + "step": 251100 + }, + { + "epoch": 33.49333333333333, + "grad_norm": 0.7026559710502625, + "learning_rate": 3.3260866666666665e-05, + "loss": 1.8107217407226563, + "step": 251200 + }, + { + "epoch": 33.50666666666667, + "grad_norm": 0.7009078860282898, + "learning_rate": 3.3254200000000004e-05, + "loss": 1.8101768493652344, + "step": 251300 + }, + { + "epoch": 33.52, + "grad_norm": 0.6963510513305664, + "learning_rate": 3.3247533333333337e-05, + "loss": 1.8111842346191407, + "step": 251400 + }, + { + "epoch": 33.53333333333333, + "grad_norm": 0.7202256321907043, + "learning_rate": 3.324086666666667e-05, + "loss": 1.8143753051757812, + "step": 251500 + }, + { + "epoch": 33.54666666666667, + "grad_norm": 0.7055407166481018, + "learning_rate": 3.32342e-05, + "loss": 1.809178924560547, + "step": 251600 + }, + { + "epoch": 33.56, + "grad_norm": 0.6829138398170471, + "learning_rate": 3.322753333333333e-05, + "loss": 1.8132537841796874, + "step": 251700 + }, + { + "epoch": 33.57333333333333, + "grad_norm": 0.7111719250679016, + "learning_rate": 3.3220866666666666e-05, + "loss": 1.814945831298828, + "step": 251800 + }, + { + "epoch": 33.586666666666666, + "grad_norm": 0.686894953250885, + "learning_rate": 3.32142e-05, + "loss": 1.8139251708984374, + "step": 251900 + }, + { + "epoch": 33.6, + "grad_norm": 0.717078685760498, + "learning_rate": 3.320753333333334e-05, + "loss": 1.8149430847167969, + "step": 252000 + }, + { + "epoch": 33.61333333333333, + "grad_norm": 0.7175689935684204, + "learning_rate": 3.320086666666667e-05, + "loss": 1.816144256591797, + "step": 252100 + }, + { + "epoch": 33.626666666666665, + "grad_norm": 0.683018684387207, + "learning_rate": 3.319426666666667e-05, + "loss": 1.8191485595703125, + "step": 252200 + }, + { + "epoch": 33.64, + "grad_norm": 0.7148421406745911, + "learning_rate": 3.31876e-05, + "loss": 1.818320770263672, + "step": 252300 + }, + { + "epoch": 33.653333333333336, + "grad_norm": 0.7053855061531067, + "learning_rate": 3.318093333333333e-05, + "loss": 1.8194677734375, + "step": 252400 + }, + { + "epoch": 33.666666666666664, + "grad_norm": 0.7079534530639648, + "learning_rate": 3.317426666666667e-05, + "loss": 1.81727783203125, + "step": 252500 + }, + { + "epoch": 33.68, + "grad_norm": 0.7095150351524353, + "learning_rate": 3.3167600000000004e-05, + "loss": 1.8225425720214843, + "step": 252600 + }, + { + "epoch": 33.693333333333335, + "grad_norm": 0.69334477186203, + "learning_rate": 3.316093333333333e-05, + "loss": 1.8201156616210938, + "step": 252700 + }, + { + "epoch": 33.70666666666666, + "grad_norm": 0.6913406848907471, + "learning_rate": 3.315426666666667e-05, + "loss": 1.8216618347167968, + "step": 252800 + }, + { + "epoch": 33.72, + "grad_norm": 0.7094120979309082, + "learning_rate": 3.31476e-05, + "loss": 1.8205288696289061, + "step": 252900 + }, + { + "epoch": 33.733333333333334, + "grad_norm": 0.7051302790641785, + "learning_rate": 3.314093333333333e-05, + "loss": 1.8198191833496093, + "step": 253000 + }, + { + "epoch": 33.74666666666667, + "grad_norm": 0.7253535985946655, + "learning_rate": 3.313426666666667e-05, + "loss": 1.8211686706542969, + "step": 253100 + }, + { + "epoch": 33.76, + "grad_norm": 0.7110514044761658, + "learning_rate": 3.3127600000000004e-05, + "loss": 1.8267140197753906, + "step": 253200 + }, + { + "epoch": 33.77333333333333, + "grad_norm": 0.7230038046836853, + "learning_rate": 3.312093333333334e-05, + "loss": 1.8259141540527344, + "step": 253300 + }, + { + "epoch": 33.78666666666667, + "grad_norm": 0.6794722080230713, + "learning_rate": 3.311426666666667e-05, + "loss": 1.8242117309570312, + "step": 253400 + }, + { + "epoch": 33.8, + "grad_norm": 0.7026447653770447, + "learning_rate": 3.31076e-05, + "loss": 1.8272193908691405, + "step": 253500 + }, + { + "epoch": 33.81333333333333, + "grad_norm": 0.6905506253242493, + "learning_rate": 3.3100933333333334e-05, + "loss": 1.8256301879882812, + "step": 253600 + }, + { + "epoch": 33.82666666666667, + "grad_norm": 0.7163878679275513, + "learning_rate": 3.3094266666666666e-05, + "loss": 1.8273219299316406, + "step": 253700 + }, + { + "epoch": 33.84, + "grad_norm": 0.7006620764732361, + "learning_rate": 3.3087600000000005e-05, + "loss": 1.8279637145996093, + "step": 253800 + }, + { + "epoch": 33.85333333333333, + "grad_norm": 0.7368113994598389, + "learning_rate": 3.308093333333334e-05, + "loss": 1.8289633178710938, + "step": 253900 + }, + { + "epoch": 33.86666666666667, + "grad_norm": 0.7007164359092712, + "learning_rate": 3.307426666666667e-05, + "loss": 1.8291307067871094, + "step": 254000 + }, + { + "epoch": 33.88, + "grad_norm": 0.6749239563941956, + "learning_rate": 3.30676e-05, + "loss": 1.8294178771972656, + "step": 254100 + }, + { + "epoch": 33.89333333333333, + "grad_norm": 0.6939826011657715, + "learning_rate": 3.3061e-05, + "loss": 1.8320030212402343, + "step": 254200 + }, + { + "epoch": 33.906666666666666, + "grad_norm": 0.6852236390113831, + "learning_rate": 3.305433333333334e-05, + "loss": 1.8298947143554687, + "step": 254300 + }, + { + "epoch": 33.92, + "grad_norm": 0.6890901923179626, + "learning_rate": 3.3047666666666665e-05, + "loss": 1.8333465576171875, + "step": 254400 + }, + { + "epoch": 33.93333333333333, + "grad_norm": 0.6870790719985962, + "learning_rate": 3.3041e-05, + "loss": 1.8343376159667968, + "step": 254500 + }, + { + "epoch": 33.946666666666665, + "grad_norm": 0.6900056004524231, + "learning_rate": 3.3034333333333337e-05, + "loss": 1.8305508422851562, + "step": 254600 + }, + { + "epoch": 33.96, + "grad_norm": 0.725274920463562, + "learning_rate": 3.302766666666667e-05, + "loss": 1.8356878662109375, + "step": 254700 + }, + { + "epoch": 33.973333333333336, + "grad_norm": 0.7070014476776123, + "learning_rate": 3.3021e-05, + "loss": 1.8370289611816406, + "step": 254800 + }, + { + "epoch": 33.986666666666665, + "grad_norm": 0.671153724193573, + "learning_rate": 3.3014333333333333e-05, + "loss": 1.8323648071289063, + "step": 254900 + }, + { + "epoch": 34.0, + "grad_norm": 0.722389280796051, + "learning_rate": 3.300766666666667e-05, + "loss": 1.8307501220703124, + "step": 255000 + }, + { + "epoch": 34.013333333333335, + "grad_norm": 0.6944375038146973, + "learning_rate": 3.3001000000000005e-05, + "loss": 1.7463754272460938, + "step": 255100 + }, + { + "epoch": 34.026666666666664, + "grad_norm": 0.7085298895835876, + "learning_rate": 3.299433333333333e-05, + "loss": 1.7458438110351562, + "step": 255200 + }, + { + "epoch": 34.04, + "grad_norm": 0.7206888794898987, + "learning_rate": 3.298766666666667e-05, + "loss": 1.7499029541015625, + "step": 255300 + }, + { + "epoch": 34.053333333333335, + "grad_norm": 0.7031662464141846, + "learning_rate": 3.2981e-05, + "loss": 1.748662109375, + "step": 255400 + }, + { + "epoch": 34.06666666666667, + "grad_norm": 0.6964542269706726, + "learning_rate": 3.2974333333333334e-05, + "loss": 1.7524285888671876, + "step": 255500 + }, + { + "epoch": 34.08, + "grad_norm": 0.684666097164154, + "learning_rate": 3.2967666666666666e-05, + "loss": 1.7483273315429688, + "step": 255600 + }, + { + "epoch": 34.093333333333334, + "grad_norm": 0.7105111479759216, + "learning_rate": 3.2961000000000005e-05, + "loss": 1.7552597045898437, + "step": 255700 + }, + { + "epoch": 34.10666666666667, + "grad_norm": 0.7125686407089233, + "learning_rate": 3.295433333333334e-05, + "loss": 1.7612779235839844, + "step": 255800 + }, + { + "epoch": 34.12, + "grad_norm": 0.7236320972442627, + "learning_rate": 3.294766666666666e-05, + "loss": 1.7570318603515624, + "step": 255900 + }, + { + "epoch": 34.13333333333333, + "grad_norm": 0.7234290242195129, + "learning_rate": 3.2941e-05, + "loss": 1.7590721130371094, + "step": 256000 + }, + { + "epoch": 34.14666666666667, + "grad_norm": 0.709517776966095, + "learning_rate": 3.2934333333333334e-05, + "loss": 1.7588279724121094, + "step": 256100 + }, + { + "epoch": 34.16, + "grad_norm": 0.7075774669647217, + "learning_rate": 3.292773333333333e-05, + "loss": 1.7636314392089845, + "step": 256200 + }, + { + "epoch": 34.17333333333333, + "grad_norm": 0.685980498790741, + "learning_rate": 3.2921066666666666e-05, + "loss": 1.7642453002929688, + "step": 256300 + }, + { + "epoch": 34.18666666666667, + "grad_norm": 0.6789040565490723, + "learning_rate": 3.29144e-05, + "loss": 1.7647459411621094, + "step": 256400 + }, + { + "epoch": 34.2, + "grad_norm": 0.7118276357650757, + "learning_rate": 3.290773333333334e-05, + "loss": 1.7657359313964844, + "step": 256500 + }, + { + "epoch": 34.21333333333333, + "grad_norm": 0.7182782292366028, + "learning_rate": 3.290106666666667e-05, + "loss": 1.767525634765625, + "step": 256600 + }, + { + "epoch": 34.22666666666667, + "grad_norm": 0.6663193106651306, + "learning_rate": 3.28944e-05, + "loss": 1.7640966796875, + "step": 256700 + }, + { + "epoch": 34.24, + "grad_norm": 0.6728143692016602, + "learning_rate": 3.288773333333334e-05, + "loss": 1.7657148742675781, + "step": 256800 + }, + { + "epoch": 34.25333333333333, + "grad_norm": 0.7225044369697571, + "learning_rate": 3.2881066666666666e-05, + "loss": 1.771612091064453, + "step": 256900 + }, + { + "epoch": 34.266666666666666, + "grad_norm": 0.6851556897163391, + "learning_rate": 3.28744e-05, + "loss": 1.7695832824707032, + "step": 257000 + }, + { + "epoch": 34.28, + "grad_norm": 0.6964775323867798, + "learning_rate": 3.286773333333333e-05, + "loss": 1.7699888610839845, + "step": 257100 + }, + { + "epoch": 34.29333333333334, + "grad_norm": 0.708335280418396, + "learning_rate": 3.286106666666667e-05, + "loss": 1.769803009033203, + "step": 257200 + }, + { + "epoch": 34.306666666666665, + "grad_norm": 0.7314557433128357, + "learning_rate": 3.28544e-05, + "loss": 1.7759251403808594, + "step": 257300 + }, + { + "epoch": 34.32, + "grad_norm": 0.7204164862632751, + "learning_rate": 3.2847733333333334e-05, + "loss": 1.7730311584472656, + "step": 257400 + }, + { + "epoch": 34.333333333333336, + "grad_norm": 0.71314936876297, + "learning_rate": 3.284106666666667e-05, + "loss": 1.7768055725097656, + "step": 257500 + }, + { + "epoch": 34.346666666666664, + "grad_norm": 0.6884594559669495, + "learning_rate": 3.2834400000000005e-05, + "loss": 1.7790744018554687, + "step": 257600 + }, + { + "epoch": 34.36, + "grad_norm": 0.7092511653900146, + "learning_rate": 3.282773333333333e-05, + "loss": 1.7782786560058594, + "step": 257700 + }, + { + "epoch": 34.373333333333335, + "grad_norm": 0.758355438709259, + "learning_rate": 3.282106666666667e-05, + "loss": 1.7751937866210938, + "step": 257800 + }, + { + "epoch": 34.38666666666666, + "grad_norm": 0.7290791869163513, + "learning_rate": 3.28144e-05, + "loss": 1.7803231811523437, + "step": 257900 + }, + { + "epoch": 34.4, + "grad_norm": 0.7067010998725891, + "learning_rate": 3.2807733333333334e-05, + "loss": 1.7779922485351562, + "step": 258000 + }, + { + "epoch": 34.413333333333334, + "grad_norm": 0.7042437791824341, + "learning_rate": 3.280106666666667e-05, + "loss": 1.7828672790527345, + "step": 258100 + }, + { + "epoch": 34.42666666666667, + "grad_norm": 0.7334814667701721, + "learning_rate": 3.2794466666666666e-05, + "loss": 1.7837445068359374, + "step": 258200 + }, + { + "epoch": 34.44, + "grad_norm": 0.6984947919845581, + "learning_rate": 3.2787800000000005e-05, + "loss": 1.7827430725097657, + "step": 258300 + }, + { + "epoch": 34.45333333333333, + "grad_norm": 0.7189805507659912, + "learning_rate": 3.278113333333334e-05, + "loss": 1.7818618774414063, + "step": 258400 + }, + { + "epoch": 34.46666666666667, + "grad_norm": 0.7172175049781799, + "learning_rate": 3.277446666666667e-05, + "loss": 1.786385040283203, + "step": 258500 + }, + { + "epoch": 34.48, + "grad_norm": 0.6976024508476257, + "learning_rate": 3.27678e-05, + "loss": 1.7863441467285157, + "step": 258600 + }, + { + "epoch": 34.49333333333333, + "grad_norm": 0.7336111664772034, + "learning_rate": 3.2761133333333334e-05, + "loss": 1.7882395935058595, + "step": 258700 + }, + { + "epoch": 34.50666666666667, + "grad_norm": 0.7398297190666199, + "learning_rate": 3.2754466666666666e-05, + "loss": 1.7881121826171875, + "step": 258800 + }, + { + "epoch": 34.52, + "grad_norm": 0.7262130379676819, + "learning_rate": 3.27478e-05, + "loss": 1.7835282897949218, + "step": 258900 + }, + { + "epoch": 34.53333333333333, + "grad_norm": 0.7167975306510925, + "learning_rate": 3.274113333333334e-05, + "loss": 1.7948524475097656, + "step": 259000 + }, + { + "epoch": 34.54666666666667, + "grad_norm": 0.7211325764656067, + "learning_rate": 3.273446666666667e-05, + "loss": 1.7875064086914063, + "step": 259100 + }, + { + "epoch": 34.56, + "grad_norm": 0.7152880430221558, + "learning_rate": 3.27278e-05, + "loss": 1.7891029357910155, + "step": 259200 + }, + { + "epoch": 34.57333333333333, + "grad_norm": 0.6966748833656311, + "learning_rate": 3.2721133333333334e-05, + "loss": 1.792362823486328, + "step": 259300 + }, + { + "epoch": 34.586666666666666, + "grad_norm": 0.7045295238494873, + "learning_rate": 3.2714466666666667e-05, + "loss": 1.7886041259765626, + "step": 259400 + }, + { + "epoch": 34.6, + "grad_norm": 0.7518943548202515, + "learning_rate": 3.27078e-05, + "loss": 1.7914320373535155, + "step": 259500 + }, + { + "epoch": 34.61333333333333, + "grad_norm": 0.7086119651794434, + "learning_rate": 3.2701200000000005e-05, + "loss": 1.7893756103515626, + "step": 259600 + }, + { + "epoch": 34.626666666666665, + "grad_norm": 0.7113426923751831, + "learning_rate": 3.269453333333333e-05, + "loss": 1.7912899780273437, + "step": 259700 + }, + { + "epoch": 34.64, + "grad_norm": 0.7117241621017456, + "learning_rate": 3.268786666666667e-05, + "loss": 1.7933538818359376, + "step": 259800 + }, + { + "epoch": 34.653333333333336, + "grad_norm": 0.7044850587844849, + "learning_rate": 3.26812e-05, + "loss": 1.7952735900878907, + "step": 259900 + }, + { + "epoch": 34.666666666666664, + "grad_norm": 0.7023999691009521, + "learning_rate": 3.2674533333333334e-05, + "loss": 1.7962698364257812, + "step": 260000 + }, + { + "epoch": 34.68, + "grad_norm": 0.7212279438972473, + "learning_rate": 3.2667866666666666e-05, + "loss": 1.795453338623047, + "step": 260100 + }, + { + "epoch": 34.693333333333335, + "grad_norm": 0.7294625043869019, + "learning_rate": 3.2661200000000005e-05, + "loss": 1.8032328796386718, + "step": 260200 + }, + { + "epoch": 34.70666666666666, + "grad_norm": 0.7199930548667908, + "learning_rate": 3.265453333333334e-05, + "loss": 1.7969496154785156, + "step": 260300 + }, + { + "epoch": 34.72, + "grad_norm": 0.7424473166465759, + "learning_rate": 3.264786666666666e-05, + "loss": 1.8003564453125, + "step": 260400 + }, + { + "epoch": 34.733333333333334, + "grad_norm": 0.6995416283607483, + "learning_rate": 3.26412e-05, + "loss": 1.8012725830078125, + "step": 260500 + }, + { + "epoch": 34.74666666666667, + "grad_norm": 0.712614893913269, + "learning_rate": 3.2634533333333334e-05, + "loss": 1.79720458984375, + "step": 260600 + }, + { + "epoch": 34.76, + "grad_norm": 0.7090932130813599, + "learning_rate": 3.2627866666666666e-05, + "loss": 1.796382598876953, + "step": 260700 + }, + { + "epoch": 34.77333333333333, + "grad_norm": 0.715495765209198, + "learning_rate": 3.26212e-05, + "loss": 1.8014085388183594, + "step": 260800 + }, + { + "epoch": 34.78666666666667, + "grad_norm": 0.6967054009437561, + "learning_rate": 3.261453333333334e-05, + "loss": 1.8019192504882813, + "step": 260900 + }, + { + "epoch": 34.8, + "grad_norm": 0.7249776124954224, + "learning_rate": 3.260786666666667e-05, + "loss": 1.8009378051757812, + "step": 261000 + }, + { + "epoch": 34.81333333333333, + "grad_norm": 0.7215238213539124, + "learning_rate": 3.26012e-05, + "loss": 1.8022233581542968, + "step": 261100 + }, + { + "epoch": 34.82666666666667, + "grad_norm": 0.6885356903076172, + "learning_rate": 3.2594533333333334e-05, + "loss": 1.8026568603515625, + "step": 261200 + }, + { + "epoch": 34.84, + "grad_norm": 0.732446551322937, + "learning_rate": 3.258786666666667e-05, + "loss": 1.8067509460449218, + "step": 261300 + }, + { + "epoch": 34.85333333333333, + "grad_norm": 0.7237669229507446, + "learning_rate": 3.25812e-05, + "loss": 1.8049159240722656, + "step": 261400 + }, + { + "epoch": 34.86666666666667, + "grad_norm": 0.7220719456672668, + "learning_rate": 3.257453333333334e-05, + "loss": 1.8078208923339845, + "step": 261500 + }, + { + "epoch": 34.88, + "grad_norm": 0.7088682651519775, + "learning_rate": 3.256786666666667e-05, + "loss": 1.8080841064453126, + "step": 261600 + }, + { + "epoch": 34.89333333333333, + "grad_norm": 0.7922437787055969, + "learning_rate": 3.25612e-05, + "loss": 1.8082931518554688, + "step": 261700 + }, + { + "epoch": 34.906666666666666, + "grad_norm": 0.707200825214386, + "learning_rate": 3.25546e-05, + "loss": 1.8050637817382813, + "step": 261800 + }, + { + "epoch": 34.92, + "grad_norm": 0.7059547305107117, + "learning_rate": 3.2547933333333334e-05, + "loss": 1.8101914978027345, + "step": 261900 + }, + { + "epoch": 34.93333333333333, + "grad_norm": 0.7146642804145813, + "learning_rate": 3.254126666666667e-05, + "loss": 1.8113522338867187, + "step": 262000 + }, + { + "epoch": 34.946666666666665, + "grad_norm": 0.7141034603118896, + "learning_rate": 3.2534600000000005e-05, + "loss": 1.8065060424804686, + "step": 262100 + }, + { + "epoch": 34.96, + "grad_norm": 0.7005040645599365, + "learning_rate": 3.252793333333333e-05, + "loss": 1.8118878173828126, + "step": 262200 + }, + { + "epoch": 34.973333333333336, + "grad_norm": 0.6977455019950867, + "learning_rate": 3.252126666666667e-05, + "loss": 1.8072309875488282, + "step": 262300 + }, + { + "epoch": 34.986666666666665, + "grad_norm": 0.7083906531333923, + "learning_rate": 3.25146e-05, + "loss": 1.8132292175292968, + "step": 262400 + }, + { + "epoch": 35.0, + "grad_norm": 0.7053395509719849, + "learning_rate": 3.2507933333333334e-05, + "loss": 1.810267333984375, + "step": 262500 + }, + { + "epoch": 35.013333333333335, + "grad_norm": 0.7179415225982666, + "learning_rate": 3.2501266666666667e-05, + "loss": 1.720147705078125, + "step": 262600 + }, + { + "epoch": 35.026666666666664, + "grad_norm": 0.6983874440193176, + "learning_rate": 3.2494600000000006e-05, + "loss": 1.7274235534667968, + "step": 262700 + }, + { + "epoch": 35.04, + "grad_norm": 0.7099409699440002, + "learning_rate": 3.248793333333334e-05, + "loss": 1.7269102478027343, + "step": 262800 + }, + { + "epoch": 35.053333333333335, + "grad_norm": 0.7118650674819946, + "learning_rate": 3.248126666666667e-05, + "loss": 1.7248257446289061, + "step": 262900 + }, + { + "epoch": 35.06666666666667, + "grad_norm": 0.7239251136779785, + "learning_rate": 3.24746e-05, + "loss": 1.7289593505859375, + "step": 263000 + }, + { + "epoch": 35.08, + "grad_norm": 0.7100144624710083, + "learning_rate": 3.2467933333333335e-05, + "loss": 1.7312472534179688, + "step": 263100 + }, + { + "epoch": 35.093333333333334, + "grad_norm": 0.7234798669815063, + "learning_rate": 3.246126666666667e-05, + "loss": 1.73094970703125, + "step": 263200 + }, + { + "epoch": 35.10666666666667, + "grad_norm": 0.6909958124160767, + "learning_rate": 3.24546e-05, + "loss": 1.736466522216797, + "step": 263300 + }, + { + "epoch": 35.12, + "grad_norm": 0.7305464148521423, + "learning_rate": 3.244793333333334e-05, + "loss": 1.7368101501464843, + "step": 263400 + }, + { + "epoch": 35.13333333333333, + "grad_norm": 0.716325044631958, + "learning_rate": 3.244126666666667e-05, + "loss": 1.7344117736816407, + "step": 263500 + }, + { + "epoch": 35.14666666666667, + "grad_norm": 0.7322099208831787, + "learning_rate": 3.24346e-05, + "loss": 1.7373164367675782, + "step": 263600 + }, + { + "epoch": 35.16, + "grad_norm": 0.7618185877799988, + "learning_rate": 3.2427933333333335e-05, + "loss": 1.7396737670898437, + "step": 263700 + }, + { + "epoch": 35.17333333333333, + "grad_norm": 0.7051612138748169, + "learning_rate": 3.242126666666667e-05, + "loss": 1.7394839477539064, + "step": 263800 + }, + { + "epoch": 35.18666666666667, + "grad_norm": 0.6973703503608704, + "learning_rate": 3.24146e-05, + "loss": 1.7405155944824218, + "step": 263900 + }, + { + "epoch": 35.2, + "grad_norm": 0.7270771265029907, + "learning_rate": 3.240793333333333e-05, + "loss": 1.742344970703125, + "step": 264000 + }, + { + "epoch": 35.21333333333333, + "grad_norm": 0.7269550561904907, + "learning_rate": 3.240126666666667e-05, + "loss": 1.7401051330566406, + "step": 264100 + }, + { + "epoch": 35.22666666666667, + "grad_norm": 0.7064307928085327, + "learning_rate": 3.23946e-05, + "loss": 1.742832489013672, + "step": 264200 + }, + { + "epoch": 35.24, + "grad_norm": 0.6901838779449463, + "learning_rate": 3.2387933333333335e-05, + "loss": 1.7487083435058595, + "step": 264300 + }, + { + "epoch": 35.25333333333333, + "grad_norm": 0.7132669687271118, + "learning_rate": 3.238126666666667e-05, + "loss": 1.7473236083984376, + "step": 264400 + }, + { + "epoch": 35.266666666666666, + "grad_norm": 0.7222061157226562, + "learning_rate": 3.23746e-05, + "loss": 1.7487094116210937, + "step": 264500 + }, + { + "epoch": 35.28, + "grad_norm": 0.7056880593299866, + "learning_rate": 3.236793333333333e-05, + "loss": 1.7457852172851562, + "step": 264600 + }, + { + "epoch": 35.29333333333334, + "grad_norm": 0.7410815954208374, + "learning_rate": 3.2361266666666665e-05, + "loss": 1.7503875732421874, + "step": 264700 + }, + { + "epoch": 35.306666666666665, + "grad_norm": 0.7270119786262512, + "learning_rate": 3.2354600000000004e-05, + "loss": 1.7513735961914063, + "step": 264800 + }, + { + "epoch": 35.32, + "grad_norm": 0.7054768204689026, + "learning_rate": 3.2347933333333336e-05, + "loss": 1.7556321716308594, + "step": 264900 + }, + { + "epoch": 35.333333333333336, + "grad_norm": 0.7149020433425903, + "learning_rate": 3.234126666666667e-05, + "loss": 1.7507872009277343, + "step": 265000 + }, + { + "epoch": 35.346666666666664, + "grad_norm": 0.7018755674362183, + "learning_rate": 3.23346e-05, + "loss": 1.7512226867675782, + "step": 265100 + }, + { + "epoch": 35.36, + "grad_norm": 0.7539740204811096, + "learning_rate": 3.232793333333333e-05, + "loss": 1.751693115234375, + "step": 265200 + }, + { + "epoch": 35.373333333333335, + "grad_norm": 0.7125043869018555, + "learning_rate": 3.2321266666666665e-05, + "loss": 1.751684112548828, + "step": 265300 + }, + { + "epoch": 35.38666666666666, + "grad_norm": 0.7284225821495056, + "learning_rate": 3.23146e-05, + "loss": 1.7530982971191407, + "step": 265400 + }, + { + "epoch": 35.4, + "grad_norm": 0.7372731566429138, + "learning_rate": 3.2307933333333336e-05, + "loss": 1.7575666809082031, + "step": 265500 + }, + { + "epoch": 35.413333333333334, + "grad_norm": 0.7320109009742737, + "learning_rate": 3.230126666666667e-05, + "loss": 1.7619415283203126, + "step": 265600 + }, + { + "epoch": 35.42666666666667, + "grad_norm": 0.715881884098053, + "learning_rate": 3.22946e-05, + "loss": 1.75659912109375, + "step": 265700 + }, + { + "epoch": 35.44, + "grad_norm": 0.7461238503456116, + "learning_rate": 3.2288e-05, + "loss": 1.7591160583496093, + "step": 265800 + }, + { + "epoch": 35.45333333333333, + "grad_norm": 0.751312255859375, + "learning_rate": 3.228133333333334e-05, + "loss": 1.761936492919922, + "step": 265900 + }, + { + "epoch": 35.46666666666667, + "grad_norm": 0.7453945279121399, + "learning_rate": 3.227466666666667e-05, + "loss": 1.7588221740722656, + "step": 266000 + }, + { + "epoch": 35.48, + "grad_norm": 0.7304133176803589, + "learning_rate": 3.2268000000000003e-05, + "loss": 1.7641864013671875, + "step": 266100 + }, + { + "epoch": 35.49333333333333, + "grad_norm": 0.7159408926963806, + "learning_rate": 3.226133333333333e-05, + "loss": 1.763712158203125, + "step": 266200 + }, + { + "epoch": 35.50666666666667, + "grad_norm": 0.7238728404045105, + "learning_rate": 3.225466666666667e-05, + "loss": 1.766953582763672, + "step": 266300 + }, + { + "epoch": 35.52, + "grad_norm": 0.7204245924949646, + "learning_rate": 3.2248e-05, + "loss": 1.7641201782226563, + "step": 266400 + }, + { + "epoch": 35.53333333333333, + "grad_norm": 0.7490574717521667, + "learning_rate": 3.224133333333333e-05, + "loss": 1.7628182983398437, + "step": 266500 + }, + { + "epoch": 35.54666666666667, + "grad_norm": 0.7318447232246399, + "learning_rate": 3.223466666666667e-05, + "loss": 1.768040008544922, + "step": 266600 + }, + { + "epoch": 35.56, + "grad_norm": 0.7002058625221252, + "learning_rate": 3.2228000000000004e-05, + "loss": 1.7642034912109374, + "step": 266700 + }, + { + "epoch": 35.57333333333333, + "grad_norm": 0.7356955409049988, + "learning_rate": 3.2221333333333336e-05, + "loss": 1.765457000732422, + "step": 266800 + }, + { + "epoch": 35.586666666666666, + "grad_norm": 0.7351566553115845, + "learning_rate": 3.2214733333333335e-05, + "loss": 1.7657107543945312, + "step": 266900 + }, + { + "epoch": 35.6, + "grad_norm": 0.7202064394950867, + "learning_rate": 3.220806666666667e-05, + "loss": 1.7705520629882812, + "step": 267000 + }, + { + "epoch": 35.61333333333333, + "grad_norm": 0.7428541779518127, + "learning_rate": 3.2201400000000006e-05, + "loss": 1.769801483154297, + "step": 267100 + }, + { + "epoch": 35.626666666666665, + "grad_norm": 0.7157596349716187, + "learning_rate": 3.219473333333333e-05, + "loss": 1.769151153564453, + "step": 267200 + }, + { + "epoch": 35.64, + "grad_norm": 0.7332503199577332, + "learning_rate": 3.2188066666666664e-05, + "loss": 1.7689814758300781, + "step": 267300 + }, + { + "epoch": 35.653333333333336, + "grad_norm": 0.7052285075187683, + "learning_rate": 3.21814e-05, + "loss": 1.7711866760253907, + "step": 267400 + }, + { + "epoch": 35.666666666666664, + "grad_norm": 0.7430896162986755, + "learning_rate": 3.2174733333333336e-05, + "loss": 1.7715708923339843, + "step": 267500 + }, + { + "epoch": 35.68, + "grad_norm": 0.7421042323112488, + "learning_rate": 3.216806666666667e-05, + "loss": 1.7714950561523437, + "step": 267600 + }, + { + "epoch": 35.693333333333335, + "grad_norm": 0.7241594791412354, + "learning_rate": 3.21614e-05, + "loss": 1.7752314758300782, + "step": 267700 + }, + { + "epoch": 35.70666666666666, + "grad_norm": 0.6929828524589539, + "learning_rate": 3.215473333333334e-05, + "loss": 1.778212127685547, + "step": 267800 + }, + { + "epoch": 35.72, + "grad_norm": 0.7369002103805542, + "learning_rate": 3.214806666666667e-05, + "loss": 1.774071502685547, + "step": 267900 + }, + { + "epoch": 35.733333333333334, + "grad_norm": 0.7390934824943542, + "learning_rate": 3.21414e-05, + "loss": 1.7779090881347657, + "step": 268000 + }, + { + "epoch": 35.74666666666667, + "grad_norm": 0.7036294341087341, + "learning_rate": 3.2134733333333336e-05, + "loss": 1.77925537109375, + "step": 268100 + }, + { + "epoch": 35.76, + "grad_norm": 0.713968813419342, + "learning_rate": 3.212806666666667e-05, + "loss": 1.780936279296875, + "step": 268200 + }, + { + "epoch": 35.77333333333333, + "grad_norm": 0.7476961612701416, + "learning_rate": 3.21214e-05, + "loss": 1.7815696716308593, + "step": 268300 + }, + { + "epoch": 35.78666666666667, + "grad_norm": 0.7531934380531311, + "learning_rate": 3.211473333333333e-05, + "loss": 1.778701171875, + "step": 268400 + }, + { + "epoch": 35.8, + "grad_norm": 0.7263785600662231, + "learning_rate": 3.210806666666667e-05, + "loss": 1.7831895446777344, + "step": 268500 + }, + { + "epoch": 35.81333333333333, + "grad_norm": 0.7144677042961121, + "learning_rate": 3.2101400000000004e-05, + "loss": 1.7823295593261719, + "step": 268600 + }, + { + "epoch": 35.82666666666667, + "grad_norm": 0.7361660003662109, + "learning_rate": 3.209473333333333e-05, + "loss": 1.7813780212402344, + "step": 268700 + }, + { + "epoch": 35.84, + "grad_norm": 0.7294068932533264, + "learning_rate": 3.208806666666667e-05, + "loss": 1.776859588623047, + "step": 268800 + }, + { + "epoch": 35.85333333333333, + "grad_norm": 0.7189229726791382, + "learning_rate": 3.20814e-05, + "loss": 1.7815873718261719, + "step": 268900 + }, + { + "epoch": 35.86666666666667, + "grad_norm": 0.7154908180236816, + "learning_rate": 3.207473333333333e-05, + "loss": 1.7768629455566407, + "step": 269000 + }, + { + "epoch": 35.88, + "grad_norm": 0.7369889616966248, + "learning_rate": 3.2068066666666665e-05, + "loss": 1.7820993041992188, + "step": 269100 + }, + { + "epoch": 35.89333333333333, + "grad_norm": 0.7437416911125183, + "learning_rate": 3.2061400000000004e-05, + "loss": 1.7829997253417968, + "step": 269200 + }, + { + "epoch": 35.906666666666666, + "grad_norm": 0.6980392336845398, + "learning_rate": 3.2054800000000004e-05, + "loss": 1.788327178955078, + "step": 269300 + }, + { + "epoch": 35.92, + "grad_norm": 0.7489062547683716, + "learning_rate": 3.2048133333333336e-05, + "loss": 1.784275360107422, + "step": 269400 + }, + { + "epoch": 35.93333333333333, + "grad_norm": 0.7697765827178955, + "learning_rate": 3.204146666666667e-05, + "loss": 1.7840049743652344, + "step": 269500 + }, + { + "epoch": 35.946666666666665, + "grad_norm": 0.7413792014122009, + "learning_rate": 3.20348e-05, + "loss": 1.7808065795898438, + "step": 269600 + }, + { + "epoch": 35.96, + "grad_norm": 0.7363737225532532, + "learning_rate": 3.202813333333333e-05, + "loss": 1.7876707458496093, + "step": 269700 + }, + { + "epoch": 35.973333333333336, + "grad_norm": 0.7427986860275269, + "learning_rate": 3.2021466666666665e-05, + "loss": 1.786104736328125, + "step": 269800 + }, + { + "epoch": 35.986666666666665, + "grad_norm": 0.7256585359573364, + "learning_rate": 3.20148e-05, + "loss": 1.7870755004882812, + "step": 269900 + }, + { + "epoch": 36.0, + "grad_norm": 0.7233152389526367, + "learning_rate": 3.2008133333333336e-05, + "loss": 1.78588623046875, + "step": 270000 + }, + { + "epoch": 36.013333333333335, + "grad_norm": 0.711797833442688, + "learning_rate": 3.200146666666667e-05, + "loss": 1.7004847717285156, + "step": 270100 + }, + { + "epoch": 36.026666666666664, + "grad_norm": 0.7260730862617493, + "learning_rate": 3.19948e-05, + "loss": 1.701490478515625, + "step": 270200 + }, + { + "epoch": 36.04, + "grad_norm": 0.7351646423339844, + "learning_rate": 3.198813333333334e-05, + "loss": 1.70460205078125, + "step": 270300 + }, + { + "epoch": 36.053333333333335, + "grad_norm": 0.7190471291542053, + "learning_rate": 3.198146666666667e-05, + "loss": 1.6980458068847657, + "step": 270400 + }, + { + "epoch": 36.06666666666667, + "grad_norm": 0.7336345911026001, + "learning_rate": 3.19748e-05, + "loss": 1.707018585205078, + "step": 270500 + }, + { + "epoch": 36.08, + "grad_norm": 0.7053529024124146, + "learning_rate": 3.1968133333333337e-05, + "loss": 1.7060832214355468, + "step": 270600 + }, + { + "epoch": 36.093333333333334, + "grad_norm": 0.723622739315033, + "learning_rate": 3.196146666666667e-05, + "loss": 1.7135696411132812, + "step": 270700 + }, + { + "epoch": 36.10666666666667, + "grad_norm": 0.6846678853034973, + "learning_rate": 3.19548e-05, + "loss": 1.7092733764648438, + "step": 270800 + }, + { + "epoch": 36.12, + "grad_norm": 0.7483423352241516, + "learning_rate": 3.194813333333333e-05, + "loss": 1.7153257751464843, + "step": 270900 + }, + { + "epoch": 36.13333333333333, + "grad_norm": 0.7453268766403198, + "learning_rate": 3.194146666666667e-05, + "loss": 1.7127186584472656, + "step": 271000 + }, + { + "epoch": 36.14666666666667, + "grad_norm": 0.7087700963020325, + "learning_rate": 3.1934800000000005e-05, + "loss": 1.7130256652832032, + "step": 271100 + }, + { + "epoch": 36.16, + "grad_norm": 0.7314236164093018, + "learning_rate": 3.192813333333333e-05, + "loss": 1.7165345764160156, + "step": 271200 + }, + { + "epoch": 36.17333333333333, + "grad_norm": 0.7344350218772888, + "learning_rate": 3.192146666666667e-05, + "loss": 1.7190016174316407, + "step": 271300 + }, + { + "epoch": 36.18666666666667, + "grad_norm": 0.7444190979003906, + "learning_rate": 3.19148e-05, + "loss": 1.7203594970703124, + "step": 271400 + }, + { + "epoch": 36.2, + "grad_norm": 0.7286201119422913, + "learning_rate": 3.1908133333333334e-05, + "loss": 1.7190869140625, + "step": 271500 + }, + { + "epoch": 36.21333333333333, + "grad_norm": 0.7416961789131165, + "learning_rate": 3.1901466666666666e-05, + "loss": 1.7250083923339843, + "step": 271600 + }, + { + "epoch": 36.22666666666667, + "grad_norm": 0.7191265225410461, + "learning_rate": 3.1894800000000005e-05, + "loss": 1.7248774719238282, + "step": 271700 + }, + { + "epoch": 36.24, + "grad_norm": 0.7464678287506104, + "learning_rate": 3.188813333333334e-05, + "loss": 1.7244654846191407, + "step": 271800 + }, + { + "epoch": 36.25333333333333, + "grad_norm": 0.741040050983429, + "learning_rate": 3.188146666666667e-05, + "loss": 1.7217869567871094, + "step": 271900 + }, + { + "epoch": 36.266666666666666, + "grad_norm": 0.7492501735687256, + "learning_rate": 3.18748e-05, + "loss": 1.7232154846191405, + "step": 272000 + }, + { + "epoch": 36.28, + "grad_norm": 0.7506824135780334, + "learning_rate": 3.1868133333333334e-05, + "loss": 1.72467529296875, + "step": 272100 + }, + { + "epoch": 36.29333333333334, + "grad_norm": 0.7682024836540222, + "learning_rate": 3.1861466666666666e-05, + "loss": 1.7257017517089843, + "step": 272200 + }, + { + "epoch": 36.306666666666665, + "grad_norm": 0.7348060011863708, + "learning_rate": 3.18548e-05, + "loss": 1.7308767700195313, + "step": 272300 + }, + { + "epoch": 36.32, + "grad_norm": 0.7420241236686707, + "learning_rate": 3.184813333333334e-05, + "loss": 1.7316539001464843, + "step": 272400 + }, + { + "epoch": 36.333333333333336, + "grad_norm": 0.7520580291748047, + "learning_rate": 3.184146666666667e-05, + "loss": 1.7281611633300782, + "step": 272500 + }, + { + "epoch": 36.346666666666664, + "grad_norm": 0.7573596835136414, + "learning_rate": 3.18348e-05, + "loss": 1.731063995361328, + "step": 272600 + }, + { + "epoch": 36.36, + "grad_norm": 0.725255012512207, + "learning_rate": 3.1828133333333335e-05, + "loss": 1.7307705688476562, + "step": 272700 + }, + { + "epoch": 36.373333333333335, + "grad_norm": 0.7543401122093201, + "learning_rate": 3.182146666666667e-05, + "loss": 1.7375082397460937, + "step": 272800 + }, + { + "epoch": 36.38666666666666, + "grad_norm": 0.7458380460739136, + "learning_rate": 3.18148e-05, + "loss": 1.7346005249023437, + "step": 272900 + }, + { + "epoch": 36.4, + "grad_norm": 0.7144700884819031, + "learning_rate": 3.18082e-05, + "loss": 1.7303981018066406, + "step": 273000 + }, + { + "epoch": 36.413333333333334, + "grad_norm": 0.7560714483261108, + "learning_rate": 3.180153333333333e-05, + "loss": 1.7310597229003906, + "step": 273100 + }, + { + "epoch": 36.42666666666667, + "grad_norm": 0.7326061129570007, + "learning_rate": 3.179486666666667e-05, + "loss": 1.7362249755859376, + "step": 273200 + }, + { + "epoch": 36.44, + "grad_norm": 0.7293363809585571, + "learning_rate": 3.17882e-05, + "loss": 1.7362820434570312, + "step": 273300 + }, + { + "epoch": 36.45333333333333, + "grad_norm": 0.7394217252731323, + "learning_rate": 3.1781533333333334e-05, + "loss": 1.7399252319335938, + "step": 273400 + }, + { + "epoch": 36.46666666666667, + "grad_norm": 0.742487907409668, + "learning_rate": 3.1774866666666666e-05, + "loss": 1.7383834838867187, + "step": 273500 + }, + { + "epoch": 36.48, + "grad_norm": 0.7589447498321533, + "learning_rate": 3.1768200000000005e-05, + "loss": 1.7370097351074218, + "step": 273600 + }, + { + "epoch": 36.49333333333333, + "grad_norm": 0.7348843812942505, + "learning_rate": 3.176153333333334e-05, + "loss": 1.7422178649902345, + "step": 273700 + }, + { + "epoch": 36.50666666666667, + "grad_norm": 0.7847718000411987, + "learning_rate": 3.175486666666666e-05, + "loss": 1.736515350341797, + "step": 273800 + }, + { + "epoch": 36.52, + "grad_norm": 0.7392397522926331, + "learning_rate": 3.17482e-05, + "loss": 1.7417140197753906, + "step": 273900 + }, + { + "epoch": 36.53333333333333, + "grad_norm": 0.6962413787841797, + "learning_rate": 3.1741533333333334e-05, + "loss": 1.741837921142578, + "step": 274000 + }, + { + "epoch": 36.54666666666667, + "grad_norm": 0.7503619194030762, + "learning_rate": 3.173486666666667e-05, + "loss": 1.741531982421875, + "step": 274100 + }, + { + "epoch": 36.56, + "grad_norm": 0.7087076902389526, + "learning_rate": 3.1728200000000006e-05, + "loss": 1.7447845458984375, + "step": 274200 + }, + { + "epoch": 36.57333333333333, + "grad_norm": 0.7223750352859497, + "learning_rate": 3.172153333333334e-05, + "loss": 1.7459292602539063, + "step": 274300 + }, + { + "epoch": 36.586666666666666, + "grad_norm": 0.7215844392776489, + "learning_rate": 3.171486666666667e-05, + "loss": 1.7434147644042968, + "step": 274400 + }, + { + "epoch": 36.6, + "grad_norm": 0.7404847145080566, + "learning_rate": 3.1708199999999996e-05, + "loss": 1.749951171875, + "step": 274500 + }, + { + "epoch": 36.61333333333333, + "grad_norm": 0.7521648406982422, + "learning_rate": 3.1701533333333335e-05, + "loss": 1.7496371459960938, + "step": 274600 + }, + { + "epoch": 36.626666666666665, + "grad_norm": 0.7401891946792603, + "learning_rate": 3.169486666666667e-05, + "loss": 1.7497813415527343, + "step": 274700 + }, + { + "epoch": 36.64, + "grad_norm": 0.7280316948890686, + "learning_rate": 3.16882e-05, + "loss": 1.7507594299316407, + "step": 274800 + }, + { + "epoch": 36.653333333333336, + "grad_norm": 0.7239392995834351, + "learning_rate": 3.168153333333334e-05, + "loss": 1.7507579040527343, + "step": 274900 + }, + { + "epoch": 36.666666666666664, + "grad_norm": 0.7553678750991821, + "learning_rate": 3.167486666666667e-05, + "loss": 1.751461181640625, + "step": 275000 + }, + { + "epoch": 36.68, + "grad_norm": 0.7435064911842346, + "learning_rate": 3.16682e-05, + "loss": 1.7519636535644532, + "step": 275100 + }, + { + "epoch": 36.693333333333335, + "grad_norm": 0.7470516562461853, + "learning_rate": 3.1661533333333335e-05, + "loss": 1.7504707336425782, + "step": 275200 + }, + { + "epoch": 36.70666666666666, + "grad_norm": 0.74057537317276, + "learning_rate": 3.165486666666667e-05, + "loss": 1.7527505493164062, + "step": 275300 + }, + { + "epoch": 36.72, + "grad_norm": 0.7247684597969055, + "learning_rate": 3.16482e-05, + "loss": 1.7530410766601563, + "step": 275400 + }, + { + "epoch": 36.733333333333334, + "grad_norm": 0.7498241662979126, + "learning_rate": 3.16416e-05, + "loss": 1.7541891479492187, + "step": 275500 + }, + { + "epoch": 36.74666666666667, + "grad_norm": 0.7495251297950745, + "learning_rate": 3.163493333333333e-05, + "loss": 1.7568766784667968, + "step": 275600 + }, + { + "epoch": 36.76, + "grad_norm": 0.7617773413658142, + "learning_rate": 3.162826666666667e-05, + "loss": 1.7529084777832031, + "step": 275700 + }, + { + "epoch": 36.77333333333333, + "grad_norm": 0.7428836226463318, + "learning_rate": 3.16216e-05, + "loss": 1.7551524353027343, + "step": 275800 + }, + { + "epoch": 36.78666666666667, + "grad_norm": 0.7389662265777588, + "learning_rate": 3.1614933333333335e-05, + "loss": 1.7577822875976563, + "step": 275900 + }, + { + "epoch": 36.8, + "grad_norm": 0.743245542049408, + "learning_rate": 3.160826666666667e-05, + "loss": 1.75811279296875, + "step": 276000 + }, + { + "epoch": 36.81333333333333, + "grad_norm": 0.7568553686141968, + "learning_rate": 3.1601600000000006e-05, + "loss": 1.7519479370117188, + "step": 276100 + }, + { + "epoch": 36.82666666666667, + "grad_norm": 0.7454259991645813, + "learning_rate": 3.159493333333334e-05, + "loss": 1.7604170227050782, + "step": 276200 + }, + { + "epoch": 36.84, + "grad_norm": 0.7492554187774658, + "learning_rate": 3.1588266666666664e-05, + "loss": 1.7641816711425782, + "step": 276300 + }, + { + "epoch": 36.85333333333333, + "grad_norm": 0.7113311290740967, + "learning_rate": 3.15816e-05, + "loss": 1.7588400268554687, + "step": 276400 + }, + { + "epoch": 36.86666666666667, + "grad_norm": 0.764880359172821, + "learning_rate": 3.1574933333333335e-05, + "loss": 1.7627790832519532, + "step": 276500 + }, + { + "epoch": 36.88, + "grad_norm": 0.7248684167861938, + "learning_rate": 3.156826666666667e-05, + "loss": 1.7612380981445312, + "step": 276600 + }, + { + "epoch": 36.89333333333333, + "grad_norm": 0.7168259024620056, + "learning_rate": 3.15616e-05, + "loss": 1.7612693786621094, + "step": 276700 + }, + { + "epoch": 36.906666666666666, + "grad_norm": 0.7467043995857239, + "learning_rate": 3.155493333333334e-05, + "loss": 1.7591070556640624, + "step": 276800 + }, + { + "epoch": 36.92, + "grad_norm": 0.7475593686103821, + "learning_rate": 3.154826666666667e-05, + "loss": 1.7618537902832032, + "step": 276900 + }, + { + "epoch": 36.93333333333333, + "grad_norm": 0.7402468323707581, + "learning_rate": 3.1541599999999996e-05, + "loss": 1.7640028381347657, + "step": 277000 + }, + { + "epoch": 36.946666666666665, + "grad_norm": 0.7494368553161621, + "learning_rate": 3.1534933333333335e-05, + "loss": 1.7653765869140625, + "step": 277100 + }, + { + "epoch": 36.96, + "grad_norm": 0.7230552434921265, + "learning_rate": 3.152826666666667e-05, + "loss": 1.7666098022460937, + "step": 277200 + }, + { + "epoch": 36.973333333333336, + "grad_norm": 0.7665003538131714, + "learning_rate": 3.15216e-05, + "loss": 1.765568084716797, + "step": 277300 + }, + { + "epoch": 36.986666666666665, + "grad_norm": 0.7451346516609192, + "learning_rate": 3.151493333333333e-05, + "loss": 1.7677928161621095, + "step": 277400 + }, + { + "epoch": 37.0, + "grad_norm": 0.76631760597229, + "learning_rate": 3.150833333333333e-05, + "loss": 1.7689274597167968, + "step": 277500 + }, + { + "epoch": 37.013333333333335, + "grad_norm": 0.7045518755912781, + "learning_rate": 3.150166666666667e-05, + "loss": 1.6803143310546875, + "step": 277600 + }, + { + "epoch": 37.026666666666664, + "grad_norm": 0.7285835146903992, + "learning_rate": 3.1495e-05, + "loss": 1.6813021850585939, + "step": 277700 + }, + { + "epoch": 37.04, + "grad_norm": 0.7426738739013672, + "learning_rate": 3.1488333333333335e-05, + "loss": 1.681758270263672, + "step": 277800 + }, + { + "epoch": 37.053333333333335, + "grad_norm": 0.7622446417808533, + "learning_rate": 3.148166666666667e-05, + "loss": 1.6819073486328124, + "step": 277900 + }, + { + "epoch": 37.06666666666667, + "grad_norm": 0.7410486340522766, + "learning_rate": 3.1475e-05, + "loss": 1.6838929748535156, + "step": 278000 + }, + { + "epoch": 37.08, + "grad_norm": 0.7304770946502686, + "learning_rate": 3.146833333333333e-05, + "loss": 1.6852511596679687, + "step": 278100 + }, + { + "epoch": 37.093333333333334, + "grad_norm": 0.7022737264633179, + "learning_rate": 3.1461666666666664e-05, + "loss": 1.6852027893066406, + "step": 278200 + }, + { + "epoch": 37.10666666666667, + "grad_norm": 0.7408353686332703, + "learning_rate": 3.1455e-05, + "loss": 1.688455810546875, + "step": 278300 + }, + { + "epoch": 37.12, + "grad_norm": 0.7150797843933105, + "learning_rate": 3.1448333333333335e-05, + "loss": 1.6884025573730468, + "step": 278400 + }, + { + "epoch": 37.13333333333333, + "grad_norm": 0.7726892828941345, + "learning_rate": 3.144166666666667e-05, + "loss": 1.6898381042480468, + "step": 278500 + }, + { + "epoch": 37.14666666666667, + "grad_norm": 0.7211053371429443, + "learning_rate": 3.1435000000000007e-05, + "loss": 1.6924490356445312, + "step": 278600 + }, + { + "epoch": 37.16, + "grad_norm": 0.7419326305389404, + "learning_rate": 3.142833333333334e-05, + "loss": 1.689315643310547, + "step": 278700 + }, + { + "epoch": 37.17333333333333, + "grad_norm": 0.7313926219940186, + "learning_rate": 3.1421666666666664e-05, + "loss": 1.6908987426757813, + "step": 278800 + }, + { + "epoch": 37.18666666666667, + "grad_norm": 0.7286278605461121, + "learning_rate": 3.1415e-05, + "loss": 1.6980317687988282, + "step": 278900 + }, + { + "epoch": 37.2, + "grad_norm": 0.7605856657028198, + "learning_rate": 3.1408333333333336e-05, + "loss": 1.696996307373047, + "step": 279000 + }, + { + "epoch": 37.21333333333333, + "grad_norm": 0.7458546757698059, + "learning_rate": 3.140166666666667e-05, + "loss": 1.6983421325683594, + "step": 279100 + }, + { + "epoch": 37.22666666666667, + "grad_norm": 0.7429274916648865, + "learning_rate": 3.1395e-05, + "loss": 1.7024613952636718, + "step": 279200 + }, + { + "epoch": 37.24, + "grad_norm": 0.7884694337844849, + "learning_rate": 3.138833333333334e-05, + "loss": 1.7007711791992188, + "step": 279300 + }, + { + "epoch": 37.25333333333333, + "grad_norm": 0.7464330792427063, + "learning_rate": 3.138166666666667e-05, + "loss": 1.7008659362792968, + "step": 279400 + }, + { + "epoch": 37.266666666666666, + "grad_norm": 0.728084921836853, + "learning_rate": 3.1375e-05, + "loss": 1.7043988037109374, + "step": 279500 + }, + { + "epoch": 37.28, + "grad_norm": 0.7497456669807434, + "learning_rate": 3.13684e-05, + "loss": 1.7014207458496093, + "step": 279600 + }, + { + "epoch": 37.29333333333334, + "grad_norm": 0.7020012140274048, + "learning_rate": 3.1361733333333335e-05, + "loss": 1.7052900695800781, + "step": 279700 + }, + { + "epoch": 37.306666666666665, + "grad_norm": 0.739156186580658, + "learning_rate": 3.135506666666667e-05, + "loss": 1.703553466796875, + "step": 279800 + }, + { + "epoch": 37.32, + "grad_norm": 0.7595281600952148, + "learning_rate": 3.13484e-05, + "loss": 1.7069859313964844, + "step": 279900 + }, + { + "epoch": 37.333333333333336, + "grad_norm": 0.75346440076828, + "learning_rate": 3.134173333333333e-05, + "loss": 1.7072439575195313, + "step": 280000 + }, + { + "epoch": 37.346666666666664, + "grad_norm": 0.7546751499176025, + "learning_rate": 3.133506666666667e-05, + "loss": 1.7088861083984375, + "step": 280100 + }, + { + "epoch": 37.36, + "grad_norm": 0.7886497974395752, + "learning_rate": 3.13284e-05, + "loss": 1.7056680297851563, + "step": 280200 + }, + { + "epoch": 37.373333333333335, + "grad_norm": 0.743929922580719, + "learning_rate": 3.1321733333333335e-05, + "loss": 1.7099371337890625, + "step": 280300 + }, + { + "epoch": 37.38666666666666, + "grad_norm": 0.7662741541862488, + "learning_rate": 3.131506666666667e-05, + "loss": 1.7150563049316405, + "step": 280400 + }, + { + "epoch": 37.4, + "grad_norm": 0.72809898853302, + "learning_rate": 3.13084e-05, + "loss": 1.7117857360839843, + "step": 280500 + }, + { + "epoch": 37.413333333333334, + "grad_norm": 0.7383192181587219, + "learning_rate": 3.130173333333333e-05, + "loss": 1.7104786682128905, + "step": 280600 + }, + { + "epoch": 37.42666666666667, + "grad_norm": 0.755443274974823, + "learning_rate": 3.1295066666666664e-05, + "loss": 1.7123095703125, + "step": 280700 + }, + { + "epoch": 37.44, + "grad_norm": 0.7860985994338989, + "learning_rate": 3.1288400000000004e-05, + "loss": 1.7170570373535157, + "step": 280800 + }, + { + "epoch": 37.45333333333333, + "grad_norm": 0.7551179528236389, + "learning_rate": 3.1281733333333336e-05, + "loss": 1.716322021484375, + "step": 280900 + }, + { + "epoch": 37.46666666666667, + "grad_norm": 0.7542992830276489, + "learning_rate": 3.127506666666667e-05, + "loss": 1.714727783203125, + "step": 281000 + }, + { + "epoch": 37.48, + "grad_norm": 0.7533883452415466, + "learning_rate": 3.12684e-05, + "loss": 1.720811309814453, + "step": 281100 + }, + { + "epoch": 37.49333333333333, + "grad_norm": 0.7798376083374023, + "learning_rate": 3.126173333333334e-05, + "loss": 1.7136112976074218, + "step": 281200 + }, + { + "epoch": 37.50666666666667, + "grad_norm": 0.7293563485145569, + "learning_rate": 3.1255066666666665e-05, + "loss": 1.7199661254882812, + "step": 281300 + }, + { + "epoch": 37.52, + "grad_norm": 0.7498854994773865, + "learning_rate": 3.12484e-05, + "loss": 1.7169015502929688, + "step": 281400 + }, + { + "epoch": 37.53333333333333, + "grad_norm": 0.7195653915405273, + "learning_rate": 3.1241733333333336e-05, + "loss": 1.7198953247070312, + "step": 281500 + }, + { + "epoch": 37.54666666666667, + "grad_norm": 0.7342607378959656, + "learning_rate": 3.123506666666667e-05, + "loss": 1.724787139892578, + "step": 281600 + }, + { + "epoch": 37.56, + "grad_norm": 0.7618938684463501, + "learning_rate": 3.122846666666667e-05, + "loss": 1.7263723754882812, + "step": 281700 + }, + { + "epoch": 37.57333333333333, + "grad_norm": 0.73606938123703, + "learning_rate": 3.12218e-05, + "loss": 1.7267738342285157, + "step": 281800 + }, + { + "epoch": 37.586666666666666, + "grad_norm": 0.7361858487129211, + "learning_rate": 3.121513333333333e-05, + "loss": 1.7204446411132812, + "step": 281900 + }, + { + "epoch": 37.6, + "grad_norm": 0.7650215029716492, + "learning_rate": 3.120846666666667e-05, + "loss": 1.722607879638672, + "step": 282000 + }, + { + "epoch": 37.61333333333333, + "grad_norm": 0.7414928078651428, + "learning_rate": 3.12018e-05, + "loss": 1.7260256958007814, + "step": 282100 + }, + { + "epoch": 37.626666666666665, + "grad_norm": 0.7534034252166748, + "learning_rate": 3.1195133333333336e-05, + "loss": 1.726140899658203, + "step": 282200 + }, + { + "epoch": 37.64, + "grad_norm": 0.7416046857833862, + "learning_rate": 3.118846666666667e-05, + "loss": 1.7296353149414063, + "step": 282300 + }, + { + "epoch": 37.653333333333336, + "grad_norm": 0.7440157532691956, + "learning_rate": 3.11818e-05, + "loss": 1.7297128295898438, + "step": 282400 + }, + { + "epoch": 37.666666666666664, + "grad_norm": 0.7524501085281372, + "learning_rate": 3.117513333333333e-05, + "loss": 1.73589599609375, + "step": 282500 + }, + { + "epoch": 37.68, + "grad_norm": 0.757587730884552, + "learning_rate": 3.1168466666666665e-05, + "loss": 1.7298715209960938, + "step": 282600 + }, + { + "epoch": 37.693333333333335, + "grad_norm": 0.7522934675216675, + "learning_rate": 3.1161800000000004e-05, + "loss": 1.7345960998535157, + "step": 282700 + }, + { + "epoch": 37.70666666666666, + "grad_norm": 0.7544682621955872, + "learning_rate": 3.1155133333333336e-05, + "loss": 1.7308802795410156, + "step": 282800 + }, + { + "epoch": 37.72, + "grad_norm": 0.7192630171775818, + "learning_rate": 3.114846666666667e-05, + "loss": 1.7340335083007812, + "step": 282900 + }, + { + "epoch": 37.733333333333334, + "grad_norm": 0.7458509206771851, + "learning_rate": 3.11418e-05, + "loss": 1.734874267578125, + "step": 283000 + }, + { + "epoch": 37.74666666666667, + "grad_norm": 0.7439426779747009, + "learning_rate": 3.113513333333333e-05, + "loss": 1.7350709533691406, + "step": 283100 + }, + { + "epoch": 37.76, + "grad_norm": 0.7385891675949097, + "learning_rate": 3.1128466666666665e-05, + "loss": 1.730778045654297, + "step": 283200 + }, + { + "epoch": 37.77333333333333, + "grad_norm": 0.731911838054657, + "learning_rate": 3.1121800000000004e-05, + "loss": 1.7314964294433595, + "step": 283300 + }, + { + "epoch": 37.78666666666667, + "grad_norm": 0.7846623063087463, + "learning_rate": 3.1115133333333336e-05, + "loss": 1.733455352783203, + "step": 283400 + }, + { + "epoch": 37.8, + "grad_norm": 0.7687591910362244, + "learning_rate": 3.110846666666667e-05, + "loss": 1.7341983032226562, + "step": 283500 + }, + { + "epoch": 37.81333333333333, + "grad_norm": 0.7925374507904053, + "learning_rate": 3.11018e-05, + "loss": 1.7374996948242187, + "step": 283600 + }, + { + "epoch": 37.82666666666667, + "grad_norm": 0.7608065009117126, + "learning_rate": 3.109513333333334e-05, + "loss": 1.7386874389648437, + "step": 283700 + }, + { + "epoch": 37.84, + "grad_norm": 0.7788674235343933, + "learning_rate": 3.1088466666666665e-05, + "loss": 1.742396697998047, + "step": 283800 + }, + { + "epoch": 37.85333333333333, + "grad_norm": 0.7511487007141113, + "learning_rate": 3.10818e-05, + "loss": 1.7363363647460937, + "step": 283900 + }, + { + "epoch": 37.86666666666667, + "grad_norm": 0.7553167939186096, + "learning_rate": 3.107513333333334e-05, + "loss": 1.7385067749023437, + "step": 284000 + }, + { + "epoch": 37.88, + "grad_norm": 0.7409266233444214, + "learning_rate": 3.106846666666667e-05, + "loss": 1.7398283386230469, + "step": 284100 + }, + { + "epoch": 37.89333333333333, + "grad_norm": 0.7326803207397461, + "learning_rate": 3.10618e-05, + "loss": 1.738975067138672, + "step": 284200 + }, + { + "epoch": 37.906666666666666, + "grad_norm": 0.7426642179489136, + "learning_rate": 3.1055133333333334e-05, + "loss": 1.741965789794922, + "step": 284300 + }, + { + "epoch": 37.92, + "grad_norm": 0.7844317555427551, + "learning_rate": 3.104846666666667e-05, + "loss": 1.740626220703125, + "step": 284400 + }, + { + "epoch": 37.93333333333333, + "grad_norm": 0.7489057183265686, + "learning_rate": 3.1041800000000005e-05, + "loss": 1.7419303894042968, + "step": 284500 + }, + { + "epoch": 37.946666666666665, + "grad_norm": 0.766936719417572, + "learning_rate": 3.1035200000000004e-05, + "loss": 1.7452520751953124, + "step": 284600 + }, + { + "epoch": 37.96, + "grad_norm": 0.7706231474876404, + "learning_rate": 3.1028533333333336e-05, + "loss": 1.744236602783203, + "step": 284700 + }, + { + "epoch": 37.973333333333336, + "grad_norm": 0.7537173628807068, + "learning_rate": 3.102186666666667e-05, + "loss": 1.7478404235839844, + "step": 284800 + }, + { + "epoch": 37.986666666666665, + "grad_norm": 0.7413330078125, + "learning_rate": 3.10152e-05, + "loss": 1.7494500732421876, + "step": 284900 + }, + { + "epoch": 38.0, + "grad_norm": 0.7850656509399414, + "learning_rate": 3.100853333333333e-05, + "loss": 1.750704803466797, + "step": 285000 + }, + { + "epoch": 38.013333333333335, + "grad_norm": 0.7259971499443054, + "learning_rate": 3.1001866666666665e-05, + "loss": 1.6590287780761719, + "step": 285100 + }, + { + "epoch": 38.026666666666664, + "grad_norm": 0.746416449546814, + "learning_rate": 3.0995200000000004e-05, + "loss": 1.6625711059570312, + "step": 285200 + }, + { + "epoch": 38.04, + "grad_norm": 0.7898942232131958, + "learning_rate": 3.098853333333334e-05, + "loss": 1.6607310485839843, + "step": 285300 + }, + { + "epoch": 38.053333333333335, + "grad_norm": 0.7729313969612122, + "learning_rate": 3.098186666666667e-05, + "loss": 1.662105255126953, + "step": 285400 + }, + { + "epoch": 38.06666666666667, + "grad_norm": 0.7406087517738342, + "learning_rate": 3.09752e-05, + "loss": 1.6623809814453125, + "step": 285500 + }, + { + "epoch": 38.08, + "grad_norm": 0.7400987148284912, + "learning_rate": 3.0968533333333333e-05, + "loss": 1.6635809326171875, + "step": 285600 + }, + { + "epoch": 38.093333333333334, + "grad_norm": 0.7489773035049438, + "learning_rate": 3.0961866666666666e-05, + "loss": 1.6699810791015626, + "step": 285700 + }, + { + "epoch": 38.10666666666667, + "grad_norm": 0.7790253162384033, + "learning_rate": 3.09552e-05, + "loss": 1.669601287841797, + "step": 285800 + }, + { + "epoch": 38.12, + "grad_norm": 0.7665462493896484, + "learning_rate": 3.094853333333334e-05, + "loss": 1.6737181091308593, + "step": 285900 + }, + { + "epoch": 38.13333333333333, + "grad_norm": 0.7243815064430237, + "learning_rate": 3.094186666666667e-05, + "loss": 1.6687673950195312, + "step": 286000 + }, + { + "epoch": 38.14666666666667, + "grad_norm": 0.7670396566390991, + "learning_rate": 3.09352e-05, + "loss": 1.6730580139160156, + "step": 286100 + }, + { + "epoch": 38.16, + "grad_norm": 0.7733235359191895, + "learning_rate": 3.0928533333333334e-05, + "loss": 1.6757229614257811, + "step": 286200 + }, + { + "epoch": 38.17333333333333, + "grad_norm": 0.7491257190704346, + "learning_rate": 3.0921866666666666e-05, + "loss": 1.669895477294922, + "step": 286300 + }, + { + "epoch": 38.18666666666667, + "grad_norm": 0.7852340340614319, + "learning_rate": 3.09152e-05, + "loss": 1.6757810974121095, + "step": 286400 + }, + { + "epoch": 38.2, + "grad_norm": 0.7656257152557373, + "learning_rate": 3.090853333333333e-05, + "loss": 1.6795205688476562, + "step": 286500 + }, + { + "epoch": 38.21333333333333, + "grad_norm": 0.7430424094200134, + "learning_rate": 3.090186666666667e-05, + "loss": 1.6734898376464844, + "step": 286600 + }, + { + "epoch": 38.22666666666667, + "grad_norm": 0.7725613117218018, + "learning_rate": 3.089526666666667e-05, + "loss": 1.6736170959472656, + "step": 286700 + }, + { + "epoch": 38.24, + "grad_norm": 0.7913093566894531, + "learning_rate": 3.08886e-05, + "loss": 1.6843594360351561, + "step": 286800 + }, + { + "epoch": 38.25333333333333, + "grad_norm": 0.7620664238929749, + "learning_rate": 3.088193333333333e-05, + "loss": 1.6822517395019532, + "step": 286900 + }, + { + "epoch": 38.266666666666666, + "grad_norm": 0.8010652661323547, + "learning_rate": 3.087526666666667e-05, + "loss": 1.682193603515625, + "step": 287000 + }, + { + "epoch": 38.28, + "grad_norm": 0.7800931334495544, + "learning_rate": 3.0868600000000005e-05, + "loss": 1.68789794921875, + "step": 287100 + }, + { + "epoch": 38.29333333333334, + "grad_norm": 0.7320764064788818, + "learning_rate": 3.086193333333334e-05, + "loss": 1.677606201171875, + "step": 287200 + }, + { + "epoch": 38.306666666666665, + "grad_norm": 0.7963472604751587, + "learning_rate": 3.085526666666666e-05, + "loss": 1.6835293579101562, + "step": 287300 + }, + { + "epoch": 38.32, + "grad_norm": 0.7579801678657532, + "learning_rate": 3.08486e-05, + "loss": 1.6827491760253905, + "step": 287400 + }, + { + "epoch": 38.333333333333336, + "grad_norm": 0.7616518139839172, + "learning_rate": 3.0841933333333334e-05, + "loss": 1.689130859375, + "step": 287500 + }, + { + "epoch": 38.346666666666664, + "grad_norm": 0.7492512464523315, + "learning_rate": 3.0835266666666666e-05, + "loss": 1.6856808471679687, + "step": 287600 + }, + { + "epoch": 38.36, + "grad_norm": 0.7573805451393127, + "learning_rate": 3.0828600000000005e-05, + "loss": 1.690630645751953, + "step": 287700 + }, + { + "epoch": 38.373333333333335, + "grad_norm": 0.7447465062141418, + "learning_rate": 3.082193333333334e-05, + "loss": 1.689488525390625, + "step": 287800 + }, + { + "epoch": 38.38666666666666, + "grad_norm": 0.7608117461204529, + "learning_rate": 3.081526666666667e-05, + "loss": 1.6932475280761718, + "step": 287900 + }, + { + "epoch": 38.4, + "grad_norm": 0.7536253333091736, + "learning_rate": 3.08086e-05, + "loss": 1.6915469360351563, + "step": 288000 + }, + { + "epoch": 38.413333333333334, + "grad_norm": 0.754641056060791, + "learning_rate": 3.0801933333333334e-05, + "loss": 1.6956082153320313, + "step": 288100 + }, + { + "epoch": 38.42666666666667, + "grad_norm": 0.7657079696655273, + "learning_rate": 3.0795266666666666e-05, + "loss": 1.6968582153320313, + "step": 288200 + }, + { + "epoch": 38.44, + "grad_norm": 0.7657183408737183, + "learning_rate": 3.07886e-05, + "loss": 1.696566619873047, + "step": 288300 + }, + { + "epoch": 38.45333333333333, + "grad_norm": 0.7208789587020874, + "learning_rate": 3.078193333333334e-05, + "loss": 1.692105255126953, + "step": 288400 + }, + { + "epoch": 38.46666666666667, + "grad_norm": 0.774307906627655, + "learning_rate": 3.077526666666667e-05, + "loss": 1.6932823181152343, + "step": 288500 + }, + { + "epoch": 38.48, + "grad_norm": 0.7949078679084778, + "learning_rate": 3.07686e-05, + "loss": 1.6973165893554687, + "step": 288600 + }, + { + "epoch": 38.49333333333333, + "grad_norm": 0.7806784510612488, + "learning_rate": 3.0761933333333334e-05, + "loss": 1.6917153930664062, + "step": 288700 + }, + { + "epoch": 38.50666666666667, + "grad_norm": 0.7916117906570435, + "learning_rate": 3.075526666666667e-05, + "loss": 1.7009848022460938, + "step": 288800 + }, + { + "epoch": 38.52, + "grad_norm": 0.759568989276886, + "learning_rate": 3.07486e-05, + "loss": 1.7016871643066407, + "step": 288900 + }, + { + "epoch": 38.53333333333333, + "grad_norm": 0.7423282861709595, + "learning_rate": 3.0742000000000005e-05, + "loss": 1.6960887145996093, + "step": 289000 + }, + { + "epoch": 38.54666666666667, + "grad_norm": 0.7630002498626709, + "learning_rate": 3.073533333333333e-05, + "loss": 1.7025230407714844, + "step": 289100 + }, + { + "epoch": 38.56, + "grad_norm": 0.7927618026733398, + "learning_rate": 3.072866666666667e-05, + "loss": 1.7043484497070311, + "step": 289200 + }, + { + "epoch": 38.57333333333333, + "grad_norm": 0.7585164308547974, + "learning_rate": 3.0722e-05, + "loss": 1.7019801330566406, + "step": 289300 + }, + { + "epoch": 38.586666666666666, + "grad_norm": 0.7974201440811157, + "learning_rate": 3.0715333333333334e-05, + "loss": 1.6983253479003906, + "step": 289400 + }, + { + "epoch": 38.6, + "grad_norm": 0.7960885763168335, + "learning_rate": 3.0708666666666666e-05, + "loss": 1.7020025634765625, + "step": 289500 + }, + { + "epoch": 38.61333333333333, + "grad_norm": 0.7698130011558533, + "learning_rate": 3.0702000000000005e-05, + "loss": 1.7045166015625, + "step": 289600 + }, + { + "epoch": 38.626666666666665, + "grad_norm": 0.7774978876113892, + "learning_rate": 3.069533333333334e-05, + "loss": 1.7092160034179686, + "step": 289700 + }, + { + "epoch": 38.64, + "grad_norm": 0.7904421091079712, + "learning_rate": 3.068866666666666e-05, + "loss": 1.7111721801757813, + "step": 289800 + }, + { + "epoch": 38.653333333333336, + "grad_norm": 0.7613751292228699, + "learning_rate": 3.0682e-05, + "loss": 1.7066726684570312, + "step": 289900 + }, + { + "epoch": 38.666666666666664, + "grad_norm": 0.7756422758102417, + "learning_rate": 3.0675333333333334e-05, + "loss": 1.7077285766601562, + "step": 290000 + }, + { + "epoch": 38.68, + "grad_norm": 0.7973787784576416, + "learning_rate": 3.0668666666666667e-05, + "loss": 1.706180419921875, + "step": 290100 + }, + { + "epoch": 38.693333333333335, + "grad_norm": 0.7484989762306213, + "learning_rate": 3.0662e-05, + "loss": 1.7061300659179688, + "step": 290200 + }, + { + "epoch": 38.70666666666666, + "grad_norm": 0.7544485926628113, + "learning_rate": 3.065533333333334e-05, + "loss": 1.7120814514160156, + "step": 290300 + }, + { + "epoch": 38.72, + "grad_norm": 0.7512329816818237, + "learning_rate": 3.064866666666667e-05, + "loss": 1.710401611328125, + "step": 290400 + }, + { + "epoch": 38.733333333333334, + "grad_norm": 0.7429623007774353, + "learning_rate": 3.0642e-05, + "loss": 1.7145462036132812, + "step": 290500 + }, + { + "epoch": 38.74666666666667, + "grad_norm": 0.7737287878990173, + "learning_rate": 3.0635333333333335e-05, + "loss": 1.7123170471191407, + "step": 290600 + }, + { + "epoch": 38.76, + "grad_norm": 0.7839905023574829, + "learning_rate": 3.062866666666667e-05, + "loss": 1.714277801513672, + "step": 290700 + }, + { + "epoch": 38.77333333333333, + "grad_norm": 0.7753442525863647, + "learning_rate": 3.0622e-05, + "loss": 1.711389923095703, + "step": 290800 + }, + { + "epoch": 38.78666666666667, + "grad_norm": 0.7696095108985901, + "learning_rate": 3.061533333333333e-05, + "loss": 1.712263946533203, + "step": 290900 + }, + { + "epoch": 38.8, + "grad_norm": 0.78681880235672, + "learning_rate": 3.060866666666667e-05, + "loss": 1.7169947814941406, + "step": 291000 + }, + { + "epoch": 38.81333333333333, + "grad_norm": 0.7666211128234863, + "learning_rate": 3.060206666666667e-05, + "loss": 1.713688201904297, + "step": 291100 + }, + { + "epoch": 38.82666666666667, + "grad_norm": 0.8072649836540222, + "learning_rate": 3.05954e-05, + "loss": 1.7122874450683594, + "step": 291200 + }, + { + "epoch": 38.84, + "grad_norm": 0.8129579424858093, + "learning_rate": 3.0588733333333334e-05, + "loss": 1.7165837097167969, + "step": 291300 + }, + { + "epoch": 38.85333333333333, + "grad_norm": 0.759157121181488, + "learning_rate": 3.058206666666667e-05, + "loss": 1.7154681396484375, + "step": 291400 + }, + { + "epoch": 38.86666666666667, + "grad_norm": 0.7481434345245361, + "learning_rate": 3.0575400000000005e-05, + "loss": 1.7192173767089844, + "step": 291500 + }, + { + "epoch": 38.88, + "grad_norm": 0.751333475112915, + "learning_rate": 3.056873333333333e-05, + "loss": 1.7186842346191407, + "step": 291600 + }, + { + "epoch": 38.89333333333333, + "grad_norm": 0.7542101740837097, + "learning_rate": 3.056206666666667e-05, + "loss": 1.7197854614257813, + "step": 291700 + }, + { + "epoch": 38.906666666666666, + "grad_norm": 0.7745694518089294, + "learning_rate": 3.05554e-05, + "loss": 1.717758026123047, + "step": 291800 + }, + { + "epoch": 38.92, + "grad_norm": 0.785905122756958, + "learning_rate": 3.0548733333333335e-05, + "loss": 1.7214923095703125, + "step": 291900 + }, + { + "epoch": 38.93333333333333, + "grad_norm": 0.737249493598938, + "learning_rate": 3.054206666666667e-05, + "loss": 1.721144256591797, + "step": 292000 + }, + { + "epoch": 38.946666666666665, + "grad_norm": 0.7561144828796387, + "learning_rate": 3.0535400000000006e-05, + "loss": 1.7213453674316406, + "step": 292100 + }, + { + "epoch": 38.96, + "grad_norm": 0.769527018070221, + "learning_rate": 3.052873333333334e-05, + "loss": 1.7238650512695313, + "step": 292200 + }, + { + "epoch": 38.973333333333336, + "grad_norm": 0.781715452671051, + "learning_rate": 3.0522066666666664e-05, + "loss": 1.7266677856445312, + "step": 292300 + }, + { + "epoch": 38.986666666666665, + "grad_norm": 0.7867762446403503, + "learning_rate": 3.05154e-05, + "loss": 1.7263604736328124, + "step": 292400 + }, + { + "epoch": 39.0, + "grad_norm": 0.7711582183837891, + "learning_rate": 3.0508733333333335e-05, + "loss": 1.7235179138183594, + "step": 292500 + }, + { + "epoch": 39.013333333333335, + "grad_norm": 0.7427387237548828, + "learning_rate": 3.0502066666666667e-05, + "loss": 1.636926727294922, + "step": 292600 + }, + { + "epoch": 39.026666666666664, + "grad_norm": 0.7548815011978149, + "learning_rate": 3.0495400000000003e-05, + "loss": 1.638148193359375, + "step": 292700 + }, + { + "epoch": 39.04, + "grad_norm": 0.766891598701477, + "learning_rate": 3.0488733333333335e-05, + "loss": 1.6450836181640625, + "step": 292800 + }, + { + "epoch": 39.053333333333335, + "grad_norm": 0.7814005017280579, + "learning_rate": 3.048206666666667e-05, + "loss": 1.6402984619140626, + "step": 292900 + }, + { + "epoch": 39.06666666666667, + "grad_norm": 0.7863591909408569, + "learning_rate": 3.0475400000000003e-05, + "loss": 1.645513916015625, + "step": 293000 + }, + { + "epoch": 39.08, + "grad_norm": 0.7696388959884644, + "learning_rate": 3.0468733333333332e-05, + "loss": 1.6503067016601562, + "step": 293100 + }, + { + "epoch": 39.093333333333334, + "grad_norm": 0.7683019042015076, + "learning_rate": 3.0462066666666668e-05, + "loss": 1.6453077697753906, + "step": 293200 + }, + { + "epoch": 39.10666666666667, + "grad_norm": 0.8194789886474609, + "learning_rate": 3.04554e-05, + "loss": 1.6493295288085938, + "step": 293300 + }, + { + "epoch": 39.12, + "grad_norm": 0.7500215172767639, + "learning_rate": 3.04488e-05, + "loss": 1.6437741088867188, + "step": 293400 + }, + { + "epoch": 39.13333333333333, + "grad_norm": 0.7612013220787048, + "learning_rate": 3.0442133333333335e-05, + "loss": 1.6460026550292968, + "step": 293500 + }, + { + "epoch": 39.14666666666667, + "grad_norm": 0.7490237355232239, + "learning_rate": 3.0435466666666667e-05, + "loss": 1.6469500732421876, + "step": 293600 + }, + { + "epoch": 39.16, + "grad_norm": 0.7428447604179382, + "learning_rate": 3.0428800000000002e-05, + "loss": 1.6538037109375, + "step": 293700 + }, + { + "epoch": 39.17333333333333, + "grad_norm": 0.771937906742096, + "learning_rate": 3.0422133333333335e-05, + "loss": 1.6548284912109374, + "step": 293800 + }, + { + "epoch": 39.18666666666667, + "grad_norm": 0.8053415417671204, + "learning_rate": 3.041546666666667e-05, + "loss": 1.6548187255859375, + "step": 293900 + }, + { + "epoch": 39.2, + "grad_norm": 0.7840629816055298, + "learning_rate": 3.0408800000000003e-05, + "loss": 1.656223907470703, + "step": 294000 + }, + { + "epoch": 39.21333333333333, + "grad_norm": 0.7682107090950012, + "learning_rate": 3.040213333333333e-05, + "loss": 1.6517486572265625, + "step": 294100 + }, + { + "epoch": 39.22666666666667, + "grad_norm": 0.7796576619148254, + "learning_rate": 3.0395466666666667e-05, + "loss": 1.6598385620117186, + "step": 294200 + }, + { + "epoch": 39.24, + "grad_norm": 0.7165907025337219, + "learning_rate": 3.03888e-05, + "loss": 1.6587965393066406, + "step": 294300 + }, + { + "epoch": 39.25333333333333, + "grad_norm": 0.7674499154090881, + "learning_rate": 3.0382133333333335e-05, + "loss": 1.6644235229492188, + "step": 294400 + }, + { + "epoch": 39.266666666666666, + "grad_norm": 0.7708069086074829, + "learning_rate": 3.0375466666666667e-05, + "loss": 1.6615855407714843, + "step": 294500 + }, + { + "epoch": 39.28, + "grad_norm": 0.7408686876296997, + "learning_rate": 3.0368800000000003e-05, + "loss": 1.6682752990722656, + "step": 294600 + }, + { + "epoch": 39.29333333333334, + "grad_norm": 0.7657552361488342, + "learning_rate": 3.0362133333333335e-05, + "loss": 1.6586656188964843, + "step": 294700 + }, + { + "epoch": 39.306666666666665, + "grad_norm": 0.7995692491531372, + "learning_rate": 3.0355466666666664e-05, + "loss": 1.6587791442871094, + "step": 294800 + }, + { + "epoch": 39.32, + "grad_norm": 0.748633086681366, + "learning_rate": 3.03488e-05, + "loss": 1.66481689453125, + "step": 294900 + }, + { + "epoch": 39.333333333333336, + "grad_norm": 0.7635269165039062, + "learning_rate": 3.0342133333333332e-05, + "loss": 1.6681814575195313, + "step": 295000 + }, + { + "epoch": 39.346666666666664, + "grad_norm": 0.7503258585929871, + "learning_rate": 3.0335466666666668e-05, + "loss": 1.6664021301269532, + "step": 295100 + }, + { + "epoch": 39.36, + "grad_norm": 0.7651309370994568, + "learning_rate": 3.03288e-05, + "loss": 1.6657469177246094, + "step": 295200 + }, + { + "epoch": 39.373333333333335, + "grad_norm": 0.7666741013526917, + "learning_rate": 3.0322133333333336e-05, + "loss": 1.6691456604003907, + "step": 295300 + }, + { + "epoch": 39.38666666666666, + "grad_norm": 0.7548410296440125, + "learning_rate": 3.031546666666667e-05, + "loss": 1.670536651611328, + "step": 295400 + }, + { + "epoch": 39.4, + "grad_norm": 0.74871826171875, + "learning_rate": 3.0308866666666667e-05, + "loss": 1.667931365966797, + "step": 295500 + }, + { + "epoch": 39.413333333333334, + "grad_norm": 0.8039665222167969, + "learning_rate": 3.0302200000000003e-05, + "loss": 1.6696517944335938, + "step": 295600 + }, + { + "epoch": 39.42666666666667, + "grad_norm": 0.770044207572937, + "learning_rate": 3.029553333333334e-05, + "loss": 1.6706535339355468, + "step": 295700 + }, + { + "epoch": 39.44, + "grad_norm": 0.7525724768638611, + "learning_rate": 3.0288866666666664e-05, + "loss": 1.6772557067871094, + "step": 295800 + }, + { + "epoch": 39.45333333333333, + "grad_norm": 0.7813305258750916, + "learning_rate": 3.02822e-05, + "loss": 1.671944122314453, + "step": 295900 + }, + { + "epoch": 39.46666666666667, + "grad_norm": 0.7860172390937805, + "learning_rate": 3.0275533333333335e-05, + "loss": 1.6785629272460938, + "step": 296000 + }, + { + "epoch": 39.48, + "grad_norm": 0.7601441740989685, + "learning_rate": 3.0268866666666667e-05, + "loss": 1.679444580078125, + "step": 296100 + }, + { + "epoch": 39.49333333333333, + "grad_norm": 0.7699296474456787, + "learning_rate": 3.0262200000000003e-05, + "loss": 1.6728718566894532, + "step": 296200 + }, + { + "epoch": 39.50666666666667, + "grad_norm": 0.8299603462219238, + "learning_rate": 3.0255533333333335e-05, + "loss": 1.672165069580078, + "step": 296300 + }, + { + "epoch": 39.52, + "grad_norm": 0.7380194067955017, + "learning_rate": 3.024886666666667e-05, + "loss": 1.6806745910644532, + "step": 296400 + }, + { + "epoch": 39.53333333333333, + "grad_norm": 0.774158239364624, + "learning_rate": 3.0242200000000003e-05, + "loss": 1.6795536804199218, + "step": 296500 + }, + { + "epoch": 39.54666666666667, + "grad_norm": 0.7721417546272278, + "learning_rate": 3.0235533333333332e-05, + "loss": 1.6812428283691405, + "step": 296600 + }, + { + "epoch": 39.56, + "grad_norm": 0.7454893589019775, + "learning_rate": 3.0228866666666668e-05, + "loss": 1.6825442504882813, + "step": 296700 + }, + { + "epoch": 39.57333333333333, + "grad_norm": 0.7825901508331299, + "learning_rate": 3.02222e-05, + "loss": 1.684827117919922, + "step": 296800 + }, + { + "epoch": 39.586666666666666, + "grad_norm": 0.7577589750289917, + "learning_rate": 3.0215533333333336e-05, + "loss": 1.686151885986328, + "step": 296900 + }, + { + "epoch": 39.6, + "grad_norm": 0.7495019435882568, + "learning_rate": 3.0208866666666668e-05, + "loss": 1.6861024475097657, + "step": 297000 + }, + { + "epoch": 39.61333333333333, + "grad_norm": 0.7696591019630432, + "learning_rate": 3.0202200000000004e-05, + "loss": 1.6808950805664062, + "step": 297100 + }, + { + "epoch": 39.626666666666665, + "grad_norm": 0.7768684029579163, + "learning_rate": 3.0195533333333336e-05, + "loss": 1.6860086059570312, + "step": 297200 + }, + { + "epoch": 39.64, + "grad_norm": 0.8358619809150696, + "learning_rate": 3.018886666666667e-05, + "loss": 1.6880392456054687, + "step": 297300 + }, + { + "epoch": 39.653333333333336, + "grad_norm": 0.7638468742370605, + "learning_rate": 3.01822e-05, + "loss": 1.6880755615234375, + "step": 297400 + }, + { + "epoch": 39.666666666666664, + "grad_norm": 0.7862942814826965, + "learning_rate": 3.0175533333333333e-05, + "loss": 1.6920382690429687, + "step": 297500 + }, + { + "epoch": 39.68, + "grad_norm": 0.7873303890228271, + "learning_rate": 3.016886666666667e-05, + "loss": 1.688036651611328, + "step": 297600 + }, + { + "epoch": 39.693333333333335, + "grad_norm": 0.7888381481170654, + "learning_rate": 3.01622e-05, + "loss": 1.6933929443359375, + "step": 297700 + }, + { + "epoch": 39.70666666666666, + "grad_norm": 0.7556432485580444, + "learning_rate": 3.01556e-05, + "loss": 1.6857225036621093, + "step": 297800 + }, + { + "epoch": 39.72, + "grad_norm": 0.7747805714607239, + "learning_rate": 3.0148933333333335e-05, + "loss": 1.693270721435547, + "step": 297900 + }, + { + "epoch": 39.733333333333334, + "grad_norm": 0.7705897092819214, + "learning_rate": 3.0142266666666668e-05, + "loss": 1.69430419921875, + "step": 298000 + }, + { + "epoch": 39.74666666666667, + "grad_norm": 0.7893573045730591, + "learning_rate": 3.0135600000000003e-05, + "loss": 1.6897537231445312, + "step": 298100 + }, + { + "epoch": 39.76, + "grad_norm": 0.7793616056442261, + "learning_rate": 3.0128933333333336e-05, + "loss": 1.6898460388183594, + "step": 298200 + }, + { + "epoch": 39.77333333333333, + "grad_norm": 0.7738221883773804, + "learning_rate": 3.012226666666667e-05, + "loss": 1.6978416442871094, + "step": 298300 + }, + { + "epoch": 39.78666666666667, + "grad_norm": 0.7676934599876404, + "learning_rate": 3.01156e-05, + "loss": 1.699170379638672, + "step": 298400 + }, + { + "epoch": 39.8, + "grad_norm": 0.7687268853187561, + "learning_rate": 3.0108933333333332e-05, + "loss": 1.6959735107421876, + "step": 298500 + }, + { + "epoch": 39.81333333333333, + "grad_norm": 0.7735351920127869, + "learning_rate": 3.0102266666666668e-05, + "loss": 1.6969778442382812, + "step": 298600 + }, + { + "epoch": 39.82666666666667, + "grad_norm": 0.7656512260437012, + "learning_rate": 3.00956e-05, + "loss": 1.6993966674804688, + "step": 298700 + }, + { + "epoch": 39.84, + "grad_norm": 0.782088577747345, + "learning_rate": 3.0088933333333336e-05, + "loss": 1.699752960205078, + "step": 298800 + }, + { + "epoch": 39.85333333333333, + "grad_norm": 0.773292601108551, + "learning_rate": 3.0082266666666668e-05, + "loss": 1.6988934326171874, + "step": 298900 + }, + { + "epoch": 39.86666666666667, + "grad_norm": 0.7811734080314636, + "learning_rate": 3.0075600000000004e-05, + "loss": 1.6964959716796875, + "step": 299000 + }, + { + "epoch": 39.88, + "grad_norm": 0.7883747220039368, + "learning_rate": 3.0068933333333333e-05, + "loss": 1.7006631469726563, + "step": 299100 + }, + { + "epoch": 39.89333333333333, + "grad_norm": 0.7700868844985962, + "learning_rate": 3.0062266666666665e-05, + "loss": 1.6964584350585938, + "step": 299200 + }, + { + "epoch": 39.906666666666666, + "grad_norm": 0.803329348564148, + "learning_rate": 3.00556e-05, + "loss": 1.6985226440429688, + "step": 299300 + }, + { + "epoch": 39.92, + "grad_norm": 0.7313794493675232, + "learning_rate": 3.0048933333333333e-05, + "loss": 1.6996687316894532, + "step": 299400 + }, + { + "epoch": 39.93333333333333, + "grad_norm": 0.8017928004264832, + "learning_rate": 3.004226666666667e-05, + "loss": 1.7024073791503906, + "step": 299500 + }, + { + "epoch": 39.946666666666665, + "grad_norm": 0.7980249524116516, + "learning_rate": 3.0035600000000004e-05, + "loss": 1.7046482849121094, + "step": 299600 + }, + { + "epoch": 39.96, + "grad_norm": 0.7558285593986511, + "learning_rate": 3.0028933333333337e-05, + "loss": 1.7029963684082032, + "step": 299700 + }, + { + "epoch": 39.973333333333336, + "grad_norm": 0.7704285383224487, + "learning_rate": 3.0022266666666672e-05, + "loss": 1.7064549255371093, + "step": 299800 + }, + { + "epoch": 39.986666666666665, + "grad_norm": 0.7782922983169556, + "learning_rate": 3.0015599999999998e-05, + "loss": 1.7005975341796875, + "step": 299900 + }, + { + "epoch": 40.0, + "grad_norm": 0.7687188982963562, + "learning_rate": 3.0008933333333333e-05, + "loss": 1.7041835021972656, + "step": 300000 + }, + { + "epoch": 40.013333333333335, + "grad_norm": 0.7731031775474548, + "learning_rate": 3.000226666666667e-05, + "loss": 1.620243377685547, + "step": 300100 + }, + { + "epoch": 40.026666666666664, + "grad_norm": 0.7835327386856079, + "learning_rate": 2.99956e-05, + "loss": 1.6189300537109375, + "step": 300200 + }, + { + "epoch": 40.04, + "grad_norm": 0.788834273815155, + "learning_rate": 2.9989e-05, + "loss": 1.6183770751953126, + "step": 300300 + }, + { + "epoch": 40.053333333333335, + "grad_norm": 0.7707294225692749, + "learning_rate": 2.9982333333333336e-05, + "loss": 1.624232940673828, + "step": 300400 + }, + { + "epoch": 40.06666666666667, + "grad_norm": 0.7670961618423462, + "learning_rate": 2.9975666666666668e-05, + "loss": 1.6271139526367187, + "step": 300500 + }, + { + "epoch": 40.08, + "grad_norm": 0.7733743190765381, + "learning_rate": 2.9969000000000004e-05, + "loss": 1.6237083435058595, + "step": 300600 + }, + { + "epoch": 40.093333333333334, + "grad_norm": 0.7543879747390747, + "learning_rate": 2.9962333333333336e-05, + "loss": 1.6283514404296875, + "step": 300700 + }, + { + "epoch": 40.10666666666667, + "grad_norm": 0.7911033630371094, + "learning_rate": 2.9955666666666672e-05, + "loss": 1.6246966552734374, + "step": 300800 + }, + { + "epoch": 40.12, + "grad_norm": 0.758840799331665, + "learning_rate": 2.9949e-05, + "loss": 1.6292984008789062, + "step": 300900 + }, + { + "epoch": 40.13333333333333, + "grad_norm": 0.7979432344436646, + "learning_rate": 2.9942333333333333e-05, + "loss": 1.6320713806152343, + "step": 301000 + }, + { + "epoch": 40.14666666666667, + "grad_norm": 0.7912939786911011, + "learning_rate": 2.993566666666667e-05, + "loss": 1.6327186584472657, + "step": 301100 + }, + { + "epoch": 40.16, + "grad_norm": 0.7603537440299988, + "learning_rate": 2.9929e-05, + "loss": 1.6343653869628907, + "step": 301200 + }, + { + "epoch": 40.17333333333333, + "grad_norm": 0.7935387492179871, + "learning_rate": 2.9922333333333337e-05, + "loss": 1.6328231811523437, + "step": 301300 + }, + { + "epoch": 40.18666666666667, + "grad_norm": 0.7534608244895935, + "learning_rate": 2.991566666666667e-05, + "loss": 1.6297528076171874, + "step": 301400 + }, + { + "epoch": 40.2, + "grad_norm": 0.7596133351325989, + "learning_rate": 2.9909000000000005e-05, + "loss": 1.6323152160644532, + "step": 301500 + }, + { + "epoch": 40.21333333333333, + "grad_norm": 0.7837437987327576, + "learning_rate": 2.9902333333333333e-05, + "loss": 1.6390170288085937, + "step": 301600 + }, + { + "epoch": 40.22666666666667, + "grad_norm": 0.7405257821083069, + "learning_rate": 2.9895666666666666e-05, + "loss": 1.6328970336914062, + "step": 301700 + }, + { + "epoch": 40.24, + "grad_norm": 0.7964353561401367, + "learning_rate": 2.9889e-05, + "loss": 1.6418511962890625, + "step": 301800 + }, + { + "epoch": 40.25333333333333, + "grad_norm": 0.7721452713012695, + "learning_rate": 2.9882333333333334e-05, + "loss": 1.6432241821289062, + "step": 301900 + }, + { + "epoch": 40.266666666666666, + "grad_norm": 0.7319056987762451, + "learning_rate": 2.987566666666667e-05, + "loss": 1.6457327270507813, + "step": 302000 + }, + { + "epoch": 40.28, + "grad_norm": 0.7476204037666321, + "learning_rate": 2.9869e-05, + "loss": 1.63947265625, + "step": 302100 + }, + { + "epoch": 40.29333333333334, + "grad_norm": 0.7636196613311768, + "learning_rate": 2.9862333333333337e-05, + "loss": 1.6431263732910155, + "step": 302200 + }, + { + "epoch": 40.306666666666665, + "grad_norm": 0.7672015428543091, + "learning_rate": 2.985566666666667e-05, + "loss": 1.6432777404785157, + "step": 302300 + }, + { + "epoch": 40.32, + "grad_norm": 0.7906679511070251, + "learning_rate": 2.984906666666667e-05, + "loss": 1.6422769165039062, + "step": 302400 + }, + { + "epoch": 40.333333333333336, + "grad_norm": 0.7585984468460083, + "learning_rate": 2.9842400000000004e-05, + "loss": 1.645401611328125, + "step": 302500 + }, + { + "epoch": 40.346666666666664, + "grad_norm": 0.7551888227462769, + "learning_rate": 2.9835733333333333e-05, + "loss": 1.6521505737304687, + "step": 302600 + }, + { + "epoch": 40.36, + "grad_norm": 0.7747895121574402, + "learning_rate": 2.9829066666666665e-05, + "loss": 1.653616943359375, + "step": 302700 + }, + { + "epoch": 40.373333333333335, + "grad_norm": 0.7973045706748962, + "learning_rate": 2.98224e-05, + "loss": 1.6516969299316406, + "step": 302800 + }, + { + "epoch": 40.38666666666666, + "grad_norm": 0.7736092209815979, + "learning_rate": 2.9815733333333333e-05, + "loss": 1.6533767700195312, + "step": 302900 + }, + { + "epoch": 40.4, + "grad_norm": 0.8287850618362427, + "learning_rate": 2.980906666666667e-05, + "loss": 1.650742950439453, + "step": 303000 + }, + { + "epoch": 40.413333333333334, + "grad_norm": 0.7991235256195068, + "learning_rate": 2.98024e-05, + "loss": 1.6495477294921874, + "step": 303100 + }, + { + "epoch": 40.42666666666667, + "grad_norm": 0.7750113010406494, + "learning_rate": 2.9795733333333337e-05, + "loss": 1.6545738220214843, + "step": 303200 + }, + { + "epoch": 40.44, + "grad_norm": 0.7548984885215759, + "learning_rate": 2.978906666666667e-05, + "loss": 1.6560383605957032, + "step": 303300 + }, + { + "epoch": 40.45333333333333, + "grad_norm": 0.7681398987770081, + "learning_rate": 2.9782399999999998e-05, + "loss": 1.6523040771484374, + "step": 303400 + }, + { + "epoch": 40.46666666666667, + "grad_norm": 0.7958689332008362, + "learning_rate": 2.9775733333333334e-05, + "loss": 1.654131622314453, + "step": 303500 + }, + { + "epoch": 40.48, + "grad_norm": 0.8112989068031311, + "learning_rate": 2.9769066666666666e-05, + "loss": 1.6542424011230468, + "step": 303600 + }, + { + "epoch": 40.49333333333333, + "grad_norm": 0.8102808594703674, + "learning_rate": 2.97624e-05, + "loss": 1.6532270812988281, + "step": 303700 + }, + { + "epoch": 40.50666666666667, + "grad_norm": 0.7980448603630066, + "learning_rate": 2.9755733333333334e-05, + "loss": 1.6606166076660156, + "step": 303800 + }, + { + "epoch": 40.52, + "grad_norm": 0.7753362655639648, + "learning_rate": 2.974906666666667e-05, + "loss": 1.6590802001953124, + "step": 303900 + }, + { + "epoch": 40.53333333333333, + "grad_norm": 0.7801727056503296, + "learning_rate": 2.9742400000000005e-05, + "loss": 1.6569808959960937, + "step": 304000 + }, + { + "epoch": 40.54666666666667, + "grad_norm": 0.7659746408462524, + "learning_rate": 2.973573333333333e-05, + "loss": 1.6627920532226563, + "step": 304100 + }, + { + "epoch": 40.56, + "grad_norm": 0.8251011371612549, + "learning_rate": 2.9729066666666666e-05, + "loss": 1.6599037170410156, + "step": 304200 + }, + { + "epoch": 40.57333333333333, + "grad_norm": 0.7905187010765076, + "learning_rate": 2.9722400000000002e-05, + "loss": 1.6602447509765625, + "step": 304300 + }, + { + "epoch": 40.586666666666666, + "grad_norm": 0.7680100202560425, + "learning_rate": 2.9715733333333334e-05, + "loss": 1.6645524597167969, + "step": 304400 + }, + { + "epoch": 40.6, + "grad_norm": 0.8009008765220642, + "learning_rate": 2.970906666666667e-05, + "loss": 1.6655874633789063, + "step": 304500 + }, + { + "epoch": 40.61333333333333, + "grad_norm": 0.7796105742454529, + "learning_rate": 2.9702400000000002e-05, + "loss": 1.6701692199707032, + "step": 304600 + }, + { + "epoch": 40.626666666666665, + "grad_norm": 0.8052720427513123, + "learning_rate": 2.96958e-05, + "loss": 1.67267333984375, + "step": 304700 + }, + { + "epoch": 40.64, + "grad_norm": 0.8020023703575134, + "learning_rate": 2.9689133333333337e-05, + "loss": 1.6702662658691407, + "step": 304800 + }, + { + "epoch": 40.653333333333336, + "grad_norm": 0.7790773510932922, + "learning_rate": 2.968246666666667e-05, + "loss": 1.6637289428710937, + "step": 304900 + }, + { + "epoch": 40.666666666666664, + "grad_norm": 0.7891820073127747, + "learning_rate": 2.9675800000000005e-05, + "loss": 1.6721121215820312, + "step": 305000 + }, + { + "epoch": 40.68, + "grad_norm": 0.8255475759506226, + "learning_rate": 2.9669133333333334e-05, + "loss": 1.668660888671875, + "step": 305100 + }, + { + "epoch": 40.693333333333335, + "grad_norm": 0.7707953453063965, + "learning_rate": 2.9662466666666666e-05, + "loss": 1.670304718017578, + "step": 305200 + }, + { + "epoch": 40.70666666666666, + "grad_norm": 0.789410412311554, + "learning_rate": 2.96558e-05, + "loss": 1.6723420715332031, + "step": 305300 + }, + { + "epoch": 40.72, + "grad_norm": 0.7793656587600708, + "learning_rate": 2.9649133333333334e-05, + "loss": 1.6703863525390625, + "step": 305400 + }, + { + "epoch": 40.733333333333334, + "grad_norm": 0.7544719576835632, + "learning_rate": 2.964246666666667e-05, + "loss": 1.670694580078125, + "step": 305500 + }, + { + "epoch": 40.74666666666667, + "grad_norm": 0.7913680076599121, + "learning_rate": 2.9635800000000002e-05, + "loss": 1.6704800415039063, + "step": 305600 + }, + { + "epoch": 40.76, + "grad_norm": 0.8109893798828125, + "learning_rate": 2.9629133333333337e-05, + "loss": 1.674829864501953, + "step": 305700 + }, + { + "epoch": 40.77333333333333, + "grad_norm": 0.7733386754989624, + "learning_rate": 2.962246666666667e-05, + "loss": 1.671063690185547, + "step": 305800 + }, + { + "epoch": 40.78666666666667, + "grad_norm": 0.8088369965553284, + "learning_rate": 2.96158e-05, + "loss": 1.6718939208984376, + "step": 305900 + }, + { + "epoch": 40.8, + "grad_norm": 0.7910258173942566, + "learning_rate": 2.9609133333333334e-05, + "loss": 1.6722633361816406, + "step": 306000 + }, + { + "epoch": 40.81333333333333, + "grad_norm": 0.8270725607872009, + "learning_rate": 2.9602466666666667e-05, + "loss": 1.6770217895507813, + "step": 306100 + }, + { + "epoch": 40.82666666666667, + "grad_norm": 0.8187015056610107, + "learning_rate": 2.9595800000000002e-05, + "loss": 1.6784989929199219, + "step": 306200 + }, + { + "epoch": 40.84, + "grad_norm": 0.7722174525260925, + "learning_rate": 2.9589133333333334e-05, + "loss": 1.675601806640625, + "step": 306300 + }, + { + "epoch": 40.85333333333333, + "grad_norm": 0.7953956127166748, + "learning_rate": 2.958246666666667e-05, + "loss": 1.6758319091796876, + "step": 306400 + }, + { + "epoch": 40.86666666666667, + "grad_norm": 0.7955514788627625, + "learning_rate": 2.9575800000000002e-05, + "loss": 1.6785484313964845, + "step": 306500 + }, + { + "epoch": 40.88, + "grad_norm": 0.8043191432952881, + "learning_rate": 2.956913333333333e-05, + "loss": 1.6791413879394532, + "step": 306600 + }, + { + "epoch": 40.89333333333333, + "grad_norm": 0.8214145302772522, + "learning_rate": 2.9562466666666667e-05, + "loss": 1.6822396850585937, + "step": 306700 + }, + { + "epoch": 40.906666666666666, + "grad_norm": 0.7704736590385437, + "learning_rate": 2.95558e-05, + "loss": 1.6834477233886718, + "step": 306800 + }, + { + "epoch": 40.92, + "grad_norm": 0.8391588926315308, + "learning_rate": 2.9549133333333335e-05, + "loss": 1.680575408935547, + "step": 306900 + }, + { + "epoch": 40.93333333333333, + "grad_norm": 0.8125873804092407, + "learning_rate": 2.9542533333333334e-05, + "loss": 1.683341522216797, + "step": 307000 + }, + { + "epoch": 40.946666666666665, + "grad_norm": 0.7934849262237549, + "learning_rate": 2.9535866666666666e-05, + "loss": 1.6847650146484374, + "step": 307100 + }, + { + "epoch": 40.96, + "grad_norm": 0.7980996966362, + "learning_rate": 2.9529200000000002e-05, + "loss": 1.6811965942382812, + "step": 307200 + }, + { + "epoch": 40.973333333333336, + "grad_norm": 0.802399754524231, + "learning_rate": 2.9522533333333334e-05, + "loss": 1.6897067260742187, + "step": 307300 + }, + { + "epoch": 40.986666666666665, + "grad_norm": 0.7816872000694275, + "learning_rate": 2.951586666666667e-05, + "loss": 1.6832794189453124, + "step": 307400 + }, + { + "epoch": 41.0, + "grad_norm": 0.7761144638061523, + "learning_rate": 2.9509200000000002e-05, + "loss": 1.6881805419921876, + "step": 307500 + }, + { + "epoch": 41.013333333333335, + "grad_norm": 0.7764184474945068, + "learning_rate": 2.950253333333333e-05, + "loss": 1.5990695190429687, + "step": 307600 + }, + { + "epoch": 41.026666666666664, + "grad_norm": 0.7701564431190491, + "learning_rate": 2.9495866666666667e-05, + "loss": 1.6041400146484375, + "step": 307700 + }, + { + "epoch": 41.04, + "grad_norm": 0.7842352390289307, + "learning_rate": 2.94892e-05, + "loss": 1.6026243591308593, + "step": 307800 + }, + { + "epoch": 41.053333333333335, + "grad_norm": 0.8398421406745911, + "learning_rate": 2.9482533333333334e-05, + "loss": 1.6042144775390625, + "step": 307900 + }, + { + "epoch": 41.06666666666667, + "grad_norm": 0.7771956920623779, + "learning_rate": 2.9475866666666667e-05, + "loss": 1.6058041381835937, + "step": 308000 + }, + { + "epoch": 41.08, + "grad_norm": 0.7307206392288208, + "learning_rate": 2.9469200000000002e-05, + "loss": 1.6052072143554688, + "step": 308100 + }, + { + "epoch": 41.093333333333334, + "grad_norm": 0.7741842269897461, + "learning_rate": 2.9462533333333338e-05, + "loss": 1.6063827514648437, + "step": 308200 + }, + { + "epoch": 41.10666666666667, + "grad_norm": 0.7664023637771606, + "learning_rate": 2.945586666666667e-05, + "loss": 1.6085012817382813, + "step": 308300 + }, + { + "epoch": 41.12, + "grad_norm": 0.7947597503662109, + "learning_rate": 2.94492e-05, + "loss": 1.6075529479980468, + "step": 308400 + }, + { + "epoch": 41.13333333333333, + "grad_norm": 0.8271000385284424, + "learning_rate": 2.944253333333333e-05, + "loss": 1.611210479736328, + "step": 308500 + }, + { + "epoch": 41.14666666666667, + "grad_norm": 0.8020433783531189, + "learning_rate": 2.9435866666666667e-05, + "loss": 1.613904266357422, + "step": 308600 + }, + { + "epoch": 41.16, + "grad_norm": 0.7996675968170166, + "learning_rate": 2.9429200000000003e-05, + "loss": 1.617792205810547, + "step": 308700 + }, + { + "epoch": 41.17333333333333, + "grad_norm": 0.7714760899543762, + "learning_rate": 2.9422533333333335e-05, + "loss": 1.6162484741210938, + "step": 308800 + }, + { + "epoch": 41.18666666666667, + "grad_norm": 0.7961992621421814, + "learning_rate": 2.941586666666667e-05, + "loss": 1.6189137268066407, + "step": 308900 + }, + { + "epoch": 41.2, + "grad_norm": 0.7719022631645203, + "learning_rate": 2.9409200000000003e-05, + "loss": 1.6185585021972657, + "step": 309000 + }, + { + "epoch": 41.21333333333333, + "grad_norm": 0.7894253730773926, + "learning_rate": 2.940253333333334e-05, + "loss": 1.6159666442871095, + "step": 309100 + }, + { + "epoch": 41.22666666666667, + "grad_norm": 0.8292324542999268, + "learning_rate": 2.9395933333333338e-05, + "loss": 1.6167066955566407, + "step": 309200 + }, + { + "epoch": 41.24, + "grad_norm": 0.7811465859413147, + "learning_rate": 2.938926666666667e-05, + "loss": 1.6240852355957032, + "step": 309300 + }, + { + "epoch": 41.25333333333333, + "grad_norm": 0.7826862931251526, + "learning_rate": 2.93826e-05, + "loss": 1.6248715209960938, + "step": 309400 + }, + { + "epoch": 41.266666666666666, + "grad_norm": 0.7634377479553223, + "learning_rate": 2.9375933333333335e-05, + "loss": 1.6282896423339843, + "step": 309500 + }, + { + "epoch": 41.28, + "grad_norm": 0.7704088091850281, + "learning_rate": 2.9369266666666667e-05, + "loss": 1.6228341674804687, + "step": 309600 + }, + { + "epoch": 41.29333333333334, + "grad_norm": 0.776517391204834, + "learning_rate": 2.9362600000000002e-05, + "loss": 1.6235067749023437, + "step": 309700 + }, + { + "epoch": 41.306666666666665, + "grad_norm": 0.7937943935394287, + "learning_rate": 2.9355933333333335e-05, + "loss": 1.6245884704589844, + "step": 309800 + }, + { + "epoch": 41.32, + "grad_norm": 0.7816150784492493, + "learning_rate": 2.934926666666667e-05, + "loss": 1.6250926208496095, + "step": 309900 + }, + { + "epoch": 41.333333333333336, + "grad_norm": 0.789966344833374, + "learning_rate": 2.9342600000000003e-05, + "loss": 1.6290631103515625, + "step": 310000 + }, + { + "epoch": 41.346666666666664, + "grad_norm": 0.7828590273857117, + "learning_rate": 2.9335933333333338e-05, + "loss": 1.6320005798339843, + "step": 310100 + }, + { + "epoch": 41.36, + "grad_norm": 0.7721713781356812, + "learning_rate": 2.9329266666666667e-05, + "loss": 1.6315066528320312, + "step": 310200 + }, + { + "epoch": 41.373333333333335, + "grad_norm": 0.7936566472053528, + "learning_rate": 2.93226e-05, + "loss": 1.6328521728515626, + "step": 310300 + }, + { + "epoch": 41.38666666666666, + "grad_norm": 0.8090173602104187, + "learning_rate": 2.9315933333333335e-05, + "loss": 1.6380584716796875, + "step": 310400 + }, + { + "epoch": 41.4, + "grad_norm": 0.7758917808532715, + "learning_rate": 2.9309266666666667e-05, + "loss": 1.6311029052734376, + "step": 310500 + }, + { + "epoch": 41.413333333333334, + "grad_norm": 0.7972980737686157, + "learning_rate": 2.9302600000000003e-05, + "loss": 1.6364056396484374, + "step": 310600 + }, + { + "epoch": 41.42666666666667, + "grad_norm": 0.795874834060669, + "learning_rate": 2.9295933333333335e-05, + "loss": 1.636111297607422, + "step": 310700 + }, + { + "epoch": 41.44, + "grad_norm": 0.8138737678527832, + "learning_rate": 2.928926666666667e-05, + "loss": 1.636154022216797, + "step": 310800 + }, + { + "epoch": 41.45333333333333, + "grad_norm": 0.8085600137710571, + "learning_rate": 2.92826e-05, + "loss": 1.6349728393554688, + "step": 310900 + }, + { + "epoch": 41.46666666666667, + "grad_norm": 0.7742388844490051, + "learning_rate": 2.9275933333333332e-05, + "loss": 1.63881591796875, + "step": 311000 + }, + { + "epoch": 41.48, + "grad_norm": 0.7965194582939148, + "learning_rate": 2.9269266666666668e-05, + "loss": 1.6336904907226562, + "step": 311100 + }, + { + "epoch": 41.49333333333333, + "grad_norm": 0.8123679161071777, + "learning_rate": 2.9262666666666667e-05, + "loss": 1.6433746337890625, + "step": 311200 + }, + { + "epoch": 41.50666666666667, + "grad_norm": 0.799063503742218, + "learning_rate": 2.9256e-05, + "loss": 1.6420155334472657, + "step": 311300 + }, + { + "epoch": 41.52, + "grad_norm": 0.7700026631355286, + "learning_rate": 2.9249333333333335e-05, + "loss": 1.6381747436523437, + "step": 311400 + }, + { + "epoch": 41.53333333333333, + "grad_norm": 0.783812940120697, + "learning_rate": 2.9242666666666667e-05, + "loss": 1.6365054321289063, + "step": 311500 + }, + { + "epoch": 41.54666666666667, + "grad_norm": 0.7764769792556763, + "learning_rate": 2.9236000000000003e-05, + "loss": 1.6388162231445313, + "step": 311600 + }, + { + "epoch": 41.56, + "grad_norm": 0.7944959402084351, + "learning_rate": 2.9229333333333335e-05, + "loss": 1.6455184936523437, + "step": 311700 + }, + { + "epoch": 41.57333333333333, + "grad_norm": 0.7800427079200745, + "learning_rate": 2.922266666666667e-05, + "loss": 1.6459024047851563, + "step": 311800 + }, + { + "epoch": 41.586666666666666, + "grad_norm": 0.8255797624588013, + "learning_rate": 2.9216e-05, + "loss": 1.6468026733398438, + "step": 311900 + }, + { + "epoch": 41.6, + "grad_norm": 0.7957680225372314, + "learning_rate": 2.9209333333333332e-05, + "loss": 1.6451564025878906, + "step": 312000 + }, + { + "epoch": 41.61333333333333, + "grad_norm": 0.8067429661750793, + "learning_rate": 2.9202666666666667e-05, + "loss": 1.649429168701172, + "step": 312100 + }, + { + "epoch": 41.626666666666665, + "grad_norm": 0.7828828692436218, + "learning_rate": 2.9196e-05, + "loss": 1.6439801025390626, + "step": 312200 + }, + { + "epoch": 41.64, + "grad_norm": 0.7971386313438416, + "learning_rate": 2.9189333333333335e-05, + "loss": 1.6461314392089843, + "step": 312300 + }, + { + "epoch": 41.653333333333336, + "grad_norm": 0.8209567666053772, + "learning_rate": 2.9182666666666668e-05, + "loss": 1.6470904541015625, + "step": 312400 + }, + { + "epoch": 41.666666666666664, + "grad_norm": 0.8193508386611938, + "learning_rate": 2.9176000000000003e-05, + "loss": 1.6506707763671875, + "step": 312500 + }, + { + "epoch": 41.68, + "grad_norm": 0.8329564929008484, + "learning_rate": 2.916933333333334e-05, + "loss": 1.6542561340332032, + "step": 312600 + }, + { + "epoch": 41.693333333333335, + "grad_norm": 0.7866358160972595, + "learning_rate": 2.9162666666666664e-05, + "loss": 1.6521278381347657, + "step": 312700 + }, + { + "epoch": 41.70666666666666, + "grad_norm": 0.8379685878753662, + "learning_rate": 2.9156e-05, + "loss": 1.6496038818359375, + "step": 312800 + }, + { + "epoch": 41.72, + "grad_norm": 0.7962581515312195, + "learning_rate": 2.9149333333333336e-05, + "loss": 1.6517626953125, + "step": 312900 + }, + { + "epoch": 41.733333333333334, + "grad_norm": 0.7623695135116577, + "learning_rate": 2.9142666666666668e-05, + "loss": 1.6487763977050782, + "step": 313000 + }, + { + "epoch": 41.74666666666667, + "grad_norm": 0.7969656586647034, + "learning_rate": 2.9136000000000004e-05, + "loss": 1.6543055725097657, + "step": 313100 + }, + { + "epoch": 41.76, + "grad_norm": 0.8090587258338928, + "learning_rate": 2.9129333333333336e-05, + "loss": 1.6550767517089844, + "step": 313200 + }, + { + "epoch": 41.77333333333333, + "grad_norm": 0.8005834817886353, + "learning_rate": 2.912266666666667e-05, + "loss": 1.6577835083007812, + "step": 313300 + }, + { + "epoch": 41.78666666666667, + "grad_norm": 0.7874211668968201, + "learning_rate": 2.9116e-05, + "loss": 1.6544857788085938, + "step": 313400 + }, + { + "epoch": 41.8, + "grad_norm": 0.7901095747947693, + "learning_rate": 2.9109400000000003e-05, + "loss": 1.6523391723632812, + "step": 313500 + }, + { + "epoch": 41.81333333333333, + "grad_norm": 0.7718372344970703, + "learning_rate": 2.910273333333334e-05, + "loss": 1.657394256591797, + "step": 313600 + }, + { + "epoch": 41.82666666666667, + "grad_norm": 0.8033204078674316, + "learning_rate": 2.9096066666666667e-05, + "loss": 1.6549183654785156, + "step": 313700 + }, + { + "epoch": 41.84, + "grad_norm": 0.773262619972229, + "learning_rate": 2.90894e-05, + "loss": 1.660445556640625, + "step": 313800 + }, + { + "epoch": 41.85333333333333, + "grad_norm": 0.781597375869751, + "learning_rate": 2.9082733333333335e-05, + "loss": 1.659234619140625, + "step": 313900 + }, + { + "epoch": 41.86666666666667, + "grad_norm": 0.823759138584137, + "learning_rate": 2.9076066666666668e-05, + "loss": 1.6564396667480468, + "step": 314000 + }, + { + "epoch": 41.88, + "grad_norm": 0.7636963725090027, + "learning_rate": 2.9069400000000003e-05, + "loss": 1.65720703125, + "step": 314100 + }, + { + "epoch": 41.89333333333333, + "grad_norm": 0.7856835126876831, + "learning_rate": 2.9062733333333336e-05, + "loss": 1.6625801086425782, + "step": 314200 + }, + { + "epoch": 41.906666666666666, + "grad_norm": 0.7966486215591431, + "learning_rate": 2.905606666666667e-05, + "loss": 1.6632244873046875, + "step": 314300 + }, + { + "epoch": 41.92, + "grad_norm": 0.7848227024078369, + "learning_rate": 2.90494e-05, + "loss": 1.6618414306640625, + "step": 314400 + }, + { + "epoch": 41.93333333333333, + "grad_norm": 0.8092052936553955, + "learning_rate": 2.9042733333333332e-05, + "loss": 1.6637734985351562, + "step": 314500 + }, + { + "epoch": 41.946666666666665, + "grad_norm": 0.8151919841766357, + "learning_rate": 2.9036066666666668e-05, + "loss": 1.6675376892089844, + "step": 314600 + }, + { + "epoch": 41.96, + "grad_norm": 0.7819831371307373, + "learning_rate": 2.90294e-05, + "loss": 1.6665446472167968, + "step": 314700 + }, + { + "epoch": 41.973333333333336, + "grad_norm": 0.7871850728988647, + "learning_rate": 2.9022733333333336e-05, + "loss": 1.66580810546875, + "step": 314800 + }, + { + "epoch": 41.986666666666665, + "grad_norm": 0.8031324744224548, + "learning_rate": 2.9016066666666668e-05, + "loss": 1.6656488037109376, + "step": 314900 + }, + { + "epoch": 42.0, + "grad_norm": 0.8214955925941467, + "learning_rate": 2.9009400000000004e-05, + "loss": 1.6649081420898437, + "step": 315000 + }, + { + "epoch": 42.013333333333335, + "grad_norm": 0.7725866436958313, + "learning_rate": 2.9002733333333336e-05, + "loss": 1.579239501953125, + "step": 315100 + }, + { + "epoch": 42.026666666666664, + "grad_norm": 0.7591557502746582, + "learning_rate": 2.8996066666666665e-05, + "loss": 1.5807839965820312, + "step": 315200 + }, + { + "epoch": 42.04, + "grad_norm": 0.7683588862419128, + "learning_rate": 2.89894e-05, + "loss": 1.584822235107422, + "step": 315300 + }, + { + "epoch": 42.053333333333335, + "grad_norm": 0.7662196159362793, + "learning_rate": 2.8982733333333333e-05, + "loss": 1.5851914978027344, + "step": 315400 + }, + { + "epoch": 42.06666666666667, + "grad_norm": 0.8008477687835693, + "learning_rate": 2.897606666666667e-05, + "loss": 1.5897236633300782, + "step": 315500 + }, + { + "epoch": 42.08, + "grad_norm": 0.8044509291648865, + "learning_rate": 2.8969466666666668e-05, + "loss": 1.5850997924804688, + "step": 315600 + }, + { + "epoch": 42.093333333333334, + "grad_norm": 0.82093745470047, + "learning_rate": 2.89628e-05, + "loss": 1.5886293029785157, + "step": 315700 + }, + { + "epoch": 42.10666666666667, + "grad_norm": 0.7949629426002502, + "learning_rate": 2.8956133333333336e-05, + "loss": 1.5937432861328125, + "step": 315800 + }, + { + "epoch": 42.12, + "grad_norm": 0.7797324657440186, + "learning_rate": 2.8949466666666668e-05, + "loss": 1.5901795959472655, + "step": 315900 + }, + { + "epoch": 42.13333333333333, + "grad_norm": 0.7416061758995056, + "learning_rate": 2.8942800000000003e-05, + "loss": 1.5912071228027345, + "step": 316000 + }, + { + "epoch": 42.14666666666667, + "grad_norm": 0.796648383140564, + "learning_rate": 2.8936133333333336e-05, + "loss": 1.5968006896972655, + "step": 316100 + }, + { + "epoch": 42.16, + "grad_norm": 0.7828426361083984, + "learning_rate": 2.8929466666666665e-05, + "loss": 1.6001832580566406, + "step": 316200 + }, + { + "epoch": 42.17333333333333, + "grad_norm": 0.778724193572998, + "learning_rate": 2.89228e-05, + "loss": 1.5923294067382812, + "step": 316300 + }, + { + "epoch": 42.18666666666667, + "grad_norm": 0.7975136637687683, + "learning_rate": 2.8916133333333333e-05, + "loss": 1.5967176818847657, + "step": 316400 + }, + { + "epoch": 42.2, + "grad_norm": 0.7668192386627197, + "learning_rate": 2.8909466666666668e-05, + "loss": 1.6007345581054688, + "step": 316500 + }, + { + "epoch": 42.21333333333333, + "grad_norm": 0.7750270366668701, + "learning_rate": 2.89028e-05, + "loss": 1.601139373779297, + "step": 316600 + }, + { + "epoch": 42.22666666666667, + "grad_norm": 0.8115882873535156, + "learning_rate": 2.8896133333333336e-05, + "loss": 1.5999020385742186, + "step": 316700 + }, + { + "epoch": 42.24, + "grad_norm": 0.8152367472648621, + "learning_rate": 2.8889466666666672e-05, + "loss": 1.6009846496582032, + "step": 316800 + }, + { + "epoch": 42.25333333333333, + "grad_norm": 0.7818172574043274, + "learning_rate": 2.8882799999999997e-05, + "loss": 1.6060690307617187, + "step": 316900 + }, + { + "epoch": 42.266666666666666, + "grad_norm": 0.7581207156181335, + "learning_rate": 2.8876133333333333e-05, + "loss": 1.61083984375, + "step": 317000 + }, + { + "epoch": 42.28, + "grad_norm": 0.797792911529541, + "learning_rate": 2.8869466666666665e-05, + "loss": 1.6037715148925782, + "step": 317100 + }, + { + "epoch": 42.29333333333334, + "grad_norm": 0.8175429701805115, + "learning_rate": 2.88628e-05, + "loss": 1.6076036071777344, + "step": 317200 + }, + { + "epoch": 42.306666666666665, + "grad_norm": 0.772908627986908, + "learning_rate": 2.8856133333333337e-05, + "loss": 1.6125408935546874, + "step": 317300 + }, + { + "epoch": 42.32, + "grad_norm": 0.7854279279708862, + "learning_rate": 2.884946666666667e-05, + "loss": 1.6088632202148438, + "step": 317400 + }, + { + "epoch": 42.333333333333336, + "grad_norm": 0.7655262351036072, + "learning_rate": 2.8842800000000004e-05, + "loss": 1.610213623046875, + "step": 317500 + }, + { + "epoch": 42.346666666666664, + "grad_norm": 0.7729225754737854, + "learning_rate": 2.8836133333333337e-05, + "loss": 1.6126589965820313, + "step": 317600 + }, + { + "epoch": 42.36, + "grad_norm": 0.7809514403343201, + "learning_rate": 2.8829466666666666e-05, + "loss": 1.6137397766113282, + "step": 317700 + }, + { + "epoch": 42.373333333333335, + "grad_norm": 0.8015533089637756, + "learning_rate": 2.88228e-05, + "loss": 1.6137492370605468, + "step": 317800 + }, + { + "epoch": 42.38666666666666, + "grad_norm": 0.8014168739318848, + "learning_rate": 2.8816133333333334e-05, + "loss": 1.6128648376464845, + "step": 317900 + }, + { + "epoch": 42.4, + "grad_norm": 0.8032166957855225, + "learning_rate": 2.8809533333333333e-05, + "loss": 1.617438507080078, + "step": 318000 + }, + { + "epoch": 42.413333333333334, + "grad_norm": 0.7962257266044617, + "learning_rate": 2.8802866666666668e-05, + "loss": 1.6180424499511719, + "step": 318100 + }, + { + "epoch": 42.42666666666667, + "grad_norm": 0.7772518992424011, + "learning_rate": 2.87962e-05, + "loss": 1.618890838623047, + "step": 318200 + }, + { + "epoch": 42.44, + "grad_norm": 0.8154412508010864, + "learning_rate": 2.8789533333333336e-05, + "loss": 1.6198379516601562, + "step": 318300 + }, + { + "epoch": 42.45333333333333, + "grad_norm": 0.8127172589302063, + "learning_rate": 2.878286666666667e-05, + "loss": 1.620894317626953, + "step": 318400 + }, + { + "epoch": 42.46666666666667, + "grad_norm": 0.7918204069137573, + "learning_rate": 2.8776200000000004e-05, + "loss": 1.620947265625, + "step": 318500 + }, + { + "epoch": 42.48, + "grad_norm": 0.7991171479225159, + "learning_rate": 2.8769533333333336e-05, + "loss": 1.6179556274414062, + "step": 318600 + }, + { + "epoch": 42.49333333333333, + "grad_norm": 0.7768269777297974, + "learning_rate": 2.8762866666666665e-05, + "loss": 1.619527587890625, + "step": 318700 + }, + { + "epoch": 42.50666666666667, + "grad_norm": 0.8096961379051208, + "learning_rate": 2.87562e-05, + "loss": 1.618616943359375, + "step": 318800 + }, + { + "epoch": 42.52, + "grad_norm": 0.7590042352676392, + "learning_rate": 2.8749533333333333e-05, + "loss": 1.6230258178710937, + "step": 318900 + }, + { + "epoch": 42.53333333333333, + "grad_norm": 0.8029301762580872, + "learning_rate": 2.874286666666667e-05, + "loss": 1.6235476684570314, + "step": 319000 + }, + { + "epoch": 42.54666666666667, + "grad_norm": 0.794658899307251, + "learning_rate": 2.87362e-05, + "loss": 1.6211264038085937, + "step": 319100 + }, + { + "epoch": 42.56, + "grad_norm": 0.843220591545105, + "learning_rate": 2.8729533333333337e-05, + "loss": 1.6271005249023438, + "step": 319200 + }, + { + "epoch": 42.57333333333333, + "grad_norm": 0.8237653374671936, + "learning_rate": 2.872286666666667e-05, + "loss": 1.6294674682617187, + "step": 319300 + }, + { + "epoch": 42.586666666666666, + "grad_norm": 0.8025068640708923, + "learning_rate": 2.8716199999999998e-05, + "loss": 1.6239111328125, + "step": 319400 + }, + { + "epoch": 42.6, + "grad_norm": 0.7929406762123108, + "learning_rate": 2.8709533333333334e-05, + "loss": 1.6274394226074218, + "step": 319500 + }, + { + "epoch": 42.61333333333333, + "grad_norm": 0.8021830320358276, + "learning_rate": 2.8702866666666666e-05, + "loss": 1.6309587097167968, + "step": 319600 + }, + { + "epoch": 42.626666666666665, + "grad_norm": 0.8247801661491394, + "learning_rate": 2.86962e-05, + "loss": 1.6306277465820314, + "step": 319700 + }, + { + "epoch": 42.64, + "grad_norm": 0.7925310134887695, + "learning_rate": 2.8689533333333334e-05, + "loss": 1.6312562561035155, + "step": 319800 + }, + { + "epoch": 42.653333333333336, + "grad_norm": 0.7969545722007751, + "learning_rate": 2.868286666666667e-05, + "loss": 1.6337765502929686, + "step": 319900 + }, + { + "epoch": 42.666666666666664, + "grad_norm": 0.8170307278633118, + "learning_rate": 2.86762e-05, + "loss": 1.6321212768554687, + "step": 320000 + }, + { + "epoch": 42.68, + "grad_norm": 0.77912837266922, + "learning_rate": 2.86696e-05, + "loss": 1.6315771484375, + "step": 320100 + }, + { + "epoch": 42.693333333333335, + "grad_norm": 0.788314938545227, + "learning_rate": 2.8662933333333336e-05, + "loss": 1.6329681396484375, + "step": 320200 + }, + { + "epoch": 42.70666666666666, + "grad_norm": 0.8608801960945129, + "learning_rate": 2.865626666666667e-05, + "loss": 1.6328976440429688, + "step": 320300 + }, + { + "epoch": 42.72, + "grad_norm": 0.8006208539009094, + "learning_rate": 2.8649599999999998e-05, + "loss": 1.6340364074707032, + "step": 320400 + }, + { + "epoch": 42.733333333333334, + "grad_norm": 0.7970700263977051, + "learning_rate": 2.8642933333333333e-05, + "loss": 1.633923797607422, + "step": 320500 + }, + { + "epoch": 42.74666666666667, + "grad_norm": 0.7704428434371948, + "learning_rate": 2.8636266666666665e-05, + "loss": 1.6360755920410157, + "step": 320600 + }, + { + "epoch": 42.76, + "grad_norm": 0.8283227682113647, + "learning_rate": 2.86296e-05, + "loss": 1.637872772216797, + "step": 320700 + }, + { + "epoch": 42.77333333333333, + "grad_norm": 0.851524293422699, + "learning_rate": 2.8622933333333333e-05, + "loss": 1.6359402465820312, + "step": 320800 + }, + { + "epoch": 42.78666666666667, + "grad_norm": 0.7893416881561279, + "learning_rate": 2.861626666666667e-05, + "loss": 1.6323648071289063, + "step": 320900 + }, + { + "epoch": 42.8, + "grad_norm": 0.8033201098442078, + "learning_rate": 2.8609600000000005e-05, + "loss": 1.6443894958496095, + "step": 321000 + }, + { + "epoch": 42.81333333333333, + "grad_norm": 0.8074483275413513, + "learning_rate": 2.8602933333333337e-05, + "loss": 1.639532470703125, + "step": 321100 + }, + { + "epoch": 42.82666666666667, + "grad_norm": 0.7866470217704773, + "learning_rate": 2.8596266666666666e-05, + "loss": 1.64190673828125, + "step": 321200 + }, + { + "epoch": 42.84, + "grad_norm": 0.8023852109909058, + "learning_rate": 2.8589599999999998e-05, + "loss": 1.638301239013672, + "step": 321300 + }, + { + "epoch": 42.85333333333333, + "grad_norm": 0.8220396637916565, + "learning_rate": 2.8582933333333334e-05, + "loss": 1.6426438903808593, + "step": 321400 + }, + { + "epoch": 42.86666666666667, + "grad_norm": 0.8232139945030212, + "learning_rate": 2.857626666666667e-05, + "loss": 1.6402984619140626, + "step": 321500 + }, + { + "epoch": 42.88, + "grad_norm": 0.8309381604194641, + "learning_rate": 2.8569600000000002e-05, + "loss": 1.636634521484375, + "step": 321600 + }, + { + "epoch": 42.89333333333333, + "grad_norm": 0.8182979226112366, + "learning_rate": 2.8562933333333337e-05, + "loss": 1.6453871154785156, + "step": 321700 + }, + { + "epoch": 42.906666666666666, + "grad_norm": 0.8423646688461304, + "learning_rate": 2.855626666666667e-05, + "loss": 1.6444189453125, + "step": 321800 + }, + { + "epoch": 42.92, + "grad_norm": 0.8091830015182495, + "learning_rate": 2.8549600000000005e-05, + "loss": 1.6435879516601561, + "step": 321900 + }, + { + "epoch": 42.93333333333333, + "grad_norm": 0.8040499091148376, + "learning_rate": 2.8542933333333334e-05, + "loss": 1.6471051025390624, + "step": 322000 + }, + { + "epoch": 42.946666666666665, + "grad_norm": 0.8056833148002625, + "learning_rate": 2.8536266666666666e-05, + "loss": 1.6470870971679688, + "step": 322100 + }, + { + "epoch": 42.96, + "grad_norm": 0.8252720832824707, + "learning_rate": 2.8529600000000002e-05, + "loss": 1.647276611328125, + "step": 322200 + }, + { + "epoch": 42.973333333333336, + "grad_norm": 0.7846107482910156, + "learning_rate": 2.8522933333333334e-05, + "loss": 1.6448028564453125, + "step": 322300 + }, + { + "epoch": 42.986666666666665, + "grad_norm": 0.8476292490959167, + "learning_rate": 2.851626666666667e-05, + "loss": 1.6520864868164062, + "step": 322400 + }, + { + "epoch": 43.0, + "grad_norm": 0.8160085678100586, + "learning_rate": 2.850966666666667e-05, + "loss": 1.6483326721191407, + "step": 322500 + }, + { + "epoch": 43.013333333333335, + "grad_norm": 0.8134644627571106, + "learning_rate": 2.8503e-05, + "loss": 1.564569854736328, + "step": 322600 + }, + { + "epoch": 43.026666666666664, + "grad_norm": 0.7962319850921631, + "learning_rate": 2.8496333333333337e-05, + "loss": 1.5676768493652344, + "step": 322700 + }, + { + "epoch": 43.04, + "grad_norm": 0.7382012009620667, + "learning_rate": 2.848966666666667e-05, + "loss": 1.566510467529297, + "step": 322800 + }, + { + "epoch": 43.053333333333335, + "grad_norm": 0.7968773245811462, + "learning_rate": 2.8483000000000005e-05, + "loss": 1.5708531188964843, + "step": 322900 + }, + { + "epoch": 43.06666666666667, + "grad_norm": 0.7553964853286743, + "learning_rate": 2.8476333333333334e-05, + "loss": 1.5697604370117189, + "step": 323000 + }, + { + "epoch": 43.08, + "grad_norm": 0.7678956389427185, + "learning_rate": 2.8469666666666666e-05, + "loss": 1.5742947387695312, + "step": 323100 + }, + { + "epoch": 43.093333333333334, + "grad_norm": 0.80665522813797, + "learning_rate": 2.8463000000000002e-05, + "loss": 1.5716915893554688, + "step": 323200 + }, + { + "epoch": 43.10666666666667, + "grad_norm": 0.8582669496536255, + "learning_rate": 2.8456333333333334e-05, + "loss": 1.5759283447265624, + "step": 323300 + }, + { + "epoch": 43.12, + "grad_norm": 0.8015368580818176, + "learning_rate": 2.844966666666667e-05, + "loss": 1.5717546081542968, + "step": 323400 + }, + { + "epoch": 43.13333333333333, + "grad_norm": 0.7866412997245789, + "learning_rate": 2.8443000000000002e-05, + "loss": 1.5720692443847657, + "step": 323500 + }, + { + "epoch": 43.14666666666667, + "grad_norm": 0.7602863311767578, + "learning_rate": 2.8436333333333338e-05, + "loss": 1.5750347900390624, + "step": 323600 + }, + { + "epoch": 43.16, + "grad_norm": 0.7865772843360901, + "learning_rate": 2.8429666666666666e-05, + "loss": 1.578832550048828, + "step": 323700 + }, + { + "epoch": 43.17333333333333, + "grad_norm": 0.7900835871696472, + "learning_rate": 2.8423e-05, + "loss": 1.576087188720703, + "step": 323800 + }, + { + "epoch": 43.18666666666667, + "grad_norm": 0.7576287984848022, + "learning_rate": 2.8416333333333334e-05, + "loss": 1.582108917236328, + "step": 323900 + }, + { + "epoch": 43.2, + "grad_norm": 0.8061697483062744, + "learning_rate": 2.8409666666666667e-05, + "loss": 1.5846551513671876, + "step": 324000 + }, + { + "epoch": 43.21333333333333, + "grad_norm": 0.8036941289901733, + "learning_rate": 2.8403000000000002e-05, + "loss": 1.5829280090332032, + "step": 324100 + }, + { + "epoch": 43.22666666666667, + "grad_norm": 0.81672602891922, + "learning_rate": 2.8396333333333335e-05, + "loss": 1.5833650207519532, + "step": 324200 + }, + { + "epoch": 43.24, + "grad_norm": 0.7637189626693726, + "learning_rate": 2.838966666666667e-05, + "loss": 1.5832330322265624, + "step": 324300 + }, + { + "epoch": 43.25333333333333, + "grad_norm": 0.810999870300293, + "learning_rate": 2.8383000000000003e-05, + "loss": 1.585732421875, + "step": 324400 + }, + { + "epoch": 43.266666666666666, + "grad_norm": 0.7959699034690857, + "learning_rate": 2.837633333333333e-05, + "loss": 1.5903799438476562, + "step": 324500 + }, + { + "epoch": 43.28, + "grad_norm": 0.8153569102287292, + "learning_rate": 2.8369666666666667e-05, + "loss": 1.5871414184570312, + "step": 324600 + }, + { + "epoch": 43.29333333333334, + "grad_norm": 0.7914409637451172, + "learning_rate": 2.8363066666666666e-05, + "loss": 1.5875323486328126, + "step": 324700 + }, + { + "epoch": 43.306666666666665, + "grad_norm": 0.7989243268966675, + "learning_rate": 2.83564e-05, + "loss": 1.5916000366210938, + "step": 324800 + }, + { + "epoch": 43.32, + "grad_norm": 0.7825499773025513, + "learning_rate": 2.8349733333333334e-05, + "loss": 1.5893446350097655, + "step": 324900 + }, + { + "epoch": 43.333333333333336, + "grad_norm": 0.8575960993766785, + "learning_rate": 2.8343066666666666e-05, + "loss": 1.5977841186523438, + "step": 325000 + }, + { + "epoch": 43.346666666666664, + "grad_norm": 0.8244292736053467, + "learning_rate": 2.8336400000000002e-05, + "loss": 1.601702880859375, + "step": 325100 + }, + { + "epoch": 43.36, + "grad_norm": 0.7933399677276611, + "learning_rate": 2.8329733333333334e-05, + "loss": 1.5982562255859376, + "step": 325200 + }, + { + "epoch": 43.373333333333335, + "grad_norm": 0.767894446849823, + "learning_rate": 2.832306666666667e-05, + "loss": 1.5982928466796875, + "step": 325300 + }, + { + "epoch": 43.38666666666666, + "grad_norm": 0.7718991041183472, + "learning_rate": 2.8316400000000006e-05, + "loss": 1.595538330078125, + "step": 325400 + }, + { + "epoch": 43.4, + "grad_norm": 0.8214613795280457, + "learning_rate": 2.830973333333333e-05, + "loss": 1.5974700927734375, + "step": 325500 + }, + { + "epoch": 43.413333333333334, + "grad_norm": 0.7975192666053772, + "learning_rate": 2.8303066666666667e-05, + "loss": 1.5963027954101563, + "step": 325600 + }, + { + "epoch": 43.42666666666667, + "grad_norm": 0.8252496123313904, + "learning_rate": 2.8296400000000002e-05, + "loss": 1.602006072998047, + "step": 325700 + }, + { + "epoch": 43.44, + "grad_norm": 0.7980925440788269, + "learning_rate": 2.8289733333333335e-05, + "loss": 1.5992507934570312, + "step": 325800 + }, + { + "epoch": 43.45333333333333, + "grad_norm": 0.8060539960861206, + "learning_rate": 2.828306666666667e-05, + "loss": 1.6028526306152344, + "step": 325900 + }, + { + "epoch": 43.46666666666667, + "grad_norm": 0.8016360998153687, + "learning_rate": 2.8276400000000003e-05, + "loss": 1.6021473693847657, + "step": 326000 + }, + { + "epoch": 43.48, + "grad_norm": 0.8183965086936951, + "learning_rate": 2.8269733333333338e-05, + "loss": 1.604202117919922, + "step": 326100 + }, + { + "epoch": 43.49333333333333, + "grad_norm": 0.8167826533317566, + "learning_rate": 2.8263066666666667e-05, + "loss": 1.6037716674804687, + "step": 326200 + }, + { + "epoch": 43.50666666666667, + "grad_norm": 0.822792649269104, + "learning_rate": 2.82564e-05, + "loss": 1.6101824951171875, + "step": 326300 + }, + { + "epoch": 43.52, + "grad_norm": 0.8114305734634399, + "learning_rate": 2.8249733333333335e-05, + "loss": 1.6087193298339844, + "step": 326400 + }, + { + "epoch": 43.53333333333333, + "grad_norm": 0.7822854518890381, + "learning_rate": 2.8243066666666667e-05, + "loss": 1.6054570007324218, + "step": 326500 + }, + { + "epoch": 43.54666666666667, + "grad_norm": 0.8089674115180969, + "learning_rate": 2.8236400000000003e-05, + "loss": 1.6116357421875, + "step": 326600 + }, + { + "epoch": 43.56, + "grad_norm": 0.8371312618255615, + "learning_rate": 2.8229733333333335e-05, + "loss": 1.6092622375488281, + "step": 326700 + }, + { + "epoch": 43.57333333333333, + "grad_norm": 0.8427196145057678, + "learning_rate": 2.822306666666667e-05, + "loss": 1.6071795654296874, + "step": 326800 + }, + { + "epoch": 43.586666666666666, + "grad_norm": 0.8295238614082336, + "learning_rate": 2.8216400000000003e-05, + "loss": 1.6127923583984376, + "step": 326900 + }, + { + "epoch": 43.6, + "grad_norm": 0.7599214315414429, + "learning_rate": 2.8209733333333332e-05, + "loss": 1.6075257873535156, + "step": 327000 + }, + { + "epoch": 43.61333333333333, + "grad_norm": 0.8173493146896362, + "learning_rate": 2.8203133333333338e-05, + "loss": 1.614122314453125, + "step": 327100 + }, + { + "epoch": 43.626666666666665, + "grad_norm": 0.8332886695861816, + "learning_rate": 2.8196466666666667e-05, + "loss": 1.6084408569335937, + "step": 327200 + }, + { + "epoch": 43.64, + "grad_norm": 0.7986454367637634, + "learning_rate": 2.81898e-05, + "loss": 1.611384735107422, + "step": 327300 + }, + { + "epoch": 43.653333333333336, + "grad_norm": 0.810438334941864, + "learning_rate": 2.8183133333333335e-05, + "loss": 1.6099681091308593, + "step": 327400 + }, + { + "epoch": 43.666666666666664, + "grad_norm": 0.8122630715370178, + "learning_rate": 2.8176466666666667e-05, + "loss": 1.6159297180175782, + "step": 327500 + }, + { + "epoch": 43.68, + "grad_norm": 0.8273375630378723, + "learning_rate": 2.8169800000000003e-05, + "loss": 1.61582275390625, + "step": 327600 + }, + { + "epoch": 43.693333333333335, + "grad_norm": 0.8308714628219604, + "learning_rate": 2.8163133333333335e-05, + "loss": 1.6199285888671875, + "step": 327700 + }, + { + "epoch": 43.70666666666666, + "grad_norm": 0.8172910809516907, + "learning_rate": 2.815646666666667e-05, + "loss": 1.6155218505859374, + "step": 327800 + }, + { + "epoch": 43.72, + "grad_norm": 0.8160513639450073, + "learning_rate": 2.8149800000000003e-05, + "loss": 1.6149066162109376, + "step": 327900 + }, + { + "epoch": 43.733333333333334, + "grad_norm": 0.8249967098236084, + "learning_rate": 2.814313333333333e-05, + "loss": 1.6162269592285157, + "step": 328000 + }, + { + "epoch": 43.74666666666667, + "grad_norm": 0.8377850651741028, + "learning_rate": 2.8136466666666667e-05, + "loss": 1.618191680908203, + "step": 328100 + }, + { + "epoch": 43.76, + "grad_norm": 0.8137295842170715, + "learning_rate": 2.81298e-05, + "loss": 1.6187442016601563, + "step": 328200 + }, + { + "epoch": 43.77333333333333, + "grad_norm": 0.837970495223999, + "learning_rate": 2.8123133333333335e-05, + "loss": 1.6166807556152343, + "step": 328300 + }, + { + "epoch": 43.78666666666667, + "grad_norm": 0.8243003487586975, + "learning_rate": 2.8116466666666668e-05, + "loss": 1.616520233154297, + "step": 328400 + }, + { + "epoch": 43.8, + "grad_norm": 0.803848147392273, + "learning_rate": 2.8109800000000003e-05, + "loss": 1.6198391723632812, + "step": 328500 + }, + { + "epoch": 43.81333333333333, + "grad_norm": 0.833913266658783, + "learning_rate": 2.8103133333333335e-05, + "loss": 1.6213204956054688, + "step": 328600 + }, + { + "epoch": 43.82666666666667, + "grad_norm": 0.8218970894813538, + "learning_rate": 2.8096466666666664e-05, + "loss": 1.6247633361816407, + "step": 328700 + }, + { + "epoch": 43.84, + "grad_norm": 0.7986996173858643, + "learning_rate": 2.80898e-05, + "loss": 1.6211305236816407, + "step": 328800 + }, + { + "epoch": 43.85333333333333, + "grad_norm": 0.8100335597991943, + "learning_rate": 2.8083133333333332e-05, + "loss": 1.6219183349609374, + "step": 328900 + }, + { + "epoch": 43.86666666666667, + "grad_norm": 0.8108803033828735, + "learning_rate": 2.8076466666666668e-05, + "loss": 1.625777587890625, + "step": 329000 + }, + { + "epoch": 43.88, + "grad_norm": 0.8235127329826355, + "learning_rate": 2.80698e-05, + "loss": 1.6242713928222656, + "step": 329100 + }, + { + "epoch": 43.89333333333333, + "grad_norm": 0.8156707882881165, + "learning_rate": 2.8063133333333336e-05, + "loss": 1.6232484436035157, + "step": 329200 + }, + { + "epoch": 43.906666666666666, + "grad_norm": 0.8078377842903137, + "learning_rate": 2.805646666666667e-05, + "loss": 1.628054656982422, + "step": 329300 + }, + { + "epoch": 43.92, + "grad_norm": 0.8015416264533997, + "learning_rate": 2.8049866666666667e-05, + "loss": 1.6264244079589845, + "step": 329400 + }, + { + "epoch": 43.93333333333333, + "grad_norm": 0.8207682967185974, + "learning_rate": 2.8043200000000003e-05, + "loss": 1.6302552795410157, + "step": 329500 + }, + { + "epoch": 43.946666666666665, + "grad_norm": 0.8398280739784241, + "learning_rate": 2.803653333333334e-05, + "loss": 1.6280979919433594, + "step": 329600 + }, + { + "epoch": 43.96, + "grad_norm": 0.8197426199913025, + "learning_rate": 2.8029866666666664e-05, + "loss": 1.628609619140625, + "step": 329700 + }, + { + "epoch": 43.973333333333336, + "grad_norm": 0.8169100284576416, + "learning_rate": 2.80232e-05, + "loss": 1.6312359619140624, + "step": 329800 + }, + { + "epoch": 43.986666666666665, + "grad_norm": 0.83058100938797, + "learning_rate": 2.8016533333333332e-05, + "loss": 1.6318269348144532, + "step": 329900 + }, + { + "epoch": 44.0, + "grad_norm": 0.8323699831962585, + "learning_rate": 2.8009866666666668e-05, + "loss": 1.630924072265625, + "step": 330000 + }, + { + "epoch": 44.013333333333335, + "grad_norm": 0.7513566613197327, + "learning_rate": 2.8003200000000003e-05, + "loss": 1.5481965637207031, + "step": 330100 + }, + { + "epoch": 44.026666666666664, + "grad_norm": 0.795397162437439, + "learning_rate": 2.7996533333333335e-05, + "loss": 1.548214874267578, + "step": 330200 + }, + { + "epoch": 44.04, + "grad_norm": 0.8049753904342651, + "learning_rate": 2.798986666666667e-05, + "loss": 1.5531326293945313, + "step": 330300 + }, + { + "epoch": 44.053333333333335, + "grad_norm": 0.8120512366294861, + "learning_rate": 2.7983200000000003e-05, + "loss": 1.5544256591796874, + "step": 330400 + }, + { + "epoch": 44.06666666666667, + "grad_norm": 0.7974734306335449, + "learning_rate": 2.7976533333333332e-05, + "loss": 1.5533895874023438, + "step": 330500 + }, + { + "epoch": 44.08, + "grad_norm": 0.7629339098930359, + "learning_rate": 2.7969866666666668e-05, + "loss": 1.5582643127441407, + "step": 330600 + }, + { + "epoch": 44.093333333333334, + "grad_norm": 0.8154823184013367, + "learning_rate": 2.79632e-05, + "loss": 1.5581031799316407, + "step": 330700 + }, + { + "epoch": 44.10666666666667, + "grad_norm": 0.7857486605644226, + "learning_rate": 2.7956533333333336e-05, + "loss": 1.5564183044433593, + "step": 330800 + }, + { + "epoch": 44.12, + "grad_norm": 0.787510097026825, + "learning_rate": 2.7949866666666668e-05, + "loss": 1.5604660034179687, + "step": 330900 + }, + { + "epoch": 44.13333333333333, + "grad_norm": 0.8060212135314941, + "learning_rate": 2.7943200000000004e-05, + "loss": 1.5654124450683593, + "step": 331000 + }, + { + "epoch": 44.14666666666667, + "grad_norm": 0.7761242389678955, + "learning_rate": 2.7936533333333336e-05, + "loss": 1.5596726989746095, + "step": 331100 + }, + { + "epoch": 44.16, + "grad_norm": 0.8251379132270813, + "learning_rate": 2.7929866666666665e-05, + "loss": 1.5614840698242187, + "step": 331200 + }, + { + "epoch": 44.17333333333333, + "grad_norm": 0.7911105155944824, + "learning_rate": 2.79232e-05, + "loss": 1.56426025390625, + "step": 331300 + }, + { + "epoch": 44.18666666666667, + "grad_norm": 0.8405753374099731, + "learning_rate": 2.7916533333333333e-05, + "loss": 1.5673910522460937, + "step": 331400 + }, + { + "epoch": 44.2, + "grad_norm": 0.8145385384559631, + "learning_rate": 2.790986666666667e-05, + "loss": 1.5684516906738282, + "step": 331500 + }, + { + "epoch": 44.21333333333333, + "grad_norm": 0.773007333278656, + "learning_rate": 2.7903266666666668e-05, + "loss": 1.5602330017089843, + "step": 331600 + }, + { + "epoch": 44.22666666666667, + "grad_norm": 0.7946937680244446, + "learning_rate": 2.78966e-05, + "loss": 1.5710047912597656, + "step": 331700 + }, + { + "epoch": 44.24, + "grad_norm": 0.7660664916038513, + "learning_rate": 2.7889933333333336e-05, + "loss": 1.5709490966796875, + "step": 331800 + }, + { + "epoch": 44.25333333333333, + "grad_norm": 0.8005920052528381, + "learning_rate": 2.7883266666666668e-05, + "loss": 1.574346160888672, + "step": 331900 + }, + { + "epoch": 44.266666666666666, + "grad_norm": 0.7568239569664001, + "learning_rate": 2.7876600000000003e-05, + "loss": 1.5710443115234376, + "step": 332000 + }, + { + "epoch": 44.28, + "grad_norm": 0.7837048172950745, + "learning_rate": 2.7869933333333336e-05, + "loss": 1.5691023254394532, + "step": 332100 + }, + { + "epoch": 44.29333333333334, + "grad_norm": 0.8391625881195068, + "learning_rate": 2.7863266666666665e-05, + "loss": 1.5703250122070314, + "step": 332200 + }, + { + "epoch": 44.306666666666665, + "grad_norm": 0.8348113298416138, + "learning_rate": 2.78566e-05, + "loss": 1.5742678833007813, + "step": 332300 + }, + { + "epoch": 44.32, + "grad_norm": 0.8065680861473083, + "learning_rate": 2.7849933333333333e-05, + "loss": 1.574197998046875, + "step": 332400 + }, + { + "epoch": 44.333333333333336, + "grad_norm": 0.810249388217926, + "learning_rate": 2.7843266666666668e-05, + "loss": 1.5787997436523438, + "step": 332500 + }, + { + "epoch": 44.346666666666664, + "grad_norm": 0.8214126229286194, + "learning_rate": 2.78366e-05, + "loss": 1.5753494262695313, + "step": 332600 + }, + { + "epoch": 44.36, + "grad_norm": 0.7763717770576477, + "learning_rate": 2.7829933333333336e-05, + "loss": 1.5762429809570313, + "step": 332700 + }, + { + "epoch": 44.373333333333335, + "grad_norm": 0.8266735076904297, + "learning_rate": 2.782326666666667e-05, + "loss": 1.5780609130859375, + "step": 332800 + }, + { + "epoch": 44.38666666666666, + "grad_norm": 0.7696077823638916, + "learning_rate": 2.7816600000000004e-05, + "loss": 1.5806687927246095, + "step": 332900 + }, + { + "epoch": 44.4, + "grad_norm": 0.8544163703918457, + "learning_rate": 2.7809933333333333e-05, + "loss": 1.5851622009277344, + "step": 333000 + }, + { + "epoch": 44.413333333333334, + "grad_norm": 0.8484505414962769, + "learning_rate": 2.7803266666666665e-05, + "loss": 1.581590576171875, + "step": 333100 + }, + { + "epoch": 44.42666666666667, + "grad_norm": 0.8385995626449585, + "learning_rate": 2.77966e-05, + "loss": 1.5861528015136719, + "step": 333200 + }, + { + "epoch": 44.44, + "grad_norm": 0.8071863651275635, + "learning_rate": 2.7789933333333333e-05, + "loss": 1.5843661499023438, + "step": 333300 + }, + { + "epoch": 44.45333333333333, + "grad_norm": 0.7563880085945129, + "learning_rate": 2.778326666666667e-05, + "loss": 1.5832810974121094, + "step": 333400 + }, + { + "epoch": 44.46666666666667, + "grad_norm": 0.8372814655303955, + "learning_rate": 2.77766e-05, + "loss": 1.5854434204101562, + "step": 333500 + }, + { + "epoch": 44.48, + "grad_norm": 0.8299968838691711, + "learning_rate": 2.777e-05, + "loss": 1.5830865478515626, + "step": 333600 + }, + { + "epoch": 44.49333333333333, + "grad_norm": 0.8309788107872009, + "learning_rate": 2.7763333333333336e-05, + "loss": 1.5840238952636718, + "step": 333700 + }, + { + "epoch": 44.50666666666667, + "grad_norm": 0.8194689154624939, + "learning_rate": 2.7756666666666668e-05, + "loss": 1.5837715148925782, + "step": 333800 + }, + { + "epoch": 44.52, + "grad_norm": 0.8060626983642578, + "learning_rate": 2.7750000000000004e-05, + "loss": 1.5884098815917969, + "step": 333900 + }, + { + "epoch": 44.53333333333333, + "grad_norm": 0.8061336278915405, + "learning_rate": 2.7743333333333333e-05, + "loss": 1.588507080078125, + "step": 334000 + }, + { + "epoch": 44.54666666666667, + "grad_norm": 0.8367504477500916, + "learning_rate": 2.7736666666666665e-05, + "loss": 1.5918386840820313, + "step": 334100 + }, + { + "epoch": 44.56, + "grad_norm": 0.7728124260902405, + "learning_rate": 2.773e-05, + "loss": 1.5909431457519532, + "step": 334200 + }, + { + "epoch": 44.57333333333333, + "grad_norm": 0.8325085639953613, + "learning_rate": 2.7723333333333336e-05, + "loss": 1.592117156982422, + "step": 334300 + }, + { + "epoch": 44.586666666666666, + "grad_norm": 0.8074480295181274, + "learning_rate": 2.771666666666667e-05, + "loss": 1.5892124938964844, + "step": 334400 + }, + { + "epoch": 44.6, + "grad_norm": 0.8252527117729187, + "learning_rate": 2.7710000000000004e-05, + "loss": 1.5915934753417968, + "step": 334500 + }, + { + "epoch": 44.61333333333333, + "grad_norm": 0.8227205276489258, + "learning_rate": 2.7703333333333336e-05, + "loss": 1.5954025268554688, + "step": 334600 + }, + { + "epoch": 44.626666666666665, + "grad_norm": 0.7897677421569824, + "learning_rate": 2.7696666666666672e-05, + "loss": 1.595858154296875, + "step": 334700 + }, + { + "epoch": 44.64, + "grad_norm": 0.8313090801239014, + "learning_rate": 2.769e-05, + "loss": 1.5937057495117188, + "step": 334800 + }, + { + "epoch": 44.653333333333336, + "grad_norm": 0.8491702675819397, + "learning_rate": 2.7683333333333333e-05, + "loss": 1.5937522888183593, + "step": 334900 + }, + { + "epoch": 44.666666666666664, + "grad_norm": 0.8034929633140564, + "learning_rate": 2.767666666666667e-05, + "loss": 1.5955474853515625, + "step": 335000 + }, + { + "epoch": 44.68, + "grad_norm": 0.8023072481155396, + "learning_rate": 2.767e-05, + "loss": 1.5998284912109375, + "step": 335100 + }, + { + "epoch": 44.693333333333335, + "grad_norm": 0.8060296177864075, + "learning_rate": 2.7663333333333337e-05, + "loss": 1.5983045959472657, + "step": 335200 + }, + { + "epoch": 44.70666666666666, + "grad_norm": 0.8240456581115723, + "learning_rate": 2.765666666666667e-05, + "loss": 1.6016310119628907, + "step": 335300 + }, + { + "epoch": 44.72, + "grad_norm": 0.8086797595024109, + "learning_rate": 2.7650000000000005e-05, + "loss": 1.5979426574707032, + "step": 335400 + }, + { + "epoch": 44.733333333333334, + "grad_norm": 0.868865966796875, + "learning_rate": 2.7643333333333334e-05, + "loss": 1.6031364440917968, + "step": 335500 + }, + { + "epoch": 44.74666666666667, + "grad_norm": 0.8430706858634949, + "learning_rate": 2.7636733333333336e-05, + "loss": 1.599954833984375, + "step": 335600 + }, + { + "epoch": 44.76, + "grad_norm": 0.8253472447395325, + "learning_rate": 2.763006666666667e-05, + "loss": 1.5997967529296875, + "step": 335700 + }, + { + "epoch": 44.77333333333333, + "grad_norm": 0.8024996519088745, + "learning_rate": 2.76234e-05, + "loss": 1.603931884765625, + "step": 335800 + }, + { + "epoch": 44.78666666666667, + "grad_norm": 0.8097237348556519, + "learning_rate": 2.7616733333333333e-05, + "loss": 1.60475830078125, + "step": 335900 + }, + { + "epoch": 44.8, + "grad_norm": 0.7891868352890015, + "learning_rate": 2.761006666666667e-05, + "loss": 1.5993539428710937, + "step": 336000 + }, + { + "epoch": 44.81333333333333, + "grad_norm": 0.7946909070014954, + "learning_rate": 2.76034e-05, + "loss": 1.608636932373047, + "step": 336100 + }, + { + "epoch": 44.82666666666667, + "grad_norm": 0.8104386329650879, + "learning_rate": 2.7596733333333336e-05, + "loss": 1.6042922973632812, + "step": 336200 + }, + { + "epoch": 44.84, + "grad_norm": 0.8731896281242371, + "learning_rate": 2.759006666666667e-05, + "loss": 1.6097525024414063, + "step": 336300 + }, + { + "epoch": 44.85333333333333, + "grad_norm": 0.8121789693832397, + "learning_rate": 2.7583400000000004e-05, + "loss": 1.606430206298828, + "step": 336400 + }, + { + "epoch": 44.86666666666667, + "grad_norm": 0.8330267667770386, + "learning_rate": 2.7576733333333333e-05, + "loss": 1.6087510681152344, + "step": 336500 + }, + { + "epoch": 44.88, + "grad_norm": 0.852932333946228, + "learning_rate": 2.7570066666666665e-05, + "loss": 1.6065789794921874, + "step": 336600 + }, + { + "epoch": 44.89333333333333, + "grad_norm": 0.8132789134979248, + "learning_rate": 2.75634e-05, + "loss": 1.6074699401855468, + "step": 336700 + }, + { + "epoch": 44.906666666666666, + "grad_norm": 0.8489792943000793, + "learning_rate": 2.7556733333333333e-05, + "loss": 1.606990509033203, + "step": 336800 + }, + { + "epoch": 44.92, + "grad_norm": 0.8278707265853882, + "learning_rate": 2.755006666666667e-05, + "loss": 1.6092149353027343, + "step": 336900 + }, + { + "epoch": 44.93333333333333, + "grad_norm": 0.8030561804771423, + "learning_rate": 2.75434e-05, + "loss": 1.6118333435058594, + "step": 337000 + }, + { + "epoch": 44.946666666666665, + "grad_norm": 0.8444882035255432, + "learning_rate": 2.7536733333333337e-05, + "loss": 1.61545166015625, + "step": 337100 + }, + { + "epoch": 44.96, + "grad_norm": 0.7839025259017944, + "learning_rate": 2.753006666666667e-05, + "loss": 1.6124861145019531, + "step": 337200 + }, + { + "epoch": 44.973333333333336, + "grad_norm": 0.8304545283317566, + "learning_rate": 2.7523399999999998e-05, + "loss": 1.6095152282714844, + "step": 337300 + }, + { + "epoch": 44.986666666666665, + "grad_norm": 0.822806179523468, + "learning_rate": 2.7516733333333334e-05, + "loss": 1.6171923828125, + "step": 337400 + }, + { + "epoch": 45.0, + "grad_norm": 0.8254655003547668, + "learning_rate": 2.7510066666666666e-05, + "loss": 1.61357666015625, + "step": 337500 + }, + { + "epoch": 45.013333333333335, + "grad_norm": 0.75385981798172, + "learning_rate": 2.7503466666666665e-05, + "loss": 1.5345475769042969, + "step": 337600 + }, + { + "epoch": 45.026666666666664, + "grad_norm": 0.7878371477127075, + "learning_rate": 2.74968e-05, + "loss": 1.5335455322265625, + "step": 337700 + }, + { + "epoch": 45.04, + "grad_norm": 0.7791154384613037, + "learning_rate": 2.7490133333333333e-05, + "loss": 1.5394093322753906, + "step": 337800 + }, + { + "epoch": 45.053333333333335, + "grad_norm": 0.8024111390113831, + "learning_rate": 2.748346666666667e-05, + "loss": 1.5331953430175782, + "step": 337900 + }, + { + "epoch": 45.06666666666667, + "grad_norm": 0.8430346846580505, + "learning_rate": 2.74768e-05, + "loss": 1.5368072509765625, + "step": 338000 + }, + { + "epoch": 45.08, + "grad_norm": 0.8052778840065002, + "learning_rate": 2.7470133333333337e-05, + "loss": 1.546075439453125, + "step": 338100 + }, + { + "epoch": 45.093333333333334, + "grad_norm": 0.7933223843574524, + "learning_rate": 2.7463466666666672e-05, + "loss": 1.5412501525878906, + "step": 338200 + }, + { + "epoch": 45.10666666666667, + "grad_norm": 0.801228940486908, + "learning_rate": 2.7456799999999998e-05, + "loss": 1.539934844970703, + "step": 338300 + }, + { + "epoch": 45.12, + "grad_norm": 0.7986882328987122, + "learning_rate": 2.7450133333333333e-05, + "loss": 1.5405552673339844, + "step": 338400 + }, + { + "epoch": 45.13333333333333, + "grad_norm": 0.8069292306900024, + "learning_rate": 2.7443466666666666e-05, + "loss": 1.545841064453125, + "step": 338500 + }, + { + "epoch": 45.14666666666667, + "grad_norm": 0.7927032113075256, + "learning_rate": 2.74368e-05, + "loss": 1.5462718200683594, + "step": 338600 + }, + { + "epoch": 45.16, + "grad_norm": 0.7794001698493958, + "learning_rate": 2.7430133333333337e-05, + "loss": 1.5485234069824219, + "step": 338700 + }, + { + "epoch": 45.17333333333333, + "grad_norm": 0.7855547070503235, + "learning_rate": 2.742346666666667e-05, + "loss": 1.5519866943359375, + "step": 338800 + }, + { + "epoch": 45.18666666666667, + "grad_norm": 0.8333518505096436, + "learning_rate": 2.7416800000000005e-05, + "loss": 1.5467234802246095, + "step": 338900 + }, + { + "epoch": 45.2, + "grad_norm": 0.8590301275253296, + "learning_rate": 2.7410133333333334e-05, + "loss": 1.5527265930175782, + "step": 339000 + }, + { + "epoch": 45.21333333333333, + "grad_norm": 0.8133448958396912, + "learning_rate": 2.7403466666666666e-05, + "loss": 1.5531710815429687, + "step": 339100 + }, + { + "epoch": 45.22666666666667, + "grad_norm": 0.843085527420044, + "learning_rate": 2.7396800000000002e-05, + "loss": 1.552749786376953, + "step": 339200 + }, + { + "epoch": 45.24, + "grad_norm": 0.8271104693412781, + "learning_rate": 2.7390133333333334e-05, + "loss": 1.55497802734375, + "step": 339300 + }, + { + "epoch": 45.25333333333333, + "grad_norm": 0.7889156937599182, + "learning_rate": 2.738346666666667e-05, + "loss": 1.554407958984375, + "step": 339400 + }, + { + "epoch": 45.266666666666666, + "grad_norm": 0.8237720131874084, + "learning_rate": 2.7376800000000002e-05, + "loss": 1.5559963989257812, + "step": 339500 + }, + { + "epoch": 45.28, + "grad_norm": 0.8432164192199707, + "learning_rate": 2.7370133333333338e-05, + "loss": 1.5602865600585938, + "step": 339600 + }, + { + "epoch": 45.29333333333334, + "grad_norm": 0.8066620826721191, + "learning_rate": 2.7363533333333337e-05, + "loss": 1.5569775390625, + "step": 339700 + }, + { + "epoch": 45.306666666666665, + "grad_norm": 0.8251729011535645, + "learning_rate": 2.735686666666667e-05, + "loss": 1.5603398132324218, + "step": 339800 + }, + { + "epoch": 45.32, + "grad_norm": 0.8274789452552795, + "learning_rate": 2.7350200000000005e-05, + "loss": 1.5607125854492188, + "step": 339900 + }, + { + "epoch": 45.333333333333336, + "grad_norm": 0.7985981702804565, + "learning_rate": 2.7343533333333333e-05, + "loss": 1.5612689208984376, + "step": 340000 + }, + { + "epoch": 45.346666666666664, + "grad_norm": 0.8099194765090942, + "learning_rate": 2.7336866666666666e-05, + "loss": 1.5611070251464845, + "step": 340100 + }, + { + "epoch": 45.36, + "grad_norm": 0.7862045764923096, + "learning_rate": 2.73302e-05, + "loss": 1.561177978515625, + "step": 340200 + }, + { + "epoch": 45.373333333333335, + "grad_norm": 0.8008959293365479, + "learning_rate": 2.7323533333333334e-05, + "loss": 1.5632902526855468, + "step": 340300 + }, + { + "epoch": 45.38666666666666, + "grad_norm": 0.8084346055984497, + "learning_rate": 2.731686666666667e-05, + "loss": 1.56494384765625, + "step": 340400 + }, + { + "epoch": 45.4, + "grad_norm": 0.7950522303581238, + "learning_rate": 2.73102e-05, + "loss": 1.563892822265625, + "step": 340500 + }, + { + "epoch": 45.413333333333334, + "grad_norm": 0.8112916350364685, + "learning_rate": 2.7303533333333337e-05, + "loss": 1.5658737182617188, + "step": 340600 + }, + { + "epoch": 45.42666666666667, + "grad_norm": 0.8019904494285583, + "learning_rate": 2.729686666666667e-05, + "loss": 1.5665919494628906, + "step": 340700 + }, + { + "epoch": 45.44, + "grad_norm": 0.8604961037635803, + "learning_rate": 2.72902e-05, + "loss": 1.5618829345703125, + "step": 340800 + }, + { + "epoch": 45.45333333333333, + "grad_norm": 0.8297909498214722, + "learning_rate": 2.7283533333333334e-05, + "loss": 1.5690985107421875, + "step": 340900 + }, + { + "epoch": 45.46666666666667, + "grad_norm": 0.8290330171585083, + "learning_rate": 2.7276866666666666e-05, + "loss": 1.5725372314453125, + "step": 341000 + }, + { + "epoch": 45.48, + "grad_norm": 0.8196405172348022, + "learning_rate": 2.7270200000000002e-05, + "loss": 1.5716435241699218, + "step": 341100 + }, + { + "epoch": 45.49333333333333, + "grad_norm": 0.8516254425048828, + "learning_rate": 2.7263533333333334e-05, + "loss": 1.5708955383300782, + "step": 341200 + }, + { + "epoch": 45.50666666666667, + "grad_norm": 0.8195080161094666, + "learning_rate": 2.725686666666667e-05, + "loss": 1.5677909851074219, + "step": 341300 + }, + { + "epoch": 45.52, + "grad_norm": 0.8368141055107117, + "learning_rate": 2.7250200000000002e-05, + "loss": 1.5750044250488282, + "step": 341400 + }, + { + "epoch": 45.53333333333333, + "grad_norm": 0.8141370415687561, + "learning_rate": 2.724353333333333e-05, + "loss": 1.5710145568847655, + "step": 341500 + }, + { + "epoch": 45.54666666666667, + "grad_norm": 0.8688223361968994, + "learning_rate": 2.7236866666666667e-05, + "loss": 1.577767333984375, + "step": 341600 + }, + { + "epoch": 45.56, + "grad_norm": 0.8282235860824585, + "learning_rate": 2.723026666666667e-05, + "loss": 1.5752143859863281, + "step": 341700 + }, + { + "epoch": 45.57333333333333, + "grad_norm": 0.8183776140213013, + "learning_rate": 2.7223599999999998e-05, + "loss": 1.5708876037597657, + "step": 341800 + }, + { + "epoch": 45.586666666666666, + "grad_norm": 0.820489227771759, + "learning_rate": 2.7216933333333334e-05, + "loss": 1.5763885498046875, + "step": 341900 + }, + { + "epoch": 45.6, + "grad_norm": 0.7990655899047852, + "learning_rate": 2.7210266666666666e-05, + "loss": 1.579280242919922, + "step": 342000 + }, + { + "epoch": 45.61333333333333, + "grad_norm": 0.8262766003608704, + "learning_rate": 2.72036e-05, + "loss": 1.5800761413574218, + "step": 342100 + }, + { + "epoch": 45.626666666666665, + "grad_norm": 0.8294216990470886, + "learning_rate": 2.7196933333333334e-05, + "loss": 1.5776101684570312, + "step": 342200 + }, + { + "epoch": 45.64, + "grad_norm": 0.8527024984359741, + "learning_rate": 2.719026666666667e-05, + "loss": 1.5793777465820313, + "step": 342300 + }, + { + "epoch": 45.653333333333336, + "grad_norm": 0.8285980224609375, + "learning_rate": 2.7183600000000005e-05, + "loss": 1.5826039123535156, + "step": 342400 + }, + { + "epoch": 45.666666666666664, + "grad_norm": 0.7973678708076477, + "learning_rate": 2.717693333333333e-05, + "loss": 1.5825093078613282, + "step": 342500 + }, + { + "epoch": 45.68, + "grad_norm": 0.8386090993881226, + "learning_rate": 2.7170266666666666e-05, + "loss": 1.5819102478027345, + "step": 342600 + }, + { + "epoch": 45.693333333333335, + "grad_norm": 0.8596566915512085, + "learning_rate": 2.71636e-05, + "loss": 1.5824310302734375, + "step": 342700 + }, + { + "epoch": 45.70666666666666, + "grad_norm": 0.84074467420578, + "learning_rate": 2.7156933333333334e-05, + "loss": 1.5835606384277343, + "step": 342800 + }, + { + "epoch": 45.72, + "grad_norm": 0.8335156440734863, + "learning_rate": 2.715026666666667e-05, + "loss": 1.5831988525390626, + "step": 342900 + }, + { + "epoch": 45.733333333333334, + "grad_norm": 0.8545652031898499, + "learning_rate": 2.7143600000000002e-05, + "loss": 1.5821173095703125, + "step": 343000 + }, + { + "epoch": 45.74666666666667, + "grad_norm": 0.8127861022949219, + "learning_rate": 2.7136933333333338e-05, + "loss": 1.5852001953125, + "step": 343100 + }, + { + "epoch": 45.76, + "grad_norm": 0.8396148085594177, + "learning_rate": 2.713026666666667e-05, + "loss": 1.5899464416503906, + "step": 343200 + }, + { + "epoch": 45.77333333333333, + "grad_norm": 0.8626675605773926, + "learning_rate": 2.71236e-05, + "loss": 1.5838290405273439, + "step": 343300 + }, + { + "epoch": 45.78666666666667, + "grad_norm": 0.8253298997879028, + "learning_rate": 2.7116933333333335e-05, + "loss": 1.5856344604492187, + "step": 343400 + }, + { + "epoch": 45.8, + "grad_norm": 0.8361122012138367, + "learning_rate": 2.7110266666666667e-05, + "loss": 1.5906475830078124, + "step": 343500 + }, + { + "epoch": 45.81333333333333, + "grad_norm": 0.7877110242843628, + "learning_rate": 2.7103600000000003e-05, + "loss": 1.5869761657714845, + "step": 343600 + }, + { + "epoch": 45.82666666666667, + "grad_norm": 0.8173111081123352, + "learning_rate": 2.7097e-05, + "loss": 1.5882725524902344, + "step": 343700 + }, + { + "epoch": 45.84, + "grad_norm": 0.8360334038734436, + "learning_rate": 2.7090333333333334e-05, + "loss": 1.5957424926757813, + "step": 343800 + }, + { + "epoch": 45.85333333333333, + "grad_norm": 0.8417925834655762, + "learning_rate": 2.708366666666667e-05, + "loss": 1.589451446533203, + "step": 343900 + }, + { + "epoch": 45.86666666666667, + "grad_norm": 0.7977088689804077, + "learning_rate": 2.7077000000000002e-05, + "loss": 1.5911802673339843, + "step": 344000 + }, + { + "epoch": 45.88, + "grad_norm": 0.8282347321510315, + "learning_rate": 2.7070333333333337e-05, + "loss": 1.5962525939941405, + "step": 344100 + }, + { + "epoch": 45.89333333333333, + "grad_norm": 0.8380323648452759, + "learning_rate": 2.706366666666667e-05, + "loss": 1.5943394470214844, + "step": 344200 + }, + { + "epoch": 45.906666666666666, + "grad_norm": 0.8266421556472778, + "learning_rate": 2.7057e-05, + "loss": 1.5934329223632813, + "step": 344300 + }, + { + "epoch": 45.92, + "grad_norm": 0.8296067118644714, + "learning_rate": 2.7050333333333334e-05, + "loss": 1.5951394653320312, + "step": 344400 + }, + { + "epoch": 45.93333333333333, + "grad_norm": 0.8238825798034668, + "learning_rate": 2.7043666666666667e-05, + "loss": 1.5956932067871095, + "step": 344500 + }, + { + "epoch": 45.946666666666665, + "grad_norm": 0.8402311205863953, + "learning_rate": 2.7037000000000002e-05, + "loss": 1.5972817993164063, + "step": 344600 + }, + { + "epoch": 45.96, + "grad_norm": 0.819067656993866, + "learning_rate": 2.7030333333333334e-05, + "loss": 1.5947479248046874, + "step": 344700 + }, + { + "epoch": 45.973333333333336, + "grad_norm": 0.8134846687316895, + "learning_rate": 2.702366666666667e-05, + "loss": 1.5938349914550782, + "step": 344800 + }, + { + "epoch": 45.986666666666665, + "grad_norm": 0.8139092326164246, + "learning_rate": 2.7017000000000002e-05, + "loss": 1.5983534240722657, + "step": 344900 + }, + { + "epoch": 46.0, + "grad_norm": 0.845569908618927, + "learning_rate": 2.701033333333333e-05, + "loss": 1.5993333435058594, + "step": 345000 + }, + { + "epoch": 46.013333333333335, + "grad_norm": 0.8060302138328552, + "learning_rate": 2.7003666666666667e-05, + "loss": 1.5197933959960936, + "step": 345100 + }, + { + "epoch": 46.026666666666664, + "grad_norm": 0.8016753196716309, + "learning_rate": 2.6997e-05, + "loss": 1.5163864135742187, + "step": 345200 + }, + { + "epoch": 46.04, + "grad_norm": 0.824266791343689, + "learning_rate": 2.6990333333333335e-05, + "loss": 1.5196403503417968, + "step": 345300 + }, + { + "epoch": 46.053333333333335, + "grad_norm": 0.831349790096283, + "learning_rate": 2.6983666666666667e-05, + "loss": 1.5196861267089843, + "step": 345400 + }, + { + "epoch": 46.06666666666667, + "grad_norm": 0.794564425945282, + "learning_rate": 2.6977000000000003e-05, + "loss": 1.5226402282714844, + "step": 345500 + }, + { + "epoch": 46.08, + "grad_norm": 0.864202618598938, + "learning_rate": 2.6970333333333335e-05, + "loss": 1.52418701171875, + "step": 345600 + }, + { + "epoch": 46.093333333333334, + "grad_norm": 0.8275471925735474, + "learning_rate": 2.696366666666667e-05, + "loss": 1.5281210327148438, + "step": 345700 + }, + { + "epoch": 46.10666666666667, + "grad_norm": 0.8034723401069641, + "learning_rate": 2.695706666666667e-05, + "loss": 1.5245565795898437, + "step": 345800 + }, + { + "epoch": 46.12, + "grad_norm": 0.8259097337722778, + "learning_rate": 2.6950400000000002e-05, + "loss": 1.531691436767578, + "step": 345900 + }, + { + "epoch": 46.13333333333333, + "grad_norm": 0.8168667554855347, + "learning_rate": 2.694373333333333e-05, + "loss": 1.5279510498046875, + "step": 346000 + }, + { + "epoch": 46.14666666666667, + "grad_norm": 0.8043650984764099, + "learning_rate": 2.6937066666666667e-05, + "loss": 1.530906219482422, + "step": 346100 + }, + { + "epoch": 46.16, + "grad_norm": 0.7977316379547119, + "learning_rate": 2.69304e-05, + "loss": 1.5317568969726563, + "step": 346200 + }, + { + "epoch": 46.17333333333333, + "grad_norm": 0.8600273728370667, + "learning_rate": 2.6923733333333334e-05, + "loss": 1.5322166442871095, + "step": 346300 + }, + { + "epoch": 46.18666666666667, + "grad_norm": 0.8048485517501831, + "learning_rate": 2.6917066666666667e-05, + "loss": 1.5342538452148438, + "step": 346400 + }, + { + "epoch": 46.2, + "grad_norm": 0.8028460144996643, + "learning_rate": 2.6910400000000002e-05, + "loss": 1.538252716064453, + "step": 346500 + }, + { + "epoch": 46.21333333333333, + "grad_norm": 0.8104482293128967, + "learning_rate": 2.6903733333333335e-05, + "loss": 1.537858123779297, + "step": 346600 + }, + { + "epoch": 46.22666666666667, + "grad_norm": 0.8299853205680847, + "learning_rate": 2.689706666666667e-05, + "loss": 1.5331761169433593, + "step": 346700 + }, + { + "epoch": 46.24, + "grad_norm": 0.8089656829833984, + "learning_rate": 2.68904e-05, + "loss": 1.5343820190429687, + "step": 346800 + }, + { + "epoch": 46.25333333333333, + "grad_norm": 0.8413048982620239, + "learning_rate": 2.688373333333333e-05, + "loss": 1.5428427124023438, + "step": 346900 + }, + { + "epoch": 46.266666666666666, + "grad_norm": 0.8163671493530273, + "learning_rate": 2.6877066666666667e-05, + "loss": 1.5400894165039063, + "step": 347000 + }, + { + "epoch": 46.28, + "grad_norm": 0.8367263674736023, + "learning_rate": 2.6870400000000003e-05, + "loss": 1.5393385314941406, + "step": 347100 + }, + { + "epoch": 46.29333333333334, + "grad_norm": 0.8091789484024048, + "learning_rate": 2.6863733333333335e-05, + "loss": 1.5403530883789063, + "step": 347200 + }, + { + "epoch": 46.306666666666665, + "grad_norm": 0.7646798491477966, + "learning_rate": 2.685706666666667e-05, + "loss": 1.5441659545898438, + "step": 347300 + }, + { + "epoch": 46.32, + "grad_norm": 0.8175348043441772, + "learning_rate": 2.6850400000000003e-05, + "loss": 1.5414935302734376, + "step": 347400 + }, + { + "epoch": 46.333333333333336, + "grad_norm": 0.8292933702468872, + "learning_rate": 2.6843733333333332e-05, + "loss": 1.5435244750976562, + "step": 347500 + }, + { + "epoch": 46.346666666666664, + "grad_norm": 0.8154855966567993, + "learning_rate": 2.6837066666666668e-05, + "loss": 1.5483761596679688, + "step": 347600 + }, + { + "epoch": 46.36, + "grad_norm": 0.7751580476760864, + "learning_rate": 2.68304e-05, + "loss": 1.5469662475585937, + "step": 347700 + }, + { + "epoch": 46.373333333333335, + "grad_norm": 0.8045754432678223, + "learning_rate": 2.6823733333333335e-05, + "loss": 1.5475198364257812, + "step": 347800 + }, + { + "epoch": 46.38666666666666, + "grad_norm": 0.8215160965919495, + "learning_rate": 2.6817133333333335e-05, + "loss": 1.545174560546875, + "step": 347900 + }, + { + "epoch": 46.4, + "grad_norm": 0.8201582431793213, + "learning_rate": 2.6810466666666667e-05, + "loss": 1.548802490234375, + "step": 348000 + }, + { + "epoch": 46.413333333333334, + "grad_norm": 0.8398956060409546, + "learning_rate": 2.6803800000000002e-05, + "loss": 1.5487840270996094, + "step": 348100 + }, + { + "epoch": 46.42666666666667, + "grad_norm": 0.8224796652793884, + "learning_rate": 2.6797133333333335e-05, + "loss": 1.549246826171875, + "step": 348200 + }, + { + "epoch": 46.44, + "grad_norm": 0.8594797849655151, + "learning_rate": 2.679046666666667e-05, + "loss": 1.5520086669921875, + "step": 348300 + }, + { + "epoch": 46.45333333333333, + "grad_norm": 0.8207729458808899, + "learning_rate": 2.6783800000000003e-05, + "loss": 1.5540689086914063, + "step": 348400 + }, + { + "epoch": 46.46666666666667, + "grad_norm": 0.8314641714096069, + "learning_rate": 2.677713333333333e-05, + "loss": 1.5520907592773439, + "step": 348500 + }, + { + "epoch": 46.48, + "grad_norm": 0.8217018246650696, + "learning_rate": 2.6770466666666667e-05, + "loss": 1.5557980346679687, + "step": 348600 + }, + { + "epoch": 46.49333333333333, + "grad_norm": 0.8059836030006409, + "learning_rate": 2.67638e-05, + "loss": 1.5601199340820313, + "step": 348700 + }, + { + "epoch": 46.50666666666667, + "grad_norm": 0.8552286028862, + "learning_rate": 2.6757133333333335e-05, + "loss": 1.5559910583496093, + "step": 348800 + }, + { + "epoch": 46.52, + "grad_norm": 0.8301519155502319, + "learning_rate": 2.6750466666666667e-05, + "loss": 1.5562776184082032, + "step": 348900 + }, + { + "epoch": 46.53333333333333, + "grad_norm": 0.8431631326675415, + "learning_rate": 2.6743800000000003e-05, + "loss": 1.5593917846679688, + "step": 349000 + }, + { + "epoch": 46.54666666666667, + "grad_norm": 0.8206700682640076, + "learning_rate": 2.6737133333333335e-05, + "loss": 1.5606121826171875, + "step": 349100 + }, + { + "epoch": 46.56, + "grad_norm": 0.8263945579528809, + "learning_rate": 2.673046666666667e-05, + "loss": 1.5540763854980468, + "step": 349200 + }, + { + "epoch": 46.57333333333333, + "grad_norm": 0.8618150949478149, + "learning_rate": 2.67238e-05, + "loss": 1.5589299011230469, + "step": 349300 + }, + { + "epoch": 46.586666666666666, + "grad_norm": 0.8470207452774048, + "learning_rate": 2.6717133333333332e-05, + "loss": 1.561882781982422, + "step": 349400 + }, + { + "epoch": 46.6, + "grad_norm": 0.8224665522575378, + "learning_rate": 2.6710466666666668e-05, + "loss": 1.5630607604980469, + "step": 349500 + }, + { + "epoch": 46.61333333333333, + "grad_norm": 0.8316152691841125, + "learning_rate": 2.67038e-05, + "loss": 1.55953369140625, + "step": 349600 + }, + { + "epoch": 46.626666666666665, + "grad_norm": 0.8321995139122009, + "learning_rate": 2.6697133333333336e-05, + "loss": 1.5658473205566406, + "step": 349700 + }, + { + "epoch": 46.64, + "grad_norm": 0.8178289532661438, + "learning_rate": 2.6690466666666668e-05, + "loss": 1.5612675476074218, + "step": 349800 + }, + { + "epoch": 46.653333333333336, + "grad_norm": 0.7792300581932068, + "learning_rate": 2.6683800000000004e-05, + "loss": 1.5632437133789063, + "step": 349900 + }, + { + "epoch": 46.666666666666664, + "grad_norm": 0.7988590002059937, + "learning_rate": 2.6677133333333336e-05, + "loss": 1.5675028991699218, + "step": 350000 + }, + { + "epoch": 46.68, + "grad_norm": 0.8445242643356323, + "learning_rate": 2.6670533333333335e-05, + "loss": 1.5669676208496093, + "step": 350100 + }, + { + "epoch": 46.693333333333335, + "grad_norm": 0.8198060989379883, + "learning_rate": 2.666386666666667e-05, + "loss": 1.5665971374511718, + "step": 350200 + }, + { + "epoch": 46.70666666666666, + "grad_norm": 0.8664674162864685, + "learning_rate": 2.66572e-05, + "loss": 1.5654718017578124, + "step": 350300 + }, + { + "epoch": 46.72, + "grad_norm": 0.819105863571167, + "learning_rate": 2.6650533333333332e-05, + "loss": 1.567599334716797, + "step": 350400 + }, + { + "epoch": 46.733333333333334, + "grad_norm": 0.8594771027565002, + "learning_rate": 2.6643866666666667e-05, + "loss": 1.5679061889648438, + "step": 350500 + }, + { + "epoch": 46.74666666666667, + "grad_norm": 0.8125904202461243, + "learning_rate": 2.66372e-05, + "loss": 1.5722848510742187, + "step": 350600 + }, + { + "epoch": 46.76, + "grad_norm": 0.8537176847457886, + "learning_rate": 2.6630533333333335e-05, + "loss": 1.5686172485351562, + "step": 350700 + }, + { + "epoch": 46.77333333333333, + "grad_norm": 0.8427459001541138, + "learning_rate": 2.6623866666666668e-05, + "loss": 1.571588592529297, + "step": 350800 + }, + { + "epoch": 46.78666666666667, + "grad_norm": 0.827638566493988, + "learning_rate": 2.6617200000000003e-05, + "loss": 1.5718766784667968, + "step": 350900 + }, + { + "epoch": 46.8, + "grad_norm": 0.8735706806182861, + "learning_rate": 2.661053333333334e-05, + "loss": 1.5722669982910156, + "step": 351000 + }, + { + "epoch": 46.81333333333333, + "grad_norm": 0.8201860785484314, + "learning_rate": 2.6603866666666664e-05, + "loss": 1.5740573120117187, + "step": 351100 + }, + { + "epoch": 46.82666666666667, + "grad_norm": 0.8265976309776306, + "learning_rate": 2.65972e-05, + "loss": 1.5777357482910157, + "step": 351200 + }, + { + "epoch": 46.84, + "grad_norm": 0.8381431698799133, + "learning_rate": 2.6590533333333332e-05, + "loss": 1.5748936462402343, + "step": 351300 + }, + { + "epoch": 46.85333333333333, + "grad_norm": 0.8063822388648987, + "learning_rate": 2.6583866666666668e-05, + "loss": 1.5776918029785156, + "step": 351400 + }, + { + "epoch": 46.86666666666667, + "grad_norm": 0.831693172454834, + "learning_rate": 2.6577200000000004e-05, + "loss": 1.5761140441894532, + "step": 351500 + }, + { + "epoch": 46.88, + "grad_norm": 0.8381946682929993, + "learning_rate": 2.6570533333333336e-05, + "loss": 1.5803857421875, + "step": 351600 + }, + { + "epoch": 46.89333333333333, + "grad_norm": 0.8485809564590454, + "learning_rate": 2.656386666666667e-05, + "loss": 1.5759907531738282, + "step": 351700 + }, + { + "epoch": 46.906666666666666, + "grad_norm": 0.8247084617614746, + "learning_rate": 2.6557199999999997e-05, + "loss": 1.5766317749023437, + "step": 351800 + }, + { + "epoch": 46.92, + "grad_norm": 0.8473241925239563, + "learning_rate": 2.6550533333333333e-05, + "loss": 1.5800099182128906, + "step": 351900 + }, + { + "epoch": 46.93333333333333, + "grad_norm": 0.8938542604446411, + "learning_rate": 2.654386666666667e-05, + "loss": 1.575980224609375, + "step": 352000 + }, + { + "epoch": 46.946666666666665, + "grad_norm": 0.8447518348693848, + "learning_rate": 2.6537266666666667e-05, + "loss": 1.5792408752441407, + "step": 352100 + }, + { + "epoch": 46.96, + "grad_norm": 0.8477917313575745, + "learning_rate": 2.65306e-05, + "loss": 1.5817056274414063, + "step": 352200 + }, + { + "epoch": 46.973333333333336, + "grad_norm": 0.8412907123565674, + "learning_rate": 2.6523933333333335e-05, + "loss": 1.5827552795410156, + "step": 352300 + }, + { + "epoch": 46.986666666666665, + "grad_norm": 0.8627504706382751, + "learning_rate": 2.6517266666666668e-05, + "loss": 1.5811537170410157, + "step": 352400 + }, + { + "epoch": 47.0, + "grad_norm": 0.8609046936035156, + "learning_rate": 2.6510600000000003e-05, + "loss": 1.5816255187988282, + "step": 352500 + }, + { + "epoch": 47.013333333333335, + "grad_norm": 0.7538483142852783, + "learning_rate": 2.6503933333333336e-05, + "loss": 1.5079031372070313, + "step": 352600 + }, + { + "epoch": 47.026666666666664, + "grad_norm": 0.813092827796936, + "learning_rate": 2.649726666666667e-05, + "loss": 1.5056570434570313, + "step": 352700 + }, + { + "epoch": 47.04, + "grad_norm": 0.8041110634803772, + "learning_rate": 2.64906e-05, + "loss": 1.5061376953125, + "step": 352800 + }, + { + "epoch": 47.053333333333335, + "grad_norm": 0.8193392753601074, + "learning_rate": 2.6483933333333332e-05, + "loss": 1.5078268432617188, + "step": 352900 + }, + { + "epoch": 47.06666666666667, + "grad_norm": 0.8413985371589661, + "learning_rate": 2.6477266666666668e-05, + "loss": 1.5114471435546875, + "step": 353000 + }, + { + "epoch": 47.08, + "grad_norm": 0.8073115348815918, + "learning_rate": 2.64706e-05, + "loss": 1.5135585021972657, + "step": 353100 + }, + { + "epoch": 47.093333333333334, + "grad_norm": 0.7779039740562439, + "learning_rate": 2.6463933333333336e-05, + "loss": 1.5116209411621093, + "step": 353200 + }, + { + "epoch": 47.10666666666667, + "grad_norm": 0.807697594165802, + "learning_rate": 2.6457266666666668e-05, + "loss": 1.517572479248047, + "step": 353300 + }, + { + "epoch": 47.12, + "grad_norm": 0.8400974869728088, + "learning_rate": 2.6450600000000004e-05, + "loss": 1.5178854370117187, + "step": 353400 + }, + { + "epoch": 47.13333333333333, + "grad_norm": 0.8194504976272583, + "learning_rate": 2.6443933333333336e-05, + "loss": 1.5146188354492187, + "step": 353500 + }, + { + "epoch": 47.14666666666667, + "grad_norm": 0.8018361926078796, + "learning_rate": 2.6437266666666665e-05, + "loss": 1.5214445495605469, + "step": 353600 + }, + { + "epoch": 47.16, + "grad_norm": 0.8167159557342529, + "learning_rate": 2.64306e-05, + "loss": 1.5156454467773437, + "step": 353700 + }, + { + "epoch": 47.17333333333333, + "grad_norm": 0.8039659857749939, + "learning_rate": 2.6423933333333333e-05, + "loss": 1.5151275634765624, + "step": 353800 + }, + { + "epoch": 47.18666666666667, + "grad_norm": 0.8017700910568237, + "learning_rate": 2.641726666666667e-05, + "loss": 1.5202009582519531, + "step": 353900 + }, + { + "epoch": 47.2, + "grad_norm": 0.7832367420196533, + "learning_rate": 2.64106e-05, + "loss": 1.519759521484375, + "step": 354000 + }, + { + "epoch": 47.21333333333333, + "grad_norm": 0.8337007761001587, + "learning_rate": 2.6403933333333337e-05, + "loss": 1.5221978759765624, + "step": 354100 + }, + { + "epoch": 47.22666666666667, + "grad_norm": 0.7870599031448364, + "learning_rate": 2.639726666666667e-05, + "loss": 1.523798065185547, + "step": 354200 + }, + { + "epoch": 47.24, + "grad_norm": 0.8411582708358765, + "learning_rate": 2.6390666666666668e-05, + "loss": 1.5253703308105468, + "step": 354300 + }, + { + "epoch": 47.25333333333333, + "grad_norm": 0.8832390308380127, + "learning_rate": 2.6384000000000004e-05, + "loss": 1.5262484741210938, + "step": 354400 + }, + { + "epoch": 47.266666666666666, + "grad_norm": 0.7941514253616333, + "learning_rate": 2.6377333333333336e-05, + "loss": 1.525479736328125, + "step": 354500 + }, + { + "epoch": 47.28, + "grad_norm": 0.7702394127845764, + "learning_rate": 2.6370666666666665e-05, + "loss": 1.5219073486328125, + "step": 354600 + }, + { + "epoch": 47.29333333333334, + "grad_norm": 0.8129458427429199, + "learning_rate": 2.6364e-05, + "loss": 1.5250271606445311, + "step": 354700 + }, + { + "epoch": 47.306666666666665, + "grad_norm": 0.8214989304542542, + "learning_rate": 2.6357333333333333e-05, + "loss": 1.5251333618164062, + "step": 354800 + }, + { + "epoch": 47.32, + "grad_norm": 0.7877672910690308, + "learning_rate": 2.6350666666666668e-05, + "loss": 1.5243698120117188, + "step": 354900 + }, + { + "epoch": 47.333333333333336, + "grad_norm": 0.8471348285675049, + "learning_rate": 2.6344e-05, + "loss": 1.5322015380859375, + "step": 355000 + }, + { + "epoch": 47.346666666666664, + "grad_norm": 0.8431065082550049, + "learning_rate": 2.6337333333333336e-05, + "loss": 1.530186767578125, + "step": 355100 + }, + { + "epoch": 47.36, + "grad_norm": 0.8179681897163391, + "learning_rate": 2.6330666666666672e-05, + "loss": 1.5326658630371093, + "step": 355200 + }, + { + "epoch": 47.373333333333335, + "grad_norm": 0.8299217820167542, + "learning_rate": 2.6323999999999997e-05, + "loss": 1.5337423706054687, + "step": 355300 + }, + { + "epoch": 47.38666666666666, + "grad_norm": 0.7992455363273621, + "learning_rate": 2.6317333333333333e-05, + "loss": 1.5334547424316407, + "step": 355400 + }, + { + "epoch": 47.4, + "grad_norm": 0.8198468089103699, + "learning_rate": 2.6310666666666665e-05, + "loss": 1.5330128479003906, + "step": 355500 + }, + { + "epoch": 47.413333333333334, + "grad_norm": 0.8227736353874207, + "learning_rate": 2.6304e-05, + "loss": 1.5363392639160156, + "step": 355600 + }, + { + "epoch": 47.42666666666667, + "grad_norm": 0.8037164807319641, + "learning_rate": 2.6297333333333337e-05, + "loss": 1.5415556335449219, + "step": 355700 + }, + { + "epoch": 47.44, + "grad_norm": 0.8218553066253662, + "learning_rate": 2.629066666666667e-05, + "loss": 1.536182861328125, + "step": 355800 + }, + { + "epoch": 47.45333333333333, + "grad_norm": 0.8205154538154602, + "learning_rate": 2.6284000000000004e-05, + "loss": 1.5415779113769532, + "step": 355900 + }, + { + "epoch": 47.46666666666667, + "grad_norm": 0.8422571420669556, + "learning_rate": 2.6277333333333337e-05, + "loss": 1.5379583740234375, + "step": 356000 + }, + { + "epoch": 47.48, + "grad_norm": 0.8234130144119263, + "learning_rate": 2.6270666666666666e-05, + "loss": 1.538638153076172, + "step": 356100 + }, + { + "epoch": 47.49333333333333, + "grad_norm": 0.8543081879615784, + "learning_rate": 2.6264e-05, + "loss": 1.5433369445800782, + "step": 356200 + }, + { + "epoch": 47.50666666666667, + "grad_norm": 0.8039753437042236, + "learning_rate": 2.6257399999999997e-05, + "loss": 1.5409135437011718, + "step": 356300 + }, + { + "epoch": 47.52, + "grad_norm": 0.807433545589447, + "learning_rate": 2.6250733333333333e-05, + "loss": 1.538723907470703, + "step": 356400 + }, + { + "epoch": 47.53333333333333, + "grad_norm": 0.829760730266571, + "learning_rate": 2.6244066666666668e-05, + "loss": 1.5394581604003905, + "step": 356500 + }, + { + "epoch": 47.54666666666667, + "grad_norm": 0.83366858959198, + "learning_rate": 2.62374e-05, + "loss": 1.545363311767578, + "step": 356600 + }, + { + "epoch": 47.56, + "grad_norm": 0.8441088795661926, + "learning_rate": 2.6230733333333336e-05, + "loss": 1.5482498168945313, + "step": 356700 + }, + { + "epoch": 47.57333333333333, + "grad_norm": 0.8056532740592957, + "learning_rate": 2.622406666666667e-05, + "loss": 1.5447674560546876, + "step": 356800 + }, + { + "epoch": 47.586666666666666, + "grad_norm": 0.8894994258880615, + "learning_rate": 2.6217400000000004e-05, + "loss": 1.5502810668945313, + "step": 356900 + }, + { + "epoch": 47.6, + "grad_norm": 0.8194480538368225, + "learning_rate": 2.6210733333333336e-05, + "loss": 1.5432069396972656, + "step": 357000 + }, + { + "epoch": 47.61333333333333, + "grad_norm": 0.8140724897384644, + "learning_rate": 2.6204066666666665e-05, + "loss": 1.5478276062011718, + "step": 357100 + }, + { + "epoch": 47.626666666666665, + "grad_norm": 0.8195116519927979, + "learning_rate": 2.61974e-05, + "loss": 1.544815673828125, + "step": 357200 + }, + { + "epoch": 47.64, + "grad_norm": 0.8061419725418091, + "learning_rate": 2.6190733333333333e-05, + "loss": 1.5499363708496094, + "step": 357300 + }, + { + "epoch": 47.653333333333336, + "grad_norm": 0.8833538293838501, + "learning_rate": 2.618406666666667e-05, + "loss": 1.5492486572265625, + "step": 357400 + }, + { + "epoch": 47.666666666666664, + "grad_norm": 0.817891001701355, + "learning_rate": 2.61774e-05, + "loss": 1.5491177368164062, + "step": 357500 + }, + { + "epoch": 47.68, + "grad_norm": 0.8547759652137756, + "learning_rate": 2.6170733333333337e-05, + "loss": 1.5468995666503906, + "step": 357600 + }, + { + "epoch": 47.693333333333335, + "grad_norm": 0.8713561296463013, + "learning_rate": 2.616406666666667e-05, + "loss": 1.5532452392578124, + "step": 357700 + }, + { + "epoch": 47.70666666666666, + "grad_norm": 0.8616589307785034, + "learning_rate": 2.6157399999999998e-05, + "loss": 1.5543402099609376, + "step": 357800 + }, + { + "epoch": 47.72, + "grad_norm": 0.8249148726463318, + "learning_rate": 2.6150733333333334e-05, + "loss": 1.5558518981933593, + "step": 357900 + }, + { + "epoch": 47.733333333333334, + "grad_norm": 0.8403042554855347, + "learning_rate": 2.6144066666666666e-05, + "loss": 1.55149169921875, + "step": 358000 + }, + { + "epoch": 47.74666666666667, + "grad_norm": 0.8018736839294434, + "learning_rate": 2.61374e-05, + "loss": 1.5553018188476562, + "step": 358100 + }, + { + "epoch": 47.76, + "grad_norm": 0.8302009701728821, + "learning_rate": 2.6130733333333334e-05, + "loss": 1.5563357543945313, + "step": 358200 + }, + { + "epoch": 47.77333333333333, + "grad_norm": 0.8318833708763123, + "learning_rate": 2.6124133333333333e-05, + "loss": 1.5607223510742188, + "step": 358300 + }, + { + "epoch": 47.78666666666667, + "grad_norm": 0.8090811967849731, + "learning_rate": 2.611746666666667e-05, + "loss": 1.5559880065917968, + "step": 358400 + }, + { + "epoch": 47.8, + "grad_norm": 0.868520975112915, + "learning_rate": 2.61108e-05, + "loss": 1.55770751953125, + "step": 358500 + }, + { + "epoch": 47.81333333333333, + "grad_norm": 0.8197623491287231, + "learning_rate": 2.6104133333333336e-05, + "loss": 1.558822021484375, + "step": 358600 + }, + { + "epoch": 47.82666666666667, + "grad_norm": 0.8163467645645142, + "learning_rate": 2.609746666666667e-05, + "loss": 1.557568359375, + "step": 358700 + }, + { + "epoch": 47.84, + "grad_norm": 0.7725224494934082, + "learning_rate": 2.6090799999999998e-05, + "loss": 1.5549420166015624, + "step": 358800 + }, + { + "epoch": 47.85333333333333, + "grad_norm": 0.8405675292015076, + "learning_rate": 2.6084133333333333e-05, + "loss": 1.5608193969726563, + "step": 358900 + }, + { + "epoch": 47.86666666666667, + "grad_norm": 0.8494597673416138, + "learning_rate": 2.6077466666666666e-05, + "loss": 1.5580606079101562, + "step": 359000 + }, + { + "epoch": 47.88, + "grad_norm": 0.8636260032653809, + "learning_rate": 2.60708e-05, + "loss": 1.5591242980957032, + "step": 359100 + }, + { + "epoch": 47.89333333333333, + "grad_norm": 0.8216843008995056, + "learning_rate": 2.6064133333333333e-05, + "loss": 1.5577593994140626, + "step": 359200 + }, + { + "epoch": 47.906666666666666, + "grad_norm": 0.8437257409095764, + "learning_rate": 2.605746666666667e-05, + "loss": 1.5638467407226562, + "step": 359300 + }, + { + "epoch": 47.92, + "grad_norm": 0.8391488790512085, + "learning_rate": 2.60508e-05, + "loss": 1.559764404296875, + "step": 359400 + }, + { + "epoch": 47.93333333333333, + "grad_norm": 0.8953635096549988, + "learning_rate": 2.6044133333333337e-05, + "loss": 1.5598916625976562, + "step": 359500 + }, + { + "epoch": 47.946666666666665, + "grad_norm": 0.8865219950675964, + "learning_rate": 2.6037466666666666e-05, + "loss": 1.56525390625, + "step": 359600 + }, + { + "epoch": 47.96, + "grad_norm": 0.8346757888793945, + "learning_rate": 2.6030799999999998e-05, + "loss": 1.5669119262695312, + "step": 359700 + }, + { + "epoch": 47.973333333333336, + "grad_norm": 0.7953504920005798, + "learning_rate": 2.6024133333333334e-05, + "loss": 1.5616644287109376, + "step": 359800 + }, + { + "epoch": 47.986666666666665, + "grad_norm": 0.8168767094612122, + "learning_rate": 2.6017466666666666e-05, + "loss": 1.5720118713378906, + "step": 359900 + }, + { + "epoch": 48.0, + "grad_norm": 0.874919593334198, + "learning_rate": 2.6010800000000002e-05, + "loss": 1.5705772399902345, + "step": 360000 + }, + { + "epoch": 48.013333333333335, + "grad_norm": 0.8366668820381165, + "learning_rate": 2.6004133333333337e-05, + "loss": 1.4951602172851564, + "step": 360100 + }, + { + "epoch": 48.026666666666664, + "grad_norm": 0.8061423897743225, + "learning_rate": 2.599746666666667e-05, + "loss": 1.49366455078125, + "step": 360200 + }, + { + "epoch": 48.04, + "grad_norm": 0.8062233328819275, + "learning_rate": 2.59908e-05, + "loss": 1.4919319152832031, + "step": 360300 + }, + { + "epoch": 48.053333333333335, + "grad_norm": 0.7820529341697693, + "learning_rate": 2.5984200000000004e-05, + "loss": 1.4933494567871093, + "step": 360400 + }, + { + "epoch": 48.06666666666667, + "grad_norm": 0.7874485850334167, + "learning_rate": 2.5977533333333337e-05, + "loss": 1.4942898559570312, + "step": 360500 + }, + { + "epoch": 48.08, + "grad_norm": 0.8219860792160034, + "learning_rate": 2.5970866666666666e-05, + "loss": 1.4994293212890626, + "step": 360600 + }, + { + "epoch": 48.093333333333334, + "grad_norm": 0.806149959564209, + "learning_rate": 2.59642e-05, + "loss": 1.5014764404296874, + "step": 360700 + }, + { + "epoch": 48.10666666666667, + "grad_norm": 0.8026537895202637, + "learning_rate": 2.5957533333333333e-05, + "loss": 1.5005511474609374, + "step": 360800 + }, + { + "epoch": 48.12, + "grad_norm": 0.803657591342926, + "learning_rate": 2.595086666666667e-05, + "loss": 1.500188446044922, + "step": 360900 + }, + { + "epoch": 48.13333333333333, + "grad_norm": 0.8763360977172852, + "learning_rate": 2.59442e-05, + "loss": 1.5009043884277344, + "step": 361000 + }, + { + "epoch": 48.14666666666667, + "grad_norm": 0.7982499003410339, + "learning_rate": 2.5937533333333337e-05, + "loss": 1.5045884704589845, + "step": 361100 + }, + { + "epoch": 48.16, + "grad_norm": 0.8596701622009277, + "learning_rate": 2.593086666666667e-05, + "loss": 1.5040025329589843, + "step": 361200 + }, + { + "epoch": 48.17333333333333, + "grad_norm": 0.8158277869224548, + "learning_rate": 2.5924199999999998e-05, + "loss": 1.5009864807128905, + "step": 361300 + }, + { + "epoch": 48.18666666666667, + "grad_norm": 0.8603137135505676, + "learning_rate": 2.5917533333333334e-05, + "loss": 1.5051220703125, + "step": 361400 + }, + { + "epoch": 48.2, + "grad_norm": 0.8475449085235596, + "learning_rate": 2.5910866666666666e-05, + "loss": 1.5040087890625, + "step": 361500 + }, + { + "epoch": 48.21333333333333, + "grad_norm": 0.8340404629707336, + "learning_rate": 2.5904200000000002e-05, + "loss": 1.5033770751953126, + "step": 361600 + }, + { + "epoch": 48.22666666666667, + "grad_norm": 0.8179289102554321, + "learning_rate": 2.5897533333333334e-05, + "loss": 1.5125186157226562, + "step": 361700 + }, + { + "epoch": 48.24, + "grad_norm": 0.8329739570617676, + "learning_rate": 2.589086666666667e-05, + "loss": 1.5081419372558593, + "step": 361800 + }, + { + "epoch": 48.25333333333333, + "grad_norm": 0.8692247271537781, + "learning_rate": 2.5884200000000002e-05, + "loss": 1.509202880859375, + "step": 361900 + }, + { + "epoch": 48.266666666666666, + "grad_norm": 0.8539946675300598, + "learning_rate": 2.5877533333333338e-05, + "loss": 1.505505828857422, + "step": 362000 + }, + { + "epoch": 48.28, + "grad_norm": 0.8623639345169067, + "learning_rate": 2.5870866666666667e-05, + "loss": 1.5125834655761718, + "step": 362100 + }, + { + "epoch": 48.29333333333334, + "grad_norm": 0.8657389283180237, + "learning_rate": 2.58642e-05, + "loss": 1.517348175048828, + "step": 362200 + }, + { + "epoch": 48.306666666666665, + "grad_norm": 0.8074204921722412, + "learning_rate": 2.5857533333333334e-05, + "loss": 1.5124046325683593, + "step": 362300 + }, + { + "epoch": 48.32, + "grad_norm": 0.8119105100631714, + "learning_rate": 2.5850933333333334e-05, + "loss": 1.5156207275390625, + "step": 362400 + }, + { + "epoch": 48.333333333333336, + "grad_norm": 0.8001854419708252, + "learning_rate": 2.5844266666666666e-05, + "loss": 1.520142822265625, + "step": 362500 + }, + { + "epoch": 48.346666666666664, + "grad_norm": 0.8105164766311646, + "learning_rate": 2.58376e-05, + "loss": 1.51326904296875, + "step": 362600 + }, + { + "epoch": 48.36, + "grad_norm": 0.8771947026252747, + "learning_rate": 2.5830933333333334e-05, + "loss": 1.5151416015625, + "step": 362700 + }, + { + "epoch": 48.373333333333335, + "grad_norm": 0.8079180717468262, + "learning_rate": 2.582426666666667e-05, + "loss": 1.5162548828125, + "step": 362800 + }, + { + "epoch": 48.38666666666666, + "grad_norm": 0.8303863406181335, + "learning_rate": 2.58176e-05, + "loss": 1.517666015625, + "step": 362900 + }, + { + "epoch": 48.4, + "grad_norm": 0.8090680837631226, + "learning_rate": 2.5810933333333337e-05, + "loss": 1.5149562072753906, + "step": 363000 + }, + { + "epoch": 48.413333333333334, + "grad_norm": 0.8291407227516174, + "learning_rate": 2.5804266666666666e-05, + "loss": 1.5243867492675782, + "step": 363100 + }, + { + "epoch": 48.42666666666667, + "grad_norm": 0.8551901578903198, + "learning_rate": 2.57976e-05, + "loss": 1.5234576416015626, + "step": 363200 + }, + { + "epoch": 48.44, + "grad_norm": 0.8535791039466858, + "learning_rate": 2.5790933333333334e-05, + "loss": 1.52187744140625, + "step": 363300 + }, + { + "epoch": 48.45333333333333, + "grad_norm": 0.8479459881782532, + "learning_rate": 2.5784266666666666e-05, + "loss": 1.51526611328125, + "step": 363400 + }, + { + "epoch": 48.46666666666667, + "grad_norm": 0.7857949733734131, + "learning_rate": 2.5777600000000002e-05, + "loss": 1.5265869140625, + "step": 363500 + }, + { + "epoch": 48.48, + "grad_norm": 0.8698379397392273, + "learning_rate": 2.5770933333333334e-05, + "loss": 1.5276319885253906, + "step": 363600 + }, + { + "epoch": 48.49333333333333, + "grad_norm": 0.817887544631958, + "learning_rate": 2.576426666666667e-05, + "loss": 1.5276255798339844, + "step": 363700 + }, + { + "epoch": 48.50666666666667, + "grad_norm": 0.8234931826591492, + "learning_rate": 2.5757600000000006e-05, + "loss": 1.5249510192871094, + "step": 363800 + }, + { + "epoch": 48.52, + "grad_norm": 0.8288886547088623, + "learning_rate": 2.575093333333333e-05, + "loss": 1.528853759765625, + "step": 363900 + }, + { + "epoch": 48.53333333333333, + "grad_norm": 0.8396264314651489, + "learning_rate": 2.5744266666666667e-05, + "loss": 1.5318849182128906, + "step": 364000 + }, + { + "epoch": 48.54666666666667, + "grad_norm": 0.824802041053772, + "learning_rate": 2.57376e-05, + "loss": 1.5319622802734374, + "step": 364100 + }, + { + "epoch": 48.56, + "grad_norm": 0.8573387861251831, + "learning_rate": 2.5730933333333335e-05, + "loss": 1.5280552673339844, + "step": 364200 + }, + { + "epoch": 48.57333333333333, + "grad_norm": 0.836539089679718, + "learning_rate": 2.572426666666667e-05, + "loss": 1.5268043518066405, + "step": 364300 + }, + { + "epoch": 48.586666666666666, + "grad_norm": 0.885406494140625, + "learning_rate": 2.5717666666666666e-05, + "loss": 1.5300917053222656, + "step": 364400 + }, + { + "epoch": 48.6, + "grad_norm": 0.8176631331443787, + "learning_rate": 2.5711e-05, + "loss": 1.5323922729492188, + "step": 364500 + }, + { + "epoch": 48.61333333333333, + "grad_norm": 0.8315919637680054, + "learning_rate": 2.5704333333333337e-05, + "loss": 1.53243408203125, + "step": 364600 + }, + { + "epoch": 48.626666666666665, + "grad_norm": 0.822803258895874, + "learning_rate": 2.569766666666667e-05, + "loss": 1.5390171813964844, + "step": 364700 + }, + { + "epoch": 48.64, + "grad_norm": 0.8383143544197083, + "learning_rate": 2.5691000000000005e-05, + "loss": 1.5334788513183595, + "step": 364800 + }, + { + "epoch": 48.653333333333336, + "grad_norm": 0.8430681824684143, + "learning_rate": 2.5684333333333334e-05, + "loss": 1.5373228454589845, + "step": 364900 + }, + { + "epoch": 48.666666666666664, + "grad_norm": 0.861682653427124, + "learning_rate": 2.5677666666666666e-05, + "loss": 1.536941680908203, + "step": 365000 + }, + { + "epoch": 48.68, + "grad_norm": 0.8224048018455505, + "learning_rate": 2.5671000000000002e-05, + "loss": 1.5357330322265625, + "step": 365100 + }, + { + "epoch": 48.693333333333335, + "grad_norm": 0.8081045150756836, + "learning_rate": 2.5664333333333334e-05, + "loss": 1.5333282470703125, + "step": 365200 + }, + { + "epoch": 48.70666666666666, + "grad_norm": 0.8442122340202332, + "learning_rate": 2.565766666666667e-05, + "loss": 1.536866455078125, + "step": 365300 + }, + { + "epoch": 48.72, + "grad_norm": 0.822340190410614, + "learning_rate": 2.5651000000000002e-05, + "loss": 1.5430012512207032, + "step": 365400 + }, + { + "epoch": 48.733333333333334, + "grad_norm": 0.8340216875076294, + "learning_rate": 2.5644333333333338e-05, + "loss": 1.5356080627441406, + "step": 365500 + }, + { + "epoch": 48.74666666666667, + "grad_norm": 0.8153738975524902, + "learning_rate": 2.5637666666666667e-05, + "loss": 1.5389717102050782, + "step": 365600 + }, + { + "epoch": 48.76, + "grad_norm": 0.8527360558509827, + "learning_rate": 2.5631e-05, + "loss": 1.5421336364746094, + "step": 365700 + }, + { + "epoch": 48.77333333333333, + "grad_norm": 0.8141431212425232, + "learning_rate": 2.5624333333333335e-05, + "loss": 1.537602081298828, + "step": 365800 + }, + { + "epoch": 48.78666666666667, + "grad_norm": 0.8881790041923523, + "learning_rate": 2.5617666666666667e-05, + "loss": 1.5385264587402343, + "step": 365900 + }, + { + "epoch": 48.8, + "grad_norm": 0.8357459902763367, + "learning_rate": 2.5611000000000003e-05, + "loss": 1.5437425231933595, + "step": 366000 + }, + { + "epoch": 48.81333333333333, + "grad_norm": 0.828778088092804, + "learning_rate": 2.5604333333333335e-05, + "loss": 1.540460968017578, + "step": 366100 + }, + { + "epoch": 48.82666666666667, + "grad_norm": 0.8588747382164001, + "learning_rate": 2.559766666666667e-05, + "loss": 1.545701446533203, + "step": 366200 + }, + { + "epoch": 48.84, + "grad_norm": 0.8609989285469055, + "learning_rate": 2.5591000000000003e-05, + "loss": 1.5466421508789063, + "step": 366300 + }, + { + "epoch": 48.85333333333333, + "grad_norm": 0.7956804633140564, + "learning_rate": 2.5584400000000002e-05, + "loss": 1.54723388671875, + "step": 366400 + }, + { + "epoch": 48.86666666666667, + "grad_norm": 0.8610774278640747, + "learning_rate": 2.5577733333333338e-05, + "loss": 1.5450926208496094, + "step": 366500 + }, + { + "epoch": 48.88, + "grad_norm": 0.8780190944671631, + "learning_rate": 2.5571066666666666e-05, + "loss": 1.547249298095703, + "step": 366600 + }, + { + "epoch": 48.89333333333333, + "grad_norm": 0.8510201573371887, + "learning_rate": 2.55644e-05, + "loss": 1.5473715209960937, + "step": 366700 + }, + { + "epoch": 48.906666666666666, + "grad_norm": 0.8271015882492065, + "learning_rate": 2.5557733333333334e-05, + "loss": 1.5514225769042969, + "step": 366800 + }, + { + "epoch": 48.92, + "grad_norm": 0.8673347234725952, + "learning_rate": 2.5551066666666667e-05, + "loss": 1.5482473754882813, + "step": 366900 + }, + { + "epoch": 48.93333333333333, + "grad_norm": 0.9040217995643616, + "learning_rate": 2.5544400000000002e-05, + "loss": 1.5476766967773437, + "step": 367000 + }, + { + "epoch": 48.946666666666665, + "grad_norm": 0.8571226000785828, + "learning_rate": 2.5537733333333335e-05, + "loss": 1.5490121459960937, + "step": 367100 + }, + { + "epoch": 48.96, + "grad_norm": 0.8800345659255981, + "learning_rate": 2.553106666666667e-05, + "loss": 1.5518528747558593, + "step": 367200 + }, + { + "epoch": 48.973333333333336, + "grad_norm": 0.8253681659698486, + "learning_rate": 2.5524400000000002e-05, + "loss": 1.5538876342773438, + "step": 367300 + }, + { + "epoch": 48.986666666666665, + "grad_norm": 0.8854805827140808, + "learning_rate": 2.551773333333333e-05, + "loss": 1.5536569213867188, + "step": 367400 + }, + { + "epoch": 49.0, + "grad_norm": 0.8323401808738708, + "learning_rate": 2.5511066666666667e-05, + "loss": 1.5535047912597657, + "step": 367500 + }, + { + "epoch": 49.013333333333335, + "grad_norm": 0.7903602719306946, + "learning_rate": 2.55044e-05, + "loss": 1.478652801513672, + "step": 367600 + }, + { + "epoch": 49.026666666666664, + "grad_norm": 0.7994419932365417, + "learning_rate": 2.5497733333333335e-05, + "loss": 1.4753775024414062, + "step": 367700 + }, + { + "epoch": 49.04, + "grad_norm": 0.8322893381118774, + "learning_rate": 2.5491066666666667e-05, + "loss": 1.47673583984375, + "step": 367800 + }, + { + "epoch": 49.053333333333335, + "grad_norm": 0.8257775902748108, + "learning_rate": 2.5484400000000003e-05, + "loss": 1.4793165588378907, + "step": 367900 + }, + { + "epoch": 49.06666666666667, + "grad_norm": 0.8123628497123718, + "learning_rate": 2.5477733333333335e-05, + "loss": 1.4788943481445314, + "step": 368000 + }, + { + "epoch": 49.08, + "grad_norm": 0.849601149559021, + "learning_rate": 2.5471066666666664e-05, + "loss": 1.4821792602539063, + "step": 368100 + }, + { + "epoch": 49.093333333333334, + "grad_norm": 0.8008491396903992, + "learning_rate": 2.54644e-05, + "loss": 1.4849171447753906, + "step": 368200 + }, + { + "epoch": 49.10666666666667, + "grad_norm": 0.8216526508331299, + "learning_rate": 2.5457733333333332e-05, + "loss": 1.4855982971191406, + "step": 368300 + }, + { + "epoch": 49.12, + "grad_norm": 0.8552011847496033, + "learning_rate": 2.5451066666666668e-05, + "loss": 1.4879904174804688, + "step": 368400 + }, + { + "epoch": 49.13333333333333, + "grad_norm": 0.7977767586708069, + "learning_rate": 2.5444466666666667e-05, + "loss": 1.4883206176757813, + "step": 368500 + }, + { + "epoch": 49.14666666666667, + "grad_norm": 0.8241558074951172, + "learning_rate": 2.54378e-05, + "loss": 1.4861485290527343, + "step": 368600 + }, + { + "epoch": 49.16, + "grad_norm": 0.8472109436988831, + "learning_rate": 2.5431133333333335e-05, + "loss": 1.4872750854492187, + "step": 368700 + }, + { + "epoch": 49.17333333333333, + "grad_norm": 0.8214472532272339, + "learning_rate": 2.542446666666667e-05, + "loss": 1.487729034423828, + "step": 368800 + }, + { + "epoch": 49.18666666666667, + "grad_norm": 0.8378106355667114, + "learning_rate": 2.5417800000000003e-05, + "loss": 1.48987060546875, + "step": 368900 + }, + { + "epoch": 49.2, + "grad_norm": 0.7991240620613098, + "learning_rate": 2.5411133333333338e-05, + "loss": 1.492364501953125, + "step": 369000 + }, + { + "epoch": 49.21333333333333, + "grad_norm": 0.8102217316627502, + "learning_rate": 2.5404466666666664e-05, + "loss": 1.4964356994628907, + "step": 369100 + }, + { + "epoch": 49.22666666666667, + "grad_norm": 0.7787119150161743, + "learning_rate": 2.53978e-05, + "loss": 1.4987217712402343, + "step": 369200 + }, + { + "epoch": 49.24, + "grad_norm": 0.8689252138137817, + "learning_rate": 2.5391133333333335e-05, + "loss": 1.497693328857422, + "step": 369300 + }, + { + "epoch": 49.25333333333333, + "grad_norm": 0.8548557162284851, + "learning_rate": 2.5384466666666667e-05, + "loss": 1.4954206848144531, + "step": 369400 + }, + { + "epoch": 49.266666666666666, + "grad_norm": 0.8644983172416687, + "learning_rate": 2.5377800000000003e-05, + "loss": 1.4990921020507812, + "step": 369500 + }, + { + "epoch": 49.28, + "grad_norm": 0.8004375696182251, + "learning_rate": 2.5371133333333335e-05, + "loss": 1.4989527893066406, + "step": 369600 + }, + { + "epoch": 49.29333333333334, + "grad_norm": 0.811881959438324, + "learning_rate": 2.536446666666667e-05, + "loss": 1.4984857177734374, + "step": 369700 + }, + { + "epoch": 49.306666666666665, + "grad_norm": 0.8403072953224182, + "learning_rate": 2.5357800000000003e-05, + "loss": 1.4975395202636719, + "step": 369800 + }, + { + "epoch": 49.32, + "grad_norm": 0.8402568697929382, + "learning_rate": 2.5351133333333332e-05, + "loss": 1.4993600463867187, + "step": 369900 + }, + { + "epoch": 49.333333333333336, + "grad_norm": 0.8742866516113281, + "learning_rate": 2.5344466666666668e-05, + "loss": 1.504093475341797, + "step": 370000 + }, + { + "epoch": 49.346666666666664, + "grad_norm": 0.8136636018753052, + "learning_rate": 2.53378e-05, + "loss": 1.5030204772949218, + "step": 370100 + }, + { + "epoch": 49.36, + "grad_norm": 0.846967339515686, + "learning_rate": 2.5331133333333336e-05, + "loss": 1.5024598693847657, + "step": 370200 + }, + { + "epoch": 49.373333333333335, + "grad_norm": 0.784156858921051, + "learning_rate": 2.5324466666666668e-05, + "loss": 1.5066024780273437, + "step": 370300 + }, + { + "epoch": 49.38666666666666, + "grad_norm": 0.8611376881599426, + "learning_rate": 2.5317800000000003e-05, + "loss": 1.5030882263183594, + "step": 370400 + }, + { + "epoch": 49.4, + "grad_norm": 0.8456284403800964, + "learning_rate": 2.5311200000000003e-05, + "loss": 1.5110250854492187, + "step": 370500 + }, + { + "epoch": 49.413333333333334, + "grad_norm": 0.8738457560539246, + "learning_rate": 2.5304533333333335e-05, + "loss": 1.5068327331542968, + "step": 370600 + }, + { + "epoch": 49.42666666666667, + "grad_norm": 0.81916743516922, + "learning_rate": 2.529786666666667e-05, + "loss": 1.5101161193847656, + "step": 370700 + }, + { + "epoch": 49.44, + "grad_norm": 0.8413360714912415, + "learning_rate": 2.5291200000000003e-05, + "loss": 1.509934844970703, + "step": 370800 + }, + { + "epoch": 49.45333333333333, + "grad_norm": 0.8540857434272766, + "learning_rate": 2.528453333333333e-05, + "loss": 1.5118212890625, + "step": 370900 + }, + { + "epoch": 49.46666666666667, + "grad_norm": 0.8651217222213745, + "learning_rate": 2.5277866666666667e-05, + "loss": 1.5078504943847657, + "step": 371000 + }, + { + "epoch": 49.48, + "grad_norm": 0.8294056057929993, + "learning_rate": 2.52712e-05, + "loss": 1.5105992126464844, + "step": 371100 + }, + { + "epoch": 49.49333333333333, + "grad_norm": 0.8947125673294067, + "learning_rate": 2.5264533333333335e-05, + "loss": 1.5177714538574218, + "step": 371200 + }, + { + "epoch": 49.50666666666667, + "grad_norm": 0.8449296951293945, + "learning_rate": 2.5257866666666667e-05, + "loss": 1.5125474548339843, + "step": 371300 + }, + { + "epoch": 49.52, + "grad_norm": 0.849795401096344, + "learning_rate": 2.5251200000000003e-05, + "loss": 1.5124183654785157, + "step": 371400 + }, + { + "epoch": 49.53333333333333, + "grad_norm": 0.8208550810813904, + "learning_rate": 2.5244533333333335e-05, + "loss": 1.5178236389160156, + "step": 371500 + }, + { + "epoch": 49.54666666666667, + "grad_norm": 0.8659239411354065, + "learning_rate": 2.5237866666666664e-05, + "loss": 1.51171875, + "step": 371600 + }, + { + "epoch": 49.56, + "grad_norm": 0.8339199423789978, + "learning_rate": 2.52312e-05, + "loss": 1.5164427185058593, + "step": 371700 + }, + { + "epoch": 49.57333333333333, + "grad_norm": 0.817791759967804, + "learning_rate": 2.5224533333333332e-05, + "loss": 1.5198959350585937, + "step": 371800 + }, + { + "epoch": 49.586666666666666, + "grad_norm": 0.8938850164413452, + "learning_rate": 2.5217866666666668e-05, + "loss": 1.5189447021484375, + "step": 371900 + }, + { + "epoch": 49.6, + "grad_norm": 0.8634279370307922, + "learning_rate": 2.52112e-05, + "loss": 1.5181257629394531, + "step": 372000 + }, + { + "epoch": 49.61333333333333, + "grad_norm": 0.8766525983810425, + "learning_rate": 2.5204533333333336e-05, + "loss": 1.5201939392089843, + "step": 372100 + }, + { + "epoch": 49.626666666666665, + "grad_norm": 0.8618395328521729, + "learning_rate": 2.5197866666666668e-05, + "loss": 1.5215455627441405, + "step": 372200 + }, + { + "epoch": 49.64, + "grad_norm": 0.8641324043273926, + "learning_rate": 2.5191200000000004e-05, + "loss": 1.5232699584960938, + "step": 372300 + }, + { + "epoch": 49.653333333333336, + "grad_norm": 0.8349089026451111, + "learning_rate": 2.5184533333333333e-05, + "loss": 1.5240145874023439, + "step": 372400 + }, + { + "epoch": 49.666666666666664, + "grad_norm": 0.8367394804954529, + "learning_rate": 2.5177933333333335e-05, + "loss": 1.520089111328125, + "step": 372500 + }, + { + "epoch": 49.68, + "grad_norm": 0.8456884026527405, + "learning_rate": 2.5171266666666664e-05, + "loss": 1.5240330505371094, + "step": 372600 + }, + { + "epoch": 49.693333333333335, + "grad_norm": 0.8970924615859985, + "learning_rate": 2.51646e-05, + "loss": 1.5220384216308593, + "step": 372700 + }, + { + "epoch": 49.70666666666666, + "grad_norm": 0.8440273404121399, + "learning_rate": 2.5157933333333332e-05, + "loss": 1.5244894409179688, + "step": 372800 + }, + { + "epoch": 49.72, + "grad_norm": 0.8721365332603455, + "learning_rate": 2.5151266666666668e-05, + "loss": 1.5227665710449219, + "step": 372900 + }, + { + "epoch": 49.733333333333334, + "grad_norm": 0.9237975478172302, + "learning_rate": 2.5144600000000003e-05, + "loss": 1.5297914123535157, + "step": 373000 + }, + { + "epoch": 49.74666666666667, + "grad_norm": 0.8599965572357178, + "learning_rate": 2.5137933333333335e-05, + "loss": 1.5247174072265626, + "step": 373100 + }, + { + "epoch": 49.76, + "grad_norm": 0.8520407676696777, + "learning_rate": 2.513126666666667e-05, + "loss": 1.5293832397460938, + "step": 373200 + }, + { + "epoch": 49.77333333333333, + "grad_norm": 0.8867288827896118, + "learning_rate": 2.5124600000000003e-05, + "loss": 1.5261709594726562, + "step": 373300 + }, + { + "epoch": 49.78666666666667, + "grad_norm": 0.8335996866226196, + "learning_rate": 2.5117933333333332e-05, + "loss": 1.5297763061523437, + "step": 373400 + }, + { + "epoch": 49.8, + "grad_norm": 0.8595085144042969, + "learning_rate": 2.5111266666666668e-05, + "loss": 1.5318873596191407, + "step": 373500 + }, + { + "epoch": 49.81333333333333, + "grad_norm": 0.8604120016098022, + "learning_rate": 2.51046e-05, + "loss": 1.5329582214355468, + "step": 373600 + }, + { + "epoch": 49.82666666666667, + "grad_norm": 0.8619903922080994, + "learning_rate": 2.5097933333333336e-05, + "loss": 1.5340994262695313, + "step": 373700 + }, + { + "epoch": 49.84, + "grad_norm": 0.8415823578834534, + "learning_rate": 2.5091266666666668e-05, + "loss": 1.5291461181640624, + "step": 373800 + }, + { + "epoch": 49.85333333333333, + "grad_norm": 0.8430103063583374, + "learning_rate": 2.5084600000000004e-05, + "loss": 1.5344522094726563, + "step": 373900 + }, + { + "epoch": 49.86666666666667, + "grad_norm": 0.8401354551315308, + "learning_rate": 2.5077933333333336e-05, + "loss": 1.5318260192871094, + "step": 374000 + }, + { + "epoch": 49.88, + "grad_norm": 0.8805033564567566, + "learning_rate": 2.5071266666666665e-05, + "loss": 1.5331027221679687, + "step": 374100 + }, + { + "epoch": 49.89333333333333, + "grad_norm": 0.8586838245391846, + "learning_rate": 2.50646e-05, + "loss": 1.5350416564941407, + "step": 374200 + }, + { + "epoch": 49.906666666666666, + "grad_norm": 0.8289893269538879, + "learning_rate": 2.5057933333333333e-05, + "loss": 1.531967315673828, + "step": 374300 + }, + { + "epoch": 49.92, + "grad_norm": 0.8118442893028259, + "learning_rate": 2.505126666666667e-05, + "loss": 1.5373696899414062, + "step": 374400 + }, + { + "epoch": 49.93333333333333, + "grad_norm": 0.8152410984039307, + "learning_rate": 2.5044666666666668e-05, + "loss": 1.5317294311523437, + "step": 374500 + }, + { + "epoch": 49.946666666666665, + "grad_norm": 0.8541066646575928, + "learning_rate": 2.5038e-05, + "loss": 1.5318400573730468, + "step": 374600 + }, + { + "epoch": 49.96, + "grad_norm": 0.8401637673377991, + "learning_rate": 2.5031333333333335e-05, + "loss": 1.53946044921875, + "step": 374700 + }, + { + "epoch": 49.973333333333336, + "grad_norm": 0.8769694566726685, + "learning_rate": 2.5024666666666668e-05, + "loss": 1.5422596740722656, + "step": 374800 + }, + { + "epoch": 49.986666666666665, + "grad_norm": 0.8622532486915588, + "learning_rate": 2.5018000000000003e-05, + "loss": 1.535623779296875, + "step": 374900 + }, + { + "epoch": 50.0, + "grad_norm": 0.8721447587013245, + "learning_rate": 2.5011333333333336e-05, + "loss": 1.5350186157226562, + "step": 375000 + }, + { + "epoch": 50.013333333333335, + "grad_norm": 0.8176959753036499, + "learning_rate": 2.5004666666666665e-05, + "loss": 1.466029052734375, + "step": 375100 + }, + { + "epoch": 50.026666666666664, + "grad_norm": 0.8403975963592529, + "learning_rate": 2.4998000000000004e-05, + "loss": 1.4674476623535155, + "step": 375200 + }, + { + "epoch": 50.04, + "grad_norm": 0.7836979031562805, + "learning_rate": 2.4991333333333332e-05, + "loss": 1.4652630615234374, + "step": 375300 + }, + { + "epoch": 50.053333333333335, + "grad_norm": 0.8018586039543152, + "learning_rate": 2.4984666666666668e-05, + "loss": 1.4712281799316407, + "step": 375400 + }, + { + "epoch": 50.06666666666667, + "grad_norm": 0.8064463138580322, + "learning_rate": 2.4978e-05, + "loss": 1.4708700561523438, + "step": 375500 + }, + { + "epoch": 50.08, + "grad_norm": 0.8261614441871643, + "learning_rate": 2.4971333333333336e-05, + "loss": 1.4716073608398437, + "step": 375600 + }, + { + "epoch": 50.093333333333334, + "grad_norm": 0.837766706943512, + "learning_rate": 2.496466666666667e-05, + "loss": 1.4701448059082032, + "step": 375700 + }, + { + "epoch": 50.10666666666667, + "grad_norm": 0.8290911912918091, + "learning_rate": 2.4958e-05, + "loss": 1.4736390686035157, + "step": 375800 + }, + { + "epoch": 50.12, + "grad_norm": 0.8385511636734009, + "learning_rate": 2.4951333333333336e-05, + "loss": 1.47410888671875, + "step": 375900 + }, + { + "epoch": 50.13333333333333, + "grad_norm": 0.8306918144226074, + "learning_rate": 2.494466666666667e-05, + "loss": 1.473253173828125, + "step": 376000 + }, + { + "epoch": 50.14666666666667, + "grad_norm": 0.8213056325912476, + "learning_rate": 2.4938e-05, + "loss": 1.4761256408691406, + "step": 376100 + }, + { + "epoch": 50.16, + "grad_norm": 0.8195951581001282, + "learning_rate": 2.4931333333333333e-05, + "loss": 1.4738999938964843, + "step": 376200 + }, + { + "epoch": 50.17333333333333, + "grad_norm": 0.8188632130622864, + "learning_rate": 2.492466666666667e-05, + "loss": 1.474258270263672, + "step": 376300 + }, + { + "epoch": 50.18666666666667, + "grad_norm": 0.8272870182991028, + "learning_rate": 2.4918e-05, + "loss": 1.4804847717285157, + "step": 376400 + }, + { + "epoch": 50.2, + "grad_norm": 0.8472500443458557, + "learning_rate": 2.4911333333333333e-05, + "loss": 1.4830419921875, + "step": 376500 + }, + { + "epoch": 50.21333333333333, + "grad_norm": 0.8540857434272766, + "learning_rate": 2.4904733333333336e-05, + "loss": 1.4762397766113282, + "step": 376600 + }, + { + "epoch": 50.22666666666667, + "grad_norm": 0.8313518762588501, + "learning_rate": 2.4898066666666668e-05, + "loss": 1.488265838623047, + "step": 376700 + }, + { + "epoch": 50.24, + "grad_norm": 0.8233117461204529, + "learning_rate": 2.48914e-05, + "loss": 1.4829058837890625, + "step": 376800 + }, + { + "epoch": 50.25333333333333, + "grad_norm": 0.779459536075592, + "learning_rate": 2.4884733333333336e-05, + "loss": 1.4825271606445312, + "step": 376900 + }, + { + "epoch": 50.266666666666666, + "grad_norm": 0.8867989182472229, + "learning_rate": 2.4878066666666668e-05, + "loss": 1.4807273864746093, + "step": 377000 + }, + { + "epoch": 50.28, + "grad_norm": 0.8341526985168457, + "learning_rate": 2.48714e-05, + "loss": 1.4884478759765625, + "step": 377100 + }, + { + "epoch": 50.29333333333334, + "grad_norm": 0.8194299340248108, + "learning_rate": 2.4864733333333333e-05, + "loss": 1.49041259765625, + "step": 377200 + }, + { + "epoch": 50.306666666666665, + "grad_norm": 0.8118073344230652, + "learning_rate": 2.485806666666667e-05, + "loss": 1.4905577087402344, + "step": 377300 + }, + { + "epoch": 50.32, + "grad_norm": 0.8379462361335754, + "learning_rate": 2.4851400000000004e-05, + "loss": 1.489639434814453, + "step": 377400 + }, + { + "epoch": 50.333333333333336, + "grad_norm": 0.8261382579803467, + "learning_rate": 2.4844733333333333e-05, + "loss": 1.4874810791015625, + "step": 377500 + }, + { + "epoch": 50.346666666666664, + "grad_norm": 0.8561468124389648, + "learning_rate": 2.483806666666667e-05, + "loss": 1.4892660522460937, + "step": 377600 + }, + { + "epoch": 50.36, + "grad_norm": 0.8199340105056763, + "learning_rate": 2.48314e-05, + "loss": 1.4900086975097657, + "step": 377700 + }, + { + "epoch": 50.373333333333335, + "grad_norm": 0.8406544327735901, + "learning_rate": 2.4824733333333333e-05, + "loss": 1.4931591796875, + "step": 377800 + }, + { + "epoch": 50.38666666666666, + "grad_norm": 0.855679452419281, + "learning_rate": 2.481806666666667e-05, + "loss": 1.496982879638672, + "step": 377900 + }, + { + "epoch": 50.4, + "grad_norm": 0.8296971917152405, + "learning_rate": 2.48114e-05, + "loss": 1.4914996337890625, + "step": 378000 + }, + { + "epoch": 50.413333333333334, + "grad_norm": 0.8180424571037292, + "learning_rate": 2.4804733333333337e-05, + "loss": 1.4951356506347657, + "step": 378100 + }, + { + "epoch": 50.42666666666667, + "grad_norm": 0.7618070244789124, + "learning_rate": 2.4798066666666666e-05, + "loss": 1.4911334228515625, + "step": 378200 + }, + { + "epoch": 50.44, + "grad_norm": 0.8503825664520264, + "learning_rate": 2.47914e-05, + "loss": 1.4923796081542968, + "step": 378300 + }, + { + "epoch": 50.45333333333333, + "grad_norm": 0.8834084272384644, + "learning_rate": 2.4784733333333333e-05, + "loss": 1.5002174377441406, + "step": 378400 + }, + { + "epoch": 50.46666666666667, + "grad_norm": 0.8220873475074768, + "learning_rate": 2.477806666666667e-05, + "loss": 1.4986158752441405, + "step": 378500 + }, + { + "epoch": 50.48, + "grad_norm": 0.8193914294242859, + "learning_rate": 2.4771466666666668e-05, + "loss": 1.5011746215820312, + "step": 378600 + }, + { + "epoch": 50.49333333333333, + "grad_norm": 0.800317108631134, + "learning_rate": 2.47648e-05, + "loss": 1.4963475036621094, + "step": 378700 + }, + { + "epoch": 50.50666666666667, + "grad_norm": 0.9164362549781799, + "learning_rate": 2.4758133333333333e-05, + "loss": 1.5000321960449219, + "step": 378800 + }, + { + "epoch": 50.52, + "grad_norm": 0.8191181421279907, + "learning_rate": 2.475146666666667e-05, + "loss": 1.4975949096679688, + "step": 378900 + }, + { + "epoch": 50.53333333333333, + "grad_norm": 0.8659054040908813, + "learning_rate": 2.47448e-05, + "loss": 1.5002691650390625, + "step": 379000 + }, + { + "epoch": 50.54666666666667, + "grad_norm": 0.8360313177108765, + "learning_rate": 2.4738133333333336e-05, + "loss": 1.5039067077636719, + "step": 379100 + }, + { + "epoch": 50.56, + "grad_norm": 0.8391720652580261, + "learning_rate": 2.4731466666666665e-05, + "loss": 1.5015184020996093, + "step": 379200 + }, + { + "epoch": 50.57333333333333, + "grad_norm": 0.8605763912200928, + "learning_rate": 2.47248e-05, + "loss": 1.4976239013671875, + "step": 379300 + }, + { + "epoch": 50.586666666666666, + "grad_norm": 0.8516925573348999, + "learning_rate": 2.4718133333333333e-05, + "loss": 1.506053466796875, + "step": 379400 + }, + { + "epoch": 50.6, + "grad_norm": 0.8585731387138367, + "learning_rate": 2.471146666666667e-05, + "loss": 1.5041627502441406, + "step": 379500 + }, + { + "epoch": 50.61333333333333, + "grad_norm": 0.8855695724487305, + "learning_rate": 2.47048e-05, + "loss": 1.511184539794922, + "step": 379600 + }, + { + "epoch": 50.626666666666665, + "grad_norm": 0.8389919996261597, + "learning_rate": 2.4698133333333333e-05, + "loss": 1.5034822082519532, + "step": 379700 + }, + { + "epoch": 50.64, + "grad_norm": 0.8592944145202637, + "learning_rate": 2.469146666666667e-05, + "loss": 1.5039569091796876, + "step": 379800 + }, + { + "epoch": 50.653333333333336, + "grad_norm": 0.8480226397514343, + "learning_rate": 2.46848e-05, + "loss": 1.5057781982421874, + "step": 379900 + }, + { + "epoch": 50.666666666666664, + "grad_norm": 0.8565899133682251, + "learning_rate": 2.4678133333333334e-05, + "loss": 1.5090969848632811, + "step": 380000 + }, + { + "epoch": 50.68, + "grad_norm": 0.8642663359642029, + "learning_rate": 2.467146666666667e-05, + "loss": 1.5119166564941406, + "step": 380100 + }, + { + "epoch": 50.693333333333335, + "grad_norm": 0.8396902084350586, + "learning_rate": 2.46648e-05, + "loss": 1.5146353149414062, + "step": 380200 + }, + { + "epoch": 50.70666666666666, + "grad_norm": 0.8606100678443909, + "learning_rate": 2.4658133333333337e-05, + "loss": 1.5087774658203126, + "step": 380300 + }, + { + "epoch": 50.72, + "grad_norm": 0.8133344054222107, + "learning_rate": 2.4651466666666666e-05, + "loss": 1.5128636169433594, + "step": 380400 + }, + { + "epoch": 50.733333333333334, + "grad_norm": 0.8432591557502747, + "learning_rate": 2.46448e-05, + "loss": 1.5084796142578125, + "step": 380500 + }, + { + "epoch": 50.74666666666667, + "grad_norm": 0.8862467408180237, + "learning_rate": 2.46382e-05, + "loss": 1.5145498657226562, + "step": 380600 + }, + { + "epoch": 50.76, + "grad_norm": 0.883004903793335, + "learning_rate": 2.4631533333333333e-05, + "loss": 1.5110755920410157, + "step": 380700 + }, + { + "epoch": 50.77333333333333, + "grad_norm": 0.8901974558830261, + "learning_rate": 2.462486666666667e-05, + "loss": 1.5167329406738281, + "step": 380800 + }, + { + "epoch": 50.78666666666667, + "grad_norm": 0.841244637966156, + "learning_rate": 2.46182e-05, + "loss": 1.5136112976074219, + "step": 380900 + }, + { + "epoch": 50.8, + "grad_norm": 0.8438834547996521, + "learning_rate": 2.4611533333333333e-05, + "loss": 1.5152095031738282, + "step": 381000 + }, + { + "epoch": 50.81333333333333, + "grad_norm": 0.8658137321472168, + "learning_rate": 2.460486666666667e-05, + "loss": 1.513826904296875, + "step": 381100 + }, + { + "epoch": 50.82666666666667, + "grad_norm": 0.882071852684021, + "learning_rate": 2.45982e-05, + "loss": 1.5154730224609374, + "step": 381200 + }, + { + "epoch": 50.84, + "grad_norm": 0.8813706040382385, + "learning_rate": 2.4591533333333337e-05, + "loss": 1.51885498046875, + "step": 381300 + }, + { + "epoch": 50.85333333333333, + "grad_norm": 0.8508647084236145, + "learning_rate": 2.4584866666666666e-05, + "loss": 1.5158058166503907, + "step": 381400 + }, + { + "epoch": 50.86666666666667, + "grad_norm": 0.8502191305160522, + "learning_rate": 2.45782e-05, + "loss": 1.5165373229980468, + "step": 381500 + }, + { + "epoch": 50.88, + "grad_norm": 0.8656032085418701, + "learning_rate": 2.4571533333333337e-05, + "loss": 1.5202676391601562, + "step": 381600 + }, + { + "epoch": 50.89333333333333, + "grad_norm": 0.8280258774757385, + "learning_rate": 2.4564866666666666e-05, + "loss": 1.523727569580078, + "step": 381700 + }, + { + "epoch": 50.906666666666666, + "grad_norm": 0.8496196269989014, + "learning_rate": 2.45582e-05, + "loss": 1.5180378723144532, + "step": 381800 + }, + { + "epoch": 50.92, + "grad_norm": 0.9003440141677856, + "learning_rate": 2.4551533333333334e-05, + "loss": 1.52153564453125, + "step": 381900 + }, + { + "epoch": 50.93333333333333, + "grad_norm": 0.8458821177482605, + "learning_rate": 2.454486666666667e-05, + "loss": 1.5277166748046875, + "step": 382000 + }, + { + "epoch": 50.946666666666665, + "grad_norm": 0.8582217693328857, + "learning_rate": 2.45382e-05, + "loss": 1.5160935974121095, + "step": 382100 + }, + { + "epoch": 50.96, + "grad_norm": 0.8812438249588013, + "learning_rate": 2.4531533333333334e-05, + "loss": 1.5228970336914063, + "step": 382200 + }, + { + "epoch": 50.973333333333336, + "grad_norm": 0.8399114608764648, + "learning_rate": 2.452486666666667e-05, + "loss": 1.5246499633789063, + "step": 382300 + }, + { + "epoch": 50.986666666666665, + "grad_norm": 0.8204259276390076, + "learning_rate": 2.4518200000000002e-05, + "loss": 1.5253396606445313, + "step": 382400 + }, + { + "epoch": 51.0, + "grad_norm": 0.8467189073562622, + "learning_rate": 2.4511533333333334e-05, + "loss": 1.5258003234863282, + "step": 382500 + }, + { + "epoch": 51.013333333333335, + "grad_norm": 0.8255739212036133, + "learning_rate": 2.4504933333333337e-05, + "loss": 1.4497154235839844, + "step": 382600 + }, + { + "epoch": 51.026666666666664, + "grad_norm": 0.8379701375961304, + "learning_rate": 2.4498266666666665e-05, + "loss": 1.452757568359375, + "step": 382700 + }, + { + "epoch": 51.04, + "grad_norm": 0.8153045177459717, + "learning_rate": 2.44916e-05, + "loss": 1.4591259765625, + "step": 382800 + }, + { + "epoch": 51.053333333333335, + "grad_norm": 0.8011037111282349, + "learning_rate": 2.4484933333333333e-05, + "loss": 1.4575518798828124, + "step": 382900 + }, + { + "epoch": 51.06666666666667, + "grad_norm": 0.8315128087997437, + "learning_rate": 2.447826666666667e-05, + "loss": 1.4647442626953124, + "step": 383000 + }, + { + "epoch": 51.08, + "grad_norm": 0.8852720260620117, + "learning_rate": 2.44716e-05, + "loss": 1.459652099609375, + "step": 383100 + }, + { + "epoch": 51.093333333333334, + "grad_norm": 0.837066113948822, + "learning_rate": 2.4464933333333334e-05, + "loss": 1.4613265991210938, + "step": 383200 + }, + { + "epoch": 51.10666666666667, + "grad_norm": 0.8697075843811035, + "learning_rate": 2.445826666666667e-05, + "loss": 1.4583189392089844, + "step": 383300 + }, + { + "epoch": 51.12, + "grad_norm": 0.8551360368728638, + "learning_rate": 2.44516e-05, + "loss": 1.4582942199707032, + "step": 383400 + }, + { + "epoch": 51.13333333333333, + "grad_norm": 0.8545364141464233, + "learning_rate": 2.4444933333333334e-05, + "loss": 1.460870819091797, + "step": 383500 + }, + { + "epoch": 51.14666666666667, + "grad_norm": 0.8045480251312256, + "learning_rate": 2.4438266666666666e-05, + "loss": 1.4661735534667968, + "step": 383600 + }, + { + "epoch": 51.16, + "grad_norm": 0.8242552876472473, + "learning_rate": 2.44316e-05, + "loss": 1.4653382873535157, + "step": 383700 + }, + { + "epoch": 51.17333333333333, + "grad_norm": 0.8422017693519592, + "learning_rate": 2.4424933333333337e-05, + "loss": 1.467156982421875, + "step": 383800 + }, + { + "epoch": 51.18666666666667, + "grad_norm": 0.8462349772453308, + "learning_rate": 2.4418266666666666e-05, + "loss": 1.471797637939453, + "step": 383900 + }, + { + "epoch": 51.2, + "grad_norm": 0.8934951424598694, + "learning_rate": 2.4411600000000002e-05, + "loss": 1.4692425537109375, + "step": 384000 + }, + { + "epoch": 51.21333333333333, + "grad_norm": 0.8612936735153198, + "learning_rate": 2.4404933333333334e-05, + "loss": 1.4652291870117187, + "step": 384100 + }, + { + "epoch": 51.22666666666667, + "grad_norm": 0.8447757959365845, + "learning_rate": 2.4398266666666666e-05, + "loss": 1.4715693664550782, + "step": 384200 + }, + { + "epoch": 51.24, + "grad_norm": 0.8683099746704102, + "learning_rate": 2.4391600000000002e-05, + "loss": 1.4702517700195312, + "step": 384300 + }, + { + "epoch": 51.25333333333333, + "grad_norm": 0.789240837097168, + "learning_rate": 2.4384933333333334e-05, + "loss": 1.4706991577148438, + "step": 384400 + }, + { + "epoch": 51.266666666666666, + "grad_norm": 0.8664871454238892, + "learning_rate": 2.437826666666667e-05, + "loss": 1.4718405151367187, + "step": 384500 + }, + { + "epoch": 51.28, + "grad_norm": 0.8637537956237793, + "learning_rate": 2.437166666666667e-05, + "loss": 1.4716297912597656, + "step": 384600 + }, + { + "epoch": 51.29333333333334, + "grad_norm": 0.8115244507789612, + "learning_rate": 2.4365e-05, + "loss": 1.4719580078125, + "step": 384700 + }, + { + "epoch": 51.306666666666665, + "grad_norm": 0.8004962801933289, + "learning_rate": 2.4358333333333337e-05, + "loss": 1.4749884033203124, + "step": 384800 + }, + { + "epoch": 51.32, + "grad_norm": 0.8783427476882935, + "learning_rate": 2.4351666666666666e-05, + "loss": 1.4797103881835938, + "step": 384900 + }, + { + "epoch": 51.333333333333336, + "grad_norm": 0.8578570485115051, + "learning_rate": 2.4345e-05, + "loss": 1.4746359252929688, + "step": 385000 + }, + { + "epoch": 51.346666666666664, + "grad_norm": 0.8788546323776245, + "learning_rate": 2.4338333333333334e-05, + "loss": 1.4802169799804688, + "step": 385100 + }, + { + "epoch": 51.36, + "grad_norm": 0.8816238641738892, + "learning_rate": 2.4331666666666666e-05, + "loss": 1.47786865234375, + "step": 385200 + }, + { + "epoch": 51.373333333333335, + "grad_norm": 0.8610212206840515, + "learning_rate": 2.4325000000000002e-05, + "loss": 1.4802935791015626, + "step": 385300 + }, + { + "epoch": 51.38666666666666, + "grad_norm": 0.8929548263549805, + "learning_rate": 2.4318333333333334e-05, + "loss": 1.4820956420898437, + "step": 385400 + }, + { + "epoch": 51.4, + "grad_norm": 0.8102960586547852, + "learning_rate": 2.431166666666667e-05, + "loss": 1.4810777282714844, + "step": 385500 + }, + { + "epoch": 51.413333333333334, + "grad_norm": 0.8530375361442566, + "learning_rate": 2.4305e-05, + "loss": 1.4792242431640625, + "step": 385600 + }, + { + "epoch": 51.42666666666667, + "grad_norm": 0.8311903476715088, + "learning_rate": 2.4298333333333334e-05, + "loss": 1.4845094299316406, + "step": 385700 + }, + { + "epoch": 51.44, + "grad_norm": 0.8655042052268982, + "learning_rate": 2.4291666666666666e-05, + "loss": 1.482476043701172, + "step": 385800 + }, + { + "epoch": 51.45333333333333, + "grad_norm": 0.8922598361968994, + "learning_rate": 2.4285000000000002e-05, + "loss": 1.4829647827148438, + "step": 385900 + }, + { + "epoch": 51.46666666666667, + "grad_norm": 0.8447866439819336, + "learning_rate": 2.4278333333333334e-05, + "loss": 1.4828948974609375, + "step": 386000 + }, + { + "epoch": 51.48, + "grad_norm": 0.8586673736572266, + "learning_rate": 2.4271666666666667e-05, + "loss": 1.4850732421875, + "step": 386100 + }, + { + "epoch": 51.49333333333333, + "grad_norm": 0.8505076766014099, + "learning_rate": 2.4265000000000002e-05, + "loss": 1.4824075317382812, + "step": 386200 + }, + { + "epoch": 51.50666666666667, + "grad_norm": 0.8577302694320679, + "learning_rate": 2.4258333333333335e-05, + "loss": 1.4877815246582031, + "step": 386300 + }, + { + "epoch": 51.52, + "grad_norm": 0.8362126350402832, + "learning_rate": 2.4251666666666667e-05, + "loss": 1.4846498107910155, + "step": 386400 + }, + { + "epoch": 51.53333333333333, + "grad_norm": 0.8587775230407715, + "learning_rate": 2.4245000000000002e-05, + "loss": 1.484984130859375, + "step": 386500 + }, + { + "epoch": 51.54666666666667, + "grad_norm": 0.871204137802124, + "learning_rate": 2.4238333333333335e-05, + "loss": 1.4914971923828124, + "step": 386600 + }, + { + "epoch": 51.56, + "grad_norm": 0.8179042935371399, + "learning_rate": 2.4231733333333334e-05, + "loss": 1.4899531555175782, + "step": 386700 + }, + { + "epoch": 51.57333333333333, + "grad_norm": 0.8490532040596008, + "learning_rate": 2.422506666666667e-05, + "loss": 1.4912181091308594, + "step": 386800 + }, + { + "epoch": 51.586666666666666, + "grad_norm": 0.8682654500007629, + "learning_rate": 2.4218400000000002e-05, + "loss": 1.4918653869628906, + "step": 386900 + }, + { + "epoch": 51.6, + "grad_norm": 0.890491247177124, + "learning_rate": 2.4211733333333334e-05, + "loss": 1.4917636108398438, + "step": 387000 + }, + { + "epoch": 51.61333333333333, + "grad_norm": 0.8665891885757446, + "learning_rate": 2.4205066666666666e-05, + "loss": 1.4941488647460937, + "step": 387100 + }, + { + "epoch": 51.626666666666665, + "grad_norm": 0.8592315316200256, + "learning_rate": 2.4198400000000002e-05, + "loss": 1.492812042236328, + "step": 387200 + }, + { + "epoch": 51.64, + "grad_norm": 0.8546895980834961, + "learning_rate": 2.4191733333333334e-05, + "loss": 1.4904875183105468, + "step": 387300 + }, + { + "epoch": 51.653333333333336, + "grad_norm": 0.8656253814697266, + "learning_rate": 2.4185066666666666e-05, + "loss": 1.4929344177246093, + "step": 387400 + }, + { + "epoch": 51.666666666666664, + "grad_norm": 0.8968192934989929, + "learning_rate": 2.4178400000000002e-05, + "loss": 1.4941493225097657, + "step": 387500 + }, + { + "epoch": 51.68, + "grad_norm": 0.8238973617553711, + "learning_rate": 2.4171733333333334e-05, + "loss": 1.4932928466796875, + "step": 387600 + }, + { + "epoch": 51.693333333333335, + "grad_norm": 0.8756453394889832, + "learning_rate": 2.416506666666667e-05, + "loss": 1.5003330993652344, + "step": 387700 + }, + { + "epoch": 51.70666666666666, + "grad_norm": 0.8613998293876648, + "learning_rate": 2.41584e-05, + "loss": 1.499681396484375, + "step": 387800 + }, + { + "epoch": 51.72, + "grad_norm": 0.8716132640838623, + "learning_rate": 2.4151733333333335e-05, + "loss": 1.4972032165527345, + "step": 387900 + }, + { + "epoch": 51.733333333333334, + "grad_norm": 0.8987093567848206, + "learning_rate": 2.414506666666667e-05, + "loss": 1.5022872924804687, + "step": 388000 + }, + { + "epoch": 51.74666666666667, + "grad_norm": 0.8321843147277832, + "learning_rate": 2.41384e-05, + "loss": 1.4971646118164061, + "step": 388100 + }, + { + "epoch": 51.76, + "grad_norm": 0.8500959277153015, + "learning_rate": 2.4131733333333335e-05, + "loss": 1.5017050170898438, + "step": 388200 + }, + { + "epoch": 51.77333333333333, + "grad_norm": 0.8492921590805054, + "learning_rate": 2.4125066666666667e-05, + "loss": 1.4948918151855468, + "step": 388300 + }, + { + "epoch": 51.78666666666667, + "grad_norm": 0.8338704705238342, + "learning_rate": 2.4118400000000003e-05, + "loss": 1.5020379638671875, + "step": 388400 + }, + { + "epoch": 51.8, + "grad_norm": 0.8522675037384033, + "learning_rate": 2.4111733333333335e-05, + "loss": 1.5005595397949218, + "step": 388500 + }, + { + "epoch": 51.81333333333333, + "grad_norm": 0.8284652829170227, + "learning_rate": 2.4105066666666667e-05, + "loss": 1.5022247314453125, + "step": 388600 + }, + { + "epoch": 51.82666666666667, + "grad_norm": 0.862209141254425, + "learning_rate": 2.409846666666667e-05, + "loss": 1.504408416748047, + "step": 388700 + }, + { + "epoch": 51.84, + "grad_norm": 0.8681904077529907, + "learning_rate": 2.4091800000000002e-05, + "loss": 1.5046144104003907, + "step": 388800 + }, + { + "epoch": 51.85333333333333, + "grad_norm": 0.8120859861373901, + "learning_rate": 2.4085133333333334e-05, + "loss": 1.5099690246582032, + "step": 388900 + }, + { + "epoch": 51.86666666666667, + "grad_norm": 0.8199965357780457, + "learning_rate": 2.407846666666667e-05, + "loss": 1.5086412048339843, + "step": 389000 + }, + { + "epoch": 51.88, + "grad_norm": 0.8781035542488098, + "learning_rate": 2.40718e-05, + "loss": 1.5068019104003907, + "step": 389100 + }, + { + "epoch": 51.89333333333333, + "grad_norm": 0.8746353983879089, + "learning_rate": 2.4065133333333334e-05, + "loss": 1.5051779174804687, + "step": 389200 + }, + { + "epoch": 51.906666666666666, + "grad_norm": 0.8584237098693848, + "learning_rate": 2.4058466666666667e-05, + "loss": 1.5083631896972656, + "step": 389300 + }, + { + "epoch": 51.92, + "grad_norm": 0.9089388251304626, + "learning_rate": 2.4051800000000002e-05, + "loss": 1.5061935424804687, + "step": 389400 + }, + { + "epoch": 51.93333333333333, + "grad_norm": 0.8394655585289001, + "learning_rate": 2.4045133333333335e-05, + "loss": 1.509464569091797, + "step": 389500 + }, + { + "epoch": 51.946666666666665, + "grad_norm": 0.8279618620872498, + "learning_rate": 2.4038466666666667e-05, + "loss": 1.5109159851074219, + "step": 389600 + }, + { + "epoch": 51.96, + "grad_norm": 0.9038397669792175, + "learning_rate": 2.4031800000000003e-05, + "loss": 1.510810089111328, + "step": 389700 + }, + { + "epoch": 51.973333333333336, + "grad_norm": 0.899217963218689, + "learning_rate": 2.4025133333333335e-05, + "loss": 1.5102980041503906, + "step": 389800 + }, + { + "epoch": 51.986666666666665, + "grad_norm": 0.905498743057251, + "learning_rate": 2.4018466666666667e-05, + "loss": 1.510074920654297, + "step": 389900 + }, + { + "epoch": 52.0, + "grad_norm": 0.8077598214149475, + "learning_rate": 2.40118e-05, + "loss": 1.5141552734375, + "step": 390000 + }, + { + "epoch": 52.013333333333335, + "grad_norm": 0.8236868381500244, + "learning_rate": 2.4005133333333335e-05, + "loss": 1.444603729248047, + "step": 390100 + }, + { + "epoch": 52.026666666666664, + "grad_norm": 0.8070313930511475, + "learning_rate": 2.399846666666667e-05, + "loss": 1.4379257202148437, + "step": 390200 + }, + { + "epoch": 52.04, + "grad_norm": 0.7745979428291321, + "learning_rate": 2.39918e-05, + "loss": 1.4440399169921876, + "step": 390300 + }, + { + "epoch": 52.053333333333335, + "grad_norm": 0.8141463398933411, + "learning_rate": 2.3985133333333335e-05, + "loss": 1.4421783447265626, + "step": 390400 + }, + { + "epoch": 52.06666666666667, + "grad_norm": 0.8253259062767029, + "learning_rate": 2.3978466666666667e-05, + "loss": 1.4468896484375, + "step": 390500 + }, + { + "epoch": 52.08, + "grad_norm": 0.8300577402114868, + "learning_rate": 2.39718e-05, + "loss": 1.4401560974121095, + "step": 390600 + }, + { + "epoch": 52.093333333333334, + "grad_norm": 0.854324996471405, + "learning_rate": 2.3965200000000002e-05, + "loss": 1.4524754333496093, + "step": 390700 + }, + { + "epoch": 52.10666666666667, + "grad_norm": 0.8196046352386475, + "learning_rate": 2.3958533333333334e-05, + "loss": 1.4522889709472657, + "step": 390800 + }, + { + "epoch": 52.12, + "grad_norm": 0.8217240571975708, + "learning_rate": 2.3951866666666667e-05, + "loss": 1.4478153991699219, + "step": 390900 + }, + { + "epoch": 52.13333333333333, + "grad_norm": 0.8146061301231384, + "learning_rate": 2.3945200000000002e-05, + "loss": 1.450179443359375, + "step": 391000 + }, + { + "epoch": 52.14666666666667, + "grad_norm": 0.8496772646903992, + "learning_rate": 2.3938533333333335e-05, + "loss": 1.448777618408203, + "step": 391100 + }, + { + "epoch": 52.16, + "grad_norm": 0.8619560599327087, + "learning_rate": 2.393186666666667e-05, + "loss": 1.4484617614746094, + "step": 391200 + }, + { + "epoch": 52.17333333333333, + "grad_norm": 0.8483819365501404, + "learning_rate": 2.39252e-05, + "loss": 1.451850128173828, + "step": 391300 + }, + { + "epoch": 52.18666666666667, + "grad_norm": 0.8521955609321594, + "learning_rate": 2.3918533333333335e-05, + "loss": 1.459192657470703, + "step": 391400 + }, + { + "epoch": 52.2, + "grad_norm": 0.8739776611328125, + "learning_rate": 2.3911866666666667e-05, + "loss": 1.4575103759765624, + "step": 391500 + }, + { + "epoch": 52.21333333333333, + "grad_norm": 0.8248653411865234, + "learning_rate": 2.39052e-05, + "loss": 1.458475341796875, + "step": 391600 + }, + { + "epoch": 52.22666666666667, + "grad_norm": 0.8667312264442444, + "learning_rate": 2.3898533333333335e-05, + "loss": 1.4586300659179687, + "step": 391700 + }, + { + "epoch": 52.24, + "grad_norm": 0.8715050220489502, + "learning_rate": 2.3891866666666667e-05, + "loss": 1.4606393432617188, + "step": 391800 + }, + { + "epoch": 52.25333333333333, + "grad_norm": 0.8274866342544556, + "learning_rate": 2.3885200000000003e-05, + "loss": 1.4589753723144532, + "step": 391900 + }, + { + "epoch": 52.266666666666666, + "grad_norm": 0.8984260559082031, + "learning_rate": 2.3878533333333332e-05, + "loss": 1.4624786376953125, + "step": 392000 + }, + { + "epoch": 52.28, + "grad_norm": 0.8441860675811768, + "learning_rate": 2.3871866666666668e-05, + "loss": 1.4648696899414062, + "step": 392100 + }, + { + "epoch": 52.29333333333334, + "grad_norm": 0.8562932014465332, + "learning_rate": 2.38652e-05, + "loss": 1.4625413513183594, + "step": 392200 + }, + { + "epoch": 52.306666666666665, + "grad_norm": 0.8100069165229797, + "learning_rate": 2.3858533333333335e-05, + "loss": 1.4674345397949218, + "step": 392300 + }, + { + "epoch": 52.32, + "grad_norm": 0.879694938659668, + "learning_rate": 2.3851866666666668e-05, + "loss": 1.462593536376953, + "step": 392400 + }, + { + "epoch": 52.333333333333336, + "grad_norm": 0.8324185609817505, + "learning_rate": 2.38452e-05, + "loss": 1.4686509704589843, + "step": 392500 + }, + { + "epoch": 52.346666666666664, + "grad_norm": 0.8371502161026001, + "learning_rate": 2.3838533333333336e-05, + "loss": 1.468300323486328, + "step": 392600 + }, + { + "epoch": 52.36, + "grad_norm": 0.8931401968002319, + "learning_rate": 2.3831866666666668e-05, + "loss": 1.4668818664550782, + "step": 392700 + }, + { + "epoch": 52.373333333333335, + "grad_norm": 0.8364928960800171, + "learning_rate": 2.3825266666666667e-05, + "loss": 1.4689984130859375, + "step": 392800 + }, + { + "epoch": 52.38666666666666, + "grad_norm": 0.861511766910553, + "learning_rate": 2.3818600000000003e-05, + "loss": 1.4642536926269532, + "step": 392900 + }, + { + "epoch": 52.4, + "grad_norm": 0.8501995801925659, + "learning_rate": 2.3811933333333335e-05, + "loss": 1.4702130126953126, + "step": 393000 + }, + { + "epoch": 52.413333333333334, + "grad_norm": 0.8685861229896545, + "learning_rate": 2.3805266666666667e-05, + "loss": 1.472560577392578, + "step": 393100 + }, + { + "epoch": 52.42666666666667, + "grad_norm": 0.8422084450721741, + "learning_rate": 2.3798600000000003e-05, + "loss": 1.4753160095214843, + "step": 393200 + }, + { + "epoch": 52.44, + "grad_norm": 0.8546521663665771, + "learning_rate": 2.3791933333333335e-05, + "loss": 1.473077392578125, + "step": 393300 + }, + { + "epoch": 52.45333333333333, + "grad_norm": 0.8383651375770569, + "learning_rate": 2.3785266666666667e-05, + "loss": 1.468947296142578, + "step": 393400 + }, + { + "epoch": 52.46666666666667, + "grad_norm": 0.8365948796272278, + "learning_rate": 2.37786e-05, + "loss": 1.4694491577148439, + "step": 393500 + }, + { + "epoch": 52.48, + "grad_norm": 0.8776941299438477, + "learning_rate": 2.3771933333333335e-05, + "loss": 1.4765846252441406, + "step": 393600 + }, + { + "epoch": 52.49333333333333, + "grad_norm": 0.8972512483596802, + "learning_rate": 2.3765266666666668e-05, + "loss": 1.4798658752441407, + "step": 393700 + }, + { + "epoch": 52.50666666666667, + "grad_norm": 0.87769615650177, + "learning_rate": 2.37586e-05, + "loss": 1.4698507690429687, + "step": 393800 + }, + { + "epoch": 52.52, + "grad_norm": 0.8386378884315491, + "learning_rate": 2.3751933333333335e-05, + "loss": 1.4793057250976562, + "step": 393900 + }, + { + "epoch": 52.53333333333333, + "grad_norm": 0.85838383436203, + "learning_rate": 2.3745266666666668e-05, + "loss": 1.4752388000488281, + "step": 394000 + }, + { + "epoch": 52.54666666666667, + "grad_norm": 0.8824598789215088, + "learning_rate": 2.3738600000000003e-05, + "loss": 1.4773374938964843, + "step": 394100 + }, + { + "epoch": 52.56, + "grad_norm": 0.8590186834335327, + "learning_rate": 2.3731933333333332e-05, + "loss": 1.4786466979980468, + "step": 394200 + }, + { + "epoch": 52.57333333333333, + "grad_norm": 0.8705313801765442, + "learning_rate": 2.3725266666666668e-05, + "loss": 1.4816523742675782, + "step": 394300 + }, + { + "epoch": 52.586666666666666, + "grad_norm": 0.865382194519043, + "learning_rate": 2.3718600000000004e-05, + "loss": 1.478979034423828, + "step": 394400 + }, + { + "epoch": 52.6, + "grad_norm": 0.8217282891273499, + "learning_rate": 2.3711933333333332e-05, + "loss": 1.4787644958496093, + "step": 394500 + }, + { + "epoch": 52.61333333333333, + "grad_norm": 0.8592541217803955, + "learning_rate": 2.3705266666666668e-05, + "loss": 1.482845458984375, + "step": 394600 + }, + { + "epoch": 52.626666666666665, + "grad_norm": 0.8390605449676514, + "learning_rate": 2.36986e-05, + "loss": 1.4851654052734375, + "step": 394700 + }, + { + "epoch": 52.64, + "grad_norm": 0.9070495963096619, + "learning_rate": 2.3692e-05, + "loss": 1.4781282043457031, + "step": 394800 + }, + { + "epoch": 52.653333333333336, + "grad_norm": 0.8450265526771545, + "learning_rate": 2.3685333333333335e-05, + "loss": 1.483128204345703, + "step": 394900 + }, + { + "epoch": 52.666666666666664, + "grad_norm": 0.8272682428359985, + "learning_rate": 2.3678666666666667e-05, + "loss": 1.484342041015625, + "step": 395000 + }, + { + "epoch": 52.68, + "grad_norm": 0.9051398634910583, + "learning_rate": 2.3672000000000003e-05, + "loss": 1.4861419677734375, + "step": 395100 + }, + { + "epoch": 52.693333333333335, + "grad_norm": 0.8721572160720825, + "learning_rate": 2.3665333333333335e-05, + "loss": 1.4825254821777343, + "step": 395200 + }, + { + "epoch": 52.70666666666666, + "grad_norm": 0.8346722722053528, + "learning_rate": 2.3658666666666668e-05, + "loss": 1.486527099609375, + "step": 395300 + }, + { + "epoch": 52.72, + "grad_norm": 0.8343473076820374, + "learning_rate": 2.3652000000000003e-05, + "loss": 1.485967254638672, + "step": 395400 + }, + { + "epoch": 52.733333333333334, + "grad_norm": 0.849467396736145, + "learning_rate": 2.3645333333333332e-05, + "loss": 1.485404510498047, + "step": 395500 + }, + { + "epoch": 52.74666666666667, + "grad_norm": 0.8700857162475586, + "learning_rate": 2.3638666666666668e-05, + "loss": 1.4913349914550782, + "step": 395600 + }, + { + "epoch": 52.76, + "grad_norm": 0.9438149929046631, + "learning_rate": 2.3632e-05, + "loss": 1.4887771606445312, + "step": 395700 + }, + { + "epoch": 52.77333333333333, + "grad_norm": 0.8537826538085938, + "learning_rate": 2.3625333333333336e-05, + "loss": 1.4901506042480468, + "step": 395800 + }, + { + "epoch": 52.78666666666667, + "grad_norm": 0.8943189382553101, + "learning_rate": 2.3618666666666668e-05, + "loss": 1.4895608520507813, + "step": 395900 + }, + { + "epoch": 52.8, + "grad_norm": 0.8864601254463196, + "learning_rate": 2.3612e-05, + "loss": 1.4893939208984375, + "step": 396000 + }, + { + "epoch": 52.81333333333333, + "grad_norm": 0.8941498398780823, + "learning_rate": 2.3605333333333336e-05, + "loss": 1.4906712341308594, + "step": 396100 + }, + { + "epoch": 52.82666666666667, + "grad_norm": 0.8816115260124207, + "learning_rate": 2.3598666666666668e-05, + "loss": 1.4948838806152345, + "step": 396200 + }, + { + "epoch": 52.84, + "grad_norm": 0.8456717133522034, + "learning_rate": 2.3592e-05, + "loss": 1.4868934631347657, + "step": 396300 + }, + { + "epoch": 52.85333333333333, + "grad_norm": 0.8491533994674683, + "learning_rate": 2.3585333333333333e-05, + "loss": 1.4916058349609376, + "step": 396400 + }, + { + "epoch": 52.86666666666667, + "grad_norm": 0.8934788107872009, + "learning_rate": 2.357866666666667e-05, + "loss": 1.4947138977050782, + "step": 396500 + }, + { + "epoch": 52.88, + "grad_norm": 0.8404362797737122, + "learning_rate": 2.3572000000000004e-05, + "loss": 1.4902780151367188, + "step": 396600 + }, + { + "epoch": 52.89333333333333, + "grad_norm": 0.8693411946296692, + "learning_rate": 2.3565333333333333e-05, + "loss": 1.493137969970703, + "step": 396700 + }, + { + "epoch": 52.906666666666666, + "grad_norm": 0.8568634986877441, + "learning_rate": 2.3558733333333335e-05, + "loss": 1.4958587646484376, + "step": 396800 + }, + { + "epoch": 52.92, + "grad_norm": 0.8633151054382324, + "learning_rate": 2.3552066666666668e-05, + "loss": 1.4957908630371093, + "step": 396900 + }, + { + "epoch": 52.93333333333333, + "grad_norm": 0.8764383792877197, + "learning_rate": 2.35454e-05, + "loss": 1.498976287841797, + "step": 397000 + }, + { + "epoch": 52.946666666666665, + "grad_norm": 0.8593562841415405, + "learning_rate": 2.3538733333333336e-05, + "loss": 1.496341552734375, + "step": 397100 + }, + { + "epoch": 52.96, + "grad_norm": 0.864981472492218, + "learning_rate": 2.3532066666666668e-05, + "loss": 1.500501708984375, + "step": 397200 + }, + { + "epoch": 52.973333333333336, + "grad_norm": 0.869564950466156, + "learning_rate": 2.35254e-05, + "loss": 1.4988710021972655, + "step": 397300 + }, + { + "epoch": 52.986666666666665, + "grad_norm": 0.8883520364761353, + "learning_rate": 2.3518733333333336e-05, + "loss": 1.5024085998535157, + "step": 397400 + }, + { + "epoch": 53.0, + "grad_norm": 0.8562717437744141, + "learning_rate": 2.3512066666666668e-05, + "loss": 1.5046351623535157, + "step": 397500 + }, + { + "epoch": 53.013333333333335, + "grad_norm": 0.805515706539154, + "learning_rate": 2.3505400000000004e-05, + "loss": 1.4346591186523439, + "step": 397600 + }, + { + "epoch": 53.026666666666664, + "grad_norm": 0.80479896068573, + "learning_rate": 2.3498733333333333e-05, + "loss": 1.4268614196777343, + "step": 397700 + }, + { + "epoch": 53.04, + "grad_norm": 0.8560926914215088, + "learning_rate": 2.3492066666666668e-05, + "loss": 1.4327865600585938, + "step": 397800 + }, + { + "epoch": 53.053333333333335, + "grad_norm": 0.8021524548530579, + "learning_rate": 2.34854e-05, + "loss": 1.4293780517578125, + "step": 397900 + }, + { + "epoch": 53.06666666666667, + "grad_norm": 0.80971360206604, + "learning_rate": 2.3478733333333333e-05, + "loss": 1.4374539184570312, + "step": 398000 + }, + { + "epoch": 53.08, + "grad_norm": 0.838452935218811, + "learning_rate": 2.347206666666667e-05, + "loss": 1.4421630859375, + "step": 398100 + }, + { + "epoch": 53.093333333333334, + "grad_norm": 0.8354381322860718, + "learning_rate": 2.34654e-05, + "loss": 1.43285400390625, + "step": 398200 + }, + { + "epoch": 53.10666666666667, + "grad_norm": 0.8726691007614136, + "learning_rate": 2.3458733333333336e-05, + "loss": 1.4365280151367188, + "step": 398300 + }, + { + "epoch": 53.12, + "grad_norm": 0.8390151262283325, + "learning_rate": 2.3452066666666665e-05, + "loss": 1.4363105773925782, + "step": 398400 + }, + { + "epoch": 53.13333333333333, + "grad_norm": 0.8505403995513916, + "learning_rate": 2.34454e-05, + "loss": 1.4446278381347657, + "step": 398500 + }, + { + "epoch": 53.14666666666667, + "grad_norm": 0.8463150262832642, + "learning_rate": 2.3438733333333333e-05, + "loss": 1.4427076721191405, + "step": 398600 + }, + { + "epoch": 53.16, + "grad_norm": 0.8394322991371155, + "learning_rate": 2.343206666666667e-05, + "loss": 1.4383731079101563, + "step": 398700 + }, + { + "epoch": 53.17333333333333, + "grad_norm": 0.8394029140472412, + "learning_rate": 2.3425466666666668e-05, + "loss": 1.443642578125, + "step": 398800 + }, + { + "epoch": 53.18666666666667, + "grad_norm": 0.8809831738471985, + "learning_rate": 2.3418800000000004e-05, + "loss": 1.4458544921875, + "step": 398900 + }, + { + "epoch": 53.2, + "grad_norm": 0.9032037258148193, + "learning_rate": 2.3412133333333332e-05, + "loss": 1.4469097900390624, + "step": 399000 + }, + { + "epoch": 53.21333333333333, + "grad_norm": 0.7470035552978516, + "learning_rate": 2.3405466666666668e-05, + "loss": 1.4481082153320313, + "step": 399100 + }, + { + "epoch": 53.22666666666667, + "grad_norm": 0.8141319155693054, + "learning_rate": 2.33988e-05, + "loss": 1.4453059387207032, + "step": 399200 + }, + { + "epoch": 53.24, + "grad_norm": 0.8504648804664612, + "learning_rate": 2.3392133333333336e-05, + "loss": 1.4482171630859375, + "step": 399300 + }, + { + "epoch": 53.25333333333333, + "grad_norm": 0.8674839735031128, + "learning_rate": 2.3385466666666668e-05, + "loss": 1.4432850646972657, + "step": 399400 + }, + { + "epoch": 53.266666666666666, + "grad_norm": 0.8443961143493652, + "learning_rate": 2.33788e-05, + "loss": 1.4486787414550781, + "step": 399500 + }, + { + "epoch": 53.28, + "grad_norm": 0.8612597584724426, + "learning_rate": 2.3372133333333336e-05, + "loss": 1.4492063903808594, + "step": 399600 + }, + { + "epoch": 53.29333333333334, + "grad_norm": 0.8739829659461975, + "learning_rate": 2.336546666666667e-05, + "loss": 1.4499366760253907, + "step": 399700 + }, + { + "epoch": 53.306666666666665, + "grad_norm": 0.8640965819358826, + "learning_rate": 2.33588e-05, + "loss": 1.454102783203125, + "step": 399800 + }, + { + "epoch": 53.32, + "grad_norm": 0.830761730670929, + "learning_rate": 2.3352133333333333e-05, + "loss": 1.4512599182128907, + "step": 399900 + }, + { + "epoch": 53.333333333333336, + "grad_norm": 0.8445847034454346, + "learning_rate": 2.334546666666667e-05, + "loss": 1.451502685546875, + "step": 400000 + }, + { + "epoch": 53.346666666666664, + "grad_norm": 0.8434433937072754, + "learning_rate": 2.33388e-05, + "loss": 1.4518226623535155, + "step": 400100 + }, + { + "epoch": 53.36, + "grad_norm": 0.8982335925102234, + "learning_rate": 2.3332133333333333e-05, + "loss": 1.4535255432128906, + "step": 400200 + }, + { + "epoch": 53.373333333333335, + "grad_norm": 0.8745660781860352, + "learning_rate": 2.332546666666667e-05, + "loss": 1.4575784301757813, + "step": 400300 + }, + { + "epoch": 53.38666666666666, + "grad_norm": 0.8744916319847107, + "learning_rate": 2.33188e-05, + "loss": 1.4541175842285157, + "step": 400400 + }, + { + "epoch": 53.4, + "grad_norm": 0.8759534955024719, + "learning_rate": 2.3312133333333337e-05, + "loss": 1.4521678161621094, + "step": 400500 + }, + { + "epoch": 53.413333333333334, + "grad_norm": 0.7871354222297668, + "learning_rate": 2.3305466666666666e-05, + "loss": 1.4580287170410156, + "step": 400600 + }, + { + "epoch": 53.42666666666667, + "grad_norm": 0.8808795809745789, + "learning_rate": 2.32988e-05, + "loss": 1.4611434936523438, + "step": 400700 + }, + { + "epoch": 53.44, + "grad_norm": 0.8959735035896301, + "learning_rate": 2.32922e-05, + "loss": 1.459822998046875, + "step": 400800 + }, + { + "epoch": 53.45333333333333, + "grad_norm": 0.8618682622909546, + "learning_rate": 2.3285533333333333e-05, + "loss": 1.4601959228515624, + "step": 400900 + }, + { + "epoch": 53.46666666666667, + "grad_norm": 0.8385915160179138, + "learning_rate": 2.3278866666666668e-05, + "loss": 1.464827423095703, + "step": 401000 + }, + { + "epoch": 53.48, + "grad_norm": 0.8934867978096008, + "learning_rate": 2.3272200000000004e-05, + "loss": 1.4627699279785156, + "step": 401100 + }, + { + "epoch": 53.49333333333333, + "grad_norm": 0.846880316734314, + "learning_rate": 2.3265533333333333e-05, + "loss": 1.4640000915527345, + "step": 401200 + }, + { + "epoch": 53.50666666666667, + "grad_norm": 0.8630863428115845, + "learning_rate": 2.325886666666667e-05, + "loss": 1.460301971435547, + "step": 401300 + }, + { + "epoch": 53.52, + "grad_norm": 0.8449327945709229, + "learning_rate": 2.32522e-05, + "loss": 1.4675813293457032, + "step": 401400 + }, + { + "epoch": 53.53333333333333, + "grad_norm": 0.875411331653595, + "learning_rate": 2.3245533333333336e-05, + "loss": 1.463404541015625, + "step": 401500 + }, + { + "epoch": 53.54666666666667, + "grad_norm": 0.8588878512382507, + "learning_rate": 2.323886666666667e-05, + "loss": 1.4630206298828126, + "step": 401600 + }, + { + "epoch": 53.56, + "grad_norm": 0.8418893814086914, + "learning_rate": 2.32322e-05, + "loss": 1.4669151306152344, + "step": 401700 + }, + { + "epoch": 53.57333333333333, + "grad_norm": 0.8740350604057312, + "learning_rate": 2.3225533333333337e-05, + "loss": 1.4691087341308593, + "step": 401800 + }, + { + "epoch": 53.586666666666666, + "grad_norm": 0.8648200035095215, + "learning_rate": 2.3218866666666665e-05, + "loss": 1.4714599609375, + "step": 401900 + }, + { + "epoch": 53.6, + "grad_norm": 0.8941342830657959, + "learning_rate": 2.32122e-05, + "loss": 1.4738253784179687, + "step": 402000 + }, + { + "epoch": 53.61333333333333, + "grad_norm": 0.8258972764015198, + "learning_rate": 2.3205533333333333e-05, + "loss": 1.4741175842285157, + "step": 402100 + }, + { + "epoch": 53.626666666666665, + "grad_norm": 0.8815823793411255, + "learning_rate": 2.319886666666667e-05, + "loss": 1.4661442565917968, + "step": 402200 + }, + { + "epoch": 53.64, + "grad_norm": 0.8187025785446167, + "learning_rate": 2.31922e-05, + "loss": 1.4684117126464844, + "step": 402300 + }, + { + "epoch": 53.653333333333336, + "grad_norm": 0.8981267809867859, + "learning_rate": 2.3185533333333334e-05, + "loss": 1.4723139953613282, + "step": 402400 + }, + { + "epoch": 53.666666666666664, + "grad_norm": 0.8515080213546753, + "learning_rate": 2.317886666666667e-05, + "loss": 1.47446044921875, + "step": 402500 + }, + { + "epoch": 53.68, + "grad_norm": 0.8341559171676636, + "learning_rate": 2.31722e-05, + "loss": 1.4706192016601562, + "step": 402600 + }, + { + "epoch": 53.693333333333335, + "grad_norm": 0.8234730362892151, + "learning_rate": 2.3165533333333334e-05, + "loss": 1.4750930786132812, + "step": 402700 + }, + { + "epoch": 53.70666666666666, + "grad_norm": 0.854006290435791, + "learning_rate": 2.3158866666666666e-05, + "loss": 1.4691725158691407, + "step": 402800 + }, + { + "epoch": 53.72, + "grad_norm": 0.871201753616333, + "learning_rate": 2.3152266666666665e-05, + "loss": 1.4737733459472657, + "step": 402900 + }, + { + "epoch": 53.733333333333334, + "grad_norm": 0.8627591729164124, + "learning_rate": 2.31456e-05, + "loss": 1.4719656372070313, + "step": 403000 + }, + { + "epoch": 53.74666666666667, + "grad_norm": 0.937736988067627, + "learning_rate": 2.3138933333333333e-05, + "loss": 1.4713555908203124, + "step": 403100 + }, + { + "epoch": 53.76, + "grad_norm": 0.8441616892814636, + "learning_rate": 2.313226666666667e-05, + "loss": 1.4788174438476562, + "step": 403200 + }, + { + "epoch": 53.77333333333333, + "grad_norm": 0.8520199060440063, + "learning_rate": 2.31256e-05, + "loss": 1.4727986145019532, + "step": 403300 + }, + { + "epoch": 53.78666666666667, + "grad_norm": 0.9087309837341309, + "learning_rate": 2.3118933333333333e-05, + "loss": 1.4800141906738282, + "step": 403400 + }, + { + "epoch": 53.8, + "grad_norm": 0.8902503252029419, + "learning_rate": 2.311226666666667e-05, + "loss": 1.4767436218261718, + "step": 403500 + }, + { + "epoch": 53.81333333333333, + "grad_norm": 0.8224707245826721, + "learning_rate": 2.31056e-05, + "loss": 1.4753680419921875, + "step": 403600 + }, + { + "epoch": 53.82666666666667, + "grad_norm": 0.8903453946113586, + "learning_rate": 2.3098933333333333e-05, + "loss": 1.478042449951172, + "step": 403700 + }, + { + "epoch": 53.84, + "grad_norm": 0.8610987663269043, + "learning_rate": 2.309226666666667e-05, + "loss": 1.4786669921875, + "step": 403800 + }, + { + "epoch": 53.85333333333333, + "grad_norm": 0.8663672804832458, + "learning_rate": 2.30856e-05, + "loss": 1.4798565673828126, + "step": 403900 + }, + { + "epoch": 53.86666666666667, + "grad_norm": 0.8928523659706116, + "learning_rate": 2.3078933333333337e-05, + "loss": 1.476539306640625, + "step": 404000 + }, + { + "epoch": 53.88, + "grad_norm": 0.8405497670173645, + "learning_rate": 2.3072266666666666e-05, + "loss": 1.4814393615722656, + "step": 404100 + }, + { + "epoch": 53.89333333333333, + "grad_norm": 0.9027117490768433, + "learning_rate": 2.30656e-05, + "loss": 1.48431884765625, + "step": 404200 + }, + { + "epoch": 53.906666666666666, + "grad_norm": 0.8880442380905151, + "learning_rate": 2.3058933333333334e-05, + "loss": 1.4846881103515626, + "step": 404300 + }, + { + "epoch": 53.92, + "grad_norm": 0.8744670152664185, + "learning_rate": 2.3052266666666666e-05, + "loss": 1.48605224609375, + "step": 404400 + }, + { + "epoch": 53.93333333333333, + "grad_norm": 0.9039588570594788, + "learning_rate": 2.3045600000000002e-05, + "loss": 1.483401336669922, + "step": 404500 + }, + { + "epoch": 53.946666666666665, + "grad_norm": 0.8488764762878418, + "learning_rate": 2.3038933333333334e-05, + "loss": 1.4856008911132812, + "step": 404600 + }, + { + "epoch": 53.96, + "grad_norm": 0.8746914267539978, + "learning_rate": 2.303226666666667e-05, + "loss": 1.4808277893066406, + "step": 404700 + }, + { + "epoch": 53.973333333333336, + "grad_norm": 0.859261691570282, + "learning_rate": 2.30256e-05, + "loss": 1.481783447265625, + "step": 404800 + }, + { + "epoch": 53.986666666666665, + "grad_norm": 0.8789514899253845, + "learning_rate": 2.3019e-05, + "loss": 1.4835377502441407, + "step": 404900 + }, + { + "epoch": 54.0, + "grad_norm": 0.850490927696228, + "learning_rate": 2.3012333333333337e-05, + "loss": 1.4867596435546875, + "step": 405000 + }, + { + "epoch": 54.013333333333335, + "grad_norm": 0.8333851099014282, + "learning_rate": 2.3005666666666666e-05, + "loss": 1.4200978088378906, + "step": 405100 + }, + { + "epoch": 54.026666666666664, + "grad_norm": 0.8395662903785706, + "learning_rate": 2.2999e-05, + "loss": 1.4196142578125, + "step": 405200 + }, + { + "epoch": 54.04, + "grad_norm": 0.8212039470672607, + "learning_rate": 2.2992333333333333e-05, + "loss": 1.425306854248047, + "step": 405300 + }, + { + "epoch": 54.053333333333335, + "grad_norm": 0.7914276123046875, + "learning_rate": 2.2985666666666666e-05, + "loss": 1.4204986572265625, + "step": 405400 + }, + { + "epoch": 54.06666666666667, + "grad_norm": 0.8050218820571899, + "learning_rate": 2.2979e-05, + "loss": 1.4295758056640624, + "step": 405500 + }, + { + "epoch": 54.08, + "grad_norm": 0.8524725437164307, + "learning_rate": 2.2972333333333334e-05, + "loss": 1.4244723510742188, + "step": 405600 + }, + { + "epoch": 54.093333333333334, + "grad_norm": 0.812785804271698, + "learning_rate": 2.296566666666667e-05, + "loss": 1.4250279235839844, + "step": 405700 + }, + { + "epoch": 54.10666666666667, + "grad_norm": 0.8275474905967712, + "learning_rate": 2.2959e-05, + "loss": 1.430595703125, + "step": 405800 + }, + { + "epoch": 54.12, + "grad_norm": 0.8649910688400269, + "learning_rate": 2.2952333333333334e-05, + "loss": 1.431238250732422, + "step": 405900 + }, + { + "epoch": 54.13333333333333, + "grad_norm": 0.8428074717521667, + "learning_rate": 2.294566666666667e-05, + "loss": 1.4303498840332032, + "step": 406000 + }, + { + "epoch": 54.14666666666667, + "grad_norm": 0.8515647649765015, + "learning_rate": 2.2939000000000002e-05, + "loss": 1.4309127807617188, + "step": 406100 + }, + { + "epoch": 54.16, + "grad_norm": 0.8191271424293518, + "learning_rate": 2.2932333333333334e-05, + "loss": 1.4284707641601562, + "step": 406200 + }, + { + "epoch": 54.17333333333333, + "grad_norm": 0.869966447353363, + "learning_rate": 2.2925666666666666e-05, + "loss": 1.4276429748535155, + "step": 406300 + }, + { + "epoch": 54.18666666666667, + "grad_norm": 0.8617979288101196, + "learning_rate": 2.2919000000000002e-05, + "loss": 1.4300892639160157, + "step": 406400 + }, + { + "epoch": 54.2, + "grad_norm": 0.8274814486503601, + "learning_rate": 2.2912333333333334e-05, + "loss": 1.43626708984375, + "step": 406500 + }, + { + "epoch": 54.21333333333333, + "grad_norm": 0.8476601243019104, + "learning_rate": 2.2905666666666667e-05, + "loss": 1.43748046875, + "step": 406600 + }, + { + "epoch": 54.22666666666667, + "grad_norm": 0.8396388292312622, + "learning_rate": 2.2899000000000002e-05, + "loss": 1.4325535583496094, + "step": 406700 + }, + { + "epoch": 54.24, + "grad_norm": 0.8823912143707275, + "learning_rate": 2.2892333333333334e-05, + "loss": 1.4390623474121094, + "step": 406800 + }, + { + "epoch": 54.25333333333333, + "grad_norm": 0.8651164770126343, + "learning_rate": 2.2885733333333334e-05, + "loss": 1.434818878173828, + "step": 406900 + }, + { + "epoch": 54.266666666666666, + "grad_norm": 0.8942626714706421, + "learning_rate": 2.287906666666667e-05, + "loss": 1.4403004455566406, + "step": 407000 + }, + { + "epoch": 54.28, + "grad_norm": 0.81056809425354, + "learning_rate": 2.28724e-05, + "loss": 1.437251739501953, + "step": 407100 + }, + { + "epoch": 54.29333333333334, + "grad_norm": 0.8536822199821472, + "learning_rate": 2.2865733333333334e-05, + "loss": 1.4415220642089843, + "step": 407200 + }, + { + "epoch": 54.306666666666665, + "grad_norm": 0.850678026676178, + "learning_rate": 2.2859066666666666e-05, + "loss": 1.4421534729003906, + "step": 407300 + }, + { + "epoch": 54.32, + "grad_norm": 0.8688512444496155, + "learning_rate": 2.28524e-05, + "loss": 1.4458406066894531, + "step": 407400 + }, + { + "epoch": 54.333333333333336, + "grad_norm": 0.8030053973197937, + "learning_rate": 2.2845733333333337e-05, + "loss": 1.4411915588378905, + "step": 407500 + }, + { + "epoch": 54.346666666666664, + "grad_norm": 0.8313712477684021, + "learning_rate": 2.2839066666666666e-05, + "loss": 1.4449412536621093, + "step": 407600 + }, + { + "epoch": 54.36, + "grad_norm": 0.8125160932540894, + "learning_rate": 2.2832400000000002e-05, + "loss": 1.4425570678710937, + "step": 407700 + }, + { + "epoch": 54.373333333333335, + "grad_norm": 0.8480263352394104, + "learning_rate": 2.2825733333333334e-05, + "loss": 1.4434786987304689, + "step": 407800 + }, + { + "epoch": 54.38666666666666, + "grad_norm": 0.8349584341049194, + "learning_rate": 2.281906666666667e-05, + "loss": 1.4428903198242187, + "step": 407900 + }, + { + "epoch": 54.4, + "grad_norm": 0.8668252229690552, + "learning_rate": 2.2812400000000002e-05, + "loss": 1.4503041076660157, + "step": 408000 + }, + { + "epoch": 54.413333333333334, + "grad_norm": 0.8634394407272339, + "learning_rate": 2.2805733333333334e-05, + "loss": 1.450373992919922, + "step": 408100 + }, + { + "epoch": 54.42666666666667, + "grad_norm": 0.8869138956069946, + "learning_rate": 2.279906666666667e-05, + "loss": 1.4448956298828124, + "step": 408200 + }, + { + "epoch": 54.44, + "grad_norm": 0.8381974697113037, + "learning_rate": 2.27924e-05, + "loss": 1.4506912231445312, + "step": 408300 + }, + { + "epoch": 54.45333333333333, + "grad_norm": 0.8984852433204651, + "learning_rate": 2.2785733333333334e-05, + "loss": 1.4506108093261718, + "step": 408400 + }, + { + "epoch": 54.46666666666667, + "grad_norm": 0.8341385126113892, + "learning_rate": 2.2779066666666667e-05, + "loss": 1.4481794738769531, + "step": 408500 + }, + { + "epoch": 54.48, + "grad_norm": 0.8450107574462891, + "learning_rate": 2.2772400000000002e-05, + "loss": 1.452357635498047, + "step": 408600 + }, + { + "epoch": 54.49333333333333, + "grad_norm": 0.8467490077018738, + "learning_rate": 2.2765733333333335e-05, + "loss": 1.4530352783203124, + "step": 408700 + }, + { + "epoch": 54.50666666666667, + "grad_norm": 0.8854357004165649, + "learning_rate": 2.2759066666666667e-05, + "loss": 1.4446238708496093, + "step": 408800 + }, + { + "epoch": 54.52, + "grad_norm": 0.8822206258773804, + "learning_rate": 2.2752466666666666e-05, + "loss": 1.4520494079589843, + "step": 408900 + }, + { + "epoch": 54.53333333333333, + "grad_norm": 0.8779937028884888, + "learning_rate": 2.27458e-05, + "loss": 1.4530328369140626, + "step": 409000 + }, + { + "epoch": 54.54666666666667, + "grad_norm": 0.8283098340034485, + "learning_rate": 2.2739133333333334e-05, + "loss": 1.452464599609375, + "step": 409100 + }, + { + "epoch": 54.56, + "grad_norm": 0.9348580837249756, + "learning_rate": 2.273246666666667e-05, + "loss": 1.4534254455566407, + "step": 409200 + }, + { + "epoch": 54.57333333333333, + "grad_norm": 0.8854987621307373, + "learning_rate": 2.27258e-05, + "loss": 1.4535916137695313, + "step": 409300 + }, + { + "epoch": 54.586666666666666, + "grad_norm": 0.9117794632911682, + "learning_rate": 2.2719133333333334e-05, + "loss": 1.457483367919922, + "step": 409400 + }, + { + "epoch": 54.6, + "grad_norm": 0.8725807070732117, + "learning_rate": 2.2712466666666666e-05, + "loss": 1.4577378845214843, + "step": 409500 + }, + { + "epoch": 54.61333333333333, + "grad_norm": 0.9138243198394775, + "learning_rate": 2.2705800000000002e-05, + "loss": 1.4621884155273437, + "step": 409600 + }, + { + "epoch": 54.626666666666665, + "grad_norm": 0.8634496927261353, + "learning_rate": 2.2699133333333334e-05, + "loss": 1.4550845336914062, + "step": 409700 + }, + { + "epoch": 54.64, + "grad_norm": 0.8755178451538086, + "learning_rate": 2.2692466666666667e-05, + "loss": 1.45973388671875, + "step": 409800 + }, + { + "epoch": 54.653333333333336, + "grad_norm": 0.8733647465705872, + "learning_rate": 2.2685800000000002e-05, + "loss": 1.4567936706542968, + "step": 409900 + }, + { + "epoch": 54.666666666666664, + "grad_norm": 0.8817700147628784, + "learning_rate": 2.2679133333333335e-05, + "loss": 1.4601559448242187, + "step": 410000 + }, + { + "epoch": 54.68, + "grad_norm": 0.8758354187011719, + "learning_rate": 2.2672466666666667e-05, + "loss": 1.46127685546875, + "step": 410100 + }, + { + "epoch": 54.693333333333335, + "grad_norm": 0.8473187685012817, + "learning_rate": 2.2665800000000002e-05, + "loss": 1.4609004211425782, + "step": 410200 + }, + { + "epoch": 54.70666666666666, + "grad_norm": 0.8869526386260986, + "learning_rate": 2.2659133333333335e-05, + "loss": 1.4645802307128906, + "step": 410300 + }, + { + "epoch": 54.72, + "grad_norm": 0.8255419731140137, + "learning_rate": 2.265246666666667e-05, + "loss": 1.46389892578125, + "step": 410400 + }, + { + "epoch": 54.733333333333334, + "grad_norm": 0.831465482711792, + "learning_rate": 2.26458e-05, + "loss": 1.463885498046875, + "step": 410500 + }, + { + "epoch": 54.74666666666667, + "grad_norm": 0.9016580581665039, + "learning_rate": 2.2639133333333335e-05, + "loss": 1.4642086791992188, + "step": 410600 + }, + { + "epoch": 54.76, + "grad_norm": 0.8602574467658997, + "learning_rate": 2.2632466666666667e-05, + "loss": 1.4626669311523437, + "step": 410700 + }, + { + "epoch": 54.77333333333333, + "grad_norm": 0.8852930665016174, + "learning_rate": 2.26258e-05, + "loss": 1.467047882080078, + "step": 410800 + }, + { + "epoch": 54.78666666666667, + "grad_norm": 0.8360097408294678, + "learning_rate": 2.2619133333333335e-05, + "loss": 1.4667416381835938, + "step": 410900 + }, + { + "epoch": 54.8, + "grad_norm": 0.8857517242431641, + "learning_rate": 2.2612533333333334e-05, + "loss": 1.46333740234375, + "step": 411000 + }, + { + "epoch": 54.81333333333333, + "grad_norm": 0.8212206363677979, + "learning_rate": 2.2605866666666666e-05, + "loss": 1.467716827392578, + "step": 411100 + }, + { + "epoch": 54.82666666666667, + "grad_norm": 0.8455966711044312, + "learning_rate": 2.2599200000000002e-05, + "loss": 1.4688453674316406, + "step": 411200 + }, + { + "epoch": 54.84, + "grad_norm": 0.8679726719856262, + "learning_rate": 2.2592533333333334e-05, + "loss": 1.4663377380371094, + "step": 411300 + }, + { + "epoch": 54.85333333333333, + "grad_norm": 0.8671688437461853, + "learning_rate": 2.258586666666667e-05, + "loss": 1.4694053649902343, + "step": 411400 + }, + { + "epoch": 54.86666666666667, + "grad_norm": 0.8496808409690857, + "learning_rate": 2.25792e-05, + "loss": 1.46614013671875, + "step": 411500 + }, + { + "epoch": 54.88, + "grad_norm": 0.8471501469612122, + "learning_rate": 2.2572533333333335e-05, + "loss": 1.474624786376953, + "step": 411600 + }, + { + "epoch": 54.89333333333333, + "grad_norm": 0.8803544640541077, + "learning_rate": 2.2565866666666667e-05, + "loss": 1.4705052185058594, + "step": 411700 + }, + { + "epoch": 54.906666666666666, + "grad_norm": 0.9258813858032227, + "learning_rate": 2.25592e-05, + "loss": 1.4725639343261718, + "step": 411800 + }, + { + "epoch": 54.92, + "grad_norm": 0.8967903852462769, + "learning_rate": 2.2552533333333335e-05, + "loss": 1.4728996276855468, + "step": 411900 + }, + { + "epoch": 54.93333333333333, + "grad_norm": 0.8787213563919067, + "learning_rate": 2.2545866666666667e-05, + "loss": 1.4686712646484374, + "step": 412000 + }, + { + "epoch": 54.946666666666665, + "grad_norm": 0.8793955445289612, + "learning_rate": 2.2539200000000003e-05, + "loss": 1.4694187927246094, + "step": 412100 + }, + { + "epoch": 54.96, + "grad_norm": 0.8531497120857239, + "learning_rate": 2.2532533333333335e-05, + "loss": 1.4769473266601563, + "step": 412200 + }, + { + "epoch": 54.973333333333336, + "grad_norm": 0.8888368010520935, + "learning_rate": 2.2525866666666667e-05, + "loss": 1.4720077514648438, + "step": 412300 + }, + { + "epoch": 54.986666666666665, + "grad_norm": 0.893952488899231, + "learning_rate": 2.2519200000000003e-05, + "loss": 1.470653076171875, + "step": 412400 + }, + { + "epoch": 55.0, + "grad_norm": 0.8932615518569946, + "learning_rate": 2.2512533333333335e-05, + "loss": 1.4741424560546874, + "step": 412500 + }, + { + "epoch": 55.013333333333335, + "grad_norm": 0.8639925718307495, + "learning_rate": 2.2505866666666667e-05, + "loss": 1.4064114379882813, + "step": 412600 + }, + { + "epoch": 55.026666666666664, + "grad_norm": 0.8224576711654663, + "learning_rate": 2.24992e-05, + "loss": 1.412123260498047, + "step": 412700 + }, + { + "epoch": 55.04, + "grad_norm": 0.8823965191841125, + "learning_rate": 2.2492533333333335e-05, + "loss": 1.4082809448242188, + "step": 412800 + }, + { + "epoch": 55.053333333333335, + "grad_norm": 0.860645055770874, + "learning_rate": 2.2485866666666668e-05, + "loss": 1.4148016357421875, + "step": 412900 + }, + { + "epoch": 55.06666666666667, + "grad_norm": 0.876783549785614, + "learning_rate": 2.2479266666666667e-05, + "loss": 1.4186094665527345, + "step": 413000 + }, + { + "epoch": 55.08, + "grad_norm": 0.857022762298584, + "learning_rate": 2.2472600000000002e-05, + "loss": 1.4122817993164063, + "step": 413100 + }, + { + "epoch": 55.093333333333334, + "grad_norm": 0.8272480368614197, + "learning_rate": 2.2465933333333335e-05, + "loss": 1.4125518798828125, + "step": 413200 + }, + { + "epoch": 55.10666666666667, + "grad_norm": 0.8472641110420227, + "learning_rate": 2.2459266666666667e-05, + "loss": 1.412246551513672, + "step": 413300 + }, + { + "epoch": 55.12, + "grad_norm": 0.9146363139152527, + "learning_rate": 2.2452600000000003e-05, + "loss": 1.4172994995117187, + "step": 413400 + }, + { + "epoch": 55.13333333333333, + "grad_norm": 0.8248025178909302, + "learning_rate": 2.2445933333333335e-05, + "loss": 1.4187237548828124, + "step": 413500 + }, + { + "epoch": 55.14666666666667, + "grad_norm": 0.874271810054779, + "learning_rate": 2.2439266666666667e-05, + "loss": 1.41408935546875, + "step": 413600 + }, + { + "epoch": 55.16, + "grad_norm": 0.8196364641189575, + "learning_rate": 2.24326e-05, + "loss": 1.4154962158203126, + "step": 413700 + }, + { + "epoch": 55.17333333333333, + "grad_norm": 0.8373938798904419, + "learning_rate": 2.2425933333333335e-05, + "loss": 1.4177433776855468, + "step": 413800 + }, + { + "epoch": 55.18666666666667, + "grad_norm": 0.80357426404953, + "learning_rate": 2.241926666666667e-05, + "loss": 1.4225418090820312, + "step": 413900 + }, + { + "epoch": 55.2, + "grad_norm": 0.7960191965103149, + "learning_rate": 2.24126e-05, + "loss": 1.4238473510742187, + "step": 414000 + }, + { + "epoch": 55.21333333333333, + "grad_norm": 0.8417536020278931, + "learning_rate": 2.2405933333333335e-05, + "loss": 1.4218621826171876, + "step": 414100 + }, + { + "epoch": 55.22666666666667, + "grad_norm": 0.8823829889297485, + "learning_rate": 2.2399266666666667e-05, + "loss": 1.4251284790039063, + "step": 414200 + }, + { + "epoch": 55.24, + "grad_norm": 0.8325697183609009, + "learning_rate": 2.23926e-05, + "loss": 1.4224729919433594, + "step": 414300 + }, + { + "epoch": 55.25333333333333, + "grad_norm": 0.8879687786102295, + "learning_rate": 2.2385933333333335e-05, + "loss": 1.4293856811523438, + "step": 414400 + }, + { + "epoch": 55.266666666666666, + "grad_norm": 0.8998637199401855, + "learning_rate": 2.2379266666666668e-05, + "loss": 1.4206253051757813, + "step": 414500 + }, + { + "epoch": 55.28, + "grad_norm": 0.8645532727241516, + "learning_rate": 2.2372600000000003e-05, + "loss": 1.4249339294433594, + "step": 414600 + }, + { + "epoch": 55.29333333333334, + "grad_norm": 0.9286399483680725, + "learning_rate": 2.2365933333333332e-05, + "loss": 1.4289715576171875, + "step": 414700 + }, + { + "epoch": 55.306666666666665, + "grad_norm": 0.9058271646499634, + "learning_rate": 2.2359266666666668e-05, + "loss": 1.4306143188476563, + "step": 414800 + }, + { + "epoch": 55.32, + "grad_norm": 0.8806909918785095, + "learning_rate": 2.23526e-05, + "loss": 1.4301678466796874, + "step": 414900 + }, + { + "epoch": 55.333333333333336, + "grad_norm": 0.8449000120162964, + "learning_rate": 2.2345933333333336e-05, + "loss": 1.4272940063476562, + "step": 415000 + }, + { + "epoch": 55.346666666666664, + "grad_norm": 0.8805742263793945, + "learning_rate": 2.2339333333333335e-05, + "loss": 1.4354100036621094, + "step": 415100 + }, + { + "epoch": 55.36, + "grad_norm": 0.8670299649238586, + "learning_rate": 2.2332666666666667e-05, + "loss": 1.438927001953125, + "step": 415200 + }, + { + "epoch": 55.373333333333335, + "grad_norm": 0.8531759977340698, + "learning_rate": 2.2326e-05, + "loss": 1.4368338012695312, + "step": 415300 + }, + { + "epoch": 55.38666666666666, + "grad_norm": 0.8793957829475403, + "learning_rate": 2.2319333333333335e-05, + "loss": 1.4326312255859375, + "step": 415400 + }, + { + "epoch": 55.4, + "grad_norm": 0.8549216389656067, + "learning_rate": 2.2312666666666667e-05, + "loss": 1.4309808349609374, + "step": 415500 + }, + { + "epoch": 55.413333333333334, + "grad_norm": 0.8728709816932678, + "learning_rate": 2.2306000000000003e-05, + "loss": 1.4356973266601563, + "step": 415600 + }, + { + "epoch": 55.42666666666667, + "grad_norm": 0.8787753582000732, + "learning_rate": 2.2299333333333332e-05, + "loss": 1.435236053466797, + "step": 415700 + }, + { + "epoch": 55.44, + "grad_norm": 0.8510148525238037, + "learning_rate": 2.2292666666666667e-05, + "loss": 1.4368995666503905, + "step": 415800 + }, + { + "epoch": 55.45333333333333, + "grad_norm": 0.8644002079963684, + "learning_rate": 2.2286e-05, + "loss": 1.439784698486328, + "step": 415900 + }, + { + "epoch": 55.46666666666667, + "grad_norm": 0.8767049908638, + "learning_rate": 2.2279333333333335e-05, + "loss": 1.4385952758789062, + "step": 416000 + }, + { + "epoch": 55.48, + "grad_norm": 0.9412136673927307, + "learning_rate": 2.2272666666666668e-05, + "loss": 1.4417005920410155, + "step": 416100 + }, + { + "epoch": 55.49333333333333, + "grad_norm": 0.8540670275688171, + "learning_rate": 2.2266e-05, + "loss": 1.4380416870117188, + "step": 416200 + }, + { + "epoch": 55.50666666666667, + "grad_norm": 0.8778327107429504, + "learning_rate": 2.2259333333333336e-05, + "loss": 1.4395338439941405, + "step": 416300 + }, + { + "epoch": 55.52, + "grad_norm": 0.8598795533180237, + "learning_rate": 2.2252666666666668e-05, + "loss": 1.4399174499511718, + "step": 416400 + }, + { + "epoch": 55.53333333333333, + "grad_norm": 0.8614322543144226, + "learning_rate": 2.2246e-05, + "loss": 1.4443963623046876, + "step": 416500 + }, + { + "epoch": 55.54666666666667, + "grad_norm": 0.8454569578170776, + "learning_rate": 2.2239333333333336e-05, + "loss": 1.445623321533203, + "step": 416600 + }, + { + "epoch": 55.56, + "grad_norm": 0.8974414467811584, + "learning_rate": 2.2232666666666668e-05, + "loss": 1.4426679992675782, + "step": 416700 + }, + { + "epoch": 55.57333333333333, + "grad_norm": 0.8307322859764099, + "learning_rate": 2.2226000000000004e-05, + "loss": 1.4424739074707031, + "step": 416800 + }, + { + "epoch": 55.586666666666666, + "grad_norm": 0.8424813747406006, + "learning_rate": 2.2219333333333333e-05, + "loss": 1.4472550964355468, + "step": 416900 + }, + { + "epoch": 55.6, + "grad_norm": 0.8699893355369568, + "learning_rate": 2.2212666666666668e-05, + "loss": 1.437730712890625, + "step": 417000 + }, + { + "epoch": 55.61333333333333, + "grad_norm": 0.8717418313026428, + "learning_rate": 2.2206066666666667e-05, + "loss": 1.4472259521484374, + "step": 417100 + }, + { + "epoch": 55.626666666666665, + "grad_norm": 0.868630051612854, + "learning_rate": 2.21994e-05, + "loss": 1.4468307495117188, + "step": 417200 + }, + { + "epoch": 55.64, + "grad_norm": 0.9016746878623962, + "learning_rate": 2.2192733333333335e-05, + "loss": 1.4494607543945313, + "step": 417300 + }, + { + "epoch": 55.653333333333336, + "grad_norm": 0.8572381138801575, + "learning_rate": 2.2186066666666668e-05, + "loss": 1.4463278198242187, + "step": 417400 + }, + { + "epoch": 55.666666666666664, + "grad_norm": 0.9099103808403015, + "learning_rate": 2.21794e-05, + "loss": 1.4500961303710938, + "step": 417500 + }, + { + "epoch": 55.68, + "grad_norm": 0.9122660160064697, + "learning_rate": 2.2172733333333335e-05, + "loss": 1.4482554626464843, + "step": 417600 + }, + { + "epoch": 55.693333333333335, + "grad_norm": 0.8462883830070496, + "learning_rate": 2.2166066666666668e-05, + "loss": 1.447459716796875, + "step": 417700 + }, + { + "epoch": 55.70666666666666, + "grad_norm": 0.8462685942649841, + "learning_rate": 2.2159400000000003e-05, + "loss": 1.450800323486328, + "step": 417800 + }, + { + "epoch": 55.72, + "grad_norm": 0.8912447094917297, + "learning_rate": 2.2152733333333332e-05, + "loss": 1.4528042602539062, + "step": 417900 + }, + { + "epoch": 55.733333333333334, + "grad_norm": 0.8451516628265381, + "learning_rate": 2.2146066666666668e-05, + "loss": 1.4554351806640624, + "step": 418000 + }, + { + "epoch": 55.74666666666667, + "grad_norm": 0.8609992265701294, + "learning_rate": 2.21394e-05, + "loss": 1.4512791442871094, + "step": 418100 + }, + { + "epoch": 55.76, + "grad_norm": 0.8943572640419006, + "learning_rate": 2.2132733333333332e-05, + "loss": 1.4537530517578126, + "step": 418200 + }, + { + "epoch": 55.77333333333333, + "grad_norm": 0.8712022304534912, + "learning_rate": 2.2126066666666668e-05, + "loss": 1.4538926696777343, + "step": 418300 + }, + { + "epoch": 55.78666666666667, + "grad_norm": 0.9167302846908569, + "learning_rate": 2.21194e-05, + "loss": 1.457858123779297, + "step": 418400 + }, + { + "epoch": 55.8, + "grad_norm": 0.8773967623710632, + "learning_rate": 2.2112733333333336e-05, + "loss": 1.4523738098144532, + "step": 418500 + }, + { + "epoch": 55.81333333333333, + "grad_norm": 0.9126933217048645, + "learning_rate": 2.2106066666666668e-05, + "loss": 1.4570416259765624, + "step": 418600 + }, + { + "epoch": 55.82666666666667, + "grad_norm": 0.874134361743927, + "learning_rate": 2.20994e-05, + "loss": 1.456673583984375, + "step": 418700 + }, + { + "epoch": 55.84, + "grad_norm": 0.8987679481506348, + "learning_rate": 2.2092733333333336e-05, + "loss": 1.4605398559570313, + "step": 418800 + }, + { + "epoch": 55.85333333333333, + "grad_norm": 0.875527024269104, + "learning_rate": 2.208606666666667e-05, + "loss": 1.4604426574707032, + "step": 418900 + }, + { + "epoch": 55.86666666666667, + "grad_norm": 0.8008150458335876, + "learning_rate": 2.20794e-05, + "loss": 1.4571929931640626, + "step": 419000 + }, + { + "epoch": 55.88, + "grad_norm": 0.8355134129524231, + "learning_rate": 2.2072800000000003e-05, + "loss": 1.455338134765625, + "step": 419100 + }, + { + "epoch": 55.89333333333333, + "grad_norm": 0.8764241933822632, + "learning_rate": 2.2066133333333332e-05, + "loss": 1.454462432861328, + "step": 419200 + }, + { + "epoch": 55.906666666666666, + "grad_norm": 0.9243341088294983, + "learning_rate": 2.2059466666666668e-05, + "loss": 1.4607615661621094, + "step": 419300 + }, + { + "epoch": 55.92, + "grad_norm": 0.9032407402992249, + "learning_rate": 2.20528e-05, + "loss": 1.4592213439941406, + "step": 419400 + }, + { + "epoch": 55.93333333333333, + "grad_norm": 0.8600060939788818, + "learning_rate": 2.2046133333333336e-05, + "loss": 1.4632615661621093, + "step": 419500 + }, + { + "epoch": 55.946666666666665, + "grad_norm": 0.8559837937355042, + "learning_rate": 2.2039466666666668e-05, + "loss": 1.4599595642089844, + "step": 419600 + }, + { + "epoch": 55.96, + "grad_norm": 0.8894732594490051, + "learning_rate": 2.20328e-05, + "loss": 1.461082763671875, + "step": 419700 + }, + { + "epoch": 55.973333333333336, + "grad_norm": 0.8696638345718384, + "learning_rate": 2.2026133333333336e-05, + "loss": 1.4608134460449218, + "step": 419800 + }, + { + "epoch": 55.986666666666665, + "grad_norm": 0.9014117121696472, + "learning_rate": 2.2019466666666668e-05, + "loss": 1.4612680053710938, + "step": 419900 + }, + { + "epoch": 56.0, + "grad_norm": 0.934181272983551, + "learning_rate": 2.20128e-05, + "loss": 1.4615724182128906, + "step": 420000 + }, + { + "epoch": 56.013333333333335, + "grad_norm": 0.8485944867134094, + "learning_rate": 2.2006133333333333e-05, + "loss": 1.4035435485839844, + "step": 420100 + }, + { + "epoch": 56.026666666666664, + "grad_norm": 0.8273961544036865, + "learning_rate": 2.199946666666667e-05, + "loss": 1.4005302429199218, + "step": 420200 + }, + { + "epoch": 56.04, + "grad_norm": 0.8239974975585938, + "learning_rate": 2.1992800000000004e-05, + "loss": 1.3968911743164063, + "step": 420300 + }, + { + "epoch": 56.053333333333335, + "grad_norm": 0.8783063292503357, + "learning_rate": 2.1986133333333333e-05, + "loss": 1.3976206970214844, + "step": 420400 + }, + { + "epoch": 56.06666666666667, + "grad_norm": 0.8536005616188049, + "learning_rate": 2.197946666666667e-05, + "loss": 1.4026289367675782, + "step": 420500 + }, + { + "epoch": 56.08, + "grad_norm": 0.8284283876419067, + "learning_rate": 2.19728e-05, + "loss": 1.4048745727539063, + "step": 420600 + }, + { + "epoch": 56.093333333333334, + "grad_norm": 0.8265491724014282, + "learning_rate": 2.1966133333333333e-05, + "loss": 1.4086897277832031, + "step": 420700 + }, + { + "epoch": 56.10666666666667, + "grad_norm": 0.8136721849441528, + "learning_rate": 2.195946666666667e-05, + "loss": 1.4020260620117186, + "step": 420800 + }, + { + "epoch": 56.12, + "grad_norm": 0.8343340754508972, + "learning_rate": 2.19528e-05, + "loss": 1.4086201477050782, + "step": 420900 + }, + { + "epoch": 56.13333333333333, + "grad_norm": 0.8710994720458984, + "learning_rate": 2.1946133333333337e-05, + "loss": 1.407528839111328, + "step": 421000 + }, + { + "epoch": 56.14666666666667, + "grad_norm": 0.8886542916297913, + "learning_rate": 2.1939466666666665e-05, + "loss": 1.4091169738769531, + "step": 421100 + }, + { + "epoch": 56.16, + "grad_norm": 0.8041443228721619, + "learning_rate": 2.1932866666666668e-05, + "loss": 1.410533447265625, + "step": 421200 + }, + { + "epoch": 56.17333333333333, + "grad_norm": 0.8319317102432251, + "learning_rate": 2.1926200000000004e-05, + "loss": 1.4141780090332032, + "step": 421300 + }, + { + "epoch": 56.18666666666667, + "grad_norm": 0.8654050827026367, + "learning_rate": 2.1919533333333333e-05, + "loss": 1.417386016845703, + "step": 421400 + }, + { + "epoch": 56.2, + "grad_norm": 0.889337420463562, + "learning_rate": 2.1912866666666668e-05, + "loss": 1.411129150390625, + "step": 421500 + }, + { + "epoch": 56.21333333333333, + "grad_norm": 0.8444649577140808, + "learning_rate": 2.19062e-05, + "loss": 1.4155207824707032, + "step": 421600 + }, + { + "epoch": 56.22666666666667, + "grad_norm": 0.861868143081665, + "learning_rate": 2.1899533333333333e-05, + "loss": 1.417073974609375, + "step": 421700 + }, + { + "epoch": 56.24, + "grad_norm": 0.8739286661148071, + "learning_rate": 2.189286666666667e-05, + "loss": 1.4147346496582032, + "step": 421800 + }, + { + "epoch": 56.25333333333333, + "grad_norm": 0.8628485798835754, + "learning_rate": 2.18862e-05, + "loss": 1.416077880859375, + "step": 421900 + }, + { + "epoch": 56.266666666666666, + "grad_norm": 0.8855887055397034, + "learning_rate": 2.1879533333333336e-05, + "loss": 1.4169512939453126, + "step": 422000 + }, + { + "epoch": 56.28, + "grad_norm": 0.8673357963562012, + "learning_rate": 2.1872866666666665e-05, + "loss": 1.4148150634765626, + "step": 422100 + }, + { + "epoch": 56.29333333333334, + "grad_norm": 0.8554036617279053, + "learning_rate": 2.18662e-05, + "loss": 1.420289306640625, + "step": 422200 + }, + { + "epoch": 56.306666666666665, + "grad_norm": 0.8555299639701843, + "learning_rate": 2.1859533333333333e-05, + "loss": 1.4149293518066406, + "step": 422300 + }, + { + "epoch": 56.32, + "grad_norm": 0.9046564102172852, + "learning_rate": 2.185286666666667e-05, + "loss": 1.4149856567382812, + "step": 422400 + }, + { + "epoch": 56.333333333333336, + "grad_norm": 0.8520922660827637, + "learning_rate": 2.18462e-05, + "loss": 1.4218994140625, + "step": 422500 + }, + { + "epoch": 56.346666666666664, + "grad_norm": 0.8806357383728027, + "learning_rate": 2.1839533333333333e-05, + "loss": 1.4222920227050782, + "step": 422600 + }, + { + "epoch": 56.36, + "grad_norm": 0.9276759028434753, + "learning_rate": 2.183286666666667e-05, + "loss": 1.4219160461425782, + "step": 422700 + }, + { + "epoch": 56.373333333333335, + "grad_norm": 0.8782113194465637, + "learning_rate": 2.18262e-05, + "loss": 1.4204927062988282, + "step": 422800 + }, + { + "epoch": 56.38666666666666, + "grad_norm": 0.8631399869918823, + "learning_rate": 2.1819533333333333e-05, + "loss": 1.4249102783203125, + "step": 422900 + }, + { + "epoch": 56.4, + "grad_norm": 0.8936483860015869, + "learning_rate": 2.181286666666667e-05, + "loss": 1.4240966796875, + "step": 423000 + }, + { + "epoch": 56.413333333333334, + "grad_norm": 0.8748154640197754, + "learning_rate": 2.18062e-05, + "loss": 1.4252513122558594, + "step": 423100 + }, + { + "epoch": 56.42666666666667, + "grad_norm": 0.8596419095993042, + "learning_rate": 2.17996e-05, + "loss": 1.4259548950195313, + "step": 423200 + }, + { + "epoch": 56.44, + "grad_norm": 0.8839332461357117, + "learning_rate": 2.1792933333333336e-05, + "loss": 1.4302554321289063, + "step": 423300 + }, + { + "epoch": 56.45333333333333, + "grad_norm": 0.8390047550201416, + "learning_rate": 2.178626666666667e-05, + "loss": 1.4292677307128907, + "step": 423400 + }, + { + "epoch": 56.46666666666667, + "grad_norm": 0.8832520842552185, + "learning_rate": 2.17796e-05, + "loss": 1.426236114501953, + "step": 423500 + }, + { + "epoch": 56.48, + "grad_norm": 0.8132560849189758, + "learning_rate": 2.1772933333333333e-05, + "loss": 1.434789581298828, + "step": 423600 + }, + { + "epoch": 56.49333333333333, + "grad_norm": 0.8635860085487366, + "learning_rate": 2.176626666666667e-05, + "loss": 1.4259471130371093, + "step": 423700 + }, + { + "epoch": 56.50666666666667, + "grad_norm": 0.9170502424240112, + "learning_rate": 2.17596e-05, + "loss": 1.4286590576171876, + "step": 423800 + }, + { + "epoch": 56.52, + "grad_norm": 0.8722943663597107, + "learning_rate": 2.1752933333333333e-05, + "loss": 1.4344573974609376, + "step": 423900 + }, + { + "epoch": 56.53333333333333, + "grad_norm": 0.8727033138275146, + "learning_rate": 2.174626666666667e-05, + "loss": 1.4311439514160156, + "step": 424000 + }, + { + "epoch": 56.54666666666667, + "grad_norm": 0.8507550358772278, + "learning_rate": 2.17396e-05, + "loss": 1.4281155395507812, + "step": 424100 + }, + { + "epoch": 56.56, + "grad_norm": 0.9152675271034241, + "learning_rate": 2.1732933333333337e-05, + "loss": 1.4395048522949219, + "step": 424200 + }, + { + "epoch": 56.57333333333333, + "grad_norm": 0.8492377400398254, + "learning_rate": 2.1726266666666666e-05, + "loss": 1.43418212890625, + "step": 424300 + }, + { + "epoch": 56.586666666666666, + "grad_norm": 0.9120678901672363, + "learning_rate": 2.17196e-05, + "loss": 1.4339697265625, + "step": 424400 + }, + { + "epoch": 56.6, + "grad_norm": 0.9099976420402527, + "learning_rate": 2.1712933333333333e-05, + "loss": 1.4328225708007813, + "step": 424500 + }, + { + "epoch": 56.61333333333333, + "grad_norm": 0.846580445766449, + "learning_rate": 2.1706266666666666e-05, + "loss": 1.4381451416015625, + "step": 424600 + }, + { + "epoch": 56.626666666666665, + "grad_norm": 0.8989025950431824, + "learning_rate": 2.16996e-05, + "loss": 1.4314509582519532, + "step": 424700 + }, + { + "epoch": 56.64, + "grad_norm": 0.9448224306106567, + "learning_rate": 2.1692933333333334e-05, + "loss": 1.438125457763672, + "step": 424800 + }, + { + "epoch": 56.653333333333336, + "grad_norm": 0.8047678470611572, + "learning_rate": 2.168626666666667e-05, + "loss": 1.4364503479003907, + "step": 424900 + }, + { + "epoch": 56.666666666666664, + "grad_norm": 0.8994755148887634, + "learning_rate": 2.1679599999999998e-05, + "loss": 1.4405902099609376, + "step": 425000 + }, + { + "epoch": 56.68, + "grad_norm": 0.8442021608352661, + "learning_rate": 2.1672933333333334e-05, + "loss": 1.4396397399902343, + "step": 425100 + }, + { + "epoch": 56.693333333333335, + "grad_norm": 0.8690568804740906, + "learning_rate": 2.166626666666667e-05, + "loss": 1.443184814453125, + "step": 425200 + }, + { + "epoch": 56.70666666666666, + "grad_norm": 0.861370325088501, + "learning_rate": 2.165966666666667e-05, + "loss": 1.4361355590820313, + "step": 425300 + }, + { + "epoch": 56.72, + "grad_norm": 0.8897193670272827, + "learning_rate": 2.1653e-05, + "loss": 1.4400205993652344, + "step": 425400 + }, + { + "epoch": 56.733333333333334, + "grad_norm": 0.8475616574287415, + "learning_rate": 2.1646333333333337e-05, + "loss": 1.4406410217285157, + "step": 425500 + }, + { + "epoch": 56.74666666666667, + "grad_norm": 0.8466712236404419, + "learning_rate": 2.1639666666666665e-05, + "loss": 1.441578369140625, + "step": 425600 + }, + { + "epoch": 56.76, + "grad_norm": 0.9051734805107117, + "learning_rate": 2.1633e-05, + "loss": 1.4405007934570313, + "step": 425700 + }, + { + "epoch": 56.77333333333333, + "grad_norm": 0.8877379894256592, + "learning_rate": 2.1626333333333333e-05, + "loss": 1.4456788635253905, + "step": 425800 + }, + { + "epoch": 56.78666666666667, + "grad_norm": 0.914776623249054, + "learning_rate": 2.161966666666667e-05, + "loss": 1.4449098205566406, + "step": 425900 + }, + { + "epoch": 56.8, + "grad_norm": 0.8987554311752319, + "learning_rate": 2.1613e-05, + "loss": 1.445513916015625, + "step": 426000 + }, + { + "epoch": 56.81333333333333, + "grad_norm": 0.9004293084144592, + "learning_rate": 2.1606333333333334e-05, + "loss": 1.4431794738769532, + "step": 426100 + }, + { + "epoch": 56.82666666666667, + "grad_norm": 0.8796115517616272, + "learning_rate": 2.159966666666667e-05, + "loss": 1.444052734375, + "step": 426200 + }, + { + "epoch": 56.84, + "grad_norm": 0.8850584030151367, + "learning_rate": 2.1593e-05, + "loss": 1.442793426513672, + "step": 426300 + }, + { + "epoch": 56.85333333333333, + "grad_norm": 0.8874107003211975, + "learning_rate": 2.1586333333333334e-05, + "loss": 1.445687255859375, + "step": 426400 + }, + { + "epoch": 56.86666666666667, + "grad_norm": 0.8388593196868896, + "learning_rate": 2.1579666666666666e-05, + "loss": 1.447087860107422, + "step": 426500 + }, + { + "epoch": 56.88, + "grad_norm": 0.8567925095558167, + "learning_rate": 2.1573e-05, + "loss": 1.4455339050292968, + "step": 426600 + }, + { + "epoch": 56.89333333333333, + "grad_norm": 0.905091404914856, + "learning_rate": 2.1566333333333334e-05, + "loss": 1.4496022033691407, + "step": 426700 + }, + { + "epoch": 56.906666666666666, + "grad_norm": 0.851197361946106, + "learning_rate": 2.1559666666666666e-05, + "loss": 1.4433763122558594, + "step": 426800 + }, + { + "epoch": 56.92, + "grad_norm": 0.9563655257225037, + "learning_rate": 2.1553000000000002e-05, + "loss": 1.445602264404297, + "step": 426900 + }, + { + "epoch": 56.93333333333333, + "grad_norm": 0.8808197379112244, + "learning_rate": 2.1546333333333334e-05, + "loss": 1.4505947875976561, + "step": 427000 + }, + { + "epoch": 56.946666666666665, + "grad_norm": 0.8648757338523865, + "learning_rate": 2.1539666666666666e-05, + "loss": 1.4465037536621095, + "step": 427100 + }, + { + "epoch": 56.96, + "grad_norm": 0.8864550590515137, + "learning_rate": 2.1533000000000002e-05, + "loss": 1.4506777954101562, + "step": 427200 + }, + { + "epoch": 56.973333333333336, + "grad_norm": 0.8874581456184387, + "learning_rate": 2.15264e-05, + "loss": 1.449134063720703, + "step": 427300 + }, + { + "epoch": 56.986666666666665, + "grad_norm": 0.903593897819519, + "learning_rate": 2.1519733333333333e-05, + "loss": 1.4498974609375, + "step": 427400 + }, + { + "epoch": 57.0, + "grad_norm": 0.8335684537887573, + "learning_rate": 2.151306666666667e-05, + "loss": 1.4513101196289062, + "step": 427500 + }, + { + "epoch": 57.013333333333335, + "grad_norm": 0.8453123569488525, + "learning_rate": 2.15064e-05, + "loss": 1.3873635864257812, + "step": 427600 + }, + { + "epoch": 57.026666666666664, + "grad_norm": 0.892532229423523, + "learning_rate": 2.1499733333333337e-05, + "loss": 1.3913172912597656, + "step": 427700 + }, + { + "epoch": 57.04, + "grad_norm": 0.8891882300376892, + "learning_rate": 2.1493066666666666e-05, + "loss": 1.3940931701660155, + "step": 427800 + }, + { + "epoch": 57.053333333333335, + "grad_norm": 0.8671453595161438, + "learning_rate": 2.14864e-05, + "loss": 1.392352294921875, + "step": 427900 + }, + { + "epoch": 57.06666666666667, + "grad_norm": 0.8824362754821777, + "learning_rate": 2.1479733333333334e-05, + "loss": 1.3905747985839845, + "step": 428000 + }, + { + "epoch": 57.08, + "grad_norm": 0.8569581508636475, + "learning_rate": 2.1473066666666666e-05, + "loss": 1.3913356018066407, + "step": 428100 + }, + { + "epoch": 57.093333333333334, + "grad_norm": 0.8542196750640869, + "learning_rate": 2.14664e-05, + "loss": 1.39747314453125, + "step": 428200 + }, + { + "epoch": 57.10666666666667, + "grad_norm": 0.8506782054901123, + "learning_rate": 2.1459733333333334e-05, + "loss": 1.3980393981933594, + "step": 428300 + }, + { + "epoch": 57.12, + "grad_norm": 0.8215917944908142, + "learning_rate": 2.145306666666667e-05, + "loss": 1.3985368347167968, + "step": 428400 + }, + { + "epoch": 57.13333333333333, + "grad_norm": 0.8183411955833435, + "learning_rate": 2.14464e-05, + "loss": 1.3943287658691406, + "step": 428500 + }, + { + "epoch": 57.14666666666667, + "grad_norm": 0.8586587309837341, + "learning_rate": 2.1439733333333334e-05, + "loss": 1.3957505798339844, + "step": 428600 + }, + { + "epoch": 57.16, + "grad_norm": 0.873313307762146, + "learning_rate": 2.1433066666666666e-05, + "loss": 1.3994070434570312, + "step": 428700 + }, + { + "epoch": 57.17333333333333, + "grad_norm": 0.8390573263168335, + "learning_rate": 2.1426400000000002e-05, + "loss": 1.402987060546875, + "step": 428800 + }, + { + "epoch": 57.18666666666667, + "grad_norm": 0.8784012794494629, + "learning_rate": 2.1419733333333334e-05, + "loss": 1.4021636962890625, + "step": 428900 + }, + { + "epoch": 57.2, + "grad_norm": 0.8398882150650024, + "learning_rate": 2.1413066666666667e-05, + "loss": 1.4004843139648437, + "step": 429000 + }, + { + "epoch": 57.21333333333333, + "grad_norm": 0.8533040285110474, + "learning_rate": 2.1406400000000002e-05, + "loss": 1.4055615234375, + "step": 429100 + }, + { + "epoch": 57.22666666666667, + "grad_norm": 0.8388049602508545, + "learning_rate": 2.1399733333333335e-05, + "loss": 1.4073393249511719, + "step": 429200 + }, + { + "epoch": 57.24, + "grad_norm": 0.8552389740943909, + "learning_rate": 2.1393133333333334e-05, + "loss": 1.404532928466797, + "step": 429300 + }, + { + "epoch": 57.25333333333333, + "grad_norm": 0.8817448019981384, + "learning_rate": 2.138646666666667e-05, + "loss": 1.4020608520507813, + "step": 429400 + }, + { + "epoch": 57.266666666666666, + "grad_norm": 0.8578885793685913, + "learning_rate": 2.1379799999999998e-05, + "loss": 1.4063929748535156, + "step": 429500 + }, + { + "epoch": 57.28, + "grad_norm": 0.8610025644302368, + "learning_rate": 2.1373133333333334e-05, + "loss": 1.4068283081054687, + "step": 429600 + }, + { + "epoch": 57.29333333333334, + "grad_norm": 0.9056425094604492, + "learning_rate": 2.136646666666667e-05, + "loss": 1.4069955444335938, + "step": 429700 + }, + { + "epoch": 57.306666666666665, + "grad_norm": 0.8811911344528198, + "learning_rate": 2.1359800000000002e-05, + "loss": 1.4090301513671875, + "step": 429800 + }, + { + "epoch": 57.32, + "grad_norm": 0.8970731496810913, + "learning_rate": 2.1353133333333334e-05, + "loss": 1.41206298828125, + "step": 429900 + }, + { + "epoch": 57.333333333333336, + "grad_norm": 0.8743362426757812, + "learning_rate": 2.1346466666666666e-05, + "loss": 1.4041651916503906, + "step": 430000 + }, + { + "epoch": 57.346666666666664, + "grad_norm": 0.8430378437042236, + "learning_rate": 2.1339800000000002e-05, + "loss": 1.4116816711425781, + "step": 430100 + }, + { + "epoch": 57.36, + "grad_norm": 0.8529326915740967, + "learning_rate": 2.1333133333333334e-05, + "loss": 1.409462890625, + "step": 430200 + }, + { + "epoch": 57.373333333333335, + "grad_norm": 0.8731967210769653, + "learning_rate": 2.1326466666666666e-05, + "loss": 1.4143032836914062, + "step": 430300 + }, + { + "epoch": 57.38666666666666, + "grad_norm": 0.8534825444221497, + "learning_rate": 2.1319800000000002e-05, + "loss": 1.411023406982422, + "step": 430400 + }, + { + "epoch": 57.4, + "grad_norm": 0.8644077777862549, + "learning_rate": 2.1313133333333334e-05, + "loss": 1.4160220336914062, + "step": 430500 + }, + { + "epoch": 57.413333333333334, + "grad_norm": 0.875743567943573, + "learning_rate": 2.130646666666667e-05, + "loss": 1.4175732421875, + "step": 430600 + }, + { + "epoch": 57.42666666666667, + "grad_norm": 0.8708527088165283, + "learning_rate": 2.12998e-05, + "loss": 1.4122679138183594, + "step": 430700 + }, + { + "epoch": 57.44, + "grad_norm": 0.8806803822517395, + "learning_rate": 2.1293133333333335e-05, + "loss": 1.4234275817871094, + "step": 430800 + }, + { + "epoch": 57.45333333333333, + "grad_norm": 0.8835158348083496, + "learning_rate": 2.1286466666666667e-05, + "loss": 1.4142134094238281, + "step": 430900 + }, + { + "epoch": 57.46666666666667, + "grad_norm": 0.8983718752861023, + "learning_rate": 2.12798e-05, + "loss": 1.4219779968261719, + "step": 431000 + }, + { + "epoch": 57.48, + "grad_norm": 0.8711386322975159, + "learning_rate": 2.1273133333333335e-05, + "loss": 1.4237786865234374, + "step": 431100 + }, + { + "epoch": 57.49333333333333, + "grad_norm": 0.8646780848503113, + "learning_rate": 2.1266466666666667e-05, + "loss": 1.4190533447265625, + "step": 431200 + }, + { + "epoch": 57.50666666666667, + "grad_norm": 0.863576352596283, + "learning_rate": 2.1259800000000003e-05, + "loss": 1.4201698303222656, + "step": 431300 + }, + { + "epoch": 57.52, + "grad_norm": 0.8763824105262756, + "learning_rate": 2.1253200000000002e-05, + "loss": 1.4242768859863282, + "step": 431400 + }, + { + "epoch": 57.53333333333333, + "grad_norm": 0.8644374012947083, + "learning_rate": 2.1246533333333334e-05, + "loss": 1.4194601440429688, + "step": 431500 + }, + { + "epoch": 57.54666666666667, + "grad_norm": 0.868061900138855, + "learning_rate": 2.123986666666667e-05, + "loss": 1.4254354858398437, + "step": 431600 + }, + { + "epoch": 57.56, + "grad_norm": 0.8473526239395142, + "learning_rate": 2.1233200000000002e-05, + "loss": 1.4216069030761718, + "step": 431700 + }, + { + "epoch": 57.57333333333333, + "grad_norm": 0.8738334774971008, + "learning_rate": 2.1226533333333334e-05, + "loss": 1.4271109008789062, + "step": 431800 + }, + { + "epoch": 57.586666666666666, + "grad_norm": 0.8677930235862732, + "learning_rate": 2.121986666666667e-05, + "loss": 1.4229975891113282, + "step": 431900 + }, + { + "epoch": 57.6, + "grad_norm": 0.8332538604736328, + "learning_rate": 2.12132e-05, + "loss": 1.426571807861328, + "step": 432000 + }, + { + "epoch": 57.61333333333333, + "grad_norm": 0.8856222033500671, + "learning_rate": 2.1206533333333334e-05, + "loss": 1.429196319580078, + "step": 432100 + }, + { + "epoch": 57.626666666666665, + "grad_norm": 0.8730775713920593, + "learning_rate": 2.1199866666666667e-05, + "loss": 1.4241506958007812, + "step": 432200 + }, + { + "epoch": 57.64, + "grad_norm": 0.8760560750961304, + "learning_rate": 2.1193200000000002e-05, + "loss": 1.4274005126953124, + "step": 432300 + }, + { + "epoch": 57.653333333333336, + "grad_norm": 0.8515337705612183, + "learning_rate": 2.1186533333333335e-05, + "loss": 1.4225738525390625, + "step": 432400 + }, + { + "epoch": 57.666666666666664, + "grad_norm": 0.8787199854850769, + "learning_rate": 2.1179866666666667e-05, + "loss": 1.4261997985839843, + "step": 432500 + }, + { + "epoch": 57.68, + "grad_norm": 0.8842175006866455, + "learning_rate": 2.1173200000000003e-05, + "loss": 1.4274266052246094, + "step": 432600 + }, + { + "epoch": 57.693333333333335, + "grad_norm": 0.8846668601036072, + "learning_rate": 2.1166533333333335e-05, + "loss": 1.427220001220703, + "step": 432700 + }, + { + "epoch": 57.70666666666666, + "grad_norm": 0.8565542101860046, + "learning_rate": 2.1159866666666667e-05, + "loss": 1.431591796875, + "step": 432800 + }, + { + "epoch": 57.72, + "grad_norm": 0.9259876608848572, + "learning_rate": 2.11532e-05, + "loss": 1.427034912109375, + "step": 432900 + }, + { + "epoch": 57.733333333333334, + "grad_norm": 0.8708376884460449, + "learning_rate": 2.1146533333333335e-05, + "loss": 1.4335169982910156, + "step": 433000 + }, + { + "epoch": 57.74666666666667, + "grad_norm": 0.865197479724884, + "learning_rate": 2.1139866666666667e-05, + "loss": 1.434145965576172, + "step": 433100 + }, + { + "epoch": 57.76, + "grad_norm": 0.8874461650848389, + "learning_rate": 2.11332e-05, + "loss": 1.43084228515625, + "step": 433200 + }, + { + "epoch": 57.77333333333333, + "grad_norm": 0.8610783219337463, + "learning_rate": 2.1126533333333335e-05, + "loss": 1.4350297546386719, + "step": 433300 + }, + { + "epoch": 57.78666666666667, + "grad_norm": 0.8552179932594299, + "learning_rate": 2.1119933333333334e-05, + "loss": 1.4353605651855468, + "step": 433400 + }, + { + "epoch": 57.8, + "grad_norm": 0.8936259746551514, + "learning_rate": 2.1113266666666667e-05, + "loss": 1.4357664489746094, + "step": 433500 + }, + { + "epoch": 57.81333333333333, + "grad_norm": 0.8511193990707397, + "learning_rate": 2.1106600000000002e-05, + "loss": 1.4354666137695313, + "step": 433600 + }, + { + "epoch": 57.82666666666667, + "grad_norm": 0.8757380247116089, + "learning_rate": 2.1099933333333334e-05, + "loss": 1.440109405517578, + "step": 433700 + }, + { + "epoch": 57.84, + "grad_norm": 0.921246349811554, + "learning_rate": 2.1093266666666667e-05, + "loss": 1.4303897094726563, + "step": 433800 + }, + { + "epoch": 57.85333333333333, + "grad_norm": 0.9038046002388, + "learning_rate": 2.1086600000000002e-05, + "loss": 1.43283203125, + "step": 433900 + }, + { + "epoch": 57.86666666666667, + "grad_norm": 0.9284953474998474, + "learning_rate": 2.1079933333333335e-05, + "loss": 1.439587860107422, + "step": 434000 + }, + { + "epoch": 57.88, + "grad_norm": 0.8677544593811035, + "learning_rate": 2.107326666666667e-05, + "loss": 1.432835693359375, + "step": 434100 + }, + { + "epoch": 57.89333333333333, + "grad_norm": 0.8702775239944458, + "learning_rate": 2.10666e-05, + "loss": 1.4360232543945313, + "step": 434200 + }, + { + "epoch": 57.906666666666666, + "grad_norm": 0.9052044153213501, + "learning_rate": 2.1059933333333335e-05, + "loss": 1.4358711242675781, + "step": 434300 + }, + { + "epoch": 57.92, + "grad_norm": 0.8295144438743591, + "learning_rate": 2.1053266666666667e-05, + "loss": 1.4382148742675782, + "step": 434400 + }, + { + "epoch": 57.93333333333333, + "grad_norm": 0.8926219344139099, + "learning_rate": 2.10466e-05, + "loss": 1.4372708129882812, + "step": 434500 + }, + { + "epoch": 57.946666666666665, + "grad_norm": 0.8741112351417542, + "learning_rate": 2.1039933333333335e-05, + "loss": 1.4404176330566407, + "step": 434600 + }, + { + "epoch": 57.96, + "grad_norm": 0.8536452651023865, + "learning_rate": 2.1033266666666667e-05, + "loss": 1.4389004516601562, + "step": 434700 + }, + { + "epoch": 57.973333333333336, + "grad_norm": 0.8683491945266724, + "learning_rate": 2.1026600000000003e-05, + "loss": 1.4402836608886718, + "step": 434800 + }, + { + "epoch": 57.986666666666665, + "grad_norm": 0.8583080172538757, + "learning_rate": 2.1019933333333332e-05, + "loss": 1.4441624450683594, + "step": 434900 + }, + { + "epoch": 58.0, + "grad_norm": 0.8596425652503967, + "learning_rate": 2.1013266666666667e-05, + "loss": 1.4424615478515626, + "step": 435000 + }, + { + "epoch": 58.013333333333335, + "grad_norm": 0.8734589219093323, + "learning_rate": 2.10066e-05, + "loss": 1.3811009216308594, + "step": 435100 + }, + { + "epoch": 58.026666666666664, + "grad_norm": 0.8984307050704956, + "learning_rate": 2.0999933333333335e-05, + "loss": 1.3851551818847656, + "step": 435200 + }, + { + "epoch": 58.04, + "grad_norm": 0.870807945728302, + "learning_rate": 2.0993266666666668e-05, + "loss": 1.383925323486328, + "step": 435300 + }, + { + "epoch": 58.053333333333335, + "grad_norm": 0.8193836808204651, + "learning_rate": 2.0986666666666667e-05, + "loss": 1.3839663696289062, + "step": 435400 + }, + { + "epoch": 58.06666666666667, + "grad_norm": 0.8609771132469177, + "learning_rate": 2.098e-05, + "loss": 1.3863719177246094, + "step": 435500 + }, + { + "epoch": 58.08, + "grad_norm": 0.8306235074996948, + "learning_rate": 2.0973333333333335e-05, + "loss": 1.3829759216308595, + "step": 435600 + }, + { + "epoch": 58.093333333333334, + "grad_norm": 0.8595555424690247, + "learning_rate": 2.0966666666666667e-05, + "loss": 1.3847052001953124, + "step": 435700 + }, + { + "epoch": 58.10666666666667, + "grad_norm": 0.8563652634620667, + "learning_rate": 2.0960000000000003e-05, + "loss": 1.386361083984375, + "step": 435800 + }, + { + "epoch": 58.12, + "grad_norm": 0.8658237457275391, + "learning_rate": 2.095333333333333e-05, + "loss": 1.388785400390625, + "step": 435900 + }, + { + "epoch": 58.13333333333333, + "grad_norm": 0.8627846837043762, + "learning_rate": 2.0946666666666667e-05, + "loss": 1.393494873046875, + "step": 436000 + }, + { + "epoch": 58.14666666666667, + "grad_norm": 0.8761343955993652, + "learning_rate": 2.0940000000000003e-05, + "loss": 1.3921939086914064, + "step": 436100 + }, + { + "epoch": 58.16, + "grad_norm": 0.8637253642082214, + "learning_rate": 2.0933333333333335e-05, + "loss": 1.3898490905761718, + "step": 436200 + }, + { + "epoch": 58.17333333333333, + "grad_norm": 0.8888680934906006, + "learning_rate": 2.0926666666666667e-05, + "loss": 1.3912742614746094, + "step": 436300 + }, + { + "epoch": 58.18666666666667, + "grad_norm": 0.8735535144805908, + "learning_rate": 2.092e-05, + "loss": 1.3885147094726562, + "step": 436400 + }, + { + "epoch": 58.2, + "grad_norm": 0.8976262807846069, + "learning_rate": 2.0913333333333335e-05, + "loss": 1.3988859558105469, + "step": 436500 + }, + { + "epoch": 58.21333333333333, + "grad_norm": 0.8783442974090576, + "learning_rate": 2.0906666666666668e-05, + "loss": 1.3914523315429688, + "step": 436600 + }, + { + "epoch": 58.22666666666667, + "grad_norm": 0.8859887719154358, + "learning_rate": 2.09e-05, + "loss": 1.390671844482422, + "step": 436700 + }, + { + "epoch": 58.24, + "grad_norm": 0.8783445358276367, + "learning_rate": 2.0893333333333335e-05, + "loss": 1.3934185791015625, + "step": 436800 + }, + { + "epoch": 58.25333333333333, + "grad_norm": 0.8454920053482056, + "learning_rate": 2.0886666666666668e-05, + "loss": 1.3974107360839845, + "step": 436900 + }, + { + "epoch": 58.266666666666666, + "grad_norm": 0.895043134689331, + "learning_rate": 2.0880000000000003e-05, + "loss": 1.3971817016601562, + "step": 437000 + }, + { + "epoch": 58.28, + "grad_norm": 0.9361661076545715, + "learning_rate": 2.0873333333333332e-05, + "loss": 1.39865234375, + "step": 437100 + }, + { + "epoch": 58.29333333333334, + "grad_norm": 0.8844481110572815, + "learning_rate": 2.0866666666666668e-05, + "loss": 1.3997993469238281, + "step": 437200 + }, + { + "epoch": 58.306666666666665, + "grad_norm": 0.7877687215805054, + "learning_rate": 2.086e-05, + "loss": 1.4015354919433594, + "step": 437300 + }, + { + "epoch": 58.32, + "grad_norm": 0.7823760509490967, + "learning_rate": 2.08534e-05, + "loss": 1.3993243408203124, + "step": 437400 + }, + { + "epoch": 58.333333333333336, + "grad_norm": 0.8986889123916626, + "learning_rate": 2.0846733333333335e-05, + "loss": 1.402682342529297, + "step": 437500 + }, + { + "epoch": 58.346666666666664, + "grad_norm": 0.8212663531303406, + "learning_rate": 2.0840066666666667e-05, + "loss": 1.4034190368652344, + "step": 437600 + }, + { + "epoch": 58.36, + "grad_norm": 0.865929365158081, + "learning_rate": 2.08334e-05, + "loss": 1.4008261108398437, + "step": 437700 + }, + { + "epoch": 58.373333333333335, + "grad_norm": 0.8731956481933594, + "learning_rate": 2.0826733333333335e-05, + "loss": 1.4043699645996093, + "step": 437800 + }, + { + "epoch": 58.38666666666666, + "grad_norm": 0.8673787117004395, + "learning_rate": 2.0820066666666667e-05, + "loss": 1.4046339416503906, + "step": 437900 + }, + { + "epoch": 58.4, + "grad_norm": 0.8785029053688049, + "learning_rate": 2.0813400000000003e-05, + "loss": 1.404567108154297, + "step": 438000 + }, + { + "epoch": 58.413333333333334, + "grad_norm": 0.831731379032135, + "learning_rate": 2.0806733333333335e-05, + "loss": 1.4076467895507812, + "step": 438100 + }, + { + "epoch": 58.42666666666667, + "grad_norm": 0.8772410750389099, + "learning_rate": 2.0800066666666668e-05, + "loss": 1.4042951965332031, + "step": 438200 + }, + { + "epoch": 58.44, + "grad_norm": 0.8620854616165161, + "learning_rate": 2.0793400000000003e-05, + "loss": 1.4063218688964845, + "step": 438300 + }, + { + "epoch": 58.45333333333333, + "grad_norm": 0.8375303149223328, + "learning_rate": 2.0786733333333332e-05, + "loss": 1.4067355346679689, + "step": 438400 + }, + { + "epoch": 58.46666666666667, + "grad_norm": 0.8386953473091125, + "learning_rate": 2.0780066666666668e-05, + "loss": 1.4097119140625, + "step": 438500 + }, + { + "epoch": 58.48, + "grad_norm": 0.8893094062805176, + "learning_rate": 2.07734e-05, + "loss": 1.4094076538085938, + "step": 438600 + }, + { + "epoch": 58.49333333333333, + "grad_norm": 0.8755731582641602, + "learning_rate": 2.0766733333333336e-05, + "loss": 1.4084201049804688, + "step": 438700 + }, + { + "epoch": 58.50666666666667, + "grad_norm": 0.8995118737220764, + "learning_rate": 2.0760066666666668e-05, + "loss": 1.4081155395507812, + "step": 438800 + }, + { + "epoch": 58.52, + "grad_norm": 0.8784931302070618, + "learning_rate": 2.07534e-05, + "loss": 1.4106106567382812, + "step": 438900 + }, + { + "epoch": 58.53333333333333, + "grad_norm": 0.8496900796890259, + "learning_rate": 2.0746733333333336e-05, + "loss": 1.4154051208496095, + "step": 439000 + }, + { + "epoch": 58.54666666666667, + "grad_norm": 0.9111222624778748, + "learning_rate": 2.0740066666666668e-05, + "loss": 1.4134213256835937, + "step": 439100 + }, + { + "epoch": 58.56, + "grad_norm": 0.9012070298194885, + "learning_rate": 2.07334e-05, + "loss": 1.4138330078125, + "step": 439200 + }, + { + "epoch": 58.57333333333333, + "grad_norm": 0.8513124585151672, + "learning_rate": 2.0726733333333333e-05, + "loss": 1.414625701904297, + "step": 439300 + }, + { + "epoch": 58.586666666666666, + "grad_norm": 0.8750892877578735, + "learning_rate": 2.0720133333333332e-05, + "loss": 1.4188406372070312, + "step": 439400 + }, + { + "epoch": 58.6, + "grad_norm": 0.8822923302650452, + "learning_rate": 2.0713466666666667e-05, + "loss": 1.4158790588378907, + "step": 439500 + }, + { + "epoch": 58.61333333333333, + "grad_norm": 0.8047091364860535, + "learning_rate": 2.07068e-05, + "loss": 1.414635009765625, + "step": 439600 + }, + { + "epoch": 58.626666666666665, + "grad_norm": 0.8577402234077454, + "learning_rate": 2.0700133333333335e-05, + "loss": 1.4141645812988282, + "step": 439700 + }, + { + "epoch": 58.64, + "grad_norm": 0.8721509575843811, + "learning_rate": 2.0693466666666668e-05, + "loss": 1.4171902465820312, + "step": 439800 + }, + { + "epoch": 58.653333333333336, + "grad_norm": 0.852287769317627, + "learning_rate": 2.06868e-05, + "loss": 1.4161666870117187, + "step": 439900 + }, + { + "epoch": 58.666666666666664, + "grad_norm": 0.8711374402046204, + "learning_rate": 2.0680133333333336e-05, + "loss": 1.4154249572753905, + "step": 440000 + }, + { + "epoch": 58.68, + "grad_norm": 0.9298127889633179, + "learning_rate": 2.0673466666666668e-05, + "loss": 1.416683349609375, + "step": 440100 + }, + { + "epoch": 58.693333333333335, + "grad_norm": 0.8794826865196228, + "learning_rate": 2.06668e-05, + "loss": 1.4199267578125, + "step": 440200 + }, + { + "epoch": 58.70666666666666, + "grad_norm": 0.8694095015525818, + "learning_rate": 2.0660133333333336e-05, + "loss": 1.417292938232422, + "step": 440300 + }, + { + "epoch": 58.72, + "grad_norm": 0.8695284128189087, + "learning_rate": 2.0653466666666668e-05, + "loss": 1.4181063842773438, + "step": 440400 + }, + { + "epoch": 58.733333333333334, + "grad_norm": 0.8681213855743408, + "learning_rate": 2.0646800000000004e-05, + "loss": 1.4154566955566406, + "step": 440500 + }, + { + "epoch": 58.74666666666667, + "grad_norm": 0.8768618106842041, + "learning_rate": 2.0640133333333333e-05, + "loss": 1.4236866760253906, + "step": 440600 + }, + { + "epoch": 58.76, + "grad_norm": 0.8256394267082214, + "learning_rate": 2.0633466666666668e-05, + "loss": 1.41985107421875, + "step": 440700 + }, + { + "epoch": 58.77333333333333, + "grad_norm": 0.8697381019592285, + "learning_rate": 2.06268e-05, + "loss": 1.4237368774414063, + "step": 440800 + }, + { + "epoch": 58.78666666666667, + "grad_norm": 0.8941296935081482, + "learning_rate": 2.0620133333333333e-05, + "loss": 1.4222611999511718, + "step": 440900 + }, + { + "epoch": 58.8, + "grad_norm": 0.8877124786376953, + "learning_rate": 2.061346666666667e-05, + "loss": 1.4254855346679687, + "step": 441000 + }, + { + "epoch": 58.81333333333333, + "grad_norm": 0.9030829071998596, + "learning_rate": 2.06068e-05, + "loss": 1.4235409545898436, + "step": 441100 + }, + { + "epoch": 58.82666666666667, + "grad_norm": 0.9028357267379761, + "learning_rate": 2.0600133333333336e-05, + "loss": 1.4207374572753906, + "step": 441200 + }, + { + "epoch": 58.84, + "grad_norm": 0.9188116192817688, + "learning_rate": 2.0593466666666665e-05, + "loss": 1.4223762512207032, + "step": 441300 + }, + { + "epoch": 58.85333333333333, + "grad_norm": 0.9232787489891052, + "learning_rate": 2.0586866666666668e-05, + "loss": 1.4255131530761718, + "step": 441400 + }, + { + "epoch": 58.86666666666667, + "grad_norm": 0.874527633190155, + "learning_rate": 2.0580200000000003e-05, + "loss": 1.4305357360839843, + "step": 441500 + }, + { + "epoch": 58.88, + "grad_norm": 0.8727383017539978, + "learning_rate": 2.0573533333333332e-05, + "loss": 1.4260952758789063, + "step": 441600 + }, + { + "epoch": 58.89333333333333, + "grad_norm": 0.8848722577095032, + "learning_rate": 2.0566866666666668e-05, + "loss": 1.425802001953125, + "step": 441700 + }, + { + "epoch": 58.906666666666666, + "grad_norm": 0.8801239132881165, + "learning_rate": 2.05602e-05, + "loss": 1.4275160217285157, + "step": 441800 + }, + { + "epoch": 58.92, + "grad_norm": 0.8728554248809814, + "learning_rate": 2.0553533333333332e-05, + "loss": 1.4327494812011718, + "step": 441900 + }, + { + "epoch": 58.93333333333333, + "grad_norm": 0.8942492008209229, + "learning_rate": 2.0546866666666668e-05, + "loss": 1.4299046325683593, + "step": 442000 + }, + { + "epoch": 58.946666666666665, + "grad_norm": 0.9094804525375366, + "learning_rate": 2.05402e-05, + "loss": 1.4307928466796875, + "step": 442100 + }, + { + "epoch": 58.96, + "grad_norm": 0.871557891368866, + "learning_rate": 2.0533533333333336e-05, + "loss": 1.42893310546875, + "step": 442200 + }, + { + "epoch": 58.973333333333336, + "grad_norm": 0.8748642802238464, + "learning_rate": 2.0526866666666665e-05, + "loss": 1.4272027587890626, + "step": 442300 + }, + { + "epoch": 58.986666666666665, + "grad_norm": 0.8672638535499573, + "learning_rate": 2.05202e-05, + "loss": 1.4299638366699219, + "step": 442400 + }, + { + "epoch": 59.0, + "grad_norm": 0.8816332221031189, + "learning_rate": 2.0513533333333336e-05, + "loss": 1.434586944580078, + "step": 442500 + }, + { + "epoch": 59.013333333333335, + "grad_norm": 0.8527655601501465, + "learning_rate": 2.050686666666667e-05, + "loss": 1.3740353393554687, + "step": 442600 + }, + { + "epoch": 59.026666666666664, + "grad_norm": 0.8620314598083496, + "learning_rate": 2.05002e-05, + "loss": 1.3709056091308593, + "step": 442700 + }, + { + "epoch": 59.04, + "grad_norm": 0.8591675758361816, + "learning_rate": 2.0493533333333333e-05, + "loss": 1.3708229064941406, + "step": 442800 + }, + { + "epoch": 59.053333333333335, + "grad_norm": 0.8642350435256958, + "learning_rate": 2.048686666666667e-05, + "loss": 1.373277587890625, + "step": 442900 + }, + { + "epoch": 59.06666666666667, + "grad_norm": 0.8944986462593079, + "learning_rate": 2.04802e-05, + "loss": 1.3693106079101562, + "step": 443000 + }, + { + "epoch": 59.08, + "grad_norm": 0.8772505521774292, + "learning_rate": 2.0473533333333333e-05, + "loss": 1.3786691284179688, + "step": 443100 + }, + { + "epoch": 59.093333333333334, + "grad_norm": 0.828309178352356, + "learning_rate": 2.046686666666667e-05, + "loss": 1.3788882446289064, + "step": 443200 + }, + { + "epoch": 59.10666666666667, + "grad_norm": 0.8052541613578796, + "learning_rate": 2.04602e-05, + "loss": 1.3764219665527344, + "step": 443300 + }, + { + "epoch": 59.12, + "grad_norm": 0.8364429473876953, + "learning_rate": 2.0453533333333337e-05, + "loss": 1.3792369079589843, + "step": 443400 + }, + { + "epoch": 59.13333333333333, + "grad_norm": 0.8565122485160828, + "learning_rate": 2.0446933333333336e-05, + "loss": 1.3825364685058594, + "step": 443500 + }, + { + "epoch": 59.14666666666667, + "grad_norm": 0.8464578986167908, + "learning_rate": 2.0440266666666668e-05, + "loss": 1.38104248046875, + "step": 443600 + }, + { + "epoch": 59.16, + "grad_norm": 0.8631567358970642, + "learning_rate": 2.04336e-05, + "loss": 1.383396759033203, + "step": 443700 + }, + { + "epoch": 59.17333333333333, + "grad_norm": 0.8802007436752319, + "learning_rate": 2.0426933333333333e-05, + "loss": 1.3867723083496093, + "step": 443800 + }, + { + "epoch": 59.18666666666667, + "grad_norm": 0.8594309687614441, + "learning_rate": 2.0420266666666668e-05, + "loss": 1.3859178161621093, + "step": 443900 + }, + { + "epoch": 59.2, + "grad_norm": 0.8774383068084717, + "learning_rate": 2.04136e-05, + "loss": 1.3861714172363282, + "step": 444000 + }, + { + "epoch": 59.21333333333333, + "grad_norm": 0.8826853632926941, + "learning_rate": 2.0406933333333333e-05, + "loss": 1.3873568725585939, + "step": 444100 + }, + { + "epoch": 59.22666666666667, + "grad_norm": 0.7932345867156982, + "learning_rate": 2.040026666666667e-05, + "loss": 1.387662353515625, + "step": 444200 + }, + { + "epoch": 59.24, + "grad_norm": 0.8927592635154724, + "learning_rate": 2.03936e-05, + "loss": 1.3858427429199218, + "step": 444300 + }, + { + "epoch": 59.25333333333333, + "grad_norm": 0.8642708659172058, + "learning_rate": 2.0386933333333336e-05, + "loss": 1.392750244140625, + "step": 444400 + }, + { + "epoch": 59.266666666666666, + "grad_norm": 0.8669323325157166, + "learning_rate": 2.038026666666667e-05, + "loss": 1.383953857421875, + "step": 444500 + }, + { + "epoch": 59.28, + "grad_norm": 0.8710570931434631, + "learning_rate": 2.03736e-05, + "loss": 1.3882061767578124, + "step": 444600 + }, + { + "epoch": 59.29333333333334, + "grad_norm": 0.9176151752471924, + "learning_rate": 2.0366933333333337e-05, + "loss": 1.391685791015625, + "step": 444700 + }, + { + "epoch": 59.306666666666665, + "grad_norm": 0.831787109375, + "learning_rate": 2.0360266666666665e-05, + "loss": 1.3894924926757812, + "step": 444800 + }, + { + "epoch": 59.32, + "grad_norm": 0.8599420785903931, + "learning_rate": 2.03536e-05, + "loss": 1.3913801574707032, + "step": 444900 + }, + { + "epoch": 59.333333333333336, + "grad_norm": 0.8475634455680847, + "learning_rate": 2.0346933333333333e-05, + "loss": 1.392063751220703, + "step": 445000 + }, + { + "epoch": 59.346666666666664, + "grad_norm": 0.8321338891983032, + "learning_rate": 2.034026666666667e-05, + "loss": 1.3921504211425781, + "step": 445100 + }, + { + "epoch": 59.36, + "grad_norm": 0.8083276748657227, + "learning_rate": 2.03336e-05, + "loss": 1.3912481689453124, + "step": 445200 + }, + { + "epoch": 59.373333333333335, + "grad_norm": 0.8358070850372314, + "learning_rate": 2.0326933333333334e-05, + "loss": 1.3926693725585937, + "step": 445300 + }, + { + "epoch": 59.38666666666666, + "grad_norm": 0.8596873879432678, + "learning_rate": 2.032026666666667e-05, + "loss": 1.397172088623047, + "step": 445400 + }, + { + "epoch": 59.4, + "grad_norm": 0.8789359331130981, + "learning_rate": 2.0313666666666668e-05, + "loss": 1.3950949096679688, + "step": 445500 + }, + { + "epoch": 59.413333333333334, + "grad_norm": 0.8819690346717834, + "learning_rate": 2.0307e-05, + "loss": 1.3969586181640625, + "step": 445600 + }, + { + "epoch": 59.42666666666667, + "grad_norm": 0.8241303563117981, + "learning_rate": 2.0300333333333336e-05, + "loss": 1.3977046203613281, + "step": 445700 + }, + { + "epoch": 59.44, + "grad_norm": 0.8681808114051819, + "learning_rate": 2.0293666666666665e-05, + "loss": 1.395835418701172, + "step": 445800 + }, + { + "epoch": 59.45333333333333, + "grad_norm": 0.8753331899642944, + "learning_rate": 2.0287e-05, + "loss": 1.397332763671875, + "step": 445900 + }, + { + "epoch": 59.46666666666667, + "grad_norm": 0.936934769153595, + "learning_rate": 2.0280333333333333e-05, + "loss": 1.396897430419922, + "step": 446000 + }, + { + "epoch": 59.48, + "grad_norm": 0.9100282788276672, + "learning_rate": 2.027366666666667e-05, + "loss": 1.4025897216796874, + "step": 446100 + }, + { + "epoch": 59.49333333333333, + "grad_norm": 0.8733969330787659, + "learning_rate": 2.0267e-05, + "loss": 1.4047660827636719, + "step": 446200 + }, + { + "epoch": 59.50666666666667, + "grad_norm": 0.879501461982727, + "learning_rate": 2.0260333333333333e-05, + "loss": 1.4029029846191405, + "step": 446300 + }, + { + "epoch": 59.52, + "grad_norm": 0.8982552886009216, + "learning_rate": 2.025366666666667e-05, + "loss": 1.4038697814941405, + "step": 446400 + }, + { + "epoch": 59.53333333333333, + "grad_norm": 0.853354811668396, + "learning_rate": 2.0247e-05, + "loss": 1.3982884216308593, + "step": 446500 + }, + { + "epoch": 59.54666666666667, + "grad_norm": 0.8160167336463928, + "learning_rate": 2.0240333333333333e-05, + "loss": 1.4008200073242187, + "step": 446600 + }, + { + "epoch": 59.56, + "grad_norm": 0.8860510587692261, + "learning_rate": 2.023366666666667e-05, + "loss": 1.40131591796875, + "step": 446700 + }, + { + "epoch": 59.57333333333333, + "grad_norm": 0.9074357748031616, + "learning_rate": 2.0227e-05, + "loss": 1.4021209716796874, + "step": 446800 + }, + { + "epoch": 59.586666666666666, + "grad_norm": 0.9050543904304504, + "learning_rate": 2.0220333333333337e-05, + "loss": 1.4041819763183594, + "step": 446900 + }, + { + "epoch": 59.6, + "grad_norm": 0.8996903896331787, + "learning_rate": 2.0213666666666666e-05, + "loss": 1.4066482543945313, + "step": 447000 + }, + { + "epoch": 59.61333333333333, + "grad_norm": 0.8637166619300842, + "learning_rate": 2.0207e-05, + "loss": 1.40481689453125, + "step": 447100 + }, + { + "epoch": 59.626666666666665, + "grad_norm": 0.915777325630188, + "learning_rate": 2.0200333333333334e-05, + "loss": 1.4069454956054688, + "step": 447200 + }, + { + "epoch": 59.64, + "grad_norm": 0.8580685257911682, + "learning_rate": 2.0193666666666666e-05, + "loss": 1.4054689025878906, + "step": 447300 + }, + { + "epoch": 59.653333333333336, + "grad_norm": 0.8624551296234131, + "learning_rate": 2.0187000000000002e-05, + "loss": 1.406177978515625, + "step": 447400 + }, + { + "epoch": 59.666666666666664, + "grad_norm": 0.9435851573944092, + "learning_rate": 2.01804e-05, + "loss": 1.410730743408203, + "step": 447500 + }, + { + "epoch": 59.68, + "grad_norm": 0.8933364152908325, + "learning_rate": 2.0173733333333333e-05, + "loss": 1.4079649353027344, + "step": 447600 + }, + { + "epoch": 59.693333333333335, + "grad_norm": 0.9013268351554871, + "learning_rate": 2.016706666666667e-05, + "loss": 1.4075224304199219, + "step": 447700 + }, + { + "epoch": 59.70666666666666, + "grad_norm": 0.8835455775260925, + "learning_rate": 2.01604e-05, + "loss": 1.408735809326172, + "step": 447800 + }, + { + "epoch": 59.72, + "grad_norm": 0.9013435244560242, + "learning_rate": 2.0153733333333337e-05, + "loss": 1.4129440307617187, + "step": 447900 + }, + { + "epoch": 59.733333333333334, + "grad_norm": 0.9216914772987366, + "learning_rate": 2.0147066666666666e-05, + "loss": 1.413671875, + "step": 448000 + }, + { + "epoch": 59.74666666666667, + "grad_norm": 0.9072982668876648, + "learning_rate": 2.01404e-05, + "loss": 1.4080628967285156, + "step": 448100 + }, + { + "epoch": 59.76, + "grad_norm": 0.9267192482948303, + "learning_rate": 2.0133733333333333e-05, + "loss": 1.4114108276367188, + "step": 448200 + }, + { + "epoch": 59.77333333333333, + "grad_norm": 0.8571563959121704, + "learning_rate": 2.0127066666666666e-05, + "loss": 1.4090080261230469, + "step": 448300 + }, + { + "epoch": 59.78666666666667, + "grad_norm": 0.927082896232605, + "learning_rate": 2.01204e-05, + "loss": 1.4117256164550782, + "step": 448400 + }, + { + "epoch": 59.8, + "grad_norm": 0.9052351117134094, + "learning_rate": 2.0113733333333334e-05, + "loss": 1.4136744689941407, + "step": 448500 + }, + { + "epoch": 59.81333333333333, + "grad_norm": 0.9458771347999573, + "learning_rate": 2.010706666666667e-05, + "loss": 1.4105580139160157, + "step": 448600 + }, + { + "epoch": 59.82666666666667, + "grad_norm": 0.7968136072158813, + "learning_rate": 2.0100399999999998e-05, + "loss": 1.4169776916503907, + "step": 448700 + }, + { + "epoch": 59.84, + "grad_norm": 0.8549537658691406, + "learning_rate": 2.0093733333333334e-05, + "loss": 1.4146495056152344, + "step": 448800 + }, + { + "epoch": 59.85333333333333, + "grad_norm": 0.8725696802139282, + "learning_rate": 2.008706666666667e-05, + "loss": 1.4181309509277344, + "step": 448900 + }, + { + "epoch": 59.86666666666667, + "grad_norm": 0.8683002591133118, + "learning_rate": 2.0080400000000002e-05, + "loss": 1.4133045959472657, + "step": 449000 + }, + { + "epoch": 59.88, + "grad_norm": 0.8000110387802124, + "learning_rate": 2.0073733333333334e-05, + "loss": 1.4159756469726563, + "step": 449100 + }, + { + "epoch": 59.89333333333333, + "grad_norm": 0.887690544128418, + "learning_rate": 2.0067066666666666e-05, + "loss": 1.4154435729980468, + "step": 449200 + }, + { + "epoch": 59.906666666666666, + "grad_norm": 0.8402546644210815, + "learning_rate": 2.0060400000000002e-05, + "loss": 1.4177676391601564, + "step": 449300 + }, + { + "epoch": 59.92, + "grad_norm": 0.9004342555999756, + "learning_rate": 2.0053733333333334e-05, + "loss": 1.4182846069335937, + "step": 449400 + }, + { + "epoch": 59.93333333333333, + "grad_norm": 0.8389486074447632, + "learning_rate": 2.0047066666666666e-05, + "loss": 1.4176017761230468, + "step": 449500 + }, + { + "epoch": 59.946666666666665, + "grad_norm": 0.889369785785675, + "learning_rate": 2.0040400000000002e-05, + "loss": 1.4182723999023437, + "step": 449600 + }, + { + "epoch": 59.96, + "grad_norm": 0.9012863039970398, + "learning_rate": 2.00338e-05, + "loss": 1.4193865966796875, + "step": 449700 + }, + { + "epoch": 59.973333333333336, + "grad_norm": 0.9062787294387817, + "learning_rate": 2.0027133333333333e-05, + "loss": 1.4206649780273437, + "step": 449800 + }, + { + "epoch": 59.986666666666665, + "grad_norm": 0.8925827145576477, + "learning_rate": 2.002046666666667e-05, + "loss": 1.4192771911621094, + "step": 449900 + }, + { + "epoch": 60.0, + "grad_norm": 0.9131714105606079, + "learning_rate": 2.00138e-05, + "loss": 1.4141000366210938, + "step": 450000 + }, + { + "epoch": 60.013333333333335, + "grad_norm": 0.8766162991523743, + "learning_rate": 2.0007133333333334e-05, + "loss": 1.3626673889160157, + "step": 450100 + }, + { + "epoch": 60.026666666666664, + "grad_norm": 0.8619803786277771, + "learning_rate": 2.0000466666666666e-05, + "loss": 1.365054931640625, + "step": 450200 + }, + { + "epoch": 60.04, + "grad_norm": 0.8605244159698486, + "learning_rate": 1.99938e-05, + "loss": 1.3631307983398437, + "step": 450300 + }, + { + "epoch": 60.053333333333335, + "grad_norm": 0.855178713798523, + "learning_rate": 1.9987133333333334e-05, + "loss": 1.3666217041015625, + "step": 450400 + }, + { + "epoch": 60.06666666666667, + "grad_norm": 0.8652241826057434, + "learning_rate": 1.9980466666666666e-05, + "loss": 1.36834228515625, + "step": 450500 + }, + { + "epoch": 60.08, + "grad_norm": 0.7819242477416992, + "learning_rate": 1.9973800000000002e-05, + "loss": 1.3638204956054687, + "step": 450600 + }, + { + "epoch": 60.093333333333334, + "grad_norm": 0.8712034225463867, + "learning_rate": 1.9967133333333334e-05, + "loss": 1.3687100219726562, + "step": 450700 + }, + { + "epoch": 60.10666666666667, + "grad_norm": 0.8641767501831055, + "learning_rate": 1.996046666666667e-05, + "loss": 1.3722442626953124, + "step": 450800 + }, + { + "epoch": 60.12, + "grad_norm": 0.800079882144928, + "learning_rate": 1.99538e-05, + "loss": 1.3667047119140625, + "step": 450900 + }, + { + "epoch": 60.13333333333333, + "grad_norm": 0.8609186410903931, + "learning_rate": 1.9947133333333334e-05, + "loss": 1.370550079345703, + "step": 451000 + }, + { + "epoch": 60.14666666666667, + "grad_norm": 0.8792775869369507, + "learning_rate": 1.994046666666667e-05, + "loss": 1.3739710998535157, + "step": 451100 + }, + { + "epoch": 60.16, + "grad_norm": 0.8350428938865662, + "learning_rate": 1.99338e-05, + "loss": 1.3673428344726561, + "step": 451200 + }, + { + "epoch": 60.17333333333333, + "grad_norm": 0.8641292452812195, + "learning_rate": 1.9927133333333334e-05, + "loss": 1.3756710815429687, + "step": 451300 + }, + { + "epoch": 60.18666666666667, + "grad_norm": 0.8623048663139343, + "learning_rate": 1.9920466666666667e-05, + "loss": 1.3705751037597655, + "step": 451400 + }, + { + "epoch": 60.2, + "grad_norm": 0.8862844705581665, + "learning_rate": 1.9913800000000002e-05, + "loss": 1.3776641845703126, + "step": 451500 + }, + { + "epoch": 60.21333333333333, + "grad_norm": 0.85312819480896, + "learning_rate": 1.9907133333333335e-05, + "loss": 1.3766864013671876, + "step": 451600 + }, + { + "epoch": 60.22666666666667, + "grad_norm": 0.860139787197113, + "learning_rate": 1.9900533333333334e-05, + "loss": 1.376378936767578, + "step": 451700 + }, + { + "epoch": 60.24, + "grad_norm": 0.895366370677948, + "learning_rate": 1.989386666666667e-05, + "loss": 1.3810842895507813, + "step": 451800 + }, + { + "epoch": 60.25333333333333, + "grad_norm": 0.8239558935165405, + "learning_rate": 1.98872e-05, + "loss": 1.376715850830078, + "step": 451900 + }, + { + "epoch": 60.266666666666666, + "grad_norm": 0.8806911110877991, + "learning_rate": 1.9880533333333334e-05, + "loss": 1.3794581604003906, + "step": 452000 + }, + { + "epoch": 60.28, + "grad_norm": 0.8843830823898315, + "learning_rate": 1.987386666666667e-05, + "loss": 1.3751409912109376, + "step": 452100 + }, + { + "epoch": 60.29333333333334, + "grad_norm": 0.8291395902633667, + "learning_rate": 1.98672e-05, + "loss": 1.3803631591796874, + "step": 452200 + }, + { + "epoch": 60.306666666666665, + "grad_norm": 0.8579269051551819, + "learning_rate": 1.9860533333333334e-05, + "loss": 1.379007568359375, + "step": 452300 + }, + { + "epoch": 60.32, + "grad_norm": 0.8788613080978394, + "learning_rate": 1.9853866666666666e-05, + "loss": 1.3800997924804688, + "step": 452400 + }, + { + "epoch": 60.333333333333336, + "grad_norm": 0.8551366925239563, + "learning_rate": 1.9847200000000002e-05, + "loss": 1.380692138671875, + "step": 452500 + }, + { + "epoch": 60.346666666666664, + "grad_norm": 0.897996187210083, + "learning_rate": 1.9840533333333334e-05, + "loss": 1.3825259399414063, + "step": 452600 + }, + { + "epoch": 60.36, + "grad_norm": 0.8699089288711548, + "learning_rate": 1.9833866666666667e-05, + "loss": 1.3819764709472657, + "step": 452700 + }, + { + "epoch": 60.373333333333335, + "grad_norm": 0.8734973669052124, + "learning_rate": 1.9827200000000002e-05, + "loss": 1.385391082763672, + "step": 452800 + }, + { + "epoch": 60.38666666666666, + "grad_norm": 0.8809809684753418, + "learning_rate": 1.9820533333333334e-05, + "loss": 1.3871815490722657, + "step": 452900 + }, + { + "epoch": 60.4, + "grad_norm": 0.8975648880004883, + "learning_rate": 1.9813866666666667e-05, + "loss": 1.38472412109375, + "step": 453000 + }, + { + "epoch": 60.413333333333334, + "grad_norm": 0.9081311225891113, + "learning_rate": 1.9807200000000002e-05, + "loss": 1.3865188598632812, + "step": 453100 + }, + { + "epoch": 60.42666666666667, + "grad_norm": 0.9099006652832031, + "learning_rate": 1.9800533333333335e-05, + "loss": 1.389481201171875, + "step": 453200 + }, + { + "epoch": 60.44, + "grad_norm": 0.864206850528717, + "learning_rate": 1.979386666666667e-05, + "loss": 1.390070037841797, + "step": 453300 + }, + { + "epoch": 60.45333333333333, + "grad_norm": 0.8600577116012573, + "learning_rate": 1.97872e-05, + "loss": 1.392391357421875, + "step": 453400 + }, + { + "epoch": 60.46666666666667, + "grad_norm": 0.8773865103721619, + "learning_rate": 1.9780533333333335e-05, + "loss": 1.3893141174316406, + "step": 453500 + }, + { + "epoch": 60.48, + "grad_norm": 0.8529485464096069, + "learning_rate": 1.9773866666666667e-05, + "loss": 1.3895809936523438, + "step": 453600 + }, + { + "epoch": 60.49333333333333, + "grad_norm": 0.9243431687355042, + "learning_rate": 1.9767266666666666e-05, + "loss": 1.391697540283203, + "step": 453700 + }, + { + "epoch": 60.50666666666667, + "grad_norm": 0.8365994691848755, + "learning_rate": 1.9760600000000002e-05, + "loss": 1.39140869140625, + "step": 453800 + }, + { + "epoch": 60.52, + "grad_norm": 0.8463616371154785, + "learning_rate": 1.9753933333333334e-05, + "loss": 1.3897438049316406, + "step": 453900 + }, + { + "epoch": 60.53333333333333, + "grad_norm": 0.8689169883728027, + "learning_rate": 1.9747266666666666e-05, + "loss": 1.3926591491699218, + "step": 454000 + }, + { + "epoch": 60.54666666666667, + "grad_norm": 0.8810186386108398, + "learning_rate": 1.9740600000000002e-05, + "loss": 1.3944500732421874, + "step": 454100 + }, + { + "epoch": 60.56, + "grad_norm": 0.8771687150001526, + "learning_rate": 1.9733933333333334e-05, + "loss": 1.3929228210449218, + "step": 454200 + }, + { + "epoch": 60.57333333333333, + "grad_norm": 0.854418933391571, + "learning_rate": 1.972726666666667e-05, + "loss": 1.3968455505371093, + "step": 454300 + }, + { + "epoch": 60.586666666666666, + "grad_norm": 0.8878345489501953, + "learning_rate": 1.97206e-05, + "loss": 1.3940657043457032, + "step": 454400 + }, + { + "epoch": 60.6, + "grad_norm": 0.8897739052772522, + "learning_rate": 1.9713933333333335e-05, + "loss": 1.3936965942382813, + "step": 454500 + }, + { + "epoch": 60.61333333333333, + "grad_norm": 0.9403147101402283, + "learning_rate": 1.9707266666666667e-05, + "loss": 1.3955183410644532, + "step": 454600 + }, + { + "epoch": 60.626666666666665, + "grad_norm": 0.8647699952125549, + "learning_rate": 1.97006e-05, + "loss": 1.3931178283691406, + "step": 454700 + }, + { + "epoch": 60.64, + "grad_norm": 0.9250267744064331, + "learning_rate": 1.9693933333333335e-05, + "loss": 1.394335479736328, + "step": 454800 + }, + { + "epoch": 60.653333333333336, + "grad_norm": 0.9054676294326782, + "learning_rate": 1.9687266666666667e-05, + "loss": 1.3964520263671876, + "step": 454900 + }, + { + "epoch": 60.666666666666664, + "grad_norm": 0.8482034206390381, + "learning_rate": 1.9680600000000003e-05, + "loss": 1.401461639404297, + "step": 455000 + }, + { + "epoch": 60.68, + "grad_norm": 0.8947781920433044, + "learning_rate": 1.967393333333333e-05, + "loss": 1.398545684814453, + "step": 455100 + }, + { + "epoch": 60.693333333333335, + "grad_norm": 0.834432065486908, + "learning_rate": 1.9667266666666667e-05, + "loss": 1.3957997131347657, + "step": 455200 + }, + { + "epoch": 60.70666666666666, + "grad_norm": 0.8843758702278137, + "learning_rate": 1.9660600000000003e-05, + "loss": 1.397581787109375, + "step": 455300 + }, + { + "epoch": 60.72, + "grad_norm": 0.8692967295646667, + "learning_rate": 1.9653933333333335e-05, + "loss": 1.3974429321289064, + "step": 455400 + }, + { + "epoch": 60.733333333333334, + "grad_norm": 0.8995789885520935, + "learning_rate": 1.9647266666666667e-05, + "loss": 1.3975807189941407, + "step": 455500 + }, + { + "epoch": 60.74666666666667, + "grad_norm": 0.9164907932281494, + "learning_rate": 1.96406e-05, + "loss": 1.4055183410644532, + "step": 455600 + }, + { + "epoch": 60.76, + "grad_norm": 0.8928161859512329, + "learning_rate": 1.9634e-05, + "loss": 1.4037777709960937, + "step": 455700 + }, + { + "epoch": 60.77333333333333, + "grad_norm": 0.8764446377754211, + "learning_rate": 1.9627333333333334e-05, + "loss": 1.4005415344238281, + "step": 455800 + }, + { + "epoch": 60.78666666666667, + "grad_norm": 0.904509425163269, + "learning_rate": 1.9620666666666667e-05, + "loss": 1.4026527404785156, + "step": 455900 + }, + { + "epoch": 60.8, + "grad_norm": 0.898916482925415, + "learning_rate": 1.9614000000000002e-05, + "loss": 1.407811279296875, + "step": 456000 + }, + { + "epoch": 60.81333333333333, + "grad_norm": 0.9085363149642944, + "learning_rate": 1.9607333333333335e-05, + "loss": 1.4023429870605468, + "step": 456100 + }, + { + "epoch": 60.82666666666667, + "grad_norm": 0.8209180235862732, + "learning_rate": 1.9600666666666667e-05, + "loss": 1.4042745971679687, + "step": 456200 + }, + { + "epoch": 60.84, + "grad_norm": 0.9050608277320862, + "learning_rate": 1.9594000000000002e-05, + "loss": 1.4010504150390626, + "step": 456300 + }, + { + "epoch": 60.85333333333333, + "grad_norm": 0.8617534637451172, + "learning_rate": 1.9587333333333335e-05, + "loss": 1.4049598693847656, + "step": 456400 + }, + { + "epoch": 60.86666666666667, + "grad_norm": 0.8977437615394592, + "learning_rate": 1.9580666666666667e-05, + "loss": 1.408564910888672, + "step": 456500 + }, + { + "epoch": 60.88, + "grad_norm": 0.9017003178596497, + "learning_rate": 1.9574e-05, + "loss": 1.4092807006835937, + "step": 456600 + }, + { + "epoch": 60.89333333333333, + "grad_norm": 0.8867468237876892, + "learning_rate": 1.9567333333333335e-05, + "loss": 1.4079061889648437, + "step": 456700 + }, + { + "epoch": 60.906666666666666, + "grad_norm": 0.9068670868873596, + "learning_rate": 1.9560666666666667e-05, + "loss": 1.408272705078125, + "step": 456800 + }, + { + "epoch": 60.92, + "grad_norm": 0.9402436017990112, + "learning_rate": 1.9554e-05, + "loss": 1.4082586669921875, + "step": 456900 + }, + { + "epoch": 60.93333333333333, + "grad_norm": 0.8949838280677795, + "learning_rate": 1.9547333333333335e-05, + "loss": 1.4101248168945313, + "step": 457000 + }, + { + "epoch": 60.946666666666665, + "grad_norm": 0.8980549573898315, + "learning_rate": 1.9540666666666667e-05, + "loss": 1.4082913208007812, + "step": 457100 + }, + { + "epoch": 60.96, + "grad_norm": 0.8805965781211853, + "learning_rate": 1.9534000000000003e-05, + "loss": 1.4107188415527343, + "step": 457200 + }, + { + "epoch": 60.973333333333336, + "grad_norm": 0.8333622217178345, + "learning_rate": 1.9527333333333332e-05, + "loss": 1.40792236328125, + "step": 457300 + }, + { + "epoch": 60.986666666666665, + "grad_norm": 0.872611403465271, + "learning_rate": 1.9520666666666668e-05, + "loss": 1.4117628479003905, + "step": 457400 + }, + { + "epoch": 61.0, + "grad_norm": 0.8566659092903137, + "learning_rate": 1.9514000000000003e-05, + "loss": 1.409874725341797, + "step": 457500 + }, + { + "epoch": 61.013333333333335, + "grad_norm": 0.8656761050224304, + "learning_rate": 1.9507333333333332e-05, + "loss": 1.3577760314941407, + "step": 457600 + }, + { + "epoch": 61.026666666666664, + "grad_norm": 0.8465045094490051, + "learning_rate": 1.9500733333333335e-05, + "loss": 1.358833770751953, + "step": 457700 + }, + { + "epoch": 61.04, + "grad_norm": 0.8309293985366821, + "learning_rate": 1.949406666666667e-05, + "loss": 1.356152801513672, + "step": 457800 + }, + { + "epoch": 61.053333333333335, + "grad_norm": 0.9162067174911499, + "learning_rate": 1.94874e-05, + "loss": 1.355301971435547, + "step": 457900 + }, + { + "epoch": 61.06666666666667, + "grad_norm": 0.9088298678398132, + "learning_rate": 1.9480733333333335e-05, + "loss": 1.3575556945800782, + "step": 458000 + }, + { + "epoch": 61.08, + "grad_norm": 0.8428143262863159, + "learning_rate": 1.9474066666666667e-05, + "loss": 1.3585945129394532, + "step": 458100 + }, + { + "epoch": 61.093333333333334, + "grad_norm": 0.8562920093536377, + "learning_rate": 1.9467400000000003e-05, + "loss": 1.361529541015625, + "step": 458200 + }, + { + "epoch": 61.10666666666667, + "grad_norm": 0.8210142254829407, + "learning_rate": 1.9460733333333335e-05, + "loss": 1.3608488464355468, + "step": 458300 + }, + { + "epoch": 61.12, + "grad_norm": 0.8906102180480957, + "learning_rate": 1.9454066666666667e-05, + "loss": 1.3610110473632813, + "step": 458400 + }, + { + "epoch": 61.13333333333333, + "grad_norm": 0.8572280406951904, + "learning_rate": 1.9447400000000003e-05, + "loss": 1.359154510498047, + "step": 458500 + }, + { + "epoch": 61.14666666666667, + "grad_norm": 0.8383269906044006, + "learning_rate": 1.9440733333333332e-05, + "loss": 1.3642387390136719, + "step": 458600 + }, + { + "epoch": 61.16, + "grad_norm": 0.8838930726051331, + "learning_rate": 1.9434066666666667e-05, + "loss": 1.3644644165039062, + "step": 458700 + }, + { + "epoch": 61.17333333333333, + "grad_norm": 0.8675736784934998, + "learning_rate": 1.94274e-05, + "loss": 1.3637721252441406, + "step": 458800 + }, + { + "epoch": 61.18666666666667, + "grad_norm": 0.8860127329826355, + "learning_rate": 1.9420733333333335e-05, + "loss": 1.3696493530273437, + "step": 458900 + }, + { + "epoch": 61.2, + "grad_norm": 0.8294709920883179, + "learning_rate": 1.9414066666666668e-05, + "loss": 1.3652156066894532, + "step": 459000 + }, + { + "epoch": 61.21333333333333, + "grad_norm": 0.8422327041625977, + "learning_rate": 1.94074e-05, + "loss": 1.36591064453125, + "step": 459100 + }, + { + "epoch": 61.22666666666667, + "grad_norm": 0.8764711618423462, + "learning_rate": 1.9400733333333336e-05, + "loss": 1.3690542602539062, + "step": 459200 + }, + { + "epoch": 61.24, + "grad_norm": 0.8453260064125061, + "learning_rate": 1.9394066666666668e-05, + "loss": 1.3683854675292968, + "step": 459300 + }, + { + "epoch": 61.25333333333333, + "grad_norm": 0.8774312734603882, + "learning_rate": 1.93874e-05, + "loss": 1.3740834045410155, + "step": 459400 + }, + { + "epoch": 61.266666666666666, + "grad_norm": 0.8766496777534485, + "learning_rate": 1.9380733333333336e-05, + "loss": 1.3723397827148438, + "step": 459500 + }, + { + "epoch": 61.28, + "grad_norm": 0.8459547162055969, + "learning_rate": 1.9374066666666668e-05, + "loss": 1.3714936828613282, + "step": 459600 + }, + { + "epoch": 61.29333333333334, + "grad_norm": 0.8652738332748413, + "learning_rate": 1.9367466666666667e-05, + "loss": 1.3694456481933595, + "step": 459700 + }, + { + "epoch": 61.306666666666665, + "grad_norm": 0.8927618265151978, + "learning_rate": 1.9360800000000003e-05, + "loss": 1.3731556701660157, + "step": 459800 + }, + { + "epoch": 61.32, + "grad_norm": 0.9212049841880798, + "learning_rate": 1.9354133333333335e-05, + "loss": 1.371415557861328, + "step": 459900 + }, + { + "epoch": 61.333333333333336, + "grad_norm": 0.8938565850257874, + "learning_rate": 1.9347466666666667e-05, + "loss": 1.3725595092773437, + "step": 460000 + }, + { + "epoch": 61.346666666666664, + "grad_norm": 0.9088102579116821, + "learning_rate": 1.93408e-05, + "loss": 1.368966064453125, + "step": 460100 + }, + { + "epoch": 61.36, + "grad_norm": 0.8691730499267578, + "learning_rate": 1.9334133333333335e-05, + "loss": 1.374231719970703, + "step": 460200 + }, + { + "epoch": 61.373333333333335, + "grad_norm": 0.922798752784729, + "learning_rate": 1.9327466666666667e-05, + "loss": 1.3764288330078125, + "step": 460300 + }, + { + "epoch": 61.38666666666666, + "grad_norm": 0.83963543176651, + "learning_rate": 1.93208e-05, + "loss": 1.3810987854003907, + "step": 460400 + }, + { + "epoch": 61.4, + "grad_norm": 0.839726448059082, + "learning_rate": 1.9314133333333335e-05, + "loss": 1.3756941223144532, + "step": 460500 + }, + { + "epoch": 61.413333333333334, + "grad_norm": 0.8824960589408875, + "learning_rate": 1.9307466666666668e-05, + "loss": 1.3773788452148437, + "step": 460600 + }, + { + "epoch": 61.42666666666667, + "grad_norm": 0.8845879435539246, + "learning_rate": 1.9300800000000003e-05, + "loss": 1.377089080810547, + "step": 460700 + }, + { + "epoch": 61.44, + "grad_norm": 0.8615458011627197, + "learning_rate": 1.9294133333333332e-05, + "loss": 1.3773002624511719, + "step": 460800 + }, + { + "epoch": 61.45333333333333, + "grad_norm": 0.934096097946167, + "learning_rate": 1.9287466666666668e-05, + "loss": 1.3814968872070312, + "step": 460900 + }, + { + "epoch": 61.46666666666667, + "grad_norm": 0.8833667039871216, + "learning_rate": 1.92808e-05, + "loss": 1.379684295654297, + "step": 461000 + }, + { + "epoch": 61.48, + "grad_norm": 0.8190123438835144, + "learning_rate": 1.9274133333333332e-05, + "loss": 1.3798077392578125, + "step": 461100 + }, + { + "epoch": 61.49333333333333, + "grad_norm": 0.8761352300643921, + "learning_rate": 1.9267466666666668e-05, + "loss": 1.3821427917480469, + "step": 461200 + }, + { + "epoch": 61.50666666666667, + "grad_norm": 0.8497684597969055, + "learning_rate": 1.92608e-05, + "loss": 1.3799111938476563, + "step": 461300 + }, + { + "epoch": 61.52, + "grad_norm": 0.9118313789367676, + "learning_rate": 1.9254133333333336e-05, + "loss": 1.3833085632324218, + "step": 461400 + }, + { + "epoch": 61.53333333333333, + "grad_norm": 0.8651177287101746, + "learning_rate": 1.9247466666666665e-05, + "loss": 1.3809347534179688, + "step": 461500 + }, + { + "epoch": 61.54666666666667, + "grad_norm": 0.889124870300293, + "learning_rate": 1.92408e-05, + "loss": 1.3849130249023438, + "step": 461600 + }, + { + "epoch": 61.56, + "grad_norm": 0.8513779640197754, + "learning_rate": 1.9234200000000003e-05, + "loss": 1.3853852844238281, + "step": 461700 + }, + { + "epoch": 61.57333333333333, + "grad_norm": 0.887895941734314, + "learning_rate": 1.9227533333333332e-05, + "loss": 1.3864006042480468, + "step": 461800 + }, + { + "epoch": 61.586666666666666, + "grad_norm": 0.8509908318519592, + "learning_rate": 1.9220866666666668e-05, + "loss": 1.3839459228515625, + "step": 461900 + }, + { + "epoch": 61.6, + "grad_norm": 0.9221972823143005, + "learning_rate": 1.9214200000000003e-05, + "loss": 1.383968048095703, + "step": 462000 + }, + { + "epoch": 61.61333333333333, + "grad_norm": 0.9250000715255737, + "learning_rate": 1.9207533333333332e-05, + "loss": 1.3876034545898437, + "step": 462100 + }, + { + "epoch": 61.626666666666665, + "grad_norm": 0.8646901845932007, + "learning_rate": 1.9200866666666668e-05, + "loss": 1.3860377502441406, + "step": 462200 + }, + { + "epoch": 61.64, + "grad_norm": 0.861657440662384, + "learning_rate": 1.91942e-05, + "loss": 1.383225555419922, + "step": 462300 + }, + { + "epoch": 61.653333333333336, + "grad_norm": 0.8866887092590332, + "learning_rate": 1.9187533333333336e-05, + "loss": 1.3847361755371095, + "step": 462400 + }, + { + "epoch": 61.666666666666664, + "grad_norm": 0.9262802004814148, + "learning_rate": 1.9180866666666668e-05, + "loss": 1.388157958984375, + "step": 462500 + }, + { + "epoch": 61.68, + "grad_norm": 0.9400535225868225, + "learning_rate": 1.91742e-05, + "loss": 1.393813018798828, + "step": 462600 + }, + { + "epoch": 61.693333333333335, + "grad_norm": 0.8449798822402954, + "learning_rate": 1.9167533333333336e-05, + "loss": 1.3909236145019532, + "step": 462700 + }, + { + "epoch": 61.70666666666666, + "grad_norm": 0.9139823913574219, + "learning_rate": 1.9160866666666668e-05, + "loss": 1.3890992736816405, + "step": 462800 + }, + { + "epoch": 61.72, + "grad_norm": 0.8991366028785706, + "learning_rate": 1.91542e-05, + "loss": 1.3909164428710938, + "step": 462900 + }, + { + "epoch": 61.733333333333334, + "grad_norm": 0.8757520914077759, + "learning_rate": 1.9147533333333333e-05, + "loss": 1.3896699523925782, + "step": 463000 + }, + { + "epoch": 61.74666666666667, + "grad_norm": 0.9049115180969238, + "learning_rate": 1.9140866666666668e-05, + "loss": 1.394837646484375, + "step": 463100 + }, + { + "epoch": 61.76, + "grad_norm": 0.8733699917793274, + "learning_rate": 1.91342e-05, + "loss": 1.3964109802246094, + "step": 463200 + }, + { + "epoch": 61.77333333333333, + "grad_norm": 0.8619510531425476, + "learning_rate": 1.9127533333333333e-05, + "loss": 1.3983462524414063, + "step": 463300 + }, + { + "epoch": 61.78666666666667, + "grad_norm": 0.9041216373443604, + "learning_rate": 1.912086666666667e-05, + "loss": 1.3950437927246093, + "step": 463400 + }, + { + "epoch": 61.8, + "grad_norm": 0.8376539349555969, + "learning_rate": 1.91142e-05, + "loss": 1.3959678649902343, + "step": 463500 + }, + { + "epoch": 61.81333333333333, + "grad_norm": 0.9201698899269104, + "learning_rate": 1.9107533333333336e-05, + "loss": 1.3929420471191407, + "step": 463600 + }, + { + "epoch": 61.82666666666667, + "grad_norm": 0.8924663066864014, + "learning_rate": 1.9100866666666665e-05, + "loss": 1.3928451538085938, + "step": 463700 + }, + { + "epoch": 61.84, + "grad_norm": 0.9583051204681396, + "learning_rate": 1.9094266666666668e-05, + "loss": 1.3949006652832032, + "step": 463800 + }, + { + "epoch": 61.85333333333333, + "grad_norm": 0.9100115299224854, + "learning_rate": 1.90876e-05, + "loss": 1.3972018432617188, + "step": 463900 + }, + { + "epoch": 61.86666666666667, + "grad_norm": 0.8739942908287048, + "learning_rate": 1.9080933333333336e-05, + "loss": 1.3991426086425782, + "step": 464000 + }, + { + "epoch": 61.88, + "grad_norm": 0.8799852728843689, + "learning_rate": 1.9074266666666668e-05, + "loss": 1.3998698425292968, + "step": 464100 + }, + { + "epoch": 61.89333333333333, + "grad_norm": 0.9696583151817322, + "learning_rate": 1.9067600000000004e-05, + "loss": 1.3958427429199218, + "step": 464200 + }, + { + "epoch": 61.906666666666666, + "grad_norm": 0.8549162745475769, + "learning_rate": 1.9060933333333332e-05, + "loss": 1.3939924621582032, + "step": 464300 + }, + { + "epoch": 61.92, + "grad_norm": 0.8806065320968628, + "learning_rate": 1.9054266666666668e-05, + "loss": 1.3964865112304687, + "step": 464400 + }, + { + "epoch": 61.93333333333333, + "grad_norm": 0.9188470840454102, + "learning_rate": 1.90476e-05, + "loss": 1.399241943359375, + "step": 464500 + }, + { + "epoch": 61.946666666666665, + "grad_norm": 0.8856474161148071, + "learning_rate": 1.9040933333333336e-05, + "loss": 1.3998440551757811, + "step": 464600 + }, + { + "epoch": 61.96, + "grad_norm": 0.9105949401855469, + "learning_rate": 1.903426666666667e-05, + "loss": 1.4019500732421875, + "step": 464700 + }, + { + "epoch": 61.973333333333336, + "grad_norm": 0.8759123682975769, + "learning_rate": 1.90276e-05, + "loss": 1.4000885009765625, + "step": 464800 + }, + { + "epoch": 61.986666666666665, + "grad_norm": 0.9017794728279114, + "learning_rate": 1.9020933333333336e-05, + "loss": 1.3990060424804687, + "step": 464900 + }, + { + "epoch": 62.0, + "grad_norm": 0.9188961982727051, + "learning_rate": 1.9014266666666665e-05, + "loss": 1.4041940307617187, + "step": 465000 + }, + { + "epoch": 62.013333333333335, + "grad_norm": 0.8573675751686096, + "learning_rate": 1.90076e-05, + "loss": 1.3513052368164062, + "step": 465100 + }, + { + "epoch": 62.026666666666664, + "grad_norm": 0.8655972480773926, + "learning_rate": 1.9000933333333333e-05, + "loss": 1.3455097961425782, + "step": 465200 + }, + { + "epoch": 62.04, + "grad_norm": 0.8731736540794373, + "learning_rate": 1.899426666666667e-05, + "loss": 1.3468002319335937, + "step": 465300 + }, + { + "epoch": 62.053333333333335, + "grad_norm": 0.8214830756187439, + "learning_rate": 1.89876e-05, + "loss": 1.3466973876953126, + "step": 465400 + }, + { + "epoch": 62.06666666666667, + "grad_norm": 0.8522217273712158, + "learning_rate": 1.8980933333333333e-05, + "loss": 1.3482205200195312, + "step": 465500 + }, + { + "epoch": 62.08, + "grad_norm": 0.8417600989341736, + "learning_rate": 1.897426666666667e-05, + "loss": 1.34806640625, + "step": 465600 + }, + { + "epoch": 62.093333333333334, + "grad_norm": 0.8675144910812378, + "learning_rate": 1.89676e-05, + "loss": 1.3566635131835938, + "step": 465700 + }, + { + "epoch": 62.10666666666667, + "grad_norm": 0.7986916303634644, + "learning_rate": 1.8961e-05, + "loss": 1.353138427734375, + "step": 465800 + }, + { + "epoch": 62.12, + "grad_norm": 0.8446239829063416, + "learning_rate": 1.8954333333333336e-05, + "loss": 1.3517807006835938, + "step": 465900 + }, + { + "epoch": 62.13333333333333, + "grad_norm": 0.8451570272445679, + "learning_rate": 1.8947666666666665e-05, + "loss": 1.3576107788085938, + "step": 466000 + }, + { + "epoch": 62.14666666666667, + "grad_norm": 0.8504143953323364, + "learning_rate": 1.8941e-05, + "loss": 1.357427215576172, + "step": 466100 + }, + { + "epoch": 62.16, + "grad_norm": 0.8272042274475098, + "learning_rate": 1.8934333333333336e-05, + "loss": 1.3584977722167968, + "step": 466200 + }, + { + "epoch": 62.17333333333333, + "grad_norm": 0.8340880274772644, + "learning_rate": 1.892766666666667e-05, + "loss": 1.35913330078125, + "step": 466300 + }, + { + "epoch": 62.18666666666667, + "grad_norm": 0.8207993507385254, + "learning_rate": 1.8921e-05, + "loss": 1.356055908203125, + "step": 466400 + }, + { + "epoch": 62.2, + "grad_norm": 0.8401222229003906, + "learning_rate": 1.8914333333333333e-05, + "loss": 1.3570013427734375, + "step": 466500 + }, + { + "epoch": 62.21333333333333, + "grad_norm": 0.8501874804496765, + "learning_rate": 1.890766666666667e-05, + "loss": 1.3550076293945312, + "step": 466600 + }, + { + "epoch": 62.22666666666667, + "grad_norm": 0.8478946089744568, + "learning_rate": 1.8901e-05, + "loss": 1.3626107788085937, + "step": 466700 + }, + { + "epoch": 62.24, + "grad_norm": 0.889898955821991, + "learning_rate": 1.8894333333333333e-05, + "loss": 1.3627383422851562, + "step": 466800 + }, + { + "epoch": 62.25333333333333, + "grad_norm": 0.8666733503341675, + "learning_rate": 1.888766666666667e-05, + "loss": 1.3645501708984376, + "step": 466900 + }, + { + "epoch": 62.266666666666666, + "grad_norm": 0.9081425070762634, + "learning_rate": 1.8881e-05, + "loss": 1.3609548950195312, + "step": 467000 + }, + { + "epoch": 62.28, + "grad_norm": 0.8720145225524902, + "learning_rate": 1.8874333333333337e-05, + "loss": 1.365575714111328, + "step": 467100 + }, + { + "epoch": 62.29333333333334, + "grad_norm": 0.8420373797416687, + "learning_rate": 1.8867666666666666e-05, + "loss": 1.3625498962402345, + "step": 467200 + }, + { + "epoch": 62.306666666666665, + "grad_norm": 0.8779093623161316, + "learning_rate": 1.8861e-05, + "loss": 1.3643501281738282, + "step": 467300 + }, + { + "epoch": 62.32, + "grad_norm": 0.8036565780639648, + "learning_rate": 1.8854333333333333e-05, + "loss": 1.3618597412109374, + "step": 467400 + }, + { + "epoch": 62.333333333333336, + "grad_norm": 0.8801616430282593, + "learning_rate": 1.8847666666666666e-05, + "loss": 1.3635311889648438, + "step": 467500 + }, + { + "epoch": 62.346666666666664, + "grad_norm": 0.8832975029945374, + "learning_rate": 1.8841e-05, + "loss": 1.3624273681640624, + "step": 467600 + }, + { + "epoch": 62.36, + "grad_norm": 0.8669077157974243, + "learning_rate": 1.8834333333333334e-05, + "loss": 1.3672244262695312, + "step": 467700 + }, + { + "epoch": 62.373333333333335, + "grad_norm": 0.8744094371795654, + "learning_rate": 1.8827733333333333e-05, + "loss": 1.3657164001464843, + "step": 467800 + }, + { + "epoch": 62.38666666666666, + "grad_norm": 0.8977140784263611, + "learning_rate": 1.882106666666667e-05, + "loss": 1.3728543090820313, + "step": 467900 + }, + { + "epoch": 62.4, + "grad_norm": 0.9251410961151123, + "learning_rate": 1.88144e-05, + "loss": 1.3700556945800781, + "step": 468000 + }, + { + "epoch": 62.413333333333334, + "grad_norm": 0.8600748181343079, + "learning_rate": 1.8807733333333336e-05, + "loss": 1.3633903503417968, + "step": 468100 + }, + { + "epoch": 62.42666666666667, + "grad_norm": 0.8662360310554504, + "learning_rate": 1.8801066666666665e-05, + "loss": 1.3714529418945312, + "step": 468200 + }, + { + "epoch": 62.44, + "grad_norm": 0.8972686529159546, + "learning_rate": 1.87944e-05, + "loss": 1.3743254089355468, + "step": 468300 + }, + { + "epoch": 62.45333333333333, + "grad_norm": 0.8791953921318054, + "learning_rate": 1.8787733333333337e-05, + "loss": 1.3700238037109376, + "step": 468400 + }, + { + "epoch": 62.46666666666667, + "grad_norm": 0.8646233677864075, + "learning_rate": 1.8781066666666665e-05, + "loss": 1.3702452087402344, + "step": 468500 + }, + { + "epoch": 62.48, + "grad_norm": 0.8732235431671143, + "learning_rate": 1.87744e-05, + "loss": 1.381118621826172, + "step": 468600 + }, + { + "epoch": 62.49333333333333, + "grad_norm": 0.8889748454093933, + "learning_rate": 1.8767733333333333e-05, + "loss": 1.3723052978515624, + "step": 468700 + }, + { + "epoch": 62.50666666666667, + "grad_norm": 0.8828487992286682, + "learning_rate": 1.876106666666667e-05, + "loss": 1.3749916076660156, + "step": 468800 + }, + { + "epoch": 62.52, + "grad_norm": 0.842641294002533, + "learning_rate": 1.87544e-05, + "loss": 1.3710438537597656, + "step": 468900 + }, + { + "epoch": 62.53333333333333, + "grad_norm": 0.8470684885978699, + "learning_rate": 1.8747733333333333e-05, + "loss": 1.37222412109375, + "step": 469000 + }, + { + "epoch": 62.54666666666667, + "grad_norm": 0.9085938334465027, + "learning_rate": 1.874106666666667e-05, + "loss": 1.3758197021484375, + "step": 469100 + }, + { + "epoch": 62.56, + "grad_norm": 0.8867812156677246, + "learning_rate": 1.87344e-05, + "loss": 1.3802314758300782, + "step": 469200 + }, + { + "epoch": 62.57333333333333, + "grad_norm": 0.8809147477149963, + "learning_rate": 1.8727733333333334e-05, + "loss": 1.3785780334472657, + "step": 469300 + }, + { + "epoch": 62.586666666666666, + "grad_norm": 0.8905417323112488, + "learning_rate": 1.8721066666666666e-05, + "loss": 1.3713362121582031, + "step": 469400 + }, + { + "epoch": 62.6, + "grad_norm": 0.8625428080558777, + "learning_rate": 1.87144e-05, + "loss": 1.3784394836425782, + "step": 469500 + }, + { + "epoch": 62.61333333333333, + "grad_norm": 0.8563883304595947, + "learning_rate": 1.8707733333333334e-05, + "loss": 1.3763919067382813, + "step": 469600 + }, + { + "epoch": 62.626666666666665, + "grad_norm": 0.9011384844779968, + "learning_rate": 1.8701066666666666e-05, + "loss": 1.379695587158203, + "step": 469700 + }, + { + "epoch": 62.64, + "grad_norm": 0.8625617623329163, + "learning_rate": 1.8694400000000002e-05, + "loss": 1.376241455078125, + "step": 469800 + }, + { + "epoch": 62.653333333333336, + "grad_norm": 0.9148832559585571, + "learning_rate": 1.86878e-05, + "loss": 1.3796707153320313, + "step": 469900 + }, + { + "epoch": 62.666666666666664, + "grad_norm": 0.8644863367080688, + "learning_rate": 1.8681133333333333e-05, + "loss": 1.3743251037597657, + "step": 470000 + }, + { + "epoch": 62.68, + "grad_norm": 0.8707835674285889, + "learning_rate": 1.867446666666667e-05, + "loss": 1.3785989379882813, + "step": 470100 + }, + { + "epoch": 62.693333333333335, + "grad_norm": 0.8736674785614014, + "learning_rate": 1.86678e-05, + "loss": 1.3785296630859376, + "step": 470200 + }, + { + "epoch": 62.70666666666666, + "grad_norm": 0.8863952159881592, + "learning_rate": 1.8661133333333333e-05, + "loss": 1.3846035766601563, + "step": 470300 + }, + { + "epoch": 62.72, + "grad_norm": 0.8530660271644592, + "learning_rate": 1.865446666666667e-05, + "loss": 1.3847772216796874, + "step": 470400 + }, + { + "epoch": 62.733333333333334, + "grad_norm": 0.9117617607116699, + "learning_rate": 1.86478e-05, + "loss": 1.379307403564453, + "step": 470500 + }, + { + "epoch": 62.74666666666667, + "grad_norm": 0.9356516003608704, + "learning_rate": 1.8641133333333337e-05, + "loss": 1.3868818664550782, + "step": 470600 + }, + { + "epoch": 62.76, + "grad_norm": 0.9563553929328918, + "learning_rate": 1.8634466666666666e-05, + "loss": 1.3831312561035156, + "step": 470700 + }, + { + "epoch": 62.77333333333333, + "grad_norm": 0.8613978028297424, + "learning_rate": 1.86278e-05, + "loss": 1.386735382080078, + "step": 470800 + }, + { + "epoch": 62.78666666666667, + "grad_norm": 0.8880415558815002, + "learning_rate": 1.8621133333333334e-05, + "loss": 1.3830174255371093, + "step": 470900 + }, + { + "epoch": 62.8, + "grad_norm": 0.8753419518470764, + "learning_rate": 1.861446666666667e-05, + "loss": 1.3831968688964844, + "step": 471000 + }, + { + "epoch": 62.81333333333333, + "grad_norm": 0.8973806500434875, + "learning_rate": 1.86078e-05, + "loss": 1.384782257080078, + "step": 471100 + }, + { + "epoch": 62.82666666666667, + "grad_norm": 0.8728386759757996, + "learning_rate": 1.8601133333333334e-05, + "loss": 1.3836083984375, + "step": 471200 + }, + { + "epoch": 62.84, + "grad_norm": 0.8542366623878479, + "learning_rate": 1.859446666666667e-05, + "loss": 1.3806695556640625, + "step": 471300 + }, + { + "epoch": 62.85333333333333, + "grad_norm": 0.9084987640380859, + "learning_rate": 1.85878e-05, + "loss": 1.3919306945800782, + "step": 471400 + }, + { + "epoch": 62.86666666666667, + "grad_norm": 0.9229134321212769, + "learning_rate": 1.8581133333333334e-05, + "loss": 1.3888737487792968, + "step": 471500 + }, + { + "epoch": 62.88, + "grad_norm": 0.9117254614830017, + "learning_rate": 1.8574466666666666e-05, + "loss": 1.389185791015625, + "step": 471600 + }, + { + "epoch": 62.89333333333333, + "grad_norm": 0.9002920389175415, + "learning_rate": 1.8567800000000002e-05, + "loss": 1.3870626831054687, + "step": 471700 + }, + { + "epoch": 62.906666666666666, + "grad_norm": 0.9569069743156433, + "learning_rate": 1.8561133333333334e-05, + "loss": 1.3885276794433594, + "step": 471800 + }, + { + "epoch": 62.92, + "grad_norm": 0.8567367196083069, + "learning_rate": 1.8554533333333333e-05, + "loss": 1.3927679443359375, + "step": 471900 + }, + { + "epoch": 62.93333333333333, + "grad_norm": 0.8821707963943481, + "learning_rate": 1.8547866666666666e-05, + "loss": 1.385771484375, + "step": 472000 + }, + { + "epoch": 62.946666666666665, + "grad_norm": 0.934012234210968, + "learning_rate": 1.85412e-05, + "loss": 1.3942887878417969, + "step": 472100 + }, + { + "epoch": 62.96, + "grad_norm": 0.9266797304153442, + "learning_rate": 1.8534533333333334e-05, + "loss": 1.3928118896484376, + "step": 472200 + }, + { + "epoch": 62.973333333333336, + "grad_norm": 0.9574691653251648, + "learning_rate": 1.852786666666667e-05, + "loss": 1.3905284118652343, + "step": 472300 + }, + { + "epoch": 62.986666666666665, + "grad_norm": 0.924963116645813, + "learning_rate": 1.8521199999999998e-05, + "loss": 1.3944451904296875, + "step": 472400 + }, + { + "epoch": 63.0, + "grad_norm": 0.8816106915473938, + "learning_rate": 1.8514533333333334e-05, + "loss": 1.393121795654297, + "step": 472500 + }, + { + "epoch": 63.013333333333335, + "grad_norm": 0.8383874297142029, + "learning_rate": 1.850786666666667e-05, + "loss": 1.3370849609375, + "step": 472600 + }, + { + "epoch": 63.026666666666664, + "grad_norm": 0.8403507471084595, + "learning_rate": 1.85012e-05, + "loss": 1.3425094604492187, + "step": 472700 + }, + { + "epoch": 63.04, + "grad_norm": 0.8906253576278687, + "learning_rate": 1.8494533333333334e-05, + "loss": 1.340731658935547, + "step": 472800 + }, + { + "epoch": 63.053333333333335, + "grad_norm": 0.9231695532798767, + "learning_rate": 1.8487866666666666e-05, + "loss": 1.3418489074707032, + "step": 472900 + }, + { + "epoch": 63.06666666666667, + "grad_norm": 0.879458487033844, + "learning_rate": 1.8481200000000002e-05, + "loss": 1.3442330932617188, + "step": 473000 + }, + { + "epoch": 63.08, + "grad_norm": 0.8238392472267151, + "learning_rate": 1.8474533333333334e-05, + "loss": 1.3447978210449218, + "step": 473100 + }, + { + "epoch": 63.093333333333334, + "grad_norm": 0.8179836273193359, + "learning_rate": 1.8467866666666666e-05, + "loss": 1.3443252563476562, + "step": 473200 + }, + { + "epoch": 63.10666666666667, + "grad_norm": 0.8274221420288086, + "learning_rate": 1.8461200000000002e-05, + "loss": 1.3449710083007813, + "step": 473300 + }, + { + "epoch": 63.12, + "grad_norm": 0.8805060982704163, + "learning_rate": 1.8454533333333334e-05, + "loss": 1.34772705078125, + "step": 473400 + }, + { + "epoch": 63.13333333333333, + "grad_norm": 0.856552004814148, + "learning_rate": 1.844786666666667e-05, + "loss": 1.34474609375, + "step": 473500 + }, + { + "epoch": 63.14666666666667, + "grad_norm": 0.8999550938606262, + "learning_rate": 1.84412e-05, + "loss": 1.3447769165039063, + "step": 473600 + }, + { + "epoch": 63.16, + "grad_norm": 0.8466945886611938, + "learning_rate": 1.8434533333333335e-05, + "loss": 1.3498774719238282, + "step": 473700 + }, + { + "epoch": 63.17333333333333, + "grad_norm": 0.8720507621765137, + "learning_rate": 1.8427866666666667e-05, + "loss": 1.3509268188476562, + "step": 473800 + }, + { + "epoch": 63.18666666666667, + "grad_norm": 0.8553282618522644, + "learning_rate": 1.84212e-05, + "loss": 1.3472882080078126, + "step": 473900 + }, + { + "epoch": 63.2, + "grad_norm": 0.8717467188835144, + "learning_rate": 1.84146e-05, + "loss": 1.3507821655273438, + "step": 474000 + }, + { + "epoch": 63.21333333333333, + "grad_norm": 0.8789405822753906, + "learning_rate": 1.8407933333333334e-05, + "loss": 1.3463182067871093, + "step": 474100 + }, + { + "epoch": 63.22666666666667, + "grad_norm": 0.8856403231620789, + "learning_rate": 1.8401266666666666e-05, + "loss": 1.3535433959960939, + "step": 474200 + }, + { + "epoch": 63.24, + "grad_norm": 0.8736082911491394, + "learning_rate": 1.8394600000000002e-05, + "loss": 1.353790283203125, + "step": 474300 + }, + { + "epoch": 63.25333333333333, + "grad_norm": 0.8425241112709045, + "learning_rate": 1.8387933333333334e-05, + "loss": 1.3515614318847655, + "step": 474400 + }, + { + "epoch": 63.266666666666666, + "grad_norm": 0.8841555118560791, + "learning_rate": 1.838126666666667e-05, + "loss": 1.357039794921875, + "step": 474500 + }, + { + "epoch": 63.28, + "grad_norm": 0.8851358890533447, + "learning_rate": 1.83746e-05, + "loss": 1.3571649169921876, + "step": 474600 + }, + { + "epoch": 63.29333333333334, + "grad_norm": 0.8119401335716248, + "learning_rate": 1.8367933333333334e-05, + "loss": 1.3512042236328126, + "step": 474700 + }, + { + "epoch": 63.306666666666665, + "grad_norm": 0.8968778848648071, + "learning_rate": 1.836126666666667e-05, + "loss": 1.3547596740722656, + "step": 474800 + }, + { + "epoch": 63.32, + "grad_norm": 0.9098058938980103, + "learning_rate": 1.83546e-05, + "loss": 1.3593733215332031, + "step": 474900 + }, + { + "epoch": 63.333333333333336, + "grad_norm": 0.8831583857536316, + "learning_rate": 1.8347933333333334e-05, + "loss": 1.355583953857422, + "step": 475000 + }, + { + "epoch": 63.346666666666664, + "grad_norm": 0.8631011843681335, + "learning_rate": 1.8341266666666667e-05, + "loss": 1.3582133483886718, + "step": 475100 + }, + { + "epoch": 63.36, + "grad_norm": 0.8748294115066528, + "learning_rate": 1.8334600000000002e-05, + "loss": 1.359095458984375, + "step": 475200 + }, + { + "epoch": 63.373333333333335, + "grad_norm": 0.8583943247795105, + "learning_rate": 1.8327933333333335e-05, + "loss": 1.3613153076171876, + "step": 475300 + }, + { + "epoch": 63.38666666666666, + "grad_norm": 0.8866649270057678, + "learning_rate": 1.8321266666666667e-05, + "loss": 1.3615292358398436, + "step": 475400 + }, + { + "epoch": 63.4, + "grad_norm": 0.8681355714797974, + "learning_rate": 1.8314600000000002e-05, + "loss": 1.3599000549316407, + "step": 475500 + }, + { + "epoch": 63.413333333333334, + "grad_norm": 0.9076934456825256, + "learning_rate": 1.8307933333333335e-05, + "loss": 1.3641069030761719, + "step": 475600 + }, + { + "epoch": 63.42666666666667, + "grad_norm": 0.8490332961082458, + "learning_rate": 1.8301266666666667e-05, + "loss": 1.3651712036132813, + "step": 475700 + }, + { + "epoch": 63.44, + "grad_norm": 0.8959413170814514, + "learning_rate": 1.82946e-05, + "loss": 1.3646134948730468, + "step": 475800 + }, + { + "epoch": 63.45333333333333, + "grad_norm": 0.843246340751648, + "learning_rate": 1.8287933333333335e-05, + "loss": 1.362332763671875, + "step": 475900 + }, + { + "epoch": 63.46666666666667, + "grad_norm": 0.874142050743103, + "learning_rate": 1.8281333333333334e-05, + "loss": 1.3656585693359375, + "step": 476000 + }, + { + "epoch": 63.48, + "grad_norm": 0.9227689504623413, + "learning_rate": 1.8274666666666666e-05, + "loss": 1.3628779602050782, + "step": 476100 + }, + { + "epoch": 63.49333333333333, + "grad_norm": 0.8379034399986267, + "learning_rate": 1.8268000000000002e-05, + "loss": 1.3627792358398438, + "step": 476200 + }, + { + "epoch": 63.50666666666667, + "grad_norm": 0.8998229503631592, + "learning_rate": 1.8261333333333334e-05, + "loss": 1.3685745239257812, + "step": 476300 + }, + { + "epoch": 63.52, + "grad_norm": 0.9073343276977539, + "learning_rate": 1.8254666666666666e-05, + "loss": 1.3673577880859376, + "step": 476400 + }, + { + "epoch": 63.53333333333333, + "grad_norm": 0.8960281014442444, + "learning_rate": 1.8248000000000002e-05, + "loss": 1.3650401306152344, + "step": 476500 + }, + { + "epoch": 63.54666666666667, + "grad_norm": 0.8500860333442688, + "learning_rate": 1.8241333333333334e-05, + "loss": 1.363343505859375, + "step": 476600 + }, + { + "epoch": 63.56, + "grad_norm": 0.9132857918739319, + "learning_rate": 1.8234666666666667e-05, + "loss": 1.3673420715332032, + "step": 476700 + }, + { + "epoch": 63.57333333333333, + "grad_norm": 0.851512610912323, + "learning_rate": 1.8228e-05, + "loss": 1.3654722595214843, + "step": 476800 + }, + { + "epoch": 63.586666666666666, + "grad_norm": 0.9432153701782227, + "learning_rate": 1.8221333333333335e-05, + "loss": 1.37032470703125, + "step": 476900 + }, + { + "epoch": 63.6, + "grad_norm": 0.8776945471763611, + "learning_rate": 1.821466666666667e-05, + "loss": 1.3680665588378906, + "step": 477000 + }, + { + "epoch": 63.61333333333333, + "grad_norm": 0.8363541960716248, + "learning_rate": 1.8208e-05, + "loss": 1.3700338745117187, + "step": 477100 + }, + { + "epoch": 63.626666666666665, + "grad_norm": 0.8852552771568298, + "learning_rate": 1.8201333333333335e-05, + "loss": 1.367037811279297, + "step": 477200 + }, + { + "epoch": 63.64, + "grad_norm": 0.9047751426696777, + "learning_rate": 1.8194666666666667e-05, + "loss": 1.3724662780761718, + "step": 477300 + }, + { + "epoch": 63.653333333333336, + "grad_norm": 0.9022383093833923, + "learning_rate": 1.8188e-05, + "loss": 1.36989013671875, + "step": 477400 + }, + { + "epoch": 63.666666666666664, + "grad_norm": 0.8873071670532227, + "learning_rate": 1.8181333333333335e-05, + "loss": 1.3709544372558593, + "step": 477500 + }, + { + "epoch": 63.68, + "grad_norm": 0.8178770542144775, + "learning_rate": 1.8174666666666667e-05, + "loss": 1.3764271545410156, + "step": 477600 + }, + { + "epoch": 63.693333333333335, + "grad_norm": 0.8374172449111938, + "learning_rate": 1.8168000000000003e-05, + "loss": 1.3749362182617189, + "step": 477700 + }, + { + "epoch": 63.70666666666666, + "grad_norm": 0.8704270124435425, + "learning_rate": 1.8161333333333332e-05, + "loss": 1.3716815185546876, + "step": 477800 + }, + { + "epoch": 63.72, + "grad_norm": 0.8928576111793518, + "learning_rate": 1.8154666666666667e-05, + "loss": 1.3758961486816406, + "step": 477900 + }, + { + "epoch": 63.733333333333334, + "grad_norm": 0.8924788236618042, + "learning_rate": 1.814806666666667e-05, + "loss": 1.3712451171875, + "step": 478000 + }, + { + "epoch": 63.74666666666667, + "grad_norm": 0.9000948071479797, + "learning_rate": 1.81414e-05, + "loss": 1.3741796875, + "step": 478100 + }, + { + "epoch": 63.76, + "grad_norm": 0.8834265470504761, + "learning_rate": 1.8134733333333334e-05, + "loss": 1.3737052917480468, + "step": 478200 + }, + { + "epoch": 63.77333333333333, + "grad_norm": 0.9444625377655029, + "learning_rate": 1.8128066666666667e-05, + "loss": 1.373978729248047, + "step": 478300 + }, + { + "epoch": 63.78666666666667, + "grad_norm": 0.9131369590759277, + "learning_rate": 1.81214e-05, + "loss": 1.376599578857422, + "step": 478400 + }, + { + "epoch": 63.8, + "grad_norm": 0.9047242999076843, + "learning_rate": 1.8114733333333335e-05, + "loss": 1.3785902404785155, + "step": 478500 + }, + { + "epoch": 63.81333333333333, + "grad_norm": 0.9182378649711609, + "learning_rate": 1.8108066666666667e-05, + "loss": 1.3755938720703125, + "step": 478600 + }, + { + "epoch": 63.82666666666667, + "grad_norm": 0.8585050106048584, + "learning_rate": 1.8101400000000003e-05, + "loss": 1.378345947265625, + "step": 478700 + }, + { + "epoch": 63.84, + "grad_norm": 0.9279830455780029, + "learning_rate": 1.809473333333333e-05, + "loss": 1.3787484741210938, + "step": 478800 + }, + { + "epoch": 63.85333333333333, + "grad_norm": 0.9332795739173889, + "learning_rate": 1.8088066666666667e-05, + "loss": 1.375228271484375, + "step": 478900 + }, + { + "epoch": 63.86666666666667, + "grad_norm": 0.8513908386230469, + "learning_rate": 1.8081400000000003e-05, + "loss": 1.3808787536621094, + "step": 479000 + }, + { + "epoch": 63.88, + "grad_norm": 0.8637625575065613, + "learning_rate": 1.8074733333333335e-05, + "loss": 1.3811036682128905, + "step": 479100 + }, + { + "epoch": 63.89333333333333, + "grad_norm": 0.8872289061546326, + "learning_rate": 1.8068066666666667e-05, + "loss": 1.3788679504394532, + "step": 479200 + }, + { + "epoch": 63.906666666666666, + "grad_norm": 0.8666730523109436, + "learning_rate": 1.80614e-05, + "loss": 1.3822543334960937, + "step": 479300 + }, + { + "epoch": 63.92, + "grad_norm": 0.8657490015029907, + "learning_rate": 1.8054733333333335e-05, + "loss": 1.3822019958496095, + "step": 479400 + }, + { + "epoch": 63.93333333333333, + "grad_norm": 0.8995828032493591, + "learning_rate": 1.8048066666666667e-05, + "loss": 1.3845445251464843, + "step": 479500 + }, + { + "epoch": 63.946666666666665, + "grad_norm": 0.882078230381012, + "learning_rate": 1.80414e-05, + "loss": 1.3831179809570313, + "step": 479600 + }, + { + "epoch": 63.96, + "grad_norm": 0.9140791296958923, + "learning_rate": 1.8034733333333335e-05, + "loss": 1.38243408203125, + "step": 479700 + }, + { + "epoch": 63.973333333333336, + "grad_norm": 0.9000608921051025, + "learning_rate": 1.8028066666666668e-05, + "loss": 1.3803366088867188, + "step": 479800 + }, + { + "epoch": 63.986666666666665, + "grad_norm": 0.8583875894546509, + "learning_rate": 1.8021400000000003e-05, + "loss": 1.378529052734375, + "step": 479900 + }, + { + "epoch": 64.0, + "grad_norm": 0.8945102095603943, + "learning_rate": 1.8014800000000002e-05, + "loss": 1.384607696533203, + "step": 480000 + }, + { + "epoch": 64.01333333333334, + "grad_norm": 0.8934009671211243, + "learning_rate": 1.8008133333333335e-05, + "loss": 1.3323703002929688, + "step": 480100 + }, + { + "epoch": 64.02666666666667, + "grad_norm": 0.9144300222396851, + "learning_rate": 1.8001466666666667e-05, + "loss": 1.330888671875, + "step": 480200 + }, + { + "epoch": 64.04, + "grad_norm": 0.8587374091148376, + "learning_rate": 1.79948e-05, + "loss": 1.3373068237304688, + "step": 480300 + }, + { + "epoch": 64.05333333333333, + "grad_norm": 0.8584490418434143, + "learning_rate": 1.7988133333333335e-05, + "loss": 1.3341929626464843, + "step": 480400 + }, + { + "epoch": 64.06666666666666, + "grad_norm": 0.8442391753196716, + "learning_rate": 1.7981466666666667e-05, + "loss": 1.3336114501953125, + "step": 480500 + }, + { + "epoch": 64.08, + "grad_norm": 0.8665919899940491, + "learning_rate": 1.79748e-05, + "loss": 1.338314208984375, + "step": 480600 + }, + { + "epoch": 64.09333333333333, + "grad_norm": 0.8454016447067261, + "learning_rate": 1.7968133333333335e-05, + "loss": 1.3366471862792968, + "step": 480700 + }, + { + "epoch": 64.10666666666667, + "grad_norm": 0.8860534429550171, + "learning_rate": 1.7961466666666667e-05, + "loss": 1.3377793884277345, + "step": 480800 + }, + { + "epoch": 64.12, + "grad_norm": 0.8886109590530396, + "learning_rate": 1.7954800000000003e-05, + "loss": 1.3379669189453125, + "step": 480900 + }, + { + "epoch": 64.13333333333334, + "grad_norm": 0.8925758600234985, + "learning_rate": 1.7948133333333332e-05, + "loss": 1.33873046875, + "step": 481000 + }, + { + "epoch": 64.14666666666666, + "grad_norm": 0.8780699968338013, + "learning_rate": 1.7941466666666668e-05, + "loss": 1.3358087158203125, + "step": 481100 + }, + { + "epoch": 64.16, + "grad_norm": 0.8357890844345093, + "learning_rate": 1.7934800000000003e-05, + "loss": 1.3425820922851563, + "step": 481200 + }, + { + "epoch": 64.17333333333333, + "grad_norm": 0.8988547921180725, + "learning_rate": 1.7928133333333332e-05, + "loss": 1.3423739624023439, + "step": 481300 + }, + { + "epoch": 64.18666666666667, + "grad_norm": 0.8725674152374268, + "learning_rate": 1.7921466666666668e-05, + "loss": 1.3443193054199218, + "step": 481400 + }, + { + "epoch": 64.2, + "grad_norm": 0.9312418103218079, + "learning_rate": 1.79148e-05, + "loss": 1.340561065673828, + "step": 481500 + }, + { + "epoch": 64.21333333333334, + "grad_norm": 0.9096835255622864, + "learning_rate": 1.7908133333333336e-05, + "loss": 1.3408326721191406, + "step": 481600 + }, + { + "epoch": 64.22666666666667, + "grad_norm": 0.869185745716095, + "learning_rate": 1.7901466666666668e-05, + "loss": 1.3416743469238281, + "step": 481700 + }, + { + "epoch": 64.24, + "grad_norm": 0.8828217387199402, + "learning_rate": 1.78948e-05, + "loss": 1.34640625, + "step": 481800 + }, + { + "epoch": 64.25333333333333, + "grad_norm": 0.8781388401985168, + "learning_rate": 1.7888133333333336e-05, + "loss": 1.3463336181640626, + "step": 481900 + }, + { + "epoch": 64.26666666666667, + "grad_norm": 0.8844797611236572, + "learning_rate": 1.7881466666666668e-05, + "loss": 1.3434307861328125, + "step": 482000 + }, + { + "epoch": 64.28, + "grad_norm": 0.9093835949897766, + "learning_rate": 1.7874866666666667e-05, + "loss": 1.3477468872070313, + "step": 482100 + }, + { + "epoch": 64.29333333333334, + "grad_norm": 0.9038063287734985, + "learning_rate": 1.7868200000000003e-05, + "loss": 1.3481039428710937, + "step": 482200 + }, + { + "epoch": 64.30666666666667, + "grad_norm": 0.8139824867248535, + "learning_rate": 1.7861533333333332e-05, + "loss": 1.34718505859375, + "step": 482300 + }, + { + "epoch": 64.32, + "grad_norm": 0.8709118366241455, + "learning_rate": 1.7854866666666667e-05, + "loss": 1.3521086120605468, + "step": 482400 + }, + { + "epoch": 64.33333333333333, + "grad_norm": 0.8406969904899597, + "learning_rate": 1.78482e-05, + "loss": 1.3482559204101563, + "step": 482500 + }, + { + "epoch": 64.34666666666666, + "grad_norm": 0.8496643304824829, + "learning_rate": 1.7841533333333335e-05, + "loss": 1.3503038024902343, + "step": 482600 + }, + { + "epoch": 64.36, + "grad_norm": 0.8447983264923096, + "learning_rate": 1.7834866666666668e-05, + "loss": 1.3484323120117188, + "step": 482700 + }, + { + "epoch": 64.37333333333333, + "grad_norm": 0.9065347909927368, + "learning_rate": 1.78282e-05, + "loss": 1.350572052001953, + "step": 482800 + }, + { + "epoch": 64.38666666666667, + "grad_norm": 0.8340687155723572, + "learning_rate": 1.7821533333333335e-05, + "loss": 1.3543763732910157, + "step": 482900 + }, + { + "epoch": 64.4, + "grad_norm": 0.8966395854949951, + "learning_rate": 1.7814866666666668e-05, + "loss": 1.3548075866699218, + "step": 483000 + }, + { + "epoch": 64.41333333333333, + "grad_norm": 0.8993328809738159, + "learning_rate": 1.78082e-05, + "loss": 1.354648895263672, + "step": 483100 + }, + { + "epoch": 64.42666666666666, + "grad_norm": 0.9374759793281555, + "learning_rate": 1.7801533333333332e-05, + "loss": 1.361200714111328, + "step": 483200 + }, + { + "epoch": 64.44, + "grad_norm": 0.8411123752593994, + "learning_rate": 1.7794866666666668e-05, + "loss": 1.3539253234863282, + "step": 483300 + }, + { + "epoch": 64.45333333333333, + "grad_norm": 0.8600159287452698, + "learning_rate": 1.7788200000000004e-05, + "loss": 1.3555935668945311, + "step": 483400 + }, + { + "epoch": 64.46666666666667, + "grad_norm": 0.8644974827766418, + "learning_rate": 1.7781533333333332e-05, + "loss": 1.3521513366699218, + "step": 483500 + }, + { + "epoch": 64.48, + "grad_norm": 0.8847560882568359, + "learning_rate": 1.7774866666666668e-05, + "loss": 1.3578965759277344, + "step": 483600 + }, + { + "epoch": 64.49333333333334, + "grad_norm": 0.9277763366699219, + "learning_rate": 1.77682e-05, + "loss": 1.3535302734375, + "step": 483700 + }, + { + "epoch": 64.50666666666666, + "grad_norm": 0.8610851168632507, + "learning_rate": 1.7761533333333333e-05, + "loss": 1.3627682495117188, + "step": 483800 + }, + { + "epoch": 64.52, + "grad_norm": 0.9150212407112122, + "learning_rate": 1.775486666666667e-05, + "loss": 1.3568341064453124, + "step": 483900 + }, + { + "epoch": 64.53333333333333, + "grad_norm": 0.8788309097290039, + "learning_rate": 1.77482e-05, + "loss": 1.35930908203125, + "step": 484000 + }, + { + "epoch": 64.54666666666667, + "grad_norm": 0.877782940864563, + "learning_rate": 1.77416e-05, + "loss": 1.3600112915039062, + "step": 484100 + }, + { + "epoch": 64.56, + "grad_norm": 0.8888121843338013, + "learning_rate": 1.7734933333333335e-05, + "loss": 1.3572149658203125, + "step": 484200 + }, + { + "epoch": 64.57333333333334, + "grad_norm": 0.884781539440155, + "learning_rate": 1.7728266666666668e-05, + "loss": 1.358846435546875, + "step": 484300 + }, + { + "epoch": 64.58666666666667, + "grad_norm": 0.8472477793693542, + "learning_rate": 1.7721600000000003e-05, + "loss": 1.3618157958984376, + "step": 484400 + }, + { + "epoch": 64.6, + "grad_norm": 0.8843161463737488, + "learning_rate": 1.7714933333333332e-05, + "loss": 1.3596778869628907, + "step": 484500 + }, + { + "epoch": 64.61333333333333, + "grad_norm": 0.8994573950767517, + "learning_rate": 1.7708266666666668e-05, + "loss": 1.3632307434082032, + "step": 484600 + }, + { + "epoch": 64.62666666666667, + "grad_norm": 0.8576304316520691, + "learning_rate": 1.77016e-05, + "loss": 1.363969268798828, + "step": 484700 + }, + { + "epoch": 64.64, + "grad_norm": 0.9063739776611328, + "learning_rate": 1.7694933333333332e-05, + "loss": 1.3635774230957032, + "step": 484800 + }, + { + "epoch": 64.65333333333334, + "grad_norm": 0.9036448001861572, + "learning_rate": 1.7688266666666668e-05, + "loss": 1.3654200744628906, + "step": 484900 + }, + { + "epoch": 64.66666666666667, + "grad_norm": 0.8992440104484558, + "learning_rate": 1.76816e-05, + "loss": 1.363550262451172, + "step": 485000 + }, + { + "epoch": 64.68, + "grad_norm": 0.9224612712860107, + "learning_rate": 1.7674933333333336e-05, + "loss": 1.363682403564453, + "step": 485100 + }, + { + "epoch": 64.69333333333333, + "grad_norm": 0.9652465581893921, + "learning_rate": 1.7668266666666665e-05, + "loss": 1.361661376953125, + "step": 485200 + }, + { + "epoch": 64.70666666666666, + "grad_norm": 0.9061663150787354, + "learning_rate": 1.76616e-05, + "loss": 1.3631404113769532, + "step": 485300 + }, + { + "epoch": 64.72, + "grad_norm": 0.8742295503616333, + "learning_rate": 1.7654933333333336e-05, + "loss": 1.365829620361328, + "step": 485400 + }, + { + "epoch": 64.73333333333333, + "grad_norm": 0.8189981579780579, + "learning_rate": 1.764826666666667e-05, + "loss": 1.3672276306152344, + "step": 485500 + }, + { + "epoch": 64.74666666666667, + "grad_norm": 0.9038211107254028, + "learning_rate": 1.76416e-05, + "loss": 1.367249755859375, + "step": 485600 + }, + { + "epoch": 64.76, + "grad_norm": 0.9079329967498779, + "learning_rate": 1.7634933333333333e-05, + "loss": 1.3658090209960938, + "step": 485700 + }, + { + "epoch": 64.77333333333333, + "grad_norm": 0.8886961340904236, + "learning_rate": 1.762826666666667e-05, + "loss": 1.3678729248046875, + "step": 485800 + }, + { + "epoch": 64.78666666666666, + "grad_norm": 0.8585326671600342, + "learning_rate": 1.76216e-05, + "loss": 1.3665878295898437, + "step": 485900 + }, + { + "epoch": 64.8, + "grad_norm": 0.8595222234725952, + "learning_rate": 1.7614933333333333e-05, + "loss": 1.370436553955078, + "step": 486000 + }, + { + "epoch": 64.81333333333333, + "grad_norm": 0.8745478987693787, + "learning_rate": 1.7608333333333336e-05, + "loss": 1.366385955810547, + "step": 486100 + }, + { + "epoch": 64.82666666666667, + "grad_norm": 0.8671027421951294, + "learning_rate": 1.7601666666666668e-05, + "loss": 1.3709756469726562, + "step": 486200 + }, + { + "epoch": 64.84, + "grad_norm": 0.8887233734130859, + "learning_rate": 1.7595e-05, + "loss": 1.3694778442382813, + "step": 486300 + }, + { + "epoch": 64.85333333333334, + "grad_norm": 0.8951408863067627, + "learning_rate": 1.7588333333333336e-05, + "loss": 1.3722352600097656, + "step": 486400 + }, + { + "epoch": 64.86666666666666, + "grad_norm": 0.9203891158103943, + "learning_rate": 1.7581666666666668e-05, + "loss": 1.3695021057128907, + "step": 486500 + }, + { + "epoch": 64.88, + "grad_norm": 0.8783578872680664, + "learning_rate": 1.7575e-05, + "loss": 1.3721949768066406, + "step": 486600 + }, + { + "epoch": 64.89333333333333, + "grad_norm": 0.8755213618278503, + "learning_rate": 1.7568333333333333e-05, + "loss": 1.3693832397460937, + "step": 486700 + }, + { + "epoch": 64.90666666666667, + "grad_norm": 0.8497536182403564, + "learning_rate": 1.7561666666666668e-05, + "loss": 1.3738072204589844, + "step": 486800 + }, + { + "epoch": 64.92, + "grad_norm": 0.8674045205116272, + "learning_rate": 1.7555e-05, + "loss": 1.3736123657226562, + "step": 486900 + }, + { + "epoch": 64.93333333333334, + "grad_norm": 0.924431562423706, + "learning_rate": 1.7548333333333333e-05, + "loss": 1.3719955444335938, + "step": 487000 + }, + { + "epoch": 64.94666666666667, + "grad_norm": 0.9057454466819763, + "learning_rate": 1.754166666666667e-05, + "loss": 1.3727705383300781, + "step": 487100 + }, + { + "epoch": 64.96, + "grad_norm": 0.8692907691001892, + "learning_rate": 1.7535e-05, + "loss": 1.3746487426757812, + "step": 487200 + }, + { + "epoch": 64.97333333333333, + "grad_norm": 0.9203537106513977, + "learning_rate": 1.7528333333333336e-05, + "loss": 1.37078369140625, + "step": 487300 + }, + { + "epoch": 64.98666666666666, + "grad_norm": 0.929847240447998, + "learning_rate": 1.7521666666666665e-05, + "loss": 1.3816091918945312, + "step": 487400 + }, + { + "epoch": 65.0, + "grad_norm": 0.9408981800079346, + "learning_rate": 1.7515e-05, + "loss": 1.3738502502441405, + "step": 487500 + }, + { + "epoch": 65.01333333333334, + "grad_norm": 0.8666677474975586, + "learning_rate": 1.7508333333333337e-05, + "loss": 1.3275274658203124, + "step": 487600 + }, + { + "epoch": 65.02666666666667, + "grad_norm": 0.883374035358429, + "learning_rate": 1.7501666666666665e-05, + "loss": 1.322354278564453, + "step": 487700 + }, + { + "epoch": 65.04, + "grad_norm": 0.9123470187187195, + "learning_rate": 1.7495e-05, + "loss": 1.3236787414550781, + "step": 487800 + }, + { + "epoch": 65.05333333333333, + "grad_norm": 0.8003033399581909, + "learning_rate": 1.7488333333333333e-05, + "loss": 1.3260044860839844, + "step": 487900 + }, + { + "epoch": 65.06666666666666, + "grad_norm": 0.8853775858879089, + "learning_rate": 1.748166666666667e-05, + "loss": 1.3234710693359375, + "step": 488000 + }, + { + "epoch": 65.08, + "grad_norm": 0.8827279806137085, + "learning_rate": 1.7475e-05, + "loss": 1.3306411743164062, + "step": 488100 + }, + { + "epoch": 65.09333333333333, + "grad_norm": 0.8656889200210571, + "learning_rate": 1.74684e-05, + "loss": 1.3258221435546875, + "step": 488200 + }, + { + "epoch": 65.10666666666667, + "grad_norm": 0.8413640856742859, + "learning_rate": 1.7461733333333336e-05, + "loss": 1.3284645080566406, + "step": 488300 + }, + { + "epoch": 65.12, + "grad_norm": 0.8911667466163635, + "learning_rate": 1.7455066666666668e-05, + "loss": 1.3333392333984375, + "step": 488400 + }, + { + "epoch": 65.13333333333334, + "grad_norm": 0.9145627021789551, + "learning_rate": 1.74484e-05, + "loss": 1.3321968078613282, + "step": 488500 + }, + { + "epoch": 65.14666666666666, + "grad_norm": 0.8469613194465637, + "learning_rate": 1.7441733333333336e-05, + "loss": 1.3286016845703126, + "step": 488600 + }, + { + "epoch": 65.16, + "grad_norm": 0.8619856238365173, + "learning_rate": 1.7435066666666665e-05, + "loss": 1.333924560546875, + "step": 488700 + }, + { + "epoch": 65.17333333333333, + "grad_norm": 0.9197624921798706, + "learning_rate": 1.74284e-05, + "loss": 1.3354296875, + "step": 488800 + }, + { + "epoch": 65.18666666666667, + "grad_norm": 0.8337293863296509, + "learning_rate": 1.7421733333333333e-05, + "loss": 1.3360716247558593, + "step": 488900 + }, + { + "epoch": 65.2, + "grad_norm": 0.8918238878250122, + "learning_rate": 1.741506666666667e-05, + "loss": 1.3376748657226563, + "step": 489000 + }, + { + "epoch": 65.21333333333334, + "grad_norm": 0.8520711660385132, + "learning_rate": 1.74084e-05, + "loss": 1.3359193420410156, + "step": 489100 + }, + { + "epoch": 65.22666666666667, + "grad_norm": 0.8971502184867859, + "learning_rate": 1.7401733333333333e-05, + "loss": 1.337491455078125, + "step": 489200 + }, + { + "epoch": 65.24, + "grad_norm": 0.9194210767745972, + "learning_rate": 1.739506666666667e-05, + "loss": 1.3362680053710938, + "step": 489300 + }, + { + "epoch": 65.25333333333333, + "grad_norm": 0.8638772964477539, + "learning_rate": 1.73884e-05, + "loss": 1.3411000061035157, + "step": 489400 + }, + { + "epoch": 65.26666666666667, + "grad_norm": 0.8430476188659668, + "learning_rate": 1.7381733333333333e-05, + "loss": 1.3354183959960937, + "step": 489500 + }, + { + "epoch": 65.28, + "grad_norm": 0.8449836373329163, + "learning_rate": 1.7375066666666666e-05, + "loss": 1.3406202697753906, + "step": 489600 + }, + { + "epoch": 65.29333333333334, + "grad_norm": 0.914038360118866, + "learning_rate": 1.73684e-05, + "loss": 1.3422569274902343, + "step": 489700 + }, + { + "epoch": 65.30666666666667, + "grad_norm": 0.8925040364265442, + "learning_rate": 1.7361733333333337e-05, + "loss": 1.3404884338378906, + "step": 489800 + }, + { + "epoch": 65.32, + "grad_norm": 0.9155729413032532, + "learning_rate": 1.7355066666666666e-05, + "loss": 1.3383328247070312, + "step": 489900 + }, + { + "epoch": 65.33333333333333, + "grad_norm": 0.8363727331161499, + "learning_rate": 1.73484e-05, + "loss": 1.3454109191894532, + "step": 490000 + }, + { + "epoch": 65.34666666666666, + "grad_norm": 0.8507674932479858, + "learning_rate": 1.7341733333333334e-05, + "loss": 1.3441416931152343, + "step": 490100 + }, + { + "epoch": 65.36, + "grad_norm": 0.8748927116394043, + "learning_rate": 1.7335133333333333e-05, + "loss": 1.3435476684570313, + "step": 490200 + }, + { + "epoch": 65.37333333333333, + "grad_norm": 0.8672348856925964, + "learning_rate": 1.732846666666667e-05, + "loss": 1.3459814453125, + "step": 490300 + }, + { + "epoch": 65.38666666666667, + "grad_norm": 0.88212651014328, + "learning_rate": 1.73218e-05, + "loss": 1.3407472229003907, + "step": 490400 + }, + { + "epoch": 65.4, + "grad_norm": 0.8583021759986877, + "learning_rate": 1.7315133333333333e-05, + "loss": 1.3463021850585937, + "step": 490500 + }, + { + "epoch": 65.41333333333333, + "grad_norm": 0.9152435660362244, + "learning_rate": 1.730846666666667e-05, + "loss": 1.3485971069335938, + "step": 490600 + }, + { + "epoch": 65.42666666666666, + "grad_norm": 0.8737739324569702, + "learning_rate": 1.73018e-05, + "loss": 1.3460276794433594, + "step": 490700 + }, + { + "epoch": 65.44, + "grad_norm": 0.9325355887413025, + "learning_rate": 1.7295133333333337e-05, + "loss": 1.3474514770507813, + "step": 490800 + }, + { + "epoch": 65.45333333333333, + "grad_norm": 0.890143632888794, + "learning_rate": 1.7288466666666665e-05, + "loss": 1.351007537841797, + "step": 490900 + }, + { + "epoch": 65.46666666666667, + "grad_norm": 0.8700892925262451, + "learning_rate": 1.72818e-05, + "loss": 1.350022735595703, + "step": 491000 + }, + { + "epoch": 65.48, + "grad_norm": 0.8921332955360413, + "learning_rate": 1.7275133333333333e-05, + "loss": 1.3486946105957032, + "step": 491100 + }, + { + "epoch": 65.49333333333334, + "grad_norm": 0.8532953262329102, + "learning_rate": 1.7268466666666666e-05, + "loss": 1.3525364685058594, + "step": 491200 + }, + { + "epoch": 65.50666666666666, + "grad_norm": 0.8729583024978638, + "learning_rate": 1.72618e-05, + "loss": 1.3483073425292968, + "step": 491300 + }, + { + "epoch": 65.52, + "grad_norm": 0.8708832263946533, + "learning_rate": 1.7255133333333334e-05, + "loss": 1.3524284362792969, + "step": 491400 + }, + { + "epoch": 65.53333333333333, + "grad_norm": 0.8295683860778809, + "learning_rate": 1.724846666666667e-05, + "loss": 1.3510769653320311, + "step": 491500 + }, + { + "epoch": 65.54666666666667, + "grad_norm": 0.8452852964401245, + "learning_rate": 1.7241799999999998e-05, + "loss": 1.3477371215820313, + "step": 491600 + }, + { + "epoch": 65.56, + "grad_norm": 0.8989164233207703, + "learning_rate": 1.7235133333333334e-05, + "loss": 1.3510366821289062, + "step": 491700 + }, + { + "epoch": 65.57333333333334, + "grad_norm": 0.9267915487289429, + "learning_rate": 1.722846666666667e-05, + "loss": 1.3512055969238281, + "step": 491800 + }, + { + "epoch": 65.58666666666667, + "grad_norm": 0.8938575387001038, + "learning_rate": 1.7221800000000002e-05, + "loss": 1.3483731079101562, + "step": 491900 + }, + { + "epoch": 65.6, + "grad_norm": 0.8966379761695862, + "learning_rate": 1.7215133333333334e-05, + "loss": 1.3562388610839844, + "step": 492000 + }, + { + "epoch": 65.61333333333333, + "grad_norm": 0.9655941724777222, + "learning_rate": 1.7208466666666666e-05, + "loss": 1.3572232055664062, + "step": 492100 + }, + { + "epoch": 65.62666666666667, + "grad_norm": 0.8997311592102051, + "learning_rate": 1.7201866666666665e-05, + "loss": 1.3530233764648438, + "step": 492200 + }, + { + "epoch": 65.64, + "grad_norm": 0.9643396735191345, + "learning_rate": 1.71952e-05, + "loss": 1.3538816833496095, + "step": 492300 + }, + { + "epoch": 65.65333333333334, + "grad_norm": 0.8839356899261475, + "learning_rate": 1.7188533333333333e-05, + "loss": 1.353894500732422, + "step": 492400 + }, + { + "epoch": 65.66666666666667, + "grad_norm": 0.8668888807296753, + "learning_rate": 1.718186666666667e-05, + "loss": 1.3576565551757813, + "step": 492500 + }, + { + "epoch": 65.68, + "grad_norm": 0.9418817758560181, + "learning_rate": 1.71752e-05, + "loss": 1.3552629089355468, + "step": 492600 + }, + { + "epoch": 65.69333333333333, + "grad_norm": 0.8563518524169922, + "learning_rate": 1.7168533333333333e-05, + "loss": 1.3564772033691406, + "step": 492700 + }, + { + "epoch": 65.70666666666666, + "grad_norm": 0.8663268685340881, + "learning_rate": 1.716186666666667e-05, + "loss": 1.3568724060058595, + "step": 492800 + }, + { + "epoch": 65.72, + "grad_norm": 0.9083966612815857, + "learning_rate": 1.71552e-05, + "loss": 1.3571450805664063, + "step": 492900 + }, + { + "epoch": 65.73333333333333, + "grad_norm": 0.8793100118637085, + "learning_rate": 1.7148533333333334e-05, + "loss": 1.358192901611328, + "step": 493000 + }, + { + "epoch": 65.74666666666667, + "grad_norm": 0.8852581977844238, + "learning_rate": 1.7141866666666666e-05, + "loss": 1.3583030700683594, + "step": 493100 + }, + { + "epoch": 65.76, + "grad_norm": 0.8649989366531372, + "learning_rate": 1.71352e-05, + "loss": 1.3607272338867187, + "step": 493200 + }, + { + "epoch": 65.77333333333333, + "grad_norm": 0.9444963335990906, + "learning_rate": 1.7128533333333334e-05, + "loss": 1.3594973754882813, + "step": 493300 + }, + { + "epoch": 65.78666666666666, + "grad_norm": 0.8799870610237122, + "learning_rate": 1.7121866666666666e-05, + "loss": 1.3647491455078125, + "step": 493400 + }, + { + "epoch": 65.8, + "grad_norm": 0.8851443529129028, + "learning_rate": 1.7115200000000002e-05, + "loss": 1.3620616149902345, + "step": 493500 + }, + { + "epoch": 65.81333333333333, + "grad_norm": 0.8632842898368835, + "learning_rate": 1.7108533333333334e-05, + "loss": 1.3599568176269532, + "step": 493600 + }, + { + "epoch": 65.82666666666667, + "grad_norm": 0.889917254447937, + "learning_rate": 1.710186666666667e-05, + "loss": 1.3595269775390626, + "step": 493700 + }, + { + "epoch": 65.84, + "grad_norm": 0.8989757895469666, + "learning_rate": 1.70952e-05, + "loss": 1.3624153137207031, + "step": 493800 + }, + { + "epoch": 65.85333333333334, + "grad_norm": 0.9110841751098633, + "learning_rate": 1.7088533333333334e-05, + "loss": 1.3641012573242188, + "step": 493900 + }, + { + "epoch": 65.86666666666666, + "grad_norm": 0.8911044597625732, + "learning_rate": 1.708186666666667e-05, + "loss": 1.3604220581054687, + "step": 494000 + }, + { + "epoch": 65.88, + "grad_norm": 0.8616090416908264, + "learning_rate": 1.70752e-05, + "loss": 1.3651438903808595, + "step": 494100 + }, + { + "epoch": 65.89333333333333, + "grad_norm": 0.9104633331298828, + "learning_rate": 1.70686e-05, + "loss": 1.3625418090820312, + "step": 494200 + }, + { + "epoch": 65.90666666666667, + "grad_norm": 0.8897743821144104, + "learning_rate": 1.7061933333333337e-05, + "loss": 1.3588157653808595, + "step": 494300 + }, + { + "epoch": 65.92, + "grad_norm": 0.9464109539985657, + "learning_rate": 1.7055266666666666e-05, + "loss": 1.3652839660644531, + "step": 494400 + }, + { + "epoch": 65.93333333333334, + "grad_norm": 0.8611365556716919, + "learning_rate": 1.70486e-05, + "loss": 1.3610792541503907, + "step": 494500 + }, + { + "epoch": 65.94666666666667, + "grad_norm": 0.9123305082321167, + "learning_rate": 1.7041933333333334e-05, + "loss": 1.3650492858886718, + "step": 494600 + }, + { + "epoch": 65.96, + "grad_norm": 0.8548987507820129, + "learning_rate": 1.703526666666667e-05, + "loss": 1.3598005676269531, + "step": 494700 + }, + { + "epoch": 65.97333333333333, + "grad_norm": 0.9494167566299438, + "learning_rate": 1.70286e-05, + "loss": 1.3669606018066407, + "step": 494800 + }, + { + "epoch": 65.98666666666666, + "grad_norm": 0.9031914472579956, + "learning_rate": 1.7021933333333334e-05, + "loss": 1.3666676330566405, + "step": 494900 + }, + { + "epoch": 66.0, + "grad_norm": 0.9000195264816284, + "learning_rate": 1.701526666666667e-05, + "loss": 1.3696188354492187, + "step": 495000 + }, + { + "epoch": 66.01333333333334, + "grad_norm": 0.8464391231536865, + "learning_rate": 1.70086e-05, + "loss": 1.3161962890625, + "step": 495100 + }, + { + "epoch": 66.02666666666667, + "grad_norm": 0.8270666599273682, + "learning_rate": 1.7001933333333334e-05, + "loss": 1.319871368408203, + "step": 495200 + }, + { + "epoch": 66.04, + "grad_norm": 0.852210283279419, + "learning_rate": 1.6995266666666666e-05, + "loss": 1.3218473815917968, + "step": 495300 + }, + { + "epoch": 66.05333333333333, + "grad_norm": 0.879362165927887, + "learning_rate": 1.6988600000000002e-05, + "loss": 1.318983612060547, + "step": 495400 + }, + { + "epoch": 66.06666666666666, + "grad_norm": 0.8811297416687012, + "learning_rate": 1.6981933333333334e-05, + "loss": 1.320828399658203, + "step": 495500 + }, + { + "epoch": 66.08, + "grad_norm": 0.8936617970466614, + "learning_rate": 1.6975266666666667e-05, + "loss": 1.319468994140625, + "step": 495600 + }, + { + "epoch": 66.09333333333333, + "grad_norm": 0.8245587944984436, + "learning_rate": 1.6968600000000002e-05, + "loss": 1.3200828552246093, + "step": 495700 + }, + { + "epoch": 66.10666666666667, + "grad_norm": 0.9125563502311707, + "learning_rate": 1.6961933333333334e-05, + "loss": 1.3209025573730468, + "step": 495800 + }, + { + "epoch": 66.12, + "grad_norm": 0.8604671955108643, + "learning_rate": 1.6955266666666667e-05, + "loss": 1.3225840759277343, + "step": 495900 + }, + { + "epoch": 66.13333333333334, + "grad_norm": 0.8596413135528564, + "learning_rate": 1.69486e-05, + "loss": 1.3214039611816406, + "step": 496000 + }, + { + "epoch": 66.14666666666666, + "grad_norm": 0.8338813185691833, + "learning_rate": 1.6941933333333335e-05, + "loss": 1.3240989685058593, + "step": 496100 + }, + { + "epoch": 66.16, + "grad_norm": 0.8821403980255127, + "learning_rate": 1.6935333333333334e-05, + "loss": 1.3248197937011719, + "step": 496200 + }, + { + "epoch": 66.17333333333333, + "grad_norm": 0.9026249051094055, + "learning_rate": 1.692866666666667e-05, + "loss": 1.3284371948242188, + "step": 496300 + }, + { + "epoch": 66.18666666666667, + "grad_norm": 0.8741923570632935, + "learning_rate": 1.6922e-05, + "loss": 1.3267121887207032, + "step": 496400 + }, + { + "epoch": 66.2, + "grad_norm": 0.8702110052108765, + "learning_rate": 1.6915333333333334e-05, + "loss": 1.326593475341797, + "step": 496500 + }, + { + "epoch": 66.21333333333334, + "grad_norm": 0.8829630613327026, + "learning_rate": 1.6908666666666666e-05, + "loss": 1.3249797058105468, + "step": 496600 + }, + { + "epoch": 66.22666666666667, + "grad_norm": 0.8170766830444336, + "learning_rate": 1.6902000000000002e-05, + "loss": 1.3290678405761718, + "step": 496700 + }, + { + "epoch": 66.24, + "grad_norm": 0.8386065363883972, + "learning_rate": 1.6895333333333334e-05, + "loss": 1.3280769348144532, + "step": 496800 + }, + { + "epoch": 66.25333333333333, + "grad_norm": 0.9074498414993286, + "learning_rate": 1.6888666666666666e-05, + "loss": 1.3333543395996095, + "step": 496900 + }, + { + "epoch": 66.26666666666667, + "grad_norm": 0.8878492116928101, + "learning_rate": 1.6882000000000002e-05, + "loss": 1.3320777893066407, + "step": 497000 + }, + { + "epoch": 66.28, + "grad_norm": 0.9520934820175171, + "learning_rate": 1.6875333333333334e-05, + "loss": 1.332491455078125, + "step": 497100 + }, + { + "epoch": 66.29333333333334, + "grad_norm": 0.8975771069526672, + "learning_rate": 1.686866666666667e-05, + "loss": 1.3285887145996094, + "step": 497200 + }, + { + "epoch": 66.30666666666667, + "grad_norm": 0.9283040165901184, + "learning_rate": 1.6862e-05, + "loss": 1.3328883361816406, + "step": 497300 + }, + { + "epoch": 66.32, + "grad_norm": 0.8596479892730713, + "learning_rate": 1.6855333333333334e-05, + "loss": 1.337887725830078, + "step": 497400 + }, + { + "epoch": 66.33333333333333, + "grad_norm": 0.8887840509414673, + "learning_rate": 1.6848666666666667e-05, + "loss": 1.3309591674804688, + "step": 497500 + }, + { + "epoch": 66.34666666666666, + "grad_norm": 0.8658081889152527, + "learning_rate": 1.6842e-05, + "loss": 1.3348977661132813, + "step": 497600 + }, + { + "epoch": 66.36, + "grad_norm": 0.8536320924758911, + "learning_rate": 1.6835333333333335e-05, + "loss": 1.3311074829101563, + "step": 497700 + }, + { + "epoch": 66.37333333333333, + "grad_norm": 0.8975630402565002, + "learning_rate": 1.6828666666666667e-05, + "loss": 1.3381869506835937, + "step": 497800 + }, + { + "epoch": 66.38666666666667, + "grad_norm": 0.9293047189712524, + "learning_rate": 1.6822000000000003e-05, + "loss": 1.338460693359375, + "step": 497900 + }, + { + "epoch": 66.4, + "grad_norm": 0.8931173086166382, + "learning_rate": 1.681533333333333e-05, + "loss": 1.3359477233886718, + "step": 498000 + }, + { + "epoch": 66.41333333333333, + "grad_norm": 0.9041270613670349, + "learning_rate": 1.6808666666666667e-05, + "loss": 1.3406436157226562, + "step": 498100 + }, + { + "epoch": 66.42666666666666, + "grad_norm": 0.8692404627799988, + "learning_rate": 1.680206666666667e-05, + "loss": 1.3393113708496094, + "step": 498200 + }, + { + "epoch": 66.44, + "grad_norm": 0.8984732627868652, + "learning_rate": 1.67954e-05, + "loss": 1.3371609497070311, + "step": 498300 + }, + { + "epoch": 66.45333333333333, + "grad_norm": 0.8967075347900391, + "learning_rate": 1.6788733333333334e-05, + "loss": 1.3435694885253906, + "step": 498400 + }, + { + "epoch": 66.46666666666667, + "grad_norm": 0.8753262162208557, + "learning_rate": 1.678206666666667e-05, + "loss": 1.3449749755859375, + "step": 498500 + }, + { + "epoch": 66.48, + "grad_norm": 0.907174825668335, + "learning_rate": 1.67754e-05, + "loss": 1.3397930908203124, + "step": 498600 + }, + { + "epoch": 66.49333333333334, + "grad_norm": 0.8881757855415344, + "learning_rate": 1.6768733333333334e-05, + "loss": 1.3411907958984375, + "step": 498700 + }, + { + "epoch": 66.50666666666666, + "grad_norm": 0.880740761756897, + "learning_rate": 1.6762066666666667e-05, + "loss": 1.3427651977539063, + "step": 498800 + }, + { + "epoch": 66.52, + "grad_norm": 0.8613744378089905, + "learning_rate": 1.6755400000000002e-05, + "loss": 1.34215576171875, + "step": 498900 + }, + { + "epoch": 66.53333333333333, + "grad_norm": 0.8675311803817749, + "learning_rate": 1.6748733333333335e-05, + "loss": 1.3419883728027344, + "step": 499000 + }, + { + "epoch": 66.54666666666667, + "grad_norm": 0.8745658993721008, + "learning_rate": 1.6742066666666667e-05, + "loss": 1.3410050964355469, + "step": 499100 + }, + { + "epoch": 66.56, + "grad_norm": 0.903735876083374, + "learning_rate": 1.6735400000000002e-05, + "loss": 1.3437112426757813, + "step": 499200 + }, + { + "epoch": 66.57333333333334, + "grad_norm": 0.9387283325195312, + "learning_rate": 1.6728733333333335e-05, + "loss": 1.3478224182128906, + "step": 499300 + }, + { + "epoch": 66.58666666666667, + "grad_norm": 0.8882374167442322, + "learning_rate": 1.6722066666666667e-05, + "loss": 1.3502310180664063, + "step": 499400 + }, + { + "epoch": 66.6, + "grad_norm": 0.8444065451622009, + "learning_rate": 1.67154e-05, + "loss": 1.3418290710449219, + "step": 499500 + }, + { + "epoch": 66.61333333333333, + "grad_norm": 0.8583235740661621, + "learning_rate": 1.6708733333333335e-05, + "loss": 1.346663818359375, + "step": 499600 + }, + { + "epoch": 66.62666666666667, + "grad_norm": 0.861813485622406, + "learning_rate": 1.6702066666666667e-05, + "loss": 1.3438009643554687, + "step": 499700 + }, + { + "epoch": 66.64, + "grad_norm": 0.9351439476013184, + "learning_rate": 1.66954e-05, + "loss": 1.3432070922851562, + "step": 499800 + }, + { + "epoch": 66.65333333333334, + "grad_norm": 0.8280015587806702, + "learning_rate": 1.6688733333333335e-05, + "loss": 1.3487863159179687, + "step": 499900 + }, + { + "epoch": 66.66666666666667, + "grad_norm": 0.9261816143989563, + "learning_rate": 1.6682066666666667e-05, + "loss": 1.348236083984375, + "step": 500000 + }, + { + "epoch": 66.68, + "grad_norm": 0.8890721201896667, + "learning_rate": 1.6675400000000003e-05, + "loss": 1.3480813598632813, + "step": 500100 + }, + { + "epoch": 66.69333333333333, + "grad_norm": 0.881643533706665, + "learning_rate": 1.6668800000000002e-05, + "loss": 1.3505299377441407, + "step": 500200 + }, + { + "epoch": 66.70666666666666, + "grad_norm": 0.8827385306358337, + "learning_rate": 1.6662133333333334e-05, + "loss": 1.3477456665039063, + "step": 500300 + }, + { + "epoch": 66.72, + "grad_norm": 0.9698315262794495, + "learning_rate": 1.6655466666666667e-05, + "loss": 1.3486949157714845, + "step": 500400 + }, + { + "epoch": 66.73333333333333, + "grad_norm": 0.864273726940155, + "learning_rate": 1.66488e-05, + "loss": 1.3506986999511719, + "step": 500500 + }, + { + "epoch": 66.74666666666667, + "grad_norm": 0.9118615388870239, + "learning_rate": 1.6642133333333335e-05, + "loss": 1.3483343505859375, + "step": 500600 + }, + { + "epoch": 66.76, + "grad_norm": 0.8899751901626587, + "learning_rate": 1.663546666666667e-05, + "loss": 1.3553768920898437, + "step": 500700 + }, + { + "epoch": 66.77333333333333, + "grad_norm": 0.9060136675834656, + "learning_rate": 1.66288e-05, + "loss": 1.345452117919922, + "step": 500800 + }, + { + "epoch": 66.78666666666666, + "grad_norm": 0.9999998211860657, + "learning_rate": 1.6622133333333335e-05, + "loss": 1.350277862548828, + "step": 500900 + }, + { + "epoch": 66.8, + "grad_norm": 0.8866046667098999, + "learning_rate": 1.6615466666666667e-05, + "loss": 1.3576226806640626, + "step": 501000 + }, + { + "epoch": 66.81333333333333, + "grad_norm": 0.9324911832809448, + "learning_rate": 1.6608800000000003e-05, + "loss": 1.350228271484375, + "step": 501100 + }, + { + "epoch": 66.82666666666667, + "grad_norm": 0.9233900904655457, + "learning_rate": 1.6602133333333335e-05, + "loss": 1.3524874877929687, + "step": 501200 + }, + { + "epoch": 66.84, + "grad_norm": 0.8950480818748474, + "learning_rate": 1.6595466666666667e-05, + "loss": 1.3505656433105468, + "step": 501300 + }, + { + "epoch": 66.85333333333334, + "grad_norm": 0.8450494408607483, + "learning_rate": 1.6588800000000003e-05, + "loss": 1.353629150390625, + "step": 501400 + }, + { + "epoch": 66.86666666666666, + "grad_norm": 0.8349661827087402, + "learning_rate": 1.6582133333333332e-05, + "loss": 1.3550460815429688, + "step": 501500 + }, + { + "epoch": 66.88, + "grad_norm": 0.8485316038131714, + "learning_rate": 1.6575466666666667e-05, + "loss": 1.35274658203125, + "step": 501600 + }, + { + "epoch": 66.89333333333333, + "grad_norm": 0.8575172424316406, + "learning_rate": 1.65688e-05, + "loss": 1.3558840942382813, + "step": 501700 + }, + { + "epoch": 66.90666666666667, + "grad_norm": 0.8949342370033264, + "learning_rate": 1.6562133333333335e-05, + "loss": 1.3565489196777343, + "step": 501800 + }, + { + "epoch": 66.92, + "grad_norm": 0.8905797600746155, + "learning_rate": 1.6555466666666668e-05, + "loss": 1.3542637634277344, + "step": 501900 + }, + { + "epoch": 66.93333333333334, + "grad_norm": 0.8685753345489502, + "learning_rate": 1.65488e-05, + "loss": 1.3555860900878907, + "step": 502000 + }, + { + "epoch": 66.94666666666667, + "grad_norm": 0.8902389407157898, + "learning_rate": 1.6542133333333336e-05, + "loss": 1.357294921875, + "step": 502100 + }, + { + "epoch": 66.96, + "grad_norm": 0.8817318677902222, + "learning_rate": 1.6535533333333335e-05, + "loss": 1.354560089111328, + "step": 502200 + }, + { + "epoch": 66.97333333333333, + "grad_norm": 0.8877972960472107, + "learning_rate": 1.6528866666666667e-05, + "loss": 1.3581826782226563, + "step": 502300 + }, + { + "epoch": 66.98666666666666, + "grad_norm": 0.9648900628089905, + "learning_rate": 1.6522200000000003e-05, + "loss": 1.3576654052734376, + "step": 502400 + }, + { + "epoch": 67.0, + "grad_norm": 0.8821939826011658, + "learning_rate": 1.651553333333333e-05, + "loss": 1.3601315307617188, + "step": 502500 + }, + { + "epoch": 67.01333333333334, + "grad_norm": 0.8473901748657227, + "learning_rate": 1.6508866666666667e-05, + "loss": 1.310140380859375, + "step": 502600 + }, + { + "epoch": 67.02666666666667, + "grad_norm": 0.8751438856124878, + "learning_rate": 1.65022e-05, + "loss": 1.3117538452148438, + "step": 502700 + }, + { + "epoch": 67.04, + "grad_norm": 0.8518862128257751, + "learning_rate": 1.6495533333333335e-05, + "loss": 1.3125653076171875, + "step": 502800 + }, + { + "epoch": 67.05333333333333, + "grad_norm": 0.8928504586219788, + "learning_rate": 1.6488866666666667e-05, + "loss": 1.3104530334472657, + "step": 502900 + }, + { + "epoch": 67.06666666666666, + "grad_norm": 0.8880503177642822, + "learning_rate": 1.64822e-05, + "loss": 1.3163229370117187, + "step": 503000 + }, + { + "epoch": 67.08, + "grad_norm": 0.9034183621406555, + "learning_rate": 1.6475533333333335e-05, + "loss": 1.3216062927246093, + "step": 503100 + }, + { + "epoch": 67.09333333333333, + "grad_norm": 0.8415785431861877, + "learning_rate": 1.6468866666666667e-05, + "loss": 1.3180642700195313, + "step": 503200 + }, + { + "epoch": 67.10666666666667, + "grad_norm": 0.8426023125648499, + "learning_rate": 1.64622e-05, + "loss": 1.3171853637695312, + "step": 503300 + }, + { + "epoch": 67.12, + "grad_norm": 0.9098384976387024, + "learning_rate": 1.6455533333333335e-05, + "loss": 1.3160491943359376, + "step": 503400 + }, + { + "epoch": 67.13333333333334, + "grad_norm": 0.910634458065033, + "learning_rate": 1.6448866666666668e-05, + "loss": 1.3179133605957032, + "step": 503500 + }, + { + "epoch": 67.14666666666666, + "grad_norm": 0.8796761631965637, + "learning_rate": 1.6442200000000003e-05, + "loss": 1.3178306579589845, + "step": 503600 + }, + { + "epoch": 67.16, + "grad_norm": 0.9137388467788696, + "learning_rate": 1.6435533333333332e-05, + "loss": 1.3195364379882812, + "step": 503700 + }, + { + "epoch": 67.17333333333333, + "grad_norm": 0.8771604895591736, + "learning_rate": 1.6428866666666668e-05, + "loss": 1.3253799438476563, + "step": 503800 + }, + { + "epoch": 67.18666666666667, + "grad_norm": 0.8796737194061279, + "learning_rate": 1.64222e-05, + "loss": 1.3219993591308594, + "step": 503900 + }, + { + "epoch": 67.2, + "grad_norm": 0.8637896180152893, + "learning_rate": 1.6415533333333332e-05, + "loss": 1.3234608459472657, + "step": 504000 + }, + { + "epoch": 67.21333333333334, + "grad_norm": 0.8395215272903442, + "learning_rate": 1.6408866666666668e-05, + "loss": 1.3233541870117187, + "step": 504100 + }, + { + "epoch": 67.22666666666667, + "grad_norm": 0.8876785039901733, + "learning_rate": 1.6402266666666667e-05, + "loss": 1.32363037109375, + "step": 504200 + }, + { + "epoch": 67.24, + "grad_norm": 0.8801200985908508, + "learning_rate": 1.63956e-05, + "loss": 1.328302764892578, + "step": 504300 + }, + { + "epoch": 67.25333333333333, + "grad_norm": 0.9056000709533691, + "learning_rate": 1.6388933333333335e-05, + "loss": 1.323112030029297, + "step": 504400 + }, + { + "epoch": 67.26666666666667, + "grad_norm": 0.9226976633071899, + "learning_rate": 1.6382266666666667e-05, + "loss": 1.328287353515625, + "step": 504500 + }, + { + "epoch": 67.28, + "grad_norm": 0.8553920984268188, + "learning_rate": 1.6375600000000003e-05, + "loss": 1.324569549560547, + "step": 504600 + }, + { + "epoch": 67.29333333333334, + "grad_norm": 0.8892163038253784, + "learning_rate": 1.6368933333333332e-05, + "loss": 1.3272508239746095, + "step": 504700 + }, + { + "epoch": 67.30666666666667, + "grad_norm": 0.828970193862915, + "learning_rate": 1.6362266666666667e-05, + "loss": 1.325264892578125, + "step": 504800 + }, + { + "epoch": 67.32, + "grad_norm": 0.8796325325965881, + "learning_rate": 1.6355600000000003e-05, + "loss": 1.3304495239257812, + "step": 504900 + }, + { + "epoch": 67.33333333333333, + "grad_norm": 0.8535403609275818, + "learning_rate": 1.6348933333333332e-05, + "loss": 1.3281263732910156, + "step": 505000 + }, + { + "epoch": 67.34666666666666, + "grad_norm": 0.9329071640968323, + "learning_rate": 1.6342266666666668e-05, + "loss": 1.3269728088378907, + "step": 505100 + }, + { + "epoch": 67.36, + "grad_norm": 0.8434710502624512, + "learning_rate": 1.63356e-05, + "loss": 1.330979461669922, + "step": 505200 + }, + { + "epoch": 67.37333333333333, + "grad_norm": 0.9090546369552612, + "learning_rate": 1.6328933333333336e-05, + "loss": 1.3287429809570312, + "step": 505300 + }, + { + "epoch": 67.38666666666667, + "grad_norm": 0.8121486902236938, + "learning_rate": 1.6322266666666668e-05, + "loss": 1.3265771484375, + "step": 505400 + }, + { + "epoch": 67.4, + "grad_norm": 0.92621248960495, + "learning_rate": 1.63156e-05, + "loss": 1.331717529296875, + "step": 505500 + }, + { + "epoch": 67.41333333333333, + "grad_norm": 0.861219048500061, + "learning_rate": 1.6308933333333336e-05, + "loss": 1.331618194580078, + "step": 505600 + }, + { + "epoch": 67.42666666666666, + "grad_norm": 0.8709635734558105, + "learning_rate": 1.6302266666666668e-05, + "loss": 1.3293948364257813, + "step": 505700 + }, + { + "epoch": 67.44, + "grad_norm": 0.9250495433807373, + "learning_rate": 1.62956e-05, + "loss": 1.3288381958007813, + "step": 505800 + }, + { + "epoch": 67.45333333333333, + "grad_norm": 0.9058433771133423, + "learning_rate": 1.6288933333333333e-05, + "loss": 1.33401123046875, + "step": 505900 + }, + { + "epoch": 67.46666666666667, + "grad_norm": 0.8685875535011292, + "learning_rate": 1.6282266666666668e-05, + "loss": 1.3351644897460937, + "step": 506000 + }, + { + "epoch": 67.48, + "grad_norm": 0.8778988122940063, + "learning_rate": 1.62756e-05, + "loss": 1.3352923583984375, + "step": 506100 + }, + { + "epoch": 67.49333333333334, + "grad_norm": 0.900501549243927, + "learning_rate": 1.6269e-05, + "loss": 1.3364425659179688, + "step": 506200 + }, + { + "epoch": 67.50666666666666, + "grad_norm": 0.832356333732605, + "learning_rate": 1.6262333333333335e-05, + "loss": 1.3344007873535155, + "step": 506300 + }, + { + "epoch": 67.52, + "grad_norm": 0.8706467747688293, + "learning_rate": 1.6255666666666668e-05, + "loss": 1.335708465576172, + "step": 506400 + }, + { + "epoch": 67.53333333333333, + "grad_norm": 0.9022287130355835, + "learning_rate": 1.6249e-05, + "loss": 1.334958038330078, + "step": 506500 + }, + { + "epoch": 67.54666666666667, + "grad_norm": 0.9078052043914795, + "learning_rate": 1.6242333333333335e-05, + "loss": 1.3339247131347656, + "step": 506600 + }, + { + "epoch": 67.56, + "grad_norm": 0.8930740356445312, + "learning_rate": 1.6235666666666668e-05, + "loss": 1.3345040893554687, + "step": 506700 + }, + { + "epoch": 67.57333333333334, + "grad_norm": 0.8925511837005615, + "learning_rate": 1.6229e-05, + "loss": 1.3339421081542968, + "step": 506800 + }, + { + "epoch": 67.58666666666667, + "grad_norm": 0.9075053334236145, + "learning_rate": 1.6222333333333332e-05, + "loss": 1.3400006103515625, + "step": 506900 + }, + { + "epoch": 67.6, + "grad_norm": 0.8388199210166931, + "learning_rate": 1.6215666666666668e-05, + "loss": 1.339932403564453, + "step": 507000 + }, + { + "epoch": 67.61333333333333, + "grad_norm": 0.9314302206039429, + "learning_rate": 1.6209000000000004e-05, + "loss": 1.3385556030273438, + "step": 507100 + }, + { + "epoch": 67.62666666666667, + "grad_norm": 0.936500608921051, + "learning_rate": 1.6202333333333332e-05, + "loss": 1.3391481018066407, + "step": 507200 + }, + { + "epoch": 67.64, + "grad_norm": 0.9487819671630859, + "learning_rate": 1.6195666666666668e-05, + "loss": 1.3424884033203126, + "step": 507300 + }, + { + "epoch": 67.65333333333334, + "grad_norm": 0.8992325663566589, + "learning_rate": 1.6189e-05, + "loss": 1.3376817321777343, + "step": 507400 + }, + { + "epoch": 67.66666666666667, + "grad_norm": 0.8715090155601501, + "learning_rate": 1.6182333333333336e-05, + "loss": 1.3390425109863282, + "step": 507500 + }, + { + "epoch": 67.68, + "grad_norm": 0.926875650882721, + "learning_rate": 1.6175666666666668e-05, + "loss": 1.3368760681152343, + "step": 507600 + }, + { + "epoch": 67.69333333333333, + "grad_norm": 0.8483115434646606, + "learning_rate": 1.6169e-05, + "loss": 1.3436689758300782, + "step": 507700 + }, + { + "epoch": 67.70666666666666, + "grad_norm": 0.9174588918685913, + "learning_rate": 1.6162333333333336e-05, + "loss": 1.3432699584960937, + "step": 507800 + }, + { + "epoch": 67.72, + "grad_norm": 0.8918784260749817, + "learning_rate": 1.6155666666666665e-05, + "loss": 1.342838592529297, + "step": 507900 + }, + { + "epoch": 67.73333333333333, + "grad_norm": 0.9192767143249512, + "learning_rate": 1.6149e-05, + "loss": 1.3431192016601563, + "step": 508000 + }, + { + "epoch": 67.74666666666667, + "grad_norm": 0.9048521518707275, + "learning_rate": 1.6142333333333333e-05, + "loss": 1.341384735107422, + "step": 508100 + }, + { + "epoch": 67.76, + "grad_norm": 0.8069953918457031, + "learning_rate": 1.613566666666667e-05, + "loss": 1.3444508361816405, + "step": 508200 + }, + { + "epoch": 67.77333333333333, + "grad_norm": 0.9301212430000305, + "learning_rate": 1.6129066666666668e-05, + "loss": 1.342718048095703, + "step": 508300 + }, + { + "epoch": 67.78666666666666, + "grad_norm": 0.8530392646789551, + "learning_rate": 1.61224e-05, + "loss": 1.343582763671875, + "step": 508400 + }, + { + "epoch": 67.8, + "grad_norm": 0.8464934825897217, + "learning_rate": 1.6115733333333336e-05, + "loss": 1.3441999816894532, + "step": 508500 + }, + { + "epoch": 67.81333333333333, + "grad_norm": 0.8721790313720703, + "learning_rate": 1.6109066666666668e-05, + "loss": 1.3421063232421875, + "step": 508600 + }, + { + "epoch": 67.82666666666667, + "grad_norm": 0.8738119006156921, + "learning_rate": 1.61024e-05, + "loss": 1.350204315185547, + "step": 508700 + }, + { + "epoch": 67.84, + "grad_norm": 0.961629331111908, + "learning_rate": 1.6095733333333336e-05, + "loss": 1.3457203674316407, + "step": 508800 + }, + { + "epoch": 67.85333333333334, + "grad_norm": 0.8968521952629089, + "learning_rate": 1.6089066666666665e-05, + "loss": 1.3510127258300781, + "step": 508900 + }, + { + "epoch": 67.86666666666666, + "grad_norm": 0.8948931694030762, + "learning_rate": 1.60824e-05, + "loss": 1.3487330627441407, + "step": 509000 + }, + { + "epoch": 67.88, + "grad_norm": 0.9145134091377258, + "learning_rate": 1.6075733333333333e-05, + "loss": 1.3471894836425782, + "step": 509100 + }, + { + "epoch": 67.89333333333333, + "grad_norm": 0.871657133102417, + "learning_rate": 1.606906666666667e-05, + "loss": 1.3422882080078125, + "step": 509200 + }, + { + "epoch": 67.90666666666667, + "grad_norm": 0.9065093398094177, + "learning_rate": 1.60624e-05, + "loss": 1.3477850341796875, + "step": 509300 + }, + { + "epoch": 67.92, + "grad_norm": 0.9234089255332947, + "learning_rate": 1.6055733333333333e-05, + "loss": 1.3499220275878907, + "step": 509400 + }, + { + "epoch": 67.93333333333334, + "grad_norm": 0.9075988531112671, + "learning_rate": 1.604906666666667e-05, + "loss": 1.3501620483398438, + "step": 509500 + }, + { + "epoch": 67.94666666666667, + "grad_norm": 0.8884494304656982, + "learning_rate": 1.60424e-05, + "loss": 1.348383331298828, + "step": 509600 + }, + { + "epoch": 67.96, + "grad_norm": 0.896177351474762, + "learning_rate": 1.6035733333333333e-05, + "loss": 1.3463504028320312, + "step": 509700 + }, + { + "epoch": 67.97333333333333, + "grad_norm": 0.9698064923286438, + "learning_rate": 1.602906666666667e-05, + "loss": 1.3500189208984374, + "step": 509800 + }, + { + "epoch": 67.98666666666666, + "grad_norm": 0.9053831100463867, + "learning_rate": 1.60224e-05, + "loss": 1.3513795471191405, + "step": 509900 + }, + { + "epoch": 68.0, + "grad_norm": 0.9011847972869873, + "learning_rate": 1.6015733333333337e-05, + "loss": 1.3465042114257812, + "step": 510000 + }, + { + "epoch": 68.01333333333334, + "grad_norm": 0.8597659468650818, + "learning_rate": 1.6009066666666665e-05, + "loss": 1.3004315185546875, + "step": 510100 + }, + { + "epoch": 68.02666666666667, + "grad_norm": 0.928426206111908, + "learning_rate": 1.60024e-05, + "loss": 1.3039891052246093, + "step": 510200 + }, + { + "epoch": 68.04, + "grad_norm": 0.8113676309585571, + "learning_rate": 1.59958e-05, + "loss": 1.3047027587890625, + "step": 510300 + }, + { + "epoch": 68.05333333333333, + "grad_norm": 0.9048395752906799, + "learning_rate": 1.5989133333333332e-05, + "loss": 1.3024574279785157, + "step": 510400 + }, + { + "epoch": 68.06666666666666, + "grad_norm": 0.8462424874305725, + "learning_rate": 1.5982466666666668e-05, + "loss": 1.3085397338867188, + "step": 510500 + }, + { + "epoch": 68.08, + "grad_norm": 0.8260025978088379, + "learning_rate": 1.59758e-05, + "loss": 1.3069618225097657, + "step": 510600 + }, + { + "epoch": 68.09333333333333, + "grad_norm": 0.9367395639419556, + "learning_rate": 1.5969133333333333e-05, + "loss": 1.3096812438964844, + "step": 510700 + }, + { + "epoch": 68.10666666666667, + "grad_norm": 0.8826059699058533, + "learning_rate": 1.596246666666667e-05, + "loss": 1.31156494140625, + "step": 510800 + }, + { + "epoch": 68.12, + "grad_norm": 0.8369840383529663, + "learning_rate": 1.59558e-05, + "loss": 1.3101882934570312, + "step": 510900 + }, + { + "epoch": 68.13333333333334, + "grad_norm": 0.89353346824646, + "learning_rate": 1.5949133333333336e-05, + "loss": 1.3151426696777344, + "step": 511000 + }, + { + "epoch": 68.14666666666666, + "grad_norm": 0.9131789803504944, + "learning_rate": 1.5942466666666665e-05, + "loss": 1.3127870178222656, + "step": 511100 + }, + { + "epoch": 68.16, + "grad_norm": 0.8653157353401184, + "learning_rate": 1.59358e-05, + "loss": 1.3090579223632812, + "step": 511200 + }, + { + "epoch": 68.17333333333333, + "grad_norm": 0.9040849804878235, + "learning_rate": 1.5929133333333336e-05, + "loss": 1.312974395751953, + "step": 511300 + }, + { + "epoch": 68.18666666666667, + "grad_norm": 0.8667581081390381, + "learning_rate": 1.5922466666666665e-05, + "loss": 1.3097319030761718, + "step": 511400 + }, + { + "epoch": 68.2, + "grad_norm": 0.8813672065734863, + "learning_rate": 1.59158e-05, + "loss": 1.3151568603515624, + "step": 511500 + }, + { + "epoch": 68.21333333333334, + "grad_norm": 0.8864101767539978, + "learning_rate": 1.5909133333333333e-05, + "loss": 1.318709716796875, + "step": 511600 + }, + { + "epoch": 68.22666666666667, + "grad_norm": 0.8745055794715881, + "learning_rate": 1.590246666666667e-05, + "loss": 1.3160711669921874, + "step": 511700 + }, + { + "epoch": 68.24, + "grad_norm": 0.8819094896316528, + "learning_rate": 1.58958e-05, + "loss": 1.3141668701171876, + "step": 511800 + }, + { + "epoch": 68.25333333333333, + "grad_norm": 0.8686659336090088, + "learning_rate": 1.5889133333333333e-05, + "loss": 1.3141128540039062, + "step": 511900 + }, + { + "epoch": 68.26666666666667, + "grad_norm": 0.8981601595878601, + "learning_rate": 1.588246666666667e-05, + "loss": 1.318443603515625, + "step": 512000 + }, + { + "epoch": 68.28, + "grad_norm": 0.9074696898460388, + "learning_rate": 1.58758e-05, + "loss": 1.3188632202148438, + "step": 512100 + }, + { + "epoch": 68.29333333333334, + "grad_norm": 0.8958747386932373, + "learning_rate": 1.5869133333333334e-05, + "loss": 1.3215031433105469, + "step": 512200 + }, + { + "epoch": 68.30666666666667, + "grad_norm": 0.8791993260383606, + "learning_rate": 1.5862533333333336e-05, + "loss": 1.31865478515625, + "step": 512300 + }, + { + "epoch": 68.32, + "grad_norm": 0.8460490107536316, + "learning_rate": 1.5855866666666665e-05, + "loss": 1.3209242248535156, + "step": 512400 + }, + { + "epoch": 68.33333333333333, + "grad_norm": 0.8700122833251953, + "learning_rate": 1.58492e-05, + "loss": 1.3208595275878907, + "step": 512500 + }, + { + "epoch": 68.34666666666666, + "grad_norm": 0.8390049934387207, + "learning_rate": 1.5842533333333333e-05, + "loss": 1.3223390197753906, + "step": 512600 + }, + { + "epoch": 68.36, + "grad_norm": 0.8614577054977417, + "learning_rate": 1.583586666666667e-05, + "loss": 1.3204753112792968, + "step": 512700 + }, + { + "epoch": 68.37333333333333, + "grad_norm": 0.8901036977767944, + "learning_rate": 1.58292e-05, + "loss": 1.324432373046875, + "step": 512800 + }, + { + "epoch": 68.38666666666667, + "grad_norm": 0.8955973386764526, + "learning_rate": 1.5822533333333333e-05, + "loss": 1.3183277893066405, + "step": 512900 + }, + { + "epoch": 68.4, + "grad_norm": 0.8843805193901062, + "learning_rate": 1.581586666666667e-05, + "loss": 1.3242254638671875, + "step": 513000 + }, + { + "epoch": 68.41333333333333, + "grad_norm": 0.8797668218612671, + "learning_rate": 1.58092e-05, + "loss": 1.3225811767578124, + "step": 513100 + }, + { + "epoch": 68.42666666666666, + "grad_norm": 0.9109477400779724, + "learning_rate": 1.5802533333333333e-05, + "loss": 1.3278276062011718, + "step": 513200 + }, + { + "epoch": 68.44, + "grad_norm": 0.9226241111755371, + "learning_rate": 1.5795866666666666e-05, + "loss": 1.31931640625, + "step": 513300 + }, + { + "epoch": 68.45333333333333, + "grad_norm": 0.8409252762794495, + "learning_rate": 1.57892e-05, + "loss": 1.3215591430664062, + "step": 513400 + }, + { + "epoch": 68.46666666666667, + "grad_norm": 0.8817701935768127, + "learning_rate": 1.5782533333333337e-05, + "loss": 1.3250498962402344, + "step": 513500 + }, + { + "epoch": 68.48, + "grad_norm": 0.868848979473114, + "learning_rate": 1.5775866666666666e-05, + "loss": 1.329929656982422, + "step": 513600 + }, + { + "epoch": 68.49333333333334, + "grad_norm": 0.9269536137580872, + "learning_rate": 1.57692e-05, + "loss": 1.3273797607421876, + "step": 513700 + }, + { + "epoch": 68.50666666666666, + "grad_norm": 0.8891344666481018, + "learning_rate": 1.5762533333333334e-05, + "loss": 1.3250120544433595, + "step": 513800 + }, + { + "epoch": 68.52, + "grad_norm": 0.8972460031509399, + "learning_rate": 1.575586666666667e-05, + "loss": 1.3335025024414062, + "step": 513900 + }, + { + "epoch": 68.53333333333333, + "grad_norm": 0.8979598879814148, + "learning_rate": 1.57492e-05, + "loss": 1.327074737548828, + "step": 514000 + }, + { + "epoch": 68.54666666666667, + "grad_norm": 0.9028379917144775, + "learning_rate": 1.5742533333333334e-05, + "loss": 1.32595947265625, + "step": 514100 + }, + { + "epoch": 68.56, + "grad_norm": 0.8925226926803589, + "learning_rate": 1.573586666666667e-05, + "loss": 1.3272763061523438, + "step": 514200 + }, + { + "epoch": 68.57333333333334, + "grad_norm": 0.9189619421958923, + "learning_rate": 1.572926666666667e-05, + "loss": 1.3309127807617187, + "step": 514300 + }, + { + "epoch": 68.58666666666667, + "grad_norm": 0.8941634893417358, + "learning_rate": 1.57226e-05, + "loss": 1.3285725402832032, + "step": 514400 + }, + { + "epoch": 68.6, + "grad_norm": 0.9585229158401489, + "learning_rate": 1.5715933333333337e-05, + "loss": 1.3328392028808593, + "step": 514500 + }, + { + "epoch": 68.61333333333333, + "grad_norm": 0.8872119784355164, + "learning_rate": 1.5709266666666665e-05, + "loss": 1.3325770568847657, + "step": 514600 + }, + { + "epoch": 68.62666666666667, + "grad_norm": 0.8843336701393127, + "learning_rate": 1.57026e-05, + "loss": 1.331486358642578, + "step": 514700 + }, + { + "epoch": 68.64, + "grad_norm": 0.9135434031486511, + "learning_rate": 1.5695933333333333e-05, + "loss": 1.333922119140625, + "step": 514800 + }, + { + "epoch": 68.65333333333334, + "grad_norm": 0.9394828677177429, + "learning_rate": 1.568926666666667e-05, + "loss": 1.3295352172851562, + "step": 514900 + }, + { + "epoch": 68.66666666666667, + "grad_norm": 0.9578185081481934, + "learning_rate": 1.56826e-05, + "loss": 1.331282958984375, + "step": 515000 + }, + { + "epoch": 68.68, + "grad_norm": 0.9389871954917908, + "learning_rate": 1.5675933333333334e-05, + "loss": 1.3376300048828125, + "step": 515100 + }, + { + "epoch": 68.69333333333333, + "grad_norm": 0.8578580021858215, + "learning_rate": 1.566926666666667e-05, + "loss": 1.333085479736328, + "step": 515200 + }, + { + "epoch": 68.70666666666666, + "grad_norm": 0.9202980399131775, + "learning_rate": 1.5662599999999998e-05, + "loss": 1.33133544921875, + "step": 515300 + }, + { + "epoch": 68.72, + "grad_norm": 0.9534364938735962, + "learning_rate": 1.5655933333333334e-05, + "loss": 1.3320506286621094, + "step": 515400 + }, + { + "epoch": 68.73333333333333, + "grad_norm": 0.8657859563827515, + "learning_rate": 1.5649266666666666e-05, + "loss": 1.3358692932128906, + "step": 515500 + }, + { + "epoch": 68.74666666666667, + "grad_norm": 0.8687852621078491, + "learning_rate": 1.56426e-05, + "loss": 1.3360931396484375, + "step": 515600 + }, + { + "epoch": 68.76, + "grad_norm": 0.9254283308982849, + "learning_rate": 1.5635933333333334e-05, + "loss": 1.3366038513183593, + "step": 515700 + }, + { + "epoch": 68.77333333333333, + "grad_norm": 0.9339519739151001, + "learning_rate": 1.5629266666666666e-05, + "loss": 1.3345875549316406, + "step": 515800 + }, + { + "epoch": 68.78666666666666, + "grad_norm": 0.942951500415802, + "learning_rate": 1.5622600000000002e-05, + "loss": 1.3363542175292968, + "step": 515900 + }, + { + "epoch": 68.8, + "grad_norm": 0.8819780945777893, + "learning_rate": 1.5615933333333334e-05, + "loss": 1.33906005859375, + "step": 516000 + }, + { + "epoch": 68.81333333333333, + "grad_norm": 0.9070013761520386, + "learning_rate": 1.5609266666666666e-05, + "loss": 1.3376704406738282, + "step": 516100 + }, + { + "epoch": 68.82666666666667, + "grad_norm": 0.9122033715248108, + "learning_rate": 1.5602600000000002e-05, + "loss": 1.339272003173828, + "step": 516200 + }, + { + "epoch": 68.84, + "grad_norm": 0.8980287313461304, + "learning_rate": 1.5595933333333334e-05, + "loss": 1.336685791015625, + "step": 516300 + }, + { + "epoch": 68.85333333333334, + "grad_norm": 0.8671182990074158, + "learning_rate": 1.5589333333333333e-05, + "loss": 1.338714599609375, + "step": 516400 + }, + { + "epoch": 68.86666666666666, + "grad_norm": 0.8897833228111267, + "learning_rate": 1.558266666666667e-05, + "loss": 1.3385552978515625, + "step": 516500 + }, + { + "epoch": 68.88, + "grad_norm": 0.8926507830619812, + "learning_rate": 1.5576e-05, + "loss": 1.3375399780273438, + "step": 516600 + }, + { + "epoch": 68.89333333333333, + "grad_norm": 0.9504712224006653, + "learning_rate": 1.5569333333333334e-05, + "loss": 1.3395611572265624, + "step": 516700 + }, + { + "epoch": 68.90666666666667, + "grad_norm": 0.9633262753486633, + "learning_rate": 1.5562666666666666e-05, + "loss": 1.337670135498047, + "step": 516800 + }, + { + "epoch": 68.92, + "grad_norm": 0.9180074334144592, + "learning_rate": 1.5556e-05, + "loss": 1.3344358825683593, + "step": 516900 + }, + { + "epoch": 68.93333333333334, + "grad_norm": 0.9330366849899292, + "learning_rate": 1.5549333333333334e-05, + "loss": 1.3429493713378906, + "step": 517000 + }, + { + "epoch": 68.94666666666667, + "grad_norm": 0.8484285473823547, + "learning_rate": 1.5542666666666666e-05, + "loss": 1.33810791015625, + "step": 517100 + }, + { + "epoch": 68.96, + "grad_norm": 0.9376809597015381, + "learning_rate": 1.5536e-05, + "loss": 1.3395620727539062, + "step": 517200 + }, + { + "epoch": 68.97333333333333, + "grad_norm": 0.8969297409057617, + "learning_rate": 1.5529333333333334e-05, + "loss": 1.340773468017578, + "step": 517300 + }, + { + "epoch": 68.98666666666666, + "grad_norm": 0.8501908779144287, + "learning_rate": 1.552266666666667e-05, + "loss": 1.34123046875, + "step": 517400 + }, + { + "epoch": 69.0, + "grad_norm": 0.9352733492851257, + "learning_rate": 1.5516e-05, + "loss": 1.3383326721191406, + "step": 517500 + }, + { + "epoch": 69.01333333333334, + "grad_norm": 0.909633219242096, + "learning_rate": 1.5509333333333334e-05, + "loss": 1.3029652404785157, + "step": 517600 + }, + { + "epoch": 69.02666666666667, + "grad_norm": 0.8774516582489014, + "learning_rate": 1.550266666666667e-05, + "loss": 1.3019322204589843, + "step": 517700 + }, + { + "epoch": 69.04, + "grad_norm": 0.8658164143562317, + "learning_rate": 1.5496e-05, + "loss": 1.3007429504394532, + "step": 517800 + }, + { + "epoch": 69.05333333333333, + "grad_norm": 0.9352324604988098, + "learning_rate": 1.5489333333333334e-05, + "loss": 1.2994084167480469, + "step": 517900 + }, + { + "epoch": 69.06666666666666, + "grad_norm": 0.8457640409469604, + "learning_rate": 1.5482666666666667e-05, + "loss": 1.3021054077148437, + "step": 518000 + }, + { + "epoch": 69.08, + "grad_norm": 0.8199939727783203, + "learning_rate": 1.5476000000000002e-05, + "loss": 1.303291015625, + "step": 518100 + }, + { + "epoch": 69.09333333333333, + "grad_norm": 0.9278339743614197, + "learning_rate": 1.5469333333333335e-05, + "loss": 1.3022172546386719, + "step": 518200 + }, + { + "epoch": 69.10666666666667, + "grad_norm": 0.8438993096351624, + "learning_rate": 1.5462666666666667e-05, + "loss": 1.3028335571289062, + "step": 518300 + }, + { + "epoch": 69.12, + "grad_norm": 0.87488853931427, + "learning_rate": 1.5456000000000002e-05, + "loss": 1.3034165954589845, + "step": 518400 + }, + { + "epoch": 69.13333333333334, + "grad_norm": 0.8736199140548706, + "learning_rate": 1.54494e-05, + "loss": 1.304062042236328, + "step": 518500 + }, + { + "epoch": 69.14666666666666, + "grad_norm": 0.8868971467018127, + "learning_rate": 1.5442733333333334e-05, + "loss": 1.303873291015625, + "step": 518600 + }, + { + "epoch": 69.16, + "grad_norm": 0.8616037964820862, + "learning_rate": 1.543606666666667e-05, + "loss": 1.3016984558105469, + "step": 518700 + }, + { + "epoch": 69.17333333333333, + "grad_norm": 0.8724547624588013, + "learning_rate": 1.54294e-05, + "loss": 1.3086442565917968, + "step": 518800 + }, + { + "epoch": 69.18666666666667, + "grad_norm": 0.8624784350395203, + "learning_rate": 1.5422733333333334e-05, + "loss": 1.3114741516113282, + "step": 518900 + }, + { + "epoch": 69.2, + "grad_norm": 0.8696256875991821, + "learning_rate": 1.5416066666666666e-05, + "loss": 1.3064015197753907, + "step": 519000 + }, + { + "epoch": 69.21333333333334, + "grad_norm": 0.9286923408508301, + "learning_rate": 1.5409400000000002e-05, + "loss": 1.3089067077636718, + "step": 519100 + }, + { + "epoch": 69.22666666666667, + "grad_norm": 0.8909485936164856, + "learning_rate": 1.5402733333333334e-05, + "loss": 1.3079788208007812, + "step": 519200 + }, + { + "epoch": 69.24, + "grad_norm": 0.8831815123558044, + "learning_rate": 1.5396066666666666e-05, + "loss": 1.3152728271484375, + "step": 519300 + }, + { + "epoch": 69.25333333333333, + "grad_norm": 0.8436625003814697, + "learning_rate": 1.5389400000000002e-05, + "loss": 1.3138188171386718, + "step": 519400 + }, + { + "epoch": 69.26666666666667, + "grad_norm": 0.9039004445075989, + "learning_rate": 1.5382733333333334e-05, + "loss": 1.3095545959472656, + "step": 519500 + }, + { + "epoch": 69.28, + "grad_norm": 0.8767098188400269, + "learning_rate": 1.5376066666666667e-05, + "loss": 1.3092991638183593, + "step": 519600 + }, + { + "epoch": 69.29333333333334, + "grad_norm": 0.894680917263031, + "learning_rate": 1.53694e-05, + "loss": 1.3123838806152344, + "step": 519700 + }, + { + "epoch": 69.30666666666667, + "grad_norm": 0.8522490859031677, + "learning_rate": 1.5362733333333335e-05, + "loss": 1.3137554931640625, + "step": 519800 + }, + { + "epoch": 69.32, + "grad_norm": 0.9253702759742737, + "learning_rate": 1.535606666666667e-05, + "loss": 1.312119140625, + "step": 519900 + }, + { + "epoch": 69.33333333333333, + "grad_norm": 0.8951952457427979, + "learning_rate": 1.53494e-05, + "loss": 1.3125660705566407, + "step": 520000 + }, + { + "epoch": 69.34666666666666, + "grad_norm": 0.8459183573722839, + "learning_rate": 1.5342733333333335e-05, + "loss": 1.3168217468261718, + "step": 520100 + }, + { + "epoch": 69.36, + "grad_norm": 0.9312644600868225, + "learning_rate": 1.5336066666666667e-05, + "loss": 1.3158766174316405, + "step": 520200 + }, + { + "epoch": 69.37333333333333, + "grad_norm": 0.885540783405304, + "learning_rate": 1.5329400000000003e-05, + "loss": 1.3112091064453124, + "step": 520300 + }, + { + "epoch": 69.38666666666667, + "grad_norm": 0.8519514203071594, + "learning_rate": 1.5322733333333335e-05, + "loss": 1.3133538818359376, + "step": 520400 + }, + { + "epoch": 69.4, + "grad_norm": 0.9369427561759949, + "learning_rate": 1.5316133333333334e-05, + "loss": 1.3154583740234376, + "step": 520500 + }, + { + "epoch": 69.41333333333333, + "grad_norm": 0.8602283596992493, + "learning_rate": 1.5309466666666666e-05, + "loss": 1.3165095520019532, + "step": 520600 + }, + { + "epoch": 69.42666666666666, + "grad_norm": 0.9157493114471436, + "learning_rate": 1.5302800000000002e-05, + "loss": 1.3148411560058593, + "step": 520700 + }, + { + "epoch": 69.44, + "grad_norm": 0.9101560711860657, + "learning_rate": 1.5296133333333334e-05, + "loss": 1.3182754516601562, + "step": 520800 + }, + { + "epoch": 69.45333333333333, + "grad_norm": 0.9380730390548706, + "learning_rate": 1.528946666666667e-05, + "loss": 1.3192401123046875, + "step": 520900 + }, + { + "epoch": 69.46666666666667, + "grad_norm": 0.9109295010566711, + "learning_rate": 1.52828e-05, + "loss": 1.3193789672851564, + "step": 521000 + }, + { + "epoch": 69.48, + "grad_norm": 0.8645269274711609, + "learning_rate": 1.5276133333333334e-05, + "loss": 1.3203118896484376, + "step": 521100 + }, + { + "epoch": 69.49333333333334, + "grad_norm": 0.8796331882476807, + "learning_rate": 1.5269466666666667e-05, + "loss": 1.3172000122070313, + "step": 521200 + }, + { + "epoch": 69.50666666666666, + "grad_norm": 0.9040528535842896, + "learning_rate": 1.5262800000000002e-05, + "loss": 1.3217599487304688, + "step": 521300 + }, + { + "epoch": 69.52, + "grad_norm": 0.9129952788352966, + "learning_rate": 1.5256133333333333e-05, + "loss": 1.3199691772460938, + "step": 521400 + }, + { + "epoch": 69.53333333333333, + "grad_norm": 0.927264928817749, + "learning_rate": 1.5249466666666667e-05, + "loss": 1.3197657775878906, + "step": 521500 + }, + { + "epoch": 69.54666666666667, + "grad_norm": 0.8854173421859741, + "learning_rate": 1.52428e-05, + "loss": 1.32036865234375, + "step": 521600 + }, + { + "epoch": 69.56, + "grad_norm": 0.864914059638977, + "learning_rate": 1.5236133333333333e-05, + "loss": 1.3250689697265625, + "step": 521700 + }, + { + "epoch": 69.57333333333334, + "grad_norm": 0.9233516454696655, + "learning_rate": 1.5229466666666667e-05, + "loss": 1.3195721435546874, + "step": 521800 + }, + { + "epoch": 69.58666666666667, + "grad_norm": 0.8919656872749329, + "learning_rate": 1.5222800000000001e-05, + "loss": 1.3226580810546875, + "step": 521900 + }, + { + "epoch": 69.6, + "grad_norm": 0.9302183389663696, + "learning_rate": 1.5216133333333335e-05, + "loss": 1.325461883544922, + "step": 522000 + }, + { + "epoch": 69.61333333333333, + "grad_norm": 0.8252825736999512, + "learning_rate": 1.5209466666666666e-05, + "loss": 1.3249801635742187, + "step": 522100 + }, + { + "epoch": 69.62666666666667, + "grad_norm": 0.9176365733146667, + "learning_rate": 1.5202800000000001e-05, + "loss": 1.3211125183105468, + "step": 522200 + }, + { + "epoch": 69.64, + "grad_norm": 0.8246389627456665, + "learning_rate": 1.5196133333333335e-05, + "loss": 1.3223980712890624, + "step": 522300 + }, + { + "epoch": 69.65333333333334, + "grad_norm": 0.9392738938331604, + "learning_rate": 1.5189466666666669e-05, + "loss": 1.319575653076172, + "step": 522400 + }, + { + "epoch": 69.66666666666667, + "grad_norm": 0.888167142868042, + "learning_rate": 1.5182866666666668e-05, + "loss": 1.3244210815429687, + "step": 522500 + }, + { + "epoch": 69.68, + "grad_norm": 0.8745282292366028, + "learning_rate": 1.5176200000000002e-05, + "loss": 1.322125244140625, + "step": 522600 + }, + { + "epoch": 69.69333333333333, + "grad_norm": 0.8966434001922607, + "learning_rate": 1.5169533333333333e-05, + "loss": 1.328828125, + "step": 522700 + }, + { + "epoch": 69.70666666666666, + "grad_norm": 0.8466253876686096, + "learning_rate": 1.5162866666666667e-05, + "loss": 1.3279318237304687, + "step": 522800 + }, + { + "epoch": 69.72, + "grad_norm": 0.8887118697166443, + "learning_rate": 1.51562e-05, + "loss": 1.3284657287597657, + "step": 522900 + }, + { + "epoch": 69.73333333333333, + "grad_norm": 0.7998771667480469, + "learning_rate": 1.5149533333333335e-05, + "loss": 1.32925537109375, + "step": 523000 + }, + { + "epoch": 69.74666666666667, + "grad_norm": 0.8823466300964355, + "learning_rate": 1.5142866666666667e-05, + "loss": 1.3294252014160157, + "step": 523100 + }, + { + "epoch": 69.76, + "grad_norm": 0.9160724878311157, + "learning_rate": 1.5136200000000001e-05, + "loss": 1.327671356201172, + "step": 523200 + }, + { + "epoch": 69.77333333333333, + "grad_norm": 0.8401466012001038, + "learning_rate": 1.5129533333333335e-05, + "loss": 1.3307571411132812, + "step": 523300 + }, + { + "epoch": 69.78666666666666, + "grad_norm": 0.8765178322792053, + "learning_rate": 1.5122866666666669e-05, + "loss": 1.329644775390625, + "step": 523400 + }, + { + "epoch": 69.8, + "grad_norm": 0.87641841173172, + "learning_rate": 1.51162e-05, + "loss": 1.3258184814453124, + "step": 523500 + }, + { + "epoch": 69.81333333333333, + "grad_norm": 0.8888761401176453, + "learning_rate": 1.5109533333333333e-05, + "loss": 1.3236990356445313, + "step": 523600 + }, + { + "epoch": 69.82666666666667, + "grad_norm": 0.91169273853302, + "learning_rate": 1.5102866666666667e-05, + "loss": 1.3255255126953125, + "step": 523700 + }, + { + "epoch": 69.84, + "grad_norm": 0.8905537724494934, + "learning_rate": 1.5096200000000001e-05, + "loss": 1.3305224609375, + "step": 523800 + }, + { + "epoch": 69.85333333333334, + "grad_norm": 0.8976826667785645, + "learning_rate": 1.5089533333333334e-05, + "loss": 1.3281327819824218, + "step": 523900 + }, + { + "epoch": 69.86666666666666, + "grad_norm": 0.9264980554580688, + "learning_rate": 1.5082866666666667e-05, + "loss": 1.3322329711914063, + "step": 524000 + }, + { + "epoch": 69.88, + "grad_norm": 0.8969742059707642, + "learning_rate": 1.5076200000000001e-05, + "loss": 1.3304733276367187, + "step": 524100 + }, + { + "epoch": 69.89333333333333, + "grad_norm": 0.9283936619758606, + "learning_rate": 1.5069533333333332e-05, + "loss": 1.3320317077636719, + "step": 524200 + }, + { + "epoch": 69.90666666666667, + "grad_norm": 0.9455838203430176, + "learning_rate": 1.5062866666666666e-05, + "loss": 1.3323895263671874, + "step": 524300 + }, + { + "epoch": 69.92, + "grad_norm": 0.9530020356178284, + "learning_rate": 1.5056200000000002e-05, + "loss": 1.333441162109375, + "step": 524400 + }, + { + "epoch": 69.93333333333334, + "grad_norm": 0.8964418768882751, + "learning_rate": 1.5049599999999999e-05, + "loss": 1.3335765075683594, + "step": 524500 + }, + { + "epoch": 69.94666666666667, + "grad_norm": 0.8553877472877502, + "learning_rate": 1.5042933333333335e-05, + "loss": 1.3312777709960937, + "step": 524600 + }, + { + "epoch": 69.96, + "grad_norm": 0.8218632936477661, + "learning_rate": 1.5036266666666669e-05, + "loss": 1.3336231994628907, + "step": 524700 + }, + { + "epoch": 69.97333333333333, + "grad_norm": 0.8228429555892944, + "learning_rate": 1.5029600000000003e-05, + "loss": 1.3307693481445313, + "step": 524800 + }, + { + "epoch": 69.98666666666666, + "grad_norm": 0.890493631362915, + "learning_rate": 1.5022933333333333e-05, + "loss": 1.3317050170898437, + "step": 524900 + }, + { + "epoch": 70.0, + "grad_norm": 0.8892182111740112, + "learning_rate": 1.5016266666666667e-05, + "loss": 1.3370907592773438, + "step": 525000 + }, + { + "epoch": 70.01333333333334, + "grad_norm": 0.8805796504020691, + "learning_rate": 1.5009600000000001e-05, + "loss": 1.2896534729003906, + "step": 525100 + }, + { + "epoch": 70.02666666666667, + "grad_norm": 0.8995780348777771, + "learning_rate": 1.5002933333333333e-05, + "loss": 1.289251251220703, + "step": 525200 + }, + { + "epoch": 70.04, + "grad_norm": 0.8692154884338379, + "learning_rate": 1.4996266666666667e-05, + "loss": 1.2940298461914062, + "step": 525300 + }, + { + "epoch": 70.05333333333333, + "grad_norm": 0.9129854440689087, + "learning_rate": 1.4989600000000001e-05, + "loss": 1.2941226196289062, + "step": 525400 + }, + { + "epoch": 70.06666666666666, + "grad_norm": 0.8497447371482849, + "learning_rate": 1.4982933333333335e-05, + "loss": 1.2971897888183594, + "step": 525500 + }, + { + "epoch": 70.08, + "grad_norm": 0.9296039342880249, + "learning_rate": 1.4976266666666666e-05, + "loss": 1.2974925231933594, + "step": 525600 + }, + { + "epoch": 70.09333333333333, + "grad_norm": 0.8348743915557861, + "learning_rate": 1.49696e-05, + "loss": 1.2969551086425781, + "step": 525700 + }, + { + "epoch": 70.10666666666667, + "grad_norm": 0.9072258472442627, + "learning_rate": 1.4962933333333334e-05, + "loss": 1.2984727478027345, + "step": 525800 + }, + { + "epoch": 70.12, + "grad_norm": 0.87555330991745, + "learning_rate": 1.4956266666666668e-05, + "loss": 1.2968763732910156, + "step": 525900 + }, + { + "epoch": 70.13333333333334, + "grad_norm": 0.8605111837387085, + "learning_rate": 1.49496e-05, + "loss": 1.2984910583496094, + "step": 526000 + }, + { + "epoch": 70.14666666666666, + "grad_norm": 0.9041507840156555, + "learning_rate": 1.4942933333333334e-05, + "loss": 1.2995046997070312, + "step": 526100 + }, + { + "epoch": 70.16, + "grad_norm": 0.8892377018928528, + "learning_rate": 1.4936266666666668e-05, + "loss": 1.2987435913085938, + "step": 526200 + }, + { + "epoch": 70.17333333333333, + "grad_norm": 0.8845103979110718, + "learning_rate": 1.4929600000000002e-05, + "loss": 1.3019927978515624, + "step": 526300 + }, + { + "epoch": 70.18666666666667, + "grad_norm": 0.9019655585289001, + "learning_rate": 1.4922933333333332e-05, + "loss": 1.3028900146484375, + "step": 526400 + }, + { + "epoch": 70.2, + "grad_norm": 0.9145544171333313, + "learning_rate": 1.4916333333333335e-05, + "loss": 1.2975439453125, + "step": 526500 + }, + { + "epoch": 70.21333333333334, + "grad_norm": 0.8441560864448547, + "learning_rate": 1.4909666666666665e-05, + "loss": 1.2994468688964844, + "step": 526600 + }, + { + "epoch": 70.22666666666667, + "grad_norm": 0.9168753623962402, + "learning_rate": 1.4903000000000001e-05, + "loss": 1.2965029907226562, + "step": 526700 + }, + { + "epoch": 70.24, + "grad_norm": 0.918009340763092, + "learning_rate": 1.4896333333333335e-05, + "loss": 1.3034149169921876, + "step": 526800 + }, + { + "epoch": 70.25333333333333, + "grad_norm": 0.8701112866401672, + "learning_rate": 1.4889666666666669e-05, + "loss": 1.306947021484375, + "step": 526900 + }, + { + "epoch": 70.26666666666667, + "grad_norm": 0.8067172765731812, + "learning_rate": 1.4883e-05, + "loss": 1.3056159973144532, + "step": 527000 + }, + { + "epoch": 70.28, + "grad_norm": 0.8838335871696472, + "learning_rate": 1.4876333333333334e-05, + "loss": 1.3039329528808594, + "step": 527100 + }, + { + "epoch": 70.29333333333334, + "grad_norm": 0.7886351346969604, + "learning_rate": 1.4869666666666668e-05, + "loss": 1.3026358032226562, + "step": 527200 + }, + { + "epoch": 70.30666666666667, + "grad_norm": 0.858665406703949, + "learning_rate": 1.4863000000000002e-05, + "loss": 1.3058314514160156, + "step": 527300 + }, + { + "epoch": 70.32, + "grad_norm": 0.888764500617981, + "learning_rate": 1.4856333333333334e-05, + "loss": 1.2972772216796875, + "step": 527400 + }, + { + "epoch": 70.33333333333333, + "grad_norm": 0.8429321050643921, + "learning_rate": 1.4849666666666668e-05, + "loss": 1.3043406677246094, + "step": 527500 + }, + { + "epoch": 70.34666666666666, + "grad_norm": 0.877232015132904, + "learning_rate": 1.4843000000000002e-05, + "loss": 1.3073738098144532, + "step": 527600 + }, + { + "epoch": 70.36, + "grad_norm": 0.8669724464416504, + "learning_rate": 1.4836333333333336e-05, + "loss": 1.30747314453125, + "step": 527700 + }, + { + "epoch": 70.37333333333333, + "grad_norm": 0.8887328505516052, + "learning_rate": 1.4829666666666666e-05, + "loss": 1.3084428405761719, + "step": 527800 + }, + { + "epoch": 70.38666666666667, + "grad_norm": 0.8904489874839783, + "learning_rate": 1.4823e-05, + "loss": 1.3099253845214844, + "step": 527900 + }, + { + "epoch": 70.4, + "grad_norm": 0.8574255704879761, + "learning_rate": 1.4816333333333334e-05, + "loss": 1.3076028442382812, + "step": 528000 + }, + { + "epoch": 70.41333333333333, + "grad_norm": 0.8327115774154663, + "learning_rate": 1.4809666666666666e-05, + "loss": 1.3109042358398437, + "step": 528100 + }, + { + "epoch": 70.42666666666666, + "grad_norm": 0.8879788517951965, + "learning_rate": 1.4803e-05, + "loss": 1.3088136291503907, + "step": 528200 + }, + { + "epoch": 70.44, + "grad_norm": 0.9286050200462341, + "learning_rate": 1.4796333333333334e-05, + "loss": 1.308986358642578, + "step": 528300 + }, + { + "epoch": 70.45333333333333, + "grad_norm": 0.8870999217033386, + "learning_rate": 1.4789666666666668e-05, + "loss": 1.3082102966308593, + "step": 528400 + }, + { + "epoch": 70.46666666666667, + "grad_norm": 0.9179296493530273, + "learning_rate": 1.4783066666666667e-05, + "loss": 1.3106611633300782, + "step": 528500 + }, + { + "epoch": 70.48, + "grad_norm": 0.9033756852149963, + "learning_rate": 1.4776400000000001e-05, + "loss": 1.314158935546875, + "step": 528600 + }, + { + "epoch": 70.49333333333334, + "grad_norm": 0.8611282706260681, + "learning_rate": 1.4769733333333335e-05, + "loss": 1.3064042663574218, + "step": 528700 + }, + { + "epoch": 70.50666666666666, + "grad_norm": 0.8423687219619751, + "learning_rate": 1.4763066666666666e-05, + "loss": 1.3101791381835937, + "step": 528800 + }, + { + "epoch": 70.52, + "grad_norm": 0.8234757781028748, + "learning_rate": 1.4756400000000002e-05, + "loss": 1.3123239135742188, + "step": 528900 + }, + { + "epoch": 70.53333333333333, + "grad_norm": 0.8716632127761841, + "learning_rate": 1.4749733333333336e-05, + "loss": 1.3124678039550781, + "step": 529000 + }, + { + "epoch": 70.54666666666667, + "grad_norm": 0.9232488870620728, + "learning_rate": 1.4743066666666666e-05, + "loss": 1.3115689086914062, + "step": 529100 + }, + { + "epoch": 70.56, + "grad_norm": 0.8848524689674377, + "learning_rate": 1.47364e-05, + "loss": 1.3127764892578124, + "step": 529200 + }, + { + "epoch": 70.57333333333334, + "grad_norm": 0.875851035118103, + "learning_rate": 1.4729733333333334e-05, + "loss": 1.3133317565917968, + "step": 529300 + }, + { + "epoch": 70.58666666666667, + "grad_norm": 0.8727511763572693, + "learning_rate": 1.4723066666666668e-05, + "loss": 1.314737548828125, + "step": 529400 + }, + { + "epoch": 70.6, + "grad_norm": 0.8630813956260681, + "learning_rate": 1.47164e-05, + "loss": 1.3156022644042968, + "step": 529500 + }, + { + "epoch": 70.61333333333333, + "grad_norm": 0.8557106852531433, + "learning_rate": 1.4709733333333334e-05, + "loss": 1.3173948669433593, + "step": 529600 + }, + { + "epoch": 70.62666666666667, + "grad_norm": 0.9779431819915771, + "learning_rate": 1.4703066666666668e-05, + "loss": 1.3198297119140625, + "step": 529700 + }, + { + "epoch": 70.64, + "grad_norm": 0.8593903183937073, + "learning_rate": 1.4696400000000002e-05, + "loss": 1.316092529296875, + "step": 529800 + }, + { + "epoch": 70.65333333333334, + "grad_norm": 0.9095006585121155, + "learning_rate": 1.4689733333333333e-05, + "loss": 1.3180062866210938, + "step": 529900 + }, + { + "epoch": 70.66666666666667, + "grad_norm": 0.8926806449890137, + "learning_rate": 1.4683066666666667e-05, + "loss": 1.3165269470214844, + "step": 530000 + }, + { + "epoch": 70.68, + "grad_norm": 0.9139357805252075, + "learning_rate": 1.46764e-05, + "loss": 1.3208946228027343, + "step": 530100 + }, + { + "epoch": 70.69333333333333, + "grad_norm": 0.8682335615158081, + "learning_rate": 1.4669733333333335e-05, + "loss": 1.3224298095703124, + "step": 530200 + }, + { + "epoch": 70.70666666666666, + "grad_norm": 0.8869616985321045, + "learning_rate": 1.4663066666666667e-05, + "loss": 1.3226483154296875, + "step": 530300 + }, + { + "epoch": 70.72, + "grad_norm": 0.8614656925201416, + "learning_rate": 1.46564e-05, + "loss": 1.3232708740234376, + "step": 530400 + }, + { + "epoch": 70.73333333333333, + "grad_norm": 0.9762331247329712, + "learning_rate": 1.46498e-05, + "loss": 1.3229257202148437, + "step": 530500 + }, + { + "epoch": 70.74666666666667, + "grad_norm": 0.8502513766288757, + "learning_rate": 1.4643133333333334e-05, + "loss": 1.3204423522949218, + "step": 530600 + }, + { + "epoch": 70.76, + "grad_norm": 0.9142144918441772, + "learning_rate": 1.4636466666666668e-05, + "loss": 1.322928924560547, + "step": 530700 + }, + { + "epoch": 70.77333333333333, + "grad_norm": 0.9454054236412048, + "learning_rate": 1.4629800000000002e-05, + "loss": 1.3222068786621093, + "step": 530800 + }, + { + "epoch": 70.78666666666666, + "grad_norm": 0.8787757754325867, + "learning_rate": 1.4623133333333332e-05, + "loss": 1.3248483276367187, + "step": 530900 + }, + { + "epoch": 70.8, + "grad_norm": 0.9337016940116882, + "learning_rate": 1.4616466666666668e-05, + "loss": 1.32533447265625, + "step": 531000 + }, + { + "epoch": 70.81333333333333, + "grad_norm": 0.8793279528617859, + "learning_rate": 1.4609800000000002e-05, + "loss": 1.3210690307617188, + "step": 531100 + }, + { + "epoch": 70.82666666666667, + "grad_norm": 0.9024862051010132, + "learning_rate": 1.4603133333333336e-05, + "loss": 1.3219599914550781, + "step": 531200 + }, + { + "epoch": 70.84, + "grad_norm": 0.8972877264022827, + "learning_rate": 1.4596466666666667e-05, + "loss": 1.3197425842285155, + "step": 531300 + }, + { + "epoch": 70.85333333333334, + "grad_norm": 0.909234344959259, + "learning_rate": 1.45898e-05, + "loss": 1.3218959045410157, + "step": 531400 + }, + { + "epoch": 70.86666666666666, + "grad_norm": 0.9078801870346069, + "learning_rate": 1.4583133333333334e-05, + "loss": 1.3193194580078125, + "step": 531500 + }, + { + "epoch": 70.88, + "grad_norm": 0.8946749567985535, + "learning_rate": 1.4576466666666667e-05, + "loss": 1.3258621215820312, + "step": 531600 + }, + { + "epoch": 70.89333333333333, + "grad_norm": 0.8717100620269775, + "learning_rate": 1.45698e-05, + "loss": 1.324842529296875, + "step": 531700 + }, + { + "epoch": 70.90666666666667, + "grad_norm": 0.9220655560493469, + "learning_rate": 1.4563133333333335e-05, + "loss": 1.32437255859375, + "step": 531800 + }, + { + "epoch": 70.92, + "grad_norm": 0.9325002431869507, + "learning_rate": 1.4556466666666669e-05, + "loss": 1.3232379150390625, + "step": 531900 + }, + { + "epoch": 70.93333333333334, + "grad_norm": 0.9063462615013123, + "learning_rate": 1.45498e-05, + "loss": 1.324942626953125, + "step": 532000 + }, + { + "epoch": 70.94666666666667, + "grad_norm": 0.9205593466758728, + "learning_rate": 1.4543133333333333e-05, + "loss": 1.3274571228027343, + "step": 532100 + }, + { + "epoch": 70.96, + "grad_norm": 0.887042760848999, + "learning_rate": 1.4536466666666667e-05, + "loss": 1.3272421264648437, + "step": 532200 + }, + { + "epoch": 70.97333333333333, + "grad_norm": 0.8990888595581055, + "learning_rate": 1.4529800000000001e-05, + "loss": 1.3276673889160155, + "step": 532300 + }, + { + "epoch": 70.98666666666666, + "grad_norm": 0.86974036693573, + "learning_rate": 1.4523133333333333e-05, + "loss": 1.329319610595703, + "step": 532400 + }, + { + "epoch": 71.0, + "grad_norm": 0.8930814266204834, + "learning_rate": 1.4516533333333334e-05, + "loss": 1.325640869140625, + "step": 532500 + }, + { + "epoch": 71.01333333333334, + "grad_norm": 0.8759956955909729, + "learning_rate": 1.4509866666666666e-05, + "loss": 1.2856077575683593, + "step": 532600 + }, + { + "epoch": 71.02666666666667, + "grad_norm": 0.8954336047172546, + "learning_rate": 1.45032e-05, + "loss": 1.2832220458984376, + "step": 532700 + }, + { + "epoch": 71.04, + "grad_norm": 0.8733825087547302, + "learning_rate": 1.4496533333333334e-05, + "loss": 1.28903564453125, + "step": 532800 + }, + { + "epoch": 71.05333333333333, + "grad_norm": 0.9075688123703003, + "learning_rate": 1.4489866666666668e-05, + "loss": 1.28570556640625, + "step": 532900 + }, + { + "epoch": 71.06666666666666, + "grad_norm": 0.9383872747421265, + "learning_rate": 1.4483199999999999e-05, + "loss": 1.2899357604980468, + "step": 533000 + }, + { + "epoch": 71.08, + "grad_norm": 0.9034363031387329, + "learning_rate": 1.4476533333333333e-05, + "loss": 1.286364288330078, + "step": 533100 + }, + { + "epoch": 71.09333333333333, + "grad_norm": 0.8787199854850769, + "learning_rate": 1.4469866666666668e-05, + "loss": 1.2864273071289063, + "step": 533200 + }, + { + "epoch": 71.10666666666667, + "grad_norm": 0.8827729821205139, + "learning_rate": 1.4463200000000002e-05, + "loss": 1.2890650939941406, + "step": 533300 + }, + { + "epoch": 71.12, + "grad_norm": 0.8463526964187622, + "learning_rate": 1.4456533333333333e-05, + "loss": 1.2948846435546875, + "step": 533400 + }, + { + "epoch": 71.13333333333334, + "grad_norm": 0.903069794178009, + "learning_rate": 1.4449866666666667e-05, + "loss": 1.292220458984375, + "step": 533500 + }, + { + "epoch": 71.14666666666666, + "grad_norm": 0.9482007622718811, + "learning_rate": 1.4443200000000001e-05, + "loss": 1.2937982177734375, + "step": 533600 + }, + { + "epoch": 71.16, + "grad_norm": 0.8994336724281311, + "learning_rate": 1.4436533333333335e-05, + "loss": 1.2911940002441407, + "step": 533700 + }, + { + "epoch": 71.17333333333333, + "grad_norm": 0.8807686567306519, + "learning_rate": 1.4429866666666667e-05, + "loss": 1.2945388793945312, + "step": 533800 + }, + { + "epoch": 71.18666666666667, + "grad_norm": 0.8905879259109497, + "learning_rate": 1.4423200000000001e-05, + "loss": 1.294481964111328, + "step": 533900 + }, + { + "epoch": 71.2, + "grad_norm": 0.8632029891014099, + "learning_rate": 1.4416533333333335e-05, + "loss": 1.2912913513183595, + "step": 534000 + }, + { + "epoch": 71.21333333333334, + "grad_norm": 0.9372066259384155, + "learning_rate": 1.4409866666666669e-05, + "loss": 1.2954859924316406, + "step": 534100 + }, + { + "epoch": 71.22666666666667, + "grad_norm": 0.870266854763031, + "learning_rate": 1.44032e-05, + "loss": 1.2997502136230468, + "step": 534200 + }, + { + "epoch": 71.24, + "grad_norm": 0.8637234568595886, + "learning_rate": 1.4396533333333334e-05, + "loss": 1.2924945068359375, + "step": 534300 + }, + { + "epoch": 71.25333333333333, + "grad_norm": 0.9175564050674438, + "learning_rate": 1.4389866666666668e-05, + "loss": 1.2968971252441406, + "step": 534400 + }, + { + "epoch": 71.26666666666667, + "grad_norm": 0.876574695110321, + "learning_rate": 1.43832e-05, + "loss": 1.2949362182617188, + "step": 534500 + }, + { + "epoch": 71.28, + "grad_norm": 0.9054247140884399, + "learning_rate": 1.43766e-05, + "loss": 1.300845947265625, + "step": 534600 + }, + { + "epoch": 71.29333333333334, + "grad_norm": 0.9211097359657288, + "learning_rate": 1.4369933333333335e-05, + "loss": 1.3006065368652344, + "step": 534700 + }, + { + "epoch": 71.30666666666667, + "grad_norm": 0.8372483849525452, + "learning_rate": 1.4363266666666667e-05, + "loss": 1.2985647583007813, + "step": 534800 + }, + { + "epoch": 71.32, + "grad_norm": 0.8625202775001526, + "learning_rate": 1.43566e-05, + "loss": 1.3008456420898438, + "step": 534900 + }, + { + "epoch": 71.33333333333333, + "grad_norm": 0.8992438912391663, + "learning_rate": 1.4349933333333335e-05, + "loss": 1.301300048828125, + "step": 535000 + }, + { + "epoch": 71.34666666666666, + "grad_norm": 0.8850386738777161, + "learning_rate": 1.4343266666666669e-05, + "loss": 1.301788330078125, + "step": 535100 + }, + { + "epoch": 71.36, + "grad_norm": 0.8406701683998108, + "learning_rate": 1.43366e-05, + "loss": 1.2999703979492188, + "step": 535200 + }, + { + "epoch": 71.37333333333333, + "grad_norm": 0.8646606802940369, + "learning_rate": 1.4329933333333335e-05, + "loss": 1.3001799011230468, + "step": 535300 + }, + { + "epoch": 71.38666666666667, + "grad_norm": 0.9445309638977051, + "learning_rate": 1.4323266666666669e-05, + "loss": 1.302128143310547, + "step": 535400 + }, + { + "epoch": 71.4, + "grad_norm": 0.9471325874328613, + "learning_rate": 1.43166e-05, + "loss": 1.2999264526367187, + "step": 535500 + }, + { + "epoch": 71.41333333333333, + "grad_norm": 0.8217885494232178, + "learning_rate": 1.4309933333333333e-05, + "loss": 1.3032241821289063, + "step": 535600 + }, + { + "epoch": 71.42666666666666, + "grad_norm": 0.9401599764823914, + "learning_rate": 1.4303266666666667e-05, + "loss": 1.3056138610839845, + "step": 535700 + }, + { + "epoch": 71.44, + "grad_norm": 0.9012302756309509, + "learning_rate": 1.4296600000000001e-05, + "loss": 1.3041902160644532, + "step": 535800 + }, + { + "epoch": 71.45333333333333, + "grad_norm": 0.9111303091049194, + "learning_rate": 1.4289933333333334e-05, + "loss": 1.3063230895996094, + "step": 535900 + }, + { + "epoch": 71.46666666666667, + "grad_norm": 0.8673276901245117, + "learning_rate": 1.4283266666666668e-05, + "loss": 1.3001760864257812, + "step": 536000 + }, + { + "epoch": 71.48, + "grad_norm": 0.9236326217651367, + "learning_rate": 1.4276600000000002e-05, + "loss": 1.3068719482421876, + "step": 536100 + }, + { + "epoch": 71.49333333333334, + "grad_norm": 0.9119008779525757, + "learning_rate": 1.4269933333333335e-05, + "loss": 1.3041954040527344, + "step": 536200 + }, + { + "epoch": 71.50666666666666, + "grad_norm": 0.8844600319862366, + "learning_rate": 1.4263266666666666e-05, + "loss": 1.3039337158203126, + "step": 536300 + }, + { + "epoch": 71.52, + "grad_norm": 0.9151673316955566, + "learning_rate": 1.42566e-05, + "loss": 1.3061659240722656, + "step": 536400 + }, + { + "epoch": 71.53333333333333, + "grad_norm": 0.9146116971969604, + "learning_rate": 1.4249933333333334e-05, + "loss": 1.3047665405273436, + "step": 536500 + }, + { + "epoch": 71.54666666666667, + "grad_norm": 0.909635066986084, + "learning_rate": 1.4243333333333333e-05, + "loss": 1.3087080383300782, + "step": 536600 + }, + { + "epoch": 71.56, + "grad_norm": 0.9132217168807983, + "learning_rate": 1.4236666666666667e-05, + "loss": 1.3109938049316405, + "step": 536700 + }, + { + "epoch": 71.57333333333334, + "grad_norm": 0.9197409749031067, + "learning_rate": 1.4230000000000001e-05, + "loss": 1.3079139709472656, + "step": 536800 + }, + { + "epoch": 71.58666666666667, + "grad_norm": 0.8718376755714417, + "learning_rate": 1.4223333333333333e-05, + "loss": 1.3103158569335938, + "step": 536900 + }, + { + "epoch": 71.6, + "grad_norm": 0.8622058629989624, + "learning_rate": 1.4216666666666667e-05, + "loss": 1.31333251953125, + "step": 537000 + }, + { + "epoch": 71.61333333333333, + "grad_norm": 0.8807839155197144, + "learning_rate": 1.4210000000000001e-05, + "loss": 1.3074960327148437, + "step": 537100 + }, + { + "epoch": 71.62666666666667, + "grad_norm": 0.8405951261520386, + "learning_rate": 1.4203333333333335e-05, + "loss": 1.3117068481445313, + "step": 537200 + }, + { + "epoch": 71.64, + "grad_norm": 0.882014811038971, + "learning_rate": 1.4196666666666666e-05, + "loss": 1.3139077758789062, + "step": 537300 + }, + { + "epoch": 71.65333333333334, + "grad_norm": 0.9259293675422668, + "learning_rate": 1.4190000000000001e-05, + "loss": 1.310390625, + "step": 537400 + }, + { + "epoch": 71.66666666666667, + "grad_norm": 0.9055889248847961, + "learning_rate": 1.4183333333333335e-05, + "loss": 1.3092813110351562, + "step": 537500 + }, + { + "epoch": 71.68, + "grad_norm": 0.8556098937988281, + "learning_rate": 1.417666666666667e-05, + "loss": 1.30866455078125, + "step": 537600 + }, + { + "epoch": 71.69333333333333, + "grad_norm": 0.8926159143447876, + "learning_rate": 1.417e-05, + "loss": 1.3125555419921875, + "step": 537700 + }, + { + "epoch": 71.70666666666666, + "grad_norm": 0.9067847728729248, + "learning_rate": 1.4163333333333334e-05, + "loss": 1.3115115356445313, + "step": 537800 + }, + { + "epoch": 71.72, + "grad_norm": 0.9084548950195312, + "learning_rate": 1.4156666666666668e-05, + "loss": 1.310784912109375, + "step": 537900 + }, + { + "epoch": 71.73333333333333, + "grad_norm": 0.9122881889343262, + "learning_rate": 1.415e-05, + "loss": 1.3145706176757812, + "step": 538000 + }, + { + "epoch": 71.74666666666667, + "grad_norm": 0.9275632500648499, + "learning_rate": 1.4143333333333334e-05, + "loss": 1.3158493041992188, + "step": 538100 + }, + { + "epoch": 71.76, + "grad_norm": 0.8880303502082825, + "learning_rate": 1.4136666666666668e-05, + "loss": 1.3153211975097656, + "step": 538200 + }, + { + "epoch": 71.77333333333333, + "grad_norm": 0.8939701318740845, + "learning_rate": 1.4130000000000002e-05, + "loss": 1.3133526611328126, + "step": 538300 + }, + { + "epoch": 71.78666666666666, + "grad_norm": 0.9312496781349182, + "learning_rate": 1.4123333333333333e-05, + "loss": 1.3141810607910156, + "step": 538400 + }, + { + "epoch": 71.8, + "grad_norm": 0.8720466494560242, + "learning_rate": 1.4116666666666666e-05, + "loss": 1.3163778686523437, + "step": 538500 + }, + { + "epoch": 71.81333333333333, + "grad_norm": 0.8582771420478821, + "learning_rate": 1.4110066666666669e-05, + "loss": 1.3129298400878906, + "step": 538600 + }, + { + "epoch": 71.82666666666667, + "grad_norm": 0.8980292677879333, + "learning_rate": 1.41034e-05, + "loss": 1.3134010314941407, + "step": 538700 + }, + { + "epoch": 71.84, + "grad_norm": 0.8518330454826355, + "learning_rate": 1.4096733333333333e-05, + "loss": 1.318262176513672, + "step": 538800 + }, + { + "epoch": 71.85333333333334, + "grad_norm": 0.9726895689964294, + "learning_rate": 1.4090066666666667e-05, + "loss": 1.3170086669921874, + "step": 538900 + }, + { + "epoch": 71.86666666666666, + "grad_norm": 0.9808132648468018, + "learning_rate": 1.40834e-05, + "loss": 1.3163888549804688, + "step": 539000 + }, + { + "epoch": 71.88, + "grad_norm": 0.9004959464073181, + "learning_rate": 1.4076733333333334e-05, + "loss": 1.319114227294922, + "step": 539100 + }, + { + "epoch": 71.89333333333333, + "grad_norm": 0.9053959846496582, + "learning_rate": 1.4070066666666668e-05, + "loss": 1.31746337890625, + "step": 539200 + }, + { + "epoch": 71.90666666666667, + "grad_norm": 0.9328406453132629, + "learning_rate": 1.4063400000000002e-05, + "loss": 1.3196490478515626, + "step": 539300 + }, + { + "epoch": 71.92, + "grad_norm": 0.9023466110229492, + "learning_rate": 1.4056733333333332e-05, + "loss": 1.3168644714355469, + "step": 539400 + }, + { + "epoch": 71.93333333333334, + "grad_norm": 0.9490998983383179, + "learning_rate": 1.4050066666666666e-05, + "loss": 1.3167729187011719, + "step": 539500 + }, + { + "epoch": 71.94666666666667, + "grad_norm": 0.8722997903823853, + "learning_rate": 1.4043400000000002e-05, + "loss": 1.3187103271484375, + "step": 539600 + }, + { + "epoch": 71.96, + "grad_norm": 0.8097230792045593, + "learning_rate": 1.4036733333333336e-05, + "loss": 1.3224807739257813, + "step": 539700 + }, + { + "epoch": 71.97333333333333, + "grad_norm": 0.8848879337310791, + "learning_rate": 1.4030066666666666e-05, + "loss": 1.3202239990234375, + "step": 539800 + }, + { + "epoch": 71.98666666666666, + "grad_norm": 0.9258289933204651, + "learning_rate": 1.40234e-05, + "loss": 1.316883544921875, + "step": 539900 + }, + { + "epoch": 72.0, + "grad_norm": 0.8436217904090881, + "learning_rate": 1.4016733333333334e-05, + "loss": 1.315811309814453, + "step": 540000 + }, + { + "epoch": 72.01333333333334, + "grad_norm": 0.8667635321617126, + "learning_rate": 1.4010066666666668e-05, + "loss": 1.276677932739258, + "step": 540100 + }, + { + "epoch": 72.02666666666667, + "grad_norm": 0.9259230494499207, + "learning_rate": 1.40034e-05, + "loss": 1.281935577392578, + "step": 540200 + }, + { + "epoch": 72.04, + "grad_norm": 0.8905673027038574, + "learning_rate": 1.3996733333333334e-05, + "loss": 1.279156951904297, + "step": 540300 + }, + { + "epoch": 72.05333333333333, + "grad_norm": 0.829764723777771, + "learning_rate": 1.3990066666666668e-05, + "loss": 1.2802044677734374, + "step": 540400 + }, + { + "epoch": 72.06666666666666, + "grad_norm": 0.8586835861206055, + "learning_rate": 1.3983400000000002e-05, + "loss": 1.2799781036376954, + "step": 540500 + }, + { + "epoch": 72.08, + "grad_norm": 0.9158450365066528, + "learning_rate": 1.3976800000000001e-05, + "loss": 1.2819879150390625, + "step": 540600 + }, + { + "epoch": 72.09333333333333, + "grad_norm": 0.8834480047225952, + "learning_rate": 1.3970133333333335e-05, + "loss": 1.286240234375, + "step": 540700 + }, + { + "epoch": 72.10666666666667, + "grad_norm": 0.8838781118392944, + "learning_rate": 1.3963466666666666e-05, + "loss": 1.2864297485351563, + "step": 540800 + }, + { + "epoch": 72.12, + "grad_norm": 0.8703628778457642, + "learning_rate": 1.39568e-05, + "loss": 1.2833221435546875, + "step": 540900 + }, + { + "epoch": 72.13333333333334, + "grad_norm": 0.8430854678153992, + "learning_rate": 1.3950133333333334e-05, + "loss": 1.2873780822753906, + "step": 541000 + }, + { + "epoch": 72.14666666666666, + "grad_norm": 0.8535856008529663, + "learning_rate": 1.3943466666666668e-05, + "loss": 1.285396728515625, + "step": 541100 + }, + { + "epoch": 72.16, + "grad_norm": 0.9505435228347778, + "learning_rate": 1.39368e-05, + "loss": 1.2908889770507812, + "step": 541200 + }, + { + "epoch": 72.17333333333333, + "grad_norm": 0.9199652671813965, + "learning_rate": 1.3930133333333334e-05, + "loss": 1.2874760437011719, + "step": 541300 + }, + { + "epoch": 72.18666666666667, + "grad_norm": 0.9367565512657166, + "learning_rate": 1.3923466666666668e-05, + "loss": 1.2900453186035157, + "step": 541400 + }, + { + "epoch": 72.2, + "grad_norm": 0.8932370543479919, + "learning_rate": 1.3916799999999999e-05, + "loss": 1.290118408203125, + "step": 541500 + }, + { + "epoch": 72.21333333333334, + "grad_norm": 0.8846625089645386, + "learning_rate": 1.3910133333333333e-05, + "loss": 1.289880828857422, + "step": 541600 + }, + { + "epoch": 72.22666666666667, + "grad_norm": 0.8700215816497803, + "learning_rate": 1.3903466666666668e-05, + "loss": 1.2882028198242188, + "step": 541700 + }, + { + "epoch": 72.24, + "grad_norm": 0.8952950239181519, + "learning_rate": 1.3896800000000002e-05, + "loss": 1.2952290344238282, + "step": 541800 + }, + { + "epoch": 72.25333333333333, + "grad_norm": 0.8888140320777893, + "learning_rate": 1.3890133333333333e-05, + "loss": 1.2887269592285155, + "step": 541900 + }, + { + "epoch": 72.26666666666667, + "grad_norm": 0.873499870300293, + "learning_rate": 1.3883466666666667e-05, + "loss": 1.2873663330078124, + "step": 542000 + }, + { + "epoch": 72.28, + "grad_norm": 0.8604170083999634, + "learning_rate": 1.38768e-05, + "loss": 1.2889486694335937, + "step": 542100 + }, + { + "epoch": 72.29333333333334, + "grad_norm": 0.8493339419364929, + "learning_rate": 1.3870133333333335e-05, + "loss": 1.2932403564453125, + "step": 542200 + }, + { + "epoch": 72.30666666666667, + "grad_norm": 0.8944411873817444, + "learning_rate": 1.3863466666666667e-05, + "loss": 1.298619384765625, + "step": 542300 + }, + { + "epoch": 72.32, + "grad_norm": 0.9077425003051758, + "learning_rate": 1.3856800000000001e-05, + "loss": 1.291400146484375, + "step": 542400 + }, + { + "epoch": 72.33333333333333, + "grad_norm": 0.9395051598548889, + "learning_rate": 1.3850133333333335e-05, + "loss": 1.2952896118164063, + "step": 542500 + }, + { + "epoch": 72.34666666666666, + "grad_norm": 0.9028144478797913, + "learning_rate": 1.3843533333333334e-05, + "loss": 1.290705108642578, + "step": 542600 + }, + { + "epoch": 72.36, + "grad_norm": 0.9369432330131531, + "learning_rate": 1.3836866666666668e-05, + "loss": 1.2938015747070313, + "step": 542700 + }, + { + "epoch": 72.37333333333333, + "grad_norm": 0.8780479431152344, + "learning_rate": 1.3830200000000002e-05, + "loss": 1.296564483642578, + "step": 542800 + }, + { + "epoch": 72.38666666666667, + "grad_norm": 0.9035230875015259, + "learning_rate": 1.3823533333333332e-05, + "loss": 1.3008587646484375, + "step": 542900 + }, + { + "epoch": 72.4, + "grad_norm": 0.8920375108718872, + "learning_rate": 1.3816866666666666e-05, + "loss": 1.2913095092773437, + "step": 543000 + }, + { + "epoch": 72.41333333333333, + "grad_norm": 0.8965349793434143, + "learning_rate": 1.38102e-05, + "loss": 1.2953553771972657, + "step": 543100 + }, + { + "epoch": 72.42666666666666, + "grad_norm": 0.8993667364120483, + "learning_rate": 1.3803533333333334e-05, + "loss": 1.300503692626953, + "step": 543200 + }, + { + "epoch": 72.44, + "grad_norm": 0.8752589821815491, + "learning_rate": 1.3796866666666667e-05, + "loss": 1.2973211669921876, + "step": 543300 + }, + { + "epoch": 72.45333333333333, + "grad_norm": 0.9074227809906006, + "learning_rate": 1.37902e-05, + "loss": 1.2994436645507812, + "step": 543400 + }, + { + "epoch": 72.46666666666667, + "grad_norm": 0.8692722320556641, + "learning_rate": 1.3783533333333335e-05, + "loss": 1.3030880737304686, + "step": 543500 + }, + { + "epoch": 72.48, + "grad_norm": 0.9283269047737122, + "learning_rate": 1.3776866666666668e-05, + "loss": 1.2986073303222656, + "step": 543600 + }, + { + "epoch": 72.49333333333334, + "grad_norm": 0.8463515639305115, + "learning_rate": 1.3770199999999999e-05, + "loss": 1.3008390808105468, + "step": 543700 + }, + { + "epoch": 72.50666666666666, + "grad_norm": 0.9368971586227417, + "learning_rate": 1.3763533333333333e-05, + "loss": 1.3003103637695312, + "step": 543800 + }, + { + "epoch": 72.52, + "grad_norm": 0.8514252305030823, + "learning_rate": 1.3756866666666669e-05, + "loss": 1.2996723937988282, + "step": 543900 + }, + { + "epoch": 72.53333333333333, + "grad_norm": 0.9113193154335022, + "learning_rate": 1.3750200000000003e-05, + "loss": 1.3013104248046874, + "step": 544000 + }, + { + "epoch": 72.54666666666667, + "grad_norm": 0.8973194360733032, + "learning_rate": 1.3743533333333333e-05, + "loss": 1.303866424560547, + "step": 544100 + }, + { + "epoch": 72.56, + "grad_norm": 0.9292814135551453, + "learning_rate": 1.3736866666666667e-05, + "loss": 1.3007473754882812, + "step": 544200 + }, + { + "epoch": 72.57333333333334, + "grad_norm": 0.8650021553039551, + "learning_rate": 1.3730200000000001e-05, + "loss": 1.3053372192382813, + "step": 544300 + }, + { + "epoch": 72.58666666666667, + "grad_norm": 0.9136223196983337, + "learning_rate": 1.3723533333333333e-05, + "loss": 1.305074462890625, + "step": 544400 + }, + { + "epoch": 72.6, + "grad_norm": 0.899770975112915, + "learning_rate": 1.3716866666666667e-05, + "loss": 1.304183807373047, + "step": 544500 + }, + { + "epoch": 72.61333333333333, + "grad_norm": 0.9051358699798584, + "learning_rate": 1.3710200000000001e-05, + "loss": 1.2999253845214844, + "step": 544600 + }, + { + "epoch": 72.62666666666667, + "grad_norm": 0.8969173431396484, + "learning_rate": 1.37036e-05, + "loss": 1.301925048828125, + "step": 544700 + }, + { + "epoch": 72.64, + "grad_norm": 0.8683328032493591, + "learning_rate": 1.3696933333333334e-05, + "loss": 1.3041268920898437, + "step": 544800 + }, + { + "epoch": 72.65333333333334, + "grad_norm": 0.9285234808921814, + "learning_rate": 1.3690266666666668e-05, + "loss": 1.3035903930664063, + "step": 544900 + }, + { + "epoch": 72.66666666666667, + "grad_norm": 0.9057257175445557, + "learning_rate": 1.3683600000000002e-05, + "loss": 1.3026934814453126, + "step": 545000 + }, + { + "epoch": 72.68, + "grad_norm": 0.9157271385192871, + "learning_rate": 1.3676933333333333e-05, + "loss": 1.303736114501953, + "step": 545100 + }, + { + "epoch": 72.69333333333333, + "grad_norm": 0.8953295350074768, + "learning_rate": 1.3670266666666667e-05, + "loss": 1.3063804626464843, + "step": 545200 + }, + { + "epoch": 72.70666666666666, + "grad_norm": 0.9013524651527405, + "learning_rate": 1.36636e-05, + "loss": 1.3081599426269532, + "step": 545300 + }, + { + "epoch": 72.72, + "grad_norm": 0.8747628331184387, + "learning_rate": 1.3656933333333333e-05, + "loss": 1.3081907653808593, + "step": 545400 + }, + { + "epoch": 72.73333333333333, + "grad_norm": 0.8898458480834961, + "learning_rate": 1.3650266666666667e-05, + "loss": 1.308251953125, + "step": 545500 + }, + { + "epoch": 72.74666666666667, + "grad_norm": 0.9078856110572815, + "learning_rate": 1.3643600000000001e-05, + "loss": 1.3066876220703125, + "step": 545600 + }, + { + "epoch": 72.76, + "grad_norm": 0.8842049241065979, + "learning_rate": 1.3636933333333335e-05, + "loss": 1.3049169921875, + "step": 545700 + }, + { + "epoch": 72.77333333333333, + "grad_norm": 0.9232098460197449, + "learning_rate": 1.3630266666666666e-05, + "loss": 1.3058796691894532, + "step": 545800 + }, + { + "epoch": 72.78666666666666, + "grad_norm": 0.9262491464614868, + "learning_rate": 1.36236e-05, + "loss": 1.3056631469726563, + "step": 545900 + }, + { + "epoch": 72.8, + "grad_norm": 0.9117762446403503, + "learning_rate": 1.3616933333333335e-05, + "loss": 1.3098313903808594, + "step": 546000 + }, + { + "epoch": 72.81333333333333, + "grad_norm": 0.8940130472183228, + "learning_rate": 1.3610266666666669e-05, + "loss": 1.3110063171386719, + "step": 546100 + }, + { + "epoch": 72.82666666666667, + "grad_norm": 0.8723244071006775, + "learning_rate": 1.36036e-05, + "loss": 1.3087918090820312, + "step": 546200 + }, + { + "epoch": 72.84, + "grad_norm": 0.8790159821510315, + "learning_rate": 1.3596933333333334e-05, + "loss": 1.3090879821777344, + "step": 546300 + }, + { + "epoch": 72.85333333333334, + "grad_norm": 0.9324440956115723, + "learning_rate": 1.3590266666666668e-05, + "loss": 1.3065005493164064, + "step": 546400 + }, + { + "epoch": 72.86666666666666, + "grad_norm": 0.9022642374038696, + "learning_rate": 1.3583600000000002e-05, + "loss": 1.308943634033203, + "step": 546500 + }, + { + "epoch": 72.88, + "grad_norm": 0.8869839906692505, + "learning_rate": 1.3576933333333334e-05, + "loss": 1.3140464782714845, + "step": 546600 + }, + { + "epoch": 72.89333333333333, + "grad_norm": 0.9020800590515137, + "learning_rate": 1.3570333333333335e-05, + "loss": 1.3082620239257812, + "step": 546700 + }, + { + "epoch": 72.90666666666667, + "grad_norm": 0.8998864889144897, + "learning_rate": 1.3563666666666667e-05, + "loss": 1.3143278503417968, + "step": 546800 + }, + { + "epoch": 72.92, + "grad_norm": 0.9254443645477295, + "learning_rate": 1.3557e-05, + "loss": 1.3102537536621093, + "step": 546900 + }, + { + "epoch": 72.93333333333334, + "grad_norm": 0.8916531205177307, + "learning_rate": 1.3550333333333335e-05, + "loss": 1.3090887451171875, + "step": 547000 + }, + { + "epoch": 72.94666666666667, + "grad_norm": 0.8924204707145691, + "learning_rate": 1.3543666666666669e-05, + "loss": 1.3153028869628907, + "step": 547100 + }, + { + "epoch": 72.96, + "grad_norm": 0.8734211921691895, + "learning_rate": 1.3537e-05, + "loss": 1.3160145568847657, + "step": 547200 + }, + { + "epoch": 72.97333333333333, + "grad_norm": 0.8596046566963196, + "learning_rate": 1.3530333333333333e-05, + "loss": 1.3085627746582031, + "step": 547300 + }, + { + "epoch": 72.98666666666666, + "grad_norm": 0.8837646842002869, + "learning_rate": 1.3523666666666667e-05, + "loss": 1.3099195861816406, + "step": 547400 + }, + { + "epoch": 73.0, + "grad_norm": 0.9559072852134705, + "learning_rate": 1.3517000000000001e-05, + "loss": 1.3160740661621093, + "step": 547500 + }, + { + "epoch": 73.01333333333334, + "grad_norm": 0.9471146464347839, + "learning_rate": 1.3510333333333333e-05, + "loss": 1.2761563110351561, + "step": 547600 + }, + { + "epoch": 73.02666666666667, + "grad_norm": 0.8618519306182861, + "learning_rate": 1.3503666666666667e-05, + "loss": 1.2729344940185547, + "step": 547700 + }, + { + "epoch": 73.04, + "grad_norm": 0.8488065600395203, + "learning_rate": 1.3497000000000001e-05, + "loss": 1.273756561279297, + "step": 547800 + }, + { + "epoch": 73.05333333333333, + "grad_norm": 0.8331854343414307, + "learning_rate": 1.3490333333333332e-05, + "loss": 1.277390899658203, + "step": 547900 + }, + { + "epoch": 73.06666666666666, + "grad_norm": 0.8586211204528809, + "learning_rate": 1.3483666666666666e-05, + "loss": 1.276772689819336, + "step": 548000 + }, + { + "epoch": 73.08, + "grad_norm": 0.8098661303520203, + "learning_rate": 1.3477000000000002e-05, + "loss": 1.2797915649414062, + "step": 548100 + }, + { + "epoch": 73.09333333333333, + "grad_norm": 0.953315019607544, + "learning_rate": 1.3470333333333336e-05, + "loss": 1.276962432861328, + "step": 548200 + }, + { + "epoch": 73.10666666666667, + "grad_norm": 0.8598954677581787, + "learning_rate": 1.3463666666666666e-05, + "loss": 1.2770060729980468, + "step": 548300 + }, + { + "epoch": 73.12, + "grad_norm": 0.8851730227470398, + "learning_rate": 1.3457e-05, + "loss": 1.2772944641113282, + "step": 548400 + }, + { + "epoch": 73.13333333333334, + "grad_norm": 0.8884763121604919, + "learning_rate": 1.3450333333333334e-05, + "loss": 1.2774359130859374, + "step": 548500 + }, + { + "epoch": 73.14666666666666, + "grad_norm": 0.9043313264846802, + "learning_rate": 1.3443666666666668e-05, + "loss": 1.2833470153808593, + "step": 548600 + }, + { + "epoch": 73.16, + "grad_norm": 0.9404314160346985, + "learning_rate": 1.3437066666666667e-05, + "loss": 1.2804563903808595, + "step": 548700 + }, + { + "epoch": 73.17333333333333, + "grad_norm": 0.8437866568565369, + "learning_rate": 1.3430400000000001e-05, + "loss": 1.2854263305664062, + "step": 548800 + }, + { + "epoch": 73.18666666666667, + "grad_norm": 0.927335798740387, + "learning_rate": 1.3423733333333333e-05, + "loss": 1.2844186401367188, + "step": 548900 + }, + { + "epoch": 73.2, + "grad_norm": 0.8449512124061584, + "learning_rate": 1.3417066666666667e-05, + "loss": 1.2796637725830078, + "step": 549000 + }, + { + "epoch": 73.21333333333334, + "grad_norm": 0.8738372325897217, + "learning_rate": 1.3410400000000001e-05, + "loss": 1.2857395935058593, + "step": 549100 + }, + { + "epoch": 73.22666666666667, + "grad_norm": 0.8766629695892334, + "learning_rate": 1.3403733333333335e-05, + "loss": 1.2832762145996093, + "step": 549200 + }, + { + "epoch": 73.24, + "grad_norm": 0.8308307528495789, + "learning_rate": 1.3397066666666666e-05, + "loss": 1.2830810546875, + "step": 549300 + }, + { + "epoch": 73.25333333333333, + "grad_norm": 0.9020586013793945, + "learning_rate": 1.33904e-05, + "loss": 1.2846853637695312, + "step": 549400 + }, + { + "epoch": 73.26666666666667, + "grad_norm": 0.8639815449714661, + "learning_rate": 1.3383733333333334e-05, + "loss": 1.287603302001953, + "step": 549500 + }, + { + "epoch": 73.28, + "grad_norm": 0.8645631670951843, + "learning_rate": 1.3377066666666668e-05, + "loss": 1.287257537841797, + "step": 549600 + }, + { + "epoch": 73.29333333333334, + "grad_norm": 0.8956714868545532, + "learning_rate": 1.33704e-05, + "loss": 1.2851387023925782, + "step": 549700 + }, + { + "epoch": 73.30666666666667, + "grad_norm": 0.9055325984954834, + "learning_rate": 1.3363733333333334e-05, + "loss": 1.2879544067382813, + "step": 549800 + }, + { + "epoch": 73.32, + "grad_norm": 0.8861287236213684, + "learning_rate": 1.3357066666666668e-05, + "loss": 1.2887428283691407, + "step": 549900 + }, + { + "epoch": 73.33333333333333, + "grad_norm": 0.9045313000679016, + "learning_rate": 1.3350400000000002e-05, + "loss": 1.2884335327148437, + "step": 550000 + }, + { + "epoch": 73.34666666666666, + "grad_norm": 0.8875342011451721, + "learning_rate": 1.3343733333333332e-05, + "loss": 1.2835194396972656, + "step": 550100 + }, + { + "epoch": 73.36, + "grad_norm": 0.8842615485191345, + "learning_rate": 1.3337066666666666e-05, + "loss": 1.2884930419921874, + "step": 550200 + }, + { + "epoch": 73.37333333333333, + "grad_norm": 0.9177148342132568, + "learning_rate": 1.3330400000000002e-05, + "loss": 1.290846710205078, + "step": 550300 + }, + { + "epoch": 73.38666666666667, + "grad_norm": 0.913221538066864, + "learning_rate": 1.3323733333333336e-05, + "loss": 1.2883349609375, + "step": 550400 + }, + { + "epoch": 73.4, + "grad_norm": 0.9081894159317017, + "learning_rate": 1.3317066666666667e-05, + "loss": 1.2872616577148437, + "step": 550500 + }, + { + "epoch": 73.41333333333333, + "grad_norm": 0.8833068609237671, + "learning_rate": 1.33104e-05, + "loss": 1.2878277587890625, + "step": 550600 + }, + { + "epoch": 73.42666666666666, + "grad_norm": 0.8581375479698181, + "learning_rate": 1.33038e-05, + "loss": 1.2895700073242187, + "step": 550700 + }, + { + "epoch": 73.44, + "grad_norm": 0.9249962568283081, + "learning_rate": 1.3297133333333334e-05, + "loss": 1.2897068786621093, + "step": 550800 + }, + { + "epoch": 73.45333333333333, + "grad_norm": 0.9126532077789307, + "learning_rate": 1.3290466666666668e-05, + "loss": 1.2911618041992188, + "step": 550900 + }, + { + "epoch": 73.46666666666667, + "grad_norm": 0.91612708568573, + "learning_rate": 1.3283800000000001e-05, + "loss": 1.2918502807617187, + "step": 551000 + }, + { + "epoch": 73.48, + "grad_norm": 0.8593502044677734, + "learning_rate": 1.3277133333333334e-05, + "loss": 1.292982177734375, + "step": 551100 + }, + { + "epoch": 73.49333333333334, + "grad_norm": 0.9457326531410217, + "learning_rate": 1.3270466666666668e-05, + "loss": 1.2906185913085937, + "step": 551200 + }, + { + "epoch": 73.50666666666666, + "grad_norm": 0.8378877639770508, + "learning_rate": 1.3263800000000002e-05, + "loss": 1.29209228515625, + "step": 551300 + }, + { + "epoch": 73.52, + "grad_norm": 0.9088276624679565, + "learning_rate": 1.3257133333333336e-05, + "loss": 1.2912477111816407, + "step": 551400 + }, + { + "epoch": 73.53333333333333, + "grad_norm": 0.9294626712799072, + "learning_rate": 1.3250466666666666e-05, + "loss": 1.2885626220703126, + "step": 551500 + }, + { + "epoch": 73.54666666666667, + "grad_norm": 0.876581072807312, + "learning_rate": 1.32438e-05, + "loss": 1.2994056701660157, + "step": 551600 + }, + { + "epoch": 73.56, + "grad_norm": 0.9063646793365479, + "learning_rate": 1.3237133333333334e-05, + "loss": 1.2967149353027343, + "step": 551700 + }, + { + "epoch": 73.57333333333334, + "grad_norm": 0.8408426642417908, + "learning_rate": 1.3230466666666666e-05, + "loss": 1.2977626037597656, + "step": 551800 + }, + { + "epoch": 73.58666666666667, + "grad_norm": 0.9056010246276855, + "learning_rate": 1.32238e-05, + "loss": 1.2985139465332032, + "step": 551900 + }, + { + "epoch": 73.6, + "grad_norm": 0.8862862586975098, + "learning_rate": 1.3217133333333334e-05, + "loss": 1.2940017700195312, + "step": 552000 + }, + { + "epoch": 73.61333333333333, + "grad_norm": 0.8660182356834412, + "learning_rate": 1.3210466666666668e-05, + "loss": 1.2961624145507813, + "step": 552100 + }, + { + "epoch": 73.62666666666667, + "grad_norm": 0.8667203187942505, + "learning_rate": 1.3203799999999999e-05, + "loss": 1.2973252868652343, + "step": 552200 + }, + { + "epoch": 73.64, + "grad_norm": 0.8764863014221191, + "learning_rate": 1.3197133333333333e-05, + "loss": 1.3011990356445313, + "step": 552300 + }, + { + "epoch": 73.65333333333334, + "grad_norm": 0.854836106300354, + "learning_rate": 1.3190466666666668e-05, + "loss": 1.301475830078125, + "step": 552400 + }, + { + "epoch": 73.66666666666667, + "grad_norm": 0.8675264716148376, + "learning_rate": 1.3183800000000002e-05, + "loss": 1.2946461486816405, + "step": 552500 + }, + { + "epoch": 73.68, + "grad_norm": 0.8799411654472351, + "learning_rate": 1.3177133333333333e-05, + "loss": 1.2978501892089844, + "step": 552600 + }, + { + "epoch": 73.69333333333333, + "grad_norm": 0.8406023979187012, + "learning_rate": 1.3170466666666667e-05, + "loss": 1.2984336853027343, + "step": 552700 + }, + { + "epoch": 73.70666666666666, + "grad_norm": 0.8912414908409119, + "learning_rate": 1.3163866666666666e-05, + "loss": 1.3007151794433593, + "step": 552800 + }, + { + "epoch": 73.72, + "grad_norm": 0.8535100221633911, + "learning_rate": 1.31572e-05, + "loss": 1.2961094665527344, + "step": 552900 + }, + { + "epoch": 73.73333333333333, + "grad_norm": 0.932938814163208, + "learning_rate": 1.3150533333333334e-05, + "loss": 1.2960186767578126, + "step": 553000 + }, + { + "epoch": 73.74666666666667, + "grad_norm": 0.9171094298362732, + "learning_rate": 1.3143866666666668e-05, + "loss": 1.3013040161132812, + "step": 553100 + }, + { + "epoch": 73.76, + "grad_norm": 0.923318088054657, + "learning_rate": 1.31372e-05, + "loss": 1.300777130126953, + "step": 553200 + }, + { + "epoch": 73.77333333333333, + "grad_norm": 0.9453115463256836, + "learning_rate": 1.3130533333333334e-05, + "loss": 1.3012001037597656, + "step": 553300 + }, + { + "epoch": 73.78666666666666, + "grad_norm": 0.9598022699356079, + "learning_rate": 1.3123866666666668e-05, + "loss": 1.3000535583496093, + "step": 553400 + }, + { + "epoch": 73.8, + "grad_norm": 0.8746120929718018, + "learning_rate": 1.3117200000000002e-05, + "loss": 1.299759979248047, + "step": 553500 + }, + { + "epoch": 73.81333333333333, + "grad_norm": 0.8909258842468262, + "learning_rate": 1.3110533333333333e-05, + "loss": 1.3039195251464843, + "step": 553600 + }, + { + "epoch": 73.82666666666667, + "grad_norm": 0.899439811706543, + "learning_rate": 1.3103866666666667e-05, + "loss": 1.3032107543945313, + "step": 553700 + }, + { + "epoch": 73.84, + "grad_norm": 0.9339725375175476, + "learning_rate": 1.30972e-05, + "loss": 1.2999578857421874, + "step": 553800 + }, + { + "epoch": 73.85333333333334, + "grad_norm": 0.8592462539672852, + "learning_rate": 1.3090533333333335e-05, + "loss": 1.3077874755859376, + "step": 553900 + }, + { + "epoch": 73.86666666666666, + "grad_norm": 0.8757080435752869, + "learning_rate": 1.3083866666666667e-05, + "loss": 1.3068240356445313, + "step": 554000 + }, + { + "epoch": 73.88, + "grad_norm": 0.893817663192749, + "learning_rate": 1.30772e-05, + "loss": 1.3072088623046876, + "step": 554100 + }, + { + "epoch": 73.89333333333333, + "grad_norm": 0.8930887579917908, + "learning_rate": 1.3070533333333335e-05, + "loss": 1.303759307861328, + "step": 554200 + }, + { + "epoch": 73.90666666666667, + "grad_norm": 0.9105483293533325, + "learning_rate": 1.3063866666666665e-05, + "loss": 1.3057803344726562, + "step": 554300 + }, + { + "epoch": 73.92, + "grad_norm": 0.9180082678794861, + "learning_rate": 1.30572e-05, + "loss": 1.3057562255859374, + "step": 554400 + }, + { + "epoch": 73.93333333333334, + "grad_norm": 0.900630533695221, + "learning_rate": 1.3050533333333333e-05, + "loss": 1.3036831665039061, + "step": 554500 + }, + { + "epoch": 73.94666666666667, + "grad_norm": 0.9302444458007812, + "learning_rate": 1.3043866666666669e-05, + "loss": 1.3099397277832032, + "step": 554600 + }, + { + "epoch": 73.96, + "grad_norm": 0.9064813256263733, + "learning_rate": 1.30372e-05, + "loss": 1.3054379272460936, + "step": 554700 + }, + { + "epoch": 73.97333333333333, + "grad_norm": 0.8835692405700684, + "learning_rate": 1.3030600000000002e-05, + "loss": 1.3077413940429687, + "step": 554800 + }, + { + "epoch": 73.98666666666666, + "grad_norm": 0.8917888402938843, + "learning_rate": 1.3023933333333336e-05, + "loss": 1.3091519165039063, + "step": 554900 + }, + { + "epoch": 74.0, + "grad_norm": 0.8641742467880249, + "learning_rate": 1.3017266666666666e-05, + "loss": 1.3092634582519531, + "step": 555000 + }, + { + "epoch": 74.01333333333334, + "grad_norm": 0.944517970085144, + "learning_rate": 1.30106e-05, + "loss": 1.2658570861816407, + "step": 555100 + }, + { + "epoch": 74.02666666666667, + "grad_norm": 0.8598766326904297, + "learning_rate": 1.3003933333333334e-05, + "loss": 1.2683529663085937, + "step": 555200 + }, + { + "epoch": 74.04, + "grad_norm": 0.860201895236969, + "learning_rate": 1.2997266666666667e-05, + "loss": 1.2708037567138672, + "step": 555300 + }, + { + "epoch": 74.05333333333333, + "grad_norm": 0.8917511105537415, + "learning_rate": 1.29906e-05, + "loss": 1.271436004638672, + "step": 555400 + }, + { + "epoch": 74.06666666666666, + "grad_norm": 0.939109742641449, + "learning_rate": 1.2983933333333335e-05, + "loss": 1.2716947937011718, + "step": 555500 + }, + { + "epoch": 74.08, + "grad_norm": 0.8807459473609924, + "learning_rate": 1.2977266666666669e-05, + "loss": 1.2712261199951171, + "step": 555600 + }, + { + "epoch": 74.09333333333333, + "grad_norm": 0.8981074094772339, + "learning_rate": 1.2970599999999999e-05, + "loss": 1.2726960754394532, + "step": 555700 + }, + { + "epoch": 74.10666666666667, + "grad_norm": 0.920891523361206, + "learning_rate": 1.2963933333333333e-05, + "loss": 1.271525650024414, + "step": 555800 + }, + { + "epoch": 74.12, + "grad_norm": 0.8784647583961487, + "learning_rate": 1.2957266666666667e-05, + "loss": 1.2761204528808594, + "step": 555900 + }, + { + "epoch": 74.13333333333334, + "grad_norm": 0.9443046450614929, + "learning_rate": 1.2950600000000001e-05, + "loss": 1.2812734985351562, + "step": 556000 + }, + { + "epoch": 74.14666666666666, + "grad_norm": 0.9324434995651245, + "learning_rate": 1.2943933333333333e-05, + "loss": 1.2774497985839843, + "step": 556100 + }, + { + "epoch": 74.16, + "grad_norm": 0.9151404500007629, + "learning_rate": 1.2937266666666667e-05, + "loss": 1.2794931030273438, + "step": 556200 + }, + { + "epoch": 74.17333333333333, + "grad_norm": 0.9019087553024292, + "learning_rate": 1.2930600000000001e-05, + "loss": 1.272760467529297, + "step": 556300 + }, + { + "epoch": 74.18666666666667, + "grad_norm": 0.9008191823959351, + "learning_rate": 1.2923933333333335e-05, + "loss": 1.2791709899902344, + "step": 556400 + }, + { + "epoch": 74.2, + "grad_norm": 0.9243355393409729, + "learning_rate": 1.2917266666666666e-05, + "loss": 1.2742820739746095, + "step": 556500 + }, + { + "epoch": 74.21333333333334, + "grad_norm": 0.8960252404212952, + "learning_rate": 1.29106e-05, + "loss": 1.2767957305908204, + "step": 556600 + }, + { + "epoch": 74.22666666666667, + "grad_norm": 0.8784938454627991, + "learning_rate": 1.2903933333333335e-05, + "loss": 1.2783699798583985, + "step": 556700 + }, + { + "epoch": 74.24, + "grad_norm": 0.9372243285179138, + "learning_rate": 1.2897333333333333e-05, + "loss": 1.2807513427734376, + "step": 556800 + }, + { + "epoch": 74.25333333333333, + "grad_norm": 0.8725894093513489, + "learning_rate": 1.2890666666666668e-05, + "loss": 1.280004119873047, + "step": 556900 + }, + { + "epoch": 74.26666666666667, + "grad_norm": 0.8671815991401672, + "learning_rate": 1.2884000000000002e-05, + "loss": 1.276363296508789, + "step": 557000 + }, + { + "epoch": 74.28, + "grad_norm": 0.8304952383041382, + "learning_rate": 1.2877333333333333e-05, + "loss": 1.2792926025390625, + "step": 557100 + }, + { + "epoch": 74.29333333333334, + "grad_norm": 0.8606889247894287, + "learning_rate": 1.2870666666666667e-05, + "loss": 1.2823660278320312, + "step": 557200 + }, + { + "epoch": 74.30666666666667, + "grad_norm": 0.8777315020561218, + "learning_rate": 1.2864e-05, + "loss": 1.2785820007324218, + "step": 557300 + }, + { + "epoch": 74.32, + "grad_norm": 0.8733790516853333, + "learning_rate": 1.2857333333333335e-05, + "loss": 1.281063232421875, + "step": 557400 + }, + { + "epoch": 74.33333333333333, + "grad_norm": 0.8477702140808105, + "learning_rate": 1.2850666666666667e-05, + "loss": 1.2849333190917969, + "step": 557500 + }, + { + "epoch": 74.34666666666666, + "grad_norm": 0.9036483764648438, + "learning_rate": 1.2844000000000001e-05, + "loss": 1.2832469177246093, + "step": 557600 + }, + { + "epoch": 74.36, + "grad_norm": 0.8794974684715271, + "learning_rate": 1.2837333333333335e-05, + "loss": 1.2776331329345703, + "step": 557700 + }, + { + "epoch": 74.37333333333333, + "grad_norm": 0.9200766682624817, + "learning_rate": 1.2830666666666669e-05, + "loss": 1.2813546752929688, + "step": 557800 + }, + { + "epoch": 74.38666666666667, + "grad_norm": 0.8847201466560364, + "learning_rate": 1.2824e-05, + "loss": 1.2843760681152343, + "step": 557900 + }, + { + "epoch": 74.4, + "grad_norm": 0.880175769329071, + "learning_rate": 1.2817333333333333e-05, + "loss": 1.287875213623047, + "step": 558000 + }, + { + "epoch": 74.41333333333333, + "grad_norm": 0.8858283162117004, + "learning_rate": 1.2810666666666667e-05, + "loss": 1.2829354858398438, + "step": 558100 + }, + { + "epoch": 74.42666666666666, + "grad_norm": 0.8578990697860718, + "learning_rate": 1.2804e-05, + "loss": 1.2892631530761718, + "step": 558200 + }, + { + "epoch": 74.44, + "grad_norm": 0.9900735020637512, + "learning_rate": 1.2797333333333334e-05, + "loss": 1.2847103881835937, + "step": 558300 + }, + { + "epoch": 74.45333333333333, + "grad_norm": 0.8830659985542297, + "learning_rate": 1.2790666666666668e-05, + "loss": 1.2800477600097657, + "step": 558400 + }, + { + "epoch": 74.46666666666667, + "grad_norm": 0.8871668577194214, + "learning_rate": 1.2784000000000002e-05, + "loss": 1.284095001220703, + "step": 558500 + }, + { + "epoch": 74.48, + "grad_norm": 0.8544827103614807, + "learning_rate": 1.2777333333333332e-05, + "loss": 1.2865316772460937, + "step": 558600 + }, + { + "epoch": 74.49333333333334, + "grad_norm": 0.900020956993103, + "learning_rate": 1.2770666666666666e-05, + "loss": 1.2850057983398437, + "step": 558700 + }, + { + "epoch": 74.50666666666666, + "grad_norm": 0.867059051990509, + "learning_rate": 1.2764066666666669e-05, + "loss": 1.2903533935546876, + "step": 558800 + }, + { + "epoch": 74.52, + "grad_norm": 0.8870203495025635, + "learning_rate": 1.27574e-05, + "loss": 1.287705535888672, + "step": 558900 + }, + { + "epoch": 74.53333333333333, + "grad_norm": 0.9314866662025452, + "learning_rate": 1.2750733333333333e-05, + "loss": 1.28730224609375, + "step": 559000 + }, + { + "epoch": 74.54666666666667, + "grad_norm": 0.8612186908721924, + "learning_rate": 1.2744066666666669e-05, + "loss": 1.289891815185547, + "step": 559100 + }, + { + "epoch": 74.56, + "grad_norm": 0.899004340171814, + "learning_rate": 1.27374e-05, + "loss": 1.2894015502929688, + "step": 559200 + }, + { + "epoch": 74.57333333333334, + "grad_norm": 0.8479779958724976, + "learning_rate": 1.2730733333333333e-05, + "loss": 1.2877230834960938, + "step": 559300 + }, + { + "epoch": 74.58666666666667, + "grad_norm": 0.8701773285865784, + "learning_rate": 1.2724066666666667e-05, + "loss": 1.2875765991210937, + "step": 559400 + }, + { + "epoch": 74.6, + "grad_norm": 0.9275473356246948, + "learning_rate": 1.2717400000000001e-05, + "loss": 1.2902964782714843, + "step": 559500 + }, + { + "epoch": 74.61333333333333, + "grad_norm": 0.8632954359054565, + "learning_rate": 1.2710733333333334e-05, + "loss": 1.292191162109375, + "step": 559600 + }, + { + "epoch": 74.62666666666667, + "grad_norm": 0.9471471905708313, + "learning_rate": 1.2704066666666667e-05, + "loss": 1.2906411743164063, + "step": 559700 + }, + { + "epoch": 74.64, + "grad_norm": 0.949734091758728, + "learning_rate": 1.2697400000000001e-05, + "loss": 1.2944467163085938, + "step": 559800 + }, + { + "epoch": 74.65333333333334, + "grad_norm": 0.8871404528617859, + "learning_rate": 1.2690733333333335e-05, + "loss": 1.2892448425292968, + "step": 559900 + }, + { + "epoch": 74.66666666666667, + "grad_norm": 0.8793107271194458, + "learning_rate": 1.2684066666666666e-05, + "loss": 1.2894142150878907, + "step": 560000 + }, + { + "epoch": 74.68, + "grad_norm": 0.9287523031234741, + "learning_rate": 1.26774e-05, + "loss": 1.2898847961425781, + "step": 560100 + }, + { + "epoch": 74.69333333333333, + "grad_norm": 0.9169420599937439, + "learning_rate": 1.2670733333333334e-05, + "loss": 1.2945254516601563, + "step": 560200 + }, + { + "epoch": 74.70666666666666, + "grad_norm": 0.9196577668190002, + "learning_rate": 1.2664066666666668e-05, + "loss": 1.2968296813964844, + "step": 560300 + }, + { + "epoch": 74.72, + "grad_norm": 0.8801164031028748, + "learning_rate": 1.26574e-05, + "loss": 1.2895684814453126, + "step": 560400 + }, + { + "epoch": 74.73333333333333, + "grad_norm": 0.9066420793533325, + "learning_rate": 1.2650733333333334e-05, + "loss": 1.2975363159179687, + "step": 560500 + }, + { + "epoch": 74.74666666666667, + "grad_norm": 0.8789073824882507, + "learning_rate": 1.2644066666666668e-05, + "loss": 1.2992245483398437, + "step": 560600 + }, + { + "epoch": 74.76, + "grad_norm": 0.8771540522575378, + "learning_rate": 1.2637399999999999e-05, + "loss": 1.2950447082519532, + "step": 560700 + }, + { + "epoch": 74.77333333333333, + "grad_norm": 0.9482132196426392, + "learning_rate": 1.2630800000000001e-05, + "loss": 1.2989950561523438, + "step": 560800 + }, + { + "epoch": 74.78666666666666, + "grad_norm": 0.9016578793525696, + "learning_rate": 1.2624133333333335e-05, + "loss": 1.2909823608398439, + "step": 560900 + }, + { + "epoch": 74.8, + "grad_norm": 0.9523131847381592, + "learning_rate": 1.2617466666666666e-05, + "loss": 1.2979310607910157, + "step": 561000 + }, + { + "epoch": 74.81333333333333, + "grad_norm": 0.8999745845794678, + "learning_rate": 1.26108e-05, + "loss": 1.2966058349609375, + "step": 561100 + }, + { + "epoch": 74.82666666666667, + "grad_norm": 0.8210212588310242, + "learning_rate": 1.2604133333333335e-05, + "loss": 1.297114715576172, + "step": 561200 + }, + { + "epoch": 74.84, + "grad_norm": 0.8882796764373779, + "learning_rate": 1.259746666666667e-05, + "loss": 1.2930776977539062, + "step": 561300 + }, + { + "epoch": 74.85333333333334, + "grad_norm": 0.8462830185890198, + "learning_rate": 1.25908e-05, + "loss": 1.2994015502929688, + "step": 561400 + }, + { + "epoch": 74.86666666666666, + "grad_norm": 0.9026128649711609, + "learning_rate": 1.2584133333333334e-05, + "loss": 1.29409912109375, + "step": 561500 + }, + { + "epoch": 74.88, + "grad_norm": 0.9389071464538574, + "learning_rate": 1.2577466666666668e-05, + "loss": 1.2977705383300782, + "step": 561600 + }, + { + "epoch": 74.89333333333333, + "grad_norm": 0.9085119366645813, + "learning_rate": 1.25708e-05, + "loss": 1.296661376953125, + "step": 561700 + }, + { + "epoch": 74.90666666666667, + "grad_norm": 1.0114595890045166, + "learning_rate": 1.2564133333333334e-05, + "loss": 1.2983500671386718, + "step": 561800 + }, + { + "epoch": 74.92, + "grad_norm": 0.8648547530174255, + "learning_rate": 1.2557466666666668e-05, + "loss": 1.2987898254394532, + "step": 561900 + }, + { + "epoch": 74.93333333333334, + "grad_norm": 0.9071376323699951, + "learning_rate": 1.2550800000000002e-05, + "loss": 1.295235137939453, + "step": 562000 + }, + { + "epoch": 74.94666666666667, + "grad_norm": 0.8965473175048828, + "learning_rate": 1.2544133333333332e-05, + "loss": 1.3004685974121093, + "step": 562100 + }, + { + "epoch": 74.96, + "grad_norm": 0.8977342844009399, + "learning_rate": 1.2537466666666666e-05, + "loss": 1.297232666015625, + "step": 562200 + }, + { + "epoch": 74.97333333333333, + "grad_norm": 0.9045539498329163, + "learning_rate": 1.25308e-05, + "loss": 1.298996124267578, + "step": 562300 + }, + { + "epoch": 74.98666666666666, + "grad_norm": 0.8950331807136536, + "learning_rate": 1.2524133333333334e-05, + "loss": 1.2971505737304687, + "step": 562400 + }, + { + "epoch": 75.0, + "grad_norm": 0.8777759671211243, + "learning_rate": 1.2517466666666667e-05, + "loss": 1.2992008972167968, + "step": 562500 + }, + { + "epoch": 75.01333333333334, + "grad_norm": 0.8952645063400269, + "learning_rate": 1.25108e-05, + "loss": 1.2640491485595704, + "step": 562600 + }, + { + "epoch": 75.02666666666667, + "grad_norm": 0.877943217754364, + "learning_rate": 1.2504133333333335e-05, + "loss": 1.2647196197509765, + "step": 562700 + }, + { + "epoch": 75.04, + "grad_norm": 0.8919233083724976, + "learning_rate": 1.2497466666666667e-05, + "loss": 1.2628135681152344, + "step": 562800 + }, + { + "epoch": 75.05333333333333, + "grad_norm": 0.8733011484146118, + "learning_rate": 1.2490866666666668e-05, + "loss": 1.2628070831298828, + "step": 562900 + }, + { + "epoch": 75.06666666666666, + "grad_norm": 0.9152896404266357, + "learning_rate": 1.24842e-05, + "loss": 1.264164352416992, + "step": 563000 + }, + { + "epoch": 75.08, + "grad_norm": 0.8281626105308533, + "learning_rate": 1.2477533333333334e-05, + "loss": 1.2650759887695313, + "step": 563100 + }, + { + "epoch": 75.09333333333333, + "grad_norm": 0.8916683197021484, + "learning_rate": 1.2470866666666666e-05, + "loss": 1.2685887145996093, + "step": 563200 + }, + { + "epoch": 75.10666666666667, + "grad_norm": 0.9115118980407715, + "learning_rate": 1.2464200000000002e-05, + "loss": 1.272508544921875, + "step": 563300 + }, + { + "epoch": 75.12, + "grad_norm": 0.8884676098823547, + "learning_rate": 1.2457533333333334e-05, + "loss": 1.2687050628662109, + "step": 563400 + }, + { + "epoch": 75.13333333333334, + "grad_norm": 0.8922853469848633, + "learning_rate": 1.2450866666666668e-05, + "loss": 1.2676511383056641, + "step": 563500 + }, + { + "epoch": 75.14666666666666, + "grad_norm": 0.8890056610107422, + "learning_rate": 1.24442e-05, + "loss": 1.2675907135009765, + "step": 563600 + }, + { + "epoch": 75.16, + "grad_norm": 0.8995161652565002, + "learning_rate": 1.2437533333333334e-05, + "loss": 1.2708394622802734, + "step": 563700 + }, + { + "epoch": 75.17333333333333, + "grad_norm": 0.8850069046020508, + "learning_rate": 1.2430866666666666e-05, + "loss": 1.268143768310547, + "step": 563800 + }, + { + "epoch": 75.18666666666667, + "grad_norm": 0.8508411645889282, + "learning_rate": 1.24242e-05, + "loss": 1.2690723419189454, + "step": 563900 + }, + { + "epoch": 75.2, + "grad_norm": 0.8832269310951233, + "learning_rate": 1.2417533333333334e-05, + "loss": 1.2709259033203124, + "step": 564000 + }, + { + "epoch": 75.21333333333334, + "grad_norm": 0.8733813762664795, + "learning_rate": 1.2410866666666668e-05, + "loss": 1.2706985473632812, + "step": 564100 + }, + { + "epoch": 75.22666666666667, + "grad_norm": 0.8645262122154236, + "learning_rate": 1.24042e-05, + "loss": 1.27591796875, + "step": 564200 + }, + { + "epoch": 75.24, + "grad_norm": 0.8740404844284058, + "learning_rate": 1.2397533333333335e-05, + "loss": 1.2723672485351563, + "step": 564300 + }, + { + "epoch": 75.25333333333333, + "grad_norm": 0.8905038833618164, + "learning_rate": 1.2390866666666667e-05, + "loss": 1.2685739135742187, + "step": 564400 + }, + { + "epoch": 75.26666666666667, + "grad_norm": 0.8788304328918457, + "learning_rate": 1.23842e-05, + "loss": 1.275366973876953, + "step": 564500 + }, + { + "epoch": 75.28, + "grad_norm": 0.9056509733200073, + "learning_rate": 1.2377533333333335e-05, + "loss": 1.2775337982177735, + "step": 564600 + }, + { + "epoch": 75.29333333333334, + "grad_norm": 0.900590181350708, + "learning_rate": 1.2370866666666667e-05, + "loss": 1.2763518524169921, + "step": 564700 + }, + { + "epoch": 75.30666666666667, + "grad_norm": 0.8497269153594971, + "learning_rate": 1.2364200000000001e-05, + "loss": 1.273313980102539, + "step": 564800 + }, + { + "epoch": 75.32, + "grad_norm": 0.9780153036117554, + "learning_rate": 1.2357600000000002e-05, + "loss": 1.2757484436035156, + "step": 564900 + }, + { + "epoch": 75.33333333333333, + "grad_norm": 0.9048566818237305, + "learning_rate": 1.2350933333333334e-05, + "loss": 1.2719178771972657, + "step": 565000 + }, + { + "epoch": 75.34666666666666, + "grad_norm": 0.8986741900444031, + "learning_rate": 1.2344266666666668e-05, + "loss": 1.2778455352783202, + "step": 565100 + }, + { + "epoch": 75.36, + "grad_norm": 0.8905960321426392, + "learning_rate": 1.23376e-05, + "loss": 1.2795767974853516, + "step": 565200 + }, + { + "epoch": 75.37333333333333, + "grad_norm": 0.9009892344474792, + "learning_rate": 1.2330933333333334e-05, + "loss": 1.2813603210449218, + "step": 565300 + }, + { + "epoch": 75.38666666666667, + "grad_norm": 0.8851236701011658, + "learning_rate": 1.2324266666666666e-05, + "loss": 1.2804205322265625, + "step": 565400 + }, + { + "epoch": 75.4, + "grad_norm": 0.8907919526100159, + "learning_rate": 1.23176e-05, + "loss": 1.2816227722167968, + "step": 565500 + }, + { + "epoch": 75.41333333333333, + "grad_norm": 0.8697381019592285, + "learning_rate": 1.2310933333333334e-05, + "loss": 1.2802578735351562, + "step": 565600 + }, + { + "epoch": 75.42666666666666, + "grad_norm": 0.9782188534736633, + "learning_rate": 1.2304266666666667e-05, + "loss": 1.2815553283691405, + "step": 565700 + }, + { + "epoch": 75.44, + "grad_norm": 0.9227743744850159, + "learning_rate": 1.22976e-05, + "loss": 1.2832655334472656, + "step": 565800 + }, + { + "epoch": 75.45333333333333, + "grad_norm": 0.903657078742981, + "learning_rate": 1.2290933333333333e-05, + "loss": 1.2772044372558593, + "step": 565900 + }, + { + "epoch": 75.46666666666667, + "grad_norm": 0.8705148696899414, + "learning_rate": 1.2284266666666667e-05, + "loss": 1.28025146484375, + "step": 566000 + }, + { + "epoch": 75.48, + "grad_norm": 0.8651654720306396, + "learning_rate": 1.22776e-05, + "loss": 1.280309600830078, + "step": 566100 + }, + { + "epoch": 75.49333333333334, + "grad_norm": 0.8842359185218811, + "learning_rate": 1.2270933333333335e-05, + "loss": 1.2774700927734375, + "step": 566200 + }, + { + "epoch": 75.50666666666666, + "grad_norm": 0.8937225341796875, + "learning_rate": 1.2264266666666667e-05, + "loss": 1.2816136169433594, + "step": 566300 + }, + { + "epoch": 75.52, + "grad_norm": 0.9345490336418152, + "learning_rate": 1.2257600000000001e-05, + "loss": 1.2842210388183595, + "step": 566400 + }, + { + "epoch": 75.53333333333333, + "grad_norm": 0.859245777130127, + "learning_rate": 1.2250933333333333e-05, + "loss": 1.2751191711425782, + "step": 566500 + }, + { + "epoch": 75.54666666666667, + "grad_norm": 0.9067889451980591, + "learning_rate": 1.2244266666666667e-05, + "loss": 1.2782907104492187, + "step": 566600 + }, + { + "epoch": 75.56, + "grad_norm": 0.9356161952018738, + "learning_rate": 1.2237600000000001e-05, + "loss": 1.2806317138671874, + "step": 566700 + }, + { + "epoch": 75.57333333333334, + "grad_norm": 0.9229298830032349, + "learning_rate": 1.2230933333333335e-05, + "loss": 1.2850361633300782, + "step": 566800 + }, + { + "epoch": 75.58666666666667, + "grad_norm": 0.9154577851295471, + "learning_rate": 1.2224333333333334e-05, + "loss": 1.2825677490234375, + "step": 566900 + }, + { + "epoch": 75.6, + "grad_norm": 0.9192464351654053, + "learning_rate": 1.2217666666666668e-05, + "loss": 1.2844052124023437, + "step": 567000 + }, + { + "epoch": 75.61333333333333, + "grad_norm": 0.8860438466072083, + "learning_rate": 1.2211e-05, + "loss": 1.2842628479003906, + "step": 567100 + }, + { + "epoch": 75.62666666666667, + "grad_norm": 0.9283733367919922, + "learning_rate": 1.2204333333333334e-05, + "loss": 1.2807681274414062, + "step": 567200 + }, + { + "epoch": 75.64, + "grad_norm": 0.9022039771080017, + "learning_rate": 1.2197666666666667e-05, + "loss": 1.2847116088867188, + "step": 567300 + }, + { + "epoch": 75.65333333333334, + "grad_norm": 0.9383234977722168, + "learning_rate": 1.2191e-05, + "loss": 1.2842823791503906, + "step": 567400 + }, + { + "epoch": 75.66666666666667, + "grad_norm": 0.8987548351287842, + "learning_rate": 1.2184333333333333e-05, + "loss": 1.2830416870117187, + "step": 567500 + }, + { + "epoch": 75.68, + "grad_norm": 0.9250150918960571, + "learning_rate": 1.2177666666666669e-05, + "loss": 1.2888677978515626, + "step": 567600 + }, + { + "epoch": 75.69333333333333, + "grad_norm": 0.8937551975250244, + "learning_rate": 1.2171000000000001e-05, + "loss": 1.2843814086914063, + "step": 567700 + }, + { + "epoch": 75.70666666666666, + "grad_norm": 0.93442302942276, + "learning_rate": 1.2164333333333335e-05, + "loss": 1.2801531982421874, + "step": 567800 + }, + { + "epoch": 75.72, + "grad_norm": 0.9443467855453491, + "learning_rate": 1.2157666666666667e-05, + "loss": 1.2907289123535157, + "step": 567900 + }, + { + "epoch": 75.73333333333333, + "grad_norm": 0.9479007124900818, + "learning_rate": 1.2151000000000001e-05, + "loss": 1.2885336303710937, + "step": 568000 + }, + { + "epoch": 75.74666666666667, + "grad_norm": 0.9026948809623718, + "learning_rate": 1.2144333333333333e-05, + "loss": 1.28862060546875, + "step": 568100 + }, + { + "epoch": 75.76, + "grad_norm": 0.9431944489479065, + "learning_rate": 1.2137666666666667e-05, + "loss": 1.2903639221191405, + "step": 568200 + }, + { + "epoch": 75.77333333333333, + "grad_norm": 0.8847748637199402, + "learning_rate": 1.2131000000000001e-05, + "loss": 1.2831291198730468, + "step": 568300 + }, + { + "epoch": 75.78666666666666, + "grad_norm": 0.9042606949806213, + "learning_rate": 1.2124333333333334e-05, + "loss": 1.2880831909179689, + "step": 568400 + }, + { + "epoch": 75.8, + "grad_norm": 0.8872798085212708, + "learning_rate": 1.2117666666666667e-05, + "loss": 1.289575958251953, + "step": 568500 + }, + { + "epoch": 75.81333333333333, + "grad_norm": 0.8426007628440857, + "learning_rate": 1.2111e-05, + "loss": 1.2929600524902343, + "step": 568600 + }, + { + "epoch": 75.82666666666667, + "grad_norm": 0.8785552978515625, + "learning_rate": 1.2104333333333334e-05, + "loss": 1.2918893432617187, + "step": 568700 + }, + { + "epoch": 75.84, + "grad_norm": 0.8560172915458679, + "learning_rate": 1.2097666666666668e-05, + "loss": 1.2879776000976562, + "step": 568800 + }, + { + "epoch": 75.85333333333334, + "grad_norm": 0.9080483317375183, + "learning_rate": 1.2091000000000002e-05, + "loss": 1.289279022216797, + "step": 568900 + }, + { + "epoch": 75.86666666666666, + "grad_norm": 0.8898365497589111, + "learning_rate": 1.20844e-05, + "loss": 1.2897042846679687, + "step": 569000 + }, + { + "epoch": 75.88, + "grad_norm": 0.95564204454422, + "learning_rate": 1.2077733333333335e-05, + "loss": 1.2889401245117187, + "step": 569100 + }, + { + "epoch": 75.89333333333333, + "grad_norm": 0.8454336524009705, + "learning_rate": 1.2071066666666667e-05, + "loss": 1.293185272216797, + "step": 569200 + }, + { + "epoch": 75.90666666666667, + "grad_norm": 0.9560728669166565, + "learning_rate": 1.2064400000000001e-05, + "loss": 1.2893829345703125, + "step": 569300 + }, + { + "epoch": 75.92, + "grad_norm": 0.9126923084259033, + "learning_rate": 1.2057733333333333e-05, + "loss": 1.2923159790039063, + "step": 569400 + }, + { + "epoch": 75.93333333333334, + "grad_norm": 0.8590043783187866, + "learning_rate": 1.2051066666666667e-05, + "loss": 1.29072265625, + "step": 569500 + }, + { + "epoch": 75.94666666666667, + "grad_norm": 0.8858271241188049, + "learning_rate": 1.20444e-05, + "loss": 1.2948809814453126, + "step": 569600 + }, + { + "epoch": 75.96, + "grad_norm": 0.9448450803756714, + "learning_rate": 1.2037733333333333e-05, + "loss": 1.2897013854980468, + "step": 569700 + }, + { + "epoch": 75.97333333333333, + "grad_norm": 0.8658963441848755, + "learning_rate": 1.2031066666666667e-05, + "loss": 1.2937811279296876, + "step": 569800 + }, + { + "epoch": 75.98666666666666, + "grad_norm": 0.9109137654304504, + "learning_rate": 1.2024400000000001e-05, + "loss": 1.2949751281738282, + "step": 569900 + }, + { + "epoch": 76.0, + "grad_norm": 0.90373694896698, + "learning_rate": 1.2017733333333334e-05, + "loss": 1.2907695007324218, + "step": 570000 + }, + { + "epoch": 76.01333333333334, + "grad_norm": 0.9023296236991882, + "learning_rate": 1.2011066666666668e-05, + "loss": 1.2564220428466797, + "step": 570100 + }, + { + "epoch": 76.02666666666667, + "grad_norm": 0.9075928926467896, + "learning_rate": 1.20044e-05, + "loss": 1.2600310516357422, + "step": 570200 + }, + { + "epoch": 76.04, + "grad_norm": 0.8993645310401917, + "learning_rate": 1.1997733333333334e-05, + "loss": 1.2612214660644532, + "step": 570300 + }, + { + "epoch": 76.05333333333333, + "grad_norm": 0.8090634942054749, + "learning_rate": 1.1991066666666668e-05, + "loss": 1.2595449829101562, + "step": 570400 + }, + { + "epoch": 76.06666666666666, + "grad_norm": 0.8265924453735352, + "learning_rate": 1.1984400000000002e-05, + "loss": 1.260252914428711, + "step": 570500 + }, + { + "epoch": 76.08, + "grad_norm": 0.9115302562713623, + "learning_rate": 1.1977733333333334e-05, + "loss": 1.2610408020019532, + "step": 570600 + }, + { + "epoch": 76.09333333333333, + "grad_norm": 0.9297177195549011, + "learning_rate": 1.1971066666666668e-05, + "loss": 1.2638664245605469, + "step": 570700 + }, + { + "epoch": 76.10666666666667, + "grad_norm": 0.8523125648498535, + "learning_rate": 1.19644e-05, + "loss": 1.2649871063232423, + "step": 570800 + }, + { + "epoch": 76.12, + "grad_norm": 0.9545742869377136, + "learning_rate": 1.1957733333333334e-05, + "loss": 1.2625828552246094, + "step": 570900 + }, + { + "epoch": 76.13333333333334, + "grad_norm": 0.8487697839736938, + "learning_rate": 1.1951133333333333e-05, + "loss": 1.2658775329589844, + "step": 571000 + }, + { + "epoch": 76.14666666666666, + "grad_norm": 0.9032588601112366, + "learning_rate": 1.1944466666666667e-05, + "loss": 1.2628345489501953, + "step": 571100 + }, + { + "epoch": 76.16, + "grad_norm": 0.8663509488105774, + "learning_rate": 1.1937800000000001e-05, + "loss": 1.2638357543945313, + "step": 571200 + }, + { + "epoch": 76.17333333333333, + "grad_norm": 0.8065935373306274, + "learning_rate": 1.1931133333333335e-05, + "loss": 1.2654532623291015, + "step": 571300 + }, + { + "epoch": 76.18666666666667, + "grad_norm": 0.8923590779304504, + "learning_rate": 1.1924466666666667e-05, + "loss": 1.2625431823730469, + "step": 571400 + }, + { + "epoch": 76.2, + "grad_norm": 0.9256909489631653, + "learning_rate": 1.1917800000000001e-05, + "loss": 1.2661501312255858, + "step": 571500 + }, + { + "epoch": 76.21333333333334, + "grad_norm": 0.8839671015739441, + "learning_rate": 1.1911133333333334e-05, + "loss": 1.2691407775878907, + "step": 571600 + }, + { + "epoch": 76.22666666666667, + "grad_norm": 0.9196544289588928, + "learning_rate": 1.1904466666666666e-05, + "loss": 1.2661520385742187, + "step": 571700 + }, + { + "epoch": 76.24, + "grad_norm": 0.8353877663612366, + "learning_rate": 1.18978e-05, + "loss": 1.2685884094238282, + "step": 571800 + }, + { + "epoch": 76.25333333333333, + "grad_norm": 0.8533715605735779, + "learning_rate": 1.1891133333333334e-05, + "loss": 1.2692129516601562, + "step": 571900 + }, + { + "epoch": 76.26666666666667, + "grad_norm": 0.8897333145141602, + "learning_rate": 1.1884466666666668e-05, + "loss": 1.2691090393066407, + "step": 572000 + }, + { + "epoch": 76.28, + "grad_norm": 0.90340656042099, + "learning_rate": 1.18778e-05, + "loss": 1.2702519989013672, + "step": 572100 + }, + { + "epoch": 76.29333333333334, + "grad_norm": 0.8940246105194092, + "learning_rate": 1.1871133333333334e-05, + "loss": 1.2684158325195312, + "step": 572200 + }, + { + "epoch": 76.30666666666667, + "grad_norm": 0.8823217153549194, + "learning_rate": 1.1864466666666666e-05, + "loss": 1.2694771575927735, + "step": 572300 + }, + { + "epoch": 76.32, + "grad_norm": 0.8801313638687134, + "learning_rate": 1.18578e-05, + "loss": 1.2695850372314452, + "step": 572400 + }, + { + "epoch": 76.33333333333333, + "grad_norm": 0.8763577342033386, + "learning_rate": 1.1851133333333334e-05, + "loss": 1.2703809356689453, + "step": 572500 + }, + { + "epoch": 76.34666666666666, + "grad_norm": 0.9414470195770264, + "learning_rate": 1.1844466666666668e-05, + "loss": 1.2732679748535156, + "step": 572600 + }, + { + "epoch": 76.36, + "grad_norm": 0.918465256690979, + "learning_rate": 1.18378e-05, + "loss": 1.2702081298828125, + "step": 572700 + }, + { + "epoch": 76.37333333333333, + "grad_norm": 0.8856133222579956, + "learning_rate": 1.1831133333333334e-05, + "loss": 1.2735169219970703, + "step": 572800 + }, + { + "epoch": 76.38666666666667, + "grad_norm": 0.9244083166122437, + "learning_rate": 1.1824466666666667e-05, + "loss": 1.273417739868164, + "step": 572900 + }, + { + "epoch": 76.4, + "grad_norm": 0.8916839957237244, + "learning_rate": 1.1817866666666667e-05, + "loss": 1.2737143707275391, + "step": 573000 + }, + { + "epoch": 76.41333333333333, + "grad_norm": 0.8814034461975098, + "learning_rate": 1.18112e-05, + "loss": 1.27196533203125, + "step": 573100 + }, + { + "epoch": 76.42666666666666, + "grad_norm": 0.8989616632461548, + "learning_rate": 1.1804533333333334e-05, + "loss": 1.2706958770751953, + "step": 573200 + }, + { + "epoch": 76.44, + "grad_norm": 0.8440143465995789, + "learning_rate": 1.1797866666666668e-05, + "loss": 1.271722946166992, + "step": 573300 + }, + { + "epoch": 76.45333333333333, + "grad_norm": 0.9400561451911926, + "learning_rate": 1.1791200000000002e-05, + "loss": 1.27082763671875, + "step": 573400 + }, + { + "epoch": 76.46666666666667, + "grad_norm": 0.9104871153831482, + "learning_rate": 1.1784533333333334e-05, + "loss": 1.274063720703125, + "step": 573500 + }, + { + "epoch": 76.48, + "grad_norm": 0.9427663087844849, + "learning_rate": 1.1777866666666668e-05, + "loss": 1.2744304656982421, + "step": 573600 + }, + { + "epoch": 76.49333333333334, + "grad_norm": 0.930120587348938, + "learning_rate": 1.17712e-05, + "loss": 1.2735147857666016, + "step": 573700 + }, + { + "epoch": 76.50666666666666, + "grad_norm": 0.8373743891716003, + "learning_rate": 1.1764533333333334e-05, + "loss": 1.2727003479003907, + "step": 573800 + }, + { + "epoch": 76.52, + "grad_norm": 0.8900668621063232, + "learning_rate": 1.1757866666666666e-05, + "loss": 1.278759994506836, + "step": 573900 + }, + { + "epoch": 76.53333333333333, + "grad_norm": 0.9131837487220764, + "learning_rate": 1.1751200000000002e-05, + "loss": 1.279442596435547, + "step": 574000 + }, + { + "epoch": 76.54666666666667, + "grad_norm": 0.8976189494132996, + "learning_rate": 1.1744533333333334e-05, + "loss": 1.2741080474853517, + "step": 574100 + }, + { + "epoch": 76.56, + "grad_norm": 0.8666889071464539, + "learning_rate": 1.1737866666666668e-05, + "loss": 1.2774742126464844, + "step": 574200 + }, + { + "epoch": 76.57333333333334, + "grad_norm": 0.8947174549102783, + "learning_rate": 1.17312e-05, + "loss": 1.2774790954589843, + "step": 574300 + }, + { + "epoch": 76.58666666666667, + "grad_norm": 0.9052897691726685, + "learning_rate": 1.1724533333333333e-05, + "loss": 1.2790341949462891, + "step": 574400 + }, + { + "epoch": 76.6, + "grad_norm": 0.8981863260269165, + "learning_rate": 1.1717866666666667e-05, + "loss": 1.2725530242919922, + "step": 574500 + }, + { + "epoch": 76.61333333333333, + "grad_norm": 0.8950761556625366, + "learning_rate": 1.17112e-05, + "loss": 1.277298583984375, + "step": 574600 + }, + { + "epoch": 76.62666666666667, + "grad_norm": 0.9243502616882324, + "learning_rate": 1.1704533333333335e-05, + "loss": 1.279012222290039, + "step": 574700 + }, + { + "epoch": 76.64, + "grad_norm": 0.9470920562744141, + "learning_rate": 1.1697866666666667e-05, + "loss": 1.2796407318115235, + "step": 574800 + }, + { + "epoch": 76.65333333333334, + "grad_norm": 0.9210641980171204, + "learning_rate": 1.16912e-05, + "loss": 1.27352294921875, + "step": 574900 + }, + { + "epoch": 76.66666666666667, + "grad_norm": 0.9046253561973572, + "learning_rate": 1.1684600000000002e-05, + "loss": 1.2836494445800781, + "step": 575000 + }, + { + "epoch": 76.68, + "grad_norm": 0.8648155927658081, + "learning_rate": 1.1677933333333334e-05, + "loss": 1.283481903076172, + "step": 575100 + }, + { + "epoch": 76.69333333333333, + "grad_norm": 0.9311123490333557, + "learning_rate": 1.1671266666666668e-05, + "loss": 1.2783139801025392, + "step": 575200 + }, + { + "epoch": 76.70666666666666, + "grad_norm": 0.913091242313385, + "learning_rate": 1.16646e-05, + "loss": 1.2771622467041015, + "step": 575300 + }, + { + "epoch": 76.72, + "grad_norm": 0.8883966207504272, + "learning_rate": 1.1657933333333332e-05, + "loss": 1.2791126251220704, + "step": 575400 + }, + { + "epoch": 76.73333333333333, + "grad_norm": 0.9038500189781189, + "learning_rate": 1.1651266666666668e-05, + "loss": 1.2827508544921875, + "step": 575500 + }, + { + "epoch": 76.74666666666667, + "grad_norm": 0.8970502614974976, + "learning_rate": 1.16446e-05, + "loss": 1.2832752990722656, + "step": 575600 + }, + { + "epoch": 76.76, + "grad_norm": 0.9356183409690857, + "learning_rate": 1.1637933333333334e-05, + "loss": 1.2858283996582032, + "step": 575700 + }, + { + "epoch": 76.77333333333333, + "grad_norm": 0.8676143288612366, + "learning_rate": 1.1631266666666667e-05, + "loss": 1.2802749633789063, + "step": 575800 + }, + { + "epoch": 76.78666666666666, + "grad_norm": 0.901439368724823, + "learning_rate": 1.16246e-05, + "loss": 1.279897689819336, + "step": 575900 + }, + { + "epoch": 76.8, + "grad_norm": 0.9266265630722046, + "learning_rate": 1.1617933333333333e-05, + "loss": 1.2846217346191406, + "step": 576000 + }, + { + "epoch": 76.81333333333333, + "grad_norm": 0.8446720838546753, + "learning_rate": 1.1611266666666667e-05, + "loss": 1.28507568359375, + "step": 576100 + }, + { + "epoch": 76.82666666666667, + "grad_norm": 0.9122141599655151, + "learning_rate": 1.16046e-05, + "loss": 1.2835508728027343, + "step": 576200 + }, + { + "epoch": 76.84, + "grad_norm": 0.9296014308929443, + "learning_rate": 1.1597933333333335e-05, + "loss": 1.2806108093261719, + "step": 576300 + }, + { + "epoch": 76.85333333333334, + "grad_norm": 0.9515265226364136, + "learning_rate": 1.1591266666666667e-05, + "loss": 1.2886801147460938, + "step": 576400 + }, + { + "epoch": 76.86666666666666, + "grad_norm": 0.9384329915046692, + "learning_rate": 1.1584600000000001e-05, + "loss": 1.2862442016601563, + "step": 576500 + }, + { + "epoch": 76.88, + "grad_norm": 0.911675214767456, + "learning_rate": 1.1577933333333333e-05, + "loss": 1.2852195739746093, + "step": 576600 + }, + { + "epoch": 76.89333333333333, + "grad_norm": 0.9368600845336914, + "learning_rate": 1.1571266666666667e-05, + "loss": 1.2880644226074218, + "step": 576700 + }, + { + "epoch": 76.90666666666667, + "grad_norm": 0.9342831373214722, + "learning_rate": 1.1564600000000001e-05, + "loss": 1.2856315612792968, + "step": 576800 + }, + { + "epoch": 76.92, + "grad_norm": 0.8949527144432068, + "learning_rate": 1.1557933333333335e-05, + "loss": 1.290764617919922, + "step": 576900 + }, + { + "epoch": 76.93333333333334, + "grad_norm": 0.9204317927360535, + "learning_rate": 1.1551333333333334e-05, + "loss": 1.2894427490234375, + "step": 577000 + }, + { + "epoch": 76.94666666666667, + "grad_norm": 0.9253742098808289, + "learning_rate": 1.1544666666666668e-05, + "loss": 1.2840521240234375, + "step": 577100 + }, + { + "epoch": 76.96, + "grad_norm": 0.9282165765762329, + "learning_rate": 1.1538e-05, + "loss": 1.2856878662109374, + "step": 577200 + }, + { + "epoch": 76.97333333333333, + "grad_norm": 0.8722630143165588, + "learning_rate": 1.1531333333333334e-05, + "loss": 1.2854739379882814, + "step": 577300 + }, + { + "epoch": 76.98666666666666, + "grad_norm": 0.913749098777771, + "learning_rate": 1.1524666666666667e-05, + "loss": 1.2859970092773438, + "step": 577400 + }, + { + "epoch": 77.0, + "grad_norm": 0.961866021156311, + "learning_rate": 1.1518e-05, + "loss": 1.2846250915527344, + "step": 577500 + }, + { + "epoch": 77.01333333333334, + "grad_norm": 0.905587375164032, + "learning_rate": 1.1511333333333334e-05, + "loss": 1.255999755859375, + "step": 577600 + }, + { + "epoch": 77.02666666666667, + "grad_norm": 0.9109494686126709, + "learning_rate": 1.1504666666666668e-05, + "loss": 1.257362823486328, + "step": 577700 + }, + { + "epoch": 77.04, + "grad_norm": 0.8600365519523621, + "learning_rate": 1.1498e-05, + "loss": 1.255925064086914, + "step": 577800 + }, + { + "epoch": 77.05333333333333, + "grad_norm": 0.898125410079956, + "learning_rate": 1.1491333333333335e-05, + "loss": 1.251571273803711, + "step": 577900 + }, + { + "epoch": 77.06666666666666, + "grad_norm": 0.8492289185523987, + "learning_rate": 1.1484666666666667e-05, + "loss": 1.2551496887207032, + "step": 578000 + }, + { + "epoch": 77.08, + "grad_norm": 0.8958540558815002, + "learning_rate": 1.1478e-05, + "loss": 1.2567188262939453, + "step": 578100 + }, + { + "epoch": 77.09333333333333, + "grad_norm": 0.8623022437095642, + "learning_rate": 1.1471333333333333e-05, + "loss": 1.2552345275878907, + "step": 578200 + }, + { + "epoch": 77.10666666666667, + "grad_norm": 0.8635573983192444, + "learning_rate": 1.1464666666666667e-05, + "loss": 1.2586454010009767, + "step": 578300 + }, + { + "epoch": 77.12, + "grad_norm": 0.8765349388122559, + "learning_rate": 1.1458000000000001e-05, + "loss": 1.2600203704833985, + "step": 578400 + }, + { + "epoch": 77.13333333333334, + "grad_norm": 0.862362802028656, + "learning_rate": 1.1451333333333333e-05, + "loss": 1.2597164916992187, + "step": 578500 + }, + { + "epoch": 77.14666666666666, + "grad_norm": 0.910469651222229, + "learning_rate": 1.1444666666666667e-05, + "loss": 1.2607437896728515, + "step": 578600 + }, + { + "epoch": 77.16, + "grad_norm": 0.9068487286567688, + "learning_rate": 1.1438e-05, + "loss": 1.2581224060058593, + "step": 578700 + }, + { + "epoch": 77.17333333333333, + "grad_norm": 0.818719744682312, + "learning_rate": 1.1431333333333334e-05, + "loss": 1.257034454345703, + "step": 578800 + }, + { + "epoch": 77.18666666666667, + "grad_norm": 0.9217579364776611, + "learning_rate": 1.1424666666666668e-05, + "loss": 1.2629297637939454, + "step": 578900 + }, + { + "epoch": 77.2, + "grad_norm": 0.848243772983551, + "learning_rate": 1.1418066666666667e-05, + "loss": 1.2635003662109374, + "step": 579000 + }, + { + "epoch": 77.21333333333334, + "grad_norm": 0.8776289820671082, + "learning_rate": 1.14114e-05, + "loss": 1.2585693359375, + "step": 579100 + }, + { + "epoch": 77.22666666666667, + "grad_norm": 0.9173794388771057, + "learning_rate": 1.1404733333333335e-05, + "loss": 1.2622824859619142, + "step": 579200 + }, + { + "epoch": 77.24, + "grad_norm": 0.873337984085083, + "learning_rate": 1.1398066666666667e-05, + "loss": 1.2653639221191406, + "step": 579300 + }, + { + "epoch": 77.25333333333333, + "grad_norm": 0.9575465321540833, + "learning_rate": 1.13914e-05, + "loss": 1.2643247222900391, + "step": 579400 + }, + { + "epoch": 77.26666666666667, + "grad_norm": 0.8416218161582947, + "learning_rate": 1.1384733333333333e-05, + "loss": 1.2624178314208985, + "step": 579500 + }, + { + "epoch": 77.28, + "grad_norm": 0.9230799674987793, + "learning_rate": 1.1378066666666667e-05, + "loss": 1.2626051330566406, + "step": 579600 + }, + { + "epoch": 77.29333333333334, + "grad_norm": 0.8633724451065063, + "learning_rate": 1.1371400000000001e-05, + "loss": 1.2685257720947265, + "step": 579700 + }, + { + "epoch": 77.30666666666667, + "grad_norm": 0.9460192322731018, + "learning_rate": 1.1364733333333335e-05, + "loss": 1.2646743774414062, + "step": 579800 + }, + { + "epoch": 77.32, + "grad_norm": 0.8928385376930237, + "learning_rate": 1.1358066666666667e-05, + "loss": 1.2659114837646483, + "step": 579900 + }, + { + "epoch": 77.33333333333333, + "grad_norm": 0.8571158051490784, + "learning_rate": 1.1351400000000001e-05, + "loss": 1.2670587921142578, + "step": 580000 + }, + { + "epoch": 77.34666666666666, + "grad_norm": 0.858704686164856, + "learning_rate": 1.1344733333333333e-05, + "loss": 1.2675933837890625, + "step": 580100 + }, + { + "epoch": 77.36, + "grad_norm": 0.9516656398773193, + "learning_rate": 1.1338066666666667e-05, + "loss": 1.2708335876464845, + "step": 580200 + }, + { + "epoch": 77.37333333333333, + "grad_norm": 0.8929257392883301, + "learning_rate": 1.13314e-05, + "loss": 1.265479278564453, + "step": 580300 + }, + { + "epoch": 77.38666666666667, + "grad_norm": 0.912930428981781, + "learning_rate": 1.1324733333333334e-05, + "loss": 1.2636156463623047, + "step": 580400 + }, + { + "epoch": 77.4, + "grad_norm": 0.8615267276763916, + "learning_rate": 1.1318066666666668e-05, + "loss": 1.2651126861572266, + "step": 580500 + }, + { + "epoch": 77.41333333333333, + "grad_norm": 0.8684864640235901, + "learning_rate": 1.1311400000000002e-05, + "loss": 1.2702027130126954, + "step": 580600 + }, + { + "epoch": 77.42666666666666, + "grad_norm": 0.8868072628974915, + "learning_rate": 1.1304733333333334e-05, + "loss": 1.2698739624023438, + "step": 580700 + }, + { + "epoch": 77.44, + "grad_norm": 0.9572634696960449, + "learning_rate": 1.1298066666666666e-05, + "loss": 1.268133544921875, + "step": 580800 + }, + { + "epoch": 77.45333333333333, + "grad_norm": 0.9197629690170288, + "learning_rate": 1.12914e-05, + "loss": 1.2709165954589843, + "step": 580900 + }, + { + "epoch": 77.46666666666667, + "grad_norm": 0.8801963329315186, + "learning_rate": 1.1284733333333334e-05, + "loss": 1.2684906768798827, + "step": 581000 + }, + { + "epoch": 77.48, + "grad_norm": 0.8818572163581848, + "learning_rate": 1.1278133333333333e-05, + "loss": 1.273465576171875, + "step": 581100 + }, + { + "epoch": 77.49333333333334, + "grad_norm": 0.9402119517326355, + "learning_rate": 1.1271466666666667e-05, + "loss": 1.266955108642578, + "step": 581200 + }, + { + "epoch": 77.50666666666666, + "grad_norm": 0.8809628486633301, + "learning_rate": 1.1264800000000001e-05, + "loss": 1.271000289916992, + "step": 581300 + }, + { + "epoch": 77.52, + "grad_norm": 0.9298728108406067, + "learning_rate": 1.1258133333333335e-05, + "loss": 1.2696641540527345, + "step": 581400 + }, + { + "epoch": 77.53333333333333, + "grad_norm": 0.9338729977607727, + "learning_rate": 1.1251466666666667e-05, + "loss": 1.2723861694335938, + "step": 581500 + }, + { + "epoch": 77.54666666666667, + "grad_norm": 0.8930231332778931, + "learning_rate": 1.1244800000000001e-05, + "loss": 1.2670636749267579, + "step": 581600 + }, + { + "epoch": 77.56, + "grad_norm": 0.8689009547233582, + "learning_rate": 1.1238133333333333e-05, + "loss": 1.2678091430664062, + "step": 581700 + }, + { + "epoch": 77.57333333333334, + "grad_norm": 0.8521204590797424, + "learning_rate": 1.1231466666666666e-05, + "loss": 1.2707132720947265, + "step": 581800 + }, + { + "epoch": 77.58666666666667, + "grad_norm": 0.8917391896247864, + "learning_rate": 1.1224800000000001e-05, + "loss": 1.2752569580078126, + "step": 581900 + }, + { + "epoch": 77.6, + "grad_norm": 0.9497755169868469, + "learning_rate": 1.1218133333333334e-05, + "loss": 1.2703166961669923, + "step": 582000 + }, + { + "epoch": 77.61333333333333, + "grad_norm": 0.9635091423988342, + "learning_rate": 1.1211466666666668e-05, + "loss": 1.2678369903564453, + "step": 582100 + }, + { + "epoch": 77.62666666666667, + "grad_norm": 0.9281509518623352, + "learning_rate": 1.12048e-05, + "loss": 1.2707953643798828, + "step": 582200 + }, + { + "epoch": 77.64, + "grad_norm": 0.8660150170326233, + "learning_rate": 1.1198133333333334e-05, + "loss": 1.272255401611328, + "step": 582300 + }, + { + "epoch": 77.65333333333334, + "grad_norm": 0.9285011291503906, + "learning_rate": 1.1191466666666666e-05, + "loss": 1.2756419372558594, + "step": 582400 + }, + { + "epoch": 77.66666666666667, + "grad_norm": 0.932344377040863, + "learning_rate": 1.11848e-05, + "loss": 1.2738219451904298, + "step": 582500 + }, + { + "epoch": 77.68, + "grad_norm": 0.9365657567977905, + "learning_rate": 1.1178133333333334e-05, + "loss": 1.2753623199462891, + "step": 582600 + }, + { + "epoch": 77.69333333333333, + "grad_norm": 0.825846791267395, + "learning_rate": 1.1171466666666668e-05, + "loss": 1.2731678771972657, + "step": 582700 + }, + { + "epoch": 77.70666666666666, + "grad_norm": 0.9342759847640991, + "learning_rate": 1.11648e-05, + "loss": 1.277725067138672, + "step": 582800 + }, + { + "epoch": 77.72, + "grad_norm": 0.9432119131088257, + "learning_rate": 1.1158133333333334e-05, + "loss": 1.2735256958007812, + "step": 582900 + }, + { + "epoch": 77.73333333333333, + "grad_norm": 0.9605401158332825, + "learning_rate": 1.1151466666666666e-05, + "loss": 1.2816490173339843, + "step": 583000 + }, + { + "epoch": 77.74666666666667, + "grad_norm": 0.9029577374458313, + "learning_rate": 1.1144866666666667e-05, + "loss": 1.2802981567382812, + "step": 583100 + }, + { + "epoch": 77.76, + "grad_norm": 0.8637961745262146, + "learning_rate": 1.11382e-05, + "loss": 1.2796761322021484, + "step": 583200 + }, + { + "epoch": 77.77333333333333, + "grad_norm": 0.921112596988678, + "learning_rate": 1.1131533333333333e-05, + "loss": 1.2756118774414062, + "step": 583300 + }, + { + "epoch": 77.78666666666666, + "grad_norm": 0.9237424731254578, + "learning_rate": 1.1124866666666667e-05, + "loss": 1.2745748901367187, + "step": 583400 + }, + { + "epoch": 77.8, + "grad_norm": 0.843678891658783, + "learning_rate": 1.1118200000000001e-05, + "loss": 1.2792215728759766, + "step": 583500 + }, + { + "epoch": 77.81333333333333, + "grad_norm": 0.9343549609184265, + "learning_rate": 1.1111533333333334e-05, + "loss": 1.277459716796875, + "step": 583600 + }, + { + "epoch": 77.82666666666667, + "grad_norm": 0.8938376307487488, + "learning_rate": 1.1104866666666668e-05, + "loss": 1.2799664306640626, + "step": 583700 + }, + { + "epoch": 77.84, + "grad_norm": 0.910925030708313, + "learning_rate": 1.10982e-05, + "loss": 1.280896453857422, + "step": 583800 + }, + { + "epoch": 77.85333333333334, + "grad_norm": 0.8991851806640625, + "learning_rate": 1.1091533333333334e-05, + "loss": 1.2770259857177735, + "step": 583900 + }, + { + "epoch": 77.86666666666666, + "grad_norm": 0.8709640502929688, + "learning_rate": 1.1084866666666668e-05, + "loss": 1.2761578369140625, + "step": 584000 + }, + { + "epoch": 77.88, + "grad_norm": 0.8845403790473938, + "learning_rate": 1.1078200000000002e-05, + "loss": 1.2800413513183593, + "step": 584100 + }, + { + "epoch": 77.89333333333333, + "grad_norm": 0.8760946393013, + "learning_rate": 1.1071533333333334e-05, + "loss": 1.2795198822021485, + "step": 584200 + }, + { + "epoch": 77.90666666666667, + "grad_norm": 0.9131218791007996, + "learning_rate": 1.1064866666666668e-05, + "loss": 1.2759528350830078, + "step": 584300 + }, + { + "epoch": 77.92, + "grad_norm": 0.8943530321121216, + "learning_rate": 1.10582e-05, + "loss": 1.2813719177246095, + "step": 584400 + }, + { + "epoch": 77.93333333333334, + "grad_norm": 0.9106712937355042, + "learning_rate": 1.1051533333333333e-05, + "loss": 1.2769749450683594, + "step": 584500 + }, + { + "epoch": 77.94666666666667, + "grad_norm": 0.9153562188148499, + "learning_rate": 1.1044866666666667e-05, + "loss": 1.2757042694091796, + "step": 584600 + }, + { + "epoch": 77.96, + "grad_norm": 0.9484046697616577, + "learning_rate": 1.10382e-05, + "loss": 1.2819232177734374, + "step": 584700 + }, + { + "epoch": 77.97333333333333, + "grad_norm": 0.9584998488426208, + "learning_rate": 1.1031533333333334e-05, + "loss": 1.2835421752929688, + "step": 584800 + }, + { + "epoch": 77.98666666666666, + "grad_norm": 0.9356921911239624, + "learning_rate": 1.1024866666666667e-05, + "loss": 1.2813420104980469, + "step": 584900 + }, + { + "epoch": 78.0, + "grad_norm": 0.9255989193916321, + "learning_rate": 1.10182e-05, + "loss": 1.2774526977539062, + "step": 585000 + }, + { + "epoch": 78.01333333333334, + "grad_norm": 0.8795908093452454, + "learning_rate": 1.1011600000000001e-05, + "loss": 1.249991455078125, + "step": 585100 + }, + { + "epoch": 78.02666666666667, + "grad_norm": 0.9239431619644165, + "learning_rate": 1.1004933333333334e-05, + "loss": 1.2514543151855468, + "step": 585200 + }, + { + "epoch": 78.04, + "grad_norm": 0.8539057374000549, + "learning_rate": 1.0998266666666668e-05, + "loss": 1.2499234008789062, + "step": 585300 + }, + { + "epoch": 78.05333333333333, + "grad_norm": 0.8485280871391296, + "learning_rate": 1.09916e-05, + "loss": 1.2504238891601562, + "step": 585400 + }, + { + "epoch": 78.06666666666666, + "grad_norm": 0.8902794718742371, + "learning_rate": 1.0984933333333334e-05, + "loss": 1.2511708068847656, + "step": 585500 + }, + { + "epoch": 78.08, + "grad_norm": 0.9052618741989136, + "learning_rate": 1.0978266666666668e-05, + "loss": 1.2486000061035156, + "step": 585600 + }, + { + "epoch": 78.09333333333333, + "grad_norm": 0.8789846897125244, + "learning_rate": 1.09716e-05, + "loss": 1.251748275756836, + "step": 585700 + }, + { + "epoch": 78.10666666666667, + "grad_norm": 0.885184109210968, + "learning_rate": 1.0964933333333334e-05, + "loss": 1.2532960510253905, + "step": 585800 + }, + { + "epoch": 78.12, + "grad_norm": 0.8550071120262146, + "learning_rate": 1.0958266666666666e-05, + "loss": 1.2503804779052734, + "step": 585900 + }, + { + "epoch": 78.13333333333334, + "grad_norm": 0.9323640465736389, + "learning_rate": 1.09516e-05, + "loss": 1.2534485626220704, + "step": 586000 + }, + { + "epoch": 78.14666666666666, + "grad_norm": 0.8850072026252747, + "learning_rate": 1.0944933333333334e-05, + "loss": 1.2556941986083985, + "step": 586100 + }, + { + "epoch": 78.16, + "grad_norm": 0.8399662971496582, + "learning_rate": 1.0938266666666668e-05, + "loss": 1.2542850494384765, + "step": 586200 + }, + { + "epoch": 78.17333333333333, + "grad_norm": 0.919593095779419, + "learning_rate": 1.09316e-05, + "loss": 1.2562599182128906, + "step": 586300 + }, + { + "epoch": 78.18666666666667, + "grad_norm": 0.8908868432044983, + "learning_rate": 1.0924933333333334e-05, + "loss": 1.2563451385498048, + "step": 586400 + }, + { + "epoch": 78.2, + "grad_norm": 0.8848934769630432, + "learning_rate": 1.0918266666666667e-05, + "loss": 1.2524043273925782, + "step": 586500 + }, + { + "epoch": 78.21333333333334, + "grad_norm": 0.8833860158920288, + "learning_rate": 1.09116e-05, + "loss": 1.2593082427978515, + "step": 586600 + }, + { + "epoch": 78.22666666666667, + "grad_norm": 0.8572924733161926, + "learning_rate": 1.0904933333333333e-05, + "loss": 1.2562625885009766, + "step": 586700 + }, + { + "epoch": 78.24, + "grad_norm": 0.8951097726821899, + "learning_rate": 1.0898266666666667e-05, + "loss": 1.2585964965820313, + "step": 586800 + }, + { + "epoch": 78.25333333333333, + "grad_norm": 0.879523515701294, + "learning_rate": 1.0891600000000001e-05, + "loss": 1.2556568908691406, + "step": 586900 + }, + { + "epoch": 78.26666666666667, + "grad_norm": 0.9368571043014526, + "learning_rate": 1.0884933333333335e-05, + "loss": 1.2600704193115235, + "step": 587000 + }, + { + "epoch": 78.28, + "grad_norm": 0.8886348009109497, + "learning_rate": 1.0878333333333334e-05, + "loss": 1.2605961608886718, + "step": 587100 + }, + { + "epoch": 78.29333333333334, + "grad_norm": 0.8580905199050903, + "learning_rate": 1.0871666666666668e-05, + "loss": 1.2552318572998047, + "step": 587200 + }, + { + "epoch": 78.30666666666667, + "grad_norm": 0.9353607296943665, + "learning_rate": 1.0865e-05, + "loss": 1.256221389770508, + "step": 587300 + }, + { + "epoch": 78.32, + "grad_norm": 0.8265605568885803, + "learning_rate": 1.0858333333333334e-05, + "loss": 1.2583871459960938, + "step": 587400 + }, + { + "epoch": 78.33333333333333, + "grad_norm": 0.956251859664917, + "learning_rate": 1.0851666666666666e-05, + "loss": 1.2614502716064453, + "step": 587500 + }, + { + "epoch": 78.34666666666666, + "grad_norm": 0.8545957207679749, + "learning_rate": 1.0845e-05, + "loss": 1.2584918212890626, + "step": 587600 + }, + { + "epoch": 78.36, + "grad_norm": 0.8909661769866943, + "learning_rate": 1.0838333333333334e-05, + "loss": 1.2615117645263672, + "step": 587700 + }, + { + "epoch": 78.37333333333333, + "grad_norm": 0.9129730463027954, + "learning_rate": 1.0831666666666668e-05, + "loss": 1.255586166381836, + "step": 587800 + }, + { + "epoch": 78.38666666666667, + "grad_norm": 0.8736388683319092, + "learning_rate": 1.0825e-05, + "loss": 1.2649986267089843, + "step": 587900 + }, + { + "epoch": 78.4, + "grad_norm": 0.931929886341095, + "learning_rate": 1.0818333333333335e-05, + "loss": 1.2623023223876952, + "step": 588000 + }, + { + "epoch": 78.41333333333333, + "grad_norm": 0.9257421493530273, + "learning_rate": 1.0811666666666667e-05, + "loss": 1.258783950805664, + "step": 588100 + }, + { + "epoch": 78.42666666666666, + "grad_norm": 0.8989784717559814, + "learning_rate": 1.0804999999999999e-05, + "loss": 1.2628663635253907, + "step": 588200 + }, + { + "epoch": 78.44, + "grad_norm": 0.9080356359481812, + "learning_rate": 1.0798333333333335e-05, + "loss": 1.2631582641601562, + "step": 588300 + }, + { + "epoch": 78.45333333333333, + "grad_norm": 0.864266574382782, + "learning_rate": 1.0791666666666667e-05, + "loss": 1.2602297973632812, + "step": 588400 + }, + { + "epoch": 78.46666666666667, + "grad_norm": 0.9377700686454773, + "learning_rate": 1.0785000000000001e-05, + "loss": 1.2689905548095703, + "step": 588500 + }, + { + "epoch": 78.48, + "grad_norm": 0.9184496998786926, + "learning_rate": 1.0778333333333333e-05, + "loss": 1.2642398834228517, + "step": 588600 + }, + { + "epoch": 78.49333333333334, + "grad_norm": 0.9387530088424683, + "learning_rate": 1.0771666666666667e-05, + "loss": 1.2622312164306642, + "step": 588700 + }, + { + "epoch": 78.50666666666666, + "grad_norm": 0.8708038926124573, + "learning_rate": 1.0765e-05, + "loss": 1.265206298828125, + "step": 588800 + }, + { + "epoch": 78.52, + "grad_norm": 0.8846192955970764, + "learning_rate": 1.0758333333333333e-05, + "loss": 1.2633629608154298, + "step": 588900 + }, + { + "epoch": 78.53333333333333, + "grad_norm": 0.8851326704025269, + "learning_rate": 1.0751666666666667e-05, + "loss": 1.266950912475586, + "step": 589000 + }, + { + "epoch": 78.54666666666667, + "grad_norm": 0.9254246950149536, + "learning_rate": 1.0745000000000001e-05, + "loss": 1.2651148223876953, + "step": 589100 + }, + { + "epoch": 78.56, + "grad_norm": 0.886559784412384, + "learning_rate": 1.07384e-05, + "loss": 1.2686289215087891, + "step": 589200 + }, + { + "epoch": 78.57333333333334, + "grad_norm": 0.8676953315734863, + "learning_rate": 1.0731733333333334e-05, + "loss": 1.2632874298095702, + "step": 589300 + }, + { + "epoch": 78.58666666666667, + "grad_norm": 0.911446213722229, + "learning_rate": 1.0725066666666667e-05, + "loss": 1.2674727630615235, + "step": 589400 + }, + { + "epoch": 78.6, + "grad_norm": 0.9178944230079651, + "learning_rate": 1.07184e-05, + "loss": 1.2665594482421876, + "step": 589500 + }, + { + "epoch": 78.61333333333333, + "grad_norm": 0.9570107460021973, + "learning_rate": 1.0711733333333333e-05, + "loss": 1.2660420989990235, + "step": 589600 + }, + { + "epoch": 78.62666666666667, + "grad_norm": 0.9041311144828796, + "learning_rate": 1.0705066666666667e-05, + "loss": 1.2692436218261718, + "step": 589700 + }, + { + "epoch": 78.64, + "grad_norm": 0.8909561634063721, + "learning_rate": 1.06984e-05, + "loss": 1.2753994750976563, + "step": 589800 + }, + { + "epoch": 78.65333333333334, + "grad_norm": 0.883059561252594, + "learning_rate": 1.0691733333333335e-05, + "loss": 1.2698513793945312, + "step": 589900 + }, + { + "epoch": 78.66666666666667, + "grad_norm": 0.8872081637382507, + "learning_rate": 1.0685066666666667e-05, + "loss": 1.268332748413086, + "step": 590000 + }, + { + "epoch": 78.68, + "grad_norm": 0.9364659190177917, + "learning_rate": 1.0678400000000001e-05, + "loss": 1.2715838623046876, + "step": 590100 + }, + { + "epoch": 78.69333333333333, + "grad_norm": 0.8873387575149536, + "learning_rate": 1.0671733333333333e-05, + "loss": 1.2653190612792968, + "step": 590200 + }, + { + "epoch": 78.70666666666666, + "grad_norm": 0.9163351058959961, + "learning_rate": 1.0665066666666667e-05, + "loss": 1.2706766510009766, + "step": 590300 + }, + { + "epoch": 78.72, + "grad_norm": 0.8802734017372131, + "learning_rate": 1.0658400000000001e-05, + "loss": 1.2680073547363282, + "step": 590400 + }, + { + "epoch": 78.73333333333333, + "grad_norm": 0.8930662870407104, + "learning_rate": 1.0651733333333335e-05, + "loss": 1.2715739440917968, + "step": 590500 + }, + { + "epoch": 78.74666666666667, + "grad_norm": 0.8921145796775818, + "learning_rate": 1.0645066666666667e-05, + "loss": 1.2718709564208985, + "step": 590600 + }, + { + "epoch": 78.76, + "grad_norm": 0.9061724543571472, + "learning_rate": 1.0638400000000001e-05, + "loss": 1.2666871643066406, + "step": 590700 + }, + { + "epoch": 78.77333333333333, + "grad_norm": 0.9512609839439392, + "learning_rate": 1.0631733333333334e-05, + "loss": 1.2725698852539062, + "step": 590800 + }, + { + "epoch": 78.78666666666666, + "grad_norm": 0.8718198537826538, + "learning_rate": 1.0625066666666666e-05, + "loss": 1.2700515747070313, + "step": 590900 + }, + { + "epoch": 78.8, + "grad_norm": 0.9610340595245361, + "learning_rate": 1.06184e-05, + "loss": 1.2690962982177734, + "step": 591000 + }, + { + "epoch": 78.81333333333333, + "grad_norm": 0.9104143977165222, + "learning_rate": 1.0611733333333334e-05, + "loss": 1.2665902709960937, + "step": 591100 + }, + { + "epoch": 78.82666666666667, + "grad_norm": 0.9109393358230591, + "learning_rate": 1.0605133333333333e-05, + "loss": 1.2704518127441407, + "step": 591200 + }, + { + "epoch": 78.84, + "grad_norm": 0.9059329032897949, + "learning_rate": 1.0598466666666667e-05, + "loss": 1.273515396118164, + "step": 591300 + }, + { + "epoch": 78.85333333333334, + "grad_norm": 0.9386402368545532, + "learning_rate": 1.05918e-05, + "loss": 1.2749934387207031, + "step": 591400 + }, + { + "epoch": 78.86666666666666, + "grad_norm": 0.8592071533203125, + "learning_rate": 1.0585133333333335e-05, + "loss": 1.274554214477539, + "step": 591500 + }, + { + "epoch": 78.88, + "grad_norm": 0.903801679611206, + "learning_rate": 1.0578466666666667e-05, + "loss": 1.2715023040771485, + "step": 591600 + }, + { + "epoch": 78.89333333333333, + "grad_norm": 0.9000576138496399, + "learning_rate": 1.0571800000000001e-05, + "loss": 1.2724392700195313, + "step": 591700 + }, + { + "epoch": 78.90666666666667, + "grad_norm": 0.9397499561309814, + "learning_rate": 1.0565133333333333e-05, + "loss": 1.2701983642578125, + "step": 591800 + }, + { + "epoch": 78.92, + "grad_norm": 0.9019601345062256, + "learning_rate": 1.0558466666666667e-05, + "loss": 1.2739637756347657, + "step": 591900 + }, + { + "epoch": 78.93333333333334, + "grad_norm": 0.9267058372497559, + "learning_rate": 1.0551800000000001e-05, + "loss": 1.278916778564453, + "step": 592000 + }, + { + "epoch": 78.94666666666667, + "grad_norm": 0.9432265162467957, + "learning_rate": 1.0545133333333333e-05, + "loss": 1.2765323638916015, + "step": 592100 + }, + { + "epoch": 78.96, + "grad_norm": 0.905218243598938, + "learning_rate": 1.0538466666666667e-05, + "loss": 1.2738363647460937, + "step": 592200 + }, + { + "epoch": 78.97333333333333, + "grad_norm": 0.8922687768936157, + "learning_rate": 1.05318e-05, + "loss": 1.2749046325683593, + "step": 592300 + }, + { + "epoch": 78.98666666666666, + "grad_norm": 0.9277877807617188, + "learning_rate": 1.0525133333333334e-05, + "loss": 1.2721634674072266, + "step": 592400 + }, + { + "epoch": 79.0, + "grad_norm": 0.9030377268791199, + "learning_rate": 1.0518466666666666e-05, + "loss": 1.2747603607177735, + "step": 592500 + }, + { + "epoch": 79.01333333333334, + "grad_norm": 0.8378993272781372, + "learning_rate": 1.0511800000000002e-05, + "loss": 1.24189208984375, + "step": 592600 + }, + { + "epoch": 79.02666666666667, + "grad_norm": 0.9222813248634338, + "learning_rate": 1.0505133333333334e-05, + "loss": 1.2447259521484375, + "step": 592700 + }, + { + "epoch": 79.04, + "grad_norm": 0.8688544034957886, + "learning_rate": 1.0498466666666668e-05, + "loss": 1.2454937744140624, + "step": 592800 + }, + { + "epoch": 79.05333333333333, + "grad_norm": 0.8973101377487183, + "learning_rate": 1.04918e-05, + "loss": 1.2433192443847656, + "step": 592900 + }, + { + "epoch": 79.06666666666666, + "grad_norm": 0.868934154510498, + "learning_rate": 1.0485133333333334e-05, + "loss": 1.2476187133789063, + "step": 593000 + }, + { + "epoch": 79.08, + "grad_norm": 0.9051042795181274, + "learning_rate": 1.0478466666666666e-05, + "loss": 1.246639404296875, + "step": 593100 + }, + { + "epoch": 79.09333333333333, + "grad_norm": 0.8593751192092896, + "learning_rate": 1.0471866666666667e-05, + "loss": 1.2500391387939453, + "step": 593200 + }, + { + "epoch": 79.10666666666667, + "grad_norm": 0.8476565480232239, + "learning_rate": 1.04652e-05, + "loss": 1.246165542602539, + "step": 593300 + }, + { + "epoch": 79.12, + "grad_norm": 0.8801284432411194, + "learning_rate": 1.0458533333333333e-05, + "loss": 1.246192092895508, + "step": 593400 + }, + { + "epoch": 79.13333333333334, + "grad_norm": 0.8846884369850159, + "learning_rate": 1.0451866666666667e-05, + "loss": 1.2439684295654296, + "step": 593500 + }, + { + "epoch": 79.14666666666666, + "grad_norm": 0.9294757843017578, + "learning_rate": 1.0445200000000001e-05, + "loss": 1.2488855743408203, + "step": 593600 + }, + { + "epoch": 79.16, + "grad_norm": 0.8399421572685242, + "learning_rate": 1.0438533333333333e-05, + "loss": 1.2482614135742187, + "step": 593700 + }, + { + "epoch": 79.17333333333333, + "grad_norm": 0.911873459815979, + "learning_rate": 1.0431866666666667e-05, + "loss": 1.2482553100585938, + "step": 593800 + }, + { + "epoch": 79.18666666666667, + "grad_norm": 0.8314080834388733, + "learning_rate": 1.04252e-05, + "loss": 1.247007827758789, + "step": 593900 + }, + { + "epoch": 79.2, + "grad_norm": 0.9181894063949585, + "learning_rate": 1.0418533333333334e-05, + "loss": 1.2536485290527344, + "step": 594000 + }, + { + "epoch": 79.21333333333334, + "grad_norm": 0.8740313649177551, + "learning_rate": 1.0411866666666668e-05, + "loss": 1.2519398498535157, + "step": 594100 + }, + { + "epoch": 79.22666666666667, + "grad_norm": 0.9068511128425598, + "learning_rate": 1.0405200000000002e-05, + "loss": 1.2476766967773438, + "step": 594200 + }, + { + "epoch": 79.24, + "grad_norm": 0.9321922063827515, + "learning_rate": 1.0398533333333334e-05, + "loss": 1.2513009643554687, + "step": 594300 + }, + { + "epoch": 79.25333333333333, + "grad_norm": 0.888857901096344, + "learning_rate": 1.0391866666666668e-05, + "loss": 1.2504447937011718, + "step": 594400 + }, + { + "epoch": 79.26666666666667, + "grad_norm": 0.9641751050949097, + "learning_rate": 1.03852e-05, + "loss": 1.2548712921142577, + "step": 594500 + }, + { + "epoch": 79.28, + "grad_norm": 0.8727660775184631, + "learning_rate": 1.0378533333333332e-05, + "loss": 1.2525074005126953, + "step": 594600 + }, + { + "epoch": 79.29333333333334, + "grad_norm": 0.8915736675262451, + "learning_rate": 1.0371866666666668e-05, + "loss": 1.2563622283935547, + "step": 594700 + }, + { + "epoch": 79.30666666666667, + "grad_norm": 0.8992096781730652, + "learning_rate": 1.03652e-05, + "loss": 1.250523452758789, + "step": 594800 + }, + { + "epoch": 79.32, + "grad_norm": 0.9542332291603088, + "learning_rate": 1.0358533333333334e-05, + "loss": 1.2581777954101563, + "step": 594900 + }, + { + "epoch": 79.33333333333333, + "grad_norm": 0.8994565606117249, + "learning_rate": 1.0351866666666667e-05, + "loss": 1.2560828399658204, + "step": 595000 + }, + { + "epoch": 79.34666666666666, + "grad_norm": 0.9147607088088989, + "learning_rate": 1.03452e-05, + "loss": 1.2500714111328124, + "step": 595100 + }, + { + "epoch": 79.36, + "grad_norm": 0.9078018069267273, + "learning_rate": 1.0338600000000001e-05, + "loss": 1.257826385498047, + "step": 595200 + }, + { + "epoch": 79.37333333333333, + "grad_norm": 0.9065786004066467, + "learning_rate": 1.0331933333333334e-05, + "loss": 1.2560930633544922, + "step": 595300 + }, + { + "epoch": 79.38666666666667, + "grad_norm": 0.9030917286872864, + "learning_rate": 1.0325266666666667e-05, + "loss": 1.2558876800537109, + "step": 595400 + }, + { + "epoch": 79.4, + "grad_norm": 0.9185391664505005, + "learning_rate": 1.03186e-05, + "loss": 1.2556648254394531, + "step": 595500 + }, + { + "epoch": 79.41333333333333, + "grad_norm": 0.8820536136627197, + "learning_rate": 1.0311933333333334e-05, + "loss": 1.25557373046875, + "step": 595600 + }, + { + "epoch": 79.42666666666666, + "grad_norm": 0.872558057308197, + "learning_rate": 1.0305266666666668e-05, + "loss": 1.2546512603759765, + "step": 595700 + }, + { + "epoch": 79.44, + "grad_norm": 0.9479767680168152, + "learning_rate": 1.02986e-05, + "loss": 1.2602999114990234, + "step": 595800 + }, + { + "epoch": 79.45333333333333, + "grad_norm": 0.8801756501197815, + "learning_rate": 1.0291933333333334e-05, + "loss": 1.2596167755126952, + "step": 595900 + }, + { + "epoch": 79.46666666666667, + "grad_norm": 0.8682863116264343, + "learning_rate": 1.0285266666666666e-05, + "loss": 1.2621781158447265, + "step": 596000 + }, + { + "epoch": 79.48, + "grad_norm": 0.9202213883399963, + "learning_rate": 1.02786e-05, + "loss": 1.2601839447021483, + "step": 596100 + }, + { + "epoch": 79.49333333333334, + "grad_norm": 0.8812510371208191, + "learning_rate": 1.0271933333333334e-05, + "loss": 1.2634574890136718, + "step": 596200 + }, + { + "epoch": 79.50666666666666, + "grad_norm": 0.9358564019203186, + "learning_rate": 1.0265266666666668e-05, + "loss": 1.2560010528564454, + "step": 596300 + }, + { + "epoch": 79.52, + "grad_norm": 0.9232118725776672, + "learning_rate": 1.02586e-05, + "loss": 1.2569718170166015, + "step": 596400 + }, + { + "epoch": 79.53333333333333, + "grad_norm": 0.9304707050323486, + "learning_rate": 1.0251933333333334e-05, + "loss": 1.2577223205566406, + "step": 596500 + }, + { + "epoch": 79.54666666666667, + "grad_norm": 0.8667801022529602, + "learning_rate": 1.0245266666666667e-05, + "loss": 1.2640282440185546, + "step": 596600 + }, + { + "epoch": 79.56, + "grad_norm": 0.9173431992530823, + "learning_rate": 1.02386e-05, + "loss": 1.2618460083007812, + "step": 596700 + }, + { + "epoch": 79.57333333333334, + "grad_norm": 0.9202678203582764, + "learning_rate": 1.0231933333333334e-05, + "loss": 1.2610095977783202, + "step": 596800 + }, + { + "epoch": 79.58666666666667, + "grad_norm": 0.8916814923286438, + "learning_rate": 1.0225266666666668e-05, + "loss": 1.2634732055664062, + "step": 596900 + }, + { + "epoch": 79.6, + "grad_norm": 0.8657307624816895, + "learning_rate": 1.02186e-05, + "loss": 1.2660941314697265, + "step": 597000 + }, + { + "epoch": 79.61333333333333, + "grad_norm": 0.948290228843689, + "learning_rate": 1.0211933333333335e-05, + "loss": 1.2630126953125, + "step": 597100 + }, + { + "epoch": 79.62666666666667, + "grad_norm": 0.8405894041061401, + "learning_rate": 1.0205333333333334e-05, + "loss": 1.2619757080078124, + "step": 597200 + }, + { + "epoch": 79.64, + "grad_norm": 0.9192798137664795, + "learning_rate": 1.0198666666666668e-05, + "loss": 1.2630854797363282, + "step": 597300 + }, + { + "epoch": 79.65333333333334, + "grad_norm": 0.8935139179229736, + "learning_rate": 1.0192e-05, + "loss": 1.2599110412597656, + "step": 597400 + }, + { + "epoch": 79.66666666666667, + "grad_norm": 0.9552688598632812, + "learning_rate": 1.0185333333333334e-05, + "loss": 1.2634823608398438, + "step": 597500 + }, + { + "epoch": 79.68, + "grad_norm": 0.9792049527168274, + "learning_rate": 1.0178666666666666e-05, + "loss": 1.2599063110351563, + "step": 597600 + }, + { + "epoch": 79.69333333333333, + "grad_norm": 0.8858845233917236, + "learning_rate": 1.0172e-05, + "loss": 1.262656021118164, + "step": 597700 + }, + { + "epoch": 79.70666666666666, + "grad_norm": 0.8454314470291138, + "learning_rate": 1.0165333333333334e-05, + "loss": 1.2662943267822266, + "step": 597800 + }, + { + "epoch": 79.72, + "grad_norm": 0.8796765208244324, + "learning_rate": 1.0158666666666668e-05, + "loss": 1.2636601257324218, + "step": 597900 + }, + { + "epoch": 79.73333333333333, + "grad_norm": 0.9347110390663147, + "learning_rate": 1.0152e-05, + "loss": 1.2646561431884766, + "step": 598000 + }, + { + "epoch": 79.74666666666667, + "grad_norm": 0.8910204172134399, + "learning_rate": 1.0145333333333334e-05, + "loss": 1.268468780517578, + "step": 598100 + }, + { + "epoch": 79.76, + "grad_norm": 0.8769538998603821, + "learning_rate": 1.0138666666666667e-05, + "loss": 1.2662653350830078, + "step": 598200 + }, + { + "epoch": 79.77333333333333, + "grad_norm": 0.8732584714889526, + "learning_rate": 1.0132e-05, + "loss": 1.2627813720703125, + "step": 598300 + }, + { + "epoch": 79.78666666666666, + "grad_norm": 0.927267849445343, + "learning_rate": 1.0125333333333335e-05, + "loss": 1.2639500427246093, + "step": 598400 + }, + { + "epoch": 79.8, + "grad_norm": 0.8972467184066772, + "learning_rate": 1.0118666666666667e-05, + "loss": 1.265300064086914, + "step": 598500 + }, + { + "epoch": 79.81333333333333, + "grad_norm": 0.9230730533599854, + "learning_rate": 1.0112e-05, + "loss": 1.2670893096923828, + "step": 598600 + }, + { + "epoch": 79.82666666666667, + "grad_norm": 0.8692210912704468, + "learning_rate": 1.0105333333333333e-05, + "loss": 1.2643206787109376, + "step": 598700 + }, + { + "epoch": 79.84, + "grad_norm": 0.9208062291145325, + "learning_rate": 1.0098666666666667e-05, + "loss": 1.266007766723633, + "step": 598800 + }, + { + "epoch": 79.85333333333334, + "grad_norm": 0.8955254554748535, + "learning_rate": 1.0092e-05, + "loss": 1.2656437683105468, + "step": 598900 + }, + { + "epoch": 79.86666666666666, + "grad_norm": 0.8898331522941589, + "learning_rate": 1.0085333333333335e-05, + "loss": 1.268927993774414, + "step": 599000 + }, + { + "epoch": 79.88, + "grad_norm": 0.9004736542701721, + "learning_rate": 1.0078666666666667e-05, + "loss": 1.2676744079589843, + "step": 599100 + }, + { + "epoch": 79.89333333333333, + "grad_norm": 0.879002571105957, + "learning_rate": 1.0072066666666668e-05, + "loss": 1.268192672729492, + "step": 599200 + }, + { + "epoch": 79.90666666666667, + "grad_norm": 0.8479452133178711, + "learning_rate": 1.00654e-05, + "loss": 1.2690647888183593, + "step": 599300 + }, + { + "epoch": 79.92, + "grad_norm": 0.9314066171646118, + "learning_rate": 1.0058733333333334e-05, + "loss": 1.2657173156738282, + "step": 599400 + }, + { + "epoch": 79.93333333333334, + "grad_norm": 0.9445568919181824, + "learning_rate": 1.0052066666666666e-05, + "loss": 1.268585205078125, + "step": 599500 + }, + { + "epoch": 79.94666666666667, + "grad_norm": 0.8672616481781006, + "learning_rate": 1.00454e-05, + "loss": 1.2684510040283203, + "step": 599600 + }, + { + "epoch": 79.96, + "grad_norm": 0.9522123336791992, + "learning_rate": 1.0038733333333333e-05, + "loss": 1.2633151245117187, + "step": 599700 + }, + { + "epoch": 79.97333333333333, + "grad_norm": 0.8980398774147034, + "learning_rate": 1.0032066666666667e-05, + "loss": 1.2709536743164063, + "step": 599800 + }, + { + "epoch": 79.98666666666666, + "grad_norm": 0.9412267804145813, + "learning_rate": 1.00254e-05, + "loss": 1.2736549377441406, + "step": 599900 + }, + { + "epoch": 80.0, + "grad_norm": 0.958734929561615, + "learning_rate": 1.0018733333333335e-05, + "loss": 1.2687025451660157, + "step": 600000 + }, + { + "epoch": 80.01333333333334, + "grad_norm": 0.9288617968559265, + "learning_rate": 1.0012066666666667e-05, + "loss": 1.2443870544433593, + "step": 600100 + }, + { + "epoch": 80.02666666666667, + "grad_norm": 0.9338223338127136, + "learning_rate": 1.00054e-05, + "loss": 1.243735122680664, + "step": 600200 + }, + { + "epoch": 80.04, + "grad_norm": 0.9002096056938171, + "learning_rate": 9.998733333333333e-06, + "loss": 1.2413943481445313, + "step": 600300 + }, + { + "epoch": 80.05333333333333, + "grad_norm": 0.9089773297309875, + "learning_rate": 9.992066666666667e-06, + "loss": 1.2424115753173828, + "step": 600400 + }, + { + "epoch": 80.06666666666666, + "grad_norm": 0.919051468372345, + "learning_rate": 9.985400000000001e-06, + "loss": 1.2413393402099608, + "step": 600500 + }, + { + "epoch": 80.08, + "grad_norm": 0.9045332670211792, + "learning_rate": 9.978733333333335e-06, + "loss": 1.2448829650878905, + "step": 600600 + }, + { + "epoch": 80.09333333333333, + "grad_norm": 0.9014262557029724, + "learning_rate": 9.972066666666667e-06, + "loss": 1.2456900024414062, + "step": 600700 + }, + { + "epoch": 80.10666666666667, + "grad_norm": 0.9010103344917297, + "learning_rate": 9.965400000000001e-06, + "loss": 1.2381111907958984, + "step": 600800 + }, + { + "epoch": 80.12, + "grad_norm": 0.8444560170173645, + "learning_rate": 9.958733333333333e-06, + "loss": 1.2418882751464844, + "step": 600900 + }, + { + "epoch": 80.13333333333334, + "grad_norm": 0.9013086557388306, + "learning_rate": 9.952066666666666e-06, + "loss": 1.2470101165771483, + "step": 601000 + }, + { + "epoch": 80.14666666666666, + "grad_norm": 0.8963460326194763, + "learning_rate": 9.945400000000001e-06, + "loss": 1.2434548950195312, + "step": 601100 + }, + { + "epoch": 80.16, + "grad_norm": 0.8968179821968079, + "learning_rate": 9.9388e-06, + "loss": 1.244561996459961, + "step": 601200 + }, + { + "epoch": 80.17333333333333, + "grad_norm": 0.8898792862892151, + "learning_rate": 9.932133333333333e-06, + "loss": 1.2477424621582032, + "step": 601300 + }, + { + "epoch": 80.18666666666667, + "grad_norm": 0.9151734709739685, + "learning_rate": 9.925466666666668e-06, + "loss": 1.2453786468505859, + "step": 601400 + }, + { + "epoch": 80.2, + "grad_norm": 0.8821862936019897, + "learning_rate": 9.9188e-06, + "loss": 1.250970993041992, + "step": 601500 + }, + { + "epoch": 80.21333333333334, + "grad_norm": 0.8794935941696167, + "learning_rate": 9.912133333333335e-06, + "loss": 1.2464175415039063, + "step": 601600 + }, + { + "epoch": 80.22666666666667, + "grad_norm": 0.8836155533790588, + "learning_rate": 9.905466666666667e-06, + "loss": 1.2436624908447265, + "step": 601700 + }, + { + "epoch": 80.24, + "grad_norm": 0.881230354309082, + "learning_rate": 9.8988e-06, + "loss": 1.2490660095214843, + "step": 601800 + }, + { + "epoch": 80.25333333333333, + "grad_norm": 0.9362554550170898, + "learning_rate": 9.892133333333333e-06, + "loss": 1.2497845458984376, + "step": 601900 + }, + { + "epoch": 80.26666666666667, + "grad_norm": 0.8518027663230896, + "learning_rate": 9.885466666666667e-06, + "loss": 1.247543487548828, + "step": 602000 + }, + { + "epoch": 80.28, + "grad_norm": 0.9236149787902832, + "learning_rate": 9.878800000000001e-06, + "loss": 1.2505050659179688, + "step": 602100 + }, + { + "epoch": 80.29333333333334, + "grad_norm": 0.9130676984786987, + "learning_rate": 9.872133333333333e-06, + "loss": 1.2465634918212891, + "step": 602200 + }, + { + "epoch": 80.30666666666667, + "grad_norm": 0.9139811992645264, + "learning_rate": 9.865466666666667e-06, + "loss": 1.2522836303710938, + "step": 602300 + }, + { + "epoch": 80.32, + "grad_norm": 0.8871936202049255, + "learning_rate": 9.8588e-06, + "loss": 1.2477921295166015, + "step": 602400 + }, + { + "epoch": 80.33333333333333, + "grad_norm": 0.9056395888328552, + "learning_rate": 9.852133333333333e-06, + "loss": 1.25315185546875, + "step": 602500 + }, + { + "epoch": 80.34666666666666, + "grad_norm": 0.881733238697052, + "learning_rate": 9.845466666666667e-06, + "loss": 1.25149169921875, + "step": 602600 + }, + { + "epoch": 80.36, + "grad_norm": 0.8879048228263855, + "learning_rate": 9.838800000000001e-06, + "loss": 1.2514451599121095, + "step": 602700 + }, + { + "epoch": 80.37333333333333, + "grad_norm": 0.9176741242408752, + "learning_rate": 9.832133333333334e-06, + "loss": 1.2507662963867188, + "step": 602800 + }, + { + "epoch": 80.38666666666667, + "grad_norm": 0.8852501511573792, + "learning_rate": 9.825466666666668e-06, + "loss": 1.2502633666992187, + "step": 602900 + }, + { + "epoch": 80.4, + "grad_norm": 0.8856446743011475, + "learning_rate": 9.8188e-06, + "loss": 1.2474871826171876, + "step": 603000 + }, + { + "epoch": 80.41333333333333, + "grad_norm": 0.7928372621536255, + "learning_rate": 9.812133333333334e-06, + "loss": 1.252954635620117, + "step": 603100 + }, + { + "epoch": 80.42666666666666, + "grad_norm": 0.9248310327529907, + "learning_rate": 9.805533333333333e-06, + "loss": 1.255914306640625, + "step": 603200 + }, + { + "epoch": 80.44, + "grad_norm": 0.8597677946090698, + "learning_rate": 9.798866666666667e-06, + "loss": 1.2539872741699218, + "step": 603300 + }, + { + "epoch": 80.45333333333333, + "grad_norm": 0.9030819535255432, + "learning_rate": 9.7922e-06, + "loss": 1.2549383544921875, + "step": 603400 + }, + { + "epoch": 80.46666666666667, + "grad_norm": 0.9179391860961914, + "learning_rate": 9.785533333333335e-06, + "loss": 1.255010757446289, + "step": 603500 + }, + { + "epoch": 80.48, + "grad_norm": 0.8762322068214417, + "learning_rate": 9.778866666666667e-06, + "loss": 1.2511839294433593, + "step": 603600 + }, + { + "epoch": 80.49333333333334, + "grad_norm": 0.9009326696395874, + "learning_rate": 9.772200000000001e-06, + "loss": 1.2546797180175782, + "step": 603700 + }, + { + "epoch": 80.50666666666666, + "grad_norm": 0.8604843020439148, + "learning_rate": 9.765533333333333e-06, + "loss": 1.2558490753173828, + "step": 603800 + }, + { + "epoch": 80.52, + "grad_norm": 0.7724893093109131, + "learning_rate": 9.758866666666667e-06, + "loss": 1.254795150756836, + "step": 603900 + }, + { + "epoch": 80.53333333333333, + "grad_norm": 0.9349945783615112, + "learning_rate": 9.7522e-06, + "loss": 1.2588446044921875, + "step": 604000 + }, + { + "epoch": 80.54666666666667, + "grad_norm": 0.8668858408927917, + "learning_rate": 9.745533333333334e-06, + "loss": 1.2564624786376952, + "step": 604100 + }, + { + "epoch": 80.56, + "grad_norm": 0.872798502445221, + "learning_rate": 9.738866666666667e-06, + "loss": 1.2593098449707032, + "step": 604200 + }, + { + "epoch": 80.57333333333334, + "grad_norm": 0.8730403780937195, + "learning_rate": 9.732200000000001e-06, + "loss": 1.2532449340820313, + "step": 604300 + }, + { + "epoch": 80.58666666666667, + "grad_norm": 0.9731208682060242, + "learning_rate": 9.725533333333334e-06, + "loss": 1.258994598388672, + "step": 604400 + }, + { + "epoch": 80.6, + "grad_norm": 0.9248079061508179, + "learning_rate": 9.718866666666668e-06, + "loss": 1.2537442779541015, + "step": 604500 + }, + { + "epoch": 80.61333333333333, + "grad_norm": 0.8961241841316223, + "learning_rate": 9.7122e-06, + "loss": 1.2533512115478516, + "step": 604600 + }, + { + "epoch": 80.62666666666667, + "grad_norm": 0.8987104296684265, + "learning_rate": 9.705533333333334e-06, + "loss": 1.2551846313476562, + "step": 604700 + }, + { + "epoch": 80.64, + "grad_norm": 0.8422402143478394, + "learning_rate": 9.698866666666668e-06, + "loss": 1.2600907135009765, + "step": 604800 + }, + { + "epoch": 80.65333333333334, + "grad_norm": 0.9396112561225891, + "learning_rate": 9.6922e-06, + "loss": 1.2541912841796874, + "step": 604900 + }, + { + "epoch": 80.66666666666667, + "grad_norm": 0.8763729333877563, + "learning_rate": 9.685533333333334e-06, + "loss": 1.255435791015625, + "step": 605000 + }, + { + "epoch": 80.68, + "grad_norm": 0.9729053974151611, + "learning_rate": 9.678866666666666e-06, + "loss": 1.2559229278564452, + "step": 605100 + }, + { + "epoch": 80.69333333333333, + "grad_norm": 0.9245437979698181, + "learning_rate": 9.6722e-06, + "loss": 1.2618405151367187, + "step": 605200 + }, + { + "epoch": 80.70666666666666, + "grad_norm": 0.9225579500198364, + "learning_rate": 9.665600000000001e-06, + "loss": 1.25842529296875, + "step": 605300 + }, + { + "epoch": 80.72, + "grad_norm": 0.8995950222015381, + "learning_rate": 9.658933333333333e-06, + "loss": 1.2611757659912108, + "step": 605400 + }, + { + "epoch": 80.73333333333333, + "grad_norm": 0.8765818476676941, + "learning_rate": 9.652266666666667e-06, + "loss": 1.2570573425292968, + "step": 605500 + }, + { + "epoch": 80.74666666666667, + "grad_norm": 0.8758502006530762, + "learning_rate": 9.645600000000001e-06, + "loss": 1.2593089294433595, + "step": 605600 + }, + { + "epoch": 80.76, + "grad_norm": 0.9053191542625427, + "learning_rate": 9.638933333333334e-06, + "loss": 1.2571390533447266, + "step": 605700 + }, + { + "epoch": 80.77333333333333, + "grad_norm": 0.8636969327926636, + "learning_rate": 9.632266666666668e-06, + "loss": 1.259483871459961, + "step": 605800 + }, + { + "epoch": 80.78666666666666, + "grad_norm": 0.9549551010131836, + "learning_rate": 9.6256e-06, + "loss": 1.2597525787353516, + "step": 605900 + }, + { + "epoch": 80.8, + "grad_norm": 0.8548250794410706, + "learning_rate": 9.618933333333334e-06, + "loss": 1.2577105712890626, + "step": 606000 + }, + { + "epoch": 80.81333333333333, + "grad_norm": 0.9075458645820618, + "learning_rate": 9.612266666666666e-06, + "loss": 1.2630501556396485, + "step": 606100 + }, + { + "epoch": 80.82666666666667, + "grad_norm": 0.9351378083229065, + "learning_rate": 9.6056e-06, + "loss": 1.2618649291992188, + "step": 606200 + }, + { + "epoch": 80.84, + "grad_norm": 0.8505954742431641, + "learning_rate": 9.598933333333334e-06, + "loss": 1.2608261108398438, + "step": 606300 + }, + { + "epoch": 80.85333333333334, + "grad_norm": 0.8611586093902588, + "learning_rate": 9.592266666666668e-06, + "loss": 1.2637861633300782, + "step": 606400 + }, + { + "epoch": 80.86666666666666, + "grad_norm": 0.8829309940338135, + "learning_rate": 9.5856e-06, + "loss": 1.2620301055908203, + "step": 606500 + }, + { + "epoch": 80.88, + "grad_norm": 0.906769335269928, + "learning_rate": 9.578933333333334e-06, + "loss": 1.2620735168457031, + "step": 606600 + }, + { + "epoch": 80.89333333333333, + "grad_norm": 0.896776020526886, + "learning_rate": 9.572266666666666e-06, + "loss": 1.263584213256836, + "step": 606700 + }, + { + "epoch": 80.90666666666667, + "grad_norm": 0.887713611125946, + "learning_rate": 9.5656e-06, + "loss": 1.264889907836914, + "step": 606800 + }, + { + "epoch": 80.92, + "grad_norm": 0.9247974753379822, + "learning_rate": 9.558933333333334e-06, + "loss": 1.2628305053710938, + "step": 606900 + }, + { + "epoch": 80.93333333333334, + "grad_norm": 0.9135413765907288, + "learning_rate": 9.552266666666668e-06, + "loss": 1.2610269165039063, + "step": 607000 + }, + { + "epoch": 80.94666666666667, + "grad_norm": 0.816784143447876, + "learning_rate": 9.5456e-06, + "loss": 1.264756851196289, + "step": 607100 + }, + { + "epoch": 80.96, + "grad_norm": 0.8519019484519958, + "learning_rate": 9.538933333333335e-06, + "loss": 1.2676949310302734, + "step": 607200 + }, + { + "epoch": 80.97333333333333, + "grad_norm": 0.8847300410270691, + "learning_rate": 9.532333333333334e-06, + "loss": 1.2613274383544921, + "step": 607300 + }, + { + "epoch": 80.98666666666666, + "grad_norm": 0.9292627573013306, + "learning_rate": 9.525666666666668e-06, + "loss": 1.264800796508789, + "step": 607400 + }, + { + "epoch": 81.0, + "grad_norm": 0.9245173335075378, + "learning_rate": 9.519e-06, + "loss": 1.2614967346191406, + "step": 607500 + }, + { + "epoch": 81.01333333333334, + "grad_norm": 0.8275742530822754, + "learning_rate": 9.512333333333334e-06, + "loss": 1.2391834259033203, + "step": 607600 + }, + { + "epoch": 81.02666666666667, + "grad_norm": 0.9047415256500244, + "learning_rate": 9.505666666666666e-06, + "loss": 1.2392681884765624, + "step": 607700 + }, + { + "epoch": 81.04, + "grad_norm": 0.8522070646286011, + "learning_rate": 9.499000000000002e-06, + "loss": 1.2342119598388672, + "step": 607800 + }, + { + "epoch": 81.05333333333333, + "grad_norm": 0.9225237369537354, + "learning_rate": 9.492333333333334e-06, + "loss": 1.240270004272461, + "step": 607900 + }, + { + "epoch": 81.06666666666666, + "grad_norm": 0.877410352230072, + "learning_rate": 9.485666666666668e-06, + "loss": 1.2419137573242187, + "step": 608000 + }, + { + "epoch": 81.08, + "grad_norm": 0.895682156085968, + "learning_rate": 9.479e-06, + "loss": 1.2361355590820313, + "step": 608100 + }, + { + "epoch": 81.09333333333333, + "grad_norm": 0.9138928055763245, + "learning_rate": 9.472333333333334e-06, + "loss": 1.2378245544433595, + "step": 608200 + }, + { + "epoch": 81.10666666666667, + "grad_norm": 0.8844442963600159, + "learning_rate": 9.465666666666666e-06, + "loss": 1.238951644897461, + "step": 608300 + }, + { + "epoch": 81.12, + "grad_norm": 0.9086583852767944, + "learning_rate": 9.459e-06, + "loss": 1.238919219970703, + "step": 608400 + }, + { + "epoch": 81.13333333333334, + "grad_norm": 0.9068462252616882, + "learning_rate": 9.452333333333334e-06, + "loss": 1.2433626556396484, + "step": 608500 + }, + { + "epoch": 81.14666666666666, + "grad_norm": 0.8883899450302124, + "learning_rate": 9.445666666666667e-06, + "loss": 1.2401612091064453, + "step": 608600 + }, + { + "epoch": 81.16, + "grad_norm": 0.8467079401016235, + "learning_rate": 9.439e-06, + "loss": 1.2381580352783204, + "step": 608700 + }, + { + "epoch": 81.17333333333333, + "grad_norm": 0.9207153916358948, + "learning_rate": 9.432333333333333e-06, + "loss": 1.2427813720703125, + "step": 608800 + }, + { + "epoch": 81.18666666666667, + "grad_norm": 0.912255585193634, + "learning_rate": 9.425666666666667e-06, + "loss": 1.240965805053711, + "step": 608900 + }, + { + "epoch": 81.2, + "grad_norm": 0.9188990592956543, + "learning_rate": 9.419e-06, + "loss": 1.2408465576171874, + "step": 609000 + }, + { + "epoch": 81.21333333333334, + "grad_norm": 0.9256595373153687, + "learning_rate": 9.412333333333335e-06, + "loss": 1.2405252075195312, + "step": 609100 + }, + { + "epoch": 81.22666666666667, + "grad_norm": 0.9291117787361145, + "learning_rate": 9.405666666666667e-06, + "loss": 1.245336685180664, + "step": 609200 + }, + { + "epoch": 81.24, + "grad_norm": 0.9023730158805847, + "learning_rate": 9.399066666666668e-06, + "loss": 1.247289276123047, + "step": 609300 + }, + { + "epoch": 81.25333333333333, + "grad_norm": 0.8725359439849854, + "learning_rate": 9.3924e-06, + "loss": 1.242955322265625, + "step": 609400 + }, + { + "epoch": 81.26666666666667, + "grad_norm": 0.93658846616745, + "learning_rate": 9.385733333333334e-06, + "loss": 1.2417597198486328, + "step": 609500 + }, + { + "epoch": 81.28, + "grad_norm": 0.8989132642745972, + "learning_rate": 9.379066666666666e-06, + "loss": 1.2406790924072266, + "step": 609600 + }, + { + "epoch": 81.29333333333334, + "grad_norm": 0.8773770928382874, + "learning_rate": 9.3724e-06, + "loss": 1.2456909942626953, + "step": 609700 + }, + { + "epoch": 81.30666666666667, + "grad_norm": 0.9248537421226501, + "learning_rate": 9.365733333333333e-06, + "loss": 1.2468321990966797, + "step": 609800 + }, + { + "epoch": 81.32, + "grad_norm": 0.9012039303779602, + "learning_rate": 9.359066666666668e-06, + "loss": 1.2451560974121094, + "step": 609900 + }, + { + "epoch": 81.33333333333333, + "grad_norm": 0.8763637542724609, + "learning_rate": 9.3524e-06, + "loss": 1.2435193634033204, + "step": 610000 + }, + { + "epoch": 81.34666666666666, + "grad_norm": 0.9104039669036865, + "learning_rate": 9.345733333333334e-06, + "loss": 1.2489257049560547, + "step": 610100 + }, + { + "epoch": 81.36, + "grad_norm": 0.9854726195335388, + "learning_rate": 9.339066666666667e-06, + "loss": 1.2438234710693359, + "step": 610200 + }, + { + "epoch": 81.37333333333333, + "grad_norm": 0.8832777142524719, + "learning_rate": 9.3324e-06, + "loss": 1.2450476837158204, + "step": 610300 + }, + { + "epoch": 81.38666666666667, + "grad_norm": 0.8616676926612854, + "learning_rate": 9.325733333333333e-06, + "loss": 1.24720703125, + "step": 610400 + }, + { + "epoch": 81.4, + "grad_norm": 0.8933054208755493, + "learning_rate": 9.319066666666667e-06, + "loss": 1.248559799194336, + "step": 610500 + }, + { + "epoch": 81.41333333333333, + "grad_norm": 0.9103077054023743, + "learning_rate": 9.3124e-06, + "loss": 1.2462962341308594, + "step": 610600 + }, + { + "epoch": 81.42666666666666, + "grad_norm": 0.8590754866600037, + "learning_rate": 9.305733333333335e-06, + "loss": 1.246546859741211, + "step": 610700 + }, + { + "epoch": 81.44, + "grad_norm": 0.9296621084213257, + "learning_rate": 9.299066666666667e-06, + "loss": 1.2495183563232422, + "step": 610800 + }, + { + "epoch": 81.45333333333333, + "grad_norm": 0.9122717380523682, + "learning_rate": 9.292400000000001e-06, + "loss": 1.2485328674316407, + "step": 610900 + }, + { + "epoch": 81.46666666666667, + "grad_norm": 0.894951343536377, + "learning_rate": 9.285733333333333e-06, + "loss": 1.2503672790527345, + "step": 611000 + }, + { + "epoch": 81.48, + "grad_norm": 0.8775086402893066, + "learning_rate": 9.279066666666667e-06, + "loss": 1.2496353149414063, + "step": 611100 + }, + { + "epoch": 81.49333333333334, + "grad_norm": 0.9073229432106018, + "learning_rate": 9.272400000000001e-06, + "loss": 1.2485159301757813, + "step": 611200 + }, + { + "epoch": 81.50666666666666, + "grad_norm": 0.8721373081207275, + "learning_rate": 9.2658e-06, + "loss": 1.249385452270508, + "step": 611300 + }, + { + "epoch": 81.52, + "grad_norm": 0.8617298007011414, + "learning_rate": 9.259133333333334e-06, + "loss": 1.2492945861816407, + "step": 611400 + }, + { + "epoch": 81.53333333333333, + "grad_norm": 0.9376047253608704, + "learning_rate": 9.252466666666668e-06, + "loss": 1.2484706878662108, + "step": 611500 + }, + { + "epoch": 81.54666666666667, + "grad_norm": 0.9316357970237732, + "learning_rate": 9.2458e-06, + "loss": 1.2509843444824218, + "step": 611600 + }, + { + "epoch": 81.56, + "grad_norm": 0.9092914462089539, + "learning_rate": 9.239133333333334e-06, + "loss": 1.252373046875, + "step": 611700 + }, + { + "epoch": 81.57333333333334, + "grad_norm": 0.9230238199234009, + "learning_rate": 9.232466666666667e-06, + "loss": 1.2522103881835938, + "step": 611800 + }, + { + "epoch": 81.58666666666667, + "grad_norm": 0.9527510404586792, + "learning_rate": 9.2258e-06, + "loss": 1.2519025421142578, + "step": 611900 + }, + { + "epoch": 81.6, + "grad_norm": 0.9313916563987732, + "learning_rate": 9.219133333333333e-06, + "loss": 1.2490794372558593, + "step": 612000 + }, + { + "epoch": 81.61333333333333, + "grad_norm": 0.9925395846366882, + "learning_rate": 9.212466666666667e-06, + "loss": 1.2542919921875, + "step": 612100 + }, + { + "epoch": 81.62666666666667, + "grad_norm": 0.9218894839286804, + "learning_rate": 9.205800000000001e-06, + "loss": 1.2550067138671874, + "step": 612200 + }, + { + "epoch": 81.64, + "grad_norm": 0.9411338567733765, + "learning_rate": 9.199133333333333e-06, + "loss": 1.249119644165039, + "step": 612300 + }, + { + "epoch": 81.65333333333334, + "grad_norm": 0.9338614344596863, + "learning_rate": 9.192466666666667e-06, + "loss": 1.2516092681884765, + "step": 612400 + }, + { + "epoch": 81.66666666666667, + "grad_norm": 0.984487771987915, + "learning_rate": 9.1858e-06, + "loss": 1.253871078491211, + "step": 612500 + }, + { + "epoch": 81.68, + "grad_norm": 0.8881129026412964, + "learning_rate": 9.179133333333333e-06, + "loss": 1.2527835845947266, + "step": 612600 + }, + { + "epoch": 81.69333333333333, + "grad_norm": 0.9168439507484436, + "learning_rate": 9.172466666666667e-06, + "loss": 1.2484764862060547, + "step": 612700 + }, + { + "epoch": 81.70666666666666, + "grad_norm": 0.8874577283859253, + "learning_rate": 9.165800000000001e-06, + "loss": 1.2515900421142578, + "step": 612800 + }, + { + "epoch": 81.72, + "grad_norm": 0.905847430229187, + "learning_rate": 9.159133333333334e-06, + "loss": 1.2533546447753907, + "step": 612900 + }, + { + "epoch": 81.73333333333333, + "grad_norm": 0.8582006096839905, + "learning_rate": 9.152466666666667e-06, + "loss": 1.2524093627929687, + "step": 613000 + }, + { + "epoch": 81.74666666666667, + "grad_norm": 0.9305291175842285, + "learning_rate": 9.1458e-06, + "loss": 1.2540251922607422, + "step": 613100 + }, + { + "epoch": 81.76, + "grad_norm": 0.9581021666526794, + "learning_rate": 9.139133333333334e-06, + "loss": 1.2542661285400392, + "step": 613200 + }, + { + "epoch": 81.77333333333333, + "grad_norm": 0.8602609634399414, + "learning_rate": 9.132533333333333e-06, + "loss": 1.250102767944336, + "step": 613300 + }, + { + "epoch": 81.78666666666666, + "grad_norm": 0.9307783842086792, + "learning_rate": 9.125866666666667e-06, + "loss": 1.25496826171875, + "step": 613400 + }, + { + "epoch": 81.8, + "grad_norm": 0.9519327282905579, + "learning_rate": 9.1192e-06, + "loss": 1.2568404388427734, + "step": 613500 + }, + { + "epoch": 81.81333333333333, + "grad_norm": 0.9594677090644836, + "learning_rate": 9.112533333333335e-06, + "loss": 1.2542708587646485, + "step": 613600 + }, + { + "epoch": 81.82666666666667, + "grad_norm": 0.9347852468490601, + "learning_rate": 9.105866666666667e-06, + "loss": 1.2561700439453125, + "step": 613700 + }, + { + "epoch": 81.84, + "grad_norm": 0.9031361937522888, + "learning_rate": 9.099200000000001e-06, + "loss": 1.250828399658203, + "step": 613800 + }, + { + "epoch": 81.85333333333334, + "grad_norm": 0.9028738141059875, + "learning_rate": 9.092533333333333e-06, + "loss": 1.2556254577636718, + "step": 613900 + }, + { + "epoch": 81.86666666666666, + "grad_norm": 0.8947298526763916, + "learning_rate": 9.085866666666667e-06, + "loss": 1.2577997589111327, + "step": 614000 + }, + { + "epoch": 81.88, + "grad_norm": 0.9742893576622009, + "learning_rate": 9.0792e-06, + "loss": 1.2556832122802735, + "step": 614100 + }, + { + "epoch": 81.89333333333333, + "grad_norm": 0.9164856672286987, + "learning_rate": 9.072533333333335e-06, + "loss": 1.2557017517089843, + "step": 614200 + }, + { + "epoch": 81.90666666666667, + "grad_norm": 0.915895938873291, + "learning_rate": 9.065866666666667e-06, + "loss": 1.2530562591552734, + "step": 614300 + }, + { + "epoch": 81.92, + "grad_norm": 0.8925107717514038, + "learning_rate": 9.059200000000001e-06, + "loss": 1.26068115234375, + "step": 614400 + }, + { + "epoch": 81.93333333333334, + "grad_norm": 0.8939207196235657, + "learning_rate": 9.052533333333334e-06, + "loss": 1.2526610565185547, + "step": 614500 + }, + { + "epoch": 81.94666666666667, + "grad_norm": 0.8300981521606445, + "learning_rate": 9.045866666666668e-06, + "loss": 1.2572245025634765, + "step": 614600 + }, + { + "epoch": 81.96, + "grad_norm": 0.8693681955337524, + "learning_rate": 9.0392e-06, + "loss": 1.2559279632568359, + "step": 614700 + }, + { + "epoch": 81.97333333333333, + "grad_norm": 0.8896282315254211, + "learning_rate": 9.032533333333334e-06, + "loss": 1.2625821685791017, + "step": 614800 + }, + { + "epoch": 81.98666666666666, + "grad_norm": 0.8908337354660034, + "learning_rate": 9.025866666666668e-06, + "loss": 1.2559323120117187, + "step": 614900 + }, + { + "epoch": 82.0, + "grad_norm": 0.9439942836761475, + "learning_rate": 9.0192e-06, + "loss": 1.2595707702636718, + "step": 615000 + }, + { + "epoch": 82.01333333333334, + "grad_norm": 0.9085642099380493, + "learning_rate": 9.012533333333334e-06, + "loss": 1.234801025390625, + "step": 615100 + }, + { + "epoch": 82.02666666666667, + "grad_norm": 0.86478590965271, + "learning_rate": 9.005866666666666e-06, + "loss": 1.2301112365722657, + "step": 615200 + }, + { + "epoch": 82.04, + "grad_norm": 0.8402786254882812, + "learning_rate": 8.999266666666667e-06, + "loss": 1.2340145111083984, + "step": 615300 + }, + { + "epoch": 82.05333333333333, + "grad_norm": 0.9000765681266785, + "learning_rate": 8.992600000000001e-06, + "loss": 1.234165496826172, + "step": 615400 + }, + { + "epoch": 82.06666666666666, + "grad_norm": 0.8875935673713684, + "learning_rate": 8.985933333333333e-06, + "loss": 1.2338397216796875, + "step": 615500 + }, + { + "epoch": 82.08, + "grad_norm": 0.8624498248100281, + "learning_rate": 8.979266666666667e-06, + "loss": 1.2306690216064453, + "step": 615600 + }, + { + "epoch": 82.09333333333333, + "grad_norm": 0.8691593408584595, + "learning_rate": 8.972600000000001e-06, + "loss": 1.2350591278076173, + "step": 615700 + }, + { + "epoch": 82.10666666666667, + "grad_norm": 0.9431705474853516, + "learning_rate": 8.965933333333333e-06, + "loss": 1.2306092071533203, + "step": 615800 + }, + { + "epoch": 82.12, + "grad_norm": 0.8544008135795593, + "learning_rate": 8.959266666666667e-06, + "loss": 1.2384963989257813, + "step": 615900 + }, + { + "epoch": 82.13333333333334, + "grad_norm": 0.9354866147041321, + "learning_rate": 8.9526e-06, + "loss": 1.2398062896728517, + "step": 616000 + }, + { + "epoch": 82.14666666666666, + "grad_norm": 0.8743143677711487, + "learning_rate": 8.945933333333334e-06, + "loss": 1.2414376068115234, + "step": 616100 + }, + { + "epoch": 82.16, + "grad_norm": 0.8810702562332153, + "learning_rate": 8.939266666666666e-06, + "loss": 1.2354586029052734, + "step": 616200 + }, + { + "epoch": 82.17333333333333, + "grad_norm": 0.8954576849937439, + "learning_rate": 8.932600000000002e-06, + "loss": 1.2339041137695312, + "step": 616300 + }, + { + "epoch": 82.18666666666667, + "grad_norm": 0.9300366640090942, + "learning_rate": 8.925933333333334e-06, + "loss": 1.2386576843261718, + "step": 616400 + }, + { + "epoch": 82.2, + "grad_norm": 0.9427330493927002, + "learning_rate": 8.919266666666668e-06, + "loss": 1.2405809020996095, + "step": 616500 + }, + { + "epoch": 82.21333333333334, + "grad_norm": 0.9200528264045715, + "learning_rate": 8.9126e-06, + "loss": 1.2397397613525392, + "step": 616600 + }, + { + "epoch": 82.22666666666667, + "grad_norm": 0.9477024078369141, + "learning_rate": 8.905933333333334e-06, + "loss": 1.2361534118652344, + "step": 616700 + }, + { + "epoch": 82.24, + "grad_norm": 0.860318660736084, + "learning_rate": 8.899266666666666e-06, + "loss": 1.24165771484375, + "step": 616800 + }, + { + "epoch": 82.25333333333333, + "grad_norm": 0.8930957317352295, + "learning_rate": 8.8926e-06, + "loss": 1.240411376953125, + "step": 616900 + }, + { + "epoch": 82.26666666666667, + "grad_norm": 0.8713201284408569, + "learning_rate": 8.885933333333334e-06, + "loss": 1.2389635467529296, + "step": 617000 + }, + { + "epoch": 82.28, + "grad_norm": 0.8821374773979187, + "learning_rate": 8.879266666666668e-06, + "loss": 1.240754165649414, + "step": 617100 + }, + { + "epoch": 82.29333333333334, + "grad_norm": 0.8835667967796326, + "learning_rate": 8.8726e-06, + "loss": 1.2408916473388671, + "step": 617200 + }, + { + "epoch": 82.30666666666667, + "grad_norm": 0.878227949142456, + "learning_rate": 8.866000000000001e-06, + "loss": 1.239891357421875, + "step": 617300 + }, + { + "epoch": 82.32, + "grad_norm": 0.9137305021286011, + "learning_rate": 8.859333333333333e-06, + "loss": 1.2434058380126953, + "step": 617400 + }, + { + "epoch": 82.33333333333333, + "grad_norm": 0.9233280420303345, + "learning_rate": 8.852666666666667e-06, + "loss": 1.240920867919922, + "step": 617500 + }, + { + "epoch": 82.34666666666666, + "grad_norm": 0.9034508466720581, + "learning_rate": 8.846e-06, + "loss": 1.2437106323242189, + "step": 617600 + }, + { + "epoch": 82.36, + "grad_norm": 0.9077682495117188, + "learning_rate": 8.839333333333334e-06, + "loss": 1.2439752960205077, + "step": 617700 + }, + { + "epoch": 82.37333333333333, + "grad_norm": 0.9524446725845337, + "learning_rate": 8.832666666666668e-06, + "loss": 1.2423672485351562, + "step": 617800 + }, + { + "epoch": 82.38666666666667, + "grad_norm": 0.8799779415130615, + "learning_rate": 8.826000000000002e-06, + "loss": 1.2455381011962892, + "step": 617900 + }, + { + "epoch": 82.4, + "grad_norm": 0.9285022616386414, + "learning_rate": 8.819333333333334e-06, + "loss": 1.2448921966552735, + "step": 618000 + }, + { + "epoch": 82.41333333333333, + "grad_norm": 0.9084222912788391, + "learning_rate": 8.812666666666668e-06, + "loss": 1.2376979064941407, + "step": 618100 + }, + { + "epoch": 82.42666666666666, + "grad_norm": 0.8648841381072998, + "learning_rate": 8.806e-06, + "loss": 1.2406005859375, + "step": 618200 + }, + { + "epoch": 82.44, + "grad_norm": 0.9781367778778076, + "learning_rate": 8.799333333333334e-06, + "loss": 1.243892593383789, + "step": 618300 + }, + { + "epoch": 82.45333333333333, + "grad_norm": 0.8798574805259705, + "learning_rate": 8.792666666666666e-06, + "loss": 1.2451769256591796, + "step": 618400 + }, + { + "epoch": 82.46666666666667, + "grad_norm": 0.9308679103851318, + "learning_rate": 8.786e-06, + "loss": 1.2392099761962891, + "step": 618500 + }, + { + "epoch": 82.48, + "grad_norm": 0.9308741688728333, + "learning_rate": 8.779333333333334e-06, + "loss": 1.2419159698486328, + "step": 618600 + }, + { + "epoch": 82.49333333333334, + "grad_norm": 0.9221790432929993, + "learning_rate": 8.772666666666666e-06, + "loss": 1.2452362060546875, + "step": 618700 + }, + { + "epoch": 82.50666666666666, + "grad_norm": 0.8636195063591003, + "learning_rate": 8.766e-06, + "loss": 1.2443165588378906, + "step": 618800 + }, + { + "epoch": 82.52, + "grad_norm": 0.8592165112495422, + "learning_rate": 8.759333333333333e-06, + "loss": 1.2440619659423828, + "step": 618900 + }, + { + "epoch": 82.53333333333333, + "grad_norm": 0.9434940814971924, + "learning_rate": 8.752666666666667e-06, + "loss": 1.2442166900634766, + "step": 619000 + }, + { + "epoch": 82.54666666666667, + "grad_norm": 0.9361331462860107, + "learning_rate": 8.746e-06, + "loss": 1.247313461303711, + "step": 619100 + }, + { + "epoch": 82.56, + "grad_norm": 0.9202352166175842, + "learning_rate": 8.739333333333335e-06, + "loss": 1.240821304321289, + "step": 619200 + }, + { + "epoch": 82.57333333333334, + "grad_norm": 0.9500649571418762, + "learning_rate": 8.732733333333334e-06, + "loss": 1.2460474395751953, + "step": 619300 + }, + { + "epoch": 82.58666666666667, + "grad_norm": 0.9258289933204651, + "learning_rate": 8.726066666666668e-06, + "loss": 1.2472043609619141, + "step": 619400 + }, + { + "epoch": 82.6, + "grad_norm": 0.9140313267707825, + "learning_rate": 8.7194e-06, + "loss": 1.2448184204101562, + "step": 619500 + }, + { + "epoch": 82.61333333333333, + "grad_norm": 0.9324513077735901, + "learning_rate": 8.712733333333334e-06, + "loss": 1.2494194030761718, + "step": 619600 + }, + { + "epoch": 82.62666666666667, + "grad_norm": 0.9109006524085999, + "learning_rate": 8.706066666666666e-06, + "loss": 1.247740707397461, + "step": 619700 + }, + { + "epoch": 82.64, + "grad_norm": 0.9407756328582764, + "learning_rate": 8.6994e-06, + "loss": 1.2482675170898438, + "step": 619800 + }, + { + "epoch": 82.65333333333334, + "grad_norm": 0.9115416407585144, + "learning_rate": 8.692733333333334e-06, + "loss": 1.2482878112792968, + "step": 619900 + }, + { + "epoch": 82.66666666666667, + "grad_norm": 0.9408479928970337, + "learning_rate": 8.686066666666668e-06, + "loss": 1.2521448516845703, + "step": 620000 + }, + { + "epoch": 82.68, + "grad_norm": 0.8845256567001343, + "learning_rate": 8.6794e-06, + "loss": 1.2493247985839844, + "step": 620100 + }, + { + "epoch": 82.69333333333333, + "grad_norm": 0.8882789015769958, + "learning_rate": 8.672733333333334e-06, + "loss": 1.2499993896484376, + "step": 620200 + }, + { + "epoch": 82.70666666666666, + "grad_norm": 0.8768792152404785, + "learning_rate": 8.666066666666667e-06, + "loss": 1.2518183135986327, + "step": 620300 + }, + { + "epoch": 82.72, + "grad_norm": 0.9239054322242737, + "learning_rate": 8.6594e-06, + "loss": 1.2470800018310546, + "step": 620400 + }, + { + "epoch": 82.73333333333333, + "grad_norm": 0.9029996991157532, + "learning_rate": 8.652733333333333e-06, + "loss": 1.250694808959961, + "step": 620500 + }, + { + "epoch": 82.74666666666667, + "grad_norm": 0.8475874662399292, + "learning_rate": 8.646066666666668e-06, + "loss": 1.2475482940673828, + "step": 620600 + }, + { + "epoch": 82.76, + "grad_norm": 0.9280046820640564, + "learning_rate": 8.6394e-06, + "loss": 1.247471923828125, + "step": 620700 + }, + { + "epoch": 82.77333333333333, + "grad_norm": 0.8895213603973389, + "learning_rate": 8.632733333333335e-06, + "loss": 1.249181594848633, + "step": 620800 + }, + { + "epoch": 82.78666666666666, + "grad_norm": 0.9662532806396484, + "learning_rate": 8.626066666666667e-06, + "loss": 1.2477493286132812, + "step": 620900 + }, + { + "epoch": 82.8, + "grad_norm": 0.9350543022155762, + "learning_rate": 8.619400000000001e-06, + "loss": 1.2516327667236329, + "step": 621000 + }, + { + "epoch": 82.81333333333333, + "grad_norm": 0.9173975586891174, + "learning_rate": 8.612733333333333e-06, + "loss": 1.2521589660644532, + "step": 621100 + }, + { + "epoch": 82.82666666666667, + "grad_norm": 0.9485138654708862, + "learning_rate": 8.606066666666667e-06, + "loss": 1.2502504730224608, + "step": 621200 + }, + { + "epoch": 82.84, + "grad_norm": 0.9641520977020264, + "learning_rate": 8.599466666666666e-06, + "loss": 1.2493783569335937, + "step": 621300 + }, + { + "epoch": 82.85333333333334, + "grad_norm": 0.9128257036209106, + "learning_rate": 8.5928e-06, + "loss": 1.2476416778564454, + "step": 621400 + }, + { + "epoch": 82.86666666666666, + "grad_norm": 0.926476001739502, + "learning_rate": 8.586133333333334e-06, + "loss": 1.2498722076416016, + "step": 621500 + }, + { + "epoch": 82.88, + "grad_norm": 0.8476603031158447, + "learning_rate": 8.579466666666668e-06, + "loss": 1.2490251922607423, + "step": 621600 + }, + { + "epoch": 82.89333333333333, + "grad_norm": 0.9261386394500732, + "learning_rate": 8.5728e-06, + "loss": 1.2508720397949218, + "step": 621700 + }, + { + "epoch": 82.90666666666667, + "grad_norm": 0.9281954765319824, + "learning_rate": 8.566133333333334e-06, + "loss": 1.2504344177246094, + "step": 621800 + }, + { + "epoch": 82.92, + "grad_norm": 0.9179771542549133, + "learning_rate": 8.559466666666667e-06, + "loss": 1.2538750457763672, + "step": 621900 + }, + { + "epoch": 82.93333333333334, + "grad_norm": 0.931770920753479, + "learning_rate": 8.5528e-06, + "loss": 1.251114959716797, + "step": 622000 + }, + { + "epoch": 82.94666666666667, + "grad_norm": 0.9326673150062561, + "learning_rate": 8.546133333333334e-06, + "loss": 1.2516678619384765, + "step": 622100 + }, + { + "epoch": 82.96, + "grad_norm": 0.9263719320297241, + "learning_rate": 8.539466666666667e-06, + "loss": 1.2495791625976562, + "step": 622200 + }, + { + "epoch": 82.97333333333333, + "grad_norm": 0.902750551700592, + "learning_rate": 8.5328e-06, + "loss": 1.2547737884521484, + "step": 622300 + }, + { + "epoch": 82.98666666666666, + "grad_norm": 0.9616686105728149, + "learning_rate": 8.526133333333333e-06, + "loss": 1.2510566711425781, + "step": 622400 + }, + { + "epoch": 83.0, + "grad_norm": 0.9818671941757202, + "learning_rate": 8.519466666666667e-06, + "loss": 1.255392837524414, + "step": 622500 + }, + { + "epoch": 83.01333333333334, + "grad_norm": 0.8741009831428528, + "learning_rate": 8.5128e-06, + "loss": 1.2268238830566407, + "step": 622600 + }, + { + "epoch": 83.02666666666667, + "grad_norm": 0.8773664236068726, + "learning_rate": 8.506133333333333e-06, + "loss": 1.2288787078857422, + "step": 622700 + }, + { + "epoch": 83.04, + "grad_norm": 0.896050214767456, + "learning_rate": 8.499466666666667e-06, + "loss": 1.2286920166015625, + "step": 622800 + }, + { + "epoch": 83.05333333333333, + "grad_norm": 0.8688726425170898, + "learning_rate": 8.492800000000001e-06, + "loss": 1.2317049407958984, + "step": 622900 + }, + { + "epoch": 83.06666666666666, + "grad_norm": 0.8627607226371765, + "learning_rate": 8.486133333333333e-06, + "loss": 1.2319934844970704, + "step": 623000 + }, + { + "epoch": 83.08, + "grad_norm": 0.9010234475135803, + "learning_rate": 8.479466666666667e-06, + "loss": 1.227967758178711, + "step": 623100 + }, + { + "epoch": 83.09333333333333, + "grad_norm": 0.9134891629219055, + "learning_rate": 8.4728e-06, + "loss": 1.2302108001708985, + "step": 623200 + }, + { + "epoch": 83.10666666666667, + "grad_norm": 0.8885038495063782, + "learning_rate": 8.466133333333334e-06, + "loss": 1.2306111145019532, + "step": 623300 + }, + { + "epoch": 83.12, + "grad_norm": 0.8855066299438477, + "learning_rate": 8.459533333333333e-06, + "loss": 1.2339430236816407, + "step": 623400 + }, + { + "epoch": 83.13333333333334, + "grad_norm": 0.8828930258750916, + "learning_rate": 8.452866666666667e-06, + "loss": 1.2353226470947265, + "step": 623500 + }, + { + "epoch": 83.14666666666666, + "grad_norm": 0.875651478767395, + "learning_rate": 8.4462e-06, + "loss": 1.2287565612792968, + "step": 623600 + }, + { + "epoch": 83.16, + "grad_norm": 0.8633849024772644, + "learning_rate": 8.439533333333335e-06, + "loss": 1.2340455627441407, + "step": 623700 + }, + { + "epoch": 83.17333333333333, + "grad_norm": 0.8406652212142944, + "learning_rate": 8.432866666666667e-06, + "loss": 1.2317752838134766, + "step": 623800 + }, + { + "epoch": 83.18666666666667, + "grad_norm": 0.8680077791213989, + "learning_rate": 8.4262e-06, + "loss": 1.2286119079589843, + "step": 623900 + }, + { + "epoch": 83.2, + "grad_norm": 0.8827568888664246, + "learning_rate": 8.419533333333333e-06, + "loss": 1.2330582427978516, + "step": 624000 + }, + { + "epoch": 83.21333333333334, + "grad_norm": 0.8410494923591614, + "learning_rate": 8.412866666666667e-06, + "loss": 1.2319648742675782, + "step": 624100 + }, + { + "epoch": 83.22666666666667, + "grad_norm": 0.945569634437561, + "learning_rate": 8.406200000000001e-06, + "loss": 1.2348339080810546, + "step": 624200 + }, + { + "epoch": 83.24, + "grad_norm": 0.9145014882087708, + "learning_rate": 8.399533333333335e-06, + "loss": 1.2309622192382812, + "step": 624300 + }, + { + "epoch": 83.25333333333333, + "grad_norm": 0.8928866982460022, + "learning_rate": 8.392866666666667e-06, + "loss": 1.2331744384765626, + "step": 624400 + }, + { + "epoch": 83.26666666666667, + "grad_norm": 0.9226345419883728, + "learning_rate": 8.386200000000001e-06, + "loss": 1.2304218292236329, + "step": 624500 + }, + { + "epoch": 83.28, + "grad_norm": 0.9208539128303528, + "learning_rate": 8.379533333333333e-06, + "loss": 1.2353579711914062, + "step": 624600 + }, + { + "epoch": 83.29333333333334, + "grad_norm": 0.8835161328315735, + "learning_rate": 8.372866666666667e-06, + "loss": 1.2308840942382813, + "step": 624700 + }, + { + "epoch": 83.30666666666667, + "grad_norm": 0.9109699130058289, + "learning_rate": 8.3662e-06, + "loss": 1.2373240661621094, + "step": 624800 + }, + { + "epoch": 83.32, + "grad_norm": 0.8914778232574463, + "learning_rate": 8.359533333333334e-06, + "loss": 1.2385607147216797, + "step": 624900 + }, + { + "epoch": 83.33333333333333, + "grad_norm": 0.9099097847938538, + "learning_rate": 8.352866666666668e-06, + "loss": 1.2351886749267578, + "step": 625000 + }, + { + "epoch": 83.34666666666666, + "grad_norm": 0.9224347472190857, + "learning_rate": 8.3462e-06, + "loss": 1.239847412109375, + "step": 625100 + }, + { + "epoch": 83.36, + "grad_norm": 0.8941978216171265, + "learning_rate": 8.339533333333334e-06, + "loss": 1.2408080291748047, + "step": 625200 + }, + { + "epoch": 83.37333333333333, + "grad_norm": 0.9112878441810608, + "learning_rate": 8.332866666666666e-06, + "loss": 1.2382213592529296, + "step": 625300 + }, + { + "epoch": 83.38666666666667, + "grad_norm": 0.8820027112960815, + "learning_rate": 8.326266666666667e-06, + "loss": 1.2374537658691407, + "step": 625400 + }, + { + "epoch": 83.4, + "grad_norm": 0.9008810520172119, + "learning_rate": 8.3196e-06, + "loss": 1.2357157897949218, + "step": 625500 + }, + { + "epoch": 83.41333333333333, + "grad_norm": 0.8950514793395996, + "learning_rate": 8.312933333333333e-06, + "loss": 1.2395166778564453, + "step": 625600 + }, + { + "epoch": 83.42666666666666, + "grad_norm": 0.877662718296051, + "learning_rate": 8.306266666666667e-06, + "loss": 1.2368050384521485, + "step": 625700 + }, + { + "epoch": 83.44, + "grad_norm": 0.8988947868347168, + "learning_rate": 8.299600000000001e-06, + "loss": 1.2367508697509766, + "step": 625800 + }, + { + "epoch": 83.45333333333333, + "grad_norm": 0.8748953342437744, + "learning_rate": 8.292933333333333e-06, + "loss": 1.2388724517822265, + "step": 625900 + }, + { + "epoch": 83.46666666666667, + "grad_norm": 0.937595009803772, + "learning_rate": 8.286266666666667e-06, + "loss": 1.2392095947265624, + "step": 626000 + }, + { + "epoch": 83.48, + "grad_norm": 0.9471210241317749, + "learning_rate": 8.2796e-06, + "loss": 1.236856460571289, + "step": 626100 + }, + { + "epoch": 83.49333333333334, + "grad_norm": 0.8821884393692017, + "learning_rate": 8.272933333333333e-06, + "loss": 1.239179916381836, + "step": 626200 + }, + { + "epoch": 83.50666666666666, + "grad_norm": 0.919651210308075, + "learning_rate": 8.266266666666667e-06, + "loss": 1.2402806854248047, + "step": 626300 + }, + { + "epoch": 83.52, + "grad_norm": 0.9665860533714294, + "learning_rate": 8.259600000000001e-06, + "loss": 1.2379183197021484, + "step": 626400 + }, + { + "epoch": 83.53333333333333, + "grad_norm": 0.8893381357192993, + "learning_rate": 8.252933333333334e-06, + "loss": 1.2422509765625, + "step": 626500 + }, + { + "epoch": 83.54666666666667, + "grad_norm": 0.9082131385803223, + "learning_rate": 8.246266666666668e-06, + "loss": 1.2425847625732422, + "step": 626600 + }, + { + "epoch": 83.56, + "grad_norm": 0.9207640290260315, + "learning_rate": 8.2396e-06, + "loss": 1.2419153594970702, + "step": 626700 + }, + { + "epoch": 83.57333333333334, + "grad_norm": 0.8709291219711304, + "learning_rate": 8.232933333333334e-06, + "loss": 1.2439161682128905, + "step": 626800 + }, + { + "epoch": 83.58666666666667, + "grad_norm": 0.945469856262207, + "learning_rate": 8.226266666666666e-06, + "loss": 1.2438876342773437, + "step": 626900 + }, + { + "epoch": 83.6, + "grad_norm": 0.8752225041389465, + "learning_rate": 8.219600000000002e-06, + "loss": 1.2426612854003907, + "step": 627000 + }, + { + "epoch": 83.61333333333333, + "grad_norm": 0.9232311844825745, + "learning_rate": 8.212933333333334e-06, + "loss": 1.2439415740966797, + "step": 627100 + }, + { + "epoch": 83.62666666666667, + "grad_norm": 0.9110270142555237, + "learning_rate": 8.206266666666668e-06, + "loss": 1.2405470275878907, + "step": 627200 + }, + { + "epoch": 83.64, + "grad_norm": 0.8702139854431152, + "learning_rate": 8.1996e-06, + "loss": 1.2478545379638672, + "step": 627300 + }, + { + "epoch": 83.65333333333334, + "grad_norm": 0.9222458004951477, + "learning_rate": 8.193000000000001e-06, + "loss": 1.2415824127197266, + "step": 627400 + }, + { + "epoch": 83.66666666666667, + "grad_norm": 0.8984431624412537, + "learning_rate": 8.186333333333333e-06, + "loss": 1.2407730102539063, + "step": 627500 + }, + { + "epoch": 83.68, + "grad_norm": 0.9315071702003479, + "learning_rate": 8.179666666666667e-06, + "loss": 1.240757598876953, + "step": 627600 + }, + { + "epoch": 83.69333333333333, + "grad_norm": 0.8998625874519348, + "learning_rate": 8.173e-06, + "loss": 1.2405057525634766, + "step": 627700 + }, + { + "epoch": 83.70666666666666, + "grad_norm": 0.9560902714729309, + "learning_rate": 8.166333333333333e-06, + "loss": 1.2425275421142579, + "step": 627800 + }, + { + "epoch": 83.72, + "grad_norm": 0.9313591718673706, + "learning_rate": 8.159666666666667e-06, + "loss": 1.2417723083496093, + "step": 627900 + }, + { + "epoch": 83.73333333333333, + "grad_norm": 0.8887977600097656, + "learning_rate": 8.153000000000001e-06, + "loss": 1.2461432647705077, + "step": 628000 + }, + { + "epoch": 83.74666666666667, + "grad_norm": 0.8665767908096313, + "learning_rate": 8.146333333333334e-06, + "loss": 1.2395530700683595, + "step": 628100 + }, + { + "epoch": 83.76, + "grad_norm": 0.8512284755706787, + "learning_rate": 8.139666666666668e-06, + "loss": 1.2442801666259766, + "step": 628200 + }, + { + "epoch": 83.77333333333333, + "grad_norm": 0.9400811791419983, + "learning_rate": 8.133e-06, + "loss": 1.244218521118164, + "step": 628300 + }, + { + "epoch": 83.78666666666666, + "grad_norm": 0.9075484275817871, + "learning_rate": 8.126333333333334e-06, + "loss": 1.245132827758789, + "step": 628400 + }, + { + "epoch": 83.8, + "grad_norm": 0.9220568537712097, + "learning_rate": 8.119666666666668e-06, + "loss": 1.2457878875732422, + "step": 628500 + }, + { + "epoch": 83.81333333333333, + "grad_norm": 0.8934618830680847, + "learning_rate": 8.113e-06, + "loss": 1.2488687896728516, + "step": 628600 + }, + { + "epoch": 83.82666666666667, + "grad_norm": 0.9469342231750488, + "learning_rate": 8.106333333333334e-06, + "loss": 1.2456256103515626, + "step": 628700 + }, + { + "epoch": 83.84, + "grad_norm": 0.8682982921600342, + "learning_rate": 8.099666666666666e-06, + "loss": 1.2437528991699218, + "step": 628800 + }, + { + "epoch": 83.85333333333334, + "grad_norm": 0.9430522918701172, + "learning_rate": 8.093e-06, + "loss": 1.2466936492919922, + "step": 628900 + }, + { + "epoch": 83.86666666666666, + "grad_norm": 0.9409758448600769, + "learning_rate": 8.086333333333333e-06, + "loss": 1.244860610961914, + "step": 629000 + }, + { + "epoch": 83.88, + "grad_norm": 0.958746612071991, + "learning_rate": 8.079666666666667e-06, + "loss": 1.246984634399414, + "step": 629100 + }, + { + "epoch": 83.89333333333333, + "grad_norm": 0.8642282485961914, + "learning_rate": 8.073e-06, + "loss": 1.2486931610107421, + "step": 629200 + }, + { + "epoch": 83.90666666666667, + "grad_norm": 0.9085518717765808, + "learning_rate": 8.066333333333334e-06, + "loss": 1.2516922760009765, + "step": 629300 + }, + { + "epoch": 83.92, + "grad_norm": 0.8967764973640442, + "learning_rate": 8.059733333333335e-06, + "loss": 1.2464397430419922, + "step": 629400 + }, + { + "epoch": 83.93333333333334, + "grad_norm": 0.9250491261482239, + "learning_rate": 8.053066666666667e-06, + "loss": 1.2472023010253905, + "step": 629500 + }, + { + "epoch": 83.94666666666667, + "grad_norm": 0.893845796585083, + "learning_rate": 8.0464e-06, + "loss": 1.2489615631103517, + "step": 629600 + }, + { + "epoch": 83.96, + "grad_norm": 0.907304048538208, + "learning_rate": 8.039733333333334e-06, + "loss": 1.2466935729980468, + "step": 629700 + }, + { + "epoch": 83.97333333333333, + "grad_norm": 0.8819485902786255, + "learning_rate": 8.033066666666666e-06, + "loss": 1.244398651123047, + "step": 629800 + }, + { + "epoch": 83.98666666666666, + "grad_norm": 0.9273881912231445, + "learning_rate": 8.0264e-06, + "loss": 1.2486519622802734, + "step": 629900 + }, + { + "epoch": 84.0, + "grad_norm": 0.879425585269928, + "learning_rate": 8.019733333333334e-06, + "loss": 1.2535282897949218, + "step": 630000 + }, + { + "epoch": 84.01333333333334, + "grad_norm": 0.8982846140861511, + "learning_rate": 8.013066666666668e-06, + "loss": 1.2259478759765625, + "step": 630100 + }, + { + "epoch": 84.02666666666667, + "grad_norm": 0.9428343176841736, + "learning_rate": 8.0064e-06, + "loss": 1.228878936767578, + "step": 630200 + }, + { + "epoch": 84.04, + "grad_norm": 0.9072933197021484, + "learning_rate": 7.999733333333334e-06, + "loss": 1.223412399291992, + "step": 630300 + }, + { + "epoch": 84.05333333333333, + "grad_norm": 0.9243832230567932, + "learning_rate": 7.993066666666666e-06, + "loss": 1.224007797241211, + "step": 630400 + }, + { + "epoch": 84.06666666666666, + "grad_norm": 0.8180492520332336, + "learning_rate": 7.9864e-06, + "loss": 1.2259696960449218, + "step": 630500 + }, + { + "epoch": 84.08, + "grad_norm": 0.888479471206665, + "learning_rate": 7.979733333333334e-06, + "loss": 1.2236656951904297, + "step": 630600 + }, + { + "epoch": 84.09333333333333, + "grad_norm": 0.9106174111366272, + "learning_rate": 7.973066666666668e-06, + "loss": 1.2281214904785156, + "step": 630700 + }, + { + "epoch": 84.10666666666667, + "grad_norm": 0.9094051122665405, + "learning_rate": 7.9664e-06, + "loss": 1.2281082916259765, + "step": 630800 + }, + { + "epoch": 84.12, + "grad_norm": 0.9189176559448242, + "learning_rate": 7.959733333333334e-06, + "loss": 1.2266500091552734, + "step": 630900 + }, + { + "epoch": 84.13333333333334, + "grad_norm": 0.8246629238128662, + "learning_rate": 7.953066666666667e-06, + "loss": 1.2251168823242187, + "step": 631000 + }, + { + "epoch": 84.14666666666666, + "grad_norm": 0.826525866985321, + "learning_rate": 7.9464e-06, + "loss": 1.2267461395263672, + "step": 631100 + }, + { + "epoch": 84.16, + "grad_norm": 0.9305570721626282, + "learning_rate": 7.939733333333333e-06, + "loss": 1.2317483520507813, + "step": 631200 + }, + { + "epoch": 84.17333333333333, + "grad_norm": 0.877616822719574, + "learning_rate": 7.933066666666667e-06, + "loss": 1.2281706237792969, + "step": 631300 + }, + { + "epoch": 84.18666666666667, + "grad_norm": 0.9188335537910461, + "learning_rate": 7.926466666666666e-06, + "loss": 1.2292250061035157, + "step": 631400 + }, + { + "epoch": 84.2, + "grad_norm": 0.9196408987045288, + "learning_rate": 7.919800000000002e-06, + "loss": 1.2331906127929688, + "step": 631500 + }, + { + "epoch": 84.21333333333334, + "grad_norm": 0.9125308990478516, + "learning_rate": 7.913133333333334e-06, + "loss": 1.2301849365234374, + "step": 631600 + }, + { + "epoch": 84.22666666666667, + "grad_norm": 0.8713774681091309, + "learning_rate": 7.906466666666668e-06, + "loss": 1.230985107421875, + "step": 631700 + }, + { + "epoch": 84.24, + "grad_norm": 0.9613950848579407, + "learning_rate": 7.8998e-06, + "loss": 1.2276271057128907, + "step": 631800 + }, + { + "epoch": 84.25333333333333, + "grad_norm": 0.8837341666221619, + "learning_rate": 7.893133333333334e-06, + "loss": 1.2295457458496093, + "step": 631900 + }, + { + "epoch": 84.26666666666667, + "grad_norm": 0.8872280120849609, + "learning_rate": 7.886466666666666e-06, + "loss": 1.2273683166503906, + "step": 632000 + }, + { + "epoch": 84.28, + "grad_norm": 0.8547608852386475, + "learning_rate": 7.8798e-06, + "loss": 1.2305823516845704, + "step": 632100 + }, + { + "epoch": 84.29333333333334, + "grad_norm": 0.9107147455215454, + "learning_rate": 7.873133333333334e-06, + "loss": 1.2315924072265625, + "step": 632200 + }, + { + "epoch": 84.30666666666667, + "grad_norm": 0.8627474904060364, + "learning_rate": 7.866466666666667e-06, + "loss": 1.230730972290039, + "step": 632300 + }, + { + "epoch": 84.32, + "grad_norm": 0.9304380416870117, + "learning_rate": 7.8598e-06, + "loss": 1.2302085876464843, + "step": 632400 + }, + { + "epoch": 84.33333333333333, + "grad_norm": 0.8998819589614868, + "learning_rate": 7.853133333333333e-06, + "loss": 1.2364775085449218, + "step": 632500 + }, + { + "epoch": 84.34666666666666, + "grad_norm": 0.8804898858070374, + "learning_rate": 7.846466666666667e-06, + "loss": 1.2302351379394532, + "step": 632600 + }, + { + "epoch": 84.36, + "grad_norm": 0.8894650936126709, + "learning_rate": 7.8398e-06, + "loss": 1.2332183074951173, + "step": 632700 + }, + { + "epoch": 84.37333333333333, + "grad_norm": 0.8644715547561646, + "learning_rate": 7.833133333333335e-06, + "loss": 1.2344248962402344, + "step": 632800 + }, + { + "epoch": 84.38666666666667, + "grad_norm": 0.9465084671974182, + "learning_rate": 7.826466666666667e-06, + "loss": 1.2316624450683593, + "step": 632900 + }, + { + "epoch": 84.4, + "grad_norm": 0.9370139241218567, + "learning_rate": 7.819800000000001e-06, + "loss": 1.2370130157470702, + "step": 633000 + }, + { + "epoch": 84.41333333333333, + "grad_norm": 0.888559877872467, + "learning_rate": 7.813133333333333e-06, + "loss": 1.2325920867919922, + "step": 633100 + }, + { + "epoch": 84.42666666666666, + "grad_norm": 0.8683785200119019, + "learning_rate": 7.806466666666667e-06, + "loss": 1.229187240600586, + "step": 633200 + }, + { + "epoch": 84.44, + "grad_norm": 0.9215974807739258, + "learning_rate": 7.7998e-06, + "loss": 1.2338642120361327, + "step": 633300 + }, + { + "epoch": 84.45333333333333, + "grad_norm": 0.9330242276191711, + "learning_rate": 7.7932e-06, + "loss": 1.234636001586914, + "step": 633400 + }, + { + "epoch": 84.46666666666667, + "grad_norm": 0.8812191486358643, + "learning_rate": 7.786533333333332e-06, + "loss": 1.233119659423828, + "step": 633500 + }, + { + "epoch": 84.48, + "grad_norm": 0.9350599646568298, + "learning_rate": 7.779866666666666e-06, + "loss": 1.2376564788818358, + "step": 633600 + }, + { + "epoch": 84.49333333333334, + "grad_norm": 0.8722426295280457, + "learning_rate": 7.7732e-06, + "loss": 1.2354527282714844, + "step": 633700 + }, + { + "epoch": 84.50666666666666, + "grad_norm": 0.9167805910110474, + "learning_rate": 7.766533333333334e-06, + "loss": 1.2361752319335937, + "step": 633800 + }, + { + "epoch": 84.52, + "grad_norm": 0.908461332321167, + "learning_rate": 7.759866666666667e-06, + "loss": 1.232997589111328, + "step": 633900 + }, + { + "epoch": 84.53333333333333, + "grad_norm": 0.9203801155090332, + "learning_rate": 7.7532e-06, + "loss": 1.2356761169433594, + "step": 634000 + }, + { + "epoch": 84.54666666666667, + "grad_norm": 0.8989818692207336, + "learning_rate": 7.746533333333333e-06, + "loss": 1.2334909057617187, + "step": 634100 + }, + { + "epoch": 84.56, + "grad_norm": 0.9835088849067688, + "learning_rate": 7.739866666666667e-06, + "loss": 1.2388640594482423, + "step": 634200 + }, + { + "epoch": 84.57333333333334, + "grad_norm": 0.8754939436912537, + "learning_rate": 7.7332e-06, + "loss": 1.241256866455078, + "step": 634300 + }, + { + "epoch": 84.58666666666667, + "grad_norm": 0.8577386736869812, + "learning_rate": 7.726533333333335e-06, + "loss": 1.2348951721191406, + "step": 634400 + }, + { + "epoch": 84.6, + "grad_norm": 0.8799518346786499, + "learning_rate": 7.719866666666667e-06, + "loss": 1.2372528839111328, + "step": 634500 + }, + { + "epoch": 84.61333333333333, + "grad_norm": 0.9047410488128662, + "learning_rate": 7.713200000000001e-06, + "loss": 1.2386643981933594, + "step": 634600 + }, + { + "epoch": 84.62666666666667, + "grad_norm": 0.9157127141952515, + "learning_rate": 7.706533333333333e-06, + "loss": 1.2385972595214845, + "step": 634700 + }, + { + "epoch": 84.64, + "grad_norm": 0.9638254046440125, + "learning_rate": 7.699866666666667e-06, + "loss": 1.236525115966797, + "step": 634800 + }, + { + "epoch": 84.65333333333334, + "grad_norm": 0.8745006322860718, + "learning_rate": 7.693200000000001e-06, + "loss": 1.237788314819336, + "step": 634900 + }, + { + "epoch": 84.66666666666667, + "grad_norm": 0.8753082752227783, + "learning_rate": 7.686533333333333e-06, + "loss": 1.2403019714355468, + "step": 635000 + }, + { + "epoch": 84.68, + "grad_norm": 0.9249312877655029, + "learning_rate": 7.679866666666667e-06, + "loss": 1.2393556976318358, + "step": 635100 + }, + { + "epoch": 84.69333333333333, + "grad_norm": 0.9037955403327942, + "learning_rate": 7.6732e-06, + "loss": 1.240056838989258, + "step": 635200 + }, + { + "epoch": 84.70666666666666, + "grad_norm": 0.8841052651405334, + "learning_rate": 7.666533333333334e-06, + "loss": 1.2407506561279298, + "step": 635300 + }, + { + "epoch": 84.72, + "grad_norm": 0.8909189701080322, + "learning_rate": 7.659933333333334e-06, + "loss": 1.2383670806884766, + "step": 635400 + }, + { + "epoch": 84.73333333333333, + "grad_norm": 0.827193021774292, + "learning_rate": 7.653266666666667e-06, + "loss": 1.2386473083496095, + "step": 635500 + }, + { + "epoch": 84.74666666666667, + "grad_norm": 0.8958622813224792, + "learning_rate": 7.6466e-06, + "loss": 1.2380664825439454, + "step": 635600 + }, + { + "epoch": 84.76, + "grad_norm": 0.9114907383918762, + "learning_rate": 7.639933333333333e-06, + "loss": 1.240849151611328, + "step": 635700 + }, + { + "epoch": 84.77333333333333, + "grad_norm": 0.907952070236206, + "learning_rate": 7.633266666666667e-06, + "loss": 1.2389560699462892, + "step": 635800 + }, + { + "epoch": 84.78666666666666, + "grad_norm": 0.8953930735588074, + "learning_rate": 7.626600000000001e-06, + "loss": 1.2392295074462891, + "step": 635900 + }, + { + "epoch": 84.8, + "grad_norm": 0.8722439408302307, + "learning_rate": 7.619933333333333e-06, + "loss": 1.2366736602783204, + "step": 636000 + }, + { + "epoch": 84.81333333333333, + "grad_norm": 0.9456676244735718, + "learning_rate": 7.613266666666667e-06, + "loss": 1.237574005126953, + "step": 636100 + }, + { + "epoch": 84.82666666666667, + "grad_norm": 0.919913113117218, + "learning_rate": 7.6066e-06, + "loss": 1.2442679595947266, + "step": 636200 + }, + { + "epoch": 84.84, + "grad_norm": 0.9416049718856812, + "learning_rate": 7.599933333333334e-06, + "loss": 1.243212890625, + "step": 636300 + }, + { + "epoch": 84.85333333333334, + "grad_norm": 0.9268980026245117, + "learning_rate": 7.593266666666666e-06, + "loss": 1.2382852172851562, + "step": 636400 + }, + { + "epoch": 84.86666666666666, + "grad_norm": 0.8669841885566711, + "learning_rate": 7.5866e-06, + "loss": 1.240669708251953, + "step": 636500 + }, + { + "epoch": 84.88, + "grad_norm": 0.9298033714294434, + "learning_rate": 7.5799333333333335e-06, + "loss": 1.2412749481201173, + "step": 636600 + }, + { + "epoch": 84.89333333333333, + "grad_norm": 0.962435245513916, + "learning_rate": 7.573266666666667e-06, + "loss": 1.2403402709960938, + "step": 636700 + }, + { + "epoch": 84.90666666666667, + "grad_norm": 0.8809468150138855, + "learning_rate": 7.5666e-06, + "loss": 1.240942153930664, + "step": 636800 + }, + { + "epoch": 84.92, + "grad_norm": 0.8820023536682129, + "learning_rate": 7.5599333333333345e-06, + "loss": 1.2404846954345703, + "step": 636900 + }, + { + "epoch": 84.93333333333334, + "grad_norm": 0.9361487030982971, + "learning_rate": 7.553266666666667e-06, + "loss": 1.246995849609375, + "step": 637000 + }, + { + "epoch": 84.94666666666667, + "grad_norm": 0.8973338603973389, + "learning_rate": 7.546600000000001e-06, + "loss": 1.242446517944336, + "step": 637100 + }, + { + "epoch": 84.96, + "grad_norm": 0.9044018387794495, + "learning_rate": 7.539933333333334e-06, + "loss": 1.2397714233398438, + "step": 637200 + }, + { + "epoch": 84.97333333333333, + "grad_norm": 0.9448003768920898, + "learning_rate": 7.533266666666668e-06, + "loss": 1.239171905517578, + "step": 637300 + }, + { + "epoch": 84.98666666666666, + "grad_norm": 0.9056717753410339, + "learning_rate": 7.526666666666667e-06, + "loss": 1.2440061950683594, + "step": 637400 + }, + { + "epoch": 85.0, + "grad_norm": 0.9282798171043396, + "learning_rate": 7.520000000000001e-06, + "loss": 1.2430106353759767, + "step": 637500 + }, + { + "epoch": 85.01333333333334, + "grad_norm": 0.8406403660774231, + "learning_rate": 7.513333333333333e-06, + "loss": 1.2223043823242188, + "step": 637600 + }, + { + "epoch": 85.02666666666667, + "grad_norm": 0.8572675585746765, + "learning_rate": 7.506666666666667e-06, + "loss": 1.2273347473144531, + "step": 637700 + }, + { + "epoch": 85.04, + "grad_norm": 0.887302815914154, + "learning_rate": 7.5e-06, + "loss": 1.221242446899414, + "step": 637800 + }, + { + "epoch": 85.05333333333333, + "grad_norm": 0.91096431016922, + "learning_rate": 7.493333333333334e-06, + "loss": 1.2202544403076172, + "step": 637900 + }, + { + "epoch": 85.06666666666666, + "grad_norm": 0.8980180621147156, + "learning_rate": 7.486666666666666e-06, + "loss": 1.2262554931640626, + "step": 638000 + }, + { + "epoch": 85.08, + "grad_norm": 0.9790130257606506, + "learning_rate": 7.480000000000001e-06, + "loss": 1.2260646057128906, + "step": 638100 + }, + { + "epoch": 85.09333333333333, + "grad_norm": 0.9041993021965027, + "learning_rate": 7.4733333333333335e-06, + "loss": 1.2228318023681641, + "step": 638200 + }, + { + "epoch": 85.10666666666667, + "grad_norm": 0.9332461953163147, + "learning_rate": 7.4666666666666675e-06, + "loss": 1.2237569427490234, + "step": 638300 + }, + { + "epoch": 85.12, + "grad_norm": 0.8508715033531189, + "learning_rate": 7.4600000000000006e-06, + "loss": 1.22271240234375, + "step": 638400 + }, + { + "epoch": 85.13333333333334, + "grad_norm": 0.8810603618621826, + "learning_rate": 7.453333333333333e-06, + "loss": 1.2232743835449218, + "step": 638500 + }, + { + "epoch": 85.14666666666666, + "grad_norm": 0.9365109801292419, + "learning_rate": 7.446666666666667e-06, + "loss": 1.2257044982910157, + "step": 638600 + }, + { + "epoch": 85.16, + "grad_norm": 0.9457574486732483, + "learning_rate": 7.44e-06, + "loss": 1.2268252563476563, + "step": 638700 + }, + { + "epoch": 85.17333333333333, + "grad_norm": 0.9184970855712891, + "learning_rate": 7.433333333333334e-06, + "loss": 1.2216042327880858, + "step": 638800 + }, + { + "epoch": 85.18666666666667, + "grad_norm": 0.8944892883300781, + "learning_rate": 7.426666666666666e-06, + "loss": 1.2262333679199218, + "step": 638900 + }, + { + "epoch": 85.2, + "grad_norm": 0.9582709670066833, + "learning_rate": 7.420000000000001e-06, + "loss": 1.2231621551513672, + "step": 639000 + }, + { + "epoch": 85.21333333333334, + "grad_norm": 0.9123549461364746, + "learning_rate": 7.413333333333333e-06, + "loss": 1.2277581787109375, + "step": 639100 + }, + { + "epoch": 85.22666666666667, + "grad_norm": 0.8903558850288391, + "learning_rate": 7.406666666666667e-06, + "loss": 1.2252957916259766, + "step": 639200 + }, + { + "epoch": 85.24, + "grad_norm": 0.8448173999786377, + "learning_rate": 7.4e-06, + "loss": 1.224297332763672, + "step": 639300 + }, + { + "epoch": 85.25333333333333, + "grad_norm": 0.9212110638618469, + "learning_rate": 7.3934e-06, + "loss": 1.2260472869873047, + "step": 639400 + }, + { + "epoch": 85.26666666666667, + "grad_norm": 0.8959601521492004, + "learning_rate": 7.386733333333333e-06, + "loss": 1.2307054901123047, + "step": 639500 + }, + { + "epoch": 85.28, + "grad_norm": 0.8986248970031738, + "learning_rate": 7.380066666666667e-06, + "loss": 1.2230642700195313, + "step": 639600 + }, + { + "epoch": 85.29333333333334, + "grad_norm": 0.9850512146949768, + "learning_rate": 7.3733999999999996e-06, + "loss": 1.2273857879638672, + "step": 639700 + }, + { + "epoch": 85.30666666666667, + "grad_norm": 0.8248298764228821, + "learning_rate": 7.3667333333333335e-06, + "loss": 1.226371307373047, + "step": 639800 + }, + { + "epoch": 85.32, + "grad_norm": 0.9425682425498962, + "learning_rate": 7.360066666666667e-06, + "loss": 1.2281211090087891, + "step": 639900 + }, + { + "epoch": 85.33333333333333, + "grad_norm": 0.8708743453025818, + "learning_rate": 7.353400000000001e-06, + "loss": 1.225609664916992, + "step": 640000 + }, + { + "epoch": 85.34666666666666, + "grad_norm": 0.9035684466362, + "learning_rate": 7.346733333333333e-06, + "loss": 1.2235333251953124, + "step": 640100 + }, + { + "epoch": 85.36, + "grad_norm": 0.9259425401687622, + "learning_rate": 7.340066666666668e-06, + "loss": 1.23236083984375, + "step": 640200 + }, + { + "epoch": 85.37333333333333, + "grad_norm": 0.9252036213874817, + "learning_rate": 7.3334e-06, + "loss": 1.229639205932617, + "step": 640300 + }, + { + "epoch": 85.38666666666667, + "grad_norm": 0.9062958359718323, + "learning_rate": 7.326733333333334e-06, + "loss": 1.2285384368896484, + "step": 640400 + }, + { + "epoch": 85.4, + "grad_norm": 0.9291536211967468, + "learning_rate": 7.320066666666667e-06, + "loss": 1.2298905944824219, + "step": 640500 + }, + { + "epoch": 85.41333333333333, + "grad_norm": 0.8647129535675049, + "learning_rate": 7.313400000000001e-06, + "loss": 1.2309508514404297, + "step": 640600 + }, + { + "epoch": 85.42666666666666, + "grad_norm": 0.9247118234634399, + "learning_rate": 7.306733333333333e-06, + "loss": 1.2306937408447265, + "step": 640700 + }, + { + "epoch": 85.44, + "grad_norm": 0.8799145221710205, + "learning_rate": 7.300066666666667e-06, + "loss": 1.226353759765625, + "step": 640800 + }, + { + "epoch": 85.45333333333333, + "grad_norm": 0.9392918944358826, + "learning_rate": 7.2934e-06, + "loss": 1.2263146209716798, + "step": 640900 + }, + { + "epoch": 85.46666666666667, + "grad_norm": 0.8683087229728699, + "learning_rate": 7.286733333333334e-06, + "loss": 1.2288311767578124, + "step": 641000 + }, + { + "epoch": 85.48, + "grad_norm": 0.9020020365715027, + "learning_rate": 7.2800666666666666e-06, + "loss": 1.229554214477539, + "step": 641100 + }, + { + "epoch": 85.49333333333334, + "grad_norm": 0.8641257882118225, + "learning_rate": 7.2734e-06, + "loss": 1.2283095550537109, + "step": 641200 + }, + { + "epoch": 85.50666666666666, + "grad_norm": 0.8976728320121765, + "learning_rate": 7.266733333333334e-06, + "loss": 1.2341390991210937, + "step": 641300 + }, + { + "epoch": 85.52, + "grad_norm": 0.9710721373558044, + "learning_rate": 7.260133333333334e-06, + "loss": 1.228611831665039, + "step": 641400 + }, + { + "epoch": 85.53333333333333, + "grad_norm": 0.9804433584213257, + "learning_rate": 7.253466666666667e-06, + "loss": 1.231660385131836, + "step": 641500 + }, + { + "epoch": 85.54666666666667, + "grad_norm": 0.9250527620315552, + "learning_rate": 7.246800000000001e-06, + "loss": 1.2287106323242187, + "step": 641600 + }, + { + "epoch": 85.56, + "grad_norm": 0.8953940868377686, + "learning_rate": 7.240133333333334e-06, + "loss": 1.2353031158447265, + "step": 641700 + }, + { + "epoch": 85.57333333333334, + "grad_norm": 0.8646306991577148, + "learning_rate": 7.233466666666668e-06, + "loss": 1.232652053833008, + "step": 641800 + }, + { + "epoch": 85.58666666666667, + "grad_norm": 0.9270492792129517, + "learning_rate": 7.2268e-06, + "loss": 1.2340243530273438, + "step": 641900 + }, + { + "epoch": 85.6, + "grad_norm": 0.9221645593643188, + "learning_rate": 7.220133333333334e-06, + "loss": 1.2317237091064452, + "step": 642000 + }, + { + "epoch": 85.61333333333333, + "grad_norm": 0.8994006514549255, + "learning_rate": 7.213466666666667e-06, + "loss": 1.2312322998046874, + "step": 642100 + }, + { + "epoch": 85.62666666666667, + "grad_norm": 0.9039101600646973, + "learning_rate": 7.206799999999999e-06, + "loss": 1.2359030151367187, + "step": 642200 + }, + { + "epoch": 85.64, + "grad_norm": 0.9876293540000916, + "learning_rate": 7.200133333333334e-06, + "loss": 1.231430435180664, + "step": 642300 + }, + { + "epoch": 85.65333333333334, + "grad_norm": 0.8660300970077515, + "learning_rate": 7.193466666666666e-06, + "loss": 1.232857437133789, + "step": 642400 + }, + { + "epoch": 85.66666666666667, + "grad_norm": 0.9719154834747314, + "learning_rate": 7.1868e-06, + "loss": 1.2365948486328124, + "step": 642500 + }, + { + "epoch": 85.68, + "grad_norm": 0.9251152276992798, + "learning_rate": 7.1801333333333335e-06, + "loss": 1.2319696044921875, + "step": 642600 + }, + { + "epoch": 85.69333333333333, + "grad_norm": 0.8920202255249023, + "learning_rate": 7.1734666666666675e-06, + "loss": 1.2325668334960938, + "step": 642700 + }, + { + "epoch": 85.70666666666666, + "grad_norm": 0.9049530625343323, + "learning_rate": 7.1668e-06, + "loss": 1.2362017822265625, + "step": 642800 + }, + { + "epoch": 85.72, + "grad_norm": 0.8955960869789124, + "learning_rate": 7.160133333333334e-06, + "loss": 1.2367591094970702, + "step": 642900 + }, + { + "epoch": 85.73333333333333, + "grad_norm": 0.8741152286529541, + "learning_rate": 7.153466666666667e-06, + "loss": 1.2382603454589844, + "step": 643000 + }, + { + "epoch": 85.74666666666667, + "grad_norm": 0.8936929106712341, + "learning_rate": 7.146800000000001e-06, + "loss": 1.2319417572021485, + "step": 643100 + }, + { + "epoch": 85.76, + "grad_norm": 0.8739801645278931, + "learning_rate": 7.140133333333333e-06, + "loss": 1.2322359466552735, + "step": 643200 + }, + { + "epoch": 85.77333333333333, + "grad_norm": 0.9064525961875916, + "learning_rate": 7.133466666666668e-06, + "loss": 1.2369744110107421, + "step": 643300 + }, + { + "epoch": 85.78666666666666, + "grad_norm": 0.8985515236854553, + "learning_rate": 7.1268e-06, + "loss": 1.2325567626953124, + "step": 643400 + }, + { + "epoch": 85.8, + "grad_norm": 0.9307603240013123, + "learning_rate": 7.120200000000001e-06, + "loss": 1.238876495361328, + "step": 643500 + }, + { + "epoch": 85.81333333333333, + "grad_norm": 0.8941517472267151, + "learning_rate": 7.113533333333333e-06, + "loss": 1.2391890716552734, + "step": 643600 + }, + { + "epoch": 85.82666666666667, + "grad_norm": 0.9674673676490784, + "learning_rate": 7.106866666666667e-06, + "loss": 1.2368927764892579, + "step": 643700 + }, + { + "epoch": 85.84, + "grad_norm": 0.933340847492218, + "learning_rate": 7.1002e-06, + "loss": 1.2422388458251954, + "step": 643800 + }, + { + "epoch": 85.85333333333334, + "grad_norm": 0.8938137888908386, + "learning_rate": 7.093533333333334e-06, + "loss": 1.2338928985595703, + "step": 643900 + }, + { + "epoch": 85.86666666666666, + "grad_norm": 0.8926107287406921, + "learning_rate": 7.0868666666666665e-06, + "loss": 1.2356930541992188, + "step": 644000 + }, + { + "epoch": 85.88, + "grad_norm": 0.8534455299377441, + "learning_rate": 7.0802e-06, + "loss": 1.2378578186035156, + "step": 644100 + }, + { + "epoch": 85.89333333333333, + "grad_norm": 1.000348448753357, + "learning_rate": 7.0735333333333335e-06, + "loss": 1.2363401794433593, + "step": 644200 + }, + { + "epoch": 85.90666666666667, + "grad_norm": 0.9621683359146118, + "learning_rate": 7.0668666666666675e-06, + "loss": 1.241478271484375, + "step": 644300 + }, + { + "epoch": 85.92, + "grad_norm": 0.9294373989105225, + "learning_rate": 7.0602e-06, + "loss": 1.237207565307617, + "step": 644400 + }, + { + "epoch": 85.93333333333334, + "grad_norm": 0.9206804037094116, + "learning_rate": 7.0535333333333346e-06, + "loss": 1.2392974090576172, + "step": 644500 + }, + { + "epoch": 85.94666666666667, + "grad_norm": 0.8890131115913391, + "learning_rate": 7.046866666666667e-06, + "loss": 1.2358542633056642, + "step": 644600 + }, + { + "epoch": 85.96, + "grad_norm": 0.887895941734314, + "learning_rate": 7.040200000000001e-06, + "loss": 1.2418438720703124, + "step": 644700 + }, + { + "epoch": 85.97333333333333, + "grad_norm": 0.8878814578056335, + "learning_rate": 7.033533333333334e-06, + "loss": 1.2417584991455077, + "step": 644800 + }, + { + "epoch": 85.98666666666666, + "grad_norm": 0.9163659811019897, + "learning_rate": 7.026866666666666e-06, + "loss": 1.2418124389648437, + "step": 644900 + }, + { + "epoch": 86.0, + "grad_norm": 0.9403581023216248, + "learning_rate": 7.0202e-06, + "loss": 1.2414751434326172, + "step": 645000 + }, + { + "epoch": 86.01333333333334, + "grad_norm": 0.8630901575088501, + "learning_rate": 7.013533333333333e-06, + "loss": 1.2175826263427734, + "step": 645100 + }, + { + "epoch": 86.02666666666667, + "grad_norm": 0.9154542684555054, + "learning_rate": 7.006866666666667e-06, + "loss": 1.2209982299804687, + "step": 645200 + }, + { + "epoch": 86.04, + "grad_norm": 0.9038174748420715, + "learning_rate": 7.0001999999999995e-06, + "loss": 1.216339340209961, + "step": 645300 + }, + { + "epoch": 86.05333333333333, + "grad_norm": 0.8506960272789001, + "learning_rate": 6.993533333333334e-06, + "loss": 1.218511962890625, + "step": 645400 + }, + { + "epoch": 86.06666666666666, + "grad_norm": 0.8634645342826843, + "learning_rate": 6.986933333333334e-06, + "loss": 1.2178488922119142, + "step": 645500 + }, + { + "epoch": 86.08, + "grad_norm": 0.9225000739097595, + "learning_rate": 6.9802666666666665e-06, + "loss": 1.2196299743652343, + "step": 645600 + }, + { + "epoch": 86.09333333333333, + "grad_norm": 0.9054206609725952, + "learning_rate": 6.973600000000001e-06, + "loss": 1.2221673583984376, + "step": 645700 + }, + { + "epoch": 86.10666666666667, + "grad_norm": 0.8930476307868958, + "learning_rate": 6.9669333333333336e-06, + "loss": 1.219794464111328, + "step": 645800 + }, + { + "epoch": 86.12, + "grad_norm": 0.8613491058349609, + "learning_rate": 6.960266666666667e-06, + "loss": 1.21840576171875, + "step": 645900 + }, + { + "epoch": 86.13333333333334, + "grad_norm": 0.9077932238578796, + "learning_rate": 6.953600000000001e-06, + "loss": 1.2229581451416016, + "step": 646000 + }, + { + "epoch": 86.14666666666666, + "grad_norm": 0.9440174102783203, + "learning_rate": 6.946933333333333e-06, + "loss": 1.217189178466797, + "step": 646100 + }, + { + "epoch": 86.16, + "grad_norm": 0.906891405582428, + "learning_rate": 6.940266666666667e-06, + "loss": 1.2184838104248046, + "step": 646200 + }, + { + "epoch": 86.17333333333333, + "grad_norm": 0.8963661193847656, + "learning_rate": 6.9336e-06, + "loss": 1.2230545043945313, + "step": 646300 + }, + { + "epoch": 86.18666666666667, + "grad_norm": 0.8720294833183289, + "learning_rate": 6.926933333333334e-06, + "loss": 1.2247891998291016, + "step": 646400 + }, + { + "epoch": 86.2, + "grad_norm": 0.9351063966751099, + "learning_rate": 6.920266666666666e-06, + "loss": 1.2246680450439453, + "step": 646500 + }, + { + "epoch": 86.21333333333334, + "grad_norm": 0.9471380114555359, + "learning_rate": 6.913600000000001e-06, + "loss": 1.2222270965576172, + "step": 646600 + }, + { + "epoch": 86.22666666666667, + "grad_norm": 0.8749629259109497, + "learning_rate": 6.906933333333333e-06, + "loss": 1.2154730987548827, + "step": 646700 + }, + { + "epoch": 86.24, + "grad_norm": 0.8750444650650024, + "learning_rate": 6.900266666666667e-06, + "loss": 1.2247186279296876, + "step": 646800 + }, + { + "epoch": 86.25333333333333, + "grad_norm": 0.9080207347869873, + "learning_rate": 6.8936e-06, + "loss": 1.2202265930175782, + "step": 646900 + }, + { + "epoch": 86.26666666666667, + "grad_norm": 0.9241020679473877, + "learning_rate": 6.886933333333334e-06, + "loss": 1.224848175048828, + "step": 647000 + }, + { + "epoch": 86.28, + "grad_norm": 0.907421350479126, + "learning_rate": 6.880266666666667e-06, + "loss": 1.2235704040527344, + "step": 647100 + }, + { + "epoch": 86.29333333333334, + "grad_norm": 0.9098572731018066, + "learning_rate": 6.8736000000000006e-06, + "loss": 1.2222378540039063, + "step": 647200 + }, + { + "epoch": 86.30666666666667, + "grad_norm": 0.8905967473983765, + "learning_rate": 6.866933333333334e-06, + "loss": 1.2262596130371093, + "step": 647300 + }, + { + "epoch": 86.32, + "grad_norm": 0.8770264387130737, + "learning_rate": 6.860266666666668e-06, + "loss": 1.2231716156005858, + "step": 647400 + }, + { + "epoch": 86.33333333333333, + "grad_norm": 0.8793537616729736, + "learning_rate": 6.853666666666667e-06, + "loss": 1.2286277770996095, + "step": 647500 + }, + { + "epoch": 86.34666666666666, + "grad_norm": 0.8772323131561279, + "learning_rate": 6.847000000000001e-06, + "loss": 1.2212282562255858, + "step": 647600 + }, + { + "epoch": 86.36, + "grad_norm": 0.891001284122467, + "learning_rate": 6.840333333333333e-06, + "loss": 1.222700729370117, + "step": 647700 + }, + { + "epoch": 86.37333333333333, + "grad_norm": 0.9272405505180359, + "learning_rate": 6.833666666666668e-06, + "loss": 1.2218807220458985, + "step": 647800 + }, + { + "epoch": 86.38666666666667, + "grad_norm": 0.884071409702301, + "learning_rate": 6.827e-06, + "loss": 1.2227737426757812, + "step": 647900 + }, + { + "epoch": 86.4, + "grad_norm": 0.9387223720550537, + "learning_rate": 6.820333333333334e-06, + "loss": 1.227510986328125, + "step": 648000 + }, + { + "epoch": 86.41333333333333, + "grad_norm": 0.8574748039245605, + "learning_rate": 6.813666666666667e-06, + "loss": 1.2250510406494142, + "step": 648100 + }, + { + "epoch": 86.42666666666666, + "grad_norm": 0.8585149049758911, + "learning_rate": 6.807000000000001e-06, + "loss": 1.2231393432617188, + "step": 648200 + }, + { + "epoch": 86.44, + "grad_norm": 0.8672378659248352, + "learning_rate": 6.800333333333333e-06, + "loss": 1.2262419891357421, + "step": 648300 + }, + { + "epoch": 86.45333333333333, + "grad_norm": 0.8681180477142334, + "learning_rate": 6.793666666666667e-06, + "loss": 1.2264180755615235, + "step": 648400 + }, + { + "epoch": 86.46666666666667, + "grad_norm": 0.9366236329078674, + "learning_rate": 6.787e-06, + "loss": 1.2281493377685546, + "step": 648500 + }, + { + "epoch": 86.48, + "grad_norm": 0.9453869462013245, + "learning_rate": 6.780333333333333e-06, + "loss": 1.2302886199951173, + "step": 648600 + }, + { + "epoch": 86.49333333333334, + "grad_norm": 0.8976516127586365, + "learning_rate": 6.773666666666667e-06, + "loss": 1.227205810546875, + "step": 648700 + }, + { + "epoch": 86.50666666666666, + "grad_norm": 0.9220427870750427, + "learning_rate": 6.767e-06, + "loss": 1.2235513305664063, + "step": 648800 + }, + { + "epoch": 86.52, + "grad_norm": 0.912756085395813, + "learning_rate": 6.760333333333334e-06, + "loss": 1.2255386352539062, + "step": 648900 + }, + { + "epoch": 86.53333333333333, + "grad_norm": 0.9162057042121887, + "learning_rate": 6.753666666666667e-06, + "loss": 1.2223670959472657, + "step": 649000 + }, + { + "epoch": 86.54666666666667, + "grad_norm": 0.8735973238945007, + "learning_rate": 6.747000000000001e-06, + "loss": 1.2262992858886719, + "step": 649100 + }, + { + "epoch": 86.56, + "grad_norm": 0.8713511228561401, + "learning_rate": 6.740333333333333e-06, + "loss": 1.231358871459961, + "step": 649200 + }, + { + "epoch": 86.57333333333334, + "grad_norm": 0.879443883895874, + "learning_rate": 6.733666666666667e-06, + "loss": 1.2286178588867187, + "step": 649300 + }, + { + "epoch": 86.58666666666667, + "grad_norm": 0.9119516015052795, + "learning_rate": 6.727e-06, + "loss": 1.2312828063964845, + "step": 649400 + }, + { + "epoch": 86.6, + "grad_norm": 0.9122266173362732, + "learning_rate": 6.7204e-06, + "loss": 1.2293184661865235, + "step": 649500 + }, + { + "epoch": 86.61333333333333, + "grad_norm": 0.9306323528289795, + "learning_rate": 6.713733333333333e-06, + "loss": 1.2252943420410156, + "step": 649600 + }, + { + "epoch": 86.62666666666667, + "grad_norm": 0.8929945230484009, + "learning_rate": 6.707066666666667e-06, + "loss": 1.2296338653564454, + "step": 649700 + }, + { + "epoch": 86.64, + "grad_norm": 0.9355345964431763, + "learning_rate": 6.700399999999999e-06, + "loss": 1.229610595703125, + "step": 649800 + }, + { + "epoch": 86.65333333333334, + "grad_norm": 0.9156262278556824, + "learning_rate": 6.693733333333334e-06, + "loss": 1.2348743438720704, + "step": 649900 + }, + { + "epoch": 86.66666666666667, + "grad_norm": 0.9362950921058655, + "learning_rate": 6.6870666666666665e-06, + "loss": 1.2279579162597656, + "step": 650000 + }, + { + "epoch": 86.68, + "grad_norm": 0.8823856711387634, + "learning_rate": 6.6804000000000004e-06, + "loss": 1.23043212890625, + "step": 650100 + }, + { + "epoch": 86.69333333333333, + "grad_norm": 0.9650241732597351, + "learning_rate": 6.6737333333333336e-06, + "loss": 1.2296434020996094, + "step": 650200 + }, + { + "epoch": 86.70666666666666, + "grad_norm": 0.8565574288368225, + "learning_rate": 6.6670666666666675e-06, + "loss": 1.2308535003662109, + "step": 650300 + }, + { + "epoch": 86.72, + "grad_norm": 0.9410964846611023, + "learning_rate": 6.6604e-06, + "loss": 1.2321768951416017, + "step": 650400 + }, + { + "epoch": 86.73333333333333, + "grad_norm": 0.9220337867736816, + "learning_rate": 6.653733333333334e-06, + "loss": 1.231683349609375, + "step": 650500 + }, + { + "epoch": 86.74666666666667, + "grad_norm": 0.8969945907592773, + "learning_rate": 6.647066666666667e-06, + "loss": 1.233789291381836, + "step": 650600 + }, + { + "epoch": 86.76, + "grad_norm": 0.9641741514205933, + "learning_rate": 6.640400000000001e-06, + "loss": 1.230896987915039, + "step": 650700 + }, + { + "epoch": 86.77333333333333, + "grad_norm": 0.9212261438369751, + "learning_rate": 6.633733333333333e-06, + "loss": 1.2316611480712891, + "step": 650800 + }, + { + "epoch": 86.78666666666666, + "grad_norm": 0.8244799971580505, + "learning_rate": 6.627066666666668e-06, + "loss": 1.2281710815429687, + "step": 650900 + }, + { + "epoch": 86.8, + "grad_norm": 0.89630126953125, + "learning_rate": 6.6204e-06, + "loss": 1.2288339233398438, + "step": 651000 + }, + { + "epoch": 86.81333333333333, + "grad_norm": 0.8904646635055542, + "learning_rate": 6.613733333333334e-06, + "loss": 1.2315651702880859, + "step": 651100 + }, + { + "epoch": 86.82666666666667, + "grad_norm": 0.9223039150238037, + "learning_rate": 6.607066666666667e-06, + "loss": 1.2328720855712891, + "step": 651200 + }, + { + "epoch": 86.84, + "grad_norm": 0.8785363435745239, + "learning_rate": 6.6003999999999995e-06, + "loss": 1.2333258056640626, + "step": 651300 + }, + { + "epoch": 86.85333333333334, + "grad_norm": 0.9430354237556458, + "learning_rate": 6.5937333333333335e-06, + "loss": 1.231754913330078, + "step": 651400 + }, + { + "epoch": 86.86666666666666, + "grad_norm": 0.9277433156967163, + "learning_rate": 6.587133333333334e-06, + "loss": 1.2332256317138672, + "step": 651500 + }, + { + "epoch": 86.88, + "grad_norm": 0.9251424670219421, + "learning_rate": 6.5804666666666665e-06, + "loss": 1.2302942657470703, + "step": 651600 + }, + { + "epoch": 86.89333333333333, + "grad_norm": 0.9771026968955994, + "learning_rate": 6.5738000000000005e-06, + "loss": 1.2350211334228516, + "step": 651700 + }, + { + "epoch": 86.90666666666667, + "grad_norm": 0.9614867568016052, + "learning_rate": 6.567133333333334e-06, + "loss": 1.2328236389160157, + "step": 651800 + }, + { + "epoch": 86.92, + "grad_norm": 0.9628375768661499, + "learning_rate": 6.5604666666666676e-06, + "loss": 1.2369357299804689, + "step": 651900 + }, + { + "epoch": 86.93333333333334, + "grad_norm": 0.8983745574951172, + "learning_rate": 6.5538e-06, + "loss": 1.2343621063232422, + "step": 652000 + }, + { + "epoch": 86.94666666666667, + "grad_norm": 0.9080144166946411, + "learning_rate": 6.547133333333335e-06, + "loss": 1.2306615447998046, + "step": 652100 + }, + { + "epoch": 86.96, + "grad_norm": 0.8796840906143188, + "learning_rate": 6.540466666666667e-06, + "loss": 1.2312027740478515, + "step": 652200 + }, + { + "epoch": 86.97333333333333, + "grad_norm": 0.9401488304138184, + "learning_rate": 6.5338e-06, + "loss": 1.23423828125, + "step": 652300 + }, + { + "epoch": 86.98666666666666, + "grad_norm": 0.9651604890823364, + "learning_rate": 6.527133333333334e-06, + "loss": 1.2338542175292968, + "step": 652400 + }, + { + "epoch": 87.0, + "grad_norm": 0.9266039729118347, + "learning_rate": 6.520466666666666e-06, + "loss": 1.2390645599365235, + "step": 652500 + }, + { + "epoch": 87.01333333333334, + "grad_norm": 0.8999123573303223, + "learning_rate": 6.5138e-06, + "loss": 1.214796905517578, + "step": 652600 + }, + { + "epoch": 87.02666666666667, + "grad_norm": 0.903722882270813, + "learning_rate": 6.507133333333333e-06, + "loss": 1.2141775512695312, + "step": 652700 + }, + { + "epoch": 87.04, + "grad_norm": 0.8932545781135559, + "learning_rate": 6.500466666666667e-06, + "loss": 1.2154994201660156, + "step": 652800 + }, + { + "epoch": 87.05333333333333, + "grad_norm": 0.8836954236030579, + "learning_rate": 6.4937999999999996e-06, + "loss": 1.2121443939208985, + "step": 652900 + }, + { + "epoch": 87.06666666666666, + "grad_norm": 0.9204801321029663, + "learning_rate": 6.487133333333334e-06, + "loss": 1.2122740936279297, + "step": 653000 + }, + { + "epoch": 87.08, + "grad_norm": 0.8981918692588806, + "learning_rate": 6.480466666666667e-06, + "loss": 1.221134490966797, + "step": 653100 + }, + { + "epoch": 87.09333333333333, + "grad_norm": 0.926282525062561, + "learning_rate": 6.473800000000001e-06, + "loss": 1.2155657196044922, + "step": 653200 + }, + { + "epoch": 87.10666666666667, + "grad_norm": 0.8902606964111328, + "learning_rate": 6.467133333333334e-06, + "loss": 1.2164243316650392, + "step": 653300 + }, + { + "epoch": 87.12, + "grad_norm": 0.8815839290618896, + "learning_rate": 6.460466666666668e-06, + "loss": 1.2138585662841797, + "step": 653400 + }, + { + "epoch": 87.13333333333334, + "grad_norm": 0.9262551069259644, + "learning_rate": 6.453866666666667e-06, + "loss": 1.2137595367431642, + "step": 653500 + }, + { + "epoch": 87.14666666666666, + "grad_norm": 0.891934871673584, + "learning_rate": 6.447200000000001e-06, + "loss": 1.214564666748047, + "step": 653600 + }, + { + "epoch": 87.16, + "grad_norm": 0.8836770057678223, + "learning_rate": 6.440533333333333e-06, + "loss": 1.2159810638427735, + "step": 653700 + }, + { + "epoch": 87.17333333333333, + "grad_norm": 0.9016736745834351, + "learning_rate": 6.433866666666667e-06, + "loss": 1.2174545288085938, + "step": 653800 + }, + { + "epoch": 87.18666666666667, + "grad_norm": 0.9326723217964172, + "learning_rate": 6.4272e-06, + "loss": 1.2156101226806642, + "step": 653900 + }, + { + "epoch": 87.2, + "grad_norm": 0.8592504858970642, + "learning_rate": 6.420533333333334e-06, + "loss": 1.2173818969726562, + "step": 654000 + }, + { + "epoch": 87.21333333333334, + "grad_norm": 0.8951143026351929, + "learning_rate": 6.413866666666666e-06, + "loss": 1.2178955841064454, + "step": 654100 + }, + { + "epoch": 87.22666666666667, + "grad_norm": 0.9222288131713867, + "learning_rate": 6.407200000000001e-06, + "loss": 1.2179863739013672, + "step": 654200 + }, + { + "epoch": 87.24, + "grad_norm": 0.9849110245704651, + "learning_rate": 6.400533333333333e-06, + "loss": 1.2230202484130859, + "step": 654300 + }, + { + "epoch": 87.25333333333333, + "grad_norm": 0.9216305017471313, + "learning_rate": 6.393866666666667e-06, + "loss": 1.2152316284179687, + "step": 654400 + }, + { + "epoch": 87.26666666666667, + "grad_norm": 0.8858641982078552, + "learning_rate": 6.3872000000000004e-06, + "loss": 1.2167332458496094, + "step": 654500 + }, + { + "epoch": 87.28, + "grad_norm": 0.907527506351471, + "learning_rate": 6.380533333333334e-06, + "loss": 1.223568115234375, + "step": 654600 + }, + { + "epoch": 87.29333333333334, + "grad_norm": 0.928432285785675, + "learning_rate": 6.373866666666667e-06, + "loss": 1.221104507446289, + "step": 654700 + }, + { + "epoch": 87.30666666666667, + "grad_norm": 0.8888409733772278, + "learning_rate": 6.367200000000001e-06, + "loss": 1.2164854431152343, + "step": 654800 + }, + { + "epoch": 87.32, + "grad_norm": 0.9260812401771545, + "learning_rate": 6.360533333333334e-06, + "loss": 1.2207078552246093, + "step": 654900 + }, + { + "epoch": 87.33333333333333, + "grad_norm": 0.9093630313873291, + "learning_rate": 6.353866666666666e-06, + "loss": 1.221835174560547, + "step": 655000 + }, + { + "epoch": 87.34666666666666, + "grad_norm": 0.9289301633834839, + "learning_rate": 6.3472e-06, + "loss": 1.2211975860595703, + "step": 655100 + }, + { + "epoch": 87.36, + "grad_norm": 0.8211119771003723, + "learning_rate": 6.340533333333333e-06, + "loss": 1.2244545745849609, + "step": 655200 + }, + { + "epoch": 87.37333333333333, + "grad_norm": 0.9515888690948486, + "learning_rate": 6.333866666666667e-06, + "loss": 1.2235546112060547, + "step": 655300 + }, + { + "epoch": 87.38666666666667, + "grad_norm": 0.8519609570503235, + "learning_rate": 6.3272e-06, + "loss": 1.2207803344726562, + "step": 655400 + }, + { + "epoch": 87.4, + "grad_norm": 0.8767391443252563, + "learning_rate": 6.3206e-06, + "loss": 1.2202215576171875, + "step": 655500 + }, + { + "epoch": 87.41333333333333, + "grad_norm": 1.0171016454696655, + "learning_rate": 6.313933333333334e-06, + "loss": 1.2231157684326173, + "step": 655600 + }, + { + "epoch": 87.42666666666666, + "grad_norm": 0.86667400598526, + "learning_rate": 6.307266666666667e-06, + "loss": 1.2254328155517578, + "step": 655700 + }, + { + "epoch": 87.44, + "grad_norm": 0.9001585245132446, + "learning_rate": 6.300600000000001e-06, + "loss": 1.2218850708007813, + "step": 655800 + }, + { + "epoch": 87.45333333333333, + "grad_norm": 0.939195454120636, + "learning_rate": 6.293933333333333e-06, + "loss": 1.2206802368164062, + "step": 655900 + }, + { + "epoch": 87.46666666666667, + "grad_norm": 0.8869876265525818, + "learning_rate": 6.2872666666666665e-06, + "loss": 1.2218120574951172, + "step": 656000 + }, + { + "epoch": 87.48, + "grad_norm": 0.898676872253418, + "learning_rate": 6.2806000000000005e-06, + "loss": 1.2209648895263672, + "step": 656100 + }, + { + "epoch": 87.49333333333334, + "grad_norm": 0.9363060593605042, + "learning_rate": 6.273933333333333e-06, + "loss": 1.2237455749511719, + "step": 656200 + }, + { + "epoch": 87.50666666666666, + "grad_norm": 0.9196439981460571, + "learning_rate": 6.267266666666667e-06, + "loss": 1.2262535095214844, + "step": 656300 + }, + { + "epoch": 87.52, + "grad_norm": 0.7970747947692871, + "learning_rate": 6.2606e-06, + "loss": 1.2225990295410156, + "step": 656400 + }, + { + "epoch": 87.53333333333333, + "grad_norm": 0.8288227915763855, + "learning_rate": 6.253933333333334e-06, + "loss": 1.2242842864990235, + "step": 656500 + }, + { + "epoch": 87.54666666666667, + "grad_norm": 0.9207773804664612, + "learning_rate": 6.247266666666667e-06, + "loss": 1.2214242553710937, + "step": 656600 + }, + { + "epoch": 87.56, + "grad_norm": 0.9800169467926025, + "learning_rate": 6.240600000000001e-06, + "loss": 1.2252493286132813, + "step": 656700 + }, + { + "epoch": 87.57333333333334, + "grad_norm": 0.9389280080795288, + "learning_rate": 6.233933333333333e-06, + "loss": 1.220586700439453, + "step": 656800 + }, + { + "epoch": 87.58666666666667, + "grad_norm": 0.9566884636878967, + "learning_rate": 6.227266666666666e-06, + "loss": 1.2238873291015624, + "step": 656900 + }, + { + "epoch": 87.6, + "grad_norm": 0.9968175292015076, + "learning_rate": 6.2206e-06, + "loss": 1.2255178833007812, + "step": 657000 + }, + { + "epoch": 87.61333333333333, + "grad_norm": 0.9001134037971497, + "learning_rate": 6.213933333333333e-06, + "loss": 1.2253036499023438, + "step": 657100 + }, + { + "epoch": 87.62666666666667, + "grad_norm": 0.920998215675354, + "learning_rate": 6.2072666666666664e-06, + "loss": 1.2283302307128907, + "step": 657200 + }, + { + "epoch": 87.64, + "grad_norm": 0.9255244731903076, + "learning_rate": 6.2006e-06, + "loss": 1.2279671478271483, + "step": 657300 + }, + { + "epoch": 87.65333333333334, + "grad_norm": 0.8817408680915833, + "learning_rate": 6.1939333333333335e-06, + "loss": 1.222409210205078, + "step": 657400 + }, + { + "epoch": 87.66666666666667, + "grad_norm": 0.9020600914955139, + "learning_rate": 6.187333333333334e-06, + "loss": 1.2292388153076172, + "step": 657500 + }, + { + "epoch": 87.68, + "grad_norm": 0.880594789981842, + "learning_rate": 6.180666666666667e-06, + "loss": 1.2260498046875, + "step": 657600 + }, + { + "epoch": 87.69333333333333, + "grad_norm": 0.9309771656990051, + "learning_rate": 6.1740000000000005e-06, + "loss": 1.2300214385986328, + "step": 657700 + }, + { + "epoch": 87.70666666666666, + "grad_norm": 0.8785908222198486, + "learning_rate": 6.167333333333334e-06, + "loss": 1.2290544891357422, + "step": 657800 + }, + { + "epoch": 87.72, + "grad_norm": 0.8739680647850037, + "learning_rate": 6.160666666666667e-06, + "loss": 1.2261587524414062, + "step": 657900 + }, + { + "epoch": 87.73333333333333, + "grad_norm": 0.8887823224067688, + "learning_rate": 6.154e-06, + "loss": 1.2235511779785155, + "step": 658000 + }, + { + "epoch": 87.74666666666667, + "grad_norm": 0.9344404339790344, + "learning_rate": 6.147333333333334e-06, + "loss": 1.2311840057373047, + "step": 658100 + }, + { + "epoch": 87.76, + "grad_norm": 0.9279657006263733, + "learning_rate": 6.140666666666667e-06, + "loss": 1.2299423217773438, + "step": 658200 + }, + { + "epoch": 87.77333333333333, + "grad_norm": 0.9525284767150879, + "learning_rate": 6.134e-06, + "loss": 1.2301526641845704, + "step": 658300 + }, + { + "epoch": 87.78666666666666, + "grad_norm": 0.8445433378219604, + "learning_rate": 6.127333333333333e-06, + "loss": 1.226542739868164, + "step": 658400 + }, + { + "epoch": 87.8, + "grad_norm": 0.9366630911827087, + "learning_rate": 6.120666666666667e-06, + "loss": 1.2329245758056642, + "step": 658500 + }, + { + "epoch": 87.81333333333333, + "grad_norm": 0.9238616228103638, + "learning_rate": 6.114e-06, + "loss": 1.2254788970947266, + "step": 658600 + }, + { + "epoch": 87.82666666666667, + "grad_norm": 0.8797993063926697, + "learning_rate": 6.107333333333333e-06, + "loss": 1.2281143951416016, + "step": 658700 + }, + { + "epoch": 87.84, + "grad_norm": 0.8559375405311584, + "learning_rate": 6.100666666666667e-06, + "loss": 1.224699478149414, + "step": 658800 + }, + { + "epoch": 87.85333333333334, + "grad_norm": 0.9214592576026917, + "learning_rate": 6.0940000000000004e-06, + "loss": 1.2267461395263672, + "step": 658900 + }, + { + "epoch": 87.86666666666666, + "grad_norm": 0.9385553002357483, + "learning_rate": 6.0873333333333336e-06, + "loss": 1.2321873474121094, + "step": 659000 + }, + { + "epoch": 87.88, + "grad_norm": 0.9742735028266907, + "learning_rate": 6.0806666666666675e-06, + "loss": 1.224165802001953, + "step": 659100 + }, + { + "epoch": 87.89333333333333, + "grad_norm": 0.8828876614570618, + "learning_rate": 6.074000000000001e-06, + "loss": 1.2293293762207032, + "step": 659200 + }, + { + "epoch": 87.90666666666667, + "grad_norm": 0.8725327253341675, + "learning_rate": 6.067333333333334e-06, + "loss": 1.2297024536132812, + "step": 659300 + }, + { + "epoch": 87.92, + "grad_norm": 0.8858145475387573, + "learning_rate": 6.060666666666667e-06, + "loss": 1.231685256958008, + "step": 659400 + }, + { + "epoch": 87.93333333333334, + "grad_norm": 0.8619421124458313, + "learning_rate": 6.054066666666667e-06, + "loss": 1.227284164428711, + "step": 659500 + }, + { + "epoch": 87.94666666666667, + "grad_norm": 0.8720583915710449, + "learning_rate": 6.0474e-06, + "loss": 1.2259799194335939, + "step": 659600 + }, + { + "epoch": 87.96, + "grad_norm": 0.9668527841567993, + "learning_rate": 6.040733333333334e-06, + "loss": 1.2270006561279296, + "step": 659700 + }, + { + "epoch": 87.97333333333333, + "grad_norm": 0.8741607069969177, + "learning_rate": 6.034066666666667e-06, + "loss": 1.2342427825927735, + "step": 659800 + }, + { + "epoch": 87.98666666666666, + "grad_norm": 0.9043229818344116, + "learning_rate": 6.0274e-06, + "loss": 1.2302300262451171, + "step": 659900 + }, + { + "epoch": 88.0, + "grad_norm": 0.8614948391914368, + "learning_rate": 6.020733333333334e-06, + "loss": 1.2277375030517579, + "step": 660000 + }, + { + "epoch": 88.01333333333334, + "grad_norm": 0.8440125584602356, + "learning_rate": 6.014066666666667e-06, + "loss": 1.2098700714111328, + "step": 660100 + }, + { + "epoch": 88.02666666666667, + "grad_norm": 0.8795732855796814, + "learning_rate": 6.0074e-06, + "loss": 1.2145481872558594, + "step": 660200 + }, + { + "epoch": 88.04, + "grad_norm": 0.9388731718063354, + "learning_rate": 6.000733333333334e-06, + "loss": 1.2113359832763673, + "step": 660300 + }, + { + "epoch": 88.05333333333333, + "grad_norm": 0.9349479079246521, + "learning_rate": 5.994066666666667e-06, + "loss": 1.2147767639160156, + "step": 660400 + }, + { + "epoch": 88.06666666666666, + "grad_norm": 0.8859605193138123, + "learning_rate": 5.9874e-06, + "loss": 1.2128377532958985, + "step": 660500 + }, + { + "epoch": 88.08, + "grad_norm": 0.9146501421928406, + "learning_rate": 5.980733333333334e-06, + "loss": 1.2150657653808594, + "step": 660600 + }, + { + "epoch": 88.09333333333333, + "grad_norm": 0.8667988777160645, + "learning_rate": 5.974066666666667e-06, + "loss": 1.2110105133056641, + "step": 660700 + }, + { + "epoch": 88.10666666666667, + "grad_norm": 0.9527876973152161, + "learning_rate": 5.9674e-06, + "loss": 1.2121669006347657, + "step": 660800 + }, + { + "epoch": 88.12, + "grad_norm": 0.9000213146209717, + "learning_rate": 5.960733333333334e-06, + "loss": 1.2135875701904297, + "step": 660900 + }, + { + "epoch": 88.13333333333334, + "grad_norm": 0.9539820551872253, + "learning_rate": 5.954066666666667e-06, + "loss": 1.2122388458251954, + "step": 661000 + }, + { + "epoch": 88.14666666666666, + "grad_norm": 0.8554858565330505, + "learning_rate": 5.9474e-06, + "loss": 1.2159857177734374, + "step": 661100 + }, + { + "epoch": 88.16, + "grad_norm": 0.8576105833053589, + "learning_rate": 5.940733333333334e-06, + "loss": 1.214066848754883, + "step": 661200 + }, + { + "epoch": 88.17333333333333, + "grad_norm": 0.938084065914154, + "learning_rate": 5.934066666666667e-06, + "loss": 1.2105953216552734, + "step": 661300 + }, + { + "epoch": 88.18666666666667, + "grad_norm": 0.9702228307723999, + "learning_rate": 5.9274e-06, + "loss": 1.218522186279297, + "step": 661400 + }, + { + "epoch": 88.2, + "grad_norm": 0.9396708607673645, + "learning_rate": 5.9208e-06, + "loss": 1.2127921295166015, + "step": 661500 + }, + { + "epoch": 88.21333333333334, + "grad_norm": 0.8523475527763367, + "learning_rate": 5.914133333333333e-06, + "loss": 1.2177894592285157, + "step": 661600 + }, + { + "epoch": 88.22666666666667, + "grad_norm": 0.9162245392799377, + "learning_rate": 5.907466666666666e-06, + "loss": 1.2171736145019532, + "step": 661700 + }, + { + "epoch": 88.24, + "grad_norm": 0.909294843673706, + "learning_rate": 5.9008e-06, + "loss": 1.2113314819335939, + "step": 661800 + }, + { + "epoch": 88.25333333333333, + "grad_norm": 0.822942316532135, + "learning_rate": 5.8941333333333334e-06, + "loss": 1.2202149200439454, + "step": 661900 + }, + { + "epoch": 88.26666666666667, + "grad_norm": 0.9095253944396973, + "learning_rate": 5.8874666666666666e-06, + "loss": 1.2153319549560546, + "step": 662000 + }, + { + "epoch": 88.28, + "grad_norm": 0.9375243782997131, + "learning_rate": 5.8808000000000005e-06, + "loss": 1.2144713592529297, + "step": 662100 + }, + { + "epoch": 88.29333333333334, + "grad_norm": 0.8997815847396851, + "learning_rate": 5.874133333333334e-06, + "loss": 1.2190712738037108, + "step": 662200 + }, + { + "epoch": 88.30666666666667, + "grad_norm": 0.831521213054657, + "learning_rate": 5.867466666666667e-06, + "loss": 1.217860107421875, + "step": 662300 + }, + { + "epoch": 88.32, + "grad_norm": 0.9350924491882324, + "learning_rate": 5.860800000000001e-06, + "loss": 1.2177651977539063, + "step": 662400 + }, + { + "epoch": 88.33333333333333, + "grad_norm": 0.9330512285232544, + "learning_rate": 5.854133333333334e-06, + "loss": 1.2167528533935548, + "step": 662500 + }, + { + "epoch": 88.34666666666666, + "grad_norm": 0.8898918032646179, + "learning_rate": 5.847466666666667e-06, + "loss": 1.2190279388427734, + "step": 662600 + }, + { + "epoch": 88.36, + "grad_norm": 0.9025176167488098, + "learning_rate": 5.8408e-06, + "loss": 1.2180398559570313, + "step": 662700 + }, + { + "epoch": 88.37333333333333, + "grad_norm": 0.9351064562797546, + "learning_rate": 5.834133333333334e-06, + "loss": 1.2161642456054687, + "step": 662800 + }, + { + "epoch": 88.38666666666667, + "grad_norm": 0.8625040054321289, + "learning_rate": 5.827466666666667e-06, + "loss": 1.2185457611083985, + "step": 662900 + }, + { + "epoch": 88.4, + "grad_norm": 0.8925670981407166, + "learning_rate": 5.8208e-06, + "loss": 1.219074478149414, + "step": 663000 + }, + { + "epoch": 88.41333333333333, + "grad_norm": 0.8783120512962341, + "learning_rate": 5.814133333333334e-06, + "loss": 1.2135558319091797, + "step": 663100 + }, + { + "epoch": 88.42666666666666, + "grad_norm": 0.9169807434082031, + "learning_rate": 5.8074666666666665e-06, + "loss": 1.2201927185058594, + "step": 663200 + }, + { + "epoch": 88.44, + "grad_norm": 0.9173704385757446, + "learning_rate": 5.8008e-06, + "loss": 1.2177742767333983, + "step": 663300 + }, + { + "epoch": 88.45333333333333, + "grad_norm": 0.9613504409790039, + "learning_rate": 5.7941333333333335e-06, + "loss": 1.2174214935302734, + "step": 663400 + }, + { + "epoch": 88.46666666666667, + "grad_norm": 0.9053784012794495, + "learning_rate": 5.7875333333333335e-06, + "loss": 1.2211524963378906, + "step": 663500 + }, + { + "epoch": 88.48, + "grad_norm": 0.8977215886116028, + "learning_rate": 5.7808666666666674e-06, + "loss": 1.2180975341796876, + "step": 663600 + }, + { + "epoch": 88.49333333333334, + "grad_norm": 0.9076542258262634, + "learning_rate": 5.7742000000000006e-06, + "loss": 1.2158096313476563, + "step": 663700 + }, + { + "epoch": 88.50666666666666, + "grad_norm": 0.9158226251602173, + "learning_rate": 5.767533333333334e-06, + "loss": 1.218250961303711, + "step": 663800 + }, + { + "epoch": 88.52, + "grad_norm": 0.9524657726287842, + "learning_rate": 5.760866666666667e-06, + "loss": 1.2187013244628906, + "step": 663900 + }, + { + "epoch": 88.53333333333333, + "grad_norm": 0.931620717048645, + "learning_rate": 5.754200000000001e-06, + "loss": 1.2208222198486327, + "step": 664000 + }, + { + "epoch": 88.54666666666667, + "grad_norm": 0.9844622015953064, + "learning_rate": 5.747533333333334e-06, + "loss": 1.2225242614746095, + "step": 664100 + }, + { + "epoch": 88.56, + "grad_norm": 0.9277436137199402, + "learning_rate": 5.740866666666667e-06, + "loss": 1.2201163482666015, + "step": 664200 + }, + { + "epoch": 88.57333333333334, + "grad_norm": 0.8789235353469849, + "learning_rate": 5.7342e-06, + "loss": 1.2224101257324218, + "step": 664300 + }, + { + "epoch": 88.58666666666667, + "grad_norm": 0.9313110709190369, + "learning_rate": 5.727533333333333e-06, + "loss": 1.2181917572021483, + "step": 664400 + }, + { + "epoch": 88.6, + "grad_norm": 0.9556103348731995, + "learning_rate": 5.720866666666666e-06, + "loss": 1.2208975219726563, + "step": 664500 + }, + { + "epoch": 88.61333333333333, + "grad_norm": 0.9766332507133484, + "learning_rate": 5.7142e-06, + "loss": 1.2226788330078124, + "step": 664600 + }, + { + "epoch": 88.62666666666667, + "grad_norm": 0.8844559192657471, + "learning_rate": 5.707533333333333e-06, + "loss": 1.2230628204345704, + "step": 664700 + }, + { + "epoch": 88.64, + "grad_norm": 0.8664445281028748, + "learning_rate": 5.7008666666666665e-06, + "loss": 1.2178475189208984, + "step": 664800 + }, + { + "epoch": 88.65333333333334, + "grad_norm": 0.9188632369041443, + "learning_rate": 5.6942000000000005e-06, + "loss": 1.2229035186767578, + "step": 664900 + }, + { + "epoch": 88.66666666666667, + "grad_norm": 0.9534464478492737, + "learning_rate": 5.687533333333334e-06, + "loss": 1.2201636505126954, + "step": 665000 + }, + { + "epoch": 88.68, + "grad_norm": 0.8590039610862732, + "learning_rate": 5.680866666666667e-06, + "loss": 1.2217842102050782, + "step": 665100 + }, + { + "epoch": 88.69333333333333, + "grad_norm": 0.9341287016868591, + "learning_rate": 5.674200000000001e-06, + "loss": 1.2232160949707032, + "step": 665200 + }, + { + "epoch": 88.70666666666666, + "grad_norm": 0.851928174495697, + "learning_rate": 5.667533333333334e-06, + "loss": 1.2228545379638671, + "step": 665300 + }, + { + "epoch": 88.72, + "grad_norm": 0.8709028959274292, + "learning_rate": 5.660866666666667e-06, + "loss": 1.224917449951172, + "step": 665400 + }, + { + "epoch": 88.73333333333333, + "grad_norm": 0.9012889266014099, + "learning_rate": 5.654266666666667e-06, + "loss": 1.2241983795166016, + "step": 665500 + }, + { + "epoch": 88.74666666666667, + "grad_norm": 0.9009696245193481, + "learning_rate": 5.6476e-06, + "loss": 1.2221090698242187, + "step": 665600 + }, + { + "epoch": 88.76, + "grad_norm": 0.911006510257721, + "learning_rate": 5.640933333333334e-06, + "loss": 1.2238897705078124, + "step": 665700 + }, + { + "epoch": 88.77333333333333, + "grad_norm": 0.9231188297271729, + "learning_rate": 5.634266666666667e-06, + "loss": 1.2244586944580078, + "step": 665800 + }, + { + "epoch": 88.78666666666666, + "grad_norm": 0.8802729249000549, + "learning_rate": 5.6276e-06, + "loss": 1.2238041687011718, + "step": 665900 + }, + { + "epoch": 88.8, + "grad_norm": 0.9299485683441162, + "learning_rate": 5.620933333333333e-06, + "loss": 1.2228865814208985, + "step": 666000 + }, + { + "epoch": 88.81333333333333, + "grad_norm": 0.8775696754455566, + "learning_rate": 5.614266666666667e-06, + "loss": 1.2266053771972656, + "step": 666100 + }, + { + "epoch": 88.82666666666667, + "grad_norm": 0.8580496311187744, + "learning_rate": 5.6076e-06, + "loss": 1.2229470062255858, + "step": 666200 + }, + { + "epoch": 88.84, + "grad_norm": 0.9241933822631836, + "learning_rate": 5.6009333333333334e-06, + "loss": 1.2229337310791015, + "step": 666300 + }, + { + "epoch": 88.85333333333334, + "grad_norm": 0.9201433658599854, + "learning_rate": 5.594266666666667e-06, + "loss": 1.2231851959228515, + "step": 666400 + }, + { + "epoch": 88.86666666666666, + "grad_norm": 0.9110192060470581, + "learning_rate": 5.5876000000000005e-06, + "loss": 1.225495376586914, + "step": 666500 + }, + { + "epoch": 88.88, + "grad_norm": 0.9712668061256409, + "learning_rate": 5.580933333333334e-06, + "loss": 1.2213951873779296, + "step": 666600 + }, + { + "epoch": 88.89333333333333, + "grad_norm": 0.8844518065452576, + "learning_rate": 5.574266666666668e-06, + "loss": 1.2240930938720702, + "step": 666700 + }, + { + "epoch": 88.90666666666667, + "grad_norm": 0.9546579122543335, + "learning_rate": 5.567600000000001e-06, + "loss": 1.226476287841797, + "step": 666800 + }, + { + "epoch": 88.92, + "grad_norm": 0.8933039903640747, + "learning_rate": 5.560933333333333e-06, + "loss": 1.2249333953857422, + "step": 666900 + }, + { + "epoch": 88.93333333333334, + "grad_norm": 0.9278029799461365, + "learning_rate": 5.554266666666667e-06, + "loss": 1.224727325439453, + "step": 667000 + }, + { + "epoch": 88.94666666666667, + "grad_norm": 0.9233989119529724, + "learning_rate": 5.5476e-06, + "loss": 1.2280259704589844, + "step": 667100 + }, + { + "epoch": 88.96, + "grad_norm": 0.8747185468673706, + "learning_rate": 5.540933333333333e-06, + "loss": 1.2299307250976563, + "step": 667200 + }, + { + "epoch": 88.97333333333333, + "grad_norm": 0.9252629280090332, + "learning_rate": 5.534266666666667e-06, + "loss": 1.2250003051757812, + "step": 667300 + }, + { + "epoch": 88.98666666666666, + "grad_norm": 0.8873195052146912, + "learning_rate": 5.5276e-06, + "loss": 1.2243363189697265, + "step": 667400 + }, + { + "epoch": 89.0, + "grad_norm": 0.8737539052963257, + "learning_rate": 5.521e-06, + "loss": 1.2273259735107422, + "step": 667500 + }, + { + "epoch": 89.01333333333334, + "grad_norm": 0.8994724154472351, + "learning_rate": 5.514333333333334e-06, + "loss": 1.2065253448486328, + "step": 667600 + }, + { + "epoch": 89.02666666666667, + "grad_norm": 0.8773201107978821, + "learning_rate": 5.507666666666667e-06, + "loss": 1.2066268157958984, + "step": 667700 + }, + { + "epoch": 89.04, + "grad_norm": 0.9253839254379272, + "learning_rate": 5.501e-06, + "loss": 1.2097785949707032, + "step": 667800 + }, + { + "epoch": 89.05333333333333, + "grad_norm": 0.9354826211929321, + "learning_rate": 5.4943333333333335e-06, + "loss": 1.2124601745605468, + "step": 667900 + }, + { + "epoch": 89.06666666666666, + "grad_norm": 0.8192519545555115, + "learning_rate": 5.487666666666667e-06, + "loss": 1.2061328887939453, + "step": 668000 + }, + { + "epoch": 89.08, + "grad_norm": 0.8822228312492371, + "learning_rate": 5.481e-06, + "loss": 1.2111685180664062, + "step": 668100 + }, + { + "epoch": 89.09333333333333, + "grad_norm": 0.914986252784729, + "learning_rate": 5.474333333333334e-06, + "loss": 1.211805648803711, + "step": 668200 + }, + { + "epoch": 89.10666666666667, + "grad_norm": 0.9351910948753357, + "learning_rate": 5.467666666666667e-06, + "loss": 1.2042337036132813, + "step": 668300 + }, + { + "epoch": 89.12, + "grad_norm": 0.9000957012176514, + "learning_rate": 5.461e-06, + "loss": 1.2112418365478517, + "step": 668400 + }, + { + "epoch": 89.13333333333334, + "grad_norm": 0.9186215996742249, + "learning_rate": 5.454333333333334e-06, + "loss": 1.2067839050292968, + "step": 668500 + }, + { + "epoch": 89.14666666666666, + "grad_norm": 0.8771560788154602, + "learning_rate": 5.447666666666667e-06, + "loss": 1.2109234619140625, + "step": 668600 + }, + { + "epoch": 89.16, + "grad_norm": 0.9361634254455566, + "learning_rate": 5.441e-06, + "loss": 1.2112667846679688, + "step": 668700 + }, + { + "epoch": 89.17333333333333, + "grad_norm": 0.9080511331558228, + "learning_rate": 5.434333333333334e-06, + "loss": 1.2091513824462892, + "step": 668800 + }, + { + "epoch": 89.18666666666667, + "grad_norm": 0.9087415933609009, + "learning_rate": 5.427666666666667e-06, + "loss": 1.209826431274414, + "step": 668900 + }, + { + "epoch": 89.2, + "grad_norm": 0.8701626658439636, + "learning_rate": 5.421e-06, + "loss": 1.213840560913086, + "step": 669000 + }, + { + "epoch": 89.21333333333334, + "grad_norm": 0.8287436962127686, + "learning_rate": 5.414333333333333e-06, + "loss": 1.2152737426757811, + "step": 669100 + }, + { + "epoch": 89.22666666666667, + "grad_norm": 0.9009669423103333, + "learning_rate": 5.407666666666667e-06, + "loss": 1.2100643157958983, + "step": 669200 + }, + { + "epoch": 89.24, + "grad_norm": 0.9228776693344116, + "learning_rate": 5.4010000000000005e-06, + "loss": 1.2168802642822265, + "step": 669300 + }, + { + "epoch": 89.25333333333333, + "grad_norm": 0.8409181237220764, + "learning_rate": 5.394333333333334e-06, + "loss": 1.212371597290039, + "step": 669400 + }, + { + "epoch": 89.26666666666667, + "grad_norm": 0.8922165632247925, + "learning_rate": 5.3877333333333335e-06, + "loss": 1.2138323974609375, + "step": 669500 + }, + { + "epoch": 89.28, + "grad_norm": 0.9000787138938904, + "learning_rate": 5.381066666666667e-06, + "loss": 1.211551742553711, + "step": 669600 + }, + { + "epoch": 89.29333333333334, + "grad_norm": 0.8795856237411499, + "learning_rate": 5.374400000000001e-06, + "loss": 1.209929428100586, + "step": 669700 + }, + { + "epoch": 89.30666666666667, + "grad_norm": 0.8757795691490173, + "learning_rate": 5.367733333333334e-06, + "loss": 1.2100962829589843, + "step": 669800 + }, + { + "epoch": 89.32, + "grad_norm": 0.9000317454338074, + "learning_rate": 5.361066666666667e-06, + "loss": 1.2151318359375, + "step": 669900 + }, + { + "epoch": 89.33333333333333, + "grad_norm": 0.9361692667007446, + "learning_rate": 5.354400000000001e-06, + "loss": 1.212879638671875, + "step": 670000 + }, + { + "epoch": 89.34666666666666, + "grad_norm": 0.8566330671310425, + "learning_rate": 5.347733333333334e-06, + "loss": 1.2143052673339845, + "step": 670100 + }, + { + "epoch": 89.36, + "grad_norm": 0.9182000160217285, + "learning_rate": 5.341066666666667e-06, + "loss": 1.2156490325927733, + "step": 670200 + }, + { + "epoch": 89.37333333333333, + "grad_norm": 0.8849942684173584, + "learning_rate": 5.3344e-06, + "loss": 1.2155682373046874, + "step": 670300 + }, + { + "epoch": 89.38666666666667, + "grad_norm": 0.948589563369751, + "learning_rate": 5.327733333333334e-06, + "loss": 1.2158618927001954, + "step": 670400 + }, + { + "epoch": 89.4, + "grad_norm": 0.870638906955719, + "learning_rate": 5.321066666666667e-06, + "loss": 1.2140827178955078, + "step": 670500 + }, + { + "epoch": 89.41333333333333, + "grad_norm": 0.9196882247924805, + "learning_rate": 5.3144e-06, + "loss": 1.2150801086425782, + "step": 670600 + }, + { + "epoch": 89.42666666666666, + "grad_norm": 0.9664023518562317, + "learning_rate": 5.3077333333333334e-06, + "loss": 1.216825942993164, + "step": 670700 + }, + { + "epoch": 89.44, + "grad_norm": 0.9256287813186646, + "learning_rate": 5.3010666666666665e-06, + "loss": 1.212283935546875, + "step": 670800 + }, + { + "epoch": 89.45333333333333, + "grad_norm": 0.8842042684555054, + "learning_rate": 5.2944e-06, + "loss": 1.2171527862548828, + "step": 670900 + }, + { + "epoch": 89.46666666666667, + "grad_norm": 0.8998342752456665, + "learning_rate": 5.287733333333334e-06, + "loss": 1.212213363647461, + "step": 671000 + }, + { + "epoch": 89.48, + "grad_norm": 0.8604910969734192, + "learning_rate": 5.281066666666667e-06, + "loss": 1.2178185272216797, + "step": 671100 + }, + { + "epoch": 89.49333333333334, + "grad_norm": 0.9574484825134277, + "learning_rate": 5.2744e-06, + "loss": 1.2192330169677734, + "step": 671200 + }, + { + "epoch": 89.50666666666666, + "grad_norm": 0.9058186411857605, + "learning_rate": 5.267733333333334e-06, + "loss": 1.2213152313232423, + "step": 671300 + }, + { + "epoch": 89.52, + "grad_norm": 0.8801227807998657, + "learning_rate": 5.261066666666667e-06, + "loss": 1.2144708251953125, + "step": 671400 + }, + { + "epoch": 89.53333333333333, + "grad_norm": 0.9073898196220398, + "learning_rate": 5.2544e-06, + "loss": 1.2126658630371094, + "step": 671500 + }, + { + "epoch": 89.54666666666667, + "grad_norm": 0.8924538493156433, + "learning_rate": 5.2478e-06, + "loss": 1.2133853149414062, + "step": 671600 + }, + { + "epoch": 89.56, + "grad_norm": 0.8589732646942139, + "learning_rate": 5.241133333333333e-06, + "loss": 1.216434783935547, + "step": 671700 + }, + { + "epoch": 89.57333333333334, + "grad_norm": 0.8957362174987793, + "learning_rate": 5.234466666666667e-06, + "loss": 1.2140837860107423, + "step": 671800 + }, + { + "epoch": 89.58666666666667, + "grad_norm": 0.9001540541648865, + "learning_rate": 5.2278e-06, + "loss": 1.2144945526123048, + "step": 671900 + }, + { + "epoch": 89.6, + "grad_norm": 0.9157114028930664, + "learning_rate": 5.221133333333333e-06, + "loss": 1.217526397705078, + "step": 672000 + }, + { + "epoch": 89.61333333333333, + "grad_norm": 0.9104243516921997, + "learning_rate": 5.214466666666666e-06, + "loss": 1.2151515197753906, + "step": 672100 + }, + { + "epoch": 89.62666666666667, + "grad_norm": 0.9351614117622375, + "learning_rate": 5.2078e-06, + "loss": 1.2169363403320312, + "step": 672200 + }, + { + "epoch": 89.64, + "grad_norm": 0.8728863596916199, + "learning_rate": 5.2011333333333335e-06, + "loss": 1.2184024810791017, + "step": 672300 + }, + { + "epoch": 89.65333333333334, + "grad_norm": 0.8635854125022888, + "learning_rate": 5.194466666666667e-06, + "loss": 1.221156997680664, + "step": 672400 + }, + { + "epoch": 89.66666666666667, + "grad_norm": 0.964632511138916, + "learning_rate": 5.1878000000000005e-06, + "loss": 1.2214126586914062, + "step": 672500 + }, + { + "epoch": 89.68, + "grad_norm": 0.934449315071106, + "learning_rate": 5.181133333333334e-06, + "loss": 1.2185586547851563, + "step": 672600 + }, + { + "epoch": 89.69333333333333, + "grad_norm": 0.8776857256889343, + "learning_rate": 5.174466666666667e-06, + "loss": 1.223541488647461, + "step": 672700 + }, + { + "epoch": 89.70666666666666, + "grad_norm": 0.9184494018554688, + "learning_rate": 5.167800000000001e-06, + "loss": 1.2196424865722657, + "step": 672800 + }, + { + "epoch": 89.72, + "grad_norm": 0.9252554178237915, + "learning_rate": 5.161133333333334e-06, + "loss": 1.216479263305664, + "step": 672900 + }, + { + "epoch": 89.73333333333333, + "grad_norm": 0.8667902946472168, + "learning_rate": 5.154466666666667e-06, + "loss": 1.2210060882568359, + "step": 673000 + }, + { + "epoch": 89.74666666666667, + "grad_norm": 0.8820723295211792, + "learning_rate": 5.147800000000001e-06, + "loss": 1.218407211303711, + "step": 673100 + }, + { + "epoch": 89.76, + "grad_norm": 0.8611978888511658, + "learning_rate": 5.141133333333334e-06, + "loss": 1.2198648071289062, + "step": 673200 + }, + { + "epoch": 89.77333333333333, + "grad_norm": 0.8947012424468994, + "learning_rate": 5.134466666666666e-06, + "loss": 1.223352584838867, + "step": 673300 + }, + { + "epoch": 89.78666666666666, + "grad_norm": 0.8866718411445618, + "learning_rate": 5.1278e-06, + "loss": 1.2186518096923828, + "step": 673400 + }, + { + "epoch": 89.8, + "grad_norm": 0.8624308705329895, + "learning_rate": 5.121133333333333e-06, + "loss": 1.2187384033203126, + "step": 673500 + }, + { + "epoch": 89.81333333333333, + "grad_norm": 0.9323912858963013, + "learning_rate": 5.114533333333333e-06, + "loss": 1.2192816925048828, + "step": 673600 + }, + { + "epoch": 89.82666666666667, + "grad_norm": 0.8835723996162415, + "learning_rate": 5.107866666666667e-06, + "loss": 1.2200238037109374, + "step": 673700 + }, + { + "epoch": 89.84, + "grad_norm": 0.9300037026405334, + "learning_rate": 5.1012e-06, + "loss": 1.2211270141601562, + "step": 673800 + }, + { + "epoch": 89.85333333333334, + "grad_norm": 0.8939962983131409, + "learning_rate": 5.0945333333333335e-06, + "loss": 1.2231653594970704, + "step": 673900 + }, + { + "epoch": 89.86666666666666, + "grad_norm": 0.8576112985610962, + "learning_rate": 5.0878666666666675e-06, + "loss": 1.2236614990234376, + "step": 674000 + }, + { + "epoch": 89.88, + "grad_norm": 0.9398141503334045, + "learning_rate": 5.081200000000001e-06, + "loss": 1.2185122680664062, + "step": 674100 + }, + { + "epoch": 89.89333333333333, + "grad_norm": 0.8942651152610779, + "learning_rate": 5.074533333333334e-06, + "loss": 1.2213440704345704, + "step": 674200 + }, + { + "epoch": 89.90666666666667, + "grad_norm": 0.9299342036247253, + "learning_rate": 5.067866666666667e-06, + "loss": 1.217512741088867, + "step": 674300 + }, + { + "epoch": 89.92, + "grad_norm": 0.9243706464767456, + "learning_rate": 5.0612e-06, + "loss": 1.2212284851074218, + "step": 674400 + }, + { + "epoch": 89.93333333333334, + "grad_norm": 0.9882511496543884, + "learning_rate": 5.054533333333333e-06, + "loss": 1.2185203552246093, + "step": 674500 + }, + { + "epoch": 89.94666666666667, + "grad_norm": 0.8811713457107544, + "learning_rate": 5.047866666666667e-06, + "loss": 1.2216316223144532, + "step": 674600 + }, + { + "epoch": 89.96, + "grad_norm": 0.8866249322891235, + "learning_rate": 5.0412e-06, + "loss": 1.2194962310791015, + "step": 674700 + }, + { + "epoch": 89.97333333333333, + "grad_norm": 0.8802648186683655, + "learning_rate": 5.034533333333333e-06, + "loss": 1.222801513671875, + "step": 674800 + }, + { + "epoch": 89.98666666666666, + "grad_norm": 0.9410952925682068, + "learning_rate": 5.027866666666667e-06, + "loss": 1.22396484375, + "step": 674900 + }, + { + "epoch": 90.0, + "grad_norm": 0.8734154105186462, + "learning_rate": 5.0212e-06, + "loss": 1.2178419494628907, + "step": 675000 + }, + { + "epoch": 90.01333333333334, + "grad_norm": 0.9289048910140991, + "learning_rate": 5.014533333333333e-06, + "loss": 1.2043888092041015, + "step": 675100 + }, + { + "epoch": 90.02666666666667, + "grad_norm": 0.918481707572937, + "learning_rate": 5.0078666666666665e-06, + "loss": 1.2099720001220704, + "step": 675200 + }, + { + "epoch": 90.04, + "grad_norm": 0.9005312919616699, + "learning_rate": 5.0012000000000005e-06, + "loss": 1.2031187438964843, + "step": 675300 + }, + { + "epoch": 90.05333333333333, + "grad_norm": 0.957449197769165, + "learning_rate": 4.994533333333334e-06, + "loss": 1.2071781158447266, + "step": 675400 + }, + { + "epoch": 90.06666666666666, + "grad_norm": 0.910042941570282, + "learning_rate": 4.987866666666667e-06, + "loss": 1.2066966247558595, + "step": 675500 + }, + { + "epoch": 90.08, + "grad_norm": 0.8937907218933105, + "learning_rate": 4.981266666666667e-06, + "loss": 1.2074835205078125, + "step": 675600 + }, + { + "epoch": 90.09333333333333, + "grad_norm": 0.8752577900886536, + "learning_rate": 4.9746e-06, + "loss": 1.208895492553711, + "step": 675700 + }, + { + "epoch": 90.10666666666667, + "grad_norm": 0.8520717620849609, + "learning_rate": 4.967933333333334e-06, + "loss": 1.2053620147705078, + "step": 675800 + }, + { + "epoch": 90.12, + "grad_norm": 0.8855275511741638, + "learning_rate": 4.961266666666667e-06, + "loss": 1.208665771484375, + "step": 675900 + }, + { + "epoch": 90.13333333333334, + "grad_norm": 0.9631090760231018, + "learning_rate": 4.9546e-06, + "loss": 1.2092572021484376, + "step": 676000 + }, + { + "epoch": 90.14666666666666, + "grad_norm": 0.8636735677719116, + "learning_rate": 4.947933333333334e-06, + "loss": 1.205884246826172, + "step": 676100 + }, + { + "epoch": 90.16, + "grad_norm": 0.9243836998939514, + "learning_rate": 4.941266666666667e-06, + "loss": 1.2106959533691406, + "step": 676200 + }, + { + "epoch": 90.17333333333333, + "grad_norm": 0.9383106231689453, + "learning_rate": 4.9346e-06, + "loss": 1.2110034942626953, + "step": 676300 + }, + { + "epoch": 90.18666666666667, + "grad_norm": 0.8857131600379944, + "learning_rate": 4.927933333333334e-06, + "loss": 1.2083201599121094, + "step": 676400 + }, + { + "epoch": 90.2, + "grad_norm": 0.9113370180130005, + "learning_rate": 4.921266666666667e-06, + "loss": 1.2091306304931642, + "step": 676500 + }, + { + "epoch": 90.21333333333334, + "grad_norm": 0.8388907313346863, + "learning_rate": 4.9146e-06, + "loss": 1.2119139862060546, + "step": 676600 + }, + { + "epoch": 90.22666666666667, + "grad_norm": 0.847788393497467, + "learning_rate": 4.9079333333333335e-06, + "loss": 1.210832061767578, + "step": 676700 + }, + { + "epoch": 90.24, + "grad_norm": 0.8751381039619446, + "learning_rate": 4.901266666666667e-06, + "loss": 1.20989013671875, + "step": 676800 + }, + { + "epoch": 90.25333333333333, + "grad_norm": 0.8831285238265991, + "learning_rate": 4.8946000000000005e-06, + "loss": 1.2075450134277343, + "step": 676900 + }, + { + "epoch": 90.26666666666667, + "grad_norm": 0.9753007888793945, + "learning_rate": 4.887933333333334e-06, + "loss": 1.2117955780029297, + "step": 677000 + }, + { + "epoch": 90.28, + "grad_norm": 0.952491819858551, + "learning_rate": 4.881266666666667e-06, + "loss": 1.212402572631836, + "step": 677100 + }, + { + "epoch": 90.29333333333334, + "grad_norm": 0.9106137156486511, + "learning_rate": 4.8746e-06, + "loss": 1.2052900695800781, + "step": 677200 + }, + { + "epoch": 90.30666666666667, + "grad_norm": 0.926100492477417, + "learning_rate": 4.867933333333333e-06, + "loss": 1.2105538177490234, + "step": 677300 + }, + { + "epoch": 90.32, + "grad_norm": 0.8455801010131836, + "learning_rate": 4.861266666666667e-06, + "loss": 1.2121770477294922, + "step": 677400 + }, + { + "epoch": 90.33333333333333, + "grad_norm": 0.9143370389938354, + "learning_rate": 4.8546e-06, + "loss": 1.2079702758789062, + "step": 677500 + }, + { + "epoch": 90.34666666666666, + "grad_norm": 0.8968600034713745, + "learning_rate": 4.848000000000001e-06, + "loss": 1.2125999450683593, + "step": 677600 + }, + { + "epoch": 90.36, + "grad_norm": 0.8847452402114868, + "learning_rate": 4.841333333333334e-06, + "loss": 1.2117592620849609, + "step": 677700 + }, + { + "epoch": 90.37333333333333, + "grad_norm": 0.9163066744804382, + "learning_rate": 4.834666666666667e-06, + "loss": 1.2076231384277343, + "step": 677800 + }, + { + "epoch": 90.38666666666667, + "grad_norm": 0.9202780723571777, + "learning_rate": 4.828e-06, + "loss": 1.210972213745117, + "step": 677900 + }, + { + "epoch": 90.4, + "grad_norm": 0.9594050049781799, + "learning_rate": 4.821333333333333e-06, + "loss": 1.2101927947998048, + "step": 678000 + }, + { + "epoch": 90.41333333333333, + "grad_norm": 0.8588058948516846, + "learning_rate": 4.814666666666666e-06, + "loss": 1.2125477600097656, + "step": 678100 + }, + { + "epoch": 90.42666666666666, + "grad_norm": 0.8945148587226868, + "learning_rate": 4.808e-06, + "loss": 1.2116073608398437, + "step": 678200 + }, + { + "epoch": 90.44, + "grad_norm": 0.9500113129615784, + "learning_rate": 4.8013333333333335e-06, + "loss": 1.2133517456054688, + "step": 678300 + }, + { + "epoch": 90.45333333333333, + "grad_norm": 0.8919427990913391, + "learning_rate": 4.794666666666667e-06, + "loss": 1.2090089416503906, + "step": 678400 + }, + { + "epoch": 90.46666666666667, + "grad_norm": 0.9410059452056885, + "learning_rate": 4.788e-06, + "loss": 1.210514144897461, + "step": 678500 + }, + { + "epoch": 90.48, + "grad_norm": 0.9124793410301208, + "learning_rate": 4.781333333333334e-06, + "loss": 1.2172020721435546, + "step": 678600 + }, + { + "epoch": 90.49333333333334, + "grad_norm": 0.9013743996620178, + "learning_rate": 4.774666666666667e-06, + "loss": 1.2081442260742188, + "step": 678700 + }, + { + "epoch": 90.50666666666666, + "grad_norm": 0.9235624670982361, + "learning_rate": 4.768e-06, + "loss": 1.2106606292724609, + "step": 678800 + }, + { + "epoch": 90.52, + "grad_norm": 0.9490922689437866, + "learning_rate": 4.761333333333334e-06, + "loss": 1.2129822540283204, + "step": 678900 + }, + { + "epoch": 90.53333333333333, + "grad_norm": 0.9190055727958679, + "learning_rate": 4.754666666666667e-06, + "loss": 1.2117118835449219, + "step": 679000 + }, + { + "epoch": 90.54666666666667, + "grad_norm": 0.9155454635620117, + "learning_rate": 4.748e-06, + "loss": 1.2153356170654297, + "step": 679100 + }, + { + "epoch": 90.56, + "grad_norm": 0.9508551955223083, + "learning_rate": 4.741333333333334e-06, + "loss": 1.214925765991211, + "step": 679200 + }, + { + "epoch": 90.57333333333334, + "grad_norm": 0.9003883600234985, + "learning_rate": 4.734666666666667e-06, + "loss": 1.2155438232421876, + "step": 679300 + }, + { + "epoch": 90.58666666666667, + "grad_norm": 0.8104000091552734, + "learning_rate": 4.728e-06, + "loss": 1.212996063232422, + "step": 679400 + }, + { + "epoch": 90.6, + "grad_norm": 0.8884322047233582, + "learning_rate": 4.721333333333334e-06, + "loss": 1.208837890625, + "step": 679500 + }, + { + "epoch": 90.61333333333333, + "grad_norm": 0.900663435459137, + "learning_rate": 4.714733333333333e-06, + "loss": 1.2164701843261718, + "step": 679600 + }, + { + "epoch": 90.62666666666667, + "grad_norm": 0.9068719148635864, + "learning_rate": 4.7080666666666665e-06, + "loss": 1.2146306610107422, + "step": 679700 + }, + { + "epoch": 90.64, + "grad_norm": 0.8906852006912231, + "learning_rate": 4.7014e-06, + "loss": 1.211735382080078, + "step": 679800 + }, + { + "epoch": 90.65333333333334, + "grad_norm": 0.8880618214607239, + "learning_rate": 4.6947333333333335e-06, + "loss": 1.2147854614257811, + "step": 679900 + }, + { + "epoch": 90.66666666666667, + "grad_norm": 0.9201205372810364, + "learning_rate": 4.688066666666667e-06, + "loss": 1.2103929901123047, + "step": 680000 + }, + { + "epoch": 90.68, + "grad_norm": 0.8812013864517212, + "learning_rate": 4.681400000000001e-06, + "loss": 1.2157184600830078, + "step": 680100 + }, + { + "epoch": 90.69333333333333, + "grad_norm": 0.8855476975440979, + "learning_rate": 4.674733333333334e-06, + "loss": 1.2132430267333985, + "step": 680200 + }, + { + "epoch": 90.70666666666666, + "grad_norm": 0.9242827892303467, + "learning_rate": 4.668066666666667e-06, + "loss": 1.2172369384765624, + "step": 680300 + }, + { + "epoch": 90.72, + "grad_norm": 0.9888787865638733, + "learning_rate": 4.661400000000001e-06, + "loss": 1.2181033325195312, + "step": 680400 + }, + { + "epoch": 90.73333333333333, + "grad_norm": 0.9318944811820984, + "learning_rate": 4.654733333333334e-06, + "loss": 1.2127987670898437, + "step": 680500 + }, + { + "epoch": 90.74666666666667, + "grad_norm": 0.9456973671913147, + "learning_rate": 4.648066666666667e-06, + "loss": 1.213536834716797, + "step": 680600 + }, + { + "epoch": 90.76, + "grad_norm": 0.951168954372406, + "learning_rate": 4.6414e-06, + "loss": 1.2176351928710938, + "step": 680700 + }, + { + "epoch": 90.77333333333333, + "grad_norm": 0.9500468969345093, + "learning_rate": 4.634733333333333e-06, + "loss": 1.2171255493164062, + "step": 680800 + }, + { + "epoch": 90.78666666666666, + "grad_norm": 0.9571161270141602, + "learning_rate": 4.628066666666666e-06, + "loss": 1.2125713348388671, + "step": 680900 + }, + { + "epoch": 90.8, + "grad_norm": 0.9615257978439331, + "learning_rate": 4.6214e-06, + "loss": 1.2181266021728516, + "step": 681000 + }, + { + "epoch": 90.81333333333333, + "grad_norm": 0.9538195133209229, + "learning_rate": 4.6147333333333335e-06, + "loss": 1.2164169311523438, + "step": 681100 + }, + { + "epoch": 90.82666666666667, + "grad_norm": 0.9797369241714478, + "learning_rate": 4.6080666666666666e-06, + "loss": 1.218907012939453, + "step": 681200 + }, + { + "epoch": 90.84, + "grad_norm": 0.9338709712028503, + "learning_rate": 4.6014000000000005e-06, + "loss": 1.2184577941894532, + "step": 681300 + }, + { + "epoch": 90.85333333333334, + "grad_norm": 0.9682694673538208, + "learning_rate": 4.594733333333334e-06, + "loss": 1.2135367584228516, + "step": 681400 + }, + { + "epoch": 90.86666666666666, + "grad_norm": 0.8703393936157227, + "learning_rate": 4.588066666666667e-06, + "loss": 1.2133425903320312, + "step": 681500 + }, + { + "epoch": 90.88, + "grad_norm": 0.9350166916847229, + "learning_rate": 4.581466666666667e-06, + "loss": 1.2187168884277344, + "step": 681600 + }, + { + "epoch": 90.89333333333333, + "grad_norm": 0.8443960547447205, + "learning_rate": 4.5748e-06, + "loss": 1.2129023742675782, + "step": 681700 + }, + { + "epoch": 90.90666666666667, + "grad_norm": 0.9225748181343079, + "learning_rate": 4.568133333333333e-06, + "loss": 1.21633056640625, + "step": 681800 + }, + { + "epoch": 90.92, + "grad_norm": 0.8942683339118958, + "learning_rate": 4.561466666666667e-06, + "loss": 1.2165023040771485, + "step": 681900 + }, + { + "epoch": 90.93333333333334, + "grad_norm": 0.9616734981536865, + "learning_rate": 4.5548e-06, + "loss": 1.2154533386230468, + "step": 682000 + }, + { + "epoch": 90.94666666666667, + "grad_norm": 0.881159782409668, + "learning_rate": 4.548133333333333e-06, + "loss": 1.2169892120361328, + "step": 682100 + }, + { + "epoch": 90.96, + "grad_norm": 0.9500011205673218, + "learning_rate": 4.541466666666667e-06, + "loss": 1.218693389892578, + "step": 682200 + }, + { + "epoch": 90.97333333333333, + "grad_norm": 0.9119076728820801, + "learning_rate": 4.5348e-06, + "loss": 1.216949462890625, + "step": 682300 + }, + { + "epoch": 90.98666666666666, + "grad_norm": 0.8956566452980042, + "learning_rate": 4.528133333333333e-06, + "loss": 1.2165196228027344, + "step": 682400 + }, + { + "epoch": 91.0, + "grad_norm": 0.8929473757743835, + "learning_rate": 4.521466666666667e-06, + "loss": 1.2148597717285157, + "step": 682500 + }, + { + "epoch": 91.01333333333334, + "grad_norm": 0.85610431432724, + "learning_rate": 4.5148e-06, + "loss": 1.200636215209961, + "step": 682600 + }, + { + "epoch": 91.02666666666667, + "grad_norm": 0.9160832166671753, + "learning_rate": 4.5081333333333335e-06, + "loss": 1.2068274688720704, + "step": 682700 + }, + { + "epoch": 91.04, + "grad_norm": 0.9119850993156433, + "learning_rate": 4.501466666666667e-06, + "loss": 1.208277587890625, + "step": 682800 + }, + { + "epoch": 91.05333333333333, + "grad_norm": 0.9079209566116333, + "learning_rate": 4.4948000000000006e-06, + "loss": 1.2017269897460938, + "step": 682900 + }, + { + "epoch": 91.06666666666666, + "grad_norm": 0.9564381241798401, + "learning_rate": 4.488133333333334e-06, + "loss": 1.207140655517578, + "step": 683000 + }, + { + "epoch": 91.08, + "grad_norm": 0.9598597288131714, + "learning_rate": 4.481466666666667e-06, + "loss": 1.203281784057617, + "step": 683100 + }, + { + "epoch": 91.09333333333333, + "grad_norm": 0.861584484577179, + "learning_rate": 4.474800000000001e-06, + "loss": 1.2081224060058593, + "step": 683200 + }, + { + "epoch": 91.10666666666667, + "grad_norm": 0.8429510593414307, + "learning_rate": 4.468133333333334e-06, + "loss": 1.2070238494873047, + "step": 683300 + }, + { + "epoch": 91.12, + "grad_norm": 0.8890085220336914, + "learning_rate": 4.461466666666667e-06, + "loss": 1.2043938446044922, + "step": 683400 + }, + { + "epoch": 91.13333333333334, + "grad_norm": 0.8663833737373352, + "learning_rate": 4.4548e-06, + "loss": 1.20203125, + "step": 683500 + }, + { + "epoch": 91.14666666666666, + "grad_norm": 0.9313666224479675, + "learning_rate": 4.448133333333333e-06, + "loss": 1.2063787841796876, + "step": 683600 + }, + { + "epoch": 91.16, + "grad_norm": 0.8840457201004028, + "learning_rate": 4.441533333333334e-06, + "loss": 1.2069801330566405, + "step": 683700 + }, + { + "epoch": 91.17333333333333, + "grad_norm": 0.8782556653022766, + "learning_rate": 4.434866666666667e-06, + "loss": 1.2082003021240235, + "step": 683800 + }, + { + "epoch": 91.18666666666667, + "grad_norm": 0.9454366564750671, + "learning_rate": 4.4282e-06, + "loss": 1.2090266418457032, + "step": 683900 + }, + { + "epoch": 91.2, + "grad_norm": 0.8991572260856628, + "learning_rate": 4.421533333333334e-06, + "loss": 1.2046781921386718, + "step": 684000 + }, + { + "epoch": 91.21333333333334, + "grad_norm": 0.8746281862258911, + "learning_rate": 4.414866666666667e-06, + "loss": 1.2073801422119141, + "step": 684100 + }, + { + "epoch": 91.22666666666667, + "grad_norm": 0.9214029312133789, + "learning_rate": 4.4082e-06, + "loss": 1.2062918853759765, + "step": 684200 + }, + { + "epoch": 91.24, + "grad_norm": 0.9604611992835999, + "learning_rate": 4.4015333333333335e-06, + "loss": 1.2054164123535156, + "step": 684300 + }, + { + "epoch": 91.25333333333333, + "grad_norm": 0.8675783276557922, + "learning_rate": 4.394866666666667e-06, + "loss": 1.208896942138672, + "step": 684400 + }, + { + "epoch": 91.26666666666667, + "grad_norm": 0.9738113880157471, + "learning_rate": 4.3882e-06, + "loss": 1.2100360107421875, + "step": 684500 + }, + { + "epoch": 91.28, + "grad_norm": 0.8885136842727661, + "learning_rate": 4.381533333333334e-06, + "loss": 1.2070569610595703, + "step": 684600 + }, + { + "epoch": 91.29333333333334, + "grad_norm": 0.9425179362297058, + "learning_rate": 4.374866666666667e-06, + "loss": 1.2077506256103516, + "step": 684700 + }, + { + "epoch": 91.30666666666667, + "grad_norm": 0.9048968553543091, + "learning_rate": 4.3682e-06, + "loss": 1.2081721496582032, + "step": 684800 + }, + { + "epoch": 91.32, + "grad_norm": 0.9390761256217957, + "learning_rate": 4.361533333333333e-06, + "loss": 1.207364044189453, + "step": 684900 + }, + { + "epoch": 91.33333333333333, + "grad_norm": 0.9158327579498291, + "learning_rate": 4.354866666666667e-06, + "loss": 1.2073294830322265, + "step": 685000 + }, + { + "epoch": 91.34666666666666, + "grad_norm": 0.8673156499862671, + "learning_rate": 4.3482e-06, + "loss": 1.2052005004882813, + "step": 685100 + }, + { + "epoch": 91.36, + "grad_norm": 0.8864044547080994, + "learning_rate": 4.341533333333333e-06, + "loss": 1.2118058013916015, + "step": 685200 + }, + { + "epoch": 91.37333333333333, + "grad_norm": 0.9207347631454468, + "learning_rate": 4.334866666666667e-06, + "loss": 1.2065187835693358, + "step": 685300 + }, + { + "epoch": 91.38666666666667, + "grad_norm": 0.900858998298645, + "learning_rate": 4.3282e-06, + "loss": 1.2105420684814454, + "step": 685400 + }, + { + "epoch": 91.4, + "grad_norm": 0.9267945885658264, + "learning_rate": 4.3215333333333335e-06, + "loss": 1.20435302734375, + "step": 685500 + }, + { + "epoch": 91.41333333333333, + "grad_norm": 0.9637866020202637, + "learning_rate": 4.314866666666667e-06, + "loss": 1.2085104370117188, + "step": 685600 + }, + { + "epoch": 91.42666666666666, + "grad_norm": 0.9455682039260864, + "learning_rate": 4.3082666666666665e-06, + "loss": 1.2091656494140626, + "step": 685700 + }, + { + "epoch": 91.44, + "grad_norm": 0.8735678195953369, + "learning_rate": 4.3016000000000005e-06, + "loss": 1.2076645660400391, + "step": 685800 + }, + { + "epoch": 91.45333333333333, + "grad_norm": 0.9294810891151428, + "learning_rate": 4.2949333333333336e-06, + "loss": 1.208891830444336, + "step": 685900 + }, + { + "epoch": 91.46666666666667, + "grad_norm": 0.92054283618927, + "learning_rate": 4.288266666666667e-06, + "loss": 1.2102249145507813, + "step": 686000 + }, + { + "epoch": 91.48, + "grad_norm": 0.8439618349075317, + "learning_rate": 4.2816e-06, + "loss": 1.2142427062988281, + "step": 686100 + }, + { + "epoch": 91.49333333333334, + "grad_norm": 0.8484886884689331, + "learning_rate": 4.274933333333334e-06, + "loss": 1.2077330017089845, + "step": 686200 + }, + { + "epoch": 91.50666666666666, + "grad_norm": 0.9745410680770874, + "learning_rate": 4.268266666666667e-06, + "loss": 1.2066510009765625, + "step": 686300 + }, + { + "epoch": 91.52, + "grad_norm": 0.8893364667892456, + "learning_rate": 4.2616e-06, + "loss": 1.2086053466796876, + "step": 686400 + }, + { + "epoch": 91.53333333333333, + "grad_norm": 0.8825772404670715, + "learning_rate": 4.254933333333334e-06, + "loss": 1.2083636474609376, + "step": 686500 + }, + { + "epoch": 91.54666666666667, + "grad_norm": 0.8804160356521606, + "learning_rate": 4.248266666666667e-06, + "loss": 1.2095064544677734, + "step": 686600 + }, + { + "epoch": 91.56, + "grad_norm": 0.9658887386322021, + "learning_rate": 4.2416e-06, + "loss": 1.2093119049072265, + "step": 686700 + }, + { + "epoch": 91.57333333333334, + "grad_norm": 0.952987790107727, + "learning_rate": 4.234933333333334e-06, + "loss": 1.2097184753417969, + "step": 686800 + }, + { + "epoch": 91.58666666666667, + "grad_norm": 0.8630662560462952, + "learning_rate": 4.228266666666667e-06, + "loss": 1.2081199645996095, + "step": 686900 + }, + { + "epoch": 91.6, + "grad_norm": 0.9706721901893616, + "learning_rate": 4.2215999999999995e-06, + "loss": 1.2103736114501953, + "step": 687000 + }, + { + "epoch": 91.61333333333333, + "grad_norm": 0.9168404936790466, + "learning_rate": 4.2149333333333335e-06, + "loss": 1.2104512023925782, + "step": 687100 + }, + { + "epoch": 91.62666666666667, + "grad_norm": 0.9021251201629639, + "learning_rate": 4.208266666666667e-06, + "loss": 1.208455810546875, + "step": 687200 + }, + { + "epoch": 91.64, + "grad_norm": 0.9148797392845154, + "learning_rate": 4.2016e-06, + "loss": 1.21326904296875, + "step": 687300 + }, + { + "epoch": 91.65333333333334, + "grad_norm": 0.8841809630393982, + "learning_rate": 4.194933333333334e-06, + "loss": 1.2070911407470704, + "step": 687400 + }, + { + "epoch": 91.66666666666667, + "grad_norm": 0.9368838667869568, + "learning_rate": 4.188266666666667e-06, + "loss": 1.2107268524169923, + "step": 687500 + }, + { + "epoch": 91.68, + "grad_norm": 0.9060821533203125, + "learning_rate": 4.1816e-06, + "loss": 1.2130730438232422, + "step": 687600 + }, + { + "epoch": 91.69333333333333, + "grad_norm": 0.9751666188240051, + "learning_rate": 4.175000000000001e-06, + "loss": 1.2097231292724608, + "step": 687700 + }, + { + "epoch": 91.70666666666666, + "grad_norm": 0.8472406268119812, + "learning_rate": 4.168333333333334e-06, + "loss": 1.2085147094726563, + "step": 687800 + }, + { + "epoch": 91.72, + "grad_norm": 1.005416989326477, + "learning_rate": 4.161666666666667e-06, + "loss": 1.2118323516845704, + "step": 687900 + }, + { + "epoch": 91.73333333333333, + "grad_norm": 0.8820925951004028, + "learning_rate": 4.155e-06, + "loss": 1.2112535095214845, + "step": 688000 + }, + { + "epoch": 91.74666666666667, + "grad_norm": 0.8622952103614807, + "learning_rate": 4.148333333333333e-06, + "loss": 1.2110252380371094, + "step": 688100 + }, + { + "epoch": 91.76, + "grad_norm": 0.8722947239875793, + "learning_rate": 4.141666666666666e-06, + "loss": 1.2133953857421875, + "step": 688200 + }, + { + "epoch": 91.77333333333333, + "grad_norm": 0.9638639688491821, + "learning_rate": 4.135e-06, + "loss": 1.2091949462890625, + "step": 688300 + }, + { + "epoch": 91.78666666666666, + "grad_norm": 0.9140656590461731, + "learning_rate": 4.128333333333333e-06, + "loss": 1.2114816284179688, + "step": 688400 + }, + { + "epoch": 91.8, + "grad_norm": 0.9216871857643127, + "learning_rate": 4.1216666666666665e-06, + "loss": 1.2120486450195314, + "step": 688500 + }, + { + "epoch": 91.81333333333333, + "grad_norm": 0.8618937134742737, + "learning_rate": 4.115e-06, + "loss": 1.2109370422363281, + "step": 688600 + }, + { + "epoch": 91.82666666666667, + "grad_norm": 0.8921952247619629, + "learning_rate": 4.1083333333333335e-06, + "loss": 1.2133558654785157, + "step": 688700 + }, + { + "epoch": 91.84, + "grad_norm": 0.895045280456543, + "learning_rate": 4.101666666666667e-06, + "loss": 1.2121337890625, + "step": 688800 + }, + { + "epoch": 91.85333333333334, + "grad_norm": 0.8907344341278076, + "learning_rate": 4.095000000000001e-06, + "loss": 1.2133706665039063, + "step": 688900 + }, + { + "epoch": 91.86666666666666, + "grad_norm": 0.87125563621521, + "learning_rate": 4.088333333333334e-06, + "loss": 1.2131654357910155, + "step": 689000 + }, + { + "epoch": 91.88, + "grad_norm": 0.8448019623756409, + "learning_rate": 4.081666666666667e-06, + "loss": 1.2095771026611328, + "step": 689100 + }, + { + "epoch": 91.89333333333333, + "grad_norm": 0.8955243229866028, + "learning_rate": 4.075e-06, + "loss": 1.2100251770019532, + "step": 689200 + }, + { + "epoch": 91.90666666666667, + "grad_norm": 0.9619772434234619, + "learning_rate": 4.068333333333334e-06, + "loss": 1.2143017578125, + "step": 689300 + }, + { + "epoch": 91.92, + "grad_norm": 0.893493115901947, + "learning_rate": 4.061666666666667e-06, + "loss": 1.213790283203125, + "step": 689400 + }, + { + "epoch": 91.93333333333334, + "grad_norm": 0.9905881285667419, + "learning_rate": 4.055e-06, + "loss": 1.2162788391113282, + "step": 689500 + }, + { + "epoch": 91.94666666666667, + "grad_norm": 0.9450225830078125, + "learning_rate": 4.048333333333334e-06, + "loss": 1.213459243774414, + "step": 689600 + }, + { + "epoch": 91.96, + "grad_norm": 0.9374111294746399, + "learning_rate": 4.041733333333333e-06, + "loss": 1.21458984375, + "step": 689700 + }, + { + "epoch": 91.97333333333333, + "grad_norm": 0.8688250780105591, + "learning_rate": 4.035066666666667e-06, + "loss": 1.2136087799072266, + "step": 689800 + }, + { + "epoch": 91.98666666666666, + "grad_norm": 0.912335216999054, + "learning_rate": 4.0284e-06, + "loss": 1.2162496948242187, + "step": 689900 + }, + { + "epoch": 92.0, + "grad_norm": 0.8809793591499329, + "learning_rate": 4.021733333333333e-06, + "loss": 1.215945281982422, + "step": 690000 + }, + { + "epoch": 92.01333333333334, + "grad_norm": 0.8624962568283081, + "learning_rate": 4.015066666666667e-06, + "loss": 1.1997320556640625, + "step": 690100 + }, + { + "epoch": 92.02666666666667, + "grad_norm": 0.8585469126701355, + "learning_rate": 4.0084000000000005e-06, + "loss": 1.198604278564453, + "step": 690200 + }, + { + "epoch": 92.04, + "grad_norm": 0.9289453029632568, + "learning_rate": 4.0017333333333336e-06, + "loss": 1.2011491394042968, + "step": 690300 + }, + { + "epoch": 92.05333333333333, + "grad_norm": 0.81109219789505, + "learning_rate": 3.995066666666667e-06, + "loss": 1.200951156616211, + "step": 690400 + }, + { + "epoch": 92.06666666666666, + "grad_norm": 0.8511631488800049, + "learning_rate": 3.988400000000001e-06, + "loss": 1.2002388000488282, + "step": 690500 + }, + { + "epoch": 92.08, + "grad_norm": 0.9203524589538574, + "learning_rate": 3.981733333333334e-06, + "loss": 1.1966284942626952, + "step": 690600 + }, + { + "epoch": 92.09333333333333, + "grad_norm": 0.9373264312744141, + "learning_rate": 3.975066666666667e-06, + "loss": 1.20522705078125, + "step": 690700 + }, + { + "epoch": 92.10666666666667, + "grad_norm": 0.8882933855056763, + "learning_rate": 3.9684e-06, + "loss": 1.1983634948730468, + "step": 690800 + }, + { + "epoch": 92.12, + "grad_norm": 0.9304332733154297, + "learning_rate": 3.961733333333333e-06, + "loss": 1.201865005493164, + "step": 690900 + }, + { + "epoch": 92.13333333333334, + "grad_norm": 0.8630163669586182, + "learning_rate": 3.955066666666667e-06, + "loss": 1.203161163330078, + "step": 691000 + }, + { + "epoch": 92.14666666666666, + "grad_norm": 0.8729649782180786, + "learning_rate": 3.9484e-06, + "loss": 1.1991504669189452, + "step": 691100 + }, + { + "epoch": 92.16, + "grad_norm": 0.9168478846549988, + "learning_rate": 3.941733333333333e-06, + "loss": 1.2062628936767579, + "step": 691200 + }, + { + "epoch": 92.17333333333333, + "grad_norm": 0.947083055973053, + "learning_rate": 3.935066666666666e-06, + "loss": 1.2042913818359375, + "step": 691300 + }, + { + "epoch": 92.18666666666667, + "grad_norm": 0.8406407237052917, + "learning_rate": 3.9284e-06, + "loss": 1.2058570861816407, + "step": 691400 + }, + { + "epoch": 92.2, + "grad_norm": 0.8867647051811218, + "learning_rate": 3.9217333333333335e-06, + "loss": 1.205999526977539, + "step": 691500 + }, + { + "epoch": 92.21333333333334, + "grad_norm": 0.8558156490325928, + "learning_rate": 3.915066666666667e-06, + "loss": 1.2016780853271485, + "step": 691600 + }, + { + "epoch": 92.22666666666667, + "grad_norm": 0.9120957851409912, + "learning_rate": 3.9084666666666665e-06, + "loss": 1.2028411102294922, + "step": 691700 + }, + { + "epoch": 92.24, + "grad_norm": 0.8666041493415833, + "learning_rate": 3.9018e-06, + "loss": 1.2044637298583984, + "step": 691800 + }, + { + "epoch": 92.25333333333333, + "grad_norm": 0.9331375956535339, + "learning_rate": 3.895133333333334e-06, + "loss": 1.2048243713378906, + "step": 691900 + }, + { + "epoch": 92.26666666666667, + "grad_norm": 0.9363828301429749, + "learning_rate": 3.888466666666667e-06, + "loss": 1.20224609375, + "step": 692000 + }, + { + "epoch": 92.28, + "grad_norm": 0.8703069686889648, + "learning_rate": 3.8818e-06, + "loss": 1.2026631927490234, + "step": 692100 + }, + { + "epoch": 92.29333333333334, + "grad_norm": 0.8834508061408997, + "learning_rate": 3.875133333333334e-06, + "loss": 1.205963134765625, + "step": 692200 + }, + { + "epoch": 92.30666666666667, + "grad_norm": 0.9188662171363831, + "learning_rate": 3.868466666666667e-06, + "loss": 1.2017127227783204, + "step": 692300 + }, + { + "epoch": 92.32, + "grad_norm": 0.9342883825302124, + "learning_rate": 3.8618e-06, + "loss": 1.2051532745361329, + "step": 692400 + }, + { + "epoch": 92.33333333333333, + "grad_norm": 0.8774183988571167, + "learning_rate": 3.855133333333333e-06, + "loss": 1.2030648803710937, + "step": 692500 + }, + { + "epoch": 92.34666666666666, + "grad_norm": 0.9485383033752441, + "learning_rate": 3.848466666666667e-06, + "loss": 1.2045017242431642, + "step": 692600 + }, + { + "epoch": 92.36, + "grad_norm": 0.8900927305221558, + "learning_rate": 3.8418e-06, + "loss": 1.2074580383300781, + "step": 692700 + }, + { + "epoch": 92.37333333333333, + "grad_norm": 0.92417973279953, + "learning_rate": 3.835133333333333e-06, + "loss": 1.2043077087402343, + "step": 692800 + }, + { + "epoch": 92.38666666666667, + "grad_norm": 0.9447479844093323, + "learning_rate": 3.828466666666667e-06, + "loss": 1.2089013671875, + "step": 692900 + }, + { + "epoch": 92.4, + "grad_norm": 0.8772882223129272, + "learning_rate": 3.8218e-06, + "loss": 1.2071390533447266, + "step": 693000 + }, + { + "epoch": 92.41333333333333, + "grad_norm": 1.0013352632522583, + "learning_rate": 3.8151333333333335e-06, + "loss": 1.2067708587646484, + "step": 693100 + }, + { + "epoch": 92.42666666666666, + "grad_norm": 0.933141827583313, + "learning_rate": 3.808466666666667e-06, + "loss": 1.203813018798828, + "step": 693200 + }, + { + "epoch": 92.44, + "grad_norm": 0.8919726610183716, + "learning_rate": 3.8018000000000006e-06, + "loss": 1.2031111907958985, + "step": 693300 + }, + { + "epoch": 92.45333333333333, + "grad_norm": 0.9562348127365112, + "learning_rate": 3.7951333333333333e-06, + "loss": 1.2068241882324218, + "step": 693400 + }, + { + "epoch": 92.46666666666667, + "grad_norm": 0.8733388185501099, + "learning_rate": 3.7884666666666664e-06, + "loss": 1.2057405090332032, + "step": 693500 + }, + { + "epoch": 92.48, + "grad_norm": 0.837426483631134, + "learning_rate": 3.7818e-06, + "loss": 1.2067436218261718, + "step": 693600 + }, + { + "epoch": 92.49333333333334, + "grad_norm": 0.881060004234314, + "learning_rate": 3.7752000000000003e-06, + "loss": 1.2039698028564454, + "step": 693700 + }, + { + "epoch": 92.50666666666666, + "grad_norm": 0.9489794969558716, + "learning_rate": 3.768533333333334e-06, + "loss": 1.2064761352539062, + "step": 693800 + }, + { + "epoch": 92.52, + "grad_norm": 0.8895357847213745, + "learning_rate": 3.761866666666667e-06, + "loss": 1.202109375, + "step": 693900 + }, + { + "epoch": 92.53333333333333, + "grad_norm": 0.9040202498435974, + "learning_rate": 3.7552000000000005e-06, + "loss": 1.2075955963134766, + "step": 694000 + }, + { + "epoch": 92.54666666666667, + "grad_norm": 0.9203453660011292, + "learning_rate": 3.7485333333333336e-06, + "loss": 1.2062896728515624, + "step": 694100 + }, + { + "epoch": 92.56, + "grad_norm": 0.8410115242004395, + "learning_rate": 3.741866666666667e-06, + "loss": 1.2079099273681642, + "step": 694200 + }, + { + "epoch": 92.57333333333334, + "grad_norm": 0.8776598572731018, + "learning_rate": 3.7352000000000007e-06, + "loss": 1.201023941040039, + "step": 694300 + }, + { + "epoch": 92.58666666666667, + "grad_norm": 0.9552059769630432, + "learning_rate": 3.7285333333333334e-06, + "loss": 1.209650650024414, + "step": 694400 + }, + { + "epoch": 92.6, + "grad_norm": 0.9305794835090637, + "learning_rate": 3.7218666666666665e-06, + "loss": 1.2058026885986328, + "step": 694500 + }, + { + "epoch": 92.61333333333333, + "grad_norm": 0.9237838387489319, + "learning_rate": 3.7152e-06, + "loss": 1.2126660919189454, + "step": 694600 + }, + { + "epoch": 92.62666666666667, + "grad_norm": 0.9203336834907532, + "learning_rate": 3.708533333333333e-06, + "loss": 1.207015380859375, + "step": 694700 + }, + { + "epoch": 92.64, + "grad_norm": 0.9319577217102051, + "learning_rate": 3.7018666666666667e-06, + "loss": 1.2062096405029297, + "step": 694800 + }, + { + "epoch": 92.65333333333334, + "grad_norm": 0.8748674988746643, + "learning_rate": 3.6952000000000002e-06, + "loss": 1.2033453369140625, + "step": 694900 + }, + { + "epoch": 92.66666666666667, + "grad_norm": 0.8956521153450012, + "learning_rate": 3.6885333333333333e-06, + "loss": 1.2087307739257813, + "step": 695000 + }, + { + "epoch": 92.68, + "grad_norm": 0.8896095156669617, + "learning_rate": 3.681866666666667e-06, + "loss": 1.2088866424560547, + "step": 695100 + }, + { + "epoch": 92.69333333333333, + "grad_norm": 0.9287655353546143, + "learning_rate": 3.6752e-06, + "loss": 1.2099744415283202, + "step": 695200 + }, + { + "epoch": 92.70666666666666, + "grad_norm": 0.8579117655754089, + "learning_rate": 3.6685333333333335e-06, + "loss": 1.2089561462402343, + "step": 695300 + }, + { + "epoch": 92.72, + "grad_norm": 0.906623125076294, + "learning_rate": 3.661866666666667e-06, + "loss": 1.207219009399414, + "step": 695400 + }, + { + "epoch": 92.73333333333333, + "grad_norm": 0.8688279390335083, + "learning_rate": 3.6552e-06, + "loss": 1.205895233154297, + "step": 695500 + }, + { + "epoch": 92.74666666666667, + "grad_norm": 0.9425486326217651, + "learning_rate": 3.6485333333333337e-06, + "loss": 1.205015869140625, + "step": 695600 + }, + { + "epoch": 92.76, + "grad_norm": 0.9034813046455383, + "learning_rate": 3.6419333333333332e-06, + "loss": 1.2078257751464845, + "step": 695700 + }, + { + "epoch": 92.77333333333333, + "grad_norm": 0.9471731781959534, + "learning_rate": 3.6352666666666668e-06, + "loss": 1.2084870147705078, + "step": 695800 + }, + { + "epoch": 92.78666666666666, + "grad_norm": 0.8931053280830383, + "learning_rate": 3.6286e-06, + "loss": 1.2065433502197265, + "step": 695900 + }, + { + "epoch": 92.8, + "grad_norm": 0.9375083446502686, + "learning_rate": 3.6219333333333334e-06, + "loss": 1.2090350341796876, + "step": 696000 + }, + { + "epoch": 92.81333333333333, + "grad_norm": 0.8571840524673462, + "learning_rate": 3.615266666666667e-06, + "loss": 1.2078850555419922, + "step": 696100 + }, + { + "epoch": 92.82666666666667, + "grad_norm": 0.9313179850578308, + "learning_rate": 3.6086e-06, + "loss": 1.2092186737060546, + "step": 696200 + }, + { + "epoch": 92.84, + "grad_norm": 0.8702300786972046, + "learning_rate": 3.6019333333333336e-06, + "loss": 1.209949951171875, + "step": 696300 + }, + { + "epoch": 92.85333333333334, + "grad_norm": 0.9009842872619629, + "learning_rate": 3.5952666666666667e-06, + "loss": 1.2110611724853515, + "step": 696400 + }, + { + "epoch": 92.86666666666666, + "grad_norm": 0.8789703249931335, + "learning_rate": 3.5886000000000003e-06, + "loss": 1.212374267578125, + "step": 696500 + }, + { + "epoch": 92.88, + "grad_norm": 0.937931478023529, + "learning_rate": 3.581933333333334e-06, + "loss": 1.2115992736816406, + "step": 696600 + }, + { + "epoch": 92.89333333333333, + "grad_norm": 0.8966504335403442, + "learning_rate": 3.575266666666667e-06, + "loss": 1.2094432067871095, + "step": 696700 + }, + { + "epoch": 92.90666666666667, + "grad_norm": 0.9230213761329651, + "learning_rate": 3.5686000000000004e-06, + "loss": 1.2086225128173829, + "step": 696800 + }, + { + "epoch": 92.92, + "grad_norm": 0.9597765803337097, + "learning_rate": 3.561933333333334e-06, + "loss": 1.2142015075683594, + "step": 696900 + }, + { + "epoch": 92.93333333333334, + "grad_norm": 0.9093431830406189, + "learning_rate": 3.555266666666667e-06, + "loss": 1.2086906433105469, + "step": 697000 + }, + { + "epoch": 92.94666666666667, + "grad_norm": 0.897400438785553, + "learning_rate": 3.5485999999999998e-06, + "loss": 1.211206283569336, + "step": 697100 + }, + { + "epoch": 92.96, + "grad_norm": 0.867046594619751, + "learning_rate": 3.5419333333333333e-06, + "loss": 1.2069461822509766, + "step": 697200 + }, + { + "epoch": 92.97333333333333, + "grad_norm": 0.8881245255470276, + "learning_rate": 3.5352666666666664e-06, + "loss": 1.2137161254882813, + "step": 697300 + }, + { + "epoch": 92.98666666666666, + "grad_norm": 0.9253084063529968, + "learning_rate": 3.5286e-06, + "loss": 1.2097924041748047, + "step": 697400 + }, + { + "epoch": 93.0, + "grad_norm": 0.938310980796814, + "learning_rate": 3.5219333333333335e-06, + "loss": 1.2097466278076172, + "step": 697500 + }, + { + "epoch": 93.01333333333334, + "grad_norm": 0.9459820985794067, + "learning_rate": 3.5152666666666666e-06, + "loss": 1.2002715301513671, + "step": 697600 + }, + { + "epoch": 93.02666666666667, + "grad_norm": 0.8648054003715515, + "learning_rate": 3.508666666666667e-06, + "loss": 1.1980596923828124, + "step": 697700 + }, + { + "epoch": 93.04, + "grad_norm": 0.9034267067909241, + "learning_rate": 3.5020000000000005e-06, + "loss": 1.1980625915527343, + "step": 697800 + }, + { + "epoch": 93.05333333333333, + "grad_norm": 0.891040027141571, + "learning_rate": 3.4953333333333336e-06, + "loss": 1.196813735961914, + "step": 697900 + }, + { + "epoch": 93.06666666666666, + "grad_norm": 0.8857132792472839, + "learning_rate": 3.488666666666667e-06, + "loss": 1.1995645141601563, + "step": 698000 + }, + { + "epoch": 93.08, + "grad_norm": 0.8220590949058533, + "learning_rate": 3.482e-06, + "loss": 1.199000930786133, + "step": 698100 + }, + { + "epoch": 93.09333333333333, + "grad_norm": 0.9337181448936462, + "learning_rate": 3.4753333333333334e-06, + "loss": 1.1981783294677735, + "step": 698200 + }, + { + "epoch": 93.10666666666667, + "grad_norm": 0.8952512145042419, + "learning_rate": 3.4686666666666665e-06, + "loss": 1.203648910522461, + "step": 698300 + }, + { + "epoch": 93.12, + "grad_norm": 0.932554304599762, + "learning_rate": 3.462e-06, + "loss": 1.2012419891357422, + "step": 698400 + }, + { + "epoch": 93.13333333333334, + "grad_norm": 0.8617738485336304, + "learning_rate": 3.455333333333333e-06, + "loss": 1.1994852447509765, + "step": 698500 + }, + { + "epoch": 93.14666666666666, + "grad_norm": 0.9104321599006653, + "learning_rate": 3.4486666666666667e-06, + "loss": 1.207906723022461, + "step": 698600 + }, + { + "epoch": 93.16, + "grad_norm": 0.8374426960945129, + "learning_rate": 3.4420000000000002e-06, + "loss": 1.1999403381347655, + "step": 698700 + }, + { + "epoch": 93.17333333333333, + "grad_norm": 0.8905571103096008, + "learning_rate": 3.4353333333333334e-06, + "loss": 1.1972482299804688, + "step": 698800 + }, + { + "epoch": 93.18666666666667, + "grad_norm": 0.8699285387992859, + "learning_rate": 3.428666666666667e-06, + "loss": 1.2003094482421874, + "step": 698900 + }, + { + "epoch": 93.2, + "grad_norm": 0.8738979697227478, + "learning_rate": 3.422e-06, + "loss": 1.2002088928222656, + "step": 699000 + }, + { + "epoch": 93.21333333333334, + "grad_norm": 0.8332516551017761, + "learning_rate": 3.4153333333333336e-06, + "loss": 1.1950491333007813, + "step": 699100 + }, + { + "epoch": 93.22666666666667, + "grad_norm": 0.8510139584541321, + "learning_rate": 3.408666666666667e-06, + "loss": 1.1995225524902344, + "step": 699200 + }, + { + "epoch": 93.24, + "grad_norm": 0.9004165530204773, + "learning_rate": 3.402e-06, + "loss": 1.2011061096191407, + "step": 699300 + }, + { + "epoch": 93.25333333333333, + "grad_norm": 0.9277057647705078, + "learning_rate": 3.3953333333333337e-06, + "loss": 1.2032598876953124, + "step": 699400 + }, + { + "epoch": 93.26666666666667, + "grad_norm": 0.9293489456176758, + "learning_rate": 3.388666666666667e-06, + "loss": 1.2010295867919922, + "step": 699500 + }, + { + "epoch": 93.28, + "grad_norm": 0.9297680854797363, + "learning_rate": 3.3820000000000004e-06, + "loss": 1.1998831176757812, + "step": 699600 + }, + { + "epoch": 93.29333333333334, + "grad_norm": 0.9310411810874939, + "learning_rate": 3.375333333333334e-06, + "loss": 1.2022223663330078, + "step": 699700 + }, + { + "epoch": 93.30666666666667, + "grad_norm": 0.8587492108345032, + "learning_rate": 3.3687333333333334e-06, + "loss": 1.2029190063476562, + "step": 699800 + }, + { + "epoch": 93.32, + "grad_norm": 0.8777822852134705, + "learning_rate": 3.362066666666667e-06, + "loss": 1.1976495361328126, + "step": 699900 + }, + { + "epoch": 93.33333333333333, + "grad_norm": 0.9253079891204834, + "learning_rate": 3.3554e-06, + "loss": 1.205234909057617, + "step": 700000 + }, + { + "epoch": 93.34666666666666, + "grad_norm": 0.9172502160072327, + "learning_rate": 3.3487333333333336e-06, + "loss": 1.2025753784179687, + "step": 700100 + }, + { + "epoch": 93.36, + "grad_norm": 0.8835508227348328, + "learning_rate": 3.3420666666666667e-06, + "loss": 1.203255386352539, + "step": 700200 + }, + { + "epoch": 93.37333333333333, + "grad_norm": 0.9050441980361938, + "learning_rate": 3.3354000000000003e-06, + "loss": 1.2038262176513672, + "step": 700300 + }, + { + "epoch": 93.38666666666667, + "grad_norm": 0.8916856050491333, + "learning_rate": 3.328733333333334e-06, + "loss": 1.2023595428466798, + "step": 700400 + }, + { + "epoch": 93.4, + "grad_norm": 0.945793867111206, + "learning_rate": 3.322066666666667e-06, + "loss": 1.2015753173828125, + "step": 700500 + }, + { + "epoch": 93.41333333333333, + "grad_norm": 0.8409869074821472, + "learning_rate": 3.3154000000000005e-06, + "loss": 1.200424346923828, + "step": 700600 + }, + { + "epoch": 93.42666666666666, + "grad_norm": 0.8369486927986145, + "learning_rate": 3.308733333333334e-06, + "loss": 1.2012825012207031, + "step": 700700 + }, + { + "epoch": 93.44, + "grad_norm": 0.9023328423500061, + "learning_rate": 3.3020666666666667e-06, + "loss": 1.1996861267089844, + "step": 700800 + }, + { + "epoch": 93.45333333333333, + "grad_norm": 0.9621808528900146, + "learning_rate": 3.2954e-06, + "loss": 1.2020472717285156, + "step": 700900 + }, + { + "epoch": 93.46666666666667, + "grad_norm": 0.9381176829338074, + "learning_rate": 3.2887333333333334e-06, + "loss": 1.2013578033447265, + "step": 701000 + }, + { + "epoch": 93.48, + "grad_norm": 0.9038723111152649, + "learning_rate": 3.2820666666666665e-06, + "loss": 1.2052571868896484, + "step": 701100 + }, + { + "epoch": 93.49333333333334, + "grad_norm": 0.8777031898498535, + "learning_rate": 3.2754e-06, + "loss": 1.2066443634033204, + "step": 701200 + }, + { + "epoch": 93.50666666666666, + "grad_norm": 0.898979663848877, + "learning_rate": 3.2687333333333336e-06, + "loss": 1.2039942932128906, + "step": 701300 + }, + { + "epoch": 93.52, + "grad_norm": 0.9564325213432312, + "learning_rate": 3.2620666666666667e-06, + "loss": 1.203017120361328, + "step": 701400 + }, + { + "epoch": 93.53333333333333, + "grad_norm": 0.8886229991912842, + "learning_rate": 3.2554e-06, + "loss": 1.2048358917236328, + "step": 701500 + }, + { + "epoch": 93.54666666666667, + "grad_norm": 0.9237152338027954, + "learning_rate": 3.2487333333333333e-06, + "loss": 1.2045701599121095, + "step": 701600 + }, + { + "epoch": 93.56, + "grad_norm": 0.896867036819458, + "learning_rate": 3.242066666666667e-06, + "loss": 1.2023987579345703, + "step": 701700 + }, + { + "epoch": 93.57333333333334, + "grad_norm": 0.9271662831306458, + "learning_rate": 3.2354666666666664e-06, + "loss": 1.2070915985107422, + "step": 701800 + }, + { + "epoch": 93.58666666666667, + "grad_norm": 0.9243695139884949, + "learning_rate": 3.2288e-06, + "loss": 1.2029459381103516, + "step": 701900 + }, + { + "epoch": 93.6, + "grad_norm": 0.8733084797859192, + "learning_rate": 3.2221333333333334e-06, + "loss": 1.2044219207763671, + "step": 702000 + }, + { + "epoch": 93.61333333333333, + "grad_norm": 0.8613144159317017, + "learning_rate": 3.2154666666666666e-06, + "loss": 1.2015194702148437, + "step": 702100 + }, + { + "epoch": 93.62666666666667, + "grad_norm": 0.8946916460990906, + "learning_rate": 3.2088e-06, + "loss": 1.2066204071044921, + "step": 702200 + }, + { + "epoch": 93.64, + "grad_norm": 0.8852377533912659, + "learning_rate": 3.202133333333333e-06, + "loss": 1.2049375915527343, + "step": 702300 + }, + { + "epoch": 93.65333333333334, + "grad_norm": 0.9133490324020386, + "learning_rate": 3.1954666666666667e-06, + "loss": 1.2069032287597656, + "step": 702400 + }, + { + "epoch": 93.66666666666667, + "grad_norm": 0.9736997485160828, + "learning_rate": 3.1888000000000003e-06, + "loss": 1.2061416625976562, + "step": 702500 + }, + { + "epoch": 93.68, + "grad_norm": 0.8475258946418762, + "learning_rate": 3.1821333333333334e-06, + "loss": 1.2070252227783203, + "step": 702600 + }, + { + "epoch": 93.69333333333333, + "grad_norm": 0.8701179623603821, + "learning_rate": 3.175466666666667e-06, + "loss": 1.2072611236572266, + "step": 702700 + }, + { + "epoch": 93.70666666666666, + "grad_norm": 0.9371302723884583, + "learning_rate": 3.1688e-06, + "loss": 1.2073512268066406, + "step": 702800 + }, + { + "epoch": 93.72, + "grad_norm": 0.9097060561180115, + "learning_rate": 3.1621333333333336e-06, + "loss": 1.2026378631591796, + "step": 702900 + }, + { + "epoch": 93.73333333333333, + "grad_norm": 0.938374936580658, + "learning_rate": 3.155466666666667e-06, + "loss": 1.2043750762939454, + "step": 703000 + }, + { + "epoch": 93.74666666666667, + "grad_norm": 0.9308724999427795, + "learning_rate": 3.1488000000000002e-06, + "loss": 1.2057681274414063, + "step": 703100 + }, + { + "epoch": 93.76, + "grad_norm": 0.9380525350570679, + "learning_rate": 3.1421333333333338e-06, + "loss": 1.2027383422851563, + "step": 703200 + }, + { + "epoch": 93.77333333333333, + "grad_norm": 0.9042573571205139, + "learning_rate": 3.135466666666667e-06, + "loss": 1.2053038787841797, + "step": 703300 + }, + { + "epoch": 93.78666666666666, + "grad_norm": 0.8465674519538879, + "learning_rate": 3.1288000000000004e-06, + "loss": 1.2070914459228517, + "step": 703400 + }, + { + "epoch": 93.8, + "grad_norm": 0.9048718214035034, + "learning_rate": 3.1221333333333336e-06, + "loss": 1.2079029846191407, + "step": 703500 + }, + { + "epoch": 93.81333333333333, + "grad_norm": 0.9605961441993713, + "learning_rate": 3.115466666666667e-06, + "loss": 1.205398712158203, + "step": 703600 + }, + { + "epoch": 93.82666666666667, + "grad_norm": 0.8697989583015442, + "learning_rate": 3.1088e-06, + "loss": 1.2042691040039062, + "step": 703700 + }, + { + "epoch": 93.84, + "grad_norm": 0.8812441229820251, + "learning_rate": 3.1022e-06, + "loss": 1.2068780517578126, + "step": 703800 + }, + { + "epoch": 93.85333333333334, + "grad_norm": 0.8852190375328064, + "learning_rate": 3.0955333333333337e-06, + "loss": 1.2042357635498047, + "step": 703900 + }, + { + "epoch": 93.86666666666666, + "grad_norm": 0.9224363565444946, + "learning_rate": 3.0888666666666668e-06, + "loss": 1.203583755493164, + "step": 704000 + }, + { + "epoch": 93.88, + "grad_norm": 0.9226585626602173, + "learning_rate": 3.0822e-06, + "loss": 1.2078118896484376, + "step": 704100 + }, + { + "epoch": 93.89333333333333, + "grad_norm": 0.8923982381820679, + "learning_rate": 3.0755333333333334e-06, + "loss": 1.2106005859375, + "step": 704200 + }, + { + "epoch": 93.90666666666667, + "grad_norm": 0.8998373746871948, + "learning_rate": 3.068866666666667e-06, + "loss": 1.2074279022216796, + "step": 704300 + }, + { + "epoch": 93.92, + "grad_norm": 0.8896543383598328, + "learning_rate": 3.0622e-06, + "loss": 1.2062702178955078, + "step": 704400 + }, + { + "epoch": 93.93333333333334, + "grad_norm": 0.9087594747543335, + "learning_rate": 3.0555333333333336e-06, + "loss": 1.2025060272216797, + "step": 704500 + }, + { + "epoch": 93.94666666666667, + "grad_norm": 0.8689560890197754, + "learning_rate": 3.0488666666666667e-06, + "loss": 1.2087166595458985, + "step": 704600 + }, + { + "epoch": 93.96, + "grad_norm": 0.8625527620315552, + "learning_rate": 3.0422000000000003e-06, + "loss": 1.2062256622314453, + "step": 704700 + }, + { + "epoch": 93.97333333333333, + "grad_norm": 0.895000159740448, + "learning_rate": 3.035533333333334e-06, + "loss": 1.2069078826904296, + "step": 704800 + }, + { + "epoch": 93.98666666666666, + "grad_norm": 0.9123364090919495, + "learning_rate": 3.0288666666666665e-06, + "loss": 1.2070018005371095, + "step": 704900 + }, + { + "epoch": 94.0, + "grad_norm": 0.9559196829795837, + "learning_rate": 3.0222e-06, + "loss": 1.2079464721679687, + "step": 705000 + }, + { + "epoch": 94.01333333333334, + "grad_norm": 0.8545342087745667, + "learning_rate": 3.0155333333333336e-06, + "loss": 1.1980677795410157, + "step": 705100 + }, + { + "epoch": 94.02666666666667, + "grad_norm": 0.8731397390365601, + "learning_rate": 3.0088666666666667e-06, + "loss": 1.1981246948242188, + "step": 705200 + }, + { + "epoch": 94.04, + "grad_norm": 0.9388912320137024, + "learning_rate": 3.0022000000000002e-06, + "loss": 1.198083953857422, + "step": 705300 + }, + { + "epoch": 94.05333333333333, + "grad_norm": 0.8558587431907654, + "learning_rate": 2.9955333333333334e-06, + "loss": 1.1956981658935546, + "step": 705400 + }, + { + "epoch": 94.06666666666666, + "grad_norm": 0.9336191415786743, + "learning_rate": 2.988866666666667e-06, + "loss": 1.1954840087890626, + "step": 705500 + }, + { + "epoch": 94.08, + "grad_norm": 0.9011601209640503, + "learning_rate": 2.9822000000000004e-06, + "loss": 1.1973772430419922, + "step": 705600 + }, + { + "epoch": 94.09333333333333, + "grad_norm": 0.8702425956726074, + "learning_rate": 2.9755333333333335e-06, + "loss": 1.1975491333007813, + "step": 705700 + }, + { + "epoch": 94.10666666666667, + "grad_norm": 0.8665642738342285, + "learning_rate": 2.9689333333333335e-06, + "loss": 1.1951853942871093, + "step": 705800 + }, + { + "epoch": 94.12, + "grad_norm": 0.9032362103462219, + "learning_rate": 2.9622666666666666e-06, + "loss": 1.2001158905029297, + "step": 705900 + }, + { + "epoch": 94.13333333333334, + "grad_norm": 0.8543294668197632, + "learning_rate": 2.9556e-06, + "loss": 1.1968789672851563, + "step": 706000 + }, + { + "epoch": 94.14666666666666, + "grad_norm": 0.8729653358459473, + "learning_rate": 2.9489333333333332e-06, + "loss": 1.2012832641601563, + "step": 706100 + }, + { + "epoch": 94.16, + "grad_norm": 0.9173882603645325, + "learning_rate": 2.9422666666666668e-06, + "loss": 1.197931900024414, + "step": 706200 + }, + { + "epoch": 94.17333333333333, + "grad_norm": 0.8953747153282166, + "learning_rate": 2.9356000000000003e-06, + "loss": 1.201817169189453, + "step": 706300 + }, + { + "epoch": 94.18666666666667, + "grad_norm": 0.9290673732757568, + "learning_rate": 2.9289333333333334e-06, + "loss": 1.2014652252197267, + "step": 706400 + }, + { + "epoch": 94.2, + "grad_norm": 0.8571107387542725, + "learning_rate": 2.922266666666667e-06, + "loss": 1.199576187133789, + "step": 706500 + }, + { + "epoch": 94.21333333333334, + "grad_norm": 0.8771602511405945, + "learning_rate": 2.9156e-06, + "loss": 1.1957323455810547, + "step": 706600 + }, + { + "epoch": 94.22666666666667, + "grad_norm": 0.9305838346481323, + "learning_rate": 2.908933333333333e-06, + "loss": 1.1971856689453124, + "step": 706700 + }, + { + "epoch": 94.24, + "grad_norm": 0.8944154381752014, + "learning_rate": 2.9022666666666667e-06, + "loss": 1.197287826538086, + "step": 706800 + }, + { + "epoch": 94.25333333333333, + "grad_norm": 0.8940684199333191, + "learning_rate": 2.8956e-06, + "loss": 1.197225570678711, + "step": 706900 + }, + { + "epoch": 94.26666666666667, + "grad_norm": 0.9056709408760071, + "learning_rate": 2.8889333333333334e-06, + "loss": 1.1965518951416017, + "step": 707000 + }, + { + "epoch": 94.28, + "grad_norm": 0.9414792060852051, + "learning_rate": 2.882266666666667e-06, + "loss": 1.1968941497802734, + "step": 707100 + }, + { + "epoch": 94.29333333333334, + "grad_norm": 0.8908376097679138, + "learning_rate": 2.8756e-06, + "loss": 1.1973877716064454, + "step": 707200 + }, + { + "epoch": 94.30666666666667, + "grad_norm": 0.9297679662704468, + "learning_rate": 2.8689333333333336e-06, + "loss": 1.1994965362548828, + "step": 707300 + }, + { + "epoch": 94.32, + "grad_norm": 0.8703739047050476, + "learning_rate": 2.862266666666667e-06, + "loss": 1.1965327453613281, + "step": 707400 + }, + { + "epoch": 94.33333333333333, + "grad_norm": 0.8615278601646423, + "learning_rate": 2.8556000000000002e-06, + "loss": 1.2004428863525392, + "step": 707500 + }, + { + "epoch": 94.34666666666666, + "grad_norm": 0.9227656722068787, + "learning_rate": 2.8489333333333334e-06, + "loss": 1.2004918670654297, + "step": 707600 + }, + { + "epoch": 94.36, + "grad_norm": 0.9245252013206482, + "learning_rate": 2.842266666666667e-06, + "loss": 1.1989990997314453, + "step": 707700 + }, + { + "epoch": 94.37333333333333, + "grad_norm": 0.9238764643669128, + "learning_rate": 2.835666666666667e-06, + "loss": 1.2016976928710938, + "step": 707800 + }, + { + "epoch": 94.38666666666667, + "grad_norm": 0.9158653616905212, + "learning_rate": 2.829e-06, + "loss": 1.2035940551757813, + "step": 707900 + }, + { + "epoch": 94.4, + "grad_norm": 0.9159825444221497, + "learning_rate": 2.8223333333333335e-06, + "loss": 1.2021241760253907, + "step": 708000 + }, + { + "epoch": 94.41333333333333, + "grad_norm": 0.9235730171203613, + "learning_rate": 2.815666666666667e-06, + "loss": 1.197962875366211, + "step": 708100 + }, + { + "epoch": 94.42666666666666, + "grad_norm": 0.8646361231803894, + "learning_rate": 2.809e-06, + "loss": 1.1968673706054687, + "step": 708200 + }, + { + "epoch": 94.44, + "grad_norm": 0.9146223068237305, + "learning_rate": 2.8023333333333337e-06, + "loss": 1.1992236328125, + "step": 708300 + }, + { + "epoch": 94.45333333333333, + "grad_norm": 0.9262514710426331, + "learning_rate": 2.7956666666666668e-06, + "loss": 1.1973857879638672, + "step": 708400 + }, + { + "epoch": 94.46666666666667, + "grad_norm": 0.9602396488189697, + "learning_rate": 2.7890000000000003e-06, + "loss": 1.2021874237060546, + "step": 708500 + }, + { + "epoch": 94.48, + "grad_norm": 0.9169455766677856, + "learning_rate": 2.7823333333333334e-06, + "loss": 1.201337127685547, + "step": 708600 + }, + { + "epoch": 94.49333333333334, + "grad_norm": 0.922653079032898, + "learning_rate": 2.7756666666666665e-06, + "loss": 1.2005847930908202, + "step": 708700 + }, + { + "epoch": 94.50666666666666, + "grad_norm": 0.8886169195175171, + "learning_rate": 2.769e-06, + "loss": 1.2020726776123047, + "step": 708800 + }, + { + "epoch": 94.52, + "grad_norm": 0.9149191379547119, + "learning_rate": 2.7623333333333336e-06, + "loss": 1.2006275177001953, + "step": 708900 + }, + { + "epoch": 94.53333333333333, + "grad_norm": 0.9416818618774414, + "learning_rate": 2.7556666666666667e-06, + "loss": 1.20090576171875, + "step": 709000 + }, + { + "epoch": 94.54666666666667, + "grad_norm": 0.9213252067565918, + "learning_rate": 2.7490000000000003e-06, + "loss": 1.1960865783691406, + "step": 709100 + }, + { + "epoch": 94.56, + "grad_norm": 0.9599847197532654, + "learning_rate": 2.7423333333333334e-06, + "loss": 1.2013865661621095, + "step": 709200 + }, + { + "epoch": 94.57333333333334, + "grad_norm": 0.8929022550582886, + "learning_rate": 2.735666666666667e-06, + "loss": 1.1997483825683595, + "step": 709300 + }, + { + "epoch": 94.58666666666667, + "grad_norm": 0.9808670878410339, + "learning_rate": 2.729e-06, + "loss": 1.2010655975341797, + "step": 709400 + }, + { + "epoch": 94.6, + "grad_norm": 0.8982358574867249, + "learning_rate": 2.722333333333333e-06, + "loss": 1.2008942413330077, + "step": 709500 + }, + { + "epoch": 94.61333333333333, + "grad_norm": 0.9171635508537292, + "learning_rate": 2.7156666666666667e-06, + "loss": 1.1997940826416016, + "step": 709600 + }, + { + "epoch": 94.62666666666667, + "grad_norm": 0.8832179307937622, + "learning_rate": 2.7090000000000002e-06, + "loss": 1.2014200592041016, + "step": 709700 + }, + { + "epoch": 94.64, + "grad_norm": 0.8543769121170044, + "learning_rate": 2.7024e-06, + "loss": 1.2015788269042968, + "step": 709800 + }, + { + "epoch": 94.65333333333334, + "grad_norm": 0.8646900057792664, + "learning_rate": 2.6957333333333333e-06, + "loss": 1.203617935180664, + "step": 709900 + }, + { + "epoch": 94.66666666666667, + "grad_norm": 0.8815392255783081, + "learning_rate": 2.689066666666667e-06, + "loss": 1.2008470916748046, + "step": 710000 + }, + { + "epoch": 94.68, + "grad_norm": 0.9132913947105408, + "learning_rate": 2.6824000000000004e-06, + "loss": 1.2024823760986327, + "step": 710100 + }, + { + "epoch": 94.69333333333333, + "grad_norm": 0.9004465341567993, + "learning_rate": 2.6757333333333335e-06, + "loss": 1.2015773010253907, + "step": 710200 + }, + { + "epoch": 94.70666666666666, + "grad_norm": 0.9427282214164734, + "learning_rate": 2.669066666666667e-06, + "loss": 1.2027558135986327, + "step": 710300 + }, + { + "epoch": 94.72, + "grad_norm": 0.9398279786109924, + "learning_rate": 2.6624e-06, + "loss": 1.2022799682617187, + "step": 710400 + }, + { + "epoch": 94.73333333333333, + "grad_norm": 0.953403651714325, + "learning_rate": 2.6557333333333332e-06, + "loss": 1.2058155822753907, + "step": 710500 + }, + { + "epoch": 94.74666666666667, + "grad_norm": 0.9545753598213196, + "learning_rate": 2.6490666666666668e-06, + "loss": 1.204290542602539, + "step": 710600 + }, + { + "epoch": 94.76, + "grad_norm": 0.9156383872032166, + "learning_rate": 2.6424e-06, + "loss": 1.2020454406738281, + "step": 710700 + }, + { + "epoch": 94.77333333333333, + "grad_norm": 0.9403426647186279, + "learning_rate": 2.6357333333333334e-06, + "loss": 1.1997908020019532, + "step": 710800 + }, + { + "epoch": 94.78666666666666, + "grad_norm": 0.8966497182846069, + "learning_rate": 2.629066666666667e-06, + "loss": 1.2073065185546874, + "step": 710900 + }, + { + "epoch": 94.8, + "grad_norm": 0.933814287185669, + "learning_rate": 2.6224e-06, + "loss": 1.2032772064208985, + "step": 711000 + }, + { + "epoch": 94.81333333333333, + "grad_norm": 0.8316300511360168, + "learning_rate": 2.6157333333333336e-06, + "loss": 1.1999528503417969, + "step": 711100 + }, + { + "epoch": 94.82666666666667, + "grad_norm": 0.945821225643158, + "learning_rate": 2.609066666666667e-06, + "loss": 1.2072616577148438, + "step": 711200 + }, + { + "epoch": 94.84, + "grad_norm": 0.9445672035217285, + "learning_rate": 2.6024e-06, + "loss": 1.207545623779297, + "step": 711300 + }, + { + "epoch": 94.85333333333334, + "grad_norm": 0.9229156970977783, + "learning_rate": 2.5957333333333334e-06, + "loss": 1.2040837860107423, + "step": 711400 + }, + { + "epoch": 94.86666666666666, + "grad_norm": 0.9328680634498596, + "learning_rate": 2.589066666666667e-06, + "loss": 1.200493392944336, + "step": 711500 + }, + { + "epoch": 94.88, + "grad_norm": 0.8817058801651001, + "learning_rate": 2.5824e-06, + "loss": 1.204656448364258, + "step": 711600 + }, + { + "epoch": 94.89333333333333, + "grad_norm": 0.8611106276512146, + "learning_rate": 2.5757333333333336e-06, + "loss": 1.2088603973388672, + "step": 711700 + }, + { + "epoch": 94.90666666666667, + "grad_norm": 0.9168562889099121, + "learning_rate": 2.5691333333333335e-06, + "loss": 1.2051824951171874, + "step": 711800 + }, + { + "epoch": 94.92, + "grad_norm": 0.8960808515548706, + "learning_rate": 2.5624666666666666e-06, + "loss": 1.2036978912353515, + "step": 711900 + }, + { + "epoch": 94.93333333333334, + "grad_norm": 0.9241425395011902, + "learning_rate": 2.5558e-06, + "loss": 1.2029954528808593, + "step": 712000 + }, + { + "epoch": 94.94666666666667, + "grad_norm": 0.8758190274238586, + "learning_rate": 2.5491333333333337e-06, + "loss": 1.20275390625, + "step": 712100 + }, + { + "epoch": 94.96, + "grad_norm": 0.8666814565658569, + "learning_rate": 2.542466666666667e-06, + "loss": 1.2033231353759766, + "step": 712200 + }, + { + "epoch": 94.97333333333333, + "grad_norm": 0.9167757034301758, + "learning_rate": 2.5358e-06, + "loss": 1.2045973968505859, + "step": 712300 + }, + { + "epoch": 94.98666666666666, + "grad_norm": 0.9360477924346924, + "learning_rate": 2.5291333333333335e-06, + "loss": 1.2020364379882813, + "step": 712400 + }, + { + "epoch": 95.0, + "grad_norm": 0.9205434918403625, + "learning_rate": 2.5224666666666666e-06, + "loss": 1.2040877532958985, + "step": 712500 + }, + { + "epoch": 95.01333333333334, + "grad_norm": 0.8948925733566284, + "learning_rate": 2.5158e-06, + "loss": 1.1948794555664062, + "step": 712600 + }, + { + "epoch": 95.02666666666667, + "grad_norm": 0.9492332935333252, + "learning_rate": 2.5091333333333337e-06, + "loss": 1.1927398681640624, + "step": 712700 + }, + { + "epoch": 95.04, + "grad_norm": 0.9059979319572449, + "learning_rate": 2.5024666666666668e-06, + "loss": 1.1940172576904298, + "step": 712800 + }, + { + "epoch": 95.05333333333333, + "grad_norm": 0.8861105442047119, + "learning_rate": 2.4958000000000003e-06, + "loss": 1.1955216217041016, + "step": 712900 + }, + { + "epoch": 95.06666666666666, + "grad_norm": 0.9048792719841003, + "learning_rate": 2.4891333333333334e-06, + "loss": 1.1973499298095702, + "step": 713000 + }, + { + "epoch": 95.08, + "grad_norm": 0.8883659839630127, + "learning_rate": 2.4824666666666665e-06, + "loss": 1.1946544647216797, + "step": 713100 + }, + { + "epoch": 95.09333333333333, + "grad_norm": 0.9289974570274353, + "learning_rate": 2.4758e-06, + "loss": 1.1974421691894532, + "step": 713200 + }, + { + "epoch": 95.10666666666667, + "grad_norm": 0.9032652378082275, + "learning_rate": 2.469133333333333e-06, + "loss": 1.1930424499511718, + "step": 713300 + }, + { + "epoch": 95.12, + "grad_norm": 0.8951370716094971, + "learning_rate": 2.4624666666666667e-06, + "loss": 1.197111587524414, + "step": 713400 + }, + { + "epoch": 95.13333333333334, + "grad_norm": 0.8893224596977234, + "learning_rate": 2.4558000000000003e-06, + "loss": 1.1959721374511718, + "step": 713500 + }, + { + "epoch": 95.14666666666666, + "grad_norm": 0.8968496918678284, + "learning_rate": 2.4491333333333334e-06, + "loss": 1.1987583923339844, + "step": 713600 + }, + { + "epoch": 95.16, + "grad_norm": 0.8864784240722656, + "learning_rate": 2.442466666666667e-06, + "loss": 1.1947860717773438, + "step": 713700 + }, + { + "epoch": 95.17333333333333, + "grad_norm": 0.8457802534103394, + "learning_rate": 2.435866666666667e-06, + "loss": 1.1984773254394532, + "step": 713800 + }, + { + "epoch": 95.18666666666667, + "grad_norm": 0.9682843685150146, + "learning_rate": 2.4292000000000004e-06, + "loss": 1.1989812469482422, + "step": 713900 + }, + { + "epoch": 95.2, + "grad_norm": 0.9019679427146912, + "learning_rate": 2.4225333333333335e-06, + "loss": 1.1998885345458985, + "step": 714000 + }, + { + "epoch": 95.21333333333334, + "grad_norm": 0.8968068361282349, + "learning_rate": 2.4158666666666666e-06, + "loss": 1.196024169921875, + "step": 714100 + }, + { + "epoch": 95.22666666666667, + "grad_norm": 0.9033806324005127, + "learning_rate": 2.4092e-06, + "loss": 1.1988829803466796, + "step": 714200 + }, + { + "epoch": 95.24, + "grad_norm": 0.8861857056617737, + "learning_rate": 2.4025333333333333e-06, + "loss": 1.1954184722900392, + "step": 714300 + }, + { + "epoch": 95.25333333333333, + "grad_norm": 0.8714227676391602, + "learning_rate": 2.395866666666667e-06, + "loss": 1.1975115203857423, + "step": 714400 + }, + { + "epoch": 95.26666666666667, + "grad_norm": 0.8732222318649292, + "learning_rate": 2.3892e-06, + "loss": 1.1969498443603515, + "step": 714500 + }, + { + "epoch": 95.28, + "grad_norm": 0.8276050090789795, + "learning_rate": 2.3825333333333335e-06, + "loss": 1.197633285522461, + "step": 714600 + }, + { + "epoch": 95.29333333333334, + "grad_norm": 0.8574380278587341, + "learning_rate": 2.375866666666667e-06, + "loss": 1.1978040313720704, + "step": 714700 + }, + { + "epoch": 95.30666666666667, + "grad_norm": 0.9271215200424194, + "learning_rate": 2.3692e-06, + "loss": 1.1961704254150392, + "step": 714800 + }, + { + "epoch": 95.32, + "grad_norm": 0.9471455216407776, + "learning_rate": 2.3625333333333337e-06, + "loss": 1.193292694091797, + "step": 714900 + }, + { + "epoch": 95.33333333333333, + "grad_norm": 0.9028796553611755, + "learning_rate": 2.3558666666666668e-06, + "loss": 1.1993869018554688, + "step": 715000 + }, + { + "epoch": 95.34666666666666, + "grad_norm": 0.8910233378410339, + "learning_rate": 2.3492e-06, + "loss": 1.1982572174072266, + "step": 715100 + }, + { + "epoch": 95.36, + "grad_norm": 0.8883600831031799, + "learning_rate": 2.3425333333333334e-06, + "loss": 1.1972041320800781, + "step": 715200 + }, + { + "epoch": 95.37333333333333, + "grad_norm": 0.8244373202323914, + "learning_rate": 2.335866666666667e-06, + "loss": 1.1958223724365233, + "step": 715300 + }, + { + "epoch": 95.38666666666667, + "grad_norm": 0.8764129281044006, + "learning_rate": 2.3292e-06, + "loss": 1.197607421875, + "step": 715400 + }, + { + "epoch": 95.4, + "grad_norm": 0.9632822275161743, + "learning_rate": 2.3225333333333336e-06, + "loss": 1.1966116333007812, + "step": 715500 + }, + { + "epoch": 95.41333333333333, + "grad_norm": 0.8649945855140686, + "learning_rate": 2.3158666666666667e-06, + "loss": 1.2001445770263672, + "step": 715600 + }, + { + "epoch": 95.42666666666666, + "grad_norm": 0.8928907513618469, + "learning_rate": 2.3092000000000003e-06, + "loss": 1.1985771942138672, + "step": 715700 + }, + { + "epoch": 95.44, + "grad_norm": 0.8795034289360046, + "learning_rate": 2.3026e-06, + "loss": 1.1941232299804687, + "step": 715800 + }, + { + "epoch": 95.45333333333333, + "grad_norm": 0.8100056052207947, + "learning_rate": 2.2959333333333337e-06, + "loss": 1.1983812713623048, + "step": 715900 + }, + { + "epoch": 95.46666666666667, + "grad_norm": 0.8939315676689148, + "learning_rate": 2.289266666666667e-06, + "loss": 1.199446029663086, + "step": 716000 + }, + { + "epoch": 95.48, + "grad_norm": 0.8684143424034119, + "learning_rate": 2.2826e-06, + "loss": 1.1973661804199218, + "step": 716100 + }, + { + "epoch": 95.49333333333334, + "grad_norm": 0.8790379166603088, + "learning_rate": 2.2759333333333335e-06, + "loss": 1.198766098022461, + "step": 716200 + }, + { + "epoch": 95.50666666666666, + "grad_norm": 0.8545668721199036, + "learning_rate": 2.2692666666666666e-06, + "loss": 1.2022593688964844, + "step": 716300 + }, + { + "epoch": 95.52, + "grad_norm": 0.9270732402801514, + "learning_rate": 2.2626e-06, + "loss": 1.1938504028320311, + "step": 716400 + }, + { + "epoch": 95.53333333333333, + "grad_norm": 0.9058865308761597, + "learning_rate": 2.2559333333333337e-06, + "loss": 1.1984404754638671, + "step": 716500 + }, + { + "epoch": 95.54666666666667, + "grad_norm": 0.9313427805900574, + "learning_rate": 2.249266666666667e-06, + "loss": 1.1992517852783202, + "step": 716600 + }, + { + "epoch": 95.56, + "grad_norm": 0.9284090399742126, + "learning_rate": 2.2426000000000003e-06, + "loss": 1.2009918212890625, + "step": 716700 + }, + { + "epoch": 95.57333333333334, + "grad_norm": 0.893657386302948, + "learning_rate": 2.2359333333333335e-06, + "loss": 1.1964833068847656, + "step": 716800 + }, + { + "epoch": 95.58666666666667, + "grad_norm": 0.8945286273956299, + "learning_rate": 2.2292666666666666e-06, + "loss": 1.197146224975586, + "step": 716900 + }, + { + "epoch": 95.6, + "grad_norm": 0.945655345916748, + "learning_rate": 2.2226e-06, + "loss": 1.197714614868164, + "step": 717000 + }, + { + "epoch": 95.61333333333333, + "grad_norm": 0.8761715292930603, + "learning_rate": 2.2159333333333332e-06, + "loss": 1.1985298919677734, + "step": 717100 + }, + { + "epoch": 95.62666666666667, + "grad_norm": 0.9021620154380798, + "learning_rate": 2.2092666666666668e-06, + "loss": 1.1991383361816406, + "step": 717200 + }, + { + "epoch": 95.64, + "grad_norm": 0.8844672441482544, + "learning_rate": 2.2026000000000003e-06, + "loss": 1.1967192840576173, + "step": 717300 + }, + { + "epoch": 95.65333333333334, + "grad_norm": 0.8024809956550598, + "learning_rate": 2.1959333333333334e-06, + "loss": 1.1974788665771485, + "step": 717400 + }, + { + "epoch": 95.66666666666667, + "grad_norm": 0.9280022978782654, + "learning_rate": 2.189266666666667e-06, + "loss": 1.1954544830322265, + "step": 717500 + }, + { + "epoch": 95.68, + "grad_norm": 0.9242950677871704, + "learning_rate": 2.1826e-06, + "loss": 1.1988795471191407, + "step": 717600 + }, + { + "epoch": 95.69333333333333, + "grad_norm": 0.8772919178009033, + "learning_rate": 2.175933333333333e-06, + "loss": 1.1997234344482421, + "step": 717700 + }, + { + "epoch": 95.70666666666666, + "grad_norm": 0.9006758332252502, + "learning_rate": 2.169333333333333e-06, + "loss": 1.1984378814697265, + "step": 717800 + }, + { + "epoch": 95.72, + "grad_norm": 0.8565598726272583, + "learning_rate": 2.1626666666666667e-06, + "loss": 1.1955886840820313, + "step": 717900 + }, + { + "epoch": 95.73333333333333, + "grad_norm": 0.933894157409668, + "learning_rate": 2.156e-06, + "loss": 1.1962789154052735, + "step": 718000 + }, + { + "epoch": 95.74666666666667, + "grad_norm": 0.8751091957092285, + "learning_rate": 2.1493333333333333e-06, + "loss": 1.201226043701172, + "step": 718100 + }, + { + "epoch": 95.76, + "grad_norm": 0.8495886921882629, + "learning_rate": 2.142666666666667e-06, + "loss": 1.1997674560546876, + "step": 718200 + }, + { + "epoch": 95.77333333333333, + "grad_norm": 0.9047145247459412, + "learning_rate": 2.136e-06, + "loss": 1.193944854736328, + "step": 718300 + }, + { + "epoch": 95.78666666666666, + "grad_norm": 0.9060803055763245, + "learning_rate": 2.1293333333333335e-06, + "loss": 1.1976805877685548, + "step": 718400 + }, + { + "epoch": 95.8, + "grad_norm": 0.9374447464942932, + "learning_rate": 2.122666666666667e-06, + "loss": 1.1980715942382814, + "step": 718500 + }, + { + "epoch": 95.81333333333333, + "grad_norm": 0.9492117762565613, + "learning_rate": 2.116e-06, + "loss": 1.2027890014648437, + "step": 718600 + }, + { + "epoch": 95.82666666666667, + "grad_norm": 0.9291294813156128, + "learning_rate": 2.1093333333333333e-06, + "loss": 1.19962158203125, + "step": 718700 + }, + { + "epoch": 95.84, + "grad_norm": 0.8308159112930298, + "learning_rate": 2.102666666666667e-06, + "loss": 1.197718048095703, + "step": 718800 + }, + { + "epoch": 95.85333333333334, + "grad_norm": 0.8678395748138428, + "learning_rate": 2.096e-06, + "loss": 1.200029296875, + "step": 718900 + }, + { + "epoch": 95.86666666666666, + "grad_norm": 0.8894922733306885, + "learning_rate": 2.0893333333333335e-06, + "loss": 1.2026903533935547, + "step": 719000 + }, + { + "epoch": 95.88, + "grad_norm": 0.9153121113777161, + "learning_rate": 2.082666666666667e-06, + "loss": 1.204001922607422, + "step": 719100 + }, + { + "epoch": 95.89333333333333, + "grad_norm": 0.8754669427871704, + "learning_rate": 2.076e-06, + "loss": 1.197853546142578, + "step": 719200 + }, + { + "epoch": 95.90666666666667, + "grad_norm": 0.8554826974868774, + "learning_rate": 2.0693333333333337e-06, + "loss": 1.205391387939453, + "step": 719300 + }, + { + "epoch": 95.92, + "grad_norm": 0.9618128538131714, + "learning_rate": 2.0626666666666668e-06, + "loss": 1.2002410125732421, + "step": 719400 + }, + { + "epoch": 95.93333333333334, + "grad_norm": 0.9223273992538452, + "learning_rate": 2.056e-06, + "loss": 1.1999185943603516, + "step": 719500 + }, + { + "epoch": 95.94666666666667, + "grad_norm": 0.9011958241462708, + "learning_rate": 2.0493333333333334e-06, + "loss": 1.1979779815673828, + "step": 719600 + }, + { + "epoch": 95.96, + "grad_norm": 0.9180704951286316, + "learning_rate": 2.0426666666666665e-06, + "loss": 1.198479537963867, + "step": 719700 + }, + { + "epoch": 95.97333333333333, + "grad_norm": 0.9206179976463318, + "learning_rate": 2.036066666666667e-06, + "loss": 1.2030664825439452, + "step": 719800 + }, + { + "epoch": 95.98666666666666, + "grad_norm": 0.9367160797119141, + "learning_rate": 2.0294e-06, + "loss": 1.2019683837890625, + "step": 719900 + }, + { + "epoch": 96.0, + "grad_norm": 0.9119823575019836, + "learning_rate": 2.0227333333333335e-06, + "loss": 1.202654571533203, + "step": 720000 + }, + { + "epoch": 96.01333333333334, + "grad_norm": 0.9093582034111023, + "learning_rate": 2.0160666666666667e-06, + "loss": 1.1921070098876954, + "step": 720100 + }, + { + "epoch": 96.02666666666667, + "grad_norm": 0.8500725030899048, + "learning_rate": 2.0094e-06, + "loss": 1.1908522033691407, + "step": 720200 + }, + { + "epoch": 96.04, + "grad_norm": 0.9141291379928589, + "learning_rate": 2.0027333333333337e-06, + "loss": 1.1958201599121094, + "step": 720300 + }, + { + "epoch": 96.05333333333333, + "grad_norm": 0.9543992280960083, + "learning_rate": 1.996066666666667e-06, + "loss": 1.1920267486572265, + "step": 720400 + }, + { + "epoch": 96.06666666666666, + "grad_norm": 0.9262734651565552, + "learning_rate": 1.9894e-06, + "loss": 1.193255157470703, + "step": 720500 + }, + { + "epoch": 96.08, + "grad_norm": 0.8305232524871826, + "learning_rate": 1.9827333333333335e-06, + "loss": 1.1950745391845703, + "step": 720600 + }, + { + "epoch": 96.09333333333333, + "grad_norm": 0.8898489475250244, + "learning_rate": 1.9760666666666666e-06, + "loss": 1.1932999420166015, + "step": 720700 + }, + { + "epoch": 96.10666666666667, + "grad_norm": 0.8334019780158997, + "learning_rate": 1.9694e-06, + "loss": 1.1975872039794921, + "step": 720800 + }, + { + "epoch": 96.12, + "grad_norm": 0.8538830876350403, + "learning_rate": 1.9627333333333333e-06, + "loss": 1.1930878448486328, + "step": 720900 + }, + { + "epoch": 96.13333333333334, + "grad_norm": 0.940512478351593, + "learning_rate": 1.956066666666667e-06, + "loss": 1.1931523895263672, + "step": 721000 + }, + { + "epoch": 96.14666666666666, + "grad_norm": 0.9328157305717468, + "learning_rate": 1.9494000000000003e-06, + "loss": 1.1930429077148437, + "step": 721100 + }, + { + "epoch": 96.16, + "grad_norm": 0.8638653755187988, + "learning_rate": 1.9427333333333335e-06, + "loss": 1.1945172119140626, + "step": 721200 + }, + { + "epoch": 96.17333333333333, + "grad_norm": 0.9362466931343079, + "learning_rate": 1.936066666666667e-06, + "loss": 1.1952394104003907, + "step": 721300 + }, + { + "epoch": 96.18666666666667, + "grad_norm": 0.9211965203285217, + "learning_rate": 1.9294e-06, + "loss": 1.1918714141845703, + "step": 721400 + }, + { + "epoch": 96.2, + "grad_norm": 0.8353525996208191, + "learning_rate": 1.9227333333333332e-06, + "loss": 1.1955091857910156, + "step": 721500 + }, + { + "epoch": 96.21333333333334, + "grad_norm": 0.92364901304245, + "learning_rate": 1.9160666666666668e-06, + "loss": 1.196720428466797, + "step": 721600 + }, + { + "epoch": 96.22666666666667, + "grad_norm": 0.8855310082435608, + "learning_rate": 1.9094e-06, + "loss": 1.1948504638671875, + "step": 721700 + }, + { + "epoch": 96.24, + "grad_norm": 0.8908301591873169, + "learning_rate": 1.9028e-06, + "loss": 1.1984718322753907, + "step": 721800 + }, + { + "epoch": 96.25333333333333, + "grad_norm": 0.8790364861488342, + "learning_rate": 1.8961333333333333e-06, + "loss": 1.196904296875, + "step": 721900 + }, + { + "epoch": 96.26666666666667, + "grad_norm": 0.883306622505188, + "learning_rate": 1.8894666666666669e-06, + "loss": 1.1939882659912109, + "step": 722000 + }, + { + "epoch": 96.28, + "grad_norm": 0.9927467107772827, + "learning_rate": 1.8828000000000002e-06, + "loss": 1.19223388671875, + "step": 722100 + }, + { + "epoch": 96.29333333333334, + "grad_norm": 0.8814199566841125, + "learning_rate": 1.8761333333333335e-06, + "loss": 1.1944772338867187, + "step": 722200 + }, + { + "epoch": 96.30666666666667, + "grad_norm": 0.9252114295959473, + "learning_rate": 1.8694666666666667e-06, + "loss": 1.1965172576904297, + "step": 722300 + }, + { + "epoch": 96.32, + "grad_norm": 0.997600257396698, + "learning_rate": 1.8628e-06, + "loss": 1.1935216522216796, + "step": 722400 + }, + { + "epoch": 96.33333333333333, + "grad_norm": 0.9429076910018921, + "learning_rate": 1.8561333333333333e-06, + "loss": 1.1952505493164063, + "step": 722500 + }, + { + "epoch": 96.34666666666666, + "grad_norm": 0.9006048440933228, + "learning_rate": 1.8494666666666666e-06, + "loss": 1.195484848022461, + "step": 722600 + }, + { + "epoch": 96.36, + "grad_norm": 0.8496437072753906, + "learning_rate": 1.8428000000000002e-06, + "loss": 1.1942832946777344, + "step": 722700 + }, + { + "epoch": 96.37333333333333, + "grad_norm": 0.9131640791893005, + "learning_rate": 1.8361333333333335e-06, + "loss": 1.1970438385009765, + "step": 722800 + }, + { + "epoch": 96.38666666666667, + "grad_norm": 0.861127495765686, + "learning_rate": 1.8294666666666668e-06, + "loss": 1.1988032531738282, + "step": 722900 + }, + { + "epoch": 96.4, + "grad_norm": 0.8841111063957214, + "learning_rate": 1.8228000000000001e-06, + "loss": 1.1938710021972656, + "step": 723000 + }, + { + "epoch": 96.41333333333333, + "grad_norm": 0.8644812107086182, + "learning_rate": 1.8161333333333335e-06, + "loss": 1.1916226959228515, + "step": 723100 + }, + { + "epoch": 96.42666666666666, + "grad_norm": 0.9179438352584839, + "learning_rate": 1.8094666666666666e-06, + "loss": 1.1959225463867187, + "step": 723200 + }, + { + "epoch": 96.44, + "grad_norm": 0.8909555077552795, + "learning_rate": 1.8028e-06, + "loss": 1.1968844604492188, + "step": 723300 + }, + { + "epoch": 96.45333333333333, + "grad_norm": 0.8341104984283447, + "learning_rate": 1.7961333333333332e-06, + "loss": 1.1963389587402344, + "step": 723400 + }, + { + "epoch": 96.46666666666667, + "grad_norm": 0.8875642418861389, + "learning_rate": 1.7894666666666668e-06, + "loss": 1.200348129272461, + "step": 723500 + }, + { + "epoch": 96.48, + "grad_norm": 0.9483053684234619, + "learning_rate": 1.7828000000000001e-06, + "loss": 1.1985345458984376, + "step": 723600 + }, + { + "epoch": 96.49333333333334, + "grad_norm": 0.8640918731689453, + "learning_rate": 1.7761333333333334e-06, + "loss": 1.1940691375732422, + "step": 723700 + }, + { + "epoch": 96.50666666666666, + "grad_norm": 0.8642159700393677, + "learning_rate": 1.7695333333333334e-06, + "loss": 1.1963560485839844, + "step": 723800 + }, + { + "epoch": 96.52, + "grad_norm": 0.8903900384902954, + "learning_rate": 1.762866666666667e-06, + "loss": 1.199880599975586, + "step": 723900 + }, + { + "epoch": 96.53333333333333, + "grad_norm": 0.9225534200668335, + "learning_rate": 1.7562000000000002e-06, + "loss": 1.197684326171875, + "step": 724000 + }, + { + "epoch": 96.54666666666667, + "grad_norm": 0.8352228403091431, + "learning_rate": 1.7495333333333336e-06, + "loss": 1.200512924194336, + "step": 724100 + }, + { + "epoch": 96.56, + "grad_norm": 0.895626962184906, + "learning_rate": 1.7428666666666667e-06, + "loss": 1.1950564575195313, + "step": 724200 + }, + { + "epoch": 96.57333333333334, + "grad_norm": 0.8830674290657043, + "learning_rate": 1.7362e-06, + "loss": 1.1997767639160157, + "step": 724300 + }, + { + "epoch": 96.58666666666667, + "grad_norm": 0.875395655632019, + "learning_rate": 1.7295333333333333e-06, + "loss": 1.197208786010742, + "step": 724400 + }, + { + "epoch": 96.6, + "grad_norm": 0.9121081233024597, + "learning_rate": 1.7228666666666666e-06, + "loss": 1.1945203399658204, + "step": 724500 + }, + { + "epoch": 96.61333333333333, + "grad_norm": 0.9376330375671387, + "learning_rate": 1.7162000000000002e-06, + "loss": 1.1965845489501954, + "step": 724600 + }, + { + "epoch": 96.62666666666667, + "grad_norm": 0.8596921563148499, + "learning_rate": 1.7095333333333335e-06, + "loss": 1.195692138671875, + "step": 724700 + }, + { + "epoch": 96.64, + "grad_norm": 0.8527398705482483, + "learning_rate": 1.7028666666666668e-06, + "loss": 1.1965853118896483, + "step": 724800 + }, + { + "epoch": 96.65333333333334, + "grad_norm": 0.8580175042152405, + "learning_rate": 1.6962000000000002e-06, + "loss": 1.1956391143798828, + "step": 724900 + }, + { + "epoch": 96.66666666666667, + "grad_norm": 0.9003075957298279, + "learning_rate": 1.6895333333333333e-06, + "loss": 1.1976248931884765, + "step": 725000 + }, + { + "epoch": 96.68, + "grad_norm": 0.8510597348213196, + "learning_rate": 1.6828666666666666e-06, + "loss": 1.1964473724365234, + "step": 725100 + }, + { + "epoch": 96.69333333333333, + "grad_norm": 0.8973057866096497, + "learning_rate": 1.6762e-06, + "loss": 1.197496337890625, + "step": 725200 + }, + { + "epoch": 96.70666666666666, + "grad_norm": 0.8938978910446167, + "learning_rate": 1.6695333333333333e-06, + "loss": 1.195022964477539, + "step": 725300 + }, + { + "epoch": 96.72, + "grad_norm": 0.9063222408294678, + "learning_rate": 1.6628666666666668e-06, + "loss": 1.1933713531494141, + "step": 725400 + }, + { + "epoch": 96.73333333333333, + "grad_norm": 0.8786043524742126, + "learning_rate": 1.6562000000000001e-06, + "loss": 1.1964022827148437, + "step": 725500 + }, + { + "epoch": 96.74666666666667, + "grad_norm": 0.9674188494682312, + "learning_rate": 1.6495333333333335e-06, + "loss": 1.1983873748779297, + "step": 725600 + }, + { + "epoch": 96.76, + "grad_norm": 0.9302994608879089, + "learning_rate": 1.6428666666666668e-06, + "loss": 1.1975536346435547, + "step": 725700 + }, + { + "epoch": 96.77333333333333, + "grad_norm": 0.8915535807609558, + "learning_rate": 1.636266666666667e-06, + "loss": 1.1970543670654297, + "step": 725800 + }, + { + "epoch": 96.78666666666666, + "grad_norm": 0.91758793592453, + "learning_rate": 1.6296000000000002e-06, + "loss": 1.2024964141845702, + "step": 725900 + }, + { + "epoch": 96.8, + "grad_norm": 0.8457819223403931, + "learning_rate": 1.6229333333333331e-06, + "loss": 1.195786590576172, + "step": 726000 + }, + { + "epoch": 96.81333333333333, + "grad_norm": 0.9062672257423401, + "learning_rate": 1.6162666666666667e-06, + "loss": 1.1972097778320312, + "step": 726100 + }, + { + "epoch": 96.82666666666667, + "grad_norm": 0.9275849461555481, + "learning_rate": 1.6096e-06, + "loss": 1.2003240966796875, + "step": 726200 + }, + { + "epoch": 96.84, + "grad_norm": 0.9141822457313538, + "learning_rate": 1.6029333333333333e-06, + "loss": 1.1985065460205078, + "step": 726300 + }, + { + "epoch": 96.85333333333334, + "grad_norm": 0.8968507647514343, + "learning_rate": 1.5962666666666667e-06, + "loss": 1.1965088653564453, + "step": 726400 + }, + { + "epoch": 96.86666666666666, + "grad_norm": 0.913077175617218, + "learning_rate": 1.5896000000000002e-06, + "loss": 1.1945548248291016, + "step": 726500 + }, + { + "epoch": 96.88, + "grad_norm": 0.8856280446052551, + "learning_rate": 1.5829333333333335e-06, + "loss": 1.198264389038086, + "step": 726600 + }, + { + "epoch": 96.89333333333333, + "grad_norm": 0.9587183594703674, + "learning_rate": 1.5762666666666669e-06, + "loss": 1.198867950439453, + "step": 726700 + }, + { + "epoch": 96.90666666666667, + "grad_norm": 0.8962403535842896, + "learning_rate": 1.5696000000000002e-06, + "loss": 1.1941478729248047, + "step": 726800 + }, + { + "epoch": 96.92, + "grad_norm": 0.9148259162902832, + "learning_rate": 1.5629333333333333e-06, + "loss": 1.1963572692871094, + "step": 726900 + }, + { + "epoch": 96.93333333333334, + "grad_norm": 0.9416415691375732, + "learning_rate": 1.5562666666666668e-06, + "loss": 1.1955250549316405, + "step": 727000 + }, + { + "epoch": 96.94666666666667, + "grad_norm": 0.835249662399292, + "learning_rate": 1.5496e-06, + "loss": 1.1965911102294922, + "step": 727100 + }, + { + "epoch": 96.96, + "grad_norm": 0.8827676177024841, + "learning_rate": 1.5429333333333333e-06, + "loss": 1.1973089599609374, + "step": 727200 + }, + { + "epoch": 96.97333333333333, + "grad_norm": 0.8775216937065125, + "learning_rate": 1.5362666666666668e-06, + "loss": 1.1944822692871093, + "step": 727300 + }, + { + "epoch": 96.98666666666666, + "grad_norm": 0.8615829944610596, + "learning_rate": 1.5296000000000001e-06, + "loss": 1.1994013214111328, + "step": 727400 + }, + { + "epoch": 97.0, + "grad_norm": 0.9200208783149719, + "learning_rate": 1.5229333333333333e-06, + "loss": 1.1997895050048828, + "step": 727500 + }, + { + "epoch": 97.01333333333334, + "grad_norm": 0.8486922383308411, + "learning_rate": 1.5162666666666668e-06, + "loss": 1.1949724578857421, + "step": 727600 + }, + { + "epoch": 97.02666666666667, + "grad_norm": 0.8756220936775208, + "learning_rate": 1.5096000000000001e-06, + "loss": 1.1930170440673828, + "step": 727700 + }, + { + "epoch": 97.04, + "grad_norm": Infinity, + "learning_rate": 1.5029333333333335e-06, + "loss": 1.1907662200927733, + "step": 727800 + }, + { + "epoch": 97.05333333333333, + "grad_norm": 0.9102802276611328, + "learning_rate": 1.4963333333333334e-06, + "loss": 1.1966674041748047, + "step": 727900 + }, + { + "epoch": 97.06666666666666, + "grad_norm": 0.8804049491882324, + "learning_rate": 1.489666666666667e-06, + "loss": 1.1915321350097656, + "step": 728000 + }, + { + "epoch": 97.08, + "grad_norm": 0.8462570309638977, + "learning_rate": 1.483e-06, + "loss": 1.188415756225586, + "step": 728100 + }, + { + "epoch": 97.09333333333333, + "grad_norm": 0.9019154906272888, + "learning_rate": 1.4763333333333334e-06, + "loss": 1.1914682006835937, + "step": 728200 + }, + { + "epoch": 97.10666666666667, + "grad_norm": 0.9102103114128113, + "learning_rate": 1.4696666666666667e-06, + "loss": 1.1929423522949218, + "step": 728300 + }, + { + "epoch": 97.12, + "grad_norm": 0.9278746843338013, + "learning_rate": 1.4630000000000002e-06, + "loss": 1.190726318359375, + "step": 728400 + }, + { + "epoch": 97.13333333333334, + "grad_norm": 0.9312158226966858, + "learning_rate": 1.4563333333333333e-06, + "loss": 1.1920890045166015, + "step": 728500 + }, + { + "epoch": 97.14666666666666, + "grad_norm": 0.8610623478889465, + "learning_rate": 1.4496666666666667e-06, + "loss": 1.1913136291503905, + "step": 728600 + }, + { + "epoch": 97.16, + "grad_norm": 0.8517552614212036, + "learning_rate": 1.443e-06, + "loss": 1.1964224243164063, + "step": 728700 + }, + { + "epoch": 97.17333333333333, + "grad_norm": 0.9079805612564087, + "learning_rate": 1.4363333333333335e-06, + "loss": 1.1886049652099608, + "step": 728800 + }, + { + "epoch": 97.18666666666667, + "grad_norm": 0.8894618153572083, + "learning_rate": 1.4296666666666666e-06, + "loss": 1.1893565368652343, + "step": 728900 + }, + { + "epoch": 97.2, + "grad_norm": 0.927837610244751, + "learning_rate": 1.423e-06, + "loss": 1.1915690612792968, + "step": 729000 + }, + { + "epoch": 97.21333333333334, + "grad_norm": 0.9195118546485901, + "learning_rate": 1.4163333333333333e-06, + "loss": 1.192691650390625, + "step": 729100 + }, + { + "epoch": 97.22666666666667, + "grad_norm": 0.8661218285560608, + "learning_rate": 1.4096666666666668e-06, + "loss": 1.1943994903564452, + "step": 729200 + }, + { + "epoch": 97.24, + "grad_norm": 0.9145841002464294, + "learning_rate": 1.4030000000000002e-06, + "loss": 1.197445068359375, + "step": 729300 + }, + { + "epoch": 97.25333333333333, + "grad_norm": 0.8523109555244446, + "learning_rate": 1.3963333333333333e-06, + "loss": 1.194771499633789, + "step": 729400 + }, + { + "epoch": 97.26666666666667, + "grad_norm": 0.8701912760734558, + "learning_rate": 1.3896666666666668e-06, + "loss": 1.1876846313476563, + "step": 729500 + }, + { + "epoch": 97.28, + "grad_norm": 0.8822584748268127, + "learning_rate": 1.3830000000000001e-06, + "loss": 1.195957565307617, + "step": 729600 + }, + { + "epoch": 97.29333333333334, + "grad_norm": 0.8969473242759705, + "learning_rate": 1.3763333333333335e-06, + "loss": 1.1934420013427733, + "step": 729700 + }, + { + "epoch": 97.30666666666667, + "grad_norm": 0.9088907241821289, + "learning_rate": 1.3696666666666666e-06, + "loss": 1.1958892822265625, + "step": 729800 + }, + { + "epoch": 97.32, + "grad_norm": 0.7961787581443787, + "learning_rate": 1.3630666666666667e-06, + "loss": 1.189772491455078, + "step": 729900 + }, + { + "epoch": 97.33333333333333, + "grad_norm": 0.9014933705329895, + "learning_rate": 1.3564e-06, + "loss": 1.1911412811279296, + "step": 730000 + }, + { + "epoch": 97.34666666666666, + "grad_norm": 0.9077130556106567, + "learning_rate": 1.3497333333333334e-06, + "loss": 1.1925405883789062, + "step": 730100 + }, + { + "epoch": 97.36, + "grad_norm": 0.8387811779975891, + "learning_rate": 1.3430666666666667e-06, + "loss": 1.191651382446289, + "step": 730200 + }, + { + "epoch": 97.37333333333333, + "grad_norm": 0.8837115168571472, + "learning_rate": 1.3364e-06, + "loss": 1.1978406524658203, + "step": 730300 + }, + { + "epoch": 97.38666666666667, + "grad_norm": 0.891261100769043, + "learning_rate": 1.3297333333333334e-06, + "loss": 1.1935235595703124, + "step": 730400 + }, + { + "epoch": 97.4, + "grad_norm": 0.9634777903556824, + "learning_rate": 1.3230666666666667e-06, + "loss": 1.1935658264160156, + "step": 730500 + }, + { + "epoch": 97.41333333333333, + "grad_norm": 0.9264794588088989, + "learning_rate": 1.3164e-06, + "loss": 1.1933699035644532, + "step": 730600 + }, + { + "epoch": 97.42666666666666, + "grad_norm": 0.9273287653923035, + "learning_rate": 1.3097333333333335e-06, + "loss": 1.1926664733886718, + "step": 730700 + }, + { + "epoch": 97.44, + "grad_norm": 0.9044145941734314, + "learning_rate": 1.3030666666666667e-06, + "loss": 1.194606475830078, + "step": 730800 + }, + { + "epoch": 97.45333333333333, + "grad_norm": 0.916735053062439, + "learning_rate": 1.2964e-06, + "loss": 1.192816925048828, + "step": 730900 + }, + { + "epoch": 97.46666666666667, + "grad_norm": 0.9041197896003723, + "learning_rate": 1.2897333333333333e-06, + "loss": 1.1932903289794923, + "step": 731000 + }, + { + "epoch": 97.48, + "grad_norm": 0.8889577984809875, + "learning_rate": 1.2830666666666669e-06, + "loss": 1.1962411499023438, + "step": 731100 + }, + { + "epoch": 97.49333333333334, + "grad_norm": 0.910078763961792, + "learning_rate": 1.2764e-06, + "loss": 1.1956531524658203, + "step": 731200 + }, + { + "epoch": 97.50666666666666, + "grad_norm": 0.8650588393211365, + "learning_rate": 1.2697333333333333e-06, + "loss": 1.1919945526123046, + "step": 731300 + }, + { + "epoch": 97.52, + "grad_norm": 0.9000649452209473, + "learning_rate": 1.2630666666666668e-06, + "loss": 1.1926378631591796, + "step": 731400 + }, + { + "epoch": 97.53333333333333, + "grad_norm": 0.8907895088195801, + "learning_rate": 1.2564000000000002e-06, + "loss": 1.1921055603027344, + "step": 731500 + }, + { + "epoch": 97.54666666666667, + "grad_norm": 0.8809535503387451, + "learning_rate": 1.2497333333333333e-06, + "loss": 1.1962607574462891, + "step": 731600 + }, + { + "epoch": 97.56, + "grad_norm": 0.8726817965507507, + "learning_rate": 1.2430666666666666e-06, + "loss": 1.1959927368164063, + "step": 731700 + }, + { + "epoch": 97.57333333333334, + "grad_norm": 0.9167771935462952, + "learning_rate": 1.2364000000000001e-06, + "loss": 1.1933238220214843, + "step": 731800 + }, + { + "epoch": 97.58666666666667, + "grad_norm": 0.8944850564002991, + "learning_rate": 1.2298e-06, + "loss": 1.198369140625, + "step": 731900 + }, + { + "epoch": 97.6, + "grad_norm": 0.9288177490234375, + "learning_rate": 1.2231333333333334e-06, + "loss": 1.1962329864501953, + "step": 732000 + }, + { + "epoch": 97.61333333333333, + "grad_norm": 0.8759905099868774, + "learning_rate": 1.2164666666666667e-06, + "loss": 1.1970404815673827, + "step": 732100 + }, + { + "epoch": 97.62666666666667, + "grad_norm": 0.9289444088935852, + "learning_rate": 1.2098e-06, + "loss": 1.1988601684570312, + "step": 732200 + }, + { + "epoch": 97.64, + "grad_norm": 0.888252317905426, + "learning_rate": 1.2031333333333334e-06, + "loss": 1.1959870910644532, + "step": 732300 + }, + { + "epoch": 97.65333333333334, + "grad_norm": 0.9400676488876343, + "learning_rate": 1.1964666666666667e-06, + "loss": 1.1936607360839844, + "step": 732400 + }, + { + "epoch": 97.66666666666667, + "grad_norm": 0.7995263934135437, + "learning_rate": 1.1898e-06, + "loss": 1.1914346313476563, + "step": 732500 + }, + { + "epoch": 97.68, + "grad_norm": 0.911656379699707, + "learning_rate": 1.1831333333333334e-06, + "loss": 1.1957060241699218, + "step": 732600 + }, + { + "epoch": 97.69333333333333, + "grad_norm": 0.9077141880989075, + "learning_rate": 1.1764666666666667e-06, + "loss": 1.1969277191162109, + "step": 732700 + }, + { + "epoch": 97.70666666666666, + "grad_norm": 0.922042191028595, + "learning_rate": 1.1698e-06, + "loss": 1.1913483428955078, + "step": 732800 + }, + { + "epoch": 97.72, + "grad_norm": 0.8728546500205994, + "learning_rate": 1.1631333333333333e-06, + "loss": 1.192550277709961, + "step": 732900 + }, + { + "epoch": 97.73333333333333, + "grad_norm": 0.9435664415359497, + "learning_rate": 1.1564666666666667e-06, + "loss": 1.1956972503662109, + "step": 733000 + }, + { + "epoch": 97.74666666666667, + "grad_norm": 0.9456507563591003, + "learning_rate": 1.1498e-06, + "loss": 1.198812255859375, + "step": 733100 + }, + { + "epoch": 97.76, + "grad_norm": 0.9041507244110107, + "learning_rate": 1.1431333333333333e-06, + "loss": 1.1941202545166016, + "step": 733200 + }, + { + "epoch": 97.77333333333333, + "grad_norm": 0.9364042282104492, + "learning_rate": 1.1364666666666669e-06, + "loss": 1.1956196594238282, + "step": 733300 + }, + { + "epoch": 97.78666666666666, + "grad_norm": 0.901881754398346, + "learning_rate": 1.1298000000000002e-06, + "loss": 1.1942565155029297, + "step": 733400 + }, + { + "epoch": 97.8, + "grad_norm": 0.9191442728042603, + "learning_rate": 1.1231333333333333e-06, + "loss": 1.1965391540527344, + "step": 733500 + }, + { + "epoch": 97.81333333333333, + "grad_norm": 0.9554629921913147, + "learning_rate": 1.1164666666666666e-06, + "loss": 1.1935279846191407, + "step": 733600 + }, + { + "epoch": 97.82666666666667, + "grad_norm": 0.903621256351471, + "learning_rate": 1.1098000000000002e-06, + "loss": 1.1937690734863282, + "step": 733700 + }, + { + "epoch": 97.84, + "grad_norm": 0.9251970052719116, + "learning_rate": 1.1031333333333335e-06, + "loss": 1.1984178161621093, + "step": 733800 + }, + { + "epoch": 97.85333333333334, + "grad_norm": 0.9287400245666504, + "learning_rate": 1.0965333333333334e-06, + "loss": 1.196386184692383, + "step": 733900 + }, + { + "epoch": 97.86666666666666, + "grad_norm": 0.9118936061859131, + "learning_rate": 1.0898666666666667e-06, + "loss": 1.1918663787841797, + "step": 734000 + }, + { + "epoch": 97.88, + "grad_norm": 0.9294499754905701, + "learning_rate": 1.0832e-06, + "loss": 1.1964964294433593, + "step": 734100 + }, + { + "epoch": 97.89333333333333, + "grad_norm": 0.8662843704223633, + "learning_rate": 1.0765333333333334e-06, + "loss": 1.1969724273681641, + "step": 734200 + }, + { + "epoch": 97.90666666666667, + "grad_norm": 0.8762206435203552, + "learning_rate": 1.0698666666666667e-06, + "loss": 1.1970738983154297, + "step": 734300 + }, + { + "epoch": 97.92, + "grad_norm": 0.9251389503479004, + "learning_rate": 1.0632e-06, + "loss": 1.1950054168701172, + "step": 734400 + }, + { + "epoch": 97.93333333333334, + "grad_norm": 0.8627253174781799, + "learning_rate": 1.0565333333333334e-06, + "loss": 1.194439926147461, + "step": 734500 + }, + { + "epoch": 97.94666666666667, + "grad_norm": 0.9262219071388245, + "learning_rate": 1.0498666666666667e-06, + "loss": 1.1964743804931641, + "step": 734600 + }, + { + "epoch": 97.96, + "grad_norm": 0.8800917863845825, + "learning_rate": 1.0432e-06, + "loss": 1.1948735046386718, + "step": 734700 + }, + { + "epoch": 97.97333333333333, + "grad_norm": 0.9554460644721985, + "learning_rate": 1.0365333333333334e-06, + "loss": 1.1973654174804687, + "step": 734800 + }, + { + "epoch": 97.98666666666666, + "grad_norm": 0.8912851214408875, + "learning_rate": 1.0298666666666667e-06, + "loss": 1.1976622009277345, + "step": 734900 + }, + { + "epoch": 98.0, + "grad_norm": 0.9327476024627686, + "learning_rate": 1.0232e-06, + "loss": 1.1984359741210937, + "step": 735000 + }, + { + "epoch": 98.01333333333334, + "grad_norm": 0.898631751537323, + "learning_rate": 1.0165333333333333e-06, + "loss": 1.191797409057617, + "step": 735100 + }, + { + "epoch": 98.02666666666667, + "grad_norm": 0.8860185146331787, + "learning_rate": 1.0098666666666669e-06, + "loss": 1.19053955078125, + "step": 735200 + }, + { + "epoch": 98.04, + "grad_norm": 0.8919152617454529, + "learning_rate": 1.0032e-06, + "loss": 1.1930453491210937, + "step": 735300 + }, + { + "epoch": 98.05333333333333, + "grad_norm": 0.9268627762794495, + "learning_rate": 9.965333333333333e-07, + "loss": 1.1904096984863282, + "step": 735400 + }, + { + "epoch": 98.06666666666666, + "grad_norm": 0.9463122487068176, + "learning_rate": 9.898666666666666e-07, + "loss": 1.1924416351318359, + "step": 735500 + }, + { + "epoch": 98.08, + "grad_norm": 0.9249300956726074, + "learning_rate": 9.832000000000002e-07, + "loss": 1.190969467163086, + "step": 735600 + }, + { + "epoch": 98.09333333333333, + "grad_norm": 0.9573506116867065, + "learning_rate": 9.765333333333335e-07, + "loss": 1.1920275115966796, + "step": 735700 + }, + { + "epoch": 98.10666666666667, + "grad_norm": 0.8895424604415894, + "learning_rate": 9.698666666666666e-07, + "loss": 1.1897706604003906, + "step": 735800 + }, + { + "epoch": 98.12, + "grad_norm": 0.8485841155052185, + "learning_rate": 9.632666666666668e-07, + "loss": 1.1928855895996093, + "step": 735900 + }, + { + "epoch": 98.13333333333334, + "grad_norm": 0.9169514775276184, + "learning_rate": 9.566e-07, + "loss": 1.1923430633544922, + "step": 736000 + }, + { + "epoch": 98.14666666666666, + "grad_norm": 0.9484817981719971, + "learning_rate": 9.499333333333334e-07, + "loss": 1.1894152069091797, + "step": 736100 + }, + { + "epoch": 98.16, + "grad_norm": 0.8725702166557312, + "learning_rate": 9.432666666666667e-07, + "loss": 1.1909805297851563, + "step": 736200 + }, + { + "epoch": 98.17333333333333, + "grad_norm": 0.9127253293991089, + "learning_rate": 9.366e-07, + "loss": 1.193762969970703, + "step": 736300 + }, + { + "epoch": 98.18666666666667, + "grad_norm": 0.8876358270645142, + "learning_rate": 9.299333333333334e-07, + "loss": 1.1921793365478515, + "step": 736400 + }, + { + "epoch": 98.2, + "grad_norm": 0.9053890109062195, + "learning_rate": 9.232666666666667e-07, + "loss": 1.1964334106445313, + "step": 736500 + }, + { + "epoch": 98.21333333333334, + "grad_norm": 0.9463318586349487, + "learning_rate": 9.166000000000001e-07, + "loss": 1.188143539428711, + "step": 736600 + }, + { + "epoch": 98.22666666666667, + "grad_norm": 0.8585167527198792, + "learning_rate": 9.099333333333333e-07, + "loss": 1.1954288482666016, + "step": 736700 + }, + { + "epoch": 98.24, + "grad_norm": 0.9063857197761536, + "learning_rate": 9.032666666666667e-07, + "loss": 1.1938237762451172, + "step": 736800 + }, + { + "epoch": 98.25333333333333, + "grad_norm": 0.848952054977417, + "learning_rate": 8.966e-07, + "loss": 1.1889173889160156, + "step": 736900 + }, + { + "epoch": 98.26666666666667, + "grad_norm": 0.9032663106918335, + "learning_rate": 8.899333333333335e-07, + "loss": 1.1894258880615234, + "step": 737000 + }, + { + "epoch": 98.28, + "grad_norm": 0.9298050403594971, + "learning_rate": 8.832666666666668e-07, + "loss": 1.1893203735351563, + "step": 737100 + }, + { + "epoch": 98.29333333333334, + "grad_norm": 0.8868449926376343, + "learning_rate": 8.766e-07, + "loss": 1.1898612976074219, + "step": 737200 + }, + { + "epoch": 98.30666666666667, + "grad_norm": 0.8657017350196838, + "learning_rate": 8.699333333333333e-07, + "loss": 1.1897797393798828, + "step": 737300 + }, + { + "epoch": 98.32, + "grad_norm": 0.8774369359016418, + "learning_rate": 8.632666666666668e-07, + "loss": 1.1933421325683593, + "step": 737400 + }, + { + "epoch": 98.33333333333333, + "grad_norm": 0.9083582758903503, + "learning_rate": 8.566000000000001e-07, + "loss": 1.1912253570556641, + "step": 737500 + }, + { + "epoch": 98.34666666666666, + "grad_norm": 0.8991101980209351, + "learning_rate": 8.499333333333333e-07, + "loss": 1.193739547729492, + "step": 737600 + }, + { + "epoch": 98.36, + "grad_norm": 0.9866260886192322, + "learning_rate": 8.432666666666666e-07, + "loss": 1.1906326293945313, + "step": 737700 + }, + { + "epoch": 98.37333333333333, + "grad_norm": 0.9080073833465576, + "learning_rate": 8.366000000000001e-07, + "loss": 1.192478561401367, + "step": 737800 + }, + { + "epoch": 98.38666666666667, + "grad_norm": 0.8622914552688599, + "learning_rate": 8.300000000000001e-07, + "loss": 1.1917598724365235, + "step": 737900 + }, + { + "epoch": 98.4, + "grad_norm": 0.9066656231880188, + "learning_rate": 8.233333333333334e-07, + "loss": 1.1930951690673828, + "step": 738000 + }, + { + "epoch": 98.41333333333333, + "grad_norm": 0.8253511190414429, + "learning_rate": 8.166666666666666e-07, + "loss": 1.1881201934814454, + "step": 738100 + }, + { + "epoch": 98.42666666666666, + "grad_norm": 0.8869616389274597, + "learning_rate": 8.1e-07, + "loss": 1.1893899536132813, + "step": 738200 + }, + { + "epoch": 98.44, + "grad_norm": 0.8886020183563232, + "learning_rate": 8.033333333333334e-07, + "loss": 1.1935739135742187, + "step": 738300 + }, + { + "epoch": 98.45333333333333, + "grad_norm": 0.9000334143638611, + "learning_rate": 7.966666666666667e-07, + "loss": 1.189201889038086, + "step": 738400 + }, + { + "epoch": 98.46666666666667, + "grad_norm": 0.8531255125999451, + "learning_rate": 7.900000000000002e-07, + "loss": 1.191848373413086, + "step": 738500 + }, + { + "epoch": 98.48, + "grad_norm": 0.9446560144424438, + "learning_rate": 7.833333333333333e-07, + "loss": 1.1940558624267579, + "step": 738600 + }, + { + "epoch": 98.49333333333334, + "grad_norm": 0.8816220760345459, + "learning_rate": 7.766666666666667e-07, + "loss": 1.1970796966552735, + "step": 738700 + }, + { + "epoch": 98.50666666666666, + "grad_norm": 0.8878071308135986, + "learning_rate": 7.7e-07, + "loss": 1.191910171508789, + "step": 738800 + }, + { + "epoch": 98.52, + "grad_norm": 0.9086691737174988, + "learning_rate": 7.633333333333334e-07, + "loss": 1.1919632720947266, + "step": 738900 + }, + { + "epoch": 98.53333333333333, + "grad_norm": 0.9125364422798157, + "learning_rate": 7.566666666666667e-07, + "loss": 1.1903729248046875, + "step": 739000 + }, + { + "epoch": 98.54666666666667, + "grad_norm": 0.9102436900138855, + "learning_rate": 7.5e-07, + "loss": 1.1952772521972657, + "step": 739100 + }, + { + "epoch": 98.56, + "grad_norm": 0.8782820105552673, + "learning_rate": 7.433333333333333e-07, + "loss": 1.1924925994873048, + "step": 739200 + }, + { + "epoch": 98.57333333333334, + "grad_norm": 0.9105757474899292, + "learning_rate": 7.366666666666667e-07, + "loss": 1.1958279418945312, + "step": 739300 + }, + { + "epoch": 98.58666666666667, + "grad_norm": 0.8756064176559448, + "learning_rate": 7.3e-07, + "loss": 1.1938359069824218, + "step": 739400 + }, + { + "epoch": 98.6, + "grad_norm": 0.8714690208435059, + "learning_rate": 7.233333333333333e-07, + "loss": 1.1933795166015626, + "step": 739500 + }, + { + "epoch": 98.61333333333333, + "grad_norm": 0.846801221370697, + "learning_rate": 7.166666666666667e-07, + "loss": 1.1944500732421874, + "step": 739600 + }, + { + "epoch": 98.62666666666667, + "grad_norm": 0.8956632018089294, + "learning_rate": 7.100000000000001e-07, + "loss": 1.1958086395263672, + "step": 739700 + }, + { + "epoch": 98.64, + "grad_norm": 0.8939581513404846, + "learning_rate": 7.033333333333334e-07, + "loss": 1.1935520935058594, + "step": 739800 + }, + { + "epoch": 98.65333333333334, + "grad_norm": 0.8881719708442688, + "learning_rate": 6.967333333333333e-07, + "loss": 1.1934709930419922, + "step": 739900 + }, + { + "epoch": 98.66666666666667, + "grad_norm": 0.9042186141014099, + "learning_rate": 6.900666666666668e-07, + "loss": 1.1922380828857422, + "step": 740000 + }, + { + "epoch": 98.68, + "grad_norm": 0.8477785587310791, + "learning_rate": 6.834e-07, + "loss": 1.1890042877197267, + "step": 740100 + }, + { + "epoch": 98.69333333333333, + "grad_norm": 0.8813819289207458, + "learning_rate": 6.767333333333334e-07, + "loss": 1.1922322082519532, + "step": 740200 + }, + { + "epoch": 98.70666666666666, + "grad_norm": 0.9520646333694458, + "learning_rate": 6.700666666666666e-07, + "loss": 1.1949353790283204, + "step": 740300 + }, + { + "epoch": 98.72, + "grad_norm": 0.8981533050537109, + "learning_rate": 6.634000000000001e-07, + "loss": 1.1972361755371095, + "step": 740400 + }, + { + "epoch": 98.73333333333333, + "grad_norm": 0.8700048327445984, + "learning_rate": 6.567333333333333e-07, + "loss": 1.1961135864257812, + "step": 740500 + }, + { + "epoch": 98.74666666666667, + "grad_norm": 0.9323988556861877, + "learning_rate": 6.500666666666667e-07, + "loss": 1.1912552642822265, + "step": 740600 + }, + { + "epoch": 98.76, + "grad_norm": 0.8961540460586548, + "learning_rate": 6.434e-07, + "loss": 1.1949165344238282, + "step": 740700 + }, + { + "epoch": 98.77333333333333, + "grad_norm": 0.8768694996833801, + "learning_rate": 6.367333333333334e-07, + "loss": 1.193530044555664, + "step": 740800 + }, + { + "epoch": 98.78666666666666, + "grad_norm": 0.9372314810752869, + "learning_rate": 6.300666666666667e-07, + "loss": 1.1909781646728517, + "step": 740900 + }, + { + "epoch": 98.8, + "grad_norm": 0.9452794194221497, + "learning_rate": 6.234e-07, + "loss": 1.1920659637451172, + "step": 741000 + }, + { + "epoch": 98.81333333333333, + "grad_norm": 0.8834349513053894, + "learning_rate": 6.167333333333334e-07, + "loss": 1.194448471069336, + "step": 741100 + }, + { + "epoch": 98.82666666666667, + "grad_norm": 0.8450713157653809, + "learning_rate": 6.100666666666667e-07, + "loss": 1.1934151458740234, + "step": 741200 + }, + { + "epoch": 98.84, + "grad_norm": 0.897294819355011, + "learning_rate": 6.034e-07, + "loss": 1.1937016296386718, + "step": 741300 + }, + { + "epoch": 98.85333333333334, + "grad_norm": 0.9136027693748474, + "learning_rate": 5.967333333333333e-07, + "loss": 1.194300994873047, + "step": 741400 + }, + { + "epoch": 98.86666666666666, + "grad_norm": 0.8889844417572021, + "learning_rate": 5.900666666666667e-07, + "loss": 1.1939845275878906, + "step": 741500 + }, + { + "epoch": 98.88, + "grad_norm": 0.8959463238716125, + "learning_rate": 5.834e-07, + "loss": 1.1932821655273438, + "step": 741600 + }, + { + "epoch": 98.89333333333333, + "grad_norm": 0.9319109320640564, + "learning_rate": 5.767333333333334e-07, + "loss": 1.1942572784423828, + "step": 741700 + }, + { + "epoch": 98.90666666666667, + "grad_norm": 0.948413074016571, + "learning_rate": 5.700666666666666e-07, + "loss": 1.1931224822998048, + "step": 741800 + }, + { + "epoch": 98.92, + "grad_norm": 0.943126380443573, + "learning_rate": 5.634666666666667e-07, + "loss": 1.1902999877929688, + "step": 741900 + }, + { + "epoch": 98.93333333333334, + "grad_norm": 0.9261944890022278, + "learning_rate": 5.568e-07, + "loss": 1.1924332427978515, + "step": 742000 + }, + { + "epoch": 98.94666666666667, + "grad_norm": 0.8977665901184082, + "learning_rate": 5.501333333333333e-07, + "loss": 1.1910804748535155, + "step": 742100 + }, + { + "epoch": 98.96, + "grad_norm": 0.9129285216331482, + "learning_rate": 5.434666666666667e-07, + "loss": 1.1923501586914063, + "step": 742200 + }, + { + "epoch": 98.97333333333333, + "grad_norm": 0.9128681421279907, + "learning_rate": 5.368000000000001e-07, + "loss": 1.1889964294433595, + "step": 742300 + }, + { + "epoch": 98.98666666666666, + "grad_norm": 0.9412058591842651, + "learning_rate": 5.301333333333333e-07, + "loss": 1.192625732421875, + "step": 742400 + }, + { + "epoch": 99.0, + "grad_norm": 0.8482484221458435, + "learning_rate": 5.234666666666667e-07, + "loss": 1.1931838989257812, + "step": 742500 + }, + { + "epoch": 99.01333333333334, + "grad_norm": 0.9009374976158142, + "learning_rate": 5.168e-07, + "loss": 1.1919266510009765, + "step": 742600 + }, + { + "epoch": 99.02666666666667, + "grad_norm": 0.9100991487503052, + "learning_rate": 5.101333333333334e-07, + "loss": 1.1920348358154298, + "step": 742700 + }, + { + "epoch": 99.04, + "grad_norm": 0.896523118019104, + "learning_rate": 5.034666666666666e-07, + "loss": 1.1886348724365234, + "step": 742800 + }, + { + "epoch": 99.05333333333333, + "grad_norm": 0.8603360652923584, + "learning_rate": 4.968000000000001e-07, + "loss": 1.1856871032714844, + "step": 742900 + }, + { + "epoch": 99.06666666666666, + "grad_norm": 0.9280701279640198, + "learning_rate": 4.901333333333334e-07, + "loss": 1.188511962890625, + "step": 743000 + }, + { + "epoch": 99.08, + "grad_norm": 0.9534225463867188, + "learning_rate": 4.834666666666667e-07, + "loss": 1.1933180236816405, + "step": 743100 + }, + { + "epoch": 99.09333333333333, + "grad_norm": 0.8999395370483398, + "learning_rate": 4.768e-07, + "loss": 1.189303436279297, + "step": 743200 + }, + { + "epoch": 99.10666666666667, + "grad_norm": 0.8953112363815308, + "learning_rate": 4.7013333333333336e-07, + "loss": 1.18920166015625, + "step": 743300 + }, + { + "epoch": 99.12, + "grad_norm": 0.8740084767341614, + "learning_rate": 4.6346666666666663e-07, + "loss": 1.1907463073730469, + "step": 743400 + }, + { + "epoch": 99.13333333333334, + "grad_norm": 0.8928273320198059, + "learning_rate": 4.568e-07, + "loss": 1.1911299133300781, + "step": 743500 + }, + { + "epoch": 99.14666666666666, + "grad_norm": 0.8718655705451965, + "learning_rate": 4.501333333333334e-07, + "loss": 1.1908772277832032, + "step": 743600 + }, + { + "epoch": 99.16, + "grad_norm": 0.9151206612586975, + "learning_rate": 4.4346666666666667e-07, + "loss": 1.1899483489990235, + "step": 743700 + }, + { + "epoch": 99.17333333333333, + "grad_norm": 0.891651451587677, + "learning_rate": 4.3680000000000005e-07, + "loss": 1.19437744140625, + "step": 743800 + }, + { + "epoch": 99.18666666666667, + "grad_norm": 0.8451858758926392, + "learning_rate": 4.3020000000000003e-07, + "loss": 1.1926042175292968, + "step": 743900 + }, + { + "epoch": 99.2, + "grad_norm": 0.8772236108779907, + "learning_rate": 4.2353333333333335e-07, + "loss": 1.1880721282958984, + "step": 744000 + }, + { + "epoch": 99.21333333333334, + "grad_norm": 0.857770562171936, + "learning_rate": 4.1686666666666673e-07, + "loss": 1.1957527923583984, + "step": 744100 + }, + { + "epoch": 99.22666666666667, + "grad_norm": 0.9516028165817261, + "learning_rate": 4.102e-07, + "loss": 1.1945584869384767, + "step": 744200 + }, + { + "epoch": 99.24, + "grad_norm": 0.843956708908081, + "learning_rate": 4.035333333333334e-07, + "loss": 1.1935086059570312, + "step": 744300 + }, + { + "epoch": 99.25333333333333, + "grad_norm": 0.8973932862281799, + "learning_rate": 3.9686666666666666e-07, + "loss": 1.1924853515625, + "step": 744400 + }, + { + "epoch": 99.26666666666667, + "grad_norm": 0.8814348578453064, + "learning_rate": 3.9020000000000004e-07, + "loss": 1.1938815307617188, + "step": 744500 + }, + { + "epoch": 99.28, + "grad_norm": 0.9305223226547241, + "learning_rate": 3.8353333333333337e-07, + "loss": 1.1920265197753905, + "step": 744600 + }, + { + "epoch": 99.29333333333334, + "grad_norm": 0.8577662706375122, + "learning_rate": 3.768666666666667e-07, + "loss": 1.1892983245849609, + "step": 744700 + }, + { + "epoch": 99.30666666666667, + "grad_norm": 0.9148098230361938, + "learning_rate": 3.702e-07, + "loss": 1.193815689086914, + "step": 744800 + }, + { + "epoch": 99.32, + "grad_norm": 0.8657062649726868, + "learning_rate": 3.6353333333333335e-07, + "loss": 1.1912665557861328, + "step": 744900 + }, + { + "epoch": 99.33333333333333, + "grad_norm": 0.9293052554130554, + "learning_rate": 3.5686666666666667e-07, + "loss": 1.19271728515625, + "step": 745000 + }, + { + "epoch": 99.34666666666666, + "grad_norm": 0.9440531134605408, + "learning_rate": 3.502e-07, + "loss": 1.1907530975341798, + "step": 745100 + }, + { + "epoch": 99.36, + "grad_norm": 0.8987706303596497, + "learning_rate": 3.435333333333333e-07, + "loss": 1.1910220336914064, + "step": 745200 + }, + { + "epoch": 99.37333333333333, + "grad_norm": 0.9358866214752197, + "learning_rate": 3.3686666666666665e-07, + "loss": 1.194500732421875, + "step": 745300 + }, + { + "epoch": 99.38666666666667, + "grad_norm": 0.8812012672424316, + "learning_rate": 3.302e-07, + "loss": 1.1937469482421874, + "step": 745400 + }, + { + "epoch": 99.4, + "grad_norm": 0.9004390239715576, + "learning_rate": 3.235333333333333e-07, + "loss": 1.1931354522705078, + "step": 745500 + }, + { + "epoch": 99.41333333333333, + "grad_norm": 0.870255708694458, + "learning_rate": 3.168666666666667e-07, + "loss": 1.1928106689453124, + "step": 745600 + }, + { + "epoch": 99.42666666666666, + "grad_norm": 0.8272011280059814, + "learning_rate": 3.102e-07, + "loss": 1.1933961486816407, + "step": 745700 + }, + { + "epoch": 99.44, + "grad_norm": 0.904954731464386, + "learning_rate": 3.0353333333333334e-07, + "loss": 1.1930033874511718, + "step": 745800 + }, + { + "epoch": 99.45333333333333, + "grad_norm": 0.8282216191291809, + "learning_rate": 2.9693333333333337e-07, + "loss": 1.1900058746337892, + "step": 745900 + }, + { + "epoch": 99.46666666666667, + "grad_norm": 0.9468961954116821, + "learning_rate": 2.902666666666667e-07, + "loss": 1.1919841003417968, + "step": 746000 + }, + { + "epoch": 99.48, + "grad_norm": 0.9418879151344299, + "learning_rate": 2.836e-07, + "loss": 1.1886141204833984, + "step": 746100 + }, + { + "epoch": 99.49333333333334, + "grad_norm": 0.8836652636528015, + "learning_rate": 2.7693333333333335e-07, + "loss": 1.1884160614013672, + "step": 746200 + }, + { + "epoch": 99.50666666666666, + "grad_norm": 0.9527371525764465, + "learning_rate": 2.702666666666667e-07, + "loss": 1.1915505981445313, + "step": 746300 + }, + { + "epoch": 99.52, + "grad_norm": 0.8506571054458618, + "learning_rate": 2.636e-07, + "loss": 1.1904411315917969, + "step": 746400 + }, + { + "epoch": 99.53333333333333, + "grad_norm": 0.8335494995117188, + "learning_rate": 2.5693333333333333e-07, + "loss": 1.1901004028320312, + "step": 746500 + }, + { + "epoch": 99.54666666666667, + "grad_norm": 0.9234083890914917, + "learning_rate": 2.5026666666666666e-07, + "loss": 1.1895111846923827, + "step": 746600 + }, + { + "epoch": 99.56, + "grad_norm": 0.9194679260253906, + "learning_rate": 2.436e-07, + "loss": 1.1904415130615233, + "step": 746700 + }, + { + "epoch": 99.57333333333334, + "grad_norm": 0.9224709868431091, + "learning_rate": 2.3693333333333336e-07, + "loss": 1.1882210540771485, + "step": 746800 + }, + { + "epoch": 99.58666666666667, + "grad_norm": 0.9308574795722961, + "learning_rate": 2.302666666666667e-07, + "loss": 1.1944318389892579, + "step": 746900 + }, + { + "epoch": 99.6, + "grad_norm": 0.8662922382354736, + "learning_rate": 2.2360000000000002e-07, + "loss": 1.1902082824707032, + "step": 747000 + }, + { + "epoch": 99.61333333333333, + "grad_norm": 0.9251387715339661, + "learning_rate": 2.1693333333333334e-07, + "loss": 1.1896009826660157, + "step": 747100 + }, + { + "epoch": 99.62666666666667, + "grad_norm": 0.8867355585098267, + "learning_rate": 2.102666666666667e-07, + "loss": 1.1914397430419923, + "step": 747200 + }, + { + "epoch": 99.64, + "grad_norm": 0.8558920621871948, + "learning_rate": 2.0360000000000002e-07, + "loss": 1.193257827758789, + "step": 747300 + }, + { + "epoch": 99.65333333333334, + "grad_norm": 0.8549710512161255, + "learning_rate": 1.9693333333333335e-07, + "loss": 1.1871185302734375, + "step": 747400 + }, + { + "epoch": 99.66666666666667, + "grad_norm": 0.9454492330551147, + "learning_rate": 1.9026666666666668e-07, + "loss": 1.1909255218505859, + "step": 747500 + }, + { + "epoch": 99.68, + "grad_norm": 0.8846890330314636, + "learning_rate": 1.836e-07, + "loss": 1.191995849609375, + "step": 747600 + }, + { + "epoch": 99.69333333333333, + "grad_norm": 0.8920761942863464, + "learning_rate": 1.7693333333333333e-07, + "loss": 1.1904275512695313, + "step": 747700 + }, + { + "epoch": 99.70666666666666, + "grad_norm": 0.9085679054260254, + "learning_rate": 1.7026666666666666e-07, + "loss": 1.1856131744384766, + "step": 747800 + }, + { + "epoch": 99.72, + "grad_norm": 0.8654316663742065, + "learning_rate": 1.636666666666667e-07, + "loss": 1.1924869537353515, + "step": 747900 + }, + { + "epoch": 99.73333333333333, + "grad_norm": 0.9672116041183472, + "learning_rate": 1.5700000000000002e-07, + "loss": 1.1914896392822265, + "step": 748000 + }, + { + "epoch": 99.74666666666667, + "grad_norm": 0.8933631181716919, + "learning_rate": 1.5033333333333334e-07, + "loss": 1.1880557250976562, + "step": 748100 + }, + { + "epoch": 99.76, + "grad_norm": 0.8144270777702332, + "learning_rate": 1.4366666666666667e-07, + "loss": 1.1939049530029298, + "step": 748200 + }, + { + "epoch": 99.77333333333333, + "grad_norm": 0.942760169506073, + "learning_rate": 1.37e-07, + "loss": 1.1934993743896485, + "step": 748300 + }, + { + "epoch": 99.78666666666666, + "grad_norm": 0.9373781085014343, + "learning_rate": 1.3033333333333335e-07, + "loss": 1.1954252624511719, + "step": 748400 + }, + { + "epoch": 99.8, + "grad_norm": 0.852530837059021, + "learning_rate": 1.2366666666666668e-07, + "loss": 1.1905007934570313, + "step": 748500 + }, + { + "epoch": 99.81333333333333, + "grad_norm": 0.9099419116973877, + "learning_rate": 1.1700000000000002e-07, + "loss": 1.1874067687988281, + "step": 748600 + }, + { + "epoch": 99.82666666666667, + "grad_norm": 0.9150423407554626, + "learning_rate": 1.1033333333333334e-07, + "loss": 1.1895872497558593, + "step": 748700 + }, + { + "epoch": 99.84, + "grad_norm": 0.9039080142974854, + "learning_rate": 1.0366666666666667e-07, + "loss": 1.1886183166503905, + "step": 748800 + }, + { + "epoch": 99.85333333333334, + "grad_norm": 0.8735392689704895, + "learning_rate": 9.700000000000001e-08, + "loss": 1.1912483978271484, + "step": 748900 + }, + { + "epoch": 99.86666666666666, + "grad_norm": 0.9005591869354248, + "learning_rate": 9.033333333333333e-08, + "loss": 1.1915541076660157, + "step": 749000 + }, + { + "epoch": 99.88, + "grad_norm": 0.914032518863678, + "learning_rate": 8.366666666666667e-08, + "loss": 1.194538803100586, + "step": 749100 + }, + { + "epoch": 99.89333333333333, + "grad_norm": 0.9344823360443115, + "learning_rate": 7.7e-08, + "loss": 1.1954287719726562, + "step": 749200 + }, + { + "epoch": 99.90666666666667, + "grad_norm": 0.9338550567626953, + "learning_rate": 7.033333333333334e-08, + "loss": 1.188226318359375, + "step": 749300 + }, + { + "epoch": 99.92, + "grad_norm": 0.8841633796691895, + "learning_rate": 6.366666666666667e-08, + "loss": 1.1888745880126954, + "step": 749400 + }, + { + "epoch": 99.93333333333334, + "grad_norm": 0.9246593117713928, + "learning_rate": 5.7e-08, + "loss": 1.1918194580078125, + "step": 749500 + }, + { + "epoch": 99.94666666666667, + "grad_norm": 0.8690961003303528, + "learning_rate": 5.033333333333333e-08, + "loss": 1.1911461639404297, + "step": 749600 + }, + { + "epoch": 99.96, + "grad_norm": 0.8422365188598633, + "learning_rate": 4.3666666666666674e-08, + "loss": 1.1900325012207031, + "step": 749700 + }, + { + "epoch": 99.97333333333333, + "grad_norm": 0.8521731495857239, + "learning_rate": 3.7e-08, + "loss": 1.1885493469238282, + "step": 749800 + } + ], + "logging_steps": 100, + "max_steps": 750000, + "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": 2.020428130811904e+17, + "train_batch_size": 8, + "trial_name": null, + "trial_params": null +} diff --git a/timecost/c14/realtabformer/rtf-c14-20260501_010151/rtf_checkpoints/checkpoint-749800/training_args.bin b/timecost/c14/realtabformer/rtf-c14-20260501_010151/rtf_checkpoints/checkpoint-749800/training_args.bin new file mode 100644 index 0000000000000000000000000000000000000000..34d68dc0e0fe1c1f12a2e581dd1b166aa7178a9e --- /dev/null +++ b/timecost/c14/realtabformer/rtf-c14-20260501_010151/rtf_checkpoints/checkpoint-749800/training_args.bin @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:9e2cd88337d1d846c6918d2b3b63fa3e5c93f12fefc082497590da854a564607 +size 5201 diff --git a/timecost/c14/realtabformer/rtf-c14-20260501_010151/rtf_checkpoints/checkpoint-749900/config.json b/timecost/c14/realtabformer/rtf-c14-20260501_010151/rtf_checkpoints/checkpoint-749900/config.json new file mode 100644 index 0000000000000000000000000000000000000000..79a0184a09b7bca7a3c208529833166f08ca48c0 --- /dev/null +++ b/timecost/c14/realtabformer/rtf-c14-20260501_010151/rtf_checkpoints/checkpoint-749900/config.json @@ -0,0 +1,34 @@ +{ + "activation_function": "gelu_new", + "add_cross_attention": false, + "architectures": [ + "GPT2LMHeadModel" + ], + "attn_pdrop": 0.1, + "bos_token_id": 5, + "dtype": "float32", + "embd_pdrop": 0.1, + "eos_token_id": 6, + "initializer_range": 0.02, + "layer_norm_epsilon": 1e-05, + "model_type": "gpt2", + "n_embd": 768, + "n_head": 12, + "n_inner": null, + "n_layer": 6, + "n_positions": 1024, + "pad_token_id": null, + "reorder_and_upcast_attn": false, + "resid_pdrop": 0.1, + "scale_attn_by_inverse_layer_idx": false, + "scale_attn_weights": true, + "summary_activation": null, + "summary_first_dropout": 0.1, + "summary_proj_to_labels": true, + "summary_type": "cls_index", + "summary_use_proj": true, + "tie_word_embeddings": true, + "transformers_version": "5.5.3", + "use_cache": false, + "vocab_size": 16472 +} diff --git a/timecost/c14/realtabformer/rtf-c14-20260501_010151/rtf_checkpoints/checkpoint-749900/generation_config.json b/timecost/c14/realtabformer/rtf-c14-20260501_010151/rtf_checkpoints/checkpoint-749900/generation_config.json new file mode 100644 index 0000000000000000000000000000000000000000..ffe89567780e75b5c22eade9be971483b9618f39 --- /dev/null +++ b/timecost/c14/realtabformer/rtf-c14-20260501_010151/rtf_checkpoints/checkpoint-749900/generation_config.json @@ -0,0 +1,9 @@ +{ + "_from_model_config": true, + "bos_token_id": 5, + "eos_token_id": 6, + "output_attentions": false, + "output_hidden_states": false, + "transformers_version": "5.5.3", + "use_cache": true +} diff --git a/timecost/c14/realtabformer/rtf-c14-20260501_010151/rtf_checkpoints/checkpoint-749900/model.safetensors b/timecost/c14/realtabformer/rtf-c14-20260501_010151/rtf_checkpoints/checkpoint-749900/model.safetensors new file mode 100644 index 0000000000000000000000000000000000000000..41ed7fb2536e535dc8c824f2c92443a487c382d5 --- /dev/null +++ b/timecost/c14/realtabformer/rtf-c14-20260501_010151/rtf_checkpoints/checkpoint-749900/model.safetensors @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:cea416894af1c62da96b82d3d4ea3038f6262129d03c839719db186313622193 +size 223870408 diff --git a/timecost/c14/realtabformer/rtf-c14-20260501_010151/rtf_checkpoints/checkpoint-749900/optimizer.pt b/timecost/c14/realtabformer/rtf-c14-20260501_010151/rtf_checkpoints/checkpoint-749900/optimizer.pt new file mode 100644 index 0000000000000000000000000000000000000000..80305d4edcc96903367f50fcc125b57c84e812bf --- /dev/null +++ b/timecost/c14/realtabformer/rtf-c14-20260501_010151/rtf_checkpoints/checkpoint-749900/optimizer.pt @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:7075cc3f858ff30318c26bf2967d174dd092f0a1cb2edb192a187da5e165a19d +size 447789899 diff --git a/timecost/c14/realtabformer/rtf-c14-20260501_010151/rtf_checkpoints/checkpoint-749900/rng_state.pth b/timecost/c14/realtabformer/rtf-c14-20260501_010151/rtf_checkpoints/checkpoint-749900/rng_state.pth new file mode 100644 index 0000000000000000000000000000000000000000..df9ad5377cca4e1e9e89b127d8e7d031a396ebc1 --- /dev/null +++ b/timecost/c14/realtabformer/rtf-c14-20260501_010151/rtf_checkpoints/checkpoint-749900/rng_state.pth @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:c7f47fdb96cdff3ad01953e3e0fc333689c2b11844619f13a7e3c306c611b0d4 +size 14645 diff --git a/timecost/c14/realtabformer/rtf-c14-20260501_010151/rtf_checkpoints/checkpoint-749900/scaler.pt b/timecost/c14/realtabformer/rtf-c14-20260501_010151/rtf_checkpoints/checkpoint-749900/scaler.pt new file mode 100644 index 0000000000000000000000000000000000000000..e9a7c0c3a38a78e8213a0a3d0ea6a6d1c36608b2 --- /dev/null +++ b/timecost/c14/realtabformer/rtf-c14-20260501_010151/rtf_checkpoints/checkpoint-749900/scaler.pt @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:0b74198e9edcb13f7341e1151f11b1bcead89b15dce79e43eccaeb130e4ebec9 +size 1383 diff --git a/timecost/c14/realtabformer/rtf-c14-20260501_010151/rtf_checkpoints/checkpoint-749900/scheduler.pt b/timecost/c14/realtabformer/rtf-c14-20260501_010151/rtf_checkpoints/checkpoint-749900/scheduler.pt new file mode 100644 index 0000000000000000000000000000000000000000..57a443cdfce77fe455070e83df394cb475e6f6a6 --- /dev/null +++ b/timecost/c14/realtabformer/rtf-c14-20260501_010151/rtf_checkpoints/checkpoint-749900/scheduler.pt @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:f95891e3d1cfba655cf2adff4bbcc76d47ac8e47957ea1f36410ad61d0c1593c +size 1465 diff --git a/timecost/c14/realtabformer/rtf-c14-20260501_010151/rtf_checkpoints/checkpoint-749900/trainer_state.json b/timecost/c14/realtabformer/rtf-c14-20260501_010151/rtf_checkpoints/checkpoint-749900/trainer_state.json new file mode 100644 index 0000000000000000000000000000000000000000..43a2b11ffb31a50893b56fba13cc1d9ff9323bab --- /dev/null +++ b/timecost/c14/realtabformer/rtf-c14-20260501_010151/rtf_checkpoints/checkpoint-749900/trainer_state.json @@ -0,0 +1,52527 @@ +{ + "best_global_step": null, + "best_metric": null, + "best_model_checkpoint": null, + "epoch": 99.98666666666666, + "eval_steps": 100, + "global_step": 749900, + "is_hyper_param_search": false, + "is_local_process_zero": true, + "is_world_process_zero": true, + "log_history": [ + { + "epoch": 0.013333333333333334, + "grad_norm": 0.3097156882286072, + "learning_rate": 4.99934e-05, + "loss": 4.729451904296875, + "step": 100 + }, + { + "epoch": 0.02666666666666667, + "grad_norm": 0.2790767550468445, + "learning_rate": 4.9986733333333334e-05, + "loss": 2.9246112060546876, + "step": 200 + }, + { + "epoch": 0.04, + "grad_norm": 0.2287004292011261, + "learning_rate": 4.998006666666667e-05, + "loss": 2.681365966796875, + "step": 300 + }, + { + "epoch": 0.05333333333333334, + "grad_norm": 0.2410515397787094, + "learning_rate": 4.9973400000000005e-05, + "loss": 2.57897216796875, + "step": 400 + }, + { + "epoch": 0.06666666666666667, + "grad_norm": 0.23536495864391327, + "learning_rate": 4.996673333333334e-05, + "loss": 2.5199215698242186, + "step": 500 + }, + { + "epoch": 0.08, + "grad_norm": 0.2238040715456009, + "learning_rate": 4.996006666666667e-05, + "loss": 2.4802560424804687, + "step": 600 + }, + { + "epoch": 0.09333333333333334, + "grad_norm": 0.2373904138803482, + "learning_rate": 4.99534e-05, + "loss": 2.4584336853027344, + "step": 700 + }, + { + "epoch": 0.10666666666666667, + "grad_norm": 0.2210150510072708, + "learning_rate": 4.9946733333333334e-05, + "loss": 2.4438829040527343, + "step": 800 + }, + { + "epoch": 0.12, + "grad_norm": 0.23910416662693024, + "learning_rate": 4.9940066666666666e-05, + "loss": 2.430836181640625, + "step": 900 + }, + { + "epoch": 0.13333333333333333, + "grad_norm": 0.21543893218040466, + "learning_rate": 4.9933400000000005e-05, + "loss": 2.416129150390625, + "step": 1000 + }, + { + "epoch": 0.14666666666666667, + "grad_norm": 0.21585851907730103, + "learning_rate": 4.992673333333334e-05, + "loss": 2.4107843017578126, + "step": 1100 + }, + { + "epoch": 0.16, + "grad_norm": 0.24163727462291718, + "learning_rate": 4.992006666666667e-05, + "loss": 2.406159210205078, + "step": 1200 + }, + { + "epoch": 0.17333333333333334, + "grad_norm": 0.1956426501274109, + "learning_rate": 4.99134e-05, + "loss": 2.403145751953125, + "step": 1300 + }, + { + "epoch": 0.18666666666666668, + "grad_norm": 0.22274842858314514, + "learning_rate": 4.9906733333333335e-05, + "loss": 2.4001878356933593, + "step": 1400 + }, + { + "epoch": 0.2, + "grad_norm": 0.21048018336296082, + "learning_rate": 4.990006666666667e-05, + "loss": 2.396698455810547, + "step": 1500 + }, + { + "epoch": 0.21333333333333335, + "grad_norm": 0.20668183267116547, + "learning_rate": 4.98934e-05, + "loss": 2.3899136352539063, + "step": 1600 + }, + { + "epoch": 0.22666666666666666, + "grad_norm": 0.21129441261291504, + "learning_rate": 4.988673333333334e-05, + "loss": 2.3887448120117187, + "step": 1700 + }, + { + "epoch": 0.24, + "grad_norm": 0.19339148700237274, + "learning_rate": 4.988006666666667e-05, + "loss": 2.386446228027344, + "step": 1800 + }, + { + "epoch": 0.25333333333333335, + "grad_norm": 0.24494831264019012, + "learning_rate": 4.98734e-05, + "loss": 2.3824462890625, + "step": 1900 + }, + { + "epoch": 0.26666666666666666, + "grad_norm": 0.22533085942268372, + "learning_rate": 4.9866733333333335e-05, + "loss": 2.382945709228516, + "step": 2000 + }, + { + "epoch": 0.28, + "grad_norm": 0.19327044486999512, + "learning_rate": 4.9860066666666674e-05, + "loss": 2.380709533691406, + "step": 2100 + }, + { + "epoch": 0.29333333333333333, + "grad_norm": 0.21988032758235931, + "learning_rate": 4.98534e-05, + "loss": 2.3797772216796873, + "step": 2200 + }, + { + "epoch": 0.30666666666666664, + "grad_norm": 0.21458032727241516, + "learning_rate": 4.984673333333333e-05, + "loss": 2.3806968688964845, + "step": 2300 + }, + { + "epoch": 0.32, + "grad_norm": 0.1938823163509369, + "learning_rate": 4.984006666666667e-05, + "loss": 2.377256317138672, + "step": 2400 + }, + { + "epoch": 0.3333333333333333, + "grad_norm": 0.2332620471715927, + "learning_rate": 4.98334e-05, + "loss": 2.3771754455566407, + "step": 2500 + }, + { + "epoch": 0.3466666666666667, + "grad_norm": 0.2167084515094757, + "learning_rate": 4.9826733333333335e-05, + "loss": 2.379599151611328, + "step": 2600 + }, + { + "epoch": 0.36, + "grad_norm": 0.21894526481628418, + "learning_rate": 4.982006666666667e-05, + "loss": 2.376912078857422, + "step": 2700 + }, + { + "epoch": 0.37333333333333335, + "grad_norm": 0.21106357872486115, + "learning_rate": 4.9813400000000007e-05, + "loss": 2.374015045166016, + "step": 2800 + }, + { + "epoch": 0.38666666666666666, + "grad_norm": 0.19057656824588776, + "learning_rate": 4.980673333333333e-05, + "loss": 2.3733976745605467, + "step": 2900 + }, + { + "epoch": 0.4, + "grad_norm": 0.21368202567100525, + "learning_rate": 4.9800066666666664e-05, + "loss": 2.3731019592285154, + "step": 3000 + }, + { + "epoch": 0.41333333333333333, + "grad_norm": 0.20361854135990143, + "learning_rate": 4.9793400000000003e-05, + "loss": 2.372502746582031, + "step": 3100 + }, + { + "epoch": 0.4266666666666667, + "grad_norm": 0.21937857568264008, + "learning_rate": 4.9786733333333336e-05, + "loss": 2.3699537658691407, + "step": 3200 + }, + { + "epoch": 0.44, + "grad_norm": 0.20447471737861633, + "learning_rate": 4.978006666666667e-05, + "loss": 2.3710557556152345, + "step": 3300 + }, + { + "epoch": 0.4533333333333333, + "grad_norm": 0.21187078952789307, + "learning_rate": 4.97734e-05, + "loss": 2.3726930236816406, + "step": 3400 + }, + { + "epoch": 0.4666666666666667, + "grad_norm": 0.2117481529712677, + "learning_rate": 4.976673333333334e-05, + "loss": 2.3712057495117187, + "step": 3500 + }, + { + "epoch": 0.48, + "grad_norm": 0.21514153480529785, + "learning_rate": 4.976006666666667e-05, + "loss": 2.3699081420898436, + "step": 3600 + }, + { + "epoch": 0.49333333333333335, + "grad_norm": 0.21301567554473877, + "learning_rate": 4.97534e-05, + "loss": 2.3686956787109374, + "step": 3700 + }, + { + "epoch": 0.5066666666666667, + "grad_norm": 0.21573932468891144, + "learning_rate": 4.9746733333333336e-05, + "loss": 2.3669277954101564, + "step": 3800 + }, + { + "epoch": 0.52, + "grad_norm": 0.21901340782642365, + "learning_rate": 4.974006666666667e-05, + "loss": 2.3691697692871094, + "step": 3900 + }, + { + "epoch": 0.5333333333333333, + "grad_norm": 0.17888770997524261, + "learning_rate": 4.97334e-05, + "loss": 2.3694166564941406, + "step": 4000 + }, + { + "epoch": 0.5466666666666666, + "grad_norm": 0.20132586359977722, + "learning_rate": 4.972673333333334e-05, + "loss": 2.3693058776855467, + "step": 4100 + }, + { + "epoch": 0.56, + "grad_norm": 0.20158927142620087, + "learning_rate": 4.972006666666667e-05, + "loss": 2.3696084594726563, + "step": 4200 + }, + { + "epoch": 0.5733333333333334, + "grad_norm": 0.19169336557388306, + "learning_rate": 4.9713400000000004e-05, + "loss": 2.3690890502929687, + "step": 4300 + }, + { + "epoch": 0.5866666666666667, + "grad_norm": 0.1851499378681183, + "learning_rate": 4.9706733333333336e-05, + "loss": 2.365598602294922, + "step": 4400 + }, + { + "epoch": 0.6, + "grad_norm": 0.17640796303749084, + "learning_rate": 4.970006666666667e-05, + "loss": 2.3662982177734375, + "step": 4500 + }, + { + "epoch": 0.6133333333333333, + "grad_norm": 0.19363251328468323, + "learning_rate": 4.96934e-05, + "loss": 2.366368408203125, + "step": 4600 + }, + { + "epoch": 0.6266666666666667, + "grad_norm": 0.18789421021938324, + "learning_rate": 4.968673333333333e-05, + "loss": 2.3673724365234374, + "step": 4700 + }, + { + "epoch": 0.64, + "grad_norm": 0.2276417762041092, + "learning_rate": 4.968006666666667e-05, + "loss": 2.3687364196777345, + "step": 4800 + }, + { + "epoch": 0.6533333333333333, + "grad_norm": 0.24959126114845276, + "learning_rate": 4.9673400000000005e-05, + "loss": 2.3668873596191404, + "step": 4900 + }, + { + "epoch": 0.6666666666666666, + "grad_norm": 0.1974227875471115, + "learning_rate": 4.966673333333334e-05, + "loss": 2.367490539550781, + "step": 5000 + }, + { + "epoch": 0.68, + "grad_norm": 0.21331575512886047, + "learning_rate": 4.966006666666667e-05, + "loss": 2.3667413330078126, + "step": 5100 + }, + { + "epoch": 0.6933333333333334, + "grad_norm": 0.19911886751651764, + "learning_rate": 4.96534e-05, + "loss": 2.3675457763671877, + "step": 5200 + }, + { + "epoch": 0.7066666666666667, + "grad_norm": 0.18808232247829437, + "learning_rate": 4.9646733333333334e-05, + "loss": 2.365087432861328, + "step": 5300 + }, + { + "epoch": 0.72, + "grad_norm": 0.20785415172576904, + "learning_rate": 4.9640066666666666e-05, + "loss": 2.364909362792969, + "step": 5400 + }, + { + "epoch": 0.7333333333333333, + "grad_norm": 0.20224037766456604, + "learning_rate": 4.9633400000000005e-05, + "loss": 2.3632057189941404, + "step": 5500 + }, + { + "epoch": 0.7466666666666667, + "grad_norm": 0.2229875922203064, + "learning_rate": 4.962673333333334e-05, + "loss": 2.3641395568847656, + "step": 5600 + }, + { + "epoch": 0.76, + "grad_norm": 0.1919153928756714, + "learning_rate": 4.962006666666667e-05, + "loss": 2.3659425354003907, + "step": 5700 + }, + { + "epoch": 0.7733333333333333, + "grad_norm": 0.20427671074867249, + "learning_rate": 4.96134e-05, + "loss": 2.363852081298828, + "step": 5800 + }, + { + "epoch": 0.7866666666666666, + "grad_norm": 0.21656429767608643, + "learning_rate": 4.960673333333334e-05, + "loss": 2.362543182373047, + "step": 5900 + }, + { + "epoch": 0.8, + "grad_norm": 0.2063402533531189, + "learning_rate": 4.9600066666666666e-05, + "loss": 2.366965026855469, + "step": 6000 + }, + { + "epoch": 0.8133333333333334, + "grad_norm": 0.1898108273744583, + "learning_rate": 4.95934e-05, + "loss": 2.3621893310546875, + "step": 6100 + }, + { + "epoch": 0.8266666666666667, + "grad_norm": 0.20282649993896484, + "learning_rate": 4.958673333333334e-05, + "loss": 2.3625088500976563, + "step": 6200 + }, + { + "epoch": 0.84, + "grad_norm": 0.20909225940704346, + "learning_rate": 4.958006666666667e-05, + "loss": 2.3645458984375, + "step": 6300 + }, + { + "epoch": 0.8533333333333334, + "grad_norm": 0.1983426809310913, + "learning_rate": 4.95734e-05, + "loss": 2.3627133178710937, + "step": 6400 + }, + { + "epoch": 0.8666666666666667, + "grad_norm": 0.19243596494197845, + "learning_rate": 4.9566733333333334e-05, + "loss": 2.3633660888671875, + "step": 6500 + }, + { + "epoch": 0.88, + "grad_norm": 0.2079390585422516, + "learning_rate": 4.9560066666666673e-05, + "loss": 2.3625689697265626, + "step": 6600 + }, + { + "epoch": 0.8933333333333333, + "grad_norm": 0.21222324669361115, + "learning_rate": 4.95534e-05, + "loss": 2.3634515380859376, + "step": 6700 + }, + { + "epoch": 0.9066666666666666, + "grad_norm": 0.20715859532356262, + "learning_rate": 4.954673333333333e-05, + "loss": 2.361647186279297, + "step": 6800 + }, + { + "epoch": 0.92, + "grad_norm": 0.20895737409591675, + "learning_rate": 4.954006666666667e-05, + "loss": 2.3614102172851563, + "step": 6900 + }, + { + "epoch": 0.9333333333333333, + "grad_norm": 0.2002798467874527, + "learning_rate": 4.95334e-05, + "loss": 2.36139892578125, + "step": 7000 + }, + { + "epoch": 0.9466666666666667, + "grad_norm": 0.19291919469833374, + "learning_rate": 4.9526733333333335e-05, + "loss": 2.3608961486816407, + "step": 7100 + }, + { + "epoch": 0.96, + "grad_norm": 0.21889089047908783, + "learning_rate": 4.952006666666667e-05, + "loss": 2.3637326049804686, + "step": 7200 + }, + { + "epoch": 0.9733333333333334, + "grad_norm": 0.2078685611486435, + "learning_rate": 4.9513400000000006e-05, + "loss": 2.3617208862304686, + "step": 7300 + }, + { + "epoch": 0.9866666666666667, + "grad_norm": 0.2064240425825119, + "learning_rate": 4.950673333333334e-05, + "loss": 2.363861083984375, + "step": 7400 + }, + { + "epoch": 1.0, + "grad_norm": 0.20584005117416382, + "learning_rate": 4.9500066666666664e-05, + "loss": 2.361913146972656, + "step": 7500 + }, + { + "epoch": 1.0133333333333334, + "grad_norm": 0.1801510751247406, + "learning_rate": 4.94934e-05, + "loss": 2.360869903564453, + "step": 7600 + }, + { + "epoch": 1.0266666666666666, + "grad_norm": 0.1993046998977661, + "learning_rate": 4.9486733333333335e-05, + "loss": 2.361507568359375, + "step": 7700 + }, + { + "epoch": 1.04, + "grad_norm": 0.19615833461284637, + "learning_rate": 4.948006666666667e-05, + "loss": 2.3610348510742187, + "step": 7800 + }, + { + "epoch": 1.0533333333333332, + "grad_norm": 0.21650268137454987, + "learning_rate": 4.9473400000000006e-05, + "loss": 2.3594178771972656, + "step": 7900 + }, + { + "epoch": 1.0666666666666667, + "grad_norm": 0.21163895726203918, + "learning_rate": 4.946673333333334e-05, + "loss": 2.360281982421875, + "step": 8000 + }, + { + "epoch": 1.08, + "grad_norm": 0.204850971698761, + "learning_rate": 4.946006666666667e-05, + "loss": 2.3587506103515623, + "step": 8100 + }, + { + "epoch": 1.0933333333333333, + "grad_norm": 0.19019952416419983, + "learning_rate": 4.9453399999999996e-05, + "loss": 2.359633331298828, + "step": 8200 + }, + { + "epoch": 1.1066666666666667, + "grad_norm": 0.19061067700386047, + "learning_rate": 4.9446733333333336e-05, + "loss": 2.3588740539550783, + "step": 8300 + }, + { + "epoch": 1.12, + "grad_norm": 0.17677488923072815, + "learning_rate": 4.944006666666667e-05, + "loss": 2.3598394775390625, + "step": 8400 + }, + { + "epoch": 1.1333333333333333, + "grad_norm": 0.1912253499031067, + "learning_rate": 4.94334e-05, + "loss": 2.360320739746094, + "step": 8500 + }, + { + "epoch": 1.1466666666666667, + "grad_norm": 0.2024315893650055, + "learning_rate": 4.942673333333334e-05, + "loss": 2.3580809020996094, + "step": 8600 + }, + { + "epoch": 1.16, + "grad_norm": 0.18786175549030304, + "learning_rate": 4.942006666666667e-05, + "loss": 2.3593084716796877, + "step": 8700 + }, + { + "epoch": 1.1733333333333333, + "grad_norm": 0.21662430465221405, + "learning_rate": 4.9413400000000004e-05, + "loss": 2.3598200988769533, + "step": 8800 + }, + { + "epoch": 1.1866666666666668, + "grad_norm": 0.1833869218826294, + "learning_rate": 4.9406733333333336e-05, + "loss": 2.3603662109375, + "step": 8900 + }, + { + "epoch": 1.2, + "grad_norm": 0.17883288860321045, + "learning_rate": 4.940006666666667e-05, + "loss": 2.3576153564453124, + "step": 9000 + }, + { + "epoch": 1.2133333333333334, + "grad_norm": 0.20075617730617523, + "learning_rate": 4.93934e-05, + "loss": 2.359826965332031, + "step": 9100 + }, + { + "epoch": 1.2266666666666666, + "grad_norm": 0.2007887363433838, + "learning_rate": 4.938673333333333e-05, + "loss": 2.358603210449219, + "step": 9200 + }, + { + "epoch": 1.24, + "grad_norm": 0.1917891800403595, + "learning_rate": 4.938006666666667e-05, + "loss": 2.3588916015625, + "step": 9300 + }, + { + "epoch": 1.2533333333333334, + "grad_norm": 0.21604856848716736, + "learning_rate": 4.9373400000000004e-05, + "loss": 2.3602168273925783, + "step": 9400 + }, + { + "epoch": 1.2666666666666666, + "grad_norm": 0.17735335230827332, + "learning_rate": 4.9366733333333336e-05, + "loss": 2.3565715026855467, + "step": 9500 + }, + { + "epoch": 1.28, + "grad_norm": 0.19378457963466644, + "learning_rate": 4.936006666666667e-05, + "loss": 2.3594598388671875, + "step": 9600 + }, + { + "epoch": 1.2933333333333334, + "grad_norm": 0.17695476114749908, + "learning_rate": 4.93534e-05, + "loss": 2.3589300537109374, + "step": 9700 + }, + { + "epoch": 1.3066666666666666, + "grad_norm": 0.21539485454559326, + "learning_rate": 4.934673333333333e-05, + "loss": 2.3615129089355467, + "step": 9800 + }, + { + "epoch": 1.32, + "grad_norm": 0.19134896993637085, + "learning_rate": 4.9340066666666665e-05, + "loss": 2.362266082763672, + "step": 9900 + }, + { + "epoch": 1.3333333333333333, + "grad_norm": 0.21886669099330902, + "learning_rate": 4.9333400000000004e-05, + "loss": 2.358092956542969, + "step": 10000 + }, + { + "epoch": 1.3466666666666667, + "grad_norm": 0.2164846807718277, + "learning_rate": 4.932673333333334e-05, + "loss": 2.3595159912109374, + "step": 10100 + }, + { + "epoch": 1.3599999999999999, + "grad_norm": 0.2044377326965332, + "learning_rate": 4.932006666666667e-05, + "loss": 2.3593812561035157, + "step": 10200 + }, + { + "epoch": 1.3733333333333333, + "grad_norm": 0.19607120752334595, + "learning_rate": 4.93134e-05, + "loss": 2.3597682189941405, + "step": 10300 + }, + { + "epoch": 1.3866666666666667, + "grad_norm": 0.20865550637245178, + "learning_rate": 4.930673333333334e-05, + "loss": 2.3585769653320314, + "step": 10400 + }, + { + "epoch": 1.4, + "grad_norm": 0.19647538661956787, + "learning_rate": 4.9300066666666666e-05, + "loss": 2.357613525390625, + "step": 10500 + }, + { + "epoch": 1.4133333333333333, + "grad_norm": 0.20263008773326874, + "learning_rate": 4.92934e-05, + "loss": 2.3594039916992187, + "step": 10600 + }, + { + "epoch": 1.4266666666666667, + "grad_norm": 0.20336301624774933, + "learning_rate": 4.928673333333334e-05, + "loss": 2.358168487548828, + "step": 10700 + }, + { + "epoch": 1.44, + "grad_norm": 0.19379153847694397, + "learning_rate": 4.928006666666667e-05, + "loss": 2.357987060546875, + "step": 10800 + }, + { + "epoch": 1.4533333333333334, + "grad_norm": 0.19382280111312866, + "learning_rate": 4.92734e-05, + "loss": 2.358719482421875, + "step": 10900 + }, + { + "epoch": 1.4666666666666668, + "grad_norm": 0.22233974933624268, + "learning_rate": 4.9266733333333334e-05, + "loss": 2.359342498779297, + "step": 11000 + }, + { + "epoch": 1.48, + "grad_norm": 0.2031731903553009, + "learning_rate": 4.926006666666667e-05, + "loss": 2.3575526428222657, + "step": 11100 + }, + { + "epoch": 1.4933333333333334, + "grad_norm": 0.2249104380607605, + "learning_rate": 4.9253400000000005e-05, + "loss": 2.359127197265625, + "step": 11200 + }, + { + "epoch": 1.5066666666666668, + "grad_norm": 0.19960635900497437, + "learning_rate": 4.924673333333333e-05, + "loss": 2.35850830078125, + "step": 11300 + }, + { + "epoch": 1.52, + "grad_norm": 0.17657485604286194, + "learning_rate": 4.924006666666667e-05, + "loss": 2.3599581909179688, + "step": 11400 + }, + { + "epoch": 1.5333333333333332, + "grad_norm": 0.2015186995267868, + "learning_rate": 4.92334e-05, + "loss": 2.3588160705566406, + "step": 11500 + }, + { + "epoch": 1.5466666666666666, + "grad_norm": 0.20554782450199127, + "learning_rate": 4.9226733333333334e-05, + "loss": 2.3559320068359373, + "step": 11600 + }, + { + "epoch": 1.56, + "grad_norm": 0.1838974952697754, + "learning_rate": 4.9220066666666667e-05, + "loss": 2.3575198364257814, + "step": 11700 + }, + { + "epoch": 1.5733333333333333, + "grad_norm": 0.19607774913311005, + "learning_rate": 4.9213400000000006e-05, + "loss": 2.3575714111328123, + "step": 11800 + }, + { + "epoch": 1.5866666666666667, + "grad_norm": 0.178280308842659, + "learning_rate": 4.920673333333334e-05, + "loss": 2.3576229858398436, + "step": 11900 + }, + { + "epoch": 1.6, + "grad_norm": 0.18399088084697723, + "learning_rate": 4.920006666666666e-05, + "loss": 2.3562477111816404, + "step": 12000 + }, + { + "epoch": 1.6133333333333333, + "grad_norm": 0.20826038718223572, + "learning_rate": 4.91934e-05, + "loss": 2.355485382080078, + "step": 12100 + }, + { + "epoch": 1.6266666666666667, + "grad_norm": 0.20758900046348572, + "learning_rate": 4.9186733333333335e-05, + "loss": 2.3574794006347655, + "step": 12200 + }, + { + "epoch": 1.6400000000000001, + "grad_norm": 0.19196072220802307, + "learning_rate": 4.918006666666667e-05, + "loss": 2.3581634521484376, + "step": 12300 + }, + { + "epoch": 1.6533333333333333, + "grad_norm": 0.1848619282245636, + "learning_rate": 4.9173400000000006e-05, + "loss": 2.3570237731933594, + "step": 12400 + }, + { + "epoch": 1.6666666666666665, + "grad_norm": 0.2013252079486847, + "learning_rate": 4.916673333333334e-05, + "loss": 2.3577528381347657, + "step": 12500 + }, + { + "epoch": 1.6800000000000002, + "grad_norm": 0.1901196390390396, + "learning_rate": 4.916006666666667e-05, + "loss": 2.356570129394531, + "step": 12600 + }, + { + "epoch": 1.6933333333333334, + "grad_norm": 0.21528318524360657, + "learning_rate": 4.91534e-05, + "loss": 2.3587225341796874, + "step": 12700 + }, + { + "epoch": 1.7066666666666666, + "grad_norm": 0.21024923026561737, + "learning_rate": 4.9146733333333335e-05, + "loss": 2.356683349609375, + "step": 12800 + }, + { + "epoch": 1.72, + "grad_norm": 0.21185488998889923, + "learning_rate": 4.914006666666667e-05, + "loss": 2.3565196228027343, + "step": 12900 + }, + { + "epoch": 1.7333333333333334, + "grad_norm": 0.1909532994031906, + "learning_rate": 4.91334e-05, + "loss": 2.3565260314941407, + "step": 13000 + }, + { + "epoch": 1.7466666666666666, + "grad_norm": 0.17285031080245972, + "learning_rate": 4.912673333333334e-05, + "loss": 2.3597225952148437, + "step": 13100 + }, + { + "epoch": 1.76, + "grad_norm": 0.20661011338233948, + "learning_rate": 4.912006666666667e-05, + "loss": 2.355798797607422, + "step": 13200 + }, + { + "epoch": 1.7733333333333334, + "grad_norm": 0.17752040922641754, + "learning_rate": 4.91134e-05, + "loss": 2.358916931152344, + "step": 13300 + }, + { + "epoch": 1.7866666666666666, + "grad_norm": 0.1924242228269577, + "learning_rate": 4.9106733333333335e-05, + "loss": 2.3583119201660154, + "step": 13400 + }, + { + "epoch": 1.8, + "grad_norm": 0.1849152147769928, + "learning_rate": 4.910006666666667e-05, + "loss": 2.3570172119140627, + "step": 13500 + }, + { + "epoch": 1.8133333333333335, + "grad_norm": 0.185477152466774, + "learning_rate": 4.90934e-05, + "loss": 2.3571125793457033, + "step": 13600 + }, + { + "epoch": 1.8266666666666667, + "grad_norm": 0.20487146079540253, + "learning_rate": 4.908673333333333e-05, + "loss": 2.3563079833984375, + "step": 13700 + }, + { + "epoch": 1.8399999999999999, + "grad_norm": 0.1872117966413498, + "learning_rate": 4.908006666666667e-05, + "loss": 2.3568649291992188, + "step": 13800 + }, + { + "epoch": 1.8533333333333335, + "grad_norm": 0.20117762684822083, + "learning_rate": 4.9073400000000004e-05, + "loss": 2.3565196228027343, + "step": 13900 + }, + { + "epoch": 1.8666666666666667, + "grad_norm": 0.19476266205310822, + "learning_rate": 4.9066733333333336e-05, + "loss": 2.358032989501953, + "step": 14000 + }, + { + "epoch": 1.88, + "grad_norm": 0.22407779097557068, + "learning_rate": 4.906006666666667e-05, + "loss": 2.3561721801757813, + "step": 14100 + }, + { + "epoch": 1.8933333333333333, + "grad_norm": 0.17407096922397614, + "learning_rate": 4.905340000000001e-05, + "loss": 2.3565065002441408, + "step": 14200 + }, + { + "epoch": 1.9066666666666667, + "grad_norm": 0.20838646590709686, + "learning_rate": 4.904673333333333e-05, + "loss": 2.3535838317871094, + "step": 14300 + }, + { + "epoch": 1.92, + "grad_norm": 0.1853237748146057, + "learning_rate": 4.9040066666666665e-05, + "loss": 2.354512481689453, + "step": 14400 + }, + { + "epoch": 1.9333333333333333, + "grad_norm": 0.19149570167064667, + "learning_rate": 4.9033400000000004e-05, + "loss": 2.3577252197265626, + "step": 14500 + }, + { + "epoch": 1.9466666666666668, + "grad_norm": 0.17799700796604156, + "learning_rate": 4.9026733333333336e-05, + "loss": 2.35733154296875, + "step": 14600 + }, + { + "epoch": 1.96, + "grad_norm": 0.19204910099506378, + "learning_rate": 4.902006666666667e-05, + "loss": 2.354717559814453, + "step": 14700 + }, + { + "epoch": 1.9733333333333334, + "grad_norm": 0.2267007678747177, + "learning_rate": 4.90134e-05, + "loss": 2.356217041015625, + "step": 14800 + }, + { + "epoch": 1.9866666666666668, + "grad_norm": 0.19406317174434662, + "learning_rate": 4.900673333333334e-05, + "loss": 2.3556443786621095, + "step": 14900 + }, + { + "epoch": 2.0, + "grad_norm": 0.204499751329422, + "learning_rate": 4.9000066666666665e-05, + "loss": 2.356020965576172, + "step": 15000 + }, + { + "epoch": 2.013333333333333, + "grad_norm": 0.1888091266155243, + "learning_rate": 4.89934e-05, + "loss": 2.352834930419922, + "step": 15100 + }, + { + "epoch": 2.026666666666667, + "grad_norm": 0.19324932992458344, + "learning_rate": 4.8986733333333337e-05, + "loss": 2.354947357177734, + "step": 15200 + }, + { + "epoch": 2.04, + "grad_norm": 0.18967552483081818, + "learning_rate": 4.898006666666667e-05, + "loss": 2.3552085876464846, + "step": 15300 + }, + { + "epoch": 2.0533333333333332, + "grad_norm": 0.1882469207048416, + "learning_rate": 4.89734e-05, + "loss": 2.354617462158203, + "step": 15400 + }, + { + "epoch": 2.066666666666667, + "grad_norm": 0.2014245092868805, + "learning_rate": 4.896673333333333e-05, + "loss": 2.3554867553710936, + "step": 15500 + }, + { + "epoch": 2.08, + "grad_norm": 0.20610852539539337, + "learning_rate": 4.896006666666667e-05, + "loss": 2.3536581420898437, + "step": 15600 + }, + { + "epoch": 2.0933333333333333, + "grad_norm": 0.21335220336914062, + "learning_rate": 4.8953400000000005e-05, + "loss": 2.354955291748047, + "step": 15700 + }, + { + "epoch": 2.1066666666666665, + "grad_norm": 0.19335633516311646, + "learning_rate": 4.894673333333333e-05, + "loss": 2.3532504272460937, + "step": 15800 + }, + { + "epoch": 2.12, + "grad_norm": 0.1970617026090622, + "learning_rate": 4.894006666666667e-05, + "loss": 2.3523245239257813, + "step": 15900 + }, + { + "epoch": 2.1333333333333333, + "grad_norm": 0.195561483502388, + "learning_rate": 4.89334e-05, + "loss": 2.354027099609375, + "step": 16000 + }, + { + "epoch": 2.1466666666666665, + "grad_norm": 0.18854361772537231, + "learning_rate": 4.89268e-05, + "loss": 2.35153564453125, + "step": 16100 + }, + { + "epoch": 2.16, + "grad_norm": 0.20224016904830933, + "learning_rate": 4.892013333333333e-05, + "loss": 2.356122589111328, + "step": 16200 + }, + { + "epoch": 2.1733333333333333, + "grad_norm": 0.18668098747730255, + "learning_rate": 4.891346666666667e-05, + "loss": 2.354725189208984, + "step": 16300 + }, + { + "epoch": 2.1866666666666665, + "grad_norm": 0.1866915374994278, + "learning_rate": 4.8906800000000004e-05, + "loss": 2.354028625488281, + "step": 16400 + }, + { + "epoch": 2.2, + "grad_norm": 0.21461573243141174, + "learning_rate": 4.8900133333333336e-05, + "loss": 2.3526856994628904, + "step": 16500 + }, + { + "epoch": 2.2133333333333334, + "grad_norm": 0.18227700889110565, + "learning_rate": 4.889346666666667e-05, + "loss": 2.3545989990234375, + "step": 16600 + }, + { + "epoch": 2.2266666666666666, + "grad_norm": 0.19773833453655243, + "learning_rate": 4.888680000000001e-05, + "loss": 2.351981201171875, + "step": 16700 + }, + { + "epoch": 2.24, + "grad_norm": 0.20956110954284668, + "learning_rate": 4.888013333333333e-05, + "loss": 2.355366516113281, + "step": 16800 + }, + { + "epoch": 2.2533333333333334, + "grad_norm": 0.1993572860956192, + "learning_rate": 4.8873466666666665e-05, + "loss": 2.3551705932617186, + "step": 16900 + }, + { + "epoch": 2.2666666666666666, + "grad_norm": 0.2015913426876068, + "learning_rate": 4.8866800000000005e-05, + "loss": 2.3545513916015626, + "step": 17000 + }, + { + "epoch": 2.2800000000000002, + "grad_norm": 0.19929593801498413, + "learning_rate": 4.886013333333334e-05, + "loss": 2.352397766113281, + "step": 17100 + }, + { + "epoch": 2.2933333333333334, + "grad_norm": 0.20449623465538025, + "learning_rate": 4.885346666666667e-05, + "loss": 2.354527893066406, + "step": 17200 + }, + { + "epoch": 2.3066666666666666, + "grad_norm": 0.20281392335891724, + "learning_rate": 4.88468e-05, + "loss": 2.351980438232422, + "step": 17300 + }, + { + "epoch": 2.32, + "grad_norm": 0.21583755314350128, + "learning_rate": 4.884013333333334e-05, + "loss": 2.3545767211914064, + "step": 17400 + }, + { + "epoch": 2.3333333333333335, + "grad_norm": 0.20362140238285065, + "learning_rate": 4.8833466666666666e-05, + "loss": 2.3561666870117186, + "step": 17500 + }, + { + "epoch": 2.3466666666666667, + "grad_norm": 0.1887034773826599, + "learning_rate": 4.88268e-05, + "loss": 2.353743438720703, + "step": 17600 + }, + { + "epoch": 2.36, + "grad_norm": 0.1752418577671051, + "learning_rate": 4.882013333333334e-05, + "loss": 2.35181884765625, + "step": 17700 + }, + { + "epoch": 2.3733333333333335, + "grad_norm": 0.19891609251499176, + "learning_rate": 4.881346666666667e-05, + "loss": 2.3536032104492186, + "step": 17800 + }, + { + "epoch": 2.3866666666666667, + "grad_norm": 0.1945076882839203, + "learning_rate": 4.88068e-05, + "loss": 2.35367919921875, + "step": 17900 + }, + { + "epoch": 2.4, + "grad_norm": 0.17770184576511383, + "learning_rate": 4.8800133333333334e-05, + "loss": 2.3528033447265626, + "step": 18000 + }, + { + "epoch": 2.413333333333333, + "grad_norm": 0.223379448056221, + "learning_rate": 4.879353333333333e-05, + "loss": 2.35432861328125, + "step": 18100 + }, + { + "epoch": 2.4266666666666667, + "grad_norm": 0.18828672170639038, + "learning_rate": 4.878686666666667e-05, + "loss": 2.355252380371094, + "step": 18200 + }, + { + "epoch": 2.44, + "grad_norm": 0.18844439089298248, + "learning_rate": 4.8780200000000004e-05, + "loss": 2.3561915588378906, + "step": 18300 + }, + { + "epoch": 2.453333333333333, + "grad_norm": 0.21294449269771576, + "learning_rate": 4.877353333333334e-05, + "loss": 2.3547706604003906, + "step": 18400 + }, + { + "epoch": 2.466666666666667, + "grad_norm": 0.17931200563907623, + "learning_rate": 4.876686666666667e-05, + "loss": 2.355154724121094, + "step": 18500 + }, + { + "epoch": 2.48, + "grad_norm": 0.21106231212615967, + "learning_rate": 4.87602e-05, + "loss": 2.352605895996094, + "step": 18600 + }, + { + "epoch": 2.493333333333333, + "grad_norm": 0.1965954452753067, + "learning_rate": 4.8753533333333333e-05, + "loss": 2.354511260986328, + "step": 18700 + }, + { + "epoch": 2.506666666666667, + "grad_norm": 0.2056257575750351, + "learning_rate": 4.8746866666666666e-05, + "loss": 2.3556398010253905, + "step": 18800 + }, + { + "epoch": 2.52, + "grad_norm": 0.21052542328834534, + "learning_rate": 4.8740200000000005e-05, + "loss": 2.3537603759765626, + "step": 18900 + }, + { + "epoch": 2.533333333333333, + "grad_norm": 0.19049997627735138, + "learning_rate": 4.873353333333334e-05, + "loss": 2.353008270263672, + "step": 19000 + }, + { + "epoch": 2.546666666666667, + "grad_norm": 0.17134717106819153, + "learning_rate": 4.872686666666667e-05, + "loss": 2.3548989868164063, + "step": 19100 + }, + { + "epoch": 2.56, + "grad_norm": 0.19276337325572968, + "learning_rate": 4.87202e-05, + "loss": 2.3533308410644533, + "step": 19200 + }, + { + "epoch": 2.5733333333333333, + "grad_norm": 0.20519237220287323, + "learning_rate": 4.8713533333333334e-05, + "loss": 2.353628692626953, + "step": 19300 + }, + { + "epoch": 2.586666666666667, + "grad_norm": 0.19865448772907257, + "learning_rate": 4.8706866666666666e-05, + "loss": 2.3552372741699217, + "step": 19400 + }, + { + "epoch": 2.6, + "grad_norm": 0.21072329580783844, + "learning_rate": 4.87002e-05, + "loss": 2.354803009033203, + "step": 19500 + }, + { + "epoch": 2.6133333333333333, + "grad_norm": 0.20858490467071533, + "learning_rate": 4.869353333333334e-05, + "loss": 2.352855224609375, + "step": 19600 + }, + { + "epoch": 2.626666666666667, + "grad_norm": 0.19127769768238068, + "learning_rate": 4.868686666666667e-05, + "loss": 2.3559735107421873, + "step": 19700 + }, + { + "epoch": 2.64, + "grad_norm": 0.1971408575773239, + "learning_rate": 4.86802e-05, + "loss": 2.3524879455566405, + "step": 19800 + }, + { + "epoch": 2.6533333333333333, + "grad_norm": 0.19466613233089447, + "learning_rate": 4.867353333333334e-05, + "loss": 2.35252685546875, + "step": 19900 + }, + { + "epoch": 2.6666666666666665, + "grad_norm": 0.17773135006427765, + "learning_rate": 4.866686666666667e-05, + "loss": 2.3533396911621094, + "step": 20000 + }, + { + "epoch": 2.68, + "grad_norm": 0.2046392261981964, + "learning_rate": 4.866026666666667e-05, + "loss": 2.3539585876464844, + "step": 20100 + }, + { + "epoch": 2.6933333333333334, + "grad_norm": 0.1670500934123993, + "learning_rate": 4.8653600000000005e-05, + "loss": 2.353471527099609, + "step": 20200 + }, + { + "epoch": 2.7066666666666666, + "grad_norm": 0.1887359917163849, + "learning_rate": 4.864693333333333e-05, + "loss": 2.3529425048828125, + "step": 20300 + }, + { + "epoch": 2.7199999999999998, + "grad_norm": 0.19046323001384735, + "learning_rate": 4.864026666666667e-05, + "loss": 2.353743133544922, + "step": 20400 + }, + { + "epoch": 2.7333333333333334, + "grad_norm": 0.20893333852291107, + "learning_rate": 4.86336e-05, + "loss": 2.354876708984375, + "step": 20500 + }, + { + "epoch": 2.7466666666666666, + "grad_norm": 0.20090077817440033, + "learning_rate": 4.8626933333333334e-05, + "loss": 2.354145050048828, + "step": 20600 + }, + { + "epoch": 2.76, + "grad_norm": 0.1944134384393692, + "learning_rate": 4.862026666666667e-05, + "loss": 2.3537525939941406, + "step": 20700 + }, + { + "epoch": 2.7733333333333334, + "grad_norm": 0.19937659800052643, + "learning_rate": 4.8613600000000005e-05, + "loss": 2.3532589721679686, + "step": 20800 + }, + { + "epoch": 2.7866666666666666, + "grad_norm": 0.19922621548175812, + "learning_rate": 4.860693333333334e-05, + "loss": 2.3535202026367186, + "step": 20900 + }, + { + "epoch": 2.8, + "grad_norm": 0.17885304987430573, + "learning_rate": 4.860026666666667e-05, + "loss": 2.3526271057128905, + "step": 21000 + }, + { + "epoch": 2.8133333333333335, + "grad_norm": 0.19968298077583313, + "learning_rate": 4.85936e-05, + "loss": 2.351287078857422, + "step": 21100 + }, + { + "epoch": 2.8266666666666667, + "grad_norm": 0.20618899166584015, + "learning_rate": 4.8586933333333334e-05, + "loss": 2.35383544921875, + "step": 21200 + }, + { + "epoch": 2.84, + "grad_norm": 0.18697108328342438, + "learning_rate": 4.8580266666666666e-05, + "loss": 2.3557089233398436, + "step": 21300 + }, + { + "epoch": 2.8533333333333335, + "grad_norm": 0.1982707530260086, + "learning_rate": 4.8573600000000005e-05, + "loss": 2.3569706726074218, + "step": 21400 + }, + { + "epoch": 2.8666666666666667, + "grad_norm": 0.1921544075012207, + "learning_rate": 4.856693333333334e-05, + "loss": 2.354062042236328, + "step": 21500 + }, + { + "epoch": 2.88, + "grad_norm": 0.18305157124996185, + "learning_rate": 4.856026666666667e-05, + "loss": 2.3534732055664063, + "step": 21600 + }, + { + "epoch": 2.8933333333333335, + "grad_norm": 0.1875217705965042, + "learning_rate": 4.85536e-05, + "loss": 2.354545135498047, + "step": 21700 + }, + { + "epoch": 2.9066666666666667, + "grad_norm": 0.20880307257175446, + "learning_rate": 4.8546933333333334e-05, + "loss": 2.353887939453125, + "step": 21800 + }, + { + "epoch": 2.92, + "grad_norm": 0.21262428164482117, + "learning_rate": 4.854026666666667e-05, + "loss": 2.352968292236328, + "step": 21900 + }, + { + "epoch": 2.9333333333333336, + "grad_norm": 0.19341909885406494, + "learning_rate": 4.85336e-05, + "loss": 2.3549241638183593, + "step": 22000 + }, + { + "epoch": 2.9466666666666668, + "grad_norm": 0.2057921290397644, + "learning_rate": 4.8527e-05, + "loss": 2.3518043518066407, + "step": 22100 + }, + { + "epoch": 2.96, + "grad_norm": 0.1986525058746338, + "learning_rate": 4.852033333333334e-05, + "loss": 2.3545606994628905, + "step": 22200 + }, + { + "epoch": 2.9733333333333336, + "grad_norm": 0.19995741546154022, + "learning_rate": 4.851366666666667e-05, + "loss": 2.35246826171875, + "step": 22300 + }, + { + "epoch": 2.986666666666667, + "grad_norm": 0.18662478029727936, + "learning_rate": 4.8507e-05, + "loss": 2.3534344482421874, + "step": 22400 + }, + { + "epoch": 3.0, + "grad_norm": 0.19860990345478058, + "learning_rate": 4.8500333333333334e-05, + "loss": 2.3527035522460937, + "step": 22500 + }, + { + "epoch": 3.013333333333333, + "grad_norm": 0.20039217174053192, + "learning_rate": 4.849366666666667e-05, + "loss": 2.348377532958984, + "step": 22600 + }, + { + "epoch": 3.026666666666667, + "grad_norm": 0.2021869421005249, + "learning_rate": 4.8487000000000005e-05, + "loss": 2.351779022216797, + "step": 22700 + }, + { + "epoch": 3.04, + "grad_norm": 0.1985320746898651, + "learning_rate": 4.848033333333333e-05, + "loss": 2.3483657836914062, + "step": 22800 + }, + { + "epoch": 3.0533333333333332, + "grad_norm": 0.1824573427438736, + "learning_rate": 4.847366666666667e-05, + "loss": 2.347190704345703, + "step": 22900 + }, + { + "epoch": 3.066666666666667, + "grad_norm": 0.19089816510677338, + "learning_rate": 4.8467e-05, + "loss": 2.3492135620117187, + "step": 23000 + }, + { + "epoch": 3.08, + "grad_norm": 0.23082399368286133, + "learning_rate": 4.8460333333333334e-05, + "loss": 2.348924560546875, + "step": 23100 + }, + { + "epoch": 3.0933333333333333, + "grad_norm": 0.18981102108955383, + "learning_rate": 4.8453666666666667e-05, + "loss": 2.350345001220703, + "step": 23200 + }, + { + "epoch": 3.1066666666666665, + "grad_norm": 0.19843408465385437, + "learning_rate": 4.8447000000000006e-05, + "loss": 2.3490699768066405, + "step": 23300 + }, + { + "epoch": 3.12, + "grad_norm": 0.19274167716503143, + "learning_rate": 4.844033333333334e-05, + "loss": 2.350037078857422, + "step": 23400 + }, + { + "epoch": 3.1333333333333333, + "grad_norm": 0.1848369985818863, + "learning_rate": 4.843366666666667e-05, + "loss": 2.3491517639160158, + "step": 23500 + }, + { + "epoch": 3.1466666666666665, + "grad_norm": 0.18349026143550873, + "learning_rate": 4.8427e-05, + "loss": 2.3494111633300783, + "step": 23600 + }, + { + "epoch": 3.16, + "grad_norm": 0.20055054128170013, + "learning_rate": 4.8420333333333335e-05, + "loss": 2.3514225769042967, + "step": 23700 + }, + { + "epoch": 3.1733333333333333, + "grad_norm": 0.17645560204982758, + "learning_rate": 4.841366666666667e-05, + "loss": 2.3496327209472656, + "step": 23800 + }, + { + "epoch": 3.1866666666666665, + "grad_norm": 0.20394593477249146, + "learning_rate": 4.8407e-05, + "loss": 2.34930908203125, + "step": 23900 + }, + { + "epoch": 3.2, + "grad_norm": 0.19807790219783783, + "learning_rate": 4.840033333333334e-05, + "loss": 2.350684814453125, + "step": 24000 + }, + { + "epoch": 3.2133333333333334, + "grad_norm": 0.19074247777462006, + "learning_rate": 4.839373333333334e-05, + "loss": 2.3482009887695314, + "step": 24100 + }, + { + "epoch": 3.2266666666666666, + "grad_norm": 0.184867724776268, + "learning_rate": 4.838706666666667e-05, + "loss": 2.3509567260742186, + "step": 24200 + }, + { + "epoch": 3.24, + "grad_norm": 0.20876654982566833, + "learning_rate": 4.83804e-05, + "loss": 2.351715393066406, + "step": 24300 + }, + { + "epoch": 3.2533333333333334, + "grad_norm": 0.20710976421833038, + "learning_rate": 4.837373333333334e-05, + "loss": 2.352671813964844, + "step": 24400 + }, + { + "epoch": 3.2666666666666666, + "grad_norm": 0.2047370821237564, + "learning_rate": 4.836706666666667e-05, + "loss": 2.347806701660156, + "step": 24500 + }, + { + "epoch": 3.2800000000000002, + "grad_norm": 0.19557665288448334, + "learning_rate": 4.83604e-05, + "loss": 2.3503456115722656, + "step": 24600 + }, + { + "epoch": 3.2933333333333334, + "grad_norm": 0.19264017045497894, + "learning_rate": 4.835373333333333e-05, + "loss": 2.350893859863281, + "step": 24700 + }, + { + "epoch": 3.3066666666666666, + "grad_norm": 0.1815241277217865, + "learning_rate": 4.834706666666667e-05, + "loss": 2.3506166076660158, + "step": 24800 + }, + { + "epoch": 3.32, + "grad_norm": 0.19273795187473297, + "learning_rate": 4.83404e-05, + "loss": 2.3491062927246094, + "step": 24900 + }, + { + "epoch": 3.3333333333333335, + "grad_norm": 0.1982475221157074, + "learning_rate": 4.8333733333333334e-05, + "loss": 2.350149383544922, + "step": 25000 + }, + { + "epoch": 3.3466666666666667, + "grad_norm": 0.19936062395572662, + "learning_rate": 4.8327066666666674e-05, + "loss": 2.349862518310547, + "step": 25100 + }, + { + "epoch": 3.36, + "grad_norm": 0.1829392910003662, + "learning_rate": 4.8320400000000006e-05, + "loss": 2.351768035888672, + "step": 25200 + }, + { + "epoch": 3.3733333333333335, + "grad_norm": 0.1831563413143158, + "learning_rate": 4.831373333333333e-05, + "loss": 2.351492919921875, + "step": 25300 + }, + { + "epoch": 3.3866666666666667, + "grad_norm": 0.20415860414505005, + "learning_rate": 4.830706666666667e-05, + "loss": 2.3486749267578126, + "step": 25400 + }, + { + "epoch": 3.4, + "grad_norm": 0.17977586388587952, + "learning_rate": 4.83004e-05, + "loss": 2.351340026855469, + "step": 25500 + }, + { + "epoch": 3.413333333333333, + "grad_norm": 0.1846362203359604, + "learning_rate": 4.8293733333333335e-05, + "loss": 2.351724090576172, + "step": 25600 + }, + { + "epoch": 3.4266666666666667, + "grad_norm": 0.18675661087036133, + "learning_rate": 4.828706666666667e-05, + "loss": 2.351480712890625, + "step": 25700 + }, + { + "epoch": 3.44, + "grad_norm": 0.18456125259399414, + "learning_rate": 4.8280400000000006e-05, + "loss": 2.3500599670410156, + "step": 25800 + }, + { + "epoch": 3.453333333333333, + "grad_norm": 0.19029958546161652, + "learning_rate": 4.827373333333334e-05, + "loss": 2.350344543457031, + "step": 25900 + }, + { + "epoch": 3.466666666666667, + "grad_norm": 0.17213845252990723, + "learning_rate": 4.826706666666667e-05, + "loss": 2.3511953735351563, + "step": 26000 + }, + { + "epoch": 3.48, + "grad_norm": 0.19007565081119537, + "learning_rate": 4.826046666666667e-05, + "loss": 2.3536442565917968, + "step": 26100 + }, + { + "epoch": 3.493333333333333, + "grad_norm": 0.2030433863401413, + "learning_rate": 4.82538e-05, + "loss": 2.3524905395507814, + "step": 26200 + }, + { + "epoch": 3.506666666666667, + "grad_norm": 0.1910092532634735, + "learning_rate": 4.8247133333333334e-05, + "loss": 2.349417419433594, + "step": 26300 + }, + { + "epoch": 3.52, + "grad_norm": 0.1992577612400055, + "learning_rate": 4.8240466666666667e-05, + "loss": 2.350249938964844, + "step": 26400 + }, + { + "epoch": 3.533333333333333, + "grad_norm": 0.2043229341506958, + "learning_rate": 4.82338e-05, + "loss": 2.3508177185058594, + "step": 26500 + }, + { + "epoch": 3.546666666666667, + "grad_norm": 0.19904406368732452, + "learning_rate": 4.822713333333334e-05, + "loss": 2.3501368713378907, + "step": 26600 + }, + { + "epoch": 3.56, + "grad_norm": 0.2048622965812683, + "learning_rate": 4.822046666666667e-05, + "loss": 2.3512261962890624, + "step": 26700 + }, + { + "epoch": 3.5733333333333333, + "grad_norm": 0.18168894946575165, + "learning_rate": 4.82138e-05, + "loss": 2.3506343078613283, + "step": 26800 + }, + { + "epoch": 3.586666666666667, + "grad_norm": 0.2186703383922577, + "learning_rate": 4.8207133333333335e-05, + "loss": 2.3507453918457033, + "step": 26900 + }, + { + "epoch": 3.6, + "grad_norm": 0.17658771574497223, + "learning_rate": 4.8200466666666674e-05, + "loss": 2.350555114746094, + "step": 27000 + }, + { + "epoch": 3.6133333333333333, + "grad_norm": 0.18329951167106628, + "learning_rate": 4.81938e-05, + "loss": 2.3507563781738283, + "step": 27100 + }, + { + "epoch": 3.626666666666667, + "grad_norm": 0.17677000164985657, + "learning_rate": 4.818713333333333e-05, + "loss": 2.3508815002441406, + "step": 27200 + }, + { + "epoch": 3.64, + "grad_norm": 0.18543322384357452, + "learning_rate": 4.818046666666667e-05, + "loss": 2.353324737548828, + "step": 27300 + }, + { + "epoch": 3.6533333333333333, + "grad_norm": 0.17043279111385345, + "learning_rate": 4.81738e-05, + "loss": 2.351223907470703, + "step": 27400 + }, + { + "epoch": 3.6666666666666665, + "grad_norm": 0.196268692612648, + "learning_rate": 4.8167133333333335e-05, + "loss": 2.348458557128906, + "step": 27500 + }, + { + "epoch": 3.68, + "grad_norm": 0.21252736449241638, + "learning_rate": 4.816046666666667e-05, + "loss": 2.351412811279297, + "step": 27600 + }, + { + "epoch": 3.6933333333333334, + "grad_norm": 0.1941421627998352, + "learning_rate": 4.8153800000000006e-05, + "loss": 2.3509474182128907, + "step": 27700 + }, + { + "epoch": 3.7066666666666666, + "grad_norm": 0.18156079947948456, + "learning_rate": 4.814713333333333e-05, + "loss": 2.3500953674316407, + "step": 27800 + }, + { + "epoch": 3.7199999999999998, + "grad_norm": 0.18474163115024567, + "learning_rate": 4.8140466666666664e-05, + "loss": 2.3500129699707033, + "step": 27900 + }, + { + "epoch": 3.7333333333333334, + "grad_norm": 0.1893375813961029, + "learning_rate": 4.81338e-05, + "loss": 2.3503759765625, + "step": 28000 + }, + { + "epoch": 3.7466666666666666, + "grad_norm": 0.18845497071743011, + "learning_rate": 4.81272e-05, + "loss": 2.3525970458984373, + "step": 28100 + }, + { + "epoch": 3.76, + "grad_norm": 0.21595294773578644, + "learning_rate": 4.8120533333333335e-05, + "loss": 2.3500466918945313, + "step": 28200 + }, + { + "epoch": 3.7733333333333334, + "grad_norm": 0.19505618512630463, + "learning_rate": 4.811386666666667e-05, + "loss": 2.349498748779297, + "step": 28300 + }, + { + "epoch": 3.7866666666666666, + "grad_norm": 0.17862743139266968, + "learning_rate": 4.81072e-05, + "loss": 2.348866424560547, + "step": 28400 + }, + { + "epoch": 3.8, + "grad_norm": 0.194855734705925, + "learning_rate": 4.810053333333334e-05, + "loss": 2.3509757995605467, + "step": 28500 + }, + { + "epoch": 3.8133333333333335, + "grad_norm": 0.19078636169433594, + "learning_rate": 4.809386666666667e-05, + "loss": 2.3488845825195312, + "step": 28600 + }, + { + "epoch": 3.8266666666666667, + "grad_norm": 0.18988379836082458, + "learning_rate": 4.80872e-05, + "loss": 2.35125244140625, + "step": 28700 + }, + { + "epoch": 3.84, + "grad_norm": 0.1913130134344101, + "learning_rate": 4.8080533333333335e-05, + "loss": 2.3494662475585937, + "step": 28800 + }, + { + "epoch": 3.8533333333333335, + "grad_norm": 0.2060711681842804, + "learning_rate": 4.807386666666667e-05, + "loss": 2.3524136352539062, + "step": 28900 + }, + { + "epoch": 3.8666666666666667, + "grad_norm": 0.18792103230953217, + "learning_rate": 4.80672e-05, + "loss": 2.351210479736328, + "step": 29000 + }, + { + "epoch": 3.88, + "grad_norm": 0.2034904658794403, + "learning_rate": 4.806053333333334e-05, + "loss": 2.3502317810058595, + "step": 29100 + }, + { + "epoch": 3.8933333333333335, + "grad_norm": 0.20705494284629822, + "learning_rate": 4.805386666666667e-05, + "loss": 2.3528851318359374, + "step": 29200 + }, + { + "epoch": 3.9066666666666667, + "grad_norm": 0.17130215466022491, + "learning_rate": 4.80472e-05, + "loss": 2.3496728515625, + "step": 29300 + }, + { + "epoch": 3.92, + "grad_norm": 0.22938485443592072, + "learning_rate": 4.8040533333333335e-05, + "loss": 2.3508564758300783, + "step": 29400 + }, + { + "epoch": 3.9333333333333336, + "grad_norm": 0.20697031915187836, + "learning_rate": 4.8033866666666674e-05, + "loss": 2.350555419921875, + "step": 29500 + }, + { + "epoch": 3.9466666666666668, + "grad_norm": 0.21105030179023743, + "learning_rate": 4.80272e-05, + "loss": 2.3500137329101562, + "step": 29600 + }, + { + "epoch": 3.96, + "grad_norm": 0.1795365959405899, + "learning_rate": 4.802053333333333e-05, + "loss": 2.351229705810547, + "step": 29700 + }, + { + "epoch": 3.9733333333333336, + "grad_norm": 0.20336268842220306, + "learning_rate": 4.801386666666667e-05, + "loss": 2.3524740600585936, + "step": 29800 + }, + { + "epoch": 3.986666666666667, + "grad_norm": 0.18867026269435883, + "learning_rate": 4.8007200000000003e-05, + "loss": 2.35136474609375, + "step": 29900 + }, + { + "epoch": 4.0, + "grad_norm": 0.1865285336971283, + "learning_rate": 4.8000533333333336e-05, + "loss": 2.3508816528320313, + "step": 30000 + }, + { + "epoch": 4.013333333333334, + "grad_norm": 0.19620107114315033, + "learning_rate": 4.7993933333333335e-05, + "loss": 2.344427185058594, + "step": 30100 + }, + { + "epoch": 4.026666666666666, + "grad_norm": 0.19542329013347626, + "learning_rate": 4.798726666666667e-05, + "loss": 2.3426863098144532, + "step": 30200 + }, + { + "epoch": 4.04, + "grad_norm": 0.19271595776081085, + "learning_rate": 4.7980600000000006e-05, + "loss": 2.340071258544922, + "step": 30300 + }, + { + "epoch": 4.053333333333334, + "grad_norm": 0.1889171600341797, + "learning_rate": 4.797393333333334e-05, + "loss": 2.338631896972656, + "step": 30400 + }, + { + "epoch": 4.066666666666666, + "grad_norm": 0.19066178798675537, + "learning_rate": 4.796726666666667e-05, + "loss": 2.342739715576172, + "step": 30500 + }, + { + "epoch": 4.08, + "grad_norm": 0.1947835087776184, + "learning_rate": 4.79606e-05, + "loss": 2.3432049560546875, + "step": 30600 + }, + { + "epoch": 4.093333333333334, + "grad_norm": 0.21322356164455414, + "learning_rate": 4.7953933333333335e-05, + "loss": 2.342285614013672, + "step": 30700 + }, + { + "epoch": 4.1066666666666665, + "grad_norm": 0.20188263058662415, + "learning_rate": 4.794726666666667e-05, + "loss": 2.3427188110351564, + "step": 30800 + }, + { + "epoch": 4.12, + "grad_norm": 0.19048044085502625, + "learning_rate": 4.79406e-05, + "loss": 2.3455911254882813, + "step": 30900 + }, + { + "epoch": 4.133333333333334, + "grad_norm": 0.20373786985874176, + "learning_rate": 4.793393333333334e-05, + "loss": 2.34266845703125, + "step": 31000 + }, + { + "epoch": 4.1466666666666665, + "grad_norm": 0.19136583805084229, + "learning_rate": 4.792726666666667e-05, + "loss": 2.345565185546875, + "step": 31100 + }, + { + "epoch": 4.16, + "grad_norm": 0.20485562086105347, + "learning_rate": 4.79206e-05, + "loss": 2.3444659423828127, + "step": 31200 + }, + { + "epoch": 4.173333333333334, + "grad_norm": 0.19716604053974152, + "learning_rate": 4.7913933333333336e-05, + "loss": 2.3462744140625, + "step": 31300 + }, + { + "epoch": 4.1866666666666665, + "grad_norm": 0.1901930719614029, + "learning_rate": 4.790726666666667e-05, + "loss": 2.3410409545898436, + "step": 31400 + }, + { + "epoch": 4.2, + "grad_norm": 0.19195866584777832, + "learning_rate": 4.79006e-05, + "loss": 2.3443292236328124, + "step": 31500 + }, + { + "epoch": 4.213333333333333, + "grad_norm": 0.19171933829784393, + "learning_rate": 4.789393333333333e-05, + "loss": 2.3432662963867186, + "step": 31600 + }, + { + "epoch": 4.226666666666667, + "grad_norm": 0.20632386207580566, + "learning_rate": 4.788726666666667e-05, + "loss": 2.3424139404296875, + "step": 31700 + }, + { + "epoch": 4.24, + "grad_norm": 0.20935772359371185, + "learning_rate": 4.7880600000000004e-05, + "loss": 2.3445693969726564, + "step": 31800 + }, + { + "epoch": 4.253333333333333, + "grad_norm": 0.2092011719942093, + "learning_rate": 4.7873933333333336e-05, + "loss": 2.3450819396972657, + "step": 31900 + }, + { + "epoch": 4.266666666666667, + "grad_norm": 0.18511556088924408, + "learning_rate": 4.786726666666667e-05, + "loss": 2.3434269714355467, + "step": 32000 + }, + { + "epoch": 4.28, + "grad_norm": 0.19721107184886932, + "learning_rate": 4.786066666666667e-05, + "loss": 2.3466552734375, + "step": 32100 + }, + { + "epoch": 4.293333333333333, + "grad_norm": 0.20387394726276398, + "learning_rate": 4.7854000000000006e-05, + "loss": 2.344354705810547, + "step": 32200 + }, + { + "epoch": 4.306666666666667, + "grad_norm": 0.1933874487876892, + "learning_rate": 4.784733333333333e-05, + "loss": 2.3450242614746095, + "step": 32300 + }, + { + "epoch": 4.32, + "grad_norm": 0.18852448463439941, + "learning_rate": 4.7840666666666664e-05, + "loss": 2.345384368896484, + "step": 32400 + }, + { + "epoch": 4.333333333333333, + "grad_norm": 0.1856076568365097, + "learning_rate": 4.7834e-05, + "loss": 2.3448046875, + "step": 32500 + }, + { + "epoch": 4.346666666666667, + "grad_norm": 0.1768845170736313, + "learning_rate": 4.7827333333333335e-05, + "loss": 2.3447705078125, + "step": 32600 + }, + { + "epoch": 4.36, + "grad_norm": 0.2036508321762085, + "learning_rate": 4.782066666666667e-05, + "loss": 2.3455548095703125, + "step": 32700 + }, + { + "epoch": 4.373333333333333, + "grad_norm": 0.2223418802022934, + "learning_rate": 4.7814e-05, + "loss": 2.345106353759766, + "step": 32800 + }, + { + "epoch": 4.386666666666667, + "grad_norm": 0.19732633233070374, + "learning_rate": 4.780733333333334e-05, + "loss": 2.34563720703125, + "step": 32900 + }, + { + "epoch": 4.4, + "grad_norm": 0.19825312495231628, + "learning_rate": 4.780066666666667e-05, + "loss": 2.3472279357910155, + "step": 33000 + }, + { + "epoch": 4.413333333333333, + "grad_norm": 0.20383819937705994, + "learning_rate": 4.7794e-05, + "loss": 2.3474839782714843, + "step": 33100 + }, + { + "epoch": 4.426666666666667, + "grad_norm": 0.18383854627609253, + "learning_rate": 4.7787333333333336e-05, + "loss": 2.347451171875, + "step": 33200 + }, + { + "epoch": 4.44, + "grad_norm": 0.2009461224079132, + "learning_rate": 4.778066666666667e-05, + "loss": 2.3456491088867186, + "step": 33300 + }, + { + "epoch": 4.453333333333333, + "grad_norm": 0.1955096274614334, + "learning_rate": 4.7774e-05, + "loss": 2.347562255859375, + "step": 33400 + }, + { + "epoch": 4.466666666666667, + "grad_norm": 0.1971255987882614, + "learning_rate": 4.776733333333334e-05, + "loss": 2.3455210876464845, + "step": 33500 + }, + { + "epoch": 4.48, + "grad_norm": 0.2104266732931137, + "learning_rate": 4.776066666666667e-05, + "loss": 2.3482284545898438, + "step": 33600 + }, + { + "epoch": 4.493333333333333, + "grad_norm": 0.19855403900146484, + "learning_rate": 4.7754000000000004e-05, + "loss": 2.345506439208984, + "step": 33700 + }, + { + "epoch": 4.506666666666667, + "grad_norm": 0.1903480589389801, + "learning_rate": 4.7747333333333336e-05, + "loss": 2.345941925048828, + "step": 33800 + }, + { + "epoch": 4.52, + "grad_norm": 0.18413390219211578, + "learning_rate": 4.774066666666667e-05, + "loss": 2.345931091308594, + "step": 33900 + }, + { + "epoch": 4.533333333333333, + "grad_norm": 0.2099205106496811, + "learning_rate": 4.7734e-05, + "loss": 2.34525146484375, + "step": 34000 + }, + { + "epoch": 4.546666666666667, + "grad_norm": 0.19890472292900085, + "learning_rate": 4.77274e-05, + "loss": 2.3454127502441406, + "step": 34100 + }, + { + "epoch": 4.5600000000000005, + "grad_norm": 0.1928263008594513, + "learning_rate": 4.772073333333333e-05, + "loss": 2.3484063720703126, + "step": 34200 + }, + { + "epoch": 4.573333333333333, + "grad_norm": 0.19899751245975494, + "learning_rate": 4.771406666666667e-05, + "loss": 2.344409637451172, + "step": 34300 + }, + { + "epoch": 4.586666666666667, + "grad_norm": 0.19718094170093536, + "learning_rate": 4.77074e-05, + "loss": 2.346121520996094, + "step": 34400 + }, + { + "epoch": 4.6, + "grad_norm": 0.20367039740085602, + "learning_rate": 4.7700733333333336e-05, + "loss": 2.3464027404785157, + "step": 34500 + }, + { + "epoch": 4.613333333333333, + "grad_norm": 0.2027977555990219, + "learning_rate": 4.769406666666667e-05, + "loss": 2.346643371582031, + "step": 34600 + }, + { + "epoch": 4.626666666666667, + "grad_norm": 0.19116739928722382, + "learning_rate": 4.768740000000001e-05, + "loss": 2.3448785400390624, + "step": 34700 + }, + { + "epoch": 4.64, + "grad_norm": 0.1741366684436798, + "learning_rate": 4.768073333333334e-05, + "loss": 2.3467585754394533, + "step": 34800 + }, + { + "epoch": 4.653333333333333, + "grad_norm": 0.19366861879825592, + "learning_rate": 4.7674066666666665e-05, + "loss": 2.346854248046875, + "step": 34900 + }, + { + "epoch": 4.666666666666667, + "grad_norm": 0.1961996853351593, + "learning_rate": 4.7667400000000004e-05, + "loss": 2.346597442626953, + "step": 35000 + }, + { + "epoch": 4.68, + "grad_norm": 0.20493026077747345, + "learning_rate": 4.7660733333333336e-05, + "loss": 2.3467396545410155, + "step": 35100 + }, + { + "epoch": 4.693333333333333, + "grad_norm": 0.19343268871307373, + "learning_rate": 4.765406666666667e-05, + "loss": 2.345442352294922, + "step": 35200 + }, + { + "epoch": 4.706666666666667, + "grad_norm": 0.19839325547218323, + "learning_rate": 4.76474e-05, + "loss": 2.348248291015625, + "step": 35300 + }, + { + "epoch": 4.72, + "grad_norm": 0.19443462789058685, + "learning_rate": 4.764073333333334e-05, + "loss": 2.3478456115722657, + "step": 35400 + }, + { + "epoch": 4.733333333333333, + "grad_norm": 0.18703633546829224, + "learning_rate": 4.763406666666667e-05, + "loss": 2.3447303771972656, + "step": 35500 + }, + { + "epoch": 4.746666666666667, + "grad_norm": 0.19159509241580963, + "learning_rate": 4.76274e-05, + "loss": 2.3463864135742187, + "step": 35600 + }, + { + "epoch": 4.76, + "grad_norm": 0.19903169572353363, + "learning_rate": 4.7620733333333336e-05, + "loss": 2.347983093261719, + "step": 35700 + }, + { + "epoch": 4.773333333333333, + "grad_norm": 0.19707246124744415, + "learning_rate": 4.761406666666667e-05, + "loss": 2.3435577392578124, + "step": 35800 + }, + { + "epoch": 4.786666666666667, + "grad_norm": 0.183243989944458, + "learning_rate": 4.76074e-05, + "loss": 2.346152038574219, + "step": 35900 + }, + { + "epoch": 4.8, + "grad_norm": 0.1864614188671112, + "learning_rate": 4.760073333333333e-05, + "loss": 2.3478399658203126, + "step": 36000 + }, + { + "epoch": 4.8133333333333335, + "grad_norm": 0.19538547098636627, + "learning_rate": 4.759413333333333e-05, + "loss": 2.34772705078125, + "step": 36100 + }, + { + "epoch": 4.826666666666666, + "grad_norm": 0.19601057469844818, + "learning_rate": 4.758746666666667e-05, + "loss": 2.3468177795410154, + "step": 36200 + }, + { + "epoch": 4.84, + "grad_norm": 0.19639572501182556, + "learning_rate": 4.7580800000000004e-05, + "loss": 2.3478041076660157, + "step": 36300 + }, + { + "epoch": 4.8533333333333335, + "grad_norm": 0.19426213204860687, + "learning_rate": 4.7574133333333336e-05, + "loss": 2.345642547607422, + "step": 36400 + }, + { + "epoch": 4.866666666666667, + "grad_norm": 0.17866654694080353, + "learning_rate": 4.756746666666667e-05, + "loss": 2.3476348876953126, + "step": 36500 + }, + { + "epoch": 4.88, + "grad_norm": 0.20611488819122314, + "learning_rate": 4.75608e-05, + "loss": 2.3455621337890626, + "step": 36600 + }, + { + "epoch": 4.8933333333333335, + "grad_norm": 0.19792433083057404, + "learning_rate": 4.755413333333333e-05, + "loss": 2.3475059509277343, + "step": 36700 + }, + { + "epoch": 4.906666666666666, + "grad_norm": 0.20012043416500092, + "learning_rate": 4.7547466666666665e-05, + "loss": 2.3476327514648436, + "step": 36800 + }, + { + "epoch": 4.92, + "grad_norm": 0.21811543405056, + "learning_rate": 4.7540800000000004e-05, + "loss": 2.3479005432128908, + "step": 36900 + }, + { + "epoch": 4.933333333333334, + "grad_norm": 0.18837958574295044, + "learning_rate": 4.7534133333333336e-05, + "loss": 2.3472393798828124, + "step": 37000 + }, + { + "epoch": 4.946666666666666, + "grad_norm": 0.20428119599819183, + "learning_rate": 4.752746666666667e-05, + "loss": 2.3473336791992185, + "step": 37100 + }, + { + "epoch": 4.96, + "grad_norm": 0.2100653052330017, + "learning_rate": 4.752080000000001e-05, + "loss": 2.3485343933105467, + "step": 37200 + }, + { + "epoch": 4.973333333333334, + "grad_norm": 0.19952954351902008, + "learning_rate": 4.751413333333334e-05, + "loss": 2.347123718261719, + "step": 37300 + }, + { + "epoch": 4.986666666666666, + "grad_norm": 0.19739681482315063, + "learning_rate": 4.7507466666666665e-05, + "loss": 2.347565155029297, + "step": 37400 + }, + { + "epoch": 5.0, + "grad_norm": 0.20094037055969238, + "learning_rate": 4.75008e-05, + "loss": 2.3468731689453124, + "step": 37500 + }, + { + "epoch": 5.013333333333334, + "grad_norm": 0.21585266292095184, + "learning_rate": 4.749413333333334e-05, + "loss": 2.333679962158203, + "step": 37600 + }, + { + "epoch": 5.026666666666666, + "grad_norm": 0.20911413431167603, + "learning_rate": 4.748746666666667e-05, + "loss": 2.3350621032714844, + "step": 37700 + }, + { + "epoch": 5.04, + "grad_norm": 0.19561605155467987, + "learning_rate": 4.74808e-05, + "loss": 2.334278564453125, + "step": 37800 + }, + { + "epoch": 5.053333333333334, + "grad_norm": 0.2007005661725998, + "learning_rate": 4.747413333333334e-05, + "loss": 2.3355723571777345, + "step": 37900 + }, + { + "epoch": 5.066666666666666, + "grad_norm": 0.21478916704654694, + "learning_rate": 4.746746666666667e-05, + "loss": 2.335912628173828, + "step": 38000 + }, + { + "epoch": 5.08, + "grad_norm": 0.20300929248332977, + "learning_rate": 4.74608e-05, + "loss": 2.3348677062988283, + "step": 38100 + }, + { + "epoch": 5.093333333333334, + "grad_norm": 0.1893633008003235, + "learning_rate": 4.7454200000000004e-05, + "loss": 2.3340078735351564, + "step": 38200 + }, + { + "epoch": 5.1066666666666665, + "grad_norm": 0.20675773918628693, + "learning_rate": 4.7447533333333336e-05, + "loss": 2.3374041748046874, + "step": 38300 + }, + { + "epoch": 5.12, + "grad_norm": 0.21601155400276184, + "learning_rate": 4.744086666666667e-05, + "loss": 2.3355015563964843, + "step": 38400 + }, + { + "epoch": 5.133333333333334, + "grad_norm": 0.20173364877700806, + "learning_rate": 4.74342e-05, + "loss": 2.336921844482422, + "step": 38500 + }, + { + "epoch": 5.1466666666666665, + "grad_norm": 0.19146205484867096, + "learning_rate": 4.742753333333333e-05, + "loss": 2.338092956542969, + "step": 38600 + }, + { + "epoch": 5.16, + "grad_norm": 0.19151638448238373, + "learning_rate": 4.742086666666667e-05, + "loss": 2.337191162109375, + "step": 38700 + }, + { + "epoch": 5.173333333333334, + "grad_norm": 0.19342660903930664, + "learning_rate": 4.7414200000000004e-05, + "loss": 2.338902893066406, + "step": 38800 + }, + { + "epoch": 5.1866666666666665, + "grad_norm": 0.18506617844104767, + "learning_rate": 4.7407533333333336e-05, + "loss": 2.3370294189453125, + "step": 38900 + }, + { + "epoch": 5.2, + "grad_norm": 0.1852942407131195, + "learning_rate": 4.740086666666667e-05, + "loss": 2.3374237060546874, + "step": 39000 + }, + { + "epoch": 5.213333333333333, + "grad_norm": 0.22944355010986328, + "learning_rate": 4.73942e-05, + "loss": 2.336438751220703, + "step": 39100 + }, + { + "epoch": 5.226666666666667, + "grad_norm": 0.19692735373973846, + "learning_rate": 4.738753333333333e-05, + "loss": 2.3369683837890625, + "step": 39200 + }, + { + "epoch": 5.24, + "grad_norm": 0.21631871163845062, + "learning_rate": 4.7380866666666666e-05, + "loss": 2.3371484375, + "step": 39300 + }, + { + "epoch": 5.253333333333333, + "grad_norm": 0.20942172408103943, + "learning_rate": 4.7374200000000005e-05, + "loss": 2.3369624328613283, + "step": 39400 + }, + { + "epoch": 5.266666666666667, + "grad_norm": 0.1939464509487152, + "learning_rate": 4.736753333333334e-05, + "loss": 2.337432556152344, + "step": 39500 + }, + { + "epoch": 5.28, + "grad_norm": 0.17876707017421722, + "learning_rate": 4.736086666666667e-05, + "loss": 2.3396649169921875, + "step": 39600 + }, + { + "epoch": 5.293333333333333, + "grad_norm": 0.21455919742584229, + "learning_rate": 4.73542e-05, + "loss": 2.3403550720214845, + "step": 39700 + }, + { + "epoch": 5.306666666666667, + "grad_norm": 0.19953106343746185, + "learning_rate": 4.734753333333334e-05, + "loss": 2.3371241760253905, + "step": 39800 + }, + { + "epoch": 5.32, + "grad_norm": 0.19843876361846924, + "learning_rate": 4.7340866666666666e-05, + "loss": 2.3368731689453126, + "step": 39900 + }, + { + "epoch": 5.333333333333333, + "grad_norm": 0.20457053184509277, + "learning_rate": 4.73342e-05, + "loss": 2.3382992553710937, + "step": 40000 + }, + { + "epoch": 5.346666666666667, + "grad_norm": 0.195728600025177, + "learning_rate": 4.732753333333334e-05, + "loss": 2.337715911865234, + "step": 40100 + }, + { + "epoch": 5.36, + "grad_norm": 0.19587790966033936, + "learning_rate": 4.7320933333333336e-05, + "loss": 2.3404110717773436, + "step": 40200 + }, + { + "epoch": 5.373333333333333, + "grad_norm": 0.20648671686649323, + "learning_rate": 4.731426666666667e-05, + "loss": 2.3392234802246095, + "step": 40300 + }, + { + "epoch": 5.386666666666667, + "grad_norm": 0.1902915984392166, + "learning_rate": 4.73076e-05, + "loss": 2.3366790771484376, + "step": 40400 + }, + { + "epoch": 5.4, + "grad_norm": 0.19474172592163086, + "learning_rate": 4.730093333333333e-05, + "loss": 2.337915344238281, + "step": 40500 + }, + { + "epoch": 5.413333333333333, + "grad_norm": 0.19446231424808502, + "learning_rate": 4.729426666666667e-05, + "loss": 2.3386886596679686, + "step": 40600 + }, + { + "epoch": 5.426666666666667, + "grad_norm": 0.18280309438705444, + "learning_rate": 4.7287600000000004e-05, + "loss": 2.3403004455566405, + "step": 40700 + }, + { + "epoch": 5.44, + "grad_norm": 0.1899874061346054, + "learning_rate": 4.728093333333334e-05, + "loss": 2.3395709228515624, + "step": 40800 + }, + { + "epoch": 5.453333333333333, + "grad_norm": 0.21245285868644714, + "learning_rate": 4.727426666666667e-05, + "loss": 2.341641693115234, + "step": 40900 + }, + { + "epoch": 5.466666666666667, + "grad_norm": 0.18492910265922546, + "learning_rate": 4.72676e-05, + "loss": 2.338828277587891, + "step": 41000 + }, + { + "epoch": 5.48, + "grad_norm": 0.19576863944530487, + "learning_rate": 4.7260933333333334e-05, + "loss": 2.340592498779297, + "step": 41100 + }, + { + "epoch": 5.493333333333333, + "grad_norm": 0.21991156041622162, + "learning_rate": 4.7254266666666666e-05, + "loss": 2.3374070739746093, + "step": 41200 + }, + { + "epoch": 5.506666666666667, + "grad_norm": 0.2011844664812088, + "learning_rate": 4.7247600000000005e-05, + "loss": 2.340482025146484, + "step": 41300 + }, + { + "epoch": 5.52, + "grad_norm": 0.1887616068124771, + "learning_rate": 4.724093333333334e-05, + "loss": 2.3403477478027344, + "step": 41400 + }, + { + "epoch": 5.533333333333333, + "grad_norm": 0.2083723396062851, + "learning_rate": 4.723426666666667e-05, + "loss": 2.338939361572266, + "step": 41500 + }, + { + "epoch": 5.546666666666667, + "grad_norm": 0.20391573011875153, + "learning_rate": 4.72276e-05, + "loss": 2.341011962890625, + "step": 41600 + }, + { + "epoch": 5.5600000000000005, + "grad_norm": 0.2055550515651703, + "learning_rate": 4.7220933333333334e-05, + "loss": 2.3417536926269533, + "step": 41700 + }, + { + "epoch": 5.573333333333333, + "grad_norm": 0.20119526982307434, + "learning_rate": 4.7214266666666666e-05, + "loss": 2.341081390380859, + "step": 41800 + }, + { + "epoch": 5.586666666666667, + "grad_norm": 0.19019430875778198, + "learning_rate": 4.7207600000000005e-05, + "loss": 2.3428114318847655, + "step": 41900 + }, + { + "epoch": 5.6, + "grad_norm": 0.21287046372890472, + "learning_rate": 4.720093333333334e-05, + "loss": 2.3393617248535157, + "step": 42000 + }, + { + "epoch": 5.613333333333333, + "grad_norm": 0.19636501371860504, + "learning_rate": 4.719426666666667e-05, + "loss": 2.341305694580078, + "step": 42100 + }, + { + "epoch": 5.626666666666667, + "grad_norm": 0.19112545251846313, + "learning_rate": 4.718766666666667e-05, + "loss": 2.338633728027344, + "step": 42200 + }, + { + "epoch": 5.64, + "grad_norm": 0.2038842886686325, + "learning_rate": 4.7181e-05, + "loss": 2.341297302246094, + "step": 42300 + }, + { + "epoch": 5.653333333333333, + "grad_norm": 0.20965079963207245, + "learning_rate": 4.717433333333334e-05, + "loss": 2.341322784423828, + "step": 42400 + }, + { + "epoch": 5.666666666666667, + "grad_norm": 0.2007293701171875, + "learning_rate": 4.716766666666667e-05, + "loss": 2.3385604858398437, + "step": 42500 + }, + { + "epoch": 5.68, + "grad_norm": 0.2063182145357132, + "learning_rate": 4.7161e-05, + "loss": 2.33922119140625, + "step": 42600 + }, + { + "epoch": 5.693333333333333, + "grad_norm": 0.2027292102575302, + "learning_rate": 4.715433333333334e-05, + "loss": 2.3407470703125, + "step": 42700 + }, + { + "epoch": 5.706666666666667, + "grad_norm": 0.1970498412847519, + "learning_rate": 4.714766666666667e-05, + "loss": 2.34189697265625, + "step": 42800 + }, + { + "epoch": 5.72, + "grad_norm": 0.21546319127082825, + "learning_rate": 4.7141e-05, + "loss": 2.3410997009277343, + "step": 42900 + }, + { + "epoch": 5.733333333333333, + "grad_norm": 0.20953406393527985, + "learning_rate": 4.7134333333333334e-05, + "loss": 2.341014404296875, + "step": 43000 + }, + { + "epoch": 5.746666666666667, + "grad_norm": 0.18453386425971985, + "learning_rate": 4.712766666666667e-05, + "loss": 2.3420458984375, + "step": 43100 + }, + { + "epoch": 5.76, + "grad_norm": 0.18693557381629944, + "learning_rate": 4.7121000000000005e-05, + "loss": 2.3417478942871095, + "step": 43200 + }, + { + "epoch": 5.773333333333333, + "grad_norm": 0.20244468748569489, + "learning_rate": 4.711433333333334e-05, + "loss": 2.341094970703125, + "step": 43300 + }, + { + "epoch": 5.786666666666667, + "grad_norm": 0.2122134268283844, + "learning_rate": 4.710766666666667e-05, + "loss": 2.339507598876953, + "step": 43400 + }, + { + "epoch": 5.8, + "grad_norm": 0.19113102555274963, + "learning_rate": 4.7101e-05, + "loss": 2.3414321899414063, + "step": 43500 + }, + { + "epoch": 5.8133333333333335, + "grad_norm": 0.2206200510263443, + "learning_rate": 4.7094333333333334e-05, + "loss": 2.341671600341797, + "step": 43600 + }, + { + "epoch": 5.826666666666666, + "grad_norm": 0.20389395952224731, + "learning_rate": 4.7087666666666666e-05, + "loss": 2.340543060302734, + "step": 43700 + }, + { + "epoch": 5.84, + "grad_norm": 0.20174798369407654, + "learning_rate": 4.7081000000000005e-05, + "loss": 2.339455261230469, + "step": 43800 + }, + { + "epoch": 5.8533333333333335, + "grad_norm": 0.20874814689159393, + "learning_rate": 4.707433333333334e-05, + "loss": 2.340840301513672, + "step": 43900 + }, + { + "epoch": 5.866666666666667, + "grad_norm": 0.19134193658828735, + "learning_rate": 4.706766666666667e-05, + "loss": 2.341136016845703, + "step": 44000 + }, + { + "epoch": 5.88, + "grad_norm": 0.21130426228046417, + "learning_rate": 4.7061e-05, + "loss": 2.341613311767578, + "step": 44100 + }, + { + "epoch": 5.8933333333333335, + "grad_norm": 0.23179572820663452, + "learning_rate": 4.70544e-05, + "loss": 2.3433583068847654, + "step": 44200 + }, + { + "epoch": 5.906666666666666, + "grad_norm": 0.1910688281059265, + "learning_rate": 4.704773333333334e-05, + "loss": 2.3415071105957033, + "step": 44300 + }, + { + "epoch": 5.92, + "grad_norm": 0.20032565295696259, + "learning_rate": 4.7041066666666666e-05, + "loss": 2.3411441040039063, + "step": 44400 + }, + { + "epoch": 5.933333333333334, + "grad_norm": 0.19156421720981598, + "learning_rate": 4.70344e-05, + "loss": 2.3405520629882814, + "step": 44500 + }, + { + "epoch": 5.946666666666666, + "grad_norm": 0.1907392293214798, + "learning_rate": 4.702773333333334e-05, + "loss": 2.3425755310058594, + "step": 44600 + }, + { + "epoch": 5.96, + "grad_norm": 0.200932115316391, + "learning_rate": 4.702106666666667e-05, + "loss": 2.3439457702636717, + "step": 44700 + }, + { + "epoch": 5.973333333333334, + "grad_norm": 0.2054533064365387, + "learning_rate": 4.70144e-05, + "loss": 2.3415347290039064, + "step": 44800 + }, + { + "epoch": 5.986666666666666, + "grad_norm": 0.20519991219043732, + "learning_rate": 4.7007733333333334e-05, + "loss": 2.3422901916503904, + "step": 44900 + }, + { + "epoch": 6.0, + "grad_norm": 0.19351975619792938, + "learning_rate": 4.700106666666667e-05, + "loss": 2.343433380126953, + "step": 45000 + }, + { + "epoch": 6.013333333333334, + "grad_norm": 0.20407870411872864, + "learning_rate": 4.69944e-05, + "loss": 2.3262948608398437, + "step": 45100 + }, + { + "epoch": 6.026666666666666, + "grad_norm": 0.19466857612133026, + "learning_rate": 4.698773333333333e-05, + "loss": 2.326324462890625, + "step": 45200 + }, + { + "epoch": 6.04, + "grad_norm": 0.20036247372627258, + "learning_rate": 4.698106666666667e-05, + "loss": 2.3274658203125, + "step": 45300 + }, + { + "epoch": 6.053333333333334, + "grad_norm": 0.20382268726825714, + "learning_rate": 4.69744e-05, + "loss": 2.325162353515625, + "step": 45400 + }, + { + "epoch": 6.066666666666666, + "grad_norm": 0.21262048184871674, + "learning_rate": 4.6967733333333334e-05, + "loss": 2.3246685791015627, + "step": 45500 + }, + { + "epoch": 6.08, + "grad_norm": 0.19266580045223236, + "learning_rate": 4.696106666666667e-05, + "loss": 2.3265760803222655, + "step": 45600 + }, + { + "epoch": 6.093333333333334, + "grad_norm": 0.1924133151769638, + "learning_rate": 4.6954400000000006e-05, + "loss": 2.3272021484375, + "step": 45700 + }, + { + "epoch": 6.1066666666666665, + "grad_norm": 0.1988048404455185, + "learning_rate": 4.694773333333334e-05, + "loss": 2.327220916748047, + "step": 45800 + }, + { + "epoch": 6.12, + "grad_norm": 0.1879425197839737, + "learning_rate": 4.6941066666666663e-05, + "loss": 2.328949737548828, + "step": 45900 + }, + { + "epoch": 6.133333333333334, + "grad_norm": 0.23073047399520874, + "learning_rate": 4.69344e-05, + "loss": 2.328899230957031, + "step": 46000 + }, + { + "epoch": 6.1466666666666665, + "grad_norm": 0.20694105327129364, + "learning_rate": 4.6927733333333335e-05, + "loss": 2.329393005371094, + "step": 46100 + }, + { + "epoch": 6.16, + "grad_norm": 0.2188512235879898, + "learning_rate": 4.6921133333333334e-05, + "loss": 2.3258409118652343, + "step": 46200 + }, + { + "epoch": 6.173333333333334, + "grad_norm": 0.18700923025608063, + "learning_rate": 4.6914466666666666e-05, + "loss": 2.331009979248047, + "step": 46300 + }, + { + "epoch": 6.1866666666666665, + "grad_norm": 0.20359359681606293, + "learning_rate": 4.69078e-05, + "loss": 2.3292669677734374, + "step": 46400 + }, + { + "epoch": 6.2, + "grad_norm": 0.22610503435134888, + "learning_rate": 4.690113333333334e-05, + "loss": 2.330577850341797, + "step": 46500 + }, + { + "epoch": 6.213333333333333, + "grad_norm": 0.18864652514457703, + "learning_rate": 4.689446666666667e-05, + "loss": 2.330567626953125, + "step": 46600 + }, + { + "epoch": 6.226666666666667, + "grad_norm": 0.20041510462760925, + "learning_rate": 4.68878e-05, + "loss": 2.327003173828125, + "step": 46700 + }, + { + "epoch": 6.24, + "grad_norm": 0.21242272853851318, + "learning_rate": 4.688113333333334e-05, + "loss": 2.3281683349609374, + "step": 46800 + }, + { + "epoch": 6.253333333333333, + "grad_norm": 0.19361090660095215, + "learning_rate": 4.6874466666666666e-05, + "loss": 2.331831512451172, + "step": 46900 + }, + { + "epoch": 6.266666666666667, + "grad_norm": 0.20165066421031952, + "learning_rate": 4.68678e-05, + "loss": 2.3307310485839845, + "step": 47000 + }, + { + "epoch": 6.28, + "grad_norm": 0.18842047452926636, + "learning_rate": 4.686113333333334e-05, + "loss": 2.3280589294433596, + "step": 47100 + }, + { + "epoch": 6.293333333333333, + "grad_norm": 0.2256300151348114, + "learning_rate": 4.685446666666667e-05, + "loss": 2.3284527587890627, + "step": 47200 + }, + { + "epoch": 6.306666666666667, + "grad_norm": 0.18087539076805115, + "learning_rate": 4.68478e-05, + "loss": 2.3301324462890625, + "step": 47300 + }, + { + "epoch": 6.32, + "grad_norm": 0.207829549908638, + "learning_rate": 4.6841133333333335e-05, + "loss": 2.330213623046875, + "step": 47400 + }, + { + "epoch": 6.333333333333333, + "grad_norm": 0.19543009996414185, + "learning_rate": 4.6834466666666674e-05, + "loss": 2.3290335083007814, + "step": 47500 + }, + { + "epoch": 6.346666666666667, + "grad_norm": 0.2060248702764511, + "learning_rate": 4.6827800000000006e-05, + "loss": 2.331068572998047, + "step": 47600 + }, + { + "epoch": 6.36, + "grad_norm": 0.2179960161447525, + "learning_rate": 4.682113333333333e-05, + "loss": 2.330615997314453, + "step": 47700 + }, + { + "epoch": 6.373333333333333, + "grad_norm": 0.22476692497730255, + "learning_rate": 4.681446666666667e-05, + "loss": 2.3329974365234376, + "step": 47800 + }, + { + "epoch": 6.386666666666667, + "grad_norm": 0.1948496699333191, + "learning_rate": 4.68078e-05, + "loss": 2.3322357177734374, + "step": 47900 + }, + { + "epoch": 6.4, + "grad_norm": 0.19658160209655762, + "learning_rate": 4.6801133333333335e-05, + "loss": 2.329741668701172, + "step": 48000 + }, + { + "epoch": 6.413333333333333, + "grad_norm": 0.21576018631458282, + "learning_rate": 4.679446666666667e-05, + "loss": 2.331051788330078, + "step": 48100 + }, + { + "epoch": 6.426666666666667, + "grad_norm": 0.20465338230133057, + "learning_rate": 4.6787866666666666e-05, + "loss": 2.3314564514160154, + "step": 48200 + }, + { + "epoch": 6.44, + "grad_norm": 0.2254284769296646, + "learning_rate": 4.6781200000000005e-05, + "loss": 2.3306893920898437, + "step": 48300 + }, + { + "epoch": 6.453333333333333, + "grad_norm": 0.21523387730121613, + "learning_rate": 4.677453333333334e-05, + "loss": 2.3328369140625, + "step": 48400 + }, + { + "epoch": 6.466666666666667, + "grad_norm": 0.20994578301906586, + "learning_rate": 4.676786666666667e-05, + "loss": 2.3308122253417967, + "step": 48500 + }, + { + "epoch": 6.48, + "grad_norm": 0.21397413313388824, + "learning_rate": 4.67612e-05, + "loss": 2.3299708557128906, + "step": 48600 + }, + { + "epoch": 6.493333333333333, + "grad_norm": 0.20089605450630188, + "learning_rate": 4.6754533333333334e-05, + "loss": 2.3305317687988283, + "step": 48700 + }, + { + "epoch": 6.506666666666667, + "grad_norm": 0.21305248141288757, + "learning_rate": 4.674786666666667e-05, + "loss": 2.3314739990234377, + "step": 48800 + }, + { + "epoch": 6.52, + "grad_norm": 0.20678336918354034, + "learning_rate": 4.67412e-05, + "loss": 2.3338267517089846, + "step": 48900 + }, + { + "epoch": 6.533333333333333, + "grad_norm": 0.20186908543109894, + "learning_rate": 4.673453333333334e-05, + "loss": 2.3309475708007814, + "step": 49000 + }, + { + "epoch": 6.546666666666667, + "grad_norm": 0.1907065063714981, + "learning_rate": 4.672786666666667e-05, + "loss": 2.3316998291015625, + "step": 49100 + }, + { + "epoch": 6.5600000000000005, + "grad_norm": 0.21854570508003235, + "learning_rate": 4.67212e-05, + "loss": 2.3346012878417968, + "step": 49200 + }, + { + "epoch": 6.573333333333333, + "grad_norm": 0.1847628653049469, + "learning_rate": 4.6714533333333335e-05, + "loss": 2.3357057189941406, + "step": 49300 + }, + { + "epoch": 6.586666666666667, + "grad_norm": 0.19201835989952087, + "learning_rate": 4.670786666666667e-05, + "loss": 2.3363993835449217, + "step": 49400 + }, + { + "epoch": 6.6, + "grad_norm": 0.19336426258087158, + "learning_rate": 4.67012e-05, + "loss": 2.3319854736328125, + "step": 49500 + }, + { + "epoch": 6.613333333333333, + "grad_norm": 0.20099902153015137, + "learning_rate": 4.669453333333333e-05, + "loss": 2.3336613464355467, + "step": 49600 + }, + { + "epoch": 6.626666666666667, + "grad_norm": 0.1986514925956726, + "learning_rate": 4.668786666666667e-05, + "loss": 2.3317831420898436, + "step": 49700 + }, + { + "epoch": 6.64, + "grad_norm": 0.20249810814857483, + "learning_rate": 4.66812e-05, + "loss": 2.3329707336425782, + "step": 49800 + }, + { + "epoch": 6.653333333333333, + "grad_norm": 0.21656836569309235, + "learning_rate": 4.6674533333333335e-05, + "loss": 2.3322386169433593, + "step": 49900 + }, + { + "epoch": 6.666666666666667, + "grad_norm": 0.19392716884613037, + "learning_rate": 4.666786666666667e-05, + "loss": 2.334392852783203, + "step": 50000 + }, + { + "epoch": 6.68, + "grad_norm": 0.19600430130958557, + "learning_rate": 4.6661200000000007e-05, + "loss": 2.3346022033691405, + "step": 50100 + }, + { + "epoch": 6.693333333333333, + "grad_norm": 0.21334628760814667, + "learning_rate": 4.6654600000000006e-05, + "loss": 2.3344834899902343, + "step": 50200 + }, + { + "epoch": 6.706666666666667, + "grad_norm": 0.19854342937469482, + "learning_rate": 4.664793333333334e-05, + "loss": 2.3333599853515623, + "step": 50300 + }, + { + "epoch": 6.72, + "grad_norm": 0.2086271196603775, + "learning_rate": 4.664126666666666e-05, + "loss": 2.335559997558594, + "step": 50400 + }, + { + "epoch": 6.733333333333333, + "grad_norm": 0.20393237471580505, + "learning_rate": 4.66346e-05, + "loss": 2.3350341796875, + "step": 50500 + }, + { + "epoch": 6.746666666666667, + "grad_norm": 0.2037380337715149, + "learning_rate": 4.6627933333333335e-05, + "loss": 2.3359445190429686, + "step": 50600 + }, + { + "epoch": 6.76, + "grad_norm": 0.2010214924812317, + "learning_rate": 4.662126666666667e-05, + "loss": 2.333213348388672, + "step": 50700 + }, + { + "epoch": 6.773333333333333, + "grad_norm": 0.211711123585701, + "learning_rate": 4.6614600000000006e-05, + "loss": 2.333146209716797, + "step": 50800 + }, + { + "epoch": 6.786666666666667, + "grad_norm": 0.20048975944519043, + "learning_rate": 4.660793333333334e-05, + "loss": 2.332876892089844, + "step": 50900 + }, + { + "epoch": 6.8, + "grad_norm": 0.20532432198524475, + "learning_rate": 4.660126666666667e-05, + "loss": 2.335528564453125, + "step": 51000 + }, + { + "epoch": 6.8133333333333335, + "grad_norm": 0.19597899913787842, + "learning_rate": 4.65946e-05, + "loss": 2.3326602172851563, + "step": 51100 + }, + { + "epoch": 6.826666666666666, + "grad_norm": 0.20233699679374695, + "learning_rate": 4.6587933333333335e-05, + "loss": 2.3346743774414063, + "step": 51200 + }, + { + "epoch": 6.84, + "grad_norm": 0.1949591040611267, + "learning_rate": 4.658126666666667e-05, + "loss": 2.335735168457031, + "step": 51300 + }, + { + "epoch": 6.8533333333333335, + "grad_norm": 0.1934141367673874, + "learning_rate": 4.65746e-05, + "loss": 2.335612487792969, + "step": 51400 + }, + { + "epoch": 6.866666666666667, + "grad_norm": 0.2191038280725479, + "learning_rate": 4.656793333333334e-05, + "loss": 2.3345936584472655, + "step": 51500 + }, + { + "epoch": 6.88, + "grad_norm": 0.20383000373840332, + "learning_rate": 4.656126666666667e-05, + "loss": 2.3339216613769533, + "step": 51600 + }, + { + "epoch": 6.8933333333333335, + "grad_norm": 0.19669340550899506, + "learning_rate": 4.65546e-05, + "loss": 2.3346900939941406, + "step": 51700 + }, + { + "epoch": 6.906666666666666, + "grad_norm": 0.20373137295246124, + "learning_rate": 4.6547933333333335e-05, + "loss": 2.3349125671386717, + "step": 51800 + }, + { + "epoch": 6.92, + "grad_norm": 0.2109116166830063, + "learning_rate": 4.654126666666667e-05, + "loss": 2.3348736572265625, + "step": 51900 + }, + { + "epoch": 6.933333333333334, + "grad_norm": 0.21398979425430298, + "learning_rate": 4.65346e-05, + "loss": 2.336753692626953, + "step": 52000 + }, + { + "epoch": 6.946666666666666, + "grad_norm": 0.1936953067779541, + "learning_rate": 4.652793333333333e-05, + "loss": 2.3369993591308593, + "step": 52100 + }, + { + "epoch": 6.96, + "grad_norm": 0.22233432531356812, + "learning_rate": 4.652133333333333e-05, + "loss": 2.3361253356933593, + "step": 52200 + }, + { + "epoch": 6.973333333333334, + "grad_norm": 0.20416876673698425, + "learning_rate": 4.651466666666667e-05, + "loss": 2.3360031127929686, + "step": 52300 + }, + { + "epoch": 6.986666666666666, + "grad_norm": 0.2030036300420761, + "learning_rate": 4.6508e-05, + "loss": 2.337208099365234, + "step": 52400 + }, + { + "epoch": 7.0, + "grad_norm": 0.19202755391597748, + "learning_rate": 4.6501333333333335e-05, + "loss": 2.336151123046875, + "step": 52500 + }, + { + "epoch": 7.013333333333334, + "grad_norm": 0.206998810172081, + "learning_rate": 4.649466666666667e-05, + "loss": 2.315085906982422, + "step": 52600 + }, + { + "epoch": 7.026666666666666, + "grad_norm": 0.2254278063774109, + "learning_rate": 4.6488000000000006e-05, + "loss": 2.316161651611328, + "step": 52700 + }, + { + "epoch": 7.04, + "grad_norm": 0.2177981585264206, + "learning_rate": 4.648133333333334e-05, + "loss": 2.3162889099121093, + "step": 52800 + }, + { + "epoch": 7.053333333333334, + "grad_norm": 0.22323600947856903, + "learning_rate": 4.6474666666666664e-05, + "loss": 2.3178530883789064, + "step": 52900 + }, + { + "epoch": 7.066666666666666, + "grad_norm": 0.20918424427509308, + "learning_rate": 4.6468e-05, + "loss": 2.315562438964844, + "step": 53000 + }, + { + "epoch": 7.08, + "grad_norm": 0.22114083170890808, + "learning_rate": 4.6461333333333335e-05, + "loss": 2.315318145751953, + "step": 53100 + }, + { + "epoch": 7.093333333333334, + "grad_norm": 0.19929060339927673, + "learning_rate": 4.645466666666667e-05, + "loss": 2.319254913330078, + "step": 53200 + }, + { + "epoch": 7.1066666666666665, + "grad_norm": 0.22897835075855255, + "learning_rate": 4.6448e-05, + "loss": 2.3185064697265627, + "step": 53300 + }, + { + "epoch": 7.12, + "grad_norm": 0.20979653298854828, + "learning_rate": 4.644133333333334e-05, + "loss": 2.3153074645996092, + "step": 53400 + }, + { + "epoch": 7.133333333333334, + "grad_norm": 0.208432137966156, + "learning_rate": 4.643466666666667e-05, + "loss": 2.3188551330566405, + "step": 53500 + }, + { + "epoch": 7.1466666666666665, + "grad_norm": 0.2060391902923584, + "learning_rate": 4.6428000000000003e-05, + "loss": 2.319374694824219, + "step": 53600 + }, + { + "epoch": 7.16, + "grad_norm": 0.2240801900625229, + "learning_rate": 4.6421333333333336e-05, + "loss": 2.315366668701172, + "step": 53700 + }, + { + "epoch": 7.173333333333334, + "grad_norm": 0.21705488860607147, + "learning_rate": 4.641466666666667e-05, + "loss": 2.320493469238281, + "step": 53800 + }, + { + "epoch": 7.1866666666666665, + "grad_norm": 0.22233860194683075, + "learning_rate": 4.6408e-05, + "loss": 2.318059844970703, + "step": 53900 + }, + { + "epoch": 7.2, + "grad_norm": 0.2171303927898407, + "learning_rate": 4.640133333333333e-05, + "loss": 2.320230712890625, + "step": 54000 + }, + { + "epoch": 7.213333333333333, + "grad_norm": 0.21981152892112732, + "learning_rate": 4.639466666666667e-05, + "loss": 2.3186485290527346, + "step": 54100 + }, + { + "epoch": 7.226666666666667, + "grad_norm": 0.2230496108531952, + "learning_rate": 4.638806666666667e-05, + "loss": 2.3200640869140625, + "step": 54200 + }, + { + "epoch": 7.24, + "grad_norm": 0.2142811268568039, + "learning_rate": 4.63814e-05, + "loss": 2.3188714599609375, + "step": 54300 + }, + { + "epoch": 7.253333333333333, + "grad_norm": 0.20586246252059937, + "learning_rate": 4.6374733333333335e-05, + "loss": 2.3214300537109374, + "step": 54400 + }, + { + "epoch": 7.266666666666667, + "grad_norm": 0.206768199801445, + "learning_rate": 4.636806666666667e-05, + "loss": 2.317760467529297, + "step": 54500 + }, + { + "epoch": 7.28, + "grad_norm": 0.22308428585529327, + "learning_rate": 4.6361400000000006e-05, + "loss": 2.32193359375, + "step": 54600 + }, + { + "epoch": 7.293333333333333, + "grad_norm": 0.21023783087730408, + "learning_rate": 4.635473333333333e-05, + "loss": 2.321294860839844, + "step": 54700 + }, + { + "epoch": 7.306666666666667, + "grad_norm": 0.20875036716461182, + "learning_rate": 4.6348066666666664e-05, + "loss": 2.3194563293457033, + "step": 54800 + }, + { + "epoch": 7.32, + "grad_norm": 0.22223174571990967, + "learning_rate": 4.63414e-05, + "loss": 2.3206028747558594, + "step": 54900 + }, + { + "epoch": 7.333333333333333, + "grad_norm": 0.19239133596420288, + "learning_rate": 4.6334733333333336e-05, + "loss": 2.321158599853516, + "step": 55000 + }, + { + "epoch": 7.346666666666667, + "grad_norm": 0.22706732153892517, + "learning_rate": 4.632806666666667e-05, + "loss": 2.3212765502929686, + "step": 55100 + }, + { + "epoch": 7.36, + "grad_norm": 0.23205487430095673, + "learning_rate": 4.632140000000001e-05, + "loss": 2.322073974609375, + "step": 55200 + }, + { + "epoch": 7.373333333333333, + "grad_norm": 0.2067403942346573, + "learning_rate": 4.631473333333334e-05, + "loss": 2.3220693969726565, + "step": 55300 + }, + { + "epoch": 7.386666666666667, + "grad_norm": 0.20351338386535645, + "learning_rate": 4.6308066666666665e-05, + "loss": 2.32278076171875, + "step": 55400 + }, + { + "epoch": 7.4, + "grad_norm": 0.21386387944221497, + "learning_rate": 4.6301400000000004e-05, + "loss": 2.3235244750976562, + "step": 55500 + }, + { + "epoch": 7.413333333333333, + "grad_norm": 0.2237972617149353, + "learning_rate": 4.6294733333333336e-05, + "loss": 2.3205836486816405, + "step": 55600 + }, + { + "epoch": 7.426666666666667, + "grad_norm": 0.196205735206604, + "learning_rate": 4.628806666666667e-05, + "loss": 2.324235687255859, + "step": 55700 + }, + { + "epoch": 7.44, + "grad_norm": 0.20559580624103546, + "learning_rate": 4.62814e-05, + "loss": 2.3239215087890623, + "step": 55800 + }, + { + "epoch": 7.453333333333333, + "grad_norm": 0.22416776418685913, + "learning_rate": 4.627473333333334e-05, + "loss": 2.3214433288574217, + "step": 55900 + }, + { + "epoch": 7.466666666666667, + "grad_norm": 0.20037733018398285, + "learning_rate": 4.626806666666667e-05, + "loss": 2.322022247314453, + "step": 56000 + }, + { + "epoch": 7.48, + "grad_norm": 0.21654389798641205, + "learning_rate": 4.6261400000000004e-05, + "loss": 2.3236199951171876, + "step": 56100 + }, + { + "epoch": 7.493333333333333, + "grad_norm": 0.21859359741210938, + "learning_rate": 4.62548e-05, + "loss": 2.3238677978515625, + "step": 56200 + }, + { + "epoch": 7.506666666666667, + "grad_norm": 0.22405706346035004, + "learning_rate": 4.6248133333333335e-05, + "loss": 2.326851654052734, + "step": 56300 + }, + { + "epoch": 7.52, + "grad_norm": 0.1978028565645218, + "learning_rate": 4.624146666666667e-05, + "loss": 2.3240150451660155, + "step": 56400 + }, + { + "epoch": 7.533333333333333, + "grad_norm": 0.21222999691963196, + "learning_rate": 4.62348e-05, + "loss": 2.3225338745117186, + "step": 56500 + }, + { + "epoch": 7.546666666666667, + "grad_norm": 0.22027376294136047, + "learning_rate": 4.622813333333333e-05, + "loss": 2.324446563720703, + "step": 56600 + }, + { + "epoch": 7.5600000000000005, + "grad_norm": 0.21182918548583984, + "learning_rate": 4.622146666666667e-05, + "loss": 2.3254127502441406, + "step": 56700 + }, + { + "epoch": 7.573333333333333, + "grad_norm": 0.19568821787834167, + "learning_rate": 4.6214800000000003e-05, + "loss": 2.325800323486328, + "step": 56800 + }, + { + "epoch": 7.586666666666667, + "grad_norm": 0.20319704711437225, + "learning_rate": 4.6208133333333336e-05, + "loss": 2.325161590576172, + "step": 56900 + }, + { + "epoch": 7.6, + "grad_norm": 0.22199761867523193, + "learning_rate": 4.620146666666667e-05, + "loss": 2.3248526000976564, + "step": 57000 + }, + { + "epoch": 7.613333333333333, + "grad_norm": 0.19542196393013, + "learning_rate": 4.619480000000001e-05, + "loss": 2.3250607299804686, + "step": 57100 + }, + { + "epoch": 7.626666666666667, + "grad_norm": 0.19808714091777802, + "learning_rate": 4.618813333333333e-05, + "loss": 2.3261805725097657, + "step": 57200 + }, + { + "epoch": 7.64, + "grad_norm": 0.22000600397586823, + "learning_rate": 4.6181466666666665e-05, + "loss": 2.3237953186035156, + "step": 57300 + }, + { + "epoch": 7.653333333333333, + "grad_norm": 0.2083161324262619, + "learning_rate": 4.6174800000000004e-05, + "loss": 2.3280027770996092, + "step": 57400 + }, + { + "epoch": 7.666666666666667, + "grad_norm": 0.2168016880750656, + "learning_rate": 4.6168133333333336e-05, + "loss": 2.324162902832031, + "step": 57500 + }, + { + "epoch": 7.68, + "grad_norm": 0.21734952926635742, + "learning_rate": 4.616146666666667e-05, + "loss": 2.3249171447753905, + "step": 57600 + }, + { + "epoch": 7.693333333333333, + "grad_norm": 0.20479203760623932, + "learning_rate": 4.61548e-05, + "loss": 2.327186737060547, + "step": 57700 + }, + { + "epoch": 7.706666666666667, + "grad_norm": 0.2028800994157791, + "learning_rate": 4.614813333333334e-05, + "loss": 2.327611999511719, + "step": 57800 + }, + { + "epoch": 7.72, + "grad_norm": 0.21738632023334503, + "learning_rate": 4.6141466666666665e-05, + "loss": 2.324887390136719, + "step": 57900 + }, + { + "epoch": 7.733333333333333, + "grad_norm": 0.227495938539505, + "learning_rate": 4.61348e-05, + "loss": 2.3263511657714844, + "step": 58000 + }, + { + "epoch": 7.746666666666667, + "grad_norm": 0.22351373732089996, + "learning_rate": 4.6128133333333337e-05, + "loss": 2.324449005126953, + "step": 58100 + }, + { + "epoch": 7.76, + "grad_norm": 0.19855080544948578, + "learning_rate": 4.6121533333333336e-05, + "loss": 2.3279388427734373, + "step": 58200 + }, + { + "epoch": 7.773333333333333, + "grad_norm": 0.21258243918418884, + "learning_rate": 4.611486666666667e-05, + "loss": 2.3258876037597656, + "step": 58300 + }, + { + "epoch": 7.786666666666667, + "grad_norm": 0.23399053514003754, + "learning_rate": 4.61082e-05, + "loss": 2.328024597167969, + "step": 58400 + }, + { + "epoch": 7.8, + "grad_norm": 0.20555289089679718, + "learning_rate": 4.610153333333333e-05, + "loss": 2.324607391357422, + "step": 58500 + }, + { + "epoch": 7.8133333333333335, + "grad_norm": 0.22223757207393646, + "learning_rate": 4.609486666666667e-05, + "loss": 2.328887634277344, + "step": 58600 + }, + { + "epoch": 7.826666666666666, + "grad_norm": 0.20944397151470184, + "learning_rate": 4.6088200000000004e-05, + "loss": 2.326324005126953, + "step": 58700 + }, + { + "epoch": 7.84, + "grad_norm": 0.21754513680934906, + "learning_rate": 4.6081533333333336e-05, + "loss": 2.3285617065429687, + "step": 58800 + }, + { + "epoch": 7.8533333333333335, + "grad_norm": 0.2218855917453766, + "learning_rate": 4.607486666666667e-05, + "loss": 2.3279769897460936, + "step": 58900 + }, + { + "epoch": 7.866666666666667, + "grad_norm": 0.2152242809534073, + "learning_rate": 4.60682e-05, + "loss": 2.327835998535156, + "step": 59000 + }, + { + "epoch": 7.88, + "grad_norm": 0.19836048781871796, + "learning_rate": 4.606153333333333e-05, + "loss": 2.330382843017578, + "step": 59100 + }, + { + "epoch": 7.8933333333333335, + "grad_norm": 0.2070547193288803, + "learning_rate": 4.6054866666666665e-05, + "loss": 2.328244171142578, + "step": 59200 + }, + { + "epoch": 7.906666666666666, + "grad_norm": 0.2064908742904663, + "learning_rate": 4.6048200000000004e-05, + "loss": 2.327570037841797, + "step": 59300 + }, + { + "epoch": 7.92, + "grad_norm": 0.19223378598690033, + "learning_rate": 4.6041533333333336e-05, + "loss": 2.327322540283203, + "step": 59400 + }, + { + "epoch": 7.933333333333334, + "grad_norm": 0.2263549417257309, + "learning_rate": 4.603486666666667e-05, + "loss": 2.329267120361328, + "step": 59500 + }, + { + "epoch": 7.946666666666666, + "grad_norm": 0.21715712547302246, + "learning_rate": 4.602820000000001e-05, + "loss": 2.3234599304199217, + "step": 59600 + }, + { + "epoch": 7.96, + "grad_norm": 0.2264692485332489, + "learning_rate": 4.602153333333333e-05, + "loss": 2.326782531738281, + "step": 59700 + }, + { + "epoch": 7.973333333333334, + "grad_norm": 0.20843270421028137, + "learning_rate": 4.6014866666666665e-05, + "loss": 2.3266970825195314, + "step": 59800 + }, + { + "epoch": 7.986666666666666, + "grad_norm": 0.20484039187431335, + "learning_rate": 4.6008200000000004e-05, + "loss": 2.3275350952148437, + "step": 59900 + }, + { + "epoch": 8.0, + "grad_norm": 0.21979759633541107, + "learning_rate": 4.600153333333334e-05, + "loss": 2.327262115478516, + "step": 60000 + }, + { + "epoch": 8.013333333333334, + "grad_norm": 0.2148316353559494, + "learning_rate": 4.599486666666667e-05, + "loss": 2.3032371520996096, + "step": 60100 + }, + { + "epoch": 8.026666666666667, + "grad_norm": 0.2427894026041031, + "learning_rate": 4.598826666666667e-05, + "loss": 2.306138000488281, + "step": 60200 + }, + { + "epoch": 8.04, + "grad_norm": 0.23417937755584717, + "learning_rate": 4.59816e-05, + "loss": 2.3055377197265625, + "step": 60300 + }, + { + "epoch": 8.053333333333333, + "grad_norm": 0.22597885131835938, + "learning_rate": 4.597493333333334e-05, + "loss": 2.308175354003906, + "step": 60400 + }, + { + "epoch": 8.066666666666666, + "grad_norm": 0.22343474626541138, + "learning_rate": 4.596826666666667e-05, + "loss": 2.3064723205566406, + "step": 60500 + }, + { + "epoch": 8.08, + "grad_norm": 0.22558583319187164, + "learning_rate": 4.5961600000000004e-05, + "loss": 2.305071258544922, + "step": 60600 + }, + { + "epoch": 8.093333333333334, + "grad_norm": 0.20653437077999115, + "learning_rate": 4.5954933333333336e-05, + "loss": 2.307345428466797, + "step": 60700 + }, + { + "epoch": 8.106666666666667, + "grad_norm": 0.2216809093952179, + "learning_rate": 4.594826666666667e-05, + "loss": 2.3047059631347655, + "step": 60800 + }, + { + "epoch": 8.12, + "grad_norm": 0.22799284756183624, + "learning_rate": 4.59416e-05, + "loss": 2.307566833496094, + "step": 60900 + }, + { + "epoch": 8.133333333333333, + "grad_norm": 0.22076313197612762, + "learning_rate": 4.593493333333333e-05, + "loss": 2.3049078369140625, + "step": 61000 + }, + { + "epoch": 8.146666666666667, + "grad_norm": 0.2266998142004013, + "learning_rate": 4.592826666666667e-05, + "loss": 2.3053494262695313, + "step": 61100 + }, + { + "epoch": 8.16, + "grad_norm": 0.23705247044563293, + "learning_rate": 4.5921600000000004e-05, + "loss": 2.3077027893066404, + "step": 61200 + }, + { + "epoch": 8.173333333333334, + "grad_norm": 0.21669632196426392, + "learning_rate": 4.5914933333333337e-05, + "loss": 2.3076458740234376, + "step": 61300 + }, + { + "epoch": 8.186666666666667, + "grad_norm": 0.2006712257862091, + "learning_rate": 4.590826666666667e-05, + "loss": 2.3063531494140626, + "step": 61400 + }, + { + "epoch": 8.2, + "grad_norm": 0.21064023673534393, + "learning_rate": 4.59016e-05, + "loss": 2.3089945983886717, + "step": 61500 + }, + { + "epoch": 8.213333333333333, + "grad_norm": 0.21858380734920502, + "learning_rate": 4.589493333333333e-05, + "loss": 2.307320098876953, + "step": 61600 + }, + { + "epoch": 8.226666666666667, + "grad_norm": 0.21644806861877441, + "learning_rate": 4.5888266666666666e-05, + "loss": 2.3085394287109375, + "step": 61700 + }, + { + "epoch": 8.24, + "grad_norm": 0.22975999116897583, + "learning_rate": 4.5881600000000005e-05, + "loss": 2.3101947021484377, + "step": 61800 + }, + { + "epoch": 8.253333333333334, + "grad_norm": 0.21924324333667755, + "learning_rate": 4.587493333333334e-05, + "loss": 2.3123768615722655, + "step": 61900 + }, + { + "epoch": 8.266666666666667, + "grad_norm": 0.22921468317508698, + "learning_rate": 4.586826666666667e-05, + "loss": 2.3115985107421877, + "step": 62000 + }, + { + "epoch": 8.28, + "grad_norm": 0.21891409158706665, + "learning_rate": 4.58616e-05, + "loss": 2.309479217529297, + "step": 62100 + }, + { + "epoch": 8.293333333333333, + "grad_norm": 0.22286993265151978, + "learning_rate": 4.5855e-05, + "loss": 2.3122218322753905, + "step": 62200 + }, + { + "epoch": 8.306666666666667, + "grad_norm": 0.24152639508247375, + "learning_rate": 4.584833333333334e-05, + "loss": 2.308910217285156, + "step": 62300 + }, + { + "epoch": 8.32, + "grad_norm": 0.21503682434558868, + "learning_rate": 4.5841666666666665e-05, + "loss": 2.307999572753906, + "step": 62400 + }, + { + "epoch": 8.333333333333334, + "grad_norm": 0.20558761060237885, + "learning_rate": 4.5835e-05, + "loss": 2.3080621337890626, + "step": 62500 + }, + { + "epoch": 8.346666666666668, + "grad_norm": 0.21116876602172852, + "learning_rate": 4.5828333333333336e-05, + "loss": 2.3105264282226563, + "step": 62600 + }, + { + "epoch": 8.36, + "grad_norm": 0.2325267195701599, + "learning_rate": 4.582166666666667e-05, + "loss": 2.309617919921875, + "step": 62700 + }, + { + "epoch": 8.373333333333333, + "grad_norm": 0.2288995385169983, + "learning_rate": 4.5815e-05, + "loss": 2.3135015869140627, + "step": 62800 + }, + { + "epoch": 8.386666666666667, + "grad_norm": 0.23661412298679352, + "learning_rate": 4.580833333333333e-05, + "loss": 2.311595153808594, + "step": 62900 + }, + { + "epoch": 8.4, + "grad_norm": 0.22704863548278809, + "learning_rate": 4.580166666666667e-05, + "loss": 2.311846160888672, + "step": 63000 + }, + { + "epoch": 8.413333333333334, + "grad_norm": 0.21123670041561127, + "learning_rate": 4.5795000000000005e-05, + "loss": 2.3099000549316404, + "step": 63100 + }, + { + "epoch": 8.426666666666666, + "grad_norm": 0.22051377594470978, + "learning_rate": 4.578833333333333e-05, + "loss": 2.314755401611328, + "step": 63200 + }, + { + "epoch": 8.44, + "grad_norm": 0.21824777126312256, + "learning_rate": 4.578166666666667e-05, + "loss": 2.3122979736328126, + "step": 63300 + }, + { + "epoch": 8.453333333333333, + "grad_norm": 0.2141052782535553, + "learning_rate": 4.5775e-05, + "loss": 2.314187316894531, + "step": 63400 + }, + { + "epoch": 8.466666666666667, + "grad_norm": 0.22229032218456268, + "learning_rate": 4.5768333333333334e-05, + "loss": 2.3118528747558593, + "step": 63500 + }, + { + "epoch": 8.48, + "grad_norm": 0.21177971363067627, + "learning_rate": 4.576166666666667e-05, + "loss": 2.314485626220703, + "step": 63600 + }, + { + "epoch": 8.493333333333334, + "grad_norm": 0.2159062772989273, + "learning_rate": 4.5755000000000005e-05, + "loss": 2.3116845703125, + "step": 63700 + }, + { + "epoch": 8.506666666666666, + "grad_norm": 0.21478477120399475, + "learning_rate": 4.574833333333334e-05, + "loss": 2.3143507385253907, + "step": 63800 + }, + { + "epoch": 8.52, + "grad_norm": 0.22522731125354767, + "learning_rate": 4.574166666666667e-05, + "loss": 2.315663604736328, + "step": 63900 + }, + { + "epoch": 8.533333333333333, + "grad_norm": 0.22168120741844177, + "learning_rate": 4.5735e-05, + "loss": 2.3135195922851564, + "step": 64000 + }, + { + "epoch": 8.546666666666667, + "grad_norm": 0.2298642098903656, + "learning_rate": 4.5728333333333334e-05, + "loss": 2.315981140136719, + "step": 64100 + }, + { + "epoch": 8.56, + "grad_norm": 0.2253265529870987, + "learning_rate": 4.572173333333333e-05, + "loss": 2.315703887939453, + "step": 64200 + }, + { + "epoch": 8.573333333333334, + "grad_norm": 0.22435899078845978, + "learning_rate": 4.5715066666666665e-05, + "loss": 2.314583282470703, + "step": 64300 + }, + { + "epoch": 8.586666666666666, + "grad_norm": 0.21293385326862335, + "learning_rate": 4.5708400000000004e-05, + "loss": 2.3148568725585936, + "step": 64400 + }, + { + "epoch": 8.6, + "grad_norm": 0.2217615693807602, + "learning_rate": 4.570173333333334e-05, + "loss": 2.3133966064453126, + "step": 64500 + }, + { + "epoch": 8.613333333333333, + "grad_norm": 0.21577724814414978, + "learning_rate": 4.569506666666667e-05, + "loss": 2.3160128784179688, + "step": 64600 + }, + { + "epoch": 8.626666666666667, + "grad_norm": 0.20894163846969604, + "learning_rate": 4.56884e-05, + "loss": 2.316580505371094, + "step": 64700 + }, + { + "epoch": 8.64, + "grad_norm": 0.22660347819328308, + "learning_rate": 4.568173333333334e-05, + "loss": 2.3132757568359374, + "step": 64800 + }, + { + "epoch": 8.653333333333332, + "grad_norm": 0.20169147849082947, + "learning_rate": 4.567506666666667e-05, + "loss": 2.3164935302734375, + "step": 64900 + }, + { + "epoch": 8.666666666666666, + "grad_norm": 0.22867351770401, + "learning_rate": 4.56684e-05, + "loss": 2.3162477111816404, + "step": 65000 + }, + { + "epoch": 8.68, + "grad_norm": 0.23090234398841858, + "learning_rate": 4.566173333333334e-05, + "loss": 2.3189874267578126, + "step": 65100 + }, + { + "epoch": 8.693333333333333, + "grad_norm": 0.22201119363307953, + "learning_rate": 4.565506666666667e-05, + "loss": 2.31669921875, + "step": 65200 + }, + { + "epoch": 8.706666666666667, + "grad_norm": 0.2174353450536728, + "learning_rate": 4.56484e-05, + "loss": 2.3188742065429686, + "step": 65300 + }, + { + "epoch": 8.72, + "grad_norm": 0.21239978075027466, + "learning_rate": 4.5641733333333334e-05, + "loss": 2.3161309814453124, + "step": 65400 + }, + { + "epoch": 8.733333333333333, + "grad_norm": 0.19849137961864471, + "learning_rate": 4.563506666666667e-05, + "loss": 2.3190155029296875, + "step": 65500 + }, + { + "epoch": 8.746666666666666, + "grad_norm": 0.2238064557313919, + "learning_rate": 4.5628400000000005e-05, + "loss": 2.3172088623046876, + "step": 65600 + }, + { + "epoch": 8.76, + "grad_norm": 0.22363531589508057, + "learning_rate": 4.562173333333333e-05, + "loss": 2.3175604248046877, + "step": 65700 + }, + { + "epoch": 8.773333333333333, + "grad_norm": 0.22062158584594727, + "learning_rate": 4.561506666666667e-05, + "loss": 2.3156175231933593, + "step": 65800 + }, + { + "epoch": 8.786666666666667, + "grad_norm": 0.2074691206216812, + "learning_rate": 4.56084e-05, + "loss": 2.317613372802734, + "step": 65900 + }, + { + "epoch": 8.8, + "grad_norm": 0.21585817635059357, + "learning_rate": 4.5601733333333334e-05, + "loss": 2.317025909423828, + "step": 66000 + }, + { + "epoch": 8.813333333333333, + "grad_norm": 0.24289225041866302, + "learning_rate": 4.5595066666666666e-05, + "loss": 2.3176622009277343, + "step": 66100 + }, + { + "epoch": 8.826666666666666, + "grad_norm": 0.22260883450508118, + "learning_rate": 4.5588466666666666e-05, + "loss": 2.3193907165527343, + "step": 66200 + }, + { + "epoch": 8.84, + "grad_norm": 0.20685255527496338, + "learning_rate": 4.5581800000000005e-05, + "loss": 2.3187965393066405, + "step": 66300 + }, + { + "epoch": 8.853333333333333, + "grad_norm": 0.2502782940864563, + "learning_rate": 4.557513333333334e-05, + "loss": 2.3181417846679686, + "step": 66400 + }, + { + "epoch": 8.866666666666667, + "grad_norm": 0.20513685047626495, + "learning_rate": 4.556846666666667e-05, + "loss": 2.318340606689453, + "step": 66500 + }, + { + "epoch": 8.88, + "grad_norm": 0.2085087150335312, + "learning_rate": 4.55618e-05, + "loss": 2.320625762939453, + "step": 66600 + }, + { + "epoch": 8.893333333333333, + "grad_norm": 0.2202482372522354, + "learning_rate": 4.5555133333333334e-05, + "loss": 2.317662811279297, + "step": 66700 + }, + { + "epoch": 8.906666666666666, + "grad_norm": 0.20364412665367126, + "learning_rate": 4.5548466666666666e-05, + "loss": 2.320509796142578, + "step": 66800 + }, + { + "epoch": 8.92, + "grad_norm": 0.2078937292098999, + "learning_rate": 4.55418e-05, + "loss": 2.3180162048339845, + "step": 66900 + }, + { + "epoch": 8.933333333333334, + "grad_norm": 0.21178776025772095, + "learning_rate": 4.553513333333334e-05, + "loss": 2.318477783203125, + "step": 67000 + }, + { + "epoch": 8.946666666666667, + "grad_norm": 0.2264500856399536, + "learning_rate": 4.552846666666667e-05, + "loss": 2.321943511962891, + "step": 67100 + }, + { + "epoch": 8.96, + "grad_norm": 0.2113855928182602, + "learning_rate": 4.55218e-05, + "loss": 2.318071746826172, + "step": 67200 + }, + { + "epoch": 8.973333333333333, + "grad_norm": 0.19603019952774048, + "learning_rate": 4.5515133333333334e-05, + "loss": 2.3197503662109376, + "step": 67300 + }, + { + "epoch": 8.986666666666666, + "grad_norm": 0.2236277014017105, + "learning_rate": 4.550846666666667e-05, + "loss": 2.320359344482422, + "step": 67400 + }, + { + "epoch": 9.0, + "grad_norm": 0.21920901536941528, + "learning_rate": 4.55018e-05, + "loss": 2.318968963623047, + "step": 67500 + }, + { + "epoch": 9.013333333333334, + "grad_norm": 0.23331010341644287, + "learning_rate": 4.549513333333333e-05, + "loss": 2.2941917419433593, + "step": 67600 + }, + { + "epoch": 9.026666666666667, + "grad_norm": 0.21596217155456543, + "learning_rate": 4.548846666666667e-05, + "loss": 2.290107421875, + "step": 67700 + }, + { + "epoch": 9.04, + "grad_norm": 0.22891509532928467, + "learning_rate": 4.54818e-05, + "loss": 2.2925718688964842, + "step": 67800 + }, + { + "epoch": 9.053333333333333, + "grad_norm": 0.21967433393001556, + "learning_rate": 4.5475133333333334e-05, + "loss": 2.2921377563476564, + "step": 67900 + }, + { + "epoch": 9.066666666666666, + "grad_norm": 0.25205832719802856, + "learning_rate": 4.5468466666666673e-05, + "loss": 2.293820037841797, + "step": 68000 + }, + { + "epoch": 9.08, + "grad_norm": 0.2291940152645111, + "learning_rate": 4.5461800000000006e-05, + "loss": 2.293941650390625, + "step": 68100 + }, + { + "epoch": 9.093333333333334, + "grad_norm": 0.23932799696922302, + "learning_rate": 4.5455200000000005e-05, + "loss": 2.2932688903808596, + "step": 68200 + }, + { + "epoch": 9.106666666666667, + "grad_norm": 0.22407028079032898, + "learning_rate": 4.544853333333334e-05, + "loss": 2.296217193603516, + "step": 68300 + }, + { + "epoch": 9.12, + "grad_norm": 0.2332010418176651, + "learning_rate": 4.544186666666667e-05, + "loss": 2.296667022705078, + "step": 68400 + }, + { + "epoch": 9.133333333333333, + "grad_norm": 0.22865130007266998, + "learning_rate": 4.54352e-05, + "loss": 2.2938783264160154, + "step": 68500 + }, + { + "epoch": 9.146666666666667, + "grad_norm": 0.23731687664985657, + "learning_rate": 4.5428533333333334e-05, + "loss": 2.296278381347656, + "step": 68600 + }, + { + "epoch": 9.16, + "grad_norm": 0.21626006066799164, + "learning_rate": 4.5421866666666666e-05, + "loss": 2.2968585205078127, + "step": 68700 + }, + { + "epoch": 9.173333333333334, + "grad_norm": 0.23821845650672913, + "learning_rate": 4.5415200000000005e-05, + "loss": 2.2977059936523436, + "step": 68800 + }, + { + "epoch": 9.186666666666667, + "grad_norm": 0.2369178831577301, + "learning_rate": 4.540853333333334e-05, + "loss": 2.296495208740234, + "step": 68900 + }, + { + "epoch": 9.2, + "grad_norm": 0.22190576791763306, + "learning_rate": 4.540186666666667e-05, + "loss": 2.297707366943359, + "step": 69000 + }, + { + "epoch": 9.213333333333333, + "grad_norm": 0.22970540821552277, + "learning_rate": 4.53952e-05, + "loss": 2.2968077087402343, + "step": 69100 + }, + { + "epoch": 9.226666666666667, + "grad_norm": 0.23141416907310486, + "learning_rate": 4.5388533333333334e-05, + "loss": 2.297506103515625, + "step": 69200 + }, + { + "epoch": 9.24, + "grad_norm": 0.22547562420368195, + "learning_rate": 4.5381866666666667e-05, + "loss": 2.2980027770996094, + "step": 69300 + }, + { + "epoch": 9.253333333333334, + "grad_norm": 0.24733230471611023, + "learning_rate": 4.53752e-05, + "loss": 2.29823486328125, + "step": 69400 + }, + { + "epoch": 9.266666666666667, + "grad_norm": 0.23954610526561737, + "learning_rate": 4.536853333333334e-05, + "loss": 2.300198974609375, + "step": 69500 + }, + { + "epoch": 9.28, + "grad_norm": 0.253302663564682, + "learning_rate": 4.536186666666667e-05, + "loss": 2.2968313598632815, + "step": 69600 + }, + { + "epoch": 9.293333333333333, + "grad_norm": 0.2572624385356903, + "learning_rate": 4.53552e-05, + "loss": 2.3007162475585936, + "step": 69700 + }, + { + "epoch": 9.306666666666667, + "grad_norm": 0.2580345869064331, + "learning_rate": 4.5348533333333335e-05, + "loss": 2.2998121643066405, + "step": 69800 + }, + { + "epoch": 9.32, + "grad_norm": 0.23370671272277832, + "learning_rate": 4.5341866666666674e-05, + "loss": 2.302071075439453, + "step": 69900 + }, + { + "epoch": 9.333333333333334, + "grad_norm": 0.2354464828968048, + "learning_rate": 4.53352e-05, + "loss": 2.3010763549804687, + "step": 70000 + }, + { + "epoch": 9.346666666666668, + "grad_norm": 0.22726485133171082, + "learning_rate": 4.532853333333333e-05, + "loss": 2.302950897216797, + "step": 70100 + }, + { + "epoch": 9.36, + "grad_norm": 0.24437928199768066, + "learning_rate": 4.532193333333333e-05, + "loss": 2.301619110107422, + "step": 70200 + }, + { + "epoch": 9.373333333333333, + "grad_norm": 0.22362923622131348, + "learning_rate": 4.531526666666667e-05, + "loss": 2.301064147949219, + "step": 70300 + }, + { + "epoch": 9.386666666666667, + "grad_norm": 0.22675906121730804, + "learning_rate": 4.53086e-05, + "loss": 2.300765380859375, + "step": 70400 + }, + { + "epoch": 9.4, + "grad_norm": 0.23232199251651764, + "learning_rate": 4.5301933333333334e-05, + "loss": 2.2998236083984374, + "step": 70500 + }, + { + "epoch": 9.413333333333334, + "grad_norm": 0.2357228696346283, + "learning_rate": 4.5295266666666666e-05, + "loss": 2.300859375, + "step": 70600 + }, + { + "epoch": 9.426666666666666, + "grad_norm": 0.22707265615463257, + "learning_rate": 4.5288600000000005e-05, + "loss": 2.30189697265625, + "step": 70700 + }, + { + "epoch": 9.44, + "grad_norm": 0.22745104134082794, + "learning_rate": 4.528193333333334e-05, + "loss": 2.3032139587402343, + "step": 70800 + }, + { + "epoch": 9.453333333333333, + "grad_norm": 0.2270699143409729, + "learning_rate": 4.527526666666667e-05, + "loss": 2.3027561950683593, + "step": 70900 + }, + { + "epoch": 9.466666666666667, + "grad_norm": 0.22705000638961792, + "learning_rate": 4.52686e-05, + "loss": 2.30169677734375, + "step": 71000 + }, + { + "epoch": 9.48, + "grad_norm": 0.24112239480018616, + "learning_rate": 4.5261933333333335e-05, + "loss": 2.3032855224609374, + "step": 71100 + }, + { + "epoch": 9.493333333333334, + "grad_norm": 0.22396592795848846, + "learning_rate": 4.525526666666667e-05, + "loss": 2.3002029418945313, + "step": 71200 + }, + { + "epoch": 9.506666666666666, + "grad_norm": 0.21745307743549347, + "learning_rate": 4.52486e-05, + "loss": 2.3029249572753905, + "step": 71300 + }, + { + "epoch": 9.52, + "grad_norm": 0.23369887471199036, + "learning_rate": 4.524193333333334e-05, + "loss": 2.304996337890625, + "step": 71400 + }, + { + "epoch": 9.533333333333333, + "grad_norm": 0.23318316042423248, + "learning_rate": 4.523526666666667e-05, + "loss": 2.3056065368652345, + "step": 71500 + }, + { + "epoch": 9.546666666666667, + "grad_norm": 0.2250574827194214, + "learning_rate": 4.52286e-05, + "loss": 2.3032150268554688, + "step": 71600 + }, + { + "epoch": 9.56, + "grad_norm": 0.2183639109134674, + "learning_rate": 4.5221933333333335e-05, + "loss": 2.305579833984375, + "step": 71700 + }, + { + "epoch": 9.573333333333334, + "grad_norm": 0.2082279771566391, + "learning_rate": 4.521526666666667e-05, + "loss": 2.3057624816894533, + "step": 71800 + }, + { + "epoch": 9.586666666666666, + "grad_norm": 0.23728124797344208, + "learning_rate": 4.52086e-05, + "loss": 2.3048939514160156, + "step": 71900 + }, + { + "epoch": 9.6, + "grad_norm": 0.23262864351272583, + "learning_rate": 4.520193333333333e-05, + "loss": 2.303785400390625, + "step": 72000 + }, + { + "epoch": 9.613333333333333, + "grad_norm": 0.22944900393486023, + "learning_rate": 4.519526666666667e-05, + "loss": 2.3056602478027344, + "step": 72100 + }, + { + "epoch": 9.626666666666667, + "grad_norm": 0.2632165551185608, + "learning_rate": 4.518866666666667e-05, + "loss": 2.3039901733398436, + "step": 72200 + }, + { + "epoch": 9.64, + "grad_norm": 0.23915515840053558, + "learning_rate": 4.5182e-05, + "loss": 2.3091696166992186, + "step": 72300 + }, + { + "epoch": 9.653333333333332, + "grad_norm": 0.24298280477523804, + "learning_rate": 4.5175333333333334e-05, + "loss": 2.3061654663085935, + "step": 72400 + }, + { + "epoch": 9.666666666666666, + "grad_norm": 0.23660294711589813, + "learning_rate": 4.5168666666666673e-05, + "loss": 2.3104348754882813, + "step": 72500 + }, + { + "epoch": 9.68, + "grad_norm": 0.2370450496673584, + "learning_rate": 4.5162000000000006e-05, + "loss": 2.3079653930664064, + "step": 72600 + }, + { + "epoch": 9.693333333333333, + "grad_norm": 0.2323356717824936, + "learning_rate": 4.515533333333333e-05, + "loss": 2.3062504577636718, + "step": 72700 + }, + { + "epoch": 9.706666666666667, + "grad_norm": 0.2260921448469162, + "learning_rate": 4.514866666666667e-05, + "loss": 2.3086776733398438, + "step": 72800 + }, + { + "epoch": 9.72, + "grad_norm": 0.23469285666942596, + "learning_rate": 4.5142e-05, + "loss": 2.306175079345703, + "step": 72900 + }, + { + "epoch": 9.733333333333333, + "grad_norm": 0.2398371398448944, + "learning_rate": 4.5135333333333335e-05, + "loss": 2.3068536376953124, + "step": 73000 + }, + { + "epoch": 9.746666666666666, + "grad_norm": 0.2239067405462265, + "learning_rate": 4.512866666666667e-05, + "loss": 2.30914306640625, + "step": 73100 + }, + { + "epoch": 9.76, + "grad_norm": 0.22555306553840637, + "learning_rate": 4.5122000000000006e-05, + "loss": 2.3087586975097656, + "step": 73200 + }, + { + "epoch": 9.773333333333333, + "grad_norm": 0.22917480766773224, + "learning_rate": 4.511533333333334e-05, + "loss": 2.310619201660156, + "step": 73300 + }, + { + "epoch": 9.786666666666667, + "grad_norm": 0.23775242269039154, + "learning_rate": 4.510866666666667e-05, + "loss": 2.3091854858398437, + "step": 73400 + }, + { + "epoch": 9.8, + "grad_norm": 0.24801835417747498, + "learning_rate": 4.5102e-05, + "loss": 2.3082546997070312, + "step": 73500 + }, + { + "epoch": 9.813333333333333, + "grad_norm": 0.23106469213962555, + "learning_rate": 4.5095333333333335e-05, + "loss": 2.3087344360351563, + "step": 73600 + }, + { + "epoch": 9.826666666666666, + "grad_norm": 0.22504796087741852, + "learning_rate": 4.508866666666667e-05, + "loss": 2.308363494873047, + "step": 73700 + }, + { + "epoch": 9.84, + "grad_norm": 0.23639419674873352, + "learning_rate": 4.5082e-05, + "loss": 2.30758544921875, + "step": 73800 + }, + { + "epoch": 9.853333333333333, + "grad_norm": 0.24086354672908783, + "learning_rate": 4.507533333333334e-05, + "loss": 2.3087428283691405, + "step": 73900 + }, + { + "epoch": 9.866666666666667, + "grad_norm": 0.2180139571428299, + "learning_rate": 4.506866666666667e-05, + "loss": 2.308798828125, + "step": 74000 + }, + { + "epoch": 9.88, + "grad_norm": 0.22501300275325775, + "learning_rate": 4.5062e-05, + "loss": 2.3099415588378904, + "step": 74100 + }, + { + "epoch": 9.893333333333333, + "grad_norm": 0.23066537082195282, + "learning_rate": 4.50554e-05, + "loss": 2.307503662109375, + "step": 74200 + }, + { + "epoch": 9.906666666666666, + "grad_norm": 0.22434760630130768, + "learning_rate": 4.5048733333333335e-05, + "loss": 2.3106227111816406, + "step": 74300 + }, + { + "epoch": 9.92, + "grad_norm": 0.25195831060409546, + "learning_rate": 4.5042066666666674e-05, + "loss": 2.3048329162597656, + "step": 74400 + }, + { + "epoch": 9.933333333333334, + "grad_norm": 0.2128189355134964, + "learning_rate": 4.50354e-05, + "loss": 2.3085731506347655, + "step": 74500 + }, + { + "epoch": 9.946666666666667, + "grad_norm": 0.2209046483039856, + "learning_rate": 4.502873333333333e-05, + "loss": 2.3103427124023437, + "step": 74600 + }, + { + "epoch": 9.96, + "grad_norm": 0.4690224528312683, + "learning_rate": 4.502206666666667e-05, + "loss": 2.312327423095703, + "step": 74700 + }, + { + "epoch": 9.973333333333333, + "grad_norm": 0.21926158666610718, + "learning_rate": 4.50154e-05, + "loss": 2.310508575439453, + "step": 74800 + }, + { + "epoch": 9.986666666666666, + "grad_norm": 0.2374141365289688, + "learning_rate": 4.5008733333333335e-05, + "loss": 2.31052978515625, + "step": 74900 + }, + { + "epoch": 10.0, + "grad_norm": 0.22070780396461487, + "learning_rate": 4.500206666666667e-05, + "loss": 2.3100782775878907, + "step": 75000 + }, + { + "epoch": 10.013333333333334, + "grad_norm": 0.23315180838108063, + "learning_rate": 4.4995400000000006e-05, + "loss": 2.2820582580566406, + "step": 75100 + }, + { + "epoch": 10.026666666666667, + "grad_norm": 0.2489648312330246, + "learning_rate": 4.498873333333333e-05, + "loss": 2.2800167846679686, + "step": 75200 + }, + { + "epoch": 10.04, + "grad_norm": 0.2430664449930191, + "learning_rate": 4.4982066666666664e-05, + "loss": 2.2820753479003906, + "step": 75300 + }, + { + "epoch": 10.053333333333333, + "grad_norm": 0.24344773590564728, + "learning_rate": 4.49754e-05, + "loss": 2.2796278381347657, + "step": 75400 + }, + { + "epoch": 10.066666666666666, + "grad_norm": 0.24810276925563812, + "learning_rate": 4.4968733333333335e-05, + "loss": 2.279807586669922, + "step": 75500 + }, + { + "epoch": 10.08, + "grad_norm": 0.24132785201072693, + "learning_rate": 4.496206666666667e-05, + "loss": 2.2805412292480467, + "step": 75600 + }, + { + "epoch": 10.093333333333334, + "grad_norm": 0.24037568271160126, + "learning_rate": 4.49554e-05, + "loss": 2.2824276733398436, + "step": 75700 + }, + { + "epoch": 10.106666666666667, + "grad_norm": 0.23821789026260376, + "learning_rate": 4.494873333333334e-05, + "loss": 2.284660186767578, + "step": 75800 + }, + { + "epoch": 10.12, + "grad_norm": 0.2437891960144043, + "learning_rate": 4.494206666666667e-05, + "loss": 2.2823611450195314, + "step": 75900 + }, + { + "epoch": 10.133333333333333, + "grad_norm": 0.23768781125545502, + "learning_rate": 4.49354e-05, + "loss": 2.2855105590820313, + "step": 76000 + }, + { + "epoch": 10.146666666666667, + "grad_norm": 0.24591408669948578, + "learning_rate": 4.4928733333333336e-05, + "loss": 2.2840614318847656, + "step": 76100 + }, + { + "epoch": 10.16, + "grad_norm": 0.2379213571548462, + "learning_rate": 4.4922133333333335e-05, + "loss": 2.2879397583007814, + "step": 76200 + }, + { + "epoch": 10.173333333333334, + "grad_norm": 0.2505422532558441, + "learning_rate": 4.491546666666667e-05, + "loss": 2.2845729064941405, + "step": 76300 + }, + { + "epoch": 10.186666666666667, + "grad_norm": 0.24018126726150513, + "learning_rate": 4.49088e-05, + "loss": 2.287251281738281, + "step": 76400 + }, + { + "epoch": 10.2, + "grad_norm": 0.26669764518737793, + "learning_rate": 4.490213333333333e-05, + "loss": 2.284190826416016, + "step": 76500 + }, + { + "epoch": 10.213333333333333, + "grad_norm": 0.24248762428760529, + "learning_rate": 4.489546666666667e-05, + "loss": 2.287902374267578, + "step": 76600 + }, + { + "epoch": 10.226666666666667, + "grad_norm": 0.23663915693759918, + "learning_rate": 4.48888e-05, + "loss": 2.286513214111328, + "step": 76700 + }, + { + "epoch": 10.24, + "grad_norm": 0.25117191672325134, + "learning_rate": 4.4882133333333335e-05, + "loss": 2.289020538330078, + "step": 76800 + }, + { + "epoch": 10.253333333333334, + "grad_norm": 0.23214347660541534, + "learning_rate": 4.4875466666666674e-05, + "loss": 2.2866584777832033, + "step": 76900 + }, + { + "epoch": 10.266666666666667, + "grad_norm": 0.2386721670627594, + "learning_rate": 4.48688e-05, + "loss": 2.289106597900391, + "step": 77000 + }, + { + "epoch": 10.28, + "grad_norm": 0.24421949684619904, + "learning_rate": 4.486213333333333e-05, + "loss": 2.28677490234375, + "step": 77100 + }, + { + "epoch": 10.293333333333333, + "grad_norm": 0.2612295150756836, + "learning_rate": 4.485546666666667e-05, + "loss": 2.289345703125, + "step": 77200 + }, + { + "epoch": 10.306666666666667, + "grad_norm": 0.22263416647911072, + "learning_rate": 4.48488e-05, + "loss": 2.2870338439941404, + "step": 77300 + }, + { + "epoch": 10.32, + "grad_norm": 0.2574688494205475, + "learning_rate": 4.4842133333333336e-05, + "loss": 2.2890251159667967, + "step": 77400 + }, + { + "epoch": 10.333333333333334, + "grad_norm": 0.25357821583747864, + "learning_rate": 4.483546666666667e-05, + "loss": 2.2873045349121095, + "step": 77500 + }, + { + "epoch": 10.346666666666668, + "grad_norm": 0.2804579734802246, + "learning_rate": 4.482880000000001e-05, + "loss": 2.2914703369140623, + "step": 77600 + }, + { + "epoch": 10.36, + "grad_norm": 0.24506065249443054, + "learning_rate": 4.482213333333334e-05, + "loss": 2.2905569458007813, + "step": 77700 + }, + { + "epoch": 10.373333333333333, + "grad_norm": 0.25503185391426086, + "learning_rate": 4.4815466666666665e-05, + "loss": 2.290155334472656, + "step": 77800 + }, + { + "epoch": 10.386666666666667, + "grad_norm": 0.2579893171787262, + "learning_rate": 4.4808800000000004e-05, + "loss": 2.291581115722656, + "step": 77900 + }, + { + "epoch": 10.4, + "grad_norm": 0.22538907825946808, + "learning_rate": 4.4802133333333336e-05, + "loss": 2.291281280517578, + "step": 78000 + }, + { + "epoch": 10.413333333333334, + "grad_norm": 0.24924156069755554, + "learning_rate": 4.479546666666667e-05, + "loss": 2.289500885009766, + "step": 78100 + }, + { + "epoch": 10.426666666666666, + "grad_norm": 0.2366298884153366, + "learning_rate": 4.478886666666667e-05, + "loss": 2.290386047363281, + "step": 78200 + }, + { + "epoch": 10.44, + "grad_norm": 0.22278301417827606, + "learning_rate": 4.47822e-05, + "loss": 2.2905796813964843, + "step": 78300 + }, + { + "epoch": 10.453333333333333, + "grad_norm": 0.25287824869155884, + "learning_rate": 4.477553333333334e-05, + "loss": 2.290713653564453, + "step": 78400 + }, + { + "epoch": 10.466666666666667, + "grad_norm": 0.24435845017433167, + "learning_rate": 4.476886666666667e-05, + "loss": 2.2916438293457033, + "step": 78500 + }, + { + "epoch": 10.48, + "grad_norm": 0.24885345995426178, + "learning_rate": 4.47622e-05, + "loss": 2.2903347778320313, + "step": 78600 + }, + { + "epoch": 10.493333333333334, + "grad_norm": 0.2466493546962738, + "learning_rate": 4.4755533333333335e-05, + "loss": 2.292062225341797, + "step": 78700 + }, + { + "epoch": 10.506666666666666, + "grad_norm": 0.25343602895736694, + "learning_rate": 4.474886666666667e-05, + "loss": 2.293315124511719, + "step": 78800 + }, + { + "epoch": 10.52, + "grad_norm": 0.26084843277931213, + "learning_rate": 4.47422e-05, + "loss": 2.290987854003906, + "step": 78900 + }, + { + "epoch": 10.533333333333333, + "grad_norm": 0.22565628588199615, + "learning_rate": 4.473553333333333e-05, + "loss": 2.291141357421875, + "step": 79000 + }, + { + "epoch": 10.546666666666667, + "grad_norm": 0.2424556016921997, + "learning_rate": 4.472886666666667e-05, + "loss": 2.2940351867675783, + "step": 79100 + }, + { + "epoch": 10.56, + "grad_norm": 0.23173433542251587, + "learning_rate": 4.4722200000000004e-05, + "loss": 2.2938632202148437, + "step": 79200 + }, + { + "epoch": 10.573333333333334, + "grad_norm": 0.24767623841762543, + "learning_rate": 4.4715533333333336e-05, + "loss": 2.294097595214844, + "step": 79300 + }, + { + "epoch": 10.586666666666666, + "grad_norm": 0.2494058907032013, + "learning_rate": 4.470886666666667e-05, + "loss": 2.292882843017578, + "step": 79400 + }, + { + "epoch": 10.6, + "grad_norm": 0.2309560924768448, + "learning_rate": 4.47022e-05, + "loss": 2.2917105102539064, + "step": 79500 + }, + { + "epoch": 10.613333333333333, + "grad_norm": 0.2502034306526184, + "learning_rate": 4.469553333333333e-05, + "loss": 2.2940020751953125, + "step": 79600 + }, + { + "epoch": 10.626666666666667, + "grad_norm": 0.2417595088481903, + "learning_rate": 4.4688866666666665e-05, + "loss": 2.2959962463378907, + "step": 79700 + }, + { + "epoch": 10.64, + "grad_norm": 0.2390497922897339, + "learning_rate": 4.4682200000000004e-05, + "loss": 2.2932833862304687, + "step": 79800 + }, + { + "epoch": 10.653333333333332, + "grad_norm": 0.25319451093673706, + "learning_rate": 4.4675533333333336e-05, + "loss": 2.2950804138183596, + "step": 79900 + }, + { + "epoch": 10.666666666666666, + "grad_norm": 0.23525965213775635, + "learning_rate": 4.466886666666667e-05, + "loss": 2.2939056396484374, + "step": 80000 + }, + { + "epoch": 10.68, + "grad_norm": 0.24645350873470306, + "learning_rate": 4.46622e-05, + "loss": 2.2950694274902346, + "step": 80100 + }, + { + "epoch": 10.693333333333333, + "grad_norm": 0.24350802600383759, + "learning_rate": 4.46556e-05, + "loss": 2.295481414794922, + "step": 80200 + }, + { + "epoch": 10.706666666666667, + "grad_norm": 0.24546648561954498, + "learning_rate": 4.464893333333334e-05, + "loss": 2.2965150451660157, + "step": 80300 + }, + { + "epoch": 10.72, + "grad_norm": 0.24012289941310883, + "learning_rate": 4.464226666666667e-05, + "loss": 2.29464111328125, + "step": 80400 + }, + { + "epoch": 10.733333333333333, + "grad_norm": 0.2439471334218979, + "learning_rate": 4.46356e-05, + "loss": 2.2982655334472657, + "step": 80500 + }, + { + "epoch": 10.746666666666666, + "grad_norm": 0.24235573410987854, + "learning_rate": 4.4628933333333336e-05, + "loss": 2.2973838806152345, + "step": 80600 + }, + { + "epoch": 10.76, + "grad_norm": 0.2552349865436554, + "learning_rate": 4.462226666666667e-05, + "loss": 2.2967495727539062, + "step": 80700 + }, + { + "epoch": 10.773333333333333, + "grad_norm": 0.2687914967536926, + "learning_rate": 4.46156e-05, + "loss": 2.2971734619140625, + "step": 80800 + }, + { + "epoch": 10.786666666666667, + "grad_norm": 0.22800393402576447, + "learning_rate": 4.460893333333334e-05, + "loss": 2.295909881591797, + "step": 80900 + }, + { + "epoch": 10.8, + "grad_norm": 0.25448915362358093, + "learning_rate": 4.460226666666667e-05, + "loss": 2.299366455078125, + "step": 81000 + }, + { + "epoch": 10.813333333333333, + "grad_norm": 0.24387459456920624, + "learning_rate": 4.4595600000000004e-05, + "loss": 2.297369384765625, + "step": 81100 + }, + { + "epoch": 10.826666666666666, + "grad_norm": 0.24151787161827087, + "learning_rate": 4.4588933333333336e-05, + "loss": 2.299127197265625, + "step": 81200 + }, + { + "epoch": 10.84, + "grad_norm": 0.2260817289352417, + "learning_rate": 4.458226666666667e-05, + "loss": 2.2975596618652343, + "step": 81300 + }, + { + "epoch": 10.853333333333333, + "grad_norm": 0.24239422380924225, + "learning_rate": 4.45756e-05, + "loss": 2.2985691833496094, + "step": 81400 + }, + { + "epoch": 10.866666666666667, + "grad_norm": 0.21752089262008667, + "learning_rate": 4.456893333333333e-05, + "loss": 2.300589294433594, + "step": 81500 + }, + { + "epoch": 10.88, + "grad_norm": 0.23936143517494202, + "learning_rate": 4.456226666666667e-05, + "loss": 2.2985806274414062, + "step": 81600 + }, + { + "epoch": 10.893333333333333, + "grad_norm": 0.25165167450904846, + "learning_rate": 4.4555600000000004e-05, + "loss": 2.3023681640625, + "step": 81700 + }, + { + "epoch": 10.906666666666666, + "grad_norm": 0.24560686945915222, + "learning_rate": 4.4548933333333336e-05, + "loss": 2.296816101074219, + "step": 81800 + }, + { + "epoch": 10.92, + "grad_norm": 0.235377699136734, + "learning_rate": 4.454226666666667e-05, + "loss": 2.3003538513183592, + "step": 81900 + }, + { + "epoch": 10.933333333333334, + "grad_norm": 0.21916425228118896, + "learning_rate": 4.45356e-05, + "loss": 2.302768096923828, + "step": 82000 + }, + { + "epoch": 10.946666666666667, + "grad_norm": 0.23057326674461365, + "learning_rate": 4.452893333333333e-05, + "loss": 2.299179992675781, + "step": 82100 + }, + { + "epoch": 10.96, + "grad_norm": 0.23899604380130768, + "learning_rate": 4.452233333333334e-05, + "loss": 2.3004336547851563, + "step": 82200 + }, + { + "epoch": 10.973333333333333, + "grad_norm": 0.23253585398197174, + "learning_rate": 4.4515666666666665e-05, + "loss": 2.3014898681640625, + "step": 82300 + }, + { + "epoch": 10.986666666666666, + "grad_norm": 0.24487797915935516, + "learning_rate": 4.4509000000000004e-05, + "loss": 2.3026199340820312, + "step": 82400 + }, + { + "epoch": 11.0, + "grad_norm": 0.2387479692697525, + "learning_rate": 4.4502333333333336e-05, + "loss": 2.2974674987792967, + "step": 82500 + }, + { + "epoch": 11.013333333333334, + "grad_norm": 0.2720658481121063, + "learning_rate": 4.4495733333333335e-05, + "loss": 2.2671746826171875, + "step": 82600 + }, + { + "epoch": 11.026666666666667, + "grad_norm": 0.263578861951828, + "learning_rate": 4.448906666666667e-05, + "loss": 2.2688304138183595, + "step": 82700 + }, + { + "epoch": 11.04, + "grad_norm": 0.2674785852432251, + "learning_rate": 4.44824e-05, + "loss": 2.270413055419922, + "step": 82800 + }, + { + "epoch": 11.053333333333333, + "grad_norm": 0.28208568692207336, + "learning_rate": 4.447573333333334e-05, + "loss": 2.267439422607422, + "step": 82900 + }, + { + "epoch": 11.066666666666666, + "grad_norm": 0.2503279447555542, + "learning_rate": 4.446906666666667e-05, + "loss": 2.27013427734375, + "step": 83000 + }, + { + "epoch": 11.08, + "grad_norm": 0.2667846083641052, + "learning_rate": 4.44624e-05, + "loss": 2.270685577392578, + "step": 83100 + }, + { + "epoch": 11.093333333333334, + "grad_norm": 0.2649480700492859, + "learning_rate": 4.4455733333333335e-05, + "loss": 2.2691964721679687, + "step": 83200 + }, + { + "epoch": 11.106666666666667, + "grad_norm": 0.27101367712020874, + "learning_rate": 4.444906666666667e-05, + "loss": 2.272455291748047, + "step": 83300 + }, + { + "epoch": 11.12, + "grad_norm": 0.24341875314712524, + "learning_rate": 4.44424e-05, + "loss": 2.2689295959472657, + "step": 83400 + }, + { + "epoch": 11.133333333333333, + "grad_norm": 0.25448212027549744, + "learning_rate": 4.443573333333333e-05, + "loss": 2.2724458312988283, + "step": 83500 + }, + { + "epoch": 11.146666666666667, + "grad_norm": 0.25443369150161743, + "learning_rate": 4.442906666666667e-05, + "loss": 2.271412811279297, + "step": 83600 + }, + { + "epoch": 11.16, + "grad_norm": 0.26732975244522095, + "learning_rate": 4.4422400000000003e-05, + "loss": 2.271360321044922, + "step": 83700 + }, + { + "epoch": 11.173333333333334, + "grad_norm": 0.26395460963249207, + "learning_rate": 4.4415733333333336e-05, + "loss": 2.26961669921875, + "step": 83800 + }, + { + "epoch": 11.186666666666667, + "grad_norm": 0.24745440483093262, + "learning_rate": 4.440906666666667e-05, + "loss": 2.2744174194335938, + "step": 83900 + }, + { + "epoch": 11.2, + "grad_norm": 0.26402172446250916, + "learning_rate": 4.44024e-05, + "loss": 2.2720037841796876, + "step": 84000 + }, + { + "epoch": 11.213333333333333, + "grad_norm": 0.23789356648921967, + "learning_rate": 4.439573333333333e-05, + "loss": 2.274175109863281, + "step": 84100 + }, + { + "epoch": 11.226666666666667, + "grad_norm": 0.24144236743450165, + "learning_rate": 4.4389066666666665e-05, + "loss": 2.2732891845703125, + "step": 84200 + }, + { + "epoch": 11.24, + "grad_norm": 0.2500831186771393, + "learning_rate": 4.4382400000000004e-05, + "loss": 2.2730227661132814, + "step": 84300 + }, + { + "epoch": 11.253333333333334, + "grad_norm": 0.25501829385757446, + "learning_rate": 4.4375733333333336e-05, + "loss": 2.274988708496094, + "step": 84400 + }, + { + "epoch": 11.266666666666667, + "grad_norm": 0.22763259708881378, + "learning_rate": 4.436906666666667e-05, + "loss": 2.272532196044922, + "step": 84500 + }, + { + "epoch": 11.28, + "grad_norm": 0.25562381744384766, + "learning_rate": 4.43624e-05, + "loss": 2.2755363464355467, + "step": 84600 + }, + { + "epoch": 11.293333333333333, + "grad_norm": 0.25353795289993286, + "learning_rate": 4.435573333333334e-05, + "loss": 2.2750617980957033, + "step": 84700 + }, + { + "epoch": 11.306666666666667, + "grad_norm": 0.26931309700012207, + "learning_rate": 4.4349066666666665e-05, + "loss": 2.2751278686523437, + "step": 84800 + }, + { + "epoch": 11.32, + "grad_norm": 0.2389533370733261, + "learning_rate": 4.43424e-05, + "loss": 2.278493194580078, + "step": 84900 + }, + { + "epoch": 11.333333333333334, + "grad_norm": 0.2465227097272873, + "learning_rate": 4.4335733333333337e-05, + "loss": 2.2789736938476564, + "step": 85000 + }, + { + "epoch": 11.346666666666668, + "grad_norm": 0.25453120470046997, + "learning_rate": 4.432906666666667e-05, + "loss": 2.2776898193359374, + "step": 85100 + }, + { + "epoch": 11.36, + "grad_norm": 0.2660987377166748, + "learning_rate": 4.43224e-05, + "loss": 2.2778756713867185, + "step": 85200 + }, + { + "epoch": 11.373333333333333, + "grad_norm": 0.25308796763420105, + "learning_rate": 4.431573333333334e-05, + "loss": 2.279368438720703, + "step": 85300 + }, + { + "epoch": 11.386666666666667, + "grad_norm": 0.25836026668548584, + "learning_rate": 4.430906666666667e-05, + "loss": 2.2798582458496095, + "step": 85400 + }, + { + "epoch": 11.4, + "grad_norm": 0.25316664576530457, + "learning_rate": 4.43024e-05, + "loss": 2.279602813720703, + "step": 85500 + }, + { + "epoch": 11.413333333333334, + "grad_norm": 0.2550676167011261, + "learning_rate": 4.429573333333334e-05, + "loss": 2.2755258178710935, + "step": 85600 + }, + { + "epoch": 11.426666666666666, + "grad_norm": 0.23546501994132996, + "learning_rate": 4.428906666666667e-05, + "loss": 2.2800631713867188, + "step": 85700 + }, + { + "epoch": 11.44, + "grad_norm": 0.264654278755188, + "learning_rate": 4.42824e-05, + "loss": 2.2767239379882813, + "step": 85800 + }, + { + "epoch": 11.453333333333333, + "grad_norm": 0.24899619817733765, + "learning_rate": 4.4275733333333334e-05, + "loss": 2.2798704528808593, + "step": 85900 + }, + { + "epoch": 11.466666666666667, + "grad_norm": 0.24456363916397095, + "learning_rate": 4.426906666666667e-05, + "loss": 2.2780026245117186, + "step": 86000 + }, + { + "epoch": 11.48, + "grad_norm": 0.25708940625190735, + "learning_rate": 4.4262400000000005e-05, + "loss": 2.2792425537109375, + "step": 86100 + }, + { + "epoch": 11.493333333333334, + "grad_norm": 0.2511962354183197, + "learning_rate": 4.425573333333334e-05, + "loss": 2.282320251464844, + "step": 86200 + }, + { + "epoch": 11.506666666666666, + "grad_norm": 0.24816451966762543, + "learning_rate": 4.424906666666667e-05, + "loss": 2.2792512512207033, + "step": 86300 + }, + { + "epoch": 11.52, + "grad_norm": 0.2514301836490631, + "learning_rate": 4.42424e-05, + "loss": 2.2795748901367188, + "step": 86400 + }, + { + "epoch": 11.533333333333333, + "grad_norm": 0.2495884746313095, + "learning_rate": 4.4235733333333334e-05, + "loss": 2.278619689941406, + "step": 86500 + }, + { + "epoch": 11.546666666666667, + "grad_norm": 0.24815420806407928, + "learning_rate": 4.422913333333333e-05, + "loss": 2.2829832458496093, + "step": 86600 + }, + { + "epoch": 11.56, + "grad_norm": 0.2668995261192322, + "learning_rate": 4.4222466666666665e-05, + "loss": 2.2842198181152344, + "step": 86700 + }, + { + "epoch": 11.573333333333334, + "grad_norm": 0.256393700838089, + "learning_rate": 4.4215800000000004e-05, + "loss": 2.2821044921875, + "step": 86800 + }, + { + "epoch": 11.586666666666666, + "grad_norm": 0.2424868494272232, + "learning_rate": 4.420913333333334e-05, + "loss": 2.2830775451660155, + "step": 86900 + }, + { + "epoch": 11.6, + "grad_norm": 0.27431467175483704, + "learning_rate": 4.420246666666667e-05, + "loss": 2.28398681640625, + "step": 87000 + }, + { + "epoch": 11.613333333333333, + "grad_norm": 0.267622709274292, + "learning_rate": 4.41958e-05, + "loss": 2.283782958984375, + "step": 87100 + }, + { + "epoch": 11.626666666666667, + "grad_norm": 0.2440316379070282, + "learning_rate": 4.418913333333334e-05, + "loss": 2.28414794921875, + "step": 87200 + }, + { + "epoch": 11.64, + "grad_norm": 0.259630411863327, + "learning_rate": 4.4182466666666666e-05, + "loss": 2.2857057189941408, + "step": 87300 + }, + { + "epoch": 11.653333333333332, + "grad_norm": 0.2571096122264862, + "learning_rate": 4.41758e-05, + "loss": 2.2847987365722657, + "step": 87400 + }, + { + "epoch": 11.666666666666666, + "grad_norm": 0.2570159137248993, + "learning_rate": 4.416913333333334e-05, + "loss": 2.2837939453125, + "step": 87500 + }, + { + "epoch": 11.68, + "grad_norm": 0.2649681270122528, + "learning_rate": 4.416246666666667e-05, + "loss": 2.2841265869140623, + "step": 87600 + }, + { + "epoch": 11.693333333333333, + "grad_norm": 0.26410555839538574, + "learning_rate": 4.41558e-05, + "loss": 2.2851953125, + "step": 87700 + }, + { + "epoch": 11.706666666666667, + "grad_norm": 0.2622752785682678, + "learning_rate": 4.4149133333333334e-05, + "loss": 2.2836956787109375, + "step": 87800 + }, + { + "epoch": 11.72, + "grad_norm": 0.2514193058013916, + "learning_rate": 4.414246666666667e-05, + "loss": 2.2842561340332033, + "step": 87900 + }, + { + "epoch": 11.733333333333333, + "grad_norm": 0.2531854212284088, + "learning_rate": 4.41358e-05, + "loss": 2.284789733886719, + "step": 88000 + }, + { + "epoch": 11.746666666666666, + "grad_norm": 0.2689782679080963, + "learning_rate": 4.412913333333333e-05, + "loss": 2.2857350158691405, + "step": 88100 + }, + { + "epoch": 11.76, + "grad_norm": 0.24945223331451416, + "learning_rate": 4.412246666666667e-05, + "loss": 2.2845068359375, + "step": 88200 + }, + { + "epoch": 11.773333333333333, + "grad_norm": 0.26712265610694885, + "learning_rate": 4.41158e-05, + "loss": 2.2854434204101564, + "step": 88300 + }, + { + "epoch": 11.786666666666667, + "grad_norm": 0.256874680519104, + "learning_rate": 4.4109133333333334e-05, + "loss": 2.287956085205078, + "step": 88400 + }, + { + "epoch": 11.8, + "grad_norm": 0.2476692944765091, + "learning_rate": 4.4102533333333333e-05, + "loss": 2.286315460205078, + "step": 88500 + }, + { + "epoch": 11.813333333333333, + "grad_norm": 0.2615588903427124, + "learning_rate": 4.4095866666666666e-05, + "loss": 2.284837188720703, + "step": 88600 + }, + { + "epoch": 11.826666666666666, + "grad_norm": 0.24872687458992004, + "learning_rate": 4.4089200000000005e-05, + "loss": 2.285694580078125, + "step": 88700 + }, + { + "epoch": 11.84, + "grad_norm": 0.2530681788921356, + "learning_rate": 4.408253333333334e-05, + "loss": 2.2873902893066407, + "step": 88800 + }, + { + "epoch": 11.853333333333333, + "grad_norm": 0.24849970638751984, + "learning_rate": 4.407586666666667e-05, + "loss": 2.2867955017089843, + "step": 88900 + }, + { + "epoch": 11.866666666666667, + "grad_norm": 0.24246734380722046, + "learning_rate": 4.40692e-05, + "loss": 2.289001770019531, + "step": 89000 + }, + { + "epoch": 11.88, + "grad_norm": 0.2607153654098511, + "learning_rate": 4.4062533333333334e-05, + "loss": 2.2897518920898436, + "step": 89100 + }, + { + "epoch": 11.893333333333333, + "grad_norm": 0.2614729106426239, + "learning_rate": 4.4055866666666666e-05, + "loss": 2.2860928344726563, + "step": 89200 + }, + { + "epoch": 11.906666666666666, + "grad_norm": 0.2584093511104584, + "learning_rate": 4.40492e-05, + "loss": 2.2889364624023436, + "step": 89300 + }, + { + "epoch": 11.92, + "grad_norm": 0.25701311230659485, + "learning_rate": 4.404253333333334e-05, + "loss": 2.2891424560546874, + "step": 89400 + }, + { + "epoch": 11.933333333333334, + "grad_norm": 0.2440747767686844, + "learning_rate": 4.403586666666667e-05, + "loss": 2.2895196533203124, + "step": 89500 + }, + { + "epoch": 11.946666666666667, + "grad_norm": 0.2381986528635025, + "learning_rate": 4.40292e-05, + "loss": 2.2897454833984376, + "step": 89600 + }, + { + "epoch": 11.96, + "grad_norm": 0.26296404004096985, + "learning_rate": 4.402253333333334e-05, + "loss": 2.2879896545410157, + "step": 89700 + }, + { + "epoch": 11.973333333333333, + "grad_norm": 0.25517991185188293, + "learning_rate": 4.4015866666666666e-05, + "loss": 2.2889413452148437, + "step": 89800 + }, + { + "epoch": 11.986666666666666, + "grad_norm": 0.2450113147497177, + "learning_rate": 4.40092e-05, + "loss": 2.2893191528320314, + "step": 89900 + }, + { + "epoch": 12.0, + "grad_norm": 0.250333309173584, + "learning_rate": 4.400253333333334e-05, + "loss": 2.289803161621094, + "step": 90000 + }, + { + "epoch": 12.013333333333334, + "grad_norm": 0.26415345072746277, + "learning_rate": 4.399586666666667e-05, + "loss": 2.2520457458496095, + "step": 90100 + }, + { + "epoch": 12.026666666666667, + "grad_norm": 0.270293265581131, + "learning_rate": 4.39892e-05, + "loss": 2.256067810058594, + "step": 90200 + }, + { + "epoch": 12.04, + "grad_norm": 0.26308006048202515, + "learning_rate": 4.3982533333333335e-05, + "loss": 2.254475402832031, + "step": 90300 + }, + { + "epoch": 12.053333333333333, + "grad_norm": 0.26801061630249023, + "learning_rate": 4.3975866666666674e-05, + "loss": 2.2552793884277342, + "step": 90400 + }, + { + "epoch": 12.066666666666666, + "grad_norm": 0.26214471459388733, + "learning_rate": 4.3969200000000006e-05, + "loss": 2.258145599365234, + "step": 90500 + }, + { + "epoch": 12.08, + "grad_norm": 0.28105658292770386, + "learning_rate": 4.396253333333333e-05, + "loss": 2.2529132080078127, + "step": 90600 + }, + { + "epoch": 12.093333333333334, + "grad_norm": 0.2663695216178894, + "learning_rate": 4.395586666666667e-05, + "loss": 2.255912322998047, + "step": 90700 + }, + { + "epoch": 12.106666666666667, + "grad_norm": 0.2649990916252136, + "learning_rate": 4.39492e-05, + "loss": 2.257332000732422, + "step": 90800 + }, + { + "epoch": 12.12, + "grad_norm": 0.2807125747203827, + "learning_rate": 4.39426e-05, + "loss": 2.254444274902344, + "step": 90900 + }, + { + "epoch": 12.133333333333333, + "grad_norm": 0.2781652510166168, + "learning_rate": 4.3935933333333334e-05, + "loss": 2.255809478759766, + "step": 91000 + }, + { + "epoch": 12.146666666666667, + "grad_norm": 0.2698095142841339, + "learning_rate": 4.3929266666666666e-05, + "loss": 2.2598388671875, + "step": 91100 + }, + { + "epoch": 12.16, + "grad_norm": 0.2597528100013733, + "learning_rate": 4.3922600000000005e-05, + "loss": 2.2584068298339846, + "step": 91200 + }, + { + "epoch": 12.173333333333334, + "grad_norm": 0.29636549949645996, + "learning_rate": 4.391593333333334e-05, + "loss": 2.2593704223632813, + "step": 91300 + }, + { + "epoch": 12.186666666666667, + "grad_norm": 0.26234522461891174, + "learning_rate": 4.390926666666667e-05, + "loss": 2.2581317138671877, + "step": 91400 + }, + { + "epoch": 12.2, + "grad_norm": 0.2541376054286957, + "learning_rate": 4.39026e-05, + "loss": 2.2626708984375, + "step": 91500 + }, + { + "epoch": 12.213333333333333, + "grad_norm": 0.26197925209999084, + "learning_rate": 4.3895933333333334e-05, + "loss": 2.260786285400391, + "step": 91600 + }, + { + "epoch": 12.226666666666667, + "grad_norm": 0.2817310690879822, + "learning_rate": 4.388926666666667e-05, + "loss": 2.2600221252441406, + "step": 91700 + }, + { + "epoch": 12.24, + "grad_norm": 0.2767874002456665, + "learning_rate": 4.38826e-05, + "loss": 2.259307556152344, + "step": 91800 + }, + { + "epoch": 12.253333333333334, + "grad_norm": 0.28231081366539, + "learning_rate": 4.387593333333334e-05, + "loss": 2.26181396484375, + "step": 91900 + }, + { + "epoch": 12.266666666666667, + "grad_norm": 0.29353827238082886, + "learning_rate": 4.386926666666667e-05, + "loss": 2.2626690673828125, + "step": 92000 + }, + { + "epoch": 12.28, + "grad_norm": 0.28261885046958923, + "learning_rate": 4.38626e-05, + "loss": 2.2611619567871095, + "step": 92100 + }, + { + "epoch": 12.293333333333333, + "grad_norm": 0.27281126379966736, + "learning_rate": 4.3855933333333335e-05, + "loss": 2.2623275756835937, + "step": 92200 + }, + { + "epoch": 12.306666666666667, + "grad_norm": 0.27092328667640686, + "learning_rate": 4.384926666666667e-05, + "loss": 2.2650576782226564, + "step": 92300 + }, + { + "epoch": 12.32, + "grad_norm": 0.27784717082977295, + "learning_rate": 4.38426e-05, + "loss": 2.265977478027344, + "step": 92400 + }, + { + "epoch": 12.333333333333334, + "grad_norm": 0.2821849286556244, + "learning_rate": 4.383593333333333e-05, + "loss": 2.2627384948730467, + "step": 92500 + }, + { + "epoch": 12.346666666666668, + "grad_norm": 0.2593942880630493, + "learning_rate": 4.382926666666667e-05, + "loss": 2.2643051147460938, + "step": 92600 + }, + { + "epoch": 12.36, + "grad_norm": 0.2664111852645874, + "learning_rate": 4.38226e-05, + "loss": 2.263711700439453, + "step": 92700 + }, + { + "epoch": 12.373333333333333, + "grad_norm": 0.27181532979011536, + "learning_rate": 4.3815933333333335e-05, + "loss": 2.2646673583984374, + "step": 92800 + }, + { + "epoch": 12.386666666666667, + "grad_norm": 0.27028733491897583, + "learning_rate": 4.380926666666667e-05, + "loss": 2.263740997314453, + "step": 92900 + }, + { + "epoch": 12.4, + "grad_norm": 0.27383387088775635, + "learning_rate": 4.3802600000000006e-05, + "loss": 2.2647544860839846, + "step": 93000 + }, + { + "epoch": 12.413333333333334, + "grad_norm": 0.2857363820075989, + "learning_rate": 4.379593333333333e-05, + "loss": 2.2678724670410157, + "step": 93100 + }, + { + "epoch": 12.426666666666666, + "grad_norm": 0.2589321434497833, + "learning_rate": 4.3789266666666664e-05, + "loss": 2.266948547363281, + "step": 93200 + }, + { + "epoch": 12.44, + "grad_norm": 0.2658815085887909, + "learning_rate": 4.37826e-05, + "loss": 2.266887969970703, + "step": 93300 + }, + { + "epoch": 12.453333333333333, + "grad_norm": 0.25604525208473206, + "learning_rate": 4.3775933333333336e-05, + "loss": 2.2663844299316405, + "step": 93400 + }, + { + "epoch": 12.466666666666667, + "grad_norm": 0.2693767249584198, + "learning_rate": 4.376926666666667e-05, + "loss": 2.268565368652344, + "step": 93500 + }, + { + "epoch": 12.48, + "grad_norm": 0.2705082297325134, + "learning_rate": 4.376260000000001e-05, + "loss": 2.2688444519042967, + "step": 93600 + }, + { + "epoch": 12.493333333333334, + "grad_norm": 0.26299747824668884, + "learning_rate": 4.375593333333334e-05, + "loss": 2.2663604736328127, + "step": 93700 + }, + { + "epoch": 12.506666666666666, + "grad_norm": 0.2636234760284424, + "learning_rate": 4.3749266666666665e-05, + "loss": 2.267936096191406, + "step": 93800 + }, + { + "epoch": 12.52, + "grad_norm": 0.27005478739738464, + "learning_rate": 4.37426e-05, + "loss": 2.2693917846679685, + "step": 93900 + }, + { + "epoch": 12.533333333333333, + "grad_norm": 0.26250335574150085, + "learning_rate": 4.3735933333333336e-05, + "loss": 2.2679597473144533, + "step": 94000 + }, + { + "epoch": 12.546666666666667, + "grad_norm": 0.2671932876110077, + "learning_rate": 4.3729333333333335e-05, + "loss": 2.2690809631347655, + "step": 94100 + }, + { + "epoch": 12.56, + "grad_norm": 0.2680586576461792, + "learning_rate": 4.372266666666667e-05, + "loss": 2.271476287841797, + "step": 94200 + }, + { + "epoch": 12.573333333333334, + "grad_norm": 0.2628432512283325, + "learning_rate": 4.3716e-05, + "loss": 2.2699676513671876, + "step": 94300 + }, + { + "epoch": 12.586666666666666, + "grad_norm": 0.2540188431739807, + "learning_rate": 4.370933333333334e-05, + "loss": 2.2718327331542967, + "step": 94400 + }, + { + "epoch": 12.6, + "grad_norm": 0.2647560238838196, + "learning_rate": 4.370266666666667e-05, + "loss": 2.2681085205078126, + "step": 94500 + }, + { + "epoch": 12.613333333333333, + "grad_norm": 0.2745302617549896, + "learning_rate": 4.3696e-05, + "loss": 2.2698655700683594, + "step": 94600 + }, + { + "epoch": 12.626666666666667, + "grad_norm": 0.26162075996398926, + "learning_rate": 4.3689333333333335e-05, + "loss": 2.2712269592285157, + "step": 94700 + }, + { + "epoch": 12.64, + "grad_norm": 0.2582067847251892, + "learning_rate": 4.368266666666667e-05, + "loss": 2.272103271484375, + "step": 94800 + }, + { + "epoch": 12.653333333333332, + "grad_norm": 0.27295711636543274, + "learning_rate": 4.3676e-05, + "loss": 2.272527618408203, + "step": 94900 + }, + { + "epoch": 12.666666666666666, + "grad_norm": 0.2765968441963196, + "learning_rate": 4.366933333333333e-05, + "loss": 2.271612243652344, + "step": 95000 + }, + { + "epoch": 12.68, + "grad_norm": 0.25656306743621826, + "learning_rate": 4.366266666666667e-05, + "loss": 2.271820068359375, + "step": 95100 + }, + { + "epoch": 12.693333333333333, + "grad_norm": 0.2678724527359009, + "learning_rate": 4.3656000000000004e-05, + "loss": 2.271623992919922, + "step": 95200 + }, + { + "epoch": 12.706666666666667, + "grad_norm": 0.26828429102897644, + "learning_rate": 4.3649333333333336e-05, + "loss": 2.272816467285156, + "step": 95300 + }, + { + "epoch": 12.72, + "grad_norm": 0.2544470429420471, + "learning_rate": 4.364266666666667e-05, + "loss": 2.2750363159179687, + "step": 95400 + }, + { + "epoch": 12.733333333333333, + "grad_norm": 0.2685322165489197, + "learning_rate": 4.363600000000001e-05, + "loss": 2.2729071044921874, + "step": 95500 + }, + { + "epoch": 12.746666666666666, + "grad_norm": 0.26069387793540955, + "learning_rate": 4.362933333333333e-05, + "loss": 2.2722439575195312, + "step": 95600 + }, + { + "epoch": 12.76, + "grad_norm": 0.2649424374103546, + "learning_rate": 4.3622666666666665e-05, + "loss": 2.272758026123047, + "step": 95700 + }, + { + "epoch": 12.773333333333333, + "grad_norm": 0.2521308660507202, + "learning_rate": 4.3616000000000004e-05, + "loss": 2.272996520996094, + "step": 95800 + }, + { + "epoch": 12.786666666666667, + "grad_norm": 0.25602442026138306, + "learning_rate": 4.3609333333333336e-05, + "loss": 2.2761857604980467, + "step": 95900 + }, + { + "epoch": 12.8, + "grad_norm": 0.267101913690567, + "learning_rate": 4.360266666666667e-05, + "loss": 2.2757493591308595, + "step": 96000 + }, + { + "epoch": 12.813333333333333, + "grad_norm": 0.26094216108322144, + "learning_rate": 4.3596e-05, + "loss": 2.2767680358886717, + "step": 96100 + }, + { + "epoch": 12.826666666666666, + "grad_norm": 0.3060274124145508, + "learning_rate": 4.358933333333334e-05, + "loss": 2.276941833496094, + "step": 96200 + }, + { + "epoch": 12.84, + "grad_norm": 0.26290687918663025, + "learning_rate": 4.3582666666666665e-05, + "loss": 2.275010528564453, + "step": 96300 + }, + { + "epoch": 12.853333333333333, + "grad_norm": 0.2535942792892456, + "learning_rate": 4.3576e-05, + "loss": 2.273764343261719, + "step": 96400 + }, + { + "epoch": 12.866666666666667, + "grad_norm": 0.27731791138648987, + "learning_rate": 4.3569333333333337e-05, + "loss": 2.2726361083984377, + "step": 96500 + }, + { + "epoch": 12.88, + "grad_norm": 0.2616978585720062, + "learning_rate": 4.356266666666667e-05, + "loss": 2.2775596618652343, + "step": 96600 + }, + { + "epoch": 12.893333333333333, + "grad_norm": 0.28346607089042664, + "learning_rate": 4.3556e-05, + "loss": 2.277263488769531, + "step": 96700 + }, + { + "epoch": 12.906666666666666, + "grad_norm": 0.26759618520736694, + "learning_rate": 4.354933333333333e-05, + "loss": 2.2788565063476565, + "step": 96800 + }, + { + "epoch": 12.92, + "grad_norm": 0.25372806191444397, + "learning_rate": 4.354266666666667e-05, + "loss": 2.278957977294922, + "step": 96900 + }, + { + "epoch": 12.933333333333334, + "grad_norm": 0.2680625319480896, + "learning_rate": 4.3536000000000005e-05, + "loss": 2.2768804931640627, + "step": 97000 + }, + { + "epoch": 12.946666666666667, + "grad_norm": 0.28444984555244446, + "learning_rate": 4.352933333333333e-05, + "loss": 2.2771568298339844, + "step": 97100 + }, + { + "epoch": 12.96, + "grad_norm": 0.26102322340011597, + "learning_rate": 4.352266666666667e-05, + "loss": 2.277088928222656, + "step": 97200 + }, + { + "epoch": 12.973333333333333, + "grad_norm": 0.25774040818214417, + "learning_rate": 4.3516e-05, + "loss": 2.2783038330078127, + "step": 97300 + }, + { + "epoch": 12.986666666666666, + "grad_norm": 0.27031639218330383, + "learning_rate": 4.3509333333333334e-05, + "loss": 2.276095275878906, + "step": 97400 + }, + { + "epoch": 13.0, + "grad_norm": 0.262939989566803, + "learning_rate": 4.3502666666666666e-05, + "loss": 2.2774124145507812, + "step": 97500 + }, + { + "epoch": 13.013333333333334, + "grad_norm": 0.29187247157096863, + "learning_rate": 4.3496066666666665e-05, + "loss": 2.2387960815429686, + "step": 97600 + }, + { + "epoch": 13.026666666666667, + "grad_norm": 0.2766711413860321, + "learning_rate": 4.3489400000000004e-05, + "loss": 2.2393284606933594, + "step": 97700 + }, + { + "epoch": 13.04, + "grad_norm": 0.26698678731918335, + "learning_rate": 4.3482733333333336e-05, + "loss": 2.2385823059082033, + "step": 97800 + }, + { + "epoch": 13.053333333333333, + "grad_norm": 0.28331395983695984, + "learning_rate": 4.347606666666667e-05, + "loss": 2.23583251953125, + "step": 97900 + }, + { + "epoch": 13.066666666666666, + "grad_norm": 0.27367907762527466, + "learning_rate": 4.346940000000001e-05, + "loss": 2.2407188415527344, + "step": 98000 + }, + { + "epoch": 13.08, + "grad_norm": 0.28484055399894714, + "learning_rate": 4.346273333333333e-05, + "loss": 2.244789886474609, + "step": 98100 + }, + { + "epoch": 13.093333333333334, + "grad_norm": 0.28485485911369324, + "learning_rate": 4.3456066666666665e-05, + "loss": 2.242432861328125, + "step": 98200 + }, + { + "epoch": 13.106666666666667, + "grad_norm": 0.2772075831890106, + "learning_rate": 4.3449400000000005e-05, + "loss": 2.242548370361328, + "step": 98300 + }, + { + "epoch": 13.12, + "grad_norm": 0.2794252336025238, + "learning_rate": 4.344273333333334e-05, + "loss": 2.241208953857422, + "step": 98400 + }, + { + "epoch": 13.133333333333333, + "grad_norm": 0.2768386900424957, + "learning_rate": 4.343606666666667e-05, + "loss": 2.2418304443359376, + "step": 98500 + }, + { + "epoch": 13.146666666666667, + "grad_norm": 0.29671546816825867, + "learning_rate": 4.34294e-05, + "loss": 2.24133544921875, + "step": 98600 + }, + { + "epoch": 13.16, + "grad_norm": 0.28922173380851746, + "learning_rate": 4.342273333333334e-05, + "loss": 2.2457321166992186, + "step": 98700 + }, + { + "epoch": 13.173333333333334, + "grad_norm": 0.2911158800125122, + "learning_rate": 4.3416066666666666e-05, + "loss": 2.243005676269531, + "step": 98800 + }, + { + "epoch": 13.186666666666667, + "grad_norm": 0.2844465374946594, + "learning_rate": 4.34094e-05, + "loss": 2.2428907775878906, + "step": 98900 + }, + { + "epoch": 13.2, + "grad_norm": 0.29359185695648193, + "learning_rate": 4.340273333333334e-05, + "loss": 2.2461944580078126, + "step": 99000 + }, + { + "epoch": 13.213333333333333, + "grad_norm": 0.2992889881134033, + "learning_rate": 4.339606666666667e-05, + "loss": 2.2442695617675783, + "step": 99100 + }, + { + "epoch": 13.226666666666667, + "grad_norm": 0.28376510739326477, + "learning_rate": 4.33894e-05, + "loss": 2.2490634155273437, + "step": 99200 + }, + { + "epoch": 13.24, + "grad_norm": 0.26906511187553406, + "learning_rate": 4.3382733333333334e-05, + "loss": 2.248119354248047, + "step": 99300 + }, + { + "epoch": 13.253333333333334, + "grad_norm": 0.2935919165611267, + "learning_rate": 4.337606666666667e-05, + "loss": 2.244882354736328, + "step": 99400 + }, + { + "epoch": 13.266666666666667, + "grad_norm": 0.27943170070648193, + "learning_rate": 4.3369400000000005e-05, + "loss": 2.247407989501953, + "step": 99500 + }, + { + "epoch": 13.28, + "grad_norm": 0.27867066860198975, + "learning_rate": 4.336273333333333e-05, + "loss": 2.247802429199219, + "step": 99600 + }, + { + "epoch": 13.293333333333333, + "grad_norm": 0.29325079917907715, + "learning_rate": 4.335606666666667e-05, + "loss": 2.248299865722656, + "step": 99700 + }, + { + "epoch": 13.306666666666667, + "grad_norm": 0.276795893907547, + "learning_rate": 4.33494e-05, + "loss": 2.2507450866699217, + "step": 99800 + }, + { + "epoch": 13.32, + "grad_norm": 0.2778800427913666, + "learning_rate": 4.3342733333333334e-05, + "loss": 2.249114990234375, + "step": 99900 + }, + { + "epoch": 13.333333333333334, + "grad_norm": 0.2965216636657715, + "learning_rate": 4.3336066666666667e-05, + "loss": 2.250552520751953, + "step": 100000 + }, + { + "epoch": 13.346666666666668, + "grad_norm": 0.2709920108318329, + "learning_rate": 4.3329400000000006e-05, + "loss": 2.2509161376953126, + "step": 100100 + }, + { + "epoch": 13.36, + "grad_norm": 0.2882387638092041, + "learning_rate": 4.332273333333334e-05, + "loss": 2.2525457763671874, + "step": 100200 + }, + { + "epoch": 13.373333333333333, + "grad_norm": 0.2988874316215515, + "learning_rate": 4.331606666666667e-05, + "loss": 2.2508233642578124, + "step": 100300 + }, + { + "epoch": 13.386666666666667, + "grad_norm": 0.274324506521225, + "learning_rate": 4.33094e-05, + "loss": 2.2498133850097655, + "step": 100400 + }, + { + "epoch": 13.4, + "grad_norm": 0.29012390971183777, + "learning_rate": 4.3302733333333335e-05, + "loss": 2.252369079589844, + "step": 100500 + }, + { + "epoch": 13.413333333333334, + "grad_norm": 0.2632313668727875, + "learning_rate": 4.329606666666667e-05, + "loss": 2.2533638000488283, + "step": 100600 + }, + { + "epoch": 13.426666666666666, + "grad_norm": 0.26571324467658997, + "learning_rate": 4.32894e-05, + "loss": 2.253193054199219, + "step": 100700 + }, + { + "epoch": 13.44, + "grad_norm": 0.289485901594162, + "learning_rate": 4.328273333333334e-05, + "loss": 2.251653747558594, + "step": 100800 + }, + { + "epoch": 13.453333333333333, + "grad_norm": 0.2886415421962738, + "learning_rate": 4.327606666666667e-05, + "loss": 2.251334228515625, + "step": 100900 + }, + { + "epoch": 13.466666666666667, + "grad_norm": 0.2879510819911957, + "learning_rate": 4.32694e-05, + "loss": 2.2535078430175783, + "step": 101000 + }, + { + "epoch": 13.48, + "grad_norm": 0.2864849269390106, + "learning_rate": 4.3262733333333335e-05, + "loss": 2.2524153137207032, + "step": 101100 + }, + { + "epoch": 13.493333333333334, + "grad_norm": 0.27846381068229675, + "learning_rate": 4.325606666666667e-05, + "loss": 2.255931549072266, + "step": 101200 + }, + { + "epoch": 13.506666666666666, + "grad_norm": 0.293816477060318, + "learning_rate": 4.32494e-05, + "loss": 2.256122894287109, + "step": 101300 + }, + { + "epoch": 13.52, + "grad_norm": 0.2949255704879761, + "learning_rate": 4.324273333333333e-05, + "loss": 2.2581175231933592, + "step": 101400 + }, + { + "epoch": 13.533333333333333, + "grad_norm": 0.2826773226261139, + "learning_rate": 4.323606666666667e-05, + "loss": 2.255837097167969, + "step": 101500 + }, + { + "epoch": 13.546666666666667, + "grad_norm": 0.2743004262447357, + "learning_rate": 4.322953333333333e-05, + "loss": 2.2541908264160155, + "step": 101600 + }, + { + "epoch": 13.56, + "grad_norm": 0.2713441550731659, + "learning_rate": 4.322286666666667e-05, + "loss": 2.258142547607422, + "step": 101700 + }, + { + "epoch": 13.573333333333334, + "grad_norm": 0.283563494682312, + "learning_rate": 4.32162e-05, + "loss": 2.2553956604003904, + "step": 101800 + }, + { + "epoch": 13.586666666666666, + "grad_norm": 0.28330928087234497, + "learning_rate": 4.3209533333333334e-05, + "loss": 2.257396697998047, + "step": 101900 + }, + { + "epoch": 13.6, + "grad_norm": 0.2793908715248108, + "learning_rate": 4.3202866666666666e-05, + "loss": 2.256497344970703, + "step": 102000 + }, + { + "epoch": 13.613333333333333, + "grad_norm": 0.2900395393371582, + "learning_rate": 4.3196200000000005e-05, + "loss": 2.255678405761719, + "step": 102100 + }, + { + "epoch": 13.626666666666667, + "grad_norm": 0.27794957160949707, + "learning_rate": 4.318953333333334e-05, + "loss": 2.2580166625976563, + "step": 102200 + }, + { + "epoch": 13.64, + "grad_norm": 0.2686266303062439, + "learning_rate": 4.318286666666667e-05, + "loss": 2.260865478515625, + "step": 102300 + }, + { + "epoch": 13.653333333333332, + "grad_norm": 0.2785786986351013, + "learning_rate": 4.31762e-05, + "loss": 2.260006561279297, + "step": 102400 + }, + { + "epoch": 13.666666666666666, + "grad_norm": 0.28079360723495483, + "learning_rate": 4.3169533333333334e-05, + "loss": 2.2595237731933593, + "step": 102500 + }, + { + "epoch": 13.68, + "grad_norm": 0.3011217415332794, + "learning_rate": 4.3162866666666666e-05, + "loss": 2.2576690673828126, + "step": 102600 + }, + { + "epoch": 13.693333333333333, + "grad_norm": 0.29701074957847595, + "learning_rate": 4.3156200000000005e-05, + "loss": 2.2590093994140625, + "step": 102700 + }, + { + "epoch": 13.706666666666667, + "grad_norm": 0.284489244222641, + "learning_rate": 4.314953333333334e-05, + "loss": 2.2569615173339845, + "step": 102800 + }, + { + "epoch": 13.72, + "grad_norm": 0.29608434438705444, + "learning_rate": 4.314286666666667e-05, + "loss": 2.26008544921875, + "step": 102900 + }, + { + "epoch": 13.733333333333333, + "grad_norm": 0.2743198275566101, + "learning_rate": 4.31362e-05, + "loss": 2.2595872497558593, + "step": 103000 + }, + { + "epoch": 13.746666666666666, + "grad_norm": 0.2759169340133667, + "learning_rate": 4.3129533333333334e-05, + "loss": 2.260936737060547, + "step": 103100 + }, + { + "epoch": 13.76, + "grad_norm": 0.2984674274921417, + "learning_rate": 4.312286666666667e-05, + "loss": 2.2615948486328126, + "step": 103200 + }, + { + "epoch": 13.773333333333333, + "grad_norm": 0.27188169956207275, + "learning_rate": 4.31162e-05, + "loss": 2.2584141540527343, + "step": 103300 + }, + { + "epoch": 13.786666666666667, + "grad_norm": 0.2684420943260193, + "learning_rate": 4.310953333333334e-05, + "loss": 2.26137451171875, + "step": 103400 + }, + { + "epoch": 13.8, + "grad_norm": 0.2790769040584564, + "learning_rate": 4.310286666666667e-05, + "loss": 2.260129089355469, + "step": 103500 + }, + { + "epoch": 13.813333333333333, + "grad_norm": 0.28276488184928894, + "learning_rate": 4.30962e-05, + "loss": 2.261208038330078, + "step": 103600 + }, + { + "epoch": 13.826666666666666, + "grad_norm": 0.27551108598709106, + "learning_rate": 4.30896e-05, + "loss": 2.2652987670898437, + "step": 103700 + }, + { + "epoch": 13.84, + "grad_norm": 0.27749794721603394, + "learning_rate": 4.3082933333333334e-05, + "loss": 2.2623104858398437, + "step": 103800 + }, + { + "epoch": 13.853333333333333, + "grad_norm": 0.29130128026008606, + "learning_rate": 4.307626666666667e-05, + "loss": 2.2647268676757815, + "step": 103900 + }, + { + "epoch": 13.866666666666667, + "grad_norm": 0.27854955196380615, + "learning_rate": 4.3069600000000005e-05, + "loss": 2.2648512268066407, + "step": 104000 + }, + { + "epoch": 13.88, + "grad_norm": 0.2763110399246216, + "learning_rate": 4.306293333333333e-05, + "loss": 2.262389678955078, + "step": 104100 + }, + { + "epoch": 13.893333333333333, + "grad_norm": 0.2861855626106262, + "learning_rate": 4.305626666666667e-05, + "loss": 2.260863952636719, + "step": 104200 + }, + { + "epoch": 13.906666666666666, + "grad_norm": 0.2763212323188782, + "learning_rate": 4.30496e-05, + "loss": 2.2617811584472656, + "step": 104300 + }, + { + "epoch": 13.92, + "grad_norm": 0.27700719237327576, + "learning_rate": 4.3042933333333334e-05, + "loss": 2.2629629516601564, + "step": 104400 + }, + { + "epoch": 13.933333333333334, + "grad_norm": 0.289580374956131, + "learning_rate": 4.3036266666666667e-05, + "loss": 2.2654957580566406, + "step": 104500 + }, + { + "epoch": 13.946666666666667, + "grad_norm": 0.288922518491745, + "learning_rate": 4.3029600000000006e-05, + "loss": 2.2641279602050783, + "step": 104600 + }, + { + "epoch": 13.96, + "grad_norm": 0.2980629503726959, + "learning_rate": 4.302293333333334e-05, + "loss": 2.2678652954101564, + "step": 104700 + }, + { + "epoch": 13.973333333333333, + "grad_norm": 0.279041051864624, + "learning_rate": 4.301626666666667e-05, + "loss": 2.264940185546875, + "step": 104800 + }, + { + "epoch": 13.986666666666666, + "grad_norm": 0.2885514497756958, + "learning_rate": 4.30096e-05, + "loss": 2.264721221923828, + "step": 104900 + }, + { + "epoch": 14.0, + "grad_norm": 0.2856515347957611, + "learning_rate": 4.3002933333333335e-05, + "loss": 2.2638644409179687, + "step": 105000 + }, + { + "epoch": 14.013333333333334, + "grad_norm": 0.2933811843395233, + "learning_rate": 4.299626666666667e-05, + "loss": 2.223587951660156, + "step": 105100 + }, + { + "epoch": 14.026666666666667, + "grad_norm": 0.3170996308326721, + "learning_rate": 4.29896e-05, + "loss": 2.2215760803222655, + "step": 105200 + }, + { + "epoch": 14.04, + "grad_norm": 0.32004064321517944, + "learning_rate": 4.298293333333334e-05, + "loss": 2.2238189697265627, + "step": 105300 + }, + { + "epoch": 14.053333333333333, + "grad_norm": 0.29204490780830383, + "learning_rate": 4.297626666666667e-05, + "loss": 2.2225723266601562, + "step": 105400 + }, + { + "epoch": 14.066666666666666, + "grad_norm": 0.3062141239643097, + "learning_rate": 4.29696e-05, + "loss": 2.223246765136719, + "step": 105500 + }, + { + "epoch": 14.08, + "grad_norm": 0.30984053015708923, + "learning_rate": 4.2962933333333335e-05, + "loss": 2.2242507934570312, + "step": 105600 + }, + { + "epoch": 14.093333333333334, + "grad_norm": 0.322451651096344, + "learning_rate": 4.295626666666667e-05, + "loss": 2.2280723571777346, + "step": 105700 + }, + { + "epoch": 14.106666666666667, + "grad_norm": 0.3022569417953491, + "learning_rate": 4.29496e-05, + "loss": 2.226327209472656, + "step": 105800 + }, + { + "epoch": 14.12, + "grad_norm": 0.30784836411476135, + "learning_rate": 4.294293333333333e-05, + "loss": 2.2258816528320313, + "step": 105900 + }, + { + "epoch": 14.133333333333333, + "grad_norm": 0.30157235264778137, + "learning_rate": 4.293626666666667e-05, + "loss": 2.2270236206054688, + "step": 106000 + }, + { + "epoch": 14.146666666666667, + "grad_norm": 0.30551230907440186, + "learning_rate": 4.29296e-05, + "loss": 2.231392822265625, + "step": 106100 + }, + { + "epoch": 14.16, + "grad_norm": 0.2978629171848297, + "learning_rate": 4.2922933333333335e-05, + "loss": 2.228222198486328, + "step": 106200 + }, + { + "epoch": 14.173333333333334, + "grad_norm": 0.3043777644634247, + "learning_rate": 4.2916333333333334e-05, + "loss": 2.2319209289550783, + "step": 106300 + }, + { + "epoch": 14.186666666666667, + "grad_norm": 0.29846736788749695, + "learning_rate": 4.2909666666666674e-05, + "loss": 2.228956451416016, + "step": 106400 + }, + { + "epoch": 14.2, + "grad_norm": 0.30101996660232544, + "learning_rate": 4.2903000000000006e-05, + "loss": 2.233109588623047, + "step": 106500 + }, + { + "epoch": 14.213333333333333, + "grad_norm": 0.2905249297618866, + "learning_rate": 4.289633333333333e-05, + "loss": 2.23214111328125, + "step": 106600 + }, + { + "epoch": 14.226666666666667, + "grad_norm": 0.31870153546333313, + "learning_rate": 4.2889666666666664e-05, + "loss": 2.23111572265625, + "step": 106700 + }, + { + "epoch": 14.24, + "grad_norm": 0.31344854831695557, + "learning_rate": 4.2883e-05, + "loss": 2.2312010192871092, + "step": 106800 + }, + { + "epoch": 14.253333333333334, + "grad_norm": 0.3159984350204468, + "learning_rate": 4.2876333333333335e-05, + "loss": 2.234411315917969, + "step": 106900 + }, + { + "epoch": 14.266666666666667, + "grad_norm": 0.3049383759498596, + "learning_rate": 4.286966666666667e-05, + "loss": 2.232013854980469, + "step": 107000 + }, + { + "epoch": 14.28, + "grad_norm": 0.2840105891227722, + "learning_rate": 4.2863000000000006e-05, + "loss": 2.2319927978515626, + "step": 107100 + }, + { + "epoch": 14.293333333333333, + "grad_norm": 0.3090221881866455, + "learning_rate": 4.285633333333334e-05, + "loss": 2.235484771728516, + "step": 107200 + }, + { + "epoch": 14.306666666666667, + "grad_norm": 0.2912992835044861, + "learning_rate": 4.284966666666667e-05, + "loss": 2.233905944824219, + "step": 107300 + }, + { + "epoch": 14.32, + "grad_norm": 0.2928401231765747, + "learning_rate": 4.2843e-05, + "loss": 2.2329034423828125, + "step": 107400 + }, + { + "epoch": 14.333333333333334, + "grad_norm": 0.2940289080142975, + "learning_rate": 4.2836333333333335e-05, + "loss": 2.23254150390625, + "step": 107500 + }, + { + "epoch": 14.346666666666668, + "grad_norm": 0.3051759898662567, + "learning_rate": 4.282966666666667e-05, + "loss": 2.235914764404297, + "step": 107600 + }, + { + "epoch": 14.36, + "grad_norm": 0.29925987124443054, + "learning_rate": 4.2823e-05, + "loss": 2.236822052001953, + "step": 107700 + }, + { + "epoch": 14.373333333333333, + "grad_norm": 0.30133113265037537, + "learning_rate": 4.281633333333334e-05, + "loss": 2.237333068847656, + "step": 107800 + }, + { + "epoch": 14.386666666666667, + "grad_norm": 0.2979786694049835, + "learning_rate": 4.280966666666667e-05, + "loss": 2.2337214660644533, + "step": 107900 + }, + { + "epoch": 14.4, + "grad_norm": 0.30509302020072937, + "learning_rate": 4.2803e-05, + "loss": 2.234857177734375, + "step": 108000 + }, + { + "epoch": 14.413333333333334, + "grad_norm": 0.31245774030685425, + "learning_rate": 4.2796333333333336e-05, + "loss": 2.2369602966308593, + "step": 108100 + }, + { + "epoch": 14.426666666666666, + "grad_norm": 0.28808292746543884, + "learning_rate": 4.278966666666667e-05, + "loss": 2.2391943359375, + "step": 108200 + }, + { + "epoch": 14.44, + "grad_norm": 0.3327585756778717, + "learning_rate": 4.2783066666666674e-05, + "loss": 2.2387188720703124, + "step": 108300 + }, + { + "epoch": 14.453333333333333, + "grad_norm": 0.3101474940776825, + "learning_rate": 4.27764e-05, + "loss": 2.2376824951171876, + "step": 108400 + }, + { + "epoch": 14.466666666666667, + "grad_norm": 0.2869791090488434, + "learning_rate": 4.276973333333333e-05, + "loss": 2.237794189453125, + "step": 108500 + }, + { + "epoch": 14.48, + "grad_norm": 0.3071404695510864, + "learning_rate": 4.276306666666667e-05, + "loss": 2.239633331298828, + "step": 108600 + }, + { + "epoch": 14.493333333333334, + "grad_norm": 0.2966044843196869, + "learning_rate": 4.27564e-05, + "loss": 2.2403135681152344, + "step": 108700 + }, + { + "epoch": 14.506666666666666, + "grad_norm": 0.2996501624584198, + "learning_rate": 4.2749733333333335e-05, + "loss": 2.240699920654297, + "step": 108800 + }, + { + "epoch": 14.52, + "grad_norm": 0.3051213026046753, + "learning_rate": 4.274306666666667e-05, + "loss": 2.241038360595703, + "step": 108900 + }, + { + "epoch": 14.533333333333333, + "grad_norm": 0.3177984952926636, + "learning_rate": 4.2736400000000006e-05, + "loss": 2.241685485839844, + "step": 109000 + }, + { + "epoch": 14.546666666666667, + "grad_norm": 0.31197378039360046, + "learning_rate": 4.272973333333333e-05, + "loss": 2.2384878540039064, + "step": 109100 + }, + { + "epoch": 14.56, + "grad_norm": 0.3031216263771057, + "learning_rate": 4.2723066666666664e-05, + "loss": 2.240026397705078, + "step": 109200 + }, + { + "epoch": 14.573333333333334, + "grad_norm": 0.2918401062488556, + "learning_rate": 4.27164e-05, + "loss": 2.2429275512695312, + "step": 109300 + }, + { + "epoch": 14.586666666666666, + "grad_norm": 0.30749937891960144, + "learning_rate": 4.2709733333333335e-05, + "loss": 2.2420500183105467, + "step": 109400 + }, + { + "epoch": 14.6, + "grad_norm": 0.30055928230285645, + "learning_rate": 4.270306666666667e-05, + "loss": 2.2444825744628907, + "step": 109500 + }, + { + "epoch": 14.613333333333333, + "grad_norm": 0.3009972870349884, + "learning_rate": 4.26964e-05, + "loss": 2.2414918518066407, + "step": 109600 + }, + { + "epoch": 14.626666666666667, + "grad_norm": 0.29409679770469666, + "learning_rate": 4.268973333333334e-05, + "loss": 2.243094940185547, + "step": 109700 + }, + { + "epoch": 14.64, + "grad_norm": 0.3000005781650543, + "learning_rate": 4.268306666666667e-05, + "loss": 2.243612060546875, + "step": 109800 + }, + { + "epoch": 14.653333333333332, + "grad_norm": 0.31389036774635315, + "learning_rate": 4.26764e-05, + "loss": 2.247608337402344, + "step": 109900 + }, + { + "epoch": 14.666666666666666, + "grad_norm": 0.30435290932655334, + "learning_rate": 4.2669733333333336e-05, + "loss": 2.2452850341796875, + "step": 110000 + }, + { + "epoch": 14.68, + "grad_norm": 0.31581467390060425, + "learning_rate": 4.266306666666667e-05, + "loss": 2.2423834228515624, + "step": 110100 + }, + { + "epoch": 14.693333333333333, + "grad_norm": 0.30677202343940735, + "learning_rate": 4.26564e-05, + "loss": 2.2448631286621095, + "step": 110200 + }, + { + "epoch": 14.706666666666667, + "grad_norm": 0.2914011776447296, + "learning_rate": 4.264973333333333e-05, + "loss": 2.2458355712890623, + "step": 110300 + }, + { + "epoch": 14.72, + "grad_norm": 0.30041709542274475, + "learning_rate": 4.264313333333333e-05, + "loss": 2.2454510498046876, + "step": 110400 + }, + { + "epoch": 14.733333333333333, + "grad_norm": 0.29341447353363037, + "learning_rate": 4.263646666666667e-05, + "loss": 2.2464495849609376, + "step": 110500 + }, + { + "epoch": 14.746666666666666, + "grad_norm": 0.2851749658584595, + "learning_rate": 4.26298e-05, + "loss": 2.2466586303710936, + "step": 110600 + }, + { + "epoch": 14.76, + "grad_norm": 0.297852486371994, + "learning_rate": 4.2623133333333335e-05, + "loss": 2.2463618469238282, + "step": 110700 + }, + { + "epoch": 14.773333333333333, + "grad_norm": 0.2981916666030884, + "learning_rate": 4.2616466666666674e-05, + "loss": 2.2474107360839843, + "step": 110800 + }, + { + "epoch": 14.786666666666667, + "grad_norm": 0.29726073145866394, + "learning_rate": 4.26098e-05, + "loss": 2.2470823669433595, + "step": 110900 + }, + { + "epoch": 14.8, + "grad_norm": 0.29146844148635864, + "learning_rate": 4.260313333333333e-05, + "loss": 2.248656005859375, + "step": 111000 + }, + { + "epoch": 14.813333333333333, + "grad_norm": 0.30146679282188416, + "learning_rate": 4.259646666666667e-05, + "loss": 2.2492645263671873, + "step": 111100 + }, + { + "epoch": 14.826666666666666, + "grad_norm": 0.30518659949302673, + "learning_rate": 4.2589800000000003e-05, + "loss": 2.2455149841308595, + "step": 111200 + }, + { + "epoch": 14.84, + "grad_norm": 0.2941482663154602, + "learning_rate": 4.2583133333333336e-05, + "loss": 2.247636413574219, + "step": 111300 + }, + { + "epoch": 14.853333333333333, + "grad_norm": 0.3071843981742859, + "learning_rate": 4.257646666666667e-05, + "loss": 2.249114227294922, + "step": 111400 + }, + { + "epoch": 14.866666666666667, + "grad_norm": 0.2867000102996826, + "learning_rate": 4.256980000000001e-05, + "loss": 2.244889831542969, + "step": 111500 + }, + { + "epoch": 14.88, + "grad_norm": 0.29321691393852234, + "learning_rate": 4.256313333333333e-05, + "loss": 2.2497218322753905, + "step": 111600 + }, + { + "epoch": 14.893333333333333, + "grad_norm": 0.28539395332336426, + "learning_rate": 4.2556466666666665e-05, + "loss": 2.2499490356445313, + "step": 111700 + }, + { + "epoch": 14.906666666666666, + "grad_norm": 0.2966148257255554, + "learning_rate": 4.2549800000000004e-05, + "loss": 2.251126708984375, + "step": 111800 + }, + { + "epoch": 14.92, + "grad_norm": 0.30318519473075867, + "learning_rate": 4.2543133333333336e-05, + "loss": 2.251923370361328, + "step": 111900 + }, + { + "epoch": 14.933333333333334, + "grad_norm": 0.30401572585105896, + "learning_rate": 4.253646666666667e-05, + "loss": 2.247659912109375, + "step": 112000 + }, + { + "epoch": 14.946666666666667, + "grad_norm": 0.42713233828544617, + "learning_rate": 4.25298e-05, + "loss": 2.2480320739746094, + "step": 112100 + }, + { + "epoch": 14.96, + "grad_norm": 0.3023832440376282, + "learning_rate": 4.252313333333334e-05, + "loss": 2.252263946533203, + "step": 112200 + }, + { + "epoch": 14.973333333333333, + "grad_norm": 0.31739455461502075, + "learning_rate": 4.251646666666667e-05, + "loss": 2.250135040283203, + "step": 112300 + }, + { + "epoch": 14.986666666666666, + "grad_norm": 0.2998296618461609, + "learning_rate": 4.25098e-05, + "loss": 2.250568542480469, + "step": 112400 + }, + { + "epoch": 15.0, + "grad_norm": 0.3116128146648407, + "learning_rate": 4.25032e-05, + "loss": 2.254090118408203, + "step": 112500 + }, + { + "epoch": 15.013333333333334, + "grad_norm": 0.324983686208725, + "learning_rate": 4.2496533333333336e-05, + "loss": 2.2063966369628907, + "step": 112600 + }, + { + "epoch": 15.026666666666667, + "grad_norm": 0.32630521059036255, + "learning_rate": 4.248986666666667e-05, + "loss": 2.204698486328125, + "step": 112700 + }, + { + "epoch": 15.04, + "grad_norm": 0.33141613006591797, + "learning_rate": 4.24832e-05, + "loss": 2.2065577697753906, + "step": 112800 + }, + { + "epoch": 15.053333333333333, + "grad_norm": 0.29963183403015137, + "learning_rate": 4.247653333333333e-05, + "loss": 2.208046569824219, + "step": 112900 + }, + { + "epoch": 15.066666666666666, + "grad_norm": 0.30262288451194763, + "learning_rate": 4.246986666666667e-05, + "loss": 2.208232574462891, + "step": 113000 + }, + { + "epoch": 15.08, + "grad_norm": 0.31407952308654785, + "learning_rate": 4.2463200000000004e-05, + "loss": 2.2060285949707032, + "step": 113100 + }, + { + "epoch": 15.093333333333334, + "grad_norm": 0.3279408812522888, + "learning_rate": 4.2456533333333336e-05, + "loss": 2.2077986145019532, + "step": 113200 + }, + { + "epoch": 15.106666666666667, + "grad_norm": 0.3157520592212677, + "learning_rate": 4.244986666666667e-05, + "loss": 2.2095164489746093, + "step": 113300 + }, + { + "epoch": 15.12, + "grad_norm": 0.31880176067352295, + "learning_rate": 4.24432e-05, + "loss": 2.210868377685547, + "step": 113400 + }, + { + "epoch": 15.133333333333333, + "grad_norm": 0.31537145376205444, + "learning_rate": 4.243653333333333e-05, + "loss": 2.208413391113281, + "step": 113500 + }, + { + "epoch": 15.146666666666667, + "grad_norm": 0.34451282024383545, + "learning_rate": 4.2429866666666665e-05, + "loss": 2.216689453125, + "step": 113600 + }, + { + "epoch": 15.16, + "grad_norm": 0.343150794506073, + "learning_rate": 4.2423200000000004e-05, + "loss": 2.2148944091796876, + "step": 113700 + }, + { + "epoch": 15.173333333333334, + "grad_norm": 0.33272266387939453, + "learning_rate": 4.2416533333333336e-05, + "loss": 2.2134307861328124, + "step": 113800 + }, + { + "epoch": 15.186666666666667, + "grad_norm": 0.3378112018108368, + "learning_rate": 4.240986666666667e-05, + "loss": 2.2136904907226564, + "step": 113900 + }, + { + "epoch": 15.2, + "grad_norm": 0.31077101826667786, + "learning_rate": 4.24032e-05, + "loss": 2.2134745788574217, + "step": 114000 + }, + { + "epoch": 15.213333333333333, + "grad_norm": 0.32572445273399353, + "learning_rate": 4.239653333333334e-05, + "loss": 2.217989654541016, + "step": 114100 + }, + { + "epoch": 15.226666666666667, + "grad_norm": 0.3158329725265503, + "learning_rate": 4.2389866666666665e-05, + "loss": 2.213584442138672, + "step": 114200 + }, + { + "epoch": 15.24, + "grad_norm": 0.3473946750164032, + "learning_rate": 4.23832e-05, + "loss": 2.212930450439453, + "step": 114300 + }, + { + "epoch": 15.253333333333334, + "grad_norm": 0.32019126415252686, + "learning_rate": 4.237653333333334e-05, + "loss": 2.2173892211914064, + "step": 114400 + }, + { + "epoch": 15.266666666666667, + "grad_norm": 0.31340309977531433, + "learning_rate": 4.236986666666667e-05, + "loss": 2.2174838256835936, + "step": 114500 + }, + { + "epoch": 15.28, + "grad_norm": 0.33847081661224365, + "learning_rate": 4.236326666666667e-05, + "loss": 2.21783203125, + "step": 114600 + }, + { + "epoch": 15.293333333333333, + "grad_norm": 0.32491597533226013, + "learning_rate": 4.23566e-05, + "loss": 2.2157107543945314, + "step": 114700 + }, + { + "epoch": 15.306666666666667, + "grad_norm": 0.3161472976207733, + "learning_rate": 4.234993333333333e-05, + "loss": 2.2165769958496093, + "step": 114800 + }, + { + "epoch": 15.32, + "grad_norm": 0.35170355439186096, + "learning_rate": 4.234326666666667e-05, + "loss": 2.217754211425781, + "step": 114900 + }, + { + "epoch": 15.333333333333334, + "grad_norm": 0.3464552164077759, + "learning_rate": 4.2336600000000004e-05, + "loss": 2.219124450683594, + "step": 115000 + }, + { + "epoch": 15.346666666666668, + "grad_norm": 0.2998979389667511, + "learning_rate": 4.2329933333333336e-05, + "loss": 2.218946075439453, + "step": 115100 + }, + { + "epoch": 15.36, + "grad_norm": 0.33624839782714844, + "learning_rate": 4.232326666666667e-05, + "loss": 2.2174595642089843, + "step": 115200 + }, + { + "epoch": 15.373333333333333, + "grad_norm": 0.322299987077713, + "learning_rate": 4.23166e-05, + "loss": 2.2204608154296874, + "step": 115300 + }, + { + "epoch": 15.386666666666667, + "grad_norm": 0.3346404731273651, + "learning_rate": 4.230993333333333e-05, + "loss": 2.220567169189453, + "step": 115400 + }, + { + "epoch": 15.4, + "grad_norm": 0.3098982870578766, + "learning_rate": 4.230326666666667e-05, + "loss": 2.2207266235351564, + "step": 115500 + }, + { + "epoch": 15.413333333333334, + "grad_norm": 0.31962502002716064, + "learning_rate": 4.2296600000000004e-05, + "loss": 2.2188589477539065, + "step": 115600 + }, + { + "epoch": 15.426666666666666, + "grad_norm": 0.3353968560695648, + "learning_rate": 4.2289933333333337e-05, + "loss": 2.2199302673339845, + "step": 115700 + }, + { + "epoch": 15.44, + "grad_norm": 0.30936282873153687, + "learning_rate": 4.228326666666667e-05, + "loss": 2.2257254028320315, + "step": 115800 + }, + { + "epoch": 15.453333333333333, + "grad_norm": 0.30855420231819153, + "learning_rate": 4.22766e-05, + "loss": 2.2245237731933596, + "step": 115900 + }, + { + "epoch": 15.466666666666667, + "grad_norm": 0.3352759778499603, + "learning_rate": 4.226993333333333e-05, + "loss": 2.2239312744140625, + "step": 116000 + }, + { + "epoch": 15.48, + "grad_norm": 0.34826841950416565, + "learning_rate": 4.2263266666666666e-05, + "loss": 2.222242889404297, + "step": 116100 + }, + { + "epoch": 15.493333333333334, + "grad_norm": 0.30927276611328125, + "learning_rate": 4.2256600000000005e-05, + "loss": 2.22566650390625, + "step": 116200 + }, + { + "epoch": 15.506666666666666, + "grad_norm": 0.3213530480861664, + "learning_rate": 4.224993333333334e-05, + "loss": 2.2234091186523437, + "step": 116300 + }, + { + "epoch": 15.52, + "grad_norm": 0.3208419382572174, + "learning_rate": 4.224326666666667e-05, + "loss": 2.221222686767578, + "step": 116400 + }, + { + "epoch": 15.533333333333333, + "grad_norm": 0.3189323842525482, + "learning_rate": 4.22366e-05, + "loss": 2.22309814453125, + "step": 116500 + }, + { + "epoch": 15.546666666666667, + "grad_norm": 0.32015132904052734, + "learning_rate": 4.222993333333334e-05, + "loss": 2.224478302001953, + "step": 116600 + }, + { + "epoch": 15.56, + "grad_norm": 0.3235848844051361, + "learning_rate": 4.222333333333334e-05, + "loss": 2.22633544921875, + "step": 116700 + }, + { + "epoch": 15.573333333333334, + "grad_norm": 0.31360262632369995, + "learning_rate": 4.221666666666667e-05, + "loss": 2.223683624267578, + "step": 116800 + }, + { + "epoch": 15.586666666666666, + "grad_norm": 0.3163805603981018, + "learning_rate": 4.221e-05, + "loss": 2.226057891845703, + "step": 116900 + }, + { + "epoch": 15.6, + "grad_norm": 0.3102477192878723, + "learning_rate": 4.2203333333333336e-05, + "loss": 2.228474578857422, + "step": 117000 + }, + { + "epoch": 15.613333333333333, + "grad_norm": 0.30548936128616333, + "learning_rate": 4.219666666666667e-05, + "loss": 2.2281097412109374, + "step": 117100 + }, + { + "epoch": 15.626666666666667, + "grad_norm": 0.33137276768684387, + "learning_rate": 4.219e-05, + "loss": 2.227537841796875, + "step": 117200 + }, + { + "epoch": 15.64, + "grad_norm": 0.32980573177337646, + "learning_rate": 4.218333333333333e-05, + "loss": 2.2250877380371095, + "step": 117300 + }, + { + "epoch": 15.653333333333332, + "grad_norm": 0.34230107069015503, + "learning_rate": 4.217666666666667e-05, + "loss": 2.2286297607421877, + "step": 117400 + }, + { + "epoch": 15.666666666666666, + "grad_norm": 0.31690576672554016, + "learning_rate": 4.2170000000000005e-05, + "loss": 2.228667907714844, + "step": 117500 + }, + { + "epoch": 15.68, + "grad_norm": 0.32873931527137756, + "learning_rate": 4.216333333333334e-05, + "loss": 2.229040222167969, + "step": 117600 + }, + { + "epoch": 15.693333333333333, + "grad_norm": 0.31361329555511475, + "learning_rate": 4.215666666666667e-05, + "loss": 2.229720153808594, + "step": 117700 + }, + { + "epoch": 15.706666666666667, + "grad_norm": 0.30917590856552124, + "learning_rate": 4.215e-05, + "loss": 2.2290550231933595, + "step": 117800 + }, + { + "epoch": 15.72, + "grad_norm": 0.31262990832328796, + "learning_rate": 4.2143333333333334e-05, + "loss": 2.229103698730469, + "step": 117900 + }, + { + "epoch": 15.733333333333333, + "grad_norm": 0.32043468952178955, + "learning_rate": 4.2136666666666666e-05, + "loss": 2.2294845581054688, + "step": 118000 + }, + { + "epoch": 15.746666666666666, + "grad_norm": 0.31594914197921753, + "learning_rate": 4.2130000000000005e-05, + "loss": 2.2269740295410156, + "step": 118100 + }, + { + "epoch": 15.76, + "grad_norm": 0.3129127025604248, + "learning_rate": 4.212333333333334e-05, + "loss": 2.232552947998047, + "step": 118200 + }, + { + "epoch": 15.773333333333333, + "grad_norm": 0.3038434088230133, + "learning_rate": 4.211666666666667e-05, + "loss": 2.232527770996094, + "step": 118300 + }, + { + "epoch": 15.786666666666667, + "grad_norm": 0.3090043067932129, + "learning_rate": 4.211e-05, + "loss": 2.229136505126953, + "step": 118400 + }, + { + "epoch": 15.8, + "grad_norm": 0.32611995935440063, + "learning_rate": 4.2103333333333334e-05, + "loss": 2.2315130615234375, + "step": 118500 + }, + { + "epoch": 15.813333333333333, + "grad_norm": 0.31808626651763916, + "learning_rate": 4.2096666666666666e-05, + "loss": 2.2304783630371094, + "step": 118600 + }, + { + "epoch": 15.826666666666666, + "grad_norm": 0.3187323808670044, + "learning_rate": 4.2090066666666665e-05, + "loss": 2.2350709533691404, + "step": 118700 + }, + { + "epoch": 15.84, + "grad_norm": 0.3571641445159912, + "learning_rate": 4.20834e-05, + "loss": 2.231884002685547, + "step": 118800 + }, + { + "epoch": 15.853333333333333, + "grad_norm": 0.3414985239505768, + "learning_rate": 4.207673333333334e-05, + "loss": 2.2351057434082033, + "step": 118900 + }, + { + "epoch": 15.866666666666667, + "grad_norm": 0.3118877112865448, + "learning_rate": 4.207006666666667e-05, + "loss": 2.231129150390625, + "step": 119000 + }, + { + "epoch": 15.88, + "grad_norm": 0.319547176361084, + "learning_rate": 4.20634e-05, + "loss": 2.234002685546875, + "step": 119100 + }, + { + "epoch": 15.893333333333333, + "grad_norm": 0.3334439992904663, + "learning_rate": 4.205673333333334e-05, + "loss": 2.236300201416016, + "step": 119200 + }, + { + "epoch": 15.906666666666666, + "grad_norm": 0.31229543685913086, + "learning_rate": 4.205006666666667e-05, + "loss": 2.2334967041015625, + "step": 119300 + }, + { + "epoch": 15.92, + "grad_norm": 0.3132321834564209, + "learning_rate": 4.20434e-05, + "loss": 2.2348391723632814, + "step": 119400 + }, + { + "epoch": 15.933333333333334, + "grad_norm": 0.3149288594722748, + "learning_rate": 4.203673333333333e-05, + "loss": 2.2346974182128907, + "step": 119500 + }, + { + "epoch": 15.946666666666667, + "grad_norm": 0.31693968176841736, + "learning_rate": 4.203006666666667e-05, + "loss": 2.233512268066406, + "step": 119600 + }, + { + "epoch": 15.96, + "grad_norm": 0.3221350312232971, + "learning_rate": 4.20234e-05, + "loss": 2.2346560668945314, + "step": 119700 + }, + { + "epoch": 15.973333333333333, + "grad_norm": 0.3314872682094574, + "learning_rate": 4.2016733333333334e-05, + "loss": 2.2337542724609376, + "step": 119800 + }, + { + "epoch": 15.986666666666666, + "grad_norm": 0.2964302599430084, + "learning_rate": 4.201006666666667e-05, + "loss": 2.235452423095703, + "step": 119900 + }, + { + "epoch": 16.0, + "grad_norm": 0.30500471591949463, + "learning_rate": 4.2003400000000005e-05, + "loss": 2.2356527709960936, + "step": 120000 + }, + { + "epoch": 16.013333333333332, + "grad_norm": 0.33137601613998413, + "learning_rate": 4.199673333333334e-05, + "loss": 2.191378479003906, + "step": 120100 + }, + { + "epoch": 16.026666666666667, + "grad_norm": 0.3438156843185425, + "learning_rate": 4.199006666666667e-05, + "loss": 2.1892555236816404, + "step": 120200 + }, + { + "epoch": 16.04, + "grad_norm": 0.3476172983646393, + "learning_rate": 4.19834e-05, + "loss": 2.185308380126953, + "step": 120300 + }, + { + "epoch": 16.053333333333335, + "grad_norm": 0.3344581723213196, + "learning_rate": 4.1976733333333334e-05, + "loss": 2.1885577392578126, + "step": 120400 + }, + { + "epoch": 16.066666666666666, + "grad_norm": 0.3536999225616455, + "learning_rate": 4.1970066666666666e-05, + "loss": 2.190690002441406, + "step": 120500 + }, + { + "epoch": 16.08, + "grad_norm": 0.327150821685791, + "learning_rate": 4.1963400000000006e-05, + "loss": 2.192127532958984, + "step": 120600 + }, + { + "epoch": 16.093333333333334, + "grad_norm": 0.34501543641090393, + "learning_rate": 4.195673333333334e-05, + "loss": 2.1904525756835938, + "step": 120700 + }, + { + "epoch": 16.106666666666666, + "grad_norm": 0.33292821049690247, + "learning_rate": 4.195006666666667e-05, + "loss": 2.1916839599609377, + "step": 120800 + }, + { + "epoch": 16.12, + "grad_norm": 0.33096081018447876, + "learning_rate": 4.194346666666667e-05, + "loss": 2.1918682861328125, + "step": 120900 + }, + { + "epoch": 16.133333333333333, + "grad_norm": 0.342189759016037, + "learning_rate": 4.19368e-05, + "loss": 2.194641418457031, + "step": 121000 + }, + { + "epoch": 16.14666666666667, + "grad_norm": 0.3368053436279297, + "learning_rate": 4.193013333333334e-05, + "loss": 2.1912602233886718, + "step": 121100 + }, + { + "epoch": 16.16, + "grad_norm": 0.32896357774734497, + "learning_rate": 4.1923466666666666e-05, + "loss": 2.191945343017578, + "step": 121200 + }, + { + "epoch": 16.173333333333332, + "grad_norm": 0.3394027352333069, + "learning_rate": 4.19168e-05, + "loss": 2.1953201293945312, + "step": 121300 + }, + { + "epoch": 16.186666666666667, + "grad_norm": 0.3458661735057831, + "learning_rate": 4.191013333333334e-05, + "loss": 2.191509246826172, + "step": 121400 + }, + { + "epoch": 16.2, + "grad_norm": 0.3341262936592102, + "learning_rate": 4.190346666666667e-05, + "loss": 2.196238708496094, + "step": 121500 + }, + { + "epoch": 16.213333333333335, + "grad_norm": 0.3546558916568756, + "learning_rate": 4.18968e-05, + "loss": 2.197465515136719, + "step": 121600 + }, + { + "epoch": 16.226666666666667, + "grad_norm": 0.322582483291626, + "learning_rate": 4.1890133333333334e-05, + "loss": 2.19465576171875, + "step": 121700 + }, + { + "epoch": 16.24, + "grad_norm": 0.33463671803474426, + "learning_rate": 4.188346666666667e-05, + "loss": 2.1976629638671876, + "step": 121800 + }, + { + "epoch": 16.253333333333334, + "grad_norm": 0.3399517834186554, + "learning_rate": 4.18768e-05, + "loss": 2.1987896728515626, + "step": 121900 + }, + { + "epoch": 16.266666666666666, + "grad_norm": 0.3466789722442627, + "learning_rate": 4.187013333333333e-05, + "loss": 2.197012939453125, + "step": 122000 + }, + { + "epoch": 16.28, + "grad_norm": 0.3435020446777344, + "learning_rate": 4.186346666666667e-05, + "loss": 2.1984803771972654, + "step": 122100 + }, + { + "epoch": 16.293333333333333, + "grad_norm": 0.33346107602119446, + "learning_rate": 4.18568e-05, + "loss": 2.2026689147949217, + "step": 122200 + }, + { + "epoch": 16.306666666666665, + "grad_norm": 0.3218962550163269, + "learning_rate": 4.1850133333333334e-05, + "loss": 2.199356689453125, + "step": 122300 + }, + { + "epoch": 16.32, + "grad_norm": 0.35545775294303894, + "learning_rate": 4.184346666666667e-05, + "loss": 2.2024908447265625, + "step": 122400 + }, + { + "epoch": 16.333333333333332, + "grad_norm": 0.33396291732788086, + "learning_rate": 4.1836800000000006e-05, + "loss": 2.198677215576172, + "step": 122500 + }, + { + "epoch": 16.346666666666668, + "grad_norm": 0.3423805236816406, + "learning_rate": 4.183013333333334e-05, + "loss": 2.203605041503906, + "step": 122600 + }, + { + "epoch": 16.36, + "grad_norm": 0.3493040204048157, + "learning_rate": 4.1823466666666664e-05, + "loss": 2.2042369079589843, + "step": 122700 + }, + { + "epoch": 16.373333333333335, + "grad_norm": 0.32711881399154663, + "learning_rate": 4.18168e-05, + "loss": 2.20152099609375, + "step": 122800 + }, + { + "epoch": 16.386666666666667, + "grad_norm": 0.3408143222332001, + "learning_rate": 4.18102e-05, + "loss": 2.20054931640625, + "step": 122900 + }, + { + "epoch": 16.4, + "grad_norm": 0.3470470607280731, + "learning_rate": 4.1803533333333334e-05, + "loss": 2.203308410644531, + "step": 123000 + }, + { + "epoch": 16.413333333333334, + "grad_norm": 0.3393367826938629, + "learning_rate": 4.1796866666666666e-05, + "loss": 2.203702392578125, + "step": 123100 + }, + { + "epoch": 16.426666666666666, + "grad_norm": 0.3487272560596466, + "learning_rate": 4.17902e-05, + "loss": 2.207674713134766, + "step": 123200 + }, + { + "epoch": 16.44, + "grad_norm": 0.31673720479011536, + "learning_rate": 4.178353333333334e-05, + "loss": 2.2054902648925783, + "step": 123300 + }, + { + "epoch": 16.453333333333333, + "grad_norm": 0.34609508514404297, + "learning_rate": 4.177686666666667e-05, + "loss": 2.2037092590332032, + "step": 123400 + }, + { + "epoch": 16.466666666666665, + "grad_norm": 0.3488747477531433, + "learning_rate": 4.17702e-05, + "loss": 2.2059857177734377, + "step": 123500 + }, + { + "epoch": 16.48, + "grad_norm": 0.34992608428001404, + "learning_rate": 4.176353333333334e-05, + "loss": 2.205555877685547, + "step": 123600 + }, + { + "epoch": 16.493333333333332, + "grad_norm": 0.3459303677082062, + "learning_rate": 4.1756866666666667e-05, + "loss": 2.2075044250488283, + "step": 123700 + }, + { + "epoch": 16.506666666666668, + "grad_norm": 0.34837567806243896, + "learning_rate": 4.17502e-05, + "loss": 2.2081297302246092, + "step": 123800 + }, + { + "epoch": 16.52, + "grad_norm": 0.3326612710952759, + "learning_rate": 4.174353333333334e-05, + "loss": 2.2074159240722655, + "step": 123900 + }, + { + "epoch": 16.533333333333335, + "grad_norm": 0.343517929315567, + "learning_rate": 4.173686666666667e-05, + "loss": 2.205991058349609, + "step": 124000 + }, + { + "epoch": 16.546666666666667, + "grad_norm": 0.36404263973236084, + "learning_rate": 4.17302e-05, + "loss": 2.2090086364746093, + "step": 124100 + }, + { + "epoch": 16.56, + "grad_norm": 0.3330126404762268, + "learning_rate": 4.1723533333333335e-05, + "loss": 2.207509002685547, + "step": 124200 + }, + { + "epoch": 16.573333333333334, + "grad_norm": 0.3251371681690216, + "learning_rate": 4.1716866666666674e-05, + "loss": 2.2095204162597657, + "step": 124300 + }, + { + "epoch": 16.586666666666666, + "grad_norm": 0.3344780206680298, + "learning_rate": 4.17102e-05, + "loss": 2.2100448608398438, + "step": 124400 + }, + { + "epoch": 16.6, + "grad_norm": 0.3297218978404999, + "learning_rate": 4.170353333333333e-05, + "loss": 2.211772613525391, + "step": 124500 + }, + { + "epoch": 16.613333333333333, + "grad_norm": 0.32694414258003235, + "learning_rate": 4.169686666666667e-05, + "loss": 2.2118515014648437, + "step": 124600 + }, + { + "epoch": 16.626666666666665, + "grad_norm": 0.3583586812019348, + "learning_rate": 4.16902e-05, + "loss": 2.208268737792969, + "step": 124700 + }, + { + "epoch": 16.64, + "grad_norm": 0.3415539562702179, + "learning_rate": 4.1683533333333335e-05, + "loss": 2.210078125, + "step": 124800 + }, + { + "epoch": 16.653333333333332, + "grad_norm": 0.3332410752773285, + "learning_rate": 4.167686666666667e-05, + "loss": 2.209375915527344, + "step": 124900 + }, + { + "epoch": 16.666666666666668, + "grad_norm": 0.3438263237476349, + "learning_rate": 4.1670200000000006e-05, + "loss": 2.213215789794922, + "step": 125000 + }, + { + "epoch": 16.68, + "grad_norm": 0.33631184697151184, + "learning_rate": 4.1663600000000005e-05, + "loss": 2.2115354919433594, + "step": 125100 + }, + { + "epoch": 16.693333333333335, + "grad_norm": 0.33590415120124817, + "learning_rate": 4.165693333333334e-05, + "loss": 2.2166558837890626, + "step": 125200 + }, + { + "epoch": 16.706666666666667, + "grad_norm": 0.33931294083595276, + "learning_rate": 4.165026666666667e-05, + "loss": 2.2135350036621095, + "step": 125300 + }, + { + "epoch": 16.72, + "grad_norm": 0.3370099365711212, + "learning_rate": 4.16436e-05, + "loss": 2.2108302307128906, + "step": 125400 + }, + { + "epoch": 16.733333333333334, + "grad_norm": 0.3390389680862427, + "learning_rate": 4.1636933333333335e-05, + "loss": 2.2139320373535156, + "step": 125500 + }, + { + "epoch": 16.746666666666666, + "grad_norm": 0.33029329776763916, + "learning_rate": 4.163026666666667e-05, + "loss": 2.2104266357421873, + "step": 125600 + }, + { + "epoch": 16.76, + "grad_norm": 0.3493773937225342, + "learning_rate": 4.16236e-05, + "loss": 2.2143878173828124, + "step": 125700 + }, + { + "epoch": 16.773333333333333, + "grad_norm": 0.3342851400375366, + "learning_rate": 4.161693333333334e-05, + "loss": 2.2172373962402343, + "step": 125800 + }, + { + "epoch": 16.786666666666665, + "grad_norm": 0.33905649185180664, + "learning_rate": 4.161026666666667e-05, + "loss": 2.2138526916503904, + "step": 125900 + }, + { + "epoch": 16.8, + "grad_norm": 0.33980846405029297, + "learning_rate": 4.16036e-05, + "loss": 2.2161383056640624, + "step": 126000 + }, + { + "epoch": 16.813333333333333, + "grad_norm": 0.3446345627307892, + "learning_rate": 4.1596933333333335e-05, + "loss": 2.214365234375, + "step": 126100 + }, + { + "epoch": 16.826666666666668, + "grad_norm": 0.32393285632133484, + "learning_rate": 4.159026666666667e-05, + "loss": 2.2161341857910157, + "step": 126200 + }, + { + "epoch": 16.84, + "grad_norm": 0.32899361848831177, + "learning_rate": 4.15836e-05, + "loss": 2.2143894958496095, + "step": 126300 + }, + { + "epoch": 16.85333333333333, + "grad_norm": 0.33458665013313293, + "learning_rate": 4.157693333333333e-05, + "loss": 2.2169989013671874, + "step": 126400 + }, + { + "epoch": 16.866666666666667, + "grad_norm": 0.34240177273750305, + "learning_rate": 4.157026666666667e-05, + "loss": 2.216192169189453, + "step": 126500 + }, + { + "epoch": 16.88, + "grad_norm": 0.33219918608665466, + "learning_rate": 4.15636e-05, + "loss": 2.216274871826172, + "step": 126600 + }, + { + "epoch": 16.893333333333334, + "grad_norm": 0.3476578891277313, + "learning_rate": 4.1556933333333335e-05, + "loss": 2.2149917602539064, + "step": 126700 + }, + { + "epoch": 16.906666666666666, + "grad_norm": 0.3385222852230072, + "learning_rate": 4.155026666666667e-05, + "loss": 2.21719482421875, + "step": 126800 + }, + { + "epoch": 16.92, + "grad_norm": 0.3350334167480469, + "learning_rate": 4.1543600000000007e-05, + "loss": 2.2180024719238283, + "step": 126900 + }, + { + "epoch": 16.933333333333334, + "grad_norm": 0.3438946604728699, + "learning_rate": 4.153693333333333e-05, + "loss": 2.217221221923828, + "step": 127000 + }, + { + "epoch": 16.946666666666665, + "grad_norm": 0.35046643018722534, + "learning_rate": 4.153033333333334e-05, + "loss": 2.220390625, + "step": 127100 + }, + { + "epoch": 16.96, + "grad_norm": 0.34361323714256287, + "learning_rate": 4.1523666666666663e-05, + "loss": 2.216808013916016, + "step": 127200 + }, + { + "epoch": 16.973333333333333, + "grad_norm": 0.32188111543655396, + "learning_rate": 4.1517e-05, + "loss": 2.2157418823242185, + "step": 127300 + }, + { + "epoch": 16.986666666666668, + "grad_norm": 0.32064762711524963, + "learning_rate": 4.1510333333333335e-05, + "loss": 2.2176025390625, + "step": 127400 + }, + { + "epoch": 17.0, + "grad_norm": 0.3368901014328003, + "learning_rate": 4.150366666666667e-05, + "loss": 2.219560241699219, + "step": 127500 + }, + { + "epoch": 17.013333333333332, + "grad_norm": 0.34540697932243347, + "learning_rate": 4.1497e-05, + "loss": 2.1651565551757814, + "step": 127600 + }, + { + "epoch": 17.026666666666667, + "grad_norm": 0.3554867208003998, + "learning_rate": 4.149033333333334e-05, + "loss": 2.168620910644531, + "step": 127700 + }, + { + "epoch": 17.04, + "grad_norm": 0.35656651854515076, + "learning_rate": 4.148366666666667e-05, + "loss": 2.1688262939453127, + "step": 127800 + }, + { + "epoch": 17.053333333333335, + "grad_norm": 0.434224396944046, + "learning_rate": 4.1477e-05, + "loss": 2.1681300354003907, + "step": 127900 + }, + { + "epoch": 17.066666666666666, + "grad_norm": 0.3526768386363983, + "learning_rate": 4.1470333333333335e-05, + "loss": 2.1689207458496096, + "step": 128000 + }, + { + "epoch": 17.08, + "grad_norm": 0.35668861865997314, + "learning_rate": 4.146366666666667e-05, + "loss": 2.168590240478516, + "step": 128100 + }, + { + "epoch": 17.093333333333334, + "grad_norm": 0.368394672870636, + "learning_rate": 4.1457e-05, + "loss": 2.173952941894531, + "step": 128200 + }, + { + "epoch": 17.106666666666666, + "grad_norm": 0.3651200532913208, + "learning_rate": 4.145033333333334e-05, + "loss": 2.172222137451172, + "step": 128300 + }, + { + "epoch": 17.12, + "grad_norm": 0.36325615644454956, + "learning_rate": 4.144366666666667e-05, + "loss": 2.16880859375, + "step": 128400 + }, + { + "epoch": 17.133333333333333, + "grad_norm": 0.3802001476287842, + "learning_rate": 4.1437e-05, + "loss": 2.1748728942871094, + "step": 128500 + }, + { + "epoch": 17.14666666666667, + "grad_norm": 0.3565540611743927, + "learning_rate": 4.1430333333333336e-05, + "loss": 2.1752804565429686, + "step": 128600 + }, + { + "epoch": 17.16, + "grad_norm": 0.3572203814983368, + "learning_rate": 4.142366666666667e-05, + "loss": 2.1743450927734376, + "step": 128700 + }, + { + "epoch": 17.173333333333332, + "grad_norm": 0.350844144821167, + "learning_rate": 4.1417e-05, + "loss": 2.172934722900391, + "step": 128800 + }, + { + "epoch": 17.186666666666667, + "grad_norm": 0.36539897322654724, + "learning_rate": 4.141033333333333e-05, + "loss": 2.176778564453125, + "step": 128900 + }, + { + "epoch": 17.2, + "grad_norm": 0.35811370611190796, + "learning_rate": 4.140366666666667e-05, + "loss": 2.174437713623047, + "step": 129000 + }, + { + "epoch": 17.213333333333335, + "grad_norm": 0.3664299547672272, + "learning_rate": 4.139706666666667e-05, + "loss": 2.1781724548339843, + "step": 129100 + }, + { + "epoch": 17.226666666666667, + "grad_norm": 0.3659532070159912, + "learning_rate": 4.13904e-05, + "loss": 2.176842041015625, + "step": 129200 + }, + { + "epoch": 17.24, + "grad_norm": 0.36825552582740784, + "learning_rate": 4.1383733333333335e-05, + "loss": 2.179559631347656, + "step": 129300 + }, + { + "epoch": 17.253333333333334, + "grad_norm": 0.36417168378829956, + "learning_rate": 4.137706666666667e-05, + "loss": 2.182062072753906, + "step": 129400 + }, + { + "epoch": 17.266666666666666, + "grad_norm": 0.3718934655189514, + "learning_rate": 4.1370400000000006e-05, + "loss": 2.180594177246094, + "step": 129500 + }, + { + "epoch": 17.28, + "grad_norm": 0.3516819477081299, + "learning_rate": 4.136373333333334e-05, + "loss": 2.180480499267578, + "step": 129600 + }, + { + "epoch": 17.293333333333333, + "grad_norm": 0.3652108609676361, + "learning_rate": 4.1357066666666664e-05, + "loss": 2.182070770263672, + "step": 129700 + }, + { + "epoch": 17.306666666666665, + "grad_norm": 0.3595081865787506, + "learning_rate": 4.13504e-05, + "loss": 2.1821852111816407, + "step": 129800 + }, + { + "epoch": 17.32, + "grad_norm": 0.3393441140651703, + "learning_rate": 4.1343733333333335e-05, + "loss": 2.178795166015625, + "step": 129900 + }, + { + "epoch": 17.333333333333332, + "grad_norm": 0.36966830492019653, + "learning_rate": 4.133706666666667e-05, + "loss": 2.1857032775878906, + "step": 130000 + }, + { + "epoch": 17.346666666666668, + "grad_norm": 0.3546712100505829, + "learning_rate": 4.13304e-05, + "loss": 2.180518798828125, + "step": 130100 + }, + { + "epoch": 17.36, + "grad_norm": 0.37151312828063965, + "learning_rate": 4.132373333333334e-05, + "loss": 2.1837088012695314, + "step": 130200 + }, + { + "epoch": 17.373333333333335, + "grad_norm": 0.34406447410583496, + "learning_rate": 4.131706666666667e-05, + "loss": 2.1844528198242186, + "step": 130300 + }, + { + "epoch": 17.386666666666667, + "grad_norm": 0.44284486770629883, + "learning_rate": 4.1310400000000003e-05, + "loss": 2.1846923828125, + "step": 130400 + }, + { + "epoch": 17.4, + "grad_norm": 0.38338637351989746, + "learning_rate": 4.1303733333333336e-05, + "loss": 2.1837538146972655, + "step": 130500 + }, + { + "epoch": 17.413333333333334, + "grad_norm": 0.3616061210632324, + "learning_rate": 4.129706666666667e-05, + "loss": 2.1846038818359377, + "step": 130600 + }, + { + "epoch": 17.426666666666666, + "grad_norm": 0.35662466287612915, + "learning_rate": 4.12904e-05, + "loss": 2.186310272216797, + "step": 130700 + }, + { + "epoch": 17.44, + "grad_norm": 0.34366509318351746, + "learning_rate": 4.128373333333333e-05, + "loss": 2.1828770446777344, + "step": 130800 + }, + { + "epoch": 17.453333333333333, + "grad_norm": 0.35822221636772156, + "learning_rate": 4.127706666666667e-05, + "loss": 2.1853370666503906, + "step": 130900 + }, + { + "epoch": 17.466666666666665, + "grad_norm": 0.382191002368927, + "learning_rate": 4.1270400000000004e-05, + "loss": 2.184327392578125, + "step": 131000 + }, + { + "epoch": 17.48, + "grad_norm": 0.3557610511779785, + "learning_rate": 4.12638e-05, + "loss": 2.188468170166016, + "step": 131100 + }, + { + "epoch": 17.493333333333332, + "grad_norm": 0.3445620536804199, + "learning_rate": 4.1257133333333335e-05, + "loss": 2.1877789306640625, + "step": 131200 + }, + { + "epoch": 17.506666666666668, + "grad_norm": 0.356189489364624, + "learning_rate": 4.125046666666667e-05, + "loss": 2.186894989013672, + "step": 131300 + }, + { + "epoch": 17.52, + "grad_norm": 0.37347978353500366, + "learning_rate": 4.1243800000000007e-05, + "loss": 2.1881455993652343, + "step": 131400 + }, + { + "epoch": 17.533333333333335, + "grad_norm": 0.4915677309036255, + "learning_rate": 4.123713333333333e-05, + "loss": 2.188135528564453, + "step": 131500 + }, + { + "epoch": 17.546666666666667, + "grad_norm": 0.33609944581985474, + "learning_rate": 4.1230466666666664e-05, + "loss": 2.1907609558105468, + "step": 131600 + }, + { + "epoch": 17.56, + "grad_norm": 0.36254754662513733, + "learning_rate": 4.12238e-05, + "loss": 2.1870379638671875, + "step": 131700 + }, + { + "epoch": 17.573333333333334, + "grad_norm": 0.3741578459739685, + "learning_rate": 4.1217133333333336e-05, + "loss": 2.1931048583984376, + "step": 131800 + }, + { + "epoch": 17.586666666666666, + "grad_norm": 0.3609215319156647, + "learning_rate": 4.121046666666667e-05, + "loss": 2.19150146484375, + "step": 131900 + }, + { + "epoch": 17.6, + "grad_norm": 0.35999777913093567, + "learning_rate": 4.120380000000001e-05, + "loss": 2.191175537109375, + "step": 132000 + }, + { + "epoch": 17.613333333333333, + "grad_norm": 0.3569694459438324, + "learning_rate": 4.119713333333334e-05, + "loss": 2.192285614013672, + "step": 132100 + }, + { + "epoch": 17.626666666666665, + "grad_norm": 0.3714178502559662, + "learning_rate": 4.1190466666666665e-05, + "loss": 2.192773895263672, + "step": 132200 + }, + { + "epoch": 17.64, + "grad_norm": 0.3539521396160126, + "learning_rate": 4.11838e-05, + "loss": 2.190313415527344, + "step": 132300 + }, + { + "epoch": 17.653333333333332, + "grad_norm": 0.358467698097229, + "learning_rate": 4.1177133333333336e-05, + "loss": 2.195655517578125, + "step": 132400 + }, + { + "epoch": 17.666666666666668, + "grad_norm": 0.3586037755012512, + "learning_rate": 4.117046666666667e-05, + "loss": 2.192008819580078, + "step": 132500 + }, + { + "epoch": 17.68, + "grad_norm": 0.3595978915691376, + "learning_rate": 4.11638e-05, + "loss": 2.1931185913085938, + "step": 132600 + }, + { + "epoch": 17.693333333333335, + "grad_norm": 0.35596606135368347, + "learning_rate": 4.115713333333334e-05, + "loss": 2.1931863403320313, + "step": 132700 + }, + { + "epoch": 17.706666666666667, + "grad_norm": 0.349572092294693, + "learning_rate": 4.115046666666667e-05, + "loss": 2.1953758239746093, + "step": 132800 + }, + { + "epoch": 17.72, + "grad_norm": 0.3638124167919159, + "learning_rate": 4.1143800000000004e-05, + "loss": 2.197004547119141, + "step": 132900 + }, + { + "epoch": 17.733333333333334, + "grad_norm": 0.3515288531780243, + "learning_rate": 4.1137133333333336e-05, + "loss": 2.1984828186035155, + "step": 133000 + }, + { + "epoch": 17.746666666666666, + "grad_norm": 0.37091967463493347, + "learning_rate": 4.1130533333333335e-05, + "loss": 2.1952162170410157, + "step": 133100 + }, + { + "epoch": 17.76, + "grad_norm": 0.3641296923160553, + "learning_rate": 4.112386666666667e-05, + "loss": 2.1980247497558594, + "step": 133200 + }, + { + "epoch": 17.773333333333333, + "grad_norm": 0.3431222438812256, + "learning_rate": 4.11172e-05, + "loss": 2.196508483886719, + "step": 133300 + }, + { + "epoch": 17.786666666666665, + "grad_norm": 0.35797178745269775, + "learning_rate": 4.111053333333333e-05, + "loss": 2.199690704345703, + "step": 133400 + }, + { + "epoch": 17.8, + "grad_norm": 0.3545133173465729, + "learning_rate": 4.110386666666667e-05, + "loss": 2.1973370361328124, + "step": 133500 + }, + { + "epoch": 17.813333333333333, + "grad_norm": 0.36000749468803406, + "learning_rate": 4.1097200000000004e-05, + "loss": 2.2000468444824217, + "step": 133600 + }, + { + "epoch": 17.826666666666668, + "grad_norm": 0.3570917546749115, + "learning_rate": 4.1090533333333336e-05, + "loss": 2.199578857421875, + "step": 133700 + }, + { + "epoch": 17.84, + "grad_norm": 0.36283078789711, + "learning_rate": 4.108386666666667e-05, + "loss": 2.199168853759766, + "step": 133800 + }, + { + "epoch": 17.85333333333333, + "grad_norm": 0.37170839309692383, + "learning_rate": 4.107720000000001e-05, + "loss": 2.199163818359375, + "step": 133900 + }, + { + "epoch": 17.866666666666667, + "grad_norm": 0.35398539900779724, + "learning_rate": 4.107053333333333e-05, + "loss": 2.2005375671386718, + "step": 134000 + }, + { + "epoch": 17.88, + "grad_norm": 0.3618471622467041, + "learning_rate": 4.1063866666666665e-05, + "loss": 2.193340606689453, + "step": 134100 + }, + { + "epoch": 17.893333333333334, + "grad_norm": 0.36715346574783325, + "learning_rate": 4.1057200000000004e-05, + "loss": 2.201223602294922, + "step": 134200 + }, + { + "epoch": 17.906666666666666, + "grad_norm": 0.35410168766975403, + "learning_rate": 4.1050533333333336e-05, + "loss": 2.1994700622558594, + "step": 134300 + }, + { + "epoch": 17.92, + "grad_norm": 0.34702470898628235, + "learning_rate": 4.104386666666667e-05, + "loss": 2.2010435485839843, + "step": 134400 + }, + { + "epoch": 17.933333333333334, + "grad_norm": 0.33663272857666016, + "learning_rate": 4.10372e-05, + "loss": 2.2017396545410155, + "step": 134500 + }, + { + "epoch": 17.946666666666665, + "grad_norm": 0.36605820059776306, + "learning_rate": 4.103053333333334e-05, + "loss": 2.2016064453125, + "step": 134600 + }, + { + "epoch": 17.96, + "grad_norm": 0.3492322564125061, + "learning_rate": 4.1023866666666665e-05, + "loss": 2.202108154296875, + "step": 134700 + }, + { + "epoch": 17.973333333333333, + "grad_norm": 0.36869311332702637, + "learning_rate": 4.10172e-05, + "loss": 2.2017369079589844, + "step": 134800 + }, + { + "epoch": 17.986666666666668, + "grad_norm": 0.36540335416793823, + "learning_rate": 4.1010533333333337e-05, + "loss": 2.200558624267578, + "step": 134900 + }, + { + "epoch": 18.0, + "grad_norm": 0.36333802342414856, + "learning_rate": 4.100386666666667e-05, + "loss": 2.203197174072266, + "step": 135000 + }, + { + "epoch": 18.013333333333332, + "grad_norm": 0.3684398829936981, + "learning_rate": 4.09972e-05, + "loss": 2.144236297607422, + "step": 135100 + }, + { + "epoch": 18.026666666666667, + "grad_norm": 0.3864319622516632, + "learning_rate": 4.09906e-05, + "loss": 2.147691650390625, + "step": 135200 + }, + { + "epoch": 18.04, + "grad_norm": 0.39713576436042786, + "learning_rate": 4.098393333333333e-05, + "loss": 2.1479608154296876, + "step": 135300 + }, + { + "epoch": 18.053333333333335, + "grad_norm": 0.38535943627357483, + "learning_rate": 4.097726666666667e-05, + "loss": 2.149579620361328, + "step": 135400 + }, + { + "epoch": 18.066666666666666, + "grad_norm": 0.37120920419692993, + "learning_rate": 4.0970600000000004e-05, + "loss": 2.1504815673828124, + "step": 135500 + }, + { + "epoch": 18.08, + "grad_norm": 0.3953970968723297, + "learning_rate": 4.0963933333333336e-05, + "loss": 2.1479664611816407, + "step": 135600 + }, + { + "epoch": 18.093333333333334, + "grad_norm": 0.3948633372783661, + "learning_rate": 4.095726666666667e-05, + "loss": 2.1526097106933593, + "step": 135700 + }, + { + "epoch": 18.106666666666666, + "grad_norm": 0.38562309741973877, + "learning_rate": 4.09506e-05, + "loss": 2.147718963623047, + "step": 135800 + }, + { + "epoch": 18.12, + "grad_norm": 0.38705727458000183, + "learning_rate": 4.094393333333333e-05, + "loss": 2.1560462951660155, + "step": 135900 + }, + { + "epoch": 18.133333333333333, + "grad_norm": 0.3904648721218109, + "learning_rate": 4.0937266666666665e-05, + "loss": 2.148473815917969, + "step": 136000 + }, + { + "epoch": 18.14666666666667, + "grad_norm": 0.3789866268634796, + "learning_rate": 4.0930600000000004e-05, + "loss": 2.1551133728027345, + "step": 136100 + }, + { + "epoch": 18.16, + "grad_norm": 0.3716281056404114, + "learning_rate": 4.0923933333333336e-05, + "loss": 2.1517713928222655, + "step": 136200 + }, + { + "epoch": 18.173333333333332, + "grad_norm": 0.4038568437099457, + "learning_rate": 4.091726666666667e-05, + "loss": 2.154055633544922, + "step": 136300 + }, + { + "epoch": 18.186666666666667, + "grad_norm": 0.3836662173271179, + "learning_rate": 4.091060000000001e-05, + "loss": 2.1555635070800783, + "step": 136400 + }, + { + "epoch": 18.2, + "grad_norm": 0.4338989853858948, + "learning_rate": 4.090393333333333e-05, + "loss": 2.1564508056640626, + "step": 136500 + }, + { + "epoch": 18.213333333333335, + "grad_norm": 0.3803965747356415, + "learning_rate": 4.0897266666666665e-05, + "loss": 2.15535888671875, + "step": 136600 + }, + { + "epoch": 18.226666666666667, + "grad_norm": 0.38790804147720337, + "learning_rate": 4.08906e-05, + "loss": 2.155977935791016, + "step": 136700 + }, + { + "epoch": 18.24, + "grad_norm": 0.4054514169692993, + "learning_rate": 4.088393333333334e-05, + "loss": 2.1601606750488282, + "step": 136800 + }, + { + "epoch": 18.253333333333334, + "grad_norm": 0.39995694160461426, + "learning_rate": 4.087726666666667e-05, + "loss": 2.1544822692871093, + "step": 136900 + }, + { + "epoch": 18.266666666666666, + "grad_norm": 0.399427592754364, + "learning_rate": 4.08706e-05, + "loss": 2.157484436035156, + "step": 137000 + }, + { + "epoch": 18.28, + "grad_norm": 0.380747526884079, + "learning_rate": 4.086393333333334e-05, + "loss": 2.1604388427734373, + "step": 137100 + }, + { + "epoch": 18.293333333333333, + "grad_norm": 0.3849477767944336, + "learning_rate": 4.085733333333334e-05, + "loss": 2.1585659790039062, + "step": 137200 + }, + { + "epoch": 18.306666666666665, + "grad_norm": 0.3770460784435272, + "learning_rate": 4.085066666666667e-05, + "loss": 2.1618302917480468, + "step": 137300 + }, + { + "epoch": 18.32, + "grad_norm": 0.4081668257713318, + "learning_rate": 4.0844000000000004e-05, + "loss": 2.1609623718261717, + "step": 137400 + }, + { + "epoch": 18.333333333333332, + "grad_norm": 0.37667742371559143, + "learning_rate": 4.0837333333333336e-05, + "loss": 2.162608642578125, + "step": 137500 + }, + { + "epoch": 18.346666666666668, + "grad_norm": 0.3946523070335388, + "learning_rate": 4.083066666666667e-05, + "loss": 2.1644091796875, + "step": 137600 + }, + { + "epoch": 18.36, + "grad_norm": 0.38843250274658203, + "learning_rate": 4.0824e-05, + "loss": 2.161121063232422, + "step": 137700 + }, + { + "epoch": 18.373333333333335, + "grad_norm": 0.4010300040245056, + "learning_rate": 4.081733333333333e-05, + "loss": 2.1667359924316405, + "step": 137800 + }, + { + "epoch": 18.386666666666667, + "grad_norm": 0.3785018026828766, + "learning_rate": 4.081066666666667e-05, + "loss": 2.167360992431641, + "step": 137900 + }, + { + "epoch": 18.4, + "grad_norm": 0.39816367626190186, + "learning_rate": 4.0804000000000004e-05, + "loss": 2.164031677246094, + "step": 138000 + }, + { + "epoch": 18.413333333333334, + "grad_norm": 0.38204148411750793, + "learning_rate": 4.079733333333334e-05, + "loss": 2.166887054443359, + "step": 138100 + }, + { + "epoch": 18.426666666666666, + "grad_norm": 0.36739620566368103, + "learning_rate": 4.079066666666667e-05, + "loss": 2.1648483276367188, + "step": 138200 + }, + { + "epoch": 18.44, + "grad_norm": 0.40818193554878235, + "learning_rate": 4.0784e-05, + "loss": 2.167153778076172, + "step": 138300 + }, + { + "epoch": 18.453333333333333, + "grad_norm": 0.3707272410392761, + "learning_rate": 4.0777333333333333e-05, + "loss": 2.1704667663574218, + "step": 138400 + }, + { + "epoch": 18.466666666666665, + "grad_norm": 0.3825608491897583, + "learning_rate": 4.0770666666666666e-05, + "loss": 2.1677491760253904, + "step": 138500 + }, + { + "epoch": 18.48, + "grad_norm": 0.3704966902732849, + "learning_rate": 4.0764000000000005e-05, + "loss": 2.168622589111328, + "step": 138600 + }, + { + "epoch": 18.493333333333332, + "grad_norm": 0.38297003507614136, + "learning_rate": 4.075733333333334e-05, + "loss": 2.1695802307128904, + "step": 138700 + }, + { + "epoch": 18.506666666666668, + "grad_norm": 0.369875431060791, + "learning_rate": 4.075066666666667e-05, + "loss": 2.1684419250488283, + "step": 138800 + }, + { + "epoch": 18.52, + "grad_norm": 0.38239753246307373, + "learning_rate": 4.0744e-05, + "loss": 2.1713496398925782, + "step": 138900 + }, + { + "epoch": 18.533333333333335, + "grad_norm": 0.37456804513931274, + "learning_rate": 4.0737333333333334e-05, + "loss": 2.171775360107422, + "step": 139000 + }, + { + "epoch": 18.546666666666667, + "grad_norm": 0.36324089765548706, + "learning_rate": 4.0730666666666666e-05, + "loss": 2.168131103515625, + "step": 139100 + }, + { + "epoch": 18.56, + "grad_norm": 0.3825380206108093, + "learning_rate": 4.0724066666666665e-05, + "loss": 2.1711878967285156, + "step": 139200 + }, + { + "epoch": 18.573333333333334, + "grad_norm": 0.38280192017555237, + "learning_rate": 4.07174e-05, + "loss": 2.1701324462890623, + "step": 139300 + }, + { + "epoch": 18.586666666666666, + "grad_norm": 0.3777543902397156, + "learning_rate": 4.0710733333333336e-05, + "loss": 2.1692018127441406, + "step": 139400 + }, + { + "epoch": 18.6, + "grad_norm": 0.387617290019989, + "learning_rate": 4.070406666666667e-05, + "loss": 2.1738621520996095, + "step": 139500 + }, + { + "epoch": 18.613333333333333, + "grad_norm": 0.38992756605148315, + "learning_rate": 4.06974e-05, + "loss": 2.173524932861328, + "step": 139600 + }, + { + "epoch": 18.626666666666665, + "grad_norm": 0.382716566324234, + "learning_rate": 4.069073333333333e-05, + "loss": 2.1713710021972656, + "step": 139700 + }, + { + "epoch": 18.64, + "grad_norm": 0.36141642928123474, + "learning_rate": 4.068406666666667e-05, + "loss": 2.1703253173828125, + "step": 139800 + }, + { + "epoch": 18.653333333333332, + "grad_norm": 0.37553125619888306, + "learning_rate": 4.0677400000000005e-05, + "loss": 2.1746434020996093, + "step": 139900 + }, + { + "epoch": 18.666666666666668, + "grad_norm": 0.40358760952949524, + "learning_rate": 4.067073333333333e-05, + "loss": 2.172953643798828, + "step": 140000 + }, + { + "epoch": 18.68, + "grad_norm": 0.35741183161735535, + "learning_rate": 4.066406666666667e-05, + "loss": 2.1734686279296875, + "step": 140100 + }, + { + "epoch": 18.693333333333335, + "grad_norm": 0.3769322633743286, + "learning_rate": 4.06574e-05, + "loss": 2.1750888061523437, + "step": 140200 + }, + { + "epoch": 18.706666666666667, + "grad_norm": 0.3802931606769562, + "learning_rate": 4.0650733333333334e-05, + "loss": 2.1736627197265626, + "step": 140300 + }, + { + "epoch": 18.72, + "grad_norm": 0.3812218904495239, + "learning_rate": 4.0644066666666666e-05, + "loss": 2.176966552734375, + "step": 140400 + }, + { + "epoch": 18.733333333333334, + "grad_norm": 0.38916149735450745, + "learning_rate": 4.0637400000000005e-05, + "loss": 2.172593231201172, + "step": 140500 + }, + { + "epoch": 18.746666666666666, + "grad_norm": 0.38093966245651245, + "learning_rate": 4.063073333333334e-05, + "loss": 2.1759133911132813, + "step": 140600 + }, + { + "epoch": 18.76, + "grad_norm": 0.4063868224620819, + "learning_rate": 4.062406666666667e-05, + "loss": 2.1767710876464843, + "step": 140700 + }, + { + "epoch": 18.773333333333333, + "grad_norm": 0.37494465708732605, + "learning_rate": 4.06174e-05, + "loss": 2.1748062133789063, + "step": 140800 + }, + { + "epoch": 18.786666666666665, + "grad_norm": 0.38622939586639404, + "learning_rate": 4.0610733333333334e-05, + "loss": 2.17905029296875, + "step": 140900 + }, + { + "epoch": 18.8, + "grad_norm": 0.41010287404060364, + "learning_rate": 4.0604066666666666e-05, + "loss": 2.1740985107421875, + "step": 141000 + }, + { + "epoch": 18.813333333333333, + "grad_norm": 0.38058510422706604, + "learning_rate": 4.0597400000000005e-05, + "loss": 2.1741783142089846, + "step": 141100 + }, + { + "epoch": 18.826666666666668, + "grad_norm": 0.36692535877227783, + "learning_rate": 4.05908e-05, + "loss": 2.1796223449707033, + "step": 141200 + }, + { + "epoch": 18.84, + "grad_norm": 0.3798985779285431, + "learning_rate": 4.058413333333334e-05, + "loss": 2.1784815979003906, + "step": 141300 + }, + { + "epoch": 18.85333333333333, + "grad_norm": 0.3722667098045349, + "learning_rate": 4.057746666666667e-05, + "loss": 2.1829788208007814, + "step": 141400 + }, + { + "epoch": 18.866666666666667, + "grad_norm": 0.39556455612182617, + "learning_rate": 4.05708e-05, + "loss": 2.179154815673828, + "step": 141500 + }, + { + "epoch": 18.88, + "grad_norm": 0.3847595453262329, + "learning_rate": 4.056413333333334e-05, + "loss": 2.1796925354003904, + "step": 141600 + }, + { + "epoch": 18.893333333333334, + "grad_norm": 0.37797436118125916, + "learning_rate": 4.055746666666667e-05, + "loss": 2.1813531494140626, + "step": 141700 + }, + { + "epoch": 18.906666666666666, + "grad_norm": 0.3832587003707886, + "learning_rate": 4.05508e-05, + "loss": 2.179685516357422, + "step": 141800 + }, + { + "epoch": 18.92, + "grad_norm": 0.3763803541660309, + "learning_rate": 4.054413333333334e-05, + "loss": 2.1807159423828124, + "step": 141900 + }, + { + "epoch": 18.933333333333334, + "grad_norm": 0.39702609181404114, + "learning_rate": 4.053746666666667e-05, + "loss": 2.18234619140625, + "step": 142000 + }, + { + "epoch": 18.946666666666665, + "grad_norm": 0.3635548949241638, + "learning_rate": 4.05308e-05, + "loss": 2.1816770935058596, + "step": 142100 + }, + { + "epoch": 18.96, + "grad_norm": 0.3698504567146301, + "learning_rate": 4.0524133333333334e-05, + "loss": 2.1805545043945314, + "step": 142200 + }, + { + "epoch": 18.973333333333333, + "grad_norm": 0.38847336173057556, + "learning_rate": 4.051746666666667e-05, + "loss": 2.18578125, + "step": 142300 + }, + { + "epoch": 18.986666666666668, + "grad_norm": 0.380186527967453, + "learning_rate": 4.0510800000000005e-05, + "loss": 2.1846510314941407, + "step": 142400 + }, + { + "epoch": 19.0, + "grad_norm": 0.37036606669425964, + "learning_rate": 4.050413333333333e-05, + "loss": 2.184918212890625, + "step": 142500 + }, + { + "epoch": 19.013333333333332, + "grad_norm": 0.4196798503398895, + "learning_rate": 4.049746666666667e-05, + "loss": 2.122628021240234, + "step": 142600 + }, + { + "epoch": 19.026666666666667, + "grad_norm": 0.4127017557621002, + "learning_rate": 4.04908e-05, + "loss": 2.1235401916503904, + "step": 142700 + }, + { + "epoch": 19.04, + "grad_norm": 0.4180348813533783, + "learning_rate": 4.0484133333333334e-05, + "loss": 2.123696746826172, + "step": 142800 + }, + { + "epoch": 19.053333333333335, + "grad_norm": 0.40591850876808167, + "learning_rate": 4.0477466666666667e-05, + "loss": 2.12607177734375, + "step": 142900 + }, + { + "epoch": 19.066666666666666, + "grad_norm": 0.4013535678386688, + "learning_rate": 4.0470800000000006e-05, + "loss": 2.1254452514648436, + "step": 143000 + }, + { + "epoch": 19.08, + "grad_norm": 0.3990405797958374, + "learning_rate": 4.046413333333334e-05, + "loss": 2.1275210571289063, + "step": 143100 + }, + { + "epoch": 19.093333333333334, + "grad_norm": 0.3961292803287506, + "learning_rate": 4.045753333333334e-05, + "loss": 2.1298793029785155, + "step": 143200 + }, + { + "epoch": 19.106666666666666, + "grad_norm": 0.38968828320503235, + "learning_rate": 4.045086666666667e-05, + "loss": 2.130485382080078, + "step": 143300 + }, + { + "epoch": 19.12, + "grad_norm": 0.38888853788375854, + "learning_rate": 4.04442e-05, + "loss": 2.1340348815917967, + "step": 143400 + }, + { + "epoch": 19.133333333333333, + "grad_norm": 0.4043475091457367, + "learning_rate": 4.0437533333333334e-05, + "loss": 2.132088317871094, + "step": 143500 + }, + { + "epoch": 19.14666666666667, + "grad_norm": 0.3911975920200348, + "learning_rate": 4.0430866666666666e-05, + "loss": 2.136121826171875, + "step": 143600 + }, + { + "epoch": 19.16, + "grad_norm": 0.43989744782447815, + "learning_rate": 4.04242e-05, + "loss": 2.129822998046875, + "step": 143700 + }, + { + "epoch": 19.173333333333332, + "grad_norm": 0.3966082036495209, + "learning_rate": 4.041753333333334e-05, + "loss": 2.132376403808594, + "step": 143800 + }, + { + "epoch": 19.186666666666667, + "grad_norm": 0.3992730975151062, + "learning_rate": 4.041086666666667e-05, + "loss": 2.139486999511719, + "step": 143900 + }, + { + "epoch": 19.2, + "grad_norm": 0.4032175838947296, + "learning_rate": 4.04042e-05, + "loss": 2.13601318359375, + "step": 144000 + }, + { + "epoch": 19.213333333333335, + "grad_norm": 0.396996408700943, + "learning_rate": 4.0397533333333334e-05, + "loss": 2.1378729248046877, + "step": 144100 + }, + { + "epoch": 19.226666666666667, + "grad_norm": 0.4150291085243225, + "learning_rate": 4.039086666666667e-05, + "loss": 2.1334957885742187, + "step": 144200 + }, + { + "epoch": 19.24, + "grad_norm": 0.3937293291091919, + "learning_rate": 4.03842e-05, + "loss": 2.136308135986328, + "step": 144300 + }, + { + "epoch": 19.253333333333334, + "grad_norm": 0.4123186469078064, + "learning_rate": 4.037753333333333e-05, + "loss": 2.1393890380859375, + "step": 144400 + }, + { + "epoch": 19.266666666666666, + "grad_norm": 0.39195558428764343, + "learning_rate": 4.037086666666667e-05, + "loss": 2.1392486572265623, + "step": 144500 + }, + { + "epoch": 19.28, + "grad_norm": 0.4173942506313324, + "learning_rate": 4.03642e-05, + "loss": 2.137723846435547, + "step": 144600 + }, + { + "epoch": 19.293333333333333, + "grad_norm": 0.4093802273273468, + "learning_rate": 4.0357533333333335e-05, + "loss": 2.136879577636719, + "step": 144700 + }, + { + "epoch": 19.306666666666665, + "grad_norm": 0.4126907289028168, + "learning_rate": 4.035086666666667e-05, + "loss": 2.1385182189941405, + "step": 144800 + }, + { + "epoch": 19.32, + "grad_norm": 0.4639165699481964, + "learning_rate": 4.0344200000000006e-05, + "loss": 2.1417454528808593, + "step": 144900 + }, + { + "epoch": 19.333333333333332, + "grad_norm": 0.405304491519928, + "learning_rate": 4.033753333333333e-05, + "loss": 2.1422581481933594, + "step": 145000 + }, + { + "epoch": 19.346666666666668, + "grad_norm": 0.3977564573287964, + "learning_rate": 4.0330866666666664e-05, + "loss": 2.142159118652344, + "step": 145100 + }, + { + "epoch": 19.36, + "grad_norm": 0.3873383104801178, + "learning_rate": 4.032426666666667e-05, + "loss": 2.141308135986328, + "step": 145200 + }, + { + "epoch": 19.373333333333335, + "grad_norm": 0.40484434366226196, + "learning_rate": 4.03176e-05, + "loss": 2.1436500549316406, + "step": 145300 + }, + { + "epoch": 19.386666666666667, + "grad_norm": 0.3954225480556488, + "learning_rate": 4.0310933333333334e-05, + "loss": 2.1450897216796876, + "step": 145400 + }, + { + "epoch": 19.4, + "grad_norm": 0.40232667326927185, + "learning_rate": 4.0304266666666666e-05, + "loss": 2.14369140625, + "step": 145500 + }, + { + "epoch": 19.413333333333334, + "grad_norm": 0.4098379909992218, + "learning_rate": 4.0297600000000005e-05, + "loss": 2.142886199951172, + "step": 145600 + }, + { + "epoch": 19.426666666666666, + "grad_norm": 0.5938084125518799, + "learning_rate": 4.029093333333334e-05, + "loss": 2.142805480957031, + "step": 145700 + }, + { + "epoch": 19.44, + "grad_norm": 0.4229917824268341, + "learning_rate": 4.028426666666667e-05, + "loss": 2.1455670166015626, + "step": 145800 + }, + { + "epoch": 19.453333333333333, + "grad_norm": 0.4009098410606384, + "learning_rate": 4.02776e-05, + "loss": 2.1452354431152343, + "step": 145900 + }, + { + "epoch": 19.466666666666665, + "grad_norm": 0.4073621928691864, + "learning_rate": 4.0270933333333334e-05, + "loss": 2.148215484619141, + "step": 146000 + }, + { + "epoch": 19.48, + "grad_norm": 0.4084467887878418, + "learning_rate": 4.026426666666667e-05, + "loss": 2.1478231811523436, + "step": 146100 + }, + { + "epoch": 19.493333333333332, + "grad_norm": 0.41249674558639526, + "learning_rate": 4.02576e-05, + "loss": 2.146228485107422, + "step": 146200 + }, + { + "epoch": 19.506666666666668, + "grad_norm": 0.4140562415122986, + "learning_rate": 4.025093333333334e-05, + "loss": 2.1468472290039062, + "step": 146300 + }, + { + "epoch": 19.52, + "grad_norm": 0.4109251797199249, + "learning_rate": 4.024426666666667e-05, + "loss": 2.1486239624023438, + "step": 146400 + }, + { + "epoch": 19.533333333333335, + "grad_norm": 0.4116007089614868, + "learning_rate": 4.02376e-05, + "loss": 2.1508238220214846, + "step": 146500 + }, + { + "epoch": 19.546666666666667, + "grad_norm": 0.4088853895664215, + "learning_rate": 4.0230933333333335e-05, + "loss": 2.1514797973632813, + "step": 146600 + }, + { + "epoch": 19.56, + "grad_norm": 0.41675347089767456, + "learning_rate": 4.0224266666666674e-05, + "loss": 2.1524058532714845, + "step": 146700 + }, + { + "epoch": 19.573333333333334, + "grad_norm": 0.3963926136493683, + "learning_rate": 4.02176e-05, + "loss": 2.148751525878906, + "step": 146800 + }, + { + "epoch": 19.586666666666666, + "grad_norm": 0.40617915987968445, + "learning_rate": 4.021093333333333e-05, + "loss": 2.149855194091797, + "step": 146900 + }, + { + "epoch": 19.6, + "grad_norm": 0.41876712441444397, + "learning_rate": 4.020426666666667e-05, + "loss": 2.150911560058594, + "step": 147000 + }, + { + "epoch": 19.613333333333333, + "grad_norm": 0.3804861605167389, + "learning_rate": 4.01976e-05, + "loss": 2.1560760498046876, + "step": 147100 + }, + { + "epoch": 19.626666666666665, + "grad_norm": 0.4384894073009491, + "learning_rate": 4.0191e-05, + "loss": 2.1526423645019532, + "step": 147200 + }, + { + "epoch": 19.64, + "grad_norm": 0.41497132182121277, + "learning_rate": 4.0184333333333334e-05, + "loss": 2.155290374755859, + "step": 147300 + }, + { + "epoch": 19.653333333333332, + "grad_norm": 0.41495493054389954, + "learning_rate": 4.0177666666666666e-05, + "loss": 2.151389465332031, + "step": 147400 + }, + { + "epoch": 19.666666666666668, + "grad_norm": 0.4099428355693817, + "learning_rate": 4.0171000000000006e-05, + "loss": 2.1499951171875, + "step": 147500 + }, + { + "epoch": 19.68, + "grad_norm": 0.3970455825328827, + "learning_rate": 4.016433333333334e-05, + "loss": 2.1519485473632813, + "step": 147600 + }, + { + "epoch": 19.693333333333335, + "grad_norm": 0.39993080496788025, + "learning_rate": 4.015766666666667e-05, + "loss": 2.1552606201171876, + "step": 147700 + }, + { + "epoch": 19.706666666666667, + "grad_norm": 0.3965042233467102, + "learning_rate": 4.0151e-05, + "loss": 2.15621826171875, + "step": 147800 + }, + { + "epoch": 19.72, + "grad_norm": 0.39892885088920593, + "learning_rate": 4.0144333333333335e-05, + "loss": 2.1579328918457032, + "step": 147900 + }, + { + "epoch": 19.733333333333334, + "grad_norm": 0.3992300033569336, + "learning_rate": 4.013766666666667e-05, + "loss": 2.1543257141113283, + "step": 148000 + }, + { + "epoch": 19.746666666666666, + "grad_norm": 0.4157925844192505, + "learning_rate": 4.0131e-05, + "loss": 2.1553553771972656, + "step": 148100 + }, + { + "epoch": 19.76, + "grad_norm": 0.4068884253501892, + "learning_rate": 4.012433333333334e-05, + "loss": 2.1588153076171874, + "step": 148200 + }, + { + "epoch": 19.773333333333333, + "grad_norm": 0.38905492424964905, + "learning_rate": 4.011766666666667e-05, + "loss": 2.15878662109375, + "step": 148300 + }, + { + "epoch": 19.786666666666665, + "grad_norm": 0.4091239869594574, + "learning_rate": 4.0111e-05, + "loss": 2.1591731262207032, + "step": 148400 + }, + { + "epoch": 19.8, + "grad_norm": 0.40158993005752563, + "learning_rate": 4.0104333333333335e-05, + "loss": 2.1584709167480467, + "step": 148500 + }, + { + "epoch": 19.813333333333333, + "grad_norm": 0.39406251907348633, + "learning_rate": 4.009766666666667e-05, + "loss": 2.1566011047363283, + "step": 148600 + }, + { + "epoch": 19.826666666666668, + "grad_norm": 0.407062292098999, + "learning_rate": 4.0091e-05, + "loss": 2.1586177062988283, + "step": 148700 + }, + { + "epoch": 19.84, + "grad_norm": 0.405785471200943, + "learning_rate": 4.008433333333333e-05, + "loss": 2.16111083984375, + "step": 148800 + }, + { + "epoch": 19.85333333333333, + "grad_norm": 0.41420650482177734, + "learning_rate": 4.007766666666667e-05, + "loss": 2.1617213439941407, + "step": 148900 + }, + { + "epoch": 19.866666666666667, + "grad_norm": 0.394771933555603, + "learning_rate": 4.0071e-05, + "loss": 2.1623408508300783, + "step": 149000 + }, + { + "epoch": 19.88, + "grad_norm": 0.40892547369003296, + "learning_rate": 4.0064333333333335e-05, + "loss": 2.157855987548828, + "step": 149100 + }, + { + "epoch": 19.893333333333334, + "grad_norm": 0.3987767994403839, + "learning_rate": 4.0057733333333334e-05, + "loss": 2.1613093566894532, + "step": 149200 + }, + { + "epoch": 19.906666666666666, + "grad_norm": 0.3993833661079407, + "learning_rate": 4.005106666666667e-05, + "loss": 2.1549281311035156, + "step": 149300 + }, + { + "epoch": 19.92, + "grad_norm": 0.38621968030929565, + "learning_rate": 4.0044400000000006e-05, + "loss": 2.160150146484375, + "step": 149400 + }, + { + "epoch": 19.933333333333334, + "grad_norm": 0.3897809386253357, + "learning_rate": 4.003773333333333e-05, + "loss": 2.1631517028808593, + "step": 149500 + }, + { + "epoch": 19.946666666666665, + "grad_norm": 0.398573637008667, + "learning_rate": 4.0031066666666664e-05, + "loss": 2.157795104980469, + "step": 149600 + }, + { + "epoch": 19.96, + "grad_norm": 0.40121105313301086, + "learning_rate": 4.00244e-05, + "loss": 2.1640524291992187, + "step": 149700 + }, + { + "epoch": 19.973333333333333, + "grad_norm": 0.4069249927997589, + "learning_rate": 4.0017733333333335e-05, + "loss": 2.166029052734375, + "step": 149800 + }, + { + "epoch": 19.986666666666668, + "grad_norm": 0.3973349928855896, + "learning_rate": 4.001106666666667e-05, + "loss": 2.1621893310546874, + "step": 149900 + }, + { + "epoch": 20.0, + "grad_norm": 0.41031596064567566, + "learning_rate": 4.0004400000000006e-05, + "loss": 2.164129180908203, + "step": 150000 + }, + { + "epoch": 20.013333333333332, + "grad_norm": 0.4144793748855591, + "learning_rate": 3.999773333333334e-05, + "loss": 2.1011627197265623, + "step": 150100 + }, + { + "epoch": 20.026666666666667, + "grad_norm": 0.4213844835758209, + "learning_rate": 3.999106666666667e-05, + "loss": 2.1013143920898436, + "step": 150200 + }, + { + "epoch": 20.04, + "grad_norm": 0.4233456254005432, + "learning_rate": 3.99844e-05, + "loss": 2.102215118408203, + "step": 150300 + }, + { + "epoch": 20.053333333333335, + "grad_norm": 0.4110080897808075, + "learning_rate": 3.9977733333333335e-05, + "loss": 2.1024229431152346, + "step": 150400 + }, + { + "epoch": 20.066666666666666, + "grad_norm": 0.43383386731147766, + "learning_rate": 3.997106666666667e-05, + "loss": 2.1043170166015623, + "step": 150500 + }, + { + "epoch": 20.08, + "grad_norm": 0.44916924834251404, + "learning_rate": 3.99644e-05, + "loss": 2.1046258544921876, + "step": 150600 + }, + { + "epoch": 20.093333333333334, + "grad_norm": 0.41945359110832214, + "learning_rate": 3.995773333333334e-05, + "loss": 2.1057843017578124, + "step": 150700 + }, + { + "epoch": 20.106666666666666, + "grad_norm": 0.4138963222503662, + "learning_rate": 3.995106666666667e-05, + "loss": 2.109571533203125, + "step": 150800 + }, + { + "epoch": 20.12, + "grad_norm": 0.4254426956176758, + "learning_rate": 3.99444e-05, + "loss": 2.110528869628906, + "step": 150900 + }, + { + "epoch": 20.133333333333333, + "grad_norm": 0.4162181615829468, + "learning_rate": 3.9937733333333336e-05, + "loss": 2.109608459472656, + "step": 151000 + }, + { + "epoch": 20.14666666666667, + "grad_norm": 0.4359742999076843, + "learning_rate": 3.993106666666667e-05, + "loss": 2.111918640136719, + "step": 151100 + }, + { + "epoch": 20.16, + "grad_norm": 0.43765124678611755, + "learning_rate": 3.9924466666666674e-05, + "loss": 2.1102365112304686, + "step": 151200 + }, + { + "epoch": 20.173333333333332, + "grad_norm": 0.4108990728855133, + "learning_rate": 3.99178e-05, + "loss": 2.1093389892578127, + "step": 151300 + }, + { + "epoch": 20.186666666666667, + "grad_norm": 0.44729962944984436, + "learning_rate": 3.991113333333333e-05, + "loss": 2.109452209472656, + "step": 151400 + }, + { + "epoch": 20.2, + "grad_norm": 0.44547468423843384, + "learning_rate": 3.990446666666667e-05, + "loss": 2.112231903076172, + "step": 151500 + }, + { + "epoch": 20.213333333333335, + "grad_norm": 0.41629984974861145, + "learning_rate": 3.98978e-05, + "loss": 2.113887939453125, + "step": 151600 + }, + { + "epoch": 20.226666666666667, + "grad_norm": 0.40394192934036255, + "learning_rate": 3.9891133333333335e-05, + "loss": 2.115534362792969, + "step": 151700 + }, + { + "epoch": 20.24, + "grad_norm": 0.44830042123794556, + "learning_rate": 3.988446666666667e-05, + "loss": 2.1146437072753907, + "step": 151800 + }, + { + "epoch": 20.253333333333334, + "grad_norm": 0.4912000596523285, + "learning_rate": 3.9877800000000006e-05, + "loss": 2.1153712463378906, + "step": 151900 + }, + { + "epoch": 20.266666666666666, + "grad_norm": 0.42249879240989685, + "learning_rate": 3.987113333333333e-05, + "loss": 2.115755615234375, + "step": 152000 + }, + { + "epoch": 20.28, + "grad_norm": 0.4368637204170227, + "learning_rate": 3.9864466666666664e-05, + "loss": 2.116807403564453, + "step": 152100 + }, + { + "epoch": 20.293333333333333, + "grad_norm": 0.4537985920906067, + "learning_rate": 3.98578e-05, + "loss": 2.1168971252441406, + "step": 152200 + }, + { + "epoch": 20.306666666666665, + "grad_norm": 0.4116325378417969, + "learning_rate": 3.9851133333333335e-05, + "loss": 2.1171247863769533, + "step": 152300 + }, + { + "epoch": 20.32, + "grad_norm": 0.4562799632549286, + "learning_rate": 3.984446666666667e-05, + "loss": 2.120128326416016, + "step": 152400 + }, + { + "epoch": 20.333333333333332, + "grad_norm": 0.48379048705101013, + "learning_rate": 3.98378e-05, + "loss": 2.1202543640136717, + "step": 152500 + }, + { + "epoch": 20.346666666666668, + "grad_norm": 0.4196086823940277, + "learning_rate": 3.983113333333334e-05, + "loss": 2.1200096130371096, + "step": 152600 + }, + { + "epoch": 20.36, + "grad_norm": 0.4291480481624603, + "learning_rate": 3.982446666666667e-05, + "loss": 2.1247039794921876, + "step": 152700 + }, + { + "epoch": 20.373333333333335, + "grad_norm": 0.435103178024292, + "learning_rate": 3.98178e-05, + "loss": 2.123348846435547, + "step": 152800 + }, + { + "epoch": 20.386666666666667, + "grad_norm": 0.4345220923423767, + "learning_rate": 3.9811133333333336e-05, + "loss": 2.1262147521972654, + "step": 152900 + }, + { + "epoch": 20.4, + "grad_norm": 0.4328380823135376, + "learning_rate": 3.980446666666667e-05, + "loss": 2.121066131591797, + "step": 153000 + }, + { + "epoch": 20.413333333333334, + "grad_norm": 0.4451119303703308, + "learning_rate": 3.97978e-05, + "loss": 2.1231698608398437, + "step": 153100 + }, + { + "epoch": 20.426666666666666, + "grad_norm": 0.4360395669937134, + "learning_rate": 3.979113333333333e-05, + "loss": 2.125181121826172, + "step": 153200 + }, + { + "epoch": 20.44, + "grad_norm": 0.4354141354560852, + "learning_rate": 3.978453333333333e-05, + "loss": 2.1249436950683593, + "step": 153300 + }, + { + "epoch": 20.453333333333333, + "grad_norm": 0.4377344250679016, + "learning_rate": 3.977786666666667e-05, + "loss": 2.1251399230957033, + "step": 153400 + }, + { + "epoch": 20.466666666666665, + "grad_norm": 0.4143160581588745, + "learning_rate": 3.97712e-05, + "loss": 2.128079681396484, + "step": 153500 + }, + { + "epoch": 20.48, + "grad_norm": 0.42408105731010437, + "learning_rate": 3.9764533333333335e-05, + "loss": 2.1228724670410157, + "step": 153600 + }, + { + "epoch": 20.493333333333332, + "grad_norm": 0.42520079016685486, + "learning_rate": 3.9757866666666674e-05, + "loss": 2.1246131896972655, + "step": 153700 + }, + { + "epoch": 20.506666666666668, + "grad_norm": 0.43026211857795715, + "learning_rate": 3.97512e-05, + "loss": 2.1264944458007813, + "step": 153800 + }, + { + "epoch": 20.52, + "grad_norm": 0.4304378628730774, + "learning_rate": 3.974453333333333e-05, + "loss": 2.128600616455078, + "step": 153900 + }, + { + "epoch": 20.533333333333335, + "grad_norm": 0.4374537765979767, + "learning_rate": 3.9737866666666664e-05, + "loss": 2.127030944824219, + "step": 154000 + }, + { + "epoch": 20.546666666666667, + "grad_norm": 0.42087990045547485, + "learning_rate": 3.9731200000000003e-05, + "loss": 2.127199859619141, + "step": 154100 + }, + { + "epoch": 20.56, + "grad_norm": 0.44808924198150635, + "learning_rate": 3.9724533333333336e-05, + "loss": 2.130141143798828, + "step": 154200 + }, + { + "epoch": 20.573333333333334, + "grad_norm": 0.4425102770328522, + "learning_rate": 3.971786666666667e-05, + "loss": 2.128837432861328, + "step": 154300 + }, + { + "epoch": 20.586666666666666, + "grad_norm": 0.4478192925453186, + "learning_rate": 3.971120000000001e-05, + "loss": 2.126686859130859, + "step": 154400 + }, + { + "epoch": 20.6, + "grad_norm": 0.40875598788261414, + "learning_rate": 3.970453333333333e-05, + "loss": 2.1303999328613283, + "step": 154500 + }, + { + "epoch": 20.613333333333333, + "grad_norm": 0.4193249046802521, + "learning_rate": 3.9697866666666665e-05, + "loss": 2.1299224853515626, + "step": 154600 + }, + { + "epoch": 20.626666666666665, + "grad_norm": 0.42445623874664307, + "learning_rate": 3.9691200000000004e-05, + "loss": 2.129607696533203, + "step": 154700 + }, + { + "epoch": 20.64, + "grad_norm": 0.42908674478530884, + "learning_rate": 3.9684533333333336e-05, + "loss": 2.13080322265625, + "step": 154800 + }, + { + "epoch": 20.653333333333332, + "grad_norm": 0.41622525453567505, + "learning_rate": 3.967786666666667e-05, + "loss": 2.1290174865722657, + "step": 154900 + }, + { + "epoch": 20.666666666666668, + "grad_norm": 0.4262298047542572, + "learning_rate": 3.96712e-05, + "loss": 2.1313914489746093, + "step": 155000 + }, + { + "epoch": 20.68, + "grad_norm": 0.4326687753200531, + "learning_rate": 3.966453333333334e-05, + "loss": 2.1320542907714843, + "step": 155100 + }, + { + "epoch": 20.693333333333335, + "grad_norm": 0.4377034902572632, + "learning_rate": 3.965786666666667e-05, + "loss": 2.1338987731933594, + "step": 155200 + }, + { + "epoch": 20.706666666666667, + "grad_norm": 0.41697245836257935, + "learning_rate": 3.965126666666667e-05, + "loss": 2.1323886108398438, + "step": 155300 + }, + { + "epoch": 20.72, + "grad_norm": 0.4141487777233124, + "learning_rate": 3.96446e-05, + "loss": 2.1330581665039063, + "step": 155400 + }, + { + "epoch": 20.733333333333334, + "grad_norm": 0.44619297981262207, + "learning_rate": 3.9637933333333336e-05, + "loss": 2.133800811767578, + "step": 155500 + }, + { + "epoch": 20.746666666666666, + "grad_norm": 0.4493109881877899, + "learning_rate": 3.963126666666667e-05, + "loss": 2.1314244079589844, + "step": 155600 + }, + { + "epoch": 20.76, + "grad_norm": 0.42815864086151123, + "learning_rate": 3.96246e-05, + "loss": 2.1383274841308593, + "step": 155700 + }, + { + "epoch": 20.773333333333333, + "grad_norm": 0.42495793104171753, + "learning_rate": 3.961793333333333e-05, + "loss": 2.134236602783203, + "step": 155800 + }, + { + "epoch": 20.786666666666665, + "grad_norm": 0.43157216906547546, + "learning_rate": 3.961126666666667e-05, + "loss": 2.1373394775390624, + "step": 155900 + }, + { + "epoch": 20.8, + "grad_norm": 0.4456236958503723, + "learning_rate": 3.9604600000000004e-05, + "loss": 2.13835693359375, + "step": 156000 + }, + { + "epoch": 20.813333333333333, + "grad_norm": 0.4253341853618622, + "learning_rate": 3.9597933333333336e-05, + "loss": 2.1404833984375, + "step": 156100 + }, + { + "epoch": 20.826666666666668, + "grad_norm": 0.4421469569206238, + "learning_rate": 3.959126666666667e-05, + "loss": 2.134762725830078, + "step": 156200 + }, + { + "epoch": 20.84, + "grad_norm": 0.4644703269004822, + "learning_rate": 3.95846e-05, + "loss": 2.1389283752441406, + "step": 156300 + }, + { + "epoch": 20.85333333333333, + "grad_norm": 0.4606155753135681, + "learning_rate": 3.957793333333333e-05, + "loss": 2.140909423828125, + "step": 156400 + }, + { + "epoch": 20.866666666666667, + "grad_norm": 0.4364932179450989, + "learning_rate": 3.9571266666666665e-05, + "loss": 2.1414125061035154, + "step": 156500 + }, + { + "epoch": 20.88, + "grad_norm": 0.41626495122909546, + "learning_rate": 3.9564600000000004e-05, + "loss": 2.139465789794922, + "step": 156600 + }, + { + "epoch": 20.893333333333334, + "grad_norm": 0.43859004974365234, + "learning_rate": 3.9557933333333336e-05, + "loss": 2.139771728515625, + "step": 156700 + }, + { + "epoch": 20.906666666666666, + "grad_norm": 0.41686686873435974, + "learning_rate": 3.955126666666667e-05, + "loss": 2.1382980346679688, + "step": 156800 + }, + { + "epoch": 20.92, + "grad_norm": 0.4283873438835144, + "learning_rate": 3.95446e-05, + "loss": 2.138336181640625, + "step": 156900 + }, + { + "epoch": 20.933333333333334, + "grad_norm": 0.433183878660202, + "learning_rate": 3.953793333333334e-05, + "loss": 2.1397128295898438, + "step": 157000 + }, + { + "epoch": 20.946666666666665, + "grad_norm": 0.4318670928478241, + "learning_rate": 3.9531266666666665e-05, + "loss": 2.1437940979003907, + "step": 157100 + }, + { + "epoch": 20.96, + "grad_norm": 0.40270859003067017, + "learning_rate": 3.95246e-05, + "loss": 2.14356689453125, + "step": 157200 + }, + { + "epoch": 20.973333333333333, + "grad_norm": 0.4244714379310608, + "learning_rate": 3.9518e-05, + "loss": 2.139528503417969, + "step": 157300 + }, + { + "epoch": 20.986666666666668, + "grad_norm": 0.45268091559410095, + "learning_rate": 3.9511333333333336e-05, + "loss": 2.145069427490234, + "step": 157400 + }, + { + "epoch": 21.0, + "grad_norm": 0.40507015585899353, + "learning_rate": 3.950466666666667e-05, + "loss": 2.143871154785156, + "step": 157500 + }, + { + "epoch": 21.013333333333332, + "grad_norm": 0.4375498592853546, + "learning_rate": 3.9498e-05, + "loss": 2.076609649658203, + "step": 157600 + }, + { + "epoch": 21.026666666666667, + "grad_norm": 0.4368535876274109, + "learning_rate": 3.949133333333333e-05, + "loss": 2.081154022216797, + "step": 157700 + }, + { + "epoch": 21.04, + "grad_norm": 0.4447578489780426, + "learning_rate": 3.948466666666667e-05, + "loss": 2.080892333984375, + "step": 157800 + }, + { + "epoch": 21.053333333333335, + "grad_norm": 0.46905946731567383, + "learning_rate": 3.9478000000000004e-05, + "loss": 2.082366485595703, + "step": 157900 + }, + { + "epoch": 21.066666666666666, + "grad_norm": 0.4563233554363251, + "learning_rate": 3.9471333333333336e-05, + "loss": 2.081029815673828, + "step": 158000 + }, + { + "epoch": 21.08, + "grad_norm": 0.442941278219223, + "learning_rate": 3.946466666666667e-05, + "loss": 2.079813690185547, + "step": 158100 + }, + { + "epoch": 21.093333333333334, + "grad_norm": 0.44517138600349426, + "learning_rate": 3.9458e-05, + "loss": 2.0806849670410155, + "step": 158200 + }, + { + "epoch": 21.106666666666666, + "grad_norm": 0.4202803075313568, + "learning_rate": 3.945133333333333e-05, + "loss": 2.0857112121582033, + "step": 158300 + }, + { + "epoch": 21.12, + "grad_norm": 0.443814218044281, + "learning_rate": 3.944466666666667e-05, + "loss": 2.0827932739257813, + "step": 158400 + }, + { + "epoch": 21.133333333333333, + "grad_norm": 0.4491780698299408, + "learning_rate": 3.9438000000000004e-05, + "loss": 2.0842088317871093, + "step": 158500 + }, + { + "epoch": 21.14666666666667, + "grad_norm": 0.45883890986442566, + "learning_rate": 3.9431333333333337e-05, + "loss": 2.086201019287109, + "step": 158600 + }, + { + "epoch": 21.16, + "grad_norm": 0.4523576498031616, + "learning_rate": 3.942466666666667e-05, + "loss": 2.088128967285156, + "step": 158700 + }, + { + "epoch": 21.173333333333332, + "grad_norm": 0.44423168897628784, + "learning_rate": 3.9418e-05, + "loss": 2.0868064880371096, + "step": 158800 + }, + { + "epoch": 21.186666666666667, + "grad_norm": 0.43601688742637634, + "learning_rate": 3.941133333333333e-05, + "loss": 2.089644470214844, + "step": 158900 + }, + { + "epoch": 21.2, + "grad_norm": 0.46989673376083374, + "learning_rate": 3.9404666666666666e-05, + "loss": 2.093050231933594, + "step": 159000 + }, + { + "epoch": 21.213333333333335, + "grad_norm": 0.43255218863487244, + "learning_rate": 3.9398000000000005e-05, + "loss": 2.0879270935058596, + "step": 159100 + }, + { + "epoch": 21.226666666666667, + "grad_norm": 0.49605920910835266, + "learning_rate": 3.939133333333334e-05, + "loss": 2.0937208557128906, + "step": 159200 + }, + { + "epoch": 21.24, + "grad_norm": 0.45772337913513184, + "learning_rate": 3.9384733333333336e-05, + "loss": 2.088824462890625, + "step": 159300 + }, + { + "epoch": 21.253333333333334, + "grad_norm": 0.47145646810531616, + "learning_rate": 3.937806666666667e-05, + "loss": 2.093097839355469, + "step": 159400 + }, + { + "epoch": 21.266666666666666, + "grad_norm": 0.4515535235404968, + "learning_rate": 3.93714e-05, + "loss": 2.0927359008789064, + "step": 159500 + }, + { + "epoch": 21.28, + "grad_norm": 0.4473794102668762, + "learning_rate": 3.936473333333334e-05, + "loss": 2.09676513671875, + "step": 159600 + }, + { + "epoch": 21.293333333333333, + "grad_norm": 0.4367310106754303, + "learning_rate": 3.935806666666667e-05, + "loss": 2.101490173339844, + "step": 159700 + }, + { + "epoch": 21.306666666666665, + "grad_norm": 0.4792206585407257, + "learning_rate": 3.93514e-05, + "loss": 2.0952803039550782, + "step": 159800 + }, + { + "epoch": 21.32, + "grad_norm": 0.47740694880485535, + "learning_rate": 3.9344733333333336e-05, + "loss": 2.095529022216797, + "step": 159900 + }, + { + "epoch": 21.333333333333332, + "grad_norm": 0.4495086371898651, + "learning_rate": 3.933806666666667e-05, + "loss": 2.0941035461425783, + "step": 160000 + }, + { + "epoch": 21.346666666666668, + "grad_norm": 0.45994919538497925, + "learning_rate": 3.93314e-05, + "loss": 2.097761993408203, + "step": 160100 + }, + { + "epoch": 21.36, + "grad_norm": 0.45980381965637207, + "learning_rate": 3.932473333333333e-05, + "loss": 2.103887634277344, + "step": 160200 + }, + { + "epoch": 21.373333333333335, + "grad_norm": 0.4462270438671112, + "learning_rate": 3.931806666666667e-05, + "loss": 2.1018940734863283, + "step": 160300 + }, + { + "epoch": 21.386666666666667, + "grad_norm": 0.44747424125671387, + "learning_rate": 3.9311400000000004e-05, + "loss": 2.100036163330078, + "step": 160400 + }, + { + "epoch": 21.4, + "grad_norm": 0.45789986848831177, + "learning_rate": 3.930473333333334e-05, + "loss": 2.097904052734375, + "step": 160500 + }, + { + "epoch": 21.413333333333334, + "grad_norm": 0.4360867440700531, + "learning_rate": 3.929806666666667e-05, + "loss": 2.100706787109375, + "step": 160600 + }, + { + "epoch": 21.426666666666666, + "grad_norm": 0.4504407048225403, + "learning_rate": 3.92914e-05, + "loss": 2.1013177490234374, + "step": 160700 + }, + { + "epoch": 21.44, + "grad_norm": 0.44968169927597046, + "learning_rate": 3.9284733333333334e-05, + "loss": 2.1003431701660156, + "step": 160800 + }, + { + "epoch": 21.453333333333333, + "grad_norm": 0.4681168794631958, + "learning_rate": 3.9278066666666666e-05, + "loss": 2.100907440185547, + "step": 160900 + }, + { + "epoch": 21.466666666666665, + "grad_norm": 0.4619245231151581, + "learning_rate": 3.9271400000000005e-05, + "loss": 2.103074035644531, + "step": 161000 + }, + { + "epoch": 21.48, + "grad_norm": 0.46537071466445923, + "learning_rate": 3.926473333333334e-05, + "loss": 2.1030101013183593, + "step": 161100 + }, + { + "epoch": 21.493333333333332, + "grad_norm": 0.44652751088142395, + "learning_rate": 3.925806666666667e-05, + "loss": 2.1046063232421877, + "step": 161200 + }, + { + "epoch": 21.506666666666668, + "grad_norm": 0.4665990173816681, + "learning_rate": 3.925146666666667e-05, + "loss": 2.103731842041016, + "step": 161300 + }, + { + "epoch": 21.52, + "grad_norm": 0.4317059814929962, + "learning_rate": 3.92448e-05, + "loss": 2.1036187744140626, + "step": 161400 + }, + { + "epoch": 21.533333333333335, + "grad_norm": 0.435001015663147, + "learning_rate": 3.923813333333334e-05, + "loss": 2.1071646118164065, + "step": 161500 + }, + { + "epoch": 21.546666666666667, + "grad_norm": 0.453155517578125, + "learning_rate": 3.9231466666666665e-05, + "loss": 2.104129638671875, + "step": 161600 + }, + { + "epoch": 21.56, + "grad_norm": 0.4656548798084259, + "learning_rate": 3.92248e-05, + "loss": 2.1059341430664062, + "step": 161700 + }, + { + "epoch": 21.573333333333334, + "grad_norm": 0.4497198164463043, + "learning_rate": 3.9218133333333337e-05, + "loss": 2.107401885986328, + "step": 161800 + }, + { + "epoch": 21.586666666666666, + "grad_norm": 0.45339301228523254, + "learning_rate": 3.921146666666667e-05, + "loss": 2.107149658203125, + "step": 161900 + }, + { + "epoch": 21.6, + "grad_norm": 0.46817344427108765, + "learning_rate": 3.92048e-05, + "loss": 2.1110685729980467, + "step": 162000 + }, + { + "epoch": 21.613333333333333, + "grad_norm": 0.4366016983985901, + "learning_rate": 3.9198133333333333e-05, + "loss": 2.1120893859863283, + "step": 162100 + }, + { + "epoch": 21.626666666666665, + "grad_norm": 0.4366924464702606, + "learning_rate": 3.919146666666667e-05, + "loss": 2.108365173339844, + "step": 162200 + }, + { + "epoch": 21.64, + "grad_norm": 0.4303394556045532, + "learning_rate": 3.91848e-05, + "loss": 2.1109800720214844, + "step": 162300 + }, + { + "epoch": 21.653333333333332, + "grad_norm": 0.4512556791305542, + "learning_rate": 3.917813333333333e-05, + "loss": 2.1110675048828127, + "step": 162400 + }, + { + "epoch": 21.666666666666668, + "grad_norm": 0.4542624056339264, + "learning_rate": 3.917146666666667e-05, + "loss": 2.1098895263671875, + "step": 162500 + }, + { + "epoch": 21.68, + "grad_norm": 0.4364491403102875, + "learning_rate": 3.91648e-05, + "loss": 2.1100592041015624, + "step": 162600 + }, + { + "epoch": 21.693333333333335, + "grad_norm": 0.4367804229259491, + "learning_rate": 3.9158133333333334e-05, + "loss": 2.111675109863281, + "step": 162700 + }, + { + "epoch": 21.706666666666667, + "grad_norm": 0.4421547055244446, + "learning_rate": 3.915146666666667e-05, + "loss": 2.113012390136719, + "step": 162800 + }, + { + "epoch": 21.72, + "grad_norm": 0.4768464267253876, + "learning_rate": 3.9144800000000005e-05, + "loss": 2.112431945800781, + "step": 162900 + }, + { + "epoch": 21.733333333333334, + "grad_norm": 0.470196008682251, + "learning_rate": 3.913813333333334e-05, + "loss": 2.115672760009766, + "step": 163000 + }, + { + "epoch": 21.746666666666666, + "grad_norm": 0.45648738741874695, + "learning_rate": 3.913146666666667e-05, + "loss": 2.113785858154297, + "step": 163100 + }, + { + "epoch": 21.76, + "grad_norm": 0.43980491161346436, + "learning_rate": 3.91248e-05, + "loss": 2.1120240783691404, + "step": 163200 + }, + { + "epoch": 21.773333333333333, + "grad_norm": 0.4451877772808075, + "learning_rate": 3.91182e-05, + "loss": 2.1176910400390625, + "step": 163300 + }, + { + "epoch": 21.786666666666665, + "grad_norm": 0.4444795250892639, + "learning_rate": 3.911153333333333e-05, + "loss": 2.1153562927246092, + "step": 163400 + }, + { + "epoch": 21.8, + "grad_norm": 0.45172980427742004, + "learning_rate": 3.9104866666666666e-05, + "loss": 2.1131268310546876, + "step": 163500 + }, + { + "epoch": 21.813333333333333, + "grad_norm": 0.44000083208084106, + "learning_rate": 3.9098200000000005e-05, + "loss": 2.1168165588378907, + "step": 163600 + }, + { + "epoch": 21.826666666666668, + "grad_norm": 0.43779900670051575, + "learning_rate": 3.909153333333334e-05, + "loss": 2.117685546875, + "step": 163700 + }, + { + "epoch": 21.84, + "grad_norm": 0.4511207640171051, + "learning_rate": 3.908486666666667e-05, + "loss": 2.1206480407714845, + "step": 163800 + }, + { + "epoch": 21.85333333333333, + "grad_norm": 0.44668668508529663, + "learning_rate": 3.90782e-05, + "loss": 2.1188619995117186, + "step": 163900 + }, + { + "epoch": 21.866666666666667, + "grad_norm": 0.4455656409263611, + "learning_rate": 3.907153333333334e-05, + "loss": 2.1155546569824217, + "step": 164000 + }, + { + "epoch": 21.88, + "grad_norm": 0.4516298770904541, + "learning_rate": 3.9064866666666666e-05, + "loss": 2.1179278564453123, + "step": 164100 + }, + { + "epoch": 21.893333333333334, + "grad_norm": 0.46956104040145874, + "learning_rate": 3.90582e-05, + "loss": 2.1160130310058594, + "step": 164200 + }, + { + "epoch": 21.906666666666666, + "grad_norm": 0.449705570936203, + "learning_rate": 3.905153333333334e-05, + "loss": 2.117757568359375, + "step": 164300 + }, + { + "epoch": 21.92, + "grad_norm": 0.4311459958553314, + "learning_rate": 3.904486666666667e-05, + "loss": 2.1182154846191406, + "step": 164400 + }, + { + "epoch": 21.933333333333334, + "grad_norm": 0.45638683438301086, + "learning_rate": 3.90382e-05, + "loss": 2.118441925048828, + "step": 164500 + }, + { + "epoch": 21.946666666666665, + "grad_norm": 0.4434240758419037, + "learning_rate": 3.9031533333333334e-05, + "loss": 2.1223045349121095, + "step": 164600 + }, + { + "epoch": 21.96, + "grad_norm": 0.46672335267066956, + "learning_rate": 3.902486666666667e-05, + "loss": 2.1176348876953126, + "step": 164700 + }, + { + "epoch": 21.973333333333333, + "grad_norm": 0.4445401430130005, + "learning_rate": 3.90182e-05, + "loss": 2.1194577026367187, + "step": 164800 + }, + { + "epoch": 21.986666666666668, + "grad_norm": 0.4556116461753845, + "learning_rate": 3.901153333333333e-05, + "loss": 2.124223175048828, + "step": 164900 + }, + { + "epoch": 22.0, + "grad_norm": 0.46571463346481323, + "learning_rate": 3.900486666666667e-05, + "loss": 2.123155517578125, + "step": 165000 + }, + { + "epoch": 22.013333333333332, + "grad_norm": 0.4723842740058899, + "learning_rate": 3.89982e-05, + "loss": 2.052652130126953, + "step": 165100 + }, + { + "epoch": 22.026666666666667, + "grad_norm": 0.4425469636917114, + "learning_rate": 3.8991533333333334e-05, + "loss": 2.052018890380859, + "step": 165200 + }, + { + "epoch": 22.04, + "grad_norm": 0.47095298767089844, + "learning_rate": 3.8984933333333333e-05, + "loss": 2.055422058105469, + "step": 165300 + }, + { + "epoch": 22.053333333333335, + "grad_norm": 0.46141520142555237, + "learning_rate": 3.8978266666666666e-05, + "loss": 2.0570689392089845, + "step": 165400 + }, + { + "epoch": 22.066666666666666, + "grad_norm": 0.471127450466156, + "learning_rate": 3.8971600000000005e-05, + "loss": 2.058157958984375, + "step": 165500 + }, + { + "epoch": 22.08, + "grad_norm": 0.48794686794281006, + "learning_rate": 3.896493333333334e-05, + "loss": 2.0558770751953124, + "step": 165600 + }, + { + "epoch": 22.093333333333334, + "grad_norm": 0.4672645926475525, + "learning_rate": 3.895826666666667e-05, + "loss": 2.061310272216797, + "step": 165700 + }, + { + "epoch": 22.106666666666666, + "grad_norm": 0.4862455427646637, + "learning_rate": 3.89516e-05, + "loss": 2.0606340026855468, + "step": 165800 + }, + { + "epoch": 22.12, + "grad_norm": 0.4853212833404541, + "learning_rate": 3.8944933333333334e-05, + "loss": 2.061323699951172, + "step": 165900 + }, + { + "epoch": 22.133333333333333, + "grad_norm": 0.4732306897640228, + "learning_rate": 3.8938266666666666e-05, + "loss": 2.0635455322265623, + "step": 166000 + }, + { + "epoch": 22.14666666666667, + "grad_norm": 0.4706946611404419, + "learning_rate": 3.89316e-05, + "loss": 2.063304595947266, + "step": 166100 + }, + { + "epoch": 22.16, + "grad_norm": 0.47907590866088867, + "learning_rate": 3.892493333333334e-05, + "loss": 2.063959503173828, + "step": 166200 + }, + { + "epoch": 22.173333333333332, + "grad_norm": 0.4727233946323395, + "learning_rate": 3.891826666666667e-05, + "loss": 2.0665432739257814, + "step": 166300 + }, + { + "epoch": 22.186666666666667, + "grad_norm": 0.450941264629364, + "learning_rate": 3.89116e-05, + "loss": 2.069130706787109, + "step": 166400 + }, + { + "epoch": 22.2, + "grad_norm": 0.4796398878097534, + "learning_rate": 3.890493333333334e-05, + "loss": 2.066522521972656, + "step": 166500 + }, + { + "epoch": 22.213333333333335, + "grad_norm": 0.44986021518707275, + "learning_rate": 3.8898266666666667e-05, + "loss": 2.068634033203125, + "step": 166600 + }, + { + "epoch": 22.226666666666667, + "grad_norm": 0.4744917154312134, + "learning_rate": 3.88916e-05, + "loss": 2.071067047119141, + "step": 166700 + }, + { + "epoch": 22.24, + "grad_norm": 0.4827626943588257, + "learning_rate": 3.888493333333333e-05, + "loss": 2.0700621032714843, + "step": 166800 + }, + { + "epoch": 22.253333333333334, + "grad_norm": 0.46759262681007385, + "learning_rate": 3.887826666666667e-05, + "loss": 2.0715043640136717, + "step": 166900 + }, + { + "epoch": 22.266666666666666, + "grad_norm": 0.4774859845638275, + "learning_rate": 3.88716e-05, + "loss": 2.071572113037109, + "step": 167000 + }, + { + "epoch": 22.28, + "grad_norm": 0.46241122484207153, + "learning_rate": 3.8864933333333335e-05, + "loss": 2.070568389892578, + "step": 167100 + }, + { + "epoch": 22.293333333333333, + "grad_norm": 0.46631354093551636, + "learning_rate": 3.8858266666666674e-05, + "loss": 2.067816162109375, + "step": 167200 + }, + { + "epoch": 22.306666666666665, + "grad_norm": 0.4631997346878052, + "learning_rate": 3.885166666666667e-05, + "loss": 2.06839599609375, + "step": 167300 + }, + { + "epoch": 22.32, + "grad_norm": 0.4765164852142334, + "learning_rate": 3.8845000000000005e-05, + "loss": 2.075525665283203, + "step": 167400 + }, + { + "epoch": 22.333333333333332, + "grad_norm": 0.4727115035057068, + "learning_rate": 3.883833333333334e-05, + "loss": 2.07642822265625, + "step": 167500 + }, + { + "epoch": 22.346666666666668, + "grad_norm": 0.455098956823349, + "learning_rate": 3.883166666666667e-05, + "loss": 2.078255157470703, + "step": 167600 + }, + { + "epoch": 22.36, + "grad_norm": 0.49284619092941284, + "learning_rate": 3.8825e-05, + "loss": 2.0744464111328127, + "step": 167700 + }, + { + "epoch": 22.373333333333335, + "grad_norm": 0.4699040651321411, + "learning_rate": 3.8818333333333334e-05, + "loss": 2.0767945861816406, + "step": 167800 + }, + { + "epoch": 22.386666666666667, + "grad_norm": 0.45493465662002563, + "learning_rate": 3.8811666666666666e-05, + "loss": 2.0780029296875, + "step": 167900 + }, + { + "epoch": 22.4, + "grad_norm": 0.4484899938106537, + "learning_rate": 3.8805000000000005e-05, + "loss": 2.080047302246094, + "step": 168000 + }, + { + "epoch": 22.413333333333334, + "grad_norm": 0.47381719946861267, + "learning_rate": 3.879833333333334e-05, + "loss": 2.077555694580078, + "step": 168100 + }, + { + "epoch": 22.426666666666666, + "grad_norm": 0.46231788396835327, + "learning_rate": 3.879166666666667e-05, + "loss": 2.079783172607422, + "step": 168200 + }, + { + "epoch": 22.44, + "grad_norm": 0.47428375482559204, + "learning_rate": 3.8785e-05, + "loss": 2.0778314208984376, + "step": 168300 + }, + { + "epoch": 22.453333333333333, + "grad_norm": 0.4597417116165161, + "learning_rate": 3.8778333333333334e-05, + "loss": 2.0790553283691406, + "step": 168400 + }, + { + "epoch": 22.466666666666665, + "grad_norm": 0.4623263478279114, + "learning_rate": 3.877166666666667e-05, + "loss": 2.0836700439453124, + "step": 168500 + }, + { + "epoch": 22.48, + "grad_norm": 0.4659540355205536, + "learning_rate": 3.8765e-05, + "loss": 2.0827793884277344, + "step": 168600 + }, + { + "epoch": 22.493333333333332, + "grad_norm": 0.47923794388771057, + "learning_rate": 3.875833333333334e-05, + "loss": 2.080955810546875, + "step": 168700 + }, + { + "epoch": 22.506666666666668, + "grad_norm": 0.4475663900375366, + "learning_rate": 3.875166666666667e-05, + "loss": 2.0815643310546874, + "step": 168800 + }, + { + "epoch": 22.52, + "grad_norm": 0.4618177115917206, + "learning_rate": 3.8745e-05, + "loss": 2.086231689453125, + "step": 168900 + }, + { + "epoch": 22.533333333333335, + "grad_norm": 0.4708126187324524, + "learning_rate": 3.8738333333333335e-05, + "loss": 2.080514373779297, + "step": 169000 + }, + { + "epoch": 22.546666666666667, + "grad_norm": 0.49023526906967163, + "learning_rate": 3.873166666666667e-05, + "loss": 2.084552001953125, + "step": 169100 + }, + { + "epoch": 22.56, + "grad_norm": 0.48341864347457886, + "learning_rate": 3.8725e-05, + "loss": 2.083937530517578, + "step": 169200 + }, + { + "epoch": 22.573333333333334, + "grad_norm": 0.4568435251712799, + "learning_rate": 3.87184e-05, + "loss": 2.0851905822753904, + "step": 169300 + }, + { + "epoch": 22.586666666666666, + "grad_norm": 0.46612024307250977, + "learning_rate": 3.871173333333333e-05, + "loss": 2.084072265625, + "step": 169400 + }, + { + "epoch": 22.6, + "grad_norm": 0.4634513258934021, + "learning_rate": 3.870506666666667e-05, + "loss": 2.0853956604003905, + "step": 169500 + }, + { + "epoch": 22.613333333333333, + "grad_norm": 0.46668726205825806, + "learning_rate": 3.86984e-05, + "loss": 2.084056854248047, + "step": 169600 + }, + { + "epoch": 22.626666666666665, + "grad_norm": 0.4836789667606354, + "learning_rate": 3.8691733333333334e-05, + "loss": 2.0863687133789064, + "step": 169700 + }, + { + "epoch": 22.64, + "grad_norm": 0.48101136088371277, + "learning_rate": 3.8685066666666667e-05, + "loss": 2.0898916625976565, + "step": 169800 + }, + { + "epoch": 22.653333333333332, + "grad_norm": 0.4785110652446747, + "learning_rate": 3.8678400000000006e-05, + "loss": 2.088622589111328, + "step": 169900 + }, + { + "epoch": 22.666666666666668, + "grad_norm": 0.4937325716018677, + "learning_rate": 3.867173333333334e-05, + "loss": 2.0871990966796874, + "step": 170000 + }, + { + "epoch": 22.68, + "grad_norm": 0.5297033786773682, + "learning_rate": 3.866506666666666e-05, + "loss": 2.09009033203125, + "step": 170100 + }, + { + "epoch": 22.693333333333335, + "grad_norm": 0.4711852967739105, + "learning_rate": 3.86584e-05, + "loss": 2.089188690185547, + "step": 170200 + }, + { + "epoch": 22.706666666666667, + "grad_norm": 0.5121586322784424, + "learning_rate": 3.8651733333333335e-05, + "loss": 2.0879640197753906, + "step": 170300 + }, + { + "epoch": 22.72, + "grad_norm": 0.4589405953884125, + "learning_rate": 3.864506666666667e-05, + "loss": 2.088956298828125, + "step": 170400 + }, + { + "epoch": 22.733333333333334, + "grad_norm": 0.4850880205631256, + "learning_rate": 3.86384e-05, + "loss": 2.090540466308594, + "step": 170500 + }, + { + "epoch": 22.746666666666666, + "grad_norm": 0.47406673431396484, + "learning_rate": 3.863173333333334e-05, + "loss": 2.090264892578125, + "step": 170600 + }, + { + "epoch": 22.76, + "grad_norm": 0.45255404710769653, + "learning_rate": 3.862506666666667e-05, + "loss": 2.0918638610839846, + "step": 170700 + }, + { + "epoch": 22.773333333333333, + "grad_norm": 0.5285037159919739, + "learning_rate": 3.86184e-05, + "loss": 2.0930937194824217, + "step": 170800 + }, + { + "epoch": 22.786666666666665, + "grad_norm": 0.45995503664016724, + "learning_rate": 3.8611733333333335e-05, + "loss": 2.0932025146484374, + "step": 170900 + }, + { + "epoch": 22.8, + "grad_norm": 0.4696432054042816, + "learning_rate": 3.860506666666667e-05, + "loss": 2.0916217041015623, + "step": 171000 + }, + { + "epoch": 22.813333333333333, + "grad_norm": 0.4758760929107666, + "learning_rate": 3.85984e-05, + "loss": 2.0916656494140624, + "step": 171100 + }, + { + "epoch": 22.826666666666668, + "grad_norm": 0.4615608751773834, + "learning_rate": 3.859173333333334e-05, + "loss": 2.0914183044433594, + "step": 171200 + }, + { + "epoch": 22.84, + "grad_norm": 0.4628288149833679, + "learning_rate": 3.858513333333333e-05, + "loss": 2.0931082153320313, + "step": 171300 + }, + { + "epoch": 22.85333333333333, + "grad_norm": 0.47100356221199036, + "learning_rate": 3.857846666666667e-05, + "loss": 2.0922206115722655, + "step": 171400 + }, + { + "epoch": 22.866666666666667, + "grad_norm": 0.4577377736568451, + "learning_rate": 3.85718e-05, + "loss": 2.094632263183594, + "step": 171500 + }, + { + "epoch": 22.88, + "grad_norm": 0.4824475944042206, + "learning_rate": 3.8565133333333335e-05, + "loss": 2.0955517578125, + "step": 171600 + }, + { + "epoch": 22.893333333333334, + "grad_norm": 0.46944087743759155, + "learning_rate": 3.8558466666666674e-05, + "loss": 2.0956381225585936, + "step": 171700 + }, + { + "epoch": 22.906666666666666, + "grad_norm": 0.4713914692401886, + "learning_rate": 3.8551800000000006e-05, + "loss": 2.0936820983886717, + "step": 171800 + }, + { + "epoch": 22.92, + "grad_norm": 0.4607670307159424, + "learning_rate": 3.854513333333333e-05, + "loss": 2.093219757080078, + "step": 171900 + }, + { + "epoch": 22.933333333333334, + "grad_norm": 0.46481382846832275, + "learning_rate": 3.853846666666667e-05, + "loss": 2.0938676452636718, + "step": 172000 + }, + { + "epoch": 22.946666666666665, + "grad_norm": 0.46048957109451294, + "learning_rate": 3.85318e-05, + "loss": 2.0956375122070314, + "step": 172100 + }, + { + "epoch": 22.96, + "grad_norm": 0.4736049771308899, + "learning_rate": 3.8525133333333335e-05, + "loss": 2.1002877807617186, + "step": 172200 + }, + { + "epoch": 22.973333333333333, + "grad_norm": 0.4825821816921234, + "learning_rate": 3.851846666666667e-05, + "loss": 2.0992372131347654, + "step": 172300 + }, + { + "epoch": 22.986666666666668, + "grad_norm": 0.4482329785823822, + "learning_rate": 3.8511800000000006e-05, + "loss": 2.100669708251953, + "step": 172400 + }, + { + "epoch": 23.0, + "grad_norm": 0.477242648601532, + "learning_rate": 3.850513333333334e-05, + "loss": 2.098603057861328, + "step": 172500 + }, + { + "epoch": 23.013333333333332, + "grad_norm": 0.49231958389282227, + "learning_rate": 3.8498466666666664e-05, + "loss": 2.028154296875, + "step": 172600 + }, + { + "epoch": 23.026666666666667, + "grad_norm": 0.4812023937702179, + "learning_rate": 3.84918e-05, + "loss": 2.0299658203125, + "step": 172700 + }, + { + "epoch": 23.04, + "grad_norm": 0.4930895268917084, + "learning_rate": 3.8485133333333335e-05, + "loss": 2.031252746582031, + "step": 172800 + }, + { + "epoch": 23.053333333333335, + "grad_norm": 0.48605743050575256, + "learning_rate": 3.847846666666667e-05, + "loss": 2.0349273681640625, + "step": 172900 + }, + { + "epoch": 23.066666666666666, + "grad_norm": 0.4839179813861847, + "learning_rate": 3.84718e-05, + "loss": 2.031682891845703, + "step": 173000 + }, + { + "epoch": 23.08, + "grad_norm": 0.5092812180519104, + "learning_rate": 3.846513333333334e-05, + "loss": 2.033275451660156, + "step": 173100 + }, + { + "epoch": 23.093333333333334, + "grad_norm": 0.4731476604938507, + "learning_rate": 3.845853333333334e-05, + "loss": 2.0364311218261717, + "step": 173200 + }, + { + "epoch": 23.106666666666666, + "grad_norm": 0.5190111398696899, + "learning_rate": 3.845186666666667e-05, + "loss": 2.0340025329589846, + "step": 173300 + }, + { + "epoch": 23.12, + "grad_norm": 0.48105064034461975, + "learning_rate": 3.84452e-05, + "loss": 2.037009582519531, + "step": 173400 + }, + { + "epoch": 23.133333333333333, + "grad_norm": 0.52114337682724, + "learning_rate": 3.8438533333333335e-05, + "loss": 2.0407159423828123, + "step": 173500 + }, + { + "epoch": 23.14666666666667, + "grad_norm": 0.4885977804660797, + "learning_rate": 3.843186666666667e-05, + "loss": 2.03779541015625, + "step": 173600 + }, + { + "epoch": 23.16, + "grad_norm": 0.48264557123184204, + "learning_rate": 3.84252e-05, + "loss": 2.0406539916992186, + "step": 173700 + }, + { + "epoch": 23.173333333333332, + "grad_norm": 0.4905865490436554, + "learning_rate": 3.841853333333333e-05, + "loss": 2.0425653076171875, + "step": 173800 + }, + { + "epoch": 23.186666666666667, + "grad_norm": 0.5025938749313354, + "learning_rate": 3.841186666666667e-05, + "loss": 2.0424517822265624, + "step": 173900 + }, + { + "epoch": 23.2, + "grad_norm": 0.4712689220905304, + "learning_rate": 3.84052e-05, + "loss": 2.0432838439941405, + "step": 174000 + }, + { + "epoch": 23.213333333333335, + "grad_norm": 0.48581528663635254, + "learning_rate": 3.8398533333333335e-05, + "loss": 2.0483238220214846, + "step": 174100 + }, + { + "epoch": 23.226666666666667, + "grad_norm": 0.4895326793193817, + "learning_rate": 3.839186666666667e-05, + "loss": 2.0430706787109374, + "step": 174200 + }, + { + "epoch": 23.24, + "grad_norm": 0.48464319109916687, + "learning_rate": 3.8385200000000006e-05, + "loss": 2.041295623779297, + "step": 174300 + }, + { + "epoch": 23.253333333333334, + "grad_norm": 0.47198572754859924, + "learning_rate": 3.837853333333333e-05, + "loss": 2.046827850341797, + "step": 174400 + }, + { + "epoch": 23.266666666666666, + "grad_norm": 0.5147217512130737, + "learning_rate": 3.8371866666666664e-05, + "loss": 2.04611572265625, + "step": 174500 + }, + { + "epoch": 23.28, + "grad_norm": 0.597183108329773, + "learning_rate": 3.83652e-05, + "loss": 2.0490652465820314, + "step": 174600 + }, + { + "epoch": 23.293333333333333, + "grad_norm": 0.4989413022994995, + "learning_rate": 3.8358533333333336e-05, + "loss": 2.0499391174316406, + "step": 174700 + }, + { + "epoch": 23.306666666666665, + "grad_norm": 0.48632174730300903, + "learning_rate": 3.835186666666667e-05, + "loss": 2.046672515869141, + "step": 174800 + }, + { + "epoch": 23.32, + "grad_norm": 0.5028402209281921, + "learning_rate": 3.83452e-05, + "loss": 2.05111572265625, + "step": 174900 + }, + { + "epoch": 23.333333333333332, + "grad_norm": 0.5091901421546936, + "learning_rate": 3.833853333333334e-05, + "loss": 2.051913299560547, + "step": 175000 + }, + { + "epoch": 23.346666666666668, + "grad_norm": 0.4841155409812927, + "learning_rate": 3.8331866666666665e-05, + "loss": 2.051449737548828, + "step": 175100 + }, + { + "epoch": 23.36, + "grad_norm": 0.4835347533226013, + "learning_rate": 3.83252e-05, + "loss": 2.050365295410156, + "step": 175200 + }, + { + "epoch": 23.373333333333335, + "grad_norm": 0.4950560927391052, + "learning_rate": 3.8318533333333336e-05, + "loss": 2.0553269958496094, + "step": 175300 + }, + { + "epoch": 23.386666666666667, + "grad_norm": 0.4722176492214203, + "learning_rate": 3.831186666666667e-05, + "loss": 2.049596862792969, + "step": 175400 + }, + { + "epoch": 23.4, + "grad_norm": 0.48539531230926514, + "learning_rate": 3.83052e-05, + "loss": 2.055406036376953, + "step": 175500 + }, + { + "epoch": 23.413333333333334, + "grad_norm": 0.49876898527145386, + "learning_rate": 3.829853333333334e-05, + "loss": 2.055661163330078, + "step": 175600 + }, + { + "epoch": 23.426666666666666, + "grad_norm": 0.48749157786369324, + "learning_rate": 3.829186666666667e-05, + "loss": 2.053136749267578, + "step": 175700 + }, + { + "epoch": 23.44, + "grad_norm": 0.49499818682670593, + "learning_rate": 3.8285200000000004e-05, + "loss": 2.049785614013672, + "step": 175800 + }, + { + "epoch": 23.453333333333333, + "grad_norm": 0.4992135465145111, + "learning_rate": 3.827853333333333e-05, + "loss": 2.0580978393554688, + "step": 175900 + }, + { + "epoch": 23.466666666666665, + "grad_norm": 0.5279852747917175, + "learning_rate": 3.827186666666667e-05, + "loss": 2.056828918457031, + "step": 176000 + }, + { + "epoch": 23.48, + "grad_norm": 0.4881434440612793, + "learning_rate": 3.82652e-05, + "loss": 2.057747039794922, + "step": 176100 + }, + { + "epoch": 23.493333333333332, + "grad_norm": 0.4738701283931732, + "learning_rate": 3.825853333333333e-05, + "loss": 2.0571058654785155, + "step": 176200 + }, + { + "epoch": 23.506666666666668, + "grad_norm": 0.5095720887184143, + "learning_rate": 3.825186666666667e-05, + "loss": 2.0584869384765625, + "step": 176300 + }, + { + "epoch": 23.52, + "grad_norm": 0.5219035148620605, + "learning_rate": 3.824526666666667e-05, + "loss": 2.0586363220214845, + "step": 176400 + }, + { + "epoch": 23.533333333333335, + "grad_norm": 0.47829073667526245, + "learning_rate": 3.8238600000000004e-05, + "loss": 2.0578681945800783, + "step": 176500 + }, + { + "epoch": 23.546666666666667, + "grad_norm": 0.4869665205478668, + "learning_rate": 3.8231933333333336e-05, + "loss": 2.0592056274414063, + "step": 176600 + }, + { + "epoch": 23.56, + "grad_norm": 0.5007086396217346, + "learning_rate": 3.822526666666667e-05, + "loss": 2.0624826049804685, + "step": 176700 + }, + { + "epoch": 23.573333333333334, + "grad_norm": 0.5046160221099854, + "learning_rate": 3.821860000000001e-05, + "loss": 2.057146453857422, + "step": 176800 + }, + { + "epoch": 23.586666666666666, + "grad_norm": 0.5090702772140503, + "learning_rate": 3.821193333333333e-05, + "loss": 2.060751647949219, + "step": 176900 + }, + { + "epoch": 23.6, + "grad_norm": 0.47376617789268494, + "learning_rate": 3.8205266666666665e-05, + "loss": 2.061948089599609, + "step": 177000 + }, + { + "epoch": 23.613333333333333, + "grad_norm": 0.5011287331581116, + "learning_rate": 3.8198600000000004e-05, + "loss": 2.0626011657714844, + "step": 177100 + }, + { + "epoch": 23.626666666666665, + "grad_norm": 0.47504308819770813, + "learning_rate": 3.8191933333333336e-05, + "loss": 2.062792205810547, + "step": 177200 + }, + { + "epoch": 23.64, + "grad_norm": 0.4749816358089447, + "learning_rate": 3.818526666666667e-05, + "loss": 2.063485412597656, + "step": 177300 + }, + { + "epoch": 23.653333333333332, + "grad_norm": 0.48922663927078247, + "learning_rate": 3.81786e-05, + "loss": 2.065717926025391, + "step": 177400 + }, + { + "epoch": 23.666666666666668, + "grad_norm": 0.5128903985023499, + "learning_rate": 3.817193333333334e-05, + "loss": 2.0668560791015627, + "step": 177500 + }, + { + "epoch": 23.68, + "grad_norm": 0.508452832698822, + "learning_rate": 3.8165266666666665e-05, + "loss": 2.0685348510742188, + "step": 177600 + }, + { + "epoch": 23.693333333333335, + "grad_norm": 0.5150190591812134, + "learning_rate": 3.81586e-05, + "loss": 2.0641282653808593, + "step": 177700 + }, + { + "epoch": 23.706666666666667, + "grad_norm": 0.4919812083244324, + "learning_rate": 3.8151933333333337e-05, + "loss": 2.066805725097656, + "step": 177800 + }, + { + "epoch": 23.72, + "grad_norm": 0.48557278513908386, + "learning_rate": 3.814526666666667e-05, + "loss": 2.066239013671875, + "step": 177900 + }, + { + "epoch": 23.733333333333334, + "grad_norm": 0.500818133354187, + "learning_rate": 3.81386e-05, + "loss": 2.0668170166015627, + "step": 178000 + }, + { + "epoch": 23.746666666666666, + "grad_norm": 0.5056354999542236, + "learning_rate": 3.813193333333333e-05, + "loss": 2.067618103027344, + "step": 178100 + }, + { + "epoch": 23.76, + "grad_norm": 0.4854942858219147, + "learning_rate": 3.812526666666667e-05, + "loss": 2.0688438415527344, + "step": 178200 + }, + { + "epoch": 23.773333333333333, + "grad_norm": 0.48774439096450806, + "learning_rate": 3.8118600000000005e-05, + "loss": 2.072354278564453, + "step": 178300 + }, + { + "epoch": 23.786666666666665, + "grad_norm": 0.4946364462375641, + "learning_rate": 3.811193333333333e-05, + "loss": 2.0678961181640627, + "step": 178400 + }, + { + "epoch": 23.8, + "grad_norm": 0.4886922240257263, + "learning_rate": 3.810526666666667e-05, + "loss": 2.0691818237304687, + "step": 178500 + }, + { + "epoch": 23.813333333333333, + "grad_norm": 0.5024255514144897, + "learning_rate": 3.80986e-05, + "loss": 2.072510223388672, + "step": 178600 + }, + { + "epoch": 23.826666666666668, + "grad_norm": 0.4981136620044708, + "learning_rate": 3.8091933333333334e-05, + "loss": 2.067329864501953, + "step": 178700 + }, + { + "epoch": 23.84, + "grad_norm": 0.48290660977363586, + "learning_rate": 3.8085266666666666e-05, + "loss": 2.0694883728027342, + "step": 178800 + }, + { + "epoch": 23.85333333333333, + "grad_norm": 0.49647679924964905, + "learning_rate": 3.8078600000000005e-05, + "loss": 2.068336639404297, + "step": 178900 + }, + { + "epoch": 23.866666666666667, + "grad_norm": 0.49168041348457336, + "learning_rate": 3.807193333333334e-05, + "loss": 2.0738255310058595, + "step": 179000 + }, + { + "epoch": 23.88, + "grad_norm": 0.49252060055732727, + "learning_rate": 3.806526666666666e-05, + "loss": 2.0729522705078125, + "step": 179100 + }, + { + "epoch": 23.893333333333334, + "grad_norm": 0.49251434206962585, + "learning_rate": 3.80586e-05, + "loss": 2.071816711425781, + "step": 179200 + }, + { + "epoch": 23.906666666666666, + "grad_norm": 0.506790280342102, + "learning_rate": 3.8051933333333334e-05, + "loss": 2.0729002380371093, + "step": 179300 + }, + { + "epoch": 23.92, + "grad_norm": 0.4773724377155304, + "learning_rate": 3.8045266666666666e-05, + "loss": 2.077678680419922, + "step": 179400 + }, + { + "epoch": 23.933333333333334, + "grad_norm": 0.5092328786849976, + "learning_rate": 3.80386e-05, + "loss": 2.07469482421875, + "step": 179500 + }, + { + "epoch": 23.946666666666665, + "grad_norm": 0.4978293776512146, + "learning_rate": 3.803193333333334e-05, + "loss": 2.07491455078125, + "step": 179600 + }, + { + "epoch": 23.96, + "grad_norm": 0.508801281452179, + "learning_rate": 3.802526666666667e-05, + "loss": 2.0768801879882814, + "step": 179700 + }, + { + "epoch": 23.973333333333333, + "grad_norm": 0.4916593134403229, + "learning_rate": 3.80186e-05, + "loss": 2.0758741760253905, + "step": 179800 + }, + { + "epoch": 23.986666666666668, + "grad_norm": 0.5212649703025818, + "learning_rate": 3.8011933333333334e-05, + "loss": 2.0771376037597657, + "step": 179900 + }, + { + "epoch": 24.0, + "grad_norm": 0.4899154007434845, + "learning_rate": 3.800526666666667e-05, + "loss": 2.076003112792969, + "step": 180000 + }, + { + "epoch": 24.013333333333332, + "grad_norm": 0.501743733882904, + "learning_rate": 3.7998666666666666e-05, + "loss": 2.003984069824219, + "step": 180100 + }, + { + "epoch": 24.026666666666667, + "grad_norm": 0.5196168422698975, + "learning_rate": 3.7992e-05, + "loss": 2.0016387939453124, + "step": 180200 + }, + { + "epoch": 24.04, + "grad_norm": 0.5263530015945435, + "learning_rate": 3.798533333333334e-05, + "loss": 2.0039300537109375, + "step": 180300 + }, + { + "epoch": 24.053333333333335, + "grad_norm": 0.4923747777938843, + "learning_rate": 3.797866666666667e-05, + "loss": 2.005165252685547, + "step": 180400 + }, + { + "epoch": 24.066666666666666, + "grad_norm": 0.5033460259437561, + "learning_rate": 3.7972e-05, + "loss": 2.006126708984375, + "step": 180500 + }, + { + "epoch": 24.08, + "grad_norm": 0.5112701058387756, + "learning_rate": 3.7965333333333334e-05, + "loss": 2.0073692321777346, + "step": 180600 + }, + { + "epoch": 24.093333333333334, + "grad_norm": 0.511628270149231, + "learning_rate": 3.795866666666667e-05, + "loss": 2.0070504760742187, + "step": 180700 + }, + { + "epoch": 24.106666666666666, + "grad_norm": 0.5259645581245422, + "learning_rate": 3.7952000000000005e-05, + "loss": 2.005118865966797, + "step": 180800 + }, + { + "epoch": 24.12, + "grad_norm": 0.48191338777542114, + "learning_rate": 3.794533333333333e-05, + "loss": 2.0112799072265624, + "step": 180900 + }, + { + "epoch": 24.133333333333333, + "grad_norm": 0.5414926409721375, + "learning_rate": 3.793866666666667e-05, + "loss": 2.0131875610351564, + "step": 181000 + }, + { + "epoch": 24.14666666666667, + "grad_norm": 0.5131890773773193, + "learning_rate": 3.7932e-05, + "loss": 2.0128208923339845, + "step": 181100 + }, + { + "epoch": 24.16, + "grad_norm": 0.486336350440979, + "learning_rate": 3.7925333333333334e-05, + "loss": 2.017211151123047, + "step": 181200 + }, + { + "epoch": 24.173333333333332, + "grad_norm": 0.49979206919670105, + "learning_rate": 3.7918666666666667e-05, + "loss": 2.013517150878906, + "step": 181300 + }, + { + "epoch": 24.186666666666667, + "grad_norm": 0.508499801158905, + "learning_rate": 3.7912000000000006e-05, + "loss": 2.0146775817871094, + "step": 181400 + }, + { + "epoch": 24.2, + "grad_norm": 0.5656309127807617, + "learning_rate": 3.790533333333334e-05, + "loss": 2.017547607421875, + "step": 181500 + }, + { + "epoch": 24.213333333333335, + "grad_norm": 0.5219641327857971, + "learning_rate": 3.789866666666667e-05, + "loss": 2.0210311889648436, + "step": 181600 + }, + { + "epoch": 24.226666666666667, + "grad_norm": 0.5194352269172668, + "learning_rate": 3.7892e-05, + "loss": 2.016371612548828, + "step": 181700 + }, + { + "epoch": 24.24, + "grad_norm": 0.5241196155548096, + "learning_rate": 3.7885333333333335e-05, + "loss": 2.022900390625, + "step": 181800 + }, + { + "epoch": 24.253333333333334, + "grad_norm": 0.48599502444267273, + "learning_rate": 3.787866666666667e-05, + "loss": 2.0237261962890627, + "step": 181900 + }, + { + "epoch": 24.266666666666666, + "grad_norm": 0.5147618055343628, + "learning_rate": 3.7872e-05, + "loss": 2.023406219482422, + "step": 182000 + }, + { + "epoch": 24.28, + "grad_norm": 0.5101783275604248, + "learning_rate": 3.786533333333334e-05, + "loss": 2.0179656982421874, + "step": 182100 + }, + { + "epoch": 24.293333333333333, + "grad_norm": 0.505097508430481, + "learning_rate": 3.785873333333334e-05, + "loss": 2.0241987609863283, + "step": 182200 + }, + { + "epoch": 24.306666666666665, + "grad_norm": 0.5323469638824463, + "learning_rate": 3.785206666666667e-05, + "loss": 2.0228041076660155, + "step": 182300 + }, + { + "epoch": 24.32, + "grad_norm": 0.5330120325088501, + "learning_rate": 3.78454e-05, + "loss": 2.0276548767089846, + "step": 182400 + }, + { + "epoch": 24.333333333333332, + "grad_norm": 0.5185723900794983, + "learning_rate": 3.7838733333333334e-05, + "loss": 2.027704772949219, + "step": 182500 + }, + { + "epoch": 24.346666666666668, + "grad_norm": 0.5001394152641296, + "learning_rate": 3.783206666666667e-05, + "loss": 2.028656463623047, + "step": 182600 + }, + { + "epoch": 24.36, + "grad_norm": 0.5111181139945984, + "learning_rate": 3.78254e-05, + "loss": 2.0222459411621094, + "step": 182700 + }, + { + "epoch": 24.373333333333335, + "grad_norm": 0.5283573865890503, + "learning_rate": 3.781873333333333e-05, + "loss": 2.025753631591797, + "step": 182800 + }, + { + "epoch": 24.386666666666667, + "grad_norm": 0.5587430000305176, + "learning_rate": 3.781206666666667e-05, + "loss": 2.0282719421386717, + "step": 182900 + }, + { + "epoch": 24.4, + "grad_norm": 0.5276029109954834, + "learning_rate": 3.78054e-05, + "loss": 2.0236598205566407, + "step": 183000 + }, + { + "epoch": 24.413333333333334, + "grad_norm": 0.517819881439209, + "learning_rate": 3.7798733333333335e-05, + "loss": 2.0305661010742186, + "step": 183100 + }, + { + "epoch": 24.426666666666666, + "grad_norm": 0.5286267995834351, + "learning_rate": 3.779206666666667e-05, + "loss": 2.030503387451172, + "step": 183200 + }, + { + "epoch": 24.44, + "grad_norm": 0.5311276912689209, + "learning_rate": 3.7785400000000006e-05, + "loss": 2.0295208740234374, + "step": 183300 + }, + { + "epoch": 24.453333333333333, + "grad_norm": 0.5239437222480774, + "learning_rate": 3.777873333333333e-05, + "loss": 2.032499237060547, + "step": 183400 + }, + { + "epoch": 24.466666666666665, + "grad_norm": 0.5115417242050171, + "learning_rate": 3.7772066666666664e-05, + "loss": 2.0358099365234374, + "step": 183500 + }, + { + "epoch": 24.48, + "grad_norm": 0.5413856506347656, + "learning_rate": 3.77654e-05, + "loss": 2.033902130126953, + "step": 183600 + }, + { + "epoch": 24.493333333333332, + "grad_norm": 0.5350323915481567, + "learning_rate": 3.7758733333333335e-05, + "loss": 2.03102783203125, + "step": 183700 + }, + { + "epoch": 24.506666666666668, + "grad_norm": 0.5200849175453186, + "learning_rate": 3.775206666666667e-05, + "loss": 2.0346524047851564, + "step": 183800 + }, + { + "epoch": 24.52, + "grad_norm": 0.5102962255477905, + "learning_rate": 3.7745400000000006e-05, + "loss": 2.03560791015625, + "step": 183900 + }, + { + "epoch": 24.533333333333335, + "grad_norm": 0.5746884346008301, + "learning_rate": 3.773873333333334e-05, + "loss": 2.0360655212402343, + "step": 184000 + }, + { + "epoch": 24.546666666666667, + "grad_norm": 0.5304731726646423, + "learning_rate": 3.773206666666667e-05, + "loss": 2.0354969787597654, + "step": 184100 + }, + { + "epoch": 24.56, + "grad_norm": 0.5169298648834229, + "learning_rate": 3.772546666666667e-05, + "loss": 2.0382408142089843, + "step": 184200 + }, + { + "epoch": 24.573333333333334, + "grad_norm": 0.5369707345962524, + "learning_rate": 3.77188e-05, + "loss": 2.039522399902344, + "step": 184300 + }, + { + "epoch": 24.586666666666666, + "grad_norm": 0.4798973798751831, + "learning_rate": 3.7712133333333334e-05, + "loss": 2.0367251586914064, + "step": 184400 + }, + { + "epoch": 24.6, + "grad_norm": 0.5089485049247742, + "learning_rate": 3.770546666666667e-05, + "loss": 2.03658203125, + "step": 184500 + }, + { + "epoch": 24.613333333333333, + "grad_norm": 0.5315452814102173, + "learning_rate": 3.76988e-05, + "loss": 2.0440740966796875, + "step": 184600 + }, + { + "epoch": 24.626666666666665, + "grad_norm": 0.5431042313575745, + "learning_rate": 3.769213333333334e-05, + "loss": 2.0387681579589843, + "step": 184700 + }, + { + "epoch": 24.64, + "grad_norm": 0.5244868993759155, + "learning_rate": 3.768546666666667e-05, + "loss": 2.0414497375488283, + "step": 184800 + }, + { + "epoch": 24.653333333333332, + "grad_norm": 0.5108836889266968, + "learning_rate": 3.76788e-05, + "loss": 2.0410122680664062, + "step": 184900 + }, + { + "epoch": 24.666666666666668, + "grad_norm": 0.5050901770591736, + "learning_rate": 3.7672133333333335e-05, + "loss": 2.041776580810547, + "step": 185000 + }, + { + "epoch": 24.68, + "grad_norm": 0.5396665930747986, + "learning_rate": 3.7665466666666674e-05, + "loss": 2.0429249572753907, + "step": 185100 + }, + { + "epoch": 24.693333333333335, + "grad_norm": 0.5454257726669312, + "learning_rate": 3.76588e-05, + "loss": 2.044694671630859, + "step": 185200 + }, + { + "epoch": 24.706666666666667, + "grad_norm": 0.5190442204475403, + "learning_rate": 3.765213333333333e-05, + "loss": 2.04460205078125, + "step": 185300 + }, + { + "epoch": 24.72, + "grad_norm": 0.5234954953193665, + "learning_rate": 3.764546666666667e-05, + "loss": 2.0423243713378905, + "step": 185400 + }, + { + "epoch": 24.733333333333334, + "grad_norm": 0.5175752639770508, + "learning_rate": 3.76388e-05, + "loss": 2.043539276123047, + "step": 185500 + }, + { + "epoch": 24.746666666666666, + "grad_norm": 0.519957423210144, + "learning_rate": 3.7632133333333335e-05, + "loss": 2.0451559448242187, + "step": 185600 + }, + { + "epoch": 24.76, + "grad_norm": 0.49500152468681335, + "learning_rate": 3.762546666666667e-05, + "loss": 2.043379211425781, + "step": 185700 + }, + { + "epoch": 24.773333333333333, + "grad_norm": 0.5160672664642334, + "learning_rate": 3.7618800000000006e-05, + "loss": 2.046691589355469, + "step": 185800 + }, + { + "epoch": 24.786666666666665, + "grad_norm": 0.5067774057388306, + "learning_rate": 3.761213333333333e-05, + "loss": 2.046448211669922, + "step": 185900 + }, + { + "epoch": 24.8, + "grad_norm": 0.537140429019928, + "learning_rate": 3.7605466666666664e-05, + "loss": 2.045804901123047, + "step": 186000 + }, + { + "epoch": 24.813333333333333, + "grad_norm": 0.5184574127197266, + "learning_rate": 3.75988e-05, + "loss": 2.0455780029296875, + "step": 186100 + }, + { + "epoch": 24.826666666666668, + "grad_norm": 0.5265442728996277, + "learning_rate": 3.7592133333333336e-05, + "loss": 2.0486622619628907, + "step": 186200 + }, + { + "epoch": 24.84, + "grad_norm": 0.5227593183517456, + "learning_rate": 3.758546666666667e-05, + "loss": 2.0465821838378906, + "step": 186300 + }, + { + "epoch": 24.85333333333333, + "grad_norm": 0.5115875005722046, + "learning_rate": 3.75788e-05, + "loss": 2.048692321777344, + "step": 186400 + }, + { + "epoch": 24.866666666666667, + "grad_norm": 0.5175586342811584, + "learning_rate": 3.75722e-05, + "loss": 2.04896240234375, + "step": 186500 + }, + { + "epoch": 24.88, + "grad_norm": 0.523460865020752, + "learning_rate": 3.756553333333334e-05, + "loss": 2.0502452087402343, + "step": 186600 + }, + { + "epoch": 24.893333333333334, + "grad_norm": 0.5361924767494202, + "learning_rate": 3.755886666666667e-05, + "loss": 2.0494508361816406, + "step": 186700 + }, + { + "epoch": 24.906666666666666, + "grad_norm": 0.5198230743408203, + "learning_rate": 3.75522e-05, + "loss": 2.0510104370117186, + "step": 186800 + }, + { + "epoch": 24.92, + "grad_norm": 0.5249742269515991, + "learning_rate": 3.7545533333333335e-05, + "loss": 2.05044189453125, + "step": 186900 + }, + { + "epoch": 24.933333333333334, + "grad_norm": 0.5150473117828369, + "learning_rate": 3.753886666666667e-05, + "loss": 2.0530665588378905, + "step": 187000 + }, + { + "epoch": 24.946666666666665, + "grad_norm": 0.5269672870635986, + "learning_rate": 3.75322e-05, + "loss": 2.052723236083984, + "step": 187100 + }, + { + "epoch": 24.96, + "grad_norm": 0.498569518327713, + "learning_rate": 3.752553333333333e-05, + "loss": 2.053250579833984, + "step": 187200 + }, + { + "epoch": 24.973333333333333, + "grad_norm": 0.5326972007751465, + "learning_rate": 3.751886666666667e-05, + "loss": 2.0500621032714843, + "step": 187300 + }, + { + "epoch": 24.986666666666668, + "grad_norm": 0.5814267992973328, + "learning_rate": 3.75122e-05, + "loss": 2.0546443176269533, + "step": 187400 + }, + { + "epoch": 25.0, + "grad_norm": 0.5015130043029785, + "learning_rate": 3.7505533333333335e-05, + "loss": 2.0553138732910154, + "step": 187500 + }, + { + "epoch": 25.013333333333332, + "grad_norm": 0.5198807120323181, + "learning_rate": 3.749886666666667e-05, + "loss": 1.9766946411132813, + "step": 187600 + }, + { + "epoch": 25.026666666666667, + "grad_norm": 0.5337755680084229, + "learning_rate": 3.74922e-05, + "loss": 1.9777664184570312, + "step": 187700 + }, + { + "epoch": 25.04, + "grad_norm": 0.5432220697402954, + "learning_rate": 3.748553333333333e-05, + "loss": 1.9787986755371094, + "step": 187800 + }, + { + "epoch": 25.053333333333335, + "grad_norm": 0.5276835560798645, + "learning_rate": 3.7478866666666664e-05, + "loss": 1.9827880859375, + "step": 187900 + }, + { + "epoch": 25.066666666666666, + "grad_norm": 0.5256075263023376, + "learning_rate": 3.7472200000000004e-05, + "loss": 1.9845838928222657, + "step": 188000 + }, + { + "epoch": 25.08, + "grad_norm": 0.521128237247467, + "learning_rate": 3.7465533333333336e-05, + "loss": 1.984072265625, + "step": 188100 + }, + { + "epoch": 25.093333333333334, + "grad_norm": 0.7402787208557129, + "learning_rate": 3.745886666666667e-05, + "loss": 1.9819233703613282, + "step": 188200 + }, + { + "epoch": 25.106666666666666, + "grad_norm": 0.5602257251739502, + "learning_rate": 3.745220000000001e-05, + "loss": 1.9857809448242187, + "step": 188300 + }, + { + "epoch": 25.12, + "grad_norm": 0.5449258685112, + "learning_rate": 3.744553333333333e-05, + "loss": 1.9836058044433593, + "step": 188400 + }, + { + "epoch": 25.133333333333333, + "grad_norm": 0.5279524326324463, + "learning_rate": 3.7438866666666665e-05, + "loss": 1.9868746948242189, + "step": 188500 + }, + { + "epoch": 25.14666666666667, + "grad_norm": 0.5134731531143188, + "learning_rate": 3.7432200000000004e-05, + "loss": 1.984371337890625, + "step": 188600 + }, + { + "epoch": 25.16, + "grad_norm": 0.534136950969696, + "learning_rate": 3.7425533333333336e-05, + "loss": 1.990037841796875, + "step": 188700 + }, + { + "epoch": 25.173333333333332, + "grad_norm": 0.5440365672111511, + "learning_rate": 3.741886666666667e-05, + "loss": 1.9899058532714844, + "step": 188800 + }, + { + "epoch": 25.186666666666667, + "grad_norm": 0.5396292209625244, + "learning_rate": 3.741226666666667e-05, + "loss": 1.9931028747558595, + "step": 188900 + }, + { + "epoch": 25.2, + "grad_norm": 0.5376026034355164, + "learning_rate": 3.74056e-05, + "loss": 1.99557373046875, + "step": 189000 + }, + { + "epoch": 25.213333333333335, + "grad_norm": 0.5177650451660156, + "learning_rate": 3.739893333333334e-05, + "loss": 1.9946913146972656, + "step": 189100 + }, + { + "epoch": 25.226666666666667, + "grad_norm": 0.5463927984237671, + "learning_rate": 3.739226666666667e-05, + "loss": 1.993941192626953, + "step": 189200 + }, + { + "epoch": 25.24, + "grad_norm": 0.5426744818687439, + "learning_rate": 3.73856e-05, + "loss": 1.9958428955078125, + "step": 189300 + }, + { + "epoch": 25.253333333333334, + "grad_norm": 0.5297708511352539, + "learning_rate": 3.7378933333333336e-05, + "loss": 1.995465087890625, + "step": 189400 + }, + { + "epoch": 25.266666666666666, + "grad_norm": 0.5523133873939514, + "learning_rate": 3.737226666666667e-05, + "loss": 2.0024423217773437, + "step": 189500 + }, + { + "epoch": 25.28, + "grad_norm": 0.551189124584198, + "learning_rate": 3.73656e-05, + "loss": 1.996693115234375, + "step": 189600 + }, + { + "epoch": 25.293333333333333, + "grad_norm": 0.5185670852661133, + "learning_rate": 3.735893333333333e-05, + "loss": 1.9998982238769532, + "step": 189700 + }, + { + "epoch": 25.306666666666665, + "grad_norm": 0.5398461818695068, + "learning_rate": 3.735226666666667e-05, + "loss": 1.9971189880371094, + "step": 189800 + }, + { + "epoch": 25.32, + "grad_norm": 0.5354723930358887, + "learning_rate": 3.7345600000000004e-05, + "loss": 1.9997674560546874, + "step": 189900 + }, + { + "epoch": 25.333333333333332, + "grad_norm": 0.5407664775848389, + "learning_rate": 3.7338933333333336e-05, + "loss": 1.9974674987792969, + "step": 190000 + }, + { + "epoch": 25.346666666666668, + "grad_norm": 0.5344270467758179, + "learning_rate": 3.733226666666667e-05, + "loss": 2.003179473876953, + "step": 190100 + }, + { + "epoch": 25.36, + "grad_norm": 0.5190737247467041, + "learning_rate": 3.73256e-05, + "loss": 2.006910552978516, + "step": 190200 + }, + { + "epoch": 25.373333333333335, + "grad_norm": 0.5444039106369019, + "learning_rate": 3.731893333333333e-05, + "loss": 2.0056292724609377, + "step": 190300 + }, + { + "epoch": 25.386666666666667, + "grad_norm": 0.5827769041061401, + "learning_rate": 3.7312266666666665e-05, + "loss": 2.003057098388672, + "step": 190400 + }, + { + "epoch": 25.4, + "grad_norm": 0.5491002202033997, + "learning_rate": 3.7305600000000004e-05, + "loss": 2.005493469238281, + "step": 190500 + }, + { + "epoch": 25.413333333333334, + "grad_norm": 0.5325082540512085, + "learning_rate": 3.7298933333333336e-05, + "loss": 2.0034739685058596, + "step": 190600 + }, + { + "epoch": 25.426666666666666, + "grad_norm": 0.5534201860427856, + "learning_rate": 3.729226666666667e-05, + "loss": 2.005567169189453, + "step": 190700 + }, + { + "epoch": 25.44, + "grad_norm": 0.5325811505317688, + "learning_rate": 3.72856e-05, + "loss": 2.004087371826172, + "step": 190800 + }, + { + "epoch": 25.453333333333333, + "grad_norm": 0.5336616039276123, + "learning_rate": 3.727893333333333e-05, + "loss": 2.0060054016113282, + "step": 190900 + }, + { + "epoch": 25.466666666666665, + "grad_norm": 0.550896406173706, + "learning_rate": 3.7272266666666665e-05, + "loss": 2.0102296447753907, + "step": 191000 + }, + { + "epoch": 25.48, + "grad_norm": 0.5317057967185974, + "learning_rate": 3.72656e-05, + "loss": 2.0113670349121096, + "step": 191100 + }, + { + "epoch": 25.493333333333332, + "grad_norm": 0.5150067806243896, + "learning_rate": 3.725893333333334e-05, + "loss": 2.013133697509766, + "step": 191200 + }, + { + "epoch": 25.506666666666668, + "grad_norm": 0.5351247787475586, + "learning_rate": 3.725226666666667e-05, + "loss": 2.010963134765625, + "step": 191300 + }, + { + "epoch": 25.52, + "grad_norm": 0.5194895267486572, + "learning_rate": 3.724566666666667e-05, + "loss": 2.012650451660156, + "step": 191400 + }, + { + "epoch": 25.533333333333335, + "grad_norm": 0.539284884929657, + "learning_rate": 3.7239e-05, + "loss": 2.010073394775391, + "step": 191500 + }, + { + "epoch": 25.546666666666667, + "grad_norm": 0.5227241516113281, + "learning_rate": 3.723233333333333e-05, + "loss": 2.011913299560547, + "step": 191600 + }, + { + "epoch": 25.56, + "grad_norm": 0.5342681407928467, + "learning_rate": 3.722566666666667e-05, + "loss": 2.012406921386719, + "step": 191700 + }, + { + "epoch": 25.573333333333334, + "grad_norm": 0.5252745151519775, + "learning_rate": 3.7219000000000004e-05, + "loss": 2.011879577636719, + "step": 191800 + }, + { + "epoch": 25.586666666666666, + "grad_norm": 0.5306975245475769, + "learning_rate": 3.721233333333333e-05, + "loss": 2.0142337036132814, + "step": 191900 + }, + { + "epoch": 25.6, + "grad_norm": 0.5551440119743347, + "learning_rate": 3.720566666666667e-05, + "loss": 2.011077880859375, + "step": 192000 + }, + { + "epoch": 25.613333333333333, + "grad_norm": 0.5400145053863525, + "learning_rate": 3.7199e-05, + "loss": 2.012953643798828, + "step": 192100 + }, + { + "epoch": 25.626666666666665, + "grad_norm": 0.5293111205101013, + "learning_rate": 3.719233333333333e-05, + "loss": 2.0181004333496095, + "step": 192200 + }, + { + "epoch": 25.64, + "grad_norm": 0.5242292284965515, + "learning_rate": 3.7185666666666665e-05, + "loss": 2.017105712890625, + "step": 192300 + }, + { + "epoch": 25.653333333333332, + "grad_norm": 0.5292710065841675, + "learning_rate": 3.7179000000000004e-05, + "loss": 2.0163299560546877, + "step": 192400 + }, + { + "epoch": 25.666666666666668, + "grad_norm": 0.5424890518188477, + "learning_rate": 3.717233333333334e-05, + "loss": 2.015196533203125, + "step": 192500 + }, + { + "epoch": 25.68, + "grad_norm": 0.5193257927894592, + "learning_rate": 3.716566666666667e-05, + "loss": 2.0220237731933595, + "step": 192600 + }, + { + "epoch": 25.693333333333335, + "grad_norm": 0.5442838072776794, + "learning_rate": 3.7159e-05, + "loss": 2.0192355346679687, + "step": 192700 + }, + { + "epoch": 25.706666666666667, + "grad_norm": 0.5463152527809143, + "learning_rate": 3.7152333333333333e-05, + "loss": 2.0164019775390627, + "step": 192800 + }, + { + "epoch": 25.72, + "grad_norm": 0.5344257354736328, + "learning_rate": 3.7145666666666666e-05, + "loss": 2.0162734985351562, + "step": 192900 + }, + { + "epoch": 25.733333333333334, + "grad_norm": 0.5351117253303528, + "learning_rate": 3.7139000000000005e-05, + "loss": 2.023134460449219, + "step": 193000 + }, + { + "epoch": 25.746666666666666, + "grad_norm": 0.5418599843978882, + "learning_rate": 3.713233333333334e-05, + "loss": 2.020071563720703, + "step": 193100 + }, + { + "epoch": 25.76, + "grad_norm": 0.5406211018562317, + "learning_rate": 3.712566666666667e-05, + "loss": 2.0211688232421876, + "step": 193200 + }, + { + "epoch": 25.773333333333333, + "grad_norm": 0.5392265915870667, + "learning_rate": 3.7119e-05, + "loss": 2.02107177734375, + "step": 193300 + }, + { + "epoch": 25.786666666666665, + "grad_norm": 0.5478586554527283, + "learning_rate": 3.71124e-05, + "loss": 2.0197589111328127, + "step": 193400 + }, + { + "epoch": 25.8, + "grad_norm": 0.5384021401405334, + "learning_rate": 3.710573333333334e-05, + "loss": 2.0261798095703125, + "step": 193500 + }, + { + "epoch": 25.813333333333333, + "grad_norm": 0.5637001991271973, + "learning_rate": 3.709906666666667e-05, + "loss": 2.0208526611328126, + "step": 193600 + }, + { + "epoch": 25.826666666666668, + "grad_norm": 0.5373884439468384, + "learning_rate": 3.70924e-05, + "loss": 2.0243865966796877, + "step": 193700 + }, + { + "epoch": 25.84, + "grad_norm": 0.5258835554122925, + "learning_rate": 3.7085733333333336e-05, + "loss": 2.025778961181641, + "step": 193800 + }, + { + "epoch": 25.85333333333333, + "grad_norm": 0.5321053862571716, + "learning_rate": 3.707906666666667e-05, + "loss": 2.0245960998535155, + "step": 193900 + }, + { + "epoch": 25.866666666666667, + "grad_norm": 0.5242984294891357, + "learning_rate": 3.70724e-05, + "loss": 2.027090301513672, + "step": 194000 + }, + { + "epoch": 25.88, + "grad_norm": 0.5495437979698181, + "learning_rate": 3.706573333333333e-05, + "loss": 2.0237530517578124, + "step": 194100 + }, + { + "epoch": 25.893333333333334, + "grad_norm": 0.5291945338249207, + "learning_rate": 3.705906666666667e-05, + "loss": 2.0295460510253904, + "step": 194200 + }, + { + "epoch": 25.906666666666666, + "grad_norm": 0.5402800440788269, + "learning_rate": 3.7052400000000005e-05, + "loss": 2.0260325622558595, + "step": 194300 + }, + { + "epoch": 25.92, + "grad_norm": 0.5184854865074158, + "learning_rate": 3.704573333333334e-05, + "loss": 2.0257765197753907, + "step": 194400 + }, + { + "epoch": 25.933333333333334, + "grad_norm": 0.53758704662323, + "learning_rate": 3.703906666666667e-05, + "loss": 2.0274493408203127, + "step": 194500 + }, + { + "epoch": 25.946666666666665, + "grad_norm": 0.5527028441429138, + "learning_rate": 3.70324e-05, + "loss": 2.0257112121582033, + "step": 194600 + }, + { + "epoch": 25.96, + "grad_norm": 0.5566267967224121, + "learning_rate": 3.7025733333333334e-05, + "loss": 2.026977081298828, + "step": 194700 + }, + { + "epoch": 25.973333333333333, + "grad_norm": 0.5336237549781799, + "learning_rate": 3.7019066666666666e-05, + "loss": 2.028018035888672, + "step": 194800 + }, + { + "epoch": 25.986666666666668, + "grad_norm": 0.5185402631759644, + "learning_rate": 3.7012400000000005e-05, + "loss": 2.0281407165527345, + "step": 194900 + }, + { + "epoch": 26.0, + "grad_norm": 0.5450587272644043, + "learning_rate": 3.700573333333334e-05, + "loss": 2.0281640625, + "step": 195000 + }, + { + "epoch": 26.013333333333332, + "grad_norm": 0.541812002658844, + "learning_rate": 3.699906666666667e-05, + "loss": 1.957196044921875, + "step": 195100 + }, + { + "epoch": 26.026666666666667, + "grad_norm": 0.5567891597747803, + "learning_rate": 3.69924e-05, + "loss": 1.9547212219238281, + "step": 195200 + }, + { + "epoch": 26.04, + "grad_norm": 0.5365836024284363, + "learning_rate": 3.6985733333333334e-05, + "loss": 1.9568002319335938, + "step": 195300 + }, + { + "epoch": 26.053333333333335, + "grad_norm": 0.5200800895690918, + "learning_rate": 3.697913333333334e-05, + "loss": 1.9555859375, + "step": 195400 + }, + { + "epoch": 26.066666666666666, + "grad_norm": 0.5740585327148438, + "learning_rate": 3.6972466666666665e-05, + "loss": 1.9540396118164063, + "step": 195500 + }, + { + "epoch": 26.08, + "grad_norm": 0.5473860502243042, + "learning_rate": 3.69658e-05, + "loss": 1.9564674377441407, + "step": 195600 + }, + { + "epoch": 26.093333333333334, + "grad_norm": 0.5414859652519226, + "learning_rate": 3.695913333333334e-05, + "loss": 1.9615504455566406, + "step": 195700 + }, + { + "epoch": 26.106666666666666, + "grad_norm": 0.5546607375144958, + "learning_rate": 3.695246666666667e-05, + "loss": 1.9621275329589845, + "step": 195800 + }, + { + "epoch": 26.12, + "grad_norm": 0.5604114532470703, + "learning_rate": 3.69458e-05, + "loss": 1.958752899169922, + "step": 195900 + }, + { + "epoch": 26.133333333333333, + "grad_norm": 0.5639984607696533, + "learning_rate": 3.6939133333333334e-05, + "loss": 1.9659051513671875, + "step": 196000 + }, + { + "epoch": 26.14666666666667, + "grad_norm": 0.552521288394928, + "learning_rate": 3.693246666666667e-05, + "loss": 1.9680455017089844, + "step": 196100 + }, + { + "epoch": 26.16, + "grad_norm": 0.5784633755683899, + "learning_rate": 3.69258e-05, + "loss": 1.9671054077148438, + "step": 196200 + }, + { + "epoch": 26.173333333333332, + "grad_norm": 0.558786928653717, + "learning_rate": 3.691913333333333e-05, + "loss": 1.9637820434570312, + "step": 196300 + }, + { + "epoch": 26.186666666666667, + "grad_norm": 0.577648401260376, + "learning_rate": 3.691246666666667e-05, + "loss": 1.9695333862304687, + "step": 196400 + }, + { + "epoch": 26.2, + "grad_norm": 0.5630086064338684, + "learning_rate": 3.69058e-05, + "loss": 1.9683534240722655, + "step": 196500 + }, + { + "epoch": 26.213333333333335, + "grad_norm": 0.5924582481384277, + "learning_rate": 3.6899133333333334e-05, + "loss": 1.9684716796875, + "step": 196600 + }, + { + "epoch": 26.226666666666667, + "grad_norm": 0.5777826309204102, + "learning_rate": 3.689246666666667e-05, + "loss": 1.9659332275390624, + "step": 196700 + }, + { + "epoch": 26.24, + "grad_norm": 0.5597606301307678, + "learning_rate": 3.6885800000000005e-05, + "loss": 1.9684400939941407, + "step": 196800 + }, + { + "epoch": 26.253333333333334, + "grad_norm": 0.5973007082939148, + "learning_rate": 3.687913333333334e-05, + "loss": 1.968690185546875, + "step": 196900 + }, + { + "epoch": 26.266666666666666, + "grad_norm": 0.5487164855003357, + "learning_rate": 3.687246666666666e-05, + "loss": 1.9721401977539061, + "step": 197000 + }, + { + "epoch": 26.28, + "grad_norm": 0.5761642456054688, + "learning_rate": 3.68658e-05, + "loss": 1.9738571166992187, + "step": 197100 + }, + { + "epoch": 26.293333333333333, + "grad_norm": 0.5579527020454407, + "learning_rate": 3.6859133333333334e-05, + "loss": 1.9721127319335938, + "step": 197200 + }, + { + "epoch": 26.306666666666665, + "grad_norm": 0.5521603226661682, + "learning_rate": 3.6852466666666667e-05, + "loss": 1.9772552490234374, + "step": 197300 + }, + { + "epoch": 26.32, + "grad_norm": 0.5767320394515991, + "learning_rate": 3.6845800000000006e-05, + "loss": 1.975111846923828, + "step": 197400 + }, + { + "epoch": 26.333333333333332, + "grad_norm": 0.568122148513794, + "learning_rate": 3.6839200000000005e-05, + "loss": 1.9748057556152343, + "step": 197500 + }, + { + "epoch": 26.346666666666668, + "grad_norm": 0.54569411277771, + "learning_rate": 3.683253333333334e-05, + "loss": 1.975630340576172, + "step": 197600 + }, + { + "epoch": 26.36, + "grad_norm": 0.5550498962402344, + "learning_rate": 3.682586666666667e-05, + "loss": 1.976104736328125, + "step": 197700 + }, + { + "epoch": 26.373333333333335, + "grad_norm": 0.5575002431869507, + "learning_rate": 3.68192e-05, + "loss": 1.979742431640625, + "step": 197800 + }, + { + "epoch": 26.386666666666667, + "grad_norm": 0.5659462809562683, + "learning_rate": 3.681253333333334e-05, + "loss": 1.982191925048828, + "step": 197900 + }, + { + "epoch": 26.4, + "grad_norm": 0.5659615397453308, + "learning_rate": 3.6805866666666666e-05, + "loss": 1.979058837890625, + "step": 198000 + }, + { + "epoch": 26.413333333333334, + "grad_norm": 0.5449748039245605, + "learning_rate": 3.67992e-05, + "loss": 1.9774148559570313, + "step": 198100 + }, + { + "epoch": 26.426666666666666, + "grad_norm": 0.578723669052124, + "learning_rate": 3.679253333333334e-05, + "loss": 1.9768846130371094, + "step": 198200 + }, + { + "epoch": 26.44, + "grad_norm": 0.5675528645515442, + "learning_rate": 3.678586666666667e-05, + "loss": 1.979735107421875, + "step": 198300 + }, + { + "epoch": 26.453333333333333, + "grad_norm": 0.5619545578956604, + "learning_rate": 3.67792e-05, + "loss": 1.9831944274902344, + "step": 198400 + }, + { + "epoch": 26.466666666666665, + "grad_norm": 0.5641692876815796, + "learning_rate": 3.6772533333333334e-05, + "loss": 1.9841481018066407, + "step": 198500 + }, + { + "epoch": 26.48, + "grad_norm": 0.569416344165802, + "learning_rate": 3.676586666666667e-05, + "loss": 1.981822509765625, + "step": 198600 + }, + { + "epoch": 26.493333333333332, + "grad_norm": 0.583523690700531, + "learning_rate": 3.67592e-05, + "loss": 1.982010955810547, + "step": 198700 + }, + { + "epoch": 26.506666666666668, + "grad_norm": 0.5771437883377075, + "learning_rate": 3.675253333333333e-05, + "loss": 1.9882267761230468, + "step": 198800 + }, + { + "epoch": 26.52, + "grad_norm": 0.6403129696846008, + "learning_rate": 3.674586666666667e-05, + "loss": 1.985286102294922, + "step": 198900 + }, + { + "epoch": 26.533333333333335, + "grad_norm": 0.5762969851493835, + "learning_rate": 3.67392e-05, + "loss": 1.9854814147949218, + "step": 199000 + }, + { + "epoch": 26.546666666666667, + "grad_norm": 0.5455479025840759, + "learning_rate": 3.6732533333333335e-05, + "loss": 1.9807121276855468, + "step": 199100 + }, + { + "epoch": 26.56, + "grad_norm": 0.5566051006317139, + "learning_rate": 3.672586666666667e-05, + "loss": 1.99121337890625, + "step": 199200 + }, + { + "epoch": 26.573333333333334, + "grad_norm": 0.5699354410171509, + "learning_rate": 3.6719200000000006e-05, + "loss": 1.9884609985351562, + "step": 199300 + }, + { + "epoch": 26.586666666666666, + "grad_norm": 0.5869739651679993, + "learning_rate": 3.671253333333334e-05, + "loss": 1.9882350158691406, + "step": 199400 + }, + { + "epoch": 26.6, + "grad_norm": 0.5663924813270569, + "learning_rate": 3.670593333333334e-05, + "loss": 1.9908465576171874, + "step": 199500 + }, + { + "epoch": 26.613333333333333, + "grad_norm": 0.5577260255813599, + "learning_rate": 3.669926666666667e-05, + "loss": 1.9867439270019531, + "step": 199600 + }, + { + "epoch": 26.626666666666665, + "grad_norm": 0.5420724153518677, + "learning_rate": 3.66926e-05, + "loss": 1.9890168762207032, + "step": 199700 + }, + { + "epoch": 26.64, + "grad_norm": 0.5668867230415344, + "learning_rate": 3.6685933333333334e-05, + "loss": 1.989038848876953, + "step": 199800 + }, + { + "epoch": 26.653333333333332, + "grad_norm": 0.536382257938385, + "learning_rate": 3.6679266666666666e-05, + "loss": 1.9933232116699218, + "step": 199900 + }, + { + "epoch": 26.666666666666668, + "grad_norm": 0.6233078837394714, + "learning_rate": 3.66726e-05, + "loss": 1.9922142028808594, + "step": 200000 + }, + { + "epoch": 26.68, + "grad_norm": 0.5758584141731262, + "learning_rate": 3.666593333333334e-05, + "loss": 1.9919984436035156, + "step": 200100 + }, + { + "epoch": 26.693333333333335, + "grad_norm": 0.5576504468917847, + "learning_rate": 3.665926666666667e-05, + "loss": 1.9917649841308593, + "step": 200200 + }, + { + "epoch": 26.706666666666667, + "grad_norm": 0.5854286551475525, + "learning_rate": 3.66526e-05, + "loss": 1.9912901306152344, + "step": 200300 + }, + { + "epoch": 26.72, + "grad_norm": 0.5664922595024109, + "learning_rate": 3.6645933333333334e-05, + "loss": 1.998155059814453, + "step": 200400 + }, + { + "epoch": 26.733333333333334, + "grad_norm": 0.5407897233963013, + "learning_rate": 3.663926666666667e-05, + "loss": 1.9952912902832032, + "step": 200500 + }, + { + "epoch": 26.746666666666666, + "grad_norm": 0.5883836150169373, + "learning_rate": 3.66326e-05, + "loss": 1.9951287841796874, + "step": 200600 + }, + { + "epoch": 26.76, + "grad_norm": 0.5882517099380493, + "learning_rate": 3.662593333333333e-05, + "loss": 1.9948817443847657, + "step": 200700 + }, + { + "epoch": 26.773333333333333, + "grad_norm": 0.572609543800354, + "learning_rate": 3.661926666666667e-05, + "loss": 1.9994200134277345, + "step": 200800 + }, + { + "epoch": 26.786666666666665, + "grad_norm": 0.5723763108253479, + "learning_rate": 3.66126e-05, + "loss": 1.9964186096191405, + "step": 200900 + }, + { + "epoch": 26.8, + "grad_norm": 0.571183979511261, + "learning_rate": 3.6605933333333335e-05, + "loss": 1.9989100646972657, + "step": 201000 + }, + { + "epoch": 26.813333333333333, + "grad_norm": 0.5754789113998413, + "learning_rate": 3.6599266666666674e-05, + "loss": 1.9968698120117188, + "step": 201100 + }, + { + "epoch": 26.826666666666668, + "grad_norm": 0.5623466372489929, + "learning_rate": 3.65926e-05, + "loss": 1.9973426818847657, + "step": 201200 + }, + { + "epoch": 26.84, + "grad_norm": 0.5691098570823669, + "learning_rate": 3.658593333333333e-05, + "loss": 1.995333709716797, + "step": 201300 + }, + { + "epoch": 26.85333333333333, + "grad_norm": 0.5785391926765442, + "learning_rate": 3.657926666666667e-05, + "loss": 2.0026919555664064, + "step": 201400 + }, + { + "epoch": 26.866666666666667, + "grad_norm": 0.5716009736061096, + "learning_rate": 3.657266666666666e-05, + "loss": 1.9967724609375, + "step": 201500 + }, + { + "epoch": 26.88, + "grad_norm": 0.5728231072425842, + "learning_rate": 3.6566e-05, + "loss": 2.003606719970703, + "step": 201600 + }, + { + "epoch": 26.893333333333334, + "grad_norm": 0.5723952054977417, + "learning_rate": 3.6559333333333334e-05, + "loss": 2.0006785583496094, + "step": 201700 + }, + { + "epoch": 26.906666666666666, + "grad_norm": 0.5781197547912598, + "learning_rate": 3.6552666666666666e-05, + "loss": 2.001742095947266, + "step": 201800 + }, + { + "epoch": 26.92, + "grad_norm": 0.5599796772003174, + "learning_rate": 3.6546000000000006e-05, + "loss": 2.0006167602539064, + "step": 201900 + }, + { + "epoch": 26.933333333333334, + "grad_norm": 0.6010822653770447, + "learning_rate": 3.653933333333334e-05, + "loss": 2.0031967163085938, + "step": 202000 + }, + { + "epoch": 26.946666666666665, + "grad_norm": 0.563437819480896, + "learning_rate": 3.653266666666667e-05, + "loss": 2.004565887451172, + "step": 202100 + }, + { + "epoch": 26.96, + "grad_norm": 0.5698239803314209, + "learning_rate": 3.6526e-05, + "loss": 2.004854431152344, + "step": 202200 + }, + { + "epoch": 26.973333333333333, + "grad_norm": 0.5538843274116516, + "learning_rate": 3.6519333333333335e-05, + "loss": 2.006410827636719, + "step": 202300 + }, + { + "epoch": 26.986666666666668, + "grad_norm": 0.590229332447052, + "learning_rate": 3.651266666666667e-05, + "loss": 2.004330596923828, + "step": 202400 + }, + { + "epoch": 27.0, + "grad_norm": 0.5651915073394775, + "learning_rate": 3.6506e-05, + "loss": 2.004520263671875, + "step": 202500 + }, + { + "epoch": 27.013333333333332, + "grad_norm": 0.581447184085846, + "learning_rate": 3.649933333333334e-05, + "loss": 1.927707977294922, + "step": 202600 + }, + { + "epoch": 27.026666666666667, + "grad_norm": 0.5724103450775146, + "learning_rate": 3.649266666666667e-05, + "loss": 1.9301573181152343, + "step": 202700 + }, + { + "epoch": 27.04, + "grad_norm": 0.5678054690361023, + "learning_rate": 3.6486e-05, + "loss": 1.9268736267089843, + "step": 202800 + }, + { + "epoch": 27.053333333333335, + "grad_norm": 0.5841068625450134, + "learning_rate": 3.6479333333333335e-05, + "loss": 1.9276795959472657, + "step": 202900 + }, + { + "epoch": 27.066666666666666, + "grad_norm": 0.5919205546379089, + "learning_rate": 3.647266666666667e-05, + "loss": 1.9338473510742187, + "step": 203000 + }, + { + "epoch": 27.08, + "grad_norm": 0.593210756778717, + "learning_rate": 3.6466e-05, + "loss": 1.9268548583984375, + "step": 203100 + }, + { + "epoch": 27.093333333333334, + "grad_norm": 0.5299606919288635, + "learning_rate": 3.645933333333333e-05, + "loss": 1.9322509765625, + "step": 203200 + }, + { + "epoch": 27.106666666666666, + "grad_norm": 0.5877776741981506, + "learning_rate": 3.645266666666667e-05, + "loss": 1.9314346313476562, + "step": 203300 + }, + { + "epoch": 27.12, + "grad_norm": 0.5868698954582214, + "learning_rate": 3.6446e-05, + "loss": 1.9356802368164063, + "step": 203400 + }, + { + "epoch": 27.133333333333333, + "grad_norm": 0.5853486061096191, + "learning_rate": 3.64394e-05, + "loss": 1.9343838500976562, + "step": 203500 + }, + { + "epoch": 27.14666666666667, + "grad_norm": 0.5599203705787659, + "learning_rate": 3.6432733333333334e-05, + "loss": 1.9365560913085937, + "step": 203600 + }, + { + "epoch": 27.16, + "grad_norm": 0.5584514737129211, + "learning_rate": 3.642606666666667e-05, + "loss": 1.9372349548339844, + "step": 203700 + }, + { + "epoch": 27.173333333333332, + "grad_norm": 0.5899976491928101, + "learning_rate": 3.6419400000000006e-05, + "loss": 1.94076416015625, + "step": 203800 + }, + { + "epoch": 27.186666666666667, + "grad_norm": 0.5896082520484924, + "learning_rate": 3.641273333333334e-05, + "loss": 1.9411949157714843, + "step": 203900 + }, + { + "epoch": 27.2, + "grad_norm": 0.6029268503189087, + "learning_rate": 3.6406066666666663e-05, + "loss": 1.9456289672851563, + "step": 204000 + }, + { + "epoch": 27.213333333333335, + "grad_norm": 0.5602301955223083, + "learning_rate": 3.63994e-05, + "loss": 1.9383029174804687, + "step": 204100 + }, + { + "epoch": 27.226666666666667, + "grad_norm": 0.5736998319625854, + "learning_rate": 3.6392733333333335e-05, + "loss": 1.945543975830078, + "step": 204200 + }, + { + "epoch": 27.24, + "grad_norm": 0.5835820436477661, + "learning_rate": 3.638606666666667e-05, + "loss": 1.9456192016601563, + "step": 204300 + }, + { + "epoch": 27.253333333333334, + "grad_norm": 0.5935140252113342, + "learning_rate": 3.63794e-05, + "loss": 1.9459524536132813, + "step": 204400 + }, + { + "epoch": 27.266666666666666, + "grad_norm": 0.5856873393058777, + "learning_rate": 3.637273333333334e-05, + "loss": 1.9468795776367187, + "step": 204500 + }, + { + "epoch": 27.28, + "grad_norm": 0.5846020579338074, + "learning_rate": 3.636606666666667e-05, + "loss": 1.947487335205078, + "step": 204600 + }, + { + "epoch": 27.293333333333333, + "grad_norm": 0.6289901733398438, + "learning_rate": 3.6359399999999996e-05, + "loss": 1.9467887878417969, + "step": 204700 + }, + { + "epoch": 27.306666666666665, + "grad_norm": 0.5840248465538025, + "learning_rate": 3.6352733333333335e-05, + "loss": 1.9474456787109375, + "step": 204800 + }, + { + "epoch": 27.32, + "grad_norm": 0.5707332491874695, + "learning_rate": 3.634606666666667e-05, + "loss": 1.9438954162597657, + "step": 204900 + }, + { + "epoch": 27.333333333333332, + "grad_norm": 0.5975301861763, + "learning_rate": 3.63394e-05, + "loss": 1.951266326904297, + "step": 205000 + }, + { + "epoch": 27.346666666666668, + "grad_norm": 0.5705687999725342, + "learning_rate": 3.633273333333333e-05, + "loss": 1.9507940673828126, + "step": 205100 + }, + { + "epoch": 27.36, + "grad_norm": 0.5590121150016785, + "learning_rate": 3.632606666666667e-05, + "loss": 1.9493692016601563, + "step": 205200 + }, + { + "epoch": 27.373333333333335, + "grad_norm": 0.5685244798660278, + "learning_rate": 3.63194e-05, + "loss": 1.950657196044922, + "step": 205300 + }, + { + "epoch": 27.386666666666667, + "grad_norm": 0.5888789892196655, + "learning_rate": 3.6312733333333336e-05, + "loss": 1.9549993896484374, + "step": 205400 + }, + { + "epoch": 27.4, + "grad_norm": 0.5904676914215088, + "learning_rate": 3.6306133333333335e-05, + "loss": 1.955000762939453, + "step": 205500 + }, + { + "epoch": 27.413333333333334, + "grad_norm": 0.5819377303123474, + "learning_rate": 3.6299466666666674e-05, + "loss": 1.9578860473632813, + "step": 205600 + }, + { + "epoch": 27.426666666666666, + "grad_norm": 0.5758692026138306, + "learning_rate": 3.62928e-05, + "loss": 1.9549250793457031, + "step": 205700 + }, + { + "epoch": 27.44, + "grad_norm": 0.6009901165962219, + "learning_rate": 3.628613333333333e-05, + "loss": 1.952675323486328, + "step": 205800 + }, + { + "epoch": 27.453333333333333, + "grad_norm": 0.5837755799293518, + "learning_rate": 3.627946666666667e-05, + "loss": 1.9591851806640626, + "step": 205900 + }, + { + "epoch": 27.466666666666665, + "grad_norm": 0.5634909272193909, + "learning_rate": 3.62728e-05, + "loss": 1.9552839660644532, + "step": 206000 + }, + { + "epoch": 27.48, + "grad_norm": 0.5781852602958679, + "learning_rate": 3.6266133333333335e-05, + "loss": 1.9604965209960938, + "step": 206100 + }, + { + "epoch": 27.493333333333332, + "grad_norm": 0.58583664894104, + "learning_rate": 3.625946666666667e-05, + "loss": 1.9583544921875, + "step": 206200 + }, + { + "epoch": 27.506666666666668, + "grad_norm": 0.5962403416633606, + "learning_rate": 3.6252800000000006e-05, + "loss": 1.9607644653320313, + "step": 206300 + }, + { + "epoch": 27.52, + "grad_norm": 0.5640053749084473, + "learning_rate": 3.624613333333334e-05, + "loss": 1.9606808471679686, + "step": 206400 + }, + { + "epoch": 27.533333333333335, + "grad_norm": 0.5817745327949524, + "learning_rate": 3.6239466666666664e-05, + "loss": 1.9592042541503907, + "step": 206500 + }, + { + "epoch": 27.546666666666667, + "grad_norm": 0.6114230751991272, + "learning_rate": 3.62328e-05, + "loss": 1.9615921020507812, + "step": 206600 + }, + { + "epoch": 27.56, + "grad_norm": 0.5722009539604187, + "learning_rate": 3.6226133333333335e-05, + "loss": 1.9608853149414063, + "step": 206700 + }, + { + "epoch": 27.573333333333334, + "grad_norm": 0.5720607042312622, + "learning_rate": 3.621946666666667e-05, + "loss": 1.962681884765625, + "step": 206800 + }, + { + "epoch": 27.586666666666666, + "grad_norm": 0.596661388874054, + "learning_rate": 3.62128e-05, + "loss": 1.9644792175292969, + "step": 206900 + }, + { + "epoch": 27.6, + "grad_norm": 0.5807399749755859, + "learning_rate": 3.620613333333334e-05, + "loss": 1.9695454406738282, + "step": 207000 + }, + { + "epoch": 27.613333333333333, + "grad_norm": 0.5708223581314087, + "learning_rate": 3.619946666666667e-05, + "loss": 1.963555145263672, + "step": 207100 + }, + { + "epoch": 27.626666666666665, + "grad_norm": 0.5941387414932251, + "learning_rate": 3.6192800000000004e-05, + "loss": 1.9702226257324218, + "step": 207200 + }, + { + "epoch": 27.64, + "grad_norm": 0.568341851234436, + "learning_rate": 3.6186133333333336e-05, + "loss": 1.9717837524414064, + "step": 207300 + }, + { + "epoch": 27.653333333333332, + "grad_norm": 0.5917574167251587, + "learning_rate": 3.617946666666667e-05, + "loss": 1.9671156311035156, + "step": 207400 + }, + { + "epoch": 27.666666666666668, + "grad_norm": 0.5893895030021667, + "learning_rate": 3.61728e-05, + "loss": 1.9676268005371094, + "step": 207500 + }, + { + "epoch": 27.68, + "grad_norm": 0.5909178256988525, + "learning_rate": 3.61662e-05, + "loss": 1.9683328247070313, + "step": 207600 + }, + { + "epoch": 27.693333333333335, + "grad_norm": 0.601280689239502, + "learning_rate": 3.615953333333333e-05, + "loss": 1.9703788757324219, + "step": 207700 + }, + { + "epoch": 27.706666666666667, + "grad_norm": 0.5855022072792053, + "learning_rate": 3.615286666666667e-05, + "loss": 1.9706231689453124, + "step": 207800 + }, + { + "epoch": 27.72, + "grad_norm": 0.5767050385475159, + "learning_rate": 3.61462e-05, + "loss": 1.9699440002441406, + "step": 207900 + }, + { + "epoch": 27.733333333333334, + "grad_norm": 0.5902249813079834, + "learning_rate": 3.6139533333333335e-05, + "loss": 1.964881134033203, + "step": 208000 + }, + { + "epoch": 27.746666666666666, + "grad_norm": 0.5634693503379822, + "learning_rate": 3.613286666666667e-05, + "loss": 1.9723870849609375, + "step": 208100 + }, + { + "epoch": 27.76, + "grad_norm": 0.6080737113952637, + "learning_rate": 3.6126200000000007e-05, + "loss": 1.968502197265625, + "step": 208200 + }, + { + "epoch": 27.773333333333333, + "grad_norm": 0.5652815103530884, + "learning_rate": 3.611953333333333e-05, + "loss": 1.9760067749023438, + "step": 208300 + }, + { + "epoch": 27.786666666666665, + "grad_norm": 0.5851750373840332, + "learning_rate": 3.6112866666666664e-05, + "loss": 1.9739956665039062, + "step": 208400 + }, + { + "epoch": 27.8, + "grad_norm": 0.5799194574356079, + "learning_rate": 3.61062e-05, + "loss": 1.9709002685546875, + "step": 208500 + }, + { + "epoch": 27.813333333333333, + "grad_norm": 0.607318103313446, + "learning_rate": 3.6099533333333336e-05, + "loss": 1.9714559936523437, + "step": 208600 + }, + { + "epoch": 27.826666666666668, + "grad_norm": 0.570615828037262, + "learning_rate": 3.609286666666667e-05, + "loss": 1.9726187133789062, + "step": 208700 + }, + { + "epoch": 27.84, + "grad_norm": 0.5773420929908752, + "learning_rate": 3.60862e-05, + "loss": 1.9740589904785155, + "step": 208800 + }, + { + "epoch": 27.85333333333333, + "grad_norm": 0.5621991753578186, + "learning_rate": 3.607953333333334e-05, + "loss": 1.9761262512207032, + "step": 208900 + }, + { + "epoch": 27.866666666666667, + "grad_norm": 0.5754197835922241, + "learning_rate": 3.6072866666666665e-05, + "loss": 1.9745481872558595, + "step": 209000 + }, + { + "epoch": 27.88, + "grad_norm": 0.5961983799934387, + "learning_rate": 3.60662e-05, + "loss": 1.9757182312011718, + "step": 209100 + }, + { + "epoch": 27.893333333333334, + "grad_norm": 0.5758571028709412, + "learning_rate": 3.6059533333333336e-05, + "loss": 1.974927978515625, + "step": 209200 + }, + { + "epoch": 27.906666666666666, + "grad_norm": 0.5897004008293152, + "learning_rate": 3.605286666666667e-05, + "loss": 1.97732177734375, + "step": 209300 + }, + { + "epoch": 27.92, + "grad_norm": 0.5555986762046814, + "learning_rate": 3.60462e-05, + "loss": 1.97912841796875, + "step": 209400 + }, + { + "epoch": 27.933333333333334, + "grad_norm": 0.5782080888748169, + "learning_rate": 3.603953333333334e-05, + "loss": 1.9758847045898438, + "step": 209500 + }, + { + "epoch": 27.946666666666665, + "grad_norm": 0.5872431397438049, + "learning_rate": 3.603293333333333e-05, + "loss": 1.9807801818847657, + "step": 209600 + }, + { + "epoch": 27.96, + "grad_norm": 0.6015269756317139, + "learning_rate": 3.602626666666667e-05, + "loss": 1.9804434204101562, + "step": 209700 + }, + { + "epoch": 27.973333333333333, + "grad_norm": 0.6062453985214233, + "learning_rate": 3.60196e-05, + "loss": 1.9817405700683595, + "step": 209800 + }, + { + "epoch": 27.986666666666668, + "grad_norm": 0.5964453220367432, + "learning_rate": 3.6012933333333335e-05, + "loss": 1.9792985534667968, + "step": 209900 + }, + { + "epoch": 28.0, + "grad_norm": 0.5917948484420776, + "learning_rate": 3.600626666666667e-05, + "loss": 1.9797233581542968, + "step": 210000 + }, + { + "epoch": 28.013333333333332, + "grad_norm": 0.5753324031829834, + "learning_rate": 3.59996e-05, + "loss": 1.8963658142089843, + "step": 210100 + }, + { + "epoch": 28.026666666666667, + "grad_norm": 0.5823311805725098, + "learning_rate": 3.599293333333333e-05, + "loss": 1.90039794921875, + "step": 210200 + }, + { + "epoch": 28.04, + "grad_norm": 0.6098815202713013, + "learning_rate": 3.598626666666667e-05, + "loss": 1.9037353515625, + "step": 210300 + }, + { + "epoch": 28.053333333333335, + "grad_norm": 0.591463565826416, + "learning_rate": 3.5979600000000004e-05, + "loss": 1.9031809997558593, + "step": 210400 + }, + { + "epoch": 28.066666666666666, + "grad_norm": 0.6484287977218628, + "learning_rate": 3.5972933333333336e-05, + "loss": 1.90722900390625, + "step": 210500 + }, + { + "epoch": 28.08, + "grad_norm": 0.5851206183433533, + "learning_rate": 3.596626666666667e-05, + "loss": 1.907454376220703, + "step": 210600 + }, + { + "epoch": 28.093333333333334, + "grad_norm": 0.5893003940582275, + "learning_rate": 3.595960000000001e-05, + "loss": 1.9102708435058593, + "step": 210700 + }, + { + "epoch": 28.106666666666666, + "grad_norm": 0.5920806527137756, + "learning_rate": 3.595293333333333e-05, + "loss": 1.906302490234375, + "step": 210800 + }, + { + "epoch": 28.12, + "grad_norm": 0.5820571780204773, + "learning_rate": 3.5946266666666665e-05, + "loss": 1.9106333923339844, + "step": 210900 + }, + { + "epoch": 28.133333333333333, + "grad_norm": 0.6000703573226929, + "learning_rate": 3.5939600000000004e-05, + "loss": 1.9108970642089844, + "step": 211000 + }, + { + "epoch": 28.14666666666667, + "grad_norm": 0.6043274402618408, + "learning_rate": 3.5932933333333336e-05, + "loss": 1.9127066040039062, + "step": 211100 + }, + { + "epoch": 28.16, + "grad_norm": 0.589103639125824, + "learning_rate": 3.592626666666667e-05, + "loss": 1.9146939086914063, + "step": 211200 + }, + { + "epoch": 28.173333333333332, + "grad_norm": 0.5709384679794312, + "learning_rate": 3.59196e-05, + "loss": 1.9095561218261718, + "step": 211300 + }, + { + "epoch": 28.186666666666667, + "grad_norm": 0.6060921549797058, + "learning_rate": 3.591293333333334e-05, + "loss": 1.912783203125, + "step": 211400 + }, + { + "epoch": 28.2, + "grad_norm": 0.6131394505500793, + "learning_rate": 3.5906266666666665e-05, + "loss": 1.9097198486328124, + "step": 211500 + }, + { + "epoch": 28.213333333333335, + "grad_norm": 0.5825812220573425, + "learning_rate": 3.589966666666667e-05, + "loss": 1.9186415100097656, + "step": 211600 + }, + { + "epoch": 28.226666666666667, + "grad_norm": 0.5944445729255676, + "learning_rate": 3.5893000000000003e-05, + "loss": 1.9187173461914062, + "step": 211700 + }, + { + "epoch": 28.24, + "grad_norm": 0.5729975700378418, + "learning_rate": 3.5886333333333336e-05, + "loss": 1.9198851013183593, + "step": 211800 + }, + { + "epoch": 28.253333333333334, + "grad_norm": 0.6041490435600281, + "learning_rate": 3.587966666666667e-05, + "loss": 1.9200152587890624, + "step": 211900 + }, + { + "epoch": 28.266666666666666, + "grad_norm": 0.6032606363296509, + "learning_rate": 3.5873e-05, + "loss": 1.9239161682128907, + "step": 212000 + }, + { + "epoch": 28.28, + "grad_norm": 0.6063857078552246, + "learning_rate": 3.586633333333333e-05, + "loss": 1.921931915283203, + "step": 212100 + }, + { + "epoch": 28.293333333333333, + "grad_norm": 0.6095187664031982, + "learning_rate": 3.585966666666667e-05, + "loss": 1.9245355224609375, + "step": 212200 + }, + { + "epoch": 28.306666666666665, + "grad_norm": 0.6013233065605164, + "learning_rate": 3.5853000000000004e-05, + "loss": 1.920060577392578, + "step": 212300 + }, + { + "epoch": 28.32, + "grad_norm": 0.5829028487205505, + "learning_rate": 3.5846333333333336e-05, + "loss": 1.923076171875, + "step": 212400 + }, + { + "epoch": 28.333333333333332, + "grad_norm": 0.6095953583717346, + "learning_rate": 3.583966666666667e-05, + "loss": 1.9266374206542969, + "step": 212500 + }, + { + "epoch": 28.346666666666668, + "grad_norm": 0.6123775243759155, + "learning_rate": 3.5833e-05, + "loss": 1.923944091796875, + "step": 212600 + }, + { + "epoch": 28.36, + "grad_norm": 0.6038895845413208, + "learning_rate": 3.582633333333333e-05, + "loss": 1.9256845092773438, + "step": 212700 + }, + { + "epoch": 28.373333333333335, + "grad_norm": 0.5949887037277222, + "learning_rate": 3.5819666666666665e-05, + "loss": 1.925125732421875, + "step": 212800 + }, + { + "epoch": 28.386666666666667, + "grad_norm": 0.5919845104217529, + "learning_rate": 3.5813000000000004e-05, + "loss": 1.92591796875, + "step": 212900 + }, + { + "epoch": 28.4, + "grad_norm": 0.5925742387771606, + "learning_rate": 3.5806333333333336e-05, + "loss": 1.9260887145996093, + "step": 213000 + }, + { + "epoch": 28.413333333333334, + "grad_norm": 0.5978710055351257, + "learning_rate": 3.579966666666667e-05, + "loss": 1.9299237060546874, + "step": 213100 + }, + { + "epoch": 28.426666666666666, + "grad_norm": 0.6156143546104431, + "learning_rate": 3.5793e-05, + "loss": 1.9283975219726563, + "step": 213200 + }, + { + "epoch": 28.44, + "grad_norm": 0.6074989438056946, + "learning_rate": 3.578633333333333e-05, + "loss": 1.9329901123046875, + "step": 213300 + }, + { + "epoch": 28.453333333333333, + "grad_norm": 0.6070049405097961, + "learning_rate": 3.5779666666666666e-05, + "loss": 1.9311386108398438, + "step": 213400 + }, + { + "epoch": 28.466666666666665, + "grad_norm": 0.627319872379303, + "learning_rate": 3.5773e-05, + "loss": 1.93387451171875, + "step": 213500 + }, + { + "epoch": 28.48, + "grad_norm": 0.6070690155029297, + "learning_rate": 3.57664e-05, + "loss": 1.933914337158203, + "step": 213600 + }, + { + "epoch": 28.493333333333332, + "grad_norm": 0.6085487008094788, + "learning_rate": 3.5759733333333336e-05, + "loss": 1.9377674865722656, + "step": 213700 + }, + { + "epoch": 28.506666666666668, + "grad_norm": 0.6239941120147705, + "learning_rate": 3.575306666666667e-05, + "loss": 1.9339775085449218, + "step": 213800 + }, + { + "epoch": 28.52, + "grad_norm": 0.6024758219718933, + "learning_rate": 3.57464e-05, + "loss": 1.9365673828125, + "step": 213900 + }, + { + "epoch": 28.533333333333335, + "grad_norm": 0.6340709924697876, + "learning_rate": 3.573973333333334e-05, + "loss": 1.9337480163574219, + "step": 214000 + }, + { + "epoch": 28.546666666666667, + "grad_norm": 0.5885015726089478, + "learning_rate": 3.573306666666667e-05, + "loss": 1.935907745361328, + "step": 214100 + }, + { + "epoch": 28.56, + "grad_norm": 0.6116124391555786, + "learning_rate": 3.5726400000000004e-05, + "loss": 1.9376171875, + "step": 214200 + }, + { + "epoch": 28.573333333333334, + "grad_norm": 0.5820707082748413, + "learning_rate": 3.571973333333333e-05, + "loss": 1.9389529418945313, + "step": 214300 + }, + { + "epoch": 28.586666666666666, + "grad_norm": 0.5670823454856873, + "learning_rate": 3.571306666666667e-05, + "loss": 1.938601531982422, + "step": 214400 + }, + { + "epoch": 28.6, + "grad_norm": 0.6194178462028503, + "learning_rate": 3.57064e-05, + "loss": 1.9407998657226562, + "step": 214500 + }, + { + "epoch": 28.613333333333333, + "grad_norm": 0.6202486753463745, + "learning_rate": 3.569973333333333e-05, + "loss": 1.9379768371582031, + "step": 214600 + }, + { + "epoch": 28.626666666666665, + "grad_norm": 0.6014044880867004, + "learning_rate": 3.569306666666667e-05, + "loss": 1.9406600952148438, + "step": 214700 + }, + { + "epoch": 28.64, + "grad_norm": 0.6088877320289612, + "learning_rate": 3.5686400000000004e-05, + "loss": 1.9415878295898437, + "step": 214800 + }, + { + "epoch": 28.653333333333332, + "grad_norm": 0.6067546010017395, + "learning_rate": 3.567973333333334e-05, + "loss": 1.9418251037597656, + "step": 214900 + }, + { + "epoch": 28.666666666666668, + "grad_norm": 0.5925686955451965, + "learning_rate": 3.567306666666667e-05, + "loss": 1.9406690979003907, + "step": 215000 + }, + { + "epoch": 28.68, + "grad_norm": 0.6045867800712585, + "learning_rate": 3.56664e-05, + "loss": 1.9402273559570313, + "step": 215100 + }, + { + "epoch": 28.693333333333335, + "grad_norm": 0.6042197942733765, + "learning_rate": 3.5659733333333334e-05, + "loss": 1.9467068481445313, + "step": 215200 + }, + { + "epoch": 28.706666666666667, + "grad_norm": 0.6190263628959656, + "learning_rate": 3.5653066666666666e-05, + "loss": 1.9422659301757812, + "step": 215300 + }, + { + "epoch": 28.72, + "grad_norm": 0.6239484548568726, + "learning_rate": 3.5646400000000005e-05, + "loss": 1.9453689575195312, + "step": 215400 + }, + { + "epoch": 28.733333333333334, + "grad_norm": 0.5972684621810913, + "learning_rate": 3.563973333333334e-05, + "loss": 1.945398406982422, + "step": 215500 + }, + { + "epoch": 28.746666666666666, + "grad_norm": 0.6258236169815063, + "learning_rate": 3.5633133333333336e-05, + "loss": 1.947290802001953, + "step": 215600 + }, + { + "epoch": 28.76, + "grad_norm": 0.6004676818847656, + "learning_rate": 3.562646666666667e-05, + "loss": 1.9425833129882812, + "step": 215700 + }, + { + "epoch": 28.773333333333333, + "grad_norm": 0.6066743731498718, + "learning_rate": 3.56198e-05, + "loss": 1.9450428771972657, + "step": 215800 + }, + { + "epoch": 28.786666666666665, + "grad_norm": 0.6220128536224365, + "learning_rate": 3.561313333333334e-05, + "loss": 1.9462014770507812, + "step": 215900 + }, + { + "epoch": 28.8, + "grad_norm": 0.6090360283851624, + "learning_rate": 3.5606466666666665e-05, + "loss": 1.9469538879394532, + "step": 216000 + }, + { + "epoch": 28.813333333333333, + "grad_norm": 0.5942463278770447, + "learning_rate": 3.55998e-05, + "loss": 1.9527642822265625, + "step": 216100 + }, + { + "epoch": 28.826666666666668, + "grad_norm": 0.6522825360298157, + "learning_rate": 3.5593133333333337e-05, + "loss": 1.947396240234375, + "step": 216200 + }, + { + "epoch": 28.84, + "grad_norm": 0.6047014594078064, + "learning_rate": 3.558646666666667e-05, + "loss": 1.953114013671875, + "step": 216300 + }, + { + "epoch": 28.85333333333333, + "grad_norm": 0.6015614867210388, + "learning_rate": 3.55798e-05, + "loss": 1.9483316040039063, + "step": 216400 + }, + { + "epoch": 28.866666666666667, + "grad_norm": 0.588139533996582, + "learning_rate": 3.557313333333333e-05, + "loss": 1.95369384765625, + "step": 216500 + }, + { + "epoch": 28.88, + "grad_norm": 0.6121417880058289, + "learning_rate": 3.556646666666667e-05, + "loss": 1.9504942321777343, + "step": 216600 + }, + { + "epoch": 28.893333333333334, + "grad_norm": 0.6152277588844299, + "learning_rate": 3.5559800000000005e-05, + "loss": 1.9528102111816406, + "step": 216700 + }, + { + "epoch": 28.906666666666666, + "grad_norm": 0.5864558815956116, + "learning_rate": 3.555313333333333e-05, + "loss": 1.9556744384765625, + "step": 216800 + }, + { + "epoch": 28.92, + "grad_norm": 0.6150722503662109, + "learning_rate": 3.554646666666667e-05, + "loss": 1.9557850646972657, + "step": 216900 + }, + { + "epoch": 28.933333333333334, + "grad_norm": 0.6126604676246643, + "learning_rate": 3.55398e-05, + "loss": 1.957655487060547, + "step": 217000 + }, + { + "epoch": 28.946666666666665, + "grad_norm": 0.6212007403373718, + "learning_rate": 3.5533133333333334e-05, + "loss": 1.952845458984375, + "step": 217100 + }, + { + "epoch": 28.96, + "grad_norm": 0.6093801856040955, + "learning_rate": 3.5526466666666666e-05, + "loss": 1.9500978088378906, + "step": 217200 + }, + { + "epoch": 28.973333333333333, + "grad_norm": 0.6195286512374878, + "learning_rate": 3.5519800000000005e-05, + "loss": 1.9568482971191405, + "step": 217300 + }, + { + "epoch": 28.986666666666668, + "grad_norm": 0.6141052842140198, + "learning_rate": 3.551313333333334e-05, + "loss": 1.9551716613769532, + "step": 217400 + }, + { + "epoch": 29.0, + "grad_norm": 0.6240456700325012, + "learning_rate": 3.550646666666666e-05, + "loss": 1.9593727111816406, + "step": 217500 + }, + { + "epoch": 29.013333333333332, + "grad_norm": 0.6141709089279175, + "learning_rate": 3.549986666666667e-05, + "loss": 1.8731291198730469, + "step": 217600 + }, + { + "epoch": 29.026666666666667, + "grad_norm": 0.6149386763572693, + "learning_rate": 3.54932e-05, + "loss": 1.8731167602539063, + "step": 217700 + }, + { + "epoch": 29.04, + "grad_norm": 0.6323212385177612, + "learning_rate": 3.548653333333333e-05, + "loss": 1.871314697265625, + "step": 217800 + }, + { + "epoch": 29.053333333333335, + "grad_norm": 0.6484255790710449, + "learning_rate": 3.5479866666666665e-05, + "loss": 1.8755429077148438, + "step": 217900 + }, + { + "epoch": 29.066666666666666, + "grad_norm": 0.6272088289260864, + "learning_rate": 3.54732e-05, + "loss": 1.8729833984375, + "step": 218000 + }, + { + "epoch": 29.08, + "grad_norm": 0.6121836304664612, + "learning_rate": 3.546653333333334e-05, + "loss": 1.87686767578125, + "step": 218100 + }, + { + "epoch": 29.093333333333334, + "grad_norm": 0.6073644757270813, + "learning_rate": 3.545986666666667e-05, + "loss": 1.8814959716796875, + "step": 218200 + }, + { + "epoch": 29.106666666666666, + "grad_norm": 0.6518145799636841, + "learning_rate": 3.54532e-05, + "loss": 1.8825758361816407, + "step": 218300 + }, + { + "epoch": 29.12, + "grad_norm": 0.6225592494010925, + "learning_rate": 3.544653333333334e-05, + "loss": 1.8884323120117188, + "step": 218400 + }, + { + "epoch": 29.133333333333333, + "grad_norm": 0.6254275441169739, + "learning_rate": 3.5439866666666666e-05, + "loss": 1.8810324096679687, + "step": 218500 + }, + { + "epoch": 29.14666666666667, + "grad_norm": 0.6428091526031494, + "learning_rate": 3.54332e-05, + "loss": 1.8841964721679687, + "step": 218600 + }, + { + "epoch": 29.16, + "grad_norm": 0.6066590547561646, + "learning_rate": 3.542653333333334e-05, + "loss": 1.8872183227539063, + "step": 218700 + }, + { + "epoch": 29.173333333333332, + "grad_norm": 0.6072599291801453, + "learning_rate": 3.541986666666667e-05, + "loss": 1.888301544189453, + "step": 218800 + }, + { + "epoch": 29.186666666666667, + "grad_norm": 0.6293680667877197, + "learning_rate": 3.54132e-05, + "loss": 1.891027374267578, + "step": 218900 + }, + { + "epoch": 29.2, + "grad_norm": 0.6067629456520081, + "learning_rate": 3.5406533333333334e-05, + "loss": 1.8863351440429688, + "step": 219000 + }, + { + "epoch": 29.213333333333335, + "grad_norm": 0.5995946526527405, + "learning_rate": 3.539986666666667e-05, + "loss": 1.8922694396972657, + "step": 219100 + }, + { + "epoch": 29.226666666666667, + "grad_norm": 0.6211652159690857, + "learning_rate": 3.5393200000000005e-05, + "loss": 1.8898019409179687, + "step": 219200 + }, + { + "epoch": 29.24, + "grad_norm": 0.6280918717384338, + "learning_rate": 3.538653333333333e-05, + "loss": 1.892053680419922, + "step": 219300 + }, + { + "epoch": 29.253333333333334, + "grad_norm": 0.6313039064407349, + "learning_rate": 3.537986666666667e-05, + "loss": 1.8970526123046876, + "step": 219400 + }, + { + "epoch": 29.266666666666666, + "grad_norm": 0.6204928159713745, + "learning_rate": 3.53732e-05, + "loss": 1.8941494750976562, + "step": 219500 + }, + { + "epoch": 29.28, + "grad_norm": 0.6099953055381775, + "learning_rate": 3.53666e-05, + "loss": 1.8936624145507812, + "step": 219600 + }, + { + "epoch": 29.293333333333333, + "grad_norm": 0.6010173559188843, + "learning_rate": 3.5359933333333333e-05, + "loss": 1.8962115478515624, + "step": 219700 + }, + { + "epoch": 29.306666666666665, + "grad_norm": 0.6187490820884705, + "learning_rate": 3.5353266666666666e-05, + "loss": 1.8990090942382813, + "step": 219800 + }, + { + "epoch": 29.32, + "grad_norm": 0.6025696396827698, + "learning_rate": 3.5346600000000005e-05, + "loss": 1.899090576171875, + "step": 219900 + }, + { + "epoch": 29.333333333333332, + "grad_norm": 0.6101509928703308, + "learning_rate": 3.533993333333334e-05, + "loss": 1.8987478637695312, + "step": 220000 + }, + { + "epoch": 29.346666666666668, + "grad_norm": 0.6143890619277954, + "learning_rate": 3.533326666666667e-05, + "loss": 1.8977235412597657, + "step": 220100 + }, + { + "epoch": 29.36, + "grad_norm": 0.628218412399292, + "learning_rate": 3.53266e-05, + "loss": 1.9033868408203125, + "step": 220200 + }, + { + "epoch": 29.373333333333335, + "grad_norm": 0.6350439786911011, + "learning_rate": 3.5319933333333334e-05, + "loss": 1.8994992065429688, + "step": 220300 + }, + { + "epoch": 29.386666666666667, + "grad_norm": 0.6280394792556763, + "learning_rate": 3.5313266666666666e-05, + "loss": 1.9002314758300782, + "step": 220400 + }, + { + "epoch": 29.4, + "grad_norm": 0.6128666996955872, + "learning_rate": 3.53066e-05, + "loss": 1.9010800170898436, + "step": 220500 + }, + { + "epoch": 29.413333333333334, + "grad_norm": 0.636648952960968, + "learning_rate": 3.529993333333334e-05, + "loss": 1.9034559631347656, + "step": 220600 + }, + { + "epoch": 29.426666666666666, + "grad_norm": 0.6053557395935059, + "learning_rate": 3.529326666666667e-05, + "loss": 1.9045362854003907, + "step": 220700 + }, + { + "epoch": 29.44, + "grad_norm": 0.6217942833900452, + "learning_rate": 3.52866e-05, + "loss": 1.9091796875, + "step": 220800 + }, + { + "epoch": 29.453333333333333, + "grad_norm": 0.6204298734664917, + "learning_rate": 3.5279933333333334e-05, + "loss": 1.9048878479003906, + "step": 220900 + }, + { + "epoch": 29.466666666666665, + "grad_norm": 0.618732750415802, + "learning_rate": 3.527326666666667e-05, + "loss": 1.906492919921875, + "step": 221000 + }, + { + "epoch": 29.48, + "grad_norm": 0.6301329135894775, + "learning_rate": 3.52666e-05, + "loss": 1.9087861633300782, + "step": 221100 + }, + { + "epoch": 29.493333333333332, + "grad_norm": 0.6499351859092712, + "learning_rate": 3.525993333333333e-05, + "loss": 1.9047959899902345, + "step": 221200 + }, + { + "epoch": 29.506666666666668, + "grad_norm": 0.6507390141487122, + "learning_rate": 3.525326666666667e-05, + "loss": 1.9099015808105468, + "step": 221300 + }, + { + "epoch": 29.52, + "grad_norm": 0.6272179484367371, + "learning_rate": 3.52466e-05, + "loss": 1.9120497131347656, + "step": 221400 + }, + { + "epoch": 29.533333333333335, + "grad_norm": 0.6267956495285034, + "learning_rate": 3.5239933333333335e-05, + "loss": 1.9138475036621094, + "step": 221500 + }, + { + "epoch": 29.546666666666667, + "grad_norm": 0.6450830101966858, + "learning_rate": 3.5233333333333334e-05, + "loss": 1.910146484375, + "step": 221600 + }, + { + "epoch": 29.56, + "grad_norm": 0.618111789226532, + "learning_rate": 3.5226666666666666e-05, + "loss": 1.912001495361328, + "step": 221700 + }, + { + "epoch": 29.573333333333334, + "grad_norm": 0.6099219918251038, + "learning_rate": 3.5220000000000005e-05, + "loss": 1.9133241271972656, + "step": 221800 + }, + { + "epoch": 29.586666666666666, + "grad_norm": 0.6343381404876709, + "learning_rate": 3.521333333333334e-05, + "loss": 1.9161970520019531, + "step": 221900 + }, + { + "epoch": 29.6, + "grad_norm": 0.6319106817245483, + "learning_rate": 3.520666666666667e-05, + "loss": 1.9144822692871093, + "step": 222000 + }, + { + "epoch": 29.613333333333333, + "grad_norm": 0.6410270929336548, + "learning_rate": 3.52e-05, + "loss": 1.9168218994140624, + "step": 222100 + }, + { + "epoch": 29.626666666666665, + "grad_norm": 0.6186690330505371, + "learning_rate": 3.5193333333333334e-05, + "loss": 1.9132901000976563, + "step": 222200 + }, + { + "epoch": 29.64, + "grad_norm": 0.6537576913833618, + "learning_rate": 3.5186666666666666e-05, + "loss": 1.913599853515625, + "step": 222300 + }, + { + "epoch": 29.653333333333332, + "grad_norm": 0.6208250522613525, + "learning_rate": 3.518e-05, + "loss": 1.9217842102050782, + "step": 222400 + }, + { + "epoch": 29.666666666666668, + "grad_norm": 0.613583505153656, + "learning_rate": 3.517333333333334e-05, + "loss": 1.9240948486328124, + "step": 222500 + }, + { + "epoch": 29.68, + "grad_norm": 0.6155552864074707, + "learning_rate": 3.516666666666667e-05, + "loss": 1.9173712158203124, + "step": 222600 + }, + { + "epoch": 29.693333333333335, + "grad_norm": 0.6076659560203552, + "learning_rate": 3.516e-05, + "loss": 1.9172421264648438, + "step": 222700 + }, + { + "epoch": 29.706666666666667, + "grad_norm": 0.6185587048530579, + "learning_rate": 3.5153333333333334e-05, + "loss": 1.9175602722167968, + "step": 222800 + }, + { + "epoch": 29.72, + "grad_norm": 0.7048514485359192, + "learning_rate": 3.514666666666667e-05, + "loss": 1.9214109802246093, + "step": 222900 + }, + { + "epoch": 29.733333333333334, + "grad_norm": 0.648773729801178, + "learning_rate": 3.514e-05, + "loss": 1.9188169860839843, + "step": 223000 + }, + { + "epoch": 29.746666666666666, + "grad_norm": 0.6280819177627563, + "learning_rate": 3.513333333333334e-05, + "loss": 1.920139923095703, + "step": 223100 + }, + { + "epoch": 29.76, + "grad_norm": 0.5966166257858276, + "learning_rate": 3.512666666666667e-05, + "loss": 1.9221627807617188, + "step": 223200 + }, + { + "epoch": 29.773333333333333, + "grad_norm": 0.6173168420791626, + "learning_rate": 3.512e-05, + "loss": 1.924539794921875, + "step": 223300 + }, + { + "epoch": 29.786666666666665, + "grad_norm": 0.6122573018074036, + "learning_rate": 3.5113333333333335e-05, + "loss": 1.9245417785644532, + "step": 223400 + }, + { + "epoch": 29.8, + "grad_norm": 0.6305630803108215, + "learning_rate": 3.5106666666666674e-05, + "loss": 1.9254067993164063, + "step": 223500 + }, + { + "epoch": 29.813333333333333, + "grad_norm": 0.6451953053474426, + "learning_rate": 3.510006666666667e-05, + "loss": 1.9255630493164062, + "step": 223600 + }, + { + "epoch": 29.826666666666668, + "grad_norm": 0.6407766342163086, + "learning_rate": 3.5093400000000005e-05, + "loss": 1.9248118591308594, + "step": 223700 + }, + { + "epoch": 29.84, + "grad_norm": 0.627864420413971, + "learning_rate": 3.508673333333333e-05, + "loss": 1.9239891052246094, + "step": 223800 + }, + { + "epoch": 29.85333333333333, + "grad_norm": 0.6414026618003845, + "learning_rate": 3.508006666666667e-05, + "loss": 1.9280026245117188, + "step": 223900 + }, + { + "epoch": 29.866666666666667, + "grad_norm": 0.628401517868042, + "learning_rate": 3.50734e-05, + "loss": 1.9231156921386718, + "step": 224000 + }, + { + "epoch": 29.88, + "grad_norm": 0.6258181929588318, + "learning_rate": 3.5066733333333334e-05, + "loss": 1.926804962158203, + "step": 224100 + }, + { + "epoch": 29.893333333333334, + "grad_norm": 0.6521549820899963, + "learning_rate": 3.5060066666666667e-05, + "loss": 1.928329620361328, + "step": 224200 + }, + { + "epoch": 29.906666666666666, + "grad_norm": 0.6125701069831848, + "learning_rate": 3.5053400000000006e-05, + "loss": 1.9327384948730468, + "step": 224300 + }, + { + "epoch": 29.92, + "grad_norm": 0.627855658531189, + "learning_rate": 3.504673333333334e-05, + "loss": 1.927176971435547, + "step": 224400 + }, + { + "epoch": 29.933333333333334, + "grad_norm": 0.6648500561714172, + "learning_rate": 3.504006666666667e-05, + "loss": 1.9303471374511718, + "step": 224500 + }, + { + "epoch": 29.946666666666665, + "grad_norm": 0.6420508027076721, + "learning_rate": 3.50334e-05, + "loss": 1.9273306274414062, + "step": 224600 + }, + { + "epoch": 29.96, + "grad_norm": 0.6278482675552368, + "learning_rate": 3.5026733333333335e-05, + "loss": 1.9288194274902344, + "step": 224700 + }, + { + "epoch": 29.973333333333333, + "grad_norm": 0.5989758372306824, + "learning_rate": 3.502006666666667e-05, + "loss": 1.930438232421875, + "step": 224800 + }, + { + "epoch": 29.986666666666668, + "grad_norm": 0.6249135136604309, + "learning_rate": 3.50134e-05, + "loss": 1.9307928466796875, + "step": 224900 + }, + { + "epoch": 30.0, + "grad_norm": 0.6104187965393066, + "learning_rate": 3.500673333333334e-05, + "loss": 1.9333016967773438, + "step": 225000 + }, + { + "epoch": 30.013333333333332, + "grad_norm": 0.6293696761131287, + "learning_rate": 3.500006666666667e-05, + "loss": 1.8476805114746093, + "step": 225100 + }, + { + "epoch": 30.026666666666667, + "grad_norm": 0.6297232508659363, + "learning_rate": 3.49934e-05, + "loss": 1.845593719482422, + "step": 225200 + }, + { + "epoch": 30.04, + "grad_norm": 0.6466991305351257, + "learning_rate": 3.4986733333333335e-05, + "loss": 1.8487274169921875, + "step": 225300 + }, + { + "epoch": 30.053333333333335, + "grad_norm": 0.6279363036155701, + "learning_rate": 3.498006666666667e-05, + "loss": 1.8542190551757813, + "step": 225400 + }, + { + "epoch": 30.066666666666666, + "grad_norm": 0.644621729850769, + "learning_rate": 3.49734e-05, + "loss": 1.8500912475585938, + "step": 225500 + }, + { + "epoch": 30.08, + "grad_norm": 0.6442613005638123, + "learning_rate": 3.49668e-05, + "loss": 1.8522134399414063, + "step": 225600 + }, + { + "epoch": 30.093333333333334, + "grad_norm": 0.619848370552063, + "learning_rate": 3.496013333333333e-05, + "loss": 1.8562557983398438, + "step": 225700 + }, + { + "epoch": 30.106666666666666, + "grad_norm": 0.6512423157691956, + "learning_rate": 3.495346666666667e-05, + "loss": 1.8515933227539063, + "step": 225800 + }, + { + "epoch": 30.12, + "grad_norm": 0.6524722576141357, + "learning_rate": 3.49468e-05, + "loss": 1.859434814453125, + "step": 225900 + }, + { + "epoch": 30.133333333333333, + "grad_norm": 0.6379408836364746, + "learning_rate": 3.4940133333333335e-05, + "loss": 1.8575267028808593, + "step": 226000 + }, + { + "epoch": 30.14666666666667, + "grad_norm": 0.6395164132118225, + "learning_rate": 3.493346666666667e-05, + "loss": 1.8595333862304688, + "step": 226100 + }, + { + "epoch": 30.16, + "grad_norm": 0.6441857814788818, + "learning_rate": 3.4926800000000006e-05, + "loss": 1.860304718017578, + "step": 226200 + }, + { + "epoch": 30.173333333333332, + "grad_norm": 0.6614034175872803, + "learning_rate": 3.492013333333333e-05, + "loss": 1.8629020690917968, + "step": 226300 + }, + { + "epoch": 30.186666666666667, + "grad_norm": 0.6289846897125244, + "learning_rate": 3.4913466666666664e-05, + "loss": 1.8599790954589843, + "step": 226400 + }, + { + "epoch": 30.2, + "grad_norm": 0.6655375957489014, + "learning_rate": 3.49068e-05, + "loss": 1.8705145263671874, + "step": 226500 + }, + { + "epoch": 30.213333333333335, + "grad_norm": 0.6143892407417297, + "learning_rate": 3.4900133333333335e-05, + "loss": 1.8633598327636718, + "step": 226600 + }, + { + "epoch": 30.226666666666667, + "grad_norm": 0.6168250441551208, + "learning_rate": 3.489346666666667e-05, + "loss": 1.866641845703125, + "step": 226700 + }, + { + "epoch": 30.24, + "grad_norm": 0.6689651012420654, + "learning_rate": 3.48868e-05, + "loss": 1.863162841796875, + "step": 226800 + }, + { + "epoch": 30.253333333333334, + "grad_norm": 0.6845178604125977, + "learning_rate": 3.488013333333334e-05, + "loss": 1.8685459899902344, + "step": 226900 + }, + { + "epoch": 30.266666666666666, + "grad_norm": 0.6048876047134399, + "learning_rate": 3.487346666666667e-05, + "loss": 1.8716763305664061, + "step": 227000 + }, + { + "epoch": 30.28, + "grad_norm": 0.6472257375717163, + "learning_rate": 3.4866799999999996e-05, + "loss": 1.8674250793457032, + "step": 227100 + }, + { + "epoch": 30.293333333333333, + "grad_norm": 0.6502028703689575, + "learning_rate": 3.4860133333333335e-05, + "loss": 1.8718875122070313, + "step": 227200 + }, + { + "epoch": 30.306666666666665, + "grad_norm": 0.6495829820632935, + "learning_rate": 3.485346666666667e-05, + "loss": 1.8765740966796876, + "step": 227300 + }, + { + "epoch": 30.32, + "grad_norm": 0.6474784016609192, + "learning_rate": 3.48468e-05, + "loss": 1.8689016723632812, + "step": 227400 + }, + { + "epoch": 30.333333333333332, + "grad_norm": 0.652237057685852, + "learning_rate": 3.484013333333334e-05, + "loss": 1.8737103271484374, + "step": 227500 + }, + { + "epoch": 30.346666666666668, + "grad_norm": 0.6202793717384338, + "learning_rate": 3.483346666666667e-05, + "loss": 1.8773468017578125, + "step": 227600 + }, + { + "epoch": 30.36, + "grad_norm": 0.6398950815200806, + "learning_rate": 3.482686666666667e-05, + "loss": 1.8740312194824218, + "step": 227700 + }, + { + "epoch": 30.373333333333335, + "grad_norm": 0.679435670375824, + "learning_rate": 3.48202e-05, + "loss": 1.8724604797363282, + "step": 227800 + }, + { + "epoch": 30.386666666666667, + "grad_norm": 0.6420354843139648, + "learning_rate": 3.4813533333333335e-05, + "loss": 1.8720265197753907, + "step": 227900 + }, + { + "epoch": 30.4, + "grad_norm": 0.6483940482139587, + "learning_rate": 3.4806866666666674e-05, + "loss": 1.8791566467285157, + "step": 228000 + }, + { + "epoch": 30.413333333333334, + "grad_norm": 0.6276984810829163, + "learning_rate": 3.48002e-05, + "loss": 1.8788121032714844, + "step": 228100 + }, + { + "epoch": 30.426666666666666, + "grad_norm": 0.6200658082962036, + "learning_rate": 3.479353333333333e-05, + "loss": 1.8798104858398437, + "step": 228200 + }, + { + "epoch": 30.44, + "grad_norm": 0.6153615117073059, + "learning_rate": 3.478686666666667e-05, + "loss": 1.878331298828125, + "step": 228300 + }, + { + "epoch": 30.453333333333333, + "grad_norm": 0.664184033870697, + "learning_rate": 3.47802e-05, + "loss": 1.879515380859375, + "step": 228400 + }, + { + "epoch": 30.466666666666665, + "grad_norm": 0.6094868779182434, + "learning_rate": 3.4773533333333335e-05, + "loss": 1.8832115173339843, + "step": 228500 + }, + { + "epoch": 30.48, + "grad_norm": 0.6478238701820374, + "learning_rate": 3.476686666666667e-05, + "loss": 1.8848756408691407, + "step": 228600 + }, + { + "epoch": 30.493333333333332, + "grad_norm": 0.6715877652168274, + "learning_rate": 3.4760200000000006e-05, + "loss": 1.8839694213867189, + "step": 228700 + }, + { + "epoch": 30.506666666666668, + "grad_norm": 0.65712571144104, + "learning_rate": 3.475353333333333e-05, + "loss": 1.8820346069335938, + "step": 228800 + }, + { + "epoch": 30.52, + "grad_norm": 0.6317829489707947, + "learning_rate": 3.4746866666666664e-05, + "loss": 1.8841021728515626, + "step": 228900 + }, + { + "epoch": 30.533333333333335, + "grad_norm": 0.654059886932373, + "learning_rate": 3.47402e-05, + "loss": 1.8871124267578125, + "step": 229000 + }, + { + "epoch": 30.546666666666667, + "grad_norm": 0.6421239972114563, + "learning_rate": 3.4733533333333336e-05, + "loss": 1.8896517944335938, + "step": 229100 + }, + { + "epoch": 30.56, + "grad_norm": 0.6650997996330261, + "learning_rate": 3.472686666666667e-05, + "loss": 1.8887339782714845, + "step": 229200 + }, + { + "epoch": 30.573333333333334, + "grad_norm": 0.6281959414482117, + "learning_rate": 3.47202e-05, + "loss": 1.8887667846679688, + "step": 229300 + }, + { + "epoch": 30.586666666666666, + "grad_norm": 0.6575733423233032, + "learning_rate": 3.471353333333334e-05, + "loss": 1.889744110107422, + "step": 229400 + }, + { + "epoch": 30.6, + "grad_norm": 0.6337116360664368, + "learning_rate": 3.470686666666667e-05, + "loss": 1.8880189514160157, + "step": 229500 + }, + { + "epoch": 30.613333333333333, + "grad_norm": 0.6612198948860168, + "learning_rate": 3.47002e-05, + "loss": 1.8879634094238282, + "step": 229600 + }, + { + "epoch": 30.626666666666665, + "grad_norm": 0.6376072764396667, + "learning_rate": 3.46936e-05, + "loss": 1.8931094360351564, + "step": 229700 + }, + { + "epoch": 30.64, + "grad_norm": 0.6279535889625549, + "learning_rate": 3.4686933333333335e-05, + "loss": 1.890915069580078, + "step": 229800 + }, + { + "epoch": 30.653333333333332, + "grad_norm": 0.6393465399742126, + "learning_rate": 3.468026666666667e-05, + "loss": 1.889798583984375, + "step": 229900 + }, + { + "epoch": 30.666666666666668, + "grad_norm": 0.6623516082763672, + "learning_rate": 3.46736e-05, + "loss": 1.8915354919433593, + "step": 230000 + }, + { + "epoch": 30.68, + "grad_norm": 0.628612756729126, + "learning_rate": 3.466693333333333e-05, + "loss": 1.8947076416015625, + "step": 230100 + }, + { + "epoch": 30.693333333333335, + "grad_norm": 0.6295715570449829, + "learning_rate": 3.466026666666667e-05, + "loss": 1.8961087036132813, + "step": 230200 + }, + { + "epoch": 30.706666666666667, + "grad_norm": 0.6464623212814331, + "learning_rate": 3.46536e-05, + "loss": 1.8944891357421876, + "step": 230300 + }, + { + "epoch": 30.72, + "grad_norm": 0.6213361620903015, + "learning_rate": 3.4646933333333335e-05, + "loss": 1.8963340759277343, + "step": 230400 + }, + { + "epoch": 30.733333333333334, + "grad_norm": 0.6335080862045288, + "learning_rate": 3.464026666666667e-05, + "loss": 1.8955998229980469, + "step": 230500 + }, + { + "epoch": 30.746666666666666, + "grad_norm": 0.6538170576095581, + "learning_rate": 3.46336e-05, + "loss": 1.895076141357422, + "step": 230600 + }, + { + "epoch": 30.76, + "grad_norm": 0.6481654047966003, + "learning_rate": 3.462693333333333e-05, + "loss": 1.896536865234375, + "step": 230700 + }, + { + "epoch": 30.773333333333333, + "grad_norm": 0.6416306495666504, + "learning_rate": 3.4620266666666664e-05, + "loss": 1.8968507385253905, + "step": 230800 + }, + { + "epoch": 30.786666666666665, + "grad_norm": 0.6325493454933167, + "learning_rate": 3.4613600000000003e-05, + "loss": 1.8965896606445312, + "step": 230900 + }, + { + "epoch": 30.8, + "grad_norm": 0.6334678530693054, + "learning_rate": 3.4606933333333336e-05, + "loss": 1.8993826293945313, + "step": 231000 + }, + { + "epoch": 30.813333333333333, + "grad_norm": 0.642789363861084, + "learning_rate": 3.460026666666667e-05, + "loss": 1.899892578125, + "step": 231100 + }, + { + "epoch": 30.826666666666668, + "grad_norm": 0.6502810716629028, + "learning_rate": 3.459360000000001e-05, + "loss": 1.9054344177246094, + "step": 231200 + }, + { + "epoch": 30.84, + "grad_norm": 0.6091868281364441, + "learning_rate": 3.458693333333333e-05, + "loss": 1.9026506042480469, + "step": 231300 + }, + { + "epoch": 30.85333333333333, + "grad_norm": 0.656499981880188, + "learning_rate": 3.4580266666666665e-05, + "loss": 1.9024732971191407, + "step": 231400 + }, + { + "epoch": 30.866666666666667, + "grad_norm": 0.6632031202316284, + "learning_rate": 3.45736e-05, + "loss": 1.9011004638671876, + "step": 231500 + }, + { + "epoch": 30.88, + "grad_norm": 0.6348013281822205, + "learning_rate": 3.4566933333333336e-05, + "loss": 1.9027983093261718, + "step": 231600 + }, + { + "epoch": 30.893333333333334, + "grad_norm": 0.6693485975265503, + "learning_rate": 3.4560333333333335e-05, + "loss": 1.9033485412597657, + "step": 231700 + }, + { + "epoch": 30.906666666666666, + "grad_norm": 0.628446638584137, + "learning_rate": 3.455366666666667e-05, + "loss": 1.905799102783203, + "step": 231800 + }, + { + "epoch": 30.92, + "grad_norm": 0.6061755418777466, + "learning_rate": 3.4547e-05, + "loss": 1.9038815307617187, + "step": 231900 + }, + { + "epoch": 30.933333333333334, + "grad_norm": 0.6528656482696533, + "learning_rate": 3.454033333333334e-05, + "loss": 1.8988880920410156, + "step": 232000 + }, + { + "epoch": 30.946666666666665, + "grad_norm": 0.6434139609336853, + "learning_rate": 3.453366666666667e-05, + "loss": 1.9047633361816407, + "step": 232100 + }, + { + "epoch": 30.96, + "grad_norm": 0.621820330619812, + "learning_rate": 3.4527e-05, + "loss": 1.906195068359375, + "step": 232200 + }, + { + "epoch": 30.973333333333333, + "grad_norm": 0.6167011857032776, + "learning_rate": 3.4520333333333336e-05, + "loss": 1.9075782775878907, + "step": 232300 + }, + { + "epoch": 30.986666666666668, + "grad_norm": 0.6764289736747742, + "learning_rate": 3.451366666666667e-05, + "loss": 1.9077426147460939, + "step": 232400 + }, + { + "epoch": 31.0, + "grad_norm": 0.6597962975502014, + "learning_rate": 3.4507e-05, + "loss": 1.9063412475585937, + "step": 232500 + }, + { + "epoch": 31.013333333333332, + "grad_norm": 0.6323487758636475, + "learning_rate": 3.450033333333333e-05, + "loss": 1.8208100891113281, + "step": 232600 + }, + { + "epoch": 31.026666666666667, + "grad_norm": 0.6353087425231934, + "learning_rate": 3.449366666666667e-05, + "loss": 1.8169317626953125, + "step": 232700 + }, + { + "epoch": 31.04, + "grad_norm": 0.6516137719154358, + "learning_rate": 3.4487000000000004e-05, + "loss": 1.8187254333496095, + "step": 232800 + }, + { + "epoch": 31.053333333333335, + "grad_norm": 0.6380991339683533, + "learning_rate": 3.4480333333333336e-05, + "loss": 1.828922119140625, + "step": 232900 + }, + { + "epoch": 31.066666666666666, + "grad_norm": 0.6637365221977234, + "learning_rate": 3.447366666666667e-05, + "loss": 1.8281976318359374, + "step": 233000 + }, + { + "epoch": 31.08, + "grad_norm": 0.6347978115081787, + "learning_rate": 3.4467e-05, + "loss": 1.8291136169433593, + "step": 233100 + }, + { + "epoch": 31.093333333333334, + "grad_norm": 0.6856868863105774, + "learning_rate": 3.446033333333333e-05, + "loss": 1.8266050720214844, + "step": 233200 + }, + { + "epoch": 31.106666666666666, + "grad_norm": 0.6957641839981079, + "learning_rate": 3.4453666666666665e-05, + "loss": 1.8307728576660156, + "step": 233300 + }, + { + "epoch": 31.12, + "grad_norm": 0.657038688659668, + "learning_rate": 3.4447000000000004e-05, + "loss": 1.8359172058105468, + "step": 233400 + }, + { + "epoch": 31.133333333333333, + "grad_norm": 0.6168066263198853, + "learning_rate": 3.4440333333333336e-05, + "loss": 1.8327171325683593, + "step": 233500 + }, + { + "epoch": 31.14666666666667, + "grad_norm": 0.6589761972427368, + "learning_rate": 3.443366666666667e-05, + "loss": 1.8356471252441406, + "step": 233600 + }, + { + "epoch": 31.16, + "grad_norm": 0.656284749507904, + "learning_rate": 3.442706666666667e-05, + "loss": 1.8352957153320313, + "step": 233700 + }, + { + "epoch": 31.173333333333332, + "grad_norm": 0.6507891416549683, + "learning_rate": 3.44204e-05, + "loss": 1.8356683349609375, + "step": 233800 + }, + { + "epoch": 31.186666666666667, + "grad_norm": 0.6691421270370483, + "learning_rate": 3.441373333333334e-05, + "loss": 1.8375747680664063, + "step": 233900 + }, + { + "epoch": 31.2, + "grad_norm": 0.6770158410072327, + "learning_rate": 3.440706666666667e-05, + "loss": 1.8438589477539062, + "step": 234000 + }, + { + "epoch": 31.213333333333335, + "grad_norm": 0.6403542160987854, + "learning_rate": 3.44004e-05, + "loss": 1.8394532775878907, + "step": 234100 + }, + { + "epoch": 31.226666666666667, + "grad_norm": 0.6421419978141785, + "learning_rate": 3.4393733333333336e-05, + "loss": 1.8419064331054686, + "step": 234200 + }, + { + "epoch": 31.24, + "grad_norm": 0.6424593925476074, + "learning_rate": 3.438706666666667e-05, + "loss": 1.839052734375, + "step": 234300 + }, + { + "epoch": 31.253333333333334, + "grad_norm": 0.6520510911941528, + "learning_rate": 3.43804e-05, + "loss": 1.8442149353027344, + "step": 234400 + }, + { + "epoch": 31.266666666666666, + "grad_norm": 0.6459802985191345, + "learning_rate": 3.437373333333333e-05, + "loss": 1.8480723571777344, + "step": 234500 + }, + { + "epoch": 31.28, + "grad_norm": 0.6531192660331726, + "learning_rate": 3.436706666666667e-05, + "loss": 1.8451568603515625, + "step": 234600 + }, + { + "epoch": 31.293333333333333, + "grad_norm": 0.6506422758102417, + "learning_rate": 3.4360400000000004e-05, + "loss": 1.8467247009277343, + "step": 234700 + }, + { + "epoch": 31.306666666666665, + "grad_norm": 0.6557679176330566, + "learning_rate": 3.435373333333333e-05, + "loss": 1.8464105224609375, + "step": 234800 + }, + { + "epoch": 31.32, + "grad_norm": 0.6555748581886292, + "learning_rate": 3.434706666666667e-05, + "loss": 1.8486134338378906, + "step": 234900 + }, + { + "epoch": 31.333333333333332, + "grad_norm": 0.6634244322776794, + "learning_rate": 3.43404e-05, + "loss": 1.8502972412109375, + "step": 235000 + }, + { + "epoch": 31.346666666666668, + "grad_norm": 0.6522782444953918, + "learning_rate": 3.433373333333333e-05, + "loss": 1.8538160705566407, + "step": 235100 + }, + { + "epoch": 31.36, + "grad_norm": 0.6471147537231445, + "learning_rate": 3.4327066666666665e-05, + "loss": 1.8480146789550782, + "step": 235200 + }, + { + "epoch": 31.373333333333335, + "grad_norm": 0.6697273254394531, + "learning_rate": 3.4320400000000004e-05, + "loss": 1.8517044067382813, + "step": 235300 + }, + { + "epoch": 31.386666666666667, + "grad_norm": 0.6725065112113953, + "learning_rate": 3.4313733333333337e-05, + "loss": 1.8513163757324218, + "step": 235400 + }, + { + "epoch": 31.4, + "grad_norm": 0.6726689338684082, + "learning_rate": 3.430706666666667e-05, + "loss": 1.8532307434082032, + "step": 235500 + }, + { + "epoch": 31.413333333333334, + "grad_norm": 0.6598038673400879, + "learning_rate": 3.43004e-05, + "loss": 1.8543743896484375, + "step": 235600 + }, + { + "epoch": 31.426666666666666, + "grad_norm": 0.6628021001815796, + "learning_rate": 3.429380000000001e-05, + "loss": 1.8543577575683594, + "step": 235700 + }, + { + "epoch": 31.44, + "grad_norm": 0.677413284778595, + "learning_rate": 3.428713333333333e-05, + "loss": 1.8539126586914063, + "step": 235800 + }, + { + "epoch": 31.453333333333333, + "grad_norm": 0.6506122350692749, + "learning_rate": 3.4280466666666665e-05, + "loss": 1.8576051330566405, + "step": 235900 + }, + { + "epoch": 31.466666666666665, + "grad_norm": 0.6622093319892883, + "learning_rate": 3.42738e-05, + "loss": 1.8572665405273439, + "step": 236000 + }, + { + "epoch": 31.48, + "grad_norm": 0.674359142780304, + "learning_rate": 3.4267133333333336e-05, + "loss": 1.8588676452636719, + "step": 236100 + }, + { + "epoch": 31.493333333333332, + "grad_norm": 0.6599639058113098, + "learning_rate": 3.426046666666667e-05, + "loss": 1.8583624267578125, + "step": 236200 + }, + { + "epoch": 31.506666666666668, + "grad_norm": 0.6558268666267395, + "learning_rate": 3.42538e-05, + "loss": 1.8596633911132812, + "step": 236300 + }, + { + "epoch": 31.52, + "grad_norm": 0.6776077151298523, + "learning_rate": 3.424713333333334e-05, + "loss": 1.8617288208007812, + "step": 236400 + }, + { + "epoch": 31.533333333333335, + "grad_norm": 0.6699625253677368, + "learning_rate": 3.424046666666667e-05, + "loss": 1.8598435974121095, + "step": 236500 + }, + { + "epoch": 31.546666666666667, + "grad_norm": 0.6473347544670105, + "learning_rate": 3.42338e-05, + "loss": 1.8564553833007813, + "step": 236600 + }, + { + "epoch": 31.56, + "grad_norm": 0.6418144702911377, + "learning_rate": 3.4227133333333336e-05, + "loss": 1.8607228088378907, + "step": 236700 + }, + { + "epoch": 31.573333333333334, + "grad_norm": 0.6646478772163391, + "learning_rate": 3.422046666666667e-05, + "loss": 1.8621051025390625, + "step": 236800 + }, + { + "epoch": 31.586666666666666, + "grad_norm": 0.6577756404876709, + "learning_rate": 3.42138e-05, + "loss": 1.8664056396484374, + "step": 236900 + }, + { + "epoch": 31.6, + "grad_norm": 0.6546629667282104, + "learning_rate": 3.420713333333333e-05, + "loss": 1.8602700805664063, + "step": 237000 + }, + { + "epoch": 31.613333333333333, + "grad_norm": 0.6508590579032898, + "learning_rate": 3.420046666666667e-05, + "loss": 1.8613612365722656, + "step": 237100 + }, + { + "epoch": 31.626666666666665, + "grad_norm": 0.6625661253929138, + "learning_rate": 3.4193800000000005e-05, + "loss": 1.8683642578125, + "step": 237200 + }, + { + "epoch": 31.64, + "grad_norm": 0.6706848740577698, + "learning_rate": 3.418713333333334e-05, + "loss": 1.8645219421386718, + "step": 237300 + }, + { + "epoch": 31.653333333333332, + "grad_norm": 0.6599859595298767, + "learning_rate": 3.418046666666667e-05, + "loss": 1.8640052795410156, + "step": 237400 + }, + { + "epoch": 31.666666666666668, + "grad_norm": 0.6782610416412354, + "learning_rate": 3.41738e-05, + "loss": 1.8663507080078126, + "step": 237500 + }, + { + "epoch": 31.68, + "grad_norm": 0.6501734852790833, + "learning_rate": 3.4167133333333334e-05, + "loss": 1.864781951904297, + "step": 237600 + }, + { + "epoch": 31.693333333333335, + "grad_norm": 0.6596933603286743, + "learning_rate": 3.416053333333333e-05, + "loss": 1.8692094421386718, + "step": 237700 + }, + { + "epoch": 31.706666666666667, + "grad_norm": 0.6630842685699463, + "learning_rate": 3.4153866666666665e-05, + "loss": 1.8750367736816407, + "step": 237800 + }, + { + "epoch": 31.72, + "grad_norm": 0.6862805485725403, + "learning_rate": 3.4147200000000004e-05, + "loss": 1.8699729919433594, + "step": 237900 + }, + { + "epoch": 31.733333333333334, + "grad_norm": 0.6476590037345886, + "learning_rate": 3.4140533333333336e-05, + "loss": 1.8710263061523438, + "step": 238000 + }, + { + "epoch": 31.746666666666666, + "grad_norm": 0.6775981187820435, + "learning_rate": 3.413386666666667e-05, + "loss": 1.8723735046386718, + "step": 238100 + }, + { + "epoch": 31.76, + "grad_norm": 0.6427512168884277, + "learning_rate": 3.41272e-05, + "loss": 1.8744818115234374, + "step": 238200 + }, + { + "epoch": 31.773333333333333, + "grad_norm": 0.6625904440879822, + "learning_rate": 3.412053333333334e-05, + "loss": 1.8720915222167969, + "step": 238300 + }, + { + "epoch": 31.786666666666665, + "grad_norm": 0.6708217859268188, + "learning_rate": 3.4113866666666665e-05, + "loss": 1.8733248901367188, + "step": 238400 + }, + { + "epoch": 31.8, + "grad_norm": 0.6499980092048645, + "learning_rate": 3.41072e-05, + "loss": 1.8720248413085938, + "step": 238500 + }, + { + "epoch": 31.813333333333333, + "grad_norm": 0.6474357843399048, + "learning_rate": 3.41006e-05, + "loss": 1.875724334716797, + "step": 238600 + }, + { + "epoch": 31.826666666666668, + "grad_norm": 0.639595627784729, + "learning_rate": 3.4093933333333336e-05, + "loss": 1.8767543029785156, + "step": 238700 + }, + { + "epoch": 31.84, + "grad_norm": 0.6569827795028687, + "learning_rate": 3.408726666666667e-05, + "loss": 1.8743658447265625, + "step": 238800 + }, + { + "epoch": 31.85333333333333, + "grad_norm": 0.6573343873023987, + "learning_rate": 3.40806e-05, + "loss": 1.876455078125, + "step": 238900 + }, + { + "epoch": 31.866666666666667, + "grad_norm": 0.6686303019523621, + "learning_rate": 3.407393333333333e-05, + "loss": 1.875361785888672, + "step": 239000 + }, + { + "epoch": 31.88, + "grad_norm": 0.6887635588645935, + "learning_rate": 3.406726666666667e-05, + "loss": 1.87423583984375, + "step": 239100 + }, + { + "epoch": 31.893333333333334, + "grad_norm": 0.6796891093254089, + "learning_rate": 3.4060600000000004e-05, + "loss": 1.878402099609375, + "step": 239200 + }, + { + "epoch": 31.906666666666666, + "grad_norm": 0.7028095722198486, + "learning_rate": 3.4053933333333336e-05, + "loss": 1.879278106689453, + "step": 239300 + }, + { + "epoch": 31.92, + "grad_norm": 0.6571170687675476, + "learning_rate": 3.404726666666667e-05, + "loss": 1.8795460510253905, + "step": 239400 + }, + { + "epoch": 31.933333333333334, + "grad_norm": 0.6626359820365906, + "learning_rate": 3.40406e-05, + "loss": 1.8782347106933595, + "step": 239500 + }, + { + "epoch": 31.946666666666665, + "grad_norm": 0.6341395378112793, + "learning_rate": 3.403393333333333e-05, + "loss": 1.8807855224609376, + "step": 239600 + }, + { + "epoch": 31.96, + "grad_norm": 0.7045288681983948, + "learning_rate": 3.4027266666666665e-05, + "loss": 1.8818238830566407, + "step": 239700 + }, + { + "epoch": 31.973333333333333, + "grad_norm": 0.6587862372398376, + "learning_rate": 3.4020600000000004e-05, + "loss": 1.8825888061523437, + "step": 239800 + }, + { + "epoch": 31.986666666666668, + "grad_norm": 0.6503267288208008, + "learning_rate": 3.4013933333333337e-05, + "loss": 1.8872879028320313, + "step": 239900 + }, + { + "epoch": 32.0, + "grad_norm": 0.6603325605392456, + "learning_rate": 3.400726666666667e-05, + "loss": 1.8781341552734374, + "step": 240000 + }, + { + "epoch": 32.013333333333335, + "grad_norm": 0.6310288906097412, + "learning_rate": 3.40006e-05, + "loss": 1.7969367980957032, + "step": 240100 + }, + { + "epoch": 32.026666666666664, + "grad_norm": 0.6715329885482788, + "learning_rate": 3.399393333333333e-05, + "loss": 1.8000009155273438, + "step": 240200 + }, + { + "epoch": 32.04, + "grad_norm": 0.6543241143226624, + "learning_rate": 3.3987266666666666e-05, + "loss": 1.7961320495605468, + "step": 240300 + }, + { + "epoch": 32.053333333333335, + "grad_norm": 0.6774461269378662, + "learning_rate": 3.3980600000000005e-05, + "loss": 1.8003314208984376, + "step": 240400 + }, + { + "epoch": 32.06666666666667, + "grad_norm": 0.6529948711395264, + "learning_rate": 3.397393333333334e-05, + "loss": 1.8036393737792968, + "step": 240500 + }, + { + "epoch": 32.08, + "grad_norm": 0.6645397543907166, + "learning_rate": 3.396726666666667e-05, + "loss": 1.7999684143066406, + "step": 240600 + }, + { + "epoch": 32.093333333333334, + "grad_norm": 0.6966586112976074, + "learning_rate": 3.39606e-05, + "loss": 1.8084344482421875, + "step": 240700 + }, + { + "epoch": 32.10666666666667, + "grad_norm": 0.6967159509658813, + "learning_rate": 3.395393333333334e-05, + "loss": 1.8040733337402344, + "step": 240800 + }, + { + "epoch": 32.12, + "grad_norm": 0.6923654675483704, + "learning_rate": 3.3947266666666666e-05, + "loss": 1.8065350341796875, + "step": 240900 + }, + { + "epoch": 32.13333333333333, + "grad_norm": 0.6938139200210571, + "learning_rate": 3.39406e-05, + "loss": 1.8069944763183594, + "step": 241000 + }, + { + "epoch": 32.14666666666667, + "grad_norm": 0.6618465781211853, + "learning_rate": 3.393393333333334e-05, + "loss": 1.80832763671875, + "step": 241100 + }, + { + "epoch": 32.16, + "grad_norm": 0.681530773639679, + "learning_rate": 3.392726666666667e-05, + "loss": 1.8130369567871094, + "step": 241200 + }, + { + "epoch": 32.17333333333333, + "grad_norm": 0.692341148853302, + "learning_rate": 3.39206e-05, + "loss": 1.8068063354492188, + "step": 241300 + }, + { + "epoch": 32.18666666666667, + "grad_norm": 0.6659745573997498, + "learning_rate": 3.3913933333333334e-05, + "loss": 1.8177037048339844, + "step": 241400 + }, + { + "epoch": 32.2, + "grad_norm": 0.6756054162979126, + "learning_rate": 3.390726666666667e-05, + "loss": 1.812709503173828, + "step": 241500 + }, + { + "epoch": 32.21333333333333, + "grad_norm": 0.6909893751144409, + "learning_rate": 3.39006e-05, + "loss": 1.8146788024902343, + "step": 241600 + }, + { + "epoch": 32.22666666666667, + "grad_norm": 0.6421316266059875, + "learning_rate": 3.389393333333333e-05, + "loss": 1.8204322814941407, + "step": 241700 + }, + { + "epoch": 32.24, + "grad_norm": 0.6924384236335754, + "learning_rate": 3.388726666666667e-05, + "loss": 1.8170956420898436, + "step": 241800 + }, + { + "epoch": 32.25333333333333, + "grad_norm": 0.7075912356376648, + "learning_rate": 3.38806e-05, + "loss": 1.8158349609375, + "step": 241900 + }, + { + "epoch": 32.266666666666666, + "grad_norm": 0.698880136013031, + "learning_rate": 3.3873933333333334e-05, + "loss": 1.822403564453125, + "step": 242000 + }, + { + "epoch": 32.28, + "grad_norm": 0.6914991736412048, + "learning_rate": 3.386726666666667e-05, + "loss": 1.8238410949707031, + "step": 242100 + }, + { + "epoch": 32.29333333333334, + "grad_norm": 0.6999617218971252, + "learning_rate": 3.3860600000000006e-05, + "loss": 1.8204554748535156, + "step": 242200 + }, + { + "epoch": 32.306666666666665, + "grad_norm": 0.6469098925590515, + "learning_rate": 3.385393333333334e-05, + "loss": 1.8187814331054688, + "step": 242300 + }, + { + "epoch": 32.32, + "grad_norm": 0.6881408095359802, + "learning_rate": 3.3847266666666664e-05, + "loss": 1.823394775390625, + "step": 242400 + }, + { + "epoch": 32.333333333333336, + "grad_norm": 0.6413573622703552, + "learning_rate": 3.38406e-05, + "loss": 1.8220912170410157, + "step": 242500 + }, + { + "epoch": 32.346666666666664, + "grad_norm": 0.6949501633644104, + "learning_rate": 3.3834e-05, + "loss": 1.825587921142578, + "step": 242600 + }, + { + "epoch": 32.36, + "grad_norm": 0.6824288964271545, + "learning_rate": 3.3827333333333334e-05, + "loss": 1.8236434936523438, + "step": 242700 + }, + { + "epoch": 32.373333333333335, + "grad_norm": 0.6769747734069824, + "learning_rate": 3.3820666666666666e-05, + "loss": 1.8265499877929687, + "step": 242800 + }, + { + "epoch": 32.38666666666666, + "grad_norm": 0.663185715675354, + "learning_rate": 3.3814e-05, + "loss": 1.8235643005371094, + "step": 242900 + }, + { + "epoch": 32.4, + "grad_norm": 0.6693112254142761, + "learning_rate": 3.380733333333334e-05, + "loss": 1.830492706298828, + "step": 243000 + }, + { + "epoch": 32.413333333333334, + "grad_norm": 0.6796991229057312, + "learning_rate": 3.3800733333333337e-05, + "loss": 1.8297494506835938, + "step": 243100 + }, + { + "epoch": 32.42666666666667, + "grad_norm": 0.6557438969612122, + "learning_rate": 3.379406666666667e-05, + "loss": 1.8294140625, + "step": 243200 + }, + { + "epoch": 32.44, + "grad_norm": 0.6834737062454224, + "learning_rate": 3.37874e-05, + "loss": 1.8335061645507813, + "step": 243300 + }, + { + "epoch": 32.45333333333333, + "grad_norm": 0.6919399499893188, + "learning_rate": 3.3780733333333333e-05, + "loss": 1.829990997314453, + "step": 243400 + }, + { + "epoch": 32.46666666666667, + "grad_norm": 0.6703587174415588, + "learning_rate": 3.377406666666667e-05, + "loss": 1.8283270263671876, + "step": 243500 + }, + { + "epoch": 32.48, + "grad_norm": 0.6480154991149902, + "learning_rate": 3.37674e-05, + "loss": 1.8319325256347656, + "step": 243600 + }, + { + "epoch": 32.49333333333333, + "grad_norm": 0.6802955865859985, + "learning_rate": 3.376073333333333e-05, + "loss": 1.8309434509277345, + "step": 243700 + }, + { + "epoch": 32.50666666666667, + "grad_norm": 0.6789207458496094, + "learning_rate": 3.375406666666667e-05, + "loss": 1.8343551635742188, + "step": 243800 + }, + { + "epoch": 32.52, + "grad_norm": 0.679716169834137, + "learning_rate": 3.37474e-05, + "loss": 1.8310325622558594, + "step": 243900 + }, + { + "epoch": 32.53333333333333, + "grad_norm": 0.6787630319595337, + "learning_rate": 3.3740733333333334e-05, + "loss": 1.8323744201660157, + "step": 244000 + }, + { + "epoch": 32.54666666666667, + "grad_norm": 0.7034173011779785, + "learning_rate": 3.3734066666666666e-05, + "loss": 1.8383087158203124, + "step": 244100 + }, + { + "epoch": 32.56, + "grad_norm": 0.6853973865509033, + "learning_rate": 3.3727400000000005e-05, + "loss": 1.8405967712402345, + "step": 244200 + }, + { + "epoch": 32.57333333333333, + "grad_norm": 0.6757837533950806, + "learning_rate": 3.372073333333334e-05, + "loss": 1.8397735595703124, + "step": 244300 + }, + { + "epoch": 32.586666666666666, + "grad_norm": 0.7057570815086365, + "learning_rate": 3.371406666666666e-05, + "loss": 1.8403346252441406, + "step": 244400 + }, + { + "epoch": 32.6, + "grad_norm": 0.6852734684944153, + "learning_rate": 3.37074e-05, + "loss": 1.8357850646972655, + "step": 244500 + }, + { + "epoch": 32.61333333333333, + "grad_norm": 0.6865105628967285, + "learning_rate": 3.3700733333333334e-05, + "loss": 1.8388577270507813, + "step": 244600 + }, + { + "epoch": 32.626666666666665, + "grad_norm": 0.6819406747817993, + "learning_rate": 3.3694066666666666e-05, + "loss": 1.8388409423828125, + "step": 244700 + }, + { + "epoch": 32.64, + "grad_norm": 0.70542311668396, + "learning_rate": 3.3687400000000005e-05, + "loss": 1.8410357666015624, + "step": 244800 + }, + { + "epoch": 32.653333333333336, + "grad_norm": 0.6699349284172058, + "learning_rate": 3.368073333333334e-05, + "loss": 1.838839569091797, + "step": 244900 + }, + { + "epoch": 32.666666666666664, + "grad_norm": 0.6589396595954895, + "learning_rate": 3.367406666666667e-05, + "loss": 1.8432624816894532, + "step": 245000 + }, + { + "epoch": 32.68, + "grad_norm": 0.6670289635658264, + "learning_rate": 3.36674e-05, + "loss": 1.8423471069335937, + "step": 245100 + }, + { + "epoch": 32.693333333333335, + "grad_norm": 0.7071298956871033, + "learning_rate": 3.3660733333333335e-05, + "loss": 1.8458381652832032, + "step": 245200 + }, + { + "epoch": 32.70666666666666, + "grad_norm": 0.6842973232269287, + "learning_rate": 3.365406666666667e-05, + "loss": 1.8477865600585937, + "step": 245300 + }, + { + "epoch": 32.72, + "grad_norm": 0.6763595342636108, + "learning_rate": 3.36474e-05, + "loss": 1.8455276489257812, + "step": 245400 + }, + { + "epoch": 32.733333333333334, + "grad_norm": 0.6894487142562866, + "learning_rate": 3.364073333333334e-05, + "loss": 1.847926025390625, + "step": 245500 + }, + { + "epoch": 32.74666666666667, + "grad_norm": 0.6884575486183167, + "learning_rate": 3.363406666666667e-05, + "loss": 1.8473049926757812, + "step": 245600 + }, + { + "epoch": 32.76, + "grad_norm": 0.6874258518218994, + "learning_rate": 3.36274e-05, + "loss": 1.8455709838867187, + "step": 245700 + }, + { + "epoch": 32.77333333333333, + "grad_norm": 0.6681150197982788, + "learning_rate": 3.3620733333333335e-05, + "loss": 1.8474746704101563, + "step": 245800 + }, + { + "epoch": 32.78666666666667, + "grad_norm": 0.6818782687187195, + "learning_rate": 3.361406666666667e-05, + "loss": 1.848689727783203, + "step": 245900 + }, + { + "epoch": 32.8, + "grad_norm": 0.6926629543304443, + "learning_rate": 3.36074e-05, + "loss": 1.8480201721191407, + "step": 246000 + }, + { + "epoch": 32.81333333333333, + "grad_norm": 0.6802074313163757, + "learning_rate": 3.360073333333333e-05, + "loss": 1.8487611389160157, + "step": 246100 + }, + { + "epoch": 32.82666666666667, + "grad_norm": 0.6938923597335815, + "learning_rate": 3.359406666666667e-05, + "loss": 1.8549391174316405, + "step": 246200 + }, + { + "epoch": 32.84, + "grad_norm": 0.6887032389640808, + "learning_rate": 3.35874e-05, + "loss": 1.855552978515625, + "step": 246300 + }, + { + "epoch": 32.85333333333333, + "grad_norm": 0.6876346468925476, + "learning_rate": 3.3580733333333335e-05, + "loss": 1.8523348999023437, + "step": 246400 + }, + { + "epoch": 32.86666666666667, + "grad_norm": 0.6914822459220886, + "learning_rate": 3.357406666666667e-05, + "loss": 1.851287841796875, + "step": 246500 + }, + { + "epoch": 32.88, + "grad_norm": 0.6880086660385132, + "learning_rate": 3.35674e-05, + "loss": 1.8532257080078125, + "step": 246600 + }, + { + "epoch": 32.89333333333333, + "grad_norm": 0.6851861476898193, + "learning_rate": 3.356073333333333e-05, + "loss": 1.8526493835449218, + "step": 246700 + }, + { + "epoch": 32.906666666666666, + "grad_norm": 0.7228900194168091, + "learning_rate": 3.3554066666666664e-05, + "loss": 1.8538876342773438, + "step": 246800 + }, + { + "epoch": 32.92, + "grad_norm": 0.6968467831611633, + "learning_rate": 3.3547400000000003e-05, + "loss": 1.855828857421875, + "step": 246900 + }, + { + "epoch": 32.93333333333333, + "grad_norm": 0.6718273162841797, + "learning_rate": 3.3540733333333336e-05, + "loss": 1.8609310913085937, + "step": 247000 + }, + { + "epoch": 32.946666666666665, + "grad_norm": 0.7059205174446106, + "learning_rate": 3.3534133333333335e-05, + "loss": 1.8553521728515625, + "step": 247100 + }, + { + "epoch": 32.96, + "grad_norm": 0.6735067963600159, + "learning_rate": 3.352746666666667e-05, + "loss": 1.8593675231933593, + "step": 247200 + }, + { + "epoch": 32.973333333333336, + "grad_norm": 0.6527106165885925, + "learning_rate": 3.35208e-05, + "loss": 1.8580506896972657, + "step": 247300 + }, + { + "epoch": 32.986666666666665, + "grad_norm": 0.6713843941688538, + "learning_rate": 3.351413333333334e-05, + "loss": 1.8553984069824219, + "step": 247400 + }, + { + "epoch": 33.0, + "grad_norm": 0.6805854439735413, + "learning_rate": 3.350746666666667e-05, + "loss": 1.8589930725097656, + "step": 247500 + }, + { + "epoch": 33.013333333333335, + "grad_norm": 0.6813168525695801, + "learning_rate": 3.3500799999999996e-05, + "loss": 1.7653323364257814, + "step": 247600 + }, + { + "epoch": 33.026666666666664, + "grad_norm": 0.7006181478500366, + "learning_rate": 3.3494133333333335e-05, + "loss": 1.7744679260253906, + "step": 247700 + }, + { + "epoch": 33.04, + "grad_norm": 0.6603790521621704, + "learning_rate": 3.348746666666667e-05, + "loss": 1.7725636291503906, + "step": 247800 + }, + { + "epoch": 33.053333333333335, + "grad_norm": 0.7163404226303101, + "learning_rate": 3.34808e-05, + "loss": 1.7759190368652344, + "step": 247900 + }, + { + "epoch": 33.06666666666667, + "grad_norm": 0.6999438405036926, + "learning_rate": 3.347413333333333e-05, + "loss": 1.779423828125, + "step": 248000 + }, + { + "epoch": 33.08, + "grad_norm": 0.6900789737701416, + "learning_rate": 3.346746666666667e-05, + "loss": 1.777518768310547, + "step": 248100 + }, + { + "epoch": 33.093333333333334, + "grad_norm": 0.6616639494895935, + "learning_rate": 3.346086666666667e-05, + "loss": 1.7815655517578124, + "step": 248200 + }, + { + "epoch": 33.10666666666667, + "grad_norm": 0.6825656890869141, + "learning_rate": 3.34542e-05, + "loss": 1.7781207275390625, + "step": 248300 + }, + { + "epoch": 33.12, + "grad_norm": 0.6620200872421265, + "learning_rate": 3.3447533333333335e-05, + "loss": 1.780341796875, + "step": 248400 + }, + { + "epoch": 33.13333333333333, + "grad_norm": 0.69339919090271, + "learning_rate": 3.3440866666666674e-05, + "loss": 1.7857955932617187, + "step": 248500 + }, + { + "epoch": 33.14666666666667, + "grad_norm": 0.6670458316802979, + "learning_rate": 3.34342e-05, + "loss": 1.782757568359375, + "step": 248600 + }, + { + "epoch": 33.16, + "grad_norm": 0.6833922863006592, + "learning_rate": 3.342753333333333e-05, + "loss": 1.7865505981445313, + "step": 248700 + }, + { + "epoch": 33.17333333333333, + "grad_norm": 0.691870927810669, + "learning_rate": 3.3420866666666664e-05, + "loss": 1.7900071716308594, + "step": 248800 + }, + { + "epoch": 33.18666666666667, + "grad_norm": 0.6759406924247742, + "learning_rate": 3.34142e-05, + "loss": 1.7894091796875, + "step": 248900 + }, + { + "epoch": 33.2, + "grad_norm": 0.6733843684196472, + "learning_rate": 3.3407533333333335e-05, + "loss": 1.789012451171875, + "step": 249000 + }, + { + "epoch": 33.21333333333333, + "grad_norm": 0.6950940489768982, + "learning_rate": 3.340086666666667e-05, + "loss": 1.7880499267578125, + "step": 249100 + }, + { + "epoch": 33.22666666666667, + "grad_norm": 0.7324302792549133, + "learning_rate": 3.3394200000000006e-05, + "loss": 1.7905299377441406, + "step": 249200 + }, + { + "epoch": 33.24, + "grad_norm": 0.6907392144203186, + "learning_rate": 3.338753333333334e-05, + "loss": 1.7943400573730468, + "step": 249300 + }, + { + "epoch": 33.25333333333333, + "grad_norm": 0.7105041742324829, + "learning_rate": 3.3380866666666664e-05, + "loss": 1.7948751831054688, + "step": 249400 + }, + { + "epoch": 33.266666666666666, + "grad_norm": 0.709616482257843, + "learning_rate": 3.33742e-05, + "loss": 1.7902720642089844, + "step": 249500 + }, + { + "epoch": 33.28, + "grad_norm": 0.6986458897590637, + "learning_rate": 3.3367533333333335e-05, + "loss": 1.7960736083984374, + "step": 249600 + }, + { + "epoch": 33.29333333333334, + "grad_norm": 0.6758502125740051, + "learning_rate": 3.336086666666667e-05, + "loss": 1.7959979248046876, + "step": 249700 + }, + { + "epoch": 33.306666666666665, + "grad_norm": 0.6880955100059509, + "learning_rate": 3.33542e-05, + "loss": 1.7931544494628906, + "step": 249800 + }, + { + "epoch": 33.32, + "grad_norm": 0.7262503504753113, + "learning_rate": 3.334753333333334e-05, + "loss": 1.7994598388671874, + "step": 249900 + }, + { + "epoch": 33.333333333333336, + "grad_norm": 0.7109691500663757, + "learning_rate": 3.334086666666667e-05, + "loss": 1.79959716796875, + "step": 250000 + }, + { + "epoch": 33.346666666666664, + "grad_norm": 0.6842638850212097, + "learning_rate": 3.3334200000000003e-05, + "loss": 1.8011337280273438, + "step": 250100 + }, + { + "epoch": 33.36, + "grad_norm": 0.6685046553611755, + "learning_rate": 3.3327533333333336e-05, + "loss": 1.7983401489257813, + "step": 250200 + }, + { + "epoch": 33.373333333333335, + "grad_norm": 0.6885914206504822, + "learning_rate": 3.332086666666667e-05, + "loss": 1.7981385803222656, + "step": 250300 + }, + { + "epoch": 33.38666666666666, + "grad_norm": 0.6753001809120178, + "learning_rate": 3.33142e-05, + "loss": 1.801946258544922, + "step": 250400 + }, + { + "epoch": 33.4, + "grad_norm": 0.7187413573265076, + "learning_rate": 3.330753333333333e-05, + "loss": 1.8074136352539063, + "step": 250500 + }, + { + "epoch": 33.413333333333334, + "grad_norm": 0.6833614706993103, + "learning_rate": 3.330086666666667e-05, + "loss": 1.8049317932128905, + "step": 250600 + }, + { + "epoch": 33.42666666666667, + "grad_norm": 0.7071197032928467, + "learning_rate": 3.3294200000000004e-05, + "loss": 1.806915283203125, + "step": 250700 + }, + { + "epoch": 33.44, + "grad_norm": 0.6831562519073486, + "learning_rate": 3.3287533333333336e-05, + "loss": 1.8139138793945313, + "step": 250800 + }, + { + "epoch": 33.45333333333333, + "grad_norm": 0.6773768663406372, + "learning_rate": 3.328086666666667e-05, + "loss": 1.8078269958496094, + "step": 250900 + }, + { + "epoch": 33.46666666666667, + "grad_norm": 0.7057144045829773, + "learning_rate": 3.32742e-05, + "loss": 1.8035978698730468, + "step": 251000 + }, + { + "epoch": 33.48, + "grad_norm": 0.6799418926239014, + "learning_rate": 3.326753333333333e-05, + "loss": 1.8070053100585937, + "step": 251100 + }, + { + "epoch": 33.49333333333333, + "grad_norm": 0.7026559710502625, + "learning_rate": 3.3260866666666665e-05, + "loss": 1.8107217407226563, + "step": 251200 + }, + { + "epoch": 33.50666666666667, + "grad_norm": 0.7009078860282898, + "learning_rate": 3.3254200000000004e-05, + "loss": 1.8101768493652344, + "step": 251300 + }, + { + "epoch": 33.52, + "grad_norm": 0.6963510513305664, + "learning_rate": 3.3247533333333337e-05, + "loss": 1.8111842346191407, + "step": 251400 + }, + { + "epoch": 33.53333333333333, + "grad_norm": 0.7202256321907043, + "learning_rate": 3.324086666666667e-05, + "loss": 1.8143753051757812, + "step": 251500 + }, + { + "epoch": 33.54666666666667, + "grad_norm": 0.7055407166481018, + "learning_rate": 3.32342e-05, + "loss": 1.809178924560547, + "step": 251600 + }, + { + "epoch": 33.56, + "grad_norm": 0.6829138398170471, + "learning_rate": 3.322753333333333e-05, + "loss": 1.8132537841796874, + "step": 251700 + }, + { + "epoch": 33.57333333333333, + "grad_norm": 0.7111719250679016, + "learning_rate": 3.3220866666666666e-05, + "loss": 1.814945831298828, + "step": 251800 + }, + { + "epoch": 33.586666666666666, + "grad_norm": 0.686894953250885, + "learning_rate": 3.32142e-05, + "loss": 1.8139251708984374, + "step": 251900 + }, + { + "epoch": 33.6, + "grad_norm": 0.717078685760498, + "learning_rate": 3.320753333333334e-05, + "loss": 1.8149430847167969, + "step": 252000 + }, + { + "epoch": 33.61333333333333, + "grad_norm": 0.7175689935684204, + "learning_rate": 3.320086666666667e-05, + "loss": 1.816144256591797, + "step": 252100 + }, + { + "epoch": 33.626666666666665, + "grad_norm": 0.683018684387207, + "learning_rate": 3.319426666666667e-05, + "loss": 1.8191485595703125, + "step": 252200 + }, + { + "epoch": 33.64, + "grad_norm": 0.7148421406745911, + "learning_rate": 3.31876e-05, + "loss": 1.818320770263672, + "step": 252300 + }, + { + "epoch": 33.653333333333336, + "grad_norm": 0.7053855061531067, + "learning_rate": 3.318093333333333e-05, + "loss": 1.8194677734375, + "step": 252400 + }, + { + "epoch": 33.666666666666664, + "grad_norm": 0.7079534530639648, + "learning_rate": 3.317426666666667e-05, + "loss": 1.81727783203125, + "step": 252500 + }, + { + "epoch": 33.68, + "grad_norm": 0.7095150351524353, + "learning_rate": 3.3167600000000004e-05, + "loss": 1.8225425720214843, + "step": 252600 + }, + { + "epoch": 33.693333333333335, + "grad_norm": 0.69334477186203, + "learning_rate": 3.316093333333333e-05, + "loss": 1.8201156616210938, + "step": 252700 + }, + { + "epoch": 33.70666666666666, + "grad_norm": 0.6913406848907471, + "learning_rate": 3.315426666666667e-05, + "loss": 1.8216618347167968, + "step": 252800 + }, + { + "epoch": 33.72, + "grad_norm": 0.7094120979309082, + "learning_rate": 3.31476e-05, + "loss": 1.8205288696289061, + "step": 252900 + }, + { + "epoch": 33.733333333333334, + "grad_norm": 0.7051302790641785, + "learning_rate": 3.314093333333333e-05, + "loss": 1.8198191833496093, + "step": 253000 + }, + { + "epoch": 33.74666666666667, + "grad_norm": 0.7253535985946655, + "learning_rate": 3.313426666666667e-05, + "loss": 1.8211686706542969, + "step": 253100 + }, + { + "epoch": 33.76, + "grad_norm": 0.7110514044761658, + "learning_rate": 3.3127600000000004e-05, + "loss": 1.8267140197753906, + "step": 253200 + }, + { + "epoch": 33.77333333333333, + "grad_norm": 0.7230038046836853, + "learning_rate": 3.312093333333334e-05, + "loss": 1.8259141540527344, + "step": 253300 + }, + { + "epoch": 33.78666666666667, + "grad_norm": 0.6794722080230713, + "learning_rate": 3.311426666666667e-05, + "loss": 1.8242117309570312, + "step": 253400 + }, + { + "epoch": 33.8, + "grad_norm": 0.7026447653770447, + "learning_rate": 3.31076e-05, + "loss": 1.8272193908691405, + "step": 253500 + }, + { + "epoch": 33.81333333333333, + "grad_norm": 0.6905506253242493, + "learning_rate": 3.3100933333333334e-05, + "loss": 1.8256301879882812, + "step": 253600 + }, + { + "epoch": 33.82666666666667, + "grad_norm": 0.7163878679275513, + "learning_rate": 3.3094266666666666e-05, + "loss": 1.8273219299316406, + "step": 253700 + }, + { + "epoch": 33.84, + "grad_norm": 0.7006620764732361, + "learning_rate": 3.3087600000000005e-05, + "loss": 1.8279637145996093, + "step": 253800 + }, + { + "epoch": 33.85333333333333, + "grad_norm": 0.7368113994598389, + "learning_rate": 3.308093333333334e-05, + "loss": 1.8289633178710938, + "step": 253900 + }, + { + "epoch": 33.86666666666667, + "grad_norm": 0.7007164359092712, + "learning_rate": 3.307426666666667e-05, + "loss": 1.8291307067871094, + "step": 254000 + }, + { + "epoch": 33.88, + "grad_norm": 0.6749239563941956, + "learning_rate": 3.30676e-05, + "loss": 1.8294178771972656, + "step": 254100 + }, + { + "epoch": 33.89333333333333, + "grad_norm": 0.6939826011657715, + "learning_rate": 3.3061e-05, + "loss": 1.8320030212402343, + "step": 254200 + }, + { + "epoch": 33.906666666666666, + "grad_norm": 0.6852236390113831, + "learning_rate": 3.305433333333334e-05, + "loss": 1.8298947143554687, + "step": 254300 + }, + { + "epoch": 33.92, + "grad_norm": 0.6890901923179626, + "learning_rate": 3.3047666666666665e-05, + "loss": 1.8333465576171875, + "step": 254400 + }, + { + "epoch": 33.93333333333333, + "grad_norm": 0.6870790719985962, + "learning_rate": 3.3041e-05, + "loss": 1.8343376159667968, + "step": 254500 + }, + { + "epoch": 33.946666666666665, + "grad_norm": 0.6900056004524231, + "learning_rate": 3.3034333333333337e-05, + "loss": 1.8305508422851562, + "step": 254600 + }, + { + "epoch": 33.96, + "grad_norm": 0.725274920463562, + "learning_rate": 3.302766666666667e-05, + "loss": 1.8356878662109375, + "step": 254700 + }, + { + "epoch": 33.973333333333336, + "grad_norm": 0.7070014476776123, + "learning_rate": 3.3021e-05, + "loss": 1.8370289611816406, + "step": 254800 + }, + { + "epoch": 33.986666666666665, + "grad_norm": 0.671153724193573, + "learning_rate": 3.3014333333333333e-05, + "loss": 1.8323648071289063, + "step": 254900 + }, + { + "epoch": 34.0, + "grad_norm": 0.722389280796051, + "learning_rate": 3.300766666666667e-05, + "loss": 1.8307501220703124, + "step": 255000 + }, + { + "epoch": 34.013333333333335, + "grad_norm": 0.6944375038146973, + "learning_rate": 3.3001000000000005e-05, + "loss": 1.7463754272460938, + "step": 255100 + }, + { + "epoch": 34.026666666666664, + "grad_norm": 0.7085298895835876, + "learning_rate": 3.299433333333333e-05, + "loss": 1.7458438110351562, + "step": 255200 + }, + { + "epoch": 34.04, + "grad_norm": 0.7206888794898987, + "learning_rate": 3.298766666666667e-05, + "loss": 1.7499029541015625, + "step": 255300 + }, + { + "epoch": 34.053333333333335, + "grad_norm": 0.7031662464141846, + "learning_rate": 3.2981e-05, + "loss": 1.748662109375, + "step": 255400 + }, + { + "epoch": 34.06666666666667, + "grad_norm": 0.6964542269706726, + "learning_rate": 3.2974333333333334e-05, + "loss": 1.7524285888671876, + "step": 255500 + }, + { + "epoch": 34.08, + "grad_norm": 0.684666097164154, + "learning_rate": 3.2967666666666666e-05, + "loss": 1.7483273315429688, + "step": 255600 + }, + { + "epoch": 34.093333333333334, + "grad_norm": 0.7105111479759216, + "learning_rate": 3.2961000000000005e-05, + "loss": 1.7552597045898437, + "step": 255700 + }, + { + "epoch": 34.10666666666667, + "grad_norm": 0.7125686407089233, + "learning_rate": 3.295433333333334e-05, + "loss": 1.7612779235839844, + "step": 255800 + }, + { + "epoch": 34.12, + "grad_norm": 0.7236320972442627, + "learning_rate": 3.294766666666666e-05, + "loss": 1.7570318603515624, + "step": 255900 + }, + { + "epoch": 34.13333333333333, + "grad_norm": 0.7234290242195129, + "learning_rate": 3.2941e-05, + "loss": 1.7590721130371094, + "step": 256000 + }, + { + "epoch": 34.14666666666667, + "grad_norm": 0.709517776966095, + "learning_rate": 3.2934333333333334e-05, + "loss": 1.7588279724121094, + "step": 256100 + }, + { + "epoch": 34.16, + "grad_norm": 0.7075774669647217, + "learning_rate": 3.292773333333333e-05, + "loss": 1.7636314392089845, + "step": 256200 + }, + { + "epoch": 34.17333333333333, + "grad_norm": 0.685980498790741, + "learning_rate": 3.2921066666666666e-05, + "loss": 1.7642453002929688, + "step": 256300 + }, + { + "epoch": 34.18666666666667, + "grad_norm": 0.6789040565490723, + "learning_rate": 3.29144e-05, + "loss": 1.7647459411621094, + "step": 256400 + }, + { + "epoch": 34.2, + "grad_norm": 0.7118276357650757, + "learning_rate": 3.290773333333334e-05, + "loss": 1.7657359313964844, + "step": 256500 + }, + { + "epoch": 34.21333333333333, + "grad_norm": 0.7182782292366028, + "learning_rate": 3.290106666666667e-05, + "loss": 1.767525634765625, + "step": 256600 + }, + { + "epoch": 34.22666666666667, + "grad_norm": 0.6663193106651306, + "learning_rate": 3.28944e-05, + "loss": 1.7640966796875, + "step": 256700 + }, + { + "epoch": 34.24, + "grad_norm": 0.6728143692016602, + "learning_rate": 3.288773333333334e-05, + "loss": 1.7657148742675781, + "step": 256800 + }, + { + "epoch": 34.25333333333333, + "grad_norm": 0.7225044369697571, + "learning_rate": 3.2881066666666666e-05, + "loss": 1.771612091064453, + "step": 256900 + }, + { + "epoch": 34.266666666666666, + "grad_norm": 0.6851556897163391, + "learning_rate": 3.28744e-05, + "loss": 1.7695832824707032, + "step": 257000 + }, + { + "epoch": 34.28, + "grad_norm": 0.6964775323867798, + "learning_rate": 3.286773333333333e-05, + "loss": 1.7699888610839845, + "step": 257100 + }, + { + "epoch": 34.29333333333334, + "grad_norm": 0.708335280418396, + "learning_rate": 3.286106666666667e-05, + "loss": 1.769803009033203, + "step": 257200 + }, + { + "epoch": 34.306666666666665, + "grad_norm": 0.7314557433128357, + "learning_rate": 3.28544e-05, + "loss": 1.7759251403808594, + "step": 257300 + }, + { + "epoch": 34.32, + "grad_norm": 0.7204164862632751, + "learning_rate": 3.2847733333333334e-05, + "loss": 1.7730311584472656, + "step": 257400 + }, + { + "epoch": 34.333333333333336, + "grad_norm": 0.71314936876297, + "learning_rate": 3.284106666666667e-05, + "loss": 1.7768055725097656, + "step": 257500 + }, + { + "epoch": 34.346666666666664, + "grad_norm": 0.6884594559669495, + "learning_rate": 3.2834400000000005e-05, + "loss": 1.7790744018554687, + "step": 257600 + }, + { + "epoch": 34.36, + "grad_norm": 0.7092511653900146, + "learning_rate": 3.282773333333333e-05, + "loss": 1.7782786560058594, + "step": 257700 + }, + { + "epoch": 34.373333333333335, + "grad_norm": 0.758355438709259, + "learning_rate": 3.282106666666667e-05, + "loss": 1.7751937866210938, + "step": 257800 + }, + { + "epoch": 34.38666666666666, + "grad_norm": 0.7290791869163513, + "learning_rate": 3.28144e-05, + "loss": 1.7803231811523437, + "step": 257900 + }, + { + "epoch": 34.4, + "grad_norm": 0.7067010998725891, + "learning_rate": 3.2807733333333334e-05, + "loss": 1.7779922485351562, + "step": 258000 + }, + { + "epoch": 34.413333333333334, + "grad_norm": 0.7042437791824341, + "learning_rate": 3.280106666666667e-05, + "loss": 1.7828672790527345, + "step": 258100 + }, + { + "epoch": 34.42666666666667, + "grad_norm": 0.7334814667701721, + "learning_rate": 3.2794466666666666e-05, + "loss": 1.7837445068359374, + "step": 258200 + }, + { + "epoch": 34.44, + "grad_norm": 0.6984947919845581, + "learning_rate": 3.2787800000000005e-05, + "loss": 1.7827430725097657, + "step": 258300 + }, + { + "epoch": 34.45333333333333, + "grad_norm": 0.7189805507659912, + "learning_rate": 3.278113333333334e-05, + "loss": 1.7818618774414063, + "step": 258400 + }, + { + "epoch": 34.46666666666667, + "grad_norm": 0.7172175049781799, + "learning_rate": 3.277446666666667e-05, + "loss": 1.786385040283203, + "step": 258500 + }, + { + "epoch": 34.48, + "grad_norm": 0.6976024508476257, + "learning_rate": 3.27678e-05, + "loss": 1.7863441467285157, + "step": 258600 + }, + { + "epoch": 34.49333333333333, + "grad_norm": 0.7336111664772034, + "learning_rate": 3.2761133333333334e-05, + "loss": 1.7882395935058595, + "step": 258700 + }, + { + "epoch": 34.50666666666667, + "grad_norm": 0.7398297190666199, + "learning_rate": 3.2754466666666666e-05, + "loss": 1.7881121826171875, + "step": 258800 + }, + { + "epoch": 34.52, + "grad_norm": 0.7262130379676819, + "learning_rate": 3.27478e-05, + "loss": 1.7835282897949218, + "step": 258900 + }, + { + "epoch": 34.53333333333333, + "grad_norm": 0.7167975306510925, + "learning_rate": 3.274113333333334e-05, + "loss": 1.7948524475097656, + "step": 259000 + }, + { + "epoch": 34.54666666666667, + "grad_norm": 0.7211325764656067, + "learning_rate": 3.273446666666667e-05, + "loss": 1.7875064086914063, + "step": 259100 + }, + { + "epoch": 34.56, + "grad_norm": 0.7152880430221558, + "learning_rate": 3.27278e-05, + "loss": 1.7891029357910155, + "step": 259200 + }, + { + "epoch": 34.57333333333333, + "grad_norm": 0.6966748833656311, + "learning_rate": 3.2721133333333334e-05, + "loss": 1.792362823486328, + "step": 259300 + }, + { + "epoch": 34.586666666666666, + "grad_norm": 0.7045295238494873, + "learning_rate": 3.2714466666666667e-05, + "loss": 1.7886041259765626, + "step": 259400 + }, + { + "epoch": 34.6, + "grad_norm": 0.7518943548202515, + "learning_rate": 3.27078e-05, + "loss": 1.7914320373535155, + "step": 259500 + }, + { + "epoch": 34.61333333333333, + "grad_norm": 0.7086119651794434, + "learning_rate": 3.2701200000000005e-05, + "loss": 1.7893756103515626, + "step": 259600 + }, + { + "epoch": 34.626666666666665, + "grad_norm": 0.7113426923751831, + "learning_rate": 3.269453333333333e-05, + "loss": 1.7912899780273437, + "step": 259700 + }, + { + "epoch": 34.64, + "grad_norm": 0.7117241621017456, + "learning_rate": 3.268786666666667e-05, + "loss": 1.7933538818359376, + "step": 259800 + }, + { + "epoch": 34.653333333333336, + "grad_norm": 0.7044850587844849, + "learning_rate": 3.26812e-05, + "loss": 1.7952735900878907, + "step": 259900 + }, + { + "epoch": 34.666666666666664, + "grad_norm": 0.7023999691009521, + "learning_rate": 3.2674533333333334e-05, + "loss": 1.7962698364257812, + "step": 260000 + }, + { + "epoch": 34.68, + "grad_norm": 0.7212279438972473, + "learning_rate": 3.2667866666666666e-05, + "loss": 1.795453338623047, + "step": 260100 + }, + { + "epoch": 34.693333333333335, + "grad_norm": 0.7294625043869019, + "learning_rate": 3.2661200000000005e-05, + "loss": 1.8032328796386718, + "step": 260200 + }, + { + "epoch": 34.70666666666666, + "grad_norm": 0.7199930548667908, + "learning_rate": 3.265453333333334e-05, + "loss": 1.7969496154785156, + "step": 260300 + }, + { + "epoch": 34.72, + "grad_norm": 0.7424473166465759, + "learning_rate": 3.264786666666666e-05, + "loss": 1.8003564453125, + "step": 260400 + }, + { + "epoch": 34.733333333333334, + "grad_norm": 0.6995416283607483, + "learning_rate": 3.26412e-05, + "loss": 1.8012725830078125, + "step": 260500 + }, + { + "epoch": 34.74666666666667, + "grad_norm": 0.712614893913269, + "learning_rate": 3.2634533333333334e-05, + "loss": 1.79720458984375, + "step": 260600 + }, + { + "epoch": 34.76, + "grad_norm": 0.7090932130813599, + "learning_rate": 3.2627866666666666e-05, + "loss": 1.796382598876953, + "step": 260700 + }, + { + "epoch": 34.77333333333333, + "grad_norm": 0.715495765209198, + "learning_rate": 3.26212e-05, + "loss": 1.8014085388183594, + "step": 260800 + }, + { + "epoch": 34.78666666666667, + "grad_norm": 0.6967054009437561, + "learning_rate": 3.261453333333334e-05, + "loss": 1.8019192504882813, + "step": 260900 + }, + { + "epoch": 34.8, + "grad_norm": 0.7249776124954224, + "learning_rate": 3.260786666666667e-05, + "loss": 1.8009378051757812, + "step": 261000 + }, + { + "epoch": 34.81333333333333, + "grad_norm": 0.7215238213539124, + "learning_rate": 3.26012e-05, + "loss": 1.8022233581542968, + "step": 261100 + }, + { + "epoch": 34.82666666666667, + "grad_norm": 0.6885356903076172, + "learning_rate": 3.2594533333333334e-05, + "loss": 1.8026568603515625, + "step": 261200 + }, + { + "epoch": 34.84, + "grad_norm": 0.732446551322937, + "learning_rate": 3.258786666666667e-05, + "loss": 1.8067509460449218, + "step": 261300 + }, + { + "epoch": 34.85333333333333, + "grad_norm": 0.7237669229507446, + "learning_rate": 3.25812e-05, + "loss": 1.8049159240722656, + "step": 261400 + }, + { + "epoch": 34.86666666666667, + "grad_norm": 0.7220719456672668, + "learning_rate": 3.257453333333334e-05, + "loss": 1.8078208923339845, + "step": 261500 + }, + { + "epoch": 34.88, + "grad_norm": 0.7088682651519775, + "learning_rate": 3.256786666666667e-05, + "loss": 1.8080841064453126, + "step": 261600 + }, + { + "epoch": 34.89333333333333, + "grad_norm": 0.7922437787055969, + "learning_rate": 3.25612e-05, + "loss": 1.8082931518554688, + "step": 261700 + }, + { + "epoch": 34.906666666666666, + "grad_norm": 0.707200825214386, + "learning_rate": 3.25546e-05, + "loss": 1.8050637817382813, + "step": 261800 + }, + { + "epoch": 34.92, + "grad_norm": 0.7059547305107117, + "learning_rate": 3.2547933333333334e-05, + "loss": 1.8101914978027345, + "step": 261900 + }, + { + "epoch": 34.93333333333333, + "grad_norm": 0.7146642804145813, + "learning_rate": 3.254126666666667e-05, + "loss": 1.8113522338867187, + "step": 262000 + }, + { + "epoch": 34.946666666666665, + "grad_norm": 0.7141034603118896, + "learning_rate": 3.2534600000000005e-05, + "loss": 1.8065060424804686, + "step": 262100 + }, + { + "epoch": 34.96, + "grad_norm": 0.7005040645599365, + "learning_rate": 3.252793333333333e-05, + "loss": 1.8118878173828126, + "step": 262200 + }, + { + "epoch": 34.973333333333336, + "grad_norm": 0.6977455019950867, + "learning_rate": 3.252126666666667e-05, + "loss": 1.8072309875488282, + "step": 262300 + }, + { + "epoch": 34.986666666666665, + "grad_norm": 0.7083906531333923, + "learning_rate": 3.25146e-05, + "loss": 1.8132292175292968, + "step": 262400 + }, + { + "epoch": 35.0, + "grad_norm": 0.7053395509719849, + "learning_rate": 3.2507933333333334e-05, + "loss": 1.810267333984375, + "step": 262500 + }, + { + "epoch": 35.013333333333335, + "grad_norm": 0.7179415225982666, + "learning_rate": 3.2501266666666667e-05, + "loss": 1.720147705078125, + "step": 262600 + }, + { + "epoch": 35.026666666666664, + "grad_norm": 0.6983874440193176, + "learning_rate": 3.2494600000000006e-05, + "loss": 1.7274235534667968, + "step": 262700 + }, + { + "epoch": 35.04, + "grad_norm": 0.7099409699440002, + "learning_rate": 3.248793333333334e-05, + "loss": 1.7269102478027343, + "step": 262800 + }, + { + "epoch": 35.053333333333335, + "grad_norm": 0.7118650674819946, + "learning_rate": 3.248126666666667e-05, + "loss": 1.7248257446289061, + "step": 262900 + }, + { + "epoch": 35.06666666666667, + "grad_norm": 0.7239251136779785, + "learning_rate": 3.24746e-05, + "loss": 1.7289593505859375, + "step": 263000 + }, + { + "epoch": 35.08, + "grad_norm": 0.7100144624710083, + "learning_rate": 3.2467933333333335e-05, + "loss": 1.7312472534179688, + "step": 263100 + }, + { + "epoch": 35.093333333333334, + "grad_norm": 0.7234798669815063, + "learning_rate": 3.246126666666667e-05, + "loss": 1.73094970703125, + "step": 263200 + }, + { + "epoch": 35.10666666666667, + "grad_norm": 0.6909958124160767, + "learning_rate": 3.24546e-05, + "loss": 1.736466522216797, + "step": 263300 + }, + { + "epoch": 35.12, + "grad_norm": 0.7305464148521423, + "learning_rate": 3.244793333333334e-05, + "loss": 1.7368101501464843, + "step": 263400 + }, + { + "epoch": 35.13333333333333, + "grad_norm": 0.716325044631958, + "learning_rate": 3.244126666666667e-05, + "loss": 1.7344117736816407, + "step": 263500 + }, + { + "epoch": 35.14666666666667, + "grad_norm": 0.7322099208831787, + "learning_rate": 3.24346e-05, + "loss": 1.7373164367675782, + "step": 263600 + }, + { + "epoch": 35.16, + "grad_norm": 0.7618185877799988, + "learning_rate": 3.2427933333333335e-05, + "loss": 1.7396737670898437, + "step": 263700 + }, + { + "epoch": 35.17333333333333, + "grad_norm": 0.7051612138748169, + "learning_rate": 3.242126666666667e-05, + "loss": 1.7394839477539064, + "step": 263800 + }, + { + "epoch": 35.18666666666667, + "grad_norm": 0.6973703503608704, + "learning_rate": 3.24146e-05, + "loss": 1.7405155944824218, + "step": 263900 + }, + { + "epoch": 35.2, + "grad_norm": 0.7270771265029907, + "learning_rate": 3.240793333333333e-05, + "loss": 1.742344970703125, + "step": 264000 + }, + { + "epoch": 35.21333333333333, + "grad_norm": 0.7269550561904907, + "learning_rate": 3.240126666666667e-05, + "loss": 1.7401051330566406, + "step": 264100 + }, + { + "epoch": 35.22666666666667, + "grad_norm": 0.7064307928085327, + "learning_rate": 3.23946e-05, + "loss": 1.742832489013672, + "step": 264200 + }, + { + "epoch": 35.24, + "grad_norm": 0.6901838779449463, + "learning_rate": 3.2387933333333335e-05, + "loss": 1.7487083435058595, + "step": 264300 + }, + { + "epoch": 35.25333333333333, + "grad_norm": 0.7132669687271118, + "learning_rate": 3.238126666666667e-05, + "loss": 1.7473236083984376, + "step": 264400 + }, + { + "epoch": 35.266666666666666, + "grad_norm": 0.7222061157226562, + "learning_rate": 3.23746e-05, + "loss": 1.7487094116210937, + "step": 264500 + }, + { + "epoch": 35.28, + "grad_norm": 0.7056880593299866, + "learning_rate": 3.236793333333333e-05, + "loss": 1.7457852172851562, + "step": 264600 + }, + { + "epoch": 35.29333333333334, + "grad_norm": 0.7410815954208374, + "learning_rate": 3.2361266666666665e-05, + "loss": 1.7503875732421874, + "step": 264700 + }, + { + "epoch": 35.306666666666665, + "grad_norm": 0.7270119786262512, + "learning_rate": 3.2354600000000004e-05, + "loss": 1.7513735961914063, + "step": 264800 + }, + { + "epoch": 35.32, + "grad_norm": 0.7054768204689026, + "learning_rate": 3.2347933333333336e-05, + "loss": 1.7556321716308594, + "step": 264900 + }, + { + "epoch": 35.333333333333336, + "grad_norm": 0.7149020433425903, + "learning_rate": 3.234126666666667e-05, + "loss": 1.7507872009277343, + "step": 265000 + }, + { + "epoch": 35.346666666666664, + "grad_norm": 0.7018755674362183, + "learning_rate": 3.23346e-05, + "loss": 1.7512226867675782, + "step": 265100 + }, + { + "epoch": 35.36, + "grad_norm": 0.7539740204811096, + "learning_rate": 3.232793333333333e-05, + "loss": 1.751693115234375, + "step": 265200 + }, + { + "epoch": 35.373333333333335, + "grad_norm": 0.7125043869018555, + "learning_rate": 3.2321266666666665e-05, + "loss": 1.751684112548828, + "step": 265300 + }, + { + "epoch": 35.38666666666666, + "grad_norm": 0.7284225821495056, + "learning_rate": 3.23146e-05, + "loss": 1.7530982971191407, + "step": 265400 + }, + { + "epoch": 35.4, + "grad_norm": 0.7372731566429138, + "learning_rate": 3.2307933333333336e-05, + "loss": 1.7575666809082031, + "step": 265500 + }, + { + "epoch": 35.413333333333334, + "grad_norm": 0.7320109009742737, + "learning_rate": 3.230126666666667e-05, + "loss": 1.7619415283203126, + "step": 265600 + }, + { + "epoch": 35.42666666666667, + "grad_norm": 0.715881884098053, + "learning_rate": 3.22946e-05, + "loss": 1.75659912109375, + "step": 265700 + }, + { + "epoch": 35.44, + "grad_norm": 0.7461238503456116, + "learning_rate": 3.2288e-05, + "loss": 1.7591160583496093, + "step": 265800 + }, + { + "epoch": 35.45333333333333, + "grad_norm": 0.751312255859375, + "learning_rate": 3.228133333333334e-05, + "loss": 1.761936492919922, + "step": 265900 + }, + { + "epoch": 35.46666666666667, + "grad_norm": 0.7453945279121399, + "learning_rate": 3.227466666666667e-05, + "loss": 1.7588221740722656, + "step": 266000 + }, + { + "epoch": 35.48, + "grad_norm": 0.7304133176803589, + "learning_rate": 3.2268000000000003e-05, + "loss": 1.7641864013671875, + "step": 266100 + }, + { + "epoch": 35.49333333333333, + "grad_norm": 0.7159408926963806, + "learning_rate": 3.226133333333333e-05, + "loss": 1.763712158203125, + "step": 266200 + }, + { + "epoch": 35.50666666666667, + "grad_norm": 0.7238728404045105, + "learning_rate": 3.225466666666667e-05, + "loss": 1.766953582763672, + "step": 266300 + }, + { + "epoch": 35.52, + "grad_norm": 0.7204245924949646, + "learning_rate": 3.2248e-05, + "loss": 1.7641201782226563, + "step": 266400 + }, + { + "epoch": 35.53333333333333, + "grad_norm": 0.7490574717521667, + "learning_rate": 3.224133333333333e-05, + "loss": 1.7628182983398437, + "step": 266500 + }, + { + "epoch": 35.54666666666667, + "grad_norm": 0.7318447232246399, + "learning_rate": 3.223466666666667e-05, + "loss": 1.768040008544922, + "step": 266600 + }, + { + "epoch": 35.56, + "grad_norm": 0.7002058625221252, + "learning_rate": 3.2228000000000004e-05, + "loss": 1.7642034912109374, + "step": 266700 + }, + { + "epoch": 35.57333333333333, + "grad_norm": 0.7356955409049988, + "learning_rate": 3.2221333333333336e-05, + "loss": 1.765457000732422, + "step": 266800 + }, + { + "epoch": 35.586666666666666, + "grad_norm": 0.7351566553115845, + "learning_rate": 3.2214733333333335e-05, + "loss": 1.7657107543945312, + "step": 266900 + }, + { + "epoch": 35.6, + "grad_norm": 0.7202064394950867, + "learning_rate": 3.220806666666667e-05, + "loss": 1.7705520629882812, + "step": 267000 + }, + { + "epoch": 35.61333333333333, + "grad_norm": 0.7428541779518127, + "learning_rate": 3.2201400000000006e-05, + "loss": 1.769801483154297, + "step": 267100 + }, + { + "epoch": 35.626666666666665, + "grad_norm": 0.7157596349716187, + "learning_rate": 3.219473333333333e-05, + "loss": 1.769151153564453, + "step": 267200 + }, + { + "epoch": 35.64, + "grad_norm": 0.7332503199577332, + "learning_rate": 3.2188066666666664e-05, + "loss": 1.7689814758300781, + "step": 267300 + }, + { + "epoch": 35.653333333333336, + "grad_norm": 0.7052285075187683, + "learning_rate": 3.21814e-05, + "loss": 1.7711866760253907, + "step": 267400 + }, + { + "epoch": 35.666666666666664, + "grad_norm": 0.7430896162986755, + "learning_rate": 3.2174733333333336e-05, + "loss": 1.7715708923339843, + "step": 267500 + }, + { + "epoch": 35.68, + "grad_norm": 0.7421042323112488, + "learning_rate": 3.216806666666667e-05, + "loss": 1.7714950561523437, + "step": 267600 + }, + { + "epoch": 35.693333333333335, + "grad_norm": 0.7241594791412354, + "learning_rate": 3.21614e-05, + "loss": 1.7752314758300782, + "step": 267700 + }, + { + "epoch": 35.70666666666666, + "grad_norm": 0.6929828524589539, + "learning_rate": 3.215473333333334e-05, + "loss": 1.778212127685547, + "step": 267800 + }, + { + "epoch": 35.72, + "grad_norm": 0.7369002103805542, + "learning_rate": 3.214806666666667e-05, + "loss": 1.774071502685547, + "step": 267900 + }, + { + "epoch": 35.733333333333334, + "grad_norm": 0.7390934824943542, + "learning_rate": 3.21414e-05, + "loss": 1.7779090881347657, + "step": 268000 + }, + { + "epoch": 35.74666666666667, + "grad_norm": 0.7036294341087341, + "learning_rate": 3.2134733333333336e-05, + "loss": 1.77925537109375, + "step": 268100 + }, + { + "epoch": 35.76, + "grad_norm": 0.713968813419342, + "learning_rate": 3.212806666666667e-05, + "loss": 1.780936279296875, + "step": 268200 + }, + { + "epoch": 35.77333333333333, + "grad_norm": 0.7476961612701416, + "learning_rate": 3.21214e-05, + "loss": 1.7815696716308593, + "step": 268300 + }, + { + "epoch": 35.78666666666667, + "grad_norm": 0.7531934380531311, + "learning_rate": 3.211473333333333e-05, + "loss": 1.778701171875, + "step": 268400 + }, + { + "epoch": 35.8, + "grad_norm": 0.7263785600662231, + "learning_rate": 3.210806666666667e-05, + "loss": 1.7831895446777344, + "step": 268500 + }, + { + "epoch": 35.81333333333333, + "grad_norm": 0.7144677042961121, + "learning_rate": 3.2101400000000004e-05, + "loss": 1.7823295593261719, + "step": 268600 + }, + { + "epoch": 35.82666666666667, + "grad_norm": 0.7361660003662109, + "learning_rate": 3.209473333333333e-05, + "loss": 1.7813780212402344, + "step": 268700 + }, + { + "epoch": 35.84, + "grad_norm": 0.7294068932533264, + "learning_rate": 3.208806666666667e-05, + "loss": 1.776859588623047, + "step": 268800 + }, + { + "epoch": 35.85333333333333, + "grad_norm": 0.7189229726791382, + "learning_rate": 3.20814e-05, + "loss": 1.7815873718261719, + "step": 268900 + }, + { + "epoch": 35.86666666666667, + "grad_norm": 0.7154908180236816, + "learning_rate": 3.207473333333333e-05, + "loss": 1.7768629455566407, + "step": 269000 + }, + { + "epoch": 35.88, + "grad_norm": 0.7369889616966248, + "learning_rate": 3.2068066666666665e-05, + "loss": 1.7820993041992188, + "step": 269100 + }, + { + "epoch": 35.89333333333333, + "grad_norm": 0.7437416911125183, + "learning_rate": 3.2061400000000004e-05, + "loss": 1.7829997253417968, + "step": 269200 + }, + { + "epoch": 35.906666666666666, + "grad_norm": 0.6980392336845398, + "learning_rate": 3.2054800000000004e-05, + "loss": 1.788327178955078, + "step": 269300 + }, + { + "epoch": 35.92, + "grad_norm": 0.7489062547683716, + "learning_rate": 3.2048133333333336e-05, + "loss": 1.784275360107422, + "step": 269400 + }, + { + "epoch": 35.93333333333333, + "grad_norm": 0.7697765827178955, + "learning_rate": 3.204146666666667e-05, + "loss": 1.7840049743652344, + "step": 269500 + }, + { + "epoch": 35.946666666666665, + "grad_norm": 0.7413792014122009, + "learning_rate": 3.20348e-05, + "loss": 1.7808065795898438, + "step": 269600 + }, + { + "epoch": 35.96, + "grad_norm": 0.7363737225532532, + "learning_rate": 3.202813333333333e-05, + "loss": 1.7876707458496093, + "step": 269700 + }, + { + "epoch": 35.973333333333336, + "grad_norm": 0.7427986860275269, + "learning_rate": 3.2021466666666665e-05, + "loss": 1.786104736328125, + "step": 269800 + }, + { + "epoch": 35.986666666666665, + "grad_norm": 0.7256585359573364, + "learning_rate": 3.20148e-05, + "loss": 1.7870755004882812, + "step": 269900 + }, + { + "epoch": 36.0, + "grad_norm": 0.7233152389526367, + "learning_rate": 3.2008133333333336e-05, + "loss": 1.78588623046875, + "step": 270000 + }, + { + "epoch": 36.013333333333335, + "grad_norm": 0.711797833442688, + "learning_rate": 3.200146666666667e-05, + "loss": 1.7004847717285156, + "step": 270100 + }, + { + "epoch": 36.026666666666664, + "grad_norm": 0.7260730862617493, + "learning_rate": 3.19948e-05, + "loss": 1.701490478515625, + "step": 270200 + }, + { + "epoch": 36.04, + "grad_norm": 0.7351646423339844, + "learning_rate": 3.198813333333334e-05, + "loss": 1.70460205078125, + "step": 270300 + }, + { + "epoch": 36.053333333333335, + "grad_norm": 0.7190471291542053, + "learning_rate": 3.198146666666667e-05, + "loss": 1.6980458068847657, + "step": 270400 + }, + { + "epoch": 36.06666666666667, + "grad_norm": 0.7336345911026001, + "learning_rate": 3.19748e-05, + "loss": 1.707018585205078, + "step": 270500 + }, + { + "epoch": 36.08, + "grad_norm": 0.7053529024124146, + "learning_rate": 3.1968133333333337e-05, + "loss": 1.7060832214355468, + "step": 270600 + }, + { + "epoch": 36.093333333333334, + "grad_norm": 0.723622739315033, + "learning_rate": 3.196146666666667e-05, + "loss": 1.7135696411132812, + "step": 270700 + }, + { + "epoch": 36.10666666666667, + "grad_norm": 0.6846678853034973, + "learning_rate": 3.19548e-05, + "loss": 1.7092733764648438, + "step": 270800 + }, + { + "epoch": 36.12, + "grad_norm": 0.7483423352241516, + "learning_rate": 3.194813333333333e-05, + "loss": 1.7153257751464843, + "step": 270900 + }, + { + "epoch": 36.13333333333333, + "grad_norm": 0.7453268766403198, + "learning_rate": 3.194146666666667e-05, + "loss": 1.7127186584472656, + "step": 271000 + }, + { + "epoch": 36.14666666666667, + "grad_norm": 0.7087700963020325, + "learning_rate": 3.1934800000000005e-05, + "loss": 1.7130256652832032, + "step": 271100 + }, + { + "epoch": 36.16, + "grad_norm": 0.7314236164093018, + "learning_rate": 3.192813333333333e-05, + "loss": 1.7165345764160156, + "step": 271200 + }, + { + "epoch": 36.17333333333333, + "grad_norm": 0.7344350218772888, + "learning_rate": 3.192146666666667e-05, + "loss": 1.7190016174316407, + "step": 271300 + }, + { + "epoch": 36.18666666666667, + "grad_norm": 0.7444190979003906, + "learning_rate": 3.19148e-05, + "loss": 1.7203594970703124, + "step": 271400 + }, + { + "epoch": 36.2, + "grad_norm": 0.7286201119422913, + "learning_rate": 3.1908133333333334e-05, + "loss": 1.7190869140625, + "step": 271500 + }, + { + "epoch": 36.21333333333333, + "grad_norm": 0.7416961789131165, + "learning_rate": 3.1901466666666666e-05, + "loss": 1.7250083923339843, + "step": 271600 + }, + { + "epoch": 36.22666666666667, + "grad_norm": 0.7191265225410461, + "learning_rate": 3.1894800000000005e-05, + "loss": 1.7248774719238282, + "step": 271700 + }, + { + "epoch": 36.24, + "grad_norm": 0.7464678287506104, + "learning_rate": 3.188813333333334e-05, + "loss": 1.7244654846191407, + "step": 271800 + }, + { + "epoch": 36.25333333333333, + "grad_norm": 0.741040050983429, + "learning_rate": 3.188146666666667e-05, + "loss": 1.7217869567871094, + "step": 271900 + }, + { + "epoch": 36.266666666666666, + "grad_norm": 0.7492501735687256, + "learning_rate": 3.18748e-05, + "loss": 1.7232154846191405, + "step": 272000 + }, + { + "epoch": 36.28, + "grad_norm": 0.7506824135780334, + "learning_rate": 3.1868133333333334e-05, + "loss": 1.72467529296875, + "step": 272100 + }, + { + "epoch": 36.29333333333334, + "grad_norm": 0.7682024836540222, + "learning_rate": 3.1861466666666666e-05, + "loss": 1.7257017517089843, + "step": 272200 + }, + { + "epoch": 36.306666666666665, + "grad_norm": 0.7348060011863708, + "learning_rate": 3.18548e-05, + "loss": 1.7308767700195313, + "step": 272300 + }, + { + "epoch": 36.32, + "grad_norm": 0.7420241236686707, + "learning_rate": 3.184813333333334e-05, + "loss": 1.7316539001464843, + "step": 272400 + }, + { + "epoch": 36.333333333333336, + "grad_norm": 0.7520580291748047, + "learning_rate": 3.184146666666667e-05, + "loss": 1.7281611633300782, + "step": 272500 + }, + { + "epoch": 36.346666666666664, + "grad_norm": 0.7573596835136414, + "learning_rate": 3.18348e-05, + "loss": 1.731063995361328, + "step": 272600 + }, + { + "epoch": 36.36, + "grad_norm": 0.725255012512207, + "learning_rate": 3.1828133333333335e-05, + "loss": 1.7307705688476562, + "step": 272700 + }, + { + "epoch": 36.373333333333335, + "grad_norm": 0.7543401122093201, + "learning_rate": 3.182146666666667e-05, + "loss": 1.7375082397460937, + "step": 272800 + }, + { + "epoch": 36.38666666666666, + "grad_norm": 0.7458380460739136, + "learning_rate": 3.18148e-05, + "loss": 1.7346005249023437, + "step": 272900 + }, + { + "epoch": 36.4, + "grad_norm": 0.7144700884819031, + "learning_rate": 3.18082e-05, + "loss": 1.7303981018066406, + "step": 273000 + }, + { + "epoch": 36.413333333333334, + "grad_norm": 0.7560714483261108, + "learning_rate": 3.180153333333333e-05, + "loss": 1.7310597229003906, + "step": 273100 + }, + { + "epoch": 36.42666666666667, + "grad_norm": 0.7326061129570007, + "learning_rate": 3.179486666666667e-05, + "loss": 1.7362249755859376, + "step": 273200 + }, + { + "epoch": 36.44, + "grad_norm": 0.7293363809585571, + "learning_rate": 3.17882e-05, + "loss": 1.7362820434570312, + "step": 273300 + }, + { + "epoch": 36.45333333333333, + "grad_norm": 0.7394217252731323, + "learning_rate": 3.1781533333333334e-05, + "loss": 1.7399252319335938, + "step": 273400 + }, + { + "epoch": 36.46666666666667, + "grad_norm": 0.742487907409668, + "learning_rate": 3.1774866666666666e-05, + "loss": 1.7383834838867187, + "step": 273500 + }, + { + "epoch": 36.48, + "grad_norm": 0.7589447498321533, + "learning_rate": 3.1768200000000005e-05, + "loss": 1.7370097351074218, + "step": 273600 + }, + { + "epoch": 36.49333333333333, + "grad_norm": 0.7348843812942505, + "learning_rate": 3.176153333333334e-05, + "loss": 1.7422178649902345, + "step": 273700 + }, + { + "epoch": 36.50666666666667, + "grad_norm": 0.7847718000411987, + "learning_rate": 3.175486666666666e-05, + "loss": 1.736515350341797, + "step": 273800 + }, + { + "epoch": 36.52, + "grad_norm": 0.7392397522926331, + "learning_rate": 3.17482e-05, + "loss": 1.7417140197753906, + "step": 273900 + }, + { + "epoch": 36.53333333333333, + "grad_norm": 0.6962413787841797, + "learning_rate": 3.1741533333333334e-05, + "loss": 1.741837921142578, + "step": 274000 + }, + { + "epoch": 36.54666666666667, + "grad_norm": 0.7503619194030762, + "learning_rate": 3.173486666666667e-05, + "loss": 1.741531982421875, + "step": 274100 + }, + { + "epoch": 36.56, + "grad_norm": 0.7087076902389526, + "learning_rate": 3.1728200000000006e-05, + "loss": 1.7447845458984375, + "step": 274200 + }, + { + "epoch": 36.57333333333333, + "grad_norm": 0.7223750352859497, + "learning_rate": 3.172153333333334e-05, + "loss": 1.7459292602539063, + "step": 274300 + }, + { + "epoch": 36.586666666666666, + "grad_norm": 0.7215844392776489, + "learning_rate": 3.171486666666667e-05, + "loss": 1.7434147644042968, + "step": 274400 + }, + { + "epoch": 36.6, + "grad_norm": 0.7404847145080566, + "learning_rate": 3.1708199999999996e-05, + "loss": 1.749951171875, + "step": 274500 + }, + { + "epoch": 36.61333333333333, + "grad_norm": 0.7521648406982422, + "learning_rate": 3.1701533333333335e-05, + "loss": 1.7496371459960938, + "step": 274600 + }, + { + "epoch": 36.626666666666665, + "grad_norm": 0.7401891946792603, + "learning_rate": 3.169486666666667e-05, + "loss": 1.7497813415527343, + "step": 274700 + }, + { + "epoch": 36.64, + "grad_norm": 0.7280316948890686, + "learning_rate": 3.16882e-05, + "loss": 1.7507594299316407, + "step": 274800 + }, + { + "epoch": 36.653333333333336, + "grad_norm": 0.7239392995834351, + "learning_rate": 3.168153333333334e-05, + "loss": 1.7507579040527343, + "step": 274900 + }, + { + "epoch": 36.666666666666664, + "grad_norm": 0.7553678750991821, + "learning_rate": 3.167486666666667e-05, + "loss": 1.751461181640625, + "step": 275000 + }, + { + "epoch": 36.68, + "grad_norm": 0.7435064911842346, + "learning_rate": 3.16682e-05, + "loss": 1.7519636535644532, + "step": 275100 + }, + { + "epoch": 36.693333333333335, + "grad_norm": 0.7470516562461853, + "learning_rate": 3.1661533333333335e-05, + "loss": 1.7504707336425782, + "step": 275200 + }, + { + "epoch": 36.70666666666666, + "grad_norm": 0.74057537317276, + "learning_rate": 3.165486666666667e-05, + "loss": 1.7527505493164062, + "step": 275300 + }, + { + "epoch": 36.72, + "grad_norm": 0.7247684597969055, + "learning_rate": 3.16482e-05, + "loss": 1.7530410766601563, + "step": 275400 + }, + { + "epoch": 36.733333333333334, + "grad_norm": 0.7498241662979126, + "learning_rate": 3.16416e-05, + "loss": 1.7541891479492187, + "step": 275500 + }, + { + "epoch": 36.74666666666667, + "grad_norm": 0.7495251297950745, + "learning_rate": 3.163493333333333e-05, + "loss": 1.7568766784667968, + "step": 275600 + }, + { + "epoch": 36.76, + "grad_norm": 0.7617773413658142, + "learning_rate": 3.162826666666667e-05, + "loss": 1.7529084777832031, + "step": 275700 + }, + { + "epoch": 36.77333333333333, + "grad_norm": 0.7428836226463318, + "learning_rate": 3.16216e-05, + "loss": 1.7551524353027343, + "step": 275800 + }, + { + "epoch": 36.78666666666667, + "grad_norm": 0.7389662265777588, + "learning_rate": 3.1614933333333335e-05, + "loss": 1.7577822875976563, + "step": 275900 + }, + { + "epoch": 36.8, + "grad_norm": 0.743245542049408, + "learning_rate": 3.160826666666667e-05, + "loss": 1.75811279296875, + "step": 276000 + }, + { + "epoch": 36.81333333333333, + "grad_norm": 0.7568553686141968, + "learning_rate": 3.1601600000000006e-05, + "loss": 1.7519479370117188, + "step": 276100 + }, + { + "epoch": 36.82666666666667, + "grad_norm": 0.7454259991645813, + "learning_rate": 3.159493333333334e-05, + "loss": 1.7604170227050782, + "step": 276200 + }, + { + "epoch": 36.84, + "grad_norm": 0.7492554187774658, + "learning_rate": 3.1588266666666664e-05, + "loss": 1.7641816711425782, + "step": 276300 + }, + { + "epoch": 36.85333333333333, + "grad_norm": 0.7113311290740967, + "learning_rate": 3.15816e-05, + "loss": 1.7588400268554687, + "step": 276400 + }, + { + "epoch": 36.86666666666667, + "grad_norm": 0.764880359172821, + "learning_rate": 3.1574933333333335e-05, + "loss": 1.7627790832519532, + "step": 276500 + }, + { + "epoch": 36.88, + "grad_norm": 0.7248684167861938, + "learning_rate": 3.156826666666667e-05, + "loss": 1.7612380981445312, + "step": 276600 + }, + { + "epoch": 36.89333333333333, + "grad_norm": 0.7168259024620056, + "learning_rate": 3.15616e-05, + "loss": 1.7612693786621094, + "step": 276700 + }, + { + "epoch": 36.906666666666666, + "grad_norm": 0.7467043995857239, + "learning_rate": 3.155493333333334e-05, + "loss": 1.7591070556640624, + "step": 276800 + }, + { + "epoch": 36.92, + "grad_norm": 0.7475593686103821, + "learning_rate": 3.154826666666667e-05, + "loss": 1.7618537902832032, + "step": 276900 + }, + { + "epoch": 36.93333333333333, + "grad_norm": 0.7402468323707581, + "learning_rate": 3.1541599999999996e-05, + "loss": 1.7640028381347657, + "step": 277000 + }, + { + "epoch": 36.946666666666665, + "grad_norm": 0.7494368553161621, + "learning_rate": 3.1534933333333335e-05, + "loss": 1.7653765869140625, + "step": 277100 + }, + { + "epoch": 36.96, + "grad_norm": 0.7230552434921265, + "learning_rate": 3.152826666666667e-05, + "loss": 1.7666098022460937, + "step": 277200 + }, + { + "epoch": 36.973333333333336, + "grad_norm": 0.7665003538131714, + "learning_rate": 3.15216e-05, + "loss": 1.765568084716797, + "step": 277300 + }, + { + "epoch": 36.986666666666665, + "grad_norm": 0.7451346516609192, + "learning_rate": 3.151493333333333e-05, + "loss": 1.7677928161621095, + "step": 277400 + }, + { + "epoch": 37.0, + "grad_norm": 0.76631760597229, + "learning_rate": 3.150833333333333e-05, + "loss": 1.7689274597167968, + "step": 277500 + }, + { + "epoch": 37.013333333333335, + "grad_norm": 0.7045518755912781, + "learning_rate": 3.150166666666667e-05, + "loss": 1.6803143310546875, + "step": 277600 + }, + { + "epoch": 37.026666666666664, + "grad_norm": 0.7285835146903992, + "learning_rate": 3.1495e-05, + "loss": 1.6813021850585939, + "step": 277700 + }, + { + "epoch": 37.04, + "grad_norm": 0.7426738739013672, + "learning_rate": 3.1488333333333335e-05, + "loss": 1.681758270263672, + "step": 277800 + }, + { + "epoch": 37.053333333333335, + "grad_norm": 0.7622446417808533, + "learning_rate": 3.148166666666667e-05, + "loss": 1.6819073486328124, + "step": 277900 + }, + { + "epoch": 37.06666666666667, + "grad_norm": 0.7410486340522766, + "learning_rate": 3.1475e-05, + "loss": 1.6838929748535156, + "step": 278000 + }, + { + "epoch": 37.08, + "grad_norm": 0.7304770946502686, + "learning_rate": 3.146833333333333e-05, + "loss": 1.6852511596679687, + "step": 278100 + }, + { + "epoch": 37.093333333333334, + "grad_norm": 0.7022737264633179, + "learning_rate": 3.1461666666666664e-05, + "loss": 1.6852027893066406, + "step": 278200 + }, + { + "epoch": 37.10666666666667, + "grad_norm": 0.7408353686332703, + "learning_rate": 3.1455e-05, + "loss": 1.688455810546875, + "step": 278300 + }, + { + "epoch": 37.12, + "grad_norm": 0.7150797843933105, + "learning_rate": 3.1448333333333335e-05, + "loss": 1.6884025573730468, + "step": 278400 + }, + { + "epoch": 37.13333333333333, + "grad_norm": 0.7726892828941345, + "learning_rate": 3.144166666666667e-05, + "loss": 1.6898381042480468, + "step": 278500 + }, + { + "epoch": 37.14666666666667, + "grad_norm": 0.7211053371429443, + "learning_rate": 3.1435000000000007e-05, + "loss": 1.6924490356445312, + "step": 278600 + }, + { + "epoch": 37.16, + "grad_norm": 0.7419326305389404, + "learning_rate": 3.142833333333334e-05, + "loss": 1.689315643310547, + "step": 278700 + }, + { + "epoch": 37.17333333333333, + "grad_norm": 0.7313926219940186, + "learning_rate": 3.1421666666666664e-05, + "loss": 1.6908987426757813, + "step": 278800 + }, + { + "epoch": 37.18666666666667, + "grad_norm": 0.7286278605461121, + "learning_rate": 3.1415e-05, + "loss": 1.6980317687988282, + "step": 278900 + }, + { + "epoch": 37.2, + "grad_norm": 0.7605856657028198, + "learning_rate": 3.1408333333333336e-05, + "loss": 1.696996307373047, + "step": 279000 + }, + { + "epoch": 37.21333333333333, + "grad_norm": 0.7458546757698059, + "learning_rate": 3.140166666666667e-05, + "loss": 1.6983421325683594, + "step": 279100 + }, + { + "epoch": 37.22666666666667, + "grad_norm": 0.7429274916648865, + "learning_rate": 3.1395e-05, + "loss": 1.7024613952636718, + "step": 279200 + }, + { + "epoch": 37.24, + "grad_norm": 0.7884694337844849, + "learning_rate": 3.138833333333334e-05, + "loss": 1.7007711791992188, + "step": 279300 + }, + { + "epoch": 37.25333333333333, + "grad_norm": 0.7464330792427063, + "learning_rate": 3.138166666666667e-05, + "loss": 1.7008659362792968, + "step": 279400 + }, + { + "epoch": 37.266666666666666, + "grad_norm": 0.728084921836853, + "learning_rate": 3.1375e-05, + "loss": 1.7043988037109374, + "step": 279500 + }, + { + "epoch": 37.28, + "grad_norm": 0.7497456669807434, + "learning_rate": 3.13684e-05, + "loss": 1.7014207458496093, + "step": 279600 + }, + { + "epoch": 37.29333333333334, + "grad_norm": 0.7020012140274048, + "learning_rate": 3.1361733333333335e-05, + "loss": 1.7052900695800781, + "step": 279700 + }, + { + "epoch": 37.306666666666665, + "grad_norm": 0.739156186580658, + "learning_rate": 3.135506666666667e-05, + "loss": 1.703553466796875, + "step": 279800 + }, + { + "epoch": 37.32, + "grad_norm": 0.7595281600952148, + "learning_rate": 3.13484e-05, + "loss": 1.7069859313964844, + "step": 279900 + }, + { + "epoch": 37.333333333333336, + "grad_norm": 0.75346440076828, + "learning_rate": 3.134173333333333e-05, + "loss": 1.7072439575195313, + "step": 280000 + }, + { + "epoch": 37.346666666666664, + "grad_norm": 0.7546751499176025, + "learning_rate": 3.133506666666667e-05, + "loss": 1.7088861083984375, + "step": 280100 + }, + { + "epoch": 37.36, + "grad_norm": 0.7886497974395752, + "learning_rate": 3.13284e-05, + "loss": 1.7056680297851563, + "step": 280200 + }, + { + "epoch": 37.373333333333335, + "grad_norm": 0.743929922580719, + "learning_rate": 3.1321733333333335e-05, + "loss": 1.7099371337890625, + "step": 280300 + }, + { + "epoch": 37.38666666666666, + "grad_norm": 0.7662741541862488, + "learning_rate": 3.131506666666667e-05, + "loss": 1.7150563049316405, + "step": 280400 + }, + { + "epoch": 37.4, + "grad_norm": 0.72809898853302, + "learning_rate": 3.13084e-05, + "loss": 1.7117857360839843, + "step": 280500 + }, + { + "epoch": 37.413333333333334, + "grad_norm": 0.7383192181587219, + "learning_rate": 3.130173333333333e-05, + "loss": 1.7104786682128905, + "step": 280600 + }, + { + "epoch": 37.42666666666667, + "grad_norm": 0.755443274974823, + "learning_rate": 3.1295066666666664e-05, + "loss": 1.7123095703125, + "step": 280700 + }, + { + "epoch": 37.44, + "grad_norm": 0.7860985994338989, + "learning_rate": 3.1288400000000004e-05, + "loss": 1.7170570373535157, + "step": 280800 + }, + { + "epoch": 37.45333333333333, + "grad_norm": 0.7551179528236389, + "learning_rate": 3.1281733333333336e-05, + "loss": 1.716322021484375, + "step": 280900 + }, + { + "epoch": 37.46666666666667, + "grad_norm": 0.7542992830276489, + "learning_rate": 3.127506666666667e-05, + "loss": 1.714727783203125, + "step": 281000 + }, + { + "epoch": 37.48, + "grad_norm": 0.7533883452415466, + "learning_rate": 3.12684e-05, + "loss": 1.720811309814453, + "step": 281100 + }, + { + "epoch": 37.49333333333333, + "grad_norm": 0.7798376083374023, + "learning_rate": 3.126173333333334e-05, + "loss": 1.7136112976074218, + "step": 281200 + }, + { + "epoch": 37.50666666666667, + "grad_norm": 0.7293563485145569, + "learning_rate": 3.1255066666666665e-05, + "loss": 1.7199661254882812, + "step": 281300 + }, + { + "epoch": 37.52, + "grad_norm": 0.7498854994773865, + "learning_rate": 3.12484e-05, + "loss": 1.7169015502929688, + "step": 281400 + }, + { + "epoch": 37.53333333333333, + "grad_norm": 0.7195653915405273, + "learning_rate": 3.1241733333333336e-05, + "loss": 1.7198953247070312, + "step": 281500 + }, + { + "epoch": 37.54666666666667, + "grad_norm": 0.7342607378959656, + "learning_rate": 3.123506666666667e-05, + "loss": 1.724787139892578, + "step": 281600 + }, + { + "epoch": 37.56, + "grad_norm": 0.7618938684463501, + "learning_rate": 3.122846666666667e-05, + "loss": 1.7263723754882812, + "step": 281700 + }, + { + "epoch": 37.57333333333333, + "grad_norm": 0.73606938123703, + "learning_rate": 3.12218e-05, + "loss": 1.7267738342285157, + "step": 281800 + }, + { + "epoch": 37.586666666666666, + "grad_norm": 0.7361858487129211, + "learning_rate": 3.121513333333333e-05, + "loss": 1.7204446411132812, + "step": 281900 + }, + { + "epoch": 37.6, + "grad_norm": 0.7650215029716492, + "learning_rate": 3.120846666666667e-05, + "loss": 1.722607879638672, + "step": 282000 + }, + { + "epoch": 37.61333333333333, + "grad_norm": 0.7414928078651428, + "learning_rate": 3.12018e-05, + "loss": 1.7260256958007814, + "step": 282100 + }, + { + "epoch": 37.626666666666665, + "grad_norm": 0.7534034252166748, + "learning_rate": 3.1195133333333336e-05, + "loss": 1.726140899658203, + "step": 282200 + }, + { + "epoch": 37.64, + "grad_norm": 0.7416046857833862, + "learning_rate": 3.118846666666667e-05, + "loss": 1.7296353149414063, + "step": 282300 + }, + { + "epoch": 37.653333333333336, + "grad_norm": 0.7440157532691956, + "learning_rate": 3.11818e-05, + "loss": 1.7297128295898438, + "step": 282400 + }, + { + "epoch": 37.666666666666664, + "grad_norm": 0.7524501085281372, + "learning_rate": 3.117513333333333e-05, + "loss": 1.73589599609375, + "step": 282500 + }, + { + "epoch": 37.68, + "grad_norm": 0.757587730884552, + "learning_rate": 3.1168466666666665e-05, + "loss": 1.7298715209960938, + "step": 282600 + }, + { + "epoch": 37.693333333333335, + "grad_norm": 0.7522934675216675, + "learning_rate": 3.1161800000000004e-05, + "loss": 1.7345960998535157, + "step": 282700 + }, + { + "epoch": 37.70666666666666, + "grad_norm": 0.7544682621955872, + "learning_rate": 3.1155133333333336e-05, + "loss": 1.7308802795410156, + "step": 282800 + }, + { + "epoch": 37.72, + "grad_norm": 0.7192630171775818, + "learning_rate": 3.114846666666667e-05, + "loss": 1.7340335083007812, + "step": 282900 + }, + { + "epoch": 37.733333333333334, + "grad_norm": 0.7458509206771851, + "learning_rate": 3.11418e-05, + "loss": 1.734874267578125, + "step": 283000 + }, + { + "epoch": 37.74666666666667, + "grad_norm": 0.7439426779747009, + "learning_rate": 3.113513333333333e-05, + "loss": 1.7350709533691406, + "step": 283100 + }, + { + "epoch": 37.76, + "grad_norm": 0.7385891675949097, + "learning_rate": 3.1128466666666665e-05, + "loss": 1.730778045654297, + "step": 283200 + }, + { + "epoch": 37.77333333333333, + "grad_norm": 0.731911838054657, + "learning_rate": 3.1121800000000004e-05, + "loss": 1.7314964294433595, + "step": 283300 + }, + { + "epoch": 37.78666666666667, + "grad_norm": 0.7846623063087463, + "learning_rate": 3.1115133333333336e-05, + "loss": 1.733455352783203, + "step": 283400 + }, + { + "epoch": 37.8, + "grad_norm": 0.7687591910362244, + "learning_rate": 3.110846666666667e-05, + "loss": 1.7341983032226562, + "step": 283500 + }, + { + "epoch": 37.81333333333333, + "grad_norm": 0.7925374507904053, + "learning_rate": 3.11018e-05, + "loss": 1.7374996948242187, + "step": 283600 + }, + { + "epoch": 37.82666666666667, + "grad_norm": 0.7608065009117126, + "learning_rate": 3.109513333333334e-05, + "loss": 1.7386874389648437, + "step": 283700 + }, + { + "epoch": 37.84, + "grad_norm": 0.7788674235343933, + "learning_rate": 3.1088466666666665e-05, + "loss": 1.742396697998047, + "step": 283800 + }, + { + "epoch": 37.85333333333333, + "grad_norm": 0.7511487007141113, + "learning_rate": 3.10818e-05, + "loss": 1.7363363647460937, + "step": 283900 + }, + { + "epoch": 37.86666666666667, + "grad_norm": 0.7553167939186096, + "learning_rate": 3.107513333333334e-05, + "loss": 1.7385067749023437, + "step": 284000 + }, + { + "epoch": 37.88, + "grad_norm": 0.7409266233444214, + "learning_rate": 3.106846666666667e-05, + "loss": 1.7398283386230469, + "step": 284100 + }, + { + "epoch": 37.89333333333333, + "grad_norm": 0.7326803207397461, + "learning_rate": 3.10618e-05, + "loss": 1.738975067138672, + "step": 284200 + }, + { + "epoch": 37.906666666666666, + "grad_norm": 0.7426642179489136, + "learning_rate": 3.1055133333333334e-05, + "loss": 1.741965789794922, + "step": 284300 + }, + { + "epoch": 37.92, + "grad_norm": 0.7844317555427551, + "learning_rate": 3.104846666666667e-05, + "loss": 1.740626220703125, + "step": 284400 + }, + { + "epoch": 37.93333333333333, + "grad_norm": 0.7489057183265686, + "learning_rate": 3.1041800000000005e-05, + "loss": 1.7419303894042968, + "step": 284500 + }, + { + "epoch": 37.946666666666665, + "grad_norm": 0.766936719417572, + "learning_rate": 3.1035200000000004e-05, + "loss": 1.7452520751953124, + "step": 284600 + }, + { + "epoch": 37.96, + "grad_norm": 0.7706231474876404, + "learning_rate": 3.1028533333333336e-05, + "loss": 1.744236602783203, + "step": 284700 + }, + { + "epoch": 37.973333333333336, + "grad_norm": 0.7537173628807068, + "learning_rate": 3.102186666666667e-05, + "loss": 1.7478404235839844, + "step": 284800 + }, + { + "epoch": 37.986666666666665, + "grad_norm": 0.7413330078125, + "learning_rate": 3.10152e-05, + "loss": 1.7494500732421876, + "step": 284900 + }, + { + "epoch": 38.0, + "grad_norm": 0.7850656509399414, + "learning_rate": 3.100853333333333e-05, + "loss": 1.750704803466797, + "step": 285000 + }, + { + "epoch": 38.013333333333335, + "grad_norm": 0.7259971499443054, + "learning_rate": 3.1001866666666665e-05, + "loss": 1.6590287780761719, + "step": 285100 + }, + { + "epoch": 38.026666666666664, + "grad_norm": 0.746416449546814, + "learning_rate": 3.0995200000000004e-05, + "loss": 1.6625711059570312, + "step": 285200 + }, + { + "epoch": 38.04, + "grad_norm": 0.7898942232131958, + "learning_rate": 3.098853333333334e-05, + "loss": 1.6607310485839843, + "step": 285300 + }, + { + "epoch": 38.053333333333335, + "grad_norm": 0.7729313969612122, + "learning_rate": 3.098186666666667e-05, + "loss": 1.662105255126953, + "step": 285400 + }, + { + "epoch": 38.06666666666667, + "grad_norm": 0.7406087517738342, + "learning_rate": 3.09752e-05, + "loss": 1.6623809814453125, + "step": 285500 + }, + { + "epoch": 38.08, + "grad_norm": 0.7400987148284912, + "learning_rate": 3.0968533333333333e-05, + "loss": 1.6635809326171875, + "step": 285600 + }, + { + "epoch": 38.093333333333334, + "grad_norm": 0.7489773035049438, + "learning_rate": 3.0961866666666666e-05, + "loss": 1.6699810791015626, + "step": 285700 + }, + { + "epoch": 38.10666666666667, + "grad_norm": 0.7790253162384033, + "learning_rate": 3.09552e-05, + "loss": 1.669601287841797, + "step": 285800 + }, + { + "epoch": 38.12, + "grad_norm": 0.7665462493896484, + "learning_rate": 3.094853333333334e-05, + "loss": 1.6737181091308593, + "step": 285900 + }, + { + "epoch": 38.13333333333333, + "grad_norm": 0.7243815064430237, + "learning_rate": 3.094186666666667e-05, + "loss": 1.6687673950195312, + "step": 286000 + }, + { + "epoch": 38.14666666666667, + "grad_norm": 0.7670396566390991, + "learning_rate": 3.09352e-05, + "loss": 1.6730580139160156, + "step": 286100 + }, + { + "epoch": 38.16, + "grad_norm": 0.7733235359191895, + "learning_rate": 3.0928533333333334e-05, + "loss": 1.6757229614257811, + "step": 286200 + }, + { + "epoch": 38.17333333333333, + "grad_norm": 0.7491257190704346, + "learning_rate": 3.0921866666666666e-05, + "loss": 1.669895477294922, + "step": 286300 + }, + { + "epoch": 38.18666666666667, + "grad_norm": 0.7852340340614319, + "learning_rate": 3.09152e-05, + "loss": 1.6757810974121095, + "step": 286400 + }, + { + "epoch": 38.2, + "grad_norm": 0.7656257152557373, + "learning_rate": 3.090853333333333e-05, + "loss": 1.6795205688476562, + "step": 286500 + }, + { + "epoch": 38.21333333333333, + "grad_norm": 0.7430424094200134, + "learning_rate": 3.090186666666667e-05, + "loss": 1.6734898376464844, + "step": 286600 + }, + { + "epoch": 38.22666666666667, + "grad_norm": 0.7725613117218018, + "learning_rate": 3.089526666666667e-05, + "loss": 1.6736170959472656, + "step": 286700 + }, + { + "epoch": 38.24, + "grad_norm": 0.7913093566894531, + "learning_rate": 3.08886e-05, + "loss": 1.6843594360351561, + "step": 286800 + }, + { + "epoch": 38.25333333333333, + "grad_norm": 0.7620664238929749, + "learning_rate": 3.088193333333333e-05, + "loss": 1.6822517395019532, + "step": 286900 + }, + { + "epoch": 38.266666666666666, + "grad_norm": 0.8010652661323547, + "learning_rate": 3.087526666666667e-05, + "loss": 1.682193603515625, + "step": 287000 + }, + { + "epoch": 38.28, + "grad_norm": 0.7800931334495544, + "learning_rate": 3.0868600000000005e-05, + "loss": 1.68789794921875, + "step": 287100 + }, + { + "epoch": 38.29333333333334, + "grad_norm": 0.7320764064788818, + "learning_rate": 3.086193333333334e-05, + "loss": 1.677606201171875, + "step": 287200 + }, + { + "epoch": 38.306666666666665, + "grad_norm": 0.7963472604751587, + "learning_rate": 3.085526666666666e-05, + "loss": 1.6835293579101562, + "step": 287300 + }, + { + "epoch": 38.32, + "grad_norm": 0.7579801678657532, + "learning_rate": 3.08486e-05, + "loss": 1.6827491760253905, + "step": 287400 + }, + { + "epoch": 38.333333333333336, + "grad_norm": 0.7616518139839172, + "learning_rate": 3.0841933333333334e-05, + "loss": 1.689130859375, + "step": 287500 + }, + { + "epoch": 38.346666666666664, + "grad_norm": 0.7492512464523315, + "learning_rate": 3.0835266666666666e-05, + "loss": 1.6856808471679687, + "step": 287600 + }, + { + "epoch": 38.36, + "grad_norm": 0.7573805451393127, + "learning_rate": 3.0828600000000005e-05, + "loss": 1.690630645751953, + "step": 287700 + }, + { + "epoch": 38.373333333333335, + "grad_norm": 0.7447465062141418, + "learning_rate": 3.082193333333334e-05, + "loss": 1.689488525390625, + "step": 287800 + }, + { + "epoch": 38.38666666666666, + "grad_norm": 0.7608117461204529, + "learning_rate": 3.081526666666667e-05, + "loss": 1.6932475280761718, + "step": 287900 + }, + { + "epoch": 38.4, + "grad_norm": 0.7536253333091736, + "learning_rate": 3.08086e-05, + "loss": 1.6915469360351563, + "step": 288000 + }, + { + "epoch": 38.413333333333334, + "grad_norm": 0.754641056060791, + "learning_rate": 3.0801933333333334e-05, + "loss": 1.6956082153320313, + "step": 288100 + }, + { + "epoch": 38.42666666666667, + "grad_norm": 0.7657079696655273, + "learning_rate": 3.0795266666666666e-05, + "loss": 1.6968582153320313, + "step": 288200 + }, + { + "epoch": 38.44, + "grad_norm": 0.7657183408737183, + "learning_rate": 3.07886e-05, + "loss": 1.696566619873047, + "step": 288300 + }, + { + "epoch": 38.45333333333333, + "grad_norm": 0.7208789587020874, + "learning_rate": 3.078193333333334e-05, + "loss": 1.692105255126953, + "step": 288400 + }, + { + "epoch": 38.46666666666667, + "grad_norm": 0.774307906627655, + "learning_rate": 3.077526666666667e-05, + "loss": 1.6932823181152343, + "step": 288500 + }, + { + "epoch": 38.48, + "grad_norm": 0.7949078679084778, + "learning_rate": 3.07686e-05, + "loss": 1.6973165893554687, + "step": 288600 + }, + { + "epoch": 38.49333333333333, + "grad_norm": 0.7806784510612488, + "learning_rate": 3.0761933333333334e-05, + "loss": 1.6917153930664062, + "step": 288700 + }, + { + "epoch": 38.50666666666667, + "grad_norm": 0.7916117906570435, + "learning_rate": 3.075526666666667e-05, + "loss": 1.7009848022460938, + "step": 288800 + }, + { + "epoch": 38.52, + "grad_norm": 0.759568989276886, + "learning_rate": 3.07486e-05, + "loss": 1.7016871643066407, + "step": 288900 + }, + { + "epoch": 38.53333333333333, + "grad_norm": 0.7423282861709595, + "learning_rate": 3.0742000000000005e-05, + "loss": 1.6960887145996093, + "step": 289000 + }, + { + "epoch": 38.54666666666667, + "grad_norm": 0.7630002498626709, + "learning_rate": 3.073533333333333e-05, + "loss": 1.7025230407714844, + "step": 289100 + }, + { + "epoch": 38.56, + "grad_norm": 0.7927618026733398, + "learning_rate": 3.072866666666667e-05, + "loss": 1.7043484497070311, + "step": 289200 + }, + { + "epoch": 38.57333333333333, + "grad_norm": 0.7585164308547974, + "learning_rate": 3.0722e-05, + "loss": 1.7019801330566406, + "step": 289300 + }, + { + "epoch": 38.586666666666666, + "grad_norm": 0.7974201440811157, + "learning_rate": 3.0715333333333334e-05, + "loss": 1.6983253479003906, + "step": 289400 + }, + { + "epoch": 38.6, + "grad_norm": 0.7960885763168335, + "learning_rate": 3.0708666666666666e-05, + "loss": 1.7020025634765625, + "step": 289500 + }, + { + "epoch": 38.61333333333333, + "grad_norm": 0.7698130011558533, + "learning_rate": 3.0702000000000005e-05, + "loss": 1.7045166015625, + "step": 289600 + }, + { + "epoch": 38.626666666666665, + "grad_norm": 0.7774978876113892, + "learning_rate": 3.069533333333334e-05, + "loss": 1.7092160034179686, + "step": 289700 + }, + { + "epoch": 38.64, + "grad_norm": 0.7904421091079712, + "learning_rate": 3.068866666666666e-05, + "loss": 1.7111721801757813, + "step": 289800 + }, + { + "epoch": 38.653333333333336, + "grad_norm": 0.7613751292228699, + "learning_rate": 3.0682e-05, + "loss": 1.7066726684570312, + "step": 289900 + }, + { + "epoch": 38.666666666666664, + "grad_norm": 0.7756422758102417, + "learning_rate": 3.0675333333333334e-05, + "loss": 1.7077285766601562, + "step": 290000 + }, + { + "epoch": 38.68, + "grad_norm": 0.7973787784576416, + "learning_rate": 3.0668666666666667e-05, + "loss": 1.706180419921875, + "step": 290100 + }, + { + "epoch": 38.693333333333335, + "grad_norm": 0.7484989762306213, + "learning_rate": 3.0662e-05, + "loss": 1.7061300659179688, + "step": 290200 + }, + { + "epoch": 38.70666666666666, + "grad_norm": 0.7544485926628113, + "learning_rate": 3.065533333333334e-05, + "loss": 1.7120814514160156, + "step": 290300 + }, + { + "epoch": 38.72, + "grad_norm": 0.7512329816818237, + "learning_rate": 3.064866666666667e-05, + "loss": 1.710401611328125, + "step": 290400 + }, + { + "epoch": 38.733333333333334, + "grad_norm": 0.7429623007774353, + "learning_rate": 3.0642e-05, + "loss": 1.7145462036132812, + "step": 290500 + }, + { + "epoch": 38.74666666666667, + "grad_norm": 0.7737287878990173, + "learning_rate": 3.0635333333333335e-05, + "loss": 1.7123170471191407, + "step": 290600 + }, + { + "epoch": 38.76, + "grad_norm": 0.7839905023574829, + "learning_rate": 3.062866666666667e-05, + "loss": 1.714277801513672, + "step": 290700 + }, + { + "epoch": 38.77333333333333, + "grad_norm": 0.7753442525863647, + "learning_rate": 3.0622e-05, + "loss": 1.711389923095703, + "step": 290800 + }, + { + "epoch": 38.78666666666667, + "grad_norm": 0.7696095108985901, + "learning_rate": 3.061533333333333e-05, + "loss": 1.712263946533203, + "step": 290900 + }, + { + "epoch": 38.8, + "grad_norm": 0.78681880235672, + "learning_rate": 3.060866666666667e-05, + "loss": 1.7169947814941406, + "step": 291000 + }, + { + "epoch": 38.81333333333333, + "grad_norm": 0.7666211128234863, + "learning_rate": 3.060206666666667e-05, + "loss": 1.713688201904297, + "step": 291100 + }, + { + "epoch": 38.82666666666667, + "grad_norm": 0.8072649836540222, + "learning_rate": 3.05954e-05, + "loss": 1.7122874450683594, + "step": 291200 + }, + { + "epoch": 38.84, + "grad_norm": 0.8129579424858093, + "learning_rate": 3.0588733333333334e-05, + "loss": 1.7165837097167969, + "step": 291300 + }, + { + "epoch": 38.85333333333333, + "grad_norm": 0.759157121181488, + "learning_rate": 3.058206666666667e-05, + "loss": 1.7154681396484375, + "step": 291400 + }, + { + "epoch": 38.86666666666667, + "grad_norm": 0.7481434345245361, + "learning_rate": 3.0575400000000005e-05, + "loss": 1.7192173767089844, + "step": 291500 + }, + { + "epoch": 38.88, + "grad_norm": 0.751333475112915, + "learning_rate": 3.056873333333333e-05, + "loss": 1.7186842346191407, + "step": 291600 + }, + { + "epoch": 38.89333333333333, + "grad_norm": 0.7542101740837097, + "learning_rate": 3.056206666666667e-05, + "loss": 1.7197854614257813, + "step": 291700 + }, + { + "epoch": 38.906666666666666, + "grad_norm": 0.7745694518089294, + "learning_rate": 3.05554e-05, + "loss": 1.717758026123047, + "step": 291800 + }, + { + "epoch": 38.92, + "grad_norm": 0.785905122756958, + "learning_rate": 3.0548733333333335e-05, + "loss": 1.7214923095703125, + "step": 291900 + }, + { + "epoch": 38.93333333333333, + "grad_norm": 0.737249493598938, + "learning_rate": 3.054206666666667e-05, + "loss": 1.721144256591797, + "step": 292000 + }, + { + "epoch": 38.946666666666665, + "grad_norm": 0.7561144828796387, + "learning_rate": 3.0535400000000006e-05, + "loss": 1.7213453674316406, + "step": 292100 + }, + { + "epoch": 38.96, + "grad_norm": 0.769527018070221, + "learning_rate": 3.052873333333334e-05, + "loss": 1.7238650512695313, + "step": 292200 + }, + { + "epoch": 38.973333333333336, + "grad_norm": 0.781715452671051, + "learning_rate": 3.0522066666666664e-05, + "loss": 1.7266677856445312, + "step": 292300 + }, + { + "epoch": 38.986666666666665, + "grad_norm": 0.7867762446403503, + "learning_rate": 3.05154e-05, + "loss": 1.7263604736328124, + "step": 292400 + }, + { + "epoch": 39.0, + "grad_norm": 0.7711582183837891, + "learning_rate": 3.0508733333333335e-05, + "loss": 1.7235179138183594, + "step": 292500 + }, + { + "epoch": 39.013333333333335, + "grad_norm": 0.7427387237548828, + "learning_rate": 3.0502066666666667e-05, + "loss": 1.636926727294922, + "step": 292600 + }, + { + "epoch": 39.026666666666664, + "grad_norm": 0.7548815011978149, + "learning_rate": 3.0495400000000003e-05, + "loss": 1.638148193359375, + "step": 292700 + }, + { + "epoch": 39.04, + "grad_norm": 0.766891598701477, + "learning_rate": 3.0488733333333335e-05, + "loss": 1.6450836181640625, + "step": 292800 + }, + { + "epoch": 39.053333333333335, + "grad_norm": 0.7814005017280579, + "learning_rate": 3.048206666666667e-05, + "loss": 1.6402984619140626, + "step": 292900 + }, + { + "epoch": 39.06666666666667, + "grad_norm": 0.7863591909408569, + "learning_rate": 3.0475400000000003e-05, + "loss": 1.645513916015625, + "step": 293000 + }, + { + "epoch": 39.08, + "grad_norm": 0.7696388959884644, + "learning_rate": 3.0468733333333332e-05, + "loss": 1.6503067016601562, + "step": 293100 + }, + { + "epoch": 39.093333333333334, + "grad_norm": 0.7683019042015076, + "learning_rate": 3.0462066666666668e-05, + "loss": 1.6453077697753906, + "step": 293200 + }, + { + "epoch": 39.10666666666667, + "grad_norm": 0.8194789886474609, + "learning_rate": 3.04554e-05, + "loss": 1.6493295288085938, + "step": 293300 + }, + { + "epoch": 39.12, + "grad_norm": 0.7500215172767639, + "learning_rate": 3.04488e-05, + "loss": 1.6437741088867188, + "step": 293400 + }, + { + "epoch": 39.13333333333333, + "grad_norm": 0.7612013220787048, + "learning_rate": 3.0442133333333335e-05, + "loss": 1.6460026550292968, + "step": 293500 + }, + { + "epoch": 39.14666666666667, + "grad_norm": 0.7490237355232239, + "learning_rate": 3.0435466666666667e-05, + "loss": 1.6469500732421876, + "step": 293600 + }, + { + "epoch": 39.16, + "grad_norm": 0.7428447604179382, + "learning_rate": 3.0428800000000002e-05, + "loss": 1.6538037109375, + "step": 293700 + }, + { + "epoch": 39.17333333333333, + "grad_norm": 0.771937906742096, + "learning_rate": 3.0422133333333335e-05, + "loss": 1.6548284912109374, + "step": 293800 + }, + { + "epoch": 39.18666666666667, + "grad_norm": 0.8053415417671204, + "learning_rate": 3.041546666666667e-05, + "loss": 1.6548187255859375, + "step": 293900 + }, + { + "epoch": 39.2, + "grad_norm": 0.7840629816055298, + "learning_rate": 3.0408800000000003e-05, + "loss": 1.656223907470703, + "step": 294000 + }, + { + "epoch": 39.21333333333333, + "grad_norm": 0.7682107090950012, + "learning_rate": 3.040213333333333e-05, + "loss": 1.6517486572265625, + "step": 294100 + }, + { + "epoch": 39.22666666666667, + "grad_norm": 0.7796576619148254, + "learning_rate": 3.0395466666666667e-05, + "loss": 1.6598385620117186, + "step": 294200 + }, + { + "epoch": 39.24, + "grad_norm": 0.7165907025337219, + "learning_rate": 3.03888e-05, + "loss": 1.6587965393066406, + "step": 294300 + }, + { + "epoch": 39.25333333333333, + "grad_norm": 0.7674499154090881, + "learning_rate": 3.0382133333333335e-05, + "loss": 1.6644235229492188, + "step": 294400 + }, + { + "epoch": 39.266666666666666, + "grad_norm": 0.7708069086074829, + "learning_rate": 3.0375466666666667e-05, + "loss": 1.6615855407714843, + "step": 294500 + }, + { + "epoch": 39.28, + "grad_norm": 0.7408686876296997, + "learning_rate": 3.0368800000000003e-05, + "loss": 1.6682752990722656, + "step": 294600 + }, + { + "epoch": 39.29333333333334, + "grad_norm": 0.7657552361488342, + "learning_rate": 3.0362133333333335e-05, + "loss": 1.6586656188964843, + "step": 294700 + }, + { + "epoch": 39.306666666666665, + "grad_norm": 0.7995692491531372, + "learning_rate": 3.0355466666666664e-05, + "loss": 1.6587791442871094, + "step": 294800 + }, + { + "epoch": 39.32, + "grad_norm": 0.748633086681366, + "learning_rate": 3.03488e-05, + "loss": 1.66481689453125, + "step": 294900 + }, + { + "epoch": 39.333333333333336, + "grad_norm": 0.7635269165039062, + "learning_rate": 3.0342133333333332e-05, + "loss": 1.6681814575195313, + "step": 295000 + }, + { + "epoch": 39.346666666666664, + "grad_norm": 0.7503258585929871, + "learning_rate": 3.0335466666666668e-05, + "loss": 1.6664021301269532, + "step": 295100 + }, + { + "epoch": 39.36, + "grad_norm": 0.7651309370994568, + "learning_rate": 3.03288e-05, + "loss": 1.6657469177246094, + "step": 295200 + }, + { + "epoch": 39.373333333333335, + "grad_norm": 0.7666741013526917, + "learning_rate": 3.0322133333333336e-05, + "loss": 1.6691456604003907, + "step": 295300 + }, + { + "epoch": 39.38666666666666, + "grad_norm": 0.7548410296440125, + "learning_rate": 3.031546666666667e-05, + "loss": 1.670536651611328, + "step": 295400 + }, + { + "epoch": 39.4, + "grad_norm": 0.74871826171875, + "learning_rate": 3.0308866666666667e-05, + "loss": 1.667931365966797, + "step": 295500 + }, + { + "epoch": 39.413333333333334, + "grad_norm": 0.8039665222167969, + "learning_rate": 3.0302200000000003e-05, + "loss": 1.6696517944335938, + "step": 295600 + }, + { + "epoch": 39.42666666666667, + "grad_norm": 0.770044207572937, + "learning_rate": 3.029553333333334e-05, + "loss": 1.6706535339355468, + "step": 295700 + }, + { + "epoch": 39.44, + "grad_norm": 0.7525724768638611, + "learning_rate": 3.0288866666666664e-05, + "loss": 1.6772557067871094, + "step": 295800 + }, + { + "epoch": 39.45333333333333, + "grad_norm": 0.7813305258750916, + "learning_rate": 3.02822e-05, + "loss": 1.671944122314453, + "step": 295900 + }, + { + "epoch": 39.46666666666667, + "grad_norm": 0.7860172390937805, + "learning_rate": 3.0275533333333335e-05, + "loss": 1.6785629272460938, + "step": 296000 + }, + { + "epoch": 39.48, + "grad_norm": 0.7601441740989685, + "learning_rate": 3.0268866666666667e-05, + "loss": 1.679444580078125, + "step": 296100 + }, + { + "epoch": 39.49333333333333, + "grad_norm": 0.7699296474456787, + "learning_rate": 3.0262200000000003e-05, + "loss": 1.6728718566894532, + "step": 296200 + }, + { + "epoch": 39.50666666666667, + "grad_norm": 0.8299603462219238, + "learning_rate": 3.0255533333333335e-05, + "loss": 1.672165069580078, + "step": 296300 + }, + { + "epoch": 39.52, + "grad_norm": 0.7380194067955017, + "learning_rate": 3.024886666666667e-05, + "loss": 1.6806745910644532, + "step": 296400 + }, + { + "epoch": 39.53333333333333, + "grad_norm": 0.774158239364624, + "learning_rate": 3.0242200000000003e-05, + "loss": 1.6795536804199218, + "step": 296500 + }, + { + "epoch": 39.54666666666667, + "grad_norm": 0.7721417546272278, + "learning_rate": 3.0235533333333332e-05, + "loss": 1.6812428283691405, + "step": 296600 + }, + { + "epoch": 39.56, + "grad_norm": 0.7454893589019775, + "learning_rate": 3.0228866666666668e-05, + "loss": 1.6825442504882813, + "step": 296700 + }, + { + "epoch": 39.57333333333333, + "grad_norm": 0.7825901508331299, + "learning_rate": 3.02222e-05, + "loss": 1.684827117919922, + "step": 296800 + }, + { + "epoch": 39.586666666666666, + "grad_norm": 0.7577589750289917, + "learning_rate": 3.0215533333333336e-05, + "loss": 1.686151885986328, + "step": 296900 + }, + { + "epoch": 39.6, + "grad_norm": 0.7495019435882568, + "learning_rate": 3.0208866666666668e-05, + "loss": 1.6861024475097657, + "step": 297000 + }, + { + "epoch": 39.61333333333333, + "grad_norm": 0.7696591019630432, + "learning_rate": 3.0202200000000004e-05, + "loss": 1.6808950805664062, + "step": 297100 + }, + { + "epoch": 39.626666666666665, + "grad_norm": 0.7768684029579163, + "learning_rate": 3.0195533333333336e-05, + "loss": 1.6860086059570312, + "step": 297200 + }, + { + "epoch": 39.64, + "grad_norm": 0.8358619809150696, + "learning_rate": 3.018886666666667e-05, + "loss": 1.6880392456054687, + "step": 297300 + }, + { + "epoch": 39.653333333333336, + "grad_norm": 0.7638468742370605, + "learning_rate": 3.01822e-05, + "loss": 1.6880755615234375, + "step": 297400 + }, + { + "epoch": 39.666666666666664, + "grad_norm": 0.7862942814826965, + "learning_rate": 3.0175533333333333e-05, + "loss": 1.6920382690429687, + "step": 297500 + }, + { + "epoch": 39.68, + "grad_norm": 0.7873303890228271, + "learning_rate": 3.016886666666667e-05, + "loss": 1.688036651611328, + "step": 297600 + }, + { + "epoch": 39.693333333333335, + "grad_norm": 0.7888381481170654, + "learning_rate": 3.01622e-05, + "loss": 1.6933929443359375, + "step": 297700 + }, + { + "epoch": 39.70666666666666, + "grad_norm": 0.7556432485580444, + "learning_rate": 3.01556e-05, + "loss": 1.6857225036621093, + "step": 297800 + }, + { + "epoch": 39.72, + "grad_norm": 0.7747805714607239, + "learning_rate": 3.0148933333333335e-05, + "loss": 1.693270721435547, + "step": 297900 + }, + { + "epoch": 39.733333333333334, + "grad_norm": 0.7705897092819214, + "learning_rate": 3.0142266666666668e-05, + "loss": 1.69430419921875, + "step": 298000 + }, + { + "epoch": 39.74666666666667, + "grad_norm": 0.7893573045730591, + "learning_rate": 3.0135600000000003e-05, + "loss": 1.6897537231445312, + "step": 298100 + }, + { + "epoch": 39.76, + "grad_norm": 0.7793616056442261, + "learning_rate": 3.0128933333333336e-05, + "loss": 1.6898460388183594, + "step": 298200 + }, + { + "epoch": 39.77333333333333, + "grad_norm": 0.7738221883773804, + "learning_rate": 3.012226666666667e-05, + "loss": 1.6978416442871094, + "step": 298300 + }, + { + "epoch": 39.78666666666667, + "grad_norm": 0.7676934599876404, + "learning_rate": 3.01156e-05, + "loss": 1.699170379638672, + "step": 298400 + }, + { + "epoch": 39.8, + "grad_norm": 0.7687268853187561, + "learning_rate": 3.0108933333333332e-05, + "loss": 1.6959735107421876, + "step": 298500 + }, + { + "epoch": 39.81333333333333, + "grad_norm": 0.7735351920127869, + "learning_rate": 3.0102266666666668e-05, + "loss": 1.6969778442382812, + "step": 298600 + }, + { + "epoch": 39.82666666666667, + "grad_norm": 0.7656512260437012, + "learning_rate": 3.00956e-05, + "loss": 1.6993966674804688, + "step": 298700 + }, + { + "epoch": 39.84, + "grad_norm": 0.782088577747345, + "learning_rate": 3.0088933333333336e-05, + "loss": 1.699752960205078, + "step": 298800 + }, + { + "epoch": 39.85333333333333, + "grad_norm": 0.773292601108551, + "learning_rate": 3.0082266666666668e-05, + "loss": 1.6988934326171874, + "step": 298900 + }, + { + "epoch": 39.86666666666667, + "grad_norm": 0.7811734080314636, + "learning_rate": 3.0075600000000004e-05, + "loss": 1.6964959716796875, + "step": 299000 + }, + { + "epoch": 39.88, + "grad_norm": 0.7883747220039368, + "learning_rate": 3.0068933333333333e-05, + "loss": 1.7006631469726563, + "step": 299100 + }, + { + "epoch": 39.89333333333333, + "grad_norm": 0.7700868844985962, + "learning_rate": 3.0062266666666665e-05, + "loss": 1.6964584350585938, + "step": 299200 + }, + { + "epoch": 39.906666666666666, + "grad_norm": 0.803329348564148, + "learning_rate": 3.00556e-05, + "loss": 1.6985226440429688, + "step": 299300 + }, + { + "epoch": 39.92, + "grad_norm": 0.7313794493675232, + "learning_rate": 3.0048933333333333e-05, + "loss": 1.6996687316894532, + "step": 299400 + }, + { + "epoch": 39.93333333333333, + "grad_norm": 0.8017928004264832, + "learning_rate": 3.004226666666667e-05, + "loss": 1.7024073791503906, + "step": 299500 + }, + { + "epoch": 39.946666666666665, + "grad_norm": 0.7980249524116516, + "learning_rate": 3.0035600000000004e-05, + "loss": 1.7046482849121094, + "step": 299600 + }, + { + "epoch": 39.96, + "grad_norm": 0.7558285593986511, + "learning_rate": 3.0028933333333337e-05, + "loss": 1.7029963684082032, + "step": 299700 + }, + { + "epoch": 39.973333333333336, + "grad_norm": 0.7704285383224487, + "learning_rate": 3.0022266666666672e-05, + "loss": 1.7064549255371093, + "step": 299800 + }, + { + "epoch": 39.986666666666665, + "grad_norm": 0.7782922983169556, + "learning_rate": 3.0015599999999998e-05, + "loss": 1.7005975341796875, + "step": 299900 + }, + { + "epoch": 40.0, + "grad_norm": 0.7687188982963562, + "learning_rate": 3.0008933333333333e-05, + "loss": 1.7041835021972656, + "step": 300000 + }, + { + "epoch": 40.013333333333335, + "grad_norm": 0.7731031775474548, + "learning_rate": 3.000226666666667e-05, + "loss": 1.620243377685547, + "step": 300100 + }, + { + "epoch": 40.026666666666664, + "grad_norm": 0.7835327386856079, + "learning_rate": 2.99956e-05, + "loss": 1.6189300537109375, + "step": 300200 + }, + { + "epoch": 40.04, + "grad_norm": 0.788834273815155, + "learning_rate": 2.9989e-05, + "loss": 1.6183770751953126, + "step": 300300 + }, + { + "epoch": 40.053333333333335, + "grad_norm": 0.7707294225692749, + "learning_rate": 2.9982333333333336e-05, + "loss": 1.624232940673828, + "step": 300400 + }, + { + "epoch": 40.06666666666667, + "grad_norm": 0.7670961618423462, + "learning_rate": 2.9975666666666668e-05, + "loss": 1.6271139526367187, + "step": 300500 + }, + { + "epoch": 40.08, + "grad_norm": 0.7733743190765381, + "learning_rate": 2.9969000000000004e-05, + "loss": 1.6237083435058595, + "step": 300600 + }, + { + "epoch": 40.093333333333334, + "grad_norm": 0.7543879747390747, + "learning_rate": 2.9962333333333336e-05, + "loss": 1.6283514404296875, + "step": 300700 + }, + { + "epoch": 40.10666666666667, + "grad_norm": 0.7911033630371094, + "learning_rate": 2.9955666666666672e-05, + "loss": 1.6246966552734374, + "step": 300800 + }, + { + "epoch": 40.12, + "grad_norm": 0.758840799331665, + "learning_rate": 2.9949e-05, + "loss": 1.6292984008789062, + "step": 300900 + }, + { + "epoch": 40.13333333333333, + "grad_norm": 0.7979432344436646, + "learning_rate": 2.9942333333333333e-05, + "loss": 1.6320713806152343, + "step": 301000 + }, + { + "epoch": 40.14666666666667, + "grad_norm": 0.7912939786911011, + "learning_rate": 2.993566666666667e-05, + "loss": 1.6327186584472657, + "step": 301100 + }, + { + "epoch": 40.16, + "grad_norm": 0.7603537440299988, + "learning_rate": 2.9929e-05, + "loss": 1.6343653869628907, + "step": 301200 + }, + { + "epoch": 40.17333333333333, + "grad_norm": 0.7935387492179871, + "learning_rate": 2.9922333333333337e-05, + "loss": 1.6328231811523437, + "step": 301300 + }, + { + "epoch": 40.18666666666667, + "grad_norm": 0.7534608244895935, + "learning_rate": 2.991566666666667e-05, + "loss": 1.6297528076171874, + "step": 301400 + }, + { + "epoch": 40.2, + "grad_norm": 0.7596133351325989, + "learning_rate": 2.9909000000000005e-05, + "loss": 1.6323152160644532, + "step": 301500 + }, + { + "epoch": 40.21333333333333, + "grad_norm": 0.7837437987327576, + "learning_rate": 2.9902333333333333e-05, + "loss": 1.6390170288085937, + "step": 301600 + }, + { + "epoch": 40.22666666666667, + "grad_norm": 0.7405257821083069, + "learning_rate": 2.9895666666666666e-05, + "loss": 1.6328970336914062, + "step": 301700 + }, + { + "epoch": 40.24, + "grad_norm": 0.7964353561401367, + "learning_rate": 2.9889e-05, + "loss": 1.6418511962890625, + "step": 301800 + }, + { + "epoch": 40.25333333333333, + "grad_norm": 0.7721452713012695, + "learning_rate": 2.9882333333333334e-05, + "loss": 1.6432241821289062, + "step": 301900 + }, + { + "epoch": 40.266666666666666, + "grad_norm": 0.7319056987762451, + "learning_rate": 2.987566666666667e-05, + "loss": 1.6457327270507813, + "step": 302000 + }, + { + "epoch": 40.28, + "grad_norm": 0.7476204037666321, + "learning_rate": 2.9869e-05, + "loss": 1.63947265625, + "step": 302100 + }, + { + "epoch": 40.29333333333334, + "grad_norm": 0.7636196613311768, + "learning_rate": 2.9862333333333337e-05, + "loss": 1.6431263732910155, + "step": 302200 + }, + { + "epoch": 40.306666666666665, + "grad_norm": 0.7672015428543091, + "learning_rate": 2.985566666666667e-05, + "loss": 1.6432777404785157, + "step": 302300 + }, + { + "epoch": 40.32, + "grad_norm": 0.7906679511070251, + "learning_rate": 2.984906666666667e-05, + "loss": 1.6422769165039062, + "step": 302400 + }, + { + "epoch": 40.333333333333336, + "grad_norm": 0.7585984468460083, + "learning_rate": 2.9842400000000004e-05, + "loss": 1.645401611328125, + "step": 302500 + }, + { + "epoch": 40.346666666666664, + "grad_norm": 0.7551888227462769, + "learning_rate": 2.9835733333333333e-05, + "loss": 1.6521505737304687, + "step": 302600 + }, + { + "epoch": 40.36, + "grad_norm": 0.7747895121574402, + "learning_rate": 2.9829066666666665e-05, + "loss": 1.653616943359375, + "step": 302700 + }, + { + "epoch": 40.373333333333335, + "grad_norm": 0.7973045706748962, + "learning_rate": 2.98224e-05, + "loss": 1.6516969299316406, + "step": 302800 + }, + { + "epoch": 40.38666666666666, + "grad_norm": 0.7736092209815979, + "learning_rate": 2.9815733333333333e-05, + "loss": 1.6533767700195312, + "step": 302900 + }, + { + "epoch": 40.4, + "grad_norm": 0.8287850618362427, + "learning_rate": 2.980906666666667e-05, + "loss": 1.650742950439453, + "step": 303000 + }, + { + "epoch": 40.413333333333334, + "grad_norm": 0.7991235256195068, + "learning_rate": 2.98024e-05, + "loss": 1.6495477294921874, + "step": 303100 + }, + { + "epoch": 40.42666666666667, + "grad_norm": 0.7750113010406494, + "learning_rate": 2.9795733333333337e-05, + "loss": 1.6545738220214843, + "step": 303200 + }, + { + "epoch": 40.44, + "grad_norm": 0.7548984885215759, + "learning_rate": 2.978906666666667e-05, + "loss": 1.6560383605957032, + "step": 303300 + }, + { + "epoch": 40.45333333333333, + "grad_norm": 0.7681398987770081, + "learning_rate": 2.9782399999999998e-05, + "loss": 1.6523040771484374, + "step": 303400 + }, + { + "epoch": 40.46666666666667, + "grad_norm": 0.7958689332008362, + "learning_rate": 2.9775733333333334e-05, + "loss": 1.654131622314453, + "step": 303500 + }, + { + "epoch": 40.48, + "grad_norm": 0.8112989068031311, + "learning_rate": 2.9769066666666666e-05, + "loss": 1.6542424011230468, + "step": 303600 + }, + { + "epoch": 40.49333333333333, + "grad_norm": 0.8102808594703674, + "learning_rate": 2.97624e-05, + "loss": 1.6532270812988281, + "step": 303700 + }, + { + "epoch": 40.50666666666667, + "grad_norm": 0.7980448603630066, + "learning_rate": 2.9755733333333334e-05, + "loss": 1.6606166076660156, + "step": 303800 + }, + { + "epoch": 40.52, + "grad_norm": 0.7753362655639648, + "learning_rate": 2.974906666666667e-05, + "loss": 1.6590802001953124, + "step": 303900 + }, + { + "epoch": 40.53333333333333, + "grad_norm": 0.7801727056503296, + "learning_rate": 2.9742400000000005e-05, + "loss": 1.6569808959960937, + "step": 304000 + }, + { + "epoch": 40.54666666666667, + "grad_norm": 0.7659746408462524, + "learning_rate": 2.973573333333333e-05, + "loss": 1.6627920532226563, + "step": 304100 + }, + { + "epoch": 40.56, + "grad_norm": 0.8251011371612549, + "learning_rate": 2.9729066666666666e-05, + "loss": 1.6599037170410156, + "step": 304200 + }, + { + "epoch": 40.57333333333333, + "grad_norm": 0.7905187010765076, + "learning_rate": 2.9722400000000002e-05, + "loss": 1.6602447509765625, + "step": 304300 + }, + { + "epoch": 40.586666666666666, + "grad_norm": 0.7680100202560425, + "learning_rate": 2.9715733333333334e-05, + "loss": 1.6645524597167969, + "step": 304400 + }, + { + "epoch": 40.6, + "grad_norm": 0.8009008765220642, + "learning_rate": 2.970906666666667e-05, + "loss": 1.6655874633789063, + "step": 304500 + }, + { + "epoch": 40.61333333333333, + "grad_norm": 0.7796105742454529, + "learning_rate": 2.9702400000000002e-05, + "loss": 1.6701692199707032, + "step": 304600 + }, + { + "epoch": 40.626666666666665, + "grad_norm": 0.8052720427513123, + "learning_rate": 2.96958e-05, + "loss": 1.67267333984375, + "step": 304700 + }, + { + "epoch": 40.64, + "grad_norm": 0.8020023703575134, + "learning_rate": 2.9689133333333337e-05, + "loss": 1.6702662658691407, + "step": 304800 + }, + { + "epoch": 40.653333333333336, + "grad_norm": 0.7790773510932922, + "learning_rate": 2.968246666666667e-05, + "loss": 1.6637289428710937, + "step": 304900 + }, + { + "epoch": 40.666666666666664, + "grad_norm": 0.7891820073127747, + "learning_rate": 2.9675800000000005e-05, + "loss": 1.6721121215820312, + "step": 305000 + }, + { + "epoch": 40.68, + "grad_norm": 0.8255475759506226, + "learning_rate": 2.9669133333333334e-05, + "loss": 1.668660888671875, + "step": 305100 + }, + { + "epoch": 40.693333333333335, + "grad_norm": 0.7707953453063965, + "learning_rate": 2.9662466666666666e-05, + "loss": 1.670304718017578, + "step": 305200 + }, + { + "epoch": 40.70666666666666, + "grad_norm": 0.789410412311554, + "learning_rate": 2.96558e-05, + "loss": 1.6723420715332031, + "step": 305300 + }, + { + "epoch": 40.72, + "grad_norm": 0.7793656587600708, + "learning_rate": 2.9649133333333334e-05, + "loss": 1.6703863525390625, + "step": 305400 + }, + { + "epoch": 40.733333333333334, + "grad_norm": 0.7544719576835632, + "learning_rate": 2.964246666666667e-05, + "loss": 1.670694580078125, + "step": 305500 + }, + { + "epoch": 40.74666666666667, + "grad_norm": 0.7913680076599121, + "learning_rate": 2.9635800000000002e-05, + "loss": 1.6704800415039063, + "step": 305600 + }, + { + "epoch": 40.76, + "grad_norm": 0.8109893798828125, + "learning_rate": 2.9629133333333337e-05, + "loss": 1.674829864501953, + "step": 305700 + }, + { + "epoch": 40.77333333333333, + "grad_norm": 0.7733386754989624, + "learning_rate": 2.962246666666667e-05, + "loss": 1.671063690185547, + "step": 305800 + }, + { + "epoch": 40.78666666666667, + "grad_norm": 0.8088369965553284, + "learning_rate": 2.96158e-05, + "loss": 1.6718939208984376, + "step": 305900 + }, + { + "epoch": 40.8, + "grad_norm": 0.7910258173942566, + "learning_rate": 2.9609133333333334e-05, + "loss": 1.6722633361816406, + "step": 306000 + }, + { + "epoch": 40.81333333333333, + "grad_norm": 0.8270725607872009, + "learning_rate": 2.9602466666666667e-05, + "loss": 1.6770217895507813, + "step": 306100 + }, + { + "epoch": 40.82666666666667, + "grad_norm": 0.8187015056610107, + "learning_rate": 2.9595800000000002e-05, + "loss": 1.6784989929199219, + "step": 306200 + }, + { + "epoch": 40.84, + "grad_norm": 0.7722174525260925, + "learning_rate": 2.9589133333333334e-05, + "loss": 1.675601806640625, + "step": 306300 + }, + { + "epoch": 40.85333333333333, + "grad_norm": 0.7953956127166748, + "learning_rate": 2.958246666666667e-05, + "loss": 1.6758319091796876, + "step": 306400 + }, + { + "epoch": 40.86666666666667, + "grad_norm": 0.7955514788627625, + "learning_rate": 2.9575800000000002e-05, + "loss": 1.6785484313964845, + "step": 306500 + }, + { + "epoch": 40.88, + "grad_norm": 0.8043191432952881, + "learning_rate": 2.956913333333333e-05, + "loss": 1.6791413879394532, + "step": 306600 + }, + { + "epoch": 40.89333333333333, + "grad_norm": 0.8214145302772522, + "learning_rate": 2.9562466666666667e-05, + "loss": 1.6822396850585937, + "step": 306700 + }, + { + "epoch": 40.906666666666666, + "grad_norm": 0.7704736590385437, + "learning_rate": 2.95558e-05, + "loss": 1.6834477233886718, + "step": 306800 + }, + { + "epoch": 40.92, + "grad_norm": 0.8391588926315308, + "learning_rate": 2.9549133333333335e-05, + "loss": 1.680575408935547, + "step": 306900 + }, + { + "epoch": 40.93333333333333, + "grad_norm": 0.8125873804092407, + "learning_rate": 2.9542533333333334e-05, + "loss": 1.683341522216797, + "step": 307000 + }, + { + "epoch": 40.946666666666665, + "grad_norm": 0.7934849262237549, + "learning_rate": 2.9535866666666666e-05, + "loss": 1.6847650146484374, + "step": 307100 + }, + { + "epoch": 40.96, + "grad_norm": 0.7980996966362, + "learning_rate": 2.9529200000000002e-05, + "loss": 1.6811965942382812, + "step": 307200 + }, + { + "epoch": 40.973333333333336, + "grad_norm": 0.802399754524231, + "learning_rate": 2.9522533333333334e-05, + "loss": 1.6897067260742187, + "step": 307300 + }, + { + "epoch": 40.986666666666665, + "grad_norm": 0.7816872000694275, + "learning_rate": 2.951586666666667e-05, + "loss": 1.6832794189453124, + "step": 307400 + }, + { + "epoch": 41.0, + "grad_norm": 0.7761144638061523, + "learning_rate": 2.9509200000000002e-05, + "loss": 1.6881805419921876, + "step": 307500 + }, + { + "epoch": 41.013333333333335, + "grad_norm": 0.7764184474945068, + "learning_rate": 2.950253333333333e-05, + "loss": 1.5990695190429687, + "step": 307600 + }, + { + "epoch": 41.026666666666664, + "grad_norm": 0.7701564431190491, + "learning_rate": 2.9495866666666667e-05, + "loss": 1.6041400146484375, + "step": 307700 + }, + { + "epoch": 41.04, + "grad_norm": 0.7842352390289307, + "learning_rate": 2.94892e-05, + "loss": 1.6026243591308593, + "step": 307800 + }, + { + "epoch": 41.053333333333335, + "grad_norm": 0.8398421406745911, + "learning_rate": 2.9482533333333334e-05, + "loss": 1.6042144775390625, + "step": 307900 + }, + { + "epoch": 41.06666666666667, + "grad_norm": 0.7771956920623779, + "learning_rate": 2.9475866666666667e-05, + "loss": 1.6058041381835937, + "step": 308000 + }, + { + "epoch": 41.08, + "grad_norm": 0.7307206392288208, + "learning_rate": 2.9469200000000002e-05, + "loss": 1.6052072143554688, + "step": 308100 + }, + { + "epoch": 41.093333333333334, + "grad_norm": 0.7741842269897461, + "learning_rate": 2.9462533333333338e-05, + "loss": 1.6063827514648437, + "step": 308200 + }, + { + "epoch": 41.10666666666667, + "grad_norm": 0.7664023637771606, + "learning_rate": 2.945586666666667e-05, + "loss": 1.6085012817382813, + "step": 308300 + }, + { + "epoch": 41.12, + "grad_norm": 0.7947597503662109, + "learning_rate": 2.94492e-05, + "loss": 1.6075529479980468, + "step": 308400 + }, + { + "epoch": 41.13333333333333, + "grad_norm": 0.8271000385284424, + "learning_rate": 2.944253333333333e-05, + "loss": 1.611210479736328, + "step": 308500 + }, + { + "epoch": 41.14666666666667, + "grad_norm": 0.8020433783531189, + "learning_rate": 2.9435866666666667e-05, + "loss": 1.613904266357422, + "step": 308600 + }, + { + "epoch": 41.16, + "grad_norm": 0.7996675968170166, + "learning_rate": 2.9429200000000003e-05, + "loss": 1.617792205810547, + "step": 308700 + }, + { + "epoch": 41.17333333333333, + "grad_norm": 0.7714760899543762, + "learning_rate": 2.9422533333333335e-05, + "loss": 1.6162484741210938, + "step": 308800 + }, + { + "epoch": 41.18666666666667, + "grad_norm": 0.7961992621421814, + "learning_rate": 2.941586666666667e-05, + "loss": 1.6189137268066407, + "step": 308900 + }, + { + "epoch": 41.2, + "grad_norm": 0.7719022631645203, + "learning_rate": 2.9409200000000003e-05, + "loss": 1.6185585021972657, + "step": 309000 + }, + { + "epoch": 41.21333333333333, + "grad_norm": 0.7894253730773926, + "learning_rate": 2.940253333333334e-05, + "loss": 1.6159666442871095, + "step": 309100 + }, + { + "epoch": 41.22666666666667, + "grad_norm": 0.8292324542999268, + "learning_rate": 2.9395933333333338e-05, + "loss": 1.6167066955566407, + "step": 309200 + }, + { + "epoch": 41.24, + "grad_norm": 0.7811465859413147, + "learning_rate": 2.938926666666667e-05, + "loss": 1.6240852355957032, + "step": 309300 + }, + { + "epoch": 41.25333333333333, + "grad_norm": 0.7826862931251526, + "learning_rate": 2.93826e-05, + "loss": 1.6248715209960938, + "step": 309400 + }, + { + "epoch": 41.266666666666666, + "grad_norm": 0.7634377479553223, + "learning_rate": 2.9375933333333335e-05, + "loss": 1.6282896423339843, + "step": 309500 + }, + { + "epoch": 41.28, + "grad_norm": 0.7704088091850281, + "learning_rate": 2.9369266666666667e-05, + "loss": 1.6228341674804687, + "step": 309600 + }, + { + "epoch": 41.29333333333334, + "grad_norm": 0.776517391204834, + "learning_rate": 2.9362600000000002e-05, + "loss": 1.6235067749023437, + "step": 309700 + }, + { + "epoch": 41.306666666666665, + "grad_norm": 0.7937943935394287, + "learning_rate": 2.9355933333333335e-05, + "loss": 1.6245884704589844, + "step": 309800 + }, + { + "epoch": 41.32, + "grad_norm": 0.7816150784492493, + "learning_rate": 2.934926666666667e-05, + "loss": 1.6250926208496095, + "step": 309900 + }, + { + "epoch": 41.333333333333336, + "grad_norm": 0.789966344833374, + "learning_rate": 2.9342600000000003e-05, + "loss": 1.6290631103515625, + "step": 310000 + }, + { + "epoch": 41.346666666666664, + "grad_norm": 0.7828590273857117, + "learning_rate": 2.9335933333333338e-05, + "loss": 1.6320005798339843, + "step": 310100 + }, + { + "epoch": 41.36, + "grad_norm": 0.7721713781356812, + "learning_rate": 2.9329266666666667e-05, + "loss": 1.6315066528320312, + "step": 310200 + }, + { + "epoch": 41.373333333333335, + "grad_norm": 0.7936566472053528, + "learning_rate": 2.93226e-05, + "loss": 1.6328521728515626, + "step": 310300 + }, + { + "epoch": 41.38666666666666, + "grad_norm": 0.8090173602104187, + "learning_rate": 2.9315933333333335e-05, + "loss": 1.6380584716796875, + "step": 310400 + }, + { + "epoch": 41.4, + "grad_norm": 0.7758917808532715, + "learning_rate": 2.9309266666666667e-05, + "loss": 1.6311029052734376, + "step": 310500 + }, + { + "epoch": 41.413333333333334, + "grad_norm": 0.7972980737686157, + "learning_rate": 2.9302600000000003e-05, + "loss": 1.6364056396484374, + "step": 310600 + }, + { + "epoch": 41.42666666666667, + "grad_norm": 0.795874834060669, + "learning_rate": 2.9295933333333335e-05, + "loss": 1.636111297607422, + "step": 310700 + }, + { + "epoch": 41.44, + "grad_norm": 0.8138737678527832, + "learning_rate": 2.928926666666667e-05, + "loss": 1.636154022216797, + "step": 310800 + }, + { + "epoch": 41.45333333333333, + "grad_norm": 0.8085600137710571, + "learning_rate": 2.92826e-05, + "loss": 1.6349728393554688, + "step": 310900 + }, + { + "epoch": 41.46666666666667, + "grad_norm": 0.7742388844490051, + "learning_rate": 2.9275933333333332e-05, + "loss": 1.63881591796875, + "step": 311000 + }, + { + "epoch": 41.48, + "grad_norm": 0.7965194582939148, + "learning_rate": 2.9269266666666668e-05, + "loss": 1.6336904907226562, + "step": 311100 + }, + { + "epoch": 41.49333333333333, + "grad_norm": 0.8123679161071777, + "learning_rate": 2.9262666666666667e-05, + "loss": 1.6433746337890625, + "step": 311200 + }, + { + "epoch": 41.50666666666667, + "grad_norm": 0.799063503742218, + "learning_rate": 2.9256e-05, + "loss": 1.6420155334472657, + "step": 311300 + }, + { + "epoch": 41.52, + "grad_norm": 0.7700026631355286, + "learning_rate": 2.9249333333333335e-05, + "loss": 1.6381747436523437, + "step": 311400 + }, + { + "epoch": 41.53333333333333, + "grad_norm": 0.783812940120697, + "learning_rate": 2.9242666666666667e-05, + "loss": 1.6365054321289063, + "step": 311500 + }, + { + "epoch": 41.54666666666667, + "grad_norm": 0.7764769792556763, + "learning_rate": 2.9236000000000003e-05, + "loss": 1.6388162231445313, + "step": 311600 + }, + { + "epoch": 41.56, + "grad_norm": 0.7944959402084351, + "learning_rate": 2.9229333333333335e-05, + "loss": 1.6455184936523437, + "step": 311700 + }, + { + "epoch": 41.57333333333333, + "grad_norm": 0.7800427079200745, + "learning_rate": 2.922266666666667e-05, + "loss": 1.6459024047851563, + "step": 311800 + }, + { + "epoch": 41.586666666666666, + "grad_norm": 0.8255797624588013, + "learning_rate": 2.9216e-05, + "loss": 1.6468026733398438, + "step": 311900 + }, + { + "epoch": 41.6, + "grad_norm": 0.7957680225372314, + "learning_rate": 2.9209333333333332e-05, + "loss": 1.6451564025878906, + "step": 312000 + }, + { + "epoch": 41.61333333333333, + "grad_norm": 0.8067429661750793, + "learning_rate": 2.9202666666666667e-05, + "loss": 1.649429168701172, + "step": 312100 + }, + { + "epoch": 41.626666666666665, + "grad_norm": 0.7828828692436218, + "learning_rate": 2.9196e-05, + "loss": 1.6439801025390626, + "step": 312200 + }, + { + "epoch": 41.64, + "grad_norm": 0.7971386313438416, + "learning_rate": 2.9189333333333335e-05, + "loss": 1.6461314392089843, + "step": 312300 + }, + { + "epoch": 41.653333333333336, + "grad_norm": 0.8209567666053772, + "learning_rate": 2.9182666666666668e-05, + "loss": 1.6470904541015625, + "step": 312400 + }, + { + "epoch": 41.666666666666664, + "grad_norm": 0.8193508386611938, + "learning_rate": 2.9176000000000003e-05, + "loss": 1.6506707763671875, + "step": 312500 + }, + { + "epoch": 41.68, + "grad_norm": 0.8329564929008484, + "learning_rate": 2.916933333333334e-05, + "loss": 1.6542561340332032, + "step": 312600 + }, + { + "epoch": 41.693333333333335, + "grad_norm": 0.7866358160972595, + "learning_rate": 2.9162666666666664e-05, + "loss": 1.6521278381347657, + "step": 312700 + }, + { + "epoch": 41.70666666666666, + "grad_norm": 0.8379685878753662, + "learning_rate": 2.9156e-05, + "loss": 1.6496038818359375, + "step": 312800 + }, + { + "epoch": 41.72, + "grad_norm": 0.7962581515312195, + "learning_rate": 2.9149333333333336e-05, + "loss": 1.6517626953125, + "step": 312900 + }, + { + "epoch": 41.733333333333334, + "grad_norm": 0.7623695135116577, + "learning_rate": 2.9142666666666668e-05, + "loss": 1.6487763977050782, + "step": 313000 + }, + { + "epoch": 41.74666666666667, + "grad_norm": 0.7969656586647034, + "learning_rate": 2.9136000000000004e-05, + "loss": 1.6543055725097657, + "step": 313100 + }, + { + "epoch": 41.76, + "grad_norm": 0.8090587258338928, + "learning_rate": 2.9129333333333336e-05, + "loss": 1.6550767517089844, + "step": 313200 + }, + { + "epoch": 41.77333333333333, + "grad_norm": 0.8005834817886353, + "learning_rate": 2.912266666666667e-05, + "loss": 1.6577835083007812, + "step": 313300 + }, + { + "epoch": 41.78666666666667, + "grad_norm": 0.7874211668968201, + "learning_rate": 2.9116e-05, + "loss": 1.6544857788085938, + "step": 313400 + }, + { + "epoch": 41.8, + "grad_norm": 0.7901095747947693, + "learning_rate": 2.9109400000000003e-05, + "loss": 1.6523391723632812, + "step": 313500 + }, + { + "epoch": 41.81333333333333, + "grad_norm": 0.7718372344970703, + "learning_rate": 2.910273333333334e-05, + "loss": 1.657394256591797, + "step": 313600 + }, + { + "epoch": 41.82666666666667, + "grad_norm": 0.8033204078674316, + "learning_rate": 2.9096066666666667e-05, + "loss": 1.6549183654785156, + "step": 313700 + }, + { + "epoch": 41.84, + "grad_norm": 0.773262619972229, + "learning_rate": 2.90894e-05, + "loss": 1.660445556640625, + "step": 313800 + }, + { + "epoch": 41.85333333333333, + "grad_norm": 0.781597375869751, + "learning_rate": 2.9082733333333335e-05, + "loss": 1.659234619140625, + "step": 313900 + }, + { + "epoch": 41.86666666666667, + "grad_norm": 0.823759138584137, + "learning_rate": 2.9076066666666668e-05, + "loss": 1.6564396667480468, + "step": 314000 + }, + { + "epoch": 41.88, + "grad_norm": 0.7636963725090027, + "learning_rate": 2.9069400000000003e-05, + "loss": 1.65720703125, + "step": 314100 + }, + { + "epoch": 41.89333333333333, + "grad_norm": 0.7856835126876831, + "learning_rate": 2.9062733333333336e-05, + "loss": 1.6625801086425782, + "step": 314200 + }, + { + "epoch": 41.906666666666666, + "grad_norm": 0.7966486215591431, + "learning_rate": 2.905606666666667e-05, + "loss": 1.6632244873046875, + "step": 314300 + }, + { + "epoch": 41.92, + "grad_norm": 0.7848227024078369, + "learning_rate": 2.90494e-05, + "loss": 1.6618414306640625, + "step": 314400 + }, + { + "epoch": 41.93333333333333, + "grad_norm": 0.8092052936553955, + "learning_rate": 2.9042733333333332e-05, + "loss": 1.6637734985351562, + "step": 314500 + }, + { + "epoch": 41.946666666666665, + "grad_norm": 0.8151919841766357, + "learning_rate": 2.9036066666666668e-05, + "loss": 1.6675376892089844, + "step": 314600 + }, + { + "epoch": 41.96, + "grad_norm": 0.7819831371307373, + "learning_rate": 2.90294e-05, + "loss": 1.6665446472167968, + "step": 314700 + }, + { + "epoch": 41.973333333333336, + "grad_norm": 0.7871850728988647, + "learning_rate": 2.9022733333333336e-05, + "loss": 1.66580810546875, + "step": 314800 + }, + { + "epoch": 41.986666666666665, + "grad_norm": 0.8031324744224548, + "learning_rate": 2.9016066666666668e-05, + "loss": 1.6656488037109376, + "step": 314900 + }, + { + "epoch": 42.0, + "grad_norm": 0.8214955925941467, + "learning_rate": 2.9009400000000004e-05, + "loss": 1.6649081420898437, + "step": 315000 + }, + { + "epoch": 42.013333333333335, + "grad_norm": 0.7725866436958313, + "learning_rate": 2.9002733333333336e-05, + "loss": 1.579239501953125, + "step": 315100 + }, + { + "epoch": 42.026666666666664, + "grad_norm": 0.7591557502746582, + "learning_rate": 2.8996066666666665e-05, + "loss": 1.5807839965820312, + "step": 315200 + }, + { + "epoch": 42.04, + "grad_norm": 0.7683588862419128, + "learning_rate": 2.89894e-05, + "loss": 1.584822235107422, + "step": 315300 + }, + { + "epoch": 42.053333333333335, + "grad_norm": 0.7662196159362793, + "learning_rate": 2.8982733333333333e-05, + "loss": 1.5851914978027344, + "step": 315400 + }, + { + "epoch": 42.06666666666667, + "grad_norm": 0.8008477687835693, + "learning_rate": 2.897606666666667e-05, + "loss": 1.5897236633300782, + "step": 315500 + }, + { + "epoch": 42.08, + "grad_norm": 0.8044509291648865, + "learning_rate": 2.8969466666666668e-05, + "loss": 1.5850997924804688, + "step": 315600 + }, + { + "epoch": 42.093333333333334, + "grad_norm": 0.82093745470047, + "learning_rate": 2.89628e-05, + "loss": 1.5886293029785157, + "step": 315700 + }, + { + "epoch": 42.10666666666667, + "grad_norm": 0.7949629426002502, + "learning_rate": 2.8956133333333336e-05, + "loss": 1.5937432861328125, + "step": 315800 + }, + { + "epoch": 42.12, + "grad_norm": 0.7797324657440186, + "learning_rate": 2.8949466666666668e-05, + "loss": 1.5901795959472655, + "step": 315900 + }, + { + "epoch": 42.13333333333333, + "grad_norm": 0.7416061758995056, + "learning_rate": 2.8942800000000003e-05, + "loss": 1.5912071228027345, + "step": 316000 + }, + { + "epoch": 42.14666666666667, + "grad_norm": 0.796648383140564, + "learning_rate": 2.8936133333333336e-05, + "loss": 1.5968006896972655, + "step": 316100 + }, + { + "epoch": 42.16, + "grad_norm": 0.7828426361083984, + "learning_rate": 2.8929466666666665e-05, + "loss": 1.6001832580566406, + "step": 316200 + }, + { + "epoch": 42.17333333333333, + "grad_norm": 0.778724193572998, + "learning_rate": 2.89228e-05, + "loss": 1.5923294067382812, + "step": 316300 + }, + { + "epoch": 42.18666666666667, + "grad_norm": 0.7975136637687683, + "learning_rate": 2.8916133333333333e-05, + "loss": 1.5967176818847657, + "step": 316400 + }, + { + "epoch": 42.2, + "grad_norm": 0.7668192386627197, + "learning_rate": 2.8909466666666668e-05, + "loss": 1.6007345581054688, + "step": 316500 + }, + { + "epoch": 42.21333333333333, + "grad_norm": 0.7750270366668701, + "learning_rate": 2.89028e-05, + "loss": 1.601139373779297, + "step": 316600 + }, + { + "epoch": 42.22666666666667, + "grad_norm": 0.8115882873535156, + "learning_rate": 2.8896133333333336e-05, + "loss": 1.5999020385742186, + "step": 316700 + }, + { + "epoch": 42.24, + "grad_norm": 0.8152367472648621, + "learning_rate": 2.8889466666666672e-05, + "loss": 1.6009846496582032, + "step": 316800 + }, + { + "epoch": 42.25333333333333, + "grad_norm": 0.7818172574043274, + "learning_rate": 2.8882799999999997e-05, + "loss": 1.6060690307617187, + "step": 316900 + }, + { + "epoch": 42.266666666666666, + "grad_norm": 0.7581207156181335, + "learning_rate": 2.8876133333333333e-05, + "loss": 1.61083984375, + "step": 317000 + }, + { + "epoch": 42.28, + "grad_norm": 0.797792911529541, + "learning_rate": 2.8869466666666665e-05, + "loss": 1.6037715148925782, + "step": 317100 + }, + { + "epoch": 42.29333333333334, + "grad_norm": 0.8175429701805115, + "learning_rate": 2.88628e-05, + "loss": 1.6076036071777344, + "step": 317200 + }, + { + "epoch": 42.306666666666665, + "grad_norm": 0.772908627986908, + "learning_rate": 2.8856133333333337e-05, + "loss": 1.6125408935546874, + "step": 317300 + }, + { + "epoch": 42.32, + "grad_norm": 0.7854279279708862, + "learning_rate": 2.884946666666667e-05, + "loss": 1.6088632202148438, + "step": 317400 + }, + { + "epoch": 42.333333333333336, + "grad_norm": 0.7655262351036072, + "learning_rate": 2.8842800000000004e-05, + "loss": 1.610213623046875, + "step": 317500 + }, + { + "epoch": 42.346666666666664, + "grad_norm": 0.7729225754737854, + "learning_rate": 2.8836133333333337e-05, + "loss": 1.6126589965820313, + "step": 317600 + }, + { + "epoch": 42.36, + "grad_norm": 0.7809514403343201, + "learning_rate": 2.8829466666666666e-05, + "loss": 1.6137397766113282, + "step": 317700 + }, + { + "epoch": 42.373333333333335, + "grad_norm": 0.8015533089637756, + "learning_rate": 2.88228e-05, + "loss": 1.6137492370605468, + "step": 317800 + }, + { + "epoch": 42.38666666666666, + "grad_norm": 0.8014168739318848, + "learning_rate": 2.8816133333333334e-05, + "loss": 1.6128648376464845, + "step": 317900 + }, + { + "epoch": 42.4, + "grad_norm": 0.8032166957855225, + "learning_rate": 2.8809533333333333e-05, + "loss": 1.617438507080078, + "step": 318000 + }, + { + "epoch": 42.413333333333334, + "grad_norm": 0.7962257266044617, + "learning_rate": 2.8802866666666668e-05, + "loss": 1.6180424499511719, + "step": 318100 + }, + { + "epoch": 42.42666666666667, + "grad_norm": 0.7772518992424011, + "learning_rate": 2.87962e-05, + "loss": 1.618890838623047, + "step": 318200 + }, + { + "epoch": 42.44, + "grad_norm": 0.8154412508010864, + "learning_rate": 2.8789533333333336e-05, + "loss": 1.6198379516601562, + "step": 318300 + }, + { + "epoch": 42.45333333333333, + "grad_norm": 0.8127172589302063, + "learning_rate": 2.878286666666667e-05, + "loss": 1.620894317626953, + "step": 318400 + }, + { + "epoch": 42.46666666666667, + "grad_norm": 0.7918204069137573, + "learning_rate": 2.8776200000000004e-05, + "loss": 1.620947265625, + "step": 318500 + }, + { + "epoch": 42.48, + "grad_norm": 0.7991171479225159, + "learning_rate": 2.8769533333333336e-05, + "loss": 1.6179556274414062, + "step": 318600 + }, + { + "epoch": 42.49333333333333, + "grad_norm": 0.7768269777297974, + "learning_rate": 2.8762866666666665e-05, + "loss": 1.619527587890625, + "step": 318700 + }, + { + "epoch": 42.50666666666667, + "grad_norm": 0.8096961379051208, + "learning_rate": 2.87562e-05, + "loss": 1.618616943359375, + "step": 318800 + }, + { + "epoch": 42.52, + "grad_norm": 0.7590042352676392, + "learning_rate": 2.8749533333333333e-05, + "loss": 1.6230258178710937, + "step": 318900 + }, + { + "epoch": 42.53333333333333, + "grad_norm": 0.8029301762580872, + "learning_rate": 2.874286666666667e-05, + "loss": 1.6235476684570314, + "step": 319000 + }, + { + "epoch": 42.54666666666667, + "grad_norm": 0.794658899307251, + "learning_rate": 2.87362e-05, + "loss": 1.6211264038085937, + "step": 319100 + }, + { + "epoch": 42.56, + "grad_norm": 0.843220591545105, + "learning_rate": 2.8729533333333337e-05, + "loss": 1.6271005249023438, + "step": 319200 + }, + { + "epoch": 42.57333333333333, + "grad_norm": 0.8237653374671936, + "learning_rate": 2.872286666666667e-05, + "loss": 1.6294674682617187, + "step": 319300 + }, + { + "epoch": 42.586666666666666, + "grad_norm": 0.8025068640708923, + "learning_rate": 2.8716199999999998e-05, + "loss": 1.6239111328125, + "step": 319400 + }, + { + "epoch": 42.6, + "grad_norm": 0.7929406762123108, + "learning_rate": 2.8709533333333334e-05, + "loss": 1.6274394226074218, + "step": 319500 + }, + { + "epoch": 42.61333333333333, + "grad_norm": 0.8021830320358276, + "learning_rate": 2.8702866666666666e-05, + "loss": 1.6309587097167968, + "step": 319600 + }, + { + "epoch": 42.626666666666665, + "grad_norm": 0.8247801661491394, + "learning_rate": 2.86962e-05, + "loss": 1.6306277465820314, + "step": 319700 + }, + { + "epoch": 42.64, + "grad_norm": 0.7925310134887695, + "learning_rate": 2.8689533333333334e-05, + "loss": 1.6312562561035155, + "step": 319800 + }, + { + "epoch": 42.653333333333336, + "grad_norm": 0.7969545722007751, + "learning_rate": 2.868286666666667e-05, + "loss": 1.6337765502929686, + "step": 319900 + }, + { + "epoch": 42.666666666666664, + "grad_norm": 0.8170307278633118, + "learning_rate": 2.86762e-05, + "loss": 1.6321212768554687, + "step": 320000 + }, + { + "epoch": 42.68, + "grad_norm": 0.77912837266922, + "learning_rate": 2.86696e-05, + "loss": 1.6315771484375, + "step": 320100 + }, + { + "epoch": 42.693333333333335, + "grad_norm": 0.788314938545227, + "learning_rate": 2.8662933333333336e-05, + "loss": 1.6329681396484375, + "step": 320200 + }, + { + "epoch": 42.70666666666666, + "grad_norm": 0.8608801960945129, + "learning_rate": 2.865626666666667e-05, + "loss": 1.6328976440429688, + "step": 320300 + }, + { + "epoch": 42.72, + "grad_norm": 0.8006208539009094, + "learning_rate": 2.8649599999999998e-05, + "loss": 1.6340364074707032, + "step": 320400 + }, + { + "epoch": 42.733333333333334, + "grad_norm": 0.7970700263977051, + "learning_rate": 2.8642933333333333e-05, + "loss": 1.633923797607422, + "step": 320500 + }, + { + "epoch": 42.74666666666667, + "grad_norm": 0.7704428434371948, + "learning_rate": 2.8636266666666665e-05, + "loss": 1.6360755920410157, + "step": 320600 + }, + { + "epoch": 42.76, + "grad_norm": 0.8283227682113647, + "learning_rate": 2.86296e-05, + "loss": 1.637872772216797, + "step": 320700 + }, + { + "epoch": 42.77333333333333, + "grad_norm": 0.851524293422699, + "learning_rate": 2.8622933333333333e-05, + "loss": 1.6359402465820312, + "step": 320800 + }, + { + "epoch": 42.78666666666667, + "grad_norm": 0.7893416881561279, + "learning_rate": 2.861626666666667e-05, + "loss": 1.6323648071289063, + "step": 320900 + }, + { + "epoch": 42.8, + "grad_norm": 0.8033201098442078, + "learning_rate": 2.8609600000000005e-05, + "loss": 1.6443894958496095, + "step": 321000 + }, + { + "epoch": 42.81333333333333, + "grad_norm": 0.8074483275413513, + "learning_rate": 2.8602933333333337e-05, + "loss": 1.639532470703125, + "step": 321100 + }, + { + "epoch": 42.82666666666667, + "grad_norm": 0.7866470217704773, + "learning_rate": 2.8596266666666666e-05, + "loss": 1.64190673828125, + "step": 321200 + }, + { + "epoch": 42.84, + "grad_norm": 0.8023852109909058, + "learning_rate": 2.8589599999999998e-05, + "loss": 1.638301239013672, + "step": 321300 + }, + { + "epoch": 42.85333333333333, + "grad_norm": 0.8220396637916565, + "learning_rate": 2.8582933333333334e-05, + "loss": 1.6426438903808593, + "step": 321400 + }, + { + "epoch": 42.86666666666667, + "grad_norm": 0.8232139945030212, + "learning_rate": 2.857626666666667e-05, + "loss": 1.6402984619140626, + "step": 321500 + }, + { + "epoch": 42.88, + "grad_norm": 0.8309381604194641, + "learning_rate": 2.8569600000000002e-05, + "loss": 1.636634521484375, + "step": 321600 + }, + { + "epoch": 42.89333333333333, + "grad_norm": 0.8182979226112366, + "learning_rate": 2.8562933333333337e-05, + "loss": 1.6453871154785156, + "step": 321700 + }, + { + "epoch": 42.906666666666666, + "grad_norm": 0.8423646688461304, + "learning_rate": 2.855626666666667e-05, + "loss": 1.6444189453125, + "step": 321800 + }, + { + "epoch": 42.92, + "grad_norm": 0.8091830015182495, + "learning_rate": 2.8549600000000005e-05, + "loss": 1.6435879516601561, + "step": 321900 + }, + { + "epoch": 42.93333333333333, + "grad_norm": 0.8040499091148376, + "learning_rate": 2.8542933333333334e-05, + "loss": 1.6471051025390624, + "step": 322000 + }, + { + "epoch": 42.946666666666665, + "grad_norm": 0.8056833148002625, + "learning_rate": 2.8536266666666666e-05, + "loss": 1.6470870971679688, + "step": 322100 + }, + { + "epoch": 42.96, + "grad_norm": 0.8252720832824707, + "learning_rate": 2.8529600000000002e-05, + "loss": 1.647276611328125, + "step": 322200 + }, + { + "epoch": 42.973333333333336, + "grad_norm": 0.7846107482910156, + "learning_rate": 2.8522933333333334e-05, + "loss": 1.6448028564453125, + "step": 322300 + }, + { + "epoch": 42.986666666666665, + "grad_norm": 0.8476292490959167, + "learning_rate": 2.851626666666667e-05, + "loss": 1.6520864868164062, + "step": 322400 + }, + { + "epoch": 43.0, + "grad_norm": 0.8160085678100586, + "learning_rate": 2.850966666666667e-05, + "loss": 1.6483326721191407, + "step": 322500 + }, + { + "epoch": 43.013333333333335, + "grad_norm": 0.8134644627571106, + "learning_rate": 2.8503e-05, + "loss": 1.564569854736328, + "step": 322600 + }, + { + "epoch": 43.026666666666664, + "grad_norm": 0.7962319850921631, + "learning_rate": 2.8496333333333337e-05, + "loss": 1.5676768493652344, + "step": 322700 + }, + { + "epoch": 43.04, + "grad_norm": 0.7382012009620667, + "learning_rate": 2.848966666666667e-05, + "loss": 1.566510467529297, + "step": 322800 + }, + { + "epoch": 43.053333333333335, + "grad_norm": 0.7968773245811462, + "learning_rate": 2.8483000000000005e-05, + "loss": 1.5708531188964843, + "step": 322900 + }, + { + "epoch": 43.06666666666667, + "grad_norm": 0.7553964853286743, + "learning_rate": 2.8476333333333334e-05, + "loss": 1.5697604370117189, + "step": 323000 + }, + { + "epoch": 43.08, + "grad_norm": 0.7678956389427185, + "learning_rate": 2.8469666666666666e-05, + "loss": 1.5742947387695312, + "step": 323100 + }, + { + "epoch": 43.093333333333334, + "grad_norm": 0.80665522813797, + "learning_rate": 2.8463000000000002e-05, + "loss": 1.5716915893554688, + "step": 323200 + }, + { + "epoch": 43.10666666666667, + "grad_norm": 0.8582669496536255, + "learning_rate": 2.8456333333333334e-05, + "loss": 1.5759283447265624, + "step": 323300 + }, + { + "epoch": 43.12, + "grad_norm": 0.8015368580818176, + "learning_rate": 2.844966666666667e-05, + "loss": 1.5717546081542968, + "step": 323400 + }, + { + "epoch": 43.13333333333333, + "grad_norm": 0.7866412997245789, + "learning_rate": 2.8443000000000002e-05, + "loss": 1.5720692443847657, + "step": 323500 + }, + { + "epoch": 43.14666666666667, + "grad_norm": 0.7602863311767578, + "learning_rate": 2.8436333333333338e-05, + "loss": 1.5750347900390624, + "step": 323600 + }, + { + "epoch": 43.16, + "grad_norm": 0.7865772843360901, + "learning_rate": 2.8429666666666666e-05, + "loss": 1.578832550048828, + "step": 323700 + }, + { + "epoch": 43.17333333333333, + "grad_norm": 0.7900835871696472, + "learning_rate": 2.8423e-05, + "loss": 1.576087188720703, + "step": 323800 + }, + { + "epoch": 43.18666666666667, + "grad_norm": 0.7576287984848022, + "learning_rate": 2.8416333333333334e-05, + "loss": 1.582108917236328, + "step": 323900 + }, + { + "epoch": 43.2, + "grad_norm": 0.8061697483062744, + "learning_rate": 2.8409666666666667e-05, + "loss": 1.5846551513671876, + "step": 324000 + }, + { + "epoch": 43.21333333333333, + "grad_norm": 0.8036941289901733, + "learning_rate": 2.8403000000000002e-05, + "loss": 1.5829280090332032, + "step": 324100 + }, + { + "epoch": 43.22666666666667, + "grad_norm": 0.81672602891922, + "learning_rate": 2.8396333333333335e-05, + "loss": 1.5833650207519532, + "step": 324200 + }, + { + "epoch": 43.24, + "grad_norm": 0.7637189626693726, + "learning_rate": 2.838966666666667e-05, + "loss": 1.5832330322265624, + "step": 324300 + }, + { + "epoch": 43.25333333333333, + "grad_norm": 0.810999870300293, + "learning_rate": 2.8383000000000003e-05, + "loss": 1.585732421875, + "step": 324400 + }, + { + "epoch": 43.266666666666666, + "grad_norm": 0.7959699034690857, + "learning_rate": 2.837633333333333e-05, + "loss": 1.5903799438476562, + "step": 324500 + }, + { + "epoch": 43.28, + "grad_norm": 0.8153569102287292, + "learning_rate": 2.8369666666666667e-05, + "loss": 1.5871414184570312, + "step": 324600 + }, + { + "epoch": 43.29333333333334, + "grad_norm": 0.7914409637451172, + "learning_rate": 2.8363066666666666e-05, + "loss": 1.5875323486328126, + "step": 324700 + }, + { + "epoch": 43.306666666666665, + "grad_norm": 0.7989243268966675, + "learning_rate": 2.83564e-05, + "loss": 1.5916000366210938, + "step": 324800 + }, + { + "epoch": 43.32, + "grad_norm": 0.7825499773025513, + "learning_rate": 2.8349733333333334e-05, + "loss": 1.5893446350097655, + "step": 324900 + }, + { + "epoch": 43.333333333333336, + "grad_norm": 0.8575960993766785, + "learning_rate": 2.8343066666666666e-05, + "loss": 1.5977841186523438, + "step": 325000 + }, + { + "epoch": 43.346666666666664, + "grad_norm": 0.8244292736053467, + "learning_rate": 2.8336400000000002e-05, + "loss": 1.601702880859375, + "step": 325100 + }, + { + "epoch": 43.36, + "grad_norm": 0.7933399677276611, + "learning_rate": 2.8329733333333334e-05, + "loss": 1.5982562255859376, + "step": 325200 + }, + { + "epoch": 43.373333333333335, + "grad_norm": 0.767894446849823, + "learning_rate": 2.832306666666667e-05, + "loss": 1.5982928466796875, + "step": 325300 + }, + { + "epoch": 43.38666666666666, + "grad_norm": 0.7718991041183472, + "learning_rate": 2.8316400000000006e-05, + "loss": 1.595538330078125, + "step": 325400 + }, + { + "epoch": 43.4, + "grad_norm": 0.8214613795280457, + "learning_rate": 2.830973333333333e-05, + "loss": 1.5974700927734375, + "step": 325500 + }, + { + "epoch": 43.413333333333334, + "grad_norm": 0.7975192666053772, + "learning_rate": 2.8303066666666667e-05, + "loss": 1.5963027954101563, + "step": 325600 + }, + { + "epoch": 43.42666666666667, + "grad_norm": 0.8252496123313904, + "learning_rate": 2.8296400000000002e-05, + "loss": 1.602006072998047, + "step": 325700 + }, + { + "epoch": 43.44, + "grad_norm": 0.7980925440788269, + "learning_rate": 2.8289733333333335e-05, + "loss": 1.5992507934570312, + "step": 325800 + }, + { + "epoch": 43.45333333333333, + "grad_norm": 0.8060539960861206, + "learning_rate": 2.828306666666667e-05, + "loss": 1.6028526306152344, + "step": 325900 + }, + { + "epoch": 43.46666666666667, + "grad_norm": 0.8016360998153687, + "learning_rate": 2.8276400000000003e-05, + "loss": 1.6021473693847657, + "step": 326000 + }, + { + "epoch": 43.48, + "grad_norm": 0.8183965086936951, + "learning_rate": 2.8269733333333338e-05, + "loss": 1.604202117919922, + "step": 326100 + }, + { + "epoch": 43.49333333333333, + "grad_norm": 0.8167826533317566, + "learning_rate": 2.8263066666666667e-05, + "loss": 1.6037716674804687, + "step": 326200 + }, + { + "epoch": 43.50666666666667, + "grad_norm": 0.822792649269104, + "learning_rate": 2.82564e-05, + "loss": 1.6101824951171875, + "step": 326300 + }, + { + "epoch": 43.52, + "grad_norm": 0.8114305734634399, + "learning_rate": 2.8249733333333335e-05, + "loss": 1.6087193298339844, + "step": 326400 + }, + { + "epoch": 43.53333333333333, + "grad_norm": 0.7822854518890381, + "learning_rate": 2.8243066666666667e-05, + "loss": 1.6054570007324218, + "step": 326500 + }, + { + "epoch": 43.54666666666667, + "grad_norm": 0.8089674115180969, + "learning_rate": 2.8236400000000003e-05, + "loss": 1.6116357421875, + "step": 326600 + }, + { + "epoch": 43.56, + "grad_norm": 0.8371312618255615, + "learning_rate": 2.8229733333333335e-05, + "loss": 1.6092622375488281, + "step": 326700 + }, + { + "epoch": 43.57333333333333, + "grad_norm": 0.8427196145057678, + "learning_rate": 2.822306666666667e-05, + "loss": 1.6071795654296874, + "step": 326800 + }, + { + "epoch": 43.586666666666666, + "grad_norm": 0.8295238614082336, + "learning_rate": 2.8216400000000003e-05, + "loss": 1.6127923583984376, + "step": 326900 + }, + { + "epoch": 43.6, + "grad_norm": 0.7599214315414429, + "learning_rate": 2.8209733333333332e-05, + "loss": 1.6075257873535156, + "step": 327000 + }, + { + "epoch": 43.61333333333333, + "grad_norm": 0.8173493146896362, + "learning_rate": 2.8203133333333338e-05, + "loss": 1.614122314453125, + "step": 327100 + }, + { + "epoch": 43.626666666666665, + "grad_norm": 0.8332886695861816, + "learning_rate": 2.8196466666666667e-05, + "loss": 1.6084408569335937, + "step": 327200 + }, + { + "epoch": 43.64, + "grad_norm": 0.7986454367637634, + "learning_rate": 2.81898e-05, + "loss": 1.611384735107422, + "step": 327300 + }, + { + "epoch": 43.653333333333336, + "grad_norm": 0.810438334941864, + "learning_rate": 2.8183133333333335e-05, + "loss": 1.6099681091308593, + "step": 327400 + }, + { + "epoch": 43.666666666666664, + "grad_norm": 0.8122630715370178, + "learning_rate": 2.8176466666666667e-05, + "loss": 1.6159297180175782, + "step": 327500 + }, + { + "epoch": 43.68, + "grad_norm": 0.8273375630378723, + "learning_rate": 2.8169800000000003e-05, + "loss": 1.61582275390625, + "step": 327600 + }, + { + "epoch": 43.693333333333335, + "grad_norm": 0.8308714628219604, + "learning_rate": 2.8163133333333335e-05, + "loss": 1.6199285888671875, + "step": 327700 + }, + { + "epoch": 43.70666666666666, + "grad_norm": 0.8172910809516907, + "learning_rate": 2.815646666666667e-05, + "loss": 1.6155218505859374, + "step": 327800 + }, + { + "epoch": 43.72, + "grad_norm": 0.8160513639450073, + "learning_rate": 2.8149800000000003e-05, + "loss": 1.6149066162109376, + "step": 327900 + }, + { + "epoch": 43.733333333333334, + "grad_norm": 0.8249967098236084, + "learning_rate": 2.814313333333333e-05, + "loss": 1.6162269592285157, + "step": 328000 + }, + { + "epoch": 43.74666666666667, + "grad_norm": 0.8377850651741028, + "learning_rate": 2.8136466666666667e-05, + "loss": 1.618191680908203, + "step": 328100 + }, + { + "epoch": 43.76, + "grad_norm": 0.8137295842170715, + "learning_rate": 2.81298e-05, + "loss": 1.6187442016601563, + "step": 328200 + }, + { + "epoch": 43.77333333333333, + "grad_norm": 0.837970495223999, + "learning_rate": 2.8123133333333335e-05, + "loss": 1.6166807556152343, + "step": 328300 + }, + { + "epoch": 43.78666666666667, + "grad_norm": 0.8243003487586975, + "learning_rate": 2.8116466666666668e-05, + "loss": 1.616520233154297, + "step": 328400 + }, + { + "epoch": 43.8, + "grad_norm": 0.803848147392273, + "learning_rate": 2.8109800000000003e-05, + "loss": 1.6198391723632812, + "step": 328500 + }, + { + "epoch": 43.81333333333333, + "grad_norm": 0.833913266658783, + "learning_rate": 2.8103133333333335e-05, + "loss": 1.6213204956054688, + "step": 328600 + }, + { + "epoch": 43.82666666666667, + "grad_norm": 0.8218970894813538, + "learning_rate": 2.8096466666666664e-05, + "loss": 1.6247633361816407, + "step": 328700 + }, + { + "epoch": 43.84, + "grad_norm": 0.7986996173858643, + "learning_rate": 2.80898e-05, + "loss": 1.6211305236816407, + "step": 328800 + }, + { + "epoch": 43.85333333333333, + "grad_norm": 0.8100335597991943, + "learning_rate": 2.8083133333333332e-05, + "loss": 1.6219183349609374, + "step": 328900 + }, + { + "epoch": 43.86666666666667, + "grad_norm": 0.8108803033828735, + "learning_rate": 2.8076466666666668e-05, + "loss": 1.625777587890625, + "step": 329000 + }, + { + "epoch": 43.88, + "grad_norm": 0.8235127329826355, + "learning_rate": 2.80698e-05, + "loss": 1.6242713928222656, + "step": 329100 + }, + { + "epoch": 43.89333333333333, + "grad_norm": 0.8156707882881165, + "learning_rate": 2.8063133333333336e-05, + "loss": 1.6232484436035157, + "step": 329200 + }, + { + "epoch": 43.906666666666666, + "grad_norm": 0.8078377842903137, + "learning_rate": 2.805646666666667e-05, + "loss": 1.628054656982422, + "step": 329300 + }, + { + "epoch": 43.92, + "grad_norm": 0.8015416264533997, + "learning_rate": 2.8049866666666667e-05, + "loss": 1.6264244079589845, + "step": 329400 + }, + { + "epoch": 43.93333333333333, + "grad_norm": 0.8207682967185974, + "learning_rate": 2.8043200000000003e-05, + "loss": 1.6302552795410157, + "step": 329500 + }, + { + "epoch": 43.946666666666665, + "grad_norm": 0.8398280739784241, + "learning_rate": 2.803653333333334e-05, + "loss": 1.6280979919433594, + "step": 329600 + }, + { + "epoch": 43.96, + "grad_norm": 0.8197426199913025, + "learning_rate": 2.8029866666666664e-05, + "loss": 1.628609619140625, + "step": 329700 + }, + { + "epoch": 43.973333333333336, + "grad_norm": 0.8169100284576416, + "learning_rate": 2.80232e-05, + "loss": 1.6312359619140624, + "step": 329800 + }, + { + "epoch": 43.986666666666665, + "grad_norm": 0.83058100938797, + "learning_rate": 2.8016533333333332e-05, + "loss": 1.6318269348144532, + "step": 329900 + }, + { + "epoch": 44.0, + "grad_norm": 0.8323699831962585, + "learning_rate": 2.8009866666666668e-05, + "loss": 1.630924072265625, + "step": 330000 + }, + { + "epoch": 44.013333333333335, + "grad_norm": 0.7513566613197327, + "learning_rate": 2.8003200000000003e-05, + "loss": 1.5481965637207031, + "step": 330100 + }, + { + "epoch": 44.026666666666664, + "grad_norm": 0.795397162437439, + "learning_rate": 2.7996533333333335e-05, + "loss": 1.548214874267578, + "step": 330200 + }, + { + "epoch": 44.04, + "grad_norm": 0.8049753904342651, + "learning_rate": 2.798986666666667e-05, + "loss": 1.5531326293945313, + "step": 330300 + }, + { + "epoch": 44.053333333333335, + "grad_norm": 0.8120512366294861, + "learning_rate": 2.7983200000000003e-05, + "loss": 1.5544256591796874, + "step": 330400 + }, + { + "epoch": 44.06666666666667, + "grad_norm": 0.7974734306335449, + "learning_rate": 2.7976533333333332e-05, + "loss": 1.5533895874023438, + "step": 330500 + }, + { + "epoch": 44.08, + "grad_norm": 0.7629339098930359, + "learning_rate": 2.7969866666666668e-05, + "loss": 1.5582643127441407, + "step": 330600 + }, + { + "epoch": 44.093333333333334, + "grad_norm": 0.8154823184013367, + "learning_rate": 2.79632e-05, + "loss": 1.5581031799316407, + "step": 330700 + }, + { + "epoch": 44.10666666666667, + "grad_norm": 0.7857486605644226, + "learning_rate": 2.7956533333333336e-05, + "loss": 1.5564183044433593, + "step": 330800 + }, + { + "epoch": 44.12, + "grad_norm": 0.787510097026825, + "learning_rate": 2.7949866666666668e-05, + "loss": 1.5604660034179687, + "step": 330900 + }, + { + "epoch": 44.13333333333333, + "grad_norm": 0.8060212135314941, + "learning_rate": 2.7943200000000004e-05, + "loss": 1.5654124450683593, + "step": 331000 + }, + { + "epoch": 44.14666666666667, + "grad_norm": 0.7761242389678955, + "learning_rate": 2.7936533333333336e-05, + "loss": 1.5596726989746095, + "step": 331100 + }, + { + "epoch": 44.16, + "grad_norm": 0.8251379132270813, + "learning_rate": 2.7929866666666665e-05, + "loss": 1.5614840698242187, + "step": 331200 + }, + { + "epoch": 44.17333333333333, + "grad_norm": 0.7911105155944824, + "learning_rate": 2.79232e-05, + "loss": 1.56426025390625, + "step": 331300 + }, + { + "epoch": 44.18666666666667, + "grad_norm": 0.8405753374099731, + "learning_rate": 2.7916533333333333e-05, + "loss": 1.5673910522460937, + "step": 331400 + }, + { + "epoch": 44.2, + "grad_norm": 0.8145385384559631, + "learning_rate": 2.790986666666667e-05, + "loss": 1.5684516906738282, + "step": 331500 + }, + { + "epoch": 44.21333333333333, + "grad_norm": 0.773007333278656, + "learning_rate": 2.7903266666666668e-05, + "loss": 1.5602330017089843, + "step": 331600 + }, + { + "epoch": 44.22666666666667, + "grad_norm": 0.7946937680244446, + "learning_rate": 2.78966e-05, + "loss": 1.5710047912597656, + "step": 331700 + }, + { + "epoch": 44.24, + "grad_norm": 0.7660664916038513, + "learning_rate": 2.7889933333333336e-05, + "loss": 1.5709490966796875, + "step": 331800 + }, + { + "epoch": 44.25333333333333, + "grad_norm": 0.8005920052528381, + "learning_rate": 2.7883266666666668e-05, + "loss": 1.574346160888672, + "step": 331900 + }, + { + "epoch": 44.266666666666666, + "grad_norm": 0.7568239569664001, + "learning_rate": 2.7876600000000003e-05, + "loss": 1.5710443115234376, + "step": 332000 + }, + { + "epoch": 44.28, + "grad_norm": 0.7837048172950745, + "learning_rate": 2.7869933333333336e-05, + "loss": 1.5691023254394532, + "step": 332100 + }, + { + "epoch": 44.29333333333334, + "grad_norm": 0.8391625881195068, + "learning_rate": 2.7863266666666665e-05, + "loss": 1.5703250122070314, + "step": 332200 + }, + { + "epoch": 44.306666666666665, + "grad_norm": 0.8348113298416138, + "learning_rate": 2.78566e-05, + "loss": 1.5742678833007813, + "step": 332300 + }, + { + "epoch": 44.32, + "grad_norm": 0.8065680861473083, + "learning_rate": 2.7849933333333333e-05, + "loss": 1.574197998046875, + "step": 332400 + }, + { + "epoch": 44.333333333333336, + "grad_norm": 0.810249388217926, + "learning_rate": 2.7843266666666668e-05, + "loss": 1.5787997436523438, + "step": 332500 + }, + { + "epoch": 44.346666666666664, + "grad_norm": 0.8214126229286194, + "learning_rate": 2.78366e-05, + "loss": 1.5753494262695313, + "step": 332600 + }, + { + "epoch": 44.36, + "grad_norm": 0.7763717770576477, + "learning_rate": 2.7829933333333336e-05, + "loss": 1.5762429809570313, + "step": 332700 + }, + { + "epoch": 44.373333333333335, + "grad_norm": 0.8266735076904297, + "learning_rate": 2.782326666666667e-05, + "loss": 1.5780609130859375, + "step": 332800 + }, + { + "epoch": 44.38666666666666, + "grad_norm": 0.7696077823638916, + "learning_rate": 2.7816600000000004e-05, + "loss": 1.5806687927246095, + "step": 332900 + }, + { + "epoch": 44.4, + "grad_norm": 0.8544163703918457, + "learning_rate": 2.7809933333333333e-05, + "loss": 1.5851622009277344, + "step": 333000 + }, + { + "epoch": 44.413333333333334, + "grad_norm": 0.8484505414962769, + "learning_rate": 2.7803266666666665e-05, + "loss": 1.581590576171875, + "step": 333100 + }, + { + "epoch": 44.42666666666667, + "grad_norm": 0.8385995626449585, + "learning_rate": 2.77966e-05, + "loss": 1.5861528015136719, + "step": 333200 + }, + { + "epoch": 44.44, + "grad_norm": 0.8071863651275635, + "learning_rate": 2.7789933333333333e-05, + "loss": 1.5843661499023438, + "step": 333300 + }, + { + "epoch": 44.45333333333333, + "grad_norm": 0.7563880085945129, + "learning_rate": 2.778326666666667e-05, + "loss": 1.5832810974121094, + "step": 333400 + }, + { + "epoch": 44.46666666666667, + "grad_norm": 0.8372814655303955, + "learning_rate": 2.77766e-05, + "loss": 1.5854434204101562, + "step": 333500 + }, + { + "epoch": 44.48, + "grad_norm": 0.8299968838691711, + "learning_rate": 2.777e-05, + "loss": 1.5830865478515626, + "step": 333600 + }, + { + "epoch": 44.49333333333333, + "grad_norm": 0.8309788107872009, + "learning_rate": 2.7763333333333336e-05, + "loss": 1.5840238952636718, + "step": 333700 + }, + { + "epoch": 44.50666666666667, + "grad_norm": 0.8194689154624939, + "learning_rate": 2.7756666666666668e-05, + "loss": 1.5837715148925782, + "step": 333800 + }, + { + "epoch": 44.52, + "grad_norm": 0.8060626983642578, + "learning_rate": 2.7750000000000004e-05, + "loss": 1.5884098815917969, + "step": 333900 + }, + { + "epoch": 44.53333333333333, + "grad_norm": 0.8061336278915405, + "learning_rate": 2.7743333333333333e-05, + "loss": 1.588507080078125, + "step": 334000 + }, + { + "epoch": 44.54666666666667, + "grad_norm": 0.8367504477500916, + "learning_rate": 2.7736666666666665e-05, + "loss": 1.5918386840820313, + "step": 334100 + }, + { + "epoch": 44.56, + "grad_norm": 0.7728124260902405, + "learning_rate": 2.773e-05, + "loss": 1.5909431457519532, + "step": 334200 + }, + { + "epoch": 44.57333333333333, + "grad_norm": 0.8325085639953613, + "learning_rate": 2.7723333333333336e-05, + "loss": 1.592117156982422, + "step": 334300 + }, + { + "epoch": 44.586666666666666, + "grad_norm": 0.8074480295181274, + "learning_rate": 2.771666666666667e-05, + "loss": 1.5892124938964844, + "step": 334400 + }, + { + "epoch": 44.6, + "grad_norm": 0.8252527117729187, + "learning_rate": 2.7710000000000004e-05, + "loss": 1.5915934753417968, + "step": 334500 + }, + { + "epoch": 44.61333333333333, + "grad_norm": 0.8227205276489258, + "learning_rate": 2.7703333333333336e-05, + "loss": 1.5954025268554688, + "step": 334600 + }, + { + "epoch": 44.626666666666665, + "grad_norm": 0.7897677421569824, + "learning_rate": 2.7696666666666672e-05, + "loss": 1.595858154296875, + "step": 334700 + }, + { + "epoch": 44.64, + "grad_norm": 0.8313090801239014, + "learning_rate": 2.769e-05, + "loss": 1.5937057495117188, + "step": 334800 + }, + { + "epoch": 44.653333333333336, + "grad_norm": 0.8491702675819397, + "learning_rate": 2.7683333333333333e-05, + "loss": 1.5937522888183593, + "step": 334900 + }, + { + "epoch": 44.666666666666664, + "grad_norm": 0.8034929633140564, + "learning_rate": 2.767666666666667e-05, + "loss": 1.5955474853515625, + "step": 335000 + }, + { + "epoch": 44.68, + "grad_norm": 0.8023072481155396, + "learning_rate": 2.767e-05, + "loss": 1.5998284912109375, + "step": 335100 + }, + { + "epoch": 44.693333333333335, + "grad_norm": 0.8060296177864075, + "learning_rate": 2.7663333333333337e-05, + "loss": 1.5983045959472657, + "step": 335200 + }, + { + "epoch": 44.70666666666666, + "grad_norm": 0.8240456581115723, + "learning_rate": 2.765666666666667e-05, + "loss": 1.6016310119628907, + "step": 335300 + }, + { + "epoch": 44.72, + "grad_norm": 0.8086797595024109, + "learning_rate": 2.7650000000000005e-05, + "loss": 1.5979426574707032, + "step": 335400 + }, + { + "epoch": 44.733333333333334, + "grad_norm": 0.868865966796875, + "learning_rate": 2.7643333333333334e-05, + "loss": 1.6031364440917968, + "step": 335500 + }, + { + "epoch": 44.74666666666667, + "grad_norm": 0.8430706858634949, + "learning_rate": 2.7636733333333336e-05, + "loss": 1.599954833984375, + "step": 335600 + }, + { + "epoch": 44.76, + "grad_norm": 0.8253472447395325, + "learning_rate": 2.763006666666667e-05, + "loss": 1.5997967529296875, + "step": 335700 + }, + { + "epoch": 44.77333333333333, + "grad_norm": 0.8024996519088745, + "learning_rate": 2.76234e-05, + "loss": 1.603931884765625, + "step": 335800 + }, + { + "epoch": 44.78666666666667, + "grad_norm": 0.8097237348556519, + "learning_rate": 2.7616733333333333e-05, + "loss": 1.60475830078125, + "step": 335900 + }, + { + "epoch": 44.8, + "grad_norm": 0.7891868352890015, + "learning_rate": 2.761006666666667e-05, + "loss": 1.5993539428710937, + "step": 336000 + }, + { + "epoch": 44.81333333333333, + "grad_norm": 0.7946909070014954, + "learning_rate": 2.76034e-05, + "loss": 1.608636932373047, + "step": 336100 + }, + { + "epoch": 44.82666666666667, + "grad_norm": 0.8104386329650879, + "learning_rate": 2.7596733333333336e-05, + "loss": 1.6042922973632812, + "step": 336200 + }, + { + "epoch": 44.84, + "grad_norm": 0.8731896281242371, + "learning_rate": 2.759006666666667e-05, + "loss": 1.6097525024414063, + "step": 336300 + }, + { + "epoch": 44.85333333333333, + "grad_norm": 0.8121789693832397, + "learning_rate": 2.7583400000000004e-05, + "loss": 1.606430206298828, + "step": 336400 + }, + { + "epoch": 44.86666666666667, + "grad_norm": 0.8330267667770386, + "learning_rate": 2.7576733333333333e-05, + "loss": 1.6087510681152344, + "step": 336500 + }, + { + "epoch": 44.88, + "grad_norm": 0.852932333946228, + "learning_rate": 2.7570066666666665e-05, + "loss": 1.6065789794921874, + "step": 336600 + }, + { + "epoch": 44.89333333333333, + "grad_norm": 0.8132789134979248, + "learning_rate": 2.75634e-05, + "loss": 1.6074699401855468, + "step": 336700 + }, + { + "epoch": 44.906666666666666, + "grad_norm": 0.8489792943000793, + "learning_rate": 2.7556733333333333e-05, + "loss": 1.606990509033203, + "step": 336800 + }, + { + "epoch": 44.92, + "grad_norm": 0.8278707265853882, + "learning_rate": 2.755006666666667e-05, + "loss": 1.6092149353027343, + "step": 336900 + }, + { + "epoch": 44.93333333333333, + "grad_norm": 0.8030561804771423, + "learning_rate": 2.75434e-05, + "loss": 1.6118333435058594, + "step": 337000 + }, + { + "epoch": 44.946666666666665, + "grad_norm": 0.8444882035255432, + "learning_rate": 2.7536733333333337e-05, + "loss": 1.61545166015625, + "step": 337100 + }, + { + "epoch": 44.96, + "grad_norm": 0.7839025259017944, + "learning_rate": 2.753006666666667e-05, + "loss": 1.6124861145019531, + "step": 337200 + }, + { + "epoch": 44.973333333333336, + "grad_norm": 0.8304545283317566, + "learning_rate": 2.7523399999999998e-05, + "loss": 1.6095152282714844, + "step": 337300 + }, + { + "epoch": 44.986666666666665, + "grad_norm": 0.822806179523468, + "learning_rate": 2.7516733333333334e-05, + "loss": 1.6171923828125, + "step": 337400 + }, + { + "epoch": 45.0, + "grad_norm": 0.8254655003547668, + "learning_rate": 2.7510066666666666e-05, + "loss": 1.61357666015625, + "step": 337500 + }, + { + "epoch": 45.013333333333335, + "grad_norm": 0.75385981798172, + "learning_rate": 2.7503466666666665e-05, + "loss": 1.5345475769042969, + "step": 337600 + }, + { + "epoch": 45.026666666666664, + "grad_norm": 0.7878371477127075, + "learning_rate": 2.74968e-05, + "loss": 1.5335455322265625, + "step": 337700 + }, + { + "epoch": 45.04, + "grad_norm": 0.7791154384613037, + "learning_rate": 2.7490133333333333e-05, + "loss": 1.5394093322753906, + "step": 337800 + }, + { + "epoch": 45.053333333333335, + "grad_norm": 0.8024111390113831, + "learning_rate": 2.748346666666667e-05, + "loss": 1.5331953430175782, + "step": 337900 + }, + { + "epoch": 45.06666666666667, + "grad_norm": 0.8430346846580505, + "learning_rate": 2.74768e-05, + "loss": 1.5368072509765625, + "step": 338000 + }, + { + "epoch": 45.08, + "grad_norm": 0.8052778840065002, + "learning_rate": 2.7470133333333337e-05, + "loss": 1.546075439453125, + "step": 338100 + }, + { + "epoch": 45.093333333333334, + "grad_norm": 0.7933223843574524, + "learning_rate": 2.7463466666666672e-05, + "loss": 1.5412501525878906, + "step": 338200 + }, + { + "epoch": 45.10666666666667, + "grad_norm": 0.801228940486908, + "learning_rate": 2.7456799999999998e-05, + "loss": 1.539934844970703, + "step": 338300 + }, + { + "epoch": 45.12, + "grad_norm": 0.7986882328987122, + "learning_rate": 2.7450133333333333e-05, + "loss": 1.5405552673339844, + "step": 338400 + }, + { + "epoch": 45.13333333333333, + "grad_norm": 0.8069292306900024, + "learning_rate": 2.7443466666666666e-05, + "loss": 1.545841064453125, + "step": 338500 + }, + { + "epoch": 45.14666666666667, + "grad_norm": 0.7927032113075256, + "learning_rate": 2.74368e-05, + "loss": 1.5462718200683594, + "step": 338600 + }, + { + "epoch": 45.16, + "grad_norm": 0.7794001698493958, + "learning_rate": 2.7430133333333337e-05, + "loss": 1.5485234069824219, + "step": 338700 + }, + { + "epoch": 45.17333333333333, + "grad_norm": 0.7855547070503235, + "learning_rate": 2.742346666666667e-05, + "loss": 1.5519866943359375, + "step": 338800 + }, + { + "epoch": 45.18666666666667, + "grad_norm": 0.8333518505096436, + "learning_rate": 2.7416800000000005e-05, + "loss": 1.5467234802246095, + "step": 338900 + }, + { + "epoch": 45.2, + "grad_norm": 0.8590301275253296, + "learning_rate": 2.7410133333333334e-05, + "loss": 1.5527265930175782, + "step": 339000 + }, + { + "epoch": 45.21333333333333, + "grad_norm": 0.8133448958396912, + "learning_rate": 2.7403466666666666e-05, + "loss": 1.5531710815429687, + "step": 339100 + }, + { + "epoch": 45.22666666666667, + "grad_norm": 0.843085527420044, + "learning_rate": 2.7396800000000002e-05, + "loss": 1.552749786376953, + "step": 339200 + }, + { + "epoch": 45.24, + "grad_norm": 0.8271104693412781, + "learning_rate": 2.7390133333333334e-05, + "loss": 1.55497802734375, + "step": 339300 + }, + { + "epoch": 45.25333333333333, + "grad_norm": 0.7889156937599182, + "learning_rate": 2.738346666666667e-05, + "loss": 1.554407958984375, + "step": 339400 + }, + { + "epoch": 45.266666666666666, + "grad_norm": 0.8237720131874084, + "learning_rate": 2.7376800000000002e-05, + "loss": 1.5559963989257812, + "step": 339500 + }, + { + "epoch": 45.28, + "grad_norm": 0.8432164192199707, + "learning_rate": 2.7370133333333338e-05, + "loss": 1.5602865600585938, + "step": 339600 + }, + { + "epoch": 45.29333333333334, + "grad_norm": 0.8066620826721191, + "learning_rate": 2.7363533333333337e-05, + "loss": 1.5569775390625, + "step": 339700 + }, + { + "epoch": 45.306666666666665, + "grad_norm": 0.8251729011535645, + "learning_rate": 2.735686666666667e-05, + "loss": 1.5603398132324218, + "step": 339800 + }, + { + "epoch": 45.32, + "grad_norm": 0.8274789452552795, + "learning_rate": 2.7350200000000005e-05, + "loss": 1.5607125854492188, + "step": 339900 + }, + { + "epoch": 45.333333333333336, + "grad_norm": 0.7985981702804565, + "learning_rate": 2.7343533333333333e-05, + "loss": 1.5612689208984376, + "step": 340000 + }, + { + "epoch": 45.346666666666664, + "grad_norm": 0.8099194765090942, + "learning_rate": 2.7336866666666666e-05, + "loss": 1.5611070251464845, + "step": 340100 + }, + { + "epoch": 45.36, + "grad_norm": 0.7862045764923096, + "learning_rate": 2.73302e-05, + "loss": 1.561177978515625, + "step": 340200 + }, + { + "epoch": 45.373333333333335, + "grad_norm": 0.8008959293365479, + "learning_rate": 2.7323533333333334e-05, + "loss": 1.5632902526855468, + "step": 340300 + }, + { + "epoch": 45.38666666666666, + "grad_norm": 0.8084346055984497, + "learning_rate": 2.731686666666667e-05, + "loss": 1.56494384765625, + "step": 340400 + }, + { + "epoch": 45.4, + "grad_norm": 0.7950522303581238, + "learning_rate": 2.73102e-05, + "loss": 1.563892822265625, + "step": 340500 + }, + { + "epoch": 45.413333333333334, + "grad_norm": 0.8112916350364685, + "learning_rate": 2.7303533333333337e-05, + "loss": 1.5658737182617188, + "step": 340600 + }, + { + "epoch": 45.42666666666667, + "grad_norm": 0.8019904494285583, + "learning_rate": 2.729686666666667e-05, + "loss": 1.5665919494628906, + "step": 340700 + }, + { + "epoch": 45.44, + "grad_norm": 0.8604961037635803, + "learning_rate": 2.72902e-05, + "loss": 1.5618829345703125, + "step": 340800 + }, + { + "epoch": 45.45333333333333, + "grad_norm": 0.8297909498214722, + "learning_rate": 2.7283533333333334e-05, + "loss": 1.5690985107421875, + "step": 340900 + }, + { + "epoch": 45.46666666666667, + "grad_norm": 0.8290330171585083, + "learning_rate": 2.7276866666666666e-05, + "loss": 1.5725372314453125, + "step": 341000 + }, + { + "epoch": 45.48, + "grad_norm": 0.8196405172348022, + "learning_rate": 2.7270200000000002e-05, + "loss": 1.5716435241699218, + "step": 341100 + }, + { + "epoch": 45.49333333333333, + "grad_norm": 0.8516254425048828, + "learning_rate": 2.7263533333333334e-05, + "loss": 1.5708955383300782, + "step": 341200 + }, + { + "epoch": 45.50666666666667, + "grad_norm": 0.8195080161094666, + "learning_rate": 2.725686666666667e-05, + "loss": 1.5677909851074219, + "step": 341300 + }, + { + "epoch": 45.52, + "grad_norm": 0.8368141055107117, + "learning_rate": 2.7250200000000002e-05, + "loss": 1.5750044250488282, + "step": 341400 + }, + { + "epoch": 45.53333333333333, + "grad_norm": 0.8141370415687561, + "learning_rate": 2.724353333333333e-05, + "loss": 1.5710145568847655, + "step": 341500 + }, + { + "epoch": 45.54666666666667, + "grad_norm": 0.8688223361968994, + "learning_rate": 2.7236866666666667e-05, + "loss": 1.577767333984375, + "step": 341600 + }, + { + "epoch": 45.56, + "grad_norm": 0.8282235860824585, + "learning_rate": 2.723026666666667e-05, + "loss": 1.5752143859863281, + "step": 341700 + }, + { + "epoch": 45.57333333333333, + "grad_norm": 0.8183776140213013, + "learning_rate": 2.7223599999999998e-05, + "loss": 1.5708876037597657, + "step": 341800 + }, + { + "epoch": 45.586666666666666, + "grad_norm": 0.820489227771759, + "learning_rate": 2.7216933333333334e-05, + "loss": 1.5763885498046875, + "step": 341900 + }, + { + "epoch": 45.6, + "grad_norm": 0.7990655899047852, + "learning_rate": 2.7210266666666666e-05, + "loss": 1.579280242919922, + "step": 342000 + }, + { + "epoch": 45.61333333333333, + "grad_norm": 0.8262766003608704, + "learning_rate": 2.72036e-05, + "loss": 1.5800761413574218, + "step": 342100 + }, + { + "epoch": 45.626666666666665, + "grad_norm": 0.8294216990470886, + "learning_rate": 2.7196933333333334e-05, + "loss": 1.5776101684570312, + "step": 342200 + }, + { + "epoch": 45.64, + "grad_norm": 0.8527024984359741, + "learning_rate": 2.719026666666667e-05, + "loss": 1.5793777465820313, + "step": 342300 + }, + { + "epoch": 45.653333333333336, + "grad_norm": 0.8285980224609375, + "learning_rate": 2.7183600000000005e-05, + "loss": 1.5826039123535156, + "step": 342400 + }, + { + "epoch": 45.666666666666664, + "grad_norm": 0.7973678708076477, + "learning_rate": 2.717693333333333e-05, + "loss": 1.5825093078613282, + "step": 342500 + }, + { + "epoch": 45.68, + "grad_norm": 0.8386090993881226, + "learning_rate": 2.7170266666666666e-05, + "loss": 1.5819102478027345, + "step": 342600 + }, + { + "epoch": 45.693333333333335, + "grad_norm": 0.8596566915512085, + "learning_rate": 2.71636e-05, + "loss": 1.5824310302734375, + "step": 342700 + }, + { + "epoch": 45.70666666666666, + "grad_norm": 0.84074467420578, + "learning_rate": 2.7156933333333334e-05, + "loss": 1.5835606384277343, + "step": 342800 + }, + { + "epoch": 45.72, + "grad_norm": 0.8335156440734863, + "learning_rate": 2.715026666666667e-05, + "loss": 1.5831988525390626, + "step": 342900 + }, + { + "epoch": 45.733333333333334, + "grad_norm": 0.8545652031898499, + "learning_rate": 2.7143600000000002e-05, + "loss": 1.5821173095703125, + "step": 343000 + }, + { + "epoch": 45.74666666666667, + "grad_norm": 0.8127861022949219, + "learning_rate": 2.7136933333333338e-05, + "loss": 1.5852001953125, + "step": 343100 + }, + { + "epoch": 45.76, + "grad_norm": 0.8396148085594177, + "learning_rate": 2.713026666666667e-05, + "loss": 1.5899464416503906, + "step": 343200 + }, + { + "epoch": 45.77333333333333, + "grad_norm": 0.8626675605773926, + "learning_rate": 2.71236e-05, + "loss": 1.5838290405273439, + "step": 343300 + }, + { + "epoch": 45.78666666666667, + "grad_norm": 0.8253298997879028, + "learning_rate": 2.7116933333333335e-05, + "loss": 1.5856344604492187, + "step": 343400 + }, + { + "epoch": 45.8, + "grad_norm": 0.8361122012138367, + "learning_rate": 2.7110266666666667e-05, + "loss": 1.5906475830078124, + "step": 343500 + }, + { + "epoch": 45.81333333333333, + "grad_norm": 0.7877110242843628, + "learning_rate": 2.7103600000000003e-05, + "loss": 1.5869761657714845, + "step": 343600 + }, + { + "epoch": 45.82666666666667, + "grad_norm": 0.8173111081123352, + "learning_rate": 2.7097e-05, + "loss": 1.5882725524902344, + "step": 343700 + }, + { + "epoch": 45.84, + "grad_norm": 0.8360334038734436, + "learning_rate": 2.7090333333333334e-05, + "loss": 1.5957424926757813, + "step": 343800 + }, + { + "epoch": 45.85333333333333, + "grad_norm": 0.8417925834655762, + "learning_rate": 2.708366666666667e-05, + "loss": 1.589451446533203, + "step": 343900 + }, + { + "epoch": 45.86666666666667, + "grad_norm": 0.7977088689804077, + "learning_rate": 2.7077000000000002e-05, + "loss": 1.5911802673339843, + "step": 344000 + }, + { + "epoch": 45.88, + "grad_norm": 0.8282347321510315, + "learning_rate": 2.7070333333333337e-05, + "loss": 1.5962525939941405, + "step": 344100 + }, + { + "epoch": 45.89333333333333, + "grad_norm": 0.8380323648452759, + "learning_rate": 2.706366666666667e-05, + "loss": 1.5943394470214844, + "step": 344200 + }, + { + "epoch": 45.906666666666666, + "grad_norm": 0.8266421556472778, + "learning_rate": 2.7057e-05, + "loss": 1.5934329223632813, + "step": 344300 + }, + { + "epoch": 45.92, + "grad_norm": 0.8296067118644714, + "learning_rate": 2.7050333333333334e-05, + "loss": 1.5951394653320312, + "step": 344400 + }, + { + "epoch": 45.93333333333333, + "grad_norm": 0.8238825798034668, + "learning_rate": 2.7043666666666667e-05, + "loss": 1.5956932067871095, + "step": 344500 + }, + { + "epoch": 45.946666666666665, + "grad_norm": 0.8402311205863953, + "learning_rate": 2.7037000000000002e-05, + "loss": 1.5972817993164063, + "step": 344600 + }, + { + "epoch": 45.96, + "grad_norm": 0.819067656993866, + "learning_rate": 2.7030333333333334e-05, + "loss": 1.5947479248046874, + "step": 344700 + }, + { + "epoch": 45.973333333333336, + "grad_norm": 0.8134846687316895, + "learning_rate": 2.702366666666667e-05, + "loss": 1.5938349914550782, + "step": 344800 + }, + { + "epoch": 45.986666666666665, + "grad_norm": 0.8139092326164246, + "learning_rate": 2.7017000000000002e-05, + "loss": 1.5983534240722657, + "step": 344900 + }, + { + "epoch": 46.0, + "grad_norm": 0.845569908618927, + "learning_rate": 2.701033333333333e-05, + "loss": 1.5993333435058594, + "step": 345000 + }, + { + "epoch": 46.013333333333335, + "grad_norm": 0.8060302138328552, + "learning_rate": 2.7003666666666667e-05, + "loss": 1.5197933959960936, + "step": 345100 + }, + { + "epoch": 46.026666666666664, + "grad_norm": 0.8016753196716309, + "learning_rate": 2.6997e-05, + "loss": 1.5163864135742187, + "step": 345200 + }, + { + "epoch": 46.04, + "grad_norm": 0.824266791343689, + "learning_rate": 2.6990333333333335e-05, + "loss": 1.5196403503417968, + "step": 345300 + }, + { + "epoch": 46.053333333333335, + "grad_norm": 0.831349790096283, + "learning_rate": 2.6983666666666667e-05, + "loss": 1.5196861267089843, + "step": 345400 + }, + { + "epoch": 46.06666666666667, + "grad_norm": 0.794564425945282, + "learning_rate": 2.6977000000000003e-05, + "loss": 1.5226402282714844, + "step": 345500 + }, + { + "epoch": 46.08, + "grad_norm": 0.864202618598938, + "learning_rate": 2.6970333333333335e-05, + "loss": 1.52418701171875, + "step": 345600 + }, + { + "epoch": 46.093333333333334, + "grad_norm": 0.8275471925735474, + "learning_rate": 2.696366666666667e-05, + "loss": 1.5281210327148438, + "step": 345700 + }, + { + "epoch": 46.10666666666667, + "grad_norm": 0.8034723401069641, + "learning_rate": 2.695706666666667e-05, + "loss": 1.5245565795898437, + "step": 345800 + }, + { + "epoch": 46.12, + "grad_norm": 0.8259097337722778, + "learning_rate": 2.6950400000000002e-05, + "loss": 1.531691436767578, + "step": 345900 + }, + { + "epoch": 46.13333333333333, + "grad_norm": 0.8168667554855347, + "learning_rate": 2.694373333333333e-05, + "loss": 1.5279510498046875, + "step": 346000 + }, + { + "epoch": 46.14666666666667, + "grad_norm": 0.8043650984764099, + "learning_rate": 2.6937066666666667e-05, + "loss": 1.530906219482422, + "step": 346100 + }, + { + "epoch": 46.16, + "grad_norm": 0.7977316379547119, + "learning_rate": 2.69304e-05, + "loss": 1.5317568969726563, + "step": 346200 + }, + { + "epoch": 46.17333333333333, + "grad_norm": 0.8600273728370667, + "learning_rate": 2.6923733333333334e-05, + "loss": 1.5322166442871095, + "step": 346300 + }, + { + "epoch": 46.18666666666667, + "grad_norm": 0.8048485517501831, + "learning_rate": 2.6917066666666667e-05, + "loss": 1.5342538452148438, + "step": 346400 + }, + { + "epoch": 46.2, + "grad_norm": 0.8028460144996643, + "learning_rate": 2.6910400000000002e-05, + "loss": 1.538252716064453, + "step": 346500 + }, + { + "epoch": 46.21333333333333, + "grad_norm": 0.8104482293128967, + "learning_rate": 2.6903733333333335e-05, + "loss": 1.537858123779297, + "step": 346600 + }, + { + "epoch": 46.22666666666667, + "grad_norm": 0.8299853205680847, + "learning_rate": 2.689706666666667e-05, + "loss": 1.5331761169433593, + "step": 346700 + }, + { + "epoch": 46.24, + "grad_norm": 0.8089656829833984, + "learning_rate": 2.68904e-05, + "loss": 1.5343820190429687, + "step": 346800 + }, + { + "epoch": 46.25333333333333, + "grad_norm": 0.8413048982620239, + "learning_rate": 2.688373333333333e-05, + "loss": 1.5428427124023438, + "step": 346900 + }, + { + "epoch": 46.266666666666666, + "grad_norm": 0.8163671493530273, + "learning_rate": 2.6877066666666667e-05, + "loss": 1.5400894165039063, + "step": 347000 + }, + { + "epoch": 46.28, + "grad_norm": 0.8367263674736023, + "learning_rate": 2.6870400000000003e-05, + "loss": 1.5393385314941406, + "step": 347100 + }, + { + "epoch": 46.29333333333334, + "grad_norm": 0.8091789484024048, + "learning_rate": 2.6863733333333335e-05, + "loss": 1.5403530883789063, + "step": 347200 + }, + { + "epoch": 46.306666666666665, + "grad_norm": 0.7646798491477966, + "learning_rate": 2.685706666666667e-05, + "loss": 1.5441659545898438, + "step": 347300 + }, + { + "epoch": 46.32, + "grad_norm": 0.8175348043441772, + "learning_rate": 2.6850400000000003e-05, + "loss": 1.5414935302734376, + "step": 347400 + }, + { + "epoch": 46.333333333333336, + "grad_norm": 0.8292933702468872, + "learning_rate": 2.6843733333333332e-05, + "loss": 1.5435244750976562, + "step": 347500 + }, + { + "epoch": 46.346666666666664, + "grad_norm": 0.8154855966567993, + "learning_rate": 2.6837066666666668e-05, + "loss": 1.5483761596679688, + "step": 347600 + }, + { + "epoch": 46.36, + "grad_norm": 0.7751580476760864, + "learning_rate": 2.68304e-05, + "loss": 1.5469662475585937, + "step": 347700 + }, + { + "epoch": 46.373333333333335, + "grad_norm": 0.8045754432678223, + "learning_rate": 2.6823733333333335e-05, + "loss": 1.5475198364257812, + "step": 347800 + }, + { + "epoch": 46.38666666666666, + "grad_norm": 0.8215160965919495, + "learning_rate": 2.6817133333333335e-05, + "loss": 1.545174560546875, + "step": 347900 + }, + { + "epoch": 46.4, + "grad_norm": 0.8201582431793213, + "learning_rate": 2.6810466666666667e-05, + "loss": 1.548802490234375, + "step": 348000 + }, + { + "epoch": 46.413333333333334, + "grad_norm": 0.8398956060409546, + "learning_rate": 2.6803800000000002e-05, + "loss": 1.5487840270996094, + "step": 348100 + }, + { + "epoch": 46.42666666666667, + "grad_norm": 0.8224796652793884, + "learning_rate": 2.6797133333333335e-05, + "loss": 1.549246826171875, + "step": 348200 + }, + { + "epoch": 46.44, + "grad_norm": 0.8594797849655151, + "learning_rate": 2.679046666666667e-05, + "loss": 1.5520086669921875, + "step": 348300 + }, + { + "epoch": 46.45333333333333, + "grad_norm": 0.8207729458808899, + "learning_rate": 2.6783800000000003e-05, + "loss": 1.5540689086914063, + "step": 348400 + }, + { + "epoch": 46.46666666666667, + "grad_norm": 0.8314641714096069, + "learning_rate": 2.677713333333333e-05, + "loss": 1.5520907592773439, + "step": 348500 + }, + { + "epoch": 46.48, + "grad_norm": 0.8217018246650696, + "learning_rate": 2.6770466666666667e-05, + "loss": 1.5557980346679687, + "step": 348600 + }, + { + "epoch": 46.49333333333333, + "grad_norm": 0.8059836030006409, + "learning_rate": 2.67638e-05, + "loss": 1.5601199340820313, + "step": 348700 + }, + { + "epoch": 46.50666666666667, + "grad_norm": 0.8552286028862, + "learning_rate": 2.6757133333333335e-05, + "loss": 1.5559910583496093, + "step": 348800 + }, + { + "epoch": 46.52, + "grad_norm": 0.8301519155502319, + "learning_rate": 2.6750466666666667e-05, + "loss": 1.5562776184082032, + "step": 348900 + }, + { + "epoch": 46.53333333333333, + "grad_norm": 0.8431631326675415, + "learning_rate": 2.6743800000000003e-05, + "loss": 1.5593917846679688, + "step": 349000 + }, + { + "epoch": 46.54666666666667, + "grad_norm": 0.8206700682640076, + "learning_rate": 2.6737133333333335e-05, + "loss": 1.5606121826171875, + "step": 349100 + }, + { + "epoch": 46.56, + "grad_norm": 0.8263945579528809, + "learning_rate": 2.673046666666667e-05, + "loss": 1.5540763854980468, + "step": 349200 + }, + { + "epoch": 46.57333333333333, + "grad_norm": 0.8618150949478149, + "learning_rate": 2.67238e-05, + "loss": 1.5589299011230469, + "step": 349300 + }, + { + "epoch": 46.586666666666666, + "grad_norm": 0.8470207452774048, + "learning_rate": 2.6717133333333332e-05, + "loss": 1.561882781982422, + "step": 349400 + }, + { + "epoch": 46.6, + "grad_norm": 0.8224665522575378, + "learning_rate": 2.6710466666666668e-05, + "loss": 1.5630607604980469, + "step": 349500 + }, + { + "epoch": 46.61333333333333, + "grad_norm": 0.8316152691841125, + "learning_rate": 2.67038e-05, + "loss": 1.55953369140625, + "step": 349600 + }, + { + "epoch": 46.626666666666665, + "grad_norm": 0.8321995139122009, + "learning_rate": 2.6697133333333336e-05, + "loss": 1.5658473205566406, + "step": 349700 + }, + { + "epoch": 46.64, + "grad_norm": 0.8178289532661438, + "learning_rate": 2.6690466666666668e-05, + "loss": 1.5612675476074218, + "step": 349800 + }, + { + "epoch": 46.653333333333336, + "grad_norm": 0.7792300581932068, + "learning_rate": 2.6683800000000004e-05, + "loss": 1.5632437133789063, + "step": 349900 + }, + { + "epoch": 46.666666666666664, + "grad_norm": 0.7988590002059937, + "learning_rate": 2.6677133333333336e-05, + "loss": 1.5675028991699218, + "step": 350000 + }, + { + "epoch": 46.68, + "grad_norm": 0.8445242643356323, + "learning_rate": 2.6670533333333335e-05, + "loss": 1.5669676208496093, + "step": 350100 + }, + { + "epoch": 46.693333333333335, + "grad_norm": 0.8198060989379883, + "learning_rate": 2.666386666666667e-05, + "loss": 1.5665971374511718, + "step": 350200 + }, + { + "epoch": 46.70666666666666, + "grad_norm": 0.8664674162864685, + "learning_rate": 2.66572e-05, + "loss": 1.5654718017578124, + "step": 350300 + }, + { + "epoch": 46.72, + "grad_norm": 0.819105863571167, + "learning_rate": 2.6650533333333332e-05, + "loss": 1.567599334716797, + "step": 350400 + }, + { + "epoch": 46.733333333333334, + "grad_norm": 0.8594771027565002, + "learning_rate": 2.6643866666666667e-05, + "loss": 1.5679061889648438, + "step": 350500 + }, + { + "epoch": 46.74666666666667, + "grad_norm": 0.8125904202461243, + "learning_rate": 2.66372e-05, + "loss": 1.5722848510742187, + "step": 350600 + }, + { + "epoch": 46.76, + "grad_norm": 0.8537176847457886, + "learning_rate": 2.6630533333333335e-05, + "loss": 1.5686172485351562, + "step": 350700 + }, + { + "epoch": 46.77333333333333, + "grad_norm": 0.8427459001541138, + "learning_rate": 2.6623866666666668e-05, + "loss": 1.571588592529297, + "step": 350800 + }, + { + "epoch": 46.78666666666667, + "grad_norm": 0.827638566493988, + "learning_rate": 2.6617200000000003e-05, + "loss": 1.5718766784667968, + "step": 350900 + }, + { + "epoch": 46.8, + "grad_norm": 0.8735706806182861, + "learning_rate": 2.661053333333334e-05, + "loss": 1.5722669982910156, + "step": 351000 + }, + { + "epoch": 46.81333333333333, + "grad_norm": 0.8201860785484314, + "learning_rate": 2.6603866666666664e-05, + "loss": 1.5740573120117187, + "step": 351100 + }, + { + "epoch": 46.82666666666667, + "grad_norm": 0.8265976309776306, + "learning_rate": 2.65972e-05, + "loss": 1.5777357482910157, + "step": 351200 + }, + { + "epoch": 46.84, + "grad_norm": 0.8381431698799133, + "learning_rate": 2.6590533333333332e-05, + "loss": 1.5748936462402343, + "step": 351300 + }, + { + "epoch": 46.85333333333333, + "grad_norm": 0.8063822388648987, + "learning_rate": 2.6583866666666668e-05, + "loss": 1.5776918029785156, + "step": 351400 + }, + { + "epoch": 46.86666666666667, + "grad_norm": 0.831693172454834, + "learning_rate": 2.6577200000000004e-05, + "loss": 1.5761140441894532, + "step": 351500 + }, + { + "epoch": 46.88, + "grad_norm": 0.8381946682929993, + "learning_rate": 2.6570533333333336e-05, + "loss": 1.5803857421875, + "step": 351600 + }, + { + "epoch": 46.89333333333333, + "grad_norm": 0.8485809564590454, + "learning_rate": 2.656386666666667e-05, + "loss": 1.5759907531738282, + "step": 351700 + }, + { + "epoch": 46.906666666666666, + "grad_norm": 0.8247084617614746, + "learning_rate": 2.6557199999999997e-05, + "loss": 1.5766317749023437, + "step": 351800 + }, + { + "epoch": 46.92, + "grad_norm": 0.8473241925239563, + "learning_rate": 2.6550533333333333e-05, + "loss": 1.5800099182128906, + "step": 351900 + }, + { + "epoch": 46.93333333333333, + "grad_norm": 0.8938542604446411, + "learning_rate": 2.654386666666667e-05, + "loss": 1.575980224609375, + "step": 352000 + }, + { + "epoch": 46.946666666666665, + "grad_norm": 0.8447518348693848, + "learning_rate": 2.6537266666666667e-05, + "loss": 1.5792408752441407, + "step": 352100 + }, + { + "epoch": 46.96, + "grad_norm": 0.8477917313575745, + "learning_rate": 2.65306e-05, + "loss": 1.5817056274414063, + "step": 352200 + }, + { + "epoch": 46.973333333333336, + "grad_norm": 0.8412907123565674, + "learning_rate": 2.6523933333333335e-05, + "loss": 1.5827552795410156, + "step": 352300 + }, + { + "epoch": 46.986666666666665, + "grad_norm": 0.8627504706382751, + "learning_rate": 2.6517266666666668e-05, + "loss": 1.5811537170410157, + "step": 352400 + }, + { + "epoch": 47.0, + "grad_norm": 0.8609046936035156, + "learning_rate": 2.6510600000000003e-05, + "loss": 1.5816255187988282, + "step": 352500 + }, + { + "epoch": 47.013333333333335, + "grad_norm": 0.7538483142852783, + "learning_rate": 2.6503933333333336e-05, + "loss": 1.5079031372070313, + "step": 352600 + }, + { + "epoch": 47.026666666666664, + "grad_norm": 0.813092827796936, + "learning_rate": 2.649726666666667e-05, + "loss": 1.5056570434570313, + "step": 352700 + }, + { + "epoch": 47.04, + "grad_norm": 0.8041110634803772, + "learning_rate": 2.64906e-05, + "loss": 1.5061376953125, + "step": 352800 + }, + { + "epoch": 47.053333333333335, + "grad_norm": 0.8193392753601074, + "learning_rate": 2.6483933333333332e-05, + "loss": 1.5078268432617188, + "step": 352900 + }, + { + "epoch": 47.06666666666667, + "grad_norm": 0.8413985371589661, + "learning_rate": 2.6477266666666668e-05, + "loss": 1.5114471435546875, + "step": 353000 + }, + { + "epoch": 47.08, + "grad_norm": 0.8073115348815918, + "learning_rate": 2.64706e-05, + "loss": 1.5135585021972657, + "step": 353100 + }, + { + "epoch": 47.093333333333334, + "grad_norm": 0.7779039740562439, + "learning_rate": 2.6463933333333336e-05, + "loss": 1.5116209411621093, + "step": 353200 + }, + { + "epoch": 47.10666666666667, + "grad_norm": 0.807697594165802, + "learning_rate": 2.6457266666666668e-05, + "loss": 1.517572479248047, + "step": 353300 + }, + { + "epoch": 47.12, + "grad_norm": 0.8400974869728088, + "learning_rate": 2.6450600000000004e-05, + "loss": 1.5178854370117187, + "step": 353400 + }, + { + "epoch": 47.13333333333333, + "grad_norm": 0.8194504976272583, + "learning_rate": 2.6443933333333336e-05, + "loss": 1.5146188354492187, + "step": 353500 + }, + { + "epoch": 47.14666666666667, + "grad_norm": 0.8018361926078796, + "learning_rate": 2.6437266666666665e-05, + "loss": 1.5214445495605469, + "step": 353600 + }, + { + "epoch": 47.16, + "grad_norm": 0.8167159557342529, + "learning_rate": 2.64306e-05, + "loss": 1.5156454467773437, + "step": 353700 + }, + { + "epoch": 47.17333333333333, + "grad_norm": 0.8039659857749939, + "learning_rate": 2.6423933333333333e-05, + "loss": 1.5151275634765624, + "step": 353800 + }, + { + "epoch": 47.18666666666667, + "grad_norm": 0.8017700910568237, + "learning_rate": 2.641726666666667e-05, + "loss": 1.5202009582519531, + "step": 353900 + }, + { + "epoch": 47.2, + "grad_norm": 0.7832367420196533, + "learning_rate": 2.64106e-05, + "loss": 1.519759521484375, + "step": 354000 + }, + { + "epoch": 47.21333333333333, + "grad_norm": 0.8337007761001587, + "learning_rate": 2.6403933333333337e-05, + "loss": 1.5221978759765624, + "step": 354100 + }, + { + "epoch": 47.22666666666667, + "grad_norm": 0.7870599031448364, + "learning_rate": 2.639726666666667e-05, + "loss": 1.523798065185547, + "step": 354200 + }, + { + "epoch": 47.24, + "grad_norm": 0.8411582708358765, + "learning_rate": 2.6390666666666668e-05, + "loss": 1.5253703308105468, + "step": 354300 + }, + { + "epoch": 47.25333333333333, + "grad_norm": 0.8832390308380127, + "learning_rate": 2.6384000000000004e-05, + "loss": 1.5262484741210938, + "step": 354400 + }, + { + "epoch": 47.266666666666666, + "grad_norm": 0.7941514253616333, + "learning_rate": 2.6377333333333336e-05, + "loss": 1.525479736328125, + "step": 354500 + }, + { + "epoch": 47.28, + "grad_norm": 0.7702394127845764, + "learning_rate": 2.6370666666666665e-05, + "loss": 1.5219073486328125, + "step": 354600 + }, + { + "epoch": 47.29333333333334, + "grad_norm": 0.8129458427429199, + "learning_rate": 2.6364e-05, + "loss": 1.5250271606445311, + "step": 354700 + }, + { + "epoch": 47.306666666666665, + "grad_norm": 0.8214989304542542, + "learning_rate": 2.6357333333333333e-05, + "loss": 1.5251333618164062, + "step": 354800 + }, + { + "epoch": 47.32, + "grad_norm": 0.7877672910690308, + "learning_rate": 2.6350666666666668e-05, + "loss": 1.5243698120117188, + "step": 354900 + }, + { + "epoch": 47.333333333333336, + "grad_norm": 0.8471348285675049, + "learning_rate": 2.6344e-05, + "loss": 1.5322015380859375, + "step": 355000 + }, + { + "epoch": 47.346666666666664, + "grad_norm": 0.8431065082550049, + "learning_rate": 2.6337333333333336e-05, + "loss": 1.530186767578125, + "step": 355100 + }, + { + "epoch": 47.36, + "grad_norm": 0.8179681897163391, + "learning_rate": 2.6330666666666672e-05, + "loss": 1.5326658630371093, + "step": 355200 + }, + { + "epoch": 47.373333333333335, + "grad_norm": 0.8299217820167542, + "learning_rate": 2.6323999999999997e-05, + "loss": 1.5337423706054687, + "step": 355300 + }, + { + "epoch": 47.38666666666666, + "grad_norm": 0.7992455363273621, + "learning_rate": 2.6317333333333333e-05, + "loss": 1.5334547424316407, + "step": 355400 + }, + { + "epoch": 47.4, + "grad_norm": 0.8198468089103699, + "learning_rate": 2.6310666666666665e-05, + "loss": 1.5330128479003906, + "step": 355500 + }, + { + "epoch": 47.413333333333334, + "grad_norm": 0.8227736353874207, + "learning_rate": 2.6304e-05, + "loss": 1.5363392639160156, + "step": 355600 + }, + { + "epoch": 47.42666666666667, + "grad_norm": 0.8037164807319641, + "learning_rate": 2.6297333333333337e-05, + "loss": 1.5415556335449219, + "step": 355700 + }, + { + "epoch": 47.44, + "grad_norm": 0.8218553066253662, + "learning_rate": 2.629066666666667e-05, + "loss": 1.536182861328125, + "step": 355800 + }, + { + "epoch": 47.45333333333333, + "grad_norm": 0.8205154538154602, + "learning_rate": 2.6284000000000004e-05, + "loss": 1.5415779113769532, + "step": 355900 + }, + { + "epoch": 47.46666666666667, + "grad_norm": 0.8422571420669556, + "learning_rate": 2.6277333333333337e-05, + "loss": 1.5379583740234375, + "step": 356000 + }, + { + "epoch": 47.48, + "grad_norm": 0.8234130144119263, + "learning_rate": 2.6270666666666666e-05, + "loss": 1.538638153076172, + "step": 356100 + }, + { + "epoch": 47.49333333333333, + "grad_norm": 0.8543081879615784, + "learning_rate": 2.6264e-05, + "loss": 1.5433369445800782, + "step": 356200 + }, + { + "epoch": 47.50666666666667, + "grad_norm": 0.8039753437042236, + "learning_rate": 2.6257399999999997e-05, + "loss": 1.5409135437011718, + "step": 356300 + }, + { + "epoch": 47.52, + "grad_norm": 0.807433545589447, + "learning_rate": 2.6250733333333333e-05, + "loss": 1.538723907470703, + "step": 356400 + }, + { + "epoch": 47.53333333333333, + "grad_norm": 0.829760730266571, + "learning_rate": 2.6244066666666668e-05, + "loss": 1.5394581604003905, + "step": 356500 + }, + { + "epoch": 47.54666666666667, + "grad_norm": 0.83366858959198, + "learning_rate": 2.62374e-05, + "loss": 1.545363311767578, + "step": 356600 + }, + { + "epoch": 47.56, + "grad_norm": 0.8441088795661926, + "learning_rate": 2.6230733333333336e-05, + "loss": 1.5482498168945313, + "step": 356700 + }, + { + "epoch": 47.57333333333333, + "grad_norm": 0.8056532740592957, + "learning_rate": 2.622406666666667e-05, + "loss": 1.5447674560546876, + "step": 356800 + }, + { + "epoch": 47.586666666666666, + "grad_norm": 0.8894994258880615, + "learning_rate": 2.6217400000000004e-05, + "loss": 1.5502810668945313, + "step": 356900 + }, + { + "epoch": 47.6, + "grad_norm": 0.8194480538368225, + "learning_rate": 2.6210733333333336e-05, + "loss": 1.5432069396972656, + "step": 357000 + }, + { + "epoch": 47.61333333333333, + "grad_norm": 0.8140724897384644, + "learning_rate": 2.6204066666666665e-05, + "loss": 1.5478276062011718, + "step": 357100 + }, + { + "epoch": 47.626666666666665, + "grad_norm": 0.8195116519927979, + "learning_rate": 2.61974e-05, + "loss": 1.544815673828125, + "step": 357200 + }, + { + "epoch": 47.64, + "grad_norm": 0.8061419725418091, + "learning_rate": 2.6190733333333333e-05, + "loss": 1.5499363708496094, + "step": 357300 + }, + { + "epoch": 47.653333333333336, + "grad_norm": 0.8833538293838501, + "learning_rate": 2.618406666666667e-05, + "loss": 1.5492486572265625, + "step": 357400 + }, + { + "epoch": 47.666666666666664, + "grad_norm": 0.817891001701355, + "learning_rate": 2.61774e-05, + "loss": 1.5491177368164062, + "step": 357500 + }, + { + "epoch": 47.68, + "grad_norm": 0.8547759652137756, + "learning_rate": 2.6170733333333337e-05, + "loss": 1.5468995666503906, + "step": 357600 + }, + { + "epoch": 47.693333333333335, + "grad_norm": 0.8713561296463013, + "learning_rate": 2.616406666666667e-05, + "loss": 1.5532452392578124, + "step": 357700 + }, + { + "epoch": 47.70666666666666, + "grad_norm": 0.8616589307785034, + "learning_rate": 2.6157399999999998e-05, + "loss": 1.5543402099609376, + "step": 357800 + }, + { + "epoch": 47.72, + "grad_norm": 0.8249148726463318, + "learning_rate": 2.6150733333333334e-05, + "loss": 1.5558518981933593, + "step": 357900 + }, + { + "epoch": 47.733333333333334, + "grad_norm": 0.8403042554855347, + "learning_rate": 2.6144066666666666e-05, + "loss": 1.55149169921875, + "step": 358000 + }, + { + "epoch": 47.74666666666667, + "grad_norm": 0.8018736839294434, + "learning_rate": 2.61374e-05, + "loss": 1.5553018188476562, + "step": 358100 + }, + { + "epoch": 47.76, + "grad_norm": 0.8302009701728821, + "learning_rate": 2.6130733333333334e-05, + "loss": 1.5563357543945313, + "step": 358200 + }, + { + "epoch": 47.77333333333333, + "grad_norm": 0.8318833708763123, + "learning_rate": 2.6124133333333333e-05, + "loss": 1.5607223510742188, + "step": 358300 + }, + { + "epoch": 47.78666666666667, + "grad_norm": 0.8090811967849731, + "learning_rate": 2.611746666666667e-05, + "loss": 1.5559880065917968, + "step": 358400 + }, + { + "epoch": 47.8, + "grad_norm": 0.868520975112915, + "learning_rate": 2.61108e-05, + "loss": 1.55770751953125, + "step": 358500 + }, + { + "epoch": 47.81333333333333, + "grad_norm": 0.8197623491287231, + "learning_rate": 2.6104133333333336e-05, + "loss": 1.558822021484375, + "step": 358600 + }, + { + "epoch": 47.82666666666667, + "grad_norm": 0.8163467645645142, + "learning_rate": 2.609746666666667e-05, + "loss": 1.557568359375, + "step": 358700 + }, + { + "epoch": 47.84, + "grad_norm": 0.7725224494934082, + "learning_rate": 2.6090799999999998e-05, + "loss": 1.5549420166015624, + "step": 358800 + }, + { + "epoch": 47.85333333333333, + "grad_norm": 0.8405675292015076, + "learning_rate": 2.6084133333333333e-05, + "loss": 1.5608193969726563, + "step": 358900 + }, + { + "epoch": 47.86666666666667, + "grad_norm": 0.8494597673416138, + "learning_rate": 2.6077466666666666e-05, + "loss": 1.5580606079101562, + "step": 359000 + }, + { + "epoch": 47.88, + "grad_norm": 0.8636260032653809, + "learning_rate": 2.60708e-05, + "loss": 1.5591242980957032, + "step": 359100 + }, + { + "epoch": 47.89333333333333, + "grad_norm": 0.8216843008995056, + "learning_rate": 2.6064133333333333e-05, + "loss": 1.5577593994140626, + "step": 359200 + }, + { + "epoch": 47.906666666666666, + "grad_norm": 0.8437257409095764, + "learning_rate": 2.605746666666667e-05, + "loss": 1.5638467407226562, + "step": 359300 + }, + { + "epoch": 47.92, + "grad_norm": 0.8391488790512085, + "learning_rate": 2.60508e-05, + "loss": 1.559764404296875, + "step": 359400 + }, + { + "epoch": 47.93333333333333, + "grad_norm": 0.8953635096549988, + "learning_rate": 2.6044133333333337e-05, + "loss": 1.5598916625976562, + "step": 359500 + }, + { + "epoch": 47.946666666666665, + "grad_norm": 0.8865219950675964, + "learning_rate": 2.6037466666666666e-05, + "loss": 1.56525390625, + "step": 359600 + }, + { + "epoch": 47.96, + "grad_norm": 0.8346757888793945, + "learning_rate": 2.6030799999999998e-05, + "loss": 1.5669119262695312, + "step": 359700 + }, + { + "epoch": 47.973333333333336, + "grad_norm": 0.7953504920005798, + "learning_rate": 2.6024133333333334e-05, + "loss": 1.5616644287109376, + "step": 359800 + }, + { + "epoch": 47.986666666666665, + "grad_norm": 0.8168767094612122, + "learning_rate": 2.6017466666666666e-05, + "loss": 1.5720118713378906, + "step": 359900 + }, + { + "epoch": 48.0, + "grad_norm": 0.874919593334198, + "learning_rate": 2.6010800000000002e-05, + "loss": 1.5705772399902345, + "step": 360000 + }, + { + "epoch": 48.013333333333335, + "grad_norm": 0.8366668820381165, + "learning_rate": 2.6004133333333337e-05, + "loss": 1.4951602172851564, + "step": 360100 + }, + { + "epoch": 48.026666666666664, + "grad_norm": 0.8061423897743225, + "learning_rate": 2.599746666666667e-05, + "loss": 1.49366455078125, + "step": 360200 + }, + { + "epoch": 48.04, + "grad_norm": 0.8062233328819275, + "learning_rate": 2.59908e-05, + "loss": 1.4919319152832031, + "step": 360300 + }, + { + "epoch": 48.053333333333335, + "grad_norm": 0.7820529341697693, + "learning_rate": 2.5984200000000004e-05, + "loss": 1.4933494567871093, + "step": 360400 + }, + { + "epoch": 48.06666666666667, + "grad_norm": 0.7874485850334167, + "learning_rate": 2.5977533333333337e-05, + "loss": 1.4942898559570312, + "step": 360500 + }, + { + "epoch": 48.08, + "grad_norm": 0.8219860792160034, + "learning_rate": 2.5970866666666666e-05, + "loss": 1.4994293212890626, + "step": 360600 + }, + { + "epoch": 48.093333333333334, + "grad_norm": 0.806149959564209, + "learning_rate": 2.59642e-05, + "loss": 1.5014764404296874, + "step": 360700 + }, + { + "epoch": 48.10666666666667, + "grad_norm": 0.8026537895202637, + "learning_rate": 2.5957533333333333e-05, + "loss": 1.5005511474609374, + "step": 360800 + }, + { + "epoch": 48.12, + "grad_norm": 0.803657591342926, + "learning_rate": 2.595086666666667e-05, + "loss": 1.500188446044922, + "step": 360900 + }, + { + "epoch": 48.13333333333333, + "grad_norm": 0.8763360977172852, + "learning_rate": 2.59442e-05, + "loss": 1.5009043884277344, + "step": 361000 + }, + { + "epoch": 48.14666666666667, + "grad_norm": 0.7982499003410339, + "learning_rate": 2.5937533333333337e-05, + "loss": 1.5045884704589845, + "step": 361100 + }, + { + "epoch": 48.16, + "grad_norm": 0.8596701622009277, + "learning_rate": 2.593086666666667e-05, + "loss": 1.5040025329589843, + "step": 361200 + }, + { + "epoch": 48.17333333333333, + "grad_norm": 0.8158277869224548, + "learning_rate": 2.5924199999999998e-05, + "loss": 1.5009864807128905, + "step": 361300 + }, + { + "epoch": 48.18666666666667, + "grad_norm": 0.8603137135505676, + "learning_rate": 2.5917533333333334e-05, + "loss": 1.5051220703125, + "step": 361400 + }, + { + "epoch": 48.2, + "grad_norm": 0.8475449085235596, + "learning_rate": 2.5910866666666666e-05, + "loss": 1.5040087890625, + "step": 361500 + }, + { + "epoch": 48.21333333333333, + "grad_norm": 0.8340404629707336, + "learning_rate": 2.5904200000000002e-05, + "loss": 1.5033770751953126, + "step": 361600 + }, + { + "epoch": 48.22666666666667, + "grad_norm": 0.8179289102554321, + "learning_rate": 2.5897533333333334e-05, + "loss": 1.5125186157226562, + "step": 361700 + }, + { + "epoch": 48.24, + "grad_norm": 0.8329739570617676, + "learning_rate": 2.589086666666667e-05, + "loss": 1.5081419372558593, + "step": 361800 + }, + { + "epoch": 48.25333333333333, + "grad_norm": 0.8692247271537781, + "learning_rate": 2.5884200000000002e-05, + "loss": 1.509202880859375, + "step": 361900 + }, + { + "epoch": 48.266666666666666, + "grad_norm": 0.8539946675300598, + "learning_rate": 2.5877533333333338e-05, + "loss": 1.505505828857422, + "step": 362000 + }, + { + "epoch": 48.28, + "grad_norm": 0.8623639345169067, + "learning_rate": 2.5870866666666667e-05, + "loss": 1.5125834655761718, + "step": 362100 + }, + { + "epoch": 48.29333333333334, + "grad_norm": 0.8657389283180237, + "learning_rate": 2.58642e-05, + "loss": 1.517348175048828, + "step": 362200 + }, + { + "epoch": 48.306666666666665, + "grad_norm": 0.8074204921722412, + "learning_rate": 2.5857533333333334e-05, + "loss": 1.5124046325683593, + "step": 362300 + }, + { + "epoch": 48.32, + "grad_norm": 0.8119105100631714, + "learning_rate": 2.5850933333333334e-05, + "loss": 1.5156207275390625, + "step": 362400 + }, + { + "epoch": 48.333333333333336, + "grad_norm": 0.8001854419708252, + "learning_rate": 2.5844266666666666e-05, + "loss": 1.520142822265625, + "step": 362500 + }, + { + "epoch": 48.346666666666664, + "grad_norm": 0.8105164766311646, + "learning_rate": 2.58376e-05, + "loss": 1.51326904296875, + "step": 362600 + }, + { + "epoch": 48.36, + "grad_norm": 0.8771947026252747, + "learning_rate": 2.5830933333333334e-05, + "loss": 1.5151416015625, + "step": 362700 + }, + { + "epoch": 48.373333333333335, + "grad_norm": 0.8079180717468262, + "learning_rate": 2.582426666666667e-05, + "loss": 1.5162548828125, + "step": 362800 + }, + { + "epoch": 48.38666666666666, + "grad_norm": 0.8303863406181335, + "learning_rate": 2.58176e-05, + "loss": 1.517666015625, + "step": 362900 + }, + { + "epoch": 48.4, + "grad_norm": 0.8090680837631226, + "learning_rate": 2.5810933333333337e-05, + "loss": 1.5149562072753906, + "step": 363000 + }, + { + "epoch": 48.413333333333334, + "grad_norm": 0.8291407227516174, + "learning_rate": 2.5804266666666666e-05, + "loss": 1.5243867492675782, + "step": 363100 + }, + { + "epoch": 48.42666666666667, + "grad_norm": 0.8551901578903198, + "learning_rate": 2.57976e-05, + "loss": 1.5234576416015626, + "step": 363200 + }, + { + "epoch": 48.44, + "grad_norm": 0.8535791039466858, + "learning_rate": 2.5790933333333334e-05, + "loss": 1.52187744140625, + "step": 363300 + }, + { + "epoch": 48.45333333333333, + "grad_norm": 0.8479459881782532, + "learning_rate": 2.5784266666666666e-05, + "loss": 1.51526611328125, + "step": 363400 + }, + { + "epoch": 48.46666666666667, + "grad_norm": 0.7857949733734131, + "learning_rate": 2.5777600000000002e-05, + "loss": 1.5265869140625, + "step": 363500 + }, + { + "epoch": 48.48, + "grad_norm": 0.8698379397392273, + "learning_rate": 2.5770933333333334e-05, + "loss": 1.5276319885253906, + "step": 363600 + }, + { + "epoch": 48.49333333333333, + "grad_norm": 0.817887544631958, + "learning_rate": 2.576426666666667e-05, + "loss": 1.5276255798339844, + "step": 363700 + }, + { + "epoch": 48.50666666666667, + "grad_norm": 0.8234931826591492, + "learning_rate": 2.5757600000000006e-05, + "loss": 1.5249510192871094, + "step": 363800 + }, + { + "epoch": 48.52, + "grad_norm": 0.8288886547088623, + "learning_rate": 2.575093333333333e-05, + "loss": 1.528853759765625, + "step": 363900 + }, + { + "epoch": 48.53333333333333, + "grad_norm": 0.8396264314651489, + "learning_rate": 2.5744266666666667e-05, + "loss": 1.5318849182128906, + "step": 364000 + }, + { + "epoch": 48.54666666666667, + "grad_norm": 0.824802041053772, + "learning_rate": 2.57376e-05, + "loss": 1.5319622802734374, + "step": 364100 + }, + { + "epoch": 48.56, + "grad_norm": 0.8573387861251831, + "learning_rate": 2.5730933333333335e-05, + "loss": 1.5280552673339844, + "step": 364200 + }, + { + "epoch": 48.57333333333333, + "grad_norm": 0.836539089679718, + "learning_rate": 2.572426666666667e-05, + "loss": 1.5268043518066405, + "step": 364300 + }, + { + "epoch": 48.586666666666666, + "grad_norm": 0.885406494140625, + "learning_rate": 2.5717666666666666e-05, + "loss": 1.5300917053222656, + "step": 364400 + }, + { + "epoch": 48.6, + "grad_norm": 0.8176631331443787, + "learning_rate": 2.5711e-05, + "loss": 1.5323922729492188, + "step": 364500 + }, + { + "epoch": 48.61333333333333, + "grad_norm": 0.8315919637680054, + "learning_rate": 2.5704333333333337e-05, + "loss": 1.53243408203125, + "step": 364600 + }, + { + "epoch": 48.626666666666665, + "grad_norm": 0.822803258895874, + "learning_rate": 2.569766666666667e-05, + "loss": 1.5390171813964844, + "step": 364700 + }, + { + "epoch": 48.64, + "grad_norm": 0.8383143544197083, + "learning_rate": 2.5691000000000005e-05, + "loss": 1.5334788513183595, + "step": 364800 + }, + { + "epoch": 48.653333333333336, + "grad_norm": 0.8430681824684143, + "learning_rate": 2.5684333333333334e-05, + "loss": 1.5373228454589845, + "step": 364900 + }, + { + "epoch": 48.666666666666664, + "grad_norm": 0.861682653427124, + "learning_rate": 2.5677666666666666e-05, + "loss": 1.536941680908203, + "step": 365000 + }, + { + "epoch": 48.68, + "grad_norm": 0.8224048018455505, + "learning_rate": 2.5671000000000002e-05, + "loss": 1.5357330322265625, + "step": 365100 + }, + { + "epoch": 48.693333333333335, + "grad_norm": 0.8081045150756836, + "learning_rate": 2.5664333333333334e-05, + "loss": 1.5333282470703125, + "step": 365200 + }, + { + "epoch": 48.70666666666666, + "grad_norm": 0.8442122340202332, + "learning_rate": 2.565766666666667e-05, + "loss": 1.536866455078125, + "step": 365300 + }, + { + "epoch": 48.72, + "grad_norm": 0.822340190410614, + "learning_rate": 2.5651000000000002e-05, + "loss": 1.5430012512207032, + "step": 365400 + }, + { + "epoch": 48.733333333333334, + "grad_norm": 0.8340216875076294, + "learning_rate": 2.5644333333333338e-05, + "loss": 1.5356080627441406, + "step": 365500 + }, + { + "epoch": 48.74666666666667, + "grad_norm": 0.8153738975524902, + "learning_rate": 2.5637666666666667e-05, + "loss": 1.5389717102050782, + "step": 365600 + }, + { + "epoch": 48.76, + "grad_norm": 0.8527360558509827, + "learning_rate": 2.5631e-05, + "loss": 1.5421336364746094, + "step": 365700 + }, + { + "epoch": 48.77333333333333, + "grad_norm": 0.8141431212425232, + "learning_rate": 2.5624333333333335e-05, + "loss": 1.537602081298828, + "step": 365800 + }, + { + "epoch": 48.78666666666667, + "grad_norm": 0.8881790041923523, + "learning_rate": 2.5617666666666667e-05, + "loss": 1.5385264587402343, + "step": 365900 + }, + { + "epoch": 48.8, + "grad_norm": 0.8357459902763367, + "learning_rate": 2.5611000000000003e-05, + "loss": 1.5437425231933595, + "step": 366000 + }, + { + "epoch": 48.81333333333333, + "grad_norm": 0.828778088092804, + "learning_rate": 2.5604333333333335e-05, + "loss": 1.540460968017578, + "step": 366100 + }, + { + "epoch": 48.82666666666667, + "grad_norm": 0.8588747382164001, + "learning_rate": 2.559766666666667e-05, + "loss": 1.545701446533203, + "step": 366200 + }, + { + "epoch": 48.84, + "grad_norm": 0.8609989285469055, + "learning_rate": 2.5591000000000003e-05, + "loss": 1.5466421508789063, + "step": 366300 + }, + { + "epoch": 48.85333333333333, + "grad_norm": 0.7956804633140564, + "learning_rate": 2.5584400000000002e-05, + "loss": 1.54723388671875, + "step": 366400 + }, + { + "epoch": 48.86666666666667, + "grad_norm": 0.8610774278640747, + "learning_rate": 2.5577733333333338e-05, + "loss": 1.5450926208496094, + "step": 366500 + }, + { + "epoch": 48.88, + "grad_norm": 0.8780190944671631, + "learning_rate": 2.5571066666666666e-05, + "loss": 1.547249298095703, + "step": 366600 + }, + { + "epoch": 48.89333333333333, + "grad_norm": 0.8510201573371887, + "learning_rate": 2.55644e-05, + "loss": 1.5473715209960937, + "step": 366700 + }, + { + "epoch": 48.906666666666666, + "grad_norm": 0.8271015882492065, + "learning_rate": 2.5557733333333334e-05, + "loss": 1.5514225769042969, + "step": 366800 + }, + { + "epoch": 48.92, + "grad_norm": 0.8673347234725952, + "learning_rate": 2.5551066666666667e-05, + "loss": 1.5482473754882813, + "step": 366900 + }, + { + "epoch": 48.93333333333333, + "grad_norm": 0.9040217995643616, + "learning_rate": 2.5544400000000002e-05, + "loss": 1.5476766967773437, + "step": 367000 + }, + { + "epoch": 48.946666666666665, + "grad_norm": 0.8571226000785828, + "learning_rate": 2.5537733333333335e-05, + "loss": 1.5490121459960937, + "step": 367100 + }, + { + "epoch": 48.96, + "grad_norm": 0.8800345659255981, + "learning_rate": 2.553106666666667e-05, + "loss": 1.5518528747558593, + "step": 367200 + }, + { + "epoch": 48.973333333333336, + "grad_norm": 0.8253681659698486, + "learning_rate": 2.5524400000000002e-05, + "loss": 1.5538876342773438, + "step": 367300 + }, + { + "epoch": 48.986666666666665, + "grad_norm": 0.8854805827140808, + "learning_rate": 2.551773333333333e-05, + "loss": 1.5536569213867188, + "step": 367400 + }, + { + "epoch": 49.0, + "grad_norm": 0.8323401808738708, + "learning_rate": 2.5511066666666667e-05, + "loss": 1.5535047912597657, + "step": 367500 + }, + { + "epoch": 49.013333333333335, + "grad_norm": 0.7903602719306946, + "learning_rate": 2.55044e-05, + "loss": 1.478652801513672, + "step": 367600 + }, + { + "epoch": 49.026666666666664, + "grad_norm": 0.7994419932365417, + "learning_rate": 2.5497733333333335e-05, + "loss": 1.4753775024414062, + "step": 367700 + }, + { + "epoch": 49.04, + "grad_norm": 0.8322893381118774, + "learning_rate": 2.5491066666666667e-05, + "loss": 1.47673583984375, + "step": 367800 + }, + { + "epoch": 49.053333333333335, + "grad_norm": 0.8257775902748108, + "learning_rate": 2.5484400000000003e-05, + "loss": 1.4793165588378907, + "step": 367900 + }, + { + "epoch": 49.06666666666667, + "grad_norm": 0.8123628497123718, + "learning_rate": 2.5477733333333335e-05, + "loss": 1.4788943481445314, + "step": 368000 + }, + { + "epoch": 49.08, + "grad_norm": 0.849601149559021, + "learning_rate": 2.5471066666666664e-05, + "loss": 1.4821792602539063, + "step": 368100 + }, + { + "epoch": 49.093333333333334, + "grad_norm": 0.8008491396903992, + "learning_rate": 2.54644e-05, + "loss": 1.4849171447753906, + "step": 368200 + }, + { + "epoch": 49.10666666666667, + "grad_norm": 0.8216526508331299, + "learning_rate": 2.5457733333333332e-05, + "loss": 1.4855982971191406, + "step": 368300 + }, + { + "epoch": 49.12, + "grad_norm": 0.8552011847496033, + "learning_rate": 2.5451066666666668e-05, + "loss": 1.4879904174804688, + "step": 368400 + }, + { + "epoch": 49.13333333333333, + "grad_norm": 0.7977767586708069, + "learning_rate": 2.5444466666666667e-05, + "loss": 1.4883206176757813, + "step": 368500 + }, + { + "epoch": 49.14666666666667, + "grad_norm": 0.8241558074951172, + "learning_rate": 2.54378e-05, + "loss": 1.4861485290527343, + "step": 368600 + }, + { + "epoch": 49.16, + "grad_norm": 0.8472109436988831, + "learning_rate": 2.5431133333333335e-05, + "loss": 1.4872750854492187, + "step": 368700 + }, + { + "epoch": 49.17333333333333, + "grad_norm": 0.8214472532272339, + "learning_rate": 2.542446666666667e-05, + "loss": 1.487729034423828, + "step": 368800 + }, + { + "epoch": 49.18666666666667, + "grad_norm": 0.8378106355667114, + "learning_rate": 2.5417800000000003e-05, + "loss": 1.48987060546875, + "step": 368900 + }, + { + "epoch": 49.2, + "grad_norm": 0.7991240620613098, + "learning_rate": 2.5411133333333338e-05, + "loss": 1.492364501953125, + "step": 369000 + }, + { + "epoch": 49.21333333333333, + "grad_norm": 0.8102217316627502, + "learning_rate": 2.5404466666666664e-05, + "loss": 1.4964356994628907, + "step": 369100 + }, + { + "epoch": 49.22666666666667, + "grad_norm": 0.7787119150161743, + "learning_rate": 2.53978e-05, + "loss": 1.4987217712402343, + "step": 369200 + }, + { + "epoch": 49.24, + "grad_norm": 0.8689252138137817, + "learning_rate": 2.5391133333333335e-05, + "loss": 1.497693328857422, + "step": 369300 + }, + { + "epoch": 49.25333333333333, + "grad_norm": 0.8548557162284851, + "learning_rate": 2.5384466666666667e-05, + "loss": 1.4954206848144531, + "step": 369400 + }, + { + "epoch": 49.266666666666666, + "grad_norm": 0.8644983172416687, + "learning_rate": 2.5377800000000003e-05, + "loss": 1.4990921020507812, + "step": 369500 + }, + { + "epoch": 49.28, + "grad_norm": 0.8004375696182251, + "learning_rate": 2.5371133333333335e-05, + "loss": 1.4989527893066406, + "step": 369600 + }, + { + "epoch": 49.29333333333334, + "grad_norm": 0.811881959438324, + "learning_rate": 2.536446666666667e-05, + "loss": 1.4984857177734374, + "step": 369700 + }, + { + "epoch": 49.306666666666665, + "grad_norm": 0.8403072953224182, + "learning_rate": 2.5357800000000003e-05, + "loss": 1.4975395202636719, + "step": 369800 + }, + { + "epoch": 49.32, + "grad_norm": 0.8402568697929382, + "learning_rate": 2.5351133333333332e-05, + "loss": 1.4993600463867187, + "step": 369900 + }, + { + "epoch": 49.333333333333336, + "grad_norm": 0.8742866516113281, + "learning_rate": 2.5344466666666668e-05, + "loss": 1.504093475341797, + "step": 370000 + }, + { + "epoch": 49.346666666666664, + "grad_norm": 0.8136636018753052, + "learning_rate": 2.53378e-05, + "loss": 1.5030204772949218, + "step": 370100 + }, + { + "epoch": 49.36, + "grad_norm": 0.846967339515686, + "learning_rate": 2.5331133333333336e-05, + "loss": 1.5024598693847657, + "step": 370200 + }, + { + "epoch": 49.373333333333335, + "grad_norm": 0.784156858921051, + "learning_rate": 2.5324466666666668e-05, + "loss": 1.5066024780273437, + "step": 370300 + }, + { + "epoch": 49.38666666666666, + "grad_norm": 0.8611376881599426, + "learning_rate": 2.5317800000000003e-05, + "loss": 1.5030882263183594, + "step": 370400 + }, + { + "epoch": 49.4, + "grad_norm": 0.8456284403800964, + "learning_rate": 2.5311200000000003e-05, + "loss": 1.5110250854492187, + "step": 370500 + }, + { + "epoch": 49.413333333333334, + "grad_norm": 0.8738457560539246, + "learning_rate": 2.5304533333333335e-05, + "loss": 1.5068327331542968, + "step": 370600 + }, + { + "epoch": 49.42666666666667, + "grad_norm": 0.81916743516922, + "learning_rate": 2.529786666666667e-05, + "loss": 1.5101161193847656, + "step": 370700 + }, + { + "epoch": 49.44, + "grad_norm": 0.8413360714912415, + "learning_rate": 2.5291200000000003e-05, + "loss": 1.509934844970703, + "step": 370800 + }, + { + "epoch": 49.45333333333333, + "grad_norm": 0.8540857434272766, + "learning_rate": 2.528453333333333e-05, + "loss": 1.5118212890625, + "step": 370900 + }, + { + "epoch": 49.46666666666667, + "grad_norm": 0.8651217222213745, + "learning_rate": 2.5277866666666667e-05, + "loss": 1.5078504943847657, + "step": 371000 + }, + { + "epoch": 49.48, + "grad_norm": 0.8294056057929993, + "learning_rate": 2.52712e-05, + "loss": 1.5105992126464844, + "step": 371100 + }, + { + "epoch": 49.49333333333333, + "grad_norm": 0.8947125673294067, + "learning_rate": 2.5264533333333335e-05, + "loss": 1.5177714538574218, + "step": 371200 + }, + { + "epoch": 49.50666666666667, + "grad_norm": 0.8449296951293945, + "learning_rate": 2.5257866666666667e-05, + "loss": 1.5125474548339843, + "step": 371300 + }, + { + "epoch": 49.52, + "grad_norm": 0.849795401096344, + "learning_rate": 2.5251200000000003e-05, + "loss": 1.5124183654785157, + "step": 371400 + }, + { + "epoch": 49.53333333333333, + "grad_norm": 0.8208550810813904, + "learning_rate": 2.5244533333333335e-05, + "loss": 1.5178236389160156, + "step": 371500 + }, + { + "epoch": 49.54666666666667, + "grad_norm": 0.8659239411354065, + "learning_rate": 2.5237866666666664e-05, + "loss": 1.51171875, + "step": 371600 + }, + { + "epoch": 49.56, + "grad_norm": 0.8339199423789978, + "learning_rate": 2.52312e-05, + "loss": 1.5164427185058593, + "step": 371700 + }, + { + "epoch": 49.57333333333333, + "grad_norm": 0.817791759967804, + "learning_rate": 2.5224533333333332e-05, + "loss": 1.5198959350585937, + "step": 371800 + }, + { + "epoch": 49.586666666666666, + "grad_norm": 0.8938850164413452, + "learning_rate": 2.5217866666666668e-05, + "loss": 1.5189447021484375, + "step": 371900 + }, + { + "epoch": 49.6, + "grad_norm": 0.8634279370307922, + "learning_rate": 2.52112e-05, + "loss": 1.5181257629394531, + "step": 372000 + }, + { + "epoch": 49.61333333333333, + "grad_norm": 0.8766525983810425, + "learning_rate": 2.5204533333333336e-05, + "loss": 1.5201939392089843, + "step": 372100 + }, + { + "epoch": 49.626666666666665, + "grad_norm": 0.8618395328521729, + "learning_rate": 2.5197866666666668e-05, + "loss": 1.5215455627441405, + "step": 372200 + }, + { + "epoch": 49.64, + "grad_norm": 0.8641324043273926, + "learning_rate": 2.5191200000000004e-05, + "loss": 1.5232699584960938, + "step": 372300 + }, + { + "epoch": 49.653333333333336, + "grad_norm": 0.8349089026451111, + "learning_rate": 2.5184533333333333e-05, + "loss": 1.5240145874023439, + "step": 372400 + }, + { + "epoch": 49.666666666666664, + "grad_norm": 0.8367394804954529, + "learning_rate": 2.5177933333333335e-05, + "loss": 1.520089111328125, + "step": 372500 + }, + { + "epoch": 49.68, + "grad_norm": 0.8456884026527405, + "learning_rate": 2.5171266666666664e-05, + "loss": 1.5240330505371094, + "step": 372600 + }, + { + "epoch": 49.693333333333335, + "grad_norm": 0.8970924615859985, + "learning_rate": 2.51646e-05, + "loss": 1.5220384216308593, + "step": 372700 + }, + { + "epoch": 49.70666666666666, + "grad_norm": 0.8440273404121399, + "learning_rate": 2.5157933333333332e-05, + "loss": 1.5244894409179688, + "step": 372800 + }, + { + "epoch": 49.72, + "grad_norm": 0.8721365332603455, + "learning_rate": 2.5151266666666668e-05, + "loss": 1.5227665710449219, + "step": 372900 + }, + { + "epoch": 49.733333333333334, + "grad_norm": 0.9237975478172302, + "learning_rate": 2.5144600000000003e-05, + "loss": 1.5297914123535157, + "step": 373000 + }, + { + "epoch": 49.74666666666667, + "grad_norm": 0.8599965572357178, + "learning_rate": 2.5137933333333335e-05, + "loss": 1.5247174072265626, + "step": 373100 + }, + { + "epoch": 49.76, + "grad_norm": 0.8520407676696777, + "learning_rate": 2.513126666666667e-05, + "loss": 1.5293832397460938, + "step": 373200 + }, + { + "epoch": 49.77333333333333, + "grad_norm": 0.8867288827896118, + "learning_rate": 2.5124600000000003e-05, + "loss": 1.5261709594726562, + "step": 373300 + }, + { + "epoch": 49.78666666666667, + "grad_norm": 0.8335996866226196, + "learning_rate": 2.5117933333333332e-05, + "loss": 1.5297763061523437, + "step": 373400 + }, + { + "epoch": 49.8, + "grad_norm": 0.8595085144042969, + "learning_rate": 2.5111266666666668e-05, + "loss": 1.5318873596191407, + "step": 373500 + }, + { + "epoch": 49.81333333333333, + "grad_norm": 0.8604120016098022, + "learning_rate": 2.51046e-05, + "loss": 1.5329582214355468, + "step": 373600 + }, + { + "epoch": 49.82666666666667, + "grad_norm": 0.8619903922080994, + "learning_rate": 2.5097933333333336e-05, + "loss": 1.5340994262695313, + "step": 373700 + }, + { + "epoch": 49.84, + "grad_norm": 0.8415823578834534, + "learning_rate": 2.5091266666666668e-05, + "loss": 1.5291461181640624, + "step": 373800 + }, + { + "epoch": 49.85333333333333, + "grad_norm": 0.8430103063583374, + "learning_rate": 2.5084600000000004e-05, + "loss": 1.5344522094726563, + "step": 373900 + }, + { + "epoch": 49.86666666666667, + "grad_norm": 0.8401354551315308, + "learning_rate": 2.5077933333333336e-05, + "loss": 1.5318260192871094, + "step": 374000 + }, + { + "epoch": 49.88, + "grad_norm": 0.8805033564567566, + "learning_rate": 2.5071266666666665e-05, + "loss": 1.5331027221679687, + "step": 374100 + }, + { + "epoch": 49.89333333333333, + "grad_norm": 0.8586838245391846, + "learning_rate": 2.50646e-05, + "loss": 1.5350416564941407, + "step": 374200 + }, + { + "epoch": 49.906666666666666, + "grad_norm": 0.8289893269538879, + "learning_rate": 2.5057933333333333e-05, + "loss": 1.531967315673828, + "step": 374300 + }, + { + "epoch": 49.92, + "grad_norm": 0.8118442893028259, + "learning_rate": 2.505126666666667e-05, + "loss": 1.5373696899414062, + "step": 374400 + }, + { + "epoch": 49.93333333333333, + "grad_norm": 0.8152410984039307, + "learning_rate": 2.5044666666666668e-05, + "loss": 1.5317294311523437, + "step": 374500 + }, + { + "epoch": 49.946666666666665, + "grad_norm": 0.8541066646575928, + "learning_rate": 2.5038e-05, + "loss": 1.5318400573730468, + "step": 374600 + }, + { + "epoch": 49.96, + "grad_norm": 0.8401637673377991, + "learning_rate": 2.5031333333333335e-05, + "loss": 1.53946044921875, + "step": 374700 + }, + { + "epoch": 49.973333333333336, + "grad_norm": 0.8769694566726685, + "learning_rate": 2.5024666666666668e-05, + "loss": 1.5422596740722656, + "step": 374800 + }, + { + "epoch": 49.986666666666665, + "grad_norm": 0.8622532486915588, + "learning_rate": 2.5018000000000003e-05, + "loss": 1.535623779296875, + "step": 374900 + }, + { + "epoch": 50.0, + "grad_norm": 0.8721447587013245, + "learning_rate": 2.5011333333333336e-05, + "loss": 1.5350186157226562, + "step": 375000 + }, + { + "epoch": 50.013333333333335, + "grad_norm": 0.8176959753036499, + "learning_rate": 2.5004666666666665e-05, + "loss": 1.466029052734375, + "step": 375100 + }, + { + "epoch": 50.026666666666664, + "grad_norm": 0.8403975963592529, + "learning_rate": 2.4998000000000004e-05, + "loss": 1.4674476623535155, + "step": 375200 + }, + { + "epoch": 50.04, + "grad_norm": 0.7836979031562805, + "learning_rate": 2.4991333333333332e-05, + "loss": 1.4652630615234374, + "step": 375300 + }, + { + "epoch": 50.053333333333335, + "grad_norm": 0.8018586039543152, + "learning_rate": 2.4984666666666668e-05, + "loss": 1.4712281799316407, + "step": 375400 + }, + { + "epoch": 50.06666666666667, + "grad_norm": 0.8064463138580322, + "learning_rate": 2.4978e-05, + "loss": 1.4708700561523438, + "step": 375500 + }, + { + "epoch": 50.08, + "grad_norm": 0.8261614441871643, + "learning_rate": 2.4971333333333336e-05, + "loss": 1.4716073608398437, + "step": 375600 + }, + { + "epoch": 50.093333333333334, + "grad_norm": 0.837766706943512, + "learning_rate": 2.496466666666667e-05, + "loss": 1.4701448059082032, + "step": 375700 + }, + { + "epoch": 50.10666666666667, + "grad_norm": 0.8290911912918091, + "learning_rate": 2.4958e-05, + "loss": 1.4736390686035157, + "step": 375800 + }, + { + "epoch": 50.12, + "grad_norm": 0.8385511636734009, + "learning_rate": 2.4951333333333336e-05, + "loss": 1.47410888671875, + "step": 375900 + }, + { + "epoch": 50.13333333333333, + "grad_norm": 0.8306918144226074, + "learning_rate": 2.494466666666667e-05, + "loss": 1.473253173828125, + "step": 376000 + }, + { + "epoch": 50.14666666666667, + "grad_norm": 0.8213056325912476, + "learning_rate": 2.4938e-05, + "loss": 1.4761256408691406, + "step": 376100 + }, + { + "epoch": 50.16, + "grad_norm": 0.8195951581001282, + "learning_rate": 2.4931333333333333e-05, + "loss": 1.4738999938964843, + "step": 376200 + }, + { + "epoch": 50.17333333333333, + "grad_norm": 0.8188632130622864, + "learning_rate": 2.492466666666667e-05, + "loss": 1.474258270263672, + "step": 376300 + }, + { + "epoch": 50.18666666666667, + "grad_norm": 0.8272870182991028, + "learning_rate": 2.4918e-05, + "loss": 1.4804847717285157, + "step": 376400 + }, + { + "epoch": 50.2, + "grad_norm": 0.8472500443458557, + "learning_rate": 2.4911333333333333e-05, + "loss": 1.4830419921875, + "step": 376500 + }, + { + "epoch": 50.21333333333333, + "grad_norm": 0.8540857434272766, + "learning_rate": 2.4904733333333336e-05, + "loss": 1.4762397766113282, + "step": 376600 + }, + { + "epoch": 50.22666666666667, + "grad_norm": 0.8313518762588501, + "learning_rate": 2.4898066666666668e-05, + "loss": 1.488265838623047, + "step": 376700 + }, + { + "epoch": 50.24, + "grad_norm": 0.8233117461204529, + "learning_rate": 2.48914e-05, + "loss": 1.4829058837890625, + "step": 376800 + }, + { + "epoch": 50.25333333333333, + "grad_norm": 0.779459536075592, + "learning_rate": 2.4884733333333336e-05, + "loss": 1.4825271606445312, + "step": 376900 + }, + { + "epoch": 50.266666666666666, + "grad_norm": 0.8867989182472229, + "learning_rate": 2.4878066666666668e-05, + "loss": 1.4807273864746093, + "step": 377000 + }, + { + "epoch": 50.28, + "grad_norm": 0.8341526985168457, + "learning_rate": 2.48714e-05, + "loss": 1.4884478759765625, + "step": 377100 + }, + { + "epoch": 50.29333333333334, + "grad_norm": 0.8194299340248108, + "learning_rate": 2.4864733333333333e-05, + "loss": 1.49041259765625, + "step": 377200 + }, + { + "epoch": 50.306666666666665, + "grad_norm": 0.8118073344230652, + "learning_rate": 2.485806666666667e-05, + "loss": 1.4905577087402344, + "step": 377300 + }, + { + "epoch": 50.32, + "grad_norm": 0.8379462361335754, + "learning_rate": 2.4851400000000004e-05, + "loss": 1.489639434814453, + "step": 377400 + }, + { + "epoch": 50.333333333333336, + "grad_norm": 0.8261382579803467, + "learning_rate": 2.4844733333333333e-05, + "loss": 1.4874810791015625, + "step": 377500 + }, + { + "epoch": 50.346666666666664, + "grad_norm": 0.8561468124389648, + "learning_rate": 2.483806666666667e-05, + "loss": 1.4892660522460937, + "step": 377600 + }, + { + "epoch": 50.36, + "grad_norm": 0.8199340105056763, + "learning_rate": 2.48314e-05, + "loss": 1.4900086975097657, + "step": 377700 + }, + { + "epoch": 50.373333333333335, + "grad_norm": 0.8406544327735901, + "learning_rate": 2.4824733333333333e-05, + "loss": 1.4931591796875, + "step": 377800 + }, + { + "epoch": 50.38666666666666, + "grad_norm": 0.855679452419281, + "learning_rate": 2.481806666666667e-05, + "loss": 1.496982879638672, + "step": 377900 + }, + { + "epoch": 50.4, + "grad_norm": 0.8296971917152405, + "learning_rate": 2.48114e-05, + "loss": 1.4914996337890625, + "step": 378000 + }, + { + "epoch": 50.413333333333334, + "grad_norm": 0.8180424571037292, + "learning_rate": 2.4804733333333337e-05, + "loss": 1.4951356506347657, + "step": 378100 + }, + { + "epoch": 50.42666666666667, + "grad_norm": 0.7618070244789124, + "learning_rate": 2.4798066666666666e-05, + "loss": 1.4911334228515625, + "step": 378200 + }, + { + "epoch": 50.44, + "grad_norm": 0.8503825664520264, + "learning_rate": 2.47914e-05, + "loss": 1.4923796081542968, + "step": 378300 + }, + { + "epoch": 50.45333333333333, + "grad_norm": 0.8834084272384644, + "learning_rate": 2.4784733333333333e-05, + "loss": 1.5002174377441406, + "step": 378400 + }, + { + "epoch": 50.46666666666667, + "grad_norm": 0.8220873475074768, + "learning_rate": 2.477806666666667e-05, + "loss": 1.4986158752441405, + "step": 378500 + }, + { + "epoch": 50.48, + "grad_norm": 0.8193914294242859, + "learning_rate": 2.4771466666666668e-05, + "loss": 1.5011746215820312, + "step": 378600 + }, + { + "epoch": 50.49333333333333, + "grad_norm": 0.800317108631134, + "learning_rate": 2.47648e-05, + "loss": 1.4963475036621094, + "step": 378700 + }, + { + "epoch": 50.50666666666667, + "grad_norm": 0.9164362549781799, + "learning_rate": 2.4758133333333333e-05, + "loss": 1.5000321960449219, + "step": 378800 + }, + { + "epoch": 50.52, + "grad_norm": 0.8191181421279907, + "learning_rate": 2.475146666666667e-05, + "loss": 1.4975949096679688, + "step": 378900 + }, + { + "epoch": 50.53333333333333, + "grad_norm": 0.8659054040908813, + "learning_rate": 2.47448e-05, + "loss": 1.5002691650390625, + "step": 379000 + }, + { + "epoch": 50.54666666666667, + "grad_norm": 0.8360313177108765, + "learning_rate": 2.4738133333333336e-05, + "loss": 1.5039067077636719, + "step": 379100 + }, + { + "epoch": 50.56, + "grad_norm": 0.8391720652580261, + "learning_rate": 2.4731466666666665e-05, + "loss": 1.5015184020996093, + "step": 379200 + }, + { + "epoch": 50.57333333333333, + "grad_norm": 0.8605763912200928, + "learning_rate": 2.47248e-05, + "loss": 1.4976239013671875, + "step": 379300 + }, + { + "epoch": 50.586666666666666, + "grad_norm": 0.8516925573348999, + "learning_rate": 2.4718133333333333e-05, + "loss": 1.506053466796875, + "step": 379400 + }, + { + "epoch": 50.6, + "grad_norm": 0.8585731387138367, + "learning_rate": 2.471146666666667e-05, + "loss": 1.5041627502441406, + "step": 379500 + }, + { + "epoch": 50.61333333333333, + "grad_norm": 0.8855695724487305, + "learning_rate": 2.47048e-05, + "loss": 1.511184539794922, + "step": 379600 + }, + { + "epoch": 50.626666666666665, + "grad_norm": 0.8389919996261597, + "learning_rate": 2.4698133333333333e-05, + "loss": 1.5034822082519532, + "step": 379700 + }, + { + "epoch": 50.64, + "grad_norm": 0.8592944145202637, + "learning_rate": 2.469146666666667e-05, + "loss": 1.5039569091796876, + "step": 379800 + }, + { + "epoch": 50.653333333333336, + "grad_norm": 0.8480226397514343, + "learning_rate": 2.46848e-05, + "loss": 1.5057781982421874, + "step": 379900 + }, + { + "epoch": 50.666666666666664, + "grad_norm": 0.8565899133682251, + "learning_rate": 2.4678133333333334e-05, + "loss": 1.5090969848632811, + "step": 380000 + }, + { + "epoch": 50.68, + "grad_norm": 0.8642663359642029, + "learning_rate": 2.467146666666667e-05, + "loss": 1.5119166564941406, + "step": 380100 + }, + { + "epoch": 50.693333333333335, + "grad_norm": 0.8396902084350586, + "learning_rate": 2.46648e-05, + "loss": 1.5146353149414062, + "step": 380200 + }, + { + "epoch": 50.70666666666666, + "grad_norm": 0.8606100678443909, + "learning_rate": 2.4658133333333337e-05, + "loss": 1.5087774658203126, + "step": 380300 + }, + { + "epoch": 50.72, + "grad_norm": 0.8133344054222107, + "learning_rate": 2.4651466666666666e-05, + "loss": 1.5128636169433594, + "step": 380400 + }, + { + "epoch": 50.733333333333334, + "grad_norm": 0.8432591557502747, + "learning_rate": 2.46448e-05, + "loss": 1.5084796142578125, + "step": 380500 + }, + { + "epoch": 50.74666666666667, + "grad_norm": 0.8862467408180237, + "learning_rate": 2.46382e-05, + "loss": 1.5145498657226562, + "step": 380600 + }, + { + "epoch": 50.76, + "grad_norm": 0.883004903793335, + "learning_rate": 2.4631533333333333e-05, + "loss": 1.5110755920410157, + "step": 380700 + }, + { + "epoch": 50.77333333333333, + "grad_norm": 0.8901974558830261, + "learning_rate": 2.462486666666667e-05, + "loss": 1.5167329406738281, + "step": 380800 + }, + { + "epoch": 50.78666666666667, + "grad_norm": 0.841244637966156, + "learning_rate": 2.46182e-05, + "loss": 1.5136112976074219, + "step": 380900 + }, + { + "epoch": 50.8, + "grad_norm": 0.8438834547996521, + "learning_rate": 2.4611533333333333e-05, + "loss": 1.5152095031738282, + "step": 381000 + }, + { + "epoch": 50.81333333333333, + "grad_norm": 0.8658137321472168, + "learning_rate": 2.460486666666667e-05, + "loss": 1.513826904296875, + "step": 381100 + }, + { + "epoch": 50.82666666666667, + "grad_norm": 0.882071852684021, + "learning_rate": 2.45982e-05, + "loss": 1.5154730224609374, + "step": 381200 + }, + { + "epoch": 50.84, + "grad_norm": 0.8813706040382385, + "learning_rate": 2.4591533333333337e-05, + "loss": 1.51885498046875, + "step": 381300 + }, + { + "epoch": 50.85333333333333, + "grad_norm": 0.8508647084236145, + "learning_rate": 2.4584866666666666e-05, + "loss": 1.5158058166503907, + "step": 381400 + }, + { + "epoch": 50.86666666666667, + "grad_norm": 0.8502191305160522, + "learning_rate": 2.45782e-05, + "loss": 1.5165373229980468, + "step": 381500 + }, + { + "epoch": 50.88, + "grad_norm": 0.8656032085418701, + "learning_rate": 2.4571533333333337e-05, + "loss": 1.5202676391601562, + "step": 381600 + }, + { + "epoch": 50.89333333333333, + "grad_norm": 0.8280258774757385, + "learning_rate": 2.4564866666666666e-05, + "loss": 1.523727569580078, + "step": 381700 + }, + { + "epoch": 50.906666666666666, + "grad_norm": 0.8496196269989014, + "learning_rate": 2.45582e-05, + "loss": 1.5180378723144532, + "step": 381800 + }, + { + "epoch": 50.92, + "grad_norm": 0.9003440141677856, + "learning_rate": 2.4551533333333334e-05, + "loss": 1.52153564453125, + "step": 381900 + }, + { + "epoch": 50.93333333333333, + "grad_norm": 0.8458821177482605, + "learning_rate": 2.454486666666667e-05, + "loss": 1.5277166748046875, + "step": 382000 + }, + { + "epoch": 50.946666666666665, + "grad_norm": 0.8582217693328857, + "learning_rate": 2.45382e-05, + "loss": 1.5160935974121095, + "step": 382100 + }, + { + "epoch": 50.96, + "grad_norm": 0.8812438249588013, + "learning_rate": 2.4531533333333334e-05, + "loss": 1.5228970336914063, + "step": 382200 + }, + { + "epoch": 50.973333333333336, + "grad_norm": 0.8399114608764648, + "learning_rate": 2.452486666666667e-05, + "loss": 1.5246499633789063, + "step": 382300 + }, + { + "epoch": 50.986666666666665, + "grad_norm": 0.8204259276390076, + "learning_rate": 2.4518200000000002e-05, + "loss": 1.5253396606445313, + "step": 382400 + }, + { + "epoch": 51.0, + "grad_norm": 0.8467189073562622, + "learning_rate": 2.4511533333333334e-05, + "loss": 1.5258003234863282, + "step": 382500 + }, + { + "epoch": 51.013333333333335, + "grad_norm": 0.8255739212036133, + "learning_rate": 2.4504933333333337e-05, + "loss": 1.4497154235839844, + "step": 382600 + }, + { + "epoch": 51.026666666666664, + "grad_norm": 0.8379701375961304, + "learning_rate": 2.4498266666666665e-05, + "loss": 1.452757568359375, + "step": 382700 + }, + { + "epoch": 51.04, + "grad_norm": 0.8153045177459717, + "learning_rate": 2.44916e-05, + "loss": 1.4591259765625, + "step": 382800 + }, + { + "epoch": 51.053333333333335, + "grad_norm": 0.8011037111282349, + "learning_rate": 2.4484933333333333e-05, + "loss": 1.4575518798828124, + "step": 382900 + }, + { + "epoch": 51.06666666666667, + "grad_norm": 0.8315128087997437, + "learning_rate": 2.447826666666667e-05, + "loss": 1.4647442626953124, + "step": 383000 + }, + { + "epoch": 51.08, + "grad_norm": 0.8852720260620117, + "learning_rate": 2.44716e-05, + "loss": 1.459652099609375, + "step": 383100 + }, + { + "epoch": 51.093333333333334, + "grad_norm": 0.837066113948822, + "learning_rate": 2.4464933333333334e-05, + "loss": 1.4613265991210938, + "step": 383200 + }, + { + "epoch": 51.10666666666667, + "grad_norm": 0.8697075843811035, + "learning_rate": 2.445826666666667e-05, + "loss": 1.4583189392089844, + "step": 383300 + }, + { + "epoch": 51.12, + "grad_norm": 0.8551360368728638, + "learning_rate": 2.44516e-05, + "loss": 1.4582942199707032, + "step": 383400 + }, + { + "epoch": 51.13333333333333, + "grad_norm": 0.8545364141464233, + "learning_rate": 2.4444933333333334e-05, + "loss": 1.460870819091797, + "step": 383500 + }, + { + "epoch": 51.14666666666667, + "grad_norm": 0.8045480251312256, + "learning_rate": 2.4438266666666666e-05, + "loss": 1.4661735534667968, + "step": 383600 + }, + { + "epoch": 51.16, + "grad_norm": 0.8242552876472473, + "learning_rate": 2.44316e-05, + "loss": 1.4653382873535157, + "step": 383700 + }, + { + "epoch": 51.17333333333333, + "grad_norm": 0.8422017693519592, + "learning_rate": 2.4424933333333337e-05, + "loss": 1.467156982421875, + "step": 383800 + }, + { + "epoch": 51.18666666666667, + "grad_norm": 0.8462349772453308, + "learning_rate": 2.4418266666666666e-05, + "loss": 1.471797637939453, + "step": 383900 + }, + { + "epoch": 51.2, + "grad_norm": 0.8934951424598694, + "learning_rate": 2.4411600000000002e-05, + "loss": 1.4692425537109375, + "step": 384000 + }, + { + "epoch": 51.21333333333333, + "grad_norm": 0.8612936735153198, + "learning_rate": 2.4404933333333334e-05, + "loss": 1.4652291870117187, + "step": 384100 + }, + { + "epoch": 51.22666666666667, + "grad_norm": 0.8447757959365845, + "learning_rate": 2.4398266666666666e-05, + "loss": 1.4715693664550782, + "step": 384200 + }, + { + "epoch": 51.24, + "grad_norm": 0.8683099746704102, + "learning_rate": 2.4391600000000002e-05, + "loss": 1.4702517700195312, + "step": 384300 + }, + { + "epoch": 51.25333333333333, + "grad_norm": 0.789240837097168, + "learning_rate": 2.4384933333333334e-05, + "loss": 1.4706991577148438, + "step": 384400 + }, + { + "epoch": 51.266666666666666, + "grad_norm": 0.8664871454238892, + "learning_rate": 2.437826666666667e-05, + "loss": 1.4718405151367187, + "step": 384500 + }, + { + "epoch": 51.28, + "grad_norm": 0.8637537956237793, + "learning_rate": 2.437166666666667e-05, + "loss": 1.4716297912597656, + "step": 384600 + }, + { + "epoch": 51.29333333333334, + "grad_norm": 0.8115244507789612, + "learning_rate": 2.4365e-05, + "loss": 1.4719580078125, + "step": 384700 + }, + { + "epoch": 51.306666666666665, + "grad_norm": 0.8004962801933289, + "learning_rate": 2.4358333333333337e-05, + "loss": 1.4749884033203124, + "step": 384800 + }, + { + "epoch": 51.32, + "grad_norm": 0.8783427476882935, + "learning_rate": 2.4351666666666666e-05, + "loss": 1.4797103881835938, + "step": 384900 + }, + { + "epoch": 51.333333333333336, + "grad_norm": 0.8578570485115051, + "learning_rate": 2.4345e-05, + "loss": 1.4746359252929688, + "step": 385000 + }, + { + "epoch": 51.346666666666664, + "grad_norm": 0.8788546323776245, + "learning_rate": 2.4338333333333334e-05, + "loss": 1.4802169799804688, + "step": 385100 + }, + { + "epoch": 51.36, + "grad_norm": 0.8816238641738892, + "learning_rate": 2.4331666666666666e-05, + "loss": 1.47786865234375, + "step": 385200 + }, + { + "epoch": 51.373333333333335, + "grad_norm": 0.8610212206840515, + "learning_rate": 2.4325000000000002e-05, + "loss": 1.4802935791015626, + "step": 385300 + }, + { + "epoch": 51.38666666666666, + "grad_norm": 0.8929548263549805, + "learning_rate": 2.4318333333333334e-05, + "loss": 1.4820956420898437, + "step": 385400 + }, + { + "epoch": 51.4, + "grad_norm": 0.8102960586547852, + "learning_rate": 2.431166666666667e-05, + "loss": 1.4810777282714844, + "step": 385500 + }, + { + "epoch": 51.413333333333334, + "grad_norm": 0.8530375361442566, + "learning_rate": 2.4305e-05, + "loss": 1.4792242431640625, + "step": 385600 + }, + { + "epoch": 51.42666666666667, + "grad_norm": 0.8311903476715088, + "learning_rate": 2.4298333333333334e-05, + "loss": 1.4845094299316406, + "step": 385700 + }, + { + "epoch": 51.44, + "grad_norm": 0.8655042052268982, + "learning_rate": 2.4291666666666666e-05, + "loss": 1.482476043701172, + "step": 385800 + }, + { + "epoch": 51.45333333333333, + "grad_norm": 0.8922598361968994, + "learning_rate": 2.4285000000000002e-05, + "loss": 1.4829647827148438, + "step": 385900 + }, + { + "epoch": 51.46666666666667, + "grad_norm": 0.8447866439819336, + "learning_rate": 2.4278333333333334e-05, + "loss": 1.4828948974609375, + "step": 386000 + }, + { + "epoch": 51.48, + "grad_norm": 0.8586673736572266, + "learning_rate": 2.4271666666666667e-05, + "loss": 1.4850732421875, + "step": 386100 + }, + { + "epoch": 51.49333333333333, + "grad_norm": 0.8505076766014099, + "learning_rate": 2.4265000000000002e-05, + "loss": 1.4824075317382812, + "step": 386200 + }, + { + "epoch": 51.50666666666667, + "grad_norm": 0.8577302694320679, + "learning_rate": 2.4258333333333335e-05, + "loss": 1.4877815246582031, + "step": 386300 + }, + { + "epoch": 51.52, + "grad_norm": 0.8362126350402832, + "learning_rate": 2.4251666666666667e-05, + "loss": 1.4846498107910155, + "step": 386400 + }, + { + "epoch": 51.53333333333333, + "grad_norm": 0.8587775230407715, + "learning_rate": 2.4245000000000002e-05, + "loss": 1.484984130859375, + "step": 386500 + }, + { + "epoch": 51.54666666666667, + "grad_norm": 0.871204137802124, + "learning_rate": 2.4238333333333335e-05, + "loss": 1.4914971923828124, + "step": 386600 + }, + { + "epoch": 51.56, + "grad_norm": 0.8179042935371399, + "learning_rate": 2.4231733333333334e-05, + "loss": 1.4899531555175782, + "step": 386700 + }, + { + "epoch": 51.57333333333333, + "grad_norm": 0.8490532040596008, + "learning_rate": 2.422506666666667e-05, + "loss": 1.4912181091308594, + "step": 386800 + }, + { + "epoch": 51.586666666666666, + "grad_norm": 0.8682654500007629, + "learning_rate": 2.4218400000000002e-05, + "loss": 1.4918653869628906, + "step": 386900 + }, + { + "epoch": 51.6, + "grad_norm": 0.890491247177124, + "learning_rate": 2.4211733333333334e-05, + "loss": 1.4917636108398438, + "step": 387000 + }, + { + "epoch": 51.61333333333333, + "grad_norm": 0.8665891885757446, + "learning_rate": 2.4205066666666666e-05, + "loss": 1.4941488647460937, + "step": 387100 + }, + { + "epoch": 51.626666666666665, + "grad_norm": 0.8592315316200256, + "learning_rate": 2.4198400000000002e-05, + "loss": 1.492812042236328, + "step": 387200 + }, + { + "epoch": 51.64, + "grad_norm": 0.8546895980834961, + "learning_rate": 2.4191733333333334e-05, + "loss": 1.4904875183105468, + "step": 387300 + }, + { + "epoch": 51.653333333333336, + "grad_norm": 0.8656253814697266, + "learning_rate": 2.4185066666666666e-05, + "loss": 1.4929344177246093, + "step": 387400 + }, + { + "epoch": 51.666666666666664, + "grad_norm": 0.8968192934989929, + "learning_rate": 2.4178400000000002e-05, + "loss": 1.4941493225097657, + "step": 387500 + }, + { + "epoch": 51.68, + "grad_norm": 0.8238973617553711, + "learning_rate": 2.4171733333333334e-05, + "loss": 1.4932928466796875, + "step": 387600 + }, + { + "epoch": 51.693333333333335, + "grad_norm": 0.8756453394889832, + "learning_rate": 2.416506666666667e-05, + "loss": 1.5003330993652344, + "step": 387700 + }, + { + "epoch": 51.70666666666666, + "grad_norm": 0.8613998293876648, + "learning_rate": 2.41584e-05, + "loss": 1.499681396484375, + "step": 387800 + }, + { + "epoch": 51.72, + "grad_norm": 0.8716132640838623, + "learning_rate": 2.4151733333333335e-05, + "loss": 1.4972032165527345, + "step": 387900 + }, + { + "epoch": 51.733333333333334, + "grad_norm": 0.8987093567848206, + "learning_rate": 2.414506666666667e-05, + "loss": 1.5022872924804687, + "step": 388000 + }, + { + "epoch": 51.74666666666667, + "grad_norm": 0.8321843147277832, + "learning_rate": 2.41384e-05, + "loss": 1.4971646118164061, + "step": 388100 + }, + { + "epoch": 51.76, + "grad_norm": 0.8500959277153015, + "learning_rate": 2.4131733333333335e-05, + "loss": 1.5017050170898438, + "step": 388200 + }, + { + "epoch": 51.77333333333333, + "grad_norm": 0.8492921590805054, + "learning_rate": 2.4125066666666667e-05, + "loss": 1.4948918151855468, + "step": 388300 + }, + { + "epoch": 51.78666666666667, + "grad_norm": 0.8338704705238342, + "learning_rate": 2.4118400000000003e-05, + "loss": 1.5020379638671875, + "step": 388400 + }, + { + "epoch": 51.8, + "grad_norm": 0.8522675037384033, + "learning_rate": 2.4111733333333335e-05, + "loss": 1.5005595397949218, + "step": 388500 + }, + { + "epoch": 51.81333333333333, + "grad_norm": 0.8284652829170227, + "learning_rate": 2.4105066666666667e-05, + "loss": 1.5022247314453125, + "step": 388600 + }, + { + "epoch": 51.82666666666667, + "grad_norm": 0.862209141254425, + "learning_rate": 2.409846666666667e-05, + "loss": 1.504408416748047, + "step": 388700 + }, + { + "epoch": 51.84, + "grad_norm": 0.8681904077529907, + "learning_rate": 2.4091800000000002e-05, + "loss": 1.5046144104003907, + "step": 388800 + }, + { + "epoch": 51.85333333333333, + "grad_norm": 0.8120859861373901, + "learning_rate": 2.4085133333333334e-05, + "loss": 1.5099690246582032, + "step": 388900 + }, + { + "epoch": 51.86666666666667, + "grad_norm": 0.8199965357780457, + "learning_rate": 2.407846666666667e-05, + "loss": 1.5086412048339843, + "step": 389000 + }, + { + "epoch": 51.88, + "grad_norm": 0.8781035542488098, + "learning_rate": 2.40718e-05, + "loss": 1.5068019104003907, + "step": 389100 + }, + { + "epoch": 51.89333333333333, + "grad_norm": 0.8746353983879089, + "learning_rate": 2.4065133333333334e-05, + "loss": 1.5051779174804687, + "step": 389200 + }, + { + "epoch": 51.906666666666666, + "grad_norm": 0.8584237098693848, + "learning_rate": 2.4058466666666667e-05, + "loss": 1.5083631896972656, + "step": 389300 + }, + { + "epoch": 51.92, + "grad_norm": 0.9089388251304626, + "learning_rate": 2.4051800000000002e-05, + "loss": 1.5061935424804687, + "step": 389400 + }, + { + "epoch": 51.93333333333333, + "grad_norm": 0.8394655585289001, + "learning_rate": 2.4045133333333335e-05, + "loss": 1.509464569091797, + "step": 389500 + }, + { + "epoch": 51.946666666666665, + "grad_norm": 0.8279618620872498, + "learning_rate": 2.4038466666666667e-05, + "loss": 1.5109159851074219, + "step": 389600 + }, + { + "epoch": 51.96, + "grad_norm": 0.9038397669792175, + "learning_rate": 2.4031800000000003e-05, + "loss": 1.510810089111328, + "step": 389700 + }, + { + "epoch": 51.973333333333336, + "grad_norm": 0.899217963218689, + "learning_rate": 2.4025133333333335e-05, + "loss": 1.5102980041503906, + "step": 389800 + }, + { + "epoch": 51.986666666666665, + "grad_norm": 0.905498743057251, + "learning_rate": 2.4018466666666667e-05, + "loss": 1.510074920654297, + "step": 389900 + }, + { + "epoch": 52.0, + "grad_norm": 0.8077598214149475, + "learning_rate": 2.40118e-05, + "loss": 1.5141552734375, + "step": 390000 + }, + { + "epoch": 52.013333333333335, + "grad_norm": 0.8236868381500244, + "learning_rate": 2.4005133333333335e-05, + "loss": 1.444603729248047, + "step": 390100 + }, + { + "epoch": 52.026666666666664, + "grad_norm": 0.8070313930511475, + "learning_rate": 2.399846666666667e-05, + "loss": 1.4379257202148437, + "step": 390200 + }, + { + "epoch": 52.04, + "grad_norm": 0.7745979428291321, + "learning_rate": 2.39918e-05, + "loss": 1.4440399169921876, + "step": 390300 + }, + { + "epoch": 52.053333333333335, + "grad_norm": 0.8141463398933411, + "learning_rate": 2.3985133333333335e-05, + "loss": 1.4421783447265626, + "step": 390400 + }, + { + "epoch": 52.06666666666667, + "grad_norm": 0.8253259062767029, + "learning_rate": 2.3978466666666667e-05, + "loss": 1.4468896484375, + "step": 390500 + }, + { + "epoch": 52.08, + "grad_norm": 0.8300577402114868, + "learning_rate": 2.39718e-05, + "loss": 1.4401560974121095, + "step": 390600 + }, + { + "epoch": 52.093333333333334, + "grad_norm": 0.854324996471405, + "learning_rate": 2.3965200000000002e-05, + "loss": 1.4524754333496093, + "step": 390700 + }, + { + "epoch": 52.10666666666667, + "grad_norm": 0.8196046352386475, + "learning_rate": 2.3958533333333334e-05, + "loss": 1.4522889709472657, + "step": 390800 + }, + { + "epoch": 52.12, + "grad_norm": 0.8217240571975708, + "learning_rate": 2.3951866666666667e-05, + "loss": 1.4478153991699219, + "step": 390900 + }, + { + "epoch": 52.13333333333333, + "grad_norm": 0.8146061301231384, + "learning_rate": 2.3945200000000002e-05, + "loss": 1.450179443359375, + "step": 391000 + }, + { + "epoch": 52.14666666666667, + "grad_norm": 0.8496772646903992, + "learning_rate": 2.3938533333333335e-05, + "loss": 1.448777618408203, + "step": 391100 + }, + { + "epoch": 52.16, + "grad_norm": 0.8619560599327087, + "learning_rate": 2.393186666666667e-05, + "loss": 1.4484617614746094, + "step": 391200 + }, + { + "epoch": 52.17333333333333, + "grad_norm": 0.8483819365501404, + "learning_rate": 2.39252e-05, + "loss": 1.451850128173828, + "step": 391300 + }, + { + "epoch": 52.18666666666667, + "grad_norm": 0.8521955609321594, + "learning_rate": 2.3918533333333335e-05, + "loss": 1.459192657470703, + "step": 391400 + }, + { + "epoch": 52.2, + "grad_norm": 0.8739776611328125, + "learning_rate": 2.3911866666666667e-05, + "loss": 1.4575103759765624, + "step": 391500 + }, + { + "epoch": 52.21333333333333, + "grad_norm": 0.8248653411865234, + "learning_rate": 2.39052e-05, + "loss": 1.458475341796875, + "step": 391600 + }, + { + "epoch": 52.22666666666667, + "grad_norm": 0.8667312264442444, + "learning_rate": 2.3898533333333335e-05, + "loss": 1.4586300659179687, + "step": 391700 + }, + { + "epoch": 52.24, + "grad_norm": 0.8715050220489502, + "learning_rate": 2.3891866666666667e-05, + "loss": 1.4606393432617188, + "step": 391800 + }, + { + "epoch": 52.25333333333333, + "grad_norm": 0.8274866342544556, + "learning_rate": 2.3885200000000003e-05, + "loss": 1.4589753723144532, + "step": 391900 + }, + { + "epoch": 52.266666666666666, + "grad_norm": 0.8984260559082031, + "learning_rate": 2.3878533333333332e-05, + "loss": 1.4624786376953125, + "step": 392000 + }, + { + "epoch": 52.28, + "grad_norm": 0.8441860675811768, + "learning_rate": 2.3871866666666668e-05, + "loss": 1.4648696899414062, + "step": 392100 + }, + { + "epoch": 52.29333333333334, + "grad_norm": 0.8562932014465332, + "learning_rate": 2.38652e-05, + "loss": 1.4625413513183594, + "step": 392200 + }, + { + "epoch": 52.306666666666665, + "grad_norm": 0.8100069165229797, + "learning_rate": 2.3858533333333335e-05, + "loss": 1.4674345397949218, + "step": 392300 + }, + { + "epoch": 52.32, + "grad_norm": 0.879694938659668, + "learning_rate": 2.3851866666666668e-05, + "loss": 1.462593536376953, + "step": 392400 + }, + { + "epoch": 52.333333333333336, + "grad_norm": 0.8324185609817505, + "learning_rate": 2.38452e-05, + "loss": 1.4686509704589843, + "step": 392500 + }, + { + "epoch": 52.346666666666664, + "grad_norm": 0.8371502161026001, + "learning_rate": 2.3838533333333336e-05, + "loss": 1.468300323486328, + "step": 392600 + }, + { + "epoch": 52.36, + "grad_norm": 0.8931401968002319, + "learning_rate": 2.3831866666666668e-05, + "loss": 1.4668818664550782, + "step": 392700 + }, + { + "epoch": 52.373333333333335, + "grad_norm": 0.8364928960800171, + "learning_rate": 2.3825266666666667e-05, + "loss": 1.4689984130859375, + "step": 392800 + }, + { + "epoch": 52.38666666666666, + "grad_norm": 0.861511766910553, + "learning_rate": 2.3818600000000003e-05, + "loss": 1.4642536926269532, + "step": 392900 + }, + { + "epoch": 52.4, + "grad_norm": 0.8501995801925659, + "learning_rate": 2.3811933333333335e-05, + "loss": 1.4702130126953126, + "step": 393000 + }, + { + "epoch": 52.413333333333334, + "grad_norm": 0.8685861229896545, + "learning_rate": 2.3805266666666667e-05, + "loss": 1.472560577392578, + "step": 393100 + }, + { + "epoch": 52.42666666666667, + "grad_norm": 0.8422084450721741, + "learning_rate": 2.3798600000000003e-05, + "loss": 1.4753160095214843, + "step": 393200 + }, + { + "epoch": 52.44, + "grad_norm": 0.8546521663665771, + "learning_rate": 2.3791933333333335e-05, + "loss": 1.473077392578125, + "step": 393300 + }, + { + "epoch": 52.45333333333333, + "grad_norm": 0.8383651375770569, + "learning_rate": 2.3785266666666667e-05, + "loss": 1.468947296142578, + "step": 393400 + }, + { + "epoch": 52.46666666666667, + "grad_norm": 0.8365948796272278, + "learning_rate": 2.37786e-05, + "loss": 1.4694491577148439, + "step": 393500 + }, + { + "epoch": 52.48, + "grad_norm": 0.8776941299438477, + "learning_rate": 2.3771933333333335e-05, + "loss": 1.4765846252441406, + "step": 393600 + }, + { + "epoch": 52.49333333333333, + "grad_norm": 0.8972512483596802, + "learning_rate": 2.3765266666666668e-05, + "loss": 1.4798658752441407, + "step": 393700 + }, + { + "epoch": 52.50666666666667, + "grad_norm": 0.87769615650177, + "learning_rate": 2.37586e-05, + "loss": 1.4698507690429687, + "step": 393800 + }, + { + "epoch": 52.52, + "grad_norm": 0.8386378884315491, + "learning_rate": 2.3751933333333335e-05, + "loss": 1.4793057250976562, + "step": 393900 + }, + { + "epoch": 52.53333333333333, + "grad_norm": 0.85838383436203, + "learning_rate": 2.3745266666666668e-05, + "loss": 1.4752388000488281, + "step": 394000 + }, + { + "epoch": 52.54666666666667, + "grad_norm": 0.8824598789215088, + "learning_rate": 2.3738600000000003e-05, + "loss": 1.4773374938964843, + "step": 394100 + }, + { + "epoch": 52.56, + "grad_norm": 0.8590186834335327, + "learning_rate": 2.3731933333333332e-05, + "loss": 1.4786466979980468, + "step": 394200 + }, + { + "epoch": 52.57333333333333, + "grad_norm": 0.8705313801765442, + "learning_rate": 2.3725266666666668e-05, + "loss": 1.4816523742675782, + "step": 394300 + }, + { + "epoch": 52.586666666666666, + "grad_norm": 0.865382194519043, + "learning_rate": 2.3718600000000004e-05, + "loss": 1.478979034423828, + "step": 394400 + }, + { + "epoch": 52.6, + "grad_norm": 0.8217282891273499, + "learning_rate": 2.3711933333333332e-05, + "loss": 1.4787644958496093, + "step": 394500 + }, + { + "epoch": 52.61333333333333, + "grad_norm": 0.8592541217803955, + "learning_rate": 2.3705266666666668e-05, + "loss": 1.482845458984375, + "step": 394600 + }, + { + "epoch": 52.626666666666665, + "grad_norm": 0.8390605449676514, + "learning_rate": 2.36986e-05, + "loss": 1.4851654052734375, + "step": 394700 + }, + { + "epoch": 52.64, + "grad_norm": 0.9070495963096619, + "learning_rate": 2.3692e-05, + "loss": 1.4781282043457031, + "step": 394800 + }, + { + "epoch": 52.653333333333336, + "grad_norm": 0.8450265526771545, + "learning_rate": 2.3685333333333335e-05, + "loss": 1.483128204345703, + "step": 394900 + }, + { + "epoch": 52.666666666666664, + "grad_norm": 0.8272682428359985, + "learning_rate": 2.3678666666666667e-05, + "loss": 1.484342041015625, + "step": 395000 + }, + { + "epoch": 52.68, + "grad_norm": 0.9051398634910583, + "learning_rate": 2.3672000000000003e-05, + "loss": 1.4861419677734375, + "step": 395100 + }, + { + "epoch": 52.693333333333335, + "grad_norm": 0.8721572160720825, + "learning_rate": 2.3665333333333335e-05, + "loss": 1.4825254821777343, + "step": 395200 + }, + { + "epoch": 52.70666666666666, + "grad_norm": 0.8346722722053528, + "learning_rate": 2.3658666666666668e-05, + "loss": 1.486527099609375, + "step": 395300 + }, + { + "epoch": 52.72, + "grad_norm": 0.8343473076820374, + "learning_rate": 2.3652000000000003e-05, + "loss": 1.485967254638672, + "step": 395400 + }, + { + "epoch": 52.733333333333334, + "grad_norm": 0.849467396736145, + "learning_rate": 2.3645333333333332e-05, + "loss": 1.485404510498047, + "step": 395500 + }, + { + "epoch": 52.74666666666667, + "grad_norm": 0.8700857162475586, + "learning_rate": 2.3638666666666668e-05, + "loss": 1.4913349914550782, + "step": 395600 + }, + { + "epoch": 52.76, + "grad_norm": 0.9438149929046631, + "learning_rate": 2.3632e-05, + "loss": 1.4887771606445312, + "step": 395700 + }, + { + "epoch": 52.77333333333333, + "grad_norm": 0.8537826538085938, + "learning_rate": 2.3625333333333336e-05, + "loss": 1.4901506042480468, + "step": 395800 + }, + { + "epoch": 52.78666666666667, + "grad_norm": 0.8943189382553101, + "learning_rate": 2.3618666666666668e-05, + "loss": 1.4895608520507813, + "step": 395900 + }, + { + "epoch": 52.8, + "grad_norm": 0.8864601254463196, + "learning_rate": 2.3612e-05, + "loss": 1.4893939208984375, + "step": 396000 + }, + { + "epoch": 52.81333333333333, + "grad_norm": 0.8941498398780823, + "learning_rate": 2.3605333333333336e-05, + "loss": 1.4906712341308594, + "step": 396100 + }, + { + "epoch": 52.82666666666667, + "grad_norm": 0.8816115260124207, + "learning_rate": 2.3598666666666668e-05, + "loss": 1.4948838806152345, + "step": 396200 + }, + { + "epoch": 52.84, + "grad_norm": 0.8456717133522034, + "learning_rate": 2.3592e-05, + "loss": 1.4868934631347657, + "step": 396300 + }, + { + "epoch": 52.85333333333333, + "grad_norm": 0.8491533994674683, + "learning_rate": 2.3585333333333333e-05, + "loss": 1.4916058349609376, + "step": 396400 + }, + { + "epoch": 52.86666666666667, + "grad_norm": 0.8934788107872009, + "learning_rate": 2.357866666666667e-05, + "loss": 1.4947138977050782, + "step": 396500 + }, + { + "epoch": 52.88, + "grad_norm": 0.8404362797737122, + "learning_rate": 2.3572000000000004e-05, + "loss": 1.4902780151367188, + "step": 396600 + }, + { + "epoch": 52.89333333333333, + "grad_norm": 0.8693411946296692, + "learning_rate": 2.3565333333333333e-05, + "loss": 1.493137969970703, + "step": 396700 + }, + { + "epoch": 52.906666666666666, + "grad_norm": 0.8568634986877441, + "learning_rate": 2.3558733333333335e-05, + "loss": 1.4958587646484376, + "step": 396800 + }, + { + "epoch": 52.92, + "grad_norm": 0.8633151054382324, + "learning_rate": 2.3552066666666668e-05, + "loss": 1.4957908630371093, + "step": 396900 + }, + { + "epoch": 52.93333333333333, + "grad_norm": 0.8764383792877197, + "learning_rate": 2.35454e-05, + "loss": 1.498976287841797, + "step": 397000 + }, + { + "epoch": 52.946666666666665, + "grad_norm": 0.8593562841415405, + "learning_rate": 2.3538733333333336e-05, + "loss": 1.496341552734375, + "step": 397100 + }, + { + "epoch": 52.96, + "grad_norm": 0.864981472492218, + "learning_rate": 2.3532066666666668e-05, + "loss": 1.500501708984375, + "step": 397200 + }, + { + "epoch": 52.973333333333336, + "grad_norm": 0.869564950466156, + "learning_rate": 2.35254e-05, + "loss": 1.4988710021972655, + "step": 397300 + }, + { + "epoch": 52.986666666666665, + "grad_norm": 0.8883520364761353, + "learning_rate": 2.3518733333333336e-05, + "loss": 1.5024085998535157, + "step": 397400 + }, + { + "epoch": 53.0, + "grad_norm": 0.8562717437744141, + "learning_rate": 2.3512066666666668e-05, + "loss": 1.5046351623535157, + "step": 397500 + }, + { + "epoch": 53.013333333333335, + "grad_norm": 0.805515706539154, + "learning_rate": 2.3505400000000004e-05, + "loss": 1.4346591186523439, + "step": 397600 + }, + { + "epoch": 53.026666666666664, + "grad_norm": 0.80479896068573, + "learning_rate": 2.3498733333333333e-05, + "loss": 1.4268614196777343, + "step": 397700 + }, + { + "epoch": 53.04, + "grad_norm": 0.8560926914215088, + "learning_rate": 2.3492066666666668e-05, + "loss": 1.4327865600585938, + "step": 397800 + }, + { + "epoch": 53.053333333333335, + "grad_norm": 0.8021524548530579, + "learning_rate": 2.34854e-05, + "loss": 1.4293780517578125, + "step": 397900 + }, + { + "epoch": 53.06666666666667, + "grad_norm": 0.80971360206604, + "learning_rate": 2.3478733333333333e-05, + "loss": 1.4374539184570312, + "step": 398000 + }, + { + "epoch": 53.08, + "grad_norm": 0.838452935218811, + "learning_rate": 2.347206666666667e-05, + "loss": 1.4421630859375, + "step": 398100 + }, + { + "epoch": 53.093333333333334, + "grad_norm": 0.8354381322860718, + "learning_rate": 2.34654e-05, + "loss": 1.43285400390625, + "step": 398200 + }, + { + "epoch": 53.10666666666667, + "grad_norm": 0.8726691007614136, + "learning_rate": 2.3458733333333336e-05, + "loss": 1.4365280151367188, + "step": 398300 + }, + { + "epoch": 53.12, + "grad_norm": 0.8390151262283325, + "learning_rate": 2.3452066666666665e-05, + "loss": 1.4363105773925782, + "step": 398400 + }, + { + "epoch": 53.13333333333333, + "grad_norm": 0.8505403995513916, + "learning_rate": 2.34454e-05, + "loss": 1.4446278381347657, + "step": 398500 + }, + { + "epoch": 53.14666666666667, + "grad_norm": 0.8463150262832642, + "learning_rate": 2.3438733333333333e-05, + "loss": 1.4427076721191405, + "step": 398600 + }, + { + "epoch": 53.16, + "grad_norm": 0.8394322991371155, + "learning_rate": 2.343206666666667e-05, + "loss": 1.4383731079101563, + "step": 398700 + }, + { + "epoch": 53.17333333333333, + "grad_norm": 0.8394029140472412, + "learning_rate": 2.3425466666666668e-05, + "loss": 1.443642578125, + "step": 398800 + }, + { + "epoch": 53.18666666666667, + "grad_norm": 0.8809831738471985, + "learning_rate": 2.3418800000000004e-05, + "loss": 1.4458544921875, + "step": 398900 + }, + { + "epoch": 53.2, + "grad_norm": 0.9032037258148193, + "learning_rate": 2.3412133333333332e-05, + "loss": 1.4469097900390624, + "step": 399000 + }, + { + "epoch": 53.21333333333333, + "grad_norm": 0.7470035552978516, + "learning_rate": 2.3405466666666668e-05, + "loss": 1.4481082153320313, + "step": 399100 + }, + { + "epoch": 53.22666666666667, + "grad_norm": 0.8141319155693054, + "learning_rate": 2.33988e-05, + "loss": 1.4453059387207032, + "step": 399200 + }, + { + "epoch": 53.24, + "grad_norm": 0.8504648804664612, + "learning_rate": 2.3392133333333336e-05, + "loss": 1.4482171630859375, + "step": 399300 + }, + { + "epoch": 53.25333333333333, + "grad_norm": 0.8674839735031128, + "learning_rate": 2.3385466666666668e-05, + "loss": 1.4432850646972657, + "step": 399400 + }, + { + "epoch": 53.266666666666666, + "grad_norm": 0.8443961143493652, + "learning_rate": 2.33788e-05, + "loss": 1.4486787414550781, + "step": 399500 + }, + { + "epoch": 53.28, + "grad_norm": 0.8612597584724426, + "learning_rate": 2.3372133333333336e-05, + "loss": 1.4492063903808594, + "step": 399600 + }, + { + "epoch": 53.29333333333334, + "grad_norm": 0.8739829659461975, + "learning_rate": 2.336546666666667e-05, + "loss": 1.4499366760253907, + "step": 399700 + }, + { + "epoch": 53.306666666666665, + "grad_norm": 0.8640965819358826, + "learning_rate": 2.33588e-05, + "loss": 1.454102783203125, + "step": 399800 + }, + { + "epoch": 53.32, + "grad_norm": 0.830761730670929, + "learning_rate": 2.3352133333333333e-05, + "loss": 1.4512599182128907, + "step": 399900 + }, + { + "epoch": 53.333333333333336, + "grad_norm": 0.8445847034454346, + "learning_rate": 2.334546666666667e-05, + "loss": 1.451502685546875, + "step": 400000 + }, + { + "epoch": 53.346666666666664, + "grad_norm": 0.8434433937072754, + "learning_rate": 2.33388e-05, + "loss": 1.4518226623535155, + "step": 400100 + }, + { + "epoch": 53.36, + "grad_norm": 0.8982335925102234, + "learning_rate": 2.3332133333333333e-05, + "loss": 1.4535255432128906, + "step": 400200 + }, + { + "epoch": 53.373333333333335, + "grad_norm": 0.8745660781860352, + "learning_rate": 2.332546666666667e-05, + "loss": 1.4575784301757813, + "step": 400300 + }, + { + "epoch": 53.38666666666666, + "grad_norm": 0.8744916319847107, + "learning_rate": 2.33188e-05, + "loss": 1.4541175842285157, + "step": 400400 + }, + { + "epoch": 53.4, + "grad_norm": 0.8759534955024719, + "learning_rate": 2.3312133333333337e-05, + "loss": 1.4521678161621094, + "step": 400500 + }, + { + "epoch": 53.413333333333334, + "grad_norm": 0.7871354222297668, + "learning_rate": 2.3305466666666666e-05, + "loss": 1.4580287170410156, + "step": 400600 + }, + { + "epoch": 53.42666666666667, + "grad_norm": 0.8808795809745789, + "learning_rate": 2.32988e-05, + "loss": 1.4611434936523438, + "step": 400700 + }, + { + "epoch": 53.44, + "grad_norm": 0.8959735035896301, + "learning_rate": 2.32922e-05, + "loss": 1.459822998046875, + "step": 400800 + }, + { + "epoch": 53.45333333333333, + "grad_norm": 0.8618682622909546, + "learning_rate": 2.3285533333333333e-05, + "loss": 1.4601959228515624, + "step": 400900 + }, + { + "epoch": 53.46666666666667, + "grad_norm": 0.8385915160179138, + "learning_rate": 2.3278866666666668e-05, + "loss": 1.464827423095703, + "step": 401000 + }, + { + "epoch": 53.48, + "grad_norm": 0.8934867978096008, + "learning_rate": 2.3272200000000004e-05, + "loss": 1.4627699279785156, + "step": 401100 + }, + { + "epoch": 53.49333333333333, + "grad_norm": 0.846880316734314, + "learning_rate": 2.3265533333333333e-05, + "loss": 1.4640000915527345, + "step": 401200 + }, + { + "epoch": 53.50666666666667, + "grad_norm": 0.8630863428115845, + "learning_rate": 2.325886666666667e-05, + "loss": 1.460301971435547, + "step": 401300 + }, + { + "epoch": 53.52, + "grad_norm": 0.8449327945709229, + "learning_rate": 2.32522e-05, + "loss": 1.4675813293457032, + "step": 401400 + }, + { + "epoch": 53.53333333333333, + "grad_norm": 0.875411331653595, + "learning_rate": 2.3245533333333336e-05, + "loss": 1.463404541015625, + "step": 401500 + }, + { + "epoch": 53.54666666666667, + "grad_norm": 0.8588878512382507, + "learning_rate": 2.323886666666667e-05, + "loss": 1.4630206298828126, + "step": 401600 + }, + { + "epoch": 53.56, + "grad_norm": 0.8418893814086914, + "learning_rate": 2.32322e-05, + "loss": 1.4669151306152344, + "step": 401700 + }, + { + "epoch": 53.57333333333333, + "grad_norm": 0.8740350604057312, + "learning_rate": 2.3225533333333337e-05, + "loss": 1.4691087341308593, + "step": 401800 + }, + { + "epoch": 53.586666666666666, + "grad_norm": 0.8648200035095215, + "learning_rate": 2.3218866666666665e-05, + "loss": 1.4714599609375, + "step": 401900 + }, + { + "epoch": 53.6, + "grad_norm": 0.8941342830657959, + "learning_rate": 2.32122e-05, + "loss": 1.4738253784179687, + "step": 402000 + }, + { + "epoch": 53.61333333333333, + "grad_norm": 0.8258972764015198, + "learning_rate": 2.3205533333333333e-05, + "loss": 1.4741175842285157, + "step": 402100 + }, + { + "epoch": 53.626666666666665, + "grad_norm": 0.8815823793411255, + "learning_rate": 2.319886666666667e-05, + "loss": 1.4661442565917968, + "step": 402200 + }, + { + "epoch": 53.64, + "grad_norm": 0.8187025785446167, + "learning_rate": 2.31922e-05, + "loss": 1.4684117126464844, + "step": 402300 + }, + { + "epoch": 53.653333333333336, + "grad_norm": 0.8981267809867859, + "learning_rate": 2.3185533333333334e-05, + "loss": 1.4723139953613282, + "step": 402400 + }, + { + "epoch": 53.666666666666664, + "grad_norm": 0.8515080213546753, + "learning_rate": 2.317886666666667e-05, + "loss": 1.47446044921875, + "step": 402500 + }, + { + "epoch": 53.68, + "grad_norm": 0.8341559171676636, + "learning_rate": 2.31722e-05, + "loss": 1.4706192016601562, + "step": 402600 + }, + { + "epoch": 53.693333333333335, + "grad_norm": 0.8234730362892151, + "learning_rate": 2.3165533333333334e-05, + "loss": 1.4750930786132812, + "step": 402700 + }, + { + "epoch": 53.70666666666666, + "grad_norm": 0.854006290435791, + "learning_rate": 2.3158866666666666e-05, + "loss": 1.4691725158691407, + "step": 402800 + }, + { + "epoch": 53.72, + "grad_norm": 0.871201753616333, + "learning_rate": 2.3152266666666665e-05, + "loss": 1.4737733459472657, + "step": 402900 + }, + { + "epoch": 53.733333333333334, + "grad_norm": 0.8627591729164124, + "learning_rate": 2.31456e-05, + "loss": 1.4719656372070313, + "step": 403000 + }, + { + "epoch": 53.74666666666667, + "grad_norm": 0.937736988067627, + "learning_rate": 2.3138933333333333e-05, + "loss": 1.4713555908203124, + "step": 403100 + }, + { + "epoch": 53.76, + "grad_norm": 0.8441616892814636, + "learning_rate": 2.313226666666667e-05, + "loss": 1.4788174438476562, + "step": 403200 + }, + { + "epoch": 53.77333333333333, + "grad_norm": 0.8520199060440063, + "learning_rate": 2.31256e-05, + "loss": 1.4727986145019532, + "step": 403300 + }, + { + "epoch": 53.78666666666667, + "grad_norm": 0.9087309837341309, + "learning_rate": 2.3118933333333333e-05, + "loss": 1.4800141906738282, + "step": 403400 + }, + { + "epoch": 53.8, + "grad_norm": 0.8902503252029419, + "learning_rate": 2.311226666666667e-05, + "loss": 1.4767436218261718, + "step": 403500 + }, + { + "epoch": 53.81333333333333, + "grad_norm": 0.8224707245826721, + "learning_rate": 2.31056e-05, + "loss": 1.4753680419921875, + "step": 403600 + }, + { + "epoch": 53.82666666666667, + "grad_norm": 0.8903453946113586, + "learning_rate": 2.3098933333333333e-05, + "loss": 1.478042449951172, + "step": 403700 + }, + { + "epoch": 53.84, + "grad_norm": 0.8610987663269043, + "learning_rate": 2.309226666666667e-05, + "loss": 1.4786669921875, + "step": 403800 + }, + { + "epoch": 53.85333333333333, + "grad_norm": 0.8663672804832458, + "learning_rate": 2.30856e-05, + "loss": 1.4798565673828126, + "step": 403900 + }, + { + "epoch": 53.86666666666667, + "grad_norm": 0.8928523659706116, + "learning_rate": 2.3078933333333337e-05, + "loss": 1.476539306640625, + "step": 404000 + }, + { + "epoch": 53.88, + "grad_norm": 0.8405497670173645, + "learning_rate": 2.3072266666666666e-05, + "loss": 1.4814393615722656, + "step": 404100 + }, + { + "epoch": 53.89333333333333, + "grad_norm": 0.9027117490768433, + "learning_rate": 2.30656e-05, + "loss": 1.48431884765625, + "step": 404200 + }, + { + "epoch": 53.906666666666666, + "grad_norm": 0.8880442380905151, + "learning_rate": 2.3058933333333334e-05, + "loss": 1.4846881103515626, + "step": 404300 + }, + { + "epoch": 53.92, + "grad_norm": 0.8744670152664185, + "learning_rate": 2.3052266666666666e-05, + "loss": 1.48605224609375, + "step": 404400 + }, + { + "epoch": 53.93333333333333, + "grad_norm": 0.9039588570594788, + "learning_rate": 2.3045600000000002e-05, + "loss": 1.483401336669922, + "step": 404500 + }, + { + "epoch": 53.946666666666665, + "grad_norm": 0.8488764762878418, + "learning_rate": 2.3038933333333334e-05, + "loss": 1.4856008911132812, + "step": 404600 + }, + { + "epoch": 53.96, + "grad_norm": 0.8746914267539978, + "learning_rate": 2.303226666666667e-05, + "loss": 1.4808277893066406, + "step": 404700 + }, + { + "epoch": 53.973333333333336, + "grad_norm": 0.859261691570282, + "learning_rate": 2.30256e-05, + "loss": 1.481783447265625, + "step": 404800 + }, + { + "epoch": 53.986666666666665, + "grad_norm": 0.8789514899253845, + "learning_rate": 2.3019e-05, + "loss": 1.4835377502441407, + "step": 404900 + }, + { + "epoch": 54.0, + "grad_norm": 0.850490927696228, + "learning_rate": 2.3012333333333337e-05, + "loss": 1.4867596435546875, + "step": 405000 + }, + { + "epoch": 54.013333333333335, + "grad_norm": 0.8333851099014282, + "learning_rate": 2.3005666666666666e-05, + "loss": 1.4200978088378906, + "step": 405100 + }, + { + "epoch": 54.026666666666664, + "grad_norm": 0.8395662903785706, + "learning_rate": 2.2999e-05, + "loss": 1.4196142578125, + "step": 405200 + }, + { + "epoch": 54.04, + "grad_norm": 0.8212039470672607, + "learning_rate": 2.2992333333333333e-05, + "loss": 1.425306854248047, + "step": 405300 + }, + { + "epoch": 54.053333333333335, + "grad_norm": 0.7914276123046875, + "learning_rate": 2.2985666666666666e-05, + "loss": 1.4204986572265625, + "step": 405400 + }, + { + "epoch": 54.06666666666667, + "grad_norm": 0.8050218820571899, + "learning_rate": 2.2979e-05, + "loss": 1.4295758056640624, + "step": 405500 + }, + { + "epoch": 54.08, + "grad_norm": 0.8524725437164307, + "learning_rate": 2.2972333333333334e-05, + "loss": 1.4244723510742188, + "step": 405600 + }, + { + "epoch": 54.093333333333334, + "grad_norm": 0.812785804271698, + "learning_rate": 2.296566666666667e-05, + "loss": 1.4250279235839844, + "step": 405700 + }, + { + "epoch": 54.10666666666667, + "grad_norm": 0.8275474905967712, + "learning_rate": 2.2959e-05, + "loss": 1.430595703125, + "step": 405800 + }, + { + "epoch": 54.12, + "grad_norm": 0.8649910688400269, + "learning_rate": 2.2952333333333334e-05, + "loss": 1.431238250732422, + "step": 405900 + }, + { + "epoch": 54.13333333333333, + "grad_norm": 0.8428074717521667, + "learning_rate": 2.294566666666667e-05, + "loss": 1.4303498840332032, + "step": 406000 + }, + { + "epoch": 54.14666666666667, + "grad_norm": 0.8515647649765015, + "learning_rate": 2.2939000000000002e-05, + "loss": 1.4309127807617188, + "step": 406100 + }, + { + "epoch": 54.16, + "grad_norm": 0.8191271424293518, + "learning_rate": 2.2932333333333334e-05, + "loss": 1.4284707641601562, + "step": 406200 + }, + { + "epoch": 54.17333333333333, + "grad_norm": 0.869966447353363, + "learning_rate": 2.2925666666666666e-05, + "loss": 1.4276429748535155, + "step": 406300 + }, + { + "epoch": 54.18666666666667, + "grad_norm": 0.8617979288101196, + "learning_rate": 2.2919000000000002e-05, + "loss": 1.4300892639160157, + "step": 406400 + }, + { + "epoch": 54.2, + "grad_norm": 0.8274814486503601, + "learning_rate": 2.2912333333333334e-05, + "loss": 1.43626708984375, + "step": 406500 + }, + { + "epoch": 54.21333333333333, + "grad_norm": 0.8476601243019104, + "learning_rate": 2.2905666666666667e-05, + "loss": 1.43748046875, + "step": 406600 + }, + { + "epoch": 54.22666666666667, + "grad_norm": 0.8396388292312622, + "learning_rate": 2.2899000000000002e-05, + "loss": 1.4325535583496094, + "step": 406700 + }, + { + "epoch": 54.24, + "grad_norm": 0.8823912143707275, + "learning_rate": 2.2892333333333334e-05, + "loss": 1.4390623474121094, + "step": 406800 + }, + { + "epoch": 54.25333333333333, + "grad_norm": 0.8651164770126343, + "learning_rate": 2.2885733333333334e-05, + "loss": 1.434818878173828, + "step": 406900 + }, + { + "epoch": 54.266666666666666, + "grad_norm": 0.8942626714706421, + "learning_rate": 2.287906666666667e-05, + "loss": 1.4403004455566406, + "step": 407000 + }, + { + "epoch": 54.28, + "grad_norm": 0.81056809425354, + "learning_rate": 2.28724e-05, + "loss": 1.437251739501953, + "step": 407100 + }, + { + "epoch": 54.29333333333334, + "grad_norm": 0.8536822199821472, + "learning_rate": 2.2865733333333334e-05, + "loss": 1.4415220642089843, + "step": 407200 + }, + { + "epoch": 54.306666666666665, + "grad_norm": 0.850678026676178, + "learning_rate": 2.2859066666666666e-05, + "loss": 1.4421534729003906, + "step": 407300 + }, + { + "epoch": 54.32, + "grad_norm": 0.8688512444496155, + "learning_rate": 2.28524e-05, + "loss": 1.4458406066894531, + "step": 407400 + }, + { + "epoch": 54.333333333333336, + "grad_norm": 0.8030053973197937, + "learning_rate": 2.2845733333333337e-05, + "loss": 1.4411915588378905, + "step": 407500 + }, + { + "epoch": 54.346666666666664, + "grad_norm": 0.8313712477684021, + "learning_rate": 2.2839066666666666e-05, + "loss": 1.4449412536621093, + "step": 407600 + }, + { + "epoch": 54.36, + "grad_norm": 0.8125160932540894, + "learning_rate": 2.2832400000000002e-05, + "loss": 1.4425570678710937, + "step": 407700 + }, + { + "epoch": 54.373333333333335, + "grad_norm": 0.8480263352394104, + "learning_rate": 2.2825733333333334e-05, + "loss": 1.4434786987304689, + "step": 407800 + }, + { + "epoch": 54.38666666666666, + "grad_norm": 0.8349584341049194, + "learning_rate": 2.281906666666667e-05, + "loss": 1.4428903198242187, + "step": 407900 + }, + { + "epoch": 54.4, + "grad_norm": 0.8668252229690552, + "learning_rate": 2.2812400000000002e-05, + "loss": 1.4503041076660157, + "step": 408000 + }, + { + "epoch": 54.413333333333334, + "grad_norm": 0.8634394407272339, + "learning_rate": 2.2805733333333334e-05, + "loss": 1.450373992919922, + "step": 408100 + }, + { + "epoch": 54.42666666666667, + "grad_norm": 0.8869138956069946, + "learning_rate": 2.279906666666667e-05, + "loss": 1.4448956298828124, + "step": 408200 + }, + { + "epoch": 54.44, + "grad_norm": 0.8381974697113037, + "learning_rate": 2.27924e-05, + "loss": 1.4506912231445312, + "step": 408300 + }, + { + "epoch": 54.45333333333333, + "grad_norm": 0.8984852433204651, + "learning_rate": 2.2785733333333334e-05, + "loss": 1.4506108093261718, + "step": 408400 + }, + { + "epoch": 54.46666666666667, + "grad_norm": 0.8341385126113892, + "learning_rate": 2.2779066666666667e-05, + "loss": 1.4481794738769531, + "step": 408500 + }, + { + "epoch": 54.48, + "grad_norm": 0.8450107574462891, + "learning_rate": 2.2772400000000002e-05, + "loss": 1.452357635498047, + "step": 408600 + }, + { + "epoch": 54.49333333333333, + "grad_norm": 0.8467490077018738, + "learning_rate": 2.2765733333333335e-05, + "loss": 1.4530352783203124, + "step": 408700 + }, + { + "epoch": 54.50666666666667, + "grad_norm": 0.8854357004165649, + "learning_rate": 2.2759066666666667e-05, + "loss": 1.4446238708496093, + "step": 408800 + }, + { + "epoch": 54.52, + "grad_norm": 0.8822206258773804, + "learning_rate": 2.2752466666666666e-05, + "loss": 1.4520494079589843, + "step": 408900 + }, + { + "epoch": 54.53333333333333, + "grad_norm": 0.8779937028884888, + "learning_rate": 2.27458e-05, + "loss": 1.4530328369140626, + "step": 409000 + }, + { + "epoch": 54.54666666666667, + "grad_norm": 0.8283098340034485, + "learning_rate": 2.2739133333333334e-05, + "loss": 1.452464599609375, + "step": 409100 + }, + { + "epoch": 54.56, + "grad_norm": 0.9348580837249756, + "learning_rate": 2.273246666666667e-05, + "loss": 1.4534254455566407, + "step": 409200 + }, + { + "epoch": 54.57333333333333, + "grad_norm": 0.8854987621307373, + "learning_rate": 2.27258e-05, + "loss": 1.4535916137695313, + "step": 409300 + }, + { + "epoch": 54.586666666666666, + "grad_norm": 0.9117794632911682, + "learning_rate": 2.2719133333333334e-05, + "loss": 1.457483367919922, + "step": 409400 + }, + { + "epoch": 54.6, + "grad_norm": 0.8725807070732117, + "learning_rate": 2.2712466666666666e-05, + "loss": 1.4577378845214843, + "step": 409500 + }, + { + "epoch": 54.61333333333333, + "grad_norm": 0.9138243198394775, + "learning_rate": 2.2705800000000002e-05, + "loss": 1.4621884155273437, + "step": 409600 + }, + { + "epoch": 54.626666666666665, + "grad_norm": 0.8634496927261353, + "learning_rate": 2.2699133333333334e-05, + "loss": 1.4550845336914062, + "step": 409700 + }, + { + "epoch": 54.64, + "grad_norm": 0.8755178451538086, + "learning_rate": 2.2692466666666667e-05, + "loss": 1.45973388671875, + "step": 409800 + }, + { + "epoch": 54.653333333333336, + "grad_norm": 0.8733647465705872, + "learning_rate": 2.2685800000000002e-05, + "loss": 1.4567936706542968, + "step": 409900 + }, + { + "epoch": 54.666666666666664, + "grad_norm": 0.8817700147628784, + "learning_rate": 2.2679133333333335e-05, + "loss": 1.4601559448242187, + "step": 410000 + }, + { + "epoch": 54.68, + "grad_norm": 0.8758354187011719, + "learning_rate": 2.2672466666666667e-05, + "loss": 1.46127685546875, + "step": 410100 + }, + { + "epoch": 54.693333333333335, + "grad_norm": 0.8473187685012817, + "learning_rate": 2.2665800000000002e-05, + "loss": 1.4609004211425782, + "step": 410200 + }, + { + "epoch": 54.70666666666666, + "grad_norm": 0.8869526386260986, + "learning_rate": 2.2659133333333335e-05, + "loss": 1.4645802307128906, + "step": 410300 + }, + { + "epoch": 54.72, + "grad_norm": 0.8255419731140137, + "learning_rate": 2.265246666666667e-05, + "loss": 1.46389892578125, + "step": 410400 + }, + { + "epoch": 54.733333333333334, + "grad_norm": 0.831465482711792, + "learning_rate": 2.26458e-05, + "loss": 1.463885498046875, + "step": 410500 + }, + { + "epoch": 54.74666666666667, + "grad_norm": 0.9016580581665039, + "learning_rate": 2.2639133333333335e-05, + "loss": 1.4642086791992188, + "step": 410600 + }, + { + "epoch": 54.76, + "grad_norm": 0.8602574467658997, + "learning_rate": 2.2632466666666667e-05, + "loss": 1.4626669311523437, + "step": 410700 + }, + { + "epoch": 54.77333333333333, + "grad_norm": 0.8852930665016174, + "learning_rate": 2.26258e-05, + "loss": 1.467047882080078, + "step": 410800 + }, + { + "epoch": 54.78666666666667, + "grad_norm": 0.8360097408294678, + "learning_rate": 2.2619133333333335e-05, + "loss": 1.4667416381835938, + "step": 410900 + }, + { + "epoch": 54.8, + "grad_norm": 0.8857517242431641, + "learning_rate": 2.2612533333333334e-05, + "loss": 1.46333740234375, + "step": 411000 + }, + { + "epoch": 54.81333333333333, + "grad_norm": 0.8212206363677979, + "learning_rate": 2.2605866666666666e-05, + "loss": 1.467716827392578, + "step": 411100 + }, + { + "epoch": 54.82666666666667, + "grad_norm": 0.8455966711044312, + "learning_rate": 2.2599200000000002e-05, + "loss": 1.4688453674316406, + "step": 411200 + }, + { + "epoch": 54.84, + "grad_norm": 0.8679726719856262, + "learning_rate": 2.2592533333333334e-05, + "loss": 1.4663377380371094, + "step": 411300 + }, + { + "epoch": 54.85333333333333, + "grad_norm": 0.8671688437461853, + "learning_rate": 2.258586666666667e-05, + "loss": 1.4694053649902343, + "step": 411400 + }, + { + "epoch": 54.86666666666667, + "grad_norm": 0.8496808409690857, + "learning_rate": 2.25792e-05, + "loss": 1.46614013671875, + "step": 411500 + }, + { + "epoch": 54.88, + "grad_norm": 0.8471501469612122, + "learning_rate": 2.2572533333333335e-05, + "loss": 1.474624786376953, + "step": 411600 + }, + { + "epoch": 54.89333333333333, + "grad_norm": 0.8803544640541077, + "learning_rate": 2.2565866666666667e-05, + "loss": 1.4705052185058594, + "step": 411700 + }, + { + "epoch": 54.906666666666666, + "grad_norm": 0.9258813858032227, + "learning_rate": 2.25592e-05, + "loss": 1.4725639343261718, + "step": 411800 + }, + { + "epoch": 54.92, + "grad_norm": 0.8967903852462769, + "learning_rate": 2.2552533333333335e-05, + "loss": 1.4728996276855468, + "step": 411900 + }, + { + "epoch": 54.93333333333333, + "grad_norm": 0.8787213563919067, + "learning_rate": 2.2545866666666667e-05, + "loss": 1.4686712646484374, + "step": 412000 + }, + { + "epoch": 54.946666666666665, + "grad_norm": 0.8793955445289612, + "learning_rate": 2.2539200000000003e-05, + "loss": 1.4694187927246094, + "step": 412100 + }, + { + "epoch": 54.96, + "grad_norm": 0.8531497120857239, + "learning_rate": 2.2532533333333335e-05, + "loss": 1.4769473266601563, + "step": 412200 + }, + { + "epoch": 54.973333333333336, + "grad_norm": 0.8888368010520935, + "learning_rate": 2.2525866666666667e-05, + "loss": 1.4720077514648438, + "step": 412300 + }, + { + "epoch": 54.986666666666665, + "grad_norm": 0.893952488899231, + "learning_rate": 2.2519200000000003e-05, + "loss": 1.470653076171875, + "step": 412400 + }, + { + "epoch": 55.0, + "grad_norm": 0.8932615518569946, + "learning_rate": 2.2512533333333335e-05, + "loss": 1.4741424560546874, + "step": 412500 + }, + { + "epoch": 55.013333333333335, + "grad_norm": 0.8639925718307495, + "learning_rate": 2.2505866666666667e-05, + "loss": 1.4064114379882813, + "step": 412600 + }, + { + "epoch": 55.026666666666664, + "grad_norm": 0.8224576711654663, + "learning_rate": 2.24992e-05, + "loss": 1.412123260498047, + "step": 412700 + }, + { + "epoch": 55.04, + "grad_norm": 0.8823965191841125, + "learning_rate": 2.2492533333333335e-05, + "loss": 1.4082809448242188, + "step": 412800 + }, + { + "epoch": 55.053333333333335, + "grad_norm": 0.860645055770874, + "learning_rate": 2.2485866666666668e-05, + "loss": 1.4148016357421875, + "step": 412900 + }, + { + "epoch": 55.06666666666667, + "grad_norm": 0.876783549785614, + "learning_rate": 2.2479266666666667e-05, + "loss": 1.4186094665527345, + "step": 413000 + }, + { + "epoch": 55.08, + "grad_norm": 0.857022762298584, + "learning_rate": 2.2472600000000002e-05, + "loss": 1.4122817993164063, + "step": 413100 + }, + { + "epoch": 55.093333333333334, + "grad_norm": 0.8272480368614197, + "learning_rate": 2.2465933333333335e-05, + "loss": 1.4125518798828125, + "step": 413200 + }, + { + "epoch": 55.10666666666667, + "grad_norm": 0.8472641110420227, + "learning_rate": 2.2459266666666667e-05, + "loss": 1.412246551513672, + "step": 413300 + }, + { + "epoch": 55.12, + "grad_norm": 0.9146363139152527, + "learning_rate": 2.2452600000000003e-05, + "loss": 1.4172994995117187, + "step": 413400 + }, + { + "epoch": 55.13333333333333, + "grad_norm": 0.8248025178909302, + "learning_rate": 2.2445933333333335e-05, + "loss": 1.4187237548828124, + "step": 413500 + }, + { + "epoch": 55.14666666666667, + "grad_norm": 0.874271810054779, + "learning_rate": 2.2439266666666667e-05, + "loss": 1.41408935546875, + "step": 413600 + }, + { + "epoch": 55.16, + "grad_norm": 0.8196364641189575, + "learning_rate": 2.24326e-05, + "loss": 1.4154962158203126, + "step": 413700 + }, + { + "epoch": 55.17333333333333, + "grad_norm": 0.8373938798904419, + "learning_rate": 2.2425933333333335e-05, + "loss": 1.4177433776855468, + "step": 413800 + }, + { + "epoch": 55.18666666666667, + "grad_norm": 0.80357426404953, + "learning_rate": 2.241926666666667e-05, + "loss": 1.4225418090820312, + "step": 413900 + }, + { + "epoch": 55.2, + "grad_norm": 0.7960191965103149, + "learning_rate": 2.24126e-05, + "loss": 1.4238473510742187, + "step": 414000 + }, + { + "epoch": 55.21333333333333, + "grad_norm": 0.8417536020278931, + "learning_rate": 2.2405933333333335e-05, + "loss": 1.4218621826171876, + "step": 414100 + }, + { + "epoch": 55.22666666666667, + "grad_norm": 0.8823829889297485, + "learning_rate": 2.2399266666666667e-05, + "loss": 1.4251284790039063, + "step": 414200 + }, + { + "epoch": 55.24, + "grad_norm": 0.8325697183609009, + "learning_rate": 2.23926e-05, + "loss": 1.4224729919433594, + "step": 414300 + }, + { + "epoch": 55.25333333333333, + "grad_norm": 0.8879687786102295, + "learning_rate": 2.2385933333333335e-05, + "loss": 1.4293856811523438, + "step": 414400 + }, + { + "epoch": 55.266666666666666, + "grad_norm": 0.8998637199401855, + "learning_rate": 2.2379266666666668e-05, + "loss": 1.4206253051757813, + "step": 414500 + }, + { + "epoch": 55.28, + "grad_norm": 0.8645532727241516, + "learning_rate": 2.2372600000000003e-05, + "loss": 1.4249339294433594, + "step": 414600 + }, + { + "epoch": 55.29333333333334, + "grad_norm": 0.9286399483680725, + "learning_rate": 2.2365933333333332e-05, + "loss": 1.4289715576171875, + "step": 414700 + }, + { + "epoch": 55.306666666666665, + "grad_norm": 0.9058271646499634, + "learning_rate": 2.2359266666666668e-05, + "loss": 1.4306143188476563, + "step": 414800 + }, + { + "epoch": 55.32, + "grad_norm": 0.8806909918785095, + "learning_rate": 2.23526e-05, + "loss": 1.4301678466796874, + "step": 414900 + }, + { + "epoch": 55.333333333333336, + "grad_norm": 0.8449000120162964, + "learning_rate": 2.2345933333333336e-05, + "loss": 1.4272940063476562, + "step": 415000 + }, + { + "epoch": 55.346666666666664, + "grad_norm": 0.8805742263793945, + "learning_rate": 2.2339333333333335e-05, + "loss": 1.4354100036621094, + "step": 415100 + }, + { + "epoch": 55.36, + "grad_norm": 0.8670299649238586, + "learning_rate": 2.2332666666666667e-05, + "loss": 1.438927001953125, + "step": 415200 + }, + { + "epoch": 55.373333333333335, + "grad_norm": 0.8531759977340698, + "learning_rate": 2.2326e-05, + "loss": 1.4368338012695312, + "step": 415300 + }, + { + "epoch": 55.38666666666666, + "grad_norm": 0.8793957829475403, + "learning_rate": 2.2319333333333335e-05, + "loss": 1.4326312255859375, + "step": 415400 + }, + { + "epoch": 55.4, + "grad_norm": 0.8549216389656067, + "learning_rate": 2.2312666666666667e-05, + "loss": 1.4309808349609374, + "step": 415500 + }, + { + "epoch": 55.413333333333334, + "grad_norm": 0.8728709816932678, + "learning_rate": 2.2306000000000003e-05, + "loss": 1.4356973266601563, + "step": 415600 + }, + { + "epoch": 55.42666666666667, + "grad_norm": 0.8787753582000732, + "learning_rate": 2.2299333333333332e-05, + "loss": 1.435236053466797, + "step": 415700 + }, + { + "epoch": 55.44, + "grad_norm": 0.8510148525238037, + "learning_rate": 2.2292666666666667e-05, + "loss": 1.4368995666503905, + "step": 415800 + }, + { + "epoch": 55.45333333333333, + "grad_norm": 0.8644002079963684, + "learning_rate": 2.2286e-05, + "loss": 1.439784698486328, + "step": 415900 + }, + { + "epoch": 55.46666666666667, + "grad_norm": 0.8767049908638, + "learning_rate": 2.2279333333333335e-05, + "loss": 1.4385952758789062, + "step": 416000 + }, + { + "epoch": 55.48, + "grad_norm": 0.9412136673927307, + "learning_rate": 2.2272666666666668e-05, + "loss": 1.4417005920410155, + "step": 416100 + }, + { + "epoch": 55.49333333333333, + "grad_norm": 0.8540670275688171, + "learning_rate": 2.2266e-05, + "loss": 1.4380416870117188, + "step": 416200 + }, + { + "epoch": 55.50666666666667, + "grad_norm": 0.8778327107429504, + "learning_rate": 2.2259333333333336e-05, + "loss": 1.4395338439941405, + "step": 416300 + }, + { + "epoch": 55.52, + "grad_norm": 0.8598795533180237, + "learning_rate": 2.2252666666666668e-05, + "loss": 1.4399174499511718, + "step": 416400 + }, + { + "epoch": 55.53333333333333, + "grad_norm": 0.8614322543144226, + "learning_rate": 2.2246e-05, + "loss": 1.4443963623046876, + "step": 416500 + }, + { + "epoch": 55.54666666666667, + "grad_norm": 0.8454569578170776, + "learning_rate": 2.2239333333333336e-05, + "loss": 1.445623321533203, + "step": 416600 + }, + { + "epoch": 55.56, + "grad_norm": 0.8974414467811584, + "learning_rate": 2.2232666666666668e-05, + "loss": 1.4426679992675782, + "step": 416700 + }, + { + "epoch": 55.57333333333333, + "grad_norm": 0.8307322859764099, + "learning_rate": 2.2226000000000004e-05, + "loss": 1.4424739074707031, + "step": 416800 + }, + { + "epoch": 55.586666666666666, + "grad_norm": 0.8424813747406006, + "learning_rate": 2.2219333333333333e-05, + "loss": 1.4472550964355468, + "step": 416900 + }, + { + "epoch": 55.6, + "grad_norm": 0.8699893355369568, + "learning_rate": 2.2212666666666668e-05, + "loss": 1.437730712890625, + "step": 417000 + }, + { + "epoch": 55.61333333333333, + "grad_norm": 0.8717418313026428, + "learning_rate": 2.2206066666666667e-05, + "loss": 1.4472259521484374, + "step": 417100 + }, + { + "epoch": 55.626666666666665, + "grad_norm": 0.868630051612854, + "learning_rate": 2.21994e-05, + "loss": 1.4468307495117188, + "step": 417200 + }, + { + "epoch": 55.64, + "grad_norm": 0.9016746878623962, + "learning_rate": 2.2192733333333335e-05, + "loss": 1.4494607543945313, + "step": 417300 + }, + { + "epoch": 55.653333333333336, + "grad_norm": 0.8572381138801575, + "learning_rate": 2.2186066666666668e-05, + "loss": 1.4463278198242187, + "step": 417400 + }, + { + "epoch": 55.666666666666664, + "grad_norm": 0.9099103808403015, + "learning_rate": 2.21794e-05, + "loss": 1.4500961303710938, + "step": 417500 + }, + { + "epoch": 55.68, + "grad_norm": 0.9122660160064697, + "learning_rate": 2.2172733333333335e-05, + "loss": 1.4482554626464843, + "step": 417600 + }, + { + "epoch": 55.693333333333335, + "grad_norm": 0.8462883830070496, + "learning_rate": 2.2166066666666668e-05, + "loss": 1.447459716796875, + "step": 417700 + }, + { + "epoch": 55.70666666666666, + "grad_norm": 0.8462685942649841, + "learning_rate": 2.2159400000000003e-05, + "loss": 1.450800323486328, + "step": 417800 + }, + { + "epoch": 55.72, + "grad_norm": 0.8912447094917297, + "learning_rate": 2.2152733333333332e-05, + "loss": 1.4528042602539062, + "step": 417900 + }, + { + "epoch": 55.733333333333334, + "grad_norm": 0.8451516628265381, + "learning_rate": 2.2146066666666668e-05, + "loss": 1.4554351806640624, + "step": 418000 + }, + { + "epoch": 55.74666666666667, + "grad_norm": 0.8609992265701294, + "learning_rate": 2.21394e-05, + "loss": 1.4512791442871094, + "step": 418100 + }, + { + "epoch": 55.76, + "grad_norm": 0.8943572640419006, + "learning_rate": 2.2132733333333332e-05, + "loss": 1.4537530517578126, + "step": 418200 + }, + { + "epoch": 55.77333333333333, + "grad_norm": 0.8712022304534912, + "learning_rate": 2.2126066666666668e-05, + "loss": 1.4538926696777343, + "step": 418300 + }, + { + "epoch": 55.78666666666667, + "grad_norm": 0.9167302846908569, + "learning_rate": 2.21194e-05, + "loss": 1.457858123779297, + "step": 418400 + }, + { + "epoch": 55.8, + "grad_norm": 0.8773967623710632, + "learning_rate": 2.2112733333333336e-05, + "loss": 1.4523738098144532, + "step": 418500 + }, + { + "epoch": 55.81333333333333, + "grad_norm": 0.9126933217048645, + "learning_rate": 2.2106066666666668e-05, + "loss": 1.4570416259765624, + "step": 418600 + }, + { + "epoch": 55.82666666666667, + "grad_norm": 0.874134361743927, + "learning_rate": 2.20994e-05, + "loss": 1.456673583984375, + "step": 418700 + }, + { + "epoch": 55.84, + "grad_norm": 0.8987679481506348, + "learning_rate": 2.2092733333333336e-05, + "loss": 1.4605398559570313, + "step": 418800 + }, + { + "epoch": 55.85333333333333, + "grad_norm": 0.875527024269104, + "learning_rate": 2.208606666666667e-05, + "loss": 1.4604426574707032, + "step": 418900 + }, + { + "epoch": 55.86666666666667, + "grad_norm": 0.8008150458335876, + "learning_rate": 2.20794e-05, + "loss": 1.4571929931640626, + "step": 419000 + }, + { + "epoch": 55.88, + "grad_norm": 0.8355134129524231, + "learning_rate": 2.2072800000000003e-05, + "loss": 1.455338134765625, + "step": 419100 + }, + { + "epoch": 55.89333333333333, + "grad_norm": 0.8764241933822632, + "learning_rate": 2.2066133333333332e-05, + "loss": 1.454462432861328, + "step": 419200 + }, + { + "epoch": 55.906666666666666, + "grad_norm": 0.9243341088294983, + "learning_rate": 2.2059466666666668e-05, + "loss": 1.4607615661621094, + "step": 419300 + }, + { + "epoch": 55.92, + "grad_norm": 0.9032407402992249, + "learning_rate": 2.20528e-05, + "loss": 1.4592213439941406, + "step": 419400 + }, + { + "epoch": 55.93333333333333, + "grad_norm": 0.8600060939788818, + "learning_rate": 2.2046133333333336e-05, + "loss": 1.4632615661621093, + "step": 419500 + }, + { + "epoch": 55.946666666666665, + "grad_norm": 0.8559837937355042, + "learning_rate": 2.2039466666666668e-05, + "loss": 1.4599595642089844, + "step": 419600 + }, + { + "epoch": 55.96, + "grad_norm": 0.8894732594490051, + "learning_rate": 2.20328e-05, + "loss": 1.461082763671875, + "step": 419700 + }, + { + "epoch": 55.973333333333336, + "grad_norm": 0.8696638345718384, + "learning_rate": 2.2026133333333336e-05, + "loss": 1.4608134460449218, + "step": 419800 + }, + { + "epoch": 55.986666666666665, + "grad_norm": 0.9014117121696472, + "learning_rate": 2.2019466666666668e-05, + "loss": 1.4612680053710938, + "step": 419900 + }, + { + "epoch": 56.0, + "grad_norm": 0.934181272983551, + "learning_rate": 2.20128e-05, + "loss": 1.4615724182128906, + "step": 420000 + }, + { + "epoch": 56.013333333333335, + "grad_norm": 0.8485944867134094, + "learning_rate": 2.2006133333333333e-05, + "loss": 1.4035435485839844, + "step": 420100 + }, + { + "epoch": 56.026666666666664, + "grad_norm": 0.8273961544036865, + "learning_rate": 2.199946666666667e-05, + "loss": 1.4005302429199218, + "step": 420200 + }, + { + "epoch": 56.04, + "grad_norm": 0.8239974975585938, + "learning_rate": 2.1992800000000004e-05, + "loss": 1.3968911743164063, + "step": 420300 + }, + { + "epoch": 56.053333333333335, + "grad_norm": 0.8783063292503357, + "learning_rate": 2.1986133333333333e-05, + "loss": 1.3976206970214844, + "step": 420400 + }, + { + "epoch": 56.06666666666667, + "grad_norm": 0.8536005616188049, + "learning_rate": 2.197946666666667e-05, + "loss": 1.4026289367675782, + "step": 420500 + }, + { + "epoch": 56.08, + "grad_norm": 0.8284283876419067, + "learning_rate": 2.19728e-05, + "loss": 1.4048745727539063, + "step": 420600 + }, + { + "epoch": 56.093333333333334, + "grad_norm": 0.8265491724014282, + "learning_rate": 2.1966133333333333e-05, + "loss": 1.4086897277832031, + "step": 420700 + }, + { + "epoch": 56.10666666666667, + "grad_norm": 0.8136721849441528, + "learning_rate": 2.195946666666667e-05, + "loss": 1.4020260620117186, + "step": 420800 + }, + { + "epoch": 56.12, + "grad_norm": 0.8343340754508972, + "learning_rate": 2.19528e-05, + "loss": 1.4086201477050782, + "step": 420900 + }, + { + "epoch": 56.13333333333333, + "grad_norm": 0.8710994720458984, + "learning_rate": 2.1946133333333337e-05, + "loss": 1.407528839111328, + "step": 421000 + }, + { + "epoch": 56.14666666666667, + "grad_norm": 0.8886542916297913, + "learning_rate": 2.1939466666666665e-05, + "loss": 1.4091169738769531, + "step": 421100 + }, + { + "epoch": 56.16, + "grad_norm": 0.8041443228721619, + "learning_rate": 2.1932866666666668e-05, + "loss": 1.410533447265625, + "step": 421200 + }, + { + "epoch": 56.17333333333333, + "grad_norm": 0.8319317102432251, + "learning_rate": 2.1926200000000004e-05, + "loss": 1.4141780090332032, + "step": 421300 + }, + { + "epoch": 56.18666666666667, + "grad_norm": 0.8654050827026367, + "learning_rate": 2.1919533333333333e-05, + "loss": 1.417386016845703, + "step": 421400 + }, + { + "epoch": 56.2, + "grad_norm": 0.889337420463562, + "learning_rate": 2.1912866666666668e-05, + "loss": 1.411129150390625, + "step": 421500 + }, + { + "epoch": 56.21333333333333, + "grad_norm": 0.8444649577140808, + "learning_rate": 2.19062e-05, + "loss": 1.4155207824707032, + "step": 421600 + }, + { + "epoch": 56.22666666666667, + "grad_norm": 0.861868143081665, + "learning_rate": 2.1899533333333333e-05, + "loss": 1.417073974609375, + "step": 421700 + }, + { + "epoch": 56.24, + "grad_norm": 0.8739286661148071, + "learning_rate": 2.189286666666667e-05, + "loss": 1.4147346496582032, + "step": 421800 + }, + { + "epoch": 56.25333333333333, + "grad_norm": 0.8628485798835754, + "learning_rate": 2.18862e-05, + "loss": 1.416077880859375, + "step": 421900 + }, + { + "epoch": 56.266666666666666, + "grad_norm": 0.8855887055397034, + "learning_rate": 2.1879533333333336e-05, + "loss": 1.4169512939453126, + "step": 422000 + }, + { + "epoch": 56.28, + "grad_norm": 0.8673357963562012, + "learning_rate": 2.1872866666666665e-05, + "loss": 1.4148150634765626, + "step": 422100 + }, + { + "epoch": 56.29333333333334, + "grad_norm": 0.8554036617279053, + "learning_rate": 2.18662e-05, + "loss": 1.420289306640625, + "step": 422200 + }, + { + "epoch": 56.306666666666665, + "grad_norm": 0.8555299639701843, + "learning_rate": 2.1859533333333333e-05, + "loss": 1.4149293518066406, + "step": 422300 + }, + { + "epoch": 56.32, + "grad_norm": 0.9046564102172852, + "learning_rate": 2.185286666666667e-05, + "loss": 1.4149856567382812, + "step": 422400 + }, + { + "epoch": 56.333333333333336, + "grad_norm": 0.8520922660827637, + "learning_rate": 2.18462e-05, + "loss": 1.4218994140625, + "step": 422500 + }, + { + "epoch": 56.346666666666664, + "grad_norm": 0.8806357383728027, + "learning_rate": 2.1839533333333333e-05, + "loss": 1.4222920227050782, + "step": 422600 + }, + { + "epoch": 56.36, + "grad_norm": 0.9276759028434753, + "learning_rate": 2.183286666666667e-05, + "loss": 1.4219160461425782, + "step": 422700 + }, + { + "epoch": 56.373333333333335, + "grad_norm": 0.8782113194465637, + "learning_rate": 2.18262e-05, + "loss": 1.4204927062988282, + "step": 422800 + }, + { + "epoch": 56.38666666666666, + "grad_norm": 0.8631399869918823, + "learning_rate": 2.1819533333333333e-05, + "loss": 1.4249102783203125, + "step": 422900 + }, + { + "epoch": 56.4, + "grad_norm": 0.8936483860015869, + "learning_rate": 2.181286666666667e-05, + "loss": 1.4240966796875, + "step": 423000 + }, + { + "epoch": 56.413333333333334, + "grad_norm": 0.8748154640197754, + "learning_rate": 2.18062e-05, + "loss": 1.4252513122558594, + "step": 423100 + }, + { + "epoch": 56.42666666666667, + "grad_norm": 0.8596419095993042, + "learning_rate": 2.17996e-05, + "loss": 1.4259548950195313, + "step": 423200 + }, + { + "epoch": 56.44, + "grad_norm": 0.8839332461357117, + "learning_rate": 2.1792933333333336e-05, + "loss": 1.4302554321289063, + "step": 423300 + }, + { + "epoch": 56.45333333333333, + "grad_norm": 0.8390047550201416, + "learning_rate": 2.178626666666667e-05, + "loss": 1.4292677307128907, + "step": 423400 + }, + { + "epoch": 56.46666666666667, + "grad_norm": 0.8832520842552185, + "learning_rate": 2.17796e-05, + "loss": 1.426236114501953, + "step": 423500 + }, + { + "epoch": 56.48, + "grad_norm": 0.8132560849189758, + "learning_rate": 2.1772933333333333e-05, + "loss": 1.434789581298828, + "step": 423600 + }, + { + "epoch": 56.49333333333333, + "grad_norm": 0.8635860085487366, + "learning_rate": 2.176626666666667e-05, + "loss": 1.4259471130371093, + "step": 423700 + }, + { + "epoch": 56.50666666666667, + "grad_norm": 0.9170502424240112, + "learning_rate": 2.17596e-05, + "loss": 1.4286590576171876, + "step": 423800 + }, + { + "epoch": 56.52, + "grad_norm": 0.8722943663597107, + "learning_rate": 2.1752933333333333e-05, + "loss": 1.4344573974609376, + "step": 423900 + }, + { + "epoch": 56.53333333333333, + "grad_norm": 0.8727033138275146, + "learning_rate": 2.174626666666667e-05, + "loss": 1.4311439514160156, + "step": 424000 + }, + { + "epoch": 56.54666666666667, + "grad_norm": 0.8507550358772278, + "learning_rate": 2.17396e-05, + "loss": 1.4281155395507812, + "step": 424100 + }, + { + "epoch": 56.56, + "grad_norm": 0.9152675271034241, + "learning_rate": 2.1732933333333337e-05, + "loss": 1.4395048522949219, + "step": 424200 + }, + { + "epoch": 56.57333333333333, + "grad_norm": 0.8492377400398254, + "learning_rate": 2.1726266666666666e-05, + "loss": 1.43418212890625, + "step": 424300 + }, + { + "epoch": 56.586666666666666, + "grad_norm": 0.9120678901672363, + "learning_rate": 2.17196e-05, + "loss": 1.4339697265625, + "step": 424400 + }, + { + "epoch": 56.6, + "grad_norm": 0.9099976420402527, + "learning_rate": 2.1712933333333333e-05, + "loss": 1.4328225708007813, + "step": 424500 + }, + { + "epoch": 56.61333333333333, + "grad_norm": 0.846580445766449, + "learning_rate": 2.1706266666666666e-05, + "loss": 1.4381451416015625, + "step": 424600 + }, + { + "epoch": 56.626666666666665, + "grad_norm": 0.8989025950431824, + "learning_rate": 2.16996e-05, + "loss": 1.4314509582519532, + "step": 424700 + }, + { + "epoch": 56.64, + "grad_norm": 0.9448224306106567, + "learning_rate": 2.1692933333333334e-05, + "loss": 1.438125457763672, + "step": 424800 + }, + { + "epoch": 56.653333333333336, + "grad_norm": 0.8047678470611572, + "learning_rate": 2.168626666666667e-05, + "loss": 1.4364503479003907, + "step": 424900 + }, + { + "epoch": 56.666666666666664, + "grad_norm": 0.8994755148887634, + "learning_rate": 2.1679599999999998e-05, + "loss": 1.4405902099609376, + "step": 425000 + }, + { + "epoch": 56.68, + "grad_norm": 0.8442021608352661, + "learning_rate": 2.1672933333333334e-05, + "loss": 1.4396397399902343, + "step": 425100 + }, + { + "epoch": 56.693333333333335, + "grad_norm": 0.8690568804740906, + "learning_rate": 2.166626666666667e-05, + "loss": 1.443184814453125, + "step": 425200 + }, + { + "epoch": 56.70666666666666, + "grad_norm": 0.861370325088501, + "learning_rate": 2.165966666666667e-05, + "loss": 1.4361355590820313, + "step": 425300 + }, + { + "epoch": 56.72, + "grad_norm": 0.8897193670272827, + "learning_rate": 2.1653e-05, + "loss": 1.4400205993652344, + "step": 425400 + }, + { + "epoch": 56.733333333333334, + "grad_norm": 0.8475616574287415, + "learning_rate": 2.1646333333333337e-05, + "loss": 1.4406410217285157, + "step": 425500 + }, + { + "epoch": 56.74666666666667, + "grad_norm": 0.8466712236404419, + "learning_rate": 2.1639666666666665e-05, + "loss": 1.441578369140625, + "step": 425600 + }, + { + "epoch": 56.76, + "grad_norm": 0.9051734805107117, + "learning_rate": 2.1633e-05, + "loss": 1.4405007934570313, + "step": 425700 + }, + { + "epoch": 56.77333333333333, + "grad_norm": 0.8877379894256592, + "learning_rate": 2.1626333333333333e-05, + "loss": 1.4456788635253905, + "step": 425800 + }, + { + "epoch": 56.78666666666667, + "grad_norm": 0.914776623249054, + "learning_rate": 2.161966666666667e-05, + "loss": 1.4449098205566406, + "step": 425900 + }, + { + "epoch": 56.8, + "grad_norm": 0.8987554311752319, + "learning_rate": 2.1613e-05, + "loss": 1.445513916015625, + "step": 426000 + }, + { + "epoch": 56.81333333333333, + "grad_norm": 0.9004293084144592, + "learning_rate": 2.1606333333333334e-05, + "loss": 1.4431794738769532, + "step": 426100 + }, + { + "epoch": 56.82666666666667, + "grad_norm": 0.8796115517616272, + "learning_rate": 2.159966666666667e-05, + "loss": 1.444052734375, + "step": 426200 + }, + { + "epoch": 56.84, + "grad_norm": 0.8850584030151367, + "learning_rate": 2.1593e-05, + "loss": 1.442793426513672, + "step": 426300 + }, + { + "epoch": 56.85333333333333, + "grad_norm": 0.8874107003211975, + "learning_rate": 2.1586333333333334e-05, + "loss": 1.445687255859375, + "step": 426400 + }, + { + "epoch": 56.86666666666667, + "grad_norm": 0.8388593196868896, + "learning_rate": 2.1579666666666666e-05, + "loss": 1.447087860107422, + "step": 426500 + }, + { + "epoch": 56.88, + "grad_norm": 0.8567925095558167, + "learning_rate": 2.1573e-05, + "loss": 1.4455339050292968, + "step": 426600 + }, + { + "epoch": 56.89333333333333, + "grad_norm": 0.905091404914856, + "learning_rate": 2.1566333333333334e-05, + "loss": 1.4496022033691407, + "step": 426700 + }, + { + "epoch": 56.906666666666666, + "grad_norm": 0.851197361946106, + "learning_rate": 2.1559666666666666e-05, + "loss": 1.4433763122558594, + "step": 426800 + }, + { + "epoch": 56.92, + "grad_norm": 0.9563655257225037, + "learning_rate": 2.1553000000000002e-05, + "loss": 1.445602264404297, + "step": 426900 + }, + { + "epoch": 56.93333333333333, + "grad_norm": 0.8808197379112244, + "learning_rate": 2.1546333333333334e-05, + "loss": 1.4505947875976561, + "step": 427000 + }, + { + "epoch": 56.946666666666665, + "grad_norm": 0.8648757338523865, + "learning_rate": 2.1539666666666666e-05, + "loss": 1.4465037536621095, + "step": 427100 + }, + { + "epoch": 56.96, + "grad_norm": 0.8864550590515137, + "learning_rate": 2.1533000000000002e-05, + "loss": 1.4506777954101562, + "step": 427200 + }, + { + "epoch": 56.973333333333336, + "grad_norm": 0.8874581456184387, + "learning_rate": 2.15264e-05, + "loss": 1.449134063720703, + "step": 427300 + }, + { + "epoch": 56.986666666666665, + "grad_norm": 0.903593897819519, + "learning_rate": 2.1519733333333333e-05, + "loss": 1.4498974609375, + "step": 427400 + }, + { + "epoch": 57.0, + "grad_norm": 0.8335684537887573, + "learning_rate": 2.151306666666667e-05, + "loss": 1.4513101196289062, + "step": 427500 + }, + { + "epoch": 57.013333333333335, + "grad_norm": 0.8453123569488525, + "learning_rate": 2.15064e-05, + "loss": 1.3873635864257812, + "step": 427600 + }, + { + "epoch": 57.026666666666664, + "grad_norm": 0.892532229423523, + "learning_rate": 2.1499733333333337e-05, + "loss": 1.3913172912597656, + "step": 427700 + }, + { + "epoch": 57.04, + "grad_norm": 0.8891882300376892, + "learning_rate": 2.1493066666666666e-05, + "loss": 1.3940931701660155, + "step": 427800 + }, + { + "epoch": 57.053333333333335, + "grad_norm": 0.8671453595161438, + "learning_rate": 2.14864e-05, + "loss": 1.392352294921875, + "step": 427900 + }, + { + "epoch": 57.06666666666667, + "grad_norm": 0.8824362754821777, + "learning_rate": 2.1479733333333334e-05, + "loss": 1.3905747985839845, + "step": 428000 + }, + { + "epoch": 57.08, + "grad_norm": 0.8569581508636475, + "learning_rate": 2.1473066666666666e-05, + "loss": 1.3913356018066407, + "step": 428100 + }, + { + "epoch": 57.093333333333334, + "grad_norm": 0.8542196750640869, + "learning_rate": 2.14664e-05, + "loss": 1.39747314453125, + "step": 428200 + }, + { + "epoch": 57.10666666666667, + "grad_norm": 0.8506782054901123, + "learning_rate": 2.1459733333333334e-05, + "loss": 1.3980393981933594, + "step": 428300 + }, + { + "epoch": 57.12, + "grad_norm": 0.8215917944908142, + "learning_rate": 2.145306666666667e-05, + "loss": 1.3985368347167968, + "step": 428400 + }, + { + "epoch": 57.13333333333333, + "grad_norm": 0.8183411955833435, + "learning_rate": 2.14464e-05, + "loss": 1.3943287658691406, + "step": 428500 + }, + { + "epoch": 57.14666666666667, + "grad_norm": 0.8586587309837341, + "learning_rate": 2.1439733333333334e-05, + "loss": 1.3957505798339844, + "step": 428600 + }, + { + "epoch": 57.16, + "grad_norm": 0.873313307762146, + "learning_rate": 2.1433066666666666e-05, + "loss": 1.3994070434570312, + "step": 428700 + }, + { + "epoch": 57.17333333333333, + "grad_norm": 0.8390573263168335, + "learning_rate": 2.1426400000000002e-05, + "loss": 1.402987060546875, + "step": 428800 + }, + { + "epoch": 57.18666666666667, + "grad_norm": 0.8784012794494629, + "learning_rate": 2.1419733333333334e-05, + "loss": 1.4021636962890625, + "step": 428900 + }, + { + "epoch": 57.2, + "grad_norm": 0.8398882150650024, + "learning_rate": 2.1413066666666667e-05, + "loss": 1.4004843139648437, + "step": 429000 + }, + { + "epoch": 57.21333333333333, + "grad_norm": 0.8533040285110474, + "learning_rate": 2.1406400000000002e-05, + "loss": 1.4055615234375, + "step": 429100 + }, + { + "epoch": 57.22666666666667, + "grad_norm": 0.8388049602508545, + "learning_rate": 2.1399733333333335e-05, + "loss": 1.4073393249511719, + "step": 429200 + }, + { + "epoch": 57.24, + "grad_norm": 0.8552389740943909, + "learning_rate": 2.1393133333333334e-05, + "loss": 1.404532928466797, + "step": 429300 + }, + { + "epoch": 57.25333333333333, + "grad_norm": 0.8817448019981384, + "learning_rate": 2.138646666666667e-05, + "loss": 1.4020608520507813, + "step": 429400 + }, + { + "epoch": 57.266666666666666, + "grad_norm": 0.8578885793685913, + "learning_rate": 2.1379799999999998e-05, + "loss": 1.4063929748535156, + "step": 429500 + }, + { + "epoch": 57.28, + "grad_norm": 0.8610025644302368, + "learning_rate": 2.1373133333333334e-05, + "loss": 1.4068283081054687, + "step": 429600 + }, + { + "epoch": 57.29333333333334, + "grad_norm": 0.9056425094604492, + "learning_rate": 2.136646666666667e-05, + "loss": 1.4069955444335938, + "step": 429700 + }, + { + "epoch": 57.306666666666665, + "grad_norm": 0.8811911344528198, + "learning_rate": 2.1359800000000002e-05, + "loss": 1.4090301513671875, + "step": 429800 + }, + { + "epoch": 57.32, + "grad_norm": 0.8970731496810913, + "learning_rate": 2.1353133333333334e-05, + "loss": 1.41206298828125, + "step": 429900 + }, + { + "epoch": 57.333333333333336, + "grad_norm": 0.8743362426757812, + "learning_rate": 2.1346466666666666e-05, + "loss": 1.4041651916503906, + "step": 430000 + }, + { + "epoch": 57.346666666666664, + "grad_norm": 0.8430378437042236, + "learning_rate": 2.1339800000000002e-05, + "loss": 1.4116816711425781, + "step": 430100 + }, + { + "epoch": 57.36, + "grad_norm": 0.8529326915740967, + "learning_rate": 2.1333133333333334e-05, + "loss": 1.409462890625, + "step": 430200 + }, + { + "epoch": 57.373333333333335, + "grad_norm": 0.8731967210769653, + "learning_rate": 2.1326466666666666e-05, + "loss": 1.4143032836914062, + "step": 430300 + }, + { + "epoch": 57.38666666666666, + "grad_norm": 0.8534825444221497, + "learning_rate": 2.1319800000000002e-05, + "loss": 1.411023406982422, + "step": 430400 + }, + { + "epoch": 57.4, + "grad_norm": 0.8644077777862549, + "learning_rate": 2.1313133333333334e-05, + "loss": 1.4160220336914062, + "step": 430500 + }, + { + "epoch": 57.413333333333334, + "grad_norm": 0.875743567943573, + "learning_rate": 2.130646666666667e-05, + "loss": 1.4175732421875, + "step": 430600 + }, + { + "epoch": 57.42666666666667, + "grad_norm": 0.8708527088165283, + "learning_rate": 2.12998e-05, + "loss": 1.4122679138183594, + "step": 430700 + }, + { + "epoch": 57.44, + "grad_norm": 0.8806803822517395, + "learning_rate": 2.1293133333333335e-05, + "loss": 1.4234275817871094, + "step": 430800 + }, + { + "epoch": 57.45333333333333, + "grad_norm": 0.8835158348083496, + "learning_rate": 2.1286466666666667e-05, + "loss": 1.4142134094238281, + "step": 430900 + }, + { + "epoch": 57.46666666666667, + "grad_norm": 0.8983718752861023, + "learning_rate": 2.12798e-05, + "loss": 1.4219779968261719, + "step": 431000 + }, + { + "epoch": 57.48, + "grad_norm": 0.8711386322975159, + "learning_rate": 2.1273133333333335e-05, + "loss": 1.4237786865234374, + "step": 431100 + }, + { + "epoch": 57.49333333333333, + "grad_norm": 0.8646780848503113, + "learning_rate": 2.1266466666666667e-05, + "loss": 1.4190533447265625, + "step": 431200 + }, + { + "epoch": 57.50666666666667, + "grad_norm": 0.863576352596283, + "learning_rate": 2.1259800000000003e-05, + "loss": 1.4201698303222656, + "step": 431300 + }, + { + "epoch": 57.52, + "grad_norm": 0.8763824105262756, + "learning_rate": 2.1253200000000002e-05, + "loss": 1.4242768859863282, + "step": 431400 + }, + { + "epoch": 57.53333333333333, + "grad_norm": 0.8644374012947083, + "learning_rate": 2.1246533333333334e-05, + "loss": 1.4194601440429688, + "step": 431500 + }, + { + "epoch": 57.54666666666667, + "grad_norm": 0.868061900138855, + "learning_rate": 2.123986666666667e-05, + "loss": 1.4254354858398437, + "step": 431600 + }, + { + "epoch": 57.56, + "grad_norm": 0.8473526239395142, + "learning_rate": 2.1233200000000002e-05, + "loss": 1.4216069030761718, + "step": 431700 + }, + { + "epoch": 57.57333333333333, + "grad_norm": 0.8738334774971008, + "learning_rate": 2.1226533333333334e-05, + "loss": 1.4271109008789062, + "step": 431800 + }, + { + "epoch": 57.586666666666666, + "grad_norm": 0.8677930235862732, + "learning_rate": 2.121986666666667e-05, + "loss": 1.4229975891113282, + "step": 431900 + }, + { + "epoch": 57.6, + "grad_norm": 0.8332538604736328, + "learning_rate": 2.12132e-05, + "loss": 1.426571807861328, + "step": 432000 + }, + { + "epoch": 57.61333333333333, + "grad_norm": 0.8856222033500671, + "learning_rate": 2.1206533333333334e-05, + "loss": 1.429196319580078, + "step": 432100 + }, + { + "epoch": 57.626666666666665, + "grad_norm": 0.8730775713920593, + "learning_rate": 2.1199866666666667e-05, + "loss": 1.4241506958007812, + "step": 432200 + }, + { + "epoch": 57.64, + "grad_norm": 0.8760560750961304, + "learning_rate": 2.1193200000000002e-05, + "loss": 1.4274005126953124, + "step": 432300 + }, + { + "epoch": 57.653333333333336, + "grad_norm": 0.8515337705612183, + "learning_rate": 2.1186533333333335e-05, + "loss": 1.4225738525390625, + "step": 432400 + }, + { + "epoch": 57.666666666666664, + "grad_norm": 0.8787199854850769, + "learning_rate": 2.1179866666666667e-05, + "loss": 1.4261997985839843, + "step": 432500 + }, + { + "epoch": 57.68, + "grad_norm": 0.8842175006866455, + "learning_rate": 2.1173200000000003e-05, + "loss": 1.4274266052246094, + "step": 432600 + }, + { + "epoch": 57.693333333333335, + "grad_norm": 0.8846668601036072, + "learning_rate": 2.1166533333333335e-05, + "loss": 1.427220001220703, + "step": 432700 + }, + { + "epoch": 57.70666666666666, + "grad_norm": 0.8565542101860046, + "learning_rate": 2.1159866666666667e-05, + "loss": 1.431591796875, + "step": 432800 + }, + { + "epoch": 57.72, + "grad_norm": 0.9259876608848572, + "learning_rate": 2.11532e-05, + "loss": 1.427034912109375, + "step": 432900 + }, + { + "epoch": 57.733333333333334, + "grad_norm": 0.8708376884460449, + "learning_rate": 2.1146533333333335e-05, + "loss": 1.4335169982910156, + "step": 433000 + }, + { + "epoch": 57.74666666666667, + "grad_norm": 0.865197479724884, + "learning_rate": 2.1139866666666667e-05, + "loss": 1.434145965576172, + "step": 433100 + }, + { + "epoch": 57.76, + "grad_norm": 0.8874461650848389, + "learning_rate": 2.11332e-05, + "loss": 1.43084228515625, + "step": 433200 + }, + { + "epoch": 57.77333333333333, + "grad_norm": 0.8610783219337463, + "learning_rate": 2.1126533333333335e-05, + "loss": 1.4350297546386719, + "step": 433300 + }, + { + "epoch": 57.78666666666667, + "grad_norm": 0.8552179932594299, + "learning_rate": 2.1119933333333334e-05, + "loss": 1.4353605651855468, + "step": 433400 + }, + { + "epoch": 57.8, + "grad_norm": 0.8936259746551514, + "learning_rate": 2.1113266666666667e-05, + "loss": 1.4357664489746094, + "step": 433500 + }, + { + "epoch": 57.81333333333333, + "grad_norm": 0.8511193990707397, + "learning_rate": 2.1106600000000002e-05, + "loss": 1.4354666137695313, + "step": 433600 + }, + { + "epoch": 57.82666666666667, + "grad_norm": 0.8757380247116089, + "learning_rate": 2.1099933333333334e-05, + "loss": 1.440109405517578, + "step": 433700 + }, + { + "epoch": 57.84, + "grad_norm": 0.921246349811554, + "learning_rate": 2.1093266666666667e-05, + "loss": 1.4303897094726563, + "step": 433800 + }, + { + "epoch": 57.85333333333333, + "grad_norm": 0.9038046002388, + "learning_rate": 2.1086600000000002e-05, + "loss": 1.43283203125, + "step": 433900 + }, + { + "epoch": 57.86666666666667, + "grad_norm": 0.9284953474998474, + "learning_rate": 2.1079933333333335e-05, + "loss": 1.439587860107422, + "step": 434000 + }, + { + "epoch": 57.88, + "grad_norm": 0.8677544593811035, + "learning_rate": 2.107326666666667e-05, + "loss": 1.432835693359375, + "step": 434100 + }, + { + "epoch": 57.89333333333333, + "grad_norm": 0.8702775239944458, + "learning_rate": 2.10666e-05, + "loss": 1.4360232543945313, + "step": 434200 + }, + { + "epoch": 57.906666666666666, + "grad_norm": 0.9052044153213501, + "learning_rate": 2.1059933333333335e-05, + "loss": 1.4358711242675781, + "step": 434300 + }, + { + "epoch": 57.92, + "grad_norm": 0.8295144438743591, + "learning_rate": 2.1053266666666667e-05, + "loss": 1.4382148742675782, + "step": 434400 + }, + { + "epoch": 57.93333333333333, + "grad_norm": 0.8926219344139099, + "learning_rate": 2.10466e-05, + "loss": 1.4372708129882812, + "step": 434500 + }, + { + "epoch": 57.946666666666665, + "grad_norm": 0.8741112351417542, + "learning_rate": 2.1039933333333335e-05, + "loss": 1.4404176330566407, + "step": 434600 + }, + { + "epoch": 57.96, + "grad_norm": 0.8536452651023865, + "learning_rate": 2.1033266666666667e-05, + "loss": 1.4389004516601562, + "step": 434700 + }, + { + "epoch": 57.973333333333336, + "grad_norm": 0.8683491945266724, + "learning_rate": 2.1026600000000003e-05, + "loss": 1.4402836608886718, + "step": 434800 + }, + { + "epoch": 57.986666666666665, + "grad_norm": 0.8583080172538757, + "learning_rate": 2.1019933333333332e-05, + "loss": 1.4441624450683594, + "step": 434900 + }, + { + "epoch": 58.0, + "grad_norm": 0.8596425652503967, + "learning_rate": 2.1013266666666667e-05, + "loss": 1.4424615478515626, + "step": 435000 + }, + { + "epoch": 58.013333333333335, + "grad_norm": 0.8734589219093323, + "learning_rate": 2.10066e-05, + "loss": 1.3811009216308594, + "step": 435100 + }, + { + "epoch": 58.026666666666664, + "grad_norm": 0.8984307050704956, + "learning_rate": 2.0999933333333335e-05, + "loss": 1.3851551818847656, + "step": 435200 + }, + { + "epoch": 58.04, + "grad_norm": 0.870807945728302, + "learning_rate": 2.0993266666666668e-05, + "loss": 1.383925323486328, + "step": 435300 + }, + { + "epoch": 58.053333333333335, + "grad_norm": 0.8193836808204651, + "learning_rate": 2.0986666666666667e-05, + "loss": 1.3839663696289062, + "step": 435400 + }, + { + "epoch": 58.06666666666667, + "grad_norm": 0.8609771132469177, + "learning_rate": 2.098e-05, + "loss": 1.3863719177246094, + "step": 435500 + }, + { + "epoch": 58.08, + "grad_norm": 0.8306235074996948, + "learning_rate": 2.0973333333333335e-05, + "loss": 1.3829759216308595, + "step": 435600 + }, + { + "epoch": 58.093333333333334, + "grad_norm": 0.8595555424690247, + "learning_rate": 2.0966666666666667e-05, + "loss": 1.3847052001953124, + "step": 435700 + }, + { + "epoch": 58.10666666666667, + "grad_norm": 0.8563652634620667, + "learning_rate": 2.0960000000000003e-05, + "loss": 1.386361083984375, + "step": 435800 + }, + { + "epoch": 58.12, + "grad_norm": 0.8658237457275391, + "learning_rate": 2.095333333333333e-05, + "loss": 1.388785400390625, + "step": 435900 + }, + { + "epoch": 58.13333333333333, + "grad_norm": 0.8627846837043762, + "learning_rate": 2.0946666666666667e-05, + "loss": 1.393494873046875, + "step": 436000 + }, + { + "epoch": 58.14666666666667, + "grad_norm": 0.8761343955993652, + "learning_rate": 2.0940000000000003e-05, + "loss": 1.3921939086914064, + "step": 436100 + }, + { + "epoch": 58.16, + "grad_norm": 0.8637253642082214, + "learning_rate": 2.0933333333333335e-05, + "loss": 1.3898490905761718, + "step": 436200 + }, + { + "epoch": 58.17333333333333, + "grad_norm": 0.8888680934906006, + "learning_rate": 2.0926666666666667e-05, + "loss": 1.3912742614746094, + "step": 436300 + }, + { + "epoch": 58.18666666666667, + "grad_norm": 0.8735535144805908, + "learning_rate": 2.092e-05, + "loss": 1.3885147094726562, + "step": 436400 + }, + { + "epoch": 58.2, + "grad_norm": 0.8976262807846069, + "learning_rate": 2.0913333333333335e-05, + "loss": 1.3988859558105469, + "step": 436500 + }, + { + "epoch": 58.21333333333333, + "grad_norm": 0.8783442974090576, + "learning_rate": 2.0906666666666668e-05, + "loss": 1.3914523315429688, + "step": 436600 + }, + { + "epoch": 58.22666666666667, + "grad_norm": 0.8859887719154358, + "learning_rate": 2.09e-05, + "loss": 1.390671844482422, + "step": 436700 + }, + { + "epoch": 58.24, + "grad_norm": 0.8783445358276367, + "learning_rate": 2.0893333333333335e-05, + "loss": 1.3934185791015625, + "step": 436800 + }, + { + "epoch": 58.25333333333333, + "grad_norm": 0.8454920053482056, + "learning_rate": 2.0886666666666668e-05, + "loss": 1.3974107360839845, + "step": 436900 + }, + { + "epoch": 58.266666666666666, + "grad_norm": 0.895043134689331, + "learning_rate": 2.0880000000000003e-05, + "loss": 1.3971817016601562, + "step": 437000 + }, + { + "epoch": 58.28, + "grad_norm": 0.9361661076545715, + "learning_rate": 2.0873333333333332e-05, + "loss": 1.39865234375, + "step": 437100 + }, + { + "epoch": 58.29333333333334, + "grad_norm": 0.8844481110572815, + "learning_rate": 2.0866666666666668e-05, + "loss": 1.3997993469238281, + "step": 437200 + }, + { + "epoch": 58.306666666666665, + "grad_norm": 0.7877687215805054, + "learning_rate": 2.086e-05, + "loss": 1.4015354919433594, + "step": 437300 + }, + { + "epoch": 58.32, + "grad_norm": 0.7823760509490967, + "learning_rate": 2.08534e-05, + "loss": 1.3993243408203124, + "step": 437400 + }, + { + "epoch": 58.333333333333336, + "grad_norm": 0.8986889123916626, + "learning_rate": 2.0846733333333335e-05, + "loss": 1.402682342529297, + "step": 437500 + }, + { + "epoch": 58.346666666666664, + "grad_norm": 0.8212663531303406, + "learning_rate": 2.0840066666666667e-05, + "loss": 1.4034190368652344, + "step": 437600 + }, + { + "epoch": 58.36, + "grad_norm": 0.865929365158081, + "learning_rate": 2.08334e-05, + "loss": 1.4008261108398437, + "step": 437700 + }, + { + "epoch": 58.373333333333335, + "grad_norm": 0.8731956481933594, + "learning_rate": 2.0826733333333335e-05, + "loss": 1.4043699645996093, + "step": 437800 + }, + { + "epoch": 58.38666666666666, + "grad_norm": 0.8673787117004395, + "learning_rate": 2.0820066666666667e-05, + "loss": 1.4046339416503906, + "step": 437900 + }, + { + "epoch": 58.4, + "grad_norm": 0.8785029053688049, + "learning_rate": 2.0813400000000003e-05, + "loss": 1.404567108154297, + "step": 438000 + }, + { + "epoch": 58.413333333333334, + "grad_norm": 0.831731379032135, + "learning_rate": 2.0806733333333335e-05, + "loss": 1.4076467895507812, + "step": 438100 + }, + { + "epoch": 58.42666666666667, + "grad_norm": 0.8772410750389099, + "learning_rate": 2.0800066666666668e-05, + "loss": 1.4042951965332031, + "step": 438200 + }, + { + "epoch": 58.44, + "grad_norm": 0.8620854616165161, + "learning_rate": 2.0793400000000003e-05, + "loss": 1.4063218688964845, + "step": 438300 + }, + { + "epoch": 58.45333333333333, + "grad_norm": 0.8375303149223328, + "learning_rate": 2.0786733333333332e-05, + "loss": 1.4067355346679689, + "step": 438400 + }, + { + "epoch": 58.46666666666667, + "grad_norm": 0.8386953473091125, + "learning_rate": 2.0780066666666668e-05, + "loss": 1.4097119140625, + "step": 438500 + }, + { + "epoch": 58.48, + "grad_norm": 0.8893094062805176, + "learning_rate": 2.07734e-05, + "loss": 1.4094076538085938, + "step": 438600 + }, + { + "epoch": 58.49333333333333, + "grad_norm": 0.8755731582641602, + "learning_rate": 2.0766733333333336e-05, + "loss": 1.4084201049804688, + "step": 438700 + }, + { + "epoch": 58.50666666666667, + "grad_norm": 0.8995118737220764, + "learning_rate": 2.0760066666666668e-05, + "loss": 1.4081155395507812, + "step": 438800 + }, + { + "epoch": 58.52, + "grad_norm": 0.8784931302070618, + "learning_rate": 2.07534e-05, + "loss": 1.4106106567382812, + "step": 438900 + }, + { + "epoch": 58.53333333333333, + "grad_norm": 0.8496900796890259, + "learning_rate": 2.0746733333333336e-05, + "loss": 1.4154051208496095, + "step": 439000 + }, + { + "epoch": 58.54666666666667, + "grad_norm": 0.9111222624778748, + "learning_rate": 2.0740066666666668e-05, + "loss": 1.4134213256835937, + "step": 439100 + }, + { + "epoch": 58.56, + "grad_norm": 0.9012070298194885, + "learning_rate": 2.07334e-05, + "loss": 1.4138330078125, + "step": 439200 + }, + { + "epoch": 58.57333333333333, + "grad_norm": 0.8513124585151672, + "learning_rate": 2.0726733333333333e-05, + "loss": 1.414625701904297, + "step": 439300 + }, + { + "epoch": 58.586666666666666, + "grad_norm": 0.8750892877578735, + "learning_rate": 2.0720133333333332e-05, + "loss": 1.4188406372070312, + "step": 439400 + }, + { + "epoch": 58.6, + "grad_norm": 0.8822923302650452, + "learning_rate": 2.0713466666666667e-05, + "loss": 1.4158790588378907, + "step": 439500 + }, + { + "epoch": 58.61333333333333, + "grad_norm": 0.8047091364860535, + "learning_rate": 2.07068e-05, + "loss": 1.414635009765625, + "step": 439600 + }, + { + "epoch": 58.626666666666665, + "grad_norm": 0.8577402234077454, + "learning_rate": 2.0700133333333335e-05, + "loss": 1.4141645812988282, + "step": 439700 + }, + { + "epoch": 58.64, + "grad_norm": 0.8721509575843811, + "learning_rate": 2.0693466666666668e-05, + "loss": 1.4171902465820312, + "step": 439800 + }, + { + "epoch": 58.653333333333336, + "grad_norm": 0.852287769317627, + "learning_rate": 2.06868e-05, + "loss": 1.4161666870117187, + "step": 439900 + }, + { + "epoch": 58.666666666666664, + "grad_norm": 0.8711374402046204, + "learning_rate": 2.0680133333333336e-05, + "loss": 1.4154249572753905, + "step": 440000 + }, + { + "epoch": 58.68, + "grad_norm": 0.9298127889633179, + "learning_rate": 2.0673466666666668e-05, + "loss": 1.416683349609375, + "step": 440100 + }, + { + "epoch": 58.693333333333335, + "grad_norm": 0.8794826865196228, + "learning_rate": 2.06668e-05, + "loss": 1.4199267578125, + "step": 440200 + }, + { + "epoch": 58.70666666666666, + "grad_norm": 0.8694095015525818, + "learning_rate": 2.0660133333333336e-05, + "loss": 1.417292938232422, + "step": 440300 + }, + { + "epoch": 58.72, + "grad_norm": 0.8695284128189087, + "learning_rate": 2.0653466666666668e-05, + "loss": 1.4181063842773438, + "step": 440400 + }, + { + "epoch": 58.733333333333334, + "grad_norm": 0.8681213855743408, + "learning_rate": 2.0646800000000004e-05, + "loss": 1.4154566955566406, + "step": 440500 + }, + { + "epoch": 58.74666666666667, + "grad_norm": 0.8768618106842041, + "learning_rate": 2.0640133333333333e-05, + "loss": 1.4236866760253906, + "step": 440600 + }, + { + "epoch": 58.76, + "grad_norm": 0.8256394267082214, + "learning_rate": 2.0633466666666668e-05, + "loss": 1.41985107421875, + "step": 440700 + }, + { + "epoch": 58.77333333333333, + "grad_norm": 0.8697381019592285, + "learning_rate": 2.06268e-05, + "loss": 1.4237368774414063, + "step": 440800 + }, + { + "epoch": 58.78666666666667, + "grad_norm": 0.8941296935081482, + "learning_rate": 2.0620133333333333e-05, + "loss": 1.4222611999511718, + "step": 440900 + }, + { + "epoch": 58.8, + "grad_norm": 0.8877124786376953, + "learning_rate": 2.061346666666667e-05, + "loss": 1.4254855346679687, + "step": 441000 + }, + { + "epoch": 58.81333333333333, + "grad_norm": 0.9030829071998596, + "learning_rate": 2.06068e-05, + "loss": 1.4235409545898436, + "step": 441100 + }, + { + "epoch": 58.82666666666667, + "grad_norm": 0.9028357267379761, + "learning_rate": 2.0600133333333336e-05, + "loss": 1.4207374572753906, + "step": 441200 + }, + { + "epoch": 58.84, + "grad_norm": 0.9188116192817688, + "learning_rate": 2.0593466666666665e-05, + "loss": 1.4223762512207032, + "step": 441300 + }, + { + "epoch": 58.85333333333333, + "grad_norm": 0.9232787489891052, + "learning_rate": 2.0586866666666668e-05, + "loss": 1.4255131530761718, + "step": 441400 + }, + { + "epoch": 58.86666666666667, + "grad_norm": 0.874527633190155, + "learning_rate": 2.0580200000000003e-05, + "loss": 1.4305357360839843, + "step": 441500 + }, + { + "epoch": 58.88, + "grad_norm": 0.8727383017539978, + "learning_rate": 2.0573533333333332e-05, + "loss": 1.4260952758789063, + "step": 441600 + }, + { + "epoch": 58.89333333333333, + "grad_norm": 0.8848722577095032, + "learning_rate": 2.0566866666666668e-05, + "loss": 1.425802001953125, + "step": 441700 + }, + { + "epoch": 58.906666666666666, + "grad_norm": 0.8801239132881165, + "learning_rate": 2.05602e-05, + "loss": 1.4275160217285157, + "step": 441800 + }, + { + "epoch": 58.92, + "grad_norm": 0.8728554248809814, + "learning_rate": 2.0553533333333332e-05, + "loss": 1.4327494812011718, + "step": 441900 + }, + { + "epoch": 58.93333333333333, + "grad_norm": 0.8942492008209229, + "learning_rate": 2.0546866666666668e-05, + "loss": 1.4299046325683593, + "step": 442000 + }, + { + "epoch": 58.946666666666665, + "grad_norm": 0.9094804525375366, + "learning_rate": 2.05402e-05, + "loss": 1.4307928466796875, + "step": 442100 + }, + { + "epoch": 58.96, + "grad_norm": 0.871557891368866, + "learning_rate": 2.0533533333333336e-05, + "loss": 1.42893310546875, + "step": 442200 + }, + { + "epoch": 58.973333333333336, + "grad_norm": 0.8748642802238464, + "learning_rate": 2.0526866666666665e-05, + "loss": 1.4272027587890626, + "step": 442300 + }, + { + "epoch": 58.986666666666665, + "grad_norm": 0.8672638535499573, + "learning_rate": 2.05202e-05, + "loss": 1.4299638366699219, + "step": 442400 + }, + { + "epoch": 59.0, + "grad_norm": 0.8816332221031189, + "learning_rate": 2.0513533333333336e-05, + "loss": 1.434586944580078, + "step": 442500 + }, + { + "epoch": 59.013333333333335, + "grad_norm": 0.8527655601501465, + "learning_rate": 2.050686666666667e-05, + "loss": 1.3740353393554687, + "step": 442600 + }, + { + "epoch": 59.026666666666664, + "grad_norm": 0.8620314598083496, + "learning_rate": 2.05002e-05, + "loss": 1.3709056091308593, + "step": 442700 + }, + { + "epoch": 59.04, + "grad_norm": 0.8591675758361816, + "learning_rate": 2.0493533333333333e-05, + "loss": 1.3708229064941406, + "step": 442800 + }, + { + "epoch": 59.053333333333335, + "grad_norm": 0.8642350435256958, + "learning_rate": 2.048686666666667e-05, + "loss": 1.373277587890625, + "step": 442900 + }, + { + "epoch": 59.06666666666667, + "grad_norm": 0.8944986462593079, + "learning_rate": 2.04802e-05, + "loss": 1.3693106079101562, + "step": 443000 + }, + { + "epoch": 59.08, + "grad_norm": 0.8772505521774292, + "learning_rate": 2.0473533333333333e-05, + "loss": 1.3786691284179688, + "step": 443100 + }, + { + "epoch": 59.093333333333334, + "grad_norm": 0.828309178352356, + "learning_rate": 2.046686666666667e-05, + "loss": 1.3788882446289064, + "step": 443200 + }, + { + "epoch": 59.10666666666667, + "grad_norm": 0.8052541613578796, + "learning_rate": 2.04602e-05, + "loss": 1.3764219665527344, + "step": 443300 + }, + { + "epoch": 59.12, + "grad_norm": 0.8364429473876953, + "learning_rate": 2.0453533333333337e-05, + "loss": 1.3792369079589843, + "step": 443400 + }, + { + "epoch": 59.13333333333333, + "grad_norm": 0.8565122485160828, + "learning_rate": 2.0446933333333336e-05, + "loss": 1.3825364685058594, + "step": 443500 + }, + { + "epoch": 59.14666666666667, + "grad_norm": 0.8464578986167908, + "learning_rate": 2.0440266666666668e-05, + "loss": 1.38104248046875, + "step": 443600 + }, + { + "epoch": 59.16, + "grad_norm": 0.8631567358970642, + "learning_rate": 2.04336e-05, + "loss": 1.383396759033203, + "step": 443700 + }, + { + "epoch": 59.17333333333333, + "grad_norm": 0.8802007436752319, + "learning_rate": 2.0426933333333333e-05, + "loss": 1.3867723083496093, + "step": 443800 + }, + { + "epoch": 59.18666666666667, + "grad_norm": 0.8594309687614441, + "learning_rate": 2.0420266666666668e-05, + "loss": 1.3859178161621093, + "step": 443900 + }, + { + "epoch": 59.2, + "grad_norm": 0.8774383068084717, + "learning_rate": 2.04136e-05, + "loss": 1.3861714172363282, + "step": 444000 + }, + { + "epoch": 59.21333333333333, + "grad_norm": 0.8826853632926941, + "learning_rate": 2.0406933333333333e-05, + "loss": 1.3873568725585939, + "step": 444100 + }, + { + "epoch": 59.22666666666667, + "grad_norm": 0.7932345867156982, + "learning_rate": 2.040026666666667e-05, + "loss": 1.387662353515625, + "step": 444200 + }, + { + "epoch": 59.24, + "grad_norm": 0.8927592635154724, + "learning_rate": 2.03936e-05, + "loss": 1.3858427429199218, + "step": 444300 + }, + { + "epoch": 59.25333333333333, + "grad_norm": 0.8642708659172058, + "learning_rate": 2.0386933333333336e-05, + "loss": 1.392750244140625, + "step": 444400 + }, + { + "epoch": 59.266666666666666, + "grad_norm": 0.8669323325157166, + "learning_rate": 2.038026666666667e-05, + "loss": 1.383953857421875, + "step": 444500 + }, + { + "epoch": 59.28, + "grad_norm": 0.8710570931434631, + "learning_rate": 2.03736e-05, + "loss": 1.3882061767578124, + "step": 444600 + }, + { + "epoch": 59.29333333333334, + "grad_norm": 0.9176151752471924, + "learning_rate": 2.0366933333333337e-05, + "loss": 1.391685791015625, + "step": 444700 + }, + { + "epoch": 59.306666666666665, + "grad_norm": 0.831787109375, + "learning_rate": 2.0360266666666665e-05, + "loss": 1.3894924926757812, + "step": 444800 + }, + { + "epoch": 59.32, + "grad_norm": 0.8599420785903931, + "learning_rate": 2.03536e-05, + "loss": 1.3913801574707032, + "step": 444900 + }, + { + "epoch": 59.333333333333336, + "grad_norm": 0.8475634455680847, + "learning_rate": 2.0346933333333333e-05, + "loss": 1.392063751220703, + "step": 445000 + }, + { + "epoch": 59.346666666666664, + "grad_norm": 0.8321338891983032, + "learning_rate": 2.034026666666667e-05, + "loss": 1.3921504211425781, + "step": 445100 + }, + { + "epoch": 59.36, + "grad_norm": 0.8083276748657227, + "learning_rate": 2.03336e-05, + "loss": 1.3912481689453124, + "step": 445200 + }, + { + "epoch": 59.373333333333335, + "grad_norm": 0.8358070850372314, + "learning_rate": 2.0326933333333334e-05, + "loss": 1.3926693725585937, + "step": 445300 + }, + { + "epoch": 59.38666666666666, + "grad_norm": 0.8596873879432678, + "learning_rate": 2.032026666666667e-05, + "loss": 1.397172088623047, + "step": 445400 + }, + { + "epoch": 59.4, + "grad_norm": 0.8789359331130981, + "learning_rate": 2.0313666666666668e-05, + "loss": 1.3950949096679688, + "step": 445500 + }, + { + "epoch": 59.413333333333334, + "grad_norm": 0.8819690346717834, + "learning_rate": 2.0307e-05, + "loss": 1.3969586181640625, + "step": 445600 + }, + { + "epoch": 59.42666666666667, + "grad_norm": 0.8241303563117981, + "learning_rate": 2.0300333333333336e-05, + "loss": 1.3977046203613281, + "step": 445700 + }, + { + "epoch": 59.44, + "grad_norm": 0.8681808114051819, + "learning_rate": 2.0293666666666665e-05, + "loss": 1.395835418701172, + "step": 445800 + }, + { + "epoch": 59.45333333333333, + "grad_norm": 0.8753331899642944, + "learning_rate": 2.0287e-05, + "loss": 1.397332763671875, + "step": 445900 + }, + { + "epoch": 59.46666666666667, + "grad_norm": 0.936934769153595, + "learning_rate": 2.0280333333333333e-05, + "loss": 1.396897430419922, + "step": 446000 + }, + { + "epoch": 59.48, + "grad_norm": 0.9100282788276672, + "learning_rate": 2.027366666666667e-05, + "loss": 1.4025897216796874, + "step": 446100 + }, + { + "epoch": 59.49333333333333, + "grad_norm": 0.8733969330787659, + "learning_rate": 2.0267e-05, + "loss": 1.4047660827636719, + "step": 446200 + }, + { + "epoch": 59.50666666666667, + "grad_norm": 0.879501461982727, + "learning_rate": 2.0260333333333333e-05, + "loss": 1.4029029846191405, + "step": 446300 + }, + { + "epoch": 59.52, + "grad_norm": 0.8982552886009216, + "learning_rate": 2.025366666666667e-05, + "loss": 1.4038697814941405, + "step": 446400 + }, + { + "epoch": 59.53333333333333, + "grad_norm": 0.853354811668396, + "learning_rate": 2.0247e-05, + "loss": 1.3982884216308593, + "step": 446500 + }, + { + "epoch": 59.54666666666667, + "grad_norm": 0.8160167336463928, + "learning_rate": 2.0240333333333333e-05, + "loss": 1.4008200073242187, + "step": 446600 + }, + { + "epoch": 59.56, + "grad_norm": 0.8860510587692261, + "learning_rate": 2.023366666666667e-05, + "loss": 1.40131591796875, + "step": 446700 + }, + { + "epoch": 59.57333333333333, + "grad_norm": 0.9074357748031616, + "learning_rate": 2.0227e-05, + "loss": 1.4021209716796874, + "step": 446800 + }, + { + "epoch": 59.586666666666666, + "grad_norm": 0.9050543904304504, + "learning_rate": 2.0220333333333337e-05, + "loss": 1.4041819763183594, + "step": 446900 + }, + { + "epoch": 59.6, + "grad_norm": 0.8996903896331787, + "learning_rate": 2.0213666666666666e-05, + "loss": 1.4066482543945313, + "step": 447000 + }, + { + "epoch": 59.61333333333333, + "grad_norm": 0.8637166619300842, + "learning_rate": 2.0207e-05, + "loss": 1.40481689453125, + "step": 447100 + }, + { + "epoch": 59.626666666666665, + "grad_norm": 0.915777325630188, + "learning_rate": 2.0200333333333334e-05, + "loss": 1.4069454956054688, + "step": 447200 + }, + { + "epoch": 59.64, + "grad_norm": 0.8580685257911682, + "learning_rate": 2.0193666666666666e-05, + "loss": 1.4054689025878906, + "step": 447300 + }, + { + "epoch": 59.653333333333336, + "grad_norm": 0.8624551296234131, + "learning_rate": 2.0187000000000002e-05, + "loss": 1.406177978515625, + "step": 447400 + }, + { + "epoch": 59.666666666666664, + "grad_norm": 0.9435851573944092, + "learning_rate": 2.01804e-05, + "loss": 1.410730743408203, + "step": 447500 + }, + { + "epoch": 59.68, + "grad_norm": 0.8933364152908325, + "learning_rate": 2.0173733333333333e-05, + "loss": 1.4079649353027344, + "step": 447600 + }, + { + "epoch": 59.693333333333335, + "grad_norm": 0.9013268351554871, + "learning_rate": 2.016706666666667e-05, + "loss": 1.4075224304199219, + "step": 447700 + }, + { + "epoch": 59.70666666666666, + "grad_norm": 0.8835455775260925, + "learning_rate": 2.01604e-05, + "loss": 1.408735809326172, + "step": 447800 + }, + { + "epoch": 59.72, + "grad_norm": 0.9013435244560242, + "learning_rate": 2.0153733333333337e-05, + "loss": 1.4129440307617187, + "step": 447900 + }, + { + "epoch": 59.733333333333334, + "grad_norm": 0.9216914772987366, + "learning_rate": 2.0147066666666666e-05, + "loss": 1.413671875, + "step": 448000 + }, + { + "epoch": 59.74666666666667, + "grad_norm": 0.9072982668876648, + "learning_rate": 2.01404e-05, + "loss": 1.4080628967285156, + "step": 448100 + }, + { + "epoch": 59.76, + "grad_norm": 0.9267192482948303, + "learning_rate": 2.0133733333333333e-05, + "loss": 1.4114108276367188, + "step": 448200 + }, + { + "epoch": 59.77333333333333, + "grad_norm": 0.8571563959121704, + "learning_rate": 2.0127066666666666e-05, + "loss": 1.4090080261230469, + "step": 448300 + }, + { + "epoch": 59.78666666666667, + "grad_norm": 0.927082896232605, + "learning_rate": 2.01204e-05, + "loss": 1.4117256164550782, + "step": 448400 + }, + { + "epoch": 59.8, + "grad_norm": 0.9052351117134094, + "learning_rate": 2.0113733333333334e-05, + "loss": 1.4136744689941407, + "step": 448500 + }, + { + "epoch": 59.81333333333333, + "grad_norm": 0.9458771347999573, + "learning_rate": 2.010706666666667e-05, + "loss": 1.4105580139160157, + "step": 448600 + }, + { + "epoch": 59.82666666666667, + "grad_norm": 0.7968136072158813, + "learning_rate": 2.0100399999999998e-05, + "loss": 1.4169776916503907, + "step": 448700 + }, + { + "epoch": 59.84, + "grad_norm": 0.8549537658691406, + "learning_rate": 2.0093733333333334e-05, + "loss": 1.4146495056152344, + "step": 448800 + }, + { + "epoch": 59.85333333333333, + "grad_norm": 0.8725696802139282, + "learning_rate": 2.008706666666667e-05, + "loss": 1.4181309509277344, + "step": 448900 + }, + { + "epoch": 59.86666666666667, + "grad_norm": 0.8683002591133118, + "learning_rate": 2.0080400000000002e-05, + "loss": 1.4133045959472657, + "step": 449000 + }, + { + "epoch": 59.88, + "grad_norm": 0.8000110387802124, + "learning_rate": 2.0073733333333334e-05, + "loss": 1.4159756469726563, + "step": 449100 + }, + { + "epoch": 59.89333333333333, + "grad_norm": 0.887690544128418, + "learning_rate": 2.0067066666666666e-05, + "loss": 1.4154435729980468, + "step": 449200 + }, + { + "epoch": 59.906666666666666, + "grad_norm": 0.8402546644210815, + "learning_rate": 2.0060400000000002e-05, + "loss": 1.4177676391601564, + "step": 449300 + }, + { + "epoch": 59.92, + "grad_norm": 0.9004342555999756, + "learning_rate": 2.0053733333333334e-05, + "loss": 1.4182846069335937, + "step": 449400 + }, + { + "epoch": 59.93333333333333, + "grad_norm": 0.8389486074447632, + "learning_rate": 2.0047066666666666e-05, + "loss": 1.4176017761230468, + "step": 449500 + }, + { + "epoch": 59.946666666666665, + "grad_norm": 0.889369785785675, + "learning_rate": 2.0040400000000002e-05, + "loss": 1.4182723999023437, + "step": 449600 + }, + { + "epoch": 59.96, + "grad_norm": 0.9012863039970398, + "learning_rate": 2.00338e-05, + "loss": 1.4193865966796875, + "step": 449700 + }, + { + "epoch": 59.973333333333336, + "grad_norm": 0.9062787294387817, + "learning_rate": 2.0027133333333333e-05, + "loss": 1.4206649780273437, + "step": 449800 + }, + { + "epoch": 59.986666666666665, + "grad_norm": 0.8925827145576477, + "learning_rate": 2.002046666666667e-05, + "loss": 1.4192771911621094, + "step": 449900 + }, + { + "epoch": 60.0, + "grad_norm": 0.9131714105606079, + "learning_rate": 2.00138e-05, + "loss": 1.4141000366210938, + "step": 450000 + }, + { + "epoch": 60.013333333333335, + "grad_norm": 0.8766162991523743, + "learning_rate": 2.0007133333333334e-05, + "loss": 1.3626673889160157, + "step": 450100 + }, + { + "epoch": 60.026666666666664, + "grad_norm": 0.8619803786277771, + "learning_rate": 2.0000466666666666e-05, + "loss": 1.365054931640625, + "step": 450200 + }, + { + "epoch": 60.04, + "grad_norm": 0.8605244159698486, + "learning_rate": 1.99938e-05, + "loss": 1.3631307983398437, + "step": 450300 + }, + { + "epoch": 60.053333333333335, + "grad_norm": 0.855178713798523, + "learning_rate": 1.9987133333333334e-05, + "loss": 1.3666217041015625, + "step": 450400 + }, + { + "epoch": 60.06666666666667, + "grad_norm": 0.8652241826057434, + "learning_rate": 1.9980466666666666e-05, + "loss": 1.36834228515625, + "step": 450500 + }, + { + "epoch": 60.08, + "grad_norm": 0.7819242477416992, + "learning_rate": 1.9973800000000002e-05, + "loss": 1.3638204956054687, + "step": 450600 + }, + { + "epoch": 60.093333333333334, + "grad_norm": 0.8712034225463867, + "learning_rate": 1.9967133333333334e-05, + "loss": 1.3687100219726562, + "step": 450700 + }, + { + "epoch": 60.10666666666667, + "grad_norm": 0.8641767501831055, + "learning_rate": 1.996046666666667e-05, + "loss": 1.3722442626953124, + "step": 450800 + }, + { + "epoch": 60.12, + "grad_norm": 0.800079882144928, + "learning_rate": 1.99538e-05, + "loss": 1.3667047119140625, + "step": 450900 + }, + { + "epoch": 60.13333333333333, + "grad_norm": 0.8609186410903931, + "learning_rate": 1.9947133333333334e-05, + "loss": 1.370550079345703, + "step": 451000 + }, + { + "epoch": 60.14666666666667, + "grad_norm": 0.8792775869369507, + "learning_rate": 1.994046666666667e-05, + "loss": 1.3739710998535157, + "step": 451100 + }, + { + "epoch": 60.16, + "grad_norm": 0.8350428938865662, + "learning_rate": 1.99338e-05, + "loss": 1.3673428344726561, + "step": 451200 + }, + { + "epoch": 60.17333333333333, + "grad_norm": 0.8641292452812195, + "learning_rate": 1.9927133333333334e-05, + "loss": 1.3756710815429687, + "step": 451300 + }, + { + "epoch": 60.18666666666667, + "grad_norm": 0.8623048663139343, + "learning_rate": 1.9920466666666667e-05, + "loss": 1.3705751037597655, + "step": 451400 + }, + { + "epoch": 60.2, + "grad_norm": 0.8862844705581665, + "learning_rate": 1.9913800000000002e-05, + "loss": 1.3776641845703126, + "step": 451500 + }, + { + "epoch": 60.21333333333333, + "grad_norm": 0.85312819480896, + "learning_rate": 1.9907133333333335e-05, + "loss": 1.3766864013671876, + "step": 451600 + }, + { + "epoch": 60.22666666666667, + "grad_norm": 0.860139787197113, + "learning_rate": 1.9900533333333334e-05, + "loss": 1.376378936767578, + "step": 451700 + }, + { + "epoch": 60.24, + "grad_norm": 0.895366370677948, + "learning_rate": 1.989386666666667e-05, + "loss": 1.3810842895507813, + "step": 451800 + }, + { + "epoch": 60.25333333333333, + "grad_norm": 0.8239558935165405, + "learning_rate": 1.98872e-05, + "loss": 1.376715850830078, + "step": 451900 + }, + { + "epoch": 60.266666666666666, + "grad_norm": 0.8806911110877991, + "learning_rate": 1.9880533333333334e-05, + "loss": 1.3794581604003906, + "step": 452000 + }, + { + "epoch": 60.28, + "grad_norm": 0.8843830823898315, + "learning_rate": 1.987386666666667e-05, + "loss": 1.3751409912109376, + "step": 452100 + }, + { + "epoch": 60.29333333333334, + "grad_norm": 0.8291395902633667, + "learning_rate": 1.98672e-05, + "loss": 1.3803631591796874, + "step": 452200 + }, + { + "epoch": 60.306666666666665, + "grad_norm": 0.8579269051551819, + "learning_rate": 1.9860533333333334e-05, + "loss": 1.379007568359375, + "step": 452300 + }, + { + "epoch": 60.32, + "grad_norm": 0.8788613080978394, + "learning_rate": 1.9853866666666666e-05, + "loss": 1.3800997924804688, + "step": 452400 + }, + { + "epoch": 60.333333333333336, + "grad_norm": 0.8551366925239563, + "learning_rate": 1.9847200000000002e-05, + "loss": 1.380692138671875, + "step": 452500 + }, + { + "epoch": 60.346666666666664, + "grad_norm": 0.897996187210083, + "learning_rate": 1.9840533333333334e-05, + "loss": 1.3825259399414063, + "step": 452600 + }, + { + "epoch": 60.36, + "grad_norm": 0.8699089288711548, + "learning_rate": 1.9833866666666667e-05, + "loss": 1.3819764709472657, + "step": 452700 + }, + { + "epoch": 60.373333333333335, + "grad_norm": 0.8734973669052124, + "learning_rate": 1.9827200000000002e-05, + "loss": 1.385391082763672, + "step": 452800 + }, + { + "epoch": 60.38666666666666, + "grad_norm": 0.8809809684753418, + "learning_rate": 1.9820533333333334e-05, + "loss": 1.3871815490722657, + "step": 452900 + }, + { + "epoch": 60.4, + "grad_norm": 0.8975648880004883, + "learning_rate": 1.9813866666666667e-05, + "loss": 1.38472412109375, + "step": 453000 + }, + { + "epoch": 60.413333333333334, + "grad_norm": 0.9081311225891113, + "learning_rate": 1.9807200000000002e-05, + "loss": 1.3865188598632812, + "step": 453100 + }, + { + "epoch": 60.42666666666667, + "grad_norm": 0.9099006652832031, + "learning_rate": 1.9800533333333335e-05, + "loss": 1.389481201171875, + "step": 453200 + }, + { + "epoch": 60.44, + "grad_norm": 0.864206850528717, + "learning_rate": 1.979386666666667e-05, + "loss": 1.390070037841797, + "step": 453300 + }, + { + "epoch": 60.45333333333333, + "grad_norm": 0.8600577116012573, + "learning_rate": 1.97872e-05, + "loss": 1.392391357421875, + "step": 453400 + }, + { + "epoch": 60.46666666666667, + "grad_norm": 0.8773865103721619, + "learning_rate": 1.9780533333333335e-05, + "loss": 1.3893141174316406, + "step": 453500 + }, + { + "epoch": 60.48, + "grad_norm": 0.8529485464096069, + "learning_rate": 1.9773866666666667e-05, + "loss": 1.3895809936523438, + "step": 453600 + }, + { + "epoch": 60.49333333333333, + "grad_norm": 0.9243431687355042, + "learning_rate": 1.9767266666666666e-05, + "loss": 1.391697540283203, + "step": 453700 + }, + { + "epoch": 60.50666666666667, + "grad_norm": 0.8365994691848755, + "learning_rate": 1.9760600000000002e-05, + "loss": 1.39140869140625, + "step": 453800 + }, + { + "epoch": 60.52, + "grad_norm": 0.8463616371154785, + "learning_rate": 1.9753933333333334e-05, + "loss": 1.3897438049316406, + "step": 453900 + }, + { + "epoch": 60.53333333333333, + "grad_norm": 0.8689169883728027, + "learning_rate": 1.9747266666666666e-05, + "loss": 1.3926591491699218, + "step": 454000 + }, + { + "epoch": 60.54666666666667, + "grad_norm": 0.8810186386108398, + "learning_rate": 1.9740600000000002e-05, + "loss": 1.3944500732421874, + "step": 454100 + }, + { + "epoch": 60.56, + "grad_norm": 0.8771687150001526, + "learning_rate": 1.9733933333333334e-05, + "loss": 1.3929228210449218, + "step": 454200 + }, + { + "epoch": 60.57333333333333, + "grad_norm": 0.854418933391571, + "learning_rate": 1.972726666666667e-05, + "loss": 1.3968455505371093, + "step": 454300 + }, + { + "epoch": 60.586666666666666, + "grad_norm": 0.8878345489501953, + "learning_rate": 1.97206e-05, + "loss": 1.3940657043457032, + "step": 454400 + }, + { + "epoch": 60.6, + "grad_norm": 0.8897739052772522, + "learning_rate": 1.9713933333333335e-05, + "loss": 1.3936965942382813, + "step": 454500 + }, + { + "epoch": 60.61333333333333, + "grad_norm": 0.9403147101402283, + "learning_rate": 1.9707266666666667e-05, + "loss": 1.3955183410644532, + "step": 454600 + }, + { + "epoch": 60.626666666666665, + "grad_norm": 0.8647699952125549, + "learning_rate": 1.97006e-05, + "loss": 1.3931178283691406, + "step": 454700 + }, + { + "epoch": 60.64, + "grad_norm": 0.9250267744064331, + "learning_rate": 1.9693933333333335e-05, + "loss": 1.394335479736328, + "step": 454800 + }, + { + "epoch": 60.653333333333336, + "grad_norm": 0.9054676294326782, + "learning_rate": 1.9687266666666667e-05, + "loss": 1.3964520263671876, + "step": 454900 + }, + { + "epoch": 60.666666666666664, + "grad_norm": 0.8482034206390381, + "learning_rate": 1.9680600000000003e-05, + "loss": 1.401461639404297, + "step": 455000 + }, + { + "epoch": 60.68, + "grad_norm": 0.8947781920433044, + "learning_rate": 1.967393333333333e-05, + "loss": 1.398545684814453, + "step": 455100 + }, + { + "epoch": 60.693333333333335, + "grad_norm": 0.834432065486908, + "learning_rate": 1.9667266666666667e-05, + "loss": 1.3957997131347657, + "step": 455200 + }, + { + "epoch": 60.70666666666666, + "grad_norm": 0.8843758702278137, + "learning_rate": 1.9660600000000003e-05, + "loss": 1.397581787109375, + "step": 455300 + }, + { + "epoch": 60.72, + "grad_norm": 0.8692967295646667, + "learning_rate": 1.9653933333333335e-05, + "loss": 1.3974429321289064, + "step": 455400 + }, + { + "epoch": 60.733333333333334, + "grad_norm": 0.8995789885520935, + "learning_rate": 1.9647266666666667e-05, + "loss": 1.3975807189941407, + "step": 455500 + }, + { + "epoch": 60.74666666666667, + "grad_norm": 0.9164907932281494, + "learning_rate": 1.96406e-05, + "loss": 1.4055183410644532, + "step": 455600 + }, + { + "epoch": 60.76, + "grad_norm": 0.8928161859512329, + "learning_rate": 1.9634e-05, + "loss": 1.4037777709960937, + "step": 455700 + }, + { + "epoch": 60.77333333333333, + "grad_norm": 0.8764446377754211, + "learning_rate": 1.9627333333333334e-05, + "loss": 1.4005415344238281, + "step": 455800 + }, + { + "epoch": 60.78666666666667, + "grad_norm": 0.904509425163269, + "learning_rate": 1.9620666666666667e-05, + "loss": 1.4026527404785156, + "step": 455900 + }, + { + "epoch": 60.8, + "grad_norm": 0.898916482925415, + "learning_rate": 1.9614000000000002e-05, + "loss": 1.407811279296875, + "step": 456000 + }, + { + "epoch": 60.81333333333333, + "grad_norm": 0.9085363149642944, + "learning_rate": 1.9607333333333335e-05, + "loss": 1.4023429870605468, + "step": 456100 + }, + { + "epoch": 60.82666666666667, + "grad_norm": 0.8209180235862732, + "learning_rate": 1.9600666666666667e-05, + "loss": 1.4042745971679687, + "step": 456200 + }, + { + "epoch": 60.84, + "grad_norm": 0.9050608277320862, + "learning_rate": 1.9594000000000002e-05, + "loss": 1.4010504150390626, + "step": 456300 + }, + { + "epoch": 60.85333333333333, + "grad_norm": 0.8617534637451172, + "learning_rate": 1.9587333333333335e-05, + "loss": 1.4049598693847656, + "step": 456400 + }, + { + "epoch": 60.86666666666667, + "grad_norm": 0.8977437615394592, + "learning_rate": 1.9580666666666667e-05, + "loss": 1.408564910888672, + "step": 456500 + }, + { + "epoch": 60.88, + "grad_norm": 0.9017003178596497, + "learning_rate": 1.9574e-05, + "loss": 1.4092807006835937, + "step": 456600 + }, + { + "epoch": 60.89333333333333, + "grad_norm": 0.8867468237876892, + "learning_rate": 1.9567333333333335e-05, + "loss": 1.4079061889648437, + "step": 456700 + }, + { + "epoch": 60.906666666666666, + "grad_norm": 0.9068670868873596, + "learning_rate": 1.9560666666666667e-05, + "loss": 1.408272705078125, + "step": 456800 + }, + { + "epoch": 60.92, + "grad_norm": 0.9402436017990112, + "learning_rate": 1.9554e-05, + "loss": 1.4082586669921875, + "step": 456900 + }, + { + "epoch": 60.93333333333333, + "grad_norm": 0.8949838280677795, + "learning_rate": 1.9547333333333335e-05, + "loss": 1.4101248168945313, + "step": 457000 + }, + { + "epoch": 60.946666666666665, + "grad_norm": 0.8980549573898315, + "learning_rate": 1.9540666666666667e-05, + "loss": 1.4082913208007812, + "step": 457100 + }, + { + "epoch": 60.96, + "grad_norm": 0.8805965781211853, + "learning_rate": 1.9534000000000003e-05, + "loss": 1.4107188415527343, + "step": 457200 + }, + { + "epoch": 60.973333333333336, + "grad_norm": 0.8333622217178345, + "learning_rate": 1.9527333333333332e-05, + "loss": 1.40792236328125, + "step": 457300 + }, + { + "epoch": 60.986666666666665, + "grad_norm": 0.872611403465271, + "learning_rate": 1.9520666666666668e-05, + "loss": 1.4117628479003905, + "step": 457400 + }, + { + "epoch": 61.0, + "grad_norm": 0.8566659092903137, + "learning_rate": 1.9514000000000003e-05, + "loss": 1.409874725341797, + "step": 457500 + }, + { + "epoch": 61.013333333333335, + "grad_norm": 0.8656761050224304, + "learning_rate": 1.9507333333333332e-05, + "loss": 1.3577760314941407, + "step": 457600 + }, + { + "epoch": 61.026666666666664, + "grad_norm": 0.8465045094490051, + "learning_rate": 1.9500733333333335e-05, + "loss": 1.358833770751953, + "step": 457700 + }, + { + "epoch": 61.04, + "grad_norm": 0.8309293985366821, + "learning_rate": 1.949406666666667e-05, + "loss": 1.356152801513672, + "step": 457800 + }, + { + "epoch": 61.053333333333335, + "grad_norm": 0.9162067174911499, + "learning_rate": 1.94874e-05, + "loss": 1.355301971435547, + "step": 457900 + }, + { + "epoch": 61.06666666666667, + "grad_norm": 0.9088298678398132, + "learning_rate": 1.9480733333333335e-05, + "loss": 1.3575556945800782, + "step": 458000 + }, + { + "epoch": 61.08, + "grad_norm": 0.8428143262863159, + "learning_rate": 1.9474066666666667e-05, + "loss": 1.3585945129394532, + "step": 458100 + }, + { + "epoch": 61.093333333333334, + "grad_norm": 0.8562920093536377, + "learning_rate": 1.9467400000000003e-05, + "loss": 1.361529541015625, + "step": 458200 + }, + { + "epoch": 61.10666666666667, + "grad_norm": 0.8210142254829407, + "learning_rate": 1.9460733333333335e-05, + "loss": 1.3608488464355468, + "step": 458300 + }, + { + "epoch": 61.12, + "grad_norm": 0.8906102180480957, + "learning_rate": 1.9454066666666667e-05, + "loss": 1.3610110473632813, + "step": 458400 + }, + { + "epoch": 61.13333333333333, + "grad_norm": 0.8572280406951904, + "learning_rate": 1.9447400000000003e-05, + "loss": 1.359154510498047, + "step": 458500 + }, + { + "epoch": 61.14666666666667, + "grad_norm": 0.8383269906044006, + "learning_rate": 1.9440733333333332e-05, + "loss": 1.3642387390136719, + "step": 458600 + }, + { + "epoch": 61.16, + "grad_norm": 0.8838930726051331, + "learning_rate": 1.9434066666666667e-05, + "loss": 1.3644644165039062, + "step": 458700 + }, + { + "epoch": 61.17333333333333, + "grad_norm": 0.8675736784934998, + "learning_rate": 1.94274e-05, + "loss": 1.3637721252441406, + "step": 458800 + }, + { + "epoch": 61.18666666666667, + "grad_norm": 0.8860127329826355, + "learning_rate": 1.9420733333333335e-05, + "loss": 1.3696493530273437, + "step": 458900 + }, + { + "epoch": 61.2, + "grad_norm": 0.8294709920883179, + "learning_rate": 1.9414066666666668e-05, + "loss": 1.3652156066894532, + "step": 459000 + }, + { + "epoch": 61.21333333333333, + "grad_norm": 0.8422327041625977, + "learning_rate": 1.94074e-05, + "loss": 1.36591064453125, + "step": 459100 + }, + { + "epoch": 61.22666666666667, + "grad_norm": 0.8764711618423462, + "learning_rate": 1.9400733333333336e-05, + "loss": 1.3690542602539062, + "step": 459200 + }, + { + "epoch": 61.24, + "grad_norm": 0.8453260064125061, + "learning_rate": 1.9394066666666668e-05, + "loss": 1.3683854675292968, + "step": 459300 + }, + { + "epoch": 61.25333333333333, + "grad_norm": 0.8774312734603882, + "learning_rate": 1.93874e-05, + "loss": 1.3740834045410155, + "step": 459400 + }, + { + "epoch": 61.266666666666666, + "grad_norm": 0.8766496777534485, + "learning_rate": 1.9380733333333336e-05, + "loss": 1.3723397827148438, + "step": 459500 + }, + { + "epoch": 61.28, + "grad_norm": 0.8459547162055969, + "learning_rate": 1.9374066666666668e-05, + "loss": 1.3714936828613282, + "step": 459600 + }, + { + "epoch": 61.29333333333334, + "grad_norm": 0.8652738332748413, + "learning_rate": 1.9367466666666667e-05, + "loss": 1.3694456481933595, + "step": 459700 + }, + { + "epoch": 61.306666666666665, + "grad_norm": 0.8927618265151978, + "learning_rate": 1.9360800000000003e-05, + "loss": 1.3731556701660157, + "step": 459800 + }, + { + "epoch": 61.32, + "grad_norm": 0.9212049841880798, + "learning_rate": 1.9354133333333335e-05, + "loss": 1.371415557861328, + "step": 459900 + }, + { + "epoch": 61.333333333333336, + "grad_norm": 0.8938565850257874, + "learning_rate": 1.9347466666666667e-05, + "loss": 1.3725595092773437, + "step": 460000 + }, + { + "epoch": 61.346666666666664, + "grad_norm": 0.9088102579116821, + "learning_rate": 1.93408e-05, + "loss": 1.368966064453125, + "step": 460100 + }, + { + "epoch": 61.36, + "grad_norm": 0.8691730499267578, + "learning_rate": 1.9334133333333335e-05, + "loss": 1.374231719970703, + "step": 460200 + }, + { + "epoch": 61.373333333333335, + "grad_norm": 0.922798752784729, + "learning_rate": 1.9327466666666667e-05, + "loss": 1.3764288330078125, + "step": 460300 + }, + { + "epoch": 61.38666666666666, + "grad_norm": 0.83963543176651, + "learning_rate": 1.93208e-05, + "loss": 1.3810987854003907, + "step": 460400 + }, + { + "epoch": 61.4, + "grad_norm": 0.839726448059082, + "learning_rate": 1.9314133333333335e-05, + "loss": 1.3756941223144532, + "step": 460500 + }, + { + "epoch": 61.413333333333334, + "grad_norm": 0.8824960589408875, + "learning_rate": 1.9307466666666668e-05, + "loss": 1.3773788452148437, + "step": 460600 + }, + { + "epoch": 61.42666666666667, + "grad_norm": 0.8845879435539246, + "learning_rate": 1.9300800000000003e-05, + "loss": 1.377089080810547, + "step": 460700 + }, + { + "epoch": 61.44, + "grad_norm": 0.8615458011627197, + "learning_rate": 1.9294133333333332e-05, + "loss": 1.3773002624511719, + "step": 460800 + }, + { + "epoch": 61.45333333333333, + "grad_norm": 0.934096097946167, + "learning_rate": 1.9287466666666668e-05, + "loss": 1.3814968872070312, + "step": 460900 + }, + { + "epoch": 61.46666666666667, + "grad_norm": 0.8833667039871216, + "learning_rate": 1.92808e-05, + "loss": 1.379684295654297, + "step": 461000 + }, + { + "epoch": 61.48, + "grad_norm": 0.8190123438835144, + "learning_rate": 1.9274133333333332e-05, + "loss": 1.3798077392578125, + "step": 461100 + }, + { + "epoch": 61.49333333333333, + "grad_norm": 0.8761352300643921, + "learning_rate": 1.9267466666666668e-05, + "loss": 1.3821427917480469, + "step": 461200 + }, + { + "epoch": 61.50666666666667, + "grad_norm": 0.8497684597969055, + "learning_rate": 1.92608e-05, + "loss": 1.3799111938476563, + "step": 461300 + }, + { + "epoch": 61.52, + "grad_norm": 0.9118313789367676, + "learning_rate": 1.9254133333333336e-05, + "loss": 1.3833085632324218, + "step": 461400 + }, + { + "epoch": 61.53333333333333, + "grad_norm": 0.8651177287101746, + "learning_rate": 1.9247466666666665e-05, + "loss": 1.3809347534179688, + "step": 461500 + }, + { + "epoch": 61.54666666666667, + "grad_norm": 0.889124870300293, + "learning_rate": 1.92408e-05, + "loss": 1.3849130249023438, + "step": 461600 + }, + { + "epoch": 61.56, + "grad_norm": 0.8513779640197754, + "learning_rate": 1.9234200000000003e-05, + "loss": 1.3853852844238281, + "step": 461700 + }, + { + "epoch": 61.57333333333333, + "grad_norm": 0.887895941734314, + "learning_rate": 1.9227533333333332e-05, + "loss": 1.3864006042480468, + "step": 461800 + }, + { + "epoch": 61.586666666666666, + "grad_norm": 0.8509908318519592, + "learning_rate": 1.9220866666666668e-05, + "loss": 1.3839459228515625, + "step": 461900 + }, + { + "epoch": 61.6, + "grad_norm": 0.9221972823143005, + "learning_rate": 1.9214200000000003e-05, + "loss": 1.383968048095703, + "step": 462000 + }, + { + "epoch": 61.61333333333333, + "grad_norm": 0.9250000715255737, + "learning_rate": 1.9207533333333332e-05, + "loss": 1.3876034545898437, + "step": 462100 + }, + { + "epoch": 61.626666666666665, + "grad_norm": 0.8646901845932007, + "learning_rate": 1.9200866666666668e-05, + "loss": 1.3860377502441406, + "step": 462200 + }, + { + "epoch": 61.64, + "grad_norm": 0.861657440662384, + "learning_rate": 1.91942e-05, + "loss": 1.383225555419922, + "step": 462300 + }, + { + "epoch": 61.653333333333336, + "grad_norm": 0.8866887092590332, + "learning_rate": 1.9187533333333336e-05, + "loss": 1.3847361755371095, + "step": 462400 + }, + { + "epoch": 61.666666666666664, + "grad_norm": 0.9262802004814148, + "learning_rate": 1.9180866666666668e-05, + "loss": 1.388157958984375, + "step": 462500 + }, + { + "epoch": 61.68, + "grad_norm": 0.9400535225868225, + "learning_rate": 1.91742e-05, + "loss": 1.393813018798828, + "step": 462600 + }, + { + "epoch": 61.693333333333335, + "grad_norm": 0.8449798822402954, + "learning_rate": 1.9167533333333336e-05, + "loss": 1.3909236145019532, + "step": 462700 + }, + { + "epoch": 61.70666666666666, + "grad_norm": 0.9139823913574219, + "learning_rate": 1.9160866666666668e-05, + "loss": 1.3890992736816405, + "step": 462800 + }, + { + "epoch": 61.72, + "grad_norm": 0.8991366028785706, + "learning_rate": 1.91542e-05, + "loss": 1.3909164428710938, + "step": 462900 + }, + { + "epoch": 61.733333333333334, + "grad_norm": 0.8757520914077759, + "learning_rate": 1.9147533333333333e-05, + "loss": 1.3896699523925782, + "step": 463000 + }, + { + "epoch": 61.74666666666667, + "grad_norm": 0.9049115180969238, + "learning_rate": 1.9140866666666668e-05, + "loss": 1.394837646484375, + "step": 463100 + }, + { + "epoch": 61.76, + "grad_norm": 0.8733699917793274, + "learning_rate": 1.91342e-05, + "loss": 1.3964109802246094, + "step": 463200 + }, + { + "epoch": 61.77333333333333, + "grad_norm": 0.8619510531425476, + "learning_rate": 1.9127533333333333e-05, + "loss": 1.3983462524414063, + "step": 463300 + }, + { + "epoch": 61.78666666666667, + "grad_norm": 0.9041216373443604, + "learning_rate": 1.912086666666667e-05, + "loss": 1.3950437927246093, + "step": 463400 + }, + { + "epoch": 61.8, + "grad_norm": 0.8376539349555969, + "learning_rate": 1.91142e-05, + "loss": 1.3959678649902343, + "step": 463500 + }, + { + "epoch": 61.81333333333333, + "grad_norm": 0.9201698899269104, + "learning_rate": 1.9107533333333336e-05, + "loss": 1.3929420471191407, + "step": 463600 + }, + { + "epoch": 61.82666666666667, + "grad_norm": 0.8924663066864014, + "learning_rate": 1.9100866666666665e-05, + "loss": 1.3928451538085938, + "step": 463700 + }, + { + "epoch": 61.84, + "grad_norm": 0.9583051204681396, + "learning_rate": 1.9094266666666668e-05, + "loss": 1.3949006652832032, + "step": 463800 + }, + { + "epoch": 61.85333333333333, + "grad_norm": 0.9100115299224854, + "learning_rate": 1.90876e-05, + "loss": 1.3972018432617188, + "step": 463900 + }, + { + "epoch": 61.86666666666667, + "grad_norm": 0.8739942908287048, + "learning_rate": 1.9080933333333336e-05, + "loss": 1.3991426086425782, + "step": 464000 + }, + { + "epoch": 61.88, + "grad_norm": 0.8799852728843689, + "learning_rate": 1.9074266666666668e-05, + "loss": 1.3998698425292968, + "step": 464100 + }, + { + "epoch": 61.89333333333333, + "grad_norm": 0.9696583151817322, + "learning_rate": 1.9067600000000004e-05, + "loss": 1.3958427429199218, + "step": 464200 + }, + { + "epoch": 61.906666666666666, + "grad_norm": 0.8549162745475769, + "learning_rate": 1.9060933333333332e-05, + "loss": 1.3939924621582032, + "step": 464300 + }, + { + "epoch": 61.92, + "grad_norm": 0.8806065320968628, + "learning_rate": 1.9054266666666668e-05, + "loss": 1.3964865112304687, + "step": 464400 + }, + { + "epoch": 61.93333333333333, + "grad_norm": 0.9188470840454102, + "learning_rate": 1.90476e-05, + "loss": 1.399241943359375, + "step": 464500 + }, + { + "epoch": 61.946666666666665, + "grad_norm": 0.8856474161148071, + "learning_rate": 1.9040933333333336e-05, + "loss": 1.3998440551757811, + "step": 464600 + }, + { + "epoch": 61.96, + "grad_norm": 0.9105949401855469, + "learning_rate": 1.903426666666667e-05, + "loss": 1.4019500732421875, + "step": 464700 + }, + { + "epoch": 61.973333333333336, + "grad_norm": 0.8759123682975769, + "learning_rate": 1.90276e-05, + "loss": 1.4000885009765625, + "step": 464800 + }, + { + "epoch": 61.986666666666665, + "grad_norm": 0.9017794728279114, + "learning_rate": 1.9020933333333336e-05, + "loss": 1.3990060424804687, + "step": 464900 + }, + { + "epoch": 62.0, + "grad_norm": 0.9188961982727051, + "learning_rate": 1.9014266666666665e-05, + "loss": 1.4041940307617187, + "step": 465000 + }, + { + "epoch": 62.013333333333335, + "grad_norm": 0.8573675751686096, + "learning_rate": 1.90076e-05, + "loss": 1.3513052368164062, + "step": 465100 + }, + { + "epoch": 62.026666666666664, + "grad_norm": 0.8655972480773926, + "learning_rate": 1.9000933333333333e-05, + "loss": 1.3455097961425782, + "step": 465200 + }, + { + "epoch": 62.04, + "grad_norm": 0.8731736540794373, + "learning_rate": 1.899426666666667e-05, + "loss": 1.3468002319335937, + "step": 465300 + }, + { + "epoch": 62.053333333333335, + "grad_norm": 0.8214830756187439, + "learning_rate": 1.89876e-05, + "loss": 1.3466973876953126, + "step": 465400 + }, + { + "epoch": 62.06666666666667, + "grad_norm": 0.8522217273712158, + "learning_rate": 1.8980933333333333e-05, + "loss": 1.3482205200195312, + "step": 465500 + }, + { + "epoch": 62.08, + "grad_norm": 0.8417600989341736, + "learning_rate": 1.897426666666667e-05, + "loss": 1.34806640625, + "step": 465600 + }, + { + "epoch": 62.093333333333334, + "grad_norm": 0.8675144910812378, + "learning_rate": 1.89676e-05, + "loss": 1.3566635131835938, + "step": 465700 + }, + { + "epoch": 62.10666666666667, + "grad_norm": 0.7986916303634644, + "learning_rate": 1.8961e-05, + "loss": 1.353138427734375, + "step": 465800 + }, + { + "epoch": 62.12, + "grad_norm": 0.8446239829063416, + "learning_rate": 1.8954333333333336e-05, + "loss": 1.3517807006835938, + "step": 465900 + }, + { + "epoch": 62.13333333333333, + "grad_norm": 0.8451570272445679, + "learning_rate": 1.8947666666666665e-05, + "loss": 1.3576107788085938, + "step": 466000 + }, + { + "epoch": 62.14666666666667, + "grad_norm": 0.8504143953323364, + "learning_rate": 1.8941e-05, + "loss": 1.357427215576172, + "step": 466100 + }, + { + "epoch": 62.16, + "grad_norm": 0.8272042274475098, + "learning_rate": 1.8934333333333336e-05, + "loss": 1.3584977722167968, + "step": 466200 + }, + { + "epoch": 62.17333333333333, + "grad_norm": 0.8340880274772644, + "learning_rate": 1.892766666666667e-05, + "loss": 1.35913330078125, + "step": 466300 + }, + { + "epoch": 62.18666666666667, + "grad_norm": 0.8207993507385254, + "learning_rate": 1.8921e-05, + "loss": 1.356055908203125, + "step": 466400 + }, + { + "epoch": 62.2, + "grad_norm": 0.8401222229003906, + "learning_rate": 1.8914333333333333e-05, + "loss": 1.3570013427734375, + "step": 466500 + }, + { + "epoch": 62.21333333333333, + "grad_norm": 0.8501874804496765, + "learning_rate": 1.890766666666667e-05, + "loss": 1.3550076293945312, + "step": 466600 + }, + { + "epoch": 62.22666666666667, + "grad_norm": 0.8478946089744568, + "learning_rate": 1.8901e-05, + "loss": 1.3626107788085937, + "step": 466700 + }, + { + "epoch": 62.24, + "grad_norm": 0.889898955821991, + "learning_rate": 1.8894333333333333e-05, + "loss": 1.3627383422851562, + "step": 466800 + }, + { + "epoch": 62.25333333333333, + "grad_norm": 0.8666733503341675, + "learning_rate": 1.888766666666667e-05, + "loss": 1.3645501708984376, + "step": 466900 + }, + { + "epoch": 62.266666666666666, + "grad_norm": 0.9081425070762634, + "learning_rate": 1.8881e-05, + "loss": 1.3609548950195312, + "step": 467000 + }, + { + "epoch": 62.28, + "grad_norm": 0.8720145225524902, + "learning_rate": 1.8874333333333337e-05, + "loss": 1.365575714111328, + "step": 467100 + }, + { + "epoch": 62.29333333333334, + "grad_norm": 0.8420373797416687, + "learning_rate": 1.8867666666666666e-05, + "loss": 1.3625498962402345, + "step": 467200 + }, + { + "epoch": 62.306666666666665, + "grad_norm": 0.8779093623161316, + "learning_rate": 1.8861e-05, + "loss": 1.3643501281738282, + "step": 467300 + }, + { + "epoch": 62.32, + "grad_norm": 0.8036565780639648, + "learning_rate": 1.8854333333333333e-05, + "loss": 1.3618597412109374, + "step": 467400 + }, + { + "epoch": 62.333333333333336, + "grad_norm": 0.8801616430282593, + "learning_rate": 1.8847666666666666e-05, + "loss": 1.3635311889648438, + "step": 467500 + }, + { + "epoch": 62.346666666666664, + "grad_norm": 0.8832975029945374, + "learning_rate": 1.8841e-05, + "loss": 1.3624273681640624, + "step": 467600 + }, + { + "epoch": 62.36, + "grad_norm": 0.8669077157974243, + "learning_rate": 1.8834333333333334e-05, + "loss": 1.3672244262695312, + "step": 467700 + }, + { + "epoch": 62.373333333333335, + "grad_norm": 0.8744094371795654, + "learning_rate": 1.8827733333333333e-05, + "loss": 1.3657164001464843, + "step": 467800 + }, + { + "epoch": 62.38666666666666, + "grad_norm": 0.8977140784263611, + "learning_rate": 1.882106666666667e-05, + "loss": 1.3728543090820313, + "step": 467900 + }, + { + "epoch": 62.4, + "grad_norm": 0.9251410961151123, + "learning_rate": 1.88144e-05, + "loss": 1.3700556945800781, + "step": 468000 + }, + { + "epoch": 62.413333333333334, + "grad_norm": 0.8600748181343079, + "learning_rate": 1.8807733333333336e-05, + "loss": 1.3633903503417968, + "step": 468100 + }, + { + "epoch": 62.42666666666667, + "grad_norm": 0.8662360310554504, + "learning_rate": 1.8801066666666665e-05, + "loss": 1.3714529418945312, + "step": 468200 + }, + { + "epoch": 62.44, + "grad_norm": 0.8972686529159546, + "learning_rate": 1.87944e-05, + "loss": 1.3743254089355468, + "step": 468300 + }, + { + "epoch": 62.45333333333333, + "grad_norm": 0.8791953921318054, + "learning_rate": 1.8787733333333337e-05, + "loss": 1.3700238037109376, + "step": 468400 + }, + { + "epoch": 62.46666666666667, + "grad_norm": 0.8646233677864075, + "learning_rate": 1.8781066666666665e-05, + "loss": 1.3702452087402344, + "step": 468500 + }, + { + "epoch": 62.48, + "grad_norm": 0.8732235431671143, + "learning_rate": 1.87744e-05, + "loss": 1.381118621826172, + "step": 468600 + }, + { + "epoch": 62.49333333333333, + "grad_norm": 0.8889748454093933, + "learning_rate": 1.8767733333333333e-05, + "loss": 1.3723052978515624, + "step": 468700 + }, + { + "epoch": 62.50666666666667, + "grad_norm": 0.8828487992286682, + "learning_rate": 1.876106666666667e-05, + "loss": 1.3749916076660156, + "step": 468800 + }, + { + "epoch": 62.52, + "grad_norm": 0.842641294002533, + "learning_rate": 1.87544e-05, + "loss": 1.3710438537597656, + "step": 468900 + }, + { + "epoch": 62.53333333333333, + "grad_norm": 0.8470684885978699, + "learning_rate": 1.8747733333333333e-05, + "loss": 1.37222412109375, + "step": 469000 + }, + { + "epoch": 62.54666666666667, + "grad_norm": 0.9085938334465027, + "learning_rate": 1.874106666666667e-05, + "loss": 1.3758197021484375, + "step": 469100 + }, + { + "epoch": 62.56, + "grad_norm": 0.8867812156677246, + "learning_rate": 1.87344e-05, + "loss": 1.3802314758300782, + "step": 469200 + }, + { + "epoch": 62.57333333333333, + "grad_norm": 0.8809147477149963, + "learning_rate": 1.8727733333333334e-05, + "loss": 1.3785780334472657, + "step": 469300 + }, + { + "epoch": 62.586666666666666, + "grad_norm": 0.8905417323112488, + "learning_rate": 1.8721066666666666e-05, + "loss": 1.3713362121582031, + "step": 469400 + }, + { + "epoch": 62.6, + "grad_norm": 0.8625428080558777, + "learning_rate": 1.87144e-05, + "loss": 1.3784394836425782, + "step": 469500 + }, + { + "epoch": 62.61333333333333, + "grad_norm": 0.8563883304595947, + "learning_rate": 1.8707733333333334e-05, + "loss": 1.3763919067382813, + "step": 469600 + }, + { + "epoch": 62.626666666666665, + "grad_norm": 0.9011384844779968, + "learning_rate": 1.8701066666666666e-05, + "loss": 1.379695587158203, + "step": 469700 + }, + { + "epoch": 62.64, + "grad_norm": 0.8625617623329163, + "learning_rate": 1.8694400000000002e-05, + "loss": 1.376241455078125, + "step": 469800 + }, + { + "epoch": 62.653333333333336, + "grad_norm": 0.9148832559585571, + "learning_rate": 1.86878e-05, + "loss": 1.3796707153320313, + "step": 469900 + }, + { + "epoch": 62.666666666666664, + "grad_norm": 0.8644863367080688, + "learning_rate": 1.8681133333333333e-05, + "loss": 1.3743251037597657, + "step": 470000 + }, + { + "epoch": 62.68, + "grad_norm": 0.8707835674285889, + "learning_rate": 1.867446666666667e-05, + "loss": 1.3785989379882813, + "step": 470100 + }, + { + "epoch": 62.693333333333335, + "grad_norm": 0.8736674785614014, + "learning_rate": 1.86678e-05, + "loss": 1.3785296630859376, + "step": 470200 + }, + { + "epoch": 62.70666666666666, + "grad_norm": 0.8863952159881592, + "learning_rate": 1.8661133333333333e-05, + "loss": 1.3846035766601563, + "step": 470300 + }, + { + "epoch": 62.72, + "grad_norm": 0.8530660271644592, + "learning_rate": 1.865446666666667e-05, + "loss": 1.3847772216796874, + "step": 470400 + }, + { + "epoch": 62.733333333333334, + "grad_norm": 0.9117617607116699, + "learning_rate": 1.86478e-05, + "loss": 1.379307403564453, + "step": 470500 + }, + { + "epoch": 62.74666666666667, + "grad_norm": 0.9356516003608704, + "learning_rate": 1.8641133333333337e-05, + "loss": 1.3868818664550782, + "step": 470600 + }, + { + "epoch": 62.76, + "grad_norm": 0.9563553929328918, + "learning_rate": 1.8634466666666666e-05, + "loss": 1.3831312561035156, + "step": 470700 + }, + { + "epoch": 62.77333333333333, + "grad_norm": 0.8613978028297424, + "learning_rate": 1.86278e-05, + "loss": 1.386735382080078, + "step": 470800 + }, + { + "epoch": 62.78666666666667, + "grad_norm": 0.8880415558815002, + "learning_rate": 1.8621133333333334e-05, + "loss": 1.3830174255371093, + "step": 470900 + }, + { + "epoch": 62.8, + "grad_norm": 0.8753419518470764, + "learning_rate": 1.861446666666667e-05, + "loss": 1.3831968688964844, + "step": 471000 + }, + { + "epoch": 62.81333333333333, + "grad_norm": 0.8973806500434875, + "learning_rate": 1.86078e-05, + "loss": 1.384782257080078, + "step": 471100 + }, + { + "epoch": 62.82666666666667, + "grad_norm": 0.8728386759757996, + "learning_rate": 1.8601133333333334e-05, + "loss": 1.3836083984375, + "step": 471200 + }, + { + "epoch": 62.84, + "grad_norm": 0.8542366623878479, + "learning_rate": 1.859446666666667e-05, + "loss": 1.3806695556640625, + "step": 471300 + }, + { + "epoch": 62.85333333333333, + "grad_norm": 0.9084987640380859, + "learning_rate": 1.85878e-05, + "loss": 1.3919306945800782, + "step": 471400 + }, + { + "epoch": 62.86666666666667, + "grad_norm": 0.9229134321212769, + "learning_rate": 1.8581133333333334e-05, + "loss": 1.3888737487792968, + "step": 471500 + }, + { + "epoch": 62.88, + "grad_norm": 0.9117254614830017, + "learning_rate": 1.8574466666666666e-05, + "loss": 1.389185791015625, + "step": 471600 + }, + { + "epoch": 62.89333333333333, + "grad_norm": 0.9002920389175415, + "learning_rate": 1.8567800000000002e-05, + "loss": 1.3870626831054687, + "step": 471700 + }, + { + "epoch": 62.906666666666666, + "grad_norm": 0.9569069743156433, + "learning_rate": 1.8561133333333334e-05, + "loss": 1.3885276794433594, + "step": 471800 + }, + { + "epoch": 62.92, + "grad_norm": 0.8567367196083069, + "learning_rate": 1.8554533333333333e-05, + "loss": 1.3927679443359375, + "step": 471900 + }, + { + "epoch": 62.93333333333333, + "grad_norm": 0.8821707963943481, + "learning_rate": 1.8547866666666666e-05, + "loss": 1.385771484375, + "step": 472000 + }, + { + "epoch": 62.946666666666665, + "grad_norm": 0.934012234210968, + "learning_rate": 1.85412e-05, + "loss": 1.3942887878417969, + "step": 472100 + }, + { + "epoch": 62.96, + "grad_norm": 0.9266797304153442, + "learning_rate": 1.8534533333333334e-05, + "loss": 1.3928118896484376, + "step": 472200 + }, + { + "epoch": 62.973333333333336, + "grad_norm": 0.9574691653251648, + "learning_rate": 1.852786666666667e-05, + "loss": 1.3905284118652343, + "step": 472300 + }, + { + "epoch": 62.986666666666665, + "grad_norm": 0.924963116645813, + "learning_rate": 1.8521199999999998e-05, + "loss": 1.3944451904296875, + "step": 472400 + }, + { + "epoch": 63.0, + "grad_norm": 0.8816106915473938, + "learning_rate": 1.8514533333333334e-05, + "loss": 1.393121795654297, + "step": 472500 + }, + { + "epoch": 63.013333333333335, + "grad_norm": 0.8383874297142029, + "learning_rate": 1.850786666666667e-05, + "loss": 1.3370849609375, + "step": 472600 + }, + { + "epoch": 63.026666666666664, + "grad_norm": 0.8403507471084595, + "learning_rate": 1.85012e-05, + "loss": 1.3425094604492187, + "step": 472700 + }, + { + "epoch": 63.04, + "grad_norm": 0.8906253576278687, + "learning_rate": 1.8494533333333334e-05, + "loss": 1.340731658935547, + "step": 472800 + }, + { + "epoch": 63.053333333333335, + "grad_norm": 0.9231695532798767, + "learning_rate": 1.8487866666666666e-05, + "loss": 1.3418489074707032, + "step": 472900 + }, + { + "epoch": 63.06666666666667, + "grad_norm": 0.879458487033844, + "learning_rate": 1.8481200000000002e-05, + "loss": 1.3442330932617188, + "step": 473000 + }, + { + "epoch": 63.08, + "grad_norm": 0.8238392472267151, + "learning_rate": 1.8474533333333334e-05, + "loss": 1.3447978210449218, + "step": 473100 + }, + { + "epoch": 63.093333333333334, + "grad_norm": 0.8179836273193359, + "learning_rate": 1.8467866666666666e-05, + "loss": 1.3443252563476562, + "step": 473200 + }, + { + "epoch": 63.10666666666667, + "grad_norm": 0.8274221420288086, + "learning_rate": 1.8461200000000002e-05, + "loss": 1.3449710083007813, + "step": 473300 + }, + { + "epoch": 63.12, + "grad_norm": 0.8805060982704163, + "learning_rate": 1.8454533333333334e-05, + "loss": 1.34772705078125, + "step": 473400 + }, + { + "epoch": 63.13333333333333, + "grad_norm": 0.856552004814148, + "learning_rate": 1.844786666666667e-05, + "loss": 1.34474609375, + "step": 473500 + }, + { + "epoch": 63.14666666666667, + "grad_norm": 0.8999550938606262, + "learning_rate": 1.84412e-05, + "loss": 1.3447769165039063, + "step": 473600 + }, + { + "epoch": 63.16, + "grad_norm": 0.8466945886611938, + "learning_rate": 1.8434533333333335e-05, + "loss": 1.3498774719238282, + "step": 473700 + }, + { + "epoch": 63.17333333333333, + "grad_norm": 0.8720507621765137, + "learning_rate": 1.8427866666666667e-05, + "loss": 1.3509268188476562, + "step": 473800 + }, + { + "epoch": 63.18666666666667, + "grad_norm": 0.8553282618522644, + "learning_rate": 1.84212e-05, + "loss": 1.3472882080078126, + "step": 473900 + }, + { + "epoch": 63.2, + "grad_norm": 0.8717467188835144, + "learning_rate": 1.84146e-05, + "loss": 1.3507821655273438, + "step": 474000 + }, + { + "epoch": 63.21333333333333, + "grad_norm": 0.8789405822753906, + "learning_rate": 1.8407933333333334e-05, + "loss": 1.3463182067871093, + "step": 474100 + }, + { + "epoch": 63.22666666666667, + "grad_norm": 0.8856403231620789, + "learning_rate": 1.8401266666666666e-05, + "loss": 1.3535433959960939, + "step": 474200 + }, + { + "epoch": 63.24, + "grad_norm": 0.8736082911491394, + "learning_rate": 1.8394600000000002e-05, + "loss": 1.353790283203125, + "step": 474300 + }, + { + "epoch": 63.25333333333333, + "grad_norm": 0.8425241112709045, + "learning_rate": 1.8387933333333334e-05, + "loss": 1.3515614318847655, + "step": 474400 + }, + { + "epoch": 63.266666666666666, + "grad_norm": 0.8841555118560791, + "learning_rate": 1.838126666666667e-05, + "loss": 1.357039794921875, + "step": 474500 + }, + { + "epoch": 63.28, + "grad_norm": 0.8851358890533447, + "learning_rate": 1.83746e-05, + "loss": 1.3571649169921876, + "step": 474600 + }, + { + "epoch": 63.29333333333334, + "grad_norm": 0.8119401335716248, + "learning_rate": 1.8367933333333334e-05, + "loss": 1.3512042236328126, + "step": 474700 + }, + { + "epoch": 63.306666666666665, + "grad_norm": 0.8968778848648071, + "learning_rate": 1.836126666666667e-05, + "loss": 1.3547596740722656, + "step": 474800 + }, + { + "epoch": 63.32, + "grad_norm": 0.9098058938980103, + "learning_rate": 1.83546e-05, + "loss": 1.3593733215332031, + "step": 474900 + }, + { + "epoch": 63.333333333333336, + "grad_norm": 0.8831583857536316, + "learning_rate": 1.8347933333333334e-05, + "loss": 1.355583953857422, + "step": 475000 + }, + { + "epoch": 63.346666666666664, + "grad_norm": 0.8631011843681335, + "learning_rate": 1.8341266666666667e-05, + "loss": 1.3582133483886718, + "step": 475100 + }, + { + "epoch": 63.36, + "grad_norm": 0.8748294115066528, + "learning_rate": 1.8334600000000002e-05, + "loss": 1.359095458984375, + "step": 475200 + }, + { + "epoch": 63.373333333333335, + "grad_norm": 0.8583943247795105, + "learning_rate": 1.8327933333333335e-05, + "loss": 1.3613153076171876, + "step": 475300 + }, + { + "epoch": 63.38666666666666, + "grad_norm": 0.8866649270057678, + "learning_rate": 1.8321266666666667e-05, + "loss": 1.3615292358398436, + "step": 475400 + }, + { + "epoch": 63.4, + "grad_norm": 0.8681355714797974, + "learning_rate": 1.8314600000000002e-05, + "loss": 1.3599000549316407, + "step": 475500 + }, + { + "epoch": 63.413333333333334, + "grad_norm": 0.9076934456825256, + "learning_rate": 1.8307933333333335e-05, + "loss": 1.3641069030761719, + "step": 475600 + }, + { + "epoch": 63.42666666666667, + "grad_norm": 0.8490332961082458, + "learning_rate": 1.8301266666666667e-05, + "loss": 1.3651712036132813, + "step": 475700 + }, + { + "epoch": 63.44, + "grad_norm": 0.8959413170814514, + "learning_rate": 1.82946e-05, + "loss": 1.3646134948730468, + "step": 475800 + }, + { + "epoch": 63.45333333333333, + "grad_norm": 0.843246340751648, + "learning_rate": 1.8287933333333335e-05, + "loss": 1.362332763671875, + "step": 475900 + }, + { + "epoch": 63.46666666666667, + "grad_norm": 0.874142050743103, + "learning_rate": 1.8281333333333334e-05, + "loss": 1.3656585693359375, + "step": 476000 + }, + { + "epoch": 63.48, + "grad_norm": 0.9227689504623413, + "learning_rate": 1.8274666666666666e-05, + "loss": 1.3628779602050782, + "step": 476100 + }, + { + "epoch": 63.49333333333333, + "grad_norm": 0.8379034399986267, + "learning_rate": 1.8268000000000002e-05, + "loss": 1.3627792358398438, + "step": 476200 + }, + { + "epoch": 63.50666666666667, + "grad_norm": 0.8998229503631592, + "learning_rate": 1.8261333333333334e-05, + "loss": 1.3685745239257812, + "step": 476300 + }, + { + "epoch": 63.52, + "grad_norm": 0.9073343276977539, + "learning_rate": 1.8254666666666666e-05, + "loss": 1.3673577880859376, + "step": 476400 + }, + { + "epoch": 63.53333333333333, + "grad_norm": 0.8960281014442444, + "learning_rate": 1.8248000000000002e-05, + "loss": 1.3650401306152344, + "step": 476500 + }, + { + "epoch": 63.54666666666667, + "grad_norm": 0.8500860333442688, + "learning_rate": 1.8241333333333334e-05, + "loss": 1.363343505859375, + "step": 476600 + }, + { + "epoch": 63.56, + "grad_norm": 0.9132857918739319, + "learning_rate": 1.8234666666666667e-05, + "loss": 1.3673420715332032, + "step": 476700 + }, + { + "epoch": 63.57333333333333, + "grad_norm": 0.851512610912323, + "learning_rate": 1.8228e-05, + "loss": 1.3654722595214843, + "step": 476800 + }, + { + "epoch": 63.586666666666666, + "grad_norm": 0.9432153701782227, + "learning_rate": 1.8221333333333335e-05, + "loss": 1.37032470703125, + "step": 476900 + }, + { + "epoch": 63.6, + "grad_norm": 0.8776945471763611, + "learning_rate": 1.821466666666667e-05, + "loss": 1.3680665588378906, + "step": 477000 + }, + { + "epoch": 63.61333333333333, + "grad_norm": 0.8363541960716248, + "learning_rate": 1.8208e-05, + "loss": 1.3700338745117187, + "step": 477100 + }, + { + "epoch": 63.626666666666665, + "grad_norm": 0.8852552771568298, + "learning_rate": 1.8201333333333335e-05, + "loss": 1.367037811279297, + "step": 477200 + }, + { + "epoch": 63.64, + "grad_norm": 0.9047751426696777, + "learning_rate": 1.8194666666666667e-05, + "loss": 1.3724662780761718, + "step": 477300 + }, + { + "epoch": 63.653333333333336, + "grad_norm": 0.9022383093833923, + "learning_rate": 1.8188e-05, + "loss": 1.36989013671875, + "step": 477400 + }, + { + "epoch": 63.666666666666664, + "grad_norm": 0.8873071670532227, + "learning_rate": 1.8181333333333335e-05, + "loss": 1.3709544372558593, + "step": 477500 + }, + { + "epoch": 63.68, + "grad_norm": 0.8178770542144775, + "learning_rate": 1.8174666666666667e-05, + "loss": 1.3764271545410156, + "step": 477600 + }, + { + "epoch": 63.693333333333335, + "grad_norm": 0.8374172449111938, + "learning_rate": 1.8168000000000003e-05, + "loss": 1.3749362182617189, + "step": 477700 + }, + { + "epoch": 63.70666666666666, + "grad_norm": 0.8704270124435425, + "learning_rate": 1.8161333333333332e-05, + "loss": 1.3716815185546876, + "step": 477800 + }, + { + "epoch": 63.72, + "grad_norm": 0.8928576111793518, + "learning_rate": 1.8154666666666667e-05, + "loss": 1.3758961486816406, + "step": 477900 + }, + { + "epoch": 63.733333333333334, + "grad_norm": 0.8924788236618042, + "learning_rate": 1.814806666666667e-05, + "loss": 1.3712451171875, + "step": 478000 + }, + { + "epoch": 63.74666666666667, + "grad_norm": 0.9000948071479797, + "learning_rate": 1.81414e-05, + "loss": 1.3741796875, + "step": 478100 + }, + { + "epoch": 63.76, + "grad_norm": 0.8834265470504761, + "learning_rate": 1.8134733333333334e-05, + "loss": 1.3737052917480468, + "step": 478200 + }, + { + "epoch": 63.77333333333333, + "grad_norm": 0.9444625377655029, + "learning_rate": 1.8128066666666667e-05, + "loss": 1.373978729248047, + "step": 478300 + }, + { + "epoch": 63.78666666666667, + "grad_norm": 0.9131369590759277, + "learning_rate": 1.81214e-05, + "loss": 1.376599578857422, + "step": 478400 + }, + { + "epoch": 63.8, + "grad_norm": 0.9047242999076843, + "learning_rate": 1.8114733333333335e-05, + "loss": 1.3785902404785155, + "step": 478500 + }, + { + "epoch": 63.81333333333333, + "grad_norm": 0.9182378649711609, + "learning_rate": 1.8108066666666667e-05, + "loss": 1.3755938720703125, + "step": 478600 + }, + { + "epoch": 63.82666666666667, + "grad_norm": 0.8585050106048584, + "learning_rate": 1.8101400000000003e-05, + "loss": 1.378345947265625, + "step": 478700 + }, + { + "epoch": 63.84, + "grad_norm": 0.9279830455780029, + "learning_rate": 1.809473333333333e-05, + "loss": 1.3787484741210938, + "step": 478800 + }, + { + "epoch": 63.85333333333333, + "grad_norm": 0.9332795739173889, + "learning_rate": 1.8088066666666667e-05, + "loss": 1.375228271484375, + "step": 478900 + }, + { + "epoch": 63.86666666666667, + "grad_norm": 0.8513908386230469, + "learning_rate": 1.8081400000000003e-05, + "loss": 1.3808787536621094, + "step": 479000 + }, + { + "epoch": 63.88, + "grad_norm": 0.8637625575065613, + "learning_rate": 1.8074733333333335e-05, + "loss": 1.3811036682128905, + "step": 479100 + }, + { + "epoch": 63.89333333333333, + "grad_norm": 0.8872289061546326, + "learning_rate": 1.8068066666666667e-05, + "loss": 1.3788679504394532, + "step": 479200 + }, + { + "epoch": 63.906666666666666, + "grad_norm": 0.8666730523109436, + "learning_rate": 1.80614e-05, + "loss": 1.3822543334960937, + "step": 479300 + }, + { + "epoch": 63.92, + "grad_norm": 0.8657490015029907, + "learning_rate": 1.8054733333333335e-05, + "loss": 1.3822019958496095, + "step": 479400 + }, + { + "epoch": 63.93333333333333, + "grad_norm": 0.8995828032493591, + "learning_rate": 1.8048066666666667e-05, + "loss": 1.3845445251464843, + "step": 479500 + }, + { + "epoch": 63.946666666666665, + "grad_norm": 0.882078230381012, + "learning_rate": 1.80414e-05, + "loss": 1.3831179809570313, + "step": 479600 + }, + { + "epoch": 63.96, + "grad_norm": 0.9140791296958923, + "learning_rate": 1.8034733333333335e-05, + "loss": 1.38243408203125, + "step": 479700 + }, + { + "epoch": 63.973333333333336, + "grad_norm": 0.9000608921051025, + "learning_rate": 1.8028066666666668e-05, + "loss": 1.3803366088867188, + "step": 479800 + }, + { + "epoch": 63.986666666666665, + "grad_norm": 0.8583875894546509, + "learning_rate": 1.8021400000000003e-05, + "loss": 1.378529052734375, + "step": 479900 + }, + { + "epoch": 64.0, + "grad_norm": 0.8945102095603943, + "learning_rate": 1.8014800000000002e-05, + "loss": 1.384607696533203, + "step": 480000 + }, + { + "epoch": 64.01333333333334, + "grad_norm": 0.8934009671211243, + "learning_rate": 1.8008133333333335e-05, + "loss": 1.3323703002929688, + "step": 480100 + }, + { + "epoch": 64.02666666666667, + "grad_norm": 0.9144300222396851, + "learning_rate": 1.8001466666666667e-05, + "loss": 1.330888671875, + "step": 480200 + }, + { + "epoch": 64.04, + "grad_norm": 0.8587374091148376, + "learning_rate": 1.79948e-05, + "loss": 1.3373068237304688, + "step": 480300 + }, + { + "epoch": 64.05333333333333, + "grad_norm": 0.8584490418434143, + "learning_rate": 1.7988133333333335e-05, + "loss": 1.3341929626464843, + "step": 480400 + }, + { + "epoch": 64.06666666666666, + "grad_norm": 0.8442391753196716, + "learning_rate": 1.7981466666666667e-05, + "loss": 1.3336114501953125, + "step": 480500 + }, + { + "epoch": 64.08, + "grad_norm": 0.8665919899940491, + "learning_rate": 1.79748e-05, + "loss": 1.338314208984375, + "step": 480600 + }, + { + "epoch": 64.09333333333333, + "grad_norm": 0.8454016447067261, + "learning_rate": 1.7968133333333335e-05, + "loss": 1.3366471862792968, + "step": 480700 + }, + { + "epoch": 64.10666666666667, + "grad_norm": 0.8860534429550171, + "learning_rate": 1.7961466666666667e-05, + "loss": 1.3377793884277345, + "step": 480800 + }, + { + "epoch": 64.12, + "grad_norm": 0.8886109590530396, + "learning_rate": 1.7954800000000003e-05, + "loss": 1.3379669189453125, + "step": 480900 + }, + { + "epoch": 64.13333333333334, + "grad_norm": 0.8925758600234985, + "learning_rate": 1.7948133333333332e-05, + "loss": 1.33873046875, + "step": 481000 + }, + { + "epoch": 64.14666666666666, + "grad_norm": 0.8780699968338013, + "learning_rate": 1.7941466666666668e-05, + "loss": 1.3358087158203125, + "step": 481100 + }, + { + "epoch": 64.16, + "grad_norm": 0.8357890844345093, + "learning_rate": 1.7934800000000003e-05, + "loss": 1.3425820922851563, + "step": 481200 + }, + { + "epoch": 64.17333333333333, + "grad_norm": 0.8988547921180725, + "learning_rate": 1.7928133333333332e-05, + "loss": 1.3423739624023439, + "step": 481300 + }, + { + "epoch": 64.18666666666667, + "grad_norm": 0.8725674152374268, + "learning_rate": 1.7921466666666668e-05, + "loss": 1.3443193054199218, + "step": 481400 + }, + { + "epoch": 64.2, + "grad_norm": 0.9312418103218079, + "learning_rate": 1.79148e-05, + "loss": 1.340561065673828, + "step": 481500 + }, + { + "epoch": 64.21333333333334, + "grad_norm": 0.9096835255622864, + "learning_rate": 1.7908133333333336e-05, + "loss": 1.3408326721191406, + "step": 481600 + }, + { + "epoch": 64.22666666666667, + "grad_norm": 0.869185745716095, + "learning_rate": 1.7901466666666668e-05, + "loss": 1.3416743469238281, + "step": 481700 + }, + { + "epoch": 64.24, + "grad_norm": 0.8828217387199402, + "learning_rate": 1.78948e-05, + "loss": 1.34640625, + "step": 481800 + }, + { + "epoch": 64.25333333333333, + "grad_norm": 0.8781388401985168, + "learning_rate": 1.7888133333333336e-05, + "loss": 1.3463336181640626, + "step": 481900 + }, + { + "epoch": 64.26666666666667, + "grad_norm": 0.8844797611236572, + "learning_rate": 1.7881466666666668e-05, + "loss": 1.3434307861328125, + "step": 482000 + }, + { + "epoch": 64.28, + "grad_norm": 0.9093835949897766, + "learning_rate": 1.7874866666666667e-05, + "loss": 1.3477468872070313, + "step": 482100 + }, + { + "epoch": 64.29333333333334, + "grad_norm": 0.9038063287734985, + "learning_rate": 1.7868200000000003e-05, + "loss": 1.3481039428710937, + "step": 482200 + }, + { + "epoch": 64.30666666666667, + "grad_norm": 0.8139824867248535, + "learning_rate": 1.7861533333333332e-05, + "loss": 1.34718505859375, + "step": 482300 + }, + { + "epoch": 64.32, + "grad_norm": 0.8709118366241455, + "learning_rate": 1.7854866666666667e-05, + "loss": 1.3521086120605468, + "step": 482400 + }, + { + "epoch": 64.33333333333333, + "grad_norm": 0.8406969904899597, + "learning_rate": 1.78482e-05, + "loss": 1.3482559204101563, + "step": 482500 + }, + { + "epoch": 64.34666666666666, + "grad_norm": 0.8496643304824829, + "learning_rate": 1.7841533333333335e-05, + "loss": 1.3503038024902343, + "step": 482600 + }, + { + "epoch": 64.36, + "grad_norm": 0.8447983264923096, + "learning_rate": 1.7834866666666668e-05, + "loss": 1.3484323120117188, + "step": 482700 + }, + { + "epoch": 64.37333333333333, + "grad_norm": 0.9065347909927368, + "learning_rate": 1.78282e-05, + "loss": 1.350572052001953, + "step": 482800 + }, + { + "epoch": 64.38666666666667, + "grad_norm": 0.8340687155723572, + "learning_rate": 1.7821533333333335e-05, + "loss": 1.3543763732910157, + "step": 482900 + }, + { + "epoch": 64.4, + "grad_norm": 0.8966395854949951, + "learning_rate": 1.7814866666666668e-05, + "loss": 1.3548075866699218, + "step": 483000 + }, + { + "epoch": 64.41333333333333, + "grad_norm": 0.8993328809738159, + "learning_rate": 1.78082e-05, + "loss": 1.354648895263672, + "step": 483100 + }, + { + "epoch": 64.42666666666666, + "grad_norm": 0.9374759793281555, + "learning_rate": 1.7801533333333332e-05, + "loss": 1.361200714111328, + "step": 483200 + }, + { + "epoch": 64.44, + "grad_norm": 0.8411123752593994, + "learning_rate": 1.7794866666666668e-05, + "loss": 1.3539253234863282, + "step": 483300 + }, + { + "epoch": 64.45333333333333, + "grad_norm": 0.8600159287452698, + "learning_rate": 1.7788200000000004e-05, + "loss": 1.3555935668945311, + "step": 483400 + }, + { + "epoch": 64.46666666666667, + "grad_norm": 0.8644974827766418, + "learning_rate": 1.7781533333333332e-05, + "loss": 1.3521513366699218, + "step": 483500 + }, + { + "epoch": 64.48, + "grad_norm": 0.8847560882568359, + "learning_rate": 1.7774866666666668e-05, + "loss": 1.3578965759277344, + "step": 483600 + }, + { + "epoch": 64.49333333333334, + "grad_norm": 0.9277763366699219, + "learning_rate": 1.77682e-05, + "loss": 1.3535302734375, + "step": 483700 + }, + { + "epoch": 64.50666666666666, + "grad_norm": 0.8610851168632507, + "learning_rate": 1.7761533333333333e-05, + "loss": 1.3627682495117188, + "step": 483800 + }, + { + "epoch": 64.52, + "grad_norm": 0.9150212407112122, + "learning_rate": 1.775486666666667e-05, + "loss": 1.3568341064453124, + "step": 483900 + }, + { + "epoch": 64.53333333333333, + "grad_norm": 0.8788309097290039, + "learning_rate": 1.77482e-05, + "loss": 1.35930908203125, + "step": 484000 + }, + { + "epoch": 64.54666666666667, + "grad_norm": 0.877782940864563, + "learning_rate": 1.77416e-05, + "loss": 1.3600112915039062, + "step": 484100 + }, + { + "epoch": 64.56, + "grad_norm": 0.8888121843338013, + "learning_rate": 1.7734933333333335e-05, + "loss": 1.3572149658203125, + "step": 484200 + }, + { + "epoch": 64.57333333333334, + "grad_norm": 0.884781539440155, + "learning_rate": 1.7728266666666668e-05, + "loss": 1.358846435546875, + "step": 484300 + }, + { + "epoch": 64.58666666666667, + "grad_norm": 0.8472477793693542, + "learning_rate": 1.7721600000000003e-05, + "loss": 1.3618157958984376, + "step": 484400 + }, + { + "epoch": 64.6, + "grad_norm": 0.8843161463737488, + "learning_rate": 1.7714933333333332e-05, + "loss": 1.3596778869628907, + "step": 484500 + }, + { + "epoch": 64.61333333333333, + "grad_norm": 0.8994573950767517, + "learning_rate": 1.7708266666666668e-05, + "loss": 1.3632307434082032, + "step": 484600 + }, + { + "epoch": 64.62666666666667, + "grad_norm": 0.8576304316520691, + "learning_rate": 1.77016e-05, + "loss": 1.363969268798828, + "step": 484700 + }, + { + "epoch": 64.64, + "grad_norm": 0.9063739776611328, + "learning_rate": 1.7694933333333332e-05, + "loss": 1.3635774230957032, + "step": 484800 + }, + { + "epoch": 64.65333333333334, + "grad_norm": 0.9036448001861572, + "learning_rate": 1.7688266666666668e-05, + "loss": 1.3654200744628906, + "step": 484900 + }, + { + "epoch": 64.66666666666667, + "grad_norm": 0.8992440104484558, + "learning_rate": 1.76816e-05, + "loss": 1.363550262451172, + "step": 485000 + }, + { + "epoch": 64.68, + "grad_norm": 0.9224612712860107, + "learning_rate": 1.7674933333333336e-05, + "loss": 1.363682403564453, + "step": 485100 + }, + { + "epoch": 64.69333333333333, + "grad_norm": 0.9652465581893921, + "learning_rate": 1.7668266666666665e-05, + "loss": 1.361661376953125, + "step": 485200 + }, + { + "epoch": 64.70666666666666, + "grad_norm": 0.9061663150787354, + "learning_rate": 1.76616e-05, + "loss": 1.3631404113769532, + "step": 485300 + }, + { + "epoch": 64.72, + "grad_norm": 0.8742295503616333, + "learning_rate": 1.7654933333333336e-05, + "loss": 1.365829620361328, + "step": 485400 + }, + { + "epoch": 64.73333333333333, + "grad_norm": 0.8189981579780579, + "learning_rate": 1.764826666666667e-05, + "loss": 1.3672276306152344, + "step": 485500 + }, + { + "epoch": 64.74666666666667, + "grad_norm": 0.9038211107254028, + "learning_rate": 1.76416e-05, + "loss": 1.367249755859375, + "step": 485600 + }, + { + "epoch": 64.76, + "grad_norm": 0.9079329967498779, + "learning_rate": 1.7634933333333333e-05, + "loss": 1.3658090209960938, + "step": 485700 + }, + { + "epoch": 64.77333333333333, + "grad_norm": 0.8886961340904236, + "learning_rate": 1.762826666666667e-05, + "loss": 1.3678729248046875, + "step": 485800 + }, + { + "epoch": 64.78666666666666, + "grad_norm": 0.8585326671600342, + "learning_rate": 1.76216e-05, + "loss": 1.3665878295898437, + "step": 485900 + }, + { + "epoch": 64.8, + "grad_norm": 0.8595222234725952, + "learning_rate": 1.7614933333333333e-05, + "loss": 1.370436553955078, + "step": 486000 + }, + { + "epoch": 64.81333333333333, + "grad_norm": 0.8745478987693787, + "learning_rate": 1.7608333333333336e-05, + "loss": 1.366385955810547, + "step": 486100 + }, + { + "epoch": 64.82666666666667, + "grad_norm": 0.8671027421951294, + "learning_rate": 1.7601666666666668e-05, + "loss": 1.3709756469726562, + "step": 486200 + }, + { + "epoch": 64.84, + "grad_norm": 0.8887233734130859, + "learning_rate": 1.7595e-05, + "loss": 1.3694778442382813, + "step": 486300 + }, + { + "epoch": 64.85333333333334, + "grad_norm": 0.8951408863067627, + "learning_rate": 1.7588333333333336e-05, + "loss": 1.3722352600097656, + "step": 486400 + }, + { + "epoch": 64.86666666666666, + "grad_norm": 0.9203891158103943, + "learning_rate": 1.7581666666666668e-05, + "loss": 1.3695021057128907, + "step": 486500 + }, + { + "epoch": 64.88, + "grad_norm": 0.8783578872680664, + "learning_rate": 1.7575e-05, + "loss": 1.3721949768066406, + "step": 486600 + }, + { + "epoch": 64.89333333333333, + "grad_norm": 0.8755213618278503, + "learning_rate": 1.7568333333333333e-05, + "loss": 1.3693832397460937, + "step": 486700 + }, + { + "epoch": 64.90666666666667, + "grad_norm": 0.8497536182403564, + "learning_rate": 1.7561666666666668e-05, + "loss": 1.3738072204589844, + "step": 486800 + }, + { + "epoch": 64.92, + "grad_norm": 0.8674045205116272, + "learning_rate": 1.7555e-05, + "loss": 1.3736123657226562, + "step": 486900 + }, + { + "epoch": 64.93333333333334, + "grad_norm": 0.924431562423706, + "learning_rate": 1.7548333333333333e-05, + "loss": 1.3719955444335938, + "step": 487000 + }, + { + "epoch": 64.94666666666667, + "grad_norm": 0.9057454466819763, + "learning_rate": 1.754166666666667e-05, + "loss": 1.3727705383300781, + "step": 487100 + }, + { + "epoch": 64.96, + "grad_norm": 0.8692907691001892, + "learning_rate": 1.7535e-05, + "loss": 1.3746487426757812, + "step": 487200 + }, + { + "epoch": 64.97333333333333, + "grad_norm": 0.9203537106513977, + "learning_rate": 1.7528333333333336e-05, + "loss": 1.37078369140625, + "step": 487300 + }, + { + "epoch": 64.98666666666666, + "grad_norm": 0.929847240447998, + "learning_rate": 1.7521666666666665e-05, + "loss": 1.3816091918945312, + "step": 487400 + }, + { + "epoch": 65.0, + "grad_norm": 0.9408981800079346, + "learning_rate": 1.7515e-05, + "loss": 1.3738502502441405, + "step": 487500 + }, + { + "epoch": 65.01333333333334, + "grad_norm": 0.8666677474975586, + "learning_rate": 1.7508333333333337e-05, + "loss": 1.3275274658203124, + "step": 487600 + }, + { + "epoch": 65.02666666666667, + "grad_norm": 0.883374035358429, + "learning_rate": 1.7501666666666665e-05, + "loss": 1.322354278564453, + "step": 487700 + }, + { + "epoch": 65.04, + "grad_norm": 0.9123470187187195, + "learning_rate": 1.7495e-05, + "loss": 1.3236787414550781, + "step": 487800 + }, + { + "epoch": 65.05333333333333, + "grad_norm": 0.8003033399581909, + "learning_rate": 1.7488333333333333e-05, + "loss": 1.3260044860839844, + "step": 487900 + }, + { + "epoch": 65.06666666666666, + "grad_norm": 0.8853775858879089, + "learning_rate": 1.748166666666667e-05, + "loss": 1.3234710693359375, + "step": 488000 + }, + { + "epoch": 65.08, + "grad_norm": 0.8827279806137085, + "learning_rate": 1.7475e-05, + "loss": 1.3306411743164062, + "step": 488100 + }, + { + "epoch": 65.09333333333333, + "grad_norm": 0.8656889200210571, + "learning_rate": 1.74684e-05, + "loss": 1.3258221435546875, + "step": 488200 + }, + { + "epoch": 65.10666666666667, + "grad_norm": 0.8413640856742859, + "learning_rate": 1.7461733333333336e-05, + "loss": 1.3284645080566406, + "step": 488300 + }, + { + "epoch": 65.12, + "grad_norm": 0.8911667466163635, + "learning_rate": 1.7455066666666668e-05, + "loss": 1.3333392333984375, + "step": 488400 + }, + { + "epoch": 65.13333333333334, + "grad_norm": 0.9145627021789551, + "learning_rate": 1.74484e-05, + "loss": 1.3321968078613282, + "step": 488500 + }, + { + "epoch": 65.14666666666666, + "grad_norm": 0.8469613194465637, + "learning_rate": 1.7441733333333336e-05, + "loss": 1.3286016845703126, + "step": 488600 + }, + { + "epoch": 65.16, + "grad_norm": 0.8619856238365173, + "learning_rate": 1.7435066666666665e-05, + "loss": 1.333924560546875, + "step": 488700 + }, + { + "epoch": 65.17333333333333, + "grad_norm": 0.9197624921798706, + "learning_rate": 1.74284e-05, + "loss": 1.3354296875, + "step": 488800 + }, + { + "epoch": 65.18666666666667, + "grad_norm": 0.8337293863296509, + "learning_rate": 1.7421733333333333e-05, + "loss": 1.3360716247558593, + "step": 488900 + }, + { + "epoch": 65.2, + "grad_norm": 0.8918238878250122, + "learning_rate": 1.741506666666667e-05, + "loss": 1.3376748657226563, + "step": 489000 + }, + { + "epoch": 65.21333333333334, + "grad_norm": 0.8520711660385132, + "learning_rate": 1.74084e-05, + "loss": 1.3359193420410156, + "step": 489100 + }, + { + "epoch": 65.22666666666667, + "grad_norm": 0.8971502184867859, + "learning_rate": 1.7401733333333333e-05, + "loss": 1.337491455078125, + "step": 489200 + }, + { + "epoch": 65.24, + "grad_norm": 0.9194210767745972, + "learning_rate": 1.739506666666667e-05, + "loss": 1.3362680053710938, + "step": 489300 + }, + { + "epoch": 65.25333333333333, + "grad_norm": 0.8638772964477539, + "learning_rate": 1.73884e-05, + "loss": 1.3411000061035157, + "step": 489400 + }, + { + "epoch": 65.26666666666667, + "grad_norm": 0.8430476188659668, + "learning_rate": 1.7381733333333333e-05, + "loss": 1.3354183959960937, + "step": 489500 + }, + { + "epoch": 65.28, + "grad_norm": 0.8449836373329163, + "learning_rate": 1.7375066666666666e-05, + "loss": 1.3406202697753906, + "step": 489600 + }, + { + "epoch": 65.29333333333334, + "grad_norm": 0.914038360118866, + "learning_rate": 1.73684e-05, + "loss": 1.3422569274902343, + "step": 489700 + }, + { + "epoch": 65.30666666666667, + "grad_norm": 0.8925040364265442, + "learning_rate": 1.7361733333333337e-05, + "loss": 1.3404884338378906, + "step": 489800 + }, + { + "epoch": 65.32, + "grad_norm": 0.9155729413032532, + "learning_rate": 1.7355066666666666e-05, + "loss": 1.3383328247070312, + "step": 489900 + }, + { + "epoch": 65.33333333333333, + "grad_norm": 0.8363727331161499, + "learning_rate": 1.73484e-05, + "loss": 1.3454109191894532, + "step": 490000 + }, + { + "epoch": 65.34666666666666, + "grad_norm": 0.8507674932479858, + "learning_rate": 1.7341733333333334e-05, + "loss": 1.3441416931152343, + "step": 490100 + }, + { + "epoch": 65.36, + "grad_norm": 0.8748927116394043, + "learning_rate": 1.7335133333333333e-05, + "loss": 1.3435476684570313, + "step": 490200 + }, + { + "epoch": 65.37333333333333, + "grad_norm": 0.8672348856925964, + "learning_rate": 1.732846666666667e-05, + "loss": 1.3459814453125, + "step": 490300 + }, + { + "epoch": 65.38666666666667, + "grad_norm": 0.88212651014328, + "learning_rate": 1.73218e-05, + "loss": 1.3407472229003907, + "step": 490400 + }, + { + "epoch": 65.4, + "grad_norm": 0.8583021759986877, + "learning_rate": 1.7315133333333333e-05, + "loss": 1.3463021850585937, + "step": 490500 + }, + { + "epoch": 65.41333333333333, + "grad_norm": 0.9152435660362244, + "learning_rate": 1.730846666666667e-05, + "loss": 1.3485971069335938, + "step": 490600 + }, + { + "epoch": 65.42666666666666, + "grad_norm": 0.8737739324569702, + "learning_rate": 1.73018e-05, + "loss": 1.3460276794433594, + "step": 490700 + }, + { + "epoch": 65.44, + "grad_norm": 0.9325355887413025, + "learning_rate": 1.7295133333333337e-05, + "loss": 1.3474514770507813, + "step": 490800 + }, + { + "epoch": 65.45333333333333, + "grad_norm": 0.890143632888794, + "learning_rate": 1.7288466666666665e-05, + "loss": 1.351007537841797, + "step": 490900 + }, + { + "epoch": 65.46666666666667, + "grad_norm": 0.8700892925262451, + "learning_rate": 1.72818e-05, + "loss": 1.350022735595703, + "step": 491000 + }, + { + "epoch": 65.48, + "grad_norm": 0.8921332955360413, + "learning_rate": 1.7275133333333333e-05, + "loss": 1.3486946105957032, + "step": 491100 + }, + { + "epoch": 65.49333333333334, + "grad_norm": 0.8532953262329102, + "learning_rate": 1.7268466666666666e-05, + "loss": 1.3525364685058594, + "step": 491200 + }, + { + "epoch": 65.50666666666666, + "grad_norm": 0.8729583024978638, + "learning_rate": 1.72618e-05, + "loss": 1.3483073425292968, + "step": 491300 + }, + { + "epoch": 65.52, + "grad_norm": 0.8708832263946533, + "learning_rate": 1.7255133333333334e-05, + "loss": 1.3524284362792969, + "step": 491400 + }, + { + "epoch": 65.53333333333333, + "grad_norm": 0.8295683860778809, + "learning_rate": 1.724846666666667e-05, + "loss": 1.3510769653320311, + "step": 491500 + }, + { + "epoch": 65.54666666666667, + "grad_norm": 0.8452852964401245, + "learning_rate": 1.7241799999999998e-05, + "loss": 1.3477371215820313, + "step": 491600 + }, + { + "epoch": 65.56, + "grad_norm": 0.8989164233207703, + "learning_rate": 1.7235133333333334e-05, + "loss": 1.3510366821289062, + "step": 491700 + }, + { + "epoch": 65.57333333333334, + "grad_norm": 0.9267915487289429, + "learning_rate": 1.722846666666667e-05, + "loss": 1.3512055969238281, + "step": 491800 + }, + { + "epoch": 65.58666666666667, + "grad_norm": 0.8938575387001038, + "learning_rate": 1.7221800000000002e-05, + "loss": 1.3483731079101562, + "step": 491900 + }, + { + "epoch": 65.6, + "grad_norm": 0.8966379761695862, + "learning_rate": 1.7215133333333334e-05, + "loss": 1.3562388610839844, + "step": 492000 + }, + { + "epoch": 65.61333333333333, + "grad_norm": 0.9655941724777222, + "learning_rate": 1.7208466666666666e-05, + "loss": 1.3572232055664062, + "step": 492100 + }, + { + "epoch": 65.62666666666667, + "grad_norm": 0.8997311592102051, + "learning_rate": 1.7201866666666665e-05, + "loss": 1.3530233764648438, + "step": 492200 + }, + { + "epoch": 65.64, + "grad_norm": 0.9643396735191345, + "learning_rate": 1.71952e-05, + "loss": 1.3538816833496095, + "step": 492300 + }, + { + "epoch": 65.65333333333334, + "grad_norm": 0.8839356899261475, + "learning_rate": 1.7188533333333333e-05, + "loss": 1.353894500732422, + "step": 492400 + }, + { + "epoch": 65.66666666666667, + "grad_norm": 0.8668888807296753, + "learning_rate": 1.718186666666667e-05, + "loss": 1.3576565551757813, + "step": 492500 + }, + { + "epoch": 65.68, + "grad_norm": 0.9418817758560181, + "learning_rate": 1.71752e-05, + "loss": 1.3552629089355468, + "step": 492600 + }, + { + "epoch": 65.69333333333333, + "grad_norm": 0.8563518524169922, + "learning_rate": 1.7168533333333333e-05, + "loss": 1.3564772033691406, + "step": 492700 + }, + { + "epoch": 65.70666666666666, + "grad_norm": 0.8663268685340881, + "learning_rate": 1.716186666666667e-05, + "loss": 1.3568724060058595, + "step": 492800 + }, + { + "epoch": 65.72, + "grad_norm": 0.9083966612815857, + "learning_rate": 1.71552e-05, + "loss": 1.3571450805664063, + "step": 492900 + }, + { + "epoch": 65.73333333333333, + "grad_norm": 0.8793100118637085, + "learning_rate": 1.7148533333333334e-05, + "loss": 1.358192901611328, + "step": 493000 + }, + { + "epoch": 65.74666666666667, + "grad_norm": 0.8852581977844238, + "learning_rate": 1.7141866666666666e-05, + "loss": 1.3583030700683594, + "step": 493100 + }, + { + "epoch": 65.76, + "grad_norm": 0.8649989366531372, + "learning_rate": 1.71352e-05, + "loss": 1.3607272338867187, + "step": 493200 + }, + { + "epoch": 65.77333333333333, + "grad_norm": 0.9444963335990906, + "learning_rate": 1.7128533333333334e-05, + "loss": 1.3594973754882813, + "step": 493300 + }, + { + "epoch": 65.78666666666666, + "grad_norm": 0.8799870610237122, + "learning_rate": 1.7121866666666666e-05, + "loss": 1.3647491455078125, + "step": 493400 + }, + { + "epoch": 65.8, + "grad_norm": 0.8851443529129028, + "learning_rate": 1.7115200000000002e-05, + "loss": 1.3620616149902345, + "step": 493500 + }, + { + "epoch": 65.81333333333333, + "grad_norm": 0.8632842898368835, + "learning_rate": 1.7108533333333334e-05, + "loss": 1.3599568176269532, + "step": 493600 + }, + { + "epoch": 65.82666666666667, + "grad_norm": 0.889917254447937, + "learning_rate": 1.710186666666667e-05, + "loss": 1.3595269775390626, + "step": 493700 + }, + { + "epoch": 65.84, + "grad_norm": 0.8989757895469666, + "learning_rate": 1.70952e-05, + "loss": 1.3624153137207031, + "step": 493800 + }, + { + "epoch": 65.85333333333334, + "grad_norm": 0.9110841751098633, + "learning_rate": 1.7088533333333334e-05, + "loss": 1.3641012573242188, + "step": 493900 + }, + { + "epoch": 65.86666666666666, + "grad_norm": 0.8911044597625732, + "learning_rate": 1.708186666666667e-05, + "loss": 1.3604220581054687, + "step": 494000 + }, + { + "epoch": 65.88, + "grad_norm": 0.8616090416908264, + "learning_rate": 1.70752e-05, + "loss": 1.3651438903808595, + "step": 494100 + }, + { + "epoch": 65.89333333333333, + "grad_norm": 0.9104633331298828, + "learning_rate": 1.70686e-05, + "loss": 1.3625418090820312, + "step": 494200 + }, + { + "epoch": 65.90666666666667, + "grad_norm": 0.8897743821144104, + "learning_rate": 1.7061933333333337e-05, + "loss": 1.3588157653808595, + "step": 494300 + }, + { + "epoch": 65.92, + "grad_norm": 0.9464109539985657, + "learning_rate": 1.7055266666666666e-05, + "loss": 1.3652839660644531, + "step": 494400 + }, + { + "epoch": 65.93333333333334, + "grad_norm": 0.8611365556716919, + "learning_rate": 1.70486e-05, + "loss": 1.3610792541503907, + "step": 494500 + }, + { + "epoch": 65.94666666666667, + "grad_norm": 0.9123305082321167, + "learning_rate": 1.7041933333333334e-05, + "loss": 1.3650492858886718, + "step": 494600 + }, + { + "epoch": 65.96, + "grad_norm": 0.8548987507820129, + "learning_rate": 1.703526666666667e-05, + "loss": 1.3598005676269531, + "step": 494700 + }, + { + "epoch": 65.97333333333333, + "grad_norm": 0.9494167566299438, + "learning_rate": 1.70286e-05, + "loss": 1.3669606018066407, + "step": 494800 + }, + { + "epoch": 65.98666666666666, + "grad_norm": 0.9031914472579956, + "learning_rate": 1.7021933333333334e-05, + "loss": 1.3666676330566405, + "step": 494900 + }, + { + "epoch": 66.0, + "grad_norm": 0.9000195264816284, + "learning_rate": 1.701526666666667e-05, + "loss": 1.3696188354492187, + "step": 495000 + }, + { + "epoch": 66.01333333333334, + "grad_norm": 0.8464391231536865, + "learning_rate": 1.70086e-05, + "loss": 1.3161962890625, + "step": 495100 + }, + { + "epoch": 66.02666666666667, + "grad_norm": 0.8270666599273682, + "learning_rate": 1.7001933333333334e-05, + "loss": 1.319871368408203, + "step": 495200 + }, + { + "epoch": 66.04, + "grad_norm": 0.852210283279419, + "learning_rate": 1.6995266666666666e-05, + "loss": 1.3218473815917968, + "step": 495300 + }, + { + "epoch": 66.05333333333333, + "grad_norm": 0.879362165927887, + "learning_rate": 1.6988600000000002e-05, + "loss": 1.318983612060547, + "step": 495400 + }, + { + "epoch": 66.06666666666666, + "grad_norm": 0.8811297416687012, + "learning_rate": 1.6981933333333334e-05, + "loss": 1.320828399658203, + "step": 495500 + }, + { + "epoch": 66.08, + "grad_norm": 0.8936617970466614, + "learning_rate": 1.6975266666666667e-05, + "loss": 1.319468994140625, + "step": 495600 + }, + { + "epoch": 66.09333333333333, + "grad_norm": 0.8245587944984436, + "learning_rate": 1.6968600000000002e-05, + "loss": 1.3200828552246093, + "step": 495700 + }, + { + "epoch": 66.10666666666667, + "grad_norm": 0.9125563502311707, + "learning_rate": 1.6961933333333334e-05, + "loss": 1.3209025573730468, + "step": 495800 + }, + { + "epoch": 66.12, + "grad_norm": 0.8604671955108643, + "learning_rate": 1.6955266666666667e-05, + "loss": 1.3225840759277343, + "step": 495900 + }, + { + "epoch": 66.13333333333334, + "grad_norm": 0.8596413135528564, + "learning_rate": 1.69486e-05, + "loss": 1.3214039611816406, + "step": 496000 + }, + { + "epoch": 66.14666666666666, + "grad_norm": 0.8338813185691833, + "learning_rate": 1.6941933333333335e-05, + "loss": 1.3240989685058593, + "step": 496100 + }, + { + "epoch": 66.16, + "grad_norm": 0.8821403980255127, + "learning_rate": 1.6935333333333334e-05, + "loss": 1.3248197937011719, + "step": 496200 + }, + { + "epoch": 66.17333333333333, + "grad_norm": 0.9026249051094055, + "learning_rate": 1.692866666666667e-05, + "loss": 1.3284371948242188, + "step": 496300 + }, + { + "epoch": 66.18666666666667, + "grad_norm": 0.8741923570632935, + "learning_rate": 1.6922e-05, + "loss": 1.3267121887207032, + "step": 496400 + }, + { + "epoch": 66.2, + "grad_norm": 0.8702110052108765, + "learning_rate": 1.6915333333333334e-05, + "loss": 1.326593475341797, + "step": 496500 + }, + { + "epoch": 66.21333333333334, + "grad_norm": 0.8829630613327026, + "learning_rate": 1.6908666666666666e-05, + "loss": 1.3249797058105468, + "step": 496600 + }, + { + "epoch": 66.22666666666667, + "grad_norm": 0.8170766830444336, + "learning_rate": 1.6902000000000002e-05, + "loss": 1.3290678405761718, + "step": 496700 + }, + { + "epoch": 66.24, + "grad_norm": 0.8386065363883972, + "learning_rate": 1.6895333333333334e-05, + "loss": 1.3280769348144532, + "step": 496800 + }, + { + "epoch": 66.25333333333333, + "grad_norm": 0.9074498414993286, + "learning_rate": 1.6888666666666666e-05, + "loss": 1.3333543395996095, + "step": 496900 + }, + { + "epoch": 66.26666666666667, + "grad_norm": 0.8878492116928101, + "learning_rate": 1.6882000000000002e-05, + "loss": 1.3320777893066407, + "step": 497000 + }, + { + "epoch": 66.28, + "grad_norm": 0.9520934820175171, + "learning_rate": 1.6875333333333334e-05, + "loss": 1.332491455078125, + "step": 497100 + }, + { + "epoch": 66.29333333333334, + "grad_norm": 0.8975771069526672, + "learning_rate": 1.686866666666667e-05, + "loss": 1.3285887145996094, + "step": 497200 + }, + { + "epoch": 66.30666666666667, + "grad_norm": 0.9283040165901184, + "learning_rate": 1.6862e-05, + "loss": 1.3328883361816406, + "step": 497300 + }, + { + "epoch": 66.32, + "grad_norm": 0.8596479892730713, + "learning_rate": 1.6855333333333334e-05, + "loss": 1.337887725830078, + "step": 497400 + }, + { + "epoch": 66.33333333333333, + "grad_norm": 0.8887840509414673, + "learning_rate": 1.6848666666666667e-05, + "loss": 1.3309591674804688, + "step": 497500 + }, + { + "epoch": 66.34666666666666, + "grad_norm": 0.8658081889152527, + "learning_rate": 1.6842e-05, + "loss": 1.3348977661132813, + "step": 497600 + }, + { + "epoch": 66.36, + "grad_norm": 0.8536320924758911, + "learning_rate": 1.6835333333333335e-05, + "loss": 1.3311074829101563, + "step": 497700 + }, + { + "epoch": 66.37333333333333, + "grad_norm": 0.8975630402565002, + "learning_rate": 1.6828666666666667e-05, + "loss": 1.3381869506835937, + "step": 497800 + }, + { + "epoch": 66.38666666666667, + "grad_norm": 0.9293047189712524, + "learning_rate": 1.6822000000000003e-05, + "loss": 1.338460693359375, + "step": 497900 + }, + { + "epoch": 66.4, + "grad_norm": 0.8931173086166382, + "learning_rate": 1.681533333333333e-05, + "loss": 1.3359477233886718, + "step": 498000 + }, + { + "epoch": 66.41333333333333, + "grad_norm": 0.9041270613670349, + "learning_rate": 1.6808666666666667e-05, + "loss": 1.3406436157226562, + "step": 498100 + }, + { + "epoch": 66.42666666666666, + "grad_norm": 0.8692404627799988, + "learning_rate": 1.680206666666667e-05, + "loss": 1.3393113708496094, + "step": 498200 + }, + { + "epoch": 66.44, + "grad_norm": 0.8984732627868652, + "learning_rate": 1.67954e-05, + "loss": 1.3371609497070311, + "step": 498300 + }, + { + "epoch": 66.45333333333333, + "grad_norm": 0.8967075347900391, + "learning_rate": 1.6788733333333334e-05, + "loss": 1.3435694885253906, + "step": 498400 + }, + { + "epoch": 66.46666666666667, + "grad_norm": 0.8753262162208557, + "learning_rate": 1.678206666666667e-05, + "loss": 1.3449749755859375, + "step": 498500 + }, + { + "epoch": 66.48, + "grad_norm": 0.907174825668335, + "learning_rate": 1.67754e-05, + "loss": 1.3397930908203124, + "step": 498600 + }, + { + "epoch": 66.49333333333334, + "grad_norm": 0.8881757855415344, + "learning_rate": 1.6768733333333334e-05, + "loss": 1.3411907958984375, + "step": 498700 + }, + { + "epoch": 66.50666666666666, + "grad_norm": 0.880740761756897, + "learning_rate": 1.6762066666666667e-05, + "loss": 1.3427651977539063, + "step": 498800 + }, + { + "epoch": 66.52, + "grad_norm": 0.8613744378089905, + "learning_rate": 1.6755400000000002e-05, + "loss": 1.34215576171875, + "step": 498900 + }, + { + "epoch": 66.53333333333333, + "grad_norm": 0.8675311803817749, + "learning_rate": 1.6748733333333335e-05, + "loss": 1.3419883728027344, + "step": 499000 + }, + { + "epoch": 66.54666666666667, + "grad_norm": 0.8745658993721008, + "learning_rate": 1.6742066666666667e-05, + "loss": 1.3410050964355469, + "step": 499100 + }, + { + "epoch": 66.56, + "grad_norm": 0.903735876083374, + "learning_rate": 1.6735400000000002e-05, + "loss": 1.3437112426757813, + "step": 499200 + }, + { + "epoch": 66.57333333333334, + "grad_norm": 0.9387283325195312, + "learning_rate": 1.6728733333333335e-05, + "loss": 1.3478224182128906, + "step": 499300 + }, + { + "epoch": 66.58666666666667, + "grad_norm": 0.8882374167442322, + "learning_rate": 1.6722066666666667e-05, + "loss": 1.3502310180664063, + "step": 499400 + }, + { + "epoch": 66.6, + "grad_norm": 0.8444065451622009, + "learning_rate": 1.67154e-05, + "loss": 1.3418290710449219, + "step": 499500 + }, + { + "epoch": 66.61333333333333, + "grad_norm": 0.8583235740661621, + "learning_rate": 1.6708733333333335e-05, + "loss": 1.346663818359375, + "step": 499600 + }, + { + "epoch": 66.62666666666667, + "grad_norm": 0.861813485622406, + "learning_rate": 1.6702066666666667e-05, + "loss": 1.3438009643554687, + "step": 499700 + }, + { + "epoch": 66.64, + "grad_norm": 0.9351439476013184, + "learning_rate": 1.66954e-05, + "loss": 1.3432070922851562, + "step": 499800 + }, + { + "epoch": 66.65333333333334, + "grad_norm": 0.8280015587806702, + "learning_rate": 1.6688733333333335e-05, + "loss": 1.3487863159179687, + "step": 499900 + }, + { + "epoch": 66.66666666666667, + "grad_norm": 0.9261816143989563, + "learning_rate": 1.6682066666666667e-05, + "loss": 1.348236083984375, + "step": 500000 + }, + { + "epoch": 66.68, + "grad_norm": 0.8890721201896667, + "learning_rate": 1.6675400000000003e-05, + "loss": 1.3480813598632813, + "step": 500100 + }, + { + "epoch": 66.69333333333333, + "grad_norm": 0.881643533706665, + "learning_rate": 1.6668800000000002e-05, + "loss": 1.3505299377441407, + "step": 500200 + }, + { + "epoch": 66.70666666666666, + "grad_norm": 0.8827385306358337, + "learning_rate": 1.6662133333333334e-05, + "loss": 1.3477456665039063, + "step": 500300 + }, + { + "epoch": 66.72, + "grad_norm": 0.9698315262794495, + "learning_rate": 1.6655466666666667e-05, + "loss": 1.3486949157714845, + "step": 500400 + }, + { + "epoch": 66.73333333333333, + "grad_norm": 0.864273726940155, + "learning_rate": 1.66488e-05, + "loss": 1.3506986999511719, + "step": 500500 + }, + { + "epoch": 66.74666666666667, + "grad_norm": 0.9118615388870239, + "learning_rate": 1.6642133333333335e-05, + "loss": 1.3483343505859375, + "step": 500600 + }, + { + "epoch": 66.76, + "grad_norm": 0.8899751901626587, + "learning_rate": 1.663546666666667e-05, + "loss": 1.3553768920898437, + "step": 500700 + }, + { + "epoch": 66.77333333333333, + "grad_norm": 0.9060136675834656, + "learning_rate": 1.66288e-05, + "loss": 1.345452117919922, + "step": 500800 + }, + { + "epoch": 66.78666666666666, + "grad_norm": 0.9999998211860657, + "learning_rate": 1.6622133333333335e-05, + "loss": 1.350277862548828, + "step": 500900 + }, + { + "epoch": 66.8, + "grad_norm": 0.8866046667098999, + "learning_rate": 1.6615466666666667e-05, + "loss": 1.3576226806640626, + "step": 501000 + }, + { + "epoch": 66.81333333333333, + "grad_norm": 0.9324911832809448, + "learning_rate": 1.6608800000000003e-05, + "loss": 1.350228271484375, + "step": 501100 + }, + { + "epoch": 66.82666666666667, + "grad_norm": 0.9233900904655457, + "learning_rate": 1.6602133333333335e-05, + "loss": 1.3524874877929687, + "step": 501200 + }, + { + "epoch": 66.84, + "grad_norm": 0.8950480818748474, + "learning_rate": 1.6595466666666667e-05, + "loss": 1.3505656433105468, + "step": 501300 + }, + { + "epoch": 66.85333333333334, + "grad_norm": 0.8450494408607483, + "learning_rate": 1.6588800000000003e-05, + "loss": 1.353629150390625, + "step": 501400 + }, + { + "epoch": 66.86666666666666, + "grad_norm": 0.8349661827087402, + "learning_rate": 1.6582133333333332e-05, + "loss": 1.3550460815429688, + "step": 501500 + }, + { + "epoch": 66.88, + "grad_norm": 0.8485316038131714, + "learning_rate": 1.6575466666666667e-05, + "loss": 1.35274658203125, + "step": 501600 + }, + { + "epoch": 66.89333333333333, + "grad_norm": 0.8575172424316406, + "learning_rate": 1.65688e-05, + "loss": 1.3558840942382813, + "step": 501700 + }, + { + "epoch": 66.90666666666667, + "grad_norm": 0.8949342370033264, + "learning_rate": 1.6562133333333335e-05, + "loss": 1.3565489196777343, + "step": 501800 + }, + { + "epoch": 66.92, + "grad_norm": 0.8905797600746155, + "learning_rate": 1.6555466666666668e-05, + "loss": 1.3542637634277344, + "step": 501900 + }, + { + "epoch": 66.93333333333334, + "grad_norm": 0.8685753345489502, + "learning_rate": 1.65488e-05, + "loss": 1.3555860900878907, + "step": 502000 + }, + { + "epoch": 66.94666666666667, + "grad_norm": 0.8902389407157898, + "learning_rate": 1.6542133333333336e-05, + "loss": 1.357294921875, + "step": 502100 + }, + { + "epoch": 66.96, + "grad_norm": 0.8817318677902222, + "learning_rate": 1.6535533333333335e-05, + "loss": 1.354560089111328, + "step": 502200 + }, + { + "epoch": 66.97333333333333, + "grad_norm": 0.8877972960472107, + "learning_rate": 1.6528866666666667e-05, + "loss": 1.3581826782226563, + "step": 502300 + }, + { + "epoch": 66.98666666666666, + "grad_norm": 0.9648900628089905, + "learning_rate": 1.6522200000000003e-05, + "loss": 1.3576654052734376, + "step": 502400 + }, + { + "epoch": 67.0, + "grad_norm": 0.8821939826011658, + "learning_rate": 1.651553333333333e-05, + "loss": 1.3601315307617188, + "step": 502500 + }, + { + "epoch": 67.01333333333334, + "grad_norm": 0.8473901748657227, + "learning_rate": 1.6508866666666667e-05, + "loss": 1.310140380859375, + "step": 502600 + }, + { + "epoch": 67.02666666666667, + "grad_norm": 0.8751438856124878, + "learning_rate": 1.65022e-05, + "loss": 1.3117538452148438, + "step": 502700 + }, + { + "epoch": 67.04, + "grad_norm": 0.8518862128257751, + "learning_rate": 1.6495533333333335e-05, + "loss": 1.3125653076171875, + "step": 502800 + }, + { + "epoch": 67.05333333333333, + "grad_norm": 0.8928504586219788, + "learning_rate": 1.6488866666666667e-05, + "loss": 1.3104530334472657, + "step": 502900 + }, + { + "epoch": 67.06666666666666, + "grad_norm": 0.8880503177642822, + "learning_rate": 1.64822e-05, + "loss": 1.3163229370117187, + "step": 503000 + }, + { + "epoch": 67.08, + "grad_norm": 0.9034183621406555, + "learning_rate": 1.6475533333333335e-05, + "loss": 1.3216062927246093, + "step": 503100 + }, + { + "epoch": 67.09333333333333, + "grad_norm": 0.8415785431861877, + "learning_rate": 1.6468866666666667e-05, + "loss": 1.3180642700195313, + "step": 503200 + }, + { + "epoch": 67.10666666666667, + "grad_norm": 0.8426023125648499, + "learning_rate": 1.64622e-05, + "loss": 1.3171853637695312, + "step": 503300 + }, + { + "epoch": 67.12, + "grad_norm": 0.9098384976387024, + "learning_rate": 1.6455533333333335e-05, + "loss": 1.3160491943359376, + "step": 503400 + }, + { + "epoch": 67.13333333333334, + "grad_norm": 0.910634458065033, + "learning_rate": 1.6448866666666668e-05, + "loss": 1.3179133605957032, + "step": 503500 + }, + { + "epoch": 67.14666666666666, + "grad_norm": 0.8796761631965637, + "learning_rate": 1.6442200000000003e-05, + "loss": 1.3178306579589845, + "step": 503600 + }, + { + "epoch": 67.16, + "grad_norm": 0.9137388467788696, + "learning_rate": 1.6435533333333332e-05, + "loss": 1.3195364379882812, + "step": 503700 + }, + { + "epoch": 67.17333333333333, + "grad_norm": 0.8771604895591736, + "learning_rate": 1.6428866666666668e-05, + "loss": 1.3253799438476563, + "step": 503800 + }, + { + "epoch": 67.18666666666667, + "grad_norm": 0.8796737194061279, + "learning_rate": 1.64222e-05, + "loss": 1.3219993591308594, + "step": 503900 + }, + { + "epoch": 67.2, + "grad_norm": 0.8637896180152893, + "learning_rate": 1.6415533333333332e-05, + "loss": 1.3234608459472657, + "step": 504000 + }, + { + "epoch": 67.21333333333334, + "grad_norm": 0.8395215272903442, + "learning_rate": 1.6408866666666668e-05, + "loss": 1.3233541870117187, + "step": 504100 + }, + { + "epoch": 67.22666666666667, + "grad_norm": 0.8876785039901733, + "learning_rate": 1.6402266666666667e-05, + "loss": 1.32363037109375, + "step": 504200 + }, + { + "epoch": 67.24, + "grad_norm": 0.8801200985908508, + "learning_rate": 1.63956e-05, + "loss": 1.328302764892578, + "step": 504300 + }, + { + "epoch": 67.25333333333333, + "grad_norm": 0.9056000709533691, + "learning_rate": 1.6388933333333335e-05, + "loss": 1.323112030029297, + "step": 504400 + }, + { + "epoch": 67.26666666666667, + "grad_norm": 0.9226976633071899, + "learning_rate": 1.6382266666666667e-05, + "loss": 1.328287353515625, + "step": 504500 + }, + { + "epoch": 67.28, + "grad_norm": 0.8553920984268188, + "learning_rate": 1.6375600000000003e-05, + "loss": 1.324569549560547, + "step": 504600 + }, + { + "epoch": 67.29333333333334, + "grad_norm": 0.8892163038253784, + "learning_rate": 1.6368933333333332e-05, + "loss": 1.3272508239746095, + "step": 504700 + }, + { + "epoch": 67.30666666666667, + "grad_norm": 0.828970193862915, + "learning_rate": 1.6362266666666667e-05, + "loss": 1.325264892578125, + "step": 504800 + }, + { + "epoch": 67.32, + "grad_norm": 0.8796325325965881, + "learning_rate": 1.6355600000000003e-05, + "loss": 1.3304495239257812, + "step": 504900 + }, + { + "epoch": 67.33333333333333, + "grad_norm": 0.8535403609275818, + "learning_rate": 1.6348933333333332e-05, + "loss": 1.3281263732910156, + "step": 505000 + }, + { + "epoch": 67.34666666666666, + "grad_norm": 0.9329071640968323, + "learning_rate": 1.6342266666666668e-05, + "loss": 1.3269728088378907, + "step": 505100 + }, + { + "epoch": 67.36, + "grad_norm": 0.8434710502624512, + "learning_rate": 1.63356e-05, + "loss": 1.330979461669922, + "step": 505200 + }, + { + "epoch": 67.37333333333333, + "grad_norm": 0.9090546369552612, + "learning_rate": 1.6328933333333336e-05, + "loss": 1.3287429809570312, + "step": 505300 + }, + { + "epoch": 67.38666666666667, + "grad_norm": 0.8121486902236938, + "learning_rate": 1.6322266666666668e-05, + "loss": 1.3265771484375, + "step": 505400 + }, + { + "epoch": 67.4, + "grad_norm": 0.92621248960495, + "learning_rate": 1.63156e-05, + "loss": 1.331717529296875, + "step": 505500 + }, + { + "epoch": 67.41333333333333, + "grad_norm": 0.861219048500061, + "learning_rate": 1.6308933333333336e-05, + "loss": 1.331618194580078, + "step": 505600 + }, + { + "epoch": 67.42666666666666, + "grad_norm": 0.8709635734558105, + "learning_rate": 1.6302266666666668e-05, + "loss": 1.3293948364257813, + "step": 505700 + }, + { + "epoch": 67.44, + "grad_norm": 0.9250495433807373, + "learning_rate": 1.62956e-05, + "loss": 1.3288381958007813, + "step": 505800 + }, + { + "epoch": 67.45333333333333, + "grad_norm": 0.9058433771133423, + "learning_rate": 1.6288933333333333e-05, + "loss": 1.33401123046875, + "step": 505900 + }, + { + "epoch": 67.46666666666667, + "grad_norm": 0.8685875535011292, + "learning_rate": 1.6282266666666668e-05, + "loss": 1.3351644897460937, + "step": 506000 + }, + { + "epoch": 67.48, + "grad_norm": 0.8778988122940063, + "learning_rate": 1.62756e-05, + "loss": 1.3352923583984375, + "step": 506100 + }, + { + "epoch": 67.49333333333334, + "grad_norm": 0.900501549243927, + "learning_rate": 1.6269e-05, + "loss": 1.3364425659179688, + "step": 506200 + }, + { + "epoch": 67.50666666666666, + "grad_norm": 0.832356333732605, + "learning_rate": 1.6262333333333335e-05, + "loss": 1.3344007873535155, + "step": 506300 + }, + { + "epoch": 67.52, + "grad_norm": 0.8706467747688293, + "learning_rate": 1.6255666666666668e-05, + "loss": 1.335708465576172, + "step": 506400 + }, + { + "epoch": 67.53333333333333, + "grad_norm": 0.9022287130355835, + "learning_rate": 1.6249e-05, + "loss": 1.334958038330078, + "step": 506500 + }, + { + "epoch": 67.54666666666667, + "grad_norm": 0.9078052043914795, + "learning_rate": 1.6242333333333335e-05, + "loss": 1.3339247131347656, + "step": 506600 + }, + { + "epoch": 67.56, + "grad_norm": 0.8930740356445312, + "learning_rate": 1.6235666666666668e-05, + "loss": 1.3345040893554687, + "step": 506700 + }, + { + "epoch": 67.57333333333334, + "grad_norm": 0.8925511837005615, + "learning_rate": 1.6229e-05, + "loss": 1.3339421081542968, + "step": 506800 + }, + { + "epoch": 67.58666666666667, + "grad_norm": 0.9075053334236145, + "learning_rate": 1.6222333333333332e-05, + "loss": 1.3400006103515625, + "step": 506900 + }, + { + "epoch": 67.6, + "grad_norm": 0.8388199210166931, + "learning_rate": 1.6215666666666668e-05, + "loss": 1.339932403564453, + "step": 507000 + }, + { + "epoch": 67.61333333333333, + "grad_norm": 0.9314302206039429, + "learning_rate": 1.6209000000000004e-05, + "loss": 1.3385556030273438, + "step": 507100 + }, + { + "epoch": 67.62666666666667, + "grad_norm": 0.936500608921051, + "learning_rate": 1.6202333333333332e-05, + "loss": 1.3391481018066407, + "step": 507200 + }, + { + "epoch": 67.64, + "grad_norm": 0.9487819671630859, + "learning_rate": 1.6195666666666668e-05, + "loss": 1.3424884033203126, + "step": 507300 + }, + { + "epoch": 67.65333333333334, + "grad_norm": 0.8992325663566589, + "learning_rate": 1.6189e-05, + "loss": 1.3376817321777343, + "step": 507400 + }, + { + "epoch": 67.66666666666667, + "grad_norm": 0.8715090155601501, + "learning_rate": 1.6182333333333336e-05, + "loss": 1.3390425109863282, + "step": 507500 + }, + { + "epoch": 67.68, + "grad_norm": 0.926875650882721, + "learning_rate": 1.6175666666666668e-05, + "loss": 1.3368760681152343, + "step": 507600 + }, + { + "epoch": 67.69333333333333, + "grad_norm": 0.8483115434646606, + "learning_rate": 1.6169e-05, + "loss": 1.3436689758300782, + "step": 507700 + }, + { + "epoch": 67.70666666666666, + "grad_norm": 0.9174588918685913, + "learning_rate": 1.6162333333333336e-05, + "loss": 1.3432699584960937, + "step": 507800 + }, + { + "epoch": 67.72, + "grad_norm": 0.8918784260749817, + "learning_rate": 1.6155666666666665e-05, + "loss": 1.342838592529297, + "step": 507900 + }, + { + "epoch": 67.73333333333333, + "grad_norm": 0.9192767143249512, + "learning_rate": 1.6149e-05, + "loss": 1.3431192016601563, + "step": 508000 + }, + { + "epoch": 67.74666666666667, + "grad_norm": 0.9048521518707275, + "learning_rate": 1.6142333333333333e-05, + "loss": 1.341384735107422, + "step": 508100 + }, + { + "epoch": 67.76, + "grad_norm": 0.8069953918457031, + "learning_rate": 1.613566666666667e-05, + "loss": 1.3444508361816405, + "step": 508200 + }, + { + "epoch": 67.77333333333333, + "grad_norm": 0.9301212430000305, + "learning_rate": 1.6129066666666668e-05, + "loss": 1.342718048095703, + "step": 508300 + }, + { + "epoch": 67.78666666666666, + "grad_norm": 0.8530392646789551, + "learning_rate": 1.61224e-05, + "loss": 1.343582763671875, + "step": 508400 + }, + { + "epoch": 67.8, + "grad_norm": 0.8464934825897217, + "learning_rate": 1.6115733333333336e-05, + "loss": 1.3441999816894532, + "step": 508500 + }, + { + "epoch": 67.81333333333333, + "grad_norm": 0.8721790313720703, + "learning_rate": 1.6109066666666668e-05, + "loss": 1.3421063232421875, + "step": 508600 + }, + { + "epoch": 67.82666666666667, + "grad_norm": 0.8738119006156921, + "learning_rate": 1.61024e-05, + "loss": 1.350204315185547, + "step": 508700 + }, + { + "epoch": 67.84, + "grad_norm": 0.961629331111908, + "learning_rate": 1.6095733333333336e-05, + "loss": 1.3457203674316407, + "step": 508800 + }, + { + "epoch": 67.85333333333334, + "grad_norm": 0.8968521952629089, + "learning_rate": 1.6089066666666665e-05, + "loss": 1.3510127258300781, + "step": 508900 + }, + { + "epoch": 67.86666666666666, + "grad_norm": 0.8948931694030762, + "learning_rate": 1.60824e-05, + "loss": 1.3487330627441407, + "step": 509000 + }, + { + "epoch": 67.88, + "grad_norm": 0.9145134091377258, + "learning_rate": 1.6075733333333333e-05, + "loss": 1.3471894836425782, + "step": 509100 + }, + { + "epoch": 67.89333333333333, + "grad_norm": 0.871657133102417, + "learning_rate": 1.606906666666667e-05, + "loss": 1.3422882080078125, + "step": 509200 + }, + { + "epoch": 67.90666666666667, + "grad_norm": 0.9065093398094177, + "learning_rate": 1.60624e-05, + "loss": 1.3477850341796875, + "step": 509300 + }, + { + "epoch": 67.92, + "grad_norm": 0.9234089255332947, + "learning_rate": 1.6055733333333333e-05, + "loss": 1.3499220275878907, + "step": 509400 + }, + { + "epoch": 67.93333333333334, + "grad_norm": 0.9075988531112671, + "learning_rate": 1.604906666666667e-05, + "loss": 1.3501620483398438, + "step": 509500 + }, + { + "epoch": 67.94666666666667, + "grad_norm": 0.8884494304656982, + "learning_rate": 1.60424e-05, + "loss": 1.348383331298828, + "step": 509600 + }, + { + "epoch": 67.96, + "grad_norm": 0.896177351474762, + "learning_rate": 1.6035733333333333e-05, + "loss": 1.3463504028320312, + "step": 509700 + }, + { + "epoch": 67.97333333333333, + "grad_norm": 0.9698064923286438, + "learning_rate": 1.602906666666667e-05, + "loss": 1.3500189208984374, + "step": 509800 + }, + { + "epoch": 67.98666666666666, + "grad_norm": 0.9053831100463867, + "learning_rate": 1.60224e-05, + "loss": 1.3513795471191405, + "step": 509900 + }, + { + "epoch": 68.0, + "grad_norm": 0.9011847972869873, + "learning_rate": 1.6015733333333337e-05, + "loss": 1.3465042114257812, + "step": 510000 + }, + { + "epoch": 68.01333333333334, + "grad_norm": 0.8597659468650818, + "learning_rate": 1.6009066666666665e-05, + "loss": 1.3004315185546875, + "step": 510100 + }, + { + "epoch": 68.02666666666667, + "grad_norm": 0.928426206111908, + "learning_rate": 1.60024e-05, + "loss": 1.3039891052246093, + "step": 510200 + }, + { + "epoch": 68.04, + "grad_norm": 0.8113676309585571, + "learning_rate": 1.59958e-05, + "loss": 1.3047027587890625, + "step": 510300 + }, + { + "epoch": 68.05333333333333, + "grad_norm": 0.9048395752906799, + "learning_rate": 1.5989133333333332e-05, + "loss": 1.3024574279785157, + "step": 510400 + }, + { + "epoch": 68.06666666666666, + "grad_norm": 0.8462424874305725, + "learning_rate": 1.5982466666666668e-05, + "loss": 1.3085397338867188, + "step": 510500 + }, + { + "epoch": 68.08, + "grad_norm": 0.8260025978088379, + "learning_rate": 1.59758e-05, + "loss": 1.3069618225097657, + "step": 510600 + }, + { + "epoch": 68.09333333333333, + "grad_norm": 0.9367395639419556, + "learning_rate": 1.5969133333333333e-05, + "loss": 1.3096812438964844, + "step": 510700 + }, + { + "epoch": 68.10666666666667, + "grad_norm": 0.8826059699058533, + "learning_rate": 1.596246666666667e-05, + "loss": 1.31156494140625, + "step": 510800 + }, + { + "epoch": 68.12, + "grad_norm": 0.8369840383529663, + "learning_rate": 1.59558e-05, + "loss": 1.3101882934570312, + "step": 510900 + }, + { + "epoch": 68.13333333333334, + "grad_norm": 0.89353346824646, + "learning_rate": 1.5949133333333336e-05, + "loss": 1.3151426696777344, + "step": 511000 + }, + { + "epoch": 68.14666666666666, + "grad_norm": 0.9131789803504944, + "learning_rate": 1.5942466666666665e-05, + "loss": 1.3127870178222656, + "step": 511100 + }, + { + "epoch": 68.16, + "grad_norm": 0.8653157353401184, + "learning_rate": 1.59358e-05, + "loss": 1.3090579223632812, + "step": 511200 + }, + { + "epoch": 68.17333333333333, + "grad_norm": 0.9040849804878235, + "learning_rate": 1.5929133333333336e-05, + "loss": 1.312974395751953, + "step": 511300 + }, + { + "epoch": 68.18666666666667, + "grad_norm": 0.8667581081390381, + "learning_rate": 1.5922466666666665e-05, + "loss": 1.3097319030761718, + "step": 511400 + }, + { + "epoch": 68.2, + "grad_norm": 0.8813672065734863, + "learning_rate": 1.59158e-05, + "loss": 1.3151568603515624, + "step": 511500 + }, + { + "epoch": 68.21333333333334, + "grad_norm": 0.8864101767539978, + "learning_rate": 1.5909133333333333e-05, + "loss": 1.318709716796875, + "step": 511600 + }, + { + "epoch": 68.22666666666667, + "grad_norm": 0.8745055794715881, + "learning_rate": 1.590246666666667e-05, + "loss": 1.3160711669921874, + "step": 511700 + }, + { + "epoch": 68.24, + "grad_norm": 0.8819094896316528, + "learning_rate": 1.58958e-05, + "loss": 1.3141668701171876, + "step": 511800 + }, + { + "epoch": 68.25333333333333, + "grad_norm": 0.8686659336090088, + "learning_rate": 1.5889133333333333e-05, + "loss": 1.3141128540039062, + "step": 511900 + }, + { + "epoch": 68.26666666666667, + "grad_norm": 0.8981601595878601, + "learning_rate": 1.588246666666667e-05, + "loss": 1.318443603515625, + "step": 512000 + }, + { + "epoch": 68.28, + "grad_norm": 0.9074696898460388, + "learning_rate": 1.58758e-05, + "loss": 1.3188632202148438, + "step": 512100 + }, + { + "epoch": 68.29333333333334, + "grad_norm": 0.8958747386932373, + "learning_rate": 1.5869133333333334e-05, + "loss": 1.3215031433105469, + "step": 512200 + }, + { + "epoch": 68.30666666666667, + "grad_norm": 0.8791993260383606, + "learning_rate": 1.5862533333333336e-05, + "loss": 1.31865478515625, + "step": 512300 + }, + { + "epoch": 68.32, + "grad_norm": 0.8460490107536316, + "learning_rate": 1.5855866666666665e-05, + "loss": 1.3209242248535156, + "step": 512400 + }, + { + "epoch": 68.33333333333333, + "grad_norm": 0.8700122833251953, + "learning_rate": 1.58492e-05, + "loss": 1.3208595275878907, + "step": 512500 + }, + { + "epoch": 68.34666666666666, + "grad_norm": 0.8390049934387207, + "learning_rate": 1.5842533333333333e-05, + "loss": 1.3223390197753906, + "step": 512600 + }, + { + "epoch": 68.36, + "grad_norm": 0.8614577054977417, + "learning_rate": 1.583586666666667e-05, + "loss": 1.3204753112792968, + "step": 512700 + }, + { + "epoch": 68.37333333333333, + "grad_norm": 0.8901036977767944, + "learning_rate": 1.58292e-05, + "loss": 1.324432373046875, + "step": 512800 + }, + { + "epoch": 68.38666666666667, + "grad_norm": 0.8955973386764526, + "learning_rate": 1.5822533333333333e-05, + "loss": 1.3183277893066405, + "step": 512900 + }, + { + "epoch": 68.4, + "grad_norm": 0.8843805193901062, + "learning_rate": 1.581586666666667e-05, + "loss": 1.3242254638671875, + "step": 513000 + }, + { + "epoch": 68.41333333333333, + "grad_norm": 0.8797668218612671, + "learning_rate": 1.58092e-05, + "loss": 1.3225811767578124, + "step": 513100 + }, + { + "epoch": 68.42666666666666, + "grad_norm": 0.9109477400779724, + "learning_rate": 1.5802533333333333e-05, + "loss": 1.3278276062011718, + "step": 513200 + }, + { + "epoch": 68.44, + "grad_norm": 0.9226241111755371, + "learning_rate": 1.5795866666666666e-05, + "loss": 1.31931640625, + "step": 513300 + }, + { + "epoch": 68.45333333333333, + "grad_norm": 0.8409252762794495, + "learning_rate": 1.57892e-05, + "loss": 1.3215591430664062, + "step": 513400 + }, + { + "epoch": 68.46666666666667, + "grad_norm": 0.8817701935768127, + "learning_rate": 1.5782533333333337e-05, + "loss": 1.3250498962402344, + "step": 513500 + }, + { + "epoch": 68.48, + "grad_norm": 0.868848979473114, + "learning_rate": 1.5775866666666666e-05, + "loss": 1.329929656982422, + "step": 513600 + }, + { + "epoch": 68.49333333333334, + "grad_norm": 0.9269536137580872, + "learning_rate": 1.57692e-05, + "loss": 1.3273797607421876, + "step": 513700 + }, + { + "epoch": 68.50666666666666, + "grad_norm": 0.8891344666481018, + "learning_rate": 1.5762533333333334e-05, + "loss": 1.3250120544433595, + "step": 513800 + }, + { + "epoch": 68.52, + "grad_norm": 0.8972460031509399, + "learning_rate": 1.575586666666667e-05, + "loss": 1.3335025024414062, + "step": 513900 + }, + { + "epoch": 68.53333333333333, + "grad_norm": 0.8979598879814148, + "learning_rate": 1.57492e-05, + "loss": 1.327074737548828, + "step": 514000 + }, + { + "epoch": 68.54666666666667, + "grad_norm": 0.9028379917144775, + "learning_rate": 1.5742533333333334e-05, + "loss": 1.32595947265625, + "step": 514100 + }, + { + "epoch": 68.56, + "grad_norm": 0.8925226926803589, + "learning_rate": 1.573586666666667e-05, + "loss": 1.3272763061523438, + "step": 514200 + }, + { + "epoch": 68.57333333333334, + "grad_norm": 0.9189619421958923, + "learning_rate": 1.572926666666667e-05, + "loss": 1.3309127807617187, + "step": 514300 + }, + { + "epoch": 68.58666666666667, + "grad_norm": 0.8941634893417358, + "learning_rate": 1.57226e-05, + "loss": 1.3285725402832032, + "step": 514400 + }, + { + "epoch": 68.6, + "grad_norm": 0.9585229158401489, + "learning_rate": 1.5715933333333337e-05, + "loss": 1.3328392028808593, + "step": 514500 + }, + { + "epoch": 68.61333333333333, + "grad_norm": 0.8872119784355164, + "learning_rate": 1.5709266666666665e-05, + "loss": 1.3325770568847657, + "step": 514600 + }, + { + "epoch": 68.62666666666667, + "grad_norm": 0.8843336701393127, + "learning_rate": 1.57026e-05, + "loss": 1.331486358642578, + "step": 514700 + }, + { + "epoch": 68.64, + "grad_norm": 0.9135434031486511, + "learning_rate": 1.5695933333333333e-05, + "loss": 1.333922119140625, + "step": 514800 + }, + { + "epoch": 68.65333333333334, + "grad_norm": 0.9394828677177429, + "learning_rate": 1.568926666666667e-05, + "loss": 1.3295352172851562, + "step": 514900 + }, + { + "epoch": 68.66666666666667, + "grad_norm": 0.9578185081481934, + "learning_rate": 1.56826e-05, + "loss": 1.331282958984375, + "step": 515000 + }, + { + "epoch": 68.68, + "grad_norm": 0.9389871954917908, + "learning_rate": 1.5675933333333334e-05, + "loss": 1.3376300048828125, + "step": 515100 + }, + { + "epoch": 68.69333333333333, + "grad_norm": 0.8578580021858215, + "learning_rate": 1.566926666666667e-05, + "loss": 1.333085479736328, + "step": 515200 + }, + { + "epoch": 68.70666666666666, + "grad_norm": 0.9202980399131775, + "learning_rate": 1.5662599999999998e-05, + "loss": 1.33133544921875, + "step": 515300 + }, + { + "epoch": 68.72, + "grad_norm": 0.9534364938735962, + "learning_rate": 1.5655933333333334e-05, + "loss": 1.3320506286621094, + "step": 515400 + }, + { + "epoch": 68.73333333333333, + "grad_norm": 0.8657859563827515, + "learning_rate": 1.5649266666666666e-05, + "loss": 1.3358692932128906, + "step": 515500 + }, + { + "epoch": 68.74666666666667, + "grad_norm": 0.8687852621078491, + "learning_rate": 1.56426e-05, + "loss": 1.3360931396484375, + "step": 515600 + }, + { + "epoch": 68.76, + "grad_norm": 0.9254283308982849, + "learning_rate": 1.5635933333333334e-05, + "loss": 1.3366038513183593, + "step": 515700 + }, + { + "epoch": 68.77333333333333, + "grad_norm": 0.9339519739151001, + "learning_rate": 1.5629266666666666e-05, + "loss": 1.3345875549316406, + "step": 515800 + }, + { + "epoch": 68.78666666666666, + "grad_norm": 0.942951500415802, + "learning_rate": 1.5622600000000002e-05, + "loss": 1.3363542175292968, + "step": 515900 + }, + { + "epoch": 68.8, + "grad_norm": 0.8819780945777893, + "learning_rate": 1.5615933333333334e-05, + "loss": 1.33906005859375, + "step": 516000 + }, + { + "epoch": 68.81333333333333, + "grad_norm": 0.9070013761520386, + "learning_rate": 1.5609266666666666e-05, + "loss": 1.3376704406738282, + "step": 516100 + }, + { + "epoch": 68.82666666666667, + "grad_norm": 0.9122033715248108, + "learning_rate": 1.5602600000000002e-05, + "loss": 1.339272003173828, + "step": 516200 + }, + { + "epoch": 68.84, + "grad_norm": 0.8980287313461304, + "learning_rate": 1.5595933333333334e-05, + "loss": 1.336685791015625, + "step": 516300 + }, + { + "epoch": 68.85333333333334, + "grad_norm": 0.8671182990074158, + "learning_rate": 1.5589333333333333e-05, + "loss": 1.338714599609375, + "step": 516400 + }, + { + "epoch": 68.86666666666666, + "grad_norm": 0.8897833228111267, + "learning_rate": 1.558266666666667e-05, + "loss": 1.3385552978515625, + "step": 516500 + }, + { + "epoch": 68.88, + "grad_norm": 0.8926507830619812, + "learning_rate": 1.5576e-05, + "loss": 1.3375399780273438, + "step": 516600 + }, + { + "epoch": 68.89333333333333, + "grad_norm": 0.9504712224006653, + "learning_rate": 1.5569333333333334e-05, + "loss": 1.3395611572265624, + "step": 516700 + }, + { + "epoch": 68.90666666666667, + "grad_norm": 0.9633262753486633, + "learning_rate": 1.5562666666666666e-05, + "loss": 1.337670135498047, + "step": 516800 + }, + { + "epoch": 68.92, + "grad_norm": 0.9180074334144592, + "learning_rate": 1.5556e-05, + "loss": 1.3344358825683593, + "step": 516900 + }, + { + "epoch": 68.93333333333334, + "grad_norm": 0.9330366849899292, + "learning_rate": 1.5549333333333334e-05, + "loss": 1.3429493713378906, + "step": 517000 + }, + { + "epoch": 68.94666666666667, + "grad_norm": 0.8484285473823547, + "learning_rate": 1.5542666666666666e-05, + "loss": 1.33810791015625, + "step": 517100 + }, + { + "epoch": 68.96, + "grad_norm": 0.9376809597015381, + "learning_rate": 1.5536e-05, + "loss": 1.3395620727539062, + "step": 517200 + }, + { + "epoch": 68.97333333333333, + "grad_norm": 0.8969297409057617, + "learning_rate": 1.5529333333333334e-05, + "loss": 1.340773468017578, + "step": 517300 + }, + { + "epoch": 68.98666666666666, + "grad_norm": 0.8501908779144287, + "learning_rate": 1.552266666666667e-05, + "loss": 1.34123046875, + "step": 517400 + }, + { + "epoch": 69.0, + "grad_norm": 0.9352733492851257, + "learning_rate": 1.5516e-05, + "loss": 1.3383326721191406, + "step": 517500 + }, + { + "epoch": 69.01333333333334, + "grad_norm": 0.909633219242096, + "learning_rate": 1.5509333333333334e-05, + "loss": 1.3029652404785157, + "step": 517600 + }, + { + "epoch": 69.02666666666667, + "grad_norm": 0.8774516582489014, + "learning_rate": 1.550266666666667e-05, + "loss": 1.3019322204589843, + "step": 517700 + }, + { + "epoch": 69.04, + "grad_norm": 0.8658164143562317, + "learning_rate": 1.5496e-05, + "loss": 1.3007429504394532, + "step": 517800 + }, + { + "epoch": 69.05333333333333, + "grad_norm": 0.9352324604988098, + "learning_rate": 1.5489333333333334e-05, + "loss": 1.2994084167480469, + "step": 517900 + }, + { + "epoch": 69.06666666666666, + "grad_norm": 0.8457640409469604, + "learning_rate": 1.5482666666666667e-05, + "loss": 1.3021054077148437, + "step": 518000 + }, + { + "epoch": 69.08, + "grad_norm": 0.8199939727783203, + "learning_rate": 1.5476000000000002e-05, + "loss": 1.303291015625, + "step": 518100 + }, + { + "epoch": 69.09333333333333, + "grad_norm": 0.9278339743614197, + "learning_rate": 1.5469333333333335e-05, + "loss": 1.3022172546386719, + "step": 518200 + }, + { + "epoch": 69.10666666666667, + "grad_norm": 0.8438993096351624, + "learning_rate": 1.5462666666666667e-05, + "loss": 1.3028335571289062, + "step": 518300 + }, + { + "epoch": 69.12, + "grad_norm": 0.87488853931427, + "learning_rate": 1.5456000000000002e-05, + "loss": 1.3034165954589845, + "step": 518400 + }, + { + "epoch": 69.13333333333334, + "grad_norm": 0.8736199140548706, + "learning_rate": 1.54494e-05, + "loss": 1.304062042236328, + "step": 518500 + }, + { + "epoch": 69.14666666666666, + "grad_norm": 0.8868971467018127, + "learning_rate": 1.5442733333333334e-05, + "loss": 1.303873291015625, + "step": 518600 + }, + { + "epoch": 69.16, + "grad_norm": 0.8616037964820862, + "learning_rate": 1.543606666666667e-05, + "loss": 1.3016984558105469, + "step": 518700 + }, + { + "epoch": 69.17333333333333, + "grad_norm": 0.8724547624588013, + "learning_rate": 1.54294e-05, + "loss": 1.3086442565917968, + "step": 518800 + }, + { + "epoch": 69.18666666666667, + "grad_norm": 0.8624784350395203, + "learning_rate": 1.5422733333333334e-05, + "loss": 1.3114741516113282, + "step": 518900 + }, + { + "epoch": 69.2, + "grad_norm": 0.8696256875991821, + "learning_rate": 1.5416066666666666e-05, + "loss": 1.3064015197753907, + "step": 519000 + }, + { + "epoch": 69.21333333333334, + "grad_norm": 0.9286923408508301, + "learning_rate": 1.5409400000000002e-05, + "loss": 1.3089067077636718, + "step": 519100 + }, + { + "epoch": 69.22666666666667, + "grad_norm": 0.8909485936164856, + "learning_rate": 1.5402733333333334e-05, + "loss": 1.3079788208007812, + "step": 519200 + }, + { + "epoch": 69.24, + "grad_norm": 0.8831815123558044, + "learning_rate": 1.5396066666666666e-05, + "loss": 1.3152728271484375, + "step": 519300 + }, + { + "epoch": 69.25333333333333, + "grad_norm": 0.8436625003814697, + "learning_rate": 1.5389400000000002e-05, + "loss": 1.3138188171386718, + "step": 519400 + }, + { + "epoch": 69.26666666666667, + "grad_norm": 0.9039004445075989, + "learning_rate": 1.5382733333333334e-05, + "loss": 1.3095545959472656, + "step": 519500 + }, + { + "epoch": 69.28, + "grad_norm": 0.8767098188400269, + "learning_rate": 1.5376066666666667e-05, + "loss": 1.3092991638183593, + "step": 519600 + }, + { + "epoch": 69.29333333333334, + "grad_norm": 0.894680917263031, + "learning_rate": 1.53694e-05, + "loss": 1.3123838806152344, + "step": 519700 + }, + { + "epoch": 69.30666666666667, + "grad_norm": 0.8522490859031677, + "learning_rate": 1.5362733333333335e-05, + "loss": 1.3137554931640625, + "step": 519800 + }, + { + "epoch": 69.32, + "grad_norm": 0.9253702759742737, + "learning_rate": 1.535606666666667e-05, + "loss": 1.312119140625, + "step": 519900 + }, + { + "epoch": 69.33333333333333, + "grad_norm": 0.8951952457427979, + "learning_rate": 1.53494e-05, + "loss": 1.3125660705566407, + "step": 520000 + }, + { + "epoch": 69.34666666666666, + "grad_norm": 0.8459183573722839, + "learning_rate": 1.5342733333333335e-05, + "loss": 1.3168217468261718, + "step": 520100 + }, + { + "epoch": 69.36, + "grad_norm": 0.9312644600868225, + "learning_rate": 1.5336066666666667e-05, + "loss": 1.3158766174316405, + "step": 520200 + }, + { + "epoch": 69.37333333333333, + "grad_norm": 0.885540783405304, + "learning_rate": 1.5329400000000003e-05, + "loss": 1.3112091064453124, + "step": 520300 + }, + { + "epoch": 69.38666666666667, + "grad_norm": 0.8519514203071594, + "learning_rate": 1.5322733333333335e-05, + "loss": 1.3133538818359376, + "step": 520400 + }, + { + "epoch": 69.4, + "grad_norm": 0.9369427561759949, + "learning_rate": 1.5316133333333334e-05, + "loss": 1.3154583740234376, + "step": 520500 + }, + { + "epoch": 69.41333333333333, + "grad_norm": 0.8602283596992493, + "learning_rate": 1.5309466666666666e-05, + "loss": 1.3165095520019532, + "step": 520600 + }, + { + "epoch": 69.42666666666666, + "grad_norm": 0.9157493114471436, + "learning_rate": 1.5302800000000002e-05, + "loss": 1.3148411560058593, + "step": 520700 + }, + { + "epoch": 69.44, + "grad_norm": 0.9101560711860657, + "learning_rate": 1.5296133333333334e-05, + "loss": 1.3182754516601562, + "step": 520800 + }, + { + "epoch": 69.45333333333333, + "grad_norm": 0.9380730390548706, + "learning_rate": 1.528946666666667e-05, + "loss": 1.3192401123046875, + "step": 520900 + }, + { + "epoch": 69.46666666666667, + "grad_norm": 0.9109295010566711, + "learning_rate": 1.52828e-05, + "loss": 1.3193789672851564, + "step": 521000 + }, + { + "epoch": 69.48, + "grad_norm": 0.8645269274711609, + "learning_rate": 1.5276133333333334e-05, + "loss": 1.3203118896484376, + "step": 521100 + }, + { + "epoch": 69.49333333333334, + "grad_norm": 0.8796331882476807, + "learning_rate": 1.5269466666666667e-05, + "loss": 1.3172000122070313, + "step": 521200 + }, + { + "epoch": 69.50666666666666, + "grad_norm": 0.9040528535842896, + "learning_rate": 1.5262800000000002e-05, + "loss": 1.3217599487304688, + "step": 521300 + }, + { + "epoch": 69.52, + "grad_norm": 0.9129952788352966, + "learning_rate": 1.5256133333333333e-05, + "loss": 1.3199691772460938, + "step": 521400 + }, + { + "epoch": 69.53333333333333, + "grad_norm": 0.927264928817749, + "learning_rate": 1.5249466666666667e-05, + "loss": 1.3197657775878906, + "step": 521500 + }, + { + "epoch": 69.54666666666667, + "grad_norm": 0.8854173421859741, + "learning_rate": 1.52428e-05, + "loss": 1.32036865234375, + "step": 521600 + }, + { + "epoch": 69.56, + "grad_norm": 0.864914059638977, + "learning_rate": 1.5236133333333333e-05, + "loss": 1.3250689697265625, + "step": 521700 + }, + { + "epoch": 69.57333333333334, + "grad_norm": 0.9233516454696655, + "learning_rate": 1.5229466666666667e-05, + "loss": 1.3195721435546874, + "step": 521800 + }, + { + "epoch": 69.58666666666667, + "grad_norm": 0.8919656872749329, + "learning_rate": 1.5222800000000001e-05, + "loss": 1.3226580810546875, + "step": 521900 + }, + { + "epoch": 69.6, + "grad_norm": 0.9302183389663696, + "learning_rate": 1.5216133333333335e-05, + "loss": 1.325461883544922, + "step": 522000 + }, + { + "epoch": 69.61333333333333, + "grad_norm": 0.8252825736999512, + "learning_rate": 1.5209466666666666e-05, + "loss": 1.3249801635742187, + "step": 522100 + }, + { + "epoch": 69.62666666666667, + "grad_norm": 0.9176365733146667, + "learning_rate": 1.5202800000000001e-05, + "loss": 1.3211125183105468, + "step": 522200 + }, + { + "epoch": 69.64, + "grad_norm": 0.8246389627456665, + "learning_rate": 1.5196133333333335e-05, + "loss": 1.3223980712890624, + "step": 522300 + }, + { + "epoch": 69.65333333333334, + "grad_norm": 0.9392738938331604, + "learning_rate": 1.5189466666666669e-05, + "loss": 1.319575653076172, + "step": 522400 + }, + { + "epoch": 69.66666666666667, + "grad_norm": 0.888167142868042, + "learning_rate": 1.5182866666666668e-05, + "loss": 1.3244210815429687, + "step": 522500 + }, + { + "epoch": 69.68, + "grad_norm": 0.8745282292366028, + "learning_rate": 1.5176200000000002e-05, + "loss": 1.322125244140625, + "step": 522600 + }, + { + "epoch": 69.69333333333333, + "grad_norm": 0.8966434001922607, + "learning_rate": 1.5169533333333333e-05, + "loss": 1.328828125, + "step": 522700 + }, + { + "epoch": 69.70666666666666, + "grad_norm": 0.8466253876686096, + "learning_rate": 1.5162866666666667e-05, + "loss": 1.3279318237304687, + "step": 522800 + }, + { + "epoch": 69.72, + "grad_norm": 0.8887118697166443, + "learning_rate": 1.51562e-05, + "loss": 1.3284657287597657, + "step": 522900 + }, + { + "epoch": 69.73333333333333, + "grad_norm": 0.7998771667480469, + "learning_rate": 1.5149533333333335e-05, + "loss": 1.32925537109375, + "step": 523000 + }, + { + "epoch": 69.74666666666667, + "grad_norm": 0.8823466300964355, + "learning_rate": 1.5142866666666667e-05, + "loss": 1.3294252014160157, + "step": 523100 + }, + { + "epoch": 69.76, + "grad_norm": 0.9160724878311157, + "learning_rate": 1.5136200000000001e-05, + "loss": 1.327671356201172, + "step": 523200 + }, + { + "epoch": 69.77333333333333, + "grad_norm": 0.8401466012001038, + "learning_rate": 1.5129533333333335e-05, + "loss": 1.3307571411132812, + "step": 523300 + }, + { + "epoch": 69.78666666666666, + "grad_norm": 0.8765178322792053, + "learning_rate": 1.5122866666666669e-05, + "loss": 1.329644775390625, + "step": 523400 + }, + { + "epoch": 69.8, + "grad_norm": 0.87641841173172, + "learning_rate": 1.51162e-05, + "loss": 1.3258184814453124, + "step": 523500 + }, + { + "epoch": 69.81333333333333, + "grad_norm": 0.8888761401176453, + "learning_rate": 1.5109533333333333e-05, + "loss": 1.3236990356445313, + "step": 523600 + }, + { + "epoch": 69.82666666666667, + "grad_norm": 0.91169273853302, + "learning_rate": 1.5102866666666667e-05, + "loss": 1.3255255126953125, + "step": 523700 + }, + { + "epoch": 69.84, + "grad_norm": 0.8905537724494934, + "learning_rate": 1.5096200000000001e-05, + "loss": 1.3305224609375, + "step": 523800 + }, + { + "epoch": 69.85333333333334, + "grad_norm": 0.8976826667785645, + "learning_rate": 1.5089533333333334e-05, + "loss": 1.3281327819824218, + "step": 523900 + }, + { + "epoch": 69.86666666666666, + "grad_norm": 0.9264980554580688, + "learning_rate": 1.5082866666666667e-05, + "loss": 1.3322329711914063, + "step": 524000 + }, + { + "epoch": 69.88, + "grad_norm": 0.8969742059707642, + "learning_rate": 1.5076200000000001e-05, + "loss": 1.3304733276367187, + "step": 524100 + }, + { + "epoch": 69.89333333333333, + "grad_norm": 0.9283936619758606, + "learning_rate": 1.5069533333333332e-05, + "loss": 1.3320317077636719, + "step": 524200 + }, + { + "epoch": 69.90666666666667, + "grad_norm": 0.9455838203430176, + "learning_rate": 1.5062866666666666e-05, + "loss": 1.3323895263671874, + "step": 524300 + }, + { + "epoch": 69.92, + "grad_norm": 0.9530020356178284, + "learning_rate": 1.5056200000000002e-05, + "loss": 1.333441162109375, + "step": 524400 + }, + { + "epoch": 69.93333333333334, + "grad_norm": 0.8964418768882751, + "learning_rate": 1.5049599999999999e-05, + "loss": 1.3335765075683594, + "step": 524500 + }, + { + "epoch": 69.94666666666667, + "grad_norm": 0.8553877472877502, + "learning_rate": 1.5042933333333335e-05, + "loss": 1.3312777709960937, + "step": 524600 + }, + { + "epoch": 69.96, + "grad_norm": 0.8218632936477661, + "learning_rate": 1.5036266666666669e-05, + "loss": 1.3336231994628907, + "step": 524700 + }, + { + "epoch": 69.97333333333333, + "grad_norm": 0.8228429555892944, + "learning_rate": 1.5029600000000003e-05, + "loss": 1.3307693481445313, + "step": 524800 + }, + { + "epoch": 69.98666666666666, + "grad_norm": 0.890493631362915, + "learning_rate": 1.5022933333333333e-05, + "loss": 1.3317050170898437, + "step": 524900 + }, + { + "epoch": 70.0, + "grad_norm": 0.8892182111740112, + "learning_rate": 1.5016266666666667e-05, + "loss": 1.3370907592773438, + "step": 525000 + }, + { + "epoch": 70.01333333333334, + "grad_norm": 0.8805796504020691, + "learning_rate": 1.5009600000000001e-05, + "loss": 1.2896534729003906, + "step": 525100 + }, + { + "epoch": 70.02666666666667, + "grad_norm": 0.8995780348777771, + "learning_rate": 1.5002933333333333e-05, + "loss": 1.289251251220703, + "step": 525200 + }, + { + "epoch": 70.04, + "grad_norm": 0.8692154884338379, + "learning_rate": 1.4996266666666667e-05, + "loss": 1.2940298461914062, + "step": 525300 + }, + { + "epoch": 70.05333333333333, + "grad_norm": 0.9129854440689087, + "learning_rate": 1.4989600000000001e-05, + "loss": 1.2941226196289062, + "step": 525400 + }, + { + "epoch": 70.06666666666666, + "grad_norm": 0.8497447371482849, + "learning_rate": 1.4982933333333335e-05, + "loss": 1.2971897888183594, + "step": 525500 + }, + { + "epoch": 70.08, + "grad_norm": 0.9296039342880249, + "learning_rate": 1.4976266666666666e-05, + "loss": 1.2974925231933594, + "step": 525600 + }, + { + "epoch": 70.09333333333333, + "grad_norm": 0.8348743915557861, + "learning_rate": 1.49696e-05, + "loss": 1.2969551086425781, + "step": 525700 + }, + { + "epoch": 70.10666666666667, + "grad_norm": 0.9072258472442627, + "learning_rate": 1.4962933333333334e-05, + "loss": 1.2984727478027345, + "step": 525800 + }, + { + "epoch": 70.12, + "grad_norm": 0.87555330991745, + "learning_rate": 1.4956266666666668e-05, + "loss": 1.2968763732910156, + "step": 525900 + }, + { + "epoch": 70.13333333333334, + "grad_norm": 0.8605111837387085, + "learning_rate": 1.49496e-05, + "loss": 1.2984910583496094, + "step": 526000 + }, + { + "epoch": 70.14666666666666, + "grad_norm": 0.9041507840156555, + "learning_rate": 1.4942933333333334e-05, + "loss": 1.2995046997070312, + "step": 526100 + }, + { + "epoch": 70.16, + "grad_norm": 0.8892377018928528, + "learning_rate": 1.4936266666666668e-05, + "loss": 1.2987435913085938, + "step": 526200 + }, + { + "epoch": 70.17333333333333, + "grad_norm": 0.8845103979110718, + "learning_rate": 1.4929600000000002e-05, + "loss": 1.3019927978515624, + "step": 526300 + }, + { + "epoch": 70.18666666666667, + "grad_norm": 0.9019655585289001, + "learning_rate": 1.4922933333333332e-05, + "loss": 1.3028900146484375, + "step": 526400 + }, + { + "epoch": 70.2, + "grad_norm": 0.9145544171333313, + "learning_rate": 1.4916333333333335e-05, + "loss": 1.2975439453125, + "step": 526500 + }, + { + "epoch": 70.21333333333334, + "grad_norm": 0.8441560864448547, + "learning_rate": 1.4909666666666665e-05, + "loss": 1.2994468688964844, + "step": 526600 + }, + { + "epoch": 70.22666666666667, + "grad_norm": 0.9168753623962402, + "learning_rate": 1.4903000000000001e-05, + "loss": 1.2965029907226562, + "step": 526700 + }, + { + "epoch": 70.24, + "grad_norm": 0.918009340763092, + "learning_rate": 1.4896333333333335e-05, + "loss": 1.3034149169921876, + "step": 526800 + }, + { + "epoch": 70.25333333333333, + "grad_norm": 0.8701112866401672, + "learning_rate": 1.4889666666666669e-05, + "loss": 1.306947021484375, + "step": 526900 + }, + { + "epoch": 70.26666666666667, + "grad_norm": 0.8067172765731812, + "learning_rate": 1.4883e-05, + "loss": 1.3056159973144532, + "step": 527000 + }, + { + "epoch": 70.28, + "grad_norm": 0.8838335871696472, + "learning_rate": 1.4876333333333334e-05, + "loss": 1.3039329528808594, + "step": 527100 + }, + { + "epoch": 70.29333333333334, + "grad_norm": 0.7886351346969604, + "learning_rate": 1.4869666666666668e-05, + "loss": 1.3026358032226562, + "step": 527200 + }, + { + "epoch": 70.30666666666667, + "grad_norm": 0.858665406703949, + "learning_rate": 1.4863000000000002e-05, + "loss": 1.3058314514160156, + "step": 527300 + }, + { + "epoch": 70.32, + "grad_norm": 0.888764500617981, + "learning_rate": 1.4856333333333334e-05, + "loss": 1.2972772216796875, + "step": 527400 + }, + { + "epoch": 70.33333333333333, + "grad_norm": 0.8429321050643921, + "learning_rate": 1.4849666666666668e-05, + "loss": 1.3043406677246094, + "step": 527500 + }, + { + "epoch": 70.34666666666666, + "grad_norm": 0.877232015132904, + "learning_rate": 1.4843000000000002e-05, + "loss": 1.3073738098144532, + "step": 527600 + }, + { + "epoch": 70.36, + "grad_norm": 0.8669724464416504, + "learning_rate": 1.4836333333333336e-05, + "loss": 1.30747314453125, + "step": 527700 + }, + { + "epoch": 70.37333333333333, + "grad_norm": 0.8887328505516052, + "learning_rate": 1.4829666666666666e-05, + "loss": 1.3084428405761719, + "step": 527800 + }, + { + "epoch": 70.38666666666667, + "grad_norm": 0.8904489874839783, + "learning_rate": 1.4823e-05, + "loss": 1.3099253845214844, + "step": 527900 + }, + { + "epoch": 70.4, + "grad_norm": 0.8574255704879761, + "learning_rate": 1.4816333333333334e-05, + "loss": 1.3076028442382812, + "step": 528000 + }, + { + "epoch": 70.41333333333333, + "grad_norm": 0.8327115774154663, + "learning_rate": 1.4809666666666666e-05, + "loss": 1.3109042358398437, + "step": 528100 + }, + { + "epoch": 70.42666666666666, + "grad_norm": 0.8879788517951965, + "learning_rate": 1.4803e-05, + "loss": 1.3088136291503907, + "step": 528200 + }, + { + "epoch": 70.44, + "grad_norm": 0.9286050200462341, + "learning_rate": 1.4796333333333334e-05, + "loss": 1.308986358642578, + "step": 528300 + }, + { + "epoch": 70.45333333333333, + "grad_norm": 0.8870999217033386, + "learning_rate": 1.4789666666666668e-05, + "loss": 1.3082102966308593, + "step": 528400 + }, + { + "epoch": 70.46666666666667, + "grad_norm": 0.9179296493530273, + "learning_rate": 1.4783066666666667e-05, + "loss": 1.3106611633300782, + "step": 528500 + }, + { + "epoch": 70.48, + "grad_norm": 0.9033756852149963, + "learning_rate": 1.4776400000000001e-05, + "loss": 1.314158935546875, + "step": 528600 + }, + { + "epoch": 70.49333333333334, + "grad_norm": 0.8611282706260681, + "learning_rate": 1.4769733333333335e-05, + "loss": 1.3064042663574218, + "step": 528700 + }, + { + "epoch": 70.50666666666666, + "grad_norm": 0.8423687219619751, + "learning_rate": 1.4763066666666666e-05, + "loss": 1.3101791381835937, + "step": 528800 + }, + { + "epoch": 70.52, + "grad_norm": 0.8234757781028748, + "learning_rate": 1.4756400000000002e-05, + "loss": 1.3123239135742188, + "step": 528900 + }, + { + "epoch": 70.53333333333333, + "grad_norm": 0.8716632127761841, + "learning_rate": 1.4749733333333336e-05, + "loss": 1.3124678039550781, + "step": 529000 + }, + { + "epoch": 70.54666666666667, + "grad_norm": 0.9232488870620728, + "learning_rate": 1.4743066666666666e-05, + "loss": 1.3115689086914062, + "step": 529100 + }, + { + "epoch": 70.56, + "grad_norm": 0.8848524689674377, + "learning_rate": 1.47364e-05, + "loss": 1.3127764892578124, + "step": 529200 + }, + { + "epoch": 70.57333333333334, + "grad_norm": 0.875851035118103, + "learning_rate": 1.4729733333333334e-05, + "loss": 1.3133317565917968, + "step": 529300 + }, + { + "epoch": 70.58666666666667, + "grad_norm": 0.8727511763572693, + "learning_rate": 1.4723066666666668e-05, + "loss": 1.314737548828125, + "step": 529400 + }, + { + "epoch": 70.6, + "grad_norm": 0.8630813956260681, + "learning_rate": 1.47164e-05, + "loss": 1.3156022644042968, + "step": 529500 + }, + { + "epoch": 70.61333333333333, + "grad_norm": 0.8557106852531433, + "learning_rate": 1.4709733333333334e-05, + "loss": 1.3173948669433593, + "step": 529600 + }, + { + "epoch": 70.62666666666667, + "grad_norm": 0.9779431819915771, + "learning_rate": 1.4703066666666668e-05, + "loss": 1.3198297119140625, + "step": 529700 + }, + { + "epoch": 70.64, + "grad_norm": 0.8593903183937073, + "learning_rate": 1.4696400000000002e-05, + "loss": 1.316092529296875, + "step": 529800 + }, + { + "epoch": 70.65333333333334, + "grad_norm": 0.9095006585121155, + "learning_rate": 1.4689733333333333e-05, + "loss": 1.3180062866210938, + "step": 529900 + }, + { + "epoch": 70.66666666666667, + "grad_norm": 0.8926806449890137, + "learning_rate": 1.4683066666666667e-05, + "loss": 1.3165269470214844, + "step": 530000 + }, + { + "epoch": 70.68, + "grad_norm": 0.9139357805252075, + "learning_rate": 1.46764e-05, + "loss": 1.3208946228027343, + "step": 530100 + }, + { + "epoch": 70.69333333333333, + "grad_norm": 0.8682335615158081, + "learning_rate": 1.4669733333333335e-05, + "loss": 1.3224298095703124, + "step": 530200 + }, + { + "epoch": 70.70666666666666, + "grad_norm": 0.8869616985321045, + "learning_rate": 1.4663066666666667e-05, + "loss": 1.3226483154296875, + "step": 530300 + }, + { + "epoch": 70.72, + "grad_norm": 0.8614656925201416, + "learning_rate": 1.46564e-05, + "loss": 1.3232708740234376, + "step": 530400 + }, + { + "epoch": 70.73333333333333, + "grad_norm": 0.9762331247329712, + "learning_rate": 1.46498e-05, + "loss": 1.3229257202148437, + "step": 530500 + }, + { + "epoch": 70.74666666666667, + "grad_norm": 0.8502513766288757, + "learning_rate": 1.4643133333333334e-05, + "loss": 1.3204423522949218, + "step": 530600 + }, + { + "epoch": 70.76, + "grad_norm": 0.9142144918441772, + "learning_rate": 1.4636466666666668e-05, + "loss": 1.322928924560547, + "step": 530700 + }, + { + "epoch": 70.77333333333333, + "grad_norm": 0.9454054236412048, + "learning_rate": 1.4629800000000002e-05, + "loss": 1.3222068786621093, + "step": 530800 + }, + { + "epoch": 70.78666666666666, + "grad_norm": 0.8787757754325867, + "learning_rate": 1.4623133333333332e-05, + "loss": 1.3248483276367187, + "step": 530900 + }, + { + "epoch": 70.8, + "grad_norm": 0.9337016940116882, + "learning_rate": 1.4616466666666668e-05, + "loss": 1.32533447265625, + "step": 531000 + }, + { + "epoch": 70.81333333333333, + "grad_norm": 0.8793279528617859, + "learning_rate": 1.4609800000000002e-05, + "loss": 1.3210690307617188, + "step": 531100 + }, + { + "epoch": 70.82666666666667, + "grad_norm": 0.9024862051010132, + "learning_rate": 1.4603133333333336e-05, + "loss": 1.3219599914550781, + "step": 531200 + }, + { + "epoch": 70.84, + "grad_norm": 0.8972877264022827, + "learning_rate": 1.4596466666666667e-05, + "loss": 1.3197425842285155, + "step": 531300 + }, + { + "epoch": 70.85333333333334, + "grad_norm": 0.909234344959259, + "learning_rate": 1.45898e-05, + "loss": 1.3218959045410157, + "step": 531400 + }, + { + "epoch": 70.86666666666666, + "grad_norm": 0.9078801870346069, + "learning_rate": 1.4583133333333334e-05, + "loss": 1.3193194580078125, + "step": 531500 + }, + { + "epoch": 70.88, + "grad_norm": 0.8946749567985535, + "learning_rate": 1.4576466666666667e-05, + "loss": 1.3258621215820312, + "step": 531600 + }, + { + "epoch": 70.89333333333333, + "grad_norm": 0.8717100620269775, + "learning_rate": 1.45698e-05, + "loss": 1.324842529296875, + "step": 531700 + }, + { + "epoch": 70.90666666666667, + "grad_norm": 0.9220655560493469, + "learning_rate": 1.4563133333333335e-05, + "loss": 1.32437255859375, + "step": 531800 + }, + { + "epoch": 70.92, + "grad_norm": 0.9325002431869507, + "learning_rate": 1.4556466666666669e-05, + "loss": 1.3232379150390625, + "step": 531900 + }, + { + "epoch": 70.93333333333334, + "grad_norm": 0.9063462615013123, + "learning_rate": 1.45498e-05, + "loss": 1.324942626953125, + "step": 532000 + }, + { + "epoch": 70.94666666666667, + "grad_norm": 0.9205593466758728, + "learning_rate": 1.4543133333333333e-05, + "loss": 1.3274571228027343, + "step": 532100 + }, + { + "epoch": 70.96, + "grad_norm": 0.887042760848999, + "learning_rate": 1.4536466666666667e-05, + "loss": 1.3272421264648437, + "step": 532200 + }, + { + "epoch": 70.97333333333333, + "grad_norm": 0.8990888595581055, + "learning_rate": 1.4529800000000001e-05, + "loss": 1.3276673889160155, + "step": 532300 + }, + { + "epoch": 70.98666666666666, + "grad_norm": 0.86974036693573, + "learning_rate": 1.4523133333333333e-05, + "loss": 1.329319610595703, + "step": 532400 + }, + { + "epoch": 71.0, + "grad_norm": 0.8930814266204834, + "learning_rate": 1.4516533333333334e-05, + "loss": 1.325640869140625, + "step": 532500 + }, + { + "epoch": 71.01333333333334, + "grad_norm": 0.8759956955909729, + "learning_rate": 1.4509866666666666e-05, + "loss": 1.2856077575683593, + "step": 532600 + }, + { + "epoch": 71.02666666666667, + "grad_norm": 0.8954336047172546, + "learning_rate": 1.45032e-05, + "loss": 1.2832220458984376, + "step": 532700 + }, + { + "epoch": 71.04, + "grad_norm": 0.8733825087547302, + "learning_rate": 1.4496533333333334e-05, + "loss": 1.28903564453125, + "step": 532800 + }, + { + "epoch": 71.05333333333333, + "grad_norm": 0.9075688123703003, + "learning_rate": 1.4489866666666668e-05, + "loss": 1.28570556640625, + "step": 532900 + }, + { + "epoch": 71.06666666666666, + "grad_norm": 0.9383872747421265, + "learning_rate": 1.4483199999999999e-05, + "loss": 1.2899357604980468, + "step": 533000 + }, + { + "epoch": 71.08, + "grad_norm": 0.9034363031387329, + "learning_rate": 1.4476533333333333e-05, + "loss": 1.286364288330078, + "step": 533100 + }, + { + "epoch": 71.09333333333333, + "grad_norm": 0.8787199854850769, + "learning_rate": 1.4469866666666668e-05, + "loss": 1.2864273071289063, + "step": 533200 + }, + { + "epoch": 71.10666666666667, + "grad_norm": 0.8827729821205139, + "learning_rate": 1.4463200000000002e-05, + "loss": 1.2890650939941406, + "step": 533300 + }, + { + "epoch": 71.12, + "grad_norm": 0.8463526964187622, + "learning_rate": 1.4456533333333333e-05, + "loss": 1.2948846435546875, + "step": 533400 + }, + { + "epoch": 71.13333333333334, + "grad_norm": 0.903069794178009, + "learning_rate": 1.4449866666666667e-05, + "loss": 1.292220458984375, + "step": 533500 + }, + { + "epoch": 71.14666666666666, + "grad_norm": 0.9482007622718811, + "learning_rate": 1.4443200000000001e-05, + "loss": 1.2937982177734375, + "step": 533600 + }, + { + "epoch": 71.16, + "grad_norm": 0.8994336724281311, + "learning_rate": 1.4436533333333335e-05, + "loss": 1.2911940002441407, + "step": 533700 + }, + { + "epoch": 71.17333333333333, + "grad_norm": 0.8807686567306519, + "learning_rate": 1.4429866666666667e-05, + "loss": 1.2945388793945312, + "step": 533800 + }, + { + "epoch": 71.18666666666667, + "grad_norm": 0.8905879259109497, + "learning_rate": 1.4423200000000001e-05, + "loss": 1.294481964111328, + "step": 533900 + }, + { + "epoch": 71.2, + "grad_norm": 0.8632029891014099, + "learning_rate": 1.4416533333333335e-05, + "loss": 1.2912913513183595, + "step": 534000 + }, + { + "epoch": 71.21333333333334, + "grad_norm": 0.9372066259384155, + "learning_rate": 1.4409866666666669e-05, + "loss": 1.2954859924316406, + "step": 534100 + }, + { + "epoch": 71.22666666666667, + "grad_norm": 0.870266854763031, + "learning_rate": 1.44032e-05, + "loss": 1.2997502136230468, + "step": 534200 + }, + { + "epoch": 71.24, + "grad_norm": 0.8637234568595886, + "learning_rate": 1.4396533333333334e-05, + "loss": 1.2924945068359375, + "step": 534300 + }, + { + "epoch": 71.25333333333333, + "grad_norm": 0.9175564050674438, + "learning_rate": 1.4389866666666668e-05, + "loss": 1.2968971252441406, + "step": 534400 + }, + { + "epoch": 71.26666666666667, + "grad_norm": 0.876574695110321, + "learning_rate": 1.43832e-05, + "loss": 1.2949362182617188, + "step": 534500 + }, + { + "epoch": 71.28, + "grad_norm": 0.9054247140884399, + "learning_rate": 1.43766e-05, + "loss": 1.300845947265625, + "step": 534600 + }, + { + "epoch": 71.29333333333334, + "grad_norm": 0.9211097359657288, + "learning_rate": 1.4369933333333335e-05, + "loss": 1.3006065368652344, + "step": 534700 + }, + { + "epoch": 71.30666666666667, + "grad_norm": 0.8372483849525452, + "learning_rate": 1.4363266666666667e-05, + "loss": 1.2985647583007813, + "step": 534800 + }, + { + "epoch": 71.32, + "grad_norm": 0.8625202775001526, + "learning_rate": 1.43566e-05, + "loss": 1.3008456420898438, + "step": 534900 + }, + { + "epoch": 71.33333333333333, + "grad_norm": 0.8992438912391663, + "learning_rate": 1.4349933333333335e-05, + "loss": 1.301300048828125, + "step": 535000 + }, + { + "epoch": 71.34666666666666, + "grad_norm": 0.8850386738777161, + "learning_rate": 1.4343266666666669e-05, + "loss": 1.301788330078125, + "step": 535100 + }, + { + "epoch": 71.36, + "grad_norm": 0.8406701683998108, + "learning_rate": 1.43366e-05, + "loss": 1.2999703979492188, + "step": 535200 + }, + { + "epoch": 71.37333333333333, + "grad_norm": 0.8646606802940369, + "learning_rate": 1.4329933333333335e-05, + "loss": 1.3001799011230468, + "step": 535300 + }, + { + "epoch": 71.38666666666667, + "grad_norm": 0.9445309638977051, + "learning_rate": 1.4323266666666669e-05, + "loss": 1.302128143310547, + "step": 535400 + }, + { + "epoch": 71.4, + "grad_norm": 0.9471325874328613, + "learning_rate": 1.43166e-05, + "loss": 1.2999264526367187, + "step": 535500 + }, + { + "epoch": 71.41333333333333, + "grad_norm": 0.8217885494232178, + "learning_rate": 1.4309933333333333e-05, + "loss": 1.3032241821289063, + "step": 535600 + }, + { + "epoch": 71.42666666666666, + "grad_norm": 0.9401599764823914, + "learning_rate": 1.4303266666666667e-05, + "loss": 1.3056138610839845, + "step": 535700 + }, + { + "epoch": 71.44, + "grad_norm": 0.9012302756309509, + "learning_rate": 1.4296600000000001e-05, + "loss": 1.3041902160644532, + "step": 535800 + }, + { + "epoch": 71.45333333333333, + "grad_norm": 0.9111303091049194, + "learning_rate": 1.4289933333333334e-05, + "loss": 1.3063230895996094, + "step": 535900 + }, + { + "epoch": 71.46666666666667, + "grad_norm": 0.8673276901245117, + "learning_rate": 1.4283266666666668e-05, + "loss": 1.3001760864257812, + "step": 536000 + }, + { + "epoch": 71.48, + "grad_norm": 0.9236326217651367, + "learning_rate": 1.4276600000000002e-05, + "loss": 1.3068719482421876, + "step": 536100 + }, + { + "epoch": 71.49333333333334, + "grad_norm": 0.9119008779525757, + "learning_rate": 1.4269933333333335e-05, + "loss": 1.3041954040527344, + "step": 536200 + }, + { + "epoch": 71.50666666666666, + "grad_norm": 0.8844600319862366, + "learning_rate": 1.4263266666666666e-05, + "loss": 1.3039337158203126, + "step": 536300 + }, + { + "epoch": 71.52, + "grad_norm": 0.9151673316955566, + "learning_rate": 1.42566e-05, + "loss": 1.3061659240722656, + "step": 536400 + }, + { + "epoch": 71.53333333333333, + "grad_norm": 0.9146116971969604, + "learning_rate": 1.4249933333333334e-05, + "loss": 1.3047665405273436, + "step": 536500 + }, + { + "epoch": 71.54666666666667, + "grad_norm": 0.909635066986084, + "learning_rate": 1.4243333333333333e-05, + "loss": 1.3087080383300782, + "step": 536600 + }, + { + "epoch": 71.56, + "grad_norm": 0.9132217168807983, + "learning_rate": 1.4236666666666667e-05, + "loss": 1.3109938049316405, + "step": 536700 + }, + { + "epoch": 71.57333333333334, + "grad_norm": 0.9197409749031067, + "learning_rate": 1.4230000000000001e-05, + "loss": 1.3079139709472656, + "step": 536800 + }, + { + "epoch": 71.58666666666667, + "grad_norm": 0.8718376755714417, + "learning_rate": 1.4223333333333333e-05, + "loss": 1.3103158569335938, + "step": 536900 + }, + { + "epoch": 71.6, + "grad_norm": 0.8622058629989624, + "learning_rate": 1.4216666666666667e-05, + "loss": 1.31333251953125, + "step": 537000 + }, + { + "epoch": 71.61333333333333, + "grad_norm": 0.8807839155197144, + "learning_rate": 1.4210000000000001e-05, + "loss": 1.3074960327148437, + "step": 537100 + }, + { + "epoch": 71.62666666666667, + "grad_norm": 0.8405951261520386, + "learning_rate": 1.4203333333333335e-05, + "loss": 1.3117068481445313, + "step": 537200 + }, + { + "epoch": 71.64, + "grad_norm": 0.882014811038971, + "learning_rate": 1.4196666666666666e-05, + "loss": 1.3139077758789062, + "step": 537300 + }, + { + "epoch": 71.65333333333334, + "grad_norm": 0.9259293675422668, + "learning_rate": 1.4190000000000001e-05, + "loss": 1.310390625, + "step": 537400 + }, + { + "epoch": 71.66666666666667, + "grad_norm": 0.9055889248847961, + "learning_rate": 1.4183333333333335e-05, + "loss": 1.3092813110351562, + "step": 537500 + }, + { + "epoch": 71.68, + "grad_norm": 0.8556098937988281, + "learning_rate": 1.417666666666667e-05, + "loss": 1.30866455078125, + "step": 537600 + }, + { + "epoch": 71.69333333333333, + "grad_norm": 0.8926159143447876, + "learning_rate": 1.417e-05, + "loss": 1.3125555419921875, + "step": 537700 + }, + { + "epoch": 71.70666666666666, + "grad_norm": 0.9067847728729248, + "learning_rate": 1.4163333333333334e-05, + "loss": 1.3115115356445313, + "step": 537800 + }, + { + "epoch": 71.72, + "grad_norm": 0.9084548950195312, + "learning_rate": 1.4156666666666668e-05, + "loss": 1.310784912109375, + "step": 537900 + }, + { + "epoch": 71.73333333333333, + "grad_norm": 0.9122881889343262, + "learning_rate": 1.415e-05, + "loss": 1.3145706176757812, + "step": 538000 + }, + { + "epoch": 71.74666666666667, + "grad_norm": 0.9275632500648499, + "learning_rate": 1.4143333333333334e-05, + "loss": 1.3158493041992188, + "step": 538100 + }, + { + "epoch": 71.76, + "grad_norm": 0.8880303502082825, + "learning_rate": 1.4136666666666668e-05, + "loss": 1.3153211975097656, + "step": 538200 + }, + { + "epoch": 71.77333333333333, + "grad_norm": 0.8939701318740845, + "learning_rate": 1.4130000000000002e-05, + "loss": 1.3133526611328126, + "step": 538300 + }, + { + "epoch": 71.78666666666666, + "grad_norm": 0.9312496781349182, + "learning_rate": 1.4123333333333333e-05, + "loss": 1.3141810607910156, + "step": 538400 + }, + { + "epoch": 71.8, + "grad_norm": 0.8720466494560242, + "learning_rate": 1.4116666666666666e-05, + "loss": 1.3163778686523437, + "step": 538500 + }, + { + "epoch": 71.81333333333333, + "grad_norm": 0.8582771420478821, + "learning_rate": 1.4110066666666669e-05, + "loss": 1.3129298400878906, + "step": 538600 + }, + { + "epoch": 71.82666666666667, + "grad_norm": 0.8980292677879333, + "learning_rate": 1.41034e-05, + "loss": 1.3134010314941407, + "step": 538700 + }, + { + "epoch": 71.84, + "grad_norm": 0.8518330454826355, + "learning_rate": 1.4096733333333333e-05, + "loss": 1.318262176513672, + "step": 538800 + }, + { + "epoch": 71.85333333333334, + "grad_norm": 0.9726895689964294, + "learning_rate": 1.4090066666666667e-05, + "loss": 1.3170086669921874, + "step": 538900 + }, + { + "epoch": 71.86666666666666, + "grad_norm": 0.9808132648468018, + "learning_rate": 1.40834e-05, + "loss": 1.3163888549804688, + "step": 539000 + }, + { + "epoch": 71.88, + "grad_norm": 0.9004959464073181, + "learning_rate": 1.4076733333333334e-05, + "loss": 1.319114227294922, + "step": 539100 + }, + { + "epoch": 71.89333333333333, + "grad_norm": 0.9053959846496582, + "learning_rate": 1.4070066666666668e-05, + "loss": 1.31746337890625, + "step": 539200 + }, + { + "epoch": 71.90666666666667, + "grad_norm": 0.9328406453132629, + "learning_rate": 1.4063400000000002e-05, + "loss": 1.3196490478515626, + "step": 539300 + }, + { + "epoch": 71.92, + "grad_norm": 0.9023466110229492, + "learning_rate": 1.4056733333333332e-05, + "loss": 1.3168644714355469, + "step": 539400 + }, + { + "epoch": 71.93333333333334, + "grad_norm": 0.9490998983383179, + "learning_rate": 1.4050066666666666e-05, + "loss": 1.3167729187011719, + "step": 539500 + }, + { + "epoch": 71.94666666666667, + "grad_norm": 0.8722997903823853, + "learning_rate": 1.4043400000000002e-05, + "loss": 1.3187103271484375, + "step": 539600 + }, + { + "epoch": 71.96, + "grad_norm": 0.8097230792045593, + "learning_rate": 1.4036733333333336e-05, + "loss": 1.3224807739257813, + "step": 539700 + }, + { + "epoch": 71.97333333333333, + "grad_norm": 0.8848879337310791, + "learning_rate": 1.4030066666666666e-05, + "loss": 1.3202239990234375, + "step": 539800 + }, + { + "epoch": 71.98666666666666, + "grad_norm": 0.9258289933204651, + "learning_rate": 1.40234e-05, + "loss": 1.316883544921875, + "step": 539900 + }, + { + "epoch": 72.0, + "grad_norm": 0.8436217904090881, + "learning_rate": 1.4016733333333334e-05, + "loss": 1.315811309814453, + "step": 540000 + }, + { + "epoch": 72.01333333333334, + "grad_norm": 0.8667635321617126, + "learning_rate": 1.4010066666666668e-05, + "loss": 1.276677932739258, + "step": 540100 + }, + { + "epoch": 72.02666666666667, + "grad_norm": 0.9259230494499207, + "learning_rate": 1.40034e-05, + "loss": 1.281935577392578, + "step": 540200 + }, + { + "epoch": 72.04, + "grad_norm": 0.8905673027038574, + "learning_rate": 1.3996733333333334e-05, + "loss": 1.279156951904297, + "step": 540300 + }, + { + "epoch": 72.05333333333333, + "grad_norm": 0.829764723777771, + "learning_rate": 1.3990066666666668e-05, + "loss": 1.2802044677734374, + "step": 540400 + }, + { + "epoch": 72.06666666666666, + "grad_norm": 0.8586835861206055, + "learning_rate": 1.3983400000000002e-05, + "loss": 1.2799781036376954, + "step": 540500 + }, + { + "epoch": 72.08, + "grad_norm": 0.9158450365066528, + "learning_rate": 1.3976800000000001e-05, + "loss": 1.2819879150390625, + "step": 540600 + }, + { + "epoch": 72.09333333333333, + "grad_norm": 0.8834480047225952, + "learning_rate": 1.3970133333333335e-05, + "loss": 1.286240234375, + "step": 540700 + }, + { + "epoch": 72.10666666666667, + "grad_norm": 0.8838781118392944, + "learning_rate": 1.3963466666666666e-05, + "loss": 1.2864297485351563, + "step": 540800 + }, + { + "epoch": 72.12, + "grad_norm": 0.8703628778457642, + "learning_rate": 1.39568e-05, + "loss": 1.2833221435546875, + "step": 540900 + }, + { + "epoch": 72.13333333333334, + "grad_norm": 0.8430854678153992, + "learning_rate": 1.3950133333333334e-05, + "loss": 1.2873780822753906, + "step": 541000 + }, + { + "epoch": 72.14666666666666, + "grad_norm": 0.8535856008529663, + "learning_rate": 1.3943466666666668e-05, + "loss": 1.285396728515625, + "step": 541100 + }, + { + "epoch": 72.16, + "grad_norm": 0.9505435228347778, + "learning_rate": 1.39368e-05, + "loss": 1.2908889770507812, + "step": 541200 + }, + { + "epoch": 72.17333333333333, + "grad_norm": 0.9199652671813965, + "learning_rate": 1.3930133333333334e-05, + "loss": 1.2874760437011719, + "step": 541300 + }, + { + "epoch": 72.18666666666667, + "grad_norm": 0.9367565512657166, + "learning_rate": 1.3923466666666668e-05, + "loss": 1.2900453186035157, + "step": 541400 + }, + { + "epoch": 72.2, + "grad_norm": 0.8932370543479919, + "learning_rate": 1.3916799999999999e-05, + "loss": 1.290118408203125, + "step": 541500 + }, + { + "epoch": 72.21333333333334, + "grad_norm": 0.8846625089645386, + "learning_rate": 1.3910133333333333e-05, + "loss": 1.289880828857422, + "step": 541600 + }, + { + "epoch": 72.22666666666667, + "grad_norm": 0.8700215816497803, + "learning_rate": 1.3903466666666668e-05, + "loss": 1.2882028198242188, + "step": 541700 + }, + { + "epoch": 72.24, + "grad_norm": 0.8952950239181519, + "learning_rate": 1.3896800000000002e-05, + "loss": 1.2952290344238282, + "step": 541800 + }, + { + "epoch": 72.25333333333333, + "grad_norm": 0.8888140320777893, + "learning_rate": 1.3890133333333333e-05, + "loss": 1.2887269592285155, + "step": 541900 + }, + { + "epoch": 72.26666666666667, + "grad_norm": 0.873499870300293, + "learning_rate": 1.3883466666666667e-05, + "loss": 1.2873663330078124, + "step": 542000 + }, + { + "epoch": 72.28, + "grad_norm": 0.8604170083999634, + "learning_rate": 1.38768e-05, + "loss": 1.2889486694335937, + "step": 542100 + }, + { + "epoch": 72.29333333333334, + "grad_norm": 0.8493339419364929, + "learning_rate": 1.3870133333333335e-05, + "loss": 1.2932403564453125, + "step": 542200 + }, + { + "epoch": 72.30666666666667, + "grad_norm": 0.8944411873817444, + "learning_rate": 1.3863466666666667e-05, + "loss": 1.298619384765625, + "step": 542300 + }, + { + "epoch": 72.32, + "grad_norm": 0.9077425003051758, + "learning_rate": 1.3856800000000001e-05, + "loss": 1.291400146484375, + "step": 542400 + }, + { + "epoch": 72.33333333333333, + "grad_norm": 0.9395051598548889, + "learning_rate": 1.3850133333333335e-05, + "loss": 1.2952896118164063, + "step": 542500 + }, + { + "epoch": 72.34666666666666, + "grad_norm": 0.9028144478797913, + "learning_rate": 1.3843533333333334e-05, + "loss": 1.290705108642578, + "step": 542600 + }, + { + "epoch": 72.36, + "grad_norm": 0.9369432330131531, + "learning_rate": 1.3836866666666668e-05, + "loss": 1.2938015747070313, + "step": 542700 + }, + { + "epoch": 72.37333333333333, + "grad_norm": 0.8780479431152344, + "learning_rate": 1.3830200000000002e-05, + "loss": 1.296564483642578, + "step": 542800 + }, + { + "epoch": 72.38666666666667, + "grad_norm": 0.9035230875015259, + "learning_rate": 1.3823533333333332e-05, + "loss": 1.3008587646484375, + "step": 542900 + }, + { + "epoch": 72.4, + "grad_norm": 0.8920375108718872, + "learning_rate": 1.3816866666666666e-05, + "loss": 1.2913095092773437, + "step": 543000 + }, + { + "epoch": 72.41333333333333, + "grad_norm": 0.8965349793434143, + "learning_rate": 1.38102e-05, + "loss": 1.2953553771972657, + "step": 543100 + }, + { + "epoch": 72.42666666666666, + "grad_norm": 0.8993667364120483, + "learning_rate": 1.3803533333333334e-05, + "loss": 1.300503692626953, + "step": 543200 + }, + { + "epoch": 72.44, + "grad_norm": 0.8752589821815491, + "learning_rate": 1.3796866666666667e-05, + "loss": 1.2973211669921876, + "step": 543300 + }, + { + "epoch": 72.45333333333333, + "grad_norm": 0.9074227809906006, + "learning_rate": 1.37902e-05, + "loss": 1.2994436645507812, + "step": 543400 + }, + { + "epoch": 72.46666666666667, + "grad_norm": 0.8692722320556641, + "learning_rate": 1.3783533333333335e-05, + "loss": 1.3030880737304686, + "step": 543500 + }, + { + "epoch": 72.48, + "grad_norm": 0.9283269047737122, + "learning_rate": 1.3776866666666668e-05, + "loss": 1.2986073303222656, + "step": 543600 + }, + { + "epoch": 72.49333333333334, + "grad_norm": 0.8463515639305115, + "learning_rate": 1.3770199999999999e-05, + "loss": 1.3008390808105468, + "step": 543700 + }, + { + "epoch": 72.50666666666666, + "grad_norm": 0.9368971586227417, + "learning_rate": 1.3763533333333333e-05, + "loss": 1.3003103637695312, + "step": 543800 + }, + { + "epoch": 72.52, + "grad_norm": 0.8514252305030823, + "learning_rate": 1.3756866666666669e-05, + "loss": 1.2996723937988282, + "step": 543900 + }, + { + "epoch": 72.53333333333333, + "grad_norm": 0.9113193154335022, + "learning_rate": 1.3750200000000003e-05, + "loss": 1.3013104248046874, + "step": 544000 + }, + { + "epoch": 72.54666666666667, + "grad_norm": 0.8973194360733032, + "learning_rate": 1.3743533333333333e-05, + "loss": 1.303866424560547, + "step": 544100 + }, + { + "epoch": 72.56, + "grad_norm": 0.9292814135551453, + "learning_rate": 1.3736866666666667e-05, + "loss": 1.3007473754882812, + "step": 544200 + }, + { + "epoch": 72.57333333333334, + "grad_norm": 0.8650021553039551, + "learning_rate": 1.3730200000000001e-05, + "loss": 1.3053372192382813, + "step": 544300 + }, + { + "epoch": 72.58666666666667, + "grad_norm": 0.9136223196983337, + "learning_rate": 1.3723533333333333e-05, + "loss": 1.305074462890625, + "step": 544400 + }, + { + "epoch": 72.6, + "grad_norm": 0.899770975112915, + "learning_rate": 1.3716866666666667e-05, + "loss": 1.304183807373047, + "step": 544500 + }, + { + "epoch": 72.61333333333333, + "grad_norm": 0.9051358699798584, + "learning_rate": 1.3710200000000001e-05, + "loss": 1.2999253845214844, + "step": 544600 + }, + { + "epoch": 72.62666666666667, + "grad_norm": 0.8969173431396484, + "learning_rate": 1.37036e-05, + "loss": 1.301925048828125, + "step": 544700 + }, + { + "epoch": 72.64, + "grad_norm": 0.8683328032493591, + "learning_rate": 1.3696933333333334e-05, + "loss": 1.3041268920898437, + "step": 544800 + }, + { + "epoch": 72.65333333333334, + "grad_norm": 0.9285234808921814, + "learning_rate": 1.3690266666666668e-05, + "loss": 1.3035903930664063, + "step": 544900 + }, + { + "epoch": 72.66666666666667, + "grad_norm": 0.9057257175445557, + "learning_rate": 1.3683600000000002e-05, + "loss": 1.3026934814453126, + "step": 545000 + }, + { + "epoch": 72.68, + "grad_norm": 0.9157271385192871, + "learning_rate": 1.3676933333333333e-05, + "loss": 1.303736114501953, + "step": 545100 + }, + { + "epoch": 72.69333333333333, + "grad_norm": 0.8953295350074768, + "learning_rate": 1.3670266666666667e-05, + "loss": 1.3063804626464843, + "step": 545200 + }, + { + "epoch": 72.70666666666666, + "grad_norm": 0.9013524651527405, + "learning_rate": 1.36636e-05, + "loss": 1.3081599426269532, + "step": 545300 + }, + { + "epoch": 72.72, + "grad_norm": 0.8747628331184387, + "learning_rate": 1.3656933333333333e-05, + "loss": 1.3081907653808593, + "step": 545400 + }, + { + "epoch": 72.73333333333333, + "grad_norm": 0.8898458480834961, + "learning_rate": 1.3650266666666667e-05, + "loss": 1.308251953125, + "step": 545500 + }, + { + "epoch": 72.74666666666667, + "grad_norm": 0.9078856110572815, + "learning_rate": 1.3643600000000001e-05, + "loss": 1.3066876220703125, + "step": 545600 + }, + { + "epoch": 72.76, + "grad_norm": 0.8842049241065979, + "learning_rate": 1.3636933333333335e-05, + "loss": 1.3049169921875, + "step": 545700 + }, + { + "epoch": 72.77333333333333, + "grad_norm": 0.9232098460197449, + "learning_rate": 1.3630266666666666e-05, + "loss": 1.3058796691894532, + "step": 545800 + }, + { + "epoch": 72.78666666666666, + "grad_norm": 0.9262491464614868, + "learning_rate": 1.36236e-05, + "loss": 1.3056631469726563, + "step": 545900 + }, + { + "epoch": 72.8, + "grad_norm": 0.9117762446403503, + "learning_rate": 1.3616933333333335e-05, + "loss": 1.3098313903808594, + "step": 546000 + }, + { + "epoch": 72.81333333333333, + "grad_norm": 0.8940130472183228, + "learning_rate": 1.3610266666666669e-05, + "loss": 1.3110063171386719, + "step": 546100 + }, + { + "epoch": 72.82666666666667, + "grad_norm": 0.8723244071006775, + "learning_rate": 1.36036e-05, + "loss": 1.3087918090820312, + "step": 546200 + }, + { + "epoch": 72.84, + "grad_norm": 0.8790159821510315, + "learning_rate": 1.3596933333333334e-05, + "loss": 1.3090879821777344, + "step": 546300 + }, + { + "epoch": 72.85333333333334, + "grad_norm": 0.9324440956115723, + "learning_rate": 1.3590266666666668e-05, + "loss": 1.3065005493164064, + "step": 546400 + }, + { + "epoch": 72.86666666666666, + "grad_norm": 0.9022642374038696, + "learning_rate": 1.3583600000000002e-05, + "loss": 1.308943634033203, + "step": 546500 + }, + { + "epoch": 72.88, + "grad_norm": 0.8869839906692505, + "learning_rate": 1.3576933333333334e-05, + "loss": 1.3140464782714845, + "step": 546600 + }, + { + "epoch": 72.89333333333333, + "grad_norm": 0.9020800590515137, + "learning_rate": 1.3570333333333335e-05, + "loss": 1.3082620239257812, + "step": 546700 + }, + { + "epoch": 72.90666666666667, + "grad_norm": 0.8998864889144897, + "learning_rate": 1.3563666666666667e-05, + "loss": 1.3143278503417968, + "step": 546800 + }, + { + "epoch": 72.92, + "grad_norm": 0.9254443645477295, + "learning_rate": 1.3557e-05, + "loss": 1.3102537536621093, + "step": 546900 + }, + { + "epoch": 72.93333333333334, + "grad_norm": 0.8916531205177307, + "learning_rate": 1.3550333333333335e-05, + "loss": 1.3090887451171875, + "step": 547000 + }, + { + "epoch": 72.94666666666667, + "grad_norm": 0.8924204707145691, + "learning_rate": 1.3543666666666669e-05, + "loss": 1.3153028869628907, + "step": 547100 + }, + { + "epoch": 72.96, + "grad_norm": 0.8734211921691895, + "learning_rate": 1.3537e-05, + "loss": 1.3160145568847657, + "step": 547200 + }, + { + "epoch": 72.97333333333333, + "grad_norm": 0.8596046566963196, + "learning_rate": 1.3530333333333333e-05, + "loss": 1.3085627746582031, + "step": 547300 + }, + { + "epoch": 72.98666666666666, + "grad_norm": 0.8837646842002869, + "learning_rate": 1.3523666666666667e-05, + "loss": 1.3099195861816406, + "step": 547400 + }, + { + "epoch": 73.0, + "grad_norm": 0.9559072852134705, + "learning_rate": 1.3517000000000001e-05, + "loss": 1.3160740661621093, + "step": 547500 + }, + { + "epoch": 73.01333333333334, + "grad_norm": 0.9471146464347839, + "learning_rate": 1.3510333333333333e-05, + "loss": 1.2761563110351561, + "step": 547600 + }, + { + "epoch": 73.02666666666667, + "grad_norm": 0.8618519306182861, + "learning_rate": 1.3503666666666667e-05, + "loss": 1.2729344940185547, + "step": 547700 + }, + { + "epoch": 73.04, + "grad_norm": 0.8488065600395203, + "learning_rate": 1.3497000000000001e-05, + "loss": 1.273756561279297, + "step": 547800 + }, + { + "epoch": 73.05333333333333, + "grad_norm": 0.8331854343414307, + "learning_rate": 1.3490333333333332e-05, + "loss": 1.277390899658203, + "step": 547900 + }, + { + "epoch": 73.06666666666666, + "grad_norm": 0.8586211204528809, + "learning_rate": 1.3483666666666666e-05, + "loss": 1.276772689819336, + "step": 548000 + }, + { + "epoch": 73.08, + "grad_norm": 0.8098661303520203, + "learning_rate": 1.3477000000000002e-05, + "loss": 1.2797915649414062, + "step": 548100 + }, + { + "epoch": 73.09333333333333, + "grad_norm": 0.953315019607544, + "learning_rate": 1.3470333333333336e-05, + "loss": 1.276962432861328, + "step": 548200 + }, + { + "epoch": 73.10666666666667, + "grad_norm": 0.8598954677581787, + "learning_rate": 1.3463666666666666e-05, + "loss": 1.2770060729980468, + "step": 548300 + }, + { + "epoch": 73.12, + "grad_norm": 0.8851730227470398, + "learning_rate": 1.3457e-05, + "loss": 1.2772944641113282, + "step": 548400 + }, + { + "epoch": 73.13333333333334, + "grad_norm": 0.8884763121604919, + "learning_rate": 1.3450333333333334e-05, + "loss": 1.2774359130859374, + "step": 548500 + }, + { + "epoch": 73.14666666666666, + "grad_norm": 0.9043313264846802, + "learning_rate": 1.3443666666666668e-05, + "loss": 1.2833470153808593, + "step": 548600 + }, + { + "epoch": 73.16, + "grad_norm": 0.9404314160346985, + "learning_rate": 1.3437066666666667e-05, + "loss": 1.2804563903808595, + "step": 548700 + }, + { + "epoch": 73.17333333333333, + "grad_norm": 0.8437866568565369, + "learning_rate": 1.3430400000000001e-05, + "loss": 1.2854263305664062, + "step": 548800 + }, + { + "epoch": 73.18666666666667, + "grad_norm": 0.927335798740387, + "learning_rate": 1.3423733333333333e-05, + "loss": 1.2844186401367188, + "step": 548900 + }, + { + "epoch": 73.2, + "grad_norm": 0.8449512124061584, + "learning_rate": 1.3417066666666667e-05, + "loss": 1.2796637725830078, + "step": 549000 + }, + { + "epoch": 73.21333333333334, + "grad_norm": 0.8738372325897217, + "learning_rate": 1.3410400000000001e-05, + "loss": 1.2857395935058593, + "step": 549100 + }, + { + "epoch": 73.22666666666667, + "grad_norm": 0.8766629695892334, + "learning_rate": 1.3403733333333335e-05, + "loss": 1.2832762145996093, + "step": 549200 + }, + { + "epoch": 73.24, + "grad_norm": 0.8308307528495789, + "learning_rate": 1.3397066666666666e-05, + "loss": 1.2830810546875, + "step": 549300 + }, + { + "epoch": 73.25333333333333, + "grad_norm": 0.9020586013793945, + "learning_rate": 1.33904e-05, + "loss": 1.2846853637695312, + "step": 549400 + }, + { + "epoch": 73.26666666666667, + "grad_norm": 0.8639815449714661, + "learning_rate": 1.3383733333333334e-05, + "loss": 1.287603302001953, + "step": 549500 + }, + { + "epoch": 73.28, + "grad_norm": 0.8645631670951843, + "learning_rate": 1.3377066666666668e-05, + "loss": 1.287257537841797, + "step": 549600 + }, + { + "epoch": 73.29333333333334, + "grad_norm": 0.8956714868545532, + "learning_rate": 1.33704e-05, + "loss": 1.2851387023925782, + "step": 549700 + }, + { + "epoch": 73.30666666666667, + "grad_norm": 0.9055325984954834, + "learning_rate": 1.3363733333333334e-05, + "loss": 1.2879544067382813, + "step": 549800 + }, + { + "epoch": 73.32, + "grad_norm": 0.8861287236213684, + "learning_rate": 1.3357066666666668e-05, + "loss": 1.2887428283691407, + "step": 549900 + }, + { + "epoch": 73.33333333333333, + "grad_norm": 0.9045313000679016, + "learning_rate": 1.3350400000000002e-05, + "loss": 1.2884335327148437, + "step": 550000 + }, + { + "epoch": 73.34666666666666, + "grad_norm": 0.8875342011451721, + "learning_rate": 1.3343733333333332e-05, + "loss": 1.2835194396972656, + "step": 550100 + }, + { + "epoch": 73.36, + "grad_norm": 0.8842615485191345, + "learning_rate": 1.3337066666666666e-05, + "loss": 1.2884930419921874, + "step": 550200 + }, + { + "epoch": 73.37333333333333, + "grad_norm": 0.9177148342132568, + "learning_rate": 1.3330400000000002e-05, + "loss": 1.290846710205078, + "step": 550300 + }, + { + "epoch": 73.38666666666667, + "grad_norm": 0.913221538066864, + "learning_rate": 1.3323733333333336e-05, + "loss": 1.2883349609375, + "step": 550400 + }, + { + "epoch": 73.4, + "grad_norm": 0.9081894159317017, + "learning_rate": 1.3317066666666667e-05, + "loss": 1.2872616577148437, + "step": 550500 + }, + { + "epoch": 73.41333333333333, + "grad_norm": 0.8833068609237671, + "learning_rate": 1.33104e-05, + "loss": 1.2878277587890625, + "step": 550600 + }, + { + "epoch": 73.42666666666666, + "grad_norm": 0.8581375479698181, + "learning_rate": 1.33038e-05, + "loss": 1.2895700073242187, + "step": 550700 + }, + { + "epoch": 73.44, + "grad_norm": 0.9249962568283081, + "learning_rate": 1.3297133333333334e-05, + "loss": 1.2897068786621093, + "step": 550800 + }, + { + "epoch": 73.45333333333333, + "grad_norm": 0.9126532077789307, + "learning_rate": 1.3290466666666668e-05, + "loss": 1.2911618041992188, + "step": 550900 + }, + { + "epoch": 73.46666666666667, + "grad_norm": 0.91612708568573, + "learning_rate": 1.3283800000000001e-05, + "loss": 1.2918502807617187, + "step": 551000 + }, + { + "epoch": 73.48, + "grad_norm": 0.8593502044677734, + "learning_rate": 1.3277133333333334e-05, + "loss": 1.292982177734375, + "step": 551100 + }, + { + "epoch": 73.49333333333334, + "grad_norm": 0.9457326531410217, + "learning_rate": 1.3270466666666668e-05, + "loss": 1.2906185913085937, + "step": 551200 + }, + { + "epoch": 73.50666666666666, + "grad_norm": 0.8378877639770508, + "learning_rate": 1.3263800000000002e-05, + "loss": 1.29209228515625, + "step": 551300 + }, + { + "epoch": 73.52, + "grad_norm": 0.9088276624679565, + "learning_rate": 1.3257133333333336e-05, + "loss": 1.2912477111816407, + "step": 551400 + }, + { + "epoch": 73.53333333333333, + "grad_norm": 0.9294626712799072, + "learning_rate": 1.3250466666666666e-05, + "loss": 1.2885626220703126, + "step": 551500 + }, + { + "epoch": 73.54666666666667, + "grad_norm": 0.876581072807312, + "learning_rate": 1.32438e-05, + "loss": 1.2994056701660157, + "step": 551600 + }, + { + "epoch": 73.56, + "grad_norm": 0.9063646793365479, + "learning_rate": 1.3237133333333334e-05, + "loss": 1.2967149353027343, + "step": 551700 + }, + { + "epoch": 73.57333333333334, + "grad_norm": 0.8408426642417908, + "learning_rate": 1.3230466666666666e-05, + "loss": 1.2977626037597656, + "step": 551800 + }, + { + "epoch": 73.58666666666667, + "grad_norm": 0.9056010246276855, + "learning_rate": 1.32238e-05, + "loss": 1.2985139465332032, + "step": 551900 + }, + { + "epoch": 73.6, + "grad_norm": 0.8862862586975098, + "learning_rate": 1.3217133333333334e-05, + "loss": 1.2940017700195312, + "step": 552000 + }, + { + "epoch": 73.61333333333333, + "grad_norm": 0.8660182356834412, + "learning_rate": 1.3210466666666668e-05, + "loss": 1.2961624145507813, + "step": 552100 + }, + { + "epoch": 73.62666666666667, + "grad_norm": 0.8667203187942505, + "learning_rate": 1.3203799999999999e-05, + "loss": 1.2973252868652343, + "step": 552200 + }, + { + "epoch": 73.64, + "grad_norm": 0.8764863014221191, + "learning_rate": 1.3197133333333333e-05, + "loss": 1.3011990356445313, + "step": 552300 + }, + { + "epoch": 73.65333333333334, + "grad_norm": 0.854836106300354, + "learning_rate": 1.3190466666666668e-05, + "loss": 1.301475830078125, + "step": 552400 + }, + { + "epoch": 73.66666666666667, + "grad_norm": 0.8675264716148376, + "learning_rate": 1.3183800000000002e-05, + "loss": 1.2946461486816405, + "step": 552500 + }, + { + "epoch": 73.68, + "grad_norm": 0.8799411654472351, + "learning_rate": 1.3177133333333333e-05, + "loss": 1.2978501892089844, + "step": 552600 + }, + { + "epoch": 73.69333333333333, + "grad_norm": 0.8406023979187012, + "learning_rate": 1.3170466666666667e-05, + "loss": 1.2984336853027343, + "step": 552700 + }, + { + "epoch": 73.70666666666666, + "grad_norm": 0.8912414908409119, + "learning_rate": 1.3163866666666666e-05, + "loss": 1.3007151794433593, + "step": 552800 + }, + { + "epoch": 73.72, + "grad_norm": 0.8535100221633911, + "learning_rate": 1.31572e-05, + "loss": 1.2961094665527344, + "step": 552900 + }, + { + "epoch": 73.73333333333333, + "grad_norm": 0.932938814163208, + "learning_rate": 1.3150533333333334e-05, + "loss": 1.2960186767578126, + "step": 553000 + }, + { + "epoch": 73.74666666666667, + "grad_norm": 0.9171094298362732, + "learning_rate": 1.3143866666666668e-05, + "loss": 1.3013040161132812, + "step": 553100 + }, + { + "epoch": 73.76, + "grad_norm": 0.923318088054657, + "learning_rate": 1.31372e-05, + "loss": 1.300777130126953, + "step": 553200 + }, + { + "epoch": 73.77333333333333, + "grad_norm": 0.9453115463256836, + "learning_rate": 1.3130533333333334e-05, + "loss": 1.3012001037597656, + "step": 553300 + }, + { + "epoch": 73.78666666666666, + "grad_norm": 0.9598022699356079, + "learning_rate": 1.3123866666666668e-05, + "loss": 1.3000535583496093, + "step": 553400 + }, + { + "epoch": 73.8, + "grad_norm": 0.8746120929718018, + "learning_rate": 1.3117200000000002e-05, + "loss": 1.299759979248047, + "step": 553500 + }, + { + "epoch": 73.81333333333333, + "grad_norm": 0.8909258842468262, + "learning_rate": 1.3110533333333333e-05, + "loss": 1.3039195251464843, + "step": 553600 + }, + { + "epoch": 73.82666666666667, + "grad_norm": 0.899439811706543, + "learning_rate": 1.3103866666666667e-05, + "loss": 1.3032107543945313, + "step": 553700 + }, + { + "epoch": 73.84, + "grad_norm": 0.9339725375175476, + "learning_rate": 1.30972e-05, + "loss": 1.2999578857421874, + "step": 553800 + }, + { + "epoch": 73.85333333333334, + "grad_norm": 0.8592462539672852, + "learning_rate": 1.3090533333333335e-05, + "loss": 1.3077874755859376, + "step": 553900 + }, + { + "epoch": 73.86666666666666, + "grad_norm": 0.8757080435752869, + "learning_rate": 1.3083866666666667e-05, + "loss": 1.3068240356445313, + "step": 554000 + }, + { + "epoch": 73.88, + "grad_norm": 0.893817663192749, + "learning_rate": 1.30772e-05, + "loss": 1.3072088623046876, + "step": 554100 + }, + { + "epoch": 73.89333333333333, + "grad_norm": 0.8930887579917908, + "learning_rate": 1.3070533333333335e-05, + "loss": 1.303759307861328, + "step": 554200 + }, + { + "epoch": 73.90666666666667, + "grad_norm": 0.9105483293533325, + "learning_rate": 1.3063866666666665e-05, + "loss": 1.3057803344726562, + "step": 554300 + }, + { + "epoch": 73.92, + "grad_norm": 0.9180082678794861, + "learning_rate": 1.30572e-05, + "loss": 1.3057562255859374, + "step": 554400 + }, + { + "epoch": 73.93333333333334, + "grad_norm": 0.900630533695221, + "learning_rate": 1.3050533333333333e-05, + "loss": 1.3036831665039061, + "step": 554500 + }, + { + "epoch": 73.94666666666667, + "grad_norm": 0.9302444458007812, + "learning_rate": 1.3043866666666669e-05, + "loss": 1.3099397277832032, + "step": 554600 + }, + { + "epoch": 73.96, + "grad_norm": 0.9064813256263733, + "learning_rate": 1.30372e-05, + "loss": 1.3054379272460936, + "step": 554700 + }, + { + "epoch": 73.97333333333333, + "grad_norm": 0.8835692405700684, + "learning_rate": 1.3030600000000002e-05, + "loss": 1.3077413940429687, + "step": 554800 + }, + { + "epoch": 73.98666666666666, + "grad_norm": 0.8917888402938843, + "learning_rate": 1.3023933333333336e-05, + "loss": 1.3091519165039063, + "step": 554900 + }, + { + "epoch": 74.0, + "grad_norm": 0.8641742467880249, + "learning_rate": 1.3017266666666666e-05, + "loss": 1.3092634582519531, + "step": 555000 + }, + { + "epoch": 74.01333333333334, + "grad_norm": 0.944517970085144, + "learning_rate": 1.30106e-05, + "loss": 1.2658570861816407, + "step": 555100 + }, + { + "epoch": 74.02666666666667, + "grad_norm": 0.8598766326904297, + "learning_rate": 1.3003933333333334e-05, + "loss": 1.2683529663085937, + "step": 555200 + }, + { + "epoch": 74.04, + "grad_norm": 0.860201895236969, + "learning_rate": 1.2997266666666667e-05, + "loss": 1.2708037567138672, + "step": 555300 + }, + { + "epoch": 74.05333333333333, + "grad_norm": 0.8917511105537415, + "learning_rate": 1.29906e-05, + "loss": 1.271436004638672, + "step": 555400 + }, + { + "epoch": 74.06666666666666, + "grad_norm": 0.939109742641449, + "learning_rate": 1.2983933333333335e-05, + "loss": 1.2716947937011718, + "step": 555500 + }, + { + "epoch": 74.08, + "grad_norm": 0.8807459473609924, + "learning_rate": 1.2977266666666669e-05, + "loss": 1.2712261199951171, + "step": 555600 + }, + { + "epoch": 74.09333333333333, + "grad_norm": 0.8981074094772339, + "learning_rate": 1.2970599999999999e-05, + "loss": 1.2726960754394532, + "step": 555700 + }, + { + "epoch": 74.10666666666667, + "grad_norm": 0.920891523361206, + "learning_rate": 1.2963933333333333e-05, + "loss": 1.271525650024414, + "step": 555800 + }, + { + "epoch": 74.12, + "grad_norm": 0.8784647583961487, + "learning_rate": 1.2957266666666667e-05, + "loss": 1.2761204528808594, + "step": 555900 + }, + { + "epoch": 74.13333333333334, + "grad_norm": 0.9443046450614929, + "learning_rate": 1.2950600000000001e-05, + "loss": 1.2812734985351562, + "step": 556000 + }, + { + "epoch": 74.14666666666666, + "grad_norm": 0.9324434995651245, + "learning_rate": 1.2943933333333333e-05, + "loss": 1.2774497985839843, + "step": 556100 + }, + { + "epoch": 74.16, + "grad_norm": 0.9151404500007629, + "learning_rate": 1.2937266666666667e-05, + "loss": 1.2794931030273438, + "step": 556200 + }, + { + "epoch": 74.17333333333333, + "grad_norm": 0.9019087553024292, + "learning_rate": 1.2930600000000001e-05, + "loss": 1.272760467529297, + "step": 556300 + }, + { + "epoch": 74.18666666666667, + "grad_norm": 0.9008191823959351, + "learning_rate": 1.2923933333333335e-05, + "loss": 1.2791709899902344, + "step": 556400 + }, + { + "epoch": 74.2, + "grad_norm": 0.9243355393409729, + "learning_rate": 1.2917266666666666e-05, + "loss": 1.2742820739746095, + "step": 556500 + }, + { + "epoch": 74.21333333333334, + "grad_norm": 0.8960252404212952, + "learning_rate": 1.29106e-05, + "loss": 1.2767957305908204, + "step": 556600 + }, + { + "epoch": 74.22666666666667, + "grad_norm": 0.8784938454627991, + "learning_rate": 1.2903933333333335e-05, + "loss": 1.2783699798583985, + "step": 556700 + }, + { + "epoch": 74.24, + "grad_norm": 0.9372243285179138, + "learning_rate": 1.2897333333333333e-05, + "loss": 1.2807513427734376, + "step": 556800 + }, + { + "epoch": 74.25333333333333, + "grad_norm": 0.8725894093513489, + "learning_rate": 1.2890666666666668e-05, + "loss": 1.280004119873047, + "step": 556900 + }, + { + "epoch": 74.26666666666667, + "grad_norm": 0.8671815991401672, + "learning_rate": 1.2884000000000002e-05, + "loss": 1.276363296508789, + "step": 557000 + }, + { + "epoch": 74.28, + "grad_norm": 0.8304952383041382, + "learning_rate": 1.2877333333333333e-05, + "loss": 1.2792926025390625, + "step": 557100 + }, + { + "epoch": 74.29333333333334, + "grad_norm": 0.8606889247894287, + "learning_rate": 1.2870666666666667e-05, + "loss": 1.2823660278320312, + "step": 557200 + }, + { + "epoch": 74.30666666666667, + "grad_norm": 0.8777315020561218, + "learning_rate": 1.2864e-05, + "loss": 1.2785820007324218, + "step": 557300 + }, + { + "epoch": 74.32, + "grad_norm": 0.8733790516853333, + "learning_rate": 1.2857333333333335e-05, + "loss": 1.281063232421875, + "step": 557400 + }, + { + "epoch": 74.33333333333333, + "grad_norm": 0.8477702140808105, + "learning_rate": 1.2850666666666667e-05, + "loss": 1.2849333190917969, + "step": 557500 + }, + { + "epoch": 74.34666666666666, + "grad_norm": 0.9036483764648438, + "learning_rate": 1.2844000000000001e-05, + "loss": 1.2832469177246093, + "step": 557600 + }, + { + "epoch": 74.36, + "grad_norm": 0.8794974684715271, + "learning_rate": 1.2837333333333335e-05, + "loss": 1.2776331329345703, + "step": 557700 + }, + { + "epoch": 74.37333333333333, + "grad_norm": 0.9200766682624817, + "learning_rate": 1.2830666666666669e-05, + "loss": 1.2813546752929688, + "step": 557800 + }, + { + "epoch": 74.38666666666667, + "grad_norm": 0.8847201466560364, + "learning_rate": 1.2824e-05, + "loss": 1.2843760681152343, + "step": 557900 + }, + { + "epoch": 74.4, + "grad_norm": 0.880175769329071, + "learning_rate": 1.2817333333333333e-05, + "loss": 1.287875213623047, + "step": 558000 + }, + { + "epoch": 74.41333333333333, + "grad_norm": 0.8858283162117004, + "learning_rate": 1.2810666666666667e-05, + "loss": 1.2829354858398438, + "step": 558100 + }, + { + "epoch": 74.42666666666666, + "grad_norm": 0.8578990697860718, + "learning_rate": 1.2804e-05, + "loss": 1.2892631530761718, + "step": 558200 + }, + { + "epoch": 74.44, + "grad_norm": 0.9900735020637512, + "learning_rate": 1.2797333333333334e-05, + "loss": 1.2847103881835937, + "step": 558300 + }, + { + "epoch": 74.45333333333333, + "grad_norm": 0.8830659985542297, + "learning_rate": 1.2790666666666668e-05, + "loss": 1.2800477600097657, + "step": 558400 + }, + { + "epoch": 74.46666666666667, + "grad_norm": 0.8871668577194214, + "learning_rate": 1.2784000000000002e-05, + "loss": 1.284095001220703, + "step": 558500 + }, + { + "epoch": 74.48, + "grad_norm": 0.8544827103614807, + "learning_rate": 1.2777333333333332e-05, + "loss": 1.2865316772460937, + "step": 558600 + }, + { + "epoch": 74.49333333333334, + "grad_norm": 0.900020956993103, + "learning_rate": 1.2770666666666666e-05, + "loss": 1.2850057983398437, + "step": 558700 + }, + { + "epoch": 74.50666666666666, + "grad_norm": 0.867059051990509, + "learning_rate": 1.2764066666666669e-05, + "loss": 1.2903533935546876, + "step": 558800 + }, + { + "epoch": 74.52, + "grad_norm": 0.8870203495025635, + "learning_rate": 1.27574e-05, + "loss": 1.287705535888672, + "step": 558900 + }, + { + "epoch": 74.53333333333333, + "grad_norm": 0.9314866662025452, + "learning_rate": 1.2750733333333333e-05, + "loss": 1.28730224609375, + "step": 559000 + }, + { + "epoch": 74.54666666666667, + "grad_norm": 0.8612186908721924, + "learning_rate": 1.2744066666666669e-05, + "loss": 1.289891815185547, + "step": 559100 + }, + { + "epoch": 74.56, + "grad_norm": 0.899004340171814, + "learning_rate": 1.27374e-05, + "loss": 1.2894015502929688, + "step": 559200 + }, + { + "epoch": 74.57333333333334, + "grad_norm": 0.8479779958724976, + "learning_rate": 1.2730733333333333e-05, + "loss": 1.2877230834960938, + "step": 559300 + }, + { + "epoch": 74.58666666666667, + "grad_norm": 0.8701773285865784, + "learning_rate": 1.2724066666666667e-05, + "loss": 1.2875765991210937, + "step": 559400 + }, + { + "epoch": 74.6, + "grad_norm": 0.9275473356246948, + "learning_rate": 1.2717400000000001e-05, + "loss": 1.2902964782714843, + "step": 559500 + }, + { + "epoch": 74.61333333333333, + "grad_norm": 0.8632954359054565, + "learning_rate": 1.2710733333333334e-05, + "loss": 1.292191162109375, + "step": 559600 + }, + { + "epoch": 74.62666666666667, + "grad_norm": 0.9471471905708313, + "learning_rate": 1.2704066666666667e-05, + "loss": 1.2906411743164063, + "step": 559700 + }, + { + "epoch": 74.64, + "grad_norm": 0.949734091758728, + "learning_rate": 1.2697400000000001e-05, + "loss": 1.2944467163085938, + "step": 559800 + }, + { + "epoch": 74.65333333333334, + "grad_norm": 0.8871404528617859, + "learning_rate": 1.2690733333333335e-05, + "loss": 1.2892448425292968, + "step": 559900 + }, + { + "epoch": 74.66666666666667, + "grad_norm": 0.8793107271194458, + "learning_rate": 1.2684066666666666e-05, + "loss": 1.2894142150878907, + "step": 560000 + }, + { + "epoch": 74.68, + "grad_norm": 0.9287523031234741, + "learning_rate": 1.26774e-05, + "loss": 1.2898847961425781, + "step": 560100 + }, + { + "epoch": 74.69333333333333, + "grad_norm": 0.9169420599937439, + "learning_rate": 1.2670733333333334e-05, + "loss": 1.2945254516601563, + "step": 560200 + }, + { + "epoch": 74.70666666666666, + "grad_norm": 0.9196577668190002, + "learning_rate": 1.2664066666666668e-05, + "loss": 1.2968296813964844, + "step": 560300 + }, + { + "epoch": 74.72, + "grad_norm": 0.8801164031028748, + "learning_rate": 1.26574e-05, + "loss": 1.2895684814453126, + "step": 560400 + }, + { + "epoch": 74.73333333333333, + "grad_norm": 0.9066420793533325, + "learning_rate": 1.2650733333333334e-05, + "loss": 1.2975363159179687, + "step": 560500 + }, + { + "epoch": 74.74666666666667, + "grad_norm": 0.8789073824882507, + "learning_rate": 1.2644066666666668e-05, + "loss": 1.2992245483398437, + "step": 560600 + }, + { + "epoch": 74.76, + "grad_norm": 0.8771540522575378, + "learning_rate": 1.2637399999999999e-05, + "loss": 1.2950447082519532, + "step": 560700 + }, + { + "epoch": 74.77333333333333, + "grad_norm": 0.9482132196426392, + "learning_rate": 1.2630800000000001e-05, + "loss": 1.2989950561523438, + "step": 560800 + }, + { + "epoch": 74.78666666666666, + "grad_norm": 0.9016578793525696, + "learning_rate": 1.2624133333333335e-05, + "loss": 1.2909823608398439, + "step": 560900 + }, + { + "epoch": 74.8, + "grad_norm": 0.9523131847381592, + "learning_rate": 1.2617466666666666e-05, + "loss": 1.2979310607910157, + "step": 561000 + }, + { + "epoch": 74.81333333333333, + "grad_norm": 0.8999745845794678, + "learning_rate": 1.26108e-05, + "loss": 1.2966058349609375, + "step": 561100 + }, + { + "epoch": 74.82666666666667, + "grad_norm": 0.8210212588310242, + "learning_rate": 1.2604133333333335e-05, + "loss": 1.297114715576172, + "step": 561200 + }, + { + "epoch": 74.84, + "grad_norm": 0.8882796764373779, + "learning_rate": 1.259746666666667e-05, + "loss": 1.2930776977539062, + "step": 561300 + }, + { + "epoch": 74.85333333333334, + "grad_norm": 0.8462830185890198, + "learning_rate": 1.25908e-05, + "loss": 1.2994015502929688, + "step": 561400 + }, + { + "epoch": 74.86666666666666, + "grad_norm": 0.9026128649711609, + "learning_rate": 1.2584133333333334e-05, + "loss": 1.29409912109375, + "step": 561500 + }, + { + "epoch": 74.88, + "grad_norm": 0.9389071464538574, + "learning_rate": 1.2577466666666668e-05, + "loss": 1.2977705383300782, + "step": 561600 + }, + { + "epoch": 74.89333333333333, + "grad_norm": 0.9085119366645813, + "learning_rate": 1.25708e-05, + "loss": 1.296661376953125, + "step": 561700 + }, + { + "epoch": 74.90666666666667, + "grad_norm": 1.0114595890045166, + "learning_rate": 1.2564133333333334e-05, + "loss": 1.2983500671386718, + "step": 561800 + }, + { + "epoch": 74.92, + "grad_norm": 0.8648547530174255, + "learning_rate": 1.2557466666666668e-05, + "loss": 1.2987898254394532, + "step": 561900 + }, + { + "epoch": 74.93333333333334, + "grad_norm": 0.9071376323699951, + "learning_rate": 1.2550800000000002e-05, + "loss": 1.295235137939453, + "step": 562000 + }, + { + "epoch": 74.94666666666667, + "grad_norm": 0.8965473175048828, + "learning_rate": 1.2544133333333332e-05, + "loss": 1.3004685974121093, + "step": 562100 + }, + { + "epoch": 74.96, + "grad_norm": 0.8977342844009399, + "learning_rate": 1.2537466666666666e-05, + "loss": 1.297232666015625, + "step": 562200 + }, + { + "epoch": 74.97333333333333, + "grad_norm": 0.9045539498329163, + "learning_rate": 1.25308e-05, + "loss": 1.298996124267578, + "step": 562300 + }, + { + "epoch": 74.98666666666666, + "grad_norm": 0.8950331807136536, + "learning_rate": 1.2524133333333334e-05, + "loss": 1.2971505737304687, + "step": 562400 + }, + { + "epoch": 75.0, + "grad_norm": 0.8777759671211243, + "learning_rate": 1.2517466666666667e-05, + "loss": 1.2992008972167968, + "step": 562500 + }, + { + "epoch": 75.01333333333334, + "grad_norm": 0.8952645063400269, + "learning_rate": 1.25108e-05, + "loss": 1.2640491485595704, + "step": 562600 + }, + { + "epoch": 75.02666666666667, + "grad_norm": 0.877943217754364, + "learning_rate": 1.2504133333333335e-05, + "loss": 1.2647196197509765, + "step": 562700 + }, + { + "epoch": 75.04, + "grad_norm": 0.8919233083724976, + "learning_rate": 1.2497466666666667e-05, + "loss": 1.2628135681152344, + "step": 562800 + }, + { + "epoch": 75.05333333333333, + "grad_norm": 0.8733011484146118, + "learning_rate": 1.2490866666666668e-05, + "loss": 1.2628070831298828, + "step": 562900 + }, + { + "epoch": 75.06666666666666, + "grad_norm": 0.9152896404266357, + "learning_rate": 1.24842e-05, + "loss": 1.264164352416992, + "step": 563000 + }, + { + "epoch": 75.08, + "grad_norm": 0.8281626105308533, + "learning_rate": 1.2477533333333334e-05, + "loss": 1.2650759887695313, + "step": 563100 + }, + { + "epoch": 75.09333333333333, + "grad_norm": 0.8916683197021484, + "learning_rate": 1.2470866666666666e-05, + "loss": 1.2685887145996093, + "step": 563200 + }, + { + "epoch": 75.10666666666667, + "grad_norm": 0.9115118980407715, + "learning_rate": 1.2464200000000002e-05, + "loss": 1.272508544921875, + "step": 563300 + }, + { + "epoch": 75.12, + "grad_norm": 0.8884676098823547, + "learning_rate": 1.2457533333333334e-05, + "loss": 1.2687050628662109, + "step": 563400 + }, + { + "epoch": 75.13333333333334, + "grad_norm": 0.8922853469848633, + "learning_rate": 1.2450866666666668e-05, + "loss": 1.2676511383056641, + "step": 563500 + }, + { + "epoch": 75.14666666666666, + "grad_norm": 0.8890056610107422, + "learning_rate": 1.24442e-05, + "loss": 1.2675907135009765, + "step": 563600 + }, + { + "epoch": 75.16, + "grad_norm": 0.8995161652565002, + "learning_rate": 1.2437533333333334e-05, + "loss": 1.2708394622802734, + "step": 563700 + }, + { + "epoch": 75.17333333333333, + "grad_norm": 0.8850069046020508, + "learning_rate": 1.2430866666666666e-05, + "loss": 1.268143768310547, + "step": 563800 + }, + { + "epoch": 75.18666666666667, + "grad_norm": 0.8508411645889282, + "learning_rate": 1.24242e-05, + "loss": 1.2690723419189454, + "step": 563900 + }, + { + "epoch": 75.2, + "grad_norm": 0.8832269310951233, + "learning_rate": 1.2417533333333334e-05, + "loss": 1.2709259033203124, + "step": 564000 + }, + { + "epoch": 75.21333333333334, + "grad_norm": 0.8733813762664795, + "learning_rate": 1.2410866666666668e-05, + "loss": 1.2706985473632812, + "step": 564100 + }, + { + "epoch": 75.22666666666667, + "grad_norm": 0.8645262122154236, + "learning_rate": 1.24042e-05, + "loss": 1.27591796875, + "step": 564200 + }, + { + "epoch": 75.24, + "grad_norm": 0.8740404844284058, + "learning_rate": 1.2397533333333335e-05, + "loss": 1.2723672485351563, + "step": 564300 + }, + { + "epoch": 75.25333333333333, + "grad_norm": 0.8905038833618164, + "learning_rate": 1.2390866666666667e-05, + "loss": 1.2685739135742187, + "step": 564400 + }, + { + "epoch": 75.26666666666667, + "grad_norm": 0.8788304328918457, + "learning_rate": 1.23842e-05, + "loss": 1.275366973876953, + "step": 564500 + }, + { + "epoch": 75.28, + "grad_norm": 0.9056509733200073, + "learning_rate": 1.2377533333333335e-05, + "loss": 1.2775337982177735, + "step": 564600 + }, + { + "epoch": 75.29333333333334, + "grad_norm": 0.900590181350708, + "learning_rate": 1.2370866666666667e-05, + "loss": 1.2763518524169921, + "step": 564700 + }, + { + "epoch": 75.30666666666667, + "grad_norm": 0.8497269153594971, + "learning_rate": 1.2364200000000001e-05, + "loss": 1.273313980102539, + "step": 564800 + }, + { + "epoch": 75.32, + "grad_norm": 0.9780153036117554, + "learning_rate": 1.2357600000000002e-05, + "loss": 1.2757484436035156, + "step": 564900 + }, + { + "epoch": 75.33333333333333, + "grad_norm": 0.9048566818237305, + "learning_rate": 1.2350933333333334e-05, + "loss": 1.2719178771972657, + "step": 565000 + }, + { + "epoch": 75.34666666666666, + "grad_norm": 0.8986741900444031, + "learning_rate": 1.2344266666666668e-05, + "loss": 1.2778455352783202, + "step": 565100 + }, + { + "epoch": 75.36, + "grad_norm": 0.8905960321426392, + "learning_rate": 1.23376e-05, + "loss": 1.2795767974853516, + "step": 565200 + }, + { + "epoch": 75.37333333333333, + "grad_norm": 0.9009892344474792, + "learning_rate": 1.2330933333333334e-05, + "loss": 1.2813603210449218, + "step": 565300 + }, + { + "epoch": 75.38666666666667, + "grad_norm": 0.8851236701011658, + "learning_rate": 1.2324266666666666e-05, + "loss": 1.2804205322265625, + "step": 565400 + }, + { + "epoch": 75.4, + "grad_norm": 0.8907919526100159, + "learning_rate": 1.23176e-05, + "loss": 1.2816227722167968, + "step": 565500 + }, + { + "epoch": 75.41333333333333, + "grad_norm": 0.8697381019592285, + "learning_rate": 1.2310933333333334e-05, + "loss": 1.2802578735351562, + "step": 565600 + }, + { + "epoch": 75.42666666666666, + "grad_norm": 0.9782188534736633, + "learning_rate": 1.2304266666666667e-05, + "loss": 1.2815553283691405, + "step": 565700 + }, + { + "epoch": 75.44, + "grad_norm": 0.9227743744850159, + "learning_rate": 1.22976e-05, + "loss": 1.2832655334472656, + "step": 565800 + }, + { + "epoch": 75.45333333333333, + "grad_norm": 0.903657078742981, + "learning_rate": 1.2290933333333333e-05, + "loss": 1.2772044372558593, + "step": 565900 + }, + { + "epoch": 75.46666666666667, + "grad_norm": 0.8705148696899414, + "learning_rate": 1.2284266666666667e-05, + "loss": 1.28025146484375, + "step": 566000 + }, + { + "epoch": 75.48, + "grad_norm": 0.8651654720306396, + "learning_rate": 1.22776e-05, + "loss": 1.280309600830078, + "step": 566100 + }, + { + "epoch": 75.49333333333334, + "grad_norm": 0.8842359185218811, + "learning_rate": 1.2270933333333335e-05, + "loss": 1.2774700927734375, + "step": 566200 + }, + { + "epoch": 75.50666666666666, + "grad_norm": 0.8937225341796875, + "learning_rate": 1.2264266666666667e-05, + "loss": 1.2816136169433594, + "step": 566300 + }, + { + "epoch": 75.52, + "grad_norm": 0.9345490336418152, + "learning_rate": 1.2257600000000001e-05, + "loss": 1.2842210388183595, + "step": 566400 + }, + { + "epoch": 75.53333333333333, + "grad_norm": 0.859245777130127, + "learning_rate": 1.2250933333333333e-05, + "loss": 1.2751191711425782, + "step": 566500 + }, + { + "epoch": 75.54666666666667, + "grad_norm": 0.9067889451980591, + "learning_rate": 1.2244266666666667e-05, + "loss": 1.2782907104492187, + "step": 566600 + }, + { + "epoch": 75.56, + "grad_norm": 0.9356161952018738, + "learning_rate": 1.2237600000000001e-05, + "loss": 1.2806317138671874, + "step": 566700 + }, + { + "epoch": 75.57333333333334, + "grad_norm": 0.9229298830032349, + "learning_rate": 1.2230933333333335e-05, + "loss": 1.2850361633300782, + "step": 566800 + }, + { + "epoch": 75.58666666666667, + "grad_norm": 0.9154577851295471, + "learning_rate": 1.2224333333333334e-05, + "loss": 1.2825677490234375, + "step": 566900 + }, + { + "epoch": 75.6, + "grad_norm": 0.9192464351654053, + "learning_rate": 1.2217666666666668e-05, + "loss": 1.2844052124023437, + "step": 567000 + }, + { + "epoch": 75.61333333333333, + "grad_norm": 0.8860438466072083, + "learning_rate": 1.2211e-05, + "loss": 1.2842628479003906, + "step": 567100 + }, + { + "epoch": 75.62666666666667, + "grad_norm": 0.9283733367919922, + "learning_rate": 1.2204333333333334e-05, + "loss": 1.2807681274414062, + "step": 567200 + }, + { + "epoch": 75.64, + "grad_norm": 0.9022039771080017, + "learning_rate": 1.2197666666666667e-05, + "loss": 1.2847116088867188, + "step": 567300 + }, + { + "epoch": 75.65333333333334, + "grad_norm": 0.9383234977722168, + "learning_rate": 1.2191e-05, + "loss": 1.2842823791503906, + "step": 567400 + }, + { + "epoch": 75.66666666666667, + "grad_norm": 0.8987548351287842, + "learning_rate": 1.2184333333333333e-05, + "loss": 1.2830416870117187, + "step": 567500 + }, + { + "epoch": 75.68, + "grad_norm": 0.9250150918960571, + "learning_rate": 1.2177666666666669e-05, + "loss": 1.2888677978515626, + "step": 567600 + }, + { + "epoch": 75.69333333333333, + "grad_norm": 0.8937551975250244, + "learning_rate": 1.2171000000000001e-05, + "loss": 1.2843814086914063, + "step": 567700 + }, + { + "epoch": 75.70666666666666, + "grad_norm": 0.93442302942276, + "learning_rate": 1.2164333333333335e-05, + "loss": 1.2801531982421874, + "step": 567800 + }, + { + "epoch": 75.72, + "grad_norm": 0.9443467855453491, + "learning_rate": 1.2157666666666667e-05, + "loss": 1.2907289123535157, + "step": 567900 + }, + { + "epoch": 75.73333333333333, + "grad_norm": 0.9479007124900818, + "learning_rate": 1.2151000000000001e-05, + "loss": 1.2885336303710937, + "step": 568000 + }, + { + "epoch": 75.74666666666667, + "grad_norm": 0.9026948809623718, + "learning_rate": 1.2144333333333333e-05, + "loss": 1.28862060546875, + "step": 568100 + }, + { + "epoch": 75.76, + "grad_norm": 0.9431944489479065, + "learning_rate": 1.2137666666666667e-05, + "loss": 1.2903639221191405, + "step": 568200 + }, + { + "epoch": 75.77333333333333, + "grad_norm": 0.8847748637199402, + "learning_rate": 1.2131000000000001e-05, + "loss": 1.2831291198730468, + "step": 568300 + }, + { + "epoch": 75.78666666666666, + "grad_norm": 0.9042606949806213, + "learning_rate": 1.2124333333333334e-05, + "loss": 1.2880831909179689, + "step": 568400 + }, + { + "epoch": 75.8, + "grad_norm": 0.8872798085212708, + "learning_rate": 1.2117666666666667e-05, + "loss": 1.289575958251953, + "step": 568500 + }, + { + "epoch": 75.81333333333333, + "grad_norm": 0.8426007628440857, + "learning_rate": 1.2111e-05, + "loss": 1.2929600524902343, + "step": 568600 + }, + { + "epoch": 75.82666666666667, + "grad_norm": 0.8785552978515625, + "learning_rate": 1.2104333333333334e-05, + "loss": 1.2918893432617187, + "step": 568700 + }, + { + "epoch": 75.84, + "grad_norm": 0.8560172915458679, + "learning_rate": 1.2097666666666668e-05, + "loss": 1.2879776000976562, + "step": 568800 + }, + { + "epoch": 75.85333333333334, + "grad_norm": 0.9080483317375183, + "learning_rate": 1.2091000000000002e-05, + "loss": 1.289279022216797, + "step": 568900 + }, + { + "epoch": 75.86666666666666, + "grad_norm": 0.8898365497589111, + "learning_rate": 1.20844e-05, + "loss": 1.2897042846679687, + "step": 569000 + }, + { + "epoch": 75.88, + "grad_norm": 0.95564204454422, + "learning_rate": 1.2077733333333335e-05, + "loss": 1.2889401245117187, + "step": 569100 + }, + { + "epoch": 75.89333333333333, + "grad_norm": 0.8454336524009705, + "learning_rate": 1.2071066666666667e-05, + "loss": 1.293185272216797, + "step": 569200 + }, + { + "epoch": 75.90666666666667, + "grad_norm": 0.9560728669166565, + "learning_rate": 1.2064400000000001e-05, + "loss": 1.2893829345703125, + "step": 569300 + }, + { + "epoch": 75.92, + "grad_norm": 0.9126923084259033, + "learning_rate": 1.2057733333333333e-05, + "loss": 1.2923159790039063, + "step": 569400 + }, + { + "epoch": 75.93333333333334, + "grad_norm": 0.8590043783187866, + "learning_rate": 1.2051066666666667e-05, + "loss": 1.29072265625, + "step": 569500 + }, + { + "epoch": 75.94666666666667, + "grad_norm": 0.8858271241188049, + "learning_rate": 1.20444e-05, + "loss": 1.2948809814453126, + "step": 569600 + }, + { + "epoch": 75.96, + "grad_norm": 0.9448450803756714, + "learning_rate": 1.2037733333333333e-05, + "loss": 1.2897013854980468, + "step": 569700 + }, + { + "epoch": 75.97333333333333, + "grad_norm": 0.8658963441848755, + "learning_rate": 1.2031066666666667e-05, + "loss": 1.2937811279296876, + "step": 569800 + }, + { + "epoch": 75.98666666666666, + "grad_norm": 0.9109137654304504, + "learning_rate": 1.2024400000000001e-05, + "loss": 1.2949751281738282, + "step": 569900 + }, + { + "epoch": 76.0, + "grad_norm": 0.90373694896698, + "learning_rate": 1.2017733333333334e-05, + "loss": 1.2907695007324218, + "step": 570000 + }, + { + "epoch": 76.01333333333334, + "grad_norm": 0.9023296236991882, + "learning_rate": 1.2011066666666668e-05, + "loss": 1.2564220428466797, + "step": 570100 + }, + { + "epoch": 76.02666666666667, + "grad_norm": 0.9075928926467896, + "learning_rate": 1.20044e-05, + "loss": 1.2600310516357422, + "step": 570200 + }, + { + "epoch": 76.04, + "grad_norm": 0.8993645310401917, + "learning_rate": 1.1997733333333334e-05, + "loss": 1.2612214660644532, + "step": 570300 + }, + { + "epoch": 76.05333333333333, + "grad_norm": 0.8090634942054749, + "learning_rate": 1.1991066666666668e-05, + "loss": 1.2595449829101562, + "step": 570400 + }, + { + "epoch": 76.06666666666666, + "grad_norm": 0.8265924453735352, + "learning_rate": 1.1984400000000002e-05, + "loss": 1.260252914428711, + "step": 570500 + }, + { + "epoch": 76.08, + "grad_norm": 0.9115302562713623, + "learning_rate": 1.1977733333333334e-05, + "loss": 1.2610408020019532, + "step": 570600 + }, + { + "epoch": 76.09333333333333, + "grad_norm": 0.9297177195549011, + "learning_rate": 1.1971066666666668e-05, + "loss": 1.2638664245605469, + "step": 570700 + }, + { + "epoch": 76.10666666666667, + "grad_norm": 0.8523125648498535, + "learning_rate": 1.19644e-05, + "loss": 1.2649871063232423, + "step": 570800 + }, + { + "epoch": 76.12, + "grad_norm": 0.9545742869377136, + "learning_rate": 1.1957733333333334e-05, + "loss": 1.2625828552246094, + "step": 570900 + }, + { + "epoch": 76.13333333333334, + "grad_norm": 0.8487697839736938, + "learning_rate": 1.1951133333333333e-05, + "loss": 1.2658775329589844, + "step": 571000 + }, + { + "epoch": 76.14666666666666, + "grad_norm": 0.9032588601112366, + "learning_rate": 1.1944466666666667e-05, + "loss": 1.2628345489501953, + "step": 571100 + }, + { + "epoch": 76.16, + "grad_norm": 0.8663509488105774, + "learning_rate": 1.1937800000000001e-05, + "loss": 1.2638357543945313, + "step": 571200 + }, + { + "epoch": 76.17333333333333, + "grad_norm": 0.8065935373306274, + "learning_rate": 1.1931133333333335e-05, + "loss": 1.2654532623291015, + "step": 571300 + }, + { + "epoch": 76.18666666666667, + "grad_norm": 0.8923590779304504, + "learning_rate": 1.1924466666666667e-05, + "loss": 1.2625431823730469, + "step": 571400 + }, + { + "epoch": 76.2, + "grad_norm": 0.9256909489631653, + "learning_rate": 1.1917800000000001e-05, + "loss": 1.2661501312255858, + "step": 571500 + }, + { + "epoch": 76.21333333333334, + "grad_norm": 0.8839671015739441, + "learning_rate": 1.1911133333333334e-05, + "loss": 1.2691407775878907, + "step": 571600 + }, + { + "epoch": 76.22666666666667, + "grad_norm": 0.9196544289588928, + "learning_rate": 1.1904466666666666e-05, + "loss": 1.2661520385742187, + "step": 571700 + }, + { + "epoch": 76.24, + "grad_norm": 0.8353877663612366, + "learning_rate": 1.18978e-05, + "loss": 1.2685884094238282, + "step": 571800 + }, + { + "epoch": 76.25333333333333, + "grad_norm": 0.8533715605735779, + "learning_rate": 1.1891133333333334e-05, + "loss": 1.2692129516601562, + "step": 571900 + }, + { + "epoch": 76.26666666666667, + "grad_norm": 0.8897333145141602, + "learning_rate": 1.1884466666666668e-05, + "loss": 1.2691090393066407, + "step": 572000 + }, + { + "epoch": 76.28, + "grad_norm": 0.90340656042099, + "learning_rate": 1.18778e-05, + "loss": 1.2702519989013672, + "step": 572100 + }, + { + "epoch": 76.29333333333334, + "grad_norm": 0.8940246105194092, + "learning_rate": 1.1871133333333334e-05, + "loss": 1.2684158325195312, + "step": 572200 + }, + { + "epoch": 76.30666666666667, + "grad_norm": 0.8823217153549194, + "learning_rate": 1.1864466666666666e-05, + "loss": 1.2694771575927735, + "step": 572300 + }, + { + "epoch": 76.32, + "grad_norm": 0.8801313638687134, + "learning_rate": 1.18578e-05, + "loss": 1.2695850372314452, + "step": 572400 + }, + { + "epoch": 76.33333333333333, + "grad_norm": 0.8763577342033386, + "learning_rate": 1.1851133333333334e-05, + "loss": 1.2703809356689453, + "step": 572500 + }, + { + "epoch": 76.34666666666666, + "grad_norm": 0.9414470195770264, + "learning_rate": 1.1844466666666668e-05, + "loss": 1.2732679748535156, + "step": 572600 + }, + { + "epoch": 76.36, + "grad_norm": 0.918465256690979, + "learning_rate": 1.18378e-05, + "loss": 1.2702081298828125, + "step": 572700 + }, + { + "epoch": 76.37333333333333, + "grad_norm": 0.8856133222579956, + "learning_rate": 1.1831133333333334e-05, + "loss": 1.2735169219970703, + "step": 572800 + }, + { + "epoch": 76.38666666666667, + "grad_norm": 0.9244083166122437, + "learning_rate": 1.1824466666666667e-05, + "loss": 1.273417739868164, + "step": 572900 + }, + { + "epoch": 76.4, + "grad_norm": 0.8916839957237244, + "learning_rate": 1.1817866666666667e-05, + "loss": 1.2737143707275391, + "step": 573000 + }, + { + "epoch": 76.41333333333333, + "grad_norm": 0.8814034461975098, + "learning_rate": 1.18112e-05, + "loss": 1.27196533203125, + "step": 573100 + }, + { + "epoch": 76.42666666666666, + "grad_norm": 0.8989616632461548, + "learning_rate": 1.1804533333333334e-05, + "loss": 1.2706958770751953, + "step": 573200 + }, + { + "epoch": 76.44, + "grad_norm": 0.8440143465995789, + "learning_rate": 1.1797866666666668e-05, + "loss": 1.271722946166992, + "step": 573300 + }, + { + "epoch": 76.45333333333333, + "grad_norm": 0.9400561451911926, + "learning_rate": 1.1791200000000002e-05, + "loss": 1.27082763671875, + "step": 573400 + }, + { + "epoch": 76.46666666666667, + "grad_norm": 0.9104871153831482, + "learning_rate": 1.1784533333333334e-05, + "loss": 1.274063720703125, + "step": 573500 + }, + { + "epoch": 76.48, + "grad_norm": 0.9427663087844849, + "learning_rate": 1.1777866666666668e-05, + "loss": 1.2744304656982421, + "step": 573600 + }, + { + "epoch": 76.49333333333334, + "grad_norm": 0.930120587348938, + "learning_rate": 1.17712e-05, + "loss": 1.2735147857666016, + "step": 573700 + }, + { + "epoch": 76.50666666666666, + "grad_norm": 0.8373743891716003, + "learning_rate": 1.1764533333333334e-05, + "loss": 1.2727003479003907, + "step": 573800 + }, + { + "epoch": 76.52, + "grad_norm": 0.8900668621063232, + "learning_rate": 1.1757866666666666e-05, + "loss": 1.278759994506836, + "step": 573900 + }, + { + "epoch": 76.53333333333333, + "grad_norm": 0.9131837487220764, + "learning_rate": 1.1751200000000002e-05, + "loss": 1.279442596435547, + "step": 574000 + }, + { + "epoch": 76.54666666666667, + "grad_norm": 0.8976189494132996, + "learning_rate": 1.1744533333333334e-05, + "loss": 1.2741080474853517, + "step": 574100 + }, + { + "epoch": 76.56, + "grad_norm": 0.8666889071464539, + "learning_rate": 1.1737866666666668e-05, + "loss": 1.2774742126464844, + "step": 574200 + }, + { + "epoch": 76.57333333333334, + "grad_norm": 0.8947174549102783, + "learning_rate": 1.17312e-05, + "loss": 1.2774790954589843, + "step": 574300 + }, + { + "epoch": 76.58666666666667, + "grad_norm": 0.9052897691726685, + "learning_rate": 1.1724533333333333e-05, + "loss": 1.2790341949462891, + "step": 574400 + }, + { + "epoch": 76.6, + "grad_norm": 0.8981863260269165, + "learning_rate": 1.1717866666666667e-05, + "loss": 1.2725530242919922, + "step": 574500 + }, + { + "epoch": 76.61333333333333, + "grad_norm": 0.8950761556625366, + "learning_rate": 1.17112e-05, + "loss": 1.277298583984375, + "step": 574600 + }, + { + "epoch": 76.62666666666667, + "grad_norm": 0.9243502616882324, + "learning_rate": 1.1704533333333335e-05, + "loss": 1.279012222290039, + "step": 574700 + }, + { + "epoch": 76.64, + "grad_norm": 0.9470920562744141, + "learning_rate": 1.1697866666666667e-05, + "loss": 1.2796407318115235, + "step": 574800 + }, + { + "epoch": 76.65333333333334, + "grad_norm": 0.9210641980171204, + "learning_rate": 1.16912e-05, + "loss": 1.27352294921875, + "step": 574900 + }, + { + "epoch": 76.66666666666667, + "grad_norm": 0.9046253561973572, + "learning_rate": 1.1684600000000002e-05, + "loss": 1.2836494445800781, + "step": 575000 + }, + { + "epoch": 76.68, + "grad_norm": 0.8648155927658081, + "learning_rate": 1.1677933333333334e-05, + "loss": 1.283481903076172, + "step": 575100 + }, + { + "epoch": 76.69333333333333, + "grad_norm": 0.9311123490333557, + "learning_rate": 1.1671266666666668e-05, + "loss": 1.2783139801025392, + "step": 575200 + }, + { + "epoch": 76.70666666666666, + "grad_norm": 0.913091242313385, + "learning_rate": 1.16646e-05, + "loss": 1.2771622467041015, + "step": 575300 + }, + { + "epoch": 76.72, + "grad_norm": 0.8883966207504272, + "learning_rate": 1.1657933333333332e-05, + "loss": 1.2791126251220704, + "step": 575400 + }, + { + "epoch": 76.73333333333333, + "grad_norm": 0.9038500189781189, + "learning_rate": 1.1651266666666668e-05, + "loss": 1.2827508544921875, + "step": 575500 + }, + { + "epoch": 76.74666666666667, + "grad_norm": 0.8970502614974976, + "learning_rate": 1.16446e-05, + "loss": 1.2832752990722656, + "step": 575600 + }, + { + "epoch": 76.76, + "grad_norm": 0.9356183409690857, + "learning_rate": 1.1637933333333334e-05, + "loss": 1.2858283996582032, + "step": 575700 + }, + { + "epoch": 76.77333333333333, + "grad_norm": 0.8676143288612366, + "learning_rate": 1.1631266666666667e-05, + "loss": 1.2802749633789063, + "step": 575800 + }, + { + "epoch": 76.78666666666666, + "grad_norm": 0.901439368724823, + "learning_rate": 1.16246e-05, + "loss": 1.279897689819336, + "step": 575900 + }, + { + "epoch": 76.8, + "grad_norm": 0.9266265630722046, + "learning_rate": 1.1617933333333333e-05, + "loss": 1.2846217346191406, + "step": 576000 + }, + { + "epoch": 76.81333333333333, + "grad_norm": 0.8446720838546753, + "learning_rate": 1.1611266666666667e-05, + "loss": 1.28507568359375, + "step": 576100 + }, + { + "epoch": 76.82666666666667, + "grad_norm": 0.9122141599655151, + "learning_rate": 1.16046e-05, + "loss": 1.2835508728027343, + "step": 576200 + }, + { + "epoch": 76.84, + "grad_norm": 0.9296014308929443, + "learning_rate": 1.1597933333333335e-05, + "loss": 1.2806108093261719, + "step": 576300 + }, + { + "epoch": 76.85333333333334, + "grad_norm": 0.9515265226364136, + "learning_rate": 1.1591266666666667e-05, + "loss": 1.2886801147460938, + "step": 576400 + }, + { + "epoch": 76.86666666666666, + "grad_norm": 0.9384329915046692, + "learning_rate": 1.1584600000000001e-05, + "loss": 1.2862442016601563, + "step": 576500 + }, + { + "epoch": 76.88, + "grad_norm": 0.911675214767456, + "learning_rate": 1.1577933333333333e-05, + "loss": 1.2852195739746093, + "step": 576600 + }, + { + "epoch": 76.89333333333333, + "grad_norm": 0.9368600845336914, + "learning_rate": 1.1571266666666667e-05, + "loss": 1.2880644226074218, + "step": 576700 + }, + { + "epoch": 76.90666666666667, + "grad_norm": 0.9342831373214722, + "learning_rate": 1.1564600000000001e-05, + "loss": 1.2856315612792968, + "step": 576800 + }, + { + "epoch": 76.92, + "grad_norm": 0.8949527144432068, + "learning_rate": 1.1557933333333335e-05, + "loss": 1.290764617919922, + "step": 576900 + }, + { + "epoch": 76.93333333333334, + "grad_norm": 0.9204317927360535, + "learning_rate": 1.1551333333333334e-05, + "loss": 1.2894427490234375, + "step": 577000 + }, + { + "epoch": 76.94666666666667, + "grad_norm": 0.9253742098808289, + "learning_rate": 1.1544666666666668e-05, + "loss": 1.2840521240234375, + "step": 577100 + }, + { + "epoch": 76.96, + "grad_norm": 0.9282165765762329, + "learning_rate": 1.1538e-05, + "loss": 1.2856878662109374, + "step": 577200 + }, + { + "epoch": 76.97333333333333, + "grad_norm": 0.8722630143165588, + "learning_rate": 1.1531333333333334e-05, + "loss": 1.2854739379882814, + "step": 577300 + }, + { + "epoch": 76.98666666666666, + "grad_norm": 0.913749098777771, + "learning_rate": 1.1524666666666667e-05, + "loss": 1.2859970092773438, + "step": 577400 + }, + { + "epoch": 77.0, + "grad_norm": 0.961866021156311, + "learning_rate": 1.1518e-05, + "loss": 1.2846250915527344, + "step": 577500 + }, + { + "epoch": 77.01333333333334, + "grad_norm": 0.905587375164032, + "learning_rate": 1.1511333333333334e-05, + "loss": 1.255999755859375, + "step": 577600 + }, + { + "epoch": 77.02666666666667, + "grad_norm": 0.9109494686126709, + "learning_rate": 1.1504666666666668e-05, + "loss": 1.257362823486328, + "step": 577700 + }, + { + "epoch": 77.04, + "grad_norm": 0.8600365519523621, + "learning_rate": 1.1498e-05, + "loss": 1.255925064086914, + "step": 577800 + }, + { + "epoch": 77.05333333333333, + "grad_norm": 0.898125410079956, + "learning_rate": 1.1491333333333335e-05, + "loss": 1.251571273803711, + "step": 577900 + }, + { + "epoch": 77.06666666666666, + "grad_norm": 0.8492289185523987, + "learning_rate": 1.1484666666666667e-05, + "loss": 1.2551496887207032, + "step": 578000 + }, + { + "epoch": 77.08, + "grad_norm": 0.8958540558815002, + "learning_rate": 1.1478e-05, + "loss": 1.2567188262939453, + "step": 578100 + }, + { + "epoch": 77.09333333333333, + "grad_norm": 0.8623022437095642, + "learning_rate": 1.1471333333333333e-05, + "loss": 1.2552345275878907, + "step": 578200 + }, + { + "epoch": 77.10666666666667, + "grad_norm": 0.8635573983192444, + "learning_rate": 1.1464666666666667e-05, + "loss": 1.2586454010009767, + "step": 578300 + }, + { + "epoch": 77.12, + "grad_norm": 0.8765349388122559, + "learning_rate": 1.1458000000000001e-05, + "loss": 1.2600203704833985, + "step": 578400 + }, + { + "epoch": 77.13333333333334, + "grad_norm": 0.862362802028656, + "learning_rate": 1.1451333333333333e-05, + "loss": 1.2597164916992187, + "step": 578500 + }, + { + "epoch": 77.14666666666666, + "grad_norm": 0.910469651222229, + "learning_rate": 1.1444666666666667e-05, + "loss": 1.2607437896728515, + "step": 578600 + }, + { + "epoch": 77.16, + "grad_norm": 0.9068487286567688, + "learning_rate": 1.1438e-05, + "loss": 1.2581224060058593, + "step": 578700 + }, + { + "epoch": 77.17333333333333, + "grad_norm": 0.818719744682312, + "learning_rate": 1.1431333333333334e-05, + "loss": 1.257034454345703, + "step": 578800 + }, + { + "epoch": 77.18666666666667, + "grad_norm": 0.9217579364776611, + "learning_rate": 1.1424666666666668e-05, + "loss": 1.2629297637939454, + "step": 578900 + }, + { + "epoch": 77.2, + "grad_norm": 0.848243772983551, + "learning_rate": 1.1418066666666667e-05, + "loss": 1.2635003662109374, + "step": 579000 + }, + { + "epoch": 77.21333333333334, + "grad_norm": 0.8776289820671082, + "learning_rate": 1.14114e-05, + "loss": 1.2585693359375, + "step": 579100 + }, + { + "epoch": 77.22666666666667, + "grad_norm": 0.9173794388771057, + "learning_rate": 1.1404733333333335e-05, + "loss": 1.2622824859619142, + "step": 579200 + }, + { + "epoch": 77.24, + "grad_norm": 0.873337984085083, + "learning_rate": 1.1398066666666667e-05, + "loss": 1.2653639221191406, + "step": 579300 + }, + { + "epoch": 77.25333333333333, + "grad_norm": 0.9575465321540833, + "learning_rate": 1.13914e-05, + "loss": 1.2643247222900391, + "step": 579400 + }, + { + "epoch": 77.26666666666667, + "grad_norm": 0.8416218161582947, + "learning_rate": 1.1384733333333333e-05, + "loss": 1.2624178314208985, + "step": 579500 + }, + { + "epoch": 77.28, + "grad_norm": 0.9230799674987793, + "learning_rate": 1.1378066666666667e-05, + "loss": 1.2626051330566406, + "step": 579600 + }, + { + "epoch": 77.29333333333334, + "grad_norm": 0.8633724451065063, + "learning_rate": 1.1371400000000001e-05, + "loss": 1.2685257720947265, + "step": 579700 + }, + { + "epoch": 77.30666666666667, + "grad_norm": 0.9460192322731018, + "learning_rate": 1.1364733333333335e-05, + "loss": 1.2646743774414062, + "step": 579800 + }, + { + "epoch": 77.32, + "grad_norm": 0.8928385376930237, + "learning_rate": 1.1358066666666667e-05, + "loss": 1.2659114837646483, + "step": 579900 + }, + { + "epoch": 77.33333333333333, + "grad_norm": 0.8571158051490784, + "learning_rate": 1.1351400000000001e-05, + "loss": 1.2670587921142578, + "step": 580000 + }, + { + "epoch": 77.34666666666666, + "grad_norm": 0.858704686164856, + "learning_rate": 1.1344733333333333e-05, + "loss": 1.2675933837890625, + "step": 580100 + }, + { + "epoch": 77.36, + "grad_norm": 0.9516656398773193, + "learning_rate": 1.1338066666666667e-05, + "loss": 1.2708335876464845, + "step": 580200 + }, + { + "epoch": 77.37333333333333, + "grad_norm": 0.8929257392883301, + "learning_rate": 1.13314e-05, + "loss": 1.265479278564453, + "step": 580300 + }, + { + "epoch": 77.38666666666667, + "grad_norm": 0.912930428981781, + "learning_rate": 1.1324733333333334e-05, + "loss": 1.2636156463623047, + "step": 580400 + }, + { + "epoch": 77.4, + "grad_norm": 0.8615267276763916, + "learning_rate": 1.1318066666666668e-05, + "loss": 1.2651126861572266, + "step": 580500 + }, + { + "epoch": 77.41333333333333, + "grad_norm": 0.8684864640235901, + "learning_rate": 1.1311400000000002e-05, + "loss": 1.2702027130126954, + "step": 580600 + }, + { + "epoch": 77.42666666666666, + "grad_norm": 0.8868072628974915, + "learning_rate": 1.1304733333333334e-05, + "loss": 1.2698739624023438, + "step": 580700 + }, + { + "epoch": 77.44, + "grad_norm": 0.9572634696960449, + "learning_rate": 1.1298066666666666e-05, + "loss": 1.268133544921875, + "step": 580800 + }, + { + "epoch": 77.45333333333333, + "grad_norm": 0.9197629690170288, + "learning_rate": 1.12914e-05, + "loss": 1.2709165954589843, + "step": 580900 + }, + { + "epoch": 77.46666666666667, + "grad_norm": 0.8801963329315186, + "learning_rate": 1.1284733333333334e-05, + "loss": 1.2684906768798827, + "step": 581000 + }, + { + "epoch": 77.48, + "grad_norm": 0.8818572163581848, + "learning_rate": 1.1278133333333333e-05, + "loss": 1.273465576171875, + "step": 581100 + }, + { + "epoch": 77.49333333333334, + "grad_norm": 0.9402119517326355, + "learning_rate": 1.1271466666666667e-05, + "loss": 1.266955108642578, + "step": 581200 + }, + { + "epoch": 77.50666666666666, + "grad_norm": 0.8809628486633301, + "learning_rate": 1.1264800000000001e-05, + "loss": 1.271000289916992, + "step": 581300 + }, + { + "epoch": 77.52, + "grad_norm": 0.9298728108406067, + "learning_rate": 1.1258133333333335e-05, + "loss": 1.2696641540527345, + "step": 581400 + }, + { + "epoch": 77.53333333333333, + "grad_norm": 0.9338729977607727, + "learning_rate": 1.1251466666666667e-05, + "loss": 1.2723861694335938, + "step": 581500 + }, + { + "epoch": 77.54666666666667, + "grad_norm": 0.8930231332778931, + "learning_rate": 1.1244800000000001e-05, + "loss": 1.2670636749267579, + "step": 581600 + }, + { + "epoch": 77.56, + "grad_norm": 0.8689009547233582, + "learning_rate": 1.1238133333333333e-05, + "loss": 1.2678091430664062, + "step": 581700 + }, + { + "epoch": 77.57333333333334, + "grad_norm": 0.8521204590797424, + "learning_rate": 1.1231466666666666e-05, + "loss": 1.2707132720947265, + "step": 581800 + }, + { + "epoch": 77.58666666666667, + "grad_norm": 0.8917391896247864, + "learning_rate": 1.1224800000000001e-05, + "loss": 1.2752569580078126, + "step": 581900 + }, + { + "epoch": 77.6, + "grad_norm": 0.9497755169868469, + "learning_rate": 1.1218133333333334e-05, + "loss": 1.2703166961669923, + "step": 582000 + }, + { + "epoch": 77.61333333333333, + "grad_norm": 0.9635091423988342, + "learning_rate": 1.1211466666666668e-05, + "loss": 1.2678369903564453, + "step": 582100 + }, + { + "epoch": 77.62666666666667, + "grad_norm": 0.9281509518623352, + "learning_rate": 1.12048e-05, + "loss": 1.2707953643798828, + "step": 582200 + }, + { + "epoch": 77.64, + "grad_norm": 0.8660150170326233, + "learning_rate": 1.1198133333333334e-05, + "loss": 1.272255401611328, + "step": 582300 + }, + { + "epoch": 77.65333333333334, + "grad_norm": 0.9285011291503906, + "learning_rate": 1.1191466666666666e-05, + "loss": 1.2756419372558594, + "step": 582400 + }, + { + "epoch": 77.66666666666667, + "grad_norm": 0.932344377040863, + "learning_rate": 1.11848e-05, + "loss": 1.2738219451904298, + "step": 582500 + }, + { + "epoch": 77.68, + "grad_norm": 0.9365657567977905, + "learning_rate": 1.1178133333333334e-05, + "loss": 1.2753623199462891, + "step": 582600 + }, + { + "epoch": 77.69333333333333, + "grad_norm": 0.825846791267395, + "learning_rate": 1.1171466666666668e-05, + "loss": 1.2731678771972657, + "step": 582700 + }, + { + "epoch": 77.70666666666666, + "grad_norm": 0.9342759847640991, + "learning_rate": 1.11648e-05, + "loss": 1.277725067138672, + "step": 582800 + }, + { + "epoch": 77.72, + "grad_norm": 0.9432119131088257, + "learning_rate": 1.1158133333333334e-05, + "loss": 1.2735256958007812, + "step": 582900 + }, + { + "epoch": 77.73333333333333, + "grad_norm": 0.9605401158332825, + "learning_rate": 1.1151466666666666e-05, + "loss": 1.2816490173339843, + "step": 583000 + }, + { + "epoch": 77.74666666666667, + "grad_norm": 0.9029577374458313, + "learning_rate": 1.1144866666666667e-05, + "loss": 1.2802981567382812, + "step": 583100 + }, + { + "epoch": 77.76, + "grad_norm": 0.8637961745262146, + "learning_rate": 1.11382e-05, + "loss": 1.2796761322021484, + "step": 583200 + }, + { + "epoch": 77.77333333333333, + "grad_norm": 0.921112596988678, + "learning_rate": 1.1131533333333333e-05, + "loss": 1.2756118774414062, + "step": 583300 + }, + { + "epoch": 77.78666666666666, + "grad_norm": 0.9237424731254578, + "learning_rate": 1.1124866666666667e-05, + "loss": 1.2745748901367187, + "step": 583400 + }, + { + "epoch": 77.8, + "grad_norm": 0.843678891658783, + "learning_rate": 1.1118200000000001e-05, + "loss": 1.2792215728759766, + "step": 583500 + }, + { + "epoch": 77.81333333333333, + "grad_norm": 0.9343549609184265, + "learning_rate": 1.1111533333333334e-05, + "loss": 1.277459716796875, + "step": 583600 + }, + { + "epoch": 77.82666666666667, + "grad_norm": 0.8938376307487488, + "learning_rate": 1.1104866666666668e-05, + "loss": 1.2799664306640626, + "step": 583700 + }, + { + "epoch": 77.84, + "grad_norm": 0.910925030708313, + "learning_rate": 1.10982e-05, + "loss": 1.280896453857422, + "step": 583800 + }, + { + "epoch": 77.85333333333334, + "grad_norm": 0.8991851806640625, + "learning_rate": 1.1091533333333334e-05, + "loss": 1.2770259857177735, + "step": 583900 + }, + { + "epoch": 77.86666666666666, + "grad_norm": 0.8709640502929688, + "learning_rate": 1.1084866666666668e-05, + "loss": 1.2761578369140625, + "step": 584000 + }, + { + "epoch": 77.88, + "grad_norm": 0.8845403790473938, + "learning_rate": 1.1078200000000002e-05, + "loss": 1.2800413513183593, + "step": 584100 + }, + { + "epoch": 77.89333333333333, + "grad_norm": 0.8760946393013, + "learning_rate": 1.1071533333333334e-05, + "loss": 1.2795198822021485, + "step": 584200 + }, + { + "epoch": 77.90666666666667, + "grad_norm": 0.9131218791007996, + "learning_rate": 1.1064866666666668e-05, + "loss": 1.2759528350830078, + "step": 584300 + }, + { + "epoch": 77.92, + "grad_norm": 0.8943530321121216, + "learning_rate": 1.10582e-05, + "loss": 1.2813719177246095, + "step": 584400 + }, + { + "epoch": 77.93333333333334, + "grad_norm": 0.9106712937355042, + "learning_rate": 1.1051533333333333e-05, + "loss": 1.2769749450683594, + "step": 584500 + }, + { + "epoch": 77.94666666666667, + "grad_norm": 0.9153562188148499, + "learning_rate": 1.1044866666666667e-05, + "loss": 1.2757042694091796, + "step": 584600 + }, + { + "epoch": 77.96, + "grad_norm": 0.9484046697616577, + "learning_rate": 1.10382e-05, + "loss": 1.2819232177734374, + "step": 584700 + }, + { + "epoch": 77.97333333333333, + "grad_norm": 0.9584998488426208, + "learning_rate": 1.1031533333333334e-05, + "loss": 1.2835421752929688, + "step": 584800 + }, + { + "epoch": 77.98666666666666, + "grad_norm": 0.9356921911239624, + "learning_rate": 1.1024866666666667e-05, + "loss": 1.2813420104980469, + "step": 584900 + }, + { + "epoch": 78.0, + "grad_norm": 0.9255989193916321, + "learning_rate": 1.10182e-05, + "loss": 1.2774526977539062, + "step": 585000 + }, + { + "epoch": 78.01333333333334, + "grad_norm": 0.8795908093452454, + "learning_rate": 1.1011600000000001e-05, + "loss": 1.249991455078125, + "step": 585100 + }, + { + "epoch": 78.02666666666667, + "grad_norm": 0.9239431619644165, + "learning_rate": 1.1004933333333334e-05, + "loss": 1.2514543151855468, + "step": 585200 + }, + { + "epoch": 78.04, + "grad_norm": 0.8539057374000549, + "learning_rate": 1.0998266666666668e-05, + "loss": 1.2499234008789062, + "step": 585300 + }, + { + "epoch": 78.05333333333333, + "grad_norm": 0.8485280871391296, + "learning_rate": 1.09916e-05, + "loss": 1.2504238891601562, + "step": 585400 + }, + { + "epoch": 78.06666666666666, + "grad_norm": 0.8902794718742371, + "learning_rate": 1.0984933333333334e-05, + "loss": 1.2511708068847656, + "step": 585500 + }, + { + "epoch": 78.08, + "grad_norm": 0.9052618741989136, + "learning_rate": 1.0978266666666668e-05, + "loss": 1.2486000061035156, + "step": 585600 + }, + { + "epoch": 78.09333333333333, + "grad_norm": 0.8789846897125244, + "learning_rate": 1.09716e-05, + "loss": 1.251748275756836, + "step": 585700 + }, + { + "epoch": 78.10666666666667, + "grad_norm": 0.885184109210968, + "learning_rate": 1.0964933333333334e-05, + "loss": 1.2532960510253905, + "step": 585800 + }, + { + "epoch": 78.12, + "grad_norm": 0.8550071120262146, + "learning_rate": 1.0958266666666666e-05, + "loss": 1.2503804779052734, + "step": 585900 + }, + { + "epoch": 78.13333333333334, + "grad_norm": 0.9323640465736389, + "learning_rate": 1.09516e-05, + "loss": 1.2534485626220704, + "step": 586000 + }, + { + "epoch": 78.14666666666666, + "grad_norm": 0.8850072026252747, + "learning_rate": 1.0944933333333334e-05, + "loss": 1.2556941986083985, + "step": 586100 + }, + { + "epoch": 78.16, + "grad_norm": 0.8399662971496582, + "learning_rate": 1.0938266666666668e-05, + "loss": 1.2542850494384765, + "step": 586200 + }, + { + "epoch": 78.17333333333333, + "grad_norm": 0.919593095779419, + "learning_rate": 1.09316e-05, + "loss": 1.2562599182128906, + "step": 586300 + }, + { + "epoch": 78.18666666666667, + "grad_norm": 0.8908868432044983, + "learning_rate": 1.0924933333333334e-05, + "loss": 1.2563451385498048, + "step": 586400 + }, + { + "epoch": 78.2, + "grad_norm": 0.8848934769630432, + "learning_rate": 1.0918266666666667e-05, + "loss": 1.2524043273925782, + "step": 586500 + }, + { + "epoch": 78.21333333333334, + "grad_norm": 0.8833860158920288, + "learning_rate": 1.09116e-05, + "loss": 1.2593082427978515, + "step": 586600 + }, + { + "epoch": 78.22666666666667, + "grad_norm": 0.8572924733161926, + "learning_rate": 1.0904933333333333e-05, + "loss": 1.2562625885009766, + "step": 586700 + }, + { + "epoch": 78.24, + "grad_norm": 0.8951097726821899, + "learning_rate": 1.0898266666666667e-05, + "loss": 1.2585964965820313, + "step": 586800 + }, + { + "epoch": 78.25333333333333, + "grad_norm": 0.879523515701294, + "learning_rate": 1.0891600000000001e-05, + "loss": 1.2556568908691406, + "step": 586900 + }, + { + "epoch": 78.26666666666667, + "grad_norm": 0.9368571043014526, + "learning_rate": 1.0884933333333335e-05, + "loss": 1.2600704193115235, + "step": 587000 + }, + { + "epoch": 78.28, + "grad_norm": 0.8886348009109497, + "learning_rate": 1.0878333333333334e-05, + "loss": 1.2605961608886718, + "step": 587100 + }, + { + "epoch": 78.29333333333334, + "grad_norm": 0.8580905199050903, + "learning_rate": 1.0871666666666668e-05, + "loss": 1.2552318572998047, + "step": 587200 + }, + { + "epoch": 78.30666666666667, + "grad_norm": 0.9353607296943665, + "learning_rate": 1.0865e-05, + "loss": 1.256221389770508, + "step": 587300 + }, + { + "epoch": 78.32, + "grad_norm": 0.8265605568885803, + "learning_rate": 1.0858333333333334e-05, + "loss": 1.2583871459960938, + "step": 587400 + }, + { + "epoch": 78.33333333333333, + "grad_norm": 0.956251859664917, + "learning_rate": 1.0851666666666666e-05, + "loss": 1.2614502716064453, + "step": 587500 + }, + { + "epoch": 78.34666666666666, + "grad_norm": 0.8545957207679749, + "learning_rate": 1.0845e-05, + "loss": 1.2584918212890626, + "step": 587600 + }, + { + "epoch": 78.36, + "grad_norm": 0.8909661769866943, + "learning_rate": 1.0838333333333334e-05, + "loss": 1.2615117645263672, + "step": 587700 + }, + { + "epoch": 78.37333333333333, + "grad_norm": 0.9129730463027954, + "learning_rate": 1.0831666666666668e-05, + "loss": 1.255586166381836, + "step": 587800 + }, + { + "epoch": 78.38666666666667, + "grad_norm": 0.8736388683319092, + "learning_rate": 1.0825e-05, + "loss": 1.2649986267089843, + "step": 587900 + }, + { + "epoch": 78.4, + "grad_norm": 0.931929886341095, + "learning_rate": 1.0818333333333335e-05, + "loss": 1.2623023223876952, + "step": 588000 + }, + { + "epoch": 78.41333333333333, + "grad_norm": 0.9257421493530273, + "learning_rate": 1.0811666666666667e-05, + "loss": 1.258783950805664, + "step": 588100 + }, + { + "epoch": 78.42666666666666, + "grad_norm": 0.8989784717559814, + "learning_rate": 1.0804999999999999e-05, + "loss": 1.2628663635253907, + "step": 588200 + }, + { + "epoch": 78.44, + "grad_norm": 0.9080356359481812, + "learning_rate": 1.0798333333333335e-05, + "loss": 1.2631582641601562, + "step": 588300 + }, + { + "epoch": 78.45333333333333, + "grad_norm": 0.864266574382782, + "learning_rate": 1.0791666666666667e-05, + "loss": 1.2602297973632812, + "step": 588400 + }, + { + "epoch": 78.46666666666667, + "grad_norm": 0.9377700686454773, + "learning_rate": 1.0785000000000001e-05, + "loss": 1.2689905548095703, + "step": 588500 + }, + { + "epoch": 78.48, + "grad_norm": 0.9184496998786926, + "learning_rate": 1.0778333333333333e-05, + "loss": 1.2642398834228517, + "step": 588600 + }, + { + "epoch": 78.49333333333334, + "grad_norm": 0.9387530088424683, + "learning_rate": 1.0771666666666667e-05, + "loss": 1.2622312164306642, + "step": 588700 + }, + { + "epoch": 78.50666666666666, + "grad_norm": 0.8708038926124573, + "learning_rate": 1.0765e-05, + "loss": 1.265206298828125, + "step": 588800 + }, + { + "epoch": 78.52, + "grad_norm": 0.8846192955970764, + "learning_rate": 1.0758333333333333e-05, + "loss": 1.2633629608154298, + "step": 588900 + }, + { + "epoch": 78.53333333333333, + "grad_norm": 0.8851326704025269, + "learning_rate": 1.0751666666666667e-05, + "loss": 1.266950912475586, + "step": 589000 + }, + { + "epoch": 78.54666666666667, + "grad_norm": 0.9254246950149536, + "learning_rate": 1.0745000000000001e-05, + "loss": 1.2651148223876953, + "step": 589100 + }, + { + "epoch": 78.56, + "grad_norm": 0.886559784412384, + "learning_rate": 1.07384e-05, + "loss": 1.2686289215087891, + "step": 589200 + }, + { + "epoch": 78.57333333333334, + "grad_norm": 0.8676953315734863, + "learning_rate": 1.0731733333333334e-05, + "loss": 1.2632874298095702, + "step": 589300 + }, + { + "epoch": 78.58666666666667, + "grad_norm": 0.911446213722229, + "learning_rate": 1.0725066666666667e-05, + "loss": 1.2674727630615235, + "step": 589400 + }, + { + "epoch": 78.6, + "grad_norm": 0.9178944230079651, + "learning_rate": 1.07184e-05, + "loss": 1.2665594482421876, + "step": 589500 + }, + { + "epoch": 78.61333333333333, + "grad_norm": 0.9570107460021973, + "learning_rate": 1.0711733333333333e-05, + "loss": 1.2660420989990235, + "step": 589600 + }, + { + "epoch": 78.62666666666667, + "grad_norm": 0.9041311144828796, + "learning_rate": 1.0705066666666667e-05, + "loss": 1.2692436218261718, + "step": 589700 + }, + { + "epoch": 78.64, + "grad_norm": 0.8909561634063721, + "learning_rate": 1.06984e-05, + "loss": 1.2753994750976563, + "step": 589800 + }, + { + "epoch": 78.65333333333334, + "grad_norm": 0.883059561252594, + "learning_rate": 1.0691733333333335e-05, + "loss": 1.2698513793945312, + "step": 589900 + }, + { + "epoch": 78.66666666666667, + "grad_norm": 0.8872081637382507, + "learning_rate": 1.0685066666666667e-05, + "loss": 1.268332748413086, + "step": 590000 + }, + { + "epoch": 78.68, + "grad_norm": 0.9364659190177917, + "learning_rate": 1.0678400000000001e-05, + "loss": 1.2715838623046876, + "step": 590100 + }, + { + "epoch": 78.69333333333333, + "grad_norm": 0.8873387575149536, + "learning_rate": 1.0671733333333333e-05, + "loss": 1.2653190612792968, + "step": 590200 + }, + { + "epoch": 78.70666666666666, + "grad_norm": 0.9163351058959961, + "learning_rate": 1.0665066666666667e-05, + "loss": 1.2706766510009766, + "step": 590300 + }, + { + "epoch": 78.72, + "grad_norm": 0.8802734017372131, + "learning_rate": 1.0658400000000001e-05, + "loss": 1.2680073547363282, + "step": 590400 + }, + { + "epoch": 78.73333333333333, + "grad_norm": 0.8930662870407104, + "learning_rate": 1.0651733333333335e-05, + "loss": 1.2715739440917968, + "step": 590500 + }, + { + "epoch": 78.74666666666667, + "grad_norm": 0.8921145796775818, + "learning_rate": 1.0645066666666667e-05, + "loss": 1.2718709564208985, + "step": 590600 + }, + { + "epoch": 78.76, + "grad_norm": 0.9061724543571472, + "learning_rate": 1.0638400000000001e-05, + "loss": 1.2666871643066406, + "step": 590700 + }, + { + "epoch": 78.77333333333333, + "grad_norm": 0.9512609839439392, + "learning_rate": 1.0631733333333334e-05, + "loss": 1.2725698852539062, + "step": 590800 + }, + { + "epoch": 78.78666666666666, + "grad_norm": 0.8718198537826538, + "learning_rate": 1.0625066666666666e-05, + "loss": 1.2700515747070313, + "step": 590900 + }, + { + "epoch": 78.8, + "grad_norm": 0.9610340595245361, + "learning_rate": 1.06184e-05, + "loss": 1.2690962982177734, + "step": 591000 + }, + { + "epoch": 78.81333333333333, + "grad_norm": 0.9104143977165222, + "learning_rate": 1.0611733333333334e-05, + "loss": 1.2665902709960937, + "step": 591100 + }, + { + "epoch": 78.82666666666667, + "grad_norm": 0.9109393358230591, + "learning_rate": 1.0605133333333333e-05, + "loss": 1.2704518127441407, + "step": 591200 + }, + { + "epoch": 78.84, + "grad_norm": 0.9059329032897949, + "learning_rate": 1.0598466666666667e-05, + "loss": 1.273515396118164, + "step": 591300 + }, + { + "epoch": 78.85333333333334, + "grad_norm": 0.9386402368545532, + "learning_rate": 1.05918e-05, + "loss": 1.2749934387207031, + "step": 591400 + }, + { + "epoch": 78.86666666666666, + "grad_norm": 0.8592071533203125, + "learning_rate": 1.0585133333333335e-05, + "loss": 1.274554214477539, + "step": 591500 + }, + { + "epoch": 78.88, + "grad_norm": 0.903801679611206, + "learning_rate": 1.0578466666666667e-05, + "loss": 1.2715023040771485, + "step": 591600 + }, + { + "epoch": 78.89333333333333, + "grad_norm": 0.9000576138496399, + "learning_rate": 1.0571800000000001e-05, + "loss": 1.2724392700195313, + "step": 591700 + }, + { + "epoch": 78.90666666666667, + "grad_norm": 0.9397499561309814, + "learning_rate": 1.0565133333333333e-05, + "loss": 1.2701983642578125, + "step": 591800 + }, + { + "epoch": 78.92, + "grad_norm": 0.9019601345062256, + "learning_rate": 1.0558466666666667e-05, + "loss": 1.2739637756347657, + "step": 591900 + }, + { + "epoch": 78.93333333333334, + "grad_norm": 0.9267058372497559, + "learning_rate": 1.0551800000000001e-05, + "loss": 1.278916778564453, + "step": 592000 + }, + { + "epoch": 78.94666666666667, + "grad_norm": 0.9432265162467957, + "learning_rate": 1.0545133333333333e-05, + "loss": 1.2765323638916015, + "step": 592100 + }, + { + "epoch": 78.96, + "grad_norm": 0.905218243598938, + "learning_rate": 1.0538466666666667e-05, + "loss": 1.2738363647460937, + "step": 592200 + }, + { + "epoch": 78.97333333333333, + "grad_norm": 0.8922687768936157, + "learning_rate": 1.05318e-05, + "loss": 1.2749046325683593, + "step": 592300 + }, + { + "epoch": 78.98666666666666, + "grad_norm": 0.9277877807617188, + "learning_rate": 1.0525133333333334e-05, + "loss": 1.2721634674072266, + "step": 592400 + }, + { + "epoch": 79.0, + "grad_norm": 0.9030377268791199, + "learning_rate": 1.0518466666666666e-05, + "loss": 1.2747603607177735, + "step": 592500 + }, + { + "epoch": 79.01333333333334, + "grad_norm": 0.8378993272781372, + "learning_rate": 1.0511800000000002e-05, + "loss": 1.24189208984375, + "step": 592600 + }, + { + "epoch": 79.02666666666667, + "grad_norm": 0.9222813248634338, + "learning_rate": 1.0505133333333334e-05, + "loss": 1.2447259521484375, + "step": 592700 + }, + { + "epoch": 79.04, + "grad_norm": 0.8688544034957886, + "learning_rate": 1.0498466666666668e-05, + "loss": 1.2454937744140624, + "step": 592800 + }, + { + "epoch": 79.05333333333333, + "grad_norm": 0.8973101377487183, + "learning_rate": 1.04918e-05, + "loss": 1.2433192443847656, + "step": 592900 + }, + { + "epoch": 79.06666666666666, + "grad_norm": 0.868934154510498, + "learning_rate": 1.0485133333333334e-05, + "loss": 1.2476187133789063, + "step": 593000 + }, + { + "epoch": 79.08, + "grad_norm": 0.9051042795181274, + "learning_rate": 1.0478466666666666e-05, + "loss": 1.246639404296875, + "step": 593100 + }, + { + "epoch": 79.09333333333333, + "grad_norm": 0.8593751192092896, + "learning_rate": 1.0471866666666667e-05, + "loss": 1.2500391387939453, + "step": 593200 + }, + { + "epoch": 79.10666666666667, + "grad_norm": 0.8476565480232239, + "learning_rate": 1.04652e-05, + "loss": 1.246165542602539, + "step": 593300 + }, + { + "epoch": 79.12, + "grad_norm": 0.8801284432411194, + "learning_rate": 1.0458533333333333e-05, + "loss": 1.246192092895508, + "step": 593400 + }, + { + "epoch": 79.13333333333334, + "grad_norm": 0.8846884369850159, + "learning_rate": 1.0451866666666667e-05, + "loss": 1.2439684295654296, + "step": 593500 + }, + { + "epoch": 79.14666666666666, + "grad_norm": 0.9294757843017578, + "learning_rate": 1.0445200000000001e-05, + "loss": 1.2488855743408203, + "step": 593600 + }, + { + "epoch": 79.16, + "grad_norm": 0.8399421572685242, + "learning_rate": 1.0438533333333333e-05, + "loss": 1.2482614135742187, + "step": 593700 + }, + { + "epoch": 79.17333333333333, + "grad_norm": 0.911873459815979, + "learning_rate": 1.0431866666666667e-05, + "loss": 1.2482553100585938, + "step": 593800 + }, + { + "epoch": 79.18666666666667, + "grad_norm": 0.8314080834388733, + "learning_rate": 1.04252e-05, + "loss": 1.247007827758789, + "step": 593900 + }, + { + "epoch": 79.2, + "grad_norm": 0.9181894063949585, + "learning_rate": 1.0418533333333334e-05, + "loss": 1.2536485290527344, + "step": 594000 + }, + { + "epoch": 79.21333333333334, + "grad_norm": 0.8740313649177551, + "learning_rate": 1.0411866666666668e-05, + "loss": 1.2519398498535157, + "step": 594100 + }, + { + "epoch": 79.22666666666667, + "grad_norm": 0.9068511128425598, + "learning_rate": 1.0405200000000002e-05, + "loss": 1.2476766967773438, + "step": 594200 + }, + { + "epoch": 79.24, + "grad_norm": 0.9321922063827515, + "learning_rate": 1.0398533333333334e-05, + "loss": 1.2513009643554687, + "step": 594300 + }, + { + "epoch": 79.25333333333333, + "grad_norm": 0.888857901096344, + "learning_rate": 1.0391866666666668e-05, + "loss": 1.2504447937011718, + "step": 594400 + }, + { + "epoch": 79.26666666666667, + "grad_norm": 0.9641751050949097, + "learning_rate": 1.03852e-05, + "loss": 1.2548712921142577, + "step": 594500 + }, + { + "epoch": 79.28, + "grad_norm": 0.8727660775184631, + "learning_rate": 1.0378533333333332e-05, + "loss": 1.2525074005126953, + "step": 594600 + }, + { + "epoch": 79.29333333333334, + "grad_norm": 0.8915736675262451, + "learning_rate": 1.0371866666666668e-05, + "loss": 1.2563622283935547, + "step": 594700 + }, + { + "epoch": 79.30666666666667, + "grad_norm": 0.8992096781730652, + "learning_rate": 1.03652e-05, + "loss": 1.250523452758789, + "step": 594800 + }, + { + "epoch": 79.32, + "grad_norm": 0.9542332291603088, + "learning_rate": 1.0358533333333334e-05, + "loss": 1.2581777954101563, + "step": 594900 + }, + { + "epoch": 79.33333333333333, + "grad_norm": 0.8994565606117249, + "learning_rate": 1.0351866666666667e-05, + "loss": 1.2560828399658204, + "step": 595000 + }, + { + "epoch": 79.34666666666666, + "grad_norm": 0.9147607088088989, + "learning_rate": 1.03452e-05, + "loss": 1.2500714111328124, + "step": 595100 + }, + { + "epoch": 79.36, + "grad_norm": 0.9078018069267273, + "learning_rate": 1.0338600000000001e-05, + "loss": 1.257826385498047, + "step": 595200 + }, + { + "epoch": 79.37333333333333, + "grad_norm": 0.9065786004066467, + "learning_rate": 1.0331933333333334e-05, + "loss": 1.2560930633544922, + "step": 595300 + }, + { + "epoch": 79.38666666666667, + "grad_norm": 0.9030917286872864, + "learning_rate": 1.0325266666666667e-05, + "loss": 1.2558876800537109, + "step": 595400 + }, + { + "epoch": 79.4, + "grad_norm": 0.9185391664505005, + "learning_rate": 1.03186e-05, + "loss": 1.2556648254394531, + "step": 595500 + }, + { + "epoch": 79.41333333333333, + "grad_norm": 0.8820536136627197, + "learning_rate": 1.0311933333333334e-05, + "loss": 1.25557373046875, + "step": 595600 + }, + { + "epoch": 79.42666666666666, + "grad_norm": 0.872558057308197, + "learning_rate": 1.0305266666666668e-05, + "loss": 1.2546512603759765, + "step": 595700 + }, + { + "epoch": 79.44, + "grad_norm": 0.9479767680168152, + "learning_rate": 1.02986e-05, + "loss": 1.2602999114990234, + "step": 595800 + }, + { + "epoch": 79.45333333333333, + "grad_norm": 0.8801756501197815, + "learning_rate": 1.0291933333333334e-05, + "loss": 1.2596167755126952, + "step": 595900 + }, + { + "epoch": 79.46666666666667, + "grad_norm": 0.8682863116264343, + "learning_rate": 1.0285266666666666e-05, + "loss": 1.2621781158447265, + "step": 596000 + }, + { + "epoch": 79.48, + "grad_norm": 0.9202213883399963, + "learning_rate": 1.02786e-05, + "loss": 1.2601839447021483, + "step": 596100 + }, + { + "epoch": 79.49333333333334, + "grad_norm": 0.8812510371208191, + "learning_rate": 1.0271933333333334e-05, + "loss": 1.2634574890136718, + "step": 596200 + }, + { + "epoch": 79.50666666666666, + "grad_norm": 0.9358564019203186, + "learning_rate": 1.0265266666666668e-05, + "loss": 1.2560010528564454, + "step": 596300 + }, + { + "epoch": 79.52, + "grad_norm": 0.9232118725776672, + "learning_rate": 1.02586e-05, + "loss": 1.2569718170166015, + "step": 596400 + }, + { + "epoch": 79.53333333333333, + "grad_norm": 0.9304707050323486, + "learning_rate": 1.0251933333333334e-05, + "loss": 1.2577223205566406, + "step": 596500 + }, + { + "epoch": 79.54666666666667, + "grad_norm": 0.8667801022529602, + "learning_rate": 1.0245266666666667e-05, + "loss": 1.2640282440185546, + "step": 596600 + }, + { + "epoch": 79.56, + "grad_norm": 0.9173431992530823, + "learning_rate": 1.02386e-05, + "loss": 1.2618460083007812, + "step": 596700 + }, + { + "epoch": 79.57333333333334, + "grad_norm": 0.9202678203582764, + "learning_rate": 1.0231933333333334e-05, + "loss": 1.2610095977783202, + "step": 596800 + }, + { + "epoch": 79.58666666666667, + "grad_norm": 0.8916814923286438, + "learning_rate": 1.0225266666666668e-05, + "loss": 1.2634732055664062, + "step": 596900 + }, + { + "epoch": 79.6, + "grad_norm": 0.8657307624816895, + "learning_rate": 1.02186e-05, + "loss": 1.2660941314697265, + "step": 597000 + }, + { + "epoch": 79.61333333333333, + "grad_norm": 0.948290228843689, + "learning_rate": 1.0211933333333335e-05, + "loss": 1.2630126953125, + "step": 597100 + }, + { + "epoch": 79.62666666666667, + "grad_norm": 0.8405894041061401, + "learning_rate": 1.0205333333333334e-05, + "loss": 1.2619757080078124, + "step": 597200 + }, + { + "epoch": 79.64, + "grad_norm": 0.9192798137664795, + "learning_rate": 1.0198666666666668e-05, + "loss": 1.2630854797363282, + "step": 597300 + }, + { + "epoch": 79.65333333333334, + "grad_norm": 0.8935139179229736, + "learning_rate": 1.0192e-05, + "loss": 1.2599110412597656, + "step": 597400 + }, + { + "epoch": 79.66666666666667, + "grad_norm": 0.9552688598632812, + "learning_rate": 1.0185333333333334e-05, + "loss": 1.2634823608398438, + "step": 597500 + }, + { + "epoch": 79.68, + "grad_norm": 0.9792049527168274, + "learning_rate": 1.0178666666666666e-05, + "loss": 1.2599063110351563, + "step": 597600 + }, + { + "epoch": 79.69333333333333, + "grad_norm": 0.8858845233917236, + "learning_rate": 1.0172e-05, + "loss": 1.262656021118164, + "step": 597700 + }, + { + "epoch": 79.70666666666666, + "grad_norm": 0.8454314470291138, + "learning_rate": 1.0165333333333334e-05, + "loss": 1.2662943267822266, + "step": 597800 + }, + { + "epoch": 79.72, + "grad_norm": 0.8796765208244324, + "learning_rate": 1.0158666666666668e-05, + "loss": 1.2636601257324218, + "step": 597900 + }, + { + "epoch": 79.73333333333333, + "grad_norm": 0.9347110390663147, + "learning_rate": 1.0152e-05, + "loss": 1.2646561431884766, + "step": 598000 + }, + { + "epoch": 79.74666666666667, + "grad_norm": 0.8910204172134399, + "learning_rate": 1.0145333333333334e-05, + "loss": 1.268468780517578, + "step": 598100 + }, + { + "epoch": 79.76, + "grad_norm": 0.8769538998603821, + "learning_rate": 1.0138666666666667e-05, + "loss": 1.2662653350830078, + "step": 598200 + }, + { + "epoch": 79.77333333333333, + "grad_norm": 0.8732584714889526, + "learning_rate": 1.0132e-05, + "loss": 1.2627813720703125, + "step": 598300 + }, + { + "epoch": 79.78666666666666, + "grad_norm": 0.927267849445343, + "learning_rate": 1.0125333333333335e-05, + "loss": 1.2639500427246093, + "step": 598400 + }, + { + "epoch": 79.8, + "grad_norm": 0.8972467184066772, + "learning_rate": 1.0118666666666667e-05, + "loss": 1.265300064086914, + "step": 598500 + }, + { + "epoch": 79.81333333333333, + "grad_norm": 0.9230730533599854, + "learning_rate": 1.0112e-05, + "loss": 1.2670893096923828, + "step": 598600 + }, + { + "epoch": 79.82666666666667, + "grad_norm": 0.8692210912704468, + "learning_rate": 1.0105333333333333e-05, + "loss": 1.2643206787109376, + "step": 598700 + }, + { + "epoch": 79.84, + "grad_norm": 0.9208062291145325, + "learning_rate": 1.0098666666666667e-05, + "loss": 1.266007766723633, + "step": 598800 + }, + { + "epoch": 79.85333333333334, + "grad_norm": 0.8955254554748535, + "learning_rate": 1.0092e-05, + "loss": 1.2656437683105468, + "step": 598900 + }, + { + "epoch": 79.86666666666666, + "grad_norm": 0.8898331522941589, + "learning_rate": 1.0085333333333335e-05, + "loss": 1.268927993774414, + "step": 599000 + }, + { + "epoch": 79.88, + "grad_norm": 0.9004736542701721, + "learning_rate": 1.0078666666666667e-05, + "loss": 1.2676744079589843, + "step": 599100 + }, + { + "epoch": 79.89333333333333, + "grad_norm": 0.879002571105957, + "learning_rate": 1.0072066666666668e-05, + "loss": 1.268192672729492, + "step": 599200 + }, + { + "epoch": 79.90666666666667, + "grad_norm": 0.8479452133178711, + "learning_rate": 1.00654e-05, + "loss": 1.2690647888183593, + "step": 599300 + }, + { + "epoch": 79.92, + "grad_norm": 0.9314066171646118, + "learning_rate": 1.0058733333333334e-05, + "loss": 1.2657173156738282, + "step": 599400 + }, + { + "epoch": 79.93333333333334, + "grad_norm": 0.9445568919181824, + "learning_rate": 1.0052066666666666e-05, + "loss": 1.268585205078125, + "step": 599500 + }, + { + "epoch": 79.94666666666667, + "grad_norm": 0.8672616481781006, + "learning_rate": 1.00454e-05, + "loss": 1.2684510040283203, + "step": 599600 + }, + { + "epoch": 79.96, + "grad_norm": 0.9522123336791992, + "learning_rate": 1.0038733333333333e-05, + "loss": 1.2633151245117187, + "step": 599700 + }, + { + "epoch": 79.97333333333333, + "grad_norm": 0.8980398774147034, + "learning_rate": 1.0032066666666667e-05, + "loss": 1.2709536743164063, + "step": 599800 + }, + { + "epoch": 79.98666666666666, + "grad_norm": 0.9412267804145813, + "learning_rate": 1.00254e-05, + "loss": 1.2736549377441406, + "step": 599900 + }, + { + "epoch": 80.0, + "grad_norm": 0.958734929561615, + "learning_rate": 1.0018733333333335e-05, + "loss": 1.2687025451660157, + "step": 600000 + }, + { + "epoch": 80.01333333333334, + "grad_norm": 0.9288617968559265, + "learning_rate": 1.0012066666666667e-05, + "loss": 1.2443870544433593, + "step": 600100 + }, + { + "epoch": 80.02666666666667, + "grad_norm": 0.9338223338127136, + "learning_rate": 1.00054e-05, + "loss": 1.243735122680664, + "step": 600200 + }, + { + "epoch": 80.04, + "grad_norm": 0.9002096056938171, + "learning_rate": 9.998733333333333e-06, + "loss": 1.2413943481445313, + "step": 600300 + }, + { + "epoch": 80.05333333333333, + "grad_norm": 0.9089773297309875, + "learning_rate": 9.992066666666667e-06, + "loss": 1.2424115753173828, + "step": 600400 + }, + { + "epoch": 80.06666666666666, + "grad_norm": 0.919051468372345, + "learning_rate": 9.985400000000001e-06, + "loss": 1.2413393402099608, + "step": 600500 + }, + { + "epoch": 80.08, + "grad_norm": 0.9045332670211792, + "learning_rate": 9.978733333333335e-06, + "loss": 1.2448829650878905, + "step": 600600 + }, + { + "epoch": 80.09333333333333, + "grad_norm": 0.9014262557029724, + "learning_rate": 9.972066666666667e-06, + "loss": 1.2456900024414062, + "step": 600700 + }, + { + "epoch": 80.10666666666667, + "grad_norm": 0.9010103344917297, + "learning_rate": 9.965400000000001e-06, + "loss": 1.2381111907958984, + "step": 600800 + }, + { + "epoch": 80.12, + "grad_norm": 0.8444560170173645, + "learning_rate": 9.958733333333333e-06, + "loss": 1.2418882751464844, + "step": 600900 + }, + { + "epoch": 80.13333333333334, + "grad_norm": 0.9013086557388306, + "learning_rate": 9.952066666666666e-06, + "loss": 1.2470101165771483, + "step": 601000 + }, + { + "epoch": 80.14666666666666, + "grad_norm": 0.8963460326194763, + "learning_rate": 9.945400000000001e-06, + "loss": 1.2434548950195312, + "step": 601100 + }, + { + "epoch": 80.16, + "grad_norm": 0.8968179821968079, + "learning_rate": 9.9388e-06, + "loss": 1.244561996459961, + "step": 601200 + }, + { + "epoch": 80.17333333333333, + "grad_norm": 0.8898792862892151, + "learning_rate": 9.932133333333333e-06, + "loss": 1.2477424621582032, + "step": 601300 + }, + { + "epoch": 80.18666666666667, + "grad_norm": 0.9151734709739685, + "learning_rate": 9.925466666666668e-06, + "loss": 1.2453786468505859, + "step": 601400 + }, + { + "epoch": 80.2, + "grad_norm": 0.8821862936019897, + "learning_rate": 9.9188e-06, + "loss": 1.250970993041992, + "step": 601500 + }, + { + "epoch": 80.21333333333334, + "grad_norm": 0.8794935941696167, + "learning_rate": 9.912133333333335e-06, + "loss": 1.2464175415039063, + "step": 601600 + }, + { + "epoch": 80.22666666666667, + "grad_norm": 0.8836155533790588, + "learning_rate": 9.905466666666667e-06, + "loss": 1.2436624908447265, + "step": 601700 + }, + { + "epoch": 80.24, + "grad_norm": 0.881230354309082, + "learning_rate": 9.8988e-06, + "loss": 1.2490660095214843, + "step": 601800 + }, + { + "epoch": 80.25333333333333, + "grad_norm": 0.9362554550170898, + "learning_rate": 9.892133333333333e-06, + "loss": 1.2497845458984376, + "step": 601900 + }, + { + "epoch": 80.26666666666667, + "grad_norm": 0.8518027663230896, + "learning_rate": 9.885466666666667e-06, + "loss": 1.247543487548828, + "step": 602000 + }, + { + "epoch": 80.28, + "grad_norm": 0.9236149787902832, + "learning_rate": 9.878800000000001e-06, + "loss": 1.2505050659179688, + "step": 602100 + }, + { + "epoch": 80.29333333333334, + "grad_norm": 0.9130676984786987, + "learning_rate": 9.872133333333333e-06, + "loss": 1.2465634918212891, + "step": 602200 + }, + { + "epoch": 80.30666666666667, + "grad_norm": 0.9139811992645264, + "learning_rate": 9.865466666666667e-06, + "loss": 1.2522836303710938, + "step": 602300 + }, + { + "epoch": 80.32, + "grad_norm": 0.8871936202049255, + "learning_rate": 9.8588e-06, + "loss": 1.2477921295166015, + "step": 602400 + }, + { + "epoch": 80.33333333333333, + "grad_norm": 0.9056395888328552, + "learning_rate": 9.852133333333333e-06, + "loss": 1.25315185546875, + "step": 602500 + }, + { + "epoch": 80.34666666666666, + "grad_norm": 0.881733238697052, + "learning_rate": 9.845466666666667e-06, + "loss": 1.25149169921875, + "step": 602600 + }, + { + "epoch": 80.36, + "grad_norm": 0.8879048228263855, + "learning_rate": 9.838800000000001e-06, + "loss": 1.2514451599121095, + "step": 602700 + }, + { + "epoch": 80.37333333333333, + "grad_norm": 0.9176741242408752, + "learning_rate": 9.832133333333334e-06, + "loss": 1.2507662963867188, + "step": 602800 + }, + { + "epoch": 80.38666666666667, + "grad_norm": 0.8852501511573792, + "learning_rate": 9.825466666666668e-06, + "loss": 1.2502633666992187, + "step": 602900 + }, + { + "epoch": 80.4, + "grad_norm": 0.8856446743011475, + "learning_rate": 9.8188e-06, + "loss": 1.2474871826171876, + "step": 603000 + }, + { + "epoch": 80.41333333333333, + "grad_norm": 0.7928372621536255, + "learning_rate": 9.812133333333334e-06, + "loss": 1.252954635620117, + "step": 603100 + }, + { + "epoch": 80.42666666666666, + "grad_norm": 0.9248310327529907, + "learning_rate": 9.805533333333333e-06, + "loss": 1.255914306640625, + "step": 603200 + }, + { + "epoch": 80.44, + "grad_norm": 0.8597677946090698, + "learning_rate": 9.798866666666667e-06, + "loss": 1.2539872741699218, + "step": 603300 + }, + { + "epoch": 80.45333333333333, + "grad_norm": 0.9030819535255432, + "learning_rate": 9.7922e-06, + "loss": 1.2549383544921875, + "step": 603400 + }, + { + "epoch": 80.46666666666667, + "grad_norm": 0.9179391860961914, + "learning_rate": 9.785533333333335e-06, + "loss": 1.255010757446289, + "step": 603500 + }, + { + "epoch": 80.48, + "grad_norm": 0.8762322068214417, + "learning_rate": 9.778866666666667e-06, + "loss": 1.2511839294433593, + "step": 603600 + }, + { + "epoch": 80.49333333333334, + "grad_norm": 0.9009326696395874, + "learning_rate": 9.772200000000001e-06, + "loss": 1.2546797180175782, + "step": 603700 + }, + { + "epoch": 80.50666666666666, + "grad_norm": 0.8604843020439148, + "learning_rate": 9.765533333333333e-06, + "loss": 1.2558490753173828, + "step": 603800 + }, + { + "epoch": 80.52, + "grad_norm": 0.7724893093109131, + "learning_rate": 9.758866666666667e-06, + "loss": 1.254795150756836, + "step": 603900 + }, + { + "epoch": 80.53333333333333, + "grad_norm": 0.9349945783615112, + "learning_rate": 9.7522e-06, + "loss": 1.2588446044921875, + "step": 604000 + }, + { + "epoch": 80.54666666666667, + "grad_norm": 0.8668858408927917, + "learning_rate": 9.745533333333334e-06, + "loss": 1.2564624786376952, + "step": 604100 + }, + { + "epoch": 80.56, + "grad_norm": 0.872798502445221, + "learning_rate": 9.738866666666667e-06, + "loss": 1.2593098449707032, + "step": 604200 + }, + { + "epoch": 80.57333333333334, + "grad_norm": 0.8730403780937195, + "learning_rate": 9.732200000000001e-06, + "loss": 1.2532449340820313, + "step": 604300 + }, + { + "epoch": 80.58666666666667, + "grad_norm": 0.9731208682060242, + "learning_rate": 9.725533333333334e-06, + "loss": 1.258994598388672, + "step": 604400 + }, + { + "epoch": 80.6, + "grad_norm": 0.9248079061508179, + "learning_rate": 9.718866666666668e-06, + "loss": 1.2537442779541015, + "step": 604500 + }, + { + "epoch": 80.61333333333333, + "grad_norm": 0.8961241841316223, + "learning_rate": 9.7122e-06, + "loss": 1.2533512115478516, + "step": 604600 + }, + { + "epoch": 80.62666666666667, + "grad_norm": 0.8987104296684265, + "learning_rate": 9.705533333333334e-06, + "loss": 1.2551846313476562, + "step": 604700 + }, + { + "epoch": 80.64, + "grad_norm": 0.8422402143478394, + "learning_rate": 9.698866666666668e-06, + "loss": 1.2600907135009765, + "step": 604800 + }, + { + "epoch": 80.65333333333334, + "grad_norm": 0.9396112561225891, + "learning_rate": 9.6922e-06, + "loss": 1.2541912841796874, + "step": 604900 + }, + { + "epoch": 80.66666666666667, + "grad_norm": 0.8763729333877563, + "learning_rate": 9.685533333333334e-06, + "loss": 1.255435791015625, + "step": 605000 + }, + { + "epoch": 80.68, + "grad_norm": 0.9729053974151611, + "learning_rate": 9.678866666666666e-06, + "loss": 1.2559229278564452, + "step": 605100 + }, + { + "epoch": 80.69333333333333, + "grad_norm": 0.9245437979698181, + "learning_rate": 9.6722e-06, + "loss": 1.2618405151367187, + "step": 605200 + }, + { + "epoch": 80.70666666666666, + "grad_norm": 0.9225579500198364, + "learning_rate": 9.665600000000001e-06, + "loss": 1.25842529296875, + "step": 605300 + }, + { + "epoch": 80.72, + "grad_norm": 0.8995950222015381, + "learning_rate": 9.658933333333333e-06, + "loss": 1.2611757659912108, + "step": 605400 + }, + { + "epoch": 80.73333333333333, + "grad_norm": 0.8765818476676941, + "learning_rate": 9.652266666666667e-06, + "loss": 1.2570573425292968, + "step": 605500 + }, + { + "epoch": 80.74666666666667, + "grad_norm": 0.8758502006530762, + "learning_rate": 9.645600000000001e-06, + "loss": 1.2593089294433595, + "step": 605600 + }, + { + "epoch": 80.76, + "grad_norm": 0.9053191542625427, + "learning_rate": 9.638933333333334e-06, + "loss": 1.2571390533447266, + "step": 605700 + }, + { + "epoch": 80.77333333333333, + "grad_norm": 0.8636969327926636, + "learning_rate": 9.632266666666668e-06, + "loss": 1.259483871459961, + "step": 605800 + }, + { + "epoch": 80.78666666666666, + "grad_norm": 0.9549551010131836, + "learning_rate": 9.6256e-06, + "loss": 1.2597525787353516, + "step": 605900 + }, + { + "epoch": 80.8, + "grad_norm": 0.8548250794410706, + "learning_rate": 9.618933333333334e-06, + "loss": 1.2577105712890626, + "step": 606000 + }, + { + "epoch": 80.81333333333333, + "grad_norm": 0.9075458645820618, + "learning_rate": 9.612266666666666e-06, + "loss": 1.2630501556396485, + "step": 606100 + }, + { + "epoch": 80.82666666666667, + "grad_norm": 0.9351378083229065, + "learning_rate": 9.6056e-06, + "loss": 1.2618649291992188, + "step": 606200 + }, + { + "epoch": 80.84, + "grad_norm": 0.8505954742431641, + "learning_rate": 9.598933333333334e-06, + "loss": 1.2608261108398438, + "step": 606300 + }, + { + "epoch": 80.85333333333334, + "grad_norm": 0.8611586093902588, + "learning_rate": 9.592266666666668e-06, + "loss": 1.2637861633300782, + "step": 606400 + }, + { + "epoch": 80.86666666666666, + "grad_norm": 0.8829309940338135, + "learning_rate": 9.5856e-06, + "loss": 1.2620301055908203, + "step": 606500 + }, + { + "epoch": 80.88, + "grad_norm": 0.906769335269928, + "learning_rate": 9.578933333333334e-06, + "loss": 1.2620735168457031, + "step": 606600 + }, + { + "epoch": 80.89333333333333, + "grad_norm": 0.896776020526886, + "learning_rate": 9.572266666666666e-06, + "loss": 1.263584213256836, + "step": 606700 + }, + { + "epoch": 80.90666666666667, + "grad_norm": 0.887713611125946, + "learning_rate": 9.5656e-06, + "loss": 1.264889907836914, + "step": 606800 + }, + { + "epoch": 80.92, + "grad_norm": 0.9247974753379822, + "learning_rate": 9.558933333333334e-06, + "loss": 1.2628305053710938, + "step": 606900 + }, + { + "epoch": 80.93333333333334, + "grad_norm": 0.9135413765907288, + "learning_rate": 9.552266666666668e-06, + "loss": 1.2610269165039063, + "step": 607000 + }, + { + "epoch": 80.94666666666667, + "grad_norm": 0.816784143447876, + "learning_rate": 9.5456e-06, + "loss": 1.264756851196289, + "step": 607100 + }, + { + "epoch": 80.96, + "grad_norm": 0.8519019484519958, + "learning_rate": 9.538933333333335e-06, + "loss": 1.2676949310302734, + "step": 607200 + }, + { + "epoch": 80.97333333333333, + "grad_norm": 0.8847300410270691, + "learning_rate": 9.532333333333334e-06, + "loss": 1.2613274383544921, + "step": 607300 + }, + { + "epoch": 80.98666666666666, + "grad_norm": 0.9292627573013306, + "learning_rate": 9.525666666666668e-06, + "loss": 1.264800796508789, + "step": 607400 + }, + { + "epoch": 81.0, + "grad_norm": 0.9245173335075378, + "learning_rate": 9.519e-06, + "loss": 1.2614967346191406, + "step": 607500 + }, + { + "epoch": 81.01333333333334, + "grad_norm": 0.8275742530822754, + "learning_rate": 9.512333333333334e-06, + "loss": 1.2391834259033203, + "step": 607600 + }, + { + "epoch": 81.02666666666667, + "grad_norm": 0.9047415256500244, + "learning_rate": 9.505666666666666e-06, + "loss": 1.2392681884765624, + "step": 607700 + }, + { + "epoch": 81.04, + "grad_norm": 0.8522070646286011, + "learning_rate": 9.499000000000002e-06, + "loss": 1.2342119598388672, + "step": 607800 + }, + { + "epoch": 81.05333333333333, + "grad_norm": 0.9225237369537354, + "learning_rate": 9.492333333333334e-06, + "loss": 1.240270004272461, + "step": 607900 + }, + { + "epoch": 81.06666666666666, + "grad_norm": 0.877410352230072, + "learning_rate": 9.485666666666668e-06, + "loss": 1.2419137573242187, + "step": 608000 + }, + { + "epoch": 81.08, + "grad_norm": 0.895682156085968, + "learning_rate": 9.479e-06, + "loss": 1.2361355590820313, + "step": 608100 + }, + { + "epoch": 81.09333333333333, + "grad_norm": 0.9138928055763245, + "learning_rate": 9.472333333333334e-06, + "loss": 1.2378245544433595, + "step": 608200 + }, + { + "epoch": 81.10666666666667, + "grad_norm": 0.8844442963600159, + "learning_rate": 9.465666666666666e-06, + "loss": 1.238951644897461, + "step": 608300 + }, + { + "epoch": 81.12, + "grad_norm": 0.9086583852767944, + "learning_rate": 9.459e-06, + "loss": 1.238919219970703, + "step": 608400 + }, + { + "epoch": 81.13333333333334, + "grad_norm": 0.9068462252616882, + "learning_rate": 9.452333333333334e-06, + "loss": 1.2433626556396484, + "step": 608500 + }, + { + "epoch": 81.14666666666666, + "grad_norm": 0.8883899450302124, + "learning_rate": 9.445666666666667e-06, + "loss": 1.2401612091064453, + "step": 608600 + }, + { + "epoch": 81.16, + "grad_norm": 0.8467079401016235, + "learning_rate": 9.439e-06, + "loss": 1.2381580352783204, + "step": 608700 + }, + { + "epoch": 81.17333333333333, + "grad_norm": 0.9207153916358948, + "learning_rate": 9.432333333333333e-06, + "loss": 1.2427813720703125, + "step": 608800 + }, + { + "epoch": 81.18666666666667, + "grad_norm": 0.912255585193634, + "learning_rate": 9.425666666666667e-06, + "loss": 1.240965805053711, + "step": 608900 + }, + { + "epoch": 81.2, + "grad_norm": 0.9188990592956543, + "learning_rate": 9.419e-06, + "loss": 1.2408465576171874, + "step": 609000 + }, + { + "epoch": 81.21333333333334, + "grad_norm": 0.9256595373153687, + "learning_rate": 9.412333333333335e-06, + "loss": 1.2405252075195312, + "step": 609100 + }, + { + "epoch": 81.22666666666667, + "grad_norm": 0.9291117787361145, + "learning_rate": 9.405666666666667e-06, + "loss": 1.245336685180664, + "step": 609200 + }, + { + "epoch": 81.24, + "grad_norm": 0.9023730158805847, + "learning_rate": 9.399066666666668e-06, + "loss": 1.247289276123047, + "step": 609300 + }, + { + "epoch": 81.25333333333333, + "grad_norm": 0.8725359439849854, + "learning_rate": 9.3924e-06, + "loss": 1.242955322265625, + "step": 609400 + }, + { + "epoch": 81.26666666666667, + "grad_norm": 0.93658846616745, + "learning_rate": 9.385733333333334e-06, + "loss": 1.2417597198486328, + "step": 609500 + }, + { + "epoch": 81.28, + "grad_norm": 0.8989132642745972, + "learning_rate": 9.379066666666666e-06, + "loss": 1.2406790924072266, + "step": 609600 + }, + { + "epoch": 81.29333333333334, + "grad_norm": 0.8773770928382874, + "learning_rate": 9.3724e-06, + "loss": 1.2456909942626953, + "step": 609700 + }, + { + "epoch": 81.30666666666667, + "grad_norm": 0.9248537421226501, + "learning_rate": 9.365733333333333e-06, + "loss": 1.2468321990966797, + "step": 609800 + }, + { + "epoch": 81.32, + "grad_norm": 0.9012039303779602, + "learning_rate": 9.359066666666668e-06, + "loss": 1.2451560974121094, + "step": 609900 + }, + { + "epoch": 81.33333333333333, + "grad_norm": 0.8763637542724609, + "learning_rate": 9.3524e-06, + "loss": 1.2435193634033204, + "step": 610000 + }, + { + "epoch": 81.34666666666666, + "grad_norm": 0.9104039669036865, + "learning_rate": 9.345733333333334e-06, + "loss": 1.2489257049560547, + "step": 610100 + }, + { + "epoch": 81.36, + "grad_norm": 0.9854726195335388, + "learning_rate": 9.339066666666667e-06, + "loss": 1.2438234710693359, + "step": 610200 + }, + { + "epoch": 81.37333333333333, + "grad_norm": 0.8832777142524719, + "learning_rate": 9.3324e-06, + "loss": 1.2450476837158204, + "step": 610300 + }, + { + "epoch": 81.38666666666667, + "grad_norm": 0.8616676926612854, + "learning_rate": 9.325733333333333e-06, + "loss": 1.24720703125, + "step": 610400 + }, + { + "epoch": 81.4, + "grad_norm": 0.8933054208755493, + "learning_rate": 9.319066666666667e-06, + "loss": 1.248559799194336, + "step": 610500 + }, + { + "epoch": 81.41333333333333, + "grad_norm": 0.9103077054023743, + "learning_rate": 9.3124e-06, + "loss": 1.2462962341308594, + "step": 610600 + }, + { + "epoch": 81.42666666666666, + "grad_norm": 0.8590754866600037, + "learning_rate": 9.305733333333335e-06, + "loss": 1.246546859741211, + "step": 610700 + }, + { + "epoch": 81.44, + "grad_norm": 0.9296621084213257, + "learning_rate": 9.299066666666667e-06, + "loss": 1.2495183563232422, + "step": 610800 + }, + { + "epoch": 81.45333333333333, + "grad_norm": 0.9122717380523682, + "learning_rate": 9.292400000000001e-06, + "loss": 1.2485328674316407, + "step": 610900 + }, + { + "epoch": 81.46666666666667, + "grad_norm": 0.894951343536377, + "learning_rate": 9.285733333333333e-06, + "loss": 1.2503672790527345, + "step": 611000 + }, + { + "epoch": 81.48, + "grad_norm": 0.8775086402893066, + "learning_rate": 9.279066666666667e-06, + "loss": 1.2496353149414063, + "step": 611100 + }, + { + "epoch": 81.49333333333334, + "grad_norm": 0.9073229432106018, + "learning_rate": 9.272400000000001e-06, + "loss": 1.2485159301757813, + "step": 611200 + }, + { + "epoch": 81.50666666666666, + "grad_norm": 0.8721373081207275, + "learning_rate": 9.2658e-06, + "loss": 1.249385452270508, + "step": 611300 + }, + { + "epoch": 81.52, + "grad_norm": 0.8617298007011414, + "learning_rate": 9.259133333333334e-06, + "loss": 1.2492945861816407, + "step": 611400 + }, + { + "epoch": 81.53333333333333, + "grad_norm": 0.9376047253608704, + "learning_rate": 9.252466666666668e-06, + "loss": 1.2484706878662108, + "step": 611500 + }, + { + "epoch": 81.54666666666667, + "grad_norm": 0.9316357970237732, + "learning_rate": 9.2458e-06, + "loss": 1.2509843444824218, + "step": 611600 + }, + { + "epoch": 81.56, + "grad_norm": 0.9092914462089539, + "learning_rate": 9.239133333333334e-06, + "loss": 1.252373046875, + "step": 611700 + }, + { + "epoch": 81.57333333333334, + "grad_norm": 0.9230238199234009, + "learning_rate": 9.232466666666667e-06, + "loss": 1.2522103881835938, + "step": 611800 + }, + { + "epoch": 81.58666666666667, + "grad_norm": 0.9527510404586792, + "learning_rate": 9.2258e-06, + "loss": 1.2519025421142578, + "step": 611900 + }, + { + "epoch": 81.6, + "grad_norm": 0.9313916563987732, + "learning_rate": 9.219133333333333e-06, + "loss": 1.2490794372558593, + "step": 612000 + }, + { + "epoch": 81.61333333333333, + "grad_norm": 0.9925395846366882, + "learning_rate": 9.212466666666667e-06, + "loss": 1.2542919921875, + "step": 612100 + }, + { + "epoch": 81.62666666666667, + "grad_norm": 0.9218894839286804, + "learning_rate": 9.205800000000001e-06, + "loss": 1.2550067138671874, + "step": 612200 + }, + { + "epoch": 81.64, + "grad_norm": 0.9411338567733765, + "learning_rate": 9.199133333333333e-06, + "loss": 1.249119644165039, + "step": 612300 + }, + { + "epoch": 81.65333333333334, + "grad_norm": 0.9338614344596863, + "learning_rate": 9.192466666666667e-06, + "loss": 1.2516092681884765, + "step": 612400 + }, + { + "epoch": 81.66666666666667, + "grad_norm": 0.984487771987915, + "learning_rate": 9.1858e-06, + "loss": 1.253871078491211, + "step": 612500 + }, + { + "epoch": 81.68, + "grad_norm": 0.8881129026412964, + "learning_rate": 9.179133333333333e-06, + "loss": 1.2527835845947266, + "step": 612600 + }, + { + "epoch": 81.69333333333333, + "grad_norm": 0.9168439507484436, + "learning_rate": 9.172466666666667e-06, + "loss": 1.2484764862060547, + "step": 612700 + }, + { + "epoch": 81.70666666666666, + "grad_norm": 0.8874577283859253, + "learning_rate": 9.165800000000001e-06, + "loss": 1.2515900421142578, + "step": 612800 + }, + { + "epoch": 81.72, + "grad_norm": 0.905847430229187, + "learning_rate": 9.159133333333334e-06, + "loss": 1.2533546447753907, + "step": 612900 + }, + { + "epoch": 81.73333333333333, + "grad_norm": 0.8582006096839905, + "learning_rate": 9.152466666666667e-06, + "loss": 1.2524093627929687, + "step": 613000 + }, + { + "epoch": 81.74666666666667, + "grad_norm": 0.9305291175842285, + "learning_rate": 9.1458e-06, + "loss": 1.2540251922607422, + "step": 613100 + }, + { + "epoch": 81.76, + "grad_norm": 0.9581021666526794, + "learning_rate": 9.139133333333334e-06, + "loss": 1.2542661285400392, + "step": 613200 + }, + { + "epoch": 81.77333333333333, + "grad_norm": 0.8602609634399414, + "learning_rate": 9.132533333333333e-06, + "loss": 1.250102767944336, + "step": 613300 + }, + { + "epoch": 81.78666666666666, + "grad_norm": 0.9307783842086792, + "learning_rate": 9.125866666666667e-06, + "loss": 1.25496826171875, + "step": 613400 + }, + { + "epoch": 81.8, + "grad_norm": 0.9519327282905579, + "learning_rate": 9.1192e-06, + "loss": 1.2568404388427734, + "step": 613500 + }, + { + "epoch": 81.81333333333333, + "grad_norm": 0.9594677090644836, + "learning_rate": 9.112533333333335e-06, + "loss": 1.2542708587646485, + "step": 613600 + }, + { + "epoch": 81.82666666666667, + "grad_norm": 0.9347852468490601, + "learning_rate": 9.105866666666667e-06, + "loss": 1.2561700439453125, + "step": 613700 + }, + { + "epoch": 81.84, + "grad_norm": 0.9031361937522888, + "learning_rate": 9.099200000000001e-06, + "loss": 1.250828399658203, + "step": 613800 + }, + { + "epoch": 81.85333333333334, + "grad_norm": 0.9028738141059875, + "learning_rate": 9.092533333333333e-06, + "loss": 1.2556254577636718, + "step": 613900 + }, + { + "epoch": 81.86666666666666, + "grad_norm": 0.8947298526763916, + "learning_rate": 9.085866666666667e-06, + "loss": 1.2577997589111327, + "step": 614000 + }, + { + "epoch": 81.88, + "grad_norm": 0.9742893576622009, + "learning_rate": 9.0792e-06, + "loss": 1.2556832122802735, + "step": 614100 + }, + { + "epoch": 81.89333333333333, + "grad_norm": 0.9164856672286987, + "learning_rate": 9.072533333333335e-06, + "loss": 1.2557017517089843, + "step": 614200 + }, + { + "epoch": 81.90666666666667, + "grad_norm": 0.915895938873291, + "learning_rate": 9.065866666666667e-06, + "loss": 1.2530562591552734, + "step": 614300 + }, + { + "epoch": 81.92, + "grad_norm": 0.8925107717514038, + "learning_rate": 9.059200000000001e-06, + "loss": 1.26068115234375, + "step": 614400 + }, + { + "epoch": 81.93333333333334, + "grad_norm": 0.8939207196235657, + "learning_rate": 9.052533333333334e-06, + "loss": 1.2526610565185547, + "step": 614500 + }, + { + "epoch": 81.94666666666667, + "grad_norm": 0.8300981521606445, + "learning_rate": 9.045866666666668e-06, + "loss": 1.2572245025634765, + "step": 614600 + }, + { + "epoch": 81.96, + "grad_norm": 0.8693681955337524, + "learning_rate": 9.0392e-06, + "loss": 1.2559279632568359, + "step": 614700 + }, + { + "epoch": 81.97333333333333, + "grad_norm": 0.8896282315254211, + "learning_rate": 9.032533333333334e-06, + "loss": 1.2625821685791017, + "step": 614800 + }, + { + "epoch": 81.98666666666666, + "grad_norm": 0.8908337354660034, + "learning_rate": 9.025866666666668e-06, + "loss": 1.2559323120117187, + "step": 614900 + }, + { + "epoch": 82.0, + "grad_norm": 0.9439942836761475, + "learning_rate": 9.0192e-06, + "loss": 1.2595707702636718, + "step": 615000 + }, + { + "epoch": 82.01333333333334, + "grad_norm": 0.9085642099380493, + "learning_rate": 9.012533333333334e-06, + "loss": 1.234801025390625, + "step": 615100 + }, + { + "epoch": 82.02666666666667, + "grad_norm": 0.86478590965271, + "learning_rate": 9.005866666666666e-06, + "loss": 1.2301112365722657, + "step": 615200 + }, + { + "epoch": 82.04, + "grad_norm": 0.8402786254882812, + "learning_rate": 8.999266666666667e-06, + "loss": 1.2340145111083984, + "step": 615300 + }, + { + "epoch": 82.05333333333333, + "grad_norm": 0.9000765681266785, + "learning_rate": 8.992600000000001e-06, + "loss": 1.234165496826172, + "step": 615400 + }, + { + "epoch": 82.06666666666666, + "grad_norm": 0.8875935673713684, + "learning_rate": 8.985933333333333e-06, + "loss": 1.2338397216796875, + "step": 615500 + }, + { + "epoch": 82.08, + "grad_norm": 0.8624498248100281, + "learning_rate": 8.979266666666667e-06, + "loss": 1.2306690216064453, + "step": 615600 + }, + { + "epoch": 82.09333333333333, + "grad_norm": 0.8691593408584595, + "learning_rate": 8.972600000000001e-06, + "loss": 1.2350591278076173, + "step": 615700 + }, + { + "epoch": 82.10666666666667, + "grad_norm": 0.9431705474853516, + "learning_rate": 8.965933333333333e-06, + "loss": 1.2306092071533203, + "step": 615800 + }, + { + "epoch": 82.12, + "grad_norm": 0.8544008135795593, + "learning_rate": 8.959266666666667e-06, + "loss": 1.2384963989257813, + "step": 615900 + }, + { + "epoch": 82.13333333333334, + "grad_norm": 0.9354866147041321, + "learning_rate": 8.9526e-06, + "loss": 1.2398062896728517, + "step": 616000 + }, + { + "epoch": 82.14666666666666, + "grad_norm": 0.8743143677711487, + "learning_rate": 8.945933333333334e-06, + "loss": 1.2414376068115234, + "step": 616100 + }, + { + "epoch": 82.16, + "grad_norm": 0.8810702562332153, + "learning_rate": 8.939266666666666e-06, + "loss": 1.2354586029052734, + "step": 616200 + }, + { + "epoch": 82.17333333333333, + "grad_norm": 0.8954576849937439, + "learning_rate": 8.932600000000002e-06, + "loss": 1.2339041137695312, + "step": 616300 + }, + { + "epoch": 82.18666666666667, + "grad_norm": 0.9300366640090942, + "learning_rate": 8.925933333333334e-06, + "loss": 1.2386576843261718, + "step": 616400 + }, + { + "epoch": 82.2, + "grad_norm": 0.9427330493927002, + "learning_rate": 8.919266666666668e-06, + "loss": 1.2405809020996095, + "step": 616500 + }, + { + "epoch": 82.21333333333334, + "grad_norm": 0.9200528264045715, + "learning_rate": 8.9126e-06, + "loss": 1.2397397613525392, + "step": 616600 + }, + { + "epoch": 82.22666666666667, + "grad_norm": 0.9477024078369141, + "learning_rate": 8.905933333333334e-06, + "loss": 1.2361534118652344, + "step": 616700 + }, + { + "epoch": 82.24, + "grad_norm": 0.860318660736084, + "learning_rate": 8.899266666666666e-06, + "loss": 1.24165771484375, + "step": 616800 + }, + { + "epoch": 82.25333333333333, + "grad_norm": 0.8930957317352295, + "learning_rate": 8.8926e-06, + "loss": 1.240411376953125, + "step": 616900 + }, + { + "epoch": 82.26666666666667, + "grad_norm": 0.8713201284408569, + "learning_rate": 8.885933333333334e-06, + "loss": 1.2389635467529296, + "step": 617000 + }, + { + "epoch": 82.28, + "grad_norm": 0.8821374773979187, + "learning_rate": 8.879266666666668e-06, + "loss": 1.240754165649414, + "step": 617100 + }, + { + "epoch": 82.29333333333334, + "grad_norm": 0.8835667967796326, + "learning_rate": 8.8726e-06, + "loss": 1.2408916473388671, + "step": 617200 + }, + { + "epoch": 82.30666666666667, + "grad_norm": 0.878227949142456, + "learning_rate": 8.866000000000001e-06, + "loss": 1.239891357421875, + "step": 617300 + }, + { + "epoch": 82.32, + "grad_norm": 0.9137305021286011, + "learning_rate": 8.859333333333333e-06, + "loss": 1.2434058380126953, + "step": 617400 + }, + { + "epoch": 82.33333333333333, + "grad_norm": 0.9233280420303345, + "learning_rate": 8.852666666666667e-06, + "loss": 1.240920867919922, + "step": 617500 + }, + { + "epoch": 82.34666666666666, + "grad_norm": 0.9034508466720581, + "learning_rate": 8.846e-06, + "loss": 1.2437106323242189, + "step": 617600 + }, + { + "epoch": 82.36, + "grad_norm": 0.9077682495117188, + "learning_rate": 8.839333333333334e-06, + "loss": 1.2439752960205077, + "step": 617700 + }, + { + "epoch": 82.37333333333333, + "grad_norm": 0.9524446725845337, + "learning_rate": 8.832666666666668e-06, + "loss": 1.2423672485351562, + "step": 617800 + }, + { + "epoch": 82.38666666666667, + "grad_norm": 0.8799779415130615, + "learning_rate": 8.826000000000002e-06, + "loss": 1.2455381011962892, + "step": 617900 + }, + { + "epoch": 82.4, + "grad_norm": 0.9285022616386414, + "learning_rate": 8.819333333333334e-06, + "loss": 1.2448921966552735, + "step": 618000 + }, + { + "epoch": 82.41333333333333, + "grad_norm": 0.9084222912788391, + "learning_rate": 8.812666666666668e-06, + "loss": 1.2376979064941407, + "step": 618100 + }, + { + "epoch": 82.42666666666666, + "grad_norm": 0.8648841381072998, + "learning_rate": 8.806e-06, + "loss": 1.2406005859375, + "step": 618200 + }, + { + "epoch": 82.44, + "grad_norm": 0.9781367778778076, + "learning_rate": 8.799333333333334e-06, + "loss": 1.243892593383789, + "step": 618300 + }, + { + "epoch": 82.45333333333333, + "grad_norm": 0.8798574805259705, + "learning_rate": 8.792666666666666e-06, + "loss": 1.2451769256591796, + "step": 618400 + }, + { + "epoch": 82.46666666666667, + "grad_norm": 0.9308679103851318, + "learning_rate": 8.786e-06, + "loss": 1.2392099761962891, + "step": 618500 + }, + { + "epoch": 82.48, + "grad_norm": 0.9308741688728333, + "learning_rate": 8.779333333333334e-06, + "loss": 1.2419159698486328, + "step": 618600 + }, + { + "epoch": 82.49333333333334, + "grad_norm": 0.9221790432929993, + "learning_rate": 8.772666666666666e-06, + "loss": 1.2452362060546875, + "step": 618700 + }, + { + "epoch": 82.50666666666666, + "grad_norm": 0.8636195063591003, + "learning_rate": 8.766e-06, + "loss": 1.2443165588378906, + "step": 618800 + }, + { + "epoch": 82.52, + "grad_norm": 0.8592165112495422, + "learning_rate": 8.759333333333333e-06, + "loss": 1.2440619659423828, + "step": 618900 + }, + { + "epoch": 82.53333333333333, + "grad_norm": 0.9434940814971924, + "learning_rate": 8.752666666666667e-06, + "loss": 1.2442166900634766, + "step": 619000 + }, + { + "epoch": 82.54666666666667, + "grad_norm": 0.9361331462860107, + "learning_rate": 8.746e-06, + "loss": 1.247313461303711, + "step": 619100 + }, + { + "epoch": 82.56, + "grad_norm": 0.9202352166175842, + "learning_rate": 8.739333333333335e-06, + "loss": 1.240821304321289, + "step": 619200 + }, + { + "epoch": 82.57333333333334, + "grad_norm": 0.9500649571418762, + "learning_rate": 8.732733333333334e-06, + "loss": 1.2460474395751953, + "step": 619300 + }, + { + "epoch": 82.58666666666667, + "grad_norm": 0.9258289933204651, + "learning_rate": 8.726066666666668e-06, + "loss": 1.2472043609619141, + "step": 619400 + }, + { + "epoch": 82.6, + "grad_norm": 0.9140313267707825, + "learning_rate": 8.7194e-06, + "loss": 1.2448184204101562, + "step": 619500 + }, + { + "epoch": 82.61333333333333, + "grad_norm": 0.9324513077735901, + "learning_rate": 8.712733333333334e-06, + "loss": 1.2494194030761718, + "step": 619600 + }, + { + "epoch": 82.62666666666667, + "grad_norm": 0.9109006524085999, + "learning_rate": 8.706066666666666e-06, + "loss": 1.247740707397461, + "step": 619700 + }, + { + "epoch": 82.64, + "grad_norm": 0.9407756328582764, + "learning_rate": 8.6994e-06, + "loss": 1.2482675170898438, + "step": 619800 + }, + { + "epoch": 82.65333333333334, + "grad_norm": 0.9115416407585144, + "learning_rate": 8.692733333333334e-06, + "loss": 1.2482878112792968, + "step": 619900 + }, + { + "epoch": 82.66666666666667, + "grad_norm": 0.9408479928970337, + "learning_rate": 8.686066666666668e-06, + "loss": 1.2521448516845703, + "step": 620000 + }, + { + "epoch": 82.68, + "grad_norm": 0.8845256567001343, + "learning_rate": 8.6794e-06, + "loss": 1.2493247985839844, + "step": 620100 + }, + { + "epoch": 82.69333333333333, + "grad_norm": 0.8882789015769958, + "learning_rate": 8.672733333333334e-06, + "loss": 1.2499993896484376, + "step": 620200 + }, + { + "epoch": 82.70666666666666, + "grad_norm": 0.8768792152404785, + "learning_rate": 8.666066666666667e-06, + "loss": 1.2518183135986327, + "step": 620300 + }, + { + "epoch": 82.72, + "grad_norm": 0.9239054322242737, + "learning_rate": 8.6594e-06, + "loss": 1.2470800018310546, + "step": 620400 + }, + { + "epoch": 82.73333333333333, + "grad_norm": 0.9029996991157532, + "learning_rate": 8.652733333333333e-06, + "loss": 1.250694808959961, + "step": 620500 + }, + { + "epoch": 82.74666666666667, + "grad_norm": 0.8475874662399292, + "learning_rate": 8.646066666666668e-06, + "loss": 1.2475482940673828, + "step": 620600 + }, + { + "epoch": 82.76, + "grad_norm": 0.9280046820640564, + "learning_rate": 8.6394e-06, + "loss": 1.247471923828125, + "step": 620700 + }, + { + "epoch": 82.77333333333333, + "grad_norm": 0.8895213603973389, + "learning_rate": 8.632733333333335e-06, + "loss": 1.249181594848633, + "step": 620800 + }, + { + "epoch": 82.78666666666666, + "grad_norm": 0.9662532806396484, + "learning_rate": 8.626066666666667e-06, + "loss": 1.2477493286132812, + "step": 620900 + }, + { + "epoch": 82.8, + "grad_norm": 0.9350543022155762, + "learning_rate": 8.619400000000001e-06, + "loss": 1.2516327667236329, + "step": 621000 + }, + { + "epoch": 82.81333333333333, + "grad_norm": 0.9173975586891174, + "learning_rate": 8.612733333333333e-06, + "loss": 1.2521589660644532, + "step": 621100 + }, + { + "epoch": 82.82666666666667, + "grad_norm": 0.9485138654708862, + "learning_rate": 8.606066666666667e-06, + "loss": 1.2502504730224608, + "step": 621200 + }, + { + "epoch": 82.84, + "grad_norm": 0.9641520977020264, + "learning_rate": 8.599466666666666e-06, + "loss": 1.2493783569335937, + "step": 621300 + }, + { + "epoch": 82.85333333333334, + "grad_norm": 0.9128257036209106, + "learning_rate": 8.5928e-06, + "loss": 1.2476416778564454, + "step": 621400 + }, + { + "epoch": 82.86666666666666, + "grad_norm": 0.926476001739502, + "learning_rate": 8.586133333333334e-06, + "loss": 1.2498722076416016, + "step": 621500 + }, + { + "epoch": 82.88, + "grad_norm": 0.8476603031158447, + "learning_rate": 8.579466666666668e-06, + "loss": 1.2490251922607423, + "step": 621600 + }, + { + "epoch": 82.89333333333333, + "grad_norm": 0.9261386394500732, + "learning_rate": 8.5728e-06, + "loss": 1.2508720397949218, + "step": 621700 + }, + { + "epoch": 82.90666666666667, + "grad_norm": 0.9281954765319824, + "learning_rate": 8.566133333333334e-06, + "loss": 1.2504344177246094, + "step": 621800 + }, + { + "epoch": 82.92, + "grad_norm": 0.9179771542549133, + "learning_rate": 8.559466666666667e-06, + "loss": 1.2538750457763672, + "step": 621900 + }, + { + "epoch": 82.93333333333334, + "grad_norm": 0.931770920753479, + "learning_rate": 8.5528e-06, + "loss": 1.251114959716797, + "step": 622000 + }, + { + "epoch": 82.94666666666667, + "grad_norm": 0.9326673150062561, + "learning_rate": 8.546133333333334e-06, + "loss": 1.2516678619384765, + "step": 622100 + }, + { + "epoch": 82.96, + "grad_norm": 0.9263719320297241, + "learning_rate": 8.539466666666667e-06, + "loss": 1.2495791625976562, + "step": 622200 + }, + { + "epoch": 82.97333333333333, + "grad_norm": 0.902750551700592, + "learning_rate": 8.5328e-06, + "loss": 1.2547737884521484, + "step": 622300 + }, + { + "epoch": 82.98666666666666, + "grad_norm": 0.9616686105728149, + "learning_rate": 8.526133333333333e-06, + "loss": 1.2510566711425781, + "step": 622400 + }, + { + "epoch": 83.0, + "grad_norm": 0.9818671941757202, + "learning_rate": 8.519466666666667e-06, + "loss": 1.255392837524414, + "step": 622500 + }, + { + "epoch": 83.01333333333334, + "grad_norm": 0.8741009831428528, + "learning_rate": 8.5128e-06, + "loss": 1.2268238830566407, + "step": 622600 + }, + { + "epoch": 83.02666666666667, + "grad_norm": 0.8773664236068726, + "learning_rate": 8.506133333333333e-06, + "loss": 1.2288787078857422, + "step": 622700 + }, + { + "epoch": 83.04, + "grad_norm": 0.896050214767456, + "learning_rate": 8.499466666666667e-06, + "loss": 1.2286920166015625, + "step": 622800 + }, + { + "epoch": 83.05333333333333, + "grad_norm": 0.8688726425170898, + "learning_rate": 8.492800000000001e-06, + "loss": 1.2317049407958984, + "step": 622900 + }, + { + "epoch": 83.06666666666666, + "grad_norm": 0.8627607226371765, + "learning_rate": 8.486133333333333e-06, + "loss": 1.2319934844970704, + "step": 623000 + }, + { + "epoch": 83.08, + "grad_norm": 0.9010234475135803, + "learning_rate": 8.479466666666667e-06, + "loss": 1.227967758178711, + "step": 623100 + }, + { + "epoch": 83.09333333333333, + "grad_norm": 0.9134891629219055, + "learning_rate": 8.4728e-06, + "loss": 1.2302108001708985, + "step": 623200 + }, + { + "epoch": 83.10666666666667, + "grad_norm": 0.8885038495063782, + "learning_rate": 8.466133333333334e-06, + "loss": 1.2306111145019532, + "step": 623300 + }, + { + "epoch": 83.12, + "grad_norm": 0.8855066299438477, + "learning_rate": 8.459533333333333e-06, + "loss": 1.2339430236816407, + "step": 623400 + }, + { + "epoch": 83.13333333333334, + "grad_norm": 0.8828930258750916, + "learning_rate": 8.452866666666667e-06, + "loss": 1.2353226470947265, + "step": 623500 + }, + { + "epoch": 83.14666666666666, + "grad_norm": 0.875651478767395, + "learning_rate": 8.4462e-06, + "loss": 1.2287565612792968, + "step": 623600 + }, + { + "epoch": 83.16, + "grad_norm": 0.8633849024772644, + "learning_rate": 8.439533333333335e-06, + "loss": 1.2340455627441407, + "step": 623700 + }, + { + "epoch": 83.17333333333333, + "grad_norm": 0.8406652212142944, + "learning_rate": 8.432866666666667e-06, + "loss": 1.2317752838134766, + "step": 623800 + }, + { + "epoch": 83.18666666666667, + "grad_norm": 0.8680077791213989, + "learning_rate": 8.4262e-06, + "loss": 1.2286119079589843, + "step": 623900 + }, + { + "epoch": 83.2, + "grad_norm": 0.8827568888664246, + "learning_rate": 8.419533333333333e-06, + "loss": 1.2330582427978516, + "step": 624000 + }, + { + "epoch": 83.21333333333334, + "grad_norm": 0.8410494923591614, + "learning_rate": 8.412866666666667e-06, + "loss": 1.2319648742675782, + "step": 624100 + }, + { + "epoch": 83.22666666666667, + "grad_norm": 0.945569634437561, + "learning_rate": 8.406200000000001e-06, + "loss": 1.2348339080810546, + "step": 624200 + }, + { + "epoch": 83.24, + "grad_norm": 0.9145014882087708, + "learning_rate": 8.399533333333335e-06, + "loss": 1.2309622192382812, + "step": 624300 + }, + { + "epoch": 83.25333333333333, + "grad_norm": 0.8928866982460022, + "learning_rate": 8.392866666666667e-06, + "loss": 1.2331744384765626, + "step": 624400 + }, + { + "epoch": 83.26666666666667, + "grad_norm": 0.9226345419883728, + "learning_rate": 8.386200000000001e-06, + "loss": 1.2304218292236329, + "step": 624500 + }, + { + "epoch": 83.28, + "grad_norm": 0.9208539128303528, + "learning_rate": 8.379533333333333e-06, + "loss": 1.2353579711914062, + "step": 624600 + }, + { + "epoch": 83.29333333333334, + "grad_norm": 0.8835161328315735, + "learning_rate": 8.372866666666667e-06, + "loss": 1.2308840942382813, + "step": 624700 + }, + { + "epoch": 83.30666666666667, + "grad_norm": 0.9109699130058289, + "learning_rate": 8.3662e-06, + "loss": 1.2373240661621094, + "step": 624800 + }, + { + "epoch": 83.32, + "grad_norm": 0.8914778232574463, + "learning_rate": 8.359533333333334e-06, + "loss": 1.2385607147216797, + "step": 624900 + }, + { + "epoch": 83.33333333333333, + "grad_norm": 0.9099097847938538, + "learning_rate": 8.352866666666668e-06, + "loss": 1.2351886749267578, + "step": 625000 + }, + { + "epoch": 83.34666666666666, + "grad_norm": 0.9224347472190857, + "learning_rate": 8.3462e-06, + "loss": 1.239847412109375, + "step": 625100 + }, + { + "epoch": 83.36, + "grad_norm": 0.8941978216171265, + "learning_rate": 8.339533333333334e-06, + "loss": 1.2408080291748047, + "step": 625200 + }, + { + "epoch": 83.37333333333333, + "grad_norm": 0.9112878441810608, + "learning_rate": 8.332866666666666e-06, + "loss": 1.2382213592529296, + "step": 625300 + }, + { + "epoch": 83.38666666666667, + "grad_norm": 0.8820027112960815, + "learning_rate": 8.326266666666667e-06, + "loss": 1.2374537658691407, + "step": 625400 + }, + { + "epoch": 83.4, + "grad_norm": 0.9008810520172119, + "learning_rate": 8.3196e-06, + "loss": 1.2357157897949218, + "step": 625500 + }, + { + "epoch": 83.41333333333333, + "grad_norm": 0.8950514793395996, + "learning_rate": 8.312933333333333e-06, + "loss": 1.2395166778564453, + "step": 625600 + }, + { + "epoch": 83.42666666666666, + "grad_norm": 0.877662718296051, + "learning_rate": 8.306266666666667e-06, + "loss": 1.2368050384521485, + "step": 625700 + }, + { + "epoch": 83.44, + "grad_norm": 0.8988947868347168, + "learning_rate": 8.299600000000001e-06, + "loss": 1.2367508697509766, + "step": 625800 + }, + { + "epoch": 83.45333333333333, + "grad_norm": 0.8748953342437744, + "learning_rate": 8.292933333333333e-06, + "loss": 1.2388724517822265, + "step": 625900 + }, + { + "epoch": 83.46666666666667, + "grad_norm": 0.937595009803772, + "learning_rate": 8.286266666666667e-06, + "loss": 1.2392095947265624, + "step": 626000 + }, + { + "epoch": 83.48, + "grad_norm": 0.9471210241317749, + "learning_rate": 8.2796e-06, + "loss": 1.236856460571289, + "step": 626100 + }, + { + "epoch": 83.49333333333334, + "grad_norm": 0.8821884393692017, + "learning_rate": 8.272933333333333e-06, + "loss": 1.239179916381836, + "step": 626200 + }, + { + "epoch": 83.50666666666666, + "grad_norm": 0.919651210308075, + "learning_rate": 8.266266666666667e-06, + "loss": 1.2402806854248047, + "step": 626300 + }, + { + "epoch": 83.52, + "grad_norm": 0.9665860533714294, + "learning_rate": 8.259600000000001e-06, + "loss": 1.2379183197021484, + "step": 626400 + }, + { + "epoch": 83.53333333333333, + "grad_norm": 0.8893381357192993, + "learning_rate": 8.252933333333334e-06, + "loss": 1.2422509765625, + "step": 626500 + }, + { + "epoch": 83.54666666666667, + "grad_norm": 0.9082131385803223, + "learning_rate": 8.246266666666668e-06, + "loss": 1.2425847625732422, + "step": 626600 + }, + { + "epoch": 83.56, + "grad_norm": 0.9207640290260315, + "learning_rate": 8.2396e-06, + "loss": 1.2419153594970702, + "step": 626700 + }, + { + "epoch": 83.57333333333334, + "grad_norm": 0.8709291219711304, + "learning_rate": 8.232933333333334e-06, + "loss": 1.2439161682128905, + "step": 626800 + }, + { + "epoch": 83.58666666666667, + "grad_norm": 0.945469856262207, + "learning_rate": 8.226266666666666e-06, + "loss": 1.2438876342773437, + "step": 626900 + }, + { + "epoch": 83.6, + "grad_norm": 0.8752225041389465, + "learning_rate": 8.219600000000002e-06, + "loss": 1.2426612854003907, + "step": 627000 + }, + { + "epoch": 83.61333333333333, + "grad_norm": 0.9232311844825745, + "learning_rate": 8.212933333333334e-06, + "loss": 1.2439415740966797, + "step": 627100 + }, + { + "epoch": 83.62666666666667, + "grad_norm": 0.9110270142555237, + "learning_rate": 8.206266666666668e-06, + "loss": 1.2405470275878907, + "step": 627200 + }, + { + "epoch": 83.64, + "grad_norm": 0.8702139854431152, + "learning_rate": 8.1996e-06, + "loss": 1.2478545379638672, + "step": 627300 + }, + { + "epoch": 83.65333333333334, + "grad_norm": 0.9222458004951477, + "learning_rate": 8.193000000000001e-06, + "loss": 1.2415824127197266, + "step": 627400 + }, + { + "epoch": 83.66666666666667, + "grad_norm": 0.8984431624412537, + "learning_rate": 8.186333333333333e-06, + "loss": 1.2407730102539063, + "step": 627500 + }, + { + "epoch": 83.68, + "grad_norm": 0.9315071702003479, + "learning_rate": 8.179666666666667e-06, + "loss": 1.240757598876953, + "step": 627600 + }, + { + "epoch": 83.69333333333333, + "grad_norm": 0.8998625874519348, + "learning_rate": 8.173e-06, + "loss": 1.2405057525634766, + "step": 627700 + }, + { + "epoch": 83.70666666666666, + "grad_norm": 0.9560902714729309, + "learning_rate": 8.166333333333333e-06, + "loss": 1.2425275421142579, + "step": 627800 + }, + { + "epoch": 83.72, + "grad_norm": 0.9313591718673706, + "learning_rate": 8.159666666666667e-06, + "loss": 1.2417723083496093, + "step": 627900 + }, + { + "epoch": 83.73333333333333, + "grad_norm": 0.8887977600097656, + "learning_rate": 8.153000000000001e-06, + "loss": 1.2461432647705077, + "step": 628000 + }, + { + "epoch": 83.74666666666667, + "grad_norm": 0.8665767908096313, + "learning_rate": 8.146333333333334e-06, + "loss": 1.2395530700683595, + "step": 628100 + }, + { + "epoch": 83.76, + "grad_norm": 0.8512284755706787, + "learning_rate": 8.139666666666668e-06, + "loss": 1.2442801666259766, + "step": 628200 + }, + { + "epoch": 83.77333333333333, + "grad_norm": 0.9400811791419983, + "learning_rate": 8.133e-06, + "loss": 1.244218521118164, + "step": 628300 + }, + { + "epoch": 83.78666666666666, + "grad_norm": 0.9075484275817871, + "learning_rate": 8.126333333333334e-06, + "loss": 1.245132827758789, + "step": 628400 + }, + { + "epoch": 83.8, + "grad_norm": 0.9220568537712097, + "learning_rate": 8.119666666666668e-06, + "loss": 1.2457878875732422, + "step": 628500 + }, + { + "epoch": 83.81333333333333, + "grad_norm": 0.8934618830680847, + "learning_rate": 8.113e-06, + "loss": 1.2488687896728516, + "step": 628600 + }, + { + "epoch": 83.82666666666667, + "grad_norm": 0.9469342231750488, + "learning_rate": 8.106333333333334e-06, + "loss": 1.2456256103515626, + "step": 628700 + }, + { + "epoch": 83.84, + "grad_norm": 0.8682982921600342, + "learning_rate": 8.099666666666666e-06, + "loss": 1.2437528991699218, + "step": 628800 + }, + { + "epoch": 83.85333333333334, + "grad_norm": 0.9430522918701172, + "learning_rate": 8.093e-06, + "loss": 1.2466936492919922, + "step": 628900 + }, + { + "epoch": 83.86666666666666, + "grad_norm": 0.9409758448600769, + "learning_rate": 8.086333333333333e-06, + "loss": 1.244860610961914, + "step": 629000 + }, + { + "epoch": 83.88, + "grad_norm": 0.958746612071991, + "learning_rate": 8.079666666666667e-06, + "loss": 1.246984634399414, + "step": 629100 + }, + { + "epoch": 83.89333333333333, + "grad_norm": 0.8642282485961914, + "learning_rate": 8.073e-06, + "loss": 1.2486931610107421, + "step": 629200 + }, + { + "epoch": 83.90666666666667, + "grad_norm": 0.9085518717765808, + "learning_rate": 8.066333333333334e-06, + "loss": 1.2516922760009765, + "step": 629300 + }, + { + "epoch": 83.92, + "grad_norm": 0.8967764973640442, + "learning_rate": 8.059733333333335e-06, + "loss": 1.2464397430419922, + "step": 629400 + }, + { + "epoch": 83.93333333333334, + "grad_norm": 0.9250491261482239, + "learning_rate": 8.053066666666667e-06, + "loss": 1.2472023010253905, + "step": 629500 + }, + { + "epoch": 83.94666666666667, + "grad_norm": 0.893845796585083, + "learning_rate": 8.0464e-06, + "loss": 1.2489615631103517, + "step": 629600 + }, + { + "epoch": 83.96, + "grad_norm": 0.907304048538208, + "learning_rate": 8.039733333333334e-06, + "loss": 1.2466935729980468, + "step": 629700 + }, + { + "epoch": 83.97333333333333, + "grad_norm": 0.8819485902786255, + "learning_rate": 8.033066666666666e-06, + "loss": 1.244398651123047, + "step": 629800 + }, + { + "epoch": 83.98666666666666, + "grad_norm": 0.9273881912231445, + "learning_rate": 8.0264e-06, + "loss": 1.2486519622802734, + "step": 629900 + }, + { + "epoch": 84.0, + "grad_norm": 0.879425585269928, + "learning_rate": 8.019733333333334e-06, + "loss": 1.2535282897949218, + "step": 630000 + }, + { + "epoch": 84.01333333333334, + "grad_norm": 0.8982846140861511, + "learning_rate": 8.013066666666668e-06, + "loss": 1.2259478759765625, + "step": 630100 + }, + { + "epoch": 84.02666666666667, + "grad_norm": 0.9428343176841736, + "learning_rate": 8.0064e-06, + "loss": 1.228878936767578, + "step": 630200 + }, + { + "epoch": 84.04, + "grad_norm": 0.9072933197021484, + "learning_rate": 7.999733333333334e-06, + "loss": 1.223412399291992, + "step": 630300 + }, + { + "epoch": 84.05333333333333, + "grad_norm": 0.9243832230567932, + "learning_rate": 7.993066666666666e-06, + "loss": 1.224007797241211, + "step": 630400 + }, + { + "epoch": 84.06666666666666, + "grad_norm": 0.8180492520332336, + "learning_rate": 7.9864e-06, + "loss": 1.2259696960449218, + "step": 630500 + }, + { + "epoch": 84.08, + "grad_norm": 0.888479471206665, + "learning_rate": 7.979733333333334e-06, + "loss": 1.2236656951904297, + "step": 630600 + }, + { + "epoch": 84.09333333333333, + "grad_norm": 0.9106174111366272, + "learning_rate": 7.973066666666668e-06, + "loss": 1.2281214904785156, + "step": 630700 + }, + { + "epoch": 84.10666666666667, + "grad_norm": 0.9094051122665405, + "learning_rate": 7.9664e-06, + "loss": 1.2281082916259765, + "step": 630800 + }, + { + "epoch": 84.12, + "grad_norm": 0.9189176559448242, + "learning_rate": 7.959733333333334e-06, + "loss": 1.2266500091552734, + "step": 630900 + }, + { + "epoch": 84.13333333333334, + "grad_norm": 0.8246629238128662, + "learning_rate": 7.953066666666667e-06, + "loss": 1.2251168823242187, + "step": 631000 + }, + { + "epoch": 84.14666666666666, + "grad_norm": 0.826525866985321, + "learning_rate": 7.9464e-06, + "loss": 1.2267461395263672, + "step": 631100 + }, + { + "epoch": 84.16, + "grad_norm": 0.9305570721626282, + "learning_rate": 7.939733333333333e-06, + "loss": 1.2317483520507813, + "step": 631200 + }, + { + "epoch": 84.17333333333333, + "grad_norm": 0.877616822719574, + "learning_rate": 7.933066666666667e-06, + "loss": 1.2281706237792969, + "step": 631300 + }, + { + "epoch": 84.18666666666667, + "grad_norm": 0.9188335537910461, + "learning_rate": 7.926466666666666e-06, + "loss": 1.2292250061035157, + "step": 631400 + }, + { + "epoch": 84.2, + "grad_norm": 0.9196408987045288, + "learning_rate": 7.919800000000002e-06, + "loss": 1.2331906127929688, + "step": 631500 + }, + { + "epoch": 84.21333333333334, + "grad_norm": 0.9125308990478516, + "learning_rate": 7.913133333333334e-06, + "loss": 1.2301849365234374, + "step": 631600 + }, + { + "epoch": 84.22666666666667, + "grad_norm": 0.8713774681091309, + "learning_rate": 7.906466666666668e-06, + "loss": 1.230985107421875, + "step": 631700 + }, + { + "epoch": 84.24, + "grad_norm": 0.9613950848579407, + "learning_rate": 7.8998e-06, + "loss": 1.2276271057128907, + "step": 631800 + }, + { + "epoch": 84.25333333333333, + "grad_norm": 0.8837341666221619, + "learning_rate": 7.893133333333334e-06, + "loss": 1.2295457458496093, + "step": 631900 + }, + { + "epoch": 84.26666666666667, + "grad_norm": 0.8872280120849609, + "learning_rate": 7.886466666666666e-06, + "loss": 1.2273683166503906, + "step": 632000 + }, + { + "epoch": 84.28, + "grad_norm": 0.8547608852386475, + "learning_rate": 7.8798e-06, + "loss": 1.2305823516845704, + "step": 632100 + }, + { + "epoch": 84.29333333333334, + "grad_norm": 0.9107147455215454, + "learning_rate": 7.873133333333334e-06, + "loss": 1.2315924072265625, + "step": 632200 + }, + { + "epoch": 84.30666666666667, + "grad_norm": 0.8627474904060364, + "learning_rate": 7.866466666666667e-06, + "loss": 1.230730972290039, + "step": 632300 + }, + { + "epoch": 84.32, + "grad_norm": 0.9304380416870117, + "learning_rate": 7.8598e-06, + "loss": 1.2302085876464843, + "step": 632400 + }, + { + "epoch": 84.33333333333333, + "grad_norm": 0.8998819589614868, + "learning_rate": 7.853133333333333e-06, + "loss": 1.2364775085449218, + "step": 632500 + }, + { + "epoch": 84.34666666666666, + "grad_norm": 0.8804898858070374, + "learning_rate": 7.846466666666667e-06, + "loss": 1.2302351379394532, + "step": 632600 + }, + { + "epoch": 84.36, + "grad_norm": 0.8894650936126709, + "learning_rate": 7.8398e-06, + "loss": 1.2332183074951173, + "step": 632700 + }, + { + "epoch": 84.37333333333333, + "grad_norm": 0.8644715547561646, + "learning_rate": 7.833133333333335e-06, + "loss": 1.2344248962402344, + "step": 632800 + }, + { + "epoch": 84.38666666666667, + "grad_norm": 0.9465084671974182, + "learning_rate": 7.826466666666667e-06, + "loss": 1.2316624450683593, + "step": 632900 + }, + { + "epoch": 84.4, + "grad_norm": 0.9370139241218567, + "learning_rate": 7.819800000000001e-06, + "loss": 1.2370130157470702, + "step": 633000 + }, + { + "epoch": 84.41333333333333, + "grad_norm": 0.888559877872467, + "learning_rate": 7.813133333333333e-06, + "loss": 1.2325920867919922, + "step": 633100 + }, + { + "epoch": 84.42666666666666, + "grad_norm": 0.8683785200119019, + "learning_rate": 7.806466666666667e-06, + "loss": 1.229187240600586, + "step": 633200 + }, + { + "epoch": 84.44, + "grad_norm": 0.9215974807739258, + "learning_rate": 7.7998e-06, + "loss": 1.2338642120361327, + "step": 633300 + }, + { + "epoch": 84.45333333333333, + "grad_norm": 0.9330242276191711, + "learning_rate": 7.7932e-06, + "loss": 1.234636001586914, + "step": 633400 + }, + { + "epoch": 84.46666666666667, + "grad_norm": 0.8812191486358643, + "learning_rate": 7.786533333333332e-06, + "loss": 1.233119659423828, + "step": 633500 + }, + { + "epoch": 84.48, + "grad_norm": 0.9350599646568298, + "learning_rate": 7.779866666666666e-06, + "loss": 1.2376564788818358, + "step": 633600 + }, + { + "epoch": 84.49333333333334, + "grad_norm": 0.8722426295280457, + "learning_rate": 7.7732e-06, + "loss": 1.2354527282714844, + "step": 633700 + }, + { + "epoch": 84.50666666666666, + "grad_norm": 0.9167805910110474, + "learning_rate": 7.766533333333334e-06, + "loss": 1.2361752319335937, + "step": 633800 + }, + { + "epoch": 84.52, + "grad_norm": 0.908461332321167, + "learning_rate": 7.759866666666667e-06, + "loss": 1.232997589111328, + "step": 633900 + }, + { + "epoch": 84.53333333333333, + "grad_norm": 0.9203801155090332, + "learning_rate": 7.7532e-06, + "loss": 1.2356761169433594, + "step": 634000 + }, + { + "epoch": 84.54666666666667, + "grad_norm": 0.8989818692207336, + "learning_rate": 7.746533333333333e-06, + "loss": 1.2334909057617187, + "step": 634100 + }, + { + "epoch": 84.56, + "grad_norm": 0.9835088849067688, + "learning_rate": 7.739866666666667e-06, + "loss": 1.2388640594482423, + "step": 634200 + }, + { + "epoch": 84.57333333333334, + "grad_norm": 0.8754939436912537, + "learning_rate": 7.7332e-06, + "loss": 1.241256866455078, + "step": 634300 + }, + { + "epoch": 84.58666666666667, + "grad_norm": 0.8577386736869812, + "learning_rate": 7.726533333333335e-06, + "loss": 1.2348951721191406, + "step": 634400 + }, + { + "epoch": 84.6, + "grad_norm": 0.8799518346786499, + "learning_rate": 7.719866666666667e-06, + "loss": 1.2372528839111328, + "step": 634500 + }, + { + "epoch": 84.61333333333333, + "grad_norm": 0.9047410488128662, + "learning_rate": 7.713200000000001e-06, + "loss": 1.2386643981933594, + "step": 634600 + }, + { + "epoch": 84.62666666666667, + "grad_norm": 0.9157127141952515, + "learning_rate": 7.706533333333333e-06, + "loss": 1.2385972595214845, + "step": 634700 + }, + { + "epoch": 84.64, + "grad_norm": 0.9638254046440125, + "learning_rate": 7.699866666666667e-06, + "loss": 1.236525115966797, + "step": 634800 + }, + { + "epoch": 84.65333333333334, + "grad_norm": 0.8745006322860718, + "learning_rate": 7.693200000000001e-06, + "loss": 1.237788314819336, + "step": 634900 + }, + { + "epoch": 84.66666666666667, + "grad_norm": 0.8753082752227783, + "learning_rate": 7.686533333333333e-06, + "loss": 1.2403019714355468, + "step": 635000 + }, + { + "epoch": 84.68, + "grad_norm": 0.9249312877655029, + "learning_rate": 7.679866666666667e-06, + "loss": 1.2393556976318358, + "step": 635100 + }, + { + "epoch": 84.69333333333333, + "grad_norm": 0.9037955403327942, + "learning_rate": 7.6732e-06, + "loss": 1.240056838989258, + "step": 635200 + }, + { + "epoch": 84.70666666666666, + "grad_norm": 0.8841052651405334, + "learning_rate": 7.666533333333334e-06, + "loss": 1.2407506561279298, + "step": 635300 + }, + { + "epoch": 84.72, + "grad_norm": 0.8909189701080322, + "learning_rate": 7.659933333333334e-06, + "loss": 1.2383670806884766, + "step": 635400 + }, + { + "epoch": 84.73333333333333, + "grad_norm": 0.827193021774292, + "learning_rate": 7.653266666666667e-06, + "loss": 1.2386473083496095, + "step": 635500 + }, + { + "epoch": 84.74666666666667, + "grad_norm": 0.8958622813224792, + "learning_rate": 7.6466e-06, + "loss": 1.2380664825439454, + "step": 635600 + }, + { + "epoch": 84.76, + "grad_norm": 0.9114907383918762, + "learning_rate": 7.639933333333333e-06, + "loss": 1.240849151611328, + "step": 635700 + }, + { + "epoch": 84.77333333333333, + "grad_norm": 0.907952070236206, + "learning_rate": 7.633266666666667e-06, + "loss": 1.2389560699462892, + "step": 635800 + }, + { + "epoch": 84.78666666666666, + "grad_norm": 0.8953930735588074, + "learning_rate": 7.626600000000001e-06, + "loss": 1.2392295074462891, + "step": 635900 + }, + { + "epoch": 84.8, + "grad_norm": 0.8722439408302307, + "learning_rate": 7.619933333333333e-06, + "loss": 1.2366736602783204, + "step": 636000 + }, + { + "epoch": 84.81333333333333, + "grad_norm": 0.9456676244735718, + "learning_rate": 7.613266666666667e-06, + "loss": 1.237574005126953, + "step": 636100 + }, + { + "epoch": 84.82666666666667, + "grad_norm": 0.919913113117218, + "learning_rate": 7.6066e-06, + "loss": 1.2442679595947266, + "step": 636200 + }, + { + "epoch": 84.84, + "grad_norm": 0.9416049718856812, + "learning_rate": 7.599933333333334e-06, + "loss": 1.243212890625, + "step": 636300 + }, + { + "epoch": 84.85333333333334, + "grad_norm": 0.9268980026245117, + "learning_rate": 7.593266666666666e-06, + "loss": 1.2382852172851562, + "step": 636400 + }, + { + "epoch": 84.86666666666666, + "grad_norm": 0.8669841885566711, + "learning_rate": 7.5866e-06, + "loss": 1.240669708251953, + "step": 636500 + }, + { + "epoch": 84.88, + "grad_norm": 0.9298033714294434, + "learning_rate": 7.5799333333333335e-06, + "loss": 1.2412749481201173, + "step": 636600 + }, + { + "epoch": 84.89333333333333, + "grad_norm": 0.962435245513916, + "learning_rate": 7.573266666666667e-06, + "loss": 1.2403402709960938, + "step": 636700 + }, + { + "epoch": 84.90666666666667, + "grad_norm": 0.8809468150138855, + "learning_rate": 7.5666e-06, + "loss": 1.240942153930664, + "step": 636800 + }, + { + "epoch": 84.92, + "grad_norm": 0.8820023536682129, + "learning_rate": 7.5599333333333345e-06, + "loss": 1.2404846954345703, + "step": 636900 + }, + { + "epoch": 84.93333333333334, + "grad_norm": 0.9361487030982971, + "learning_rate": 7.553266666666667e-06, + "loss": 1.246995849609375, + "step": 637000 + }, + { + "epoch": 84.94666666666667, + "grad_norm": 0.8973338603973389, + "learning_rate": 7.546600000000001e-06, + "loss": 1.242446517944336, + "step": 637100 + }, + { + "epoch": 84.96, + "grad_norm": 0.9044018387794495, + "learning_rate": 7.539933333333334e-06, + "loss": 1.2397714233398438, + "step": 637200 + }, + { + "epoch": 84.97333333333333, + "grad_norm": 0.9448003768920898, + "learning_rate": 7.533266666666668e-06, + "loss": 1.239171905517578, + "step": 637300 + }, + { + "epoch": 84.98666666666666, + "grad_norm": 0.9056717753410339, + "learning_rate": 7.526666666666667e-06, + "loss": 1.2440061950683594, + "step": 637400 + }, + { + "epoch": 85.0, + "grad_norm": 0.9282798171043396, + "learning_rate": 7.520000000000001e-06, + "loss": 1.2430106353759767, + "step": 637500 + }, + { + "epoch": 85.01333333333334, + "grad_norm": 0.8406403660774231, + "learning_rate": 7.513333333333333e-06, + "loss": 1.2223043823242188, + "step": 637600 + }, + { + "epoch": 85.02666666666667, + "grad_norm": 0.8572675585746765, + "learning_rate": 7.506666666666667e-06, + "loss": 1.2273347473144531, + "step": 637700 + }, + { + "epoch": 85.04, + "grad_norm": 0.887302815914154, + "learning_rate": 7.5e-06, + "loss": 1.221242446899414, + "step": 637800 + }, + { + "epoch": 85.05333333333333, + "grad_norm": 0.91096431016922, + "learning_rate": 7.493333333333334e-06, + "loss": 1.2202544403076172, + "step": 637900 + }, + { + "epoch": 85.06666666666666, + "grad_norm": 0.8980180621147156, + "learning_rate": 7.486666666666666e-06, + "loss": 1.2262554931640626, + "step": 638000 + }, + { + "epoch": 85.08, + "grad_norm": 0.9790130257606506, + "learning_rate": 7.480000000000001e-06, + "loss": 1.2260646057128906, + "step": 638100 + }, + { + "epoch": 85.09333333333333, + "grad_norm": 0.9041993021965027, + "learning_rate": 7.4733333333333335e-06, + "loss": 1.2228318023681641, + "step": 638200 + }, + { + "epoch": 85.10666666666667, + "grad_norm": 0.9332461953163147, + "learning_rate": 7.4666666666666675e-06, + "loss": 1.2237569427490234, + "step": 638300 + }, + { + "epoch": 85.12, + "grad_norm": 0.8508715033531189, + "learning_rate": 7.4600000000000006e-06, + "loss": 1.22271240234375, + "step": 638400 + }, + { + "epoch": 85.13333333333334, + "grad_norm": 0.8810603618621826, + "learning_rate": 7.453333333333333e-06, + "loss": 1.2232743835449218, + "step": 638500 + }, + { + "epoch": 85.14666666666666, + "grad_norm": 0.9365109801292419, + "learning_rate": 7.446666666666667e-06, + "loss": 1.2257044982910157, + "step": 638600 + }, + { + "epoch": 85.16, + "grad_norm": 0.9457574486732483, + "learning_rate": 7.44e-06, + "loss": 1.2268252563476563, + "step": 638700 + }, + { + "epoch": 85.17333333333333, + "grad_norm": 0.9184970855712891, + "learning_rate": 7.433333333333334e-06, + "loss": 1.2216042327880858, + "step": 638800 + }, + { + "epoch": 85.18666666666667, + "grad_norm": 0.8944892883300781, + "learning_rate": 7.426666666666666e-06, + "loss": 1.2262333679199218, + "step": 638900 + }, + { + "epoch": 85.2, + "grad_norm": 0.9582709670066833, + "learning_rate": 7.420000000000001e-06, + "loss": 1.2231621551513672, + "step": 639000 + }, + { + "epoch": 85.21333333333334, + "grad_norm": 0.9123549461364746, + "learning_rate": 7.413333333333333e-06, + "loss": 1.2277581787109375, + "step": 639100 + }, + { + "epoch": 85.22666666666667, + "grad_norm": 0.8903558850288391, + "learning_rate": 7.406666666666667e-06, + "loss": 1.2252957916259766, + "step": 639200 + }, + { + "epoch": 85.24, + "grad_norm": 0.8448173999786377, + "learning_rate": 7.4e-06, + "loss": 1.224297332763672, + "step": 639300 + }, + { + "epoch": 85.25333333333333, + "grad_norm": 0.9212110638618469, + "learning_rate": 7.3934e-06, + "loss": 1.2260472869873047, + "step": 639400 + }, + { + "epoch": 85.26666666666667, + "grad_norm": 0.8959601521492004, + "learning_rate": 7.386733333333333e-06, + "loss": 1.2307054901123047, + "step": 639500 + }, + { + "epoch": 85.28, + "grad_norm": 0.8986248970031738, + "learning_rate": 7.380066666666667e-06, + "loss": 1.2230642700195313, + "step": 639600 + }, + { + "epoch": 85.29333333333334, + "grad_norm": 0.9850512146949768, + "learning_rate": 7.3733999999999996e-06, + "loss": 1.2273857879638672, + "step": 639700 + }, + { + "epoch": 85.30666666666667, + "grad_norm": 0.8248298764228821, + "learning_rate": 7.3667333333333335e-06, + "loss": 1.226371307373047, + "step": 639800 + }, + { + "epoch": 85.32, + "grad_norm": 0.9425682425498962, + "learning_rate": 7.360066666666667e-06, + "loss": 1.2281211090087891, + "step": 639900 + }, + { + "epoch": 85.33333333333333, + "grad_norm": 0.8708743453025818, + "learning_rate": 7.353400000000001e-06, + "loss": 1.225609664916992, + "step": 640000 + }, + { + "epoch": 85.34666666666666, + "grad_norm": 0.9035684466362, + "learning_rate": 7.346733333333333e-06, + "loss": 1.2235333251953124, + "step": 640100 + }, + { + "epoch": 85.36, + "grad_norm": 0.9259425401687622, + "learning_rate": 7.340066666666668e-06, + "loss": 1.23236083984375, + "step": 640200 + }, + { + "epoch": 85.37333333333333, + "grad_norm": 0.9252036213874817, + "learning_rate": 7.3334e-06, + "loss": 1.229639205932617, + "step": 640300 + }, + { + "epoch": 85.38666666666667, + "grad_norm": 0.9062958359718323, + "learning_rate": 7.326733333333334e-06, + "loss": 1.2285384368896484, + "step": 640400 + }, + { + "epoch": 85.4, + "grad_norm": 0.9291536211967468, + "learning_rate": 7.320066666666667e-06, + "loss": 1.2298905944824219, + "step": 640500 + }, + { + "epoch": 85.41333333333333, + "grad_norm": 0.8647129535675049, + "learning_rate": 7.313400000000001e-06, + "loss": 1.2309508514404297, + "step": 640600 + }, + { + "epoch": 85.42666666666666, + "grad_norm": 0.9247118234634399, + "learning_rate": 7.306733333333333e-06, + "loss": 1.2306937408447265, + "step": 640700 + }, + { + "epoch": 85.44, + "grad_norm": 0.8799145221710205, + "learning_rate": 7.300066666666667e-06, + "loss": 1.226353759765625, + "step": 640800 + }, + { + "epoch": 85.45333333333333, + "grad_norm": 0.9392918944358826, + "learning_rate": 7.2934e-06, + "loss": 1.2263146209716798, + "step": 640900 + }, + { + "epoch": 85.46666666666667, + "grad_norm": 0.8683087229728699, + "learning_rate": 7.286733333333334e-06, + "loss": 1.2288311767578124, + "step": 641000 + }, + { + "epoch": 85.48, + "grad_norm": 0.9020020365715027, + "learning_rate": 7.2800666666666666e-06, + "loss": 1.229554214477539, + "step": 641100 + }, + { + "epoch": 85.49333333333334, + "grad_norm": 0.8641257882118225, + "learning_rate": 7.2734e-06, + "loss": 1.2283095550537109, + "step": 641200 + }, + { + "epoch": 85.50666666666666, + "grad_norm": 0.8976728320121765, + "learning_rate": 7.266733333333334e-06, + "loss": 1.2341390991210937, + "step": 641300 + }, + { + "epoch": 85.52, + "grad_norm": 0.9710721373558044, + "learning_rate": 7.260133333333334e-06, + "loss": 1.228611831665039, + "step": 641400 + }, + { + "epoch": 85.53333333333333, + "grad_norm": 0.9804433584213257, + "learning_rate": 7.253466666666667e-06, + "loss": 1.231660385131836, + "step": 641500 + }, + { + "epoch": 85.54666666666667, + "grad_norm": 0.9250527620315552, + "learning_rate": 7.246800000000001e-06, + "loss": 1.2287106323242187, + "step": 641600 + }, + { + "epoch": 85.56, + "grad_norm": 0.8953940868377686, + "learning_rate": 7.240133333333334e-06, + "loss": 1.2353031158447265, + "step": 641700 + }, + { + "epoch": 85.57333333333334, + "grad_norm": 0.8646306991577148, + "learning_rate": 7.233466666666668e-06, + "loss": 1.232652053833008, + "step": 641800 + }, + { + "epoch": 85.58666666666667, + "grad_norm": 0.9270492792129517, + "learning_rate": 7.2268e-06, + "loss": 1.2340243530273438, + "step": 641900 + }, + { + "epoch": 85.6, + "grad_norm": 0.9221645593643188, + "learning_rate": 7.220133333333334e-06, + "loss": 1.2317237091064452, + "step": 642000 + }, + { + "epoch": 85.61333333333333, + "grad_norm": 0.8994006514549255, + "learning_rate": 7.213466666666667e-06, + "loss": 1.2312322998046874, + "step": 642100 + }, + { + "epoch": 85.62666666666667, + "grad_norm": 0.9039101600646973, + "learning_rate": 7.206799999999999e-06, + "loss": 1.2359030151367187, + "step": 642200 + }, + { + "epoch": 85.64, + "grad_norm": 0.9876293540000916, + "learning_rate": 7.200133333333334e-06, + "loss": 1.231430435180664, + "step": 642300 + }, + { + "epoch": 85.65333333333334, + "grad_norm": 0.8660300970077515, + "learning_rate": 7.193466666666666e-06, + "loss": 1.232857437133789, + "step": 642400 + }, + { + "epoch": 85.66666666666667, + "grad_norm": 0.9719154834747314, + "learning_rate": 7.1868e-06, + "loss": 1.2365948486328124, + "step": 642500 + }, + { + "epoch": 85.68, + "grad_norm": 0.9251152276992798, + "learning_rate": 7.1801333333333335e-06, + "loss": 1.2319696044921875, + "step": 642600 + }, + { + "epoch": 85.69333333333333, + "grad_norm": 0.8920202255249023, + "learning_rate": 7.1734666666666675e-06, + "loss": 1.2325668334960938, + "step": 642700 + }, + { + "epoch": 85.70666666666666, + "grad_norm": 0.9049530625343323, + "learning_rate": 7.1668e-06, + "loss": 1.2362017822265625, + "step": 642800 + }, + { + "epoch": 85.72, + "grad_norm": 0.8955960869789124, + "learning_rate": 7.160133333333334e-06, + "loss": 1.2367591094970702, + "step": 642900 + }, + { + "epoch": 85.73333333333333, + "grad_norm": 0.8741152286529541, + "learning_rate": 7.153466666666667e-06, + "loss": 1.2382603454589844, + "step": 643000 + }, + { + "epoch": 85.74666666666667, + "grad_norm": 0.8936929106712341, + "learning_rate": 7.146800000000001e-06, + "loss": 1.2319417572021485, + "step": 643100 + }, + { + "epoch": 85.76, + "grad_norm": 0.8739801645278931, + "learning_rate": 7.140133333333333e-06, + "loss": 1.2322359466552735, + "step": 643200 + }, + { + "epoch": 85.77333333333333, + "grad_norm": 0.9064525961875916, + "learning_rate": 7.133466666666668e-06, + "loss": 1.2369744110107421, + "step": 643300 + }, + { + "epoch": 85.78666666666666, + "grad_norm": 0.8985515236854553, + "learning_rate": 7.1268e-06, + "loss": 1.2325567626953124, + "step": 643400 + }, + { + "epoch": 85.8, + "grad_norm": 0.9307603240013123, + "learning_rate": 7.120200000000001e-06, + "loss": 1.238876495361328, + "step": 643500 + }, + { + "epoch": 85.81333333333333, + "grad_norm": 0.8941517472267151, + "learning_rate": 7.113533333333333e-06, + "loss": 1.2391890716552734, + "step": 643600 + }, + { + "epoch": 85.82666666666667, + "grad_norm": 0.9674673676490784, + "learning_rate": 7.106866666666667e-06, + "loss": 1.2368927764892579, + "step": 643700 + }, + { + "epoch": 85.84, + "grad_norm": 0.933340847492218, + "learning_rate": 7.1002e-06, + "loss": 1.2422388458251954, + "step": 643800 + }, + { + "epoch": 85.85333333333334, + "grad_norm": 0.8938137888908386, + "learning_rate": 7.093533333333334e-06, + "loss": 1.2338928985595703, + "step": 643900 + }, + { + "epoch": 85.86666666666666, + "grad_norm": 0.8926107287406921, + "learning_rate": 7.0868666666666665e-06, + "loss": 1.2356930541992188, + "step": 644000 + }, + { + "epoch": 85.88, + "grad_norm": 0.8534455299377441, + "learning_rate": 7.0802e-06, + "loss": 1.2378578186035156, + "step": 644100 + }, + { + "epoch": 85.89333333333333, + "grad_norm": 1.000348448753357, + "learning_rate": 7.0735333333333335e-06, + "loss": 1.2363401794433593, + "step": 644200 + }, + { + "epoch": 85.90666666666667, + "grad_norm": 0.9621683359146118, + "learning_rate": 7.0668666666666675e-06, + "loss": 1.241478271484375, + "step": 644300 + }, + { + "epoch": 85.92, + "grad_norm": 0.9294373989105225, + "learning_rate": 7.0602e-06, + "loss": 1.237207565307617, + "step": 644400 + }, + { + "epoch": 85.93333333333334, + "grad_norm": 0.9206804037094116, + "learning_rate": 7.0535333333333346e-06, + "loss": 1.2392974090576172, + "step": 644500 + }, + { + "epoch": 85.94666666666667, + "grad_norm": 0.8890131115913391, + "learning_rate": 7.046866666666667e-06, + "loss": 1.2358542633056642, + "step": 644600 + }, + { + "epoch": 85.96, + "grad_norm": 0.887895941734314, + "learning_rate": 7.040200000000001e-06, + "loss": 1.2418438720703124, + "step": 644700 + }, + { + "epoch": 85.97333333333333, + "grad_norm": 0.8878814578056335, + "learning_rate": 7.033533333333334e-06, + "loss": 1.2417584991455077, + "step": 644800 + }, + { + "epoch": 85.98666666666666, + "grad_norm": 0.9163659811019897, + "learning_rate": 7.026866666666666e-06, + "loss": 1.2418124389648437, + "step": 644900 + }, + { + "epoch": 86.0, + "grad_norm": 0.9403581023216248, + "learning_rate": 7.0202e-06, + "loss": 1.2414751434326172, + "step": 645000 + }, + { + "epoch": 86.01333333333334, + "grad_norm": 0.8630901575088501, + "learning_rate": 7.013533333333333e-06, + "loss": 1.2175826263427734, + "step": 645100 + }, + { + "epoch": 86.02666666666667, + "grad_norm": 0.9154542684555054, + "learning_rate": 7.006866666666667e-06, + "loss": 1.2209982299804687, + "step": 645200 + }, + { + "epoch": 86.04, + "grad_norm": 0.9038174748420715, + "learning_rate": 7.0001999999999995e-06, + "loss": 1.216339340209961, + "step": 645300 + }, + { + "epoch": 86.05333333333333, + "grad_norm": 0.8506960272789001, + "learning_rate": 6.993533333333334e-06, + "loss": 1.218511962890625, + "step": 645400 + }, + { + "epoch": 86.06666666666666, + "grad_norm": 0.8634645342826843, + "learning_rate": 6.986933333333334e-06, + "loss": 1.2178488922119142, + "step": 645500 + }, + { + "epoch": 86.08, + "grad_norm": 0.9225000739097595, + "learning_rate": 6.9802666666666665e-06, + "loss": 1.2196299743652343, + "step": 645600 + }, + { + "epoch": 86.09333333333333, + "grad_norm": 0.9054206609725952, + "learning_rate": 6.973600000000001e-06, + "loss": 1.2221673583984376, + "step": 645700 + }, + { + "epoch": 86.10666666666667, + "grad_norm": 0.8930476307868958, + "learning_rate": 6.9669333333333336e-06, + "loss": 1.219794464111328, + "step": 645800 + }, + { + "epoch": 86.12, + "grad_norm": 0.8613491058349609, + "learning_rate": 6.960266666666667e-06, + "loss": 1.21840576171875, + "step": 645900 + }, + { + "epoch": 86.13333333333334, + "grad_norm": 0.9077932238578796, + "learning_rate": 6.953600000000001e-06, + "loss": 1.2229581451416016, + "step": 646000 + }, + { + "epoch": 86.14666666666666, + "grad_norm": 0.9440174102783203, + "learning_rate": 6.946933333333333e-06, + "loss": 1.217189178466797, + "step": 646100 + }, + { + "epoch": 86.16, + "grad_norm": 0.906891405582428, + "learning_rate": 6.940266666666667e-06, + "loss": 1.2184838104248046, + "step": 646200 + }, + { + "epoch": 86.17333333333333, + "grad_norm": 0.8963661193847656, + "learning_rate": 6.9336e-06, + "loss": 1.2230545043945313, + "step": 646300 + }, + { + "epoch": 86.18666666666667, + "grad_norm": 0.8720294833183289, + "learning_rate": 6.926933333333334e-06, + "loss": 1.2247891998291016, + "step": 646400 + }, + { + "epoch": 86.2, + "grad_norm": 0.9351063966751099, + "learning_rate": 6.920266666666666e-06, + "loss": 1.2246680450439453, + "step": 646500 + }, + { + "epoch": 86.21333333333334, + "grad_norm": 0.9471380114555359, + "learning_rate": 6.913600000000001e-06, + "loss": 1.2222270965576172, + "step": 646600 + }, + { + "epoch": 86.22666666666667, + "grad_norm": 0.8749629259109497, + "learning_rate": 6.906933333333333e-06, + "loss": 1.2154730987548827, + "step": 646700 + }, + { + "epoch": 86.24, + "grad_norm": 0.8750444650650024, + "learning_rate": 6.900266666666667e-06, + "loss": 1.2247186279296876, + "step": 646800 + }, + { + "epoch": 86.25333333333333, + "grad_norm": 0.9080207347869873, + "learning_rate": 6.8936e-06, + "loss": 1.2202265930175782, + "step": 646900 + }, + { + "epoch": 86.26666666666667, + "grad_norm": 0.9241020679473877, + "learning_rate": 6.886933333333334e-06, + "loss": 1.224848175048828, + "step": 647000 + }, + { + "epoch": 86.28, + "grad_norm": 0.907421350479126, + "learning_rate": 6.880266666666667e-06, + "loss": 1.2235704040527344, + "step": 647100 + }, + { + "epoch": 86.29333333333334, + "grad_norm": 0.9098572731018066, + "learning_rate": 6.8736000000000006e-06, + "loss": 1.2222378540039063, + "step": 647200 + }, + { + "epoch": 86.30666666666667, + "grad_norm": 0.8905967473983765, + "learning_rate": 6.866933333333334e-06, + "loss": 1.2262596130371093, + "step": 647300 + }, + { + "epoch": 86.32, + "grad_norm": 0.8770264387130737, + "learning_rate": 6.860266666666668e-06, + "loss": 1.2231716156005858, + "step": 647400 + }, + { + "epoch": 86.33333333333333, + "grad_norm": 0.8793537616729736, + "learning_rate": 6.853666666666667e-06, + "loss": 1.2286277770996095, + "step": 647500 + }, + { + "epoch": 86.34666666666666, + "grad_norm": 0.8772323131561279, + "learning_rate": 6.847000000000001e-06, + "loss": 1.2212282562255858, + "step": 647600 + }, + { + "epoch": 86.36, + "grad_norm": 0.891001284122467, + "learning_rate": 6.840333333333333e-06, + "loss": 1.222700729370117, + "step": 647700 + }, + { + "epoch": 86.37333333333333, + "grad_norm": 0.9272405505180359, + "learning_rate": 6.833666666666668e-06, + "loss": 1.2218807220458985, + "step": 647800 + }, + { + "epoch": 86.38666666666667, + "grad_norm": 0.884071409702301, + "learning_rate": 6.827e-06, + "loss": 1.2227737426757812, + "step": 647900 + }, + { + "epoch": 86.4, + "grad_norm": 0.9387223720550537, + "learning_rate": 6.820333333333334e-06, + "loss": 1.227510986328125, + "step": 648000 + }, + { + "epoch": 86.41333333333333, + "grad_norm": 0.8574748039245605, + "learning_rate": 6.813666666666667e-06, + "loss": 1.2250510406494142, + "step": 648100 + }, + { + "epoch": 86.42666666666666, + "grad_norm": 0.8585149049758911, + "learning_rate": 6.807000000000001e-06, + "loss": 1.2231393432617188, + "step": 648200 + }, + { + "epoch": 86.44, + "grad_norm": 0.8672378659248352, + "learning_rate": 6.800333333333333e-06, + "loss": 1.2262419891357421, + "step": 648300 + }, + { + "epoch": 86.45333333333333, + "grad_norm": 0.8681180477142334, + "learning_rate": 6.793666666666667e-06, + "loss": 1.2264180755615235, + "step": 648400 + }, + { + "epoch": 86.46666666666667, + "grad_norm": 0.9366236329078674, + "learning_rate": 6.787e-06, + "loss": 1.2281493377685546, + "step": 648500 + }, + { + "epoch": 86.48, + "grad_norm": 0.9453869462013245, + "learning_rate": 6.780333333333333e-06, + "loss": 1.2302886199951173, + "step": 648600 + }, + { + "epoch": 86.49333333333334, + "grad_norm": 0.8976516127586365, + "learning_rate": 6.773666666666667e-06, + "loss": 1.227205810546875, + "step": 648700 + }, + { + "epoch": 86.50666666666666, + "grad_norm": 0.9220427870750427, + "learning_rate": 6.767e-06, + "loss": 1.2235513305664063, + "step": 648800 + }, + { + "epoch": 86.52, + "grad_norm": 0.912756085395813, + "learning_rate": 6.760333333333334e-06, + "loss": 1.2255386352539062, + "step": 648900 + }, + { + "epoch": 86.53333333333333, + "grad_norm": 0.9162057042121887, + "learning_rate": 6.753666666666667e-06, + "loss": 1.2223670959472657, + "step": 649000 + }, + { + "epoch": 86.54666666666667, + "grad_norm": 0.8735973238945007, + "learning_rate": 6.747000000000001e-06, + "loss": 1.2262992858886719, + "step": 649100 + }, + { + "epoch": 86.56, + "grad_norm": 0.8713511228561401, + "learning_rate": 6.740333333333333e-06, + "loss": 1.231358871459961, + "step": 649200 + }, + { + "epoch": 86.57333333333334, + "grad_norm": 0.879443883895874, + "learning_rate": 6.733666666666667e-06, + "loss": 1.2286178588867187, + "step": 649300 + }, + { + "epoch": 86.58666666666667, + "grad_norm": 0.9119516015052795, + "learning_rate": 6.727e-06, + "loss": 1.2312828063964845, + "step": 649400 + }, + { + "epoch": 86.6, + "grad_norm": 0.9122266173362732, + "learning_rate": 6.7204e-06, + "loss": 1.2293184661865235, + "step": 649500 + }, + { + "epoch": 86.61333333333333, + "grad_norm": 0.9306323528289795, + "learning_rate": 6.713733333333333e-06, + "loss": 1.2252943420410156, + "step": 649600 + }, + { + "epoch": 86.62666666666667, + "grad_norm": 0.8929945230484009, + "learning_rate": 6.707066666666667e-06, + "loss": 1.2296338653564454, + "step": 649700 + }, + { + "epoch": 86.64, + "grad_norm": 0.9355345964431763, + "learning_rate": 6.700399999999999e-06, + "loss": 1.229610595703125, + "step": 649800 + }, + { + "epoch": 86.65333333333334, + "grad_norm": 0.9156262278556824, + "learning_rate": 6.693733333333334e-06, + "loss": 1.2348743438720704, + "step": 649900 + }, + { + "epoch": 86.66666666666667, + "grad_norm": 0.9362950921058655, + "learning_rate": 6.6870666666666665e-06, + "loss": 1.2279579162597656, + "step": 650000 + }, + { + "epoch": 86.68, + "grad_norm": 0.8823856711387634, + "learning_rate": 6.6804000000000004e-06, + "loss": 1.23043212890625, + "step": 650100 + }, + { + "epoch": 86.69333333333333, + "grad_norm": 0.9650241732597351, + "learning_rate": 6.6737333333333336e-06, + "loss": 1.2296434020996094, + "step": 650200 + }, + { + "epoch": 86.70666666666666, + "grad_norm": 0.8565574288368225, + "learning_rate": 6.6670666666666675e-06, + "loss": 1.2308535003662109, + "step": 650300 + }, + { + "epoch": 86.72, + "grad_norm": 0.9410964846611023, + "learning_rate": 6.6604e-06, + "loss": 1.2321768951416017, + "step": 650400 + }, + { + "epoch": 86.73333333333333, + "grad_norm": 0.9220337867736816, + "learning_rate": 6.653733333333334e-06, + "loss": 1.231683349609375, + "step": 650500 + }, + { + "epoch": 86.74666666666667, + "grad_norm": 0.8969945907592773, + "learning_rate": 6.647066666666667e-06, + "loss": 1.233789291381836, + "step": 650600 + }, + { + "epoch": 86.76, + "grad_norm": 0.9641741514205933, + "learning_rate": 6.640400000000001e-06, + "loss": 1.230896987915039, + "step": 650700 + }, + { + "epoch": 86.77333333333333, + "grad_norm": 0.9212261438369751, + "learning_rate": 6.633733333333333e-06, + "loss": 1.2316611480712891, + "step": 650800 + }, + { + "epoch": 86.78666666666666, + "grad_norm": 0.8244799971580505, + "learning_rate": 6.627066666666668e-06, + "loss": 1.2281710815429687, + "step": 650900 + }, + { + "epoch": 86.8, + "grad_norm": 0.89630126953125, + "learning_rate": 6.6204e-06, + "loss": 1.2288339233398438, + "step": 651000 + }, + { + "epoch": 86.81333333333333, + "grad_norm": 0.8904646635055542, + "learning_rate": 6.613733333333334e-06, + "loss": 1.2315651702880859, + "step": 651100 + }, + { + "epoch": 86.82666666666667, + "grad_norm": 0.9223039150238037, + "learning_rate": 6.607066666666667e-06, + "loss": 1.2328720855712891, + "step": 651200 + }, + { + "epoch": 86.84, + "grad_norm": 0.8785363435745239, + "learning_rate": 6.6003999999999995e-06, + "loss": 1.2333258056640626, + "step": 651300 + }, + { + "epoch": 86.85333333333334, + "grad_norm": 0.9430354237556458, + "learning_rate": 6.5937333333333335e-06, + "loss": 1.231754913330078, + "step": 651400 + }, + { + "epoch": 86.86666666666666, + "grad_norm": 0.9277433156967163, + "learning_rate": 6.587133333333334e-06, + "loss": 1.2332256317138672, + "step": 651500 + }, + { + "epoch": 86.88, + "grad_norm": 0.9251424670219421, + "learning_rate": 6.5804666666666665e-06, + "loss": 1.2302942657470703, + "step": 651600 + }, + { + "epoch": 86.89333333333333, + "grad_norm": 0.9771026968955994, + "learning_rate": 6.5738000000000005e-06, + "loss": 1.2350211334228516, + "step": 651700 + }, + { + "epoch": 86.90666666666667, + "grad_norm": 0.9614867568016052, + "learning_rate": 6.567133333333334e-06, + "loss": 1.2328236389160157, + "step": 651800 + }, + { + "epoch": 86.92, + "grad_norm": 0.9628375768661499, + "learning_rate": 6.5604666666666676e-06, + "loss": 1.2369357299804689, + "step": 651900 + }, + { + "epoch": 86.93333333333334, + "grad_norm": 0.8983745574951172, + "learning_rate": 6.5538e-06, + "loss": 1.2343621063232422, + "step": 652000 + }, + { + "epoch": 86.94666666666667, + "grad_norm": 0.9080144166946411, + "learning_rate": 6.547133333333335e-06, + "loss": 1.2306615447998046, + "step": 652100 + }, + { + "epoch": 86.96, + "grad_norm": 0.8796840906143188, + "learning_rate": 6.540466666666667e-06, + "loss": 1.2312027740478515, + "step": 652200 + }, + { + "epoch": 86.97333333333333, + "grad_norm": 0.9401488304138184, + "learning_rate": 6.5338e-06, + "loss": 1.23423828125, + "step": 652300 + }, + { + "epoch": 86.98666666666666, + "grad_norm": 0.9651604890823364, + "learning_rate": 6.527133333333334e-06, + "loss": 1.2338542175292968, + "step": 652400 + }, + { + "epoch": 87.0, + "grad_norm": 0.9266039729118347, + "learning_rate": 6.520466666666666e-06, + "loss": 1.2390645599365235, + "step": 652500 + }, + { + "epoch": 87.01333333333334, + "grad_norm": 0.8999123573303223, + "learning_rate": 6.5138e-06, + "loss": 1.214796905517578, + "step": 652600 + }, + { + "epoch": 87.02666666666667, + "grad_norm": 0.903722882270813, + "learning_rate": 6.507133333333333e-06, + "loss": 1.2141775512695312, + "step": 652700 + }, + { + "epoch": 87.04, + "grad_norm": 0.8932545781135559, + "learning_rate": 6.500466666666667e-06, + "loss": 1.2154994201660156, + "step": 652800 + }, + { + "epoch": 87.05333333333333, + "grad_norm": 0.8836954236030579, + "learning_rate": 6.4937999999999996e-06, + "loss": 1.2121443939208985, + "step": 652900 + }, + { + "epoch": 87.06666666666666, + "grad_norm": 0.9204801321029663, + "learning_rate": 6.487133333333334e-06, + "loss": 1.2122740936279297, + "step": 653000 + }, + { + "epoch": 87.08, + "grad_norm": 0.8981918692588806, + "learning_rate": 6.480466666666667e-06, + "loss": 1.221134490966797, + "step": 653100 + }, + { + "epoch": 87.09333333333333, + "grad_norm": 0.926282525062561, + "learning_rate": 6.473800000000001e-06, + "loss": 1.2155657196044922, + "step": 653200 + }, + { + "epoch": 87.10666666666667, + "grad_norm": 0.8902606964111328, + "learning_rate": 6.467133333333334e-06, + "loss": 1.2164243316650392, + "step": 653300 + }, + { + "epoch": 87.12, + "grad_norm": 0.8815839290618896, + "learning_rate": 6.460466666666668e-06, + "loss": 1.2138585662841797, + "step": 653400 + }, + { + "epoch": 87.13333333333334, + "grad_norm": 0.9262551069259644, + "learning_rate": 6.453866666666667e-06, + "loss": 1.2137595367431642, + "step": 653500 + }, + { + "epoch": 87.14666666666666, + "grad_norm": 0.891934871673584, + "learning_rate": 6.447200000000001e-06, + "loss": 1.214564666748047, + "step": 653600 + }, + { + "epoch": 87.16, + "grad_norm": 0.8836770057678223, + "learning_rate": 6.440533333333333e-06, + "loss": 1.2159810638427735, + "step": 653700 + }, + { + "epoch": 87.17333333333333, + "grad_norm": 0.9016736745834351, + "learning_rate": 6.433866666666667e-06, + "loss": 1.2174545288085938, + "step": 653800 + }, + { + "epoch": 87.18666666666667, + "grad_norm": 0.9326723217964172, + "learning_rate": 6.4272e-06, + "loss": 1.2156101226806642, + "step": 653900 + }, + { + "epoch": 87.2, + "grad_norm": 0.8592504858970642, + "learning_rate": 6.420533333333334e-06, + "loss": 1.2173818969726562, + "step": 654000 + }, + { + "epoch": 87.21333333333334, + "grad_norm": 0.8951143026351929, + "learning_rate": 6.413866666666666e-06, + "loss": 1.2178955841064454, + "step": 654100 + }, + { + "epoch": 87.22666666666667, + "grad_norm": 0.9222288131713867, + "learning_rate": 6.407200000000001e-06, + "loss": 1.2179863739013672, + "step": 654200 + }, + { + "epoch": 87.24, + "grad_norm": 0.9849110245704651, + "learning_rate": 6.400533333333333e-06, + "loss": 1.2230202484130859, + "step": 654300 + }, + { + "epoch": 87.25333333333333, + "grad_norm": 0.9216305017471313, + "learning_rate": 6.393866666666667e-06, + "loss": 1.2152316284179687, + "step": 654400 + }, + { + "epoch": 87.26666666666667, + "grad_norm": 0.8858641982078552, + "learning_rate": 6.3872000000000004e-06, + "loss": 1.2167332458496094, + "step": 654500 + }, + { + "epoch": 87.28, + "grad_norm": 0.907527506351471, + "learning_rate": 6.380533333333334e-06, + "loss": 1.223568115234375, + "step": 654600 + }, + { + "epoch": 87.29333333333334, + "grad_norm": 0.928432285785675, + "learning_rate": 6.373866666666667e-06, + "loss": 1.221104507446289, + "step": 654700 + }, + { + "epoch": 87.30666666666667, + "grad_norm": 0.8888409733772278, + "learning_rate": 6.367200000000001e-06, + "loss": 1.2164854431152343, + "step": 654800 + }, + { + "epoch": 87.32, + "grad_norm": 0.9260812401771545, + "learning_rate": 6.360533333333334e-06, + "loss": 1.2207078552246093, + "step": 654900 + }, + { + "epoch": 87.33333333333333, + "grad_norm": 0.9093630313873291, + "learning_rate": 6.353866666666666e-06, + "loss": 1.221835174560547, + "step": 655000 + }, + { + "epoch": 87.34666666666666, + "grad_norm": 0.9289301633834839, + "learning_rate": 6.3472e-06, + "loss": 1.2211975860595703, + "step": 655100 + }, + { + "epoch": 87.36, + "grad_norm": 0.8211119771003723, + "learning_rate": 6.340533333333333e-06, + "loss": 1.2244545745849609, + "step": 655200 + }, + { + "epoch": 87.37333333333333, + "grad_norm": 0.9515888690948486, + "learning_rate": 6.333866666666667e-06, + "loss": 1.2235546112060547, + "step": 655300 + }, + { + "epoch": 87.38666666666667, + "grad_norm": 0.8519609570503235, + "learning_rate": 6.3272e-06, + "loss": 1.2207803344726562, + "step": 655400 + }, + { + "epoch": 87.4, + "grad_norm": 0.8767391443252563, + "learning_rate": 6.3206e-06, + "loss": 1.2202215576171875, + "step": 655500 + }, + { + "epoch": 87.41333333333333, + "grad_norm": 1.0171016454696655, + "learning_rate": 6.313933333333334e-06, + "loss": 1.2231157684326173, + "step": 655600 + }, + { + "epoch": 87.42666666666666, + "grad_norm": 0.86667400598526, + "learning_rate": 6.307266666666667e-06, + "loss": 1.2254328155517578, + "step": 655700 + }, + { + "epoch": 87.44, + "grad_norm": 0.9001585245132446, + "learning_rate": 6.300600000000001e-06, + "loss": 1.2218850708007813, + "step": 655800 + }, + { + "epoch": 87.45333333333333, + "grad_norm": 0.939195454120636, + "learning_rate": 6.293933333333333e-06, + "loss": 1.2206802368164062, + "step": 655900 + }, + { + "epoch": 87.46666666666667, + "grad_norm": 0.8869876265525818, + "learning_rate": 6.2872666666666665e-06, + "loss": 1.2218120574951172, + "step": 656000 + }, + { + "epoch": 87.48, + "grad_norm": 0.898676872253418, + "learning_rate": 6.2806000000000005e-06, + "loss": 1.2209648895263672, + "step": 656100 + }, + { + "epoch": 87.49333333333334, + "grad_norm": 0.9363060593605042, + "learning_rate": 6.273933333333333e-06, + "loss": 1.2237455749511719, + "step": 656200 + }, + { + "epoch": 87.50666666666666, + "grad_norm": 0.9196439981460571, + "learning_rate": 6.267266666666667e-06, + "loss": 1.2262535095214844, + "step": 656300 + }, + { + "epoch": 87.52, + "grad_norm": 0.7970747947692871, + "learning_rate": 6.2606e-06, + "loss": 1.2225990295410156, + "step": 656400 + }, + { + "epoch": 87.53333333333333, + "grad_norm": 0.8288227915763855, + "learning_rate": 6.253933333333334e-06, + "loss": 1.2242842864990235, + "step": 656500 + }, + { + "epoch": 87.54666666666667, + "grad_norm": 0.9207773804664612, + "learning_rate": 6.247266666666667e-06, + "loss": 1.2214242553710937, + "step": 656600 + }, + { + "epoch": 87.56, + "grad_norm": 0.9800169467926025, + "learning_rate": 6.240600000000001e-06, + "loss": 1.2252493286132813, + "step": 656700 + }, + { + "epoch": 87.57333333333334, + "grad_norm": 0.9389280080795288, + "learning_rate": 6.233933333333333e-06, + "loss": 1.220586700439453, + "step": 656800 + }, + { + "epoch": 87.58666666666667, + "grad_norm": 0.9566884636878967, + "learning_rate": 6.227266666666666e-06, + "loss": 1.2238873291015624, + "step": 656900 + }, + { + "epoch": 87.6, + "grad_norm": 0.9968175292015076, + "learning_rate": 6.2206e-06, + "loss": 1.2255178833007812, + "step": 657000 + }, + { + "epoch": 87.61333333333333, + "grad_norm": 0.9001134037971497, + "learning_rate": 6.213933333333333e-06, + "loss": 1.2253036499023438, + "step": 657100 + }, + { + "epoch": 87.62666666666667, + "grad_norm": 0.920998215675354, + "learning_rate": 6.2072666666666664e-06, + "loss": 1.2283302307128907, + "step": 657200 + }, + { + "epoch": 87.64, + "grad_norm": 0.9255244731903076, + "learning_rate": 6.2006e-06, + "loss": 1.2279671478271483, + "step": 657300 + }, + { + "epoch": 87.65333333333334, + "grad_norm": 0.8817408680915833, + "learning_rate": 6.1939333333333335e-06, + "loss": 1.222409210205078, + "step": 657400 + }, + { + "epoch": 87.66666666666667, + "grad_norm": 0.9020600914955139, + "learning_rate": 6.187333333333334e-06, + "loss": 1.2292388153076172, + "step": 657500 + }, + { + "epoch": 87.68, + "grad_norm": 0.880594789981842, + "learning_rate": 6.180666666666667e-06, + "loss": 1.2260498046875, + "step": 657600 + }, + { + "epoch": 87.69333333333333, + "grad_norm": 0.9309771656990051, + "learning_rate": 6.1740000000000005e-06, + "loss": 1.2300214385986328, + "step": 657700 + }, + { + "epoch": 87.70666666666666, + "grad_norm": 0.8785908222198486, + "learning_rate": 6.167333333333334e-06, + "loss": 1.2290544891357422, + "step": 657800 + }, + { + "epoch": 87.72, + "grad_norm": 0.8739680647850037, + "learning_rate": 6.160666666666667e-06, + "loss": 1.2261587524414062, + "step": 657900 + }, + { + "epoch": 87.73333333333333, + "grad_norm": 0.8887823224067688, + "learning_rate": 6.154e-06, + "loss": 1.2235511779785155, + "step": 658000 + }, + { + "epoch": 87.74666666666667, + "grad_norm": 0.9344404339790344, + "learning_rate": 6.147333333333334e-06, + "loss": 1.2311840057373047, + "step": 658100 + }, + { + "epoch": 87.76, + "grad_norm": 0.9279657006263733, + "learning_rate": 6.140666666666667e-06, + "loss": 1.2299423217773438, + "step": 658200 + }, + { + "epoch": 87.77333333333333, + "grad_norm": 0.9525284767150879, + "learning_rate": 6.134e-06, + "loss": 1.2301526641845704, + "step": 658300 + }, + { + "epoch": 87.78666666666666, + "grad_norm": 0.8445433378219604, + "learning_rate": 6.127333333333333e-06, + "loss": 1.226542739868164, + "step": 658400 + }, + { + "epoch": 87.8, + "grad_norm": 0.9366630911827087, + "learning_rate": 6.120666666666667e-06, + "loss": 1.2329245758056642, + "step": 658500 + }, + { + "epoch": 87.81333333333333, + "grad_norm": 0.9238616228103638, + "learning_rate": 6.114e-06, + "loss": 1.2254788970947266, + "step": 658600 + }, + { + "epoch": 87.82666666666667, + "grad_norm": 0.8797993063926697, + "learning_rate": 6.107333333333333e-06, + "loss": 1.2281143951416016, + "step": 658700 + }, + { + "epoch": 87.84, + "grad_norm": 0.8559375405311584, + "learning_rate": 6.100666666666667e-06, + "loss": 1.224699478149414, + "step": 658800 + }, + { + "epoch": 87.85333333333334, + "grad_norm": 0.9214592576026917, + "learning_rate": 6.0940000000000004e-06, + "loss": 1.2267461395263672, + "step": 658900 + }, + { + "epoch": 87.86666666666666, + "grad_norm": 0.9385553002357483, + "learning_rate": 6.0873333333333336e-06, + "loss": 1.2321873474121094, + "step": 659000 + }, + { + "epoch": 87.88, + "grad_norm": 0.9742735028266907, + "learning_rate": 6.0806666666666675e-06, + "loss": 1.224165802001953, + "step": 659100 + }, + { + "epoch": 87.89333333333333, + "grad_norm": 0.8828876614570618, + "learning_rate": 6.074000000000001e-06, + "loss": 1.2293293762207032, + "step": 659200 + }, + { + "epoch": 87.90666666666667, + "grad_norm": 0.8725327253341675, + "learning_rate": 6.067333333333334e-06, + "loss": 1.2297024536132812, + "step": 659300 + }, + { + "epoch": 87.92, + "grad_norm": 0.8858145475387573, + "learning_rate": 6.060666666666667e-06, + "loss": 1.231685256958008, + "step": 659400 + }, + { + "epoch": 87.93333333333334, + "grad_norm": 0.8619421124458313, + "learning_rate": 6.054066666666667e-06, + "loss": 1.227284164428711, + "step": 659500 + }, + { + "epoch": 87.94666666666667, + "grad_norm": 0.8720583915710449, + "learning_rate": 6.0474e-06, + "loss": 1.2259799194335939, + "step": 659600 + }, + { + "epoch": 87.96, + "grad_norm": 0.9668527841567993, + "learning_rate": 6.040733333333334e-06, + "loss": 1.2270006561279296, + "step": 659700 + }, + { + "epoch": 87.97333333333333, + "grad_norm": 0.8741607069969177, + "learning_rate": 6.034066666666667e-06, + "loss": 1.2342427825927735, + "step": 659800 + }, + { + "epoch": 87.98666666666666, + "grad_norm": 0.9043229818344116, + "learning_rate": 6.0274e-06, + "loss": 1.2302300262451171, + "step": 659900 + }, + { + "epoch": 88.0, + "grad_norm": 0.8614948391914368, + "learning_rate": 6.020733333333334e-06, + "loss": 1.2277375030517579, + "step": 660000 + }, + { + "epoch": 88.01333333333334, + "grad_norm": 0.8440125584602356, + "learning_rate": 6.014066666666667e-06, + "loss": 1.2098700714111328, + "step": 660100 + }, + { + "epoch": 88.02666666666667, + "grad_norm": 0.8795732855796814, + "learning_rate": 6.0074e-06, + "loss": 1.2145481872558594, + "step": 660200 + }, + { + "epoch": 88.04, + "grad_norm": 0.9388731718063354, + "learning_rate": 6.000733333333334e-06, + "loss": 1.2113359832763673, + "step": 660300 + }, + { + "epoch": 88.05333333333333, + "grad_norm": 0.9349479079246521, + "learning_rate": 5.994066666666667e-06, + "loss": 1.2147767639160156, + "step": 660400 + }, + { + "epoch": 88.06666666666666, + "grad_norm": 0.8859605193138123, + "learning_rate": 5.9874e-06, + "loss": 1.2128377532958985, + "step": 660500 + }, + { + "epoch": 88.08, + "grad_norm": 0.9146501421928406, + "learning_rate": 5.980733333333334e-06, + "loss": 1.2150657653808594, + "step": 660600 + }, + { + "epoch": 88.09333333333333, + "grad_norm": 0.8667988777160645, + "learning_rate": 5.974066666666667e-06, + "loss": 1.2110105133056641, + "step": 660700 + }, + { + "epoch": 88.10666666666667, + "grad_norm": 0.9527876973152161, + "learning_rate": 5.9674e-06, + "loss": 1.2121669006347657, + "step": 660800 + }, + { + "epoch": 88.12, + "grad_norm": 0.9000213146209717, + "learning_rate": 5.960733333333334e-06, + "loss": 1.2135875701904297, + "step": 660900 + }, + { + "epoch": 88.13333333333334, + "grad_norm": 0.9539820551872253, + "learning_rate": 5.954066666666667e-06, + "loss": 1.2122388458251954, + "step": 661000 + }, + { + "epoch": 88.14666666666666, + "grad_norm": 0.8554858565330505, + "learning_rate": 5.9474e-06, + "loss": 1.2159857177734374, + "step": 661100 + }, + { + "epoch": 88.16, + "grad_norm": 0.8576105833053589, + "learning_rate": 5.940733333333334e-06, + "loss": 1.214066848754883, + "step": 661200 + }, + { + "epoch": 88.17333333333333, + "grad_norm": 0.938084065914154, + "learning_rate": 5.934066666666667e-06, + "loss": 1.2105953216552734, + "step": 661300 + }, + { + "epoch": 88.18666666666667, + "grad_norm": 0.9702228307723999, + "learning_rate": 5.9274e-06, + "loss": 1.218522186279297, + "step": 661400 + }, + { + "epoch": 88.2, + "grad_norm": 0.9396708607673645, + "learning_rate": 5.9208e-06, + "loss": 1.2127921295166015, + "step": 661500 + }, + { + "epoch": 88.21333333333334, + "grad_norm": 0.8523475527763367, + "learning_rate": 5.914133333333333e-06, + "loss": 1.2177894592285157, + "step": 661600 + }, + { + "epoch": 88.22666666666667, + "grad_norm": 0.9162245392799377, + "learning_rate": 5.907466666666666e-06, + "loss": 1.2171736145019532, + "step": 661700 + }, + { + "epoch": 88.24, + "grad_norm": 0.909294843673706, + "learning_rate": 5.9008e-06, + "loss": 1.2113314819335939, + "step": 661800 + }, + { + "epoch": 88.25333333333333, + "grad_norm": 0.822942316532135, + "learning_rate": 5.8941333333333334e-06, + "loss": 1.2202149200439454, + "step": 661900 + }, + { + "epoch": 88.26666666666667, + "grad_norm": 0.9095253944396973, + "learning_rate": 5.8874666666666666e-06, + "loss": 1.2153319549560546, + "step": 662000 + }, + { + "epoch": 88.28, + "grad_norm": 0.9375243782997131, + "learning_rate": 5.8808000000000005e-06, + "loss": 1.2144713592529297, + "step": 662100 + }, + { + "epoch": 88.29333333333334, + "grad_norm": 0.8997815847396851, + "learning_rate": 5.874133333333334e-06, + "loss": 1.2190712738037108, + "step": 662200 + }, + { + "epoch": 88.30666666666667, + "grad_norm": 0.831521213054657, + "learning_rate": 5.867466666666667e-06, + "loss": 1.217860107421875, + "step": 662300 + }, + { + "epoch": 88.32, + "grad_norm": 0.9350924491882324, + "learning_rate": 5.860800000000001e-06, + "loss": 1.2177651977539063, + "step": 662400 + }, + { + "epoch": 88.33333333333333, + "grad_norm": 0.9330512285232544, + "learning_rate": 5.854133333333334e-06, + "loss": 1.2167528533935548, + "step": 662500 + }, + { + "epoch": 88.34666666666666, + "grad_norm": 0.8898918032646179, + "learning_rate": 5.847466666666667e-06, + "loss": 1.2190279388427734, + "step": 662600 + }, + { + "epoch": 88.36, + "grad_norm": 0.9025176167488098, + "learning_rate": 5.8408e-06, + "loss": 1.2180398559570313, + "step": 662700 + }, + { + "epoch": 88.37333333333333, + "grad_norm": 0.9351064562797546, + "learning_rate": 5.834133333333334e-06, + "loss": 1.2161642456054687, + "step": 662800 + }, + { + "epoch": 88.38666666666667, + "grad_norm": 0.8625040054321289, + "learning_rate": 5.827466666666667e-06, + "loss": 1.2185457611083985, + "step": 662900 + }, + { + "epoch": 88.4, + "grad_norm": 0.8925670981407166, + "learning_rate": 5.8208e-06, + "loss": 1.219074478149414, + "step": 663000 + }, + { + "epoch": 88.41333333333333, + "grad_norm": 0.8783120512962341, + "learning_rate": 5.814133333333334e-06, + "loss": 1.2135558319091797, + "step": 663100 + }, + { + "epoch": 88.42666666666666, + "grad_norm": 0.9169807434082031, + "learning_rate": 5.8074666666666665e-06, + "loss": 1.2201927185058594, + "step": 663200 + }, + { + "epoch": 88.44, + "grad_norm": 0.9173704385757446, + "learning_rate": 5.8008e-06, + "loss": 1.2177742767333983, + "step": 663300 + }, + { + "epoch": 88.45333333333333, + "grad_norm": 0.9613504409790039, + "learning_rate": 5.7941333333333335e-06, + "loss": 1.2174214935302734, + "step": 663400 + }, + { + "epoch": 88.46666666666667, + "grad_norm": 0.9053784012794495, + "learning_rate": 5.7875333333333335e-06, + "loss": 1.2211524963378906, + "step": 663500 + }, + { + "epoch": 88.48, + "grad_norm": 0.8977215886116028, + "learning_rate": 5.7808666666666674e-06, + "loss": 1.2180975341796876, + "step": 663600 + }, + { + "epoch": 88.49333333333334, + "grad_norm": 0.9076542258262634, + "learning_rate": 5.7742000000000006e-06, + "loss": 1.2158096313476563, + "step": 663700 + }, + { + "epoch": 88.50666666666666, + "grad_norm": 0.9158226251602173, + "learning_rate": 5.767533333333334e-06, + "loss": 1.218250961303711, + "step": 663800 + }, + { + "epoch": 88.52, + "grad_norm": 0.9524657726287842, + "learning_rate": 5.760866666666667e-06, + "loss": 1.2187013244628906, + "step": 663900 + }, + { + "epoch": 88.53333333333333, + "grad_norm": 0.931620717048645, + "learning_rate": 5.754200000000001e-06, + "loss": 1.2208222198486327, + "step": 664000 + }, + { + "epoch": 88.54666666666667, + "grad_norm": 0.9844622015953064, + "learning_rate": 5.747533333333334e-06, + "loss": 1.2225242614746095, + "step": 664100 + }, + { + "epoch": 88.56, + "grad_norm": 0.9277436137199402, + "learning_rate": 5.740866666666667e-06, + "loss": 1.2201163482666015, + "step": 664200 + }, + { + "epoch": 88.57333333333334, + "grad_norm": 0.8789235353469849, + "learning_rate": 5.7342e-06, + "loss": 1.2224101257324218, + "step": 664300 + }, + { + "epoch": 88.58666666666667, + "grad_norm": 0.9313110709190369, + "learning_rate": 5.727533333333333e-06, + "loss": 1.2181917572021483, + "step": 664400 + }, + { + "epoch": 88.6, + "grad_norm": 0.9556103348731995, + "learning_rate": 5.720866666666666e-06, + "loss": 1.2208975219726563, + "step": 664500 + }, + { + "epoch": 88.61333333333333, + "grad_norm": 0.9766332507133484, + "learning_rate": 5.7142e-06, + "loss": 1.2226788330078124, + "step": 664600 + }, + { + "epoch": 88.62666666666667, + "grad_norm": 0.8844559192657471, + "learning_rate": 5.707533333333333e-06, + "loss": 1.2230628204345704, + "step": 664700 + }, + { + "epoch": 88.64, + "grad_norm": 0.8664445281028748, + "learning_rate": 5.7008666666666665e-06, + "loss": 1.2178475189208984, + "step": 664800 + }, + { + "epoch": 88.65333333333334, + "grad_norm": 0.9188632369041443, + "learning_rate": 5.6942000000000005e-06, + "loss": 1.2229035186767578, + "step": 664900 + }, + { + "epoch": 88.66666666666667, + "grad_norm": 0.9534464478492737, + "learning_rate": 5.687533333333334e-06, + "loss": 1.2201636505126954, + "step": 665000 + }, + { + "epoch": 88.68, + "grad_norm": 0.8590039610862732, + "learning_rate": 5.680866666666667e-06, + "loss": 1.2217842102050782, + "step": 665100 + }, + { + "epoch": 88.69333333333333, + "grad_norm": 0.9341287016868591, + "learning_rate": 5.674200000000001e-06, + "loss": 1.2232160949707032, + "step": 665200 + }, + { + "epoch": 88.70666666666666, + "grad_norm": 0.851928174495697, + "learning_rate": 5.667533333333334e-06, + "loss": 1.2228545379638671, + "step": 665300 + }, + { + "epoch": 88.72, + "grad_norm": 0.8709028959274292, + "learning_rate": 5.660866666666667e-06, + "loss": 1.224917449951172, + "step": 665400 + }, + { + "epoch": 88.73333333333333, + "grad_norm": 0.9012889266014099, + "learning_rate": 5.654266666666667e-06, + "loss": 1.2241983795166016, + "step": 665500 + }, + { + "epoch": 88.74666666666667, + "grad_norm": 0.9009696245193481, + "learning_rate": 5.6476e-06, + "loss": 1.2221090698242187, + "step": 665600 + }, + { + "epoch": 88.76, + "grad_norm": 0.911006510257721, + "learning_rate": 5.640933333333334e-06, + "loss": 1.2238897705078124, + "step": 665700 + }, + { + "epoch": 88.77333333333333, + "grad_norm": 0.9231188297271729, + "learning_rate": 5.634266666666667e-06, + "loss": 1.2244586944580078, + "step": 665800 + }, + { + "epoch": 88.78666666666666, + "grad_norm": 0.8802729249000549, + "learning_rate": 5.6276e-06, + "loss": 1.2238041687011718, + "step": 665900 + }, + { + "epoch": 88.8, + "grad_norm": 0.9299485683441162, + "learning_rate": 5.620933333333333e-06, + "loss": 1.2228865814208985, + "step": 666000 + }, + { + "epoch": 88.81333333333333, + "grad_norm": 0.8775696754455566, + "learning_rate": 5.614266666666667e-06, + "loss": 1.2266053771972656, + "step": 666100 + }, + { + "epoch": 88.82666666666667, + "grad_norm": 0.8580496311187744, + "learning_rate": 5.6076e-06, + "loss": 1.2229470062255858, + "step": 666200 + }, + { + "epoch": 88.84, + "grad_norm": 0.9241933822631836, + "learning_rate": 5.6009333333333334e-06, + "loss": 1.2229337310791015, + "step": 666300 + }, + { + "epoch": 88.85333333333334, + "grad_norm": 0.9201433658599854, + "learning_rate": 5.594266666666667e-06, + "loss": 1.2231851959228515, + "step": 666400 + }, + { + "epoch": 88.86666666666666, + "grad_norm": 0.9110192060470581, + "learning_rate": 5.5876000000000005e-06, + "loss": 1.225495376586914, + "step": 666500 + }, + { + "epoch": 88.88, + "grad_norm": 0.9712668061256409, + "learning_rate": 5.580933333333334e-06, + "loss": 1.2213951873779296, + "step": 666600 + }, + { + "epoch": 88.89333333333333, + "grad_norm": 0.8844518065452576, + "learning_rate": 5.574266666666668e-06, + "loss": 1.2240930938720702, + "step": 666700 + }, + { + "epoch": 88.90666666666667, + "grad_norm": 0.9546579122543335, + "learning_rate": 5.567600000000001e-06, + "loss": 1.226476287841797, + "step": 666800 + }, + { + "epoch": 88.92, + "grad_norm": 0.8933039903640747, + "learning_rate": 5.560933333333333e-06, + "loss": 1.2249333953857422, + "step": 666900 + }, + { + "epoch": 88.93333333333334, + "grad_norm": 0.9278029799461365, + "learning_rate": 5.554266666666667e-06, + "loss": 1.224727325439453, + "step": 667000 + }, + { + "epoch": 88.94666666666667, + "grad_norm": 0.9233989119529724, + "learning_rate": 5.5476e-06, + "loss": 1.2280259704589844, + "step": 667100 + }, + { + "epoch": 88.96, + "grad_norm": 0.8747185468673706, + "learning_rate": 5.540933333333333e-06, + "loss": 1.2299307250976563, + "step": 667200 + }, + { + "epoch": 88.97333333333333, + "grad_norm": 0.9252629280090332, + "learning_rate": 5.534266666666667e-06, + "loss": 1.2250003051757812, + "step": 667300 + }, + { + "epoch": 88.98666666666666, + "grad_norm": 0.8873195052146912, + "learning_rate": 5.5276e-06, + "loss": 1.2243363189697265, + "step": 667400 + }, + { + "epoch": 89.0, + "grad_norm": 0.8737539052963257, + "learning_rate": 5.521e-06, + "loss": 1.2273259735107422, + "step": 667500 + }, + { + "epoch": 89.01333333333334, + "grad_norm": 0.8994724154472351, + "learning_rate": 5.514333333333334e-06, + "loss": 1.2065253448486328, + "step": 667600 + }, + { + "epoch": 89.02666666666667, + "grad_norm": 0.8773201107978821, + "learning_rate": 5.507666666666667e-06, + "loss": 1.2066268157958984, + "step": 667700 + }, + { + "epoch": 89.04, + "grad_norm": 0.9253839254379272, + "learning_rate": 5.501e-06, + "loss": 1.2097785949707032, + "step": 667800 + }, + { + "epoch": 89.05333333333333, + "grad_norm": 0.9354826211929321, + "learning_rate": 5.4943333333333335e-06, + "loss": 1.2124601745605468, + "step": 667900 + }, + { + "epoch": 89.06666666666666, + "grad_norm": 0.8192519545555115, + "learning_rate": 5.487666666666667e-06, + "loss": 1.2061328887939453, + "step": 668000 + }, + { + "epoch": 89.08, + "grad_norm": 0.8822228312492371, + "learning_rate": 5.481e-06, + "loss": 1.2111685180664062, + "step": 668100 + }, + { + "epoch": 89.09333333333333, + "grad_norm": 0.914986252784729, + "learning_rate": 5.474333333333334e-06, + "loss": 1.211805648803711, + "step": 668200 + }, + { + "epoch": 89.10666666666667, + "grad_norm": 0.9351910948753357, + "learning_rate": 5.467666666666667e-06, + "loss": 1.2042337036132813, + "step": 668300 + }, + { + "epoch": 89.12, + "grad_norm": 0.9000957012176514, + "learning_rate": 5.461e-06, + "loss": 1.2112418365478517, + "step": 668400 + }, + { + "epoch": 89.13333333333334, + "grad_norm": 0.9186215996742249, + "learning_rate": 5.454333333333334e-06, + "loss": 1.2067839050292968, + "step": 668500 + }, + { + "epoch": 89.14666666666666, + "grad_norm": 0.8771560788154602, + "learning_rate": 5.447666666666667e-06, + "loss": 1.2109234619140625, + "step": 668600 + }, + { + "epoch": 89.16, + "grad_norm": 0.9361634254455566, + "learning_rate": 5.441e-06, + "loss": 1.2112667846679688, + "step": 668700 + }, + { + "epoch": 89.17333333333333, + "grad_norm": 0.9080511331558228, + "learning_rate": 5.434333333333334e-06, + "loss": 1.2091513824462892, + "step": 668800 + }, + { + "epoch": 89.18666666666667, + "grad_norm": 0.9087415933609009, + "learning_rate": 5.427666666666667e-06, + "loss": 1.209826431274414, + "step": 668900 + }, + { + "epoch": 89.2, + "grad_norm": 0.8701626658439636, + "learning_rate": 5.421e-06, + "loss": 1.213840560913086, + "step": 669000 + }, + { + "epoch": 89.21333333333334, + "grad_norm": 0.8287436962127686, + "learning_rate": 5.414333333333333e-06, + "loss": 1.2152737426757811, + "step": 669100 + }, + { + "epoch": 89.22666666666667, + "grad_norm": 0.9009669423103333, + "learning_rate": 5.407666666666667e-06, + "loss": 1.2100643157958983, + "step": 669200 + }, + { + "epoch": 89.24, + "grad_norm": 0.9228776693344116, + "learning_rate": 5.4010000000000005e-06, + "loss": 1.2168802642822265, + "step": 669300 + }, + { + "epoch": 89.25333333333333, + "grad_norm": 0.8409181237220764, + "learning_rate": 5.394333333333334e-06, + "loss": 1.212371597290039, + "step": 669400 + }, + { + "epoch": 89.26666666666667, + "grad_norm": 0.8922165632247925, + "learning_rate": 5.3877333333333335e-06, + "loss": 1.2138323974609375, + "step": 669500 + }, + { + "epoch": 89.28, + "grad_norm": 0.9000787138938904, + "learning_rate": 5.381066666666667e-06, + "loss": 1.211551742553711, + "step": 669600 + }, + { + "epoch": 89.29333333333334, + "grad_norm": 0.8795856237411499, + "learning_rate": 5.374400000000001e-06, + "loss": 1.209929428100586, + "step": 669700 + }, + { + "epoch": 89.30666666666667, + "grad_norm": 0.8757795691490173, + "learning_rate": 5.367733333333334e-06, + "loss": 1.2100962829589843, + "step": 669800 + }, + { + "epoch": 89.32, + "grad_norm": 0.9000317454338074, + "learning_rate": 5.361066666666667e-06, + "loss": 1.2151318359375, + "step": 669900 + }, + { + "epoch": 89.33333333333333, + "grad_norm": 0.9361692667007446, + "learning_rate": 5.354400000000001e-06, + "loss": 1.212879638671875, + "step": 670000 + }, + { + "epoch": 89.34666666666666, + "grad_norm": 0.8566330671310425, + "learning_rate": 5.347733333333334e-06, + "loss": 1.2143052673339845, + "step": 670100 + }, + { + "epoch": 89.36, + "grad_norm": 0.9182000160217285, + "learning_rate": 5.341066666666667e-06, + "loss": 1.2156490325927733, + "step": 670200 + }, + { + "epoch": 89.37333333333333, + "grad_norm": 0.8849942684173584, + "learning_rate": 5.3344e-06, + "loss": 1.2155682373046874, + "step": 670300 + }, + { + "epoch": 89.38666666666667, + "grad_norm": 0.948589563369751, + "learning_rate": 5.327733333333334e-06, + "loss": 1.2158618927001954, + "step": 670400 + }, + { + "epoch": 89.4, + "grad_norm": 0.870638906955719, + "learning_rate": 5.321066666666667e-06, + "loss": 1.2140827178955078, + "step": 670500 + }, + { + "epoch": 89.41333333333333, + "grad_norm": 0.9196882247924805, + "learning_rate": 5.3144e-06, + "loss": 1.2150801086425782, + "step": 670600 + }, + { + "epoch": 89.42666666666666, + "grad_norm": 0.9664023518562317, + "learning_rate": 5.3077333333333334e-06, + "loss": 1.216825942993164, + "step": 670700 + }, + { + "epoch": 89.44, + "grad_norm": 0.9256287813186646, + "learning_rate": 5.3010666666666665e-06, + "loss": 1.212283935546875, + "step": 670800 + }, + { + "epoch": 89.45333333333333, + "grad_norm": 0.8842042684555054, + "learning_rate": 5.2944e-06, + "loss": 1.2171527862548828, + "step": 670900 + }, + { + "epoch": 89.46666666666667, + "grad_norm": 0.8998342752456665, + "learning_rate": 5.287733333333334e-06, + "loss": 1.212213363647461, + "step": 671000 + }, + { + "epoch": 89.48, + "grad_norm": 0.8604910969734192, + "learning_rate": 5.281066666666667e-06, + "loss": 1.2178185272216797, + "step": 671100 + }, + { + "epoch": 89.49333333333334, + "grad_norm": 0.9574484825134277, + "learning_rate": 5.2744e-06, + "loss": 1.2192330169677734, + "step": 671200 + }, + { + "epoch": 89.50666666666666, + "grad_norm": 0.9058186411857605, + "learning_rate": 5.267733333333334e-06, + "loss": 1.2213152313232423, + "step": 671300 + }, + { + "epoch": 89.52, + "grad_norm": 0.8801227807998657, + "learning_rate": 5.261066666666667e-06, + "loss": 1.2144708251953125, + "step": 671400 + }, + { + "epoch": 89.53333333333333, + "grad_norm": 0.9073898196220398, + "learning_rate": 5.2544e-06, + "loss": 1.2126658630371094, + "step": 671500 + }, + { + "epoch": 89.54666666666667, + "grad_norm": 0.8924538493156433, + "learning_rate": 5.2478e-06, + "loss": 1.2133853149414062, + "step": 671600 + }, + { + "epoch": 89.56, + "grad_norm": 0.8589732646942139, + "learning_rate": 5.241133333333333e-06, + "loss": 1.216434783935547, + "step": 671700 + }, + { + "epoch": 89.57333333333334, + "grad_norm": 0.8957362174987793, + "learning_rate": 5.234466666666667e-06, + "loss": 1.2140837860107423, + "step": 671800 + }, + { + "epoch": 89.58666666666667, + "grad_norm": 0.9001540541648865, + "learning_rate": 5.2278e-06, + "loss": 1.2144945526123048, + "step": 671900 + }, + { + "epoch": 89.6, + "grad_norm": 0.9157114028930664, + "learning_rate": 5.221133333333333e-06, + "loss": 1.217526397705078, + "step": 672000 + }, + { + "epoch": 89.61333333333333, + "grad_norm": 0.9104243516921997, + "learning_rate": 5.214466666666666e-06, + "loss": 1.2151515197753906, + "step": 672100 + }, + { + "epoch": 89.62666666666667, + "grad_norm": 0.9351614117622375, + "learning_rate": 5.2078e-06, + "loss": 1.2169363403320312, + "step": 672200 + }, + { + "epoch": 89.64, + "grad_norm": 0.8728863596916199, + "learning_rate": 5.2011333333333335e-06, + "loss": 1.2184024810791017, + "step": 672300 + }, + { + "epoch": 89.65333333333334, + "grad_norm": 0.8635854125022888, + "learning_rate": 5.194466666666667e-06, + "loss": 1.221156997680664, + "step": 672400 + }, + { + "epoch": 89.66666666666667, + "grad_norm": 0.964632511138916, + "learning_rate": 5.1878000000000005e-06, + "loss": 1.2214126586914062, + "step": 672500 + }, + { + "epoch": 89.68, + "grad_norm": 0.934449315071106, + "learning_rate": 5.181133333333334e-06, + "loss": 1.2185586547851563, + "step": 672600 + }, + { + "epoch": 89.69333333333333, + "grad_norm": 0.8776857256889343, + "learning_rate": 5.174466666666667e-06, + "loss": 1.223541488647461, + "step": 672700 + }, + { + "epoch": 89.70666666666666, + "grad_norm": 0.9184494018554688, + "learning_rate": 5.167800000000001e-06, + "loss": 1.2196424865722657, + "step": 672800 + }, + { + "epoch": 89.72, + "grad_norm": 0.9252554178237915, + "learning_rate": 5.161133333333334e-06, + "loss": 1.216479263305664, + "step": 672900 + }, + { + "epoch": 89.73333333333333, + "grad_norm": 0.8667902946472168, + "learning_rate": 5.154466666666667e-06, + "loss": 1.2210060882568359, + "step": 673000 + }, + { + "epoch": 89.74666666666667, + "grad_norm": 0.8820723295211792, + "learning_rate": 5.147800000000001e-06, + "loss": 1.218407211303711, + "step": 673100 + }, + { + "epoch": 89.76, + "grad_norm": 0.8611978888511658, + "learning_rate": 5.141133333333334e-06, + "loss": 1.2198648071289062, + "step": 673200 + }, + { + "epoch": 89.77333333333333, + "grad_norm": 0.8947012424468994, + "learning_rate": 5.134466666666666e-06, + "loss": 1.223352584838867, + "step": 673300 + }, + { + "epoch": 89.78666666666666, + "grad_norm": 0.8866718411445618, + "learning_rate": 5.1278e-06, + "loss": 1.2186518096923828, + "step": 673400 + }, + { + "epoch": 89.8, + "grad_norm": 0.8624308705329895, + "learning_rate": 5.121133333333333e-06, + "loss": 1.2187384033203126, + "step": 673500 + }, + { + "epoch": 89.81333333333333, + "grad_norm": 0.9323912858963013, + "learning_rate": 5.114533333333333e-06, + "loss": 1.2192816925048828, + "step": 673600 + }, + { + "epoch": 89.82666666666667, + "grad_norm": 0.8835723996162415, + "learning_rate": 5.107866666666667e-06, + "loss": 1.2200238037109374, + "step": 673700 + }, + { + "epoch": 89.84, + "grad_norm": 0.9300037026405334, + "learning_rate": 5.1012e-06, + "loss": 1.2211270141601562, + "step": 673800 + }, + { + "epoch": 89.85333333333334, + "grad_norm": 0.8939962983131409, + "learning_rate": 5.0945333333333335e-06, + "loss": 1.2231653594970704, + "step": 673900 + }, + { + "epoch": 89.86666666666666, + "grad_norm": 0.8576112985610962, + "learning_rate": 5.0878666666666675e-06, + "loss": 1.2236614990234376, + "step": 674000 + }, + { + "epoch": 89.88, + "grad_norm": 0.9398141503334045, + "learning_rate": 5.081200000000001e-06, + "loss": 1.2185122680664062, + "step": 674100 + }, + { + "epoch": 89.89333333333333, + "grad_norm": 0.8942651152610779, + "learning_rate": 5.074533333333334e-06, + "loss": 1.2213440704345704, + "step": 674200 + }, + { + "epoch": 89.90666666666667, + "grad_norm": 0.9299342036247253, + "learning_rate": 5.067866666666667e-06, + "loss": 1.217512741088867, + "step": 674300 + }, + { + "epoch": 89.92, + "grad_norm": 0.9243706464767456, + "learning_rate": 5.0612e-06, + "loss": 1.2212284851074218, + "step": 674400 + }, + { + "epoch": 89.93333333333334, + "grad_norm": 0.9882511496543884, + "learning_rate": 5.054533333333333e-06, + "loss": 1.2185203552246093, + "step": 674500 + }, + { + "epoch": 89.94666666666667, + "grad_norm": 0.8811713457107544, + "learning_rate": 5.047866666666667e-06, + "loss": 1.2216316223144532, + "step": 674600 + }, + { + "epoch": 89.96, + "grad_norm": 0.8866249322891235, + "learning_rate": 5.0412e-06, + "loss": 1.2194962310791015, + "step": 674700 + }, + { + "epoch": 89.97333333333333, + "grad_norm": 0.8802648186683655, + "learning_rate": 5.034533333333333e-06, + "loss": 1.222801513671875, + "step": 674800 + }, + { + "epoch": 89.98666666666666, + "grad_norm": 0.9410952925682068, + "learning_rate": 5.027866666666667e-06, + "loss": 1.22396484375, + "step": 674900 + }, + { + "epoch": 90.0, + "grad_norm": 0.8734154105186462, + "learning_rate": 5.0212e-06, + "loss": 1.2178419494628907, + "step": 675000 + }, + { + "epoch": 90.01333333333334, + "grad_norm": 0.9289048910140991, + "learning_rate": 5.014533333333333e-06, + "loss": 1.2043888092041015, + "step": 675100 + }, + { + "epoch": 90.02666666666667, + "grad_norm": 0.918481707572937, + "learning_rate": 5.0078666666666665e-06, + "loss": 1.2099720001220704, + "step": 675200 + }, + { + "epoch": 90.04, + "grad_norm": 0.9005312919616699, + "learning_rate": 5.0012000000000005e-06, + "loss": 1.2031187438964843, + "step": 675300 + }, + { + "epoch": 90.05333333333333, + "grad_norm": 0.957449197769165, + "learning_rate": 4.994533333333334e-06, + "loss": 1.2071781158447266, + "step": 675400 + }, + { + "epoch": 90.06666666666666, + "grad_norm": 0.910042941570282, + "learning_rate": 4.987866666666667e-06, + "loss": 1.2066966247558595, + "step": 675500 + }, + { + "epoch": 90.08, + "grad_norm": 0.8937907218933105, + "learning_rate": 4.981266666666667e-06, + "loss": 1.2074835205078125, + "step": 675600 + }, + { + "epoch": 90.09333333333333, + "grad_norm": 0.8752577900886536, + "learning_rate": 4.9746e-06, + "loss": 1.208895492553711, + "step": 675700 + }, + { + "epoch": 90.10666666666667, + "grad_norm": 0.8520717620849609, + "learning_rate": 4.967933333333334e-06, + "loss": 1.2053620147705078, + "step": 675800 + }, + { + "epoch": 90.12, + "grad_norm": 0.8855275511741638, + "learning_rate": 4.961266666666667e-06, + "loss": 1.208665771484375, + "step": 675900 + }, + { + "epoch": 90.13333333333334, + "grad_norm": 0.9631090760231018, + "learning_rate": 4.9546e-06, + "loss": 1.2092572021484376, + "step": 676000 + }, + { + "epoch": 90.14666666666666, + "grad_norm": 0.8636735677719116, + "learning_rate": 4.947933333333334e-06, + "loss": 1.205884246826172, + "step": 676100 + }, + { + "epoch": 90.16, + "grad_norm": 0.9243836998939514, + "learning_rate": 4.941266666666667e-06, + "loss": 1.2106959533691406, + "step": 676200 + }, + { + "epoch": 90.17333333333333, + "grad_norm": 0.9383106231689453, + "learning_rate": 4.9346e-06, + "loss": 1.2110034942626953, + "step": 676300 + }, + { + "epoch": 90.18666666666667, + "grad_norm": 0.8857131600379944, + "learning_rate": 4.927933333333334e-06, + "loss": 1.2083201599121094, + "step": 676400 + }, + { + "epoch": 90.2, + "grad_norm": 0.9113370180130005, + "learning_rate": 4.921266666666667e-06, + "loss": 1.2091306304931642, + "step": 676500 + }, + { + "epoch": 90.21333333333334, + "grad_norm": 0.8388907313346863, + "learning_rate": 4.9146e-06, + "loss": 1.2119139862060546, + "step": 676600 + }, + { + "epoch": 90.22666666666667, + "grad_norm": 0.847788393497467, + "learning_rate": 4.9079333333333335e-06, + "loss": 1.210832061767578, + "step": 676700 + }, + { + "epoch": 90.24, + "grad_norm": 0.8751381039619446, + "learning_rate": 4.901266666666667e-06, + "loss": 1.20989013671875, + "step": 676800 + }, + { + "epoch": 90.25333333333333, + "grad_norm": 0.8831285238265991, + "learning_rate": 4.8946000000000005e-06, + "loss": 1.2075450134277343, + "step": 676900 + }, + { + "epoch": 90.26666666666667, + "grad_norm": 0.9753007888793945, + "learning_rate": 4.887933333333334e-06, + "loss": 1.2117955780029297, + "step": 677000 + }, + { + "epoch": 90.28, + "grad_norm": 0.952491819858551, + "learning_rate": 4.881266666666667e-06, + "loss": 1.212402572631836, + "step": 677100 + }, + { + "epoch": 90.29333333333334, + "grad_norm": 0.9106137156486511, + "learning_rate": 4.8746e-06, + "loss": 1.2052900695800781, + "step": 677200 + }, + { + "epoch": 90.30666666666667, + "grad_norm": 0.926100492477417, + "learning_rate": 4.867933333333333e-06, + "loss": 1.2105538177490234, + "step": 677300 + }, + { + "epoch": 90.32, + "grad_norm": 0.8455801010131836, + "learning_rate": 4.861266666666667e-06, + "loss": 1.2121770477294922, + "step": 677400 + }, + { + "epoch": 90.33333333333333, + "grad_norm": 0.9143370389938354, + "learning_rate": 4.8546e-06, + "loss": 1.2079702758789062, + "step": 677500 + }, + { + "epoch": 90.34666666666666, + "grad_norm": 0.8968600034713745, + "learning_rate": 4.848000000000001e-06, + "loss": 1.2125999450683593, + "step": 677600 + }, + { + "epoch": 90.36, + "grad_norm": 0.8847452402114868, + "learning_rate": 4.841333333333334e-06, + "loss": 1.2117592620849609, + "step": 677700 + }, + { + "epoch": 90.37333333333333, + "grad_norm": 0.9163066744804382, + "learning_rate": 4.834666666666667e-06, + "loss": 1.2076231384277343, + "step": 677800 + }, + { + "epoch": 90.38666666666667, + "grad_norm": 0.9202780723571777, + "learning_rate": 4.828e-06, + "loss": 1.210972213745117, + "step": 677900 + }, + { + "epoch": 90.4, + "grad_norm": 0.9594050049781799, + "learning_rate": 4.821333333333333e-06, + "loss": 1.2101927947998048, + "step": 678000 + }, + { + "epoch": 90.41333333333333, + "grad_norm": 0.8588058948516846, + "learning_rate": 4.814666666666666e-06, + "loss": 1.2125477600097656, + "step": 678100 + }, + { + "epoch": 90.42666666666666, + "grad_norm": 0.8945148587226868, + "learning_rate": 4.808e-06, + "loss": 1.2116073608398437, + "step": 678200 + }, + { + "epoch": 90.44, + "grad_norm": 0.9500113129615784, + "learning_rate": 4.8013333333333335e-06, + "loss": 1.2133517456054688, + "step": 678300 + }, + { + "epoch": 90.45333333333333, + "grad_norm": 0.8919427990913391, + "learning_rate": 4.794666666666667e-06, + "loss": 1.2090089416503906, + "step": 678400 + }, + { + "epoch": 90.46666666666667, + "grad_norm": 0.9410059452056885, + "learning_rate": 4.788e-06, + "loss": 1.210514144897461, + "step": 678500 + }, + { + "epoch": 90.48, + "grad_norm": 0.9124793410301208, + "learning_rate": 4.781333333333334e-06, + "loss": 1.2172020721435546, + "step": 678600 + }, + { + "epoch": 90.49333333333334, + "grad_norm": 0.9013743996620178, + "learning_rate": 4.774666666666667e-06, + "loss": 1.2081442260742188, + "step": 678700 + }, + { + "epoch": 90.50666666666666, + "grad_norm": 0.9235624670982361, + "learning_rate": 4.768e-06, + "loss": 1.2106606292724609, + "step": 678800 + }, + { + "epoch": 90.52, + "grad_norm": 0.9490922689437866, + "learning_rate": 4.761333333333334e-06, + "loss": 1.2129822540283204, + "step": 678900 + }, + { + "epoch": 90.53333333333333, + "grad_norm": 0.9190055727958679, + "learning_rate": 4.754666666666667e-06, + "loss": 1.2117118835449219, + "step": 679000 + }, + { + "epoch": 90.54666666666667, + "grad_norm": 0.9155454635620117, + "learning_rate": 4.748e-06, + "loss": 1.2153356170654297, + "step": 679100 + }, + { + "epoch": 90.56, + "grad_norm": 0.9508551955223083, + "learning_rate": 4.741333333333334e-06, + "loss": 1.214925765991211, + "step": 679200 + }, + { + "epoch": 90.57333333333334, + "grad_norm": 0.9003883600234985, + "learning_rate": 4.734666666666667e-06, + "loss": 1.2155438232421876, + "step": 679300 + }, + { + "epoch": 90.58666666666667, + "grad_norm": 0.8104000091552734, + "learning_rate": 4.728e-06, + "loss": 1.212996063232422, + "step": 679400 + }, + { + "epoch": 90.6, + "grad_norm": 0.8884322047233582, + "learning_rate": 4.721333333333334e-06, + "loss": 1.208837890625, + "step": 679500 + }, + { + "epoch": 90.61333333333333, + "grad_norm": 0.900663435459137, + "learning_rate": 4.714733333333333e-06, + "loss": 1.2164701843261718, + "step": 679600 + }, + { + "epoch": 90.62666666666667, + "grad_norm": 0.9068719148635864, + "learning_rate": 4.7080666666666665e-06, + "loss": 1.2146306610107422, + "step": 679700 + }, + { + "epoch": 90.64, + "grad_norm": 0.8906852006912231, + "learning_rate": 4.7014e-06, + "loss": 1.211735382080078, + "step": 679800 + }, + { + "epoch": 90.65333333333334, + "grad_norm": 0.8880618214607239, + "learning_rate": 4.6947333333333335e-06, + "loss": 1.2147854614257811, + "step": 679900 + }, + { + "epoch": 90.66666666666667, + "grad_norm": 0.9201205372810364, + "learning_rate": 4.688066666666667e-06, + "loss": 1.2103929901123047, + "step": 680000 + }, + { + "epoch": 90.68, + "grad_norm": 0.8812013864517212, + "learning_rate": 4.681400000000001e-06, + "loss": 1.2157184600830078, + "step": 680100 + }, + { + "epoch": 90.69333333333333, + "grad_norm": 0.8855476975440979, + "learning_rate": 4.674733333333334e-06, + "loss": 1.2132430267333985, + "step": 680200 + }, + { + "epoch": 90.70666666666666, + "grad_norm": 0.9242827892303467, + "learning_rate": 4.668066666666667e-06, + "loss": 1.2172369384765624, + "step": 680300 + }, + { + "epoch": 90.72, + "grad_norm": 0.9888787865638733, + "learning_rate": 4.661400000000001e-06, + "loss": 1.2181033325195312, + "step": 680400 + }, + { + "epoch": 90.73333333333333, + "grad_norm": 0.9318944811820984, + "learning_rate": 4.654733333333334e-06, + "loss": 1.2127987670898437, + "step": 680500 + }, + { + "epoch": 90.74666666666667, + "grad_norm": 0.9456973671913147, + "learning_rate": 4.648066666666667e-06, + "loss": 1.213536834716797, + "step": 680600 + }, + { + "epoch": 90.76, + "grad_norm": 0.951168954372406, + "learning_rate": 4.6414e-06, + "loss": 1.2176351928710938, + "step": 680700 + }, + { + "epoch": 90.77333333333333, + "grad_norm": 0.9500468969345093, + "learning_rate": 4.634733333333333e-06, + "loss": 1.2171255493164062, + "step": 680800 + }, + { + "epoch": 90.78666666666666, + "grad_norm": 0.9571161270141602, + "learning_rate": 4.628066666666666e-06, + "loss": 1.2125713348388671, + "step": 680900 + }, + { + "epoch": 90.8, + "grad_norm": 0.9615257978439331, + "learning_rate": 4.6214e-06, + "loss": 1.2181266021728516, + "step": 681000 + }, + { + "epoch": 90.81333333333333, + "grad_norm": 0.9538195133209229, + "learning_rate": 4.6147333333333335e-06, + "loss": 1.2164169311523438, + "step": 681100 + }, + { + "epoch": 90.82666666666667, + "grad_norm": 0.9797369241714478, + "learning_rate": 4.6080666666666666e-06, + "loss": 1.218907012939453, + "step": 681200 + }, + { + "epoch": 90.84, + "grad_norm": 0.9338709712028503, + "learning_rate": 4.6014000000000005e-06, + "loss": 1.2184577941894532, + "step": 681300 + }, + { + "epoch": 90.85333333333334, + "grad_norm": 0.9682694673538208, + "learning_rate": 4.594733333333334e-06, + "loss": 1.2135367584228516, + "step": 681400 + }, + { + "epoch": 90.86666666666666, + "grad_norm": 0.8703393936157227, + "learning_rate": 4.588066666666667e-06, + "loss": 1.2133425903320312, + "step": 681500 + }, + { + "epoch": 90.88, + "grad_norm": 0.9350166916847229, + "learning_rate": 4.581466666666667e-06, + "loss": 1.2187168884277344, + "step": 681600 + }, + { + "epoch": 90.89333333333333, + "grad_norm": 0.8443960547447205, + "learning_rate": 4.5748e-06, + "loss": 1.2129023742675782, + "step": 681700 + }, + { + "epoch": 90.90666666666667, + "grad_norm": 0.9225748181343079, + "learning_rate": 4.568133333333333e-06, + "loss": 1.21633056640625, + "step": 681800 + }, + { + "epoch": 90.92, + "grad_norm": 0.8942683339118958, + "learning_rate": 4.561466666666667e-06, + "loss": 1.2165023040771485, + "step": 681900 + }, + { + "epoch": 90.93333333333334, + "grad_norm": 0.9616734981536865, + "learning_rate": 4.5548e-06, + "loss": 1.2154533386230468, + "step": 682000 + }, + { + "epoch": 90.94666666666667, + "grad_norm": 0.881159782409668, + "learning_rate": 4.548133333333333e-06, + "loss": 1.2169892120361328, + "step": 682100 + }, + { + "epoch": 90.96, + "grad_norm": 0.9500011205673218, + "learning_rate": 4.541466666666667e-06, + "loss": 1.218693389892578, + "step": 682200 + }, + { + "epoch": 90.97333333333333, + "grad_norm": 0.9119076728820801, + "learning_rate": 4.5348e-06, + "loss": 1.216949462890625, + "step": 682300 + }, + { + "epoch": 90.98666666666666, + "grad_norm": 0.8956566452980042, + "learning_rate": 4.528133333333333e-06, + "loss": 1.2165196228027344, + "step": 682400 + }, + { + "epoch": 91.0, + "grad_norm": 0.8929473757743835, + "learning_rate": 4.521466666666667e-06, + "loss": 1.2148597717285157, + "step": 682500 + }, + { + "epoch": 91.01333333333334, + "grad_norm": 0.85610431432724, + "learning_rate": 4.5148e-06, + "loss": 1.200636215209961, + "step": 682600 + }, + { + "epoch": 91.02666666666667, + "grad_norm": 0.9160832166671753, + "learning_rate": 4.5081333333333335e-06, + "loss": 1.2068274688720704, + "step": 682700 + }, + { + "epoch": 91.04, + "grad_norm": 0.9119850993156433, + "learning_rate": 4.501466666666667e-06, + "loss": 1.208277587890625, + "step": 682800 + }, + { + "epoch": 91.05333333333333, + "grad_norm": 0.9079209566116333, + "learning_rate": 4.4948000000000006e-06, + "loss": 1.2017269897460938, + "step": 682900 + }, + { + "epoch": 91.06666666666666, + "grad_norm": 0.9564381241798401, + "learning_rate": 4.488133333333334e-06, + "loss": 1.207140655517578, + "step": 683000 + }, + { + "epoch": 91.08, + "grad_norm": 0.9598597288131714, + "learning_rate": 4.481466666666667e-06, + "loss": 1.203281784057617, + "step": 683100 + }, + { + "epoch": 91.09333333333333, + "grad_norm": 0.861584484577179, + "learning_rate": 4.474800000000001e-06, + "loss": 1.2081224060058593, + "step": 683200 + }, + { + "epoch": 91.10666666666667, + "grad_norm": 0.8429510593414307, + "learning_rate": 4.468133333333334e-06, + "loss": 1.2070238494873047, + "step": 683300 + }, + { + "epoch": 91.12, + "grad_norm": 0.8890085220336914, + "learning_rate": 4.461466666666667e-06, + "loss": 1.2043938446044922, + "step": 683400 + }, + { + "epoch": 91.13333333333334, + "grad_norm": 0.8663833737373352, + "learning_rate": 4.4548e-06, + "loss": 1.20203125, + "step": 683500 + }, + { + "epoch": 91.14666666666666, + "grad_norm": 0.9313666224479675, + "learning_rate": 4.448133333333333e-06, + "loss": 1.2063787841796876, + "step": 683600 + }, + { + "epoch": 91.16, + "grad_norm": 0.8840457201004028, + "learning_rate": 4.441533333333334e-06, + "loss": 1.2069801330566405, + "step": 683700 + }, + { + "epoch": 91.17333333333333, + "grad_norm": 0.8782556653022766, + "learning_rate": 4.434866666666667e-06, + "loss": 1.2082003021240235, + "step": 683800 + }, + { + "epoch": 91.18666666666667, + "grad_norm": 0.9454366564750671, + "learning_rate": 4.4282e-06, + "loss": 1.2090266418457032, + "step": 683900 + }, + { + "epoch": 91.2, + "grad_norm": 0.8991572260856628, + "learning_rate": 4.421533333333334e-06, + "loss": 1.2046781921386718, + "step": 684000 + }, + { + "epoch": 91.21333333333334, + "grad_norm": 0.8746281862258911, + "learning_rate": 4.414866666666667e-06, + "loss": 1.2073801422119141, + "step": 684100 + }, + { + "epoch": 91.22666666666667, + "grad_norm": 0.9214029312133789, + "learning_rate": 4.4082e-06, + "loss": 1.2062918853759765, + "step": 684200 + }, + { + "epoch": 91.24, + "grad_norm": 0.9604611992835999, + "learning_rate": 4.4015333333333335e-06, + "loss": 1.2054164123535156, + "step": 684300 + }, + { + "epoch": 91.25333333333333, + "grad_norm": 0.8675783276557922, + "learning_rate": 4.394866666666667e-06, + "loss": 1.208896942138672, + "step": 684400 + }, + { + "epoch": 91.26666666666667, + "grad_norm": 0.9738113880157471, + "learning_rate": 4.3882e-06, + "loss": 1.2100360107421875, + "step": 684500 + }, + { + "epoch": 91.28, + "grad_norm": 0.8885136842727661, + "learning_rate": 4.381533333333334e-06, + "loss": 1.2070569610595703, + "step": 684600 + }, + { + "epoch": 91.29333333333334, + "grad_norm": 0.9425179362297058, + "learning_rate": 4.374866666666667e-06, + "loss": 1.2077506256103516, + "step": 684700 + }, + { + "epoch": 91.30666666666667, + "grad_norm": 0.9048968553543091, + "learning_rate": 4.3682e-06, + "loss": 1.2081721496582032, + "step": 684800 + }, + { + "epoch": 91.32, + "grad_norm": 0.9390761256217957, + "learning_rate": 4.361533333333333e-06, + "loss": 1.207364044189453, + "step": 684900 + }, + { + "epoch": 91.33333333333333, + "grad_norm": 0.9158327579498291, + "learning_rate": 4.354866666666667e-06, + "loss": 1.2073294830322265, + "step": 685000 + }, + { + "epoch": 91.34666666666666, + "grad_norm": 0.8673156499862671, + "learning_rate": 4.3482e-06, + "loss": 1.2052005004882813, + "step": 685100 + }, + { + "epoch": 91.36, + "grad_norm": 0.8864044547080994, + "learning_rate": 4.341533333333333e-06, + "loss": 1.2118058013916015, + "step": 685200 + }, + { + "epoch": 91.37333333333333, + "grad_norm": 0.9207347631454468, + "learning_rate": 4.334866666666667e-06, + "loss": 1.2065187835693358, + "step": 685300 + }, + { + "epoch": 91.38666666666667, + "grad_norm": 0.900858998298645, + "learning_rate": 4.3282e-06, + "loss": 1.2105420684814454, + "step": 685400 + }, + { + "epoch": 91.4, + "grad_norm": 0.9267945885658264, + "learning_rate": 4.3215333333333335e-06, + "loss": 1.20435302734375, + "step": 685500 + }, + { + "epoch": 91.41333333333333, + "grad_norm": 0.9637866020202637, + "learning_rate": 4.314866666666667e-06, + "loss": 1.2085104370117188, + "step": 685600 + }, + { + "epoch": 91.42666666666666, + "grad_norm": 0.9455682039260864, + "learning_rate": 4.3082666666666665e-06, + "loss": 1.2091656494140626, + "step": 685700 + }, + { + "epoch": 91.44, + "grad_norm": 0.8735678195953369, + "learning_rate": 4.3016000000000005e-06, + "loss": 1.2076645660400391, + "step": 685800 + }, + { + "epoch": 91.45333333333333, + "grad_norm": 0.9294810891151428, + "learning_rate": 4.2949333333333336e-06, + "loss": 1.208891830444336, + "step": 685900 + }, + { + "epoch": 91.46666666666667, + "grad_norm": 0.92054283618927, + "learning_rate": 4.288266666666667e-06, + "loss": 1.2102249145507813, + "step": 686000 + }, + { + "epoch": 91.48, + "grad_norm": 0.8439618349075317, + "learning_rate": 4.2816e-06, + "loss": 1.2142427062988281, + "step": 686100 + }, + { + "epoch": 91.49333333333334, + "grad_norm": 0.8484886884689331, + "learning_rate": 4.274933333333334e-06, + "loss": 1.2077330017089845, + "step": 686200 + }, + { + "epoch": 91.50666666666666, + "grad_norm": 0.9745410680770874, + "learning_rate": 4.268266666666667e-06, + "loss": 1.2066510009765625, + "step": 686300 + }, + { + "epoch": 91.52, + "grad_norm": 0.8893364667892456, + "learning_rate": 4.2616e-06, + "loss": 1.2086053466796876, + "step": 686400 + }, + { + "epoch": 91.53333333333333, + "grad_norm": 0.8825772404670715, + "learning_rate": 4.254933333333334e-06, + "loss": 1.2083636474609376, + "step": 686500 + }, + { + "epoch": 91.54666666666667, + "grad_norm": 0.8804160356521606, + "learning_rate": 4.248266666666667e-06, + "loss": 1.2095064544677734, + "step": 686600 + }, + { + "epoch": 91.56, + "grad_norm": 0.9658887386322021, + "learning_rate": 4.2416e-06, + "loss": 1.2093119049072265, + "step": 686700 + }, + { + "epoch": 91.57333333333334, + "grad_norm": 0.952987790107727, + "learning_rate": 4.234933333333334e-06, + "loss": 1.2097184753417969, + "step": 686800 + }, + { + "epoch": 91.58666666666667, + "grad_norm": 0.8630662560462952, + "learning_rate": 4.228266666666667e-06, + "loss": 1.2081199645996095, + "step": 686900 + }, + { + "epoch": 91.6, + "grad_norm": 0.9706721901893616, + "learning_rate": 4.2215999999999995e-06, + "loss": 1.2103736114501953, + "step": 687000 + }, + { + "epoch": 91.61333333333333, + "grad_norm": 0.9168404936790466, + "learning_rate": 4.2149333333333335e-06, + "loss": 1.2104512023925782, + "step": 687100 + }, + { + "epoch": 91.62666666666667, + "grad_norm": 0.9021251201629639, + "learning_rate": 4.208266666666667e-06, + "loss": 1.208455810546875, + "step": 687200 + }, + { + "epoch": 91.64, + "grad_norm": 0.9148797392845154, + "learning_rate": 4.2016e-06, + "loss": 1.21326904296875, + "step": 687300 + }, + { + "epoch": 91.65333333333334, + "grad_norm": 0.8841809630393982, + "learning_rate": 4.194933333333334e-06, + "loss": 1.2070911407470704, + "step": 687400 + }, + { + "epoch": 91.66666666666667, + "grad_norm": 0.9368838667869568, + "learning_rate": 4.188266666666667e-06, + "loss": 1.2107268524169923, + "step": 687500 + }, + { + "epoch": 91.68, + "grad_norm": 0.9060821533203125, + "learning_rate": 4.1816e-06, + "loss": 1.2130730438232422, + "step": 687600 + }, + { + "epoch": 91.69333333333333, + "grad_norm": 0.9751666188240051, + "learning_rate": 4.175000000000001e-06, + "loss": 1.2097231292724608, + "step": 687700 + }, + { + "epoch": 91.70666666666666, + "grad_norm": 0.8472406268119812, + "learning_rate": 4.168333333333334e-06, + "loss": 1.2085147094726563, + "step": 687800 + }, + { + "epoch": 91.72, + "grad_norm": 1.005416989326477, + "learning_rate": 4.161666666666667e-06, + "loss": 1.2118323516845704, + "step": 687900 + }, + { + "epoch": 91.73333333333333, + "grad_norm": 0.8820925951004028, + "learning_rate": 4.155e-06, + "loss": 1.2112535095214845, + "step": 688000 + }, + { + "epoch": 91.74666666666667, + "grad_norm": 0.8622952103614807, + "learning_rate": 4.148333333333333e-06, + "loss": 1.2110252380371094, + "step": 688100 + }, + { + "epoch": 91.76, + "grad_norm": 0.8722947239875793, + "learning_rate": 4.141666666666666e-06, + "loss": 1.2133953857421875, + "step": 688200 + }, + { + "epoch": 91.77333333333333, + "grad_norm": 0.9638639688491821, + "learning_rate": 4.135e-06, + "loss": 1.2091949462890625, + "step": 688300 + }, + { + "epoch": 91.78666666666666, + "grad_norm": 0.9140656590461731, + "learning_rate": 4.128333333333333e-06, + "loss": 1.2114816284179688, + "step": 688400 + }, + { + "epoch": 91.8, + "grad_norm": 0.9216871857643127, + "learning_rate": 4.1216666666666665e-06, + "loss": 1.2120486450195314, + "step": 688500 + }, + { + "epoch": 91.81333333333333, + "grad_norm": 0.8618937134742737, + "learning_rate": 4.115e-06, + "loss": 1.2109370422363281, + "step": 688600 + }, + { + "epoch": 91.82666666666667, + "grad_norm": 0.8921952247619629, + "learning_rate": 4.1083333333333335e-06, + "loss": 1.2133558654785157, + "step": 688700 + }, + { + "epoch": 91.84, + "grad_norm": 0.895045280456543, + "learning_rate": 4.101666666666667e-06, + "loss": 1.2121337890625, + "step": 688800 + }, + { + "epoch": 91.85333333333334, + "grad_norm": 0.8907344341278076, + "learning_rate": 4.095000000000001e-06, + "loss": 1.2133706665039063, + "step": 688900 + }, + { + "epoch": 91.86666666666666, + "grad_norm": 0.87125563621521, + "learning_rate": 4.088333333333334e-06, + "loss": 1.2131654357910155, + "step": 689000 + }, + { + "epoch": 91.88, + "grad_norm": 0.8448019623756409, + "learning_rate": 4.081666666666667e-06, + "loss": 1.2095771026611328, + "step": 689100 + }, + { + "epoch": 91.89333333333333, + "grad_norm": 0.8955243229866028, + "learning_rate": 4.075e-06, + "loss": 1.2100251770019532, + "step": 689200 + }, + { + "epoch": 91.90666666666667, + "grad_norm": 0.9619772434234619, + "learning_rate": 4.068333333333334e-06, + "loss": 1.2143017578125, + "step": 689300 + }, + { + "epoch": 91.92, + "grad_norm": 0.893493115901947, + "learning_rate": 4.061666666666667e-06, + "loss": 1.213790283203125, + "step": 689400 + }, + { + "epoch": 91.93333333333334, + "grad_norm": 0.9905881285667419, + "learning_rate": 4.055e-06, + "loss": 1.2162788391113282, + "step": 689500 + }, + { + "epoch": 91.94666666666667, + "grad_norm": 0.9450225830078125, + "learning_rate": 4.048333333333334e-06, + "loss": 1.213459243774414, + "step": 689600 + }, + { + "epoch": 91.96, + "grad_norm": 0.9374111294746399, + "learning_rate": 4.041733333333333e-06, + "loss": 1.21458984375, + "step": 689700 + }, + { + "epoch": 91.97333333333333, + "grad_norm": 0.8688250780105591, + "learning_rate": 4.035066666666667e-06, + "loss": 1.2136087799072266, + "step": 689800 + }, + { + "epoch": 91.98666666666666, + "grad_norm": 0.912335216999054, + "learning_rate": 4.0284e-06, + "loss": 1.2162496948242187, + "step": 689900 + }, + { + "epoch": 92.0, + "grad_norm": 0.8809793591499329, + "learning_rate": 4.021733333333333e-06, + "loss": 1.215945281982422, + "step": 690000 + }, + { + "epoch": 92.01333333333334, + "grad_norm": 0.8624962568283081, + "learning_rate": 4.015066666666667e-06, + "loss": 1.1997320556640625, + "step": 690100 + }, + { + "epoch": 92.02666666666667, + "grad_norm": 0.8585469126701355, + "learning_rate": 4.0084000000000005e-06, + "loss": 1.198604278564453, + "step": 690200 + }, + { + "epoch": 92.04, + "grad_norm": 0.9289453029632568, + "learning_rate": 4.0017333333333336e-06, + "loss": 1.2011491394042968, + "step": 690300 + }, + { + "epoch": 92.05333333333333, + "grad_norm": 0.81109219789505, + "learning_rate": 3.995066666666667e-06, + "loss": 1.200951156616211, + "step": 690400 + }, + { + "epoch": 92.06666666666666, + "grad_norm": 0.8511631488800049, + "learning_rate": 3.988400000000001e-06, + "loss": 1.2002388000488282, + "step": 690500 + }, + { + "epoch": 92.08, + "grad_norm": 0.9203524589538574, + "learning_rate": 3.981733333333334e-06, + "loss": 1.1966284942626952, + "step": 690600 + }, + { + "epoch": 92.09333333333333, + "grad_norm": 0.9373264312744141, + "learning_rate": 3.975066666666667e-06, + "loss": 1.20522705078125, + "step": 690700 + }, + { + "epoch": 92.10666666666667, + "grad_norm": 0.8882933855056763, + "learning_rate": 3.9684e-06, + "loss": 1.1983634948730468, + "step": 690800 + }, + { + "epoch": 92.12, + "grad_norm": 0.9304332733154297, + "learning_rate": 3.961733333333333e-06, + "loss": 1.201865005493164, + "step": 690900 + }, + { + "epoch": 92.13333333333334, + "grad_norm": 0.8630163669586182, + "learning_rate": 3.955066666666667e-06, + "loss": 1.203161163330078, + "step": 691000 + }, + { + "epoch": 92.14666666666666, + "grad_norm": 0.8729649782180786, + "learning_rate": 3.9484e-06, + "loss": 1.1991504669189452, + "step": 691100 + }, + { + "epoch": 92.16, + "grad_norm": 0.9168478846549988, + "learning_rate": 3.941733333333333e-06, + "loss": 1.2062628936767579, + "step": 691200 + }, + { + "epoch": 92.17333333333333, + "grad_norm": 0.947083055973053, + "learning_rate": 3.935066666666666e-06, + "loss": 1.2042913818359375, + "step": 691300 + }, + { + "epoch": 92.18666666666667, + "grad_norm": 0.8406407237052917, + "learning_rate": 3.9284e-06, + "loss": 1.2058570861816407, + "step": 691400 + }, + { + "epoch": 92.2, + "grad_norm": 0.8867647051811218, + "learning_rate": 3.9217333333333335e-06, + "loss": 1.205999526977539, + "step": 691500 + }, + { + "epoch": 92.21333333333334, + "grad_norm": 0.8558156490325928, + "learning_rate": 3.915066666666667e-06, + "loss": 1.2016780853271485, + "step": 691600 + }, + { + "epoch": 92.22666666666667, + "grad_norm": 0.9120957851409912, + "learning_rate": 3.9084666666666665e-06, + "loss": 1.2028411102294922, + "step": 691700 + }, + { + "epoch": 92.24, + "grad_norm": 0.8666041493415833, + "learning_rate": 3.9018e-06, + "loss": 1.2044637298583984, + "step": 691800 + }, + { + "epoch": 92.25333333333333, + "grad_norm": 0.9331375956535339, + "learning_rate": 3.895133333333334e-06, + "loss": 1.2048243713378906, + "step": 691900 + }, + { + "epoch": 92.26666666666667, + "grad_norm": 0.9363828301429749, + "learning_rate": 3.888466666666667e-06, + "loss": 1.20224609375, + "step": 692000 + }, + { + "epoch": 92.28, + "grad_norm": 0.8703069686889648, + "learning_rate": 3.8818e-06, + "loss": 1.2026631927490234, + "step": 692100 + }, + { + "epoch": 92.29333333333334, + "grad_norm": 0.8834508061408997, + "learning_rate": 3.875133333333334e-06, + "loss": 1.205963134765625, + "step": 692200 + }, + { + "epoch": 92.30666666666667, + "grad_norm": 0.9188662171363831, + "learning_rate": 3.868466666666667e-06, + "loss": 1.2017127227783204, + "step": 692300 + }, + { + "epoch": 92.32, + "grad_norm": 0.9342883825302124, + "learning_rate": 3.8618e-06, + "loss": 1.2051532745361329, + "step": 692400 + }, + { + "epoch": 92.33333333333333, + "grad_norm": 0.8774183988571167, + "learning_rate": 3.855133333333333e-06, + "loss": 1.2030648803710937, + "step": 692500 + }, + { + "epoch": 92.34666666666666, + "grad_norm": 0.9485383033752441, + "learning_rate": 3.848466666666667e-06, + "loss": 1.2045017242431642, + "step": 692600 + }, + { + "epoch": 92.36, + "grad_norm": 0.8900927305221558, + "learning_rate": 3.8418e-06, + "loss": 1.2074580383300781, + "step": 692700 + }, + { + "epoch": 92.37333333333333, + "grad_norm": 0.92417973279953, + "learning_rate": 3.835133333333333e-06, + "loss": 1.2043077087402343, + "step": 692800 + }, + { + "epoch": 92.38666666666667, + "grad_norm": 0.9447479844093323, + "learning_rate": 3.828466666666667e-06, + "loss": 1.2089013671875, + "step": 692900 + }, + { + "epoch": 92.4, + "grad_norm": 0.8772882223129272, + "learning_rate": 3.8218e-06, + "loss": 1.2071390533447266, + "step": 693000 + }, + { + "epoch": 92.41333333333333, + "grad_norm": 1.0013352632522583, + "learning_rate": 3.8151333333333335e-06, + "loss": 1.2067708587646484, + "step": 693100 + }, + { + "epoch": 92.42666666666666, + "grad_norm": 0.933141827583313, + "learning_rate": 3.808466666666667e-06, + "loss": 1.203813018798828, + "step": 693200 + }, + { + "epoch": 92.44, + "grad_norm": 0.8919726610183716, + "learning_rate": 3.8018000000000006e-06, + "loss": 1.2031111907958985, + "step": 693300 + }, + { + "epoch": 92.45333333333333, + "grad_norm": 0.9562348127365112, + "learning_rate": 3.7951333333333333e-06, + "loss": 1.2068241882324218, + "step": 693400 + }, + { + "epoch": 92.46666666666667, + "grad_norm": 0.8733388185501099, + "learning_rate": 3.7884666666666664e-06, + "loss": 1.2057405090332032, + "step": 693500 + }, + { + "epoch": 92.48, + "grad_norm": 0.837426483631134, + "learning_rate": 3.7818e-06, + "loss": 1.2067436218261718, + "step": 693600 + }, + { + "epoch": 92.49333333333334, + "grad_norm": 0.881060004234314, + "learning_rate": 3.7752000000000003e-06, + "loss": 1.2039698028564454, + "step": 693700 + }, + { + "epoch": 92.50666666666666, + "grad_norm": 0.9489794969558716, + "learning_rate": 3.768533333333334e-06, + "loss": 1.2064761352539062, + "step": 693800 + }, + { + "epoch": 92.52, + "grad_norm": 0.8895357847213745, + "learning_rate": 3.761866666666667e-06, + "loss": 1.202109375, + "step": 693900 + }, + { + "epoch": 92.53333333333333, + "grad_norm": 0.9040202498435974, + "learning_rate": 3.7552000000000005e-06, + "loss": 1.2075955963134766, + "step": 694000 + }, + { + "epoch": 92.54666666666667, + "grad_norm": 0.9203453660011292, + "learning_rate": 3.7485333333333336e-06, + "loss": 1.2062896728515624, + "step": 694100 + }, + { + "epoch": 92.56, + "grad_norm": 0.8410115242004395, + "learning_rate": 3.741866666666667e-06, + "loss": 1.2079099273681642, + "step": 694200 + }, + { + "epoch": 92.57333333333334, + "grad_norm": 0.8776598572731018, + "learning_rate": 3.7352000000000007e-06, + "loss": 1.201023941040039, + "step": 694300 + }, + { + "epoch": 92.58666666666667, + "grad_norm": 0.9552059769630432, + "learning_rate": 3.7285333333333334e-06, + "loss": 1.209650650024414, + "step": 694400 + }, + { + "epoch": 92.6, + "grad_norm": 0.9305794835090637, + "learning_rate": 3.7218666666666665e-06, + "loss": 1.2058026885986328, + "step": 694500 + }, + { + "epoch": 92.61333333333333, + "grad_norm": 0.9237838387489319, + "learning_rate": 3.7152e-06, + "loss": 1.2126660919189454, + "step": 694600 + }, + { + "epoch": 92.62666666666667, + "grad_norm": 0.9203336834907532, + "learning_rate": 3.708533333333333e-06, + "loss": 1.207015380859375, + "step": 694700 + }, + { + "epoch": 92.64, + "grad_norm": 0.9319577217102051, + "learning_rate": 3.7018666666666667e-06, + "loss": 1.2062096405029297, + "step": 694800 + }, + { + "epoch": 92.65333333333334, + "grad_norm": 0.8748674988746643, + "learning_rate": 3.6952000000000002e-06, + "loss": 1.2033453369140625, + "step": 694900 + }, + { + "epoch": 92.66666666666667, + "grad_norm": 0.8956521153450012, + "learning_rate": 3.6885333333333333e-06, + "loss": 1.2087307739257813, + "step": 695000 + }, + { + "epoch": 92.68, + "grad_norm": 0.8896095156669617, + "learning_rate": 3.681866666666667e-06, + "loss": 1.2088866424560547, + "step": 695100 + }, + { + "epoch": 92.69333333333333, + "grad_norm": 0.9287655353546143, + "learning_rate": 3.6752e-06, + "loss": 1.2099744415283202, + "step": 695200 + }, + { + "epoch": 92.70666666666666, + "grad_norm": 0.8579117655754089, + "learning_rate": 3.6685333333333335e-06, + "loss": 1.2089561462402343, + "step": 695300 + }, + { + "epoch": 92.72, + "grad_norm": 0.906623125076294, + "learning_rate": 3.661866666666667e-06, + "loss": 1.207219009399414, + "step": 695400 + }, + { + "epoch": 92.73333333333333, + "grad_norm": 0.8688279390335083, + "learning_rate": 3.6552e-06, + "loss": 1.205895233154297, + "step": 695500 + }, + { + "epoch": 92.74666666666667, + "grad_norm": 0.9425486326217651, + "learning_rate": 3.6485333333333337e-06, + "loss": 1.205015869140625, + "step": 695600 + }, + { + "epoch": 92.76, + "grad_norm": 0.9034813046455383, + "learning_rate": 3.6419333333333332e-06, + "loss": 1.2078257751464845, + "step": 695700 + }, + { + "epoch": 92.77333333333333, + "grad_norm": 0.9471731781959534, + "learning_rate": 3.6352666666666668e-06, + "loss": 1.2084870147705078, + "step": 695800 + }, + { + "epoch": 92.78666666666666, + "grad_norm": 0.8931053280830383, + "learning_rate": 3.6286e-06, + "loss": 1.2065433502197265, + "step": 695900 + }, + { + "epoch": 92.8, + "grad_norm": 0.9375083446502686, + "learning_rate": 3.6219333333333334e-06, + "loss": 1.2090350341796876, + "step": 696000 + }, + { + "epoch": 92.81333333333333, + "grad_norm": 0.8571840524673462, + "learning_rate": 3.615266666666667e-06, + "loss": 1.2078850555419922, + "step": 696100 + }, + { + "epoch": 92.82666666666667, + "grad_norm": 0.9313179850578308, + "learning_rate": 3.6086e-06, + "loss": 1.2092186737060546, + "step": 696200 + }, + { + "epoch": 92.84, + "grad_norm": 0.8702300786972046, + "learning_rate": 3.6019333333333336e-06, + "loss": 1.209949951171875, + "step": 696300 + }, + { + "epoch": 92.85333333333334, + "grad_norm": 0.9009842872619629, + "learning_rate": 3.5952666666666667e-06, + "loss": 1.2110611724853515, + "step": 696400 + }, + { + "epoch": 92.86666666666666, + "grad_norm": 0.8789703249931335, + "learning_rate": 3.5886000000000003e-06, + "loss": 1.212374267578125, + "step": 696500 + }, + { + "epoch": 92.88, + "grad_norm": 0.937931478023529, + "learning_rate": 3.581933333333334e-06, + "loss": 1.2115992736816406, + "step": 696600 + }, + { + "epoch": 92.89333333333333, + "grad_norm": 0.8966504335403442, + "learning_rate": 3.575266666666667e-06, + "loss": 1.2094432067871095, + "step": 696700 + }, + { + "epoch": 92.90666666666667, + "grad_norm": 0.9230213761329651, + "learning_rate": 3.5686000000000004e-06, + "loss": 1.2086225128173829, + "step": 696800 + }, + { + "epoch": 92.92, + "grad_norm": 0.9597765803337097, + "learning_rate": 3.561933333333334e-06, + "loss": 1.2142015075683594, + "step": 696900 + }, + { + "epoch": 92.93333333333334, + "grad_norm": 0.9093431830406189, + "learning_rate": 3.555266666666667e-06, + "loss": 1.2086906433105469, + "step": 697000 + }, + { + "epoch": 92.94666666666667, + "grad_norm": 0.897400438785553, + "learning_rate": 3.5485999999999998e-06, + "loss": 1.211206283569336, + "step": 697100 + }, + { + "epoch": 92.96, + "grad_norm": 0.867046594619751, + "learning_rate": 3.5419333333333333e-06, + "loss": 1.2069461822509766, + "step": 697200 + }, + { + "epoch": 92.97333333333333, + "grad_norm": 0.8881245255470276, + "learning_rate": 3.5352666666666664e-06, + "loss": 1.2137161254882813, + "step": 697300 + }, + { + "epoch": 92.98666666666666, + "grad_norm": 0.9253084063529968, + "learning_rate": 3.5286e-06, + "loss": 1.2097924041748047, + "step": 697400 + }, + { + "epoch": 93.0, + "grad_norm": 0.938310980796814, + "learning_rate": 3.5219333333333335e-06, + "loss": 1.2097466278076172, + "step": 697500 + }, + { + "epoch": 93.01333333333334, + "grad_norm": 0.9459820985794067, + "learning_rate": 3.5152666666666666e-06, + "loss": 1.2002715301513671, + "step": 697600 + }, + { + "epoch": 93.02666666666667, + "grad_norm": 0.8648054003715515, + "learning_rate": 3.508666666666667e-06, + "loss": 1.1980596923828124, + "step": 697700 + }, + { + "epoch": 93.04, + "grad_norm": 0.9034267067909241, + "learning_rate": 3.5020000000000005e-06, + "loss": 1.1980625915527343, + "step": 697800 + }, + { + "epoch": 93.05333333333333, + "grad_norm": 0.891040027141571, + "learning_rate": 3.4953333333333336e-06, + "loss": 1.196813735961914, + "step": 697900 + }, + { + "epoch": 93.06666666666666, + "grad_norm": 0.8857132792472839, + "learning_rate": 3.488666666666667e-06, + "loss": 1.1995645141601563, + "step": 698000 + }, + { + "epoch": 93.08, + "grad_norm": 0.8220590949058533, + "learning_rate": 3.482e-06, + "loss": 1.199000930786133, + "step": 698100 + }, + { + "epoch": 93.09333333333333, + "grad_norm": 0.9337181448936462, + "learning_rate": 3.4753333333333334e-06, + "loss": 1.1981783294677735, + "step": 698200 + }, + { + "epoch": 93.10666666666667, + "grad_norm": 0.8952512145042419, + "learning_rate": 3.4686666666666665e-06, + "loss": 1.203648910522461, + "step": 698300 + }, + { + "epoch": 93.12, + "grad_norm": 0.932554304599762, + "learning_rate": 3.462e-06, + "loss": 1.2012419891357422, + "step": 698400 + }, + { + "epoch": 93.13333333333334, + "grad_norm": 0.8617738485336304, + "learning_rate": 3.455333333333333e-06, + "loss": 1.1994852447509765, + "step": 698500 + }, + { + "epoch": 93.14666666666666, + "grad_norm": 0.9104321599006653, + "learning_rate": 3.4486666666666667e-06, + "loss": 1.207906723022461, + "step": 698600 + }, + { + "epoch": 93.16, + "grad_norm": 0.8374426960945129, + "learning_rate": 3.4420000000000002e-06, + "loss": 1.1999403381347655, + "step": 698700 + }, + { + "epoch": 93.17333333333333, + "grad_norm": 0.8905571103096008, + "learning_rate": 3.4353333333333334e-06, + "loss": 1.1972482299804688, + "step": 698800 + }, + { + "epoch": 93.18666666666667, + "grad_norm": 0.8699285387992859, + "learning_rate": 3.428666666666667e-06, + "loss": 1.2003094482421874, + "step": 698900 + }, + { + "epoch": 93.2, + "grad_norm": 0.8738979697227478, + "learning_rate": 3.422e-06, + "loss": 1.2002088928222656, + "step": 699000 + }, + { + "epoch": 93.21333333333334, + "grad_norm": 0.8332516551017761, + "learning_rate": 3.4153333333333336e-06, + "loss": 1.1950491333007813, + "step": 699100 + }, + { + "epoch": 93.22666666666667, + "grad_norm": 0.8510139584541321, + "learning_rate": 3.408666666666667e-06, + "loss": 1.1995225524902344, + "step": 699200 + }, + { + "epoch": 93.24, + "grad_norm": 0.9004165530204773, + "learning_rate": 3.402e-06, + "loss": 1.2011061096191407, + "step": 699300 + }, + { + "epoch": 93.25333333333333, + "grad_norm": 0.9277057647705078, + "learning_rate": 3.3953333333333337e-06, + "loss": 1.2032598876953124, + "step": 699400 + }, + { + "epoch": 93.26666666666667, + "grad_norm": 0.9293489456176758, + "learning_rate": 3.388666666666667e-06, + "loss": 1.2010295867919922, + "step": 699500 + }, + { + "epoch": 93.28, + "grad_norm": 0.9297680854797363, + "learning_rate": 3.3820000000000004e-06, + "loss": 1.1998831176757812, + "step": 699600 + }, + { + "epoch": 93.29333333333334, + "grad_norm": 0.9310411810874939, + "learning_rate": 3.375333333333334e-06, + "loss": 1.2022223663330078, + "step": 699700 + }, + { + "epoch": 93.30666666666667, + "grad_norm": 0.8587492108345032, + "learning_rate": 3.3687333333333334e-06, + "loss": 1.2029190063476562, + "step": 699800 + }, + { + "epoch": 93.32, + "grad_norm": 0.8777822852134705, + "learning_rate": 3.362066666666667e-06, + "loss": 1.1976495361328126, + "step": 699900 + }, + { + "epoch": 93.33333333333333, + "grad_norm": 0.9253079891204834, + "learning_rate": 3.3554e-06, + "loss": 1.205234909057617, + "step": 700000 + }, + { + "epoch": 93.34666666666666, + "grad_norm": 0.9172502160072327, + "learning_rate": 3.3487333333333336e-06, + "loss": 1.2025753784179687, + "step": 700100 + }, + { + "epoch": 93.36, + "grad_norm": 0.8835508227348328, + "learning_rate": 3.3420666666666667e-06, + "loss": 1.203255386352539, + "step": 700200 + }, + { + "epoch": 93.37333333333333, + "grad_norm": 0.9050441980361938, + "learning_rate": 3.3354000000000003e-06, + "loss": 1.2038262176513672, + "step": 700300 + }, + { + "epoch": 93.38666666666667, + "grad_norm": 0.8916856050491333, + "learning_rate": 3.328733333333334e-06, + "loss": 1.2023595428466798, + "step": 700400 + }, + { + "epoch": 93.4, + "grad_norm": 0.945793867111206, + "learning_rate": 3.322066666666667e-06, + "loss": 1.2015753173828125, + "step": 700500 + }, + { + "epoch": 93.41333333333333, + "grad_norm": 0.8409869074821472, + "learning_rate": 3.3154000000000005e-06, + "loss": 1.200424346923828, + "step": 700600 + }, + { + "epoch": 93.42666666666666, + "grad_norm": 0.8369486927986145, + "learning_rate": 3.308733333333334e-06, + "loss": 1.2012825012207031, + "step": 700700 + }, + { + "epoch": 93.44, + "grad_norm": 0.9023328423500061, + "learning_rate": 3.3020666666666667e-06, + "loss": 1.1996861267089844, + "step": 700800 + }, + { + "epoch": 93.45333333333333, + "grad_norm": 0.9621808528900146, + "learning_rate": 3.2954e-06, + "loss": 1.2020472717285156, + "step": 700900 + }, + { + "epoch": 93.46666666666667, + "grad_norm": 0.9381176829338074, + "learning_rate": 3.2887333333333334e-06, + "loss": 1.2013578033447265, + "step": 701000 + }, + { + "epoch": 93.48, + "grad_norm": 0.9038723111152649, + "learning_rate": 3.2820666666666665e-06, + "loss": 1.2052571868896484, + "step": 701100 + }, + { + "epoch": 93.49333333333334, + "grad_norm": 0.8777031898498535, + "learning_rate": 3.2754e-06, + "loss": 1.2066443634033204, + "step": 701200 + }, + { + "epoch": 93.50666666666666, + "grad_norm": 0.898979663848877, + "learning_rate": 3.2687333333333336e-06, + "loss": 1.2039942932128906, + "step": 701300 + }, + { + "epoch": 93.52, + "grad_norm": 0.9564325213432312, + "learning_rate": 3.2620666666666667e-06, + "loss": 1.203017120361328, + "step": 701400 + }, + { + "epoch": 93.53333333333333, + "grad_norm": 0.8886229991912842, + "learning_rate": 3.2554e-06, + "loss": 1.2048358917236328, + "step": 701500 + }, + { + "epoch": 93.54666666666667, + "grad_norm": 0.9237152338027954, + "learning_rate": 3.2487333333333333e-06, + "loss": 1.2045701599121095, + "step": 701600 + }, + { + "epoch": 93.56, + "grad_norm": 0.896867036819458, + "learning_rate": 3.242066666666667e-06, + "loss": 1.2023987579345703, + "step": 701700 + }, + { + "epoch": 93.57333333333334, + "grad_norm": 0.9271662831306458, + "learning_rate": 3.2354666666666664e-06, + "loss": 1.2070915985107422, + "step": 701800 + }, + { + "epoch": 93.58666666666667, + "grad_norm": 0.9243695139884949, + "learning_rate": 3.2288e-06, + "loss": 1.2029459381103516, + "step": 701900 + }, + { + "epoch": 93.6, + "grad_norm": 0.8733084797859192, + "learning_rate": 3.2221333333333334e-06, + "loss": 1.2044219207763671, + "step": 702000 + }, + { + "epoch": 93.61333333333333, + "grad_norm": 0.8613144159317017, + "learning_rate": 3.2154666666666666e-06, + "loss": 1.2015194702148437, + "step": 702100 + }, + { + "epoch": 93.62666666666667, + "grad_norm": 0.8946916460990906, + "learning_rate": 3.2088e-06, + "loss": 1.2066204071044921, + "step": 702200 + }, + { + "epoch": 93.64, + "grad_norm": 0.8852377533912659, + "learning_rate": 3.202133333333333e-06, + "loss": 1.2049375915527343, + "step": 702300 + }, + { + "epoch": 93.65333333333334, + "grad_norm": 0.9133490324020386, + "learning_rate": 3.1954666666666667e-06, + "loss": 1.2069032287597656, + "step": 702400 + }, + { + "epoch": 93.66666666666667, + "grad_norm": 0.9736997485160828, + "learning_rate": 3.1888000000000003e-06, + "loss": 1.2061416625976562, + "step": 702500 + }, + { + "epoch": 93.68, + "grad_norm": 0.8475258946418762, + "learning_rate": 3.1821333333333334e-06, + "loss": 1.2070252227783203, + "step": 702600 + }, + { + "epoch": 93.69333333333333, + "grad_norm": 0.8701179623603821, + "learning_rate": 3.175466666666667e-06, + "loss": 1.2072611236572266, + "step": 702700 + }, + { + "epoch": 93.70666666666666, + "grad_norm": 0.9371302723884583, + "learning_rate": 3.1688e-06, + "loss": 1.2073512268066406, + "step": 702800 + }, + { + "epoch": 93.72, + "grad_norm": 0.9097060561180115, + "learning_rate": 3.1621333333333336e-06, + "loss": 1.2026378631591796, + "step": 702900 + }, + { + "epoch": 93.73333333333333, + "grad_norm": 0.938374936580658, + "learning_rate": 3.155466666666667e-06, + "loss": 1.2043750762939454, + "step": 703000 + }, + { + "epoch": 93.74666666666667, + "grad_norm": 0.9308724999427795, + "learning_rate": 3.1488000000000002e-06, + "loss": 1.2057681274414063, + "step": 703100 + }, + { + "epoch": 93.76, + "grad_norm": 0.9380525350570679, + "learning_rate": 3.1421333333333338e-06, + "loss": 1.2027383422851563, + "step": 703200 + }, + { + "epoch": 93.77333333333333, + "grad_norm": 0.9042573571205139, + "learning_rate": 3.135466666666667e-06, + "loss": 1.2053038787841797, + "step": 703300 + }, + { + "epoch": 93.78666666666666, + "grad_norm": 0.8465674519538879, + "learning_rate": 3.1288000000000004e-06, + "loss": 1.2070914459228517, + "step": 703400 + }, + { + "epoch": 93.8, + "grad_norm": 0.9048718214035034, + "learning_rate": 3.1221333333333336e-06, + "loss": 1.2079029846191407, + "step": 703500 + }, + { + "epoch": 93.81333333333333, + "grad_norm": 0.9605961441993713, + "learning_rate": 3.115466666666667e-06, + "loss": 1.205398712158203, + "step": 703600 + }, + { + "epoch": 93.82666666666667, + "grad_norm": 0.8697989583015442, + "learning_rate": 3.1088e-06, + "loss": 1.2042691040039062, + "step": 703700 + }, + { + "epoch": 93.84, + "grad_norm": 0.8812441229820251, + "learning_rate": 3.1022e-06, + "loss": 1.2068780517578126, + "step": 703800 + }, + { + "epoch": 93.85333333333334, + "grad_norm": 0.8852190375328064, + "learning_rate": 3.0955333333333337e-06, + "loss": 1.2042357635498047, + "step": 703900 + }, + { + "epoch": 93.86666666666666, + "grad_norm": 0.9224363565444946, + "learning_rate": 3.0888666666666668e-06, + "loss": 1.203583755493164, + "step": 704000 + }, + { + "epoch": 93.88, + "grad_norm": 0.9226585626602173, + "learning_rate": 3.0822e-06, + "loss": 1.2078118896484376, + "step": 704100 + }, + { + "epoch": 93.89333333333333, + "grad_norm": 0.8923982381820679, + "learning_rate": 3.0755333333333334e-06, + "loss": 1.2106005859375, + "step": 704200 + }, + { + "epoch": 93.90666666666667, + "grad_norm": 0.8998373746871948, + "learning_rate": 3.068866666666667e-06, + "loss": 1.2074279022216796, + "step": 704300 + }, + { + "epoch": 93.92, + "grad_norm": 0.8896543383598328, + "learning_rate": 3.0622e-06, + "loss": 1.2062702178955078, + "step": 704400 + }, + { + "epoch": 93.93333333333334, + "grad_norm": 0.9087594747543335, + "learning_rate": 3.0555333333333336e-06, + "loss": 1.2025060272216797, + "step": 704500 + }, + { + "epoch": 93.94666666666667, + "grad_norm": 0.8689560890197754, + "learning_rate": 3.0488666666666667e-06, + "loss": 1.2087166595458985, + "step": 704600 + }, + { + "epoch": 93.96, + "grad_norm": 0.8625527620315552, + "learning_rate": 3.0422000000000003e-06, + "loss": 1.2062256622314453, + "step": 704700 + }, + { + "epoch": 93.97333333333333, + "grad_norm": 0.895000159740448, + "learning_rate": 3.035533333333334e-06, + "loss": 1.2069078826904296, + "step": 704800 + }, + { + "epoch": 93.98666666666666, + "grad_norm": 0.9123364090919495, + "learning_rate": 3.0288666666666665e-06, + "loss": 1.2070018005371095, + "step": 704900 + }, + { + "epoch": 94.0, + "grad_norm": 0.9559196829795837, + "learning_rate": 3.0222e-06, + "loss": 1.2079464721679687, + "step": 705000 + }, + { + "epoch": 94.01333333333334, + "grad_norm": 0.8545342087745667, + "learning_rate": 3.0155333333333336e-06, + "loss": 1.1980677795410157, + "step": 705100 + }, + { + "epoch": 94.02666666666667, + "grad_norm": 0.8731397390365601, + "learning_rate": 3.0088666666666667e-06, + "loss": 1.1981246948242188, + "step": 705200 + }, + { + "epoch": 94.04, + "grad_norm": 0.9388912320137024, + "learning_rate": 3.0022000000000002e-06, + "loss": 1.198083953857422, + "step": 705300 + }, + { + "epoch": 94.05333333333333, + "grad_norm": 0.8558587431907654, + "learning_rate": 2.9955333333333334e-06, + "loss": 1.1956981658935546, + "step": 705400 + }, + { + "epoch": 94.06666666666666, + "grad_norm": 0.9336191415786743, + "learning_rate": 2.988866666666667e-06, + "loss": 1.1954840087890626, + "step": 705500 + }, + { + "epoch": 94.08, + "grad_norm": 0.9011601209640503, + "learning_rate": 2.9822000000000004e-06, + "loss": 1.1973772430419922, + "step": 705600 + }, + { + "epoch": 94.09333333333333, + "grad_norm": 0.8702425956726074, + "learning_rate": 2.9755333333333335e-06, + "loss": 1.1975491333007813, + "step": 705700 + }, + { + "epoch": 94.10666666666667, + "grad_norm": 0.8665642738342285, + "learning_rate": 2.9689333333333335e-06, + "loss": 1.1951853942871093, + "step": 705800 + }, + { + "epoch": 94.12, + "grad_norm": 0.9032362103462219, + "learning_rate": 2.9622666666666666e-06, + "loss": 1.2001158905029297, + "step": 705900 + }, + { + "epoch": 94.13333333333334, + "grad_norm": 0.8543294668197632, + "learning_rate": 2.9556e-06, + "loss": 1.1968789672851563, + "step": 706000 + }, + { + "epoch": 94.14666666666666, + "grad_norm": 0.8729653358459473, + "learning_rate": 2.9489333333333332e-06, + "loss": 1.2012832641601563, + "step": 706100 + }, + { + "epoch": 94.16, + "grad_norm": 0.9173882603645325, + "learning_rate": 2.9422666666666668e-06, + "loss": 1.197931900024414, + "step": 706200 + }, + { + "epoch": 94.17333333333333, + "grad_norm": 0.8953747153282166, + "learning_rate": 2.9356000000000003e-06, + "loss": 1.201817169189453, + "step": 706300 + }, + { + "epoch": 94.18666666666667, + "grad_norm": 0.9290673732757568, + "learning_rate": 2.9289333333333334e-06, + "loss": 1.2014652252197267, + "step": 706400 + }, + { + "epoch": 94.2, + "grad_norm": 0.8571107387542725, + "learning_rate": 2.922266666666667e-06, + "loss": 1.199576187133789, + "step": 706500 + }, + { + "epoch": 94.21333333333334, + "grad_norm": 0.8771602511405945, + "learning_rate": 2.9156e-06, + "loss": 1.1957323455810547, + "step": 706600 + }, + { + "epoch": 94.22666666666667, + "grad_norm": 0.9305838346481323, + "learning_rate": 2.908933333333333e-06, + "loss": 1.1971856689453124, + "step": 706700 + }, + { + "epoch": 94.24, + "grad_norm": 0.8944154381752014, + "learning_rate": 2.9022666666666667e-06, + "loss": 1.197287826538086, + "step": 706800 + }, + { + "epoch": 94.25333333333333, + "grad_norm": 0.8940684199333191, + "learning_rate": 2.8956e-06, + "loss": 1.197225570678711, + "step": 706900 + }, + { + "epoch": 94.26666666666667, + "grad_norm": 0.9056709408760071, + "learning_rate": 2.8889333333333334e-06, + "loss": 1.1965518951416017, + "step": 707000 + }, + { + "epoch": 94.28, + "grad_norm": 0.9414792060852051, + "learning_rate": 2.882266666666667e-06, + "loss": 1.1968941497802734, + "step": 707100 + }, + { + "epoch": 94.29333333333334, + "grad_norm": 0.8908376097679138, + "learning_rate": 2.8756e-06, + "loss": 1.1973877716064454, + "step": 707200 + }, + { + "epoch": 94.30666666666667, + "grad_norm": 0.9297679662704468, + "learning_rate": 2.8689333333333336e-06, + "loss": 1.1994965362548828, + "step": 707300 + }, + { + "epoch": 94.32, + "grad_norm": 0.8703739047050476, + "learning_rate": 2.862266666666667e-06, + "loss": 1.1965327453613281, + "step": 707400 + }, + { + "epoch": 94.33333333333333, + "grad_norm": 0.8615278601646423, + "learning_rate": 2.8556000000000002e-06, + "loss": 1.2004428863525392, + "step": 707500 + }, + { + "epoch": 94.34666666666666, + "grad_norm": 0.9227656722068787, + "learning_rate": 2.8489333333333334e-06, + "loss": 1.2004918670654297, + "step": 707600 + }, + { + "epoch": 94.36, + "grad_norm": 0.9245252013206482, + "learning_rate": 2.842266666666667e-06, + "loss": 1.1989990997314453, + "step": 707700 + }, + { + "epoch": 94.37333333333333, + "grad_norm": 0.9238764643669128, + "learning_rate": 2.835666666666667e-06, + "loss": 1.2016976928710938, + "step": 707800 + }, + { + "epoch": 94.38666666666667, + "grad_norm": 0.9158653616905212, + "learning_rate": 2.829e-06, + "loss": 1.2035940551757813, + "step": 707900 + }, + { + "epoch": 94.4, + "grad_norm": 0.9159825444221497, + "learning_rate": 2.8223333333333335e-06, + "loss": 1.2021241760253907, + "step": 708000 + }, + { + "epoch": 94.41333333333333, + "grad_norm": 0.9235730171203613, + "learning_rate": 2.815666666666667e-06, + "loss": 1.197962875366211, + "step": 708100 + }, + { + "epoch": 94.42666666666666, + "grad_norm": 0.8646361231803894, + "learning_rate": 2.809e-06, + "loss": 1.1968673706054687, + "step": 708200 + }, + { + "epoch": 94.44, + "grad_norm": 0.9146223068237305, + "learning_rate": 2.8023333333333337e-06, + "loss": 1.1992236328125, + "step": 708300 + }, + { + "epoch": 94.45333333333333, + "grad_norm": 0.9262514710426331, + "learning_rate": 2.7956666666666668e-06, + "loss": 1.1973857879638672, + "step": 708400 + }, + { + "epoch": 94.46666666666667, + "grad_norm": 0.9602396488189697, + "learning_rate": 2.7890000000000003e-06, + "loss": 1.2021874237060546, + "step": 708500 + }, + { + "epoch": 94.48, + "grad_norm": 0.9169455766677856, + "learning_rate": 2.7823333333333334e-06, + "loss": 1.201337127685547, + "step": 708600 + }, + { + "epoch": 94.49333333333334, + "grad_norm": 0.922653079032898, + "learning_rate": 2.7756666666666665e-06, + "loss": 1.2005847930908202, + "step": 708700 + }, + { + "epoch": 94.50666666666666, + "grad_norm": 0.8886169195175171, + "learning_rate": 2.769e-06, + "loss": 1.2020726776123047, + "step": 708800 + }, + { + "epoch": 94.52, + "grad_norm": 0.9149191379547119, + "learning_rate": 2.7623333333333336e-06, + "loss": 1.2006275177001953, + "step": 708900 + }, + { + "epoch": 94.53333333333333, + "grad_norm": 0.9416818618774414, + "learning_rate": 2.7556666666666667e-06, + "loss": 1.20090576171875, + "step": 709000 + }, + { + "epoch": 94.54666666666667, + "grad_norm": 0.9213252067565918, + "learning_rate": 2.7490000000000003e-06, + "loss": 1.1960865783691406, + "step": 709100 + }, + { + "epoch": 94.56, + "grad_norm": 0.9599847197532654, + "learning_rate": 2.7423333333333334e-06, + "loss": 1.2013865661621095, + "step": 709200 + }, + { + "epoch": 94.57333333333334, + "grad_norm": 0.8929022550582886, + "learning_rate": 2.735666666666667e-06, + "loss": 1.1997483825683595, + "step": 709300 + }, + { + "epoch": 94.58666666666667, + "grad_norm": 0.9808670878410339, + "learning_rate": 2.729e-06, + "loss": 1.2010655975341797, + "step": 709400 + }, + { + "epoch": 94.6, + "grad_norm": 0.8982358574867249, + "learning_rate": 2.722333333333333e-06, + "loss": 1.2008942413330077, + "step": 709500 + }, + { + "epoch": 94.61333333333333, + "grad_norm": 0.9171635508537292, + "learning_rate": 2.7156666666666667e-06, + "loss": 1.1997940826416016, + "step": 709600 + }, + { + "epoch": 94.62666666666667, + "grad_norm": 0.8832179307937622, + "learning_rate": 2.7090000000000002e-06, + "loss": 1.2014200592041016, + "step": 709700 + }, + { + "epoch": 94.64, + "grad_norm": 0.8543769121170044, + "learning_rate": 2.7024e-06, + "loss": 1.2015788269042968, + "step": 709800 + }, + { + "epoch": 94.65333333333334, + "grad_norm": 0.8646900057792664, + "learning_rate": 2.6957333333333333e-06, + "loss": 1.203617935180664, + "step": 709900 + }, + { + "epoch": 94.66666666666667, + "grad_norm": 0.8815392255783081, + "learning_rate": 2.689066666666667e-06, + "loss": 1.2008470916748046, + "step": 710000 + }, + { + "epoch": 94.68, + "grad_norm": 0.9132913947105408, + "learning_rate": 2.6824000000000004e-06, + "loss": 1.2024823760986327, + "step": 710100 + }, + { + "epoch": 94.69333333333333, + "grad_norm": 0.9004465341567993, + "learning_rate": 2.6757333333333335e-06, + "loss": 1.2015773010253907, + "step": 710200 + }, + { + "epoch": 94.70666666666666, + "grad_norm": 0.9427282214164734, + "learning_rate": 2.669066666666667e-06, + "loss": 1.2027558135986327, + "step": 710300 + }, + { + "epoch": 94.72, + "grad_norm": 0.9398279786109924, + "learning_rate": 2.6624e-06, + "loss": 1.2022799682617187, + "step": 710400 + }, + { + "epoch": 94.73333333333333, + "grad_norm": 0.953403651714325, + "learning_rate": 2.6557333333333332e-06, + "loss": 1.2058155822753907, + "step": 710500 + }, + { + "epoch": 94.74666666666667, + "grad_norm": 0.9545753598213196, + "learning_rate": 2.6490666666666668e-06, + "loss": 1.204290542602539, + "step": 710600 + }, + { + "epoch": 94.76, + "grad_norm": 0.9156383872032166, + "learning_rate": 2.6424e-06, + "loss": 1.2020454406738281, + "step": 710700 + }, + { + "epoch": 94.77333333333333, + "grad_norm": 0.9403426647186279, + "learning_rate": 2.6357333333333334e-06, + "loss": 1.1997908020019532, + "step": 710800 + }, + { + "epoch": 94.78666666666666, + "grad_norm": 0.8966497182846069, + "learning_rate": 2.629066666666667e-06, + "loss": 1.2073065185546874, + "step": 710900 + }, + { + "epoch": 94.8, + "grad_norm": 0.933814287185669, + "learning_rate": 2.6224e-06, + "loss": 1.2032772064208985, + "step": 711000 + }, + { + "epoch": 94.81333333333333, + "grad_norm": 0.8316300511360168, + "learning_rate": 2.6157333333333336e-06, + "loss": 1.1999528503417969, + "step": 711100 + }, + { + "epoch": 94.82666666666667, + "grad_norm": 0.945821225643158, + "learning_rate": 2.609066666666667e-06, + "loss": 1.2072616577148438, + "step": 711200 + }, + { + "epoch": 94.84, + "grad_norm": 0.9445672035217285, + "learning_rate": 2.6024e-06, + "loss": 1.207545623779297, + "step": 711300 + }, + { + "epoch": 94.85333333333334, + "grad_norm": 0.9229156970977783, + "learning_rate": 2.5957333333333334e-06, + "loss": 1.2040837860107423, + "step": 711400 + }, + { + "epoch": 94.86666666666666, + "grad_norm": 0.9328680634498596, + "learning_rate": 2.589066666666667e-06, + "loss": 1.200493392944336, + "step": 711500 + }, + { + "epoch": 94.88, + "grad_norm": 0.8817058801651001, + "learning_rate": 2.5824e-06, + "loss": 1.204656448364258, + "step": 711600 + }, + { + "epoch": 94.89333333333333, + "grad_norm": 0.8611106276512146, + "learning_rate": 2.5757333333333336e-06, + "loss": 1.2088603973388672, + "step": 711700 + }, + { + "epoch": 94.90666666666667, + "grad_norm": 0.9168562889099121, + "learning_rate": 2.5691333333333335e-06, + "loss": 1.2051824951171874, + "step": 711800 + }, + { + "epoch": 94.92, + "grad_norm": 0.8960808515548706, + "learning_rate": 2.5624666666666666e-06, + "loss": 1.2036978912353515, + "step": 711900 + }, + { + "epoch": 94.93333333333334, + "grad_norm": 0.9241425395011902, + "learning_rate": 2.5558e-06, + "loss": 1.2029954528808593, + "step": 712000 + }, + { + "epoch": 94.94666666666667, + "grad_norm": 0.8758190274238586, + "learning_rate": 2.5491333333333337e-06, + "loss": 1.20275390625, + "step": 712100 + }, + { + "epoch": 94.96, + "grad_norm": 0.8666814565658569, + "learning_rate": 2.542466666666667e-06, + "loss": 1.2033231353759766, + "step": 712200 + }, + { + "epoch": 94.97333333333333, + "grad_norm": 0.9167757034301758, + "learning_rate": 2.5358e-06, + "loss": 1.2045973968505859, + "step": 712300 + }, + { + "epoch": 94.98666666666666, + "grad_norm": 0.9360477924346924, + "learning_rate": 2.5291333333333335e-06, + "loss": 1.2020364379882813, + "step": 712400 + }, + { + "epoch": 95.0, + "grad_norm": 0.9205434918403625, + "learning_rate": 2.5224666666666666e-06, + "loss": 1.2040877532958985, + "step": 712500 + }, + { + "epoch": 95.01333333333334, + "grad_norm": 0.8948925733566284, + "learning_rate": 2.5158e-06, + "loss": 1.1948794555664062, + "step": 712600 + }, + { + "epoch": 95.02666666666667, + "grad_norm": 0.9492332935333252, + "learning_rate": 2.5091333333333337e-06, + "loss": 1.1927398681640624, + "step": 712700 + }, + { + "epoch": 95.04, + "grad_norm": 0.9059979319572449, + "learning_rate": 2.5024666666666668e-06, + "loss": 1.1940172576904298, + "step": 712800 + }, + { + "epoch": 95.05333333333333, + "grad_norm": 0.8861105442047119, + "learning_rate": 2.4958000000000003e-06, + "loss": 1.1955216217041016, + "step": 712900 + }, + { + "epoch": 95.06666666666666, + "grad_norm": 0.9048792719841003, + "learning_rate": 2.4891333333333334e-06, + "loss": 1.1973499298095702, + "step": 713000 + }, + { + "epoch": 95.08, + "grad_norm": 0.8883659839630127, + "learning_rate": 2.4824666666666665e-06, + "loss": 1.1946544647216797, + "step": 713100 + }, + { + "epoch": 95.09333333333333, + "grad_norm": 0.9289974570274353, + "learning_rate": 2.4758e-06, + "loss": 1.1974421691894532, + "step": 713200 + }, + { + "epoch": 95.10666666666667, + "grad_norm": 0.9032652378082275, + "learning_rate": 2.469133333333333e-06, + "loss": 1.1930424499511718, + "step": 713300 + }, + { + "epoch": 95.12, + "grad_norm": 0.8951370716094971, + "learning_rate": 2.4624666666666667e-06, + "loss": 1.197111587524414, + "step": 713400 + }, + { + "epoch": 95.13333333333334, + "grad_norm": 0.8893224596977234, + "learning_rate": 2.4558000000000003e-06, + "loss": 1.1959721374511718, + "step": 713500 + }, + { + "epoch": 95.14666666666666, + "grad_norm": 0.8968496918678284, + "learning_rate": 2.4491333333333334e-06, + "loss": 1.1987583923339844, + "step": 713600 + }, + { + "epoch": 95.16, + "grad_norm": 0.8864784240722656, + "learning_rate": 2.442466666666667e-06, + "loss": 1.1947860717773438, + "step": 713700 + }, + { + "epoch": 95.17333333333333, + "grad_norm": 0.8457802534103394, + "learning_rate": 2.435866666666667e-06, + "loss": 1.1984773254394532, + "step": 713800 + }, + { + "epoch": 95.18666666666667, + "grad_norm": 0.9682843685150146, + "learning_rate": 2.4292000000000004e-06, + "loss": 1.1989812469482422, + "step": 713900 + }, + { + "epoch": 95.2, + "grad_norm": 0.9019679427146912, + "learning_rate": 2.4225333333333335e-06, + "loss": 1.1998885345458985, + "step": 714000 + }, + { + "epoch": 95.21333333333334, + "grad_norm": 0.8968068361282349, + "learning_rate": 2.4158666666666666e-06, + "loss": 1.196024169921875, + "step": 714100 + }, + { + "epoch": 95.22666666666667, + "grad_norm": 0.9033806324005127, + "learning_rate": 2.4092e-06, + "loss": 1.1988829803466796, + "step": 714200 + }, + { + "epoch": 95.24, + "grad_norm": 0.8861857056617737, + "learning_rate": 2.4025333333333333e-06, + "loss": 1.1954184722900392, + "step": 714300 + }, + { + "epoch": 95.25333333333333, + "grad_norm": 0.8714227676391602, + "learning_rate": 2.395866666666667e-06, + "loss": 1.1975115203857423, + "step": 714400 + }, + { + "epoch": 95.26666666666667, + "grad_norm": 0.8732222318649292, + "learning_rate": 2.3892e-06, + "loss": 1.1969498443603515, + "step": 714500 + }, + { + "epoch": 95.28, + "grad_norm": 0.8276050090789795, + "learning_rate": 2.3825333333333335e-06, + "loss": 1.197633285522461, + "step": 714600 + }, + { + "epoch": 95.29333333333334, + "grad_norm": 0.8574380278587341, + "learning_rate": 2.375866666666667e-06, + "loss": 1.1978040313720704, + "step": 714700 + }, + { + "epoch": 95.30666666666667, + "grad_norm": 0.9271215200424194, + "learning_rate": 2.3692e-06, + "loss": 1.1961704254150392, + "step": 714800 + }, + { + "epoch": 95.32, + "grad_norm": 0.9471455216407776, + "learning_rate": 2.3625333333333337e-06, + "loss": 1.193292694091797, + "step": 714900 + }, + { + "epoch": 95.33333333333333, + "grad_norm": 0.9028796553611755, + "learning_rate": 2.3558666666666668e-06, + "loss": 1.1993869018554688, + "step": 715000 + }, + { + "epoch": 95.34666666666666, + "grad_norm": 0.8910233378410339, + "learning_rate": 2.3492e-06, + "loss": 1.1982572174072266, + "step": 715100 + }, + { + "epoch": 95.36, + "grad_norm": 0.8883600831031799, + "learning_rate": 2.3425333333333334e-06, + "loss": 1.1972041320800781, + "step": 715200 + }, + { + "epoch": 95.37333333333333, + "grad_norm": 0.8244373202323914, + "learning_rate": 2.335866666666667e-06, + "loss": 1.1958223724365233, + "step": 715300 + }, + { + "epoch": 95.38666666666667, + "grad_norm": 0.8764129281044006, + "learning_rate": 2.3292e-06, + "loss": 1.197607421875, + "step": 715400 + }, + { + "epoch": 95.4, + "grad_norm": 0.9632822275161743, + "learning_rate": 2.3225333333333336e-06, + "loss": 1.1966116333007812, + "step": 715500 + }, + { + "epoch": 95.41333333333333, + "grad_norm": 0.8649945855140686, + "learning_rate": 2.3158666666666667e-06, + "loss": 1.2001445770263672, + "step": 715600 + }, + { + "epoch": 95.42666666666666, + "grad_norm": 0.8928907513618469, + "learning_rate": 2.3092000000000003e-06, + "loss": 1.1985771942138672, + "step": 715700 + }, + { + "epoch": 95.44, + "grad_norm": 0.8795034289360046, + "learning_rate": 2.3026e-06, + "loss": 1.1941232299804687, + "step": 715800 + }, + { + "epoch": 95.45333333333333, + "grad_norm": 0.8100056052207947, + "learning_rate": 2.2959333333333337e-06, + "loss": 1.1983812713623048, + "step": 715900 + }, + { + "epoch": 95.46666666666667, + "grad_norm": 0.8939315676689148, + "learning_rate": 2.289266666666667e-06, + "loss": 1.199446029663086, + "step": 716000 + }, + { + "epoch": 95.48, + "grad_norm": 0.8684143424034119, + "learning_rate": 2.2826e-06, + "loss": 1.1973661804199218, + "step": 716100 + }, + { + "epoch": 95.49333333333334, + "grad_norm": 0.8790379166603088, + "learning_rate": 2.2759333333333335e-06, + "loss": 1.198766098022461, + "step": 716200 + }, + { + "epoch": 95.50666666666666, + "grad_norm": 0.8545668721199036, + "learning_rate": 2.2692666666666666e-06, + "loss": 1.2022593688964844, + "step": 716300 + }, + { + "epoch": 95.52, + "grad_norm": 0.9270732402801514, + "learning_rate": 2.2626e-06, + "loss": 1.1938504028320311, + "step": 716400 + }, + { + "epoch": 95.53333333333333, + "grad_norm": 0.9058865308761597, + "learning_rate": 2.2559333333333337e-06, + "loss": 1.1984404754638671, + "step": 716500 + }, + { + "epoch": 95.54666666666667, + "grad_norm": 0.9313427805900574, + "learning_rate": 2.249266666666667e-06, + "loss": 1.1992517852783202, + "step": 716600 + }, + { + "epoch": 95.56, + "grad_norm": 0.9284090399742126, + "learning_rate": 2.2426000000000003e-06, + "loss": 1.2009918212890625, + "step": 716700 + }, + { + "epoch": 95.57333333333334, + "grad_norm": 0.893657386302948, + "learning_rate": 2.2359333333333335e-06, + "loss": 1.1964833068847656, + "step": 716800 + }, + { + "epoch": 95.58666666666667, + "grad_norm": 0.8945286273956299, + "learning_rate": 2.2292666666666666e-06, + "loss": 1.197146224975586, + "step": 716900 + }, + { + "epoch": 95.6, + "grad_norm": 0.945655345916748, + "learning_rate": 2.2226e-06, + "loss": 1.197714614868164, + "step": 717000 + }, + { + "epoch": 95.61333333333333, + "grad_norm": 0.8761715292930603, + "learning_rate": 2.2159333333333332e-06, + "loss": 1.1985298919677734, + "step": 717100 + }, + { + "epoch": 95.62666666666667, + "grad_norm": 0.9021620154380798, + "learning_rate": 2.2092666666666668e-06, + "loss": 1.1991383361816406, + "step": 717200 + }, + { + "epoch": 95.64, + "grad_norm": 0.8844672441482544, + "learning_rate": 2.2026000000000003e-06, + "loss": 1.1967192840576173, + "step": 717300 + }, + { + "epoch": 95.65333333333334, + "grad_norm": 0.8024809956550598, + "learning_rate": 2.1959333333333334e-06, + "loss": 1.1974788665771485, + "step": 717400 + }, + { + "epoch": 95.66666666666667, + "grad_norm": 0.9280022978782654, + "learning_rate": 2.189266666666667e-06, + "loss": 1.1954544830322265, + "step": 717500 + }, + { + "epoch": 95.68, + "grad_norm": 0.9242950677871704, + "learning_rate": 2.1826e-06, + "loss": 1.1988795471191407, + "step": 717600 + }, + { + "epoch": 95.69333333333333, + "grad_norm": 0.8772919178009033, + "learning_rate": 2.175933333333333e-06, + "loss": 1.1997234344482421, + "step": 717700 + }, + { + "epoch": 95.70666666666666, + "grad_norm": 0.9006758332252502, + "learning_rate": 2.169333333333333e-06, + "loss": 1.1984378814697265, + "step": 717800 + }, + { + "epoch": 95.72, + "grad_norm": 0.8565598726272583, + "learning_rate": 2.1626666666666667e-06, + "loss": 1.1955886840820313, + "step": 717900 + }, + { + "epoch": 95.73333333333333, + "grad_norm": 0.933894157409668, + "learning_rate": 2.156e-06, + "loss": 1.1962789154052735, + "step": 718000 + }, + { + "epoch": 95.74666666666667, + "grad_norm": 0.8751091957092285, + "learning_rate": 2.1493333333333333e-06, + "loss": 1.201226043701172, + "step": 718100 + }, + { + "epoch": 95.76, + "grad_norm": 0.8495886921882629, + "learning_rate": 2.142666666666667e-06, + "loss": 1.1997674560546876, + "step": 718200 + }, + { + "epoch": 95.77333333333333, + "grad_norm": 0.9047145247459412, + "learning_rate": 2.136e-06, + "loss": 1.193944854736328, + "step": 718300 + }, + { + "epoch": 95.78666666666666, + "grad_norm": 0.9060803055763245, + "learning_rate": 2.1293333333333335e-06, + "loss": 1.1976805877685548, + "step": 718400 + }, + { + "epoch": 95.8, + "grad_norm": 0.9374447464942932, + "learning_rate": 2.122666666666667e-06, + "loss": 1.1980715942382814, + "step": 718500 + }, + { + "epoch": 95.81333333333333, + "grad_norm": 0.9492117762565613, + "learning_rate": 2.116e-06, + "loss": 1.2027890014648437, + "step": 718600 + }, + { + "epoch": 95.82666666666667, + "grad_norm": 0.9291294813156128, + "learning_rate": 2.1093333333333333e-06, + "loss": 1.19962158203125, + "step": 718700 + }, + { + "epoch": 95.84, + "grad_norm": 0.8308159112930298, + "learning_rate": 2.102666666666667e-06, + "loss": 1.197718048095703, + "step": 718800 + }, + { + "epoch": 95.85333333333334, + "grad_norm": 0.8678395748138428, + "learning_rate": 2.096e-06, + "loss": 1.200029296875, + "step": 718900 + }, + { + "epoch": 95.86666666666666, + "grad_norm": 0.8894922733306885, + "learning_rate": 2.0893333333333335e-06, + "loss": 1.2026903533935547, + "step": 719000 + }, + { + "epoch": 95.88, + "grad_norm": 0.9153121113777161, + "learning_rate": 2.082666666666667e-06, + "loss": 1.204001922607422, + "step": 719100 + }, + { + "epoch": 95.89333333333333, + "grad_norm": 0.8754669427871704, + "learning_rate": 2.076e-06, + "loss": 1.197853546142578, + "step": 719200 + }, + { + "epoch": 95.90666666666667, + "grad_norm": 0.8554826974868774, + "learning_rate": 2.0693333333333337e-06, + "loss": 1.205391387939453, + "step": 719300 + }, + { + "epoch": 95.92, + "grad_norm": 0.9618128538131714, + "learning_rate": 2.0626666666666668e-06, + "loss": 1.2002410125732421, + "step": 719400 + }, + { + "epoch": 95.93333333333334, + "grad_norm": 0.9223273992538452, + "learning_rate": 2.056e-06, + "loss": 1.1999185943603516, + "step": 719500 + }, + { + "epoch": 95.94666666666667, + "grad_norm": 0.9011958241462708, + "learning_rate": 2.0493333333333334e-06, + "loss": 1.1979779815673828, + "step": 719600 + }, + { + "epoch": 95.96, + "grad_norm": 0.9180704951286316, + "learning_rate": 2.0426666666666665e-06, + "loss": 1.198479537963867, + "step": 719700 + }, + { + "epoch": 95.97333333333333, + "grad_norm": 0.9206179976463318, + "learning_rate": 2.036066666666667e-06, + "loss": 1.2030664825439452, + "step": 719800 + }, + { + "epoch": 95.98666666666666, + "grad_norm": 0.9367160797119141, + "learning_rate": 2.0294e-06, + "loss": 1.2019683837890625, + "step": 719900 + }, + { + "epoch": 96.0, + "grad_norm": 0.9119823575019836, + "learning_rate": 2.0227333333333335e-06, + "loss": 1.202654571533203, + "step": 720000 + }, + { + "epoch": 96.01333333333334, + "grad_norm": 0.9093582034111023, + "learning_rate": 2.0160666666666667e-06, + "loss": 1.1921070098876954, + "step": 720100 + }, + { + "epoch": 96.02666666666667, + "grad_norm": 0.8500725030899048, + "learning_rate": 2.0094e-06, + "loss": 1.1908522033691407, + "step": 720200 + }, + { + "epoch": 96.04, + "grad_norm": 0.9141291379928589, + "learning_rate": 2.0027333333333337e-06, + "loss": 1.1958201599121094, + "step": 720300 + }, + { + "epoch": 96.05333333333333, + "grad_norm": 0.9543992280960083, + "learning_rate": 1.996066666666667e-06, + "loss": 1.1920267486572265, + "step": 720400 + }, + { + "epoch": 96.06666666666666, + "grad_norm": 0.9262734651565552, + "learning_rate": 1.9894e-06, + "loss": 1.193255157470703, + "step": 720500 + }, + { + "epoch": 96.08, + "grad_norm": 0.8305232524871826, + "learning_rate": 1.9827333333333335e-06, + "loss": 1.1950745391845703, + "step": 720600 + }, + { + "epoch": 96.09333333333333, + "grad_norm": 0.8898489475250244, + "learning_rate": 1.9760666666666666e-06, + "loss": 1.1932999420166015, + "step": 720700 + }, + { + "epoch": 96.10666666666667, + "grad_norm": 0.8334019780158997, + "learning_rate": 1.9694e-06, + "loss": 1.1975872039794921, + "step": 720800 + }, + { + "epoch": 96.12, + "grad_norm": 0.8538830876350403, + "learning_rate": 1.9627333333333333e-06, + "loss": 1.1930878448486328, + "step": 720900 + }, + { + "epoch": 96.13333333333334, + "grad_norm": 0.940512478351593, + "learning_rate": 1.956066666666667e-06, + "loss": 1.1931523895263672, + "step": 721000 + }, + { + "epoch": 96.14666666666666, + "grad_norm": 0.9328157305717468, + "learning_rate": 1.9494000000000003e-06, + "loss": 1.1930429077148437, + "step": 721100 + }, + { + "epoch": 96.16, + "grad_norm": 0.8638653755187988, + "learning_rate": 1.9427333333333335e-06, + "loss": 1.1945172119140626, + "step": 721200 + }, + { + "epoch": 96.17333333333333, + "grad_norm": 0.9362466931343079, + "learning_rate": 1.936066666666667e-06, + "loss": 1.1952394104003907, + "step": 721300 + }, + { + "epoch": 96.18666666666667, + "grad_norm": 0.9211965203285217, + "learning_rate": 1.9294e-06, + "loss": 1.1918714141845703, + "step": 721400 + }, + { + "epoch": 96.2, + "grad_norm": 0.8353525996208191, + "learning_rate": 1.9227333333333332e-06, + "loss": 1.1955091857910156, + "step": 721500 + }, + { + "epoch": 96.21333333333334, + "grad_norm": 0.92364901304245, + "learning_rate": 1.9160666666666668e-06, + "loss": 1.196720428466797, + "step": 721600 + }, + { + "epoch": 96.22666666666667, + "grad_norm": 0.8855310082435608, + "learning_rate": 1.9094e-06, + "loss": 1.1948504638671875, + "step": 721700 + }, + { + "epoch": 96.24, + "grad_norm": 0.8908301591873169, + "learning_rate": 1.9028e-06, + "loss": 1.1984718322753907, + "step": 721800 + }, + { + "epoch": 96.25333333333333, + "grad_norm": 0.8790364861488342, + "learning_rate": 1.8961333333333333e-06, + "loss": 1.196904296875, + "step": 721900 + }, + { + "epoch": 96.26666666666667, + "grad_norm": 0.883306622505188, + "learning_rate": 1.8894666666666669e-06, + "loss": 1.1939882659912109, + "step": 722000 + }, + { + "epoch": 96.28, + "grad_norm": 0.9927467107772827, + "learning_rate": 1.8828000000000002e-06, + "loss": 1.19223388671875, + "step": 722100 + }, + { + "epoch": 96.29333333333334, + "grad_norm": 0.8814199566841125, + "learning_rate": 1.8761333333333335e-06, + "loss": 1.1944772338867187, + "step": 722200 + }, + { + "epoch": 96.30666666666667, + "grad_norm": 0.9252114295959473, + "learning_rate": 1.8694666666666667e-06, + "loss": 1.1965172576904297, + "step": 722300 + }, + { + "epoch": 96.32, + "grad_norm": 0.997600257396698, + "learning_rate": 1.8628e-06, + "loss": 1.1935216522216796, + "step": 722400 + }, + { + "epoch": 96.33333333333333, + "grad_norm": 0.9429076910018921, + "learning_rate": 1.8561333333333333e-06, + "loss": 1.1952505493164063, + "step": 722500 + }, + { + "epoch": 96.34666666666666, + "grad_norm": 0.9006048440933228, + "learning_rate": 1.8494666666666666e-06, + "loss": 1.195484848022461, + "step": 722600 + }, + { + "epoch": 96.36, + "grad_norm": 0.8496437072753906, + "learning_rate": 1.8428000000000002e-06, + "loss": 1.1942832946777344, + "step": 722700 + }, + { + "epoch": 96.37333333333333, + "grad_norm": 0.9131640791893005, + "learning_rate": 1.8361333333333335e-06, + "loss": 1.1970438385009765, + "step": 722800 + }, + { + "epoch": 96.38666666666667, + "grad_norm": 0.861127495765686, + "learning_rate": 1.8294666666666668e-06, + "loss": 1.1988032531738282, + "step": 722900 + }, + { + "epoch": 96.4, + "grad_norm": 0.8841111063957214, + "learning_rate": 1.8228000000000001e-06, + "loss": 1.1938710021972656, + "step": 723000 + }, + { + "epoch": 96.41333333333333, + "grad_norm": 0.8644812107086182, + "learning_rate": 1.8161333333333335e-06, + "loss": 1.1916226959228515, + "step": 723100 + }, + { + "epoch": 96.42666666666666, + "grad_norm": 0.9179438352584839, + "learning_rate": 1.8094666666666666e-06, + "loss": 1.1959225463867187, + "step": 723200 + }, + { + "epoch": 96.44, + "grad_norm": 0.8909555077552795, + "learning_rate": 1.8028e-06, + "loss": 1.1968844604492188, + "step": 723300 + }, + { + "epoch": 96.45333333333333, + "grad_norm": 0.8341104984283447, + "learning_rate": 1.7961333333333332e-06, + "loss": 1.1963389587402344, + "step": 723400 + }, + { + "epoch": 96.46666666666667, + "grad_norm": 0.8875642418861389, + "learning_rate": 1.7894666666666668e-06, + "loss": 1.200348129272461, + "step": 723500 + }, + { + "epoch": 96.48, + "grad_norm": 0.9483053684234619, + "learning_rate": 1.7828000000000001e-06, + "loss": 1.1985345458984376, + "step": 723600 + }, + { + "epoch": 96.49333333333334, + "grad_norm": 0.8640918731689453, + "learning_rate": 1.7761333333333334e-06, + "loss": 1.1940691375732422, + "step": 723700 + }, + { + "epoch": 96.50666666666666, + "grad_norm": 0.8642159700393677, + "learning_rate": 1.7695333333333334e-06, + "loss": 1.1963560485839844, + "step": 723800 + }, + { + "epoch": 96.52, + "grad_norm": 0.8903900384902954, + "learning_rate": 1.762866666666667e-06, + "loss": 1.199880599975586, + "step": 723900 + }, + { + "epoch": 96.53333333333333, + "grad_norm": 0.9225534200668335, + "learning_rate": 1.7562000000000002e-06, + "loss": 1.197684326171875, + "step": 724000 + }, + { + "epoch": 96.54666666666667, + "grad_norm": 0.8352228403091431, + "learning_rate": 1.7495333333333336e-06, + "loss": 1.200512924194336, + "step": 724100 + }, + { + "epoch": 96.56, + "grad_norm": 0.895626962184906, + "learning_rate": 1.7428666666666667e-06, + "loss": 1.1950564575195313, + "step": 724200 + }, + { + "epoch": 96.57333333333334, + "grad_norm": 0.8830674290657043, + "learning_rate": 1.7362e-06, + "loss": 1.1997767639160157, + "step": 724300 + }, + { + "epoch": 96.58666666666667, + "grad_norm": 0.875395655632019, + "learning_rate": 1.7295333333333333e-06, + "loss": 1.197208786010742, + "step": 724400 + }, + { + "epoch": 96.6, + "grad_norm": 0.9121081233024597, + "learning_rate": 1.7228666666666666e-06, + "loss": 1.1945203399658204, + "step": 724500 + }, + { + "epoch": 96.61333333333333, + "grad_norm": 0.9376330375671387, + "learning_rate": 1.7162000000000002e-06, + "loss": 1.1965845489501954, + "step": 724600 + }, + { + "epoch": 96.62666666666667, + "grad_norm": 0.8596921563148499, + "learning_rate": 1.7095333333333335e-06, + "loss": 1.195692138671875, + "step": 724700 + }, + { + "epoch": 96.64, + "grad_norm": 0.8527398705482483, + "learning_rate": 1.7028666666666668e-06, + "loss": 1.1965853118896483, + "step": 724800 + }, + { + "epoch": 96.65333333333334, + "grad_norm": 0.8580175042152405, + "learning_rate": 1.6962000000000002e-06, + "loss": 1.1956391143798828, + "step": 724900 + }, + { + "epoch": 96.66666666666667, + "grad_norm": 0.9003075957298279, + "learning_rate": 1.6895333333333333e-06, + "loss": 1.1976248931884765, + "step": 725000 + }, + { + "epoch": 96.68, + "grad_norm": 0.8510597348213196, + "learning_rate": 1.6828666666666666e-06, + "loss": 1.1964473724365234, + "step": 725100 + }, + { + "epoch": 96.69333333333333, + "grad_norm": 0.8973057866096497, + "learning_rate": 1.6762e-06, + "loss": 1.197496337890625, + "step": 725200 + }, + { + "epoch": 96.70666666666666, + "grad_norm": 0.8938978910446167, + "learning_rate": 1.6695333333333333e-06, + "loss": 1.195022964477539, + "step": 725300 + }, + { + "epoch": 96.72, + "grad_norm": 0.9063222408294678, + "learning_rate": 1.6628666666666668e-06, + "loss": 1.1933713531494141, + "step": 725400 + }, + { + "epoch": 96.73333333333333, + "grad_norm": 0.8786043524742126, + "learning_rate": 1.6562000000000001e-06, + "loss": 1.1964022827148437, + "step": 725500 + }, + { + "epoch": 96.74666666666667, + "grad_norm": 0.9674188494682312, + "learning_rate": 1.6495333333333335e-06, + "loss": 1.1983873748779297, + "step": 725600 + }, + { + "epoch": 96.76, + "grad_norm": 0.9302994608879089, + "learning_rate": 1.6428666666666668e-06, + "loss": 1.1975536346435547, + "step": 725700 + }, + { + "epoch": 96.77333333333333, + "grad_norm": 0.8915535807609558, + "learning_rate": 1.636266666666667e-06, + "loss": 1.1970543670654297, + "step": 725800 + }, + { + "epoch": 96.78666666666666, + "grad_norm": 0.91758793592453, + "learning_rate": 1.6296000000000002e-06, + "loss": 1.2024964141845702, + "step": 725900 + }, + { + "epoch": 96.8, + "grad_norm": 0.8457819223403931, + "learning_rate": 1.6229333333333331e-06, + "loss": 1.195786590576172, + "step": 726000 + }, + { + "epoch": 96.81333333333333, + "grad_norm": 0.9062672257423401, + "learning_rate": 1.6162666666666667e-06, + "loss": 1.1972097778320312, + "step": 726100 + }, + { + "epoch": 96.82666666666667, + "grad_norm": 0.9275849461555481, + "learning_rate": 1.6096e-06, + "loss": 1.2003240966796875, + "step": 726200 + }, + { + "epoch": 96.84, + "grad_norm": 0.9141822457313538, + "learning_rate": 1.6029333333333333e-06, + "loss": 1.1985065460205078, + "step": 726300 + }, + { + "epoch": 96.85333333333334, + "grad_norm": 0.8968507647514343, + "learning_rate": 1.5962666666666667e-06, + "loss": 1.1965088653564453, + "step": 726400 + }, + { + "epoch": 96.86666666666666, + "grad_norm": 0.913077175617218, + "learning_rate": 1.5896000000000002e-06, + "loss": 1.1945548248291016, + "step": 726500 + }, + { + "epoch": 96.88, + "grad_norm": 0.8856280446052551, + "learning_rate": 1.5829333333333335e-06, + "loss": 1.198264389038086, + "step": 726600 + }, + { + "epoch": 96.89333333333333, + "grad_norm": 0.9587183594703674, + "learning_rate": 1.5762666666666669e-06, + "loss": 1.198867950439453, + "step": 726700 + }, + { + "epoch": 96.90666666666667, + "grad_norm": 0.8962403535842896, + "learning_rate": 1.5696000000000002e-06, + "loss": 1.1941478729248047, + "step": 726800 + }, + { + "epoch": 96.92, + "grad_norm": 0.9148259162902832, + "learning_rate": 1.5629333333333333e-06, + "loss": 1.1963572692871094, + "step": 726900 + }, + { + "epoch": 96.93333333333334, + "grad_norm": 0.9416415691375732, + "learning_rate": 1.5562666666666668e-06, + "loss": 1.1955250549316405, + "step": 727000 + }, + { + "epoch": 96.94666666666667, + "grad_norm": 0.835249662399292, + "learning_rate": 1.5496e-06, + "loss": 1.1965911102294922, + "step": 727100 + }, + { + "epoch": 96.96, + "grad_norm": 0.8827676177024841, + "learning_rate": 1.5429333333333333e-06, + "loss": 1.1973089599609374, + "step": 727200 + }, + { + "epoch": 96.97333333333333, + "grad_norm": 0.8775216937065125, + "learning_rate": 1.5362666666666668e-06, + "loss": 1.1944822692871093, + "step": 727300 + }, + { + "epoch": 96.98666666666666, + "grad_norm": 0.8615829944610596, + "learning_rate": 1.5296000000000001e-06, + "loss": 1.1994013214111328, + "step": 727400 + }, + { + "epoch": 97.0, + "grad_norm": 0.9200208783149719, + "learning_rate": 1.5229333333333333e-06, + "loss": 1.1997895050048828, + "step": 727500 + }, + { + "epoch": 97.01333333333334, + "grad_norm": 0.8486922383308411, + "learning_rate": 1.5162666666666668e-06, + "loss": 1.1949724578857421, + "step": 727600 + }, + { + "epoch": 97.02666666666667, + "grad_norm": 0.8756220936775208, + "learning_rate": 1.5096000000000001e-06, + "loss": 1.1930170440673828, + "step": 727700 + }, + { + "epoch": 97.04, + "grad_norm": Infinity, + "learning_rate": 1.5029333333333335e-06, + "loss": 1.1907662200927733, + "step": 727800 + }, + { + "epoch": 97.05333333333333, + "grad_norm": 0.9102802276611328, + "learning_rate": 1.4963333333333334e-06, + "loss": 1.1966674041748047, + "step": 727900 + }, + { + "epoch": 97.06666666666666, + "grad_norm": 0.8804049491882324, + "learning_rate": 1.489666666666667e-06, + "loss": 1.1915321350097656, + "step": 728000 + }, + { + "epoch": 97.08, + "grad_norm": 0.8462570309638977, + "learning_rate": 1.483e-06, + "loss": 1.188415756225586, + "step": 728100 + }, + { + "epoch": 97.09333333333333, + "grad_norm": 0.9019154906272888, + "learning_rate": 1.4763333333333334e-06, + "loss": 1.1914682006835937, + "step": 728200 + }, + { + "epoch": 97.10666666666667, + "grad_norm": 0.9102103114128113, + "learning_rate": 1.4696666666666667e-06, + "loss": 1.1929423522949218, + "step": 728300 + }, + { + "epoch": 97.12, + "grad_norm": 0.9278746843338013, + "learning_rate": 1.4630000000000002e-06, + "loss": 1.190726318359375, + "step": 728400 + }, + { + "epoch": 97.13333333333334, + "grad_norm": 0.9312158226966858, + "learning_rate": 1.4563333333333333e-06, + "loss": 1.1920890045166015, + "step": 728500 + }, + { + "epoch": 97.14666666666666, + "grad_norm": 0.8610623478889465, + "learning_rate": 1.4496666666666667e-06, + "loss": 1.1913136291503905, + "step": 728600 + }, + { + "epoch": 97.16, + "grad_norm": 0.8517552614212036, + "learning_rate": 1.443e-06, + "loss": 1.1964224243164063, + "step": 728700 + }, + { + "epoch": 97.17333333333333, + "grad_norm": 0.9079805612564087, + "learning_rate": 1.4363333333333335e-06, + "loss": 1.1886049652099608, + "step": 728800 + }, + { + "epoch": 97.18666666666667, + "grad_norm": 0.8894618153572083, + "learning_rate": 1.4296666666666666e-06, + "loss": 1.1893565368652343, + "step": 728900 + }, + { + "epoch": 97.2, + "grad_norm": 0.927837610244751, + "learning_rate": 1.423e-06, + "loss": 1.1915690612792968, + "step": 729000 + }, + { + "epoch": 97.21333333333334, + "grad_norm": 0.9195118546485901, + "learning_rate": 1.4163333333333333e-06, + "loss": 1.192691650390625, + "step": 729100 + }, + { + "epoch": 97.22666666666667, + "grad_norm": 0.8661218285560608, + "learning_rate": 1.4096666666666668e-06, + "loss": 1.1943994903564452, + "step": 729200 + }, + { + "epoch": 97.24, + "grad_norm": 0.9145841002464294, + "learning_rate": 1.4030000000000002e-06, + "loss": 1.197445068359375, + "step": 729300 + }, + { + "epoch": 97.25333333333333, + "grad_norm": 0.8523109555244446, + "learning_rate": 1.3963333333333333e-06, + "loss": 1.194771499633789, + "step": 729400 + }, + { + "epoch": 97.26666666666667, + "grad_norm": 0.8701912760734558, + "learning_rate": 1.3896666666666668e-06, + "loss": 1.1876846313476563, + "step": 729500 + }, + { + "epoch": 97.28, + "grad_norm": 0.8822584748268127, + "learning_rate": 1.3830000000000001e-06, + "loss": 1.195957565307617, + "step": 729600 + }, + { + "epoch": 97.29333333333334, + "grad_norm": 0.8969473242759705, + "learning_rate": 1.3763333333333335e-06, + "loss": 1.1934420013427733, + "step": 729700 + }, + { + "epoch": 97.30666666666667, + "grad_norm": 0.9088907241821289, + "learning_rate": 1.3696666666666666e-06, + "loss": 1.1958892822265625, + "step": 729800 + }, + { + "epoch": 97.32, + "grad_norm": 0.7961787581443787, + "learning_rate": 1.3630666666666667e-06, + "loss": 1.189772491455078, + "step": 729900 + }, + { + "epoch": 97.33333333333333, + "grad_norm": 0.9014933705329895, + "learning_rate": 1.3564e-06, + "loss": 1.1911412811279296, + "step": 730000 + }, + { + "epoch": 97.34666666666666, + "grad_norm": 0.9077130556106567, + "learning_rate": 1.3497333333333334e-06, + "loss": 1.1925405883789062, + "step": 730100 + }, + { + "epoch": 97.36, + "grad_norm": 0.8387811779975891, + "learning_rate": 1.3430666666666667e-06, + "loss": 1.191651382446289, + "step": 730200 + }, + { + "epoch": 97.37333333333333, + "grad_norm": 0.8837115168571472, + "learning_rate": 1.3364e-06, + "loss": 1.1978406524658203, + "step": 730300 + }, + { + "epoch": 97.38666666666667, + "grad_norm": 0.891261100769043, + "learning_rate": 1.3297333333333334e-06, + "loss": 1.1935235595703124, + "step": 730400 + }, + { + "epoch": 97.4, + "grad_norm": 0.9634777903556824, + "learning_rate": 1.3230666666666667e-06, + "loss": 1.1935658264160156, + "step": 730500 + }, + { + "epoch": 97.41333333333333, + "grad_norm": 0.9264794588088989, + "learning_rate": 1.3164e-06, + "loss": 1.1933699035644532, + "step": 730600 + }, + { + "epoch": 97.42666666666666, + "grad_norm": 0.9273287653923035, + "learning_rate": 1.3097333333333335e-06, + "loss": 1.1926664733886718, + "step": 730700 + }, + { + "epoch": 97.44, + "grad_norm": 0.9044145941734314, + "learning_rate": 1.3030666666666667e-06, + "loss": 1.194606475830078, + "step": 730800 + }, + { + "epoch": 97.45333333333333, + "grad_norm": 0.916735053062439, + "learning_rate": 1.2964e-06, + "loss": 1.192816925048828, + "step": 730900 + }, + { + "epoch": 97.46666666666667, + "grad_norm": 0.9041197896003723, + "learning_rate": 1.2897333333333333e-06, + "loss": 1.1932903289794923, + "step": 731000 + }, + { + "epoch": 97.48, + "grad_norm": 0.8889577984809875, + "learning_rate": 1.2830666666666669e-06, + "loss": 1.1962411499023438, + "step": 731100 + }, + { + "epoch": 97.49333333333334, + "grad_norm": 0.910078763961792, + "learning_rate": 1.2764e-06, + "loss": 1.1956531524658203, + "step": 731200 + }, + { + "epoch": 97.50666666666666, + "grad_norm": 0.8650588393211365, + "learning_rate": 1.2697333333333333e-06, + "loss": 1.1919945526123046, + "step": 731300 + }, + { + "epoch": 97.52, + "grad_norm": 0.9000649452209473, + "learning_rate": 1.2630666666666668e-06, + "loss": 1.1926378631591796, + "step": 731400 + }, + { + "epoch": 97.53333333333333, + "grad_norm": 0.8907895088195801, + "learning_rate": 1.2564000000000002e-06, + "loss": 1.1921055603027344, + "step": 731500 + }, + { + "epoch": 97.54666666666667, + "grad_norm": 0.8809535503387451, + "learning_rate": 1.2497333333333333e-06, + "loss": 1.1962607574462891, + "step": 731600 + }, + { + "epoch": 97.56, + "grad_norm": 0.8726817965507507, + "learning_rate": 1.2430666666666666e-06, + "loss": 1.1959927368164063, + "step": 731700 + }, + { + "epoch": 97.57333333333334, + "grad_norm": 0.9167771935462952, + "learning_rate": 1.2364000000000001e-06, + "loss": 1.1933238220214843, + "step": 731800 + }, + { + "epoch": 97.58666666666667, + "grad_norm": 0.8944850564002991, + "learning_rate": 1.2298e-06, + "loss": 1.198369140625, + "step": 731900 + }, + { + "epoch": 97.6, + "grad_norm": 0.9288177490234375, + "learning_rate": 1.2231333333333334e-06, + "loss": 1.1962329864501953, + "step": 732000 + }, + { + "epoch": 97.61333333333333, + "grad_norm": 0.8759905099868774, + "learning_rate": 1.2164666666666667e-06, + "loss": 1.1970404815673827, + "step": 732100 + }, + { + "epoch": 97.62666666666667, + "grad_norm": 0.9289444088935852, + "learning_rate": 1.2098e-06, + "loss": 1.1988601684570312, + "step": 732200 + }, + { + "epoch": 97.64, + "grad_norm": 0.888252317905426, + "learning_rate": 1.2031333333333334e-06, + "loss": 1.1959870910644532, + "step": 732300 + }, + { + "epoch": 97.65333333333334, + "grad_norm": 0.9400676488876343, + "learning_rate": 1.1964666666666667e-06, + "loss": 1.1936607360839844, + "step": 732400 + }, + { + "epoch": 97.66666666666667, + "grad_norm": 0.7995263934135437, + "learning_rate": 1.1898e-06, + "loss": 1.1914346313476563, + "step": 732500 + }, + { + "epoch": 97.68, + "grad_norm": 0.911656379699707, + "learning_rate": 1.1831333333333334e-06, + "loss": 1.1957060241699218, + "step": 732600 + }, + { + "epoch": 97.69333333333333, + "grad_norm": 0.9077141880989075, + "learning_rate": 1.1764666666666667e-06, + "loss": 1.1969277191162109, + "step": 732700 + }, + { + "epoch": 97.70666666666666, + "grad_norm": 0.922042191028595, + "learning_rate": 1.1698e-06, + "loss": 1.1913483428955078, + "step": 732800 + }, + { + "epoch": 97.72, + "grad_norm": 0.8728546500205994, + "learning_rate": 1.1631333333333333e-06, + "loss": 1.192550277709961, + "step": 732900 + }, + { + "epoch": 97.73333333333333, + "grad_norm": 0.9435664415359497, + "learning_rate": 1.1564666666666667e-06, + "loss": 1.1956972503662109, + "step": 733000 + }, + { + "epoch": 97.74666666666667, + "grad_norm": 0.9456507563591003, + "learning_rate": 1.1498e-06, + "loss": 1.198812255859375, + "step": 733100 + }, + { + "epoch": 97.76, + "grad_norm": 0.9041507244110107, + "learning_rate": 1.1431333333333333e-06, + "loss": 1.1941202545166016, + "step": 733200 + }, + { + "epoch": 97.77333333333333, + "grad_norm": 0.9364042282104492, + "learning_rate": 1.1364666666666669e-06, + "loss": 1.1956196594238282, + "step": 733300 + }, + { + "epoch": 97.78666666666666, + "grad_norm": 0.901881754398346, + "learning_rate": 1.1298000000000002e-06, + "loss": 1.1942565155029297, + "step": 733400 + }, + { + "epoch": 97.8, + "grad_norm": 0.9191442728042603, + "learning_rate": 1.1231333333333333e-06, + "loss": 1.1965391540527344, + "step": 733500 + }, + { + "epoch": 97.81333333333333, + "grad_norm": 0.9554629921913147, + "learning_rate": 1.1164666666666666e-06, + "loss": 1.1935279846191407, + "step": 733600 + }, + { + "epoch": 97.82666666666667, + "grad_norm": 0.903621256351471, + "learning_rate": 1.1098000000000002e-06, + "loss": 1.1937690734863282, + "step": 733700 + }, + { + "epoch": 97.84, + "grad_norm": 0.9251970052719116, + "learning_rate": 1.1031333333333335e-06, + "loss": 1.1984178161621093, + "step": 733800 + }, + { + "epoch": 97.85333333333334, + "grad_norm": 0.9287400245666504, + "learning_rate": 1.0965333333333334e-06, + "loss": 1.196386184692383, + "step": 733900 + }, + { + "epoch": 97.86666666666666, + "grad_norm": 0.9118936061859131, + "learning_rate": 1.0898666666666667e-06, + "loss": 1.1918663787841797, + "step": 734000 + }, + { + "epoch": 97.88, + "grad_norm": 0.9294499754905701, + "learning_rate": 1.0832e-06, + "loss": 1.1964964294433593, + "step": 734100 + }, + { + "epoch": 97.89333333333333, + "grad_norm": 0.8662843704223633, + "learning_rate": 1.0765333333333334e-06, + "loss": 1.1969724273681641, + "step": 734200 + }, + { + "epoch": 97.90666666666667, + "grad_norm": 0.8762206435203552, + "learning_rate": 1.0698666666666667e-06, + "loss": 1.1970738983154297, + "step": 734300 + }, + { + "epoch": 97.92, + "grad_norm": 0.9251389503479004, + "learning_rate": 1.0632e-06, + "loss": 1.1950054168701172, + "step": 734400 + }, + { + "epoch": 97.93333333333334, + "grad_norm": 0.8627253174781799, + "learning_rate": 1.0565333333333334e-06, + "loss": 1.194439926147461, + "step": 734500 + }, + { + "epoch": 97.94666666666667, + "grad_norm": 0.9262219071388245, + "learning_rate": 1.0498666666666667e-06, + "loss": 1.1964743804931641, + "step": 734600 + }, + { + "epoch": 97.96, + "grad_norm": 0.8800917863845825, + "learning_rate": 1.0432e-06, + "loss": 1.1948735046386718, + "step": 734700 + }, + { + "epoch": 97.97333333333333, + "grad_norm": 0.9554460644721985, + "learning_rate": 1.0365333333333334e-06, + "loss": 1.1973654174804687, + "step": 734800 + }, + { + "epoch": 97.98666666666666, + "grad_norm": 0.8912851214408875, + "learning_rate": 1.0298666666666667e-06, + "loss": 1.1976622009277345, + "step": 734900 + }, + { + "epoch": 98.0, + "grad_norm": 0.9327476024627686, + "learning_rate": 1.0232e-06, + "loss": 1.1984359741210937, + "step": 735000 + }, + { + "epoch": 98.01333333333334, + "grad_norm": 0.898631751537323, + "learning_rate": 1.0165333333333333e-06, + "loss": 1.191797409057617, + "step": 735100 + }, + { + "epoch": 98.02666666666667, + "grad_norm": 0.8860185146331787, + "learning_rate": 1.0098666666666669e-06, + "loss": 1.19053955078125, + "step": 735200 + }, + { + "epoch": 98.04, + "grad_norm": 0.8919152617454529, + "learning_rate": 1.0032e-06, + "loss": 1.1930453491210937, + "step": 735300 + }, + { + "epoch": 98.05333333333333, + "grad_norm": 0.9268627762794495, + "learning_rate": 9.965333333333333e-07, + "loss": 1.1904096984863282, + "step": 735400 + }, + { + "epoch": 98.06666666666666, + "grad_norm": 0.9463122487068176, + "learning_rate": 9.898666666666666e-07, + "loss": 1.1924416351318359, + "step": 735500 + }, + { + "epoch": 98.08, + "grad_norm": 0.9249300956726074, + "learning_rate": 9.832000000000002e-07, + "loss": 1.190969467163086, + "step": 735600 + }, + { + "epoch": 98.09333333333333, + "grad_norm": 0.9573506116867065, + "learning_rate": 9.765333333333335e-07, + "loss": 1.1920275115966796, + "step": 735700 + }, + { + "epoch": 98.10666666666667, + "grad_norm": 0.8895424604415894, + "learning_rate": 9.698666666666666e-07, + "loss": 1.1897706604003906, + "step": 735800 + }, + { + "epoch": 98.12, + "grad_norm": 0.8485841155052185, + "learning_rate": 9.632666666666668e-07, + "loss": 1.1928855895996093, + "step": 735900 + }, + { + "epoch": 98.13333333333334, + "grad_norm": 0.9169514775276184, + "learning_rate": 9.566e-07, + "loss": 1.1923430633544922, + "step": 736000 + }, + { + "epoch": 98.14666666666666, + "grad_norm": 0.9484817981719971, + "learning_rate": 9.499333333333334e-07, + "loss": 1.1894152069091797, + "step": 736100 + }, + { + "epoch": 98.16, + "grad_norm": 0.8725702166557312, + "learning_rate": 9.432666666666667e-07, + "loss": 1.1909805297851563, + "step": 736200 + }, + { + "epoch": 98.17333333333333, + "grad_norm": 0.9127253293991089, + "learning_rate": 9.366e-07, + "loss": 1.193762969970703, + "step": 736300 + }, + { + "epoch": 98.18666666666667, + "grad_norm": 0.8876358270645142, + "learning_rate": 9.299333333333334e-07, + "loss": 1.1921793365478515, + "step": 736400 + }, + { + "epoch": 98.2, + "grad_norm": 0.9053890109062195, + "learning_rate": 9.232666666666667e-07, + "loss": 1.1964334106445313, + "step": 736500 + }, + { + "epoch": 98.21333333333334, + "grad_norm": 0.9463318586349487, + "learning_rate": 9.166000000000001e-07, + "loss": 1.188143539428711, + "step": 736600 + }, + { + "epoch": 98.22666666666667, + "grad_norm": 0.8585167527198792, + "learning_rate": 9.099333333333333e-07, + "loss": 1.1954288482666016, + "step": 736700 + }, + { + "epoch": 98.24, + "grad_norm": 0.9063857197761536, + "learning_rate": 9.032666666666667e-07, + "loss": 1.1938237762451172, + "step": 736800 + }, + { + "epoch": 98.25333333333333, + "grad_norm": 0.848952054977417, + "learning_rate": 8.966e-07, + "loss": 1.1889173889160156, + "step": 736900 + }, + { + "epoch": 98.26666666666667, + "grad_norm": 0.9032663106918335, + "learning_rate": 8.899333333333335e-07, + "loss": 1.1894258880615234, + "step": 737000 + }, + { + "epoch": 98.28, + "grad_norm": 0.9298050403594971, + "learning_rate": 8.832666666666668e-07, + "loss": 1.1893203735351563, + "step": 737100 + }, + { + "epoch": 98.29333333333334, + "grad_norm": 0.8868449926376343, + "learning_rate": 8.766e-07, + "loss": 1.1898612976074219, + "step": 737200 + }, + { + "epoch": 98.30666666666667, + "grad_norm": 0.8657017350196838, + "learning_rate": 8.699333333333333e-07, + "loss": 1.1897797393798828, + "step": 737300 + }, + { + "epoch": 98.32, + "grad_norm": 0.8774369359016418, + "learning_rate": 8.632666666666668e-07, + "loss": 1.1933421325683593, + "step": 737400 + }, + { + "epoch": 98.33333333333333, + "grad_norm": 0.9083582758903503, + "learning_rate": 8.566000000000001e-07, + "loss": 1.1912253570556641, + "step": 737500 + }, + { + "epoch": 98.34666666666666, + "grad_norm": 0.8991101980209351, + "learning_rate": 8.499333333333333e-07, + "loss": 1.193739547729492, + "step": 737600 + }, + { + "epoch": 98.36, + "grad_norm": 0.9866260886192322, + "learning_rate": 8.432666666666666e-07, + "loss": 1.1906326293945313, + "step": 737700 + }, + { + "epoch": 98.37333333333333, + "grad_norm": 0.9080073833465576, + "learning_rate": 8.366000000000001e-07, + "loss": 1.192478561401367, + "step": 737800 + }, + { + "epoch": 98.38666666666667, + "grad_norm": 0.8622914552688599, + "learning_rate": 8.300000000000001e-07, + "loss": 1.1917598724365235, + "step": 737900 + }, + { + "epoch": 98.4, + "grad_norm": 0.9066656231880188, + "learning_rate": 8.233333333333334e-07, + "loss": 1.1930951690673828, + "step": 738000 + }, + { + "epoch": 98.41333333333333, + "grad_norm": 0.8253511190414429, + "learning_rate": 8.166666666666666e-07, + "loss": 1.1881201934814454, + "step": 738100 + }, + { + "epoch": 98.42666666666666, + "grad_norm": 0.8869616389274597, + "learning_rate": 8.1e-07, + "loss": 1.1893899536132813, + "step": 738200 + }, + { + "epoch": 98.44, + "grad_norm": 0.8886020183563232, + "learning_rate": 8.033333333333334e-07, + "loss": 1.1935739135742187, + "step": 738300 + }, + { + "epoch": 98.45333333333333, + "grad_norm": 0.9000334143638611, + "learning_rate": 7.966666666666667e-07, + "loss": 1.189201889038086, + "step": 738400 + }, + { + "epoch": 98.46666666666667, + "grad_norm": 0.8531255125999451, + "learning_rate": 7.900000000000002e-07, + "loss": 1.191848373413086, + "step": 738500 + }, + { + "epoch": 98.48, + "grad_norm": 0.9446560144424438, + "learning_rate": 7.833333333333333e-07, + "loss": 1.1940558624267579, + "step": 738600 + }, + { + "epoch": 98.49333333333334, + "grad_norm": 0.8816220760345459, + "learning_rate": 7.766666666666667e-07, + "loss": 1.1970796966552735, + "step": 738700 + }, + { + "epoch": 98.50666666666666, + "grad_norm": 0.8878071308135986, + "learning_rate": 7.7e-07, + "loss": 1.191910171508789, + "step": 738800 + }, + { + "epoch": 98.52, + "grad_norm": 0.9086691737174988, + "learning_rate": 7.633333333333334e-07, + "loss": 1.1919632720947266, + "step": 738900 + }, + { + "epoch": 98.53333333333333, + "grad_norm": 0.9125364422798157, + "learning_rate": 7.566666666666667e-07, + "loss": 1.1903729248046875, + "step": 739000 + }, + { + "epoch": 98.54666666666667, + "grad_norm": 0.9102436900138855, + "learning_rate": 7.5e-07, + "loss": 1.1952772521972657, + "step": 739100 + }, + { + "epoch": 98.56, + "grad_norm": 0.8782820105552673, + "learning_rate": 7.433333333333333e-07, + "loss": 1.1924925994873048, + "step": 739200 + }, + { + "epoch": 98.57333333333334, + "grad_norm": 0.9105757474899292, + "learning_rate": 7.366666666666667e-07, + "loss": 1.1958279418945312, + "step": 739300 + }, + { + "epoch": 98.58666666666667, + "grad_norm": 0.8756064176559448, + "learning_rate": 7.3e-07, + "loss": 1.1938359069824218, + "step": 739400 + }, + { + "epoch": 98.6, + "grad_norm": 0.8714690208435059, + "learning_rate": 7.233333333333333e-07, + "loss": 1.1933795166015626, + "step": 739500 + }, + { + "epoch": 98.61333333333333, + "grad_norm": 0.846801221370697, + "learning_rate": 7.166666666666667e-07, + "loss": 1.1944500732421874, + "step": 739600 + }, + { + "epoch": 98.62666666666667, + "grad_norm": 0.8956632018089294, + "learning_rate": 7.100000000000001e-07, + "loss": 1.1958086395263672, + "step": 739700 + }, + { + "epoch": 98.64, + "grad_norm": 0.8939581513404846, + "learning_rate": 7.033333333333334e-07, + "loss": 1.1935520935058594, + "step": 739800 + }, + { + "epoch": 98.65333333333334, + "grad_norm": 0.8881719708442688, + "learning_rate": 6.967333333333333e-07, + "loss": 1.1934709930419922, + "step": 739900 + }, + { + "epoch": 98.66666666666667, + "grad_norm": 0.9042186141014099, + "learning_rate": 6.900666666666668e-07, + "loss": 1.1922380828857422, + "step": 740000 + }, + { + "epoch": 98.68, + "grad_norm": 0.8477785587310791, + "learning_rate": 6.834e-07, + "loss": 1.1890042877197267, + "step": 740100 + }, + { + "epoch": 98.69333333333333, + "grad_norm": 0.8813819289207458, + "learning_rate": 6.767333333333334e-07, + "loss": 1.1922322082519532, + "step": 740200 + }, + { + "epoch": 98.70666666666666, + "grad_norm": 0.9520646333694458, + "learning_rate": 6.700666666666666e-07, + "loss": 1.1949353790283204, + "step": 740300 + }, + { + "epoch": 98.72, + "grad_norm": 0.8981533050537109, + "learning_rate": 6.634000000000001e-07, + "loss": 1.1972361755371095, + "step": 740400 + }, + { + "epoch": 98.73333333333333, + "grad_norm": 0.8700048327445984, + "learning_rate": 6.567333333333333e-07, + "loss": 1.1961135864257812, + "step": 740500 + }, + { + "epoch": 98.74666666666667, + "grad_norm": 0.9323988556861877, + "learning_rate": 6.500666666666667e-07, + "loss": 1.1912552642822265, + "step": 740600 + }, + { + "epoch": 98.76, + "grad_norm": 0.8961540460586548, + "learning_rate": 6.434e-07, + "loss": 1.1949165344238282, + "step": 740700 + }, + { + "epoch": 98.77333333333333, + "grad_norm": 0.8768694996833801, + "learning_rate": 6.367333333333334e-07, + "loss": 1.193530044555664, + "step": 740800 + }, + { + "epoch": 98.78666666666666, + "grad_norm": 0.9372314810752869, + "learning_rate": 6.300666666666667e-07, + "loss": 1.1909781646728517, + "step": 740900 + }, + { + "epoch": 98.8, + "grad_norm": 0.9452794194221497, + "learning_rate": 6.234e-07, + "loss": 1.1920659637451172, + "step": 741000 + }, + { + "epoch": 98.81333333333333, + "grad_norm": 0.8834349513053894, + "learning_rate": 6.167333333333334e-07, + "loss": 1.194448471069336, + "step": 741100 + }, + { + "epoch": 98.82666666666667, + "grad_norm": 0.8450713157653809, + "learning_rate": 6.100666666666667e-07, + "loss": 1.1934151458740234, + "step": 741200 + }, + { + "epoch": 98.84, + "grad_norm": 0.897294819355011, + "learning_rate": 6.034e-07, + "loss": 1.1937016296386718, + "step": 741300 + }, + { + "epoch": 98.85333333333334, + "grad_norm": 0.9136027693748474, + "learning_rate": 5.967333333333333e-07, + "loss": 1.194300994873047, + "step": 741400 + }, + { + "epoch": 98.86666666666666, + "grad_norm": 0.8889844417572021, + "learning_rate": 5.900666666666667e-07, + "loss": 1.1939845275878906, + "step": 741500 + }, + { + "epoch": 98.88, + "grad_norm": 0.8959463238716125, + "learning_rate": 5.834e-07, + "loss": 1.1932821655273438, + "step": 741600 + }, + { + "epoch": 98.89333333333333, + "grad_norm": 0.9319109320640564, + "learning_rate": 5.767333333333334e-07, + "loss": 1.1942572784423828, + "step": 741700 + }, + { + "epoch": 98.90666666666667, + "grad_norm": 0.948413074016571, + "learning_rate": 5.700666666666666e-07, + "loss": 1.1931224822998048, + "step": 741800 + }, + { + "epoch": 98.92, + "grad_norm": 0.943126380443573, + "learning_rate": 5.634666666666667e-07, + "loss": 1.1902999877929688, + "step": 741900 + }, + { + "epoch": 98.93333333333334, + "grad_norm": 0.9261944890022278, + "learning_rate": 5.568e-07, + "loss": 1.1924332427978515, + "step": 742000 + }, + { + "epoch": 98.94666666666667, + "grad_norm": 0.8977665901184082, + "learning_rate": 5.501333333333333e-07, + "loss": 1.1910804748535155, + "step": 742100 + }, + { + "epoch": 98.96, + "grad_norm": 0.9129285216331482, + "learning_rate": 5.434666666666667e-07, + "loss": 1.1923501586914063, + "step": 742200 + }, + { + "epoch": 98.97333333333333, + "grad_norm": 0.9128681421279907, + "learning_rate": 5.368000000000001e-07, + "loss": 1.1889964294433595, + "step": 742300 + }, + { + "epoch": 98.98666666666666, + "grad_norm": 0.9412058591842651, + "learning_rate": 5.301333333333333e-07, + "loss": 1.192625732421875, + "step": 742400 + }, + { + "epoch": 99.0, + "grad_norm": 0.8482484221458435, + "learning_rate": 5.234666666666667e-07, + "loss": 1.1931838989257812, + "step": 742500 + }, + { + "epoch": 99.01333333333334, + "grad_norm": 0.9009374976158142, + "learning_rate": 5.168e-07, + "loss": 1.1919266510009765, + "step": 742600 + }, + { + "epoch": 99.02666666666667, + "grad_norm": 0.9100991487503052, + "learning_rate": 5.101333333333334e-07, + "loss": 1.1920348358154298, + "step": 742700 + }, + { + "epoch": 99.04, + "grad_norm": 0.896523118019104, + "learning_rate": 5.034666666666666e-07, + "loss": 1.1886348724365234, + "step": 742800 + }, + { + "epoch": 99.05333333333333, + "grad_norm": 0.8603360652923584, + "learning_rate": 4.968000000000001e-07, + "loss": 1.1856871032714844, + "step": 742900 + }, + { + "epoch": 99.06666666666666, + "grad_norm": 0.9280701279640198, + "learning_rate": 4.901333333333334e-07, + "loss": 1.188511962890625, + "step": 743000 + }, + { + "epoch": 99.08, + "grad_norm": 0.9534225463867188, + "learning_rate": 4.834666666666667e-07, + "loss": 1.1933180236816405, + "step": 743100 + }, + { + "epoch": 99.09333333333333, + "grad_norm": 0.8999395370483398, + "learning_rate": 4.768e-07, + "loss": 1.189303436279297, + "step": 743200 + }, + { + "epoch": 99.10666666666667, + "grad_norm": 0.8953112363815308, + "learning_rate": 4.7013333333333336e-07, + "loss": 1.18920166015625, + "step": 743300 + }, + { + "epoch": 99.12, + "grad_norm": 0.8740084767341614, + "learning_rate": 4.6346666666666663e-07, + "loss": 1.1907463073730469, + "step": 743400 + }, + { + "epoch": 99.13333333333334, + "grad_norm": 0.8928273320198059, + "learning_rate": 4.568e-07, + "loss": 1.1911299133300781, + "step": 743500 + }, + { + "epoch": 99.14666666666666, + "grad_norm": 0.8718655705451965, + "learning_rate": 4.501333333333334e-07, + "loss": 1.1908772277832032, + "step": 743600 + }, + { + "epoch": 99.16, + "grad_norm": 0.9151206612586975, + "learning_rate": 4.4346666666666667e-07, + "loss": 1.1899483489990235, + "step": 743700 + }, + { + "epoch": 99.17333333333333, + "grad_norm": 0.891651451587677, + "learning_rate": 4.3680000000000005e-07, + "loss": 1.19437744140625, + "step": 743800 + }, + { + "epoch": 99.18666666666667, + "grad_norm": 0.8451858758926392, + "learning_rate": 4.3020000000000003e-07, + "loss": 1.1926042175292968, + "step": 743900 + }, + { + "epoch": 99.2, + "grad_norm": 0.8772236108779907, + "learning_rate": 4.2353333333333335e-07, + "loss": 1.1880721282958984, + "step": 744000 + }, + { + "epoch": 99.21333333333334, + "grad_norm": 0.857770562171936, + "learning_rate": 4.1686666666666673e-07, + "loss": 1.1957527923583984, + "step": 744100 + }, + { + "epoch": 99.22666666666667, + "grad_norm": 0.9516028165817261, + "learning_rate": 4.102e-07, + "loss": 1.1945584869384767, + "step": 744200 + }, + { + "epoch": 99.24, + "grad_norm": 0.843956708908081, + "learning_rate": 4.035333333333334e-07, + "loss": 1.1935086059570312, + "step": 744300 + }, + { + "epoch": 99.25333333333333, + "grad_norm": 0.8973932862281799, + "learning_rate": 3.9686666666666666e-07, + "loss": 1.1924853515625, + "step": 744400 + }, + { + "epoch": 99.26666666666667, + "grad_norm": 0.8814348578453064, + "learning_rate": 3.9020000000000004e-07, + "loss": 1.1938815307617188, + "step": 744500 + }, + { + "epoch": 99.28, + "grad_norm": 0.9305223226547241, + "learning_rate": 3.8353333333333337e-07, + "loss": 1.1920265197753905, + "step": 744600 + }, + { + "epoch": 99.29333333333334, + "grad_norm": 0.8577662706375122, + "learning_rate": 3.768666666666667e-07, + "loss": 1.1892983245849609, + "step": 744700 + }, + { + "epoch": 99.30666666666667, + "grad_norm": 0.9148098230361938, + "learning_rate": 3.702e-07, + "loss": 1.193815689086914, + "step": 744800 + }, + { + "epoch": 99.32, + "grad_norm": 0.8657062649726868, + "learning_rate": 3.6353333333333335e-07, + "loss": 1.1912665557861328, + "step": 744900 + }, + { + "epoch": 99.33333333333333, + "grad_norm": 0.9293052554130554, + "learning_rate": 3.5686666666666667e-07, + "loss": 1.19271728515625, + "step": 745000 + }, + { + "epoch": 99.34666666666666, + "grad_norm": 0.9440531134605408, + "learning_rate": 3.502e-07, + "loss": 1.1907530975341798, + "step": 745100 + }, + { + "epoch": 99.36, + "grad_norm": 0.8987706303596497, + "learning_rate": 3.435333333333333e-07, + "loss": 1.1910220336914064, + "step": 745200 + }, + { + "epoch": 99.37333333333333, + "grad_norm": 0.9358866214752197, + "learning_rate": 3.3686666666666665e-07, + "loss": 1.194500732421875, + "step": 745300 + }, + { + "epoch": 99.38666666666667, + "grad_norm": 0.8812012672424316, + "learning_rate": 3.302e-07, + "loss": 1.1937469482421874, + "step": 745400 + }, + { + "epoch": 99.4, + "grad_norm": 0.9004390239715576, + "learning_rate": 3.235333333333333e-07, + "loss": 1.1931354522705078, + "step": 745500 + }, + { + "epoch": 99.41333333333333, + "grad_norm": 0.870255708694458, + "learning_rate": 3.168666666666667e-07, + "loss": 1.1928106689453124, + "step": 745600 + }, + { + "epoch": 99.42666666666666, + "grad_norm": 0.8272011280059814, + "learning_rate": 3.102e-07, + "loss": 1.1933961486816407, + "step": 745700 + }, + { + "epoch": 99.44, + "grad_norm": 0.904954731464386, + "learning_rate": 3.0353333333333334e-07, + "loss": 1.1930033874511718, + "step": 745800 + }, + { + "epoch": 99.45333333333333, + "grad_norm": 0.8282216191291809, + "learning_rate": 2.9693333333333337e-07, + "loss": 1.1900058746337892, + "step": 745900 + }, + { + "epoch": 99.46666666666667, + "grad_norm": 0.9468961954116821, + "learning_rate": 2.902666666666667e-07, + "loss": 1.1919841003417968, + "step": 746000 + }, + { + "epoch": 99.48, + "grad_norm": 0.9418879151344299, + "learning_rate": 2.836e-07, + "loss": 1.1886141204833984, + "step": 746100 + }, + { + "epoch": 99.49333333333334, + "grad_norm": 0.8836652636528015, + "learning_rate": 2.7693333333333335e-07, + "loss": 1.1884160614013672, + "step": 746200 + }, + { + "epoch": 99.50666666666666, + "grad_norm": 0.9527371525764465, + "learning_rate": 2.702666666666667e-07, + "loss": 1.1915505981445313, + "step": 746300 + }, + { + "epoch": 99.52, + "grad_norm": 0.8506571054458618, + "learning_rate": 2.636e-07, + "loss": 1.1904411315917969, + "step": 746400 + }, + { + "epoch": 99.53333333333333, + "grad_norm": 0.8335494995117188, + "learning_rate": 2.5693333333333333e-07, + "loss": 1.1901004028320312, + "step": 746500 + }, + { + "epoch": 99.54666666666667, + "grad_norm": 0.9234083890914917, + "learning_rate": 2.5026666666666666e-07, + "loss": 1.1895111846923827, + "step": 746600 + }, + { + "epoch": 99.56, + "grad_norm": 0.9194679260253906, + "learning_rate": 2.436e-07, + "loss": 1.1904415130615233, + "step": 746700 + }, + { + "epoch": 99.57333333333334, + "grad_norm": 0.9224709868431091, + "learning_rate": 2.3693333333333336e-07, + "loss": 1.1882210540771485, + "step": 746800 + }, + { + "epoch": 99.58666666666667, + "grad_norm": 0.9308574795722961, + "learning_rate": 2.302666666666667e-07, + "loss": 1.1944318389892579, + "step": 746900 + }, + { + "epoch": 99.6, + "grad_norm": 0.8662922382354736, + "learning_rate": 2.2360000000000002e-07, + "loss": 1.1902082824707032, + "step": 747000 + }, + { + "epoch": 99.61333333333333, + "grad_norm": 0.9251387715339661, + "learning_rate": 2.1693333333333334e-07, + "loss": 1.1896009826660157, + "step": 747100 + }, + { + "epoch": 99.62666666666667, + "grad_norm": 0.8867355585098267, + "learning_rate": 2.102666666666667e-07, + "loss": 1.1914397430419923, + "step": 747200 + }, + { + "epoch": 99.64, + "grad_norm": 0.8558920621871948, + "learning_rate": 2.0360000000000002e-07, + "loss": 1.193257827758789, + "step": 747300 + }, + { + "epoch": 99.65333333333334, + "grad_norm": 0.8549710512161255, + "learning_rate": 1.9693333333333335e-07, + "loss": 1.1871185302734375, + "step": 747400 + }, + { + "epoch": 99.66666666666667, + "grad_norm": 0.9454492330551147, + "learning_rate": 1.9026666666666668e-07, + "loss": 1.1909255218505859, + "step": 747500 + }, + { + "epoch": 99.68, + "grad_norm": 0.8846890330314636, + "learning_rate": 1.836e-07, + "loss": 1.191995849609375, + "step": 747600 + }, + { + "epoch": 99.69333333333333, + "grad_norm": 0.8920761942863464, + "learning_rate": 1.7693333333333333e-07, + "loss": 1.1904275512695313, + "step": 747700 + }, + { + "epoch": 99.70666666666666, + "grad_norm": 0.9085679054260254, + "learning_rate": 1.7026666666666666e-07, + "loss": 1.1856131744384766, + "step": 747800 + }, + { + "epoch": 99.72, + "grad_norm": 0.8654316663742065, + "learning_rate": 1.636666666666667e-07, + "loss": 1.1924869537353515, + "step": 747900 + }, + { + "epoch": 99.73333333333333, + "grad_norm": 0.9672116041183472, + "learning_rate": 1.5700000000000002e-07, + "loss": 1.1914896392822265, + "step": 748000 + }, + { + "epoch": 99.74666666666667, + "grad_norm": 0.8933631181716919, + "learning_rate": 1.5033333333333334e-07, + "loss": 1.1880557250976562, + "step": 748100 + }, + { + "epoch": 99.76, + "grad_norm": 0.8144270777702332, + "learning_rate": 1.4366666666666667e-07, + "loss": 1.1939049530029298, + "step": 748200 + }, + { + "epoch": 99.77333333333333, + "grad_norm": 0.942760169506073, + "learning_rate": 1.37e-07, + "loss": 1.1934993743896485, + "step": 748300 + }, + { + "epoch": 99.78666666666666, + "grad_norm": 0.9373781085014343, + "learning_rate": 1.3033333333333335e-07, + "loss": 1.1954252624511719, + "step": 748400 + }, + { + "epoch": 99.8, + "grad_norm": 0.852530837059021, + "learning_rate": 1.2366666666666668e-07, + "loss": 1.1905007934570313, + "step": 748500 + }, + { + "epoch": 99.81333333333333, + "grad_norm": 0.9099419116973877, + "learning_rate": 1.1700000000000002e-07, + "loss": 1.1874067687988281, + "step": 748600 + }, + { + "epoch": 99.82666666666667, + "grad_norm": 0.9150423407554626, + "learning_rate": 1.1033333333333334e-07, + "loss": 1.1895872497558593, + "step": 748700 + }, + { + "epoch": 99.84, + "grad_norm": 0.9039080142974854, + "learning_rate": 1.0366666666666667e-07, + "loss": 1.1886183166503905, + "step": 748800 + }, + { + "epoch": 99.85333333333334, + "grad_norm": 0.8735392689704895, + "learning_rate": 9.700000000000001e-08, + "loss": 1.1912483978271484, + "step": 748900 + }, + { + "epoch": 99.86666666666666, + "grad_norm": 0.9005591869354248, + "learning_rate": 9.033333333333333e-08, + "loss": 1.1915541076660157, + "step": 749000 + }, + { + "epoch": 99.88, + "grad_norm": 0.914032518863678, + "learning_rate": 8.366666666666667e-08, + "loss": 1.194538803100586, + "step": 749100 + }, + { + "epoch": 99.89333333333333, + "grad_norm": 0.9344823360443115, + "learning_rate": 7.7e-08, + "loss": 1.1954287719726562, + "step": 749200 + }, + { + "epoch": 99.90666666666667, + "grad_norm": 0.9338550567626953, + "learning_rate": 7.033333333333334e-08, + "loss": 1.188226318359375, + "step": 749300 + }, + { + "epoch": 99.92, + "grad_norm": 0.8841633796691895, + "learning_rate": 6.366666666666667e-08, + "loss": 1.1888745880126954, + "step": 749400 + }, + { + "epoch": 99.93333333333334, + "grad_norm": 0.9246593117713928, + "learning_rate": 5.7e-08, + "loss": 1.1918194580078125, + "step": 749500 + }, + { + "epoch": 99.94666666666667, + "grad_norm": 0.8690961003303528, + "learning_rate": 5.033333333333333e-08, + "loss": 1.1911461639404297, + "step": 749600 + }, + { + "epoch": 99.96, + "grad_norm": 0.8422365188598633, + "learning_rate": 4.3666666666666674e-08, + "loss": 1.1900325012207031, + "step": 749700 + }, + { + "epoch": 99.97333333333333, + "grad_norm": 0.8521731495857239, + "learning_rate": 3.7e-08, + "loss": 1.1885493469238282, + "step": 749800 + }, + { + "epoch": 99.98666666666666, + "grad_norm": 0.9010792970657349, + "learning_rate": 3.04e-08, + "loss": 1.190181655883789, + "step": 749900 + } + ], + "logging_steps": 100, + "max_steps": 750000, + "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": 2.020697593085952e+17, + "train_batch_size": 8, + "trial_name": null, + "trial_params": null +} diff --git a/timecost/c14/realtabformer/rtf-c14-20260501_010151/rtf_checkpoints/checkpoint-749900/training_args.bin b/timecost/c14/realtabformer/rtf-c14-20260501_010151/rtf_checkpoints/checkpoint-749900/training_args.bin new file mode 100644 index 0000000000000000000000000000000000000000..34d68dc0e0fe1c1f12a2e581dd1b166aa7178a9e --- /dev/null +++ b/timecost/c14/realtabformer/rtf-c14-20260501_010151/rtf_checkpoints/checkpoint-749900/training_args.bin @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:9e2cd88337d1d846c6918d2b3b63fa3e5c93f12fefc082497590da854a564607 +size 5201 diff --git a/timecost/c14/realtabformer/rtf-c14-20260501_010151/rtf_checkpoints/checkpoint-750000/config.json b/timecost/c14/realtabformer/rtf-c14-20260501_010151/rtf_checkpoints/checkpoint-750000/config.json new file mode 100644 index 0000000000000000000000000000000000000000..79a0184a09b7bca7a3c208529833166f08ca48c0 --- /dev/null +++ b/timecost/c14/realtabformer/rtf-c14-20260501_010151/rtf_checkpoints/checkpoint-750000/config.json @@ -0,0 +1,34 @@ +{ + "activation_function": "gelu_new", + "add_cross_attention": false, + "architectures": [ + "GPT2LMHeadModel" + ], + "attn_pdrop": 0.1, + "bos_token_id": 5, + "dtype": "float32", + "embd_pdrop": 0.1, + "eos_token_id": 6, + "initializer_range": 0.02, + "layer_norm_epsilon": 1e-05, + "model_type": "gpt2", + "n_embd": 768, + "n_head": 12, + "n_inner": null, + "n_layer": 6, + "n_positions": 1024, + "pad_token_id": null, + "reorder_and_upcast_attn": false, + "resid_pdrop": 0.1, + "scale_attn_by_inverse_layer_idx": false, + "scale_attn_weights": true, + "summary_activation": null, + "summary_first_dropout": 0.1, + "summary_proj_to_labels": true, + "summary_type": "cls_index", + "summary_use_proj": true, + "tie_word_embeddings": true, + "transformers_version": "5.5.3", + "use_cache": false, + "vocab_size": 16472 +} diff --git a/timecost/c14/realtabformer/rtf-c14-20260501_010151/rtf_checkpoints/checkpoint-750000/generation_config.json b/timecost/c14/realtabformer/rtf-c14-20260501_010151/rtf_checkpoints/checkpoint-750000/generation_config.json new file mode 100644 index 0000000000000000000000000000000000000000..ffe89567780e75b5c22eade9be971483b9618f39 --- /dev/null +++ b/timecost/c14/realtabformer/rtf-c14-20260501_010151/rtf_checkpoints/checkpoint-750000/generation_config.json @@ -0,0 +1,9 @@ +{ + "_from_model_config": true, + "bos_token_id": 5, + "eos_token_id": 6, + "output_attentions": false, + "output_hidden_states": false, + "transformers_version": "5.5.3", + "use_cache": true +} diff --git a/timecost/c14/realtabformer/rtf-c14-20260501_010151/rtf_checkpoints/checkpoint-750000/model.safetensors b/timecost/c14/realtabformer/rtf-c14-20260501_010151/rtf_checkpoints/checkpoint-750000/model.safetensors new file mode 100644 index 0000000000000000000000000000000000000000..a2b5c3c1c6ad294d4c9935acd44085c1f8c80baf --- /dev/null +++ b/timecost/c14/realtabformer/rtf-c14-20260501_010151/rtf_checkpoints/checkpoint-750000/model.safetensors @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:e8337f9f35809a1fba753cd12115cb1fb7ca62cd244b0babd03b86f4c20ec6b6 +size 223870408 diff --git a/timecost/c14/realtabformer/rtf-c14-20260501_010151/rtf_checkpoints/checkpoint-750000/optimizer.pt b/timecost/c14/realtabformer/rtf-c14-20260501_010151/rtf_checkpoints/checkpoint-750000/optimizer.pt new file mode 100644 index 0000000000000000000000000000000000000000..e48db53db9e8b7e3421630ca348973ac9259a2cb --- /dev/null +++ b/timecost/c14/realtabformer/rtf-c14-20260501_010151/rtf_checkpoints/checkpoint-750000/optimizer.pt @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:379fa832a87f4c918c28900a4a9c1b17a0e877c2d60948acca8ef77645e1a873 +size 447789899 diff --git a/timecost/c14/realtabformer/rtf-c14-20260501_010151/rtf_checkpoints/checkpoint-750000/rng_state.pth b/timecost/c14/realtabformer/rtf-c14-20260501_010151/rtf_checkpoints/checkpoint-750000/rng_state.pth new file mode 100644 index 0000000000000000000000000000000000000000..9354e0edb3d2a326510768c96a806e2b1f3f78d3 --- /dev/null +++ b/timecost/c14/realtabformer/rtf-c14-20260501_010151/rtf_checkpoints/checkpoint-750000/rng_state.pth @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:913531affda33b5ef229eca0f5200980faff4ae2c26455325edaef1cba14b788 +size 14645 diff --git a/timecost/c14/realtabformer/rtf-c14-20260501_010151/rtf_checkpoints/checkpoint-750000/scaler.pt b/timecost/c14/realtabformer/rtf-c14-20260501_010151/rtf_checkpoints/checkpoint-750000/scaler.pt new file mode 100644 index 0000000000000000000000000000000000000000..39a4476c9e7b5ad2bf8c43dc9ae5ccb36227a054 --- /dev/null +++ b/timecost/c14/realtabformer/rtf-c14-20260501_010151/rtf_checkpoints/checkpoint-750000/scaler.pt @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:71d7eac16d640fbb733f6438fd968b8c590bf9971ecf7e8d767e0aed9f3f1f69 +size 1383 diff --git a/timecost/c14/realtabformer/rtf-c14-20260501_010151/rtf_checkpoints/checkpoint-750000/scheduler.pt b/timecost/c14/realtabformer/rtf-c14-20260501_010151/rtf_checkpoints/checkpoint-750000/scheduler.pt new file mode 100644 index 0000000000000000000000000000000000000000..10c1d3e34f8811009d1c3c2613a9008b7ecbf97d --- /dev/null +++ b/timecost/c14/realtabformer/rtf-c14-20260501_010151/rtf_checkpoints/checkpoint-750000/scheduler.pt @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:6cc06dc891be57b2f5c30965b2d67040a02e63bf6e87e1376a18edf21fe512c9 +size 1465 diff --git a/timecost/c14/realtabformer/rtf-c14-20260501_010151/rtf_checkpoints/checkpoint-750000/trainer_state.json b/timecost/c14/realtabformer/rtf-c14-20260501_010151/rtf_checkpoints/checkpoint-750000/trainer_state.json new file mode 100644 index 0000000000000000000000000000000000000000..8a9e6e0138960da133f35aded5ad339c2ef88108 --- /dev/null +++ b/timecost/c14/realtabformer/rtf-c14-20260501_010151/rtf_checkpoints/checkpoint-750000/trainer_state.json @@ -0,0 +1,52534 @@ +{ + "best_global_step": null, + "best_metric": null, + "best_model_checkpoint": null, + "epoch": 100.0, + "eval_steps": 100, + "global_step": 750000, + "is_hyper_param_search": false, + "is_local_process_zero": true, + "is_world_process_zero": true, + "log_history": [ + { + "epoch": 0.013333333333333334, + "grad_norm": 0.3097156882286072, + "learning_rate": 4.99934e-05, + "loss": 4.729451904296875, + "step": 100 + }, + { + "epoch": 0.02666666666666667, + "grad_norm": 0.2790767550468445, + "learning_rate": 4.9986733333333334e-05, + "loss": 2.9246112060546876, + "step": 200 + }, + { + "epoch": 0.04, + "grad_norm": 0.2287004292011261, + "learning_rate": 4.998006666666667e-05, + "loss": 2.681365966796875, + "step": 300 + }, + { + "epoch": 0.05333333333333334, + "grad_norm": 0.2410515397787094, + "learning_rate": 4.9973400000000005e-05, + "loss": 2.57897216796875, + "step": 400 + }, + { + "epoch": 0.06666666666666667, + "grad_norm": 0.23536495864391327, + "learning_rate": 4.996673333333334e-05, + "loss": 2.5199215698242186, + "step": 500 + }, + { + "epoch": 0.08, + "grad_norm": 0.2238040715456009, + "learning_rate": 4.996006666666667e-05, + "loss": 2.4802560424804687, + "step": 600 + }, + { + "epoch": 0.09333333333333334, + "grad_norm": 0.2373904138803482, + "learning_rate": 4.99534e-05, + "loss": 2.4584336853027344, + "step": 700 + }, + { + "epoch": 0.10666666666666667, + "grad_norm": 0.2210150510072708, + "learning_rate": 4.9946733333333334e-05, + "loss": 2.4438829040527343, + "step": 800 + }, + { + "epoch": 0.12, + "grad_norm": 0.23910416662693024, + "learning_rate": 4.9940066666666666e-05, + "loss": 2.430836181640625, + "step": 900 + }, + { + "epoch": 0.13333333333333333, + "grad_norm": 0.21543893218040466, + "learning_rate": 4.9933400000000005e-05, + "loss": 2.416129150390625, + "step": 1000 + }, + { + "epoch": 0.14666666666666667, + "grad_norm": 0.21585851907730103, + "learning_rate": 4.992673333333334e-05, + "loss": 2.4107843017578126, + "step": 1100 + }, + { + "epoch": 0.16, + "grad_norm": 0.24163727462291718, + "learning_rate": 4.992006666666667e-05, + "loss": 2.406159210205078, + "step": 1200 + }, + { + "epoch": 0.17333333333333334, + "grad_norm": 0.1956426501274109, + "learning_rate": 4.99134e-05, + "loss": 2.403145751953125, + "step": 1300 + }, + { + "epoch": 0.18666666666666668, + "grad_norm": 0.22274842858314514, + "learning_rate": 4.9906733333333335e-05, + "loss": 2.4001878356933593, + "step": 1400 + }, + { + "epoch": 0.2, + "grad_norm": 0.21048018336296082, + "learning_rate": 4.990006666666667e-05, + "loss": 2.396698455810547, + "step": 1500 + }, + { + "epoch": 0.21333333333333335, + "grad_norm": 0.20668183267116547, + "learning_rate": 4.98934e-05, + "loss": 2.3899136352539063, + "step": 1600 + }, + { + "epoch": 0.22666666666666666, + "grad_norm": 0.21129441261291504, + "learning_rate": 4.988673333333334e-05, + "loss": 2.3887448120117187, + "step": 1700 + }, + { + "epoch": 0.24, + "grad_norm": 0.19339148700237274, + "learning_rate": 4.988006666666667e-05, + "loss": 2.386446228027344, + "step": 1800 + }, + { + "epoch": 0.25333333333333335, + "grad_norm": 0.24494831264019012, + "learning_rate": 4.98734e-05, + "loss": 2.3824462890625, + "step": 1900 + }, + { + "epoch": 0.26666666666666666, + "grad_norm": 0.22533085942268372, + "learning_rate": 4.9866733333333335e-05, + "loss": 2.382945709228516, + "step": 2000 + }, + { + "epoch": 0.28, + "grad_norm": 0.19327044486999512, + "learning_rate": 4.9860066666666674e-05, + "loss": 2.380709533691406, + "step": 2100 + }, + { + "epoch": 0.29333333333333333, + "grad_norm": 0.21988032758235931, + "learning_rate": 4.98534e-05, + "loss": 2.3797772216796873, + "step": 2200 + }, + { + "epoch": 0.30666666666666664, + "grad_norm": 0.21458032727241516, + "learning_rate": 4.984673333333333e-05, + "loss": 2.3806968688964845, + "step": 2300 + }, + { + "epoch": 0.32, + "grad_norm": 0.1938823163509369, + "learning_rate": 4.984006666666667e-05, + "loss": 2.377256317138672, + "step": 2400 + }, + { + "epoch": 0.3333333333333333, + "grad_norm": 0.2332620471715927, + "learning_rate": 4.98334e-05, + "loss": 2.3771754455566407, + "step": 2500 + }, + { + "epoch": 0.3466666666666667, + "grad_norm": 0.2167084515094757, + "learning_rate": 4.9826733333333335e-05, + "loss": 2.379599151611328, + "step": 2600 + }, + { + "epoch": 0.36, + "grad_norm": 0.21894526481628418, + "learning_rate": 4.982006666666667e-05, + "loss": 2.376912078857422, + "step": 2700 + }, + { + "epoch": 0.37333333333333335, + "grad_norm": 0.21106357872486115, + "learning_rate": 4.9813400000000007e-05, + "loss": 2.374015045166016, + "step": 2800 + }, + { + "epoch": 0.38666666666666666, + "grad_norm": 0.19057656824588776, + "learning_rate": 4.980673333333333e-05, + "loss": 2.3733976745605467, + "step": 2900 + }, + { + "epoch": 0.4, + "grad_norm": 0.21368202567100525, + "learning_rate": 4.9800066666666664e-05, + "loss": 2.3731019592285154, + "step": 3000 + }, + { + "epoch": 0.41333333333333333, + "grad_norm": 0.20361854135990143, + "learning_rate": 4.9793400000000003e-05, + "loss": 2.372502746582031, + "step": 3100 + }, + { + "epoch": 0.4266666666666667, + "grad_norm": 0.21937857568264008, + "learning_rate": 4.9786733333333336e-05, + "loss": 2.3699537658691407, + "step": 3200 + }, + { + "epoch": 0.44, + "grad_norm": 0.20447471737861633, + "learning_rate": 4.978006666666667e-05, + "loss": 2.3710557556152345, + "step": 3300 + }, + { + "epoch": 0.4533333333333333, + "grad_norm": 0.21187078952789307, + "learning_rate": 4.97734e-05, + "loss": 2.3726930236816406, + "step": 3400 + }, + { + "epoch": 0.4666666666666667, + "grad_norm": 0.2117481529712677, + "learning_rate": 4.976673333333334e-05, + "loss": 2.3712057495117187, + "step": 3500 + }, + { + "epoch": 0.48, + "grad_norm": 0.21514153480529785, + "learning_rate": 4.976006666666667e-05, + "loss": 2.3699081420898436, + "step": 3600 + }, + { + "epoch": 0.49333333333333335, + "grad_norm": 0.21301567554473877, + "learning_rate": 4.97534e-05, + "loss": 2.3686956787109374, + "step": 3700 + }, + { + "epoch": 0.5066666666666667, + "grad_norm": 0.21573932468891144, + "learning_rate": 4.9746733333333336e-05, + "loss": 2.3669277954101564, + "step": 3800 + }, + { + "epoch": 0.52, + "grad_norm": 0.21901340782642365, + "learning_rate": 4.974006666666667e-05, + "loss": 2.3691697692871094, + "step": 3900 + }, + { + "epoch": 0.5333333333333333, + "grad_norm": 0.17888770997524261, + "learning_rate": 4.97334e-05, + "loss": 2.3694166564941406, + "step": 4000 + }, + { + "epoch": 0.5466666666666666, + "grad_norm": 0.20132586359977722, + "learning_rate": 4.972673333333334e-05, + "loss": 2.3693058776855467, + "step": 4100 + }, + { + "epoch": 0.56, + "grad_norm": 0.20158927142620087, + "learning_rate": 4.972006666666667e-05, + "loss": 2.3696084594726563, + "step": 4200 + }, + { + "epoch": 0.5733333333333334, + "grad_norm": 0.19169336557388306, + "learning_rate": 4.9713400000000004e-05, + "loss": 2.3690890502929687, + "step": 4300 + }, + { + "epoch": 0.5866666666666667, + "grad_norm": 0.1851499378681183, + "learning_rate": 4.9706733333333336e-05, + "loss": 2.365598602294922, + "step": 4400 + }, + { + "epoch": 0.6, + "grad_norm": 0.17640796303749084, + "learning_rate": 4.970006666666667e-05, + "loss": 2.3662982177734375, + "step": 4500 + }, + { + "epoch": 0.6133333333333333, + "grad_norm": 0.19363251328468323, + "learning_rate": 4.96934e-05, + "loss": 2.366368408203125, + "step": 4600 + }, + { + "epoch": 0.6266666666666667, + "grad_norm": 0.18789421021938324, + "learning_rate": 4.968673333333333e-05, + "loss": 2.3673724365234374, + "step": 4700 + }, + { + "epoch": 0.64, + "grad_norm": 0.2276417762041092, + "learning_rate": 4.968006666666667e-05, + "loss": 2.3687364196777345, + "step": 4800 + }, + { + "epoch": 0.6533333333333333, + "grad_norm": 0.24959126114845276, + "learning_rate": 4.9673400000000005e-05, + "loss": 2.3668873596191404, + "step": 4900 + }, + { + "epoch": 0.6666666666666666, + "grad_norm": 0.1974227875471115, + "learning_rate": 4.966673333333334e-05, + "loss": 2.367490539550781, + "step": 5000 + }, + { + "epoch": 0.68, + "grad_norm": 0.21331575512886047, + "learning_rate": 4.966006666666667e-05, + "loss": 2.3667413330078126, + "step": 5100 + }, + { + "epoch": 0.6933333333333334, + "grad_norm": 0.19911886751651764, + "learning_rate": 4.96534e-05, + "loss": 2.3675457763671877, + "step": 5200 + }, + { + "epoch": 0.7066666666666667, + "grad_norm": 0.18808232247829437, + "learning_rate": 4.9646733333333334e-05, + "loss": 2.365087432861328, + "step": 5300 + }, + { + "epoch": 0.72, + "grad_norm": 0.20785415172576904, + "learning_rate": 4.9640066666666666e-05, + "loss": 2.364909362792969, + "step": 5400 + }, + { + "epoch": 0.7333333333333333, + "grad_norm": 0.20224037766456604, + "learning_rate": 4.9633400000000005e-05, + "loss": 2.3632057189941404, + "step": 5500 + }, + { + "epoch": 0.7466666666666667, + "grad_norm": 0.2229875922203064, + "learning_rate": 4.962673333333334e-05, + "loss": 2.3641395568847656, + "step": 5600 + }, + { + "epoch": 0.76, + "grad_norm": 0.1919153928756714, + "learning_rate": 4.962006666666667e-05, + "loss": 2.3659425354003907, + "step": 5700 + }, + { + "epoch": 0.7733333333333333, + "grad_norm": 0.20427671074867249, + "learning_rate": 4.96134e-05, + "loss": 2.363852081298828, + "step": 5800 + }, + { + "epoch": 0.7866666666666666, + "grad_norm": 0.21656429767608643, + "learning_rate": 4.960673333333334e-05, + "loss": 2.362543182373047, + "step": 5900 + }, + { + "epoch": 0.8, + "grad_norm": 0.2063402533531189, + "learning_rate": 4.9600066666666666e-05, + "loss": 2.366965026855469, + "step": 6000 + }, + { + "epoch": 0.8133333333333334, + "grad_norm": 0.1898108273744583, + "learning_rate": 4.95934e-05, + "loss": 2.3621893310546875, + "step": 6100 + }, + { + "epoch": 0.8266666666666667, + "grad_norm": 0.20282649993896484, + "learning_rate": 4.958673333333334e-05, + "loss": 2.3625088500976563, + "step": 6200 + }, + { + "epoch": 0.84, + "grad_norm": 0.20909225940704346, + "learning_rate": 4.958006666666667e-05, + "loss": 2.3645458984375, + "step": 6300 + }, + { + "epoch": 0.8533333333333334, + "grad_norm": 0.1983426809310913, + "learning_rate": 4.95734e-05, + "loss": 2.3627133178710937, + "step": 6400 + }, + { + "epoch": 0.8666666666666667, + "grad_norm": 0.19243596494197845, + "learning_rate": 4.9566733333333334e-05, + "loss": 2.3633660888671875, + "step": 6500 + }, + { + "epoch": 0.88, + "grad_norm": 0.2079390585422516, + "learning_rate": 4.9560066666666673e-05, + "loss": 2.3625689697265626, + "step": 6600 + }, + { + "epoch": 0.8933333333333333, + "grad_norm": 0.21222324669361115, + "learning_rate": 4.95534e-05, + "loss": 2.3634515380859376, + "step": 6700 + }, + { + "epoch": 0.9066666666666666, + "grad_norm": 0.20715859532356262, + "learning_rate": 4.954673333333333e-05, + "loss": 2.361647186279297, + "step": 6800 + }, + { + "epoch": 0.92, + "grad_norm": 0.20895737409591675, + "learning_rate": 4.954006666666667e-05, + "loss": 2.3614102172851563, + "step": 6900 + }, + { + "epoch": 0.9333333333333333, + "grad_norm": 0.2002798467874527, + "learning_rate": 4.95334e-05, + "loss": 2.36139892578125, + "step": 7000 + }, + { + "epoch": 0.9466666666666667, + "grad_norm": 0.19291919469833374, + "learning_rate": 4.9526733333333335e-05, + "loss": 2.3608961486816407, + "step": 7100 + }, + { + "epoch": 0.96, + "grad_norm": 0.21889089047908783, + "learning_rate": 4.952006666666667e-05, + "loss": 2.3637326049804686, + "step": 7200 + }, + { + "epoch": 0.9733333333333334, + "grad_norm": 0.2078685611486435, + "learning_rate": 4.9513400000000006e-05, + "loss": 2.3617208862304686, + "step": 7300 + }, + { + "epoch": 0.9866666666666667, + "grad_norm": 0.2064240425825119, + "learning_rate": 4.950673333333334e-05, + "loss": 2.363861083984375, + "step": 7400 + }, + { + "epoch": 1.0, + "grad_norm": 0.20584005117416382, + "learning_rate": 4.9500066666666664e-05, + "loss": 2.361913146972656, + "step": 7500 + }, + { + "epoch": 1.0133333333333334, + "grad_norm": 0.1801510751247406, + "learning_rate": 4.94934e-05, + "loss": 2.360869903564453, + "step": 7600 + }, + { + "epoch": 1.0266666666666666, + "grad_norm": 0.1993046998977661, + "learning_rate": 4.9486733333333335e-05, + "loss": 2.361507568359375, + "step": 7700 + }, + { + "epoch": 1.04, + "grad_norm": 0.19615833461284637, + "learning_rate": 4.948006666666667e-05, + "loss": 2.3610348510742187, + "step": 7800 + }, + { + "epoch": 1.0533333333333332, + "grad_norm": 0.21650268137454987, + "learning_rate": 4.9473400000000006e-05, + "loss": 2.3594178771972656, + "step": 7900 + }, + { + "epoch": 1.0666666666666667, + "grad_norm": 0.21163895726203918, + "learning_rate": 4.946673333333334e-05, + "loss": 2.360281982421875, + "step": 8000 + }, + { + "epoch": 1.08, + "grad_norm": 0.204850971698761, + "learning_rate": 4.946006666666667e-05, + "loss": 2.3587506103515623, + "step": 8100 + }, + { + "epoch": 1.0933333333333333, + "grad_norm": 0.19019952416419983, + "learning_rate": 4.9453399999999996e-05, + "loss": 2.359633331298828, + "step": 8200 + }, + { + "epoch": 1.1066666666666667, + "grad_norm": 0.19061067700386047, + "learning_rate": 4.9446733333333336e-05, + "loss": 2.3588740539550783, + "step": 8300 + }, + { + "epoch": 1.12, + "grad_norm": 0.17677488923072815, + "learning_rate": 4.944006666666667e-05, + "loss": 2.3598394775390625, + "step": 8400 + }, + { + "epoch": 1.1333333333333333, + "grad_norm": 0.1912253499031067, + "learning_rate": 4.94334e-05, + "loss": 2.360320739746094, + "step": 8500 + }, + { + "epoch": 1.1466666666666667, + "grad_norm": 0.2024315893650055, + "learning_rate": 4.942673333333334e-05, + "loss": 2.3580809020996094, + "step": 8600 + }, + { + "epoch": 1.16, + "grad_norm": 0.18786175549030304, + "learning_rate": 4.942006666666667e-05, + "loss": 2.3593084716796877, + "step": 8700 + }, + { + "epoch": 1.1733333333333333, + "grad_norm": 0.21662430465221405, + "learning_rate": 4.9413400000000004e-05, + "loss": 2.3598200988769533, + "step": 8800 + }, + { + "epoch": 1.1866666666666668, + "grad_norm": 0.1833869218826294, + "learning_rate": 4.9406733333333336e-05, + "loss": 2.3603662109375, + "step": 8900 + }, + { + "epoch": 1.2, + "grad_norm": 0.17883288860321045, + "learning_rate": 4.940006666666667e-05, + "loss": 2.3576153564453124, + "step": 9000 + }, + { + "epoch": 1.2133333333333334, + "grad_norm": 0.20075617730617523, + "learning_rate": 4.93934e-05, + "loss": 2.359826965332031, + "step": 9100 + }, + { + "epoch": 1.2266666666666666, + "grad_norm": 0.2007887363433838, + "learning_rate": 4.938673333333333e-05, + "loss": 2.358603210449219, + "step": 9200 + }, + { + "epoch": 1.24, + "grad_norm": 0.1917891800403595, + "learning_rate": 4.938006666666667e-05, + "loss": 2.3588916015625, + "step": 9300 + }, + { + "epoch": 1.2533333333333334, + "grad_norm": 0.21604856848716736, + "learning_rate": 4.9373400000000004e-05, + "loss": 2.3602168273925783, + "step": 9400 + }, + { + "epoch": 1.2666666666666666, + "grad_norm": 0.17735335230827332, + "learning_rate": 4.9366733333333336e-05, + "loss": 2.3565715026855467, + "step": 9500 + }, + { + "epoch": 1.28, + "grad_norm": 0.19378457963466644, + "learning_rate": 4.936006666666667e-05, + "loss": 2.3594598388671875, + "step": 9600 + }, + { + "epoch": 1.2933333333333334, + "grad_norm": 0.17695476114749908, + "learning_rate": 4.93534e-05, + "loss": 2.3589300537109374, + "step": 9700 + }, + { + "epoch": 1.3066666666666666, + "grad_norm": 0.21539485454559326, + "learning_rate": 4.934673333333333e-05, + "loss": 2.3615129089355467, + "step": 9800 + }, + { + "epoch": 1.32, + "grad_norm": 0.19134896993637085, + "learning_rate": 4.9340066666666665e-05, + "loss": 2.362266082763672, + "step": 9900 + }, + { + "epoch": 1.3333333333333333, + "grad_norm": 0.21886669099330902, + "learning_rate": 4.9333400000000004e-05, + "loss": 2.358092956542969, + "step": 10000 + }, + { + "epoch": 1.3466666666666667, + "grad_norm": 0.2164846807718277, + "learning_rate": 4.932673333333334e-05, + "loss": 2.3595159912109374, + "step": 10100 + }, + { + "epoch": 1.3599999999999999, + "grad_norm": 0.2044377326965332, + "learning_rate": 4.932006666666667e-05, + "loss": 2.3593812561035157, + "step": 10200 + }, + { + "epoch": 1.3733333333333333, + "grad_norm": 0.19607120752334595, + "learning_rate": 4.93134e-05, + "loss": 2.3597682189941405, + "step": 10300 + }, + { + "epoch": 1.3866666666666667, + "grad_norm": 0.20865550637245178, + "learning_rate": 4.930673333333334e-05, + "loss": 2.3585769653320314, + "step": 10400 + }, + { + "epoch": 1.4, + "grad_norm": 0.19647538661956787, + "learning_rate": 4.9300066666666666e-05, + "loss": 2.357613525390625, + "step": 10500 + }, + { + "epoch": 1.4133333333333333, + "grad_norm": 0.20263008773326874, + "learning_rate": 4.92934e-05, + "loss": 2.3594039916992187, + "step": 10600 + }, + { + "epoch": 1.4266666666666667, + "grad_norm": 0.20336301624774933, + "learning_rate": 4.928673333333334e-05, + "loss": 2.358168487548828, + "step": 10700 + }, + { + "epoch": 1.44, + "grad_norm": 0.19379153847694397, + "learning_rate": 4.928006666666667e-05, + "loss": 2.357987060546875, + "step": 10800 + }, + { + "epoch": 1.4533333333333334, + "grad_norm": 0.19382280111312866, + "learning_rate": 4.92734e-05, + "loss": 2.358719482421875, + "step": 10900 + }, + { + "epoch": 1.4666666666666668, + "grad_norm": 0.22233974933624268, + "learning_rate": 4.9266733333333334e-05, + "loss": 2.359342498779297, + "step": 11000 + }, + { + "epoch": 1.48, + "grad_norm": 0.2031731903553009, + "learning_rate": 4.926006666666667e-05, + "loss": 2.3575526428222657, + "step": 11100 + }, + { + "epoch": 1.4933333333333334, + "grad_norm": 0.2249104380607605, + "learning_rate": 4.9253400000000005e-05, + "loss": 2.359127197265625, + "step": 11200 + }, + { + "epoch": 1.5066666666666668, + "grad_norm": 0.19960635900497437, + "learning_rate": 4.924673333333333e-05, + "loss": 2.35850830078125, + "step": 11300 + }, + { + "epoch": 1.52, + "grad_norm": 0.17657485604286194, + "learning_rate": 4.924006666666667e-05, + "loss": 2.3599581909179688, + "step": 11400 + }, + { + "epoch": 1.5333333333333332, + "grad_norm": 0.2015186995267868, + "learning_rate": 4.92334e-05, + "loss": 2.3588160705566406, + "step": 11500 + }, + { + "epoch": 1.5466666666666666, + "grad_norm": 0.20554782450199127, + "learning_rate": 4.9226733333333334e-05, + "loss": 2.3559320068359373, + "step": 11600 + }, + { + "epoch": 1.56, + "grad_norm": 0.1838974952697754, + "learning_rate": 4.9220066666666667e-05, + "loss": 2.3575198364257814, + "step": 11700 + }, + { + "epoch": 1.5733333333333333, + "grad_norm": 0.19607774913311005, + "learning_rate": 4.9213400000000006e-05, + "loss": 2.3575714111328123, + "step": 11800 + }, + { + "epoch": 1.5866666666666667, + "grad_norm": 0.178280308842659, + "learning_rate": 4.920673333333334e-05, + "loss": 2.3576229858398436, + "step": 11900 + }, + { + "epoch": 1.6, + "grad_norm": 0.18399088084697723, + "learning_rate": 4.920006666666666e-05, + "loss": 2.3562477111816404, + "step": 12000 + }, + { + "epoch": 1.6133333333333333, + "grad_norm": 0.20826038718223572, + "learning_rate": 4.91934e-05, + "loss": 2.355485382080078, + "step": 12100 + }, + { + "epoch": 1.6266666666666667, + "grad_norm": 0.20758900046348572, + "learning_rate": 4.9186733333333335e-05, + "loss": 2.3574794006347655, + "step": 12200 + }, + { + "epoch": 1.6400000000000001, + "grad_norm": 0.19196072220802307, + "learning_rate": 4.918006666666667e-05, + "loss": 2.3581634521484376, + "step": 12300 + }, + { + "epoch": 1.6533333333333333, + "grad_norm": 0.1848619282245636, + "learning_rate": 4.9173400000000006e-05, + "loss": 2.3570237731933594, + "step": 12400 + }, + { + "epoch": 1.6666666666666665, + "grad_norm": 0.2013252079486847, + "learning_rate": 4.916673333333334e-05, + "loss": 2.3577528381347657, + "step": 12500 + }, + { + "epoch": 1.6800000000000002, + "grad_norm": 0.1901196390390396, + "learning_rate": 4.916006666666667e-05, + "loss": 2.356570129394531, + "step": 12600 + }, + { + "epoch": 1.6933333333333334, + "grad_norm": 0.21528318524360657, + "learning_rate": 4.91534e-05, + "loss": 2.3587225341796874, + "step": 12700 + }, + { + "epoch": 1.7066666666666666, + "grad_norm": 0.21024923026561737, + "learning_rate": 4.9146733333333335e-05, + "loss": 2.356683349609375, + "step": 12800 + }, + { + "epoch": 1.72, + "grad_norm": 0.21185488998889923, + "learning_rate": 4.914006666666667e-05, + "loss": 2.3565196228027343, + "step": 12900 + }, + { + "epoch": 1.7333333333333334, + "grad_norm": 0.1909532994031906, + "learning_rate": 4.91334e-05, + "loss": 2.3565260314941407, + "step": 13000 + }, + { + "epoch": 1.7466666666666666, + "grad_norm": 0.17285031080245972, + "learning_rate": 4.912673333333334e-05, + "loss": 2.3597225952148437, + "step": 13100 + }, + { + "epoch": 1.76, + "grad_norm": 0.20661011338233948, + "learning_rate": 4.912006666666667e-05, + "loss": 2.355798797607422, + "step": 13200 + }, + { + "epoch": 1.7733333333333334, + "grad_norm": 0.17752040922641754, + "learning_rate": 4.91134e-05, + "loss": 2.358916931152344, + "step": 13300 + }, + { + "epoch": 1.7866666666666666, + "grad_norm": 0.1924242228269577, + "learning_rate": 4.9106733333333335e-05, + "loss": 2.3583119201660154, + "step": 13400 + }, + { + "epoch": 1.8, + "grad_norm": 0.1849152147769928, + "learning_rate": 4.910006666666667e-05, + "loss": 2.3570172119140627, + "step": 13500 + }, + { + "epoch": 1.8133333333333335, + "grad_norm": 0.185477152466774, + "learning_rate": 4.90934e-05, + "loss": 2.3571125793457033, + "step": 13600 + }, + { + "epoch": 1.8266666666666667, + "grad_norm": 0.20487146079540253, + "learning_rate": 4.908673333333333e-05, + "loss": 2.3563079833984375, + "step": 13700 + }, + { + "epoch": 1.8399999999999999, + "grad_norm": 0.1872117966413498, + "learning_rate": 4.908006666666667e-05, + "loss": 2.3568649291992188, + "step": 13800 + }, + { + "epoch": 1.8533333333333335, + "grad_norm": 0.20117762684822083, + "learning_rate": 4.9073400000000004e-05, + "loss": 2.3565196228027343, + "step": 13900 + }, + { + "epoch": 1.8666666666666667, + "grad_norm": 0.19476266205310822, + "learning_rate": 4.9066733333333336e-05, + "loss": 2.358032989501953, + "step": 14000 + }, + { + "epoch": 1.88, + "grad_norm": 0.22407779097557068, + "learning_rate": 4.906006666666667e-05, + "loss": 2.3561721801757813, + "step": 14100 + }, + { + "epoch": 1.8933333333333333, + "grad_norm": 0.17407096922397614, + "learning_rate": 4.905340000000001e-05, + "loss": 2.3565065002441408, + "step": 14200 + }, + { + "epoch": 1.9066666666666667, + "grad_norm": 0.20838646590709686, + "learning_rate": 4.904673333333333e-05, + "loss": 2.3535838317871094, + "step": 14300 + }, + { + "epoch": 1.92, + "grad_norm": 0.1853237748146057, + "learning_rate": 4.9040066666666665e-05, + "loss": 2.354512481689453, + "step": 14400 + }, + { + "epoch": 1.9333333333333333, + "grad_norm": 0.19149570167064667, + "learning_rate": 4.9033400000000004e-05, + "loss": 2.3577252197265626, + "step": 14500 + }, + { + "epoch": 1.9466666666666668, + "grad_norm": 0.17799700796604156, + "learning_rate": 4.9026733333333336e-05, + "loss": 2.35733154296875, + "step": 14600 + }, + { + "epoch": 1.96, + "grad_norm": 0.19204910099506378, + "learning_rate": 4.902006666666667e-05, + "loss": 2.354717559814453, + "step": 14700 + }, + { + "epoch": 1.9733333333333334, + "grad_norm": 0.2267007678747177, + "learning_rate": 4.90134e-05, + "loss": 2.356217041015625, + "step": 14800 + }, + { + "epoch": 1.9866666666666668, + "grad_norm": 0.19406317174434662, + "learning_rate": 4.900673333333334e-05, + "loss": 2.3556443786621095, + "step": 14900 + }, + { + "epoch": 2.0, + "grad_norm": 0.204499751329422, + "learning_rate": 4.9000066666666665e-05, + "loss": 2.356020965576172, + "step": 15000 + }, + { + "epoch": 2.013333333333333, + "grad_norm": 0.1888091266155243, + "learning_rate": 4.89934e-05, + "loss": 2.352834930419922, + "step": 15100 + }, + { + "epoch": 2.026666666666667, + "grad_norm": 0.19324932992458344, + "learning_rate": 4.8986733333333337e-05, + "loss": 2.354947357177734, + "step": 15200 + }, + { + "epoch": 2.04, + "grad_norm": 0.18967552483081818, + "learning_rate": 4.898006666666667e-05, + "loss": 2.3552085876464846, + "step": 15300 + }, + { + "epoch": 2.0533333333333332, + "grad_norm": 0.1882469207048416, + "learning_rate": 4.89734e-05, + "loss": 2.354617462158203, + "step": 15400 + }, + { + "epoch": 2.066666666666667, + "grad_norm": 0.2014245092868805, + "learning_rate": 4.896673333333333e-05, + "loss": 2.3554867553710936, + "step": 15500 + }, + { + "epoch": 2.08, + "grad_norm": 0.20610852539539337, + "learning_rate": 4.896006666666667e-05, + "loss": 2.3536581420898437, + "step": 15600 + }, + { + "epoch": 2.0933333333333333, + "grad_norm": 0.21335220336914062, + "learning_rate": 4.8953400000000005e-05, + "loss": 2.354955291748047, + "step": 15700 + }, + { + "epoch": 2.1066666666666665, + "grad_norm": 0.19335633516311646, + "learning_rate": 4.894673333333333e-05, + "loss": 2.3532504272460937, + "step": 15800 + }, + { + "epoch": 2.12, + "grad_norm": 0.1970617026090622, + "learning_rate": 4.894006666666667e-05, + "loss": 2.3523245239257813, + "step": 15900 + }, + { + "epoch": 2.1333333333333333, + "grad_norm": 0.195561483502388, + "learning_rate": 4.89334e-05, + "loss": 2.354027099609375, + "step": 16000 + }, + { + "epoch": 2.1466666666666665, + "grad_norm": 0.18854361772537231, + "learning_rate": 4.89268e-05, + "loss": 2.35153564453125, + "step": 16100 + }, + { + "epoch": 2.16, + "grad_norm": 0.20224016904830933, + "learning_rate": 4.892013333333333e-05, + "loss": 2.356122589111328, + "step": 16200 + }, + { + "epoch": 2.1733333333333333, + "grad_norm": 0.18668098747730255, + "learning_rate": 4.891346666666667e-05, + "loss": 2.354725189208984, + "step": 16300 + }, + { + "epoch": 2.1866666666666665, + "grad_norm": 0.1866915374994278, + "learning_rate": 4.8906800000000004e-05, + "loss": 2.354028625488281, + "step": 16400 + }, + { + "epoch": 2.2, + "grad_norm": 0.21461573243141174, + "learning_rate": 4.8900133333333336e-05, + "loss": 2.3526856994628904, + "step": 16500 + }, + { + "epoch": 2.2133333333333334, + "grad_norm": 0.18227700889110565, + "learning_rate": 4.889346666666667e-05, + "loss": 2.3545989990234375, + "step": 16600 + }, + { + "epoch": 2.2266666666666666, + "grad_norm": 0.19773833453655243, + "learning_rate": 4.888680000000001e-05, + "loss": 2.351981201171875, + "step": 16700 + }, + { + "epoch": 2.24, + "grad_norm": 0.20956110954284668, + "learning_rate": 4.888013333333333e-05, + "loss": 2.355366516113281, + "step": 16800 + }, + { + "epoch": 2.2533333333333334, + "grad_norm": 0.1993572860956192, + "learning_rate": 4.8873466666666665e-05, + "loss": 2.3551705932617186, + "step": 16900 + }, + { + "epoch": 2.2666666666666666, + "grad_norm": 0.2015913426876068, + "learning_rate": 4.8866800000000005e-05, + "loss": 2.3545513916015626, + "step": 17000 + }, + { + "epoch": 2.2800000000000002, + "grad_norm": 0.19929593801498413, + "learning_rate": 4.886013333333334e-05, + "loss": 2.352397766113281, + "step": 17100 + }, + { + "epoch": 2.2933333333333334, + "grad_norm": 0.20449623465538025, + "learning_rate": 4.885346666666667e-05, + "loss": 2.354527893066406, + "step": 17200 + }, + { + "epoch": 2.3066666666666666, + "grad_norm": 0.20281392335891724, + "learning_rate": 4.88468e-05, + "loss": 2.351980438232422, + "step": 17300 + }, + { + "epoch": 2.32, + "grad_norm": 0.21583755314350128, + "learning_rate": 4.884013333333334e-05, + "loss": 2.3545767211914064, + "step": 17400 + }, + { + "epoch": 2.3333333333333335, + "grad_norm": 0.20362140238285065, + "learning_rate": 4.8833466666666666e-05, + "loss": 2.3561666870117186, + "step": 17500 + }, + { + "epoch": 2.3466666666666667, + "grad_norm": 0.1887034773826599, + "learning_rate": 4.88268e-05, + "loss": 2.353743438720703, + "step": 17600 + }, + { + "epoch": 2.36, + "grad_norm": 0.1752418577671051, + "learning_rate": 4.882013333333334e-05, + "loss": 2.35181884765625, + "step": 17700 + }, + { + "epoch": 2.3733333333333335, + "grad_norm": 0.19891609251499176, + "learning_rate": 4.881346666666667e-05, + "loss": 2.3536032104492186, + "step": 17800 + }, + { + "epoch": 2.3866666666666667, + "grad_norm": 0.1945076882839203, + "learning_rate": 4.88068e-05, + "loss": 2.35367919921875, + "step": 17900 + }, + { + "epoch": 2.4, + "grad_norm": 0.17770184576511383, + "learning_rate": 4.8800133333333334e-05, + "loss": 2.3528033447265626, + "step": 18000 + }, + { + "epoch": 2.413333333333333, + "grad_norm": 0.223379448056221, + "learning_rate": 4.879353333333333e-05, + "loss": 2.35432861328125, + "step": 18100 + }, + { + "epoch": 2.4266666666666667, + "grad_norm": 0.18828672170639038, + "learning_rate": 4.878686666666667e-05, + "loss": 2.355252380371094, + "step": 18200 + }, + { + "epoch": 2.44, + "grad_norm": 0.18844439089298248, + "learning_rate": 4.8780200000000004e-05, + "loss": 2.3561915588378906, + "step": 18300 + }, + { + "epoch": 2.453333333333333, + "grad_norm": 0.21294449269771576, + "learning_rate": 4.877353333333334e-05, + "loss": 2.3547706604003906, + "step": 18400 + }, + { + "epoch": 2.466666666666667, + "grad_norm": 0.17931200563907623, + "learning_rate": 4.876686666666667e-05, + "loss": 2.355154724121094, + "step": 18500 + }, + { + "epoch": 2.48, + "grad_norm": 0.21106231212615967, + "learning_rate": 4.87602e-05, + "loss": 2.352605895996094, + "step": 18600 + }, + { + "epoch": 2.493333333333333, + "grad_norm": 0.1965954452753067, + "learning_rate": 4.8753533333333333e-05, + "loss": 2.354511260986328, + "step": 18700 + }, + { + "epoch": 2.506666666666667, + "grad_norm": 0.2056257575750351, + "learning_rate": 4.8746866666666666e-05, + "loss": 2.3556398010253905, + "step": 18800 + }, + { + "epoch": 2.52, + "grad_norm": 0.21052542328834534, + "learning_rate": 4.8740200000000005e-05, + "loss": 2.3537603759765626, + "step": 18900 + }, + { + "epoch": 2.533333333333333, + "grad_norm": 0.19049997627735138, + "learning_rate": 4.873353333333334e-05, + "loss": 2.353008270263672, + "step": 19000 + }, + { + "epoch": 2.546666666666667, + "grad_norm": 0.17134717106819153, + "learning_rate": 4.872686666666667e-05, + "loss": 2.3548989868164063, + "step": 19100 + }, + { + "epoch": 2.56, + "grad_norm": 0.19276337325572968, + "learning_rate": 4.87202e-05, + "loss": 2.3533308410644533, + "step": 19200 + }, + { + "epoch": 2.5733333333333333, + "grad_norm": 0.20519237220287323, + "learning_rate": 4.8713533333333334e-05, + "loss": 2.353628692626953, + "step": 19300 + }, + { + "epoch": 2.586666666666667, + "grad_norm": 0.19865448772907257, + "learning_rate": 4.8706866666666666e-05, + "loss": 2.3552372741699217, + "step": 19400 + }, + { + "epoch": 2.6, + "grad_norm": 0.21072329580783844, + "learning_rate": 4.87002e-05, + "loss": 2.354803009033203, + "step": 19500 + }, + { + "epoch": 2.6133333333333333, + "grad_norm": 0.20858490467071533, + "learning_rate": 4.869353333333334e-05, + "loss": 2.352855224609375, + "step": 19600 + }, + { + "epoch": 2.626666666666667, + "grad_norm": 0.19127769768238068, + "learning_rate": 4.868686666666667e-05, + "loss": 2.3559735107421873, + "step": 19700 + }, + { + "epoch": 2.64, + "grad_norm": 0.1971408575773239, + "learning_rate": 4.86802e-05, + "loss": 2.3524879455566405, + "step": 19800 + }, + { + "epoch": 2.6533333333333333, + "grad_norm": 0.19466613233089447, + "learning_rate": 4.867353333333334e-05, + "loss": 2.35252685546875, + "step": 19900 + }, + { + "epoch": 2.6666666666666665, + "grad_norm": 0.17773135006427765, + "learning_rate": 4.866686666666667e-05, + "loss": 2.3533396911621094, + "step": 20000 + }, + { + "epoch": 2.68, + "grad_norm": 0.2046392261981964, + "learning_rate": 4.866026666666667e-05, + "loss": 2.3539585876464844, + "step": 20100 + }, + { + "epoch": 2.6933333333333334, + "grad_norm": 0.1670500934123993, + "learning_rate": 4.8653600000000005e-05, + "loss": 2.353471527099609, + "step": 20200 + }, + { + "epoch": 2.7066666666666666, + "grad_norm": 0.1887359917163849, + "learning_rate": 4.864693333333333e-05, + "loss": 2.3529425048828125, + "step": 20300 + }, + { + "epoch": 2.7199999999999998, + "grad_norm": 0.19046323001384735, + "learning_rate": 4.864026666666667e-05, + "loss": 2.353743133544922, + "step": 20400 + }, + { + "epoch": 2.7333333333333334, + "grad_norm": 0.20893333852291107, + "learning_rate": 4.86336e-05, + "loss": 2.354876708984375, + "step": 20500 + }, + { + "epoch": 2.7466666666666666, + "grad_norm": 0.20090077817440033, + "learning_rate": 4.8626933333333334e-05, + "loss": 2.354145050048828, + "step": 20600 + }, + { + "epoch": 2.76, + "grad_norm": 0.1944134384393692, + "learning_rate": 4.862026666666667e-05, + "loss": 2.3537525939941406, + "step": 20700 + }, + { + "epoch": 2.7733333333333334, + "grad_norm": 0.19937659800052643, + "learning_rate": 4.8613600000000005e-05, + "loss": 2.3532589721679686, + "step": 20800 + }, + { + "epoch": 2.7866666666666666, + "grad_norm": 0.19922621548175812, + "learning_rate": 4.860693333333334e-05, + "loss": 2.3535202026367186, + "step": 20900 + }, + { + "epoch": 2.8, + "grad_norm": 0.17885304987430573, + "learning_rate": 4.860026666666667e-05, + "loss": 2.3526271057128905, + "step": 21000 + }, + { + "epoch": 2.8133333333333335, + "grad_norm": 0.19968298077583313, + "learning_rate": 4.85936e-05, + "loss": 2.351287078857422, + "step": 21100 + }, + { + "epoch": 2.8266666666666667, + "grad_norm": 0.20618899166584015, + "learning_rate": 4.8586933333333334e-05, + "loss": 2.35383544921875, + "step": 21200 + }, + { + "epoch": 2.84, + "grad_norm": 0.18697108328342438, + "learning_rate": 4.8580266666666666e-05, + "loss": 2.3557089233398436, + "step": 21300 + }, + { + "epoch": 2.8533333333333335, + "grad_norm": 0.1982707530260086, + "learning_rate": 4.8573600000000005e-05, + "loss": 2.3569706726074218, + "step": 21400 + }, + { + "epoch": 2.8666666666666667, + "grad_norm": 0.1921544075012207, + "learning_rate": 4.856693333333334e-05, + "loss": 2.354062042236328, + "step": 21500 + }, + { + "epoch": 2.88, + "grad_norm": 0.18305157124996185, + "learning_rate": 4.856026666666667e-05, + "loss": 2.3534732055664063, + "step": 21600 + }, + { + "epoch": 2.8933333333333335, + "grad_norm": 0.1875217705965042, + "learning_rate": 4.85536e-05, + "loss": 2.354545135498047, + "step": 21700 + }, + { + "epoch": 2.9066666666666667, + "grad_norm": 0.20880307257175446, + "learning_rate": 4.8546933333333334e-05, + "loss": 2.353887939453125, + "step": 21800 + }, + { + "epoch": 2.92, + "grad_norm": 0.21262428164482117, + "learning_rate": 4.854026666666667e-05, + "loss": 2.352968292236328, + "step": 21900 + }, + { + "epoch": 2.9333333333333336, + "grad_norm": 0.19341909885406494, + "learning_rate": 4.85336e-05, + "loss": 2.3549241638183593, + "step": 22000 + }, + { + "epoch": 2.9466666666666668, + "grad_norm": 0.2057921290397644, + "learning_rate": 4.8527e-05, + "loss": 2.3518043518066407, + "step": 22100 + }, + { + "epoch": 2.96, + "grad_norm": 0.1986525058746338, + "learning_rate": 4.852033333333334e-05, + "loss": 2.3545606994628905, + "step": 22200 + }, + { + "epoch": 2.9733333333333336, + "grad_norm": 0.19995741546154022, + "learning_rate": 4.851366666666667e-05, + "loss": 2.35246826171875, + "step": 22300 + }, + { + "epoch": 2.986666666666667, + "grad_norm": 0.18662478029727936, + "learning_rate": 4.8507e-05, + "loss": 2.3534344482421874, + "step": 22400 + }, + { + "epoch": 3.0, + "grad_norm": 0.19860990345478058, + "learning_rate": 4.8500333333333334e-05, + "loss": 2.3527035522460937, + "step": 22500 + }, + { + "epoch": 3.013333333333333, + "grad_norm": 0.20039217174053192, + "learning_rate": 4.849366666666667e-05, + "loss": 2.348377532958984, + "step": 22600 + }, + { + "epoch": 3.026666666666667, + "grad_norm": 0.2021869421005249, + "learning_rate": 4.8487000000000005e-05, + "loss": 2.351779022216797, + "step": 22700 + }, + { + "epoch": 3.04, + "grad_norm": 0.1985320746898651, + "learning_rate": 4.848033333333333e-05, + "loss": 2.3483657836914062, + "step": 22800 + }, + { + "epoch": 3.0533333333333332, + "grad_norm": 0.1824573427438736, + "learning_rate": 4.847366666666667e-05, + "loss": 2.347190704345703, + "step": 22900 + }, + { + "epoch": 3.066666666666667, + "grad_norm": 0.19089816510677338, + "learning_rate": 4.8467e-05, + "loss": 2.3492135620117187, + "step": 23000 + }, + { + "epoch": 3.08, + "grad_norm": 0.23082399368286133, + "learning_rate": 4.8460333333333334e-05, + "loss": 2.348924560546875, + "step": 23100 + }, + { + "epoch": 3.0933333333333333, + "grad_norm": 0.18981102108955383, + "learning_rate": 4.8453666666666667e-05, + "loss": 2.350345001220703, + "step": 23200 + }, + { + "epoch": 3.1066666666666665, + "grad_norm": 0.19843408465385437, + "learning_rate": 4.8447000000000006e-05, + "loss": 2.3490699768066405, + "step": 23300 + }, + { + "epoch": 3.12, + "grad_norm": 0.19274167716503143, + "learning_rate": 4.844033333333334e-05, + "loss": 2.350037078857422, + "step": 23400 + }, + { + "epoch": 3.1333333333333333, + "grad_norm": 0.1848369985818863, + "learning_rate": 4.843366666666667e-05, + "loss": 2.3491517639160158, + "step": 23500 + }, + { + "epoch": 3.1466666666666665, + "grad_norm": 0.18349026143550873, + "learning_rate": 4.8427e-05, + "loss": 2.3494111633300783, + "step": 23600 + }, + { + "epoch": 3.16, + "grad_norm": 0.20055054128170013, + "learning_rate": 4.8420333333333335e-05, + "loss": 2.3514225769042967, + "step": 23700 + }, + { + "epoch": 3.1733333333333333, + "grad_norm": 0.17645560204982758, + "learning_rate": 4.841366666666667e-05, + "loss": 2.3496327209472656, + "step": 23800 + }, + { + "epoch": 3.1866666666666665, + "grad_norm": 0.20394593477249146, + "learning_rate": 4.8407e-05, + "loss": 2.34930908203125, + "step": 23900 + }, + { + "epoch": 3.2, + "grad_norm": 0.19807790219783783, + "learning_rate": 4.840033333333334e-05, + "loss": 2.350684814453125, + "step": 24000 + }, + { + "epoch": 3.2133333333333334, + "grad_norm": 0.19074247777462006, + "learning_rate": 4.839373333333334e-05, + "loss": 2.3482009887695314, + "step": 24100 + }, + { + "epoch": 3.2266666666666666, + "grad_norm": 0.184867724776268, + "learning_rate": 4.838706666666667e-05, + "loss": 2.3509567260742186, + "step": 24200 + }, + { + "epoch": 3.24, + "grad_norm": 0.20876654982566833, + "learning_rate": 4.83804e-05, + "loss": 2.351715393066406, + "step": 24300 + }, + { + "epoch": 3.2533333333333334, + "grad_norm": 0.20710976421833038, + "learning_rate": 4.837373333333334e-05, + "loss": 2.352671813964844, + "step": 24400 + }, + { + "epoch": 3.2666666666666666, + "grad_norm": 0.2047370821237564, + "learning_rate": 4.836706666666667e-05, + "loss": 2.347806701660156, + "step": 24500 + }, + { + "epoch": 3.2800000000000002, + "grad_norm": 0.19557665288448334, + "learning_rate": 4.83604e-05, + "loss": 2.3503456115722656, + "step": 24600 + }, + { + "epoch": 3.2933333333333334, + "grad_norm": 0.19264017045497894, + "learning_rate": 4.835373333333333e-05, + "loss": 2.350893859863281, + "step": 24700 + }, + { + "epoch": 3.3066666666666666, + "grad_norm": 0.1815241277217865, + "learning_rate": 4.834706666666667e-05, + "loss": 2.3506166076660158, + "step": 24800 + }, + { + "epoch": 3.32, + "grad_norm": 0.19273795187473297, + "learning_rate": 4.83404e-05, + "loss": 2.3491062927246094, + "step": 24900 + }, + { + "epoch": 3.3333333333333335, + "grad_norm": 0.1982475221157074, + "learning_rate": 4.8333733333333334e-05, + "loss": 2.350149383544922, + "step": 25000 + }, + { + "epoch": 3.3466666666666667, + "grad_norm": 0.19936062395572662, + "learning_rate": 4.8327066666666674e-05, + "loss": 2.349862518310547, + "step": 25100 + }, + { + "epoch": 3.36, + "grad_norm": 0.1829392910003662, + "learning_rate": 4.8320400000000006e-05, + "loss": 2.351768035888672, + "step": 25200 + }, + { + "epoch": 3.3733333333333335, + "grad_norm": 0.1831563413143158, + "learning_rate": 4.831373333333333e-05, + "loss": 2.351492919921875, + "step": 25300 + }, + { + "epoch": 3.3866666666666667, + "grad_norm": 0.20415860414505005, + "learning_rate": 4.830706666666667e-05, + "loss": 2.3486749267578126, + "step": 25400 + }, + { + "epoch": 3.4, + "grad_norm": 0.17977586388587952, + "learning_rate": 4.83004e-05, + "loss": 2.351340026855469, + "step": 25500 + }, + { + "epoch": 3.413333333333333, + "grad_norm": 0.1846362203359604, + "learning_rate": 4.8293733333333335e-05, + "loss": 2.351724090576172, + "step": 25600 + }, + { + "epoch": 3.4266666666666667, + "grad_norm": 0.18675661087036133, + "learning_rate": 4.828706666666667e-05, + "loss": 2.351480712890625, + "step": 25700 + }, + { + "epoch": 3.44, + "grad_norm": 0.18456125259399414, + "learning_rate": 4.8280400000000006e-05, + "loss": 2.3500599670410156, + "step": 25800 + }, + { + "epoch": 3.453333333333333, + "grad_norm": 0.19029958546161652, + "learning_rate": 4.827373333333334e-05, + "loss": 2.350344543457031, + "step": 25900 + }, + { + "epoch": 3.466666666666667, + "grad_norm": 0.17213845252990723, + "learning_rate": 4.826706666666667e-05, + "loss": 2.3511953735351563, + "step": 26000 + }, + { + "epoch": 3.48, + "grad_norm": 0.19007565081119537, + "learning_rate": 4.826046666666667e-05, + "loss": 2.3536442565917968, + "step": 26100 + }, + { + "epoch": 3.493333333333333, + "grad_norm": 0.2030433863401413, + "learning_rate": 4.82538e-05, + "loss": 2.3524905395507814, + "step": 26200 + }, + { + "epoch": 3.506666666666667, + "grad_norm": 0.1910092532634735, + "learning_rate": 4.8247133333333334e-05, + "loss": 2.349417419433594, + "step": 26300 + }, + { + "epoch": 3.52, + "grad_norm": 0.1992577612400055, + "learning_rate": 4.8240466666666667e-05, + "loss": 2.350249938964844, + "step": 26400 + }, + { + "epoch": 3.533333333333333, + "grad_norm": 0.2043229341506958, + "learning_rate": 4.82338e-05, + "loss": 2.3508177185058594, + "step": 26500 + }, + { + "epoch": 3.546666666666667, + "grad_norm": 0.19904406368732452, + "learning_rate": 4.822713333333334e-05, + "loss": 2.3501368713378907, + "step": 26600 + }, + { + "epoch": 3.56, + "grad_norm": 0.2048622965812683, + "learning_rate": 4.822046666666667e-05, + "loss": 2.3512261962890624, + "step": 26700 + }, + { + "epoch": 3.5733333333333333, + "grad_norm": 0.18168894946575165, + "learning_rate": 4.82138e-05, + "loss": 2.3506343078613283, + "step": 26800 + }, + { + "epoch": 3.586666666666667, + "grad_norm": 0.2186703383922577, + "learning_rate": 4.8207133333333335e-05, + "loss": 2.3507453918457033, + "step": 26900 + }, + { + "epoch": 3.6, + "grad_norm": 0.17658771574497223, + "learning_rate": 4.8200466666666674e-05, + "loss": 2.350555114746094, + "step": 27000 + }, + { + "epoch": 3.6133333333333333, + "grad_norm": 0.18329951167106628, + "learning_rate": 4.81938e-05, + "loss": 2.3507563781738283, + "step": 27100 + }, + { + "epoch": 3.626666666666667, + "grad_norm": 0.17677000164985657, + "learning_rate": 4.818713333333333e-05, + "loss": 2.3508815002441406, + "step": 27200 + }, + { + "epoch": 3.64, + "grad_norm": 0.18543322384357452, + "learning_rate": 4.818046666666667e-05, + "loss": 2.353324737548828, + "step": 27300 + }, + { + "epoch": 3.6533333333333333, + "grad_norm": 0.17043279111385345, + "learning_rate": 4.81738e-05, + "loss": 2.351223907470703, + "step": 27400 + }, + { + "epoch": 3.6666666666666665, + "grad_norm": 0.196268692612648, + "learning_rate": 4.8167133333333335e-05, + "loss": 2.348458557128906, + "step": 27500 + }, + { + "epoch": 3.68, + "grad_norm": 0.21252736449241638, + "learning_rate": 4.816046666666667e-05, + "loss": 2.351412811279297, + "step": 27600 + }, + { + "epoch": 3.6933333333333334, + "grad_norm": 0.1941421627998352, + "learning_rate": 4.8153800000000006e-05, + "loss": 2.3509474182128907, + "step": 27700 + }, + { + "epoch": 3.7066666666666666, + "grad_norm": 0.18156079947948456, + "learning_rate": 4.814713333333333e-05, + "loss": 2.3500953674316407, + "step": 27800 + }, + { + "epoch": 3.7199999999999998, + "grad_norm": 0.18474163115024567, + "learning_rate": 4.8140466666666664e-05, + "loss": 2.3500129699707033, + "step": 27900 + }, + { + "epoch": 3.7333333333333334, + "grad_norm": 0.1893375813961029, + "learning_rate": 4.81338e-05, + "loss": 2.3503759765625, + "step": 28000 + }, + { + "epoch": 3.7466666666666666, + "grad_norm": 0.18845497071743011, + "learning_rate": 4.81272e-05, + "loss": 2.3525970458984373, + "step": 28100 + }, + { + "epoch": 3.76, + "grad_norm": 0.21595294773578644, + "learning_rate": 4.8120533333333335e-05, + "loss": 2.3500466918945313, + "step": 28200 + }, + { + "epoch": 3.7733333333333334, + "grad_norm": 0.19505618512630463, + "learning_rate": 4.811386666666667e-05, + "loss": 2.349498748779297, + "step": 28300 + }, + { + "epoch": 3.7866666666666666, + "grad_norm": 0.17862743139266968, + "learning_rate": 4.81072e-05, + "loss": 2.348866424560547, + "step": 28400 + }, + { + "epoch": 3.8, + "grad_norm": 0.194855734705925, + "learning_rate": 4.810053333333334e-05, + "loss": 2.3509757995605467, + "step": 28500 + }, + { + "epoch": 3.8133333333333335, + "grad_norm": 0.19078636169433594, + "learning_rate": 4.809386666666667e-05, + "loss": 2.3488845825195312, + "step": 28600 + }, + { + "epoch": 3.8266666666666667, + "grad_norm": 0.18988379836082458, + "learning_rate": 4.80872e-05, + "loss": 2.35125244140625, + "step": 28700 + }, + { + "epoch": 3.84, + "grad_norm": 0.1913130134344101, + "learning_rate": 4.8080533333333335e-05, + "loss": 2.3494662475585937, + "step": 28800 + }, + { + "epoch": 3.8533333333333335, + "grad_norm": 0.2060711681842804, + "learning_rate": 4.807386666666667e-05, + "loss": 2.3524136352539062, + "step": 28900 + }, + { + "epoch": 3.8666666666666667, + "grad_norm": 0.18792103230953217, + "learning_rate": 4.80672e-05, + "loss": 2.351210479736328, + "step": 29000 + }, + { + "epoch": 3.88, + "grad_norm": 0.2034904658794403, + "learning_rate": 4.806053333333334e-05, + "loss": 2.3502317810058595, + "step": 29100 + }, + { + "epoch": 3.8933333333333335, + "grad_norm": 0.20705494284629822, + "learning_rate": 4.805386666666667e-05, + "loss": 2.3528851318359374, + "step": 29200 + }, + { + "epoch": 3.9066666666666667, + "grad_norm": 0.17130215466022491, + "learning_rate": 4.80472e-05, + "loss": 2.3496728515625, + "step": 29300 + }, + { + "epoch": 3.92, + "grad_norm": 0.22938485443592072, + "learning_rate": 4.8040533333333335e-05, + "loss": 2.3508564758300783, + "step": 29400 + }, + { + "epoch": 3.9333333333333336, + "grad_norm": 0.20697031915187836, + "learning_rate": 4.8033866666666674e-05, + "loss": 2.350555419921875, + "step": 29500 + }, + { + "epoch": 3.9466666666666668, + "grad_norm": 0.21105030179023743, + "learning_rate": 4.80272e-05, + "loss": 2.3500137329101562, + "step": 29600 + }, + { + "epoch": 3.96, + "grad_norm": 0.1795365959405899, + "learning_rate": 4.802053333333333e-05, + "loss": 2.351229705810547, + "step": 29700 + }, + { + "epoch": 3.9733333333333336, + "grad_norm": 0.20336268842220306, + "learning_rate": 4.801386666666667e-05, + "loss": 2.3524740600585936, + "step": 29800 + }, + { + "epoch": 3.986666666666667, + "grad_norm": 0.18867026269435883, + "learning_rate": 4.8007200000000003e-05, + "loss": 2.35136474609375, + "step": 29900 + }, + { + "epoch": 4.0, + "grad_norm": 0.1865285336971283, + "learning_rate": 4.8000533333333336e-05, + "loss": 2.3508816528320313, + "step": 30000 + }, + { + "epoch": 4.013333333333334, + "grad_norm": 0.19620107114315033, + "learning_rate": 4.7993933333333335e-05, + "loss": 2.344427185058594, + "step": 30100 + }, + { + "epoch": 4.026666666666666, + "grad_norm": 0.19542329013347626, + "learning_rate": 4.798726666666667e-05, + "loss": 2.3426863098144532, + "step": 30200 + }, + { + "epoch": 4.04, + "grad_norm": 0.19271595776081085, + "learning_rate": 4.7980600000000006e-05, + "loss": 2.340071258544922, + "step": 30300 + }, + { + "epoch": 4.053333333333334, + "grad_norm": 0.1889171600341797, + "learning_rate": 4.797393333333334e-05, + "loss": 2.338631896972656, + "step": 30400 + }, + { + "epoch": 4.066666666666666, + "grad_norm": 0.19066178798675537, + "learning_rate": 4.796726666666667e-05, + "loss": 2.342739715576172, + "step": 30500 + }, + { + "epoch": 4.08, + "grad_norm": 0.1947835087776184, + "learning_rate": 4.79606e-05, + "loss": 2.3432049560546875, + "step": 30600 + }, + { + "epoch": 4.093333333333334, + "grad_norm": 0.21322356164455414, + "learning_rate": 4.7953933333333335e-05, + "loss": 2.342285614013672, + "step": 30700 + }, + { + "epoch": 4.1066666666666665, + "grad_norm": 0.20188263058662415, + "learning_rate": 4.794726666666667e-05, + "loss": 2.3427188110351564, + "step": 30800 + }, + { + "epoch": 4.12, + "grad_norm": 0.19048044085502625, + "learning_rate": 4.79406e-05, + "loss": 2.3455911254882813, + "step": 30900 + }, + { + "epoch": 4.133333333333334, + "grad_norm": 0.20373786985874176, + "learning_rate": 4.793393333333334e-05, + "loss": 2.34266845703125, + "step": 31000 + }, + { + "epoch": 4.1466666666666665, + "grad_norm": 0.19136583805084229, + "learning_rate": 4.792726666666667e-05, + "loss": 2.345565185546875, + "step": 31100 + }, + { + "epoch": 4.16, + "grad_norm": 0.20485562086105347, + "learning_rate": 4.79206e-05, + "loss": 2.3444659423828127, + "step": 31200 + }, + { + "epoch": 4.173333333333334, + "grad_norm": 0.19716604053974152, + "learning_rate": 4.7913933333333336e-05, + "loss": 2.3462744140625, + "step": 31300 + }, + { + "epoch": 4.1866666666666665, + "grad_norm": 0.1901930719614029, + "learning_rate": 4.790726666666667e-05, + "loss": 2.3410409545898436, + "step": 31400 + }, + { + "epoch": 4.2, + "grad_norm": 0.19195866584777832, + "learning_rate": 4.79006e-05, + "loss": 2.3443292236328124, + "step": 31500 + }, + { + "epoch": 4.213333333333333, + "grad_norm": 0.19171933829784393, + "learning_rate": 4.789393333333333e-05, + "loss": 2.3432662963867186, + "step": 31600 + }, + { + "epoch": 4.226666666666667, + "grad_norm": 0.20632386207580566, + "learning_rate": 4.788726666666667e-05, + "loss": 2.3424139404296875, + "step": 31700 + }, + { + "epoch": 4.24, + "grad_norm": 0.20935772359371185, + "learning_rate": 4.7880600000000004e-05, + "loss": 2.3445693969726564, + "step": 31800 + }, + { + "epoch": 4.253333333333333, + "grad_norm": 0.2092011719942093, + "learning_rate": 4.7873933333333336e-05, + "loss": 2.3450819396972657, + "step": 31900 + }, + { + "epoch": 4.266666666666667, + "grad_norm": 0.18511556088924408, + "learning_rate": 4.786726666666667e-05, + "loss": 2.3434269714355467, + "step": 32000 + }, + { + "epoch": 4.28, + "grad_norm": 0.19721107184886932, + "learning_rate": 4.786066666666667e-05, + "loss": 2.3466552734375, + "step": 32100 + }, + { + "epoch": 4.293333333333333, + "grad_norm": 0.20387394726276398, + "learning_rate": 4.7854000000000006e-05, + "loss": 2.344354705810547, + "step": 32200 + }, + { + "epoch": 4.306666666666667, + "grad_norm": 0.1933874487876892, + "learning_rate": 4.784733333333333e-05, + "loss": 2.3450242614746095, + "step": 32300 + }, + { + "epoch": 4.32, + "grad_norm": 0.18852448463439941, + "learning_rate": 4.7840666666666664e-05, + "loss": 2.345384368896484, + "step": 32400 + }, + { + "epoch": 4.333333333333333, + "grad_norm": 0.1856076568365097, + "learning_rate": 4.7834e-05, + "loss": 2.3448046875, + "step": 32500 + }, + { + "epoch": 4.346666666666667, + "grad_norm": 0.1768845170736313, + "learning_rate": 4.7827333333333335e-05, + "loss": 2.3447705078125, + "step": 32600 + }, + { + "epoch": 4.36, + "grad_norm": 0.2036508321762085, + "learning_rate": 4.782066666666667e-05, + "loss": 2.3455548095703125, + "step": 32700 + }, + { + "epoch": 4.373333333333333, + "grad_norm": 0.2223418802022934, + "learning_rate": 4.7814e-05, + "loss": 2.345106353759766, + "step": 32800 + }, + { + "epoch": 4.386666666666667, + "grad_norm": 0.19732633233070374, + "learning_rate": 4.780733333333334e-05, + "loss": 2.34563720703125, + "step": 32900 + }, + { + "epoch": 4.4, + "grad_norm": 0.19825312495231628, + "learning_rate": 4.780066666666667e-05, + "loss": 2.3472279357910155, + "step": 33000 + }, + { + "epoch": 4.413333333333333, + "grad_norm": 0.20383819937705994, + "learning_rate": 4.7794e-05, + "loss": 2.3474839782714843, + "step": 33100 + }, + { + "epoch": 4.426666666666667, + "grad_norm": 0.18383854627609253, + "learning_rate": 4.7787333333333336e-05, + "loss": 2.347451171875, + "step": 33200 + }, + { + "epoch": 4.44, + "grad_norm": 0.2009461224079132, + "learning_rate": 4.778066666666667e-05, + "loss": 2.3456491088867186, + "step": 33300 + }, + { + "epoch": 4.453333333333333, + "grad_norm": 0.1955096274614334, + "learning_rate": 4.7774e-05, + "loss": 2.347562255859375, + "step": 33400 + }, + { + "epoch": 4.466666666666667, + "grad_norm": 0.1971255987882614, + "learning_rate": 4.776733333333334e-05, + "loss": 2.3455210876464845, + "step": 33500 + }, + { + "epoch": 4.48, + "grad_norm": 0.2104266732931137, + "learning_rate": 4.776066666666667e-05, + "loss": 2.3482284545898438, + "step": 33600 + }, + { + "epoch": 4.493333333333333, + "grad_norm": 0.19855403900146484, + "learning_rate": 4.7754000000000004e-05, + "loss": 2.345506439208984, + "step": 33700 + }, + { + "epoch": 4.506666666666667, + "grad_norm": 0.1903480589389801, + "learning_rate": 4.7747333333333336e-05, + "loss": 2.345941925048828, + "step": 33800 + }, + { + "epoch": 4.52, + "grad_norm": 0.18413390219211578, + "learning_rate": 4.774066666666667e-05, + "loss": 2.345931091308594, + "step": 33900 + }, + { + "epoch": 4.533333333333333, + "grad_norm": 0.2099205106496811, + "learning_rate": 4.7734e-05, + "loss": 2.34525146484375, + "step": 34000 + }, + { + "epoch": 4.546666666666667, + "grad_norm": 0.19890472292900085, + "learning_rate": 4.77274e-05, + "loss": 2.3454127502441406, + "step": 34100 + }, + { + "epoch": 4.5600000000000005, + "grad_norm": 0.1928263008594513, + "learning_rate": 4.772073333333333e-05, + "loss": 2.3484063720703126, + "step": 34200 + }, + { + "epoch": 4.573333333333333, + "grad_norm": 0.19899751245975494, + "learning_rate": 4.771406666666667e-05, + "loss": 2.344409637451172, + "step": 34300 + }, + { + "epoch": 4.586666666666667, + "grad_norm": 0.19718094170093536, + "learning_rate": 4.77074e-05, + "loss": 2.346121520996094, + "step": 34400 + }, + { + "epoch": 4.6, + "grad_norm": 0.20367039740085602, + "learning_rate": 4.7700733333333336e-05, + "loss": 2.3464027404785157, + "step": 34500 + }, + { + "epoch": 4.613333333333333, + "grad_norm": 0.2027977555990219, + "learning_rate": 4.769406666666667e-05, + "loss": 2.346643371582031, + "step": 34600 + }, + { + "epoch": 4.626666666666667, + "grad_norm": 0.19116739928722382, + "learning_rate": 4.768740000000001e-05, + "loss": 2.3448785400390624, + "step": 34700 + }, + { + "epoch": 4.64, + "grad_norm": 0.1741366684436798, + "learning_rate": 4.768073333333334e-05, + "loss": 2.3467585754394533, + "step": 34800 + }, + { + "epoch": 4.653333333333333, + "grad_norm": 0.19366861879825592, + "learning_rate": 4.7674066666666665e-05, + "loss": 2.346854248046875, + "step": 34900 + }, + { + "epoch": 4.666666666666667, + "grad_norm": 0.1961996853351593, + "learning_rate": 4.7667400000000004e-05, + "loss": 2.346597442626953, + "step": 35000 + }, + { + "epoch": 4.68, + "grad_norm": 0.20493026077747345, + "learning_rate": 4.7660733333333336e-05, + "loss": 2.3467396545410155, + "step": 35100 + }, + { + "epoch": 4.693333333333333, + "grad_norm": 0.19343268871307373, + "learning_rate": 4.765406666666667e-05, + "loss": 2.345442352294922, + "step": 35200 + }, + { + "epoch": 4.706666666666667, + "grad_norm": 0.19839325547218323, + "learning_rate": 4.76474e-05, + "loss": 2.348248291015625, + "step": 35300 + }, + { + "epoch": 4.72, + "grad_norm": 0.19443462789058685, + "learning_rate": 4.764073333333334e-05, + "loss": 2.3478456115722657, + "step": 35400 + }, + { + "epoch": 4.733333333333333, + "grad_norm": 0.18703633546829224, + "learning_rate": 4.763406666666667e-05, + "loss": 2.3447303771972656, + "step": 35500 + }, + { + "epoch": 4.746666666666667, + "grad_norm": 0.19159509241580963, + "learning_rate": 4.76274e-05, + "loss": 2.3463864135742187, + "step": 35600 + }, + { + "epoch": 4.76, + "grad_norm": 0.19903169572353363, + "learning_rate": 4.7620733333333336e-05, + "loss": 2.347983093261719, + "step": 35700 + }, + { + "epoch": 4.773333333333333, + "grad_norm": 0.19707246124744415, + "learning_rate": 4.761406666666667e-05, + "loss": 2.3435577392578124, + "step": 35800 + }, + { + "epoch": 4.786666666666667, + "grad_norm": 0.183243989944458, + "learning_rate": 4.76074e-05, + "loss": 2.346152038574219, + "step": 35900 + }, + { + "epoch": 4.8, + "grad_norm": 0.1864614188671112, + "learning_rate": 4.760073333333333e-05, + "loss": 2.3478399658203126, + "step": 36000 + }, + { + "epoch": 4.8133333333333335, + "grad_norm": 0.19538547098636627, + "learning_rate": 4.759413333333333e-05, + "loss": 2.34772705078125, + "step": 36100 + }, + { + "epoch": 4.826666666666666, + "grad_norm": 0.19601057469844818, + "learning_rate": 4.758746666666667e-05, + "loss": 2.3468177795410154, + "step": 36200 + }, + { + "epoch": 4.84, + "grad_norm": 0.19639572501182556, + "learning_rate": 4.7580800000000004e-05, + "loss": 2.3478041076660157, + "step": 36300 + }, + { + "epoch": 4.8533333333333335, + "grad_norm": 0.19426213204860687, + "learning_rate": 4.7574133333333336e-05, + "loss": 2.345642547607422, + "step": 36400 + }, + { + "epoch": 4.866666666666667, + "grad_norm": 0.17866654694080353, + "learning_rate": 4.756746666666667e-05, + "loss": 2.3476348876953126, + "step": 36500 + }, + { + "epoch": 4.88, + "grad_norm": 0.20611488819122314, + "learning_rate": 4.75608e-05, + "loss": 2.3455621337890626, + "step": 36600 + }, + { + "epoch": 4.8933333333333335, + "grad_norm": 0.19792433083057404, + "learning_rate": 4.755413333333333e-05, + "loss": 2.3475059509277343, + "step": 36700 + }, + { + "epoch": 4.906666666666666, + "grad_norm": 0.20012043416500092, + "learning_rate": 4.7547466666666665e-05, + "loss": 2.3476327514648436, + "step": 36800 + }, + { + "epoch": 4.92, + "grad_norm": 0.21811543405056, + "learning_rate": 4.7540800000000004e-05, + "loss": 2.3479005432128908, + "step": 36900 + }, + { + "epoch": 4.933333333333334, + "grad_norm": 0.18837958574295044, + "learning_rate": 4.7534133333333336e-05, + "loss": 2.3472393798828124, + "step": 37000 + }, + { + "epoch": 4.946666666666666, + "grad_norm": 0.20428119599819183, + "learning_rate": 4.752746666666667e-05, + "loss": 2.3473336791992185, + "step": 37100 + }, + { + "epoch": 4.96, + "grad_norm": 0.2100653052330017, + "learning_rate": 4.752080000000001e-05, + "loss": 2.3485343933105467, + "step": 37200 + }, + { + "epoch": 4.973333333333334, + "grad_norm": 0.19952954351902008, + "learning_rate": 4.751413333333334e-05, + "loss": 2.347123718261719, + "step": 37300 + }, + { + "epoch": 4.986666666666666, + "grad_norm": 0.19739681482315063, + "learning_rate": 4.7507466666666665e-05, + "loss": 2.347565155029297, + "step": 37400 + }, + { + "epoch": 5.0, + "grad_norm": 0.20094037055969238, + "learning_rate": 4.75008e-05, + "loss": 2.3468731689453124, + "step": 37500 + }, + { + "epoch": 5.013333333333334, + "grad_norm": 0.21585266292095184, + "learning_rate": 4.749413333333334e-05, + "loss": 2.333679962158203, + "step": 37600 + }, + { + "epoch": 5.026666666666666, + "grad_norm": 0.20911413431167603, + "learning_rate": 4.748746666666667e-05, + "loss": 2.3350621032714844, + "step": 37700 + }, + { + "epoch": 5.04, + "grad_norm": 0.19561605155467987, + "learning_rate": 4.74808e-05, + "loss": 2.334278564453125, + "step": 37800 + }, + { + "epoch": 5.053333333333334, + "grad_norm": 0.2007005661725998, + "learning_rate": 4.747413333333334e-05, + "loss": 2.3355723571777345, + "step": 37900 + }, + { + "epoch": 5.066666666666666, + "grad_norm": 0.21478916704654694, + "learning_rate": 4.746746666666667e-05, + "loss": 2.335912628173828, + "step": 38000 + }, + { + "epoch": 5.08, + "grad_norm": 0.20300929248332977, + "learning_rate": 4.74608e-05, + "loss": 2.3348677062988283, + "step": 38100 + }, + { + "epoch": 5.093333333333334, + "grad_norm": 0.1893633008003235, + "learning_rate": 4.7454200000000004e-05, + "loss": 2.3340078735351564, + "step": 38200 + }, + { + "epoch": 5.1066666666666665, + "grad_norm": 0.20675773918628693, + "learning_rate": 4.7447533333333336e-05, + "loss": 2.3374041748046874, + "step": 38300 + }, + { + "epoch": 5.12, + "grad_norm": 0.21601155400276184, + "learning_rate": 4.744086666666667e-05, + "loss": 2.3355015563964843, + "step": 38400 + }, + { + "epoch": 5.133333333333334, + "grad_norm": 0.20173364877700806, + "learning_rate": 4.74342e-05, + "loss": 2.336921844482422, + "step": 38500 + }, + { + "epoch": 5.1466666666666665, + "grad_norm": 0.19146205484867096, + "learning_rate": 4.742753333333333e-05, + "loss": 2.338092956542969, + "step": 38600 + }, + { + "epoch": 5.16, + "grad_norm": 0.19151638448238373, + "learning_rate": 4.742086666666667e-05, + "loss": 2.337191162109375, + "step": 38700 + }, + { + "epoch": 5.173333333333334, + "grad_norm": 0.19342660903930664, + "learning_rate": 4.7414200000000004e-05, + "loss": 2.338902893066406, + "step": 38800 + }, + { + "epoch": 5.1866666666666665, + "grad_norm": 0.18506617844104767, + "learning_rate": 4.7407533333333336e-05, + "loss": 2.3370294189453125, + "step": 38900 + }, + { + "epoch": 5.2, + "grad_norm": 0.1852942407131195, + "learning_rate": 4.740086666666667e-05, + "loss": 2.3374237060546874, + "step": 39000 + }, + { + "epoch": 5.213333333333333, + "grad_norm": 0.22944355010986328, + "learning_rate": 4.73942e-05, + "loss": 2.336438751220703, + "step": 39100 + }, + { + "epoch": 5.226666666666667, + "grad_norm": 0.19692735373973846, + "learning_rate": 4.738753333333333e-05, + "loss": 2.3369683837890625, + "step": 39200 + }, + { + "epoch": 5.24, + "grad_norm": 0.21631871163845062, + "learning_rate": 4.7380866666666666e-05, + "loss": 2.3371484375, + "step": 39300 + }, + { + "epoch": 5.253333333333333, + "grad_norm": 0.20942172408103943, + "learning_rate": 4.7374200000000005e-05, + "loss": 2.3369624328613283, + "step": 39400 + }, + { + "epoch": 5.266666666666667, + "grad_norm": 0.1939464509487152, + "learning_rate": 4.736753333333334e-05, + "loss": 2.337432556152344, + "step": 39500 + }, + { + "epoch": 5.28, + "grad_norm": 0.17876707017421722, + "learning_rate": 4.736086666666667e-05, + "loss": 2.3396649169921875, + "step": 39600 + }, + { + "epoch": 5.293333333333333, + "grad_norm": 0.21455919742584229, + "learning_rate": 4.73542e-05, + "loss": 2.3403550720214845, + "step": 39700 + }, + { + "epoch": 5.306666666666667, + "grad_norm": 0.19953106343746185, + "learning_rate": 4.734753333333334e-05, + "loss": 2.3371241760253905, + "step": 39800 + }, + { + "epoch": 5.32, + "grad_norm": 0.19843876361846924, + "learning_rate": 4.7340866666666666e-05, + "loss": 2.3368731689453126, + "step": 39900 + }, + { + "epoch": 5.333333333333333, + "grad_norm": 0.20457053184509277, + "learning_rate": 4.73342e-05, + "loss": 2.3382992553710937, + "step": 40000 + }, + { + "epoch": 5.346666666666667, + "grad_norm": 0.195728600025177, + "learning_rate": 4.732753333333334e-05, + "loss": 2.337715911865234, + "step": 40100 + }, + { + "epoch": 5.36, + "grad_norm": 0.19587790966033936, + "learning_rate": 4.7320933333333336e-05, + "loss": 2.3404110717773436, + "step": 40200 + }, + { + "epoch": 5.373333333333333, + "grad_norm": 0.20648671686649323, + "learning_rate": 4.731426666666667e-05, + "loss": 2.3392234802246095, + "step": 40300 + }, + { + "epoch": 5.386666666666667, + "grad_norm": 0.1902915984392166, + "learning_rate": 4.73076e-05, + "loss": 2.3366790771484376, + "step": 40400 + }, + { + "epoch": 5.4, + "grad_norm": 0.19474172592163086, + "learning_rate": 4.730093333333333e-05, + "loss": 2.337915344238281, + "step": 40500 + }, + { + "epoch": 5.413333333333333, + "grad_norm": 0.19446231424808502, + "learning_rate": 4.729426666666667e-05, + "loss": 2.3386886596679686, + "step": 40600 + }, + { + "epoch": 5.426666666666667, + "grad_norm": 0.18280309438705444, + "learning_rate": 4.7287600000000004e-05, + "loss": 2.3403004455566405, + "step": 40700 + }, + { + "epoch": 5.44, + "grad_norm": 0.1899874061346054, + "learning_rate": 4.728093333333334e-05, + "loss": 2.3395709228515624, + "step": 40800 + }, + { + "epoch": 5.453333333333333, + "grad_norm": 0.21245285868644714, + "learning_rate": 4.727426666666667e-05, + "loss": 2.341641693115234, + "step": 40900 + }, + { + "epoch": 5.466666666666667, + "grad_norm": 0.18492910265922546, + "learning_rate": 4.72676e-05, + "loss": 2.338828277587891, + "step": 41000 + }, + { + "epoch": 5.48, + "grad_norm": 0.19576863944530487, + "learning_rate": 4.7260933333333334e-05, + "loss": 2.340592498779297, + "step": 41100 + }, + { + "epoch": 5.493333333333333, + "grad_norm": 0.21991156041622162, + "learning_rate": 4.7254266666666666e-05, + "loss": 2.3374070739746093, + "step": 41200 + }, + { + "epoch": 5.506666666666667, + "grad_norm": 0.2011844664812088, + "learning_rate": 4.7247600000000005e-05, + "loss": 2.340482025146484, + "step": 41300 + }, + { + "epoch": 5.52, + "grad_norm": 0.1887616068124771, + "learning_rate": 4.724093333333334e-05, + "loss": 2.3403477478027344, + "step": 41400 + }, + { + "epoch": 5.533333333333333, + "grad_norm": 0.2083723396062851, + "learning_rate": 4.723426666666667e-05, + "loss": 2.338939361572266, + "step": 41500 + }, + { + "epoch": 5.546666666666667, + "grad_norm": 0.20391573011875153, + "learning_rate": 4.72276e-05, + "loss": 2.341011962890625, + "step": 41600 + }, + { + "epoch": 5.5600000000000005, + "grad_norm": 0.2055550515651703, + "learning_rate": 4.7220933333333334e-05, + "loss": 2.3417536926269533, + "step": 41700 + }, + { + "epoch": 5.573333333333333, + "grad_norm": 0.20119526982307434, + "learning_rate": 4.7214266666666666e-05, + "loss": 2.341081390380859, + "step": 41800 + }, + { + "epoch": 5.586666666666667, + "grad_norm": 0.19019430875778198, + "learning_rate": 4.7207600000000005e-05, + "loss": 2.3428114318847655, + "step": 41900 + }, + { + "epoch": 5.6, + "grad_norm": 0.21287046372890472, + "learning_rate": 4.720093333333334e-05, + "loss": 2.3393617248535157, + "step": 42000 + }, + { + "epoch": 5.613333333333333, + "grad_norm": 0.19636501371860504, + "learning_rate": 4.719426666666667e-05, + "loss": 2.341305694580078, + "step": 42100 + }, + { + "epoch": 5.626666666666667, + "grad_norm": 0.19112545251846313, + "learning_rate": 4.718766666666667e-05, + "loss": 2.338633728027344, + "step": 42200 + }, + { + "epoch": 5.64, + "grad_norm": 0.2038842886686325, + "learning_rate": 4.7181e-05, + "loss": 2.341297302246094, + "step": 42300 + }, + { + "epoch": 5.653333333333333, + "grad_norm": 0.20965079963207245, + "learning_rate": 4.717433333333334e-05, + "loss": 2.341322784423828, + "step": 42400 + }, + { + "epoch": 5.666666666666667, + "grad_norm": 0.2007293701171875, + "learning_rate": 4.716766666666667e-05, + "loss": 2.3385604858398437, + "step": 42500 + }, + { + "epoch": 5.68, + "grad_norm": 0.2063182145357132, + "learning_rate": 4.7161e-05, + "loss": 2.33922119140625, + "step": 42600 + }, + { + "epoch": 5.693333333333333, + "grad_norm": 0.2027292102575302, + "learning_rate": 4.715433333333334e-05, + "loss": 2.3407470703125, + "step": 42700 + }, + { + "epoch": 5.706666666666667, + "grad_norm": 0.1970498412847519, + "learning_rate": 4.714766666666667e-05, + "loss": 2.34189697265625, + "step": 42800 + }, + { + "epoch": 5.72, + "grad_norm": 0.21546319127082825, + "learning_rate": 4.7141e-05, + "loss": 2.3410997009277343, + "step": 42900 + }, + { + "epoch": 5.733333333333333, + "grad_norm": 0.20953406393527985, + "learning_rate": 4.7134333333333334e-05, + "loss": 2.341014404296875, + "step": 43000 + }, + { + "epoch": 5.746666666666667, + "grad_norm": 0.18453386425971985, + "learning_rate": 4.712766666666667e-05, + "loss": 2.3420458984375, + "step": 43100 + }, + { + "epoch": 5.76, + "grad_norm": 0.18693557381629944, + "learning_rate": 4.7121000000000005e-05, + "loss": 2.3417478942871095, + "step": 43200 + }, + { + "epoch": 5.773333333333333, + "grad_norm": 0.20244468748569489, + "learning_rate": 4.711433333333334e-05, + "loss": 2.341094970703125, + "step": 43300 + }, + { + "epoch": 5.786666666666667, + "grad_norm": 0.2122134268283844, + "learning_rate": 4.710766666666667e-05, + "loss": 2.339507598876953, + "step": 43400 + }, + { + "epoch": 5.8, + "grad_norm": 0.19113102555274963, + "learning_rate": 4.7101e-05, + "loss": 2.3414321899414063, + "step": 43500 + }, + { + "epoch": 5.8133333333333335, + "grad_norm": 0.2206200510263443, + "learning_rate": 4.7094333333333334e-05, + "loss": 2.341671600341797, + "step": 43600 + }, + { + "epoch": 5.826666666666666, + "grad_norm": 0.20389395952224731, + "learning_rate": 4.7087666666666666e-05, + "loss": 2.340543060302734, + "step": 43700 + }, + { + "epoch": 5.84, + "grad_norm": 0.20174798369407654, + "learning_rate": 4.7081000000000005e-05, + "loss": 2.339455261230469, + "step": 43800 + }, + { + "epoch": 5.8533333333333335, + "grad_norm": 0.20874814689159393, + "learning_rate": 4.707433333333334e-05, + "loss": 2.340840301513672, + "step": 43900 + }, + { + "epoch": 5.866666666666667, + "grad_norm": 0.19134193658828735, + "learning_rate": 4.706766666666667e-05, + "loss": 2.341136016845703, + "step": 44000 + }, + { + "epoch": 5.88, + "grad_norm": 0.21130426228046417, + "learning_rate": 4.7061e-05, + "loss": 2.341613311767578, + "step": 44100 + }, + { + "epoch": 5.8933333333333335, + "grad_norm": 0.23179572820663452, + "learning_rate": 4.70544e-05, + "loss": 2.3433583068847654, + "step": 44200 + }, + { + "epoch": 5.906666666666666, + "grad_norm": 0.1910688281059265, + "learning_rate": 4.704773333333334e-05, + "loss": 2.3415071105957033, + "step": 44300 + }, + { + "epoch": 5.92, + "grad_norm": 0.20032565295696259, + "learning_rate": 4.7041066666666666e-05, + "loss": 2.3411441040039063, + "step": 44400 + }, + { + "epoch": 5.933333333333334, + "grad_norm": 0.19156421720981598, + "learning_rate": 4.70344e-05, + "loss": 2.3405520629882814, + "step": 44500 + }, + { + "epoch": 5.946666666666666, + "grad_norm": 0.1907392293214798, + "learning_rate": 4.702773333333334e-05, + "loss": 2.3425755310058594, + "step": 44600 + }, + { + "epoch": 5.96, + "grad_norm": 0.200932115316391, + "learning_rate": 4.702106666666667e-05, + "loss": 2.3439457702636717, + "step": 44700 + }, + { + "epoch": 5.973333333333334, + "grad_norm": 0.2054533064365387, + "learning_rate": 4.70144e-05, + "loss": 2.3415347290039064, + "step": 44800 + }, + { + "epoch": 5.986666666666666, + "grad_norm": 0.20519991219043732, + "learning_rate": 4.7007733333333334e-05, + "loss": 2.3422901916503904, + "step": 44900 + }, + { + "epoch": 6.0, + "grad_norm": 0.19351975619792938, + "learning_rate": 4.700106666666667e-05, + "loss": 2.343433380126953, + "step": 45000 + }, + { + "epoch": 6.013333333333334, + "grad_norm": 0.20407870411872864, + "learning_rate": 4.69944e-05, + "loss": 2.3262948608398437, + "step": 45100 + }, + { + "epoch": 6.026666666666666, + "grad_norm": 0.19466857612133026, + "learning_rate": 4.698773333333333e-05, + "loss": 2.326324462890625, + "step": 45200 + }, + { + "epoch": 6.04, + "grad_norm": 0.20036247372627258, + "learning_rate": 4.698106666666667e-05, + "loss": 2.3274658203125, + "step": 45300 + }, + { + "epoch": 6.053333333333334, + "grad_norm": 0.20382268726825714, + "learning_rate": 4.69744e-05, + "loss": 2.325162353515625, + "step": 45400 + }, + { + "epoch": 6.066666666666666, + "grad_norm": 0.21262048184871674, + "learning_rate": 4.6967733333333334e-05, + "loss": 2.3246685791015627, + "step": 45500 + }, + { + "epoch": 6.08, + "grad_norm": 0.19266580045223236, + "learning_rate": 4.696106666666667e-05, + "loss": 2.3265760803222655, + "step": 45600 + }, + { + "epoch": 6.093333333333334, + "grad_norm": 0.1924133151769638, + "learning_rate": 4.6954400000000006e-05, + "loss": 2.3272021484375, + "step": 45700 + }, + { + "epoch": 6.1066666666666665, + "grad_norm": 0.1988048404455185, + "learning_rate": 4.694773333333334e-05, + "loss": 2.327220916748047, + "step": 45800 + }, + { + "epoch": 6.12, + "grad_norm": 0.1879425197839737, + "learning_rate": 4.6941066666666663e-05, + "loss": 2.328949737548828, + "step": 45900 + }, + { + "epoch": 6.133333333333334, + "grad_norm": 0.23073047399520874, + "learning_rate": 4.69344e-05, + "loss": 2.328899230957031, + "step": 46000 + }, + { + "epoch": 6.1466666666666665, + "grad_norm": 0.20694105327129364, + "learning_rate": 4.6927733333333335e-05, + "loss": 2.329393005371094, + "step": 46100 + }, + { + "epoch": 6.16, + "grad_norm": 0.2188512235879898, + "learning_rate": 4.6921133333333334e-05, + "loss": 2.3258409118652343, + "step": 46200 + }, + { + "epoch": 6.173333333333334, + "grad_norm": 0.18700923025608063, + "learning_rate": 4.6914466666666666e-05, + "loss": 2.331009979248047, + "step": 46300 + }, + { + "epoch": 6.1866666666666665, + "grad_norm": 0.20359359681606293, + "learning_rate": 4.69078e-05, + "loss": 2.3292669677734374, + "step": 46400 + }, + { + "epoch": 6.2, + "grad_norm": 0.22610503435134888, + "learning_rate": 4.690113333333334e-05, + "loss": 2.330577850341797, + "step": 46500 + }, + { + "epoch": 6.213333333333333, + "grad_norm": 0.18864652514457703, + "learning_rate": 4.689446666666667e-05, + "loss": 2.330567626953125, + "step": 46600 + }, + { + "epoch": 6.226666666666667, + "grad_norm": 0.20041510462760925, + "learning_rate": 4.68878e-05, + "loss": 2.327003173828125, + "step": 46700 + }, + { + "epoch": 6.24, + "grad_norm": 0.21242272853851318, + "learning_rate": 4.688113333333334e-05, + "loss": 2.3281683349609374, + "step": 46800 + }, + { + "epoch": 6.253333333333333, + "grad_norm": 0.19361090660095215, + "learning_rate": 4.6874466666666666e-05, + "loss": 2.331831512451172, + "step": 46900 + }, + { + "epoch": 6.266666666666667, + "grad_norm": 0.20165066421031952, + "learning_rate": 4.68678e-05, + "loss": 2.3307310485839845, + "step": 47000 + }, + { + "epoch": 6.28, + "grad_norm": 0.18842047452926636, + "learning_rate": 4.686113333333334e-05, + "loss": 2.3280589294433596, + "step": 47100 + }, + { + "epoch": 6.293333333333333, + "grad_norm": 0.2256300151348114, + "learning_rate": 4.685446666666667e-05, + "loss": 2.3284527587890627, + "step": 47200 + }, + { + "epoch": 6.306666666666667, + "grad_norm": 0.18087539076805115, + "learning_rate": 4.68478e-05, + "loss": 2.3301324462890625, + "step": 47300 + }, + { + "epoch": 6.32, + "grad_norm": 0.207829549908638, + "learning_rate": 4.6841133333333335e-05, + "loss": 2.330213623046875, + "step": 47400 + }, + { + "epoch": 6.333333333333333, + "grad_norm": 0.19543009996414185, + "learning_rate": 4.6834466666666674e-05, + "loss": 2.3290335083007814, + "step": 47500 + }, + { + "epoch": 6.346666666666667, + "grad_norm": 0.2060248702764511, + "learning_rate": 4.6827800000000006e-05, + "loss": 2.331068572998047, + "step": 47600 + }, + { + "epoch": 6.36, + "grad_norm": 0.2179960161447525, + "learning_rate": 4.682113333333333e-05, + "loss": 2.330615997314453, + "step": 47700 + }, + { + "epoch": 6.373333333333333, + "grad_norm": 0.22476692497730255, + "learning_rate": 4.681446666666667e-05, + "loss": 2.3329974365234376, + "step": 47800 + }, + { + "epoch": 6.386666666666667, + "grad_norm": 0.1948496699333191, + "learning_rate": 4.68078e-05, + "loss": 2.3322357177734374, + "step": 47900 + }, + { + "epoch": 6.4, + "grad_norm": 0.19658160209655762, + "learning_rate": 4.6801133333333335e-05, + "loss": 2.329741668701172, + "step": 48000 + }, + { + "epoch": 6.413333333333333, + "grad_norm": 0.21576018631458282, + "learning_rate": 4.679446666666667e-05, + "loss": 2.331051788330078, + "step": 48100 + }, + { + "epoch": 6.426666666666667, + "grad_norm": 0.20465338230133057, + "learning_rate": 4.6787866666666666e-05, + "loss": 2.3314564514160154, + "step": 48200 + }, + { + "epoch": 6.44, + "grad_norm": 0.2254284769296646, + "learning_rate": 4.6781200000000005e-05, + "loss": 2.3306893920898437, + "step": 48300 + }, + { + "epoch": 6.453333333333333, + "grad_norm": 0.21523387730121613, + "learning_rate": 4.677453333333334e-05, + "loss": 2.3328369140625, + "step": 48400 + }, + { + "epoch": 6.466666666666667, + "grad_norm": 0.20994578301906586, + "learning_rate": 4.676786666666667e-05, + "loss": 2.3308122253417967, + "step": 48500 + }, + { + "epoch": 6.48, + "grad_norm": 0.21397413313388824, + "learning_rate": 4.67612e-05, + "loss": 2.3299708557128906, + "step": 48600 + }, + { + "epoch": 6.493333333333333, + "grad_norm": 0.20089605450630188, + "learning_rate": 4.6754533333333334e-05, + "loss": 2.3305317687988283, + "step": 48700 + }, + { + "epoch": 6.506666666666667, + "grad_norm": 0.21305248141288757, + "learning_rate": 4.674786666666667e-05, + "loss": 2.3314739990234377, + "step": 48800 + }, + { + "epoch": 6.52, + "grad_norm": 0.20678336918354034, + "learning_rate": 4.67412e-05, + "loss": 2.3338267517089846, + "step": 48900 + }, + { + "epoch": 6.533333333333333, + "grad_norm": 0.20186908543109894, + "learning_rate": 4.673453333333334e-05, + "loss": 2.3309475708007814, + "step": 49000 + }, + { + "epoch": 6.546666666666667, + "grad_norm": 0.1907065063714981, + "learning_rate": 4.672786666666667e-05, + "loss": 2.3316998291015625, + "step": 49100 + }, + { + "epoch": 6.5600000000000005, + "grad_norm": 0.21854570508003235, + "learning_rate": 4.67212e-05, + "loss": 2.3346012878417968, + "step": 49200 + }, + { + "epoch": 6.573333333333333, + "grad_norm": 0.1847628653049469, + "learning_rate": 4.6714533333333335e-05, + "loss": 2.3357057189941406, + "step": 49300 + }, + { + "epoch": 6.586666666666667, + "grad_norm": 0.19201835989952087, + "learning_rate": 4.670786666666667e-05, + "loss": 2.3363993835449217, + "step": 49400 + }, + { + "epoch": 6.6, + "grad_norm": 0.19336426258087158, + "learning_rate": 4.67012e-05, + "loss": 2.3319854736328125, + "step": 49500 + }, + { + "epoch": 6.613333333333333, + "grad_norm": 0.20099902153015137, + "learning_rate": 4.669453333333333e-05, + "loss": 2.3336613464355467, + "step": 49600 + }, + { + "epoch": 6.626666666666667, + "grad_norm": 0.1986514925956726, + "learning_rate": 4.668786666666667e-05, + "loss": 2.3317831420898436, + "step": 49700 + }, + { + "epoch": 6.64, + "grad_norm": 0.20249810814857483, + "learning_rate": 4.66812e-05, + "loss": 2.3329707336425782, + "step": 49800 + }, + { + "epoch": 6.653333333333333, + "grad_norm": 0.21656836569309235, + "learning_rate": 4.6674533333333335e-05, + "loss": 2.3322386169433593, + "step": 49900 + }, + { + "epoch": 6.666666666666667, + "grad_norm": 0.19392716884613037, + "learning_rate": 4.666786666666667e-05, + "loss": 2.334392852783203, + "step": 50000 + }, + { + "epoch": 6.68, + "grad_norm": 0.19600430130958557, + "learning_rate": 4.6661200000000007e-05, + "loss": 2.3346022033691405, + "step": 50100 + }, + { + "epoch": 6.693333333333333, + "grad_norm": 0.21334628760814667, + "learning_rate": 4.6654600000000006e-05, + "loss": 2.3344834899902343, + "step": 50200 + }, + { + "epoch": 6.706666666666667, + "grad_norm": 0.19854342937469482, + "learning_rate": 4.664793333333334e-05, + "loss": 2.3333599853515623, + "step": 50300 + }, + { + "epoch": 6.72, + "grad_norm": 0.2086271196603775, + "learning_rate": 4.664126666666666e-05, + "loss": 2.335559997558594, + "step": 50400 + }, + { + "epoch": 6.733333333333333, + "grad_norm": 0.20393237471580505, + "learning_rate": 4.66346e-05, + "loss": 2.3350341796875, + "step": 50500 + }, + { + "epoch": 6.746666666666667, + "grad_norm": 0.2037380337715149, + "learning_rate": 4.6627933333333335e-05, + "loss": 2.3359445190429686, + "step": 50600 + }, + { + "epoch": 6.76, + "grad_norm": 0.2010214924812317, + "learning_rate": 4.662126666666667e-05, + "loss": 2.333213348388672, + "step": 50700 + }, + { + "epoch": 6.773333333333333, + "grad_norm": 0.211711123585701, + "learning_rate": 4.6614600000000006e-05, + "loss": 2.333146209716797, + "step": 50800 + }, + { + "epoch": 6.786666666666667, + "grad_norm": 0.20048975944519043, + "learning_rate": 4.660793333333334e-05, + "loss": 2.332876892089844, + "step": 50900 + }, + { + "epoch": 6.8, + "grad_norm": 0.20532432198524475, + "learning_rate": 4.660126666666667e-05, + "loss": 2.335528564453125, + "step": 51000 + }, + { + "epoch": 6.8133333333333335, + "grad_norm": 0.19597899913787842, + "learning_rate": 4.65946e-05, + "loss": 2.3326602172851563, + "step": 51100 + }, + { + "epoch": 6.826666666666666, + "grad_norm": 0.20233699679374695, + "learning_rate": 4.6587933333333335e-05, + "loss": 2.3346743774414063, + "step": 51200 + }, + { + "epoch": 6.84, + "grad_norm": 0.1949591040611267, + "learning_rate": 4.658126666666667e-05, + "loss": 2.335735168457031, + "step": 51300 + }, + { + "epoch": 6.8533333333333335, + "grad_norm": 0.1934141367673874, + "learning_rate": 4.65746e-05, + "loss": 2.335612487792969, + "step": 51400 + }, + { + "epoch": 6.866666666666667, + "grad_norm": 0.2191038280725479, + "learning_rate": 4.656793333333334e-05, + "loss": 2.3345936584472655, + "step": 51500 + }, + { + "epoch": 6.88, + "grad_norm": 0.20383000373840332, + "learning_rate": 4.656126666666667e-05, + "loss": 2.3339216613769533, + "step": 51600 + }, + { + "epoch": 6.8933333333333335, + "grad_norm": 0.19669340550899506, + "learning_rate": 4.65546e-05, + "loss": 2.3346900939941406, + "step": 51700 + }, + { + "epoch": 6.906666666666666, + "grad_norm": 0.20373137295246124, + "learning_rate": 4.6547933333333335e-05, + "loss": 2.3349125671386717, + "step": 51800 + }, + { + "epoch": 6.92, + "grad_norm": 0.2109116166830063, + "learning_rate": 4.654126666666667e-05, + "loss": 2.3348736572265625, + "step": 51900 + }, + { + "epoch": 6.933333333333334, + "grad_norm": 0.21398979425430298, + "learning_rate": 4.65346e-05, + "loss": 2.336753692626953, + "step": 52000 + }, + { + "epoch": 6.946666666666666, + "grad_norm": 0.1936953067779541, + "learning_rate": 4.652793333333333e-05, + "loss": 2.3369993591308593, + "step": 52100 + }, + { + "epoch": 6.96, + "grad_norm": 0.22233432531356812, + "learning_rate": 4.652133333333333e-05, + "loss": 2.3361253356933593, + "step": 52200 + }, + { + "epoch": 6.973333333333334, + "grad_norm": 0.20416876673698425, + "learning_rate": 4.651466666666667e-05, + "loss": 2.3360031127929686, + "step": 52300 + }, + { + "epoch": 6.986666666666666, + "grad_norm": 0.2030036300420761, + "learning_rate": 4.6508e-05, + "loss": 2.337208099365234, + "step": 52400 + }, + { + "epoch": 7.0, + "grad_norm": 0.19202755391597748, + "learning_rate": 4.6501333333333335e-05, + "loss": 2.336151123046875, + "step": 52500 + }, + { + "epoch": 7.013333333333334, + "grad_norm": 0.206998810172081, + "learning_rate": 4.649466666666667e-05, + "loss": 2.315085906982422, + "step": 52600 + }, + { + "epoch": 7.026666666666666, + "grad_norm": 0.2254278063774109, + "learning_rate": 4.6488000000000006e-05, + "loss": 2.316161651611328, + "step": 52700 + }, + { + "epoch": 7.04, + "grad_norm": 0.2177981585264206, + "learning_rate": 4.648133333333334e-05, + "loss": 2.3162889099121093, + "step": 52800 + }, + { + "epoch": 7.053333333333334, + "grad_norm": 0.22323600947856903, + "learning_rate": 4.6474666666666664e-05, + "loss": 2.3178530883789064, + "step": 52900 + }, + { + "epoch": 7.066666666666666, + "grad_norm": 0.20918424427509308, + "learning_rate": 4.6468e-05, + "loss": 2.315562438964844, + "step": 53000 + }, + { + "epoch": 7.08, + "grad_norm": 0.22114083170890808, + "learning_rate": 4.6461333333333335e-05, + "loss": 2.315318145751953, + "step": 53100 + }, + { + "epoch": 7.093333333333334, + "grad_norm": 0.19929060339927673, + "learning_rate": 4.645466666666667e-05, + "loss": 2.319254913330078, + "step": 53200 + }, + { + "epoch": 7.1066666666666665, + "grad_norm": 0.22897835075855255, + "learning_rate": 4.6448e-05, + "loss": 2.3185064697265627, + "step": 53300 + }, + { + "epoch": 7.12, + "grad_norm": 0.20979653298854828, + "learning_rate": 4.644133333333334e-05, + "loss": 2.3153074645996092, + "step": 53400 + }, + { + "epoch": 7.133333333333334, + "grad_norm": 0.208432137966156, + "learning_rate": 4.643466666666667e-05, + "loss": 2.3188551330566405, + "step": 53500 + }, + { + "epoch": 7.1466666666666665, + "grad_norm": 0.2060391902923584, + "learning_rate": 4.6428000000000003e-05, + "loss": 2.319374694824219, + "step": 53600 + }, + { + "epoch": 7.16, + "grad_norm": 0.2240801900625229, + "learning_rate": 4.6421333333333336e-05, + "loss": 2.315366668701172, + "step": 53700 + }, + { + "epoch": 7.173333333333334, + "grad_norm": 0.21705488860607147, + "learning_rate": 4.641466666666667e-05, + "loss": 2.320493469238281, + "step": 53800 + }, + { + "epoch": 7.1866666666666665, + "grad_norm": 0.22233860194683075, + "learning_rate": 4.6408e-05, + "loss": 2.318059844970703, + "step": 53900 + }, + { + "epoch": 7.2, + "grad_norm": 0.2171303927898407, + "learning_rate": 4.640133333333333e-05, + "loss": 2.320230712890625, + "step": 54000 + }, + { + "epoch": 7.213333333333333, + "grad_norm": 0.21981152892112732, + "learning_rate": 4.639466666666667e-05, + "loss": 2.3186485290527346, + "step": 54100 + }, + { + "epoch": 7.226666666666667, + "grad_norm": 0.2230496108531952, + "learning_rate": 4.638806666666667e-05, + "loss": 2.3200640869140625, + "step": 54200 + }, + { + "epoch": 7.24, + "grad_norm": 0.2142811268568039, + "learning_rate": 4.63814e-05, + "loss": 2.3188714599609375, + "step": 54300 + }, + { + "epoch": 7.253333333333333, + "grad_norm": 0.20586246252059937, + "learning_rate": 4.6374733333333335e-05, + "loss": 2.3214300537109374, + "step": 54400 + }, + { + "epoch": 7.266666666666667, + "grad_norm": 0.206768199801445, + "learning_rate": 4.636806666666667e-05, + "loss": 2.317760467529297, + "step": 54500 + }, + { + "epoch": 7.28, + "grad_norm": 0.22308428585529327, + "learning_rate": 4.6361400000000006e-05, + "loss": 2.32193359375, + "step": 54600 + }, + { + "epoch": 7.293333333333333, + "grad_norm": 0.21023783087730408, + "learning_rate": 4.635473333333333e-05, + "loss": 2.321294860839844, + "step": 54700 + }, + { + "epoch": 7.306666666666667, + "grad_norm": 0.20875036716461182, + "learning_rate": 4.6348066666666664e-05, + "loss": 2.3194563293457033, + "step": 54800 + }, + { + "epoch": 7.32, + "grad_norm": 0.22223174571990967, + "learning_rate": 4.63414e-05, + "loss": 2.3206028747558594, + "step": 54900 + }, + { + "epoch": 7.333333333333333, + "grad_norm": 0.19239133596420288, + "learning_rate": 4.6334733333333336e-05, + "loss": 2.321158599853516, + "step": 55000 + }, + { + "epoch": 7.346666666666667, + "grad_norm": 0.22706732153892517, + "learning_rate": 4.632806666666667e-05, + "loss": 2.3212765502929686, + "step": 55100 + }, + { + "epoch": 7.36, + "grad_norm": 0.23205487430095673, + "learning_rate": 4.632140000000001e-05, + "loss": 2.322073974609375, + "step": 55200 + }, + { + "epoch": 7.373333333333333, + "grad_norm": 0.2067403942346573, + "learning_rate": 4.631473333333334e-05, + "loss": 2.3220693969726565, + "step": 55300 + }, + { + "epoch": 7.386666666666667, + "grad_norm": 0.20351338386535645, + "learning_rate": 4.6308066666666665e-05, + "loss": 2.32278076171875, + "step": 55400 + }, + { + "epoch": 7.4, + "grad_norm": 0.21386387944221497, + "learning_rate": 4.6301400000000004e-05, + "loss": 2.3235244750976562, + "step": 55500 + }, + { + "epoch": 7.413333333333333, + "grad_norm": 0.2237972617149353, + "learning_rate": 4.6294733333333336e-05, + "loss": 2.3205836486816405, + "step": 55600 + }, + { + "epoch": 7.426666666666667, + "grad_norm": 0.196205735206604, + "learning_rate": 4.628806666666667e-05, + "loss": 2.324235687255859, + "step": 55700 + }, + { + "epoch": 7.44, + "grad_norm": 0.20559580624103546, + "learning_rate": 4.62814e-05, + "loss": 2.3239215087890623, + "step": 55800 + }, + { + "epoch": 7.453333333333333, + "grad_norm": 0.22416776418685913, + "learning_rate": 4.627473333333334e-05, + "loss": 2.3214433288574217, + "step": 55900 + }, + { + "epoch": 7.466666666666667, + "grad_norm": 0.20037733018398285, + "learning_rate": 4.626806666666667e-05, + "loss": 2.322022247314453, + "step": 56000 + }, + { + "epoch": 7.48, + "grad_norm": 0.21654389798641205, + "learning_rate": 4.6261400000000004e-05, + "loss": 2.3236199951171876, + "step": 56100 + }, + { + "epoch": 7.493333333333333, + "grad_norm": 0.21859359741210938, + "learning_rate": 4.62548e-05, + "loss": 2.3238677978515625, + "step": 56200 + }, + { + "epoch": 7.506666666666667, + "grad_norm": 0.22405706346035004, + "learning_rate": 4.6248133333333335e-05, + "loss": 2.326851654052734, + "step": 56300 + }, + { + "epoch": 7.52, + "grad_norm": 0.1978028565645218, + "learning_rate": 4.624146666666667e-05, + "loss": 2.3240150451660155, + "step": 56400 + }, + { + "epoch": 7.533333333333333, + "grad_norm": 0.21222999691963196, + "learning_rate": 4.62348e-05, + "loss": 2.3225338745117186, + "step": 56500 + }, + { + "epoch": 7.546666666666667, + "grad_norm": 0.22027376294136047, + "learning_rate": 4.622813333333333e-05, + "loss": 2.324446563720703, + "step": 56600 + }, + { + "epoch": 7.5600000000000005, + "grad_norm": 0.21182918548583984, + "learning_rate": 4.622146666666667e-05, + "loss": 2.3254127502441406, + "step": 56700 + }, + { + "epoch": 7.573333333333333, + "grad_norm": 0.19568821787834167, + "learning_rate": 4.6214800000000003e-05, + "loss": 2.325800323486328, + "step": 56800 + }, + { + "epoch": 7.586666666666667, + "grad_norm": 0.20319704711437225, + "learning_rate": 4.6208133333333336e-05, + "loss": 2.325161590576172, + "step": 56900 + }, + { + "epoch": 7.6, + "grad_norm": 0.22199761867523193, + "learning_rate": 4.620146666666667e-05, + "loss": 2.3248526000976564, + "step": 57000 + }, + { + "epoch": 7.613333333333333, + "grad_norm": 0.19542196393013, + "learning_rate": 4.619480000000001e-05, + "loss": 2.3250607299804686, + "step": 57100 + }, + { + "epoch": 7.626666666666667, + "grad_norm": 0.19808714091777802, + "learning_rate": 4.618813333333333e-05, + "loss": 2.3261805725097657, + "step": 57200 + }, + { + "epoch": 7.64, + "grad_norm": 0.22000600397586823, + "learning_rate": 4.6181466666666665e-05, + "loss": 2.3237953186035156, + "step": 57300 + }, + { + "epoch": 7.653333333333333, + "grad_norm": 0.2083161324262619, + "learning_rate": 4.6174800000000004e-05, + "loss": 2.3280027770996092, + "step": 57400 + }, + { + "epoch": 7.666666666666667, + "grad_norm": 0.2168016880750656, + "learning_rate": 4.6168133333333336e-05, + "loss": 2.324162902832031, + "step": 57500 + }, + { + "epoch": 7.68, + "grad_norm": 0.21734952926635742, + "learning_rate": 4.616146666666667e-05, + "loss": 2.3249171447753905, + "step": 57600 + }, + { + "epoch": 7.693333333333333, + "grad_norm": 0.20479203760623932, + "learning_rate": 4.61548e-05, + "loss": 2.327186737060547, + "step": 57700 + }, + { + "epoch": 7.706666666666667, + "grad_norm": 0.2028800994157791, + "learning_rate": 4.614813333333334e-05, + "loss": 2.327611999511719, + "step": 57800 + }, + { + "epoch": 7.72, + "grad_norm": 0.21738632023334503, + "learning_rate": 4.6141466666666665e-05, + "loss": 2.324887390136719, + "step": 57900 + }, + { + "epoch": 7.733333333333333, + "grad_norm": 0.227495938539505, + "learning_rate": 4.61348e-05, + "loss": 2.3263511657714844, + "step": 58000 + }, + { + "epoch": 7.746666666666667, + "grad_norm": 0.22351373732089996, + "learning_rate": 4.6128133333333337e-05, + "loss": 2.324449005126953, + "step": 58100 + }, + { + "epoch": 7.76, + "grad_norm": 0.19855080544948578, + "learning_rate": 4.6121533333333336e-05, + "loss": 2.3279388427734373, + "step": 58200 + }, + { + "epoch": 7.773333333333333, + "grad_norm": 0.21258243918418884, + "learning_rate": 4.611486666666667e-05, + "loss": 2.3258876037597656, + "step": 58300 + }, + { + "epoch": 7.786666666666667, + "grad_norm": 0.23399053514003754, + "learning_rate": 4.61082e-05, + "loss": 2.328024597167969, + "step": 58400 + }, + { + "epoch": 7.8, + "grad_norm": 0.20555289089679718, + "learning_rate": 4.610153333333333e-05, + "loss": 2.324607391357422, + "step": 58500 + }, + { + "epoch": 7.8133333333333335, + "grad_norm": 0.22223757207393646, + "learning_rate": 4.609486666666667e-05, + "loss": 2.328887634277344, + "step": 58600 + }, + { + "epoch": 7.826666666666666, + "grad_norm": 0.20944397151470184, + "learning_rate": 4.6088200000000004e-05, + "loss": 2.326324005126953, + "step": 58700 + }, + { + "epoch": 7.84, + "grad_norm": 0.21754513680934906, + "learning_rate": 4.6081533333333336e-05, + "loss": 2.3285617065429687, + "step": 58800 + }, + { + "epoch": 7.8533333333333335, + "grad_norm": 0.2218855917453766, + "learning_rate": 4.607486666666667e-05, + "loss": 2.3279769897460936, + "step": 58900 + }, + { + "epoch": 7.866666666666667, + "grad_norm": 0.2152242809534073, + "learning_rate": 4.60682e-05, + "loss": 2.327835998535156, + "step": 59000 + }, + { + "epoch": 7.88, + "grad_norm": 0.19836048781871796, + "learning_rate": 4.606153333333333e-05, + "loss": 2.330382843017578, + "step": 59100 + }, + { + "epoch": 7.8933333333333335, + "grad_norm": 0.2070547193288803, + "learning_rate": 4.6054866666666665e-05, + "loss": 2.328244171142578, + "step": 59200 + }, + { + "epoch": 7.906666666666666, + "grad_norm": 0.2064908742904663, + "learning_rate": 4.6048200000000004e-05, + "loss": 2.327570037841797, + "step": 59300 + }, + { + "epoch": 7.92, + "grad_norm": 0.19223378598690033, + "learning_rate": 4.6041533333333336e-05, + "loss": 2.327322540283203, + "step": 59400 + }, + { + "epoch": 7.933333333333334, + "grad_norm": 0.2263549417257309, + "learning_rate": 4.603486666666667e-05, + "loss": 2.329267120361328, + "step": 59500 + }, + { + "epoch": 7.946666666666666, + "grad_norm": 0.21715712547302246, + "learning_rate": 4.602820000000001e-05, + "loss": 2.3234599304199217, + "step": 59600 + }, + { + "epoch": 7.96, + "grad_norm": 0.2264692485332489, + "learning_rate": 4.602153333333333e-05, + "loss": 2.326782531738281, + "step": 59700 + }, + { + "epoch": 7.973333333333334, + "grad_norm": 0.20843270421028137, + "learning_rate": 4.6014866666666665e-05, + "loss": 2.3266970825195314, + "step": 59800 + }, + { + "epoch": 7.986666666666666, + "grad_norm": 0.20484039187431335, + "learning_rate": 4.6008200000000004e-05, + "loss": 2.3275350952148437, + "step": 59900 + }, + { + "epoch": 8.0, + "grad_norm": 0.21979759633541107, + "learning_rate": 4.600153333333334e-05, + "loss": 2.327262115478516, + "step": 60000 + }, + { + "epoch": 8.013333333333334, + "grad_norm": 0.2148316353559494, + "learning_rate": 4.599486666666667e-05, + "loss": 2.3032371520996096, + "step": 60100 + }, + { + "epoch": 8.026666666666667, + "grad_norm": 0.2427894026041031, + "learning_rate": 4.598826666666667e-05, + "loss": 2.306138000488281, + "step": 60200 + }, + { + "epoch": 8.04, + "grad_norm": 0.23417937755584717, + "learning_rate": 4.59816e-05, + "loss": 2.3055377197265625, + "step": 60300 + }, + { + "epoch": 8.053333333333333, + "grad_norm": 0.22597885131835938, + "learning_rate": 4.597493333333334e-05, + "loss": 2.308175354003906, + "step": 60400 + }, + { + "epoch": 8.066666666666666, + "grad_norm": 0.22343474626541138, + "learning_rate": 4.596826666666667e-05, + "loss": 2.3064723205566406, + "step": 60500 + }, + { + "epoch": 8.08, + "grad_norm": 0.22558583319187164, + "learning_rate": 4.5961600000000004e-05, + "loss": 2.305071258544922, + "step": 60600 + }, + { + "epoch": 8.093333333333334, + "grad_norm": 0.20653437077999115, + "learning_rate": 4.5954933333333336e-05, + "loss": 2.307345428466797, + "step": 60700 + }, + { + "epoch": 8.106666666666667, + "grad_norm": 0.2216809093952179, + "learning_rate": 4.594826666666667e-05, + "loss": 2.3047059631347655, + "step": 60800 + }, + { + "epoch": 8.12, + "grad_norm": 0.22799284756183624, + "learning_rate": 4.59416e-05, + "loss": 2.307566833496094, + "step": 60900 + }, + { + "epoch": 8.133333333333333, + "grad_norm": 0.22076313197612762, + "learning_rate": 4.593493333333333e-05, + "loss": 2.3049078369140625, + "step": 61000 + }, + { + "epoch": 8.146666666666667, + "grad_norm": 0.2266998142004013, + "learning_rate": 4.592826666666667e-05, + "loss": 2.3053494262695313, + "step": 61100 + }, + { + "epoch": 8.16, + "grad_norm": 0.23705247044563293, + "learning_rate": 4.5921600000000004e-05, + "loss": 2.3077027893066404, + "step": 61200 + }, + { + "epoch": 8.173333333333334, + "grad_norm": 0.21669632196426392, + "learning_rate": 4.5914933333333337e-05, + "loss": 2.3076458740234376, + "step": 61300 + }, + { + "epoch": 8.186666666666667, + "grad_norm": 0.2006712257862091, + "learning_rate": 4.590826666666667e-05, + "loss": 2.3063531494140626, + "step": 61400 + }, + { + "epoch": 8.2, + "grad_norm": 0.21064023673534393, + "learning_rate": 4.59016e-05, + "loss": 2.3089945983886717, + "step": 61500 + }, + { + "epoch": 8.213333333333333, + "grad_norm": 0.21858380734920502, + "learning_rate": 4.589493333333333e-05, + "loss": 2.307320098876953, + "step": 61600 + }, + { + "epoch": 8.226666666666667, + "grad_norm": 0.21644806861877441, + "learning_rate": 4.5888266666666666e-05, + "loss": 2.3085394287109375, + "step": 61700 + }, + { + "epoch": 8.24, + "grad_norm": 0.22975999116897583, + "learning_rate": 4.5881600000000005e-05, + "loss": 2.3101947021484377, + "step": 61800 + }, + { + "epoch": 8.253333333333334, + "grad_norm": 0.21924324333667755, + "learning_rate": 4.587493333333334e-05, + "loss": 2.3123768615722655, + "step": 61900 + }, + { + "epoch": 8.266666666666667, + "grad_norm": 0.22921468317508698, + "learning_rate": 4.586826666666667e-05, + "loss": 2.3115985107421877, + "step": 62000 + }, + { + "epoch": 8.28, + "grad_norm": 0.21891409158706665, + "learning_rate": 4.58616e-05, + "loss": 2.309479217529297, + "step": 62100 + }, + { + "epoch": 8.293333333333333, + "grad_norm": 0.22286993265151978, + "learning_rate": 4.5855e-05, + "loss": 2.3122218322753905, + "step": 62200 + }, + { + "epoch": 8.306666666666667, + "grad_norm": 0.24152639508247375, + "learning_rate": 4.584833333333334e-05, + "loss": 2.308910217285156, + "step": 62300 + }, + { + "epoch": 8.32, + "grad_norm": 0.21503682434558868, + "learning_rate": 4.5841666666666665e-05, + "loss": 2.307999572753906, + "step": 62400 + }, + { + "epoch": 8.333333333333334, + "grad_norm": 0.20558761060237885, + "learning_rate": 4.5835e-05, + "loss": 2.3080621337890626, + "step": 62500 + }, + { + "epoch": 8.346666666666668, + "grad_norm": 0.21116876602172852, + "learning_rate": 4.5828333333333336e-05, + "loss": 2.3105264282226563, + "step": 62600 + }, + { + "epoch": 8.36, + "grad_norm": 0.2325267195701599, + "learning_rate": 4.582166666666667e-05, + "loss": 2.309617919921875, + "step": 62700 + }, + { + "epoch": 8.373333333333333, + "grad_norm": 0.2288995385169983, + "learning_rate": 4.5815e-05, + "loss": 2.3135015869140627, + "step": 62800 + }, + { + "epoch": 8.386666666666667, + "grad_norm": 0.23661412298679352, + "learning_rate": 4.580833333333333e-05, + "loss": 2.311595153808594, + "step": 62900 + }, + { + "epoch": 8.4, + "grad_norm": 0.22704863548278809, + "learning_rate": 4.580166666666667e-05, + "loss": 2.311846160888672, + "step": 63000 + }, + { + "epoch": 8.413333333333334, + "grad_norm": 0.21123670041561127, + "learning_rate": 4.5795000000000005e-05, + "loss": 2.3099000549316404, + "step": 63100 + }, + { + "epoch": 8.426666666666666, + "grad_norm": 0.22051377594470978, + "learning_rate": 4.578833333333333e-05, + "loss": 2.314755401611328, + "step": 63200 + }, + { + "epoch": 8.44, + "grad_norm": 0.21824777126312256, + "learning_rate": 4.578166666666667e-05, + "loss": 2.3122979736328126, + "step": 63300 + }, + { + "epoch": 8.453333333333333, + "grad_norm": 0.2141052782535553, + "learning_rate": 4.5775e-05, + "loss": 2.314187316894531, + "step": 63400 + }, + { + "epoch": 8.466666666666667, + "grad_norm": 0.22229032218456268, + "learning_rate": 4.5768333333333334e-05, + "loss": 2.3118528747558593, + "step": 63500 + }, + { + "epoch": 8.48, + "grad_norm": 0.21177971363067627, + "learning_rate": 4.576166666666667e-05, + "loss": 2.314485626220703, + "step": 63600 + }, + { + "epoch": 8.493333333333334, + "grad_norm": 0.2159062772989273, + "learning_rate": 4.5755000000000005e-05, + "loss": 2.3116845703125, + "step": 63700 + }, + { + "epoch": 8.506666666666666, + "grad_norm": 0.21478477120399475, + "learning_rate": 4.574833333333334e-05, + "loss": 2.3143507385253907, + "step": 63800 + }, + { + "epoch": 8.52, + "grad_norm": 0.22522731125354767, + "learning_rate": 4.574166666666667e-05, + "loss": 2.315663604736328, + "step": 63900 + }, + { + "epoch": 8.533333333333333, + "grad_norm": 0.22168120741844177, + "learning_rate": 4.5735e-05, + "loss": 2.3135195922851564, + "step": 64000 + }, + { + "epoch": 8.546666666666667, + "grad_norm": 0.2298642098903656, + "learning_rate": 4.5728333333333334e-05, + "loss": 2.315981140136719, + "step": 64100 + }, + { + "epoch": 8.56, + "grad_norm": 0.2253265529870987, + "learning_rate": 4.572173333333333e-05, + "loss": 2.315703887939453, + "step": 64200 + }, + { + "epoch": 8.573333333333334, + "grad_norm": 0.22435899078845978, + "learning_rate": 4.5715066666666665e-05, + "loss": 2.314583282470703, + "step": 64300 + }, + { + "epoch": 8.586666666666666, + "grad_norm": 0.21293385326862335, + "learning_rate": 4.5708400000000004e-05, + "loss": 2.3148568725585936, + "step": 64400 + }, + { + "epoch": 8.6, + "grad_norm": 0.2217615693807602, + "learning_rate": 4.570173333333334e-05, + "loss": 2.3133966064453126, + "step": 64500 + }, + { + "epoch": 8.613333333333333, + "grad_norm": 0.21577724814414978, + "learning_rate": 4.569506666666667e-05, + "loss": 2.3160128784179688, + "step": 64600 + }, + { + "epoch": 8.626666666666667, + "grad_norm": 0.20894163846969604, + "learning_rate": 4.56884e-05, + "loss": 2.316580505371094, + "step": 64700 + }, + { + "epoch": 8.64, + "grad_norm": 0.22660347819328308, + "learning_rate": 4.568173333333334e-05, + "loss": 2.3132757568359374, + "step": 64800 + }, + { + "epoch": 8.653333333333332, + "grad_norm": 0.20169147849082947, + "learning_rate": 4.567506666666667e-05, + "loss": 2.3164935302734375, + "step": 64900 + }, + { + "epoch": 8.666666666666666, + "grad_norm": 0.22867351770401, + "learning_rate": 4.56684e-05, + "loss": 2.3162477111816404, + "step": 65000 + }, + { + "epoch": 8.68, + "grad_norm": 0.23090234398841858, + "learning_rate": 4.566173333333334e-05, + "loss": 2.3189874267578126, + "step": 65100 + }, + { + "epoch": 8.693333333333333, + "grad_norm": 0.22201119363307953, + "learning_rate": 4.565506666666667e-05, + "loss": 2.31669921875, + "step": 65200 + }, + { + "epoch": 8.706666666666667, + "grad_norm": 0.2174353450536728, + "learning_rate": 4.56484e-05, + "loss": 2.3188742065429686, + "step": 65300 + }, + { + "epoch": 8.72, + "grad_norm": 0.21239978075027466, + "learning_rate": 4.5641733333333334e-05, + "loss": 2.3161309814453124, + "step": 65400 + }, + { + "epoch": 8.733333333333333, + "grad_norm": 0.19849137961864471, + "learning_rate": 4.563506666666667e-05, + "loss": 2.3190155029296875, + "step": 65500 + }, + { + "epoch": 8.746666666666666, + "grad_norm": 0.2238064557313919, + "learning_rate": 4.5628400000000005e-05, + "loss": 2.3172088623046876, + "step": 65600 + }, + { + "epoch": 8.76, + "grad_norm": 0.22363531589508057, + "learning_rate": 4.562173333333333e-05, + "loss": 2.3175604248046877, + "step": 65700 + }, + { + "epoch": 8.773333333333333, + "grad_norm": 0.22062158584594727, + "learning_rate": 4.561506666666667e-05, + "loss": 2.3156175231933593, + "step": 65800 + }, + { + "epoch": 8.786666666666667, + "grad_norm": 0.2074691206216812, + "learning_rate": 4.56084e-05, + "loss": 2.317613372802734, + "step": 65900 + }, + { + "epoch": 8.8, + "grad_norm": 0.21585817635059357, + "learning_rate": 4.5601733333333334e-05, + "loss": 2.317025909423828, + "step": 66000 + }, + { + "epoch": 8.813333333333333, + "grad_norm": 0.24289225041866302, + "learning_rate": 4.5595066666666666e-05, + "loss": 2.3176622009277343, + "step": 66100 + }, + { + "epoch": 8.826666666666666, + "grad_norm": 0.22260883450508118, + "learning_rate": 4.5588466666666666e-05, + "loss": 2.3193907165527343, + "step": 66200 + }, + { + "epoch": 8.84, + "grad_norm": 0.20685255527496338, + "learning_rate": 4.5581800000000005e-05, + "loss": 2.3187965393066405, + "step": 66300 + }, + { + "epoch": 8.853333333333333, + "grad_norm": 0.2502782940864563, + "learning_rate": 4.557513333333334e-05, + "loss": 2.3181417846679686, + "step": 66400 + }, + { + "epoch": 8.866666666666667, + "grad_norm": 0.20513685047626495, + "learning_rate": 4.556846666666667e-05, + "loss": 2.318340606689453, + "step": 66500 + }, + { + "epoch": 8.88, + "grad_norm": 0.2085087150335312, + "learning_rate": 4.55618e-05, + "loss": 2.320625762939453, + "step": 66600 + }, + { + "epoch": 8.893333333333333, + "grad_norm": 0.2202482372522354, + "learning_rate": 4.5555133333333334e-05, + "loss": 2.317662811279297, + "step": 66700 + }, + { + "epoch": 8.906666666666666, + "grad_norm": 0.20364412665367126, + "learning_rate": 4.5548466666666666e-05, + "loss": 2.320509796142578, + "step": 66800 + }, + { + "epoch": 8.92, + "grad_norm": 0.2078937292098999, + "learning_rate": 4.55418e-05, + "loss": 2.3180162048339845, + "step": 66900 + }, + { + "epoch": 8.933333333333334, + "grad_norm": 0.21178776025772095, + "learning_rate": 4.553513333333334e-05, + "loss": 2.318477783203125, + "step": 67000 + }, + { + "epoch": 8.946666666666667, + "grad_norm": 0.2264500856399536, + "learning_rate": 4.552846666666667e-05, + "loss": 2.321943511962891, + "step": 67100 + }, + { + "epoch": 8.96, + "grad_norm": 0.2113855928182602, + "learning_rate": 4.55218e-05, + "loss": 2.318071746826172, + "step": 67200 + }, + { + "epoch": 8.973333333333333, + "grad_norm": 0.19603019952774048, + "learning_rate": 4.5515133333333334e-05, + "loss": 2.3197503662109376, + "step": 67300 + }, + { + "epoch": 8.986666666666666, + "grad_norm": 0.2236277014017105, + "learning_rate": 4.550846666666667e-05, + "loss": 2.320359344482422, + "step": 67400 + }, + { + "epoch": 9.0, + "grad_norm": 0.21920901536941528, + "learning_rate": 4.55018e-05, + "loss": 2.318968963623047, + "step": 67500 + }, + { + "epoch": 9.013333333333334, + "grad_norm": 0.23331010341644287, + "learning_rate": 4.549513333333333e-05, + "loss": 2.2941917419433593, + "step": 67600 + }, + { + "epoch": 9.026666666666667, + "grad_norm": 0.21596217155456543, + "learning_rate": 4.548846666666667e-05, + "loss": 2.290107421875, + "step": 67700 + }, + { + "epoch": 9.04, + "grad_norm": 0.22891509532928467, + "learning_rate": 4.54818e-05, + "loss": 2.2925718688964842, + "step": 67800 + }, + { + "epoch": 9.053333333333333, + "grad_norm": 0.21967433393001556, + "learning_rate": 4.5475133333333334e-05, + "loss": 2.2921377563476564, + "step": 67900 + }, + { + "epoch": 9.066666666666666, + "grad_norm": 0.25205832719802856, + "learning_rate": 4.5468466666666673e-05, + "loss": 2.293820037841797, + "step": 68000 + }, + { + "epoch": 9.08, + "grad_norm": 0.2291940152645111, + "learning_rate": 4.5461800000000006e-05, + "loss": 2.293941650390625, + "step": 68100 + }, + { + "epoch": 9.093333333333334, + "grad_norm": 0.23932799696922302, + "learning_rate": 4.5455200000000005e-05, + "loss": 2.2932688903808596, + "step": 68200 + }, + { + "epoch": 9.106666666666667, + "grad_norm": 0.22407028079032898, + "learning_rate": 4.544853333333334e-05, + "loss": 2.296217193603516, + "step": 68300 + }, + { + "epoch": 9.12, + "grad_norm": 0.2332010418176651, + "learning_rate": 4.544186666666667e-05, + "loss": 2.296667022705078, + "step": 68400 + }, + { + "epoch": 9.133333333333333, + "grad_norm": 0.22865130007266998, + "learning_rate": 4.54352e-05, + "loss": 2.2938783264160154, + "step": 68500 + }, + { + "epoch": 9.146666666666667, + "grad_norm": 0.23731687664985657, + "learning_rate": 4.5428533333333334e-05, + "loss": 2.296278381347656, + "step": 68600 + }, + { + "epoch": 9.16, + "grad_norm": 0.21626006066799164, + "learning_rate": 4.5421866666666666e-05, + "loss": 2.2968585205078127, + "step": 68700 + }, + { + "epoch": 9.173333333333334, + "grad_norm": 0.23821845650672913, + "learning_rate": 4.5415200000000005e-05, + "loss": 2.2977059936523436, + "step": 68800 + }, + { + "epoch": 9.186666666666667, + "grad_norm": 0.2369178831577301, + "learning_rate": 4.540853333333334e-05, + "loss": 2.296495208740234, + "step": 68900 + }, + { + "epoch": 9.2, + "grad_norm": 0.22190576791763306, + "learning_rate": 4.540186666666667e-05, + "loss": 2.297707366943359, + "step": 69000 + }, + { + "epoch": 9.213333333333333, + "grad_norm": 0.22970540821552277, + "learning_rate": 4.53952e-05, + "loss": 2.2968077087402343, + "step": 69100 + }, + { + "epoch": 9.226666666666667, + "grad_norm": 0.23141416907310486, + "learning_rate": 4.5388533333333334e-05, + "loss": 2.297506103515625, + "step": 69200 + }, + { + "epoch": 9.24, + "grad_norm": 0.22547562420368195, + "learning_rate": 4.5381866666666667e-05, + "loss": 2.2980027770996094, + "step": 69300 + }, + { + "epoch": 9.253333333333334, + "grad_norm": 0.24733230471611023, + "learning_rate": 4.53752e-05, + "loss": 2.29823486328125, + "step": 69400 + }, + { + "epoch": 9.266666666666667, + "grad_norm": 0.23954610526561737, + "learning_rate": 4.536853333333334e-05, + "loss": 2.300198974609375, + "step": 69500 + }, + { + "epoch": 9.28, + "grad_norm": 0.253302663564682, + "learning_rate": 4.536186666666667e-05, + "loss": 2.2968313598632815, + "step": 69600 + }, + { + "epoch": 9.293333333333333, + "grad_norm": 0.2572624385356903, + "learning_rate": 4.53552e-05, + "loss": 2.3007162475585936, + "step": 69700 + }, + { + "epoch": 9.306666666666667, + "grad_norm": 0.2580345869064331, + "learning_rate": 4.5348533333333335e-05, + "loss": 2.2998121643066405, + "step": 69800 + }, + { + "epoch": 9.32, + "grad_norm": 0.23370671272277832, + "learning_rate": 4.5341866666666674e-05, + "loss": 2.302071075439453, + "step": 69900 + }, + { + "epoch": 9.333333333333334, + "grad_norm": 0.2354464828968048, + "learning_rate": 4.53352e-05, + "loss": 2.3010763549804687, + "step": 70000 + }, + { + "epoch": 9.346666666666668, + "grad_norm": 0.22726485133171082, + "learning_rate": 4.532853333333333e-05, + "loss": 2.302950897216797, + "step": 70100 + }, + { + "epoch": 9.36, + "grad_norm": 0.24437928199768066, + "learning_rate": 4.532193333333333e-05, + "loss": 2.301619110107422, + "step": 70200 + }, + { + "epoch": 9.373333333333333, + "grad_norm": 0.22362923622131348, + "learning_rate": 4.531526666666667e-05, + "loss": 2.301064147949219, + "step": 70300 + }, + { + "epoch": 9.386666666666667, + "grad_norm": 0.22675906121730804, + "learning_rate": 4.53086e-05, + "loss": 2.300765380859375, + "step": 70400 + }, + { + "epoch": 9.4, + "grad_norm": 0.23232199251651764, + "learning_rate": 4.5301933333333334e-05, + "loss": 2.2998236083984374, + "step": 70500 + }, + { + "epoch": 9.413333333333334, + "grad_norm": 0.2357228696346283, + "learning_rate": 4.5295266666666666e-05, + "loss": 2.300859375, + "step": 70600 + }, + { + "epoch": 9.426666666666666, + "grad_norm": 0.22707265615463257, + "learning_rate": 4.5288600000000005e-05, + "loss": 2.30189697265625, + "step": 70700 + }, + { + "epoch": 9.44, + "grad_norm": 0.22745104134082794, + "learning_rate": 4.528193333333334e-05, + "loss": 2.3032139587402343, + "step": 70800 + }, + { + "epoch": 9.453333333333333, + "grad_norm": 0.2270699143409729, + "learning_rate": 4.527526666666667e-05, + "loss": 2.3027561950683593, + "step": 70900 + }, + { + "epoch": 9.466666666666667, + "grad_norm": 0.22705000638961792, + "learning_rate": 4.52686e-05, + "loss": 2.30169677734375, + "step": 71000 + }, + { + "epoch": 9.48, + "grad_norm": 0.24112239480018616, + "learning_rate": 4.5261933333333335e-05, + "loss": 2.3032855224609374, + "step": 71100 + }, + { + "epoch": 9.493333333333334, + "grad_norm": 0.22396592795848846, + "learning_rate": 4.525526666666667e-05, + "loss": 2.3002029418945313, + "step": 71200 + }, + { + "epoch": 9.506666666666666, + "grad_norm": 0.21745307743549347, + "learning_rate": 4.52486e-05, + "loss": 2.3029249572753905, + "step": 71300 + }, + { + "epoch": 9.52, + "grad_norm": 0.23369887471199036, + "learning_rate": 4.524193333333334e-05, + "loss": 2.304996337890625, + "step": 71400 + }, + { + "epoch": 9.533333333333333, + "grad_norm": 0.23318316042423248, + "learning_rate": 4.523526666666667e-05, + "loss": 2.3056065368652345, + "step": 71500 + }, + { + "epoch": 9.546666666666667, + "grad_norm": 0.2250574827194214, + "learning_rate": 4.52286e-05, + "loss": 2.3032150268554688, + "step": 71600 + }, + { + "epoch": 9.56, + "grad_norm": 0.2183639109134674, + "learning_rate": 4.5221933333333335e-05, + "loss": 2.305579833984375, + "step": 71700 + }, + { + "epoch": 9.573333333333334, + "grad_norm": 0.2082279771566391, + "learning_rate": 4.521526666666667e-05, + "loss": 2.3057624816894533, + "step": 71800 + }, + { + "epoch": 9.586666666666666, + "grad_norm": 0.23728124797344208, + "learning_rate": 4.52086e-05, + "loss": 2.3048939514160156, + "step": 71900 + }, + { + "epoch": 9.6, + "grad_norm": 0.23262864351272583, + "learning_rate": 4.520193333333333e-05, + "loss": 2.303785400390625, + "step": 72000 + }, + { + "epoch": 9.613333333333333, + "grad_norm": 0.22944900393486023, + "learning_rate": 4.519526666666667e-05, + "loss": 2.3056602478027344, + "step": 72100 + }, + { + "epoch": 9.626666666666667, + "grad_norm": 0.2632165551185608, + "learning_rate": 4.518866666666667e-05, + "loss": 2.3039901733398436, + "step": 72200 + }, + { + "epoch": 9.64, + "grad_norm": 0.23915515840053558, + "learning_rate": 4.5182e-05, + "loss": 2.3091696166992186, + "step": 72300 + }, + { + "epoch": 9.653333333333332, + "grad_norm": 0.24298280477523804, + "learning_rate": 4.5175333333333334e-05, + "loss": 2.3061654663085935, + "step": 72400 + }, + { + "epoch": 9.666666666666666, + "grad_norm": 0.23660294711589813, + "learning_rate": 4.5168666666666673e-05, + "loss": 2.3104348754882813, + "step": 72500 + }, + { + "epoch": 9.68, + "grad_norm": 0.2370450496673584, + "learning_rate": 4.5162000000000006e-05, + "loss": 2.3079653930664064, + "step": 72600 + }, + { + "epoch": 9.693333333333333, + "grad_norm": 0.2323356717824936, + "learning_rate": 4.515533333333333e-05, + "loss": 2.3062504577636718, + "step": 72700 + }, + { + "epoch": 9.706666666666667, + "grad_norm": 0.2260921448469162, + "learning_rate": 4.514866666666667e-05, + "loss": 2.3086776733398438, + "step": 72800 + }, + { + "epoch": 9.72, + "grad_norm": 0.23469285666942596, + "learning_rate": 4.5142e-05, + "loss": 2.306175079345703, + "step": 72900 + }, + { + "epoch": 9.733333333333333, + "grad_norm": 0.2398371398448944, + "learning_rate": 4.5135333333333335e-05, + "loss": 2.3068536376953124, + "step": 73000 + }, + { + "epoch": 9.746666666666666, + "grad_norm": 0.2239067405462265, + "learning_rate": 4.512866666666667e-05, + "loss": 2.30914306640625, + "step": 73100 + }, + { + "epoch": 9.76, + "grad_norm": 0.22555306553840637, + "learning_rate": 4.5122000000000006e-05, + "loss": 2.3087586975097656, + "step": 73200 + }, + { + "epoch": 9.773333333333333, + "grad_norm": 0.22917480766773224, + "learning_rate": 4.511533333333334e-05, + "loss": 2.310619201660156, + "step": 73300 + }, + { + "epoch": 9.786666666666667, + "grad_norm": 0.23775242269039154, + "learning_rate": 4.510866666666667e-05, + "loss": 2.3091854858398437, + "step": 73400 + }, + { + "epoch": 9.8, + "grad_norm": 0.24801835417747498, + "learning_rate": 4.5102e-05, + "loss": 2.3082546997070312, + "step": 73500 + }, + { + "epoch": 9.813333333333333, + "grad_norm": 0.23106469213962555, + "learning_rate": 4.5095333333333335e-05, + "loss": 2.3087344360351563, + "step": 73600 + }, + { + "epoch": 9.826666666666666, + "grad_norm": 0.22504796087741852, + "learning_rate": 4.508866666666667e-05, + "loss": 2.308363494873047, + "step": 73700 + }, + { + "epoch": 9.84, + "grad_norm": 0.23639419674873352, + "learning_rate": 4.5082e-05, + "loss": 2.30758544921875, + "step": 73800 + }, + { + "epoch": 9.853333333333333, + "grad_norm": 0.24086354672908783, + "learning_rate": 4.507533333333334e-05, + "loss": 2.3087428283691405, + "step": 73900 + }, + { + "epoch": 9.866666666666667, + "grad_norm": 0.2180139571428299, + "learning_rate": 4.506866666666667e-05, + "loss": 2.308798828125, + "step": 74000 + }, + { + "epoch": 9.88, + "grad_norm": 0.22501300275325775, + "learning_rate": 4.5062e-05, + "loss": 2.3099415588378904, + "step": 74100 + }, + { + "epoch": 9.893333333333333, + "grad_norm": 0.23066537082195282, + "learning_rate": 4.50554e-05, + "loss": 2.307503662109375, + "step": 74200 + }, + { + "epoch": 9.906666666666666, + "grad_norm": 0.22434760630130768, + "learning_rate": 4.5048733333333335e-05, + "loss": 2.3106227111816406, + "step": 74300 + }, + { + "epoch": 9.92, + "grad_norm": 0.25195831060409546, + "learning_rate": 4.5042066666666674e-05, + "loss": 2.3048329162597656, + "step": 74400 + }, + { + "epoch": 9.933333333333334, + "grad_norm": 0.2128189355134964, + "learning_rate": 4.50354e-05, + "loss": 2.3085731506347655, + "step": 74500 + }, + { + "epoch": 9.946666666666667, + "grad_norm": 0.2209046483039856, + "learning_rate": 4.502873333333333e-05, + "loss": 2.3103427124023437, + "step": 74600 + }, + { + "epoch": 9.96, + "grad_norm": 0.4690224528312683, + "learning_rate": 4.502206666666667e-05, + "loss": 2.312327423095703, + "step": 74700 + }, + { + "epoch": 9.973333333333333, + "grad_norm": 0.21926158666610718, + "learning_rate": 4.50154e-05, + "loss": 2.310508575439453, + "step": 74800 + }, + { + "epoch": 9.986666666666666, + "grad_norm": 0.2374141365289688, + "learning_rate": 4.5008733333333335e-05, + "loss": 2.31052978515625, + "step": 74900 + }, + { + "epoch": 10.0, + "grad_norm": 0.22070780396461487, + "learning_rate": 4.500206666666667e-05, + "loss": 2.3100782775878907, + "step": 75000 + }, + { + "epoch": 10.013333333333334, + "grad_norm": 0.23315180838108063, + "learning_rate": 4.4995400000000006e-05, + "loss": 2.2820582580566406, + "step": 75100 + }, + { + "epoch": 10.026666666666667, + "grad_norm": 0.2489648312330246, + "learning_rate": 4.498873333333333e-05, + "loss": 2.2800167846679686, + "step": 75200 + }, + { + "epoch": 10.04, + "grad_norm": 0.2430664449930191, + "learning_rate": 4.4982066666666664e-05, + "loss": 2.2820753479003906, + "step": 75300 + }, + { + "epoch": 10.053333333333333, + "grad_norm": 0.24344773590564728, + "learning_rate": 4.49754e-05, + "loss": 2.2796278381347657, + "step": 75400 + }, + { + "epoch": 10.066666666666666, + "grad_norm": 0.24810276925563812, + "learning_rate": 4.4968733333333335e-05, + "loss": 2.279807586669922, + "step": 75500 + }, + { + "epoch": 10.08, + "grad_norm": 0.24132785201072693, + "learning_rate": 4.496206666666667e-05, + "loss": 2.2805412292480467, + "step": 75600 + }, + { + "epoch": 10.093333333333334, + "grad_norm": 0.24037568271160126, + "learning_rate": 4.49554e-05, + "loss": 2.2824276733398436, + "step": 75700 + }, + { + "epoch": 10.106666666666667, + "grad_norm": 0.23821789026260376, + "learning_rate": 4.494873333333334e-05, + "loss": 2.284660186767578, + "step": 75800 + }, + { + "epoch": 10.12, + "grad_norm": 0.2437891960144043, + "learning_rate": 4.494206666666667e-05, + "loss": 2.2823611450195314, + "step": 75900 + }, + { + "epoch": 10.133333333333333, + "grad_norm": 0.23768781125545502, + "learning_rate": 4.49354e-05, + "loss": 2.2855105590820313, + "step": 76000 + }, + { + "epoch": 10.146666666666667, + "grad_norm": 0.24591408669948578, + "learning_rate": 4.4928733333333336e-05, + "loss": 2.2840614318847656, + "step": 76100 + }, + { + "epoch": 10.16, + "grad_norm": 0.2379213571548462, + "learning_rate": 4.4922133333333335e-05, + "loss": 2.2879397583007814, + "step": 76200 + }, + { + "epoch": 10.173333333333334, + "grad_norm": 0.2505422532558441, + "learning_rate": 4.491546666666667e-05, + "loss": 2.2845729064941405, + "step": 76300 + }, + { + "epoch": 10.186666666666667, + "grad_norm": 0.24018126726150513, + "learning_rate": 4.49088e-05, + "loss": 2.287251281738281, + "step": 76400 + }, + { + "epoch": 10.2, + "grad_norm": 0.26669764518737793, + "learning_rate": 4.490213333333333e-05, + "loss": 2.284190826416016, + "step": 76500 + }, + { + "epoch": 10.213333333333333, + "grad_norm": 0.24248762428760529, + "learning_rate": 4.489546666666667e-05, + "loss": 2.287902374267578, + "step": 76600 + }, + { + "epoch": 10.226666666666667, + "grad_norm": 0.23663915693759918, + "learning_rate": 4.48888e-05, + "loss": 2.286513214111328, + "step": 76700 + }, + { + "epoch": 10.24, + "grad_norm": 0.25117191672325134, + "learning_rate": 4.4882133333333335e-05, + "loss": 2.289020538330078, + "step": 76800 + }, + { + "epoch": 10.253333333333334, + "grad_norm": 0.23214347660541534, + "learning_rate": 4.4875466666666674e-05, + "loss": 2.2866584777832033, + "step": 76900 + }, + { + "epoch": 10.266666666666667, + "grad_norm": 0.2386721670627594, + "learning_rate": 4.48688e-05, + "loss": 2.289106597900391, + "step": 77000 + }, + { + "epoch": 10.28, + "grad_norm": 0.24421949684619904, + "learning_rate": 4.486213333333333e-05, + "loss": 2.28677490234375, + "step": 77100 + }, + { + "epoch": 10.293333333333333, + "grad_norm": 0.2612295150756836, + "learning_rate": 4.485546666666667e-05, + "loss": 2.289345703125, + "step": 77200 + }, + { + "epoch": 10.306666666666667, + "grad_norm": 0.22263416647911072, + "learning_rate": 4.48488e-05, + "loss": 2.2870338439941404, + "step": 77300 + }, + { + "epoch": 10.32, + "grad_norm": 0.2574688494205475, + "learning_rate": 4.4842133333333336e-05, + "loss": 2.2890251159667967, + "step": 77400 + }, + { + "epoch": 10.333333333333334, + "grad_norm": 0.25357821583747864, + "learning_rate": 4.483546666666667e-05, + "loss": 2.2873045349121095, + "step": 77500 + }, + { + "epoch": 10.346666666666668, + "grad_norm": 0.2804579734802246, + "learning_rate": 4.482880000000001e-05, + "loss": 2.2914703369140623, + "step": 77600 + }, + { + "epoch": 10.36, + "grad_norm": 0.24506065249443054, + "learning_rate": 4.482213333333334e-05, + "loss": 2.2905569458007813, + "step": 77700 + }, + { + "epoch": 10.373333333333333, + "grad_norm": 0.25503185391426086, + "learning_rate": 4.4815466666666665e-05, + "loss": 2.290155334472656, + "step": 77800 + }, + { + "epoch": 10.386666666666667, + "grad_norm": 0.2579893171787262, + "learning_rate": 4.4808800000000004e-05, + "loss": 2.291581115722656, + "step": 77900 + }, + { + "epoch": 10.4, + "grad_norm": 0.22538907825946808, + "learning_rate": 4.4802133333333336e-05, + "loss": 2.291281280517578, + "step": 78000 + }, + { + "epoch": 10.413333333333334, + "grad_norm": 0.24924156069755554, + "learning_rate": 4.479546666666667e-05, + "loss": 2.289500885009766, + "step": 78100 + }, + { + "epoch": 10.426666666666666, + "grad_norm": 0.2366298884153366, + "learning_rate": 4.478886666666667e-05, + "loss": 2.290386047363281, + "step": 78200 + }, + { + "epoch": 10.44, + "grad_norm": 0.22278301417827606, + "learning_rate": 4.47822e-05, + "loss": 2.2905796813964843, + "step": 78300 + }, + { + "epoch": 10.453333333333333, + "grad_norm": 0.25287824869155884, + "learning_rate": 4.477553333333334e-05, + "loss": 2.290713653564453, + "step": 78400 + }, + { + "epoch": 10.466666666666667, + "grad_norm": 0.24435845017433167, + "learning_rate": 4.476886666666667e-05, + "loss": 2.2916438293457033, + "step": 78500 + }, + { + "epoch": 10.48, + "grad_norm": 0.24885345995426178, + "learning_rate": 4.47622e-05, + "loss": 2.2903347778320313, + "step": 78600 + }, + { + "epoch": 10.493333333333334, + "grad_norm": 0.2466493546962738, + "learning_rate": 4.4755533333333335e-05, + "loss": 2.292062225341797, + "step": 78700 + }, + { + "epoch": 10.506666666666666, + "grad_norm": 0.25343602895736694, + "learning_rate": 4.474886666666667e-05, + "loss": 2.293315124511719, + "step": 78800 + }, + { + "epoch": 10.52, + "grad_norm": 0.26084843277931213, + "learning_rate": 4.47422e-05, + "loss": 2.290987854003906, + "step": 78900 + }, + { + "epoch": 10.533333333333333, + "grad_norm": 0.22565628588199615, + "learning_rate": 4.473553333333333e-05, + "loss": 2.291141357421875, + "step": 79000 + }, + { + "epoch": 10.546666666666667, + "grad_norm": 0.2424556016921997, + "learning_rate": 4.472886666666667e-05, + "loss": 2.2940351867675783, + "step": 79100 + }, + { + "epoch": 10.56, + "grad_norm": 0.23173433542251587, + "learning_rate": 4.4722200000000004e-05, + "loss": 2.2938632202148437, + "step": 79200 + }, + { + "epoch": 10.573333333333334, + "grad_norm": 0.24767623841762543, + "learning_rate": 4.4715533333333336e-05, + "loss": 2.294097595214844, + "step": 79300 + }, + { + "epoch": 10.586666666666666, + "grad_norm": 0.2494058907032013, + "learning_rate": 4.470886666666667e-05, + "loss": 2.292882843017578, + "step": 79400 + }, + { + "epoch": 10.6, + "grad_norm": 0.2309560924768448, + "learning_rate": 4.47022e-05, + "loss": 2.2917105102539064, + "step": 79500 + }, + { + "epoch": 10.613333333333333, + "grad_norm": 0.2502034306526184, + "learning_rate": 4.469553333333333e-05, + "loss": 2.2940020751953125, + "step": 79600 + }, + { + "epoch": 10.626666666666667, + "grad_norm": 0.2417595088481903, + "learning_rate": 4.4688866666666665e-05, + "loss": 2.2959962463378907, + "step": 79700 + }, + { + "epoch": 10.64, + "grad_norm": 0.2390497922897339, + "learning_rate": 4.4682200000000004e-05, + "loss": 2.2932833862304687, + "step": 79800 + }, + { + "epoch": 10.653333333333332, + "grad_norm": 0.25319451093673706, + "learning_rate": 4.4675533333333336e-05, + "loss": 2.2950804138183596, + "step": 79900 + }, + { + "epoch": 10.666666666666666, + "grad_norm": 0.23525965213775635, + "learning_rate": 4.466886666666667e-05, + "loss": 2.2939056396484374, + "step": 80000 + }, + { + "epoch": 10.68, + "grad_norm": 0.24645350873470306, + "learning_rate": 4.46622e-05, + "loss": 2.2950694274902346, + "step": 80100 + }, + { + "epoch": 10.693333333333333, + "grad_norm": 0.24350802600383759, + "learning_rate": 4.46556e-05, + "loss": 2.295481414794922, + "step": 80200 + }, + { + "epoch": 10.706666666666667, + "grad_norm": 0.24546648561954498, + "learning_rate": 4.464893333333334e-05, + "loss": 2.2965150451660157, + "step": 80300 + }, + { + "epoch": 10.72, + "grad_norm": 0.24012289941310883, + "learning_rate": 4.464226666666667e-05, + "loss": 2.29464111328125, + "step": 80400 + }, + { + "epoch": 10.733333333333333, + "grad_norm": 0.2439471334218979, + "learning_rate": 4.46356e-05, + "loss": 2.2982655334472657, + "step": 80500 + }, + { + "epoch": 10.746666666666666, + "grad_norm": 0.24235573410987854, + "learning_rate": 4.4628933333333336e-05, + "loss": 2.2973838806152345, + "step": 80600 + }, + { + "epoch": 10.76, + "grad_norm": 0.2552349865436554, + "learning_rate": 4.462226666666667e-05, + "loss": 2.2967495727539062, + "step": 80700 + }, + { + "epoch": 10.773333333333333, + "grad_norm": 0.2687914967536926, + "learning_rate": 4.46156e-05, + "loss": 2.2971734619140625, + "step": 80800 + }, + { + "epoch": 10.786666666666667, + "grad_norm": 0.22800393402576447, + "learning_rate": 4.460893333333334e-05, + "loss": 2.295909881591797, + "step": 80900 + }, + { + "epoch": 10.8, + "grad_norm": 0.25448915362358093, + "learning_rate": 4.460226666666667e-05, + "loss": 2.299366455078125, + "step": 81000 + }, + { + "epoch": 10.813333333333333, + "grad_norm": 0.24387459456920624, + "learning_rate": 4.4595600000000004e-05, + "loss": 2.297369384765625, + "step": 81100 + }, + { + "epoch": 10.826666666666666, + "grad_norm": 0.24151787161827087, + "learning_rate": 4.4588933333333336e-05, + "loss": 2.299127197265625, + "step": 81200 + }, + { + "epoch": 10.84, + "grad_norm": 0.2260817289352417, + "learning_rate": 4.458226666666667e-05, + "loss": 2.2975596618652343, + "step": 81300 + }, + { + "epoch": 10.853333333333333, + "grad_norm": 0.24239422380924225, + "learning_rate": 4.45756e-05, + "loss": 2.2985691833496094, + "step": 81400 + }, + { + "epoch": 10.866666666666667, + "grad_norm": 0.21752089262008667, + "learning_rate": 4.456893333333333e-05, + "loss": 2.300589294433594, + "step": 81500 + }, + { + "epoch": 10.88, + "grad_norm": 0.23936143517494202, + "learning_rate": 4.456226666666667e-05, + "loss": 2.2985806274414062, + "step": 81600 + }, + { + "epoch": 10.893333333333333, + "grad_norm": 0.25165167450904846, + "learning_rate": 4.4555600000000004e-05, + "loss": 2.3023681640625, + "step": 81700 + }, + { + "epoch": 10.906666666666666, + "grad_norm": 0.24560686945915222, + "learning_rate": 4.4548933333333336e-05, + "loss": 2.296816101074219, + "step": 81800 + }, + { + "epoch": 10.92, + "grad_norm": 0.235377699136734, + "learning_rate": 4.454226666666667e-05, + "loss": 2.3003538513183592, + "step": 81900 + }, + { + "epoch": 10.933333333333334, + "grad_norm": 0.21916425228118896, + "learning_rate": 4.45356e-05, + "loss": 2.302768096923828, + "step": 82000 + }, + { + "epoch": 10.946666666666667, + "grad_norm": 0.23057326674461365, + "learning_rate": 4.452893333333333e-05, + "loss": 2.299179992675781, + "step": 82100 + }, + { + "epoch": 10.96, + "grad_norm": 0.23899604380130768, + "learning_rate": 4.452233333333334e-05, + "loss": 2.3004336547851563, + "step": 82200 + }, + { + "epoch": 10.973333333333333, + "grad_norm": 0.23253585398197174, + "learning_rate": 4.4515666666666665e-05, + "loss": 2.3014898681640625, + "step": 82300 + }, + { + "epoch": 10.986666666666666, + "grad_norm": 0.24487797915935516, + "learning_rate": 4.4509000000000004e-05, + "loss": 2.3026199340820312, + "step": 82400 + }, + { + "epoch": 11.0, + "grad_norm": 0.2387479692697525, + "learning_rate": 4.4502333333333336e-05, + "loss": 2.2974674987792967, + "step": 82500 + }, + { + "epoch": 11.013333333333334, + "grad_norm": 0.2720658481121063, + "learning_rate": 4.4495733333333335e-05, + "loss": 2.2671746826171875, + "step": 82600 + }, + { + "epoch": 11.026666666666667, + "grad_norm": 0.263578861951828, + "learning_rate": 4.448906666666667e-05, + "loss": 2.2688304138183595, + "step": 82700 + }, + { + "epoch": 11.04, + "grad_norm": 0.2674785852432251, + "learning_rate": 4.44824e-05, + "loss": 2.270413055419922, + "step": 82800 + }, + { + "epoch": 11.053333333333333, + "grad_norm": 0.28208568692207336, + "learning_rate": 4.447573333333334e-05, + "loss": 2.267439422607422, + "step": 82900 + }, + { + "epoch": 11.066666666666666, + "grad_norm": 0.2503279447555542, + "learning_rate": 4.446906666666667e-05, + "loss": 2.27013427734375, + "step": 83000 + }, + { + "epoch": 11.08, + "grad_norm": 0.2667846083641052, + "learning_rate": 4.44624e-05, + "loss": 2.270685577392578, + "step": 83100 + }, + { + "epoch": 11.093333333333334, + "grad_norm": 0.2649480700492859, + "learning_rate": 4.4455733333333335e-05, + "loss": 2.2691964721679687, + "step": 83200 + }, + { + "epoch": 11.106666666666667, + "grad_norm": 0.27101367712020874, + "learning_rate": 4.444906666666667e-05, + "loss": 2.272455291748047, + "step": 83300 + }, + { + "epoch": 11.12, + "grad_norm": 0.24341875314712524, + "learning_rate": 4.44424e-05, + "loss": 2.2689295959472657, + "step": 83400 + }, + { + "epoch": 11.133333333333333, + "grad_norm": 0.25448212027549744, + "learning_rate": 4.443573333333333e-05, + "loss": 2.2724458312988283, + "step": 83500 + }, + { + "epoch": 11.146666666666667, + "grad_norm": 0.25443369150161743, + "learning_rate": 4.442906666666667e-05, + "loss": 2.271412811279297, + "step": 83600 + }, + { + "epoch": 11.16, + "grad_norm": 0.26732975244522095, + "learning_rate": 4.4422400000000003e-05, + "loss": 2.271360321044922, + "step": 83700 + }, + { + "epoch": 11.173333333333334, + "grad_norm": 0.26395460963249207, + "learning_rate": 4.4415733333333336e-05, + "loss": 2.26961669921875, + "step": 83800 + }, + { + "epoch": 11.186666666666667, + "grad_norm": 0.24745440483093262, + "learning_rate": 4.440906666666667e-05, + "loss": 2.2744174194335938, + "step": 83900 + }, + { + "epoch": 11.2, + "grad_norm": 0.26402172446250916, + "learning_rate": 4.44024e-05, + "loss": 2.2720037841796876, + "step": 84000 + }, + { + "epoch": 11.213333333333333, + "grad_norm": 0.23789356648921967, + "learning_rate": 4.439573333333333e-05, + "loss": 2.274175109863281, + "step": 84100 + }, + { + "epoch": 11.226666666666667, + "grad_norm": 0.24144236743450165, + "learning_rate": 4.4389066666666665e-05, + "loss": 2.2732891845703125, + "step": 84200 + }, + { + "epoch": 11.24, + "grad_norm": 0.2500831186771393, + "learning_rate": 4.4382400000000004e-05, + "loss": 2.2730227661132814, + "step": 84300 + }, + { + "epoch": 11.253333333333334, + "grad_norm": 0.25501829385757446, + "learning_rate": 4.4375733333333336e-05, + "loss": 2.274988708496094, + "step": 84400 + }, + { + "epoch": 11.266666666666667, + "grad_norm": 0.22763259708881378, + "learning_rate": 4.436906666666667e-05, + "loss": 2.272532196044922, + "step": 84500 + }, + { + "epoch": 11.28, + "grad_norm": 0.25562381744384766, + "learning_rate": 4.43624e-05, + "loss": 2.2755363464355467, + "step": 84600 + }, + { + "epoch": 11.293333333333333, + "grad_norm": 0.25353795289993286, + "learning_rate": 4.435573333333334e-05, + "loss": 2.2750617980957033, + "step": 84700 + }, + { + "epoch": 11.306666666666667, + "grad_norm": 0.26931309700012207, + "learning_rate": 4.4349066666666665e-05, + "loss": 2.2751278686523437, + "step": 84800 + }, + { + "epoch": 11.32, + "grad_norm": 0.2389533370733261, + "learning_rate": 4.43424e-05, + "loss": 2.278493194580078, + "step": 84900 + }, + { + "epoch": 11.333333333333334, + "grad_norm": 0.2465227097272873, + "learning_rate": 4.4335733333333337e-05, + "loss": 2.2789736938476564, + "step": 85000 + }, + { + "epoch": 11.346666666666668, + "grad_norm": 0.25453120470046997, + "learning_rate": 4.432906666666667e-05, + "loss": 2.2776898193359374, + "step": 85100 + }, + { + "epoch": 11.36, + "grad_norm": 0.2660987377166748, + "learning_rate": 4.43224e-05, + "loss": 2.2778756713867185, + "step": 85200 + }, + { + "epoch": 11.373333333333333, + "grad_norm": 0.25308796763420105, + "learning_rate": 4.431573333333334e-05, + "loss": 2.279368438720703, + "step": 85300 + }, + { + "epoch": 11.386666666666667, + "grad_norm": 0.25836026668548584, + "learning_rate": 4.430906666666667e-05, + "loss": 2.2798582458496095, + "step": 85400 + }, + { + "epoch": 11.4, + "grad_norm": 0.25316664576530457, + "learning_rate": 4.43024e-05, + "loss": 2.279602813720703, + "step": 85500 + }, + { + "epoch": 11.413333333333334, + "grad_norm": 0.2550676167011261, + "learning_rate": 4.429573333333334e-05, + "loss": 2.2755258178710935, + "step": 85600 + }, + { + "epoch": 11.426666666666666, + "grad_norm": 0.23546501994132996, + "learning_rate": 4.428906666666667e-05, + "loss": 2.2800631713867188, + "step": 85700 + }, + { + "epoch": 11.44, + "grad_norm": 0.264654278755188, + "learning_rate": 4.42824e-05, + "loss": 2.2767239379882813, + "step": 85800 + }, + { + "epoch": 11.453333333333333, + "grad_norm": 0.24899619817733765, + "learning_rate": 4.4275733333333334e-05, + "loss": 2.2798704528808593, + "step": 85900 + }, + { + "epoch": 11.466666666666667, + "grad_norm": 0.24456363916397095, + "learning_rate": 4.426906666666667e-05, + "loss": 2.2780026245117186, + "step": 86000 + }, + { + "epoch": 11.48, + "grad_norm": 0.25708940625190735, + "learning_rate": 4.4262400000000005e-05, + "loss": 2.2792425537109375, + "step": 86100 + }, + { + "epoch": 11.493333333333334, + "grad_norm": 0.2511962354183197, + "learning_rate": 4.425573333333334e-05, + "loss": 2.282320251464844, + "step": 86200 + }, + { + "epoch": 11.506666666666666, + "grad_norm": 0.24816451966762543, + "learning_rate": 4.424906666666667e-05, + "loss": 2.2792512512207033, + "step": 86300 + }, + { + "epoch": 11.52, + "grad_norm": 0.2514301836490631, + "learning_rate": 4.42424e-05, + "loss": 2.2795748901367188, + "step": 86400 + }, + { + "epoch": 11.533333333333333, + "grad_norm": 0.2495884746313095, + "learning_rate": 4.4235733333333334e-05, + "loss": 2.278619689941406, + "step": 86500 + }, + { + "epoch": 11.546666666666667, + "grad_norm": 0.24815420806407928, + "learning_rate": 4.422913333333333e-05, + "loss": 2.2829832458496093, + "step": 86600 + }, + { + "epoch": 11.56, + "grad_norm": 0.2668995261192322, + "learning_rate": 4.4222466666666665e-05, + "loss": 2.2842198181152344, + "step": 86700 + }, + { + "epoch": 11.573333333333334, + "grad_norm": 0.256393700838089, + "learning_rate": 4.4215800000000004e-05, + "loss": 2.2821044921875, + "step": 86800 + }, + { + "epoch": 11.586666666666666, + "grad_norm": 0.2424868494272232, + "learning_rate": 4.420913333333334e-05, + "loss": 2.2830775451660155, + "step": 86900 + }, + { + "epoch": 11.6, + "grad_norm": 0.27431467175483704, + "learning_rate": 4.420246666666667e-05, + "loss": 2.28398681640625, + "step": 87000 + }, + { + "epoch": 11.613333333333333, + "grad_norm": 0.267622709274292, + "learning_rate": 4.41958e-05, + "loss": 2.283782958984375, + "step": 87100 + }, + { + "epoch": 11.626666666666667, + "grad_norm": 0.2440316379070282, + "learning_rate": 4.418913333333334e-05, + "loss": 2.28414794921875, + "step": 87200 + }, + { + "epoch": 11.64, + "grad_norm": 0.259630411863327, + "learning_rate": 4.4182466666666666e-05, + "loss": 2.2857057189941408, + "step": 87300 + }, + { + "epoch": 11.653333333333332, + "grad_norm": 0.2571096122264862, + "learning_rate": 4.41758e-05, + "loss": 2.2847987365722657, + "step": 87400 + }, + { + "epoch": 11.666666666666666, + "grad_norm": 0.2570159137248993, + "learning_rate": 4.416913333333334e-05, + "loss": 2.2837939453125, + "step": 87500 + }, + { + "epoch": 11.68, + "grad_norm": 0.2649681270122528, + "learning_rate": 4.416246666666667e-05, + "loss": 2.2841265869140623, + "step": 87600 + }, + { + "epoch": 11.693333333333333, + "grad_norm": 0.26410555839538574, + "learning_rate": 4.41558e-05, + "loss": 2.2851953125, + "step": 87700 + }, + { + "epoch": 11.706666666666667, + "grad_norm": 0.2622752785682678, + "learning_rate": 4.4149133333333334e-05, + "loss": 2.2836956787109375, + "step": 87800 + }, + { + "epoch": 11.72, + "grad_norm": 0.2514193058013916, + "learning_rate": 4.414246666666667e-05, + "loss": 2.2842561340332033, + "step": 87900 + }, + { + "epoch": 11.733333333333333, + "grad_norm": 0.2531854212284088, + "learning_rate": 4.41358e-05, + "loss": 2.284789733886719, + "step": 88000 + }, + { + "epoch": 11.746666666666666, + "grad_norm": 0.2689782679080963, + "learning_rate": 4.412913333333333e-05, + "loss": 2.2857350158691405, + "step": 88100 + }, + { + "epoch": 11.76, + "grad_norm": 0.24945223331451416, + "learning_rate": 4.412246666666667e-05, + "loss": 2.2845068359375, + "step": 88200 + }, + { + "epoch": 11.773333333333333, + "grad_norm": 0.26712265610694885, + "learning_rate": 4.41158e-05, + "loss": 2.2854434204101564, + "step": 88300 + }, + { + "epoch": 11.786666666666667, + "grad_norm": 0.256874680519104, + "learning_rate": 4.4109133333333334e-05, + "loss": 2.287956085205078, + "step": 88400 + }, + { + "epoch": 11.8, + "grad_norm": 0.2476692944765091, + "learning_rate": 4.4102533333333333e-05, + "loss": 2.286315460205078, + "step": 88500 + }, + { + "epoch": 11.813333333333333, + "grad_norm": 0.2615588903427124, + "learning_rate": 4.4095866666666666e-05, + "loss": 2.284837188720703, + "step": 88600 + }, + { + "epoch": 11.826666666666666, + "grad_norm": 0.24872687458992004, + "learning_rate": 4.4089200000000005e-05, + "loss": 2.285694580078125, + "step": 88700 + }, + { + "epoch": 11.84, + "grad_norm": 0.2530681788921356, + "learning_rate": 4.408253333333334e-05, + "loss": 2.2873902893066407, + "step": 88800 + }, + { + "epoch": 11.853333333333333, + "grad_norm": 0.24849970638751984, + "learning_rate": 4.407586666666667e-05, + "loss": 2.2867955017089843, + "step": 88900 + }, + { + "epoch": 11.866666666666667, + "grad_norm": 0.24246734380722046, + "learning_rate": 4.40692e-05, + "loss": 2.289001770019531, + "step": 89000 + }, + { + "epoch": 11.88, + "grad_norm": 0.2607153654098511, + "learning_rate": 4.4062533333333334e-05, + "loss": 2.2897518920898436, + "step": 89100 + }, + { + "epoch": 11.893333333333333, + "grad_norm": 0.2614729106426239, + "learning_rate": 4.4055866666666666e-05, + "loss": 2.2860928344726563, + "step": 89200 + }, + { + "epoch": 11.906666666666666, + "grad_norm": 0.2584093511104584, + "learning_rate": 4.40492e-05, + "loss": 2.2889364624023436, + "step": 89300 + }, + { + "epoch": 11.92, + "grad_norm": 0.25701311230659485, + "learning_rate": 4.404253333333334e-05, + "loss": 2.2891424560546874, + "step": 89400 + }, + { + "epoch": 11.933333333333334, + "grad_norm": 0.2440747767686844, + "learning_rate": 4.403586666666667e-05, + "loss": 2.2895196533203124, + "step": 89500 + }, + { + "epoch": 11.946666666666667, + "grad_norm": 0.2381986528635025, + "learning_rate": 4.40292e-05, + "loss": 2.2897454833984376, + "step": 89600 + }, + { + "epoch": 11.96, + "grad_norm": 0.26296404004096985, + "learning_rate": 4.402253333333334e-05, + "loss": 2.2879896545410157, + "step": 89700 + }, + { + "epoch": 11.973333333333333, + "grad_norm": 0.25517991185188293, + "learning_rate": 4.4015866666666666e-05, + "loss": 2.2889413452148437, + "step": 89800 + }, + { + "epoch": 11.986666666666666, + "grad_norm": 0.2450113147497177, + "learning_rate": 4.40092e-05, + "loss": 2.2893191528320314, + "step": 89900 + }, + { + "epoch": 12.0, + "grad_norm": 0.250333309173584, + "learning_rate": 4.400253333333334e-05, + "loss": 2.289803161621094, + "step": 90000 + }, + { + "epoch": 12.013333333333334, + "grad_norm": 0.26415345072746277, + "learning_rate": 4.399586666666667e-05, + "loss": 2.2520457458496095, + "step": 90100 + }, + { + "epoch": 12.026666666666667, + "grad_norm": 0.270293265581131, + "learning_rate": 4.39892e-05, + "loss": 2.256067810058594, + "step": 90200 + }, + { + "epoch": 12.04, + "grad_norm": 0.26308006048202515, + "learning_rate": 4.3982533333333335e-05, + "loss": 2.254475402832031, + "step": 90300 + }, + { + "epoch": 12.053333333333333, + "grad_norm": 0.26801061630249023, + "learning_rate": 4.3975866666666674e-05, + "loss": 2.2552793884277342, + "step": 90400 + }, + { + "epoch": 12.066666666666666, + "grad_norm": 0.26214471459388733, + "learning_rate": 4.3969200000000006e-05, + "loss": 2.258145599365234, + "step": 90500 + }, + { + "epoch": 12.08, + "grad_norm": 0.28105658292770386, + "learning_rate": 4.396253333333333e-05, + "loss": 2.2529132080078127, + "step": 90600 + }, + { + "epoch": 12.093333333333334, + "grad_norm": 0.2663695216178894, + "learning_rate": 4.395586666666667e-05, + "loss": 2.255912322998047, + "step": 90700 + }, + { + "epoch": 12.106666666666667, + "grad_norm": 0.2649990916252136, + "learning_rate": 4.39492e-05, + "loss": 2.257332000732422, + "step": 90800 + }, + { + "epoch": 12.12, + "grad_norm": 0.2807125747203827, + "learning_rate": 4.39426e-05, + "loss": 2.254444274902344, + "step": 90900 + }, + { + "epoch": 12.133333333333333, + "grad_norm": 0.2781652510166168, + "learning_rate": 4.3935933333333334e-05, + "loss": 2.255809478759766, + "step": 91000 + }, + { + "epoch": 12.146666666666667, + "grad_norm": 0.2698095142841339, + "learning_rate": 4.3929266666666666e-05, + "loss": 2.2598388671875, + "step": 91100 + }, + { + "epoch": 12.16, + "grad_norm": 0.2597528100013733, + "learning_rate": 4.3922600000000005e-05, + "loss": 2.2584068298339846, + "step": 91200 + }, + { + "epoch": 12.173333333333334, + "grad_norm": 0.29636549949645996, + "learning_rate": 4.391593333333334e-05, + "loss": 2.2593704223632813, + "step": 91300 + }, + { + "epoch": 12.186666666666667, + "grad_norm": 0.26234522461891174, + "learning_rate": 4.390926666666667e-05, + "loss": 2.2581317138671877, + "step": 91400 + }, + { + "epoch": 12.2, + "grad_norm": 0.2541376054286957, + "learning_rate": 4.39026e-05, + "loss": 2.2626708984375, + "step": 91500 + }, + { + "epoch": 12.213333333333333, + "grad_norm": 0.26197925209999084, + "learning_rate": 4.3895933333333334e-05, + "loss": 2.260786285400391, + "step": 91600 + }, + { + "epoch": 12.226666666666667, + "grad_norm": 0.2817310690879822, + "learning_rate": 4.388926666666667e-05, + "loss": 2.2600221252441406, + "step": 91700 + }, + { + "epoch": 12.24, + "grad_norm": 0.2767874002456665, + "learning_rate": 4.38826e-05, + "loss": 2.259307556152344, + "step": 91800 + }, + { + "epoch": 12.253333333333334, + "grad_norm": 0.28231081366539, + "learning_rate": 4.387593333333334e-05, + "loss": 2.26181396484375, + "step": 91900 + }, + { + "epoch": 12.266666666666667, + "grad_norm": 0.29353827238082886, + "learning_rate": 4.386926666666667e-05, + "loss": 2.2626690673828125, + "step": 92000 + }, + { + "epoch": 12.28, + "grad_norm": 0.28261885046958923, + "learning_rate": 4.38626e-05, + "loss": 2.2611619567871095, + "step": 92100 + }, + { + "epoch": 12.293333333333333, + "grad_norm": 0.27281126379966736, + "learning_rate": 4.3855933333333335e-05, + "loss": 2.2623275756835937, + "step": 92200 + }, + { + "epoch": 12.306666666666667, + "grad_norm": 0.27092328667640686, + "learning_rate": 4.384926666666667e-05, + "loss": 2.2650576782226564, + "step": 92300 + }, + { + "epoch": 12.32, + "grad_norm": 0.27784717082977295, + "learning_rate": 4.38426e-05, + "loss": 2.265977478027344, + "step": 92400 + }, + { + "epoch": 12.333333333333334, + "grad_norm": 0.2821849286556244, + "learning_rate": 4.383593333333333e-05, + "loss": 2.2627384948730467, + "step": 92500 + }, + { + "epoch": 12.346666666666668, + "grad_norm": 0.2593942880630493, + "learning_rate": 4.382926666666667e-05, + "loss": 2.2643051147460938, + "step": 92600 + }, + { + "epoch": 12.36, + "grad_norm": 0.2664111852645874, + "learning_rate": 4.38226e-05, + "loss": 2.263711700439453, + "step": 92700 + }, + { + "epoch": 12.373333333333333, + "grad_norm": 0.27181532979011536, + "learning_rate": 4.3815933333333335e-05, + "loss": 2.2646673583984374, + "step": 92800 + }, + { + "epoch": 12.386666666666667, + "grad_norm": 0.27028733491897583, + "learning_rate": 4.380926666666667e-05, + "loss": 2.263740997314453, + "step": 92900 + }, + { + "epoch": 12.4, + "grad_norm": 0.27383387088775635, + "learning_rate": 4.3802600000000006e-05, + "loss": 2.2647544860839846, + "step": 93000 + }, + { + "epoch": 12.413333333333334, + "grad_norm": 0.2857363820075989, + "learning_rate": 4.379593333333333e-05, + "loss": 2.2678724670410157, + "step": 93100 + }, + { + "epoch": 12.426666666666666, + "grad_norm": 0.2589321434497833, + "learning_rate": 4.3789266666666664e-05, + "loss": 2.266948547363281, + "step": 93200 + }, + { + "epoch": 12.44, + "grad_norm": 0.2658815085887909, + "learning_rate": 4.37826e-05, + "loss": 2.266887969970703, + "step": 93300 + }, + { + "epoch": 12.453333333333333, + "grad_norm": 0.25604525208473206, + "learning_rate": 4.3775933333333336e-05, + "loss": 2.2663844299316405, + "step": 93400 + }, + { + "epoch": 12.466666666666667, + "grad_norm": 0.2693767249584198, + "learning_rate": 4.376926666666667e-05, + "loss": 2.268565368652344, + "step": 93500 + }, + { + "epoch": 12.48, + "grad_norm": 0.2705082297325134, + "learning_rate": 4.376260000000001e-05, + "loss": 2.2688444519042967, + "step": 93600 + }, + { + "epoch": 12.493333333333334, + "grad_norm": 0.26299747824668884, + "learning_rate": 4.375593333333334e-05, + "loss": 2.2663604736328127, + "step": 93700 + }, + { + "epoch": 12.506666666666666, + "grad_norm": 0.2636234760284424, + "learning_rate": 4.3749266666666665e-05, + "loss": 2.267936096191406, + "step": 93800 + }, + { + "epoch": 12.52, + "grad_norm": 0.27005478739738464, + "learning_rate": 4.37426e-05, + "loss": 2.2693917846679685, + "step": 93900 + }, + { + "epoch": 12.533333333333333, + "grad_norm": 0.26250335574150085, + "learning_rate": 4.3735933333333336e-05, + "loss": 2.2679597473144533, + "step": 94000 + }, + { + "epoch": 12.546666666666667, + "grad_norm": 0.2671932876110077, + "learning_rate": 4.3729333333333335e-05, + "loss": 2.2690809631347655, + "step": 94100 + }, + { + "epoch": 12.56, + "grad_norm": 0.2680586576461792, + "learning_rate": 4.372266666666667e-05, + "loss": 2.271476287841797, + "step": 94200 + }, + { + "epoch": 12.573333333333334, + "grad_norm": 0.2628432512283325, + "learning_rate": 4.3716e-05, + "loss": 2.2699676513671876, + "step": 94300 + }, + { + "epoch": 12.586666666666666, + "grad_norm": 0.2540188431739807, + "learning_rate": 4.370933333333334e-05, + "loss": 2.2718327331542967, + "step": 94400 + }, + { + "epoch": 12.6, + "grad_norm": 0.2647560238838196, + "learning_rate": 4.370266666666667e-05, + "loss": 2.2681085205078126, + "step": 94500 + }, + { + "epoch": 12.613333333333333, + "grad_norm": 0.2745302617549896, + "learning_rate": 4.3696e-05, + "loss": 2.2698655700683594, + "step": 94600 + }, + { + "epoch": 12.626666666666667, + "grad_norm": 0.26162075996398926, + "learning_rate": 4.3689333333333335e-05, + "loss": 2.2712269592285157, + "step": 94700 + }, + { + "epoch": 12.64, + "grad_norm": 0.2582067847251892, + "learning_rate": 4.368266666666667e-05, + "loss": 2.272103271484375, + "step": 94800 + }, + { + "epoch": 12.653333333333332, + "grad_norm": 0.27295711636543274, + "learning_rate": 4.3676e-05, + "loss": 2.272527618408203, + "step": 94900 + }, + { + "epoch": 12.666666666666666, + "grad_norm": 0.2765968441963196, + "learning_rate": 4.366933333333333e-05, + "loss": 2.271612243652344, + "step": 95000 + }, + { + "epoch": 12.68, + "grad_norm": 0.25656306743621826, + "learning_rate": 4.366266666666667e-05, + "loss": 2.271820068359375, + "step": 95100 + }, + { + "epoch": 12.693333333333333, + "grad_norm": 0.2678724527359009, + "learning_rate": 4.3656000000000004e-05, + "loss": 2.271623992919922, + "step": 95200 + }, + { + "epoch": 12.706666666666667, + "grad_norm": 0.26828429102897644, + "learning_rate": 4.3649333333333336e-05, + "loss": 2.272816467285156, + "step": 95300 + }, + { + "epoch": 12.72, + "grad_norm": 0.2544470429420471, + "learning_rate": 4.364266666666667e-05, + "loss": 2.2750363159179687, + "step": 95400 + }, + { + "epoch": 12.733333333333333, + "grad_norm": 0.2685322165489197, + "learning_rate": 4.363600000000001e-05, + "loss": 2.2729071044921874, + "step": 95500 + }, + { + "epoch": 12.746666666666666, + "grad_norm": 0.26069387793540955, + "learning_rate": 4.362933333333333e-05, + "loss": 2.2722439575195312, + "step": 95600 + }, + { + "epoch": 12.76, + "grad_norm": 0.2649424374103546, + "learning_rate": 4.3622666666666665e-05, + "loss": 2.272758026123047, + "step": 95700 + }, + { + "epoch": 12.773333333333333, + "grad_norm": 0.2521308660507202, + "learning_rate": 4.3616000000000004e-05, + "loss": 2.272996520996094, + "step": 95800 + }, + { + "epoch": 12.786666666666667, + "grad_norm": 0.25602442026138306, + "learning_rate": 4.3609333333333336e-05, + "loss": 2.2761857604980467, + "step": 95900 + }, + { + "epoch": 12.8, + "grad_norm": 0.267101913690567, + "learning_rate": 4.360266666666667e-05, + "loss": 2.2757493591308595, + "step": 96000 + }, + { + "epoch": 12.813333333333333, + "grad_norm": 0.26094216108322144, + "learning_rate": 4.3596e-05, + "loss": 2.2767680358886717, + "step": 96100 + }, + { + "epoch": 12.826666666666666, + "grad_norm": 0.3060274124145508, + "learning_rate": 4.358933333333334e-05, + "loss": 2.276941833496094, + "step": 96200 + }, + { + "epoch": 12.84, + "grad_norm": 0.26290687918663025, + "learning_rate": 4.3582666666666665e-05, + "loss": 2.275010528564453, + "step": 96300 + }, + { + "epoch": 12.853333333333333, + "grad_norm": 0.2535942792892456, + "learning_rate": 4.3576e-05, + "loss": 2.273764343261719, + "step": 96400 + }, + { + "epoch": 12.866666666666667, + "grad_norm": 0.27731791138648987, + "learning_rate": 4.3569333333333337e-05, + "loss": 2.2726361083984377, + "step": 96500 + }, + { + "epoch": 12.88, + "grad_norm": 0.2616978585720062, + "learning_rate": 4.356266666666667e-05, + "loss": 2.2775596618652343, + "step": 96600 + }, + { + "epoch": 12.893333333333333, + "grad_norm": 0.28346607089042664, + "learning_rate": 4.3556e-05, + "loss": 2.277263488769531, + "step": 96700 + }, + { + "epoch": 12.906666666666666, + "grad_norm": 0.26759618520736694, + "learning_rate": 4.354933333333333e-05, + "loss": 2.2788565063476565, + "step": 96800 + }, + { + "epoch": 12.92, + "grad_norm": 0.25372806191444397, + "learning_rate": 4.354266666666667e-05, + "loss": 2.278957977294922, + "step": 96900 + }, + { + "epoch": 12.933333333333334, + "grad_norm": 0.2680625319480896, + "learning_rate": 4.3536000000000005e-05, + "loss": 2.2768804931640627, + "step": 97000 + }, + { + "epoch": 12.946666666666667, + "grad_norm": 0.28444984555244446, + "learning_rate": 4.352933333333333e-05, + "loss": 2.2771568298339844, + "step": 97100 + }, + { + "epoch": 12.96, + "grad_norm": 0.26102322340011597, + "learning_rate": 4.352266666666667e-05, + "loss": 2.277088928222656, + "step": 97200 + }, + { + "epoch": 12.973333333333333, + "grad_norm": 0.25774040818214417, + "learning_rate": 4.3516e-05, + "loss": 2.2783038330078127, + "step": 97300 + }, + { + "epoch": 12.986666666666666, + "grad_norm": 0.27031639218330383, + "learning_rate": 4.3509333333333334e-05, + "loss": 2.276095275878906, + "step": 97400 + }, + { + "epoch": 13.0, + "grad_norm": 0.262939989566803, + "learning_rate": 4.3502666666666666e-05, + "loss": 2.2774124145507812, + "step": 97500 + }, + { + "epoch": 13.013333333333334, + "grad_norm": 0.29187247157096863, + "learning_rate": 4.3496066666666665e-05, + "loss": 2.2387960815429686, + "step": 97600 + }, + { + "epoch": 13.026666666666667, + "grad_norm": 0.2766711413860321, + "learning_rate": 4.3489400000000004e-05, + "loss": 2.2393284606933594, + "step": 97700 + }, + { + "epoch": 13.04, + "grad_norm": 0.26698678731918335, + "learning_rate": 4.3482733333333336e-05, + "loss": 2.2385823059082033, + "step": 97800 + }, + { + "epoch": 13.053333333333333, + "grad_norm": 0.28331395983695984, + "learning_rate": 4.347606666666667e-05, + "loss": 2.23583251953125, + "step": 97900 + }, + { + "epoch": 13.066666666666666, + "grad_norm": 0.27367907762527466, + "learning_rate": 4.346940000000001e-05, + "loss": 2.2407188415527344, + "step": 98000 + }, + { + "epoch": 13.08, + "grad_norm": 0.28484055399894714, + "learning_rate": 4.346273333333333e-05, + "loss": 2.244789886474609, + "step": 98100 + }, + { + "epoch": 13.093333333333334, + "grad_norm": 0.28485485911369324, + "learning_rate": 4.3456066666666665e-05, + "loss": 2.242432861328125, + "step": 98200 + }, + { + "epoch": 13.106666666666667, + "grad_norm": 0.2772075831890106, + "learning_rate": 4.3449400000000005e-05, + "loss": 2.242548370361328, + "step": 98300 + }, + { + "epoch": 13.12, + "grad_norm": 0.2794252336025238, + "learning_rate": 4.344273333333334e-05, + "loss": 2.241208953857422, + "step": 98400 + }, + { + "epoch": 13.133333333333333, + "grad_norm": 0.2768386900424957, + "learning_rate": 4.343606666666667e-05, + "loss": 2.2418304443359376, + "step": 98500 + }, + { + "epoch": 13.146666666666667, + "grad_norm": 0.29671546816825867, + "learning_rate": 4.34294e-05, + "loss": 2.24133544921875, + "step": 98600 + }, + { + "epoch": 13.16, + "grad_norm": 0.28922173380851746, + "learning_rate": 4.342273333333334e-05, + "loss": 2.2457321166992186, + "step": 98700 + }, + { + "epoch": 13.173333333333334, + "grad_norm": 0.2911158800125122, + "learning_rate": 4.3416066666666666e-05, + "loss": 2.243005676269531, + "step": 98800 + }, + { + "epoch": 13.186666666666667, + "grad_norm": 0.2844465374946594, + "learning_rate": 4.34094e-05, + "loss": 2.2428907775878906, + "step": 98900 + }, + { + "epoch": 13.2, + "grad_norm": 0.29359185695648193, + "learning_rate": 4.340273333333334e-05, + "loss": 2.2461944580078126, + "step": 99000 + }, + { + "epoch": 13.213333333333333, + "grad_norm": 0.2992889881134033, + "learning_rate": 4.339606666666667e-05, + "loss": 2.2442695617675783, + "step": 99100 + }, + { + "epoch": 13.226666666666667, + "grad_norm": 0.28376510739326477, + "learning_rate": 4.33894e-05, + "loss": 2.2490634155273437, + "step": 99200 + }, + { + "epoch": 13.24, + "grad_norm": 0.26906511187553406, + "learning_rate": 4.3382733333333334e-05, + "loss": 2.248119354248047, + "step": 99300 + }, + { + "epoch": 13.253333333333334, + "grad_norm": 0.2935919165611267, + "learning_rate": 4.337606666666667e-05, + "loss": 2.244882354736328, + "step": 99400 + }, + { + "epoch": 13.266666666666667, + "grad_norm": 0.27943170070648193, + "learning_rate": 4.3369400000000005e-05, + "loss": 2.247407989501953, + "step": 99500 + }, + { + "epoch": 13.28, + "grad_norm": 0.27867066860198975, + "learning_rate": 4.336273333333333e-05, + "loss": 2.247802429199219, + "step": 99600 + }, + { + "epoch": 13.293333333333333, + "grad_norm": 0.29325079917907715, + "learning_rate": 4.335606666666667e-05, + "loss": 2.248299865722656, + "step": 99700 + }, + { + "epoch": 13.306666666666667, + "grad_norm": 0.276795893907547, + "learning_rate": 4.33494e-05, + "loss": 2.2507450866699217, + "step": 99800 + }, + { + "epoch": 13.32, + "grad_norm": 0.2778800427913666, + "learning_rate": 4.3342733333333334e-05, + "loss": 2.249114990234375, + "step": 99900 + }, + { + "epoch": 13.333333333333334, + "grad_norm": 0.2965216636657715, + "learning_rate": 4.3336066666666667e-05, + "loss": 2.250552520751953, + "step": 100000 + }, + { + "epoch": 13.346666666666668, + "grad_norm": 0.2709920108318329, + "learning_rate": 4.3329400000000006e-05, + "loss": 2.2509161376953126, + "step": 100100 + }, + { + "epoch": 13.36, + "grad_norm": 0.2882387638092041, + "learning_rate": 4.332273333333334e-05, + "loss": 2.2525457763671874, + "step": 100200 + }, + { + "epoch": 13.373333333333333, + "grad_norm": 0.2988874316215515, + "learning_rate": 4.331606666666667e-05, + "loss": 2.2508233642578124, + "step": 100300 + }, + { + "epoch": 13.386666666666667, + "grad_norm": 0.274324506521225, + "learning_rate": 4.33094e-05, + "loss": 2.2498133850097655, + "step": 100400 + }, + { + "epoch": 13.4, + "grad_norm": 0.29012390971183777, + "learning_rate": 4.3302733333333335e-05, + "loss": 2.252369079589844, + "step": 100500 + }, + { + "epoch": 13.413333333333334, + "grad_norm": 0.2632313668727875, + "learning_rate": 4.329606666666667e-05, + "loss": 2.2533638000488283, + "step": 100600 + }, + { + "epoch": 13.426666666666666, + "grad_norm": 0.26571324467658997, + "learning_rate": 4.32894e-05, + "loss": 2.253193054199219, + "step": 100700 + }, + { + "epoch": 13.44, + "grad_norm": 0.289485901594162, + "learning_rate": 4.328273333333334e-05, + "loss": 2.251653747558594, + "step": 100800 + }, + { + "epoch": 13.453333333333333, + "grad_norm": 0.2886415421962738, + "learning_rate": 4.327606666666667e-05, + "loss": 2.251334228515625, + "step": 100900 + }, + { + "epoch": 13.466666666666667, + "grad_norm": 0.2879510819911957, + "learning_rate": 4.32694e-05, + "loss": 2.2535078430175783, + "step": 101000 + }, + { + "epoch": 13.48, + "grad_norm": 0.2864849269390106, + "learning_rate": 4.3262733333333335e-05, + "loss": 2.2524153137207032, + "step": 101100 + }, + { + "epoch": 13.493333333333334, + "grad_norm": 0.27846381068229675, + "learning_rate": 4.325606666666667e-05, + "loss": 2.255931549072266, + "step": 101200 + }, + { + "epoch": 13.506666666666666, + "grad_norm": 0.293816477060318, + "learning_rate": 4.32494e-05, + "loss": 2.256122894287109, + "step": 101300 + }, + { + "epoch": 13.52, + "grad_norm": 0.2949255704879761, + "learning_rate": 4.324273333333333e-05, + "loss": 2.2581175231933592, + "step": 101400 + }, + { + "epoch": 13.533333333333333, + "grad_norm": 0.2826773226261139, + "learning_rate": 4.323606666666667e-05, + "loss": 2.255837097167969, + "step": 101500 + }, + { + "epoch": 13.546666666666667, + "grad_norm": 0.2743004262447357, + "learning_rate": 4.322953333333333e-05, + "loss": 2.2541908264160155, + "step": 101600 + }, + { + "epoch": 13.56, + "grad_norm": 0.2713441550731659, + "learning_rate": 4.322286666666667e-05, + "loss": 2.258142547607422, + "step": 101700 + }, + { + "epoch": 13.573333333333334, + "grad_norm": 0.283563494682312, + "learning_rate": 4.32162e-05, + "loss": 2.2553956604003904, + "step": 101800 + }, + { + "epoch": 13.586666666666666, + "grad_norm": 0.28330928087234497, + "learning_rate": 4.3209533333333334e-05, + "loss": 2.257396697998047, + "step": 101900 + }, + { + "epoch": 13.6, + "grad_norm": 0.2793908715248108, + "learning_rate": 4.3202866666666666e-05, + "loss": 2.256497344970703, + "step": 102000 + }, + { + "epoch": 13.613333333333333, + "grad_norm": 0.2900395393371582, + "learning_rate": 4.3196200000000005e-05, + "loss": 2.255678405761719, + "step": 102100 + }, + { + "epoch": 13.626666666666667, + "grad_norm": 0.27794957160949707, + "learning_rate": 4.318953333333334e-05, + "loss": 2.2580166625976563, + "step": 102200 + }, + { + "epoch": 13.64, + "grad_norm": 0.2686266303062439, + "learning_rate": 4.318286666666667e-05, + "loss": 2.260865478515625, + "step": 102300 + }, + { + "epoch": 13.653333333333332, + "grad_norm": 0.2785786986351013, + "learning_rate": 4.31762e-05, + "loss": 2.260006561279297, + "step": 102400 + }, + { + "epoch": 13.666666666666666, + "grad_norm": 0.28079360723495483, + "learning_rate": 4.3169533333333334e-05, + "loss": 2.2595237731933593, + "step": 102500 + }, + { + "epoch": 13.68, + "grad_norm": 0.3011217415332794, + "learning_rate": 4.3162866666666666e-05, + "loss": 2.2576690673828126, + "step": 102600 + }, + { + "epoch": 13.693333333333333, + "grad_norm": 0.29701074957847595, + "learning_rate": 4.3156200000000005e-05, + "loss": 2.2590093994140625, + "step": 102700 + }, + { + "epoch": 13.706666666666667, + "grad_norm": 0.284489244222641, + "learning_rate": 4.314953333333334e-05, + "loss": 2.2569615173339845, + "step": 102800 + }, + { + "epoch": 13.72, + "grad_norm": 0.29608434438705444, + "learning_rate": 4.314286666666667e-05, + "loss": 2.26008544921875, + "step": 102900 + }, + { + "epoch": 13.733333333333333, + "grad_norm": 0.2743198275566101, + "learning_rate": 4.31362e-05, + "loss": 2.2595872497558593, + "step": 103000 + }, + { + "epoch": 13.746666666666666, + "grad_norm": 0.2759169340133667, + "learning_rate": 4.3129533333333334e-05, + "loss": 2.260936737060547, + "step": 103100 + }, + { + "epoch": 13.76, + "grad_norm": 0.2984674274921417, + "learning_rate": 4.312286666666667e-05, + "loss": 2.2615948486328126, + "step": 103200 + }, + { + "epoch": 13.773333333333333, + "grad_norm": 0.27188169956207275, + "learning_rate": 4.31162e-05, + "loss": 2.2584141540527343, + "step": 103300 + }, + { + "epoch": 13.786666666666667, + "grad_norm": 0.2684420943260193, + "learning_rate": 4.310953333333334e-05, + "loss": 2.26137451171875, + "step": 103400 + }, + { + "epoch": 13.8, + "grad_norm": 0.2790769040584564, + "learning_rate": 4.310286666666667e-05, + "loss": 2.260129089355469, + "step": 103500 + }, + { + "epoch": 13.813333333333333, + "grad_norm": 0.28276488184928894, + "learning_rate": 4.30962e-05, + "loss": 2.261208038330078, + "step": 103600 + }, + { + "epoch": 13.826666666666666, + "grad_norm": 0.27551108598709106, + "learning_rate": 4.30896e-05, + "loss": 2.2652987670898437, + "step": 103700 + }, + { + "epoch": 13.84, + "grad_norm": 0.27749794721603394, + "learning_rate": 4.3082933333333334e-05, + "loss": 2.2623104858398437, + "step": 103800 + }, + { + "epoch": 13.853333333333333, + "grad_norm": 0.29130128026008606, + "learning_rate": 4.307626666666667e-05, + "loss": 2.2647268676757815, + "step": 103900 + }, + { + "epoch": 13.866666666666667, + "grad_norm": 0.27854955196380615, + "learning_rate": 4.3069600000000005e-05, + "loss": 2.2648512268066407, + "step": 104000 + }, + { + "epoch": 13.88, + "grad_norm": 0.2763110399246216, + "learning_rate": 4.306293333333333e-05, + "loss": 2.262389678955078, + "step": 104100 + }, + { + "epoch": 13.893333333333333, + "grad_norm": 0.2861855626106262, + "learning_rate": 4.305626666666667e-05, + "loss": 2.260863952636719, + "step": 104200 + }, + { + "epoch": 13.906666666666666, + "grad_norm": 0.2763212323188782, + "learning_rate": 4.30496e-05, + "loss": 2.2617811584472656, + "step": 104300 + }, + { + "epoch": 13.92, + "grad_norm": 0.27700719237327576, + "learning_rate": 4.3042933333333334e-05, + "loss": 2.2629629516601564, + "step": 104400 + }, + { + "epoch": 13.933333333333334, + "grad_norm": 0.289580374956131, + "learning_rate": 4.3036266666666667e-05, + "loss": 2.2654957580566406, + "step": 104500 + }, + { + "epoch": 13.946666666666667, + "grad_norm": 0.288922518491745, + "learning_rate": 4.3029600000000006e-05, + "loss": 2.2641279602050783, + "step": 104600 + }, + { + "epoch": 13.96, + "grad_norm": 0.2980629503726959, + "learning_rate": 4.302293333333334e-05, + "loss": 2.2678652954101564, + "step": 104700 + }, + { + "epoch": 13.973333333333333, + "grad_norm": 0.279041051864624, + "learning_rate": 4.301626666666667e-05, + "loss": 2.264940185546875, + "step": 104800 + }, + { + "epoch": 13.986666666666666, + "grad_norm": 0.2885514497756958, + "learning_rate": 4.30096e-05, + "loss": 2.264721221923828, + "step": 104900 + }, + { + "epoch": 14.0, + "grad_norm": 0.2856515347957611, + "learning_rate": 4.3002933333333335e-05, + "loss": 2.2638644409179687, + "step": 105000 + }, + { + "epoch": 14.013333333333334, + "grad_norm": 0.2933811843395233, + "learning_rate": 4.299626666666667e-05, + "loss": 2.223587951660156, + "step": 105100 + }, + { + "epoch": 14.026666666666667, + "grad_norm": 0.3170996308326721, + "learning_rate": 4.29896e-05, + "loss": 2.2215760803222655, + "step": 105200 + }, + { + "epoch": 14.04, + "grad_norm": 0.32004064321517944, + "learning_rate": 4.298293333333334e-05, + "loss": 2.2238189697265627, + "step": 105300 + }, + { + "epoch": 14.053333333333333, + "grad_norm": 0.29204490780830383, + "learning_rate": 4.297626666666667e-05, + "loss": 2.2225723266601562, + "step": 105400 + }, + { + "epoch": 14.066666666666666, + "grad_norm": 0.3062141239643097, + "learning_rate": 4.29696e-05, + "loss": 2.223246765136719, + "step": 105500 + }, + { + "epoch": 14.08, + "grad_norm": 0.30984053015708923, + "learning_rate": 4.2962933333333335e-05, + "loss": 2.2242507934570312, + "step": 105600 + }, + { + "epoch": 14.093333333333334, + "grad_norm": 0.322451651096344, + "learning_rate": 4.295626666666667e-05, + "loss": 2.2280723571777346, + "step": 105700 + }, + { + "epoch": 14.106666666666667, + "grad_norm": 0.3022569417953491, + "learning_rate": 4.29496e-05, + "loss": 2.226327209472656, + "step": 105800 + }, + { + "epoch": 14.12, + "grad_norm": 0.30784836411476135, + "learning_rate": 4.294293333333333e-05, + "loss": 2.2258816528320313, + "step": 105900 + }, + { + "epoch": 14.133333333333333, + "grad_norm": 0.30157235264778137, + "learning_rate": 4.293626666666667e-05, + "loss": 2.2270236206054688, + "step": 106000 + }, + { + "epoch": 14.146666666666667, + "grad_norm": 0.30551230907440186, + "learning_rate": 4.29296e-05, + "loss": 2.231392822265625, + "step": 106100 + }, + { + "epoch": 14.16, + "grad_norm": 0.2978629171848297, + "learning_rate": 4.2922933333333335e-05, + "loss": 2.228222198486328, + "step": 106200 + }, + { + "epoch": 14.173333333333334, + "grad_norm": 0.3043777644634247, + "learning_rate": 4.2916333333333334e-05, + "loss": 2.2319209289550783, + "step": 106300 + }, + { + "epoch": 14.186666666666667, + "grad_norm": 0.29846736788749695, + "learning_rate": 4.2909666666666674e-05, + "loss": 2.228956451416016, + "step": 106400 + }, + { + "epoch": 14.2, + "grad_norm": 0.30101996660232544, + "learning_rate": 4.2903000000000006e-05, + "loss": 2.233109588623047, + "step": 106500 + }, + { + "epoch": 14.213333333333333, + "grad_norm": 0.2905249297618866, + "learning_rate": 4.289633333333333e-05, + "loss": 2.23214111328125, + "step": 106600 + }, + { + "epoch": 14.226666666666667, + "grad_norm": 0.31870153546333313, + "learning_rate": 4.2889666666666664e-05, + "loss": 2.23111572265625, + "step": 106700 + }, + { + "epoch": 14.24, + "grad_norm": 0.31344854831695557, + "learning_rate": 4.2883e-05, + "loss": 2.2312010192871092, + "step": 106800 + }, + { + "epoch": 14.253333333333334, + "grad_norm": 0.3159984350204468, + "learning_rate": 4.2876333333333335e-05, + "loss": 2.234411315917969, + "step": 106900 + }, + { + "epoch": 14.266666666666667, + "grad_norm": 0.3049383759498596, + "learning_rate": 4.286966666666667e-05, + "loss": 2.232013854980469, + "step": 107000 + }, + { + "epoch": 14.28, + "grad_norm": 0.2840105891227722, + "learning_rate": 4.2863000000000006e-05, + "loss": 2.2319927978515626, + "step": 107100 + }, + { + "epoch": 14.293333333333333, + "grad_norm": 0.3090221881866455, + "learning_rate": 4.285633333333334e-05, + "loss": 2.235484771728516, + "step": 107200 + }, + { + "epoch": 14.306666666666667, + "grad_norm": 0.2912992835044861, + "learning_rate": 4.284966666666667e-05, + "loss": 2.233905944824219, + "step": 107300 + }, + { + "epoch": 14.32, + "grad_norm": 0.2928401231765747, + "learning_rate": 4.2843e-05, + "loss": 2.2329034423828125, + "step": 107400 + }, + { + "epoch": 14.333333333333334, + "grad_norm": 0.2940289080142975, + "learning_rate": 4.2836333333333335e-05, + "loss": 2.23254150390625, + "step": 107500 + }, + { + "epoch": 14.346666666666668, + "grad_norm": 0.3051759898662567, + "learning_rate": 4.282966666666667e-05, + "loss": 2.235914764404297, + "step": 107600 + }, + { + "epoch": 14.36, + "grad_norm": 0.29925987124443054, + "learning_rate": 4.2823e-05, + "loss": 2.236822052001953, + "step": 107700 + }, + { + "epoch": 14.373333333333333, + "grad_norm": 0.30133113265037537, + "learning_rate": 4.281633333333334e-05, + "loss": 2.237333068847656, + "step": 107800 + }, + { + "epoch": 14.386666666666667, + "grad_norm": 0.2979786694049835, + "learning_rate": 4.280966666666667e-05, + "loss": 2.2337214660644533, + "step": 107900 + }, + { + "epoch": 14.4, + "grad_norm": 0.30509302020072937, + "learning_rate": 4.2803e-05, + "loss": 2.234857177734375, + "step": 108000 + }, + { + "epoch": 14.413333333333334, + "grad_norm": 0.31245774030685425, + "learning_rate": 4.2796333333333336e-05, + "loss": 2.2369602966308593, + "step": 108100 + }, + { + "epoch": 14.426666666666666, + "grad_norm": 0.28808292746543884, + "learning_rate": 4.278966666666667e-05, + "loss": 2.2391943359375, + "step": 108200 + }, + { + "epoch": 14.44, + "grad_norm": 0.3327585756778717, + "learning_rate": 4.2783066666666674e-05, + "loss": 2.2387188720703124, + "step": 108300 + }, + { + "epoch": 14.453333333333333, + "grad_norm": 0.3101474940776825, + "learning_rate": 4.27764e-05, + "loss": 2.2376824951171876, + "step": 108400 + }, + { + "epoch": 14.466666666666667, + "grad_norm": 0.2869791090488434, + "learning_rate": 4.276973333333333e-05, + "loss": 2.237794189453125, + "step": 108500 + }, + { + "epoch": 14.48, + "grad_norm": 0.3071404695510864, + "learning_rate": 4.276306666666667e-05, + "loss": 2.239633331298828, + "step": 108600 + }, + { + "epoch": 14.493333333333334, + "grad_norm": 0.2966044843196869, + "learning_rate": 4.27564e-05, + "loss": 2.2403135681152344, + "step": 108700 + }, + { + "epoch": 14.506666666666666, + "grad_norm": 0.2996501624584198, + "learning_rate": 4.2749733333333335e-05, + "loss": 2.240699920654297, + "step": 108800 + }, + { + "epoch": 14.52, + "grad_norm": 0.3051213026046753, + "learning_rate": 4.274306666666667e-05, + "loss": 2.241038360595703, + "step": 108900 + }, + { + "epoch": 14.533333333333333, + "grad_norm": 0.3177984952926636, + "learning_rate": 4.2736400000000006e-05, + "loss": 2.241685485839844, + "step": 109000 + }, + { + "epoch": 14.546666666666667, + "grad_norm": 0.31197378039360046, + "learning_rate": 4.272973333333333e-05, + "loss": 2.2384878540039064, + "step": 109100 + }, + { + "epoch": 14.56, + "grad_norm": 0.3031216263771057, + "learning_rate": 4.2723066666666664e-05, + "loss": 2.240026397705078, + "step": 109200 + }, + { + "epoch": 14.573333333333334, + "grad_norm": 0.2918401062488556, + "learning_rate": 4.27164e-05, + "loss": 2.2429275512695312, + "step": 109300 + }, + { + "epoch": 14.586666666666666, + "grad_norm": 0.30749937891960144, + "learning_rate": 4.2709733333333335e-05, + "loss": 2.2420500183105467, + "step": 109400 + }, + { + "epoch": 14.6, + "grad_norm": 0.30055928230285645, + "learning_rate": 4.270306666666667e-05, + "loss": 2.2444825744628907, + "step": 109500 + }, + { + "epoch": 14.613333333333333, + "grad_norm": 0.3009972870349884, + "learning_rate": 4.26964e-05, + "loss": 2.2414918518066407, + "step": 109600 + }, + { + "epoch": 14.626666666666667, + "grad_norm": 0.29409679770469666, + "learning_rate": 4.268973333333334e-05, + "loss": 2.243094940185547, + "step": 109700 + }, + { + "epoch": 14.64, + "grad_norm": 0.3000005781650543, + "learning_rate": 4.268306666666667e-05, + "loss": 2.243612060546875, + "step": 109800 + }, + { + "epoch": 14.653333333333332, + "grad_norm": 0.31389036774635315, + "learning_rate": 4.26764e-05, + "loss": 2.247608337402344, + "step": 109900 + }, + { + "epoch": 14.666666666666666, + "grad_norm": 0.30435290932655334, + "learning_rate": 4.2669733333333336e-05, + "loss": 2.2452850341796875, + "step": 110000 + }, + { + "epoch": 14.68, + "grad_norm": 0.31581467390060425, + "learning_rate": 4.266306666666667e-05, + "loss": 2.2423834228515624, + "step": 110100 + }, + { + "epoch": 14.693333333333333, + "grad_norm": 0.30677202343940735, + "learning_rate": 4.26564e-05, + "loss": 2.2448631286621095, + "step": 110200 + }, + { + "epoch": 14.706666666666667, + "grad_norm": 0.2914011776447296, + "learning_rate": 4.264973333333333e-05, + "loss": 2.2458355712890623, + "step": 110300 + }, + { + "epoch": 14.72, + "grad_norm": 0.30041709542274475, + "learning_rate": 4.264313333333333e-05, + "loss": 2.2454510498046876, + "step": 110400 + }, + { + "epoch": 14.733333333333333, + "grad_norm": 0.29341447353363037, + "learning_rate": 4.263646666666667e-05, + "loss": 2.2464495849609376, + "step": 110500 + }, + { + "epoch": 14.746666666666666, + "grad_norm": 0.2851749658584595, + "learning_rate": 4.26298e-05, + "loss": 2.2466586303710936, + "step": 110600 + }, + { + "epoch": 14.76, + "grad_norm": 0.297852486371994, + "learning_rate": 4.2623133333333335e-05, + "loss": 2.2463618469238282, + "step": 110700 + }, + { + "epoch": 14.773333333333333, + "grad_norm": 0.2981916666030884, + "learning_rate": 4.2616466666666674e-05, + "loss": 2.2474107360839843, + "step": 110800 + }, + { + "epoch": 14.786666666666667, + "grad_norm": 0.29726073145866394, + "learning_rate": 4.26098e-05, + "loss": 2.2470823669433595, + "step": 110900 + }, + { + "epoch": 14.8, + "grad_norm": 0.29146844148635864, + "learning_rate": 4.260313333333333e-05, + "loss": 2.248656005859375, + "step": 111000 + }, + { + "epoch": 14.813333333333333, + "grad_norm": 0.30146679282188416, + "learning_rate": 4.259646666666667e-05, + "loss": 2.2492645263671873, + "step": 111100 + }, + { + "epoch": 14.826666666666666, + "grad_norm": 0.30518659949302673, + "learning_rate": 4.2589800000000003e-05, + "loss": 2.2455149841308595, + "step": 111200 + }, + { + "epoch": 14.84, + "grad_norm": 0.2941482663154602, + "learning_rate": 4.2583133333333336e-05, + "loss": 2.247636413574219, + "step": 111300 + }, + { + "epoch": 14.853333333333333, + "grad_norm": 0.3071843981742859, + "learning_rate": 4.257646666666667e-05, + "loss": 2.249114227294922, + "step": 111400 + }, + { + "epoch": 14.866666666666667, + "grad_norm": 0.2867000102996826, + "learning_rate": 4.256980000000001e-05, + "loss": 2.244889831542969, + "step": 111500 + }, + { + "epoch": 14.88, + "grad_norm": 0.29321691393852234, + "learning_rate": 4.256313333333333e-05, + "loss": 2.2497218322753905, + "step": 111600 + }, + { + "epoch": 14.893333333333333, + "grad_norm": 0.28539395332336426, + "learning_rate": 4.2556466666666665e-05, + "loss": 2.2499490356445313, + "step": 111700 + }, + { + "epoch": 14.906666666666666, + "grad_norm": 0.2966148257255554, + "learning_rate": 4.2549800000000004e-05, + "loss": 2.251126708984375, + "step": 111800 + }, + { + "epoch": 14.92, + "grad_norm": 0.30318519473075867, + "learning_rate": 4.2543133333333336e-05, + "loss": 2.251923370361328, + "step": 111900 + }, + { + "epoch": 14.933333333333334, + "grad_norm": 0.30401572585105896, + "learning_rate": 4.253646666666667e-05, + "loss": 2.247659912109375, + "step": 112000 + }, + { + "epoch": 14.946666666666667, + "grad_norm": 0.42713233828544617, + "learning_rate": 4.25298e-05, + "loss": 2.2480320739746094, + "step": 112100 + }, + { + "epoch": 14.96, + "grad_norm": 0.3023832440376282, + "learning_rate": 4.252313333333334e-05, + "loss": 2.252263946533203, + "step": 112200 + }, + { + "epoch": 14.973333333333333, + "grad_norm": 0.31739455461502075, + "learning_rate": 4.251646666666667e-05, + "loss": 2.250135040283203, + "step": 112300 + }, + { + "epoch": 14.986666666666666, + "grad_norm": 0.2998296618461609, + "learning_rate": 4.25098e-05, + "loss": 2.250568542480469, + "step": 112400 + }, + { + "epoch": 15.0, + "grad_norm": 0.3116128146648407, + "learning_rate": 4.25032e-05, + "loss": 2.254090118408203, + "step": 112500 + }, + { + "epoch": 15.013333333333334, + "grad_norm": 0.324983686208725, + "learning_rate": 4.2496533333333336e-05, + "loss": 2.2063966369628907, + "step": 112600 + }, + { + "epoch": 15.026666666666667, + "grad_norm": 0.32630521059036255, + "learning_rate": 4.248986666666667e-05, + "loss": 2.204698486328125, + "step": 112700 + }, + { + "epoch": 15.04, + "grad_norm": 0.33141613006591797, + "learning_rate": 4.24832e-05, + "loss": 2.2065577697753906, + "step": 112800 + }, + { + "epoch": 15.053333333333333, + "grad_norm": 0.29963183403015137, + "learning_rate": 4.247653333333333e-05, + "loss": 2.208046569824219, + "step": 112900 + }, + { + "epoch": 15.066666666666666, + "grad_norm": 0.30262288451194763, + "learning_rate": 4.246986666666667e-05, + "loss": 2.208232574462891, + "step": 113000 + }, + { + "epoch": 15.08, + "grad_norm": 0.31407952308654785, + "learning_rate": 4.2463200000000004e-05, + "loss": 2.2060285949707032, + "step": 113100 + }, + { + "epoch": 15.093333333333334, + "grad_norm": 0.3279408812522888, + "learning_rate": 4.2456533333333336e-05, + "loss": 2.2077986145019532, + "step": 113200 + }, + { + "epoch": 15.106666666666667, + "grad_norm": 0.3157520592212677, + "learning_rate": 4.244986666666667e-05, + "loss": 2.2095164489746093, + "step": 113300 + }, + { + "epoch": 15.12, + "grad_norm": 0.31880176067352295, + "learning_rate": 4.24432e-05, + "loss": 2.210868377685547, + "step": 113400 + }, + { + "epoch": 15.133333333333333, + "grad_norm": 0.31537145376205444, + "learning_rate": 4.243653333333333e-05, + "loss": 2.208413391113281, + "step": 113500 + }, + { + "epoch": 15.146666666666667, + "grad_norm": 0.34451282024383545, + "learning_rate": 4.2429866666666665e-05, + "loss": 2.216689453125, + "step": 113600 + }, + { + "epoch": 15.16, + "grad_norm": 0.343150794506073, + "learning_rate": 4.2423200000000004e-05, + "loss": 2.2148944091796876, + "step": 113700 + }, + { + "epoch": 15.173333333333334, + "grad_norm": 0.33272266387939453, + "learning_rate": 4.2416533333333336e-05, + "loss": 2.2134307861328124, + "step": 113800 + }, + { + "epoch": 15.186666666666667, + "grad_norm": 0.3378112018108368, + "learning_rate": 4.240986666666667e-05, + "loss": 2.2136904907226564, + "step": 113900 + }, + { + "epoch": 15.2, + "grad_norm": 0.31077101826667786, + "learning_rate": 4.24032e-05, + "loss": 2.2134745788574217, + "step": 114000 + }, + { + "epoch": 15.213333333333333, + "grad_norm": 0.32572445273399353, + "learning_rate": 4.239653333333334e-05, + "loss": 2.217989654541016, + "step": 114100 + }, + { + "epoch": 15.226666666666667, + "grad_norm": 0.3158329725265503, + "learning_rate": 4.2389866666666665e-05, + "loss": 2.213584442138672, + "step": 114200 + }, + { + "epoch": 15.24, + "grad_norm": 0.3473946750164032, + "learning_rate": 4.23832e-05, + "loss": 2.212930450439453, + "step": 114300 + }, + { + "epoch": 15.253333333333334, + "grad_norm": 0.32019126415252686, + "learning_rate": 4.237653333333334e-05, + "loss": 2.2173892211914064, + "step": 114400 + }, + { + "epoch": 15.266666666666667, + "grad_norm": 0.31340309977531433, + "learning_rate": 4.236986666666667e-05, + "loss": 2.2174838256835936, + "step": 114500 + }, + { + "epoch": 15.28, + "grad_norm": 0.33847081661224365, + "learning_rate": 4.236326666666667e-05, + "loss": 2.21783203125, + "step": 114600 + }, + { + "epoch": 15.293333333333333, + "grad_norm": 0.32491597533226013, + "learning_rate": 4.23566e-05, + "loss": 2.2157107543945314, + "step": 114700 + }, + { + "epoch": 15.306666666666667, + "grad_norm": 0.3161472976207733, + "learning_rate": 4.234993333333333e-05, + "loss": 2.2165769958496093, + "step": 114800 + }, + { + "epoch": 15.32, + "grad_norm": 0.35170355439186096, + "learning_rate": 4.234326666666667e-05, + "loss": 2.217754211425781, + "step": 114900 + }, + { + "epoch": 15.333333333333334, + "grad_norm": 0.3464552164077759, + "learning_rate": 4.2336600000000004e-05, + "loss": 2.219124450683594, + "step": 115000 + }, + { + "epoch": 15.346666666666668, + "grad_norm": 0.2998979389667511, + "learning_rate": 4.2329933333333336e-05, + "loss": 2.218946075439453, + "step": 115100 + }, + { + "epoch": 15.36, + "grad_norm": 0.33624839782714844, + "learning_rate": 4.232326666666667e-05, + "loss": 2.2174595642089843, + "step": 115200 + }, + { + "epoch": 15.373333333333333, + "grad_norm": 0.322299987077713, + "learning_rate": 4.23166e-05, + "loss": 2.2204608154296874, + "step": 115300 + }, + { + "epoch": 15.386666666666667, + "grad_norm": 0.3346404731273651, + "learning_rate": 4.230993333333333e-05, + "loss": 2.220567169189453, + "step": 115400 + }, + { + "epoch": 15.4, + "grad_norm": 0.3098982870578766, + "learning_rate": 4.230326666666667e-05, + "loss": 2.2207266235351564, + "step": 115500 + }, + { + "epoch": 15.413333333333334, + "grad_norm": 0.31962502002716064, + "learning_rate": 4.2296600000000004e-05, + "loss": 2.2188589477539065, + "step": 115600 + }, + { + "epoch": 15.426666666666666, + "grad_norm": 0.3353968560695648, + "learning_rate": 4.2289933333333337e-05, + "loss": 2.2199302673339845, + "step": 115700 + }, + { + "epoch": 15.44, + "grad_norm": 0.30936282873153687, + "learning_rate": 4.228326666666667e-05, + "loss": 2.2257254028320315, + "step": 115800 + }, + { + "epoch": 15.453333333333333, + "grad_norm": 0.30855420231819153, + "learning_rate": 4.22766e-05, + "loss": 2.2245237731933596, + "step": 115900 + }, + { + "epoch": 15.466666666666667, + "grad_norm": 0.3352759778499603, + "learning_rate": 4.226993333333333e-05, + "loss": 2.2239312744140625, + "step": 116000 + }, + { + "epoch": 15.48, + "grad_norm": 0.34826841950416565, + "learning_rate": 4.2263266666666666e-05, + "loss": 2.222242889404297, + "step": 116100 + }, + { + "epoch": 15.493333333333334, + "grad_norm": 0.30927276611328125, + "learning_rate": 4.2256600000000005e-05, + "loss": 2.22566650390625, + "step": 116200 + }, + { + "epoch": 15.506666666666666, + "grad_norm": 0.3213530480861664, + "learning_rate": 4.224993333333334e-05, + "loss": 2.2234091186523437, + "step": 116300 + }, + { + "epoch": 15.52, + "grad_norm": 0.3208419382572174, + "learning_rate": 4.224326666666667e-05, + "loss": 2.221222686767578, + "step": 116400 + }, + { + "epoch": 15.533333333333333, + "grad_norm": 0.3189323842525482, + "learning_rate": 4.22366e-05, + "loss": 2.22309814453125, + "step": 116500 + }, + { + "epoch": 15.546666666666667, + "grad_norm": 0.32015132904052734, + "learning_rate": 4.222993333333334e-05, + "loss": 2.224478302001953, + "step": 116600 + }, + { + "epoch": 15.56, + "grad_norm": 0.3235848844051361, + "learning_rate": 4.222333333333334e-05, + "loss": 2.22633544921875, + "step": 116700 + }, + { + "epoch": 15.573333333333334, + "grad_norm": 0.31360262632369995, + "learning_rate": 4.221666666666667e-05, + "loss": 2.223683624267578, + "step": 116800 + }, + { + "epoch": 15.586666666666666, + "grad_norm": 0.3163805603981018, + "learning_rate": 4.221e-05, + "loss": 2.226057891845703, + "step": 116900 + }, + { + "epoch": 15.6, + "grad_norm": 0.3102477192878723, + "learning_rate": 4.2203333333333336e-05, + "loss": 2.228474578857422, + "step": 117000 + }, + { + "epoch": 15.613333333333333, + "grad_norm": 0.30548936128616333, + "learning_rate": 4.219666666666667e-05, + "loss": 2.2281097412109374, + "step": 117100 + }, + { + "epoch": 15.626666666666667, + "grad_norm": 0.33137276768684387, + "learning_rate": 4.219e-05, + "loss": 2.227537841796875, + "step": 117200 + }, + { + "epoch": 15.64, + "grad_norm": 0.32980573177337646, + "learning_rate": 4.218333333333333e-05, + "loss": 2.2250877380371095, + "step": 117300 + }, + { + "epoch": 15.653333333333332, + "grad_norm": 0.34230107069015503, + "learning_rate": 4.217666666666667e-05, + "loss": 2.2286297607421877, + "step": 117400 + }, + { + "epoch": 15.666666666666666, + "grad_norm": 0.31690576672554016, + "learning_rate": 4.2170000000000005e-05, + "loss": 2.228667907714844, + "step": 117500 + }, + { + "epoch": 15.68, + "grad_norm": 0.32873931527137756, + "learning_rate": 4.216333333333334e-05, + "loss": 2.229040222167969, + "step": 117600 + }, + { + "epoch": 15.693333333333333, + "grad_norm": 0.31361329555511475, + "learning_rate": 4.215666666666667e-05, + "loss": 2.229720153808594, + "step": 117700 + }, + { + "epoch": 15.706666666666667, + "grad_norm": 0.30917590856552124, + "learning_rate": 4.215e-05, + "loss": 2.2290550231933595, + "step": 117800 + }, + { + "epoch": 15.72, + "grad_norm": 0.31262990832328796, + "learning_rate": 4.2143333333333334e-05, + "loss": 2.229103698730469, + "step": 117900 + }, + { + "epoch": 15.733333333333333, + "grad_norm": 0.32043468952178955, + "learning_rate": 4.2136666666666666e-05, + "loss": 2.2294845581054688, + "step": 118000 + }, + { + "epoch": 15.746666666666666, + "grad_norm": 0.31594914197921753, + "learning_rate": 4.2130000000000005e-05, + "loss": 2.2269740295410156, + "step": 118100 + }, + { + "epoch": 15.76, + "grad_norm": 0.3129127025604248, + "learning_rate": 4.212333333333334e-05, + "loss": 2.232552947998047, + "step": 118200 + }, + { + "epoch": 15.773333333333333, + "grad_norm": 0.3038434088230133, + "learning_rate": 4.211666666666667e-05, + "loss": 2.232527770996094, + "step": 118300 + }, + { + "epoch": 15.786666666666667, + "grad_norm": 0.3090043067932129, + "learning_rate": 4.211e-05, + "loss": 2.229136505126953, + "step": 118400 + }, + { + "epoch": 15.8, + "grad_norm": 0.32611995935440063, + "learning_rate": 4.2103333333333334e-05, + "loss": 2.2315130615234375, + "step": 118500 + }, + { + "epoch": 15.813333333333333, + "grad_norm": 0.31808626651763916, + "learning_rate": 4.2096666666666666e-05, + "loss": 2.2304783630371094, + "step": 118600 + }, + { + "epoch": 15.826666666666666, + "grad_norm": 0.3187323808670044, + "learning_rate": 4.2090066666666665e-05, + "loss": 2.2350709533691404, + "step": 118700 + }, + { + "epoch": 15.84, + "grad_norm": 0.3571641445159912, + "learning_rate": 4.20834e-05, + "loss": 2.231884002685547, + "step": 118800 + }, + { + "epoch": 15.853333333333333, + "grad_norm": 0.3414985239505768, + "learning_rate": 4.207673333333334e-05, + "loss": 2.2351057434082033, + "step": 118900 + }, + { + "epoch": 15.866666666666667, + "grad_norm": 0.3118877112865448, + "learning_rate": 4.207006666666667e-05, + "loss": 2.231129150390625, + "step": 119000 + }, + { + "epoch": 15.88, + "grad_norm": 0.319547176361084, + "learning_rate": 4.20634e-05, + "loss": 2.234002685546875, + "step": 119100 + }, + { + "epoch": 15.893333333333333, + "grad_norm": 0.3334439992904663, + "learning_rate": 4.205673333333334e-05, + "loss": 2.236300201416016, + "step": 119200 + }, + { + "epoch": 15.906666666666666, + "grad_norm": 0.31229543685913086, + "learning_rate": 4.205006666666667e-05, + "loss": 2.2334967041015625, + "step": 119300 + }, + { + "epoch": 15.92, + "grad_norm": 0.3132321834564209, + "learning_rate": 4.20434e-05, + "loss": 2.2348391723632814, + "step": 119400 + }, + { + "epoch": 15.933333333333334, + "grad_norm": 0.3149288594722748, + "learning_rate": 4.203673333333333e-05, + "loss": 2.2346974182128907, + "step": 119500 + }, + { + "epoch": 15.946666666666667, + "grad_norm": 0.31693968176841736, + "learning_rate": 4.203006666666667e-05, + "loss": 2.233512268066406, + "step": 119600 + }, + { + "epoch": 15.96, + "grad_norm": 0.3221350312232971, + "learning_rate": 4.20234e-05, + "loss": 2.2346560668945314, + "step": 119700 + }, + { + "epoch": 15.973333333333333, + "grad_norm": 0.3314872682094574, + "learning_rate": 4.2016733333333334e-05, + "loss": 2.2337542724609376, + "step": 119800 + }, + { + "epoch": 15.986666666666666, + "grad_norm": 0.2964302599430084, + "learning_rate": 4.201006666666667e-05, + "loss": 2.235452423095703, + "step": 119900 + }, + { + "epoch": 16.0, + "grad_norm": 0.30500471591949463, + "learning_rate": 4.2003400000000005e-05, + "loss": 2.2356527709960936, + "step": 120000 + }, + { + "epoch": 16.013333333333332, + "grad_norm": 0.33137601613998413, + "learning_rate": 4.199673333333334e-05, + "loss": 2.191378479003906, + "step": 120100 + }, + { + "epoch": 16.026666666666667, + "grad_norm": 0.3438156843185425, + "learning_rate": 4.199006666666667e-05, + "loss": 2.1892555236816404, + "step": 120200 + }, + { + "epoch": 16.04, + "grad_norm": 0.3476172983646393, + "learning_rate": 4.19834e-05, + "loss": 2.185308380126953, + "step": 120300 + }, + { + "epoch": 16.053333333333335, + "grad_norm": 0.3344581723213196, + "learning_rate": 4.1976733333333334e-05, + "loss": 2.1885577392578126, + "step": 120400 + }, + { + "epoch": 16.066666666666666, + "grad_norm": 0.3536999225616455, + "learning_rate": 4.1970066666666666e-05, + "loss": 2.190690002441406, + "step": 120500 + }, + { + "epoch": 16.08, + "grad_norm": 0.327150821685791, + "learning_rate": 4.1963400000000006e-05, + "loss": 2.192127532958984, + "step": 120600 + }, + { + "epoch": 16.093333333333334, + "grad_norm": 0.34501543641090393, + "learning_rate": 4.195673333333334e-05, + "loss": 2.1904525756835938, + "step": 120700 + }, + { + "epoch": 16.106666666666666, + "grad_norm": 0.33292821049690247, + "learning_rate": 4.195006666666667e-05, + "loss": 2.1916839599609377, + "step": 120800 + }, + { + "epoch": 16.12, + "grad_norm": 0.33096081018447876, + "learning_rate": 4.194346666666667e-05, + "loss": 2.1918682861328125, + "step": 120900 + }, + { + "epoch": 16.133333333333333, + "grad_norm": 0.342189759016037, + "learning_rate": 4.19368e-05, + "loss": 2.194641418457031, + "step": 121000 + }, + { + "epoch": 16.14666666666667, + "grad_norm": 0.3368053436279297, + "learning_rate": 4.193013333333334e-05, + "loss": 2.1912602233886718, + "step": 121100 + }, + { + "epoch": 16.16, + "grad_norm": 0.32896357774734497, + "learning_rate": 4.1923466666666666e-05, + "loss": 2.191945343017578, + "step": 121200 + }, + { + "epoch": 16.173333333333332, + "grad_norm": 0.3394027352333069, + "learning_rate": 4.19168e-05, + "loss": 2.1953201293945312, + "step": 121300 + }, + { + "epoch": 16.186666666666667, + "grad_norm": 0.3458661735057831, + "learning_rate": 4.191013333333334e-05, + "loss": 2.191509246826172, + "step": 121400 + }, + { + "epoch": 16.2, + "grad_norm": 0.3341262936592102, + "learning_rate": 4.190346666666667e-05, + "loss": 2.196238708496094, + "step": 121500 + }, + { + "epoch": 16.213333333333335, + "grad_norm": 0.3546558916568756, + "learning_rate": 4.18968e-05, + "loss": 2.197465515136719, + "step": 121600 + }, + { + "epoch": 16.226666666666667, + "grad_norm": 0.322582483291626, + "learning_rate": 4.1890133333333334e-05, + "loss": 2.19465576171875, + "step": 121700 + }, + { + "epoch": 16.24, + "grad_norm": 0.33463671803474426, + "learning_rate": 4.188346666666667e-05, + "loss": 2.1976629638671876, + "step": 121800 + }, + { + "epoch": 16.253333333333334, + "grad_norm": 0.3399517834186554, + "learning_rate": 4.18768e-05, + "loss": 2.1987896728515626, + "step": 121900 + }, + { + "epoch": 16.266666666666666, + "grad_norm": 0.3466789722442627, + "learning_rate": 4.187013333333333e-05, + "loss": 2.197012939453125, + "step": 122000 + }, + { + "epoch": 16.28, + "grad_norm": 0.3435020446777344, + "learning_rate": 4.186346666666667e-05, + "loss": 2.1984803771972654, + "step": 122100 + }, + { + "epoch": 16.293333333333333, + "grad_norm": 0.33346107602119446, + "learning_rate": 4.18568e-05, + "loss": 2.2026689147949217, + "step": 122200 + }, + { + "epoch": 16.306666666666665, + "grad_norm": 0.3218962550163269, + "learning_rate": 4.1850133333333334e-05, + "loss": 2.199356689453125, + "step": 122300 + }, + { + "epoch": 16.32, + "grad_norm": 0.35545775294303894, + "learning_rate": 4.184346666666667e-05, + "loss": 2.2024908447265625, + "step": 122400 + }, + { + "epoch": 16.333333333333332, + "grad_norm": 0.33396291732788086, + "learning_rate": 4.1836800000000006e-05, + "loss": 2.198677215576172, + "step": 122500 + }, + { + "epoch": 16.346666666666668, + "grad_norm": 0.3423805236816406, + "learning_rate": 4.183013333333334e-05, + "loss": 2.203605041503906, + "step": 122600 + }, + { + "epoch": 16.36, + "grad_norm": 0.3493040204048157, + "learning_rate": 4.1823466666666664e-05, + "loss": 2.2042369079589843, + "step": 122700 + }, + { + "epoch": 16.373333333333335, + "grad_norm": 0.32711881399154663, + "learning_rate": 4.18168e-05, + "loss": 2.20152099609375, + "step": 122800 + }, + { + "epoch": 16.386666666666667, + "grad_norm": 0.3408143222332001, + "learning_rate": 4.18102e-05, + "loss": 2.20054931640625, + "step": 122900 + }, + { + "epoch": 16.4, + "grad_norm": 0.3470470607280731, + "learning_rate": 4.1803533333333334e-05, + "loss": 2.203308410644531, + "step": 123000 + }, + { + "epoch": 16.413333333333334, + "grad_norm": 0.3393367826938629, + "learning_rate": 4.1796866666666666e-05, + "loss": 2.203702392578125, + "step": 123100 + }, + { + "epoch": 16.426666666666666, + "grad_norm": 0.3487272560596466, + "learning_rate": 4.17902e-05, + "loss": 2.207674713134766, + "step": 123200 + }, + { + "epoch": 16.44, + "grad_norm": 0.31673720479011536, + "learning_rate": 4.178353333333334e-05, + "loss": 2.2054902648925783, + "step": 123300 + }, + { + "epoch": 16.453333333333333, + "grad_norm": 0.34609508514404297, + "learning_rate": 4.177686666666667e-05, + "loss": 2.2037092590332032, + "step": 123400 + }, + { + "epoch": 16.466666666666665, + "grad_norm": 0.3488747477531433, + "learning_rate": 4.17702e-05, + "loss": 2.2059857177734377, + "step": 123500 + }, + { + "epoch": 16.48, + "grad_norm": 0.34992608428001404, + "learning_rate": 4.176353333333334e-05, + "loss": 2.205555877685547, + "step": 123600 + }, + { + "epoch": 16.493333333333332, + "grad_norm": 0.3459303677082062, + "learning_rate": 4.1756866666666667e-05, + "loss": 2.2075044250488283, + "step": 123700 + }, + { + "epoch": 16.506666666666668, + "grad_norm": 0.34837567806243896, + "learning_rate": 4.17502e-05, + "loss": 2.2081297302246092, + "step": 123800 + }, + { + "epoch": 16.52, + "grad_norm": 0.3326612710952759, + "learning_rate": 4.174353333333334e-05, + "loss": 2.2074159240722655, + "step": 123900 + }, + { + "epoch": 16.533333333333335, + "grad_norm": 0.343517929315567, + "learning_rate": 4.173686666666667e-05, + "loss": 2.205991058349609, + "step": 124000 + }, + { + "epoch": 16.546666666666667, + "grad_norm": 0.36404263973236084, + "learning_rate": 4.17302e-05, + "loss": 2.2090086364746093, + "step": 124100 + }, + { + "epoch": 16.56, + "grad_norm": 0.3330126404762268, + "learning_rate": 4.1723533333333335e-05, + "loss": 2.207509002685547, + "step": 124200 + }, + { + "epoch": 16.573333333333334, + "grad_norm": 0.3251371681690216, + "learning_rate": 4.1716866666666674e-05, + "loss": 2.2095204162597657, + "step": 124300 + }, + { + "epoch": 16.586666666666666, + "grad_norm": 0.3344780206680298, + "learning_rate": 4.17102e-05, + "loss": 2.2100448608398438, + "step": 124400 + }, + { + "epoch": 16.6, + "grad_norm": 0.3297218978404999, + "learning_rate": 4.170353333333333e-05, + "loss": 2.211772613525391, + "step": 124500 + }, + { + "epoch": 16.613333333333333, + "grad_norm": 0.32694414258003235, + "learning_rate": 4.169686666666667e-05, + "loss": 2.2118515014648437, + "step": 124600 + }, + { + "epoch": 16.626666666666665, + "grad_norm": 0.3583586812019348, + "learning_rate": 4.16902e-05, + "loss": 2.208268737792969, + "step": 124700 + }, + { + "epoch": 16.64, + "grad_norm": 0.3415539562702179, + "learning_rate": 4.1683533333333335e-05, + "loss": 2.210078125, + "step": 124800 + }, + { + "epoch": 16.653333333333332, + "grad_norm": 0.3332410752773285, + "learning_rate": 4.167686666666667e-05, + "loss": 2.209375915527344, + "step": 124900 + }, + { + "epoch": 16.666666666666668, + "grad_norm": 0.3438263237476349, + "learning_rate": 4.1670200000000006e-05, + "loss": 2.213215789794922, + "step": 125000 + }, + { + "epoch": 16.68, + "grad_norm": 0.33631184697151184, + "learning_rate": 4.1663600000000005e-05, + "loss": 2.2115354919433594, + "step": 125100 + }, + { + "epoch": 16.693333333333335, + "grad_norm": 0.33590415120124817, + "learning_rate": 4.165693333333334e-05, + "loss": 2.2166558837890626, + "step": 125200 + }, + { + "epoch": 16.706666666666667, + "grad_norm": 0.33931294083595276, + "learning_rate": 4.165026666666667e-05, + "loss": 2.2135350036621095, + "step": 125300 + }, + { + "epoch": 16.72, + "grad_norm": 0.3370099365711212, + "learning_rate": 4.16436e-05, + "loss": 2.2108302307128906, + "step": 125400 + }, + { + "epoch": 16.733333333333334, + "grad_norm": 0.3390389680862427, + "learning_rate": 4.1636933333333335e-05, + "loss": 2.2139320373535156, + "step": 125500 + }, + { + "epoch": 16.746666666666666, + "grad_norm": 0.33029329776763916, + "learning_rate": 4.163026666666667e-05, + "loss": 2.2104266357421873, + "step": 125600 + }, + { + "epoch": 16.76, + "grad_norm": 0.3493773937225342, + "learning_rate": 4.16236e-05, + "loss": 2.2143878173828124, + "step": 125700 + }, + { + "epoch": 16.773333333333333, + "grad_norm": 0.3342851400375366, + "learning_rate": 4.161693333333334e-05, + "loss": 2.2172373962402343, + "step": 125800 + }, + { + "epoch": 16.786666666666665, + "grad_norm": 0.33905649185180664, + "learning_rate": 4.161026666666667e-05, + "loss": 2.2138526916503904, + "step": 125900 + }, + { + "epoch": 16.8, + "grad_norm": 0.33980846405029297, + "learning_rate": 4.16036e-05, + "loss": 2.2161383056640624, + "step": 126000 + }, + { + "epoch": 16.813333333333333, + "grad_norm": 0.3446345627307892, + "learning_rate": 4.1596933333333335e-05, + "loss": 2.214365234375, + "step": 126100 + }, + { + "epoch": 16.826666666666668, + "grad_norm": 0.32393285632133484, + "learning_rate": 4.159026666666667e-05, + "loss": 2.2161341857910157, + "step": 126200 + }, + { + "epoch": 16.84, + "grad_norm": 0.32899361848831177, + "learning_rate": 4.15836e-05, + "loss": 2.2143894958496095, + "step": 126300 + }, + { + "epoch": 16.85333333333333, + "grad_norm": 0.33458665013313293, + "learning_rate": 4.157693333333333e-05, + "loss": 2.2169989013671874, + "step": 126400 + }, + { + "epoch": 16.866666666666667, + "grad_norm": 0.34240177273750305, + "learning_rate": 4.157026666666667e-05, + "loss": 2.216192169189453, + "step": 126500 + }, + { + "epoch": 16.88, + "grad_norm": 0.33219918608665466, + "learning_rate": 4.15636e-05, + "loss": 2.216274871826172, + "step": 126600 + }, + { + "epoch": 16.893333333333334, + "grad_norm": 0.3476578891277313, + "learning_rate": 4.1556933333333335e-05, + "loss": 2.2149917602539064, + "step": 126700 + }, + { + "epoch": 16.906666666666666, + "grad_norm": 0.3385222852230072, + "learning_rate": 4.155026666666667e-05, + "loss": 2.21719482421875, + "step": 126800 + }, + { + "epoch": 16.92, + "grad_norm": 0.3350334167480469, + "learning_rate": 4.1543600000000007e-05, + "loss": 2.2180024719238283, + "step": 126900 + }, + { + "epoch": 16.933333333333334, + "grad_norm": 0.3438946604728699, + "learning_rate": 4.153693333333333e-05, + "loss": 2.217221221923828, + "step": 127000 + }, + { + "epoch": 16.946666666666665, + "grad_norm": 0.35046643018722534, + "learning_rate": 4.153033333333334e-05, + "loss": 2.220390625, + "step": 127100 + }, + { + "epoch": 16.96, + "grad_norm": 0.34361323714256287, + "learning_rate": 4.1523666666666663e-05, + "loss": 2.216808013916016, + "step": 127200 + }, + { + "epoch": 16.973333333333333, + "grad_norm": 0.32188111543655396, + "learning_rate": 4.1517e-05, + "loss": 2.2157418823242185, + "step": 127300 + }, + { + "epoch": 16.986666666666668, + "grad_norm": 0.32064762711524963, + "learning_rate": 4.1510333333333335e-05, + "loss": 2.2176025390625, + "step": 127400 + }, + { + "epoch": 17.0, + "grad_norm": 0.3368901014328003, + "learning_rate": 4.150366666666667e-05, + "loss": 2.219560241699219, + "step": 127500 + }, + { + "epoch": 17.013333333333332, + "grad_norm": 0.34540697932243347, + "learning_rate": 4.1497e-05, + "loss": 2.1651565551757814, + "step": 127600 + }, + { + "epoch": 17.026666666666667, + "grad_norm": 0.3554867208003998, + "learning_rate": 4.149033333333334e-05, + "loss": 2.168620910644531, + "step": 127700 + }, + { + "epoch": 17.04, + "grad_norm": 0.35656651854515076, + "learning_rate": 4.148366666666667e-05, + "loss": 2.1688262939453127, + "step": 127800 + }, + { + "epoch": 17.053333333333335, + "grad_norm": 0.434224396944046, + "learning_rate": 4.1477e-05, + "loss": 2.1681300354003907, + "step": 127900 + }, + { + "epoch": 17.066666666666666, + "grad_norm": 0.3526768386363983, + "learning_rate": 4.1470333333333335e-05, + "loss": 2.1689207458496096, + "step": 128000 + }, + { + "epoch": 17.08, + "grad_norm": 0.35668861865997314, + "learning_rate": 4.146366666666667e-05, + "loss": 2.168590240478516, + "step": 128100 + }, + { + "epoch": 17.093333333333334, + "grad_norm": 0.368394672870636, + "learning_rate": 4.1457e-05, + "loss": 2.173952941894531, + "step": 128200 + }, + { + "epoch": 17.106666666666666, + "grad_norm": 0.3651200532913208, + "learning_rate": 4.145033333333334e-05, + "loss": 2.172222137451172, + "step": 128300 + }, + { + "epoch": 17.12, + "grad_norm": 0.36325615644454956, + "learning_rate": 4.144366666666667e-05, + "loss": 2.16880859375, + "step": 128400 + }, + { + "epoch": 17.133333333333333, + "grad_norm": 0.3802001476287842, + "learning_rate": 4.1437e-05, + "loss": 2.1748728942871094, + "step": 128500 + }, + { + "epoch": 17.14666666666667, + "grad_norm": 0.3565540611743927, + "learning_rate": 4.1430333333333336e-05, + "loss": 2.1752804565429686, + "step": 128600 + }, + { + "epoch": 17.16, + "grad_norm": 0.3572203814983368, + "learning_rate": 4.142366666666667e-05, + "loss": 2.1743450927734376, + "step": 128700 + }, + { + "epoch": 17.173333333333332, + "grad_norm": 0.350844144821167, + "learning_rate": 4.1417e-05, + "loss": 2.172934722900391, + "step": 128800 + }, + { + "epoch": 17.186666666666667, + "grad_norm": 0.36539897322654724, + "learning_rate": 4.141033333333333e-05, + "loss": 2.176778564453125, + "step": 128900 + }, + { + "epoch": 17.2, + "grad_norm": 0.35811370611190796, + "learning_rate": 4.140366666666667e-05, + "loss": 2.174437713623047, + "step": 129000 + }, + { + "epoch": 17.213333333333335, + "grad_norm": 0.3664299547672272, + "learning_rate": 4.139706666666667e-05, + "loss": 2.1781724548339843, + "step": 129100 + }, + { + "epoch": 17.226666666666667, + "grad_norm": 0.3659532070159912, + "learning_rate": 4.13904e-05, + "loss": 2.176842041015625, + "step": 129200 + }, + { + "epoch": 17.24, + "grad_norm": 0.36825552582740784, + "learning_rate": 4.1383733333333335e-05, + "loss": 2.179559631347656, + "step": 129300 + }, + { + "epoch": 17.253333333333334, + "grad_norm": 0.36417168378829956, + "learning_rate": 4.137706666666667e-05, + "loss": 2.182062072753906, + "step": 129400 + }, + { + "epoch": 17.266666666666666, + "grad_norm": 0.3718934655189514, + "learning_rate": 4.1370400000000006e-05, + "loss": 2.180594177246094, + "step": 129500 + }, + { + "epoch": 17.28, + "grad_norm": 0.3516819477081299, + "learning_rate": 4.136373333333334e-05, + "loss": 2.180480499267578, + "step": 129600 + }, + { + "epoch": 17.293333333333333, + "grad_norm": 0.3652108609676361, + "learning_rate": 4.1357066666666664e-05, + "loss": 2.182070770263672, + "step": 129700 + }, + { + "epoch": 17.306666666666665, + "grad_norm": 0.3595081865787506, + "learning_rate": 4.13504e-05, + "loss": 2.1821852111816407, + "step": 129800 + }, + { + "epoch": 17.32, + "grad_norm": 0.3393441140651703, + "learning_rate": 4.1343733333333335e-05, + "loss": 2.178795166015625, + "step": 129900 + }, + { + "epoch": 17.333333333333332, + "grad_norm": 0.36966830492019653, + "learning_rate": 4.133706666666667e-05, + "loss": 2.1857032775878906, + "step": 130000 + }, + { + "epoch": 17.346666666666668, + "grad_norm": 0.3546712100505829, + "learning_rate": 4.13304e-05, + "loss": 2.180518798828125, + "step": 130100 + }, + { + "epoch": 17.36, + "grad_norm": 0.37151312828063965, + "learning_rate": 4.132373333333334e-05, + "loss": 2.1837088012695314, + "step": 130200 + }, + { + "epoch": 17.373333333333335, + "grad_norm": 0.34406447410583496, + "learning_rate": 4.131706666666667e-05, + "loss": 2.1844528198242186, + "step": 130300 + }, + { + "epoch": 17.386666666666667, + "grad_norm": 0.44284486770629883, + "learning_rate": 4.1310400000000003e-05, + "loss": 2.1846923828125, + "step": 130400 + }, + { + "epoch": 17.4, + "grad_norm": 0.38338637351989746, + "learning_rate": 4.1303733333333336e-05, + "loss": 2.1837538146972655, + "step": 130500 + }, + { + "epoch": 17.413333333333334, + "grad_norm": 0.3616061210632324, + "learning_rate": 4.129706666666667e-05, + "loss": 2.1846038818359377, + "step": 130600 + }, + { + "epoch": 17.426666666666666, + "grad_norm": 0.35662466287612915, + "learning_rate": 4.12904e-05, + "loss": 2.186310272216797, + "step": 130700 + }, + { + "epoch": 17.44, + "grad_norm": 0.34366509318351746, + "learning_rate": 4.128373333333333e-05, + "loss": 2.1828770446777344, + "step": 130800 + }, + { + "epoch": 17.453333333333333, + "grad_norm": 0.35822221636772156, + "learning_rate": 4.127706666666667e-05, + "loss": 2.1853370666503906, + "step": 130900 + }, + { + "epoch": 17.466666666666665, + "grad_norm": 0.382191002368927, + "learning_rate": 4.1270400000000004e-05, + "loss": 2.184327392578125, + "step": 131000 + }, + { + "epoch": 17.48, + "grad_norm": 0.3557610511779785, + "learning_rate": 4.12638e-05, + "loss": 2.188468170166016, + "step": 131100 + }, + { + "epoch": 17.493333333333332, + "grad_norm": 0.3445620536804199, + "learning_rate": 4.1257133333333335e-05, + "loss": 2.1877789306640625, + "step": 131200 + }, + { + "epoch": 17.506666666666668, + "grad_norm": 0.356189489364624, + "learning_rate": 4.125046666666667e-05, + "loss": 2.186894989013672, + "step": 131300 + }, + { + "epoch": 17.52, + "grad_norm": 0.37347978353500366, + "learning_rate": 4.1243800000000007e-05, + "loss": 2.1881455993652343, + "step": 131400 + }, + { + "epoch": 17.533333333333335, + "grad_norm": 0.4915677309036255, + "learning_rate": 4.123713333333333e-05, + "loss": 2.188135528564453, + "step": 131500 + }, + { + "epoch": 17.546666666666667, + "grad_norm": 0.33609944581985474, + "learning_rate": 4.1230466666666664e-05, + "loss": 2.1907609558105468, + "step": 131600 + }, + { + "epoch": 17.56, + "grad_norm": 0.36254754662513733, + "learning_rate": 4.12238e-05, + "loss": 2.1870379638671875, + "step": 131700 + }, + { + "epoch": 17.573333333333334, + "grad_norm": 0.3741578459739685, + "learning_rate": 4.1217133333333336e-05, + "loss": 2.1931048583984376, + "step": 131800 + }, + { + "epoch": 17.586666666666666, + "grad_norm": 0.3609215319156647, + "learning_rate": 4.121046666666667e-05, + "loss": 2.19150146484375, + "step": 131900 + }, + { + "epoch": 17.6, + "grad_norm": 0.35999777913093567, + "learning_rate": 4.120380000000001e-05, + "loss": 2.191175537109375, + "step": 132000 + }, + { + "epoch": 17.613333333333333, + "grad_norm": 0.3569694459438324, + "learning_rate": 4.119713333333334e-05, + "loss": 2.192285614013672, + "step": 132100 + }, + { + "epoch": 17.626666666666665, + "grad_norm": 0.3714178502559662, + "learning_rate": 4.1190466666666665e-05, + "loss": 2.192773895263672, + "step": 132200 + }, + { + "epoch": 17.64, + "grad_norm": 0.3539521396160126, + "learning_rate": 4.11838e-05, + "loss": 2.190313415527344, + "step": 132300 + }, + { + "epoch": 17.653333333333332, + "grad_norm": 0.358467698097229, + "learning_rate": 4.1177133333333336e-05, + "loss": 2.195655517578125, + "step": 132400 + }, + { + "epoch": 17.666666666666668, + "grad_norm": 0.3586037755012512, + "learning_rate": 4.117046666666667e-05, + "loss": 2.192008819580078, + "step": 132500 + }, + { + "epoch": 17.68, + "grad_norm": 0.3595978915691376, + "learning_rate": 4.11638e-05, + "loss": 2.1931185913085938, + "step": 132600 + }, + { + "epoch": 17.693333333333335, + "grad_norm": 0.35596606135368347, + "learning_rate": 4.115713333333334e-05, + "loss": 2.1931863403320313, + "step": 132700 + }, + { + "epoch": 17.706666666666667, + "grad_norm": 0.349572092294693, + "learning_rate": 4.115046666666667e-05, + "loss": 2.1953758239746093, + "step": 132800 + }, + { + "epoch": 17.72, + "grad_norm": 0.3638124167919159, + "learning_rate": 4.1143800000000004e-05, + "loss": 2.197004547119141, + "step": 132900 + }, + { + "epoch": 17.733333333333334, + "grad_norm": 0.3515288531780243, + "learning_rate": 4.1137133333333336e-05, + "loss": 2.1984828186035155, + "step": 133000 + }, + { + "epoch": 17.746666666666666, + "grad_norm": 0.37091967463493347, + "learning_rate": 4.1130533333333335e-05, + "loss": 2.1952162170410157, + "step": 133100 + }, + { + "epoch": 17.76, + "grad_norm": 0.3641296923160553, + "learning_rate": 4.112386666666667e-05, + "loss": 2.1980247497558594, + "step": 133200 + }, + { + "epoch": 17.773333333333333, + "grad_norm": 0.3431222438812256, + "learning_rate": 4.11172e-05, + "loss": 2.196508483886719, + "step": 133300 + }, + { + "epoch": 17.786666666666665, + "grad_norm": 0.35797178745269775, + "learning_rate": 4.111053333333333e-05, + "loss": 2.199690704345703, + "step": 133400 + }, + { + "epoch": 17.8, + "grad_norm": 0.3545133173465729, + "learning_rate": 4.110386666666667e-05, + "loss": 2.1973370361328124, + "step": 133500 + }, + { + "epoch": 17.813333333333333, + "grad_norm": 0.36000749468803406, + "learning_rate": 4.1097200000000004e-05, + "loss": 2.2000468444824217, + "step": 133600 + }, + { + "epoch": 17.826666666666668, + "grad_norm": 0.3570917546749115, + "learning_rate": 4.1090533333333336e-05, + "loss": 2.199578857421875, + "step": 133700 + }, + { + "epoch": 17.84, + "grad_norm": 0.36283078789711, + "learning_rate": 4.108386666666667e-05, + "loss": 2.199168853759766, + "step": 133800 + }, + { + "epoch": 17.85333333333333, + "grad_norm": 0.37170839309692383, + "learning_rate": 4.107720000000001e-05, + "loss": 2.199163818359375, + "step": 133900 + }, + { + "epoch": 17.866666666666667, + "grad_norm": 0.35398539900779724, + "learning_rate": 4.107053333333333e-05, + "loss": 2.2005375671386718, + "step": 134000 + }, + { + "epoch": 17.88, + "grad_norm": 0.3618471622467041, + "learning_rate": 4.1063866666666665e-05, + "loss": 2.193340606689453, + "step": 134100 + }, + { + "epoch": 17.893333333333334, + "grad_norm": 0.36715346574783325, + "learning_rate": 4.1057200000000004e-05, + "loss": 2.201223602294922, + "step": 134200 + }, + { + "epoch": 17.906666666666666, + "grad_norm": 0.35410168766975403, + "learning_rate": 4.1050533333333336e-05, + "loss": 2.1994700622558594, + "step": 134300 + }, + { + "epoch": 17.92, + "grad_norm": 0.34702470898628235, + "learning_rate": 4.104386666666667e-05, + "loss": 2.2010435485839843, + "step": 134400 + }, + { + "epoch": 17.933333333333334, + "grad_norm": 0.33663272857666016, + "learning_rate": 4.10372e-05, + "loss": 2.2017396545410155, + "step": 134500 + }, + { + "epoch": 17.946666666666665, + "grad_norm": 0.36605820059776306, + "learning_rate": 4.103053333333334e-05, + "loss": 2.2016064453125, + "step": 134600 + }, + { + "epoch": 17.96, + "grad_norm": 0.3492322564125061, + "learning_rate": 4.1023866666666665e-05, + "loss": 2.202108154296875, + "step": 134700 + }, + { + "epoch": 17.973333333333333, + "grad_norm": 0.36869311332702637, + "learning_rate": 4.10172e-05, + "loss": 2.2017369079589844, + "step": 134800 + }, + { + "epoch": 17.986666666666668, + "grad_norm": 0.36540335416793823, + "learning_rate": 4.1010533333333337e-05, + "loss": 2.200558624267578, + "step": 134900 + }, + { + "epoch": 18.0, + "grad_norm": 0.36333802342414856, + "learning_rate": 4.100386666666667e-05, + "loss": 2.203197174072266, + "step": 135000 + }, + { + "epoch": 18.013333333333332, + "grad_norm": 0.3684398829936981, + "learning_rate": 4.09972e-05, + "loss": 2.144236297607422, + "step": 135100 + }, + { + "epoch": 18.026666666666667, + "grad_norm": 0.3864319622516632, + "learning_rate": 4.09906e-05, + "loss": 2.147691650390625, + "step": 135200 + }, + { + "epoch": 18.04, + "grad_norm": 0.39713576436042786, + "learning_rate": 4.098393333333333e-05, + "loss": 2.1479608154296876, + "step": 135300 + }, + { + "epoch": 18.053333333333335, + "grad_norm": 0.38535943627357483, + "learning_rate": 4.097726666666667e-05, + "loss": 2.149579620361328, + "step": 135400 + }, + { + "epoch": 18.066666666666666, + "grad_norm": 0.37120920419692993, + "learning_rate": 4.0970600000000004e-05, + "loss": 2.1504815673828124, + "step": 135500 + }, + { + "epoch": 18.08, + "grad_norm": 0.3953970968723297, + "learning_rate": 4.0963933333333336e-05, + "loss": 2.1479664611816407, + "step": 135600 + }, + { + "epoch": 18.093333333333334, + "grad_norm": 0.3948633372783661, + "learning_rate": 4.095726666666667e-05, + "loss": 2.1526097106933593, + "step": 135700 + }, + { + "epoch": 18.106666666666666, + "grad_norm": 0.38562309741973877, + "learning_rate": 4.09506e-05, + "loss": 2.147718963623047, + "step": 135800 + }, + { + "epoch": 18.12, + "grad_norm": 0.38705727458000183, + "learning_rate": 4.094393333333333e-05, + "loss": 2.1560462951660155, + "step": 135900 + }, + { + "epoch": 18.133333333333333, + "grad_norm": 0.3904648721218109, + "learning_rate": 4.0937266666666665e-05, + "loss": 2.148473815917969, + "step": 136000 + }, + { + "epoch": 18.14666666666667, + "grad_norm": 0.3789866268634796, + "learning_rate": 4.0930600000000004e-05, + "loss": 2.1551133728027345, + "step": 136100 + }, + { + "epoch": 18.16, + "grad_norm": 0.3716281056404114, + "learning_rate": 4.0923933333333336e-05, + "loss": 2.1517713928222655, + "step": 136200 + }, + { + "epoch": 18.173333333333332, + "grad_norm": 0.4038568437099457, + "learning_rate": 4.091726666666667e-05, + "loss": 2.154055633544922, + "step": 136300 + }, + { + "epoch": 18.186666666666667, + "grad_norm": 0.3836662173271179, + "learning_rate": 4.091060000000001e-05, + "loss": 2.1555635070800783, + "step": 136400 + }, + { + "epoch": 18.2, + "grad_norm": 0.4338989853858948, + "learning_rate": 4.090393333333333e-05, + "loss": 2.1564508056640626, + "step": 136500 + }, + { + "epoch": 18.213333333333335, + "grad_norm": 0.3803965747356415, + "learning_rate": 4.0897266666666665e-05, + "loss": 2.15535888671875, + "step": 136600 + }, + { + "epoch": 18.226666666666667, + "grad_norm": 0.38790804147720337, + "learning_rate": 4.08906e-05, + "loss": 2.155977935791016, + "step": 136700 + }, + { + "epoch": 18.24, + "grad_norm": 0.4054514169692993, + "learning_rate": 4.088393333333334e-05, + "loss": 2.1601606750488282, + "step": 136800 + }, + { + "epoch": 18.253333333333334, + "grad_norm": 0.39995694160461426, + "learning_rate": 4.087726666666667e-05, + "loss": 2.1544822692871093, + "step": 136900 + }, + { + "epoch": 18.266666666666666, + "grad_norm": 0.399427592754364, + "learning_rate": 4.08706e-05, + "loss": 2.157484436035156, + "step": 137000 + }, + { + "epoch": 18.28, + "grad_norm": 0.380747526884079, + "learning_rate": 4.086393333333334e-05, + "loss": 2.1604388427734373, + "step": 137100 + }, + { + "epoch": 18.293333333333333, + "grad_norm": 0.3849477767944336, + "learning_rate": 4.085733333333334e-05, + "loss": 2.1585659790039062, + "step": 137200 + }, + { + "epoch": 18.306666666666665, + "grad_norm": 0.3770460784435272, + "learning_rate": 4.085066666666667e-05, + "loss": 2.1618302917480468, + "step": 137300 + }, + { + "epoch": 18.32, + "grad_norm": 0.4081668257713318, + "learning_rate": 4.0844000000000004e-05, + "loss": 2.1609623718261717, + "step": 137400 + }, + { + "epoch": 18.333333333333332, + "grad_norm": 0.37667742371559143, + "learning_rate": 4.0837333333333336e-05, + "loss": 2.162608642578125, + "step": 137500 + }, + { + "epoch": 18.346666666666668, + "grad_norm": 0.3946523070335388, + "learning_rate": 4.083066666666667e-05, + "loss": 2.1644091796875, + "step": 137600 + }, + { + "epoch": 18.36, + "grad_norm": 0.38843250274658203, + "learning_rate": 4.0824e-05, + "loss": 2.161121063232422, + "step": 137700 + }, + { + "epoch": 18.373333333333335, + "grad_norm": 0.4010300040245056, + "learning_rate": 4.081733333333333e-05, + "loss": 2.1667359924316405, + "step": 137800 + }, + { + "epoch": 18.386666666666667, + "grad_norm": 0.3785018026828766, + "learning_rate": 4.081066666666667e-05, + "loss": 2.167360992431641, + "step": 137900 + }, + { + "epoch": 18.4, + "grad_norm": 0.39816367626190186, + "learning_rate": 4.0804000000000004e-05, + "loss": 2.164031677246094, + "step": 138000 + }, + { + "epoch": 18.413333333333334, + "grad_norm": 0.38204148411750793, + "learning_rate": 4.079733333333334e-05, + "loss": 2.166887054443359, + "step": 138100 + }, + { + "epoch": 18.426666666666666, + "grad_norm": 0.36739620566368103, + "learning_rate": 4.079066666666667e-05, + "loss": 2.1648483276367188, + "step": 138200 + }, + { + "epoch": 18.44, + "grad_norm": 0.40818193554878235, + "learning_rate": 4.0784e-05, + "loss": 2.167153778076172, + "step": 138300 + }, + { + "epoch": 18.453333333333333, + "grad_norm": 0.3707272410392761, + "learning_rate": 4.0777333333333333e-05, + "loss": 2.1704667663574218, + "step": 138400 + }, + { + "epoch": 18.466666666666665, + "grad_norm": 0.3825608491897583, + "learning_rate": 4.0770666666666666e-05, + "loss": 2.1677491760253904, + "step": 138500 + }, + { + "epoch": 18.48, + "grad_norm": 0.3704966902732849, + "learning_rate": 4.0764000000000005e-05, + "loss": 2.168622589111328, + "step": 138600 + }, + { + "epoch": 18.493333333333332, + "grad_norm": 0.38297003507614136, + "learning_rate": 4.075733333333334e-05, + "loss": 2.1695802307128904, + "step": 138700 + }, + { + "epoch": 18.506666666666668, + "grad_norm": 0.369875431060791, + "learning_rate": 4.075066666666667e-05, + "loss": 2.1684419250488283, + "step": 138800 + }, + { + "epoch": 18.52, + "grad_norm": 0.38239753246307373, + "learning_rate": 4.0744e-05, + "loss": 2.1713496398925782, + "step": 138900 + }, + { + "epoch": 18.533333333333335, + "grad_norm": 0.37456804513931274, + "learning_rate": 4.0737333333333334e-05, + "loss": 2.171775360107422, + "step": 139000 + }, + { + "epoch": 18.546666666666667, + "grad_norm": 0.36324089765548706, + "learning_rate": 4.0730666666666666e-05, + "loss": 2.168131103515625, + "step": 139100 + }, + { + "epoch": 18.56, + "grad_norm": 0.3825380206108093, + "learning_rate": 4.0724066666666665e-05, + "loss": 2.1711878967285156, + "step": 139200 + }, + { + "epoch": 18.573333333333334, + "grad_norm": 0.38280192017555237, + "learning_rate": 4.07174e-05, + "loss": 2.1701324462890623, + "step": 139300 + }, + { + "epoch": 18.586666666666666, + "grad_norm": 0.3777543902397156, + "learning_rate": 4.0710733333333336e-05, + "loss": 2.1692018127441406, + "step": 139400 + }, + { + "epoch": 18.6, + "grad_norm": 0.387617290019989, + "learning_rate": 4.070406666666667e-05, + "loss": 2.1738621520996095, + "step": 139500 + }, + { + "epoch": 18.613333333333333, + "grad_norm": 0.38992756605148315, + "learning_rate": 4.06974e-05, + "loss": 2.173524932861328, + "step": 139600 + }, + { + "epoch": 18.626666666666665, + "grad_norm": 0.382716566324234, + "learning_rate": 4.069073333333333e-05, + "loss": 2.1713710021972656, + "step": 139700 + }, + { + "epoch": 18.64, + "grad_norm": 0.36141642928123474, + "learning_rate": 4.068406666666667e-05, + "loss": 2.1703253173828125, + "step": 139800 + }, + { + "epoch": 18.653333333333332, + "grad_norm": 0.37553125619888306, + "learning_rate": 4.0677400000000005e-05, + "loss": 2.1746434020996093, + "step": 139900 + }, + { + "epoch": 18.666666666666668, + "grad_norm": 0.40358760952949524, + "learning_rate": 4.067073333333333e-05, + "loss": 2.172953643798828, + "step": 140000 + }, + { + "epoch": 18.68, + "grad_norm": 0.35741183161735535, + "learning_rate": 4.066406666666667e-05, + "loss": 2.1734686279296875, + "step": 140100 + }, + { + "epoch": 18.693333333333335, + "grad_norm": 0.3769322633743286, + "learning_rate": 4.06574e-05, + "loss": 2.1750888061523437, + "step": 140200 + }, + { + "epoch": 18.706666666666667, + "grad_norm": 0.3802931606769562, + "learning_rate": 4.0650733333333334e-05, + "loss": 2.1736627197265626, + "step": 140300 + }, + { + "epoch": 18.72, + "grad_norm": 0.3812218904495239, + "learning_rate": 4.0644066666666666e-05, + "loss": 2.176966552734375, + "step": 140400 + }, + { + "epoch": 18.733333333333334, + "grad_norm": 0.38916149735450745, + "learning_rate": 4.0637400000000005e-05, + "loss": 2.172593231201172, + "step": 140500 + }, + { + "epoch": 18.746666666666666, + "grad_norm": 0.38093966245651245, + "learning_rate": 4.063073333333334e-05, + "loss": 2.1759133911132813, + "step": 140600 + }, + { + "epoch": 18.76, + "grad_norm": 0.4063868224620819, + "learning_rate": 4.062406666666667e-05, + "loss": 2.1767710876464843, + "step": 140700 + }, + { + "epoch": 18.773333333333333, + "grad_norm": 0.37494465708732605, + "learning_rate": 4.06174e-05, + "loss": 2.1748062133789063, + "step": 140800 + }, + { + "epoch": 18.786666666666665, + "grad_norm": 0.38622939586639404, + "learning_rate": 4.0610733333333334e-05, + "loss": 2.17905029296875, + "step": 140900 + }, + { + "epoch": 18.8, + "grad_norm": 0.41010287404060364, + "learning_rate": 4.0604066666666666e-05, + "loss": 2.1740985107421875, + "step": 141000 + }, + { + "epoch": 18.813333333333333, + "grad_norm": 0.38058510422706604, + "learning_rate": 4.0597400000000005e-05, + "loss": 2.1741783142089846, + "step": 141100 + }, + { + "epoch": 18.826666666666668, + "grad_norm": 0.36692535877227783, + "learning_rate": 4.05908e-05, + "loss": 2.1796223449707033, + "step": 141200 + }, + { + "epoch": 18.84, + "grad_norm": 0.3798985779285431, + "learning_rate": 4.058413333333334e-05, + "loss": 2.1784815979003906, + "step": 141300 + }, + { + "epoch": 18.85333333333333, + "grad_norm": 0.3722667098045349, + "learning_rate": 4.057746666666667e-05, + "loss": 2.1829788208007814, + "step": 141400 + }, + { + "epoch": 18.866666666666667, + "grad_norm": 0.39556455612182617, + "learning_rate": 4.05708e-05, + "loss": 2.179154815673828, + "step": 141500 + }, + { + "epoch": 18.88, + "grad_norm": 0.3847595453262329, + "learning_rate": 4.056413333333334e-05, + "loss": 2.1796925354003904, + "step": 141600 + }, + { + "epoch": 18.893333333333334, + "grad_norm": 0.37797436118125916, + "learning_rate": 4.055746666666667e-05, + "loss": 2.1813531494140626, + "step": 141700 + }, + { + "epoch": 18.906666666666666, + "grad_norm": 0.3832587003707886, + "learning_rate": 4.05508e-05, + "loss": 2.179685516357422, + "step": 141800 + }, + { + "epoch": 18.92, + "grad_norm": 0.3763803541660309, + "learning_rate": 4.054413333333334e-05, + "loss": 2.1807159423828124, + "step": 141900 + }, + { + "epoch": 18.933333333333334, + "grad_norm": 0.39702609181404114, + "learning_rate": 4.053746666666667e-05, + "loss": 2.18234619140625, + "step": 142000 + }, + { + "epoch": 18.946666666666665, + "grad_norm": 0.3635548949241638, + "learning_rate": 4.05308e-05, + "loss": 2.1816770935058596, + "step": 142100 + }, + { + "epoch": 18.96, + "grad_norm": 0.3698504567146301, + "learning_rate": 4.0524133333333334e-05, + "loss": 2.1805545043945314, + "step": 142200 + }, + { + "epoch": 18.973333333333333, + "grad_norm": 0.38847336173057556, + "learning_rate": 4.051746666666667e-05, + "loss": 2.18578125, + "step": 142300 + }, + { + "epoch": 18.986666666666668, + "grad_norm": 0.380186527967453, + "learning_rate": 4.0510800000000005e-05, + "loss": 2.1846510314941407, + "step": 142400 + }, + { + "epoch": 19.0, + "grad_norm": 0.37036606669425964, + "learning_rate": 4.050413333333333e-05, + "loss": 2.184918212890625, + "step": 142500 + }, + { + "epoch": 19.013333333333332, + "grad_norm": 0.4196798503398895, + "learning_rate": 4.049746666666667e-05, + "loss": 2.122628021240234, + "step": 142600 + }, + { + "epoch": 19.026666666666667, + "grad_norm": 0.4127017557621002, + "learning_rate": 4.04908e-05, + "loss": 2.1235401916503904, + "step": 142700 + }, + { + "epoch": 19.04, + "grad_norm": 0.4180348813533783, + "learning_rate": 4.0484133333333334e-05, + "loss": 2.123696746826172, + "step": 142800 + }, + { + "epoch": 19.053333333333335, + "grad_norm": 0.40591850876808167, + "learning_rate": 4.0477466666666667e-05, + "loss": 2.12607177734375, + "step": 142900 + }, + { + "epoch": 19.066666666666666, + "grad_norm": 0.4013535678386688, + "learning_rate": 4.0470800000000006e-05, + "loss": 2.1254452514648436, + "step": 143000 + }, + { + "epoch": 19.08, + "grad_norm": 0.3990405797958374, + "learning_rate": 4.046413333333334e-05, + "loss": 2.1275210571289063, + "step": 143100 + }, + { + "epoch": 19.093333333333334, + "grad_norm": 0.3961292803287506, + "learning_rate": 4.045753333333334e-05, + "loss": 2.1298793029785155, + "step": 143200 + }, + { + "epoch": 19.106666666666666, + "grad_norm": 0.38968828320503235, + "learning_rate": 4.045086666666667e-05, + "loss": 2.130485382080078, + "step": 143300 + }, + { + "epoch": 19.12, + "grad_norm": 0.38888853788375854, + "learning_rate": 4.04442e-05, + "loss": 2.1340348815917967, + "step": 143400 + }, + { + "epoch": 19.133333333333333, + "grad_norm": 0.4043475091457367, + "learning_rate": 4.0437533333333334e-05, + "loss": 2.132088317871094, + "step": 143500 + }, + { + "epoch": 19.14666666666667, + "grad_norm": 0.3911975920200348, + "learning_rate": 4.0430866666666666e-05, + "loss": 2.136121826171875, + "step": 143600 + }, + { + "epoch": 19.16, + "grad_norm": 0.43989744782447815, + "learning_rate": 4.04242e-05, + "loss": 2.129822998046875, + "step": 143700 + }, + { + "epoch": 19.173333333333332, + "grad_norm": 0.3966082036495209, + "learning_rate": 4.041753333333334e-05, + "loss": 2.132376403808594, + "step": 143800 + }, + { + "epoch": 19.186666666666667, + "grad_norm": 0.3992730975151062, + "learning_rate": 4.041086666666667e-05, + "loss": 2.139486999511719, + "step": 143900 + }, + { + "epoch": 19.2, + "grad_norm": 0.4032175838947296, + "learning_rate": 4.04042e-05, + "loss": 2.13601318359375, + "step": 144000 + }, + { + "epoch": 19.213333333333335, + "grad_norm": 0.396996408700943, + "learning_rate": 4.0397533333333334e-05, + "loss": 2.1378729248046877, + "step": 144100 + }, + { + "epoch": 19.226666666666667, + "grad_norm": 0.4150291085243225, + "learning_rate": 4.039086666666667e-05, + "loss": 2.1334957885742187, + "step": 144200 + }, + { + "epoch": 19.24, + "grad_norm": 0.3937293291091919, + "learning_rate": 4.03842e-05, + "loss": 2.136308135986328, + "step": 144300 + }, + { + "epoch": 19.253333333333334, + "grad_norm": 0.4123186469078064, + "learning_rate": 4.037753333333333e-05, + "loss": 2.1393890380859375, + "step": 144400 + }, + { + "epoch": 19.266666666666666, + "grad_norm": 0.39195558428764343, + "learning_rate": 4.037086666666667e-05, + "loss": 2.1392486572265623, + "step": 144500 + }, + { + "epoch": 19.28, + "grad_norm": 0.4173942506313324, + "learning_rate": 4.03642e-05, + "loss": 2.137723846435547, + "step": 144600 + }, + { + "epoch": 19.293333333333333, + "grad_norm": 0.4093802273273468, + "learning_rate": 4.0357533333333335e-05, + "loss": 2.136879577636719, + "step": 144700 + }, + { + "epoch": 19.306666666666665, + "grad_norm": 0.4126907289028168, + "learning_rate": 4.035086666666667e-05, + "loss": 2.1385182189941405, + "step": 144800 + }, + { + "epoch": 19.32, + "grad_norm": 0.4639165699481964, + "learning_rate": 4.0344200000000006e-05, + "loss": 2.1417454528808593, + "step": 144900 + }, + { + "epoch": 19.333333333333332, + "grad_norm": 0.405304491519928, + "learning_rate": 4.033753333333333e-05, + "loss": 2.1422581481933594, + "step": 145000 + }, + { + "epoch": 19.346666666666668, + "grad_norm": 0.3977564573287964, + "learning_rate": 4.0330866666666664e-05, + "loss": 2.142159118652344, + "step": 145100 + }, + { + "epoch": 19.36, + "grad_norm": 0.3873383104801178, + "learning_rate": 4.032426666666667e-05, + "loss": 2.141308135986328, + "step": 145200 + }, + { + "epoch": 19.373333333333335, + "grad_norm": 0.40484434366226196, + "learning_rate": 4.03176e-05, + "loss": 2.1436500549316406, + "step": 145300 + }, + { + "epoch": 19.386666666666667, + "grad_norm": 0.3954225480556488, + "learning_rate": 4.0310933333333334e-05, + "loss": 2.1450897216796876, + "step": 145400 + }, + { + "epoch": 19.4, + "grad_norm": 0.40232667326927185, + "learning_rate": 4.0304266666666666e-05, + "loss": 2.14369140625, + "step": 145500 + }, + { + "epoch": 19.413333333333334, + "grad_norm": 0.4098379909992218, + "learning_rate": 4.0297600000000005e-05, + "loss": 2.142886199951172, + "step": 145600 + }, + { + "epoch": 19.426666666666666, + "grad_norm": 0.5938084125518799, + "learning_rate": 4.029093333333334e-05, + "loss": 2.142805480957031, + "step": 145700 + }, + { + "epoch": 19.44, + "grad_norm": 0.4229917824268341, + "learning_rate": 4.028426666666667e-05, + "loss": 2.1455670166015626, + "step": 145800 + }, + { + "epoch": 19.453333333333333, + "grad_norm": 0.4009098410606384, + "learning_rate": 4.02776e-05, + "loss": 2.1452354431152343, + "step": 145900 + }, + { + "epoch": 19.466666666666665, + "grad_norm": 0.4073621928691864, + "learning_rate": 4.0270933333333334e-05, + "loss": 2.148215484619141, + "step": 146000 + }, + { + "epoch": 19.48, + "grad_norm": 0.4084467887878418, + "learning_rate": 4.026426666666667e-05, + "loss": 2.1478231811523436, + "step": 146100 + }, + { + "epoch": 19.493333333333332, + "grad_norm": 0.41249674558639526, + "learning_rate": 4.02576e-05, + "loss": 2.146228485107422, + "step": 146200 + }, + { + "epoch": 19.506666666666668, + "grad_norm": 0.4140562415122986, + "learning_rate": 4.025093333333334e-05, + "loss": 2.1468472290039062, + "step": 146300 + }, + { + "epoch": 19.52, + "grad_norm": 0.4109251797199249, + "learning_rate": 4.024426666666667e-05, + "loss": 2.1486239624023438, + "step": 146400 + }, + { + "epoch": 19.533333333333335, + "grad_norm": 0.4116007089614868, + "learning_rate": 4.02376e-05, + "loss": 2.1508238220214846, + "step": 146500 + }, + { + "epoch": 19.546666666666667, + "grad_norm": 0.4088853895664215, + "learning_rate": 4.0230933333333335e-05, + "loss": 2.1514797973632813, + "step": 146600 + }, + { + "epoch": 19.56, + "grad_norm": 0.41675347089767456, + "learning_rate": 4.0224266666666674e-05, + "loss": 2.1524058532714845, + "step": 146700 + }, + { + "epoch": 19.573333333333334, + "grad_norm": 0.3963926136493683, + "learning_rate": 4.02176e-05, + "loss": 2.148751525878906, + "step": 146800 + }, + { + "epoch": 19.586666666666666, + "grad_norm": 0.40617915987968445, + "learning_rate": 4.021093333333333e-05, + "loss": 2.149855194091797, + "step": 146900 + }, + { + "epoch": 19.6, + "grad_norm": 0.41876712441444397, + "learning_rate": 4.020426666666667e-05, + "loss": 2.150911560058594, + "step": 147000 + }, + { + "epoch": 19.613333333333333, + "grad_norm": 0.3804861605167389, + "learning_rate": 4.01976e-05, + "loss": 2.1560760498046876, + "step": 147100 + }, + { + "epoch": 19.626666666666665, + "grad_norm": 0.4384894073009491, + "learning_rate": 4.0191e-05, + "loss": 2.1526423645019532, + "step": 147200 + }, + { + "epoch": 19.64, + "grad_norm": 0.41497132182121277, + "learning_rate": 4.0184333333333334e-05, + "loss": 2.155290374755859, + "step": 147300 + }, + { + "epoch": 19.653333333333332, + "grad_norm": 0.41495493054389954, + "learning_rate": 4.0177666666666666e-05, + "loss": 2.151389465332031, + "step": 147400 + }, + { + "epoch": 19.666666666666668, + "grad_norm": 0.4099428355693817, + "learning_rate": 4.0171000000000006e-05, + "loss": 2.1499951171875, + "step": 147500 + }, + { + "epoch": 19.68, + "grad_norm": 0.3970455825328827, + "learning_rate": 4.016433333333334e-05, + "loss": 2.1519485473632813, + "step": 147600 + }, + { + "epoch": 19.693333333333335, + "grad_norm": 0.39993080496788025, + "learning_rate": 4.015766666666667e-05, + "loss": 2.1552606201171876, + "step": 147700 + }, + { + "epoch": 19.706666666666667, + "grad_norm": 0.3965042233467102, + "learning_rate": 4.0151e-05, + "loss": 2.15621826171875, + "step": 147800 + }, + { + "epoch": 19.72, + "grad_norm": 0.39892885088920593, + "learning_rate": 4.0144333333333335e-05, + "loss": 2.1579328918457032, + "step": 147900 + }, + { + "epoch": 19.733333333333334, + "grad_norm": 0.3992300033569336, + "learning_rate": 4.013766666666667e-05, + "loss": 2.1543257141113283, + "step": 148000 + }, + { + "epoch": 19.746666666666666, + "grad_norm": 0.4157925844192505, + "learning_rate": 4.0131e-05, + "loss": 2.1553553771972656, + "step": 148100 + }, + { + "epoch": 19.76, + "grad_norm": 0.4068884253501892, + "learning_rate": 4.012433333333334e-05, + "loss": 2.1588153076171874, + "step": 148200 + }, + { + "epoch": 19.773333333333333, + "grad_norm": 0.38905492424964905, + "learning_rate": 4.011766666666667e-05, + "loss": 2.15878662109375, + "step": 148300 + }, + { + "epoch": 19.786666666666665, + "grad_norm": 0.4091239869594574, + "learning_rate": 4.0111e-05, + "loss": 2.1591731262207032, + "step": 148400 + }, + { + "epoch": 19.8, + "grad_norm": 0.40158993005752563, + "learning_rate": 4.0104333333333335e-05, + "loss": 2.1584709167480467, + "step": 148500 + }, + { + "epoch": 19.813333333333333, + "grad_norm": 0.39406251907348633, + "learning_rate": 4.009766666666667e-05, + "loss": 2.1566011047363283, + "step": 148600 + }, + { + "epoch": 19.826666666666668, + "grad_norm": 0.407062292098999, + "learning_rate": 4.0091e-05, + "loss": 2.1586177062988283, + "step": 148700 + }, + { + "epoch": 19.84, + "grad_norm": 0.405785471200943, + "learning_rate": 4.008433333333333e-05, + "loss": 2.16111083984375, + "step": 148800 + }, + { + "epoch": 19.85333333333333, + "grad_norm": 0.41420650482177734, + "learning_rate": 4.007766666666667e-05, + "loss": 2.1617213439941407, + "step": 148900 + }, + { + "epoch": 19.866666666666667, + "grad_norm": 0.394771933555603, + "learning_rate": 4.0071e-05, + "loss": 2.1623408508300783, + "step": 149000 + }, + { + "epoch": 19.88, + "grad_norm": 0.40892547369003296, + "learning_rate": 4.0064333333333335e-05, + "loss": 2.157855987548828, + "step": 149100 + }, + { + "epoch": 19.893333333333334, + "grad_norm": 0.3987767994403839, + "learning_rate": 4.0057733333333334e-05, + "loss": 2.1613093566894532, + "step": 149200 + }, + { + "epoch": 19.906666666666666, + "grad_norm": 0.3993833661079407, + "learning_rate": 4.005106666666667e-05, + "loss": 2.1549281311035156, + "step": 149300 + }, + { + "epoch": 19.92, + "grad_norm": 0.38621968030929565, + "learning_rate": 4.0044400000000006e-05, + "loss": 2.160150146484375, + "step": 149400 + }, + { + "epoch": 19.933333333333334, + "grad_norm": 0.3897809386253357, + "learning_rate": 4.003773333333333e-05, + "loss": 2.1631517028808593, + "step": 149500 + }, + { + "epoch": 19.946666666666665, + "grad_norm": 0.398573637008667, + "learning_rate": 4.0031066666666664e-05, + "loss": 2.157795104980469, + "step": 149600 + }, + { + "epoch": 19.96, + "grad_norm": 0.40121105313301086, + "learning_rate": 4.00244e-05, + "loss": 2.1640524291992187, + "step": 149700 + }, + { + "epoch": 19.973333333333333, + "grad_norm": 0.4069249927997589, + "learning_rate": 4.0017733333333335e-05, + "loss": 2.166029052734375, + "step": 149800 + }, + { + "epoch": 19.986666666666668, + "grad_norm": 0.3973349928855896, + "learning_rate": 4.001106666666667e-05, + "loss": 2.1621893310546874, + "step": 149900 + }, + { + "epoch": 20.0, + "grad_norm": 0.41031596064567566, + "learning_rate": 4.0004400000000006e-05, + "loss": 2.164129180908203, + "step": 150000 + }, + { + "epoch": 20.013333333333332, + "grad_norm": 0.4144793748855591, + "learning_rate": 3.999773333333334e-05, + "loss": 2.1011627197265623, + "step": 150100 + }, + { + "epoch": 20.026666666666667, + "grad_norm": 0.4213844835758209, + "learning_rate": 3.999106666666667e-05, + "loss": 2.1013143920898436, + "step": 150200 + }, + { + "epoch": 20.04, + "grad_norm": 0.4233456254005432, + "learning_rate": 3.99844e-05, + "loss": 2.102215118408203, + "step": 150300 + }, + { + "epoch": 20.053333333333335, + "grad_norm": 0.4110080897808075, + "learning_rate": 3.9977733333333335e-05, + "loss": 2.1024229431152346, + "step": 150400 + }, + { + "epoch": 20.066666666666666, + "grad_norm": 0.43383386731147766, + "learning_rate": 3.997106666666667e-05, + "loss": 2.1043170166015623, + "step": 150500 + }, + { + "epoch": 20.08, + "grad_norm": 0.44916924834251404, + "learning_rate": 3.99644e-05, + "loss": 2.1046258544921876, + "step": 150600 + }, + { + "epoch": 20.093333333333334, + "grad_norm": 0.41945359110832214, + "learning_rate": 3.995773333333334e-05, + "loss": 2.1057843017578124, + "step": 150700 + }, + { + "epoch": 20.106666666666666, + "grad_norm": 0.4138963222503662, + "learning_rate": 3.995106666666667e-05, + "loss": 2.109571533203125, + "step": 150800 + }, + { + "epoch": 20.12, + "grad_norm": 0.4254426956176758, + "learning_rate": 3.99444e-05, + "loss": 2.110528869628906, + "step": 150900 + }, + { + "epoch": 20.133333333333333, + "grad_norm": 0.4162181615829468, + "learning_rate": 3.9937733333333336e-05, + "loss": 2.109608459472656, + "step": 151000 + }, + { + "epoch": 20.14666666666667, + "grad_norm": 0.4359742999076843, + "learning_rate": 3.993106666666667e-05, + "loss": 2.111918640136719, + "step": 151100 + }, + { + "epoch": 20.16, + "grad_norm": 0.43765124678611755, + "learning_rate": 3.9924466666666674e-05, + "loss": 2.1102365112304686, + "step": 151200 + }, + { + "epoch": 20.173333333333332, + "grad_norm": 0.4108990728855133, + "learning_rate": 3.99178e-05, + "loss": 2.1093389892578127, + "step": 151300 + }, + { + "epoch": 20.186666666666667, + "grad_norm": 0.44729962944984436, + "learning_rate": 3.991113333333333e-05, + "loss": 2.109452209472656, + "step": 151400 + }, + { + "epoch": 20.2, + "grad_norm": 0.44547468423843384, + "learning_rate": 3.990446666666667e-05, + "loss": 2.112231903076172, + "step": 151500 + }, + { + "epoch": 20.213333333333335, + "grad_norm": 0.41629984974861145, + "learning_rate": 3.98978e-05, + "loss": 2.113887939453125, + "step": 151600 + }, + { + "epoch": 20.226666666666667, + "grad_norm": 0.40394192934036255, + "learning_rate": 3.9891133333333335e-05, + "loss": 2.115534362792969, + "step": 151700 + }, + { + "epoch": 20.24, + "grad_norm": 0.44830042123794556, + "learning_rate": 3.988446666666667e-05, + "loss": 2.1146437072753907, + "step": 151800 + }, + { + "epoch": 20.253333333333334, + "grad_norm": 0.4912000596523285, + "learning_rate": 3.9877800000000006e-05, + "loss": 2.1153712463378906, + "step": 151900 + }, + { + "epoch": 20.266666666666666, + "grad_norm": 0.42249879240989685, + "learning_rate": 3.987113333333333e-05, + "loss": 2.115755615234375, + "step": 152000 + }, + { + "epoch": 20.28, + "grad_norm": 0.4368637204170227, + "learning_rate": 3.9864466666666664e-05, + "loss": 2.116807403564453, + "step": 152100 + }, + { + "epoch": 20.293333333333333, + "grad_norm": 0.4537985920906067, + "learning_rate": 3.98578e-05, + "loss": 2.1168971252441406, + "step": 152200 + }, + { + "epoch": 20.306666666666665, + "grad_norm": 0.4116325378417969, + "learning_rate": 3.9851133333333335e-05, + "loss": 2.1171247863769533, + "step": 152300 + }, + { + "epoch": 20.32, + "grad_norm": 0.4562799632549286, + "learning_rate": 3.984446666666667e-05, + "loss": 2.120128326416016, + "step": 152400 + }, + { + "epoch": 20.333333333333332, + "grad_norm": 0.48379048705101013, + "learning_rate": 3.98378e-05, + "loss": 2.1202543640136717, + "step": 152500 + }, + { + "epoch": 20.346666666666668, + "grad_norm": 0.4196086823940277, + "learning_rate": 3.983113333333334e-05, + "loss": 2.1200096130371096, + "step": 152600 + }, + { + "epoch": 20.36, + "grad_norm": 0.4291480481624603, + "learning_rate": 3.982446666666667e-05, + "loss": 2.1247039794921876, + "step": 152700 + }, + { + "epoch": 20.373333333333335, + "grad_norm": 0.435103178024292, + "learning_rate": 3.98178e-05, + "loss": 2.123348846435547, + "step": 152800 + }, + { + "epoch": 20.386666666666667, + "grad_norm": 0.4345220923423767, + "learning_rate": 3.9811133333333336e-05, + "loss": 2.1262147521972654, + "step": 152900 + }, + { + "epoch": 20.4, + "grad_norm": 0.4328380823135376, + "learning_rate": 3.980446666666667e-05, + "loss": 2.121066131591797, + "step": 153000 + }, + { + "epoch": 20.413333333333334, + "grad_norm": 0.4451119303703308, + "learning_rate": 3.97978e-05, + "loss": 2.1231698608398437, + "step": 153100 + }, + { + "epoch": 20.426666666666666, + "grad_norm": 0.4360395669937134, + "learning_rate": 3.979113333333333e-05, + "loss": 2.125181121826172, + "step": 153200 + }, + { + "epoch": 20.44, + "grad_norm": 0.4354141354560852, + "learning_rate": 3.978453333333333e-05, + "loss": 2.1249436950683593, + "step": 153300 + }, + { + "epoch": 20.453333333333333, + "grad_norm": 0.4377344250679016, + "learning_rate": 3.977786666666667e-05, + "loss": 2.1251399230957033, + "step": 153400 + }, + { + "epoch": 20.466666666666665, + "grad_norm": 0.4143160581588745, + "learning_rate": 3.97712e-05, + "loss": 2.128079681396484, + "step": 153500 + }, + { + "epoch": 20.48, + "grad_norm": 0.42408105731010437, + "learning_rate": 3.9764533333333335e-05, + "loss": 2.1228724670410157, + "step": 153600 + }, + { + "epoch": 20.493333333333332, + "grad_norm": 0.42520079016685486, + "learning_rate": 3.9757866666666674e-05, + "loss": 2.1246131896972655, + "step": 153700 + }, + { + "epoch": 20.506666666666668, + "grad_norm": 0.43026211857795715, + "learning_rate": 3.97512e-05, + "loss": 2.1264944458007813, + "step": 153800 + }, + { + "epoch": 20.52, + "grad_norm": 0.4304378628730774, + "learning_rate": 3.974453333333333e-05, + "loss": 2.128600616455078, + "step": 153900 + }, + { + "epoch": 20.533333333333335, + "grad_norm": 0.4374537765979767, + "learning_rate": 3.9737866666666664e-05, + "loss": 2.127030944824219, + "step": 154000 + }, + { + "epoch": 20.546666666666667, + "grad_norm": 0.42087990045547485, + "learning_rate": 3.9731200000000003e-05, + "loss": 2.127199859619141, + "step": 154100 + }, + { + "epoch": 20.56, + "grad_norm": 0.44808924198150635, + "learning_rate": 3.9724533333333336e-05, + "loss": 2.130141143798828, + "step": 154200 + }, + { + "epoch": 20.573333333333334, + "grad_norm": 0.4425102770328522, + "learning_rate": 3.971786666666667e-05, + "loss": 2.128837432861328, + "step": 154300 + }, + { + "epoch": 20.586666666666666, + "grad_norm": 0.4478192925453186, + "learning_rate": 3.971120000000001e-05, + "loss": 2.126686859130859, + "step": 154400 + }, + { + "epoch": 20.6, + "grad_norm": 0.40875598788261414, + "learning_rate": 3.970453333333333e-05, + "loss": 2.1303999328613283, + "step": 154500 + }, + { + "epoch": 20.613333333333333, + "grad_norm": 0.4193249046802521, + "learning_rate": 3.9697866666666665e-05, + "loss": 2.1299224853515626, + "step": 154600 + }, + { + "epoch": 20.626666666666665, + "grad_norm": 0.42445623874664307, + "learning_rate": 3.9691200000000004e-05, + "loss": 2.129607696533203, + "step": 154700 + }, + { + "epoch": 20.64, + "grad_norm": 0.42908674478530884, + "learning_rate": 3.9684533333333336e-05, + "loss": 2.13080322265625, + "step": 154800 + }, + { + "epoch": 20.653333333333332, + "grad_norm": 0.41622525453567505, + "learning_rate": 3.967786666666667e-05, + "loss": 2.1290174865722657, + "step": 154900 + }, + { + "epoch": 20.666666666666668, + "grad_norm": 0.4262298047542572, + "learning_rate": 3.96712e-05, + "loss": 2.1313914489746093, + "step": 155000 + }, + { + "epoch": 20.68, + "grad_norm": 0.4326687753200531, + "learning_rate": 3.966453333333334e-05, + "loss": 2.1320542907714843, + "step": 155100 + }, + { + "epoch": 20.693333333333335, + "grad_norm": 0.4377034902572632, + "learning_rate": 3.965786666666667e-05, + "loss": 2.1338987731933594, + "step": 155200 + }, + { + "epoch": 20.706666666666667, + "grad_norm": 0.41697245836257935, + "learning_rate": 3.965126666666667e-05, + "loss": 2.1323886108398438, + "step": 155300 + }, + { + "epoch": 20.72, + "grad_norm": 0.4141487777233124, + "learning_rate": 3.96446e-05, + "loss": 2.1330581665039063, + "step": 155400 + }, + { + "epoch": 20.733333333333334, + "grad_norm": 0.44619297981262207, + "learning_rate": 3.9637933333333336e-05, + "loss": 2.133800811767578, + "step": 155500 + }, + { + "epoch": 20.746666666666666, + "grad_norm": 0.4493109881877899, + "learning_rate": 3.963126666666667e-05, + "loss": 2.1314244079589844, + "step": 155600 + }, + { + "epoch": 20.76, + "grad_norm": 0.42815864086151123, + "learning_rate": 3.96246e-05, + "loss": 2.1383274841308593, + "step": 155700 + }, + { + "epoch": 20.773333333333333, + "grad_norm": 0.42495793104171753, + "learning_rate": 3.961793333333333e-05, + "loss": 2.134236602783203, + "step": 155800 + }, + { + "epoch": 20.786666666666665, + "grad_norm": 0.43157216906547546, + "learning_rate": 3.961126666666667e-05, + "loss": 2.1373394775390624, + "step": 155900 + }, + { + "epoch": 20.8, + "grad_norm": 0.4456236958503723, + "learning_rate": 3.9604600000000004e-05, + "loss": 2.13835693359375, + "step": 156000 + }, + { + "epoch": 20.813333333333333, + "grad_norm": 0.4253341853618622, + "learning_rate": 3.9597933333333336e-05, + "loss": 2.1404833984375, + "step": 156100 + }, + { + "epoch": 20.826666666666668, + "grad_norm": 0.4421469569206238, + "learning_rate": 3.959126666666667e-05, + "loss": 2.134762725830078, + "step": 156200 + }, + { + "epoch": 20.84, + "grad_norm": 0.4644703269004822, + "learning_rate": 3.95846e-05, + "loss": 2.1389283752441406, + "step": 156300 + }, + { + "epoch": 20.85333333333333, + "grad_norm": 0.4606155753135681, + "learning_rate": 3.957793333333333e-05, + "loss": 2.140909423828125, + "step": 156400 + }, + { + "epoch": 20.866666666666667, + "grad_norm": 0.4364932179450989, + "learning_rate": 3.9571266666666665e-05, + "loss": 2.1414125061035154, + "step": 156500 + }, + { + "epoch": 20.88, + "grad_norm": 0.41626495122909546, + "learning_rate": 3.9564600000000004e-05, + "loss": 2.139465789794922, + "step": 156600 + }, + { + "epoch": 20.893333333333334, + "grad_norm": 0.43859004974365234, + "learning_rate": 3.9557933333333336e-05, + "loss": 2.139771728515625, + "step": 156700 + }, + { + "epoch": 20.906666666666666, + "grad_norm": 0.41686686873435974, + "learning_rate": 3.955126666666667e-05, + "loss": 2.1382980346679688, + "step": 156800 + }, + { + "epoch": 20.92, + "grad_norm": 0.4283873438835144, + "learning_rate": 3.95446e-05, + "loss": 2.138336181640625, + "step": 156900 + }, + { + "epoch": 20.933333333333334, + "grad_norm": 0.433183878660202, + "learning_rate": 3.953793333333334e-05, + "loss": 2.1397128295898438, + "step": 157000 + }, + { + "epoch": 20.946666666666665, + "grad_norm": 0.4318670928478241, + "learning_rate": 3.9531266666666665e-05, + "loss": 2.1437940979003907, + "step": 157100 + }, + { + "epoch": 20.96, + "grad_norm": 0.40270859003067017, + "learning_rate": 3.95246e-05, + "loss": 2.14356689453125, + "step": 157200 + }, + { + "epoch": 20.973333333333333, + "grad_norm": 0.4244714379310608, + "learning_rate": 3.9518e-05, + "loss": 2.139528503417969, + "step": 157300 + }, + { + "epoch": 20.986666666666668, + "grad_norm": 0.45268091559410095, + "learning_rate": 3.9511333333333336e-05, + "loss": 2.145069427490234, + "step": 157400 + }, + { + "epoch": 21.0, + "grad_norm": 0.40507015585899353, + "learning_rate": 3.950466666666667e-05, + "loss": 2.143871154785156, + "step": 157500 + }, + { + "epoch": 21.013333333333332, + "grad_norm": 0.4375498592853546, + "learning_rate": 3.9498e-05, + "loss": 2.076609649658203, + "step": 157600 + }, + { + "epoch": 21.026666666666667, + "grad_norm": 0.4368535876274109, + "learning_rate": 3.949133333333333e-05, + "loss": 2.081154022216797, + "step": 157700 + }, + { + "epoch": 21.04, + "grad_norm": 0.4447578489780426, + "learning_rate": 3.948466666666667e-05, + "loss": 2.080892333984375, + "step": 157800 + }, + { + "epoch": 21.053333333333335, + "grad_norm": 0.46905946731567383, + "learning_rate": 3.9478000000000004e-05, + "loss": 2.082366485595703, + "step": 157900 + }, + { + "epoch": 21.066666666666666, + "grad_norm": 0.4563233554363251, + "learning_rate": 3.9471333333333336e-05, + "loss": 2.081029815673828, + "step": 158000 + }, + { + "epoch": 21.08, + "grad_norm": 0.442941278219223, + "learning_rate": 3.946466666666667e-05, + "loss": 2.079813690185547, + "step": 158100 + }, + { + "epoch": 21.093333333333334, + "grad_norm": 0.44517138600349426, + "learning_rate": 3.9458e-05, + "loss": 2.0806849670410155, + "step": 158200 + }, + { + "epoch": 21.106666666666666, + "grad_norm": 0.4202803075313568, + "learning_rate": 3.945133333333333e-05, + "loss": 2.0857112121582033, + "step": 158300 + }, + { + "epoch": 21.12, + "grad_norm": 0.443814218044281, + "learning_rate": 3.944466666666667e-05, + "loss": 2.0827932739257813, + "step": 158400 + }, + { + "epoch": 21.133333333333333, + "grad_norm": 0.4491780698299408, + "learning_rate": 3.9438000000000004e-05, + "loss": 2.0842088317871093, + "step": 158500 + }, + { + "epoch": 21.14666666666667, + "grad_norm": 0.45883890986442566, + "learning_rate": 3.9431333333333337e-05, + "loss": 2.086201019287109, + "step": 158600 + }, + { + "epoch": 21.16, + "grad_norm": 0.4523576498031616, + "learning_rate": 3.942466666666667e-05, + "loss": 2.088128967285156, + "step": 158700 + }, + { + "epoch": 21.173333333333332, + "grad_norm": 0.44423168897628784, + "learning_rate": 3.9418e-05, + "loss": 2.0868064880371096, + "step": 158800 + }, + { + "epoch": 21.186666666666667, + "grad_norm": 0.43601688742637634, + "learning_rate": 3.941133333333333e-05, + "loss": 2.089644470214844, + "step": 158900 + }, + { + "epoch": 21.2, + "grad_norm": 0.46989673376083374, + "learning_rate": 3.9404666666666666e-05, + "loss": 2.093050231933594, + "step": 159000 + }, + { + "epoch": 21.213333333333335, + "grad_norm": 0.43255218863487244, + "learning_rate": 3.9398000000000005e-05, + "loss": 2.0879270935058596, + "step": 159100 + }, + { + "epoch": 21.226666666666667, + "grad_norm": 0.49605920910835266, + "learning_rate": 3.939133333333334e-05, + "loss": 2.0937208557128906, + "step": 159200 + }, + { + "epoch": 21.24, + "grad_norm": 0.45772337913513184, + "learning_rate": 3.9384733333333336e-05, + "loss": 2.088824462890625, + "step": 159300 + }, + { + "epoch": 21.253333333333334, + "grad_norm": 0.47145646810531616, + "learning_rate": 3.937806666666667e-05, + "loss": 2.093097839355469, + "step": 159400 + }, + { + "epoch": 21.266666666666666, + "grad_norm": 0.4515535235404968, + "learning_rate": 3.93714e-05, + "loss": 2.0927359008789064, + "step": 159500 + }, + { + "epoch": 21.28, + "grad_norm": 0.4473794102668762, + "learning_rate": 3.936473333333334e-05, + "loss": 2.09676513671875, + "step": 159600 + }, + { + "epoch": 21.293333333333333, + "grad_norm": 0.4367310106754303, + "learning_rate": 3.935806666666667e-05, + "loss": 2.101490173339844, + "step": 159700 + }, + { + "epoch": 21.306666666666665, + "grad_norm": 0.4792206585407257, + "learning_rate": 3.93514e-05, + "loss": 2.0952803039550782, + "step": 159800 + }, + { + "epoch": 21.32, + "grad_norm": 0.47740694880485535, + "learning_rate": 3.9344733333333336e-05, + "loss": 2.095529022216797, + "step": 159900 + }, + { + "epoch": 21.333333333333332, + "grad_norm": 0.4495086371898651, + "learning_rate": 3.933806666666667e-05, + "loss": 2.0941035461425783, + "step": 160000 + }, + { + "epoch": 21.346666666666668, + "grad_norm": 0.45994919538497925, + "learning_rate": 3.93314e-05, + "loss": 2.097761993408203, + "step": 160100 + }, + { + "epoch": 21.36, + "grad_norm": 0.45980381965637207, + "learning_rate": 3.932473333333333e-05, + "loss": 2.103887634277344, + "step": 160200 + }, + { + "epoch": 21.373333333333335, + "grad_norm": 0.4462270438671112, + "learning_rate": 3.931806666666667e-05, + "loss": 2.1018940734863283, + "step": 160300 + }, + { + "epoch": 21.386666666666667, + "grad_norm": 0.44747424125671387, + "learning_rate": 3.9311400000000004e-05, + "loss": 2.100036163330078, + "step": 160400 + }, + { + "epoch": 21.4, + "grad_norm": 0.45789986848831177, + "learning_rate": 3.930473333333334e-05, + "loss": 2.097904052734375, + "step": 160500 + }, + { + "epoch": 21.413333333333334, + "grad_norm": 0.4360867440700531, + "learning_rate": 3.929806666666667e-05, + "loss": 2.100706787109375, + "step": 160600 + }, + { + "epoch": 21.426666666666666, + "grad_norm": 0.4504407048225403, + "learning_rate": 3.92914e-05, + "loss": 2.1013177490234374, + "step": 160700 + }, + { + "epoch": 21.44, + "grad_norm": 0.44968169927597046, + "learning_rate": 3.9284733333333334e-05, + "loss": 2.1003431701660156, + "step": 160800 + }, + { + "epoch": 21.453333333333333, + "grad_norm": 0.4681168794631958, + "learning_rate": 3.9278066666666666e-05, + "loss": 2.100907440185547, + "step": 160900 + }, + { + "epoch": 21.466666666666665, + "grad_norm": 0.4619245231151581, + "learning_rate": 3.9271400000000005e-05, + "loss": 2.103074035644531, + "step": 161000 + }, + { + "epoch": 21.48, + "grad_norm": 0.46537071466445923, + "learning_rate": 3.926473333333334e-05, + "loss": 2.1030101013183593, + "step": 161100 + }, + { + "epoch": 21.493333333333332, + "grad_norm": 0.44652751088142395, + "learning_rate": 3.925806666666667e-05, + "loss": 2.1046063232421877, + "step": 161200 + }, + { + "epoch": 21.506666666666668, + "grad_norm": 0.4665990173816681, + "learning_rate": 3.925146666666667e-05, + "loss": 2.103731842041016, + "step": 161300 + }, + { + "epoch": 21.52, + "grad_norm": 0.4317059814929962, + "learning_rate": 3.92448e-05, + "loss": 2.1036187744140626, + "step": 161400 + }, + { + "epoch": 21.533333333333335, + "grad_norm": 0.435001015663147, + "learning_rate": 3.923813333333334e-05, + "loss": 2.1071646118164065, + "step": 161500 + }, + { + "epoch": 21.546666666666667, + "grad_norm": 0.453155517578125, + "learning_rate": 3.9231466666666665e-05, + "loss": 2.104129638671875, + "step": 161600 + }, + { + "epoch": 21.56, + "grad_norm": 0.4656548798084259, + "learning_rate": 3.92248e-05, + "loss": 2.1059341430664062, + "step": 161700 + }, + { + "epoch": 21.573333333333334, + "grad_norm": 0.4497198164463043, + "learning_rate": 3.9218133333333337e-05, + "loss": 2.107401885986328, + "step": 161800 + }, + { + "epoch": 21.586666666666666, + "grad_norm": 0.45339301228523254, + "learning_rate": 3.921146666666667e-05, + "loss": 2.107149658203125, + "step": 161900 + }, + { + "epoch": 21.6, + "grad_norm": 0.46817344427108765, + "learning_rate": 3.92048e-05, + "loss": 2.1110685729980467, + "step": 162000 + }, + { + "epoch": 21.613333333333333, + "grad_norm": 0.4366016983985901, + "learning_rate": 3.9198133333333333e-05, + "loss": 2.1120893859863283, + "step": 162100 + }, + { + "epoch": 21.626666666666665, + "grad_norm": 0.4366924464702606, + "learning_rate": 3.919146666666667e-05, + "loss": 2.108365173339844, + "step": 162200 + }, + { + "epoch": 21.64, + "grad_norm": 0.4303394556045532, + "learning_rate": 3.91848e-05, + "loss": 2.1109800720214844, + "step": 162300 + }, + { + "epoch": 21.653333333333332, + "grad_norm": 0.4512556791305542, + "learning_rate": 3.917813333333333e-05, + "loss": 2.1110675048828127, + "step": 162400 + }, + { + "epoch": 21.666666666666668, + "grad_norm": 0.4542624056339264, + "learning_rate": 3.917146666666667e-05, + "loss": 2.1098895263671875, + "step": 162500 + }, + { + "epoch": 21.68, + "grad_norm": 0.4364491403102875, + "learning_rate": 3.91648e-05, + "loss": 2.1100592041015624, + "step": 162600 + }, + { + "epoch": 21.693333333333335, + "grad_norm": 0.4367804229259491, + "learning_rate": 3.9158133333333334e-05, + "loss": 2.111675109863281, + "step": 162700 + }, + { + "epoch": 21.706666666666667, + "grad_norm": 0.4421547055244446, + "learning_rate": 3.915146666666667e-05, + "loss": 2.113012390136719, + "step": 162800 + }, + { + "epoch": 21.72, + "grad_norm": 0.4768464267253876, + "learning_rate": 3.9144800000000005e-05, + "loss": 2.112431945800781, + "step": 162900 + }, + { + "epoch": 21.733333333333334, + "grad_norm": 0.470196008682251, + "learning_rate": 3.913813333333334e-05, + "loss": 2.115672760009766, + "step": 163000 + }, + { + "epoch": 21.746666666666666, + "grad_norm": 0.45648738741874695, + "learning_rate": 3.913146666666667e-05, + "loss": 2.113785858154297, + "step": 163100 + }, + { + "epoch": 21.76, + "grad_norm": 0.43980491161346436, + "learning_rate": 3.91248e-05, + "loss": 2.1120240783691404, + "step": 163200 + }, + { + "epoch": 21.773333333333333, + "grad_norm": 0.4451877772808075, + "learning_rate": 3.91182e-05, + "loss": 2.1176910400390625, + "step": 163300 + }, + { + "epoch": 21.786666666666665, + "grad_norm": 0.4444795250892639, + "learning_rate": 3.911153333333333e-05, + "loss": 2.1153562927246092, + "step": 163400 + }, + { + "epoch": 21.8, + "grad_norm": 0.45172980427742004, + "learning_rate": 3.9104866666666666e-05, + "loss": 2.1131268310546876, + "step": 163500 + }, + { + "epoch": 21.813333333333333, + "grad_norm": 0.44000083208084106, + "learning_rate": 3.9098200000000005e-05, + "loss": 2.1168165588378907, + "step": 163600 + }, + { + "epoch": 21.826666666666668, + "grad_norm": 0.43779900670051575, + "learning_rate": 3.909153333333334e-05, + "loss": 2.117685546875, + "step": 163700 + }, + { + "epoch": 21.84, + "grad_norm": 0.4511207640171051, + "learning_rate": 3.908486666666667e-05, + "loss": 2.1206480407714845, + "step": 163800 + }, + { + "epoch": 21.85333333333333, + "grad_norm": 0.44668668508529663, + "learning_rate": 3.90782e-05, + "loss": 2.1188619995117186, + "step": 163900 + }, + { + "epoch": 21.866666666666667, + "grad_norm": 0.4455656409263611, + "learning_rate": 3.907153333333334e-05, + "loss": 2.1155546569824217, + "step": 164000 + }, + { + "epoch": 21.88, + "grad_norm": 0.4516298770904541, + "learning_rate": 3.9064866666666666e-05, + "loss": 2.1179278564453123, + "step": 164100 + }, + { + "epoch": 21.893333333333334, + "grad_norm": 0.46956104040145874, + "learning_rate": 3.90582e-05, + "loss": 2.1160130310058594, + "step": 164200 + }, + { + "epoch": 21.906666666666666, + "grad_norm": 0.449705570936203, + "learning_rate": 3.905153333333334e-05, + "loss": 2.117757568359375, + "step": 164300 + }, + { + "epoch": 21.92, + "grad_norm": 0.4311459958553314, + "learning_rate": 3.904486666666667e-05, + "loss": 2.1182154846191406, + "step": 164400 + }, + { + "epoch": 21.933333333333334, + "grad_norm": 0.45638683438301086, + "learning_rate": 3.90382e-05, + "loss": 2.118441925048828, + "step": 164500 + }, + { + "epoch": 21.946666666666665, + "grad_norm": 0.4434240758419037, + "learning_rate": 3.9031533333333334e-05, + "loss": 2.1223045349121095, + "step": 164600 + }, + { + "epoch": 21.96, + "grad_norm": 0.46672335267066956, + "learning_rate": 3.902486666666667e-05, + "loss": 2.1176348876953126, + "step": 164700 + }, + { + "epoch": 21.973333333333333, + "grad_norm": 0.4445401430130005, + "learning_rate": 3.90182e-05, + "loss": 2.1194577026367187, + "step": 164800 + }, + { + "epoch": 21.986666666666668, + "grad_norm": 0.4556116461753845, + "learning_rate": 3.901153333333333e-05, + "loss": 2.124223175048828, + "step": 164900 + }, + { + "epoch": 22.0, + "grad_norm": 0.46571463346481323, + "learning_rate": 3.900486666666667e-05, + "loss": 2.123155517578125, + "step": 165000 + }, + { + "epoch": 22.013333333333332, + "grad_norm": 0.4723842740058899, + "learning_rate": 3.89982e-05, + "loss": 2.052652130126953, + "step": 165100 + }, + { + "epoch": 22.026666666666667, + "grad_norm": 0.4425469636917114, + "learning_rate": 3.8991533333333334e-05, + "loss": 2.052018890380859, + "step": 165200 + }, + { + "epoch": 22.04, + "grad_norm": 0.47095298767089844, + "learning_rate": 3.8984933333333333e-05, + "loss": 2.055422058105469, + "step": 165300 + }, + { + "epoch": 22.053333333333335, + "grad_norm": 0.46141520142555237, + "learning_rate": 3.8978266666666666e-05, + "loss": 2.0570689392089845, + "step": 165400 + }, + { + "epoch": 22.066666666666666, + "grad_norm": 0.471127450466156, + "learning_rate": 3.8971600000000005e-05, + "loss": 2.058157958984375, + "step": 165500 + }, + { + "epoch": 22.08, + "grad_norm": 0.48794686794281006, + "learning_rate": 3.896493333333334e-05, + "loss": 2.0558770751953124, + "step": 165600 + }, + { + "epoch": 22.093333333333334, + "grad_norm": 0.4672645926475525, + "learning_rate": 3.895826666666667e-05, + "loss": 2.061310272216797, + "step": 165700 + }, + { + "epoch": 22.106666666666666, + "grad_norm": 0.4862455427646637, + "learning_rate": 3.89516e-05, + "loss": 2.0606340026855468, + "step": 165800 + }, + { + "epoch": 22.12, + "grad_norm": 0.4853212833404541, + "learning_rate": 3.8944933333333334e-05, + "loss": 2.061323699951172, + "step": 165900 + }, + { + "epoch": 22.133333333333333, + "grad_norm": 0.4732306897640228, + "learning_rate": 3.8938266666666666e-05, + "loss": 2.0635455322265623, + "step": 166000 + }, + { + "epoch": 22.14666666666667, + "grad_norm": 0.4706946611404419, + "learning_rate": 3.89316e-05, + "loss": 2.063304595947266, + "step": 166100 + }, + { + "epoch": 22.16, + "grad_norm": 0.47907590866088867, + "learning_rate": 3.892493333333334e-05, + "loss": 2.063959503173828, + "step": 166200 + }, + { + "epoch": 22.173333333333332, + "grad_norm": 0.4727233946323395, + "learning_rate": 3.891826666666667e-05, + "loss": 2.0665432739257814, + "step": 166300 + }, + { + "epoch": 22.186666666666667, + "grad_norm": 0.450941264629364, + "learning_rate": 3.89116e-05, + "loss": 2.069130706787109, + "step": 166400 + }, + { + "epoch": 22.2, + "grad_norm": 0.4796398878097534, + "learning_rate": 3.890493333333334e-05, + "loss": 2.066522521972656, + "step": 166500 + }, + { + "epoch": 22.213333333333335, + "grad_norm": 0.44986021518707275, + "learning_rate": 3.8898266666666667e-05, + "loss": 2.068634033203125, + "step": 166600 + }, + { + "epoch": 22.226666666666667, + "grad_norm": 0.4744917154312134, + "learning_rate": 3.88916e-05, + "loss": 2.071067047119141, + "step": 166700 + }, + { + "epoch": 22.24, + "grad_norm": 0.4827626943588257, + "learning_rate": 3.888493333333333e-05, + "loss": 2.0700621032714843, + "step": 166800 + }, + { + "epoch": 22.253333333333334, + "grad_norm": 0.46759262681007385, + "learning_rate": 3.887826666666667e-05, + "loss": 2.0715043640136717, + "step": 166900 + }, + { + "epoch": 22.266666666666666, + "grad_norm": 0.4774859845638275, + "learning_rate": 3.88716e-05, + "loss": 2.071572113037109, + "step": 167000 + }, + { + "epoch": 22.28, + "grad_norm": 0.46241122484207153, + "learning_rate": 3.8864933333333335e-05, + "loss": 2.070568389892578, + "step": 167100 + }, + { + "epoch": 22.293333333333333, + "grad_norm": 0.46631354093551636, + "learning_rate": 3.8858266666666674e-05, + "loss": 2.067816162109375, + "step": 167200 + }, + { + "epoch": 22.306666666666665, + "grad_norm": 0.4631997346878052, + "learning_rate": 3.885166666666667e-05, + "loss": 2.06839599609375, + "step": 167300 + }, + { + "epoch": 22.32, + "grad_norm": 0.4765164852142334, + "learning_rate": 3.8845000000000005e-05, + "loss": 2.075525665283203, + "step": 167400 + }, + { + "epoch": 22.333333333333332, + "grad_norm": 0.4727115035057068, + "learning_rate": 3.883833333333334e-05, + "loss": 2.07642822265625, + "step": 167500 + }, + { + "epoch": 22.346666666666668, + "grad_norm": 0.455098956823349, + "learning_rate": 3.883166666666667e-05, + "loss": 2.078255157470703, + "step": 167600 + }, + { + "epoch": 22.36, + "grad_norm": 0.49284619092941284, + "learning_rate": 3.8825e-05, + "loss": 2.0744464111328127, + "step": 167700 + }, + { + "epoch": 22.373333333333335, + "grad_norm": 0.4699040651321411, + "learning_rate": 3.8818333333333334e-05, + "loss": 2.0767945861816406, + "step": 167800 + }, + { + "epoch": 22.386666666666667, + "grad_norm": 0.45493465662002563, + "learning_rate": 3.8811666666666666e-05, + "loss": 2.0780029296875, + "step": 167900 + }, + { + "epoch": 22.4, + "grad_norm": 0.4484899938106537, + "learning_rate": 3.8805000000000005e-05, + "loss": 2.080047302246094, + "step": 168000 + }, + { + "epoch": 22.413333333333334, + "grad_norm": 0.47381719946861267, + "learning_rate": 3.879833333333334e-05, + "loss": 2.077555694580078, + "step": 168100 + }, + { + "epoch": 22.426666666666666, + "grad_norm": 0.46231788396835327, + "learning_rate": 3.879166666666667e-05, + "loss": 2.079783172607422, + "step": 168200 + }, + { + "epoch": 22.44, + "grad_norm": 0.47428375482559204, + "learning_rate": 3.8785e-05, + "loss": 2.0778314208984376, + "step": 168300 + }, + { + "epoch": 22.453333333333333, + "grad_norm": 0.4597417116165161, + "learning_rate": 3.8778333333333334e-05, + "loss": 2.0790553283691406, + "step": 168400 + }, + { + "epoch": 22.466666666666665, + "grad_norm": 0.4623263478279114, + "learning_rate": 3.877166666666667e-05, + "loss": 2.0836700439453124, + "step": 168500 + }, + { + "epoch": 22.48, + "grad_norm": 0.4659540355205536, + "learning_rate": 3.8765e-05, + "loss": 2.0827793884277344, + "step": 168600 + }, + { + "epoch": 22.493333333333332, + "grad_norm": 0.47923794388771057, + "learning_rate": 3.875833333333334e-05, + "loss": 2.080955810546875, + "step": 168700 + }, + { + "epoch": 22.506666666666668, + "grad_norm": 0.4475663900375366, + "learning_rate": 3.875166666666667e-05, + "loss": 2.0815643310546874, + "step": 168800 + }, + { + "epoch": 22.52, + "grad_norm": 0.4618177115917206, + "learning_rate": 3.8745e-05, + "loss": 2.086231689453125, + "step": 168900 + }, + { + "epoch": 22.533333333333335, + "grad_norm": 0.4708126187324524, + "learning_rate": 3.8738333333333335e-05, + "loss": 2.080514373779297, + "step": 169000 + }, + { + "epoch": 22.546666666666667, + "grad_norm": 0.49023526906967163, + "learning_rate": 3.873166666666667e-05, + "loss": 2.084552001953125, + "step": 169100 + }, + { + "epoch": 22.56, + "grad_norm": 0.48341864347457886, + "learning_rate": 3.8725e-05, + "loss": 2.083937530517578, + "step": 169200 + }, + { + "epoch": 22.573333333333334, + "grad_norm": 0.4568435251712799, + "learning_rate": 3.87184e-05, + "loss": 2.0851905822753904, + "step": 169300 + }, + { + "epoch": 22.586666666666666, + "grad_norm": 0.46612024307250977, + "learning_rate": 3.871173333333333e-05, + "loss": 2.084072265625, + "step": 169400 + }, + { + "epoch": 22.6, + "grad_norm": 0.4634513258934021, + "learning_rate": 3.870506666666667e-05, + "loss": 2.0853956604003905, + "step": 169500 + }, + { + "epoch": 22.613333333333333, + "grad_norm": 0.46668726205825806, + "learning_rate": 3.86984e-05, + "loss": 2.084056854248047, + "step": 169600 + }, + { + "epoch": 22.626666666666665, + "grad_norm": 0.4836789667606354, + "learning_rate": 3.8691733333333334e-05, + "loss": 2.0863687133789064, + "step": 169700 + }, + { + "epoch": 22.64, + "grad_norm": 0.48101136088371277, + "learning_rate": 3.8685066666666667e-05, + "loss": 2.0898916625976565, + "step": 169800 + }, + { + "epoch": 22.653333333333332, + "grad_norm": 0.4785110652446747, + "learning_rate": 3.8678400000000006e-05, + "loss": 2.088622589111328, + "step": 169900 + }, + { + "epoch": 22.666666666666668, + "grad_norm": 0.4937325716018677, + "learning_rate": 3.867173333333334e-05, + "loss": 2.0871990966796874, + "step": 170000 + }, + { + "epoch": 22.68, + "grad_norm": 0.5297033786773682, + "learning_rate": 3.866506666666666e-05, + "loss": 2.09009033203125, + "step": 170100 + }, + { + "epoch": 22.693333333333335, + "grad_norm": 0.4711852967739105, + "learning_rate": 3.86584e-05, + "loss": 2.089188690185547, + "step": 170200 + }, + { + "epoch": 22.706666666666667, + "grad_norm": 0.5121586322784424, + "learning_rate": 3.8651733333333335e-05, + "loss": 2.0879640197753906, + "step": 170300 + }, + { + "epoch": 22.72, + "grad_norm": 0.4589405953884125, + "learning_rate": 3.864506666666667e-05, + "loss": 2.088956298828125, + "step": 170400 + }, + { + "epoch": 22.733333333333334, + "grad_norm": 0.4850880205631256, + "learning_rate": 3.86384e-05, + "loss": 2.090540466308594, + "step": 170500 + }, + { + "epoch": 22.746666666666666, + "grad_norm": 0.47406673431396484, + "learning_rate": 3.863173333333334e-05, + "loss": 2.090264892578125, + "step": 170600 + }, + { + "epoch": 22.76, + "grad_norm": 0.45255404710769653, + "learning_rate": 3.862506666666667e-05, + "loss": 2.0918638610839846, + "step": 170700 + }, + { + "epoch": 22.773333333333333, + "grad_norm": 0.5285037159919739, + "learning_rate": 3.86184e-05, + "loss": 2.0930937194824217, + "step": 170800 + }, + { + "epoch": 22.786666666666665, + "grad_norm": 0.45995503664016724, + "learning_rate": 3.8611733333333335e-05, + "loss": 2.0932025146484374, + "step": 170900 + }, + { + "epoch": 22.8, + "grad_norm": 0.4696432054042816, + "learning_rate": 3.860506666666667e-05, + "loss": 2.0916217041015623, + "step": 171000 + }, + { + "epoch": 22.813333333333333, + "grad_norm": 0.4758760929107666, + "learning_rate": 3.85984e-05, + "loss": 2.0916656494140624, + "step": 171100 + }, + { + "epoch": 22.826666666666668, + "grad_norm": 0.4615608751773834, + "learning_rate": 3.859173333333334e-05, + "loss": 2.0914183044433594, + "step": 171200 + }, + { + "epoch": 22.84, + "grad_norm": 0.4628288149833679, + "learning_rate": 3.858513333333333e-05, + "loss": 2.0931082153320313, + "step": 171300 + }, + { + "epoch": 22.85333333333333, + "grad_norm": 0.47100356221199036, + "learning_rate": 3.857846666666667e-05, + "loss": 2.0922206115722655, + "step": 171400 + }, + { + "epoch": 22.866666666666667, + "grad_norm": 0.4577377736568451, + "learning_rate": 3.85718e-05, + "loss": 2.094632263183594, + "step": 171500 + }, + { + "epoch": 22.88, + "grad_norm": 0.4824475944042206, + "learning_rate": 3.8565133333333335e-05, + "loss": 2.0955517578125, + "step": 171600 + }, + { + "epoch": 22.893333333333334, + "grad_norm": 0.46944087743759155, + "learning_rate": 3.8558466666666674e-05, + "loss": 2.0956381225585936, + "step": 171700 + }, + { + "epoch": 22.906666666666666, + "grad_norm": 0.4713914692401886, + "learning_rate": 3.8551800000000006e-05, + "loss": 2.0936820983886717, + "step": 171800 + }, + { + "epoch": 22.92, + "grad_norm": 0.4607670307159424, + "learning_rate": 3.854513333333333e-05, + "loss": 2.093219757080078, + "step": 171900 + }, + { + "epoch": 22.933333333333334, + "grad_norm": 0.46481382846832275, + "learning_rate": 3.853846666666667e-05, + "loss": 2.0938676452636718, + "step": 172000 + }, + { + "epoch": 22.946666666666665, + "grad_norm": 0.46048957109451294, + "learning_rate": 3.85318e-05, + "loss": 2.0956375122070314, + "step": 172100 + }, + { + "epoch": 22.96, + "grad_norm": 0.4736049771308899, + "learning_rate": 3.8525133333333335e-05, + "loss": 2.1002877807617186, + "step": 172200 + }, + { + "epoch": 22.973333333333333, + "grad_norm": 0.4825821816921234, + "learning_rate": 3.851846666666667e-05, + "loss": 2.0992372131347654, + "step": 172300 + }, + { + "epoch": 22.986666666666668, + "grad_norm": 0.4482329785823822, + "learning_rate": 3.8511800000000006e-05, + "loss": 2.100669708251953, + "step": 172400 + }, + { + "epoch": 23.0, + "grad_norm": 0.477242648601532, + "learning_rate": 3.850513333333334e-05, + "loss": 2.098603057861328, + "step": 172500 + }, + { + "epoch": 23.013333333333332, + "grad_norm": 0.49231958389282227, + "learning_rate": 3.8498466666666664e-05, + "loss": 2.028154296875, + "step": 172600 + }, + { + "epoch": 23.026666666666667, + "grad_norm": 0.4812023937702179, + "learning_rate": 3.84918e-05, + "loss": 2.0299658203125, + "step": 172700 + }, + { + "epoch": 23.04, + "grad_norm": 0.4930895268917084, + "learning_rate": 3.8485133333333335e-05, + "loss": 2.031252746582031, + "step": 172800 + }, + { + "epoch": 23.053333333333335, + "grad_norm": 0.48605743050575256, + "learning_rate": 3.847846666666667e-05, + "loss": 2.0349273681640625, + "step": 172900 + }, + { + "epoch": 23.066666666666666, + "grad_norm": 0.4839179813861847, + "learning_rate": 3.84718e-05, + "loss": 2.031682891845703, + "step": 173000 + }, + { + "epoch": 23.08, + "grad_norm": 0.5092812180519104, + "learning_rate": 3.846513333333334e-05, + "loss": 2.033275451660156, + "step": 173100 + }, + { + "epoch": 23.093333333333334, + "grad_norm": 0.4731476604938507, + "learning_rate": 3.845853333333334e-05, + "loss": 2.0364311218261717, + "step": 173200 + }, + { + "epoch": 23.106666666666666, + "grad_norm": 0.5190111398696899, + "learning_rate": 3.845186666666667e-05, + "loss": 2.0340025329589846, + "step": 173300 + }, + { + "epoch": 23.12, + "grad_norm": 0.48105064034461975, + "learning_rate": 3.84452e-05, + "loss": 2.037009582519531, + "step": 173400 + }, + { + "epoch": 23.133333333333333, + "grad_norm": 0.52114337682724, + "learning_rate": 3.8438533333333335e-05, + "loss": 2.0407159423828123, + "step": 173500 + }, + { + "epoch": 23.14666666666667, + "grad_norm": 0.4885977804660797, + "learning_rate": 3.843186666666667e-05, + "loss": 2.03779541015625, + "step": 173600 + }, + { + "epoch": 23.16, + "grad_norm": 0.48264557123184204, + "learning_rate": 3.84252e-05, + "loss": 2.0406539916992186, + "step": 173700 + }, + { + "epoch": 23.173333333333332, + "grad_norm": 0.4905865490436554, + "learning_rate": 3.841853333333333e-05, + "loss": 2.0425653076171875, + "step": 173800 + }, + { + "epoch": 23.186666666666667, + "grad_norm": 0.5025938749313354, + "learning_rate": 3.841186666666667e-05, + "loss": 2.0424517822265624, + "step": 173900 + }, + { + "epoch": 23.2, + "grad_norm": 0.4712689220905304, + "learning_rate": 3.84052e-05, + "loss": 2.0432838439941405, + "step": 174000 + }, + { + "epoch": 23.213333333333335, + "grad_norm": 0.48581528663635254, + "learning_rate": 3.8398533333333335e-05, + "loss": 2.0483238220214846, + "step": 174100 + }, + { + "epoch": 23.226666666666667, + "grad_norm": 0.4895326793193817, + "learning_rate": 3.839186666666667e-05, + "loss": 2.0430706787109374, + "step": 174200 + }, + { + "epoch": 23.24, + "grad_norm": 0.48464319109916687, + "learning_rate": 3.8385200000000006e-05, + "loss": 2.041295623779297, + "step": 174300 + }, + { + "epoch": 23.253333333333334, + "grad_norm": 0.47198572754859924, + "learning_rate": 3.837853333333333e-05, + "loss": 2.046827850341797, + "step": 174400 + }, + { + "epoch": 23.266666666666666, + "grad_norm": 0.5147217512130737, + "learning_rate": 3.8371866666666664e-05, + "loss": 2.04611572265625, + "step": 174500 + }, + { + "epoch": 23.28, + "grad_norm": 0.597183108329773, + "learning_rate": 3.83652e-05, + "loss": 2.0490652465820314, + "step": 174600 + }, + { + "epoch": 23.293333333333333, + "grad_norm": 0.4989413022994995, + "learning_rate": 3.8358533333333336e-05, + "loss": 2.0499391174316406, + "step": 174700 + }, + { + "epoch": 23.306666666666665, + "grad_norm": 0.48632174730300903, + "learning_rate": 3.835186666666667e-05, + "loss": 2.046672515869141, + "step": 174800 + }, + { + "epoch": 23.32, + "grad_norm": 0.5028402209281921, + "learning_rate": 3.83452e-05, + "loss": 2.05111572265625, + "step": 174900 + }, + { + "epoch": 23.333333333333332, + "grad_norm": 0.5091901421546936, + "learning_rate": 3.833853333333334e-05, + "loss": 2.051913299560547, + "step": 175000 + }, + { + "epoch": 23.346666666666668, + "grad_norm": 0.4841155409812927, + "learning_rate": 3.8331866666666665e-05, + "loss": 2.051449737548828, + "step": 175100 + }, + { + "epoch": 23.36, + "grad_norm": 0.4835347533226013, + "learning_rate": 3.83252e-05, + "loss": 2.050365295410156, + "step": 175200 + }, + { + "epoch": 23.373333333333335, + "grad_norm": 0.4950560927391052, + "learning_rate": 3.8318533333333336e-05, + "loss": 2.0553269958496094, + "step": 175300 + }, + { + "epoch": 23.386666666666667, + "grad_norm": 0.4722176492214203, + "learning_rate": 3.831186666666667e-05, + "loss": 2.049596862792969, + "step": 175400 + }, + { + "epoch": 23.4, + "grad_norm": 0.48539531230926514, + "learning_rate": 3.83052e-05, + "loss": 2.055406036376953, + "step": 175500 + }, + { + "epoch": 23.413333333333334, + "grad_norm": 0.49876898527145386, + "learning_rate": 3.829853333333334e-05, + "loss": 2.055661163330078, + "step": 175600 + }, + { + "epoch": 23.426666666666666, + "grad_norm": 0.48749157786369324, + "learning_rate": 3.829186666666667e-05, + "loss": 2.053136749267578, + "step": 175700 + }, + { + "epoch": 23.44, + "grad_norm": 0.49499818682670593, + "learning_rate": 3.8285200000000004e-05, + "loss": 2.049785614013672, + "step": 175800 + }, + { + "epoch": 23.453333333333333, + "grad_norm": 0.4992135465145111, + "learning_rate": 3.827853333333333e-05, + "loss": 2.0580978393554688, + "step": 175900 + }, + { + "epoch": 23.466666666666665, + "grad_norm": 0.5279852747917175, + "learning_rate": 3.827186666666667e-05, + "loss": 2.056828918457031, + "step": 176000 + }, + { + "epoch": 23.48, + "grad_norm": 0.4881434440612793, + "learning_rate": 3.82652e-05, + "loss": 2.057747039794922, + "step": 176100 + }, + { + "epoch": 23.493333333333332, + "grad_norm": 0.4738701283931732, + "learning_rate": 3.825853333333333e-05, + "loss": 2.0571058654785155, + "step": 176200 + }, + { + "epoch": 23.506666666666668, + "grad_norm": 0.5095720887184143, + "learning_rate": 3.825186666666667e-05, + "loss": 2.0584869384765625, + "step": 176300 + }, + { + "epoch": 23.52, + "grad_norm": 0.5219035148620605, + "learning_rate": 3.824526666666667e-05, + "loss": 2.0586363220214845, + "step": 176400 + }, + { + "epoch": 23.533333333333335, + "grad_norm": 0.47829073667526245, + "learning_rate": 3.8238600000000004e-05, + "loss": 2.0578681945800783, + "step": 176500 + }, + { + "epoch": 23.546666666666667, + "grad_norm": 0.4869665205478668, + "learning_rate": 3.8231933333333336e-05, + "loss": 2.0592056274414063, + "step": 176600 + }, + { + "epoch": 23.56, + "grad_norm": 0.5007086396217346, + "learning_rate": 3.822526666666667e-05, + "loss": 2.0624826049804685, + "step": 176700 + }, + { + "epoch": 23.573333333333334, + "grad_norm": 0.5046160221099854, + "learning_rate": 3.821860000000001e-05, + "loss": 2.057146453857422, + "step": 176800 + }, + { + "epoch": 23.586666666666666, + "grad_norm": 0.5090702772140503, + "learning_rate": 3.821193333333333e-05, + "loss": 2.060751647949219, + "step": 176900 + }, + { + "epoch": 23.6, + "grad_norm": 0.47376617789268494, + "learning_rate": 3.8205266666666665e-05, + "loss": 2.061948089599609, + "step": 177000 + }, + { + "epoch": 23.613333333333333, + "grad_norm": 0.5011287331581116, + "learning_rate": 3.8198600000000004e-05, + "loss": 2.0626011657714844, + "step": 177100 + }, + { + "epoch": 23.626666666666665, + "grad_norm": 0.47504308819770813, + "learning_rate": 3.8191933333333336e-05, + "loss": 2.062792205810547, + "step": 177200 + }, + { + "epoch": 23.64, + "grad_norm": 0.4749816358089447, + "learning_rate": 3.818526666666667e-05, + "loss": 2.063485412597656, + "step": 177300 + }, + { + "epoch": 23.653333333333332, + "grad_norm": 0.48922663927078247, + "learning_rate": 3.81786e-05, + "loss": 2.065717926025391, + "step": 177400 + }, + { + "epoch": 23.666666666666668, + "grad_norm": 0.5128903985023499, + "learning_rate": 3.817193333333334e-05, + "loss": 2.0668560791015627, + "step": 177500 + }, + { + "epoch": 23.68, + "grad_norm": 0.508452832698822, + "learning_rate": 3.8165266666666665e-05, + "loss": 2.0685348510742188, + "step": 177600 + }, + { + "epoch": 23.693333333333335, + "grad_norm": 0.5150190591812134, + "learning_rate": 3.81586e-05, + "loss": 2.0641282653808593, + "step": 177700 + }, + { + "epoch": 23.706666666666667, + "grad_norm": 0.4919812083244324, + "learning_rate": 3.8151933333333337e-05, + "loss": 2.066805725097656, + "step": 177800 + }, + { + "epoch": 23.72, + "grad_norm": 0.48557278513908386, + "learning_rate": 3.814526666666667e-05, + "loss": 2.066239013671875, + "step": 177900 + }, + { + "epoch": 23.733333333333334, + "grad_norm": 0.500818133354187, + "learning_rate": 3.81386e-05, + "loss": 2.0668170166015627, + "step": 178000 + }, + { + "epoch": 23.746666666666666, + "grad_norm": 0.5056354999542236, + "learning_rate": 3.813193333333333e-05, + "loss": 2.067618103027344, + "step": 178100 + }, + { + "epoch": 23.76, + "grad_norm": 0.4854942858219147, + "learning_rate": 3.812526666666667e-05, + "loss": 2.0688438415527344, + "step": 178200 + }, + { + "epoch": 23.773333333333333, + "grad_norm": 0.48774439096450806, + "learning_rate": 3.8118600000000005e-05, + "loss": 2.072354278564453, + "step": 178300 + }, + { + "epoch": 23.786666666666665, + "grad_norm": 0.4946364462375641, + "learning_rate": 3.811193333333333e-05, + "loss": 2.0678961181640627, + "step": 178400 + }, + { + "epoch": 23.8, + "grad_norm": 0.4886922240257263, + "learning_rate": 3.810526666666667e-05, + "loss": 2.0691818237304687, + "step": 178500 + }, + { + "epoch": 23.813333333333333, + "grad_norm": 0.5024255514144897, + "learning_rate": 3.80986e-05, + "loss": 2.072510223388672, + "step": 178600 + }, + { + "epoch": 23.826666666666668, + "grad_norm": 0.4981136620044708, + "learning_rate": 3.8091933333333334e-05, + "loss": 2.067329864501953, + "step": 178700 + }, + { + "epoch": 23.84, + "grad_norm": 0.48290660977363586, + "learning_rate": 3.8085266666666666e-05, + "loss": 2.0694883728027342, + "step": 178800 + }, + { + "epoch": 23.85333333333333, + "grad_norm": 0.49647679924964905, + "learning_rate": 3.8078600000000005e-05, + "loss": 2.068336639404297, + "step": 178900 + }, + { + "epoch": 23.866666666666667, + "grad_norm": 0.49168041348457336, + "learning_rate": 3.807193333333334e-05, + "loss": 2.0738255310058595, + "step": 179000 + }, + { + "epoch": 23.88, + "grad_norm": 0.49252060055732727, + "learning_rate": 3.806526666666666e-05, + "loss": 2.0729522705078125, + "step": 179100 + }, + { + "epoch": 23.893333333333334, + "grad_norm": 0.49251434206962585, + "learning_rate": 3.80586e-05, + "loss": 2.071816711425781, + "step": 179200 + }, + { + "epoch": 23.906666666666666, + "grad_norm": 0.506790280342102, + "learning_rate": 3.8051933333333334e-05, + "loss": 2.0729002380371093, + "step": 179300 + }, + { + "epoch": 23.92, + "grad_norm": 0.4773724377155304, + "learning_rate": 3.8045266666666666e-05, + "loss": 2.077678680419922, + "step": 179400 + }, + { + "epoch": 23.933333333333334, + "grad_norm": 0.5092328786849976, + "learning_rate": 3.80386e-05, + "loss": 2.07469482421875, + "step": 179500 + }, + { + "epoch": 23.946666666666665, + "grad_norm": 0.4978293776512146, + "learning_rate": 3.803193333333334e-05, + "loss": 2.07491455078125, + "step": 179600 + }, + { + "epoch": 23.96, + "grad_norm": 0.508801281452179, + "learning_rate": 3.802526666666667e-05, + "loss": 2.0768801879882814, + "step": 179700 + }, + { + "epoch": 23.973333333333333, + "grad_norm": 0.4916593134403229, + "learning_rate": 3.80186e-05, + "loss": 2.0758741760253905, + "step": 179800 + }, + { + "epoch": 23.986666666666668, + "grad_norm": 0.5212649703025818, + "learning_rate": 3.8011933333333334e-05, + "loss": 2.0771376037597657, + "step": 179900 + }, + { + "epoch": 24.0, + "grad_norm": 0.4899154007434845, + "learning_rate": 3.800526666666667e-05, + "loss": 2.076003112792969, + "step": 180000 + }, + { + "epoch": 24.013333333333332, + "grad_norm": 0.501743733882904, + "learning_rate": 3.7998666666666666e-05, + "loss": 2.003984069824219, + "step": 180100 + }, + { + "epoch": 24.026666666666667, + "grad_norm": 0.5196168422698975, + "learning_rate": 3.7992e-05, + "loss": 2.0016387939453124, + "step": 180200 + }, + { + "epoch": 24.04, + "grad_norm": 0.5263530015945435, + "learning_rate": 3.798533333333334e-05, + "loss": 2.0039300537109375, + "step": 180300 + }, + { + "epoch": 24.053333333333335, + "grad_norm": 0.4923747777938843, + "learning_rate": 3.797866666666667e-05, + "loss": 2.005165252685547, + "step": 180400 + }, + { + "epoch": 24.066666666666666, + "grad_norm": 0.5033460259437561, + "learning_rate": 3.7972e-05, + "loss": 2.006126708984375, + "step": 180500 + }, + { + "epoch": 24.08, + "grad_norm": 0.5112701058387756, + "learning_rate": 3.7965333333333334e-05, + "loss": 2.0073692321777346, + "step": 180600 + }, + { + "epoch": 24.093333333333334, + "grad_norm": 0.511628270149231, + "learning_rate": 3.795866666666667e-05, + "loss": 2.0070504760742187, + "step": 180700 + }, + { + "epoch": 24.106666666666666, + "grad_norm": 0.5259645581245422, + "learning_rate": 3.7952000000000005e-05, + "loss": 2.005118865966797, + "step": 180800 + }, + { + "epoch": 24.12, + "grad_norm": 0.48191338777542114, + "learning_rate": 3.794533333333333e-05, + "loss": 2.0112799072265624, + "step": 180900 + }, + { + "epoch": 24.133333333333333, + "grad_norm": 0.5414926409721375, + "learning_rate": 3.793866666666667e-05, + "loss": 2.0131875610351564, + "step": 181000 + }, + { + "epoch": 24.14666666666667, + "grad_norm": 0.5131890773773193, + "learning_rate": 3.7932e-05, + "loss": 2.0128208923339845, + "step": 181100 + }, + { + "epoch": 24.16, + "grad_norm": 0.486336350440979, + "learning_rate": 3.7925333333333334e-05, + "loss": 2.017211151123047, + "step": 181200 + }, + { + "epoch": 24.173333333333332, + "grad_norm": 0.49979206919670105, + "learning_rate": 3.7918666666666667e-05, + "loss": 2.013517150878906, + "step": 181300 + }, + { + "epoch": 24.186666666666667, + "grad_norm": 0.508499801158905, + "learning_rate": 3.7912000000000006e-05, + "loss": 2.0146775817871094, + "step": 181400 + }, + { + "epoch": 24.2, + "grad_norm": 0.5656309127807617, + "learning_rate": 3.790533333333334e-05, + "loss": 2.017547607421875, + "step": 181500 + }, + { + "epoch": 24.213333333333335, + "grad_norm": 0.5219641327857971, + "learning_rate": 3.789866666666667e-05, + "loss": 2.0210311889648436, + "step": 181600 + }, + { + "epoch": 24.226666666666667, + "grad_norm": 0.5194352269172668, + "learning_rate": 3.7892e-05, + "loss": 2.016371612548828, + "step": 181700 + }, + { + "epoch": 24.24, + "grad_norm": 0.5241196155548096, + "learning_rate": 3.7885333333333335e-05, + "loss": 2.022900390625, + "step": 181800 + }, + { + "epoch": 24.253333333333334, + "grad_norm": 0.48599502444267273, + "learning_rate": 3.787866666666667e-05, + "loss": 2.0237261962890627, + "step": 181900 + }, + { + "epoch": 24.266666666666666, + "grad_norm": 0.5147618055343628, + "learning_rate": 3.7872e-05, + "loss": 2.023406219482422, + "step": 182000 + }, + { + "epoch": 24.28, + "grad_norm": 0.5101783275604248, + "learning_rate": 3.786533333333334e-05, + "loss": 2.0179656982421874, + "step": 182100 + }, + { + "epoch": 24.293333333333333, + "grad_norm": 0.505097508430481, + "learning_rate": 3.785873333333334e-05, + "loss": 2.0241987609863283, + "step": 182200 + }, + { + "epoch": 24.306666666666665, + "grad_norm": 0.5323469638824463, + "learning_rate": 3.785206666666667e-05, + "loss": 2.0228041076660155, + "step": 182300 + }, + { + "epoch": 24.32, + "grad_norm": 0.5330120325088501, + "learning_rate": 3.78454e-05, + "loss": 2.0276548767089846, + "step": 182400 + }, + { + "epoch": 24.333333333333332, + "grad_norm": 0.5185723900794983, + "learning_rate": 3.7838733333333334e-05, + "loss": 2.027704772949219, + "step": 182500 + }, + { + "epoch": 24.346666666666668, + "grad_norm": 0.5001394152641296, + "learning_rate": 3.783206666666667e-05, + "loss": 2.028656463623047, + "step": 182600 + }, + { + "epoch": 24.36, + "grad_norm": 0.5111181139945984, + "learning_rate": 3.78254e-05, + "loss": 2.0222459411621094, + "step": 182700 + }, + { + "epoch": 24.373333333333335, + "grad_norm": 0.5283573865890503, + "learning_rate": 3.781873333333333e-05, + "loss": 2.025753631591797, + "step": 182800 + }, + { + "epoch": 24.386666666666667, + "grad_norm": 0.5587430000305176, + "learning_rate": 3.781206666666667e-05, + "loss": 2.0282719421386717, + "step": 182900 + }, + { + "epoch": 24.4, + "grad_norm": 0.5276029109954834, + "learning_rate": 3.78054e-05, + "loss": 2.0236598205566407, + "step": 183000 + }, + { + "epoch": 24.413333333333334, + "grad_norm": 0.517819881439209, + "learning_rate": 3.7798733333333335e-05, + "loss": 2.0305661010742186, + "step": 183100 + }, + { + "epoch": 24.426666666666666, + "grad_norm": 0.5286267995834351, + "learning_rate": 3.779206666666667e-05, + "loss": 2.030503387451172, + "step": 183200 + }, + { + "epoch": 24.44, + "grad_norm": 0.5311276912689209, + "learning_rate": 3.7785400000000006e-05, + "loss": 2.0295208740234374, + "step": 183300 + }, + { + "epoch": 24.453333333333333, + "grad_norm": 0.5239437222480774, + "learning_rate": 3.777873333333333e-05, + "loss": 2.032499237060547, + "step": 183400 + }, + { + "epoch": 24.466666666666665, + "grad_norm": 0.5115417242050171, + "learning_rate": 3.7772066666666664e-05, + "loss": 2.0358099365234374, + "step": 183500 + }, + { + "epoch": 24.48, + "grad_norm": 0.5413856506347656, + "learning_rate": 3.77654e-05, + "loss": 2.033902130126953, + "step": 183600 + }, + { + "epoch": 24.493333333333332, + "grad_norm": 0.5350323915481567, + "learning_rate": 3.7758733333333335e-05, + "loss": 2.03102783203125, + "step": 183700 + }, + { + "epoch": 24.506666666666668, + "grad_norm": 0.5200849175453186, + "learning_rate": 3.775206666666667e-05, + "loss": 2.0346524047851564, + "step": 183800 + }, + { + "epoch": 24.52, + "grad_norm": 0.5102962255477905, + "learning_rate": 3.7745400000000006e-05, + "loss": 2.03560791015625, + "step": 183900 + }, + { + "epoch": 24.533333333333335, + "grad_norm": 0.5746884346008301, + "learning_rate": 3.773873333333334e-05, + "loss": 2.0360655212402343, + "step": 184000 + }, + { + "epoch": 24.546666666666667, + "grad_norm": 0.5304731726646423, + "learning_rate": 3.773206666666667e-05, + "loss": 2.0354969787597654, + "step": 184100 + }, + { + "epoch": 24.56, + "grad_norm": 0.5169298648834229, + "learning_rate": 3.772546666666667e-05, + "loss": 2.0382408142089843, + "step": 184200 + }, + { + "epoch": 24.573333333333334, + "grad_norm": 0.5369707345962524, + "learning_rate": 3.77188e-05, + "loss": 2.039522399902344, + "step": 184300 + }, + { + "epoch": 24.586666666666666, + "grad_norm": 0.4798973798751831, + "learning_rate": 3.7712133333333334e-05, + "loss": 2.0367251586914064, + "step": 184400 + }, + { + "epoch": 24.6, + "grad_norm": 0.5089485049247742, + "learning_rate": 3.770546666666667e-05, + "loss": 2.03658203125, + "step": 184500 + }, + { + "epoch": 24.613333333333333, + "grad_norm": 0.5315452814102173, + "learning_rate": 3.76988e-05, + "loss": 2.0440740966796875, + "step": 184600 + }, + { + "epoch": 24.626666666666665, + "grad_norm": 0.5431042313575745, + "learning_rate": 3.769213333333334e-05, + "loss": 2.0387681579589843, + "step": 184700 + }, + { + "epoch": 24.64, + "grad_norm": 0.5244868993759155, + "learning_rate": 3.768546666666667e-05, + "loss": 2.0414497375488283, + "step": 184800 + }, + { + "epoch": 24.653333333333332, + "grad_norm": 0.5108836889266968, + "learning_rate": 3.76788e-05, + "loss": 2.0410122680664062, + "step": 184900 + }, + { + "epoch": 24.666666666666668, + "grad_norm": 0.5050901770591736, + "learning_rate": 3.7672133333333335e-05, + "loss": 2.041776580810547, + "step": 185000 + }, + { + "epoch": 24.68, + "grad_norm": 0.5396665930747986, + "learning_rate": 3.7665466666666674e-05, + "loss": 2.0429249572753907, + "step": 185100 + }, + { + "epoch": 24.693333333333335, + "grad_norm": 0.5454257726669312, + "learning_rate": 3.76588e-05, + "loss": 2.044694671630859, + "step": 185200 + }, + { + "epoch": 24.706666666666667, + "grad_norm": 0.5190442204475403, + "learning_rate": 3.765213333333333e-05, + "loss": 2.04460205078125, + "step": 185300 + }, + { + "epoch": 24.72, + "grad_norm": 0.5234954953193665, + "learning_rate": 3.764546666666667e-05, + "loss": 2.0423243713378905, + "step": 185400 + }, + { + "epoch": 24.733333333333334, + "grad_norm": 0.5175752639770508, + "learning_rate": 3.76388e-05, + "loss": 2.043539276123047, + "step": 185500 + }, + { + "epoch": 24.746666666666666, + "grad_norm": 0.519957423210144, + "learning_rate": 3.7632133333333335e-05, + "loss": 2.0451559448242187, + "step": 185600 + }, + { + "epoch": 24.76, + "grad_norm": 0.49500152468681335, + "learning_rate": 3.762546666666667e-05, + "loss": 2.043379211425781, + "step": 185700 + }, + { + "epoch": 24.773333333333333, + "grad_norm": 0.5160672664642334, + "learning_rate": 3.7618800000000006e-05, + "loss": 2.046691589355469, + "step": 185800 + }, + { + "epoch": 24.786666666666665, + "grad_norm": 0.5067774057388306, + "learning_rate": 3.761213333333333e-05, + "loss": 2.046448211669922, + "step": 185900 + }, + { + "epoch": 24.8, + "grad_norm": 0.537140429019928, + "learning_rate": 3.7605466666666664e-05, + "loss": 2.045804901123047, + "step": 186000 + }, + { + "epoch": 24.813333333333333, + "grad_norm": 0.5184574127197266, + "learning_rate": 3.75988e-05, + "loss": 2.0455780029296875, + "step": 186100 + }, + { + "epoch": 24.826666666666668, + "grad_norm": 0.5265442728996277, + "learning_rate": 3.7592133333333336e-05, + "loss": 2.0486622619628907, + "step": 186200 + }, + { + "epoch": 24.84, + "grad_norm": 0.5227593183517456, + "learning_rate": 3.758546666666667e-05, + "loss": 2.0465821838378906, + "step": 186300 + }, + { + "epoch": 24.85333333333333, + "grad_norm": 0.5115875005722046, + "learning_rate": 3.75788e-05, + "loss": 2.048692321777344, + "step": 186400 + }, + { + "epoch": 24.866666666666667, + "grad_norm": 0.5175586342811584, + "learning_rate": 3.75722e-05, + "loss": 2.04896240234375, + "step": 186500 + }, + { + "epoch": 24.88, + "grad_norm": 0.523460865020752, + "learning_rate": 3.756553333333334e-05, + "loss": 2.0502452087402343, + "step": 186600 + }, + { + "epoch": 24.893333333333334, + "grad_norm": 0.5361924767494202, + "learning_rate": 3.755886666666667e-05, + "loss": 2.0494508361816406, + "step": 186700 + }, + { + "epoch": 24.906666666666666, + "grad_norm": 0.5198230743408203, + "learning_rate": 3.75522e-05, + "loss": 2.0510104370117186, + "step": 186800 + }, + { + "epoch": 24.92, + "grad_norm": 0.5249742269515991, + "learning_rate": 3.7545533333333335e-05, + "loss": 2.05044189453125, + "step": 186900 + }, + { + "epoch": 24.933333333333334, + "grad_norm": 0.5150473117828369, + "learning_rate": 3.753886666666667e-05, + "loss": 2.0530665588378905, + "step": 187000 + }, + { + "epoch": 24.946666666666665, + "grad_norm": 0.5269672870635986, + "learning_rate": 3.75322e-05, + "loss": 2.052723236083984, + "step": 187100 + }, + { + "epoch": 24.96, + "grad_norm": 0.498569518327713, + "learning_rate": 3.752553333333333e-05, + "loss": 2.053250579833984, + "step": 187200 + }, + { + "epoch": 24.973333333333333, + "grad_norm": 0.5326972007751465, + "learning_rate": 3.751886666666667e-05, + "loss": 2.0500621032714843, + "step": 187300 + }, + { + "epoch": 24.986666666666668, + "grad_norm": 0.5814267992973328, + "learning_rate": 3.75122e-05, + "loss": 2.0546443176269533, + "step": 187400 + }, + { + "epoch": 25.0, + "grad_norm": 0.5015130043029785, + "learning_rate": 3.7505533333333335e-05, + "loss": 2.0553138732910154, + "step": 187500 + }, + { + "epoch": 25.013333333333332, + "grad_norm": 0.5198807120323181, + "learning_rate": 3.749886666666667e-05, + "loss": 1.9766946411132813, + "step": 187600 + }, + { + "epoch": 25.026666666666667, + "grad_norm": 0.5337755680084229, + "learning_rate": 3.74922e-05, + "loss": 1.9777664184570312, + "step": 187700 + }, + { + "epoch": 25.04, + "grad_norm": 0.5432220697402954, + "learning_rate": 3.748553333333333e-05, + "loss": 1.9787986755371094, + "step": 187800 + }, + { + "epoch": 25.053333333333335, + "grad_norm": 0.5276835560798645, + "learning_rate": 3.7478866666666664e-05, + "loss": 1.9827880859375, + "step": 187900 + }, + { + "epoch": 25.066666666666666, + "grad_norm": 0.5256075263023376, + "learning_rate": 3.7472200000000004e-05, + "loss": 1.9845838928222657, + "step": 188000 + }, + { + "epoch": 25.08, + "grad_norm": 0.521128237247467, + "learning_rate": 3.7465533333333336e-05, + "loss": 1.984072265625, + "step": 188100 + }, + { + "epoch": 25.093333333333334, + "grad_norm": 0.7402787208557129, + "learning_rate": 3.745886666666667e-05, + "loss": 1.9819233703613282, + "step": 188200 + }, + { + "epoch": 25.106666666666666, + "grad_norm": 0.5602257251739502, + "learning_rate": 3.745220000000001e-05, + "loss": 1.9857809448242187, + "step": 188300 + }, + { + "epoch": 25.12, + "grad_norm": 0.5449258685112, + "learning_rate": 3.744553333333333e-05, + "loss": 1.9836058044433593, + "step": 188400 + }, + { + "epoch": 25.133333333333333, + "grad_norm": 0.5279524326324463, + "learning_rate": 3.7438866666666665e-05, + "loss": 1.9868746948242189, + "step": 188500 + }, + { + "epoch": 25.14666666666667, + "grad_norm": 0.5134731531143188, + "learning_rate": 3.7432200000000004e-05, + "loss": 1.984371337890625, + "step": 188600 + }, + { + "epoch": 25.16, + "grad_norm": 0.534136950969696, + "learning_rate": 3.7425533333333336e-05, + "loss": 1.990037841796875, + "step": 188700 + }, + { + "epoch": 25.173333333333332, + "grad_norm": 0.5440365672111511, + "learning_rate": 3.741886666666667e-05, + "loss": 1.9899058532714844, + "step": 188800 + }, + { + "epoch": 25.186666666666667, + "grad_norm": 0.5396292209625244, + "learning_rate": 3.741226666666667e-05, + "loss": 1.9931028747558595, + "step": 188900 + }, + { + "epoch": 25.2, + "grad_norm": 0.5376026034355164, + "learning_rate": 3.74056e-05, + "loss": 1.99557373046875, + "step": 189000 + }, + { + "epoch": 25.213333333333335, + "grad_norm": 0.5177650451660156, + "learning_rate": 3.739893333333334e-05, + "loss": 1.9946913146972656, + "step": 189100 + }, + { + "epoch": 25.226666666666667, + "grad_norm": 0.5463927984237671, + "learning_rate": 3.739226666666667e-05, + "loss": 1.993941192626953, + "step": 189200 + }, + { + "epoch": 25.24, + "grad_norm": 0.5426744818687439, + "learning_rate": 3.73856e-05, + "loss": 1.9958428955078125, + "step": 189300 + }, + { + "epoch": 25.253333333333334, + "grad_norm": 0.5297708511352539, + "learning_rate": 3.7378933333333336e-05, + "loss": 1.995465087890625, + "step": 189400 + }, + { + "epoch": 25.266666666666666, + "grad_norm": 0.5523133873939514, + "learning_rate": 3.737226666666667e-05, + "loss": 2.0024423217773437, + "step": 189500 + }, + { + "epoch": 25.28, + "grad_norm": 0.551189124584198, + "learning_rate": 3.73656e-05, + "loss": 1.996693115234375, + "step": 189600 + }, + { + "epoch": 25.293333333333333, + "grad_norm": 0.5185670852661133, + "learning_rate": 3.735893333333333e-05, + "loss": 1.9998982238769532, + "step": 189700 + }, + { + "epoch": 25.306666666666665, + "grad_norm": 0.5398461818695068, + "learning_rate": 3.735226666666667e-05, + "loss": 1.9971189880371094, + "step": 189800 + }, + { + "epoch": 25.32, + "grad_norm": 0.5354723930358887, + "learning_rate": 3.7345600000000004e-05, + "loss": 1.9997674560546874, + "step": 189900 + }, + { + "epoch": 25.333333333333332, + "grad_norm": 0.5407664775848389, + "learning_rate": 3.7338933333333336e-05, + "loss": 1.9974674987792969, + "step": 190000 + }, + { + "epoch": 25.346666666666668, + "grad_norm": 0.5344270467758179, + "learning_rate": 3.733226666666667e-05, + "loss": 2.003179473876953, + "step": 190100 + }, + { + "epoch": 25.36, + "grad_norm": 0.5190737247467041, + "learning_rate": 3.73256e-05, + "loss": 2.006910552978516, + "step": 190200 + }, + { + "epoch": 25.373333333333335, + "grad_norm": 0.5444039106369019, + "learning_rate": 3.731893333333333e-05, + "loss": 2.0056292724609377, + "step": 190300 + }, + { + "epoch": 25.386666666666667, + "grad_norm": 0.5827769041061401, + "learning_rate": 3.7312266666666665e-05, + "loss": 2.003057098388672, + "step": 190400 + }, + { + "epoch": 25.4, + "grad_norm": 0.5491002202033997, + "learning_rate": 3.7305600000000004e-05, + "loss": 2.005493469238281, + "step": 190500 + }, + { + "epoch": 25.413333333333334, + "grad_norm": 0.5325082540512085, + "learning_rate": 3.7298933333333336e-05, + "loss": 2.0034739685058596, + "step": 190600 + }, + { + "epoch": 25.426666666666666, + "grad_norm": 0.5534201860427856, + "learning_rate": 3.729226666666667e-05, + "loss": 2.005567169189453, + "step": 190700 + }, + { + "epoch": 25.44, + "grad_norm": 0.5325811505317688, + "learning_rate": 3.72856e-05, + "loss": 2.004087371826172, + "step": 190800 + }, + { + "epoch": 25.453333333333333, + "grad_norm": 0.5336616039276123, + "learning_rate": 3.727893333333333e-05, + "loss": 2.0060054016113282, + "step": 190900 + }, + { + "epoch": 25.466666666666665, + "grad_norm": 0.550896406173706, + "learning_rate": 3.7272266666666665e-05, + "loss": 2.0102296447753907, + "step": 191000 + }, + { + "epoch": 25.48, + "grad_norm": 0.5317057967185974, + "learning_rate": 3.72656e-05, + "loss": 2.0113670349121096, + "step": 191100 + }, + { + "epoch": 25.493333333333332, + "grad_norm": 0.5150067806243896, + "learning_rate": 3.725893333333334e-05, + "loss": 2.013133697509766, + "step": 191200 + }, + { + "epoch": 25.506666666666668, + "grad_norm": 0.5351247787475586, + "learning_rate": 3.725226666666667e-05, + "loss": 2.010963134765625, + "step": 191300 + }, + { + "epoch": 25.52, + "grad_norm": 0.5194895267486572, + "learning_rate": 3.724566666666667e-05, + "loss": 2.012650451660156, + "step": 191400 + }, + { + "epoch": 25.533333333333335, + "grad_norm": 0.539284884929657, + "learning_rate": 3.7239e-05, + "loss": 2.010073394775391, + "step": 191500 + }, + { + "epoch": 25.546666666666667, + "grad_norm": 0.5227241516113281, + "learning_rate": 3.723233333333333e-05, + "loss": 2.011913299560547, + "step": 191600 + }, + { + "epoch": 25.56, + "grad_norm": 0.5342681407928467, + "learning_rate": 3.722566666666667e-05, + "loss": 2.012406921386719, + "step": 191700 + }, + { + "epoch": 25.573333333333334, + "grad_norm": 0.5252745151519775, + "learning_rate": 3.7219000000000004e-05, + "loss": 2.011879577636719, + "step": 191800 + }, + { + "epoch": 25.586666666666666, + "grad_norm": 0.5306975245475769, + "learning_rate": 3.721233333333333e-05, + "loss": 2.0142337036132814, + "step": 191900 + }, + { + "epoch": 25.6, + "grad_norm": 0.5551440119743347, + "learning_rate": 3.720566666666667e-05, + "loss": 2.011077880859375, + "step": 192000 + }, + { + "epoch": 25.613333333333333, + "grad_norm": 0.5400145053863525, + "learning_rate": 3.7199e-05, + "loss": 2.012953643798828, + "step": 192100 + }, + { + "epoch": 25.626666666666665, + "grad_norm": 0.5293111205101013, + "learning_rate": 3.719233333333333e-05, + "loss": 2.0181004333496095, + "step": 192200 + }, + { + "epoch": 25.64, + "grad_norm": 0.5242292284965515, + "learning_rate": 3.7185666666666665e-05, + "loss": 2.017105712890625, + "step": 192300 + }, + { + "epoch": 25.653333333333332, + "grad_norm": 0.5292710065841675, + "learning_rate": 3.7179000000000004e-05, + "loss": 2.0163299560546877, + "step": 192400 + }, + { + "epoch": 25.666666666666668, + "grad_norm": 0.5424890518188477, + "learning_rate": 3.717233333333334e-05, + "loss": 2.015196533203125, + "step": 192500 + }, + { + "epoch": 25.68, + "grad_norm": 0.5193257927894592, + "learning_rate": 3.716566666666667e-05, + "loss": 2.0220237731933595, + "step": 192600 + }, + { + "epoch": 25.693333333333335, + "grad_norm": 0.5442838072776794, + "learning_rate": 3.7159e-05, + "loss": 2.0192355346679687, + "step": 192700 + }, + { + "epoch": 25.706666666666667, + "grad_norm": 0.5463152527809143, + "learning_rate": 3.7152333333333333e-05, + "loss": 2.0164019775390627, + "step": 192800 + }, + { + "epoch": 25.72, + "grad_norm": 0.5344257354736328, + "learning_rate": 3.7145666666666666e-05, + "loss": 2.0162734985351562, + "step": 192900 + }, + { + "epoch": 25.733333333333334, + "grad_norm": 0.5351117253303528, + "learning_rate": 3.7139000000000005e-05, + "loss": 2.023134460449219, + "step": 193000 + }, + { + "epoch": 25.746666666666666, + "grad_norm": 0.5418599843978882, + "learning_rate": 3.713233333333334e-05, + "loss": 2.020071563720703, + "step": 193100 + }, + { + "epoch": 25.76, + "grad_norm": 0.5406211018562317, + "learning_rate": 3.712566666666667e-05, + "loss": 2.0211688232421876, + "step": 193200 + }, + { + "epoch": 25.773333333333333, + "grad_norm": 0.5392265915870667, + "learning_rate": 3.7119e-05, + "loss": 2.02107177734375, + "step": 193300 + }, + { + "epoch": 25.786666666666665, + "grad_norm": 0.5478586554527283, + "learning_rate": 3.71124e-05, + "loss": 2.0197589111328127, + "step": 193400 + }, + { + "epoch": 25.8, + "grad_norm": 0.5384021401405334, + "learning_rate": 3.710573333333334e-05, + "loss": 2.0261798095703125, + "step": 193500 + }, + { + "epoch": 25.813333333333333, + "grad_norm": 0.5637001991271973, + "learning_rate": 3.709906666666667e-05, + "loss": 2.0208526611328126, + "step": 193600 + }, + { + "epoch": 25.826666666666668, + "grad_norm": 0.5373884439468384, + "learning_rate": 3.70924e-05, + "loss": 2.0243865966796877, + "step": 193700 + }, + { + "epoch": 25.84, + "grad_norm": 0.5258835554122925, + "learning_rate": 3.7085733333333336e-05, + "loss": 2.025778961181641, + "step": 193800 + }, + { + "epoch": 25.85333333333333, + "grad_norm": 0.5321053862571716, + "learning_rate": 3.707906666666667e-05, + "loss": 2.0245960998535155, + "step": 193900 + }, + { + "epoch": 25.866666666666667, + "grad_norm": 0.5242984294891357, + "learning_rate": 3.70724e-05, + "loss": 2.027090301513672, + "step": 194000 + }, + { + "epoch": 25.88, + "grad_norm": 0.5495437979698181, + "learning_rate": 3.706573333333333e-05, + "loss": 2.0237530517578124, + "step": 194100 + }, + { + "epoch": 25.893333333333334, + "grad_norm": 0.5291945338249207, + "learning_rate": 3.705906666666667e-05, + "loss": 2.0295460510253904, + "step": 194200 + }, + { + "epoch": 25.906666666666666, + "grad_norm": 0.5402800440788269, + "learning_rate": 3.7052400000000005e-05, + "loss": 2.0260325622558595, + "step": 194300 + }, + { + "epoch": 25.92, + "grad_norm": 0.5184854865074158, + "learning_rate": 3.704573333333334e-05, + "loss": 2.0257765197753907, + "step": 194400 + }, + { + "epoch": 25.933333333333334, + "grad_norm": 0.53758704662323, + "learning_rate": 3.703906666666667e-05, + "loss": 2.0274493408203127, + "step": 194500 + }, + { + "epoch": 25.946666666666665, + "grad_norm": 0.5527028441429138, + "learning_rate": 3.70324e-05, + "loss": 2.0257112121582033, + "step": 194600 + }, + { + "epoch": 25.96, + "grad_norm": 0.5566267967224121, + "learning_rate": 3.7025733333333334e-05, + "loss": 2.026977081298828, + "step": 194700 + }, + { + "epoch": 25.973333333333333, + "grad_norm": 0.5336237549781799, + "learning_rate": 3.7019066666666666e-05, + "loss": 2.028018035888672, + "step": 194800 + }, + { + "epoch": 25.986666666666668, + "grad_norm": 0.5185402631759644, + "learning_rate": 3.7012400000000005e-05, + "loss": 2.0281407165527345, + "step": 194900 + }, + { + "epoch": 26.0, + "grad_norm": 0.5450587272644043, + "learning_rate": 3.700573333333334e-05, + "loss": 2.0281640625, + "step": 195000 + }, + { + "epoch": 26.013333333333332, + "grad_norm": 0.541812002658844, + "learning_rate": 3.699906666666667e-05, + "loss": 1.957196044921875, + "step": 195100 + }, + { + "epoch": 26.026666666666667, + "grad_norm": 0.5567891597747803, + "learning_rate": 3.69924e-05, + "loss": 1.9547212219238281, + "step": 195200 + }, + { + "epoch": 26.04, + "grad_norm": 0.5365836024284363, + "learning_rate": 3.6985733333333334e-05, + "loss": 1.9568002319335938, + "step": 195300 + }, + { + "epoch": 26.053333333333335, + "grad_norm": 0.5200800895690918, + "learning_rate": 3.697913333333334e-05, + "loss": 1.9555859375, + "step": 195400 + }, + { + "epoch": 26.066666666666666, + "grad_norm": 0.5740585327148438, + "learning_rate": 3.6972466666666665e-05, + "loss": 1.9540396118164063, + "step": 195500 + }, + { + "epoch": 26.08, + "grad_norm": 0.5473860502243042, + "learning_rate": 3.69658e-05, + "loss": 1.9564674377441407, + "step": 195600 + }, + { + "epoch": 26.093333333333334, + "grad_norm": 0.5414859652519226, + "learning_rate": 3.695913333333334e-05, + "loss": 1.9615504455566406, + "step": 195700 + }, + { + "epoch": 26.106666666666666, + "grad_norm": 0.5546607375144958, + "learning_rate": 3.695246666666667e-05, + "loss": 1.9621275329589845, + "step": 195800 + }, + { + "epoch": 26.12, + "grad_norm": 0.5604114532470703, + "learning_rate": 3.69458e-05, + "loss": 1.958752899169922, + "step": 195900 + }, + { + "epoch": 26.133333333333333, + "grad_norm": 0.5639984607696533, + "learning_rate": 3.6939133333333334e-05, + "loss": 1.9659051513671875, + "step": 196000 + }, + { + "epoch": 26.14666666666667, + "grad_norm": 0.552521288394928, + "learning_rate": 3.693246666666667e-05, + "loss": 1.9680455017089844, + "step": 196100 + }, + { + "epoch": 26.16, + "grad_norm": 0.5784633755683899, + "learning_rate": 3.69258e-05, + "loss": 1.9671054077148438, + "step": 196200 + }, + { + "epoch": 26.173333333333332, + "grad_norm": 0.558786928653717, + "learning_rate": 3.691913333333333e-05, + "loss": 1.9637820434570312, + "step": 196300 + }, + { + "epoch": 26.186666666666667, + "grad_norm": 0.577648401260376, + "learning_rate": 3.691246666666667e-05, + "loss": 1.9695333862304687, + "step": 196400 + }, + { + "epoch": 26.2, + "grad_norm": 0.5630086064338684, + "learning_rate": 3.69058e-05, + "loss": 1.9683534240722655, + "step": 196500 + }, + { + "epoch": 26.213333333333335, + "grad_norm": 0.5924582481384277, + "learning_rate": 3.6899133333333334e-05, + "loss": 1.9684716796875, + "step": 196600 + }, + { + "epoch": 26.226666666666667, + "grad_norm": 0.5777826309204102, + "learning_rate": 3.689246666666667e-05, + "loss": 1.9659332275390624, + "step": 196700 + }, + { + "epoch": 26.24, + "grad_norm": 0.5597606301307678, + "learning_rate": 3.6885800000000005e-05, + "loss": 1.9684400939941407, + "step": 196800 + }, + { + "epoch": 26.253333333333334, + "grad_norm": 0.5973007082939148, + "learning_rate": 3.687913333333334e-05, + "loss": 1.968690185546875, + "step": 196900 + }, + { + "epoch": 26.266666666666666, + "grad_norm": 0.5487164855003357, + "learning_rate": 3.687246666666666e-05, + "loss": 1.9721401977539061, + "step": 197000 + }, + { + "epoch": 26.28, + "grad_norm": 0.5761642456054688, + "learning_rate": 3.68658e-05, + "loss": 1.9738571166992187, + "step": 197100 + }, + { + "epoch": 26.293333333333333, + "grad_norm": 0.5579527020454407, + "learning_rate": 3.6859133333333334e-05, + "loss": 1.9721127319335938, + "step": 197200 + }, + { + "epoch": 26.306666666666665, + "grad_norm": 0.5521603226661682, + "learning_rate": 3.6852466666666667e-05, + "loss": 1.9772552490234374, + "step": 197300 + }, + { + "epoch": 26.32, + "grad_norm": 0.5767320394515991, + "learning_rate": 3.6845800000000006e-05, + "loss": 1.975111846923828, + "step": 197400 + }, + { + "epoch": 26.333333333333332, + "grad_norm": 0.568122148513794, + "learning_rate": 3.6839200000000005e-05, + "loss": 1.9748057556152343, + "step": 197500 + }, + { + "epoch": 26.346666666666668, + "grad_norm": 0.54569411277771, + "learning_rate": 3.683253333333334e-05, + "loss": 1.975630340576172, + "step": 197600 + }, + { + "epoch": 26.36, + "grad_norm": 0.5550498962402344, + "learning_rate": 3.682586666666667e-05, + "loss": 1.976104736328125, + "step": 197700 + }, + { + "epoch": 26.373333333333335, + "grad_norm": 0.5575002431869507, + "learning_rate": 3.68192e-05, + "loss": 1.979742431640625, + "step": 197800 + }, + { + "epoch": 26.386666666666667, + "grad_norm": 0.5659462809562683, + "learning_rate": 3.681253333333334e-05, + "loss": 1.982191925048828, + "step": 197900 + }, + { + "epoch": 26.4, + "grad_norm": 0.5659615397453308, + "learning_rate": 3.6805866666666666e-05, + "loss": 1.979058837890625, + "step": 198000 + }, + { + "epoch": 26.413333333333334, + "grad_norm": 0.5449748039245605, + "learning_rate": 3.67992e-05, + "loss": 1.9774148559570313, + "step": 198100 + }, + { + "epoch": 26.426666666666666, + "grad_norm": 0.578723669052124, + "learning_rate": 3.679253333333334e-05, + "loss": 1.9768846130371094, + "step": 198200 + }, + { + "epoch": 26.44, + "grad_norm": 0.5675528645515442, + "learning_rate": 3.678586666666667e-05, + "loss": 1.979735107421875, + "step": 198300 + }, + { + "epoch": 26.453333333333333, + "grad_norm": 0.5619545578956604, + "learning_rate": 3.67792e-05, + "loss": 1.9831944274902344, + "step": 198400 + }, + { + "epoch": 26.466666666666665, + "grad_norm": 0.5641692876815796, + "learning_rate": 3.6772533333333334e-05, + "loss": 1.9841481018066407, + "step": 198500 + }, + { + "epoch": 26.48, + "grad_norm": 0.569416344165802, + "learning_rate": 3.676586666666667e-05, + "loss": 1.981822509765625, + "step": 198600 + }, + { + "epoch": 26.493333333333332, + "grad_norm": 0.583523690700531, + "learning_rate": 3.67592e-05, + "loss": 1.982010955810547, + "step": 198700 + }, + { + "epoch": 26.506666666666668, + "grad_norm": 0.5771437883377075, + "learning_rate": 3.675253333333333e-05, + "loss": 1.9882267761230468, + "step": 198800 + }, + { + "epoch": 26.52, + "grad_norm": 0.6403129696846008, + "learning_rate": 3.674586666666667e-05, + "loss": 1.985286102294922, + "step": 198900 + }, + { + "epoch": 26.533333333333335, + "grad_norm": 0.5762969851493835, + "learning_rate": 3.67392e-05, + "loss": 1.9854814147949218, + "step": 199000 + }, + { + "epoch": 26.546666666666667, + "grad_norm": 0.5455479025840759, + "learning_rate": 3.6732533333333335e-05, + "loss": 1.9807121276855468, + "step": 199100 + }, + { + "epoch": 26.56, + "grad_norm": 0.5566051006317139, + "learning_rate": 3.672586666666667e-05, + "loss": 1.99121337890625, + "step": 199200 + }, + { + "epoch": 26.573333333333334, + "grad_norm": 0.5699354410171509, + "learning_rate": 3.6719200000000006e-05, + "loss": 1.9884609985351562, + "step": 199300 + }, + { + "epoch": 26.586666666666666, + "grad_norm": 0.5869739651679993, + "learning_rate": 3.671253333333334e-05, + "loss": 1.9882350158691406, + "step": 199400 + }, + { + "epoch": 26.6, + "grad_norm": 0.5663924813270569, + "learning_rate": 3.670593333333334e-05, + "loss": 1.9908465576171874, + "step": 199500 + }, + { + "epoch": 26.613333333333333, + "grad_norm": 0.5577260255813599, + "learning_rate": 3.669926666666667e-05, + "loss": 1.9867439270019531, + "step": 199600 + }, + { + "epoch": 26.626666666666665, + "grad_norm": 0.5420724153518677, + "learning_rate": 3.66926e-05, + "loss": 1.9890168762207032, + "step": 199700 + }, + { + "epoch": 26.64, + "grad_norm": 0.5668867230415344, + "learning_rate": 3.6685933333333334e-05, + "loss": 1.989038848876953, + "step": 199800 + }, + { + "epoch": 26.653333333333332, + "grad_norm": 0.536382257938385, + "learning_rate": 3.6679266666666666e-05, + "loss": 1.9933232116699218, + "step": 199900 + }, + { + "epoch": 26.666666666666668, + "grad_norm": 0.6233078837394714, + "learning_rate": 3.66726e-05, + "loss": 1.9922142028808594, + "step": 200000 + }, + { + "epoch": 26.68, + "grad_norm": 0.5758584141731262, + "learning_rate": 3.666593333333334e-05, + "loss": 1.9919984436035156, + "step": 200100 + }, + { + "epoch": 26.693333333333335, + "grad_norm": 0.5576504468917847, + "learning_rate": 3.665926666666667e-05, + "loss": 1.9917649841308593, + "step": 200200 + }, + { + "epoch": 26.706666666666667, + "grad_norm": 0.5854286551475525, + "learning_rate": 3.66526e-05, + "loss": 1.9912901306152344, + "step": 200300 + }, + { + "epoch": 26.72, + "grad_norm": 0.5664922595024109, + "learning_rate": 3.6645933333333334e-05, + "loss": 1.998155059814453, + "step": 200400 + }, + { + "epoch": 26.733333333333334, + "grad_norm": 0.5407897233963013, + "learning_rate": 3.663926666666667e-05, + "loss": 1.9952912902832032, + "step": 200500 + }, + { + "epoch": 26.746666666666666, + "grad_norm": 0.5883836150169373, + "learning_rate": 3.66326e-05, + "loss": 1.9951287841796874, + "step": 200600 + }, + { + "epoch": 26.76, + "grad_norm": 0.5882517099380493, + "learning_rate": 3.662593333333333e-05, + "loss": 1.9948817443847657, + "step": 200700 + }, + { + "epoch": 26.773333333333333, + "grad_norm": 0.572609543800354, + "learning_rate": 3.661926666666667e-05, + "loss": 1.9994200134277345, + "step": 200800 + }, + { + "epoch": 26.786666666666665, + "grad_norm": 0.5723763108253479, + "learning_rate": 3.66126e-05, + "loss": 1.9964186096191405, + "step": 200900 + }, + { + "epoch": 26.8, + "grad_norm": 0.571183979511261, + "learning_rate": 3.6605933333333335e-05, + "loss": 1.9989100646972657, + "step": 201000 + }, + { + "epoch": 26.813333333333333, + "grad_norm": 0.5754789113998413, + "learning_rate": 3.6599266666666674e-05, + "loss": 1.9968698120117188, + "step": 201100 + }, + { + "epoch": 26.826666666666668, + "grad_norm": 0.5623466372489929, + "learning_rate": 3.65926e-05, + "loss": 1.9973426818847657, + "step": 201200 + }, + { + "epoch": 26.84, + "grad_norm": 0.5691098570823669, + "learning_rate": 3.658593333333333e-05, + "loss": 1.995333709716797, + "step": 201300 + }, + { + "epoch": 26.85333333333333, + "grad_norm": 0.5785391926765442, + "learning_rate": 3.657926666666667e-05, + "loss": 2.0026919555664064, + "step": 201400 + }, + { + "epoch": 26.866666666666667, + "grad_norm": 0.5716009736061096, + "learning_rate": 3.657266666666666e-05, + "loss": 1.9967724609375, + "step": 201500 + }, + { + "epoch": 26.88, + "grad_norm": 0.5728231072425842, + "learning_rate": 3.6566e-05, + "loss": 2.003606719970703, + "step": 201600 + }, + { + "epoch": 26.893333333333334, + "grad_norm": 0.5723952054977417, + "learning_rate": 3.6559333333333334e-05, + "loss": 2.0006785583496094, + "step": 201700 + }, + { + "epoch": 26.906666666666666, + "grad_norm": 0.5781197547912598, + "learning_rate": 3.6552666666666666e-05, + "loss": 2.001742095947266, + "step": 201800 + }, + { + "epoch": 26.92, + "grad_norm": 0.5599796772003174, + "learning_rate": 3.6546000000000006e-05, + "loss": 2.0006167602539064, + "step": 201900 + }, + { + "epoch": 26.933333333333334, + "grad_norm": 0.6010822653770447, + "learning_rate": 3.653933333333334e-05, + "loss": 2.0031967163085938, + "step": 202000 + }, + { + "epoch": 26.946666666666665, + "grad_norm": 0.563437819480896, + "learning_rate": 3.653266666666667e-05, + "loss": 2.004565887451172, + "step": 202100 + }, + { + "epoch": 26.96, + "grad_norm": 0.5698239803314209, + "learning_rate": 3.6526e-05, + "loss": 2.004854431152344, + "step": 202200 + }, + { + "epoch": 26.973333333333333, + "grad_norm": 0.5538843274116516, + "learning_rate": 3.6519333333333335e-05, + "loss": 2.006410827636719, + "step": 202300 + }, + { + "epoch": 26.986666666666668, + "grad_norm": 0.590229332447052, + "learning_rate": 3.651266666666667e-05, + "loss": 2.004330596923828, + "step": 202400 + }, + { + "epoch": 27.0, + "grad_norm": 0.5651915073394775, + "learning_rate": 3.6506e-05, + "loss": 2.004520263671875, + "step": 202500 + }, + { + "epoch": 27.013333333333332, + "grad_norm": 0.581447184085846, + "learning_rate": 3.649933333333334e-05, + "loss": 1.927707977294922, + "step": 202600 + }, + { + "epoch": 27.026666666666667, + "grad_norm": 0.5724103450775146, + "learning_rate": 3.649266666666667e-05, + "loss": 1.9301573181152343, + "step": 202700 + }, + { + "epoch": 27.04, + "grad_norm": 0.5678054690361023, + "learning_rate": 3.6486e-05, + "loss": 1.9268736267089843, + "step": 202800 + }, + { + "epoch": 27.053333333333335, + "grad_norm": 0.5841068625450134, + "learning_rate": 3.6479333333333335e-05, + "loss": 1.9276795959472657, + "step": 202900 + }, + { + "epoch": 27.066666666666666, + "grad_norm": 0.5919205546379089, + "learning_rate": 3.647266666666667e-05, + "loss": 1.9338473510742187, + "step": 203000 + }, + { + "epoch": 27.08, + "grad_norm": 0.593210756778717, + "learning_rate": 3.6466e-05, + "loss": 1.9268548583984375, + "step": 203100 + }, + { + "epoch": 27.093333333333334, + "grad_norm": 0.5299606919288635, + "learning_rate": 3.645933333333333e-05, + "loss": 1.9322509765625, + "step": 203200 + }, + { + "epoch": 27.106666666666666, + "grad_norm": 0.5877776741981506, + "learning_rate": 3.645266666666667e-05, + "loss": 1.9314346313476562, + "step": 203300 + }, + { + "epoch": 27.12, + "grad_norm": 0.5868698954582214, + "learning_rate": 3.6446e-05, + "loss": 1.9356802368164063, + "step": 203400 + }, + { + "epoch": 27.133333333333333, + "grad_norm": 0.5853486061096191, + "learning_rate": 3.64394e-05, + "loss": 1.9343838500976562, + "step": 203500 + }, + { + "epoch": 27.14666666666667, + "grad_norm": 0.5599203705787659, + "learning_rate": 3.6432733333333334e-05, + "loss": 1.9365560913085937, + "step": 203600 + }, + { + "epoch": 27.16, + "grad_norm": 0.5584514737129211, + "learning_rate": 3.642606666666667e-05, + "loss": 1.9372349548339844, + "step": 203700 + }, + { + "epoch": 27.173333333333332, + "grad_norm": 0.5899976491928101, + "learning_rate": 3.6419400000000006e-05, + "loss": 1.94076416015625, + "step": 203800 + }, + { + "epoch": 27.186666666666667, + "grad_norm": 0.5896082520484924, + "learning_rate": 3.641273333333334e-05, + "loss": 1.9411949157714843, + "step": 203900 + }, + { + "epoch": 27.2, + "grad_norm": 0.6029268503189087, + "learning_rate": 3.6406066666666663e-05, + "loss": 1.9456289672851563, + "step": 204000 + }, + { + "epoch": 27.213333333333335, + "grad_norm": 0.5602301955223083, + "learning_rate": 3.63994e-05, + "loss": 1.9383029174804687, + "step": 204100 + }, + { + "epoch": 27.226666666666667, + "grad_norm": 0.5736998319625854, + "learning_rate": 3.6392733333333335e-05, + "loss": 1.945543975830078, + "step": 204200 + }, + { + "epoch": 27.24, + "grad_norm": 0.5835820436477661, + "learning_rate": 3.638606666666667e-05, + "loss": 1.9456192016601563, + "step": 204300 + }, + { + "epoch": 27.253333333333334, + "grad_norm": 0.5935140252113342, + "learning_rate": 3.63794e-05, + "loss": 1.9459524536132813, + "step": 204400 + }, + { + "epoch": 27.266666666666666, + "grad_norm": 0.5856873393058777, + "learning_rate": 3.637273333333334e-05, + "loss": 1.9468795776367187, + "step": 204500 + }, + { + "epoch": 27.28, + "grad_norm": 0.5846020579338074, + "learning_rate": 3.636606666666667e-05, + "loss": 1.947487335205078, + "step": 204600 + }, + { + "epoch": 27.293333333333333, + "grad_norm": 0.6289901733398438, + "learning_rate": 3.6359399999999996e-05, + "loss": 1.9467887878417969, + "step": 204700 + }, + { + "epoch": 27.306666666666665, + "grad_norm": 0.5840248465538025, + "learning_rate": 3.6352733333333335e-05, + "loss": 1.9474456787109375, + "step": 204800 + }, + { + "epoch": 27.32, + "grad_norm": 0.5707332491874695, + "learning_rate": 3.634606666666667e-05, + "loss": 1.9438954162597657, + "step": 204900 + }, + { + "epoch": 27.333333333333332, + "grad_norm": 0.5975301861763, + "learning_rate": 3.63394e-05, + "loss": 1.951266326904297, + "step": 205000 + }, + { + "epoch": 27.346666666666668, + "grad_norm": 0.5705687999725342, + "learning_rate": 3.633273333333333e-05, + "loss": 1.9507940673828126, + "step": 205100 + }, + { + "epoch": 27.36, + "grad_norm": 0.5590121150016785, + "learning_rate": 3.632606666666667e-05, + "loss": 1.9493692016601563, + "step": 205200 + }, + { + "epoch": 27.373333333333335, + "grad_norm": 0.5685244798660278, + "learning_rate": 3.63194e-05, + "loss": 1.950657196044922, + "step": 205300 + }, + { + "epoch": 27.386666666666667, + "grad_norm": 0.5888789892196655, + "learning_rate": 3.6312733333333336e-05, + "loss": 1.9549993896484374, + "step": 205400 + }, + { + "epoch": 27.4, + "grad_norm": 0.5904676914215088, + "learning_rate": 3.6306133333333335e-05, + "loss": 1.955000762939453, + "step": 205500 + }, + { + "epoch": 27.413333333333334, + "grad_norm": 0.5819377303123474, + "learning_rate": 3.6299466666666674e-05, + "loss": 1.9578860473632813, + "step": 205600 + }, + { + "epoch": 27.426666666666666, + "grad_norm": 0.5758692026138306, + "learning_rate": 3.62928e-05, + "loss": 1.9549250793457031, + "step": 205700 + }, + { + "epoch": 27.44, + "grad_norm": 0.6009901165962219, + "learning_rate": 3.628613333333333e-05, + "loss": 1.952675323486328, + "step": 205800 + }, + { + "epoch": 27.453333333333333, + "grad_norm": 0.5837755799293518, + "learning_rate": 3.627946666666667e-05, + "loss": 1.9591851806640626, + "step": 205900 + }, + { + "epoch": 27.466666666666665, + "grad_norm": 0.5634909272193909, + "learning_rate": 3.62728e-05, + "loss": 1.9552839660644532, + "step": 206000 + }, + { + "epoch": 27.48, + "grad_norm": 0.5781852602958679, + "learning_rate": 3.6266133333333335e-05, + "loss": 1.9604965209960938, + "step": 206100 + }, + { + "epoch": 27.493333333333332, + "grad_norm": 0.58583664894104, + "learning_rate": 3.625946666666667e-05, + "loss": 1.9583544921875, + "step": 206200 + }, + { + "epoch": 27.506666666666668, + "grad_norm": 0.5962403416633606, + "learning_rate": 3.6252800000000006e-05, + "loss": 1.9607644653320313, + "step": 206300 + }, + { + "epoch": 27.52, + "grad_norm": 0.5640053749084473, + "learning_rate": 3.624613333333334e-05, + "loss": 1.9606808471679686, + "step": 206400 + }, + { + "epoch": 27.533333333333335, + "grad_norm": 0.5817745327949524, + "learning_rate": 3.6239466666666664e-05, + "loss": 1.9592042541503907, + "step": 206500 + }, + { + "epoch": 27.546666666666667, + "grad_norm": 0.6114230751991272, + "learning_rate": 3.62328e-05, + "loss": 1.9615921020507812, + "step": 206600 + }, + { + "epoch": 27.56, + "grad_norm": 0.5722009539604187, + "learning_rate": 3.6226133333333335e-05, + "loss": 1.9608853149414063, + "step": 206700 + }, + { + "epoch": 27.573333333333334, + "grad_norm": 0.5720607042312622, + "learning_rate": 3.621946666666667e-05, + "loss": 1.962681884765625, + "step": 206800 + }, + { + "epoch": 27.586666666666666, + "grad_norm": 0.596661388874054, + "learning_rate": 3.62128e-05, + "loss": 1.9644792175292969, + "step": 206900 + }, + { + "epoch": 27.6, + "grad_norm": 0.5807399749755859, + "learning_rate": 3.620613333333334e-05, + "loss": 1.9695454406738282, + "step": 207000 + }, + { + "epoch": 27.613333333333333, + "grad_norm": 0.5708223581314087, + "learning_rate": 3.619946666666667e-05, + "loss": 1.963555145263672, + "step": 207100 + }, + { + "epoch": 27.626666666666665, + "grad_norm": 0.5941387414932251, + "learning_rate": 3.6192800000000004e-05, + "loss": 1.9702226257324218, + "step": 207200 + }, + { + "epoch": 27.64, + "grad_norm": 0.568341851234436, + "learning_rate": 3.6186133333333336e-05, + "loss": 1.9717837524414064, + "step": 207300 + }, + { + "epoch": 27.653333333333332, + "grad_norm": 0.5917574167251587, + "learning_rate": 3.617946666666667e-05, + "loss": 1.9671156311035156, + "step": 207400 + }, + { + "epoch": 27.666666666666668, + "grad_norm": 0.5893895030021667, + "learning_rate": 3.61728e-05, + "loss": 1.9676268005371094, + "step": 207500 + }, + { + "epoch": 27.68, + "grad_norm": 0.5909178256988525, + "learning_rate": 3.61662e-05, + "loss": 1.9683328247070313, + "step": 207600 + }, + { + "epoch": 27.693333333333335, + "grad_norm": 0.601280689239502, + "learning_rate": 3.615953333333333e-05, + "loss": 1.9703788757324219, + "step": 207700 + }, + { + "epoch": 27.706666666666667, + "grad_norm": 0.5855022072792053, + "learning_rate": 3.615286666666667e-05, + "loss": 1.9706231689453124, + "step": 207800 + }, + { + "epoch": 27.72, + "grad_norm": 0.5767050385475159, + "learning_rate": 3.61462e-05, + "loss": 1.9699440002441406, + "step": 207900 + }, + { + "epoch": 27.733333333333334, + "grad_norm": 0.5902249813079834, + "learning_rate": 3.6139533333333335e-05, + "loss": 1.964881134033203, + "step": 208000 + }, + { + "epoch": 27.746666666666666, + "grad_norm": 0.5634693503379822, + "learning_rate": 3.613286666666667e-05, + "loss": 1.9723870849609375, + "step": 208100 + }, + { + "epoch": 27.76, + "grad_norm": 0.6080737113952637, + "learning_rate": 3.6126200000000007e-05, + "loss": 1.968502197265625, + "step": 208200 + }, + { + "epoch": 27.773333333333333, + "grad_norm": 0.5652815103530884, + "learning_rate": 3.611953333333333e-05, + "loss": 1.9760067749023438, + "step": 208300 + }, + { + "epoch": 27.786666666666665, + "grad_norm": 0.5851750373840332, + "learning_rate": 3.6112866666666664e-05, + "loss": 1.9739956665039062, + "step": 208400 + }, + { + "epoch": 27.8, + "grad_norm": 0.5799194574356079, + "learning_rate": 3.61062e-05, + "loss": 1.9709002685546875, + "step": 208500 + }, + { + "epoch": 27.813333333333333, + "grad_norm": 0.607318103313446, + "learning_rate": 3.6099533333333336e-05, + "loss": 1.9714559936523437, + "step": 208600 + }, + { + "epoch": 27.826666666666668, + "grad_norm": 0.570615828037262, + "learning_rate": 3.609286666666667e-05, + "loss": 1.9726187133789062, + "step": 208700 + }, + { + "epoch": 27.84, + "grad_norm": 0.5773420929908752, + "learning_rate": 3.60862e-05, + "loss": 1.9740589904785155, + "step": 208800 + }, + { + "epoch": 27.85333333333333, + "grad_norm": 0.5621991753578186, + "learning_rate": 3.607953333333334e-05, + "loss": 1.9761262512207032, + "step": 208900 + }, + { + "epoch": 27.866666666666667, + "grad_norm": 0.5754197835922241, + "learning_rate": 3.6072866666666665e-05, + "loss": 1.9745481872558595, + "step": 209000 + }, + { + "epoch": 27.88, + "grad_norm": 0.5961983799934387, + "learning_rate": 3.60662e-05, + "loss": 1.9757182312011718, + "step": 209100 + }, + { + "epoch": 27.893333333333334, + "grad_norm": 0.5758571028709412, + "learning_rate": 3.6059533333333336e-05, + "loss": 1.974927978515625, + "step": 209200 + }, + { + "epoch": 27.906666666666666, + "grad_norm": 0.5897004008293152, + "learning_rate": 3.605286666666667e-05, + "loss": 1.97732177734375, + "step": 209300 + }, + { + "epoch": 27.92, + "grad_norm": 0.5555986762046814, + "learning_rate": 3.60462e-05, + "loss": 1.97912841796875, + "step": 209400 + }, + { + "epoch": 27.933333333333334, + "grad_norm": 0.5782080888748169, + "learning_rate": 3.603953333333334e-05, + "loss": 1.9758847045898438, + "step": 209500 + }, + { + "epoch": 27.946666666666665, + "grad_norm": 0.5872431397438049, + "learning_rate": 3.603293333333333e-05, + "loss": 1.9807801818847657, + "step": 209600 + }, + { + "epoch": 27.96, + "grad_norm": 0.6015269756317139, + "learning_rate": 3.602626666666667e-05, + "loss": 1.9804434204101562, + "step": 209700 + }, + { + "epoch": 27.973333333333333, + "grad_norm": 0.6062453985214233, + "learning_rate": 3.60196e-05, + "loss": 1.9817405700683595, + "step": 209800 + }, + { + "epoch": 27.986666666666668, + "grad_norm": 0.5964453220367432, + "learning_rate": 3.6012933333333335e-05, + "loss": 1.9792985534667968, + "step": 209900 + }, + { + "epoch": 28.0, + "grad_norm": 0.5917948484420776, + "learning_rate": 3.600626666666667e-05, + "loss": 1.9797233581542968, + "step": 210000 + }, + { + "epoch": 28.013333333333332, + "grad_norm": 0.5753324031829834, + "learning_rate": 3.59996e-05, + "loss": 1.8963658142089843, + "step": 210100 + }, + { + "epoch": 28.026666666666667, + "grad_norm": 0.5823311805725098, + "learning_rate": 3.599293333333333e-05, + "loss": 1.90039794921875, + "step": 210200 + }, + { + "epoch": 28.04, + "grad_norm": 0.6098815202713013, + "learning_rate": 3.598626666666667e-05, + "loss": 1.9037353515625, + "step": 210300 + }, + { + "epoch": 28.053333333333335, + "grad_norm": 0.591463565826416, + "learning_rate": 3.5979600000000004e-05, + "loss": 1.9031809997558593, + "step": 210400 + }, + { + "epoch": 28.066666666666666, + "grad_norm": 0.6484287977218628, + "learning_rate": 3.5972933333333336e-05, + "loss": 1.90722900390625, + "step": 210500 + }, + { + "epoch": 28.08, + "grad_norm": 0.5851206183433533, + "learning_rate": 3.596626666666667e-05, + "loss": 1.907454376220703, + "step": 210600 + }, + { + "epoch": 28.093333333333334, + "grad_norm": 0.5893003940582275, + "learning_rate": 3.595960000000001e-05, + "loss": 1.9102708435058593, + "step": 210700 + }, + { + "epoch": 28.106666666666666, + "grad_norm": 0.5920806527137756, + "learning_rate": 3.595293333333333e-05, + "loss": 1.906302490234375, + "step": 210800 + }, + { + "epoch": 28.12, + "grad_norm": 0.5820571780204773, + "learning_rate": 3.5946266666666665e-05, + "loss": 1.9106333923339844, + "step": 210900 + }, + { + "epoch": 28.133333333333333, + "grad_norm": 0.6000703573226929, + "learning_rate": 3.5939600000000004e-05, + "loss": 1.9108970642089844, + "step": 211000 + }, + { + "epoch": 28.14666666666667, + "grad_norm": 0.6043274402618408, + "learning_rate": 3.5932933333333336e-05, + "loss": 1.9127066040039062, + "step": 211100 + }, + { + "epoch": 28.16, + "grad_norm": 0.589103639125824, + "learning_rate": 3.592626666666667e-05, + "loss": 1.9146939086914063, + "step": 211200 + }, + { + "epoch": 28.173333333333332, + "grad_norm": 0.5709384679794312, + "learning_rate": 3.59196e-05, + "loss": 1.9095561218261718, + "step": 211300 + }, + { + "epoch": 28.186666666666667, + "grad_norm": 0.6060921549797058, + "learning_rate": 3.591293333333334e-05, + "loss": 1.912783203125, + "step": 211400 + }, + { + "epoch": 28.2, + "grad_norm": 0.6131394505500793, + "learning_rate": 3.5906266666666665e-05, + "loss": 1.9097198486328124, + "step": 211500 + }, + { + "epoch": 28.213333333333335, + "grad_norm": 0.5825812220573425, + "learning_rate": 3.589966666666667e-05, + "loss": 1.9186415100097656, + "step": 211600 + }, + { + "epoch": 28.226666666666667, + "grad_norm": 0.5944445729255676, + "learning_rate": 3.5893000000000003e-05, + "loss": 1.9187173461914062, + "step": 211700 + }, + { + "epoch": 28.24, + "grad_norm": 0.5729975700378418, + "learning_rate": 3.5886333333333336e-05, + "loss": 1.9198851013183593, + "step": 211800 + }, + { + "epoch": 28.253333333333334, + "grad_norm": 0.6041490435600281, + "learning_rate": 3.587966666666667e-05, + "loss": 1.9200152587890624, + "step": 211900 + }, + { + "epoch": 28.266666666666666, + "grad_norm": 0.6032606363296509, + "learning_rate": 3.5873e-05, + "loss": 1.9239161682128907, + "step": 212000 + }, + { + "epoch": 28.28, + "grad_norm": 0.6063857078552246, + "learning_rate": 3.586633333333333e-05, + "loss": 1.921931915283203, + "step": 212100 + }, + { + "epoch": 28.293333333333333, + "grad_norm": 0.6095187664031982, + "learning_rate": 3.585966666666667e-05, + "loss": 1.9245355224609375, + "step": 212200 + }, + { + "epoch": 28.306666666666665, + "grad_norm": 0.6013233065605164, + "learning_rate": 3.5853000000000004e-05, + "loss": 1.920060577392578, + "step": 212300 + }, + { + "epoch": 28.32, + "grad_norm": 0.5829028487205505, + "learning_rate": 3.5846333333333336e-05, + "loss": 1.923076171875, + "step": 212400 + }, + { + "epoch": 28.333333333333332, + "grad_norm": 0.6095953583717346, + "learning_rate": 3.583966666666667e-05, + "loss": 1.9266374206542969, + "step": 212500 + }, + { + "epoch": 28.346666666666668, + "grad_norm": 0.6123775243759155, + "learning_rate": 3.5833e-05, + "loss": 1.923944091796875, + "step": 212600 + }, + { + "epoch": 28.36, + "grad_norm": 0.6038895845413208, + "learning_rate": 3.582633333333333e-05, + "loss": 1.9256845092773438, + "step": 212700 + }, + { + "epoch": 28.373333333333335, + "grad_norm": 0.5949887037277222, + "learning_rate": 3.5819666666666665e-05, + "loss": 1.925125732421875, + "step": 212800 + }, + { + "epoch": 28.386666666666667, + "grad_norm": 0.5919845104217529, + "learning_rate": 3.5813000000000004e-05, + "loss": 1.92591796875, + "step": 212900 + }, + { + "epoch": 28.4, + "grad_norm": 0.5925742387771606, + "learning_rate": 3.5806333333333336e-05, + "loss": 1.9260887145996093, + "step": 213000 + }, + { + "epoch": 28.413333333333334, + "grad_norm": 0.5978710055351257, + "learning_rate": 3.579966666666667e-05, + "loss": 1.9299237060546874, + "step": 213100 + }, + { + "epoch": 28.426666666666666, + "grad_norm": 0.6156143546104431, + "learning_rate": 3.5793e-05, + "loss": 1.9283975219726563, + "step": 213200 + }, + { + "epoch": 28.44, + "grad_norm": 0.6074989438056946, + "learning_rate": 3.578633333333333e-05, + "loss": 1.9329901123046875, + "step": 213300 + }, + { + "epoch": 28.453333333333333, + "grad_norm": 0.6070049405097961, + "learning_rate": 3.5779666666666666e-05, + "loss": 1.9311386108398438, + "step": 213400 + }, + { + "epoch": 28.466666666666665, + "grad_norm": 0.627319872379303, + "learning_rate": 3.5773e-05, + "loss": 1.93387451171875, + "step": 213500 + }, + { + "epoch": 28.48, + "grad_norm": 0.6070690155029297, + "learning_rate": 3.57664e-05, + "loss": 1.933914337158203, + "step": 213600 + }, + { + "epoch": 28.493333333333332, + "grad_norm": 0.6085487008094788, + "learning_rate": 3.5759733333333336e-05, + "loss": 1.9377674865722656, + "step": 213700 + }, + { + "epoch": 28.506666666666668, + "grad_norm": 0.6239941120147705, + "learning_rate": 3.575306666666667e-05, + "loss": 1.9339775085449218, + "step": 213800 + }, + { + "epoch": 28.52, + "grad_norm": 0.6024758219718933, + "learning_rate": 3.57464e-05, + "loss": 1.9365673828125, + "step": 213900 + }, + { + "epoch": 28.533333333333335, + "grad_norm": 0.6340709924697876, + "learning_rate": 3.573973333333334e-05, + "loss": 1.9337480163574219, + "step": 214000 + }, + { + "epoch": 28.546666666666667, + "grad_norm": 0.5885015726089478, + "learning_rate": 3.573306666666667e-05, + "loss": 1.935907745361328, + "step": 214100 + }, + { + "epoch": 28.56, + "grad_norm": 0.6116124391555786, + "learning_rate": 3.5726400000000004e-05, + "loss": 1.9376171875, + "step": 214200 + }, + { + "epoch": 28.573333333333334, + "grad_norm": 0.5820707082748413, + "learning_rate": 3.571973333333333e-05, + "loss": 1.9389529418945313, + "step": 214300 + }, + { + "epoch": 28.586666666666666, + "grad_norm": 0.5670823454856873, + "learning_rate": 3.571306666666667e-05, + "loss": 1.938601531982422, + "step": 214400 + }, + { + "epoch": 28.6, + "grad_norm": 0.6194178462028503, + "learning_rate": 3.57064e-05, + "loss": 1.9407998657226562, + "step": 214500 + }, + { + "epoch": 28.613333333333333, + "grad_norm": 0.6202486753463745, + "learning_rate": 3.569973333333333e-05, + "loss": 1.9379768371582031, + "step": 214600 + }, + { + "epoch": 28.626666666666665, + "grad_norm": 0.6014044880867004, + "learning_rate": 3.569306666666667e-05, + "loss": 1.9406600952148438, + "step": 214700 + }, + { + "epoch": 28.64, + "grad_norm": 0.6088877320289612, + "learning_rate": 3.5686400000000004e-05, + "loss": 1.9415878295898437, + "step": 214800 + }, + { + "epoch": 28.653333333333332, + "grad_norm": 0.6067546010017395, + "learning_rate": 3.567973333333334e-05, + "loss": 1.9418251037597656, + "step": 214900 + }, + { + "epoch": 28.666666666666668, + "grad_norm": 0.5925686955451965, + "learning_rate": 3.567306666666667e-05, + "loss": 1.9406690979003907, + "step": 215000 + }, + { + "epoch": 28.68, + "grad_norm": 0.6045867800712585, + "learning_rate": 3.56664e-05, + "loss": 1.9402273559570313, + "step": 215100 + }, + { + "epoch": 28.693333333333335, + "grad_norm": 0.6042197942733765, + "learning_rate": 3.5659733333333334e-05, + "loss": 1.9467068481445313, + "step": 215200 + }, + { + "epoch": 28.706666666666667, + "grad_norm": 0.6190263628959656, + "learning_rate": 3.5653066666666666e-05, + "loss": 1.9422659301757812, + "step": 215300 + }, + { + "epoch": 28.72, + "grad_norm": 0.6239484548568726, + "learning_rate": 3.5646400000000005e-05, + "loss": 1.9453689575195312, + "step": 215400 + }, + { + "epoch": 28.733333333333334, + "grad_norm": 0.5972684621810913, + "learning_rate": 3.563973333333334e-05, + "loss": 1.945398406982422, + "step": 215500 + }, + { + "epoch": 28.746666666666666, + "grad_norm": 0.6258236169815063, + "learning_rate": 3.5633133333333336e-05, + "loss": 1.947290802001953, + "step": 215600 + }, + { + "epoch": 28.76, + "grad_norm": 0.6004676818847656, + "learning_rate": 3.562646666666667e-05, + "loss": 1.9425833129882812, + "step": 215700 + }, + { + "epoch": 28.773333333333333, + "grad_norm": 0.6066743731498718, + "learning_rate": 3.56198e-05, + "loss": 1.9450428771972657, + "step": 215800 + }, + { + "epoch": 28.786666666666665, + "grad_norm": 0.6220128536224365, + "learning_rate": 3.561313333333334e-05, + "loss": 1.9462014770507812, + "step": 215900 + }, + { + "epoch": 28.8, + "grad_norm": 0.6090360283851624, + "learning_rate": 3.5606466666666665e-05, + "loss": 1.9469538879394532, + "step": 216000 + }, + { + "epoch": 28.813333333333333, + "grad_norm": 0.5942463278770447, + "learning_rate": 3.55998e-05, + "loss": 1.9527642822265625, + "step": 216100 + }, + { + "epoch": 28.826666666666668, + "grad_norm": 0.6522825360298157, + "learning_rate": 3.5593133333333337e-05, + "loss": 1.947396240234375, + "step": 216200 + }, + { + "epoch": 28.84, + "grad_norm": 0.6047014594078064, + "learning_rate": 3.558646666666667e-05, + "loss": 1.953114013671875, + "step": 216300 + }, + { + "epoch": 28.85333333333333, + "grad_norm": 0.6015614867210388, + "learning_rate": 3.55798e-05, + "loss": 1.9483316040039063, + "step": 216400 + }, + { + "epoch": 28.866666666666667, + "grad_norm": 0.588139533996582, + "learning_rate": 3.557313333333333e-05, + "loss": 1.95369384765625, + "step": 216500 + }, + { + "epoch": 28.88, + "grad_norm": 0.6121417880058289, + "learning_rate": 3.556646666666667e-05, + "loss": 1.9504942321777343, + "step": 216600 + }, + { + "epoch": 28.893333333333334, + "grad_norm": 0.6152277588844299, + "learning_rate": 3.5559800000000005e-05, + "loss": 1.9528102111816406, + "step": 216700 + }, + { + "epoch": 28.906666666666666, + "grad_norm": 0.5864558815956116, + "learning_rate": 3.555313333333333e-05, + "loss": 1.9556744384765625, + "step": 216800 + }, + { + "epoch": 28.92, + "grad_norm": 0.6150722503662109, + "learning_rate": 3.554646666666667e-05, + "loss": 1.9557850646972657, + "step": 216900 + }, + { + "epoch": 28.933333333333334, + "grad_norm": 0.6126604676246643, + "learning_rate": 3.55398e-05, + "loss": 1.957655487060547, + "step": 217000 + }, + { + "epoch": 28.946666666666665, + "grad_norm": 0.6212007403373718, + "learning_rate": 3.5533133333333334e-05, + "loss": 1.952845458984375, + "step": 217100 + }, + { + "epoch": 28.96, + "grad_norm": 0.6093801856040955, + "learning_rate": 3.5526466666666666e-05, + "loss": 1.9500978088378906, + "step": 217200 + }, + { + "epoch": 28.973333333333333, + "grad_norm": 0.6195286512374878, + "learning_rate": 3.5519800000000005e-05, + "loss": 1.9568482971191405, + "step": 217300 + }, + { + "epoch": 28.986666666666668, + "grad_norm": 0.6141052842140198, + "learning_rate": 3.551313333333334e-05, + "loss": 1.9551716613769532, + "step": 217400 + }, + { + "epoch": 29.0, + "grad_norm": 0.6240456700325012, + "learning_rate": 3.550646666666666e-05, + "loss": 1.9593727111816406, + "step": 217500 + }, + { + "epoch": 29.013333333333332, + "grad_norm": 0.6141709089279175, + "learning_rate": 3.549986666666667e-05, + "loss": 1.8731291198730469, + "step": 217600 + }, + { + "epoch": 29.026666666666667, + "grad_norm": 0.6149386763572693, + "learning_rate": 3.54932e-05, + "loss": 1.8731167602539063, + "step": 217700 + }, + { + "epoch": 29.04, + "grad_norm": 0.6323212385177612, + "learning_rate": 3.548653333333333e-05, + "loss": 1.871314697265625, + "step": 217800 + }, + { + "epoch": 29.053333333333335, + "grad_norm": 0.6484255790710449, + "learning_rate": 3.5479866666666665e-05, + "loss": 1.8755429077148438, + "step": 217900 + }, + { + "epoch": 29.066666666666666, + "grad_norm": 0.6272088289260864, + "learning_rate": 3.54732e-05, + "loss": 1.8729833984375, + "step": 218000 + }, + { + "epoch": 29.08, + "grad_norm": 0.6121836304664612, + "learning_rate": 3.546653333333334e-05, + "loss": 1.87686767578125, + "step": 218100 + }, + { + "epoch": 29.093333333333334, + "grad_norm": 0.6073644757270813, + "learning_rate": 3.545986666666667e-05, + "loss": 1.8814959716796875, + "step": 218200 + }, + { + "epoch": 29.106666666666666, + "grad_norm": 0.6518145799636841, + "learning_rate": 3.54532e-05, + "loss": 1.8825758361816407, + "step": 218300 + }, + { + "epoch": 29.12, + "grad_norm": 0.6225592494010925, + "learning_rate": 3.544653333333334e-05, + "loss": 1.8884323120117188, + "step": 218400 + }, + { + "epoch": 29.133333333333333, + "grad_norm": 0.6254275441169739, + "learning_rate": 3.5439866666666666e-05, + "loss": 1.8810324096679687, + "step": 218500 + }, + { + "epoch": 29.14666666666667, + "grad_norm": 0.6428091526031494, + "learning_rate": 3.54332e-05, + "loss": 1.8841964721679687, + "step": 218600 + }, + { + "epoch": 29.16, + "grad_norm": 0.6066590547561646, + "learning_rate": 3.542653333333334e-05, + "loss": 1.8872183227539063, + "step": 218700 + }, + { + "epoch": 29.173333333333332, + "grad_norm": 0.6072599291801453, + "learning_rate": 3.541986666666667e-05, + "loss": 1.888301544189453, + "step": 218800 + }, + { + "epoch": 29.186666666666667, + "grad_norm": 0.6293680667877197, + "learning_rate": 3.54132e-05, + "loss": 1.891027374267578, + "step": 218900 + }, + { + "epoch": 29.2, + "grad_norm": 0.6067629456520081, + "learning_rate": 3.5406533333333334e-05, + "loss": 1.8863351440429688, + "step": 219000 + }, + { + "epoch": 29.213333333333335, + "grad_norm": 0.5995946526527405, + "learning_rate": 3.539986666666667e-05, + "loss": 1.8922694396972657, + "step": 219100 + }, + { + "epoch": 29.226666666666667, + "grad_norm": 0.6211652159690857, + "learning_rate": 3.5393200000000005e-05, + "loss": 1.8898019409179687, + "step": 219200 + }, + { + "epoch": 29.24, + "grad_norm": 0.6280918717384338, + "learning_rate": 3.538653333333333e-05, + "loss": 1.892053680419922, + "step": 219300 + }, + { + "epoch": 29.253333333333334, + "grad_norm": 0.6313039064407349, + "learning_rate": 3.537986666666667e-05, + "loss": 1.8970526123046876, + "step": 219400 + }, + { + "epoch": 29.266666666666666, + "grad_norm": 0.6204928159713745, + "learning_rate": 3.53732e-05, + "loss": 1.8941494750976562, + "step": 219500 + }, + { + "epoch": 29.28, + "grad_norm": 0.6099953055381775, + "learning_rate": 3.53666e-05, + "loss": 1.8936624145507812, + "step": 219600 + }, + { + "epoch": 29.293333333333333, + "grad_norm": 0.6010173559188843, + "learning_rate": 3.5359933333333333e-05, + "loss": 1.8962115478515624, + "step": 219700 + }, + { + "epoch": 29.306666666666665, + "grad_norm": 0.6187490820884705, + "learning_rate": 3.5353266666666666e-05, + "loss": 1.8990090942382813, + "step": 219800 + }, + { + "epoch": 29.32, + "grad_norm": 0.6025696396827698, + "learning_rate": 3.5346600000000005e-05, + "loss": 1.899090576171875, + "step": 219900 + }, + { + "epoch": 29.333333333333332, + "grad_norm": 0.6101509928703308, + "learning_rate": 3.533993333333334e-05, + "loss": 1.8987478637695312, + "step": 220000 + }, + { + "epoch": 29.346666666666668, + "grad_norm": 0.6143890619277954, + "learning_rate": 3.533326666666667e-05, + "loss": 1.8977235412597657, + "step": 220100 + }, + { + "epoch": 29.36, + "grad_norm": 0.628218412399292, + "learning_rate": 3.53266e-05, + "loss": 1.9033868408203125, + "step": 220200 + }, + { + "epoch": 29.373333333333335, + "grad_norm": 0.6350439786911011, + "learning_rate": 3.5319933333333334e-05, + "loss": 1.8994992065429688, + "step": 220300 + }, + { + "epoch": 29.386666666666667, + "grad_norm": 0.6280394792556763, + "learning_rate": 3.5313266666666666e-05, + "loss": 1.9002314758300782, + "step": 220400 + }, + { + "epoch": 29.4, + "grad_norm": 0.6128666996955872, + "learning_rate": 3.53066e-05, + "loss": 1.9010800170898436, + "step": 220500 + }, + { + "epoch": 29.413333333333334, + "grad_norm": 0.636648952960968, + "learning_rate": 3.529993333333334e-05, + "loss": 1.9034559631347656, + "step": 220600 + }, + { + "epoch": 29.426666666666666, + "grad_norm": 0.6053557395935059, + "learning_rate": 3.529326666666667e-05, + "loss": 1.9045362854003907, + "step": 220700 + }, + { + "epoch": 29.44, + "grad_norm": 0.6217942833900452, + "learning_rate": 3.52866e-05, + "loss": 1.9091796875, + "step": 220800 + }, + { + "epoch": 29.453333333333333, + "grad_norm": 0.6204298734664917, + "learning_rate": 3.5279933333333334e-05, + "loss": 1.9048878479003906, + "step": 220900 + }, + { + "epoch": 29.466666666666665, + "grad_norm": 0.618732750415802, + "learning_rate": 3.527326666666667e-05, + "loss": 1.906492919921875, + "step": 221000 + }, + { + "epoch": 29.48, + "grad_norm": 0.6301329135894775, + "learning_rate": 3.52666e-05, + "loss": 1.9087861633300782, + "step": 221100 + }, + { + "epoch": 29.493333333333332, + "grad_norm": 0.6499351859092712, + "learning_rate": 3.525993333333333e-05, + "loss": 1.9047959899902345, + "step": 221200 + }, + { + "epoch": 29.506666666666668, + "grad_norm": 0.6507390141487122, + "learning_rate": 3.525326666666667e-05, + "loss": 1.9099015808105468, + "step": 221300 + }, + { + "epoch": 29.52, + "grad_norm": 0.6272179484367371, + "learning_rate": 3.52466e-05, + "loss": 1.9120497131347656, + "step": 221400 + }, + { + "epoch": 29.533333333333335, + "grad_norm": 0.6267956495285034, + "learning_rate": 3.5239933333333335e-05, + "loss": 1.9138475036621094, + "step": 221500 + }, + { + "epoch": 29.546666666666667, + "grad_norm": 0.6450830101966858, + "learning_rate": 3.5233333333333334e-05, + "loss": 1.910146484375, + "step": 221600 + }, + { + "epoch": 29.56, + "grad_norm": 0.618111789226532, + "learning_rate": 3.5226666666666666e-05, + "loss": 1.912001495361328, + "step": 221700 + }, + { + "epoch": 29.573333333333334, + "grad_norm": 0.6099219918251038, + "learning_rate": 3.5220000000000005e-05, + "loss": 1.9133241271972656, + "step": 221800 + }, + { + "epoch": 29.586666666666666, + "grad_norm": 0.6343381404876709, + "learning_rate": 3.521333333333334e-05, + "loss": 1.9161970520019531, + "step": 221900 + }, + { + "epoch": 29.6, + "grad_norm": 0.6319106817245483, + "learning_rate": 3.520666666666667e-05, + "loss": 1.9144822692871093, + "step": 222000 + }, + { + "epoch": 29.613333333333333, + "grad_norm": 0.6410270929336548, + "learning_rate": 3.52e-05, + "loss": 1.9168218994140624, + "step": 222100 + }, + { + "epoch": 29.626666666666665, + "grad_norm": 0.6186690330505371, + "learning_rate": 3.5193333333333334e-05, + "loss": 1.9132901000976563, + "step": 222200 + }, + { + "epoch": 29.64, + "grad_norm": 0.6537576913833618, + "learning_rate": 3.5186666666666666e-05, + "loss": 1.913599853515625, + "step": 222300 + }, + { + "epoch": 29.653333333333332, + "grad_norm": 0.6208250522613525, + "learning_rate": 3.518e-05, + "loss": 1.9217842102050782, + "step": 222400 + }, + { + "epoch": 29.666666666666668, + "grad_norm": 0.613583505153656, + "learning_rate": 3.517333333333334e-05, + "loss": 1.9240948486328124, + "step": 222500 + }, + { + "epoch": 29.68, + "grad_norm": 0.6155552864074707, + "learning_rate": 3.516666666666667e-05, + "loss": 1.9173712158203124, + "step": 222600 + }, + { + "epoch": 29.693333333333335, + "grad_norm": 0.6076659560203552, + "learning_rate": 3.516e-05, + "loss": 1.9172421264648438, + "step": 222700 + }, + { + "epoch": 29.706666666666667, + "grad_norm": 0.6185587048530579, + "learning_rate": 3.5153333333333334e-05, + "loss": 1.9175602722167968, + "step": 222800 + }, + { + "epoch": 29.72, + "grad_norm": 0.7048514485359192, + "learning_rate": 3.514666666666667e-05, + "loss": 1.9214109802246093, + "step": 222900 + }, + { + "epoch": 29.733333333333334, + "grad_norm": 0.648773729801178, + "learning_rate": 3.514e-05, + "loss": 1.9188169860839843, + "step": 223000 + }, + { + "epoch": 29.746666666666666, + "grad_norm": 0.6280819177627563, + "learning_rate": 3.513333333333334e-05, + "loss": 1.920139923095703, + "step": 223100 + }, + { + "epoch": 29.76, + "grad_norm": 0.5966166257858276, + "learning_rate": 3.512666666666667e-05, + "loss": 1.9221627807617188, + "step": 223200 + }, + { + "epoch": 29.773333333333333, + "grad_norm": 0.6173168420791626, + "learning_rate": 3.512e-05, + "loss": 1.924539794921875, + "step": 223300 + }, + { + "epoch": 29.786666666666665, + "grad_norm": 0.6122573018074036, + "learning_rate": 3.5113333333333335e-05, + "loss": 1.9245417785644532, + "step": 223400 + }, + { + "epoch": 29.8, + "grad_norm": 0.6305630803108215, + "learning_rate": 3.5106666666666674e-05, + "loss": 1.9254067993164063, + "step": 223500 + }, + { + "epoch": 29.813333333333333, + "grad_norm": 0.6451953053474426, + "learning_rate": 3.510006666666667e-05, + "loss": 1.9255630493164062, + "step": 223600 + }, + { + "epoch": 29.826666666666668, + "grad_norm": 0.6407766342163086, + "learning_rate": 3.5093400000000005e-05, + "loss": 1.9248118591308594, + "step": 223700 + }, + { + "epoch": 29.84, + "grad_norm": 0.627864420413971, + "learning_rate": 3.508673333333333e-05, + "loss": 1.9239891052246094, + "step": 223800 + }, + { + "epoch": 29.85333333333333, + "grad_norm": 0.6414026618003845, + "learning_rate": 3.508006666666667e-05, + "loss": 1.9280026245117188, + "step": 223900 + }, + { + "epoch": 29.866666666666667, + "grad_norm": 0.628401517868042, + "learning_rate": 3.50734e-05, + "loss": 1.9231156921386718, + "step": 224000 + }, + { + "epoch": 29.88, + "grad_norm": 0.6258181929588318, + "learning_rate": 3.5066733333333334e-05, + "loss": 1.926804962158203, + "step": 224100 + }, + { + "epoch": 29.893333333333334, + "grad_norm": 0.6521549820899963, + "learning_rate": 3.5060066666666667e-05, + "loss": 1.928329620361328, + "step": 224200 + }, + { + "epoch": 29.906666666666666, + "grad_norm": 0.6125701069831848, + "learning_rate": 3.5053400000000006e-05, + "loss": 1.9327384948730468, + "step": 224300 + }, + { + "epoch": 29.92, + "grad_norm": 0.627855658531189, + "learning_rate": 3.504673333333334e-05, + "loss": 1.927176971435547, + "step": 224400 + }, + { + "epoch": 29.933333333333334, + "grad_norm": 0.6648500561714172, + "learning_rate": 3.504006666666667e-05, + "loss": 1.9303471374511718, + "step": 224500 + }, + { + "epoch": 29.946666666666665, + "grad_norm": 0.6420508027076721, + "learning_rate": 3.50334e-05, + "loss": 1.9273306274414062, + "step": 224600 + }, + { + "epoch": 29.96, + "grad_norm": 0.6278482675552368, + "learning_rate": 3.5026733333333335e-05, + "loss": 1.9288194274902344, + "step": 224700 + }, + { + "epoch": 29.973333333333333, + "grad_norm": 0.5989758372306824, + "learning_rate": 3.502006666666667e-05, + "loss": 1.930438232421875, + "step": 224800 + }, + { + "epoch": 29.986666666666668, + "grad_norm": 0.6249135136604309, + "learning_rate": 3.50134e-05, + "loss": 1.9307928466796875, + "step": 224900 + }, + { + "epoch": 30.0, + "grad_norm": 0.6104187965393066, + "learning_rate": 3.500673333333334e-05, + "loss": 1.9333016967773438, + "step": 225000 + }, + { + "epoch": 30.013333333333332, + "grad_norm": 0.6293696761131287, + "learning_rate": 3.500006666666667e-05, + "loss": 1.8476805114746093, + "step": 225100 + }, + { + "epoch": 30.026666666666667, + "grad_norm": 0.6297232508659363, + "learning_rate": 3.49934e-05, + "loss": 1.845593719482422, + "step": 225200 + }, + { + "epoch": 30.04, + "grad_norm": 0.6466991305351257, + "learning_rate": 3.4986733333333335e-05, + "loss": 1.8487274169921875, + "step": 225300 + }, + { + "epoch": 30.053333333333335, + "grad_norm": 0.6279363036155701, + "learning_rate": 3.498006666666667e-05, + "loss": 1.8542190551757813, + "step": 225400 + }, + { + "epoch": 30.066666666666666, + "grad_norm": 0.644621729850769, + "learning_rate": 3.49734e-05, + "loss": 1.8500912475585938, + "step": 225500 + }, + { + "epoch": 30.08, + "grad_norm": 0.6442613005638123, + "learning_rate": 3.49668e-05, + "loss": 1.8522134399414063, + "step": 225600 + }, + { + "epoch": 30.093333333333334, + "grad_norm": 0.619848370552063, + "learning_rate": 3.496013333333333e-05, + "loss": 1.8562557983398438, + "step": 225700 + }, + { + "epoch": 30.106666666666666, + "grad_norm": 0.6512423157691956, + "learning_rate": 3.495346666666667e-05, + "loss": 1.8515933227539063, + "step": 225800 + }, + { + "epoch": 30.12, + "grad_norm": 0.6524722576141357, + "learning_rate": 3.49468e-05, + "loss": 1.859434814453125, + "step": 225900 + }, + { + "epoch": 30.133333333333333, + "grad_norm": 0.6379408836364746, + "learning_rate": 3.4940133333333335e-05, + "loss": 1.8575267028808593, + "step": 226000 + }, + { + "epoch": 30.14666666666667, + "grad_norm": 0.6395164132118225, + "learning_rate": 3.493346666666667e-05, + "loss": 1.8595333862304688, + "step": 226100 + }, + { + "epoch": 30.16, + "grad_norm": 0.6441857814788818, + "learning_rate": 3.4926800000000006e-05, + "loss": 1.860304718017578, + "step": 226200 + }, + { + "epoch": 30.173333333333332, + "grad_norm": 0.6614034175872803, + "learning_rate": 3.492013333333333e-05, + "loss": 1.8629020690917968, + "step": 226300 + }, + { + "epoch": 30.186666666666667, + "grad_norm": 0.6289846897125244, + "learning_rate": 3.4913466666666664e-05, + "loss": 1.8599790954589843, + "step": 226400 + }, + { + "epoch": 30.2, + "grad_norm": 0.6655375957489014, + "learning_rate": 3.49068e-05, + "loss": 1.8705145263671874, + "step": 226500 + }, + { + "epoch": 30.213333333333335, + "grad_norm": 0.6143892407417297, + "learning_rate": 3.4900133333333335e-05, + "loss": 1.8633598327636718, + "step": 226600 + }, + { + "epoch": 30.226666666666667, + "grad_norm": 0.6168250441551208, + "learning_rate": 3.489346666666667e-05, + "loss": 1.866641845703125, + "step": 226700 + }, + { + "epoch": 30.24, + "grad_norm": 0.6689651012420654, + "learning_rate": 3.48868e-05, + "loss": 1.863162841796875, + "step": 226800 + }, + { + "epoch": 30.253333333333334, + "grad_norm": 0.6845178604125977, + "learning_rate": 3.488013333333334e-05, + "loss": 1.8685459899902344, + "step": 226900 + }, + { + "epoch": 30.266666666666666, + "grad_norm": 0.6048876047134399, + "learning_rate": 3.487346666666667e-05, + "loss": 1.8716763305664061, + "step": 227000 + }, + { + "epoch": 30.28, + "grad_norm": 0.6472257375717163, + "learning_rate": 3.4866799999999996e-05, + "loss": 1.8674250793457032, + "step": 227100 + }, + { + "epoch": 30.293333333333333, + "grad_norm": 0.6502028703689575, + "learning_rate": 3.4860133333333335e-05, + "loss": 1.8718875122070313, + "step": 227200 + }, + { + "epoch": 30.306666666666665, + "grad_norm": 0.6495829820632935, + "learning_rate": 3.485346666666667e-05, + "loss": 1.8765740966796876, + "step": 227300 + }, + { + "epoch": 30.32, + "grad_norm": 0.6474784016609192, + "learning_rate": 3.48468e-05, + "loss": 1.8689016723632812, + "step": 227400 + }, + { + "epoch": 30.333333333333332, + "grad_norm": 0.652237057685852, + "learning_rate": 3.484013333333334e-05, + "loss": 1.8737103271484374, + "step": 227500 + }, + { + "epoch": 30.346666666666668, + "grad_norm": 0.6202793717384338, + "learning_rate": 3.483346666666667e-05, + "loss": 1.8773468017578125, + "step": 227600 + }, + { + "epoch": 30.36, + "grad_norm": 0.6398950815200806, + "learning_rate": 3.482686666666667e-05, + "loss": 1.8740312194824218, + "step": 227700 + }, + { + "epoch": 30.373333333333335, + "grad_norm": 0.679435670375824, + "learning_rate": 3.48202e-05, + "loss": 1.8724604797363282, + "step": 227800 + }, + { + "epoch": 30.386666666666667, + "grad_norm": 0.6420354843139648, + "learning_rate": 3.4813533333333335e-05, + "loss": 1.8720265197753907, + "step": 227900 + }, + { + "epoch": 30.4, + "grad_norm": 0.6483940482139587, + "learning_rate": 3.4806866666666674e-05, + "loss": 1.8791566467285157, + "step": 228000 + }, + { + "epoch": 30.413333333333334, + "grad_norm": 0.6276984810829163, + "learning_rate": 3.48002e-05, + "loss": 1.8788121032714844, + "step": 228100 + }, + { + "epoch": 30.426666666666666, + "grad_norm": 0.6200658082962036, + "learning_rate": 3.479353333333333e-05, + "loss": 1.8798104858398437, + "step": 228200 + }, + { + "epoch": 30.44, + "grad_norm": 0.6153615117073059, + "learning_rate": 3.478686666666667e-05, + "loss": 1.878331298828125, + "step": 228300 + }, + { + "epoch": 30.453333333333333, + "grad_norm": 0.664184033870697, + "learning_rate": 3.47802e-05, + "loss": 1.879515380859375, + "step": 228400 + }, + { + "epoch": 30.466666666666665, + "grad_norm": 0.6094868779182434, + "learning_rate": 3.4773533333333335e-05, + "loss": 1.8832115173339843, + "step": 228500 + }, + { + "epoch": 30.48, + "grad_norm": 0.6478238701820374, + "learning_rate": 3.476686666666667e-05, + "loss": 1.8848756408691407, + "step": 228600 + }, + { + "epoch": 30.493333333333332, + "grad_norm": 0.6715877652168274, + "learning_rate": 3.4760200000000006e-05, + "loss": 1.8839694213867189, + "step": 228700 + }, + { + "epoch": 30.506666666666668, + "grad_norm": 0.65712571144104, + "learning_rate": 3.475353333333333e-05, + "loss": 1.8820346069335938, + "step": 228800 + }, + { + "epoch": 30.52, + "grad_norm": 0.6317829489707947, + "learning_rate": 3.4746866666666664e-05, + "loss": 1.8841021728515626, + "step": 228900 + }, + { + "epoch": 30.533333333333335, + "grad_norm": 0.654059886932373, + "learning_rate": 3.47402e-05, + "loss": 1.8871124267578125, + "step": 229000 + }, + { + "epoch": 30.546666666666667, + "grad_norm": 0.6421239972114563, + "learning_rate": 3.4733533333333336e-05, + "loss": 1.8896517944335938, + "step": 229100 + }, + { + "epoch": 30.56, + "grad_norm": 0.6650997996330261, + "learning_rate": 3.472686666666667e-05, + "loss": 1.8887339782714845, + "step": 229200 + }, + { + "epoch": 30.573333333333334, + "grad_norm": 0.6281959414482117, + "learning_rate": 3.47202e-05, + "loss": 1.8887667846679688, + "step": 229300 + }, + { + "epoch": 30.586666666666666, + "grad_norm": 0.6575733423233032, + "learning_rate": 3.471353333333334e-05, + "loss": 1.889744110107422, + "step": 229400 + }, + { + "epoch": 30.6, + "grad_norm": 0.6337116360664368, + "learning_rate": 3.470686666666667e-05, + "loss": 1.8880189514160157, + "step": 229500 + }, + { + "epoch": 30.613333333333333, + "grad_norm": 0.6612198948860168, + "learning_rate": 3.47002e-05, + "loss": 1.8879634094238282, + "step": 229600 + }, + { + "epoch": 30.626666666666665, + "grad_norm": 0.6376072764396667, + "learning_rate": 3.46936e-05, + "loss": 1.8931094360351564, + "step": 229700 + }, + { + "epoch": 30.64, + "grad_norm": 0.6279535889625549, + "learning_rate": 3.4686933333333335e-05, + "loss": 1.890915069580078, + "step": 229800 + }, + { + "epoch": 30.653333333333332, + "grad_norm": 0.6393465399742126, + "learning_rate": 3.468026666666667e-05, + "loss": 1.889798583984375, + "step": 229900 + }, + { + "epoch": 30.666666666666668, + "grad_norm": 0.6623516082763672, + "learning_rate": 3.46736e-05, + "loss": 1.8915354919433593, + "step": 230000 + }, + { + "epoch": 30.68, + "grad_norm": 0.628612756729126, + "learning_rate": 3.466693333333333e-05, + "loss": 1.8947076416015625, + "step": 230100 + }, + { + "epoch": 30.693333333333335, + "grad_norm": 0.6295715570449829, + "learning_rate": 3.466026666666667e-05, + "loss": 1.8961087036132813, + "step": 230200 + }, + { + "epoch": 30.706666666666667, + "grad_norm": 0.6464623212814331, + "learning_rate": 3.46536e-05, + "loss": 1.8944891357421876, + "step": 230300 + }, + { + "epoch": 30.72, + "grad_norm": 0.6213361620903015, + "learning_rate": 3.4646933333333335e-05, + "loss": 1.8963340759277343, + "step": 230400 + }, + { + "epoch": 30.733333333333334, + "grad_norm": 0.6335080862045288, + "learning_rate": 3.464026666666667e-05, + "loss": 1.8955998229980469, + "step": 230500 + }, + { + "epoch": 30.746666666666666, + "grad_norm": 0.6538170576095581, + "learning_rate": 3.46336e-05, + "loss": 1.895076141357422, + "step": 230600 + }, + { + "epoch": 30.76, + "grad_norm": 0.6481654047966003, + "learning_rate": 3.462693333333333e-05, + "loss": 1.896536865234375, + "step": 230700 + }, + { + "epoch": 30.773333333333333, + "grad_norm": 0.6416306495666504, + "learning_rate": 3.4620266666666664e-05, + "loss": 1.8968507385253905, + "step": 230800 + }, + { + "epoch": 30.786666666666665, + "grad_norm": 0.6325493454933167, + "learning_rate": 3.4613600000000003e-05, + "loss": 1.8965896606445312, + "step": 230900 + }, + { + "epoch": 30.8, + "grad_norm": 0.6334678530693054, + "learning_rate": 3.4606933333333336e-05, + "loss": 1.8993826293945313, + "step": 231000 + }, + { + "epoch": 30.813333333333333, + "grad_norm": 0.642789363861084, + "learning_rate": 3.460026666666667e-05, + "loss": 1.899892578125, + "step": 231100 + }, + { + "epoch": 30.826666666666668, + "grad_norm": 0.6502810716629028, + "learning_rate": 3.459360000000001e-05, + "loss": 1.9054344177246094, + "step": 231200 + }, + { + "epoch": 30.84, + "grad_norm": 0.6091868281364441, + "learning_rate": 3.458693333333333e-05, + "loss": 1.9026506042480469, + "step": 231300 + }, + { + "epoch": 30.85333333333333, + "grad_norm": 0.656499981880188, + "learning_rate": 3.4580266666666665e-05, + "loss": 1.9024732971191407, + "step": 231400 + }, + { + "epoch": 30.866666666666667, + "grad_norm": 0.6632031202316284, + "learning_rate": 3.45736e-05, + "loss": 1.9011004638671876, + "step": 231500 + }, + { + "epoch": 30.88, + "grad_norm": 0.6348013281822205, + "learning_rate": 3.4566933333333336e-05, + "loss": 1.9027983093261718, + "step": 231600 + }, + { + "epoch": 30.893333333333334, + "grad_norm": 0.6693485975265503, + "learning_rate": 3.4560333333333335e-05, + "loss": 1.9033485412597657, + "step": 231700 + }, + { + "epoch": 30.906666666666666, + "grad_norm": 0.628446638584137, + "learning_rate": 3.455366666666667e-05, + "loss": 1.905799102783203, + "step": 231800 + }, + { + "epoch": 30.92, + "grad_norm": 0.6061755418777466, + "learning_rate": 3.4547e-05, + "loss": 1.9038815307617187, + "step": 231900 + }, + { + "epoch": 30.933333333333334, + "grad_norm": 0.6528656482696533, + "learning_rate": 3.454033333333334e-05, + "loss": 1.8988880920410156, + "step": 232000 + }, + { + "epoch": 30.946666666666665, + "grad_norm": 0.6434139609336853, + "learning_rate": 3.453366666666667e-05, + "loss": 1.9047633361816407, + "step": 232100 + }, + { + "epoch": 30.96, + "grad_norm": 0.621820330619812, + "learning_rate": 3.4527e-05, + "loss": 1.906195068359375, + "step": 232200 + }, + { + "epoch": 30.973333333333333, + "grad_norm": 0.6167011857032776, + "learning_rate": 3.4520333333333336e-05, + "loss": 1.9075782775878907, + "step": 232300 + }, + { + "epoch": 30.986666666666668, + "grad_norm": 0.6764289736747742, + "learning_rate": 3.451366666666667e-05, + "loss": 1.9077426147460939, + "step": 232400 + }, + { + "epoch": 31.0, + "grad_norm": 0.6597962975502014, + "learning_rate": 3.4507e-05, + "loss": 1.9063412475585937, + "step": 232500 + }, + { + "epoch": 31.013333333333332, + "grad_norm": 0.6323487758636475, + "learning_rate": 3.450033333333333e-05, + "loss": 1.8208100891113281, + "step": 232600 + }, + { + "epoch": 31.026666666666667, + "grad_norm": 0.6353087425231934, + "learning_rate": 3.449366666666667e-05, + "loss": 1.8169317626953125, + "step": 232700 + }, + { + "epoch": 31.04, + "grad_norm": 0.6516137719154358, + "learning_rate": 3.4487000000000004e-05, + "loss": 1.8187254333496095, + "step": 232800 + }, + { + "epoch": 31.053333333333335, + "grad_norm": 0.6380991339683533, + "learning_rate": 3.4480333333333336e-05, + "loss": 1.828922119140625, + "step": 232900 + }, + { + "epoch": 31.066666666666666, + "grad_norm": 0.6637365221977234, + "learning_rate": 3.447366666666667e-05, + "loss": 1.8281976318359374, + "step": 233000 + }, + { + "epoch": 31.08, + "grad_norm": 0.6347978115081787, + "learning_rate": 3.4467e-05, + "loss": 1.8291136169433593, + "step": 233100 + }, + { + "epoch": 31.093333333333334, + "grad_norm": 0.6856868863105774, + "learning_rate": 3.446033333333333e-05, + "loss": 1.8266050720214844, + "step": 233200 + }, + { + "epoch": 31.106666666666666, + "grad_norm": 0.6957641839981079, + "learning_rate": 3.4453666666666665e-05, + "loss": 1.8307728576660156, + "step": 233300 + }, + { + "epoch": 31.12, + "grad_norm": 0.657038688659668, + "learning_rate": 3.4447000000000004e-05, + "loss": 1.8359172058105468, + "step": 233400 + }, + { + "epoch": 31.133333333333333, + "grad_norm": 0.6168066263198853, + "learning_rate": 3.4440333333333336e-05, + "loss": 1.8327171325683593, + "step": 233500 + }, + { + "epoch": 31.14666666666667, + "grad_norm": 0.6589761972427368, + "learning_rate": 3.443366666666667e-05, + "loss": 1.8356471252441406, + "step": 233600 + }, + { + "epoch": 31.16, + "grad_norm": 0.656284749507904, + "learning_rate": 3.442706666666667e-05, + "loss": 1.8352957153320313, + "step": 233700 + }, + { + "epoch": 31.173333333333332, + "grad_norm": 0.6507891416549683, + "learning_rate": 3.44204e-05, + "loss": 1.8356683349609375, + "step": 233800 + }, + { + "epoch": 31.186666666666667, + "grad_norm": 0.6691421270370483, + "learning_rate": 3.441373333333334e-05, + "loss": 1.8375747680664063, + "step": 233900 + }, + { + "epoch": 31.2, + "grad_norm": 0.6770158410072327, + "learning_rate": 3.440706666666667e-05, + "loss": 1.8438589477539062, + "step": 234000 + }, + { + "epoch": 31.213333333333335, + "grad_norm": 0.6403542160987854, + "learning_rate": 3.44004e-05, + "loss": 1.8394532775878907, + "step": 234100 + }, + { + "epoch": 31.226666666666667, + "grad_norm": 0.6421419978141785, + "learning_rate": 3.4393733333333336e-05, + "loss": 1.8419064331054686, + "step": 234200 + }, + { + "epoch": 31.24, + "grad_norm": 0.6424593925476074, + "learning_rate": 3.438706666666667e-05, + "loss": 1.839052734375, + "step": 234300 + }, + { + "epoch": 31.253333333333334, + "grad_norm": 0.6520510911941528, + "learning_rate": 3.43804e-05, + "loss": 1.8442149353027344, + "step": 234400 + }, + { + "epoch": 31.266666666666666, + "grad_norm": 0.6459802985191345, + "learning_rate": 3.437373333333333e-05, + "loss": 1.8480723571777344, + "step": 234500 + }, + { + "epoch": 31.28, + "grad_norm": 0.6531192660331726, + "learning_rate": 3.436706666666667e-05, + "loss": 1.8451568603515625, + "step": 234600 + }, + { + "epoch": 31.293333333333333, + "grad_norm": 0.6506422758102417, + "learning_rate": 3.4360400000000004e-05, + "loss": 1.8467247009277343, + "step": 234700 + }, + { + "epoch": 31.306666666666665, + "grad_norm": 0.6557679176330566, + "learning_rate": 3.435373333333333e-05, + "loss": 1.8464105224609375, + "step": 234800 + }, + { + "epoch": 31.32, + "grad_norm": 0.6555748581886292, + "learning_rate": 3.434706666666667e-05, + "loss": 1.8486134338378906, + "step": 234900 + }, + { + "epoch": 31.333333333333332, + "grad_norm": 0.6634244322776794, + "learning_rate": 3.43404e-05, + "loss": 1.8502972412109375, + "step": 235000 + }, + { + "epoch": 31.346666666666668, + "grad_norm": 0.6522782444953918, + "learning_rate": 3.433373333333333e-05, + "loss": 1.8538160705566407, + "step": 235100 + }, + { + "epoch": 31.36, + "grad_norm": 0.6471147537231445, + "learning_rate": 3.4327066666666665e-05, + "loss": 1.8480146789550782, + "step": 235200 + }, + { + "epoch": 31.373333333333335, + "grad_norm": 0.6697273254394531, + "learning_rate": 3.4320400000000004e-05, + "loss": 1.8517044067382813, + "step": 235300 + }, + { + "epoch": 31.386666666666667, + "grad_norm": 0.6725065112113953, + "learning_rate": 3.4313733333333337e-05, + "loss": 1.8513163757324218, + "step": 235400 + }, + { + "epoch": 31.4, + "grad_norm": 0.6726689338684082, + "learning_rate": 3.430706666666667e-05, + "loss": 1.8532307434082032, + "step": 235500 + }, + { + "epoch": 31.413333333333334, + "grad_norm": 0.6598038673400879, + "learning_rate": 3.43004e-05, + "loss": 1.8543743896484375, + "step": 235600 + }, + { + "epoch": 31.426666666666666, + "grad_norm": 0.6628021001815796, + "learning_rate": 3.429380000000001e-05, + "loss": 1.8543577575683594, + "step": 235700 + }, + { + "epoch": 31.44, + "grad_norm": 0.677413284778595, + "learning_rate": 3.428713333333333e-05, + "loss": 1.8539126586914063, + "step": 235800 + }, + { + "epoch": 31.453333333333333, + "grad_norm": 0.6506122350692749, + "learning_rate": 3.4280466666666665e-05, + "loss": 1.8576051330566405, + "step": 235900 + }, + { + "epoch": 31.466666666666665, + "grad_norm": 0.6622093319892883, + "learning_rate": 3.42738e-05, + "loss": 1.8572665405273439, + "step": 236000 + }, + { + "epoch": 31.48, + "grad_norm": 0.674359142780304, + "learning_rate": 3.4267133333333336e-05, + "loss": 1.8588676452636719, + "step": 236100 + }, + { + "epoch": 31.493333333333332, + "grad_norm": 0.6599639058113098, + "learning_rate": 3.426046666666667e-05, + "loss": 1.8583624267578125, + "step": 236200 + }, + { + "epoch": 31.506666666666668, + "grad_norm": 0.6558268666267395, + "learning_rate": 3.42538e-05, + "loss": 1.8596633911132812, + "step": 236300 + }, + { + "epoch": 31.52, + "grad_norm": 0.6776077151298523, + "learning_rate": 3.424713333333334e-05, + "loss": 1.8617288208007812, + "step": 236400 + }, + { + "epoch": 31.533333333333335, + "grad_norm": 0.6699625253677368, + "learning_rate": 3.424046666666667e-05, + "loss": 1.8598435974121095, + "step": 236500 + }, + { + "epoch": 31.546666666666667, + "grad_norm": 0.6473347544670105, + "learning_rate": 3.42338e-05, + "loss": 1.8564553833007813, + "step": 236600 + }, + { + "epoch": 31.56, + "grad_norm": 0.6418144702911377, + "learning_rate": 3.4227133333333336e-05, + "loss": 1.8607228088378907, + "step": 236700 + }, + { + "epoch": 31.573333333333334, + "grad_norm": 0.6646478772163391, + "learning_rate": 3.422046666666667e-05, + "loss": 1.8621051025390625, + "step": 236800 + }, + { + "epoch": 31.586666666666666, + "grad_norm": 0.6577756404876709, + "learning_rate": 3.42138e-05, + "loss": 1.8664056396484374, + "step": 236900 + }, + { + "epoch": 31.6, + "grad_norm": 0.6546629667282104, + "learning_rate": 3.420713333333333e-05, + "loss": 1.8602700805664063, + "step": 237000 + }, + { + "epoch": 31.613333333333333, + "grad_norm": 0.6508590579032898, + "learning_rate": 3.420046666666667e-05, + "loss": 1.8613612365722656, + "step": 237100 + }, + { + "epoch": 31.626666666666665, + "grad_norm": 0.6625661253929138, + "learning_rate": 3.4193800000000005e-05, + "loss": 1.8683642578125, + "step": 237200 + }, + { + "epoch": 31.64, + "grad_norm": 0.6706848740577698, + "learning_rate": 3.418713333333334e-05, + "loss": 1.8645219421386718, + "step": 237300 + }, + { + "epoch": 31.653333333333332, + "grad_norm": 0.6599859595298767, + "learning_rate": 3.418046666666667e-05, + "loss": 1.8640052795410156, + "step": 237400 + }, + { + "epoch": 31.666666666666668, + "grad_norm": 0.6782610416412354, + "learning_rate": 3.41738e-05, + "loss": 1.8663507080078126, + "step": 237500 + }, + { + "epoch": 31.68, + "grad_norm": 0.6501734852790833, + "learning_rate": 3.4167133333333334e-05, + "loss": 1.864781951904297, + "step": 237600 + }, + { + "epoch": 31.693333333333335, + "grad_norm": 0.6596933603286743, + "learning_rate": 3.416053333333333e-05, + "loss": 1.8692094421386718, + "step": 237700 + }, + { + "epoch": 31.706666666666667, + "grad_norm": 0.6630842685699463, + "learning_rate": 3.4153866666666665e-05, + "loss": 1.8750367736816407, + "step": 237800 + }, + { + "epoch": 31.72, + "grad_norm": 0.6862805485725403, + "learning_rate": 3.4147200000000004e-05, + "loss": 1.8699729919433594, + "step": 237900 + }, + { + "epoch": 31.733333333333334, + "grad_norm": 0.6476590037345886, + "learning_rate": 3.4140533333333336e-05, + "loss": 1.8710263061523438, + "step": 238000 + }, + { + "epoch": 31.746666666666666, + "grad_norm": 0.6775981187820435, + "learning_rate": 3.413386666666667e-05, + "loss": 1.8723735046386718, + "step": 238100 + }, + { + "epoch": 31.76, + "grad_norm": 0.6427512168884277, + "learning_rate": 3.41272e-05, + "loss": 1.8744818115234374, + "step": 238200 + }, + { + "epoch": 31.773333333333333, + "grad_norm": 0.6625904440879822, + "learning_rate": 3.412053333333334e-05, + "loss": 1.8720915222167969, + "step": 238300 + }, + { + "epoch": 31.786666666666665, + "grad_norm": 0.6708217859268188, + "learning_rate": 3.4113866666666665e-05, + "loss": 1.8733248901367188, + "step": 238400 + }, + { + "epoch": 31.8, + "grad_norm": 0.6499980092048645, + "learning_rate": 3.41072e-05, + "loss": 1.8720248413085938, + "step": 238500 + }, + { + "epoch": 31.813333333333333, + "grad_norm": 0.6474357843399048, + "learning_rate": 3.41006e-05, + "loss": 1.875724334716797, + "step": 238600 + }, + { + "epoch": 31.826666666666668, + "grad_norm": 0.639595627784729, + "learning_rate": 3.4093933333333336e-05, + "loss": 1.8767543029785156, + "step": 238700 + }, + { + "epoch": 31.84, + "grad_norm": 0.6569827795028687, + "learning_rate": 3.408726666666667e-05, + "loss": 1.8743658447265625, + "step": 238800 + }, + { + "epoch": 31.85333333333333, + "grad_norm": 0.6573343873023987, + "learning_rate": 3.40806e-05, + "loss": 1.876455078125, + "step": 238900 + }, + { + "epoch": 31.866666666666667, + "grad_norm": 0.6686303019523621, + "learning_rate": 3.407393333333333e-05, + "loss": 1.875361785888672, + "step": 239000 + }, + { + "epoch": 31.88, + "grad_norm": 0.6887635588645935, + "learning_rate": 3.406726666666667e-05, + "loss": 1.87423583984375, + "step": 239100 + }, + { + "epoch": 31.893333333333334, + "grad_norm": 0.6796891093254089, + "learning_rate": 3.4060600000000004e-05, + "loss": 1.878402099609375, + "step": 239200 + }, + { + "epoch": 31.906666666666666, + "grad_norm": 0.7028095722198486, + "learning_rate": 3.4053933333333336e-05, + "loss": 1.879278106689453, + "step": 239300 + }, + { + "epoch": 31.92, + "grad_norm": 0.6571170687675476, + "learning_rate": 3.404726666666667e-05, + "loss": 1.8795460510253905, + "step": 239400 + }, + { + "epoch": 31.933333333333334, + "grad_norm": 0.6626359820365906, + "learning_rate": 3.40406e-05, + "loss": 1.8782347106933595, + "step": 239500 + }, + { + "epoch": 31.946666666666665, + "grad_norm": 0.6341395378112793, + "learning_rate": 3.403393333333333e-05, + "loss": 1.8807855224609376, + "step": 239600 + }, + { + "epoch": 31.96, + "grad_norm": 0.7045288681983948, + "learning_rate": 3.4027266666666665e-05, + "loss": 1.8818238830566407, + "step": 239700 + }, + { + "epoch": 31.973333333333333, + "grad_norm": 0.6587862372398376, + "learning_rate": 3.4020600000000004e-05, + "loss": 1.8825888061523437, + "step": 239800 + }, + { + "epoch": 31.986666666666668, + "grad_norm": 0.6503267288208008, + "learning_rate": 3.4013933333333337e-05, + "loss": 1.8872879028320313, + "step": 239900 + }, + { + "epoch": 32.0, + "grad_norm": 0.6603325605392456, + "learning_rate": 3.400726666666667e-05, + "loss": 1.8781341552734374, + "step": 240000 + }, + { + "epoch": 32.013333333333335, + "grad_norm": 0.6310288906097412, + "learning_rate": 3.40006e-05, + "loss": 1.7969367980957032, + "step": 240100 + }, + { + "epoch": 32.026666666666664, + "grad_norm": 0.6715329885482788, + "learning_rate": 3.399393333333333e-05, + "loss": 1.8000009155273438, + "step": 240200 + }, + { + "epoch": 32.04, + "grad_norm": 0.6543241143226624, + "learning_rate": 3.3987266666666666e-05, + "loss": 1.7961320495605468, + "step": 240300 + }, + { + "epoch": 32.053333333333335, + "grad_norm": 0.6774461269378662, + "learning_rate": 3.3980600000000005e-05, + "loss": 1.8003314208984376, + "step": 240400 + }, + { + "epoch": 32.06666666666667, + "grad_norm": 0.6529948711395264, + "learning_rate": 3.397393333333334e-05, + "loss": 1.8036393737792968, + "step": 240500 + }, + { + "epoch": 32.08, + "grad_norm": 0.6645397543907166, + "learning_rate": 3.396726666666667e-05, + "loss": 1.7999684143066406, + "step": 240600 + }, + { + "epoch": 32.093333333333334, + "grad_norm": 0.6966586112976074, + "learning_rate": 3.39606e-05, + "loss": 1.8084344482421875, + "step": 240700 + }, + { + "epoch": 32.10666666666667, + "grad_norm": 0.6967159509658813, + "learning_rate": 3.395393333333334e-05, + "loss": 1.8040733337402344, + "step": 240800 + }, + { + "epoch": 32.12, + "grad_norm": 0.6923654675483704, + "learning_rate": 3.3947266666666666e-05, + "loss": 1.8065350341796875, + "step": 240900 + }, + { + "epoch": 32.13333333333333, + "grad_norm": 0.6938139200210571, + "learning_rate": 3.39406e-05, + "loss": 1.8069944763183594, + "step": 241000 + }, + { + "epoch": 32.14666666666667, + "grad_norm": 0.6618465781211853, + "learning_rate": 3.393393333333334e-05, + "loss": 1.80832763671875, + "step": 241100 + }, + { + "epoch": 32.16, + "grad_norm": 0.681530773639679, + "learning_rate": 3.392726666666667e-05, + "loss": 1.8130369567871094, + "step": 241200 + }, + { + "epoch": 32.17333333333333, + "grad_norm": 0.692341148853302, + "learning_rate": 3.39206e-05, + "loss": 1.8068063354492188, + "step": 241300 + }, + { + "epoch": 32.18666666666667, + "grad_norm": 0.6659745573997498, + "learning_rate": 3.3913933333333334e-05, + "loss": 1.8177037048339844, + "step": 241400 + }, + { + "epoch": 32.2, + "grad_norm": 0.6756054162979126, + "learning_rate": 3.390726666666667e-05, + "loss": 1.812709503173828, + "step": 241500 + }, + { + "epoch": 32.21333333333333, + "grad_norm": 0.6909893751144409, + "learning_rate": 3.39006e-05, + "loss": 1.8146788024902343, + "step": 241600 + }, + { + "epoch": 32.22666666666667, + "grad_norm": 0.6421316266059875, + "learning_rate": 3.389393333333333e-05, + "loss": 1.8204322814941407, + "step": 241700 + }, + { + "epoch": 32.24, + "grad_norm": 0.6924384236335754, + "learning_rate": 3.388726666666667e-05, + "loss": 1.8170956420898436, + "step": 241800 + }, + { + "epoch": 32.25333333333333, + "grad_norm": 0.7075912356376648, + "learning_rate": 3.38806e-05, + "loss": 1.8158349609375, + "step": 241900 + }, + { + "epoch": 32.266666666666666, + "grad_norm": 0.698880136013031, + "learning_rate": 3.3873933333333334e-05, + "loss": 1.822403564453125, + "step": 242000 + }, + { + "epoch": 32.28, + "grad_norm": 0.6914991736412048, + "learning_rate": 3.386726666666667e-05, + "loss": 1.8238410949707031, + "step": 242100 + }, + { + "epoch": 32.29333333333334, + "grad_norm": 0.6999617218971252, + "learning_rate": 3.3860600000000006e-05, + "loss": 1.8204554748535156, + "step": 242200 + }, + { + "epoch": 32.306666666666665, + "grad_norm": 0.6469098925590515, + "learning_rate": 3.385393333333334e-05, + "loss": 1.8187814331054688, + "step": 242300 + }, + { + "epoch": 32.32, + "grad_norm": 0.6881408095359802, + "learning_rate": 3.3847266666666664e-05, + "loss": 1.823394775390625, + "step": 242400 + }, + { + "epoch": 32.333333333333336, + "grad_norm": 0.6413573622703552, + "learning_rate": 3.38406e-05, + "loss": 1.8220912170410157, + "step": 242500 + }, + { + "epoch": 32.346666666666664, + "grad_norm": 0.6949501633644104, + "learning_rate": 3.3834e-05, + "loss": 1.825587921142578, + "step": 242600 + }, + { + "epoch": 32.36, + "grad_norm": 0.6824288964271545, + "learning_rate": 3.3827333333333334e-05, + "loss": 1.8236434936523438, + "step": 242700 + }, + { + "epoch": 32.373333333333335, + "grad_norm": 0.6769747734069824, + "learning_rate": 3.3820666666666666e-05, + "loss": 1.8265499877929687, + "step": 242800 + }, + { + "epoch": 32.38666666666666, + "grad_norm": 0.663185715675354, + "learning_rate": 3.3814e-05, + "loss": 1.8235643005371094, + "step": 242900 + }, + { + "epoch": 32.4, + "grad_norm": 0.6693112254142761, + "learning_rate": 3.380733333333334e-05, + "loss": 1.830492706298828, + "step": 243000 + }, + { + "epoch": 32.413333333333334, + "grad_norm": 0.6796991229057312, + "learning_rate": 3.3800733333333337e-05, + "loss": 1.8297494506835938, + "step": 243100 + }, + { + "epoch": 32.42666666666667, + "grad_norm": 0.6557438969612122, + "learning_rate": 3.379406666666667e-05, + "loss": 1.8294140625, + "step": 243200 + }, + { + "epoch": 32.44, + "grad_norm": 0.6834737062454224, + "learning_rate": 3.37874e-05, + "loss": 1.8335061645507813, + "step": 243300 + }, + { + "epoch": 32.45333333333333, + "grad_norm": 0.6919399499893188, + "learning_rate": 3.3780733333333333e-05, + "loss": 1.829990997314453, + "step": 243400 + }, + { + "epoch": 32.46666666666667, + "grad_norm": 0.6703587174415588, + "learning_rate": 3.377406666666667e-05, + "loss": 1.8283270263671876, + "step": 243500 + }, + { + "epoch": 32.48, + "grad_norm": 0.6480154991149902, + "learning_rate": 3.37674e-05, + "loss": 1.8319325256347656, + "step": 243600 + }, + { + "epoch": 32.49333333333333, + "grad_norm": 0.6802955865859985, + "learning_rate": 3.376073333333333e-05, + "loss": 1.8309434509277345, + "step": 243700 + }, + { + "epoch": 32.50666666666667, + "grad_norm": 0.6789207458496094, + "learning_rate": 3.375406666666667e-05, + "loss": 1.8343551635742188, + "step": 243800 + }, + { + "epoch": 32.52, + "grad_norm": 0.679716169834137, + "learning_rate": 3.37474e-05, + "loss": 1.8310325622558594, + "step": 243900 + }, + { + "epoch": 32.53333333333333, + "grad_norm": 0.6787630319595337, + "learning_rate": 3.3740733333333334e-05, + "loss": 1.8323744201660157, + "step": 244000 + }, + { + "epoch": 32.54666666666667, + "grad_norm": 0.7034173011779785, + "learning_rate": 3.3734066666666666e-05, + "loss": 1.8383087158203124, + "step": 244100 + }, + { + "epoch": 32.56, + "grad_norm": 0.6853973865509033, + "learning_rate": 3.3727400000000005e-05, + "loss": 1.8405967712402345, + "step": 244200 + }, + { + "epoch": 32.57333333333333, + "grad_norm": 0.6757837533950806, + "learning_rate": 3.372073333333334e-05, + "loss": 1.8397735595703124, + "step": 244300 + }, + { + "epoch": 32.586666666666666, + "grad_norm": 0.7057570815086365, + "learning_rate": 3.371406666666666e-05, + "loss": 1.8403346252441406, + "step": 244400 + }, + { + "epoch": 32.6, + "grad_norm": 0.6852734684944153, + "learning_rate": 3.37074e-05, + "loss": 1.8357850646972655, + "step": 244500 + }, + { + "epoch": 32.61333333333333, + "grad_norm": 0.6865105628967285, + "learning_rate": 3.3700733333333334e-05, + "loss": 1.8388577270507813, + "step": 244600 + }, + { + "epoch": 32.626666666666665, + "grad_norm": 0.6819406747817993, + "learning_rate": 3.3694066666666666e-05, + "loss": 1.8388409423828125, + "step": 244700 + }, + { + "epoch": 32.64, + "grad_norm": 0.70542311668396, + "learning_rate": 3.3687400000000005e-05, + "loss": 1.8410357666015624, + "step": 244800 + }, + { + "epoch": 32.653333333333336, + "grad_norm": 0.6699349284172058, + "learning_rate": 3.368073333333334e-05, + "loss": 1.838839569091797, + "step": 244900 + }, + { + "epoch": 32.666666666666664, + "grad_norm": 0.6589396595954895, + "learning_rate": 3.367406666666667e-05, + "loss": 1.8432624816894532, + "step": 245000 + }, + { + "epoch": 32.68, + "grad_norm": 0.6670289635658264, + "learning_rate": 3.36674e-05, + "loss": 1.8423471069335937, + "step": 245100 + }, + { + "epoch": 32.693333333333335, + "grad_norm": 0.7071298956871033, + "learning_rate": 3.3660733333333335e-05, + "loss": 1.8458381652832032, + "step": 245200 + }, + { + "epoch": 32.70666666666666, + "grad_norm": 0.6842973232269287, + "learning_rate": 3.365406666666667e-05, + "loss": 1.8477865600585937, + "step": 245300 + }, + { + "epoch": 32.72, + "grad_norm": 0.6763595342636108, + "learning_rate": 3.36474e-05, + "loss": 1.8455276489257812, + "step": 245400 + }, + { + "epoch": 32.733333333333334, + "grad_norm": 0.6894487142562866, + "learning_rate": 3.364073333333334e-05, + "loss": 1.847926025390625, + "step": 245500 + }, + { + "epoch": 32.74666666666667, + "grad_norm": 0.6884575486183167, + "learning_rate": 3.363406666666667e-05, + "loss": 1.8473049926757812, + "step": 245600 + }, + { + "epoch": 32.76, + "grad_norm": 0.6874258518218994, + "learning_rate": 3.36274e-05, + "loss": 1.8455709838867187, + "step": 245700 + }, + { + "epoch": 32.77333333333333, + "grad_norm": 0.6681150197982788, + "learning_rate": 3.3620733333333335e-05, + "loss": 1.8474746704101563, + "step": 245800 + }, + { + "epoch": 32.78666666666667, + "grad_norm": 0.6818782687187195, + "learning_rate": 3.361406666666667e-05, + "loss": 1.848689727783203, + "step": 245900 + }, + { + "epoch": 32.8, + "grad_norm": 0.6926629543304443, + "learning_rate": 3.36074e-05, + "loss": 1.8480201721191407, + "step": 246000 + }, + { + "epoch": 32.81333333333333, + "grad_norm": 0.6802074313163757, + "learning_rate": 3.360073333333333e-05, + "loss": 1.8487611389160157, + "step": 246100 + }, + { + "epoch": 32.82666666666667, + "grad_norm": 0.6938923597335815, + "learning_rate": 3.359406666666667e-05, + "loss": 1.8549391174316405, + "step": 246200 + }, + { + "epoch": 32.84, + "grad_norm": 0.6887032389640808, + "learning_rate": 3.35874e-05, + "loss": 1.855552978515625, + "step": 246300 + }, + { + "epoch": 32.85333333333333, + "grad_norm": 0.6876346468925476, + "learning_rate": 3.3580733333333335e-05, + "loss": 1.8523348999023437, + "step": 246400 + }, + { + "epoch": 32.86666666666667, + "grad_norm": 0.6914822459220886, + "learning_rate": 3.357406666666667e-05, + "loss": 1.851287841796875, + "step": 246500 + }, + { + "epoch": 32.88, + "grad_norm": 0.6880086660385132, + "learning_rate": 3.35674e-05, + "loss": 1.8532257080078125, + "step": 246600 + }, + { + "epoch": 32.89333333333333, + "grad_norm": 0.6851861476898193, + "learning_rate": 3.356073333333333e-05, + "loss": 1.8526493835449218, + "step": 246700 + }, + { + "epoch": 32.906666666666666, + "grad_norm": 0.7228900194168091, + "learning_rate": 3.3554066666666664e-05, + "loss": 1.8538876342773438, + "step": 246800 + }, + { + "epoch": 32.92, + "grad_norm": 0.6968467831611633, + "learning_rate": 3.3547400000000003e-05, + "loss": 1.855828857421875, + "step": 246900 + }, + { + "epoch": 32.93333333333333, + "grad_norm": 0.6718273162841797, + "learning_rate": 3.3540733333333336e-05, + "loss": 1.8609310913085937, + "step": 247000 + }, + { + "epoch": 32.946666666666665, + "grad_norm": 0.7059205174446106, + "learning_rate": 3.3534133333333335e-05, + "loss": 1.8553521728515625, + "step": 247100 + }, + { + "epoch": 32.96, + "grad_norm": 0.6735067963600159, + "learning_rate": 3.352746666666667e-05, + "loss": 1.8593675231933593, + "step": 247200 + }, + { + "epoch": 32.973333333333336, + "grad_norm": 0.6527106165885925, + "learning_rate": 3.35208e-05, + "loss": 1.8580506896972657, + "step": 247300 + }, + { + "epoch": 32.986666666666665, + "grad_norm": 0.6713843941688538, + "learning_rate": 3.351413333333334e-05, + "loss": 1.8553984069824219, + "step": 247400 + }, + { + "epoch": 33.0, + "grad_norm": 0.6805854439735413, + "learning_rate": 3.350746666666667e-05, + "loss": 1.8589930725097656, + "step": 247500 + }, + { + "epoch": 33.013333333333335, + "grad_norm": 0.6813168525695801, + "learning_rate": 3.3500799999999996e-05, + "loss": 1.7653323364257814, + "step": 247600 + }, + { + "epoch": 33.026666666666664, + "grad_norm": 0.7006181478500366, + "learning_rate": 3.3494133333333335e-05, + "loss": 1.7744679260253906, + "step": 247700 + }, + { + "epoch": 33.04, + "grad_norm": 0.6603790521621704, + "learning_rate": 3.348746666666667e-05, + "loss": 1.7725636291503906, + "step": 247800 + }, + { + "epoch": 33.053333333333335, + "grad_norm": 0.7163404226303101, + "learning_rate": 3.34808e-05, + "loss": 1.7759190368652344, + "step": 247900 + }, + { + "epoch": 33.06666666666667, + "grad_norm": 0.6999438405036926, + "learning_rate": 3.347413333333333e-05, + "loss": 1.779423828125, + "step": 248000 + }, + { + "epoch": 33.08, + "grad_norm": 0.6900789737701416, + "learning_rate": 3.346746666666667e-05, + "loss": 1.777518768310547, + "step": 248100 + }, + { + "epoch": 33.093333333333334, + "grad_norm": 0.6616639494895935, + "learning_rate": 3.346086666666667e-05, + "loss": 1.7815655517578124, + "step": 248200 + }, + { + "epoch": 33.10666666666667, + "grad_norm": 0.6825656890869141, + "learning_rate": 3.34542e-05, + "loss": 1.7781207275390625, + "step": 248300 + }, + { + "epoch": 33.12, + "grad_norm": 0.6620200872421265, + "learning_rate": 3.3447533333333335e-05, + "loss": 1.780341796875, + "step": 248400 + }, + { + "epoch": 33.13333333333333, + "grad_norm": 0.69339919090271, + "learning_rate": 3.3440866666666674e-05, + "loss": 1.7857955932617187, + "step": 248500 + }, + { + "epoch": 33.14666666666667, + "grad_norm": 0.6670458316802979, + "learning_rate": 3.34342e-05, + "loss": 1.782757568359375, + "step": 248600 + }, + { + "epoch": 33.16, + "grad_norm": 0.6833922863006592, + "learning_rate": 3.342753333333333e-05, + "loss": 1.7865505981445313, + "step": 248700 + }, + { + "epoch": 33.17333333333333, + "grad_norm": 0.691870927810669, + "learning_rate": 3.3420866666666664e-05, + "loss": 1.7900071716308594, + "step": 248800 + }, + { + "epoch": 33.18666666666667, + "grad_norm": 0.6759406924247742, + "learning_rate": 3.34142e-05, + "loss": 1.7894091796875, + "step": 248900 + }, + { + "epoch": 33.2, + "grad_norm": 0.6733843684196472, + "learning_rate": 3.3407533333333335e-05, + "loss": 1.789012451171875, + "step": 249000 + }, + { + "epoch": 33.21333333333333, + "grad_norm": 0.6950940489768982, + "learning_rate": 3.340086666666667e-05, + "loss": 1.7880499267578125, + "step": 249100 + }, + { + "epoch": 33.22666666666667, + "grad_norm": 0.7324302792549133, + "learning_rate": 3.3394200000000006e-05, + "loss": 1.7905299377441406, + "step": 249200 + }, + { + "epoch": 33.24, + "grad_norm": 0.6907392144203186, + "learning_rate": 3.338753333333334e-05, + "loss": 1.7943400573730468, + "step": 249300 + }, + { + "epoch": 33.25333333333333, + "grad_norm": 0.7105041742324829, + "learning_rate": 3.3380866666666664e-05, + "loss": 1.7948751831054688, + "step": 249400 + }, + { + "epoch": 33.266666666666666, + "grad_norm": 0.709616482257843, + "learning_rate": 3.33742e-05, + "loss": 1.7902720642089844, + "step": 249500 + }, + { + "epoch": 33.28, + "grad_norm": 0.6986458897590637, + "learning_rate": 3.3367533333333335e-05, + "loss": 1.7960736083984374, + "step": 249600 + }, + { + "epoch": 33.29333333333334, + "grad_norm": 0.6758502125740051, + "learning_rate": 3.336086666666667e-05, + "loss": 1.7959979248046876, + "step": 249700 + }, + { + "epoch": 33.306666666666665, + "grad_norm": 0.6880955100059509, + "learning_rate": 3.33542e-05, + "loss": 1.7931544494628906, + "step": 249800 + }, + { + "epoch": 33.32, + "grad_norm": 0.7262503504753113, + "learning_rate": 3.334753333333334e-05, + "loss": 1.7994598388671874, + "step": 249900 + }, + { + "epoch": 33.333333333333336, + "grad_norm": 0.7109691500663757, + "learning_rate": 3.334086666666667e-05, + "loss": 1.79959716796875, + "step": 250000 + }, + { + "epoch": 33.346666666666664, + "grad_norm": 0.6842638850212097, + "learning_rate": 3.3334200000000003e-05, + "loss": 1.8011337280273438, + "step": 250100 + }, + { + "epoch": 33.36, + "grad_norm": 0.6685046553611755, + "learning_rate": 3.3327533333333336e-05, + "loss": 1.7983401489257813, + "step": 250200 + }, + { + "epoch": 33.373333333333335, + "grad_norm": 0.6885914206504822, + "learning_rate": 3.332086666666667e-05, + "loss": 1.7981385803222656, + "step": 250300 + }, + { + "epoch": 33.38666666666666, + "grad_norm": 0.6753001809120178, + "learning_rate": 3.33142e-05, + "loss": 1.801946258544922, + "step": 250400 + }, + { + "epoch": 33.4, + "grad_norm": 0.7187413573265076, + "learning_rate": 3.330753333333333e-05, + "loss": 1.8074136352539063, + "step": 250500 + }, + { + "epoch": 33.413333333333334, + "grad_norm": 0.6833614706993103, + "learning_rate": 3.330086666666667e-05, + "loss": 1.8049317932128905, + "step": 250600 + }, + { + "epoch": 33.42666666666667, + "grad_norm": 0.7071197032928467, + "learning_rate": 3.3294200000000004e-05, + "loss": 1.806915283203125, + "step": 250700 + }, + { + "epoch": 33.44, + "grad_norm": 0.6831562519073486, + "learning_rate": 3.3287533333333336e-05, + "loss": 1.8139138793945313, + "step": 250800 + }, + { + "epoch": 33.45333333333333, + "grad_norm": 0.6773768663406372, + "learning_rate": 3.328086666666667e-05, + "loss": 1.8078269958496094, + "step": 250900 + }, + { + "epoch": 33.46666666666667, + "grad_norm": 0.7057144045829773, + "learning_rate": 3.32742e-05, + "loss": 1.8035978698730468, + "step": 251000 + }, + { + "epoch": 33.48, + "grad_norm": 0.6799418926239014, + "learning_rate": 3.326753333333333e-05, + "loss": 1.8070053100585937, + "step": 251100 + }, + { + "epoch": 33.49333333333333, + "grad_norm": 0.7026559710502625, + "learning_rate": 3.3260866666666665e-05, + "loss": 1.8107217407226563, + "step": 251200 + }, + { + "epoch": 33.50666666666667, + "grad_norm": 0.7009078860282898, + "learning_rate": 3.3254200000000004e-05, + "loss": 1.8101768493652344, + "step": 251300 + }, + { + "epoch": 33.52, + "grad_norm": 0.6963510513305664, + "learning_rate": 3.3247533333333337e-05, + "loss": 1.8111842346191407, + "step": 251400 + }, + { + "epoch": 33.53333333333333, + "grad_norm": 0.7202256321907043, + "learning_rate": 3.324086666666667e-05, + "loss": 1.8143753051757812, + "step": 251500 + }, + { + "epoch": 33.54666666666667, + "grad_norm": 0.7055407166481018, + "learning_rate": 3.32342e-05, + "loss": 1.809178924560547, + "step": 251600 + }, + { + "epoch": 33.56, + "grad_norm": 0.6829138398170471, + "learning_rate": 3.322753333333333e-05, + "loss": 1.8132537841796874, + "step": 251700 + }, + { + "epoch": 33.57333333333333, + "grad_norm": 0.7111719250679016, + "learning_rate": 3.3220866666666666e-05, + "loss": 1.814945831298828, + "step": 251800 + }, + { + "epoch": 33.586666666666666, + "grad_norm": 0.686894953250885, + "learning_rate": 3.32142e-05, + "loss": 1.8139251708984374, + "step": 251900 + }, + { + "epoch": 33.6, + "grad_norm": 0.717078685760498, + "learning_rate": 3.320753333333334e-05, + "loss": 1.8149430847167969, + "step": 252000 + }, + { + "epoch": 33.61333333333333, + "grad_norm": 0.7175689935684204, + "learning_rate": 3.320086666666667e-05, + "loss": 1.816144256591797, + "step": 252100 + }, + { + "epoch": 33.626666666666665, + "grad_norm": 0.683018684387207, + "learning_rate": 3.319426666666667e-05, + "loss": 1.8191485595703125, + "step": 252200 + }, + { + "epoch": 33.64, + "grad_norm": 0.7148421406745911, + "learning_rate": 3.31876e-05, + "loss": 1.818320770263672, + "step": 252300 + }, + { + "epoch": 33.653333333333336, + "grad_norm": 0.7053855061531067, + "learning_rate": 3.318093333333333e-05, + "loss": 1.8194677734375, + "step": 252400 + }, + { + "epoch": 33.666666666666664, + "grad_norm": 0.7079534530639648, + "learning_rate": 3.317426666666667e-05, + "loss": 1.81727783203125, + "step": 252500 + }, + { + "epoch": 33.68, + "grad_norm": 0.7095150351524353, + "learning_rate": 3.3167600000000004e-05, + "loss": 1.8225425720214843, + "step": 252600 + }, + { + "epoch": 33.693333333333335, + "grad_norm": 0.69334477186203, + "learning_rate": 3.316093333333333e-05, + "loss": 1.8201156616210938, + "step": 252700 + }, + { + "epoch": 33.70666666666666, + "grad_norm": 0.6913406848907471, + "learning_rate": 3.315426666666667e-05, + "loss": 1.8216618347167968, + "step": 252800 + }, + { + "epoch": 33.72, + "grad_norm": 0.7094120979309082, + "learning_rate": 3.31476e-05, + "loss": 1.8205288696289061, + "step": 252900 + }, + { + "epoch": 33.733333333333334, + "grad_norm": 0.7051302790641785, + "learning_rate": 3.314093333333333e-05, + "loss": 1.8198191833496093, + "step": 253000 + }, + { + "epoch": 33.74666666666667, + "grad_norm": 0.7253535985946655, + "learning_rate": 3.313426666666667e-05, + "loss": 1.8211686706542969, + "step": 253100 + }, + { + "epoch": 33.76, + "grad_norm": 0.7110514044761658, + "learning_rate": 3.3127600000000004e-05, + "loss": 1.8267140197753906, + "step": 253200 + }, + { + "epoch": 33.77333333333333, + "grad_norm": 0.7230038046836853, + "learning_rate": 3.312093333333334e-05, + "loss": 1.8259141540527344, + "step": 253300 + }, + { + "epoch": 33.78666666666667, + "grad_norm": 0.6794722080230713, + "learning_rate": 3.311426666666667e-05, + "loss": 1.8242117309570312, + "step": 253400 + }, + { + "epoch": 33.8, + "grad_norm": 0.7026447653770447, + "learning_rate": 3.31076e-05, + "loss": 1.8272193908691405, + "step": 253500 + }, + { + "epoch": 33.81333333333333, + "grad_norm": 0.6905506253242493, + "learning_rate": 3.3100933333333334e-05, + "loss": 1.8256301879882812, + "step": 253600 + }, + { + "epoch": 33.82666666666667, + "grad_norm": 0.7163878679275513, + "learning_rate": 3.3094266666666666e-05, + "loss": 1.8273219299316406, + "step": 253700 + }, + { + "epoch": 33.84, + "grad_norm": 0.7006620764732361, + "learning_rate": 3.3087600000000005e-05, + "loss": 1.8279637145996093, + "step": 253800 + }, + { + "epoch": 33.85333333333333, + "grad_norm": 0.7368113994598389, + "learning_rate": 3.308093333333334e-05, + "loss": 1.8289633178710938, + "step": 253900 + }, + { + "epoch": 33.86666666666667, + "grad_norm": 0.7007164359092712, + "learning_rate": 3.307426666666667e-05, + "loss": 1.8291307067871094, + "step": 254000 + }, + { + "epoch": 33.88, + "grad_norm": 0.6749239563941956, + "learning_rate": 3.30676e-05, + "loss": 1.8294178771972656, + "step": 254100 + }, + { + "epoch": 33.89333333333333, + "grad_norm": 0.6939826011657715, + "learning_rate": 3.3061e-05, + "loss": 1.8320030212402343, + "step": 254200 + }, + { + "epoch": 33.906666666666666, + "grad_norm": 0.6852236390113831, + "learning_rate": 3.305433333333334e-05, + "loss": 1.8298947143554687, + "step": 254300 + }, + { + "epoch": 33.92, + "grad_norm": 0.6890901923179626, + "learning_rate": 3.3047666666666665e-05, + "loss": 1.8333465576171875, + "step": 254400 + }, + { + "epoch": 33.93333333333333, + "grad_norm": 0.6870790719985962, + "learning_rate": 3.3041e-05, + "loss": 1.8343376159667968, + "step": 254500 + }, + { + "epoch": 33.946666666666665, + "grad_norm": 0.6900056004524231, + "learning_rate": 3.3034333333333337e-05, + "loss": 1.8305508422851562, + "step": 254600 + }, + { + "epoch": 33.96, + "grad_norm": 0.725274920463562, + "learning_rate": 3.302766666666667e-05, + "loss": 1.8356878662109375, + "step": 254700 + }, + { + "epoch": 33.973333333333336, + "grad_norm": 0.7070014476776123, + "learning_rate": 3.3021e-05, + "loss": 1.8370289611816406, + "step": 254800 + }, + { + "epoch": 33.986666666666665, + "grad_norm": 0.671153724193573, + "learning_rate": 3.3014333333333333e-05, + "loss": 1.8323648071289063, + "step": 254900 + }, + { + "epoch": 34.0, + "grad_norm": 0.722389280796051, + "learning_rate": 3.300766666666667e-05, + "loss": 1.8307501220703124, + "step": 255000 + }, + { + "epoch": 34.013333333333335, + "grad_norm": 0.6944375038146973, + "learning_rate": 3.3001000000000005e-05, + "loss": 1.7463754272460938, + "step": 255100 + }, + { + "epoch": 34.026666666666664, + "grad_norm": 0.7085298895835876, + "learning_rate": 3.299433333333333e-05, + "loss": 1.7458438110351562, + "step": 255200 + }, + { + "epoch": 34.04, + "grad_norm": 0.7206888794898987, + "learning_rate": 3.298766666666667e-05, + "loss": 1.7499029541015625, + "step": 255300 + }, + { + "epoch": 34.053333333333335, + "grad_norm": 0.7031662464141846, + "learning_rate": 3.2981e-05, + "loss": 1.748662109375, + "step": 255400 + }, + { + "epoch": 34.06666666666667, + "grad_norm": 0.6964542269706726, + "learning_rate": 3.2974333333333334e-05, + "loss": 1.7524285888671876, + "step": 255500 + }, + { + "epoch": 34.08, + "grad_norm": 0.684666097164154, + "learning_rate": 3.2967666666666666e-05, + "loss": 1.7483273315429688, + "step": 255600 + }, + { + "epoch": 34.093333333333334, + "grad_norm": 0.7105111479759216, + "learning_rate": 3.2961000000000005e-05, + "loss": 1.7552597045898437, + "step": 255700 + }, + { + "epoch": 34.10666666666667, + "grad_norm": 0.7125686407089233, + "learning_rate": 3.295433333333334e-05, + "loss": 1.7612779235839844, + "step": 255800 + }, + { + "epoch": 34.12, + "grad_norm": 0.7236320972442627, + "learning_rate": 3.294766666666666e-05, + "loss": 1.7570318603515624, + "step": 255900 + }, + { + "epoch": 34.13333333333333, + "grad_norm": 0.7234290242195129, + "learning_rate": 3.2941e-05, + "loss": 1.7590721130371094, + "step": 256000 + }, + { + "epoch": 34.14666666666667, + "grad_norm": 0.709517776966095, + "learning_rate": 3.2934333333333334e-05, + "loss": 1.7588279724121094, + "step": 256100 + }, + { + "epoch": 34.16, + "grad_norm": 0.7075774669647217, + "learning_rate": 3.292773333333333e-05, + "loss": 1.7636314392089845, + "step": 256200 + }, + { + "epoch": 34.17333333333333, + "grad_norm": 0.685980498790741, + "learning_rate": 3.2921066666666666e-05, + "loss": 1.7642453002929688, + "step": 256300 + }, + { + "epoch": 34.18666666666667, + "grad_norm": 0.6789040565490723, + "learning_rate": 3.29144e-05, + "loss": 1.7647459411621094, + "step": 256400 + }, + { + "epoch": 34.2, + "grad_norm": 0.7118276357650757, + "learning_rate": 3.290773333333334e-05, + "loss": 1.7657359313964844, + "step": 256500 + }, + { + "epoch": 34.21333333333333, + "grad_norm": 0.7182782292366028, + "learning_rate": 3.290106666666667e-05, + "loss": 1.767525634765625, + "step": 256600 + }, + { + "epoch": 34.22666666666667, + "grad_norm": 0.6663193106651306, + "learning_rate": 3.28944e-05, + "loss": 1.7640966796875, + "step": 256700 + }, + { + "epoch": 34.24, + "grad_norm": 0.6728143692016602, + "learning_rate": 3.288773333333334e-05, + "loss": 1.7657148742675781, + "step": 256800 + }, + { + "epoch": 34.25333333333333, + "grad_norm": 0.7225044369697571, + "learning_rate": 3.2881066666666666e-05, + "loss": 1.771612091064453, + "step": 256900 + }, + { + "epoch": 34.266666666666666, + "grad_norm": 0.6851556897163391, + "learning_rate": 3.28744e-05, + "loss": 1.7695832824707032, + "step": 257000 + }, + { + "epoch": 34.28, + "grad_norm": 0.6964775323867798, + "learning_rate": 3.286773333333333e-05, + "loss": 1.7699888610839845, + "step": 257100 + }, + { + "epoch": 34.29333333333334, + "grad_norm": 0.708335280418396, + "learning_rate": 3.286106666666667e-05, + "loss": 1.769803009033203, + "step": 257200 + }, + { + "epoch": 34.306666666666665, + "grad_norm": 0.7314557433128357, + "learning_rate": 3.28544e-05, + "loss": 1.7759251403808594, + "step": 257300 + }, + { + "epoch": 34.32, + "grad_norm": 0.7204164862632751, + "learning_rate": 3.2847733333333334e-05, + "loss": 1.7730311584472656, + "step": 257400 + }, + { + "epoch": 34.333333333333336, + "grad_norm": 0.71314936876297, + "learning_rate": 3.284106666666667e-05, + "loss": 1.7768055725097656, + "step": 257500 + }, + { + "epoch": 34.346666666666664, + "grad_norm": 0.6884594559669495, + "learning_rate": 3.2834400000000005e-05, + "loss": 1.7790744018554687, + "step": 257600 + }, + { + "epoch": 34.36, + "grad_norm": 0.7092511653900146, + "learning_rate": 3.282773333333333e-05, + "loss": 1.7782786560058594, + "step": 257700 + }, + { + "epoch": 34.373333333333335, + "grad_norm": 0.758355438709259, + "learning_rate": 3.282106666666667e-05, + "loss": 1.7751937866210938, + "step": 257800 + }, + { + "epoch": 34.38666666666666, + "grad_norm": 0.7290791869163513, + "learning_rate": 3.28144e-05, + "loss": 1.7803231811523437, + "step": 257900 + }, + { + "epoch": 34.4, + "grad_norm": 0.7067010998725891, + "learning_rate": 3.2807733333333334e-05, + "loss": 1.7779922485351562, + "step": 258000 + }, + { + "epoch": 34.413333333333334, + "grad_norm": 0.7042437791824341, + "learning_rate": 3.280106666666667e-05, + "loss": 1.7828672790527345, + "step": 258100 + }, + { + "epoch": 34.42666666666667, + "grad_norm": 0.7334814667701721, + "learning_rate": 3.2794466666666666e-05, + "loss": 1.7837445068359374, + "step": 258200 + }, + { + "epoch": 34.44, + "grad_norm": 0.6984947919845581, + "learning_rate": 3.2787800000000005e-05, + "loss": 1.7827430725097657, + "step": 258300 + }, + { + "epoch": 34.45333333333333, + "grad_norm": 0.7189805507659912, + "learning_rate": 3.278113333333334e-05, + "loss": 1.7818618774414063, + "step": 258400 + }, + { + "epoch": 34.46666666666667, + "grad_norm": 0.7172175049781799, + "learning_rate": 3.277446666666667e-05, + "loss": 1.786385040283203, + "step": 258500 + }, + { + "epoch": 34.48, + "grad_norm": 0.6976024508476257, + "learning_rate": 3.27678e-05, + "loss": 1.7863441467285157, + "step": 258600 + }, + { + "epoch": 34.49333333333333, + "grad_norm": 0.7336111664772034, + "learning_rate": 3.2761133333333334e-05, + "loss": 1.7882395935058595, + "step": 258700 + }, + { + "epoch": 34.50666666666667, + "grad_norm": 0.7398297190666199, + "learning_rate": 3.2754466666666666e-05, + "loss": 1.7881121826171875, + "step": 258800 + }, + { + "epoch": 34.52, + "grad_norm": 0.7262130379676819, + "learning_rate": 3.27478e-05, + "loss": 1.7835282897949218, + "step": 258900 + }, + { + "epoch": 34.53333333333333, + "grad_norm": 0.7167975306510925, + "learning_rate": 3.274113333333334e-05, + "loss": 1.7948524475097656, + "step": 259000 + }, + { + "epoch": 34.54666666666667, + "grad_norm": 0.7211325764656067, + "learning_rate": 3.273446666666667e-05, + "loss": 1.7875064086914063, + "step": 259100 + }, + { + "epoch": 34.56, + "grad_norm": 0.7152880430221558, + "learning_rate": 3.27278e-05, + "loss": 1.7891029357910155, + "step": 259200 + }, + { + "epoch": 34.57333333333333, + "grad_norm": 0.6966748833656311, + "learning_rate": 3.2721133333333334e-05, + "loss": 1.792362823486328, + "step": 259300 + }, + { + "epoch": 34.586666666666666, + "grad_norm": 0.7045295238494873, + "learning_rate": 3.2714466666666667e-05, + "loss": 1.7886041259765626, + "step": 259400 + }, + { + "epoch": 34.6, + "grad_norm": 0.7518943548202515, + "learning_rate": 3.27078e-05, + "loss": 1.7914320373535155, + "step": 259500 + }, + { + "epoch": 34.61333333333333, + "grad_norm": 0.7086119651794434, + "learning_rate": 3.2701200000000005e-05, + "loss": 1.7893756103515626, + "step": 259600 + }, + { + "epoch": 34.626666666666665, + "grad_norm": 0.7113426923751831, + "learning_rate": 3.269453333333333e-05, + "loss": 1.7912899780273437, + "step": 259700 + }, + { + "epoch": 34.64, + "grad_norm": 0.7117241621017456, + "learning_rate": 3.268786666666667e-05, + "loss": 1.7933538818359376, + "step": 259800 + }, + { + "epoch": 34.653333333333336, + "grad_norm": 0.7044850587844849, + "learning_rate": 3.26812e-05, + "loss": 1.7952735900878907, + "step": 259900 + }, + { + "epoch": 34.666666666666664, + "grad_norm": 0.7023999691009521, + "learning_rate": 3.2674533333333334e-05, + "loss": 1.7962698364257812, + "step": 260000 + }, + { + "epoch": 34.68, + "grad_norm": 0.7212279438972473, + "learning_rate": 3.2667866666666666e-05, + "loss": 1.795453338623047, + "step": 260100 + }, + { + "epoch": 34.693333333333335, + "grad_norm": 0.7294625043869019, + "learning_rate": 3.2661200000000005e-05, + "loss": 1.8032328796386718, + "step": 260200 + }, + { + "epoch": 34.70666666666666, + "grad_norm": 0.7199930548667908, + "learning_rate": 3.265453333333334e-05, + "loss": 1.7969496154785156, + "step": 260300 + }, + { + "epoch": 34.72, + "grad_norm": 0.7424473166465759, + "learning_rate": 3.264786666666666e-05, + "loss": 1.8003564453125, + "step": 260400 + }, + { + "epoch": 34.733333333333334, + "grad_norm": 0.6995416283607483, + "learning_rate": 3.26412e-05, + "loss": 1.8012725830078125, + "step": 260500 + }, + { + "epoch": 34.74666666666667, + "grad_norm": 0.712614893913269, + "learning_rate": 3.2634533333333334e-05, + "loss": 1.79720458984375, + "step": 260600 + }, + { + "epoch": 34.76, + "grad_norm": 0.7090932130813599, + "learning_rate": 3.2627866666666666e-05, + "loss": 1.796382598876953, + "step": 260700 + }, + { + "epoch": 34.77333333333333, + "grad_norm": 0.715495765209198, + "learning_rate": 3.26212e-05, + "loss": 1.8014085388183594, + "step": 260800 + }, + { + "epoch": 34.78666666666667, + "grad_norm": 0.6967054009437561, + "learning_rate": 3.261453333333334e-05, + "loss": 1.8019192504882813, + "step": 260900 + }, + { + "epoch": 34.8, + "grad_norm": 0.7249776124954224, + "learning_rate": 3.260786666666667e-05, + "loss": 1.8009378051757812, + "step": 261000 + }, + { + "epoch": 34.81333333333333, + "grad_norm": 0.7215238213539124, + "learning_rate": 3.26012e-05, + "loss": 1.8022233581542968, + "step": 261100 + }, + { + "epoch": 34.82666666666667, + "grad_norm": 0.6885356903076172, + "learning_rate": 3.2594533333333334e-05, + "loss": 1.8026568603515625, + "step": 261200 + }, + { + "epoch": 34.84, + "grad_norm": 0.732446551322937, + "learning_rate": 3.258786666666667e-05, + "loss": 1.8067509460449218, + "step": 261300 + }, + { + "epoch": 34.85333333333333, + "grad_norm": 0.7237669229507446, + "learning_rate": 3.25812e-05, + "loss": 1.8049159240722656, + "step": 261400 + }, + { + "epoch": 34.86666666666667, + "grad_norm": 0.7220719456672668, + "learning_rate": 3.257453333333334e-05, + "loss": 1.8078208923339845, + "step": 261500 + }, + { + "epoch": 34.88, + "grad_norm": 0.7088682651519775, + "learning_rate": 3.256786666666667e-05, + "loss": 1.8080841064453126, + "step": 261600 + }, + { + "epoch": 34.89333333333333, + "grad_norm": 0.7922437787055969, + "learning_rate": 3.25612e-05, + "loss": 1.8082931518554688, + "step": 261700 + }, + { + "epoch": 34.906666666666666, + "grad_norm": 0.707200825214386, + "learning_rate": 3.25546e-05, + "loss": 1.8050637817382813, + "step": 261800 + }, + { + "epoch": 34.92, + "grad_norm": 0.7059547305107117, + "learning_rate": 3.2547933333333334e-05, + "loss": 1.8101914978027345, + "step": 261900 + }, + { + "epoch": 34.93333333333333, + "grad_norm": 0.7146642804145813, + "learning_rate": 3.254126666666667e-05, + "loss": 1.8113522338867187, + "step": 262000 + }, + { + "epoch": 34.946666666666665, + "grad_norm": 0.7141034603118896, + "learning_rate": 3.2534600000000005e-05, + "loss": 1.8065060424804686, + "step": 262100 + }, + { + "epoch": 34.96, + "grad_norm": 0.7005040645599365, + "learning_rate": 3.252793333333333e-05, + "loss": 1.8118878173828126, + "step": 262200 + }, + { + "epoch": 34.973333333333336, + "grad_norm": 0.6977455019950867, + "learning_rate": 3.252126666666667e-05, + "loss": 1.8072309875488282, + "step": 262300 + }, + { + "epoch": 34.986666666666665, + "grad_norm": 0.7083906531333923, + "learning_rate": 3.25146e-05, + "loss": 1.8132292175292968, + "step": 262400 + }, + { + "epoch": 35.0, + "grad_norm": 0.7053395509719849, + "learning_rate": 3.2507933333333334e-05, + "loss": 1.810267333984375, + "step": 262500 + }, + { + "epoch": 35.013333333333335, + "grad_norm": 0.7179415225982666, + "learning_rate": 3.2501266666666667e-05, + "loss": 1.720147705078125, + "step": 262600 + }, + { + "epoch": 35.026666666666664, + "grad_norm": 0.6983874440193176, + "learning_rate": 3.2494600000000006e-05, + "loss": 1.7274235534667968, + "step": 262700 + }, + { + "epoch": 35.04, + "grad_norm": 0.7099409699440002, + "learning_rate": 3.248793333333334e-05, + "loss": 1.7269102478027343, + "step": 262800 + }, + { + "epoch": 35.053333333333335, + "grad_norm": 0.7118650674819946, + "learning_rate": 3.248126666666667e-05, + "loss": 1.7248257446289061, + "step": 262900 + }, + { + "epoch": 35.06666666666667, + "grad_norm": 0.7239251136779785, + "learning_rate": 3.24746e-05, + "loss": 1.7289593505859375, + "step": 263000 + }, + { + "epoch": 35.08, + "grad_norm": 0.7100144624710083, + "learning_rate": 3.2467933333333335e-05, + "loss": 1.7312472534179688, + "step": 263100 + }, + { + "epoch": 35.093333333333334, + "grad_norm": 0.7234798669815063, + "learning_rate": 3.246126666666667e-05, + "loss": 1.73094970703125, + "step": 263200 + }, + { + "epoch": 35.10666666666667, + "grad_norm": 0.6909958124160767, + "learning_rate": 3.24546e-05, + "loss": 1.736466522216797, + "step": 263300 + }, + { + "epoch": 35.12, + "grad_norm": 0.7305464148521423, + "learning_rate": 3.244793333333334e-05, + "loss": 1.7368101501464843, + "step": 263400 + }, + { + "epoch": 35.13333333333333, + "grad_norm": 0.716325044631958, + "learning_rate": 3.244126666666667e-05, + "loss": 1.7344117736816407, + "step": 263500 + }, + { + "epoch": 35.14666666666667, + "grad_norm": 0.7322099208831787, + "learning_rate": 3.24346e-05, + "loss": 1.7373164367675782, + "step": 263600 + }, + { + "epoch": 35.16, + "grad_norm": 0.7618185877799988, + "learning_rate": 3.2427933333333335e-05, + "loss": 1.7396737670898437, + "step": 263700 + }, + { + "epoch": 35.17333333333333, + "grad_norm": 0.7051612138748169, + "learning_rate": 3.242126666666667e-05, + "loss": 1.7394839477539064, + "step": 263800 + }, + { + "epoch": 35.18666666666667, + "grad_norm": 0.6973703503608704, + "learning_rate": 3.24146e-05, + "loss": 1.7405155944824218, + "step": 263900 + }, + { + "epoch": 35.2, + "grad_norm": 0.7270771265029907, + "learning_rate": 3.240793333333333e-05, + "loss": 1.742344970703125, + "step": 264000 + }, + { + "epoch": 35.21333333333333, + "grad_norm": 0.7269550561904907, + "learning_rate": 3.240126666666667e-05, + "loss": 1.7401051330566406, + "step": 264100 + }, + { + "epoch": 35.22666666666667, + "grad_norm": 0.7064307928085327, + "learning_rate": 3.23946e-05, + "loss": 1.742832489013672, + "step": 264200 + }, + { + "epoch": 35.24, + "grad_norm": 0.6901838779449463, + "learning_rate": 3.2387933333333335e-05, + "loss": 1.7487083435058595, + "step": 264300 + }, + { + "epoch": 35.25333333333333, + "grad_norm": 0.7132669687271118, + "learning_rate": 3.238126666666667e-05, + "loss": 1.7473236083984376, + "step": 264400 + }, + { + "epoch": 35.266666666666666, + "grad_norm": 0.7222061157226562, + "learning_rate": 3.23746e-05, + "loss": 1.7487094116210937, + "step": 264500 + }, + { + "epoch": 35.28, + "grad_norm": 0.7056880593299866, + "learning_rate": 3.236793333333333e-05, + "loss": 1.7457852172851562, + "step": 264600 + }, + { + "epoch": 35.29333333333334, + "grad_norm": 0.7410815954208374, + "learning_rate": 3.2361266666666665e-05, + "loss": 1.7503875732421874, + "step": 264700 + }, + { + "epoch": 35.306666666666665, + "grad_norm": 0.7270119786262512, + "learning_rate": 3.2354600000000004e-05, + "loss": 1.7513735961914063, + "step": 264800 + }, + { + "epoch": 35.32, + "grad_norm": 0.7054768204689026, + "learning_rate": 3.2347933333333336e-05, + "loss": 1.7556321716308594, + "step": 264900 + }, + { + "epoch": 35.333333333333336, + "grad_norm": 0.7149020433425903, + "learning_rate": 3.234126666666667e-05, + "loss": 1.7507872009277343, + "step": 265000 + }, + { + "epoch": 35.346666666666664, + "grad_norm": 0.7018755674362183, + "learning_rate": 3.23346e-05, + "loss": 1.7512226867675782, + "step": 265100 + }, + { + "epoch": 35.36, + "grad_norm": 0.7539740204811096, + "learning_rate": 3.232793333333333e-05, + "loss": 1.751693115234375, + "step": 265200 + }, + { + "epoch": 35.373333333333335, + "grad_norm": 0.7125043869018555, + "learning_rate": 3.2321266666666665e-05, + "loss": 1.751684112548828, + "step": 265300 + }, + { + "epoch": 35.38666666666666, + "grad_norm": 0.7284225821495056, + "learning_rate": 3.23146e-05, + "loss": 1.7530982971191407, + "step": 265400 + }, + { + "epoch": 35.4, + "grad_norm": 0.7372731566429138, + "learning_rate": 3.2307933333333336e-05, + "loss": 1.7575666809082031, + "step": 265500 + }, + { + "epoch": 35.413333333333334, + "grad_norm": 0.7320109009742737, + "learning_rate": 3.230126666666667e-05, + "loss": 1.7619415283203126, + "step": 265600 + }, + { + "epoch": 35.42666666666667, + "grad_norm": 0.715881884098053, + "learning_rate": 3.22946e-05, + "loss": 1.75659912109375, + "step": 265700 + }, + { + "epoch": 35.44, + "grad_norm": 0.7461238503456116, + "learning_rate": 3.2288e-05, + "loss": 1.7591160583496093, + "step": 265800 + }, + { + "epoch": 35.45333333333333, + "grad_norm": 0.751312255859375, + "learning_rate": 3.228133333333334e-05, + "loss": 1.761936492919922, + "step": 265900 + }, + { + "epoch": 35.46666666666667, + "grad_norm": 0.7453945279121399, + "learning_rate": 3.227466666666667e-05, + "loss": 1.7588221740722656, + "step": 266000 + }, + { + "epoch": 35.48, + "grad_norm": 0.7304133176803589, + "learning_rate": 3.2268000000000003e-05, + "loss": 1.7641864013671875, + "step": 266100 + }, + { + "epoch": 35.49333333333333, + "grad_norm": 0.7159408926963806, + "learning_rate": 3.226133333333333e-05, + "loss": 1.763712158203125, + "step": 266200 + }, + { + "epoch": 35.50666666666667, + "grad_norm": 0.7238728404045105, + "learning_rate": 3.225466666666667e-05, + "loss": 1.766953582763672, + "step": 266300 + }, + { + "epoch": 35.52, + "grad_norm": 0.7204245924949646, + "learning_rate": 3.2248e-05, + "loss": 1.7641201782226563, + "step": 266400 + }, + { + "epoch": 35.53333333333333, + "grad_norm": 0.7490574717521667, + "learning_rate": 3.224133333333333e-05, + "loss": 1.7628182983398437, + "step": 266500 + }, + { + "epoch": 35.54666666666667, + "grad_norm": 0.7318447232246399, + "learning_rate": 3.223466666666667e-05, + "loss": 1.768040008544922, + "step": 266600 + }, + { + "epoch": 35.56, + "grad_norm": 0.7002058625221252, + "learning_rate": 3.2228000000000004e-05, + "loss": 1.7642034912109374, + "step": 266700 + }, + { + "epoch": 35.57333333333333, + "grad_norm": 0.7356955409049988, + "learning_rate": 3.2221333333333336e-05, + "loss": 1.765457000732422, + "step": 266800 + }, + { + "epoch": 35.586666666666666, + "grad_norm": 0.7351566553115845, + "learning_rate": 3.2214733333333335e-05, + "loss": 1.7657107543945312, + "step": 266900 + }, + { + "epoch": 35.6, + "grad_norm": 0.7202064394950867, + "learning_rate": 3.220806666666667e-05, + "loss": 1.7705520629882812, + "step": 267000 + }, + { + "epoch": 35.61333333333333, + "grad_norm": 0.7428541779518127, + "learning_rate": 3.2201400000000006e-05, + "loss": 1.769801483154297, + "step": 267100 + }, + { + "epoch": 35.626666666666665, + "grad_norm": 0.7157596349716187, + "learning_rate": 3.219473333333333e-05, + "loss": 1.769151153564453, + "step": 267200 + }, + { + "epoch": 35.64, + "grad_norm": 0.7332503199577332, + "learning_rate": 3.2188066666666664e-05, + "loss": 1.7689814758300781, + "step": 267300 + }, + { + "epoch": 35.653333333333336, + "grad_norm": 0.7052285075187683, + "learning_rate": 3.21814e-05, + "loss": 1.7711866760253907, + "step": 267400 + }, + { + "epoch": 35.666666666666664, + "grad_norm": 0.7430896162986755, + "learning_rate": 3.2174733333333336e-05, + "loss": 1.7715708923339843, + "step": 267500 + }, + { + "epoch": 35.68, + "grad_norm": 0.7421042323112488, + "learning_rate": 3.216806666666667e-05, + "loss": 1.7714950561523437, + "step": 267600 + }, + { + "epoch": 35.693333333333335, + "grad_norm": 0.7241594791412354, + "learning_rate": 3.21614e-05, + "loss": 1.7752314758300782, + "step": 267700 + }, + { + "epoch": 35.70666666666666, + "grad_norm": 0.6929828524589539, + "learning_rate": 3.215473333333334e-05, + "loss": 1.778212127685547, + "step": 267800 + }, + { + "epoch": 35.72, + "grad_norm": 0.7369002103805542, + "learning_rate": 3.214806666666667e-05, + "loss": 1.774071502685547, + "step": 267900 + }, + { + "epoch": 35.733333333333334, + "grad_norm": 0.7390934824943542, + "learning_rate": 3.21414e-05, + "loss": 1.7779090881347657, + "step": 268000 + }, + { + "epoch": 35.74666666666667, + "grad_norm": 0.7036294341087341, + "learning_rate": 3.2134733333333336e-05, + "loss": 1.77925537109375, + "step": 268100 + }, + { + "epoch": 35.76, + "grad_norm": 0.713968813419342, + "learning_rate": 3.212806666666667e-05, + "loss": 1.780936279296875, + "step": 268200 + }, + { + "epoch": 35.77333333333333, + "grad_norm": 0.7476961612701416, + "learning_rate": 3.21214e-05, + "loss": 1.7815696716308593, + "step": 268300 + }, + { + "epoch": 35.78666666666667, + "grad_norm": 0.7531934380531311, + "learning_rate": 3.211473333333333e-05, + "loss": 1.778701171875, + "step": 268400 + }, + { + "epoch": 35.8, + "grad_norm": 0.7263785600662231, + "learning_rate": 3.210806666666667e-05, + "loss": 1.7831895446777344, + "step": 268500 + }, + { + "epoch": 35.81333333333333, + "grad_norm": 0.7144677042961121, + "learning_rate": 3.2101400000000004e-05, + "loss": 1.7823295593261719, + "step": 268600 + }, + { + "epoch": 35.82666666666667, + "grad_norm": 0.7361660003662109, + "learning_rate": 3.209473333333333e-05, + "loss": 1.7813780212402344, + "step": 268700 + }, + { + "epoch": 35.84, + "grad_norm": 0.7294068932533264, + "learning_rate": 3.208806666666667e-05, + "loss": 1.776859588623047, + "step": 268800 + }, + { + "epoch": 35.85333333333333, + "grad_norm": 0.7189229726791382, + "learning_rate": 3.20814e-05, + "loss": 1.7815873718261719, + "step": 268900 + }, + { + "epoch": 35.86666666666667, + "grad_norm": 0.7154908180236816, + "learning_rate": 3.207473333333333e-05, + "loss": 1.7768629455566407, + "step": 269000 + }, + { + "epoch": 35.88, + "grad_norm": 0.7369889616966248, + "learning_rate": 3.2068066666666665e-05, + "loss": 1.7820993041992188, + "step": 269100 + }, + { + "epoch": 35.89333333333333, + "grad_norm": 0.7437416911125183, + "learning_rate": 3.2061400000000004e-05, + "loss": 1.7829997253417968, + "step": 269200 + }, + { + "epoch": 35.906666666666666, + "grad_norm": 0.6980392336845398, + "learning_rate": 3.2054800000000004e-05, + "loss": 1.788327178955078, + "step": 269300 + }, + { + "epoch": 35.92, + "grad_norm": 0.7489062547683716, + "learning_rate": 3.2048133333333336e-05, + "loss": 1.784275360107422, + "step": 269400 + }, + { + "epoch": 35.93333333333333, + "grad_norm": 0.7697765827178955, + "learning_rate": 3.204146666666667e-05, + "loss": 1.7840049743652344, + "step": 269500 + }, + { + "epoch": 35.946666666666665, + "grad_norm": 0.7413792014122009, + "learning_rate": 3.20348e-05, + "loss": 1.7808065795898438, + "step": 269600 + }, + { + "epoch": 35.96, + "grad_norm": 0.7363737225532532, + "learning_rate": 3.202813333333333e-05, + "loss": 1.7876707458496093, + "step": 269700 + }, + { + "epoch": 35.973333333333336, + "grad_norm": 0.7427986860275269, + "learning_rate": 3.2021466666666665e-05, + "loss": 1.786104736328125, + "step": 269800 + }, + { + "epoch": 35.986666666666665, + "grad_norm": 0.7256585359573364, + "learning_rate": 3.20148e-05, + "loss": 1.7870755004882812, + "step": 269900 + }, + { + "epoch": 36.0, + "grad_norm": 0.7233152389526367, + "learning_rate": 3.2008133333333336e-05, + "loss": 1.78588623046875, + "step": 270000 + }, + { + "epoch": 36.013333333333335, + "grad_norm": 0.711797833442688, + "learning_rate": 3.200146666666667e-05, + "loss": 1.7004847717285156, + "step": 270100 + }, + { + "epoch": 36.026666666666664, + "grad_norm": 0.7260730862617493, + "learning_rate": 3.19948e-05, + "loss": 1.701490478515625, + "step": 270200 + }, + { + "epoch": 36.04, + "grad_norm": 0.7351646423339844, + "learning_rate": 3.198813333333334e-05, + "loss": 1.70460205078125, + "step": 270300 + }, + { + "epoch": 36.053333333333335, + "grad_norm": 0.7190471291542053, + "learning_rate": 3.198146666666667e-05, + "loss": 1.6980458068847657, + "step": 270400 + }, + { + "epoch": 36.06666666666667, + "grad_norm": 0.7336345911026001, + "learning_rate": 3.19748e-05, + "loss": 1.707018585205078, + "step": 270500 + }, + { + "epoch": 36.08, + "grad_norm": 0.7053529024124146, + "learning_rate": 3.1968133333333337e-05, + "loss": 1.7060832214355468, + "step": 270600 + }, + { + "epoch": 36.093333333333334, + "grad_norm": 0.723622739315033, + "learning_rate": 3.196146666666667e-05, + "loss": 1.7135696411132812, + "step": 270700 + }, + { + "epoch": 36.10666666666667, + "grad_norm": 0.6846678853034973, + "learning_rate": 3.19548e-05, + "loss": 1.7092733764648438, + "step": 270800 + }, + { + "epoch": 36.12, + "grad_norm": 0.7483423352241516, + "learning_rate": 3.194813333333333e-05, + "loss": 1.7153257751464843, + "step": 270900 + }, + { + "epoch": 36.13333333333333, + "grad_norm": 0.7453268766403198, + "learning_rate": 3.194146666666667e-05, + "loss": 1.7127186584472656, + "step": 271000 + }, + { + "epoch": 36.14666666666667, + "grad_norm": 0.7087700963020325, + "learning_rate": 3.1934800000000005e-05, + "loss": 1.7130256652832032, + "step": 271100 + }, + { + "epoch": 36.16, + "grad_norm": 0.7314236164093018, + "learning_rate": 3.192813333333333e-05, + "loss": 1.7165345764160156, + "step": 271200 + }, + { + "epoch": 36.17333333333333, + "grad_norm": 0.7344350218772888, + "learning_rate": 3.192146666666667e-05, + "loss": 1.7190016174316407, + "step": 271300 + }, + { + "epoch": 36.18666666666667, + "grad_norm": 0.7444190979003906, + "learning_rate": 3.19148e-05, + "loss": 1.7203594970703124, + "step": 271400 + }, + { + "epoch": 36.2, + "grad_norm": 0.7286201119422913, + "learning_rate": 3.1908133333333334e-05, + "loss": 1.7190869140625, + "step": 271500 + }, + { + "epoch": 36.21333333333333, + "grad_norm": 0.7416961789131165, + "learning_rate": 3.1901466666666666e-05, + "loss": 1.7250083923339843, + "step": 271600 + }, + { + "epoch": 36.22666666666667, + "grad_norm": 0.7191265225410461, + "learning_rate": 3.1894800000000005e-05, + "loss": 1.7248774719238282, + "step": 271700 + }, + { + "epoch": 36.24, + "grad_norm": 0.7464678287506104, + "learning_rate": 3.188813333333334e-05, + "loss": 1.7244654846191407, + "step": 271800 + }, + { + "epoch": 36.25333333333333, + "grad_norm": 0.741040050983429, + "learning_rate": 3.188146666666667e-05, + "loss": 1.7217869567871094, + "step": 271900 + }, + { + "epoch": 36.266666666666666, + "grad_norm": 0.7492501735687256, + "learning_rate": 3.18748e-05, + "loss": 1.7232154846191405, + "step": 272000 + }, + { + "epoch": 36.28, + "grad_norm": 0.7506824135780334, + "learning_rate": 3.1868133333333334e-05, + "loss": 1.72467529296875, + "step": 272100 + }, + { + "epoch": 36.29333333333334, + "grad_norm": 0.7682024836540222, + "learning_rate": 3.1861466666666666e-05, + "loss": 1.7257017517089843, + "step": 272200 + }, + { + "epoch": 36.306666666666665, + "grad_norm": 0.7348060011863708, + "learning_rate": 3.18548e-05, + "loss": 1.7308767700195313, + "step": 272300 + }, + { + "epoch": 36.32, + "grad_norm": 0.7420241236686707, + "learning_rate": 3.184813333333334e-05, + "loss": 1.7316539001464843, + "step": 272400 + }, + { + "epoch": 36.333333333333336, + "grad_norm": 0.7520580291748047, + "learning_rate": 3.184146666666667e-05, + "loss": 1.7281611633300782, + "step": 272500 + }, + { + "epoch": 36.346666666666664, + "grad_norm": 0.7573596835136414, + "learning_rate": 3.18348e-05, + "loss": 1.731063995361328, + "step": 272600 + }, + { + "epoch": 36.36, + "grad_norm": 0.725255012512207, + "learning_rate": 3.1828133333333335e-05, + "loss": 1.7307705688476562, + "step": 272700 + }, + { + "epoch": 36.373333333333335, + "grad_norm": 0.7543401122093201, + "learning_rate": 3.182146666666667e-05, + "loss": 1.7375082397460937, + "step": 272800 + }, + { + "epoch": 36.38666666666666, + "grad_norm": 0.7458380460739136, + "learning_rate": 3.18148e-05, + "loss": 1.7346005249023437, + "step": 272900 + }, + { + "epoch": 36.4, + "grad_norm": 0.7144700884819031, + "learning_rate": 3.18082e-05, + "loss": 1.7303981018066406, + "step": 273000 + }, + { + "epoch": 36.413333333333334, + "grad_norm": 0.7560714483261108, + "learning_rate": 3.180153333333333e-05, + "loss": 1.7310597229003906, + "step": 273100 + }, + { + "epoch": 36.42666666666667, + "grad_norm": 0.7326061129570007, + "learning_rate": 3.179486666666667e-05, + "loss": 1.7362249755859376, + "step": 273200 + }, + { + "epoch": 36.44, + "grad_norm": 0.7293363809585571, + "learning_rate": 3.17882e-05, + "loss": 1.7362820434570312, + "step": 273300 + }, + { + "epoch": 36.45333333333333, + "grad_norm": 0.7394217252731323, + "learning_rate": 3.1781533333333334e-05, + "loss": 1.7399252319335938, + "step": 273400 + }, + { + "epoch": 36.46666666666667, + "grad_norm": 0.742487907409668, + "learning_rate": 3.1774866666666666e-05, + "loss": 1.7383834838867187, + "step": 273500 + }, + { + "epoch": 36.48, + "grad_norm": 0.7589447498321533, + "learning_rate": 3.1768200000000005e-05, + "loss": 1.7370097351074218, + "step": 273600 + }, + { + "epoch": 36.49333333333333, + "grad_norm": 0.7348843812942505, + "learning_rate": 3.176153333333334e-05, + "loss": 1.7422178649902345, + "step": 273700 + }, + { + "epoch": 36.50666666666667, + "grad_norm": 0.7847718000411987, + "learning_rate": 3.175486666666666e-05, + "loss": 1.736515350341797, + "step": 273800 + }, + { + "epoch": 36.52, + "grad_norm": 0.7392397522926331, + "learning_rate": 3.17482e-05, + "loss": 1.7417140197753906, + "step": 273900 + }, + { + "epoch": 36.53333333333333, + "grad_norm": 0.6962413787841797, + "learning_rate": 3.1741533333333334e-05, + "loss": 1.741837921142578, + "step": 274000 + }, + { + "epoch": 36.54666666666667, + "grad_norm": 0.7503619194030762, + "learning_rate": 3.173486666666667e-05, + "loss": 1.741531982421875, + "step": 274100 + }, + { + "epoch": 36.56, + "grad_norm": 0.7087076902389526, + "learning_rate": 3.1728200000000006e-05, + "loss": 1.7447845458984375, + "step": 274200 + }, + { + "epoch": 36.57333333333333, + "grad_norm": 0.7223750352859497, + "learning_rate": 3.172153333333334e-05, + "loss": 1.7459292602539063, + "step": 274300 + }, + { + "epoch": 36.586666666666666, + "grad_norm": 0.7215844392776489, + "learning_rate": 3.171486666666667e-05, + "loss": 1.7434147644042968, + "step": 274400 + }, + { + "epoch": 36.6, + "grad_norm": 0.7404847145080566, + "learning_rate": 3.1708199999999996e-05, + "loss": 1.749951171875, + "step": 274500 + }, + { + "epoch": 36.61333333333333, + "grad_norm": 0.7521648406982422, + "learning_rate": 3.1701533333333335e-05, + "loss": 1.7496371459960938, + "step": 274600 + }, + { + "epoch": 36.626666666666665, + "grad_norm": 0.7401891946792603, + "learning_rate": 3.169486666666667e-05, + "loss": 1.7497813415527343, + "step": 274700 + }, + { + "epoch": 36.64, + "grad_norm": 0.7280316948890686, + "learning_rate": 3.16882e-05, + "loss": 1.7507594299316407, + "step": 274800 + }, + { + "epoch": 36.653333333333336, + "grad_norm": 0.7239392995834351, + "learning_rate": 3.168153333333334e-05, + "loss": 1.7507579040527343, + "step": 274900 + }, + { + "epoch": 36.666666666666664, + "grad_norm": 0.7553678750991821, + "learning_rate": 3.167486666666667e-05, + "loss": 1.751461181640625, + "step": 275000 + }, + { + "epoch": 36.68, + "grad_norm": 0.7435064911842346, + "learning_rate": 3.16682e-05, + "loss": 1.7519636535644532, + "step": 275100 + }, + { + "epoch": 36.693333333333335, + "grad_norm": 0.7470516562461853, + "learning_rate": 3.1661533333333335e-05, + "loss": 1.7504707336425782, + "step": 275200 + }, + { + "epoch": 36.70666666666666, + "grad_norm": 0.74057537317276, + "learning_rate": 3.165486666666667e-05, + "loss": 1.7527505493164062, + "step": 275300 + }, + { + "epoch": 36.72, + "grad_norm": 0.7247684597969055, + "learning_rate": 3.16482e-05, + "loss": 1.7530410766601563, + "step": 275400 + }, + { + "epoch": 36.733333333333334, + "grad_norm": 0.7498241662979126, + "learning_rate": 3.16416e-05, + "loss": 1.7541891479492187, + "step": 275500 + }, + { + "epoch": 36.74666666666667, + "grad_norm": 0.7495251297950745, + "learning_rate": 3.163493333333333e-05, + "loss": 1.7568766784667968, + "step": 275600 + }, + { + "epoch": 36.76, + "grad_norm": 0.7617773413658142, + "learning_rate": 3.162826666666667e-05, + "loss": 1.7529084777832031, + "step": 275700 + }, + { + "epoch": 36.77333333333333, + "grad_norm": 0.7428836226463318, + "learning_rate": 3.16216e-05, + "loss": 1.7551524353027343, + "step": 275800 + }, + { + "epoch": 36.78666666666667, + "grad_norm": 0.7389662265777588, + "learning_rate": 3.1614933333333335e-05, + "loss": 1.7577822875976563, + "step": 275900 + }, + { + "epoch": 36.8, + "grad_norm": 0.743245542049408, + "learning_rate": 3.160826666666667e-05, + "loss": 1.75811279296875, + "step": 276000 + }, + { + "epoch": 36.81333333333333, + "grad_norm": 0.7568553686141968, + "learning_rate": 3.1601600000000006e-05, + "loss": 1.7519479370117188, + "step": 276100 + }, + { + "epoch": 36.82666666666667, + "grad_norm": 0.7454259991645813, + "learning_rate": 3.159493333333334e-05, + "loss": 1.7604170227050782, + "step": 276200 + }, + { + "epoch": 36.84, + "grad_norm": 0.7492554187774658, + "learning_rate": 3.1588266666666664e-05, + "loss": 1.7641816711425782, + "step": 276300 + }, + { + "epoch": 36.85333333333333, + "grad_norm": 0.7113311290740967, + "learning_rate": 3.15816e-05, + "loss": 1.7588400268554687, + "step": 276400 + }, + { + "epoch": 36.86666666666667, + "grad_norm": 0.764880359172821, + "learning_rate": 3.1574933333333335e-05, + "loss": 1.7627790832519532, + "step": 276500 + }, + { + "epoch": 36.88, + "grad_norm": 0.7248684167861938, + "learning_rate": 3.156826666666667e-05, + "loss": 1.7612380981445312, + "step": 276600 + }, + { + "epoch": 36.89333333333333, + "grad_norm": 0.7168259024620056, + "learning_rate": 3.15616e-05, + "loss": 1.7612693786621094, + "step": 276700 + }, + { + "epoch": 36.906666666666666, + "grad_norm": 0.7467043995857239, + "learning_rate": 3.155493333333334e-05, + "loss": 1.7591070556640624, + "step": 276800 + }, + { + "epoch": 36.92, + "grad_norm": 0.7475593686103821, + "learning_rate": 3.154826666666667e-05, + "loss": 1.7618537902832032, + "step": 276900 + }, + { + "epoch": 36.93333333333333, + "grad_norm": 0.7402468323707581, + "learning_rate": 3.1541599999999996e-05, + "loss": 1.7640028381347657, + "step": 277000 + }, + { + "epoch": 36.946666666666665, + "grad_norm": 0.7494368553161621, + "learning_rate": 3.1534933333333335e-05, + "loss": 1.7653765869140625, + "step": 277100 + }, + { + "epoch": 36.96, + "grad_norm": 0.7230552434921265, + "learning_rate": 3.152826666666667e-05, + "loss": 1.7666098022460937, + "step": 277200 + }, + { + "epoch": 36.973333333333336, + "grad_norm": 0.7665003538131714, + "learning_rate": 3.15216e-05, + "loss": 1.765568084716797, + "step": 277300 + }, + { + "epoch": 36.986666666666665, + "grad_norm": 0.7451346516609192, + "learning_rate": 3.151493333333333e-05, + "loss": 1.7677928161621095, + "step": 277400 + }, + { + "epoch": 37.0, + "grad_norm": 0.76631760597229, + "learning_rate": 3.150833333333333e-05, + "loss": 1.7689274597167968, + "step": 277500 + }, + { + "epoch": 37.013333333333335, + "grad_norm": 0.7045518755912781, + "learning_rate": 3.150166666666667e-05, + "loss": 1.6803143310546875, + "step": 277600 + }, + { + "epoch": 37.026666666666664, + "grad_norm": 0.7285835146903992, + "learning_rate": 3.1495e-05, + "loss": 1.6813021850585939, + "step": 277700 + }, + { + "epoch": 37.04, + "grad_norm": 0.7426738739013672, + "learning_rate": 3.1488333333333335e-05, + "loss": 1.681758270263672, + "step": 277800 + }, + { + "epoch": 37.053333333333335, + "grad_norm": 0.7622446417808533, + "learning_rate": 3.148166666666667e-05, + "loss": 1.6819073486328124, + "step": 277900 + }, + { + "epoch": 37.06666666666667, + "grad_norm": 0.7410486340522766, + "learning_rate": 3.1475e-05, + "loss": 1.6838929748535156, + "step": 278000 + }, + { + "epoch": 37.08, + "grad_norm": 0.7304770946502686, + "learning_rate": 3.146833333333333e-05, + "loss": 1.6852511596679687, + "step": 278100 + }, + { + "epoch": 37.093333333333334, + "grad_norm": 0.7022737264633179, + "learning_rate": 3.1461666666666664e-05, + "loss": 1.6852027893066406, + "step": 278200 + }, + { + "epoch": 37.10666666666667, + "grad_norm": 0.7408353686332703, + "learning_rate": 3.1455e-05, + "loss": 1.688455810546875, + "step": 278300 + }, + { + "epoch": 37.12, + "grad_norm": 0.7150797843933105, + "learning_rate": 3.1448333333333335e-05, + "loss": 1.6884025573730468, + "step": 278400 + }, + { + "epoch": 37.13333333333333, + "grad_norm": 0.7726892828941345, + "learning_rate": 3.144166666666667e-05, + "loss": 1.6898381042480468, + "step": 278500 + }, + { + "epoch": 37.14666666666667, + "grad_norm": 0.7211053371429443, + "learning_rate": 3.1435000000000007e-05, + "loss": 1.6924490356445312, + "step": 278600 + }, + { + "epoch": 37.16, + "grad_norm": 0.7419326305389404, + "learning_rate": 3.142833333333334e-05, + "loss": 1.689315643310547, + "step": 278700 + }, + { + "epoch": 37.17333333333333, + "grad_norm": 0.7313926219940186, + "learning_rate": 3.1421666666666664e-05, + "loss": 1.6908987426757813, + "step": 278800 + }, + { + "epoch": 37.18666666666667, + "grad_norm": 0.7286278605461121, + "learning_rate": 3.1415e-05, + "loss": 1.6980317687988282, + "step": 278900 + }, + { + "epoch": 37.2, + "grad_norm": 0.7605856657028198, + "learning_rate": 3.1408333333333336e-05, + "loss": 1.696996307373047, + "step": 279000 + }, + { + "epoch": 37.21333333333333, + "grad_norm": 0.7458546757698059, + "learning_rate": 3.140166666666667e-05, + "loss": 1.6983421325683594, + "step": 279100 + }, + { + "epoch": 37.22666666666667, + "grad_norm": 0.7429274916648865, + "learning_rate": 3.1395e-05, + "loss": 1.7024613952636718, + "step": 279200 + }, + { + "epoch": 37.24, + "grad_norm": 0.7884694337844849, + "learning_rate": 3.138833333333334e-05, + "loss": 1.7007711791992188, + "step": 279300 + }, + { + "epoch": 37.25333333333333, + "grad_norm": 0.7464330792427063, + "learning_rate": 3.138166666666667e-05, + "loss": 1.7008659362792968, + "step": 279400 + }, + { + "epoch": 37.266666666666666, + "grad_norm": 0.728084921836853, + "learning_rate": 3.1375e-05, + "loss": 1.7043988037109374, + "step": 279500 + }, + { + "epoch": 37.28, + "grad_norm": 0.7497456669807434, + "learning_rate": 3.13684e-05, + "loss": 1.7014207458496093, + "step": 279600 + }, + { + "epoch": 37.29333333333334, + "grad_norm": 0.7020012140274048, + "learning_rate": 3.1361733333333335e-05, + "loss": 1.7052900695800781, + "step": 279700 + }, + { + "epoch": 37.306666666666665, + "grad_norm": 0.739156186580658, + "learning_rate": 3.135506666666667e-05, + "loss": 1.703553466796875, + "step": 279800 + }, + { + "epoch": 37.32, + "grad_norm": 0.7595281600952148, + "learning_rate": 3.13484e-05, + "loss": 1.7069859313964844, + "step": 279900 + }, + { + "epoch": 37.333333333333336, + "grad_norm": 0.75346440076828, + "learning_rate": 3.134173333333333e-05, + "loss": 1.7072439575195313, + "step": 280000 + }, + { + "epoch": 37.346666666666664, + "grad_norm": 0.7546751499176025, + "learning_rate": 3.133506666666667e-05, + "loss": 1.7088861083984375, + "step": 280100 + }, + { + "epoch": 37.36, + "grad_norm": 0.7886497974395752, + "learning_rate": 3.13284e-05, + "loss": 1.7056680297851563, + "step": 280200 + }, + { + "epoch": 37.373333333333335, + "grad_norm": 0.743929922580719, + "learning_rate": 3.1321733333333335e-05, + "loss": 1.7099371337890625, + "step": 280300 + }, + { + "epoch": 37.38666666666666, + "grad_norm": 0.7662741541862488, + "learning_rate": 3.131506666666667e-05, + "loss": 1.7150563049316405, + "step": 280400 + }, + { + "epoch": 37.4, + "grad_norm": 0.72809898853302, + "learning_rate": 3.13084e-05, + "loss": 1.7117857360839843, + "step": 280500 + }, + { + "epoch": 37.413333333333334, + "grad_norm": 0.7383192181587219, + "learning_rate": 3.130173333333333e-05, + "loss": 1.7104786682128905, + "step": 280600 + }, + { + "epoch": 37.42666666666667, + "grad_norm": 0.755443274974823, + "learning_rate": 3.1295066666666664e-05, + "loss": 1.7123095703125, + "step": 280700 + }, + { + "epoch": 37.44, + "grad_norm": 0.7860985994338989, + "learning_rate": 3.1288400000000004e-05, + "loss": 1.7170570373535157, + "step": 280800 + }, + { + "epoch": 37.45333333333333, + "grad_norm": 0.7551179528236389, + "learning_rate": 3.1281733333333336e-05, + "loss": 1.716322021484375, + "step": 280900 + }, + { + "epoch": 37.46666666666667, + "grad_norm": 0.7542992830276489, + "learning_rate": 3.127506666666667e-05, + "loss": 1.714727783203125, + "step": 281000 + }, + { + "epoch": 37.48, + "grad_norm": 0.7533883452415466, + "learning_rate": 3.12684e-05, + "loss": 1.720811309814453, + "step": 281100 + }, + { + "epoch": 37.49333333333333, + "grad_norm": 0.7798376083374023, + "learning_rate": 3.126173333333334e-05, + "loss": 1.7136112976074218, + "step": 281200 + }, + { + "epoch": 37.50666666666667, + "grad_norm": 0.7293563485145569, + "learning_rate": 3.1255066666666665e-05, + "loss": 1.7199661254882812, + "step": 281300 + }, + { + "epoch": 37.52, + "grad_norm": 0.7498854994773865, + "learning_rate": 3.12484e-05, + "loss": 1.7169015502929688, + "step": 281400 + }, + { + "epoch": 37.53333333333333, + "grad_norm": 0.7195653915405273, + "learning_rate": 3.1241733333333336e-05, + "loss": 1.7198953247070312, + "step": 281500 + }, + { + "epoch": 37.54666666666667, + "grad_norm": 0.7342607378959656, + "learning_rate": 3.123506666666667e-05, + "loss": 1.724787139892578, + "step": 281600 + }, + { + "epoch": 37.56, + "grad_norm": 0.7618938684463501, + "learning_rate": 3.122846666666667e-05, + "loss": 1.7263723754882812, + "step": 281700 + }, + { + "epoch": 37.57333333333333, + "grad_norm": 0.73606938123703, + "learning_rate": 3.12218e-05, + "loss": 1.7267738342285157, + "step": 281800 + }, + { + "epoch": 37.586666666666666, + "grad_norm": 0.7361858487129211, + "learning_rate": 3.121513333333333e-05, + "loss": 1.7204446411132812, + "step": 281900 + }, + { + "epoch": 37.6, + "grad_norm": 0.7650215029716492, + "learning_rate": 3.120846666666667e-05, + "loss": 1.722607879638672, + "step": 282000 + }, + { + "epoch": 37.61333333333333, + "grad_norm": 0.7414928078651428, + "learning_rate": 3.12018e-05, + "loss": 1.7260256958007814, + "step": 282100 + }, + { + "epoch": 37.626666666666665, + "grad_norm": 0.7534034252166748, + "learning_rate": 3.1195133333333336e-05, + "loss": 1.726140899658203, + "step": 282200 + }, + { + "epoch": 37.64, + "grad_norm": 0.7416046857833862, + "learning_rate": 3.118846666666667e-05, + "loss": 1.7296353149414063, + "step": 282300 + }, + { + "epoch": 37.653333333333336, + "grad_norm": 0.7440157532691956, + "learning_rate": 3.11818e-05, + "loss": 1.7297128295898438, + "step": 282400 + }, + { + "epoch": 37.666666666666664, + "grad_norm": 0.7524501085281372, + "learning_rate": 3.117513333333333e-05, + "loss": 1.73589599609375, + "step": 282500 + }, + { + "epoch": 37.68, + "grad_norm": 0.757587730884552, + "learning_rate": 3.1168466666666665e-05, + "loss": 1.7298715209960938, + "step": 282600 + }, + { + "epoch": 37.693333333333335, + "grad_norm": 0.7522934675216675, + "learning_rate": 3.1161800000000004e-05, + "loss": 1.7345960998535157, + "step": 282700 + }, + { + "epoch": 37.70666666666666, + "grad_norm": 0.7544682621955872, + "learning_rate": 3.1155133333333336e-05, + "loss": 1.7308802795410156, + "step": 282800 + }, + { + "epoch": 37.72, + "grad_norm": 0.7192630171775818, + "learning_rate": 3.114846666666667e-05, + "loss": 1.7340335083007812, + "step": 282900 + }, + { + "epoch": 37.733333333333334, + "grad_norm": 0.7458509206771851, + "learning_rate": 3.11418e-05, + "loss": 1.734874267578125, + "step": 283000 + }, + { + "epoch": 37.74666666666667, + "grad_norm": 0.7439426779747009, + "learning_rate": 3.113513333333333e-05, + "loss": 1.7350709533691406, + "step": 283100 + }, + { + "epoch": 37.76, + "grad_norm": 0.7385891675949097, + "learning_rate": 3.1128466666666665e-05, + "loss": 1.730778045654297, + "step": 283200 + }, + { + "epoch": 37.77333333333333, + "grad_norm": 0.731911838054657, + "learning_rate": 3.1121800000000004e-05, + "loss": 1.7314964294433595, + "step": 283300 + }, + { + "epoch": 37.78666666666667, + "grad_norm": 0.7846623063087463, + "learning_rate": 3.1115133333333336e-05, + "loss": 1.733455352783203, + "step": 283400 + }, + { + "epoch": 37.8, + "grad_norm": 0.7687591910362244, + "learning_rate": 3.110846666666667e-05, + "loss": 1.7341983032226562, + "step": 283500 + }, + { + "epoch": 37.81333333333333, + "grad_norm": 0.7925374507904053, + "learning_rate": 3.11018e-05, + "loss": 1.7374996948242187, + "step": 283600 + }, + { + "epoch": 37.82666666666667, + "grad_norm": 0.7608065009117126, + "learning_rate": 3.109513333333334e-05, + "loss": 1.7386874389648437, + "step": 283700 + }, + { + "epoch": 37.84, + "grad_norm": 0.7788674235343933, + "learning_rate": 3.1088466666666665e-05, + "loss": 1.742396697998047, + "step": 283800 + }, + { + "epoch": 37.85333333333333, + "grad_norm": 0.7511487007141113, + "learning_rate": 3.10818e-05, + "loss": 1.7363363647460937, + "step": 283900 + }, + { + "epoch": 37.86666666666667, + "grad_norm": 0.7553167939186096, + "learning_rate": 3.107513333333334e-05, + "loss": 1.7385067749023437, + "step": 284000 + }, + { + "epoch": 37.88, + "grad_norm": 0.7409266233444214, + "learning_rate": 3.106846666666667e-05, + "loss": 1.7398283386230469, + "step": 284100 + }, + { + "epoch": 37.89333333333333, + "grad_norm": 0.7326803207397461, + "learning_rate": 3.10618e-05, + "loss": 1.738975067138672, + "step": 284200 + }, + { + "epoch": 37.906666666666666, + "grad_norm": 0.7426642179489136, + "learning_rate": 3.1055133333333334e-05, + "loss": 1.741965789794922, + "step": 284300 + }, + { + "epoch": 37.92, + "grad_norm": 0.7844317555427551, + "learning_rate": 3.104846666666667e-05, + "loss": 1.740626220703125, + "step": 284400 + }, + { + "epoch": 37.93333333333333, + "grad_norm": 0.7489057183265686, + "learning_rate": 3.1041800000000005e-05, + "loss": 1.7419303894042968, + "step": 284500 + }, + { + "epoch": 37.946666666666665, + "grad_norm": 0.766936719417572, + "learning_rate": 3.1035200000000004e-05, + "loss": 1.7452520751953124, + "step": 284600 + }, + { + "epoch": 37.96, + "grad_norm": 0.7706231474876404, + "learning_rate": 3.1028533333333336e-05, + "loss": 1.744236602783203, + "step": 284700 + }, + { + "epoch": 37.973333333333336, + "grad_norm": 0.7537173628807068, + "learning_rate": 3.102186666666667e-05, + "loss": 1.7478404235839844, + "step": 284800 + }, + { + "epoch": 37.986666666666665, + "grad_norm": 0.7413330078125, + "learning_rate": 3.10152e-05, + "loss": 1.7494500732421876, + "step": 284900 + }, + { + "epoch": 38.0, + "grad_norm": 0.7850656509399414, + "learning_rate": 3.100853333333333e-05, + "loss": 1.750704803466797, + "step": 285000 + }, + { + "epoch": 38.013333333333335, + "grad_norm": 0.7259971499443054, + "learning_rate": 3.1001866666666665e-05, + "loss": 1.6590287780761719, + "step": 285100 + }, + { + "epoch": 38.026666666666664, + "grad_norm": 0.746416449546814, + "learning_rate": 3.0995200000000004e-05, + "loss": 1.6625711059570312, + "step": 285200 + }, + { + "epoch": 38.04, + "grad_norm": 0.7898942232131958, + "learning_rate": 3.098853333333334e-05, + "loss": 1.6607310485839843, + "step": 285300 + }, + { + "epoch": 38.053333333333335, + "grad_norm": 0.7729313969612122, + "learning_rate": 3.098186666666667e-05, + "loss": 1.662105255126953, + "step": 285400 + }, + { + "epoch": 38.06666666666667, + "grad_norm": 0.7406087517738342, + "learning_rate": 3.09752e-05, + "loss": 1.6623809814453125, + "step": 285500 + }, + { + "epoch": 38.08, + "grad_norm": 0.7400987148284912, + "learning_rate": 3.0968533333333333e-05, + "loss": 1.6635809326171875, + "step": 285600 + }, + { + "epoch": 38.093333333333334, + "grad_norm": 0.7489773035049438, + "learning_rate": 3.0961866666666666e-05, + "loss": 1.6699810791015626, + "step": 285700 + }, + { + "epoch": 38.10666666666667, + "grad_norm": 0.7790253162384033, + "learning_rate": 3.09552e-05, + "loss": 1.669601287841797, + "step": 285800 + }, + { + "epoch": 38.12, + "grad_norm": 0.7665462493896484, + "learning_rate": 3.094853333333334e-05, + "loss": 1.6737181091308593, + "step": 285900 + }, + { + "epoch": 38.13333333333333, + "grad_norm": 0.7243815064430237, + "learning_rate": 3.094186666666667e-05, + "loss": 1.6687673950195312, + "step": 286000 + }, + { + "epoch": 38.14666666666667, + "grad_norm": 0.7670396566390991, + "learning_rate": 3.09352e-05, + "loss": 1.6730580139160156, + "step": 286100 + }, + { + "epoch": 38.16, + "grad_norm": 0.7733235359191895, + "learning_rate": 3.0928533333333334e-05, + "loss": 1.6757229614257811, + "step": 286200 + }, + { + "epoch": 38.17333333333333, + "grad_norm": 0.7491257190704346, + "learning_rate": 3.0921866666666666e-05, + "loss": 1.669895477294922, + "step": 286300 + }, + { + "epoch": 38.18666666666667, + "grad_norm": 0.7852340340614319, + "learning_rate": 3.09152e-05, + "loss": 1.6757810974121095, + "step": 286400 + }, + { + "epoch": 38.2, + "grad_norm": 0.7656257152557373, + "learning_rate": 3.090853333333333e-05, + "loss": 1.6795205688476562, + "step": 286500 + }, + { + "epoch": 38.21333333333333, + "grad_norm": 0.7430424094200134, + "learning_rate": 3.090186666666667e-05, + "loss": 1.6734898376464844, + "step": 286600 + }, + { + "epoch": 38.22666666666667, + "grad_norm": 0.7725613117218018, + "learning_rate": 3.089526666666667e-05, + "loss": 1.6736170959472656, + "step": 286700 + }, + { + "epoch": 38.24, + "grad_norm": 0.7913093566894531, + "learning_rate": 3.08886e-05, + "loss": 1.6843594360351561, + "step": 286800 + }, + { + "epoch": 38.25333333333333, + "grad_norm": 0.7620664238929749, + "learning_rate": 3.088193333333333e-05, + "loss": 1.6822517395019532, + "step": 286900 + }, + { + "epoch": 38.266666666666666, + "grad_norm": 0.8010652661323547, + "learning_rate": 3.087526666666667e-05, + "loss": 1.682193603515625, + "step": 287000 + }, + { + "epoch": 38.28, + "grad_norm": 0.7800931334495544, + "learning_rate": 3.0868600000000005e-05, + "loss": 1.68789794921875, + "step": 287100 + }, + { + "epoch": 38.29333333333334, + "grad_norm": 0.7320764064788818, + "learning_rate": 3.086193333333334e-05, + "loss": 1.677606201171875, + "step": 287200 + }, + { + "epoch": 38.306666666666665, + "grad_norm": 0.7963472604751587, + "learning_rate": 3.085526666666666e-05, + "loss": 1.6835293579101562, + "step": 287300 + }, + { + "epoch": 38.32, + "grad_norm": 0.7579801678657532, + "learning_rate": 3.08486e-05, + "loss": 1.6827491760253905, + "step": 287400 + }, + { + "epoch": 38.333333333333336, + "grad_norm": 0.7616518139839172, + "learning_rate": 3.0841933333333334e-05, + "loss": 1.689130859375, + "step": 287500 + }, + { + "epoch": 38.346666666666664, + "grad_norm": 0.7492512464523315, + "learning_rate": 3.0835266666666666e-05, + "loss": 1.6856808471679687, + "step": 287600 + }, + { + "epoch": 38.36, + "grad_norm": 0.7573805451393127, + "learning_rate": 3.0828600000000005e-05, + "loss": 1.690630645751953, + "step": 287700 + }, + { + "epoch": 38.373333333333335, + "grad_norm": 0.7447465062141418, + "learning_rate": 3.082193333333334e-05, + "loss": 1.689488525390625, + "step": 287800 + }, + { + "epoch": 38.38666666666666, + "grad_norm": 0.7608117461204529, + "learning_rate": 3.081526666666667e-05, + "loss": 1.6932475280761718, + "step": 287900 + }, + { + "epoch": 38.4, + "grad_norm": 0.7536253333091736, + "learning_rate": 3.08086e-05, + "loss": 1.6915469360351563, + "step": 288000 + }, + { + "epoch": 38.413333333333334, + "grad_norm": 0.754641056060791, + "learning_rate": 3.0801933333333334e-05, + "loss": 1.6956082153320313, + "step": 288100 + }, + { + "epoch": 38.42666666666667, + "grad_norm": 0.7657079696655273, + "learning_rate": 3.0795266666666666e-05, + "loss": 1.6968582153320313, + "step": 288200 + }, + { + "epoch": 38.44, + "grad_norm": 0.7657183408737183, + "learning_rate": 3.07886e-05, + "loss": 1.696566619873047, + "step": 288300 + }, + { + "epoch": 38.45333333333333, + "grad_norm": 0.7208789587020874, + "learning_rate": 3.078193333333334e-05, + "loss": 1.692105255126953, + "step": 288400 + }, + { + "epoch": 38.46666666666667, + "grad_norm": 0.774307906627655, + "learning_rate": 3.077526666666667e-05, + "loss": 1.6932823181152343, + "step": 288500 + }, + { + "epoch": 38.48, + "grad_norm": 0.7949078679084778, + "learning_rate": 3.07686e-05, + "loss": 1.6973165893554687, + "step": 288600 + }, + { + "epoch": 38.49333333333333, + "grad_norm": 0.7806784510612488, + "learning_rate": 3.0761933333333334e-05, + "loss": 1.6917153930664062, + "step": 288700 + }, + { + "epoch": 38.50666666666667, + "grad_norm": 0.7916117906570435, + "learning_rate": 3.075526666666667e-05, + "loss": 1.7009848022460938, + "step": 288800 + }, + { + "epoch": 38.52, + "grad_norm": 0.759568989276886, + "learning_rate": 3.07486e-05, + "loss": 1.7016871643066407, + "step": 288900 + }, + { + "epoch": 38.53333333333333, + "grad_norm": 0.7423282861709595, + "learning_rate": 3.0742000000000005e-05, + "loss": 1.6960887145996093, + "step": 289000 + }, + { + "epoch": 38.54666666666667, + "grad_norm": 0.7630002498626709, + "learning_rate": 3.073533333333333e-05, + "loss": 1.7025230407714844, + "step": 289100 + }, + { + "epoch": 38.56, + "grad_norm": 0.7927618026733398, + "learning_rate": 3.072866666666667e-05, + "loss": 1.7043484497070311, + "step": 289200 + }, + { + "epoch": 38.57333333333333, + "grad_norm": 0.7585164308547974, + "learning_rate": 3.0722e-05, + "loss": 1.7019801330566406, + "step": 289300 + }, + { + "epoch": 38.586666666666666, + "grad_norm": 0.7974201440811157, + "learning_rate": 3.0715333333333334e-05, + "loss": 1.6983253479003906, + "step": 289400 + }, + { + "epoch": 38.6, + "grad_norm": 0.7960885763168335, + "learning_rate": 3.0708666666666666e-05, + "loss": 1.7020025634765625, + "step": 289500 + }, + { + "epoch": 38.61333333333333, + "grad_norm": 0.7698130011558533, + "learning_rate": 3.0702000000000005e-05, + "loss": 1.7045166015625, + "step": 289600 + }, + { + "epoch": 38.626666666666665, + "grad_norm": 0.7774978876113892, + "learning_rate": 3.069533333333334e-05, + "loss": 1.7092160034179686, + "step": 289700 + }, + { + "epoch": 38.64, + "grad_norm": 0.7904421091079712, + "learning_rate": 3.068866666666666e-05, + "loss": 1.7111721801757813, + "step": 289800 + }, + { + "epoch": 38.653333333333336, + "grad_norm": 0.7613751292228699, + "learning_rate": 3.0682e-05, + "loss": 1.7066726684570312, + "step": 289900 + }, + { + "epoch": 38.666666666666664, + "grad_norm": 0.7756422758102417, + "learning_rate": 3.0675333333333334e-05, + "loss": 1.7077285766601562, + "step": 290000 + }, + { + "epoch": 38.68, + "grad_norm": 0.7973787784576416, + "learning_rate": 3.0668666666666667e-05, + "loss": 1.706180419921875, + "step": 290100 + }, + { + "epoch": 38.693333333333335, + "grad_norm": 0.7484989762306213, + "learning_rate": 3.0662e-05, + "loss": 1.7061300659179688, + "step": 290200 + }, + { + "epoch": 38.70666666666666, + "grad_norm": 0.7544485926628113, + "learning_rate": 3.065533333333334e-05, + "loss": 1.7120814514160156, + "step": 290300 + }, + { + "epoch": 38.72, + "grad_norm": 0.7512329816818237, + "learning_rate": 3.064866666666667e-05, + "loss": 1.710401611328125, + "step": 290400 + }, + { + "epoch": 38.733333333333334, + "grad_norm": 0.7429623007774353, + "learning_rate": 3.0642e-05, + "loss": 1.7145462036132812, + "step": 290500 + }, + { + "epoch": 38.74666666666667, + "grad_norm": 0.7737287878990173, + "learning_rate": 3.0635333333333335e-05, + "loss": 1.7123170471191407, + "step": 290600 + }, + { + "epoch": 38.76, + "grad_norm": 0.7839905023574829, + "learning_rate": 3.062866666666667e-05, + "loss": 1.714277801513672, + "step": 290700 + }, + { + "epoch": 38.77333333333333, + "grad_norm": 0.7753442525863647, + "learning_rate": 3.0622e-05, + "loss": 1.711389923095703, + "step": 290800 + }, + { + "epoch": 38.78666666666667, + "grad_norm": 0.7696095108985901, + "learning_rate": 3.061533333333333e-05, + "loss": 1.712263946533203, + "step": 290900 + }, + { + "epoch": 38.8, + "grad_norm": 0.78681880235672, + "learning_rate": 3.060866666666667e-05, + "loss": 1.7169947814941406, + "step": 291000 + }, + { + "epoch": 38.81333333333333, + "grad_norm": 0.7666211128234863, + "learning_rate": 3.060206666666667e-05, + "loss": 1.713688201904297, + "step": 291100 + }, + { + "epoch": 38.82666666666667, + "grad_norm": 0.8072649836540222, + "learning_rate": 3.05954e-05, + "loss": 1.7122874450683594, + "step": 291200 + }, + { + "epoch": 38.84, + "grad_norm": 0.8129579424858093, + "learning_rate": 3.0588733333333334e-05, + "loss": 1.7165837097167969, + "step": 291300 + }, + { + "epoch": 38.85333333333333, + "grad_norm": 0.759157121181488, + "learning_rate": 3.058206666666667e-05, + "loss": 1.7154681396484375, + "step": 291400 + }, + { + "epoch": 38.86666666666667, + "grad_norm": 0.7481434345245361, + "learning_rate": 3.0575400000000005e-05, + "loss": 1.7192173767089844, + "step": 291500 + }, + { + "epoch": 38.88, + "grad_norm": 0.751333475112915, + "learning_rate": 3.056873333333333e-05, + "loss": 1.7186842346191407, + "step": 291600 + }, + { + "epoch": 38.89333333333333, + "grad_norm": 0.7542101740837097, + "learning_rate": 3.056206666666667e-05, + "loss": 1.7197854614257813, + "step": 291700 + }, + { + "epoch": 38.906666666666666, + "grad_norm": 0.7745694518089294, + "learning_rate": 3.05554e-05, + "loss": 1.717758026123047, + "step": 291800 + }, + { + "epoch": 38.92, + "grad_norm": 0.785905122756958, + "learning_rate": 3.0548733333333335e-05, + "loss": 1.7214923095703125, + "step": 291900 + }, + { + "epoch": 38.93333333333333, + "grad_norm": 0.737249493598938, + "learning_rate": 3.054206666666667e-05, + "loss": 1.721144256591797, + "step": 292000 + }, + { + "epoch": 38.946666666666665, + "grad_norm": 0.7561144828796387, + "learning_rate": 3.0535400000000006e-05, + "loss": 1.7213453674316406, + "step": 292100 + }, + { + "epoch": 38.96, + "grad_norm": 0.769527018070221, + "learning_rate": 3.052873333333334e-05, + "loss": 1.7238650512695313, + "step": 292200 + }, + { + "epoch": 38.973333333333336, + "grad_norm": 0.781715452671051, + "learning_rate": 3.0522066666666664e-05, + "loss": 1.7266677856445312, + "step": 292300 + }, + { + "epoch": 38.986666666666665, + "grad_norm": 0.7867762446403503, + "learning_rate": 3.05154e-05, + "loss": 1.7263604736328124, + "step": 292400 + }, + { + "epoch": 39.0, + "grad_norm": 0.7711582183837891, + "learning_rate": 3.0508733333333335e-05, + "loss": 1.7235179138183594, + "step": 292500 + }, + { + "epoch": 39.013333333333335, + "grad_norm": 0.7427387237548828, + "learning_rate": 3.0502066666666667e-05, + "loss": 1.636926727294922, + "step": 292600 + }, + { + "epoch": 39.026666666666664, + "grad_norm": 0.7548815011978149, + "learning_rate": 3.0495400000000003e-05, + "loss": 1.638148193359375, + "step": 292700 + }, + { + "epoch": 39.04, + "grad_norm": 0.766891598701477, + "learning_rate": 3.0488733333333335e-05, + "loss": 1.6450836181640625, + "step": 292800 + }, + { + "epoch": 39.053333333333335, + "grad_norm": 0.7814005017280579, + "learning_rate": 3.048206666666667e-05, + "loss": 1.6402984619140626, + "step": 292900 + }, + { + "epoch": 39.06666666666667, + "grad_norm": 0.7863591909408569, + "learning_rate": 3.0475400000000003e-05, + "loss": 1.645513916015625, + "step": 293000 + }, + { + "epoch": 39.08, + "grad_norm": 0.7696388959884644, + "learning_rate": 3.0468733333333332e-05, + "loss": 1.6503067016601562, + "step": 293100 + }, + { + "epoch": 39.093333333333334, + "grad_norm": 0.7683019042015076, + "learning_rate": 3.0462066666666668e-05, + "loss": 1.6453077697753906, + "step": 293200 + }, + { + "epoch": 39.10666666666667, + "grad_norm": 0.8194789886474609, + "learning_rate": 3.04554e-05, + "loss": 1.6493295288085938, + "step": 293300 + }, + { + "epoch": 39.12, + "grad_norm": 0.7500215172767639, + "learning_rate": 3.04488e-05, + "loss": 1.6437741088867188, + "step": 293400 + }, + { + "epoch": 39.13333333333333, + "grad_norm": 0.7612013220787048, + "learning_rate": 3.0442133333333335e-05, + "loss": 1.6460026550292968, + "step": 293500 + }, + { + "epoch": 39.14666666666667, + "grad_norm": 0.7490237355232239, + "learning_rate": 3.0435466666666667e-05, + "loss": 1.6469500732421876, + "step": 293600 + }, + { + "epoch": 39.16, + "grad_norm": 0.7428447604179382, + "learning_rate": 3.0428800000000002e-05, + "loss": 1.6538037109375, + "step": 293700 + }, + { + "epoch": 39.17333333333333, + "grad_norm": 0.771937906742096, + "learning_rate": 3.0422133333333335e-05, + "loss": 1.6548284912109374, + "step": 293800 + }, + { + "epoch": 39.18666666666667, + "grad_norm": 0.8053415417671204, + "learning_rate": 3.041546666666667e-05, + "loss": 1.6548187255859375, + "step": 293900 + }, + { + "epoch": 39.2, + "grad_norm": 0.7840629816055298, + "learning_rate": 3.0408800000000003e-05, + "loss": 1.656223907470703, + "step": 294000 + }, + { + "epoch": 39.21333333333333, + "grad_norm": 0.7682107090950012, + "learning_rate": 3.040213333333333e-05, + "loss": 1.6517486572265625, + "step": 294100 + }, + { + "epoch": 39.22666666666667, + "grad_norm": 0.7796576619148254, + "learning_rate": 3.0395466666666667e-05, + "loss": 1.6598385620117186, + "step": 294200 + }, + { + "epoch": 39.24, + "grad_norm": 0.7165907025337219, + "learning_rate": 3.03888e-05, + "loss": 1.6587965393066406, + "step": 294300 + }, + { + "epoch": 39.25333333333333, + "grad_norm": 0.7674499154090881, + "learning_rate": 3.0382133333333335e-05, + "loss": 1.6644235229492188, + "step": 294400 + }, + { + "epoch": 39.266666666666666, + "grad_norm": 0.7708069086074829, + "learning_rate": 3.0375466666666667e-05, + "loss": 1.6615855407714843, + "step": 294500 + }, + { + "epoch": 39.28, + "grad_norm": 0.7408686876296997, + "learning_rate": 3.0368800000000003e-05, + "loss": 1.6682752990722656, + "step": 294600 + }, + { + "epoch": 39.29333333333334, + "grad_norm": 0.7657552361488342, + "learning_rate": 3.0362133333333335e-05, + "loss": 1.6586656188964843, + "step": 294700 + }, + { + "epoch": 39.306666666666665, + "grad_norm": 0.7995692491531372, + "learning_rate": 3.0355466666666664e-05, + "loss": 1.6587791442871094, + "step": 294800 + }, + { + "epoch": 39.32, + "grad_norm": 0.748633086681366, + "learning_rate": 3.03488e-05, + "loss": 1.66481689453125, + "step": 294900 + }, + { + "epoch": 39.333333333333336, + "grad_norm": 0.7635269165039062, + "learning_rate": 3.0342133333333332e-05, + "loss": 1.6681814575195313, + "step": 295000 + }, + { + "epoch": 39.346666666666664, + "grad_norm": 0.7503258585929871, + "learning_rate": 3.0335466666666668e-05, + "loss": 1.6664021301269532, + "step": 295100 + }, + { + "epoch": 39.36, + "grad_norm": 0.7651309370994568, + "learning_rate": 3.03288e-05, + "loss": 1.6657469177246094, + "step": 295200 + }, + { + "epoch": 39.373333333333335, + "grad_norm": 0.7666741013526917, + "learning_rate": 3.0322133333333336e-05, + "loss": 1.6691456604003907, + "step": 295300 + }, + { + "epoch": 39.38666666666666, + "grad_norm": 0.7548410296440125, + "learning_rate": 3.031546666666667e-05, + "loss": 1.670536651611328, + "step": 295400 + }, + { + "epoch": 39.4, + "grad_norm": 0.74871826171875, + "learning_rate": 3.0308866666666667e-05, + "loss": 1.667931365966797, + "step": 295500 + }, + { + "epoch": 39.413333333333334, + "grad_norm": 0.8039665222167969, + "learning_rate": 3.0302200000000003e-05, + "loss": 1.6696517944335938, + "step": 295600 + }, + { + "epoch": 39.42666666666667, + "grad_norm": 0.770044207572937, + "learning_rate": 3.029553333333334e-05, + "loss": 1.6706535339355468, + "step": 295700 + }, + { + "epoch": 39.44, + "grad_norm": 0.7525724768638611, + "learning_rate": 3.0288866666666664e-05, + "loss": 1.6772557067871094, + "step": 295800 + }, + { + "epoch": 39.45333333333333, + "grad_norm": 0.7813305258750916, + "learning_rate": 3.02822e-05, + "loss": 1.671944122314453, + "step": 295900 + }, + { + "epoch": 39.46666666666667, + "grad_norm": 0.7860172390937805, + "learning_rate": 3.0275533333333335e-05, + "loss": 1.6785629272460938, + "step": 296000 + }, + { + "epoch": 39.48, + "grad_norm": 0.7601441740989685, + "learning_rate": 3.0268866666666667e-05, + "loss": 1.679444580078125, + "step": 296100 + }, + { + "epoch": 39.49333333333333, + "grad_norm": 0.7699296474456787, + "learning_rate": 3.0262200000000003e-05, + "loss": 1.6728718566894532, + "step": 296200 + }, + { + "epoch": 39.50666666666667, + "grad_norm": 0.8299603462219238, + "learning_rate": 3.0255533333333335e-05, + "loss": 1.672165069580078, + "step": 296300 + }, + { + "epoch": 39.52, + "grad_norm": 0.7380194067955017, + "learning_rate": 3.024886666666667e-05, + "loss": 1.6806745910644532, + "step": 296400 + }, + { + "epoch": 39.53333333333333, + "grad_norm": 0.774158239364624, + "learning_rate": 3.0242200000000003e-05, + "loss": 1.6795536804199218, + "step": 296500 + }, + { + "epoch": 39.54666666666667, + "grad_norm": 0.7721417546272278, + "learning_rate": 3.0235533333333332e-05, + "loss": 1.6812428283691405, + "step": 296600 + }, + { + "epoch": 39.56, + "grad_norm": 0.7454893589019775, + "learning_rate": 3.0228866666666668e-05, + "loss": 1.6825442504882813, + "step": 296700 + }, + { + "epoch": 39.57333333333333, + "grad_norm": 0.7825901508331299, + "learning_rate": 3.02222e-05, + "loss": 1.684827117919922, + "step": 296800 + }, + { + "epoch": 39.586666666666666, + "grad_norm": 0.7577589750289917, + "learning_rate": 3.0215533333333336e-05, + "loss": 1.686151885986328, + "step": 296900 + }, + { + "epoch": 39.6, + "grad_norm": 0.7495019435882568, + "learning_rate": 3.0208866666666668e-05, + "loss": 1.6861024475097657, + "step": 297000 + }, + { + "epoch": 39.61333333333333, + "grad_norm": 0.7696591019630432, + "learning_rate": 3.0202200000000004e-05, + "loss": 1.6808950805664062, + "step": 297100 + }, + { + "epoch": 39.626666666666665, + "grad_norm": 0.7768684029579163, + "learning_rate": 3.0195533333333336e-05, + "loss": 1.6860086059570312, + "step": 297200 + }, + { + "epoch": 39.64, + "grad_norm": 0.8358619809150696, + "learning_rate": 3.018886666666667e-05, + "loss": 1.6880392456054687, + "step": 297300 + }, + { + "epoch": 39.653333333333336, + "grad_norm": 0.7638468742370605, + "learning_rate": 3.01822e-05, + "loss": 1.6880755615234375, + "step": 297400 + }, + { + "epoch": 39.666666666666664, + "grad_norm": 0.7862942814826965, + "learning_rate": 3.0175533333333333e-05, + "loss": 1.6920382690429687, + "step": 297500 + }, + { + "epoch": 39.68, + "grad_norm": 0.7873303890228271, + "learning_rate": 3.016886666666667e-05, + "loss": 1.688036651611328, + "step": 297600 + }, + { + "epoch": 39.693333333333335, + "grad_norm": 0.7888381481170654, + "learning_rate": 3.01622e-05, + "loss": 1.6933929443359375, + "step": 297700 + }, + { + "epoch": 39.70666666666666, + "grad_norm": 0.7556432485580444, + "learning_rate": 3.01556e-05, + "loss": 1.6857225036621093, + "step": 297800 + }, + { + "epoch": 39.72, + "grad_norm": 0.7747805714607239, + "learning_rate": 3.0148933333333335e-05, + "loss": 1.693270721435547, + "step": 297900 + }, + { + "epoch": 39.733333333333334, + "grad_norm": 0.7705897092819214, + "learning_rate": 3.0142266666666668e-05, + "loss": 1.69430419921875, + "step": 298000 + }, + { + "epoch": 39.74666666666667, + "grad_norm": 0.7893573045730591, + "learning_rate": 3.0135600000000003e-05, + "loss": 1.6897537231445312, + "step": 298100 + }, + { + "epoch": 39.76, + "grad_norm": 0.7793616056442261, + "learning_rate": 3.0128933333333336e-05, + "loss": 1.6898460388183594, + "step": 298200 + }, + { + "epoch": 39.77333333333333, + "grad_norm": 0.7738221883773804, + "learning_rate": 3.012226666666667e-05, + "loss": 1.6978416442871094, + "step": 298300 + }, + { + "epoch": 39.78666666666667, + "grad_norm": 0.7676934599876404, + "learning_rate": 3.01156e-05, + "loss": 1.699170379638672, + "step": 298400 + }, + { + "epoch": 39.8, + "grad_norm": 0.7687268853187561, + "learning_rate": 3.0108933333333332e-05, + "loss": 1.6959735107421876, + "step": 298500 + }, + { + "epoch": 39.81333333333333, + "grad_norm": 0.7735351920127869, + "learning_rate": 3.0102266666666668e-05, + "loss": 1.6969778442382812, + "step": 298600 + }, + { + "epoch": 39.82666666666667, + "grad_norm": 0.7656512260437012, + "learning_rate": 3.00956e-05, + "loss": 1.6993966674804688, + "step": 298700 + }, + { + "epoch": 39.84, + "grad_norm": 0.782088577747345, + "learning_rate": 3.0088933333333336e-05, + "loss": 1.699752960205078, + "step": 298800 + }, + { + "epoch": 39.85333333333333, + "grad_norm": 0.773292601108551, + "learning_rate": 3.0082266666666668e-05, + "loss": 1.6988934326171874, + "step": 298900 + }, + { + "epoch": 39.86666666666667, + "grad_norm": 0.7811734080314636, + "learning_rate": 3.0075600000000004e-05, + "loss": 1.6964959716796875, + "step": 299000 + }, + { + "epoch": 39.88, + "grad_norm": 0.7883747220039368, + "learning_rate": 3.0068933333333333e-05, + "loss": 1.7006631469726563, + "step": 299100 + }, + { + "epoch": 39.89333333333333, + "grad_norm": 0.7700868844985962, + "learning_rate": 3.0062266666666665e-05, + "loss": 1.6964584350585938, + "step": 299200 + }, + { + "epoch": 39.906666666666666, + "grad_norm": 0.803329348564148, + "learning_rate": 3.00556e-05, + "loss": 1.6985226440429688, + "step": 299300 + }, + { + "epoch": 39.92, + "grad_norm": 0.7313794493675232, + "learning_rate": 3.0048933333333333e-05, + "loss": 1.6996687316894532, + "step": 299400 + }, + { + "epoch": 39.93333333333333, + "grad_norm": 0.8017928004264832, + "learning_rate": 3.004226666666667e-05, + "loss": 1.7024073791503906, + "step": 299500 + }, + { + "epoch": 39.946666666666665, + "grad_norm": 0.7980249524116516, + "learning_rate": 3.0035600000000004e-05, + "loss": 1.7046482849121094, + "step": 299600 + }, + { + "epoch": 39.96, + "grad_norm": 0.7558285593986511, + "learning_rate": 3.0028933333333337e-05, + "loss": 1.7029963684082032, + "step": 299700 + }, + { + "epoch": 39.973333333333336, + "grad_norm": 0.7704285383224487, + "learning_rate": 3.0022266666666672e-05, + "loss": 1.7064549255371093, + "step": 299800 + }, + { + "epoch": 39.986666666666665, + "grad_norm": 0.7782922983169556, + "learning_rate": 3.0015599999999998e-05, + "loss": 1.7005975341796875, + "step": 299900 + }, + { + "epoch": 40.0, + "grad_norm": 0.7687188982963562, + "learning_rate": 3.0008933333333333e-05, + "loss": 1.7041835021972656, + "step": 300000 + }, + { + "epoch": 40.013333333333335, + "grad_norm": 0.7731031775474548, + "learning_rate": 3.000226666666667e-05, + "loss": 1.620243377685547, + "step": 300100 + }, + { + "epoch": 40.026666666666664, + "grad_norm": 0.7835327386856079, + "learning_rate": 2.99956e-05, + "loss": 1.6189300537109375, + "step": 300200 + }, + { + "epoch": 40.04, + "grad_norm": 0.788834273815155, + "learning_rate": 2.9989e-05, + "loss": 1.6183770751953126, + "step": 300300 + }, + { + "epoch": 40.053333333333335, + "grad_norm": 0.7707294225692749, + "learning_rate": 2.9982333333333336e-05, + "loss": 1.624232940673828, + "step": 300400 + }, + { + "epoch": 40.06666666666667, + "grad_norm": 0.7670961618423462, + "learning_rate": 2.9975666666666668e-05, + "loss": 1.6271139526367187, + "step": 300500 + }, + { + "epoch": 40.08, + "grad_norm": 0.7733743190765381, + "learning_rate": 2.9969000000000004e-05, + "loss": 1.6237083435058595, + "step": 300600 + }, + { + "epoch": 40.093333333333334, + "grad_norm": 0.7543879747390747, + "learning_rate": 2.9962333333333336e-05, + "loss": 1.6283514404296875, + "step": 300700 + }, + { + "epoch": 40.10666666666667, + "grad_norm": 0.7911033630371094, + "learning_rate": 2.9955666666666672e-05, + "loss": 1.6246966552734374, + "step": 300800 + }, + { + "epoch": 40.12, + "grad_norm": 0.758840799331665, + "learning_rate": 2.9949e-05, + "loss": 1.6292984008789062, + "step": 300900 + }, + { + "epoch": 40.13333333333333, + "grad_norm": 0.7979432344436646, + "learning_rate": 2.9942333333333333e-05, + "loss": 1.6320713806152343, + "step": 301000 + }, + { + "epoch": 40.14666666666667, + "grad_norm": 0.7912939786911011, + "learning_rate": 2.993566666666667e-05, + "loss": 1.6327186584472657, + "step": 301100 + }, + { + "epoch": 40.16, + "grad_norm": 0.7603537440299988, + "learning_rate": 2.9929e-05, + "loss": 1.6343653869628907, + "step": 301200 + }, + { + "epoch": 40.17333333333333, + "grad_norm": 0.7935387492179871, + "learning_rate": 2.9922333333333337e-05, + "loss": 1.6328231811523437, + "step": 301300 + }, + { + "epoch": 40.18666666666667, + "grad_norm": 0.7534608244895935, + "learning_rate": 2.991566666666667e-05, + "loss": 1.6297528076171874, + "step": 301400 + }, + { + "epoch": 40.2, + "grad_norm": 0.7596133351325989, + "learning_rate": 2.9909000000000005e-05, + "loss": 1.6323152160644532, + "step": 301500 + }, + { + "epoch": 40.21333333333333, + "grad_norm": 0.7837437987327576, + "learning_rate": 2.9902333333333333e-05, + "loss": 1.6390170288085937, + "step": 301600 + }, + { + "epoch": 40.22666666666667, + "grad_norm": 0.7405257821083069, + "learning_rate": 2.9895666666666666e-05, + "loss": 1.6328970336914062, + "step": 301700 + }, + { + "epoch": 40.24, + "grad_norm": 0.7964353561401367, + "learning_rate": 2.9889e-05, + "loss": 1.6418511962890625, + "step": 301800 + }, + { + "epoch": 40.25333333333333, + "grad_norm": 0.7721452713012695, + "learning_rate": 2.9882333333333334e-05, + "loss": 1.6432241821289062, + "step": 301900 + }, + { + "epoch": 40.266666666666666, + "grad_norm": 0.7319056987762451, + "learning_rate": 2.987566666666667e-05, + "loss": 1.6457327270507813, + "step": 302000 + }, + { + "epoch": 40.28, + "grad_norm": 0.7476204037666321, + "learning_rate": 2.9869e-05, + "loss": 1.63947265625, + "step": 302100 + }, + { + "epoch": 40.29333333333334, + "grad_norm": 0.7636196613311768, + "learning_rate": 2.9862333333333337e-05, + "loss": 1.6431263732910155, + "step": 302200 + }, + { + "epoch": 40.306666666666665, + "grad_norm": 0.7672015428543091, + "learning_rate": 2.985566666666667e-05, + "loss": 1.6432777404785157, + "step": 302300 + }, + { + "epoch": 40.32, + "grad_norm": 0.7906679511070251, + "learning_rate": 2.984906666666667e-05, + "loss": 1.6422769165039062, + "step": 302400 + }, + { + "epoch": 40.333333333333336, + "grad_norm": 0.7585984468460083, + "learning_rate": 2.9842400000000004e-05, + "loss": 1.645401611328125, + "step": 302500 + }, + { + "epoch": 40.346666666666664, + "grad_norm": 0.7551888227462769, + "learning_rate": 2.9835733333333333e-05, + "loss": 1.6521505737304687, + "step": 302600 + }, + { + "epoch": 40.36, + "grad_norm": 0.7747895121574402, + "learning_rate": 2.9829066666666665e-05, + "loss": 1.653616943359375, + "step": 302700 + }, + { + "epoch": 40.373333333333335, + "grad_norm": 0.7973045706748962, + "learning_rate": 2.98224e-05, + "loss": 1.6516969299316406, + "step": 302800 + }, + { + "epoch": 40.38666666666666, + "grad_norm": 0.7736092209815979, + "learning_rate": 2.9815733333333333e-05, + "loss": 1.6533767700195312, + "step": 302900 + }, + { + "epoch": 40.4, + "grad_norm": 0.8287850618362427, + "learning_rate": 2.980906666666667e-05, + "loss": 1.650742950439453, + "step": 303000 + }, + { + "epoch": 40.413333333333334, + "grad_norm": 0.7991235256195068, + "learning_rate": 2.98024e-05, + "loss": 1.6495477294921874, + "step": 303100 + }, + { + "epoch": 40.42666666666667, + "grad_norm": 0.7750113010406494, + "learning_rate": 2.9795733333333337e-05, + "loss": 1.6545738220214843, + "step": 303200 + }, + { + "epoch": 40.44, + "grad_norm": 0.7548984885215759, + "learning_rate": 2.978906666666667e-05, + "loss": 1.6560383605957032, + "step": 303300 + }, + { + "epoch": 40.45333333333333, + "grad_norm": 0.7681398987770081, + "learning_rate": 2.9782399999999998e-05, + "loss": 1.6523040771484374, + "step": 303400 + }, + { + "epoch": 40.46666666666667, + "grad_norm": 0.7958689332008362, + "learning_rate": 2.9775733333333334e-05, + "loss": 1.654131622314453, + "step": 303500 + }, + { + "epoch": 40.48, + "grad_norm": 0.8112989068031311, + "learning_rate": 2.9769066666666666e-05, + "loss": 1.6542424011230468, + "step": 303600 + }, + { + "epoch": 40.49333333333333, + "grad_norm": 0.8102808594703674, + "learning_rate": 2.97624e-05, + "loss": 1.6532270812988281, + "step": 303700 + }, + { + "epoch": 40.50666666666667, + "grad_norm": 0.7980448603630066, + "learning_rate": 2.9755733333333334e-05, + "loss": 1.6606166076660156, + "step": 303800 + }, + { + "epoch": 40.52, + "grad_norm": 0.7753362655639648, + "learning_rate": 2.974906666666667e-05, + "loss": 1.6590802001953124, + "step": 303900 + }, + { + "epoch": 40.53333333333333, + "grad_norm": 0.7801727056503296, + "learning_rate": 2.9742400000000005e-05, + "loss": 1.6569808959960937, + "step": 304000 + }, + { + "epoch": 40.54666666666667, + "grad_norm": 0.7659746408462524, + "learning_rate": 2.973573333333333e-05, + "loss": 1.6627920532226563, + "step": 304100 + }, + { + "epoch": 40.56, + "grad_norm": 0.8251011371612549, + "learning_rate": 2.9729066666666666e-05, + "loss": 1.6599037170410156, + "step": 304200 + }, + { + "epoch": 40.57333333333333, + "grad_norm": 0.7905187010765076, + "learning_rate": 2.9722400000000002e-05, + "loss": 1.6602447509765625, + "step": 304300 + }, + { + "epoch": 40.586666666666666, + "grad_norm": 0.7680100202560425, + "learning_rate": 2.9715733333333334e-05, + "loss": 1.6645524597167969, + "step": 304400 + }, + { + "epoch": 40.6, + "grad_norm": 0.8009008765220642, + "learning_rate": 2.970906666666667e-05, + "loss": 1.6655874633789063, + "step": 304500 + }, + { + "epoch": 40.61333333333333, + "grad_norm": 0.7796105742454529, + "learning_rate": 2.9702400000000002e-05, + "loss": 1.6701692199707032, + "step": 304600 + }, + { + "epoch": 40.626666666666665, + "grad_norm": 0.8052720427513123, + "learning_rate": 2.96958e-05, + "loss": 1.67267333984375, + "step": 304700 + }, + { + "epoch": 40.64, + "grad_norm": 0.8020023703575134, + "learning_rate": 2.9689133333333337e-05, + "loss": 1.6702662658691407, + "step": 304800 + }, + { + "epoch": 40.653333333333336, + "grad_norm": 0.7790773510932922, + "learning_rate": 2.968246666666667e-05, + "loss": 1.6637289428710937, + "step": 304900 + }, + { + "epoch": 40.666666666666664, + "grad_norm": 0.7891820073127747, + "learning_rate": 2.9675800000000005e-05, + "loss": 1.6721121215820312, + "step": 305000 + }, + { + "epoch": 40.68, + "grad_norm": 0.8255475759506226, + "learning_rate": 2.9669133333333334e-05, + "loss": 1.668660888671875, + "step": 305100 + }, + { + "epoch": 40.693333333333335, + "grad_norm": 0.7707953453063965, + "learning_rate": 2.9662466666666666e-05, + "loss": 1.670304718017578, + "step": 305200 + }, + { + "epoch": 40.70666666666666, + "grad_norm": 0.789410412311554, + "learning_rate": 2.96558e-05, + "loss": 1.6723420715332031, + "step": 305300 + }, + { + "epoch": 40.72, + "grad_norm": 0.7793656587600708, + "learning_rate": 2.9649133333333334e-05, + "loss": 1.6703863525390625, + "step": 305400 + }, + { + "epoch": 40.733333333333334, + "grad_norm": 0.7544719576835632, + "learning_rate": 2.964246666666667e-05, + "loss": 1.670694580078125, + "step": 305500 + }, + { + "epoch": 40.74666666666667, + "grad_norm": 0.7913680076599121, + "learning_rate": 2.9635800000000002e-05, + "loss": 1.6704800415039063, + "step": 305600 + }, + { + "epoch": 40.76, + "grad_norm": 0.8109893798828125, + "learning_rate": 2.9629133333333337e-05, + "loss": 1.674829864501953, + "step": 305700 + }, + { + "epoch": 40.77333333333333, + "grad_norm": 0.7733386754989624, + "learning_rate": 2.962246666666667e-05, + "loss": 1.671063690185547, + "step": 305800 + }, + { + "epoch": 40.78666666666667, + "grad_norm": 0.8088369965553284, + "learning_rate": 2.96158e-05, + "loss": 1.6718939208984376, + "step": 305900 + }, + { + "epoch": 40.8, + "grad_norm": 0.7910258173942566, + "learning_rate": 2.9609133333333334e-05, + "loss": 1.6722633361816406, + "step": 306000 + }, + { + "epoch": 40.81333333333333, + "grad_norm": 0.8270725607872009, + "learning_rate": 2.9602466666666667e-05, + "loss": 1.6770217895507813, + "step": 306100 + }, + { + "epoch": 40.82666666666667, + "grad_norm": 0.8187015056610107, + "learning_rate": 2.9595800000000002e-05, + "loss": 1.6784989929199219, + "step": 306200 + }, + { + "epoch": 40.84, + "grad_norm": 0.7722174525260925, + "learning_rate": 2.9589133333333334e-05, + "loss": 1.675601806640625, + "step": 306300 + }, + { + "epoch": 40.85333333333333, + "grad_norm": 0.7953956127166748, + "learning_rate": 2.958246666666667e-05, + "loss": 1.6758319091796876, + "step": 306400 + }, + { + "epoch": 40.86666666666667, + "grad_norm": 0.7955514788627625, + "learning_rate": 2.9575800000000002e-05, + "loss": 1.6785484313964845, + "step": 306500 + }, + { + "epoch": 40.88, + "grad_norm": 0.8043191432952881, + "learning_rate": 2.956913333333333e-05, + "loss": 1.6791413879394532, + "step": 306600 + }, + { + "epoch": 40.89333333333333, + "grad_norm": 0.8214145302772522, + "learning_rate": 2.9562466666666667e-05, + "loss": 1.6822396850585937, + "step": 306700 + }, + { + "epoch": 40.906666666666666, + "grad_norm": 0.7704736590385437, + "learning_rate": 2.95558e-05, + "loss": 1.6834477233886718, + "step": 306800 + }, + { + "epoch": 40.92, + "grad_norm": 0.8391588926315308, + "learning_rate": 2.9549133333333335e-05, + "loss": 1.680575408935547, + "step": 306900 + }, + { + "epoch": 40.93333333333333, + "grad_norm": 0.8125873804092407, + "learning_rate": 2.9542533333333334e-05, + "loss": 1.683341522216797, + "step": 307000 + }, + { + "epoch": 40.946666666666665, + "grad_norm": 0.7934849262237549, + "learning_rate": 2.9535866666666666e-05, + "loss": 1.6847650146484374, + "step": 307100 + }, + { + "epoch": 40.96, + "grad_norm": 0.7980996966362, + "learning_rate": 2.9529200000000002e-05, + "loss": 1.6811965942382812, + "step": 307200 + }, + { + "epoch": 40.973333333333336, + "grad_norm": 0.802399754524231, + "learning_rate": 2.9522533333333334e-05, + "loss": 1.6897067260742187, + "step": 307300 + }, + { + "epoch": 40.986666666666665, + "grad_norm": 0.7816872000694275, + "learning_rate": 2.951586666666667e-05, + "loss": 1.6832794189453124, + "step": 307400 + }, + { + "epoch": 41.0, + "grad_norm": 0.7761144638061523, + "learning_rate": 2.9509200000000002e-05, + "loss": 1.6881805419921876, + "step": 307500 + }, + { + "epoch": 41.013333333333335, + "grad_norm": 0.7764184474945068, + "learning_rate": 2.950253333333333e-05, + "loss": 1.5990695190429687, + "step": 307600 + }, + { + "epoch": 41.026666666666664, + "grad_norm": 0.7701564431190491, + "learning_rate": 2.9495866666666667e-05, + "loss": 1.6041400146484375, + "step": 307700 + }, + { + "epoch": 41.04, + "grad_norm": 0.7842352390289307, + "learning_rate": 2.94892e-05, + "loss": 1.6026243591308593, + "step": 307800 + }, + { + "epoch": 41.053333333333335, + "grad_norm": 0.8398421406745911, + "learning_rate": 2.9482533333333334e-05, + "loss": 1.6042144775390625, + "step": 307900 + }, + { + "epoch": 41.06666666666667, + "grad_norm": 0.7771956920623779, + "learning_rate": 2.9475866666666667e-05, + "loss": 1.6058041381835937, + "step": 308000 + }, + { + "epoch": 41.08, + "grad_norm": 0.7307206392288208, + "learning_rate": 2.9469200000000002e-05, + "loss": 1.6052072143554688, + "step": 308100 + }, + { + "epoch": 41.093333333333334, + "grad_norm": 0.7741842269897461, + "learning_rate": 2.9462533333333338e-05, + "loss": 1.6063827514648437, + "step": 308200 + }, + { + "epoch": 41.10666666666667, + "grad_norm": 0.7664023637771606, + "learning_rate": 2.945586666666667e-05, + "loss": 1.6085012817382813, + "step": 308300 + }, + { + "epoch": 41.12, + "grad_norm": 0.7947597503662109, + "learning_rate": 2.94492e-05, + "loss": 1.6075529479980468, + "step": 308400 + }, + { + "epoch": 41.13333333333333, + "grad_norm": 0.8271000385284424, + "learning_rate": 2.944253333333333e-05, + "loss": 1.611210479736328, + "step": 308500 + }, + { + "epoch": 41.14666666666667, + "grad_norm": 0.8020433783531189, + "learning_rate": 2.9435866666666667e-05, + "loss": 1.613904266357422, + "step": 308600 + }, + { + "epoch": 41.16, + "grad_norm": 0.7996675968170166, + "learning_rate": 2.9429200000000003e-05, + "loss": 1.617792205810547, + "step": 308700 + }, + { + "epoch": 41.17333333333333, + "grad_norm": 0.7714760899543762, + "learning_rate": 2.9422533333333335e-05, + "loss": 1.6162484741210938, + "step": 308800 + }, + { + "epoch": 41.18666666666667, + "grad_norm": 0.7961992621421814, + "learning_rate": 2.941586666666667e-05, + "loss": 1.6189137268066407, + "step": 308900 + }, + { + "epoch": 41.2, + "grad_norm": 0.7719022631645203, + "learning_rate": 2.9409200000000003e-05, + "loss": 1.6185585021972657, + "step": 309000 + }, + { + "epoch": 41.21333333333333, + "grad_norm": 0.7894253730773926, + "learning_rate": 2.940253333333334e-05, + "loss": 1.6159666442871095, + "step": 309100 + }, + { + "epoch": 41.22666666666667, + "grad_norm": 0.8292324542999268, + "learning_rate": 2.9395933333333338e-05, + "loss": 1.6167066955566407, + "step": 309200 + }, + { + "epoch": 41.24, + "grad_norm": 0.7811465859413147, + "learning_rate": 2.938926666666667e-05, + "loss": 1.6240852355957032, + "step": 309300 + }, + { + "epoch": 41.25333333333333, + "grad_norm": 0.7826862931251526, + "learning_rate": 2.93826e-05, + "loss": 1.6248715209960938, + "step": 309400 + }, + { + "epoch": 41.266666666666666, + "grad_norm": 0.7634377479553223, + "learning_rate": 2.9375933333333335e-05, + "loss": 1.6282896423339843, + "step": 309500 + }, + { + "epoch": 41.28, + "grad_norm": 0.7704088091850281, + "learning_rate": 2.9369266666666667e-05, + "loss": 1.6228341674804687, + "step": 309600 + }, + { + "epoch": 41.29333333333334, + "grad_norm": 0.776517391204834, + "learning_rate": 2.9362600000000002e-05, + "loss": 1.6235067749023437, + "step": 309700 + }, + { + "epoch": 41.306666666666665, + "grad_norm": 0.7937943935394287, + "learning_rate": 2.9355933333333335e-05, + "loss": 1.6245884704589844, + "step": 309800 + }, + { + "epoch": 41.32, + "grad_norm": 0.7816150784492493, + "learning_rate": 2.934926666666667e-05, + "loss": 1.6250926208496095, + "step": 309900 + }, + { + "epoch": 41.333333333333336, + "grad_norm": 0.789966344833374, + "learning_rate": 2.9342600000000003e-05, + "loss": 1.6290631103515625, + "step": 310000 + }, + { + "epoch": 41.346666666666664, + "grad_norm": 0.7828590273857117, + "learning_rate": 2.9335933333333338e-05, + "loss": 1.6320005798339843, + "step": 310100 + }, + { + "epoch": 41.36, + "grad_norm": 0.7721713781356812, + "learning_rate": 2.9329266666666667e-05, + "loss": 1.6315066528320312, + "step": 310200 + }, + { + "epoch": 41.373333333333335, + "grad_norm": 0.7936566472053528, + "learning_rate": 2.93226e-05, + "loss": 1.6328521728515626, + "step": 310300 + }, + { + "epoch": 41.38666666666666, + "grad_norm": 0.8090173602104187, + "learning_rate": 2.9315933333333335e-05, + "loss": 1.6380584716796875, + "step": 310400 + }, + { + "epoch": 41.4, + "grad_norm": 0.7758917808532715, + "learning_rate": 2.9309266666666667e-05, + "loss": 1.6311029052734376, + "step": 310500 + }, + { + "epoch": 41.413333333333334, + "grad_norm": 0.7972980737686157, + "learning_rate": 2.9302600000000003e-05, + "loss": 1.6364056396484374, + "step": 310600 + }, + { + "epoch": 41.42666666666667, + "grad_norm": 0.795874834060669, + "learning_rate": 2.9295933333333335e-05, + "loss": 1.636111297607422, + "step": 310700 + }, + { + "epoch": 41.44, + "grad_norm": 0.8138737678527832, + "learning_rate": 2.928926666666667e-05, + "loss": 1.636154022216797, + "step": 310800 + }, + { + "epoch": 41.45333333333333, + "grad_norm": 0.8085600137710571, + "learning_rate": 2.92826e-05, + "loss": 1.6349728393554688, + "step": 310900 + }, + { + "epoch": 41.46666666666667, + "grad_norm": 0.7742388844490051, + "learning_rate": 2.9275933333333332e-05, + "loss": 1.63881591796875, + "step": 311000 + }, + { + "epoch": 41.48, + "grad_norm": 0.7965194582939148, + "learning_rate": 2.9269266666666668e-05, + "loss": 1.6336904907226562, + "step": 311100 + }, + { + "epoch": 41.49333333333333, + "grad_norm": 0.8123679161071777, + "learning_rate": 2.9262666666666667e-05, + "loss": 1.6433746337890625, + "step": 311200 + }, + { + "epoch": 41.50666666666667, + "grad_norm": 0.799063503742218, + "learning_rate": 2.9256e-05, + "loss": 1.6420155334472657, + "step": 311300 + }, + { + "epoch": 41.52, + "grad_norm": 0.7700026631355286, + "learning_rate": 2.9249333333333335e-05, + "loss": 1.6381747436523437, + "step": 311400 + }, + { + "epoch": 41.53333333333333, + "grad_norm": 0.783812940120697, + "learning_rate": 2.9242666666666667e-05, + "loss": 1.6365054321289063, + "step": 311500 + }, + { + "epoch": 41.54666666666667, + "grad_norm": 0.7764769792556763, + "learning_rate": 2.9236000000000003e-05, + "loss": 1.6388162231445313, + "step": 311600 + }, + { + "epoch": 41.56, + "grad_norm": 0.7944959402084351, + "learning_rate": 2.9229333333333335e-05, + "loss": 1.6455184936523437, + "step": 311700 + }, + { + "epoch": 41.57333333333333, + "grad_norm": 0.7800427079200745, + "learning_rate": 2.922266666666667e-05, + "loss": 1.6459024047851563, + "step": 311800 + }, + { + "epoch": 41.586666666666666, + "grad_norm": 0.8255797624588013, + "learning_rate": 2.9216e-05, + "loss": 1.6468026733398438, + "step": 311900 + }, + { + "epoch": 41.6, + "grad_norm": 0.7957680225372314, + "learning_rate": 2.9209333333333332e-05, + "loss": 1.6451564025878906, + "step": 312000 + }, + { + "epoch": 41.61333333333333, + "grad_norm": 0.8067429661750793, + "learning_rate": 2.9202666666666667e-05, + "loss": 1.649429168701172, + "step": 312100 + }, + { + "epoch": 41.626666666666665, + "grad_norm": 0.7828828692436218, + "learning_rate": 2.9196e-05, + "loss": 1.6439801025390626, + "step": 312200 + }, + { + "epoch": 41.64, + "grad_norm": 0.7971386313438416, + "learning_rate": 2.9189333333333335e-05, + "loss": 1.6461314392089843, + "step": 312300 + }, + { + "epoch": 41.653333333333336, + "grad_norm": 0.8209567666053772, + "learning_rate": 2.9182666666666668e-05, + "loss": 1.6470904541015625, + "step": 312400 + }, + { + "epoch": 41.666666666666664, + "grad_norm": 0.8193508386611938, + "learning_rate": 2.9176000000000003e-05, + "loss": 1.6506707763671875, + "step": 312500 + }, + { + "epoch": 41.68, + "grad_norm": 0.8329564929008484, + "learning_rate": 2.916933333333334e-05, + "loss": 1.6542561340332032, + "step": 312600 + }, + { + "epoch": 41.693333333333335, + "grad_norm": 0.7866358160972595, + "learning_rate": 2.9162666666666664e-05, + "loss": 1.6521278381347657, + "step": 312700 + }, + { + "epoch": 41.70666666666666, + "grad_norm": 0.8379685878753662, + "learning_rate": 2.9156e-05, + "loss": 1.6496038818359375, + "step": 312800 + }, + { + "epoch": 41.72, + "grad_norm": 0.7962581515312195, + "learning_rate": 2.9149333333333336e-05, + "loss": 1.6517626953125, + "step": 312900 + }, + { + "epoch": 41.733333333333334, + "grad_norm": 0.7623695135116577, + "learning_rate": 2.9142666666666668e-05, + "loss": 1.6487763977050782, + "step": 313000 + }, + { + "epoch": 41.74666666666667, + "grad_norm": 0.7969656586647034, + "learning_rate": 2.9136000000000004e-05, + "loss": 1.6543055725097657, + "step": 313100 + }, + { + "epoch": 41.76, + "grad_norm": 0.8090587258338928, + "learning_rate": 2.9129333333333336e-05, + "loss": 1.6550767517089844, + "step": 313200 + }, + { + "epoch": 41.77333333333333, + "grad_norm": 0.8005834817886353, + "learning_rate": 2.912266666666667e-05, + "loss": 1.6577835083007812, + "step": 313300 + }, + { + "epoch": 41.78666666666667, + "grad_norm": 0.7874211668968201, + "learning_rate": 2.9116e-05, + "loss": 1.6544857788085938, + "step": 313400 + }, + { + "epoch": 41.8, + "grad_norm": 0.7901095747947693, + "learning_rate": 2.9109400000000003e-05, + "loss": 1.6523391723632812, + "step": 313500 + }, + { + "epoch": 41.81333333333333, + "grad_norm": 0.7718372344970703, + "learning_rate": 2.910273333333334e-05, + "loss": 1.657394256591797, + "step": 313600 + }, + { + "epoch": 41.82666666666667, + "grad_norm": 0.8033204078674316, + "learning_rate": 2.9096066666666667e-05, + "loss": 1.6549183654785156, + "step": 313700 + }, + { + "epoch": 41.84, + "grad_norm": 0.773262619972229, + "learning_rate": 2.90894e-05, + "loss": 1.660445556640625, + "step": 313800 + }, + { + "epoch": 41.85333333333333, + "grad_norm": 0.781597375869751, + "learning_rate": 2.9082733333333335e-05, + "loss": 1.659234619140625, + "step": 313900 + }, + { + "epoch": 41.86666666666667, + "grad_norm": 0.823759138584137, + "learning_rate": 2.9076066666666668e-05, + "loss": 1.6564396667480468, + "step": 314000 + }, + { + "epoch": 41.88, + "grad_norm": 0.7636963725090027, + "learning_rate": 2.9069400000000003e-05, + "loss": 1.65720703125, + "step": 314100 + }, + { + "epoch": 41.89333333333333, + "grad_norm": 0.7856835126876831, + "learning_rate": 2.9062733333333336e-05, + "loss": 1.6625801086425782, + "step": 314200 + }, + { + "epoch": 41.906666666666666, + "grad_norm": 0.7966486215591431, + "learning_rate": 2.905606666666667e-05, + "loss": 1.6632244873046875, + "step": 314300 + }, + { + "epoch": 41.92, + "grad_norm": 0.7848227024078369, + "learning_rate": 2.90494e-05, + "loss": 1.6618414306640625, + "step": 314400 + }, + { + "epoch": 41.93333333333333, + "grad_norm": 0.8092052936553955, + "learning_rate": 2.9042733333333332e-05, + "loss": 1.6637734985351562, + "step": 314500 + }, + { + "epoch": 41.946666666666665, + "grad_norm": 0.8151919841766357, + "learning_rate": 2.9036066666666668e-05, + "loss": 1.6675376892089844, + "step": 314600 + }, + { + "epoch": 41.96, + "grad_norm": 0.7819831371307373, + "learning_rate": 2.90294e-05, + "loss": 1.6665446472167968, + "step": 314700 + }, + { + "epoch": 41.973333333333336, + "grad_norm": 0.7871850728988647, + "learning_rate": 2.9022733333333336e-05, + "loss": 1.66580810546875, + "step": 314800 + }, + { + "epoch": 41.986666666666665, + "grad_norm": 0.8031324744224548, + "learning_rate": 2.9016066666666668e-05, + "loss": 1.6656488037109376, + "step": 314900 + }, + { + "epoch": 42.0, + "grad_norm": 0.8214955925941467, + "learning_rate": 2.9009400000000004e-05, + "loss": 1.6649081420898437, + "step": 315000 + }, + { + "epoch": 42.013333333333335, + "grad_norm": 0.7725866436958313, + "learning_rate": 2.9002733333333336e-05, + "loss": 1.579239501953125, + "step": 315100 + }, + { + "epoch": 42.026666666666664, + "grad_norm": 0.7591557502746582, + "learning_rate": 2.8996066666666665e-05, + "loss": 1.5807839965820312, + "step": 315200 + }, + { + "epoch": 42.04, + "grad_norm": 0.7683588862419128, + "learning_rate": 2.89894e-05, + "loss": 1.584822235107422, + "step": 315300 + }, + { + "epoch": 42.053333333333335, + "grad_norm": 0.7662196159362793, + "learning_rate": 2.8982733333333333e-05, + "loss": 1.5851914978027344, + "step": 315400 + }, + { + "epoch": 42.06666666666667, + "grad_norm": 0.8008477687835693, + "learning_rate": 2.897606666666667e-05, + "loss": 1.5897236633300782, + "step": 315500 + }, + { + "epoch": 42.08, + "grad_norm": 0.8044509291648865, + "learning_rate": 2.8969466666666668e-05, + "loss": 1.5850997924804688, + "step": 315600 + }, + { + "epoch": 42.093333333333334, + "grad_norm": 0.82093745470047, + "learning_rate": 2.89628e-05, + "loss": 1.5886293029785157, + "step": 315700 + }, + { + "epoch": 42.10666666666667, + "grad_norm": 0.7949629426002502, + "learning_rate": 2.8956133333333336e-05, + "loss": 1.5937432861328125, + "step": 315800 + }, + { + "epoch": 42.12, + "grad_norm": 0.7797324657440186, + "learning_rate": 2.8949466666666668e-05, + "loss": 1.5901795959472655, + "step": 315900 + }, + { + "epoch": 42.13333333333333, + "grad_norm": 0.7416061758995056, + "learning_rate": 2.8942800000000003e-05, + "loss": 1.5912071228027345, + "step": 316000 + }, + { + "epoch": 42.14666666666667, + "grad_norm": 0.796648383140564, + "learning_rate": 2.8936133333333336e-05, + "loss": 1.5968006896972655, + "step": 316100 + }, + { + "epoch": 42.16, + "grad_norm": 0.7828426361083984, + "learning_rate": 2.8929466666666665e-05, + "loss": 1.6001832580566406, + "step": 316200 + }, + { + "epoch": 42.17333333333333, + "grad_norm": 0.778724193572998, + "learning_rate": 2.89228e-05, + "loss": 1.5923294067382812, + "step": 316300 + }, + { + "epoch": 42.18666666666667, + "grad_norm": 0.7975136637687683, + "learning_rate": 2.8916133333333333e-05, + "loss": 1.5967176818847657, + "step": 316400 + }, + { + "epoch": 42.2, + "grad_norm": 0.7668192386627197, + "learning_rate": 2.8909466666666668e-05, + "loss": 1.6007345581054688, + "step": 316500 + }, + { + "epoch": 42.21333333333333, + "grad_norm": 0.7750270366668701, + "learning_rate": 2.89028e-05, + "loss": 1.601139373779297, + "step": 316600 + }, + { + "epoch": 42.22666666666667, + "grad_norm": 0.8115882873535156, + "learning_rate": 2.8896133333333336e-05, + "loss": 1.5999020385742186, + "step": 316700 + }, + { + "epoch": 42.24, + "grad_norm": 0.8152367472648621, + "learning_rate": 2.8889466666666672e-05, + "loss": 1.6009846496582032, + "step": 316800 + }, + { + "epoch": 42.25333333333333, + "grad_norm": 0.7818172574043274, + "learning_rate": 2.8882799999999997e-05, + "loss": 1.6060690307617187, + "step": 316900 + }, + { + "epoch": 42.266666666666666, + "grad_norm": 0.7581207156181335, + "learning_rate": 2.8876133333333333e-05, + "loss": 1.61083984375, + "step": 317000 + }, + { + "epoch": 42.28, + "grad_norm": 0.797792911529541, + "learning_rate": 2.8869466666666665e-05, + "loss": 1.6037715148925782, + "step": 317100 + }, + { + "epoch": 42.29333333333334, + "grad_norm": 0.8175429701805115, + "learning_rate": 2.88628e-05, + "loss": 1.6076036071777344, + "step": 317200 + }, + { + "epoch": 42.306666666666665, + "grad_norm": 0.772908627986908, + "learning_rate": 2.8856133333333337e-05, + "loss": 1.6125408935546874, + "step": 317300 + }, + { + "epoch": 42.32, + "grad_norm": 0.7854279279708862, + "learning_rate": 2.884946666666667e-05, + "loss": 1.6088632202148438, + "step": 317400 + }, + { + "epoch": 42.333333333333336, + "grad_norm": 0.7655262351036072, + "learning_rate": 2.8842800000000004e-05, + "loss": 1.610213623046875, + "step": 317500 + }, + { + "epoch": 42.346666666666664, + "grad_norm": 0.7729225754737854, + "learning_rate": 2.8836133333333337e-05, + "loss": 1.6126589965820313, + "step": 317600 + }, + { + "epoch": 42.36, + "grad_norm": 0.7809514403343201, + "learning_rate": 2.8829466666666666e-05, + "loss": 1.6137397766113282, + "step": 317700 + }, + { + "epoch": 42.373333333333335, + "grad_norm": 0.8015533089637756, + "learning_rate": 2.88228e-05, + "loss": 1.6137492370605468, + "step": 317800 + }, + { + "epoch": 42.38666666666666, + "grad_norm": 0.8014168739318848, + "learning_rate": 2.8816133333333334e-05, + "loss": 1.6128648376464845, + "step": 317900 + }, + { + "epoch": 42.4, + "grad_norm": 0.8032166957855225, + "learning_rate": 2.8809533333333333e-05, + "loss": 1.617438507080078, + "step": 318000 + }, + { + "epoch": 42.413333333333334, + "grad_norm": 0.7962257266044617, + "learning_rate": 2.8802866666666668e-05, + "loss": 1.6180424499511719, + "step": 318100 + }, + { + "epoch": 42.42666666666667, + "grad_norm": 0.7772518992424011, + "learning_rate": 2.87962e-05, + "loss": 1.618890838623047, + "step": 318200 + }, + { + "epoch": 42.44, + "grad_norm": 0.8154412508010864, + "learning_rate": 2.8789533333333336e-05, + "loss": 1.6198379516601562, + "step": 318300 + }, + { + "epoch": 42.45333333333333, + "grad_norm": 0.8127172589302063, + "learning_rate": 2.878286666666667e-05, + "loss": 1.620894317626953, + "step": 318400 + }, + { + "epoch": 42.46666666666667, + "grad_norm": 0.7918204069137573, + "learning_rate": 2.8776200000000004e-05, + "loss": 1.620947265625, + "step": 318500 + }, + { + "epoch": 42.48, + "grad_norm": 0.7991171479225159, + "learning_rate": 2.8769533333333336e-05, + "loss": 1.6179556274414062, + "step": 318600 + }, + { + "epoch": 42.49333333333333, + "grad_norm": 0.7768269777297974, + "learning_rate": 2.8762866666666665e-05, + "loss": 1.619527587890625, + "step": 318700 + }, + { + "epoch": 42.50666666666667, + "grad_norm": 0.8096961379051208, + "learning_rate": 2.87562e-05, + "loss": 1.618616943359375, + "step": 318800 + }, + { + "epoch": 42.52, + "grad_norm": 0.7590042352676392, + "learning_rate": 2.8749533333333333e-05, + "loss": 1.6230258178710937, + "step": 318900 + }, + { + "epoch": 42.53333333333333, + "grad_norm": 0.8029301762580872, + "learning_rate": 2.874286666666667e-05, + "loss": 1.6235476684570314, + "step": 319000 + }, + { + "epoch": 42.54666666666667, + "grad_norm": 0.794658899307251, + "learning_rate": 2.87362e-05, + "loss": 1.6211264038085937, + "step": 319100 + }, + { + "epoch": 42.56, + "grad_norm": 0.843220591545105, + "learning_rate": 2.8729533333333337e-05, + "loss": 1.6271005249023438, + "step": 319200 + }, + { + "epoch": 42.57333333333333, + "grad_norm": 0.8237653374671936, + "learning_rate": 2.872286666666667e-05, + "loss": 1.6294674682617187, + "step": 319300 + }, + { + "epoch": 42.586666666666666, + "grad_norm": 0.8025068640708923, + "learning_rate": 2.8716199999999998e-05, + "loss": 1.6239111328125, + "step": 319400 + }, + { + "epoch": 42.6, + "grad_norm": 0.7929406762123108, + "learning_rate": 2.8709533333333334e-05, + "loss": 1.6274394226074218, + "step": 319500 + }, + { + "epoch": 42.61333333333333, + "grad_norm": 0.8021830320358276, + "learning_rate": 2.8702866666666666e-05, + "loss": 1.6309587097167968, + "step": 319600 + }, + { + "epoch": 42.626666666666665, + "grad_norm": 0.8247801661491394, + "learning_rate": 2.86962e-05, + "loss": 1.6306277465820314, + "step": 319700 + }, + { + "epoch": 42.64, + "grad_norm": 0.7925310134887695, + "learning_rate": 2.8689533333333334e-05, + "loss": 1.6312562561035155, + "step": 319800 + }, + { + "epoch": 42.653333333333336, + "grad_norm": 0.7969545722007751, + "learning_rate": 2.868286666666667e-05, + "loss": 1.6337765502929686, + "step": 319900 + }, + { + "epoch": 42.666666666666664, + "grad_norm": 0.8170307278633118, + "learning_rate": 2.86762e-05, + "loss": 1.6321212768554687, + "step": 320000 + }, + { + "epoch": 42.68, + "grad_norm": 0.77912837266922, + "learning_rate": 2.86696e-05, + "loss": 1.6315771484375, + "step": 320100 + }, + { + "epoch": 42.693333333333335, + "grad_norm": 0.788314938545227, + "learning_rate": 2.8662933333333336e-05, + "loss": 1.6329681396484375, + "step": 320200 + }, + { + "epoch": 42.70666666666666, + "grad_norm": 0.8608801960945129, + "learning_rate": 2.865626666666667e-05, + "loss": 1.6328976440429688, + "step": 320300 + }, + { + "epoch": 42.72, + "grad_norm": 0.8006208539009094, + "learning_rate": 2.8649599999999998e-05, + "loss": 1.6340364074707032, + "step": 320400 + }, + { + "epoch": 42.733333333333334, + "grad_norm": 0.7970700263977051, + "learning_rate": 2.8642933333333333e-05, + "loss": 1.633923797607422, + "step": 320500 + }, + { + "epoch": 42.74666666666667, + "grad_norm": 0.7704428434371948, + "learning_rate": 2.8636266666666665e-05, + "loss": 1.6360755920410157, + "step": 320600 + }, + { + "epoch": 42.76, + "grad_norm": 0.8283227682113647, + "learning_rate": 2.86296e-05, + "loss": 1.637872772216797, + "step": 320700 + }, + { + "epoch": 42.77333333333333, + "grad_norm": 0.851524293422699, + "learning_rate": 2.8622933333333333e-05, + "loss": 1.6359402465820312, + "step": 320800 + }, + { + "epoch": 42.78666666666667, + "grad_norm": 0.7893416881561279, + "learning_rate": 2.861626666666667e-05, + "loss": 1.6323648071289063, + "step": 320900 + }, + { + "epoch": 42.8, + "grad_norm": 0.8033201098442078, + "learning_rate": 2.8609600000000005e-05, + "loss": 1.6443894958496095, + "step": 321000 + }, + { + "epoch": 42.81333333333333, + "grad_norm": 0.8074483275413513, + "learning_rate": 2.8602933333333337e-05, + "loss": 1.639532470703125, + "step": 321100 + }, + { + "epoch": 42.82666666666667, + "grad_norm": 0.7866470217704773, + "learning_rate": 2.8596266666666666e-05, + "loss": 1.64190673828125, + "step": 321200 + }, + { + "epoch": 42.84, + "grad_norm": 0.8023852109909058, + "learning_rate": 2.8589599999999998e-05, + "loss": 1.638301239013672, + "step": 321300 + }, + { + "epoch": 42.85333333333333, + "grad_norm": 0.8220396637916565, + "learning_rate": 2.8582933333333334e-05, + "loss": 1.6426438903808593, + "step": 321400 + }, + { + "epoch": 42.86666666666667, + "grad_norm": 0.8232139945030212, + "learning_rate": 2.857626666666667e-05, + "loss": 1.6402984619140626, + "step": 321500 + }, + { + "epoch": 42.88, + "grad_norm": 0.8309381604194641, + "learning_rate": 2.8569600000000002e-05, + "loss": 1.636634521484375, + "step": 321600 + }, + { + "epoch": 42.89333333333333, + "grad_norm": 0.8182979226112366, + "learning_rate": 2.8562933333333337e-05, + "loss": 1.6453871154785156, + "step": 321700 + }, + { + "epoch": 42.906666666666666, + "grad_norm": 0.8423646688461304, + "learning_rate": 2.855626666666667e-05, + "loss": 1.6444189453125, + "step": 321800 + }, + { + "epoch": 42.92, + "grad_norm": 0.8091830015182495, + "learning_rate": 2.8549600000000005e-05, + "loss": 1.6435879516601561, + "step": 321900 + }, + { + "epoch": 42.93333333333333, + "grad_norm": 0.8040499091148376, + "learning_rate": 2.8542933333333334e-05, + "loss": 1.6471051025390624, + "step": 322000 + }, + { + "epoch": 42.946666666666665, + "grad_norm": 0.8056833148002625, + "learning_rate": 2.8536266666666666e-05, + "loss": 1.6470870971679688, + "step": 322100 + }, + { + "epoch": 42.96, + "grad_norm": 0.8252720832824707, + "learning_rate": 2.8529600000000002e-05, + "loss": 1.647276611328125, + "step": 322200 + }, + { + "epoch": 42.973333333333336, + "grad_norm": 0.7846107482910156, + "learning_rate": 2.8522933333333334e-05, + "loss": 1.6448028564453125, + "step": 322300 + }, + { + "epoch": 42.986666666666665, + "grad_norm": 0.8476292490959167, + "learning_rate": 2.851626666666667e-05, + "loss": 1.6520864868164062, + "step": 322400 + }, + { + "epoch": 43.0, + "grad_norm": 0.8160085678100586, + "learning_rate": 2.850966666666667e-05, + "loss": 1.6483326721191407, + "step": 322500 + }, + { + "epoch": 43.013333333333335, + "grad_norm": 0.8134644627571106, + "learning_rate": 2.8503e-05, + "loss": 1.564569854736328, + "step": 322600 + }, + { + "epoch": 43.026666666666664, + "grad_norm": 0.7962319850921631, + "learning_rate": 2.8496333333333337e-05, + "loss": 1.5676768493652344, + "step": 322700 + }, + { + "epoch": 43.04, + "grad_norm": 0.7382012009620667, + "learning_rate": 2.848966666666667e-05, + "loss": 1.566510467529297, + "step": 322800 + }, + { + "epoch": 43.053333333333335, + "grad_norm": 0.7968773245811462, + "learning_rate": 2.8483000000000005e-05, + "loss": 1.5708531188964843, + "step": 322900 + }, + { + "epoch": 43.06666666666667, + "grad_norm": 0.7553964853286743, + "learning_rate": 2.8476333333333334e-05, + "loss": 1.5697604370117189, + "step": 323000 + }, + { + "epoch": 43.08, + "grad_norm": 0.7678956389427185, + "learning_rate": 2.8469666666666666e-05, + "loss": 1.5742947387695312, + "step": 323100 + }, + { + "epoch": 43.093333333333334, + "grad_norm": 0.80665522813797, + "learning_rate": 2.8463000000000002e-05, + "loss": 1.5716915893554688, + "step": 323200 + }, + { + "epoch": 43.10666666666667, + "grad_norm": 0.8582669496536255, + "learning_rate": 2.8456333333333334e-05, + "loss": 1.5759283447265624, + "step": 323300 + }, + { + "epoch": 43.12, + "grad_norm": 0.8015368580818176, + "learning_rate": 2.844966666666667e-05, + "loss": 1.5717546081542968, + "step": 323400 + }, + { + "epoch": 43.13333333333333, + "grad_norm": 0.7866412997245789, + "learning_rate": 2.8443000000000002e-05, + "loss": 1.5720692443847657, + "step": 323500 + }, + { + "epoch": 43.14666666666667, + "grad_norm": 0.7602863311767578, + "learning_rate": 2.8436333333333338e-05, + "loss": 1.5750347900390624, + "step": 323600 + }, + { + "epoch": 43.16, + "grad_norm": 0.7865772843360901, + "learning_rate": 2.8429666666666666e-05, + "loss": 1.578832550048828, + "step": 323700 + }, + { + "epoch": 43.17333333333333, + "grad_norm": 0.7900835871696472, + "learning_rate": 2.8423e-05, + "loss": 1.576087188720703, + "step": 323800 + }, + { + "epoch": 43.18666666666667, + "grad_norm": 0.7576287984848022, + "learning_rate": 2.8416333333333334e-05, + "loss": 1.582108917236328, + "step": 323900 + }, + { + "epoch": 43.2, + "grad_norm": 0.8061697483062744, + "learning_rate": 2.8409666666666667e-05, + "loss": 1.5846551513671876, + "step": 324000 + }, + { + "epoch": 43.21333333333333, + "grad_norm": 0.8036941289901733, + "learning_rate": 2.8403000000000002e-05, + "loss": 1.5829280090332032, + "step": 324100 + }, + { + "epoch": 43.22666666666667, + "grad_norm": 0.81672602891922, + "learning_rate": 2.8396333333333335e-05, + "loss": 1.5833650207519532, + "step": 324200 + }, + { + "epoch": 43.24, + "grad_norm": 0.7637189626693726, + "learning_rate": 2.838966666666667e-05, + "loss": 1.5832330322265624, + "step": 324300 + }, + { + "epoch": 43.25333333333333, + "grad_norm": 0.810999870300293, + "learning_rate": 2.8383000000000003e-05, + "loss": 1.585732421875, + "step": 324400 + }, + { + "epoch": 43.266666666666666, + "grad_norm": 0.7959699034690857, + "learning_rate": 2.837633333333333e-05, + "loss": 1.5903799438476562, + "step": 324500 + }, + { + "epoch": 43.28, + "grad_norm": 0.8153569102287292, + "learning_rate": 2.8369666666666667e-05, + "loss": 1.5871414184570312, + "step": 324600 + }, + { + "epoch": 43.29333333333334, + "grad_norm": 0.7914409637451172, + "learning_rate": 2.8363066666666666e-05, + "loss": 1.5875323486328126, + "step": 324700 + }, + { + "epoch": 43.306666666666665, + "grad_norm": 0.7989243268966675, + "learning_rate": 2.83564e-05, + "loss": 1.5916000366210938, + "step": 324800 + }, + { + "epoch": 43.32, + "grad_norm": 0.7825499773025513, + "learning_rate": 2.8349733333333334e-05, + "loss": 1.5893446350097655, + "step": 324900 + }, + { + "epoch": 43.333333333333336, + "grad_norm": 0.8575960993766785, + "learning_rate": 2.8343066666666666e-05, + "loss": 1.5977841186523438, + "step": 325000 + }, + { + "epoch": 43.346666666666664, + "grad_norm": 0.8244292736053467, + "learning_rate": 2.8336400000000002e-05, + "loss": 1.601702880859375, + "step": 325100 + }, + { + "epoch": 43.36, + "grad_norm": 0.7933399677276611, + "learning_rate": 2.8329733333333334e-05, + "loss": 1.5982562255859376, + "step": 325200 + }, + { + "epoch": 43.373333333333335, + "grad_norm": 0.767894446849823, + "learning_rate": 2.832306666666667e-05, + "loss": 1.5982928466796875, + "step": 325300 + }, + { + "epoch": 43.38666666666666, + "grad_norm": 0.7718991041183472, + "learning_rate": 2.8316400000000006e-05, + "loss": 1.595538330078125, + "step": 325400 + }, + { + "epoch": 43.4, + "grad_norm": 0.8214613795280457, + "learning_rate": 2.830973333333333e-05, + "loss": 1.5974700927734375, + "step": 325500 + }, + { + "epoch": 43.413333333333334, + "grad_norm": 0.7975192666053772, + "learning_rate": 2.8303066666666667e-05, + "loss": 1.5963027954101563, + "step": 325600 + }, + { + "epoch": 43.42666666666667, + "grad_norm": 0.8252496123313904, + "learning_rate": 2.8296400000000002e-05, + "loss": 1.602006072998047, + "step": 325700 + }, + { + "epoch": 43.44, + "grad_norm": 0.7980925440788269, + "learning_rate": 2.8289733333333335e-05, + "loss": 1.5992507934570312, + "step": 325800 + }, + { + "epoch": 43.45333333333333, + "grad_norm": 0.8060539960861206, + "learning_rate": 2.828306666666667e-05, + "loss": 1.6028526306152344, + "step": 325900 + }, + { + "epoch": 43.46666666666667, + "grad_norm": 0.8016360998153687, + "learning_rate": 2.8276400000000003e-05, + "loss": 1.6021473693847657, + "step": 326000 + }, + { + "epoch": 43.48, + "grad_norm": 0.8183965086936951, + "learning_rate": 2.8269733333333338e-05, + "loss": 1.604202117919922, + "step": 326100 + }, + { + "epoch": 43.49333333333333, + "grad_norm": 0.8167826533317566, + "learning_rate": 2.8263066666666667e-05, + "loss": 1.6037716674804687, + "step": 326200 + }, + { + "epoch": 43.50666666666667, + "grad_norm": 0.822792649269104, + "learning_rate": 2.82564e-05, + "loss": 1.6101824951171875, + "step": 326300 + }, + { + "epoch": 43.52, + "grad_norm": 0.8114305734634399, + "learning_rate": 2.8249733333333335e-05, + "loss": 1.6087193298339844, + "step": 326400 + }, + { + "epoch": 43.53333333333333, + "grad_norm": 0.7822854518890381, + "learning_rate": 2.8243066666666667e-05, + "loss": 1.6054570007324218, + "step": 326500 + }, + { + "epoch": 43.54666666666667, + "grad_norm": 0.8089674115180969, + "learning_rate": 2.8236400000000003e-05, + "loss": 1.6116357421875, + "step": 326600 + }, + { + "epoch": 43.56, + "grad_norm": 0.8371312618255615, + "learning_rate": 2.8229733333333335e-05, + "loss": 1.6092622375488281, + "step": 326700 + }, + { + "epoch": 43.57333333333333, + "grad_norm": 0.8427196145057678, + "learning_rate": 2.822306666666667e-05, + "loss": 1.6071795654296874, + "step": 326800 + }, + { + "epoch": 43.586666666666666, + "grad_norm": 0.8295238614082336, + "learning_rate": 2.8216400000000003e-05, + "loss": 1.6127923583984376, + "step": 326900 + }, + { + "epoch": 43.6, + "grad_norm": 0.7599214315414429, + "learning_rate": 2.8209733333333332e-05, + "loss": 1.6075257873535156, + "step": 327000 + }, + { + "epoch": 43.61333333333333, + "grad_norm": 0.8173493146896362, + "learning_rate": 2.8203133333333338e-05, + "loss": 1.614122314453125, + "step": 327100 + }, + { + "epoch": 43.626666666666665, + "grad_norm": 0.8332886695861816, + "learning_rate": 2.8196466666666667e-05, + "loss": 1.6084408569335937, + "step": 327200 + }, + { + "epoch": 43.64, + "grad_norm": 0.7986454367637634, + "learning_rate": 2.81898e-05, + "loss": 1.611384735107422, + "step": 327300 + }, + { + "epoch": 43.653333333333336, + "grad_norm": 0.810438334941864, + "learning_rate": 2.8183133333333335e-05, + "loss": 1.6099681091308593, + "step": 327400 + }, + { + "epoch": 43.666666666666664, + "grad_norm": 0.8122630715370178, + "learning_rate": 2.8176466666666667e-05, + "loss": 1.6159297180175782, + "step": 327500 + }, + { + "epoch": 43.68, + "grad_norm": 0.8273375630378723, + "learning_rate": 2.8169800000000003e-05, + "loss": 1.61582275390625, + "step": 327600 + }, + { + "epoch": 43.693333333333335, + "grad_norm": 0.8308714628219604, + "learning_rate": 2.8163133333333335e-05, + "loss": 1.6199285888671875, + "step": 327700 + }, + { + "epoch": 43.70666666666666, + "grad_norm": 0.8172910809516907, + "learning_rate": 2.815646666666667e-05, + "loss": 1.6155218505859374, + "step": 327800 + }, + { + "epoch": 43.72, + "grad_norm": 0.8160513639450073, + "learning_rate": 2.8149800000000003e-05, + "loss": 1.6149066162109376, + "step": 327900 + }, + { + "epoch": 43.733333333333334, + "grad_norm": 0.8249967098236084, + "learning_rate": 2.814313333333333e-05, + "loss": 1.6162269592285157, + "step": 328000 + }, + { + "epoch": 43.74666666666667, + "grad_norm": 0.8377850651741028, + "learning_rate": 2.8136466666666667e-05, + "loss": 1.618191680908203, + "step": 328100 + }, + { + "epoch": 43.76, + "grad_norm": 0.8137295842170715, + "learning_rate": 2.81298e-05, + "loss": 1.6187442016601563, + "step": 328200 + }, + { + "epoch": 43.77333333333333, + "grad_norm": 0.837970495223999, + "learning_rate": 2.8123133333333335e-05, + "loss": 1.6166807556152343, + "step": 328300 + }, + { + "epoch": 43.78666666666667, + "grad_norm": 0.8243003487586975, + "learning_rate": 2.8116466666666668e-05, + "loss": 1.616520233154297, + "step": 328400 + }, + { + "epoch": 43.8, + "grad_norm": 0.803848147392273, + "learning_rate": 2.8109800000000003e-05, + "loss": 1.6198391723632812, + "step": 328500 + }, + { + "epoch": 43.81333333333333, + "grad_norm": 0.833913266658783, + "learning_rate": 2.8103133333333335e-05, + "loss": 1.6213204956054688, + "step": 328600 + }, + { + "epoch": 43.82666666666667, + "grad_norm": 0.8218970894813538, + "learning_rate": 2.8096466666666664e-05, + "loss": 1.6247633361816407, + "step": 328700 + }, + { + "epoch": 43.84, + "grad_norm": 0.7986996173858643, + "learning_rate": 2.80898e-05, + "loss": 1.6211305236816407, + "step": 328800 + }, + { + "epoch": 43.85333333333333, + "grad_norm": 0.8100335597991943, + "learning_rate": 2.8083133333333332e-05, + "loss": 1.6219183349609374, + "step": 328900 + }, + { + "epoch": 43.86666666666667, + "grad_norm": 0.8108803033828735, + "learning_rate": 2.8076466666666668e-05, + "loss": 1.625777587890625, + "step": 329000 + }, + { + "epoch": 43.88, + "grad_norm": 0.8235127329826355, + "learning_rate": 2.80698e-05, + "loss": 1.6242713928222656, + "step": 329100 + }, + { + "epoch": 43.89333333333333, + "grad_norm": 0.8156707882881165, + "learning_rate": 2.8063133333333336e-05, + "loss": 1.6232484436035157, + "step": 329200 + }, + { + "epoch": 43.906666666666666, + "grad_norm": 0.8078377842903137, + "learning_rate": 2.805646666666667e-05, + "loss": 1.628054656982422, + "step": 329300 + }, + { + "epoch": 43.92, + "grad_norm": 0.8015416264533997, + "learning_rate": 2.8049866666666667e-05, + "loss": 1.6264244079589845, + "step": 329400 + }, + { + "epoch": 43.93333333333333, + "grad_norm": 0.8207682967185974, + "learning_rate": 2.8043200000000003e-05, + "loss": 1.6302552795410157, + "step": 329500 + }, + { + "epoch": 43.946666666666665, + "grad_norm": 0.8398280739784241, + "learning_rate": 2.803653333333334e-05, + "loss": 1.6280979919433594, + "step": 329600 + }, + { + "epoch": 43.96, + "grad_norm": 0.8197426199913025, + "learning_rate": 2.8029866666666664e-05, + "loss": 1.628609619140625, + "step": 329700 + }, + { + "epoch": 43.973333333333336, + "grad_norm": 0.8169100284576416, + "learning_rate": 2.80232e-05, + "loss": 1.6312359619140624, + "step": 329800 + }, + { + "epoch": 43.986666666666665, + "grad_norm": 0.83058100938797, + "learning_rate": 2.8016533333333332e-05, + "loss": 1.6318269348144532, + "step": 329900 + }, + { + "epoch": 44.0, + "grad_norm": 0.8323699831962585, + "learning_rate": 2.8009866666666668e-05, + "loss": 1.630924072265625, + "step": 330000 + }, + { + "epoch": 44.013333333333335, + "grad_norm": 0.7513566613197327, + "learning_rate": 2.8003200000000003e-05, + "loss": 1.5481965637207031, + "step": 330100 + }, + { + "epoch": 44.026666666666664, + "grad_norm": 0.795397162437439, + "learning_rate": 2.7996533333333335e-05, + "loss": 1.548214874267578, + "step": 330200 + }, + { + "epoch": 44.04, + "grad_norm": 0.8049753904342651, + "learning_rate": 2.798986666666667e-05, + "loss": 1.5531326293945313, + "step": 330300 + }, + { + "epoch": 44.053333333333335, + "grad_norm": 0.8120512366294861, + "learning_rate": 2.7983200000000003e-05, + "loss": 1.5544256591796874, + "step": 330400 + }, + { + "epoch": 44.06666666666667, + "grad_norm": 0.7974734306335449, + "learning_rate": 2.7976533333333332e-05, + "loss": 1.5533895874023438, + "step": 330500 + }, + { + "epoch": 44.08, + "grad_norm": 0.7629339098930359, + "learning_rate": 2.7969866666666668e-05, + "loss": 1.5582643127441407, + "step": 330600 + }, + { + "epoch": 44.093333333333334, + "grad_norm": 0.8154823184013367, + "learning_rate": 2.79632e-05, + "loss": 1.5581031799316407, + "step": 330700 + }, + { + "epoch": 44.10666666666667, + "grad_norm": 0.7857486605644226, + "learning_rate": 2.7956533333333336e-05, + "loss": 1.5564183044433593, + "step": 330800 + }, + { + "epoch": 44.12, + "grad_norm": 0.787510097026825, + "learning_rate": 2.7949866666666668e-05, + "loss": 1.5604660034179687, + "step": 330900 + }, + { + "epoch": 44.13333333333333, + "grad_norm": 0.8060212135314941, + "learning_rate": 2.7943200000000004e-05, + "loss": 1.5654124450683593, + "step": 331000 + }, + { + "epoch": 44.14666666666667, + "grad_norm": 0.7761242389678955, + "learning_rate": 2.7936533333333336e-05, + "loss": 1.5596726989746095, + "step": 331100 + }, + { + "epoch": 44.16, + "grad_norm": 0.8251379132270813, + "learning_rate": 2.7929866666666665e-05, + "loss": 1.5614840698242187, + "step": 331200 + }, + { + "epoch": 44.17333333333333, + "grad_norm": 0.7911105155944824, + "learning_rate": 2.79232e-05, + "loss": 1.56426025390625, + "step": 331300 + }, + { + "epoch": 44.18666666666667, + "grad_norm": 0.8405753374099731, + "learning_rate": 2.7916533333333333e-05, + "loss": 1.5673910522460937, + "step": 331400 + }, + { + "epoch": 44.2, + "grad_norm": 0.8145385384559631, + "learning_rate": 2.790986666666667e-05, + "loss": 1.5684516906738282, + "step": 331500 + }, + { + "epoch": 44.21333333333333, + "grad_norm": 0.773007333278656, + "learning_rate": 2.7903266666666668e-05, + "loss": 1.5602330017089843, + "step": 331600 + }, + { + "epoch": 44.22666666666667, + "grad_norm": 0.7946937680244446, + "learning_rate": 2.78966e-05, + "loss": 1.5710047912597656, + "step": 331700 + }, + { + "epoch": 44.24, + "grad_norm": 0.7660664916038513, + "learning_rate": 2.7889933333333336e-05, + "loss": 1.5709490966796875, + "step": 331800 + }, + { + "epoch": 44.25333333333333, + "grad_norm": 0.8005920052528381, + "learning_rate": 2.7883266666666668e-05, + "loss": 1.574346160888672, + "step": 331900 + }, + { + "epoch": 44.266666666666666, + "grad_norm": 0.7568239569664001, + "learning_rate": 2.7876600000000003e-05, + "loss": 1.5710443115234376, + "step": 332000 + }, + { + "epoch": 44.28, + "grad_norm": 0.7837048172950745, + "learning_rate": 2.7869933333333336e-05, + "loss": 1.5691023254394532, + "step": 332100 + }, + { + "epoch": 44.29333333333334, + "grad_norm": 0.8391625881195068, + "learning_rate": 2.7863266666666665e-05, + "loss": 1.5703250122070314, + "step": 332200 + }, + { + "epoch": 44.306666666666665, + "grad_norm": 0.8348113298416138, + "learning_rate": 2.78566e-05, + "loss": 1.5742678833007813, + "step": 332300 + }, + { + "epoch": 44.32, + "grad_norm": 0.8065680861473083, + "learning_rate": 2.7849933333333333e-05, + "loss": 1.574197998046875, + "step": 332400 + }, + { + "epoch": 44.333333333333336, + "grad_norm": 0.810249388217926, + "learning_rate": 2.7843266666666668e-05, + "loss": 1.5787997436523438, + "step": 332500 + }, + { + "epoch": 44.346666666666664, + "grad_norm": 0.8214126229286194, + "learning_rate": 2.78366e-05, + "loss": 1.5753494262695313, + "step": 332600 + }, + { + "epoch": 44.36, + "grad_norm": 0.7763717770576477, + "learning_rate": 2.7829933333333336e-05, + "loss": 1.5762429809570313, + "step": 332700 + }, + { + "epoch": 44.373333333333335, + "grad_norm": 0.8266735076904297, + "learning_rate": 2.782326666666667e-05, + "loss": 1.5780609130859375, + "step": 332800 + }, + { + "epoch": 44.38666666666666, + "grad_norm": 0.7696077823638916, + "learning_rate": 2.7816600000000004e-05, + "loss": 1.5806687927246095, + "step": 332900 + }, + { + "epoch": 44.4, + "grad_norm": 0.8544163703918457, + "learning_rate": 2.7809933333333333e-05, + "loss": 1.5851622009277344, + "step": 333000 + }, + { + "epoch": 44.413333333333334, + "grad_norm": 0.8484505414962769, + "learning_rate": 2.7803266666666665e-05, + "loss": 1.581590576171875, + "step": 333100 + }, + { + "epoch": 44.42666666666667, + "grad_norm": 0.8385995626449585, + "learning_rate": 2.77966e-05, + "loss": 1.5861528015136719, + "step": 333200 + }, + { + "epoch": 44.44, + "grad_norm": 0.8071863651275635, + "learning_rate": 2.7789933333333333e-05, + "loss": 1.5843661499023438, + "step": 333300 + }, + { + "epoch": 44.45333333333333, + "grad_norm": 0.7563880085945129, + "learning_rate": 2.778326666666667e-05, + "loss": 1.5832810974121094, + "step": 333400 + }, + { + "epoch": 44.46666666666667, + "grad_norm": 0.8372814655303955, + "learning_rate": 2.77766e-05, + "loss": 1.5854434204101562, + "step": 333500 + }, + { + "epoch": 44.48, + "grad_norm": 0.8299968838691711, + "learning_rate": 2.777e-05, + "loss": 1.5830865478515626, + "step": 333600 + }, + { + "epoch": 44.49333333333333, + "grad_norm": 0.8309788107872009, + "learning_rate": 2.7763333333333336e-05, + "loss": 1.5840238952636718, + "step": 333700 + }, + { + "epoch": 44.50666666666667, + "grad_norm": 0.8194689154624939, + "learning_rate": 2.7756666666666668e-05, + "loss": 1.5837715148925782, + "step": 333800 + }, + { + "epoch": 44.52, + "grad_norm": 0.8060626983642578, + "learning_rate": 2.7750000000000004e-05, + "loss": 1.5884098815917969, + "step": 333900 + }, + { + "epoch": 44.53333333333333, + "grad_norm": 0.8061336278915405, + "learning_rate": 2.7743333333333333e-05, + "loss": 1.588507080078125, + "step": 334000 + }, + { + "epoch": 44.54666666666667, + "grad_norm": 0.8367504477500916, + "learning_rate": 2.7736666666666665e-05, + "loss": 1.5918386840820313, + "step": 334100 + }, + { + "epoch": 44.56, + "grad_norm": 0.7728124260902405, + "learning_rate": 2.773e-05, + "loss": 1.5909431457519532, + "step": 334200 + }, + { + "epoch": 44.57333333333333, + "grad_norm": 0.8325085639953613, + "learning_rate": 2.7723333333333336e-05, + "loss": 1.592117156982422, + "step": 334300 + }, + { + "epoch": 44.586666666666666, + "grad_norm": 0.8074480295181274, + "learning_rate": 2.771666666666667e-05, + "loss": 1.5892124938964844, + "step": 334400 + }, + { + "epoch": 44.6, + "grad_norm": 0.8252527117729187, + "learning_rate": 2.7710000000000004e-05, + "loss": 1.5915934753417968, + "step": 334500 + }, + { + "epoch": 44.61333333333333, + "grad_norm": 0.8227205276489258, + "learning_rate": 2.7703333333333336e-05, + "loss": 1.5954025268554688, + "step": 334600 + }, + { + "epoch": 44.626666666666665, + "grad_norm": 0.7897677421569824, + "learning_rate": 2.7696666666666672e-05, + "loss": 1.595858154296875, + "step": 334700 + }, + { + "epoch": 44.64, + "grad_norm": 0.8313090801239014, + "learning_rate": 2.769e-05, + "loss": 1.5937057495117188, + "step": 334800 + }, + { + "epoch": 44.653333333333336, + "grad_norm": 0.8491702675819397, + "learning_rate": 2.7683333333333333e-05, + "loss": 1.5937522888183593, + "step": 334900 + }, + { + "epoch": 44.666666666666664, + "grad_norm": 0.8034929633140564, + "learning_rate": 2.767666666666667e-05, + "loss": 1.5955474853515625, + "step": 335000 + }, + { + "epoch": 44.68, + "grad_norm": 0.8023072481155396, + "learning_rate": 2.767e-05, + "loss": 1.5998284912109375, + "step": 335100 + }, + { + "epoch": 44.693333333333335, + "grad_norm": 0.8060296177864075, + "learning_rate": 2.7663333333333337e-05, + "loss": 1.5983045959472657, + "step": 335200 + }, + { + "epoch": 44.70666666666666, + "grad_norm": 0.8240456581115723, + "learning_rate": 2.765666666666667e-05, + "loss": 1.6016310119628907, + "step": 335300 + }, + { + "epoch": 44.72, + "grad_norm": 0.8086797595024109, + "learning_rate": 2.7650000000000005e-05, + "loss": 1.5979426574707032, + "step": 335400 + }, + { + "epoch": 44.733333333333334, + "grad_norm": 0.868865966796875, + "learning_rate": 2.7643333333333334e-05, + "loss": 1.6031364440917968, + "step": 335500 + }, + { + "epoch": 44.74666666666667, + "grad_norm": 0.8430706858634949, + "learning_rate": 2.7636733333333336e-05, + "loss": 1.599954833984375, + "step": 335600 + }, + { + "epoch": 44.76, + "grad_norm": 0.8253472447395325, + "learning_rate": 2.763006666666667e-05, + "loss": 1.5997967529296875, + "step": 335700 + }, + { + "epoch": 44.77333333333333, + "grad_norm": 0.8024996519088745, + "learning_rate": 2.76234e-05, + "loss": 1.603931884765625, + "step": 335800 + }, + { + "epoch": 44.78666666666667, + "grad_norm": 0.8097237348556519, + "learning_rate": 2.7616733333333333e-05, + "loss": 1.60475830078125, + "step": 335900 + }, + { + "epoch": 44.8, + "grad_norm": 0.7891868352890015, + "learning_rate": 2.761006666666667e-05, + "loss": 1.5993539428710937, + "step": 336000 + }, + { + "epoch": 44.81333333333333, + "grad_norm": 0.7946909070014954, + "learning_rate": 2.76034e-05, + "loss": 1.608636932373047, + "step": 336100 + }, + { + "epoch": 44.82666666666667, + "grad_norm": 0.8104386329650879, + "learning_rate": 2.7596733333333336e-05, + "loss": 1.6042922973632812, + "step": 336200 + }, + { + "epoch": 44.84, + "grad_norm": 0.8731896281242371, + "learning_rate": 2.759006666666667e-05, + "loss": 1.6097525024414063, + "step": 336300 + }, + { + "epoch": 44.85333333333333, + "grad_norm": 0.8121789693832397, + "learning_rate": 2.7583400000000004e-05, + "loss": 1.606430206298828, + "step": 336400 + }, + { + "epoch": 44.86666666666667, + "grad_norm": 0.8330267667770386, + "learning_rate": 2.7576733333333333e-05, + "loss": 1.6087510681152344, + "step": 336500 + }, + { + "epoch": 44.88, + "grad_norm": 0.852932333946228, + "learning_rate": 2.7570066666666665e-05, + "loss": 1.6065789794921874, + "step": 336600 + }, + { + "epoch": 44.89333333333333, + "grad_norm": 0.8132789134979248, + "learning_rate": 2.75634e-05, + "loss": 1.6074699401855468, + "step": 336700 + }, + { + "epoch": 44.906666666666666, + "grad_norm": 0.8489792943000793, + "learning_rate": 2.7556733333333333e-05, + "loss": 1.606990509033203, + "step": 336800 + }, + { + "epoch": 44.92, + "grad_norm": 0.8278707265853882, + "learning_rate": 2.755006666666667e-05, + "loss": 1.6092149353027343, + "step": 336900 + }, + { + "epoch": 44.93333333333333, + "grad_norm": 0.8030561804771423, + "learning_rate": 2.75434e-05, + "loss": 1.6118333435058594, + "step": 337000 + }, + { + "epoch": 44.946666666666665, + "grad_norm": 0.8444882035255432, + "learning_rate": 2.7536733333333337e-05, + "loss": 1.61545166015625, + "step": 337100 + }, + { + "epoch": 44.96, + "grad_norm": 0.7839025259017944, + "learning_rate": 2.753006666666667e-05, + "loss": 1.6124861145019531, + "step": 337200 + }, + { + "epoch": 44.973333333333336, + "grad_norm": 0.8304545283317566, + "learning_rate": 2.7523399999999998e-05, + "loss": 1.6095152282714844, + "step": 337300 + }, + { + "epoch": 44.986666666666665, + "grad_norm": 0.822806179523468, + "learning_rate": 2.7516733333333334e-05, + "loss": 1.6171923828125, + "step": 337400 + }, + { + "epoch": 45.0, + "grad_norm": 0.8254655003547668, + "learning_rate": 2.7510066666666666e-05, + "loss": 1.61357666015625, + "step": 337500 + }, + { + "epoch": 45.013333333333335, + "grad_norm": 0.75385981798172, + "learning_rate": 2.7503466666666665e-05, + "loss": 1.5345475769042969, + "step": 337600 + }, + { + "epoch": 45.026666666666664, + "grad_norm": 0.7878371477127075, + "learning_rate": 2.74968e-05, + "loss": 1.5335455322265625, + "step": 337700 + }, + { + "epoch": 45.04, + "grad_norm": 0.7791154384613037, + "learning_rate": 2.7490133333333333e-05, + "loss": 1.5394093322753906, + "step": 337800 + }, + { + "epoch": 45.053333333333335, + "grad_norm": 0.8024111390113831, + "learning_rate": 2.748346666666667e-05, + "loss": 1.5331953430175782, + "step": 337900 + }, + { + "epoch": 45.06666666666667, + "grad_norm": 0.8430346846580505, + "learning_rate": 2.74768e-05, + "loss": 1.5368072509765625, + "step": 338000 + }, + { + "epoch": 45.08, + "grad_norm": 0.8052778840065002, + "learning_rate": 2.7470133333333337e-05, + "loss": 1.546075439453125, + "step": 338100 + }, + { + "epoch": 45.093333333333334, + "grad_norm": 0.7933223843574524, + "learning_rate": 2.7463466666666672e-05, + "loss": 1.5412501525878906, + "step": 338200 + }, + { + "epoch": 45.10666666666667, + "grad_norm": 0.801228940486908, + "learning_rate": 2.7456799999999998e-05, + "loss": 1.539934844970703, + "step": 338300 + }, + { + "epoch": 45.12, + "grad_norm": 0.7986882328987122, + "learning_rate": 2.7450133333333333e-05, + "loss": 1.5405552673339844, + "step": 338400 + }, + { + "epoch": 45.13333333333333, + "grad_norm": 0.8069292306900024, + "learning_rate": 2.7443466666666666e-05, + "loss": 1.545841064453125, + "step": 338500 + }, + { + "epoch": 45.14666666666667, + "grad_norm": 0.7927032113075256, + "learning_rate": 2.74368e-05, + "loss": 1.5462718200683594, + "step": 338600 + }, + { + "epoch": 45.16, + "grad_norm": 0.7794001698493958, + "learning_rate": 2.7430133333333337e-05, + "loss": 1.5485234069824219, + "step": 338700 + }, + { + "epoch": 45.17333333333333, + "grad_norm": 0.7855547070503235, + "learning_rate": 2.742346666666667e-05, + "loss": 1.5519866943359375, + "step": 338800 + }, + { + "epoch": 45.18666666666667, + "grad_norm": 0.8333518505096436, + "learning_rate": 2.7416800000000005e-05, + "loss": 1.5467234802246095, + "step": 338900 + }, + { + "epoch": 45.2, + "grad_norm": 0.8590301275253296, + "learning_rate": 2.7410133333333334e-05, + "loss": 1.5527265930175782, + "step": 339000 + }, + { + "epoch": 45.21333333333333, + "grad_norm": 0.8133448958396912, + "learning_rate": 2.7403466666666666e-05, + "loss": 1.5531710815429687, + "step": 339100 + }, + { + "epoch": 45.22666666666667, + "grad_norm": 0.843085527420044, + "learning_rate": 2.7396800000000002e-05, + "loss": 1.552749786376953, + "step": 339200 + }, + { + "epoch": 45.24, + "grad_norm": 0.8271104693412781, + "learning_rate": 2.7390133333333334e-05, + "loss": 1.55497802734375, + "step": 339300 + }, + { + "epoch": 45.25333333333333, + "grad_norm": 0.7889156937599182, + "learning_rate": 2.738346666666667e-05, + "loss": 1.554407958984375, + "step": 339400 + }, + { + "epoch": 45.266666666666666, + "grad_norm": 0.8237720131874084, + "learning_rate": 2.7376800000000002e-05, + "loss": 1.5559963989257812, + "step": 339500 + }, + { + "epoch": 45.28, + "grad_norm": 0.8432164192199707, + "learning_rate": 2.7370133333333338e-05, + "loss": 1.5602865600585938, + "step": 339600 + }, + { + "epoch": 45.29333333333334, + "grad_norm": 0.8066620826721191, + "learning_rate": 2.7363533333333337e-05, + "loss": 1.5569775390625, + "step": 339700 + }, + { + "epoch": 45.306666666666665, + "grad_norm": 0.8251729011535645, + "learning_rate": 2.735686666666667e-05, + "loss": 1.5603398132324218, + "step": 339800 + }, + { + "epoch": 45.32, + "grad_norm": 0.8274789452552795, + "learning_rate": 2.7350200000000005e-05, + "loss": 1.5607125854492188, + "step": 339900 + }, + { + "epoch": 45.333333333333336, + "grad_norm": 0.7985981702804565, + "learning_rate": 2.7343533333333333e-05, + "loss": 1.5612689208984376, + "step": 340000 + }, + { + "epoch": 45.346666666666664, + "grad_norm": 0.8099194765090942, + "learning_rate": 2.7336866666666666e-05, + "loss": 1.5611070251464845, + "step": 340100 + }, + { + "epoch": 45.36, + "grad_norm": 0.7862045764923096, + "learning_rate": 2.73302e-05, + "loss": 1.561177978515625, + "step": 340200 + }, + { + "epoch": 45.373333333333335, + "grad_norm": 0.8008959293365479, + "learning_rate": 2.7323533333333334e-05, + "loss": 1.5632902526855468, + "step": 340300 + }, + { + "epoch": 45.38666666666666, + "grad_norm": 0.8084346055984497, + "learning_rate": 2.731686666666667e-05, + "loss": 1.56494384765625, + "step": 340400 + }, + { + "epoch": 45.4, + "grad_norm": 0.7950522303581238, + "learning_rate": 2.73102e-05, + "loss": 1.563892822265625, + "step": 340500 + }, + { + "epoch": 45.413333333333334, + "grad_norm": 0.8112916350364685, + "learning_rate": 2.7303533333333337e-05, + "loss": 1.5658737182617188, + "step": 340600 + }, + { + "epoch": 45.42666666666667, + "grad_norm": 0.8019904494285583, + "learning_rate": 2.729686666666667e-05, + "loss": 1.5665919494628906, + "step": 340700 + }, + { + "epoch": 45.44, + "grad_norm": 0.8604961037635803, + "learning_rate": 2.72902e-05, + "loss": 1.5618829345703125, + "step": 340800 + }, + { + "epoch": 45.45333333333333, + "grad_norm": 0.8297909498214722, + "learning_rate": 2.7283533333333334e-05, + "loss": 1.5690985107421875, + "step": 340900 + }, + { + "epoch": 45.46666666666667, + "grad_norm": 0.8290330171585083, + "learning_rate": 2.7276866666666666e-05, + "loss": 1.5725372314453125, + "step": 341000 + }, + { + "epoch": 45.48, + "grad_norm": 0.8196405172348022, + "learning_rate": 2.7270200000000002e-05, + "loss": 1.5716435241699218, + "step": 341100 + }, + { + "epoch": 45.49333333333333, + "grad_norm": 0.8516254425048828, + "learning_rate": 2.7263533333333334e-05, + "loss": 1.5708955383300782, + "step": 341200 + }, + { + "epoch": 45.50666666666667, + "grad_norm": 0.8195080161094666, + "learning_rate": 2.725686666666667e-05, + "loss": 1.5677909851074219, + "step": 341300 + }, + { + "epoch": 45.52, + "grad_norm": 0.8368141055107117, + "learning_rate": 2.7250200000000002e-05, + "loss": 1.5750044250488282, + "step": 341400 + }, + { + "epoch": 45.53333333333333, + "grad_norm": 0.8141370415687561, + "learning_rate": 2.724353333333333e-05, + "loss": 1.5710145568847655, + "step": 341500 + }, + { + "epoch": 45.54666666666667, + "grad_norm": 0.8688223361968994, + "learning_rate": 2.7236866666666667e-05, + "loss": 1.577767333984375, + "step": 341600 + }, + { + "epoch": 45.56, + "grad_norm": 0.8282235860824585, + "learning_rate": 2.723026666666667e-05, + "loss": 1.5752143859863281, + "step": 341700 + }, + { + "epoch": 45.57333333333333, + "grad_norm": 0.8183776140213013, + "learning_rate": 2.7223599999999998e-05, + "loss": 1.5708876037597657, + "step": 341800 + }, + { + "epoch": 45.586666666666666, + "grad_norm": 0.820489227771759, + "learning_rate": 2.7216933333333334e-05, + "loss": 1.5763885498046875, + "step": 341900 + }, + { + "epoch": 45.6, + "grad_norm": 0.7990655899047852, + "learning_rate": 2.7210266666666666e-05, + "loss": 1.579280242919922, + "step": 342000 + }, + { + "epoch": 45.61333333333333, + "grad_norm": 0.8262766003608704, + "learning_rate": 2.72036e-05, + "loss": 1.5800761413574218, + "step": 342100 + }, + { + "epoch": 45.626666666666665, + "grad_norm": 0.8294216990470886, + "learning_rate": 2.7196933333333334e-05, + "loss": 1.5776101684570312, + "step": 342200 + }, + { + "epoch": 45.64, + "grad_norm": 0.8527024984359741, + "learning_rate": 2.719026666666667e-05, + "loss": 1.5793777465820313, + "step": 342300 + }, + { + "epoch": 45.653333333333336, + "grad_norm": 0.8285980224609375, + "learning_rate": 2.7183600000000005e-05, + "loss": 1.5826039123535156, + "step": 342400 + }, + { + "epoch": 45.666666666666664, + "grad_norm": 0.7973678708076477, + "learning_rate": 2.717693333333333e-05, + "loss": 1.5825093078613282, + "step": 342500 + }, + { + "epoch": 45.68, + "grad_norm": 0.8386090993881226, + "learning_rate": 2.7170266666666666e-05, + "loss": 1.5819102478027345, + "step": 342600 + }, + { + "epoch": 45.693333333333335, + "grad_norm": 0.8596566915512085, + "learning_rate": 2.71636e-05, + "loss": 1.5824310302734375, + "step": 342700 + }, + { + "epoch": 45.70666666666666, + "grad_norm": 0.84074467420578, + "learning_rate": 2.7156933333333334e-05, + "loss": 1.5835606384277343, + "step": 342800 + }, + { + "epoch": 45.72, + "grad_norm": 0.8335156440734863, + "learning_rate": 2.715026666666667e-05, + "loss": 1.5831988525390626, + "step": 342900 + }, + { + "epoch": 45.733333333333334, + "grad_norm": 0.8545652031898499, + "learning_rate": 2.7143600000000002e-05, + "loss": 1.5821173095703125, + "step": 343000 + }, + { + "epoch": 45.74666666666667, + "grad_norm": 0.8127861022949219, + "learning_rate": 2.7136933333333338e-05, + "loss": 1.5852001953125, + "step": 343100 + }, + { + "epoch": 45.76, + "grad_norm": 0.8396148085594177, + "learning_rate": 2.713026666666667e-05, + "loss": 1.5899464416503906, + "step": 343200 + }, + { + "epoch": 45.77333333333333, + "grad_norm": 0.8626675605773926, + "learning_rate": 2.71236e-05, + "loss": 1.5838290405273439, + "step": 343300 + }, + { + "epoch": 45.78666666666667, + "grad_norm": 0.8253298997879028, + "learning_rate": 2.7116933333333335e-05, + "loss": 1.5856344604492187, + "step": 343400 + }, + { + "epoch": 45.8, + "grad_norm": 0.8361122012138367, + "learning_rate": 2.7110266666666667e-05, + "loss": 1.5906475830078124, + "step": 343500 + }, + { + "epoch": 45.81333333333333, + "grad_norm": 0.7877110242843628, + "learning_rate": 2.7103600000000003e-05, + "loss": 1.5869761657714845, + "step": 343600 + }, + { + "epoch": 45.82666666666667, + "grad_norm": 0.8173111081123352, + "learning_rate": 2.7097e-05, + "loss": 1.5882725524902344, + "step": 343700 + }, + { + "epoch": 45.84, + "grad_norm": 0.8360334038734436, + "learning_rate": 2.7090333333333334e-05, + "loss": 1.5957424926757813, + "step": 343800 + }, + { + "epoch": 45.85333333333333, + "grad_norm": 0.8417925834655762, + "learning_rate": 2.708366666666667e-05, + "loss": 1.589451446533203, + "step": 343900 + }, + { + "epoch": 45.86666666666667, + "grad_norm": 0.7977088689804077, + "learning_rate": 2.7077000000000002e-05, + "loss": 1.5911802673339843, + "step": 344000 + }, + { + "epoch": 45.88, + "grad_norm": 0.8282347321510315, + "learning_rate": 2.7070333333333337e-05, + "loss": 1.5962525939941405, + "step": 344100 + }, + { + "epoch": 45.89333333333333, + "grad_norm": 0.8380323648452759, + "learning_rate": 2.706366666666667e-05, + "loss": 1.5943394470214844, + "step": 344200 + }, + { + "epoch": 45.906666666666666, + "grad_norm": 0.8266421556472778, + "learning_rate": 2.7057e-05, + "loss": 1.5934329223632813, + "step": 344300 + }, + { + "epoch": 45.92, + "grad_norm": 0.8296067118644714, + "learning_rate": 2.7050333333333334e-05, + "loss": 1.5951394653320312, + "step": 344400 + }, + { + "epoch": 45.93333333333333, + "grad_norm": 0.8238825798034668, + "learning_rate": 2.7043666666666667e-05, + "loss": 1.5956932067871095, + "step": 344500 + }, + { + "epoch": 45.946666666666665, + "grad_norm": 0.8402311205863953, + "learning_rate": 2.7037000000000002e-05, + "loss": 1.5972817993164063, + "step": 344600 + }, + { + "epoch": 45.96, + "grad_norm": 0.819067656993866, + "learning_rate": 2.7030333333333334e-05, + "loss": 1.5947479248046874, + "step": 344700 + }, + { + "epoch": 45.973333333333336, + "grad_norm": 0.8134846687316895, + "learning_rate": 2.702366666666667e-05, + "loss": 1.5938349914550782, + "step": 344800 + }, + { + "epoch": 45.986666666666665, + "grad_norm": 0.8139092326164246, + "learning_rate": 2.7017000000000002e-05, + "loss": 1.5983534240722657, + "step": 344900 + }, + { + "epoch": 46.0, + "grad_norm": 0.845569908618927, + "learning_rate": 2.701033333333333e-05, + "loss": 1.5993333435058594, + "step": 345000 + }, + { + "epoch": 46.013333333333335, + "grad_norm": 0.8060302138328552, + "learning_rate": 2.7003666666666667e-05, + "loss": 1.5197933959960936, + "step": 345100 + }, + { + "epoch": 46.026666666666664, + "grad_norm": 0.8016753196716309, + "learning_rate": 2.6997e-05, + "loss": 1.5163864135742187, + "step": 345200 + }, + { + "epoch": 46.04, + "grad_norm": 0.824266791343689, + "learning_rate": 2.6990333333333335e-05, + "loss": 1.5196403503417968, + "step": 345300 + }, + { + "epoch": 46.053333333333335, + "grad_norm": 0.831349790096283, + "learning_rate": 2.6983666666666667e-05, + "loss": 1.5196861267089843, + "step": 345400 + }, + { + "epoch": 46.06666666666667, + "grad_norm": 0.794564425945282, + "learning_rate": 2.6977000000000003e-05, + "loss": 1.5226402282714844, + "step": 345500 + }, + { + "epoch": 46.08, + "grad_norm": 0.864202618598938, + "learning_rate": 2.6970333333333335e-05, + "loss": 1.52418701171875, + "step": 345600 + }, + { + "epoch": 46.093333333333334, + "grad_norm": 0.8275471925735474, + "learning_rate": 2.696366666666667e-05, + "loss": 1.5281210327148438, + "step": 345700 + }, + { + "epoch": 46.10666666666667, + "grad_norm": 0.8034723401069641, + "learning_rate": 2.695706666666667e-05, + "loss": 1.5245565795898437, + "step": 345800 + }, + { + "epoch": 46.12, + "grad_norm": 0.8259097337722778, + "learning_rate": 2.6950400000000002e-05, + "loss": 1.531691436767578, + "step": 345900 + }, + { + "epoch": 46.13333333333333, + "grad_norm": 0.8168667554855347, + "learning_rate": 2.694373333333333e-05, + "loss": 1.5279510498046875, + "step": 346000 + }, + { + "epoch": 46.14666666666667, + "grad_norm": 0.8043650984764099, + "learning_rate": 2.6937066666666667e-05, + "loss": 1.530906219482422, + "step": 346100 + }, + { + "epoch": 46.16, + "grad_norm": 0.7977316379547119, + "learning_rate": 2.69304e-05, + "loss": 1.5317568969726563, + "step": 346200 + }, + { + "epoch": 46.17333333333333, + "grad_norm": 0.8600273728370667, + "learning_rate": 2.6923733333333334e-05, + "loss": 1.5322166442871095, + "step": 346300 + }, + { + "epoch": 46.18666666666667, + "grad_norm": 0.8048485517501831, + "learning_rate": 2.6917066666666667e-05, + "loss": 1.5342538452148438, + "step": 346400 + }, + { + "epoch": 46.2, + "grad_norm": 0.8028460144996643, + "learning_rate": 2.6910400000000002e-05, + "loss": 1.538252716064453, + "step": 346500 + }, + { + "epoch": 46.21333333333333, + "grad_norm": 0.8104482293128967, + "learning_rate": 2.6903733333333335e-05, + "loss": 1.537858123779297, + "step": 346600 + }, + { + "epoch": 46.22666666666667, + "grad_norm": 0.8299853205680847, + "learning_rate": 2.689706666666667e-05, + "loss": 1.5331761169433593, + "step": 346700 + }, + { + "epoch": 46.24, + "grad_norm": 0.8089656829833984, + "learning_rate": 2.68904e-05, + "loss": 1.5343820190429687, + "step": 346800 + }, + { + "epoch": 46.25333333333333, + "grad_norm": 0.8413048982620239, + "learning_rate": 2.688373333333333e-05, + "loss": 1.5428427124023438, + "step": 346900 + }, + { + "epoch": 46.266666666666666, + "grad_norm": 0.8163671493530273, + "learning_rate": 2.6877066666666667e-05, + "loss": 1.5400894165039063, + "step": 347000 + }, + { + "epoch": 46.28, + "grad_norm": 0.8367263674736023, + "learning_rate": 2.6870400000000003e-05, + "loss": 1.5393385314941406, + "step": 347100 + }, + { + "epoch": 46.29333333333334, + "grad_norm": 0.8091789484024048, + "learning_rate": 2.6863733333333335e-05, + "loss": 1.5403530883789063, + "step": 347200 + }, + { + "epoch": 46.306666666666665, + "grad_norm": 0.7646798491477966, + "learning_rate": 2.685706666666667e-05, + "loss": 1.5441659545898438, + "step": 347300 + }, + { + "epoch": 46.32, + "grad_norm": 0.8175348043441772, + "learning_rate": 2.6850400000000003e-05, + "loss": 1.5414935302734376, + "step": 347400 + }, + { + "epoch": 46.333333333333336, + "grad_norm": 0.8292933702468872, + "learning_rate": 2.6843733333333332e-05, + "loss": 1.5435244750976562, + "step": 347500 + }, + { + "epoch": 46.346666666666664, + "grad_norm": 0.8154855966567993, + "learning_rate": 2.6837066666666668e-05, + "loss": 1.5483761596679688, + "step": 347600 + }, + { + "epoch": 46.36, + "grad_norm": 0.7751580476760864, + "learning_rate": 2.68304e-05, + "loss": 1.5469662475585937, + "step": 347700 + }, + { + "epoch": 46.373333333333335, + "grad_norm": 0.8045754432678223, + "learning_rate": 2.6823733333333335e-05, + "loss": 1.5475198364257812, + "step": 347800 + }, + { + "epoch": 46.38666666666666, + "grad_norm": 0.8215160965919495, + "learning_rate": 2.6817133333333335e-05, + "loss": 1.545174560546875, + "step": 347900 + }, + { + "epoch": 46.4, + "grad_norm": 0.8201582431793213, + "learning_rate": 2.6810466666666667e-05, + "loss": 1.548802490234375, + "step": 348000 + }, + { + "epoch": 46.413333333333334, + "grad_norm": 0.8398956060409546, + "learning_rate": 2.6803800000000002e-05, + "loss": 1.5487840270996094, + "step": 348100 + }, + { + "epoch": 46.42666666666667, + "grad_norm": 0.8224796652793884, + "learning_rate": 2.6797133333333335e-05, + "loss": 1.549246826171875, + "step": 348200 + }, + { + "epoch": 46.44, + "grad_norm": 0.8594797849655151, + "learning_rate": 2.679046666666667e-05, + "loss": 1.5520086669921875, + "step": 348300 + }, + { + "epoch": 46.45333333333333, + "grad_norm": 0.8207729458808899, + "learning_rate": 2.6783800000000003e-05, + "loss": 1.5540689086914063, + "step": 348400 + }, + { + "epoch": 46.46666666666667, + "grad_norm": 0.8314641714096069, + "learning_rate": 2.677713333333333e-05, + "loss": 1.5520907592773439, + "step": 348500 + }, + { + "epoch": 46.48, + "grad_norm": 0.8217018246650696, + "learning_rate": 2.6770466666666667e-05, + "loss": 1.5557980346679687, + "step": 348600 + }, + { + "epoch": 46.49333333333333, + "grad_norm": 0.8059836030006409, + "learning_rate": 2.67638e-05, + "loss": 1.5601199340820313, + "step": 348700 + }, + { + "epoch": 46.50666666666667, + "grad_norm": 0.8552286028862, + "learning_rate": 2.6757133333333335e-05, + "loss": 1.5559910583496093, + "step": 348800 + }, + { + "epoch": 46.52, + "grad_norm": 0.8301519155502319, + "learning_rate": 2.6750466666666667e-05, + "loss": 1.5562776184082032, + "step": 348900 + }, + { + "epoch": 46.53333333333333, + "grad_norm": 0.8431631326675415, + "learning_rate": 2.6743800000000003e-05, + "loss": 1.5593917846679688, + "step": 349000 + }, + { + "epoch": 46.54666666666667, + "grad_norm": 0.8206700682640076, + "learning_rate": 2.6737133333333335e-05, + "loss": 1.5606121826171875, + "step": 349100 + }, + { + "epoch": 46.56, + "grad_norm": 0.8263945579528809, + "learning_rate": 2.673046666666667e-05, + "loss": 1.5540763854980468, + "step": 349200 + }, + { + "epoch": 46.57333333333333, + "grad_norm": 0.8618150949478149, + "learning_rate": 2.67238e-05, + "loss": 1.5589299011230469, + "step": 349300 + }, + { + "epoch": 46.586666666666666, + "grad_norm": 0.8470207452774048, + "learning_rate": 2.6717133333333332e-05, + "loss": 1.561882781982422, + "step": 349400 + }, + { + "epoch": 46.6, + "grad_norm": 0.8224665522575378, + "learning_rate": 2.6710466666666668e-05, + "loss": 1.5630607604980469, + "step": 349500 + }, + { + "epoch": 46.61333333333333, + "grad_norm": 0.8316152691841125, + "learning_rate": 2.67038e-05, + "loss": 1.55953369140625, + "step": 349600 + }, + { + "epoch": 46.626666666666665, + "grad_norm": 0.8321995139122009, + "learning_rate": 2.6697133333333336e-05, + "loss": 1.5658473205566406, + "step": 349700 + }, + { + "epoch": 46.64, + "grad_norm": 0.8178289532661438, + "learning_rate": 2.6690466666666668e-05, + "loss": 1.5612675476074218, + "step": 349800 + }, + { + "epoch": 46.653333333333336, + "grad_norm": 0.7792300581932068, + "learning_rate": 2.6683800000000004e-05, + "loss": 1.5632437133789063, + "step": 349900 + }, + { + "epoch": 46.666666666666664, + "grad_norm": 0.7988590002059937, + "learning_rate": 2.6677133333333336e-05, + "loss": 1.5675028991699218, + "step": 350000 + }, + { + "epoch": 46.68, + "grad_norm": 0.8445242643356323, + "learning_rate": 2.6670533333333335e-05, + "loss": 1.5669676208496093, + "step": 350100 + }, + { + "epoch": 46.693333333333335, + "grad_norm": 0.8198060989379883, + "learning_rate": 2.666386666666667e-05, + "loss": 1.5665971374511718, + "step": 350200 + }, + { + "epoch": 46.70666666666666, + "grad_norm": 0.8664674162864685, + "learning_rate": 2.66572e-05, + "loss": 1.5654718017578124, + "step": 350300 + }, + { + "epoch": 46.72, + "grad_norm": 0.819105863571167, + "learning_rate": 2.6650533333333332e-05, + "loss": 1.567599334716797, + "step": 350400 + }, + { + "epoch": 46.733333333333334, + "grad_norm": 0.8594771027565002, + "learning_rate": 2.6643866666666667e-05, + "loss": 1.5679061889648438, + "step": 350500 + }, + { + "epoch": 46.74666666666667, + "grad_norm": 0.8125904202461243, + "learning_rate": 2.66372e-05, + "loss": 1.5722848510742187, + "step": 350600 + }, + { + "epoch": 46.76, + "grad_norm": 0.8537176847457886, + "learning_rate": 2.6630533333333335e-05, + "loss": 1.5686172485351562, + "step": 350700 + }, + { + "epoch": 46.77333333333333, + "grad_norm": 0.8427459001541138, + "learning_rate": 2.6623866666666668e-05, + "loss": 1.571588592529297, + "step": 350800 + }, + { + "epoch": 46.78666666666667, + "grad_norm": 0.827638566493988, + "learning_rate": 2.6617200000000003e-05, + "loss": 1.5718766784667968, + "step": 350900 + }, + { + "epoch": 46.8, + "grad_norm": 0.8735706806182861, + "learning_rate": 2.661053333333334e-05, + "loss": 1.5722669982910156, + "step": 351000 + }, + { + "epoch": 46.81333333333333, + "grad_norm": 0.8201860785484314, + "learning_rate": 2.6603866666666664e-05, + "loss": 1.5740573120117187, + "step": 351100 + }, + { + "epoch": 46.82666666666667, + "grad_norm": 0.8265976309776306, + "learning_rate": 2.65972e-05, + "loss": 1.5777357482910157, + "step": 351200 + }, + { + "epoch": 46.84, + "grad_norm": 0.8381431698799133, + "learning_rate": 2.6590533333333332e-05, + "loss": 1.5748936462402343, + "step": 351300 + }, + { + "epoch": 46.85333333333333, + "grad_norm": 0.8063822388648987, + "learning_rate": 2.6583866666666668e-05, + "loss": 1.5776918029785156, + "step": 351400 + }, + { + "epoch": 46.86666666666667, + "grad_norm": 0.831693172454834, + "learning_rate": 2.6577200000000004e-05, + "loss": 1.5761140441894532, + "step": 351500 + }, + { + "epoch": 46.88, + "grad_norm": 0.8381946682929993, + "learning_rate": 2.6570533333333336e-05, + "loss": 1.5803857421875, + "step": 351600 + }, + { + "epoch": 46.89333333333333, + "grad_norm": 0.8485809564590454, + "learning_rate": 2.656386666666667e-05, + "loss": 1.5759907531738282, + "step": 351700 + }, + { + "epoch": 46.906666666666666, + "grad_norm": 0.8247084617614746, + "learning_rate": 2.6557199999999997e-05, + "loss": 1.5766317749023437, + "step": 351800 + }, + { + "epoch": 46.92, + "grad_norm": 0.8473241925239563, + "learning_rate": 2.6550533333333333e-05, + "loss": 1.5800099182128906, + "step": 351900 + }, + { + "epoch": 46.93333333333333, + "grad_norm": 0.8938542604446411, + "learning_rate": 2.654386666666667e-05, + "loss": 1.575980224609375, + "step": 352000 + }, + { + "epoch": 46.946666666666665, + "grad_norm": 0.8447518348693848, + "learning_rate": 2.6537266666666667e-05, + "loss": 1.5792408752441407, + "step": 352100 + }, + { + "epoch": 46.96, + "grad_norm": 0.8477917313575745, + "learning_rate": 2.65306e-05, + "loss": 1.5817056274414063, + "step": 352200 + }, + { + "epoch": 46.973333333333336, + "grad_norm": 0.8412907123565674, + "learning_rate": 2.6523933333333335e-05, + "loss": 1.5827552795410156, + "step": 352300 + }, + { + "epoch": 46.986666666666665, + "grad_norm": 0.8627504706382751, + "learning_rate": 2.6517266666666668e-05, + "loss": 1.5811537170410157, + "step": 352400 + }, + { + "epoch": 47.0, + "grad_norm": 0.8609046936035156, + "learning_rate": 2.6510600000000003e-05, + "loss": 1.5816255187988282, + "step": 352500 + }, + { + "epoch": 47.013333333333335, + "grad_norm": 0.7538483142852783, + "learning_rate": 2.6503933333333336e-05, + "loss": 1.5079031372070313, + "step": 352600 + }, + { + "epoch": 47.026666666666664, + "grad_norm": 0.813092827796936, + "learning_rate": 2.649726666666667e-05, + "loss": 1.5056570434570313, + "step": 352700 + }, + { + "epoch": 47.04, + "grad_norm": 0.8041110634803772, + "learning_rate": 2.64906e-05, + "loss": 1.5061376953125, + "step": 352800 + }, + { + "epoch": 47.053333333333335, + "grad_norm": 0.8193392753601074, + "learning_rate": 2.6483933333333332e-05, + "loss": 1.5078268432617188, + "step": 352900 + }, + { + "epoch": 47.06666666666667, + "grad_norm": 0.8413985371589661, + "learning_rate": 2.6477266666666668e-05, + "loss": 1.5114471435546875, + "step": 353000 + }, + { + "epoch": 47.08, + "grad_norm": 0.8073115348815918, + "learning_rate": 2.64706e-05, + "loss": 1.5135585021972657, + "step": 353100 + }, + { + "epoch": 47.093333333333334, + "grad_norm": 0.7779039740562439, + "learning_rate": 2.6463933333333336e-05, + "loss": 1.5116209411621093, + "step": 353200 + }, + { + "epoch": 47.10666666666667, + "grad_norm": 0.807697594165802, + "learning_rate": 2.6457266666666668e-05, + "loss": 1.517572479248047, + "step": 353300 + }, + { + "epoch": 47.12, + "grad_norm": 0.8400974869728088, + "learning_rate": 2.6450600000000004e-05, + "loss": 1.5178854370117187, + "step": 353400 + }, + { + "epoch": 47.13333333333333, + "grad_norm": 0.8194504976272583, + "learning_rate": 2.6443933333333336e-05, + "loss": 1.5146188354492187, + "step": 353500 + }, + { + "epoch": 47.14666666666667, + "grad_norm": 0.8018361926078796, + "learning_rate": 2.6437266666666665e-05, + "loss": 1.5214445495605469, + "step": 353600 + }, + { + "epoch": 47.16, + "grad_norm": 0.8167159557342529, + "learning_rate": 2.64306e-05, + "loss": 1.5156454467773437, + "step": 353700 + }, + { + "epoch": 47.17333333333333, + "grad_norm": 0.8039659857749939, + "learning_rate": 2.6423933333333333e-05, + "loss": 1.5151275634765624, + "step": 353800 + }, + { + "epoch": 47.18666666666667, + "grad_norm": 0.8017700910568237, + "learning_rate": 2.641726666666667e-05, + "loss": 1.5202009582519531, + "step": 353900 + }, + { + "epoch": 47.2, + "grad_norm": 0.7832367420196533, + "learning_rate": 2.64106e-05, + "loss": 1.519759521484375, + "step": 354000 + }, + { + "epoch": 47.21333333333333, + "grad_norm": 0.8337007761001587, + "learning_rate": 2.6403933333333337e-05, + "loss": 1.5221978759765624, + "step": 354100 + }, + { + "epoch": 47.22666666666667, + "grad_norm": 0.7870599031448364, + "learning_rate": 2.639726666666667e-05, + "loss": 1.523798065185547, + "step": 354200 + }, + { + "epoch": 47.24, + "grad_norm": 0.8411582708358765, + "learning_rate": 2.6390666666666668e-05, + "loss": 1.5253703308105468, + "step": 354300 + }, + { + "epoch": 47.25333333333333, + "grad_norm": 0.8832390308380127, + "learning_rate": 2.6384000000000004e-05, + "loss": 1.5262484741210938, + "step": 354400 + }, + { + "epoch": 47.266666666666666, + "grad_norm": 0.7941514253616333, + "learning_rate": 2.6377333333333336e-05, + "loss": 1.525479736328125, + "step": 354500 + }, + { + "epoch": 47.28, + "grad_norm": 0.7702394127845764, + "learning_rate": 2.6370666666666665e-05, + "loss": 1.5219073486328125, + "step": 354600 + }, + { + "epoch": 47.29333333333334, + "grad_norm": 0.8129458427429199, + "learning_rate": 2.6364e-05, + "loss": 1.5250271606445311, + "step": 354700 + }, + { + "epoch": 47.306666666666665, + "grad_norm": 0.8214989304542542, + "learning_rate": 2.6357333333333333e-05, + "loss": 1.5251333618164062, + "step": 354800 + }, + { + "epoch": 47.32, + "grad_norm": 0.7877672910690308, + "learning_rate": 2.6350666666666668e-05, + "loss": 1.5243698120117188, + "step": 354900 + }, + { + "epoch": 47.333333333333336, + "grad_norm": 0.8471348285675049, + "learning_rate": 2.6344e-05, + "loss": 1.5322015380859375, + "step": 355000 + }, + { + "epoch": 47.346666666666664, + "grad_norm": 0.8431065082550049, + "learning_rate": 2.6337333333333336e-05, + "loss": 1.530186767578125, + "step": 355100 + }, + { + "epoch": 47.36, + "grad_norm": 0.8179681897163391, + "learning_rate": 2.6330666666666672e-05, + "loss": 1.5326658630371093, + "step": 355200 + }, + { + "epoch": 47.373333333333335, + "grad_norm": 0.8299217820167542, + "learning_rate": 2.6323999999999997e-05, + "loss": 1.5337423706054687, + "step": 355300 + }, + { + "epoch": 47.38666666666666, + "grad_norm": 0.7992455363273621, + "learning_rate": 2.6317333333333333e-05, + "loss": 1.5334547424316407, + "step": 355400 + }, + { + "epoch": 47.4, + "grad_norm": 0.8198468089103699, + "learning_rate": 2.6310666666666665e-05, + "loss": 1.5330128479003906, + "step": 355500 + }, + { + "epoch": 47.413333333333334, + "grad_norm": 0.8227736353874207, + "learning_rate": 2.6304e-05, + "loss": 1.5363392639160156, + "step": 355600 + }, + { + "epoch": 47.42666666666667, + "grad_norm": 0.8037164807319641, + "learning_rate": 2.6297333333333337e-05, + "loss": 1.5415556335449219, + "step": 355700 + }, + { + "epoch": 47.44, + "grad_norm": 0.8218553066253662, + "learning_rate": 2.629066666666667e-05, + "loss": 1.536182861328125, + "step": 355800 + }, + { + "epoch": 47.45333333333333, + "grad_norm": 0.8205154538154602, + "learning_rate": 2.6284000000000004e-05, + "loss": 1.5415779113769532, + "step": 355900 + }, + { + "epoch": 47.46666666666667, + "grad_norm": 0.8422571420669556, + "learning_rate": 2.6277333333333337e-05, + "loss": 1.5379583740234375, + "step": 356000 + }, + { + "epoch": 47.48, + "grad_norm": 0.8234130144119263, + "learning_rate": 2.6270666666666666e-05, + "loss": 1.538638153076172, + "step": 356100 + }, + { + "epoch": 47.49333333333333, + "grad_norm": 0.8543081879615784, + "learning_rate": 2.6264e-05, + "loss": 1.5433369445800782, + "step": 356200 + }, + { + "epoch": 47.50666666666667, + "grad_norm": 0.8039753437042236, + "learning_rate": 2.6257399999999997e-05, + "loss": 1.5409135437011718, + "step": 356300 + }, + { + "epoch": 47.52, + "grad_norm": 0.807433545589447, + "learning_rate": 2.6250733333333333e-05, + "loss": 1.538723907470703, + "step": 356400 + }, + { + "epoch": 47.53333333333333, + "grad_norm": 0.829760730266571, + "learning_rate": 2.6244066666666668e-05, + "loss": 1.5394581604003905, + "step": 356500 + }, + { + "epoch": 47.54666666666667, + "grad_norm": 0.83366858959198, + "learning_rate": 2.62374e-05, + "loss": 1.545363311767578, + "step": 356600 + }, + { + "epoch": 47.56, + "grad_norm": 0.8441088795661926, + "learning_rate": 2.6230733333333336e-05, + "loss": 1.5482498168945313, + "step": 356700 + }, + { + "epoch": 47.57333333333333, + "grad_norm": 0.8056532740592957, + "learning_rate": 2.622406666666667e-05, + "loss": 1.5447674560546876, + "step": 356800 + }, + { + "epoch": 47.586666666666666, + "grad_norm": 0.8894994258880615, + "learning_rate": 2.6217400000000004e-05, + "loss": 1.5502810668945313, + "step": 356900 + }, + { + "epoch": 47.6, + "grad_norm": 0.8194480538368225, + "learning_rate": 2.6210733333333336e-05, + "loss": 1.5432069396972656, + "step": 357000 + }, + { + "epoch": 47.61333333333333, + "grad_norm": 0.8140724897384644, + "learning_rate": 2.6204066666666665e-05, + "loss": 1.5478276062011718, + "step": 357100 + }, + { + "epoch": 47.626666666666665, + "grad_norm": 0.8195116519927979, + "learning_rate": 2.61974e-05, + "loss": 1.544815673828125, + "step": 357200 + }, + { + "epoch": 47.64, + "grad_norm": 0.8061419725418091, + "learning_rate": 2.6190733333333333e-05, + "loss": 1.5499363708496094, + "step": 357300 + }, + { + "epoch": 47.653333333333336, + "grad_norm": 0.8833538293838501, + "learning_rate": 2.618406666666667e-05, + "loss": 1.5492486572265625, + "step": 357400 + }, + { + "epoch": 47.666666666666664, + "grad_norm": 0.817891001701355, + "learning_rate": 2.61774e-05, + "loss": 1.5491177368164062, + "step": 357500 + }, + { + "epoch": 47.68, + "grad_norm": 0.8547759652137756, + "learning_rate": 2.6170733333333337e-05, + "loss": 1.5468995666503906, + "step": 357600 + }, + { + "epoch": 47.693333333333335, + "grad_norm": 0.8713561296463013, + "learning_rate": 2.616406666666667e-05, + "loss": 1.5532452392578124, + "step": 357700 + }, + { + "epoch": 47.70666666666666, + "grad_norm": 0.8616589307785034, + "learning_rate": 2.6157399999999998e-05, + "loss": 1.5543402099609376, + "step": 357800 + }, + { + "epoch": 47.72, + "grad_norm": 0.8249148726463318, + "learning_rate": 2.6150733333333334e-05, + "loss": 1.5558518981933593, + "step": 357900 + }, + { + "epoch": 47.733333333333334, + "grad_norm": 0.8403042554855347, + "learning_rate": 2.6144066666666666e-05, + "loss": 1.55149169921875, + "step": 358000 + }, + { + "epoch": 47.74666666666667, + "grad_norm": 0.8018736839294434, + "learning_rate": 2.61374e-05, + "loss": 1.5553018188476562, + "step": 358100 + }, + { + "epoch": 47.76, + "grad_norm": 0.8302009701728821, + "learning_rate": 2.6130733333333334e-05, + "loss": 1.5563357543945313, + "step": 358200 + }, + { + "epoch": 47.77333333333333, + "grad_norm": 0.8318833708763123, + "learning_rate": 2.6124133333333333e-05, + "loss": 1.5607223510742188, + "step": 358300 + }, + { + "epoch": 47.78666666666667, + "grad_norm": 0.8090811967849731, + "learning_rate": 2.611746666666667e-05, + "loss": 1.5559880065917968, + "step": 358400 + }, + { + "epoch": 47.8, + "grad_norm": 0.868520975112915, + "learning_rate": 2.61108e-05, + "loss": 1.55770751953125, + "step": 358500 + }, + { + "epoch": 47.81333333333333, + "grad_norm": 0.8197623491287231, + "learning_rate": 2.6104133333333336e-05, + "loss": 1.558822021484375, + "step": 358600 + }, + { + "epoch": 47.82666666666667, + "grad_norm": 0.8163467645645142, + "learning_rate": 2.609746666666667e-05, + "loss": 1.557568359375, + "step": 358700 + }, + { + "epoch": 47.84, + "grad_norm": 0.7725224494934082, + "learning_rate": 2.6090799999999998e-05, + "loss": 1.5549420166015624, + "step": 358800 + }, + { + "epoch": 47.85333333333333, + "grad_norm": 0.8405675292015076, + "learning_rate": 2.6084133333333333e-05, + "loss": 1.5608193969726563, + "step": 358900 + }, + { + "epoch": 47.86666666666667, + "grad_norm": 0.8494597673416138, + "learning_rate": 2.6077466666666666e-05, + "loss": 1.5580606079101562, + "step": 359000 + }, + { + "epoch": 47.88, + "grad_norm": 0.8636260032653809, + "learning_rate": 2.60708e-05, + "loss": 1.5591242980957032, + "step": 359100 + }, + { + "epoch": 47.89333333333333, + "grad_norm": 0.8216843008995056, + "learning_rate": 2.6064133333333333e-05, + "loss": 1.5577593994140626, + "step": 359200 + }, + { + "epoch": 47.906666666666666, + "grad_norm": 0.8437257409095764, + "learning_rate": 2.605746666666667e-05, + "loss": 1.5638467407226562, + "step": 359300 + }, + { + "epoch": 47.92, + "grad_norm": 0.8391488790512085, + "learning_rate": 2.60508e-05, + "loss": 1.559764404296875, + "step": 359400 + }, + { + "epoch": 47.93333333333333, + "grad_norm": 0.8953635096549988, + "learning_rate": 2.6044133333333337e-05, + "loss": 1.5598916625976562, + "step": 359500 + }, + { + "epoch": 47.946666666666665, + "grad_norm": 0.8865219950675964, + "learning_rate": 2.6037466666666666e-05, + "loss": 1.56525390625, + "step": 359600 + }, + { + "epoch": 47.96, + "grad_norm": 0.8346757888793945, + "learning_rate": 2.6030799999999998e-05, + "loss": 1.5669119262695312, + "step": 359700 + }, + { + "epoch": 47.973333333333336, + "grad_norm": 0.7953504920005798, + "learning_rate": 2.6024133333333334e-05, + "loss": 1.5616644287109376, + "step": 359800 + }, + { + "epoch": 47.986666666666665, + "grad_norm": 0.8168767094612122, + "learning_rate": 2.6017466666666666e-05, + "loss": 1.5720118713378906, + "step": 359900 + }, + { + "epoch": 48.0, + "grad_norm": 0.874919593334198, + "learning_rate": 2.6010800000000002e-05, + "loss": 1.5705772399902345, + "step": 360000 + }, + { + "epoch": 48.013333333333335, + "grad_norm": 0.8366668820381165, + "learning_rate": 2.6004133333333337e-05, + "loss": 1.4951602172851564, + "step": 360100 + }, + { + "epoch": 48.026666666666664, + "grad_norm": 0.8061423897743225, + "learning_rate": 2.599746666666667e-05, + "loss": 1.49366455078125, + "step": 360200 + }, + { + "epoch": 48.04, + "grad_norm": 0.8062233328819275, + "learning_rate": 2.59908e-05, + "loss": 1.4919319152832031, + "step": 360300 + }, + { + "epoch": 48.053333333333335, + "grad_norm": 0.7820529341697693, + "learning_rate": 2.5984200000000004e-05, + "loss": 1.4933494567871093, + "step": 360400 + }, + { + "epoch": 48.06666666666667, + "grad_norm": 0.7874485850334167, + "learning_rate": 2.5977533333333337e-05, + "loss": 1.4942898559570312, + "step": 360500 + }, + { + "epoch": 48.08, + "grad_norm": 0.8219860792160034, + "learning_rate": 2.5970866666666666e-05, + "loss": 1.4994293212890626, + "step": 360600 + }, + { + "epoch": 48.093333333333334, + "grad_norm": 0.806149959564209, + "learning_rate": 2.59642e-05, + "loss": 1.5014764404296874, + "step": 360700 + }, + { + "epoch": 48.10666666666667, + "grad_norm": 0.8026537895202637, + "learning_rate": 2.5957533333333333e-05, + "loss": 1.5005511474609374, + "step": 360800 + }, + { + "epoch": 48.12, + "grad_norm": 0.803657591342926, + "learning_rate": 2.595086666666667e-05, + "loss": 1.500188446044922, + "step": 360900 + }, + { + "epoch": 48.13333333333333, + "grad_norm": 0.8763360977172852, + "learning_rate": 2.59442e-05, + "loss": 1.5009043884277344, + "step": 361000 + }, + { + "epoch": 48.14666666666667, + "grad_norm": 0.7982499003410339, + "learning_rate": 2.5937533333333337e-05, + "loss": 1.5045884704589845, + "step": 361100 + }, + { + "epoch": 48.16, + "grad_norm": 0.8596701622009277, + "learning_rate": 2.593086666666667e-05, + "loss": 1.5040025329589843, + "step": 361200 + }, + { + "epoch": 48.17333333333333, + "grad_norm": 0.8158277869224548, + "learning_rate": 2.5924199999999998e-05, + "loss": 1.5009864807128905, + "step": 361300 + }, + { + "epoch": 48.18666666666667, + "grad_norm": 0.8603137135505676, + "learning_rate": 2.5917533333333334e-05, + "loss": 1.5051220703125, + "step": 361400 + }, + { + "epoch": 48.2, + "grad_norm": 0.8475449085235596, + "learning_rate": 2.5910866666666666e-05, + "loss": 1.5040087890625, + "step": 361500 + }, + { + "epoch": 48.21333333333333, + "grad_norm": 0.8340404629707336, + "learning_rate": 2.5904200000000002e-05, + "loss": 1.5033770751953126, + "step": 361600 + }, + { + "epoch": 48.22666666666667, + "grad_norm": 0.8179289102554321, + "learning_rate": 2.5897533333333334e-05, + "loss": 1.5125186157226562, + "step": 361700 + }, + { + "epoch": 48.24, + "grad_norm": 0.8329739570617676, + "learning_rate": 2.589086666666667e-05, + "loss": 1.5081419372558593, + "step": 361800 + }, + { + "epoch": 48.25333333333333, + "grad_norm": 0.8692247271537781, + "learning_rate": 2.5884200000000002e-05, + "loss": 1.509202880859375, + "step": 361900 + }, + { + "epoch": 48.266666666666666, + "grad_norm": 0.8539946675300598, + "learning_rate": 2.5877533333333338e-05, + "loss": 1.505505828857422, + "step": 362000 + }, + { + "epoch": 48.28, + "grad_norm": 0.8623639345169067, + "learning_rate": 2.5870866666666667e-05, + "loss": 1.5125834655761718, + "step": 362100 + }, + { + "epoch": 48.29333333333334, + "grad_norm": 0.8657389283180237, + "learning_rate": 2.58642e-05, + "loss": 1.517348175048828, + "step": 362200 + }, + { + "epoch": 48.306666666666665, + "grad_norm": 0.8074204921722412, + "learning_rate": 2.5857533333333334e-05, + "loss": 1.5124046325683593, + "step": 362300 + }, + { + "epoch": 48.32, + "grad_norm": 0.8119105100631714, + "learning_rate": 2.5850933333333334e-05, + "loss": 1.5156207275390625, + "step": 362400 + }, + { + "epoch": 48.333333333333336, + "grad_norm": 0.8001854419708252, + "learning_rate": 2.5844266666666666e-05, + "loss": 1.520142822265625, + "step": 362500 + }, + { + "epoch": 48.346666666666664, + "grad_norm": 0.8105164766311646, + "learning_rate": 2.58376e-05, + "loss": 1.51326904296875, + "step": 362600 + }, + { + "epoch": 48.36, + "grad_norm": 0.8771947026252747, + "learning_rate": 2.5830933333333334e-05, + "loss": 1.5151416015625, + "step": 362700 + }, + { + "epoch": 48.373333333333335, + "grad_norm": 0.8079180717468262, + "learning_rate": 2.582426666666667e-05, + "loss": 1.5162548828125, + "step": 362800 + }, + { + "epoch": 48.38666666666666, + "grad_norm": 0.8303863406181335, + "learning_rate": 2.58176e-05, + "loss": 1.517666015625, + "step": 362900 + }, + { + "epoch": 48.4, + "grad_norm": 0.8090680837631226, + "learning_rate": 2.5810933333333337e-05, + "loss": 1.5149562072753906, + "step": 363000 + }, + { + "epoch": 48.413333333333334, + "grad_norm": 0.8291407227516174, + "learning_rate": 2.5804266666666666e-05, + "loss": 1.5243867492675782, + "step": 363100 + }, + { + "epoch": 48.42666666666667, + "grad_norm": 0.8551901578903198, + "learning_rate": 2.57976e-05, + "loss": 1.5234576416015626, + "step": 363200 + }, + { + "epoch": 48.44, + "grad_norm": 0.8535791039466858, + "learning_rate": 2.5790933333333334e-05, + "loss": 1.52187744140625, + "step": 363300 + }, + { + "epoch": 48.45333333333333, + "grad_norm": 0.8479459881782532, + "learning_rate": 2.5784266666666666e-05, + "loss": 1.51526611328125, + "step": 363400 + }, + { + "epoch": 48.46666666666667, + "grad_norm": 0.7857949733734131, + "learning_rate": 2.5777600000000002e-05, + "loss": 1.5265869140625, + "step": 363500 + }, + { + "epoch": 48.48, + "grad_norm": 0.8698379397392273, + "learning_rate": 2.5770933333333334e-05, + "loss": 1.5276319885253906, + "step": 363600 + }, + { + "epoch": 48.49333333333333, + "grad_norm": 0.817887544631958, + "learning_rate": 2.576426666666667e-05, + "loss": 1.5276255798339844, + "step": 363700 + }, + { + "epoch": 48.50666666666667, + "grad_norm": 0.8234931826591492, + "learning_rate": 2.5757600000000006e-05, + "loss": 1.5249510192871094, + "step": 363800 + }, + { + "epoch": 48.52, + "grad_norm": 0.8288886547088623, + "learning_rate": 2.575093333333333e-05, + "loss": 1.528853759765625, + "step": 363900 + }, + { + "epoch": 48.53333333333333, + "grad_norm": 0.8396264314651489, + "learning_rate": 2.5744266666666667e-05, + "loss": 1.5318849182128906, + "step": 364000 + }, + { + "epoch": 48.54666666666667, + "grad_norm": 0.824802041053772, + "learning_rate": 2.57376e-05, + "loss": 1.5319622802734374, + "step": 364100 + }, + { + "epoch": 48.56, + "grad_norm": 0.8573387861251831, + "learning_rate": 2.5730933333333335e-05, + "loss": 1.5280552673339844, + "step": 364200 + }, + { + "epoch": 48.57333333333333, + "grad_norm": 0.836539089679718, + "learning_rate": 2.572426666666667e-05, + "loss": 1.5268043518066405, + "step": 364300 + }, + { + "epoch": 48.586666666666666, + "grad_norm": 0.885406494140625, + "learning_rate": 2.5717666666666666e-05, + "loss": 1.5300917053222656, + "step": 364400 + }, + { + "epoch": 48.6, + "grad_norm": 0.8176631331443787, + "learning_rate": 2.5711e-05, + "loss": 1.5323922729492188, + "step": 364500 + }, + { + "epoch": 48.61333333333333, + "grad_norm": 0.8315919637680054, + "learning_rate": 2.5704333333333337e-05, + "loss": 1.53243408203125, + "step": 364600 + }, + { + "epoch": 48.626666666666665, + "grad_norm": 0.822803258895874, + "learning_rate": 2.569766666666667e-05, + "loss": 1.5390171813964844, + "step": 364700 + }, + { + "epoch": 48.64, + "grad_norm": 0.8383143544197083, + "learning_rate": 2.5691000000000005e-05, + "loss": 1.5334788513183595, + "step": 364800 + }, + { + "epoch": 48.653333333333336, + "grad_norm": 0.8430681824684143, + "learning_rate": 2.5684333333333334e-05, + "loss": 1.5373228454589845, + "step": 364900 + }, + { + "epoch": 48.666666666666664, + "grad_norm": 0.861682653427124, + "learning_rate": 2.5677666666666666e-05, + "loss": 1.536941680908203, + "step": 365000 + }, + { + "epoch": 48.68, + "grad_norm": 0.8224048018455505, + "learning_rate": 2.5671000000000002e-05, + "loss": 1.5357330322265625, + "step": 365100 + }, + { + "epoch": 48.693333333333335, + "grad_norm": 0.8081045150756836, + "learning_rate": 2.5664333333333334e-05, + "loss": 1.5333282470703125, + "step": 365200 + }, + { + "epoch": 48.70666666666666, + "grad_norm": 0.8442122340202332, + "learning_rate": 2.565766666666667e-05, + "loss": 1.536866455078125, + "step": 365300 + }, + { + "epoch": 48.72, + "grad_norm": 0.822340190410614, + "learning_rate": 2.5651000000000002e-05, + "loss": 1.5430012512207032, + "step": 365400 + }, + { + "epoch": 48.733333333333334, + "grad_norm": 0.8340216875076294, + "learning_rate": 2.5644333333333338e-05, + "loss": 1.5356080627441406, + "step": 365500 + }, + { + "epoch": 48.74666666666667, + "grad_norm": 0.8153738975524902, + "learning_rate": 2.5637666666666667e-05, + "loss": 1.5389717102050782, + "step": 365600 + }, + { + "epoch": 48.76, + "grad_norm": 0.8527360558509827, + "learning_rate": 2.5631e-05, + "loss": 1.5421336364746094, + "step": 365700 + }, + { + "epoch": 48.77333333333333, + "grad_norm": 0.8141431212425232, + "learning_rate": 2.5624333333333335e-05, + "loss": 1.537602081298828, + "step": 365800 + }, + { + "epoch": 48.78666666666667, + "grad_norm": 0.8881790041923523, + "learning_rate": 2.5617666666666667e-05, + "loss": 1.5385264587402343, + "step": 365900 + }, + { + "epoch": 48.8, + "grad_norm": 0.8357459902763367, + "learning_rate": 2.5611000000000003e-05, + "loss": 1.5437425231933595, + "step": 366000 + }, + { + "epoch": 48.81333333333333, + "grad_norm": 0.828778088092804, + "learning_rate": 2.5604333333333335e-05, + "loss": 1.540460968017578, + "step": 366100 + }, + { + "epoch": 48.82666666666667, + "grad_norm": 0.8588747382164001, + "learning_rate": 2.559766666666667e-05, + "loss": 1.545701446533203, + "step": 366200 + }, + { + "epoch": 48.84, + "grad_norm": 0.8609989285469055, + "learning_rate": 2.5591000000000003e-05, + "loss": 1.5466421508789063, + "step": 366300 + }, + { + "epoch": 48.85333333333333, + "grad_norm": 0.7956804633140564, + "learning_rate": 2.5584400000000002e-05, + "loss": 1.54723388671875, + "step": 366400 + }, + { + "epoch": 48.86666666666667, + "grad_norm": 0.8610774278640747, + "learning_rate": 2.5577733333333338e-05, + "loss": 1.5450926208496094, + "step": 366500 + }, + { + "epoch": 48.88, + "grad_norm": 0.8780190944671631, + "learning_rate": 2.5571066666666666e-05, + "loss": 1.547249298095703, + "step": 366600 + }, + { + "epoch": 48.89333333333333, + "grad_norm": 0.8510201573371887, + "learning_rate": 2.55644e-05, + "loss": 1.5473715209960937, + "step": 366700 + }, + { + "epoch": 48.906666666666666, + "grad_norm": 0.8271015882492065, + "learning_rate": 2.5557733333333334e-05, + "loss": 1.5514225769042969, + "step": 366800 + }, + { + "epoch": 48.92, + "grad_norm": 0.8673347234725952, + "learning_rate": 2.5551066666666667e-05, + "loss": 1.5482473754882813, + "step": 366900 + }, + { + "epoch": 48.93333333333333, + "grad_norm": 0.9040217995643616, + "learning_rate": 2.5544400000000002e-05, + "loss": 1.5476766967773437, + "step": 367000 + }, + { + "epoch": 48.946666666666665, + "grad_norm": 0.8571226000785828, + "learning_rate": 2.5537733333333335e-05, + "loss": 1.5490121459960937, + "step": 367100 + }, + { + "epoch": 48.96, + "grad_norm": 0.8800345659255981, + "learning_rate": 2.553106666666667e-05, + "loss": 1.5518528747558593, + "step": 367200 + }, + { + "epoch": 48.973333333333336, + "grad_norm": 0.8253681659698486, + "learning_rate": 2.5524400000000002e-05, + "loss": 1.5538876342773438, + "step": 367300 + }, + { + "epoch": 48.986666666666665, + "grad_norm": 0.8854805827140808, + "learning_rate": 2.551773333333333e-05, + "loss": 1.5536569213867188, + "step": 367400 + }, + { + "epoch": 49.0, + "grad_norm": 0.8323401808738708, + "learning_rate": 2.5511066666666667e-05, + "loss": 1.5535047912597657, + "step": 367500 + }, + { + "epoch": 49.013333333333335, + "grad_norm": 0.7903602719306946, + "learning_rate": 2.55044e-05, + "loss": 1.478652801513672, + "step": 367600 + }, + { + "epoch": 49.026666666666664, + "grad_norm": 0.7994419932365417, + "learning_rate": 2.5497733333333335e-05, + "loss": 1.4753775024414062, + "step": 367700 + }, + { + "epoch": 49.04, + "grad_norm": 0.8322893381118774, + "learning_rate": 2.5491066666666667e-05, + "loss": 1.47673583984375, + "step": 367800 + }, + { + "epoch": 49.053333333333335, + "grad_norm": 0.8257775902748108, + "learning_rate": 2.5484400000000003e-05, + "loss": 1.4793165588378907, + "step": 367900 + }, + { + "epoch": 49.06666666666667, + "grad_norm": 0.8123628497123718, + "learning_rate": 2.5477733333333335e-05, + "loss": 1.4788943481445314, + "step": 368000 + }, + { + "epoch": 49.08, + "grad_norm": 0.849601149559021, + "learning_rate": 2.5471066666666664e-05, + "loss": 1.4821792602539063, + "step": 368100 + }, + { + "epoch": 49.093333333333334, + "grad_norm": 0.8008491396903992, + "learning_rate": 2.54644e-05, + "loss": 1.4849171447753906, + "step": 368200 + }, + { + "epoch": 49.10666666666667, + "grad_norm": 0.8216526508331299, + "learning_rate": 2.5457733333333332e-05, + "loss": 1.4855982971191406, + "step": 368300 + }, + { + "epoch": 49.12, + "grad_norm": 0.8552011847496033, + "learning_rate": 2.5451066666666668e-05, + "loss": 1.4879904174804688, + "step": 368400 + }, + { + "epoch": 49.13333333333333, + "grad_norm": 0.7977767586708069, + "learning_rate": 2.5444466666666667e-05, + "loss": 1.4883206176757813, + "step": 368500 + }, + { + "epoch": 49.14666666666667, + "grad_norm": 0.8241558074951172, + "learning_rate": 2.54378e-05, + "loss": 1.4861485290527343, + "step": 368600 + }, + { + "epoch": 49.16, + "grad_norm": 0.8472109436988831, + "learning_rate": 2.5431133333333335e-05, + "loss": 1.4872750854492187, + "step": 368700 + }, + { + "epoch": 49.17333333333333, + "grad_norm": 0.8214472532272339, + "learning_rate": 2.542446666666667e-05, + "loss": 1.487729034423828, + "step": 368800 + }, + { + "epoch": 49.18666666666667, + "grad_norm": 0.8378106355667114, + "learning_rate": 2.5417800000000003e-05, + "loss": 1.48987060546875, + "step": 368900 + }, + { + "epoch": 49.2, + "grad_norm": 0.7991240620613098, + "learning_rate": 2.5411133333333338e-05, + "loss": 1.492364501953125, + "step": 369000 + }, + { + "epoch": 49.21333333333333, + "grad_norm": 0.8102217316627502, + "learning_rate": 2.5404466666666664e-05, + "loss": 1.4964356994628907, + "step": 369100 + }, + { + "epoch": 49.22666666666667, + "grad_norm": 0.7787119150161743, + "learning_rate": 2.53978e-05, + "loss": 1.4987217712402343, + "step": 369200 + }, + { + "epoch": 49.24, + "grad_norm": 0.8689252138137817, + "learning_rate": 2.5391133333333335e-05, + "loss": 1.497693328857422, + "step": 369300 + }, + { + "epoch": 49.25333333333333, + "grad_norm": 0.8548557162284851, + "learning_rate": 2.5384466666666667e-05, + "loss": 1.4954206848144531, + "step": 369400 + }, + { + "epoch": 49.266666666666666, + "grad_norm": 0.8644983172416687, + "learning_rate": 2.5377800000000003e-05, + "loss": 1.4990921020507812, + "step": 369500 + }, + { + "epoch": 49.28, + "grad_norm": 0.8004375696182251, + "learning_rate": 2.5371133333333335e-05, + "loss": 1.4989527893066406, + "step": 369600 + }, + { + "epoch": 49.29333333333334, + "grad_norm": 0.811881959438324, + "learning_rate": 2.536446666666667e-05, + "loss": 1.4984857177734374, + "step": 369700 + }, + { + "epoch": 49.306666666666665, + "grad_norm": 0.8403072953224182, + "learning_rate": 2.5357800000000003e-05, + "loss": 1.4975395202636719, + "step": 369800 + }, + { + "epoch": 49.32, + "grad_norm": 0.8402568697929382, + "learning_rate": 2.5351133333333332e-05, + "loss": 1.4993600463867187, + "step": 369900 + }, + { + "epoch": 49.333333333333336, + "grad_norm": 0.8742866516113281, + "learning_rate": 2.5344466666666668e-05, + "loss": 1.504093475341797, + "step": 370000 + }, + { + "epoch": 49.346666666666664, + "grad_norm": 0.8136636018753052, + "learning_rate": 2.53378e-05, + "loss": 1.5030204772949218, + "step": 370100 + }, + { + "epoch": 49.36, + "grad_norm": 0.846967339515686, + "learning_rate": 2.5331133333333336e-05, + "loss": 1.5024598693847657, + "step": 370200 + }, + { + "epoch": 49.373333333333335, + "grad_norm": 0.784156858921051, + "learning_rate": 2.5324466666666668e-05, + "loss": 1.5066024780273437, + "step": 370300 + }, + { + "epoch": 49.38666666666666, + "grad_norm": 0.8611376881599426, + "learning_rate": 2.5317800000000003e-05, + "loss": 1.5030882263183594, + "step": 370400 + }, + { + "epoch": 49.4, + "grad_norm": 0.8456284403800964, + "learning_rate": 2.5311200000000003e-05, + "loss": 1.5110250854492187, + "step": 370500 + }, + { + "epoch": 49.413333333333334, + "grad_norm": 0.8738457560539246, + "learning_rate": 2.5304533333333335e-05, + "loss": 1.5068327331542968, + "step": 370600 + }, + { + "epoch": 49.42666666666667, + "grad_norm": 0.81916743516922, + "learning_rate": 2.529786666666667e-05, + "loss": 1.5101161193847656, + "step": 370700 + }, + { + "epoch": 49.44, + "grad_norm": 0.8413360714912415, + "learning_rate": 2.5291200000000003e-05, + "loss": 1.509934844970703, + "step": 370800 + }, + { + "epoch": 49.45333333333333, + "grad_norm": 0.8540857434272766, + "learning_rate": 2.528453333333333e-05, + "loss": 1.5118212890625, + "step": 370900 + }, + { + "epoch": 49.46666666666667, + "grad_norm": 0.8651217222213745, + "learning_rate": 2.5277866666666667e-05, + "loss": 1.5078504943847657, + "step": 371000 + }, + { + "epoch": 49.48, + "grad_norm": 0.8294056057929993, + "learning_rate": 2.52712e-05, + "loss": 1.5105992126464844, + "step": 371100 + }, + { + "epoch": 49.49333333333333, + "grad_norm": 0.8947125673294067, + "learning_rate": 2.5264533333333335e-05, + "loss": 1.5177714538574218, + "step": 371200 + }, + { + "epoch": 49.50666666666667, + "grad_norm": 0.8449296951293945, + "learning_rate": 2.5257866666666667e-05, + "loss": 1.5125474548339843, + "step": 371300 + }, + { + "epoch": 49.52, + "grad_norm": 0.849795401096344, + "learning_rate": 2.5251200000000003e-05, + "loss": 1.5124183654785157, + "step": 371400 + }, + { + "epoch": 49.53333333333333, + "grad_norm": 0.8208550810813904, + "learning_rate": 2.5244533333333335e-05, + "loss": 1.5178236389160156, + "step": 371500 + }, + { + "epoch": 49.54666666666667, + "grad_norm": 0.8659239411354065, + "learning_rate": 2.5237866666666664e-05, + "loss": 1.51171875, + "step": 371600 + }, + { + "epoch": 49.56, + "grad_norm": 0.8339199423789978, + "learning_rate": 2.52312e-05, + "loss": 1.5164427185058593, + "step": 371700 + }, + { + "epoch": 49.57333333333333, + "grad_norm": 0.817791759967804, + "learning_rate": 2.5224533333333332e-05, + "loss": 1.5198959350585937, + "step": 371800 + }, + { + "epoch": 49.586666666666666, + "grad_norm": 0.8938850164413452, + "learning_rate": 2.5217866666666668e-05, + "loss": 1.5189447021484375, + "step": 371900 + }, + { + "epoch": 49.6, + "grad_norm": 0.8634279370307922, + "learning_rate": 2.52112e-05, + "loss": 1.5181257629394531, + "step": 372000 + }, + { + "epoch": 49.61333333333333, + "grad_norm": 0.8766525983810425, + "learning_rate": 2.5204533333333336e-05, + "loss": 1.5201939392089843, + "step": 372100 + }, + { + "epoch": 49.626666666666665, + "grad_norm": 0.8618395328521729, + "learning_rate": 2.5197866666666668e-05, + "loss": 1.5215455627441405, + "step": 372200 + }, + { + "epoch": 49.64, + "grad_norm": 0.8641324043273926, + "learning_rate": 2.5191200000000004e-05, + "loss": 1.5232699584960938, + "step": 372300 + }, + { + "epoch": 49.653333333333336, + "grad_norm": 0.8349089026451111, + "learning_rate": 2.5184533333333333e-05, + "loss": 1.5240145874023439, + "step": 372400 + }, + { + "epoch": 49.666666666666664, + "grad_norm": 0.8367394804954529, + "learning_rate": 2.5177933333333335e-05, + "loss": 1.520089111328125, + "step": 372500 + }, + { + "epoch": 49.68, + "grad_norm": 0.8456884026527405, + "learning_rate": 2.5171266666666664e-05, + "loss": 1.5240330505371094, + "step": 372600 + }, + { + "epoch": 49.693333333333335, + "grad_norm": 0.8970924615859985, + "learning_rate": 2.51646e-05, + "loss": 1.5220384216308593, + "step": 372700 + }, + { + "epoch": 49.70666666666666, + "grad_norm": 0.8440273404121399, + "learning_rate": 2.5157933333333332e-05, + "loss": 1.5244894409179688, + "step": 372800 + }, + { + "epoch": 49.72, + "grad_norm": 0.8721365332603455, + "learning_rate": 2.5151266666666668e-05, + "loss": 1.5227665710449219, + "step": 372900 + }, + { + "epoch": 49.733333333333334, + "grad_norm": 0.9237975478172302, + "learning_rate": 2.5144600000000003e-05, + "loss": 1.5297914123535157, + "step": 373000 + }, + { + "epoch": 49.74666666666667, + "grad_norm": 0.8599965572357178, + "learning_rate": 2.5137933333333335e-05, + "loss": 1.5247174072265626, + "step": 373100 + }, + { + "epoch": 49.76, + "grad_norm": 0.8520407676696777, + "learning_rate": 2.513126666666667e-05, + "loss": 1.5293832397460938, + "step": 373200 + }, + { + "epoch": 49.77333333333333, + "grad_norm": 0.8867288827896118, + "learning_rate": 2.5124600000000003e-05, + "loss": 1.5261709594726562, + "step": 373300 + }, + { + "epoch": 49.78666666666667, + "grad_norm": 0.8335996866226196, + "learning_rate": 2.5117933333333332e-05, + "loss": 1.5297763061523437, + "step": 373400 + }, + { + "epoch": 49.8, + "grad_norm": 0.8595085144042969, + "learning_rate": 2.5111266666666668e-05, + "loss": 1.5318873596191407, + "step": 373500 + }, + { + "epoch": 49.81333333333333, + "grad_norm": 0.8604120016098022, + "learning_rate": 2.51046e-05, + "loss": 1.5329582214355468, + "step": 373600 + }, + { + "epoch": 49.82666666666667, + "grad_norm": 0.8619903922080994, + "learning_rate": 2.5097933333333336e-05, + "loss": 1.5340994262695313, + "step": 373700 + }, + { + "epoch": 49.84, + "grad_norm": 0.8415823578834534, + "learning_rate": 2.5091266666666668e-05, + "loss": 1.5291461181640624, + "step": 373800 + }, + { + "epoch": 49.85333333333333, + "grad_norm": 0.8430103063583374, + "learning_rate": 2.5084600000000004e-05, + "loss": 1.5344522094726563, + "step": 373900 + }, + { + "epoch": 49.86666666666667, + "grad_norm": 0.8401354551315308, + "learning_rate": 2.5077933333333336e-05, + "loss": 1.5318260192871094, + "step": 374000 + }, + { + "epoch": 49.88, + "grad_norm": 0.8805033564567566, + "learning_rate": 2.5071266666666665e-05, + "loss": 1.5331027221679687, + "step": 374100 + }, + { + "epoch": 49.89333333333333, + "grad_norm": 0.8586838245391846, + "learning_rate": 2.50646e-05, + "loss": 1.5350416564941407, + "step": 374200 + }, + { + "epoch": 49.906666666666666, + "grad_norm": 0.8289893269538879, + "learning_rate": 2.5057933333333333e-05, + "loss": 1.531967315673828, + "step": 374300 + }, + { + "epoch": 49.92, + "grad_norm": 0.8118442893028259, + "learning_rate": 2.505126666666667e-05, + "loss": 1.5373696899414062, + "step": 374400 + }, + { + "epoch": 49.93333333333333, + "grad_norm": 0.8152410984039307, + "learning_rate": 2.5044666666666668e-05, + "loss": 1.5317294311523437, + "step": 374500 + }, + { + "epoch": 49.946666666666665, + "grad_norm": 0.8541066646575928, + "learning_rate": 2.5038e-05, + "loss": 1.5318400573730468, + "step": 374600 + }, + { + "epoch": 49.96, + "grad_norm": 0.8401637673377991, + "learning_rate": 2.5031333333333335e-05, + "loss": 1.53946044921875, + "step": 374700 + }, + { + "epoch": 49.973333333333336, + "grad_norm": 0.8769694566726685, + "learning_rate": 2.5024666666666668e-05, + "loss": 1.5422596740722656, + "step": 374800 + }, + { + "epoch": 49.986666666666665, + "grad_norm": 0.8622532486915588, + "learning_rate": 2.5018000000000003e-05, + "loss": 1.535623779296875, + "step": 374900 + }, + { + "epoch": 50.0, + "grad_norm": 0.8721447587013245, + "learning_rate": 2.5011333333333336e-05, + "loss": 1.5350186157226562, + "step": 375000 + }, + { + "epoch": 50.013333333333335, + "grad_norm": 0.8176959753036499, + "learning_rate": 2.5004666666666665e-05, + "loss": 1.466029052734375, + "step": 375100 + }, + { + "epoch": 50.026666666666664, + "grad_norm": 0.8403975963592529, + "learning_rate": 2.4998000000000004e-05, + "loss": 1.4674476623535155, + "step": 375200 + }, + { + "epoch": 50.04, + "grad_norm": 0.7836979031562805, + "learning_rate": 2.4991333333333332e-05, + "loss": 1.4652630615234374, + "step": 375300 + }, + { + "epoch": 50.053333333333335, + "grad_norm": 0.8018586039543152, + "learning_rate": 2.4984666666666668e-05, + "loss": 1.4712281799316407, + "step": 375400 + }, + { + "epoch": 50.06666666666667, + "grad_norm": 0.8064463138580322, + "learning_rate": 2.4978e-05, + "loss": 1.4708700561523438, + "step": 375500 + }, + { + "epoch": 50.08, + "grad_norm": 0.8261614441871643, + "learning_rate": 2.4971333333333336e-05, + "loss": 1.4716073608398437, + "step": 375600 + }, + { + "epoch": 50.093333333333334, + "grad_norm": 0.837766706943512, + "learning_rate": 2.496466666666667e-05, + "loss": 1.4701448059082032, + "step": 375700 + }, + { + "epoch": 50.10666666666667, + "grad_norm": 0.8290911912918091, + "learning_rate": 2.4958e-05, + "loss": 1.4736390686035157, + "step": 375800 + }, + { + "epoch": 50.12, + "grad_norm": 0.8385511636734009, + "learning_rate": 2.4951333333333336e-05, + "loss": 1.47410888671875, + "step": 375900 + }, + { + "epoch": 50.13333333333333, + "grad_norm": 0.8306918144226074, + "learning_rate": 2.494466666666667e-05, + "loss": 1.473253173828125, + "step": 376000 + }, + { + "epoch": 50.14666666666667, + "grad_norm": 0.8213056325912476, + "learning_rate": 2.4938e-05, + "loss": 1.4761256408691406, + "step": 376100 + }, + { + "epoch": 50.16, + "grad_norm": 0.8195951581001282, + "learning_rate": 2.4931333333333333e-05, + "loss": 1.4738999938964843, + "step": 376200 + }, + { + "epoch": 50.17333333333333, + "grad_norm": 0.8188632130622864, + "learning_rate": 2.492466666666667e-05, + "loss": 1.474258270263672, + "step": 376300 + }, + { + "epoch": 50.18666666666667, + "grad_norm": 0.8272870182991028, + "learning_rate": 2.4918e-05, + "loss": 1.4804847717285157, + "step": 376400 + }, + { + "epoch": 50.2, + "grad_norm": 0.8472500443458557, + "learning_rate": 2.4911333333333333e-05, + "loss": 1.4830419921875, + "step": 376500 + }, + { + "epoch": 50.21333333333333, + "grad_norm": 0.8540857434272766, + "learning_rate": 2.4904733333333336e-05, + "loss": 1.4762397766113282, + "step": 376600 + }, + { + "epoch": 50.22666666666667, + "grad_norm": 0.8313518762588501, + "learning_rate": 2.4898066666666668e-05, + "loss": 1.488265838623047, + "step": 376700 + }, + { + "epoch": 50.24, + "grad_norm": 0.8233117461204529, + "learning_rate": 2.48914e-05, + "loss": 1.4829058837890625, + "step": 376800 + }, + { + "epoch": 50.25333333333333, + "grad_norm": 0.779459536075592, + "learning_rate": 2.4884733333333336e-05, + "loss": 1.4825271606445312, + "step": 376900 + }, + { + "epoch": 50.266666666666666, + "grad_norm": 0.8867989182472229, + "learning_rate": 2.4878066666666668e-05, + "loss": 1.4807273864746093, + "step": 377000 + }, + { + "epoch": 50.28, + "grad_norm": 0.8341526985168457, + "learning_rate": 2.48714e-05, + "loss": 1.4884478759765625, + "step": 377100 + }, + { + "epoch": 50.29333333333334, + "grad_norm": 0.8194299340248108, + "learning_rate": 2.4864733333333333e-05, + "loss": 1.49041259765625, + "step": 377200 + }, + { + "epoch": 50.306666666666665, + "grad_norm": 0.8118073344230652, + "learning_rate": 2.485806666666667e-05, + "loss": 1.4905577087402344, + "step": 377300 + }, + { + "epoch": 50.32, + "grad_norm": 0.8379462361335754, + "learning_rate": 2.4851400000000004e-05, + "loss": 1.489639434814453, + "step": 377400 + }, + { + "epoch": 50.333333333333336, + "grad_norm": 0.8261382579803467, + "learning_rate": 2.4844733333333333e-05, + "loss": 1.4874810791015625, + "step": 377500 + }, + { + "epoch": 50.346666666666664, + "grad_norm": 0.8561468124389648, + "learning_rate": 2.483806666666667e-05, + "loss": 1.4892660522460937, + "step": 377600 + }, + { + "epoch": 50.36, + "grad_norm": 0.8199340105056763, + "learning_rate": 2.48314e-05, + "loss": 1.4900086975097657, + "step": 377700 + }, + { + "epoch": 50.373333333333335, + "grad_norm": 0.8406544327735901, + "learning_rate": 2.4824733333333333e-05, + "loss": 1.4931591796875, + "step": 377800 + }, + { + "epoch": 50.38666666666666, + "grad_norm": 0.855679452419281, + "learning_rate": 2.481806666666667e-05, + "loss": 1.496982879638672, + "step": 377900 + }, + { + "epoch": 50.4, + "grad_norm": 0.8296971917152405, + "learning_rate": 2.48114e-05, + "loss": 1.4914996337890625, + "step": 378000 + }, + { + "epoch": 50.413333333333334, + "grad_norm": 0.8180424571037292, + "learning_rate": 2.4804733333333337e-05, + "loss": 1.4951356506347657, + "step": 378100 + }, + { + "epoch": 50.42666666666667, + "grad_norm": 0.7618070244789124, + "learning_rate": 2.4798066666666666e-05, + "loss": 1.4911334228515625, + "step": 378200 + }, + { + "epoch": 50.44, + "grad_norm": 0.8503825664520264, + "learning_rate": 2.47914e-05, + "loss": 1.4923796081542968, + "step": 378300 + }, + { + "epoch": 50.45333333333333, + "grad_norm": 0.8834084272384644, + "learning_rate": 2.4784733333333333e-05, + "loss": 1.5002174377441406, + "step": 378400 + }, + { + "epoch": 50.46666666666667, + "grad_norm": 0.8220873475074768, + "learning_rate": 2.477806666666667e-05, + "loss": 1.4986158752441405, + "step": 378500 + }, + { + "epoch": 50.48, + "grad_norm": 0.8193914294242859, + "learning_rate": 2.4771466666666668e-05, + "loss": 1.5011746215820312, + "step": 378600 + }, + { + "epoch": 50.49333333333333, + "grad_norm": 0.800317108631134, + "learning_rate": 2.47648e-05, + "loss": 1.4963475036621094, + "step": 378700 + }, + { + "epoch": 50.50666666666667, + "grad_norm": 0.9164362549781799, + "learning_rate": 2.4758133333333333e-05, + "loss": 1.5000321960449219, + "step": 378800 + }, + { + "epoch": 50.52, + "grad_norm": 0.8191181421279907, + "learning_rate": 2.475146666666667e-05, + "loss": 1.4975949096679688, + "step": 378900 + }, + { + "epoch": 50.53333333333333, + "grad_norm": 0.8659054040908813, + "learning_rate": 2.47448e-05, + "loss": 1.5002691650390625, + "step": 379000 + }, + { + "epoch": 50.54666666666667, + "grad_norm": 0.8360313177108765, + "learning_rate": 2.4738133333333336e-05, + "loss": 1.5039067077636719, + "step": 379100 + }, + { + "epoch": 50.56, + "grad_norm": 0.8391720652580261, + "learning_rate": 2.4731466666666665e-05, + "loss": 1.5015184020996093, + "step": 379200 + }, + { + "epoch": 50.57333333333333, + "grad_norm": 0.8605763912200928, + "learning_rate": 2.47248e-05, + "loss": 1.4976239013671875, + "step": 379300 + }, + { + "epoch": 50.586666666666666, + "grad_norm": 0.8516925573348999, + "learning_rate": 2.4718133333333333e-05, + "loss": 1.506053466796875, + "step": 379400 + }, + { + "epoch": 50.6, + "grad_norm": 0.8585731387138367, + "learning_rate": 2.471146666666667e-05, + "loss": 1.5041627502441406, + "step": 379500 + }, + { + "epoch": 50.61333333333333, + "grad_norm": 0.8855695724487305, + "learning_rate": 2.47048e-05, + "loss": 1.511184539794922, + "step": 379600 + }, + { + "epoch": 50.626666666666665, + "grad_norm": 0.8389919996261597, + "learning_rate": 2.4698133333333333e-05, + "loss": 1.5034822082519532, + "step": 379700 + }, + { + "epoch": 50.64, + "grad_norm": 0.8592944145202637, + "learning_rate": 2.469146666666667e-05, + "loss": 1.5039569091796876, + "step": 379800 + }, + { + "epoch": 50.653333333333336, + "grad_norm": 0.8480226397514343, + "learning_rate": 2.46848e-05, + "loss": 1.5057781982421874, + "step": 379900 + }, + { + "epoch": 50.666666666666664, + "grad_norm": 0.8565899133682251, + "learning_rate": 2.4678133333333334e-05, + "loss": 1.5090969848632811, + "step": 380000 + }, + { + "epoch": 50.68, + "grad_norm": 0.8642663359642029, + "learning_rate": 2.467146666666667e-05, + "loss": 1.5119166564941406, + "step": 380100 + }, + { + "epoch": 50.693333333333335, + "grad_norm": 0.8396902084350586, + "learning_rate": 2.46648e-05, + "loss": 1.5146353149414062, + "step": 380200 + }, + { + "epoch": 50.70666666666666, + "grad_norm": 0.8606100678443909, + "learning_rate": 2.4658133333333337e-05, + "loss": 1.5087774658203126, + "step": 380300 + }, + { + "epoch": 50.72, + "grad_norm": 0.8133344054222107, + "learning_rate": 2.4651466666666666e-05, + "loss": 1.5128636169433594, + "step": 380400 + }, + { + "epoch": 50.733333333333334, + "grad_norm": 0.8432591557502747, + "learning_rate": 2.46448e-05, + "loss": 1.5084796142578125, + "step": 380500 + }, + { + "epoch": 50.74666666666667, + "grad_norm": 0.8862467408180237, + "learning_rate": 2.46382e-05, + "loss": 1.5145498657226562, + "step": 380600 + }, + { + "epoch": 50.76, + "grad_norm": 0.883004903793335, + "learning_rate": 2.4631533333333333e-05, + "loss": 1.5110755920410157, + "step": 380700 + }, + { + "epoch": 50.77333333333333, + "grad_norm": 0.8901974558830261, + "learning_rate": 2.462486666666667e-05, + "loss": 1.5167329406738281, + "step": 380800 + }, + { + "epoch": 50.78666666666667, + "grad_norm": 0.841244637966156, + "learning_rate": 2.46182e-05, + "loss": 1.5136112976074219, + "step": 380900 + }, + { + "epoch": 50.8, + "grad_norm": 0.8438834547996521, + "learning_rate": 2.4611533333333333e-05, + "loss": 1.5152095031738282, + "step": 381000 + }, + { + "epoch": 50.81333333333333, + "grad_norm": 0.8658137321472168, + "learning_rate": 2.460486666666667e-05, + "loss": 1.513826904296875, + "step": 381100 + }, + { + "epoch": 50.82666666666667, + "grad_norm": 0.882071852684021, + "learning_rate": 2.45982e-05, + "loss": 1.5154730224609374, + "step": 381200 + }, + { + "epoch": 50.84, + "grad_norm": 0.8813706040382385, + "learning_rate": 2.4591533333333337e-05, + "loss": 1.51885498046875, + "step": 381300 + }, + { + "epoch": 50.85333333333333, + "grad_norm": 0.8508647084236145, + "learning_rate": 2.4584866666666666e-05, + "loss": 1.5158058166503907, + "step": 381400 + }, + { + "epoch": 50.86666666666667, + "grad_norm": 0.8502191305160522, + "learning_rate": 2.45782e-05, + "loss": 1.5165373229980468, + "step": 381500 + }, + { + "epoch": 50.88, + "grad_norm": 0.8656032085418701, + "learning_rate": 2.4571533333333337e-05, + "loss": 1.5202676391601562, + "step": 381600 + }, + { + "epoch": 50.89333333333333, + "grad_norm": 0.8280258774757385, + "learning_rate": 2.4564866666666666e-05, + "loss": 1.523727569580078, + "step": 381700 + }, + { + "epoch": 50.906666666666666, + "grad_norm": 0.8496196269989014, + "learning_rate": 2.45582e-05, + "loss": 1.5180378723144532, + "step": 381800 + }, + { + "epoch": 50.92, + "grad_norm": 0.9003440141677856, + "learning_rate": 2.4551533333333334e-05, + "loss": 1.52153564453125, + "step": 381900 + }, + { + "epoch": 50.93333333333333, + "grad_norm": 0.8458821177482605, + "learning_rate": 2.454486666666667e-05, + "loss": 1.5277166748046875, + "step": 382000 + }, + { + "epoch": 50.946666666666665, + "grad_norm": 0.8582217693328857, + "learning_rate": 2.45382e-05, + "loss": 1.5160935974121095, + "step": 382100 + }, + { + "epoch": 50.96, + "grad_norm": 0.8812438249588013, + "learning_rate": 2.4531533333333334e-05, + "loss": 1.5228970336914063, + "step": 382200 + }, + { + "epoch": 50.973333333333336, + "grad_norm": 0.8399114608764648, + "learning_rate": 2.452486666666667e-05, + "loss": 1.5246499633789063, + "step": 382300 + }, + { + "epoch": 50.986666666666665, + "grad_norm": 0.8204259276390076, + "learning_rate": 2.4518200000000002e-05, + "loss": 1.5253396606445313, + "step": 382400 + }, + { + "epoch": 51.0, + "grad_norm": 0.8467189073562622, + "learning_rate": 2.4511533333333334e-05, + "loss": 1.5258003234863282, + "step": 382500 + }, + { + "epoch": 51.013333333333335, + "grad_norm": 0.8255739212036133, + "learning_rate": 2.4504933333333337e-05, + "loss": 1.4497154235839844, + "step": 382600 + }, + { + "epoch": 51.026666666666664, + "grad_norm": 0.8379701375961304, + "learning_rate": 2.4498266666666665e-05, + "loss": 1.452757568359375, + "step": 382700 + }, + { + "epoch": 51.04, + "grad_norm": 0.8153045177459717, + "learning_rate": 2.44916e-05, + "loss": 1.4591259765625, + "step": 382800 + }, + { + "epoch": 51.053333333333335, + "grad_norm": 0.8011037111282349, + "learning_rate": 2.4484933333333333e-05, + "loss": 1.4575518798828124, + "step": 382900 + }, + { + "epoch": 51.06666666666667, + "grad_norm": 0.8315128087997437, + "learning_rate": 2.447826666666667e-05, + "loss": 1.4647442626953124, + "step": 383000 + }, + { + "epoch": 51.08, + "grad_norm": 0.8852720260620117, + "learning_rate": 2.44716e-05, + "loss": 1.459652099609375, + "step": 383100 + }, + { + "epoch": 51.093333333333334, + "grad_norm": 0.837066113948822, + "learning_rate": 2.4464933333333334e-05, + "loss": 1.4613265991210938, + "step": 383200 + }, + { + "epoch": 51.10666666666667, + "grad_norm": 0.8697075843811035, + "learning_rate": 2.445826666666667e-05, + "loss": 1.4583189392089844, + "step": 383300 + }, + { + "epoch": 51.12, + "grad_norm": 0.8551360368728638, + "learning_rate": 2.44516e-05, + "loss": 1.4582942199707032, + "step": 383400 + }, + { + "epoch": 51.13333333333333, + "grad_norm": 0.8545364141464233, + "learning_rate": 2.4444933333333334e-05, + "loss": 1.460870819091797, + "step": 383500 + }, + { + "epoch": 51.14666666666667, + "grad_norm": 0.8045480251312256, + "learning_rate": 2.4438266666666666e-05, + "loss": 1.4661735534667968, + "step": 383600 + }, + { + "epoch": 51.16, + "grad_norm": 0.8242552876472473, + "learning_rate": 2.44316e-05, + "loss": 1.4653382873535157, + "step": 383700 + }, + { + "epoch": 51.17333333333333, + "grad_norm": 0.8422017693519592, + "learning_rate": 2.4424933333333337e-05, + "loss": 1.467156982421875, + "step": 383800 + }, + { + "epoch": 51.18666666666667, + "grad_norm": 0.8462349772453308, + "learning_rate": 2.4418266666666666e-05, + "loss": 1.471797637939453, + "step": 383900 + }, + { + "epoch": 51.2, + "grad_norm": 0.8934951424598694, + "learning_rate": 2.4411600000000002e-05, + "loss": 1.4692425537109375, + "step": 384000 + }, + { + "epoch": 51.21333333333333, + "grad_norm": 0.8612936735153198, + "learning_rate": 2.4404933333333334e-05, + "loss": 1.4652291870117187, + "step": 384100 + }, + { + "epoch": 51.22666666666667, + "grad_norm": 0.8447757959365845, + "learning_rate": 2.4398266666666666e-05, + "loss": 1.4715693664550782, + "step": 384200 + }, + { + "epoch": 51.24, + "grad_norm": 0.8683099746704102, + "learning_rate": 2.4391600000000002e-05, + "loss": 1.4702517700195312, + "step": 384300 + }, + { + "epoch": 51.25333333333333, + "grad_norm": 0.789240837097168, + "learning_rate": 2.4384933333333334e-05, + "loss": 1.4706991577148438, + "step": 384400 + }, + { + "epoch": 51.266666666666666, + "grad_norm": 0.8664871454238892, + "learning_rate": 2.437826666666667e-05, + "loss": 1.4718405151367187, + "step": 384500 + }, + { + "epoch": 51.28, + "grad_norm": 0.8637537956237793, + "learning_rate": 2.437166666666667e-05, + "loss": 1.4716297912597656, + "step": 384600 + }, + { + "epoch": 51.29333333333334, + "grad_norm": 0.8115244507789612, + "learning_rate": 2.4365e-05, + "loss": 1.4719580078125, + "step": 384700 + }, + { + "epoch": 51.306666666666665, + "grad_norm": 0.8004962801933289, + "learning_rate": 2.4358333333333337e-05, + "loss": 1.4749884033203124, + "step": 384800 + }, + { + "epoch": 51.32, + "grad_norm": 0.8783427476882935, + "learning_rate": 2.4351666666666666e-05, + "loss": 1.4797103881835938, + "step": 384900 + }, + { + "epoch": 51.333333333333336, + "grad_norm": 0.8578570485115051, + "learning_rate": 2.4345e-05, + "loss": 1.4746359252929688, + "step": 385000 + }, + { + "epoch": 51.346666666666664, + "grad_norm": 0.8788546323776245, + "learning_rate": 2.4338333333333334e-05, + "loss": 1.4802169799804688, + "step": 385100 + }, + { + "epoch": 51.36, + "grad_norm": 0.8816238641738892, + "learning_rate": 2.4331666666666666e-05, + "loss": 1.47786865234375, + "step": 385200 + }, + { + "epoch": 51.373333333333335, + "grad_norm": 0.8610212206840515, + "learning_rate": 2.4325000000000002e-05, + "loss": 1.4802935791015626, + "step": 385300 + }, + { + "epoch": 51.38666666666666, + "grad_norm": 0.8929548263549805, + "learning_rate": 2.4318333333333334e-05, + "loss": 1.4820956420898437, + "step": 385400 + }, + { + "epoch": 51.4, + "grad_norm": 0.8102960586547852, + "learning_rate": 2.431166666666667e-05, + "loss": 1.4810777282714844, + "step": 385500 + }, + { + "epoch": 51.413333333333334, + "grad_norm": 0.8530375361442566, + "learning_rate": 2.4305e-05, + "loss": 1.4792242431640625, + "step": 385600 + }, + { + "epoch": 51.42666666666667, + "grad_norm": 0.8311903476715088, + "learning_rate": 2.4298333333333334e-05, + "loss": 1.4845094299316406, + "step": 385700 + }, + { + "epoch": 51.44, + "grad_norm": 0.8655042052268982, + "learning_rate": 2.4291666666666666e-05, + "loss": 1.482476043701172, + "step": 385800 + }, + { + "epoch": 51.45333333333333, + "grad_norm": 0.8922598361968994, + "learning_rate": 2.4285000000000002e-05, + "loss": 1.4829647827148438, + "step": 385900 + }, + { + "epoch": 51.46666666666667, + "grad_norm": 0.8447866439819336, + "learning_rate": 2.4278333333333334e-05, + "loss": 1.4828948974609375, + "step": 386000 + }, + { + "epoch": 51.48, + "grad_norm": 0.8586673736572266, + "learning_rate": 2.4271666666666667e-05, + "loss": 1.4850732421875, + "step": 386100 + }, + { + "epoch": 51.49333333333333, + "grad_norm": 0.8505076766014099, + "learning_rate": 2.4265000000000002e-05, + "loss": 1.4824075317382812, + "step": 386200 + }, + { + "epoch": 51.50666666666667, + "grad_norm": 0.8577302694320679, + "learning_rate": 2.4258333333333335e-05, + "loss": 1.4877815246582031, + "step": 386300 + }, + { + "epoch": 51.52, + "grad_norm": 0.8362126350402832, + "learning_rate": 2.4251666666666667e-05, + "loss": 1.4846498107910155, + "step": 386400 + }, + { + "epoch": 51.53333333333333, + "grad_norm": 0.8587775230407715, + "learning_rate": 2.4245000000000002e-05, + "loss": 1.484984130859375, + "step": 386500 + }, + { + "epoch": 51.54666666666667, + "grad_norm": 0.871204137802124, + "learning_rate": 2.4238333333333335e-05, + "loss": 1.4914971923828124, + "step": 386600 + }, + { + "epoch": 51.56, + "grad_norm": 0.8179042935371399, + "learning_rate": 2.4231733333333334e-05, + "loss": 1.4899531555175782, + "step": 386700 + }, + { + "epoch": 51.57333333333333, + "grad_norm": 0.8490532040596008, + "learning_rate": 2.422506666666667e-05, + "loss": 1.4912181091308594, + "step": 386800 + }, + { + "epoch": 51.586666666666666, + "grad_norm": 0.8682654500007629, + "learning_rate": 2.4218400000000002e-05, + "loss": 1.4918653869628906, + "step": 386900 + }, + { + "epoch": 51.6, + "grad_norm": 0.890491247177124, + "learning_rate": 2.4211733333333334e-05, + "loss": 1.4917636108398438, + "step": 387000 + }, + { + "epoch": 51.61333333333333, + "grad_norm": 0.8665891885757446, + "learning_rate": 2.4205066666666666e-05, + "loss": 1.4941488647460937, + "step": 387100 + }, + { + "epoch": 51.626666666666665, + "grad_norm": 0.8592315316200256, + "learning_rate": 2.4198400000000002e-05, + "loss": 1.492812042236328, + "step": 387200 + }, + { + "epoch": 51.64, + "grad_norm": 0.8546895980834961, + "learning_rate": 2.4191733333333334e-05, + "loss": 1.4904875183105468, + "step": 387300 + }, + { + "epoch": 51.653333333333336, + "grad_norm": 0.8656253814697266, + "learning_rate": 2.4185066666666666e-05, + "loss": 1.4929344177246093, + "step": 387400 + }, + { + "epoch": 51.666666666666664, + "grad_norm": 0.8968192934989929, + "learning_rate": 2.4178400000000002e-05, + "loss": 1.4941493225097657, + "step": 387500 + }, + { + "epoch": 51.68, + "grad_norm": 0.8238973617553711, + "learning_rate": 2.4171733333333334e-05, + "loss": 1.4932928466796875, + "step": 387600 + }, + { + "epoch": 51.693333333333335, + "grad_norm": 0.8756453394889832, + "learning_rate": 2.416506666666667e-05, + "loss": 1.5003330993652344, + "step": 387700 + }, + { + "epoch": 51.70666666666666, + "grad_norm": 0.8613998293876648, + "learning_rate": 2.41584e-05, + "loss": 1.499681396484375, + "step": 387800 + }, + { + "epoch": 51.72, + "grad_norm": 0.8716132640838623, + "learning_rate": 2.4151733333333335e-05, + "loss": 1.4972032165527345, + "step": 387900 + }, + { + "epoch": 51.733333333333334, + "grad_norm": 0.8987093567848206, + "learning_rate": 2.414506666666667e-05, + "loss": 1.5022872924804687, + "step": 388000 + }, + { + "epoch": 51.74666666666667, + "grad_norm": 0.8321843147277832, + "learning_rate": 2.41384e-05, + "loss": 1.4971646118164061, + "step": 388100 + }, + { + "epoch": 51.76, + "grad_norm": 0.8500959277153015, + "learning_rate": 2.4131733333333335e-05, + "loss": 1.5017050170898438, + "step": 388200 + }, + { + "epoch": 51.77333333333333, + "grad_norm": 0.8492921590805054, + "learning_rate": 2.4125066666666667e-05, + "loss": 1.4948918151855468, + "step": 388300 + }, + { + "epoch": 51.78666666666667, + "grad_norm": 0.8338704705238342, + "learning_rate": 2.4118400000000003e-05, + "loss": 1.5020379638671875, + "step": 388400 + }, + { + "epoch": 51.8, + "grad_norm": 0.8522675037384033, + "learning_rate": 2.4111733333333335e-05, + "loss": 1.5005595397949218, + "step": 388500 + }, + { + "epoch": 51.81333333333333, + "grad_norm": 0.8284652829170227, + "learning_rate": 2.4105066666666667e-05, + "loss": 1.5022247314453125, + "step": 388600 + }, + { + "epoch": 51.82666666666667, + "grad_norm": 0.862209141254425, + "learning_rate": 2.409846666666667e-05, + "loss": 1.504408416748047, + "step": 388700 + }, + { + "epoch": 51.84, + "grad_norm": 0.8681904077529907, + "learning_rate": 2.4091800000000002e-05, + "loss": 1.5046144104003907, + "step": 388800 + }, + { + "epoch": 51.85333333333333, + "grad_norm": 0.8120859861373901, + "learning_rate": 2.4085133333333334e-05, + "loss": 1.5099690246582032, + "step": 388900 + }, + { + "epoch": 51.86666666666667, + "grad_norm": 0.8199965357780457, + "learning_rate": 2.407846666666667e-05, + "loss": 1.5086412048339843, + "step": 389000 + }, + { + "epoch": 51.88, + "grad_norm": 0.8781035542488098, + "learning_rate": 2.40718e-05, + "loss": 1.5068019104003907, + "step": 389100 + }, + { + "epoch": 51.89333333333333, + "grad_norm": 0.8746353983879089, + "learning_rate": 2.4065133333333334e-05, + "loss": 1.5051779174804687, + "step": 389200 + }, + { + "epoch": 51.906666666666666, + "grad_norm": 0.8584237098693848, + "learning_rate": 2.4058466666666667e-05, + "loss": 1.5083631896972656, + "step": 389300 + }, + { + "epoch": 51.92, + "grad_norm": 0.9089388251304626, + "learning_rate": 2.4051800000000002e-05, + "loss": 1.5061935424804687, + "step": 389400 + }, + { + "epoch": 51.93333333333333, + "grad_norm": 0.8394655585289001, + "learning_rate": 2.4045133333333335e-05, + "loss": 1.509464569091797, + "step": 389500 + }, + { + "epoch": 51.946666666666665, + "grad_norm": 0.8279618620872498, + "learning_rate": 2.4038466666666667e-05, + "loss": 1.5109159851074219, + "step": 389600 + }, + { + "epoch": 51.96, + "grad_norm": 0.9038397669792175, + "learning_rate": 2.4031800000000003e-05, + "loss": 1.510810089111328, + "step": 389700 + }, + { + "epoch": 51.973333333333336, + "grad_norm": 0.899217963218689, + "learning_rate": 2.4025133333333335e-05, + "loss": 1.5102980041503906, + "step": 389800 + }, + { + "epoch": 51.986666666666665, + "grad_norm": 0.905498743057251, + "learning_rate": 2.4018466666666667e-05, + "loss": 1.510074920654297, + "step": 389900 + }, + { + "epoch": 52.0, + "grad_norm": 0.8077598214149475, + "learning_rate": 2.40118e-05, + "loss": 1.5141552734375, + "step": 390000 + }, + { + "epoch": 52.013333333333335, + "grad_norm": 0.8236868381500244, + "learning_rate": 2.4005133333333335e-05, + "loss": 1.444603729248047, + "step": 390100 + }, + { + "epoch": 52.026666666666664, + "grad_norm": 0.8070313930511475, + "learning_rate": 2.399846666666667e-05, + "loss": 1.4379257202148437, + "step": 390200 + }, + { + "epoch": 52.04, + "grad_norm": 0.7745979428291321, + "learning_rate": 2.39918e-05, + "loss": 1.4440399169921876, + "step": 390300 + }, + { + "epoch": 52.053333333333335, + "grad_norm": 0.8141463398933411, + "learning_rate": 2.3985133333333335e-05, + "loss": 1.4421783447265626, + "step": 390400 + }, + { + "epoch": 52.06666666666667, + "grad_norm": 0.8253259062767029, + "learning_rate": 2.3978466666666667e-05, + "loss": 1.4468896484375, + "step": 390500 + }, + { + "epoch": 52.08, + "grad_norm": 0.8300577402114868, + "learning_rate": 2.39718e-05, + "loss": 1.4401560974121095, + "step": 390600 + }, + { + "epoch": 52.093333333333334, + "grad_norm": 0.854324996471405, + "learning_rate": 2.3965200000000002e-05, + "loss": 1.4524754333496093, + "step": 390700 + }, + { + "epoch": 52.10666666666667, + "grad_norm": 0.8196046352386475, + "learning_rate": 2.3958533333333334e-05, + "loss": 1.4522889709472657, + "step": 390800 + }, + { + "epoch": 52.12, + "grad_norm": 0.8217240571975708, + "learning_rate": 2.3951866666666667e-05, + "loss": 1.4478153991699219, + "step": 390900 + }, + { + "epoch": 52.13333333333333, + "grad_norm": 0.8146061301231384, + "learning_rate": 2.3945200000000002e-05, + "loss": 1.450179443359375, + "step": 391000 + }, + { + "epoch": 52.14666666666667, + "grad_norm": 0.8496772646903992, + "learning_rate": 2.3938533333333335e-05, + "loss": 1.448777618408203, + "step": 391100 + }, + { + "epoch": 52.16, + "grad_norm": 0.8619560599327087, + "learning_rate": 2.393186666666667e-05, + "loss": 1.4484617614746094, + "step": 391200 + }, + { + "epoch": 52.17333333333333, + "grad_norm": 0.8483819365501404, + "learning_rate": 2.39252e-05, + "loss": 1.451850128173828, + "step": 391300 + }, + { + "epoch": 52.18666666666667, + "grad_norm": 0.8521955609321594, + "learning_rate": 2.3918533333333335e-05, + "loss": 1.459192657470703, + "step": 391400 + }, + { + "epoch": 52.2, + "grad_norm": 0.8739776611328125, + "learning_rate": 2.3911866666666667e-05, + "loss": 1.4575103759765624, + "step": 391500 + }, + { + "epoch": 52.21333333333333, + "grad_norm": 0.8248653411865234, + "learning_rate": 2.39052e-05, + "loss": 1.458475341796875, + "step": 391600 + }, + { + "epoch": 52.22666666666667, + "grad_norm": 0.8667312264442444, + "learning_rate": 2.3898533333333335e-05, + "loss": 1.4586300659179687, + "step": 391700 + }, + { + "epoch": 52.24, + "grad_norm": 0.8715050220489502, + "learning_rate": 2.3891866666666667e-05, + "loss": 1.4606393432617188, + "step": 391800 + }, + { + "epoch": 52.25333333333333, + "grad_norm": 0.8274866342544556, + "learning_rate": 2.3885200000000003e-05, + "loss": 1.4589753723144532, + "step": 391900 + }, + { + "epoch": 52.266666666666666, + "grad_norm": 0.8984260559082031, + "learning_rate": 2.3878533333333332e-05, + "loss": 1.4624786376953125, + "step": 392000 + }, + { + "epoch": 52.28, + "grad_norm": 0.8441860675811768, + "learning_rate": 2.3871866666666668e-05, + "loss": 1.4648696899414062, + "step": 392100 + }, + { + "epoch": 52.29333333333334, + "grad_norm": 0.8562932014465332, + "learning_rate": 2.38652e-05, + "loss": 1.4625413513183594, + "step": 392200 + }, + { + "epoch": 52.306666666666665, + "grad_norm": 0.8100069165229797, + "learning_rate": 2.3858533333333335e-05, + "loss": 1.4674345397949218, + "step": 392300 + }, + { + "epoch": 52.32, + "grad_norm": 0.879694938659668, + "learning_rate": 2.3851866666666668e-05, + "loss": 1.462593536376953, + "step": 392400 + }, + { + "epoch": 52.333333333333336, + "grad_norm": 0.8324185609817505, + "learning_rate": 2.38452e-05, + "loss": 1.4686509704589843, + "step": 392500 + }, + { + "epoch": 52.346666666666664, + "grad_norm": 0.8371502161026001, + "learning_rate": 2.3838533333333336e-05, + "loss": 1.468300323486328, + "step": 392600 + }, + { + "epoch": 52.36, + "grad_norm": 0.8931401968002319, + "learning_rate": 2.3831866666666668e-05, + "loss": 1.4668818664550782, + "step": 392700 + }, + { + "epoch": 52.373333333333335, + "grad_norm": 0.8364928960800171, + "learning_rate": 2.3825266666666667e-05, + "loss": 1.4689984130859375, + "step": 392800 + }, + { + "epoch": 52.38666666666666, + "grad_norm": 0.861511766910553, + "learning_rate": 2.3818600000000003e-05, + "loss": 1.4642536926269532, + "step": 392900 + }, + { + "epoch": 52.4, + "grad_norm": 0.8501995801925659, + "learning_rate": 2.3811933333333335e-05, + "loss": 1.4702130126953126, + "step": 393000 + }, + { + "epoch": 52.413333333333334, + "grad_norm": 0.8685861229896545, + "learning_rate": 2.3805266666666667e-05, + "loss": 1.472560577392578, + "step": 393100 + }, + { + "epoch": 52.42666666666667, + "grad_norm": 0.8422084450721741, + "learning_rate": 2.3798600000000003e-05, + "loss": 1.4753160095214843, + "step": 393200 + }, + { + "epoch": 52.44, + "grad_norm": 0.8546521663665771, + "learning_rate": 2.3791933333333335e-05, + "loss": 1.473077392578125, + "step": 393300 + }, + { + "epoch": 52.45333333333333, + "grad_norm": 0.8383651375770569, + "learning_rate": 2.3785266666666667e-05, + "loss": 1.468947296142578, + "step": 393400 + }, + { + "epoch": 52.46666666666667, + "grad_norm": 0.8365948796272278, + "learning_rate": 2.37786e-05, + "loss": 1.4694491577148439, + "step": 393500 + }, + { + "epoch": 52.48, + "grad_norm": 0.8776941299438477, + "learning_rate": 2.3771933333333335e-05, + "loss": 1.4765846252441406, + "step": 393600 + }, + { + "epoch": 52.49333333333333, + "grad_norm": 0.8972512483596802, + "learning_rate": 2.3765266666666668e-05, + "loss": 1.4798658752441407, + "step": 393700 + }, + { + "epoch": 52.50666666666667, + "grad_norm": 0.87769615650177, + "learning_rate": 2.37586e-05, + "loss": 1.4698507690429687, + "step": 393800 + }, + { + "epoch": 52.52, + "grad_norm": 0.8386378884315491, + "learning_rate": 2.3751933333333335e-05, + "loss": 1.4793057250976562, + "step": 393900 + }, + { + "epoch": 52.53333333333333, + "grad_norm": 0.85838383436203, + "learning_rate": 2.3745266666666668e-05, + "loss": 1.4752388000488281, + "step": 394000 + }, + { + "epoch": 52.54666666666667, + "grad_norm": 0.8824598789215088, + "learning_rate": 2.3738600000000003e-05, + "loss": 1.4773374938964843, + "step": 394100 + }, + { + "epoch": 52.56, + "grad_norm": 0.8590186834335327, + "learning_rate": 2.3731933333333332e-05, + "loss": 1.4786466979980468, + "step": 394200 + }, + { + "epoch": 52.57333333333333, + "grad_norm": 0.8705313801765442, + "learning_rate": 2.3725266666666668e-05, + "loss": 1.4816523742675782, + "step": 394300 + }, + { + "epoch": 52.586666666666666, + "grad_norm": 0.865382194519043, + "learning_rate": 2.3718600000000004e-05, + "loss": 1.478979034423828, + "step": 394400 + }, + { + "epoch": 52.6, + "grad_norm": 0.8217282891273499, + "learning_rate": 2.3711933333333332e-05, + "loss": 1.4787644958496093, + "step": 394500 + }, + { + "epoch": 52.61333333333333, + "grad_norm": 0.8592541217803955, + "learning_rate": 2.3705266666666668e-05, + "loss": 1.482845458984375, + "step": 394600 + }, + { + "epoch": 52.626666666666665, + "grad_norm": 0.8390605449676514, + "learning_rate": 2.36986e-05, + "loss": 1.4851654052734375, + "step": 394700 + }, + { + "epoch": 52.64, + "grad_norm": 0.9070495963096619, + "learning_rate": 2.3692e-05, + "loss": 1.4781282043457031, + "step": 394800 + }, + { + "epoch": 52.653333333333336, + "grad_norm": 0.8450265526771545, + "learning_rate": 2.3685333333333335e-05, + "loss": 1.483128204345703, + "step": 394900 + }, + { + "epoch": 52.666666666666664, + "grad_norm": 0.8272682428359985, + "learning_rate": 2.3678666666666667e-05, + "loss": 1.484342041015625, + "step": 395000 + }, + { + "epoch": 52.68, + "grad_norm": 0.9051398634910583, + "learning_rate": 2.3672000000000003e-05, + "loss": 1.4861419677734375, + "step": 395100 + }, + { + "epoch": 52.693333333333335, + "grad_norm": 0.8721572160720825, + "learning_rate": 2.3665333333333335e-05, + "loss": 1.4825254821777343, + "step": 395200 + }, + { + "epoch": 52.70666666666666, + "grad_norm": 0.8346722722053528, + "learning_rate": 2.3658666666666668e-05, + "loss": 1.486527099609375, + "step": 395300 + }, + { + "epoch": 52.72, + "grad_norm": 0.8343473076820374, + "learning_rate": 2.3652000000000003e-05, + "loss": 1.485967254638672, + "step": 395400 + }, + { + "epoch": 52.733333333333334, + "grad_norm": 0.849467396736145, + "learning_rate": 2.3645333333333332e-05, + "loss": 1.485404510498047, + "step": 395500 + }, + { + "epoch": 52.74666666666667, + "grad_norm": 0.8700857162475586, + "learning_rate": 2.3638666666666668e-05, + "loss": 1.4913349914550782, + "step": 395600 + }, + { + "epoch": 52.76, + "grad_norm": 0.9438149929046631, + "learning_rate": 2.3632e-05, + "loss": 1.4887771606445312, + "step": 395700 + }, + { + "epoch": 52.77333333333333, + "grad_norm": 0.8537826538085938, + "learning_rate": 2.3625333333333336e-05, + "loss": 1.4901506042480468, + "step": 395800 + }, + { + "epoch": 52.78666666666667, + "grad_norm": 0.8943189382553101, + "learning_rate": 2.3618666666666668e-05, + "loss": 1.4895608520507813, + "step": 395900 + }, + { + "epoch": 52.8, + "grad_norm": 0.8864601254463196, + "learning_rate": 2.3612e-05, + "loss": 1.4893939208984375, + "step": 396000 + }, + { + "epoch": 52.81333333333333, + "grad_norm": 0.8941498398780823, + "learning_rate": 2.3605333333333336e-05, + "loss": 1.4906712341308594, + "step": 396100 + }, + { + "epoch": 52.82666666666667, + "grad_norm": 0.8816115260124207, + "learning_rate": 2.3598666666666668e-05, + "loss": 1.4948838806152345, + "step": 396200 + }, + { + "epoch": 52.84, + "grad_norm": 0.8456717133522034, + "learning_rate": 2.3592e-05, + "loss": 1.4868934631347657, + "step": 396300 + }, + { + "epoch": 52.85333333333333, + "grad_norm": 0.8491533994674683, + "learning_rate": 2.3585333333333333e-05, + "loss": 1.4916058349609376, + "step": 396400 + }, + { + "epoch": 52.86666666666667, + "grad_norm": 0.8934788107872009, + "learning_rate": 2.357866666666667e-05, + "loss": 1.4947138977050782, + "step": 396500 + }, + { + "epoch": 52.88, + "grad_norm": 0.8404362797737122, + "learning_rate": 2.3572000000000004e-05, + "loss": 1.4902780151367188, + "step": 396600 + }, + { + "epoch": 52.89333333333333, + "grad_norm": 0.8693411946296692, + "learning_rate": 2.3565333333333333e-05, + "loss": 1.493137969970703, + "step": 396700 + }, + { + "epoch": 52.906666666666666, + "grad_norm": 0.8568634986877441, + "learning_rate": 2.3558733333333335e-05, + "loss": 1.4958587646484376, + "step": 396800 + }, + { + "epoch": 52.92, + "grad_norm": 0.8633151054382324, + "learning_rate": 2.3552066666666668e-05, + "loss": 1.4957908630371093, + "step": 396900 + }, + { + "epoch": 52.93333333333333, + "grad_norm": 0.8764383792877197, + "learning_rate": 2.35454e-05, + "loss": 1.498976287841797, + "step": 397000 + }, + { + "epoch": 52.946666666666665, + "grad_norm": 0.8593562841415405, + "learning_rate": 2.3538733333333336e-05, + "loss": 1.496341552734375, + "step": 397100 + }, + { + "epoch": 52.96, + "grad_norm": 0.864981472492218, + "learning_rate": 2.3532066666666668e-05, + "loss": 1.500501708984375, + "step": 397200 + }, + { + "epoch": 52.973333333333336, + "grad_norm": 0.869564950466156, + "learning_rate": 2.35254e-05, + "loss": 1.4988710021972655, + "step": 397300 + }, + { + "epoch": 52.986666666666665, + "grad_norm": 0.8883520364761353, + "learning_rate": 2.3518733333333336e-05, + "loss": 1.5024085998535157, + "step": 397400 + }, + { + "epoch": 53.0, + "grad_norm": 0.8562717437744141, + "learning_rate": 2.3512066666666668e-05, + "loss": 1.5046351623535157, + "step": 397500 + }, + { + "epoch": 53.013333333333335, + "grad_norm": 0.805515706539154, + "learning_rate": 2.3505400000000004e-05, + "loss": 1.4346591186523439, + "step": 397600 + }, + { + "epoch": 53.026666666666664, + "grad_norm": 0.80479896068573, + "learning_rate": 2.3498733333333333e-05, + "loss": 1.4268614196777343, + "step": 397700 + }, + { + "epoch": 53.04, + "grad_norm": 0.8560926914215088, + "learning_rate": 2.3492066666666668e-05, + "loss": 1.4327865600585938, + "step": 397800 + }, + { + "epoch": 53.053333333333335, + "grad_norm": 0.8021524548530579, + "learning_rate": 2.34854e-05, + "loss": 1.4293780517578125, + "step": 397900 + }, + { + "epoch": 53.06666666666667, + "grad_norm": 0.80971360206604, + "learning_rate": 2.3478733333333333e-05, + "loss": 1.4374539184570312, + "step": 398000 + }, + { + "epoch": 53.08, + "grad_norm": 0.838452935218811, + "learning_rate": 2.347206666666667e-05, + "loss": 1.4421630859375, + "step": 398100 + }, + { + "epoch": 53.093333333333334, + "grad_norm": 0.8354381322860718, + "learning_rate": 2.34654e-05, + "loss": 1.43285400390625, + "step": 398200 + }, + { + "epoch": 53.10666666666667, + "grad_norm": 0.8726691007614136, + "learning_rate": 2.3458733333333336e-05, + "loss": 1.4365280151367188, + "step": 398300 + }, + { + "epoch": 53.12, + "grad_norm": 0.8390151262283325, + "learning_rate": 2.3452066666666665e-05, + "loss": 1.4363105773925782, + "step": 398400 + }, + { + "epoch": 53.13333333333333, + "grad_norm": 0.8505403995513916, + "learning_rate": 2.34454e-05, + "loss": 1.4446278381347657, + "step": 398500 + }, + { + "epoch": 53.14666666666667, + "grad_norm": 0.8463150262832642, + "learning_rate": 2.3438733333333333e-05, + "loss": 1.4427076721191405, + "step": 398600 + }, + { + "epoch": 53.16, + "grad_norm": 0.8394322991371155, + "learning_rate": 2.343206666666667e-05, + "loss": 1.4383731079101563, + "step": 398700 + }, + { + "epoch": 53.17333333333333, + "grad_norm": 0.8394029140472412, + "learning_rate": 2.3425466666666668e-05, + "loss": 1.443642578125, + "step": 398800 + }, + { + "epoch": 53.18666666666667, + "grad_norm": 0.8809831738471985, + "learning_rate": 2.3418800000000004e-05, + "loss": 1.4458544921875, + "step": 398900 + }, + { + "epoch": 53.2, + "grad_norm": 0.9032037258148193, + "learning_rate": 2.3412133333333332e-05, + "loss": 1.4469097900390624, + "step": 399000 + }, + { + "epoch": 53.21333333333333, + "grad_norm": 0.7470035552978516, + "learning_rate": 2.3405466666666668e-05, + "loss": 1.4481082153320313, + "step": 399100 + }, + { + "epoch": 53.22666666666667, + "grad_norm": 0.8141319155693054, + "learning_rate": 2.33988e-05, + "loss": 1.4453059387207032, + "step": 399200 + }, + { + "epoch": 53.24, + "grad_norm": 0.8504648804664612, + "learning_rate": 2.3392133333333336e-05, + "loss": 1.4482171630859375, + "step": 399300 + }, + { + "epoch": 53.25333333333333, + "grad_norm": 0.8674839735031128, + "learning_rate": 2.3385466666666668e-05, + "loss": 1.4432850646972657, + "step": 399400 + }, + { + "epoch": 53.266666666666666, + "grad_norm": 0.8443961143493652, + "learning_rate": 2.33788e-05, + "loss": 1.4486787414550781, + "step": 399500 + }, + { + "epoch": 53.28, + "grad_norm": 0.8612597584724426, + "learning_rate": 2.3372133333333336e-05, + "loss": 1.4492063903808594, + "step": 399600 + }, + { + "epoch": 53.29333333333334, + "grad_norm": 0.8739829659461975, + "learning_rate": 2.336546666666667e-05, + "loss": 1.4499366760253907, + "step": 399700 + }, + { + "epoch": 53.306666666666665, + "grad_norm": 0.8640965819358826, + "learning_rate": 2.33588e-05, + "loss": 1.454102783203125, + "step": 399800 + }, + { + "epoch": 53.32, + "grad_norm": 0.830761730670929, + "learning_rate": 2.3352133333333333e-05, + "loss": 1.4512599182128907, + "step": 399900 + }, + { + "epoch": 53.333333333333336, + "grad_norm": 0.8445847034454346, + "learning_rate": 2.334546666666667e-05, + "loss": 1.451502685546875, + "step": 400000 + }, + { + "epoch": 53.346666666666664, + "grad_norm": 0.8434433937072754, + "learning_rate": 2.33388e-05, + "loss": 1.4518226623535155, + "step": 400100 + }, + { + "epoch": 53.36, + "grad_norm": 0.8982335925102234, + "learning_rate": 2.3332133333333333e-05, + "loss": 1.4535255432128906, + "step": 400200 + }, + { + "epoch": 53.373333333333335, + "grad_norm": 0.8745660781860352, + "learning_rate": 2.332546666666667e-05, + "loss": 1.4575784301757813, + "step": 400300 + }, + { + "epoch": 53.38666666666666, + "grad_norm": 0.8744916319847107, + "learning_rate": 2.33188e-05, + "loss": 1.4541175842285157, + "step": 400400 + }, + { + "epoch": 53.4, + "grad_norm": 0.8759534955024719, + "learning_rate": 2.3312133333333337e-05, + "loss": 1.4521678161621094, + "step": 400500 + }, + { + "epoch": 53.413333333333334, + "grad_norm": 0.7871354222297668, + "learning_rate": 2.3305466666666666e-05, + "loss": 1.4580287170410156, + "step": 400600 + }, + { + "epoch": 53.42666666666667, + "grad_norm": 0.8808795809745789, + "learning_rate": 2.32988e-05, + "loss": 1.4611434936523438, + "step": 400700 + }, + { + "epoch": 53.44, + "grad_norm": 0.8959735035896301, + "learning_rate": 2.32922e-05, + "loss": 1.459822998046875, + "step": 400800 + }, + { + "epoch": 53.45333333333333, + "grad_norm": 0.8618682622909546, + "learning_rate": 2.3285533333333333e-05, + "loss": 1.4601959228515624, + "step": 400900 + }, + { + "epoch": 53.46666666666667, + "grad_norm": 0.8385915160179138, + "learning_rate": 2.3278866666666668e-05, + "loss": 1.464827423095703, + "step": 401000 + }, + { + "epoch": 53.48, + "grad_norm": 0.8934867978096008, + "learning_rate": 2.3272200000000004e-05, + "loss": 1.4627699279785156, + "step": 401100 + }, + { + "epoch": 53.49333333333333, + "grad_norm": 0.846880316734314, + "learning_rate": 2.3265533333333333e-05, + "loss": 1.4640000915527345, + "step": 401200 + }, + { + "epoch": 53.50666666666667, + "grad_norm": 0.8630863428115845, + "learning_rate": 2.325886666666667e-05, + "loss": 1.460301971435547, + "step": 401300 + }, + { + "epoch": 53.52, + "grad_norm": 0.8449327945709229, + "learning_rate": 2.32522e-05, + "loss": 1.4675813293457032, + "step": 401400 + }, + { + "epoch": 53.53333333333333, + "grad_norm": 0.875411331653595, + "learning_rate": 2.3245533333333336e-05, + "loss": 1.463404541015625, + "step": 401500 + }, + { + "epoch": 53.54666666666667, + "grad_norm": 0.8588878512382507, + "learning_rate": 2.323886666666667e-05, + "loss": 1.4630206298828126, + "step": 401600 + }, + { + "epoch": 53.56, + "grad_norm": 0.8418893814086914, + "learning_rate": 2.32322e-05, + "loss": 1.4669151306152344, + "step": 401700 + }, + { + "epoch": 53.57333333333333, + "grad_norm": 0.8740350604057312, + "learning_rate": 2.3225533333333337e-05, + "loss": 1.4691087341308593, + "step": 401800 + }, + { + "epoch": 53.586666666666666, + "grad_norm": 0.8648200035095215, + "learning_rate": 2.3218866666666665e-05, + "loss": 1.4714599609375, + "step": 401900 + }, + { + "epoch": 53.6, + "grad_norm": 0.8941342830657959, + "learning_rate": 2.32122e-05, + "loss": 1.4738253784179687, + "step": 402000 + }, + { + "epoch": 53.61333333333333, + "grad_norm": 0.8258972764015198, + "learning_rate": 2.3205533333333333e-05, + "loss": 1.4741175842285157, + "step": 402100 + }, + { + "epoch": 53.626666666666665, + "grad_norm": 0.8815823793411255, + "learning_rate": 2.319886666666667e-05, + "loss": 1.4661442565917968, + "step": 402200 + }, + { + "epoch": 53.64, + "grad_norm": 0.8187025785446167, + "learning_rate": 2.31922e-05, + "loss": 1.4684117126464844, + "step": 402300 + }, + { + "epoch": 53.653333333333336, + "grad_norm": 0.8981267809867859, + "learning_rate": 2.3185533333333334e-05, + "loss": 1.4723139953613282, + "step": 402400 + }, + { + "epoch": 53.666666666666664, + "grad_norm": 0.8515080213546753, + "learning_rate": 2.317886666666667e-05, + "loss": 1.47446044921875, + "step": 402500 + }, + { + "epoch": 53.68, + "grad_norm": 0.8341559171676636, + "learning_rate": 2.31722e-05, + "loss": 1.4706192016601562, + "step": 402600 + }, + { + "epoch": 53.693333333333335, + "grad_norm": 0.8234730362892151, + "learning_rate": 2.3165533333333334e-05, + "loss": 1.4750930786132812, + "step": 402700 + }, + { + "epoch": 53.70666666666666, + "grad_norm": 0.854006290435791, + "learning_rate": 2.3158866666666666e-05, + "loss": 1.4691725158691407, + "step": 402800 + }, + { + "epoch": 53.72, + "grad_norm": 0.871201753616333, + "learning_rate": 2.3152266666666665e-05, + "loss": 1.4737733459472657, + "step": 402900 + }, + { + "epoch": 53.733333333333334, + "grad_norm": 0.8627591729164124, + "learning_rate": 2.31456e-05, + "loss": 1.4719656372070313, + "step": 403000 + }, + { + "epoch": 53.74666666666667, + "grad_norm": 0.937736988067627, + "learning_rate": 2.3138933333333333e-05, + "loss": 1.4713555908203124, + "step": 403100 + }, + { + "epoch": 53.76, + "grad_norm": 0.8441616892814636, + "learning_rate": 2.313226666666667e-05, + "loss": 1.4788174438476562, + "step": 403200 + }, + { + "epoch": 53.77333333333333, + "grad_norm": 0.8520199060440063, + "learning_rate": 2.31256e-05, + "loss": 1.4727986145019532, + "step": 403300 + }, + { + "epoch": 53.78666666666667, + "grad_norm": 0.9087309837341309, + "learning_rate": 2.3118933333333333e-05, + "loss": 1.4800141906738282, + "step": 403400 + }, + { + "epoch": 53.8, + "grad_norm": 0.8902503252029419, + "learning_rate": 2.311226666666667e-05, + "loss": 1.4767436218261718, + "step": 403500 + }, + { + "epoch": 53.81333333333333, + "grad_norm": 0.8224707245826721, + "learning_rate": 2.31056e-05, + "loss": 1.4753680419921875, + "step": 403600 + }, + { + "epoch": 53.82666666666667, + "grad_norm": 0.8903453946113586, + "learning_rate": 2.3098933333333333e-05, + "loss": 1.478042449951172, + "step": 403700 + }, + { + "epoch": 53.84, + "grad_norm": 0.8610987663269043, + "learning_rate": 2.309226666666667e-05, + "loss": 1.4786669921875, + "step": 403800 + }, + { + "epoch": 53.85333333333333, + "grad_norm": 0.8663672804832458, + "learning_rate": 2.30856e-05, + "loss": 1.4798565673828126, + "step": 403900 + }, + { + "epoch": 53.86666666666667, + "grad_norm": 0.8928523659706116, + "learning_rate": 2.3078933333333337e-05, + "loss": 1.476539306640625, + "step": 404000 + }, + { + "epoch": 53.88, + "grad_norm": 0.8405497670173645, + "learning_rate": 2.3072266666666666e-05, + "loss": 1.4814393615722656, + "step": 404100 + }, + { + "epoch": 53.89333333333333, + "grad_norm": 0.9027117490768433, + "learning_rate": 2.30656e-05, + "loss": 1.48431884765625, + "step": 404200 + }, + { + "epoch": 53.906666666666666, + "grad_norm": 0.8880442380905151, + "learning_rate": 2.3058933333333334e-05, + "loss": 1.4846881103515626, + "step": 404300 + }, + { + "epoch": 53.92, + "grad_norm": 0.8744670152664185, + "learning_rate": 2.3052266666666666e-05, + "loss": 1.48605224609375, + "step": 404400 + }, + { + "epoch": 53.93333333333333, + "grad_norm": 0.9039588570594788, + "learning_rate": 2.3045600000000002e-05, + "loss": 1.483401336669922, + "step": 404500 + }, + { + "epoch": 53.946666666666665, + "grad_norm": 0.8488764762878418, + "learning_rate": 2.3038933333333334e-05, + "loss": 1.4856008911132812, + "step": 404600 + }, + { + "epoch": 53.96, + "grad_norm": 0.8746914267539978, + "learning_rate": 2.303226666666667e-05, + "loss": 1.4808277893066406, + "step": 404700 + }, + { + "epoch": 53.973333333333336, + "grad_norm": 0.859261691570282, + "learning_rate": 2.30256e-05, + "loss": 1.481783447265625, + "step": 404800 + }, + { + "epoch": 53.986666666666665, + "grad_norm": 0.8789514899253845, + "learning_rate": 2.3019e-05, + "loss": 1.4835377502441407, + "step": 404900 + }, + { + "epoch": 54.0, + "grad_norm": 0.850490927696228, + "learning_rate": 2.3012333333333337e-05, + "loss": 1.4867596435546875, + "step": 405000 + }, + { + "epoch": 54.013333333333335, + "grad_norm": 0.8333851099014282, + "learning_rate": 2.3005666666666666e-05, + "loss": 1.4200978088378906, + "step": 405100 + }, + { + "epoch": 54.026666666666664, + "grad_norm": 0.8395662903785706, + "learning_rate": 2.2999e-05, + "loss": 1.4196142578125, + "step": 405200 + }, + { + "epoch": 54.04, + "grad_norm": 0.8212039470672607, + "learning_rate": 2.2992333333333333e-05, + "loss": 1.425306854248047, + "step": 405300 + }, + { + "epoch": 54.053333333333335, + "grad_norm": 0.7914276123046875, + "learning_rate": 2.2985666666666666e-05, + "loss": 1.4204986572265625, + "step": 405400 + }, + { + "epoch": 54.06666666666667, + "grad_norm": 0.8050218820571899, + "learning_rate": 2.2979e-05, + "loss": 1.4295758056640624, + "step": 405500 + }, + { + "epoch": 54.08, + "grad_norm": 0.8524725437164307, + "learning_rate": 2.2972333333333334e-05, + "loss": 1.4244723510742188, + "step": 405600 + }, + { + "epoch": 54.093333333333334, + "grad_norm": 0.812785804271698, + "learning_rate": 2.296566666666667e-05, + "loss": 1.4250279235839844, + "step": 405700 + }, + { + "epoch": 54.10666666666667, + "grad_norm": 0.8275474905967712, + "learning_rate": 2.2959e-05, + "loss": 1.430595703125, + "step": 405800 + }, + { + "epoch": 54.12, + "grad_norm": 0.8649910688400269, + "learning_rate": 2.2952333333333334e-05, + "loss": 1.431238250732422, + "step": 405900 + }, + { + "epoch": 54.13333333333333, + "grad_norm": 0.8428074717521667, + "learning_rate": 2.294566666666667e-05, + "loss": 1.4303498840332032, + "step": 406000 + }, + { + "epoch": 54.14666666666667, + "grad_norm": 0.8515647649765015, + "learning_rate": 2.2939000000000002e-05, + "loss": 1.4309127807617188, + "step": 406100 + }, + { + "epoch": 54.16, + "grad_norm": 0.8191271424293518, + "learning_rate": 2.2932333333333334e-05, + "loss": 1.4284707641601562, + "step": 406200 + }, + { + "epoch": 54.17333333333333, + "grad_norm": 0.869966447353363, + "learning_rate": 2.2925666666666666e-05, + "loss": 1.4276429748535155, + "step": 406300 + }, + { + "epoch": 54.18666666666667, + "grad_norm": 0.8617979288101196, + "learning_rate": 2.2919000000000002e-05, + "loss": 1.4300892639160157, + "step": 406400 + }, + { + "epoch": 54.2, + "grad_norm": 0.8274814486503601, + "learning_rate": 2.2912333333333334e-05, + "loss": 1.43626708984375, + "step": 406500 + }, + { + "epoch": 54.21333333333333, + "grad_norm": 0.8476601243019104, + "learning_rate": 2.2905666666666667e-05, + "loss": 1.43748046875, + "step": 406600 + }, + { + "epoch": 54.22666666666667, + "grad_norm": 0.8396388292312622, + "learning_rate": 2.2899000000000002e-05, + "loss": 1.4325535583496094, + "step": 406700 + }, + { + "epoch": 54.24, + "grad_norm": 0.8823912143707275, + "learning_rate": 2.2892333333333334e-05, + "loss": 1.4390623474121094, + "step": 406800 + }, + { + "epoch": 54.25333333333333, + "grad_norm": 0.8651164770126343, + "learning_rate": 2.2885733333333334e-05, + "loss": 1.434818878173828, + "step": 406900 + }, + { + "epoch": 54.266666666666666, + "grad_norm": 0.8942626714706421, + "learning_rate": 2.287906666666667e-05, + "loss": 1.4403004455566406, + "step": 407000 + }, + { + "epoch": 54.28, + "grad_norm": 0.81056809425354, + "learning_rate": 2.28724e-05, + "loss": 1.437251739501953, + "step": 407100 + }, + { + "epoch": 54.29333333333334, + "grad_norm": 0.8536822199821472, + "learning_rate": 2.2865733333333334e-05, + "loss": 1.4415220642089843, + "step": 407200 + }, + { + "epoch": 54.306666666666665, + "grad_norm": 0.850678026676178, + "learning_rate": 2.2859066666666666e-05, + "loss": 1.4421534729003906, + "step": 407300 + }, + { + "epoch": 54.32, + "grad_norm": 0.8688512444496155, + "learning_rate": 2.28524e-05, + "loss": 1.4458406066894531, + "step": 407400 + }, + { + "epoch": 54.333333333333336, + "grad_norm": 0.8030053973197937, + "learning_rate": 2.2845733333333337e-05, + "loss": 1.4411915588378905, + "step": 407500 + }, + { + "epoch": 54.346666666666664, + "grad_norm": 0.8313712477684021, + "learning_rate": 2.2839066666666666e-05, + "loss": 1.4449412536621093, + "step": 407600 + }, + { + "epoch": 54.36, + "grad_norm": 0.8125160932540894, + "learning_rate": 2.2832400000000002e-05, + "loss": 1.4425570678710937, + "step": 407700 + }, + { + "epoch": 54.373333333333335, + "grad_norm": 0.8480263352394104, + "learning_rate": 2.2825733333333334e-05, + "loss": 1.4434786987304689, + "step": 407800 + }, + { + "epoch": 54.38666666666666, + "grad_norm": 0.8349584341049194, + "learning_rate": 2.281906666666667e-05, + "loss": 1.4428903198242187, + "step": 407900 + }, + { + "epoch": 54.4, + "grad_norm": 0.8668252229690552, + "learning_rate": 2.2812400000000002e-05, + "loss": 1.4503041076660157, + "step": 408000 + }, + { + "epoch": 54.413333333333334, + "grad_norm": 0.8634394407272339, + "learning_rate": 2.2805733333333334e-05, + "loss": 1.450373992919922, + "step": 408100 + }, + { + "epoch": 54.42666666666667, + "grad_norm": 0.8869138956069946, + "learning_rate": 2.279906666666667e-05, + "loss": 1.4448956298828124, + "step": 408200 + }, + { + "epoch": 54.44, + "grad_norm": 0.8381974697113037, + "learning_rate": 2.27924e-05, + "loss": 1.4506912231445312, + "step": 408300 + }, + { + "epoch": 54.45333333333333, + "grad_norm": 0.8984852433204651, + "learning_rate": 2.2785733333333334e-05, + "loss": 1.4506108093261718, + "step": 408400 + }, + { + "epoch": 54.46666666666667, + "grad_norm": 0.8341385126113892, + "learning_rate": 2.2779066666666667e-05, + "loss": 1.4481794738769531, + "step": 408500 + }, + { + "epoch": 54.48, + "grad_norm": 0.8450107574462891, + "learning_rate": 2.2772400000000002e-05, + "loss": 1.452357635498047, + "step": 408600 + }, + { + "epoch": 54.49333333333333, + "grad_norm": 0.8467490077018738, + "learning_rate": 2.2765733333333335e-05, + "loss": 1.4530352783203124, + "step": 408700 + }, + { + "epoch": 54.50666666666667, + "grad_norm": 0.8854357004165649, + "learning_rate": 2.2759066666666667e-05, + "loss": 1.4446238708496093, + "step": 408800 + }, + { + "epoch": 54.52, + "grad_norm": 0.8822206258773804, + "learning_rate": 2.2752466666666666e-05, + "loss": 1.4520494079589843, + "step": 408900 + }, + { + "epoch": 54.53333333333333, + "grad_norm": 0.8779937028884888, + "learning_rate": 2.27458e-05, + "loss": 1.4530328369140626, + "step": 409000 + }, + { + "epoch": 54.54666666666667, + "grad_norm": 0.8283098340034485, + "learning_rate": 2.2739133333333334e-05, + "loss": 1.452464599609375, + "step": 409100 + }, + { + "epoch": 54.56, + "grad_norm": 0.9348580837249756, + "learning_rate": 2.273246666666667e-05, + "loss": 1.4534254455566407, + "step": 409200 + }, + { + "epoch": 54.57333333333333, + "grad_norm": 0.8854987621307373, + "learning_rate": 2.27258e-05, + "loss": 1.4535916137695313, + "step": 409300 + }, + { + "epoch": 54.586666666666666, + "grad_norm": 0.9117794632911682, + "learning_rate": 2.2719133333333334e-05, + "loss": 1.457483367919922, + "step": 409400 + }, + { + "epoch": 54.6, + "grad_norm": 0.8725807070732117, + "learning_rate": 2.2712466666666666e-05, + "loss": 1.4577378845214843, + "step": 409500 + }, + { + "epoch": 54.61333333333333, + "grad_norm": 0.9138243198394775, + "learning_rate": 2.2705800000000002e-05, + "loss": 1.4621884155273437, + "step": 409600 + }, + { + "epoch": 54.626666666666665, + "grad_norm": 0.8634496927261353, + "learning_rate": 2.2699133333333334e-05, + "loss": 1.4550845336914062, + "step": 409700 + }, + { + "epoch": 54.64, + "grad_norm": 0.8755178451538086, + "learning_rate": 2.2692466666666667e-05, + "loss": 1.45973388671875, + "step": 409800 + }, + { + "epoch": 54.653333333333336, + "grad_norm": 0.8733647465705872, + "learning_rate": 2.2685800000000002e-05, + "loss": 1.4567936706542968, + "step": 409900 + }, + { + "epoch": 54.666666666666664, + "grad_norm": 0.8817700147628784, + "learning_rate": 2.2679133333333335e-05, + "loss": 1.4601559448242187, + "step": 410000 + }, + { + "epoch": 54.68, + "grad_norm": 0.8758354187011719, + "learning_rate": 2.2672466666666667e-05, + "loss": 1.46127685546875, + "step": 410100 + }, + { + "epoch": 54.693333333333335, + "grad_norm": 0.8473187685012817, + "learning_rate": 2.2665800000000002e-05, + "loss": 1.4609004211425782, + "step": 410200 + }, + { + "epoch": 54.70666666666666, + "grad_norm": 0.8869526386260986, + "learning_rate": 2.2659133333333335e-05, + "loss": 1.4645802307128906, + "step": 410300 + }, + { + "epoch": 54.72, + "grad_norm": 0.8255419731140137, + "learning_rate": 2.265246666666667e-05, + "loss": 1.46389892578125, + "step": 410400 + }, + { + "epoch": 54.733333333333334, + "grad_norm": 0.831465482711792, + "learning_rate": 2.26458e-05, + "loss": 1.463885498046875, + "step": 410500 + }, + { + "epoch": 54.74666666666667, + "grad_norm": 0.9016580581665039, + "learning_rate": 2.2639133333333335e-05, + "loss": 1.4642086791992188, + "step": 410600 + }, + { + "epoch": 54.76, + "grad_norm": 0.8602574467658997, + "learning_rate": 2.2632466666666667e-05, + "loss": 1.4626669311523437, + "step": 410700 + }, + { + "epoch": 54.77333333333333, + "grad_norm": 0.8852930665016174, + "learning_rate": 2.26258e-05, + "loss": 1.467047882080078, + "step": 410800 + }, + { + "epoch": 54.78666666666667, + "grad_norm": 0.8360097408294678, + "learning_rate": 2.2619133333333335e-05, + "loss": 1.4667416381835938, + "step": 410900 + }, + { + "epoch": 54.8, + "grad_norm": 0.8857517242431641, + "learning_rate": 2.2612533333333334e-05, + "loss": 1.46333740234375, + "step": 411000 + }, + { + "epoch": 54.81333333333333, + "grad_norm": 0.8212206363677979, + "learning_rate": 2.2605866666666666e-05, + "loss": 1.467716827392578, + "step": 411100 + }, + { + "epoch": 54.82666666666667, + "grad_norm": 0.8455966711044312, + "learning_rate": 2.2599200000000002e-05, + "loss": 1.4688453674316406, + "step": 411200 + }, + { + "epoch": 54.84, + "grad_norm": 0.8679726719856262, + "learning_rate": 2.2592533333333334e-05, + "loss": 1.4663377380371094, + "step": 411300 + }, + { + "epoch": 54.85333333333333, + "grad_norm": 0.8671688437461853, + "learning_rate": 2.258586666666667e-05, + "loss": 1.4694053649902343, + "step": 411400 + }, + { + "epoch": 54.86666666666667, + "grad_norm": 0.8496808409690857, + "learning_rate": 2.25792e-05, + "loss": 1.46614013671875, + "step": 411500 + }, + { + "epoch": 54.88, + "grad_norm": 0.8471501469612122, + "learning_rate": 2.2572533333333335e-05, + "loss": 1.474624786376953, + "step": 411600 + }, + { + "epoch": 54.89333333333333, + "grad_norm": 0.8803544640541077, + "learning_rate": 2.2565866666666667e-05, + "loss": 1.4705052185058594, + "step": 411700 + }, + { + "epoch": 54.906666666666666, + "grad_norm": 0.9258813858032227, + "learning_rate": 2.25592e-05, + "loss": 1.4725639343261718, + "step": 411800 + }, + { + "epoch": 54.92, + "grad_norm": 0.8967903852462769, + "learning_rate": 2.2552533333333335e-05, + "loss": 1.4728996276855468, + "step": 411900 + }, + { + "epoch": 54.93333333333333, + "grad_norm": 0.8787213563919067, + "learning_rate": 2.2545866666666667e-05, + "loss": 1.4686712646484374, + "step": 412000 + }, + { + "epoch": 54.946666666666665, + "grad_norm": 0.8793955445289612, + "learning_rate": 2.2539200000000003e-05, + "loss": 1.4694187927246094, + "step": 412100 + }, + { + "epoch": 54.96, + "grad_norm": 0.8531497120857239, + "learning_rate": 2.2532533333333335e-05, + "loss": 1.4769473266601563, + "step": 412200 + }, + { + "epoch": 54.973333333333336, + "grad_norm": 0.8888368010520935, + "learning_rate": 2.2525866666666667e-05, + "loss": 1.4720077514648438, + "step": 412300 + }, + { + "epoch": 54.986666666666665, + "grad_norm": 0.893952488899231, + "learning_rate": 2.2519200000000003e-05, + "loss": 1.470653076171875, + "step": 412400 + }, + { + "epoch": 55.0, + "grad_norm": 0.8932615518569946, + "learning_rate": 2.2512533333333335e-05, + "loss": 1.4741424560546874, + "step": 412500 + }, + { + "epoch": 55.013333333333335, + "grad_norm": 0.8639925718307495, + "learning_rate": 2.2505866666666667e-05, + "loss": 1.4064114379882813, + "step": 412600 + }, + { + "epoch": 55.026666666666664, + "grad_norm": 0.8224576711654663, + "learning_rate": 2.24992e-05, + "loss": 1.412123260498047, + "step": 412700 + }, + { + "epoch": 55.04, + "grad_norm": 0.8823965191841125, + "learning_rate": 2.2492533333333335e-05, + "loss": 1.4082809448242188, + "step": 412800 + }, + { + "epoch": 55.053333333333335, + "grad_norm": 0.860645055770874, + "learning_rate": 2.2485866666666668e-05, + "loss": 1.4148016357421875, + "step": 412900 + }, + { + "epoch": 55.06666666666667, + "grad_norm": 0.876783549785614, + "learning_rate": 2.2479266666666667e-05, + "loss": 1.4186094665527345, + "step": 413000 + }, + { + "epoch": 55.08, + "grad_norm": 0.857022762298584, + "learning_rate": 2.2472600000000002e-05, + "loss": 1.4122817993164063, + "step": 413100 + }, + { + "epoch": 55.093333333333334, + "grad_norm": 0.8272480368614197, + "learning_rate": 2.2465933333333335e-05, + "loss": 1.4125518798828125, + "step": 413200 + }, + { + "epoch": 55.10666666666667, + "grad_norm": 0.8472641110420227, + "learning_rate": 2.2459266666666667e-05, + "loss": 1.412246551513672, + "step": 413300 + }, + { + "epoch": 55.12, + "grad_norm": 0.9146363139152527, + "learning_rate": 2.2452600000000003e-05, + "loss": 1.4172994995117187, + "step": 413400 + }, + { + "epoch": 55.13333333333333, + "grad_norm": 0.8248025178909302, + "learning_rate": 2.2445933333333335e-05, + "loss": 1.4187237548828124, + "step": 413500 + }, + { + "epoch": 55.14666666666667, + "grad_norm": 0.874271810054779, + "learning_rate": 2.2439266666666667e-05, + "loss": 1.41408935546875, + "step": 413600 + }, + { + "epoch": 55.16, + "grad_norm": 0.8196364641189575, + "learning_rate": 2.24326e-05, + "loss": 1.4154962158203126, + "step": 413700 + }, + { + "epoch": 55.17333333333333, + "grad_norm": 0.8373938798904419, + "learning_rate": 2.2425933333333335e-05, + "loss": 1.4177433776855468, + "step": 413800 + }, + { + "epoch": 55.18666666666667, + "grad_norm": 0.80357426404953, + "learning_rate": 2.241926666666667e-05, + "loss": 1.4225418090820312, + "step": 413900 + }, + { + "epoch": 55.2, + "grad_norm": 0.7960191965103149, + "learning_rate": 2.24126e-05, + "loss": 1.4238473510742187, + "step": 414000 + }, + { + "epoch": 55.21333333333333, + "grad_norm": 0.8417536020278931, + "learning_rate": 2.2405933333333335e-05, + "loss": 1.4218621826171876, + "step": 414100 + }, + { + "epoch": 55.22666666666667, + "grad_norm": 0.8823829889297485, + "learning_rate": 2.2399266666666667e-05, + "loss": 1.4251284790039063, + "step": 414200 + }, + { + "epoch": 55.24, + "grad_norm": 0.8325697183609009, + "learning_rate": 2.23926e-05, + "loss": 1.4224729919433594, + "step": 414300 + }, + { + "epoch": 55.25333333333333, + "grad_norm": 0.8879687786102295, + "learning_rate": 2.2385933333333335e-05, + "loss": 1.4293856811523438, + "step": 414400 + }, + { + "epoch": 55.266666666666666, + "grad_norm": 0.8998637199401855, + "learning_rate": 2.2379266666666668e-05, + "loss": 1.4206253051757813, + "step": 414500 + }, + { + "epoch": 55.28, + "grad_norm": 0.8645532727241516, + "learning_rate": 2.2372600000000003e-05, + "loss": 1.4249339294433594, + "step": 414600 + }, + { + "epoch": 55.29333333333334, + "grad_norm": 0.9286399483680725, + "learning_rate": 2.2365933333333332e-05, + "loss": 1.4289715576171875, + "step": 414700 + }, + { + "epoch": 55.306666666666665, + "grad_norm": 0.9058271646499634, + "learning_rate": 2.2359266666666668e-05, + "loss": 1.4306143188476563, + "step": 414800 + }, + { + "epoch": 55.32, + "grad_norm": 0.8806909918785095, + "learning_rate": 2.23526e-05, + "loss": 1.4301678466796874, + "step": 414900 + }, + { + "epoch": 55.333333333333336, + "grad_norm": 0.8449000120162964, + "learning_rate": 2.2345933333333336e-05, + "loss": 1.4272940063476562, + "step": 415000 + }, + { + "epoch": 55.346666666666664, + "grad_norm": 0.8805742263793945, + "learning_rate": 2.2339333333333335e-05, + "loss": 1.4354100036621094, + "step": 415100 + }, + { + "epoch": 55.36, + "grad_norm": 0.8670299649238586, + "learning_rate": 2.2332666666666667e-05, + "loss": 1.438927001953125, + "step": 415200 + }, + { + "epoch": 55.373333333333335, + "grad_norm": 0.8531759977340698, + "learning_rate": 2.2326e-05, + "loss": 1.4368338012695312, + "step": 415300 + }, + { + "epoch": 55.38666666666666, + "grad_norm": 0.8793957829475403, + "learning_rate": 2.2319333333333335e-05, + "loss": 1.4326312255859375, + "step": 415400 + }, + { + "epoch": 55.4, + "grad_norm": 0.8549216389656067, + "learning_rate": 2.2312666666666667e-05, + "loss": 1.4309808349609374, + "step": 415500 + }, + { + "epoch": 55.413333333333334, + "grad_norm": 0.8728709816932678, + "learning_rate": 2.2306000000000003e-05, + "loss": 1.4356973266601563, + "step": 415600 + }, + { + "epoch": 55.42666666666667, + "grad_norm": 0.8787753582000732, + "learning_rate": 2.2299333333333332e-05, + "loss": 1.435236053466797, + "step": 415700 + }, + { + "epoch": 55.44, + "grad_norm": 0.8510148525238037, + "learning_rate": 2.2292666666666667e-05, + "loss": 1.4368995666503905, + "step": 415800 + }, + { + "epoch": 55.45333333333333, + "grad_norm": 0.8644002079963684, + "learning_rate": 2.2286e-05, + "loss": 1.439784698486328, + "step": 415900 + }, + { + "epoch": 55.46666666666667, + "grad_norm": 0.8767049908638, + "learning_rate": 2.2279333333333335e-05, + "loss": 1.4385952758789062, + "step": 416000 + }, + { + "epoch": 55.48, + "grad_norm": 0.9412136673927307, + "learning_rate": 2.2272666666666668e-05, + "loss": 1.4417005920410155, + "step": 416100 + }, + { + "epoch": 55.49333333333333, + "grad_norm": 0.8540670275688171, + "learning_rate": 2.2266e-05, + "loss": 1.4380416870117188, + "step": 416200 + }, + { + "epoch": 55.50666666666667, + "grad_norm": 0.8778327107429504, + "learning_rate": 2.2259333333333336e-05, + "loss": 1.4395338439941405, + "step": 416300 + }, + { + "epoch": 55.52, + "grad_norm": 0.8598795533180237, + "learning_rate": 2.2252666666666668e-05, + "loss": 1.4399174499511718, + "step": 416400 + }, + { + "epoch": 55.53333333333333, + "grad_norm": 0.8614322543144226, + "learning_rate": 2.2246e-05, + "loss": 1.4443963623046876, + "step": 416500 + }, + { + "epoch": 55.54666666666667, + "grad_norm": 0.8454569578170776, + "learning_rate": 2.2239333333333336e-05, + "loss": 1.445623321533203, + "step": 416600 + }, + { + "epoch": 55.56, + "grad_norm": 0.8974414467811584, + "learning_rate": 2.2232666666666668e-05, + "loss": 1.4426679992675782, + "step": 416700 + }, + { + "epoch": 55.57333333333333, + "grad_norm": 0.8307322859764099, + "learning_rate": 2.2226000000000004e-05, + "loss": 1.4424739074707031, + "step": 416800 + }, + { + "epoch": 55.586666666666666, + "grad_norm": 0.8424813747406006, + "learning_rate": 2.2219333333333333e-05, + "loss": 1.4472550964355468, + "step": 416900 + }, + { + "epoch": 55.6, + "grad_norm": 0.8699893355369568, + "learning_rate": 2.2212666666666668e-05, + "loss": 1.437730712890625, + "step": 417000 + }, + { + "epoch": 55.61333333333333, + "grad_norm": 0.8717418313026428, + "learning_rate": 2.2206066666666667e-05, + "loss": 1.4472259521484374, + "step": 417100 + }, + { + "epoch": 55.626666666666665, + "grad_norm": 0.868630051612854, + "learning_rate": 2.21994e-05, + "loss": 1.4468307495117188, + "step": 417200 + }, + { + "epoch": 55.64, + "grad_norm": 0.9016746878623962, + "learning_rate": 2.2192733333333335e-05, + "loss": 1.4494607543945313, + "step": 417300 + }, + { + "epoch": 55.653333333333336, + "grad_norm": 0.8572381138801575, + "learning_rate": 2.2186066666666668e-05, + "loss": 1.4463278198242187, + "step": 417400 + }, + { + "epoch": 55.666666666666664, + "grad_norm": 0.9099103808403015, + "learning_rate": 2.21794e-05, + "loss": 1.4500961303710938, + "step": 417500 + }, + { + "epoch": 55.68, + "grad_norm": 0.9122660160064697, + "learning_rate": 2.2172733333333335e-05, + "loss": 1.4482554626464843, + "step": 417600 + }, + { + "epoch": 55.693333333333335, + "grad_norm": 0.8462883830070496, + "learning_rate": 2.2166066666666668e-05, + "loss": 1.447459716796875, + "step": 417700 + }, + { + "epoch": 55.70666666666666, + "grad_norm": 0.8462685942649841, + "learning_rate": 2.2159400000000003e-05, + "loss": 1.450800323486328, + "step": 417800 + }, + { + "epoch": 55.72, + "grad_norm": 0.8912447094917297, + "learning_rate": 2.2152733333333332e-05, + "loss": 1.4528042602539062, + "step": 417900 + }, + { + "epoch": 55.733333333333334, + "grad_norm": 0.8451516628265381, + "learning_rate": 2.2146066666666668e-05, + "loss": 1.4554351806640624, + "step": 418000 + }, + { + "epoch": 55.74666666666667, + "grad_norm": 0.8609992265701294, + "learning_rate": 2.21394e-05, + "loss": 1.4512791442871094, + "step": 418100 + }, + { + "epoch": 55.76, + "grad_norm": 0.8943572640419006, + "learning_rate": 2.2132733333333332e-05, + "loss": 1.4537530517578126, + "step": 418200 + }, + { + "epoch": 55.77333333333333, + "grad_norm": 0.8712022304534912, + "learning_rate": 2.2126066666666668e-05, + "loss": 1.4538926696777343, + "step": 418300 + }, + { + "epoch": 55.78666666666667, + "grad_norm": 0.9167302846908569, + "learning_rate": 2.21194e-05, + "loss": 1.457858123779297, + "step": 418400 + }, + { + "epoch": 55.8, + "grad_norm": 0.8773967623710632, + "learning_rate": 2.2112733333333336e-05, + "loss": 1.4523738098144532, + "step": 418500 + }, + { + "epoch": 55.81333333333333, + "grad_norm": 0.9126933217048645, + "learning_rate": 2.2106066666666668e-05, + "loss": 1.4570416259765624, + "step": 418600 + }, + { + "epoch": 55.82666666666667, + "grad_norm": 0.874134361743927, + "learning_rate": 2.20994e-05, + "loss": 1.456673583984375, + "step": 418700 + }, + { + "epoch": 55.84, + "grad_norm": 0.8987679481506348, + "learning_rate": 2.2092733333333336e-05, + "loss": 1.4605398559570313, + "step": 418800 + }, + { + "epoch": 55.85333333333333, + "grad_norm": 0.875527024269104, + "learning_rate": 2.208606666666667e-05, + "loss": 1.4604426574707032, + "step": 418900 + }, + { + "epoch": 55.86666666666667, + "grad_norm": 0.8008150458335876, + "learning_rate": 2.20794e-05, + "loss": 1.4571929931640626, + "step": 419000 + }, + { + "epoch": 55.88, + "grad_norm": 0.8355134129524231, + "learning_rate": 2.2072800000000003e-05, + "loss": 1.455338134765625, + "step": 419100 + }, + { + "epoch": 55.89333333333333, + "grad_norm": 0.8764241933822632, + "learning_rate": 2.2066133333333332e-05, + "loss": 1.454462432861328, + "step": 419200 + }, + { + "epoch": 55.906666666666666, + "grad_norm": 0.9243341088294983, + "learning_rate": 2.2059466666666668e-05, + "loss": 1.4607615661621094, + "step": 419300 + }, + { + "epoch": 55.92, + "grad_norm": 0.9032407402992249, + "learning_rate": 2.20528e-05, + "loss": 1.4592213439941406, + "step": 419400 + }, + { + "epoch": 55.93333333333333, + "grad_norm": 0.8600060939788818, + "learning_rate": 2.2046133333333336e-05, + "loss": 1.4632615661621093, + "step": 419500 + }, + { + "epoch": 55.946666666666665, + "grad_norm": 0.8559837937355042, + "learning_rate": 2.2039466666666668e-05, + "loss": 1.4599595642089844, + "step": 419600 + }, + { + "epoch": 55.96, + "grad_norm": 0.8894732594490051, + "learning_rate": 2.20328e-05, + "loss": 1.461082763671875, + "step": 419700 + }, + { + "epoch": 55.973333333333336, + "grad_norm": 0.8696638345718384, + "learning_rate": 2.2026133333333336e-05, + "loss": 1.4608134460449218, + "step": 419800 + }, + { + "epoch": 55.986666666666665, + "grad_norm": 0.9014117121696472, + "learning_rate": 2.2019466666666668e-05, + "loss": 1.4612680053710938, + "step": 419900 + }, + { + "epoch": 56.0, + "grad_norm": 0.934181272983551, + "learning_rate": 2.20128e-05, + "loss": 1.4615724182128906, + "step": 420000 + }, + { + "epoch": 56.013333333333335, + "grad_norm": 0.8485944867134094, + "learning_rate": 2.2006133333333333e-05, + "loss": 1.4035435485839844, + "step": 420100 + }, + { + "epoch": 56.026666666666664, + "grad_norm": 0.8273961544036865, + "learning_rate": 2.199946666666667e-05, + "loss": 1.4005302429199218, + "step": 420200 + }, + { + "epoch": 56.04, + "grad_norm": 0.8239974975585938, + "learning_rate": 2.1992800000000004e-05, + "loss": 1.3968911743164063, + "step": 420300 + }, + { + "epoch": 56.053333333333335, + "grad_norm": 0.8783063292503357, + "learning_rate": 2.1986133333333333e-05, + "loss": 1.3976206970214844, + "step": 420400 + }, + { + "epoch": 56.06666666666667, + "grad_norm": 0.8536005616188049, + "learning_rate": 2.197946666666667e-05, + "loss": 1.4026289367675782, + "step": 420500 + }, + { + "epoch": 56.08, + "grad_norm": 0.8284283876419067, + "learning_rate": 2.19728e-05, + "loss": 1.4048745727539063, + "step": 420600 + }, + { + "epoch": 56.093333333333334, + "grad_norm": 0.8265491724014282, + "learning_rate": 2.1966133333333333e-05, + "loss": 1.4086897277832031, + "step": 420700 + }, + { + "epoch": 56.10666666666667, + "grad_norm": 0.8136721849441528, + "learning_rate": 2.195946666666667e-05, + "loss": 1.4020260620117186, + "step": 420800 + }, + { + "epoch": 56.12, + "grad_norm": 0.8343340754508972, + "learning_rate": 2.19528e-05, + "loss": 1.4086201477050782, + "step": 420900 + }, + { + "epoch": 56.13333333333333, + "grad_norm": 0.8710994720458984, + "learning_rate": 2.1946133333333337e-05, + "loss": 1.407528839111328, + "step": 421000 + }, + { + "epoch": 56.14666666666667, + "grad_norm": 0.8886542916297913, + "learning_rate": 2.1939466666666665e-05, + "loss": 1.4091169738769531, + "step": 421100 + }, + { + "epoch": 56.16, + "grad_norm": 0.8041443228721619, + "learning_rate": 2.1932866666666668e-05, + "loss": 1.410533447265625, + "step": 421200 + }, + { + "epoch": 56.17333333333333, + "grad_norm": 0.8319317102432251, + "learning_rate": 2.1926200000000004e-05, + "loss": 1.4141780090332032, + "step": 421300 + }, + { + "epoch": 56.18666666666667, + "grad_norm": 0.8654050827026367, + "learning_rate": 2.1919533333333333e-05, + "loss": 1.417386016845703, + "step": 421400 + }, + { + "epoch": 56.2, + "grad_norm": 0.889337420463562, + "learning_rate": 2.1912866666666668e-05, + "loss": 1.411129150390625, + "step": 421500 + }, + { + "epoch": 56.21333333333333, + "grad_norm": 0.8444649577140808, + "learning_rate": 2.19062e-05, + "loss": 1.4155207824707032, + "step": 421600 + }, + { + "epoch": 56.22666666666667, + "grad_norm": 0.861868143081665, + "learning_rate": 2.1899533333333333e-05, + "loss": 1.417073974609375, + "step": 421700 + }, + { + "epoch": 56.24, + "grad_norm": 0.8739286661148071, + "learning_rate": 2.189286666666667e-05, + "loss": 1.4147346496582032, + "step": 421800 + }, + { + "epoch": 56.25333333333333, + "grad_norm": 0.8628485798835754, + "learning_rate": 2.18862e-05, + "loss": 1.416077880859375, + "step": 421900 + }, + { + "epoch": 56.266666666666666, + "grad_norm": 0.8855887055397034, + "learning_rate": 2.1879533333333336e-05, + "loss": 1.4169512939453126, + "step": 422000 + }, + { + "epoch": 56.28, + "grad_norm": 0.8673357963562012, + "learning_rate": 2.1872866666666665e-05, + "loss": 1.4148150634765626, + "step": 422100 + }, + { + "epoch": 56.29333333333334, + "grad_norm": 0.8554036617279053, + "learning_rate": 2.18662e-05, + "loss": 1.420289306640625, + "step": 422200 + }, + { + "epoch": 56.306666666666665, + "grad_norm": 0.8555299639701843, + "learning_rate": 2.1859533333333333e-05, + "loss": 1.4149293518066406, + "step": 422300 + }, + { + "epoch": 56.32, + "grad_norm": 0.9046564102172852, + "learning_rate": 2.185286666666667e-05, + "loss": 1.4149856567382812, + "step": 422400 + }, + { + "epoch": 56.333333333333336, + "grad_norm": 0.8520922660827637, + "learning_rate": 2.18462e-05, + "loss": 1.4218994140625, + "step": 422500 + }, + { + "epoch": 56.346666666666664, + "grad_norm": 0.8806357383728027, + "learning_rate": 2.1839533333333333e-05, + "loss": 1.4222920227050782, + "step": 422600 + }, + { + "epoch": 56.36, + "grad_norm": 0.9276759028434753, + "learning_rate": 2.183286666666667e-05, + "loss": 1.4219160461425782, + "step": 422700 + }, + { + "epoch": 56.373333333333335, + "grad_norm": 0.8782113194465637, + "learning_rate": 2.18262e-05, + "loss": 1.4204927062988282, + "step": 422800 + }, + { + "epoch": 56.38666666666666, + "grad_norm": 0.8631399869918823, + "learning_rate": 2.1819533333333333e-05, + "loss": 1.4249102783203125, + "step": 422900 + }, + { + "epoch": 56.4, + "grad_norm": 0.8936483860015869, + "learning_rate": 2.181286666666667e-05, + "loss": 1.4240966796875, + "step": 423000 + }, + { + "epoch": 56.413333333333334, + "grad_norm": 0.8748154640197754, + "learning_rate": 2.18062e-05, + "loss": 1.4252513122558594, + "step": 423100 + }, + { + "epoch": 56.42666666666667, + "grad_norm": 0.8596419095993042, + "learning_rate": 2.17996e-05, + "loss": 1.4259548950195313, + "step": 423200 + }, + { + "epoch": 56.44, + "grad_norm": 0.8839332461357117, + "learning_rate": 2.1792933333333336e-05, + "loss": 1.4302554321289063, + "step": 423300 + }, + { + "epoch": 56.45333333333333, + "grad_norm": 0.8390047550201416, + "learning_rate": 2.178626666666667e-05, + "loss": 1.4292677307128907, + "step": 423400 + }, + { + "epoch": 56.46666666666667, + "grad_norm": 0.8832520842552185, + "learning_rate": 2.17796e-05, + "loss": 1.426236114501953, + "step": 423500 + }, + { + "epoch": 56.48, + "grad_norm": 0.8132560849189758, + "learning_rate": 2.1772933333333333e-05, + "loss": 1.434789581298828, + "step": 423600 + }, + { + "epoch": 56.49333333333333, + "grad_norm": 0.8635860085487366, + "learning_rate": 2.176626666666667e-05, + "loss": 1.4259471130371093, + "step": 423700 + }, + { + "epoch": 56.50666666666667, + "grad_norm": 0.9170502424240112, + "learning_rate": 2.17596e-05, + "loss": 1.4286590576171876, + "step": 423800 + }, + { + "epoch": 56.52, + "grad_norm": 0.8722943663597107, + "learning_rate": 2.1752933333333333e-05, + "loss": 1.4344573974609376, + "step": 423900 + }, + { + "epoch": 56.53333333333333, + "grad_norm": 0.8727033138275146, + "learning_rate": 2.174626666666667e-05, + "loss": 1.4311439514160156, + "step": 424000 + }, + { + "epoch": 56.54666666666667, + "grad_norm": 0.8507550358772278, + "learning_rate": 2.17396e-05, + "loss": 1.4281155395507812, + "step": 424100 + }, + { + "epoch": 56.56, + "grad_norm": 0.9152675271034241, + "learning_rate": 2.1732933333333337e-05, + "loss": 1.4395048522949219, + "step": 424200 + }, + { + "epoch": 56.57333333333333, + "grad_norm": 0.8492377400398254, + "learning_rate": 2.1726266666666666e-05, + "loss": 1.43418212890625, + "step": 424300 + }, + { + "epoch": 56.586666666666666, + "grad_norm": 0.9120678901672363, + "learning_rate": 2.17196e-05, + "loss": 1.4339697265625, + "step": 424400 + }, + { + "epoch": 56.6, + "grad_norm": 0.9099976420402527, + "learning_rate": 2.1712933333333333e-05, + "loss": 1.4328225708007813, + "step": 424500 + }, + { + "epoch": 56.61333333333333, + "grad_norm": 0.846580445766449, + "learning_rate": 2.1706266666666666e-05, + "loss": 1.4381451416015625, + "step": 424600 + }, + { + "epoch": 56.626666666666665, + "grad_norm": 0.8989025950431824, + "learning_rate": 2.16996e-05, + "loss": 1.4314509582519532, + "step": 424700 + }, + { + "epoch": 56.64, + "grad_norm": 0.9448224306106567, + "learning_rate": 2.1692933333333334e-05, + "loss": 1.438125457763672, + "step": 424800 + }, + { + "epoch": 56.653333333333336, + "grad_norm": 0.8047678470611572, + "learning_rate": 2.168626666666667e-05, + "loss": 1.4364503479003907, + "step": 424900 + }, + { + "epoch": 56.666666666666664, + "grad_norm": 0.8994755148887634, + "learning_rate": 2.1679599999999998e-05, + "loss": 1.4405902099609376, + "step": 425000 + }, + { + "epoch": 56.68, + "grad_norm": 0.8442021608352661, + "learning_rate": 2.1672933333333334e-05, + "loss": 1.4396397399902343, + "step": 425100 + }, + { + "epoch": 56.693333333333335, + "grad_norm": 0.8690568804740906, + "learning_rate": 2.166626666666667e-05, + "loss": 1.443184814453125, + "step": 425200 + }, + { + "epoch": 56.70666666666666, + "grad_norm": 0.861370325088501, + "learning_rate": 2.165966666666667e-05, + "loss": 1.4361355590820313, + "step": 425300 + }, + { + "epoch": 56.72, + "grad_norm": 0.8897193670272827, + "learning_rate": 2.1653e-05, + "loss": 1.4400205993652344, + "step": 425400 + }, + { + "epoch": 56.733333333333334, + "grad_norm": 0.8475616574287415, + "learning_rate": 2.1646333333333337e-05, + "loss": 1.4406410217285157, + "step": 425500 + }, + { + "epoch": 56.74666666666667, + "grad_norm": 0.8466712236404419, + "learning_rate": 2.1639666666666665e-05, + "loss": 1.441578369140625, + "step": 425600 + }, + { + "epoch": 56.76, + "grad_norm": 0.9051734805107117, + "learning_rate": 2.1633e-05, + "loss": 1.4405007934570313, + "step": 425700 + }, + { + "epoch": 56.77333333333333, + "grad_norm": 0.8877379894256592, + "learning_rate": 2.1626333333333333e-05, + "loss": 1.4456788635253905, + "step": 425800 + }, + { + "epoch": 56.78666666666667, + "grad_norm": 0.914776623249054, + "learning_rate": 2.161966666666667e-05, + "loss": 1.4449098205566406, + "step": 425900 + }, + { + "epoch": 56.8, + "grad_norm": 0.8987554311752319, + "learning_rate": 2.1613e-05, + "loss": 1.445513916015625, + "step": 426000 + }, + { + "epoch": 56.81333333333333, + "grad_norm": 0.9004293084144592, + "learning_rate": 2.1606333333333334e-05, + "loss": 1.4431794738769532, + "step": 426100 + }, + { + "epoch": 56.82666666666667, + "grad_norm": 0.8796115517616272, + "learning_rate": 2.159966666666667e-05, + "loss": 1.444052734375, + "step": 426200 + }, + { + "epoch": 56.84, + "grad_norm": 0.8850584030151367, + "learning_rate": 2.1593e-05, + "loss": 1.442793426513672, + "step": 426300 + }, + { + "epoch": 56.85333333333333, + "grad_norm": 0.8874107003211975, + "learning_rate": 2.1586333333333334e-05, + "loss": 1.445687255859375, + "step": 426400 + }, + { + "epoch": 56.86666666666667, + "grad_norm": 0.8388593196868896, + "learning_rate": 2.1579666666666666e-05, + "loss": 1.447087860107422, + "step": 426500 + }, + { + "epoch": 56.88, + "grad_norm": 0.8567925095558167, + "learning_rate": 2.1573e-05, + "loss": 1.4455339050292968, + "step": 426600 + }, + { + "epoch": 56.89333333333333, + "grad_norm": 0.905091404914856, + "learning_rate": 2.1566333333333334e-05, + "loss": 1.4496022033691407, + "step": 426700 + }, + { + "epoch": 56.906666666666666, + "grad_norm": 0.851197361946106, + "learning_rate": 2.1559666666666666e-05, + "loss": 1.4433763122558594, + "step": 426800 + }, + { + "epoch": 56.92, + "grad_norm": 0.9563655257225037, + "learning_rate": 2.1553000000000002e-05, + "loss": 1.445602264404297, + "step": 426900 + }, + { + "epoch": 56.93333333333333, + "grad_norm": 0.8808197379112244, + "learning_rate": 2.1546333333333334e-05, + "loss": 1.4505947875976561, + "step": 427000 + }, + { + "epoch": 56.946666666666665, + "grad_norm": 0.8648757338523865, + "learning_rate": 2.1539666666666666e-05, + "loss": 1.4465037536621095, + "step": 427100 + }, + { + "epoch": 56.96, + "grad_norm": 0.8864550590515137, + "learning_rate": 2.1533000000000002e-05, + "loss": 1.4506777954101562, + "step": 427200 + }, + { + "epoch": 56.973333333333336, + "grad_norm": 0.8874581456184387, + "learning_rate": 2.15264e-05, + "loss": 1.449134063720703, + "step": 427300 + }, + { + "epoch": 56.986666666666665, + "grad_norm": 0.903593897819519, + "learning_rate": 2.1519733333333333e-05, + "loss": 1.4498974609375, + "step": 427400 + }, + { + "epoch": 57.0, + "grad_norm": 0.8335684537887573, + "learning_rate": 2.151306666666667e-05, + "loss": 1.4513101196289062, + "step": 427500 + }, + { + "epoch": 57.013333333333335, + "grad_norm": 0.8453123569488525, + "learning_rate": 2.15064e-05, + "loss": 1.3873635864257812, + "step": 427600 + }, + { + "epoch": 57.026666666666664, + "grad_norm": 0.892532229423523, + "learning_rate": 2.1499733333333337e-05, + "loss": 1.3913172912597656, + "step": 427700 + }, + { + "epoch": 57.04, + "grad_norm": 0.8891882300376892, + "learning_rate": 2.1493066666666666e-05, + "loss": 1.3940931701660155, + "step": 427800 + }, + { + "epoch": 57.053333333333335, + "grad_norm": 0.8671453595161438, + "learning_rate": 2.14864e-05, + "loss": 1.392352294921875, + "step": 427900 + }, + { + "epoch": 57.06666666666667, + "grad_norm": 0.8824362754821777, + "learning_rate": 2.1479733333333334e-05, + "loss": 1.3905747985839845, + "step": 428000 + }, + { + "epoch": 57.08, + "grad_norm": 0.8569581508636475, + "learning_rate": 2.1473066666666666e-05, + "loss": 1.3913356018066407, + "step": 428100 + }, + { + "epoch": 57.093333333333334, + "grad_norm": 0.8542196750640869, + "learning_rate": 2.14664e-05, + "loss": 1.39747314453125, + "step": 428200 + }, + { + "epoch": 57.10666666666667, + "grad_norm": 0.8506782054901123, + "learning_rate": 2.1459733333333334e-05, + "loss": 1.3980393981933594, + "step": 428300 + }, + { + "epoch": 57.12, + "grad_norm": 0.8215917944908142, + "learning_rate": 2.145306666666667e-05, + "loss": 1.3985368347167968, + "step": 428400 + }, + { + "epoch": 57.13333333333333, + "grad_norm": 0.8183411955833435, + "learning_rate": 2.14464e-05, + "loss": 1.3943287658691406, + "step": 428500 + }, + { + "epoch": 57.14666666666667, + "grad_norm": 0.8586587309837341, + "learning_rate": 2.1439733333333334e-05, + "loss": 1.3957505798339844, + "step": 428600 + }, + { + "epoch": 57.16, + "grad_norm": 0.873313307762146, + "learning_rate": 2.1433066666666666e-05, + "loss": 1.3994070434570312, + "step": 428700 + }, + { + "epoch": 57.17333333333333, + "grad_norm": 0.8390573263168335, + "learning_rate": 2.1426400000000002e-05, + "loss": 1.402987060546875, + "step": 428800 + }, + { + "epoch": 57.18666666666667, + "grad_norm": 0.8784012794494629, + "learning_rate": 2.1419733333333334e-05, + "loss": 1.4021636962890625, + "step": 428900 + }, + { + "epoch": 57.2, + "grad_norm": 0.8398882150650024, + "learning_rate": 2.1413066666666667e-05, + "loss": 1.4004843139648437, + "step": 429000 + }, + { + "epoch": 57.21333333333333, + "grad_norm": 0.8533040285110474, + "learning_rate": 2.1406400000000002e-05, + "loss": 1.4055615234375, + "step": 429100 + }, + { + "epoch": 57.22666666666667, + "grad_norm": 0.8388049602508545, + "learning_rate": 2.1399733333333335e-05, + "loss": 1.4073393249511719, + "step": 429200 + }, + { + "epoch": 57.24, + "grad_norm": 0.8552389740943909, + "learning_rate": 2.1393133333333334e-05, + "loss": 1.404532928466797, + "step": 429300 + }, + { + "epoch": 57.25333333333333, + "grad_norm": 0.8817448019981384, + "learning_rate": 2.138646666666667e-05, + "loss": 1.4020608520507813, + "step": 429400 + }, + { + "epoch": 57.266666666666666, + "grad_norm": 0.8578885793685913, + "learning_rate": 2.1379799999999998e-05, + "loss": 1.4063929748535156, + "step": 429500 + }, + { + "epoch": 57.28, + "grad_norm": 0.8610025644302368, + "learning_rate": 2.1373133333333334e-05, + "loss": 1.4068283081054687, + "step": 429600 + }, + { + "epoch": 57.29333333333334, + "grad_norm": 0.9056425094604492, + "learning_rate": 2.136646666666667e-05, + "loss": 1.4069955444335938, + "step": 429700 + }, + { + "epoch": 57.306666666666665, + "grad_norm": 0.8811911344528198, + "learning_rate": 2.1359800000000002e-05, + "loss": 1.4090301513671875, + "step": 429800 + }, + { + "epoch": 57.32, + "grad_norm": 0.8970731496810913, + "learning_rate": 2.1353133333333334e-05, + "loss": 1.41206298828125, + "step": 429900 + }, + { + "epoch": 57.333333333333336, + "grad_norm": 0.8743362426757812, + "learning_rate": 2.1346466666666666e-05, + "loss": 1.4041651916503906, + "step": 430000 + }, + { + "epoch": 57.346666666666664, + "grad_norm": 0.8430378437042236, + "learning_rate": 2.1339800000000002e-05, + "loss": 1.4116816711425781, + "step": 430100 + }, + { + "epoch": 57.36, + "grad_norm": 0.8529326915740967, + "learning_rate": 2.1333133333333334e-05, + "loss": 1.409462890625, + "step": 430200 + }, + { + "epoch": 57.373333333333335, + "grad_norm": 0.8731967210769653, + "learning_rate": 2.1326466666666666e-05, + "loss": 1.4143032836914062, + "step": 430300 + }, + { + "epoch": 57.38666666666666, + "grad_norm": 0.8534825444221497, + "learning_rate": 2.1319800000000002e-05, + "loss": 1.411023406982422, + "step": 430400 + }, + { + "epoch": 57.4, + "grad_norm": 0.8644077777862549, + "learning_rate": 2.1313133333333334e-05, + "loss": 1.4160220336914062, + "step": 430500 + }, + { + "epoch": 57.413333333333334, + "grad_norm": 0.875743567943573, + "learning_rate": 2.130646666666667e-05, + "loss": 1.4175732421875, + "step": 430600 + }, + { + "epoch": 57.42666666666667, + "grad_norm": 0.8708527088165283, + "learning_rate": 2.12998e-05, + "loss": 1.4122679138183594, + "step": 430700 + }, + { + "epoch": 57.44, + "grad_norm": 0.8806803822517395, + "learning_rate": 2.1293133333333335e-05, + "loss": 1.4234275817871094, + "step": 430800 + }, + { + "epoch": 57.45333333333333, + "grad_norm": 0.8835158348083496, + "learning_rate": 2.1286466666666667e-05, + "loss": 1.4142134094238281, + "step": 430900 + }, + { + "epoch": 57.46666666666667, + "grad_norm": 0.8983718752861023, + "learning_rate": 2.12798e-05, + "loss": 1.4219779968261719, + "step": 431000 + }, + { + "epoch": 57.48, + "grad_norm": 0.8711386322975159, + "learning_rate": 2.1273133333333335e-05, + "loss": 1.4237786865234374, + "step": 431100 + }, + { + "epoch": 57.49333333333333, + "grad_norm": 0.8646780848503113, + "learning_rate": 2.1266466666666667e-05, + "loss": 1.4190533447265625, + "step": 431200 + }, + { + "epoch": 57.50666666666667, + "grad_norm": 0.863576352596283, + "learning_rate": 2.1259800000000003e-05, + "loss": 1.4201698303222656, + "step": 431300 + }, + { + "epoch": 57.52, + "grad_norm": 0.8763824105262756, + "learning_rate": 2.1253200000000002e-05, + "loss": 1.4242768859863282, + "step": 431400 + }, + { + "epoch": 57.53333333333333, + "grad_norm": 0.8644374012947083, + "learning_rate": 2.1246533333333334e-05, + "loss": 1.4194601440429688, + "step": 431500 + }, + { + "epoch": 57.54666666666667, + "grad_norm": 0.868061900138855, + "learning_rate": 2.123986666666667e-05, + "loss": 1.4254354858398437, + "step": 431600 + }, + { + "epoch": 57.56, + "grad_norm": 0.8473526239395142, + "learning_rate": 2.1233200000000002e-05, + "loss": 1.4216069030761718, + "step": 431700 + }, + { + "epoch": 57.57333333333333, + "grad_norm": 0.8738334774971008, + "learning_rate": 2.1226533333333334e-05, + "loss": 1.4271109008789062, + "step": 431800 + }, + { + "epoch": 57.586666666666666, + "grad_norm": 0.8677930235862732, + "learning_rate": 2.121986666666667e-05, + "loss": 1.4229975891113282, + "step": 431900 + }, + { + "epoch": 57.6, + "grad_norm": 0.8332538604736328, + "learning_rate": 2.12132e-05, + "loss": 1.426571807861328, + "step": 432000 + }, + { + "epoch": 57.61333333333333, + "grad_norm": 0.8856222033500671, + "learning_rate": 2.1206533333333334e-05, + "loss": 1.429196319580078, + "step": 432100 + }, + { + "epoch": 57.626666666666665, + "grad_norm": 0.8730775713920593, + "learning_rate": 2.1199866666666667e-05, + "loss": 1.4241506958007812, + "step": 432200 + }, + { + "epoch": 57.64, + "grad_norm": 0.8760560750961304, + "learning_rate": 2.1193200000000002e-05, + "loss": 1.4274005126953124, + "step": 432300 + }, + { + "epoch": 57.653333333333336, + "grad_norm": 0.8515337705612183, + "learning_rate": 2.1186533333333335e-05, + "loss": 1.4225738525390625, + "step": 432400 + }, + { + "epoch": 57.666666666666664, + "grad_norm": 0.8787199854850769, + "learning_rate": 2.1179866666666667e-05, + "loss": 1.4261997985839843, + "step": 432500 + }, + { + "epoch": 57.68, + "grad_norm": 0.8842175006866455, + "learning_rate": 2.1173200000000003e-05, + "loss": 1.4274266052246094, + "step": 432600 + }, + { + "epoch": 57.693333333333335, + "grad_norm": 0.8846668601036072, + "learning_rate": 2.1166533333333335e-05, + "loss": 1.427220001220703, + "step": 432700 + }, + { + "epoch": 57.70666666666666, + "grad_norm": 0.8565542101860046, + "learning_rate": 2.1159866666666667e-05, + "loss": 1.431591796875, + "step": 432800 + }, + { + "epoch": 57.72, + "grad_norm": 0.9259876608848572, + "learning_rate": 2.11532e-05, + "loss": 1.427034912109375, + "step": 432900 + }, + { + "epoch": 57.733333333333334, + "grad_norm": 0.8708376884460449, + "learning_rate": 2.1146533333333335e-05, + "loss": 1.4335169982910156, + "step": 433000 + }, + { + "epoch": 57.74666666666667, + "grad_norm": 0.865197479724884, + "learning_rate": 2.1139866666666667e-05, + "loss": 1.434145965576172, + "step": 433100 + }, + { + "epoch": 57.76, + "grad_norm": 0.8874461650848389, + "learning_rate": 2.11332e-05, + "loss": 1.43084228515625, + "step": 433200 + }, + { + "epoch": 57.77333333333333, + "grad_norm": 0.8610783219337463, + "learning_rate": 2.1126533333333335e-05, + "loss": 1.4350297546386719, + "step": 433300 + }, + { + "epoch": 57.78666666666667, + "grad_norm": 0.8552179932594299, + "learning_rate": 2.1119933333333334e-05, + "loss": 1.4353605651855468, + "step": 433400 + }, + { + "epoch": 57.8, + "grad_norm": 0.8936259746551514, + "learning_rate": 2.1113266666666667e-05, + "loss": 1.4357664489746094, + "step": 433500 + }, + { + "epoch": 57.81333333333333, + "grad_norm": 0.8511193990707397, + "learning_rate": 2.1106600000000002e-05, + "loss": 1.4354666137695313, + "step": 433600 + }, + { + "epoch": 57.82666666666667, + "grad_norm": 0.8757380247116089, + "learning_rate": 2.1099933333333334e-05, + "loss": 1.440109405517578, + "step": 433700 + }, + { + "epoch": 57.84, + "grad_norm": 0.921246349811554, + "learning_rate": 2.1093266666666667e-05, + "loss": 1.4303897094726563, + "step": 433800 + }, + { + "epoch": 57.85333333333333, + "grad_norm": 0.9038046002388, + "learning_rate": 2.1086600000000002e-05, + "loss": 1.43283203125, + "step": 433900 + }, + { + "epoch": 57.86666666666667, + "grad_norm": 0.9284953474998474, + "learning_rate": 2.1079933333333335e-05, + "loss": 1.439587860107422, + "step": 434000 + }, + { + "epoch": 57.88, + "grad_norm": 0.8677544593811035, + "learning_rate": 2.107326666666667e-05, + "loss": 1.432835693359375, + "step": 434100 + }, + { + "epoch": 57.89333333333333, + "grad_norm": 0.8702775239944458, + "learning_rate": 2.10666e-05, + "loss": 1.4360232543945313, + "step": 434200 + }, + { + "epoch": 57.906666666666666, + "grad_norm": 0.9052044153213501, + "learning_rate": 2.1059933333333335e-05, + "loss": 1.4358711242675781, + "step": 434300 + }, + { + "epoch": 57.92, + "grad_norm": 0.8295144438743591, + "learning_rate": 2.1053266666666667e-05, + "loss": 1.4382148742675782, + "step": 434400 + }, + { + "epoch": 57.93333333333333, + "grad_norm": 0.8926219344139099, + "learning_rate": 2.10466e-05, + "loss": 1.4372708129882812, + "step": 434500 + }, + { + "epoch": 57.946666666666665, + "grad_norm": 0.8741112351417542, + "learning_rate": 2.1039933333333335e-05, + "loss": 1.4404176330566407, + "step": 434600 + }, + { + "epoch": 57.96, + "grad_norm": 0.8536452651023865, + "learning_rate": 2.1033266666666667e-05, + "loss": 1.4389004516601562, + "step": 434700 + }, + { + "epoch": 57.973333333333336, + "grad_norm": 0.8683491945266724, + "learning_rate": 2.1026600000000003e-05, + "loss": 1.4402836608886718, + "step": 434800 + }, + { + "epoch": 57.986666666666665, + "grad_norm": 0.8583080172538757, + "learning_rate": 2.1019933333333332e-05, + "loss": 1.4441624450683594, + "step": 434900 + }, + { + "epoch": 58.0, + "grad_norm": 0.8596425652503967, + "learning_rate": 2.1013266666666667e-05, + "loss": 1.4424615478515626, + "step": 435000 + }, + { + "epoch": 58.013333333333335, + "grad_norm": 0.8734589219093323, + "learning_rate": 2.10066e-05, + "loss": 1.3811009216308594, + "step": 435100 + }, + { + "epoch": 58.026666666666664, + "grad_norm": 0.8984307050704956, + "learning_rate": 2.0999933333333335e-05, + "loss": 1.3851551818847656, + "step": 435200 + }, + { + "epoch": 58.04, + "grad_norm": 0.870807945728302, + "learning_rate": 2.0993266666666668e-05, + "loss": 1.383925323486328, + "step": 435300 + }, + { + "epoch": 58.053333333333335, + "grad_norm": 0.8193836808204651, + "learning_rate": 2.0986666666666667e-05, + "loss": 1.3839663696289062, + "step": 435400 + }, + { + "epoch": 58.06666666666667, + "grad_norm": 0.8609771132469177, + "learning_rate": 2.098e-05, + "loss": 1.3863719177246094, + "step": 435500 + }, + { + "epoch": 58.08, + "grad_norm": 0.8306235074996948, + "learning_rate": 2.0973333333333335e-05, + "loss": 1.3829759216308595, + "step": 435600 + }, + { + "epoch": 58.093333333333334, + "grad_norm": 0.8595555424690247, + "learning_rate": 2.0966666666666667e-05, + "loss": 1.3847052001953124, + "step": 435700 + }, + { + "epoch": 58.10666666666667, + "grad_norm": 0.8563652634620667, + "learning_rate": 2.0960000000000003e-05, + "loss": 1.386361083984375, + "step": 435800 + }, + { + "epoch": 58.12, + "grad_norm": 0.8658237457275391, + "learning_rate": 2.095333333333333e-05, + "loss": 1.388785400390625, + "step": 435900 + }, + { + "epoch": 58.13333333333333, + "grad_norm": 0.8627846837043762, + "learning_rate": 2.0946666666666667e-05, + "loss": 1.393494873046875, + "step": 436000 + }, + { + "epoch": 58.14666666666667, + "grad_norm": 0.8761343955993652, + "learning_rate": 2.0940000000000003e-05, + "loss": 1.3921939086914064, + "step": 436100 + }, + { + "epoch": 58.16, + "grad_norm": 0.8637253642082214, + "learning_rate": 2.0933333333333335e-05, + "loss": 1.3898490905761718, + "step": 436200 + }, + { + "epoch": 58.17333333333333, + "grad_norm": 0.8888680934906006, + "learning_rate": 2.0926666666666667e-05, + "loss": 1.3912742614746094, + "step": 436300 + }, + { + "epoch": 58.18666666666667, + "grad_norm": 0.8735535144805908, + "learning_rate": 2.092e-05, + "loss": 1.3885147094726562, + "step": 436400 + }, + { + "epoch": 58.2, + "grad_norm": 0.8976262807846069, + "learning_rate": 2.0913333333333335e-05, + "loss": 1.3988859558105469, + "step": 436500 + }, + { + "epoch": 58.21333333333333, + "grad_norm": 0.8783442974090576, + "learning_rate": 2.0906666666666668e-05, + "loss": 1.3914523315429688, + "step": 436600 + }, + { + "epoch": 58.22666666666667, + "grad_norm": 0.8859887719154358, + "learning_rate": 2.09e-05, + "loss": 1.390671844482422, + "step": 436700 + }, + { + "epoch": 58.24, + "grad_norm": 0.8783445358276367, + "learning_rate": 2.0893333333333335e-05, + "loss": 1.3934185791015625, + "step": 436800 + }, + { + "epoch": 58.25333333333333, + "grad_norm": 0.8454920053482056, + "learning_rate": 2.0886666666666668e-05, + "loss": 1.3974107360839845, + "step": 436900 + }, + { + "epoch": 58.266666666666666, + "grad_norm": 0.895043134689331, + "learning_rate": 2.0880000000000003e-05, + "loss": 1.3971817016601562, + "step": 437000 + }, + { + "epoch": 58.28, + "grad_norm": 0.9361661076545715, + "learning_rate": 2.0873333333333332e-05, + "loss": 1.39865234375, + "step": 437100 + }, + { + "epoch": 58.29333333333334, + "grad_norm": 0.8844481110572815, + "learning_rate": 2.0866666666666668e-05, + "loss": 1.3997993469238281, + "step": 437200 + }, + { + "epoch": 58.306666666666665, + "grad_norm": 0.7877687215805054, + "learning_rate": 2.086e-05, + "loss": 1.4015354919433594, + "step": 437300 + }, + { + "epoch": 58.32, + "grad_norm": 0.7823760509490967, + "learning_rate": 2.08534e-05, + "loss": 1.3993243408203124, + "step": 437400 + }, + { + "epoch": 58.333333333333336, + "grad_norm": 0.8986889123916626, + "learning_rate": 2.0846733333333335e-05, + "loss": 1.402682342529297, + "step": 437500 + }, + { + "epoch": 58.346666666666664, + "grad_norm": 0.8212663531303406, + "learning_rate": 2.0840066666666667e-05, + "loss": 1.4034190368652344, + "step": 437600 + }, + { + "epoch": 58.36, + "grad_norm": 0.865929365158081, + "learning_rate": 2.08334e-05, + "loss": 1.4008261108398437, + "step": 437700 + }, + { + "epoch": 58.373333333333335, + "grad_norm": 0.8731956481933594, + "learning_rate": 2.0826733333333335e-05, + "loss": 1.4043699645996093, + "step": 437800 + }, + { + "epoch": 58.38666666666666, + "grad_norm": 0.8673787117004395, + "learning_rate": 2.0820066666666667e-05, + "loss": 1.4046339416503906, + "step": 437900 + }, + { + "epoch": 58.4, + "grad_norm": 0.8785029053688049, + "learning_rate": 2.0813400000000003e-05, + "loss": 1.404567108154297, + "step": 438000 + }, + { + "epoch": 58.413333333333334, + "grad_norm": 0.831731379032135, + "learning_rate": 2.0806733333333335e-05, + "loss": 1.4076467895507812, + "step": 438100 + }, + { + "epoch": 58.42666666666667, + "grad_norm": 0.8772410750389099, + "learning_rate": 2.0800066666666668e-05, + "loss": 1.4042951965332031, + "step": 438200 + }, + { + "epoch": 58.44, + "grad_norm": 0.8620854616165161, + "learning_rate": 2.0793400000000003e-05, + "loss": 1.4063218688964845, + "step": 438300 + }, + { + "epoch": 58.45333333333333, + "grad_norm": 0.8375303149223328, + "learning_rate": 2.0786733333333332e-05, + "loss": 1.4067355346679689, + "step": 438400 + }, + { + "epoch": 58.46666666666667, + "grad_norm": 0.8386953473091125, + "learning_rate": 2.0780066666666668e-05, + "loss": 1.4097119140625, + "step": 438500 + }, + { + "epoch": 58.48, + "grad_norm": 0.8893094062805176, + "learning_rate": 2.07734e-05, + "loss": 1.4094076538085938, + "step": 438600 + }, + { + "epoch": 58.49333333333333, + "grad_norm": 0.8755731582641602, + "learning_rate": 2.0766733333333336e-05, + "loss": 1.4084201049804688, + "step": 438700 + }, + { + "epoch": 58.50666666666667, + "grad_norm": 0.8995118737220764, + "learning_rate": 2.0760066666666668e-05, + "loss": 1.4081155395507812, + "step": 438800 + }, + { + "epoch": 58.52, + "grad_norm": 0.8784931302070618, + "learning_rate": 2.07534e-05, + "loss": 1.4106106567382812, + "step": 438900 + }, + { + "epoch": 58.53333333333333, + "grad_norm": 0.8496900796890259, + "learning_rate": 2.0746733333333336e-05, + "loss": 1.4154051208496095, + "step": 439000 + }, + { + "epoch": 58.54666666666667, + "grad_norm": 0.9111222624778748, + "learning_rate": 2.0740066666666668e-05, + "loss": 1.4134213256835937, + "step": 439100 + }, + { + "epoch": 58.56, + "grad_norm": 0.9012070298194885, + "learning_rate": 2.07334e-05, + "loss": 1.4138330078125, + "step": 439200 + }, + { + "epoch": 58.57333333333333, + "grad_norm": 0.8513124585151672, + "learning_rate": 2.0726733333333333e-05, + "loss": 1.414625701904297, + "step": 439300 + }, + { + "epoch": 58.586666666666666, + "grad_norm": 0.8750892877578735, + "learning_rate": 2.0720133333333332e-05, + "loss": 1.4188406372070312, + "step": 439400 + }, + { + "epoch": 58.6, + "grad_norm": 0.8822923302650452, + "learning_rate": 2.0713466666666667e-05, + "loss": 1.4158790588378907, + "step": 439500 + }, + { + "epoch": 58.61333333333333, + "grad_norm": 0.8047091364860535, + "learning_rate": 2.07068e-05, + "loss": 1.414635009765625, + "step": 439600 + }, + { + "epoch": 58.626666666666665, + "grad_norm": 0.8577402234077454, + "learning_rate": 2.0700133333333335e-05, + "loss": 1.4141645812988282, + "step": 439700 + }, + { + "epoch": 58.64, + "grad_norm": 0.8721509575843811, + "learning_rate": 2.0693466666666668e-05, + "loss": 1.4171902465820312, + "step": 439800 + }, + { + "epoch": 58.653333333333336, + "grad_norm": 0.852287769317627, + "learning_rate": 2.06868e-05, + "loss": 1.4161666870117187, + "step": 439900 + }, + { + "epoch": 58.666666666666664, + "grad_norm": 0.8711374402046204, + "learning_rate": 2.0680133333333336e-05, + "loss": 1.4154249572753905, + "step": 440000 + }, + { + "epoch": 58.68, + "grad_norm": 0.9298127889633179, + "learning_rate": 2.0673466666666668e-05, + "loss": 1.416683349609375, + "step": 440100 + }, + { + "epoch": 58.693333333333335, + "grad_norm": 0.8794826865196228, + "learning_rate": 2.06668e-05, + "loss": 1.4199267578125, + "step": 440200 + }, + { + "epoch": 58.70666666666666, + "grad_norm": 0.8694095015525818, + "learning_rate": 2.0660133333333336e-05, + "loss": 1.417292938232422, + "step": 440300 + }, + { + "epoch": 58.72, + "grad_norm": 0.8695284128189087, + "learning_rate": 2.0653466666666668e-05, + "loss": 1.4181063842773438, + "step": 440400 + }, + { + "epoch": 58.733333333333334, + "grad_norm": 0.8681213855743408, + "learning_rate": 2.0646800000000004e-05, + "loss": 1.4154566955566406, + "step": 440500 + }, + { + "epoch": 58.74666666666667, + "grad_norm": 0.8768618106842041, + "learning_rate": 2.0640133333333333e-05, + "loss": 1.4236866760253906, + "step": 440600 + }, + { + "epoch": 58.76, + "grad_norm": 0.8256394267082214, + "learning_rate": 2.0633466666666668e-05, + "loss": 1.41985107421875, + "step": 440700 + }, + { + "epoch": 58.77333333333333, + "grad_norm": 0.8697381019592285, + "learning_rate": 2.06268e-05, + "loss": 1.4237368774414063, + "step": 440800 + }, + { + "epoch": 58.78666666666667, + "grad_norm": 0.8941296935081482, + "learning_rate": 2.0620133333333333e-05, + "loss": 1.4222611999511718, + "step": 440900 + }, + { + "epoch": 58.8, + "grad_norm": 0.8877124786376953, + "learning_rate": 2.061346666666667e-05, + "loss": 1.4254855346679687, + "step": 441000 + }, + { + "epoch": 58.81333333333333, + "grad_norm": 0.9030829071998596, + "learning_rate": 2.06068e-05, + "loss": 1.4235409545898436, + "step": 441100 + }, + { + "epoch": 58.82666666666667, + "grad_norm": 0.9028357267379761, + "learning_rate": 2.0600133333333336e-05, + "loss": 1.4207374572753906, + "step": 441200 + }, + { + "epoch": 58.84, + "grad_norm": 0.9188116192817688, + "learning_rate": 2.0593466666666665e-05, + "loss": 1.4223762512207032, + "step": 441300 + }, + { + "epoch": 58.85333333333333, + "grad_norm": 0.9232787489891052, + "learning_rate": 2.0586866666666668e-05, + "loss": 1.4255131530761718, + "step": 441400 + }, + { + "epoch": 58.86666666666667, + "grad_norm": 0.874527633190155, + "learning_rate": 2.0580200000000003e-05, + "loss": 1.4305357360839843, + "step": 441500 + }, + { + "epoch": 58.88, + "grad_norm": 0.8727383017539978, + "learning_rate": 2.0573533333333332e-05, + "loss": 1.4260952758789063, + "step": 441600 + }, + { + "epoch": 58.89333333333333, + "grad_norm": 0.8848722577095032, + "learning_rate": 2.0566866666666668e-05, + "loss": 1.425802001953125, + "step": 441700 + }, + { + "epoch": 58.906666666666666, + "grad_norm": 0.8801239132881165, + "learning_rate": 2.05602e-05, + "loss": 1.4275160217285157, + "step": 441800 + }, + { + "epoch": 58.92, + "grad_norm": 0.8728554248809814, + "learning_rate": 2.0553533333333332e-05, + "loss": 1.4327494812011718, + "step": 441900 + }, + { + "epoch": 58.93333333333333, + "grad_norm": 0.8942492008209229, + "learning_rate": 2.0546866666666668e-05, + "loss": 1.4299046325683593, + "step": 442000 + }, + { + "epoch": 58.946666666666665, + "grad_norm": 0.9094804525375366, + "learning_rate": 2.05402e-05, + "loss": 1.4307928466796875, + "step": 442100 + }, + { + "epoch": 58.96, + "grad_norm": 0.871557891368866, + "learning_rate": 2.0533533333333336e-05, + "loss": 1.42893310546875, + "step": 442200 + }, + { + "epoch": 58.973333333333336, + "grad_norm": 0.8748642802238464, + "learning_rate": 2.0526866666666665e-05, + "loss": 1.4272027587890626, + "step": 442300 + }, + { + "epoch": 58.986666666666665, + "grad_norm": 0.8672638535499573, + "learning_rate": 2.05202e-05, + "loss": 1.4299638366699219, + "step": 442400 + }, + { + "epoch": 59.0, + "grad_norm": 0.8816332221031189, + "learning_rate": 2.0513533333333336e-05, + "loss": 1.434586944580078, + "step": 442500 + }, + { + "epoch": 59.013333333333335, + "grad_norm": 0.8527655601501465, + "learning_rate": 2.050686666666667e-05, + "loss": 1.3740353393554687, + "step": 442600 + }, + { + "epoch": 59.026666666666664, + "grad_norm": 0.8620314598083496, + "learning_rate": 2.05002e-05, + "loss": 1.3709056091308593, + "step": 442700 + }, + { + "epoch": 59.04, + "grad_norm": 0.8591675758361816, + "learning_rate": 2.0493533333333333e-05, + "loss": 1.3708229064941406, + "step": 442800 + }, + { + "epoch": 59.053333333333335, + "grad_norm": 0.8642350435256958, + "learning_rate": 2.048686666666667e-05, + "loss": 1.373277587890625, + "step": 442900 + }, + { + "epoch": 59.06666666666667, + "grad_norm": 0.8944986462593079, + "learning_rate": 2.04802e-05, + "loss": 1.3693106079101562, + "step": 443000 + }, + { + "epoch": 59.08, + "grad_norm": 0.8772505521774292, + "learning_rate": 2.0473533333333333e-05, + "loss": 1.3786691284179688, + "step": 443100 + }, + { + "epoch": 59.093333333333334, + "grad_norm": 0.828309178352356, + "learning_rate": 2.046686666666667e-05, + "loss": 1.3788882446289064, + "step": 443200 + }, + { + "epoch": 59.10666666666667, + "grad_norm": 0.8052541613578796, + "learning_rate": 2.04602e-05, + "loss": 1.3764219665527344, + "step": 443300 + }, + { + "epoch": 59.12, + "grad_norm": 0.8364429473876953, + "learning_rate": 2.0453533333333337e-05, + "loss": 1.3792369079589843, + "step": 443400 + }, + { + "epoch": 59.13333333333333, + "grad_norm": 0.8565122485160828, + "learning_rate": 2.0446933333333336e-05, + "loss": 1.3825364685058594, + "step": 443500 + }, + { + "epoch": 59.14666666666667, + "grad_norm": 0.8464578986167908, + "learning_rate": 2.0440266666666668e-05, + "loss": 1.38104248046875, + "step": 443600 + }, + { + "epoch": 59.16, + "grad_norm": 0.8631567358970642, + "learning_rate": 2.04336e-05, + "loss": 1.383396759033203, + "step": 443700 + }, + { + "epoch": 59.17333333333333, + "grad_norm": 0.8802007436752319, + "learning_rate": 2.0426933333333333e-05, + "loss": 1.3867723083496093, + "step": 443800 + }, + { + "epoch": 59.18666666666667, + "grad_norm": 0.8594309687614441, + "learning_rate": 2.0420266666666668e-05, + "loss": 1.3859178161621093, + "step": 443900 + }, + { + "epoch": 59.2, + "grad_norm": 0.8774383068084717, + "learning_rate": 2.04136e-05, + "loss": 1.3861714172363282, + "step": 444000 + }, + { + "epoch": 59.21333333333333, + "grad_norm": 0.8826853632926941, + "learning_rate": 2.0406933333333333e-05, + "loss": 1.3873568725585939, + "step": 444100 + }, + { + "epoch": 59.22666666666667, + "grad_norm": 0.7932345867156982, + "learning_rate": 2.040026666666667e-05, + "loss": 1.387662353515625, + "step": 444200 + }, + { + "epoch": 59.24, + "grad_norm": 0.8927592635154724, + "learning_rate": 2.03936e-05, + "loss": 1.3858427429199218, + "step": 444300 + }, + { + "epoch": 59.25333333333333, + "grad_norm": 0.8642708659172058, + "learning_rate": 2.0386933333333336e-05, + "loss": 1.392750244140625, + "step": 444400 + }, + { + "epoch": 59.266666666666666, + "grad_norm": 0.8669323325157166, + "learning_rate": 2.038026666666667e-05, + "loss": 1.383953857421875, + "step": 444500 + }, + { + "epoch": 59.28, + "grad_norm": 0.8710570931434631, + "learning_rate": 2.03736e-05, + "loss": 1.3882061767578124, + "step": 444600 + }, + { + "epoch": 59.29333333333334, + "grad_norm": 0.9176151752471924, + "learning_rate": 2.0366933333333337e-05, + "loss": 1.391685791015625, + "step": 444700 + }, + { + "epoch": 59.306666666666665, + "grad_norm": 0.831787109375, + "learning_rate": 2.0360266666666665e-05, + "loss": 1.3894924926757812, + "step": 444800 + }, + { + "epoch": 59.32, + "grad_norm": 0.8599420785903931, + "learning_rate": 2.03536e-05, + "loss": 1.3913801574707032, + "step": 444900 + }, + { + "epoch": 59.333333333333336, + "grad_norm": 0.8475634455680847, + "learning_rate": 2.0346933333333333e-05, + "loss": 1.392063751220703, + "step": 445000 + }, + { + "epoch": 59.346666666666664, + "grad_norm": 0.8321338891983032, + "learning_rate": 2.034026666666667e-05, + "loss": 1.3921504211425781, + "step": 445100 + }, + { + "epoch": 59.36, + "grad_norm": 0.8083276748657227, + "learning_rate": 2.03336e-05, + "loss": 1.3912481689453124, + "step": 445200 + }, + { + "epoch": 59.373333333333335, + "grad_norm": 0.8358070850372314, + "learning_rate": 2.0326933333333334e-05, + "loss": 1.3926693725585937, + "step": 445300 + }, + { + "epoch": 59.38666666666666, + "grad_norm": 0.8596873879432678, + "learning_rate": 2.032026666666667e-05, + "loss": 1.397172088623047, + "step": 445400 + }, + { + "epoch": 59.4, + "grad_norm": 0.8789359331130981, + "learning_rate": 2.0313666666666668e-05, + "loss": 1.3950949096679688, + "step": 445500 + }, + { + "epoch": 59.413333333333334, + "grad_norm": 0.8819690346717834, + "learning_rate": 2.0307e-05, + "loss": 1.3969586181640625, + "step": 445600 + }, + { + "epoch": 59.42666666666667, + "grad_norm": 0.8241303563117981, + "learning_rate": 2.0300333333333336e-05, + "loss": 1.3977046203613281, + "step": 445700 + }, + { + "epoch": 59.44, + "grad_norm": 0.8681808114051819, + "learning_rate": 2.0293666666666665e-05, + "loss": 1.395835418701172, + "step": 445800 + }, + { + "epoch": 59.45333333333333, + "grad_norm": 0.8753331899642944, + "learning_rate": 2.0287e-05, + "loss": 1.397332763671875, + "step": 445900 + }, + { + "epoch": 59.46666666666667, + "grad_norm": 0.936934769153595, + "learning_rate": 2.0280333333333333e-05, + "loss": 1.396897430419922, + "step": 446000 + }, + { + "epoch": 59.48, + "grad_norm": 0.9100282788276672, + "learning_rate": 2.027366666666667e-05, + "loss": 1.4025897216796874, + "step": 446100 + }, + { + "epoch": 59.49333333333333, + "grad_norm": 0.8733969330787659, + "learning_rate": 2.0267e-05, + "loss": 1.4047660827636719, + "step": 446200 + }, + { + "epoch": 59.50666666666667, + "grad_norm": 0.879501461982727, + "learning_rate": 2.0260333333333333e-05, + "loss": 1.4029029846191405, + "step": 446300 + }, + { + "epoch": 59.52, + "grad_norm": 0.8982552886009216, + "learning_rate": 2.025366666666667e-05, + "loss": 1.4038697814941405, + "step": 446400 + }, + { + "epoch": 59.53333333333333, + "grad_norm": 0.853354811668396, + "learning_rate": 2.0247e-05, + "loss": 1.3982884216308593, + "step": 446500 + }, + { + "epoch": 59.54666666666667, + "grad_norm": 0.8160167336463928, + "learning_rate": 2.0240333333333333e-05, + "loss": 1.4008200073242187, + "step": 446600 + }, + { + "epoch": 59.56, + "grad_norm": 0.8860510587692261, + "learning_rate": 2.023366666666667e-05, + "loss": 1.40131591796875, + "step": 446700 + }, + { + "epoch": 59.57333333333333, + "grad_norm": 0.9074357748031616, + "learning_rate": 2.0227e-05, + "loss": 1.4021209716796874, + "step": 446800 + }, + { + "epoch": 59.586666666666666, + "grad_norm": 0.9050543904304504, + "learning_rate": 2.0220333333333337e-05, + "loss": 1.4041819763183594, + "step": 446900 + }, + { + "epoch": 59.6, + "grad_norm": 0.8996903896331787, + "learning_rate": 2.0213666666666666e-05, + "loss": 1.4066482543945313, + "step": 447000 + }, + { + "epoch": 59.61333333333333, + "grad_norm": 0.8637166619300842, + "learning_rate": 2.0207e-05, + "loss": 1.40481689453125, + "step": 447100 + }, + { + "epoch": 59.626666666666665, + "grad_norm": 0.915777325630188, + "learning_rate": 2.0200333333333334e-05, + "loss": 1.4069454956054688, + "step": 447200 + }, + { + "epoch": 59.64, + "grad_norm": 0.8580685257911682, + "learning_rate": 2.0193666666666666e-05, + "loss": 1.4054689025878906, + "step": 447300 + }, + { + "epoch": 59.653333333333336, + "grad_norm": 0.8624551296234131, + "learning_rate": 2.0187000000000002e-05, + "loss": 1.406177978515625, + "step": 447400 + }, + { + "epoch": 59.666666666666664, + "grad_norm": 0.9435851573944092, + "learning_rate": 2.01804e-05, + "loss": 1.410730743408203, + "step": 447500 + }, + { + "epoch": 59.68, + "grad_norm": 0.8933364152908325, + "learning_rate": 2.0173733333333333e-05, + "loss": 1.4079649353027344, + "step": 447600 + }, + { + "epoch": 59.693333333333335, + "grad_norm": 0.9013268351554871, + "learning_rate": 2.016706666666667e-05, + "loss": 1.4075224304199219, + "step": 447700 + }, + { + "epoch": 59.70666666666666, + "grad_norm": 0.8835455775260925, + "learning_rate": 2.01604e-05, + "loss": 1.408735809326172, + "step": 447800 + }, + { + "epoch": 59.72, + "grad_norm": 0.9013435244560242, + "learning_rate": 2.0153733333333337e-05, + "loss": 1.4129440307617187, + "step": 447900 + }, + { + "epoch": 59.733333333333334, + "grad_norm": 0.9216914772987366, + "learning_rate": 2.0147066666666666e-05, + "loss": 1.413671875, + "step": 448000 + }, + { + "epoch": 59.74666666666667, + "grad_norm": 0.9072982668876648, + "learning_rate": 2.01404e-05, + "loss": 1.4080628967285156, + "step": 448100 + }, + { + "epoch": 59.76, + "grad_norm": 0.9267192482948303, + "learning_rate": 2.0133733333333333e-05, + "loss": 1.4114108276367188, + "step": 448200 + }, + { + "epoch": 59.77333333333333, + "grad_norm": 0.8571563959121704, + "learning_rate": 2.0127066666666666e-05, + "loss": 1.4090080261230469, + "step": 448300 + }, + { + "epoch": 59.78666666666667, + "grad_norm": 0.927082896232605, + "learning_rate": 2.01204e-05, + "loss": 1.4117256164550782, + "step": 448400 + }, + { + "epoch": 59.8, + "grad_norm": 0.9052351117134094, + "learning_rate": 2.0113733333333334e-05, + "loss": 1.4136744689941407, + "step": 448500 + }, + { + "epoch": 59.81333333333333, + "grad_norm": 0.9458771347999573, + "learning_rate": 2.010706666666667e-05, + "loss": 1.4105580139160157, + "step": 448600 + }, + { + "epoch": 59.82666666666667, + "grad_norm": 0.7968136072158813, + "learning_rate": 2.0100399999999998e-05, + "loss": 1.4169776916503907, + "step": 448700 + }, + { + "epoch": 59.84, + "grad_norm": 0.8549537658691406, + "learning_rate": 2.0093733333333334e-05, + "loss": 1.4146495056152344, + "step": 448800 + }, + { + "epoch": 59.85333333333333, + "grad_norm": 0.8725696802139282, + "learning_rate": 2.008706666666667e-05, + "loss": 1.4181309509277344, + "step": 448900 + }, + { + "epoch": 59.86666666666667, + "grad_norm": 0.8683002591133118, + "learning_rate": 2.0080400000000002e-05, + "loss": 1.4133045959472657, + "step": 449000 + }, + { + "epoch": 59.88, + "grad_norm": 0.8000110387802124, + "learning_rate": 2.0073733333333334e-05, + "loss": 1.4159756469726563, + "step": 449100 + }, + { + "epoch": 59.89333333333333, + "grad_norm": 0.887690544128418, + "learning_rate": 2.0067066666666666e-05, + "loss": 1.4154435729980468, + "step": 449200 + }, + { + "epoch": 59.906666666666666, + "grad_norm": 0.8402546644210815, + "learning_rate": 2.0060400000000002e-05, + "loss": 1.4177676391601564, + "step": 449300 + }, + { + "epoch": 59.92, + "grad_norm": 0.9004342555999756, + "learning_rate": 2.0053733333333334e-05, + "loss": 1.4182846069335937, + "step": 449400 + }, + { + "epoch": 59.93333333333333, + "grad_norm": 0.8389486074447632, + "learning_rate": 2.0047066666666666e-05, + "loss": 1.4176017761230468, + "step": 449500 + }, + { + "epoch": 59.946666666666665, + "grad_norm": 0.889369785785675, + "learning_rate": 2.0040400000000002e-05, + "loss": 1.4182723999023437, + "step": 449600 + }, + { + "epoch": 59.96, + "grad_norm": 0.9012863039970398, + "learning_rate": 2.00338e-05, + "loss": 1.4193865966796875, + "step": 449700 + }, + { + "epoch": 59.973333333333336, + "grad_norm": 0.9062787294387817, + "learning_rate": 2.0027133333333333e-05, + "loss": 1.4206649780273437, + "step": 449800 + }, + { + "epoch": 59.986666666666665, + "grad_norm": 0.8925827145576477, + "learning_rate": 2.002046666666667e-05, + "loss": 1.4192771911621094, + "step": 449900 + }, + { + "epoch": 60.0, + "grad_norm": 0.9131714105606079, + "learning_rate": 2.00138e-05, + "loss": 1.4141000366210938, + "step": 450000 + }, + { + "epoch": 60.013333333333335, + "grad_norm": 0.8766162991523743, + "learning_rate": 2.0007133333333334e-05, + "loss": 1.3626673889160157, + "step": 450100 + }, + { + "epoch": 60.026666666666664, + "grad_norm": 0.8619803786277771, + "learning_rate": 2.0000466666666666e-05, + "loss": 1.365054931640625, + "step": 450200 + }, + { + "epoch": 60.04, + "grad_norm": 0.8605244159698486, + "learning_rate": 1.99938e-05, + "loss": 1.3631307983398437, + "step": 450300 + }, + { + "epoch": 60.053333333333335, + "grad_norm": 0.855178713798523, + "learning_rate": 1.9987133333333334e-05, + "loss": 1.3666217041015625, + "step": 450400 + }, + { + "epoch": 60.06666666666667, + "grad_norm": 0.8652241826057434, + "learning_rate": 1.9980466666666666e-05, + "loss": 1.36834228515625, + "step": 450500 + }, + { + "epoch": 60.08, + "grad_norm": 0.7819242477416992, + "learning_rate": 1.9973800000000002e-05, + "loss": 1.3638204956054687, + "step": 450600 + }, + { + "epoch": 60.093333333333334, + "grad_norm": 0.8712034225463867, + "learning_rate": 1.9967133333333334e-05, + "loss": 1.3687100219726562, + "step": 450700 + }, + { + "epoch": 60.10666666666667, + "grad_norm": 0.8641767501831055, + "learning_rate": 1.996046666666667e-05, + "loss": 1.3722442626953124, + "step": 450800 + }, + { + "epoch": 60.12, + "grad_norm": 0.800079882144928, + "learning_rate": 1.99538e-05, + "loss": 1.3667047119140625, + "step": 450900 + }, + { + "epoch": 60.13333333333333, + "grad_norm": 0.8609186410903931, + "learning_rate": 1.9947133333333334e-05, + "loss": 1.370550079345703, + "step": 451000 + }, + { + "epoch": 60.14666666666667, + "grad_norm": 0.8792775869369507, + "learning_rate": 1.994046666666667e-05, + "loss": 1.3739710998535157, + "step": 451100 + }, + { + "epoch": 60.16, + "grad_norm": 0.8350428938865662, + "learning_rate": 1.99338e-05, + "loss": 1.3673428344726561, + "step": 451200 + }, + { + "epoch": 60.17333333333333, + "grad_norm": 0.8641292452812195, + "learning_rate": 1.9927133333333334e-05, + "loss": 1.3756710815429687, + "step": 451300 + }, + { + "epoch": 60.18666666666667, + "grad_norm": 0.8623048663139343, + "learning_rate": 1.9920466666666667e-05, + "loss": 1.3705751037597655, + "step": 451400 + }, + { + "epoch": 60.2, + "grad_norm": 0.8862844705581665, + "learning_rate": 1.9913800000000002e-05, + "loss": 1.3776641845703126, + "step": 451500 + }, + { + "epoch": 60.21333333333333, + "grad_norm": 0.85312819480896, + "learning_rate": 1.9907133333333335e-05, + "loss": 1.3766864013671876, + "step": 451600 + }, + { + "epoch": 60.22666666666667, + "grad_norm": 0.860139787197113, + "learning_rate": 1.9900533333333334e-05, + "loss": 1.376378936767578, + "step": 451700 + }, + { + "epoch": 60.24, + "grad_norm": 0.895366370677948, + "learning_rate": 1.989386666666667e-05, + "loss": 1.3810842895507813, + "step": 451800 + }, + { + "epoch": 60.25333333333333, + "grad_norm": 0.8239558935165405, + "learning_rate": 1.98872e-05, + "loss": 1.376715850830078, + "step": 451900 + }, + { + "epoch": 60.266666666666666, + "grad_norm": 0.8806911110877991, + "learning_rate": 1.9880533333333334e-05, + "loss": 1.3794581604003906, + "step": 452000 + }, + { + "epoch": 60.28, + "grad_norm": 0.8843830823898315, + "learning_rate": 1.987386666666667e-05, + "loss": 1.3751409912109376, + "step": 452100 + }, + { + "epoch": 60.29333333333334, + "grad_norm": 0.8291395902633667, + "learning_rate": 1.98672e-05, + "loss": 1.3803631591796874, + "step": 452200 + }, + { + "epoch": 60.306666666666665, + "grad_norm": 0.8579269051551819, + "learning_rate": 1.9860533333333334e-05, + "loss": 1.379007568359375, + "step": 452300 + }, + { + "epoch": 60.32, + "grad_norm": 0.8788613080978394, + "learning_rate": 1.9853866666666666e-05, + "loss": 1.3800997924804688, + "step": 452400 + }, + { + "epoch": 60.333333333333336, + "grad_norm": 0.8551366925239563, + "learning_rate": 1.9847200000000002e-05, + "loss": 1.380692138671875, + "step": 452500 + }, + { + "epoch": 60.346666666666664, + "grad_norm": 0.897996187210083, + "learning_rate": 1.9840533333333334e-05, + "loss": 1.3825259399414063, + "step": 452600 + }, + { + "epoch": 60.36, + "grad_norm": 0.8699089288711548, + "learning_rate": 1.9833866666666667e-05, + "loss": 1.3819764709472657, + "step": 452700 + }, + { + "epoch": 60.373333333333335, + "grad_norm": 0.8734973669052124, + "learning_rate": 1.9827200000000002e-05, + "loss": 1.385391082763672, + "step": 452800 + }, + { + "epoch": 60.38666666666666, + "grad_norm": 0.8809809684753418, + "learning_rate": 1.9820533333333334e-05, + "loss": 1.3871815490722657, + "step": 452900 + }, + { + "epoch": 60.4, + "grad_norm": 0.8975648880004883, + "learning_rate": 1.9813866666666667e-05, + "loss": 1.38472412109375, + "step": 453000 + }, + { + "epoch": 60.413333333333334, + "grad_norm": 0.9081311225891113, + "learning_rate": 1.9807200000000002e-05, + "loss": 1.3865188598632812, + "step": 453100 + }, + { + "epoch": 60.42666666666667, + "grad_norm": 0.9099006652832031, + "learning_rate": 1.9800533333333335e-05, + "loss": 1.389481201171875, + "step": 453200 + }, + { + "epoch": 60.44, + "grad_norm": 0.864206850528717, + "learning_rate": 1.979386666666667e-05, + "loss": 1.390070037841797, + "step": 453300 + }, + { + "epoch": 60.45333333333333, + "grad_norm": 0.8600577116012573, + "learning_rate": 1.97872e-05, + "loss": 1.392391357421875, + "step": 453400 + }, + { + "epoch": 60.46666666666667, + "grad_norm": 0.8773865103721619, + "learning_rate": 1.9780533333333335e-05, + "loss": 1.3893141174316406, + "step": 453500 + }, + { + "epoch": 60.48, + "grad_norm": 0.8529485464096069, + "learning_rate": 1.9773866666666667e-05, + "loss": 1.3895809936523438, + "step": 453600 + }, + { + "epoch": 60.49333333333333, + "grad_norm": 0.9243431687355042, + "learning_rate": 1.9767266666666666e-05, + "loss": 1.391697540283203, + "step": 453700 + }, + { + "epoch": 60.50666666666667, + "grad_norm": 0.8365994691848755, + "learning_rate": 1.9760600000000002e-05, + "loss": 1.39140869140625, + "step": 453800 + }, + { + "epoch": 60.52, + "grad_norm": 0.8463616371154785, + "learning_rate": 1.9753933333333334e-05, + "loss": 1.3897438049316406, + "step": 453900 + }, + { + "epoch": 60.53333333333333, + "grad_norm": 0.8689169883728027, + "learning_rate": 1.9747266666666666e-05, + "loss": 1.3926591491699218, + "step": 454000 + }, + { + "epoch": 60.54666666666667, + "grad_norm": 0.8810186386108398, + "learning_rate": 1.9740600000000002e-05, + "loss": 1.3944500732421874, + "step": 454100 + }, + { + "epoch": 60.56, + "grad_norm": 0.8771687150001526, + "learning_rate": 1.9733933333333334e-05, + "loss": 1.3929228210449218, + "step": 454200 + }, + { + "epoch": 60.57333333333333, + "grad_norm": 0.854418933391571, + "learning_rate": 1.972726666666667e-05, + "loss": 1.3968455505371093, + "step": 454300 + }, + { + "epoch": 60.586666666666666, + "grad_norm": 0.8878345489501953, + "learning_rate": 1.97206e-05, + "loss": 1.3940657043457032, + "step": 454400 + }, + { + "epoch": 60.6, + "grad_norm": 0.8897739052772522, + "learning_rate": 1.9713933333333335e-05, + "loss": 1.3936965942382813, + "step": 454500 + }, + { + "epoch": 60.61333333333333, + "grad_norm": 0.9403147101402283, + "learning_rate": 1.9707266666666667e-05, + "loss": 1.3955183410644532, + "step": 454600 + }, + { + "epoch": 60.626666666666665, + "grad_norm": 0.8647699952125549, + "learning_rate": 1.97006e-05, + "loss": 1.3931178283691406, + "step": 454700 + }, + { + "epoch": 60.64, + "grad_norm": 0.9250267744064331, + "learning_rate": 1.9693933333333335e-05, + "loss": 1.394335479736328, + "step": 454800 + }, + { + "epoch": 60.653333333333336, + "grad_norm": 0.9054676294326782, + "learning_rate": 1.9687266666666667e-05, + "loss": 1.3964520263671876, + "step": 454900 + }, + { + "epoch": 60.666666666666664, + "grad_norm": 0.8482034206390381, + "learning_rate": 1.9680600000000003e-05, + "loss": 1.401461639404297, + "step": 455000 + }, + { + "epoch": 60.68, + "grad_norm": 0.8947781920433044, + "learning_rate": 1.967393333333333e-05, + "loss": 1.398545684814453, + "step": 455100 + }, + { + "epoch": 60.693333333333335, + "grad_norm": 0.834432065486908, + "learning_rate": 1.9667266666666667e-05, + "loss": 1.3957997131347657, + "step": 455200 + }, + { + "epoch": 60.70666666666666, + "grad_norm": 0.8843758702278137, + "learning_rate": 1.9660600000000003e-05, + "loss": 1.397581787109375, + "step": 455300 + }, + { + "epoch": 60.72, + "grad_norm": 0.8692967295646667, + "learning_rate": 1.9653933333333335e-05, + "loss": 1.3974429321289064, + "step": 455400 + }, + { + "epoch": 60.733333333333334, + "grad_norm": 0.8995789885520935, + "learning_rate": 1.9647266666666667e-05, + "loss": 1.3975807189941407, + "step": 455500 + }, + { + "epoch": 60.74666666666667, + "grad_norm": 0.9164907932281494, + "learning_rate": 1.96406e-05, + "loss": 1.4055183410644532, + "step": 455600 + }, + { + "epoch": 60.76, + "grad_norm": 0.8928161859512329, + "learning_rate": 1.9634e-05, + "loss": 1.4037777709960937, + "step": 455700 + }, + { + "epoch": 60.77333333333333, + "grad_norm": 0.8764446377754211, + "learning_rate": 1.9627333333333334e-05, + "loss": 1.4005415344238281, + "step": 455800 + }, + { + "epoch": 60.78666666666667, + "grad_norm": 0.904509425163269, + "learning_rate": 1.9620666666666667e-05, + "loss": 1.4026527404785156, + "step": 455900 + }, + { + "epoch": 60.8, + "grad_norm": 0.898916482925415, + "learning_rate": 1.9614000000000002e-05, + "loss": 1.407811279296875, + "step": 456000 + }, + { + "epoch": 60.81333333333333, + "grad_norm": 0.9085363149642944, + "learning_rate": 1.9607333333333335e-05, + "loss": 1.4023429870605468, + "step": 456100 + }, + { + "epoch": 60.82666666666667, + "grad_norm": 0.8209180235862732, + "learning_rate": 1.9600666666666667e-05, + "loss": 1.4042745971679687, + "step": 456200 + }, + { + "epoch": 60.84, + "grad_norm": 0.9050608277320862, + "learning_rate": 1.9594000000000002e-05, + "loss": 1.4010504150390626, + "step": 456300 + }, + { + "epoch": 60.85333333333333, + "grad_norm": 0.8617534637451172, + "learning_rate": 1.9587333333333335e-05, + "loss": 1.4049598693847656, + "step": 456400 + }, + { + "epoch": 60.86666666666667, + "grad_norm": 0.8977437615394592, + "learning_rate": 1.9580666666666667e-05, + "loss": 1.408564910888672, + "step": 456500 + }, + { + "epoch": 60.88, + "grad_norm": 0.9017003178596497, + "learning_rate": 1.9574e-05, + "loss": 1.4092807006835937, + "step": 456600 + }, + { + "epoch": 60.89333333333333, + "grad_norm": 0.8867468237876892, + "learning_rate": 1.9567333333333335e-05, + "loss": 1.4079061889648437, + "step": 456700 + }, + { + "epoch": 60.906666666666666, + "grad_norm": 0.9068670868873596, + "learning_rate": 1.9560666666666667e-05, + "loss": 1.408272705078125, + "step": 456800 + }, + { + "epoch": 60.92, + "grad_norm": 0.9402436017990112, + "learning_rate": 1.9554e-05, + "loss": 1.4082586669921875, + "step": 456900 + }, + { + "epoch": 60.93333333333333, + "grad_norm": 0.8949838280677795, + "learning_rate": 1.9547333333333335e-05, + "loss": 1.4101248168945313, + "step": 457000 + }, + { + "epoch": 60.946666666666665, + "grad_norm": 0.8980549573898315, + "learning_rate": 1.9540666666666667e-05, + "loss": 1.4082913208007812, + "step": 457100 + }, + { + "epoch": 60.96, + "grad_norm": 0.8805965781211853, + "learning_rate": 1.9534000000000003e-05, + "loss": 1.4107188415527343, + "step": 457200 + }, + { + "epoch": 60.973333333333336, + "grad_norm": 0.8333622217178345, + "learning_rate": 1.9527333333333332e-05, + "loss": 1.40792236328125, + "step": 457300 + }, + { + "epoch": 60.986666666666665, + "grad_norm": 0.872611403465271, + "learning_rate": 1.9520666666666668e-05, + "loss": 1.4117628479003905, + "step": 457400 + }, + { + "epoch": 61.0, + "grad_norm": 0.8566659092903137, + "learning_rate": 1.9514000000000003e-05, + "loss": 1.409874725341797, + "step": 457500 + }, + { + "epoch": 61.013333333333335, + "grad_norm": 0.8656761050224304, + "learning_rate": 1.9507333333333332e-05, + "loss": 1.3577760314941407, + "step": 457600 + }, + { + "epoch": 61.026666666666664, + "grad_norm": 0.8465045094490051, + "learning_rate": 1.9500733333333335e-05, + "loss": 1.358833770751953, + "step": 457700 + }, + { + "epoch": 61.04, + "grad_norm": 0.8309293985366821, + "learning_rate": 1.949406666666667e-05, + "loss": 1.356152801513672, + "step": 457800 + }, + { + "epoch": 61.053333333333335, + "grad_norm": 0.9162067174911499, + "learning_rate": 1.94874e-05, + "loss": 1.355301971435547, + "step": 457900 + }, + { + "epoch": 61.06666666666667, + "grad_norm": 0.9088298678398132, + "learning_rate": 1.9480733333333335e-05, + "loss": 1.3575556945800782, + "step": 458000 + }, + { + "epoch": 61.08, + "grad_norm": 0.8428143262863159, + "learning_rate": 1.9474066666666667e-05, + "loss": 1.3585945129394532, + "step": 458100 + }, + { + "epoch": 61.093333333333334, + "grad_norm": 0.8562920093536377, + "learning_rate": 1.9467400000000003e-05, + "loss": 1.361529541015625, + "step": 458200 + }, + { + "epoch": 61.10666666666667, + "grad_norm": 0.8210142254829407, + "learning_rate": 1.9460733333333335e-05, + "loss": 1.3608488464355468, + "step": 458300 + }, + { + "epoch": 61.12, + "grad_norm": 0.8906102180480957, + "learning_rate": 1.9454066666666667e-05, + "loss": 1.3610110473632813, + "step": 458400 + }, + { + "epoch": 61.13333333333333, + "grad_norm": 0.8572280406951904, + "learning_rate": 1.9447400000000003e-05, + "loss": 1.359154510498047, + "step": 458500 + }, + { + "epoch": 61.14666666666667, + "grad_norm": 0.8383269906044006, + "learning_rate": 1.9440733333333332e-05, + "loss": 1.3642387390136719, + "step": 458600 + }, + { + "epoch": 61.16, + "grad_norm": 0.8838930726051331, + "learning_rate": 1.9434066666666667e-05, + "loss": 1.3644644165039062, + "step": 458700 + }, + { + "epoch": 61.17333333333333, + "grad_norm": 0.8675736784934998, + "learning_rate": 1.94274e-05, + "loss": 1.3637721252441406, + "step": 458800 + }, + { + "epoch": 61.18666666666667, + "grad_norm": 0.8860127329826355, + "learning_rate": 1.9420733333333335e-05, + "loss": 1.3696493530273437, + "step": 458900 + }, + { + "epoch": 61.2, + "grad_norm": 0.8294709920883179, + "learning_rate": 1.9414066666666668e-05, + "loss": 1.3652156066894532, + "step": 459000 + }, + { + "epoch": 61.21333333333333, + "grad_norm": 0.8422327041625977, + "learning_rate": 1.94074e-05, + "loss": 1.36591064453125, + "step": 459100 + }, + { + "epoch": 61.22666666666667, + "grad_norm": 0.8764711618423462, + "learning_rate": 1.9400733333333336e-05, + "loss": 1.3690542602539062, + "step": 459200 + }, + { + "epoch": 61.24, + "grad_norm": 0.8453260064125061, + "learning_rate": 1.9394066666666668e-05, + "loss": 1.3683854675292968, + "step": 459300 + }, + { + "epoch": 61.25333333333333, + "grad_norm": 0.8774312734603882, + "learning_rate": 1.93874e-05, + "loss": 1.3740834045410155, + "step": 459400 + }, + { + "epoch": 61.266666666666666, + "grad_norm": 0.8766496777534485, + "learning_rate": 1.9380733333333336e-05, + "loss": 1.3723397827148438, + "step": 459500 + }, + { + "epoch": 61.28, + "grad_norm": 0.8459547162055969, + "learning_rate": 1.9374066666666668e-05, + "loss": 1.3714936828613282, + "step": 459600 + }, + { + "epoch": 61.29333333333334, + "grad_norm": 0.8652738332748413, + "learning_rate": 1.9367466666666667e-05, + "loss": 1.3694456481933595, + "step": 459700 + }, + { + "epoch": 61.306666666666665, + "grad_norm": 0.8927618265151978, + "learning_rate": 1.9360800000000003e-05, + "loss": 1.3731556701660157, + "step": 459800 + }, + { + "epoch": 61.32, + "grad_norm": 0.9212049841880798, + "learning_rate": 1.9354133333333335e-05, + "loss": 1.371415557861328, + "step": 459900 + }, + { + "epoch": 61.333333333333336, + "grad_norm": 0.8938565850257874, + "learning_rate": 1.9347466666666667e-05, + "loss": 1.3725595092773437, + "step": 460000 + }, + { + "epoch": 61.346666666666664, + "grad_norm": 0.9088102579116821, + "learning_rate": 1.93408e-05, + "loss": 1.368966064453125, + "step": 460100 + }, + { + "epoch": 61.36, + "grad_norm": 0.8691730499267578, + "learning_rate": 1.9334133333333335e-05, + "loss": 1.374231719970703, + "step": 460200 + }, + { + "epoch": 61.373333333333335, + "grad_norm": 0.922798752784729, + "learning_rate": 1.9327466666666667e-05, + "loss": 1.3764288330078125, + "step": 460300 + }, + { + "epoch": 61.38666666666666, + "grad_norm": 0.83963543176651, + "learning_rate": 1.93208e-05, + "loss": 1.3810987854003907, + "step": 460400 + }, + { + "epoch": 61.4, + "grad_norm": 0.839726448059082, + "learning_rate": 1.9314133333333335e-05, + "loss": 1.3756941223144532, + "step": 460500 + }, + { + "epoch": 61.413333333333334, + "grad_norm": 0.8824960589408875, + "learning_rate": 1.9307466666666668e-05, + "loss": 1.3773788452148437, + "step": 460600 + }, + { + "epoch": 61.42666666666667, + "grad_norm": 0.8845879435539246, + "learning_rate": 1.9300800000000003e-05, + "loss": 1.377089080810547, + "step": 460700 + }, + { + "epoch": 61.44, + "grad_norm": 0.8615458011627197, + "learning_rate": 1.9294133333333332e-05, + "loss": 1.3773002624511719, + "step": 460800 + }, + { + "epoch": 61.45333333333333, + "grad_norm": 0.934096097946167, + "learning_rate": 1.9287466666666668e-05, + "loss": 1.3814968872070312, + "step": 460900 + }, + { + "epoch": 61.46666666666667, + "grad_norm": 0.8833667039871216, + "learning_rate": 1.92808e-05, + "loss": 1.379684295654297, + "step": 461000 + }, + { + "epoch": 61.48, + "grad_norm": 0.8190123438835144, + "learning_rate": 1.9274133333333332e-05, + "loss": 1.3798077392578125, + "step": 461100 + }, + { + "epoch": 61.49333333333333, + "grad_norm": 0.8761352300643921, + "learning_rate": 1.9267466666666668e-05, + "loss": 1.3821427917480469, + "step": 461200 + }, + { + "epoch": 61.50666666666667, + "grad_norm": 0.8497684597969055, + "learning_rate": 1.92608e-05, + "loss": 1.3799111938476563, + "step": 461300 + }, + { + "epoch": 61.52, + "grad_norm": 0.9118313789367676, + "learning_rate": 1.9254133333333336e-05, + "loss": 1.3833085632324218, + "step": 461400 + }, + { + "epoch": 61.53333333333333, + "grad_norm": 0.8651177287101746, + "learning_rate": 1.9247466666666665e-05, + "loss": 1.3809347534179688, + "step": 461500 + }, + { + "epoch": 61.54666666666667, + "grad_norm": 0.889124870300293, + "learning_rate": 1.92408e-05, + "loss": 1.3849130249023438, + "step": 461600 + }, + { + "epoch": 61.56, + "grad_norm": 0.8513779640197754, + "learning_rate": 1.9234200000000003e-05, + "loss": 1.3853852844238281, + "step": 461700 + }, + { + "epoch": 61.57333333333333, + "grad_norm": 0.887895941734314, + "learning_rate": 1.9227533333333332e-05, + "loss": 1.3864006042480468, + "step": 461800 + }, + { + "epoch": 61.586666666666666, + "grad_norm": 0.8509908318519592, + "learning_rate": 1.9220866666666668e-05, + "loss": 1.3839459228515625, + "step": 461900 + }, + { + "epoch": 61.6, + "grad_norm": 0.9221972823143005, + "learning_rate": 1.9214200000000003e-05, + "loss": 1.383968048095703, + "step": 462000 + }, + { + "epoch": 61.61333333333333, + "grad_norm": 0.9250000715255737, + "learning_rate": 1.9207533333333332e-05, + "loss": 1.3876034545898437, + "step": 462100 + }, + { + "epoch": 61.626666666666665, + "grad_norm": 0.8646901845932007, + "learning_rate": 1.9200866666666668e-05, + "loss": 1.3860377502441406, + "step": 462200 + }, + { + "epoch": 61.64, + "grad_norm": 0.861657440662384, + "learning_rate": 1.91942e-05, + "loss": 1.383225555419922, + "step": 462300 + }, + { + "epoch": 61.653333333333336, + "grad_norm": 0.8866887092590332, + "learning_rate": 1.9187533333333336e-05, + "loss": 1.3847361755371095, + "step": 462400 + }, + { + "epoch": 61.666666666666664, + "grad_norm": 0.9262802004814148, + "learning_rate": 1.9180866666666668e-05, + "loss": 1.388157958984375, + "step": 462500 + }, + { + "epoch": 61.68, + "grad_norm": 0.9400535225868225, + "learning_rate": 1.91742e-05, + "loss": 1.393813018798828, + "step": 462600 + }, + { + "epoch": 61.693333333333335, + "grad_norm": 0.8449798822402954, + "learning_rate": 1.9167533333333336e-05, + "loss": 1.3909236145019532, + "step": 462700 + }, + { + "epoch": 61.70666666666666, + "grad_norm": 0.9139823913574219, + "learning_rate": 1.9160866666666668e-05, + "loss": 1.3890992736816405, + "step": 462800 + }, + { + "epoch": 61.72, + "grad_norm": 0.8991366028785706, + "learning_rate": 1.91542e-05, + "loss": 1.3909164428710938, + "step": 462900 + }, + { + "epoch": 61.733333333333334, + "grad_norm": 0.8757520914077759, + "learning_rate": 1.9147533333333333e-05, + "loss": 1.3896699523925782, + "step": 463000 + }, + { + "epoch": 61.74666666666667, + "grad_norm": 0.9049115180969238, + "learning_rate": 1.9140866666666668e-05, + "loss": 1.394837646484375, + "step": 463100 + }, + { + "epoch": 61.76, + "grad_norm": 0.8733699917793274, + "learning_rate": 1.91342e-05, + "loss": 1.3964109802246094, + "step": 463200 + }, + { + "epoch": 61.77333333333333, + "grad_norm": 0.8619510531425476, + "learning_rate": 1.9127533333333333e-05, + "loss": 1.3983462524414063, + "step": 463300 + }, + { + "epoch": 61.78666666666667, + "grad_norm": 0.9041216373443604, + "learning_rate": 1.912086666666667e-05, + "loss": 1.3950437927246093, + "step": 463400 + }, + { + "epoch": 61.8, + "grad_norm": 0.8376539349555969, + "learning_rate": 1.91142e-05, + "loss": 1.3959678649902343, + "step": 463500 + }, + { + "epoch": 61.81333333333333, + "grad_norm": 0.9201698899269104, + "learning_rate": 1.9107533333333336e-05, + "loss": 1.3929420471191407, + "step": 463600 + }, + { + "epoch": 61.82666666666667, + "grad_norm": 0.8924663066864014, + "learning_rate": 1.9100866666666665e-05, + "loss": 1.3928451538085938, + "step": 463700 + }, + { + "epoch": 61.84, + "grad_norm": 0.9583051204681396, + "learning_rate": 1.9094266666666668e-05, + "loss": 1.3949006652832032, + "step": 463800 + }, + { + "epoch": 61.85333333333333, + "grad_norm": 0.9100115299224854, + "learning_rate": 1.90876e-05, + "loss": 1.3972018432617188, + "step": 463900 + }, + { + "epoch": 61.86666666666667, + "grad_norm": 0.8739942908287048, + "learning_rate": 1.9080933333333336e-05, + "loss": 1.3991426086425782, + "step": 464000 + }, + { + "epoch": 61.88, + "grad_norm": 0.8799852728843689, + "learning_rate": 1.9074266666666668e-05, + "loss": 1.3998698425292968, + "step": 464100 + }, + { + "epoch": 61.89333333333333, + "grad_norm": 0.9696583151817322, + "learning_rate": 1.9067600000000004e-05, + "loss": 1.3958427429199218, + "step": 464200 + }, + { + "epoch": 61.906666666666666, + "grad_norm": 0.8549162745475769, + "learning_rate": 1.9060933333333332e-05, + "loss": 1.3939924621582032, + "step": 464300 + }, + { + "epoch": 61.92, + "grad_norm": 0.8806065320968628, + "learning_rate": 1.9054266666666668e-05, + "loss": 1.3964865112304687, + "step": 464400 + }, + { + "epoch": 61.93333333333333, + "grad_norm": 0.9188470840454102, + "learning_rate": 1.90476e-05, + "loss": 1.399241943359375, + "step": 464500 + }, + { + "epoch": 61.946666666666665, + "grad_norm": 0.8856474161148071, + "learning_rate": 1.9040933333333336e-05, + "loss": 1.3998440551757811, + "step": 464600 + }, + { + "epoch": 61.96, + "grad_norm": 0.9105949401855469, + "learning_rate": 1.903426666666667e-05, + "loss": 1.4019500732421875, + "step": 464700 + }, + { + "epoch": 61.973333333333336, + "grad_norm": 0.8759123682975769, + "learning_rate": 1.90276e-05, + "loss": 1.4000885009765625, + "step": 464800 + }, + { + "epoch": 61.986666666666665, + "grad_norm": 0.9017794728279114, + "learning_rate": 1.9020933333333336e-05, + "loss": 1.3990060424804687, + "step": 464900 + }, + { + "epoch": 62.0, + "grad_norm": 0.9188961982727051, + "learning_rate": 1.9014266666666665e-05, + "loss": 1.4041940307617187, + "step": 465000 + }, + { + "epoch": 62.013333333333335, + "grad_norm": 0.8573675751686096, + "learning_rate": 1.90076e-05, + "loss": 1.3513052368164062, + "step": 465100 + }, + { + "epoch": 62.026666666666664, + "grad_norm": 0.8655972480773926, + "learning_rate": 1.9000933333333333e-05, + "loss": 1.3455097961425782, + "step": 465200 + }, + { + "epoch": 62.04, + "grad_norm": 0.8731736540794373, + "learning_rate": 1.899426666666667e-05, + "loss": 1.3468002319335937, + "step": 465300 + }, + { + "epoch": 62.053333333333335, + "grad_norm": 0.8214830756187439, + "learning_rate": 1.89876e-05, + "loss": 1.3466973876953126, + "step": 465400 + }, + { + "epoch": 62.06666666666667, + "grad_norm": 0.8522217273712158, + "learning_rate": 1.8980933333333333e-05, + "loss": 1.3482205200195312, + "step": 465500 + }, + { + "epoch": 62.08, + "grad_norm": 0.8417600989341736, + "learning_rate": 1.897426666666667e-05, + "loss": 1.34806640625, + "step": 465600 + }, + { + "epoch": 62.093333333333334, + "grad_norm": 0.8675144910812378, + "learning_rate": 1.89676e-05, + "loss": 1.3566635131835938, + "step": 465700 + }, + { + "epoch": 62.10666666666667, + "grad_norm": 0.7986916303634644, + "learning_rate": 1.8961e-05, + "loss": 1.353138427734375, + "step": 465800 + }, + { + "epoch": 62.12, + "grad_norm": 0.8446239829063416, + "learning_rate": 1.8954333333333336e-05, + "loss": 1.3517807006835938, + "step": 465900 + }, + { + "epoch": 62.13333333333333, + "grad_norm": 0.8451570272445679, + "learning_rate": 1.8947666666666665e-05, + "loss": 1.3576107788085938, + "step": 466000 + }, + { + "epoch": 62.14666666666667, + "grad_norm": 0.8504143953323364, + "learning_rate": 1.8941e-05, + "loss": 1.357427215576172, + "step": 466100 + }, + { + "epoch": 62.16, + "grad_norm": 0.8272042274475098, + "learning_rate": 1.8934333333333336e-05, + "loss": 1.3584977722167968, + "step": 466200 + }, + { + "epoch": 62.17333333333333, + "grad_norm": 0.8340880274772644, + "learning_rate": 1.892766666666667e-05, + "loss": 1.35913330078125, + "step": 466300 + }, + { + "epoch": 62.18666666666667, + "grad_norm": 0.8207993507385254, + "learning_rate": 1.8921e-05, + "loss": 1.356055908203125, + "step": 466400 + }, + { + "epoch": 62.2, + "grad_norm": 0.8401222229003906, + "learning_rate": 1.8914333333333333e-05, + "loss": 1.3570013427734375, + "step": 466500 + }, + { + "epoch": 62.21333333333333, + "grad_norm": 0.8501874804496765, + "learning_rate": 1.890766666666667e-05, + "loss": 1.3550076293945312, + "step": 466600 + }, + { + "epoch": 62.22666666666667, + "grad_norm": 0.8478946089744568, + "learning_rate": 1.8901e-05, + "loss": 1.3626107788085937, + "step": 466700 + }, + { + "epoch": 62.24, + "grad_norm": 0.889898955821991, + "learning_rate": 1.8894333333333333e-05, + "loss": 1.3627383422851562, + "step": 466800 + }, + { + "epoch": 62.25333333333333, + "grad_norm": 0.8666733503341675, + "learning_rate": 1.888766666666667e-05, + "loss": 1.3645501708984376, + "step": 466900 + }, + { + "epoch": 62.266666666666666, + "grad_norm": 0.9081425070762634, + "learning_rate": 1.8881e-05, + "loss": 1.3609548950195312, + "step": 467000 + }, + { + "epoch": 62.28, + "grad_norm": 0.8720145225524902, + "learning_rate": 1.8874333333333337e-05, + "loss": 1.365575714111328, + "step": 467100 + }, + { + "epoch": 62.29333333333334, + "grad_norm": 0.8420373797416687, + "learning_rate": 1.8867666666666666e-05, + "loss": 1.3625498962402345, + "step": 467200 + }, + { + "epoch": 62.306666666666665, + "grad_norm": 0.8779093623161316, + "learning_rate": 1.8861e-05, + "loss": 1.3643501281738282, + "step": 467300 + }, + { + "epoch": 62.32, + "grad_norm": 0.8036565780639648, + "learning_rate": 1.8854333333333333e-05, + "loss": 1.3618597412109374, + "step": 467400 + }, + { + "epoch": 62.333333333333336, + "grad_norm": 0.8801616430282593, + "learning_rate": 1.8847666666666666e-05, + "loss": 1.3635311889648438, + "step": 467500 + }, + { + "epoch": 62.346666666666664, + "grad_norm": 0.8832975029945374, + "learning_rate": 1.8841e-05, + "loss": 1.3624273681640624, + "step": 467600 + }, + { + "epoch": 62.36, + "grad_norm": 0.8669077157974243, + "learning_rate": 1.8834333333333334e-05, + "loss": 1.3672244262695312, + "step": 467700 + }, + { + "epoch": 62.373333333333335, + "grad_norm": 0.8744094371795654, + "learning_rate": 1.8827733333333333e-05, + "loss": 1.3657164001464843, + "step": 467800 + }, + { + "epoch": 62.38666666666666, + "grad_norm": 0.8977140784263611, + "learning_rate": 1.882106666666667e-05, + "loss": 1.3728543090820313, + "step": 467900 + }, + { + "epoch": 62.4, + "grad_norm": 0.9251410961151123, + "learning_rate": 1.88144e-05, + "loss": 1.3700556945800781, + "step": 468000 + }, + { + "epoch": 62.413333333333334, + "grad_norm": 0.8600748181343079, + "learning_rate": 1.8807733333333336e-05, + "loss": 1.3633903503417968, + "step": 468100 + }, + { + "epoch": 62.42666666666667, + "grad_norm": 0.8662360310554504, + "learning_rate": 1.8801066666666665e-05, + "loss": 1.3714529418945312, + "step": 468200 + }, + { + "epoch": 62.44, + "grad_norm": 0.8972686529159546, + "learning_rate": 1.87944e-05, + "loss": 1.3743254089355468, + "step": 468300 + }, + { + "epoch": 62.45333333333333, + "grad_norm": 0.8791953921318054, + "learning_rate": 1.8787733333333337e-05, + "loss": 1.3700238037109376, + "step": 468400 + }, + { + "epoch": 62.46666666666667, + "grad_norm": 0.8646233677864075, + "learning_rate": 1.8781066666666665e-05, + "loss": 1.3702452087402344, + "step": 468500 + }, + { + "epoch": 62.48, + "grad_norm": 0.8732235431671143, + "learning_rate": 1.87744e-05, + "loss": 1.381118621826172, + "step": 468600 + }, + { + "epoch": 62.49333333333333, + "grad_norm": 0.8889748454093933, + "learning_rate": 1.8767733333333333e-05, + "loss": 1.3723052978515624, + "step": 468700 + }, + { + "epoch": 62.50666666666667, + "grad_norm": 0.8828487992286682, + "learning_rate": 1.876106666666667e-05, + "loss": 1.3749916076660156, + "step": 468800 + }, + { + "epoch": 62.52, + "grad_norm": 0.842641294002533, + "learning_rate": 1.87544e-05, + "loss": 1.3710438537597656, + "step": 468900 + }, + { + "epoch": 62.53333333333333, + "grad_norm": 0.8470684885978699, + "learning_rate": 1.8747733333333333e-05, + "loss": 1.37222412109375, + "step": 469000 + }, + { + "epoch": 62.54666666666667, + "grad_norm": 0.9085938334465027, + "learning_rate": 1.874106666666667e-05, + "loss": 1.3758197021484375, + "step": 469100 + }, + { + "epoch": 62.56, + "grad_norm": 0.8867812156677246, + "learning_rate": 1.87344e-05, + "loss": 1.3802314758300782, + "step": 469200 + }, + { + "epoch": 62.57333333333333, + "grad_norm": 0.8809147477149963, + "learning_rate": 1.8727733333333334e-05, + "loss": 1.3785780334472657, + "step": 469300 + }, + { + "epoch": 62.586666666666666, + "grad_norm": 0.8905417323112488, + "learning_rate": 1.8721066666666666e-05, + "loss": 1.3713362121582031, + "step": 469400 + }, + { + "epoch": 62.6, + "grad_norm": 0.8625428080558777, + "learning_rate": 1.87144e-05, + "loss": 1.3784394836425782, + "step": 469500 + }, + { + "epoch": 62.61333333333333, + "grad_norm": 0.8563883304595947, + "learning_rate": 1.8707733333333334e-05, + "loss": 1.3763919067382813, + "step": 469600 + }, + { + "epoch": 62.626666666666665, + "grad_norm": 0.9011384844779968, + "learning_rate": 1.8701066666666666e-05, + "loss": 1.379695587158203, + "step": 469700 + }, + { + "epoch": 62.64, + "grad_norm": 0.8625617623329163, + "learning_rate": 1.8694400000000002e-05, + "loss": 1.376241455078125, + "step": 469800 + }, + { + "epoch": 62.653333333333336, + "grad_norm": 0.9148832559585571, + "learning_rate": 1.86878e-05, + "loss": 1.3796707153320313, + "step": 469900 + }, + { + "epoch": 62.666666666666664, + "grad_norm": 0.8644863367080688, + "learning_rate": 1.8681133333333333e-05, + "loss": 1.3743251037597657, + "step": 470000 + }, + { + "epoch": 62.68, + "grad_norm": 0.8707835674285889, + "learning_rate": 1.867446666666667e-05, + "loss": 1.3785989379882813, + "step": 470100 + }, + { + "epoch": 62.693333333333335, + "grad_norm": 0.8736674785614014, + "learning_rate": 1.86678e-05, + "loss": 1.3785296630859376, + "step": 470200 + }, + { + "epoch": 62.70666666666666, + "grad_norm": 0.8863952159881592, + "learning_rate": 1.8661133333333333e-05, + "loss": 1.3846035766601563, + "step": 470300 + }, + { + "epoch": 62.72, + "grad_norm": 0.8530660271644592, + "learning_rate": 1.865446666666667e-05, + "loss": 1.3847772216796874, + "step": 470400 + }, + { + "epoch": 62.733333333333334, + "grad_norm": 0.9117617607116699, + "learning_rate": 1.86478e-05, + "loss": 1.379307403564453, + "step": 470500 + }, + { + "epoch": 62.74666666666667, + "grad_norm": 0.9356516003608704, + "learning_rate": 1.8641133333333337e-05, + "loss": 1.3868818664550782, + "step": 470600 + }, + { + "epoch": 62.76, + "grad_norm": 0.9563553929328918, + "learning_rate": 1.8634466666666666e-05, + "loss": 1.3831312561035156, + "step": 470700 + }, + { + "epoch": 62.77333333333333, + "grad_norm": 0.8613978028297424, + "learning_rate": 1.86278e-05, + "loss": 1.386735382080078, + "step": 470800 + }, + { + "epoch": 62.78666666666667, + "grad_norm": 0.8880415558815002, + "learning_rate": 1.8621133333333334e-05, + "loss": 1.3830174255371093, + "step": 470900 + }, + { + "epoch": 62.8, + "grad_norm": 0.8753419518470764, + "learning_rate": 1.861446666666667e-05, + "loss": 1.3831968688964844, + "step": 471000 + }, + { + "epoch": 62.81333333333333, + "grad_norm": 0.8973806500434875, + "learning_rate": 1.86078e-05, + "loss": 1.384782257080078, + "step": 471100 + }, + { + "epoch": 62.82666666666667, + "grad_norm": 0.8728386759757996, + "learning_rate": 1.8601133333333334e-05, + "loss": 1.3836083984375, + "step": 471200 + }, + { + "epoch": 62.84, + "grad_norm": 0.8542366623878479, + "learning_rate": 1.859446666666667e-05, + "loss": 1.3806695556640625, + "step": 471300 + }, + { + "epoch": 62.85333333333333, + "grad_norm": 0.9084987640380859, + "learning_rate": 1.85878e-05, + "loss": 1.3919306945800782, + "step": 471400 + }, + { + "epoch": 62.86666666666667, + "grad_norm": 0.9229134321212769, + "learning_rate": 1.8581133333333334e-05, + "loss": 1.3888737487792968, + "step": 471500 + }, + { + "epoch": 62.88, + "grad_norm": 0.9117254614830017, + "learning_rate": 1.8574466666666666e-05, + "loss": 1.389185791015625, + "step": 471600 + }, + { + "epoch": 62.89333333333333, + "grad_norm": 0.9002920389175415, + "learning_rate": 1.8567800000000002e-05, + "loss": 1.3870626831054687, + "step": 471700 + }, + { + "epoch": 62.906666666666666, + "grad_norm": 0.9569069743156433, + "learning_rate": 1.8561133333333334e-05, + "loss": 1.3885276794433594, + "step": 471800 + }, + { + "epoch": 62.92, + "grad_norm": 0.8567367196083069, + "learning_rate": 1.8554533333333333e-05, + "loss": 1.3927679443359375, + "step": 471900 + }, + { + "epoch": 62.93333333333333, + "grad_norm": 0.8821707963943481, + "learning_rate": 1.8547866666666666e-05, + "loss": 1.385771484375, + "step": 472000 + }, + { + "epoch": 62.946666666666665, + "grad_norm": 0.934012234210968, + "learning_rate": 1.85412e-05, + "loss": 1.3942887878417969, + "step": 472100 + }, + { + "epoch": 62.96, + "grad_norm": 0.9266797304153442, + "learning_rate": 1.8534533333333334e-05, + "loss": 1.3928118896484376, + "step": 472200 + }, + { + "epoch": 62.973333333333336, + "grad_norm": 0.9574691653251648, + "learning_rate": 1.852786666666667e-05, + "loss": 1.3905284118652343, + "step": 472300 + }, + { + "epoch": 62.986666666666665, + "grad_norm": 0.924963116645813, + "learning_rate": 1.8521199999999998e-05, + "loss": 1.3944451904296875, + "step": 472400 + }, + { + "epoch": 63.0, + "grad_norm": 0.8816106915473938, + "learning_rate": 1.8514533333333334e-05, + "loss": 1.393121795654297, + "step": 472500 + }, + { + "epoch": 63.013333333333335, + "grad_norm": 0.8383874297142029, + "learning_rate": 1.850786666666667e-05, + "loss": 1.3370849609375, + "step": 472600 + }, + { + "epoch": 63.026666666666664, + "grad_norm": 0.8403507471084595, + "learning_rate": 1.85012e-05, + "loss": 1.3425094604492187, + "step": 472700 + }, + { + "epoch": 63.04, + "grad_norm": 0.8906253576278687, + "learning_rate": 1.8494533333333334e-05, + "loss": 1.340731658935547, + "step": 472800 + }, + { + "epoch": 63.053333333333335, + "grad_norm": 0.9231695532798767, + "learning_rate": 1.8487866666666666e-05, + "loss": 1.3418489074707032, + "step": 472900 + }, + { + "epoch": 63.06666666666667, + "grad_norm": 0.879458487033844, + "learning_rate": 1.8481200000000002e-05, + "loss": 1.3442330932617188, + "step": 473000 + }, + { + "epoch": 63.08, + "grad_norm": 0.8238392472267151, + "learning_rate": 1.8474533333333334e-05, + "loss": 1.3447978210449218, + "step": 473100 + }, + { + "epoch": 63.093333333333334, + "grad_norm": 0.8179836273193359, + "learning_rate": 1.8467866666666666e-05, + "loss": 1.3443252563476562, + "step": 473200 + }, + { + "epoch": 63.10666666666667, + "grad_norm": 0.8274221420288086, + "learning_rate": 1.8461200000000002e-05, + "loss": 1.3449710083007813, + "step": 473300 + }, + { + "epoch": 63.12, + "grad_norm": 0.8805060982704163, + "learning_rate": 1.8454533333333334e-05, + "loss": 1.34772705078125, + "step": 473400 + }, + { + "epoch": 63.13333333333333, + "grad_norm": 0.856552004814148, + "learning_rate": 1.844786666666667e-05, + "loss": 1.34474609375, + "step": 473500 + }, + { + "epoch": 63.14666666666667, + "grad_norm": 0.8999550938606262, + "learning_rate": 1.84412e-05, + "loss": 1.3447769165039063, + "step": 473600 + }, + { + "epoch": 63.16, + "grad_norm": 0.8466945886611938, + "learning_rate": 1.8434533333333335e-05, + "loss": 1.3498774719238282, + "step": 473700 + }, + { + "epoch": 63.17333333333333, + "grad_norm": 0.8720507621765137, + "learning_rate": 1.8427866666666667e-05, + "loss": 1.3509268188476562, + "step": 473800 + }, + { + "epoch": 63.18666666666667, + "grad_norm": 0.8553282618522644, + "learning_rate": 1.84212e-05, + "loss": 1.3472882080078126, + "step": 473900 + }, + { + "epoch": 63.2, + "grad_norm": 0.8717467188835144, + "learning_rate": 1.84146e-05, + "loss": 1.3507821655273438, + "step": 474000 + }, + { + "epoch": 63.21333333333333, + "grad_norm": 0.8789405822753906, + "learning_rate": 1.8407933333333334e-05, + "loss": 1.3463182067871093, + "step": 474100 + }, + { + "epoch": 63.22666666666667, + "grad_norm": 0.8856403231620789, + "learning_rate": 1.8401266666666666e-05, + "loss": 1.3535433959960939, + "step": 474200 + }, + { + "epoch": 63.24, + "grad_norm": 0.8736082911491394, + "learning_rate": 1.8394600000000002e-05, + "loss": 1.353790283203125, + "step": 474300 + }, + { + "epoch": 63.25333333333333, + "grad_norm": 0.8425241112709045, + "learning_rate": 1.8387933333333334e-05, + "loss": 1.3515614318847655, + "step": 474400 + }, + { + "epoch": 63.266666666666666, + "grad_norm": 0.8841555118560791, + "learning_rate": 1.838126666666667e-05, + "loss": 1.357039794921875, + "step": 474500 + }, + { + "epoch": 63.28, + "grad_norm": 0.8851358890533447, + "learning_rate": 1.83746e-05, + "loss": 1.3571649169921876, + "step": 474600 + }, + { + "epoch": 63.29333333333334, + "grad_norm": 0.8119401335716248, + "learning_rate": 1.8367933333333334e-05, + "loss": 1.3512042236328126, + "step": 474700 + }, + { + "epoch": 63.306666666666665, + "grad_norm": 0.8968778848648071, + "learning_rate": 1.836126666666667e-05, + "loss": 1.3547596740722656, + "step": 474800 + }, + { + "epoch": 63.32, + "grad_norm": 0.9098058938980103, + "learning_rate": 1.83546e-05, + "loss": 1.3593733215332031, + "step": 474900 + }, + { + "epoch": 63.333333333333336, + "grad_norm": 0.8831583857536316, + "learning_rate": 1.8347933333333334e-05, + "loss": 1.355583953857422, + "step": 475000 + }, + { + "epoch": 63.346666666666664, + "grad_norm": 0.8631011843681335, + "learning_rate": 1.8341266666666667e-05, + "loss": 1.3582133483886718, + "step": 475100 + }, + { + "epoch": 63.36, + "grad_norm": 0.8748294115066528, + "learning_rate": 1.8334600000000002e-05, + "loss": 1.359095458984375, + "step": 475200 + }, + { + "epoch": 63.373333333333335, + "grad_norm": 0.8583943247795105, + "learning_rate": 1.8327933333333335e-05, + "loss": 1.3613153076171876, + "step": 475300 + }, + { + "epoch": 63.38666666666666, + "grad_norm": 0.8866649270057678, + "learning_rate": 1.8321266666666667e-05, + "loss": 1.3615292358398436, + "step": 475400 + }, + { + "epoch": 63.4, + "grad_norm": 0.8681355714797974, + "learning_rate": 1.8314600000000002e-05, + "loss": 1.3599000549316407, + "step": 475500 + }, + { + "epoch": 63.413333333333334, + "grad_norm": 0.9076934456825256, + "learning_rate": 1.8307933333333335e-05, + "loss": 1.3641069030761719, + "step": 475600 + }, + { + "epoch": 63.42666666666667, + "grad_norm": 0.8490332961082458, + "learning_rate": 1.8301266666666667e-05, + "loss": 1.3651712036132813, + "step": 475700 + }, + { + "epoch": 63.44, + "grad_norm": 0.8959413170814514, + "learning_rate": 1.82946e-05, + "loss": 1.3646134948730468, + "step": 475800 + }, + { + "epoch": 63.45333333333333, + "grad_norm": 0.843246340751648, + "learning_rate": 1.8287933333333335e-05, + "loss": 1.362332763671875, + "step": 475900 + }, + { + "epoch": 63.46666666666667, + "grad_norm": 0.874142050743103, + "learning_rate": 1.8281333333333334e-05, + "loss": 1.3656585693359375, + "step": 476000 + }, + { + "epoch": 63.48, + "grad_norm": 0.9227689504623413, + "learning_rate": 1.8274666666666666e-05, + "loss": 1.3628779602050782, + "step": 476100 + }, + { + "epoch": 63.49333333333333, + "grad_norm": 0.8379034399986267, + "learning_rate": 1.8268000000000002e-05, + "loss": 1.3627792358398438, + "step": 476200 + }, + { + "epoch": 63.50666666666667, + "grad_norm": 0.8998229503631592, + "learning_rate": 1.8261333333333334e-05, + "loss": 1.3685745239257812, + "step": 476300 + }, + { + "epoch": 63.52, + "grad_norm": 0.9073343276977539, + "learning_rate": 1.8254666666666666e-05, + "loss": 1.3673577880859376, + "step": 476400 + }, + { + "epoch": 63.53333333333333, + "grad_norm": 0.8960281014442444, + "learning_rate": 1.8248000000000002e-05, + "loss": 1.3650401306152344, + "step": 476500 + }, + { + "epoch": 63.54666666666667, + "grad_norm": 0.8500860333442688, + "learning_rate": 1.8241333333333334e-05, + "loss": 1.363343505859375, + "step": 476600 + }, + { + "epoch": 63.56, + "grad_norm": 0.9132857918739319, + "learning_rate": 1.8234666666666667e-05, + "loss": 1.3673420715332032, + "step": 476700 + }, + { + "epoch": 63.57333333333333, + "grad_norm": 0.851512610912323, + "learning_rate": 1.8228e-05, + "loss": 1.3654722595214843, + "step": 476800 + }, + { + "epoch": 63.586666666666666, + "grad_norm": 0.9432153701782227, + "learning_rate": 1.8221333333333335e-05, + "loss": 1.37032470703125, + "step": 476900 + }, + { + "epoch": 63.6, + "grad_norm": 0.8776945471763611, + "learning_rate": 1.821466666666667e-05, + "loss": 1.3680665588378906, + "step": 477000 + }, + { + "epoch": 63.61333333333333, + "grad_norm": 0.8363541960716248, + "learning_rate": 1.8208e-05, + "loss": 1.3700338745117187, + "step": 477100 + }, + { + "epoch": 63.626666666666665, + "grad_norm": 0.8852552771568298, + "learning_rate": 1.8201333333333335e-05, + "loss": 1.367037811279297, + "step": 477200 + }, + { + "epoch": 63.64, + "grad_norm": 0.9047751426696777, + "learning_rate": 1.8194666666666667e-05, + "loss": 1.3724662780761718, + "step": 477300 + }, + { + "epoch": 63.653333333333336, + "grad_norm": 0.9022383093833923, + "learning_rate": 1.8188e-05, + "loss": 1.36989013671875, + "step": 477400 + }, + { + "epoch": 63.666666666666664, + "grad_norm": 0.8873071670532227, + "learning_rate": 1.8181333333333335e-05, + "loss": 1.3709544372558593, + "step": 477500 + }, + { + "epoch": 63.68, + "grad_norm": 0.8178770542144775, + "learning_rate": 1.8174666666666667e-05, + "loss": 1.3764271545410156, + "step": 477600 + }, + { + "epoch": 63.693333333333335, + "grad_norm": 0.8374172449111938, + "learning_rate": 1.8168000000000003e-05, + "loss": 1.3749362182617189, + "step": 477700 + }, + { + "epoch": 63.70666666666666, + "grad_norm": 0.8704270124435425, + "learning_rate": 1.8161333333333332e-05, + "loss": 1.3716815185546876, + "step": 477800 + }, + { + "epoch": 63.72, + "grad_norm": 0.8928576111793518, + "learning_rate": 1.8154666666666667e-05, + "loss": 1.3758961486816406, + "step": 477900 + }, + { + "epoch": 63.733333333333334, + "grad_norm": 0.8924788236618042, + "learning_rate": 1.814806666666667e-05, + "loss": 1.3712451171875, + "step": 478000 + }, + { + "epoch": 63.74666666666667, + "grad_norm": 0.9000948071479797, + "learning_rate": 1.81414e-05, + "loss": 1.3741796875, + "step": 478100 + }, + { + "epoch": 63.76, + "grad_norm": 0.8834265470504761, + "learning_rate": 1.8134733333333334e-05, + "loss": 1.3737052917480468, + "step": 478200 + }, + { + "epoch": 63.77333333333333, + "grad_norm": 0.9444625377655029, + "learning_rate": 1.8128066666666667e-05, + "loss": 1.373978729248047, + "step": 478300 + }, + { + "epoch": 63.78666666666667, + "grad_norm": 0.9131369590759277, + "learning_rate": 1.81214e-05, + "loss": 1.376599578857422, + "step": 478400 + }, + { + "epoch": 63.8, + "grad_norm": 0.9047242999076843, + "learning_rate": 1.8114733333333335e-05, + "loss": 1.3785902404785155, + "step": 478500 + }, + { + "epoch": 63.81333333333333, + "grad_norm": 0.9182378649711609, + "learning_rate": 1.8108066666666667e-05, + "loss": 1.3755938720703125, + "step": 478600 + }, + { + "epoch": 63.82666666666667, + "grad_norm": 0.8585050106048584, + "learning_rate": 1.8101400000000003e-05, + "loss": 1.378345947265625, + "step": 478700 + }, + { + "epoch": 63.84, + "grad_norm": 0.9279830455780029, + "learning_rate": 1.809473333333333e-05, + "loss": 1.3787484741210938, + "step": 478800 + }, + { + "epoch": 63.85333333333333, + "grad_norm": 0.9332795739173889, + "learning_rate": 1.8088066666666667e-05, + "loss": 1.375228271484375, + "step": 478900 + }, + { + "epoch": 63.86666666666667, + "grad_norm": 0.8513908386230469, + "learning_rate": 1.8081400000000003e-05, + "loss": 1.3808787536621094, + "step": 479000 + }, + { + "epoch": 63.88, + "grad_norm": 0.8637625575065613, + "learning_rate": 1.8074733333333335e-05, + "loss": 1.3811036682128905, + "step": 479100 + }, + { + "epoch": 63.89333333333333, + "grad_norm": 0.8872289061546326, + "learning_rate": 1.8068066666666667e-05, + "loss": 1.3788679504394532, + "step": 479200 + }, + { + "epoch": 63.906666666666666, + "grad_norm": 0.8666730523109436, + "learning_rate": 1.80614e-05, + "loss": 1.3822543334960937, + "step": 479300 + }, + { + "epoch": 63.92, + "grad_norm": 0.8657490015029907, + "learning_rate": 1.8054733333333335e-05, + "loss": 1.3822019958496095, + "step": 479400 + }, + { + "epoch": 63.93333333333333, + "grad_norm": 0.8995828032493591, + "learning_rate": 1.8048066666666667e-05, + "loss": 1.3845445251464843, + "step": 479500 + }, + { + "epoch": 63.946666666666665, + "grad_norm": 0.882078230381012, + "learning_rate": 1.80414e-05, + "loss": 1.3831179809570313, + "step": 479600 + }, + { + "epoch": 63.96, + "grad_norm": 0.9140791296958923, + "learning_rate": 1.8034733333333335e-05, + "loss": 1.38243408203125, + "step": 479700 + }, + { + "epoch": 63.973333333333336, + "grad_norm": 0.9000608921051025, + "learning_rate": 1.8028066666666668e-05, + "loss": 1.3803366088867188, + "step": 479800 + }, + { + "epoch": 63.986666666666665, + "grad_norm": 0.8583875894546509, + "learning_rate": 1.8021400000000003e-05, + "loss": 1.378529052734375, + "step": 479900 + }, + { + "epoch": 64.0, + "grad_norm": 0.8945102095603943, + "learning_rate": 1.8014800000000002e-05, + "loss": 1.384607696533203, + "step": 480000 + }, + { + "epoch": 64.01333333333334, + "grad_norm": 0.8934009671211243, + "learning_rate": 1.8008133333333335e-05, + "loss": 1.3323703002929688, + "step": 480100 + }, + { + "epoch": 64.02666666666667, + "grad_norm": 0.9144300222396851, + "learning_rate": 1.8001466666666667e-05, + "loss": 1.330888671875, + "step": 480200 + }, + { + "epoch": 64.04, + "grad_norm": 0.8587374091148376, + "learning_rate": 1.79948e-05, + "loss": 1.3373068237304688, + "step": 480300 + }, + { + "epoch": 64.05333333333333, + "grad_norm": 0.8584490418434143, + "learning_rate": 1.7988133333333335e-05, + "loss": 1.3341929626464843, + "step": 480400 + }, + { + "epoch": 64.06666666666666, + "grad_norm": 0.8442391753196716, + "learning_rate": 1.7981466666666667e-05, + "loss": 1.3336114501953125, + "step": 480500 + }, + { + "epoch": 64.08, + "grad_norm": 0.8665919899940491, + "learning_rate": 1.79748e-05, + "loss": 1.338314208984375, + "step": 480600 + }, + { + "epoch": 64.09333333333333, + "grad_norm": 0.8454016447067261, + "learning_rate": 1.7968133333333335e-05, + "loss": 1.3366471862792968, + "step": 480700 + }, + { + "epoch": 64.10666666666667, + "grad_norm": 0.8860534429550171, + "learning_rate": 1.7961466666666667e-05, + "loss": 1.3377793884277345, + "step": 480800 + }, + { + "epoch": 64.12, + "grad_norm": 0.8886109590530396, + "learning_rate": 1.7954800000000003e-05, + "loss": 1.3379669189453125, + "step": 480900 + }, + { + "epoch": 64.13333333333334, + "grad_norm": 0.8925758600234985, + "learning_rate": 1.7948133333333332e-05, + "loss": 1.33873046875, + "step": 481000 + }, + { + "epoch": 64.14666666666666, + "grad_norm": 0.8780699968338013, + "learning_rate": 1.7941466666666668e-05, + "loss": 1.3358087158203125, + "step": 481100 + }, + { + "epoch": 64.16, + "grad_norm": 0.8357890844345093, + "learning_rate": 1.7934800000000003e-05, + "loss": 1.3425820922851563, + "step": 481200 + }, + { + "epoch": 64.17333333333333, + "grad_norm": 0.8988547921180725, + "learning_rate": 1.7928133333333332e-05, + "loss": 1.3423739624023439, + "step": 481300 + }, + { + "epoch": 64.18666666666667, + "grad_norm": 0.8725674152374268, + "learning_rate": 1.7921466666666668e-05, + "loss": 1.3443193054199218, + "step": 481400 + }, + { + "epoch": 64.2, + "grad_norm": 0.9312418103218079, + "learning_rate": 1.79148e-05, + "loss": 1.340561065673828, + "step": 481500 + }, + { + "epoch": 64.21333333333334, + "grad_norm": 0.9096835255622864, + "learning_rate": 1.7908133333333336e-05, + "loss": 1.3408326721191406, + "step": 481600 + }, + { + "epoch": 64.22666666666667, + "grad_norm": 0.869185745716095, + "learning_rate": 1.7901466666666668e-05, + "loss": 1.3416743469238281, + "step": 481700 + }, + { + "epoch": 64.24, + "grad_norm": 0.8828217387199402, + "learning_rate": 1.78948e-05, + "loss": 1.34640625, + "step": 481800 + }, + { + "epoch": 64.25333333333333, + "grad_norm": 0.8781388401985168, + "learning_rate": 1.7888133333333336e-05, + "loss": 1.3463336181640626, + "step": 481900 + }, + { + "epoch": 64.26666666666667, + "grad_norm": 0.8844797611236572, + "learning_rate": 1.7881466666666668e-05, + "loss": 1.3434307861328125, + "step": 482000 + }, + { + "epoch": 64.28, + "grad_norm": 0.9093835949897766, + "learning_rate": 1.7874866666666667e-05, + "loss": 1.3477468872070313, + "step": 482100 + }, + { + "epoch": 64.29333333333334, + "grad_norm": 0.9038063287734985, + "learning_rate": 1.7868200000000003e-05, + "loss": 1.3481039428710937, + "step": 482200 + }, + { + "epoch": 64.30666666666667, + "grad_norm": 0.8139824867248535, + "learning_rate": 1.7861533333333332e-05, + "loss": 1.34718505859375, + "step": 482300 + }, + { + "epoch": 64.32, + "grad_norm": 0.8709118366241455, + "learning_rate": 1.7854866666666667e-05, + "loss": 1.3521086120605468, + "step": 482400 + }, + { + "epoch": 64.33333333333333, + "grad_norm": 0.8406969904899597, + "learning_rate": 1.78482e-05, + "loss": 1.3482559204101563, + "step": 482500 + }, + { + "epoch": 64.34666666666666, + "grad_norm": 0.8496643304824829, + "learning_rate": 1.7841533333333335e-05, + "loss": 1.3503038024902343, + "step": 482600 + }, + { + "epoch": 64.36, + "grad_norm": 0.8447983264923096, + "learning_rate": 1.7834866666666668e-05, + "loss": 1.3484323120117188, + "step": 482700 + }, + { + "epoch": 64.37333333333333, + "grad_norm": 0.9065347909927368, + "learning_rate": 1.78282e-05, + "loss": 1.350572052001953, + "step": 482800 + }, + { + "epoch": 64.38666666666667, + "grad_norm": 0.8340687155723572, + "learning_rate": 1.7821533333333335e-05, + "loss": 1.3543763732910157, + "step": 482900 + }, + { + "epoch": 64.4, + "grad_norm": 0.8966395854949951, + "learning_rate": 1.7814866666666668e-05, + "loss": 1.3548075866699218, + "step": 483000 + }, + { + "epoch": 64.41333333333333, + "grad_norm": 0.8993328809738159, + "learning_rate": 1.78082e-05, + "loss": 1.354648895263672, + "step": 483100 + }, + { + "epoch": 64.42666666666666, + "grad_norm": 0.9374759793281555, + "learning_rate": 1.7801533333333332e-05, + "loss": 1.361200714111328, + "step": 483200 + }, + { + "epoch": 64.44, + "grad_norm": 0.8411123752593994, + "learning_rate": 1.7794866666666668e-05, + "loss": 1.3539253234863282, + "step": 483300 + }, + { + "epoch": 64.45333333333333, + "grad_norm": 0.8600159287452698, + "learning_rate": 1.7788200000000004e-05, + "loss": 1.3555935668945311, + "step": 483400 + }, + { + "epoch": 64.46666666666667, + "grad_norm": 0.8644974827766418, + "learning_rate": 1.7781533333333332e-05, + "loss": 1.3521513366699218, + "step": 483500 + }, + { + "epoch": 64.48, + "grad_norm": 0.8847560882568359, + "learning_rate": 1.7774866666666668e-05, + "loss": 1.3578965759277344, + "step": 483600 + }, + { + "epoch": 64.49333333333334, + "grad_norm": 0.9277763366699219, + "learning_rate": 1.77682e-05, + "loss": 1.3535302734375, + "step": 483700 + }, + { + "epoch": 64.50666666666666, + "grad_norm": 0.8610851168632507, + "learning_rate": 1.7761533333333333e-05, + "loss": 1.3627682495117188, + "step": 483800 + }, + { + "epoch": 64.52, + "grad_norm": 0.9150212407112122, + "learning_rate": 1.775486666666667e-05, + "loss": 1.3568341064453124, + "step": 483900 + }, + { + "epoch": 64.53333333333333, + "grad_norm": 0.8788309097290039, + "learning_rate": 1.77482e-05, + "loss": 1.35930908203125, + "step": 484000 + }, + { + "epoch": 64.54666666666667, + "grad_norm": 0.877782940864563, + "learning_rate": 1.77416e-05, + "loss": 1.3600112915039062, + "step": 484100 + }, + { + "epoch": 64.56, + "grad_norm": 0.8888121843338013, + "learning_rate": 1.7734933333333335e-05, + "loss": 1.3572149658203125, + "step": 484200 + }, + { + "epoch": 64.57333333333334, + "grad_norm": 0.884781539440155, + "learning_rate": 1.7728266666666668e-05, + "loss": 1.358846435546875, + "step": 484300 + }, + { + "epoch": 64.58666666666667, + "grad_norm": 0.8472477793693542, + "learning_rate": 1.7721600000000003e-05, + "loss": 1.3618157958984376, + "step": 484400 + }, + { + "epoch": 64.6, + "grad_norm": 0.8843161463737488, + "learning_rate": 1.7714933333333332e-05, + "loss": 1.3596778869628907, + "step": 484500 + }, + { + "epoch": 64.61333333333333, + "grad_norm": 0.8994573950767517, + "learning_rate": 1.7708266666666668e-05, + "loss": 1.3632307434082032, + "step": 484600 + }, + { + "epoch": 64.62666666666667, + "grad_norm": 0.8576304316520691, + "learning_rate": 1.77016e-05, + "loss": 1.363969268798828, + "step": 484700 + }, + { + "epoch": 64.64, + "grad_norm": 0.9063739776611328, + "learning_rate": 1.7694933333333332e-05, + "loss": 1.3635774230957032, + "step": 484800 + }, + { + "epoch": 64.65333333333334, + "grad_norm": 0.9036448001861572, + "learning_rate": 1.7688266666666668e-05, + "loss": 1.3654200744628906, + "step": 484900 + }, + { + "epoch": 64.66666666666667, + "grad_norm": 0.8992440104484558, + "learning_rate": 1.76816e-05, + "loss": 1.363550262451172, + "step": 485000 + }, + { + "epoch": 64.68, + "grad_norm": 0.9224612712860107, + "learning_rate": 1.7674933333333336e-05, + "loss": 1.363682403564453, + "step": 485100 + }, + { + "epoch": 64.69333333333333, + "grad_norm": 0.9652465581893921, + "learning_rate": 1.7668266666666665e-05, + "loss": 1.361661376953125, + "step": 485200 + }, + { + "epoch": 64.70666666666666, + "grad_norm": 0.9061663150787354, + "learning_rate": 1.76616e-05, + "loss": 1.3631404113769532, + "step": 485300 + }, + { + "epoch": 64.72, + "grad_norm": 0.8742295503616333, + "learning_rate": 1.7654933333333336e-05, + "loss": 1.365829620361328, + "step": 485400 + }, + { + "epoch": 64.73333333333333, + "grad_norm": 0.8189981579780579, + "learning_rate": 1.764826666666667e-05, + "loss": 1.3672276306152344, + "step": 485500 + }, + { + "epoch": 64.74666666666667, + "grad_norm": 0.9038211107254028, + "learning_rate": 1.76416e-05, + "loss": 1.367249755859375, + "step": 485600 + }, + { + "epoch": 64.76, + "grad_norm": 0.9079329967498779, + "learning_rate": 1.7634933333333333e-05, + "loss": 1.3658090209960938, + "step": 485700 + }, + { + "epoch": 64.77333333333333, + "grad_norm": 0.8886961340904236, + "learning_rate": 1.762826666666667e-05, + "loss": 1.3678729248046875, + "step": 485800 + }, + { + "epoch": 64.78666666666666, + "grad_norm": 0.8585326671600342, + "learning_rate": 1.76216e-05, + "loss": 1.3665878295898437, + "step": 485900 + }, + { + "epoch": 64.8, + "grad_norm": 0.8595222234725952, + "learning_rate": 1.7614933333333333e-05, + "loss": 1.370436553955078, + "step": 486000 + }, + { + "epoch": 64.81333333333333, + "grad_norm": 0.8745478987693787, + "learning_rate": 1.7608333333333336e-05, + "loss": 1.366385955810547, + "step": 486100 + }, + { + "epoch": 64.82666666666667, + "grad_norm": 0.8671027421951294, + "learning_rate": 1.7601666666666668e-05, + "loss": 1.3709756469726562, + "step": 486200 + }, + { + "epoch": 64.84, + "grad_norm": 0.8887233734130859, + "learning_rate": 1.7595e-05, + "loss": 1.3694778442382813, + "step": 486300 + }, + { + "epoch": 64.85333333333334, + "grad_norm": 0.8951408863067627, + "learning_rate": 1.7588333333333336e-05, + "loss": 1.3722352600097656, + "step": 486400 + }, + { + "epoch": 64.86666666666666, + "grad_norm": 0.9203891158103943, + "learning_rate": 1.7581666666666668e-05, + "loss": 1.3695021057128907, + "step": 486500 + }, + { + "epoch": 64.88, + "grad_norm": 0.8783578872680664, + "learning_rate": 1.7575e-05, + "loss": 1.3721949768066406, + "step": 486600 + }, + { + "epoch": 64.89333333333333, + "grad_norm": 0.8755213618278503, + "learning_rate": 1.7568333333333333e-05, + "loss": 1.3693832397460937, + "step": 486700 + }, + { + "epoch": 64.90666666666667, + "grad_norm": 0.8497536182403564, + "learning_rate": 1.7561666666666668e-05, + "loss": 1.3738072204589844, + "step": 486800 + }, + { + "epoch": 64.92, + "grad_norm": 0.8674045205116272, + "learning_rate": 1.7555e-05, + "loss": 1.3736123657226562, + "step": 486900 + }, + { + "epoch": 64.93333333333334, + "grad_norm": 0.924431562423706, + "learning_rate": 1.7548333333333333e-05, + "loss": 1.3719955444335938, + "step": 487000 + }, + { + "epoch": 64.94666666666667, + "grad_norm": 0.9057454466819763, + "learning_rate": 1.754166666666667e-05, + "loss": 1.3727705383300781, + "step": 487100 + }, + { + "epoch": 64.96, + "grad_norm": 0.8692907691001892, + "learning_rate": 1.7535e-05, + "loss": 1.3746487426757812, + "step": 487200 + }, + { + "epoch": 64.97333333333333, + "grad_norm": 0.9203537106513977, + "learning_rate": 1.7528333333333336e-05, + "loss": 1.37078369140625, + "step": 487300 + }, + { + "epoch": 64.98666666666666, + "grad_norm": 0.929847240447998, + "learning_rate": 1.7521666666666665e-05, + "loss": 1.3816091918945312, + "step": 487400 + }, + { + "epoch": 65.0, + "grad_norm": 0.9408981800079346, + "learning_rate": 1.7515e-05, + "loss": 1.3738502502441405, + "step": 487500 + }, + { + "epoch": 65.01333333333334, + "grad_norm": 0.8666677474975586, + "learning_rate": 1.7508333333333337e-05, + "loss": 1.3275274658203124, + "step": 487600 + }, + { + "epoch": 65.02666666666667, + "grad_norm": 0.883374035358429, + "learning_rate": 1.7501666666666665e-05, + "loss": 1.322354278564453, + "step": 487700 + }, + { + "epoch": 65.04, + "grad_norm": 0.9123470187187195, + "learning_rate": 1.7495e-05, + "loss": 1.3236787414550781, + "step": 487800 + }, + { + "epoch": 65.05333333333333, + "grad_norm": 0.8003033399581909, + "learning_rate": 1.7488333333333333e-05, + "loss": 1.3260044860839844, + "step": 487900 + }, + { + "epoch": 65.06666666666666, + "grad_norm": 0.8853775858879089, + "learning_rate": 1.748166666666667e-05, + "loss": 1.3234710693359375, + "step": 488000 + }, + { + "epoch": 65.08, + "grad_norm": 0.8827279806137085, + "learning_rate": 1.7475e-05, + "loss": 1.3306411743164062, + "step": 488100 + }, + { + "epoch": 65.09333333333333, + "grad_norm": 0.8656889200210571, + "learning_rate": 1.74684e-05, + "loss": 1.3258221435546875, + "step": 488200 + }, + { + "epoch": 65.10666666666667, + "grad_norm": 0.8413640856742859, + "learning_rate": 1.7461733333333336e-05, + "loss": 1.3284645080566406, + "step": 488300 + }, + { + "epoch": 65.12, + "grad_norm": 0.8911667466163635, + "learning_rate": 1.7455066666666668e-05, + "loss": 1.3333392333984375, + "step": 488400 + }, + { + "epoch": 65.13333333333334, + "grad_norm": 0.9145627021789551, + "learning_rate": 1.74484e-05, + "loss": 1.3321968078613282, + "step": 488500 + }, + { + "epoch": 65.14666666666666, + "grad_norm": 0.8469613194465637, + "learning_rate": 1.7441733333333336e-05, + "loss": 1.3286016845703126, + "step": 488600 + }, + { + "epoch": 65.16, + "grad_norm": 0.8619856238365173, + "learning_rate": 1.7435066666666665e-05, + "loss": 1.333924560546875, + "step": 488700 + }, + { + "epoch": 65.17333333333333, + "grad_norm": 0.9197624921798706, + "learning_rate": 1.74284e-05, + "loss": 1.3354296875, + "step": 488800 + }, + { + "epoch": 65.18666666666667, + "grad_norm": 0.8337293863296509, + "learning_rate": 1.7421733333333333e-05, + "loss": 1.3360716247558593, + "step": 488900 + }, + { + "epoch": 65.2, + "grad_norm": 0.8918238878250122, + "learning_rate": 1.741506666666667e-05, + "loss": 1.3376748657226563, + "step": 489000 + }, + { + "epoch": 65.21333333333334, + "grad_norm": 0.8520711660385132, + "learning_rate": 1.74084e-05, + "loss": 1.3359193420410156, + "step": 489100 + }, + { + "epoch": 65.22666666666667, + "grad_norm": 0.8971502184867859, + "learning_rate": 1.7401733333333333e-05, + "loss": 1.337491455078125, + "step": 489200 + }, + { + "epoch": 65.24, + "grad_norm": 0.9194210767745972, + "learning_rate": 1.739506666666667e-05, + "loss": 1.3362680053710938, + "step": 489300 + }, + { + "epoch": 65.25333333333333, + "grad_norm": 0.8638772964477539, + "learning_rate": 1.73884e-05, + "loss": 1.3411000061035157, + "step": 489400 + }, + { + "epoch": 65.26666666666667, + "grad_norm": 0.8430476188659668, + "learning_rate": 1.7381733333333333e-05, + "loss": 1.3354183959960937, + "step": 489500 + }, + { + "epoch": 65.28, + "grad_norm": 0.8449836373329163, + "learning_rate": 1.7375066666666666e-05, + "loss": 1.3406202697753906, + "step": 489600 + }, + { + "epoch": 65.29333333333334, + "grad_norm": 0.914038360118866, + "learning_rate": 1.73684e-05, + "loss": 1.3422569274902343, + "step": 489700 + }, + { + "epoch": 65.30666666666667, + "grad_norm": 0.8925040364265442, + "learning_rate": 1.7361733333333337e-05, + "loss": 1.3404884338378906, + "step": 489800 + }, + { + "epoch": 65.32, + "grad_norm": 0.9155729413032532, + "learning_rate": 1.7355066666666666e-05, + "loss": 1.3383328247070312, + "step": 489900 + }, + { + "epoch": 65.33333333333333, + "grad_norm": 0.8363727331161499, + "learning_rate": 1.73484e-05, + "loss": 1.3454109191894532, + "step": 490000 + }, + { + "epoch": 65.34666666666666, + "grad_norm": 0.8507674932479858, + "learning_rate": 1.7341733333333334e-05, + "loss": 1.3441416931152343, + "step": 490100 + }, + { + "epoch": 65.36, + "grad_norm": 0.8748927116394043, + "learning_rate": 1.7335133333333333e-05, + "loss": 1.3435476684570313, + "step": 490200 + }, + { + "epoch": 65.37333333333333, + "grad_norm": 0.8672348856925964, + "learning_rate": 1.732846666666667e-05, + "loss": 1.3459814453125, + "step": 490300 + }, + { + "epoch": 65.38666666666667, + "grad_norm": 0.88212651014328, + "learning_rate": 1.73218e-05, + "loss": 1.3407472229003907, + "step": 490400 + }, + { + "epoch": 65.4, + "grad_norm": 0.8583021759986877, + "learning_rate": 1.7315133333333333e-05, + "loss": 1.3463021850585937, + "step": 490500 + }, + { + "epoch": 65.41333333333333, + "grad_norm": 0.9152435660362244, + "learning_rate": 1.730846666666667e-05, + "loss": 1.3485971069335938, + "step": 490600 + }, + { + "epoch": 65.42666666666666, + "grad_norm": 0.8737739324569702, + "learning_rate": 1.73018e-05, + "loss": 1.3460276794433594, + "step": 490700 + }, + { + "epoch": 65.44, + "grad_norm": 0.9325355887413025, + "learning_rate": 1.7295133333333337e-05, + "loss": 1.3474514770507813, + "step": 490800 + }, + { + "epoch": 65.45333333333333, + "grad_norm": 0.890143632888794, + "learning_rate": 1.7288466666666665e-05, + "loss": 1.351007537841797, + "step": 490900 + }, + { + "epoch": 65.46666666666667, + "grad_norm": 0.8700892925262451, + "learning_rate": 1.72818e-05, + "loss": 1.350022735595703, + "step": 491000 + }, + { + "epoch": 65.48, + "grad_norm": 0.8921332955360413, + "learning_rate": 1.7275133333333333e-05, + "loss": 1.3486946105957032, + "step": 491100 + }, + { + "epoch": 65.49333333333334, + "grad_norm": 0.8532953262329102, + "learning_rate": 1.7268466666666666e-05, + "loss": 1.3525364685058594, + "step": 491200 + }, + { + "epoch": 65.50666666666666, + "grad_norm": 0.8729583024978638, + "learning_rate": 1.72618e-05, + "loss": 1.3483073425292968, + "step": 491300 + }, + { + "epoch": 65.52, + "grad_norm": 0.8708832263946533, + "learning_rate": 1.7255133333333334e-05, + "loss": 1.3524284362792969, + "step": 491400 + }, + { + "epoch": 65.53333333333333, + "grad_norm": 0.8295683860778809, + "learning_rate": 1.724846666666667e-05, + "loss": 1.3510769653320311, + "step": 491500 + }, + { + "epoch": 65.54666666666667, + "grad_norm": 0.8452852964401245, + "learning_rate": 1.7241799999999998e-05, + "loss": 1.3477371215820313, + "step": 491600 + }, + { + "epoch": 65.56, + "grad_norm": 0.8989164233207703, + "learning_rate": 1.7235133333333334e-05, + "loss": 1.3510366821289062, + "step": 491700 + }, + { + "epoch": 65.57333333333334, + "grad_norm": 0.9267915487289429, + "learning_rate": 1.722846666666667e-05, + "loss": 1.3512055969238281, + "step": 491800 + }, + { + "epoch": 65.58666666666667, + "grad_norm": 0.8938575387001038, + "learning_rate": 1.7221800000000002e-05, + "loss": 1.3483731079101562, + "step": 491900 + }, + { + "epoch": 65.6, + "grad_norm": 0.8966379761695862, + "learning_rate": 1.7215133333333334e-05, + "loss": 1.3562388610839844, + "step": 492000 + }, + { + "epoch": 65.61333333333333, + "grad_norm": 0.9655941724777222, + "learning_rate": 1.7208466666666666e-05, + "loss": 1.3572232055664062, + "step": 492100 + }, + { + "epoch": 65.62666666666667, + "grad_norm": 0.8997311592102051, + "learning_rate": 1.7201866666666665e-05, + "loss": 1.3530233764648438, + "step": 492200 + }, + { + "epoch": 65.64, + "grad_norm": 0.9643396735191345, + "learning_rate": 1.71952e-05, + "loss": 1.3538816833496095, + "step": 492300 + }, + { + "epoch": 65.65333333333334, + "grad_norm": 0.8839356899261475, + "learning_rate": 1.7188533333333333e-05, + "loss": 1.353894500732422, + "step": 492400 + }, + { + "epoch": 65.66666666666667, + "grad_norm": 0.8668888807296753, + "learning_rate": 1.718186666666667e-05, + "loss": 1.3576565551757813, + "step": 492500 + }, + { + "epoch": 65.68, + "grad_norm": 0.9418817758560181, + "learning_rate": 1.71752e-05, + "loss": 1.3552629089355468, + "step": 492600 + }, + { + "epoch": 65.69333333333333, + "grad_norm": 0.8563518524169922, + "learning_rate": 1.7168533333333333e-05, + "loss": 1.3564772033691406, + "step": 492700 + }, + { + "epoch": 65.70666666666666, + "grad_norm": 0.8663268685340881, + "learning_rate": 1.716186666666667e-05, + "loss": 1.3568724060058595, + "step": 492800 + }, + { + "epoch": 65.72, + "grad_norm": 0.9083966612815857, + "learning_rate": 1.71552e-05, + "loss": 1.3571450805664063, + "step": 492900 + }, + { + "epoch": 65.73333333333333, + "grad_norm": 0.8793100118637085, + "learning_rate": 1.7148533333333334e-05, + "loss": 1.358192901611328, + "step": 493000 + }, + { + "epoch": 65.74666666666667, + "grad_norm": 0.8852581977844238, + "learning_rate": 1.7141866666666666e-05, + "loss": 1.3583030700683594, + "step": 493100 + }, + { + "epoch": 65.76, + "grad_norm": 0.8649989366531372, + "learning_rate": 1.71352e-05, + "loss": 1.3607272338867187, + "step": 493200 + }, + { + "epoch": 65.77333333333333, + "grad_norm": 0.9444963335990906, + "learning_rate": 1.7128533333333334e-05, + "loss": 1.3594973754882813, + "step": 493300 + }, + { + "epoch": 65.78666666666666, + "grad_norm": 0.8799870610237122, + "learning_rate": 1.7121866666666666e-05, + "loss": 1.3647491455078125, + "step": 493400 + }, + { + "epoch": 65.8, + "grad_norm": 0.8851443529129028, + "learning_rate": 1.7115200000000002e-05, + "loss": 1.3620616149902345, + "step": 493500 + }, + { + "epoch": 65.81333333333333, + "grad_norm": 0.8632842898368835, + "learning_rate": 1.7108533333333334e-05, + "loss": 1.3599568176269532, + "step": 493600 + }, + { + "epoch": 65.82666666666667, + "grad_norm": 0.889917254447937, + "learning_rate": 1.710186666666667e-05, + "loss": 1.3595269775390626, + "step": 493700 + }, + { + "epoch": 65.84, + "grad_norm": 0.8989757895469666, + "learning_rate": 1.70952e-05, + "loss": 1.3624153137207031, + "step": 493800 + }, + { + "epoch": 65.85333333333334, + "grad_norm": 0.9110841751098633, + "learning_rate": 1.7088533333333334e-05, + "loss": 1.3641012573242188, + "step": 493900 + }, + { + "epoch": 65.86666666666666, + "grad_norm": 0.8911044597625732, + "learning_rate": 1.708186666666667e-05, + "loss": 1.3604220581054687, + "step": 494000 + }, + { + "epoch": 65.88, + "grad_norm": 0.8616090416908264, + "learning_rate": 1.70752e-05, + "loss": 1.3651438903808595, + "step": 494100 + }, + { + "epoch": 65.89333333333333, + "grad_norm": 0.9104633331298828, + "learning_rate": 1.70686e-05, + "loss": 1.3625418090820312, + "step": 494200 + }, + { + "epoch": 65.90666666666667, + "grad_norm": 0.8897743821144104, + "learning_rate": 1.7061933333333337e-05, + "loss": 1.3588157653808595, + "step": 494300 + }, + { + "epoch": 65.92, + "grad_norm": 0.9464109539985657, + "learning_rate": 1.7055266666666666e-05, + "loss": 1.3652839660644531, + "step": 494400 + }, + { + "epoch": 65.93333333333334, + "grad_norm": 0.8611365556716919, + "learning_rate": 1.70486e-05, + "loss": 1.3610792541503907, + "step": 494500 + }, + { + "epoch": 65.94666666666667, + "grad_norm": 0.9123305082321167, + "learning_rate": 1.7041933333333334e-05, + "loss": 1.3650492858886718, + "step": 494600 + }, + { + "epoch": 65.96, + "grad_norm": 0.8548987507820129, + "learning_rate": 1.703526666666667e-05, + "loss": 1.3598005676269531, + "step": 494700 + }, + { + "epoch": 65.97333333333333, + "grad_norm": 0.9494167566299438, + "learning_rate": 1.70286e-05, + "loss": 1.3669606018066407, + "step": 494800 + }, + { + "epoch": 65.98666666666666, + "grad_norm": 0.9031914472579956, + "learning_rate": 1.7021933333333334e-05, + "loss": 1.3666676330566405, + "step": 494900 + }, + { + "epoch": 66.0, + "grad_norm": 0.9000195264816284, + "learning_rate": 1.701526666666667e-05, + "loss": 1.3696188354492187, + "step": 495000 + }, + { + "epoch": 66.01333333333334, + "grad_norm": 0.8464391231536865, + "learning_rate": 1.70086e-05, + "loss": 1.3161962890625, + "step": 495100 + }, + { + "epoch": 66.02666666666667, + "grad_norm": 0.8270666599273682, + "learning_rate": 1.7001933333333334e-05, + "loss": 1.319871368408203, + "step": 495200 + }, + { + "epoch": 66.04, + "grad_norm": 0.852210283279419, + "learning_rate": 1.6995266666666666e-05, + "loss": 1.3218473815917968, + "step": 495300 + }, + { + "epoch": 66.05333333333333, + "grad_norm": 0.879362165927887, + "learning_rate": 1.6988600000000002e-05, + "loss": 1.318983612060547, + "step": 495400 + }, + { + "epoch": 66.06666666666666, + "grad_norm": 0.8811297416687012, + "learning_rate": 1.6981933333333334e-05, + "loss": 1.320828399658203, + "step": 495500 + }, + { + "epoch": 66.08, + "grad_norm": 0.8936617970466614, + "learning_rate": 1.6975266666666667e-05, + "loss": 1.319468994140625, + "step": 495600 + }, + { + "epoch": 66.09333333333333, + "grad_norm": 0.8245587944984436, + "learning_rate": 1.6968600000000002e-05, + "loss": 1.3200828552246093, + "step": 495700 + }, + { + "epoch": 66.10666666666667, + "grad_norm": 0.9125563502311707, + "learning_rate": 1.6961933333333334e-05, + "loss": 1.3209025573730468, + "step": 495800 + }, + { + "epoch": 66.12, + "grad_norm": 0.8604671955108643, + "learning_rate": 1.6955266666666667e-05, + "loss": 1.3225840759277343, + "step": 495900 + }, + { + "epoch": 66.13333333333334, + "grad_norm": 0.8596413135528564, + "learning_rate": 1.69486e-05, + "loss": 1.3214039611816406, + "step": 496000 + }, + { + "epoch": 66.14666666666666, + "grad_norm": 0.8338813185691833, + "learning_rate": 1.6941933333333335e-05, + "loss": 1.3240989685058593, + "step": 496100 + }, + { + "epoch": 66.16, + "grad_norm": 0.8821403980255127, + "learning_rate": 1.6935333333333334e-05, + "loss": 1.3248197937011719, + "step": 496200 + }, + { + "epoch": 66.17333333333333, + "grad_norm": 0.9026249051094055, + "learning_rate": 1.692866666666667e-05, + "loss": 1.3284371948242188, + "step": 496300 + }, + { + "epoch": 66.18666666666667, + "grad_norm": 0.8741923570632935, + "learning_rate": 1.6922e-05, + "loss": 1.3267121887207032, + "step": 496400 + }, + { + "epoch": 66.2, + "grad_norm": 0.8702110052108765, + "learning_rate": 1.6915333333333334e-05, + "loss": 1.326593475341797, + "step": 496500 + }, + { + "epoch": 66.21333333333334, + "grad_norm": 0.8829630613327026, + "learning_rate": 1.6908666666666666e-05, + "loss": 1.3249797058105468, + "step": 496600 + }, + { + "epoch": 66.22666666666667, + "grad_norm": 0.8170766830444336, + "learning_rate": 1.6902000000000002e-05, + "loss": 1.3290678405761718, + "step": 496700 + }, + { + "epoch": 66.24, + "grad_norm": 0.8386065363883972, + "learning_rate": 1.6895333333333334e-05, + "loss": 1.3280769348144532, + "step": 496800 + }, + { + "epoch": 66.25333333333333, + "grad_norm": 0.9074498414993286, + "learning_rate": 1.6888666666666666e-05, + "loss": 1.3333543395996095, + "step": 496900 + }, + { + "epoch": 66.26666666666667, + "grad_norm": 0.8878492116928101, + "learning_rate": 1.6882000000000002e-05, + "loss": 1.3320777893066407, + "step": 497000 + }, + { + "epoch": 66.28, + "grad_norm": 0.9520934820175171, + "learning_rate": 1.6875333333333334e-05, + "loss": 1.332491455078125, + "step": 497100 + }, + { + "epoch": 66.29333333333334, + "grad_norm": 0.8975771069526672, + "learning_rate": 1.686866666666667e-05, + "loss": 1.3285887145996094, + "step": 497200 + }, + { + "epoch": 66.30666666666667, + "grad_norm": 0.9283040165901184, + "learning_rate": 1.6862e-05, + "loss": 1.3328883361816406, + "step": 497300 + }, + { + "epoch": 66.32, + "grad_norm": 0.8596479892730713, + "learning_rate": 1.6855333333333334e-05, + "loss": 1.337887725830078, + "step": 497400 + }, + { + "epoch": 66.33333333333333, + "grad_norm": 0.8887840509414673, + "learning_rate": 1.6848666666666667e-05, + "loss": 1.3309591674804688, + "step": 497500 + }, + { + "epoch": 66.34666666666666, + "grad_norm": 0.8658081889152527, + "learning_rate": 1.6842e-05, + "loss": 1.3348977661132813, + "step": 497600 + }, + { + "epoch": 66.36, + "grad_norm": 0.8536320924758911, + "learning_rate": 1.6835333333333335e-05, + "loss": 1.3311074829101563, + "step": 497700 + }, + { + "epoch": 66.37333333333333, + "grad_norm": 0.8975630402565002, + "learning_rate": 1.6828666666666667e-05, + "loss": 1.3381869506835937, + "step": 497800 + }, + { + "epoch": 66.38666666666667, + "grad_norm": 0.9293047189712524, + "learning_rate": 1.6822000000000003e-05, + "loss": 1.338460693359375, + "step": 497900 + }, + { + "epoch": 66.4, + "grad_norm": 0.8931173086166382, + "learning_rate": 1.681533333333333e-05, + "loss": 1.3359477233886718, + "step": 498000 + }, + { + "epoch": 66.41333333333333, + "grad_norm": 0.9041270613670349, + "learning_rate": 1.6808666666666667e-05, + "loss": 1.3406436157226562, + "step": 498100 + }, + { + "epoch": 66.42666666666666, + "grad_norm": 0.8692404627799988, + "learning_rate": 1.680206666666667e-05, + "loss": 1.3393113708496094, + "step": 498200 + }, + { + "epoch": 66.44, + "grad_norm": 0.8984732627868652, + "learning_rate": 1.67954e-05, + "loss": 1.3371609497070311, + "step": 498300 + }, + { + "epoch": 66.45333333333333, + "grad_norm": 0.8967075347900391, + "learning_rate": 1.6788733333333334e-05, + "loss": 1.3435694885253906, + "step": 498400 + }, + { + "epoch": 66.46666666666667, + "grad_norm": 0.8753262162208557, + "learning_rate": 1.678206666666667e-05, + "loss": 1.3449749755859375, + "step": 498500 + }, + { + "epoch": 66.48, + "grad_norm": 0.907174825668335, + "learning_rate": 1.67754e-05, + "loss": 1.3397930908203124, + "step": 498600 + }, + { + "epoch": 66.49333333333334, + "grad_norm": 0.8881757855415344, + "learning_rate": 1.6768733333333334e-05, + "loss": 1.3411907958984375, + "step": 498700 + }, + { + "epoch": 66.50666666666666, + "grad_norm": 0.880740761756897, + "learning_rate": 1.6762066666666667e-05, + "loss": 1.3427651977539063, + "step": 498800 + }, + { + "epoch": 66.52, + "grad_norm": 0.8613744378089905, + "learning_rate": 1.6755400000000002e-05, + "loss": 1.34215576171875, + "step": 498900 + }, + { + "epoch": 66.53333333333333, + "grad_norm": 0.8675311803817749, + "learning_rate": 1.6748733333333335e-05, + "loss": 1.3419883728027344, + "step": 499000 + }, + { + "epoch": 66.54666666666667, + "grad_norm": 0.8745658993721008, + "learning_rate": 1.6742066666666667e-05, + "loss": 1.3410050964355469, + "step": 499100 + }, + { + "epoch": 66.56, + "grad_norm": 0.903735876083374, + "learning_rate": 1.6735400000000002e-05, + "loss": 1.3437112426757813, + "step": 499200 + }, + { + "epoch": 66.57333333333334, + "grad_norm": 0.9387283325195312, + "learning_rate": 1.6728733333333335e-05, + "loss": 1.3478224182128906, + "step": 499300 + }, + { + "epoch": 66.58666666666667, + "grad_norm": 0.8882374167442322, + "learning_rate": 1.6722066666666667e-05, + "loss": 1.3502310180664063, + "step": 499400 + }, + { + "epoch": 66.6, + "grad_norm": 0.8444065451622009, + "learning_rate": 1.67154e-05, + "loss": 1.3418290710449219, + "step": 499500 + }, + { + "epoch": 66.61333333333333, + "grad_norm": 0.8583235740661621, + "learning_rate": 1.6708733333333335e-05, + "loss": 1.346663818359375, + "step": 499600 + }, + { + "epoch": 66.62666666666667, + "grad_norm": 0.861813485622406, + "learning_rate": 1.6702066666666667e-05, + "loss": 1.3438009643554687, + "step": 499700 + }, + { + "epoch": 66.64, + "grad_norm": 0.9351439476013184, + "learning_rate": 1.66954e-05, + "loss": 1.3432070922851562, + "step": 499800 + }, + { + "epoch": 66.65333333333334, + "grad_norm": 0.8280015587806702, + "learning_rate": 1.6688733333333335e-05, + "loss": 1.3487863159179687, + "step": 499900 + }, + { + "epoch": 66.66666666666667, + "grad_norm": 0.9261816143989563, + "learning_rate": 1.6682066666666667e-05, + "loss": 1.348236083984375, + "step": 500000 + }, + { + "epoch": 66.68, + "grad_norm": 0.8890721201896667, + "learning_rate": 1.6675400000000003e-05, + "loss": 1.3480813598632813, + "step": 500100 + }, + { + "epoch": 66.69333333333333, + "grad_norm": 0.881643533706665, + "learning_rate": 1.6668800000000002e-05, + "loss": 1.3505299377441407, + "step": 500200 + }, + { + "epoch": 66.70666666666666, + "grad_norm": 0.8827385306358337, + "learning_rate": 1.6662133333333334e-05, + "loss": 1.3477456665039063, + "step": 500300 + }, + { + "epoch": 66.72, + "grad_norm": 0.9698315262794495, + "learning_rate": 1.6655466666666667e-05, + "loss": 1.3486949157714845, + "step": 500400 + }, + { + "epoch": 66.73333333333333, + "grad_norm": 0.864273726940155, + "learning_rate": 1.66488e-05, + "loss": 1.3506986999511719, + "step": 500500 + }, + { + "epoch": 66.74666666666667, + "grad_norm": 0.9118615388870239, + "learning_rate": 1.6642133333333335e-05, + "loss": 1.3483343505859375, + "step": 500600 + }, + { + "epoch": 66.76, + "grad_norm": 0.8899751901626587, + "learning_rate": 1.663546666666667e-05, + "loss": 1.3553768920898437, + "step": 500700 + }, + { + "epoch": 66.77333333333333, + "grad_norm": 0.9060136675834656, + "learning_rate": 1.66288e-05, + "loss": 1.345452117919922, + "step": 500800 + }, + { + "epoch": 66.78666666666666, + "grad_norm": 0.9999998211860657, + "learning_rate": 1.6622133333333335e-05, + "loss": 1.350277862548828, + "step": 500900 + }, + { + "epoch": 66.8, + "grad_norm": 0.8866046667098999, + "learning_rate": 1.6615466666666667e-05, + "loss": 1.3576226806640626, + "step": 501000 + }, + { + "epoch": 66.81333333333333, + "grad_norm": 0.9324911832809448, + "learning_rate": 1.6608800000000003e-05, + "loss": 1.350228271484375, + "step": 501100 + }, + { + "epoch": 66.82666666666667, + "grad_norm": 0.9233900904655457, + "learning_rate": 1.6602133333333335e-05, + "loss": 1.3524874877929687, + "step": 501200 + }, + { + "epoch": 66.84, + "grad_norm": 0.8950480818748474, + "learning_rate": 1.6595466666666667e-05, + "loss": 1.3505656433105468, + "step": 501300 + }, + { + "epoch": 66.85333333333334, + "grad_norm": 0.8450494408607483, + "learning_rate": 1.6588800000000003e-05, + "loss": 1.353629150390625, + "step": 501400 + }, + { + "epoch": 66.86666666666666, + "grad_norm": 0.8349661827087402, + "learning_rate": 1.6582133333333332e-05, + "loss": 1.3550460815429688, + "step": 501500 + }, + { + "epoch": 66.88, + "grad_norm": 0.8485316038131714, + "learning_rate": 1.6575466666666667e-05, + "loss": 1.35274658203125, + "step": 501600 + }, + { + "epoch": 66.89333333333333, + "grad_norm": 0.8575172424316406, + "learning_rate": 1.65688e-05, + "loss": 1.3558840942382813, + "step": 501700 + }, + { + "epoch": 66.90666666666667, + "grad_norm": 0.8949342370033264, + "learning_rate": 1.6562133333333335e-05, + "loss": 1.3565489196777343, + "step": 501800 + }, + { + "epoch": 66.92, + "grad_norm": 0.8905797600746155, + "learning_rate": 1.6555466666666668e-05, + "loss": 1.3542637634277344, + "step": 501900 + }, + { + "epoch": 66.93333333333334, + "grad_norm": 0.8685753345489502, + "learning_rate": 1.65488e-05, + "loss": 1.3555860900878907, + "step": 502000 + }, + { + "epoch": 66.94666666666667, + "grad_norm": 0.8902389407157898, + "learning_rate": 1.6542133333333336e-05, + "loss": 1.357294921875, + "step": 502100 + }, + { + "epoch": 66.96, + "grad_norm": 0.8817318677902222, + "learning_rate": 1.6535533333333335e-05, + "loss": 1.354560089111328, + "step": 502200 + }, + { + "epoch": 66.97333333333333, + "grad_norm": 0.8877972960472107, + "learning_rate": 1.6528866666666667e-05, + "loss": 1.3581826782226563, + "step": 502300 + }, + { + "epoch": 66.98666666666666, + "grad_norm": 0.9648900628089905, + "learning_rate": 1.6522200000000003e-05, + "loss": 1.3576654052734376, + "step": 502400 + }, + { + "epoch": 67.0, + "grad_norm": 0.8821939826011658, + "learning_rate": 1.651553333333333e-05, + "loss": 1.3601315307617188, + "step": 502500 + }, + { + "epoch": 67.01333333333334, + "grad_norm": 0.8473901748657227, + "learning_rate": 1.6508866666666667e-05, + "loss": 1.310140380859375, + "step": 502600 + }, + { + "epoch": 67.02666666666667, + "grad_norm": 0.8751438856124878, + "learning_rate": 1.65022e-05, + "loss": 1.3117538452148438, + "step": 502700 + }, + { + "epoch": 67.04, + "grad_norm": 0.8518862128257751, + "learning_rate": 1.6495533333333335e-05, + "loss": 1.3125653076171875, + "step": 502800 + }, + { + "epoch": 67.05333333333333, + "grad_norm": 0.8928504586219788, + "learning_rate": 1.6488866666666667e-05, + "loss": 1.3104530334472657, + "step": 502900 + }, + { + "epoch": 67.06666666666666, + "grad_norm": 0.8880503177642822, + "learning_rate": 1.64822e-05, + "loss": 1.3163229370117187, + "step": 503000 + }, + { + "epoch": 67.08, + "grad_norm": 0.9034183621406555, + "learning_rate": 1.6475533333333335e-05, + "loss": 1.3216062927246093, + "step": 503100 + }, + { + "epoch": 67.09333333333333, + "grad_norm": 0.8415785431861877, + "learning_rate": 1.6468866666666667e-05, + "loss": 1.3180642700195313, + "step": 503200 + }, + { + "epoch": 67.10666666666667, + "grad_norm": 0.8426023125648499, + "learning_rate": 1.64622e-05, + "loss": 1.3171853637695312, + "step": 503300 + }, + { + "epoch": 67.12, + "grad_norm": 0.9098384976387024, + "learning_rate": 1.6455533333333335e-05, + "loss": 1.3160491943359376, + "step": 503400 + }, + { + "epoch": 67.13333333333334, + "grad_norm": 0.910634458065033, + "learning_rate": 1.6448866666666668e-05, + "loss": 1.3179133605957032, + "step": 503500 + }, + { + "epoch": 67.14666666666666, + "grad_norm": 0.8796761631965637, + "learning_rate": 1.6442200000000003e-05, + "loss": 1.3178306579589845, + "step": 503600 + }, + { + "epoch": 67.16, + "grad_norm": 0.9137388467788696, + "learning_rate": 1.6435533333333332e-05, + "loss": 1.3195364379882812, + "step": 503700 + }, + { + "epoch": 67.17333333333333, + "grad_norm": 0.8771604895591736, + "learning_rate": 1.6428866666666668e-05, + "loss": 1.3253799438476563, + "step": 503800 + }, + { + "epoch": 67.18666666666667, + "grad_norm": 0.8796737194061279, + "learning_rate": 1.64222e-05, + "loss": 1.3219993591308594, + "step": 503900 + }, + { + "epoch": 67.2, + "grad_norm": 0.8637896180152893, + "learning_rate": 1.6415533333333332e-05, + "loss": 1.3234608459472657, + "step": 504000 + }, + { + "epoch": 67.21333333333334, + "grad_norm": 0.8395215272903442, + "learning_rate": 1.6408866666666668e-05, + "loss": 1.3233541870117187, + "step": 504100 + }, + { + "epoch": 67.22666666666667, + "grad_norm": 0.8876785039901733, + "learning_rate": 1.6402266666666667e-05, + "loss": 1.32363037109375, + "step": 504200 + }, + { + "epoch": 67.24, + "grad_norm": 0.8801200985908508, + "learning_rate": 1.63956e-05, + "loss": 1.328302764892578, + "step": 504300 + }, + { + "epoch": 67.25333333333333, + "grad_norm": 0.9056000709533691, + "learning_rate": 1.6388933333333335e-05, + "loss": 1.323112030029297, + "step": 504400 + }, + { + "epoch": 67.26666666666667, + "grad_norm": 0.9226976633071899, + "learning_rate": 1.6382266666666667e-05, + "loss": 1.328287353515625, + "step": 504500 + }, + { + "epoch": 67.28, + "grad_norm": 0.8553920984268188, + "learning_rate": 1.6375600000000003e-05, + "loss": 1.324569549560547, + "step": 504600 + }, + { + "epoch": 67.29333333333334, + "grad_norm": 0.8892163038253784, + "learning_rate": 1.6368933333333332e-05, + "loss": 1.3272508239746095, + "step": 504700 + }, + { + "epoch": 67.30666666666667, + "grad_norm": 0.828970193862915, + "learning_rate": 1.6362266666666667e-05, + "loss": 1.325264892578125, + "step": 504800 + }, + { + "epoch": 67.32, + "grad_norm": 0.8796325325965881, + "learning_rate": 1.6355600000000003e-05, + "loss": 1.3304495239257812, + "step": 504900 + }, + { + "epoch": 67.33333333333333, + "grad_norm": 0.8535403609275818, + "learning_rate": 1.6348933333333332e-05, + "loss": 1.3281263732910156, + "step": 505000 + }, + { + "epoch": 67.34666666666666, + "grad_norm": 0.9329071640968323, + "learning_rate": 1.6342266666666668e-05, + "loss": 1.3269728088378907, + "step": 505100 + }, + { + "epoch": 67.36, + "grad_norm": 0.8434710502624512, + "learning_rate": 1.63356e-05, + "loss": 1.330979461669922, + "step": 505200 + }, + { + "epoch": 67.37333333333333, + "grad_norm": 0.9090546369552612, + "learning_rate": 1.6328933333333336e-05, + "loss": 1.3287429809570312, + "step": 505300 + }, + { + "epoch": 67.38666666666667, + "grad_norm": 0.8121486902236938, + "learning_rate": 1.6322266666666668e-05, + "loss": 1.3265771484375, + "step": 505400 + }, + { + "epoch": 67.4, + "grad_norm": 0.92621248960495, + "learning_rate": 1.63156e-05, + "loss": 1.331717529296875, + "step": 505500 + }, + { + "epoch": 67.41333333333333, + "grad_norm": 0.861219048500061, + "learning_rate": 1.6308933333333336e-05, + "loss": 1.331618194580078, + "step": 505600 + }, + { + "epoch": 67.42666666666666, + "grad_norm": 0.8709635734558105, + "learning_rate": 1.6302266666666668e-05, + "loss": 1.3293948364257813, + "step": 505700 + }, + { + "epoch": 67.44, + "grad_norm": 0.9250495433807373, + "learning_rate": 1.62956e-05, + "loss": 1.3288381958007813, + "step": 505800 + }, + { + "epoch": 67.45333333333333, + "grad_norm": 0.9058433771133423, + "learning_rate": 1.6288933333333333e-05, + "loss": 1.33401123046875, + "step": 505900 + }, + { + "epoch": 67.46666666666667, + "grad_norm": 0.8685875535011292, + "learning_rate": 1.6282266666666668e-05, + "loss": 1.3351644897460937, + "step": 506000 + }, + { + "epoch": 67.48, + "grad_norm": 0.8778988122940063, + "learning_rate": 1.62756e-05, + "loss": 1.3352923583984375, + "step": 506100 + }, + { + "epoch": 67.49333333333334, + "grad_norm": 0.900501549243927, + "learning_rate": 1.6269e-05, + "loss": 1.3364425659179688, + "step": 506200 + }, + { + "epoch": 67.50666666666666, + "grad_norm": 0.832356333732605, + "learning_rate": 1.6262333333333335e-05, + "loss": 1.3344007873535155, + "step": 506300 + }, + { + "epoch": 67.52, + "grad_norm": 0.8706467747688293, + "learning_rate": 1.6255666666666668e-05, + "loss": 1.335708465576172, + "step": 506400 + }, + { + "epoch": 67.53333333333333, + "grad_norm": 0.9022287130355835, + "learning_rate": 1.6249e-05, + "loss": 1.334958038330078, + "step": 506500 + }, + { + "epoch": 67.54666666666667, + "grad_norm": 0.9078052043914795, + "learning_rate": 1.6242333333333335e-05, + "loss": 1.3339247131347656, + "step": 506600 + }, + { + "epoch": 67.56, + "grad_norm": 0.8930740356445312, + "learning_rate": 1.6235666666666668e-05, + "loss": 1.3345040893554687, + "step": 506700 + }, + { + "epoch": 67.57333333333334, + "grad_norm": 0.8925511837005615, + "learning_rate": 1.6229e-05, + "loss": 1.3339421081542968, + "step": 506800 + }, + { + "epoch": 67.58666666666667, + "grad_norm": 0.9075053334236145, + "learning_rate": 1.6222333333333332e-05, + "loss": 1.3400006103515625, + "step": 506900 + }, + { + "epoch": 67.6, + "grad_norm": 0.8388199210166931, + "learning_rate": 1.6215666666666668e-05, + "loss": 1.339932403564453, + "step": 507000 + }, + { + "epoch": 67.61333333333333, + "grad_norm": 0.9314302206039429, + "learning_rate": 1.6209000000000004e-05, + "loss": 1.3385556030273438, + "step": 507100 + }, + { + "epoch": 67.62666666666667, + "grad_norm": 0.936500608921051, + "learning_rate": 1.6202333333333332e-05, + "loss": 1.3391481018066407, + "step": 507200 + }, + { + "epoch": 67.64, + "grad_norm": 0.9487819671630859, + "learning_rate": 1.6195666666666668e-05, + "loss": 1.3424884033203126, + "step": 507300 + }, + { + "epoch": 67.65333333333334, + "grad_norm": 0.8992325663566589, + "learning_rate": 1.6189e-05, + "loss": 1.3376817321777343, + "step": 507400 + }, + { + "epoch": 67.66666666666667, + "grad_norm": 0.8715090155601501, + "learning_rate": 1.6182333333333336e-05, + "loss": 1.3390425109863282, + "step": 507500 + }, + { + "epoch": 67.68, + "grad_norm": 0.926875650882721, + "learning_rate": 1.6175666666666668e-05, + "loss": 1.3368760681152343, + "step": 507600 + }, + { + "epoch": 67.69333333333333, + "grad_norm": 0.8483115434646606, + "learning_rate": 1.6169e-05, + "loss": 1.3436689758300782, + "step": 507700 + }, + { + "epoch": 67.70666666666666, + "grad_norm": 0.9174588918685913, + "learning_rate": 1.6162333333333336e-05, + "loss": 1.3432699584960937, + "step": 507800 + }, + { + "epoch": 67.72, + "grad_norm": 0.8918784260749817, + "learning_rate": 1.6155666666666665e-05, + "loss": 1.342838592529297, + "step": 507900 + }, + { + "epoch": 67.73333333333333, + "grad_norm": 0.9192767143249512, + "learning_rate": 1.6149e-05, + "loss": 1.3431192016601563, + "step": 508000 + }, + { + "epoch": 67.74666666666667, + "grad_norm": 0.9048521518707275, + "learning_rate": 1.6142333333333333e-05, + "loss": 1.341384735107422, + "step": 508100 + }, + { + "epoch": 67.76, + "grad_norm": 0.8069953918457031, + "learning_rate": 1.613566666666667e-05, + "loss": 1.3444508361816405, + "step": 508200 + }, + { + "epoch": 67.77333333333333, + "grad_norm": 0.9301212430000305, + "learning_rate": 1.6129066666666668e-05, + "loss": 1.342718048095703, + "step": 508300 + }, + { + "epoch": 67.78666666666666, + "grad_norm": 0.8530392646789551, + "learning_rate": 1.61224e-05, + "loss": 1.343582763671875, + "step": 508400 + }, + { + "epoch": 67.8, + "grad_norm": 0.8464934825897217, + "learning_rate": 1.6115733333333336e-05, + "loss": 1.3441999816894532, + "step": 508500 + }, + { + "epoch": 67.81333333333333, + "grad_norm": 0.8721790313720703, + "learning_rate": 1.6109066666666668e-05, + "loss": 1.3421063232421875, + "step": 508600 + }, + { + "epoch": 67.82666666666667, + "grad_norm": 0.8738119006156921, + "learning_rate": 1.61024e-05, + "loss": 1.350204315185547, + "step": 508700 + }, + { + "epoch": 67.84, + "grad_norm": 0.961629331111908, + "learning_rate": 1.6095733333333336e-05, + "loss": 1.3457203674316407, + "step": 508800 + }, + { + "epoch": 67.85333333333334, + "grad_norm": 0.8968521952629089, + "learning_rate": 1.6089066666666665e-05, + "loss": 1.3510127258300781, + "step": 508900 + }, + { + "epoch": 67.86666666666666, + "grad_norm": 0.8948931694030762, + "learning_rate": 1.60824e-05, + "loss": 1.3487330627441407, + "step": 509000 + }, + { + "epoch": 67.88, + "grad_norm": 0.9145134091377258, + "learning_rate": 1.6075733333333333e-05, + "loss": 1.3471894836425782, + "step": 509100 + }, + { + "epoch": 67.89333333333333, + "grad_norm": 0.871657133102417, + "learning_rate": 1.606906666666667e-05, + "loss": 1.3422882080078125, + "step": 509200 + }, + { + "epoch": 67.90666666666667, + "grad_norm": 0.9065093398094177, + "learning_rate": 1.60624e-05, + "loss": 1.3477850341796875, + "step": 509300 + }, + { + "epoch": 67.92, + "grad_norm": 0.9234089255332947, + "learning_rate": 1.6055733333333333e-05, + "loss": 1.3499220275878907, + "step": 509400 + }, + { + "epoch": 67.93333333333334, + "grad_norm": 0.9075988531112671, + "learning_rate": 1.604906666666667e-05, + "loss": 1.3501620483398438, + "step": 509500 + }, + { + "epoch": 67.94666666666667, + "grad_norm": 0.8884494304656982, + "learning_rate": 1.60424e-05, + "loss": 1.348383331298828, + "step": 509600 + }, + { + "epoch": 67.96, + "grad_norm": 0.896177351474762, + "learning_rate": 1.6035733333333333e-05, + "loss": 1.3463504028320312, + "step": 509700 + }, + { + "epoch": 67.97333333333333, + "grad_norm": 0.9698064923286438, + "learning_rate": 1.602906666666667e-05, + "loss": 1.3500189208984374, + "step": 509800 + }, + { + "epoch": 67.98666666666666, + "grad_norm": 0.9053831100463867, + "learning_rate": 1.60224e-05, + "loss": 1.3513795471191405, + "step": 509900 + }, + { + "epoch": 68.0, + "grad_norm": 0.9011847972869873, + "learning_rate": 1.6015733333333337e-05, + "loss": 1.3465042114257812, + "step": 510000 + }, + { + "epoch": 68.01333333333334, + "grad_norm": 0.8597659468650818, + "learning_rate": 1.6009066666666665e-05, + "loss": 1.3004315185546875, + "step": 510100 + }, + { + "epoch": 68.02666666666667, + "grad_norm": 0.928426206111908, + "learning_rate": 1.60024e-05, + "loss": 1.3039891052246093, + "step": 510200 + }, + { + "epoch": 68.04, + "grad_norm": 0.8113676309585571, + "learning_rate": 1.59958e-05, + "loss": 1.3047027587890625, + "step": 510300 + }, + { + "epoch": 68.05333333333333, + "grad_norm": 0.9048395752906799, + "learning_rate": 1.5989133333333332e-05, + "loss": 1.3024574279785157, + "step": 510400 + }, + { + "epoch": 68.06666666666666, + "grad_norm": 0.8462424874305725, + "learning_rate": 1.5982466666666668e-05, + "loss": 1.3085397338867188, + "step": 510500 + }, + { + "epoch": 68.08, + "grad_norm": 0.8260025978088379, + "learning_rate": 1.59758e-05, + "loss": 1.3069618225097657, + "step": 510600 + }, + { + "epoch": 68.09333333333333, + "grad_norm": 0.9367395639419556, + "learning_rate": 1.5969133333333333e-05, + "loss": 1.3096812438964844, + "step": 510700 + }, + { + "epoch": 68.10666666666667, + "grad_norm": 0.8826059699058533, + "learning_rate": 1.596246666666667e-05, + "loss": 1.31156494140625, + "step": 510800 + }, + { + "epoch": 68.12, + "grad_norm": 0.8369840383529663, + "learning_rate": 1.59558e-05, + "loss": 1.3101882934570312, + "step": 510900 + }, + { + "epoch": 68.13333333333334, + "grad_norm": 0.89353346824646, + "learning_rate": 1.5949133333333336e-05, + "loss": 1.3151426696777344, + "step": 511000 + }, + { + "epoch": 68.14666666666666, + "grad_norm": 0.9131789803504944, + "learning_rate": 1.5942466666666665e-05, + "loss": 1.3127870178222656, + "step": 511100 + }, + { + "epoch": 68.16, + "grad_norm": 0.8653157353401184, + "learning_rate": 1.59358e-05, + "loss": 1.3090579223632812, + "step": 511200 + }, + { + "epoch": 68.17333333333333, + "grad_norm": 0.9040849804878235, + "learning_rate": 1.5929133333333336e-05, + "loss": 1.312974395751953, + "step": 511300 + }, + { + "epoch": 68.18666666666667, + "grad_norm": 0.8667581081390381, + "learning_rate": 1.5922466666666665e-05, + "loss": 1.3097319030761718, + "step": 511400 + }, + { + "epoch": 68.2, + "grad_norm": 0.8813672065734863, + "learning_rate": 1.59158e-05, + "loss": 1.3151568603515624, + "step": 511500 + }, + { + "epoch": 68.21333333333334, + "grad_norm": 0.8864101767539978, + "learning_rate": 1.5909133333333333e-05, + "loss": 1.318709716796875, + "step": 511600 + }, + { + "epoch": 68.22666666666667, + "grad_norm": 0.8745055794715881, + "learning_rate": 1.590246666666667e-05, + "loss": 1.3160711669921874, + "step": 511700 + }, + { + "epoch": 68.24, + "grad_norm": 0.8819094896316528, + "learning_rate": 1.58958e-05, + "loss": 1.3141668701171876, + "step": 511800 + }, + { + "epoch": 68.25333333333333, + "grad_norm": 0.8686659336090088, + "learning_rate": 1.5889133333333333e-05, + "loss": 1.3141128540039062, + "step": 511900 + }, + { + "epoch": 68.26666666666667, + "grad_norm": 0.8981601595878601, + "learning_rate": 1.588246666666667e-05, + "loss": 1.318443603515625, + "step": 512000 + }, + { + "epoch": 68.28, + "grad_norm": 0.9074696898460388, + "learning_rate": 1.58758e-05, + "loss": 1.3188632202148438, + "step": 512100 + }, + { + "epoch": 68.29333333333334, + "grad_norm": 0.8958747386932373, + "learning_rate": 1.5869133333333334e-05, + "loss": 1.3215031433105469, + "step": 512200 + }, + { + "epoch": 68.30666666666667, + "grad_norm": 0.8791993260383606, + "learning_rate": 1.5862533333333336e-05, + "loss": 1.31865478515625, + "step": 512300 + }, + { + "epoch": 68.32, + "grad_norm": 0.8460490107536316, + "learning_rate": 1.5855866666666665e-05, + "loss": 1.3209242248535156, + "step": 512400 + }, + { + "epoch": 68.33333333333333, + "grad_norm": 0.8700122833251953, + "learning_rate": 1.58492e-05, + "loss": 1.3208595275878907, + "step": 512500 + }, + { + "epoch": 68.34666666666666, + "grad_norm": 0.8390049934387207, + "learning_rate": 1.5842533333333333e-05, + "loss": 1.3223390197753906, + "step": 512600 + }, + { + "epoch": 68.36, + "grad_norm": 0.8614577054977417, + "learning_rate": 1.583586666666667e-05, + "loss": 1.3204753112792968, + "step": 512700 + }, + { + "epoch": 68.37333333333333, + "grad_norm": 0.8901036977767944, + "learning_rate": 1.58292e-05, + "loss": 1.324432373046875, + "step": 512800 + }, + { + "epoch": 68.38666666666667, + "grad_norm": 0.8955973386764526, + "learning_rate": 1.5822533333333333e-05, + "loss": 1.3183277893066405, + "step": 512900 + }, + { + "epoch": 68.4, + "grad_norm": 0.8843805193901062, + "learning_rate": 1.581586666666667e-05, + "loss": 1.3242254638671875, + "step": 513000 + }, + { + "epoch": 68.41333333333333, + "grad_norm": 0.8797668218612671, + "learning_rate": 1.58092e-05, + "loss": 1.3225811767578124, + "step": 513100 + }, + { + "epoch": 68.42666666666666, + "grad_norm": 0.9109477400779724, + "learning_rate": 1.5802533333333333e-05, + "loss": 1.3278276062011718, + "step": 513200 + }, + { + "epoch": 68.44, + "grad_norm": 0.9226241111755371, + "learning_rate": 1.5795866666666666e-05, + "loss": 1.31931640625, + "step": 513300 + }, + { + "epoch": 68.45333333333333, + "grad_norm": 0.8409252762794495, + "learning_rate": 1.57892e-05, + "loss": 1.3215591430664062, + "step": 513400 + }, + { + "epoch": 68.46666666666667, + "grad_norm": 0.8817701935768127, + "learning_rate": 1.5782533333333337e-05, + "loss": 1.3250498962402344, + "step": 513500 + }, + { + "epoch": 68.48, + "grad_norm": 0.868848979473114, + "learning_rate": 1.5775866666666666e-05, + "loss": 1.329929656982422, + "step": 513600 + }, + { + "epoch": 68.49333333333334, + "grad_norm": 0.9269536137580872, + "learning_rate": 1.57692e-05, + "loss": 1.3273797607421876, + "step": 513700 + }, + { + "epoch": 68.50666666666666, + "grad_norm": 0.8891344666481018, + "learning_rate": 1.5762533333333334e-05, + "loss": 1.3250120544433595, + "step": 513800 + }, + { + "epoch": 68.52, + "grad_norm": 0.8972460031509399, + "learning_rate": 1.575586666666667e-05, + "loss": 1.3335025024414062, + "step": 513900 + }, + { + "epoch": 68.53333333333333, + "grad_norm": 0.8979598879814148, + "learning_rate": 1.57492e-05, + "loss": 1.327074737548828, + "step": 514000 + }, + { + "epoch": 68.54666666666667, + "grad_norm": 0.9028379917144775, + "learning_rate": 1.5742533333333334e-05, + "loss": 1.32595947265625, + "step": 514100 + }, + { + "epoch": 68.56, + "grad_norm": 0.8925226926803589, + "learning_rate": 1.573586666666667e-05, + "loss": 1.3272763061523438, + "step": 514200 + }, + { + "epoch": 68.57333333333334, + "grad_norm": 0.9189619421958923, + "learning_rate": 1.572926666666667e-05, + "loss": 1.3309127807617187, + "step": 514300 + }, + { + "epoch": 68.58666666666667, + "grad_norm": 0.8941634893417358, + "learning_rate": 1.57226e-05, + "loss": 1.3285725402832032, + "step": 514400 + }, + { + "epoch": 68.6, + "grad_norm": 0.9585229158401489, + "learning_rate": 1.5715933333333337e-05, + "loss": 1.3328392028808593, + "step": 514500 + }, + { + "epoch": 68.61333333333333, + "grad_norm": 0.8872119784355164, + "learning_rate": 1.5709266666666665e-05, + "loss": 1.3325770568847657, + "step": 514600 + }, + { + "epoch": 68.62666666666667, + "grad_norm": 0.8843336701393127, + "learning_rate": 1.57026e-05, + "loss": 1.331486358642578, + "step": 514700 + }, + { + "epoch": 68.64, + "grad_norm": 0.9135434031486511, + "learning_rate": 1.5695933333333333e-05, + "loss": 1.333922119140625, + "step": 514800 + }, + { + "epoch": 68.65333333333334, + "grad_norm": 0.9394828677177429, + "learning_rate": 1.568926666666667e-05, + "loss": 1.3295352172851562, + "step": 514900 + }, + { + "epoch": 68.66666666666667, + "grad_norm": 0.9578185081481934, + "learning_rate": 1.56826e-05, + "loss": 1.331282958984375, + "step": 515000 + }, + { + "epoch": 68.68, + "grad_norm": 0.9389871954917908, + "learning_rate": 1.5675933333333334e-05, + "loss": 1.3376300048828125, + "step": 515100 + }, + { + "epoch": 68.69333333333333, + "grad_norm": 0.8578580021858215, + "learning_rate": 1.566926666666667e-05, + "loss": 1.333085479736328, + "step": 515200 + }, + { + "epoch": 68.70666666666666, + "grad_norm": 0.9202980399131775, + "learning_rate": 1.5662599999999998e-05, + "loss": 1.33133544921875, + "step": 515300 + }, + { + "epoch": 68.72, + "grad_norm": 0.9534364938735962, + "learning_rate": 1.5655933333333334e-05, + "loss": 1.3320506286621094, + "step": 515400 + }, + { + "epoch": 68.73333333333333, + "grad_norm": 0.8657859563827515, + "learning_rate": 1.5649266666666666e-05, + "loss": 1.3358692932128906, + "step": 515500 + }, + { + "epoch": 68.74666666666667, + "grad_norm": 0.8687852621078491, + "learning_rate": 1.56426e-05, + "loss": 1.3360931396484375, + "step": 515600 + }, + { + "epoch": 68.76, + "grad_norm": 0.9254283308982849, + "learning_rate": 1.5635933333333334e-05, + "loss": 1.3366038513183593, + "step": 515700 + }, + { + "epoch": 68.77333333333333, + "grad_norm": 0.9339519739151001, + "learning_rate": 1.5629266666666666e-05, + "loss": 1.3345875549316406, + "step": 515800 + }, + { + "epoch": 68.78666666666666, + "grad_norm": 0.942951500415802, + "learning_rate": 1.5622600000000002e-05, + "loss": 1.3363542175292968, + "step": 515900 + }, + { + "epoch": 68.8, + "grad_norm": 0.8819780945777893, + "learning_rate": 1.5615933333333334e-05, + "loss": 1.33906005859375, + "step": 516000 + }, + { + "epoch": 68.81333333333333, + "grad_norm": 0.9070013761520386, + "learning_rate": 1.5609266666666666e-05, + "loss": 1.3376704406738282, + "step": 516100 + }, + { + "epoch": 68.82666666666667, + "grad_norm": 0.9122033715248108, + "learning_rate": 1.5602600000000002e-05, + "loss": 1.339272003173828, + "step": 516200 + }, + { + "epoch": 68.84, + "grad_norm": 0.8980287313461304, + "learning_rate": 1.5595933333333334e-05, + "loss": 1.336685791015625, + "step": 516300 + }, + { + "epoch": 68.85333333333334, + "grad_norm": 0.8671182990074158, + "learning_rate": 1.5589333333333333e-05, + "loss": 1.338714599609375, + "step": 516400 + }, + { + "epoch": 68.86666666666666, + "grad_norm": 0.8897833228111267, + "learning_rate": 1.558266666666667e-05, + "loss": 1.3385552978515625, + "step": 516500 + }, + { + "epoch": 68.88, + "grad_norm": 0.8926507830619812, + "learning_rate": 1.5576e-05, + "loss": 1.3375399780273438, + "step": 516600 + }, + { + "epoch": 68.89333333333333, + "grad_norm": 0.9504712224006653, + "learning_rate": 1.5569333333333334e-05, + "loss": 1.3395611572265624, + "step": 516700 + }, + { + "epoch": 68.90666666666667, + "grad_norm": 0.9633262753486633, + "learning_rate": 1.5562666666666666e-05, + "loss": 1.337670135498047, + "step": 516800 + }, + { + "epoch": 68.92, + "grad_norm": 0.9180074334144592, + "learning_rate": 1.5556e-05, + "loss": 1.3344358825683593, + "step": 516900 + }, + { + "epoch": 68.93333333333334, + "grad_norm": 0.9330366849899292, + "learning_rate": 1.5549333333333334e-05, + "loss": 1.3429493713378906, + "step": 517000 + }, + { + "epoch": 68.94666666666667, + "grad_norm": 0.8484285473823547, + "learning_rate": 1.5542666666666666e-05, + "loss": 1.33810791015625, + "step": 517100 + }, + { + "epoch": 68.96, + "grad_norm": 0.9376809597015381, + "learning_rate": 1.5536e-05, + "loss": 1.3395620727539062, + "step": 517200 + }, + { + "epoch": 68.97333333333333, + "grad_norm": 0.8969297409057617, + "learning_rate": 1.5529333333333334e-05, + "loss": 1.340773468017578, + "step": 517300 + }, + { + "epoch": 68.98666666666666, + "grad_norm": 0.8501908779144287, + "learning_rate": 1.552266666666667e-05, + "loss": 1.34123046875, + "step": 517400 + }, + { + "epoch": 69.0, + "grad_norm": 0.9352733492851257, + "learning_rate": 1.5516e-05, + "loss": 1.3383326721191406, + "step": 517500 + }, + { + "epoch": 69.01333333333334, + "grad_norm": 0.909633219242096, + "learning_rate": 1.5509333333333334e-05, + "loss": 1.3029652404785157, + "step": 517600 + }, + { + "epoch": 69.02666666666667, + "grad_norm": 0.8774516582489014, + "learning_rate": 1.550266666666667e-05, + "loss": 1.3019322204589843, + "step": 517700 + }, + { + "epoch": 69.04, + "grad_norm": 0.8658164143562317, + "learning_rate": 1.5496e-05, + "loss": 1.3007429504394532, + "step": 517800 + }, + { + "epoch": 69.05333333333333, + "grad_norm": 0.9352324604988098, + "learning_rate": 1.5489333333333334e-05, + "loss": 1.2994084167480469, + "step": 517900 + }, + { + "epoch": 69.06666666666666, + "grad_norm": 0.8457640409469604, + "learning_rate": 1.5482666666666667e-05, + "loss": 1.3021054077148437, + "step": 518000 + }, + { + "epoch": 69.08, + "grad_norm": 0.8199939727783203, + "learning_rate": 1.5476000000000002e-05, + "loss": 1.303291015625, + "step": 518100 + }, + { + "epoch": 69.09333333333333, + "grad_norm": 0.9278339743614197, + "learning_rate": 1.5469333333333335e-05, + "loss": 1.3022172546386719, + "step": 518200 + }, + { + "epoch": 69.10666666666667, + "grad_norm": 0.8438993096351624, + "learning_rate": 1.5462666666666667e-05, + "loss": 1.3028335571289062, + "step": 518300 + }, + { + "epoch": 69.12, + "grad_norm": 0.87488853931427, + "learning_rate": 1.5456000000000002e-05, + "loss": 1.3034165954589845, + "step": 518400 + }, + { + "epoch": 69.13333333333334, + "grad_norm": 0.8736199140548706, + "learning_rate": 1.54494e-05, + "loss": 1.304062042236328, + "step": 518500 + }, + { + "epoch": 69.14666666666666, + "grad_norm": 0.8868971467018127, + "learning_rate": 1.5442733333333334e-05, + "loss": 1.303873291015625, + "step": 518600 + }, + { + "epoch": 69.16, + "grad_norm": 0.8616037964820862, + "learning_rate": 1.543606666666667e-05, + "loss": 1.3016984558105469, + "step": 518700 + }, + { + "epoch": 69.17333333333333, + "grad_norm": 0.8724547624588013, + "learning_rate": 1.54294e-05, + "loss": 1.3086442565917968, + "step": 518800 + }, + { + "epoch": 69.18666666666667, + "grad_norm": 0.8624784350395203, + "learning_rate": 1.5422733333333334e-05, + "loss": 1.3114741516113282, + "step": 518900 + }, + { + "epoch": 69.2, + "grad_norm": 0.8696256875991821, + "learning_rate": 1.5416066666666666e-05, + "loss": 1.3064015197753907, + "step": 519000 + }, + { + "epoch": 69.21333333333334, + "grad_norm": 0.9286923408508301, + "learning_rate": 1.5409400000000002e-05, + "loss": 1.3089067077636718, + "step": 519100 + }, + { + "epoch": 69.22666666666667, + "grad_norm": 0.8909485936164856, + "learning_rate": 1.5402733333333334e-05, + "loss": 1.3079788208007812, + "step": 519200 + }, + { + "epoch": 69.24, + "grad_norm": 0.8831815123558044, + "learning_rate": 1.5396066666666666e-05, + "loss": 1.3152728271484375, + "step": 519300 + }, + { + "epoch": 69.25333333333333, + "grad_norm": 0.8436625003814697, + "learning_rate": 1.5389400000000002e-05, + "loss": 1.3138188171386718, + "step": 519400 + }, + { + "epoch": 69.26666666666667, + "grad_norm": 0.9039004445075989, + "learning_rate": 1.5382733333333334e-05, + "loss": 1.3095545959472656, + "step": 519500 + }, + { + "epoch": 69.28, + "grad_norm": 0.8767098188400269, + "learning_rate": 1.5376066666666667e-05, + "loss": 1.3092991638183593, + "step": 519600 + }, + { + "epoch": 69.29333333333334, + "grad_norm": 0.894680917263031, + "learning_rate": 1.53694e-05, + "loss": 1.3123838806152344, + "step": 519700 + }, + { + "epoch": 69.30666666666667, + "grad_norm": 0.8522490859031677, + "learning_rate": 1.5362733333333335e-05, + "loss": 1.3137554931640625, + "step": 519800 + }, + { + "epoch": 69.32, + "grad_norm": 0.9253702759742737, + "learning_rate": 1.535606666666667e-05, + "loss": 1.312119140625, + "step": 519900 + }, + { + "epoch": 69.33333333333333, + "grad_norm": 0.8951952457427979, + "learning_rate": 1.53494e-05, + "loss": 1.3125660705566407, + "step": 520000 + }, + { + "epoch": 69.34666666666666, + "grad_norm": 0.8459183573722839, + "learning_rate": 1.5342733333333335e-05, + "loss": 1.3168217468261718, + "step": 520100 + }, + { + "epoch": 69.36, + "grad_norm": 0.9312644600868225, + "learning_rate": 1.5336066666666667e-05, + "loss": 1.3158766174316405, + "step": 520200 + }, + { + "epoch": 69.37333333333333, + "grad_norm": 0.885540783405304, + "learning_rate": 1.5329400000000003e-05, + "loss": 1.3112091064453124, + "step": 520300 + }, + { + "epoch": 69.38666666666667, + "grad_norm": 0.8519514203071594, + "learning_rate": 1.5322733333333335e-05, + "loss": 1.3133538818359376, + "step": 520400 + }, + { + "epoch": 69.4, + "grad_norm": 0.9369427561759949, + "learning_rate": 1.5316133333333334e-05, + "loss": 1.3154583740234376, + "step": 520500 + }, + { + "epoch": 69.41333333333333, + "grad_norm": 0.8602283596992493, + "learning_rate": 1.5309466666666666e-05, + "loss": 1.3165095520019532, + "step": 520600 + }, + { + "epoch": 69.42666666666666, + "grad_norm": 0.9157493114471436, + "learning_rate": 1.5302800000000002e-05, + "loss": 1.3148411560058593, + "step": 520700 + }, + { + "epoch": 69.44, + "grad_norm": 0.9101560711860657, + "learning_rate": 1.5296133333333334e-05, + "loss": 1.3182754516601562, + "step": 520800 + }, + { + "epoch": 69.45333333333333, + "grad_norm": 0.9380730390548706, + "learning_rate": 1.528946666666667e-05, + "loss": 1.3192401123046875, + "step": 520900 + }, + { + "epoch": 69.46666666666667, + "grad_norm": 0.9109295010566711, + "learning_rate": 1.52828e-05, + "loss": 1.3193789672851564, + "step": 521000 + }, + { + "epoch": 69.48, + "grad_norm": 0.8645269274711609, + "learning_rate": 1.5276133333333334e-05, + "loss": 1.3203118896484376, + "step": 521100 + }, + { + "epoch": 69.49333333333334, + "grad_norm": 0.8796331882476807, + "learning_rate": 1.5269466666666667e-05, + "loss": 1.3172000122070313, + "step": 521200 + }, + { + "epoch": 69.50666666666666, + "grad_norm": 0.9040528535842896, + "learning_rate": 1.5262800000000002e-05, + "loss": 1.3217599487304688, + "step": 521300 + }, + { + "epoch": 69.52, + "grad_norm": 0.9129952788352966, + "learning_rate": 1.5256133333333333e-05, + "loss": 1.3199691772460938, + "step": 521400 + }, + { + "epoch": 69.53333333333333, + "grad_norm": 0.927264928817749, + "learning_rate": 1.5249466666666667e-05, + "loss": 1.3197657775878906, + "step": 521500 + }, + { + "epoch": 69.54666666666667, + "grad_norm": 0.8854173421859741, + "learning_rate": 1.52428e-05, + "loss": 1.32036865234375, + "step": 521600 + }, + { + "epoch": 69.56, + "grad_norm": 0.864914059638977, + "learning_rate": 1.5236133333333333e-05, + "loss": 1.3250689697265625, + "step": 521700 + }, + { + "epoch": 69.57333333333334, + "grad_norm": 0.9233516454696655, + "learning_rate": 1.5229466666666667e-05, + "loss": 1.3195721435546874, + "step": 521800 + }, + { + "epoch": 69.58666666666667, + "grad_norm": 0.8919656872749329, + "learning_rate": 1.5222800000000001e-05, + "loss": 1.3226580810546875, + "step": 521900 + }, + { + "epoch": 69.6, + "grad_norm": 0.9302183389663696, + "learning_rate": 1.5216133333333335e-05, + "loss": 1.325461883544922, + "step": 522000 + }, + { + "epoch": 69.61333333333333, + "grad_norm": 0.8252825736999512, + "learning_rate": 1.5209466666666666e-05, + "loss": 1.3249801635742187, + "step": 522100 + }, + { + "epoch": 69.62666666666667, + "grad_norm": 0.9176365733146667, + "learning_rate": 1.5202800000000001e-05, + "loss": 1.3211125183105468, + "step": 522200 + }, + { + "epoch": 69.64, + "grad_norm": 0.8246389627456665, + "learning_rate": 1.5196133333333335e-05, + "loss": 1.3223980712890624, + "step": 522300 + }, + { + "epoch": 69.65333333333334, + "grad_norm": 0.9392738938331604, + "learning_rate": 1.5189466666666669e-05, + "loss": 1.319575653076172, + "step": 522400 + }, + { + "epoch": 69.66666666666667, + "grad_norm": 0.888167142868042, + "learning_rate": 1.5182866666666668e-05, + "loss": 1.3244210815429687, + "step": 522500 + }, + { + "epoch": 69.68, + "grad_norm": 0.8745282292366028, + "learning_rate": 1.5176200000000002e-05, + "loss": 1.322125244140625, + "step": 522600 + }, + { + "epoch": 69.69333333333333, + "grad_norm": 0.8966434001922607, + "learning_rate": 1.5169533333333333e-05, + "loss": 1.328828125, + "step": 522700 + }, + { + "epoch": 69.70666666666666, + "grad_norm": 0.8466253876686096, + "learning_rate": 1.5162866666666667e-05, + "loss": 1.3279318237304687, + "step": 522800 + }, + { + "epoch": 69.72, + "grad_norm": 0.8887118697166443, + "learning_rate": 1.51562e-05, + "loss": 1.3284657287597657, + "step": 522900 + }, + { + "epoch": 69.73333333333333, + "grad_norm": 0.7998771667480469, + "learning_rate": 1.5149533333333335e-05, + "loss": 1.32925537109375, + "step": 523000 + }, + { + "epoch": 69.74666666666667, + "grad_norm": 0.8823466300964355, + "learning_rate": 1.5142866666666667e-05, + "loss": 1.3294252014160157, + "step": 523100 + }, + { + "epoch": 69.76, + "grad_norm": 0.9160724878311157, + "learning_rate": 1.5136200000000001e-05, + "loss": 1.327671356201172, + "step": 523200 + }, + { + "epoch": 69.77333333333333, + "grad_norm": 0.8401466012001038, + "learning_rate": 1.5129533333333335e-05, + "loss": 1.3307571411132812, + "step": 523300 + }, + { + "epoch": 69.78666666666666, + "grad_norm": 0.8765178322792053, + "learning_rate": 1.5122866666666669e-05, + "loss": 1.329644775390625, + "step": 523400 + }, + { + "epoch": 69.8, + "grad_norm": 0.87641841173172, + "learning_rate": 1.51162e-05, + "loss": 1.3258184814453124, + "step": 523500 + }, + { + "epoch": 69.81333333333333, + "grad_norm": 0.8888761401176453, + "learning_rate": 1.5109533333333333e-05, + "loss": 1.3236990356445313, + "step": 523600 + }, + { + "epoch": 69.82666666666667, + "grad_norm": 0.91169273853302, + "learning_rate": 1.5102866666666667e-05, + "loss": 1.3255255126953125, + "step": 523700 + }, + { + "epoch": 69.84, + "grad_norm": 0.8905537724494934, + "learning_rate": 1.5096200000000001e-05, + "loss": 1.3305224609375, + "step": 523800 + }, + { + "epoch": 69.85333333333334, + "grad_norm": 0.8976826667785645, + "learning_rate": 1.5089533333333334e-05, + "loss": 1.3281327819824218, + "step": 523900 + }, + { + "epoch": 69.86666666666666, + "grad_norm": 0.9264980554580688, + "learning_rate": 1.5082866666666667e-05, + "loss": 1.3322329711914063, + "step": 524000 + }, + { + "epoch": 69.88, + "grad_norm": 0.8969742059707642, + "learning_rate": 1.5076200000000001e-05, + "loss": 1.3304733276367187, + "step": 524100 + }, + { + "epoch": 69.89333333333333, + "grad_norm": 0.9283936619758606, + "learning_rate": 1.5069533333333332e-05, + "loss": 1.3320317077636719, + "step": 524200 + }, + { + "epoch": 69.90666666666667, + "grad_norm": 0.9455838203430176, + "learning_rate": 1.5062866666666666e-05, + "loss": 1.3323895263671874, + "step": 524300 + }, + { + "epoch": 69.92, + "grad_norm": 0.9530020356178284, + "learning_rate": 1.5056200000000002e-05, + "loss": 1.333441162109375, + "step": 524400 + }, + { + "epoch": 69.93333333333334, + "grad_norm": 0.8964418768882751, + "learning_rate": 1.5049599999999999e-05, + "loss": 1.3335765075683594, + "step": 524500 + }, + { + "epoch": 69.94666666666667, + "grad_norm": 0.8553877472877502, + "learning_rate": 1.5042933333333335e-05, + "loss": 1.3312777709960937, + "step": 524600 + }, + { + "epoch": 69.96, + "grad_norm": 0.8218632936477661, + "learning_rate": 1.5036266666666669e-05, + "loss": 1.3336231994628907, + "step": 524700 + }, + { + "epoch": 69.97333333333333, + "grad_norm": 0.8228429555892944, + "learning_rate": 1.5029600000000003e-05, + "loss": 1.3307693481445313, + "step": 524800 + }, + { + "epoch": 69.98666666666666, + "grad_norm": 0.890493631362915, + "learning_rate": 1.5022933333333333e-05, + "loss": 1.3317050170898437, + "step": 524900 + }, + { + "epoch": 70.0, + "grad_norm": 0.8892182111740112, + "learning_rate": 1.5016266666666667e-05, + "loss": 1.3370907592773438, + "step": 525000 + }, + { + "epoch": 70.01333333333334, + "grad_norm": 0.8805796504020691, + "learning_rate": 1.5009600000000001e-05, + "loss": 1.2896534729003906, + "step": 525100 + }, + { + "epoch": 70.02666666666667, + "grad_norm": 0.8995780348777771, + "learning_rate": 1.5002933333333333e-05, + "loss": 1.289251251220703, + "step": 525200 + }, + { + "epoch": 70.04, + "grad_norm": 0.8692154884338379, + "learning_rate": 1.4996266666666667e-05, + "loss": 1.2940298461914062, + "step": 525300 + }, + { + "epoch": 70.05333333333333, + "grad_norm": 0.9129854440689087, + "learning_rate": 1.4989600000000001e-05, + "loss": 1.2941226196289062, + "step": 525400 + }, + { + "epoch": 70.06666666666666, + "grad_norm": 0.8497447371482849, + "learning_rate": 1.4982933333333335e-05, + "loss": 1.2971897888183594, + "step": 525500 + }, + { + "epoch": 70.08, + "grad_norm": 0.9296039342880249, + "learning_rate": 1.4976266666666666e-05, + "loss": 1.2974925231933594, + "step": 525600 + }, + { + "epoch": 70.09333333333333, + "grad_norm": 0.8348743915557861, + "learning_rate": 1.49696e-05, + "loss": 1.2969551086425781, + "step": 525700 + }, + { + "epoch": 70.10666666666667, + "grad_norm": 0.9072258472442627, + "learning_rate": 1.4962933333333334e-05, + "loss": 1.2984727478027345, + "step": 525800 + }, + { + "epoch": 70.12, + "grad_norm": 0.87555330991745, + "learning_rate": 1.4956266666666668e-05, + "loss": 1.2968763732910156, + "step": 525900 + }, + { + "epoch": 70.13333333333334, + "grad_norm": 0.8605111837387085, + "learning_rate": 1.49496e-05, + "loss": 1.2984910583496094, + "step": 526000 + }, + { + "epoch": 70.14666666666666, + "grad_norm": 0.9041507840156555, + "learning_rate": 1.4942933333333334e-05, + "loss": 1.2995046997070312, + "step": 526100 + }, + { + "epoch": 70.16, + "grad_norm": 0.8892377018928528, + "learning_rate": 1.4936266666666668e-05, + "loss": 1.2987435913085938, + "step": 526200 + }, + { + "epoch": 70.17333333333333, + "grad_norm": 0.8845103979110718, + "learning_rate": 1.4929600000000002e-05, + "loss": 1.3019927978515624, + "step": 526300 + }, + { + "epoch": 70.18666666666667, + "grad_norm": 0.9019655585289001, + "learning_rate": 1.4922933333333332e-05, + "loss": 1.3028900146484375, + "step": 526400 + }, + { + "epoch": 70.2, + "grad_norm": 0.9145544171333313, + "learning_rate": 1.4916333333333335e-05, + "loss": 1.2975439453125, + "step": 526500 + }, + { + "epoch": 70.21333333333334, + "grad_norm": 0.8441560864448547, + "learning_rate": 1.4909666666666665e-05, + "loss": 1.2994468688964844, + "step": 526600 + }, + { + "epoch": 70.22666666666667, + "grad_norm": 0.9168753623962402, + "learning_rate": 1.4903000000000001e-05, + "loss": 1.2965029907226562, + "step": 526700 + }, + { + "epoch": 70.24, + "grad_norm": 0.918009340763092, + "learning_rate": 1.4896333333333335e-05, + "loss": 1.3034149169921876, + "step": 526800 + }, + { + "epoch": 70.25333333333333, + "grad_norm": 0.8701112866401672, + "learning_rate": 1.4889666666666669e-05, + "loss": 1.306947021484375, + "step": 526900 + }, + { + "epoch": 70.26666666666667, + "grad_norm": 0.8067172765731812, + "learning_rate": 1.4883e-05, + "loss": 1.3056159973144532, + "step": 527000 + }, + { + "epoch": 70.28, + "grad_norm": 0.8838335871696472, + "learning_rate": 1.4876333333333334e-05, + "loss": 1.3039329528808594, + "step": 527100 + }, + { + "epoch": 70.29333333333334, + "grad_norm": 0.7886351346969604, + "learning_rate": 1.4869666666666668e-05, + "loss": 1.3026358032226562, + "step": 527200 + }, + { + "epoch": 70.30666666666667, + "grad_norm": 0.858665406703949, + "learning_rate": 1.4863000000000002e-05, + "loss": 1.3058314514160156, + "step": 527300 + }, + { + "epoch": 70.32, + "grad_norm": 0.888764500617981, + "learning_rate": 1.4856333333333334e-05, + "loss": 1.2972772216796875, + "step": 527400 + }, + { + "epoch": 70.33333333333333, + "grad_norm": 0.8429321050643921, + "learning_rate": 1.4849666666666668e-05, + "loss": 1.3043406677246094, + "step": 527500 + }, + { + "epoch": 70.34666666666666, + "grad_norm": 0.877232015132904, + "learning_rate": 1.4843000000000002e-05, + "loss": 1.3073738098144532, + "step": 527600 + }, + { + "epoch": 70.36, + "grad_norm": 0.8669724464416504, + "learning_rate": 1.4836333333333336e-05, + "loss": 1.30747314453125, + "step": 527700 + }, + { + "epoch": 70.37333333333333, + "grad_norm": 0.8887328505516052, + "learning_rate": 1.4829666666666666e-05, + "loss": 1.3084428405761719, + "step": 527800 + }, + { + "epoch": 70.38666666666667, + "grad_norm": 0.8904489874839783, + "learning_rate": 1.4823e-05, + "loss": 1.3099253845214844, + "step": 527900 + }, + { + "epoch": 70.4, + "grad_norm": 0.8574255704879761, + "learning_rate": 1.4816333333333334e-05, + "loss": 1.3076028442382812, + "step": 528000 + }, + { + "epoch": 70.41333333333333, + "grad_norm": 0.8327115774154663, + "learning_rate": 1.4809666666666666e-05, + "loss": 1.3109042358398437, + "step": 528100 + }, + { + "epoch": 70.42666666666666, + "grad_norm": 0.8879788517951965, + "learning_rate": 1.4803e-05, + "loss": 1.3088136291503907, + "step": 528200 + }, + { + "epoch": 70.44, + "grad_norm": 0.9286050200462341, + "learning_rate": 1.4796333333333334e-05, + "loss": 1.308986358642578, + "step": 528300 + }, + { + "epoch": 70.45333333333333, + "grad_norm": 0.8870999217033386, + "learning_rate": 1.4789666666666668e-05, + "loss": 1.3082102966308593, + "step": 528400 + }, + { + "epoch": 70.46666666666667, + "grad_norm": 0.9179296493530273, + "learning_rate": 1.4783066666666667e-05, + "loss": 1.3106611633300782, + "step": 528500 + }, + { + "epoch": 70.48, + "grad_norm": 0.9033756852149963, + "learning_rate": 1.4776400000000001e-05, + "loss": 1.314158935546875, + "step": 528600 + }, + { + "epoch": 70.49333333333334, + "grad_norm": 0.8611282706260681, + "learning_rate": 1.4769733333333335e-05, + "loss": 1.3064042663574218, + "step": 528700 + }, + { + "epoch": 70.50666666666666, + "grad_norm": 0.8423687219619751, + "learning_rate": 1.4763066666666666e-05, + "loss": 1.3101791381835937, + "step": 528800 + }, + { + "epoch": 70.52, + "grad_norm": 0.8234757781028748, + "learning_rate": 1.4756400000000002e-05, + "loss": 1.3123239135742188, + "step": 528900 + }, + { + "epoch": 70.53333333333333, + "grad_norm": 0.8716632127761841, + "learning_rate": 1.4749733333333336e-05, + "loss": 1.3124678039550781, + "step": 529000 + }, + { + "epoch": 70.54666666666667, + "grad_norm": 0.9232488870620728, + "learning_rate": 1.4743066666666666e-05, + "loss": 1.3115689086914062, + "step": 529100 + }, + { + "epoch": 70.56, + "grad_norm": 0.8848524689674377, + "learning_rate": 1.47364e-05, + "loss": 1.3127764892578124, + "step": 529200 + }, + { + "epoch": 70.57333333333334, + "grad_norm": 0.875851035118103, + "learning_rate": 1.4729733333333334e-05, + "loss": 1.3133317565917968, + "step": 529300 + }, + { + "epoch": 70.58666666666667, + "grad_norm": 0.8727511763572693, + "learning_rate": 1.4723066666666668e-05, + "loss": 1.314737548828125, + "step": 529400 + }, + { + "epoch": 70.6, + "grad_norm": 0.8630813956260681, + "learning_rate": 1.47164e-05, + "loss": 1.3156022644042968, + "step": 529500 + }, + { + "epoch": 70.61333333333333, + "grad_norm": 0.8557106852531433, + "learning_rate": 1.4709733333333334e-05, + "loss": 1.3173948669433593, + "step": 529600 + }, + { + "epoch": 70.62666666666667, + "grad_norm": 0.9779431819915771, + "learning_rate": 1.4703066666666668e-05, + "loss": 1.3198297119140625, + "step": 529700 + }, + { + "epoch": 70.64, + "grad_norm": 0.8593903183937073, + "learning_rate": 1.4696400000000002e-05, + "loss": 1.316092529296875, + "step": 529800 + }, + { + "epoch": 70.65333333333334, + "grad_norm": 0.9095006585121155, + "learning_rate": 1.4689733333333333e-05, + "loss": 1.3180062866210938, + "step": 529900 + }, + { + "epoch": 70.66666666666667, + "grad_norm": 0.8926806449890137, + "learning_rate": 1.4683066666666667e-05, + "loss": 1.3165269470214844, + "step": 530000 + }, + { + "epoch": 70.68, + "grad_norm": 0.9139357805252075, + "learning_rate": 1.46764e-05, + "loss": 1.3208946228027343, + "step": 530100 + }, + { + "epoch": 70.69333333333333, + "grad_norm": 0.8682335615158081, + "learning_rate": 1.4669733333333335e-05, + "loss": 1.3224298095703124, + "step": 530200 + }, + { + "epoch": 70.70666666666666, + "grad_norm": 0.8869616985321045, + "learning_rate": 1.4663066666666667e-05, + "loss": 1.3226483154296875, + "step": 530300 + }, + { + "epoch": 70.72, + "grad_norm": 0.8614656925201416, + "learning_rate": 1.46564e-05, + "loss": 1.3232708740234376, + "step": 530400 + }, + { + "epoch": 70.73333333333333, + "grad_norm": 0.9762331247329712, + "learning_rate": 1.46498e-05, + "loss": 1.3229257202148437, + "step": 530500 + }, + { + "epoch": 70.74666666666667, + "grad_norm": 0.8502513766288757, + "learning_rate": 1.4643133333333334e-05, + "loss": 1.3204423522949218, + "step": 530600 + }, + { + "epoch": 70.76, + "grad_norm": 0.9142144918441772, + "learning_rate": 1.4636466666666668e-05, + "loss": 1.322928924560547, + "step": 530700 + }, + { + "epoch": 70.77333333333333, + "grad_norm": 0.9454054236412048, + "learning_rate": 1.4629800000000002e-05, + "loss": 1.3222068786621093, + "step": 530800 + }, + { + "epoch": 70.78666666666666, + "grad_norm": 0.8787757754325867, + "learning_rate": 1.4623133333333332e-05, + "loss": 1.3248483276367187, + "step": 530900 + }, + { + "epoch": 70.8, + "grad_norm": 0.9337016940116882, + "learning_rate": 1.4616466666666668e-05, + "loss": 1.32533447265625, + "step": 531000 + }, + { + "epoch": 70.81333333333333, + "grad_norm": 0.8793279528617859, + "learning_rate": 1.4609800000000002e-05, + "loss": 1.3210690307617188, + "step": 531100 + }, + { + "epoch": 70.82666666666667, + "grad_norm": 0.9024862051010132, + "learning_rate": 1.4603133333333336e-05, + "loss": 1.3219599914550781, + "step": 531200 + }, + { + "epoch": 70.84, + "grad_norm": 0.8972877264022827, + "learning_rate": 1.4596466666666667e-05, + "loss": 1.3197425842285155, + "step": 531300 + }, + { + "epoch": 70.85333333333334, + "grad_norm": 0.909234344959259, + "learning_rate": 1.45898e-05, + "loss": 1.3218959045410157, + "step": 531400 + }, + { + "epoch": 70.86666666666666, + "grad_norm": 0.9078801870346069, + "learning_rate": 1.4583133333333334e-05, + "loss": 1.3193194580078125, + "step": 531500 + }, + { + "epoch": 70.88, + "grad_norm": 0.8946749567985535, + "learning_rate": 1.4576466666666667e-05, + "loss": 1.3258621215820312, + "step": 531600 + }, + { + "epoch": 70.89333333333333, + "grad_norm": 0.8717100620269775, + "learning_rate": 1.45698e-05, + "loss": 1.324842529296875, + "step": 531700 + }, + { + "epoch": 70.90666666666667, + "grad_norm": 0.9220655560493469, + "learning_rate": 1.4563133333333335e-05, + "loss": 1.32437255859375, + "step": 531800 + }, + { + "epoch": 70.92, + "grad_norm": 0.9325002431869507, + "learning_rate": 1.4556466666666669e-05, + "loss": 1.3232379150390625, + "step": 531900 + }, + { + "epoch": 70.93333333333334, + "grad_norm": 0.9063462615013123, + "learning_rate": 1.45498e-05, + "loss": 1.324942626953125, + "step": 532000 + }, + { + "epoch": 70.94666666666667, + "grad_norm": 0.9205593466758728, + "learning_rate": 1.4543133333333333e-05, + "loss": 1.3274571228027343, + "step": 532100 + }, + { + "epoch": 70.96, + "grad_norm": 0.887042760848999, + "learning_rate": 1.4536466666666667e-05, + "loss": 1.3272421264648437, + "step": 532200 + }, + { + "epoch": 70.97333333333333, + "grad_norm": 0.8990888595581055, + "learning_rate": 1.4529800000000001e-05, + "loss": 1.3276673889160155, + "step": 532300 + }, + { + "epoch": 70.98666666666666, + "grad_norm": 0.86974036693573, + "learning_rate": 1.4523133333333333e-05, + "loss": 1.329319610595703, + "step": 532400 + }, + { + "epoch": 71.0, + "grad_norm": 0.8930814266204834, + "learning_rate": 1.4516533333333334e-05, + "loss": 1.325640869140625, + "step": 532500 + }, + { + "epoch": 71.01333333333334, + "grad_norm": 0.8759956955909729, + "learning_rate": 1.4509866666666666e-05, + "loss": 1.2856077575683593, + "step": 532600 + }, + { + "epoch": 71.02666666666667, + "grad_norm": 0.8954336047172546, + "learning_rate": 1.45032e-05, + "loss": 1.2832220458984376, + "step": 532700 + }, + { + "epoch": 71.04, + "grad_norm": 0.8733825087547302, + "learning_rate": 1.4496533333333334e-05, + "loss": 1.28903564453125, + "step": 532800 + }, + { + "epoch": 71.05333333333333, + "grad_norm": 0.9075688123703003, + "learning_rate": 1.4489866666666668e-05, + "loss": 1.28570556640625, + "step": 532900 + }, + { + "epoch": 71.06666666666666, + "grad_norm": 0.9383872747421265, + "learning_rate": 1.4483199999999999e-05, + "loss": 1.2899357604980468, + "step": 533000 + }, + { + "epoch": 71.08, + "grad_norm": 0.9034363031387329, + "learning_rate": 1.4476533333333333e-05, + "loss": 1.286364288330078, + "step": 533100 + }, + { + "epoch": 71.09333333333333, + "grad_norm": 0.8787199854850769, + "learning_rate": 1.4469866666666668e-05, + "loss": 1.2864273071289063, + "step": 533200 + }, + { + "epoch": 71.10666666666667, + "grad_norm": 0.8827729821205139, + "learning_rate": 1.4463200000000002e-05, + "loss": 1.2890650939941406, + "step": 533300 + }, + { + "epoch": 71.12, + "grad_norm": 0.8463526964187622, + "learning_rate": 1.4456533333333333e-05, + "loss": 1.2948846435546875, + "step": 533400 + }, + { + "epoch": 71.13333333333334, + "grad_norm": 0.903069794178009, + "learning_rate": 1.4449866666666667e-05, + "loss": 1.292220458984375, + "step": 533500 + }, + { + "epoch": 71.14666666666666, + "grad_norm": 0.9482007622718811, + "learning_rate": 1.4443200000000001e-05, + "loss": 1.2937982177734375, + "step": 533600 + }, + { + "epoch": 71.16, + "grad_norm": 0.8994336724281311, + "learning_rate": 1.4436533333333335e-05, + "loss": 1.2911940002441407, + "step": 533700 + }, + { + "epoch": 71.17333333333333, + "grad_norm": 0.8807686567306519, + "learning_rate": 1.4429866666666667e-05, + "loss": 1.2945388793945312, + "step": 533800 + }, + { + "epoch": 71.18666666666667, + "grad_norm": 0.8905879259109497, + "learning_rate": 1.4423200000000001e-05, + "loss": 1.294481964111328, + "step": 533900 + }, + { + "epoch": 71.2, + "grad_norm": 0.8632029891014099, + "learning_rate": 1.4416533333333335e-05, + "loss": 1.2912913513183595, + "step": 534000 + }, + { + "epoch": 71.21333333333334, + "grad_norm": 0.9372066259384155, + "learning_rate": 1.4409866666666669e-05, + "loss": 1.2954859924316406, + "step": 534100 + }, + { + "epoch": 71.22666666666667, + "grad_norm": 0.870266854763031, + "learning_rate": 1.44032e-05, + "loss": 1.2997502136230468, + "step": 534200 + }, + { + "epoch": 71.24, + "grad_norm": 0.8637234568595886, + "learning_rate": 1.4396533333333334e-05, + "loss": 1.2924945068359375, + "step": 534300 + }, + { + "epoch": 71.25333333333333, + "grad_norm": 0.9175564050674438, + "learning_rate": 1.4389866666666668e-05, + "loss": 1.2968971252441406, + "step": 534400 + }, + { + "epoch": 71.26666666666667, + "grad_norm": 0.876574695110321, + "learning_rate": 1.43832e-05, + "loss": 1.2949362182617188, + "step": 534500 + }, + { + "epoch": 71.28, + "grad_norm": 0.9054247140884399, + "learning_rate": 1.43766e-05, + "loss": 1.300845947265625, + "step": 534600 + }, + { + "epoch": 71.29333333333334, + "grad_norm": 0.9211097359657288, + "learning_rate": 1.4369933333333335e-05, + "loss": 1.3006065368652344, + "step": 534700 + }, + { + "epoch": 71.30666666666667, + "grad_norm": 0.8372483849525452, + "learning_rate": 1.4363266666666667e-05, + "loss": 1.2985647583007813, + "step": 534800 + }, + { + "epoch": 71.32, + "grad_norm": 0.8625202775001526, + "learning_rate": 1.43566e-05, + "loss": 1.3008456420898438, + "step": 534900 + }, + { + "epoch": 71.33333333333333, + "grad_norm": 0.8992438912391663, + "learning_rate": 1.4349933333333335e-05, + "loss": 1.301300048828125, + "step": 535000 + }, + { + "epoch": 71.34666666666666, + "grad_norm": 0.8850386738777161, + "learning_rate": 1.4343266666666669e-05, + "loss": 1.301788330078125, + "step": 535100 + }, + { + "epoch": 71.36, + "grad_norm": 0.8406701683998108, + "learning_rate": 1.43366e-05, + "loss": 1.2999703979492188, + "step": 535200 + }, + { + "epoch": 71.37333333333333, + "grad_norm": 0.8646606802940369, + "learning_rate": 1.4329933333333335e-05, + "loss": 1.3001799011230468, + "step": 535300 + }, + { + "epoch": 71.38666666666667, + "grad_norm": 0.9445309638977051, + "learning_rate": 1.4323266666666669e-05, + "loss": 1.302128143310547, + "step": 535400 + }, + { + "epoch": 71.4, + "grad_norm": 0.9471325874328613, + "learning_rate": 1.43166e-05, + "loss": 1.2999264526367187, + "step": 535500 + }, + { + "epoch": 71.41333333333333, + "grad_norm": 0.8217885494232178, + "learning_rate": 1.4309933333333333e-05, + "loss": 1.3032241821289063, + "step": 535600 + }, + { + "epoch": 71.42666666666666, + "grad_norm": 0.9401599764823914, + "learning_rate": 1.4303266666666667e-05, + "loss": 1.3056138610839845, + "step": 535700 + }, + { + "epoch": 71.44, + "grad_norm": 0.9012302756309509, + "learning_rate": 1.4296600000000001e-05, + "loss": 1.3041902160644532, + "step": 535800 + }, + { + "epoch": 71.45333333333333, + "grad_norm": 0.9111303091049194, + "learning_rate": 1.4289933333333334e-05, + "loss": 1.3063230895996094, + "step": 535900 + }, + { + "epoch": 71.46666666666667, + "grad_norm": 0.8673276901245117, + "learning_rate": 1.4283266666666668e-05, + "loss": 1.3001760864257812, + "step": 536000 + }, + { + "epoch": 71.48, + "grad_norm": 0.9236326217651367, + "learning_rate": 1.4276600000000002e-05, + "loss": 1.3068719482421876, + "step": 536100 + }, + { + "epoch": 71.49333333333334, + "grad_norm": 0.9119008779525757, + "learning_rate": 1.4269933333333335e-05, + "loss": 1.3041954040527344, + "step": 536200 + }, + { + "epoch": 71.50666666666666, + "grad_norm": 0.8844600319862366, + "learning_rate": 1.4263266666666666e-05, + "loss": 1.3039337158203126, + "step": 536300 + }, + { + "epoch": 71.52, + "grad_norm": 0.9151673316955566, + "learning_rate": 1.42566e-05, + "loss": 1.3061659240722656, + "step": 536400 + }, + { + "epoch": 71.53333333333333, + "grad_norm": 0.9146116971969604, + "learning_rate": 1.4249933333333334e-05, + "loss": 1.3047665405273436, + "step": 536500 + }, + { + "epoch": 71.54666666666667, + "grad_norm": 0.909635066986084, + "learning_rate": 1.4243333333333333e-05, + "loss": 1.3087080383300782, + "step": 536600 + }, + { + "epoch": 71.56, + "grad_norm": 0.9132217168807983, + "learning_rate": 1.4236666666666667e-05, + "loss": 1.3109938049316405, + "step": 536700 + }, + { + "epoch": 71.57333333333334, + "grad_norm": 0.9197409749031067, + "learning_rate": 1.4230000000000001e-05, + "loss": 1.3079139709472656, + "step": 536800 + }, + { + "epoch": 71.58666666666667, + "grad_norm": 0.8718376755714417, + "learning_rate": 1.4223333333333333e-05, + "loss": 1.3103158569335938, + "step": 536900 + }, + { + "epoch": 71.6, + "grad_norm": 0.8622058629989624, + "learning_rate": 1.4216666666666667e-05, + "loss": 1.31333251953125, + "step": 537000 + }, + { + "epoch": 71.61333333333333, + "grad_norm": 0.8807839155197144, + "learning_rate": 1.4210000000000001e-05, + "loss": 1.3074960327148437, + "step": 537100 + }, + { + "epoch": 71.62666666666667, + "grad_norm": 0.8405951261520386, + "learning_rate": 1.4203333333333335e-05, + "loss": 1.3117068481445313, + "step": 537200 + }, + { + "epoch": 71.64, + "grad_norm": 0.882014811038971, + "learning_rate": 1.4196666666666666e-05, + "loss": 1.3139077758789062, + "step": 537300 + }, + { + "epoch": 71.65333333333334, + "grad_norm": 0.9259293675422668, + "learning_rate": 1.4190000000000001e-05, + "loss": 1.310390625, + "step": 537400 + }, + { + "epoch": 71.66666666666667, + "grad_norm": 0.9055889248847961, + "learning_rate": 1.4183333333333335e-05, + "loss": 1.3092813110351562, + "step": 537500 + }, + { + "epoch": 71.68, + "grad_norm": 0.8556098937988281, + "learning_rate": 1.417666666666667e-05, + "loss": 1.30866455078125, + "step": 537600 + }, + { + "epoch": 71.69333333333333, + "grad_norm": 0.8926159143447876, + "learning_rate": 1.417e-05, + "loss": 1.3125555419921875, + "step": 537700 + }, + { + "epoch": 71.70666666666666, + "grad_norm": 0.9067847728729248, + "learning_rate": 1.4163333333333334e-05, + "loss": 1.3115115356445313, + "step": 537800 + }, + { + "epoch": 71.72, + "grad_norm": 0.9084548950195312, + "learning_rate": 1.4156666666666668e-05, + "loss": 1.310784912109375, + "step": 537900 + }, + { + "epoch": 71.73333333333333, + "grad_norm": 0.9122881889343262, + "learning_rate": 1.415e-05, + "loss": 1.3145706176757812, + "step": 538000 + }, + { + "epoch": 71.74666666666667, + "grad_norm": 0.9275632500648499, + "learning_rate": 1.4143333333333334e-05, + "loss": 1.3158493041992188, + "step": 538100 + }, + { + "epoch": 71.76, + "grad_norm": 0.8880303502082825, + "learning_rate": 1.4136666666666668e-05, + "loss": 1.3153211975097656, + "step": 538200 + }, + { + "epoch": 71.77333333333333, + "grad_norm": 0.8939701318740845, + "learning_rate": 1.4130000000000002e-05, + "loss": 1.3133526611328126, + "step": 538300 + }, + { + "epoch": 71.78666666666666, + "grad_norm": 0.9312496781349182, + "learning_rate": 1.4123333333333333e-05, + "loss": 1.3141810607910156, + "step": 538400 + }, + { + "epoch": 71.8, + "grad_norm": 0.8720466494560242, + "learning_rate": 1.4116666666666666e-05, + "loss": 1.3163778686523437, + "step": 538500 + }, + { + "epoch": 71.81333333333333, + "grad_norm": 0.8582771420478821, + "learning_rate": 1.4110066666666669e-05, + "loss": 1.3129298400878906, + "step": 538600 + }, + { + "epoch": 71.82666666666667, + "grad_norm": 0.8980292677879333, + "learning_rate": 1.41034e-05, + "loss": 1.3134010314941407, + "step": 538700 + }, + { + "epoch": 71.84, + "grad_norm": 0.8518330454826355, + "learning_rate": 1.4096733333333333e-05, + "loss": 1.318262176513672, + "step": 538800 + }, + { + "epoch": 71.85333333333334, + "grad_norm": 0.9726895689964294, + "learning_rate": 1.4090066666666667e-05, + "loss": 1.3170086669921874, + "step": 538900 + }, + { + "epoch": 71.86666666666666, + "grad_norm": 0.9808132648468018, + "learning_rate": 1.40834e-05, + "loss": 1.3163888549804688, + "step": 539000 + }, + { + "epoch": 71.88, + "grad_norm": 0.9004959464073181, + "learning_rate": 1.4076733333333334e-05, + "loss": 1.319114227294922, + "step": 539100 + }, + { + "epoch": 71.89333333333333, + "grad_norm": 0.9053959846496582, + "learning_rate": 1.4070066666666668e-05, + "loss": 1.31746337890625, + "step": 539200 + }, + { + "epoch": 71.90666666666667, + "grad_norm": 0.9328406453132629, + "learning_rate": 1.4063400000000002e-05, + "loss": 1.3196490478515626, + "step": 539300 + }, + { + "epoch": 71.92, + "grad_norm": 0.9023466110229492, + "learning_rate": 1.4056733333333332e-05, + "loss": 1.3168644714355469, + "step": 539400 + }, + { + "epoch": 71.93333333333334, + "grad_norm": 0.9490998983383179, + "learning_rate": 1.4050066666666666e-05, + "loss": 1.3167729187011719, + "step": 539500 + }, + { + "epoch": 71.94666666666667, + "grad_norm": 0.8722997903823853, + "learning_rate": 1.4043400000000002e-05, + "loss": 1.3187103271484375, + "step": 539600 + }, + { + "epoch": 71.96, + "grad_norm": 0.8097230792045593, + "learning_rate": 1.4036733333333336e-05, + "loss": 1.3224807739257813, + "step": 539700 + }, + { + "epoch": 71.97333333333333, + "grad_norm": 0.8848879337310791, + "learning_rate": 1.4030066666666666e-05, + "loss": 1.3202239990234375, + "step": 539800 + }, + { + "epoch": 71.98666666666666, + "grad_norm": 0.9258289933204651, + "learning_rate": 1.40234e-05, + "loss": 1.316883544921875, + "step": 539900 + }, + { + "epoch": 72.0, + "grad_norm": 0.8436217904090881, + "learning_rate": 1.4016733333333334e-05, + "loss": 1.315811309814453, + "step": 540000 + }, + { + "epoch": 72.01333333333334, + "grad_norm": 0.8667635321617126, + "learning_rate": 1.4010066666666668e-05, + "loss": 1.276677932739258, + "step": 540100 + }, + { + "epoch": 72.02666666666667, + "grad_norm": 0.9259230494499207, + "learning_rate": 1.40034e-05, + "loss": 1.281935577392578, + "step": 540200 + }, + { + "epoch": 72.04, + "grad_norm": 0.8905673027038574, + "learning_rate": 1.3996733333333334e-05, + "loss": 1.279156951904297, + "step": 540300 + }, + { + "epoch": 72.05333333333333, + "grad_norm": 0.829764723777771, + "learning_rate": 1.3990066666666668e-05, + "loss": 1.2802044677734374, + "step": 540400 + }, + { + "epoch": 72.06666666666666, + "grad_norm": 0.8586835861206055, + "learning_rate": 1.3983400000000002e-05, + "loss": 1.2799781036376954, + "step": 540500 + }, + { + "epoch": 72.08, + "grad_norm": 0.9158450365066528, + "learning_rate": 1.3976800000000001e-05, + "loss": 1.2819879150390625, + "step": 540600 + }, + { + "epoch": 72.09333333333333, + "grad_norm": 0.8834480047225952, + "learning_rate": 1.3970133333333335e-05, + "loss": 1.286240234375, + "step": 540700 + }, + { + "epoch": 72.10666666666667, + "grad_norm": 0.8838781118392944, + "learning_rate": 1.3963466666666666e-05, + "loss": 1.2864297485351563, + "step": 540800 + }, + { + "epoch": 72.12, + "grad_norm": 0.8703628778457642, + "learning_rate": 1.39568e-05, + "loss": 1.2833221435546875, + "step": 540900 + }, + { + "epoch": 72.13333333333334, + "grad_norm": 0.8430854678153992, + "learning_rate": 1.3950133333333334e-05, + "loss": 1.2873780822753906, + "step": 541000 + }, + { + "epoch": 72.14666666666666, + "grad_norm": 0.8535856008529663, + "learning_rate": 1.3943466666666668e-05, + "loss": 1.285396728515625, + "step": 541100 + }, + { + "epoch": 72.16, + "grad_norm": 0.9505435228347778, + "learning_rate": 1.39368e-05, + "loss": 1.2908889770507812, + "step": 541200 + }, + { + "epoch": 72.17333333333333, + "grad_norm": 0.9199652671813965, + "learning_rate": 1.3930133333333334e-05, + "loss": 1.2874760437011719, + "step": 541300 + }, + { + "epoch": 72.18666666666667, + "grad_norm": 0.9367565512657166, + "learning_rate": 1.3923466666666668e-05, + "loss": 1.2900453186035157, + "step": 541400 + }, + { + "epoch": 72.2, + "grad_norm": 0.8932370543479919, + "learning_rate": 1.3916799999999999e-05, + "loss": 1.290118408203125, + "step": 541500 + }, + { + "epoch": 72.21333333333334, + "grad_norm": 0.8846625089645386, + "learning_rate": 1.3910133333333333e-05, + "loss": 1.289880828857422, + "step": 541600 + }, + { + "epoch": 72.22666666666667, + "grad_norm": 0.8700215816497803, + "learning_rate": 1.3903466666666668e-05, + "loss": 1.2882028198242188, + "step": 541700 + }, + { + "epoch": 72.24, + "grad_norm": 0.8952950239181519, + "learning_rate": 1.3896800000000002e-05, + "loss": 1.2952290344238282, + "step": 541800 + }, + { + "epoch": 72.25333333333333, + "grad_norm": 0.8888140320777893, + "learning_rate": 1.3890133333333333e-05, + "loss": 1.2887269592285155, + "step": 541900 + }, + { + "epoch": 72.26666666666667, + "grad_norm": 0.873499870300293, + "learning_rate": 1.3883466666666667e-05, + "loss": 1.2873663330078124, + "step": 542000 + }, + { + "epoch": 72.28, + "grad_norm": 0.8604170083999634, + "learning_rate": 1.38768e-05, + "loss": 1.2889486694335937, + "step": 542100 + }, + { + "epoch": 72.29333333333334, + "grad_norm": 0.8493339419364929, + "learning_rate": 1.3870133333333335e-05, + "loss": 1.2932403564453125, + "step": 542200 + }, + { + "epoch": 72.30666666666667, + "grad_norm": 0.8944411873817444, + "learning_rate": 1.3863466666666667e-05, + "loss": 1.298619384765625, + "step": 542300 + }, + { + "epoch": 72.32, + "grad_norm": 0.9077425003051758, + "learning_rate": 1.3856800000000001e-05, + "loss": 1.291400146484375, + "step": 542400 + }, + { + "epoch": 72.33333333333333, + "grad_norm": 0.9395051598548889, + "learning_rate": 1.3850133333333335e-05, + "loss": 1.2952896118164063, + "step": 542500 + }, + { + "epoch": 72.34666666666666, + "grad_norm": 0.9028144478797913, + "learning_rate": 1.3843533333333334e-05, + "loss": 1.290705108642578, + "step": 542600 + }, + { + "epoch": 72.36, + "grad_norm": 0.9369432330131531, + "learning_rate": 1.3836866666666668e-05, + "loss": 1.2938015747070313, + "step": 542700 + }, + { + "epoch": 72.37333333333333, + "grad_norm": 0.8780479431152344, + "learning_rate": 1.3830200000000002e-05, + "loss": 1.296564483642578, + "step": 542800 + }, + { + "epoch": 72.38666666666667, + "grad_norm": 0.9035230875015259, + "learning_rate": 1.3823533333333332e-05, + "loss": 1.3008587646484375, + "step": 542900 + }, + { + "epoch": 72.4, + "grad_norm": 0.8920375108718872, + "learning_rate": 1.3816866666666666e-05, + "loss": 1.2913095092773437, + "step": 543000 + }, + { + "epoch": 72.41333333333333, + "grad_norm": 0.8965349793434143, + "learning_rate": 1.38102e-05, + "loss": 1.2953553771972657, + "step": 543100 + }, + { + "epoch": 72.42666666666666, + "grad_norm": 0.8993667364120483, + "learning_rate": 1.3803533333333334e-05, + "loss": 1.300503692626953, + "step": 543200 + }, + { + "epoch": 72.44, + "grad_norm": 0.8752589821815491, + "learning_rate": 1.3796866666666667e-05, + "loss": 1.2973211669921876, + "step": 543300 + }, + { + "epoch": 72.45333333333333, + "grad_norm": 0.9074227809906006, + "learning_rate": 1.37902e-05, + "loss": 1.2994436645507812, + "step": 543400 + }, + { + "epoch": 72.46666666666667, + "grad_norm": 0.8692722320556641, + "learning_rate": 1.3783533333333335e-05, + "loss": 1.3030880737304686, + "step": 543500 + }, + { + "epoch": 72.48, + "grad_norm": 0.9283269047737122, + "learning_rate": 1.3776866666666668e-05, + "loss": 1.2986073303222656, + "step": 543600 + }, + { + "epoch": 72.49333333333334, + "grad_norm": 0.8463515639305115, + "learning_rate": 1.3770199999999999e-05, + "loss": 1.3008390808105468, + "step": 543700 + }, + { + "epoch": 72.50666666666666, + "grad_norm": 0.9368971586227417, + "learning_rate": 1.3763533333333333e-05, + "loss": 1.3003103637695312, + "step": 543800 + }, + { + "epoch": 72.52, + "grad_norm": 0.8514252305030823, + "learning_rate": 1.3756866666666669e-05, + "loss": 1.2996723937988282, + "step": 543900 + }, + { + "epoch": 72.53333333333333, + "grad_norm": 0.9113193154335022, + "learning_rate": 1.3750200000000003e-05, + "loss": 1.3013104248046874, + "step": 544000 + }, + { + "epoch": 72.54666666666667, + "grad_norm": 0.8973194360733032, + "learning_rate": 1.3743533333333333e-05, + "loss": 1.303866424560547, + "step": 544100 + }, + { + "epoch": 72.56, + "grad_norm": 0.9292814135551453, + "learning_rate": 1.3736866666666667e-05, + "loss": 1.3007473754882812, + "step": 544200 + }, + { + "epoch": 72.57333333333334, + "grad_norm": 0.8650021553039551, + "learning_rate": 1.3730200000000001e-05, + "loss": 1.3053372192382813, + "step": 544300 + }, + { + "epoch": 72.58666666666667, + "grad_norm": 0.9136223196983337, + "learning_rate": 1.3723533333333333e-05, + "loss": 1.305074462890625, + "step": 544400 + }, + { + "epoch": 72.6, + "grad_norm": 0.899770975112915, + "learning_rate": 1.3716866666666667e-05, + "loss": 1.304183807373047, + "step": 544500 + }, + { + "epoch": 72.61333333333333, + "grad_norm": 0.9051358699798584, + "learning_rate": 1.3710200000000001e-05, + "loss": 1.2999253845214844, + "step": 544600 + }, + { + "epoch": 72.62666666666667, + "grad_norm": 0.8969173431396484, + "learning_rate": 1.37036e-05, + "loss": 1.301925048828125, + "step": 544700 + }, + { + "epoch": 72.64, + "grad_norm": 0.8683328032493591, + "learning_rate": 1.3696933333333334e-05, + "loss": 1.3041268920898437, + "step": 544800 + }, + { + "epoch": 72.65333333333334, + "grad_norm": 0.9285234808921814, + "learning_rate": 1.3690266666666668e-05, + "loss": 1.3035903930664063, + "step": 544900 + }, + { + "epoch": 72.66666666666667, + "grad_norm": 0.9057257175445557, + "learning_rate": 1.3683600000000002e-05, + "loss": 1.3026934814453126, + "step": 545000 + }, + { + "epoch": 72.68, + "grad_norm": 0.9157271385192871, + "learning_rate": 1.3676933333333333e-05, + "loss": 1.303736114501953, + "step": 545100 + }, + { + "epoch": 72.69333333333333, + "grad_norm": 0.8953295350074768, + "learning_rate": 1.3670266666666667e-05, + "loss": 1.3063804626464843, + "step": 545200 + }, + { + "epoch": 72.70666666666666, + "grad_norm": 0.9013524651527405, + "learning_rate": 1.36636e-05, + "loss": 1.3081599426269532, + "step": 545300 + }, + { + "epoch": 72.72, + "grad_norm": 0.8747628331184387, + "learning_rate": 1.3656933333333333e-05, + "loss": 1.3081907653808593, + "step": 545400 + }, + { + "epoch": 72.73333333333333, + "grad_norm": 0.8898458480834961, + "learning_rate": 1.3650266666666667e-05, + "loss": 1.308251953125, + "step": 545500 + }, + { + "epoch": 72.74666666666667, + "grad_norm": 0.9078856110572815, + "learning_rate": 1.3643600000000001e-05, + "loss": 1.3066876220703125, + "step": 545600 + }, + { + "epoch": 72.76, + "grad_norm": 0.8842049241065979, + "learning_rate": 1.3636933333333335e-05, + "loss": 1.3049169921875, + "step": 545700 + }, + { + "epoch": 72.77333333333333, + "grad_norm": 0.9232098460197449, + "learning_rate": 1.3630266666666666e-05, + "loss": 1.3058796691894532, + "step": 545800 + }, + { + "epoch": 72.78666666666666, + "grad_norm": 0.9262491464614868, + "learning_rate": 1.36236e-05, + "loss": 1.3056631469726563, + "step": 545900 + }, + { + "epoch": 72.8, + "grad_norm": 0.9117762446403503, + "learning_rate": 1.3616933333333335e-05, + "loss": 1.3098313903808594, + "step": 546000 + }, + { + "epoch": 72.81333333333333, + "grad_norm": 0.8940130472183228, + "learning_rate": 1.3610266666666669e-05, + "loss": 1.3110063171386719, + "step": 546100 + }, + { + "epoch": 72.82666666666667, + "grad_norm": 0.8723244071006775, + "learning_rate": 1.36036e-05, + "loss": 1.3087918090820312, + "step": 546200 + }, + { + "epoch": 72.84, + "grad_norm": 0.8790159821510315, + "learning_rate": 1.3596933333333334e-05, + "loss": 1.3090879821777344, + "step": 546300 + }, + { + "epoch": 72.85333333333334, + "grad_norm": 0.9324440956115723, + "learning_rate": 1.3590266666666668e-05, + "loss": 1.3065005493164064, + "step": 546400 + }, + { + "epoch": 72.86666666666666, + "grad_norm": 0.9022642374038696, + "learning_rate": 1.3583600000000002e-05, + "loss": 1.308943634033203, + "step": 546500 + }, + { + "epoch": 72.88, + "grad_norm": 0.8869839906692505, + "learning_rate": 1.3576933333333334e-05, + "loss": 1.3140464782714845, + "step": 546600 + }, + { + "epoch": 72.89333333333333, + "grad_norm": 0.9020800590515137, + "learning_rate": 1.3570333333333335e-05, + "loss": 1.3082620239257812, + "step": 546700 + }, + { + "epoch": 72.90666666666667, + "grad_norm": 0.8998864889144897, + "learning_rate": 1.3563666666666667e-05, + "loss": 1.3143278503417968, + "step": 546800 + }, + { + "epoch": 72.92, + "grad_norm": 0.9254443645477295, + "learning_rate": 1.3557e-05, + "loss": 1.3102537536621093, + "step": 546900 + }, + { + "epoch": 72.93333333333334, + "grad_norm": 0.8916531205177307, + "learning_rate": 1.3550333333333335e-05, + "loss": 1.3090887451171875, + "step": 547000 + }, + { + "epoch": 72.94666666666667, + "grad_norm": 0.8924204707145691, + "learning_rate": 1.3543666666666669e-05, + "loss": 1.3153028869628907, + "step": 547100 + }, + { + "epoch": 72.96, + "grad_norm": 0.8734211921691895, + "learning_rate": 1.3537e-05, + "loss": 1.3160145568847657, + "step": 547200 + }, + { + "epoch": 72.97333333333333, + "grad_norm": 0.8596046566963196, + "learning_rate": 1.3530333333333333e-05, + "loss": 1.3085627746582031, + "step": 547300 + }, + { + "epoch": 72.98666666666666, + "grad_norm": 0.8837646842002869, + "learning_rate": 1.3523666666666667e-05, + "loss": 1.3099195861816406, + "step": 547400 + }, + { + "epoch": 73.0, + "grad_norm": 0.9559072852134705, + "learning_rate": 1.3517000000000001e-05, + "loss": 1.3160740661621093, + "step": 547500 + }, + { + "epoch": 73.01333333333334, + "grad_norm": 0.9471146464347839, + "learning_rate": 1.3510333333333333e-05, + "loss": 1.2761563110351561, + "step": 547600 + }, + { + "epoch": 73.02666666666667, + "grad_norm": 0.8618519306182861, + "learning_rate": 1.3503666666666667e-05, + "loss": 1.2729344940185547, + "step": 547700 + }, + { + "epoch": 73.04, + "grad_norm": 0.8488065600395203, + "learning_rate": 1.3497000000000001e-05, + "loss": 1.273756561279297, + "step": 547800 + }, + { + "epoch": 73.05333333333333, + "grad_norm": 0.8331854343414307, + "learning_rate": 1.3490333333333332e-05, + "loss": 1.277390899658203, + "step": 547900 + }, + { + "epoch": 73.06666666666666, + "grad_norm": 0.8586211204528809, + "learning_rate": 1.3483666666666666e-05, + "loss": 1.276772689819336, + "step": 548000 + }, + { + "epoch": 73.08, + "grad_norm": 0.8098661303520203, + "learning_rate": 1.3477000000000002e-05, + "loss": 1.2797915649414062, + "step": 548100 + }, + { + "epoch": 73.09333333333333, + "grad_norm": 0.953315019607544, + "learning_rate": 1.3470333333333336e-05, + "loss": 1.276962432861328, + "step": 548200 + }, + { + "epoch": 73.10666666666667, + "grad_norm": 0.8598954677581787, + "learning_rate": 1.3463666666666666e-05, + "loss": 1.2770060729980468, + "step": 548300 + }, + { + "epoch": 73.12, + "grad_norm": 0.8851730227470398, + "learning_rate": 1.3457e-05, + "loss": 1.2772944641113282, + "step": 548400 + }, + { + "epoch": 73.13333333333334, + "grad_norm": 0.8884763121604919, + "learning_rate": 1.3450333333333334e-05, + "loss": 1.2774359130859374, + "step": 548500 + }, + { + "epoch": 73.14666666666666, + "grad_norm": 0.9043313264846802, + "learning_rate": 1.3443666666666668e-05, + "loss": 1.2833470153808593, + "step": 548600 + }, + { + "epoch": 73.16, + "grad_norm": 0.9404314160346985, + "learning_rate": 1.3437066666666667e-05, + "loss": 1.2804563903808595, + "step": 548700 + }, + { + "epoch": 73.17333333333333, + "grad_norm": 0.8437866568565369, + "learning_rate": 1.3430400000000001e-05, + "loss": 1.2854263305664062, + "step": 548800 + }, + { + "epoch": 73.18666666666667, + "grad_norm": 0.927335798740387, + "learning_rate": 1.3423733333333333e-05, + "loss": 1.2844186401367188, + "step": 548900 + }, + { + "epoch": 73.2, + "grad_norm": 0.8449512124061584, + "learning_rate": 1.3417066666666667e-05, + "loss": 1.2796637725830078, + "step": 549000 + }, + { + "epoch": 73.21333333333334, + "grad_norm": 0.8738372325897217, + "learning_rate": 1.3410400000000001e-05, + "loss": 1.2857395935058593, + "step": 549100 + }, + { + "epoch": 73.22666666666667, + "grad_norm": 0.8766629695892334, + "learning_rate": 1.3403733333333335e-05, + "loss": 1.2832762145996093, + "step": 549200 + }, + { + "epoch": 73.24, + "grad_norm": 0.8308307528495789, + "learning_rate": 1.3397066666666666e-05, + "loss": 1.2830810546875, + "step": 549300 + }, + { + "epoch": 73.25333333333333, + "grad_norm": 0.9020586013793945, + "learning_rate": 1.33904e-05, + "loss": 1.2846853637695312, + "step": 549400 + }, + { + "epoch": 73.26666666666667, + "grad_norm": 0.8639815449714661, + "learning_rate": 1.3383733333333334e-05, + "loss": 1.287603302001953, + "step": 549500 + }, + { + "epoch": 73.28, + "grad_norm": 0.8645631670951843, + "learning_rate": 1.3377066666666668e-05, + "loss": 1.287257537841797, + "step": 549600 + }, + { + "epoch": 73.29333333333334, + "grad_norm": 0.8956714868545532, + "learning_rate": 1.33704e-05, + "loss": 1.2851387023925782, + "step": 549700 + }, + { + "epoch": 73.30666666666667, + "grad_norm": 0.9055325984954834, + "learning_rate": 1.3363733333333334e-05, + "loss": 1.2879544067382813, + "step": 549800 + }, + { + "epoch": 73.32, + "grad_norm": 0.8861287236213684, + "learning_rate": 1.3357066666666668e-05, + "loss": 1.2887428283691407, + "step": 549900 + }, + { + "epoch": 73.33333333333333, + "grad_norm": 0.9045313000679016, + "learning_rate": 1.3350400000000002e-05, + "loss": 1.2884335327148437, + "step": 550000 + }, + { + "epoch": 73.34666666666666, + "grad_norm": 0.8875342011451721, + "learning_rate": 1.3343733333333332e-05, + "loss": 1.2835194396972656, + "step": 550100 + }, + { + "epoch": 73.36, + "grad_norm": 0.8842615485191345, + "learning_rate": 1.3337066666666666e-05, + "loss": 1.2884930419921874, + "step": 550200 + }, + { + "epoch": 73.37333333333333, + "grad_norm": 0.9177148342132568, + "learning_rate": 1.3330400000000002e-05, + "loss": 1.290846710205078, + "step": 550300 + }, + { + "epoch": 73.38666666666667, + "grad_norm": 0.913221538066864, + "learning_rate": 1.3323733333333336e-05, + "loss": 1.2883349609375, + "step": 550400 + }, + { + "epoch": 73.4, + "grad_norm": 0.9081894159317017, + "learning_rate": 1.3317066666666667e-05, + "loss": 1.2872616577148437, + "step": 550500 + }, + { + "epoch": 73.41333333333333, + "grad_norm": 0.8833068609237671, + "learning_rate": 1.33104e-05, + "loss": 1.2878277587890625, + "step": 550600 + }, + { + "epoch": 73.42666666666666, + "grad_norm": 0.8581375479698181, + "learning_rate": 1.33038e-05, + "loss": 1.2895700073242187, + "step": 550700 + }, + { + "epoch": 73.44, + "grad_norm": 0.9249962568283081, + "learning_rate": 1.3297133333333334e-05, + "loss": 1.2897068786621093, + "step": 550800 + }, + { + "epoch": 73.45333333333333, + "grad_norm": 0.9126532077789307, + "learning_rate": 1.3290466666666668e-05, + "loss": 1.2911618041992188, + "step": 550900 + }, + { + "epoch": 73.46666666666667, + "grad_norm": 0.91612708568573, + "learning_rate": 1.3283800000000001e-05, + "loss": 1.2918502807617187, + "step": 551000 + }, + { + "epoch": 73.48, + "grad_norm": 0.8593502044677734, + "learning_rate": 1.3277133333333334e-05, + "loss": 1.292982177734375, + "step": 551100 + }, + { + "epoch": 73.49333333333334, + "grad_norm": 0.9457326531410217, + "learning_rate": 1.3270466666666668e-05, + "loss": 1.2906185913085937, + "step": 551200 + }, + { + "epoch": 73.50666666666666, + "grad_norm": 0.8378877639770508, + "learning_rate": 1.3263800000000002e-05, + "loss": 1.29209228515625, + "step": 551300 + }, + { + "epoch": 73.52, + "grad_norm": 0.9088276624679565, + "learning_rate": 1.3257133333333336e-05, + "loss": 1.2912477111816407, + "step": 551400 + }, + { + "epoch": 73.53333333333333, + "grad_norm": 0.9294626712799072, + "learning_rate": 1.3250466666666666e-05, + "loss": 1.2885626220703126, + "step": 551500 + }, + { + "epoch": 73.54666666666667, + "grad_norm": 0.876581072807312, + "learning_rate": 1.32438e-05, + "loss": 1.2994056701660157, + "step": 551600 + }, + { + "epoch": 73.56, + "grad_norm": 0.9063646793365479, + "learning_rate": 1.3237133333333334e-05, + "loss": 1.2967149353027343, + "step": 551700 + }, + { + "epoch": 73.57333333333334, + "grad_norm": 0.8408426642417908, + "learning_rate": 1.3230466666666666e-05, + "loss": 1.2977626037597656, + "step": 551800 + }, + { + "epoch": 73.58666666666667, + "grad_norm": 0.9056010246276855, + "learning_rate": 1.32238e-05, + "loss": 1.2985139465332032, + "step": 551900 + }, + { + "epoch": 73.6, + "grad_norm": 0.8862862586975098, + "learning_rate": 1.3217133333333334e-05, + "loss": 1.2940017700195312, + "step": 552000 + }, + { + "epoch": 73.61333333333333, + "grad_norm": 0.8660182356834412, + "learning_rate": 1.3210466666666668e-05, + "loss": 1.2961624145507813, + "step": 552100 + }, + { + "epoch": 73.62666666666667, + "grad_norm": 0.8667203187942505, + "learning_rate": 1.3203799999999999e-05, + "loss": 1.2973252868652343, + "step": 552200 + }, + { + "epoch": 73.64, + "grad_norm": 0.8764863014221191, + "learning_rate": 1.3197133333333333e-05, + "loss": 1.3011990356445313, + "step": 552300 + }, + { + "epoch": 73.65333333333334, + "grad_norm": 0.854836106300354, + "learning_rate": 1.3190466666666668e-05, + "loss": 1.301475830078125, + "step": 552400 + }, + { + "epoch": 73.66666666666667, + "grad_norm": 0.8675264716148376, + "learning_rate": 1.3183800000000002e-05, + "loss": 1.2946461486816405, + "step": 552500 + }, + { + "epoch": 73.68, + "grad_norm": 0.8799411654472351, + "learning_rate": 1.3177133333333333e-05, + "loss": 1.2978501892089844, + "step": 552600 + }, + { + "epoch": 73.69333333333333, + "grad_norm": 0.8406023979187012, + "learning_rate": 1.3170466666666667e-05, + "loss": 1.2984336853027343, + "step": 552700 + }, + { + "epoch": 73.70666666666666, + "grad_norm": 0.8912414908409119, + "learning_rate": 1.3163866666666666e-05, + "loss": 1.3007151794433593, + "step": 552800 + }, + { + "epoch": 73.72, + "grad_norm": 0.8535100221633911, + "learning_rate": 1.31572e-05, + "loss": 1.2961094665527344, + "step": 552900 + }, + { + "epoch": 73.73333333333333, + "grad_norm": 0.932938814163208, + "learning_rate": 1.3150533333333334e-05, + "loss": 1.2960186767578126, + "step": 553000 + }, + { + "epoch": 73.74666666666667, + "grad_norm": 0.9171094298362732, + "learning_rate": 1.3143866666666668e-05, + "loss": 1.3013040161132812, + "step": 553100 + }, + { + "epoch": 73.76, + "grad_norm": 0.923318088054657, + "learning_rate": 1.31372e-05, + "loss": 1.300777130126953, + "step": 553200 + }, + { + "epoch": 73.77333333333333, + "grad_norm": 0.9453115463256836, + "learning_rate": 1.3130533333333334e-05, + "loss": 1.3012001037597656, + "step": 553300 + }, + { + "epoch": 73.78666666666666, + "grad_norm": 0.9598022699356079, + "learning_rate": 1.3123866666666668e-05, + "loss": 1.3000535583496093, + "step": 553400 + }, + { + "epoch": 73.8, + "grad_norm": 0.8746120929718018, + "learning_rate": 1.3117200000000002e-05, + "loss": 1.299759979248047, + "step": 553500 + }, + { + "epoch": 73.81333333333333, + "grad_norm": 0.8909258842468262, + "learning_rate": 1.3110533333333333e-05, + "loss": 1.3039195251464843, + "step": 553600 + }, + { + "epoch": 73.82666666666667, + "grad_norm": 0.899439811706543, + "learning_rate": 1.3103866666666667e-05, + "loss": 1.3032107543945313, + "step": 553700 + }, + { + "epoch": 73.84, + "grad_norm": 0.9339725375175476, + "learning_rate": 1.30972e-05, + "loss": 1.2999578857421874, + "step": 553800 + }, + { + "epoch": 73.85333333333334, + "grad_norm": 0.8592462539672852, + "learning_rate": 1.3090533333333335e-05, + "loss": 1.3077874755859376, + "step": 553900 + }, + { + "epoch": 73.86666666666666, + "grad_norm": 0.8757080435752869, + "learning_rate": 1.3083866666666667e-05, + "loss": 1.3068240356445313, + "step": 554000 + }, + { + "epoch": 73.88, + "grad_norm": 0.893817663192749, + "learning_rate": 1.30772e-05, + "loss": 1.3072088623046876, + "step": 554100 + }, + { + "epoch": 73.89333333333333, + "grad_norm": 0.8930887579917908, + "learning_rate": 1.3070533333333335e-05, + "loss": 1.303759307861328, + "step": 554200 + }, + { + "epoch": 73.90666666666667, + "grad_norm": 0.9105483293533325, + "learning_rate": 1.3063866666666665e-05, + "loss": 1.3057803344726562, + "step": 554300 + }, + { + "epoch": 73.92, + "grad_norm": 0.9180082678794861, + "learning_rate": 1.30572e-05, + "loss": 1.3057562255859374, + "step": 554400 + }, + { + "epoch": 73.93333333333334, + "grad_norm": 0.900630533695221, + "learning_rate": 1.3050533333333333e-05, + "loss": 1.3036831665039061, + "step": 554500 + }, + { + "epoch": 73.94666666666667, + "grad_norm": 0.9302444458007812, + "learning_rate": 1.3043866666666669e-05, + "loss": 1.3099397277832032, + "step": 554600 + }, + { + "epoch": 73.96, + "grad_norm": 0.9064813256263733, + "learning_rate": 1.30372e-05, + "loss": 1.3054379272460936, + "step": 554700 + }, + { + "epoch": 73.97333333333333, + "grad_norm": 0.8835692405700684, + "learning_rate": 1.3030600000000002e-05, + "loss": 1.3077413940429687, + "step": 554800 + }, + { + "epoch": 73.98666666666666, + "grad_norm": 0.8917888402938843, + "learning_rate": 1.3023933333333336e-05, + "loss": 1.3091519165039063, + "step": 554900 + }, + { + "epoch": 74.0, + "grad_norm": 0.8641742467880249, + "learning_rate": 1.3017266666666666e-05, + "loss": 1.3092634582519531, + "step": 555000 + }, + { + "epoch": 74.01333333333334, + "grad_norm": 0.944517970085144, + "learning_rate": 1.30106e-05, + "loss": 1.2658570861816407, + "step": 555100 + }, + { + "epoch": 74.02666666666667, + "grad_norm": 0.8598766326904297, + "learning_rate": 1.3003933333333334e-05, + "loss": 1.2683529663085937, + "step": 555200 + }, + { + "epoch": 74.04, + "grad_norm": 0.860201895236969, + "learning_rate": 1.2997266666666667e-05, + "loss": 1.2708037567138672, + "step": 555300 + }, + { + "epoch": 74.05333333333333, + "grad_norm": 0.8917511105537415, + "learning_rate": 1.29906e-05, + "loss": 1.271436004638672, + "step": 555400 + }, + { + "epoch": 74.06666666666666, + "grad_norm": 0.939109742641449, + "learning_rate": 1.2983933333333335e-05, + "loss": 1.2716947937011718, + "step": 555500 + }, + { + "epoch": 74.08, + "grad_norm": 0.8807459473609924, + "learning_rate": 1.2977266666666669e-05, + "loss": 1.2712261199951171, + "step": 555600 + }, + { + "epoch": 74.09333333333333, + "grad_norm": 0.8981074094772339, + "learning_rate": 1.2970599999999999e-05, + "loss": 1.2726960754394532, + "step": 555700 + }, + { + "epoch": 74.10666666666667, + "grad_norm": 0.920891523361206, + "learning_rate": 1.2963933333333333e-05, + "loss": 1.271525650024414, + "step": 555800 + }, + { + "epoch": 74.12, + "grad_norm": 0.8784647583961487, + "learning_rate": 1.2957266666666667e-05, + "loss": 1.2761204528808594, + "step": 555900 + }, + { + "epoch": 74.13333333333334, + "grad_norm": 0.9443046450614929, + "learning_rate": 1.2950600000000001e-05, + "loss": 1.2812734985351562, + "step": 556000 + }, + { + "epoch": 74.14666666666666, + "grad_norm": 0.9324434995651245, + "learning_rate": 1.2943933333333333e-05, + "loss": 1.2774497985839843, + "step": 556100 + }, + { + "epoch": 74.16, + "grad_norm": 0.9151404500007629, + "learning_rate": 1.2937266666666667e-05, + "loss": 1.2794931030273438, + "step": 556200 + }, + { + "epoch": 74.17333333333333, + "grad_norm": 0.9019087553024292, + "learning_rate": 1.2930600000000001e-05, + "loss": 1.272760467529297, + "step": 556300 + }, + { + "epoch": 74.18666666666667, + "grad_norm": 0.9008191823959351, + "learning_rate": 1.2923933333333335e-05, + "loss": 1.2791709899902344, + "step": 556400 + }, + { + "epoch": 74.2, + "grad_norm": 0.9243355393409729, + "learning_rate": 1.2917266666666666e-05, + "loss": 1.2742820739746095, + "step": 556500 + }, + { + "epoch": 74.21333333333334, + "grad_norm": 0.8960252404212952, + "learning_rate": 1.29106e-05, + "loss": 1.2767957305908204, + "step": 556600 + }, + { + "epoch": 74.22666666666667, + "grad_norm": 0.8784938454627991, + "learning_rate": 1.2903933333333335e-05, + "loss": 1.2783699798583985, + "step": 556700 + }, + { + "epoch": 74.24, + "grad_norm": 0.9372243285179138, + "learning_rate": 1.2897333333333333e-05, + "loss": 1.2807513427734376, + "step": 556800 + }, + { + "epoch": 74.25333333333333, + "grad_norm": 0.8725894093513489, + "learning_rate": 1.2890666666666668e-05, + "loss": 1.280004119873047, + "step": 556900 + }, + { + "epoch": 74.26666666666667, + "grad_norm": 0.8671815991401672, + "learning_rate": 1.2884000000000002e-05, + "loss": 1.276363296508789, + "step": 557000 + }, + { + "epoch": 74.28, + "grad_norm": 0.8304952383041382, + "learning_rate": 1.2877333333333333e-05, + "loss": 1.2792926025390625, + "step": 557100 + }, + { + "epoch": 74.29333333333334, + "grad_norm": 0.8606889247894287, + "learning_rate": 1.2870666666666667e-05, + "loss": 1.2823660278320312, + "step": 557200 + }, + { + "epoch": 74.30666666666667, + "grad_norm": 0.8777315020561218, + "learning_rate": 1.2864e-05, + "loss": 1.2785820007324218, + "step": 557300 + }, + { + "epoch": 74.32, + "grad_norm": 0.8733790516853333, + "learning_rate": 1.2857333333333335e-05, + "loss": 1.281063232421875, + "step": 557400 + }, + { + "epoch": 74.33333333333333, + "grad_norm": 0.8477702140808105, + "learning_rate": 1.2850666666666667e-05, + "loss": 1.2849333190917969, + "step": 557500 + }, + { + "epoch": 74.34666666666666, + "grad_norm": 0.9036483764648438, + "learning_rate": 1.2844000000000001e-05, + "loss": 1.2832469177246093, + "step": 557600 + }, + { + "epoch": 74.36, + "grad_norm": 0.8794974684715271, + "learning_rate": 1.2837333333333335e-05, + "loss": 1.2776331329345703, + "step": 557700 + }, + { + "epoch": 74.37333333333333, + "grad_norm": 0.9200766682624817, + "learning_rate": 1.2830666666666669e-05, + "loss": 1.2813546752929688, + "step": 557800 + }, + { + "epoch": 74.38666666666667, + "grad_norm": 0.8847201466560364, + "learning_rate": 1.2824e-05, + "loss": 1.2843760681152343, + "step": 557900 + }, + { + "epoch": 74.4, + "grad_norm": 0.880175769329071, + "learning_rate": 1.2817333333333333e-05, + "loss": 1.287875213623047, + "step": 558000 + }, + { + "epoch": 74.41333333333333, + "grad_norm": 0.8858283162117004, + "learning_rate": 1.2810666666666667e-05, + "loss": 1.2829354858398438, + "step": 558100 + }, + { + "epoch": 74.42666666666666, + "grad_norm": 0.8578990697860718, + "learning_rate": 1.2804e-05, + "loss": 1.2892631530761718, + "step": 558200 + }, + { + "epoch": 74.44, + "grad_norm": 0.9900735020637512, + "learning_rate": 1.2797333333333334e-05, + "loss": 1.2847103881835937, + "step": 558300 + }, + { + "epoch": 74.45333333333333, + "grad_norm": 0.8830659985542297, + "learning_rate": 1.2790666666666668e-05, + "loss": 1.2800477600097657, + "step": 558400 + }, + { + "epoch": 74.46666666666667, + "grad_norm": 0.8871668577194214, + "learning_rate": 1.2784000000000002e-05, + "loss": 1.284095001220703, + "step": 558500 + }, + { + "epoch": 74.48, + "grad_norm": 0.8544827103614807, + "learning_rate": 1.2777333333333332e-05, + "loss": 1.2865316772460937, + "step": 558600 + }, + { + "epoch": 74.49333333333334, + "grad_norm": 0.900020956993103, + "learning_rate": 1.2770666666666666e-05, + "loss": 1.2850057983398437, + "step": 558700 + }, + { + "epoch": 74.50666666666666, + "grad_norm": 0.867059051990509, + "learning_rate": 1.2764066666666669e-05, + "loss": 1.2903533935546876, + "step": 558800 + }, + { + "epoch": 74.52, + "grad_norm": 0.8870203495025635, + "learning_rate": 1.27574e-05, + "loss": 1.287705535888672, + "step": 558900 + }, + { + "epoch": 74.53333333333333, + "grad_norm": 0.9314866662025452, + "learning_rate": 1.2750733333333333e-05, + "loss": 1.28730224609375, + "step": 559000 + }, + { + "epoch": 74.54666666666667, + "grad_norm": 0.8612186908721924, + "learning_rate": 1.2744066666666669e-05, + "loss": 1.289891815185547, + "step": 559100 + }, + { + "epoch": 74.56, + "grad_norm": 0.899004340171814, + "learning_rate": 1.27374e-05, + "loss": 1.2894015502929688, + "step": 559200 + }, + { + "epoch": 74.57333333333334, + "grad_norm": 0.8479779958724976, + "learning_rate": 1.2730733333333333e-05, + "loss": 1.2877230834960938, + "step": 559300 + }, + { + "epoch": 74.58666666666667, + "grad_norm": 0.8701773285865784, + "learning_rate": 1.2724066666666667e-05, + "loss": 1.2875765991210937, + "step": 559400 + }, + { + "epoch": 74.6, + "grad_norm": 0.9275473356246948, + "learning_rate": 1.2717400000000001e-05, + "loss": 1.2902964782714843, + "step": 559500 + }, + { + "epoch": 74.61333333333333, + "grad_norm": 0.8632954359054565, + "learning_rate": 1.2710733333333334e-05, + "loss": 1.292191162109375, + "step": 559600 + }, + { + "epoch": 74.62666666666667, + "grad_norm": 0.9471471905708313, + "learning_rate": 1.2704066666666667e-05, + "loss": 1.2906411743164063, + "step": 559700 + }, + { + "epoch": 74.64, + "grad_norm": 0.949734091758728, + "learning_rate": 1.2697400000000001e-05, + "loss": 1.2944467163085938, + "step": 559800 + }, + { + "epoch": 74.65333333333334, + "grad_norm": 0.8871404528617859, + "learning_rate": 1.2690733333333335e-05, + "loss": 1.2892448425292968, + "step": 559900 + }, + { + "epoch": 74.66666666666667, + "grad_norm": 0.8793107271194458, + "learning_rate": 1.2684066666666666e-05, + "loss": 1.2894142150878907, + "step": 560000 + }, + { + "epoch": 74.68, + "grad_norm": 0.9287523031234741, + "learning_rate": 1.26774e-05, + "loss": 1.2898847961425781, + "step": 560100 + }, + { + "epoch": 74.69333333333333, + "grad_norm": 0.9169420599937439, + "learning_rate": 1.2670733333333334e-05, + "loss": 1.2945254516601563, + "step": 560200 + }, + { + "epoch": 74.70666666666666, + "grad_norm": 0.9196577668190002, + "learning_rate": 1.2664066666666668e-05, + "loss": 1.2968296813964844, + "step": 560300 + }, + { + "epoch": 74.72, + "grad_norm": 0.8801164031028748, + "learning_rate": 1.26574e-05, + "loss": 1.2895684814453126, + "step": 560400 + }, + { + "epoch": 74.73333333333333, + "grad_norm": 0.9066420793533325, + "learning_rate": 1.2650733333333334e-05, + "loss": 1.2975363159179687, + "step": 560500 + }, + { + "epoch": 74.74666666666667, + "grad_norm": 0.8789073824882507, + "learning_rate": 1.2644066666666668e-05, + "loss": 1.2992245483398437, + "step": 560600 + }, + { + "epoch": 74.76, + "grad_norm": 0.8771540522575378, + "learning_rate": 1.2637399999999999e-05, + "loss": 1.2950447082519532, + "step": 560700 + }, + { + "epoch": 74.77333333333333, + "grad_norm": 0.9482132196426392, + "learning_rate": 1.2630800000000001e-05, + "loss": 1.2989950561523438, + "step": 560800 + }, + { + "epoch": 74.78666666666666, + "grad_norm": 0.9016578793525696, + "learning_rate": 1.2624133333333335e-05, + "loss": 1.2909823608398439, + "step": 560900 + }, + { + "epoch": 74.8, + "grad_norm": 0.9523131847381592, + "learning_rate": 1.2617466666666666e-05, + "loss": 1.2979310607910157, + "step": 561000 + }, + { + "epoch": 74.81333333333333, + "grad_norm": 0.8999745845794678, + "learning_rate": 1.26108e-05, + "loss": 1.2966058349609375, + "step": 561100 + }, + { + "epoch": 74.82666666666667, + "grad_norm": 0.8210212588310242, + "learning_rate": 1.2604133333333335e-05, + "loss": 1.297114715576172, + "step": 561200 + }, + { + "epoch": 74.84, + "grad_norm": 0.8882796764373779, + "learning_rate": 1.259746666666667e-05, + "loss": 1.2930776977539062, + "step": 561300 + }, + { + "epoch": 74.85333333333334, + "grad_norm": 0.8462830185890198, + "learning_rate": 1.25908e-05, + "loss": 1.2994015502929688, + "step": 561400 + }, + { + "epoch": 74.86666666666666, + "grad_norm": 0.9026128649711609, + "learning_rate": 1.2584133333333334e-05, + "loss": 1.29409912109375, + "step": 561500 + }, + { + "epoch": 74.88, + "grad_norm": 0.9389071464538574, + "learning_rate": 1.2577466666666668e-05, + "loss": 1.2977705383300782, + "step": 561600 + }, + { + "epoch": 74.89333333333333, + "grad_norm": 0.9085119366645813, + "learning_rate": 1.25708e-05, + "loss": 1.296661376953125, + "step": 561700 + }, + { + "epoch": 74.90666666666667, + "grad_norm": 1.0114595890045166, + "learning_rate": 1.2564133333333334e-05, + "loss": 1.2983500671386718, + "step": 561800 + }, + { + "epoch": 74.92, + "grad_norm": 0.8648547530174255, + "learning_rate": 1.2557466666666668e-05, + "loss": 1.2987898254394532, + "step": 561900 + }, + { + "epoch": 74.93333333333334, + "grad_norm": 0.9071376323699951, + "learning_rate": 1.2550800000000002e-05, + "loss": 1.295235137939453, + "step": 562000 + }, + { + "epoch": 74.94666666666667, + "grad_norm": 0.8965473175048828, + "learning_rate": 1.2544133333333332e-05, + "loss": 1.3004685974121093, + "step": 562100 + }, + { + "epoch": 74.96, + "grad_norm": 0.8977342844009399, + "learning_rate": 1.2537466666666666e-05, + "loss": 1.297232666015625, + "step": 562200 + }, + { + "epoch": 74.97333333333333, + "grad_norm": 0.9045539498329163, + "learning_rate": 1.25308e-05, + "loss": 1.298996124267578, + "step": 562300 + }, + { + "epoch": 74.98666666666666, + "grad_norm": 0.8950331807136536, + "learning_rate": 1.2524133333333334e-05, + "loss": 1.2971505737304687, + "step": 562400 + }, + { + "epoch": 75.0, + "grad_norm": 0.8777759671211243, + "learning_rate": 1.2517466666666667e-05, + "loss": 1.2992008972167968, + "step": 562500 + }, + { + "epoch": 75.01333333333334, + "grad_norm": 0.8952645063400269, + "learning_rate": 1.25108e-05, + "loss": 1.2640491485595704, + "step": 562600 + }, + { + "epoch": 75.02666666666667, + "grad_norm": 0.877943217754364, + "learning_rate": 1.2504133333333335e-05, + "loss": 1.2647196197509765, + "step": 562700 + }, + { + "epoch": 75.04, + "grad_norm": 0.8919233083724976, + "learning_rate": 1.2497466666666667e-05, + "loss": 1.2628135681152344, + "step": 562800 + }, + { + "epoch": 75.05333333333333, + "grad_norm": 0.8733011484146118, + "learning_rate": 1.2490866666666668e-05, + "loss": 1.2628070831298828, + "step": 562900 + }, + { + "epoch": 75.06666666666666, + "grad_norm": 0.9152896404266357, + "learning_rate": 1.24842e-05, + "loss": 1.264164352416992, + "step": 563000 + }, + { + "epoch": 75.08, + "grad_norm": 0.8281626105308533, + "learning_rate": 1.2477533333333334e-05, + "loss": 1.2650759887695313, + "step": 563100 + }, + { + "epoch": 75.09333333333333, + "grad_norm": 0.8916683197021484, + "learning_rate": 1.2470866666666666e-05, + "loss": 1.2685887145996093, + "step": 563200 + }, + { + "epoch": 75.10666666666667, + "grad_norm": 0.9115118980407715, + "learning_rate": 1.2464200000000002e-05, + "loss": 1.272508544921875, + "step": 563300 + }, + { + "epoch": 75.12, + "grad_norm": 0.8884676098823547, + "learning_rate": 1.2457533333333334e-05, + "loss": 1.2687050628662109, + "step": 563400 + }, + { + "epoch": 75.13333333333334, + "grad_norm": 0.8922853469848633, + "learning_rate": 1.2450866666666668e-05, + "loss": 1.2676511383056641, + "step": 563500 + }, + { + "epoch": 75.14666666666666, + "grad_norm": 0.8890056610107422, + "learning_rate": 1.24442e-05, + "loss": 1.2675907135009765, + "step": 563600 + }, + { + "epoch": 75.16, + "grad_norm": 0.8995161652565002, + "learning_rate": 1.2437533333333334e-05, + "loss": 1.2708394622802734, + "step": 563700 + }, + { + "epoch": 75.17333333333333, + "grad_norm": 0.8850069046020508, + "learning_rate": 1.2430866666666666e-05, + "loss": 1.268143768310547, + "step": 563800 + }, + { + "epoch": 75.18666666666667, + "grad_norm": 0.8508411645889282, + "learning_rate": 1.24242e-05, + "loss": 1.2690723419189454, + "step": 563900 + }, + { + "epoch": 75.2, + "grad_norm": 0.8832269310951233, + "learning_rate": 1.2417533333333334e-05, + "loss": 1.2709259033203124, + "step": 564000 + }, + { + "epoch": 75.21333333333334, + "grad_norm": 0.8733813762664795, + "learning_rate": 1.2410866666666668e-05, + "loss": 1.2706985473632812, + "step": 564100 + }, + { + "epoch": 75.22666666666667, + "grad_norm": 0.8645262122154236, + "learning_rate": 1.24042e-05, + "loss": 1.27591796875, + "step": 564200 + }, + { + "epoch": 75.24, + "grad_norm": 0.8740404844284058, + "learning_rate": 1.2397533333333335e-05, + "loss": 1.2723672485351563, + "step": 564300 + }, + { + "epoch": 75.25333333333333, + "grad_norm": 0.8905038833618164, + "learning_rate": 1.2390866666666667e-05, + "loss": 1.2685739135742187, + "step": 564400 + }, + { + "epoch": 75.26666666666667, + "grad_norm": 0.8788304328918457, + "learning_rate": 1.23842e-05, + "loss": 1.275366973876953, + "step": 564500 + }, + { + "epoch": 75.28, + "grad_norm": 0.9056509733200073, + "learning_rate": 1.2377533333333335e-05, + "loss": 1.2775337982177735, + "step": 564600 + }, + { + "epoch": 75.29333333333334, + "grad_norm": 0.900590181350708, + "learning_rate": 1.2370866666666667e-05, + "loss": 1.2763518524169921, + "step": 564700 + }, + { + "epoch": 75.30666666666667, + "grad_norm": 0.8497269153594971, + "learning_rate": 1.2364200000000001e-05, + "loss": 1.273313980102539, + "step": 564800 + }, + { + "epoch": 75.32, + "grad_norm": 0.9780153036117554, + "learning_rate": 1.2357600000000002e-05, + "loss": 1.2757484436035156, + "step": 564900 + }, + { + "epoch": 75.33333333333333, + "grad_norm": 0.9048566818237305, + "learning_rate": 1.2350933333333334e-05, + "loss": 1.2719178771972657, + "step": 565000 + }, + { + "epoch": 75.34666666666666, + "grad_norm": 0.8986741900444031, + "learning_rate": 1.2344266666666668e-05, + "loss": 1.2778455352783202, + "step": 565100 + }, + { + "epoch": 75.36, + "grad_norm": 0.8905960321426392, + "learning_rate": 1.23376e-05, + "loss": 1.2795767974853516, + "step": 565200 + }, + { + "epoch": 75.37333333333333, + "grad_norm": 0.9009892344474792, + "learning_rate": 1.2330933333333334e-05, + "loss": 1.2813603210449218, + "step": 565300 + }, + { + "epoch": 75.38666666666667, + "grad_norm": 0.8851236701011658, + "learning_rate": 1.2324266666666666e-05, + "loss": 1.2804205322265625, + "step": 565400 + }, + { + "epoch": 75.4, + "grad_norm": 0.8907919526100159, + "learning_rate": 1.23176e-05, + "loss": 1.2816227722167968, + "step": 565500 + }, + { + "epoch": 75.41333333333333, + "grad_norm": 0.8697381019592285, + "learning_rate": 1.2310933333333334e-05, + "loss": 1.2802578735351562, + "step": 565600 + }, + { + "epoch": 75.42666666666666, + "grad_norm": 0.9782188534736633, + "learning_rate": 1.2304266666666667e-05, + "loss": 1.2815553283691405, + "step": 565700 + }, + { + "epoch": 75.44, + "grad_norm": 0.9227743744850159, + "learning_rate": 1.22976e-05, + "loss": 1.2832655334472656, + "step": 565800 + }, + { + "epoch": 75.45333333333333, + "grad_norm": 0.903657078742981, + "learning_rate": 1.2290933333333333e-05, + "loss": 1.2772044372558593, + "step": 565900 + }, + { + "epoch": 75.46666666666667, + "grad_norm": 0.8705148696899414, + "learning_rate": 1.2284266666666667e-05, + "loss": 1.28025146484375, + "step": 566000 + }, + { + "epoch": 75.48, + "grad_norm": 0.8651654720306396, + "learning_rate": 1.22776e-05, + "loss": 1.280309600830078, + "step": 566100 + }, + { + "epoch": 75.49333333333334, + "grad_norm": 0.8842359185218811, + "learning_rate": 1.2270933333333335e-05, + "loss": 1.2774700927734375, + "step": 566200 + }, + { + "epoch": 75.50666666666666, + "grad_norm": 0.8937225341796875, + "learning_rate": 1.2264266666666667e-05, + "loss": 1.2816136169433594, + "step": 566300 + }, + { + "epoch": 75.52, + "grad_norm": 0.9345490336418152, + "learning_rate": 1.2257600000000001e-05, + "loss": 1.2842210388183595, + "step": 566400 + }, + { + "epoch": 75.53333333333333, + "grad_norm": 0.859245777130127, + "learning_rate": 1.2250933333333333e-05, + "loss": 1.2751191711425782, + "step": 566500 + }, + { + "epoch": 75.54666666666667, + "grad_norm": 0.9067889451980591, + "learning_rate": 1.2244266666666667e-05, + "loss": 1.2782907104492187, + "step": 566600 + }, + { + "epoch": 75.56, + "grad_norm": 0.9356161952018738, + "learning_rate": 1.2237600000000001e-05, + "loss": 1.2806317138671874, + "step": 566700 + }, + { + "epoch": 75.57333333333334, + "grad_norm": 0.9229298830032349, + "learning_rate": 1.2230933333333335e-05, + "loss": 1.2850361633300782, + "step": 566800 + }, + { + "epoch": 75.58666666666667, + "grad_norm": 0.9154577851295471, + "learning_rate": 1.2224333333333334e-05, + "loss": 1.2825677490234375, + "step": 566900 + }, + { + "epoch": 75.6, + "grad_norm": 0.9192464351654053, + "learning_rate": 1.2217666666666668e-05, + "loss": 1.2844052124023437, + "step": 567000 + }, + { + "epoch": 75.61333333333333, + "grad_norm": 0.8860438466072083, + "learning_rate": 1.2211e-05, + "loss": 1.2842628479003906, + "step": 567100 + }, + { + "epoch": 75.62666666666667, + "grad_norm": 0.9283733367919922, + "learning_rate": 1.2204333333333334e-05, + "loss": 1.2807681274414062, + "step": 567200 + }, + { + "epoch": 75.64, + "grad_norm": 0.9022039771080017, + "learning_rate": 1.2197666666666667e-05, + "loss": 1.2847116088867188, + "step": 567300 + }, + { + "epoch": 75.65333333333334, + "grad_norm": 0.9383234977722168, + "learning_rate": 1.2191e-05, + "loss": 1.2842823791503906, + "step": 567400 + }, + { + "epoch": 75.66666666666667, + "grad_norm": 0.8987548351287842, + "learning_rate": 1.2184333333333333e-05, + "loss": 1.2830416870117187, + "step": 567500 + }, + { + "epoch": 75.68, + "grad_norm": 0.9250150918960571, + "learning_rate": 1.2177666666666669e-05, + "loss": 1.2888677978515626, + "step": 567600 + }, + { + "epoch": 75.69333333333333, + "grad_norm": 0.8937551975250244, + "learning_rate": 1.2171000000000001e-05, + "loss": 1.2843814086914063, + "step": 567700 + }, + { + "epoch": 75.70666666666666, + "grad_norm": 0.93442302942276, + "learning_rate": 1.2164333333333335e-05, + "loss": 1.2801531982421874, + "step": 567800 + }, + { + "epoch": 75.72, + "grad_norm": 0.9443467855453491, + "learning_rate": 1.2157666666666667e-05, + "loss": 1.2907289123535157, + "step": 567900 + }, + { + "epoch": 75.73333333333333, + "grad_norm": 0.9479007124900818, + "learning_rate": 1.2151000000000001e-05, + "loss": 1.2885336303710937, + "step": 568000 + }, + { + "epoch": 75.74666666666667, + "grad_norm": 0.9026948809623718, + "learning_rate": 1.2144333333333333e-05, + "loss": 1.28862060546875, + "step": 568100 + }, + { + "epoch": 75.76, + "grad_norm": 0.9431944489479065, + "learning_rate": 1.2137666666666667e-05, + "loss": 1.2903639221191405, + "step": 568200 + }, + { + "epoch": 75.77333333333333, + "grad_norm": 0.8847748637199402, + "learning_rate": 1.2131000000000001e-05, + "loss": 1.2831291198730468, + "step": 568300 + }, + { + "epoch": 75.78666666666666, + "grad_norm": 0.9042606949806213, + "learning_rate": 1.2124333333333334e-05, + "loss": 1.2880831909179689, + "step": 568400 + }, + { + "epoch": 75.8, + "grad_norm": 0.8872798085212708, + "learning_rate": 1.2117666666666667e-05, + "loss": 1.289575958251953, + "step": 568500 + }, + { + "epoch": 75.81333333333333, + "grad_norm": 0.8426007628440857, + "learning_rate": 1.2111e-05, + "loss": 1.2929600524902343, + "step": 568600 + }, + { + "epoch": 75.82666666666667, + "grad_norm": 0.8785552978515625, + "learning_rate": 1.2104333333333334e-05, + "loss": 1.2918893432617187, + "step": 568700 + }, + { + "epoch": 75.84, + "grad_norm": 0.8560172915458679, + "learning_rate": 1.2097666666666668e-05, + "loss": 1.2879776000976562, + "step": 568800 + }, + { + "epoch": 75.85333333333334, + "grad_norm": 0.9080483317375183, + "learning_rate": 1.2091000000000002e-05, + "loss": 1.289279022216797, + "step": 568900 + }, + { + "epoch": 75.86666666666666, + "grad_norm": 0.8898365497589111, + "learning_rate": 1.20844e-05, + "loss": 1.2897042846679687, + "step": 569000 + }, + { + "epoch": 75.88, + "grad_norm": 0.95564204454422, + "learning_rate": 1.2077733333333335e-05, + "loss": 1.2889401245117187, + "step": 569100 + }, + { + "epoch": 75.89333333333333, + "grad_norm": 0.8454336524009705, + "learning_rate": 1.2071066666666667e-05, + "loss": 1.293185272216797, + "step": 569200 + }, + { + "epoch": 75.90666666666667, + "grad_norm": 0.9560728669166565, + "learning_rate": 1.2064400000000001e-05, + "loss": 1.2893829345703125, + "step": 569300 + }, + { + "epoch": 75.92, + "grad_norm": 0.9126923084259033, + "learning_rate": 1.2057733333333333e-05, + "loss": 1.2923159790039063, + "step": 569400 + }, + { + "epoch": 75.93333333333334, + "grad_norm": 0.8590043783187866, + "learning_rate": 1.2051066666666667e-05, + "loss": 1.29072265625, + "step": 569500 + }, + { + "epoch": 75.94666666666667, + "grad_norm": 0.8858271241188049, + "learning_rate": 1.20444e-05, + "loss": 1.2948809814453126, + "step": 569600 + }, + { + "epoch": 75.96, + "grad_norm": 0.9448450803756714, + "learning_rate": 1.2037733333333333e-05, + "loss": 1.2897013854980468, + "step": 569700 + }, + { + "epoch": 75.97333333333333, + "grad_norm": 0.8658963441848755, + "learning_rate": 1.2031066666666667e-05, + "loss": 1.2937811279296876, + "step": 569800 + }, + { + "epoch": 75.98666666666666, + "grad_norm": 0.9109137654304504, + "learning_rate": 1.2024400000000001e-05, + "loss": 1.2949751281738282, + "step": 569900 + }, + { + "epoch": 76.0, + "grad_norm": 0.90373694896698, + "learning_rate": 1.2017733333333334e-05, + "loss": 1.2907695007324218, + "step": 570000 + }, + { + "epoch": 76.01333333333334, + "grad_norm": 0.9023296236991882, + "learning_rate": 1.2011066666666668e-05, + "loss": 1.2564220428466797, + "step": 570100 + }, + { + "epoch": 76.02666666666667, + "grad_norm": 0.9075928926467896, + "learning_rate": 1.20044e-05, + "loss": 1.2600310516357422, + "step": 570200 + }, + { + "epoch": 76.04, + "grad_norm": 0.8993645310401917, + "learning_rate": 1.1997733333333334e-05, + "loss": 1.2612214660644532, + "step": 570300 + }, + { + "epoch": 76.05333333333333, + "grad_norm": 0.8090634942054749, + "learning_rate": 1.1991066666666668e-05, + "loss": 1.2595449829101562, + "step": 570400 + }, + { + "epoch": 76.06666666666666, + "grad_norm": 0.8265924453735352, + "learning_rate": 1.1984400000000002e-05, + "loss": 1.260252914428711, + "step": 570500 + }, + { + "epoch": 76.08, + "grad_norm": 0.9115302562713623, + "learning_rate": 1.1977733333333334e-05, + "loss": 1.2610408020019532, + "step": 570600 + }, + { + "epoch": 76.09333333333333, + "grad_norm": 0.9297177195549011, + "learning_rate": 1.1971066666666668e-05, + "loss": 1.2638664245605469, + "step": 570700 + }, + { + "epoch": 76.10666666666667, + "grad_norm": 0.8523125648498535, + "learning_rate": 1.19644e-05, + "loss": 1.2649871063232423, + "step": 570800 + }, + { + "epoch": 76.12, + "grad_norm": 0.9545742869377136, + "learning_rate": 1.1957733333333334e-05, + "loss": 1.2625828552246094, + "step": 570900 + }, + { + "epoch": 76.13333333333334, + "grad_norm": 0.8487697839736938, + "learning_rate": 1.1951133333333333e-05, + "loss": 1.2658775329589844, + "step": 571000 + }, + { + "epoch": 76.14666666666666, + "grad_norm": 0.9032588601112366, + "learning_rate": 1.1944466666666667e-05, + "loss": 1.2628345489501953, + "step": 571100 + }, + { + "epoch": 76.16, + "grad_norm": 0.8663509488105774, + "learning_rate": 1.1937800000000001e-05, + "loss": 1.2638357543945313, + "step": 571200 + }, + { + "epoch": 76.17333333333333, + "grad_norm": 0.8065935373306274, + "learning_rate": 1.1931133333333335e-05, + "loss": 1.2654532623291015, + "step": 571300 + }, + { + "epoch": 76.18666666666667, + "grad_norm": 0.8923590779304504, + "learning_rate": 1.1924466666666667e-05, + "loss": 1.2625431823730469, + "step": 571400 + }, + { + "epoch": 76.2, + "grad_norm": 0.9256909489631653, + "learning_rate": 1.1917800000000001e-05, + "loss": 1.2661501312255858, + "step": 571500 + }, + { + "epoch": 76.21333333333334, + "grad_norm": 0.8839671015739441, + "learning_rate": 1.1911133333333334e-05, + "loss": 1.2691407775878907, + "step": 571600 + }, + { + "epoch": 76.22666666666667, + "grad_norm": 0.9196544289588928, + "learning_rate": 1.1904466666666666e-05, + "loss": 1.2661520385742187, + "step": 571700 + }, + { + "epoch": 76.24, + "grad_norm": 0.8353877663612366, + "learning_rate": 1.18978e-05, + "loss": 1.2685884094238282, + "step": 571800 + }, + { + "epoch": 76.25333333333333, + "grad_norm": 0.8533715605735779, + "learning_rate": 1.1891133333333334e-05, + "loss": 1.2692129516601562, + "step": 571900 + }, + { + "epoch": 76.26666666666667, + "grad_norm": 0.8897333145141602, + "learning_rate": 1.1884466666666668e-05, + "loss": 1.2691090393066407, + "step": 572000 + }, + { + "epoch": 76.28, + "grad_norm": 0.90340656042099, + "learning_rate": 1.18778e-05, + "loss": 1.2702519989013672, + "step": 572100 + }, + { + "epoch": 76.29333333333334, + "grad_norm": 0.8940246105194092, + "learning_rate": 1.1871133333333334e-05, + "loss": 1.2684158325195312, + "step": 572200 + }, + { + "epoch": 76.30666666666667, + "grad_norm": 0.8823217153549194, + "learning_rate": 1.1864466666666666e-05, + "loss": 1.2694771575927735, + "step": 572300 + }, + { + "epoch": 76.32, + "grad_norm": 0.8801313638687134, + "learning_rate": 1.18578e-05, + "loss": 1.2695850372314452, + "step": 572400 + }, + { + "epoch": 76.33333333333333, + "grad_norm": 0.8763577342033386, + "learning_rate": 1.1851133333333334e-05, + "loss": 1.2703809356689453, + "step": 572500 + }, + { + "epoch": 76.34666666666666, + "grad_norm": 0.9414470195770264, + "learning_rate": 1.1844466666666668e-05, + "loss": 1.2732679748535156, + "step": 572600 + }, + { + "epoch": 76.36, + "grad_norm": 0.918465256690979, + "learning_rate": 1.18378e-05, + "loss": 1.2702081298828125, + "step": 572700 + }, + { + "epoch": 76.37333333333333, + "grad_norm": 0.8856133222579956, + "learning_rate": 1.1831133333333334e-05, + "loss": 1.2735169219970703, + "step": 572800 + }, + { + "epoch": 76.38666666666667, + "grad_norm": 0.9244083166122437, + "learning_rate": 1.1824466666666667e-05, + "loss": 1.273417739868164, + "step": 572900 + }, + { + "epoch": 76.4, + "grad_norm": 0.8916839957237244, + "learning_rate": 1.1817866666666667e-05, + "loss": 1.2737143707275391, + "step": 573000 + }, + { + "epoch": 76.41333333333333, + "grad_norm": 0.8814034461975098, + "learning_rate": 1.18112e-05, + "loss": 1.27196533203125, + "step": 573100 + }, + { + "epoch": 76.42666666666666, + "grad_norm": 0.8989616632461548, + "learning_rate": 1.1804533333333334e-05, + "loss": 1.2706958770751953, + "step": 573200 + }, + { + "epoch": 76.44, + "grad_norm": 0.8440143465995789, + "learning_rate": 1.1797866666666668e-05, + "loss": 1.271722946166992, + "step": 573300 + }, + { + "epoch": 76.45333333333333, + "grad_norm": 0.9400561451911926, + "learning_rate": 1.1791200000000002e-05, + "loss": 1.27082763671875, + "step": 573400 + }, + { + "epoch": 76.46666666666667, + "grad_norm": 0.9104871153831482, + "learning_rate": 1.1784533333333334e-05, + "loss": 1.274063720703125, + "step": 573500 + }, + { + "epoch": 76.48, + "grad_norm": 0.9427663087844849, + "learning_rate": 1.1777866666666668e-05, + "loss": 1.2744304656982421, + "step": 573600 + }, + { + "epoch": 76.49333333333334, + "grad_norm": 0.930120587348938, + "learning_rate": 1.17712e-05, + "loss": 1.2735147857666016, + "step": 573700 + }, + { + "epoch": 76.50666666666666, + "grad_norm": 0.8373743891716003, + "learning_rate": 1.1764533333333334e-05, + "loss": 1.2727003479003907, + "step": 573800 + }, + { + "epoch": 76.52, + "grad_norm": 0.8900668621063232, + "learning_rate": 1.1757866666666666e-05, + "loss": 1.278759994506836, + "step": 573900 + }, + { + "epoch": 76.53333333333333, + "grad_norm": 0.9131837487220764, + "learning_rate": 1.1751200000000002e-05, + "loss": 1.279442596435547, + "step": 574000 + }, + { + "epoch": 76.54666666666667, + "grad_norm": 0.8976189494132996, + "learning_rate": 1.1744533333333334e-05, + "loss": 1.2741080474853517, + "step": 574100 + }, + { + "epoch": 76.56, + "grad_norm": 0.8666889071464539, + "learning_rate": 1.1737866666666668e-05, + "loss": 1.2774742126464844, + "step": 574200 + }, + { + "epoch": 76.57333333333334, + "grad_norm": 0.8947174549102783, + "learning_rate": 1.17312e-05, + "loss": 1.2774790954589843, + "step": 574300 + }, + { + "epoch": 76.58666666666667, + "grad_norm": 0.9052897691726685, + "learning_rate": 1.1724533333333333e-05, + "loss": 1.2790341949462891, + "step": 574400 + }, + { + "epoch": 76.6, + "grad_norm": 0.8981863260269165, + "learning_rate": 1.1717866666666667e-05, + "loss": 1.2725530242919922, + "step": 574500 + }, + { + "epoch": 76.61333333333333, + "grad_norm": 0.8950761556625366, + "learning_rate": 1.17112e-05, + "loss": 1.277298583984375, + "step": 574600 + }, + { + "epoch": 76.62666666666667, + "grad_norm": 0.9243502616882324, + "learning_rate": 1.1704533333333335e-05, + "loss": 1.279012222290039, + "step": 574700 + }, + { + "epoch": 76.64, + "grad_norm": 0.9470920562744141, + "learning_rate": 1.1697866666666667e-05, + "loss": 1.2796407318115235, + "step": 574800 + }, + { + "epoch": 76.65333333333334, + "grad_norm": 0.9210641980171204, + "learning_rate": 1.16912e-05, + "loss": 1.27352294921875, + "step": 574900 + }, + { + "epoch": 76.66666666666667, + "grad_norm": 0.9046253561973572, + "learning_rate": 1.1684600000000002e-05, + "loss": 1.2836494445800781, + "step": 575000 + }, + { + "epoch": 76.68, + "grad_norm": 0.8648155927658081, + "learning_rate": 1.1677933333333334e-05, + "loss": 1.283481903076172, + "step": 575100 + }, + { + "epoch": 76.69333333333333, + "grad_norm": 0.9311123490333557, + "learning_rate": 1.1671266666666668e-05, + "loss": 1.2783139801025392, + "step": 575200 + }, + { + "epoch": 76.70666666666666, + "grad_norm": 0.913091242313385, + "learning_rate": 1.16646e-05, + "loss": 1.2771622467041015, + "step": 575300 + }, + { + "epoch": 76.72, + "grad_norm": 0.8883966207504272, + "learning_rate": 1.1657933333333332e-05, + "loss": 1.2791126251220704, + "step": 575400 + }, + { + "epoch": 76.73333333333333, + "grad_norm": 0.9038500189781189, + "learning_rate": 1.1651266666666668e-05, + "loss": 1.2827508544921875, + "step": 575500 + }, + { + "epoch": 76.74666666666667, + "grad_norm": 0.8970502614974976, + "learning_rate": 1.16446e-05, + "loss": 1.2832752990722656, + "step": 575600 + }, + { + "epoch": 76.76, + "grad_norm": 0.9356183409690857, + "learning_rate": 1.1637933333333334e-05, + "loss": 1.2858283996582032, + "step": 575700 + }, + { + "epoch": 76.77333333333333, + "grad_norm": 0.8676143288612366, + "learning_rate": 1.1631266666666667e-05, + "loss": 1.2802749633789063, + "step": 575800 + }, + { + "epoch": 76.78666666666666, + "grad_norm": 0.901439368724823, + "learning_rate": 1.16246e-05, + "loss": 1.279897689819336, + "step": 575900 + }, + { + "epoch": 76.8, + "grad_norm": 0.9266265630722046, + "learning_rate": 1.1617933333333333e-05, + "loss": 1.2846217346191406, + "step": 576000 + }, + { + "epoch": 76.81333333333333, + "grad_norm": 0.8446720838546753, + "learning_rate": 1.1611266666666667e-05, + "loss": 1.28507568359375, + "step": 576100 + }, + { + "epoch": 76.82666666666667, + "grad_norm": 0.9122141599655151, + "learning_rate": 1.16046e-05, + "loss": 1.2835508728027343, + "step": 576200 + }, + { + "epoch": 76.84, + "grad_norm": 0.9296014308929443, + "learning_rate": 1.1597933333333335e-05, + "loss": 1.2806108093261719, + "step": 576300 + }, + { + "epoch": 76.85333333333334, + "grad_norm": 0.9515265226364136, + "learning_rate": 1.1591266666666667e-05, + "loss": 1.2886801147460938, + "step": 576400 + }, + { + "epoch": 76.86666666666666, + "grad_norm": 0.9384329915046692, + "learning_rate": 1.1584600000000001e-05, + "loss": 1.2862442016601563, + "step": 576500 + }, + { + "epoch": 76.88, + "grad_norm": 0.911675214767456, + "learning_rate": 1.1577933333333333e-05, + "loss": 1.2852195739746093, + "step": 576600 + }, + { + "epoch": 76.89333333333333, + "grad_norm": 0.9368600845336914, + "learning_rate": 1.1571266666666667e-05, + "loss": 1.2880644226074218, + "step": 576700 + }, + { + "epoch": 76.90666666666667, + "grad_norm": 0.9342831373214722, + "learning_rate": 1.1564600000000001e-05, + "loss": 1.2856315612792968, + "step": 576800 + }, + { + "epoch": 76.92, + "grad_norm": 0.8949527144432068, + "learning_rate": 1.1557933333333335e-05, + "loss": 1.290764617919922, + "step": 576900 + }, + { + "epoch": 76.93333333333334, + "grad_norm": 0.9204317927360535, + "learning_rate": 1.1551333333333334e-05, + "loss": 1.2894427490234375, + "step": 577000 + }, + { + "epoch": 76.94666666666667, + "grad_norm": 0.9253742098808289, + "learning_rate": 1.1544666666666668e-05, + "loss": 1.2840521240234375, + "step": 577100 + }, + { + "epoch": 76.96, + "grad_norm": 0.9282165765762329, + "learning_rate": 1.1538e-05, + "loss": 1.2856878662109374, + "step": 577200 + }, + { + "epoch": 76.97333333333333, + "grad_norm": 0.8722630143165588, + "learning_rate": 1.1531333333333334e-05, + "loss": 1.2854739379882814, + "step": 577300 + }, + { + "epoch": 76.98666666666666, + "grad_norm": 0.913749098777771, + "learning_rate": 1.1524666666666667e-05, + "loss": 1.2859970092773438, + "step": 577400 + }, + { + "epoch": 77.0, + "grad_norm": 0.961866021156311, + "learning_rate": 1.1518e-05, + "loss": 1.2846250915527344, + "step": 577500 + }, + { + "epoch": 77.01333333333334, + "grad_norm": 0.905587375164032, + "learning_rate": 1.1511333333333334e-05, + "loss": 1.255999755859375, + "step": 577600 + }, + { + "epoch": 77.02666666666667, + "grad_norm": 0.9109494686126709, + "learning_rate": 1.1504666666666668e-05, + "loss": 1.257362823486328, + "step": 577700 + }, + { + "epoch": 77.04, + "grad_norm": 0.8600365519523621, + "learning_rate": 1.1498e-05, + "loss": 1.255925064086914, + "step": 577800 + }, + { + "epoch": 77.05333333333333, + "grad_norm": 0.898125410079956, + "learning_rate": 1.1491333333333335e-05, + "loss": 1.251571273803711, + "step": 577900 + }, + { + "epoch": 77.06666666666666, + "grad_norm": 0.8492289185523987, + "learning_rate": 1.1484666666666667e-05, + "loss": 1.2551496887207032, + "step": 578000 + }, + { + "epoch": 77.08, + "grad_norm": 0.8958540558815002, + "learning_rate": 1.1478e-05, + "loss": 1.2567188262939453, + "step": 578100 + }, + { + "epoch": 77.09333333333333, + "grad_norm": 0.8623022437095642, + "learning_rate": 1.1471333333333333e-05, + "loss": 1.2552345275878907, + "step": 578200 + }, + { + "epoch": 77.10666666666667, + "grad_norm": 0.8635573983192444, + "learning_rate": 1.1464666666666667e-05, + "loss": 1.2586454010009767, + "step": 578300 + }, + { + "epoch": 77.12, + "grad_norm": 0.8765349388122559, + "learning_rate": 1.1458000000000001e-05, + "loss": 1.2600203704833985, + "step": 578400 + }, + { + "epoch": 77.13333333333334, + "grad_norm": 0.862362802028656, + "learning_rate": 1.1451333333333333e-05, + "loss": 1.2597164916992187, + "step": 578500 + }, + { + "epoch": 77.14666666666666, + "grad_norm": 0.910469651222229, + "learning_rate": 1.1444666666666667e-05, + "loss": 1.2607437896728515, + "step": 578600 + }, + { + "epoch": 77.16, + "grad_norm": 0.9068487286567688, + "learning_rate": 1.1438e-05, + "loss": 1.2581224060058593, + "step": 578700 + }, + { + "epoch": 77.17333333333333, + "grad_norm": 0.818719744682312, + "learning_rate": 1.1431333333333334e-05, + "loss": 1.257034454345703, + "step": 578800 + }, + { + "epoch": 77.18666666666667, + "grad_norm": 0.9217579364776611, + "learning_rate": 1.1424666666666668e-05, + "loss": 1.2629297637939454, + "step": 578900 + }, + { + "epoch": 77.2, + "grad_norm": 0.848243772983551, + "learning_rate": 1.1418066666666667e-05, + "loss": 1.2635003662109374, + "step": 579000 + }, + { + "epoch": 77.21333333333334, + "grad_norm": 0.8776289820671082, + "learning_rate": 1.14114e-05, + "loss": 1.2585693359375, + "step": 579100 + }, + { + "epoch": 77.22666666666667, + "grad_norm": 0.9173794388771057, + "learning_rate": 1.1404733333333335e-05, + "loss": 1.2622824859619142, + "step": 579200 + }, + { + "epoch": 77.24, + "grad_norm": 0.873337984085083, + "learning_rate": 1.1398066666666667e-05, + "loss": 1.2653639221191406, + "step": 579300 + }, + { + "epoch": 77.25333333333333, + "grad_norm": 0.9575465321540833, + "learning_rate": 1.13914e-05, + "loss": 1.2643247222900391, + "step": 579400 + }, + { + "epoch": 77.26666666666667, + "grad_norm": 0.8416218161582947, + "learning_rate": 1.1384733333333333e-05, + "loss": 1.2624178314208985, + "step": 579500 + }, + { + "epoch": 77.28, + "grad_norm": 0.9230799674987793, + "learning_rate": 1.1378066666666667e-05, + "loss": 1.2626051330566406, + "step": 579600 + }, + { + "epoch": 77.29333333333334, + "grad_norm": 0.8633724451065063, + "learning_rate": 1.1371400000000001e-05, + "loss": 1.2685257720947265, + "step": 579700 + }, + { + "epoch": 77.30666666666667, + "grad_norm": 0.9460192322731018, + "learning_rate": 1.1364733333333335e-05, + "loss": 1.2646743774414062, + "step": 579800 + }, + { + "epoch": 77.32, + "grad_norm": 0.8928385376930237, + "learning_rate": 1.1358066666666667e-05, + "loss": 1.2659114837646483, + "step": 579900 + }, + { + "epoch": 77.33333333333333, + "grad_norm": 0.8571158051490784, + "learning_rate": 1.1351400000000001e-05, + "loss": 1.2670587921142578, + "step": 580000 + }, + { + "epoch": 77.34666666666666, + "grad_norm": 0.858704686164856, + "learning_rate": 1.1344733333333333e-05, + "loss": 1.2675933837890625, + "step": 580100 + }, + { + "epoch": 77.36, + "grad_norm": 0.9516656398773193, + "learning_rate": 1.1338066666666667e-05, + "loss": 1.2708335876464845, + "step": 580200 + }, + { + "epoch": 77.37333333333333, + "grad_norm": 0.8929257392883301, + "learning_rate": 1.13314e-05, + "loss": 1.265479278564453, + "step": 580300 + }, + { + "epoch": 77.38666666666667, + "grad_norm": 0.912930428981781, + "learning_rate": 1.1324733333333334e-05, + "loss": 1.2636156463623047, + "step": 580400 + }, + { + "epoch": 77.4, + "grad_norm": 0.8615267276763916, + "learning_rate": 1.1318066666666668e-05, + "loss": 1.2651126861572266, + "step": 580500 + }, + { + "epoch": 77.41333333333333, + "grad_norm": 0.8684864640235901, + "learning_rate": 1.1311400000000002e-05, + "loss": 1.2702027130126954, + "step": 580600 + }, + { + "epoch": 77.42666666666666, + "grad_norm": 0.8868072628974915, + "learning_rate": 1.1304733333333334e-05, + "loss": 1.2698739624023438, + "step": 580700 + }, + { + "epoch": 77.44, + "grad_norm": 0.9572634696960449, + "learning_rate": 1.1298066666666666e-05, + "loss": 1.268133544921875, + "step": 580800 + }, + { + "epoch": 77.45333333333333, + "grad_norm": 0.9197629690170288, + "learning_rate": 1.12914e-05, + "loss": 1.2709165954589843, + "step": 580900 + }, + { + "epoch": 77.46666666666667, + "grad_norm": 0.8801963329315186, + "learning_rate": 1.1284733333333334e-05, + "loss": 1.2684906768798827, + "step": 581000 + }, + { + "epoch": 77.48, + "grad_norm": 0.8818572163581848, + "learning_rate": 1.1278133333333333e-05, + "loss": 1.273465576171875, + "step": 581100 + }, + { + "epoch": 77.49333333333334, + "grad_norm": 0.9402119517326355, + "learning_rate": 1.1271466666666667e-05, + "loss": 1.266955108642578, + "step": 581200 + }, + { + "epoch": 77.50666666666666, + "grad_norm": 0.8809628486633301, + "learning_rate": 1.1264800000000001e-05, + "loss": 1.271000289916992, + "step": 581300 + }, + { + "epoch": 77.52, + "grad_norm": 0.9298728108406067, + "learning_rate": 1.1258133333333335e-05, + "loss": 1.2696641540527345, + "step": 581400 + }, + { + "epoch": 77.53333333333333, + "grad_norm": 0.9338729977607727, + "learning_rate": 1.1251466666666667e-05, + "loss": 1.2723861694335938, + "step": 581500 + }, + { + "epoch": 77.54666666666667, + "grad_norm": 0.8930231332778931, + "learning_rate": 1.1244800000000001e-05, + "loss": 1.2670636749267579, + "step": 581600 + }, + { + "epoch": 77.56, + "grad_norm": 0.8689009547233582, + "learning_rate": 1.1238133333333333e-05, + "loss": 1.2678091430664062, + "step": 581700 + }, + { + "epoch": 77.57333333333334, + "grad_norm": 0.8521204590797424, + "learning_rate": 1.1231466666666666e-05, + "loss": 1.2707132720947265, + "step": 581800 + }, + { + "epoch": 77.58666666666667, + "grad_norm": 0.8917391896247864, + "learning_rate": 1.1224800000000001e-05, + "loss": 1.2752569580078126, + "step": 581900 + }, + { + "epoch": 77.6, + "grad_norm": 0.9497755169868469, + "learning_rate": 1.1218133333333334e-05, + "loss": 1.2703166961669923, + "step": 582000 + }, + { + "epoch": 77.61333333333333, + "grad_norm": 0.9635091423988342, + "learning_rate": 1.1211466666666668e-05, + "loss": 1.2678369903564453, + "step": 582100 + }, + { + "epoch": 77.62666666666667, + "grad_norm": 0.9281509518623352, + "learning_rate": 1.12048e-05, + "loss": 1.2707953643798828, + "step": 582200 + }, + { + "epoch": 77.64, + "grad_norm": 0.8660150170326233, + "learning_rate": 1.1198133333333334e-05, + "loss": 1.272255401611328, + "step": 582300 + }, + { + "epoch": 77.65333333333334, + "grad_norm": 0.9285011291503906, + "learning_rate": 1.1191466666666666e-05, + "loss": 1.2756419372558594, + "step": 582400 + }, + { + "epoch": 77.66666666666667, + "grad_norm": 0.932344377040863, + "learning_rate": 1.11848e-05, + "loss": 1.2738219451904298, + "step": 582500 + }, + { + "epoch": 77.68, + "grad_norm": 0.9365657567977905, + "learning_rate": 1.1178133333333334e-05, + "loss": 1.2753623199462891, + "step": 582600 + }, + { + "epoch": 77.69333333333333, + "grad_norm": 0.825846791267395, + "learning_rate": 1.1171466666666668e-05, + "loss": 1.2731678771972657, + "step": 582700 + }, + { + "epoch": 77.70666666666666, + "grad_norm": 0.9342759847640991, + "learning_rate": 1.11648e-05, + "loss": 1.277725067138672, + "step": 582800 + }, + { + "epoch": 77.72, + "grad_norm": 0.9432119131088257, + "learning_rate": 1.1158133333333334e-05, + "loss": 1.2735256958007812, + "step": 582900 + }, + { + "epoch": 77.73333333333333, + "grad_norm": 0.9605401158332825, + "learning_rate": 1.1151466666666666e-05, + "loss": 1.2816490173339843, + "step": 583000 + }, + { + "epoch": 77.74666666666667, + "grad_norm": 0.9029577374458313, + "learning_rate": 1.1144866666666667e-05, + "loss": 1.2802981567382812, + "step": 583100 + }, + { + "epoch": 77.76, + "grad_norm": 0.8637961745262146, + "learning_rate": 1.11382e-05, + "loss": 1.2796761322021484, + "step": 583200 + }, + { + "epoch": 77.77333333333333, + "grad_norm": 0.921112596988678, + "learning_rate": 1.1131533333333333e-05, + "loss": 1.2756118774414062, + "step": 583300 + }, + { + "epoch": 77.78666666666666, + "grad_norm": 0.9237424731254578, + "learning_rate": 1.1124866666666667e-05, + "loss": 1.2745748901367187, + "step": 583400 + }, + { + "epoch": 77.8, + "grad_norm": 0.843678891658783, + "learning_rate": 1.1118200000000001e-05, + "loss": 1.2792215728759766, + "step": 583500 + }, + { + "epoch": 77.81333333333333, + "grad_norm": 0.9343549609184265, + "learning_rate": 1.1111533333333334e-05, + "loss": 1.277459716796875, + "step": 583600 + }, + { + "epoch": 77.82666666666667, + "grad_norm": 0.8938376307487488, + "learning_rate": 1.1104866666666668e-05, + "loss": 1.2799664306640626, + "step": 583700 + }, + { + "epoch": 77.84, + "grad_norm": 0.910925030708313, + "learning_rate": 1.10982e-05, + "loss": 1.280896453857422, + "step": 583800 + }, + { + "epoch": 77.85333333333334, + "grad_norm": 0.8991851806640625, + "learning_rate": 1.1091533333333334e-05, + "loss": 1.2770259857177735, + "step": 583900 + }, + { + "epoch": 77.86666666666666, + "grad_norm": 0.8709640502929688, + "learning_rate": 1.1084866666666668e-05, + "loss": 1.2761578369140625, + "step": 584000 + }, + { + "epoch": 77.88, + "grad_norm": 0.8845403790473938, + "learning_rate": 1.1078200000000002e-05, + "loss": 1.2800413513183593, + "step": 584100 + }, + { + "epoch": 77.89333333333333, + "grad_norm": 0.8760946393013, + "learning_rate": 1.1071533333333334e-05, + "loss": 1.2795198822021485, + "step": 584200 + }, + { + "epoch": 77.90666666666667, + "grad_norm": 0.9131218791007996, + "learning_rate": 1.1064866666666668e-05, + "loss": 1.2759528350830078, + "step": 584300 + }, + { + "epoch": 77.92, + "grad_norm": 0.8943530321121216, + "learning_rate": 1.10582e-05, + "loss": 1.2813719177246095, + "step": 584400 + }, + { + "epoch": 77.93333333333334, + "grad_norm": 0.9106712937355042, + "learning_rate": 1.1051533333333333e-05, + "loss": 1.2769749450683594, + "step": 584500 + }, + { + "epoch": 77.94666666666667, + "grad_norm": 0.9153562188148499, + "learning_rate": 1.1044866666666667e-05, + "loss": 1.2757042694091796, + "step": 584600 + }, + { + "epoch": 77.96, + "grad_norm": 0.9484046697616577, + "learning_rate": 1.10382e-05, + "loss": 1.2819232177734374, + "step": 584700 + }, + { + "epoch": 77.97333333333333, + "grad_norm": 0.9584998488426208, + "learning_rate": 1.1031533333333334e-05, + "loss": 1.2835421752929688, + "step": 584800 + }, + { + "epoch": 77.98666666666666, + "grad_norm": 0.9356921911239624, + "learning_rate": 1.1024866666666667e-05, + "loss": 1.2813420104980469, + "step": 584900 + }, + { + "epoch": 78.0, + "grad_norm": 0.9255989193916321, + "learning_rate": 1.10182e-05, + "loss": 1.2774526977539062, + "step": 585000 + }, + { + "epoch": 78.01333333333334, + "grad_norm": 0.8795908093452454, + "learning_rate": 1.1011600000000001e-05, + "loss": 1.249991455078125, + "step": 585100 + }, + { + "epoch": 78.02666666666667, + "grad_norm": 0.9239431619644165, + "learning_rate": 1.1004933333333334e-05, + "loss": 1.2514543151855468, + "step": 585200 + }, + { + "epoch": 78.04, + "grad_norm": 0.8539057374000549, + "learning_rate": 1.0998266666666668e-05, + "loss": 1.2499234008789062, + "step": 585300 + }, + { + "epoch": 78.05333333333333, + "grad_norm": 0.8485280871391296, + "learning_rate": 1.09916e-05, + "loss": 1.2504238891601562, + "step": 585400 + }, + { + "epoch": 78.06666666666666, + "grad_norm": 0.8902794718742371, + "learning_rate": 1.0984933333333334e-05, + "loss": 1.2511708068847656, + "step": 585500 + }, + { + "epoch": 78.08, + "grad_norm": 0.9052618741989136, + "learning_rate": 1.0978266666666668e-05, + "loss": 1.2486000061035156, + "step": 585600 + }, + { + "epoch": 78.09333333333333, + "grad_norm": 0.8789846897125244, + "learning_rate": 1.09716e-05, + "loss": 1.251748275756836, + "step": 585700 + }, + { + "epoch": 78.10666666666667, + "grad_norm": 0.885184109210968, + "learning_rate": 1.0964933333333334e-05, + "loss": 1.2532960510253905, + "step": 585800 + }, + { + "epoch": 78.12, + "grad_norm": 0.8550071120262146, + "learning_rate": 1.0958266666666666e-05, + "loss": 1.2503804779052734, + "step": 585900 + }, + { + "epoch": 78.13333333333334, + "grad_norm": 0.9323640465736389, + "learning_rate": 1.09516e-05, + "loss": 1.2534485626220704, + "step": 586000 + }, + { + "epoch": 78.14666666666666, + "grad_norm": 0.8850072026252747, + "learning_rate": 1.0944933333333334e-05, + "loss": 1.2556941986083985, + "step": 586100 + }, + { + "epoch": 78.16, + "grad_norm": 0.8399662971496582, + "learning_rate": 1.0938266666666668e-05, + "loss": 1.2542850494384765, + "step": 586200 + }, + { + "epoch": 78.17333333333333, + "grad_norm": 0.919593095779419, + "learning_rate": 1.09316e-05, + "loss": 1.2562599182128906, + "step": 586300 + }, + { + "epoch": 78.18666666666667, + "grad_norm": 0.8908868432044983, + "learning_rate": 1.0924933333333334e-05, + "loss": 1.2563451385498048, + "step": 586400 + }, + { + "epoch": 78.2, + "grad_norm": 0.8848934769630432, + "learning_rate": 1.0918266666666667e-05, + "loss": 1.2524043273925782, + "step": 586500 + }, + { + "epoch": 78.21333333333334, + "grad_norm": 0.8833860158920288, + "learning_rate": 1.09116e-05, + "loss": 1.2593082427978515, + "step": 586600 + }, + { + "epoch": 78.22666666666667, + "grad_norm": 0.8572924733161926, + "learning_rate": 1.0904933333333333e-05, + "loss": 1.2562625885009766, + "step": 586700 + }, + { + "epoch": 78.24, + "grad_norm": 0.8951097726821899, + "learning_rate": 1.0898266666666667e-05, + "loss": 1.2585964965820313, + "step": 586800 + }, + { + "epoch": 78.25333333333333, + "grad_norm": 0.879523515701294, + "learning_rate": 1.0891600000000001e-05, + "loss": 1.2556568908691406, + "step": 586900 + }, + { + "epoch": 78.26666666666667, + "grad_norm": 0.9368571043014526, + "learning_rate": 1.0884933333333335e-05, + "loss": 1.2600704193115235, + "step": 587000 + }, + { + "epoch": 78.28, + "grad_norm": 0.8886348009109497, + "learning_rate": 1.0878333333333334e-05, + "loss": 1.2605961608886718, + "step": 587100 + }, + { + "epoch": 78.29333333333334, + "grad_norm": 0.8580905199050903, + "learning_rate": 1.0871666666666668e-05, + "loss": 1.2552318572998047, + "step": 587200 + }, + { + "epoch": 78.30666666666667, + "grad_norm": 0.9353607296943665, + "learning_rate": 1.0865e-05, + "loss": 1.256221389770508, + "step": 587300 + }, + { + "epoch": 78.32, + "grad_norm": 0.8265605568885803, + "learning_rate": 1.0858333333333334e-05, + "loss": 1.2583871459960938, + "step": 587400 + }, + { + "epoch": 78.33333333333333, + "grad_norm": 0.956251859664917, + "learning_rate": 1.0851666666666666e-05, + "loss": 1.2614502716064453, + "step": 587500 + }, + { + "epoch": 78.34666666666666, + "grad_norm": 0.8545957207679749, + "learning_rate": 1.0845e-05, + "loss": 1.2584918212890626, + "step": 587600 + }, + { + "epoch": 78.36, + "grad_norm": 0.8909661769866943, + "learning_rate": 1.0838333333333334e-05, + "loss": 1.2615117645263672, + "step": 587700 + }, + { + "epoch": 78.37333333333333, + "grad_norm": 0.9129730463027954, + "learning_rate": 1.0831666666666668e-05, + "loss": 1.255586166381836, + "step": 587800 + }, + { + "epoch": 78.38666666666667, + "grad_norm": 0.8736388683319092, + "learning_rate": 1.0825e-05, + "loss": 1.2649986267089843, + "step": 587900 + }, + { + "epoch": 78.4, + "grad_norm": 0.931929886341095, + "learning_rate": 1.0818333333333335e-05, + "loss": 1.2623023223876952, + "step": 588000 + }, + { + "epoch": 78.41333333333333, + "grad_norm": 0.9257421493530273, + "learning_rate": 1.0811666666666667e-05, + "loss": 1.258783950805664, + "step": 588100 + }, + { + "epoch": 78.42666666666666, + "grad_norm": 0.8989784717559814, + "learning_rate": 1.0804999999999999e-05, + "loss": 1.2628663635253907, + "step": 588200 + }, + { + "epoch": 78.44, + "grad_norm": 0.9080356359481812, + "learning_rate": 1.0798333333333335e-05, + "loss": 1.2631582641601562, + "step": 588300 + }, + { + "epoch": 78.45333333333333, + "grad_norm": 0.864266574382782, + "learning_rate": 1.0791666666666667e-05, + "loss": 1.2602297973632812, + "step": 588400 + }, + { + "epoch": 78.46666666666667, + "grad_norm": 0.9377700686454773, + "learning_rate": 1.0785000000000001e-05, + "loss": 1.2689905548095703, + "step": 588500 + }, + { + "epoch": 78.48, + "grad_norm": 0.9184496998786926, + "learning_rate": 1.0778333333333333e-05, + "loss": 1.2642398834228517, + "step": 588600 + }, + { + "epoch": 78.49333333333334, + "grad_norm": 0.9387530088424683, + "learning_rate": 1.0771666666666667e-05, + "loss": 1.2622312164306642, + "step": 588700 + }, + { + "epoch": 78.50666666666666, + "grad_norm": 0.8708038926124573, + "learning_rate": 1.0765e-05, + "loss": 1.265206298828125, + "step": 588800 + }, + { + "epoch": 78.52, + "grad_norm": 0.8846192955970764, + "learning_rate": 1.0758333333333333e-05, + "loss": 1.2633629608154298, + "step": 588900 + }, + { + "epoch": 78.53333333333333, + "grad_norm": 0.8851326704025269, + "learning_rate": 1.0751666666666667e-05, + "loss": 1.266950912475586, + "step": 589000 + }, + { + "epoch": 78.54666666666667, + "grad_norm": 0.9254246950149536, + "learning_rate": 1.0745000000000001e-05, + "loss": 1.2651148223876953, + "step": 589100 + }, + { + "epoch": 78.56, + "grad_norm": 0.886559784412384, + "learning_rate": 1.07384e-05, + "loss": 1.2686289215087891, + "step": 589200 + }, + { + "epoch": 78.57333333333334, + "grad_norm": 0.8676953315734863, + "learning_rate": 1.0731733333333334e-05, + "loss": 1.2632874298095702, + "step": 589300 + }, + { + "epoch": 78.58666666666667, + "grad_norm": 0.911446213722229, + "learning_rate": 1.0725066666666667e-05, + "loss": 1.2674727630615235, + "step": 589400 + }, + { + "epoch": 78.6, + "grad_norm": 0.9178944230079651, + "learning_rate": 1.07184e-05, + "loss": 1.2665594482421876, + "step": 589500 + }, + { + "epoch": 78.61333333333333, + "grad_norm": 0.9570107460021973, + "learning_rate": 1.0711733333333333e-05, + "loss": 1.2660420989990235, + "step": 589600 + }, + { + "epoch": 78.62666666666667, + "grad_norm": 0.9041311144828796, + "learning_rate": 1.0705066666666667e-05, + "loss": 1.2692436218261718, + "step": 589700 + }, + { + "epoch": 78.64, + "grad_norm": 0.8909561634063721, + "learning_rate": 1.06984e-05, + "loss": 1.2753994750976563, + "step": 589800 + }, + { + "epoch": 78.65333333333334, + "grad_norm": 0.883059561252594, + "learning_rate": 1.0691733333333335e-05, + "loss": 1.2698513793945312, + "step": 589900 + }, + { + "epoch": 78.66666666666667, + "grad_norm": 0.8872081637382507, + "learning_rate": 1.0685066666666667e-05, + "loss": 1.268332748413086, + "step": 590000 + }, + { + "epoch": 78.68, + "grad_norm": 0.9364659190177917, + "learning_rate": 1.0678400000000001e-05, + "loss": 1.2715838623046876, + "step": 590100 + }, + { + "epoch": 78.69333333333333, + "grad_norm": 0.8873387575149536, + "learning_rate": 1.0671733333333333e-05, + "loss": 1.2653190612792968, + "step": 590200 + }, + { + "epoch": 78.70666666666666, + "grad_norm": 0.9163351058959961, + "learning_rate": 1.0665066666666667e-05, + "loss": 1.2706766510009766, + "step": 590300 + }, + { + "epoch": 78.72, + "grad_norm": 0.8802734017372131, + "learning_rate": 1.0658400000000001e-05, + "loss": 1.2680073547363282, + "step": 590400 + }, + { + "epoch": 78.73333333333333, + "grad_norm": 0.8930662870407104, + "learning_rate": 1.0651733333333335e-05, + "loss": 1.2715739440917968, + "step": 590500 + }, + { + "epoch": 78.74666666666667, + "grad_norm": 0.8921145796775818, + "learning_rate": 1.0645066666666667e-05, + "loss": 1.2718709564208985, + "step": 590600 + }, + { + "epoch": 78.76, + "grad_norm": 0.9061724543571472, + "learning_rate": 1.0638400000000001e-05, + "loss": 1.2666871643066406, + "step": 590700 + }, + { + "epoch": 78.77333333333333, + "grad_norm": 0.9512609839439392, + "learning_rate": 1.0631733333333334e-05, + "loss": 1.2725698852539062, + "step": 590800 + }, + { + "epoch": 78.78666666666666, + "grad_norm": 0.8718198537826538, + "learning_rate": 1.0625066666666666e-05, + "loss": 1.2700515747070313, + "step": 590900 + }, + { + "epoch": 78.8, + "grad_norm": 0.9610340595245361, + "learning_rate": 1.06184e-05, + "loss": 1.2690962982177734, + "step": 591000 + }, + { + "epoch": 78.81333333333333, + "grad_norm": 0.9104143977165222, + "learning_rate": 1.0611733333333334e-05, + "loss": 1.2665902709960937, + "step": 591100 + }, + { + "epoch": 78.82666666666667, + "grad_norm": 0.9109393358230591, + "learning_rate": 1.0605133333333333e-05, + "loss": 1.2704518127441407, + "step": 591200 + }, + { + "epoch": 78.84, + "grad_norm": 0.9059329032897949, + "learning_rate": 1.0598466666666667e-05, + "loss": 1.273515396118164, + "step": 591300 + }, + { + "epoch": 78.85333333333334, + "grad_norm": 0.9386402368545532, + "learning_rate": 1.05918e-05, + "loss": 1.2749934387207031, + "step": 591400 + }, + { + "epoch": 78.86666666666666, + "grad_norm": 0.8592071533203125, + "learning_rate": 1.0585133333333335e-05, + "loss": 1.274554214477539, + "step": 591500 + }, + { + "epoch": 78.88, + "grad_norm": 0.903801679611206, + "learning_rate": 1.0578466666666667e-05, + "loss": 1.2715023040771485, + "step": 591600 + }, + { + "epoch": 78.89333333333333, + "grad_norm": 0.9000576138496399, + "learning_rate": 1.0571800000000001e-05, + "loss": 1.2724392700195313, + "step": 591700 + }, + { + "epoch": 78.90666666666667, + "grad_norm": 0.9397499561309814, + "learning_rate": 1.0565133333333333e-05, + "loss": 1.2701983642578125, + "step": 591800 + }, + { + "epoch": 78.92, + "grad_norm": 0.9019601345062256, + "learning_rate": 1.0558466666666667e-05, + "loss": 1.2739637756347657, + "step": 591900 + }, + { + "epoch": 78.93333333333334, + "grad_norm": 0.9267058372497559, + "learning_rate": 1.0551800000000001e-05, + "loss": 1.278916778564453, + "step": 592000 + }, + { + "epoch": 78.94666666666667, + "grad_norm": 0.9432265162467957, + "learning_rate": 1.0545133333333333e-05, + "loss": 1.2765323638916015, + "step": 592100 + }, + { + "epoch": 78.96, + "grad_norm": 0.905218243598938, + "learning_rate": 1.0538466666666667e-05, + "loss": 1.2738363647460937, + "step": 592200 + }, + { + "epoch": 78.97333333333333, + "grad_norm": 0.8922687768936157, + "learning_rate": 1.05318e-05, + "loss": 1.2749046325683593, + "step": 592300 + }, + { + "epoch": 78.98666666666666, + "grad_norm": 0.9277877807617188, + "learning_rate": 1.0525133333333334e-05, + "loss": 1.2721634674072266, + "step": 592400 + }, + { + "epoch": 79.0, + "grad_norm": 0.9030377268791199, + "learning_rate": 1.0518466666666666e-05, + "loss": 1.2747603607177735, + "step": 592500 + }, + { + "epoch": 79.01333333333334, + "grad_norm": 0.8378993272781372, + "learning_rate": 1.0511800000000002e-05, + "loss": 1.24189208984375, + "step": 592600 + }, + { + "epoch": 79.02666666666667, + "grad_norm": 0.9222813248634338, + "learning_rate": 1.0505133333333334e-05, + "loss": 1.2447259521484375, + "step": 592700 + }, + { + "epoch": 79.04, + "grad_norm": 0.8688544034957886, + "learning_rate": 1.0498466666666668e-05, + "loss": 1.2454937744140624, + "step": 592800 + }, + { + "epoch": 79.05333333333333, + "grad_norm": 0.8973101377487183, + "learning_rate": 1.04918e-05, + "loss": 1.2433192443847656, + "step": 592900 + }, + { + "epoch": 79.06666666666666, + "grad_norm": 0.868934154510498, + "learning_rate": 1.0485133333333334e-05, + "loss": 1.2476187133789063, + "step": 593000 + }, + { + "epoch": 79.08, + "grad_norm": 0.9051042795181274, + "learning_rate": 1.0478466666666666e-05, + "loss": 1.246639404296875, + "step": 593100 + }, + { + "epoch": 79.09333333333333, + "grad_norm": 0.8593751192092896, + "learning_rate": 1.0471866666666667e-05, + "loss": 1.2500391387939453, + "step": 593200 + }, + { + "epoch": 79.10666666666667, + "grad_norm": 0.8476565480232239, + "learning_rate": 1.04652e-05, + "loss": 1.246165542602539, + "step": 593300 + }, + { + "epoch": 79.12, + "grad_norm": 0.8801284432411194, + "learning_rate": 1.0458533333333333e-05, + "loss": 1.246192092895508, + "step": 593400 + }, + { + "epoch": 79.13333333333334, + "grad_norm": 0.8846884369850159, + "learning_rate": 1.0451866666666667e-05, + "loss": 1.2439684295654296, + "step": 593500 + }, + { + "epoch": 79.14666666666666, + "grad_norm": 0.9294757843017578, + "learning_rate": 1.0445200000000001e-05, + "loss": 1.2488855743408203, + "step": 593600 + }, + { + "epoch": 79.16, + "grad_norm": 0.8399421572685242, + "learning_rate": 1.0438533333333333e-05, + "loss": 1.2482614135742187, + "step": 593700 + }, + { + "epoch": 79.17333333333333, + "grad_norm": 0.911873459815979, + "learning_rate": 1.0431866666666667e-05, + "loss": 1.2482553100585938, + "step": 593800 + }, + { + "epoch": 79.18666666666667, + "grad_norm": 0.8314080834388733, + "learning_rate": 1.04252e-05, + "loss": 1.247007827758789, + "step": 593900 + }, + { + "epoch": 79.2, + "grad_norm": 0.9181894063949585, + "learning_rate": 1.0418533333333334e-05, + "loss": 1.2536485290527344, + "step": 594000 + }, + { + "epoch": 79.21333333333334, + "grad_norm": 0.8740313649177551, + "learning_rate": 1.0411866666666668e-05, + "loss": 1.2519398498535157, + "step": 594100 + }, + { + "epoch": 79.22666666666667, + "grad_norm": 0.9068511128425598, + "learning_rate": 1.0405200000000002e-05, + "loss": 1.2476766967773438, + "step": 594200 + }, + { + "epoch": 79.24, + "grad_norm": 0.9321922063827515, + "learning_rate": 1.0398533333333334e-05, + "loss": 1.2513009643554687, + "step": 594300 + }, + { + "epoch": 79.25333333333333, + "grad_norm": 0.888857901096344, + "learning_rate": 1.0391866666666668e-05, + "loss": 1.2504447937011718, + "step": 594400 + }, + { + "epoch": 79.26666666666667, + "grad_norm": 0.9641751050949097, + "learning_rate": 1.03852e-05, + "loss": 1.2548712921142577, + "step": 594500 + }, + { + "epoch": 79.28, + "grad_norm": 0.8727660775184631, + "learning_rate": 1.0378533333333332e-05, + "loss": 1.2525074005126953, + "step": 594600 + }, + { + "epoch": 79.29333333333334, + "grad_norm": 0.8915736675262451, + "learning_rate": 1.0371866666666668e-05, + "loss": 1.2563622283935547, + "step": 594700 + }, + { + "epoch": 79.30666666666667, + "grad_norm": 0.8992096781730652, + "learning_rate": 1.03652e-05, + "loss": 1.250523452758789, + "step": 594800 + }, + { + "epoch": 79.32, + "grad_norm": 0.9542332291603088, + "learning_rate": 1.0358533333333334e-05, + "loss": 1.2581777954101563, + "step": 594900 + }, + { + "epoch": 79.33333333333333, + "grad_norm": 0.8994565606117249, + "learning_rate": 1.0351866666666667e-05, + "loss": 1.2560828399658204, + "step": 595000 + }, + { + "epoch": 79.34666666666666, + "grad_norm": 0.9147607088088989, + "learning_rate": 1.03452e-05, + "loss": 1.2500714111328124, + "step": 595100 + }, + { + "epoch": 79.36, + "grad_norm": 0.9078018069267273, + "learning_rate": 1.0338600000000001e-05, + "loss": 1.257826385498047, + "step": 595200 + }, + { + "epoch": 79.37333333333333, + "grad_norm": 0.9065786004066467, + "learning_rate": 1.0331933333333334e-05, + "loss": 1.2560930633544922, + "step": 595300 + }, + { + "epoch": 79.38666666666667, + "grad_norm": 0.9030917286872864, + "learning_rate": 1.0325266666666667e-05, + "loss": 1.2558876800537109, + "step": 595400 + }, + { + "epoch": 79.4, + "grad_norm": 0.9185391664505005, + "learning_rate": 1.03186e-05, + "loss": 1.2556648254394531, + "step": 595500 + }, + { + "epoch": 79.41333333333333, + "grad_norm": 0.8820536136627197, + "learning_rate": 1.0311933333333334e-05, + "loss": 1.25557373046875, + "step": 595600 + }, + { + "epoch": 79.42666666666666, + "grad_norm": 0.872558057308197, + "learning_rate": 1.0305266666666668e-05, + "loss": 1.2546512603759765, + "step": 595700 + }, + { + "epoch": 79.44, + "grad_norm": 0.9479767680168152, + "learning_rate": 1.02986e-05, + "loss": 1.2602999114990234, + "step": 595800 + }, + { + "epoch": 79.45333333333333, + "grad_norm": 0.8801756501197815, + "learning_rate": 1.0291933333333334e-05, + "loss": 1.2596167755126952, + "step": 595900 + }, + { + "epoch": 79.46666666666667, + "grad_norm": 0.8682863116264343, + "learning_rate": 1.0285266666666666e-05, + "loss": 1.2621781158447265, + "step": 596000 + }, + { + "epoch": 79.48, + "grad_norm": 0.9202213883399963, + "learning_rate": 1.02786e-05, + "loss": 1.2601839447021483, + "step": 596100 + }, + { + "epoch": 79.49333333333334, + "grad_norm": 0.8812510371208191, + "learning_rate": 1.0271933333333334e-05, + "loss": 1.2634574890136718, + "step": 596200 + }, + { + "epoch": 79.50666666666666, + "grad_norm": 0.9358564019203186, + "learning_rate": 1.0265266666666668e-05, + "loss": 1.2560010528564454, + "step": 596300 + }, + { + "epoch": 79.52, + "grad_norm": 0.9232118725776672, + "learning_rate": 1.02586e-05, + "loss": 1.2569718170166015, + "step": 596400 + }, + { + "epoch": 79.53333333333333, + "grad_norm": 0.9304707050323486, + "learning_rate": 1.0251933333333334e-05, + "loss": 1.2577223205566406, + "step": 596500 + }, + { + "epoch": 79.54666666666667, + "grad_norm": 0.8667801022529602, + "learning_rate": 1.0245266666666667e-05, + "loss": 1.2640282440185546, + "step": 596600 + }, + { + "epoch": 79.56, + "grad_norm": 0.9173431992530823, + "learning_rate": 1.02386e-05, + "loss": 1.2618460083007812, + "step": 596700 + }, + { + "epoch": 79.57333333333334, + "grad_norm": 0.9202678203582764, + "learning_rate": 1.0231933333333334e-05, + "loss": 1.2610095977783202, + "step": 596800 + }, + { + "epoch": 79.58666666666667, + "grad_norm": 0.8916814923286438, + "learning_rate": 1.0225266666666668e-05, + "loss": 1.2634732055664062, + "step": 596900 + }, + { + "epoch": 79.6, + "grad_norm": 0.8657307624816895, + "learning_rate": 1.02186e-05, + "loss": 1.2660941314697265, + "step": 597000 + }, + { + "epoch": 79.61333333333333, + "grad_norm": 0.948290228843689, + "learning_rate": 1.0211933333333335e-05, + "loss": 1.2630126953125, + "step": 597100 + }, + { + "epoch": 79.62666666666667, + "grad_norm": 0.8405894041061401, + "learning_rate": 1.0205333333333334e-05, + "loss": 1.2619757080078124, + "step": 597200 + }, + { + "epoch": 79.64, + "grad_norm": 0.9192798137664795, + "learning_rate": 1.0198666666666668e-05, + "loss": 1.2630854797363282, + "step": 597300 + }, + { + "epoch": 79.65333333333334, + "grad_norm": 0.8935139179229736, + "learning_rate": 1.0192e-05, + "loss": 1.2599110412597656, + "step": 597400 + }, + { + "epoch": 79.66666666666667, + "grad_norm": 0.9552688598632812, + "learning_rate": 1.0185333333333334e-05, + "loss": 1.2634823608398438, + "step": 597500 + }, + { + "epoch": 79.68, + "grad_norm": 0.9792049527168274, + "learning_rate": 1.0178666666666666e-05, + "loss": 1.2599063110351563, + "step": 597600 + }, + { + "epoch": 79.69333333333333, + "grad_norm": 0.8858845233917236, + "learning_rate": 1.0172e-05, + "loss": 1.262656021118164, + "step": 597700 + }, + { + "epoch": 79.70666666666666, + "grad_norm": 0.8454314470291138, + "learning_rate": 1.0165333333333334e-05, + "loss": 1.2662943267822266, + "step": 597800 + }, + { + "epoch": 79.72, + "grad_norm": 0.8796765208244324, + "learning_rate": 1.0158666666666668e-05, + "loss": 1.2636601257324218, + "step": 597900 + }, + { + "epoch": 79.73333333333333, + "grad_norm": 0.9347110390663147, + "learning_rate": 1.0152e-05, + "loss": 1.2646561431884766, + "step": 598000 + }, + { + "epoch": 79.74666666666667, + "grad_norm": 0.8910204172134399, + "learning_rate": 1.0145333333333334e-05, + "loss": 1.268468780517578, + "step": 598100 + }, + { + "epoch": 79.76, + "grad_norm": 0.8769538998603821, + "learning_rate": 1.0138666666666667e-05, + "loss": 1.2662653350830078, + "step": 598200 + }, + { + "epoch": 79.77333333333333, + "grad_norm": 0.8732584714889526, + "learning_rate": 1.0132e-05, + "loss": 1.2627813720703125, + "step": 598300 + }, + { + "epoch": 79.78666666666666, + "grad_norm": 0.927267849445343, + "learning_rate": 1.0125333333333335e-05, + "loss": 1.2639500427246093, + "step": 598400 + }, + { + "epoch": 79.8, + "grad_norm": 0.8972467184066772, + "learning_rate": 1.0118666666666667e-05, + "loss": 1.265300064086914, + "step": 598500 + }, + { + "epoch": 79.81333333333333, + "grad_norm": 0.9230730533599854, + "learning_rate": 1.0112e-05, + "loss": 1.2670893096923828, + "step": 598600 + }, + { + "epoch": 79.82666666666667, + "grad_norm": 0.8692210912704468, + "learning_rate": 1.0105333333333333e-05, + "loss": 1.2643206787109376, + "step": 598700 + }, + { + "epoch": 79.84, + "grad_norm": 0.9208062291145325, + "learning_rate": 1.0098666666666667e-05, + "loss": 1.266007766723633, + "step": 598800 + }, + { + "epoch": 79.85333333333334, + "grad_norm": 0.8955254554748535, + "learning_rate": 1.0092e-05, + "loss": 1.2656437683105468, + "step": 598900 + }, + { + "epoch": 79.86666666666666, + "grad_norm": 0.8898331522941589, + "learning_rate": 1.0085333333333335e-05, + "loss": 1.268927993774414, + "step": 599000 + }, + { + "epoch": 79.88, + "grad_norm": 0.9004736542701721, + "learning_rate": 1.0078666666666667e-05, + "loss": 1.2676744079589843, + "step": 599100 + }, + { + "epoch": 79.89333333333333, + "grad_norm": 0.879002571105957, + "learning_rate": 1.0072066666666668e-05, + "loss": 1.268192672729492, + "step": 599200 + }, + { + "epoch": 79.90666666666667, + "grad_norm": 0.8479452133178711, + "learning_rate": 1.00654e-05, + "loss": 1.2690647888183593, + "step": 599300 + }, + { + "epoch": 79.92, + "grad_norm": 0.9314066171646118, + "learning_rate": 1.0058733333333334e-05, + "loss": 1.2657173156738282, + "step": 599400 + }, + { + "epoch": 79.93333333333334, + "grad_norm": 0.9445568919181824, + "learning_rate": 1.0052066666666666e-05, + "loss": 1.268585205078125, + "step": 599500 + }, + { + "epoch": 79.94666666666667, + "grad_norm": 0.8672616481781006, + "learning_rate": 1.00454e-05, + "loss": 1.2684510040283203, + "step": 599600 + }, + { + "epoch": 79.96, + "grad_norm": 0.9522123336791992, + "learning_rate": 1.0038733333333333e-05, + "loss": 1.2633151245117187, + "step": 599700 + }, + { + "epoch": 79.97333333333333, + "grad_norm": 0.8980398774147034, + "learning_rate": 1.0032066666666667e-05, + "loss": 1.2709536743164063, + "step": 599800 + }, + { + "epoch": 79.98666666666666, + "grad_norm": 0.9412267804145813, + "learning_rate": 1.00254e-05, + "loss": 1.2736549377441406, + "step": 599900 + }, + { + "epoch": 80.0, + "grad_norm": 0.958734929561615, + "learning_rate": 1.0018733333333335e-05, + "loss": 1.2687025451660157, + "step": 600000 + }, + { + "epoch": 80.01333333333334, + "grad_norm": 0.9288617968559265, + "learning_rate": 1.0012066666666667e-05, + "loss": 1.2443870544433593, + "step": 600100 + }, + { + "epoch": 80.02666666666667, + "grad_norm": 0.9338223338127136, + "learning_rate": 1.00054e-05, + "loss": 1.243735122680664, + "step": 600200 + }, + { + "epoch": 80.04, + "grad_norm": 0.9002096056938171, + "learning_rate": 9.998733333333333e-06, + "loss": 1.2413943481445313, + "step": 600300 + }, + { + "epoch": 80.05333333333333, + "grad_norm": 0.9089773297309875, + "learning_rate": 9.992066666666667e-06, + "loss": 1.2424115753173828, + "step": 600400 + }, + { + "epoch": 80.06666666666666, + "grad_norm": 0.919051468372345, + "learning_rate": 9.985400000000001e-06, + "loss": 1.2413393402099608, + "step": 600500 + }, + { + "epoch": 80.08, + "grad_norm": 0.9045332670211792, + "learning_rate": 9.978733333333335e-06, + "loss": 1.2448829650878905, + "step": 600600 + }, + { + "epoch": 80.09333333333333, + "grad_norm": 0.9014262557029724, + "learning_rate": 9.972066666666667e-06, + "loss": 1.2456900024414062, + "step": 600700 + }, + { + "epoch": 80.10666666666667, + "grad_norm": 0.9010103344917297, + "learning_rate": 9.965400000000001e-06, + "loss": 1.2381111907958984, + "step": 600800 + }, + { + "epoch": 80.12, + "grad_norm": 0.8444560170173645, + "learning_rate": 9.958733333333333e-06, + "loss": 1.2418882751464844, + "step": 600900 + }, + { + "epoch": 80.13333333333334, + "grad_norm": 0.9013086557388306, + "learning_rate": 9.952066666666666e-06, + "loss": 1.2470101165771483, + "step": 601000 + }, + { + "epoch": 80.14666666666666, + "grad_norm": 0.8963460326194763, + "learning_rate": 9.945400000000001e-06, + "loss": 1.2434548950195312, + "step": 601100 + }, + { + "epoch": 80.16, + "grad_norm": 0.8968179821968079, + "learning_rate": 9.9388e-06, + "loss": 1.244561996459961, + "step": 601200 + }, + { + "epoch": 80.17333333333333, + "grad_norm": 0.8898792862892151, + "learning_rate": 9.932133333333333e-06, + "loss": 1.2477424621582032, + "step": 601300 + }, + { + "epoch": 80.18666666666667, + "grad_norm": 0.9151734709739685, + "learning_rate": 9.925466666666668e-06, + "loss": 1.2453786468505859, + "step": 601400 + }, + { + "epoch": 80.2, + "grad_norm": 0.8821862936019897, + "learning_rate": 9.9188e-06, + "loss": 1.250970993041992, + "step": 601500 + }, + { + "epoch": 80.21333333333334, + "grad_norm": 0.8794935941696167, + "learning_rate": 9.912133333333335e-06, + "loss": 1.2464175415039063, + "step": 601600 + }, + { + "epoch": 80.22666666666667, + "grad_norm": 0.8836155533790588, + "learning_rate": 9.905466666666667e-06, + "loss": 1.2436624908447265, + "step": 601700 + }, + { + "epoch": 80.24, + "grad_norm": 0.881230354309082, + "learning_rate": 9.8988e-06, + "loss": 1.2490660095214843, + "step": 601800 + }, + { + "epoch": 80.25333333333333, + "grad_norm": 0.9362554550170898, + "learning_rate": 9.892133333333333e-06, + "loss": 1.2497845458984376, + "step": 601900 + }, + { + "epoch": 80.26666666666667, + "grad_norm": 0.8518027663230896, + "learning_rate": 9.885466666666667e-06, + "loss": 1.247543487548828, + "step": 602000 + }, + { + "epoch": 80.28, + "grad_norm": 0.9236149787902832, + "learning_rate": 9.878800000000001e-06, + "loss": 1.2505050659179688, + "step": 602100 + }, + { + "epoch": 80.29333333333334, + "grad_norm": 0.9130676984786987, + "learning_rate": 9.872133333333333e-06, + "loss": 1.2465634918212891, + "step": 602200 + }, + { + "epoch": 80.30666666666667, + "grad_norm": 0.9139811992645264, + "learning_rate": 9.865466666666667e-06, + "loss": 1.2522836303710938, + "step": 602300 + }, + { + "epoch": 80.32, + "grad_norm": 0.8871936202049255, + "learning_rate": 9.8588e-06, + "loss": 1.2477921295166015, + "step": 602400 + }, + { + "epoch": 80.33333333333333, + "grad_norm": 0.9056395888328552, + "learning_rate": 9.852133333333333e-06, + "loss": 1.25315185546875, + "step": 602500 + }, + { + "epoch": 80.34666666666666, + "grad_norm": 0.881733238697052, + "learning_rate": 9.845466666666667e-06, + "loss": 1.25149169921875, + "step": 602600 + }, + { + "epoch": 80.36, + "grad_norm": 0.8879048228263855, + "learning_rate": 9.838800000000001e-06, + "loss": 1.2514451599121095, + "step": 602700 + }, + { + "epoch": 80.37333333333333, + "grad_norm": 0.9176741242408752, + "learning_rate": 9.832133333333334e-06, + "loss": 1.2507662963867188, + "step": 602800 + }, + { + "epoch": 80.38666666666667, + "grad_norm": 0.8852501511573792, + "learning_rate": 9.825466666666668e-06, + "loss": 1.2502633666992187, + "step": 602900 + }, + { + "epoch": 80.4, + "grad_norm": 0.8856446743011475, + "learning_rate": 9.8188e-06, + "loss": 1.2474871826171876, + "step": 603000 + }, + { + "epoch": 80.41333333333333, + "grad_norm": 0.7928372621536255, + "learning_rate": 9.812133333333334e-06, + "loss": 1.252954635620117, + "step": 603100 + }, + { + "epoch": 80.42666666666666, + "grad_norm": 0.9248310327529907, + "learning_rate": 9.805533333333333e-06, + "loss": 1.255914306640625, + "step": 603200 + }, + { + "epoch": 80.44, + "grad_norm": 0.8597677946090698, + "learning_rate": 9.798866666666667e-06, + "loss": 1.2539872741699218, + "step": 603300 + }, + { + "epoch": 80.45333333333333, + "grad_norm": 0.9030819535255432, + "learning_rate": 9.7922e-06, + "loss": 1.2549383544921875, + "step": 603400 + }, + { + "epoch": 80.46666666666667, + "grad_norm": 0.9179391860961914, + "learning_rate": 9.785533333333335e-06, + "loss": 1.255010757446289, + "step": 603500 + }, + { + "epoch": 80.48, + "grad_norm": 0.8762322068214417, + "learning_rate": 9.778866666666667e-06, + "loss": 1.2511839294433593, + "step": 603600 + }, + { + "epoch": 80.49333333333334, + "grad_norm": 0.9009326696395874, + "learning_rate": 9.772200000000001e-06, + "loss": 1.2546797180175782, + "step": 603700 + }, + { + "epoch": 80.50666666666666, + "grad_norm": 0.8604843020439148, + "learning_rate": 9.765533333333333e-06, + "loss": 1.2558490753173828, + "step": 603800 + }, + { + "epoch": 80.52, + "grad_norm": 0.7724893093109131, + "learning_rate": 9.758866666666667e-06, + "loss": 1.254795150756836, + "step": 603900 + }, + { + "epoch": 80.53333333333333, + "grad_norm": 0.9349945783615112, + "learning_rate": 9.7522e-06, + "loss": 1.2588446044921875, + "step": 604000 + }, + { + "epoch": 80.54666666666667, + "grad_norm": 0.8668858408927917, + "learning_rate": 9.745533333333334e-06, + "loss": 1.2564624786376952, + "step": 604100 + }, + { + "epoch": 80.56, + "grad_norm": 0.872798502445221, + "learning_rate": 9.738866666666667e-06, + "loss": 1.2593098449707032, + "step": 604200 + }, + { + "epoch": 80.57333333333334, + "grad_norm": 0.8730403780937195, + "learning_rate": 9.732200000000001e-06, + "loss": 1.2532449340820313, + "step": 604300 + }, + { + "epoch": 80.58666666666667, + "grad_norm": 0.9731208682060242, + "learning_rate": 9.725533333333334e-06, + "loss": 1.258994598388672, + "step": 604400 + }, + { + "epoch": 80.6, + "grad_norm": 0.9248079061508179, + "learning_rate": 9.718866666666668e-06, + "loss": 1.2537442779541015, + "step": 604500 + }, + { + "epoch": 80.61333333333333, + "grad_norm": 0.8961241841316223, + "learning_rate": 9.7122e-06, + "loss": 1.2533512115478516, + "step": 604600 + }, + { + "epoch": 80.62666666666667, + "grad_norm": 0.8987104296684265, + "learning_rate": 9.705533333333334e-06, + "loss": 1.2551846313476562, + "step": 604700 + }, + { + "epoch": 80.64, + "grad_norm": 0.8422402143478394, + "learning_rate": 9.698866666666668e-06, + "loss": 1.2600907135009765, + "step": 604800 + }, + { + "epoch": 80.65333333333334, + "grad_norm": 0.9396112561225891, + "learning_rate": 9.6922e-06, + "loss": 1.2541912841796874, + "step": 604900 + }, + { + "epoch": 80.66666666666667, + "grad_norm": 0.8763729333877563, + "learning_rate": 9.685533333333334e-06, + "loss": 1.255435791015625, + "step": 605000 + }, + { + "epoch": 80.68, + "grad_norm": 0.9729053974151611, + "learning_rate": 9.678866666666666e-06, + "loss": 1.2559229278564452, + "step": 605100 + }, + { + "epoch": 80.69333333333333, + "grad_norm": 0.9245437979698181, + "learning_rate": 9.6722e-06, + "loss": 1.2618405151367187, + "step": 605200 + }, + { + "epoch": 80.70666666666666, + "grad_norm": 0.9225579500198364, + "learning_rate": 9.665600000000001e-06, + "loss": 1.25842529296875, + "step": 605300 + }, + { + "epoch": 80.72, + "grad_norm": 0.8995950222015381, + "learning_rate": 9.658933333333333e-06, + "loss": 1.2611757659912108, + "step": 605400 + }, + { + "epoch": 80.73333333333333, + "grad_norm": 0.8765818476676941, + "learning_rate": 9.652266666666667e-06, + "loss": 1.2570573425292968, + "step": 605500 + }, + { + "epoch": 80.74666666666667, + "grad_norm": 0.8758502006530762, + "learning_rate": 9.645600000000001e-06, + "loss": 1.2593089294433595, + "step": 605600 + }, + { + "epoch": 80.76, + "grad_norm": 0.9053191542625427, + "learning_rate": 9.638933333333334e-06, + "loss": 1.2571390533447266, + "step": 605700 + }, + { + "epoch": 80.77333333333333, + "grad_norm": 0.8636969327926636, + "learning_rate": 9.632266666666668e-06, + "loss": 1.259483871459961, + "step": 605800 + }, + { + "epoch": 80.78666666666666, + "grad_norm": 0.9549551010131836, + "learning_rate": 9.6256e-06, + "loss": 1.2597525787353516, + "step": 605900 + }, + { + "epoch": 80.8, + "grad_norm": 0.8548250794410706, + "learning_rate": 9.618933333333334e-06, + "loss": 1.2577105712890626, + "step": 606000 + }, + { + "epoch": 80.81333333333333, + "grad_norm": 0.9075458645820618, + "learning_rate": 9.612266666666666e-06, + "loss": 1.2630501556396485, + "step": 606100 + }, + { + "epoch": 80.82666666666667, + "grad_norm": 0.9351378083229065, + "learning_rate": 9.6056e-06, + "loss": 1.2618649291992188, + "step": 606200 + }, + { + "epoch": 80.84, + "grad_norm": 0.8505954742431641, + "learning_rate": 9.598933333333334e-06, + "loss": 1.2608261108398438, + "step": 606300 + }, + { + "epoch": 80.85333333333334, + "grad_norm": 0.8611586093902588, + "learning_rate": 9.592266666666668e-06, + "loss": 1.2637861633300782, + "step": 606400 + }, + { + "epoch": 80.86666666666666, + "grad_norm": 0.8829309940338135, + "learning_rate": 9.5856e-06, + "loss": 1.2620301055908203, + "step": 606500 + }, + { + "epoch": 80.88, + "grad_norm": 0.906769335269928, + "learning_rate": 9.578933333333334e-06, + "loss": 1.2620735168457031, + "step": 606600 + }, + { + "epoch": 80.89333333333333, + "grad_norm": 0.896776020526886, + "learning_rate": 9.572266666666666e-06, + "loss": 1.263584213256836, + "step": 606700 + }, + { + "epoch": 80.90666666666667, + "grad_norm": 0.887713611125946, + "learning_rate": 9.5656e-06, + "loss": 1.264889907836914, + "step": 606800 + }, + { + "epoch": 80.92, + "grad_norm": 0.9247974753379822, + "learning_rate": 9.558933333333334e-06, + "loss": 1.2628305053710938, + "step": 606900 + }, + { + "epoch": 80.93333333333334, + "grad_norm": 0.9135413765907288, + "learning_rate": 9.552266666666668e-06, + "loss": 1.2610269165039063, + "step": 607000 + }, + { + "epoch": 80.94666666666667, + "grad_norm": 0.816784143447876, + "learning_rate": 9.5456e-06, + "loss": 1.264756851196289, + "step": 607100 + }, + { + "epoch": 80.96, + "grad_norm": 0.8519019484519958, + "learning_rate": 9.538933333333335e-06, + "loss": 1.2676949310302734, + "step": 607200 + }, + { + "epoch": 80.97333333333333, + "grad_norm": 0.8847300410270691, + "learning_rate": 9.532333333333334e-06, + "loss": 1.2613274383544921, + "step": 607300 + }, + { + "epoch": 80.98666666666666, + "grad_norm": 0.9292627573013306, + "learning_rate": 9.525666666666668e-06, + "loss": 1.264800796508789, + "step": 607400 + }, + { + "epoch": 81.0, + "grad_norm": 0.9245173335075378, + "learning_rate": 9.519e-06, + "loss": 1.2614967346191406, + "step": 607500 + }, + { + "epoch": 81.01333333333334, + "grad_norm": 0.8275742530822754, + "learning_rate": 9.512333333333334e-06, + "loss": 1.2391834259033203, + "step": 607600 + }, + { + "epoch": 81.02666666666667, + "grad_norm": 0.9047415256500244, + "learning_rate": 9.505666666666666e-06, + "loss": 1.2392681884765624, + "step": 607700 + }, + { + "epoch": 81.04, + "grad_norm": 0.8522070646286011, + "learning_rate": 9.499000000000002e-06, + "loss": 1.2342119598388672, + "step": 607800 + }, + { + "epoch": 81.05333333333333, + "grad_norm": 0.9225237369537354, + "learning_rate": 9.492333333333334e-06, + "loss": 1.240270004272461, + "step": 607900 + }, + { + "epoch": 81.06666666666666, + "grad_norm": 0.877410352230072, + "learning_rate": 9.485666666666668e-06, + "loss": 1.2419137573242187, + "step": 608000 + }, + { + "epoch": 81.08, + "grad_norm": 0.895682156085968, + "learning_rate": 9.479e-06, + "loss": 1.2361355590820313, + "step": 608100 + }, + { + "epoch": 81.09333333333333, + "grad_norm": 0.9138928055763245, + "learning_rate": 9.472333333333334e-06, + "loss": 1.2378245544433595, + "step": 608200 + }, + { + "epoch": 81.10666666666667, + "grad_norm": 0.8844442963600159, + "learning_rate": 9.465666666666666e-06, + "loss": 1.238951644897461, + "step": 608300 + }, + { + "epoch": 81.12, + "grad_norm": 0.9086583852767944, + "learning_rate": 9.459e-06, + "loss": 1.238919219970703, + "step": 608400 + }, + { + "epoch": 81.13333333333334, + "grad_norm": 0.9068462252616882, + "learning_rate": 9.452333333333334e-06, + "loss": 1.2433626556396484, + "step": 608500 + }, + { + "epoch": 81.14666666666666, + "grad_norm": 0.8883899450302124, + "learning_rate": 9.445666666666667e-06, + "loss": 1.2401612091064453, + "step": 608600 + }, + { + "epoch": 81.16, + "grad_norm": 0.8467079401016235, + "learning_rate": 9.439e-06, + "loss": 1.2381580352783204, + "step": 608700 + }, + { + "epoch": 81.17333333333333, + "grad_norm": 0.9207153916358948, + "learning_rate": 9.432333333333333e-06, + "loss": 1.2427813720703125, + "step": 608800 + }, + { + "epoch": 81.18666666666667, + "grad_norm": 0.912255585193634, + "learning_rate": 9.425666666666667e-06, + "loss": 1.240965805053711, + "step": 608900 + }, + { + "epoch": 81.2, + "grad_norm": 0.9188990592956543, + "learning_rate": 9.419e-06, + "loss": 1.2408465576171874, + "step": 609000 + }, + { + "epoch": 81.21333333333334, + "grad_norm": 0.9256595373153687, + "learning_rate": 9.412333333333335e-06, + "loss": 1.2405252075195312, + "step": 609100 + }, + { + "epoch": 81.22666666666667, + "grad_norm": 0.9291117787361145, + "learning_rate": 9.405666666666667e-06, + "loss": 1.245336685180664, + "step": 609200 + }, + { + "epoch": 81.24, + "grad_norm": 0.9023730158805847, + "learning_rate": 9.399066666666668e-06, + "loss": 1.247289276123047, + "step": 609300 + }, + { + "epoch": 81.25333333333333, + "grad_norm": 0.8725359439849854, + "learning_rate": 9.3924e-06, + "loss": 1.242955322265625, + "step": 609400 + }, + { + "epoch": 81.26666666666667, + "grad_norm": 0.93658846616745, + "learning_rate": 9.385733333333334e-06, + "loss": 1.2417597198486328, + "step": 609500 + }, + { + "epoch": 81.28, + "grad_norm": 0.8989132642745972, + "learning_rate": 9.379066666666666e-06, + "loss": 1.2406790924072266, + "step": 609600 + }, + { + "epoch": 81.29333333333334, + "grad_norm": 0.8773770928382874, + "learning_rate": 9.3724e-06, + "loss": 1.2456909942626953, + "step": 609700 + }, + { + "epoch": 81.30666666666667, + "grad_norm": 0.9248537421226501, + "learning_rate": 9.365733333333333e-06, + "loss": 1.2468321990966797, + "step": 609800 + }, + { + "epoch": 81.32, + "grad_norm": 0.9012039303779602, + "learning_rate": 9.359066666666668e-06, + "loss": 1.2451560974121094, + "step": 609900 + }, + { + "epoch": 81.33333333333333, + "grad_norm": 0.8763637542724609, + "learning_rate": 9.3524e-06, + "loss": 1.2435193634033204, + "step": 610000 + }, + { + "epoch": 81.34666666666666, + "grad_norm": 0.9104039669036865, + "learning_rate": 9.345733333333334e-06, + "loss": 1.2489257049560547, + "step": 610100 + }, + { + "epoch": 81.36, + "grad_norm": 0.9854726195335388, + "learning_rate": 9.339066666666667e-06, + "loss": 1.2438234710693359, + "step": 610200 + }, + { + "epoch": 81.37333333333333, + "grad_norm": 0.8832777142524719, + "learning_rate": 9.3324e-06, + "loss": 1.2450476837158204, + "step": 610300 + }, + { + "epoch": 81.38666666666667, + "grad_norm": 0.8616676926612854, + "learning_rate": 9.325733333333333e-06, + "loss": 1.24720703125, + "step": 610400 + }, + { + "epoch": 81.4, + "grad_norm": 0.8933054208755493, + "learning_rate": 9.319066666666667e-06, + "loss": 1.248559799194336, + "step": 610500 + }, + { + "epoch": 81.41333333333333, + "grad_norm": 0.9103077054023743, + "learning_rate": 9.3124e-06, + "loss": 1.2462962341308594, + "step": 610600 + }, + { + "epoch": 81.42666666666666, + "grad_norm": 0.8590754866600037, + "learning_rate": 9.305733333333335e-06, + "loss": 1.246546859741211, + "step": 610700 + }, + { + "epoch": 81.44, + "grad_norm": 0.9296621084213257, + "learning_rate": 9.299066666666667e-06, + "loss": 1.2495183563232422, + "step": 610800 + }, + { + "epoch": 81.45333333333333, + "grad_norm": 0.9122717380523682, + "learning_rate": 9.292400000000001e-06, + "loss": 1.2485328674316407, + "step": 610900 + }, + { + "epoch": 81.46666666666667, + "grad_norm": 0.894951343536377, + "learning_rate": 9.285733333333333e-06, + "loss": 1.2503672790527345, + "step": 611000 + }, + { + "epoch": 81.48, + "grad_norm": 0.8775086402893066, + "learning_rate": 9.279066666666667e-06, + "loss": 1.2496353149414063, + "step": 611100 + }, + { + "epoch": 81.49333333333334, + "grad_norm": 0.9073229432106018, + "learning_rate": 9.272400000000001e-06, + "loss": 1.2485159301757813, + "step": 611200 + }, + { + "epoch": 81.50666666666666, + "grad_norm": 0.8721373081207275, + "learning_rate": 9.2658e-06, + "loss": 1.249385452270508, + "step": 611300 + }, + { + "epoch": 81.52, + "grad_norm": 0.8617298007011414, + "learning_rate": 9.259133333333334e-06, + "loss": 1.2492945861816407, + "step": 611400 + }, + { + "epoch": 81.53333333333333, + "grad_norm": 0.9376047253608704, + "learning_rate": 9.252466666666668e-06, + "loss": 1.2484706878662108, + "step": 611500 + }, + { + "epoch": 81.54666666666667, + "grad_norm": 0.9316357970237732, + "learning_rate": 9.2458e-06, + "loss": 1.2509843444824218, + "step": 611600 + }, + { + "epoch": 81.56, + "grad_norm": 0.9092914462089539, + "learning_rate": 9.239133333333334e-06, + "loss": 1.252373046875, + "step": 611700 + }, + { + "epoch": 81.57333333333334, + "grad_norm": 0.9230238199234009, + "learning_rate": 9.232466666666667e-06, + "loss": 1.2522103881835938, + "step": 611800 + }, + { + "epoch": 81.58666666666667, + "grad_norm": 0.9527510404586792, + "learning_rate": 9.2258e-06, + "loss": 1.2519025421142578, + "step": 611900 + }, + { + "epoch": 81.6, + "grad_norm": 0.9313916563987732, + "learning_rate": 9.219133333333333e-06, + "loss": 1.2490794372558593, + "step": 612000 + }, + { + "epoch": 81.61333333333333, + "grad_norm": 0.9925395846366882, + "learning_rate": 9.212466666666667e-06, + "loss": 1.2542919921875, + "step": 612100 + }, + { + "epoch": 81.62666666666667, + "grad_norm": 0.9218894839286804, + "learning_rate": 9.205800000000001e-06, + "loss": 1.2550067138671874, + "step": 612200 + }, + { + "epoch": 81.64, + "grad_norm": 0.9411338567733765, + "learning_rate": 9.199133333333333e-06, + "loss": 1.249119644165039, + "step": 612300 + }, + { + "epoch": 81.65333333333334, + "grad_norm": 0.9338614344596863, + "learning_rate": 9.192466666666667e-06, + "loss": 1.2516092681884765, + "step": 612400 + }, + { + "epoch": 81.66666666666667, + "grad_norm": 0.984487771987915, + "learning_rate": 9.1858e-06, + "loss": 1.253871078491211, + "step": 612500 + }, + { + "epoch": 81.68, + "grad_norm": 0.8881129026412964, + "learning_rate": 9.179133333333333e-06, + "loss": 1.2527835845947266, + "step": 612600 + }, + { + "epoch": 81.69333333333333, + "grad_norm": 0.9168439507484436, + "learning_rate": 9.172466666666667e-06, + "loss": 1.2484764862060547, + "step": 612700 + }, + { + "epoch": 81.70666666666666, + "grad_norm": 0.8874577283859253, + "learning_rate": 9.165800000000001e-06, + "loss": 1.2515900421142578, + "step": 612800 + }, + { + "epoch": 81.72, + "grad_norm": 0.905847430229187, + "learning_rate": 9.159133333333334e-06, + "loss": 1.2533546447753907, + "step": 612900 + }, + { + "epoch": 81.73333333333333, + "grad_norm": 0.8582006096839905, + "learning_rate": 9.152466666666667e-06, + "loss": 1.2524093627929687, + "step": 613000 + }, + { + "epoch": 81.74666666666667, + "grad_norm": 0.9305291175842285, + "learning_rate": 9.1458e-06, + "loss": 1.2540251922607422, + "step": 613100 + }, + { + "epoch": 81.76, + "grad_norm": 0.9581021666526794, + "learning_rate": 9.139133333333334e-06, + "loss": 1.2542661285400392, + "step": 613200 + }, + { + "epoch": 81.77333333333333, + "grad_norm": 0.8602609634399414, + "learning_rate": 9.132533333333333e-06, + "loss": 1.250102767944336, + "step": 613300 + }, + { + "epoch": 81.78666666666666, + "grad_norm": 0.9307783842086792, + "learning_rate": 9.125866666666667e-06, + "loss": 1.25496826171875, + "step": 613400 + }, + { + "epoch": 81.8, + "grad_norm": 0.9519327282905579, + "learning_rate": 9.1192e-06, + "loss": 1.2568404388427734, + "step": 613500 + }, + { + "epoch": 81.81333333333333, + "grad_norm": 0.9594677090644836, + "learning_rate": 9.112533333333335e-06, + "loss": 1.2542708587646485, + "step": 613600 + }, + { + "epoch": 81.82666666666667, + "grad_norm": 0.9347852468490601, + "learning_rate": 9.105866666666667e-06, + "loss": 1.2561700439453125, + "step": 613700 + }, + { + "epoch": 81.84, + "grad_norm": 0.9031361937522888, + "learning_rate": 9.099200000000001e-06, + "loss": 1.250828399658203, + "step": 613800 + }, + { + "epoch": 81.85333333333334, + "grad_norm": 0.9028738141059875, + "learning_rate": 9.092533333333333e-06, + "loss": 1.2556254577636718, + "step": 613900 + }, + { + "epoch": 81.86666666666666, + "grad_norm": 0.8947298526763916, + "learning_rate": 9.085866666666667e-06, + "loss": 1.2577997589111327, + "step": 614000 + }, + { + "epoch": 81.88, + "grad_norm": 0.9742893576622009, + "learning_rate": 9.0792e-06, + "loss": 1.2556832122802735, + "step": 614100 + }, + { + "epoch": 81.89333333333333, + "grad_norm": 0.9164856672286987, + "learning_rate": 9.072533333333335e-06, + "loss": 1.2557017517089843, + "step": 614200 + }, + { + "epoch": 81.90666666666667, + "grad_norm": 0.915895938873291, + "learning_rate": 9.065866666666667e-06, + "loss": 1.2530562591552734, + "step": 614300 + }, + { + "epoch": 81.92, + "grad_norm": 0.8925107717514038, + "learning_rate": 9.059200000000001e-06, + "loss": 1.26068115234375, + "step": 614400 + }, + { + "epoch": 81.93333333333334, + "grad_norm": 0.8939207196235657, + "learning_rate": 9.052533333333334e-06, + "loss": 1.2526610565185547, + "step": 614500 + }, + { + "epoch": 81.94666666666667, + "grad_norm": 0.8300981521606445, + "learning_rate": 9.045866666666668e-06, + "loss": 1.2572245025634765, + "step": 614600 + }, + { + "epoch": 81.96, + "grad_norm": 0.8693681955337524, + "learning_rate": 9.0392e-06, + "loss": 1.2559279632568359, + "step": 614700 + }, + { + "epoch": 81.97333333333333, + "grad_norm": 0.8896282315254211, + "learning_rate": 9.032533333333334e-06, + "loss": 1.2625821685791017, + "step": 614800 + }, + { + "epoch": 81.98666666666666, + "grad_norm": 0.8908337354660034, + "learning_rate": 9.025866666666668e-06, + "loss": 1.2559323120117187, + "step": 614900 + }, + { + "epoch": 82.0, + "grad_norm": 0.9439942836761475, + "learning_rate": 9.0192e-06, + "loss": 1.2595707702636718, + "step": 615000 + }, + { + "epoch": 82.01333333333334, + "grad_norm": 0.9085642099380493, + "learning_rate": 9.012533333333334e-06, + "loss": 1.234801025390625, + "step": 615100 + }, + { + "epoch": 82.02666666666667, + "grad_norm": 0.86478590965271, + "learning_rate": 9.005866666666666e-06, + "loss": 1.2301112365722657, + "step": 615200 + }, + { + "epoch": 82.04, + "grad_norm": 0.8402786254882812, + "learning_rate": 8.999266666666667e-06, + "loss": 1.2340145111083984, + "step": 615300 + }, + { + "epoch": 82.05333333333333, + "grad_norm": 0.9000765681266785, + "learning_rate": 8.992600000000001e-06, + "loss": 1.234165496826172, + "step": 615400 + }, + { + "epoch": 82.06666666666666, + "grad_norm": 0.8875935673713684, + "learning_rate": 8.985933333333333e-06, + "loss": 1.2338397216796875, + "step": 615500 + }, + { + "epoch": 82.08, + "grad_norm": 0.8624498248100281, + "learning_rate": 8.979266666666667e-06, + "loss": 1.2306690216064453, + "step": 615600 + }, + { + "epoch": 82.09333333333333, + "grad_norm": 0.8691593408584595, + "learning_rate": 8.972600000000001e-06, + "loss": 1.2350591278076173, + "step": 615700 + }, + { + "epoch": 82.10666666666667, + "grad_norm": 0.9431705474853516, + "learning_rate": 8.965933333333333e-06, + "loss": 1.2306092071533203, + "step": 615800 + }, + { + "epoch": 82.12, + "grad_norm": 0.8544008135795593, + "learning_rate": 8.959266666666667e-06, + "loss": 1.2384963989257813, + "step": 615900 + }, + { + "epoch": 82.13333333333334, + "grad_norm": 0.9354866147041321, + "learning_rate": 8.9526e-06, + "loss": 1.2398062896728517, + "step": 616000 + }, + { + "epoch": 82.14666666666666, + "grad_norm": 0.8743143677711487, + "learning_rate": 8.945933333333334e-06, + "loss": 1.2414376068115234, + "step": 616100 + }, + { + "epoch": 82.16, + "grad_norm": 0.8810702562332153, + "learning_rate": 8.939266666666666e-06, + "loss": 1.2354586029052734, + "step": 616200 + }, + { + "epoch": 82.17333333333333, + "grad_norm": 0.8954576849937439, + "learning_rate": 8.932600000000002e-06, + "loss": 1.2339041137695312, + "step": 616300 + }, + { + "epoch": 82.18666666666667, + "grad_norm": 0.9300366640090942, + "learning_rate": 8.925933333333334e-06, + "loss": 1.2386576843261718, + "step": 616400 + }, + { + "epoch": 82.2, + "grad_norm": 0.9427330493927002, + "learning_rate": 8.919266666666668e-06, + "loss": 1.2405809020996095, + "step": 616500 + }, + { + "epoch": 82.21333333333334, + "grad_norm": 0.9200528264045715, + "learning_rate": 8.9126e-06, + "loss": 1.2397397613525392, + "step": 616600 + }, + { + "epoch": 82.22666666666667, + "grad_norm": 0.9477024078369141, + "learning_rate": 8.905933333333334e-06, + "loss": 1.2361534118652344, + "step": 616700 + }, + { + "epoch": 82.24, + "grad_norm": 0.860318660736084, + "learning_rate": 8.899266666666666e-06, + "loss": 1.24165771484375, + "step": 616800 + }, + { + "epoch": 82.25333333333333, + "grad_norm": 0.8930957317352295, + "learning_rate": 8.8926e-06, + "loss": 1.240411376953125, + "step": 616900 + }, + { + "epoch": 82.26666666666667, + "grad_norm": 0.8713201284408569, + "learning_rate": 8.885933333333334e-06, + "loss": 1.2389635467529296, + "step": 617000 + }, + { + "epoch": 82.28, + "grad_norm": 0.8821374773979187, + "learning_rate": 8.879266666666668e-06, + "loss": 1.240754165649414, + "step": 617100 + }, + { + "epoch": 82.29333333333334, + "grad_norm": 0.8835667967796326, + "learning_rate": 8.8726e-06, + "loss": 1.2408916473388671, + "step": 617200 + }, + { + "epoch": 82.30666666666667, + "grad_norm": 0.878227949142456, + "learning_rate": 8.866000000000001e-06, + "loss": 1.239891357421875, + "step": 617300 + }, + { + "epoch": 82.32, + "grad_norm": 0.9137305021286011, + "learning_rate": 8.859333333333333e-06, + "loss": 1.2434058380126953, + "step": 617400 + }, + { + "epoch": 82.33333333333333, + "grad_norm": 0.9233280420303345, + "learning_rate": 8.852666666666667e-06, + "loss": 1.240920867919922, + "step": 617500 + }, + { + "epoch": 82.34666666666666, + "grad_norm": 0.9034508466720581, + "learning_rate": 8.846e-06, + "loss": 1.2437106323242189, + "step": 617600 + }, + { + "epoch": 82.36, + "grad_norm": 0.9077682495117188, + "learning_rate": 8.839333333333334e-06, + "loss": 1.2439752960205077, + "step": 617700 + }, + { + "epoch": 82.37333333333333, + "grad_norm": 0.9524446725845337, + "learning_rate": 8.832666666666668e-06, + "loss": 1.2423672485351562, + "step": 617800 + }, + { + "epoch": 82.38666666666667, + "grad_norm": 0.8799779415130615, + "learning_rate": 8.826000000000002e-06, + "loss": 1.2455381011962892, + "step": 617900 + }, + { + "epoch": 82.4, + "grad_norm": 0.9285022616386414, + "learning_rate": 8.819333333333334e-06, + "loss": 1.2448921966552735, + "step": 618000 + }, + { + "epoch": 82.41333333333333, + "grad_norm": 0.9084222912788391, + "learning_rate": 8.812666666666668e-06, + "loss": 1.2376979064941407, + "step": 618100 + }, + { + "epoch": 82.42666666666666, + "grad_norm": 0.8648841381072998, + "learning_rate": 8.806e-06, + "loss": 1.2406005859375, + "step": 618200 + }, + { + "epoch": 82.44, + "grad_norm": 0.9781367778778076, + "learning_rate": 8.799333333333334e-06, + "loss": 1.243892593383789, + "step": 618300 + }, + { + "epoch": 82.45333333333333, + "grad_norm": 0.8798574805259705, + "learning_rate": 8.792666666666666e-06, + "loss": 1.2451769256591796, + "step": 618400 + }, + { + "epoch": 82.46666666666667, + "grad_norm": 0.9308679103851318, + "learning_rate": 8.786e-06, + "loss": 1.2392099761962891, + "step": 618500 + }, + { + "epoch": 82.48, + "grad_norm": 0.9308741688728333, + "learning_rate": 8.779333333333334e-06, + "loss": 1.2419159698486328, + "step": 618600 + }, + { + "epoch": 82.49333333333334, + "grad_norm": 0.9221790432929993, + "learning_rate": 8.772666666666666e-06, + "loss": 1.2452362060546875, + "step": 618700 + }, + { + "epoch": 82.50666666666666, + "grad_norm": 0.8636195063591003, + "learning_rate": 8.766e-06, + "loss": 1.2443165588378906, + "step": 618800 + }, + { + "epoch": 82.52, + "grad_norm": 0.8592165112495422, + "learning_rate": 8.759333333333333e-06, + "loss": 1.2440619659423828, + "step": 618900 + }, + { + "epoch": 82.53333333333333, + "grad_norm": 0.9434940814971924, + "learning_rate": 8.752666666666667e-06, + "loss": 1.2442166900634766, + "step": 619000 + }, + { + "epoch": 82.54666666666667, + "grad_norm": 0.9361331462860107, + "learning_rate": 8.746e-06, + "loss": 1.247313461303711, + "step": 619100 + }, + { + "epoch": 82.56, + "grad_norm": 0.9202352166175842, + "learning_rate": 8.739333333333335e-06, + "loss": 1.240821304321289, + "step": 619200 + }, + { + "epoch": 82.57333333333334, + "grad_norm": 0.9500649571418762, + "learning_rate": 8.732733333333334e-06, + "loss": 1.2460474395751953, + "step": 619300 + }, + { + "epoch": 82.58666666666667, + "grad_norm": 0.9258289933204651, + "learning_rate": 8.726066666666668e-06, + "loss": 1.2472043609619141, + "step": 619400 + }, + { + "epoch": 82.6, + "grad_norm": 0.9140313267707825, + "learning_rate": 8.7194e-06, + "loss": 1.2448184204101562, + "step": 619500 + }, + { + "epoch": 82.61333333333333, + "grad_norm": 0.9324513077735901, + "learning_rate": 8.712733333333334e-06, + "loss": 1.2494194030761718, + "step": 619600 + }, + { + "epoch": 82.62666666666667, + "grad_norm": 0.9109006524085999, + "learning_rate": 8.706066666666666e-06, + "loss": 1.247740707397461, + "step": 619700 + }, + { + "epoch": 82.64, + "grad_norm": 0.9407756328582764, + "learning_rate": 8.6994e-06, + "loss": 1.2482675170898438, + "step": 619800 + }, + { + "epoch": 82.65333333333334, + "grad_norm": 0.9115416407585144, + "learning_rate": 8.692733333333334e-06, + "loss": 1.2482878112792968, + "step": 619900 + }, + { + "epoch": 82.66666666666667, + "grad_norm": 0.9408479928970337, + "learning_rate": 8.686066666666668e-06, + "loss": 1.2521448516845703, + "step": 620000 + }, + { + "epoch": 82.68, + "grad_norm": 0.8845256567001343, + "learning_rate": 8.6794e-06, + "loss": 1.2493247985839844, + "step": 620100 + }, + { + "epoch": 82.69333333333333, + "grad_norm": 0.8882789015769958, + "learning_rate": 8.672733333333334e-06, + "loss": 1.2499993896484376, + "step": 620200 + }, + { + "epoch": 82.70666666666666, + "grad_norm": 0.8768792152404785, + "learning_rate": 8.666066666666667e-06, + "loss": 1.2518183135986327, + "step": 620300 + }, + { + "epoch": 82.72, + "grad_norm": 0.9239054322242737, + "learning_rate": 8.6594e-06, + "loss": 1.2470800018310546, + "step": 620400 + }, + { + "epoch": 82.73333333333333, + "grad_norm": 0.9029996991157532, + "learning_rate": 8.652733333333333e-06, + "loss": 1.250694808959961, + "step": 620500 + }, + { + "epoch": 82.74666666666667, + "grad_norm": 0.8475874662399292, + "learning_rate": 8.646066666666668e-06, + "loss": 1.2475482940673828, + "step": 620600 + }, + { + "epoch": 82.76, + "grad_norm": 0.9280046820640564, + "learning_rate": 8.6394e-06, + "loss": 1.247471923828125, + "step": 620700 + }, + { + "epoch": 82.77333333333333, + "grad_norm": 0.8895213603973389, + "learning_rate": 8.632733333333335e-06, + "loss": 1.249181594848633, + "step": 620800 + }, + { + "epoch": 82.78666666666666, + "grad_norm": 0.9662532806396484, + "learning_rate": 8.626066666666667e-06, + "loss": 1.2477493286132812, + "step": 620900 + }, + { + "epoch": 82.8, + "grad_norm": 0.9350543022155762, + "learning_rate": 8.619400000000001e-06, + "loss": 1.2516327667236329, + "step": 621000 + }, + { + "epoch": 82.81333333333333, + "grad_norm": 0.9173975586891174, + "learning_rate": 8.612733333333333e-06, + "loss": 1.2521589660644532, + "step": 621100 + }, + { + "epoch": 82.82666666666667, + "grad_norm": 0.9485138654708862, + "learning_rate": 8.606066666666667e-06, + "loss": 1.2502504730224608, + "step": 621200 + }, + { + "epoch": 82.84, + "grad_norm": 0.9641520977020264, + "learning_rate": 8.599466666666666e-06, + "loss": 1.2493783569335937, + "step": 621300 + }, + { + "epoch": 82.85333333333334, + "grad_norm": 0.9128257036209106, + "learning_rate": 8.5928e-06, + "loss": 1.2476416778564454, + "step": 621400 + }, + { + "epoch": 82.86666666666666, + "grad_norm": 0.926476001739502, + "learning_rate": 8.586133333333334e-06, + "loss": 1.2498722076416016, + "step": 621500 + }, + { + "epoch": 82.88, + "grad_norm": 0.8476603031158447, + "learning_rate": 8.579466666666668e-06, + "loss": 1.2490251922607423, + "step": 621600 + }, + { + "epoch": 82.89333333333333, + "grad_norm": 0.9261386394500732, + "learning_rate": 8.5728e-06, + "loss": 1.2508720397949218, + "step": 621700 + }, + { + "epoch": 82.90666666666667, + "grad_norm": 0.9281954765319824, + "learning_rate": 8.566133333333334e-06, + "loss": 1.2504344177246094, + "step": 621800 + }, + { + "epoch": 82.92, + "grad_norm": 0.9179771542549133, + "learning_rate": 8.559466666666667e-06, + "loss": 1.2538750457763672, + "step": 621900 + }, + { + "epoch": 82.93333333333334, + "grad_norm": 0.931770920753479, + "learning_rate": 8.5528e-06, + "loss": 1.251114959716797, + "step": 622000 + }, + { + "epoch": 82.94666666666667, + "grad_norm": 0.9326673150062561, + "learning_rate": 8.546133333333334e-06, + "loss": 1.2516678619384765, + "step": 622100 + }, + { + "epoch": 82.96, + "grad_norm": 0.9263719320297241, + "learning_rate": 8.539466666666667e-06, + "loss": 1.2495791625976562, + "step": 622200 + }, + { + "epoch": 82.97333333333333, + "grad_norm": 0.902750551700592, + "learning_rate": 8.5328e-06, + "loss": 1.2547737884521484, + "step": 622300 + }, + { + "epoch": 82.98666666666666, + "grad_norm": 0.9616686105728149, + "learning_rate": 8.526133333333333e-06, + "loss": 1.2510566711425781, + "step": 622400 + }, + { + "epoch": 83.0, + "grad_norm": 0.9818671941757202, + "learning_rate": 8.519466666666667e-06, + "loss": 1.255392837524414, + "step": 622500 + }, + { + "epoch": 83.01333333333334, + "grad_norm": 0.8741009831428528, + "learning_rate": 8.5128e-06, + "loss": 1.2268238830566407, + "step": 622600 + }, + { + "epoch": 83.02666666666667, + "grad_norm": 0.8773664236068726, + "learning_rate": 8.506133333333333e-06, + "loss": 1.2288787078857422, + "step": 622700 + }, + { + "epoch": 83.04, + "grad_norm": 0.896050214767456, + "learning_rate": 8.499466666666667e-06, + "loss": 1.2286920166015625, + "step": 622800 + }, + { + "epoch": 83.05333333333333, + "grad_norm": 0.8688726425170898, + "learning_rate": 8.492800000000001e-06, + "loss": 1.2317049407958984, + "step": 622900 + }, + { + "epoch": 83.06666666666666, + "grad_norm": 0.8627607226371765, + "learning_rate": 8.486133333333333e-06, + "loss": 1.2319934844970704, + "step": 623000 + }, + { + "epoch": 83.08, + "grad_norm": 0.9010234475135803, + "learning_rate": 8.479466666666667e-06, + "loss": 1.227967758178711, + "step": 623100 + }, + { + "epoch": 83.09333333333333, + "grad_norm": 0.9134891629219055, + "learning_rate": 8.4728e-06, + "loss": 1.2302108001708985, + "step": 623200 + }, + { + "epoch": 83.10666666666667, + "grad_norm": 0.8885038495063782, + "learning_rate": 8.466133333333334e-06, + "loss": 1.2306111145019532, + "step": 623300 + }, + { + "epoch": 83.12, + "grad_norm": 0.8855066299438477, + "learning_rate": 8.459533333333333e-06, + "loss": 1.2339430236816407, + "step": 623400 + }, + { + "epoch": 83.13333333333334, + "grad_norm": 0.8828930258750916, + "learning_rate": 8.452866666666667e-06, + "loss": 1.2353226470947265, + "step": 623500 + }, + { + "epoch": 83.14666666666666, + "grad_norm": 0.875651478767395, + "learning_rate": 8.4462e-06, + "loss": 1.2287565612792968, + "step": 623600 + }, + { + "epoch": 83.16, + "grad_norm": 0.8633849024772644, + "learning_rate": 8.439533333333335e-06, + "loss": 1.2340455627441407, + "step": 623700 + }, + { + "epoch": 83.17333333333333, + "grad_norm": 0.8406652212142944, + "learning_rate": 8.432866666666667e-06, + "loss": 1.2317752838134766, + "step": 623800 + }, + { + "epoch": 83.18666666666667, + "grad_norm": 0.8680077791213989, + "learning_rate": 8.4262e-06, + "loss": 1.2286119079589843, + "step": 623900 + }, + { + "epoch": 83.2, + "grad_norm": 0.8827568888664246, + "learning_rate": 8.419533333333333e-06, + "loss": 1.2330582427978516, + "step": 624000 + }, + { + "epoch": 83.21333333333334, + "grad_norm": 0.8410494923591614, + "learning_rate": 8.412866666666667e-06, + "loss": 1.2319648742675782, + "step": 624100 + }, + { + "epoch": 83.22666666666667, + "grad_norm": 0.945569634437561, + "learning_rate": 8.406200000000001e-06, + "loss": 1.2348339080810546, + "step": 624200 + }, + { + "epoch": 83.24, + "grad_norm": 0.9145014882087708, + "learning_rate": 8.399533333333335e-06, + "loss": 1.2309622192382812, + "step": 624300 + }, + { + "epoch": 83.25333333333333, + "grad_norm": 0.8928866982460022, + "learning_rate": 8.392866666666667e-06, + "loss": 1.2331744384765626, + "step": 624400 + }, + { + "epoch": 83.26666666666667, + "grad_norm": 0.9226345419883728, + "learning_rate": 8.386200000000001e-06, + "loss": 1.2304218292236329, + "step": 624500 + }, + { + "epoch": 83.28, + "grad_norm": 0.9208539128303528, + "learning_rate": 8.379533333333333e-06, + "loss": 1.2353579711914062, + "step": 624600 + }, + { + "epoch": 83.29333333333334, + "grad_norm": 0.8835161328315735, + "learning_rate": 8.372866666666667e-06, + "loss": 1.2308840942382813, + "step": 624700 + }, + { + "epoch": 83.30666666666667, + "grad_norm": 0.9109699130058289, + "learning_rate": 8.3662e-06, + "loss": 1.2373240661621094, + "step": 624800 + }, + { + "epoch": 83.32, + "grad_norm": 0.8914778232574463, + "learning_rate": 8.359533333333334e-06, + "loss": 1.2385607147216797, + "step": 624900 + }, + { + "epoch": 83.33333333333333, + "grad_norm": 0.9099097847938538, + "learning_rate": 8.352866666666668e-06, + "loss": 1.2351886749267578, + "step": 625000 + }, + { + "epoch": 83.34666666666666, + "grad_norm": 0.9224347472190857, + "learning_rate": 8.3462e-06, + "loss": 1.239847412109375, + "step": 625100 + }, + { + "epoch": 83.36, + "grad_norm": 0.8941978216171265, + "learning_rate": 8.339533333333334e-06, + "loss": 1.2408080291748047, + "step": 625200 + }, + { + "epoch": 83.37333333333333, + "grad_norm": 0.9112878441810608, + "learning_rate": 8.332866666666666e-06, + "loss": 1.2382213592529296, + "step": 625300 + }, + { + "epoch": 83.38666666666667, + "grad_norm": 0.8820027112960815, + "learning_rate": 8.326266666666667e-06, + "loss": 1.2374537658691407, + "step": 625400 + }, + { + "epoch": 83.4, + "grad_norm": 0.9008810520172119, + "learning_rate": 8.3196e-06, + "loss": 1.2357157897949218, + "step": 625500 + }, + { + "epoch": 83.41333333333333, + "grad_norm": 0.8950514793395996, + "learning_rate": 8.312933333333333e-06, + "loss": 1.2395166778564453, + "step": 625600 + }, + { + "epoch": 83.42666666666666, + "grad_norm": 0.877662718296051, + "learning_rate": 8.306266666666667e-06, + "loss": 1.2368050384521485, + "step": 625700 + }, + { + "epoch": 83.44, + "grad_norm": 0.8988947868347168, + "learning_rate": 8.299600000000001e-06, + "loss": 1.2367508697509766, + "step": 625800 + }, + { + "epoch": 83.45333333333333, + "grad_norm": 0.8748953342437744, + "learning_rate": 8.292933333333333e-06, + "loss": 1.2388724517822265, + "step": 625900 + }, + { + "epoch": 83.46666666666667, + "grad_norm": 0.937595009803772, + "learning_rate": 8.286266666666667e-06, + "loss": 1.2392095947265624, + "step": 626000 + }, + { + "epoch": 83.48, + "grad_norm": 0.9471210241317749, + "learning_rate": 8.2796e-06, + "loss": 1.236856460571289, + "step": 626100 + }, + { + "epoch": 83.49333333333334, + "grad_norm": 0.8821884393692017, + "learning_rate": 8.272933333333333e-06, + "loss": 1.239179916381836, + "step": 626200 + }, + { + "epoch": 83.50666666666666, + "grad_norm": 0.919651210308075, + "learning_rate": 8.266266666666667e-06, + "loss": 1.2402806854248047, + "step": 626300 + }, + { + "epoch": 83.52, + "grad_norm": 0.9665860533714294, + "learning_rate": 8.259600000000001e-06, + "loss": 1.2379183197021484, + "step": 626400 + }, + { + "epoch": 83.53333333333333, + "grad_norm": 0.8893381357192993, + "learning_rate": 8.252933333333334e-06, + "loss": 1.2422509765625, + "step": 626500 + }, + { + "epoch": 83.54666666666667, + "grad_norm": 0.9082131385803223, + "learning_rate": 8.246266666666668e-06, + "loss": 1.2425847625732422, + "step": 626600 + }, + { + "epoch": 83.56, + "grad_norm": 0.9207640290260315, + "learning_rate": 8.2396e-06, + "loss": 1.2419153594970702, + "step": 626700 + }, + { + "epoch": 83.57333333333334, + "grad_norm": 0.8709291219711304, + "learning_rate": 8.232933333333334e-06, + "loss": 1.2439161682128905, + "step": 626800 + }, + { + "epoch": 83.58666666666667, + "grad_norm": 0.945469856262207, + "learning_rate": 8.226266666666666e-06, + "loss": 1.2438876342773437, + "step": 626900 + }, + { + "epoch": 83.6, + "grad_norm": 0.8752225041389465, + "learning_rate": 8.219600000000002e-06, + "loss": 1.2426612854003907, + "step": 627000 + }, + { + "epoch": 83.61333333333333, + "grad_norm": 0.9232311844825745, + "learning_rate": 8.212933333333334e-06, + "loss": 1.2439415740966797, + "step": 627100 + }, + { + "epoch": 83.62666666666667, + "grad_norm": 0.9110270142555237, + "learning_rate": 8.206266666666668e-06, + "loss": 1.2405470275878907, + "step": 627200 + }, + { + "epoch": 83.64, + "grad_norm": 0.8702139854431152, + "learning_rate": 8.1996e-06, + "loss": 1.2478545379638672, + "step": 627300 + }, + { + "epoch": 83.65333333333334, + "grad_norm": 0.9222458004951477, + "learning_rate": 8.193000000000001e-06, + "loss": 1.2415824127197266, + "step": 627400 + }, + { + "epoch": 83.66666666666667, + "grad_norm": 0.8984431624412537, + "learning_rate": 8.186333333333333e-06, + "loss": 1.2407730102539063, + "step": 627500 + }, + { + "epoch": 83.68, + "grad_norm": 0.9315071702003479, + "learning_rate": 8.179666666666667e-06, + "loss": 1.240757598876953, + "step": 627600 + }, + { + "epoch": 83.69333333333333, + "grad_norm": 0.8998625874519348, + "learning_rate": 8.173e-06, + "loss": 1.2405057525634766, + "step": 627700 + }, + { + "epoch": 83.70666666666666, + "grad_norm": 0.9560902714729309, + "learning_rate": 8.166333333333333e-06, + "loss": 1.2425275421142579, + "step": 627800 + }, + { + "epoch": 83.72, + "grad_norm": 0.9313591718673706, + "learning_rate": 8.159666666666667e-06, + "loss": 1.2417723083496093, + "step": 627900 + }, + { + "epoch": 83.73333333333333, + "grad_norm": 0.8887977600097656, + "learning_rate": 8.153000000000001e-06, + "loss": 1.2461432647705077, + "step": 628000 + }, + { + "epoch": 83.74666666666667, + "grad_norm": 0.8665767908096313, + "learning_rate": 8.146333333333334e-06, + "loss": 1.2395530700683595, + "step": 628100 + }, + { + "epoch": 83.76, + "grad_norm": 0.8512284755706787, + "learning_rate": 8.139666666666668e-06, + "loss": 1.2442801666259766, + "step": 628200 + }, + { + "epoch": 83.77333333333333, + "grad_norm": 0.9400811791419983, + "learning_rate": 8.133e-06, + "loss": 1.244218521118164, + "step": 628300 + }, + { + "epoch": 83.78666666666666, + "grad_norm": 0.9075484275817871, + "learning_rate": 8.126333333333334e-06, + "loss": 1.245132827758789, + "step": 628400 + }, + { + "epoch": 83.8, + "grad_norm": 0.9220568537712097, + "learning_rate": 8.119666666666668e-06, + "loss": 1.2457878875732422, + "step": 628500 + }, + { + "epoch": 83.81333333333333, + "grad_norm": 0.8934618830680847, + "learning_rate": 8.113e-06, + "loss": 1.2488687896728516, + "step": 628600 + }, + { + "epoch": 83.82666666666667, + "grad_norm": 0.9469342231750488, + "learning_rate": 8.106333333333334e-06, + "loss": 1.2456256103515626, + "step": 628700 + }, + { + "epoch": 83.84, + "grad_norm": 0.8682982921600342, + "learning_rate": 8.099666666666666e-06, + "loss": 1.2437528991699218, + "step": 628800 + }, + { + "epoch": 83.85333333333334, + "grad_norm": 0.9430522918701172, + "learning_rate": 8.093e-06, + "loss": 1.2466936492919922, + "step": 628900 + }, + { + "epoch": 83.86666666666666, + "grad_norm": 0.9409758448600769, + "learning_rate": 8.086333333333333e-06, + "loss": 1.244860610961914, + "step": 629000 + }, + { + "epoch": 83.88, + "grad_norm": 0.958746612071991, + "learning_rate": 8.079666666666667e-06, + "loss": 1.246984634399414, + "step": 629100 + }, + { + "epoch": 83.89333333333333, + "grad_norm": 0.8642282485961914, + "learning_rate": 8.073e-06, + "loss": 1.2486931610107421, + "step": 629200 + }, + { + "epoch": 83.90666666666667, + "grad_norm": 0.9085518717765808, + "learning_rate": 8.066333333333334e-06, + "loss": 1.2516922760009765, + "step": 629300 + }, + { + "epoch": 83.92, + "grad_norm": 0.8967764973640442, + "learning_rate": 8.059733333333335e-06, + "loss": 1.2464397430419922, + "step": 629400 + }, + { + "epoch": 83.93333333333334, + "grad_norm": 0.9250491261482239, + "learning_rate": 8.053066666666667e-06, + "loss": 1.2472023010253905, + "step": 629500 + }, + { + "epoch": 83.94666666666667, + "grad_norm": 0.893845796585083, + "learning_rate": 8.0464e-06, + "loss": 1.2489615631103517, + "step": 629600 + }, + { + "epoch": 83.96, + "grad_norm": 0.907304048538208, + "learning_rate": 8.039733333333334e-06, + "loss": 1.2466935729980468, + "step": 629700 + }, + { + "epoch": 83.97333333333333, + "grad_norm": 0.8819485902786255, + "learning_rate": 8.033066666666666e-06, + "loss": 1.244398651123047, + "step": 629800 + }, + { + "epoch": 83.98666666666666, + "grad_norm": 0.9273881912231445, + "learning_rate": 8.0264e-06, + "loss": 1.2486519622802734, + "step": 629900 + }, + { + "epoch": 84.0, + "grad_norm": 0.879425585269928, + "learning_rate": 8.019733333333334e-06, + "loss": 1.2535282897949218, + "step": 630000 + }, + { + "epoch": 84.01333333333334, + "grad_norm": 0.8982846140861511, + "learning_rate": 8.013066666666668e-06, + "loss": 1.2259478759765625, + "step": 630100 + }, + { + "epoch": 84.02666666666667, + "grad_norm": 0.9428343176841736, + "learning_rate": 8.0064e-06, + "loss": 1.228878936767578, + "step": 630200 + }, + { + "epoch": 84.04, + "grad_norm": 0.9072933197021484, + "learning_rate": 7.999733333333334e-06, + "loss": 1.223412399291992, + "step": 630300 + }, + { + "epoch": 84.05333333333333, + "grad_norm": 0.9243832230567932, + "learning_rate": 7.993066666666666e-06, + "loss": 1.224007797241211, + "step": 630400 + }, + { + "epoch": 84.06666666666666, + "grad_norm": 0.8180492520332336, + "learning_rate": 7.9864e-06, + "loss": 1.2259696960449218, + "step": 630500 + }, + { + "epoch": 84.08, + "grad_norm": 0.888479471206665, + "learning_rate": 7.979733333333334e-06, + "loss": 1.2236656951904297, + "step": 630600 + }, + { + "epoch": 84.09333333333333, + "grad_norm": 0.9106174111366272, + "learning_rate": 7.973066666666668e-06, + "loss": 1.2281214904785156, + "step": 630700 + }, + { + "epoch": 84.10666666666667, + "grad_norm": 0.9094051122665405, + "learning_rate": 7.9664e-06, + "loss": 1.2281082916259765, + "step": 630800 + }, + { + "epoch": 84.12, + "grad_norm": 0.9189176559448242, + "learning_rate": 7.959733333333334e-06, + "loss": 1.2266500091552734, + "step": 630900 + }, + { + "epoch": 84.13333333333334, + "grad_norm": 0.8246629238128662, + "learning_rate": 7.953066666666667e-06, + "loss": 1.2251168823242187, + "step": 631000 + }, + { + "epoch": 84.14666666666666, + "grad_norm": 0.826525866985321, + "learning_rate": 7.9464e-06, + "loss": 1.2267461395263672, + "step": 631100 + }, + { + "epoch": 84.16, + "grad_norm": 0.9305570721626282, + "learning_rate": 7.939733333333333e-06, + "loss": 1.2317483520507813, + "step": 631200 + }, + { + "epoch": 84.17333333333333, + "grad_norm": 0.877616822719574, + "learning_rate": 7.933066666666667e-06, + "loss": 1.2281706237792969, + "step": 631300 + }, + { + "epoch": 84.18666666666667, + "grad_norm": 0.9188335537910461, + "learning_rate": 7.926466666666666e-06, + "loss": 1.2292250061035157, + "step": 631400 + }, + { + "epoch": 84.2, + "grad_norm": 0.9196408987045288, + "learning_rate": 7.919800000000002e-06, + "loss": 1.2331906127929688, + "step": 631500 + }, + { + "epoch": 84.21333333333334, + "grad_norm": 0.9125308990478516, + "learning_rate": 7.913133333333334e-06, + "loss": 1.2301849365234374, + "step": 631600 + }, + { + "epoch": 84.22666666666667, + "grad_norm": 0.8713774681091309, + "learning_rate": 7.906466666666668e-06, + "loss": 1.230985107421875, + "step": 631700 + }, + { + "epoch": 84.24, + "grad_norm": 0.9613950848579407, + "learning_rate": 7.8998e-06, + "loss": 1.2276271057128907, + "step": 631800 + }, + { + "epoch": 84.25333333333333, + "grad_norm": 0.8837341666221619, + "learning_rate": 7.893133333333334e-06, + "loss": 1.2295457458496093, + "step": 631900 + }, + { + "epoch": 84.26666666666667, + "grad_norm": 0.8872280120849609, + "learning_rate": 7.886466666666666e-06, + "loss": 1.2273683166503906, + "step": 632000 + }, + { + "epoch": 84.28, + "grad_norm": 0.8547608852386475, + "learning_rate": 7.8798e-06, + "loss": 1.2305823516845704, + "step": 632100 + }, + { + "epoch": 84.29333333333334, + "grad_norm": 0.9107147455215454, + "learning_rate": 7.873133333333334e-06, + "loss": 1.2315924072265625, + "step": 632200 + }, + { + "epoch": 84.30666666666667, + "grad_norm": 0.8627474904060364, + "learning_rate": 7.866466666666667e-06, + "loss": 1.230730972290039, + "step": 632300 + }, + { + "epoch": 84.32, + "grad_norm": 0.9304380416870117, + "learning_rate": 7.8598e-06, + "loss": 1.2302085876464843, + "step": 632400 + }, + { + "epoch": 84.33333333333333, + "grad_norm": 0.8998819589614868, + "learning_rate": 7.853133333333333e-06, + "loss": 1.2364775085449218, + "step": 632500 + }, + { + "epoch": 84.34666666666666, + "grad_norm": 0.8804898858070374, + "learning_rate": 7.846466666666667e-06, + "loss": 1.2302351379394532, + "step": 632600 + }, + { + "epoch": 84.36, + "grad_norm": 0.8894650936126709, + "learning_rate": 7.8398e-06, + "loss": 1.2332183074951173, + "step": 632700 + }, + { + "epoch": 84.37333333333333, + "grad_norm": 0.8644715547561646, + "learning_rate": 7.833133333333335e-06, + "loss": 1.2344248962402344, + "step": 632800 + }, + { + "epoch": 84.38666666666667, + "grad_norm": 0.9465084671974182, + "learning_rate": 7.826466666666667e-06, + "loss": 1.2316624450683593, + "step": 632900 + }, + { + "epoch": 84.4, + "grad_norm": 0.9370139241218567, + "learning_rate": 7.819800000000001e-06, + "loss": 1.2370130157470702, + "step": 633000 + }, + { + "epoch": 84.41333333333333, + "grad_norm": 0.888559877872467, + "learning_rate": 7.813133333333333e-06, + "loss": 1.2325920867919922, + "step": 633100 + }, + { + "epoch": 84.42666666666666, + "grad_norm": 0.8683785200119019, + "learning_rate": 7.806466666666667e-06, + "loss": 1.229187240600586, + "step": 633200 + }, + { + "epoch": 84.44, + "grad_norm": 0.9215974807739258, + "learning_rate": 7.7998e-06, + "loss": 1.2338642120361327, + "step": 633300 + }, + { + "epoch": 84.45333333333333, + "grad_norm": 0.9330242276191711, + "learning_rate": 7.7932e-06, + "loss": 1.234636001586914, + "step": 633400 + }, + { + "epoch": 84.46666666666667, + "grad_norm": 0.8812191486358643, + "learning_rate": 7.786533333333332e-06, + "loss": 1.233119659423828, + "step": 633500 + }, + { + "epoch": 84.48, + "grad_norm": 0.9350599646568298, + "learning_rate": 7.779866666666666e-06, + "loss": 1.2376564788818358, + "step": 633600 + }, + { + "epoch": 84.49333333333334, + "grad_norm": 0.8722426295280457, + "learning_rate": 7.7732e-06, + "loss": 1.2354527282714844, + "step": 633700 + }, + { + "epoch": 84.50666666666666, + "grad_norm": 0.9167805910110474, + "learning_rate": 7.766533333333334e-06, + "loss": 1.2361752319335937, + "step": 633800 + }, + { + "epoch": 84.52, + "grad_norm": 0.908461332321167, + "learning_rate": 7.759866666666667e-06, + "loss": 1.232997589111328, + "step": 633900 + }, + { + "epoch": 84.53333333333333, + "grad_norm": 0.9203801155090332, + "learning_rate": 7.7532e-06, + "loss": 1.2356761169433594, + "step": 634000 + }, + { + "epoch": 84.54666666666667, + "grad_norm": 0.8989818692207336, + "learning_rate": 7.746533333333333e-06, + "loss": 1.2334909057617187, + "step": 634100 + }, + { + "epoch": 84.56, + "grad_norm": 0.9835088849067688, + "learning_rate": 7.739866666666667e-06, + "loss": 1.2388640594482423, + "step": 634200 + }, + { + "epoch": 84.57333333333334, + "grad_norm": 0.8754939436912537, + "learning_rate": 7.7332e-06, + "loss": 1.241256866455078, + "step": 634300 + }, + { + "epoch": 84.58666666666667, + "grad_norm": 0.8577386736869812, + "learning_rate": 7.726533333333335e-06, + "loss": 1.2348951721191406, + "step": 634400 + }, + { + "epoch": 84.6, + "grad_norm": 0.8799518346786499, + "learning_rate": 7.719866666666667e-06, + "loss": 1.2372528839111328, + "step": 634500 + }, + { + "epoch": 84.61333333333333, + "grad_norm": 0.9047410488128662, + "learning_rate": 7.713200000000001e-06, + "loss": 1.2386643981933594, + "step": 634600 + }, + { + "epoch": 84.62666666666667, + "grad_norm": 0.9157127141952515, + "learning_rate": 7.706533333333333e-06, + "loss": 1.2385972595214845, + "step": 634700 + }, + { + "epoch": 84.64, + "grad_norm": 0.9638254046440125, + "learning_rate": 7.699866666666667e-06, + "loss": 1.236525115966797, + "step": 634800 + }, + { + "epoch": 84.65333333333334, + "grad_norm": 0.8745006322860718, + "learning_rate": 7.693200000000001e-06, + "loss": 1.237788314819336, + "step": 634900 + }, + { + "epoch": 84.66666666666667, + "grad_norm": 0.8753082752227783, + "learning_rate": 7.686533333333333e-06, + "loss": 1.2403019714355468, + "step": 635000 + }, + { + "epoch": 84.68, + "grad_norm": 0.9249312877655029, + "learning_rate": 7.679866666666667e-06, + "loss": 1.2393556976318358, + "step": 635100 + }, + { + "epoch": 84.69333333333333, + "grad_norm": 0.9037955403327942, + "learning_rate": 7.6732e-06, + "loss": 1.240056838989258, + "step": 635200 + }, + { + "epoch": 84.70666666666666, + "grad_norm": 0.8841052651405334, + "learning_rate": 7.666533333333334e-06, + "loss": 1.2407506561279298, + "step": 635300 + }, + { + "epoch": 84.72, + "grad_norm": 0.8909189701080322, + "learning_rate": 7.659933333333334e-06, + "loss": 1.2383670806884766, + "step": 635400 + }, + { + "epoch": 84.73333333333333, + "grad_norm": 0.827193021774292, + "learning_rate": 7.653266666666667e-06, + "loss": 1.2386473083496095, + "step": 635500 + }, + { + "epoch": 84.74666666666667, + "grad_norm": 0.8958622813224792, + "learning_rate": 7.6466e-06, + "loss": 1.2380664825439454, + "step": 635600 + }, + { + "epoch": 84.76, + "grad_norm": 0.9114907383918762, + "learning_rate": 7.639933333333333e-06, + "loss": 1.240849151611328, + "step": 635700 + }, + { + "epoch": 84.77333333333333, + "grad_norm": 0.907952070236206, + "learning_rate": 7.633266666666667e-06, + "loss": 1.2389560699462892, + "step": 635800 + }, + { + "epoch": 84.78666666666666, + "grad_norm": 0.8953930735588074, + "learning_rate": 7.626600000000001e-06, + "loss": 1.2392295074462891, + "step": 635900 + }, + { + "epoch": 84.8, + "grad_norm": 0.8722439408302307, + "learning_rate": 7.619933333333333e-06, + "loss": 1.2366736602783204, + "step": 636000 + }, + { + "epoch": 84.81333333333333, + "grad_norm": 0.9456676244735718, + "learning_rate": 7.613266666666667e-06, + "loss": 1.237574005126953, + "step": 636100 + }, + { + "epoch": 84.82666666666667, + "grad_norm": 0.919913113117218, + "learning_rate": 7.6066e-06, + "loss": 1.2442679595947266, + "step": 636200 + }, + { + "epoch": 84.84, + "grad_norm": 0.9416049718856812, + "learning_rate": 7.599933333333334e-06, + "loss": 1.243212890625, + "step": 636300 + }, + { + "epoch": 84.85333333333334, + "grad_norm": 0.9268980026245117, + "learning_rate": 7.593266666666666e-06, + "loss": 1.2382852172851562, + "step": 636400 + }, + { + "epoch": 84.86666666666666, + "grad_norm": 0.8669841885566711, + "learning_rate": 7.5866e-06, + "loss": 1.240669708251953, + "step": 636500 + }, + { + "epoch": 84.88, + "grad_norm": 0.9298033714294434, + "learning_rate": 7.5799333333333335e-06, + "loss": 1.2412749481201173, + "step": 636600 + }, + { + "epoch": 84.89333333333333, + "grad_norm": 0.962435245513916, + "learning_rate": 7.573266666666667e-06, + "loss": 1.2403402709960938, + "step": 636700 + }, + { + "epoch": 84.90666666666667, + "grad_norm": 0.8809468150138855, + "learning_rate": 7.5666e-06, + "loss": 1.240942153930664, + "step": 636800 + }, + { + "epoch": 84.92, + "grad_norm": 0.8820023536682129, + "learning_rate": 7.5599333333333345e-06, + "loss": 1.2404846954345703, + "step": 636900 + }, + { + "epoch": 84.93333333333334, + "grad_norm": 0.9361487030982971, + "learning_rate": 7.553266666666667e-06, + "loss": 1.246995849609375, + "step": 637000 + }, + { + "epoch": 84.94666666666667, + "grad_norm": 0.8973338603973389, + "learning_rate": 7.546600000000001e-06, + "loss": 1.242446517944336, + "step": 637100 + }, + { + "epoch": 84.96, + "grad_norm": 0.9044018387794495, + "learning_rate": 7.539933333333334e-06, + "loss": 1.2397714233398438, + "step": 637200 + }, + { + "epoch": 84.97333333333333, + "grad_norm": 0.9448003768920898, + "learning_rate": 7.533266666666668e-06, + "loss": 1.239171905517578, + "step": 637300 + }, + { + "epoch": 84.98666666666666, + "grad_norm": 0.9056717753410339, + "learning_rate": 7.526666666666667e-06, + "loss": 1.2440061950683594, + "step": 637400 + }, + { + "epoch": 85.0, + "grad_norm": 0.9282798171043396, + "learning_rate": 7.520000000000001e-06, + "loss": 1.2430106353759767, + "step": 637500 + }, + { + "epoch": 85.01333333333334, + "grad_norm": 0.8406403660774231, + "learning_rate": 7.513333333333333e-06, + "loss": 1.2223043823242188, + "step": 637600 + }, + { + "epoch": 85.02666666666667, + "grad_norm": 0.8572675585746765, + "learning_rate": 7.506666666666667e-06, + "loss": 1.2273347473144531, + "step": 637700 + }, + { + "epoch": 85.04, + "grad_norm": 0.887302815914154, + "learning_rate": 7.5e-06, + "loss": 1.221242446899414, + "step": 637800 + }, + { + "epoch": 85.05333333333333, + "grad_norm": 0.91096431016922, + "learning_rate": 7.493333333333334e-06, + "loss": 1.2202544403076172, + "step": 637900 + }, + { + "epoch": 85.06666666666666, + "grad_norm": 0.8980180621147156, + "learning_rate": 7.486666666666666e-06, + "loss": 1.2262554931640626, + "step": 638000 + }, + { + "epoch": 85.08, + "grad_norm": 0.9790130257606506, + "learning_rate": 7.480000000000001e-06, + "loss": 1.2260646057128906, + "step": 638100 + }, + { + "epoch": 85.09333333333333, + "grad_norm": 0.9041993021965027, + "learning_rate": 7.4733333333333335e-06, + "loss": 1.2228318023681641, + "step": 638200 + }, + { + "epoch": 85.10666666666667, + "grad_norm": 0.9332461953163147, + "learning_rate": 7.4666666666666675e-06, + "loss": 1.2237569427490234, + "step": 638300 + }, + { + "epoch": 85.12, + "grad_norm": 0.8508715033531189, + "learning_rate": 7.4600000000000006e-06, + "loss": 1.22271240234375, + "step": 638400 + }, + { + "epoch": 85.13333333333334, + "grad_norm": 0.8810603618621826, + "learning_rate": 7.453333333333333e-06, + "loss": 1.2232743835449218, + "step": 638500 + }, + { + "epoch": 85.14666666666666, + "grad_norm": 0.9365109801292419, + "learning_rate": 7.446666666666667e-06, + "loss": 1.2257044982910157, + "step": 638600 + }, + { + "epoch": 85.16, + "grad_norm": 0.9457574486732483, + "learning_rate": 7.44e-06, + "loss": 1.2268252563476563, + "step": 638700 + }, + { + "epoch": 85.17333333333333, + "grad_norm": 0.9184970855712891, + "learning_rate": 7.433333333333334e-06, + "loss": 1.2216042327880858, + "step": 638800 + }, + { + "epoch": 85.18666666666667, + "grad_norm": 0.8944892883300781, + "learning_rate": 7.426666666666666e-06, + "loss": 1.2262333679199218, + "step": 638900 + }, + { + "epoch": 85.2, + "grad_norm": 0.9582709670066833, + "learning_rate": 7.420000000000001e-06, + "loss": 1.2231621551513672, + "step": 639000 + }, + { + "epoch": 85.21333333333334, + "grad_norm": 0.9123549461364746, + "learning_rate": 7.413333333333333e-06, + "loss": 1.2277581787109375, + "step": 639100 + }, + { + "epoch": 85.22666666666667, + "grad_norm": 0.8903558850288391, + "learning_rate": 7.406666666666667e-06, + "loss": 1.2252957916259766, + "step": 639200 + }, + { + "epoch": 85.24, + "grad_norm": 0.8448173999786377, + "learning_rate": 7.4e-06, + "loss": 1.224297332763672, + "step": 639300 + }, + { + "epoch": 85.25333333333333, + "grad_norm": 0.9212110638618469, + "learning_rate": 7.3934e-06, + "loss": 1.2260472869873047, + "step": 639400 + }, + { + "epoch": 85.26666666666667, + "grad_norm": 0.8959601521492004, + "learning_rate": 7.386733333333333e-06, + "loss": 1.2307054901123047, + "step": 639500 + }, + { + "epoch": 85.28, + "grad_norm": 0.8986248970031738, + "learning_rate": 7.380066666666667e-06, + "loss": 1.2230642700195313, + "step": 639600 + }, + { + "epoch": 85.29333333333334, + "grad_norm": 0.9850512146949768, + "learning_rate": 7.3733999999999996e-06, + "loss": 1.2273857879638672, + "step": 639700 + }, + { + "epoch": 85.30666666666667, + "grad_norm": 0.8248298764228821, + "learning_rate": 7.3667333333333335e-06, + "loss": 1.226371307373047, + "step": 639800 + }, + { + "epoch": 85.32, + "grad_norm": 0.9425682425498962, + "learning_rate": 7.360066666666667e-06, + "loss": 1.2281211090087891, + "step": 639900 + }, + { + "epoch": 85.33333333333333, + "grad_norm": 0.8708743453025818, + "learning_rate": 7.353400000000001e-06, + "loss": 1.225609664916992, + "step": 640000 + }, + { + "epoch": 85.34666666666666, + "grad_norm": 0.9035684466362, + "learning_rate": 7.346733333333333e-06, + "loss": 1.2235333251953124, + "step": 640100 + }, + { + "epoch": 85.36, + "grad_norm": 0.9259425401687622, + "learning_rate": 7.340066666666668e-06, + "loss": 1.23236083984375, + "step": 640200 + }, + { + "epoch": 85.37333333333333, + "grad_norm": 0.9252036213874817, + "learning_rate": 7.3334e-06, + "loss": 1.229639205932617, + "step": 640300 + }, + { + "epoch": 85.38666666666667, + "grad_norm": 0.9062958359718323, + "learning_rate": 7.326733333333334e-06, + "loss": 1.2285384368896484, + "step": 640400 + }, + { + "epoch": 85.4, + "grad_norm": 0.9291536211967468, + "learning_rate": 7.320066666666667e-06, + "loss": 1.2298905944824219, + "step": 640500 + }, + { + "epoch": 85.41333333333333, + "grad_norm": 0.8647129535675049, + "learning_rate": 7.313400000000001e-06, + "loss": 1.2309508514404297, + "step": 640600 + }, + { + "epoch": 85.42666666666666, + "grad_norm": 0.9247118234634399, + "learning_rate": 7.306733333333333e-06, + "loss": 1.2306937408447265, + "step": 640700 + }, + { + "epoch": 85.44, + "grad_norm": 0.8799145221710205, + "learning_rate": 7.300066666666667e-06, + "loss": 1.226353759765625, + "step": 640800 + }, + { + "epoch": 85.45333333333333, + "grad_norm": 0.9392918944358826, + "learning_rate": 7.2934e-06, + "loss": 1.2263146209716798, + "step": 640900 + }, + { + "epoch": 85.46666666666667, + "grad_norm": 0.8683087229728699, + "learning_rate": 7.286733333333334e-06, + "loss": 1.2288311767578124, + "step": 641000 + }, + { + "epoch": 85.48, + "grad_norm": 0.9020020365715027, + "learning_rate": 7.2800666666666666e-06, + "loss": 1.229554214477539, + "step": 641100 + }, + { + "epoch": 85.49333333333334, + "grad_norm": 0.8641257882118225, + "learning_rate": 7.2734e-06, + "loss": 1.2283095550537109, + "step": 641200 + }, + { + "epoch": 85.50666666666666, + "grad_norm": 0.8976728320121765, + "learning_rate": 7.266733333333334e-06, + "loss": 1.2341390991210937, + "step": 641300 + }, + { + "epoch": 85.52, + "grad_norm": 0.9710721373558044, + "learning_rate": 7.260133333333334e-06, + "loss": 1.228611831665039, + "step": 641400 + }, + { + "epoch": 85.53333333333333, + "grad_norm": 0.9804433584213257, + "learning_rate": 7.253466666666667e-06, + "loss": 1.231660385131836, + "step": 641500 + }, + { + "epoch": 85.54666666666667, + "grad_norm": 0.9250527620315552, + "learning_rate": 7.246800000000001e-06, + "loss": 1.2287106323242187, + "step": 641600 + }, + { + "epoch": 85.56, + "grad_norm": 0.8953940868377686, + "learning_rate": 7.240133333333334e-06, + "loss": 1.2353031158447265, + "step": 641700 + }, + { + "epoch": 85.57333333333334, + "grad_norm": 0.8646306991577148, + "learning_rate": 7.233466666666668e-06, + "loss": 1.232652053833008, + "step": 641800 + }, + { + "epoch": 85.58666666666667, + "grad_norm": 0.9270492792129517, + "learning_rate": 7.2268e-06, + "loss": 1.2340243530273438, + "step": 641900 + }, + { + "epoch": 85.6, + "grad_norm": 0.9221645593643188, + "learning_rate": 7.220133333333334e-06, + "loss": 1.2317237091064452, + "step": 642000 + }, + { + "epoch": 85.61333333333333, + "grad_norm": 0.8994006514549255, + "learning_rate": 7.213466666666667e-06, + "loss": 1.2312322998046874, + "step": 642100 + }, + { + "epoch": 85.62666666666667, + "grad_norm": 0.9039101600646973, + "learning_rate": 7.206799999999999e-06, + "loss": 1.2359030151367187, + "step": 642200 + }, + { + "epoch": 85.64, + "grad_norm": 0.9876293540000916, + "learning_rate": 7.200133333333334e-06, + "loss": 1.231430435180664, + "step": 642300 + }, + { + "epoch": 85.65333333333334, + "grad_norm": 0.8660300970077515, + "learning_rate": 7.193466666666666e-06, + "loss": 1.232857437133789, + "step": 642400 + }, + { + "epoch": 85.66666666666667, + "grad_norm": 0.9719154834747314, + "learning_rate": 7.1868e-06, + "loss": 1.2365948486328124, + "step": 642500 + }, + { + "epoch": 85.68, + "grad_norm": 0.9251152276992798, + "learning_rate": 7.1801333333333335e-06, + "loss": 1.2319696044921875, + "step": 642600 + }, + { + "epoch": 85.69333333333333, + "grad_norm": 0.8920202255249023, + "learning_rate": 7.1734666666666675e-06, + "loss": 1.2325668334960938, + "step": 642700 + }, + { + "epoch": 85.70666666666666, + "grad_norm": 0.9049530625343323, + "learning_rate": 7.1668e-06, + "loss": 1.2362017822265625, + "step": 642800 + }, + { + "epoch": 85.72, + "grad_norm": 0.8955960869789124, + "learning_rate": 7.160133333333334e-06, + "loss": 1.2367591094970702, + "step": 642900 + }, + { + "epoch": 85.73333333333333, + "grad_norm": 0.8741152286529541, + "learning_rate": 7.153466666666667e-06, + "loss": 1.2382603454589844, + "step": 643000 + }, + { + "epoch": 85.74666666666667, + "grad_norm": 0.8936929106712341, + "learning_rate": 7.146800000000001e-06, + "loss": 1.2319417572021485, + "step": 643100 + }, + { + "epoch": 85.76, + "grad_norm": 0.8739801645278931, + "learning_rate": 7.140133333333333e-06, + "loss": 1.2322359466552735, + "step": 643200 + }, + { + "epoch": 85.77333333333333, + "grad_norm": 0.9064525961875916, + "learning_rate": 7.133466666666668e-06, + "loss": 1.2369744110107421, + "step": 643300 + }, + { + "epoch": 85.78666666666666, + "grad_norm": 0.8985515236854553, + "learning_rate": 7.1268e-06, + "loss": 1.2325567626953124, + "step": 643400 + }, + { + "epoch": 85.8, + "grad_norm": 0.9307603240013123, + "learning_rate": 7.120200000000001e-06, + "loss": 1.238876495361328, + "step": 643500 + }, + { + "epoch": 85.81333333333333, + "grad_norm": 0.8941517472267151, + "learning_rate": 7.113533333333333e-06, + "loss": 1.2391890716552734, + "step": 643600 + }, + { + "epoch": 85.82666666666667, + "grad_norm": 0.9674673676490784, + "learning_rate": 7.106866666666667e-06, + "loss": 1.2368927764892579, + "step": 643700 + }, + { + "epoch": 85.84, + "grad_norm": 0.933340847492218, + "learning_rate": 7.1002e-06, + "loss": 1.2422388458251954, + "step": 643800 + }, + { + "epoch": 85.85333333333334, + "grad_norm": 0.8938137888908386, + "learning_rate": 7.093533333333334e-06, + "loss": 1.2338928985595703, + "step": 643900 + }, + { + "epoch": 85.86666666666666, + "grad_norm": 0.8926107287406921, + "learning_rate": 7.0868666666666665e-06, + "loss": 1.2356930541992188, + "step": 644000 + }, + { + "epoch": 85.88, + "grad_norm": 0.8534455299377441, + "learning_rate": 7.0802e-06, + "loss": 1.2378578186035156, + "step": 644100 + }, + { + "epoch": 85.89333333333333, + "grad_norm": 1.000348448753357, + "learning_rate": 7.0735333333333335e-06, + "loss": 1.2363401794433593, + "step": 644200 + }, + { + "epoch": 85.90666666666667, + "grad_norm": 0.9621683359146118, + "learning_rate": 7.0668666666666675e-06, + "loss": 1.241478271484375, + "step": 644300 + }, + { + "epoch": 85.92, + "grad_norm": 0.9294373989105225, + "learning_rate": 7.0602e-06, + "loss": 1.237207565307617, + "step": 644400 + }, + { + "epoch": 85.93333333333334, + "grad_norm": 0.9206804037094116, + "learning_rate": 7.0535333333333346e-06, + "loss": 1.2392974090576172, + "step": 644500 + }, + { + "epoch": 85.94666666666667, + "grad_norm": 0.8890131115913391, + "learning_rate": 7.046866666666667e-06, + "loss": 1.2358542633056642, + "step": 644600 + }, + { + "epoch": 85.96, + "grad_norm": 0.887895941734314, + "learning_rate": 7.040200000000001e-06, + "loss": 1.2418438720703124, + "step": 644700 + }, + { + "epoch": 85.97333333333333, + "grad_norm": 0.8878814578056335, + "learning_rate": 7.033533333333334e-06, + "loss": 1.2417584991455077, + "step": 644800 + }, + { + "epoch": 85.98666666666666, + "grad_norm": 0.9163659811019897, + "learning_rate": 7.026866666666666e-06, + "loss": 1.2418124389648437, + "step": 644900 + }, + { + "epoch": 86.0, + "grad_norm": 0.9403581023216248, + "learning_rate": 7.0202e-06, + "loss": 1.2414751434326172, + "step": 645000 + }, + { + "epoch": 86.01333333333334, + "grad_norm": 0.8630901575088501, + "learning_rate": 7.013533333333333e-06, + "loss": 1.2175826263427734, + "step": 645100 + }, + { + "epoch": 86.02666666666667, + "grad_norm": 0.9154542684555054, + "learning_rate": 7.006866666666667e-06, + "loss": 1.2209982299804687, + "step": 645200 + }, + { + "epoch": 86.04, + "grad_norm": 0.9038174748420715, + "learning_rate": 7.0001999999999995e-06, + "loss": 1.216339340209961, + "step": 645300 + }, + { + "epoch": 86.05333333333333, + "grad_norm": 0.8506960272789001, + "learning_rate": 6.993533333333334e-06, + "loss": 1.218511962890625, + "step": 645400 + }, + { + "epoch": 86.06666666666666, + "grad_norm": 0.8634645342826843, + "learning_rate": 6.986933333333334e-06, + "loss": 1.2178488922119142, + "step": 645500 + }, + { + "epoch": 86.08, + "grad_norm": 0.9225000739097595, + "learning_rate": 6.9802666666666665e-06, + "loss": 1.2196299743652343, + "step": 645600 + }, + { + "epoch": 86.09333333333333, + "grad_norm": 0.9054206609725952, + "learning_rate": 6.973600000000001e-06, + "loss": 1.2221673583984376, + "step": 645700 + }, + { + "epoch": 86.10666666666667, + "grad_norm": 0.8930476307868958, + "learning_rate": 6.9669333333333336e-06, + "loss": 1.219794464111328, + "step": 645800 + }, + { + "epoch": 86.12, + "grad_norm": 0.8613491058349609, + "learning_rate": 6.960266666666667e-06, + "loss": 1.21840576171875, + "step": 645900 + }, + { + "epoch": 86.13333333333334, + "grad_norm": 0.9077932238578796, + "learning_rate": 6.953600000000001e-06, + "loss": 1.2229581451416016, + "step": 646000 + }, + { + "epoch": 86.14666666666666, + "grad_norm": 0.9440174102783203, + "learning_rate": 6.946933333333333e-06, + "loss": 1.217189178466797, + "step": 646100 + }, + { + "epoch": 86.16, + "grad_norm": 0.906891405582428, + "learning_rate": 6.940266666666667e-06, + "loss": 1.2184838104248046, + "step": 646200 + }, + { + "epoch": 86.17333333333333, + "grad_norm": 0.8963661193847656, + "learning_rate": 6.9336e-06, + "loss": 1.2230545043945313, + "step": 646300 + }, + { + "epoch": 86.18666666666667, + "grad_norm": 0.8720294833183289, + "learning_rate": 6.926933333333334e-06, + "loss": 1.2247891998291016, + "step": 646400 + }, + { + "epoch": 86.2, + "grad_norm": 0.9351063966751099, + "learning_rate": 6.920266666666666e-06, + "loss": 1.2246680450439453, + "step": 646500 + }, + { + "epoch": 86.21333333333334, + "grad_norm": 0.9471380114555359, + "learning_rate": 6.913600000000001e-06, + "loss": 1.2222270965576172, + "step": 646600 + }, + { + "epoch": 86.22666666666667, + "grad_norm": 0.8749629259109497, + "learning_rate": 6.906933333333333e-06, + "loss": 1.2154730987548827, + "step": 646700 + }, + { + "epoch": 86.24, + "grad_norm": 0.8750444650650024, + "learning_rate": 6.900266666666667e-06, + "loss": 1.2247186279296876, + "step": 646800 + }, + { + "epoch": 86.25333333333333, + "grad_norm": 0.9080207347869873, + "learning_rate": 6.8936e-06, + "loss": 1.2202265930175782, + "step": 646900 + }, + { + "epoch": 86.26666666666667, + "grad_norm": 0.9241020679473877, + "learning_rate": 6.886933333333334e-06, + "loss": 1.224848175048828, + "step": 647000 + }, + { + "epoch": 86.28, + "grad_norm": 0.907421350479126, + "learning_rate": 6.880266666666667e-06, + "loss": 1.2235704040527344, + "step": 647100 + }, + { + "epoch": 86.29333333333334, + "grad_norm": 0.9098572731018066, + "learning_rate": 6.8736000000000006e-06, + "loss": 1.2222378540039063, + "step": 647200 + }, + { + "epoch": 86.30666666666667, + "grad_norm": 0.8905967473983765, + "learning_rate": 6.866933333333334e-06, + "loss": 1.2262596130371093, + "step": 647300 + }, + { + "epoch": 86.32, + "grad_norm": 0.8770264387130737, + "learning_rate": 6.860266666666668e-06, + "loss": 1.2231716156005858, + "step": 647400 + }, + { + "epoch": 86.33333333333333, + "grad_norm": 0.8793537616729736, + "learning_rate": 6.853666666666667e-06, + "loss": 1.2286277770996095, + "step": 647500 + }, + { + "epoch": 86.34666666666666, + "grad_norm": 0.8772323131561279, + "learning_rate": 6.847000000000001e-06, + "loss": 1.2212282562255858, + "step": 647600 + }, + { + "epoch": 86.36, + "grad_norm": 0.891001284122467, + "learning_rate": 6.840333333333333e-06, + "loss": 1.222700729370117, + "step": 647700 + }, + { + "epoch": 86.37333333333333, + "grad_norm": 0.9272405505180359, + "learning_rate": 6.833666666666668e-06, + "loss": 1.2218807220458985, + "step": 647800 + }, + { + "epoch": 86.38666666666667, + "grad_norm": 0.884071409702301, + "learning_rate": 6.827e-06, + "loss": 1.2227737426757812, + "step": 647900 + }, + { + "epoch": 86.4, + "grad_norm": 0.9387223720550537, + "learning_rate": 6.820333333333334e-06, + "loss": 1.227510986328125, + "step": 648000 + }, + { + "epoch": 86.41333333333333, + "grad_norm": 0.8574748039245605, + "learning_rate": 6.813666666666667e-06, + "loss": 1.2250510406494142, + "step": 648100 + }, + { + "epoch": 86.42666666666666, + "grad_norm": 0.8585149049758911, + "learning_rate": 6.807000000000001e-06, + "loss": 1.2231393432617188, + "step": 648200 + }, + { + "epoch": 86.44, + "grad_norm": 0.8672378659248352, + "learning_rate": 6.800333333333333e-06, + "loss": 1.2262419891357421, + "step": 648300 + }, + { + "epoch": 86.45333333333333, + "grad_norm": 0.8681180477142334, + "learning_rate": 6.793666666666667e-06, + "loss": 1.2264180755615235, + "step": 648400 + }, + { + "epoch": 86.46666666666667, + "grad_norm": 0.9366236329078674, + "learning_rate": 6.787e-06, + "loss": 1.2281493377685546, + "step": 648500 + }, + { + "epoch": 86.48, + "grad_norm": 0.9453869462013245, + "learning_rate": 6.780333333333333e-06, + "loss": 1.2302886199951173, + "step": 648600 + }, + { + "epoch": 86.49333333333334, + "grad_norm": 0.8976516127586365, + "learning_rate": 6.773666666666667e-06, + "loss": 1.227205810546875, + "step": 648700 + }, + { + "epoch": 86.50666666666666, + "grad_norm": 0.9220427870750427, + "learning_rate": 6.767e-06, + "loss": 1.2235513305664063, + "step": 648800 + }, + { + "epoch": 86.52, + "grad_norm": 0.912756085395813, + "learning_rate": 6.760333333333334e-06, + "loss": 1.2255386352539062, + "step": 648900 + }, + { + "epoch": 86.53333333333333, + "grad_norm": 0.9162057042121887, + "learning_rate": 6.753666666666667e-06, + "loss": 1.2223670959472657, + "step": 649000 + }, + { + "epoch": 86.54666666666667, + "grad_norm": 0.8735973238945007, + "learning_rate": 6.747000000000001e-06, + "loss": 1.2262992858886719, + "step": 649100 + }, + { + "epoch": 86.56, + "grad_norm": 0.8713511228561401, + "learning_rate": 6.740333333333333e-06, + "loss": 1.231358871459961, + "step": 649200 + }, + { + "epoch": 86.57333333333334, + "grad_norm": 0.879443883895874, + "learning_rate": 6.733666666666667e-06, + "loss": 1.2286178588867187, + "step": 649300 + }, + { + "epoch": 86.58666666666667, + "grad_norm": 0.9119516015052795, + "learning_rate": 6.727e-06, + "loss": 1.2312828063964845, + "step": 649400 + }, + { + "epoch": 86.6, + "grad_norm": 0.9122266173362732, + "learning_rate": 6.7204e-06, + "loss": 1.2293184661865235, + "step": 649500 + }, + { + "epoch": 86.61333333333333, + "grad_norm": 0.9306323528289795, + "learning_rate": 6.713733333333333e-06, + "loss": 1.2252943420410156, + "step": 649600 + }, + { + "epoch": 86.62666666666667, + "grad_norm": 0.8929945230484009, + "learning_rate": 6.707066666666667e-06, + "loss": 1.2296338653564454, + "step": 649700 + }, + { + "epoch": 86.64, + "grad_norm": 0.9355345964431763, + "learning_rate": 6.700399999999999e-06, + "loss": 1.229610595703125, + "step": 649800 + }, + { + "epoch": 86.65333333333334, + "grad_norm": 0.9156262278556824, + "learning_rate": 6.693733333333334e-06, + "loss": 1.2348743438720704, + "step": 649900 + }, + { + "epoch": 86.66666666666667, + "grad_norm": 0.9362950921058655, + "learning_rate": 6.6870666666666665e-06, + "loss": 1.2279579162597656, + "step": 650000 + }, + { + "epoch": 86.68, + "grad_norm": 0.8823856711387634, + "learning_rate": 6.6804000000000004e-06, + "loss": 1.23043212890625, + "step": 650100 + }, + { + "epoch": 86.69333333333333, + "grad_norm": 0.9650241732597351, + "learning_rate": 6.6737333333333336e-06, + "loss": 1.2296434020996094, + "step": 650200 + }, + { + "epoch": 86.70666666666666, + "grad_norm": 0.8565574288368225, + "learning_rate": 6.6670666666666675e-06, + "loss": 1.2308535003662109, + "step": 650300 + }, + { + "epoch": 86.72, + "grad_norm": 0.9410964846611023, + "learning_rate": 6.6604e-06, + "loss": 1.2321768951416017, + "step": 650400 + }, + { + "epoch": 86.73333333333333, + "grad_norm": 0.9220337867736816, + "learning_rate": 6.653733333333334e-06, + "loss": 1.231683349609375, + "step": 650500 + }, + { + "epoch": 86.74666666666667, + "grad_norm": 0.8969945907592773, + "learning_rate": 6.647066666666667e-06, + "loss": 1.233789291381836, + "step": 650600 + }, + { + "epoch": 86.76, + "grad_norm": 0.9641741514205933, + "learning_rate": 6.640400000000001e-06, + "loss": 1.230896987915039, + "step": 650700 + }, + { + "epoch": 86.77333333333333, + "grad_norm": 0.9212261438369751, + "learning_rate": 6.633733333333333e-06, + "loss": 1.2316611480712891, + "step": 650800 + }, + { + "epoch": 86.78666666666666, + "grad_norm": 0.8244799971580505, + "learning_rate": 6.627066666666668e-06, + "loss": 1.2281710815429687, + "step": 650900 + }, + { + "epoch": 86.8, + "grad_norm": 0.89630126953125, + "learning_rate": 6.6204e-06, + "loss": 1.2288339233398438, + "step": 651000 + }, + { + "epoch": 86.81333333333333, + "grad_norm": 0.8904646635055542, + "learning_rate": 6.613733333333334e-06, + "loss": 1.2315651702880859, + "step": 651100 + }, + { + "epoch": 86.82666666666667, + "grad_norm": 0.9223039150238037, + "learning_rate": 6.607066666666667e-06, + "loss": 1.2328720855712891, + "step": 651200 + }, + { + "epoch": 86.84, + "grad_norm": 0.8785363435745239, + "learning_rate": 6.6003999999999995e-06, + "loss": 1.2333258056640626, + "step": 651300 + }, + { + "epoch": 86.85333333333334, + "grad_norm": 0.9430354237556458, + "learning_rate": 6.5937333333333335e-06, + "loss": 1.231754913330078, + "step": 651400 + }, + { + "epoch": 86.86666666666666, + "grad_norm": 0.9277433156967163, + "learning_rate": 6.587133333333334e-06, + "loss": 1.2332256317138672, + "step": 651500 + }, + { + "epoch": 86.88, + "grad_norm": 0.9251424670219421, + "learning_rate": 6.5804666666666665e-06, + "loss": 1.2302942657470703, + "step": 651600 + }, + { + "epoch": 86.89333333333333, + "grad_norm": 0.9771026968955994, + "learning_rate": 6.5738000000000005e-06, + "loss": 1.2350211334228516, + "step": 651700 + }, + { + "epoch": 86.90666666666667, + "grad_norm": 0.9614867568016052, + "learning_rate": 6.567133333333334e-06, + "loss": 1.2328236389160157, + "step": 651800 + }, + { + "epoch": 86.92, + "grad_norm": 0.9628375768661499, + "learning_rate": 6.5604666666666676e-06, + "loss": 1.2369357299804689, + "step": 651900 + }, + { + "epoch": 86.93333333333334, + "grad_norm": 0.8983745574951172, + "learning_rate": 6.5538e-06, + "loss": 1.2343621063232422, + "step": 652000 + }, + { + "epoch": 86.94666666666667, + "grad_norm": 0.9080144166946411, + "learning_rate": 6.547133333333335e-06, + "loss": 1.2306615447998046, + "step": 652100 + }, + { + "epoch": 86.96, + "grad_norm": 0.8796840906143188, + "learning_rate": 6.540466666666667e-06, + "loss": 1.2312027740478515, + "step": 652200 + }, + { + "epoch": 86.97333333333333, + "grad_norm": 0.9401488304138184, + "learning_rate": 6.5338e-06, + "loss": 1.23423828125, + "step": 652300 + }, + { + "epoch": 86.98666666666666, + "grad_norm": 0.9651604890823364, + "learning_rate": 6.527133333333334e-06, + "loss": 1.2338542175292968, + "step": 652400 + }, + { + "epoch": 87.0, + "grad_norm": 0.9266039729118347, + "learning_rate": 6.520466666666666e-06, + "loss": 1.2390645599365235, + "step": 652500 + }, + { + "epoch": 87.01333333333334, + "grad_norm": 0.8999123573303223, + "learning_rate": 6.5138e-06, + "loss": 1.214796905517578, + "step": 652600 + }, + { + "epoch": 87.02666666666667, + "grad_norm": 0.903722882270813, + "learning_rate": 6.507133333333333e-06, + "loss": 1.2141775512695312, + "step": 652700 + }, + { + "epoch": 87.04, + "grad_norm": 0.8932545781135559, + "learning_rate": 6.500466666666667e-06, + "loss": 1.2154994201660156, + "step": 652800 + }, + { + "epoch": 87.05333333333333, + "grad_norm": 0.8836954236030579, + "learning_rate": 6.4937999999999996e-06, + "loss": 1.2121443939208985, + "step": 652900 + }, + { + "epoch": 87.06666666666666, + "grad_norm": 0.9204801321029663, + "learning_rate": 6.487133333333334e-06, + "loss": 1.2122740936279297, + "step": 653000 + }, + { + "epoch": 87.08, + "grad_norm": 0.8981918692588806, + "learning_rate": 6.480466666666667e-06, + "loss": 1.221134490966797, + "step": 653100 + }, + { + "epoch": 87.09333333333333, + "grad_norm": 0.926282525062561, + "learning_rate": 6.473800000000001e-06, + "loss": 1.2155657196044922, + "step": 653200 + }, + { + "epoch": 87.10666666666667, + "grad_norm": 0.8902606964111328, + "learning_rate": 6.467133333333334e-06, + "loss": 1.2164243316650392, + "step": 653300 + }, + { + "epoch": 87.12, + "grad_norm": 0.8815839290618896, + "learning_rate": 6.460466666666668e-06, + "loss": 1.2138585662841797, + "step": 653400 + }, + { + "epoch": 87.13333333333334, + "grad_norm": 0.9262551069259644, + "learning_rate": 6.453866666666667e-06, + "loss": 1.2137595367431642, + "step": 653500 + }, + { + "epoch": 87.14666666666666, + "grad_norm": 0.891934871673584, + "learning_rate": 6.447200000000001e-06, + "loss": 1.214564666748047, + "step": 653600 + }, + { + "epoch": 87.16, + "grad_norm": 0.8836770057678223, + "learning_rate": 6.440533333333333e-06, + "loss": 1.2159810638427735, + "step": 653700 + }, + { + "epoch": 87.17333333333333, + "grad_norm": 0.9016736745834351, + "learning_rate": 6.433866666666667e-06, + "loss": 1.2174545288085938, + "step": 653800 + }, + { + "epoch": 87.18666666666667, + "grad_norm": 0.9326723217964172, + "learning_rate": 6.4272e-06, + "loss": 1.2156101226806642, + "step": 653900 + }, + { + "epoch": 87.2, + "grad_norm": 0.8592504858970642, + "learning_rate": 6.420533333333334e-06, + "loss": 1.2173818969726562, + "step": 654000 + }, + { + "epoch": 87.21333333333334, + "grad_norm": 0.8951143026351929, + "learning_rate": 6.413866666666666e-06, + "loss": 1.2178955841064454, + "step": 654100 + }, + { + "epoch": 87.22666666666667, + "grad_norm": 0.9222288131713867, + "learning_rate": 6.407200000000001e-06, + "loss": 1.2179863739013672, + "step": 654200 + }, + { + "epoch": 87.24, + "grad_norm": 0.9849110245704651, + "learning_rate": 6.400533333333333e-06, + "loss": 1.2230202484130859, + "step": 654300 + }, + { + "epoch": 87.25333333333333, + "grad_norm": 0.9216305017471313, + "learning_rate": 6.393866666666667e-06, + "loss": 1.2152316284179687, + "step": 654400 + }, + { + "epoch": 87.26666666666667, + "grad_norm": 0.8858641982078552, + "learning_rate": 6.3872000000000004e-06, + "loss": 1.2167332458496094, + "step": 654500 + }, + { + "epoch": 87.28, + "grad_norm": 0.907527506351471, + "learning_rate": 6.380533333333334e-06, + "loss": 1.223568115234375, + "step": 654600 + }, + { + "epoch": 87.29333333333334, + "grad_norm": 0.928432285785675, + "learning_rate": 6.373866666666667e-06, + "loss": 1.221104507446289, + "step": 654700 + }, + { + "epoch": 87.30666666666667, + "grad_norm": 0.8888409733772278, + "learning_rate": 6.367200000000001e-06, + "loss": 1.2164854431152343, + "step": 654800 + }, + { + "epoch": 87.32, + "grad_norm": 0.9260812401771545, + "learning_rate": 6.360533333333334e-06, + "loss": 1.2207078552246093, + "step": 654900 + }, + { + "epoch": 87.33333333333333, + "grad_norm": 0.9093630313873291, + "learning_rate": 6.353866666666666e-06, + "loss": 1.221835174560547, + "step": 655000 + }, + { + "epoch": 87.34666666666666, + "grad_norm": 0.9289301633834839, + "learning_rate": 6.3472e-06, + "loss": 1.2211975860595703, + "step": 655100 + }, + { + "epoch": 87.36, + "grad_norm": 0.8211119771003723, + "learning_rate": 6.340533333333333e-06, + "loss": 1.2244545745849609, + "step": 655200 + }, + { + "epoch": 87.37333333333333, + "grad_norm": 0.9515888690948486, + "learning_rate": 6.333866666666667e-06, + "loss": 1.2235546112060547, + "step": 655300 + }, + { + "epoch": 87.38666666666667, + "grad_norm": 0.8519609570503235, + "learning_rate": 6.3272e-06, + "loss": 1.2207803344726562, + "step": 655400 + }, + { + "epoch": 87.4, + "grad_norm": 0.8767391443252563, + "learning_rate": 6.3206e-06, + "loss": 1.2202215576171875, + "step": 655500 + }, + { + "epoch": 87.41333333333333, + "grad_norm": 1.0171016454696655, + "learning_rate": 6.313933333333334e-06, + "loss": 1.2231157684326173, + "step": 655600 + }, + { + "epoch": 87.42666666666666, + "grad_norm": 0.86667400598526, + "learning_rate": 6.307266666666667e-06, + "loss": 1.2254328155517578, + "step": 655700 + }, + { + "epoch": 87.44, + "grad_norm": 0.9001585245132446, + "learning_rate": 6.300600000000001e-06, + "loss": 1.2218850708007813, + "step": 655800 + }, + { + "epoch": 87.45333333333333, + "grad_norm": 0.939195454120636, + "learning_rate": 6.293933333333333e-06, + "loss": 1.2206802368164062, + "step": 655900 + }, + { + "epoch": 87.46666666666667, + "grad_norm": 0.8869876265525818, + "learning_rate": 6.2872666666666665e-06, + "loss": 1.2218120574951172, + "step": 656000 + }, + { + "epoch": 87.48, + "grad_norm": 0.898676872253418, + "learning_rate": 6.2806000000000005e-06, + "loss": 1.2209648895263672, + "step": 656100 + }, + { + "epoch": 87.49333333333334, + "grad_norm": 0.9363060593605042, + "learning_rate": 6.273933333333333e-06, + "loss": 1.2237455749511719, + "step": 656200 + }, + { + "epoch": 87.50666666666666, + "grad_norm": 0.9196439981460571, + "learning_rate": 6.267266666666667e-06, + "loss": 1.2262535095214844, + "step": 656300 + }, + { + "epoch": 87.52, + "grad_norm": 0.7970747947692871, + "learning_rate": 6.2606e-06, + "loss": 1.2225990295410156, + "step": 656400 + }, + { + "epoch": 87.53333333333333, + "grad_norm": 0.8288227915763855, + "learning_rate": 6.253933333333334e-06, + "loss": 1.2242842864990235, + "step": 656500 + }, + { + "epoch": 87.54666666666667, + "grad_norm": 0.9207773804664612, + "learning_rate": 6.247266666666667e-06, + "loss": 1.2214242553710937, + "step": 656600 + }, + { + "epoch": 87.56, + "grad_norm": 0.9800169467926025, + "learning_rate": 6.240600000000001e-06, + "loss": 1.2252493286132813, + "step": 656700 + }, + { + "epoch": 87.57333333333334, + "grad_norm": 0.9389280080795288, + "learning_rate": 6.233933333333333e-06, + "loss": 1.220586700439453, + "step": 656800 + }, + { + "epoch": 87.58666666666667, + "grad_norm": 0.9566884636878967, + "learning_rate": 6.227266666666666e-06, + "loss": 1.2238873291015624, + "step": 656900 + }, + { + "epoch": 87.6, + "grad_norm": 0.9968175292015076, + "learning_rate": 6.2206e-06, + "loss": 1.2255178833007812, + "step": 657000 + }, + { + "epoch": 87.61333333333333, + "grad_norm": 0.9001134037971497, + "learning_rate": 6.213933333333333e-06, + "loss": 1.2253036499023438, + "step": 657100 + }, + { + "epoch": 87.62666666666667, + "grad_norm": 0.920998215675354, + "learning_rate": 6.2072666666666664e-06, + "loss": 1.2283302307128907, + "step": 657200 + }, + { + "epoch": 87.64, + "grad_norm": 0.9255244731903076, + "learning_rate": 6.2006e-06, + "loss": 1.2279671478271483, + "step": 657300 + }, + { + "epoch": 87.65333333333334, + "grad_norm": 0.8817408680915833, + "learning_rate": 6.1939333333333335e-06, + "loss": 1.222409210205078, + "step": 657400 + }, + { + "epoch": 87.66666666666667, + "grad_norm": 0.9020600914955139, + "learning_rate": 6.187333333333334e-06, + "loss": 1.2292388153076172, + "step": 657500 + }, + { + "epoch": 87.68, + "grad_norm": 0.880594789981842, + "learning_rate": 6.180666666666667e-06, + "loss": 1.2260498046875, + "step": 657600 + }, + { + "epoch": 87.69333333333333, + "grad_norm": 0.9309771656990051, + "learning_rate": 6.1740000000000005e-06, + "loss": 1.2300214385986328, + "step": 657700 + }, + { + "epoch": 87.70666666666666, + "grad_norm": 0.8785908222198486, + "learning_rate": 6.167333333333334e-06, + "loss": 1.2290544891357422, + "step": 657800 + }, + { + "epoch": 87.72, + "grad_norm": 0.8739680647850037, + "learning_rate": 6.160666666666667e-06, + "loss": 1.2261587524414062, + "step": 657900 + }, + { + "epoch": 87.73333333333333, + "grad_norm": 0.8887823224067688, + "learning_rate": 6.154e-06, + "loss": 1.2235511779785155, + "step": 658000 + }, + { + "epoch": 87.74666666666667, + "grad_norm": 0.9344404339790344, + "learning_rate": 6.147333333333334e-06, + "loss": 1.2311840057373047, + "step": 658100 + }, + { + "epoch": 87.76, + "grad_norm": 0.9279657006263733, + "learning_rate": 6.140666666666667e-06, + "loss": 1.2299423217773438, + "step": 658200 + }, + { + "epoch": 87.77333333333333, + "grad_norm": 0.9525284767150879, + "learning_rate": 6.134e-06, + "loss": 1.2301526641845704, + "step": 658300 + }, + { + "epoch": 87.78666666666666, + "grad_norm": 0.8445433378219604, + "learning_rate": 6.127333333333333e-06, + "loss": 1.226542739868164, + "step": 658400 + }, + { + "epoch": 87.8, + "grad_norm": 0.9366630911827087, + "learning_rate": 6.120666666666667e-06, + "loss": 1.2329245758056642, + "step": 658500 + }, + { + "epoch": 87.81333333333333, + "grad_norm": 0.9238616228103638, + "learning_rate": 6.114e-06, + "loss": 1.2254788970947266, + "step": 658600 + }, + { + "epoch": 87.82666666666667, + "grad_norm": 0.8797993063926697, + "learning_rate": 6.107333333333333e-06, + "loss": 1.2281143951416016, + "step": 658700 + }, + { + "epoch": 87.84, + "grad_norm": 0.8559375405311584, + "learning_rate": 6.100666666666667e-06, + "loss": 1.224699478149414, + "step": 658800 + }, + { + "epoch": 87.85333333333334, + "grad_norm": 0.9214592576026917, + "learning_rate": 6.0940000000000004e-06, + "loss": 1.2267461395263672, + "step": 658900 + }, + { + "epoch": 87.86666666666666, + "grad_norm": 0.9385553002357483, + "learning_rate": 6.0873333333333336e-06, + "loss": 1.2321873474121094, + "step": 659000 + }, + { + "epoch": 87.88, + "grad_norm": 0.9742735028266907, + "learning_rate": 6.0806666666666675e-06, + "loss": 1.224165802001953, + "step": 659100 + }, + { + "epoch": 87.89333333333333, + "grad_norm": 0.8828876614570618, + "learning_rate": 6.074000000000001e-06, + "loss": 1.2293293762207032, + "step": 659200 + }, + { + "epoch": 87.90666666666667, + "grad_norm": 0.8725327253341675, + "learning_rate": 6.067333333333334e-06, + "loss": 1.2297024536132812, + "step": 659300 + }, + { + "epoch": 87.92, + "grad_norm": 0.8858145475387573, + "learning_rate": 6.060666666666667e-06, + "loss": 1.231685256958008, + "step": 659400 + }, + { + "epoch": 87.93333333333334, + "grad_norm": 0.8619421124458313, + "learning_rate": 6.054066666666667e-06, + "loss": 1.227284164428711, + "step": 659500 + }, + { + "epoch": 87.94666666666667, + "grad_norm": 0.8720583915710449, + "learning_rate": 6.0474e-06, + "loss": 1.2259799194335939, + "step": 659600 + }, + { + "epoch": 87.96, + "grad_norm": 0.9668527841567993, + "learning_rate": 6.040733333333334e-06, + "loss": 1.2270006561279296, + "step": 659700 + }, + { + "epoch": 87.97333333333333, + "grad_norm": 0.8741607069969177, + "learning_rate": 6.034066666666667e-06, + "loss": 1.2342427825927735, + "step": 659800 + }, + { + "epoch": 87.98666666666666, + "grad_norm": 0.9043229818344116, + "learning_rate": 6.0274e-06, + "loss": 1.2302300262451171, + "step": 659900 + }, + { + "epoch": 88.0, + "grad_norm": 0.8614948391914368, + "learning_rate": 6.020733333333334e-06, + "loss": 1.2277375030517579, + "step": 660000 + }, + { + "epoch": 88.01333333333334, + "grad_norm": 0.8440125584602356, + "learning_rate": 6.014066666666667e-06, + "loss": 1.2098700714111328, + "step": 660100 + }, + { + "epoch": 88.02666666666667, + "grad_norm": 0.8795732855796814, + "learning_rate": 6.0074e-06, + "loss": 1.2145481872558594, + "step": 660200 + }, + { + "epoch": 88.04, + "grad_norm": 0.9388731718063354, + "learning_rate": 6.000733333333334e-06, + "loss": 1.2113359832763673, + "step": 660300 + }, + { + "epoch": 88.05333333333333, + "grad_norm": 0.9349479079246521, + "learning_rate": 5.994066666666667e-06, + "loss": 1.2147767639160156, + "step": 660400 + }, + { + "epoch": 88.06666666666666, + "grad_norm": 0.8859605193138123, + "learning_rate": 5.9874e-06, + "loss": 1.2128377532958985, + "step": 660500 + }, + { + "epoch": 88.08, + "grad_norm": 0.9146501421928406, + "learning_rate": 5.980733333333334e-06, + "loss": 1.2150657653808594, + "step": 660600 + }, + { + "epoch": 88.09333333333333, + "grad_norm": 0.8667988777160645, + "learning_rate": 5.974066666666667e-06, + "loss": 1.2110105133056641, + "step": 660700 + }, + { + "epoch": 88.10666666666667, + "grad_norm": 0.9527876973152161, + "learning_rate": 5.9674e-06, + "loss": 1.2121669006347657, + "step": 660800 + }, + { + "epoch": 88.12, + "grad_norm": 0.9000213146209717, + "learning_rate": 5.960733333333334e-06, + "loss": 1.2135875701904297, + "step": 660900 + }, + { + "epoch": 88.13333333333334, + "grad_norm": 0.9539820551872253, + "learning_rate": 5.954066666666667e-06, + "loss": 1.2122388458251954, + "step": 661000 + }, + { + "epoch": 88.14666666666666, + "grad_norm": 0.8554858565330505, + "learning_rate": 5.9474e-06, + "loss": 1.2159857177734374, + "step": 661100 + }, + { + "epoch": 88.16, + "grad_norm": 0.8576105833053589, + "learning_rate": 5.940733333333334e-06, + "loss": 1.214066848754883, + "step": 661200 + }, + { + "epoch": 88.17333333333333, + "grad_norm": 0.938084065914154, + "learning_rate": 5.934066666666667e-06, + "loss": 1.2105953216552734, + "step": 661300 + }, + { + "epoch": 88.18666666666667, + "grad_norm": 0.9702228307723999, + "learning_rate": 5.9274e-06, + "loss": 1.218522186279297, + "step": 661400 + }, + { + "epoch": 88.2, + "grad_norm": 0.9396708607673645, + "learning_rate": 5.9208e-06, + "loss": 1.2127921295166015, + "step": 661500 + }, + { + "epoch": 88.21333333333334, + "grad_norm": 0.8523475527763367, + "learning_rate": 5.914133333333333e-06, + "loss": 1.2177894592285157, + "step": 661600 + }, + { + "epoch": 88.22666666666667, + "grad_norm": 0.9162245392799377, + "learning_rate": 5.907466666666666e-06, + "loss": 1.2171736145019532, + "step": 661700 + }, + { + "epoch": 88.24, + "grad_norm": 0.909294843673706, + "learning_rate": 5.9008e-06, + "loss": 1.2113314819335939, + "step": 661800 + }, + { + "epoch": 88.25333333333333, + "grad_norm": 0.822942316532135, + "learning_rate": 5.8941333333333334e-06, + "loss": 1.2202149200439454, + "step": 661900 + }, + { + "epoch": 88.26666666666667, + "grad_norm": 0.9095253944396973, + "learning_rate": 5.8874666666666666e-06, + "loss": 1.2153319549560546, + "step": 662000 + }, + { + "epoch": 88.28, + "grad_norm": 0.9375243782997131, + "learning_rate": 5.8808000000000005e-06, + "loss": 1.2144713592529297, + "step": 662100 + }, + { + "epoch": 88.29333333333334, + "grad_norm": 0.8997815847396851, + "learning_rate": 5.874133333333334e-06, + "loss": 1.2190712738037108, + "step": 662200 + }, + { + "epoch": 88.30666666666667, + "grad_norm": 0.831521213054657, + "learning_rate": 5.867466666666667e-06, + "loss": 1.217860107421875, + "step": 662300 + }, + { + "epoch": 88.32, + "grad_norm": 0.9350924491882324, + "learning_rate": 5.860800000000001e-06, + "loss": 1.2177651977539063, + "step": 662400 + }, + { + "epoch": 88.33333333333333, + "grad_norm": 0.9330512285232544, + "learning_rate": 5.854133333333334e-06, + "loss": 1.2167528533935548, + "step": 662500 + }, + { + "epoch": 88.34666666666666, + "grad_norm": 0.8898918032646179, + "learning_rate": 5.847466666666667e-06, + "loss": 1.2190279388427734, + "step": 662600 + }, + { + "epoch": 88.36, + "grad_norm": 0.9025176167488098, + "learning_rate": 5.8408e-06, + "loss": 1.2180398559570313, + "step": 662700 + }, + { + "epoch": 88.37333333333333, + "grad_norm": 0.9351064562797546, + "learning_rate": 5.834133333333334e-06, + "loss": 1.2161642456054687, + "step": 662800 + }, + { + "epoch": 88.38666666666667, + "grad_norm": 0.8625040054321289, + "learning_rate": 5.827466666666667e-06, + "loss": 1.2185457611083985, + "step": 662900 + }, + { + "epoch": 88.4, + "grad_norm": 0.8925670981407166, + "learning_rate": 5.8208e-06, + "loss": 1.219074478149414, + "step": 663000 + }, + { + "epoch": 88.41333333333333, + "grad_norm": 0.8783120512962341, + "learning_rate": 5.814133333333334e-06, + "loss": 1.2135558319091797, + "step": 663100 + }, + { + "epoch": 88.42666666666666, + "grad_norm": 0.9169807434082031, + "learning_rate": 5.8074666666666665e-06, + "loss": 1.2201927185058594, + "step": 663200 + }, + { + "epoch": 88.44, + "grad_norm": 0.9173704385757446, + "learning_rate": 5.8008e-06, + "loss": 1.2177742767333983, + "step": 663300 + }, + { + "epoch": 88.45333333333333, + "grad_norm": 0.9613504409790039, + "learning_rate": 5.7941333333333335e-06, + "loss": 1.2174214935302734, + "step": 663400 + }, + { + "epoch": 88.46666666666667, + "grad_norm": 0.9053784012794495, + "learning_rate": 5.7875333333333335e-06, + "loss": 1.2211524963378906, + "step": 663500 + }, + { + "epoch": 88.48, + "grad_norm": 0.8977215886116028, + "learning_rate": 5.7808666666666674e-06, + "loss": 1.2180975341796876, + "step": 663600 + }, + { + "epoch": 88.49333333333334, + "grad_norm": 0.9076542258262634, + "learning_rate": 5.7742000000000006e-06, + "loss": 1.2158096313476563, + "step": 663700 + }, + { + "epoch": 88.50666666666666, + "grad_norm": 0.9158226251602173, + "learning_rate": 5.767533333333334e-06, + "loss": 1.218250961303711, + "step": 663800 + }, + { + "epoch": 88.52, + "grad_norm": 0.9524657726287842, + "learning_rate": 5.760866666666667e-06, + "loss": 1.2187013244628906, + "step": 663900 + }, + { + "epoch": 88.53333333333333, + "grad_norm": 0.931620717048645, + "learning_rate": 5.754200000000001e-06, + "loss": 1.2208222198486327, + "step": 664000 + }, + { + "epoch": 88.54666666666667, + "grad_norm": 0.9844622015953064, + "learning_rate": 5.747533333333334e-06, + "loss": 1.2225242614746095, + "step": 664100 + }, + { + "epoch": 88.56, + "grad_norm": 0.9277436137199402, + "learning_rate": 5.740866666666667e-06, + "loss": 1.2201163482666015, + "step": 664200 + }, + { + "epoch": 88.57333333333334, + "grad_norm": 0.8789235353469849, + "learning_rate": 5.7342e-06, + "loss": 1.2224101257324218, + "step": 664300 + }, + { + "epoch": 88.58666666666667, + "grad_norm": 0.9313110709190369, + "learning_rate": 5.727533333333333e-06, + "loss": 1.2181917572021483, + "step": 664400 + }, + { + "epoch": 88.6, + "grad_norm": 0.9556103348731995, + "learning_rate": 5.720866666666666e-06, + "loss": 1.2208975219726563, + "step": 664500 + }, + { + "epoch": 88.61333333333333, + "grad_norm": 0.9766332507133484, + "learning_rate": 5.7142e-06, + "loss": 1.2226788330078124, + "step": 664600 + }, + { + "epoch": 88.62666666666667, + "grad_norm": 0.8844559192657471, + "learning_rate": 5.707533333333333e-06, + "loss": 1.2230628204345704, + "step": 664700 + }, + { + "epoch": 88.64, + "grad_norm": 0.8664445281028748, + "learning_rate": 5.7008666666666665e-06, + "loss": 1.2178475189208984, + "step": 664800 + }, + { + "epoch": 88.65333333333334, + "grad_norm": 0.9188632369041443, + "learning_rate": 5.6942000000000005e-06, + "loss": 1.2229035186767578, + "step": 664900 + }, + { + "epoch": 88.66666666666667, + "grad_norm": 0.9534464478492737, + "learning_rate": 5.687533333333334e-06, + "loss": 1.2201636505126954, + "step": 665000 + }, + { + "epoch": 88.68, + "grad_norm": 0.8590039610862732, + "learning_rate": 5.680866666666667e-06, + "loss": 1.2217842102050782, + "step": 665100 + }, + { + "epoch": 88.69333333333333, + "grad_norm": 0.9341287016868591, + "learning_rate": 5.674200000000001e-06, + "loss": 1.2232160949707032, + "step": 665200 + }, + { + "epoch": 88.70666666666666, + "grad_norm": 0.851928174495697, + "learning_rate": 5.667533333333334e-06, + "loss": 1.2228545379638671, + "step": 665300 + }, + { + "epoch": 88.72, + "grad_norm": 0.8709028959274292, + "learning_rate": 5.660866666666667e-06, + "loss": 1.224917449951172, + "step": 665400 + }, + { + "epoch": 88.73333333333333, + "grad_norm": 0.9012889266014099, + "learning_rate": 5.654266666666667e-06, + "loss": 1.2241983795166016, + "step": 665500 + }, + { + "epoch": 88.74666666666667, + "grad_norm": 0.9009696245193481, + "learning_rate": 5.6476e-06, + "loss": 1.2221090698242187, + "step": 665600 + }, + { + "epoch": 88.76, + "grad_norm": 0.911006510257721, + "learning_rate": 5.640933333333334e-06, + "loss": 1.2238897705078124, + "step": 665700 + }, + { + "epoch": 88.77333333333333, + "grad_norm": 0.9231188297271729, + "learning_rate": 5.634266666666667e-06, + "loss": 1.2244586944580078, + "step": 665800 + }, + { + "epoch": 88.78666666666666, + "grad_norm": 0.8802729249000549, + "learning_rate": 5.6276e-06, + "loss": 1.2238041687011718, + "step": 665900 + }, + { + "epoch": 88.8, + "grad_norm": 0.9299485683441162, + "learning_rate": 5.620933333333333e-06, + "loss": 1.2228865814208985, + "step": 666000 + }, + { + "epoch": 88.81333333333333, + "grad_norm": 0.8775696754455566, + "learning_rate": 5.614266666666667e-06, + "loss": 1.2266053771972656, + "step": 666100 + }, + { + "epoch": 88.82666666666667, + "grad_norm": 0.8580496311187744, + "learning_rate": 5.6076e-06, + "loss": 1.2229470062255858, + "step": 666200 + }, + { + "epoch": 88.84, + "grad_norm": 0.9241933822631836, + "learning_rate": 5.6009333333333334e-06, + "loss": 1.2229337310791015, + "step": 666300 + }, + { + "epoch": 88.85333333333334, + "grad_norm": 0.9201433658599854, + "learning_rate": 5.594266666666667e-06, + "loss": 1.2231851959228515, + "step": 666400 + }, + { + "epoch": 88.86666666666666, + "grad_norm": 0.9110192060470581, + "learning_rate": 5.5876000000000005e-06, + "loss": 1.225495376586914, + "step": 666500 + }, + { + "epoch": 88.88, + "grad_norm": 0.9712668061256409, + "learning_rate": 5.580933333333334e-06, + "loss": 1.2213951873779296, + "step": 666600 + }, + { + "epoch": 88.89333333333333, + "grad_norm": 0.8844518065452576, + "learning_rate": 5.574266666666668e-06, + "loss": 1.2240930938720702, + "step": 666700 + }, + { + "epoch": 88.90666666666667, + "grad_norm": 0.9546579122543335, + "learning_rate": 5.567600000000001e-06, + "loss": 1.226476287841797, + "step": 666800 + }, + { + "epoch": 88.92, + "grad_norm": 0.8933039903640747, + "learning_rate": 5.560933333333333e-06, + "loss": 1.2249333953857422, + "step": 666900 + }, + { + "epoch": 88.93333333333334, + "grad_norm": 0.9278029799461365, + "learning_rate": 5.554266666666667e-06, + "loss": 1.224727325439453, + "step": 667000 + }, + { + "epoch": 88.94666666666667, + "grad_norm": 0.9233989119529724, + "learning_rate": 5.5476e-06, + "loss": 1.2280259704589844, + "step": 667100 + }, + { + "epoch": 88.96, + "grad_norm": 0.8747185468673706, + "learning_rate": 5.540933333333333e-06, + "loss": 1.2299307250976563, + "step": 667200 + }, + { + "epoch": 88.97333333333333, + "grad_norm": 0.9252629280090332, + "learning_rate": 5.534266666666667e-06, + "loss": 1.2250003051757812, + "step": 667300 + }, + { + "epoch": 88.98666666666666, + "grad_norm": 0.8873195052146912, + "learning_rate": 5.5276e-06, + "loss": 1.2243363189697265, + "step": 667400 + }, + { + "epoch": 89.0, + "grad_norm": 0.8737539052963257, + "learning_rate": 5.521e-06, + "loss": 1.2273259735107422, + "step": 667500 + }, + { + "epoch": 89.01333333333334, + "grad_norm": 0.8994724154472351, + "learning_rate": 5.514333333333334e-06, + "loss": 1.2065253448486328, + "step": 667600 + }, + { + "epoch": 89.02666666666667, + "grad_norm": 0.8773201107978821, + "learning_rate": 5.507666666666667e-06, + "loss": 1.2066268157958984, + "step": 667700 + }, + { + "epoch": 89.04, + "grad_norm": 0.9253839254379272, + "learning_rate": 5.501e-06, + "loss": 1.2097785949707032, + "step": 667800 + }, + { + "epoch": 89.05333333333333, + "grad_norm": 0.9354826211929321, + "learning_rate": 5.4943333333333335e-06, + "loss": 1.2124601745605468, + "step": 667900 + }, + { + "epoch": 89.06666666666666, + "grad_norm": 0.8192519545555115, + "learning_rate": 5.487666666666667e-06, + "loss": 1.2061328887939453, + "step": 668000 + }, + { + "epoch": 89.08, + "grad_norm": 0.8822228312492371, + "learning_rate": 5.481e-06, + "loss": 1.2111685180664062, + "step": 668100 + }, + { + "epoch": 89.09333333333333, + "grad_norm": 0.914986252784729, + "learning_rate": 5.474333333333334e-06, + "loss": 1.211805648803711, + "step": 668200 + }, + { + "epoch": 89.10666666666667, + "grad_norm": 0.9351910948753357, + "learning_rate": 5.467666666666667e-06, + "loss": 1.2042337036132813, + "step": 668300 + }, + { + "epoch": 89.12, + "grad_norm": 0.9000957012176514, + "learning_rate": 5.461e-06, + "loss": 1.2112418365478517, + "step": 668400 + }, + { + "epoch": 89.13333333333334, + "grad_norm": 0.9186215996742249, + "learning_rate": 5.454333333333334e-06, + "loss": 1.2067839050292968, + "step": 668500 + }, + { + "epoch": 89.14666666666666, + "grad_norm": 0.8771560788154602, + "learning_rate": 5.447666666666667e-06, + "loss": 1.2109234619140625, + "step": 668600 + }, + { + "epoch": 89.16, + "grad_norm": 0.9361634254455566, + "learning_rate": 5.441e-06, + "loss": 1.2112667846679688, + "step": 668700 + }, + { + "epoch": 89.17333333333333, + "grad_norm": 0.9080511331558228, + "learning_rate": 5.434333333333334e-06, + "loss": 1.2091513824462892, + "step": 668800 + }, + { + "epoch": 89.18666666666667, + "grad_norm": 0.9087415933609009, + "learning_rate": 5.427666666666667e-06, + "loss": 1.209826431274414, + "step": 668900 + }, + { + "epoch": 89.2, + "grad_norm": 0.8701626658439636, + "learning_rate": 5.421e-06, + "loss": 1.213840560913086, + "step": 669000 + }, + { + "epoch": 89.21333333333334, + "grad_norm": 0.8287436962127686, + "learning_rate": 5.414333333333333e-06, + "loss": 1.2152737426757811, + "step": 669100 + }, + { + "epoch": 89.22666666666667, + "grad_norm": 0.9009669423103333, + "learning_rate": 5.407666666666667e-06, + "loss": 1.2100643157958983, + "step": 669200 + }, + { + "epoch": 89.24, + "grad_norm": 0.9228776693344116, + "learning_rate": 5.4010000000000005e-06, + "loss": 1.2168802642822265, + "step": 669300 + }, + { + "epoch": 89.25333333333333, + "grad_norm": 0.8409181237220764, + "learning_rate": 5.394333333333334e-06, + "loss": 1.212371597290039, + "step": 669400 + }, + { + "epoch": 89.26666666666667, + "grad_norm": 0.8922165632247925, + "learning_rate": 5.3877333333333335e-06, + "loss": 1.2138323974609375, + "step": 669500 + }, + { + "epoch": 89.28, + "grad_norm": 0.9000787138938904, + "learning_rate": 5.381066666666667e-06, + "loss": 1.211551742553711, + "step": 669600 + }, + { + "epoch": 89.29333333333334, + "grad_norm": 0.8795856237411499, + "learning_rate": 5.374400000000001e-06, + "loss": 1.209929428100586, + "step": 669700 + }, + { + "epoch": 89.30666666666667, + "grad_norm": 0.8757795691490173, + "learning_rate": 5.367733333333334e-06, + "loss": 1.2100962829589843, + "step": 669800 + }, + { + "epoch": 89.32, + "grad_norm": 0.9000317454338074, + "learning_rate": 5.361066666666667e-06, + "loss": 1.2151318359375, + "step": 669900 + }, + { + "epoch": 89.33333333333333, + "grad_norm": 0.9361692667007446, + "learning_rate": 5.354400000000001e-06, + "loss": 1.212879638671875, + "step": 670000 + }, + { + "epoch": 89.34666666666666, + "grad_norm": 0.8566330671310425, + "learning_rate": 5.347733333333334e-06, + "loss": 1.2143052673339845, + "step": 670100 + }, + { + "epoch": 89.36, + "grad_norm": 0.9182000160217285, + "learning_rate": 5.341066666666667e-06, + "loss": 1.2156490325927733, + "step": 670200 + }, + { + "epoch": 89.37333333333333, + "grad_norm": 0.8849942684173584, + "learning_rate": 5.3344e-06, + "loss": 1.2155682373046874, + "step": 670300 + }, + { + "epoch": 89.38666666666667, + "grad_norm": 0.948589563369751, + "learning_rate": 5.327733333333334e-06, + "loss": 1.2158618927001954, + "step": 670400 + }, + { + "epoch": 89.4, + "grad_norm": 0.870638906955719, + "learning_rate": 5.321066666666667e-06, + "loss": 1.2140827178955078, + "step": 670500 + }, + { + "epoch": 89.41333333333333, + "grad_norm": 0.9196882247924805, + "learning_rate": 5.3144e-06, + "loss": 1.2150801086425782, + "step": 670600 + }, + { + "epoch": 89.42666666666666, + "grad_norm": 0.9664023518562317, + "learning_rate": 5.3077333333333334e-06, + "loss": 1.216825942993164, + "step": 670700 + }, + { + "epoch": 89.44, + "grad_norm": 0.9256287813186646, + "learning_rate": 5.3010666666666665e-06, + "loss": 1.212283935546875, + "step": 670800 + }, + { + "epoch": 89.45333333333333, + "grad_norm": 0.8842042684555054, + "learning_rate": 5.2944e-06, + "loss": 1.2171527862548828, + "step": 670900 + }, + { + "epoch": 89.46666666666667, + "grad_norm": 0.8998342752456665, + "learning_rate": 5.287733333333334e-06, + "loss": 1.212213363647461, + "step": 671000 + }, + { + "epoch": 89.48, + "grad_norm": 0.8604910969734192, + "learning_rate": 5.281066666666667e-06, + "loss": 1.2178185272216797, + "step": 671100 + }, + { + "epoch": 89.49333333333334, + "grad_norm": 0.9574484825134277, + "learning_rate": 5.2744e-06, + "loss": 1.2192330169677734, + "step": 671200 + }, + { + "epoch": 89.50666666666666, + "grad_norm": 0.9058186411857605, + "learning_rate": 5.267733333333334e-06, + "loss": 1.2213152313232423, + "step": 671300 + }, + { + "epoch": 89.52, + "grad_norm": 0.8801227807998657, + "learning_rate": 5.261066666666667e-06, + "loss": 1.2144708251953125, + "step": 671400 + }, + { + "epoch": 89.53333333333333, + "grad_norm": 0.9073898196220398, + "learning_rate": 5.2544e-06, + "loss": 1.2126658630371094, + "step": 671500 + }, + { + "epoch": 89.54666666666667, + "grad_norm": 0.8924538493156433, + "learning_rate": 5.2478e-06, + "loss": 1.2133853149414062, + "step": 671600 + }, + { + "epoch": 89.56, + "grad_norm": 0.8589732646942139, + "learning_rate": 5.241133333333333e-06, + "loss": 1.216434783935547, + "step": 671700 + }, + { + "epoch": 89.57333333333334, + "grad_norm": 0.8957362174987793, + "learning_rate": 5.234466666666667e-06, + "loss": 1.2140837860107423, + "step": 671800 + }, + { + "epoch": 89.58666666666667, + "grad_norm": 0.9001540541648865, + "learning_rate": 5.2278e-06, + "loss": 1.2144945526123048, + "step": 671900 + }, + { + "epoch": 89.6, + "grad_norm": 0.9157114028930664, + "learning_rate": 5.221133333333333e-06, + "loss": 1.217526397705078, + "step": 672000 + }, + { + "epoch": 89.61333333333333, + "grad_norm": 0.9104243516921997, + "learning_rate": 5.214466666666666e-06, + "loss": 1.2151515197753906, + "step": 672100 + }, + { + "epoch": 89.62666666666667, + "grad_norm": 0.9351614117622375, + "learning_rate": 5.2078e-06, + "loss": 1.2169363403320312, + "step": 672200 + }, + { + "epoch": 89.64, + "grad_norm": 0.8728863596916199, + "learning_rate": 5.2011333333333335e-06, + "loss": 1.2184024810791017, + "step": 672300 + }, + { + "epoch": 89.65333333333334, + "grad_norm": 0.8635854125022888, + "learning_rate": 5.194466666666667e-06, + "loss": 1.221156997680664, + "step": 672400 + }, + { + "epoch": 89.66666666666667, + "grad_norm": 0.964632511138916, + "learning_rate": 5.1878000000000005e-06, + "loss": 1.2214126586914062, + "step": 672500 + }, + { + "epoch": 89.68, + "grad_norm": 0.934449315071106, + "learning_rate": 5.181133333333334e-06, + "loss": 1.2185586547851563, + "step": 672600 + }, + { + "epoch": 89.69333333333333, + "grad_norm": 0.8776857256889343, + "learning_rate": 5.174466666666667e-06, + "loss": 1.223541488647461, + "step": 672700 + }, + { + "epoch": 89.70666666666666, + "grad_norm": 0.9184494018554688, + "learning_rate": 5.167800000000001e-06, + "loss": 1.2196424865722657, + "step": 672800 + }, + { + "epoch": 89.72, + "grad_norm": 0.9252554178237915, + "learning_rate": 5.161133333333334e-06, + "loss": 1.216479263305664, + "step": 672900 + }, + { + "epoch": 89.73333333333333, + "grad_norm": 0.8667902946472168, + "learning_rate": 5.154466666666667e-06, + "loss": 1.2210060882568359, + "step": 673000 + }, + { + "epoch": 89.74666666666667, + "grad_norm": 0.8820723295211792, + "learning_rate": 5.147800000000001e-06, + "loss": 1.218407211303711, + "step": 673100 + }, + { + "epoch": 89.76, + "grad_norm": 0.8611978888511658, + "learning_rate": 5.141133333333334e-06, + "loss": 1.2198648071289062, + "step": 673200 + }, + { + "epoch": 89.77333333333333, + "grad_norm": 0.8947012424468994, + "learning_rate": 5.134466666666666e-06, + "loss": 1.223352584838867, + "step": 673300 + }, + { + "epoch": 89.78666666666666, + "grad_norm": 0.8866718411445618, + "learning_rate": 5.1278e-06, + "loss": 1.2186518096923828, + "step": 673400 + }, + { + "epoch": 89.8, + "grad_norm": 0.8624308705329895, + "learning_rate": 5.121133333333333e-06, + "loss": 1.2187384033203126, + "step": 673500 + }, + { + "epoch": 89.81333333333333, + "grad_norm": 0.9323912858963013, + "learning_rate": 5.114533333333333e-06, + "loss": 1.2192816925048828, + "step": 673600 + }, + { + "epoch": 89.82666666666667, + "grad_norm": 0.8835723996162415, + "learning_rate": 5.107866666666667e-06, + "loss": 1.2200238037109374, + "step": 673700 + }, + { + "epoch": 89.84, + "grad_norm": 0.9300037026405334, + "learning_rate": 5.1012e-06, + "loss": 1.2211270141601562, + "step": 673800 + }, + { + "epoch": 89.85333333333334, + "grad_norm": 0.8939962983131409, + "learning_rate": 5.0945333333333335e-06, + "loss": 1.2231653594970704, + "step": 673900 + }, + { + "epoch": 89.86666666666666, + "grad_norm": 0.8576112985610962, + "learning_rate": 5.0878666666666675e-06, + "loss": 1.2236614990234376, + "step": 674000 + }, + { + "epoch": 89.88, + "grad_norm": 0.9398141503334045, + "learning_rate": 5.081200000000001e-06, + "loss": 1.2185122680664062, + "step": 674100 + }, + { + "epoch": 89.89333333333333, + "grad_norm": 0.8942651152610779, + "learning_rate": 5.074533333333334e-06, + "loss": 1.2213440704345704, + "step": 674200 + }, + { + "epoch": 89.90666666666667, + "grad_norm": 0.9299342036247253, + "learning_rate": 5.067866666666667e-06, + "loss": 1.217512741088867, + "step": 674300 + }, + { + "epoch": 89.92, + "grad_norm": 0.9243706464767456, + "learning_rate": 5.0612e-06, + "loss": 1.2212284851074218, + "step": 674400 + }, + { + "epoch": 89.93333333333334, + "grad_norm": 0.9882511496543884, + "learning_rate": 5.054533333333333e-06, + "loss": 1.2185203552246093, + "step": 674500 + }, + { + "epoch": 89.94666666666667, + "grad_norm": 0.8811713457107544, + "learning_rate": 5.047866666666667e-06, + "loss": 1.2216316223144532, + "step": 674600 + }, + { + "epoch": 89.96, + "grad_norm": 0.8866249322891235, + "learning_rate": 5.0412e-06, + "loss": 1.2194962310791015, + "step": 674700 + }, + { + "epoch": 89.97333333333333, + "grad_norm": 0.8802648186683655, + "learning_rate": 5.034533333333333e-06, + "loss": 1.222801513671875, + "step": 674800 + }, + { + "epoch": 89.98666666666666, + "grad_norm": 0.9410952925682068, + "learning_rate": 5.027866666666667e-06, + "loss": 1.22396484375, + "step": 674900 + }, + { + "epoch": 90.0, + "grad_norm": 0.8734154105186462, + "learning_rate": 5.0212e-06, + "loss": 1.2178419494628907, + "step": 675000 + }, + { + "epoch": 90.01333333333334, + "grad_norm": 0.9289048910140991, + "learning_rate": 5.014533333333333e-06, + "loss": 1.2043888092041015, + "step": 675100 + }, + { + "epoch": 90.02666666666667, + "grad_norm": 0.918481707572937, + "learning_rate": 5.0078666666666665e-06, + "loss": 1.2099720001220704, + "step": 675200 + }, + { + "epoch": 90.04, + "grad_norm": 0.9005312919616699, + "learning_rate": 5.0012000000000005e-06, + "loss": 1.2031187438964843, + "step": 675300 + }, + { + "epoch": 90.05333333333333, + "grad_norm": 0.957449197769165, + "learning_rate": 4.994533333333334e-06, + "loss": 1.2071781158447266, + "step": 675400 + }, + { + "epoch": 90.06666666666666, + "grad_norm": 0.910042941570282, + "learning_rate": 4.987866666666667e-06, + "loss": 1.2066966247558595, + "step": 675500 + }, + { + "epoch": 90.08, + "grad_norm": 0.8937907218933105, + "learning_rate": 4.981266666666667e-06, + "loss": 1.2074835205078125, + "step": 675600 + }, + { + "epoch": 90.09333333333333, + "grad_norm": 0.8752577900886536, + "learning_rate": 4.9746e-06, + "loss": 1.208895492553711, + "step": 675700 + }, + { + "epoch": 90.10666666666667, + "grad_norm": 0.8520717620849609, + "learning_rate": 4.967933333333334e-06, + "loss": 1.2053620147705078, + "step": 675800 + }, + { + "epoch": 90.12, + "grad_norm": 0.8855275511741638, + "learning_rate": 4.961266666666667e-06, + "loss": 1.208665771484375, + "step": 675900 + }, + { + "epoch": 90.13333333333334, + "grad_norm": 0.9631090760231018, + "learning_rate": 4.9546e-06, + "loss": 1.2092572021484376, + "step": 676000 + }, + { + "epoch": 90.14666666666666, + "grad_norm": 0.8636735677719116, + "learning_rate": 4.947933333333334e-06, + "loss": 1.205884246826172, + "step": 676100 + }, + { + "epoch": 90.16, + "grad_norm": 0.9243836998939514, + "learning_rate": 4.941266666666667e-06, + "loss": 1.2106959533691406, + "step": 676200 + }, + { + "epoch": 90.17333333333333, + "grad_norm": 0.9383106231689453, + "learning_rate": 4.9346e-06, + "loss": 1.2110034942626953, + "step": 676300 + }, + { + "epoch": 90.18666666666667, + "grad_norm": 0.8857131600379944, + "learning_rate": 4.927933333333334e-06, + "loss": 1.2083201599121094, + "step": 676400 + }, + { + "epoch": 90.2, + "grad_norm": 0.9113370180130005, + "learning_rate": 4.921266666666667e-06, + "loss": 1.2091306304931642, + "step": 676500 + }, + { + "epoch": 90.21333333333334, + "grad_norm": 0.8388907313346863, + "learning_rate": 4.9146e-06, + "loss": 1.2119139862060546, + "step": 676600 + }, + { + "epoch": 90.22666666666667, + "grad_norm": 0.847788393497467, + "learning_rate": 4.9079333333333335e-06, + "loss": 1.210832061767578, + "step": 676700 + }, + { + "epoch": 90.24, + "grad_norm": 0.8751381039619446, + "learning_rate": 4.901266666666667e-06, + "loss": 1.20989013671875, + "step": 676800 + }, + { + "epoch": 90.25333333333333, + "grad_norm": 0.8831285238265991, + "learning_rate": 4.8946000000000005e-06, + "loss": 1.2075450134277343, + "step": 676900 + }, + { + "epoch": 90.26666666666667, + "grad_norm": 0.9753007888793945, + "learning_rate": 4.887933333333334e-06, + "loss": 1.2117955780029297, + "step": 677000 + }, + { + "epoch": 90.28, + "grad_norm": 0.952491819858551, + "learning_rate": 4.881266666666667e-06, + "loss": 1.212402572631836, + "step": 677100 + }, + { + "epoch": 90.29333333333334, + "grad_norm": 0.9106137156486511, + "learning_rate": 4.8746e-06, + "loss": 1.2052900695800781, + "step": 677200 + }, + { + "epoch": 90.30666666666667, + "grad_norm": 0.926100492477417, + "learning_rate": 4.867933333333333e-06, + "loss": 1.2105538177490234, + "step": 677300 + }, + { + "epoch": 90.32, + "grad_norm": 0.8455801010131836, + "learning_rate": 4.861266666666667e-06, + "loss": 1.2121770477294922, + "step": 677400 + }, + { + "epoch": 90.33333333333333, + "grad_norm": 0.9143370389938354, + "learning_rate": 4.8546e-06, + "loss": 1.2079702758789062, + "step": 677500 + }, + { + "epoch": 90.34666666666666, + "grad_norm": 0.8968600034713745, + "learning_rate": 4.848000000000001e-06, + "loss": 1.2125999450683593, + "step": 677600 + }, + { + "epoch": 90.36, + "grad_norm": 0.8847452402114868, + "learning_rate": 4.841333333333334e-06, + "loss": 1.2117592620849609, + "step": 677700 + }, + { + "epoch": 90.37333333333333, + "grad_norm": 0.9163066744804382, + "learning_rate": 4.834666666666667e-06, + "loss": 1.2076231384277343, + "step": 677800 + }, + { + "epoch": 90.38666666666667, + "grad_norm": 0.9202780723571777, + "learning_rate": 4.828e-06, + "loss": 1.210972213745117, + "step": 677900 + }, + { + "epoch": 90.4, + "grad_norm": 0.9594050049781799, + "learning_rate": 4.821333333333333e-06, + "loss": 1.2101927947998048, + "step": 678000 + }, + { + "epoch": 90.41333333333333, + "grad_norm": 0.8588058948516846, + "learning_rate": 4.814666666666666e-06, + "loss": 1.2125477600097656, + "step": 678100 + }, + { + "epoch": 90.42666666666666, + "grad_norm": 0.8945148587226868, + "learning_rate": 4.808e-06, + "loss": 1.2116073608398437, + "step": 678200 + }, + { + "epoch": 90.44, + "grad_norm": 0.9500113129615784, + "learning_rate": 4.8013333333333335e-06, + "loss": 1.2133517456054688, + "step": 678300 + }, + { + "epoch": 90.45333333333333, + "grad_norm": 0.8919427990913391, + "learning_rate": 4.794666666666667e-06, + "loss": 1.2090089416503906, + "step": 678400 + }, + { + "epoch": 90.46666666666667, + "grad_norm": 0.9410059452056885, + "learning_rate": 4.788e-06, + "loss": 1.210514144897461, + "step": 678500 + }, + { + "epoch": 90.48, + "grad_norm": 0.9124793410301208, + "learning_rate": 4.781333333333334e-06, + "loss": 1.2172020721435546, + "step": 678600 + }, + { + "epoch": 90.49333333333334, + "grad_norm": 0.9013743996620178, + "learning_rate": 4.774666666666667e-06, + "loss": 1.2081442260742188, + "step": 678700 + }, + { + "epoch": 90.50666666666666, + "grad_norm": 0.9235624670982361, + "learning_rate": 4.768e-06, + "loss": 1.2106606292724609, + "step": 678800 + }, + { + "epoch": 90.52, + "grad_norm": 0.9490922689437866, + "learning_rate": 4.761333333333334e-06, + "loss": 1.2129822540283204, + "step": 678900 + }, + { + "epoch": 90.53333333333333, + "grad_norm": 0.9190055727958679, + "learning_rate": 4.754666666666667e-06, + "loss": 1.2117118835449219, + "step": 679000 + }, + { + "epoch": 90.54666666666667, + "grad_norm": 0.9155454635620117, + "learning_rate": 4.748e-06, + "loss": 1.2153356170654297, + "step": 679100 + }, + { + "epoch": 90.56, + "grad_norm": 0.9508551955223083, + "learning_rate": 4.741333333333334e-06, + "loss": 1.214925765991211, + "step": 679200 + }, + { + "epoch": 90.57333333333334, + "grad_norm": 0.9003883600234985, + "learning_rate": 4.734666666666667e-06, + "loss": 1.2155438232421876, + "step": 679300 + }, + { + "epoch": 90.58666666666667, + "grad_norm": 0.8104000091552734, + "learning_rate": 4.728e-06, + "loss": 1.212996063232422, + "step": 679400 + }, + { + "epoch": 90.6, + "grad_norm": 0.8884322047233582, + "learning_rate": 4.721333333333334e-06, + "loss": 1.208837890625, + "step": 679500 + }, + { + "epoch": 90.61333333333333, + "grad_norm": 0.900663435459137, + "learning_rate": 4.714733333333333e-06, + "loss": 1.2164701843261718, + "step": 679600 + }, + { + "epoch": 90.62666666666667, + "grad_norm": 0.9068719148635864, + "learning_rate": 4.7080666666666665e-06, + "loss": 1.2146306610107422, + "step": 679700 + }, + { + "epoch": 90.64, + "grad_norm": 0.8906852006912231, + "learning_rate": 4.7014e-06, + "loss": 1.211735382080078, + "step": 679800 + }, + { + "epoch": 90.65333333333334, + "grad_norm": 0.8880618214607239, + "learning_rate": 4.6947333333333335e-06, + "loss": 1.2147854614257811, + "step": 679900 + }, + { + "epoch": 90.66666666666667, + "grad_norm": 0.9201205372810364, + "learning_rate": 4.688066666666667e-06, + "loss": 1.2103929901123047, + "step": 680000 + }, + { + "epoch": 90.68, + "grad_norm": 0.8812013864517212, + "learning_rate": 4.681400000000001e-06, + "loss": 1.2157184600830078, + "step": 680100 + }, + { + "epoch": 90.69333333333333, + "grad_norm": 0.8855476975440979, + "learning_rate": 4.674733333333334e-06, + "loss": 1.2132430267333985, + "step": 680200 + }, + { + "epoch": 90.70666666666666, + "grad_norm": 0.9242827892303467, + "learning_rate": 4.668066666666667e-06, + "loss": 1.2172369384765624, + "step": 680300 + }, + { + "epoch": 90.72, + "grad_norm": 0.9888787865638733, + "learning_rate": 4.661400000000001e-06, + "loss": 1.2181033325195312, + "step": 680400 + }, + { + "epoch": 90.73333333333333, + "grad_norm": 0.9318944811820984, + "learning_rate": 4.654733333333334e-06, + "loss": 1.2127987670898437, + "step": 680500 + }, + { + "epoch": 90.74666666666667, + "grad_norm": 0.9456973671913147, + "learning_rate": 4.648066666666667e-06, + "loss": 1.213536834716797, + "step": 680600 + }, + { + "epoch": 90.76, + "grad_norm": 0.951168954372406, + "learning_rate": 4.6414e-06, + "loss": 1.2176351928710938, + "step": 680700 + }, + { + "epoch": 90.77333333333333, + "grad_norm": 0.9500468969345093, + "learning_rate": 4.634733333333333e-06, + "loss": 1.2171255493164062, + "step": 680800 + }, + { + "epoch": 90.78666666666666, + "grad_norm": 0.9571161270141602, + "learning_rate": 4.628066666666666e-06, + "loss": 1.2125713348388671, + "step": 680900 + }, + { + "epoch": 90.8, + "grad_norm": 0.9615257978439331, + "learning_rate": 4.6214e-06, + "loss": 1.2181266021728516, + "step": 681000 + }, + { + "epoch": 90.81333333333333, + "grad_norm": 0.9538195133209229, + "learning_rate": 4.6147333333333335e-06, + "loss": 1.2164169311523438, + "step": 681100 + }, + { + "epoch": 90.82666666666667, + "grad_norm": 0.9797369241714478, + "learning_rate": 4.6080666666666666e-06, + "loss": 1.218907012939453, + "step": 681200 + }, + { + "epoch": 90.84, + "grad_norm": 0.9338709712028503, + "learning_rate": 4.6014000000000005e-06, + "loss": 1.2184577941894532, + "step": 681300 + }, + { + "epoch": 90.85333333333334, + "grad_norm": 0.9682694673538208, + "learning_rate": 4.594733333333334e-06, + "loss": 1.2135367584228516, + "step": 681400 + }, + { + "epoch": 90.86666666666666, + "grad_norm": 0.8703393936157227, + "learning_rate": 4.588066666666667e-06, + "loss": 1.2133425903320312, + "step": 681500 + }, + { + "epoch": 90.88, + "grad_norm": 0.9350166916847229, + "learning_rate": 4.581466666666667e-06, + "loss": 1.2187168884277344, + "step": 681600 + }, + { + "epoch": 90.89333333333333, + "grad_norm": 0.8443960547447205, + "learning_rate": 4.5748e-06, + "loss": 1.2129023742675782, + "step": 681700 + }, + { + "epoch": 90.90666666666667, + "grad_norm": 0.9225748181343079, + "learning_rate": 4.568133333333333e-06, + "loss": 1.21633056640625, + "step": 681800 + }, + { + "epoch": 90.92, + "grad_norm": 0.8942683339118958, + "learning_rate": 4.561466666666667e-06, + "loss": 1.2165023040771485, + "step": 681900 + }, + { + "epoch": 90.93333333333334, + "grad_norm": 0.9616734981536865, + "learning_rate": 4.5548e-06, + "loss": 1.2154533386230468, + "step": 682000 + }, + { + "epoch": 90.94666666666667, + "grad_norm": 0.881159782409668, + "learning_rate": 4.548133333333333e-06, + "loss": 1.2169892120361328, + "step": 682100 + }, + { + "epoch": 90.96, + "grad_norm": 0.9500011205673218, + "learning_rate": 4.541466666666667e-06, + "loss": 1.218693389892578, + "step": 682200 + }, + { + "epoch": 90.97333333333333, + "grad_norm": 0.9119076728820801, + "learning_rate": 4.5348e-06, + "loss": 1.216949462890625, + "step": 682300 + }, + { + "epoch": 90.98666666666666, + "grad_norm": 0.8956566452980042, + "learning_rate": 4.528133333333333e-06, + "loss": 1.2165196228027344, + "step": 682400 + }, + { + "epoch": 91.0, + "grad_norm": 0.8929473757743835, + "learning_rate": 4.521466666666667e-06, + "loss": 1.2148597717285157, + "step": 682500 + }, + { + "epoch": 91.01333333333334, + "grad_norm": 0.85610431432724, + "learning_rate": 4.5148e-06, + "loss": 1.200636215209961, + "step": 682600 + }, + { + "epoch": 91.02666666666667, + "grad_norm": 0.9160832166671753, + "learning_rate": 4.5081333333333335e-06, + "loss": 1.2068274688720704, + "step": 682700 + }, + { + "epoch": 91.04, + "grad_norm": 0.9119850993156433, + "learning_rate": 4.501466666666667e-06, + "loss": 1.208277587890625, + "step": 682800 + }, + { + "epoch": 91.05333333333333, + "grad_norm": 0.9079209566116333, + "learning_rate": 4.4948000000000006e-06, + "loss": 1.2017269897460938, + "step": 682900 + }, + { + "epoch": 91.06666666666666, + "grad_norm": 0.9564381241798401, + "learning_rate": 4.488133333333334e-06, + "loss": 1.207140655517578, + "step": 683000 + }, + { + "epoch": 91.08, + "grad_norm": 0.9598597288131714, + "learning_rate": 4.481466666666667e-06, + "loss": 1.203281784057617, + "step": 683100 + }, + { + "epoch": 91.09333333333333, + "grad_norm": 0.861584484577179, + "learning_rate": 4.474800000000001e-06, + "loss": 1.2081224060058593, + "step": 683200 + }, + { + "epoch": 91.10666666666667, + "grad_norm": 0.8429510593414307, + "learning_rate": 4.468133333333334e-06, + "loss": 1.2070238494873047, + "step": 683300 + }, + { + "epoch": 91.12, + "grad_norm": 0.8890085220336914, + "learning_rate": 4.461466666666667e-06, + "loss": 1.2043938446044922, + "step": 683400 + }, + { + "epoch": 91.13333333333334, + "grad_norm": 0.8663833737373352, + "learning_rate": 4.4548e-06, + "loss": 1.20203125, + "step": 683500 + }, + { + "epoch": 91.14666666666666, + "grad_norm": 0.9313666224479675, + "learning_rate": 4.448133333333333e-06, + "loss": 1.2063787841796876, + "step": 683600 + }, + { + "epoch": 91.16, + "grad_norm": 0.8840457201004028, + "learning_rate": 4.441533333333334e-06, + "loss": 1.2069801330566405, + "step": 683700 + }, + { + "epoch": 91.17333333333333, + "grad_norm": 0.8782556653022766, + "learning_rate": 4.434866666666667e-06, + "loss": 1.2082003021240235, + "step": 683800 + }, + { + "epoch": 91.18666666666667, + "grad_norm": 0.9454366564750671, + "learning_rate": 4.4282e-06, + "loss": 1.2090266418457032, + "step": 683900 + }, + { + "epoch": 91.2, + "grad_norm": 0.8991572260856628, + "learning_rate": 4.421533333333334e-06, + "loss": 1.2046781921386718, + "step": 684000 + }, + { + "epoch": 91.21333333333334, + "grad_norm": 0.8746281862258911, + "learning_rate": 4.414866666666667e-06, + "loss": 1.2073801422119141, + "step": 684100 + }, + { + "epoch": 91.22666666666667, + "grad_norm": 0.9214029312133789, + "learning_rate": 4.4082e-06, + "loss": 1.2062918853759765, + "step": 684200 + }, + { + "epoch": 91.24, + "grad_norm": 0.9604611992835999, + "learning_rate": 4.4015333333333335e-06, + "loss": 1.2054164123535156, + "step": 684300 + }, + { + "epoch": 91.25333333333333, + "grad_norm": 0.8675783276557922, + "learning_rate": 4.394866666666667e-06, + "loss": 1.208896942138672, + "step": 684400 + }, + { + "epoch": 91.26666666666667, + "grad_norm": 0.9738113880157471, + "learning_rate": 4.3882e-06, + "loss": 1.2100360107421875, + "step": 684500 + }, + { + "epoch": 91.28, + "grad_norm": 0.8885136842727661, + "learning_rate": 4.381533333333334e-06, + "loss": 1.2070569610595703, + "step": 684600 + }, + { + "epoch": 91.29333333333334, + "grad_norm": 0.9425179362297058, + "learning_rate": 4.374866666666667e-06, + "loss": 1.2077506256103516, + "step": 684700 + }, + { + "epoch": 91.30666666666667, + "grad_norm": 0.9048968553543091, + "learning_rate": 4.3682e-06, + "loss": 1.2081721496582032, + "step": 684800 + }, + { + "epoch": 91.32, + "grad_norm": 0.9390761256217957, + "learning_rate": 4.361533333333333e-06, + "loss": 1.207364044189453, + "step": 684900 + }, + { + "epoch": 91.33333333333333, + "grad_norm": 0.9158327579498291, + "learning_rate": 4.354866666666667e-06, + "loss": 1.2073294830322265, + "step": 685000 + }, + { + "epoch": 91.34666666666666, + "grad_norm": 0.8673156499862671, + "learning_rate": 4.3482e-06, + "loss": 1.2052005004882813, + "step": 685100 + }, + { + "epoch": 91.36, + "grad_norm": 0.8864044547080994, + "learning_rate": 4.341533333333333e-06, + "loss": 1.2118058013916015, + "step": 685200 + }, + { + "epoch": 91.37333333333333, + "grad_norm": 0.9207347631454468, + "learning_rate": 4.334866666666667e-06, + "loss": 1.2065187835693358, + "step": 685300 + }, + { + "epoch": 91.38666666666667, + "grad_norm": 0.900858998298645, + "learning_rate": 4.3282e-06, + "loss": 1.2105420684814454, + "step": 685400 + }, + { + "epoch": 91.4, + "grad_norm": 0.9267945885658264, + "learning_rate": 4.3215333333333335e-06, + "loss": 1.20435302734375, + "step": 685500 + }, + { + "epoch": 91.41333333333333, + "grad_norm": 0.9637866020202637, + "learning_rate": 4.314866666666667e-06, + "loss": 1.2085104370117188, + "step": 685600 + }, + { + "epoch": 91.42666666666666, + "grad_norm": 0.9455682039260864, + "learning_rate": 4.3082666666666665e-06, + "loss": 1.2091656494140626, + "step": 685700 + }, + { + "epoch": 91.44, + "grad_norm": 0.8735678195953369, + "learning_rate": 4.3016000000000005e-06, + "loss": 1.2076645660400391, + "step": 685800 + }, + { + "epoch": 91.45333333333333, + "grad_norm": 0.9294810891151428, + "learning_rate": 4.2949333333333336e-06, + "loss": 1.208891830444336, + "step": 685900 + }, + { + "epoch": 91.46666666666667, + "grad_norm": 0.92054283618927, + "learning_rate": 4.288266666666667e-06, + "loss": 1.2102249145507813, + "step": 686000 + }, + { + "epoch": 91.48, + "grad_norm": 0.8439618349075317, + "learning_rate": 4.2816e-06, + "loss": 1.2142427062988281, + "step": 686100 + }, + { + "epoch": 91.49333333333334, + "grad_norm": 0.8484886884689331, + "learning_rate": 4.274933333333334e-06, + "loss": 1.2077330017089845, + "step": 686200 + }, + { + "epoch": 91.50666666666666, + "grad_norm": 0.9745410680770874, + "learning_rate": 4.268266666666667e-06, + "loss": 1.2066510009765625, + "step": 686300 + }, + { + "epoch": 91.52, + "grad_norm": 0.8893364667892456, + "learning_rate": 4.2616e-06, + "loss": 1.2086053466796876, + "step": 686400 + }, + { + "epoch": 91.53333333333333, + "grad_norm": 0.8825772404670715, + "learning_rate": 4.254933333333334e-06, + "loss": 1.2083636474609376, + "step": 686500 + }, + { + "epoch": 91.54666666666667, + "grad_norm": 0.8804160356521606, + "learning_rate": 4.248266666666667e-06, + "loss": 1.2095064544677734, + "step": 686600 + }, + { + "epoch": 91.56, + "grad_norm": 0.9658887386322021, + "learning_rate": 4.2416e-06, + "loss": 1.2093119049072265, + "step": 686700 + }, + { + "epoch": 91.57333333333334, + "grad_norm": 0.952987790107727, + "learning_rate": 4.234933333333334e-06, + "loss": 1.2097184753417969, + "step": 686800 + }, + { + "epoch": 91.58666666666667, + "grad_norm": 0.8630662560462952, + "learning_rate": 4.228266666666667e-06, + "loss": 1.2081199645996095, + "step": 686900 + }, + { + "epoch": 91.6, + "grad_norm": 0.9706721901893616, + "learning_rate": 4.2215999999999995e-06, + "loss": 1.2103736114501953, + "step": 687000 + }, + { + "epoch": 91.61333333333333, + "grad_norm": 0.9168404936790466, + "learning_rate": 4.2149333333333335e-06, + "loss": 1.2104512023925782, + "step": 687100 + }, + { + "epoch": 91.62666666666667, + "grad_norm": 0.9021251201629639, + "learning_rate": 4.208266666666667e-06, + "loss": 1.208455810546875, + "step": 687200 + }, + { + "epoch": 91.64, + "grad_norm": 0.9148797392845154, + "learning_rate": 4.2016e-06, + "loss": 1.21326904296875, + "step": 687300 + }, + { + "epoch": 91.65333333333334, + "grad_norm": 0.8841809630393982, + "learning_rate": 4.194933333333334e-06, + "loss": 1.2070911407470704, + "step": 687400 + }, + { + "epoch": 91.66666666666667, + "grad_norm": 0.9368838667869568, + "learning_rate": 4.188266666666667e-06, + "loss": 1.2107268524169923, + "step": 687500 + }, + { + "epoch": 91.68, + "grad_norm": 0.9060821533203125, + "learning_rate": 4.1816e-06, + "loss": 1.2130730438232422, + "step": 687600 + }, + { + "epoch": 91.69333333333333, + "grad_norm": 0.9751666188240051, + "learning_rate": 4.175000000000001e-06, + "loss": 1.2097231292724608, + "step": 687700 + }, + { + "epoch": 91.70666666666666, + "grad_norm": 0.8472406268119812, + "learning_rate": 4.168333333333334e-06, + "loss": 1.2085147094726563, + "step": 687800 + }, + { + "epoch": 91.72, + "grad_norm": 1.005416989326477, + "learning_rate": 4.161666666666667e-06, + "loss": 1.2118323516845704, + "step": 687900 + }, + { + "epoch": 91.73333333333333, + "grad_norm": 0.8820925951004028, + "learning_rate": 4.155e-06, + "loss": 1.2112535095214845, + "step": 688000 + }, + { + "epoch": 91.74666666666667, + "grad_norm": 0.8622952103614807, + "learning_rate": 4.148333333333333e-06, + "loss": 1.2110252380371094, + "step": 688100 + }, + { + "epoch": 91.76, + "grad_norm": 0.8722947239875793, + "learning_rate": 4.141666666666666e-06, + "loss": 1.2133953857421875, + "step": 688200 + }, + { + "epoch": 91.77333333333333, + "grad_norm": 0.9638639688491821, + "learning_rate": 4.135e-06, + "loss": 1.2091949462890625, + "step": 688300 + }, + { + "epoch": 91.78666666666666, + "grad_norm": 0.9140656590461731, + "learning_rate": 4.128333333333333e-06, + "loss": 1.2114816284179688, + "step": 688400 + }, + { + "epoch": 91.8, + "grad_norm": 0.9216871857643127, + "learning_rate": 4.1216666666666665e-06, + "loss": 1.2120486450195314, + "step": 688500 + }, + { + "epoch": 91.81333333333333, + "grad_norm": 0.8618937134742737, + "learning_rate": 4.115e-06, + "loss": 1.2109370422363281, + "step": 688600 + }, + { + "epoch": 91.82666666666667, + "grad_norm": 0.8921952247619629, + "learning_rate": 4.1083333333333335e-06, + "loss": 1.2133558654785157, + "step": 688700 + }, + { + "epoch": 91.84, + "grad_norm": 0.895045280456543, + "learning_rate": 4.101666666666667e-06, + "loss": 1.2121337890625, + "step": 688800 + }, + { + "epoch": 91.85333333333334, + "grad_norm": 0.8907344341278076, + "learning_rate": 4.095000000000001e-06, + "loss": 1.2133706665039063, + "step": 688900 + }, + { + "epoch": 91.86666666666666, + "grad_norm": 0.87125563621521, + "learning_rate": 4.088333333333334e-06, + "loss": 1.2131654357910155, + "step": 689000 + }, + { + "epoch": 91.88, + "grad_norm": 0.8448019623756409, + "learning_rate": 4.081666666666667e-06, + "loss": 1.2095771026611328, + "step": 689100 + }, + { + "epoch": 91.89333333333333, + "grad_norm": 0.8955243229866028, + "learning_rate": 4.075e-06, + "loss": 1.2100251770019532, + "step": 689200 + }, + { + "epoch": 91.90666666666667, + "grad_norm": 0.9619772434234619, + "learning_rate": 4.068333333333334e-06, + "loss": 1.2143017578125, + "step": 689300 + }, + { + "epoch": 91.92, + "grad_norm": 0.893493115901947, + "learning_rate": 4.061666666666667e-06, + "loss": 1.213790283203125, + "step": 689400 + }, + { + "epoch": 91.93333333333334, + "grad_norm": 0.9905881285667419, + "learning_rate": 4.055e-06, + "loss": 1.2162788391113282, + "step": 689500 + }, + { + "epoch": 91.94666666666667, + "grad_norm": 0.9450225830078125, + "learning_rate": 4.048333333333334e-06, + "loss": 1.213459243774414, + "step": 689600 + }, + { + "epoch": 91.96, + "grad_norm": 0.9374111294746399, + "learning_rate": 4.041733333333333e-06, + "loss": 1.21458984375, + "step": 689700 + }, + { + "epoch": 91.97333333333333, + "grad_norm": 0.8688250780105591, + "learning_rate": 4.035066666666667e-06, + "loss": 1.2136087799072266, + "step": 689800 + }, + { + "epoch": 91.98666666666666, + "grad_norm": 0.912335216999054, + "learning_rate": 4.0284e-06, + "loss": 1.2162496948242187, + "step": 689900 + }, + { + "epoch": 92.0, + "grad_norm": 0.8809793591499329, + "learning_rate": 4.021733333333333e-06, + "loss": 1.215945281982422, + "step": 690000 + }, + { + "epoch": 92.01333333333334, + "grad_norm": 0.8624962568283081, + "learning_rate": 4.015066666666667e-06, + "loss": 1.1997320556640625, + "step": 690100 + }, + { + "epoch": 92.02666666666667, + "grad_norm": 0.8585469126701355, + "learning_rate": 4.0084000000000005e-06, + "loss": 1.198604278564453, + "step": 690200 + }, + { + "epoch": 92.04, + "grad_norm": 0.9289453029632568, + "learning_rate": 4.0017333333333336e-06, + "loss": 1.2011491394042968, + "step": 690300 + }, + { + "epoch": 92.05333333333333, + "grad_norm": 0.81109219789505, + "learning_rate": 3.995066666666667e-06, + "loss": 1.200951156616211, + "step": 690400 + }, + { + "epoch": 92.06666666666666, + "grad_norm": 0.8511631488800049, + "learning_rate": 3.988400000000001e-06, + "loss": 1.2002388000488282, + "step": 690500 + }, + { + "epoch": 92.08, + "grad_norm": 0.9203524589538574, + "learning_rate": 3.981733333333334e-06, + "loss": 1.1966284942626952, + "step": 690600 + }, + { + "epoch": 92.09333333333333, + "grad_norm": 0.9373264312744141, + "learning_rate": 3.975066666666667e-06, + "loss": 1.20522705078125, + "step": 690700 + }, + { + "epoch": 92.10666666666667, + "grad_norm": 0.8882933855056763, + "learning_rate": 3.9684e-06, + "loss": 1.1983634948730468, + "step": 690800 + }, + { + "epoch": 92.12, + "grad_norm": 0.9304332733154297, + "learning_rate": 3.961733333333333e-06, + "loss": 1.201865005493164, + "step": 690900 + }, + { + "epoch": 92.13333333333334, + "grad_norm": 0.8630163669586182, + "learning_rate": 3.955066666666667e-06, + "loss": 1.203161163330078, + "step": 691000 + }, + { + "epoch": 92.14666666666666, + "grad_norm": 0.8729649782180786, + "learning_rate": 3.9484e-06, + "loss": 1.1991504669189452, + "step": 691100 + }, + { + "epoch": 92.16, + "grad_norm": 0.9168478846549988, + "learning_rate": 3.941733333333333e-06, + "loss": 1.2062628936767579, + "step": 691200 + }, + { + "epoch": 92.17333333333333, + "grad_norm": 0.947083055973053, + "learning_rate": 3.935066666666666e-06, + "loss": 1.2042913818359375, + "step": 691300 + }, + { + "epoch": 92.18666666666667, + "grad_norm": 0.8406407237052917, + "learning_rate": 3.9284e-06, + "loss": 1.2058570861816407, + "step": 691400 + }, + { + "epoch": 92.2, + "grad_norm": 0.8867647051811218, + "learning_rate": 3.9217333333333335e-06, + "loss": 1.205999526977539, + "step": 691500 + }, + { + "epoch": 92.21333333333334, + "grad_norm": 0.8558156490325928, + "learning_rate": 3.915066666666667e-06, + "loss": 1.2016780853271485, + "step": 691600 + }, + { + "epoch": 92.22666666666667, + "grad_norm": 0.9120957851409912, + "learning_rate": 3.9084666666666665e-06, + "loss": 1.2028411102294922, + "step": 691700 + }, + { + "epoch": 92.24, + "grad_norm": 0.8666041493415833, + "learning_rate": 3.9018e-06, + "loss": 1.2044637298583984, + "step": 691800 + }, + { + "epoch": 92.25333333333333, + "grad_norm": 0.9331375956535339, + "learning_rate": 3.895133333333334e-06, + "loss": 1.2048243713378906, + "step": 691900 + }, + { + "epoch": 92.26666666666667, + "grad_norm": 0.9363828301429749, + "learning_rate": 3.888466666666667e-06, + "loss": 1.20224609375, + "step": 692000 + }, + { + "epoch": 92.28, + "grad_norm": 0.8703069686889648, + "learning_rate": 3.8818e-06, + "loss": 1.2026631927490234, + "step": 692100 + }, + { + "epoch": 92.29333333333334, + "grad_norm": 0.8834508061408997, + "learning_rate": 3.875133333333334e-06, + "loss": 1.205963134765625, + "step": 692200 + }, + { + "epoch": 92.30666666666667, + "grad_norm": 0.9188662171363831, + "learning_rate": 3.868466666666667e-06, + "loss": 1.2017127227783204, + "step": 692300 + }, + { + "epoch": 92.32, + "grad_norm": 0.9342883825302124, + "learning_rate": 3.8618e-06, + "loss": 1.2051532745361329, + "step": 692400 + }, + { + "epoch": 92.33333333333333, + "grad_norm": 0.8774183988571167, + "learning_rate": 3.855133333333333e-06, + "loss": 1.2030648803710937, + "step": 692500 + }, + { + "epoch": 92.34666666666666, + "grad_norm": 0.9485383033752441, + "learning_rate": 3.848466666666667e-06, + "loss": 1.2045017242431642, + "step": 692600 + }, + { + "epoch": 92.36, + "grad_norm": 0.8900927305221558, + "learning_rate": 3.8418e-06, + "loss": 1.2074580383300781, + "step": 692700 + }, + { + "epoch": 92.37333333333333, + "grad_norm": 0.92417973279953, + "learning_rate": 3.835133333333333e-06, + "loss": 1.2043077087402343, + "step": 692800 + }, + { + "epoch": 92.38666666666667, + "grad_norm": 0.9447479844093323, + "learning_rate": 3.828466666666667e-06, + "loss": 1.2089013671875, + "step": 692900 + }, + { + "epoch": 92.4, + "grad_norm": 0.8772882223129272, + "learning_rate": 3.8218e-06, + "loss": 1.2071390533447266, + "step": 693000 + }, + { + "epoch": 92.41333333333333, + "grad_norm": 1.0013352632522583, + "learning_rate": 3.8151333333333335e-06, + "loss": 1.2067708587646484, + "step": 693100 + }, + { + "epoch": 92.42666666666666, + "grad_norm": 0.933141827583313, + "learning_rate": 3.808466666666667e-06, + "loss": 1.203813018798828, + "step": 693200 + }, + { + "epoch": 92.44, + "grad_norm": 0.8919726610183716, + "learning_rate": 3.8018000000000006e-06, + "loss": 1.2031111907958985, + "step": 693300 + }, + { + "epoch": 92.45333333333333, + "grad_norm": 0.9562348127365112, + "learning_rate": 3.7951333333333333e-06, + "loss": 1.2068241882324218, + "step": 693400 + }, + { + "epoch": 92.46666666666667, + "grad_norm": 0.8733388185501099, + "learning_rate": 3.7884666666666664e-06, + "loss": 1.2057405090332032, + "step": 693500 + }, + { + "epoch": 92.48, + "grad_norm": 0.837426483631134, + "learning_rate": 3.7818e-06, + "loss": 1.2067436218261718, + "step": 693600 + }, + { + "epoch": 92.49333333333334, + "grad_norm": 0.881060004234314, + "learning_rate": 3.7752000000000003e-06, + "loss": 1.2039698028564454, + "step": 693700 + }, + { + "epoch": 92.50666666666666, + "grad_norm": 0.9489794969558716, + "learning_rate": 3.768533333333334e-06, + "loss": 1.2064761352539062, + "step": 693800 + }, + { + "epoch": 92.52, + "grad_norm": 0.8895357847213745, + "learning_rate": 3.761866666666667e-06, + "loss": 1.202109375, + "step": 693900 + }, + { + "epoch": 92.53333333333333, + "grad_norm": 0.9040202498435974, + "learning_rate": 3.7552000000000005e-06, + "loss": 1.2075955963134766, + "step": 694000 + }, + { + "epoch": 92.54666666666667, + "grad_norm": 0.9203453660011292, + "learning_rate": 3.7485333333333336e-06, + "loss": 1.2062896728515624, + "step": 694100 + }, + { + "epoch": 92.56, + "grad_norm": 0.8410115242004395, + "learning_rate": 3.741866666666667e-06, + "loss": 1.2079099273681642, + "step": 694200 + }, + { + "epoch": 92.57333333333334, + "grad_norm": 0.8776598572731018, + "learning_rate": 3.7352000000000007e-06, + "loss": 1.201023941040039, + "step": 694300 + }, + { + "epoch": 92.58666666666667, + "grad_norm": 0.9552059769630432, + "learning_rate": 3.7285333333333334e-06, + "loss": 1.209650650024414, + "step": 694400 + }, + { + "epoch": 92.6, + "grad_norm": 0.9305794835090637, + "learning_rate": 3.7218666666666665e-06, + "loss": 1.2058026885986328, + "step": 694500 + }, + { + "epoch": 92.61333333333333, + "grad_norm": 0.9237838387489319, + "learning_rate": 3.7152e-06, + "loss": 1.2126660919189454, + "step": 694600 + }, + { + "epoch": 92.62666666666667, + "grad_norm": 0.9203336834907532, + "learning_rate": 3.708533333333333e-06, + "loss": 1.207015380859375, + "step": 694700 + }, + { + "epoch": 92.64, + "grad_norm": 0.9319577217102051, + "learning_rate": 3.7018666666666667e-06, + "loss": 1.2062096405029297, + "step": 694800 + }, + { + "epoch": 92.65333333333334, + "grad_norm": 0.8748674988746643, + "learning_rate": 3.6952000000000002e-06, + "loss": 1.2033453369140625, + "step": 694900 + }, + { + "epoch": 92.66666666666667, + "grad_norm": 0.8956521153450012, + "learning_rate": 3.6885333333333333e-06, + "loss": 1.2087307739257813, + "step": 695000 + }, + { + "epoch": 92.68, + "grad_norm": 0.8896095156669617, + "learning_rate": 3.681866666666667e-06, + "loss": 1.2088866424560547, + "step": 695100 + }, + { + "epoch": 92.69333333333333, + "grad_norm": 0.9287655353546143, + "learning_rate": 3.6752e-06, + "loss": 1.2099744415283202, + "step": 695200 + }, + { + "epoch": 92.70666666666666, + "grad_norm": 0.8579117655754089, + "learning_rate": 3.6685333333333335e-06, + "loss": 1.2089561462402343, + "step": 695300 + }, + { + "epoch": 92.72, + "grad_norm": 0.906623125076294, + "learning_rate": 3.661866666666667e-06, + "loss": 1.207219009399414, + "step": 695400 + }, + { + "epoch": 92.73333333333333, + "grad_norm": 0.8688279390335083, + "learning_rate": 3.6552e-06, + "loss": 1.205895233154297, + "step": 695500 + }, + { + "epoch": 92.74666666666667, + "grad_norm": 0.9425486326217651, + "learning_rate": 3.6485333333333337e-06, + "loss": 1.205015869140625, + "step": 695600 + }, + { + "epoch": 92.76, + "grad_norm": 0.9034813046455383, + "learning_rate": 3.6419333333333332e-06, + "loss": 1.2078257751464845, + "step": 695700 + }, + { + "epoch": 92.77333333333333, + "grad_norm": 0.9471731781959534, + "learning_rate": 3.6352666666666668e-06, + "loss": 1.2084870147705078, + "step": 695800 + }, + { + "epoch": 92.78666666666666, + "grad_norm": 0.8931053280830383, + "learning_rate": 3.6286e-06, + "loss": 1.2065433502197265, + "step": 695900 + }, + { + "epoch": 92.8, + "grad_norm": 0.9375083446502686, + "learning_rate": 3.6219333333333334e-06, + "loss": 1.2090350341796876, + "step": 696000 + }, + { + "epoch": 92.81333333333333, + "grad_norm": 0.8571840524673462, + "learning_rate": 3.615266666666667e-06, + "loss": 1.2078850555419922, + "step": 696100 + }, + { + "epoch": 92.82666666666667, + "grad_norm": 0.9313179850578308, + "learning_rate": 3.6086e-06, + "loss": 1.2092186737060546, + "step": 696200 + }, + { + "epoch": 92.84, + "grad_norm": 0.8702300786972046, + "learning_rate": 3.6019333333333336e-06, + "loss": 1.209949951171875, + "step": 696300 + }, + { + "epoch": 92.85333333333334, + "grad_norm": 0.9009842872619629, + "learning_rate": 3.5952666666666667e-06, + "loss": 1.2110611724853515, + "step": 696400 + }, + { + "epoch": 92.86666666666666, + "grad_norm": 0.8789703249931335, + "learning_rate": 3.5886000000000003e-06, + "loss": 1.212374267578125, + "step": 696500 + }, + { + "epoch": 92.88, + "grad_norm": 0.937931478023529, + "learning_rate": 3.581933333333334e-06, + "loss": 1.2115992736816406, + "step": 696600 + }, + { + "epoch": 92.89333333333333, + "grad_norm": 0.8966504335403442, + "learning_rate": 3.575266666666667e-06, + "loss": 1.2094432067871095, + "step": 696700 + }, + { + "epoch": 92.90666666666667, + "grad_norm": 0.9230213761329651, + "learning_rate": 3.5686000000000004e-06, + "loss": 1.2086225128173829, + "step": 696800 + }, + { + "epoch": 92.92, + "grad_norm": 0.9597765803337097, + "learning_rate": 3.561933333333334e-06, + "loss": 1.2142015075683594, + "step": 696900 + }, + { + "epoch": 92.93333333333334, + "grad_norm": 0.9093431830406189, + "learning_rate": 3.555266666666667e-06, + "loss": 1.2086906433105469, + "step": 697000 + }, + { + "epoch": 92.94666666666667, + "grad_norm": 0.897400438785553, + "learning_rate": 3.5485999999999998e-06, + "loss": 1.211206283569336, + "step": 697100 + }, + { + "epoch": 92.96, + "grad_norm": 0.867046594619751, + "learning_rate": 3.5419333333333333e-06, + "loss": 1.2069461822509766, + "step": 697200 + }, + { + "epoch": 92.97333333333333, + "grad_norm": 0.8881245255470276, + "learning_rate": 3.5352666666666664e-06, + "loss": 1.2137161254882813, + "step": 697300 + }, + { + "epoch": 92.98666666666666, + "grad_norm": 0.9253084063529968, + "learning_rate": 3.5286e-06, + "loss": 1.2097924041748047, + "step": 697400 + }, + { + "epoch": 93.0, + "grad_norm": 0.938310980796814, + "learning_rate": 3.5219333333333335e-06, + "loss": 1.2097466278076172, + "step": 697500 + }, + { + "epoch": 93.01333333333334, + "grad_norm": 0.9459820985794067, + "learning_rate": 3.5152666666666666e-06, + "loss": 1.2002715301513671, + "step": 697600 + }, + { + "epoch": 93.02666666666667, + "grad_norm": 0.8648054003715515, + "learning_rate": 3.508666666666667e-06, + "loss": 1.1980596923828124, + "step": 697700 + }, + { + "epoch": 93.04, + "grad_norm": 0.9034267067909241, + "learning_rate": 3.5020000000000005e-06, + "loss": 1.1980625915527343, + "step": 697800 + }, + { + "epoch": 93.05333333333333, + "grad_norm": 0.891040027141571, + "learning_rate": 3.4953333333333336e-06, + "loss": 1.196813735961914, + "step": 697900 + }, + { + "epoch": 93.06666666666666, + "grad_norm": 0.8857132792472839, + "learning_rate": 3.488666666666667e-06, + "loss": 1.1995645141601563, + "step": 698000 + }, + { + "epoch": 93.08, + "grad_norm": 0.8220590949058533, + "learning_rate": 3.482e-06, + "loss": 1.199000930786133, + "step": 698100 + }, + { + "epoch": 93.09333333333333, + "grad_norm": 0.9337181448936462, + "learning_rate": 3.4753333333333334e-06, + "loss": 1.1981783294677735, + "step": 698200 + }, + { + "epoch": 93.10666666666667, + "grad_norm": 0.8952512145042419, + "learning_rate": 3.4686666666666665e-06, + "loss": 1.203648910522461, + "step": 698300 + }, + { + "epoch": 93.12, + "grad_norm": 0.932554304599762, + "learning_rate": 3.462e-06, + "loss": 1.2012419891357422, + "step": 698400 + }, + { + "epoch": 93.13333333333334, + "grad_norm": 0.8617738485336304, + "learning_rate": 3.455333333333333e-06, + "loss": 1.1994852447509765, + "step": 698500 + }, + { + "epoch": 93.14666666666666, + "grad_norm": 0.9104321599006653, + "learning_rate": 3.4486666666666667e-06, + "loss": 1.207906723022461, + "step": 698600 + }, + { + "epoch": 93.16, + "grad_norm": 0.8374426960945129, + "learning_rate": 3.4420000000000002e-06, + "loss": 1.1999403381347655, + "step": 698700 + }, + { + "epoch": 93.17333333333333, + "grad_norm": 0.8905571103096008, + "learning_rate": 3.4353333333333334e-06, + "loss": 1.1972482299804688, + "step": 698800 + }, + { + "epoch": 93.18666666666667, + "grad_norm": 0.8699285387992859, + "learning_rate": 3.428666666666667e-06, + "loss": 1.2003094482421874, + "step": 698900 + }, + { + "epoch": 93.2, + "grad_norm": 0.8738979697227478, + "learning_rate": 3.422e-06, + "loss": 1.2002088928222656, + "step": 699000 + }, + { + "epoch": 93.21333333333334, + "grad_norm": 0.8332516551017761, + "learning_rate": 3.4153333333333336e-06, + "loss": 1.1950491333007813, + "step": 699100 + }, + { + "epoch": 93.22666666666667, + "grad_norm": 0.8510139584541321, + "learning_rate": 3.408666666666667e-06, + "loss": 1.1995225524902344, + "step": 699200 + }, + { + "epoch": 93.24, + "grad_norm": 0.9004165530204773, + "learning_rate": 3.402e-06, + "loss": 1.2011061096191407, + "step": 699300 + }, + { + "epoch": 93.25333333333333, + "grad_norm": 0.9277057647705078, + "learning_rate": 3.3953333333333337e-06, + "loss": 1.2032598876953124, + "step": 699400 + }, + { + "epoch": 93.26666666666667, + "grad_norm": 0.9293489456176758, + "learning_rate": 3.388666666666667e-06, + "loss": 1.2010295867919922, + "step": 699500 + }, + { + "epoch": 93.28, + "grad_norm": 0.9297680854797363, + "learning_rate": 3.3820000000000004e-06, + "loss": 1.1998831176757812, + "step": 699600 + }, + { + "epoch": 93.29333333333334, + "grad_norm": 0.9310411810874939, + "learning_rate": 3.375333333333334e-06, + "loss": 1.2022223663330078, + "step": 699700 + }, + { + "epoch": 93.30666666666667, + "grad_norm": 0.8587492108345032, + "learning_rate": 3.3687333333333334e-06, + "loss": 1.2029190063476562, + "step": 699800 + }, + { + "epoch": 93.32, + "grad_norm": 0.8777822852134705, + "learning_rate": 3.362066666666667e-06, + "loss": 1.1976495361328126, + "step": 699900 + }, + { + "epoch": 93.33333333333333, + "grad_norm": 0.9253079891204834, + "learning_rate": 3.3554e-06, + "loss": 1.205234909057617, + "step": 700000 + }, + { + "epoch": 93.34666666666666, + "grad_norm": 0.9172502160072327, + "learning_rate": 3.3487333333333336e-06, + "loss": 1.2025753784179687, + "step": 700100 + }, + { + "epoch": 93.36, + "grad_norm": 0.8835508227348328, + "learning_rate": 3.3420666666666667e-06, + "loss": 1.203255386352539, + "step": 700200 + }, + { + "epoch": 93.37333333333333, + "grad_norm": 0.9050441980361938, + "learning_rate": 3.3354000000000003e-06, + "loss": 1.2038262176513672, + "step": 700300 + }, + { + "epoch": 93.38666666666667, + "grad_norm": 0.8916856050491333, + "learning_rate": 3.328733333333334e-06, + "loss": 1.2023595428466798, + "step": 700400 + }, + { + "epoch": 93.4, + "grad_norm": 0.945793867111206, + "learning_rate": 3.322066666666667e-06, + "loss": 1.2015753173828125, + "step": 700500 + }, + { + "epoch": 93.41333333333333, + "grad_norm": 0.8409869074821472, + "learning_rate": 3.3154000000000005e-06, + "loss": 1.200424346923828, + "step": 700600 + }, + { + "epoch": 93.42666666666666, + "grad_norm": 0.8369486927986145, + "learning_rate": 3.308733333333334e-06, + "loss": 1.2012825012207031, + "step": 700700 + }, + { + "epoch": 93.44, + "grad_norm": 0.9023328423500061, + "learning_rate": 3.3020666666666667e-06, + "loss": 1.1996861267089844, + "step": 700800 + }, + { + "epoch": 93.45333333333333, + "grad_norm": 0.9621808528900146, + "learning_rate": 3.2954e-06, + "loss": 1.2020472717285156, + "step": 700900 + }, + { + "epoch": 93.46666666666667, + "grad_norm": 0.9381176829338074, + "learning_rate": 3.2887333333333334e-06, + "loss": 1.2013578033447265, + "step": 701000 + }, + { + "epoch": 93.48, + "grad_norm": 0.9038723111152649, + "learning_rate": 3.2820666666666665e-06, + "loss": 1.2052571868896484, + "step": 701100 + }, + { + "epoch": 93.49333333333334, + "grad_norm": 0.8777031898498535, + "learning_rate": 3.2754e-06, + "loss": 1.2066443634033204, + "step": 701200 + }, + { + "epoch": 93.50666666666666, + "grad_norm": 0.898979663848877, + "learning_rate": 3.2687333333333336e-06, + "loss": 1.2039942932128906, + "step": 701300 + }, + { + "epoch": 93.52, + "grad_norm": 0.9564325213432312, + "learning_rate": 3.2620666666666667e-06, + "loss": 1.203017120361328, + "step": 701400 + }, + { + "epoch": 93.53333333333333, + "grad_norm": 0.8886229991912842, + "learning_rate": 3.2554e-06, + "loss": 1.2048358917236328, + "step": 701500 + }, + { + "epoch": 93.54666666666667, + "grad_norm": 0.9237152338027954, + "learning_rate": 3.2487333333333333e-06, + "loss": 1.2045701599121095, + "step": 701600 + }, + { + "epoch": 93.56, + "grad_norm": 0.896867036819458, + "learning_rate": 3.242066666666667e-06, + "loss": 1.2023987579345703, + "step": 701700 + }, + { + "epoch": 93.57333333333334, + "grad_norm": 0.9271662831306458, + "learning_rate": 3.2354666666666664e-06, + "loss": 1.2070915985107422, + "step": 701800 + }, + { + "epoch": 93.58666666666667, + "grad_norm": 0.9243695139884949, + "learning_rate": 3.2288e-06, + "loss": 1.2029459381103516, + "step": 701900 + }, + { + "epoch": 93.6, + "grad_norm": 0.8733084797859192, + "learning_rate": 3.2221333333333334e-06, + "loss": 1.2044219207763671, + "step": 702000 + }, + { + "epoch": 93.61333333333333, + "grad_norm": 0.8613144159317017, + "learning_rate": 3.2154666666666666e-06, + "loss": 1.2015194702148437, + "step": 702100 + }, + { + "epoch": 93.62666666666667, + "grad_norm": 0.8946916460990906, + "learning_rate": 3.2088e-06, + "loss": 1.2066204071044921, + "step": 702200 + }, + { + "epoch": 93.64, + "grad_norm": 0.8852377533912659, + "learning_rate": 3.202133333333333e-06, + "loss": 1.2049375915527343, + "step": 702300 + }, + { + "epoch": 93.65333333333334, + "grad_norm": 0.9133490324020386, + "learning_rate": 3.1954666666666667e-06, + "loss": 1.2069032287597656, + "step": 702400 + }, + { + "epoch": 93.66666666666667, + "grad_norm": 0.9736997485160828, + "learning_rate": 3.1888000000000003e-06, + "loss": 1.2061416625976562, + "step": 702500 + }, + { + "epoch": 93.68, + "grad_norm": 0.8475258946418762, + "learning_rate": 3.1821333333333334e-06, + "loss": 1.2070252227783203, + "step": 702600 + }, + { + "epoch": 93.69333333333333, + "grad_norm": 0.8701179623603821, + "learning_rate": 3.175466666666667e-06, + "loss": 1.2072611236572266, + "step": 702700 + }, + { + "epoch": 93.70666666666666, + "grad_norm": 0.9371302723884583, + "learning_rate": 3.1688e-06, + "loss": 1.2073512268066406, + "step": 702800 + }, + { + "epoch": 93.72, + "grad_norm": 0.9097060561180115, + "learning_rate": 3.1621333333333336e-06, + "loss": 1.2026378631591796, + "step": 702900 + }, + { + "epoch": 93.73333333333333, + "grad_norm": 0.938374936580658, + "learning_rate": 3.155466666666667e-06, + "loss": 1.2043750762939454, + "step": 703000 + }, + { + "epoch": 93.74666666666667, + "grad_norm": 0.9308724999427795, + "learning_rate": 3.1488000000000002e-06, + "loss": 1.2057681274414063, + "step": 703100 + }, + { + "epoch": 93.76, + "grad_norm": 0.9380525350570679, + "learning_rate": 3.1421333333333338e-06, + "loss": 1.2027383422851563, + "step": 703200 + }, + { + "epoch": 93.77333333333333, + "grad_norm": 0.9042573571205139, + "learning_rate": 3.135466666666667e-06, + "loss": 1.2053038787841797, + "step": 703300 + }, + { + "epoch": 93.78666666666666, + "grad_norm": 0.8465674519538879, + "learning_rate": 3.1288000000000004e-06, + "loss": 1.2070914459228517, + "step": 703400 + }, + { + "epoch": 93.8, + "grad_norm": 0.9048718214035034, + "learning_rate": 3.1221333333333336e-06, + "loss": 1.2079029846191407, + "step": 703500 + }, + { + "epoch": 93.81333333333333, + "grad_norm": 0.9605961441993713, + "learning_rate": 3.115466666666667e-06, + "loss": 1.205398712158203, + "step": 703600 + }, + { + "epoch": 93.82666666666667, + "grad_norm": 0.8697989583015442, + "learning_rate": 3.1088e-06, + "loss": 1.2042691040039062, + "step": 703700 + }, + { + "epoch": 93.84, + "grad_norm": 0.8812441229820251, + "learning_rate": 3.1022e-06, + "loss": 1.2068780517578126, + "step": 703800 + }, + { + "epoch": 93.85333333333334, + "grad_norm": 0.8852190375328064, + "learning_rate": 3.0955333333333337e-06, + "loss": 1.2042357635498047, + "step": 703900 + }, + { + "epoch": 93.86666666666666, + "grad_norm": 0.9224363565444946, + "learning_rate": 3.0888666666666668e-06, + "loss": 1.203583755493164, + "step": 704000 + }, + { + "epoch": 93.88, + "grad_norm": 0.9226585626602173, + "learning_rate": 3.0822e-06, + "loss": 1.2078118896484376, + "step": 704100 + }, + { + "epoch": 93.89333333333333, + "grad_norm": 0.8923982381820679, + "learning_rate": 3.0755333333333334e-06, + "loss": 1.2106005859375, + "step": 704200 + }, + { + "epoch": 93.90666666666667, + "grad_norm": 0.8998373746871948, + "learning_rate": 3.068866666666667e-06, + "loss": 1.2074279022216796, + "step": 704300 + }, + { + "epoch": 93.92, + "grad_norm": 0.8896543383598328, + "learning_rate": 3.0622e-06, + "loss": 1.2062702178955078, + "step": 704400 + }, + { + "epoch": 93.93333333333334, + "grad_norm": 0.9087594747543335, + "learning_rate": 3.0555333333333336e-06, + "loss": 1.2025060272216797, + "step": 704500 + }, + { + "epoch": 93.94666666666667, + "grad_norm": 0.8689560890197754, + "learning_rate": 3.0488666666666667e-06, + "loss": 1.2087166595458985, + "step": 704600 + }, + { + "epoch": 93.96, + "grad_norm": 0.8625527620315552, + "learning_rate": 3.0422000000000003e-06, + "loss": 1.2062256622314453, + "step": 704700 + }, + { + "epoch": 93.97333333333333, + "grad_norm": 0.895000159740448, + "learning_rate": 3.035533333333334e-06, + "loss": 1.2069078826904296, + "step": 704800 + }, + { + "epoch": 93.98666666666666, + "grad_norm": 0.9123364090919495, + "learning_rate": 3.0288666666666665e-06, + "loss": 1.2070018005371095, + "step": 704900 + }, + { + "epoch": 94.0, + "grad_norm": 0.9559196829795837, + "learning_rate": 3.0222e-06, + "loss": 1.2079464721679687, + "step": 705000 + }, + { + "epoch": 94.01333333333334, + "grad_norm": 0.8545342087745667, + "learning_rate": 3.0155333333333336e-06, + "loss": 1.1980677795410157, + "step": 705100 + }, + { + "epoch": 94.02666666666667, + "grad_norm": 0.8731397390365601, + "learning_rate": 3.0088666666666667e-06, + "loss": 1.1981246948242188, + "step": 705200 + }, + { + "epoch": 94.04, + "grad_norm": 0.9388912320137024, + "learning_rate": 3.0022000000000002e-06, + "loss": 1.198083953857422, + "step": 705300 + }, + { + "epoch": 94.05333333333333, + "grad_norm": 0.8558587431907654, + "learning_rate": 2.9955333333333334e-06, + "loss": 1.1956981658935546, + "step": 705400 + }, + { + "epoch": 94.06666666666666, + "grad_norm": 0.9336191415786743, + "learning_rate": 2.988866666666667e-06, + "loss": 1.1954840087890626, + "step": 705500 + }, + { + "epoch": 94.08, + "grad_norm": 0.9011601209640503, + "learning_rate": 2.9822000000000004e-06, + "loss": 1.1973772430419922, + "step": 705600 + }, + { + "epoch": 94.09333333333333, + "grad_norm": 0.8702425956726074, + "learning_rate": 2.9755333333333335e-06, + "loss": 1.1975491333007813, + "step": 705700 + }, + { + "epoch": 94.10666666666667, + "grad_norm": 0.8665642738342285, + "learning_rate": 2.9689333333333335e-06, + "loss": 1.1951853942871093, + "step": 705800 + }, + { + "epoch": 94.12, + "grad_norm": 0.9032362103462219, + "learning_rate": 2.9622666666666666e-06, + "loss": 1.2001158905029297, + "step": 705900 + }, + { + "epoch": 94.13333333333334, + "grad_norm": 0.8543294668197632, + "learning_rate": 2.9556e-06, + "loss": 1.1968789672851563, + "step": 706000 + }, + { + "epoch": 94.14666666666666, + "grad_norm": 0.8729653358459473, + "learning_rate": 2.9489333333333332e-06, + "loss": 1.2012832641601563, + "step": 706100 + }, + { + "epoch": 94.16, + "grad_norm": 0.9173882603645325, + "learning_rate": 2.9422666666666668e-06, + "loss": 1.197931900024414, + "step": 706200 + }, + { + "epoch": 94.17333333333333, + "grad_norm": 0.8953747153282166, + "learning_rate": 2.9356000000000003e-06, + "loss": 1.201817169189453, + "step": 706300 + }, + { + "epoch": 94.18666666666667, + "grad_norm": 0.9290673732757568, + "learning_rate": 2.9289333333333334e-06, + "loss": 1.2014652252197267, + "step": 706400 + }, + { + "epoch": 94.2, + "grad_norm": 0.8571107387542725, + "learning_rate": 2.922266666666667e-06, + "loss": 1.199576187133789, + "step": 706500 + }, + { + "epoch": 94.21333333333334, + "grad_norm": 0.8771602511405945, + "learning_rate": 2.9156e-06, + "loss": 1.1957323455810547, + "step": 706600 + }, + { + "epoch": 94.22666666666667, + "grad_norm": 0.9305838346481323, + "learning_rate": 2.908933333333333e-06, + "loss": 1.1971856689453124, + "step": 706700 + }, + { + "epoch": 94.24, + "grad_norm": 0.8944154381752014, + "learning_rate": 2.9022666666666667e-06, + "loss": 1.197287826538086, + "step": 706800 + }, + { + "epoch": 94.25333333333333, + "grad_norm": 0.8940684199333191, + "learning_rate": 2.8956e-06, + "loss": 1.197225570678711, + "step": 706900 + }, + { + "epoch": 94.26666666666667, + "grad_norm": 0.9056709408760071, + "learning_rate": 2.8889333333333334e-06, + "loss": 1.1965518951416017, + "step": 707000 + }, + { + "epoch": 94.28, + "grad_norm": 0.9414792060852051, + "learning_rate": 2.882266666666667e-06, + "loss": 1.1968941497802734, + "step": 707100 + }, + { + "epoch": 94.29333333333334, + "grad_norm": 0.8908376097679138, + "learning_rate": 2.8756e-06, + "loss": 1.1973877716064454, + "step": 707200 + }, + { + "epoch": 94.30666666666667, + "grad_norm": 0.9297679662704468, + "learning_rate": 2.8689333333333336e-06, + "loss": 1.1994965362548828, + "step": 707300 + }, + { + "epoch": 94.32, + "grad_norm": 0.8703739047050476, + "learning_rate": 2.862266666666667e-06, + "loss": 1.1965327453613281, + "step": 707400 + }, + { + "epoch": 94.33333333333333, + "grad_norm": 0.8615278601646423, + "learning_rate": 2.8556000000000002e-06, + "loss": 1.2004428863525392, + "step": 707500 + }, + { + "epoch": 94.34666666666666, + "grad_norm": 0.9227656722068787, + "learning_rate": 2.8489333333333334e-06, + "loss": 1.2004918670654297, + "step": 707600 + }, + { + "epoch": 94.36, + "grad_norm": 0.9245252013206482, + "learning_rate": 2.842266666666667e-06, + "loss": 1.1989990997314453, + "step": 707700 + }, + { + "epoch": 94.37333333333333, + "grad_norm": 0.9238764643669128, + "learning_rate": 2.835666666666667e-06, + "loss": 1.2016976928710938, + "step": 707800 + }, + { + "epoch": 94.38666666666667, + "grad_norm": 0.9158653616905212, + "learning_rate": 2.829e-06, + "loss": 1.2035940551757813, + "step": 707900 + }, + { + "epoch": 94.4, + "grad_norm": 0.9159825444221497, + "learning_rate": 2.8223333333333335e-06, + "loss": 1.2021241760253907, + "step": 708000 + }, + { + "epoch": 94.41333333333333, + "grad_norm": 0.9235730171203613, + "learning_rate": 2.815666666666667e-06, + "loss": 1.197962875366211, + "step": 708100 + }, + { + "epoch": 94.42666666666666, + "grad_norm": 0.8646361231803894, + "learning_rate": 2.809e-06, + "loss": 1.1968673706054687, + "step": 708200 + }, + { + "epoch": 94.44, + "grad_norm": 0.9146223068237305, + "learning_rate": 2.8023333333333337e-06, + "loss": 1.1992236328125, + "step": 708300 + }, + { + "epoch": 94.45333333333333, + "grad_norm": 0.9262514710426331, + "learning_rate": 2.7956666666666668e-06, + "loss": 1.1973857879638672, + "step": 708400 + }, + { + "epoch": 94.46666666666667, + "grad_norm": 0.9602396488189697, + "learning_rate": 2.7890000000000003e-06, + "loss": 1.2021874237060546, + "step": 708500 + }, + { + "epoch": 94.48, + "grad_norm": 0.9169455766677856, + "learning_rate": 2.7823333333333334e-06, + "loss": 1.201337127685547, + "step": 708600 + }, + { + "epoch": 94.49333333333334, + "grad_norm": 0.922653079032898, + "learning_rate": 2.7756666666666665e-06, + "loss": 1.2005847930908202, + "step": 708700 + }, + { + "epoch": 94.50666666666666, + "grad_norm": 0.8886169195175171, + "learning_rate": 2.769e-06, + "loss": 1.2020726776123047, + "step": 708800 + }, + { + "epoch": 94.52, + "grad_norm": 0.9149191379547119, + "learning_rate": 2.7623333333333336e-06, + "loss": 1.2006275177001953, + "step": 708900 + }, + { + "epoch": 94.53333333333333, + "grad_norm": 0.9416818618774414, + "learning_rate": 2.7556666666666667e-06, + "loss": 1.20090576171875, + "step": 709000 + }, + { + "epoch": 94.54666666666667, + "grad_norm": 0.9213252067565918, + "learning_rate": 2.7490000000000003e-06, + "loss": 1.1960865783691406, + "step": 709100 + }, + { + "epoch": 94.56, + "grad_norm": 0.9599847197532654, + "learning_rate": 2.7423333333333334e-06, + "loss": 1.2013865661621095, + "step": 709200 + }, + { + "epoch": 94.57333333333334, + "grad_norm": 0.8929022550582886, + "learning_rate": 2.735666666666667e-06, + "loss": 1.1997483825683595, + "step": 709300 + }, + { + "epoch": 94.58666666666667, + "grad_norm": 0.9808670878410339, + "learning_rate": 2.729e-06, + "loss": 1.2010655975341797, + "step": 709400 + }, + { + "epoch": 94.6, + "grad_norm": 0.8982358574867249, + "learning_rate": 2.722333333333333e-06, + "loss": 1.2008942413330077, + "step": 709500 + }, + { + "epoch": 94.61333333333333, + "grad_norm": 0.9171635508537292, + "learning_rate": 2.7156666666666667e-06, + "loss": 1.1997940826416016, + "step": 709600 + }, + { + "epoch": 94.62666666666667, + "grad_norm": 0.8832179307937622, + "learning_rate": 2.7090000000000002e-06, + "loss": 1.2014200592041016, + "step": 709700 + }, + { + "epoch": 94.64, + "grad_norm": 0.8543769121170044, + "learning_rate": 2.7024e-06, + "loss": 1.2015788269042968, + "step": 709800 + }, + { + "epoch": 94.65333333333334, + "grad_norm": 0.8646900057792664, + "learning_rate": 2.6957333333333333e-06, + "loss": 1.203617935180664, + "step": 709900 + }, + { + "epoch": 94.66666666666667, + "grad_norm": 0.8815392255783081, + "learning_rate": 2.689066666666667e-06, + "loss": 1.2008470916748046, + "step": 710000 + }, + { + "epoch": 94.68, + "grad_norm": 0.9132913947105408, + "learning_rate": 2.6824000000000004e-06, + "loss": 1.2024823760986327, + "step": 710100 + }, + { + "epoch": 94.69333333333333, + "grad_norm": 0.9004465341567993, + "learning_rate": 2.6757333333333335e-06, + "loss": 1.2015773010253907, + "step": 710200 + }, + { + "epoch": 94.70666666666666, + "grad_norm": 0.9427282214164734, + "learning_rate": 2.669066666666667e-06, + "loss": 1.2027558135986327, + "step": 710300 + }, + { + "epoch": 94.72, + "grad_norm": 0.9398279786109924, + "learning_rate": 2.6624e-06, + "loss": 1.2022799682617187, + "step": 710400 + }, + { + "epoch": 94.73333333333333, + "grad_norm": 0.953403651714325, + "learning_rate": 2.6557333333333332e-06, + "loss": 1.2058155822753907, + "step": 710500 + }, + { + "epoch": 94.74666666666667, + "grad_norm": 0.9545753598213196, + "learning_rate": 2.6490666666666668e-06, + "loss": 1.204290542602539, + "step": 710600 + }, + { + "epoch": 94.76, + "grad_norm": 0.9156383872032166, + "learning_rate": 2.6424e-06, + "loss": 1.2020454406738281, + "step": 710700 + }, + { + "epoch": 94.77333333333333, + "grad_norm": 0.9403426647186279, + "learning_rate": 2.6357333333333334e-06, + "loss": 1.1997908020019532, + "step": 710800 + }, + { + "epoch": 94.78666666666666, + "grad_norm": 0.8966497182846069, + "learning_rate": 2.629066666666667e-06, + "loss": 1.2073065185546874, + "step": 710900 + }, + { + "epoch": 94.8, + "grad_norm": 0.933814287185669, + "learning_rate": 2.6224e-06, + "loss": 1.2032772064208985, + "step": 711000 + }, + { + "epoch": 94.81333333333333, + "grad_norm": 0.8316300511360168, + "learning_rate": 2.6157333333333336e-06, + "loss": 1.1999528503417969, + "step": 711100 + }, + { + "epoch": 94.82666666666667, + "grad_norm": 0.945821225643158, + "learning_rate": 2.609066666666667e-06, + "loss": 1.2072616577148438, + "step": 711200 + }, + { + "epoch": 94.84, + "grad_norm": 0.9445672035217285, + "learning_rate": 2.6024e-06, + "loss": 1.207545623779297, + "step": 711300 + }, + { + "epoch": 94.85333333333334, + "grad_norm": 0.9229156970977783, + "learning_rate": 2.5957333333333334e-06, + "loss": 1.2040837860107423, + "step": 711400 + }, + { + "epoch": 94.86666666666666, + "grad_norm": 0.9328680634498596, + "learning_rate": 2.589066666666667e-06, + "loss": 1.200493392944336, + "step": 711500 + }, + { + "epoch": 94.88, + "grad_norm": 0.8817058801651001, + "learning_rate": 2.5824e-06, + "loss": 1.204656448364258, + "step": 711600 + }, + { + "epoch": 94.89333333333333, + "grad_norm": 0.8611106276512146, + "learning_rate": 2.5757333333333336e-06, + "loss": 1.2088603973388672, + "step": 711700 + }, + { + "epoch": 94.90666666666667, + "grad_norm": 0.9168562889099121, + "learning_rate": 2.5691333333333335e-06, + "loss": 1.2051824951171874, + "step": 711800 + }, + { + "epoch": 94.92, + "grad_norm": 0.8960808515548706, + "learning_rate": 2.5624666666666666e-06, + "loss": 1.2036978912353515, + "step": 711900 + }, + { + "epoch": 94.93333333333334, + "grad_norm": 0.9241425395011902, + "learning_rate": 2.5558e-06, + "loss": 1.2029954528808593, + "step": 712000 + }, + { + "epoch": 94.94666666666667, + "grad_norm": 0.8758190274238586, + "learning_rate": 2.5491333333333337e-06, + "loss": 1.20275390625, + "step": 712100 + }, + { + "epoch": 94.96, + "grad_norm": 0.8666814565658569, + "learning_rate": 2.542466666666667e-06, + "loss": 1.2033231353759766, + "step": 712200 + }, + { + "epoch": 94.97333333333333, + "grad_norm": 0.9167757034301758, + "learning_rate": 2.5358e-06, + "loss": 1.2045973968505859, + "step": 712300 + }, + { + "epoch": 94.98666666666666, + "grad_norm": 0.9360477924346924, + "learning_rate": 2.5291333333333335e-06, + "loss": 1.2020364379882813, + "step": 712400 + }, + { + "epoch": 95.0, + "grad_norm": 0.9205434918403625, + "learning_rate": 2.5224666666666666e-06, + "loss": 1.2040877532958985, + "step": 712500 + }, + { + "epoch": 95.01333333333334, + "grad_norm": 0.8948925733566284, + "learning_rate": 2.5158e-06, + "loss": 1.1948794555664062, + "step": 712600 + }, + { + "epoch": 95.02666666666667, + "grad_norm": 0.9492332935333252, + "learning_rate": 2.5091333333333337e-06, + "loss": 1.1927398681640624, + "step": 712700 + }, + { + "epoch": 95.04, + "grad_norm": 0.9059979319572449, + "learning_rate": 2.5024666666666668e-06, + "loss": 1.1940172576904298, + "step": 712800 + }, + { + "epoch": 95.05333333333333, + "grad_norm": 0.8861105442047119, + "learning_rate": 2.4958000000000003e-06, + "loss": 1.1955216217041016, + "step": 712900 + }, + { + "epoch": 95.06666666666666, + "grad_norm": 0.9048792719841003, + "learning_rate": 2.4891333333333334e-06, + "loss": 1.1973499298095702, + "step": 713000 + }, + { + "epoch": 95.08, + "grad_norm": 0.8883659839630127, + "learning_rate": 2.4824666666666665e-06, + "loss": 1.1946544647216797, + "step": 713100 + }, + { + "epoch": 95.09333333333333, + "grad_norm": 0.9289974570274353, + "learning_rate": 2.4758e-06, + "loss": 1.1974421691894532, + "step": 713200 + }, + { + "epoch": 95.10666666666667, + "grad_norm": 0.9032652378082275, + "learning_rate": 2.469133333333333e-06, + "loss": 1.1930424499511718, + "step": 713300 + }, + { + "epoch": 95.12, + "grad_norm": 0.8951370716094971, + "learning_rate": 2.4624666666666667e-06, + "loss": 1.197111587524414, + "step": 713400 + }, + { + "epoch": 95.13333333333334, + "grad_norm": 0.8893224596977234, + "learning_rate": 2.4558000000000003e-06, + "loss": 1.1959721374511718, + "step": 713500 + }, + { + "epoch": 95.14666666666666, + "grad_norm": 0.8968496918678284, + "learning_rate": 2.4491333333333334e-06, + "loss": 1.1987583923339844, + "step": 713600 + }, + { + "epoch": 95.16, + "grad_norm": 0.8864784240722656, + "learning_rate": 2.442466666666667e-06, + "loss": 1.1947860717773438, + "step": 713700 + }, + { + "epoch": 95.17333333333333, + "grad_norm": 0.8457802534103394, + "learning_rate": 2.435866666666667e-06, + "loss": 1.1984773254394532, + "step": 713800 + }, + { + "epoch": 95.18666666666667, + "grad_norm": 0.9682843685150146, + "learning_rate": 2.4292000000000004e-06, + "loss": 1.1989812469482422, + "step": 713900 + }, + { + "epoch": 95.2, + "grad_norm": 0.9019679427146912, + "learning_rate": 2.4225333333333335e-06, + "loss": 1.1998885345458985, + "step": 714000 + }, + { + "epoch": 95.21333333333334, + "grad_norm": 0.8968068361282349, + "learning_rate": 2.4158666666666666e-06, + "loss": 1.196024169921875, + "step": 714100 + }, + { + "epoch": 95.22666666666667, + "grad_norm": 0.9033806324005127, + "learning_rate": 2.4092e-06, + "loss": 1.1988829803466796, + "step": 714200 + }, + { + "epoch": 95.24, + "grad_norm": 0.8861857056617737, + "learning_rate": 2.4025333333333333e-06, + "loss": 1.1954184722900392, + "step": 714300 + }, + { + "epoch": 95.25333333333333, + "grad_norm": 0.8714227676391602, + "learning_rate": 2.395866666666667e-06, + "loss": 1.1975115203857423, + "step": 714400 + }, + { + "epoch": 95.26666666666667, + "grad_norm": 0.8732222318649292, + "learning_rate": 2.3892e-06, + "loss": 1.1969498443603515, + "step": 714500 + }, + { + "epoch": 95.28, + "grad_norm": 0.8276050090789795, + "learning_rate": 2.3825333333333335e-06, + "loss": 1.197633285522461, + "step": 714600 + }, + { + "epoch": 95.29333333333334, + "grad_norm": 0.8574380278587341, + "learning_rate": 2.375866666666667e-06, + "loss": 1.1978040313720704, + "step": 714700 + }, + { + "epoch": 95.30666666666667, + "grad_norm": 0.9271215200424194, + "learning_rate": 2.3692e-06, + "loss": 1.1961704254150392, + "step": 714800 + }, + { + "epoch": 95.32, + "grad_norm": 0.9471455216407776, + "learning_rate": 2.3625333333333337e-06, + "loss": 1.193292694091797, + "step": 714900 + }, + { + "epoch": 95.33333333333333, + "grad_norm": 0.9028796553611755, + "learning_rate": 2.3558666666666668e-06, + "loss": 1.1993869018554688, + "step": 715000 + }, + { + "epoch": 95.34666666666666, + "grad_norm": 0.8910233378410339, + "learning_rate": 2.3492e-06, + "loss": 1.1982572174072266, + "step": 715100 + }, + { + "epoch": 95.36, + "grad_norm": 0.8883600831031799, + "learning_rate": 2.3425333333333334e-06, + "loss": 1.1972041320800781, + "step": 715200 + }, + { + "epoch": 95.37333333333333, + "grad_norm": 0.8244373202323914, + "learning_rate": 2.335866666666667e-06, + "loss": 1.1958223724365233, + "step": 715300 + }, + { + "epoch": 95.38666666666667, + "grad_norm": 0.8764129281044006, + "learning_rate": 2.3292e-06, + "loss": 1.197607421875, + "step": 715400 + }, + { + "epoch": 95.4, + "grad_norm": 0.9632822275161743, + "learning_rate": 2.3225333333333336e-06, + "loss": 1.1966116333007812, + "step": 715500 + }, + { + "epoch": 95.41333333333333, + "grad_norm": 0.8649945855140686, + "learning_rate": 2.3158666666666667e-06, + "loss": 1.2001445770263672, + "step": 715600 + }, + { + "epoch": 95.42666666666666, + "grad_norm": 0.8928907513618469, + "learning_rate": 2.3092000000000003e-06, + "loss": 1.1985771942138672, + "step": 715700 + }, + { + "epoch": 95.44, + "grad_norm": 0.8795034289360046, + "learning_rate": 2.3026e-06, + "loss": 1.1941232299804687, + "step": 715800 + }, + { + "epoch": 95.45333333333333, + "grad_norm": 0.8100056052207947, + "learning_rate": 2.2959333333333337e-06, + "loss": 1.1983812713623048, + "step": 715900 + }, + { + "epoch": 95.46666666666667, + "grad_norm": 0.8939315676689148, + "learning_rate": 2.289266666666667e-06, + "loss": 1.199446029663086, + "step": 716000 + }, + { + "epoch": 95.48, + "grad_norm": 0.8684143424034119, + "learning_rate": 2.2826e-06, + "loss": 1.1973661804199218, + "step": 716100 + }, + { + "epoch": 95.49333333333334, + "grad_norm": 0.8790379166603088, + "learning_rate": 2.2759333333333335e-06, + "loss": 1.198766098022461, + "step": 716200 + }, + { + "epoch": 95.50666666666666, + "grad_norm": 0.8545668721199036, + "learning_rate": 2.2692666666666666e-06, + "loss": 1.2022593688964844, + "step": 716300 + }, + { + "epoch": 95.52, + "grad_norm": 0.9270732402801514, + "learning_rate": 2.2626e-06, + "loss": 1.1938504028320311, + "step": 716400 + }, + { + "epoch": 95.53333333333333, + "grad_norm": 0.9058865308761597, + "learning_rate": 2.2559333333333337e-06, + "loss": 1.1984404754638671, + "step": 716500 + }, + { + "epoch": 95.54666666666667, + "grad_norm": 0.9313427805900574, + "learning_rate": 2.249266666666667e-06, + "loss": 1.1992517852783202, + "step": 716600 + }, + { + "epoch": 95.56, + "grad_norm": 0.9284090399742126, + "learning_rate": 2.2426000000000003e-06, + "loss": 1.2009918212890625, + "step": 716700 + }, + { + "epoch": 95.57333333333334, + "grad_norm": 0.893657386302948, + "learning_rate": 2.2359333333333335e-06, + "loss": 1.1964833068847656, + "step": 716800 + }, + { + "epoch": 95.58666666666667, + "grad_norm": 0.8945286273956299, + "learning_rate": 2.2292666666666666e-06, + "loss": 1.197146224975586, + "step": 716900 + }, + { + "epoch": 95.6, + "grad_norm": 0.945655345916748, + "learning_rate": 2.2226e-06, + "loss": 1.197714614868164, + "step": 717000 + }, + { + "epoch": 95.61333333333333, + "grad_norm": 0.8761715292930603, + "learning_rate": 2.2159333333333332e-06, + "loss": 1.1985298919677734, + "step": 717100 + }, + { + "epoch": 95.62666666666667, + "grad_norm": 0.9021620154380798, + "learning_rate": 2.2092666666666668e-06, + "loss": 1.1991383361816406, + "step": 717200 + }, + { + "epoch": 95.64, + "grad_norm": 0.8844672441482544, + "learning_rate": 2.2026000000000003e-06, + "loss": 1.1967192840576173, + "step": 717300 + }, + { + "epoch": 95.65333333333334, + "grad_norm": 0.8024809956550598, + "learning_rate": 2.1959333333333334e-06, + "loss": 1.1974788665771485, + "step": 717400 + }, + { + "epoch": 95.66666666666667, + "grad_norm": 0.9280022978782654, + "learning_rate": 2.189266666666667e-06, + "loss": 1.1954544830322265, + "step": 717500 + }, + { + "epoch": 95.68, + "grad_norm": 0.9242950677871704, + "learning_rate": 2.1826e-06, + "loss": 1.1988795471191407, + "step": 717600 + }, + { + "epoch": 95.69333333333333, + "grad_norm": 0.8772919178009033, + "learning_rate": 2.175933333333333e-06, + "loss": 1.1997234344482421, + "step": 717700 + }, + { + "epoch": 95.70666666666666, + "grad_norm": 0.9006758332252502, + "learning_rate": 2.169333333333333e-06, + "loss": 1.1984378814697265, + "step": 717800 + }, + { + "epoch": 95.72, + "grad_norm": 0.8565598726272583, + "learning_rate": 2.1626666666666667e-06, + "loss": 1.1955886840820313, + "step": 717900 + }, + { + "epoch": 95.73333333333333, + "grad_norm": 0.933894157409668, + "learning_rate": 2.156e-06, + "loss": 1.1962789154052735, + "step": 718000 + }, + { + "epoch": 95.74666666666667, + "grad_norm": 0.8751091957092285, + "learning_rate": 2.1493333333333333e-06, + "loss": 1.201226043701172, + "step": 718100 + }, + { + "epoch": 95.76, + "grad_norm": 0.8495886921882629, + "learning_rate": 2.142666666666667e-06, + "loss": 1.1997674560546876, + "step": 718200 + }, + { + "epoch": 95.77333333333333, + "grad_norm": 0.9047145247459412, + "learning_rate": 2.136e-06, + "loss": 1.193944854736328, + "step": 718300 + }, + { + "epoch": 95.78666666666666, + "grad_norm": 0.9060803055763245, + "learning_rate": 2.1293333333333335e-06, + "loss": 1.1976805877685548, + "step": 718400 + }, + { + "epoch": 95.8, + "grad_norm": 0.9374447464942932, + "learning_rate": 2.122666666666667e-06, + "loss": 1.1980715942382814, + "step": 718500 + }, + { + "epoch": 95.81333333333333, + "grad_norm": 0.9492117762565613, + "learning_rate": 2.116e-06, + "loss": 1.2027890014648437, + "step": 718600 + }, + { + "epoch": 95.82666666666667, + "grad_norm": 0.9291294813156128, + "learning_rate": 2.1093333333333333e-06, + "loss": 1.19962158203125, + "step": 718700 + }, + { + "epoch": 95.84, + "grad_norm": 0.8308159112930298, + "learning_rate": 2.102666666666667e-06, + "loss": 1.197718048095703, + "step": 718800 + }, + { + "epoch": 95.85333333333334, + "grad_norm": 0.8678395748138428, + "learning_rate": 2.096e-06, + "loss": 1.200029296875, + "step": 718900 + }, + { + "epoch": 95.86666666666666, + "grad_norm": 0.8894922733306885, + "learning_rate": 2.0893333333333335e-06, + "loss": 1.2026903533935547, + "step": 719000 + }, + { + "epoch": 95.88, + "grad_norm": 0.9153121113777161, + "learning_rate": 2.082666666666667e-06, + "loss": 1.204001922607422, + "step": 719100 + }, + { + "epoch": 95.89333333333333, + "grad_norm": 0.8754669427871704, + "learning_rate": 2.076e-06, + "loss": 1.197853546142578, + "step": 719200 + }, + { + "epoch": 95.90666666666667, + "grad_norm": 0.8554826974868774, + "learning_rate": 2.0693333333333337e-06, + "loss": 1.205391387939453, + "step": 719300 + }, + { + "epoch": 95.92, + "grad_norm": 0.9618128538131714, + "learning_rate": 2.0626666666666668e-06, + "loss": 1.2002410125732421, + "step": 719400 + }, + { + "epoch": 95.93333333333334, + "grad_norm": 0.9223273992538452, + "learning_rate": 2.056e-06, + "loss": 1.1999185943603516, + "step": 719500 + }, + { + "epoch": 95.94666666666667, + "grad_norm": 0.9011958241462708, + "learning_rate": 2.0493333333333334e-06, + "loss": 1.1979779815673828, + "step": 719600 + }, + { + "epoch": 95.96, + "grad_norm": 0.9180704951286316, + "learning_rate": 2.0426666666666665e-06, + "loss": 1.198479537963867, + "step": 719700 + }, + { + "epoch": 95.97333333333333, + "grad_norm": 0.9206179976463318, + "learning_rate": 2.036066666666667e-06, + "loss": 1.2030664825439452, + "step": 719800 + }, + { + "epoch": 95.98666666666666, + "grad_norm": 0.9367160797119141, + "learning_rate": 2.0294e-06, + "loss": 1.2019683837890625, + "step": 719900 + }, + { + "epoch": 96.0, + "grad_norm": 0.9119823575019836, + "learning_rate": 2.0227333333333335e-06, + "loss": 1.202654571533203, + "step": 720000 + }, + { + "epoch": 96.01333333333334, + "grad_norm": 0.9093582034111023, + "learning_rate": 2.0160666666666667e-06, + "loss": 1.1921070098876954, + "step": 720100 + }, + { + "epoch": 96.02666666666667, + "grad_norm": 0.8500725030899048, + "learning_rate": 2.0094e-06, + "loss": 1.1908522033691407, + "step": 720200 + }, + { + "epoch": 96.04, + "grad_norm": 0.9141291379928589, + "learning_rate": 2.0027333333333337e-06, + "loss": 1.1958201599121094, + "step": 720300 + }, + { + "epoch": 96.05333333333333, + "grad_norm": 0.9543992280960083, + "learning_rate": 1.996066666666667e-06, + "loss": 1.1920267486572265, + "step": 720400 + }, + { + "epoch": 96.06666666666666, + "grad_norm": 0.9262734651565552, + "learning_rate": 1.9894e-06, + "loss": 1.193255157470703, + "step": 720500 + }, + { + "epoch": 96.08, + "grad_norm": 0.8305232524871826, + "learning_rate": 1.9827333333333335e-06, + "loss": 1.1950745391845703, + "step": 720600 + }, + { + "epoch": 96.09333333333333, + "grad_norm": 0.8898489475250244, + "learning_rate": 1.9760666666666666e-06, + "loss": 1.1932999420166015, + "step": 720700 + }, + { + "epoch": 96.10666666666667, + "grad_norm": 0.8334019780158997, + "learning_rate": 1.9694e-06, + "loss": 1.1975872039794921, + "step": 720800 + }, + { + "epoch": 96.12, + "grad_norm": 0.8538830876350403, + "learning_rate": 1.9627333333333333e-06, + "loss": 1.1930878448486328, + "step": 720900 + }, + { + "epoch": 96.13333333333334, + "grad_norm": 0.940512478351593, + "learning_rate": 1.956066666666667e-06, + "loss": 1.1931523895263672, + "step": 721000 + }, + { + "epoch": 96.14666666666666, + "grad_norm": 0.9328157305717468, + "learning_rate": 1.9494000000000003e-06, + "loss": 1.1930429077148437, + "step": 721100 + }, + { + "epoch": 96.16, + "grad_norm": 0.8638653755187988, + "learning_rate": 1.9427333333333335e-06, + "loss": 1.1945172119140626, + "step": 721200 + }, + { + "epoch": 96.17333333333333, + "grad_norm": 0.9362466931343079, + "learning_rate": 1.936066666666667e-06, + "loss": 1.1952394104003907, + "step": 721300 + }, + { + "epoch": 96.18666666666667, + "grad_norm": 0.9211965203285217, + "learning_rate": 1.9294e-06, + "loss": 1.1918714141845703, + "step": 721400 + }, + { + "epoch": 96.2, + "grad_norm": 0.8353525996208191, + "learning_rate": 1.9227333333333332e-06, + "loss": 1.1955091857910156, + "step": 721500 + }, + { + "epoch": 96.21333333333334, + "grad_norm": 0.92364901304245, + "learning_rate": 1.9160666666666668e-06, + "loss": 1.196720428466797, + "step": 721600 + }, + { + "epoch": 96.22666666666667, + "grad_norm": 0.8855310082435608, + "learning_rate": 1.9094e-06, + "loss": 1.1948504638671875, + "step": 721700 + }, + { + "epoch": 96.24, + "grad_norm": 0.8908301591873169, + "learning_rate": 1.9028e-06, + "loss": 1.1984718322753907, + "step": 721800 + }, + { + "epoch": 96.25333333333333, + "grad_norm": 0.8790364861488342, + "learning_rate": 1.8961333333333333e-06, + "loss": 1.196904296875, + "step": 721900 + }, + { + "epoch": 96.26666666666667, + "grad_norm": 0.883306622505188, + "learning_rate": 1.8894666666666669e-06, + "loss": 1.1939882659912109, + "step": 722000 + }, + { + "epoch": 96.28, + "grad_norm": 0.9927467107772827, + "learning_rate": 1.8828000000000002e-06, + "loss": 1.19223388671875, + "step": 722100 + }, + { + "epoch": 96.29333333333334, + "grad_norm": 0.8814199566841125, + "learning_rate": 1.8761333333333335e-06, + "loss": 1.1944772338867187, + "step": 722200 + }, + { + "epoch": 96.30666666666667, + "grad_norm": 0.9252114295959473, + "learning_rate": 1.8694666666666667e-06, + "loss": 1.1965172576904297, + "step": 722300 + }, + { + "epoch": 96.32, + "grad_norm": 0.997600257396698, + "learning_rate": 1.8628e-06, + "loss": 1.1935216522216796, + "step": 722400 + }, + { + "epoch": 96.33333333333333, + "grad_norm": 0.9429076910018921, + "learning_rate": 1.8561333333333333e-06, + "loss": 1.1952505493164063, + "step": 722500 + }, + { + "epoch": 96.34666666666666, + "grad_norm": 0.9006048440933228, + "learning_rate": 1.8494666666666666e-06, + "loss": 1.195484848022461, + "step": 722600 + }, + { + "epoch": 96.36, + "grad_norm": 0.8496437072753906, + "learning_rate": 1.8428000000000002e-06, + "loss": 1.1942832946777344, + "step": 722700 + }, + { + "epoch": 96.37333333333333, + "grad_norm": 0.9131640791893005, + "learning_rate": 1.8361333333333335e-06, + "loss": 1.1970438385009765, + "step": 722800 + }, + { + "epoch": 96.38666666666667, + "grad_norm": 0.861127495765686, + "learning_rate": 1.8294666666666668e-06, + "loss": 1.1988032531738282, + "step": 722900 + }, + { + "epoch": 96.4, + "grad_norm": 0.8841111063957214, + "learning_rate": 1.8228000000000001e-06, + "loss": 1.1938710021972656, + "step": 723000 + }, + { + "epoch": 96.41333333333333, + "grad_norm": 0.8644812107086182, + "learning_rate": 1.8161333333333335e-06, + "loss": 1.1916226959228515, + "step": 723100 + }, + { + "epoch": 96.42666666666666, + "grad_norm": 0.9179438352584839, + "learning_rate": 1.8094666666666666e-06, + "loss": 1.1959225463867187, + "step": 723200 + }, + { + "epoch": 96.44, + "grad_norm": 0.8909555077552795, + "learning_rate": 1.8028e-06, + "loss": 1.1968844604492188, + "step": 723300 + }, + { + "epoch": 96.45333333333333, + "grad_norm": 0.8341104984283447, + "learning_rate": 1.7961333333333332e-06, + "loss": 1.1963389587402344, + "step": 723400 + }, + { + "epoch": 96.46666666666667, + "grad_norm": 0.8875642418861389, + "learning_rate": 1.7894666666666668e-06, + "loss": 1.200348129272461, + "step": 723500 + }, + { + "epoch": 96.48, + "grad_norm": 0.9483053684234619, + "learning_rate": 1.7828000000000001e-06, + "loss": 1.1985345458984376, + "step": 723600 + }, + { + "epoch": 96.49333333333334, + "grad_norm": 0.8640918731689453, + "learning_rate": 1.7761333333333334e-06, + "loss": 1.1940691375732422, + "step": 723700 + }, + { + "epoch": 96.50666666666666, + "grad_norm": 0.8642159700393677, + "learning_rate": 1.7695333333333334e-06, + "loss": 1.1963560485839844, + "step": 723800 + }, + { + "epoch": 96.52, + "grad_norm": 0.8903900384902954, + "learning_rate": 1.762866666666667e-06, + "loss": 1.199880599975586, + "step": 723900 + }, + { + "epoch": 96.53333333333333, + "grad_norm": 0.9225534200668335, + "learning_rate": 1.7562000000000002e-06, + "loss": 1.197684326171875, + "step": 724000 + }, + { + "epoch": 96.54666666666667, + "grad_norm": 0.8352228403091431, + "learning_rate": 1.7495333333333336e-06, + "loss": 1.200512924194336, + "step": 724100 + }, + { + "epoch": 96.56, + "grad_norm": 0.895626962184906, + "learning_rate": 1.7428666666666667e-06, + "loss": 1.1950564575195313, + "step": 724200 + }, + { + "epoch": 96.57333333333334, + "grad_norm": 0.8830674290657043, + "learning_rate": 1.7362e-06, + "loss": 1.1997767639160157, + "step": 724300 + }, + { + "epoch": 96.58666666666667, + "grad_norm": 0.875395655632019, + "learning_rate": 1.7295333333333333e-06, + "loss": 1.197208786010742, + "step": 724400 + }, + { + "epoch": 96.6, + "grad_norm": 0.9121081233024597, + "learning_rate": 1.7228666666666666e-06, + "loss": 1.1945203399658204, + "step": 724500 + }, + { + "epoch": 96.61333333333333, + "grad_norm": 0.9376330375671387, + "learning_rate": 1.7162000000000002e-06, + "loss": 1.1965845489501954, + "step": 724600 + }, + { + "epoch": 96.62666666666667, + "grad_norm": 0.8596921563148499, + "learning_rate": 1.7095333333333335e-06, + "loss": 1.195692138671875, + "step": 724700 + }, + { + "epoch": 96.64, + "grad_norm": 0.8527398705482483, + "learning_rate": 1.7028666666666668e-06, + "loss": 1.1965853118896483, + "step": 724800 + }, + { + "epoch": 96.65333333333334, + "grad_norm": 0.8580175042152405, + "learning_rate": 1.6962000000000002e-06, + "loss": 1.1956391143798828, + "step": 724900 + }, + { + "epoch": 96.66666666666667, + "grad_norm": 0.9003075957298279, + "learning_rate": 1.6895333333333333e-06, + "loss": 1.1976248931884765, + "step": 725000 + }, + { + "epoch": 96.68, + "grad_norm": 0.8510597348213196, + "learning_rate": 1.6828666666666666e-06, + "loss": 1.1964473724365234, + "step": 725100 + }, + { + "epoch": 96.69333333333333, + "grad_norm": 0.8973057866096497, + "learning_rate": 1.6762e-06, + "loss": 1.197496337890625, + "step": 725200 + }, + { + "epoch": 96.70666666666666, + "grad_norm": 0.8938978910446167, + "learning_rate": 1.6695333333333333e-06, + "loss": 1.195022964477539, + "step": 725300 + }, + { + "epoch": 96.72, + "grad_norm": 0.9063222408294678, + "learning_rate": 1.6628666666666668e-06, + "loss": 1.1933713531494141, + "step": 725400 + }, + { + "epoch": 96.73333333333333, + "grad_norm": 0.8786043524742126, + "learning_rate": 1.6562000000000001e-06, + "loss": 1.1964022827148437, + "step": 725500 + }, + { + "epoch": 96.74666666666667, + "grad_norm": 0.9674188494682312, + "learning_rate": 1.6495333333333335e-06, + "loss": 1.1983873748779297, + "step": 725600 + }, + { + "epoch": 96.76, + "grad_norm": 0.9302994608879089, + "learning_rate": 1.6428666666666668e-06, + "loss": 1.1975536346435547, + "step": 725700 + }, + { + "epoch": 96.77333333333333, + "grad_norm": 0.8915535807609558, + "learning_rate": 1.636266666666667e-06, + "loss": 1.1970543670654297, + "step": 725800 + }, + { + "epoch": 96.78666666666666, + "grad_norm": 0.91758793592453, + "learning_rate": 1.6296000000000002e-06, + "loss": 1.2024964141845702, + "step": 725900 + }, + { + "epoch": 96.8, + "grad_norm": 0.8457819223403931, + "learning_rate": 1.6229333333333331e-06, + "loss": 1.195786590576172, + "step": 726000 + }, + { + "epoch": 96.81333333333333, + "grad_norm": 0.9062672257423401, + "learning_rate": 1.6162666666666667e-06, + "loss": 1.1972097778320312, + "step": 726100 + }, + { + "epoch": 96.82666666666667, + "grad_norm": 0.9275849461555481, + "learning_rate": 1.6096e-06, + "loss": 1.2003240966796875, + "step": 726200 + }, + { + "epoch": 96.84, + "grad_norm": 0.9141822457313538, + "learning_rate": 1.6029333333333333e-06, + "loss": 1.1985065460205078, + "step": 726300 + }, + { + "epoch": 96.85333333333334, + "grad_norm": 0.8968507647514343, + "learning_rate": 1.5962666666666667e-06, + "loss": 1.1965088653564453, + "step": 726400 + }, + { + "epoch": 96.86666666666666, + "grad_norm": 0.913077175617218, + "learning_rate": 1.5896000000000002e-06, + "loss": 1.1945548248291016, + "step": 726500 + }, + { + "epoch": 96.88, + "grad_norm": 0.8856280446052551, + "learning_rate": 1.5829333333333335e-06, + "loss": 1.198264389038086, + "step": 726600 + }, + { + "epoch": 96.89333333333333, + "grad_norm": 0.9587183594703674, + "learning_rate": 1.5762666666666669e-06, + "loss": 1.198867950439453, + "step": 726700 + }, + { + "epoch": 96.90666666666667, + "grad_norm": 0.8962403535842896, + "learning_rate": 1.5696000000000002e-06, + "loss": 1.1941478729248047, + "step": 726800 + }, + { + "epoch": 96.92, + "grad_norm": 0.9148259162902832, + "learning_rate": 1.5629333333333333e-06, + "loss": 1.1963572692871094, + "step": 726900 + }, + { + "epoch": 96.93333333333334, + "grad_norm": 0.9416415691375732, + "learning_rate": 1.5562666666666668e-06, + "loss": 1.1955250549316405, + "step": 727000 + }, + { + "epoch": 96.94666666666667, + "grad_norm": 0.835249662399292, + "learning_rate": 1.5496e-06, + "loss": 1.1965911102294922, + "step": 727100 + }, + { + "epoch": 96.96, + "grad_norm": 0.8827676177024841, + "learning_rate": 1.5429333333333333e-06, + "loss": 1.1973089599609374, + "step": 727200 + }, + { + "epoch": 96.97333333333333, + "grad_norm": 0.8775216937065125, + "learning_rate": 1.5362666666666668e-06, + "loss": 1.1944822692871093, + "step": 727300 + }, + { + "epoch": 96.98666666666666, + "grad_norm": 0.8615829944610596, + "learning_rate": 1.5296000000000001e-06, + "loss": 1.1994013214111328, + "step": 727400 + }, + { + "epoch": 97.0, + "grad_norm": 0.9200208783149719, + "learning_rate": 1.5229333333333333e-06, + "loss": 1.1997895050048828, + "step": 727500 + }, + { + "epoch": 97.01333333333334, + "grad_norm": 0.8486922383308411, + "learning_rate": 1.5162666666666668e-06, + "loss": 1.1949724578857421, + "step": 727600 + }, + { + "epoch": 97.02666666666667, + "grad_norm": 0.8756220936775208, + "learning_rate": 1.5096000000000001e-06, + "loss": 1.1930170440673828, + "step": 727700 + }, + { + "epoch": 97.04, + "grad_norm": Infinity, + "learning_rate": 1.5029333333333335e-06, + "loss": 1.1907662200927733, + "step": 727800 + }, + { + "epoch": 97.05333333333333, + "grad_norm": 0.9102802276611328, + "learning_rate": 1.4963333333333334e-06, + "loss": 1.1966674041748047, + "step": 727900 + }, + { + "epoch": 97.06666666666666, + "grad_norm": 0.8804049491882324, + "learning_rate": 1.489666666666667e-06, + "loss": 1.1915321350097656, + "step": 728000 + }, + { + "epoch": 97.08, + "grad_norm": 0.8462570309638977, + "learning_rate": 1.483e-06, + "loss": 1.188415756225586, + "step": 728100 + }, + { + "epoch": 97.09333333333333, + "grad_norm": 0.9019154906272888, + "learning_rate": 1.4763333333333334e-06, + "loss": 1.1914682006835937, + "step": 728200 + }, + { + "epoch": 97.10666666666667, + "grad_norm": 0.9102103114128113, + "learning_rate": 1.4696666666666667e-06, + "loss": 1.1929423522949218, + "step": 728300 + }, + { + "epoch": 97.12, + "grad_norm": 0.9278746843338013, + "learning_rate": 1.4630000000000002e-06, + "loss": 1.190726318359375, + "step": 728400 + }, + { + "epoch": 97.13333333333334, + "grad_norm": 0.9312158226966858, + "learning_rate": 1.4563333333333333e-06, + "loss": 1.1920890045166015, + "step": 728500 + }, + { + "epoch": 97.14666666666666, + "grad_norm": 0.8610623478889465, + "learning_rate": 1.4496666666666667e-06, + "loss": 1.1913136291503905, + "step": 728600 + }, + { + "epoch": 97.16, + "grad_norm": 0.8517552614212036, + "learning_rate": 1.443e-06, + "loss": 1.1964224243164063, + "step": 728700 + }, + { + "epoch": 97.17333333333333, + "grad_norm": 0.9079805612564087, + "learning_rate": 1.4363333333333335e-06, + "loss": 1.1886049652099608, + "step": 728800 + }, + { + "epoch": 97.18666666666667, + "grad_norm": 0.8894618153572083, + "learning_rate": 1.4296666666666666e-06, + "loss": 1.1893565368652343, + "step": 728900 + }, + { + "epoch": 97.2, + "grad_norm": 0.927837610244751, + "learning_rate": 1.423e-06, + "loss": 1.1915690612792968, + "step": 729000 + }, + { + "epoch": 97.21333333333334, + "grad_norm": 0.9195118546485901, + "learning_rate": 1.4163333333333333e-06, + "loss": 1.192691650390625, + "step": 729100 + }, + { + "epoch": 97.22666666666667, + "grad_norm": 0.8661218285560608, + "learning_rate": 1.4096666666666668e-06, + "loss": 1.1943994903564452, + "step": 729200 + }, + { + "epoch": 97.24, + "grad_norm": 0.9145841002464294, + "learning_rate": 1.4030000000000002e-06, + "loss": 1.197445068359375, + "step": 729300 + }, + { + "epoch": 97.25333333333333, + "grad_norm": 0.8523109555244446, + "learning_rate": 1.3963333333333333e-06, + "loss": 1.194771499633789, + "step": 729400 + }, + { + "epoch": 97.26666666666667, + "grad_norm": 0.8701912760734558, + "learning_rate": 1.3896666666666668e-06, + "loss": 1.1876846313476563, + "step": 729500 + }, + { + "epoch": 97.28, + "grad_norm": 0.8822584748268127, + "learning_rate": 1.3830000000000001e-06, + "loss": 1.195957565307617, + "step": 729600 + }, + { + "epoch": 97.29333333333334, + "grad_norm": 0.8969473242759705, + "learning_rate": 1.3763333333333335e-06, + "loss": 1.1934420013427733, + "step": 729700 + }, + { + "epoch": 97.30666666666667, + "grad_norm": 0.9088907241821289, + "learning_rate": 1.3696666666666666e-06, + "loss": 1.1958892822265625, + "step": 729800 + }, + { + "epoch": 97.32, + "grad_norm": 0.7961787581443787, + "learning_rate": 1.3630666666666667e-06, + "loss": 1.189772491455078, + "step": 729900 + }, + { + "epoch": 97.33333333333333, + "grad_norm": 0.9014933705329895, + "learning_rate": 1.3564e-06, + "loss": 1.1911412811279296, + "step": 730000 + }, + { + "epoch": 97.34666666666666, + "grad_norm": 0.9077130556106567, + "learning_rate": 1.3497333333333334e-06, + "loss": 1.1925405883789062, + "step": 730100 + }, + { + "epoch": 97.36, + "grad_norm": 0.8387811779975891, + "learning_rate": 1.3430666666666667e-06, + "loss": 1.191651382446289, + "step": 730200 + }, + { + "epoch": 97.37333333333333, + "grad_norm": 0.8837115168571472, + "learning_rate": 1.3364e-06, + "loss": 1.1978406524658203, + "step": 730300 + }, + { + "epoch": 97.38666666666667, + "grad_norm": 0.891261100769043, + "learning_rate": 1.3297333333333334e-06, + "loss": 1.1935235595703124, + "step": 730400 + }, + { + "epoch": 97.4, + "grad_norm": 0.9634777903556824, + "learning_rate": 1.3230666666666667e-06, + "loss": 1.1935658264160156, + "step": 730500 + }, + { + "epoch": 97.41333333333333, + "grad_norm": 0.9264794588088989, + "learning_rate": 1.3164e-06, + "loss": 1.1933699035644532, + "step": 730600 + }, + { + "epoch": 97.42666666666666, + "grad_norm": 0.9273287653923035, + "learning_rate": 1.3097333333333335e-06, + "loss": 1.1926664733886718, + "step": 730700 + }, + { + "epoch": 97.44, + "grad_norm": 0.9044145941734314, + "learning_rate": 1.3030666666666667e-06, + "loss": 1.194606475830078, + "step": 730800 + }, + { + "epoch": 97.45333333333333, + "grad_norm": 0.916735053062439, + "learning_rate": 1.2964e-06, + "loss": 1.192816925048828, + "step": 730900 + }, + { + "epoch": 97.46666666666667, + "grad_norm": 0.9041197896003723, + "learning_rate": 1.2897333333333333e-06, + "loss": 1.1932903289794923, + "step": 731000 + }, + { + "epoch": 97.48, + "grad_norm": 0.8889577984809875, + "learning_rate": 1.2830666666666669e-06, + "loss": 1.1962411499023438, + "step": 731100 + }, + { + "epoch": 97.49333333333334, + "grad_norm": 0.910078763961792, + "learning_rate": 1.2764e-06, + "loss": 1.1956531524658203, + "step": 731200 + }, + { + "epoch": 97.50666666666666, + "grad_norm": 0.8650588393211365, + "learning_rate": 1.2697333333333333e-06, + "loss": 1.1919945526123046, + "step": 731300 + }, + { + "epoch": 97.52, + "grad_norm": 0.9000649452209473, + "learning_rate": 1.2630666666666668e-06, + "loss": 1.1926378631591796, + "step": 731400 + }, + { + "epoch": 97.53333333333333, + "grad_norm": 0.8907895088195801, + "learning_rate": 1.2564000000000002e-06, + "loss": 1.1921055603027344, + "step": 731500 + }, + { + "epoch": 97.54666666666667, + "grad_norm": 0.8809535503387451, + "learning_rate": 1.2497333333333333e-06, + "loss": 1.1962607574462891, + "step": 731600 + }, + { + "epoch": 97.56, + "grad_norm": 0.8726817965507507, + "learning_rate": 1.2430666666666666e-06, + "loss": 1.1959927368164063, + "step": 731700 + }, + { + "epoch": 97.57333333333334, + "grad_norm": 0.9167771935462952, + "learning_rate": 1.2364000000000001e-06, + "loss": 1.1933238220214843, + "step": 731800 + }, + { + "epoch": 97.58666666666667, + "grad_norm": 0.8944850564002991, + "learning_rate": 1.2298e-06, + "loss": 1.198369140625, + "step": 731900 + }, + { + "epoch": 97.6, + "grad_norm": 0.9288177490234375, + "learning_rate": 1.2231333333333334e-06, + "loss": 1.1962329864501953, + "step": 732000 + }, + { + "epoch": 97.61333333333333, + "grad_norm": 0.8759905099868774, + "learning_rate": 1.2164666666666667e-06, + "loss": 1.1970404815673827, + "step": 732100 + }, + { + "epoch": 97.62666666666667, + "grad_norm": 0.9289444088935852, + "learning_rate": 1.2098e-06, + "loss": 1.1988601684570312, + "step": 732200 + }, + { + "epoch": 97.64, + "grad_norm": 0.888252317905426, + "learning_rate": 1.2031333333333334e-06, + "loss": 1.1959870910644532, + "step": 732300 + }, + { + "epoch": 97.65333333333334, + "grad_norm": 0.9400676488876343, + "learning_rate": 1.1964666666666667e-06, + "loss": 1.1936607360839844, + "step": 732400 + }, + { + "epoch": 97.66666666666667, + "grad_norm": 0.7995263934135437, + "learning_rate": 1.1898e-06, + "loss": 1.1914346313476563, + "step": 732500 + }, + { + "epoch": 97.68, + "grad_norm": 0.911656379699707, + "learning_rate": 1.1831333333333334e-06, + "loss": 1.1957060241699218, + "step": 732600 + }, + { + "epoch": 97.69333333333333, + "grad_norm": 0.9077141880989075, + "learning_rate": 1.1764666666666667e-06, + "loss": 1.1969277191162109, + "step": 732700 + }, + { + "epoch": 97.70666666666666, + "grad_norm": 0.922042191028595, + "learning_rate": 1.1698e-06, + "loss": 1.1913483428955078, + "step": 732800 + }, + { + "epoch": 97.72, + "grad_norm": 0.8728546500205994, + "learning_rate": 1.1631333333333333e-06, + "loss": 1.192550277709961, + "step": 732900 + }, + { + "epoch": 97.73333333333333, + "grad_norm": 0.9435664415359497, + "learning_rate": 1.1564666666666667e-06, + "loss": 1.1956972503662109, + "step": 733000 + }, + { + "epoch": 97.74666666666667, + "grad_norm": 0.9456507563591003, + "learning_rate": 1.1498e-06, + "loss": 1.198812255859375, + "step": 733100 + }, + { + "epoch": 97.76, + "grad_norm": 0.9041507244110107, + "learning_rate": 1.1431333333333333e-06, + "loss": 1.1941202545166016, + "step": 733200 + }, + { + "epoch": 97.77333333333333, + "grad_norm": 0.9364042282104492, + "learning_rate": 1.1364666666666669e-06, + "loss": 1.1956196594238282, + "step": 733300 + }, + { + "epoch": 97.78666666666666, + "grad_norm": 0.901881754398346, + "learning_rate": 1.1298000000000002e-06, + "loss": 1.1942565155029297, + "step": 733400 + }, + { + "epoch": 97.8, + "grad_norm": 0.9191442728042603, + "learning_rate": 1.1231333333333333e-06, + "loss": 1.1965391540527344, + "step": 733500 + }, + { + "epoch": 97.81333333333333, + "grad_norm": 0.9554629921913147, + "learning_rate": 1.1164666666666666e-06, + "loss": 1.1935279846191407, + "step": 733600 + }, + { + "epoch": 97.82666666666667, + "grad_norm": 0.903621256351471, + "learning_rate": 1.1098000000000002e-06, + "loss": 1.1937690734863282, + "step": 733700 + }, + { + "epoch": 97.84, + "grad_norm": 0.9251970052719116, + "learning_rate": 1.1031333333333335e-06, + "loss": 1.1984178161621093, + "step": 733800 + }, + { + "epoch": 97.85333333333334, + "grad_norm": 0.9287400245666504, + "learning_rate": 1.0965333333333334e-06, + "loss": 1.196386184692383, + "step": 733900 + }, + { + "epoch": 97.86666666666666, + "grad_norm": 0.9118936061859131, + "learning_rate": 1.0898666666666667e-06, + "loss": 1.1918663787841797, + "step": 734000 + }, + { + "epoch": 97.88, + "grad_norm": 0.9294499754905701, + "learning_rate": 1.0832e-06, + "loss": 1.1964964294433593, + "step": 734100 + }, + { + "epoch": 97.89333333333333, + "grad_norm": 0.8662843704223633, + "learning_rate": 1.0765333333333334e-06, + "loss": 1.1969724273681641, + "step": 734200 + }, + { + "epoch": 97.90666666666667, + "grad_norm": 0.8762206435203552, + "learning_rate": 1.0698666666666667e-06, + "loss": 1.1970738983154297, + "step": 734300 + }, + { + "epoch": 97.92, + "grad_norm": 0.9251389503479004, + "learning_rate": 1.0632e-06, + "loss": 1.1950054168701172, + "step": 734400 + }, + { + "epoch": 97.93333333333334, + "grad_norm": 0.8627253174781799, + "learning_rate": 1.0565333333333334e-06, + "loss": 1.194439926147461, + "step": 734500 + }, + { + "epoch": 97.94666666666667, + "grad_norm": 0.9262219071388245, + "learning_rate": 1.0498666666666667e-06, + "loss": 1.1964743804931641, + "step": 734600 + }, + { + "epoch": 97.96, + "grad_norm": 0.8800917863845825, + "learning_rate": 1.0432e-06, + "loss": 1.1948735046386718, + "step": 734700 + }, + { + "epoch": 97.97333333333333, + "grad_norm": 0.9554460644721985, + "learning_rate": 1.0365333333333334e-06, + "loss": 1.1973654174804687, + "step": 734800 + }, + { + "epoch": 97.98666666666666, + "grad_norm": 0.8912851214408875, + "learning_rate": 1.0298666666666667e-06, + "loss": 1.1976622009277345, + "step": 734900 + }, + { + "epoch": 98.0, + "grad_norm": 0.9327476024627686, + "learning_rate": 1.0232e-06, + "loss": 1.1984359741210937, + "step": 735000 + }, + { + "epoch": 98.01333333333334, + "grad_norm": 0.898631751537323, + "learning_rate": 1.0165333333333333e-06, + "loss": 1.191797409057617, + "step": 735100 + }, + { + "epoch": 98.02666666666667, + "grad_norm": 0.8860185146331787, + "learning_rate": 1.0098666666666669e-06, + "loss": 1.19053955078125, + "step": 735200 + }, + { + "epoch": 98.04, + "grad_norm": 0.8919152617454529, + "learning_rate": 1.0032e-06, + "loss": 1.1930453491210937, + "step": 735300 + }, + { + "epoch": 98.05333333333333, + "grad_norm": 0.9268627762794495, + "learning_rate": 9.965333333333333e-07, + "loss": 1.1904096984863282, + "step": 735400 + }, + { + "epoch": 98.06666666666666, + "grad_norm": 0.9463122487068176, + "learning_rate": 9.898666666666666e-07, + "loss": 1.1924416351318359, + "step": 735500 + }, + { + "epoch": 98.08, + "grad_norm": 0.9249300956726074, + "learning_rate": 9.832000000000002e-07, + "loss": 1.190969467163086, + "step": 735600 + }, + { + "epoch": 98.09333333333333, + "grad_norm": 0.9573506116867065, + "learning_rate": 9.765333333333335e-07, + "loss": 1.1920275115966796, + "step": 735700 + }, + { + "epoch": 98.10666666666667, + "grad_norm": 0.8895424604415894, + "learning_rate": 9.698666666666666e-07, + "loss": 1.1897706604003906, + "step": 735800 + }, + { + "epoch": 98.12, + "grad_norm": 0.8485841155052185, + "learning_rate": 9.632666666666668e-07, + "loss": 1.1928855895996093, + "step": 735900 + }, + { + "epoch": 98.13333333333334, + "grad_norm": 0.9169514775276184, + "learning_rate": 9.566e-07, + "loss": 1.1923430633544922, + "step": 736000 + }, + { + "epoch": 98.14666666666666, + "grad_norm": 0.9484817981719971, + "learning_rate": 9.499333333333334e-07, + "loss": 1.1894152069091797, + "step": 736100 + }, + { + "epoch": 98.16, + "grad_norm": 0.8725702166557312, + "learning_rate": 9.432666666666667e-07, + "loss": 1.1909805297851563, + "step": 736200 + }, + { + "epoch": 98.17333333333333, + "grad_norm": 0.9127253293991089, + "learning_rate": 9.366e-07, + "loss": 1.193762969970703, + "step": 736300 + }, + { + "epoch": 98.18666666666667, + "grad_norm": 0.8876358270645142, + "learning_rate": 9.299333333333334e-07, + "loss": 1.1921793365478515, + "step": 736400 + }, + { + "epoch": 98.2, + "grad_norm": 0.9053890109062195, + "learning_rate": 9.232666666666667e-07, + "loss": 1.1964334106445313, + "step": 736500 + }, + { + "epoch": 98.21333333333334, + "grad_norm": 0.9463318586349487, + "learning_rate": 9.166000000000001e-07, + "loss": 1.188143539428711, + "step": 736600 + }, + { + "epoch": 98.22666666666667, + "grad_norm": 0.8585167527198792, + "learning_rate": 9.099333333333333e-07, + "loss": 1.1954288482666016, + "step": 736700 + }, + { + "epoch": 98.24, + "grad_norm": 0.9063857197761536, + "learning_rate": 9.032666666666667e-07, + "loss": 1.1938237762451172, + "step": 736800 + }, + { + "epoch": 98.25333333333333, + "grad_norm": 0.848952054977417, + "learning_rate": 8.966e-07, + "loss": 1.1889173889160156, + "step": 736900 + }, + { + "epoch": 98.26666666666667, + "grad_norm": 0.9032663106918335, + "learning_rate": 8.899333333333335e-07, + "loss": 1.1894258880615234, + "step": 737000 + }, + { + "epoch": 98.28, + "grad_norm": 0.9298050403594971, + "learning_rate": 8.832666666666668e-07, + "loss": 1.1893203735351563, + "step": 737100 + }, + { + "epoch": 98.29333333333334, + "grad_norm": 0.8868449926376343, + "learning_rate": 8.766e-07, + "loss": 1.1898612976074219, + "step": 737200 + }, + { + "epoch": 98.30666666666667, + "grad_norm": 0.8657017350196838, + "learning_rate": 8.699333333333333e-07, + "loss": 1.1897797393798828, + "step": 737300 + }, + { + "epoch": 98.32, + "grad_norm": 0.8774369359016418, + "learning_rate": 8.632666666666668e-07, + "loss": 1.1933421325683593, + "step": 737400 + }, + { + "epoch": 98.33333333333333, + "grad_norm": 0.9083582758903503, + "learning_rate": 8.566000000000001e-07, + "loss": 1.1912253570556641, + "step": 737500 + }, + { + "epoch": 98.34666666666666, + "grad_norm": 0.8991101980209351, + "learning_rate": 8.499333333333333e-07, + "loss": 1.193739547729492, + "step": 737600 + }, + { + "epoch": 98.36, + "grad_norm": 0.9866260886192322, + "learning_rate": 8.432666666666666e-07, + "loss": 1.1906326293945313, + "step": 737700 + }, + { + "epoch": 98.37333333333333, + "grad_norm": 0.9080073833465576, + "learning_rate": 8.366000000000001e-07, + "loss": 1.192478561401367, + "step": 737800 + }, + { + "epoch": 98.38666666666667, + "grad_norm": 0.8622914552688599, + "learning_rate": 8.300000000000001e-07, + "loss": 1.1917598724365235, + "step": 737900 + }, + { + "epoch": 98.4, + "grad_norm": 0.9066656231880188, + "learning_rate": 8.233333333333334e-07, + "loss": 1.1930951690673828, + "step": 738000 + }, + { + "epoch": 98.41333333333333, + "grad_norm": 0.8253511190414429, + "learning_rate": 8.166666666666666e-07, + "loss": 1.1881201934814454, + "step": 738100 + }, + { + "epoch": 98.42666666666666, + "grad_norm": 0.8869616389274597, + "learning_rate": 8.1e-07, + "loss": 1.1893899536132813, + "step": 738200 + }, + { + "epoch": 98.44, + "grad_norm": 0.8886020183563232, + "learning_rate": 8.033333333333334e-07, + "loss": 1.1935739135742187, + "step": 738300 + }, + { + "epoch": 98.45333333333333, + "grad_norm": 0.9000334143638611, + "learning_rate": 7.966666666666667e-07, + "loss": 1.189201889038086, + "step": 738400 + }, + { + "epoch": 98.46666666666667, + "grad_norm": 0.8531255125999451, + "learning_rate": 7.900000000000002e-07, + "loss": 1.191848373413086, + "step": 738500 + }, + { + "epoch": 98.48, + "grad_norm": 0.9446560144424438, + "learning_rate": 7.833333333333333e-07, + "loss": 1.1940558624267579, + "step": 738600 + }, + { + "epoch": 98.49333333333334, + "grad_norm": 0.8816220760345459, + "learning_rate": 7.766666666666667e-07, + "loss": 1.1970796966552735, + "step": 738700 + }, + { + "epoch": 98.50666666666666, + "grad_norm": 0.8878071308135986, + "learning_rate": 7.7e-07, + "loss": 1.191910171508789, + "step": 738800 + }, + { + "epoch": 98.52, + "grad_norm": 0.9086691737174988, + "learning_rate": 7.633333333333334e-07, + "loss": 1.1919632720947266, + "step": 738900 + }, + { + "epoch": 98.53333333333333, + "grad_norm": 0.9125364422798157, + "learning_rate": 7.566666666666667e-07, + "loss": 1.1903729248046875, + "step": 739000 + }, + { + "epoch": 98.54666666666667, + "grad_norm": 0.9102436900138855, + "learning_rate": 7.5e-07, + "loss": 1.1952772521972657, + "step": 739100 + }, + { + "epoch": 98.56, + "grad_norm": 0.8782820105552673, + "learning_rate": 7.433333333333333e-07, + "loss": 1.1924925994873048, + "step": 739200 + }, + { + "epoch": 98.57333333333334, + "grad_norm": 0.9105757474899292, + "learning_rate": 7.366666666666667e-07, + "loss": 1.1958279418945312, + "step": 739300 + }, + { + "epoch": 98.58666666666667, + "grad_norm": 0.8756064176559448, + "learning_rate": 7.3e-07, + "loss": 1.1938359069824218, + "step": 739400 + }, + { + "epoch": 98.6, + "grad_norm": 0.8714690208435059, + "learning_rate": 7.233333333333333e-07, + "loss": 1.1933795166015626, + "step": 739500 + }, + { + "epoch": 98.61333333333333, + "grad_norm": 0.846801221370697, + "learning_rate": 7.166666666666667e-07, + "loss": 1.1944500732421874, + "step": 739600 + }, + { + "epoch": 98.62666666666667, + "grad_norm": 0.8956632018089294, + "learning_rate": 7.100000000000001e-07, + "loss": 1.1958086395263672, + "step": 739700 + }, + { + "epoch": 98.64, + "grad_norm": 0.8939581513404846, + "learning_rate": 7.033333333333334e-07, + "loss": 1.1935520935058594, + "step": 739800 + }, + { + "epoch": 98.65333333333334, + "grad_norm": 0.8881719708442688, + "learning_rate": 6.967333333333333e-07, + "loss": 1.1934709930419922, + "step": 739900 + }, + { + "epoch": 98.66666666666667, + "grad_norm": 0.9042186141014099, + "learning_rate": 6.900666666666668e-07, + "loss": 1.1922380828857422, + "step": 740000 + }, + { + "epoch": 98.68, + "grad_norm": 0.8477785587310791, + "learning_rate": 6.834e-07, + "loss": 1.1890042877197267, + "step": 740100 + }, + { + "epoch": 98.69333333333333, + "grad_norm": 0.8813819289207458, + "learning_rate": 6.767333333333334e-07, + "loss": 1.1922322082519532, + "step": 740200 + }, + { + "epoch": 98.70666666666666, + "grad_norm": 0.9520646333694458, + "learning_rate": 6.700666666666666e-07, + "loss": 1.1949353790283204, + "step": 740300 + }, + { + "epoch": 98.72, + "grad_norm": 0.8981533050537109, + "learning_rate": 6.634000000000001e-07, + "loss": 1.1972361755371095, + "step": 740400 + }, + { + "epoch": 98.73333333333333, + "grad_norm": 0.8700048327445984, + "learning_rate": 6.567333333333333e-07, + "loss": 1.1961135864257812, + "step": 740500 + }, + { + "epoch": 98.74666666666667, + "grad_norm": 0.9323988556861877, + "learning_rate": 6.500666666666667e-07, + "loss": 1.1912552642822265, + "step": 740600 + }, + { + "epoch": 98.76, + "grad_norm": 0.8961540460586548, + "learning_rate": 6.434e-07, + "loss": 1.1949165344238282, + "step": 740700 + }, + { + "epoch": 98.77333333333333, + "grad_norm": 0.8768694996833801, + "learning_rate": 6.367333333333334e-07, + "loss": 1.193530044555664, + "step": 740800 + }, + { + "epoch": 98.78666666666666, + "grad_norm": 0.9372314810752869, + "learning_rate": 6.300666666666667e-07, + "loss": 1.1909781646728517, + "step": 740900 + }, + { + "epoch": 98.8, + "grad_norm": 0.9452794194221497, + "learning_rate": 6.234e-07, + "loss": 1.1920659637451172, + "step": 741000 + }, + { + "epoch": 98.81333333333333, + "grad_norm": 0.8834349513053894, + "learning_rate": 6.167333333333334e-07, + "loss": 1.194448471069336, + "step": 741100 + }, + { + "epoch": 98.82666666666667, + "grad_norm": 0.8450713157653809, + "learning_rate": 6.100666666666667e-07, + "loss": 1.1934151458740234, + "step": 741200 + }, + { + "epoch": 98.84, + "grad_norm": 0.897294819355011, + "learning_rate": 6.034e-07, + "loss": 1.1937016296386718, + "step": 741300 + }, + { + "epoch": 98.85333333333334, + "grad_norm": 0.9136027693748474, + "learning_rate": 5.967333333333333e-07, + "loss": 1.194300994873047, + "step": 741400 + }, + { + "epoch": 98.86666666666666, + "grad_norm": 0.8889844417572021, + "learning_rate": 5.900666666666667e-07, + "loss": 1.1939845275878906, + "step": 741500 + }, + { + "epoch": 98.88, + "grad_norm": 0.8959463238716125, + "learning_rate": 5.834e-07, + "loss": 1.1932821655273438, + "step": 741600 + }, + { + "epoch": 98.89333333333333, + "grad_norm": 0.9319109320640564, + "learning_rate": 5.767333333333334e-07, + "loss": 1.1942572784423828, + "step": 741700 + }, + { + "epoch": 98.90666666666667, + "grad_norm": 0.948413074016571, + "learning_rate": 5.700666666666666e-07, + "loss": 1.1931224822998048, + "step": 741800 + }, + { + "epoch": 98.92, + "grad_norm": 0.943126380443573, + "learning_rate": 5.634666666666667e-07, + "loss": 1.1902999877929688, + "step": 741900 + }, + { + "epoch": 98.93333333333334, + "grad_norm": 0.9261944890022278, + "learning_rate": 5.568e-07, + "loss": 1.1924332427978515, + "step": 742000 + }, + { + "epoch": 98.94666666666667, + "grad_norm": 0.8977665901184082, + "learning_rate": 5.501333333333333e-07, + "loss": 1.1910804748535155, + "step": 742100 + }, + { + "epoch": 98.96, + "grad_norm": 0.9129285216331482, + "learning_rate": 5.434666666666667e-07, + "loss": 1.1923501586914063, + "step": 742200 + }, + { + "epoch": 98.97333333333333, + "grad_norm": 0.9128681421279907, + "learning_rate": 5.368000000000001e-07, + "loss": 1.1889964294433595, + "step": 742300 + }, + { + "epoch": 98.98666666666666, + "grad_norm": 0.9412058591842651, + "learning_rate": 5.301333333333333e-07, + "loss": 1.192625732421875, + "step": 742400 + }, + { + "epoch": 99.0, + "grad_norm": 0.8482484221458435, + "learning_rate": 5.234666666666667e-07, + "loss": 1.1931838989257812, + "step": 742500 + }, + { + "epoch": 99.01333333333334, + "grad_norm": 0.9009374976158142, + "learning_rate": 5.168e-07, + "loss": 1.1919266510009765, + "step": 742600 + }, + { + "epoch": 99.02666666666667, + "grad_norm": 0.9100991487503052, + "learning_rate": 5.101333333333334e-07, + "loss": 1.1920348358154298, + "step": 742700 + }, + { + "epoch": 99.04, + "grad_norm": 0.896523118019104, + "learning_rate": 5.034666666666666e-07, + "loss": 1.1886348724365234, + "step": 742800 + }, + { + "epoch": 99.05333333333333, + "grad_norm": 0.8603360652923584, + "learning_rate": 4.968000000000001e-07, + "loss": 1.1856871032714844, + "step": 742900 + }, + { + "epoch": 99.06666666666666, + "grad_norm": 0.9280701279640198, + "learning_rate": 4.901333333333334e-07, + "loss": 1.188511962890625, + "step": 743000 + }, + { + "epoch": 99.08, + "grad_norm": 0.9534225463867188, + "learning_rate": 4.834666666666667e-07, + "loss": 1.1933180236816405, + "step": 743100 + }, + { + "epoch": 99.09333333333333, + "grad_norm": 0.8999395370483398, + "learning_rate": 4.768e-07, + "loss": 1.189303436279297, + "step": 743200 + }, + { + "epoch": 99.10666666666667, + "grad_norm": 0.8953112363815308, + "learning_rate": 4.7013333333333336e-07, + "loss": 1.18920166015625, + "step": 743300 + }, + { + "epoch": 99.12, + "grad_norm": 0.8740084767341614, + "learning_rate": 4.6346666666666663e-07, + "loss": 1.1907463073730469, + "step": 743400 + }, + { + "epoch": 99.13333333333334, + "grad_norm": 0.8928273320198059, + "learning_rate": 4.568e-07, + "loss": 1.1911299133300781, + "step": 743500 + }, + { + "epoch": 99.14666666666666, + "grad_norm": 0.8718655705451965, + "learning_rate": 4.501333333333334e-07, + "loss": 1.1908772277832032, + "step": 743600 + }, + { + "epoch": 99.16, + "grad_norm": 0.9151206612586975, + "learning_rate": 4.4346666666666667e-07, + "loss": 1.1899483489990235, + "step": 743700 + }, + { + "epoch": 99.17333333333333, + "grad_norm": 0.891651451587677, + "learning_rate": 4.3680000000000005e-07, + "loss": 1.19437744140625, + "step": 743800 + }, + { + "epoch": 99.18666666666667, + "grad_norm": 0.8451858758926392, + "learning_rate": 4.3020000000000003e-07, + "loss": 1.1926042175292968, + "step": 743900 + }, + { + "epoch": 99.2, + "grad_norm": 0.8772236108779907, + "learning_rate": 4.2353333333333335e-07, + "loss": 1.1880721282958984, + "step": 744000 + }, + { + "epoch": 99.21333333333334, + "grad_norm": 0.857770562171936, + "learning_rate": 4.1686666666666673e-07, + "loss": 1.1957527923583984, + "step": 744100 + }, + { + "epoch": 99.22666666666667, + "grad_norm": 0.9516028165817261, + "learning_rate": 4.102e-07, + "loss": 1.1945584869384767, + "step": 744200 + }, + { + "epoch": 99.24, + "grad_norm": 0.843956708908081, + "learning_rate": 4.035333333333334e-07, + "loss": 1.1935086059570312, + "step": 744300 + }, + { + "epoch": 99.25333333333333, + "grad_norm": 0.8973932862281799, + "learning_rate": 3.9686666666666666e-07, + "loss": 1.1924853515625, + "step": 744400 + }, + { + "epoch": 99.26666666666667, + "grad_norm": 0.8814348578453064, + "learning_rate": 3.9020000000000004e-07, + "loss": 1.1938815307617188, + "step": 744500 + }, + { + "epoch": 99.28, + "grad_norm": 0.9305223226547241, + "learning_rate": 3.8353333333333337e-07, + "loss": 1.1920265197753905, + "step": 744600 + }, + { + "epoch": 99.29333333333334, + "grad_norm": 0.8577662706375122, + "learning_rate": 3.768666666666667e-07, + "loss": 1.1892983245849609, + "step": 744700 + }, + { + "epoch": 99.30666666666667, + "grad_norm": 0.9148098230361938, + "learning_rate": 3.702e-07, + "loss": 1.193815689086914, + "step": 744800 + }, + { + "epoch": 99.32, + "grad_norm": 0.8657062649726868, + "learning_rate": 3.6353333333333335e-07, + "loss": 1.1912665557861328, + "step": 744900 + }, + { + "epoch": 99.33333333333333, + "grad_norm": 0.9293052554130554, + "learning_rate": 3.5686666666666667e-07, + "loss": 1.19271728515625, + "step": 745000 + }, + { + "epoch": 99.34666666666666, + "grad_norm": 0.9440531134605408, + "learning_rate": 3.502e-07, + "loss": 1.1907530975341798, + "step": 745100 + }, + { + "epoch": 99.36, + "grad_norm": 0.8987706303596497, + "learning_rate": 3.435333333333333e-07, + "loss": 1.1910220336914064, + "step": 745200 + }, + { + "epoch": 99.37333333333333, + "grad_norm": 0.9358866214752197, + "learning_rate": 3.3686666666666665e-07, + "loss": 1.194500732421875, + "step": 745300 + }, + { + "epoch": 99.38666666666667, + "grad_norm": 0.8812012672424316, + "learning_rate": 3.302e-07, + "loss": 1.1937469482421874, + "step": 745400 + }, + { + "epoch": 99.4, + "grad_norm": 0.9004390239715576, + "learning_rate": 3.235333333333333e-07, + "loss": 1.1931354522705078, + "step": 745500 + }, + { + "epoch": 99.41333333333333, + "grad_norm": 0.870255708694458, + "learning_rate": 3.168666666666667e-07, + "loss": 1.1928106689453124, + "step": 745600 + }, + { + "epoch": 99.42666666666666, + "grad_norm": 0.8272011280059814, + "learning_rate": 3.102e-07, + "loss": 1.1933961486816407, + "step": 745700 + }, + { + "epoch": 99.44, + "grad_norm": 0.904954731464386, + "learning_rate": 3.0353333333333334e-07, + "loss": 1.1930033874511718, + "step": 745800 + }, + { + "epoch": 99.45333333333333, + "grad_norm": 0.8282216191291809, + "learning_rate": 2.9693333333333337e-07, + "loss": 1.1900058746337892, + "step": 745900 + }, + { + "epoch": 99.46666666666667, + "grad_norm": 0.9468961954116821, + "learning_rate": 2.902666666666667e-07, + "loss": 1.1919841003417968, + "step": 746000 + }, + { + "epoch": 99.48, + "grad_norm": 0.9418879151344299, + "learning_rate": 2.836e-07, + "loss": 1.1886141204833984, + "step": 746100 + }, + { + "epoch": 99.49333333333334, + "grad_norm": 0.8836652636528015, + "learning_rate": 2.7693333333333335e-07, + "loss": 1.1884160614013672, + "step": 746200 + }, + { + "epoch": 99.50666666666666, + "grad_norm": 0.9527371525764465, + "learning_rate": 2.702666666666667e-07, + "loss": 1.1915505981445313, + "step": 746300 + }, + { + "epoch": 99.52, + "grad_norm": 0.8506571054458618, + "learning_rate": 2.636e-07, + "loss": 1.1904411315917969, + "step": 746400 + }, + { + "epoch": 99.53333333333333, + "grad_norm": 0.8335494995117188, + "learning_rate": 2.5693333333333333e-07, + "loss": 1.1901004028320312, + "step": 746500 + }, + { + "epoch": 99.54666666666667, + "grad_norm": 0.9234083890914917, + "learning_rate": 2.5026666666666666e-07, + "loss": 1.1895111846923827, + "step": 746600 + }, + { + "epoch": 99.56, + "grad_norm": 0.9194679260253906, + "learning_rate": 2.436e-07, + "loss": 1.1904415130615233, + "step": 746700 + }, + { + "epoch": 99.57333333333334, + "grad_norm": 0.9224709868431091, + "learning_rate": 2.3693333333333336e-07, + "loss": 1.1882210540771485, + "step": 746800 + }, + { + "epoch": 99.58666666666667, + "grad_norm": 0.9308574795722961, + "learning_rate": 2.302666666666667e-07, + "loss": 1.1944318389892579, + "step": 746900 + }, + { + "epoch": 99.6, + "grad_norm": 0.8662922382354736, + "learning_rate": 2.2360000000000002e-07, + "loss": 1.1902082824707032, + "step": 747000 + }, + { + "epoch": 99.61333333333333, + "grad_norm": 0.9251387715339661, + "learning_rate": 2.1693333333333334e-07, + "loss": 1.1896009826660157, + "step": 747100 + }, + { + "epoch": 99.62666666666667, + "grad_norm": 0.8867355585098267, + "learning_rate": 2.102666666666667e-07, + "loss": 1.1914397430419923, + "step": 747200 + }, + { + "epoch": 99.64, + "grad_norm": 0.8558920621871948, + "learning_rate": 2.0360000000000002e-07, + "loss": 1.193257827758789, + "step": 747300 + }, + { + "epoch": 99.65333333333334, + "grad_norm": 0.8549710512161255, + "learning_rate": 1.9693333333333335e-07, + "loss": 1.1871185302734375, + "step": 747400 + }, + { + "epoch": 99.66666666666667, + "grad_norm": 0.9454492330551147, + "learning_rate": 1.9026666666666668e-07, + "loss": 1.1909255218505859, + "step": 747500 + }, + { + "epoch": 99.68, + "grad_norm": 0.8846890330314636, + "learning_rate": 1.836e-07, + "loss": 1.191995849609375, + "step": 747600 + }, + { + "epoch": 99.69333333333333, + "grad_norm": 0.8920761942863464, + "learning_rate": 1.7693333333333333e-07, + "loss": 1.1904275512695313, + "step": 747700 + }, + { + "epoch": 99.70666666666666, + "grad_norm": 0.9085679054260254, + "learning_rate": 1.7026666666666666e-07, + "loss": 1.1856131744384766, + "step": 747800 + }, + { + "epoch": 99.72, + "grad_norm": 0.8654316663742065, + "learning_rate": 1.636666666666667e-07, + "loss": 1.1924869537353515, + "step": 747900 + }, + { + "epoch": 99.73333333333333, + "grad_norm": 0.9672116041183472, + "learning_rate": 1.5700000000000002e-07, + "loss": 1.1914896392822265, + "step": 748000 + }, + { + "epoch": 99.74666666666667, + "grad_norm": 0.8933631181716919, + "learning_rate": 1.5033333333333334e-07, + "loss": 1.1880557250976562, + "step": 748100 + }, + { + "epoch": 99.76, + "grad_norm": 0.8144270777702332, + "learning_rate": 1.4366666666666667e-07, + "loss": 1.1939049530029298, + "step": 748200 + }, + { + "epoch": 99.77333333333333, + "grad_norm": 0.942760169506073, + "learning_rate": 1.37e-07, + "loss": 1.1934993743896485, + "step": 748300 + }, + { + "epoch": 99.78666666666666, + "grad_norm": 0.9373781085014343, + "learning_rate": 1.3033333333333335e-07, + "loss": 1.1954252624511719, + "step": 748400 + }, + { + "epoch": 99.8, + "grad_norm": 0.852530837059021, + "learning_rate": 1.2366666666666668e-07, + "loss": 1.1905007934570313, + "step": 748500 + }, + { + "epoch": 99.81333333333333, + "grad_norm": 0.9099419116973877, + "learning_rate": 1.1700000000000002e-07, + "loss": 1.1874067687988281, + "step": 748600 + }, + { + "epoch": 99.82666666666667, + "grad_norm": 0.9150423407554626, + "learning_rate": 1.1033333333333334e-07, + "loss": 1.1895872497558593, + "step": 748700 + }, + { + "epoch": 99.84, + "grad_norm": 0.9039080142974854, + "learning_rate": 1.0366666666666667e-07, + "loss": 1.1886183166503905, + "step": 748800 + }, + { + "epoch": 99.85333333333334, + "grad_norm": 0.8735392689704895, + "learning_rate": 9.700000000000001e-08, + "loss": 1.1912483978271484, + "step": 748900 + }, + { + "epoch": 99.86666666666666, + "grad_norm": 0.9005591869354248, + "learning_rate": 9.033333333333333e-08, + "loss": 1.1915541076660157, + "step": 749000 + }, + { + "epoch": 99.88, + "grad_norm": 0.914032518863678, + "learning_rate": 8.366666666666667e-08, + "loss": 1.194538803100586, + "step": 749100 + }, + { + "epoch": 99.89333333333333, + "grad_norm": 0.9344823360443115, + "learning_rate": 7.7e-08, + "loss": 1.1954287719726562, + "step": 749200 + }, + { + "epoch": 99.90666666666667, + "grad_norm": 0.9338550567626953, + "learning_rate": 7.033333333333334e-08, + "loss": 1.188226318359375, + "step": 749300 + }, + { + "epoch": 99.92, + "grad_norm": 0.8841633796691895, + "learning_rate": 6.366666666666667e-08, + "loss": 1.1888745880126954, + "step": 749400 + }, + { + "epoch": 99.93333333333334, + "grad_norm": 0.9246593117713928, + "learning_rate": 5.7e-08, + "loss": 1.1918194580078125, + "step": 749500 + }, + { + "epoch": 99.94666666666667, + "grad_norm": 0.8690961003303528, + "learning_rate": 5.033333333333333e-08, + "loss": 1.1911461639404297, + "step": 749600 + }, + { + "epoch": 99.96, + "grad_norm": 0.8422365188598633, + "learning_rate": 4.3666666666666674e-08, + "loss": 1.1900325012207031, + "step": 749700 + }, + { + "epoch": 99.97333333333333, + "grad_norm": 0.8521731495857239, + "learning_rate": 3.7e-08, + "loss": 1.1885493469238282, + "step": 749800 + }, + { + "epoch": 99.98666666666666, + "grad_norm": 0.9010792970657349, + "learning_rate": 3.04e-08, + "loss": 1.190181655883789, + "step": 749900 + }, + { + "epoch": 100.0, + "grad_norm": 0.9202598333358765, + "learning_rate": 2.3733333333333337e-08, + "loss": 1.1884393310546875, + "step": 750000 + } + ], + "logging_steps": 100, + "max_steps": 750000, + "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": 2.02096705536e+17, + "train_batch_size": 8, + "trial_name": null, + "trial_params": null +} diff --git a/timecost/c14/realtabformer/rtf-c14-20260501_010151/rtf_checkpoints/checkpoint-750000/training_args.bin b/timecost/c14/realtabformer/rtf-c14-20260501_010151/rtf_checkpoints/checkpoint-750000/training_args.bin new file mode 100644 index 0000000000000000000000000000000000000000..34d68dc0e0fe1c1f12a2e581dd1b166aa7178a9e --- /dev/null +++ b/timecost/c14/realtabformer/rtf-c14-20260501_010151/rtf_checkpoints/checkpoint-750000/training_args.bin @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:9e2cd88337d1d846c6918d2b3b63fa3e5c93f12fefc082497590da854a564607 +size 5201 diff --git a/timecost/c14/realtabformer/rtf-c14-20260501_010151/runtime_result.json b/timecost/c14/realtabformer/rtf-c14-20260501_010151/runtime_result.json new file mode 100644 index 0000000000000000000000000000000000000000..2d33cb1c2b2d0d9eca793a663dd2bb96b75a1b1a --- /dev/null +++ b/timecost/c14/realtabformer/rtf-c14-20260501_010151/runtime_result.json @@ -0,0 +1,27 @@ +{ + "dataset_id": "c14", + "model": "realtabformer", + "run_id": "rtf-c14-20260501_010151", + "public_gate_status": "pass", + "adapter_ready_status": "pass", + "train_status": "success", + "generate_status": "success", + "reason_code": null, + "reason_detail": null, + "artifacts": { + "synthetic_csv": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/c14/realtabformer/rtf-c14-20260501_010151/rtf-c14-240000-20260501_162159.csv", + "model_path": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/c14/realtabformer/rtf-c14-20260501_010151/models_100epochs" + }, + "timings": { + "train": { + "started_at": "2026-05-01T01:01:54", + "ended_at": "2026-05-01T16:21:59", + "duration_sec": 55204.345 + }, + "generate": { + "started_at": "2026-05-01T16:21:59", + "ended_at": "2026-05-01T16:44:00", + "duration_sec": 1321.685 + } + } +} \ No newline at end of file diff --git a/timecost/c14/realtabformer/rtf-c14-20260501_010151/staged/public/staged_features.json b/timecost/c14/realtabformer/rtf-c14-20260501_010151/staged/public/staged_features.json new file mode 100644 index 0000000000000000000000000000000000000000..508fbe870849f119fe0f440e76f620b91489d965 --- /dev/null +++ b/timecost/c14/realtabformer/rtf-c14-20260501_010151/staged/public/staged_features.json @@ -0,0 +1,127 @@ +[ + { + "feature_name": "id", + "data_type": "continuous", + "is_target": false + }, + { + "feature_name": "bin_0", + "data_type": "binary", + "is_target": false + }, + { + "feature_name": "bin_1", + "data_type": "binary", + "is_target": false + }, + { + "feature_name": "bin_2", + "data_type": "binary", + "is_target": false + }, + { + "feature_name": "bin_3", + "data_type": "binary", + "is_target": false + }, + { + "feature_name": "bin_4", + "data_type": "binary", + "is_target": false + }, + { + "feature_name": "nom_0", + "data_type": "categorical", + "is_target": false + }, + { + "feature_name": "nom_1", + "data_type": "categorical", + "is_target": false + }, + { + "feature_name": "nom_2", + "data_type": "categorical", + "is_target": false + }, + { + "feature_name": "nom_3", + "data_type": "categorical", + "is_target": false + }, + { + "feature_name": "nom_4", + "data_type": "categorical", + "is_target": false + }, + { + "feature_name": "nom_5", + "data_type": "categorical", + "is_target": false + }, + { + "feature_name": "nom_6", + "data_type": "categorical", + "is_target": false + }, + { + "feature_name": "nom_7", + "data_type": "categorical", + "is_target": false + }, + { + "feature_name": "nom_8", + "data_type": "categorical", + "is_target": false + }, + { + "feature_name": "nom_9", + "data_type": "categorical", + "is_target": false + }, + { + "feature_name": "ord_0", + "data_type": "continuous", + "is_target": false + }, + { + "feature_name": "ord_1", + "data_type": "categorical", + "is_target": false + }, + { + "feature_name": "ord_2", + "data_type": "categorical", + "is_target": false + }, + { + "feature_name": "ord_3", + "data_type": "categorical", + "is_target": false + }, + { + "feature_name": "ord_4", + "data_type": "categorical", + "is_target": false + }, + { + "feature_name": "ord_5", + "data_type": "categorical", + "is_target": false + }, + { + "feature_name": "day", + "data_type": "continuous", + "is_target": false + }, + { + "feature_name": "month", + "data_type": "continuous", + "is_target": false + }, + { + "feature_name": "target", + "data_type": "binary", + "is_target": true + } +] \ No newline at end of file diff --git a/timecost/c14/realtabformer/rtf-c14-20260501_010151/staged/public/test.csv b/timecost/c14/realtabformer/rtf-c14-20260501_010151/staged/public/test.csv new file mode 100644 index 0000000000000000000000000000000000000000..afbef1e22ba9597cf509fb91aa271ff6908ca0a9 --- /dev/null +++ b/timecost/c14/realtabformer/rtf-c14-20260501_010151/staged/public/test.csv @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:617ecb620416375c67546e0fa5a8b9a3923d689bda904dc23824ea175d1f8597 +size 3965839 diff --git a/timecost/c14/realtabformer/rtf-c14-20260501_010151/staged/public/train.csv b/timecost/c14/realtabformer/rtf-c14-20260501_010151/staged/public/train.csv new file mode 100644 index 0000000000000000000000000000000000000000..322e9de210d736baf266fa4930517b3827d3bf63 --- /dev/null +++ b/timecost/c14/realtabformer/rtf-c14-20260501_010151/staged/public/train.csv @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:12398ccb68a2499b9c126f61b25f03c36a65f026d755e1d5ff5653e614676167 +size 31717079 diff --git a/timecost/c14/realtabformer/rtf-c14-20260501_010151/staged/public/val.csv b/timecost/c14/realtabformer/rtf-c14-20260501_010151/staged/public/val.csv new file mode 100644 index 0000000000000000000000000000000000000000..594db5d9c0a27ce284d599b8bf62685189510e61 --- /dev/null +++ b/timecost/c14/realtabformer/rtf-c14-20260501_010151/staged/public/val.csv @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:f40dbd7bbd9e2783c24d0d12ec35a85581835d45238774eb0676de44a734feda +size 3965919 diff --git a/timecost/c14/realtabformer/rtf-c14-20260501_010151/staged/realtabformer/adapter_report.json b/timecost/c14/realtabformer/rtf-c14-20260501_010151/staged/realtabformer/adapter_report.json new file mode 100644 index 0000000000000000000000000000000000000000..df56cf2047af986f4ff7715ae54f60d72789e736 --- /dev/null +++ b/timecost/c14/realtabformer/rtf-c14-20260501_010151/staged/realtabformer/adapter_report.json @@ -0,0 +1,7 @@ +{ + "adapter_ready_status": "pass", + "adapter_fail_reason_code": null, + "adapter_fail_detail": null, + "adapter_transforms_applied": [], + "model_input_manifest": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/c14/realtabformer/rtf-c14-20260501_010151/staged/realtabformer/model_input_manifest.json" +} \ No newline at end of file diff --git a/timecost/c14/realtabformer/rtf-c14-20260501_010151/staged/realtabformer/adapter_transforms_applied.json b/timecost/c14/realtabformer/rtf-c14-20260501_010151/staged/realtabformer/adapter_transforms_applied.json new file mode 100644 index 0000000000000000000000000000000000000000..0637a088a01e8ddab3bf3fa98dbe804cbde1a0dc --- /dev/null +++ b/timecost/c14/realtabformer/rtf-c14-20260501_010151/staged/realtabformer/adapter_transforms_applied.json @@ -0,0 +1 @@ +[] \ No newline at end of file diff --git a/timecost/c14/realtabformer/rtf-c14-20260501_010151/staged/realtabformer/model_input_manifest.json b/timecost/c14/realtabformer/rtf-c14-20260501_010151/staged/realtabformer/model_input_manifest.json new file mode 100644 index 0000000000000000000000000000000000000000..8e2fec189e417d284773a2f8eb33874dc9ca4dd9 --- /dev/null +++ b/timecost/c14/realtabformer/rtf-c14-20260501_010151/staged/realtabformer/model_input_manifest.json @@ -0,0 +1,516 @@ +{ + "dataset_id": "c14", + "model": "realtabformer", + "target_column": "target", + "task_type": "classification", + "column_schema": [ + { + "name": "id", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 20000, + "unique_ratio": 0.083333, + "example_values": [ + "182547", + "28342", + "172611", + "81876", + "110780" + ] + } + }, + { + "name": "bin_0", + "role": "feature", + "semantic_type": "boolean", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 2, + "unique_ratio": 8e-06, + "example_values": [ + "0", + "1" + ] + } + }, + { + "name": "bin_1", + "role": "feature", + "semantic_type": "boolean", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 2, + "unique_ratio": 8e-06, + "example_values": [ + "0", + "1" + ] + } + }, + { + "name": "bin_2", + "role": "feature", + "semantic_type": "boolean", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 2, + "unique_ratio": 8e-06, + "example_values": [ + "0", + "1" + ] + } + }, + { + "name": "bin_3", + "role": "feature", + "semantic_type": "boolean", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 2, + "unique_ratio": 8e-06, + "example_values": [ + "F", + "T" + ] + } + }, + { + "name": "bin_4", + "role": "feature", + "semantic_type": "boolean", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 2, + "unique_ratio": 8e-06, + "example_values": [ + "Y", + "N" + ] + } + }, + { + "name": "nom_0", + "role": "feature", + "semantic_type": "categorical", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 3, + "unique_ratio": 1.3e-05, + "example_values": [ + "Blue", + "Green", + "Red" + ] + } + }, + { + "name": "nom_1", + "role": "feature", + "semantic_type": "categorical", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 6, + "unique_ratio": 2.5e-05, + "example_values": [ + "Trapezoid", + "Polygon", + "Square", + "Star", + "Triangle" + ] + } + }, + { + "name": "nom_2", + "role": "feature", + "semantic_type": "categorical", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 6, + "unique_ratio": 2.5e-05, + "example_values": [ + "Cat", + "Dog", + "Lion", + "Snake", + "Axolotl" + ] + } + }, + { + "name": "nom_3", + "role": "feature", + "semantic_type": "categorical", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 6, + "unique_ratio": 2.5e-05, + "example_values": [ + "China", + "Finland", + "Canada", + "India", + "Russia" + ] + } + }, + { + "name": "nom_4", + "role": "feature", + "semantic_type": "categorical", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 4, + "unique_ratio": 1.7e-05, + "example_values": [ + "Oboe", + "Bassoon", + "Theremin", + "Piano" + ] + } + }, + { + "name": "nom_5", + "role": "feature", + "semantic_type": "categorical", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 222, + "unique_ratio": 0.000925, + "example_values": [ + "c5725677e", + "92190168b", + "dbfb714a4", + "60a44c8f4", + "e70a6270d" + ] + } + }, + { + "name": "nom_6", + "role": "feature", + "semantic_type": "categorical", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 522, + "unique_ratio": 0.002175, + "example_values": [ + "231233ca9", + "79a82b7c0", + "9a70de492", + "cad70d692", + "6d2cd10c5" + ] + } + }, + { + "name": "nom_7", + "role": "feature", + "semantic_type": "categorical", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 1219, + "unique_ratio": 0.005079, + "example_values": [ + "673d3c1c0", + "7ad3e362c", + "fcd030cc2", + "27e8d4511", + "7df1399cb" + ] + } + }, + { + "name": "nom_8", + "role": "feature", + "semantic_type": "categorical", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 2215, + "unique_ratio": 0.009229, + "example_values": [ + "4fbb167ac", + "7d97eba78", + "b886d6c1c", + "a9d35cede", + "fd0041a98" + ] + } + }, + { + "name": "nom_9", + "role": "feature", + "semantic_type": "categorical", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 11927, + "unique_ratio": 0.049696, + "example_values": [ + "1f31c5cc1", + "89539e0fa", + "8a34e794f", + "34760ea8a", + "46b472cdb" + ] + } + }, + { + "name": "ord_0", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 3, + "unique_ratio": 1.3e-05, + "example_values": [ + "1", + "2", + "3" + ] + } + }, + { + "name": "ord_1", + "role": "feature", + "semantic_type": "categorical", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 5, + "unique_ratio": 2.1e-05, + "example_values": [ + "Grandmaster", + "Contributor", + "Novice", + "Master", + "Expert" + ] + } + }, + { + "name": "ord_2", + "role": "feature", + "semantic_type": "categorical", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 6, + "unique_ratio": 2.5e-05, + "example_values": [ + "Lava Hot", + "Boiling Hot", + "Freezing", + "Hot", + "Cold" + ] + } + }, + { + "name": "ord_3", + "role": "feature", + "semantic_type": "categorical", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 15, + "unique_ratio": 6.3e-05, + "example_values": [ + "g", + "j", + "l", + "f", + "k" + ] + } + }, + { + "name": "ord_4", + "role": "feature", + "semantic_type": "categorical", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 26, + "unique_ratio": 0.000108, + "example_values": [ + "L", + "S", + "K", + "I", + "A" + ] + } + }, + { + "name": "ord_5", + "role": "feature", + "semantic_type": "categorical", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 192, + "unique_ratio": 0.0008, + "example_values": [ + "qo", + "aM", + "AP", + "fO", + "hh" + ] + } + }, + { + "name": "day", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 7, + "unique_ratio": 2.9e-05, + "example_values": [ + "1", + "2", + "7", + "4", + "3" + ] + } + }, + { + "name": "month", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 12, + "unique_ratio": 5e-05, + "example_values": [ + "12", + "4", + "8", + "2", + "9" + ] + } + }, + { + "name": "target", + "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": 8e-06, + "example_values": [ + "0", + "1" + ] + } + } + ], + "public_manifest": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/c14/realtabformer/rtf-c14-20260501_010151/public_gate/staged_input_manifest.json", + "train_csv": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/c14/realtabformer/rtf-c14-20260501_010151/staged/public/train.csv", + "val_csv": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/c14/realtabformer/rtf-c14-20260501_010151/staged/public/val.csv", + "test_csv": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/c14/realtabformer/rtf-c14-20260501_010151/staged/public/test.csv", + "features_json": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/c14/realtabformer/rtf-c14-20260501_010151/staged/public/staged_features.json", + "public_gate_report": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/c14/realtabformer/rtf-c14-20260501_010151/public_gate/public_gate_report.json" +} \ No newline at end of file diff --git a/timecost/c14/realtabformer/rtf-c14-20260501_010151/train_20260501_010155.log b/timecost/c14/realtabformer/rtf-c14-20260501_010151/train_20260501_010155.log new file mode 100644 index 0000000000000000000000000000000000000000..0e775321adefeb41175f73f8bddb6c8b9824ca5d --- /dev/null +++ b/timecost/c14/realtabformer/rtf-c14-20260501_010151/train_20260501_010155.log @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:95effa42ea2bd7eee0ab1eed2f1870b9c9b4c7219215424999e534bc789ad72e +size 30169849 diff --git a/timecost/c14/tabddpm/tabddpm-c14-20260504_065427/_tabddpm_sample_r0.py b/timecost/c14/tabddpm/tabddpm-c14-20260504_065427/_tabddpm_sample_r0.py new file mode 100644 index 0000000000000000000000000000000000000000..cb06fa579f45d6328251245aec686c3541ab8513 --- /dev/null +++ b/timecost/c14/tabddpm/tabddpm-c14-20260504_065427/_tabddpm_sample_r0.py @@ -0,0 +1,66 @@ +import os, sys, subprocess, json +import numpy as np +import pandas as pd + +tabddpm_root = "/workspace/tabddpm/code" +assert os.path.isdir(tabddpm_root), f"TabDDPM source not mounted: {tabddpm_root}" +env = os.environ.copy() +env["PYTHONPATH"] = tabddpm_root + (os.pathsep + env.get("PYTHONPATH", "")) + +# Reuse the compat wrapper (patches collections.Sequence for skorch) +wrapper = os.path.join(tabddpm_root, "_compat_run.py") +if not os.path.exists(wrapper): + with open(wrapper, "w") as f: + f.write( + "import collections, collections.abc\n" + "for _a in ('Sequence','MutableSequence','MutableMapping','Mapping'," + "'MutableSet','Set','Callable','Iterable','Iterator'):\n" + " if not hasattr(collections, _a): setattr(collections, _a, getattr(collections.abc, _a, None))\n" + "import sys, runpy\n" + "sys.argv = sys.argv[1:]\n" + "runpy.run_path(sys.argv[0], run_name='__main__')\n" + ) + +print(f"[TabDDPM] Sampling 64 rows") +ret = subprocess.run( + [sys.executable, wrapper, "scripts/pipeline.py", + "--config", "/work/output-Benchmark-trainonly-v1/c14/tabddpm/tabddpm-c14-20260504_065427/config_sample_20260504_065452_r0.toml", + "--sample"], + cwd=tabddpm_root, + env=env +) +if ret.returncode != 0: + sys.exit(ret.returncode) + +# 将 .npy 输出转为 CSV(npy 在 TabDDPM 的 parent_dir,即 npy_dir) +info_path = "/work/output-Benchmark-trainonly-v1/c14/tabddpm/tabddpm-c14-20260504_065427/data/info.json" +with open(info_path) as f: + info = json.load(f) + +output_dir = "/work/output-Benchmark-trainonly-v1/c14/tabddpm/tabddpm-c14-20260504_065427/output" +col_names = info.get("column_names", []) + +parts = [] +x_num_path = os.path.join(output_dir, "X_num_train.npy") +x_cat_path = os.path.join(output_dir, "X_cat_train.npy") +y_path = os.path.join(output_dir, "y_train.npy") + +if os.path.exists(x_num_path): + parts.append(np.load(x_num_path, allow_pickle=True)) +if os.path.exists(x_cat_path): + parts.append(np.load(x_cat_path, allow_pickle=True).astype(float)) +if os.path.exists(y_path): + y = np.load(y_path, allow_pickle=True) + parts.append(y.reshape(-1, 1) if y.ndim == 1 else y) + +if parts: + combined = np.concatenate(parts, axis=1) + if col_names and len(col_names) == combined.shape[1]: + df = pd.DataFrame(combined, columns=col_names) + else: + df = pd.DataFrame(combined) + df.to_csv("/work/output-Benchmark-trainonly-v1/c14/tabddpm/tabddpm-c14-20260504_065427/tabddpm-c14-64-20260504_065452.csv", index=False) + print(f"[TabDDPM] Saved {len(df)} rows -> /work/output-Benchmark-trainonly-v1/c14/tabddpm/tabddpm-c14-20260504_065427/tabddpm-c14-64-20260504_065452.csv") +else: + print("[TabDDPM] WARNING: No output .npy files found") + sys.exit(1) diff --git a/timecost/c14/tabddpm/tabddpm-c14-20260504_065427/_tabddpm_train.py b/timecost/c14/tabddpm/tabddpm-c14-20260504_065427/_tabddpm_train.py new file mode 100644 index 0000000000000000000000000000000000000000..461eed0952d2d42a0430f8109ec4ed8b632b7bae --- /dev/null +++ b/timecost/c14/tabddpm/tabddpm-c14-20260504_065427/_tabddpm_train.py @@ -0,0 +1,32 @@ +import os, sys, subprocess + +tabddpm_root = "/workspace/tabddpm/code" +assert os.path.isdir(tabddpm_root), f"TabDDPM source not mounted: {tabddpm_root}" +env = os.environ.copy() +env["PYTHONPATH"] = tabddpm_root + (os.pathsep + env.get("PYTHONPATH", "")) + +# Write a wrapper that patches collections.Sequence (removed in Python 3.10+) +# before running pipeline.py - needed because skorch uses old API +wrapper = os.path.join(tabddpm_root, "_compat_run.py") +with open(wrapper, "w") as f: + f.write( + "import collections, collections.abc\n" + "for _a in ('Sequence','MutableSequence','MutableMapping','Mapping'," + "'MutableSet','Set','Callable','Iterable','Iterator'):\n" + " if not hasattr(collections, _a): setattr(collections, _a, getattr(collections.abc, _a, None))\n" + "import sys, runpy\n" + "sys.argv = sys.argv[1:]\n" + "runpy.run_path(sys.argv[0], run_name='__main__')\n" + ) + +print(f"[TabDDPM] Training, config=/work/output-Benchmark-trainonly-v1/c14/tabddpm/tabddpm-c14-20260504_065427/config.toml") +ret = subprocess.run( + [sys.executable, wrapper, "scripts/pipeline.py", + "--config", "/work/output-Benchmark-trainonly-v1/c14/tabddpm/tabddpm-c14-20260504_065427/config.toml", + "--train"], + cwd=tabddpm_root, + env=env +) +if ret.returncode != 0: + sys.exit(ret.returncode) +print("[TabDDPM] Training complete") diff --git a/timecost/c14/tabddpm/tabddpm-c14-20260504_065427/config.toml b/timecost/c14/tabddpm/tabddpm-c14-20260504_065427/config.toml new file mode 100644 index 0000000000000000000000000000000000000000..c11dc56c739676ebf5e8730a260d3b4fa0f3c568 --- /dev/null +++ b/timecost/c14/tabddpm/tabddpm-c14-20260504_065427/config.toml @@ -0,0 +1,39 @@ +seed = 0 +parent_dir = "/work/output-Benchmark-trainonly-v1/c14/tabddpm/tabddpm-c14-20260504_065427/output" +real_data_path = "/work/output-Benchmark-trainonly-v1/c14/tabddpm/tabddpm-c14-20260504_065427/data" +model_type = "mlp" +num_numerical_features = 4 +device = "cuda:0" + +[model_params] +d_in = 24 +num_classes = 2 +is_y_cond = true + +[model_params.rtdl_params] +d_layers = [256, 256] +dropout = 0.0 + +[diffusion_params] +num_timesteps = 20 +gaussian_loss_type = "mse" + +[train.main] +steps = 10 +lr = 0.0002 +weight_decay = 0.0 +batch_size = 32 + +[train.T] +seed = 0 +normalization = "quantile" +num_nan_policy = "__none__" +cat_nan_policy = "__none__" +cat_min_frequency = "__none__" +cat_encoding = "__none__" +y_policy = "default" + +[sample] +num_samples = 1000 +batch_size = 16 +seed = 0 diff --git a/timecost/c14/tabddpm/tabddpm-c14-20260504_065427/config_sample_20260504_065452_r0.toml b/timecost/c14/tabddpm/tabddpm-c14-20260504_065427/config_sample_20260504_065452_r0.toml new file mode 100644 index 0000000000000000000000000000000000000000..a34a6d1218716339d8b107b13476c7b23534b5de --- /dev/null +++ b/timecost/c14/tabddpm/tabddpm-c14-20260504_065427/config_sample_20260504_065452_r0.toml @@ -0,0 +1,39 @@ +seed = 0 +parent_dir = "/work/output-Benchmark-trainonly-v1/c14/tabddpm/tabddpm-c14-20260504_065427/output" +real_data_path = "/work/output-Benchmark-trainonly-v1/c14/tabddpm/tabddpm-c14-20260504_065427/data" +model_type = "mlp" +num_numerical_features = 4 +device = "cuda:0" + +[model_params] +d_in = 24 +num_classes = 2 +is_y_cond = true + +[model_params.rtdl_params] +d_layers = [256, 256] +dropout = 0.0 + +[diffusion_params] +num_timesteps = 20 +gaussian_loss_type = "mse" + +[train.main] +steps = 10 +lr = 0.0002 +weight_decay = 0.0 +batch_size = 32 + +[train.T] +seed = 0 +normalization = "quantile" +num_nan_policy = "__none__" +cat_nan_policy = "__none__" +cat_min_frequency = "__none__" +cat_encoding = "__none__" +y_policy = "default" + +[sample] +num_samples = 64 +batch_size = 16 +seed = 0 diff --git a/timecost/c14/tabddpm/tabddpm-c14-20260504_065427/data/X_cat_train.npy b/timecost/c14/tabddpm/tabddpm-c14-20260504_065427/data/X_cat_train.npy new file mode 100644 index 0000000000000000000000000000000000000000..98bd909f2c6e01569b889e7013b55bfd9382349a --- /dev/null +++ b/timecost/c14/tabddpm/tabddpm-c14-20260504_065427/data/X_cat_train.npy @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:4db5fc039c0a3755f8187753d8ff1576d6ae627c7fdd403f3fa38914bed677b0 +size 38400128 diff --git a/timecost/c14/tabddpm/tabddpm-c14-20260504_065427/data/X_num_train.npy b/timecost/c14/tabddpm/tabddpm-c14-20260504_065427/data/X_num_train.npy new file mode 100644 index 0000000000000000000000000000000000000000..c3499d15139a46785b9614e79d47ee35f58034ea --- /dev/null +++ b/timecost/c14/tabddpm/tabddpm-c14-20260504_065427/data/X_num_train.npy @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:3026532dc1e8f61b12f8f829ec618733e69f9da70d40e8234069ff10f3381878 +size 3840128 diff --git a/timecost/c14/tabddpm/tabddpm-c14-20260504_065427/data/info.json b/timecost/c14/tabddpm/tabddpm-c14-20260504_065427/data/info.json new file mode 100644 index 0000000000000000000000000000000000000000..8a8e11470b72a91d7b64abf61605d2950b47c043 --- /dev/null +++ b/timecost/c14/tabddpm/tabddpm-c14-20260504_065427/data/info.json @@ -0,0 +1,66 @@ +{ + "name": "benchmark_dataset", + "task_type": "multiclass", + "n_num_features": 4, + "n_cat_features": 20, + "train_size": 240000, + "num_col_idx": [ + 0, + 1, + 2, + 3 + ], + "cat_col_idx": [ + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13, + 14, + 15, + 16, + 17, + 18, + 19, + 20, + 21, + 22, + 23 + ], + "target_col_idx": [ + 24 + ], + "column_names": [ + "id", + "ord_0", + "day", + "month", + "bin_0", + "bin_1", + "bin_2", + "bin_3", + "bin_4", + "nom_0", + "nom_1", + "nom_2", + "nom_3", + "nom_4", + "nom_5", + "nom_6", + "nom_7", + "nom_8", + "nom_9", + "ord_1", + "ord_2", + "ord_3", + "ord_4", + "ord_5", + "target" + ], + "num_classes": 2 +} \ No newline at end of file diff --git a/timecost/c14/tabddpm/tabddpm-c14-20260504_065427/data/y_train.npy b/timecost/c14/tabddpm/tabddpm-c14-20260504_065427/data/y_train.npy new file mode 100644 index 0000000000000000000000000000000000000000..b819b291ffd95c81962c168db9cfbe50216f7e27 --- /dev/null +++ b/timecost/c14/tabddpm/tabddpm-c14-20260504_065427/data/y_train.npy @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:0f723b0138e622255ce8db1d27cf9b51554364c371989801193edd4c87fc0921 +size 1920128 diff --git a/timecost/c14/tabddpm/tabddpm-c14-20260504_065427/gen_20260504_065452_r0.log b/timecost/c14/tabddpm/tabddpm-c14-20260504_065427/gen_20260504_065452_r0.log new file mode 100644 index 0000000000000000000000000000000000000000..53967c85007a721b7539ce59ef2ac973d05d9d31 --- /dev/null +++ b/timecost/c14/tabddpm/tabddpm-c14-20260504_065427/gen_20260504_065452_r0.log @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:695cf8af613b43265146648fd64228ee3e21fa638e15db6482d48744931167b3 +size 2184 diff --git a/timecost/c14/tabddpm/tabddpm-c14-20260504_065427/input_snapshot.json b/timecost/c14/tabddpm/tabddpm-c14-20260504_065427/input_snapshot.json new file mode 100644 index 0000000000000000000000000000000000000000..ea0c43c127d28069f31b094ecbc9671fb82b3fa4 --- /dev/null +++ b/timecost/c14/tabddpm/tabddpm-c14-20260504_065427/input_snapshot.json @@ -0,0 +1,36 @@ +{ + "dataset_id": "c14", + "model": "tabddpm", + "inputs": { + "train_csv": { + "path": "/data/jialinzhang/SynthesizePipeline-server/DatasetNew/c14/c14-train.csv", + "exists": true, + "size": 31957080, + "sha256": "4a11abde6a7fae9f8bb1a1d7e31035b9dd61587d2721749a52d78d65441fba5e" + }, + "val_csv": { + "path": "/data/jialinzhang/SynthesizePipeline-server/DatasetNew/c14/c14-val.csv", + "exists": true, + "size": 3995920, + "sha256": "b04d723eeb59d339a356302660463c129141b4213fefbf472ef48f8a4daa50c9" + }, + "test_csv": { + "path": "/data/jialinzhang/SynthesizePipeline-server/DatasetNew/c14/c14-test.csv", + "exists": true, + "size": 3995840, + "sha256": "4780b90e46f6b440983cc9315cad8bca0e86bd26d8877ffae7111258fba0a132" + }, + "profile_json": { + "path": "/data/jialinzhang/SynthesizePipeline-server/DatasetNew/artifacts/data_core/tabular/c14/c14-dataset_profile.json", + "exists": true, + "size": 9505, + "sha256": "577cc5830dcb336243555d3d41c06e2e7c0a63df2a9caccb7a0411b9332cde15" + }, + "contract_json": { + "path": "/data/jialinzhang/SynthesizePipeline-server/DatasetNew/artifacts/data_core/tabular/c14/c14-dataset_contract_v1.json", + "exists": true, + "size": 11901, + "sha256": "955197dff3346d55aaa999adf98d64c375a7e4ca9bc4bcfe626499c9cfea9a41" + } + } +} \ No newline at end of file diff --git a/timecost/c14/tabddpm/tabddpm-c14-20260504_065427/output/X_cat_train.npy b/timecost/c14/tabddpm/tabddpm-c14-20260504_065427/output/X_cat_train.npy new file mode 100644 index 0000000000000000000000000000000000000000..b0ae81d4ab9916fcedb99981ea40a98b585f4290 --- /dev/null +++ b/timecost/c14/tabddpm/tabddpm-c14-20260504_065427/output/X_cat_train.npy @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:0525c722b91cba36c0831572179be3186407ef8b60699c73d1db3235ad66cafc +size 10563089 diff --git a/timecost/c14/tabddpm/tabddpm-c14-20260504_065427/output/X_cat_unnorm.npy b/timecost/c14/tabddpm/tabddpm-c14-20260504_065427/output/X_cat_unnorm.npy new file mode 100644 index 0000000000000000000000000000000000000000..2cf2cb7f38bcf89aded27dc1b662b80aa487c8f3 --- /dev/null +++ b/timecost/c14/tabddpm/tabddpm-c14-20260504_065427/output/X_cat_unnorm.npy @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:f1dece989b36efca22cf4e5baae60c0ef3e172ce65dea0a6609c1be5ed05bcf0 +size 38400128 diff --git a/timecost/c14/tabddpm/tabddpm-c14-20260504_065427/output/X_num_train.npy b/timecost/c14/tabddpm/tabddpm-c14-20260504_065427/output/X_num_train.npy new file mode 100644 index 0000000000000000000000000000000000000000..1c622ba7c2dd1168226f259e381e56f0171a2ddf --- /dev/null +++ b/timecost/c14/tabddpm/tabddpm-c14-20260504_065427/output/X_num_train.npy @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:0b9964f1d8206d565941173f42721769f18a3d146858c935b59540b135e47c48 +size 7680128 diff --git a/timecost/c14/tabddpm/tabddpm-c14-20260504_065427/output/X_num_unnorm.npy b/timecost/c14/tabddpm/tabddpm-c14-20260504_065427/output/X_num_unnorm.npy new file mode 100644 index 0000000000000000000000000000000000000000..aa45876869954f4cfee0c31590088e7e732184f1 --- /dev/null +++ b/timecost/c14/tabddpm/tabddpm-c14-20260504_065427/output/X_num_unnorm.npy @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:6dbb98a39aa52b3a1cd28c20cd2b7d965e10f0eee7ad1089b92c48a22597c9bc +size 7680128 diff --git a/timecost/c14/tabddpm/tabddpm-c14-20260504_065427/output/config.toml b/timecost/c14/tabddpm/tabddpm-c14-20260504_065427/output/config.toml new file mode 100644 index 0000000000000000000000000000000000000000..21651add67b41409ae6450161c3a9a5b97ac485e --- /dev/null +++ b/timecost/c14/tabddpm/tabddpm-c14-20260504_065427/output/config.toml @@ -0,0 +1,39 @@ +seed = 0 +parent_dir = "/work/output-Benchmark-trainonly-v1/c14/tabddpm/tabddpm-c14-20260504_065427/output" +real_data_path = "/work/output-Benchmark-trainonly-v1/c14/tabddpm/tabddpm-c14-20260504_065427/data" +model_type = "mlp" +num_numerical_features = 4 +device = "cuda:0" + +[model_params] +d_in = 24 +num_classes = 2 +is_y_cond = true + +[model_params.rtdl_params] +d_layers = [256, 256] +dropout = 0.0 + +[diffusion_params] +num_timesteps = 20 +gaussian_loss_type = "mse" + +[train.main] +steps = 10 +lr = 0.0002 +weight_decay = 0.0 +batch_size = 32 + +[train.T] +seed = 0 +normalization = "quantile" +num_nan_policy = "__none__" +cat_nan_policy = "__none__" +cat_min_frequency = "__none__" +cat_encoding = "__none__" +y_policy = "default" + +[sample] +num_samples = 240000 +batch_size = 256 +seed = 100 diff --git a/timecost/c14/tabddpm/tabddpm-c14-20260504_065427/output/info.json b/timecost/c14/tabddpm/tabddpm-c14-20260504_065427/output/info.json new file mode 100644 index 0000000000000000000000000000000000000000..8a8e11470b72a91d7b64abf61605d2950b47c043 --- /dev/null +++ b/timecost/c14/tabddpm/tabddpm-c14-20260504_065427/output/info.json @@ -0,0 +1,66 @@ +{ + "name": "benchmark_dataset", + "task_type": "multiclass", + "n_num_features": 4, + "n_cat_features": 20, + "train_size": 240000, + "num_col_idx": [ + 0, + 1, + 2, + 3 + ], + "cat_col_idx": [ + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13, + 14, + 15, + 16, + 17, + 18, + 19, + 20, + 21, + 22, + 23 + ], + "target_col_idx": [ + 24 + ], + "column_names": [ + "id", + "ord_0", + "day", + "month", + "bin_0", + "bin_1", + "bin_2", + "bin_3", + "bin_4", + "nom_0", + "nom_1", + "nom_2", + "nom_3", + "nom_4", + "nom_5", + "nom_6", + "nom_7", + "nom_8", + "nom_9", + "ord_1", + "ord_2", + "ord_3", + "ord_4", + "ord_5", + "target" + ], + "num_classes": 2 +} \ No newline at end of file diff --git a/timecost/c14/tabddpm/tabddpm-c14-20260504_065427/output/loss.csv b/timecost/c14/tabddpm/tabddpm-c14-20260504_065427/output/loss.csv new file mode 100644 index 0000000000000000000000000000000000000000..6c97dc92798de938821bb62e2cea707c30815bf6 --- /dev/null +++ b/timecost/c14/tabddpm/tabddpm-c14-20260504_065427/output/loss.csv @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:114167791de8424a566cb4066269253a657fc0178f535ead359a681058fe5294 +size 22 diff --git a/timecost/c14/tabddpm/tabddpm-c14-20260504_065427/output/model.pt b/timecost/c14/tabddpm/tabddpm-c14-20260504_065427/output/model.pt new file mode 100644 index 0000000000000000000000000000000000000000..f093143c2b8b6a08ba4656af3404443437b6c1ff --- /dev/null +++ b/timecost/c14/tabddpm/tabddpm-c14-20260504_065427/output/model.pt @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:8bdacd26e39a46a98cd3151e5eab7e6a1e4e8ff458e702d5bb664d6fc12211bd +size 25771094 diff --git a/timecost/c14/tabddpm/tabddpm-c14-20260504_065427/output/model_ema.pt b/timecost/c14/tabddpm/tabddpm-c14-20260504_065427/output/model_ema.pt new file mode 100644 index 0000000000000000000000000000000000000000..3e369e8bf25c756d0b896e886e23d55f9c3eeb95 --- /dev/null +++ b/timecost/c14/tabddpm/tabddpm-c14-20260504_065427/output/model_ema.pt @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:8502a2ed8fe73bb7080007d05c4249e8fd0656ddd5673ca9a71e6d1a112e06af +size 25771938 diff --git a/timecost/c14/tabddpm/tabddpm-c14-20260504_065427/output/y_train.npy b/timecost/c14/tabddpm/tabddpm-c14-20260504_065427/output/y_train.npy new file mode 100644 index 0000000000000000000000000000000000000000..a97c819d4ef42be3ac7e4fe0e01e257986bd14c0 --- /dev/null +++ b/timecost/c14/tabddpm/tabddpm-c14-20260504_065427/output/y_train.npy @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:13def3477a4b6f182b34da14acfe30d3e89001c89963dfad583672e707fecc21 +size 1920128 diff --git a/timecost/c14/tabddpm/tabddpm-c14-20260504_065427/public_gate/normalized_schema_snapshot.json b/timecost/c14/tabddpm/tabddpm-c14-20260504_065427/public_gate/normalized_schema_snapshot.json new file mode 100644 index 0000000000000000000000000000000000000000..c43047a97cac9542e79dfa127e651be7146aa2a4 --- /dev/null +++ b/timecost/c14/tabddpm/tabddpm-c14-20260504_065427/public_gate/normalized_schema_snapshot.json @@ -0,0 +1,509 @@ +{ + "dataset_id": "c14", + "target_column": "target", + "task_type": "classification", + "columns": [ + { + "name": "id", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 20000, + "unique_ratio": 0.083333, + "example_values": [ + "182547", + "28342", + "172611", + "81876", + "110780" + ] + } + }, + { + "name": "bin_0", + "role": "feature", + "semantic_type": "boolean", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 2, + "unique_ratio": 8e-06, + "example_values": [ + "0", + "1" + ] + } + }, + { + "name": "bin_1", + "role": "feature", + "semantic_type": "boolean", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 2, + "unique_ratio": 8e-06, + "example_values": [ + "0", + "1" + ] + } + }, + { + "name": "bin_2", + "role": "feature", + "semantic_type": "boolean", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 2, + "unique_ratio": 8e-06, + "example_values": [ + "0", + "1" + ] + } + }, + { + "name": "bin_3", + "role": "feature", + "semantic_type": "boolean", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 2, + "unique_ratio": 8e-06, + "example_values": [ + "F", + "T" + ] + } + }, + { + "name": "bin_4", + "role": "feature", + "semantic_type": "boolean", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 2, + "unique_ratio": 8e-06, + "example_values": [ + "Y", + "N" + ] + } + }, + { + "name": "nom_0", + "role": "feature", + "semantic_type": "categorical", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 3, + "unique_ratio": 1.3e-05, + "example_values": [ + "Blue", + "Green", + "Red" + ] + } + }, + { + "name": "nom_1", + "role": "feature", + "semantic_type": "categorical", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 6, + "unique_ratio": 2.5e-05, + "example_values": [ + "Trapezoid", + "Polygon", + "Square", + "Star", + "Triangle" + ] + } + }, + { + "name": "nom_2", + "role": "feature", + "semantic_type": "categorical", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 6, + "unique_ratio": 2.5e-05, + "example_values": [ + "Cat", + "Dog", + "Lion", + "Snake", + "Axolotl" + ] + } + }, + { + "name": "nom_3", + "role": "feature", + "semantic_type": "categorical", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 6, + "unique_ratio": 2.5e-05, + "example_values": [ + "China", + "Finland", + "Canada", + "India", + "Russia" + ] + } + }, + { + "name": "nom_4", + "role": "feature", + "semantic_type": "categorical", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 4, + "unique_ratio": 1.7e-05, + "example_values": [ + "Oboe", + "Bassoon", + "Theremin", + "Piano" + ] + } + }, + { + "name": "nom_5", + "role": "feature", + "semantic_type": "categorical", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 222, + "unique_ratio": 0.000925, + "example_values": [ + "c5725677e", + "92190168b", + "dbfb714a4", + "60a44c8f4", + "e70a6270d" + ] + } + }, + { + "name": "nom_6", + "role": "feature", + "semantic_type": "categorical", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 522, + "unique_ratio": 0.002175, + "example_values": [ + "231233ca9", + "79a82b7c0", + "9a70de492", + "cad70d692", + "6d2cd10c5" + ] + } + }, + { + "name": "nom_7", + "role": "feature", + "semantic_type": "categorical", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 1219, + "unique_ratio": 0.005079, + "example_values": [ + "673d3c1c0", + "7ad3e362c", + "fcd030cc2", + "27e8d4511", + "7df1399cb" + ] + } + }, + { + "name": "nom_8", + "role": "feature", + "semantic_type": "categorical", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 2215, + "unique_ratio": 0.009229, + "example_values": [ + "4fbb167ac", + "7d97eba78", + "b886d6c1c", + "a9d35cede", + "fd0041a98" + ] + } + }, + { + "name": "nom_9", + "role": "feature", + "semantic_type": "categorical", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 11927, + "unique_ratio": 0.049696, + "example_values": [ + "1f31c5cc1", + "89539e0fa", + "8a34e794f", + "34760ea8a", + "46b472cdb" + ] + } + }, + { + "name": "ord_0", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 3, + "unique_ratio": 1.3e-05, + "example_values": [ + "1", + "2", + "3" + ] + } + }, + { + "name": "ord_1", + "role": "feature", + "semantic_type": "categorical", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 5, + "unique_ratio": 2.1e-05, + "example_values": [ + "Grandmaster", + "Contributor", + "Novice", + "Master", + "Expert" + ] + } + }, + { + "name": "ord_2", + "role": "feature", + "semantic_type": "categorical", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 6, + "unique_ratio": 2.5e-05, + "example_values": [ + "Lava Hot", + "Boiling Hot", + "Freezing", + "Hot", + "Cold" + ] + } + }, + { + "name": "ord_3", + "role": "feature", + "semantic_type": "categorical", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 15, + "unique_ratio": 6.3e-05, + "example_values": [ + "g", + "j", + "l", + "f", + "k" + ] + } + }, + { + "name": "ord_4", + "role": "feature", + "semantic_type": "categorical", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 26, + "unique_ratio": 0.000108, + "example_values": [ + "L", + "S", + "K", + "I", + "A" + ] + } + }, + { + "name": "ord_5", + "role": "feature", + "semantic_type": "categorical", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 192, + "unique_ratio": 0.0008, + "example_values": [ + "qo", + "aM", + "AP", + "fO", + "hh" + ] + } + }, + { + "name": "day", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 7, + "unique_ratio": 2.9e-05, + "example_values": [ + "1", + "2", + "7", + "4", + "3" + ] + } + }, + { + "name": "month", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 12, + "unique_ratio": 5e-05, + "example_values": [ + "12", + "4", + "8", + "2", + "9" + ] + } + }, + { + "name": "target", + "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": 8e-06, + "example_values": [ + "0", + "1" + ] + } + } + ] +} \ No newline at end of file diff --git a/timecost/c14/tabddpm/tabddpm-c14-20260504_065427/public_gate/public_gate_report.json b/timecost/c14/tabddpm/tabddpm-c14-20260504_065427/public_gate/public_gate_report.json new file mode 100644 index 0000000000000000000000000000000000000000..9374818599b8101d02e793ea785975d77363e3fd --- /dev/null +++ b/timecost/c14/tabddpm/tabddpm-c14-20260504_065427/public_gate/public_gate_report.json @@ -0,0 +1,37 @@ +{ + "dataset_id": "c14", + "status": "pass", + "checks": [ + { + "check_id": "PG001_csv_parse_ok", + "status": "pass" + }, + { + "check_id": "PG002_split_header_consistent", + "status": "pass" + }, + { + "check_id": "PG003_profile_header_match", + "status": "pass" + }, + { + "check_id": "PG004_missing_token_normalized", + "status": "pass" + }, + { + "check_id": "PG005_semantic_type_validated", + "status": "pass" + }, + { + "check_id": "PG006_target_defined_and_valid", + "status": "pass" + } + ], + "target_column": "target", + "task_type": "classification", + "input_splits": { + "train": "/data/jialinzhang/SynthesizePipeline-server/DatasetNew/c14/c14-train.csv", + "val": "/data/jialinzhang/SynthesizePipeline-server/DatasetNew/c14/c14-val.csv", + "test": "/data/jialinzhang/SynthesizePipeline-server/DatasetNew/c14/c14-test.csv" + } +} \ No newline at end of file diff --git a/timecost/c14/tabddpm/tabddpm-c14-20260504_065427/public_gate/staged_input_manifest.json b/timecost/c14/tabddpm/tabddpm-c14-20260504_065427/public_gate/staged_input_manifest.json new file mode 100644 index 0000000000000000000000000000000000000000..9f05697597e827d95d0faac4953c3d7aa626c8ad --- /dev/null +++ b/timecost/c14/tabddpm/tabddpm-c14-20260504_065427/public_gate/staged_input_manifest.json @@ -0,0 +1,514 @@ +{ + "dataset_id": "c14", + "target_column": "target", + "task_type": "classification", + "train_csv": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/c14/tabddpm/tabddpm-c14-20260504_065427/staged/public/train.csv", + "val_csv": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/c14/tabddpm/tabddpm-c14-20260504_065427/staged/public/val.csv", + "test_csv": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/c14/tabddpm/tabddpm-c14-20260504_065427/staged/public/test.csv", + "features_json": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/c14/tabddpm/tabddpm-c14-20260504_065427/staged/public/staged_features.json", + "public_gate_report": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/c14/tabddpm/tabddpm-c14-20260504_065427/public_gate/public_gate_report.json", + "column_schema": [ + { + "name": "id", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 20000, + "unique_ratio": 0.083333, + "example_values": [ + "182547", + "28342", + "172611", + "81876", + "110780" + ] + } + }, + { + "name": "bin_0", + "role": "feature", + "semantic_type": "boolean", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 2, + "unique_ratio": 8e-06, + "example_values": [ + "0", + "1" + ] + } + }, + { + "name": "bin_1", + "role": "feature", + "semantic_type": "boolean", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 2, + "unique_ratio": 8e-06, + "example_values": [ + "0", + "1" + ] + } + }, + { + "name": "bin_2", + "role": "feature", + "semantic_type": "boolean", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 2, + "unique_ratio": 8e-06, + "example_values": [ + "0", + "1" + ] + } + }, + { + "name": "bin_3", + "role": "feature", + "semantic_type": "boolean", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 2, + "unique_ratio": 8e-06, + "example_values": [ + "F", + "T" + ] + } + }, + { + "name": "bin_4", + "role": "feature", + "semantic_type": "boolean", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 2, + "unique_ratio": 8e-06, + "example_values": [ + "Y", + "N" + ] + } + }, + { + "name": "nom_0", + "role": "feature", + "semantic_type": "categorical", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 3, + "unique_ratio": 1.3e-05, + "example_values": [ + "Blue", + "Green", + "Red" + ] + } + }, + { + "name": "nom_1", + "role": "feature", + "semantic_type": "categorical", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 6, + "unique_ratio": 2.5e-05, + "example_values": [ + "Trapezoid", + "Polygon", + "Square", + "Star", + "Triangle" + ] + } + }, + { + "name": "nom_2", + "role": "feature", + "semantic_type": "categorical", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 6, + "unique_ratio": 2.5e-05, + "example_values": [ + "Cat", + "Dog", + "Lion", + "Snake", + "Axolotl" + ] + } + }, + { + "name": "nom_3", + "role": "feature", + "semantic_type": "categorical", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 6, + "unique_ratio": 2.5e-05, + "example_values": [ + "China", + "Finland", + "Canada", + "India", + "Russia" + ] + } + }, + { + "name": "nom_4", + "role": "feature", + "semantic_type": "categorical", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 4, + "unique_ratio": 1.7e-05, + "example_values": [ + "Oboe", + "Bassoon", + "Theremin", + "Piano" + ] + } + }, + { + "name": "nom_5", + "role": "feature", + "semantic_type": "categorical", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 222, + "unique_ratio": 0.000925, + "example_values": [ + "c5725677e", + "92190168b", + "dbfb714a4", + "60a44c8f4", + "e70a6270d" + ] + } + }, + { + "name": "nom_6", + "role": "feature", + "semantic_type": "categorical", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 522, + "unique_ratio": 0.002175, + "example_values": [ + "231233ca9", + "79a82b7c0", + "9a70de492", + "cad70d692", + "6d2cd10c5" + ] + } + }, + { + "name": "nom_7", + "role": "feature", + "semantic_type": "categorical", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 1219, + "unique_ratio": 0.005079, + "example_values": [ + "673d3c1c0", + "7ad3e362c", + "fcd030cc2", + "27e8d4511", + "7df1399cb" + ] + } + }, + { + "name": "nom_8", + "role": "feature", + "semantic_type": "categorical", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 2215, + "unique_ratio": 0.009229, + "example_values": [ + "4fbb167ac", + "7d97eba78", + "b886d6c1c", + "a9d35cede", + "fd0041a98" + ] + } + }, + { + "name": "nom_9", + "role": "feature", + "semantic_type": "categorical", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 11927, + "unique_ratio": 0.049696, + "example_values": [ + "1f31c5cc1", + "89539e0fa", + "8a34e794f", + "34760ea8a", + "46b472cdb" + ] + } + }, + { + "name": "ord_0", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 3, + "unique_ratio": 1.3e-05, + "example_values": [ + "1", + "2", + "3" + ] + } + }, + { + "name": "ord_1", + "role": "feature", + "semantic_type": "categorical", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 5, + "unique_ratio": 2.1e-05, + "example_values": [ + "Grandmaster", + "Contributor", + "Novice", + "Master", + "Expert" + ] + } + }, + { + "name": "ord_2", + "role": "feature", + "semantic_type": "categorical", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 6, + "unique_ratio": 2.5e-05, + "example_values": [ + "Lava Hot", + "Boiling Hot", + "Freezing", + "Hot", + "Cold" + ] + } + }, + { + "name": "ord_3", + "role": "feature", + "semantic_type": "categorical", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 15, + "unique_ratio": 6.3e-05, + "example_values": [ + "g", + "j", + "l", + "f", + "k" + ] + } + }, + { + "name": "ord_4", + "role": "feature", + "semantic_type": "categorical", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 26, + "unique_ratio": 0.000108, + "example_values": [ + "L", + "S", + "K", + "I", + "A" + ] + } + }, + { + "name": "ord_5", + "role": "feature", + "semantic_type": "categorical", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 192, + "unique_ratio": 0.0008, + "example_values": [ + "qo", + "aM", + "AP", + "fO", + "hh" + ] + } + }, + { + "name": "day", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 7, + "unique_ratio": 2.9e-05, + "example_values": [ + "1", + "2", + "7", + "4", + "3" + ] + } + }, + { + "name": "month", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 12, + "unique_ratio": 5e-05, + "example_values": [ + "12", + "4", + "8", + "2", + "9" + ] + } + }, + { + "name": "target", + "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": 8e-06, + "example_values": [ + "0", + "1" + ] + } + } + ] +} \ No newline at end of file diff --git a/timecost/c14/tabddpm/tabddpm-c14-20260504_065427/runtime_result.json b/timecost/c14/tabddpm/tabddpm-c14-20260504_065427/runtime_result.json new file mode 100644 index 0000000000000000000000000000000000000000..ea9c1e718d5f4674b539856b5cf0c66be452ea7c --- /dev/null +++ b/timecost/c14/tabddpm/tabddpm-c14-20260504_065427/runtime_result.json @@ -0,0 +1,27 @@ +{ + "dataset_id": "c14", + "model": "tabddpm", + "run_id": "tabddpm-c14-20260504_065427", + "public_gate_status": "pass", + "adapter_ready_status": "pass", + "train_status": "success", + "generate_status": "success", + "reason_code": null, + "reason_detail": null, + "artifacts": { + "synthetic_csv": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/c14/tabddpm/tabddpm-c14-20260504_065427/tabddpm-c14-64-20260504_065452.csv", + "model_path": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/c14/tabddpm/tabddpm-c14-20260504_065427" + }, + "timings": { + "train": { + "started_at": "2026-05-04T06:54:31", + "ended_at": "2026-05-04T06:54:52", + "duration_sec": 21.431 + }, + "generate": { + "started_at": "2026-05-04T06:54:52", + "ended_at": "2026-05-04T06:55:09", + "duration_sec": 16.739 + } + } +} \ No newline at end of file diff --git a/timecost/c14/tabddpm/tabddpm-c14-20260504_065427/staged/public/staged_features.json b/timecost/c14/tabddpm/tabddpm-c14-20260504_065427/staged/public/staged_features.json new file mode 100644 index 0000000000000000000000000000000000000000..508fbe870849f119fe0f440e76f620b91489d965 --- /dev/null +++ b/timecost/c14/tabddpm/tabddpm-c14-20260504_065427/staged/public/staged_features.json @@ -0,0 +1,127 @@ +[ + { + "feature_name": "id", + "data_type": "continuous", + "is_target": false + }, + { + "feature_name": "bin_0", + "data_type": "binary", + "is_target": false + }, + { + "feature_name": "bin_1", + "data_type": "binary", + "is_target": false + }, + { + "feature_name": "bin_2", + "data_type": "binary", + "is_target": false + }, + { + "feature_name": "bin_3", + "data_type": "binary", + "is_target": false + }, + { + "feature_name": "bin_4", + "data_type": "binary", + "is_target": false + }, + { + "feature_name": "nom_0", + "data_type": "categorical", + "is_target": false + }, + { + "feature_name": "nom_1", + "data_type": "categorical", + "is_target": false + }, + { + "feature_name": "nom_2", + "data_type": "categorical", + "is_target": false + }, + { + "feature_name": "nom_3", + "data_type": "categorical", + "is_target": false + }, + { + "feature_name": "nom_4", + "data_type": "categorical", + "is_target": false + }, + { + "feature_name": "nom_5", + "data_type": "categorical", + "is_target": false + }, + { + "feature_name": "nom_6", + "data_type": "categorical", + "is_target": false + }, + { + "feature_name": "nom_7", + "data_type": "categorical", + "is_target": false + }, + { + "feature_name": "nom_8", + "data_type": "categorical", + "is_target": false + }, + { + "feature_name": "nom_9", + "data_type": "categorical", + "is_target": false + }, + { + "feature_name": "ord_0", + "data_type": "continuous", + "is_target": false + }, + { + "feature_name": "ord_1", + "data_type": "categorical", + "is_target": false + }, + { + "feature_name": "ord_2", + "data_type": "categorical", + "is_target": false + }, + { + "feature_name": "ord_3", + "data_type": "categorical", + "is_target": false + }, + { + "feature_name": "ord_4", + "data_type": "categorical", + "is_target": false + }, + { + "feature_name": "ord_5", + "data_type": "categorical", + "is_target": false + }, + { + "feature_name": "day", + "data_type": "continuous", + "is_target": false + }, + { + "feature_name": "month", + "data_type": "continuous", + "is_target": false + }, + { + "feature_name": "target", + "data_type": "binary", + "is_target": true + } +] \ No newline at end of file diff --git a/timecost/c14/tabddpm/tabddpm-c14-20260504_065427/staged/public/test.csv b/timecost/c14/tabddpm/tabddpm-c14-20260504_065427/staged/public/test.csv new file mode 100644 index 0000000000000000000000000000000000000000..afbef1e22ba9597cf509fb91aa271ff6908ca0a9 --- /dev/null +++ b/timecost/c14/tabddpm/tabddpm-c14-20260504_065427/staged/public/test.csv @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:617ecb620416375c67546e0fa5a8b9a3923d689bda904dc23824ea175d1f8597 +size 3965839 diff --git a/timecost/c14/tabddpm/tabddpm-c14-20260504_065427/staged/public/train.csv b/timecost/c14/tabddpm/tabddpm-c14-20260504_065427/staged/public/train.csv new file mode 100644 index 0000000000000000000000000000000000000000..322e9de210d736baf266fa4930517b3827d3bf63 --- /dev/null +++ b/timecost/c14/tabddpm/tabddpm-c14-20260504_065427/staged/public/train.csv @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:12398ccb68a2499b9c126f61b25f03c36a65f026d755e1d5ff5653e614676167 +size 31717079 diff --git a/timecost/c14/tabddpm/tabddpm-c14-20260504_065427/staged/public/val.csv b/timecost/c14/tabddpm/tabddpm-c14-20260504_065427/staged/public/val.csv new file mode 100644 index 0000000000000000000000000000000000000000..594db5d9c0a27ce284d599b8bf62685189510e61 --- /dev/null +++ b/timecost/c14/tabddpm/tabddpm-c14-20260504_065427/staged/public/val.csv @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:f40dbd7bbd9e2783c24d0d12ec35a85581835d45238774eb0676de44a734feda +size 3965919 diff --git a/timecost/c14/tabddpm/tabddpm-c14-20260504_065427/staged/tabddpm/adapter_report.json b/timecost/c14/tabddpm/tabddpm-c14-20260504_065427/staged/tabddpm/adapter_report.json new file mode 100644 index 0000000000000000000000000000000000000000..cc8b7ce6394195ab7bf06c084fa875a509e28bb8 --- /dev/null +++ b/timecost/c14/tabddpm/tabddpm-c14-20260504_065427/staged/tabddpm/adapter_report.json @@ -0,0 +1,7 @@ +{ + "adapter_ready_status": "pass", + "adapter_fail_reason_code": null, + "adapter_fail_detail": null, + "adapter_transforms_applied": [], + "model_input_manifest": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/c14/tabddpm/tabddpm-c14-20260504_065427/staged/tabddpm/model_input_manifest.json" +} \ No newline at end of file diff --git a/timecost/c14/tabddpm/tabddpm-c14-20260504_065427/staged/tabddpm/adapter_transforms_applied.json b/timecost/c14/tabddpm/tabddpm-c14-20260504_065427/staged/tabddpm/adapter_transforms_applied.json new file mode 100644 index 0000000000000000000000000000000000000000..0637a088a01e8ddab3bf3fa98dbe804cbde1a0dc --- /dev/null +++ b/timecost/c14/tabddpm/tabddpm-c14-20260504_065427/staged/tabddpm/adapter_transforms_applied.json @@ -0,0 +1 @@ +[] \ No newline at end of file diff --git a/timecost/c14/tabddpm/tabddpm-c14-20260504_065427/staged/tabddpm/model_input_manifest.json b/timecost/c14/tabddpm/tabddpm-c14-20260504_065427/staged/tabddpm/model_input_manifest.json new file mode 100644 index 0000000000000000000000000000000000000000..be1beb530d9800f27965d38315d564aebc4e5cc0 --- /dev/null +++ b/timecost/c14/tabddpm/tabddpm-c14-20260504_065427/staged/tabddpm/model_input_manifest.json @@ -0,0 +1,516 @@ +{ + "dataset_id": "c14", + "model": "tabddpm", + "target_column": "target", + "task_type": "classification", + "column_schema": [ + { + "name": "id", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 20000, + "unique_ratio": 0.083333, + "example_values": [ + "182547", + "28342", + "172611", + "81876", + "110780" + ] + } + }, + { + "name": "bin_0", + "role": "feature", + "semantic_type": "boolean", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 2, + "unique_ratio": 8e-06, + "example_values": [ + "0", + "1" + ] + } + }, + { + "name": "bin_1", + "role": "feature", + "semantic_type": "boolean", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 2, + "unique_ratio": 8e-06, + "example_values": [ + "0", + "1" + ] + } + }, + { + "name": "bin_2", + "role": "feature", + "semantic_type": "boolean", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 2, + "unique_ratio": 8e-06, + "example_values": [ + "0", + "1" + ] + } + }, + { + "name": "bin_3", + "role": "feature", + "semantic_type": "boolean", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 2, + "unique_ratio": 8e-06, + "example_values": [ + "F", + "T" + ] + } + }, + { + "name": "bin_4", + "role": "feature", + "semantic_type": "boolean", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 2, + "unique_ratio": 8e-06, + "example_values": [ + "Y", + "N" + ] + } + }, + { + "name": "nom_0", + "role": "feature", + "semantic_type": "categorical", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 3, + "unique_ratio": 1.3e-05, + "example_values": [ + "Blue", + "Green", + "Red" + ] + } + }, + { + "name": "nom_1", + "role": "feature", + "semantic_type": "categorical", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 6, + "unique_ratio": 2.5e-05, + "example_values": [ + "Trapezoid", + "Polygon", + "Square", + "Star", + "Triangle" + ] + } + }, + { + "name": "nom_2", + "role": "feature", + "semantic_type": "categorical", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 6, + "unique_ratio": 2.5e-05, + "example_values": [ + "Cat", + "Dog", + "Lion", + "Snake", + "Axolotl" + ] + } + }, + { + "name": "nom_3", + "role": "feature", + "semantic_type": "categorical", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 6, + "unique_ratio": 2.5e-05, + "example_values": [ + "China", + "Finland", + "Canada", + "India", + "Russia" + ] + } + }, + { + "name": "nom_4", + "role": "feature", + "semantic_type": "categorical", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 4, + "unique_ratio": 1.7e-05, + "example_values": [ + "Oboe", + "Bassoon", + "Theremin", + "Piano" + ] + } + }, + { + "name": "nom_5", + "role": "feature", + "semantic_type": "categorical", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 222, + "unique_ratio": 0.000925, + "example_values": [ + "c5725677e", + "92190168b", + "dbfb714a4", + "60a44c8f4", + "e70a6270d" + ] + } + }, + { + "name": "nom_6", + "role": "feature", + "semantic_type": "categorical", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 522, + "unique_ratio": 0.002175, + "example_values": [ + "231233ca9", + "79a82b7c0", + "9a70de492", + "cad70d692", + "6d2cd10c5" + ] + } + }, + { + "name": "nom_7", + "role": "feature", + "semantic_type": "categorical", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 1219, + "unique_ratio": 0.005079, + "example_values": [ + "673d3c1c0", + "7ad3e362c", + "fcd030cc2", + "27e8d4511", + "7df1399cb" + ] + } + }, + { + "name": "nom_8", + "role": "feature", + "semantic_type": "categorical", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 2215, + "unique_ratio": 0.009229, + "example_values": [ + "4fbb167ac", + "7d97eba78", + "b886d6c1c", + "a9d35cede", + "fd0041a98" + ] + } + }, + { + "name": "nom_9", + "role": "feature", + "semantic_type": "categorical", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 11927, + "unique_ratio": 0.049696, + "example_values": [ + "1f31c5cc1", + "89539e0fa", + "8a34e794f", + "34760ea8a", + "46b472cdb" + ] + } + }, + { + "name": "ord_0", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 3, + "unique_ratio": 1.3e-05, + "example_values": [ + "1", + "2", + "3" + ] + } + }, + { + "name": "ord_1", + "role": "feature", + "semantic_type": "categorical", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 5, + "unique_ratio": 2.1e-05, + "example_values": [ + "Grandmaster", + "Contributor", + "Novice", + "Master", + "Expert" + ] + } + }, + { + "name": "ord_2", + "role": "feature", + "semantic_type": "categorical", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 6, + "unique_ratio": 2.5e-05, + "example_values": [ + "Lava Hot", + "Boiling Hot", + "Freezing", + "Hot", + "Cold" + ] + } + }, + { + "name": "ord_3", + "role": "feature", + "semantic_type": "categorical", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 15, + "unique_ratio": 6.3e-05, + "example_values": [ + "g", + "j", + "l", + "f", + "k" + ] + } + }, + { + "name": "ord_4", + "role": "feature", + "semantic_type": "categorical", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 26, + "unique_ratio": 0.000108, + "example_values": [ + "L", + "S", + "K", + "I", + "A" + ] + } + }, + { + "name": "ord_5", + "role": "feature", + "semantic_type": "categorical", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 192, + "unique_ratio": 0.0008, + "example_values": [ + "qo", + "aM", + "AP", + "fO", + "hh" + ] + } + }, + { + "name": "day", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 7, + "unique_ratio": 2.9e-05, + "example_values": [ + "1", + "2", + "7", + "4", + "3" + ] + } + }, + { + "name": "month", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 12, + "unique_ratio": 5e-05, + "example_values": [ + "12", + "4", + "8", + "2", + "9" + ] + } + }, + { + "name": "target", + "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": 8e-06, + "example_values": [ + "0", + "1" + ] + } + } + ], + "public_manifest": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/c14/tabddpm/tabddpm-c14-20260504_065427/public_gate/staged_input_manifest.json", + "train_csv": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/c14/tabddpm/tabddpm-c14-20260504_065427/staged/public/train.csv", + "val_csv": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/c14/tabddpm/tabddpm-c14-20260504_065427/staged/public/val.csv", + "test_csv": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/c14/tabddpm/tabddpm-c14-20260504_065427/staged/public/test.csv", + "features_json": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/c14/tabddpm/tabddpm-c14-20260504_065427/staged/public/staged_features.json", + "public_gate_report": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/c14/tabddpm/tabddpm-c14-20260504_065427/public_gate/public_gate_report.json" +} \ No newline at end of file diff --git a/timecost/c14/tabddpm/tabddpm-c14-20260504_065427/tabddpm-c14-64-20260504_065452.csv b/timecost/c14/tabddpm/tabddpm-c14-20260504_065427/tabddpm-c14-64-20260504_065452.csv new file mode 100644 index 0000000000000000000000000000000000000000..dc27d5138902a2c771a579a24e9427d875f21a78 --- /dev/null +++ b/timecost/c14/tabddpm/tabddpm-c14-20260504_065427/tabddpm-c14-64-20260504_065452.csv @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:40df02f176fa8d68755a46035add1f55953d0ffbccab1eb9d296166d7a09f0c4 +size 7422 diff --git a/timecost/c14/tabddpm/tabddpm-c14-20260504_065427/train_20260504_065434.log b/timecost/c14/tabddpm/tabddpm-c14-20260504_065427/train_20260504_065434.log new file mode 100644 index 0000000000000000000000000000000000000000..1f6344ae403bb5808f8a07da32350e7f4db9a64d --- /dev/null +++ b/timecost/c14/tabddpm/tabddpm-c14-20260504_065427/train_20260504_065434.log @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:e22db917428acbe80255327b2816f0ec7465fbf5fbc8243a3f09ace5b43f39de +size 676 diff --git a/timecost/c14/tabdiff/tabdiff-c14-20260501_043512/_tabdiff_gen.py b/timecost/c14/tabdiff/tabdiff-c14-20260501_043512/_tabdiff_gen.py new file mode 100644 index 0000000000000000000000000000000000000000..0f9ebfef3756321bbcd24b6b668cc29cb5d7400a --- /dev/null +++ b/timecost/c14/tabdiff/tabdiff-c14-20260501_043512/_tabdiff_gen.py @@ -0,0 +1,36 @@ + +import os, shutil, subprocess, sys +td = r"/workspace/TabDiff" +name = r"pipeline_c14" +src = r"/work/output-Benchmark-trainonly-v1/c14/tabdiff/tabdiff-c14-20260501_043512/tabular_bundle/pipeline_c14" +dst_data = os.path.join(td, "data", name) +dst_syn = os.path.join(td, "synthetic", name) +shutil.rmtree(dst_data, ignore_errors=True) +shutil.copytree(src, dst_data) +os.makedirs(dst_syn, exist_ok=True) +for fn in ("real.csv", "test.csv", "val.csv"): + shutil.copy(os.path.join(src, fn), os.path.join(dst_syn, fn)) +os.chdir(td) +os.environ["PYTHONPATH"] = td + os.pathsep + os.environ.get("PYTHONPATH", "") +subprocess.check_call([ + sys.executable, "-m", "tabdiff.main", + "--dataname", name, "--mode", "test", "--gpu", "0", + "--no_wandb", "--exp_name", r"adapter_learnable", + "--ckpt_path", r"/workspace/TabDiff/tabdiff/ckpt/pipeline_c14/adapter_learnable/model_500.pt", + "--num_samples_to_generate", str(int(240000)), +]) +# test() 写入 tabdiff/result////samples.csv +import glob as g +base = os.path.join(td, "tabdiff", "result", name, r"adapter_learnable") +best = None +best_t = -1.0 +for root, _, files in os.walk(base): + if "samples.csv" in files: + p = os.path.join(root, "samples.csv") + t = os.path.getmtime(p) + if t > best_t: + best_t = t + best = p +if not best: + raise SystemExit("tabdiff: no samples.csv under " + base) +shutil.copy(best, r"/work/output-Benchmark-trainonly-v1/c14/tabdiff/tabdiff-c14-20260501_043512/tabdiff-c14-240000-20260501_110122.csv") diff --git a/timecost/c14/tabdiff/tabdiff-c14-20260501_043512/_tabdiff_train.py b/timecost/c14/tabdiff/tabdiff-c14-20260501_043512/_tabdiff_train.py new file mode 100644 index 0000000000000000000000000000000000000000..861ee1918484b41730b339e152ef076fbb2301ae --- /dev/null +++ b/timecost/c14/tabdiff/tabdiff-c14-20260501_043512/_tabdiff_train.py @@ -0,0 +1,21 @@ + +import os, shutil, subprocess, sys +td = r"/workspace/TabDiff" +name = r"pipeline_c14" +src = r"/work/output-Benchmark-trainonly-v1/c14/tabdiff/tabdiff-c14-20260501_043512/tabular_bundle/pipeline_c14" +dst_data = os.path.join(td, "data", name) +dst_syn = os.path.join(td, "synthetic", name) +shutil.rmtree(dst_data, ignore_errors=True) +shutil.copytree(src, dst_data) +os.makedirs(dst_syn, exist_ok=True) +for fn in ("real.csv", "test.csv", "val.csv"): + shutil.copy(os.path.join(src, fn), os.path.join(dst_syn, fn)) +os.chdir(td) +os.environ["PYTHONPATH"] = td + os.pathsep + os.environ.get("PYTHONPATH", "") +os.environ["TABDIFF_SMOKE_STEPS"] = "500" +os.environ["TABDIFF_ADAPTER_TRAIN"] = "1" +subprocess.check_call([ + sys.executable, "-m", "tabdiff.main", + "--dataname", name, "--mode", "train", "--gpu", "0", + "--no_wandb", "--exp_name", r"adapter_learnable", +]) diff --git a/timecost/c14/tabdiff/tabdiff-c14-20260501_043512/gen_20260501_110122.log b/timecost/c14/tabdiff/tabdiff-c14-20260501_043512/gen_20260501_110122.log new file mode 100644 index 0000000000000000000000000000000000000000..fc7438bb2a7359561f0bc17b624a138428de315e --- /dev/null +++ b/timecost/c14/tabdiff/tabdiff-c14-20260501_043512/gen_20260501_110122.log @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:63ae109986b1db6a533baca7c7a01c6d739db8319ad5c44f1c94a244c6f79fe1 +size 102718 diff --git a/timecost/c14/tabdiff/tabdiff-c14-20260501_043512/input_snapshot.json b/timecost/c14/tabdiff/tabdiff-c14-20260501_043512/input_snapshot.json new file mode 100644 index 0000000000000000000000000000000000000000..53f6264fbf4c03500d7b16d85cd1e1911d1ff1db --- /dev/null +++ b/timecost/c14/tabdiff/tabdiff-c14-20260501_043512/input_snapshot.json @@ -0,0 +1,36 @@ +{ + "dataset_id": "c14", + "model": "tabdiff", + "inputs": { + "train_csv": { + "path": "/data/jialinzhang/SynthesizePipeline-server/DatasetNew/c14/c14-train.csv", + "exists": true, + "size": 31957080, + "sha256": "4a11abde6a7fae9f8bb1a1d7e31035b9dd61587d2721749a52d78d65441fba5e" + }, + "val_csv": { + "path": "/data/jialinzhang/SynthesizePipeline-server/DatasetNew/c14/c14-val.csv", + "exists": true, + "size": 3995920, + "sha256": "b04d723eeb59d339a356302660463c129141b4213fefbf472ef48f8a4daa50c9" + }, + "test_csv": { + "path": "/data/jialinzhang/SynthesizePipeline-server/DatasetNew/c14/c14-test.csv", + "exists": true, + "size": 3995840, + "sha256": "4780b90e46f6b440983cc9315cad8bca0e86bd26d8877ffae7111258fba0a132" + }, + "profile_json": { + "path": "/data/jialinzhang/SynthesizePipeline-server/DatasetNew/artifacts/data_core/tabular/c14/c14-dataset_profile.json", + "exists": true, + "size": 9505, + "sha256": "577cc5830dcb336243555d3d41c06e2e7c0a63df2a9caccb7a0411b9332cde15" + }, + "contract_json": { + "path": "/data/jialinzhang/SynthesizePipeline-server/DatasetNew/artifacts/data_core/tabular/c14/c14-dataset_contract_v1.json", + "exists": true, + "size": 11901, + "sha256": "955197dff3346d55aaa999adf98d64c375a7e4ca9bc4bcfe626499c9cfea9a41" + } + } +} \ No newline at end of file diff --git a/timecost/c14/tabdiff/tabdiff-c14-20260501_043512/models_tabdiff/trained.pt b/timecost/c14/tabdiff/tabdiff-c14-20260501_043512/models_tabdiff/trained.pt new file mode 100644 index 0000000000000000000000000000000000000000..bc319a55a9c7152a1137f968b6fa1c735125ad11 --- /dev/null +++ b/timecost/c14/tabdiff/tabdiff-c14-20260501_043512/models_tabdiff/trained.pt @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:306660b8aad4549267c68390b017e15ddb9bc06a02c80515eb72a97ae31a81eb +size 74 diff --git a/timecost/c14/tabdiff/tabdiff-c14-20260501_043512/public_gate/normalized_schema_snapshot.json b/timecost/c14/tabdiff/tabdiff-c14-20260501_043512/public_gate/normalized_schema_snapshot.json new file mode 100644 index 0000000000000000000000000000000000000000..c43047a97cac9542e79dfa127e651be7146aa2a4 --- /dev/null +++ b/timecost/c14/tabdiff/tabdiff-c14-20260501_043512/public_gate/normalized_schema_snapshot.json @@ -0,0 +1,509 @@ +{ + "dataset_id": "c14", + "target_column": "target", + "task_type": "classification", + "columns": [ + { + "name": "id", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 20000, + "unique_ratio": 0.083333, + "example_values": [ + "182547", + "28342", + "172611", + "81876", + "110780" + ] + } + }, + { + "name": "bin_0", + "role": "feature", + "semantic_type": "boolean", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 2, + "unique_ratio": 8e-06, + "example_values": [ + "0", + "1" + ] + } + }, + { + "name": "bin_1", + "role": "feature", + "semantic_type": "boolean", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 2, + "unique_ratio": 8e-06, + "example_values": [ + "0", + "1" + ] + } + }, + { + "name": "bin_2", + "role": "feature", + "semantic_type": "boolean", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 2, + "unique_ratio": 8e-06, + "example_values": [ + "0", + "1" + ] + } + }, + { + "name": "bin_3", + "role": "feature", + "semantic_type": "boolean", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 2, + "unique_ratio": 8e-06, + "example_values": [ + "F", + "T" + ] + } + }, + { + "name": "bin_4", + "role": "feature", + "semantic_type": "boolean", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 2, + "unique_ratio": 8e-06, + "example_values": [ + "Y", + "N" + ] + } + }, + { + "name": "nom_0", + "role": "feature", + "semantic_type": "categorical", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 3, + "unique_ratio": 1.3e-05, + "example_values": [ + "Blue", + "Green", + "Red" + ] + } + }, + { + "name": "nom_1", + "role": "feature", + "semantic_type": "categorical", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 6, + "unique_ratio": 2.5e-05, + "example_values": [ + "Trapezoid", + "Polygon", + "Square", + "Star", + "Triangle" + ] + } + }, + { + "name": "nom_2", + "role": "feature", + "semantic_type": "categorical", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 6, + "unique_ratio": 2.5e-05, + "example_values": [ + "Cat", + "Dog", + "Lion", + "Snake", + "Axolotl" + ] + } + }, + { + "name": "nom_3", + "role": "feature", + "semantic_type": "categorical", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 6, + "unique_ratio": 2.5e-05, + "example_values": [ + "China", + "Finland", + "Canada", + "India", + "Russia" + ] + } + }, + { + "name": "nom_4", + "role": "feature", + "semantic_type": "categorical", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 4, + "unique_ratio": 1.7e-05, + "example_values": [ + "Oboe", + "Bassoon", + "Theremin", + "Piano" + ] + } + }, + { + "name": "nom_5", + "role": "feature", + "semantic_type": "categorical", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 222, + "unique_ratio": 0.000925, + "example_values": [ + "c5725677e", + "92190168b", + "dbfb714a4", + "60a44c8f4", + "e70a6270d" + ] + } + }, + { + "name": "nom_6", + "role": "feature", + "semantic_type": "categorical", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 522, + "unique_ratio": 0.002175, + "example_values": [ + "231233ca9", + "79a82b7c0", + "9a70de492", + "cad70d692", + "6d2cd10c5" + ] + } + }, + { + "name": "nom_7", + "role": "feature", + "semantic_type": "categorical", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 1219, + "unique_ratio": 0.005079, + "example_values": [ + "673d3c1c0", + "7ad3e362c", + "fcd030cc2", + "27e8d4511", + "7df1399cb" + ] + } + }, + { + "name": "nom_8", + "role": "feature", + "semantic_type": "categorical", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 2215, + "unique_ratio": 0.009229, + "example_values": [ + "4fbb167ac", + "7d97eba78", + "b886d6c1c", + "a9d35cede", + "fd0041a98" + ] + } + }, + { + "name": "nom_9", + "role": "feature", + "semantic_type": "categorical", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 11927, + "unique_ratio": 0.049696, + "example_values": [ + "1f31c5cc1", + "89539e0fa", + "8a34e794f", + "34760ea8a", + "46b472cdb" + ] + } + }, + { + "name": "ord_0", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 3, + "unique_ratio": 1.3e-05, + "example_values": [ + "1", + "2", + "3" + ] + } + }, + { + "name": "ord_1", + "role": "feature", + "semantic_type": "categorical", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 5, + "unique_ratio": 2.1e-05, + "example_values": [ + "Grandmaster", + "Contributor", + "Novice", + "Master", + "Expert" + ] + } + }, + { + "name": "ord_2", + "role": "feature", + "semantic_type": "categorical", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 6, + "unique_ratio": 2.5e-05, + "example_values": [ + "Lava Hot", + "Boiling Hot", + "Freezing", + "Hot", + "Cold" + ] + } + }, + { + "name": "ord_3", + "role": "feature", + "semantic_type": "categorical", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 15, + "unique_ratio": 6.3e-05, + "example_values": [ + "g", + "j", + "l", + "f", + "k" + ] + } + }, + { + "name": "ord_4", + "role": "feature", + "semantic_type": "categorical", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 26, + "unique_ratio": 0.000108, + "example_values": [ + "L", + "S", + "K", + "I", + "A" + ] + } + }, + { + "name": "ord_5", + "role": "feature", + "semantic_type": "categorical", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 192, + "unique_ratio": 0.0008, + "example_values": [ + "qo", + "aM", + "AP", + "fO", + "hh" + ] + } + }, + { + "name": "day", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 7, + "unique_ratio": 2.9e-05, + "example_values": [ + "1", + "2", + "7", + "4", + "3" + ] + } + }, + { + "name": "month", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 12, + "unique_ratio": 5e-05, + "example_values": [ + "12", + "4", + "8", + "2", + "9" + ] + } + }, + { + "name": "target", + "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": 8e-06, + "example_values": [ + "0", + "1" + ] + } + } + ] +} \ No newline at end of file diff --git a/timecost/c14/tabdiff/tabdiff-c14-20260501_043512/public_gate/public_gate_report.json b/timecost/c14/tabdiff/tabdiff-c14-20260501_043512/public_gate/public_gate_report.json new file mode 100644 index 0000000000000000000000000000000000000000..9374818599b8101d02e793ea785975d77363e3fd --- /dev/null +++ b/timecost/c14/tabdiff/tabdiff-c14-20260501_043512/public_gate/public_gate_report.json @@ -0,0 +1,37 @@ +{ + "dataset_id": "c14", + "status": "pass", + "checks": [ + { + "check_id": "PG001_csv_parse_ok", + "status": "pass" + }, + { + "check_id": "PG002_split_header_consistent", + "status": "pass" + }, + { + "check_id": "PG003_profile_header_match", + "status": "pass" + }, + { + "check_id": "PG004_missing_token_normalized", + "status": "pass" + }, + { + "check_id": "PG005_semantic_type_validated", + "status": "pass" + }, + { + "check_id": "PG006_target_defined_and_valid", + "status": "pass" + } + ], + "target_column": "target", + "task_type": "classification", + "input_splits": { + "train": "/data/jialinzhang/SynthesizePipeline-server/DatasetNew/c14/c14-train.csv", + "val": "/data/jialinzhang/SynthesizePipeline-server/DatasetNew/c14/c14-val.csv", + "test": "/data/jialinzhang/SynthesizePipeline-server/DatasetNew/c14/c14-test.csv" + } +} \ No newline at end of file diff --git a/timecost/c14/tabdiff/tabdiff-c14-20260501_043512/public_gate/staged_input_manifest.json b/timecost/c14/tabdiff/tabdiff-c14-20260501_043512/public_gate/staged_input_manifest.json new file mode 100644 index 0000000000000000000000000000000000000000..2c1f42e101a8c5b88afb40a90cd353aa308d7efc --- /dev/null +++ b/timecost/c14/tabdiff/tabdiff-c14-20260501_043512/public_gate/staged_input_manifest.json @@ -0,0 +1,514 @@ +{ + "dataset_id": "c14", + "target_column": "target", + "task_type": "classification", + "train_csv": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/c14/tabdiff/tabdiff-c14-20260501_043512/staged/public/train.csv", + "val_csv": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/c14/tabdiff/tabdiff-c14-20260501_043512/staged/public/val.csv", + "test_csv": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/c14/tabdiff/tabdiff-c14-20260501_043512/staged/public/test.csv", + "features_json": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/c14/tabdiff/tabdiff-c14-20260501_043512/staged/public/staged_features.json", + "public_gate_report": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/c14/tabdiff/tabdiff-c14-20260501_043512/public_gate/public_gate_report.json", + "column_schema": [ + { + "name": "id", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 20000, + "unique_ratio": 0.083333, + "example_values": [ + "182547", + "28342", + "172611", + "81876", + "110780" + ] + } + }, + { + "name": "bin_0", + "role": "feature", + "semantic_type": "boolean", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 2, + "unique_ratio": 8e-06, + "example_values": [ + "0", + "1" + ] + } + }, + { + "name": "bin_1", + "role": "feature", + "semantic_type": "boolean", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 2, + "unique_ratio": 8e-06, + "example_values": [ + "0", + "1" + ] + } + }, + { + "name": "bin_2", + "role": "feature", + "semantic_type": "boolean", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 2, + "unique_ratio": 8e-06, + "example_values": [ + "0", + "1" + ] + } + }, + { + "name": "bin_3", + "role": "feature", + "semantic_type": "boolean", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 2, + "unique_ratio": 8e-06, + "example_values": [ + "F", + "T" + ] + } + }, + { + "name": "bin_4", + "role": "feature", + "semantic_type": "boolean", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 2, + "unique_ratio": 8e-06, + "example_values": [ + "Y", + "N" + ] + } + }, + { + "name": "nom_0", + "role": "feature", + "semantic_type": "categorical", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 3, + "unique_ratio": 1.3e-05, + "example_values": [ + "Blue", + "Green", + "Red" + ] + } + }, + { + "name": "nom_1", + "role": "feature", + "semantic_type": "categorical", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 6, + "unique_ratio": 2.5e-05, + "example_values": [ + "Trapezoid", + "Polygon", + "Square", + "Star", + "Triangle" + ] + } + }, + { + "name": "nom_2", + "role": "feature", + "semantic_type": "categorical", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 6, + "unique_ratio": 2.5e-05, + "example_values": [ + "Cat", + "Dog", + "Lion", + "Snake", + "Axolotl" + ] + } + }, + { + "name": "nom_3", + "role": "feature", + "semantic_type": "categorical", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 6, + "unique_ratio": 2.5e-05, + "example_values": [ + "China", + "Finland", + "Canada", + "India", + "Russia" + ] + } + }, + { + "name": "nom_4", + "role": "feature", + "semantic_type": "categorical", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 4, + "unique_ratio": 1.7e-05, + "example_values": [ + "Oboe", + "Bassoon", + "Theremin", + "Piano" + ] + } + }, + { + "name": "nom_5", + "role": "feature", + "semantic_type": "categorical", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 222, + "unique_ratio": 0.000925, + "example_values": [ + "c5725677e", + "92190168b", + "dbfb714a4", + "60a44c8f4", + "e70a6270d" + ] + } + }, + { + "name": "nom_6", + "role": "feature", + "semantic_type": "categorical", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 522, + "unique_ratio": 0.002175, + "example_values": [ + "231233ca9", + "79a82b7c0", + "9a70de492", + "cad70d692", + "6d2cd10c5" + ] + } + }, + { + "name": "nom_7", + "role": "feature", + "semantic_type": "categorical", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 1219, + "unique_ratio": 0.005079, + "example_values": [ + "673d3c1c0", + "7ad3e362c", + "fcd030cc2", + "27e8d4511", + "7df1399cb" + ] + } + }, + { + "name": "nom_8", + "role": "feature", + "semantic_type": "categorical", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 2215, + "unique_ratio": 0.009229, + "example_values": [ + "4fbb167ac", + "7d97eba78", + "b886d6c1c", + "a9d35cede", + "fd0041a98" + ] + } + }, + { + "name": "nom_9", + "role": "feature", + "semantic_type": "categorical", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 11927, + "unique_ratio": 0.049696, + "example_values": [ + "1f31c5cc1", + "89539e0fa", + "8a34e794f", + "34760ea8a", + "46b472cdb" + ] + } + }, + { + "name": "ord_0", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 3, + "unique_ratio": 1.3e-05, + "example_values": [ + "1", + "2", + "3" + ] + } + }, + { + "name": "ord_1", + "role": "feature", + "semantic_type": "categorical", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 5, + "unique_ratio": 2.1e-05, + "example_values": [ + "Grandmaster", + "Contributor", + "Novice", + "Master", + "Expert" + ] + } + }, + { + "name": "ord_2", + "role": "feature", + "semantic_type": "categorical", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 6, + "unique_ratio": 2.5e-05, + "example_values": [ + "Lava Hot", + "Boiling Hot", + "Freezing", + "Hot", + "Cold" + ] + } + }, + { + "name": "ord_3", + "role": "feature", + "semantic_type": "categorical", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 15, + "unique_ratio": 6.3e-05, + "example_values": [ + "g", + "j", + "l", + "f", + "k" + ] + } + }, + { + "name": "ord_4", + "role": "feature", + "semantic_type": "categorical", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 26, + "unique_ratio": 0.000108, + "example_values": [ + "L", + "S", + "K", + "I", + "A" + ] + } + }, + { + "name": "ord_5", + "role": "feature", + "semantic_type": "categorical", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 192, + "unique_ratio": 0.0008, + "example_values": [ + "qo", + "aM", + "AP", + "fO", + "hh" + ] + } + }, + { + "name": "day", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 7, + "unique_ratio": 2.9e-05, + "example_values": [ + "1", + "2", + "7", + "4", + "3" + ] + } + }, + { + "name": "month", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 12, + "unique_ratio": 5e-05, + "example_values": [ + "12", + "4", + "8", + "2", + "9" + ] + } + }, + { + "name": "target", + "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": 8e-06, + "example_values": [ + "0", + "1" + ] + } + } + ] +} \ No newline at end of file diff --git a/timecost/c14/tabdiff/tabdiff-c14-20260501_043512/runtime_result.json b/timecost/c14/tabdiff/tabdiff-c14-20260501_043512/runtime_result.json new file mode 100644 index 0000000000000000000000000000000000000000..71f6148edc560725802e21249ce5359f9e6edca5 --- /dev/null +++ b/timecost/c14/tabdiff/tabdiff-c14-20260501_043512/runtime_result.json @@ -0,0 +1,27 @@ +{ + "dataset_id": "c14", + "model": "tabdiff", + "run_id": "tabdiff-c14-20260501_043512", + "public_gate_status": "pass", + "adapter_ready_status": "pass", + "train_status": "success", + "generate_status": "success", + "reason_code": null, + "reason_detail": null, + "artifacts": { + "synthetic_csv": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/c14/tabdiff/tabdiff-c14-20260501_043512/tabdiff-c14-240000-20260501_110122.csv", + "model_path": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/c14/tabdiff/tabdiff-c14-20260501_043512/models_tabdiff/trained.pt" + }, + "timings": { + "train": { + "started_at": "2026-05-01T04:35:15", + "ended_at": "2026-05-01T11:01:22", + "duration_sec": 23167.484 + }, + "generate": { + "started_at": "2026-05-01T11:01:22", + "ended_at": "2026-05-01T12:44:45", + "duration_sec": 6202.841 + } + } +} \ No newline at end of file diff --git a/timecost/c14/tabdiff/tabdiff-c14-20260501_043512/staged/public/staged_features.json b/timecost/c14/tabdiff/tabdiff-c14-20260501_043512/staged/public/staged_features.json new file mode 100644 index 0000000000000000000000000000000000000000..508fbe870849f119fe0f440e76f620b91489d965 --- /dev/null +++ b/timecost/c14/tabdiff/tabdiff-c14-20260501_043512/staged/public/staged_features.json @@ -0,0 +1,127 @@ +[ + { + "feature_name": "id", + "data_type": "continuous", + "is_target": false + }, + { + "feature_name": "bin_0", + "data_type": "binary", + "is_target": false + }, + { + "feature_name": "bin_1", + "data_type": "binary", + "is_target": false + }, + { + "feature_name": "bin_2", + "data_type": "binary", + "is_target": false + }, + { + "feature_name": "bin_3", + "data_type": "binary", + "is_target": false + }, + { + "feature_name": "bin_4", + "data_type": "binary", + "is_target": false + }, + { + "feature_name": "nom_0", + "data_type": "categorical", + "is_target": false + }, + { + "feature_name": "nom_1", + "data_type": "categorical", + "is_target": false + }, + { + "feature_name": "nom_2", + "data_type": "categorical", + "is_target": false + }, + { + "feature_name": "nom_3", + "data_type": "categorical", + "is_target": false + }, + { + "feature_name": "nom_4", + "data_type": "categorical", + "is_target": false + }, + { + "feature_name": "nom_5", + "data_type": "categorical", + "is_target": false + }, + { + "feature_name": "nom_6", + "data_type": "categorical", + "is_target": false + }, + { + "feature_name": "nom_7", + "data_type": "categorical", + "is_target": false + }, + { + "feature_name": "nom_8", + "data_type": "categorical", + "is_target": false + }, + { + "feature_name": "nom_9", + "data_type": "categorical", + "is_target": false + }, + { + "feature_name": "ord_0", + "data_type": "continuous", + "is_target": false + }, + { + "feature_name": "ord_1", + "data_type": "categorical", + "is_target": false + }, + { + "feature_name": "ord_2", + "data_type": "categorical", + "is_target": false + }, + { + "feature_name": "ord_3", + "data_type": "categorical", + "is_target": false + }, + { + "feature_name": "ord_4", + "data_type": "categorical", + "is_target": false + }, + { + "feature_name": "ord_5", + "data_type": "categorical", + "is_target": false + }, + { + "feature_name": "day", + "data_type": "continuous", + "is_target": false + }, + { + "feature_name": "month", + "data_type": "continuous", + "is_target": false + }, + { + "feature_name": "target", + "data_type": "binary", + "is_target": true + } +] \ No newline at end of file diff --git a/timecost/c14/tabdiff/tabdiff-c14-20260501_043512/staged/public/test.csv b/timecost/c14/tabdiff/tabdiff-c14-20260501_043512/staged/public/test.csv new file mode 100644 index 0000000000000000000000000000000000000000..afbef1e22ba9597cf509fb91aa271ff6908ca0a9 --- /dev/null +++ b/timecost/c14/tabdiff/tabdiff-c14-20260501_043512/staged/public/test.csv @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:617ecb620416375c67546e0fa5a8b9a3923d689bda904dc23824ea175d1f8597 +size 3965839 diff --git a/timecost/c14/tabdiff/tabdiff-c14-20260501_043512/staged/public/train.csv b/timecost/c14/tabdiff/tabdiff-c14-20260501_043512/staged/public/train.csv new file mode 100644 index 0000000000000000000000000000000000000000..322e9de210d736baf266fa4930517b3827d3bf63 --- /dev/null +++ b/timecost/c14/tabdiff/tabdiff-c14-20260501_043512/staged/public/train.csv @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:12398ccb68a2499b9c126f61b25f03c36a65f026d755e1d5ff5653e614676167 +size 31717079 diff --git a/timecost/c14/tabdiff/tabdiff-c14-20260501_043512/staged/public/val.csv b/timecost/c14/tabdiff/tabdiff-c14-20260501_043512/staged/public/val.csv new file mode 100644 index 0000000000000000000000000000000000000000..594db5d9c0a27ce284d599b8bf62685189510e61 --- /dev/null +++ b/timecost/c14/tabdiff/tabdiff-c14-20260501_043512/staged/public/val.csv @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:f40dbd7bbd9e2783c24d0d12ec35a85581835d45238774eb0676de44a734feda +size 3965919 diff --git a/timecost/c14/tabdiff/tabdiff-c14-20260501_043512/staged/tabdiff/adapter_report.json b/timecost/c14/tabdiff/tabdiff-c14-20260501_043512/staged/tabdiff/adapter_report.json new file mode 100644 index 0000000000000000000000000000000000000000..0e7a2b78f319bee2d3488f9460d3cfaff4459430 --- /dev/null +++ b/timecost/c14/tabdiff/tabdiff-c14-20260501_043512/staged/tabdiff/adapter_report.json @@ -0,0 +1,7 @@ +{ + "adapter_ready_status": "pass", + "adapter_fail_reason_code": null, + "adapter_fail_detail": null, + "adapter_transforms_applied": [], + "model_input_manifest": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/c14/tabdiff/tabdiff-c14-20260501_043512/staged/tabdiff/model_input_manifest.json" +} \ No newline at end of file diff --git a/timecost/c14/tabdiff/tabdiff-c14-20260501_043512/staged/tabdiff/adapter_transforms_applied.json b/timecost/c14/tabdiff/tabdiff-c14-20260501_043512/staged/tabdiff/adapter_transforms_applied.json new file mode 100644 index 0000000000000000000000000000000000000000..0637a088a01e8ddab3bf3fa98dbe804cbde1a0dc --- /dev/null +++ b/timecost/c14/tabdiff/tabdiff-c14-20260501_043512/staged/tabdiff/adapter_transforms_applied.json @@ -0,0 +1 @@ +[] \ No newline at end of file diff --git a/timecost/c14/tabdiff/tabdiff-c14-20260501_043512/staged/tabdiff/model_input_manifest.json b/timecost/c14/tabdiff/tabdiff-c14-20260501_043512/staged/tabdiff/model_input_manifest.json new file mode 100644 index 0000000000000000000000000000000000000000..743a644144cd9b4cc744f945a44acd3d4978c9d9 --- /dev/null +++ b/timecost/c14/tabdiff/tabdiff-c14-20260501_043512/staged/tabdiff/model_input_manifest.json @@ -0,0 +1,516 @@ +{ + "dataset_id": "c14", + "model": "tabdiff", + "target_column": "target", + "task_type": "classification", + "column_schema": [ + { + "name": "id", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 20000, + "unique_ratio": 0.083333, + "example_values": [ + "182547", + "28342", + "172611", + "81876", + "110780" + ] + } + }, + { + "name": "bin_0", + "role": "feature", + "semantic_type": "boolean", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 2, + "unique_ratio": 8e-06, + "example_values": [ + "0", + "1" + ] + } + }, + { + "name": "bin_1", + "role": "feature", + "semantic_type": "boolean", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 2, + "unique_ratio": 8e-06, + "example_values": [ + "0", + "1" + ] + } + }, + { + "name": "bin_2", + "role": "feature", + "semantic_type": "boolean", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 2, + "unique_ratio": 8e-06, + "example_values": [ + "0", + "1" + ] + } + }, + { + "name": "bin_3", + "role": "feature", + "semantic_type": "boolean", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 2, + "unique_ratio": 8e-06, + "example_values": [ + "F", + "T" + ] + } + }, + { + "name": "bin_4", + "role": "feature", + "semantic_type": "boolean", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 2, + "unique_ratio": 8e-06, + "example_values": [ + "Y", + "N" + ] + } + }, + { + "name": "nom_0", + "role": "feature", + "semantic_type": "categorical", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 3, + "unique_ratio": 1.3e-05, + "example_values": [ + "Blue", + "Green", + "Red" + ] + } + }, + { + "name": "nom_1", + "role": "feature", + "semantic_type": "categorical", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 6, + "unique_ratio": 2.5e-05, + "example_values": [ + "Trapezoid", + "Polygon", + "Square", + "Star", + "Triangle" + ] + } + }, + { + "name": "nom_2", + "role": "feature", + "semantic_type": "categorical", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 6, + "unique_ratio": 2.5e-05, + "example_values": [ + "Cat", + "Dog", + "Lion", + "Snake", + "Axolotl" + ] + } + }, + { + "name": "nom_3", + "role": "feature", + "semantic_type": "categorical", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 6, + "unique_ratio": 2.5e-05, + "example_values": [ + "China", + "Finland", + "Canada", + "India", + "Russia" + ] + } + }, + { + "name": "nom_4", + "role": "feature", + "semantic_type": "categorical", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 4, + "unique_ratio": 1.7e-05, + "example_values": [ + "Oboe", + "Bassoon", + "Theremin", + "Piano" + ] + } + }, + { + "name": "nom_5", + "role": "feature", + "semantic_type": "categorical", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 222, + "unique_ratio": 0.000925, + "example_values": [ + "c5725677e", + "92190168b", + "dbfb714a4", + "60a44c8f4", + "e70a6270d" + ] + } + }, + { + "name": "nom_6", + "role": "feature", + "semantic_type": "categorical", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 522, + "unique_ratio": 0.002175, + "example_values": [ + "231233ca9", + "79a82b7c0", + "9a70de492", + "cad70d692", + "6d2cd10c5" + ] + } + }, + { + "name": "nom_7", + "role": "feature", + "semantic_type": "categorical", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 1219, + "unique_ratio": 0.005079, + "example_values": [ + "673d3c1c0", + "7ad3e362c", + "fcd030cc2", + "27e8d4511", + "7df1399cb" + ] + } + }, + { + "name": "nom_8", + "role": "feature", + "semantic_type": "categorical", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 2215, + "unique_ratio": 0.009229, + "example_values": [ + "4fbb167ac", + "7d97eba78", + "b886d6c1c", + "a9d35cede", + "fd0041a98" + ] + } + }, + { + "name": "nom_9", + "role": "feature", + "semantic_type": "categorical", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 11927, + "unique_ratio": 0.049696, + "example_values": [ + "1f31c5cc1", + "89539e0fa", + "8a34e794f", + "34760ea8a", + "46b472cdb" + ] + } + }, + { + "name": "ord_0", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 3, + "unique_ratio": 1.3e-05, + "example_values": [ + "1", + "2", + "3" + ] + } + }, + { + "name": "ord_1", + "role": "feature", + "semantic_type": "categorical", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 5, + "unique_ratio": 2.1e-05, + "example_values": [ + "Grandmaster", + "Contributor", + "Novice", + "Master", + "Expert" + ] + } + }, + { + "name": "ord_2", + "role": "feature", + "semantic_type": "categorical", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 6, + "unique_ratio": 2.5e-05, + "example_values": [ + "Lava Hot", + "Boiling Hot", + "Freezing", + "Hot", + "Cold" + ] + } + }, + { + "name": "ord_3", + "role": "feature", + "semantic_type": "categorical", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 15, + "unique_ratio": 6.3e-05, + "example_values": [ + "g", + "j", + "l", + "f", + "k" + ] + } + }, + { + "name": "ord_4", + "role": "feature", + "semantic_type": "categorical", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 26, + "unique_ratio": 0.000108, + "example_values": [ + "L", + "S", + "K", + "I", + "A" + ] + } + }, + { + "name": "ord_5", + "role": "feature", + "semantic_type": "categorical", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 192, + "unique_ratio": 0.0008, + "example_values": [ + "qo", + "aM", + "AP", + "fO", + "hh" + ] + } + }, + { + "name": "day", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 7, + "unique_ratio": 2.9e-05, + "example_values": [ + "1", + "2", + "7", + "4", + "3" + ] + } + }, + { + "name": "month", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 12, + "unique_ratio": 5e-05, + "example_values": [ + "12", + "4", + "8", + "2", + "9" + ] + } + }, + { + "name": "target", + "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": 8e-06, + "example_values": [ + "0", + "1" + ] + } + } + ], + "public_manifest": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/c14/tabdiff/tabdiff-c14-20260501_043512/public_gate/staged_input_manifest.json", + "train_csv": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/c14/tabdiff/tabdiff-c14-20260501_043512/staged/public/train.csv", + "val_csv": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/c14/tabdiff/tabdiff-c14-20260501_043512/staged/public/val.csv", + "test_csv": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/c14/tabdiff/tabdiff-c14-20260501_043512/staged/public/test.csv", + "features_json": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/c14/tabdiff/tabdiff-c14-20260501_043512/staged/public/staged_features.json", + "public_gate_report": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/c14/tabdiff/tabdiff-c14-20260501_043512/public_gate/public_gate_report.json" +} \ No newline at end of file diff --git a/timecost/c14/tabdiff/tabdiff-c14-20260501_043512/tabdiff-c14-240000-20260501_110122.csv b/timecost/c14/tabdiff/tabdiff-c14-20260501_043512/tabdiff-c14-240000-20260501_110122.csv new file mode 100644 index 0000000000000000000000000000000000000000..118641f7fdbfe540cb8153d2202c8586a036b021 --- /dev/null +++ b/timecost/c14/tabdiff/tabdiff-c14-20260501_043512/tabdiff-c14-240000-20260501_110122.csv @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:dbb609a74efefda9b82c72914f3deb8d09fa966855b1f8e13eeba3a8640d8d70 +size 18538861 diff --git a/timecost/c14/tabdiff/tabdiff-c14-20260501_043512/tabdiff_train_meta.json b/timecost/c14/tabdiff/tabdiff-c14-20260501_043512/tabdiff_train_meta.json new file mode 100644 index 0000000000000000000000000000000000000000..aeeb95afe53f3231f8e4527bc9c7d60dce0e6cf3 --- /dev/null +++ b/timecost/c14/tabdiff/tabdiff-c14-20260501_043512/tabdiff_train_meta.json @@ -0,0 +1,5 @@ +{ + "exp_name": "adapter_learnable", + "dataname": "pipeline_c14", + "steps": 500 +} \ No newline at end of file diff --git a/timecost/c14/tabdiff/tabdiff-c14-20260501_043512/tabular_bundle/pipeline_c14/X_cat_test.npy b/timecost/c14/tabdiff/tabdiff-c14-20260501_043512/tabular_bundle/pipeline_c14/X_cat_test.npy new file mode 100644 index 0000000000000000000000000000000000000000..98bd909f2c6e01569b889e7013b55bfd9382349a --- /dev/null +++ b/timecost/c14/tabdiff/tabdiff-c14-20260501_043512/tabular_bundle/pipeline_c14/X_cat_test.npy @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:4db5fc039c0a3755f8187753d8ff1576d6ae627c7fdd403f3fa38914bed677b0 +size 38400128 diff --git a/timecost/c14/tabdiff/tabdiff-c14-20260501_043512/tabular_bundle/pipeline_c14/X_cat_train.npy b/timecost/c14/tabdiff/tabdiff-c14-20260501_043512/tabular_bundle/pipeline_c14/X_cat_train.npy new file mode 100644 index 0000000000000000000000000000000000000000..98bd909f2c6e01569b889e7013b55bfd9382349a --- /dev/null +++ b/timecost/c14/tabdiff/tabdiff-c14-20260501_043512/tabular_bundle/pipeline_c14/X_cat_train.npy @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:4db5fc039c0a3755f8187753d8ff1576d6ae627c7fdd403f3fa38914bed677b0 +size 38400128 diff --git a/timecost/c14/tabdiff/tabdiff-c14-20260501_043512/tabular_bundle/pipeline_c14/X_cat_val.npy b/timecost/c14/tabdiff/tabdiff-c14-20260501_043512/tabular_bundle/pipeline_c14/X_cat_val.npy new file mode 100644 index 0000000000000000000000000000000000000000..98bd909f2c6e01569b889e7013b55bfd9382349a --- /dev/null +++ b/timecost/c14/tabdiff/tabdiff-c14-20260501_043512/tabular_bundle/pipeline_c14/X_cat_val.npy @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:4db5fc039c0a3755f8187753d8ff1576d6ae627c7fdd403f3fa38914bed677b0 +size 38400128 diff --git a/timecost/c14/tabdiff/tabdiff-c14-20260501_043512/tabular_bundle/pipeline_c14/X_num_test.npy b/timecost/c14/tabdiff/tabdiff-c14-20260501_043512/tabular_bundle/pipeline_c14/X_num_test.npy new file mode 100644 index 0000000000000000000000000000000000000000..c3499d15139a46785b9614e79d47ee35f58034ea --- /dev/null +++ b/timecost/c14/tabdiff/tabdiff-c14-20260501_043512/tabular_bundle/pipeline_c14/X_num_test.npy @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:3026532dc1e8f61b12f8f829ec618733e69f9da70d40e8234069ff10f3381878 +size 3840128 diff --git a/timecost/c14/tabdiff/tabdiff-c14-20260501_043512/tabular_bundle/pipeline_c14/X_num_train.npy b/timecost/c14/tabdiff/tabdiff-c14-20260501_043512/tabular_bundle/pipeline_c14/X_num_train.npy new file mode 100644 index 0000000000000000000000000000000000000000..c3499d15139a46785b9614e79d47ee35f58034ea --- /dev/null +++ b/timecost/c14/tabdiff/tabdiff-c14-20260501_043512/tabular_bundle/pipeline_c14/X_num_train.npy @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:3026532dc1e8f61b12f8f829ec618733e69f9da70d40e8234069ff10f3381878 +size 3840128 diff --git a/timecost/c14/tabdiff/tabdiff-c14-20260501_043512/tabular_bundle/pipeline_c14/X_num_val.npy b/timecost/c14/tabdiff/tabdiff-c14-20260501_043512/tabular_bundle/pipeline_c14/X_num_val.npy new file mode 100644 index 0000000000000000000000000000000000000000..c3499d15139a46785b9614e79d47ee35f58034ea --- /dev/null +++ b/timecost/c14/tabdiff/tabdiff-c14-20260501_043512/tabular_bundle/pipeline_c14/X_num_val.npy @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:3026532dc1e8f61b12f8f829ec618733e69f9da70d40e8234069ff10f3381878 +size 3840128 diff --git a/timecost/c14/tabdiff/tabdiff-c14-20260501_043512/tabular_bundle/pipeline_c14/info.json b/timecost/c14/tabdiff/tabdiff-c14-20260501_043512/tabular_bundle/pipeline_c14/info.json new file mode 100644 index 0000000000000000000000000000000000000000..080d2acdfedaf40cd7371cde7cb09624153991e4 --- /dev/null +++ b/timecost/c14/tabdiff/tabdiff-c14-20260501_043512/tabular_bundle/pipeline_c14/info.json @@ -0,0 +1,237 @@ +{ + "name": "pipeline_c14", + "task_type": "binclass", + "n_num_features": 4, + "n_cat_features": 20, + "train_size": 240000, + "test_num": 240000, + "val_num": 240000, + "train_num": 240000, + "bundle_note": "val/test matrices are train copies (train-only policy; no real held-out rows).", + "num_col_idx": [ + 0, + 1, + 2, + 3 + ], + "cat_col_idx": [ + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13, + 14, + 15, + 16, + 17, + 18, + 19, + 20, + 21, + 22, + 23 + ], + "target_col_idx": [ + 24 + ], + "column_names": [ + "id", + "ord_0", + "day", + "month", + "bin_0", + "bin_1", + "bin_2", + "bin_3", + "bin_4", + "nom_0", + "nom_1", + "nom_2", + "nom_3", + "nom_4", + "nom_5", + "nom_6", + "nom_7", + "nom_8", + "nom_9", + "ord_1", + "ord_2", + "ord_3", + "ord_4", + "ord_5", + "target" + ], + "int_col_idx": [], + "int_columns": [], + "int_col_idx_wrt_num": [], + "metadata": { + "columns": { + "0": { + "sdtype": "numerical", + "computer_representation": "Float" + }, + "1": { + "sdtype": "numerical", + "computer_representation": "Float" + }, + "2": { + "sdtype": "numerical", + "computer_representation": "Float" + }, + "3": { + "sdtype": "numerical", + "computer_representation": "Float" + }, + "4": { + "sdtype": "categorical" + }, + "5": { + "sdtype": "categorical" + }, + "6": { + "sdtype": "categorical" + }, + "7": { + "sdtype": "categorical" + }, + "8": { + "sdtype": "categorical" + }, + "9": { + "sdtype": "categorical" + }, + "10": { + "sdtype": "categorical" + }, + "11": { + "sdtype": "categorical" + }, + "12": { + "sdtype": "categorical" + }, + "13": { + "sdtype": "categorical" + }, + "14": { + "sdtype": "categorical" + }, + "15": { + "sdtype": "categorical" + }, + "16": { + "sdtype": "categorical" + }, + "17": { + "sdtype": "categorical" + }, + "18": { + "sdtype": "categorical" + }, + "19": { + "sdtype": "categorical" + }, + "20": { + "sdtype": "categorical" + }, + "21": { + "sdtype": "categorical" + }, + "22": { + "sdtype": "categorical" + }, + "23": { + "sdtype": "categorical" + }, + "24": { + "sdtype": "categorical" + } + } + }, + "idx_mapping": { + "0": 0, + "1": 1, + "2": 2, + "3": 3, + "4": 4, + "5": 5, + "6": 6, + "7": 7, + "8": 8, + "9": 9, + "10": 10, + "11": 11, + "12": 12, + "13": 13, + "14": 14, + "15": 15, + "16": 16, + "17": 17, + "18": 18, + "19": 19, + "20": 20, + "21": 21, + "22": 22, + "23": 23, + "24": 24 + }, + "inverse_idx_mapping": { + "0": 0, + "1": 1, + "2": 2, + "3": 3, + "4": 4, + "5": 5, + "6": 6, + "7": 7, + "8": 8, + "9": 9, + "10": 10, + "11": 11, + "12": 12, + "13": 13, + "14": 14, + "15": 15, + "16": 16, + "17": 17, + "18": 18, + "19": 19, + "20": 20, + "21": 21, + "22": 22, + "23": 23, + "24": 24 + }, + "idx_name_mapping": { + "0": "id", + "1": "ord_0", + "2": "day", + "3": "month", + "4": "bin_0", + "5": "bin_1", + "6": "bin_2", + "7": "bin_3", + "8": "bin_4", + "9": "nom_0", + "10": "nom_1", + "11": "nom_2", + "12": "nom_3", + "13": "nom_4", + "14": "nom_5", + "15": "nom_6", + "16": "nom_7", + "17": "nom_8", + "18": "nom_9", + "19": "ord_1", + "20": "ord_2", + "21": "ord_3", + "22": "ord_4", + "23": "ord_5", + "24": "target" + }, + "n_classes": 2 +} \ No newline at end of file diff --git a/timecost/c14/tabdiff/tabdiff-c14-20260501_043512/tabular_bundle/pipeline_c14/real.csv b/timecost/c14/tabdiff/tabdiff-c14-20260501_043512/tabular_bundle/pipeline_c14/real.csv new file mode 100644 index 0000000000000000000000000000000000000000..e0727b62589883f82aac108f21c9b2ad3a885688 --- /dev/null +++ b/timecost/c14/tabdiff/tabdiff-c14-20260501_043512/tabular_bundle/pipeline_c14/real.csv @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:d9b7f2fe49e7531047723273dcbccd3c512c0fa436d0923e37642df167967bda +size 16349714 diff --git a/timecost/c14/tabdiff/tabdiff-c14-20260501_043512/tabular_bundle/pipeline_c14/test.csv b/timecost/c14/tabdiff/tabdiff-c14-20260501_043512/tabular_bundle/pipeline_c14/test.csv new file mode 100644 index 0000000000000000000000000000000000000000..e0727b62589883f82aac108f21c9b2ad3a885688 --- /dev/null +++ b/timecost/c14/tabdiff/tabdiff-c14-20260501_043512/tabular_bundle/pipeline_c14/test.csv @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:d9b7f2fe49e7531047723273dcbccd3c512c0fa436d0923e37642df167967bda +size 16349714 diff --git a/timecost/c14/tabdiff/tabdiff-c14-20260501_043512/tabular_bundle/pipeline_c14/val.csv b/timecost/c14/tabdiff/tabdiff-c14-20260501_043512/tabular_bundle/pipeline_c14/val.csv new file mode 100644 index 0000000000000000000000000000000000000000..e0727b62589883f82aac108f21c9b2ad3a885688 --- /dev/null +++ b/timecost/c14/tabdiff/tabdiff-c14-20260501_043512/tabular_bundle/pipeline_c14/val.csv @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:d9b7f2fe49e7531047723273dcbccd3c512c0fa436d0923e37642df167967bda +size 16349714 diff --git a/timecost/c14/tabdiff/tabdiff-c14-20260501_043512/tabular_bundle/pipeline_c14/y_test.npy b/timecost/c14/tabdiff/tabdiff-c14-20260501_043512/tabular_bundle/pipeline_c14/y_test.npy new file mode 100644 index 0000000000000000000000000000000000000000..b819b291ffd95c81962c168db9cfbe50216f7e27 --- /dev/null +++ b/timecost/c14/tabdiff/tabdiff-c14-20260501_043512/tabular_bundle/pipeline_c14/y_test.npy @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:0f723b0138e622255ce8db1d27cf9b51554364c371989801193edd4c87fc0921 +size 1920128 diff --git a/timecost/c14/tabdiff/tabdiff-c14-20260501_043512/tabular_bundle/pipeline_c14/y_train.npy b/timecost/c14/tabdiff/tabdiff-c14-20260501_043512/tabular_bundle/pipeline_c14/y_train.npy new file mode 100644 index 0000000000000000000000000000000000000000..b819b291ffd95c81962c168db9cfbe50216f7e27 --- /dev/null +++ b/timecost/c14/tabdiff/tabdiff-c14-20260501_043512/tabular_bundle/pipeline_c14/y_train.npy @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:0f723b0138e622255ce8db1d27cf9b51554364c371989801193edd4c87fc0921 +size 1920128 diff --git a/timecost/c14/tabdiff/tabdiff-c14-20260501_043512/tabular_bundle/pipeline_c14/y_val.npy b/timecost/c14/tabdiff/tabdiff-c14-20260501_043512/tabular_bundle/pipeline_c14/y_val.npy new file mode 100644 index 0000000000000000000000000000000000000000..b819b291ffd95c81962c168db9cfbe50216f7e27 --- /dev/null +++ b/timecost/c14/tabdiff/tabdiff-c14-20260501_043512/tabular_bundle/pipeline_c14/y_val.npy @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:0f723b0138e622255ce8db1d27cf9b51554364c371989801193edd4c87fc0921 +size 1920128 diff --git a/timecost/c14/tabdiff/tabdiff-c14-20260501_043512/train_20260501_043526.log b/timecost/c14/tabdiff/tabdiff-c14-20260501_043512/train_20260501_043526.log new file mode 100644 index 0000000000000000000000000000000000000000..705e65f7ef7b59c471a0d8fa286b97c30f95561e --- /dev/null +++ b/timecost/c14/tabdiff/tabdiff-c14-20260501_043512/train_20260501_043526.log @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:eef2b3b6305fb5ff348bf714299ad8f786067e06c2ffa611fa6b4698e212d65b +size 9711741 diff --git a/timecost/c14/tabpfgen/tabpfgen-c14-20260504_200228/_tabpfgen_generate.py b/timecost/c14/tabpfgen/tabpfgen-c14-20260504_200228/_tabpfgen_generate.py new file mode 100644 index 0000000000000000000000000000000000000000..2c73ded158bd94698189b4bb08f45b0729c51ca1 --- /dev/null +++ b/timecost/c14/tabpfgen/tabpfgen-c14-20260504_200228/_tabpfgen_generate.py @@ -0,0 +1,122 @@ +import os +import numpy as np +import pandas as pd +import json +from tabpfgen import TabPFGen + +df = pd.read_csv("/work/output-Benchmark-trainonly-v1/c14/tabpfgen/tabpfgen-c14-20260504_200228/staged/public/train.csv") +target_col = "target" + +target_missing = df[target_col].isna() +if target_missing.any(): + dropped = int(target_missing.sum()) + df = df.loc[~target_missing].copy() + print( + f"[TabPFGen] Dropped {dropped} rows with missing target '{target_col}'" + ) +if df.empty: + raise ValueError( + f"[TabPFGen] No rows remain after dropping missing target '{target_col}'" + ) + +feature_cols = [c for c in df.columns if c != target_col] + +cat_encodings = {} +for col in feature_cols: + if df[col].dtype == object or str(df[col].dtype) == 'category': + cats = sorted(df[col].dropna().unique().tolist(), key=str) + cat_map = {v: i for i, v in enumerate(cats)} + df[col] = df[col].map(cat_map).astype(float) + cat_encodings[col] = cats + print(f"[TabPFGen] Label-encoded '{col}' ({len(cats)} categories)") + +target_cats = None +if df[target_col].dtype == object or str(df[target_col].dtype) == 'category': + cats = sorted(df[target_col].dropna().unique().tolist(), key=str) + t_map = {v: i for i, v in enumerate(cats)} + df[target_col] = df[target_col].map(t_map).astype(float) + target_cats = cats + print(f"[TabPFGen] Label-encoded target '{target_col}' ({len(cats)} categories)") + +X = df[feature_cols].values.astype(np.float32) +y = df[target_col].values +fit_rows_cap = max(1, int(os.environ.get("TABPFGEN_FIT_MAX_ROWS", "50000"))) +if len(X) > fit_rows_cap: + rng = np.random.default_rng(42) + idx = np.sort(rng.choice(len(X), size=fit_rows_cap, replace=False)) + X = X[idx] + y = y[idx] + print(f"[TabPFGen] Downsampled fit rows -> {len(X)} (cap={fit_rows_cap})") +target_n = int(240000) + +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 + +chunk_rows = max(1, int(os.environ.get("TABPFGEN_GEN_CHUNK_ROWS", "256"))) +device = (os.environ.get("TABPFGEN_DEVICE") or "auto").strip() or "auto" + +# TabPFGen v0.1.x API:仅支持 n_sgld_steps / sgld_* / device。 +# (旧版脚本中的 energy_*_chunk 与上游 TabPFGen 不一致,会导致 TypeError。) +gen = TabPFGen( + n_sgld_steps=1000, + sgld_step_size=0.01, + sgld_noise_scale=0.01, + device=device, +) + +print(f"[TabPFGen] Generating {target_n} rows via generate_classification (chunk_rows={chunk_rows}, device={device})") +x_parts = [] +y_parts = [] +remaining = target_n +while remaining > 0: + take = min(chunk_rows, remaining) + X_part, y_part = gen.generate_classification(X, y, n_samples=take) + x_parts.append(np.asarray(X_part)) + y_parts.append(np.asarray(y_part)) + remaining -= take + print(f"[TabPFGen] chunk done: take={take}, remaining={remaining}") + +X_syn = np.concatenate(x_parts, axis=0) +y_syn = np.concatenate(y_parts, axis=0) + +syn_df = pd.DataFrame(X_syn, columns=feature_cols) +syn_df[target_col] = y_syn + +for col, cats in cat_encodings.items(): + codes = np.round(syn_df[col].values).astype(int) + codes = np.clip(codes, 0, len(cats) - 1) + syn_df[col] = [cats[c] for c in codes] + +if target_cats is not None: + codes = np.round(syn_df[target_col].values).astype(int) + codes = np.clip(codes, 0, len(target_cats) - 1) + syn_df[target_col] = [target_cats[c] for c in codes] + +if len(syn_df) > target_n: + print(f"[TabPFGen] Trimming rows: {len(syn_df)} -> {target_n}") + syn_df = syn_df.iloc[:target_n].copy() +elif len(syn_df) < target_n: + deficit = target_n - len(syn_df) + print(f"[TabPFGen] Padding rows: {len(syn_df)} -> {target_n} (deficit={deficit})") + if len(syn_df) > 0: + extra = syn_df.sample(n=deficit, replace=True, random_state=42) + syn_df = pd.concat( + [syn_df.reset_index(drop=True), extra.reset_index(drop=True)], + ignore_index=True, + ) + else: + syn_df = df[feature_cols + [target_col]].sample( + n=target_n, replace=True, random_state=42 + ).reset_index(drop=True) + +syn_df = syn_df[list(df.columns)] +if len(syn_df) != target_n: + raise RuntimeError( + f"[TabPFGen] Row alignment failed: got {len(syn_df)}, expected {target_n}" + ) +syn_df.to_csv("/work/output-Benchmark-trainonly-v1/c14/tabpfgen/tabpfgen-c14-20260504_200228/tabpfgen-c14-240000-20260504_200233.csv", index=False) +print(f"[TabPFGen] Saved {len(syn_df)} rows -> /work/output-Benchmark-trainonly-v1/c14/tabpfgen/tabpfgen-c14-20260504_200228/tabpfgen-c14-240000-20260504_200233.csv") diff --git a/timecost/c14/tabpfgen/tabpfgen-c14-20260504_200228/gen_20260504_200233.log b/timecost/c14/tabpfgen/tabpfgen-c14-20260504_200228/gen_20260504_200233.log new file mode 100644 index 0000000000000000000000000000000000000000..21facc85b846e61d7bc26c66496c8a265593e34b --- /dev/null +++ b/timecost/c14/tabpfgen/tabpfgen-c14-20260504_200228/gen_20260504_200233.log @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:178c4e44408990178105c81fb3d2b512d18d90def7206e3fcf6f4d2d94a03560 +size 177457 diff --git a/timecost/c14/tabpfgen/tabpfgen-c14-20260504_200228/input_snapshot.json b/timecost/c14/tabpfgen/tabpfgen-c14-20260504_200228/input_snapshot.json new file mode 100644 index 0000000000000000000000000000000000000000..7b3f769e8fd8154b95fc0600df1ab16bb5991aec --- /dev/null +++ b/timecost/c14/tabpfgen/tabpfgen-c14-20260504_200228/input_snapshot.json @@ -0,0 +1,36 @@ +{ + "dataset_id": "c14", + "model": "tabpfgen", + "inputs": { + "train_csv": { + "path": "/data/jialinzhang/SynthesizePipeline-server/DatasetNew/c14/c14-train.csv", + "exists": true, + "size": 31957080, + "sha256": "4a11abde6a7fae9f8bb1a1d7e31035b9dd61587d2721749a52d78d65441fba5e" + }, + "val_csv": { + "path": "/data/jialinzhang/SynthesizePipeline-server/DatasetNew/c14/c14-val.csv", + "exists": true, + "size": 3995920, + "sha256": "b04d723eeb59d339a356302660463c129141b4213fefbf472ef48f8a4daa50c9" + }, + "test_csv": { + "path": "/data/jialinzhang/SynthesizePipeline-server/DatasetNew/c14/c14-test.csv", + "exists": true, + "size": 3995840, + "sha256": "4780b90e46f6b440983cc9315cad8bca0e86bd26d8877ffae7111258fba0a132" + }, + "profile_json": { + "path": "/data/jialinzhang/SynthesizePipeline-server/DatasetNew/artifacts/data_core/tabular/c14/c14-dataset_profile.json", + "exists": true, + "size": 9505, + "sha256": "577cc5830dcb336243555d3d41c06e2e7c0a63df2a9caccb7a0411b9332cde15" + }, + "contract_json": { + "path": "/data/jialinzhang/SynthesizePipeline-server/DatasetNew/artifacts/data_core/tabular/c14/c14-dataset_contract_v1.json", + "exists": true, + "size": 11901, + "sha256": "955197dff3346d55aaa999adf98d64c375a7e4ca9bc4bcfe626499c9cfea9a41" + } + } +} \ No newline at end of file diff --git a/timecost/c14/tabpfgen/tabpfgen-c14-20260504_200228/public_gate/normalized_schema_snapshot.json b/timecost/c14/tabpfgen/tabpfgen-c14-20260504_200228/public_gate/normalized_schema_snapshot.json new file mode 100644 index 0000000000000000000000000000000000000000..c43047a97cac9542e79dfa127e651be7146aa2a4 --- /dev/null +++ b/timecost/c14/tabpfgen/tabpfgen-c14-20260504_200228/public_gate/normalized_schema_snapshot.json @@ -0,0 +1,509 @@ +{ + "dataset_id": "c14", + "target_column": "target", + "task_type": "classification", + "columns": [ + { + "name": "id", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 20000, + "unique_ratio": 0.083333, + "example_values": [ + "182547", + "28342", + "172611", + "81876", + "110780" + ] + } + }, + { + "name": "bin_0", + "role": "feature", + "semantic_type": "boolean", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 2, + "unique_ratio": 8e-06, + "example_values": [ + "0", + "1" + ] + } + }, + { + "name": "bin_1", + "role": "feature", + "semantic_type": "boolean", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 2, + "unique_ratio": 8e-06, + "example_values": [ + "0", + "1" + ] + } + }, + { + "name": "bin_2", + "role": "feature", + "semantic_type": "boolean", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 2, + "unique_ratio": 8e-06, + "example_values": [ + "0", + "1" + ] + } + }, + { + "name": "bin_3", + "role": "feature", + "semantic_type": "boolean", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 2, + "unique_ratio": 8e-06, + "example_values": [ + "F", + "T" + ] + } + }, + { + "name": "bin_4", + "role": "feature", + "semantic_type": "boolean", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 2, + "unique_ratio": 8e-06, + "example_values": [ + "Y", + "N" + ] + } + }, + { + "name": "nom_0", + "role": "feature", + "semantic_type": "categorical", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 3, + "unique_ratio": 1.3e-05, + "example_values": [ + "Blue", + "Green", + "Red" + ] + } + }, + { + "name": "nom_1", + "role": "feature", + "semantic_type": "categorical", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 6, + "unique_ratio": 2.5e-05, + "example_values": [ + "Trapezoid", + "Polygon", + "Square", + "Star", + "Triangle" + ] + } + }, + { + "name": "nom_2", + "role": "feature", + "semantic_type": "categorical", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 6, + "unique_ratio": 2.5e-05, + "example_values": [ + "Cat", + "Dog", + "Lion", + "Snake", + "Axolotl" + ] + } + }, + { + "name": "nom_3", + "role": "feature", + "semantic_type": "categorical", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 6, + "unique_ratio": 2.5e-05, + "example_values": [ + "China", + "Finland", + "Canada", + "India", + "Russia" + ] + } + }, + { + "name": "nom_4", + "role": "feature", + "semantic_type": "categorical", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 4, + "unique_ratio": 1.7e-05, + "example_values": [ + "Oboe", + "Bassoon", + "Theremin", + "Piano" + ] + } + }, + { + "name": "nom_5", + "role": "feature", + "semantic_type": "categorical", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 222, + "unique_ratio": 0.000925, + "example_values": [ + "c5725677e", + "92190168b", + "dbfb714a4", + "60a44c8f4", + "e70a6270d" + ] + } + }, + { + "name": "nom_6", + "role": "feature", + "semantic_type": "categorical", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 522, + "unique_ratio": 0.002175, + "example_values": [ + "231233ca9", + "79a82b7c0", + "9a70de492", + "cad70d692", + "6d2cd10c5" + ] + } + }, + { + "name": "nom_7", + "role": "feature", + "semantic_type": "categorical", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 1219, + "unique_ratio": 0.005079, + "example_values": [ + "673d3c1c0", + "7ad3e362c", + "fcd030cc2", + "27e8d4511", + "7df1399cb" + ] + } + }, + { + "name": "nom_8", + "role": "feature", + "semantic_type": "categorical", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 2215, + "unique_ratio": 0.009229, + "example_values": [ + "4fbb167ac", + "7d97eba78", + "b886d6c1c", + "a9d35cede", + "fd0041a98" + ] + } + }, + { + "name": "nom_9", + "role": "feature", + "semantic_type": "categorical", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 11927, + "unique_ratio": 0.049696, + "example_values": [ + "1f31c5cc1", + "89539e0fa", + "8a34e794f", + "34760ea8a", + "46b472cdb" + ] + } + }, + { + "name": "ord_0", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 3, + "unique_ratio": 1.3e-05, + "example_values": [ + "1", + "2", + "3" + ] + } + }, + { + "name": "ord_1", + "role": "feature", + "semantic_type": "categorical", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 5, + "unique_ratio": 2.1e-05, + "example_values": [ + "Grandmaster", + "Contributor", + "Novice", + "Master", + "Expert" + ] + } + }, + { + "name": "ord_2", + "role": "feature", + "semantic_type": "categorical", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 6, + "unique_ratio": 2.5e-05, + "example_values": [ + "Lava Hot", + "Boiling Hot", + "Freezing", + "Hot", + "Cold" + ] + } + }, + { + "name": "ord_3", + "role": "feature", + "semantic_type": "categorical", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 15, + "unique_ratio": 6.3e-05, + "example_values": [ + "g", + "j", + "l", + "f", + "k" + ] + } + }, + { + "name": "ord_4", + "role": "feature", + "semantic_type": "categorical", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 26, + "unique_ratio": 0.000108, + "example_values": [ + "L", + "S", + "K", + "I", + "A" + ] + } + }, + { + "name": "ord_5", + "role": "feature", + "semantic_type": "categorical", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 192, + "unique_ratio": 0.0008, + "example_values": [ + "qo", + "aM", + "AP", + "fO", + "hh" + ] + } + }, + { + "name": "day", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 7, + "unique_ratio": 2.9e-05, + "example_values": [ + "1", + "2", + "7", + "4", + "3" + ] + } + }, + { + "name": "month", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 12, + "unique_ratio": 5e-05, + "example_values": [ + "12", + "4", + "8", + "2", + "9" + ] + } + }, + { + "name": "target", + "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": 8e-06, + "example_values": [ + "0", + "1" + ] + } + } + ] +} \ No newline at end of file diff --git a/timecost/c14/tabpfgen/tabpfgen-c14-20260504_200228/public_gate/public_gate_report.json b/timecost/c14/tabpfgen/tabpfgen-c14-20260504_200228/public_gate/public_gate_report.json new file mode 100644 index 0000000000000000000000000000000000000000..9374818599b8101d02e793ea785975d77363e3fd --- /dev/null +++ b/timecost/c14/tabpfgen/tabpfgen-c14-20260504_200228/public_gate/public_gate_report.json @@ -0,0 +1,37 @@ +{ + "dataset_id": "c14", + "status": "pass", + "checks": [ + { + "check_id": "PG001_csv_parse_ok", + "status": "pass" + }, + { + "check_id": "PG002_split_header_consistent", + "status": "pass" + }, + { + "check_id": "PG003_profile_header_match", + "status": "pass" + }, + { + "check_id": "PG004_missing_token_normalized", + "status": "pass" + }, + { + "check_id": "PG005_semantic_type_validated", + "status": "pass" + }, + { + "check_id": "PG006_target_defined_and_valid", + "status": "pass" + } + ], + "target_column": "target", + "task_type": "classification", + "input_splits": { + "train": "/data/jialinzhang/SynthesizePipeline-server/DatasetNew/c14/c14-train.csv", + "val": "/data/jialinzhang/SynthesizePipeline-server/DatasetNew/c14/c14-val.csv", + "test": "/data/jialinzhang/SynthesizePipeline-server/DatasetNew/c14/c14-test.csv" + } +} \ No newline at end of file diff --git a/timecost/c14/tabpfgen/tabpfgen-c14-20260504_200228/public_gate/staged_input_manifest.json b/timecost/c14/tabpfgen/tabpfgen-c14-20260504_200228/public_gate/staged_input_manifest.json new file mode 100644 index 0000000000000000000000000000000000000000..6ea136ffdfd63b11d1ee0a1a5ae3ebedfc0289b9 --- /dev/null +++ b/timecost/c14/tabpfgen/tabpfgen-c14-20260504_200228/public_gate/staged_input_manifest.json @@ -0,0 +1,514 @@ +{ + "dataset_id": "c14", + "target_column": "target", + "task_type": "classification", + "train_csv": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/c14/tabpfgen/tabpfgen-c14-20260504_200228/staged/public/train.csv", + "val_csv": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/c14/tabpfgen/tabpfgen-c14-20260504_200228/staged/public/val.csv", + "test_csv": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/c14/tabpfgen/tabpfgen-c14-20260504_200228/staged/public/test.csv", + "features_json": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/c14/tabpfgen/tabpfgen-c14-20260504_200228/staged/public/staged_features.json", + "public_gate_report": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/c14/tabpfgen/tabpfgen-c14-20260504_200228/public_gate/public_gate_report.json", + "column_schema": [ + { + "name": "id", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 20000, + "unique_ratio": 0.083333, + "example_values": [ + "182547", + "28342", + "172611", + "81876", + "110780" + ] + } + }, + { + "name": "bin_0", + "role": "feature", + "semantic_type": "boolean", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 2, + "unique_ratio": 8e-06, + "example_values": [ + "0", + "1" + ] + } + }, + { + "name": "bin_1", + "role": "feature", + "semantic_type": "boolean", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 2, + "unique_ratio": 8e-06, + "example_values": [ + "0", + "1" + ] + } + }, + { + "name": "bin_2", + "role": "feature", + "semantic_type": "boolean", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 2, + "unique_ratio": 8e-06, + "example_values": [ + "0", + "1" + ] + } + }, + { + "name": "bin_3", + "role": "feature", + "semantic_type": "boolean", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 2, + "unique_ratio": 8e-06, + "example_values": [ + "F", + "T" + ] + } + }, + { + "name": "bin_4", + "role": "feature", + "semantic_type": "boolean", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 2, + "unique_ratio": 8e-06, + "example_values": [ + "Y", + "N" + ] + } + }, + { + "name": "nom_0", + "role": "feature", + "semantic_type": "categorical", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 3, + "unique_ratio": 1.3e-05, + "example_values": [ + "Blue", + "Green", + "Red" + ] + } + }, + { + "name": "nom_1", + "role": "feature", + "semantic_type": "categorical", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 6, + "unique_ratio": 2.5e-05, + "example_values": [ + "Trapezoid", + "Polygon", + "Square", + "Star", + "Triangle" + ] + } + }, + { + "name": "nom_2", + "role": "feature", + "semantic_type": "categorical", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 6, + "unique_ratio": 2.5e-05, + "example_values": [ + "Cat", + "Dog", + "Lion", + "Snake", + "Axolotl" + ] + } + }, + { + "name": "nom_3", + "role": "feature", + "semantic_type": "categorical", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 6, + "unique_ratio": 2.5e-05, + "example_values": [ + "China", + "Finland", + "Canada", + "India", + "Russia" + ] + } + }, + { + "name": "nom_4", + "role": "feature", + "semantic_type": "categorical", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 4, + "unique_ratio": 1.7e-05, + "example_values": [ + "Oboe", + "Bassoon", + "Theremin", + "Piano" + ] + } + }, + { + "name": "nom_5", + "role": "feature", + "semantic_type": "categorical", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 222, + "unique_ratio": 0.000925, + "example_values": [ + "c5725677e", + "92190168b", + "dbfb714a4", + "60a44c8f4", + "e70a6270d" + ] + } + }, + { + "name": "nom_6", + "role": "feature", + "semantic_type": "categorical", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 522, + "unique_ratio": 0.002175, + "example_values": [ + "231233ca9", + "79a82b7c0", + "9a70de492", + "cad70d692", + "6d2cd10c5" + ] + } + }, + { + "name": "nom_7", + "role": "feature", + "semantic_type": "categorical", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 1219, + "unique_ratio": 0.005079, + "example_values": [ + "673d3c1c0", + "7ad3e362c", + "fcd030cc2", + "27e8d4511", + "7df1399cb" + ] + } + }, + { + "name": "nom_8", + "role": "feature", + "semantic_type": "categorical", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 2215, + "unique_ratio": 0.009229, + "example_values": [ + "4fbb167ac", + "7d97eba78", + "b886d6c1c", + "a9d35cede", + "fd0041a98" + ] + } + }, + { + "name": "nom_9", + "role": "feature", + "semantic_type": "categorical", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 11927, + "unique_ratio": 0.049696, + "example_values": [ + "1f31c5cc1", + "89539e0fa", + "8a34e794f", + "34760ea8a", + "46b472cdb" + ] + } + }, + { + "name": "ord_0", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 3, + "unique_ratio": 1.3e-05, + "example_values": [ + "1", + "2", + "3" + ] + } + }, + { + "name": "ord_1", + "role": "feature", + "semantic_type": "categorical", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 5, + "unique_ratio": 2.1e-05, + "example_values": [ + "Grandmaster", + "Contributor", + "Novice", + "Master", + "Expert" + ] + } + }, + { + "name": "ord_2", + "role": "feature", + "semantic_type": "categorical", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 6, + "unique_ratio": 2.5e-05, + "example_values": [ + "Lava Hot", + "Boiling Hot", + "Freezing", + "Hot", + "Cold" + ] + } + }, + { + "name": "ord_3", + "role": "feature", + "semantic_type": "categorical", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 15, + "unique_ratio": 6.3e-05, + "example_values": [ + "g", + "j", + "l", + "f", + "k" + ] + } + }, + { + "name": "ord_4", + "role": "feature", + "semantic_type": "categorical", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 26, + "unique_ratio": 0.000108, + "example_values": [ + "L", + "S", + "K", + "I", + "A" + ] + } + }, + { + "name": "ord_5", + "role": "feature", + "semantic_type": "categorical", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 192, + "unique_ratio": 0.0008, + "example_values": [ + "qo", + "aM", + "AP", + "fO", + "hh" + ] + } + }, + { + "name": "day", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 7, + "unique_ratio": 2.9e-05, + "example_values": [ + "1", + "2", + "7", + "4", + "3" + ] + } + }, + { + "name": "month", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 12, + "unique_ratio": 5e-05, + "example_values": [ + "12", + "4", + "8", + "2", + "9" + ] + } + }, + { + "name": "target", + "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": 8e-06, + "example_values": [ + "0", + "1" + ] + } + } + ] +} \ No newline at end of file diff --git a/timecost/c14/tabpfgen/tabpfgen-c14-20260504_200228/run_config.json b/timecost/c14/tabpfgen/tabpfgen-c14-20260504_200228/run_config.json new file mode 100644 index 0000000000000000000000000000000000000000..d6d68d21309eba20584992928bda25e3dfc80a60 --- /dev/null +++ b/timecost/c14/tabpfgen/tabpfgen-c14-20260504_200228/run_config.json @@ -0,0 +1,43 @@ +{ + "schema_version": 1, + "recorded_at": "2026-05-04T20:02:30", + "dataset_id": "c14", + "model": "tabpfgen", + "work_dir": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/c14/tabpfgen/tabpfgen-c14-20260504_200228", + "dataset_source_requested": "new", + "dataset_source_resolved": "new", + "cli_args": { + "model": "tabpfgen", + "dataset": "c14", + "dataset_source": "new", + "train": true, + "generate": true, + "num_rows": 0, + "epochs": null, + "output_dir": null, + "model_dir": null, + "work_dir": null, + "resume": false, + "no_stats": false + }, + "resolved": { + "num_rows": 240000, + "model_path": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/c14/tabpfgen/tabpfgen-c14-20260504_200228", + "output_csv": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/c14/tabpfgen/tabpfgen-c14-20260504_200228/tabpfgen-c14-240000-20260504_200233.csv" + }, + "input_artifacts": { + "public_gate_report": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/c14/tabpfgen/tabpfgen-c14-20260504_200228/public_gate/public_gate_report.json", + "public_manifest": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/c14/tabpfgen/tabpfgen-c14-20260504_200228/public_gate/staged_input_manifest.json", + "model_manifest": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/c14/tabpfgen/tabpfgen-c14-20260504_200228/staged/tabpfgen/model_input_manifest.json", + "train_csv": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/c14/tabpfgen/tabpfgen-c14-20260504_200228/staged/public/train.csv", + "features_json": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/c14/tabpfgen/tabpfgen-c14-20260504_200228/staged/public/staged_features.json", + "target_column": "target", + "task_type": "classification" + }, + "env_overrides": { + "BENCHMARK_TABPFGEN_GPUS": "device=3", + "TABPFGEN_DEVICE": "cuda", + "TABPFGEN_FIT_MAX_ROWS": "50000", + "TABPFGEN_GEN_CHUNK_ROWS": "256" + } +} \ No newline at end of file diff --git a/timecost/c14/tabpfgen/tabpfgen-c14-20260504_200228/runtime_result.json b/timecost/c14/tabpfgen/tabpfgen-c14-20260504_200228/runtime_result.json new file mode 100644 index 0000000000000000000000000000000000000000..066efe51a2435ca09294eaef86d24d8132485e1e --- /dev/null +++ b/timecost/c14/tabpfgen/tabpfgen-c14-20260504_200228/runtime_result.json @@ -0,0 +1,27 @@ +{ + "dataset_id": "c14", + "model": "tabpfgen", + "run_id": "tabpfgen-c14-20260504_200228", + "public_gate_status": "pass", + "adapter_ready_status": "pass", + "train_status": "success", + "generate_status": "success", + "reason_code": null, + "reason_detail": null, + "artifacts": { + "synthetic_csv": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/c14/tabpfgen/tabpfgen-c14-20260504_200228/tabpfgen-c14-240000-20260504_200233.csv", + "model_path": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/c14/tabpfgen/tabpfgen-c14-20260504_200228" + }, + "timings": { + "train": { + "started_at": "2026-05-04T20:02:31", + "ended_at": "2026-05-04T20:02:33", + "duration_sec": 1.594 + }, + "generate": { + "started_at": "2026-05-04T20:02:33", + "ended_at": "2026-05-05T01:55:54", + "duration_sec": 21200.974 + } + } +} \ No newline at end of file diff --git a/timecost/c14/tabpfgen/tabpfgen-c14-20260504_200228/staged/public/staged_features.json b/timecost/c14/tabpfgen/tabpfgen-c14-20260504_200228/staged/public/staged_features.json new file mode 100644 index 0000000000000000000000000000000000000000..508fbe870849f119fe0f440e76f620b91489d965 --- /dev/null +++ b/timecost/c14/tabpfgen/tabpfgen-c14-20260504_200228/staged/public/staged_features.json @@ -0,0 +1,127 @@ +[ + { + "feature_name": "id", + "data_type": "continuous", + "is_target": false + }, + { + "feature_name": "bin_0", + "data_type": "binary", + "is_target": false + }, + { + "feature_name": "bin_1", + "data_type": "binary", + "is_target": false + }, + { + "feature_name": "bin_2", + "data_type": "binary", + "is_target": false + }, + { + "feature_name": "bin_3", + "data_type": "binary", + "is_target": false + }, + { + "feature_name": "bin_4", + "data_type": "binary", + "is_target": false + }, + { + "feature_name": "nom_0", + "data_type": "categorical", + "is_target": false + }, + { + "feature_name": "nom_1", + "data_type": "categorical", + "is_target": false + }, + { + "feature_name": "nom_2", + "data_type": "categorical", + "is_target": false + }, + { + "feature_name": "nom_3", + "data_type": "categorical", + "is_target": false + }, + { + "feature_name": "nom_4", + "data_type": "categorical", + "is_target": false + }, + { + "feature_name": "nom_5", + "data_type": "categorical", + "is_target": false + }, + { + "feature_name": "nom_6", + "data_type": "categorical", + "is_target": false + }, + { + "feature_name": "nom_7", + "data_type": "categorical", + "is_target": false + }, + { + "feature_name": "nom_8", + "data_type": "categorical", + "is_target": false + }, + { + "feature_name": "nom_9", + "data_type": "categorical", + "is_target": false + }, + { + "feature_name": "ord_0", + "data_type": "continuous", + "is_target": false + }, + { + "feature_name": "ord_1", + "data_type": "categorical", + "is_target": false + }, + { + "feature_name": "ord_2", + "data_type": "categorical", + "is_target": false + }, + { + "feature_name": "ord_3", + "data_type": "categorical", + "is_target": false + }, + { + "feature_name": "ord_4", + "data_type": "categorical", + "is_target": false + }, + { + "feature_name": "ord_5", + "data_type": "categorical", + "is_target": false + }, + { + "feature_name": "day", + "data_type": "continuous", + "is_target": false + }, + { + "feature_name": "month", + "data_type": "continuous", + "is_target": false + }, + { + "feature_name": "target", + "data_type": "binary", + "is_target": true + } +] \ No newline at end of file diff --git a/timecost/c14/tabpfgen/tabpfgen-c14-20260504_200228/staged/public/test.csv b/timecost/c14/tabpfgen/tabpfgen-c14-20260504_200228/staged/public/test.csv new file mode 100644 index 0000000000000000000000000000000000000000..afbef1e22ba9597cf509fb91aa271ff6908ca0a9 --- /dev/null +++ b/timecost/c14/tabpfgen/tabpfgen-c14-20260504_200228/staged/public/test.csv @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:617ecb620416375c67546e0fa5a8b9a3923d689bda904dc23824ea175d1f8597 +size 3965839 diff --git a/timecost/c14/tabpfgen/tabpfgen-c14-20260504_200228/staged/public/train.csv b/timecost/c14/tabpfgen/tabpfgen-c14-20260504_200228/staged/public/train.csv new file mode 100644 index 0000000000000000000000000000000000000000..322e9de210d736baf266fa4930517b3827d3bf63 --- /dev/null +++ b/timecost/c14/tabpfgen/tabpfgen-c14-20260504_200228/staged/public/train.csv @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:12398ccb68a2499b9c126f61b25f03c36a65f026d755e1d5ff5653e614676167 +size 31717079 diff --git a/timecost/c14/tabpfgen/tabpfgen-c14-20260504_200228/staged/public/val.csv b/timecost/c14/tabpfgen/tabpfgen-c14-20260504_200228/staged/public/val.csv new file mode 100644 index 0000000000000000000000000000000000000000..594db5d9c0a27ce284d599b8bf62685189510e61 --- /dev/null +++ b/timecost/c14/tabpfgen/tabpfgen-c14-20260504_200228/staged/public/val.csv @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:f40dbd7bbd9e2783c24d0d12ec35a85581835d45238774eb0676de44a734feda +size 3965919 diff --git a/timecost/c14/tabpfgen/tabpfgen-c14-20260504_200228/staged/tabpfgen/adapter_report.json b/timecost/c14/tabpfgen/tabpfgen-c14-20260504_200228/staged/tabpfgen/adapter_report.json new file mode 100644 index 0000000000000000000000000000000000000000..2e252ef0a8dcc20c926c049e7851420d87acf930 --- /dev/null +++ b/timecost/c14/tabpfgen/tabpfgen-c14-20260504_200228/staged/tabpfgen/adapter_report.json @@ -0,0 +1,7 @@ +{ + "adapter_ready_status": "pass", + "adapter_fail_reason_code": null, + "adapter_fail_detail": null, + "adapter_transforms_applied": [], + "model_input_manifest": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/c14/tabpfgen/tabpfgen-c14-20260504_200228/staged/tabpfgen/model_input_manifest.json" +} \ No newline at end of file diff --git a/timecost/c14/tabpfgen/tabpfgen-c14-20260504_200228/staged/tabpfgen/adapter_transforms_applied.json b/timecost/c14/tabpfgen/tabpfgen-c14-20260504_200228/staged/tabpfgen/adapter_transforms_applied.json new file mode 100644 index 0000000000000000000000000000000000000000..0637a088a01e8ddab3bf3fa98dbe804cbde1a0dc --- /dev/null +++ b/timecost/c14/tabpfgen/tabpfgen-c14-20260504_200228/staged/tabpfgen/adapter_transforms_applied.json @@ -0,0 +1 @@ +[] \ No newline at end of file diff --git a/timecost/c14/tabpfgen/tabpfgen-c14-20260504_200228/staged/tabpfgen/model_input_manifest.json b/timecost/c14/tabpfgen/tabpfgen-c14-20260504_200228/staged/tabpfgen/model_input_manifest.json new file mode 100644 index 0000000000000000000000000000000000000000..681bb003d3a8fbb7957bf3377cff2432c053ff7d --- /dev/null +++ b/timecost/c14/tabpfgen/tabpfgen-c14-20260504_200228/staged/tabpfgen/model_input_manifest.json @@ -0,0 +1,516 @@ +{ + "dataset_id": "c14", + "model": "tabpfgen", + "target_column": "target", + "task_type": "classification", + "column_schema": [ + { + "name": "id", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 20000, + "unique_ratio": 0.083333, + "example_values": [ + "182547", + "28342", + "172611", + "81876", + "110780" + ] + } + }, + { + "name": "bin_0", + "role": "feature", + "semantic_type": "boolean", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 2, + "unique_ratio": 8e-06, + "example_values": [ + "0", + "1" + ] + } + }, + { + "name": "bin_1", + "role": "feature", + "semantic_type": "boolean", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 2, + "unique_ratio": 8e-06, + "example_values": [ + "0", + "1" + ] + } + }, + { + "name": "bin_2", + "role": "feature", + "semantic_type": "boolean", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 2, + "unique_ratio": 8e-06, + "example_values": [ + "0", + "1" + ] + } + }, + { + "name": "bin_3", + "role": "feature", + "semantic_type": "boolean", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 2, + "unique_ratio": 8e-06, + "example_values": [ + "F", + "T" + ] + } + }, + { + "name": "bin_4", + "role": "feature", + "semantic_type": "boolean", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 2, + "unique_ratio": 8e-06, + "example_values": [ + "Y", + "N" + ] + } + }, + { + "name": "nom_0", + "role": "feature", + "semantic_type": "categorical", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 3, + "unique_ratio": 1.3e-05, + "example_values": [ + "Blue", + "Green", + "Red" + ] + } + }, + { + "name": "nom_1", + "role": "feature", + "semantic_type": "categorical", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 6, + "unique_ratio": 2.5e-05, + "example_values": [ + "Trapezoid", + "Polygon", + "Square", + "Star", + "Triangle" + ] + } + }, + { + "name": "nom_2", + "role": "feature", + "semantic_type": "categorical", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 6, + "unique_ratio": 2.5e-05, + "example_values": [ + "Cat", + "Dog", + "Lion", + "Snake", + "Axolotl" + ] + } + }, + { + "name": "nom_3", + "role": "feature", + "semantic_type": "categorical", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 6, + "unique_ratio": 2.5e-05, + "example_values": [ + "China", + "Finland", + "Canada", + "India", + "Russia" + ] + } + }, + { + "name": "nom_4", + "role": "feature", + "semantic_type": "categorical", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 4, + "unique_ratio": 1.7e-05, + "example_values": [ + "Oboe", + "Bassoon", + "Theremin", + "Piano" + ] + } + }, + { + "name": "nom_5", + "role": "feature", + "semantic_type": "categorical", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 222, + "unique_ratio": 0.000925, + "example_values": [ + "c5725677e", + "92190168b", + "dbfb714a4", + "60a44c8f4", + "e70a6270d" + ] + } + }, + { + "name": "nom_6", + "role": "feature", + "semantic_type": "categorical", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 522, + "unique_ratio": 0.002175, + "example_values": [ + "231233ca9", + "79a82b7c0", + "9a70de492", + "cad70d692", + "6d2cd10c5" + ] + } + }, + { + "name": "nom_7", + "role": "feature", + "semantic_type": "categorical", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 1219, + "unique_ratio": 0.005079, + "example_values": [ + "673d3c1c0", + "7ad3e362c", + "fcd030cc2", + "27e8d4511", + "7df1399cb" + ] + } + }, + { + "name": "nom_8", + "role": "feature", + "semantic_type": "categorical", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 2215, + "unique_ratio": 0.009229, + "example_values": [ + "4fbb167ac", + "7d97eba78", + "b886d6c1c", + "a9d35cede", + "fd0041a98" + ] + } + }, + { + "name": "nom_9", + "role": "feature", + "semantic_type": "categorical", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 11927, + "unique_ratio": 0.049696, + "example_values": [ + "1f31c5cc1", + "89539e0fa", + "8a34e794f", + "34760ea8a", + "46b472cdb" + ] + } + }, + { + "name": "ord_0", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 3, + "unique_ratio": 1.3e-05, + "example_values": [ + "1", + "2", + "3" + ] + } + }, + { + "name": "ord_1", + "role": "feature", + "semantic_type": "categorical", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 5, + "unique_ratio": 2.1e-05, + "example_values": [ + "Grandmaster", + "Contributor", + "Novice", + "Master", + "Expert" + ] + } + }, + { + "name": "ord_2", + "role": "feature", + "semantic_type": "categorical", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 6, + "unique_ratio": 2.5e-05, + "example_values": [ + "Lava Hot", + "Boiling Hot", + "Freezing", + "Hot", + "Cold" + ] + } + }, + { + "name": "ord_3", + "role": "feature", + "semantic_type": "categorical", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 15, + "unique_ratio": 6.3e-05, + "example_values": [ + "g", + "j", + "l", + "f", + "k" + ] + } + }, + { + "name": "ord_4", + "role": "feature", + "semantic_type": "categorical", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 26, + "unique_ratio": 0.000108, + "example_values": [ + "L", + "S", + "K", + "I", + "A" + ] + } + }, + { + "name": "ord_5", + "role": "feature", + "semantic_type": "categorical", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 192, + "unique_ratio": 0.0008, + "example_values": [ + "qo", + "aM", + "AP", + "fO", + "hh" + ] + } + }, + { + "name": "day", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 7, + "unique_ratio": 2.9e-05, + "example_values": [ + "1", + "2", + "7", + "4", + "3" + ] + } + }, + { + "name": "month", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 12, + "unique_ratio": 5e-05, + "example_values": [ + "12", + "4", + "8", + "2", + "9" + ] + } + }, + { + "name": "target", + "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": 8e-06, + "example_values": [ + "0", + "1" + ] + } + } + ], + "public_manifest": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/c14/tabpfgen/tabpfgen-c14-20260504_200228/public_gate/staged_input_manifest.json", + "train_csv": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/c14/tabpfgen/tabpfgen-c14-20260504_200228/staged/public/train.csv", + "val_csv": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/c14/tabpfgen/tabpfgen-c14-20260504_200228/staged/public/val.csv", + "test_csv": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/c14/tabpfgen/tabpfgen-c14-20260504_200228/staged/public/test.csv", + "features_json": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/c14/tabpfgen/tabpfgen-c14-20260504_200228/staged/public/staged_features.json", + "public_gate_report": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/c14/tabpfgen/tabpfgen-c14-20260504_200228/public_gate/public_gate_report.json" +} \ No newline at end of file diff --git a/timecost/c14/tabpfgen/tabpfgen-c14-20260504_200228/tabpfgen-c14-240000-20260504_200233.csv b/timecost/c14/tabpfgen/tabpfgen-c14-20260504_200228/tabpfgen-c14-240000-20260504_200233.csv new file mode 100644 index 0000000000000000000000000000000000000000..a5247981dbe9cc9207bd3c5ffccfc3c9425bf01b --- /dev/null +++ b/timecost/c14/tabpfgen/tabpfgen-c14-20260504_200228/tabpfgen-c14-240000-20260504_200233.csv @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:cd484654dbea8d6e6f8b5ebbe543811833ac7945eb690c371770f93d3b8ff22f +size 45860985 diff --git a/timecost/c14/tabpfgen/tabpfgen-c14-20260504_200228/tabpfgen_meta.json b/timecost/c14/tabpfgen/tabpfgen-c14-20260504_200228/tabpfgen_meta.json new file mode 100644 index 0000000000000000000000000000000000000000..072b7cd4ddf617db3c9219aa436f873f9b42b79f --- /dev/null +++ b/timecost/c14/tabpfgen/tabpfgen-c14-20260504_200228/tabpfgen_meta.json @@ -0,0 +1,9 @@ +{ + "csv_path": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/c14/tabpfgen/tabpfgen-c14-20260504_200228/staged/public/train.csv", + "json_path": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/c14/tabpfgen/tabpfgen-c14-20260504_200228/staged/public/staged_features.json", + "target_col": "target", + "is_classification": true, + "task_type": "classification", + "n_rows": 240000, + "n_cols": 25 +} \ No newline at end of file diff --git a/timecost/c14/tabpfgen/tabpfgen-c14-20260504_200228/train_20260504_200233.log b/timecost/c14/tabpfgen/tabpfgen-c14-20260504_200228/train_20260504_200233.log new file mode 100644 index 0000000000000000000000000000000000000000..49e5e98071c3b7f583af9c320f7cd7631052d33c --- /dev/null +++ b/timecost/c14/tabpfgen/tabpfgen-c14-20260504_200228/train_20260504_200233.log @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:e230a9a47ea32368229f50ddce0c96f6ae99a399c0f2060b61cdca280b44cdf2 +size 599 diff --git a/timecost/c14/tabsyn/tabsyn-c14-20260504_042655/_tabsyn_sample.py b/timecost/c14/tabsyn/tabsyn-c14-20260504_042655/_tabsyn_sample.py new file mode 100644 index 0000000000000000000000000000000000000000..f70a3098b8a6ebb0d28c902664c47e7d5ac5d161 --- /dev/null +++ b/timecost/c14/tabsyn/tabsyn-c14-20260504_042655/_tabsyn_sample.py @@ -0,0 +1,43 @@ +import os, sys, subprocess + +work_dir = "/work/output-Benchmark-trainonly-v1/c14/tabsyn/tabsyn-c14-20260504_042655" +dataname = "tabsyn_c14" +output_csv = "/work/output-Benchmark-trainonly-v1/c14/tabsyn/tabsyn-c14-20260504_042655/tabsyn-c14-240000-20260504_051538.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 240000 rows") +env = os.environ.copy() +env.setdefault("TABSYN_RESUME", "0") +env.setdefault("TABSYN_VAE_BATCH_SIZE", "32") +env.setdefault("TABSYN_VAE_EVAL_BATCH_SIZE", env["TABSYN_VAE_BATCH_SIZE"]) +env.setdefault("TABSYN_VAE_INFER_BATCH_SIZE", env["TABSYN_VAE_BATCH_SIZE"]) +env.setdefault("TABSYN_VAE_ENCODE_BATCH_SIZE", env["TABSYN_VAE_BATCH_SIZE"]) +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/timecost/c14/tabsyn/tabsyn-c14-20260504_042655/_tabsyn_train.py b/timecost/c14/tabsyn/tabsyn-c14-20260504_042655/_tabsyn_train.py new file mode 100644 index 0000000000000000000000000000000000000000..97b66770d55044929b3f19dd3a4e53314f5a4d1a --- /dev/null +++ b/timecost/c14/tabsyn/tabsyn-c14-20260504_042655/_tabsyn_train.py @@ -0,0 +1,69 @@ +import os, sys, subprocess + +work_dir = "/work/output-Benchmark-trainonly-v1/c14/tabsyn/tabsyn-c14-20260504_042655" +dataname = "tabsyn_c14" +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", "0") +env.setdefault("TABSYN_VAE_BATCH_SIZE", "32") +env.setdefault("TABSYN_VAE_NUM_WORKERS", "0") +env.setdefault("TABSYN_VAE_EVAL_BATCH_SIZE", env["TABSYN_VAE_BATCH_SIZE"]) +env.setdefault("TABSYN_VAE_INFER_BATCH_SIZE", env["TABSYN_VAE_BATCH_SIZE"]) +env.setdefault("TABSYN_VAE_ENCODE_BATCH_SIZE", env["TABSYN_VAE_BATCH_SIZE"]) +# Safer defaults for wide tables on Docker: reduce shared-memory pressure in diffusion DataLoader. +env.setdefault("TABSYN_DIFFUSION_NUM_WORKERS", "0") +_te = 10 +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/timecost/c14/tabsyn/tabsyn-c14-20260504_042655/data/tabsyn_c14/X_cat_test.npy b/timecost/c14/tabsyn/tabsyn-c14-20260504_042655/data/tabsyn_c14/X_cat_test.npy new file mode 100644 index 0000000000000000000000000000000000000000..95cc03ccfebc7a71aafef14ec7f38f5844f747fb --- /dev/null +++ b/timecost/c14/tabsyn/tabsyn-c14-20260504_042655/data/tabsyn_c14/X_cat_test.npy @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:96fb5a86a8b5c99f151626dee541d9024bac427c393b9ed577c13dbcc6b6832d +size 38400128 diff --git a/timecost/c14/tabsyn/tabsyn-c14-20260504_042655/data/tabsyn_c14/X_cat_train.npy b/timecost/c14/tabsyn/tabsyn-c14-20260504_042655/data/tabsyn_c14/X_cat_train.npy new file mode 100644 index 0000000000000000000000000000000000000000..95cc03ccfebc7a71aafef14ec7f38f5844f747fb --- /dev/null +++ b/timecost/c14/tabsyn/tabsyn-c14-20260504_042655/data/tabsyn_c14/X_cat_train.npy @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:96fb5a86a8b5c99f151626dee541d9024bac427c393b9ed577c13dbcc6b6832d +size 38400128 diff --git a/timecost/c14/tabsyn/tabsyn-c14-20260504_042655/data/tabsyn_c14/X_num_test.npy b/timecost/c14/tabsyn/tabsyn-c14-20260504_042655/data/tabsyn_c14/X_num_test.npy new file mode 100644 index 0000000000000000000000000000000000000000..c3499d15139a46785b9614e79d47ee35f58034ea --- /dev/null +++ b/timecost/c14/tabsyn/tabsyn-c14-20260504_042655/data/tabsyn_c14/X_num_test.npy @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:3026532dc1e8f61b12f8f829ec618733e69f9da70d40e8234069ff10f3381878 +size 3840128 diff --git a/timecost/c14/tabsyn/tabsyn-c14-20260504_042655/data/tabsyn_c14/X_num_train.npy b/timecost/c14/tabsyn/tabsyn-c14-20260504_042655/data/tabsyn_c14/X_num_train.npy new file mode 100644 index 0000000000000000000000000000000000000000..c3499d15139a46785b9614e79d47ee35f58034ea --- /dev/null +++ b/timecost/c14/tabsyn/tabsyn-c14-20260504_042655/data/tabsyn_c14/X_num_train.npy @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:3026532dc1e8f61b12f8f829ec618733e69f9da70d40e8234069ff10f3381878 +size 3840128 diff --git a/timecost/c14/tabsyn/tabsyn-c14-20260504_042655/data/tabsyn_c14/info.json b/timecost/c14/tabsyn/tabsyn-c14-20260504_042655/data/tabsyn_c14/info.json new file mode 100644 index 0000000000000000000000000000000000000000..806b5df78295c3beab12baf94740486fa421dd7e --- /dev/null +++ b/timecost/c14/tabsyn/tabsyn-c14-20260504_042655/data/tabsyn_c14/info.json @@ -0,0 +1,236 @@ +{ + "name": "tabsyn_c14", + "task_type": "multiclass", + "n_num_features": 4, + "n_cat_features": 20, + "train_size": 240000, + "num_col_idx": [ + 0, + 16, + 22, + 23 + ], + "cat_col_idx": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13, + 14, + 15, + 17, + 18, + 19, + 20, + 21 + ], + "target_col_idx": [ + 24 + ], + "column_names": [ + "id", + "bin_0", + "bin_1", + "bin_2", + "bin_3", + "bin_4", + "nom_0", + "nom_1", + "nom_2", + "nom_3", + "nom_4", + "nom_5", + "nom_6", + "nom_7", + "nom_8", + "nom_9", + "ord_0", + "ord_1", + "ord_2", + "ord_3", + "ord_4", + "ord_5", + "day", + "month", + "target" + ], + "train_num": 240000, + "test_num": 240000, + "header": 0, + "file_type": "csv", + "data_path": "data/tabsyn_c14/train.csv", + "test_path": null, + "idx_mapping": { + "0": 0, + "1": 4, + "2": 5, + "3": 6, + "4": 7, + "5": 8, + "6": 9, + "7": 10, + "8": 11, + "9": 12, + "10": 13, + "11": 14, + "12": 15, + "13": 16, + "14": 17, + "15": 18, + "16": 1, + "17": 19, + "18": 20, + "19": 21, + "20": 22, + "21": 23, + "22": 2, + "23": 3, + "24": 24 + }, + "inverse_idx_mapping": { + "0": 0, + "4": 1, + "5": 2, + "6": 3, + "7": 4, + "8": 5, + "9": 6, + "10": 7, + "11": 8, + "12": 9, + "13": 10, + "14": 11, + "15": 12, + "16": 13, + "17": 14, + "18": 15, + "1": 16, + "19": 17, + "20": 18, + "21": 19, + "22": 20, + "23": 21, + "2": 22, + "3": 23, + "24": 24 + }, + "idx_name_mapping": { + "0": "id", + "1": "bin_0", + "2": "bin_1", + "3": "bin_2", + "4": "bin_3", + "5": "bin_4", + "6": "nom_0", + "7": "nom_1", + "8": "nom_2", + "9": "nom_3", + "10": "nom_4", + "11": "nom_5", + "12": "nom_6", + "13": "nom_7", + "14": "nom_8", + "15": "nom_9", + "16": "ord_0", + "17": "ord_1", + "18": "ord_2", + "19": "ord_3", + "20": "ord_4", + "21": "ord_5", + "22": "day", + "23": "month", + "24": "target" + }, + "n_classes": 2, + "metadata": { + "columns": { + "0": { + "sdtype": "numerical", + "computer_representation": "Float" + }, + "16": { + "sdtype": "numerical", + "computer_representation": "Float" + }, + "22": { + "sdtype": "numerical", + "computer_representation": "Float" + }, + "23": { + "sdtype": "numerical", + "computer_representation": "Float" + }, + "1": { + "sdtype": "categorical" + }, + "2": { + "sdtype": "categorical" + }, + "3": { + "sdtype": "categorical" + }, + "4": { + "sdtype": "categorical" + }, + "5": { + "sdtype": "categorical" + }, + "6": { + "sdtype": "categorical" + }, + "7": { + "sdtype": "categorical" + }, + "8": { + "sdtype": "categorical" + }, + "9": { + "sdtype": "categorical" + }, + "10": { + "sdtype": "categorical" + }, + "11": { + "sdtype": "categorical" + }, + "12": { + "sdtype": "categorical" + }, + "13": { + "sdtype": "categorical" + }, + "14": { + "sdtype": "categorical" + }, + "15": { + "sdtype": "categorical" + }, + "17": { + "sdtype": "categorical" + }, + "18": { + "sdtype": "categorical" + }, + "19": { + "sdtype": "categorical" + }, + "20": { + "sdtype": "categorical" + }, + "21": { + "sdtype": "categorical" + }, + "24": { + "sdtype": "categorical" + } + } + } +} \ No newline at end of file diff --git a/timecost/c14/tabsyn/tabsyn-c14-20260504_042655/data/tabsyn_c14/test.csv b/timecost/c14/tabsyn/tabsyn-c14-20260504_042655/data/tabsyn_c14/test.csv new file mode 100644 index 0000000000000000000000000000000000000000..6d8d9039c359043c08476b37a4617b1c2a2a1acc --- /dev/null +++ b/timecost/c14/tabsyn/tabsyn-c14-20260504_042655/data/tabsyn_c14/test.csv @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:c5921345765f8af3133fc50bf596097efd9e2f166a6a923b4951b080daf112c4 +size 16124837 diff --git a/timecost/c14/tabsyn/tabsyn-c14-20260504_042655/data/tabsyn_c14/train.csv b/timecost/c14/tabsyn/tabsyn-c14-20260504_042655/data/tabsyn_c14/train.csv new file mode 100644 index 0000000000000000000000000000000000000000..6d8d9039c359043c08476b37a4617b1c2a2a1acc --- /dev/null +++ b/timecost/c14/tabsyn/tabsyn-c14-20260504_042655/data/tabsyn_c14/train.csv @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:c5921345765f8af3133fc50bf596097efd9e2f166a6a923b4951b080daf112c4 +size 16124837 diff --git a/timecost/c14/tabsyn/tabsyn-c14-20260504_042655/data/tabsyn_c14/y_test.npy b/timecost/c14/tabsyn/tabsyn-c14-20260504_042655/data/tabsyn_c14/y_test.npy new file mode 100644 index 0000000000000000000000000000000000000000..b2d0ed6255ec373762de8f5dced79925f8486956 --- /dev/null +++ b/timecost/c14/tabsyn/tabsyn-c14-20260504_042655/data/tabsyn_c14/y_test.npy @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:9feaa3857a64a11ee3e12f755d82c94f0e23fcdd5f916c943a48340cb510db33 +size 1920128 diff --git a/timecost/c14/tabsyn/tabsyn-c14-20260504_042655/data/tabsyn_c14/y_train.npy b/timecost/c14/tabsyn/tabsyn-c14-20260504_042655/data/tabsyn_c14/y_train.npy new file mode 100644 index 0000000000000000000000000000000000000000..b2d0ed6255ec373762de8f5dced79925f8486956 --- /dev/null +++ b/timecost/c14/tabsyn/tabsyn-c14-20260504_042655/data/tabsyn_c14/y_train.npy @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:9feaa3857a64a11ee3e12f755d82c94f0e23fcdd5f916c943a48340cb510db33 +size 1920128 diff --git a/timecost/c14/tabsyn/tabsyn-c14-20260504_042655/gen_20260504_051538.log b/timecost/c14/tabsyn/tabsyn-c14-20260504_042655/gen_20260504_051538.log new file mode 100644 index 0000000000000000000000000000000000000000..681cb22c141766e80ceddb5c953b3a4cb4571920 --- /dev/null +++ b/timecost/c14/tabsyn/tabsyn-c14-20260504_042655/gen_20260504_051538.log @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:e9011555b272d0fda9bae19a1c98bcfb693ea36c19693c9ff0a40a54b1fdfb6c +size 955 diff --git a/timecost/c14/tabsyn/tabsyn-c14-20260504_042655/input_snapshot.json b/timecost/c14/tabsyn/tabsyn-c14-20260504_042655/input_snapshot.json new file mode 100644 index 0000000000000000000000000000000000000000..deb8ee1319279144dedf77bfaf26a2a90be15317 --- /dev/null +++ b/timecost/c14/tabsyn/tabsyn-c14-20260504_042655/input_snapshot.json @@ -0,0 +1,36 @@ +{ + "dataset_id": "c14", + "model": "tabsyn", + "inputs": { + "train_csv": { + "path": "/data/jialinzhang/SynthesizePipeline-server/DatasetNew/c14/c14-train.csv", + "exists": true, + "size": 31957080, + "sha256": "4a11abde6a7fae9f8bb1a1d7e31035b9dd61587d2721749a52d78d65441fba5e" + }, + "val_csv": { + "path": "/data/jialinzhang/SynthesizePipeline-server/DatasetNew/c14/c14-val.csv", + "exists": true, + "size": 3995920, + "sha256": "b04d723eeb59d339a356302660463c129141b4213fefbf472ef48f8a4daa50c9" + }, + "test_csv": { + "path": "/data/jialinzhang/SynthesizePipeline-server/DatasetNew/c14/c14-test.csv", + "exists": true, + "size": 3995840, + "sha256": "4780b90e46f6b440983cc9315cad8bca0e86bd26d8877ffae7111258fba0a132" + }, + "profile_json": { + "path": "/data/jialinzhang/SynthesizePipeline-server/DatasetNew/artifacts/data_core/tabular/c14/c14-dataset_profile.json", + "exists": true, + "size": 9505, + "sha256": "577cc5830dcb336243555d3d41c06e2e7c0a63df2a9caccb7a0411b9332cde15" + }, + "contract_json": { + "path": "/data/jialinzhang/SynthesizePipeline-server/DatasetNew/artifacts/data_core/tabular/c14/c14-dataset_contract_v1.json", + "exists": true, + "size": 11901, + "sha256": "955197dff3346d55aaa999adf98d64c375a7e4ca9bc4bcfe626499c9cfea9a41" + } + } +} \ No newline at end of file diff --git a/timecost/c14/tabsyn/tabsyn-c14-20260504_042655/public_gate/normalized_schema_snapshot.json b/timecost/c14/tabsyn/tabsyn-c14-20260504_042655/public_gate/normalized_schema_snapshot.json new file mode 100644 index 0000000000000000000000000000000000000000..c43047a97cac9542e79dfa127e651be7146aa2a4 --- /dev/null +++ b/timecost/c14/tabsyn/tabsyn-c14-20260504_042655/public_gate/normalized_schema_snapshot.json @@ -0,0 +1,509 @@ +{ + "dataset_id": "c14", + "target_column": "target", + "task_type": "classification", + "columns": [ + { + "name": "id", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 20000, + "unique_ratio": 0.083333, + "example_values": [ + "182547", + "28342", + "172611", + "81876", + "110780" + ] + } + }, + { + "name": "bin_0", + "role": "feature", + "semantic_type": "boolean", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 2, + "unique_ratio": 8e-06, + "example_values": [ + "0", + "1" + ] + } + }, + { + "name": "bin_1", + "role": "feature", + "semantic_type": "boolean", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 2, + "unique_ratio": 8e-06, + "example_values": [ + "0", + "1" + ] + } + }, + { + "name": "bin_2", + "role": "feature", + "semantic_type": "boolean", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 2, + "unique_ratio": 8e-06, + "example_values": [ + "0", + "1" + ] + } + }, + { + "name": "bin_3", + "role": "feature", + "semantic_type": "boolean", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 2, + "unique_ratio": 8e-06, + "example_values": [ + "F", + "T" + ] + } + }, + { + "name": "bin_4", + "role": "feature", + "semantic_type": "boolean", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 2, + "unique_ratio": 8e-06, + "example_values": [ + "Y", + "N" + ] + } + }, + { + "name": "nom_0", + "role": "feature", + "semantic_type": "categorical", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 3, + "unique_ratio": 1.3e-05, + "example_values": [ + "Blue", + "Green", + "Red" + ] + } + }, + { + "name": "nom_1", + "role": "feature", + "semantic_type": "categorical", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 6, + "unique_ratio": 2.5e-05, + "example_values": [ + "Trapezoid", + "Polygon", + "Square", + "Star", + "Triangle" + ] + } + }, + { + "name": "nom_2", + "role": "feature", + "semantic_type": "categorical", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 6, + "unique_ratio": 2.5e-05, + "example_values": [ + "Cat", + "Dog", + "Lion", + "Snake", + "Axolotl" + ] + } + }, + { + "name": "nom_3", + "role": "feature", + "semantic_type": "categorical", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 6, + "unique_ratio": 2.5e-05, + "example_values": [ + "China", + "Finland", + "Canada", + "India", + "Russia" + ] + } + }, + { + "name": "nom_4", + "role": "feature", + "semantic_type": "categorical", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 4, + "unique_ratio": 1.7e-05, + "example_values": [ + "Oboe", + "Bassoon", + "Theremin", + "Piano" + ] + } + }, + { + "name": "nom_5", + "role": "feature", + "semantic_type": "categorical", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 222, + "unique_ratio": 0.000925, + "example_values": [ + "c5725677e", + "92190168b", + "dbfb714a4", + "60a44c8f4", + "e70a6270d" + ] + } + }, + { + "name": "nom_6", + "role": "feature", + "semantic_type": "categorical", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 522, + "unique_ratio": 0.002175, + "example_values": [ + "231233ca9", + "79a82b7c0", + "9a70de492", + "cad70d692", + "6d2cd10c5" + ] + } + }, + { + "name": "nom_7", + "role": "feature", + "semantic_type": "categorical", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 1219, + "unique_ratio": 0.005079, + "example_values": [ + "673d3c1c0", + "7ad3e362c", + "fcd030cc2", + "27e8d4511", + "7df1399cb" + ] + } + }, + { + "name": "nom_8", + "role": "feature", + "semantic_type": "categorical", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 2215, + "unique_ratio": 0.009229, + "example_values": [ + "4fbb167ac", + "7d97eba78", + "b886d6c1c", + "a9d35cede", + "fd0041a98" + ] + } + }, + { + "name": "nom_9", + "role": "feature", + "semantic_type": "categorical", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 11927, + "unique_ratio": 0.049696, + "example_values": [ + "1f31c5cc1", + "89539e0fa", + "8a34e794f", + "34760ea8a", + "46b472cdb" + ] + } + }, + { + "name": "ord_0", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 3, + "unique_ratio": 1.3e-05, + "example_values": [ + "1", + "2", + "3" + ] + } + }, + { + "name": "ord_1", + "role": "feature", + "semantic_type": "categorical", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 5, + "unique_ratio": 2.1e-05, + "example_values": [ + "Grandmaster", + "Contributor", + "Novice", + "Master", + "Expert" + ] + } + }, + { + "name": "ord_2", + "role": "feature", + "semantic_type": "categorical", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 6, + "unique_ratio": 2.5e-05, + "example_values": [ + "Lava Hot", + "Boiling Hot", + "Freezing", + "Hot", + "Cold" + ] + } + }, + { + "name": "ord_3", + "role": "feature", + "semantic_type": "categorical", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 15, + "unique_ratio": 6.3e-05, + "example_values": [ + "g", + "j", + "l", + "f", + "k" + ] + } + }, + { + "name": "ord_4", + "role": "feature", + "semantic_type": "categorical", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 26, + "unique_ratio": 0.000108, + "example_values": [ + "L", + "S", + "K", + "I", + "A" + ] + } + }, + { + "name": "ord_5", + "role": "feature", + "semantic_type": "categorical", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 192, + "unique_ratio": 0.0008, + "example_values": [ + "qo", + "aM", + "AP", + "fO", + "hh" + ] + } + }, + { + "name": "day", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 7, + "unique_ratio": 2.9e-05, + "example_values": [ + "1", + "2", + "7", + "4", + "3" + ] + } + }, + { + "name": "month", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 12, + "unique_ratio": 5e-05, + "example_values": [ + "12", + "4", + "8", + "2", + "9" + ] + } + }, + { + "name": "target", + "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": 8e-06, + "example_values": [ + "0", + "1" + ] + } + } + ] +} \ No newline at end of file diff --git a/timecost/c14/tabsyn/tabsyn-c14-20260504_042655/public_gate/public_gate_report.json b/timecost/c14/tabsyn/tabsyn-c14-20260504_042655/public_gate/public_gate_report.json new file mode 100644 index 0000000000000000000000000000000000000000..9374818599b8101d02e793ea785975d77363e3fd --- /dev/null +++ b/timecost/c14/tabsyn/tabsyn-c14-20260504_042655/public_gate/public_gate_report.json @@ -0,0 +1,37 @@ +{ + "dataset_id": "c14", + "status": "pass", + "checks": [ + { + "check_id": "PG001_csv_parse_ok", + "status": "pass" + }, + { + "check_id": "PG002_split_header_consistent", + "status": "pass" + }, + { + "check_id": "PG003_profile_header_match", + "status": "pass" + }, + { + "check_id": "PG004_missing_token_normalized", + "status": "pass" + }, + { + "check_id": "PG005_semantic_type_validated", + "status": "pass" + }, + { + "check_id": "PG006_target_defined_and_valid", + "status": "pass" + } + ], + "target_column": "target", + "task_type": "classification", + "input_splits": { + "train": "/data/jialinzhang/SynthesizePipeline-server/DatasetNew/c14/c14-train.csv", + "val": "/data/jialinzhang/SynthesizePipeline-server/DatasetNew/c14/c14-val.csv", + "test": "/data/jialinzhang/SynthesizePipeline-server/DatasetNew/c14/c14-test.csv" + } +} \ No newline at end of file diff --git a/timecost/c14/tabsyn/tabsyn-c14-20260504_042655/public_gate/staged_input_manifest.json b/timecost/c14/tabsyn/tabsyn-c14-20260504_042655/public_gate/staged_input_manifest.json new file mode 100644 index 0000000000000000000000000000000000000000..6586ef91a720755d2e035b7a507c0aea44b51732 --- /dev/null +++ b/timecost/c14/tabsyn/tabsyn-c14-20260504_042655/public_gate/staged_input_manifest.json @@ -0,0 +1,514 @@ +{ + "dataset_id": "c14", + "target_column": "target", + "task_type": "classification", + "train_csv": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/c14/tabsyn/tabsyn-c14-20260504_042655/staged/public/train.csv", + "val_csv": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/c14/tabsyn/tabsyn-c14-20260504_042655/staged/public/val.csv", + "test_csv": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/c14/tabsyn/tabsyn-c14-20260504_042655/staged/public/test.csv", + "features_json": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/c14/tabsyn/tabsyn-c14-20260504_042655/staged/public/staged_features.json", + "public_gate_report": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/c14/tabsyn/tabsyn-c14-20260504_042655/public_gate/public_gate_report.json", + "column_schema": [ + { + "name": "id", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 20000, + "unique_ratio": 0.083333, + "example_values": [ + "182547", + "28342", + "172611", + "81876", + "110780" + ] + } + }, + { + "name": "bin_0", + "role": "feature", + "semantic_type": "boolean", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 2, + "unique_ratio": 8e-06, + "example_values": [ + "0", + "1" + ] + } + }, + { + "name": "bin_1", + "role": "feature", + "semantic_type": "boolean", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 2, + "unique_ratio": 8e-06, + "example_values": [ + "0", + "1" + ] + } + }, + { + "name": "bin_2", + "role": "feature", + "semantic_type": "boolean", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 2, + "unique_ratio": 8e-06, + "example_values": [ + "0", + "1" + ] + } + }, + { + "name": "bin_3", + "role": "feature", + "semantic_type": "boolean", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 2, + "unique_ratio": 8e-06, + "example_values": [ + "F", + "T" + ] + } + }, + { + "name": "bin_4", + "role": "feature", + "semantic_type": "boolean", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 2, + "unique_ratio": 8e-06, + "example_values": [ + "Y", + "N" + ] + } + }, + { + "name": "nom_0", + "role": "feature", + "semantic_type": "categorical", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 3, + "unique_ratio": 1.3e-05, + "example_values": [ + "Blue", + "Green", + "Red" + ] + } + }, + { + "name": "nom_1", + "role": "feature", + "semantic_type": "categorical", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 6, + "unique_ratio": 2.5e-05, + "example_values": [ + "Trapezoid", + "Polygon", + "Square", + "Star", + "Triangle" + ] + } + }, + { + "name": "nom_2", + "role": "feature", + "semantic_type": "categorical", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 6, + "unique_ratio": 2.5e-05, + "example_values": [ + "Cat", + "Dog", + "Lion", + "Snake", + "Axolotl" + ] + } + }, + { + "name": "nom_3", + "role": "feature", + "semantic_type": "categorical", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 6, + "unique_ratio": 2.5e-05, + "example_values": [ + "China", + "Finland", + "Canada", + "India", + "Russia" + ] + } + }, + { + "name": "nom_4", + "role": "feature", + "semantic_type": "categorical", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 4, + "unique_ratio": 1.7e-05, + "example_values": [ + "Oboe", + "Bassoon", + "Theremin", + "Piano" + ] + } + }, + { + "name": "nom_5", + "role": "feature", + "semantic_type": "categorical", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 222, + "unique_ratio": 0.000925, + "example_values": [ + "c5725677e", + "92190168b", + "dbfb714a4", + "60a44c8f4", + "e70a6270d" + ] + } + }, + { + "name": "nom_6", + "role": "feature", + "semantic_type": "categorical", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 522, + "unique_ratio": 0.002175, + "example_values": [ + "231233ca9", + "79a82b7c0", + "9a70de492", + "cad70d692", + "6d2cd10c5" + ] + } + }, + { + "name": "nom_7", + "role": "feature", + "semantic_type": "categorical", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 1219, + "unique_ratio": 0.005079, + "example_values": [ + "673d3c1c0", + "7ad3e362c", + "fcd030cc2", + "27e8d4511", + "7df1399cb" + ] + } + }, + { + "name": "nom_8", + "role": "feature", + "semantic_type": "categorical", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 2215, + "unique_ratio": 0.009229, + "example_values": [ + "4fbb167ac", + "7d97eba78", + "b886d6c1c", + "a9d35cede", + "fd0041a98" + ] + } + }, + { + "name": "nom_9", + "role": "feature", + "semantic_type": "categorical", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 11927, + "unique_ratio": 0.049696, + "example_values": [ + "1f31c5cc1", + "89539e0fa", + "8a34e794f", + "34760ea8a", + "46b472cdb" + ] + } + }, + { + "name": "ord_0", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 3, + "unique_ratio": 1.3e-05, + "example_values": [ + "1", + "2", + "3" + ] + } + }, + { + "name": "ord_1", + "role": "feature", + "semantic_type": "categorical", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 5, + "unique_ratio": 2.1e-05, + "example_values": [ + "Grandmaster", + "Contributor", + "Novice", + "Master", + "Expert" + ] + } + }, + { + "name": "ord_2", + "role": "feature", + "semantic_type": "categorical", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 6, + "unique_ratio": 2.5e-05, + "example_values": [ + "Lava Hot", + "Boiling Hot", + "Freezing", + "Hot", + "Cold" + ] + } + }, + { + "name": "ord_3", + "role": "feature", + "semantic_type": "categorical", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 15, + "unique_ratio": 6.3e-05, + "example_values": [ + "g", + "j", + "l", + "f", + "k" + ] + } + }, + { + "name": "ord_4", + "role": "feature", + "semantic_type": "categorical", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 26, + "unique_ratio": 0.000108, + "example_values": [ + "L", + "S", + "K", + "I", + "A" + ] + } + }, + { + "name": "ord_5", + "role": "feature", + "semantic_type": "categorical", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 192, + "unique_ratio": 0.0008, + "example_values": [ + "qo", + "aM", + "AP", + "fO", + "hh" + ] + } + }, + { + "name": "day", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 7, + "unique_ratio": 2.9e-05, + "example_values": [ + "1", + "2", + "7", + "4", + "3" + ] + } + }, + { + "name": "month", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 12, + "unique_ratio": 5e-05, + "example_values": [ + "12", + "4", + "8", + "2", + "9" + ] + } + }, + { + "name": "target", + "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": 8e-06, + "example_values": [ + "0", + "1" + ] + } + } + ] +} \ No newline at end of file diff --git a/timecost/c14/tabsyn/tabsyn-c14-20260504_042655/runtime_result.json b/timecost/c14/tabsyn/tabsyn-c14-20260504_042655/runtime_result.json new file mode 100644 index 0000000000000000000000000000000000000000..8914142a2ba0137419fae35f2d2a45cce1cd5eb7 --- /dev/null +++ b/timecost/c14/tabsyn/tabsyn-c14-20260504_042655/runtime_result.json @@ -0,0 +1,27 @@ +{ + "dataset_id": "c14", + "model": "tabsyn", + "run_id": "tabsyn-c14-20260504_042655", + "public_gate_status": "pass", + "adapter_ready_status": "pass", + "train_status": "success", + "generate_status": "success", + "reason_code": null, + "reason_detail": null, + "artifacts": { + "synthetic_csv": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/c14/tabsyn/tabsyn-c14-20260504_042655/tabsyn-c14-240000-20260504_051538.csv", + "model_path": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/c14/tabsyn/tabsyn-c14-20260504_042655" + }, + "timings": { + "train": { + "started_at": "2026-05-04T04:26:59", + "ended_at": "2026-05-04T05:15:38", + "duration_sec": 2918.607 + }, + "generate": { + "started_at": "2026-05-04T05:15:38", + "ended_at": "2026-05-04T05:17:06", + "duration_sec": 88.482 + } + } +} \ No newline at end of file diff --git a/timecost/c14/tabsyn/tabsyn-c14-20260504_042655/staged/public/staged_features.json b/timecost/c14/tabsyn/tabsyn-c14-20260504_042655/staged/public/staged_features.json new file mode 100644 index 0000000000000000000000000000000000000000..508fbe870849f119fe0f440e76f620b91489d965 --- /dev/null +++ b/timecost/c14/tabsyn/tabsyn-c14-20260504_042655/staged/public/staged_features.json @@ -0,0 +1,127 @@ +[ + { + "feature_name": "id", + "data_type": "continuous", + "is_target": false + }, + { + "feature_name": "bin_0", + "data_type": "binary", + "is_target": false + }, + { + "feature_name": "bin_1", + "data_type": "binary", + "is_target": false + }, + { + "feature_name": "bin_2", + "data_type": "binary", + "is_target": false + }, + { + "feature_name": "bin_3", + "data_type": "binary", + "is_target": false + }, + { + "feature_name": "bin_4", + "data_type": "binary", + "is_target": false + }, + { + "feature_name": "nom_0", + "data_type": "categorical", + "is_target": false + }, + { + "feature_name": "nom_1", + "data_type": "categorical", + "is_target": false + }, + { + "feature_name": "nom_2", + "data_type": "categorical", + "is_target": false + }, + { + "feature_name": "nom_3", + "data_type": "categorical", + "is_target": false + }, + { + "feature_name": "nom_4", + "data_type": "categorical", + "is_target": false + }, + { + "feature_name": "nom_5", + "data_type": "categorical", + "is_target": false + }, + { + "feature_name": "nom_6", + "data_type": "categorical", + "is_target": false + }, + { + "feature_name": "nom_7", + "data_type": "categorical", + "is_target": false + }, + { + "feature_name": "nom_8", + "data_type": "categorical", + "is_target": false + }, + { + "feature_name": "nom_9", + "data_type": "categorical", + "is_target": false + }, + { + "feature_name": "ord_0", + "data_type": "continuous", + "is_target": false + }, + { + "feature_name": "ord_1", + "data_type": "categorical", + "is_target": false + }, + { + "feature_name": "ord_2", + "data_type": "categorical", + "is_target": false + }, + { + "feature_name": "ord_3", + "data_type": "categorical", + "is_target": false + }, + { + "feature_name": "ord_4", + "data_type": "categorical", + "is_target": false + }, + { + "feature_name": "ord_5", + "data_type": "categorical", + "is_target": false + }, + { + "feature_name": "day", + "data_type": "continuous", + "is_target": false + }, + { + "feature_name": "month", + "data_type": "continuous", + "is_target": false + }, + { + "feature_name": "target", + "data_type": "binary", + "is_target": true + } +] \ No newline at end of file diff --git a/timecost/c14/tabsyn/tabsyn-c14-20260504_042655/staged/public/test.csv b/timecost/c14/tabsyn/tabsyn-c14-20260504_042655/staged/public/test.csv new file mode 100644 index 0000000000000000000000000000000000000000..afbef1e22ba9597cf509fb91aa271ff6908ca0a9 --- /dev/null +++ b/timecost/c14/tabsyn/tabsyn-c14-20260504_042655/staged/public/test.csv @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:617ecb620416375c67546e0fa5a8b9a3923d689bda904dc23824ea175d1f8597 +size 3965839 diff --git a/timecost/c14/tabsyn/tabsyn-c14-20260504_042655/staged/public/train.csv b/timecost/c14/tabsyn/tabsyn-c14-20260504_042655/staged/public/train.csv new file mode 100644 index 0000000000000000000000000000000000000000..322e9de210d736baf266fa4930517b3827d3bf63 --- /dev/null +++ b/timecost/c14/tabsyn/tabsyn-c14-20260504_042655/staged/public/train.csv @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:12398ccb68a2499b9c126f61b25f03c36a65f026d755e1d5ff5653e614676167 +size 31717079 diff --git a/timecost/c14/tabsyn/tabsyn-c14-20260504_042655/staged/public/val.csv b/timecost/c14/tabsyn/tabsyn-c14-20260504_042655/staged/public/val.csv new file mode 100644 index 0000000000000000000000000000000000000000..594db5d9c0a27ce284d599b8bf62685189510e61 --- /dev/null +++ b/timecost/c14/tabsyn/tabsyn-c14-20260504_042655/staged/public/val.csv @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:f40dbd7bbd9e2783c24d0d12ec35a85581835d45238774eb0676de44a734feda +size 3965919 diff --git a/timecost/c14/tabsyn/tabsyn-c14-20260504_042655/staged/tabsyn/adapter_report.json b/timecost/c14/tabsyn/tabsyn-c14-20260504_042655/staged/tabsyn/adapter_report.json new file mode 100644 index 0000000000000000000000000000000000000000..3d413c359b01c3029548ebcb7222d19e1cd9f8c1 --- /dev/null +++ b/timecost/c14/tabsyn/tabsyn-c14-20260504_042655/staged/tabsyn/adapter_report.json @@ -0,0 +1,7 @@ +{ + "adapter_ready_status": "pass", + "adapter_fail_reason_code": null, + "adapter_fail_detail": null, + "adapter_transforms_applied": [], + "model_input_manifest": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/c14/tabsyn/tabsyn-c14-20260504_042655/staged/tabsyn/model_input_manifest.json" +} \ No newline at end of file diff --git a/timecost/c14/tabsyn/tabsyn-c14-20260504_042655/staged/tabsyn/adapter_transforms_applied.json b/timecost/c14/tabsyn/tabsyn-c14-20260504_042655/staged/tabsyn/adapter_transforms_applied.json new file mode 100644 index 0000000000000000000000000000000000000000..0637a088a01e8ddab3bf3fa98dbe804cbde1a0dc --- /dev/null +++ b/timecost/c14/tabsyn/tabsyn-c14-20260504_042655/staged/tabsyn/adapter_transforms_applied.json @@ -0,0 +1 @@ +[] \ No newline at end of file diff --git a/timecost/c14/tabsyn/tabsyn-c14-20260504_042655/staged/tabsyn/model_input_manifest.json b/timecost/c14/tabsyn/tabsyn-c14-20260504_042655/staged/tabsyn/model_input_manifest.json new file mode 100644 index 0000000000000000000000000000000000000000..c0c3d1a8d3f178e1c499b23df0f6b66a75eea485 --- /dev/null +++ b/timecost/c14/tabsyn/tabsyn-c14-20260504_042655/staged/tabsyn/model_input_manifest.json @@ -0,0 +1,516 @@ +{ + "dataset_id": "c14", + "model": "tabsyn", + "target_column": "target", + "task_type": "classification", + "column_schema": [ + { + "name": "id", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 20000, + "unique_ratio": 0.083333, + "example_values": [ + "182547", + "28342", + "172611", + "81876", + "110780" + ] + } + }, + { + "name": "bin_0", + "role": "feature", + "semantic_type": "boolean", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 2, + "unique_ratio": 8e-06, + "example_values": [ + "0", + "1" + ] + } + }, + { + "name": "bin_1", + "role": "feature", + "semantic_type": "boolean", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 2, + "unique_ratio": 8e-06, + "example_values": [ + "0", + "1" + ] + } + }, + { + "name": "bin_2", + "role": "feature", + "semantic_type": "boolean", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 2, + "unique_ratio": 8e-06, + "example_values": [ + "0", + "1" + ] + } + }, + { + "name": "bin_3", + "role": "feature", + "semantic_type": "boolean", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 2, + "unique_ratio": 8e-06, + "example_values": [ + "F", + "T" + ] + } + }, + { + "name": "bin_4", + "role": "feature", + "semantic_type": "boolean", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 2, + "unique_ratio": 8e-06, + "example_values": [ + "Y", + "N" + ] + } + }, + { + "name": "nom_0", + "role": "feature", + "semantic_type": "categorical", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 3, + "unique_ratio": 1.3e-05, + "example_values": [ + "Blue", + "Green", + "Red" + ] + } + }, + { + "name": "nom_1", + "role": "feature", + "semantic_type": "categorical", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 6, + "unique_ratio": 2.5e-05, + "example_values": [ + "Trapezoid", + "Polygon", + "Square", + "Star", + "Triangle" + ] + } + }, + { + "name": "nom_2", + "role": "feature", + "semantic_type": "categorical", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 6, + "unique_ratio": 2.5e-05, + "example_values": [ + "Cat", + "Dog", + "Lion", + "Snake", + "Axolotl" + ] + } + }, + { + "name": "nom_3", + "role": "feature", + "semantic_type": "categorical", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 6, + "unique_ratio": 2.5e-05, + "example_values": [ + "China", + "Finland", + "Canada", + "India", + "Russia" + ] + } + }, + { + "name": "nom_4", + "role": "feature", + "semantic_type": "categorical", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 4, + "unique_ratio": 1.7e-05, + "example_values": [ + "Oboe", + "Bassoon", + "Theremin", + "Piano" + ] + } + }, + { + "name": "nom_5", + "role": "feature", + "semantic_type": "categorical", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 222, + "unique_ratio": 0.000925, + "example_values": [ + "c5725677e", + "92190168b", + "dbfb714a4", + "60a44c8f4", + "e70a6270d" + ] + } + }, + { + "name": "nom_6", + "role": "feature", + "semantic_type": "categorical", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 522, + "unique_ratio": 0.002175, + "example_values": [ + "231233ca9", + "79a82b7c0", + "9a70de492", + "cad70d692", + "6d2cd10c5" + ] + } + }, + { + "name": "nom_7", + "role": "feature", + "semantic_type": "categorical", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 1219, + "unique_ratio": 0.005079, + "example_values": [ + "673d3c1c0", + "7ad3e362c", + "fcd030cc2", + "27e8d4511", + "7df1399cb" + ] + } + }, + { + "name": "nom_8", + "role": "feature", + "semantic_type": "categorical", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 2215, + "unique_ratio": 0.009229, + "example_values": [ + "4fbb167ac", + "7d97eba78", + "b886d6c1c", + "a9d35cede", + "fd0041a98" + ] + } + }, + { + "name": "nom_9", + "role": "feature", + "semantic_type": "categorical", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 11927, + "unique_ratio": 0.049696, + "example_values": [ + "1f31c5cc1", + "89539e0fa", + "8a34e794f", + "34760ea8a", + "46b472cdb" + ] + } + }, + { + "name": "ord_0", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 3, + "unique_ratio": 1.3e-05, + "example_values": [ + "1", + "2", + "3" + ] + } + }, + { + "name": "ord_1", + "role": "feature", + "semantic_type": "categorical", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 5, + "unique_ratio": 2.1e-05, + "example_values": [ + "Grandmaster", + "Contributor", + "Novice", + "Master", + "Expert" + ] + } + }, + { + "name": "ord_2", + "role": "feature", + "semantic_type": "categorical", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 6, + "unique_ratio": 2.5e-05, + "example_values": [ + "Lava Hot", + "Boiling Hot", + "Freezing", + "Hot", + "Cold" + ] + } + }, + { + "name": "ord_3", + "role": "feature", + "semantic_type": "categorical", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 15, + "unique_ratio": 6.3e-05, + "example_values": [ + "g", + "j", + "l", + "f", + "k" + ] + } + }, + { + "name": "ord_4", + "role": "feature", + "semantic_type": "categorical", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 26, + "unique_ratio": 0.000108, + "example_values": [ + "L", + "S", + "K", + "I", + "A" + ] + } + }, + { + "name": "ord_5", + "role": "feature", + "semantic_type": "categorical", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 192, + "unique_ratio": 0.0008, + "example_values": [ + "qo", + "aM", + "AP", + "fO", + "hh" + ] + } + }, + { + "name": "day", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 7, + "unique_ratio": 2.9e-05, + "example_values": [ + "1", + "2", + "7", + "4", + "3" + ] + } + }, + { + "name": "month", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 12, + "unique_ratio": 5e-05, + "example_values": [ + "12", + "4", + "8", + "2", + "9" + ] + } + }, + { + "name": "target", + "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": 8e-06, + "example_values": [ + "0", + "1" + ] + } + } + ], + "public_manifest": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/c14/tabsyn/tabsyn-c14-20260504_042655/public_gate/staged_input_manifest.json", + "train_csv": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/c14/tabsyn/tabsyn-c14-20260504_042655/staged/public/train.csv", + "val_csv": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/c14/tabsyn/tabsyn-c14-20260504_042655/staged/public/val.csv", + "test_csv": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/c14/tabsyn/tabsyn-c14-20260504_042655/staged/public/test.csv", + "features_json": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/c14/tabsyn/tabsyn-c14-20260504_042655/staged/public/staged_features.json", + "public_gate_report": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/c14/tabsyn/tabsyn-c14-20260504_042655/public_gate/public_gate_report.json" +} \ No newline at end of file diff --git a/timecost/c14/tabsyn/tabsyn-c14-20260504_042655/synthetic/tabsyn_c14/real.csv b/timecost/c14/tabsyn/tabsyn-c14-20260504_042655/synthetic/tabsyn_c14/real.csv new file mode 100644 index 0000000000000000000000000000000000000000..6d8d9039c359043c08476b37a4617b1c2a2a1acc --- /dev/null +++ b/timecost/c14/tabsyn/tabsyn-c14-20260504_042655/synthetic/tabsyn_c14/real.csv @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:c5921345765f8af3133fc50bf596097efd9e2f166a6a923b4951b080daf112c4 +size 16124837 diff --git a/timecost/c14/tabsyn/tabsyn-c14-20260504_042655/synthetic/tabsyn_c14/test.csv b/timecost/c14/tabsyn/tabsyn-c14-20260504_042655/synthetic/tabsyn_c14/test.csv new file mode 100644 index 0000000000000000000000000000000000000000..6d8d9039c359043c08476b37a4617b1c2a2a1acc --- /dev/null +++ b/timecost/c14/tabsyn/tabsyn-c14-20260504_042655/synthetic/tabsyn_c14/test.csv @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:c5921345765f8af3133fc50bf596097efd9e2f166a6a923b4951b080daf112c4 +size 16124837 diff --git a/timecost/c14/tabsyn/tabsyn-c14-20260504_042655/tabsyn-c14-240000-20260504_051538.csv b/timecost/c14/tabsyn/tabsyn-c14-20260504_042655/tabsyn-c14-240000-20260504_051538.csv new file mode 100644 index 0000000000000000000000000000000000000000..dd3255182451e9e7a8c51cd447f71cd525237470 --- /dev/null +++ b/timecost/c14/tabsyn/tabsyn-c14-20260504_042655/tabsyn-c14-240000-20260504_051538.csv @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:24f2d9ff4ae9d67bb7f82aadfc89c85655dc78debc270f553187c061c92e97ad +size 18392001 diff --git a/timecost/c14/tabsyn/tabsyn-c14-20260504_042655/train_20260504_042709.log b/timecost/c14/tabsyn/tabsyn-c14-20260504_042655/train_20260504_042709.log new file mode 100644 index 0000000000000000000000000000000000000000..5ba81230ad5ca065e18dafe015987630c3a6a7c5 --- /dev/null +++ b/timecost/c14/tabsyn/tabsyn-c14-20260504_042655/train_20260504_042709.log @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:00c438a488c258b5b796279d36fcf3b827ce378fc49b7ccdfa1b0d05f4e3d5dc +size 1335790 diff --git a/timecost/c14/tvae/tvae-c14-20260503_194908/_tvae_generate.py b/timecost/c14/tvae/tvae-c14-20260503_194908/_tvae_generate.py new file mode 100644 index 0000000000000000000000000000000000000000..81fa44ecc3410f3048a21e827fafb1d8bdb7c5fa --- /dev/null +++ b/timecost/c14/tvae/tvae-c14-20260503_194908/_tvae_generate.py @@ -0,0 +1,23 @@ +import os, sys +sys.path.insert(0, "/work") +from src.SpecificModels.ctgan_joblib_parallel_cap import apply_parallel_cap_from_env +apply_parallel_cap_from_env() +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 +os.environ.setdefault("LOKY_MAX_CPU_COUNT", "8") +os.environ.setdefault("OPENBLAS_NUM_THREADS", "8") +os.environ.setdefault("MKL_NUM_THREADS", "8") +model = TVAE.load("/work/output-Benchmark-trainonly-v1/c14/tvae/tvae-c14-20260503_194908/models_300epochs/tvae_300epochs.pt") +total = 240000 +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-Benchmark-trainonly-v1/c14/tvae/tvae-c14-20260503_194908/tvae-c14-240000-20260503_201638.csv", index=False) +print(f"[TVAE] Generated {total} rows (chunks={len(parts)}) -> /work/output-Benchmark-trainonly-v1/c14/tvae/tvae-c14-20260503_194908/tvae-c14-240000-20260503_201638.csv") diff --git a/timecost/c14/tvae/tvae-c14-20260503_194908/_tvae_train.py b/timecost/c14/tvae/tvae-c14-20260503_194908/_tvae_train.py new file mode 100644 index 0000000000000000000000000000000000000000..5677a184a4f846c02d0befbc6a3f544c6b316a30 --- /dev/null +++ b/timecost/c14/tvae/tvae-c14-20260503_194908/_tvae_train.py @@ -0,0 +1,30 @@ +import json, os, sys +sys.path.insert(0, "/work") +from src.SpecificModels.ctgan_joblib_parallel_cap import apply_parallel_cap_from_env +apply_parallel_cap_from_env() +import pandas as pd +from ctgan.data import read_csv +from ctgan.synthesizers.tvae import TVAE + +# Keep transform stage parallelism bounded for stability on shared host. +os.environ.setdefault("LOKY_MAX_CPU_COUNT", "8") +os.environ.setdefault("OPENBLAS_NUM_THREADS", "8") +os.environ.setdefault("MKL_NUM_THREADS", "8") +_nj = (os.environ.get("TVAE_CTGAN_JOBTRANS_N_JOBS") or "").strip() +if _nj: + print("[TVAE] joblib Parallel cap ON, TVAE_CTGAN_JOBTRANS_N_JOBS=" + _nj) +else: + print("[TVAE] joblib Parallel cap OFF (unset TVAE_CTGAN_JOBTRANS_N_JOBS)") +print("[TVAE] LOKY_MAX_CPU_COUNT=" + str(os.environ.get("LOKY_MAX_CPU_COUNT", ""))) + +csv_path = "/work/output-Benchmark-trainonly-v1/c14/tvae/tvae-c14-20260503_194908/staged/public/train.csv" +meta_path = "/work/output-Benchmark-trainonly-v1/c14/tvae/tvae-c14-20260503_194908/tvae_metadata.json" +save_path = "/work/output-Benchmark-trainonly-v1/c14/tvae/tvae-c14-20260503_194908/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/timecost/c14/tvae/tvae-c14-20260503_194908/gen_20260503_201638.log b/timecost/c14/tvae/tvae-c14-20260503_194908/gen_20260503_201638.log new file mode 100644 index 0000000000000000000000000000000000000000..a30ae65edc0f9213045b415ac10f81807a572977 --- /dev/null +++ b/timecost/c14/tvae/tvae-c14-20260503_194908/gen_20260503_201638.log @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:d9a3aad6b866853eed267bd9a32bf13136bd2fc5f63a0f9193196dea7784d0d5 +size 412 diff --git a/timecost/c14/tvae/tvae-c14-20260503_194908/input_snapshot.json b/timecost/c14/tvae/tvae-c14-20260503_194908/input_snapshot.json new file mode 100644 index 0000000000000000000000000000000000000000..93b43c8a2b565f767f0cb197b411ec91dc73db2c --- /dev/null +++ b/timecost/c14/tvae/tvae-c14-20260503_194908/input_snapshot.json @@ -0,0 +1,36 @@ +{ + "dataset_id": "c14", + "model": "tvae", + "inputs": { + "train_csv": { + "path": "/data/jialinzhang/SynthesizePipeline-server/DatasetNew/c14/c14-train.csv", + "exists": true, + "size": 31957080, + "sha256": "4a11abde6a7fae9f8bb1a1d7e31035b9dd61587d2721749a52d78d65441fba5e" + }, + "val_csv": { + "path": "/data/jialinzhang/SynthesizePipeline-server/DatasetNew/c14/c14-val.csv", + "exists": true, + "size": 3995920, + "sha256": "b04d723eeb59d339a356302660463c129141b4213fefbf472ef48f8a4daa50c9" + }, + "test_csv": { + "path": "/data/jialinzhang/SynthesizePipeline-server/DatasetNew/c14/c14-test.csv", + "exists": true, + "size": 3995840, + "sha256": "4780b90e46f6b440983cc9315cad8bca0e86bd26d8877ffae7111258fba0a132" + }, + "profile_json": { + "path": "/data/jialinzhang/SynthesizePipeline-server/DatasetNew/artifacts/data_core/tabular/c14/c14-dataset_profile.json", + "exists": true, + "size": 9505, + "sha256": "577cc5830dcb336243555d3d41c06e2e7c0a63df2a9caccb7a0411b9332cde15" + }, + "contract_json": { + "path": "/data/jialinzhang/SynthesizePipeline-server/DatasetNew/artifacts/data_core/tabular/c14/c14-dataset_contract_v1.json", + "exists": true, + "size": 11901, + "sha256": "955197dff3346d55aaa999adf98d64c375a7e4ca9bc4bcfe626499c9cfea9a41" + } + } +} \ No newline at end of file diff --git a/timecost/c14/tvae/tvae-c14-20260503_194908/models_300epochs/train_20260503_194912.log b/timecost/c14/tvae/tvae-c14-20260503_194908/models_300epochs/train_20260503_194912.log new file mode 100644 index 0000000000000000000000000000000000000000..ea453eca7aefd46aa3c11a7356c4eb3b506f009b --- /dev/null +++ b/timecost/c14/tvae/tvae-c14-20260503_194908/models_300epochs/train_20260503_194912.log @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:4e2b6206c1a442a98a6b40b7aa3f333883b543bccedd995aaa59063cbc662f89 +size 538 diff --git a/timecost/c14/tvae/tvae-c14-20260503_194908/models_300epochs/tvae_300epochs.pt b/timecost/c14/tvae/tvae-c14-20260503_194908/models_300epochs/tvae_300epochs.pt new file mode 100644 index 0000000000000000000000000000000000000000..03cc14e2de54211f922206fe793a57b5ef3b889b --- /dev/null +++ b/timecost/c14/tvae/tvae-c14-20260503_194908/models_300epochs/tvae_300epochs.pt @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:1806db8efde40b8cca8519d5f146c41a161876717a39addc08403401583bca2a +size 14628140 diff --git a/timecost/c14/tvae/tvae-c14-20260503_194908/public_gate/normalized_schema_snapshot.json b/timecost/c14/tvae/tvae-c14-20260503_194908/public_gate/normalized_schema_snapshot.json new file mode 100644 index 0000000000000000000000000000000000000000..c43047a97cac9542e79dfa127e651be7146aa2a4 --- /dev/null +++ b/timecost/c14/tvae/tvae-c14-20260503_194908/public_gate/normalized_schema_snapshot.json @@ -0,0 +1,509 @@ +{ + "dataset_id": "c14", + "target_column": "target", + "task_type": "classification", + "columns": [ + { + "name": "id", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 20000, + "unique_ratio": 0.083333, + "example_values": [ + "182547", + "28342", + "172611", + "81876", + "110780" + ] + } + }, + { + "name": "bin_0", + "role": "feature", + "semantic_type": "boolean", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 2, + "unique_ratio": 8e-06, + "example_values": [ + "0", + "1" + ] + } + }, + { + "name": "bin_1", + "role": "feature", + "semantic_type": "boolean", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 2, + "unique_ratio": 8e-06, + "example_values": [ + "0", + "1" + ] + } + }, + { + "name": "bin_2", + "role": "feature", + "semantic_type": "boolean", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 2, + "unique_ratio": 8e-06, + "example_values": [ + "0", + "1" + ] + } + }, + { + "name": "bin_3", + "role": "feature", + "semantic_type": "boolean", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 2, + "unique_ratio": 8e-06, + "example_values": [ + "F", + "T" + ] + } + }, + { + "name": "bin_4", + "role": "feature", + "semantic_type": "boolean", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 2, + "unique_ratio": 8e-06, + "example_values": [ + "Y", + "N" + ] + } + }, + { + "name": "nom_0", + "role": "feature", + "semantic_type": "categorical", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 3, + "unique_ratio": 1.3e-05, + "example_values": [ + "Blue", + "Green", + "Red" + ] + } + }, + { + "name": "nom_1", + "role": "feature", + "semantic_type": "categorical", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 6, + "unique_ratio": 2.5e-05, + "example_values": [ + "Trapezoid", + "Polygon", + "Square", + "Star", + "Triangle" + ] + } + }, + { + "name": "nom_2", + "role": "feature", + "semantic_type": "categorical", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 6, + "unique_ratio": 2.5e-05, + "example_values": [ + "Cat", + "Dog", + "Lion", + "Snake", + "Axolotl" + ] + } + }, + { + "name": "nom_3", + "role": "feature", + "semantic_type": "categorical", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 6, + "unique_ratio": 2.5e-05, + "example_values": [ + "China", + "Finland", + "Canada", + "India", + "Russia" + ] + } + }, + { + "name": "nom_4", + "role": "feature", + "semantic_type": "categorical", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 4, + "unique_ratio": 1.7e-05, + "example_values": [ + "Oboe", + "Bassoon", + "Theremin", + "Piano" + ] + } + }, + { + "name": "nom_5", + "role": "feature", + "semantic_type": "categorical", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 222, + "unique_ratio": 0.000925, + "example_values": [ + "c5725677e", + "92190168b", + "dbfb714a4", + "60a44c8f4", + "e70a6270d" + ] + } + }, + { + "name": "nom_6", + "role": "feature", + "semantic_type": "categorical", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 522, + "unique_ratio": 0.002175, + "example_values": [ + "231233ca9", + "79a82b7c0", + "9a70de492", + "cad70d692", + "6d2cd10c5" + ] + } + }, + { + "name": "nom_7", + "role": "feature", + "semantic_type": "categorical", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 1219, + "unique_ratio": 0.005079, + "example_values": [ + "673d3c1c0", + "7ad3e362c", + "fcd030cc2", + "27e8d4511", + "7df1399cb" + ] + } + }, + { + "name": "nom_8", + "role": "feature", + "semantic_type": "categorical", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 2215, + "unique_ratio": 0.009229, + "example_values": [ + "4fbb167ac", + "7d97eba78", + "b886d6c1c", + "a9d35cede", + "fd0041a98" + ] + } + }, + { + "name": "nom_9", + "role": "feature", + "semantic_type": "categorical", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 11927, + "unique_ratio": 0.049696, + "example_values": [ + "1f31c5cc1", + "89539e0fa", + "8a34e794f", + "34760ea8a", + "46b472cdb" + ] + } + }, + { + "name": "ord_0", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 3, + "unique_ratio": 1.3e-05, + "example_values": [ + "1", + "2", + "3" + ] + } + }, + { + "name": "ord_1", + "role": "feature", + "semantic_type": "categorical", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 5, + "unique_ratio": 2.1e-05, + "example_values": [ + "Grandmaster", + "Contributor", + "Novice", + "Master", + "Expert" + ] + } + }, + { + "name": "ord_2", + "role": "feature", + "semantic_type": "categorical", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 6, + "unique_ratio": 2.5e-05, + "example_values": [ + "Lava Hot", + "Boiling Hot", + "Freezing", + "Hot", + "Cold" + ] + } + }, + { + "name": "ord_3", + "role": "feature", + "semantic_type": "categorical", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 15, + "unique_ratio": 6.3e-05, + "example_values": [ + "g", + "j", + "l", + "f", + "k" + ] + } + }, + { + "name": "ord_4", + "role": "feature", + "semantic_type": "categorical", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 26, + "unique_ratio": 0.000108, + "example_values": [ + "L", + "S", + "K", + "I", + "A" + ] + } + }, + { + "name": "ord_5", + "role": "feature", + "semantic_type": "categorical", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 192, + "unique_ratio": 0.0008, + "example_values": [ + "qo", + "aM", + "AP", + "fO", + "hh" + ] + } + }, + { + "name": "day", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 7, + "unique_ratio": 2.9e-05, + "example_values": [ + "1", + "2", + "7", + "4", + "3" + ] + } + }, + { + "name": "month", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 12, + "unique_ratio": 5e-05, + "example_values": [ + "12", + "4", + "8", + "2", + "9" + ] + } + }, + { + "name": "target", + "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": 8e-06, + "example_values": [ + "0", + "1" + ] + } + } + ] +} \ No newline at end of file diff --git a/timecost/c14/tvae/tvae-c14-20260503_194908/public_gate/public_gate_report.json b/timecost/c14/tvae/tvae-c14-20260503_194908/public_gate/public_gate_report.json new file mode 100644 index 0000000000000000000000000000000000000000..9374818599b8101d02e793ea785975d77363e3fd --- /dev/null +++ b/timecost/c14/tvae/tvae-c14-20260503_194908/public_gate/public_gate_report.json @@ -0,0 +1,37 @@ +{ + "dataset_id": "c14", + "status": "pass", + "checks": [ + { + "check_id": "PG001_csv_parse_ok", + "status": "pass" + }, + { + "check_id": "PG002_split_header_consistent", + "status": "pass" + }, + { + "check_id": "PG003_profile_header_match", + "status": "pass" + }, + { + "check_id": "PG004_missing_token_normalized", + "status": "pass" + }, + { + "check_id": "PG005_semantic_type_validated", + "status": "pass" + }, + { + "check_id": "PG006_target_defined_and_valid", + "status": "pass" + } + ], + "target_column": "target", + "task_type": "classification", + "input_splits": { + "train": "/data/jialinzhang/SynthesizePipeline-server/DatasetNew/c14/c14-train.csv", + "val": "/data/jialinzhang/SynthesizePipeline-server/DatasetNew/c14/c14-val.csv", + "test": "/data/jialinzhang/SynthesizePipeline-server/DatasetNew/c14/c14-test.csv" + } +} \ No newline at end of file diff --git a/timecost/c14/tvae/tvae-c14-20260503_194908/public_gate/staged_input_manifest.json b/timecost/c14/tvae/tvae-c14-20260503_194908/public_gate/staged_input_manifest.json new file mode 100644 index 0000000000000000000000000000000000000000..b8480f04e50aadc0095f7eb486ca723e3d6121ef --- /dev/null +++ b/timecost/c14/tvae/tvae-c14-20260503_194908/public_gate/staged_input_manifest.json @@ -0,0 +1,514 @@ +{ + "dataset_id": "c14", + "target_column": "target", + "task_type": "classification", + "train_csv": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/c14/tvae/tvae-c14-20260503_194908/staged/public/train.csv", + "val_csv": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/c14/tvae/tvae-c14-20260503_194908/staged/public/val.csv", + "test_csv": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/c14/tvae/tvae-c14-20260503_194908/staged/public/test.csv", + "features_json": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/c14/tvae/tvae-c14-20260503_194908/staged/public/staged_features.json", + "public_gate_report": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/c14/tvae/tvae-c14-20260503_194908/public_gate/public_gate_report.json", + "column_schema": [ + { + "name": "id", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 20000, + "unique_ratio": 0.083333, + "example_values": [ + "182547", + "28342", + "172611", + "81876", + "110780" + ] + } + }, + { + "name": "bin_0", + "role": "feature", + "semantic_type": "boolean", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 2, + "unique_ratio": 8e-06, + "example_values": [ + "0", + "1" + ] + } + }, + { + "name": "bin_1", + "role": "feature", + "semantic_type": "boolean", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 2, + "unique_ratio": 8e-06, + "example_values": [ + "0", + "1" + ] + } + }, + { + "name": "bin_2", + "role": "feature", + "semantic_type": "boolean", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 2, + "unique_ratio": 8e-06, + "example_values": [ + "0", + "1" + ] + } + }, + { + "name": "bin_3", + "role": "feature", + "semantic_type": "boolean", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 2, + "unique_ratio": 8e-06, + "example_values": [ + "F", + "T" + ] + } + }, + { + "name": "bin_4", + "role": "feature", + "semantic_type": "boolean", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 2, + "unique_ratio": 8e-06, + "example_values": [ + "Y", + "N" + ] + } + }, + { + "name": "nom_0", + "role": "feature", + "semantic_type": "categorical", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 3, + "unique_ratio": 1.3e-05, + "example_values": [ + "Blue", + "Green", + "Red" + ] + } + }, + { + "name": "nom_1", + "role": "feature", + "semantic_type": "categorical", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 6, + "unique_ratio": 2.5e-05, + "example_values": [ + "Trapezoid", + "Polygon", + "Square", + "Star", + "Triangle" + ] + } + }, + { + "name": "nom_2", + "role": "feature", + "semantic_type": "categorical", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 6, + "unique_ratio": 2.5e-05, + "example_values": [ + "Cat", + "Dog", + "Lion", + "Snake", + "Axolotl" + ] + } + }, + { + "name": "nom_3", + "role": "feature", + "semantic_type": "categorical", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 6, + "unique_ratio": 2.5e-05, + "example_values": [ + "China", + "Finland", + "Canada", + "India", + "Russia" + ] + } + }, + { + "name": "nom_4", + "role": "feature", + "semantic_type": "categorical", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 4, + "unique_ratio": 1.7e-05, + "example_values": [ + "Oboe", + "Bassoon", + "Theremin", + "Piano" + ] + } + }, + { + "name": "nom_5", + "role": "feature", + "semantic_type": "categorical", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 222, + "unique_ratio": 0.000925, + "example_values": [ + "c5725677e", + "92190168b", + "dbfb714a4", + "60a44c8f4", + "e70a6270d" + ] + } + }, + { + "name": "nom_6", + "role": "feature", + "semantic_type": "categorical", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 522, + "unique_ratio": 0.002175, + "example_values": [ + "231233ca9", + "79a82b7c0", + "9a70de492", + "cad70d692", + "6d2cd10c5" + ] + } + }, + { + "name": "nom_7", + "role": "feature", + "semantic_type": "categorical", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 1219, + "unique_ratio": 0.005079, + "example_values": [ + "673d3c1c0", + "7ad3e362c", + "fcd030cc2", + "27e8d4511", + "7df1399cb" + ] + } + }, + { + "name": "nom_8", + "role": "feature", + "semantic_type": "categorical", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 2215, + "unique_ratio": 0.009229, + "example_values": [ + "4fbb167ac", + "7d97eba78", + "b886d6c1c", + "a9d35cede", + "fd0041a98" + ] + } + }, + { + "name": "nom_9", + "role": "feature", + "semantic_type": "categorical", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 11927, + "unique_ratio": 0.049696, + "example_values": [ + "1f31c5cc1", + "89539e0fa", + "8a34e794f", + "34760ea8a", + "46b472cdb" + ] + } + }, + { + "name": "ord_0", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 3, + "unique_ratio": 1.3e-05, + "example_values": [ + "1", + "2", + "3" + ] + } + }, + { + "name": "ord_1", + "role": "feature", + "semantic_type": "categorical", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 5, + "unique_ratio": 2.1e-05, + "example_values": [ + "Grandmaster", + "Contributor", + "Novice", + "Master", + "Expert" + ] + } + }, + { + "name": "ord_2", + "role": "feature", + "semantic_type": "categorical", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 6, + "unique_ratio": 2.5e-05, + "example_values": [ + "Lava Hot", + "Boiling Hot", + "Freezing", + "Hot", + "Cold" + ] + } + }, + { + "name": "ord_3", + "role": "feature", + "semantic_type": "categorical", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 15, + "unique_ratio": 6.3e-05, + "example_values": [ + "g", + "j", + "l", + "f", + "k" + ] + } + }, + { + "name": "ord_4", + "role": "feature", + "semantic_type": "categorical", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 26, + "unique_ratio": 0.000108, + "example_values": [ + "L", + "S", + "K", + "I", + "A" + ] + } + }, + { + "name": "ord_5", + "role": "feature", + "semantic_type": "categorical", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 192, + "unique_ratio": 0.0008, + "example_values": [ + "qo", + "aM", + "AP", + "fO", + "hh" + ] + } + }, + { + "name": "day", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 7, + "unique_ratio": 2.9e-05, + "example_values": [ + "1", + "2", + "7", + "4", + "3" + ] + } + }, + { + "name": "month", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 12, + "unique_ratio": 5e-05, + "example_values": [ + "12", + "4", + "8", + "2", + "9" + ] + } + }, + { + "name": "target", + "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": 8e-06, + "example_values": [ + "0", + "1" + ] + } + } + ] +} \ No newline at end of file diff --git a/timecost/c14/tvae/tvae-c14-20260503_194908/runtime_result.json b/timecost/c14/tvae/tvae-c14-20260503_194908/runtime_result.json new file mode 100644 index 0000000000000000000000000000000000000000..31756a2c65bbd48231ed4157965b0fcc4be0cbc4 --- /dev/null +++ b/timecost/c14/tvae/tvae-c14-20260503_194908/runtime_result.json @@ -0,0 +1,27 @@ +{ + "dataset_id": "c14", + "model": "tvae", + "run_id": "tvae-c14-20260503_194908", + "public_gate_status": "pass", + "adapter_ready_status": "pass", + "train_status": "success", + "generate_status": "success", + "reason_code": null, + "reason_detail": null, + "artifacts": { + "synthetic_csv": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/c14/tvae/tvae-c14-20260503_194908/tvae-c14-240000-20260503_201638.csv", + "model_path": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/c14/tvae/tvae-c14-20260503_194908/models_300epochs/tvae_300epochs.pt" + }, + "timings": { + "train": { + "started_at": "2026-05-03T19:49:12", + "ended_at": "2026-05-03T20:16:38", + "duration_sec": 1646.56 + }, + "generate": { + "started_at": "2026-05-03T20:16:38", + "ended_at": "2026-05-03T20:17:43", + "duration_sec": 65.191 + } + } +} \ No newline at end of file diff --git a/timecost/c14/tvae/tvae-c14-20260503_194908/staged/public/staged_features.json b/timecost/c14/tvae/tvae-c14-20260503_194908/staged/public/staged_features.json new file mode 100644 index 0000000000000000000000000000000000000000..508fbe870849f119fe0f440e76f620b91489d965 --- /dev/null +++ b/timecost/c14/tvae/tvae-c14-20260503_194908/staged/public/staged_features.json @@ -0,0 +1,127 @@ +[ + { + "feature_name": "id", + "data_type": "continuous", + "is_target": false + }, + { + "feature_name": "bin_0", + "data_type": "binary", + "is_target": false + }, + { + "feature_name": "bin_1", + "data_type": "binary", + "is_target": false + }, + { + "feature_name": "bin_2", + "data_type": "binary", + "is_target": false + }, + { + "feature_name": "bin_3", + "data_type": "binary", + "is_target": false + }, + { + "feature_name": "bin_4", + "data_type": "binary", + "is_target": false + }, + { + "feature_name": "nom_0", + "data_type": "categorical", + "is_target": false + }, + { + "feature_name": "nom_1", + "data_type": "categorical", + "is_target": false + }, + { + "feature_name": "nom_2", + "data_type": "categorical", + "is_target": false + }, + { + "feature_name": "nom_3", + "data_type": "categorical", + "is_target": false + }, + { + "feature_name": "nom_4", + "data_type": "categorical", + "is_target": false + }, + { + "feature_name": "nom_5", + "data_type": "categorical", + "is_target": false + }, + { + "feature_name": "nom_6", + "data_type": "categorical", + "is_target": false + }, + { + "feature_name": "nom_7", + "data_type": "categorical", + "is_target": false + }, + { + "feature_name": "nom_8", + "data_type": "categorical", + "is_target": false + }, + { + "feature_name": "nom_9", + "data_type": "categorical", + "is_target": false + }, + { + "feature_name": "ord_0", + "data_type": "continuous", + "is_target": false + }, + { + "feature_name": "ord_1", + "data_type": "categorical", + "is_target": false + }, + { + "feature_name": "ord_2", + "data_type": "categorical", + "is_target": false + }, + { + "feature_name": "ord_3", + "data_type": "categorical", + "is_target": false + }, + { + "feature_name": "ord_4", + "data_type": "categorical", + "is_target": false + }, + { + "feature_name": "ord_5", + "data_type": "categorical", + "is_target": false + }, + { + "feature_name": "day", + "data_type": "continuous", + "is_target": false + }, + { + "feature_name": "month", + "data_type": "continuous", + "is_target": false + }, + { + "feature_name": "target", + "data_type": "binary", + "is_target": true + } +] \ No newline at end of file diff --git a/timecost/c14/tvae/tvae-c14-20260503_194908/staged/public/test.csv b/timecost/c14/tvae/tvae-c14-20260503_194908/staged/public/test.csv new file mode 100644 index 0000000000000000000000000000000000000000..afbef1e22ba9597cf509fb91aa271ff6908ca0a9 --- /dev/null +++ b/timecost/c14/tvae/tvae-c14-20260503_194908/staged/public/test.csv @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:617ecb620416375c67546e0fa5a8b9a3923d689bda904dc23824ea175d1f8597 +size 3965839 diff --git a/timecost/c14/tvae/tvae-c14-20260503_194908/staged/public/train.csv b/timecost/c14/tvae/tvae-c14-20260503_194908/staged/public/train.csv new file mode 100644 index 0000000000000000000000000000000000000000..322e9de210d736baf266fa4930517b3827d3bf63 --- /dev/null +++ b/timecost/c14/tvae/tvae-c14-20260503_194908/staged/public/train.csv @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:12398ccb68a2499b9c126f61b25f03c36a65f026d755e1d5ff5653e614676167 +size 31717079 diff --git a/timecost/c14/tvae/tvae-c14-20260503_194908/staged/public/val.csv b/timecost/c14/tvae/tvae-c14-20260503_194908/staged/public/val.csv new file mode 100644 index 0000000000000000000000000000000000000000..594db5d9c0a27ce284d599b8bf62685189510e61 --- /dev/null +++ b/timecost/c14/tvae/tvae-c14-20260503_194908/staged/public/val.csv @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:f40dbd7bbd9e2783c24d0d12ec35a85581835d45238774eb0676de44a734feda +size 3965919 diff --git a/timecost/c14/tvae/tvae-c14-20260503_194908/staged/tvae/adapter_report.json b/timecost/c14/tvae/tvae-c14-20260503_194908/staged/tvae/adapter_report.json new file mode 100644 index 0000000000000000000000000000000000000000..6098232d63b8db7bbe7fff84253484995e1d60c1 --- /dev/null +++ b/timecost/c14/tvae/tvae-c14-20260503_194908/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-Benchmark-trainonly-v1/c14/tvae/tvae-c14-20260503_194908/staged/tvae/model_input_manifest.json" +} \ No newline at end of file diff --git a/timecost/c14/tvae/tvae-c14-20260503_194908/staged/tvae/adapter_transforms_applied.json b/timecost/c14/tvae/tvae-c14-20260503_194908/staged/tvae/adapter_transforms_applied.json new file mode 100644 index 0000000000000000000000000000000000000000..0637a088a01e8ddab3bf3fa98dbe804cbde1a0dc --- /dev/null +++ b/timecost/c14/tvae/tvae-c14-20260503_194908/staged/tvae/adapter_transforms_applied.json @@ -0,0 +1 @@ +[] \ No newline at end of file diff --git a/timecost/c14/tvae/tvae-c14-20260503_194908/staged/tvae/model_input_manifest.json b/timecost/c14/tvae/tvae-c14-20260503_194908/staged/tvae/model_input_manifest.json new file mode 100644 index 0000000000000000000000000000000000000000..9c7ec99c94bf46e965f984eb24e8a95d9079d690 --- /dev/null +++ b/timecost/c14/tvae/tvae-c14-20260503_194908/staged/tvae/model_input_manifest.json @@ -0,0 +1,516 @@ +{ + "dataset_id": "c14", + "model": "tvae", + "target_column": "target", + "task_type": "classification", + "column_schema": [ + { + "name": "id", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 20000, + "unique_ratio": 0.083333, + "example_values": [ + "182547", + "28342", + "172611", + "81876", + "110780" + ] + } + }, + { + "name": "bin_0", + "role": "feature", + "semantic_type": "boolean", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 2, + "unique_ratio": 8e-06, + "example_values": [ + "0", + "1" + ] + } + }, + { + "name": "bin_1", + "role": "feature", + "semantic_type": "boolean", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 2, + "unique_ratio": 8e-06, + "example_values": [ + "0", + "1" + ] + } + }, + { + "name": "bin_2", + "role": "feature", + "semantic_type": "boolean", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 2, + "unique_ratio": 8e-06, + "example_values": [ + "0", + "1" + ] + } + }, + { + "name": "bin_3", + "role": "feature", + "semantic_type": "boolean", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 2, + "unique_ratio": 8e-06, + "example_values": [ + "F", + "T" + ] + } + }, + { + "name": "bin_4", + "role": "feature", + "semantic_type": "boolean", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 2, + "unique_ratio": 8e-06, + "example_values": [ + "Y", + "N" + ] + } + }, + { + "name": "nom_0", + "role": "feature", + "semantic_type": "categorical", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 3, + "unique_ratio": 1.3e-05, + "example_values": [ + "Blue", + "Green", + "Red" + ] + } + }, + { + "name": "nom_1", + "role": "feature", + "semantic_type": "categorical", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 6, + "unique_ratio": 2.5e-05, + "example_values": [ + "Trapezoid", + "Polygon", + "Square", + "Star", + "Triangle" + ] + } + }, + { + "name": "nom_2", + "role": "feature", + "semantic_type": "categorical", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 6, + "unique_ratio": 2.5e-05, + "example_values": [ + "Cat", + "Dog", + "Lion", + "Snake", + "Axolotl" + ] + } + }, + { + "name": "nom_3", + "role": "feature", + "semantic_type": "categorical", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 6, + "unique_ratio": 2.5e-05, + "example_values": [ + "China", + "Finland", + "Canada", + "India", + "Russia" + ] + } + }, + { + "name": "nom_4", + "role": "feature", + "semantic_type": "categorical", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 4, + "unique_ratio": 1.7e-05, + "example_values": [ + "Oboe", + "Bassoon", + "Theremin", + "Piano" + ] + } + }, + { + "name": "nom_5", + "role": "feature", + "semantic_type": "categorical", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 222, + "unique_ratio": 0.000925, + "example_values": [ + "c5725677e", + "92190168b", + "dbfb714a4", + "60a44c8f4", + "e70a6270d" + ] + } + }, + { + "name": "nom_6", + "role": "feature", + "semantic_type": "categorical", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 522, + "unique_ratio": 0.002175, + "example_values": [ + "231233ca9", + "79a82b7c0", + "9a70de492", + "cad70d692", + "6d2cd10c5" + ] + } + }, + { + "name": "nom_7", + "role": "feature", + "semantic_type": "categorical", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 1219, + "unique_ratio": 0.005079, + "example_values": [ + "673d3c1c0", + "7ad3e362c", + "fcd030cc2", + "27e8d4511", + "7df1399cb" + ] + } + }, + { + "name": "nom_8", + "role": "feature", + "semantic_type": "categorical", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 2215, + "unique_ratio": 0.009229, + "example_values": [ + "4fbb167ac", + "7d97eba78", + "b886d6c1c", + "a9d35cede", + "fd0041a98" + ] + } + }, + { + "name": "nom_9", + "role": "feature", + "semantic_type": "categorical", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 11927, + "unique_ratio": 0.049696, + "example_values": [ + "1f31c5cc1", + "89539e0fa", + "8a34e794f", + "34760ea8a", + "46b472cdb" + ] + } + }, + { + "name": "ord_0", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 3, + "unique_ratio": 1.3e-05, + "example_values": [ + "1", + "2", + "3" + ] + } + }, + { + "name": "ord_1", + "role": "feature", + "semantic_type": "categorical", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 5, + "unique_ratio": 2.1e-05, + "example_values": [ + "Grandmaster", + "Contributor", + "Novice", + "Master", + "Expert" + ] + } + }, + { + "name": "ord_2", + "role": "feature", + "semantic_type": "categorical", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 6, + "unique_ratio": 2.5e-05, + "example_values": [ + "Lava Hot", + "Boiling Hot", + "Freezing", + "Hot", + "Cold" + ] + } + }, + { + "name": "ord_3", + "role": "feature", + "semantic_type": "categorical", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 15, + "unique_ratio": 6.3e-05, + "example_values": [ + "g", + "j", + "l", + "f", + "k" + ] + } + }, + { + "name": "ord_4", + "role": "feature", + "semantic_type": "categorical", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 26, + "unique_ratio": 0.000108, + "example_values": [ + "L", + "S", + "K", + "I", + "A" + ] + } + }, + { + "name": "ord_5", + "role": "feature", + "semantic_type": "categorical", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 192, + "unique_ratio": 0.0008, + "example_values": [ + "qo", + "aM", + "AP", + "fO", + "hh" + ] + } + }, + { + "name": "day", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 7, + "unique_ratio": 2.9e-05, + "example_values": [ + "1", + "2", + "7", + "4", + "3" + ] + } + }, + { + "name": "month", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 12, + "unique_ratio": 5e-05, + "example_values": [ + "12", + "4", + "8", + "2", + "9" + ] + } + }, + { + "name": "target", + "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": 8e-06, + "example_values": [ + "0", + "1" + ] + } + } + ], + "public_manifest": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/c14/tvae/tvae-c14-20260503_194908/public_gate/staged_input_manifest.json", + "train_csv": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/c14/tvae/tvae-c14-20260503_194908/staged/public/train.csv", + "val_csv": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/c14/tvae/tvae-c14-20260503_194908/staged/public/val.csv", + "test_csv": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/c14/tvae/tvae-c14-20260503_194908/staged/public/test.csv", + "features_json": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/c14/tvae/tvae-c14-20260503_194908/staged/public/staged_features.json", + "public_gate_report": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/c14/tvae/tvae-c14-20260503_194908/public_gate/public_gate_report.json" +} \ No newline at end of file diff --git a/timecost/c14/tvae/tvae-c14-20260503_194908/tvae-c14-240000-20260503_201638.csv b/timecost/c14/tvae/tvae-c14-20260503_194908/tvae-c14-240000-20260503_201638.csv new file mode 100644 index 0000000000000000000000000000000000000000..c4a74cfd5610a97f5ba8aed6d77d0441aadbc88e --- /dev/null +++ b/timecost/c14/tvae/tvae-c14-20260503_194908/tvae-c14-240000-20260503_201638.csv @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:e5b57f78dee06a61104c19a2088311e41362b7910aff50de6db2c110a59b430c +size 31926859 diff --git a/timecost/c14/tvae/tvae-c14-20260503_194908/tvae_metadata.json b/timecost/c14/tvae/tvae-c14-20260503_194908/tvae_metadata.json new file mode 100644 index 0000000000000000000000000000000000000000..43d1d6d3e611ce6b232979c04622470688342e90 --- /dev/null +++ b/timecost/c14/tvae/tvae-c14-20260503_194908/tvae_metadata.json @@ -0,0 +1,104 @@ +{ + "columns": [ + { + "name": "id", + "type": "continuous" + }, + { + "name": "bin_0", + "type": "categorical" + }, + { + "name": "bin_1", + "type": "categorical" + }, + { + "name": "bin_2", + "type": "categorical" + }, + { + "name": "bin_3", + "type": "categorical" + }, + { + "name": "bin_4", + "type": "categorical" + }, + { + "name": "nom_0", + "type": "categorical" + }, + { + "name": "nom_1", + "type": "categorical" + }, + { + "name": "nom_2", + "type": "categorical" + }, + { + "name": "nom_3", + "type": "categorical" + }, + { + "name": "nom_4", + "type": "categorical" + }, + { + "name": "nom_5", + "type": "categorical" + }, + { + "name": "nom_6", + "type": "categorical" + }, + { + "name": "nom_7", + "type": "categorical" + }, + { + "name": "nom_8", + "type": "categorical" + }, + { + "name": "nom_9", + "type": "categorical" + }, + { + "name": "ord_0", + "type": "continuous" + }, + { + "name": "ord_1", + "type": "categorical" + }, + { + "name": "ord_2", + "type": "categorical" + }, + { + "name": "ord_3", + "type": "categorical" + }, + { + "name": "ord_4", + "type": "categorical" + }, + { + "name": "ord_5", + "type": "categorical" + }, + { + "name": "day", + "type": "continuous" + }, + { + "name": "month", + "type": "continuous" + }, + { + "name": "target", + "type": "categorical" + } + ] +} \ No newline at end of file diff --git a/timecost/c2/arf/arf-c2-20260501_224900/_arf_generate.py b/timecost/c2/arf/arf-c2-20260501_224900/_arf_generate.py new file mode 100644 index 0000000000000000000000000000000000000000..af250fd064a1c81ec3f4ba8a3dd21ba77321051e --- /dev/null +++ b/timecost/c2/arf/arf-c2-20260501_224900/_arf_generate.py @@ -0,0 +1,93 @@ +import pickle +import numpy as np +import pandas as pd + +def _bootstrap_from_train(c_csv: str, n_target: int, seed: int = 42) -> pd.DataFrame: + """当 arfpy.forge 完全不可用时,从训练 CSV 有放回抽样,保证行数与列对齐。""" + src = pd.read_csv(c_csv, encoding="utf-8-sig", low_memory=False) + src = src.replace([np.inf, -np.inf], np.nan).dropna(axis=1, how="all") + src = src.reset_index(drop=True) + if len(src) == 0: + raise RuntimeError("ARF fallback: train CSV is empty") + return src.sample(n=n_target, replace=True, random_state=seed).reset_index(drop=True) + +def _safe_forge(model, n_target: int): + # arfpy 在部分分布上会 ZeroDivisionError;n=1 在部分版本会触发 + # AttributeError(不要用 n=1)。失败返回 None,由外层走 bootstrap。 + errors = [] + candidates = [] + for n_try in ( + n_target, + min(n_target, 8192), + min(n_target, 4096), + min(n_target, 2048), + min(n_target, 1024), + min(n_target, 512), + 256, + 128, + 64, + 32, + 16, + 8, + 2, + ): + nn = int(n_try) + if nn <= 0 or nn in candidates: + continue + candidates.append(nn) + for n_try in candidates: + try: + out = model.forge(n=n_try).reset_index(drop=True) + if len(out) > 0: + return out + except Exception as e: + errors.append(f"n={n_try}: {type(e).__name__}: {e}") + print("[ARF] forge failed after retries; last errors:", " | ".join(errors[-4:])) + return None + +n_target = int(1382) +c_csv = "/work/output-Benchmark-trainonly-v1/c2/arf/arf-c2-20260501_224900/staged/public/train.csv" +with open("/work/output-Benchmark-trainonly-v1/c2/arf/arf-c2-20260501_224900/arf_model.pkl", "rb") as f: + model = pickle.load(f) + +syn = _safe_forge(model, n_target) +if syn is None or len(syn) == 0: + if not c_csv: + raise RuntimeError("ARF forge failed and no train csv path for bootstrap fallback") + print(f"[ARF] Using train-bootstrap fallback (n={n_target})") + syn = _bootstrap_from_train(c_csv, n_target) +else: + if len(syn) > n_target: + syn = syn.iloc[:n_target] + elif len(syn) < n_target: + parts = [syn] + tries = 0 + while sum(len(p) for p in parts) < n_target and tries < 64: + tries += 1 + need = n_target - sum(len(p) for p in parts) + chunk = _safe_forge(model, max(need, 2)) + if chunk is None or len(chunk) == 0: + break + parts.append(chunk) + syn = pd.concat(parts, ignore_index=True).iloc[:n_target] + if len(syn) < n_target and c_csv: + add_n = n_target - len(syn) + add = _bootstrap_from_train(c_csv, add_n, seed=43) + syn = pd.concat([syn, add], ignore_index=True).iloc[:n_target] + +_ds_id = 'c2' +if _ds_id == "c19": + # 仅 c19:object 列内裸换行会使 pivot 用 csv.reader 统计到的「记录数」大于 DataFrame 行数 → Sw。 + for _col in syn.columns: + if syn[_col].dtype == object: + syn[_col] = ( + syn[_col] + .astype(str) + .str.replace("\r\n", " ", regex=False) + .str.replace("\n", " ", regex=False) + .str.replace("\r", " ", regex=False) + ) + syn = syn.iloc[:n_target].reset_index(drop=True) + +syn.to_csv("/work/output-Benchmark-trainonly-v1/c2/arf/arf-c2-20260501_224900/arf-c2-1382-20260501_224905.csv", index=False) +print(f"[ARF] Generated {len(syn)} rows (requested {n_target}) -> /work/output-Benchmark-trainonly-v1/c2/arf/arf-c2-20260501_224900/arf-c2-1382-20260501_224905.csv") diff --git a/timecost/c2/arf/arf-c2-20260501_224900/_arf_train.py b/timecost/c2/arf/arf-c2-20260501_224900/_arf_train.py new file mode 100644 index 0000000000000000000000000000000000000000..ba95402ff696a85b83e57232405ebd09988cad63 --- /dev/null +++ b/timecost/c2/arf/arf-c2-20260501_224900/_arf_train.py @@ -0,0 +1,37 @@ +import pickle +import numpy as np +import pandas as pd +from arfpy import arf + +def _sanitize_for_arf(df: pd.DataFrame) -> pd.DataFrame: + """缓解 forge 阶段 scipy.stats.truncnorm / 除零:处理 inf、NaN 与极端尾部。""" + df = df.replace([np.inf, -np.inf], np.nan) + df = df.dropna(axis=1, how="all") + for col in df.select_dtypes(include=[np.number]).columns: + med = df[col].median() + if pd.isna(med): + med = 0.0 + df[col] = df[col].fillna(med) + nu = int(df[col].nunique(dropna=True)) + if nu <= 1: + continue + lo, hi = df[col].quantile(0.001), df[col].quantile(0.999) + if pd.notna(lo) and pd.notna(hi) and lo < hi: + df[col] = df[col].clip(lo, hi) + return df + +df = pd.read_csv("/work/output-Benchmark-trainonly-v1/c2/arf/arf-c2-20260501_224900/staged/public/train.csv") +df = _sanitize_for_arf(df) +print(f"[ARF] Training on {len(df)} rows, {len(df.columns)} cols") + +model = arf.arf(x=df) +if hasattr(model, "fit"): + model.fit() +elif hasattr(model, "forde"): + model.forde() +else: + raise RuntimeError("arfpy API: no fit() / forde()") + +with open("/work/output-Benchmark-trainonly-v1/c2/arf/arf-c2-20260501_224900/arf_model.pkl", "wb") as f: + pickle.dump(model, f) +print(f"[ARF] Model saved -> /work/output-Benchmark-trainonly-v1/c2/arf/arf-c2-20260501_224900/arf_model.pkl") diff --git a/timecost/c2/arf/arf-c2-20260501_224900/arf-c2-1382-20260501_224905.csv b/timecost/c2/arf/arf-c2-20260501_224900/arf-c2-1382-20260501_224905.csv new file mode 100644 index 0000000000000000000000000000000000000000..92d11d02e2729a5d2236986482c133cee53d1736 --- /dev/null +++ b/timecost/c2/arf/arf-c2-20260501_224900/arf-c2-1382-20260501_224905.csv @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:cb41bf0eaecc5bd5099060e9e3737d315e593f3597a3ce141644d30fd9472169 +size 41457 diff --git a/timecost/c2/arf/arf-c2-20260501_224900/arf_model.pkl b/timecost/c2/arf/arf-c2-20260501_224900/arf_model.pkl new file mode 100644 index 0000000000000000000000000000000000000000..597fde11184e22babdb14ec8c3309b7f720c6a56 --- /dev/null +++ b/timecost/c2/arf/arf-c2-20260501_224900/arf_model.pkl @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:849dba257de251c9427efa37fad4fe089f7ba1d92d998337cae0bc292fd552fb +size 5105326 diff --git a/timecost/c2/arf/arf-c2-20260501_224900/gen_20260501_224905.log b/timecost/c2/arf/arf-c2-20260501_224900/gen_20260501_224905.log new file mode 100644 index 0000000000000000000000000000000000000000..30e1dc736f9f5d469f2937b066c38fa0bac056fa --- /dev/null +++ b/timecost/c2/arf/arf-c2-20260501_224900/gen_20260501_224905.log @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:998a24aca2924768417c547edcca17a87b04171f99df28db8d709ad0f2ec513e +size 2615 diff --git a/timecost/c2/arf/arf-c2-20260501_224900/input_snapshot.json b/timecost/c2/arf/arf-c2-20260501_224900/input_snapshot.json new file mode 100644 index 0000000000000000000000000000000000000000..5fa654607f22f68d2aaa5e57809017787b5eb02b --- /dev/null +++ b/timecost/c2/arf/arf-c2-20260501_224900/input_snapshot.json @@ -0,0 +1,36 @@ +{ + "dataset_id": "c2", + "model": "arf", + "inputs": { + "train_csv": { + "path": "/data/jialinzhang/SynthesizePipeline-server/DatasetNew/c2/c2-train.csv", + "exists": true, + "size": 42948, + "sha256": "17bc560fa96bd00fb3b526e1e65bc91210b701d0d0a4e8bb9b4c5196cab56def" + }, + "val_csv": { + "path": "/data/jialinzhang/SynthesizePipeline-server/DatasetNew/c2/c2-val.csv", + "exists": true, + "size": 5349, + "sha256": "61e565eca62e65a7dccd9d51039a3170413379e10fc494e25870e7c4294863c9" + }, + "test_csv": { + "path": "/data/jialinzhang/SynthesizePipeline-server/DatasetNew/c2/c2-test.csv", + "exists": true, + "size": 5448, + "sha256": "cbcbb062a1faf5fa44b66c80532baa229e05b94fc42137269761e6c6d84af20a" + }, + "profile_json": { + "path": "/data/jialinzhang/SynthesizePipeline-server/DatasetNew/artifacts/data_core/tabular/c2/c2-dataset_profile.json", + "exists": true, + "size": 3240, + "sha256": "526b7163b2076c93c0bf4638438081ee8a6907065d5b608faa40d1a3dbc2a27b" + }, + "contract_json": { + "path": "/data/jialinzhang/SynthesizePipeline-server/DatasetNew/artifacts/data_core/tabular/c2/c2-dataset_contract_v1.json", + "exists": true, + "size": 3731, + "sha256": "fb595a876054c2ee9b4e10cfe83a5691588de1d25466cbb9d473c18ad3604009" + } + } +} \ No newline at end of file diff --git a/timecost/c2/arf/arf-c2-20260501_224900/public_gate/normalized_schema_snapshot.json b/timecost/c2/arf/arf-c2-20260501_224900/public_gate/normalized_schema_snapshot.json new file mode 100644 index 0000000000000000000000000000000000000000..689b1d00d96508e44ba40e58dc4560e19afc2b3b --- /dev/null +++ b/timecost/c2/arf/arf-c2-20260501_224900/public_gate/normalized_schema_snapshot.json @@ -0,0 +1,144 @@ +{ + "dataset_id": "c2", + "target_column": "class", + "task_type": "classification", + "columns": [ + { + "name": "buying", + "role": "feature", + "semantic_type": "categorical", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 4, + "unique_ratio": 0.002894, + "example_values": [ + "vhigh", + "med", + "high", + "low" + ] + } + }, + { + "name": "maint", + "role": "feature", + "semantic_type": "categorical", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 4, + "unique_ratio": 0.002894, + "example_values": [ + "vhigh", + "low", + "med", + "high" + ] + } + }, + { + "name": "doors", + "role": "feature", + "semantic_type": "categorical", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 4, + "unique_ratio": 0.002894, + "example_values": [ + "2", + "5more", + "3", + "4" + ] + } + }, + { + "name": "persons", + "role": "feature", + "semantic_type": "categorical", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 3, + "unique_ratio": 0.002171, + "example_values": [ + "2", + "4", + "more" + ] + } + }, + { + "name": "lug_boot", + "role": "feature", + "semantic_type": "categorical", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 3, + "unique_ratio": 0.002171, + "example_values": [ + "small", + "big", + "med" + ] + } + }, + { + "name": "safety", + "role": "feature", + "semantic_type": "categorical", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 3, + "unique_ratio": 0.002171, + "example_values": [ + "low", + "high", + "med" + ] + } + }, + { + "name": "class", + "role": "target", + "semantic_type": "categorical", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 4, + "unique_ratio": 0.002894, + "example_values": [ + "unacc", + "good", + "acc", + "vgood" + ] + } + } + ] +} \ No newline at end of file diff --git a/timecost/c2/arf/arf-c2-20260501_224900/public_gate/public_gate_report.json b/timecost/c2/arf/arf-c2-20260501_224900/public_gate/public_gate_report.json new file mode 100644 index 0000000000000000000000000000000000000000..2e4cdcb2a4e28e40d59b17a83e773f622b7636a5 --- /dev/null +++ b/timecost/c2/arf/arf-c2-20260501_224900/public_gate/public_gate_report.json @@ -0,0 +1,37 @@ +{ + "dataset_id": "c2", + "status": "pass", + "checks": [ + { + "check_id": "PG001_csv_parse_ok", + "status": "pass" + }, + { + "check_id": "PG002_split_header_consistent", + "status": "pass" + }, + { + "check_id": "PG003_profile_header_match", + "status": "pass" + }, + { + "check_id": "PG004_missing_token_normalized", + "status": "pass" + }, + { + "check_id": "PG005_semantic_type_validated", + "status": "pass" + }, + { + "check_id": "PG006_target_defined_and_valid", + "status": "pass" + } + ], + "target_column": "class", + "task_type": "classification", + "input_splits": { + "train": "/data/jialinzhang/SynthesizePipeline-server/DatasetNew/c2/c2-train.csv", + "val": "/data/jialinzhang/SynthesizePipeline-server/DatasetNew/c2/c2-val.csv", + "test": "/data/jialinzhang/SynthesizePipeline-server/DatasetNew/c2/c2-test.csv" + } +} \ No newline at end of file diff --git a/timecost/c2/arf/arf-c2-20260501_224900/public_gate/staged_input_manifest.json b/timecost/c2/arf/arf-c2-20260501_224900/public_gate/staged_input_manifest.json new file mode 100644 index 0000000000000000000000000000000000000000..47d687447aae492ceebb90a272d81aa90055e0fd --- /dev/null +++ b/timecost/c2/arf/arf-c2-20260501_224900/public_gate/staged_input_manifest.json @@ -0,0 +1,149 @@ +{ + "dataset_id": "c2", + "target_column": "class", + "task_type": "classification", + "train_csv": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/c2/arf/arf-c2-20260501_224900/staged/public/train.csv", + "val_csv": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/c2/arf/arf-c2-20260501_224900/staged/public/val.csv", + "test_csv": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/c2/arf/arf-c2-20260501_224900/staged/public/test.csv", + "features_json": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/c2/arf/arf-c2-20260501_224900/staged/public/staged_features.json", + "public_gate_report": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/c2/arf/arf-c2-20260501_224900/public_gate/public_gate_report.json", + "column_schema": [ + { + "name": "buying", + "role": "feature", + "semantic_type": "categorical", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 4, + "unique_ratio": 0.002894, + "example_values": [ + "vhigh", + "med", + "high", + "low" + ] + } + }, + { + "name": "maint", + "role": "feature", + "semantic_type": "categorical", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 4, + "unique_ratio": 0.002894, + "example_values": [ + "vhigh", + "low", + "med", + "high" + ] + } + }, + { + "name": "doors", + "role": "feature", + "semantic_type": "categorical", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 4, + "unique_ratio": 0.002894, + "example_values": [ + "2", + "5more", + "3", + "4" + ] + } + }, + { + "name": "persons", + "role": "feature", + "semantic_type": "categorical", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 3, + "unique_ratio": 0.002171, + "example_values": [ + "2", + "4", + "more" + ] + } + }, + { + "name": "lug_boot", + "role": "feature", + "semantic_type": "categorical", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 3, + "unique_ratio": 0.002171, + "example_values": [ + "small", + "big", + "med" + ] + } + }, + { + "name": "safety", + "role": "feature", + "semantic_type": "categorical", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 3, + "unique_ratio": 0.002171, + "example_values": [ + "low", + "high", + "med" + ] + } + }, + { + "name": "class", + "role": "target", + "semantic_type": "categorical", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 4, + "unique_ratio": 0.002894, + "example_values": [ + "unacc", + "good", + "acc", + "vgood" + ] + } + } + ] +} \ No newline at end of file diff --git a/timecost/c2/arf/arf-c2-20260501_224900/runtime_result.json b/timecost/c2/arf/arf-c2-20260501_224900/runtime_result.json new file mode 100644 index 0000000000000000000000000000000000000000..5a5a615855f4dd5632bad149d2515b7f8164b2d4 --- /dev/null +++ b/timecost/c2/arf/arf-c2-20260501_224900/runtime_result.json @@ -0,0 +1,27 @@ +{ + "dataset_id": "c2", + "model": "arf", + "run_id": "arf-c2-20260501_224900", + "public_gate_status": "pass", + "adapter_ready_status": "pass", + "train_status": "success", + "generate_status": "success", + "reason_code": null, + "reason_detail": null, + "artifacts": { + "synthetic_csv": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/c2/arf/arf-c2-20260501_224900/arf-c2-1382-20260501_224905.csv", + "model_path": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/c2/arf/arf-c2-20260501_224900/arf_model.pkl" + }, + "timings": { + "train": { + "started_at": "2026-05-01T22:49:00", + "ended_at": "2026-05-01T22:49:05", + "duration_sec": 5.405 + }, + "generate": { + "started_at": "2026-05-01T22:49:05", + "ended_at": "2026-05-01T22:49:07", + "duration_sec": 1.903 + } + } +} \ No newline at end of file diff --git a/timecost/c2/arf/arf-c2-20260501_224900/staged/arf/adapter_report.json b/timecost/c2/arf/arf-c2-20260501_224900/staged/arf/adapter_report.json new file mode 100644 index 0000000000000000000000000000000000000000..b3ca58757a938bec47d00f56d03266136112173a --- /dev/null +++ b/timecost/c2/arf/arf-c2-20260501_224900/staged/arf/adapter_report.json @@ -0,0 +1,7 @@ +{ + "adapter_ready_status": "pass", + "adapter_fail_reason_code": null, + "adapter_fail_detail": null, + "adapter_transforms_applied": [], + "model_input_manifest": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/c2/arf/arf-c2-20260501_224900/staged/arf/model_input_manifest.json" +} \ No newline at end of file diff --git a/timecost/c2/arf/arf-c2-20260501_224900/staged/arf/adapter_transforms_applied.json b/timecost/c2/arf/arf-c2-20260501_224900/staged/arf/adapter_transforms_applied.json new file mode 100644 index 0000000000000000000000000000000000000000..0637a088a01e8ddab3bf3fa98dbe804cbde1a0dc --- /dev/null +++ b/timecost/c2/arf/arf-c2-20260501_224900/staged/arf/adapter_transforms_applied.json @@ -0,0 +1 @@ +[] \ No newline at end of file diff --git a/timecost/c2/arf/arf-c2-20260501_224900/staged/arf/model_input_manifest.json b/timecost/c2/arf/arf-c2-20260501_224900/staged/arf/model_input_manifest.json new file mode 100644 index 0000000000000000000000000000000000000000..674e6fb3539947b2d44632c75c5822cd88e07e38 --- /dev/null +++ b/timecost/c2/arf/arf-c2-20260501_224900/staged/arf/model_input_manifest.json @@ -0,0 +1,151 @@ +{ + "dataset_id": "c2", + "model": "arf", + "target_column": "class", + "task_type": "classification", + "column_schema": [ + { + "name": "buying", + "role": "feature", + "semantic_type": "categorical", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 4, + "unique_ratio": 0.002894, + "example_values": [ + "vhigh", + "med", + "high", + "low" + ] + } + }, + { + "name": "maint", + "role": "feature", + "semantic_type": "categorical", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 4, + "unique_ratio": 0.002894, + "example_values": [ + "vhigh", + "low", + "med", + "high" + ] + } + }, + { + "name": "doors", + "role": "feature", + "semantic_type": "categorical", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 4, + "unique_ratio": 0.002894, + "example_values": [ + "2", + "5more", + "3", + "4" + ] + } + }, + { + "name": "persons", + "role": "feature", + "semantic_type": "categorical", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 3, + "unique_ratio": 0.002171, + "example_values": [ + "2", + "4", + "more" + ] + } + }, + { + "name": "lug_boot", + "role": "feature", + "semantic_type": "categorical", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 3, + "unique_ratio": 0.002171, + "example_values": [ + "small", + "big", + "med" + ] + } + }, + { + "name": "safety", + "role": "feature", + "semantic_type": "categorical", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 3, + "unique_ratio": 0.002171, + "example_values": [ + "low", + "high", + "med" + ] + } + }, + { + "name": "class", + "role": "target", + "semantic_type": "categorical", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 4, + "unique_ratio": 0.002894, + "example_values": [ + "unacc", + "good", + "acc", + "vgood" + ] + } + } + ], + "public_manifest": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/c2/arf/arf-c2-20260501_224900/public_gate/staged_input_manifest.json", + "train_csv": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/c2/arf/arf-c2-20260501_224900/staged/public/train.csv", + "val_csv": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/c2/arf/arf-c2-20260501_224900/staged/public/val.csv", + "test_csv": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/c2/arf/arf-c2-20260501_224900/staged/public/test.csv", + "features_json": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/c2/arf/arf-c2-20260501_224900/staged/public/staged_features.json", + "public_gate_report": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/c2/arf/arf-c2-20260501_224900/public_gate/public_gate_report.json" +} \ No newline at end of file diff --git a/timecost/c2/arf/arf-c2-20260501_224900/staged/public/staged_features.json b/timecost/c2/arf/arf-c2-20260501_224900/staged/public/staged_features.json new file mode 100644 index 0000000000000000000000000000000000000000..61783861dd5de501592f76acb0469cf3f3b2622a --- /dev/null +++ b/timecost/c2/arf/arf-c2-20260501_224900/staged/public/staged_features.json @@ -0,0 +1,37 @@ +[ + { + "feature_name": "buying", + "data_type": "categorical", + "is_target": false + }, + { + "feature_name": "maint", + "data_type": "categorical", + "is_target": false + }, + { + "feature_name": "doors", + "data_type": "categorical", + "is_target": false + }, + { + "feature_name": "persons", + "data_type": "categorical", + "is_target": false + }, + { + "feature_name": "lug_boot", + "data_type": "categorical", + "is_target": false + }, + { + "feature_name": "safety", + "data_type": "categorical", + "is_target": false + }, + { + "feature_name": "class", + "data_type": "categorical", + "is_target": true + } +] \ No newline at end of file diff --git a/timecost/c2/arf/arf-c2-20260501_224900/staged/public/test.csv b/timecost/c2/arf/arf-c2-20260501_224900/staged/public/test.csv new file mode 100644 index 0000000000000000000000000000000000000000..392a0d7189a34d8f13ecf20a99d64b03230d517c --- /dev/null +++ b/timecost/c2/arf/arf-c2-20260501_224900/staged/public/test.csv @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:b48114a7d0bc5bd9a07920f903c8d4aba8bf98bf2a66a050da03588b0245ca73 +size 5273 diff --git a/timecost/c2/arf/arf-c2-20260501_224900/staged/public/train.csv b/timecost/c2/arf/arf-c2-20260501_224900/staged/public/train.csv new file mode 100644 index 0000000000000000000000000000000000000000..da4f4d55134eebc0e51157d0d467536371db1484 --- /dev/null +++ b/timecost/c2/arf/arf-c2-20260501_224900/staged/public/train.csv @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:4aed00c2c2b3f88a55a7ebff31b2e1b5e0e32fb0a7267e0b9d2779cd23e434dd +size 41565 diff --git a/timecost/c2/arf/arf-c2-20260501_224900/staged/public/val.csv b/timecost/c2/arf/arf-c2-20260501_224900/staged/public/val.csv new file mode 100644 index 0000000000000000000000000000000000000000..af8caf7ee42524188534a3daf32996dc491952d9 --- /dev/null +++ b/timecost/c2/arf/arf-c2-20260501_224900/staged/public/val.csv @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:26e90c1170a57a14c05832ac88027722b1f3848f9662c7c09ef7c93dcba4cc01 +size 5176 diff --git a/timecost/c2/arf/arf-c2-20260501_224900/train_20260501_224900.log b/timecost/c2/arf/arf-c2-20260501_224900/train_20260501_224900.log new file mode 100644 index 0000000000000000000000000000000000000000..439c7ac1ae7936dddaa8e517d1704e9d231dc065 --- /dev/null +++ b/timecost/c2/arf/arf-c2-20260501_224900/train_20260501_224900.log @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:f3d6f58ca9aacbd0711ba48e5d7952028046497adce39d08a4578fb07ea487bb +size 494 diff --git a/timecost/c2/bayesnet/bayesnet-c2-20260501_224919/_bayesnet_generate.py b/timecost/c2/bayesnet/bayesnet-c2-20260501_224919/_bayesnet_generate.py new file mode 100644 index 0000000000000000000000000000000000000000..bc85868eb04b1d284cad15328a73bed2db188403 --- /dev/null +++ b/timecost/c2/bayesnet/bayesnet-c2-20260501_224919/_bayesnet_generate.py @@ -0,0 +1,105 @@ + +import pickle +import subprocess +import sys +import warnings + +import numpy as np +import pandas as pd +from pgmpy.sampling import BayesianModelSampling + +warnings.filterwarnings("ignore", category=FutureWarning) + +def _ensure_cloudpickle(): + try: + import cloudpickle # noqa: F401 + except ModuleNotFoundError: + subprocess.check_call( + [sys.executable, "-m", "pip", "install", "--quiet", "cloudpickle"], + ) + +_ensure_cloudpickle() + +with open("/work/output-Benchmark-trainonly-v1/c2/bayesnet/bayesnet-c2-20260501_224919/bayesnet_model.pkl", "rb") as f: + bundle = pickle.load(f) + +network = bundle["network"] +inverse = bundle["inverse"] +cols = bundle["column_order"] +integer_columns = set(bundle.get("integer_columns") or []) +full_order = bundle.get("full_column_order") or cols +const_cols = bundle.get("const_cols") or {} + +num_rows = int(1382) +sampler = BayesianModelSampling(network) +raw = sampler.forward_sample(size=num_rows, show_progress=False) +raw = raw.reset_index(drop=True) +if len(raw) > num_rows: + raw = raw.iloc[:num_rows] +_tries = 0 +while len(raw) < num_rows and _tries < 64: + _tries += 1 + nextra = min(10000, num_rows - len(raw)) + more = sampler.forward_sample(size=max(nextra, 1), show_progress=False) + more = more.reset_index(drop=True) + if len(more) == 0: + break + raw = pd.concat([raw, more], ignore_index=True) + if len(raw) > num_rows: + raw = raw.iloc[:num_rows] + +out = pd.DataFrame(index=raw.index) +rng = np.random.default_rng() + +for c in cols: + if c in inverse["categorical"]: + levels = inverse["categorical"][c] + idx = raw[c].astype(int).to_numpy() + idx = np.clip(idx, 0, max(0, len(levels) - 1)) + out[c] = [levels[i] for i in idx] + else: + edges = np.asarray(inverse["continuous"][c], dtype=float) + if edges.size < 2: + out[c] = 0.0 + else: + nbin = edges.size - 1 + res = [] + for k in raw[c].astype(int).to_numpy(): + k = int(k) + if k < 0: + k = 0 + if k >= nbin: + k = nbin - 1 + lo, hi = float(edges[k]), float(edges[k + 1]) + if hi < lo: + lo, hi = hi, lo + v = rng.uniform(lo, hi) + if c in integer_columns: + v = int(round(v)) + res.append(v) + out[c] = res + +final = pd.DataFrame(index=out.index) +for c in full_order: + if c in const_cols: + final[c] = const_cols[c] + elif c in out.columns: + final[c] = out[c] + +dtypes = bundle.get("original_dtypes") or {} +for c, dts in dtypes.items(): + if c not in final.columns: + continue + try: + if "int" in dts: + final[c] = pd.to_numeric(final[c], errors="coerce").astype("Int64") + elif "float" in dts: + final[c] = pd.to_numeric(final[c], errors="coerce") + except Exception: + pass + +if len(final) != num_rows: + final = final.iloc[:num_rows].copy() +final = final.reset_index(drop=True) +final.to_csv("/work/output-Benchmark-trainonly-v1/c2/bayesnet/bayesnet-c2-20260501_224919/bayesnet-c2-1382-20260501_224928.csv", index=False) +print(f"[BayesNet] Generated {len(final)} rows (requested {num_rows}) -> /work/output-Benchmark-trainonly-v1/c2/bayesnet/bayesnet-c2-20260501_224919/bayesnet-c2-1382-20260501_224928.csv") diff --git a/timecost/c2/bayesnet/bayesnet-c2-20260501_224919/_bayesnet_train.py b/timecost/c2/bayesnet/bayesnet-c2-20260501_224919/_bayesnet_train.py new file mode 100644 index 0000000000000000000000000000000000000000..b5233d0b40be8a68f36a1b0f24295a4fce51cf81 --- /dev/null +++ b/timecost/c2/bayesnet/bayesnet-c2-20260501_224919/_bayesnet_train.py @@ -0,0 +1,133 @@ + +import json +import pickle +import subprocess +import sys +import warnings + +import numpy as np +import pandas as pd +from pgmpy.estimators import TreeSearch +from pgmpy.models import DiscreteBayesianNetwork +warnings.filterwarnings("ignore", category=FutureWarning) + +def _ensure_cloudpickle(): + try: + import cloudpickle # noqa: F401 + except ModuleNotFoundError: + subprocess.check_call( + [sys.executable, "-m", "pip", "install", "--quiet", "cloudpickle"], + ) + +_ensure_cloudpickle() + +with open("/work/output-Benchmark-trainonly-v1/c2/bayesnet/bayesnet-c2-20260501_224919/bayesnet_coltypes.json", "r", encoding="utf-8") as _f: + colmeta = json.load(_f) +integer_columns = set(colmeta.get("integer_columns") or []) + +df = pd.read_csv("/work/output-Benchmark-trainonly-v1/c2/bayesnet/bayesnet-c2-20260501_224919/staged/public/train.csv") +df = df.dropna(axis=1, how="all") +full_column_order = list(df.columns) + +const_cols = {} +for col in list(df.columns): + if df[col].nunique(dropna=True) <= 1: + const_cols[col] = df[col].iloc[0] if len(df) > 0 else None + df = df.drop(columns=[col]) + print(f"[BayesNet] Dropped zero-variance column '{col}'") + +const_path = "/work/output-Benchmark-trainonly-v1/c2/bayesnet/bayesnet-c2-20260501_224919/bayesnet_model.pkl".replace("bayesnet_model.pkl", "const_cols.json") +with open(const_path, "w", encoding="utf-8") as _f: + json.dump({k: str(v) for k, v in const_cols.items()}, _f) + +inverse = {"categorical": {}, "continuous": {}} +enc = pd.DataFrame(index=df.index) +_n_samples = len(df) +_n_plan = sum( + 1 for e in colmeta["columns"] if str(e.get("name", "")) in df.columns +) +max_bins = 10 +max_cat_levels = 256 +if _n_plan > 35 or _n_samples > 200000: + max_bins = 5 + max_cat_levels = 64 +if _n_plan > 55: + max_bins = 4 + max_cat_levels = 32 +print( + f"[BayesNet] max_bins={max_bins}, max_cat_levels={max_cat_levels} " + f"(cols_in_df={_n_plan}, rows={_n_samples})" +) + +for entry in colmeta["columns"]: + name = entry["name"] + if name not in df.columns: + continue + kind = entry["type"] + s = df[name] + if kind == "categorical": + s2 = s.astype(str).fillna("__NA__") + counts = s2.value_counts(dropna=False) + if len(counts) > max_cat_levels: + keep = set(counts.index[: max_cat_levels - 1].tolist()) + s2 = s2.map(lambda x: x if x in keep else "__OTHER__") + uniques = sorted(s2.dropna().unique(), key=lambda x: str(x)) + mapping = {str(v): i for i, v in enumerate(uniques)} + inverse["categorical"][name] = [uniques[i] for i in range(len(uniques))] + enc[name] = s2.map(lambda x, m=mapping: m.get(str(x), 0)).astype(int) + else: + s_num = pd.to_numeric(s, errors="coerce") + nu = int(s_num.nunique(dropna=True)) + q = min(max_bins, max(2, nu)) + if nu < 2: + enc[name] = np.zeros(len(s_num), dtype=int) + lo, hi = float(s_num.min()), float(s_num.max()) + inverse["continuous"][name] = [lo, hi] + else: + try: + _, bins = pd.qcut( + s_num, q=q, retbins=True, duplicates="drop" + ) + except Exception: + med = float(s_num.median()) + s2 = s_num.fillna(med) + _, bins = pd.qcut( + s2, q=min(q, 3), retbins=True, duplicates="drop" + ) + bins = np.asarray(bins, dtype=float) + lab = pd.cut( + s_num, bins=bins, labels=False, include_lowest=True + ) + enc[name] = lab.fillna(0).astype(int) + inverse["continuous"][name] = bins.tolist() + +print(f"[BayesNet] Training on {len(enc)} rows, {len(enc.columns)} cols (encoded)") + +enc_struct = enc +if len(enc) > 25000: + enc_struct = enc.sample(n=25000, random_state=0, replace=False) + print(f"[BayesNet] TreeSearch on {len(enc_struct)} rows (subsample; full n={len(enc)})") +dag = TreeSearch(enc_struct).estimate(show_progress=False) +for col in enc.columns: + if col not in dag.nodes(): + dag.add_node(col) + print(f"[BayesNet] Added isolated node to DAG: {col}") +network = DiscreteBayesianNetwork(dag) +enc_fit = enc +if len(enc) > 120000: + enc_fit = enc.sample(n=120000, random_state=1, replace=False) + print(f"[BayesNet] fit() on {len(enc_fit)} rows (full n={len(enc)})") +network.fit(enc_fit) + +bundle = { + "network": network, + "inverse": inverse, + "column_order": list(enc.columns), + "full_column_order": full_column_order, + "integer_columns": list(integer_columns), + "original_dtypes": {c: str(df[c].dtype) for c in enc.columns}, + "const_cols": const_cols, +} +with open("/work/output-Benchmark-trainonly-v1/c2/bayesnet/bayesnet-c2-20260501_224919/bayesnet_model.pkl", "wb") as _f: + pickle.dump(bundle, _f) +print(f"[BayesNet] Model saved -> /work/output-Benchmark-trainonly-v1/c2/bayesnet/bayesnet-c2-20260501_224919/bayesnet_model.pkl") diff --git a/timecost/c2/bayesnet/bayesnet-c2-20260501_224919/bayesnet-c2-1382-20260501_224928.csv b/timecost/c2/bayesnet/bayesnet-c2-20260501_224919/bayesnet-c2-1382-20260501_224928.csv new file mode 100644 index 0000000000000000000000000000000000000000..fc5d17a270181a71ee29473a8c43adb23eedeabf --- /dev/null +++ b/timecost/c2/bayesnet/bayesnet-c2-20260501_224919/bayesnet-c2-1382-20260501_224928.csv @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:22f6707eed5cf85d2d861bbaf9ea58d07579425a0b10b3e9f2778d53283dcccc +size 41603 diff --git a/timecost/c2/bayesnet/bayesnet-c2-20260501_224919/bayesnet_coltypes.json b/timecost/c2/bayesnet/bayesnet-c2-20260501_224919/bayesnet_coltypes.json new file mode 100644 index 0000000000000000000000000000000000000000..dc49694e781f314f19b59a568715784a7cabec24 --- /dev/null +++ b/timecost/c2/bayesnet/bayesnet-c2-20260501_224919/bayesnet_coltypes.json @@ -0,0 +1,33 @@ +{ + "columns": [ + { + "name": "buying", + "type": "categorical" + }, + { + "name": "maint", + "type": "categorical" + }, + { + "name": "doors", + "type": "categorical" + }, + { + "name": "persons", + "type": "categorical" + }, + { + "name": "lug_boot", + "type": "categorical" + }, + { + "name": "safety", + "type": "categorical" + }, + { + "name": "class", + "type": "categorical" + } + ], + "integer_columns": [] +} \ No newline at end of file diff --git a/timecost/c2/bayesnet/bayesnet-c2-20260501_224919/bayesnet_model.pkl b/timecost/c2/bayesnet/bayesnet-c2-20260501_224919/bayesnet_model.pkl new file mode 100644 index 0000000000000000000000000000000000000000..a41a2cb32a11c469c794a576140511b67c8f7bdb --- /dev/null +++ b/timecost/c2/bayesnet/bayesnet-c2-20260501_224919/bayesnet_model.pkl @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:c9fc1dfaabb7725d9da65e2853e0e7d4de92da7281a7237ef5c6909e01f2a513 +size 4250 diff --git a/timecost/c2/bayesnet/bayesnet-c2-20260501_224919/const_cols.json b/timecost/c2/bayesnet/bayesnet-c2-20260501_224919/const_cols.json new file mode 100644 index 0000000000000000000000000000000000000000..9e26dfeeb6e641a33dae4961196235bdb965b21b --- /dev/null +++ b/timecost/c2/bayesnet/bayesnet-c2-20260501_224919/const_cols.json @@ -0,0 +1 @@ +{} \ No newline at end of file diff --git a/timecost/c2/bayesnet/bayesnet-c2-20260501_224919/gen_20260501_224928.log b/timecost/c2/bayesnet/bayesnet-c2-20260501_224919/gen_20260501_224928.log new file mode 100644 index 0000000000000000000000000000000000000000..f92a14d19dd6fae54551330bb6b0a1fcaf1afe45 --- /dev/null +++ b/timecost/c2/bayesnet/bayesnet-c2-20260501_224919/gen_20260501_224928.log @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:f1872b2d76a6b2ac6e20c0bf32ee325a73b9e50f5923ed58c381823ff249455f +size 3661 diff --git a/timecost/c2/bayesnet/bayesnet-c2-20260501_224919/input_snapshot.json b/timecost/c2/bayesnet/bayesnet-c2-20260501_224919/input_snapshot.json new file mode 100644 index 0000000000000000000000000000000000000000..85fdc398e0d261ad97c34409134cc4aebb1bb672 --- /dev/null +++ b/timecost/c2/bayesnet/bayesnet-c2-20260501_224919/input_snapshot.json @@ -0,0 +1,36 @@ +{ + "dataset_id": "c2", + "model": "bayesnet", + "inputs": { + "train_csv": { + "path": "/data/jialinzhang/SynthesizePipeline-server/DatasetNew/c2/c2-train.csv", + "exists": true, + "size": 42948, + "sha256": "17bc560fa96bd00fb3b526e1e65bc91210b701d0d0a4e8bb9b4c5196cab56def" + }, + "val_csv": { + "path": "/data/jialinzhang/SynthesizePipeline-server/DatasetNew/c2/c2-val.csv", + "exists": true, + "size": 5349, + "sha256": "61e565eca62e65a7dccd9d51039a3170413379e10fc494e25870e7c4294863c9" + }, + "test_csv": { + "path": "/data/jialinzhang/SynthesizePipeline-server/DatasetNew/c2/c2-test.csv", + "exists": true, + "size": 5448, + "sha256": "cbcbb062a1faf5fa44b66c80532baa229e05b94fc42137269761e6c6d84af20a" + }, + "profile_json": { + "path": "/data/jialinzhang/SynthesizePipeline-server/DatasetNew/artifacts/data_core/tabular/c2/c2-dataset_profile.json", + "exists": true, + "size": 3240, + "sha256": "526b7163b2076c93c0bf4638438081ee8a6907065d5b608faa40d1a3dbc2a27b" + }, + "contract_json": { + "path": "/data/jialinzhang/SynthesizePipeline-server/DatasetNew/artifacts/data_core/tabular/c2/c2-dataset_contract_v1.json", + "exists": true, + "size": 3731, + "sha256": "fb595a876054c2ee9b4e10cfe83a5691588de1d25466cbb9d473c18ad3604009" + } + } +} \ No newline at end of file diff --git a/timecost/c2/bayesnet/bayesnet-c2-20260501_224919/public_gate/normalized_schema_snapshot.json b/timecost/c2/bayesnet/bayesnet-c2-20260501_224919/public_gate/normalized_schema_snapshot.json new file mode 100644 index 0000000000000000000000000000000000000000..689b1d00d96508e44ba40e58dc4560e19afc2b3b --- /dev/null +++ b/timecost/c2/bayesnet/bayesnet-c2-20260501_224919/public_gate/normalized_schema_snapshot.json @@ -0,0 +1,144 @@ +{ + "dataset_id": "c2", + "target_column": "class", + "task_type": "classification", + "columns": [ + { + "name": "buying", + "role": "feature", + "semantic_type": "categorical", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 4, + "unique_ratio": 0.002894, + "example_values": [ + "vhigh", + "med", + "high", + "low" + ] + } + }, + { + "name": "maint", + "role": "feature", + "semantic_type": "categorical", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 4, + "unique_ratio": 0.002894, + "example_values": [ + "vhigh", + "low", + "med", + "high" + ] + } + }, + { + "name": "doors", + "role": "feature", + "semantic_type": "categorical", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 4, + "unique_ratio": 0.002894, + "example_values": [ + "2", + "5more", + "3", + "4" + ] + } + }, + { + "name": "persons", + "role": "feature", + "semantic_type": "categorical", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 3, + "unique_ratio": 0.002171, + "example_values": [ + "2", + "4", + "more" + ] + } + }, + { + "name": "lug_boot", + "role": "feature", + "semantic_type": "categorical", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 3, + "unique_ratio": 0.002171, + "example_values": [ + "small", + "big", + "med" + ] + } + }, + { + "name": "safety", + "role": "feature", + "semantic_type": "categorical", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 3, + "unique_ratio": 0.002171, + "example_values": [ + "low", + "high", + "med" + ] + } + }, + { + "name": "class", + "role": "target", + "semantic_type": "categorical", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 4, + "unique_ratio": 0.002894, + "example_values": [ + "unacc", + "good", + "acc", + "vgood" + ] + } + } + ] +} \ No newline at end of file diff --git a/timecost/c2/bayesnet/bayesnet-c2-20260501_224919/public_gate/public_gate_report.json b/timecost/c2/bayesnet/bayesnet-c2-20260501_224919/public_gate/public_gate_report.json new file mode 100644 index 0000000000000000000000000000000000000000..2e4cdcb2a4e28e40d59b17a83e773f622b7636a5 --- /dev/null +++ b/timecost/c2/bayesnet/bayesnet-c2-20260501_224919/public_gate/public_gate_report.json @@ -0,0 +1,37 @@ +{ + "dataset_id": "c2", + "status": "pass", + "checks": [ + { + "check_id": "PG001_csv_parse_ok", + "status": "pass" + }, + { + "check_id": "PG002_split_header_consistent", + "status": "pass" + }, + { + "check_id": "PG003_profile_header_match", + "status": "pass" + }, + { + "check_id": "PG004_missing_token_normalized", + "status": "pass" + }, + { + "check_id": "PG005_semantic_type_validated", + "status": "pass" + }, + { + "check_id": "PG006_target_defined_and_valid", + "status": "pass" + } + ], + "target_column": "class", + "task_type": "classification", + "input_splits": { + "train": "/data/jialinzhang/SynthesizePipeline-server/DatasetNew/c2/c2-train.csv", + "val": "/data/jialinzhang/SynthesizePipeline-server/DatasetNew/c2/c2-val.csv", + "test": "/data/jialinzhang/SynthesizePipeline-server/DatasetNew/c2/c2-test.csv" + } +} \ No newline at end of file diff --git a/timecost/c2/bayesnet/bayesnet-c2-20260501_224919/public_gate/staged_input_manifest.json b/timecost/c2/bayesnet/bayesnet-c2-20260501_224919/public_gate/staged_input_manifest.json new file mode 100644 index 0000000000000000000000000000000000000000..63d2cc85814ec597e6a6b06ac6261c3e62cbfe0e --- /dev/null +++ b/timecost/c2/bayesnet/bayesnet-c2-20260501_224919/public_gate/staged_input_manifest.json @@ -0,0 +1,149 @@ +{ + "dataset_id": "c2", + "target_column": "class", + "task_type": "classification", + "train_csv": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/c2/bayesnet/bayesnet-c2-20260501_224919/staged/public/train.csv", + "val_csv": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/c2/bayesnet/bayesnet-c2-20260501_224919/staged/public/val.csv", + "test_csv": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/c2/bayesnet/bayesnet-c2-20260501_224919/staged/public/test.csv", + "features_json": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/c2/bayesnet/bayesnet-c2-20260501_224919/staged/public/staged_features.json", + "public_gate_report": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/c2/bayesnet/bayesnet-c2-20260501_224919/public_gate/public_gate_report.json", + "column_schema": [ + { + "name": "buying", + "role": "feature", + "semantic_type": "categorical", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 4, + "unique_ratio": 0.002894, + "example_values": [ + "vhigh", + "med", + "high", + "low" + ] + } + }, + { + "name": "maint", + "role": "feature", + "semantic_type": "categorical", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 4, + "unique_ratio": 0.002894, + "example_values": [ + "vhigh", + "low", + "med", + "high" + ] + } + }, + { + "name": "doors", + "role": "feature", + "semantic_type": "categorical", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 4, + "unique_ratio": 0.002894, + "example_values": [ + "2", + "5more", + "3", + "4" + ] + } + }, + { + "name": "persons", + "role": "feature", + "semantic_type": "categorical", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 3, + "unique_ratio": 0.002171, + "example_values": [ + "2", + "4", + "more" + ] + } + }, + { + "name": "lug_boot", + "role": "feature", + "semantic_type": "categorical", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 3, + "unique_ratio": 0.002171, + "example_values": [ + "small", + "big", + "med" + ] + } + }, + { + "name": "safety", + "role": "feature", + "semantic_type": "categorical", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 3, + "unique_ratio": 0.002171, + "example_values": [ + "low", + "high", + "med" + ] + } + }, + { + "name": "class", + "role": "target", + "semantic_type": "categorical", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 4, + "unique_ratio": 0.002894, + "example_values": [ + "unacc", + "good", + "acc", + "vgood" + ] + } + } + ] +} \ No newline at end of file diff --git a/timecost/c2/bayesnet/bayesnet-c2-20260501_224919/runtime_result.json b/timecost/c2/bayesnet/bayesnet-c2-20260501_224919/runtime_result.json new file mode 100644 index 0000000000000000000000000000000000000000..990015d46cae096e5fc35551c6432a87818cc743 --- /dev/null +++ b/timecost/c2/bayesnet/bayesnet-c2-20260501_224919/runtime_result.json @@ -0,0 +1,27 @@ +{ + "dataset_id": "c2", + "model": "bayesnet", + "run_id": "bayesnet-c2-20260501_224919", + "public_gate_status": "pass", + "adapter_ready_status": "pass", + "train_status": "success", + "generate_status": "success", + "reason_code": null, + "reason_detail": null, + "artifacts": { + "synthetic_csv": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/c2/bayesnet/bayesnet-c2-20260501_224919/bayesnet-c2-1382-20260501_224928.csv", + "model_path": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/c2/bayesnet/bayesnet-c2-20260501_224919/bayesnet_model.pkl" + }, + "timings": { + "train": { + "started_at": "2026-05-01T22:49:19", + "ended_at": "2026-05-01T22:49:28", + "duration_sec": 8.787 + }, + "generate": { + "started_at": "2026-05-01T22:49:28", + "ended_at": "2026-05-01T22:49:33", + "duration_sec": 5.228 + } + } +} \ No newline at end of file diff --git a/timecost/c2/bayesnet/bayesnet-c2-20260501_224919/staged/bayesnet/adapter_report.json b/timecost/c2/bayesnet/bayesnet-c2-20260501_224919/staged/bayesnet/adapter_report.json new file mode 100644 index 0000000000000000000000000000000000000000..1e9141f4f5c8019f8a0e47d8b276ffd2a50f6394 --- /dev/null +++ b/timecost/c2/bayesnet/bayesnet-c2-20260501_224919/staged/bayesnet/adapter_report.json @@ -0,0 +1,7 @@ +{ + "adapter_ready_status": "pass", + "adapter_fail_reason_code": null, + "adapter_fail_detail": null, + "adapter_transforms_applied": [], + "model_input_manifest": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/c2/bayesnet/bayesnet-c2-20260501_224919/staged/bayesnet/model_input_manifest.json" +} \ No newline at end of file diff --git a/timecost/c2/bayesnet/bayesnet-c2-20260501_224919/staged/bayesnet/adapter_transforms_applied.json b/timecost/c2/bayesnet/bayesnet-c2-20260501_224919/staged/bayesnet/adapter_transforms_applied.json new file mode 100644 index 0000000000000000000000000000000000000000..0637a088a01e8ddab3bf3fa98dbe804cbde1a0dc --- /dev/null +++ b/timecost/c2/bayesnet/bayesnet-c2-20260501_224919/staged/bayesnet/adapter_transforms_applied.json @@ -0,0 +1 @@ +[] \ No newline at end of file diff --git a/timecost/c2/bayesnet/bayesnet-c2-20260501_224919/staged/bayesnet/model_input_manifest.json b/timecost/c2/bayesnet/bayesnet-c2-20260501_224919/staged/bayesnet/model_input_manifest.json new file mode 100644 index 0000000000000000000000000000000000000000..bbfdf8e3236c56654a93118dd449a30ce5899ffa --- /dev/null +++ b/timecost/c2/bayesnet/bayesnet-c2-20260501_224919/staged/bayesnet/model_input_manifest.json @@ -0,0 +1,151 @@ +{ + "dataset_id": "c2", + "model": "bayesnet", + "target_column": "class", + "task_type": "classification", + "column_schema": [ + { + "name": "buying", + "role": "feature", + "semantic_type": "categorical", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 4, + "unique_ratio": 0.002894, + "example_values": [ + "vhigh", + "med", + "high", + "low" + ] + } + }, + { + "name": "maint", + "role": "feature", + "semantic_type": "categorical", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 4, + "unique_ratio": 0.002894, + "example_values": [ + "vhigh", + "low", + "med", + "high" + ] + } + }, + { + "name": "doors", + "role": "feature", + "semantic_type": "categorical", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 4, + "unique_ratio": 0.002894, + "example_values": [ + "2", + "5more", + "3", + "4" + ] + } + }, + { + "name": "persons", + "role": "feature", + "semantic_type": "categorical", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 3, + "unique_ratio": 0.002171, + "example_values": [ + "2", + "4", + "more" + ] + } + }, + { + "name": "lug_boot", + "role": "feature", + "semantic_type": "categorical", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 3, + "unique_ratio": 0.002171, + "example_values": [ + "small", + "big", + "med" + ] + } + }, + { + "name": "safety", + "role": "feature", + "semantic_type": "categorical", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 3, + "unique_ratio": 0.002171, + "example_values": [ + "low", + "high", + "med" + ] + } + }, + { + "name": "class", + "role": "target", + "semantic_type": "categorical", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 4, + "unique_ratio": 0.002894, + "example_values": [ + "unacc", + "good", + "acc", + "vgood" + ] + } + } + ], + "public_manifest": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/c2/bayesnet/bayesnet-c2-20260501_224919/public_gate/staged_input_manifest.json", + "train_csv": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/c2/bayesnet/bayesnet-c2-20260501_224919/staged/public/train.csv", + "val_csv": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/c2/bayesnet/bayesnet-c2-20260501_224919/staged/public/val.csv", + "test_csv": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/c2/bayesnet/bayesnet-c2-20260501_224919/staged/public/test.csv", + "features_json": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/c2/bayesnet/bayesnet-c2-20260501_224919/staged/public/staged_features.json", + "public_gate_report": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/c2/bayesnet/bayesnet-c2-20260501_224919/public_gate/public_gate_report.json" +} \ No newline at end of file diff --git a/timecost/c2/bayesnet/bayesnet-c2-20260501_224919/staged/public/staged_features.json b/timecost/c2/bayesnet/bayesnet-c2-20260501_224919/staged/public/staged_features.json new file mode 100644 index 0000000000000000000000000000000000000000..61783861dd5de501592f76acb0469cf3f3b2622a --- /dev/null +++ b/timecost/c2/bayesnet/bayesnet-c2-20260501_224919/staged/public/staged_features.json @@ -0,0 +1,37 @@ +[ + { + "feature_name": "buying", + "data_type": "categorical", + "is_target": false + }, + { + "feature_name": "maint", + "data_type": "categorical", + "is_target": false + }, + { + "feature_name": "doors", + "data_type": "categorical", + "is_target": false + }, + { + "feature_name": "persons", + "data_type": "categorical", + "is_target": false + }, + { + "feature_name": "lug_boot", + "data_type": "categorical", + "is_target": false + }, + { + "feature_name": "safety", + "data_type": "categorical", + "is_target": false + }, + { + "feature_name": "class", + "data_type": "categorical", + "is_target": true + } +] \ No newline at end of file diff --git a/timecost/c2/bayesnet/bayesnet-c2-20260501_224919/staged/public/test.csv b/timecost/c2/bayesnet/bayesnet-c2-20260501_224919/staged/public/test.csv new file mode 100644 index 0000000000000000000000000000000000000000..392a0d7189a34d8f13ecf20a99d64b03230d517c --- /dev/null +++ b/timecost/c2/bayesnet/bayesnet-c2-20260501_224919/staged/public/test.csv @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:b48114a7d0bc5bd9a07920f903c8d4aba8bf98bf2a66a050da03588b0245ca73 +size 5273 diff --git a/timecost/c2/bayesnet/bayesnet-c2-20260501_224919/staged/public/train.csv b/timecost/c2/bayesnet/bayesnet-c2-20260501_224919/staged/public/train.csv new file mode 100644 index 0000000000000000000000000000000000000000..da4f4d55134eebc0e51157d0d467536371db1484 --- /dev/null +++ b/timecost/c2/bayesnet/bayesnet-c2-20260501_224919/staged/public/train.csv @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:4aed00c2c2b3f88a55a7ebff31b2e1b5e0e32fb0a7267e0b9d2779cd23e434dd +size 41565 diff --git a/timecost/c2/bayesnet/bayesnet-c2-20260501_224919/staged/public/val.csv b/timecost/c2/bayesnet/bayesnet-c2-20260501_224919/staged/public/val.csv new file mode 100644 index 0000000000000000000000000000000000000000..af8caf7ee42524188534a3daf32996dc491952d9 --- /dev/null +++ b/timecost/c2/bayesnet/bayesnet-c2-20260501_224919/staged/public/val.csv @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:26e90c1170a57a14c05832ac88027722b1f3848f9662c7c09ef7c93dcba4cc01 +size 5176 diff --git a/timecost/c2/bayesnet/bayesnet-c2-20260501_224919/train_20260501_224919.log b/timecost/c2/bayesnet/bayesnet-c2-20260501_224919/train_20260501_224919.log new file mode 100644 index 0000000000000000000000000000000000000000..3659189dfd45052e2f0a1678a14fafb89d1f0408 --- /dev/null +++ b/timecost/c2/bayesnet/bayesnet-c2-20260501_224919/train_20260501_224919.log @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:a2419ea58dce6b8666957845438ee953b6addfa166281431702145cc7aa608af +size 3738 diff --git a/timecost/c2/ctgan/ctgan-c2-20260501_070350/_ctgan_generate.py b/timecost/c2/ctgan/ctgan-c2-20260501_070350/_ctgan_generate.py new file mode 100644 index 0000000000000000000000000000000000000000..7e652dd6812624ed68ce201d93a0c49dc9c354fb --- /dev/null +++ b/timecost/c2/ctgan/ctgan-c2-20260501_070350/_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-Benchmark-trainonly-v1/c2/ctgan/ctgan-c2-20260501_070350/models_300epochs/ctgan_300epochs.pt") +total = 1382 +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-Benchmark-trainonly-v1/c2/ctgan/ctgan-c2-20260501_070350/ctgan-c2-1382-20260501_070414.csv", index=False) +print("[CTGAN] Generated", total, "rows in", len(parts), "chunks ->", "/work/output-Benchmark-trainonly-v1/c2/ctgan/ctgan-c2-20260501_070350/ctgan-c2-1382-20260501_070414.csv") \ No newline at end of file diff --git a/timecost/c2/ctgan/ctgan-c2-20260501_070350/ctgan-c2-1382-20260501_070414.csv b/timecost/c2/ctgan/ctgan-c2-20260501_070350/ctgan-c2-1382-20260501_070414.csv new file mode 100644 index 0000000000000000000000000000000000000000..ee364b5f4a4a09aef6c8117f2d81621bff3e04fc --- /dev/null +++ b/timecost/c2/ctgan/ctgan-c2-20260501_070350/ctgan-c2-1382-20260501_070414.csv @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:e1f7b02a4ec291764c1cbd976b049a30764002ba3171dd16092ef3fcb5ef7656 +size 42112 diff --git a/timecost/c2/ctgan/ctgan-c2-20260501_070350/ctgan_metadata.json b/timecost/c2/ctgan/ctgan-c2-20260501_070350/ctgan_metadata.json new file mode 100644 index 0000000000000000000000000000000000000000..183d627ebc98e89233655ec98c9dcbc528c4c328 --- /dev/null +++ b/timecost/c2/ctgan/ctgan-c2-20260501_070350/ctgan_metadata.json @@ -0,0 +1,32 @@ +{ + "columns": [ + { + "name": "buying", + "type": "categorical" + }, + { + "name": "maint", + "type": "categorical" + }, + { + "name": "doors", + "type": "categorical" + }, + { + "name": "persons", + "type": "categorical" + }, + { + "name": "lug_boot", + "type": "categorical" + }, + { + "name": "safety", + "type": "categorical" + }, + { + "name": "class", + "type": "categorical" + } + ] +} \ No newline at end of file diff --git a/timecost/c2/ctgan/ctgan-c2-20260501_070350/gen_20260501_070414.log b/timecost/c2/ctgan/ctgan-c2-20260501_070350/gen_20260501_070414.log new file mode 100644 index 0000000000000000000000000000000000000000..0305c04a8b0409d2f2ea8984a24ba0f2bbf7bbc6 --- /dev/null +++ b/timecost/c2/ctgan/ctgan-c2-20260501_070350/gen_20260501_070414.log @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:26522d005d72be4f52afcf1da0ff670e0f431e6674695829c3ba52a8a20a9ed8 +size 560 diff --git a/timecost/c2/ctgan/ctgan-c2-20260501_070350/input_snapshot.json b/timecost/c2/ctgan/ctgan-c2-20260501_070350/input_snapshot.json new file mode 100644 index 0000000000000000000000000000000000000000..e70c6b5c1d7c7363c5970bab5156163411d211e7 --- /dev/null +++ b/timecost/c2/ctgan/ctgan-c2-20260501_070350/input_snapshot.json @@ -0,0 +1,36 @@ +{ + "dataset_id": "c2", + "model": "ctgan", + "inputs": { + "train_csv": { + "path": "/data/jialinzhang/SynthesizePipeline-server/DatasetNew/c2/c2-train.csv", + "exists": true, + "size": 42948, + "sha256": "17bc560fa96bd00fb3b526e1e65bc91210b701d0d0a4e8bb9b4c5196cab56def" + }, + "val_csv": { + "path": "/data/jialinzhang/SynthesizePipeline-server/DatasetNew/c2/c2-val.csv", + "exists": true, + "size": 5349, + "sha256": "61e565eca62e65a7dccd9d51039a3170413379e10fc494e25870e7c4294863c9" + }, + "test_csv": { + "path": "/data/jialinzhang/SynthesizePipeline-server/DatasetNew/c2/c2-test.csv", + "exists": true, + "size": 5448, + "sha256": "cbcbb062a1faf5fa44b66c80532baa229e05b94fc42137269761e6c6d84af20a" + }, + "profile_json": { + "path": "/data/jialinzhang/SynthesizePipeline-server/DatasetNew/artifacts/data_core/tabular/c2/c2-dataset_profile.json", + "exists": true, + "size": 3240, + "sha256": "526b7163b2076c93c0bf4638438081ee8a6907065d5b608faa40d1a3dbc2a27b" + }, + "contract_json": { + "path": "/data/jialinzhang/SynthesizePipeline-server/DatasetNew/artifacts/data_core/tabular/c2/c2-dataset_contract_v1.json", + "exists": true, + "size": 3731, + "sha256": "fb595a876054c2ee9b4e10cfe83a5691588de1d25466cbb9d473c18ad3604009" + } + } +} \ No newline at end of file diff --git a/timecost/c2/ctgan/ctgan-c2-20260501_070350/models_300epochs/ctgan_300epochs.pt b/timecost/c2/ctgan/ctgan-c2-20260501_070350/models_300epochs/ctgan_300epochs.pt new file mode 100644 index 0000000000000000000000000000000000000000..53e0cc9707263935558a00fe579c26deac4ad2ff --- /dev/null +++ b/timecost/c2/ctgan/ctgan-c2-20260501_070350/models_300epochs/ctgan_300epochs.pt @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:f8a8cc35257101b33a517a602d7302dcb9095c4b077d2789f5fbd974f941b691 +size 926947 diff --git a/timecost/c2/ctgan/ctgan-c2-20260501_070350/models_300epochs/train_20260501_070350.log b/timecost/c2/ctgan/ctgan-c2-20260501_070350/models_300epochs/train_20260501_070350.log new file mode 100644 index 0000000000000000000000000000000000000000..82ce7f3bab48b21bcdb5ae591ed0aa68523d8fb2 --- /dev/null +++ b/timecost/c2/ctgan/ctgan-c2-20260501_070350/models_300epochs/train_20260501_070350.log @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:6f18d98ddfdd822b77a9c59e4da0d85f0850b223686d472cbf58fbc88007cc64 +size 1836 diff --git a/timecost/c2/ctgan/ctgan-c2-20260501_070350/public_gate/normalized_schema_snapshot.json b/timecost/c2/ctgan/ctgan-c2-20260501_070350/public_gate/normalized_schema_snapshot.json new file mode 100644 index 0000000000000000000000000000000000000000..689b1d00d96508e44ba40e58dc4560e19afc2b3b --- /dev/null +++ b/timecost/c2/ctgan/ctgan-c2-20260501_070350/public_gate/normalized_schema_snapshot.json @@ -0,0 +1,144 @@ +{ + "dataset_id": "c2", + "target_column": "class", + "task_type": "classification", + "columns": [ + { + "name": "buying", + "role": "feature", + "semantic_type": "categorical", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 4, + "unique_ratio": 0.002894, + "example_values": [ + "vhigh", + "med", + "high", + "low" + ] + } + }, + { + "name": "maint", + "role": "feature", + "semantic_type": "categorical", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 4, + "unique_ratio": 0.002894, + "example_values": [ + "vhigh", + "low", + "med", + "high" + ] + } + }, + { + "name": "doors", + "role": "feature", + "semantic_type": "categorical", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 4, + "unique_ratio": 0.002894, + "example_values": [ + "2", + "5more", + "3", + "4" + ] + } + }, + { + "name": "persons", + "role": "feature", + "semantic_type": "categorical", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 3, + "unique_ratio": 0.002171, + "example_values": [ + "2", + "4", + "more" + ] + } + }, + { + "name": "lug_boot", + "role": "feature", + "semantic_type": "categorical", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 3, + "unique_ratio": 0.002171, + "example_values": [ + "small", + "big", + "med" + ] + } + }, + { + "name": "safety", + "role": "feature", + "semantic_type": "categorical", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 3, + "unique_ratio": 0.002171, + "example_values": [ + "low", + "high", + "med" + ] + } + }, + { + "name": "class", + "role": "target", + "semantic_type": "categorical", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 4, + "unique_ratio": 0.002894, + "example_values": [ + "unacc", + "good", + "acc", + "vgood" + ] + } + } + ] +} \ No newline at end of file diff --git a/timecost/c2/ctgan/ctgan-c2-20260501_070350/public_gate/public_gate_report.json b/timecost/c2/ctgan/ctgan-c2-20260501_070350/public_gate/public_gate_report.json new file mode 100644 index 0000000000000000000000000000000000000000..2e4cdcb2a4e28e40d59b17a83e773f622b7636a5 --- /dev/null +++ b/timecost/c2/ctgan/ctgan-c2-20260501_070350/public_gate/public_gate_report.json @@ -0,0 +1,37 @@ +{ + "dataset_id": "c2", + "status": "pass", + "checks": [ + { + "check_id": "PG001_csv_parse_ok", + "status": "pass" + }, + { + "check_id": "PG002_split_header_consistent", + "status": "pass" + }, + { + "check_id": "PG003_profile_header_match", + "status": "pass" + }, + { + "check_id": "PG004_missing_token_normalized", + "status": "pass" + }, + { + "check_id": "PG005_semantic_type_validated", + "status": "pass" + }, + { + "check_id": "PG006_target_defined_and_valid", + "status": "pass" + } + ], + "target_column": "class", + "task_type": "classification", + "input_splits": { + "train": "/data/jialinzhang/SynthesizePipeline-server/DatasetNew/c2/c2-train.csv", + "val": "/data/jialinzhang/SynthesizePipeline-server/DatasetNew/c2/c2-val.csv", + "test": "/data/jialinzhang/SynthesizePipeline-server/DatasetNew/c2/c2-test.csv" + } +} \ No newline at end of file diff --git a/timecost/c2/ctgan/ctgan-c2-20260501_070350/public_gate/staged_input_manifest.json b/timecost/c2/ctgan/ctgan-c2-20260501_070350/public_gate/staged_input_manifest.json new file mode 100644 index 0000000000000000000000000000000000000000..eda8b2df3e869b39a309a1be556c07d14a428799 --- /dev/null +++ b/timecost/c2/ctgan/ctgan-c2-20260501_070350/public_gate/staged_input_manifest.json @@ -0,0 +1,149 @@ +{ + "dataset_id": "c2", + "target_column": "class", + "task_type": "classification", + "train_csv": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/c2/ctgan/ctgan-c2-20260501_070350/staged/public/train.csv", + "val_csv": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/c2/ctgan/ctgan-c2-20260501_070350/staged/public/val.csv", + "test_csv": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/c2/ctgan/ctgan-c2-20260501_070350/staged/public/test.csv", + "features_json": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/c2/ctgan/ctgan-c2-20260501_070350/staged/public/staged_features.json", + "public_gate_report": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/c2/ctgan/ctgan-c2-20260501_070350/public_gate/public_gate_report.json", + "column_schema": [ + { + "name": "buying", + "role": "feature", + "semantic_type": "categorical", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 4, + "unique_ratio": 0.002894, + "example_values": [ + "vhigh", + "med", + "high", + "low" + ] + } + }, + { + "name": "maint", + "role": "feature", + "semantic_type": "categorical", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 4, + "unique_ratio": 0.002894, + "example_values": [ + "vhigh", + "low", + "med", + "high" + ] + } + }, + { + "name": "doors", + "role": "feature", + "semantic_type": "categorical", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 4, + "unique_ratio": 0.002894, + "example_values": [ + "2", + "5more", + "3", + "4" + ] + } + }, + { + "name": "persons", + "role": "feature", + "semantic_type": "categorical", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 3, + "unique_ratio": 0.002171, + "example_values": [ + "2", + "4", + "more" + ] + } + }, + { + "name": "lug_boot", + "role": "feature", + "semantic_type": "categorical", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 3, + "unique_ratio": 0.002171, + "example_values": [ + "small", + "big", + "med" + ] + } + }, + { + "name": "safety", + "role": "feature", + "semantic_type": "categorical", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 3, + "unique_ratio": 0.002171, + "example_values": [ + "low", + "high", + "med" + ] + } + }, + { + "name": "class", + "role": "target", + "semantic_type": "categorical", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 4, + "unique_ratio": 0.002894, + "example_values": [ + "unacc", + "good", + "acc", + "vgood" + ] + } + } + ] +} \ No newline at end of file diff --git a/timecost/c2/ctgan/ctgan-c2-20260501_070350/runtime_result.json b/timecost/c2/ctgan/ctgan-c2-20260501_070350/runtime_result.json new file mode 100644 index 0000000000000000000000000000000000000000..0e75cf27dd873f787a59f69d3e94ac7fdacf9ef2 --- /dev/null +++ b/timecost/c2/ctgan/ctgan-c2-20260501_070350/runtime_result.json @@ -0,0 +1,27 @@ +{ + "dataset_id": "c2", + "model": "ctgan", + "run_id": "ctgan-c2-20260501_070350", + "public_gate_status": "pass", + "adapter_ready_status": "pass", + "train_status": "success", + "generate_status": "success", + "reason_code": null, + "reason_detail": null, + "artifacts": { + "synthetic_csv": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/c2/ctgan/ctgan-c2-20260501_070350/ctgan-c2-1382-20260501_070414.csv", + "model_path": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/c2/ctgan/ctgan-c2-20260501_070350/models_300epochs/ctgan_300epochs.pt" + }, + "timings": { + "train": { + "started_at": "2026-05-01T07:03:50", + "ended_at": "2026-05-01T07:04:14", + "duration_sec": 24.053 + }, + "generate": { + "started_at": "2026-05-01T07:04:14", + "ended_at": "2026-05-01T07:04:19", + "duration_sec": 4.917 + } + } +} \ No newline at end of file diff --git a/timecost/c2/ctgan/ctgan-c2-20260501_070350/staged/ctgan/adapter_report.json b/timecost/c2/ctgan/ctgan-c2-20260501_070350/staged/ctgan/adapter_report.json new file mode 100644 index 0000000000000000000000000000000000000000..a1c5f6927bc1f287f54d3e38c405af6cc08f703a --- /dev/null +++ b/timecost/c2/ctgan/ctgan-c2-20260501_070350/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-Benchmark-trainonly-v1/c2/ctgan/ctgan-c2-20260501_070350/staged/ctgan/model_input_manifest.json" +} \ No newline at end of file diff --git a/timecost/c2/ctgan/ctgan-c2-20260501_070350/staged/ctgan/adapter_transforms_applied.json b/timecost/c2/ctgan/ctgan-c2-20260501_070350/staged/ctgan/adapter_transforms_applied.json new file mode 100644 index 0000000000000000000000000000000000000000..0637a088a01e8ddab3bf3fa98dbe804cbde1a0dc --- /dev/null +++ b/timecost/c2/ctgan/ctgan-c2-20260501_070350/staged/ctgan/adapter_transforms_applied.json @@ -0,0 +1 @@ +[] \ No newline at end of file diff --git a/timecost/c2/ctgan/ctgan-c2-20260501_070350/staged/ctgan/model_input_manifest.json b/timecost/c2/ctgan/ctgan-c2-20260501_070350/staged/ctgan/model_input_manifest.json new file mode 100644 index 0000000000000000000000000000000000000000..f1358d263878d1c9bdf05961e45bc8c32fe0a057 --- /dev/null +++ b/timecost/c2/ctgan/ctgan-c2-20260501_070350/staged/ctgan/model_input_manifest.json @@ -0,0 +1,151 @@ +{ + "dataset_id": "c2", + "model": "ctgan", + "target_column": "class", + "task_type": "classification", + "column_schema": [ + { + "name": "buying", + "role": "feature", + "semantic_type": "categorical", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 4, + "unique_ratio": 0.002894, + "example_values": [ + "vhigh", + "med", + "high", + "low" + ] + } + }, + { + "name": "maint", + "role": "feature", + "semantic_type": "categorical", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 4, + "unique_ratio": 0.002894, + "example_values": [ + "vhigh", + "low", + "med", + "high" + ] + } + }, + { + "name": "doors", + "role": "feature", + "semantic_type": "categorical", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 4, + "unique_ratio": 0.002894, + "example_values": [ + "2", + "5more", + "3", + "4" + ] + } + }, + { + "name": "persons", + "role": "feature", + "semantic_type": "categorical", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 3, + "unique_ratio": 0.002171, + "example_values": [ + "2", + "4", + "more" + ] + } + }, + { + "name": "lug_boot", + "role": "feature", + "semantic_type": "categorical", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 3, + "unique_ratio": 0.002171, + "example_values": [ + "small", + "big", + "med" + ] + } + }, + { + "name": "safety", + "role": "feature", + "semantic_type": "categorical", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 3, + "unique_ratio": 0.002171, + "example_values": [ + "low", + "high", + "med" + ] + } + }, + { + "name": "class", + "role": "target", + "semantic_type": "categorical", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 4, + "unique_ratio": 0.002894, + "example_values": [ + "unacc", + "good", + "acc", + "vgood" + ] + } + } + ], + "public_manifest": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/c2/ctgan/ctgan-c2-20260501_070350/public_gate/staged_input_manifest.json", + "train_csv": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/c2/ctgan/ctgan-c2-20260501_070350/staged/public/train.csv", + "val_csv": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/c2/ctgan/ctgan-c2-20260501_070350/staged/public/val.csv", + "test_csv": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/c2/ctgan/ctgan-c2-20260501_070350/staged/public/test.csv", + "features_json": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/c2/ctgan/ctgan-c2-20260501_070350/staged/public/staged_features.json", + "public_gate_report": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/c2/ctgan/ctgan-c2-20260501_070350/public_gate/public_gate_report.json" +} \ No newline at end of file diff --git a/timecost/c2/ctgan/ctgan-c2-20260501_070350/staged/public/staged_features.json b/timecost/c2/ctgan/ctgan-c2-20260501_070350/staged/public/staged_features.json new file mode 100644 index 0000000000000000000000000000000000000000..61783861dd5de501592f76acb0469cf3f3b2622a --- /dev/null +++ b/timecost/c2/ctgan/ctgan-c2-20260501_070350/staged/public/staged_features.json @@ -0,0 +1,37 @@ +[ + { + "feature_name": "buying", + "data_type": "categorical", + "is_target": false + }, + { + "feature_name": "maint", + "data_type": "categorical", + "is_target": false + }, + { + "feature_name": "doors", + "data_type": "categorical", + "is_target": false + }, + { + "feature_name": "persons", + "data_type": "categorical", + "is_target": false + }, + { + "feature_name": "lug_boot", + "data_type": "categorical", + "is_target": false + }, + { + "feature_name": "safety", + "data_type": "categorical", + "is_target": false + }, + { + "feature_name": "class", + "data_type": "categorical", + "is_target": true + } +] \ No newline at end of file diff --git a/timecost/c2/ctgan/ctgan-c2-20260501_070350/staged/public/test.csv b/timecost/c2/ctgan/ctgan-c2-20260501_070350/staged/public/test.csv new file mode 100644 index 0000000000000000000000000000000000000000..392a0d7189a34d8f13ecf20a99d64b03230d517c --- /dev/null +++ b/timecost/c2/ctgan/ctgan-c2-20260501_070350/staged/public/test.csv @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:b48114a7d0bc5bd9a07920f903c8d4aba8bf98bf2a66a050da03588b0245ca73 +size 5273 diff --git a/timecost/c2/ctgan/ctgan-c2-20260501_070350/staged/public/train.csv b/timecost/c2/ctgan/ctgan-c2-20260501_070350/staged/public/train.csv new file mode 100644 index 0000000000000000000000000000000000000000..da4f4d55134eebc0e51157d0d467536371db1484 --- /dev/null +++ b/timecost/c2/ctgan/ctgan-c2-20260501_070350/staged/public/train.csv @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:4aed00c2c2b3f88a55a7ebff31b2e1b5e0e32fb0a7267e0b9d2779cd23e434dd +size 41565 diff --git a/timecost/c2/ctgan/ctgan-c2-20260501_070350/staged/public/val.csv b/timecost/c2/ctgan/ctgan-c2-20260501_070350/staged/public/val.csv new file mode 100644 index 0000000000000000000000000000000000000000..af8caf7ee42524188534a3daf32996dc491952d9 --- /dev/null +++ b/timecost/c2/ctgan/ctgan-c2-20260501_070350/staged/public/val.csv @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:26e90c1170a57a14c05832ac88027722b1f3848f9662c7c09ef7c93dcba4cc01 +size 5176 diff --git a/timecost/c2/ctgan/ctgan-c2-20260504_152304/_ctgan_generate.py b/timecost/c2/ctgan/ctgan-c2-20260504_152304/_ctgan_generate.py new file mode 100644 index 0000000000000000000000000000000000000000..72d631b335a5126d37d39b7ce8a5a7267f2a06ad --- /dev/null +++ b/timecost/c2/ctgan/ctgan-c2-20260504_152304/_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-Benchmark-trainonly-v1/c2/ctgan/ctgan-c2-20260504_152304/models_50epochs/ctgan_50epochs.pt") +total = 1382 +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-Benchmark-trainonly-v1/c2/ctgan/ctgan-c2-20260504_152304/ctgan-c2-1382-20260504_152353.csv", index=False) +print("[CTGAN] Generated", total, "rows in", len(parts), "chunks ->", "/work/output-Benchmark-trainonly-v1/c2/ctgan/ctgan-c2-20260504_152304/ctgan-c2-1382-20260504_152353.csv") \ No newline at end of file diff --git a/timecost/c2/ctgan/ctgan-c2-20260504_152304/_ctgan_train.py b/timecost/c2/ctgan/ctgan-c2-20260504_152304/_ctgan_train.py new file mode 100644 index 0000000000000000000000000000000000000000..6b9b4676792febe944a8372bf1283e47afc4c4dd --- /dev/null +++ b/timecost/c2/ctgan/ctgan-c2-20260504_152304/_ctgan_train.py @@ -0,0 +1,17 @@ +import pandas as pd +from ctgan.synthesizers.ctgan import CTGAN + +data = pd.read_csv("/work/output-Benchmark-trainonly-v1/c2/ctgan/ctgan-c2-20260504_152304/staged/public/train.csv") +discrete_columns = ['buying', 'maint', 'doors', 'persons', 'lug_boot', 'safety', 'class'] +model = CTGAN( + embedding_dim=8, + generator_dim=(16, 16), + discriminator_dim=(16, 16), + batch_size=32, + pac=1, + epochs=50, + verbose=True, +) +model.fit(data, discrete_columns) +model.save("/work/output-Benchmark-trainonly-v1/c2/ctgan/ctgan-c2-20260504_152304/models_50epochs/ctgan_50epochs.pt") +print("[CTGAN] Saved model ->", "/work/output-Benchmark-trainonly-v1/c2/ctgan/ctgan-c2-20260504_152304/models_50epochs/ctgan_50epochs.pt") \ No newline at end of file diff --git a/timecost/c2/ctgan/ctgan-c2-20260504_152304/ctgan-c2-1382-20260504_152353.csv b/timecost/c2/ctgan/ctgan-c2-20260504_152304/ctgan-c2-1382-20260504_152353.csv new file mode 100644 index 0000000000000000000000000000000000000000..681e27aa7742ed0c684b00f71f3be788e0e869d8 --- /dev/null +++ b/timecost/c2/ctgan/ctgan-c2-20260504_152304/ctgan-c2-1382-20260504_152353.csv @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:29e976f587efbc955df869946a4bb105ce51b79458d3c62ceca09ac148b6ed20 +size 41616 diff --git a/timecost/c2/ctgan/ctgan-c2-20260504_152304/ctgan_metadata.json b/timecost/c2/ctgan/ctgan-c2-20260504_152304/ctgan_metadata.json new file mode 100644 index 0000000000000000000000000000000000000000..183d627ebc98e89233655ec98c9dcbc528c4c328 --- /dev/null +++ b/timecost/c2/ctgan/ctgan-c2-20260504_152304/ctgan_metadata.json @@ -0,0 +1,32 @@ +{ + "columns": [ + { + "name": "buying", + "type": "categorical" + }, + { + "name": "maint", + "type": "categorical" + }, + { + "name": "doors", + "type": "categorical" + }, + { + "name": "persons", + "type": "categorical" + }, + { + "name": "lug_boot", + "type": "categorical" + }, + { + "name": "safety", + "type": "categorical" + }, + { + "name": "class", + "type": "categorical" + } + ] +} \ No newline at end of file diff --git a/timecost/c2/ctgan/ctgan-c2-20260504_152304/gen_20260504_152353.log b/timecost/c2/ctgan/ctgan-c2-20260504_152304/gen_20260504_152353.log new file mode 100644 index 0000000000000000000000000000000000000000..de002e4b88e95acd9bc50ca032cc0ba1f0b86e39 --- /dev/null +++ b/timecost/c2/ctgan/ctgan-c2-20260504_152304/gen_20260504_152353.log @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:9acf86561cff1e9c6a4c9c06233f1f9190b7ed2b840fc2e34e276dbd370ea385 +size 297 diff --git a/timecost/c2/ctgan/ctgan-c2-20260504_152304/input_snapshot.json b/timecost/c2/ctgan/ctgan-c2-20260504_152304/input_snapshot.json new file mode 100644 index 0000000000000000000000000000000000000000..e70c6b5c1d7c7363c5970bab5156163411d211e7 --- /dev/null +++ b/timecost/c2/ctgan/ctgan-c2-20260504_152304/input_snapshot.json @@ -0,0 +1,36 @@ +{ + "dataset_id": "c2", + "model": "ctgan", + "inputs": { + "train_csv": { + "path": "/data/jialinzhang/SynthesizePipeline-server/DatasetNew/c2/c2-train.csv", + "exists": true, + "size": 42948, + "sha256": "17bc560fa96bd00fb3b526e1e65bc91210b701d0d0a4e8bb9b4c5196cab56def" + }, + "val_csv": { + "path": "/data/jialinzhang/SynthesizePipeline-server/DatasetNew/c2/c2-val.csv", + "exists": true, + "size": 5349, + "sha256": "61e565eca62e65a7dccd9d51039a3170413379e10fc494e25870e7c4294863c9" + }, + "test_csv": { + "path": "/data/jialinzhang/SynthesizePipeline-server/DatasetNew/c2/c2-test.csv", + "exists": true, + "size": 5448, + "sha256": "cbcbb062a1faf5fa44b66c80532baa229e05b94fc42137269761e6c6d84af20a" + }, + "profile_json": { + "path": "/data/jialinzhang/SynthesizePipeline-server/DatasetNew/artifacts/data_core/tabular/c2/c2-dataset_profile.json", + "exists": true, + "size": 3240, + "sha256": "526b7163b2076c93c0bf4638438081ee8a6907065d5b608faa40d1a3dbc2a27b" + }, + "contract_json": { + "path": "/data/jialinzhang/SynthesizePipeline-server/DatasetNew/artifacts/data_core/tabular/c2/c2-dataset_contract_v1.json", + "exists": true, + "size": 3731, + "sha256": "fb595a876054c2ee9b4e10cfe83a5691588de1d25466cbb9d473c18ad3604009" + } + } +} \ No newline at end of file diff --git a/timecost/c2/ctgan/ctgan-c2-20260504_152304/models_50epochs/ctgan_50epochs.pt b/timecost/c2/ctgan/ctgan-c2-20260504_152304/models_50epochs/ctgan_50epochs.pt new file mode 100644 index 0000000000000000000000000000000000000000..e36636095420ce570b0bfe9047133f9ba54849ac --- /dev/null +++ b/timecost/c2/ctgan/ctgan-c2-20260504_152304/models_50epochs/ctgan_50epochs.pt @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:39c7bef1dfa571bec7a879d742cb40f266707e489676ce3b74528b1c78d49d51 +size 279437 diff --git a/timecost/c2/ctgan/ctgan-c2-20260504_152304/models_50epochs/train_20260504_152304.log b/timecost/c2/ctgan/ctgan-c2-20260504_152304/models_50epochs/train_20260504_152304.log new file mode 100644 index 0000000000000000000000000000000000000000..31881c865e73fc7a604711f229b0138561760091 --- /dev/null +++ b/timecost/c2/ctgan/ctgan-c2-20260504_152304/models_50epochs/train_20260504_152304.log @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:34ee1fa8c63c912749b01e9ecd9d79d28d46671f3739ed5d339a692b3f263b85 +size 10893 diff --git a/timecost/c2/ctgan/ctgan-c2-20260504_152304/public_gate/normalized_schema_snapshot.json b/timecost/c2/ctgan/ctgan-c2-20260504_152304/public_gate/normalized_schema_snapshot.json new file mode 100644 index 0000000000000000000000000000000000000000..689b1d00d96508e44ba40e58dc4560e19afc2b3b --- /dev/null +++ b/timecost/c2/ctgan/ctgan-c2-20260504_152304/public_gate/normalized_schema_snapshot.json @@ -0,0 +1,144 @@ +{ + "dataset_id": "c2", + "target_column": "class", + "task_type": "classification", + "columns": [ + { + "name": "buying", + "role": "feature", + "semantic_type": "categorical", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 4, + "unique_ratio": 0.002894, + "example_values": [ + "vhigh", + "med", + "high", + "low" + ] + } + }, + { + "name": "maint", + "role": "feature", + "semantic_type": "categorical", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 4, + "unique_ratio": 0.002894, + "example_values": [ + "vhigh", + "low", + "med", + "high" + ] + } + }, + { + "name": "doors", + "role": "feature", + "semantic_type": "categorical", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 4, + "unique_ratio": 0.002894, + "example_values": [ + "2", + "5more", + "3", + "4" + ] + } + }, + { + "name": "persons", + "role": "feature", + "semantic_type": "categorical", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 3, + "unique_ratio": 0.002171, + "example_values": [ + "2", + "4", + "more" + ] + } + }, + { + "name": "lug_boot", + "role": "feature", + "semantic_type": "categorical", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 3, + "unique_ratio": 0.002171, + "example_values": [ + "small", + "big", + "med" + ] + } + }, + { + "name": "safety", + "role": "feature", + "semantic_type": "categorical", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 3, + "unique_ratio": 0.002171, + "example_values": [ + "low", + "high", + "med" + ] + } + }, + { + "name": "class", + "role": "target", + "semantic_type": "categorical", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 4, + "unique_ratio": 0.002894, + "example_values": [ + "unacc", + "good", + "acc", + "vgood" + ] + } + } + ] +} \ No newline at end of file diff --git a/timecost/c2/ctgan/ctgan-c2-20260504_152304/public_gate/public_gate_report.json b/timecost/c2/ctgan/ctgan-c2-20260504_152304/public_gate/public_gate_report.json new file mode 100644 index 0000000000000000000000000000000000000000..2e4cdcb2a4e28e40d59b17a83e773f622b7636a5 --- /dev/null +++ b/timecost/c2/ctgan/ctgan-c2-20260504_152304/public_gate/public_gate_report.json @@ -0,0 +1,37 @@ +{ + "dataset_id": "c2", + "status": "pass", + "checks": [ + { + "check_id": "PG001_csv_parse_ok", + "status": "pass" + }, + { + "check_id": "PG002_split_header_consistent", + "status": "pass" + }, + { + "check_id": "PG003_profile_header_match", + "status": "pass" + }, + { + "check_id": "PG004_missing_token_normalized", + "status": "pass" + }, + { + "check_id": "PG005_semantic_type_validated", + "status": "pass" + }, + { + "check_id": "PG006_target_defined_and_valid", + "status": "pass" + } + ], + "target_column": "class", + "task_type": "classification", + "input_splits": { + "train": "/data/jialinzhang/SynthesizePipeline-server/DatasetNew/c2/c2-train.csv", + "val": "/data/jialinzhang/SynthesizePipeline-server/DatasetNew/c2/c2-val.csv", + "test": "/data/jialinzhang/SynthesizePipeline-server/DatasetNew/c2/c2-test.csv" + } +} \ No newline at end of file diff --git a/timecost/c2/ctgan/ctgan-c2-20260504_152304/public_gate/staged_input_manifest.json b/timecost/c2/ctgan/ctgan-c2-20260504_152304/public_gate/staged_input_manifest.json new file mode 100644 index 0000000000000000000000000000000000000000..9adffa84c9a982333c5e541977c7b6dc9bc69810 --- /dev/null +++ b/timecost/c2/ctgan/ctgan-c2-20260504_152304/public_gate/staged_input_manifest.json @@ -0,0 +1,149 @@ +{ + "dataset_id": "c2", + "target_column": "class", + "task_type": "classification", + "train_csv": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/c2/ctgan/ctgan-c2-20260504_152304/staged/public/train.csv", + "val_csv": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/c2/ctgan/ctgan-c2-20260504_152304/staged/public/val.csv", + "test_csv": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/c2/ctgan/ctgan-c2-20260504_152304/staged/public/test.csv", + "features_json": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/c2/ctgan/ctgan-c2-20260504_152304/staged/public/staged_features.json", + "public_gate_report": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/c2/ctgan/ctgan-c2-20260504_152304/public_gate/public_gate_report.json", + "column_schema": [ + { + "name": "buying", + "role": "feature", + "semantic_type": "categorical", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 4, + "unique_ratio": 0.002894, + "example_values": [ + "vhigh", + "med", + "high", + "low" + ] + } + }, + { + "name": "maint", + "role": "feature", + "semantic_type": "categorical", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 4, + "unique_ratio": 0.002894, + "example_values": [ + "vhigh", + "low", + "med", + "high" + ] + } + }, + { + "name": "doors", + "role": "feature", + "semantic_type": "categorical", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 4, + "unique_ratio": 0.002894, + "example_values": [ + "2", + "5more", + "3", + "4" + ] + } + }, + { + "name": "persons", + "role": "feature", + "semantic_type": "categorical", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 3, + "unique_ratio": 0.002171, + "example_values": [ + "2", + "4", + "more" + ] + } + }, + { + "name": "lug_boot", + "role": "feature", + "semantic_type": "categorical", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 3, + "unique_ratio": 0.002171, + "example_values": [ + "small", + "big", + "med" + ] + } + }, + { + "name": "safety", + "role": "feature", + "semantic_type": "categorical", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 3, + "unique_ratio": 0.002171, + "example_values": [ + "low", + "high", + "med" + ] + } + }, + { + "name": "class", + "role": "target", + "semantic_type": "categorical", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 4, + "unique_ratio": 0.002894, + "example_values": [ + "unacc", + "good", + "acc", + "vgood" + ] + } + } + ] +} \ No newline at end of file diff --git a/timecost/c2/ctgan/ctgan-c2-20260504_152304/run_config.json b/timecost/c2/ctgan/ctgan-c2-20260504_152304/run_config.json new file mode 100644 index 0000000000000000000000000000000000000000..fb41d8bc3413589c05aaeab9ea2b38014b7b853b --- /dev/null +++ b/timecost/c2/ctgan/ctgan-c2-20260504_152304/run_config.json @@ -0,0 +1,46 @@ +{ + "schema_version": 1, + "recorded_at": "2026-05-04T15:23:04", + "dataset_id": "c2", + "model": "ctgan", + "work_dir": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/c2/ctgan/ctgan-c2-20260504_152304", + "dataset_source_requested": "new", + "dataset_source_resolved": "new", + "cli_args": { + "model": "ctgan", + "dataset": "c2", + "dataset_source": "new", + "train": true, + "generate": true, + "num_rows": 0, + "epochs": null, + "output_dir": null, + "model_dir": null, + "work_dir": null, + "resume": false, + "no_stats": false + }, + "resolved": { + "num_rows": 1382, + "model_path": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/c2/ctgan/ctgan-c2-20260504_152304/models_50epochs/ctgan_50epochs.pt", + "output_csv": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/c2/ctgan/ctgan-c2-20260504_152304/ctgan-c2-1382-20260504_152353.csv" + }, + "input_artifacts": { + "public_gate_report": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/c2/ctgan/ctgan-c2-20260504_152304/public_gate/public_gate_report.json", + "public_manifest": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/c2/ctgan/ctgan-c2-20260504_152304/public_gate/staged_input_manifest.json", + "model_manifest": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/c2/ctgan/ctgan-c2-20260504_152304/staged/ctgan/model_input_manifest.json", + "train_csv": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/c2/ctgan/ctgan-c2-20260504_152304/staged/public/train.csv", + "features_json": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/c2/ctgan/ctgan-c2-20260504_152304/staged/public/staged_features.json", + "target_column": "class", + "task_type": "classification" + }, + "env_overrides": { + "BENCHMARK_CTGAN_GPUS": "device=3", + "CTGAN_BATCH_SIZE": "32", + "CTGAN_DEFAULT_EPOCHS": "50", + "CTGAN_DISCRIMINATOR_DIMS": "16,16", + "CTGAN_EMBEDDING_DIM": "8", + "CTGAN_GENERATOR_DIMS": "16,16", + "CTGAN_PAC": "1" + } +} \ No newline at end of file diff --git a/timecost/c2/ctgan/ctgan-c2-20260504_152304/runtime_result.json b/timecost/c2/ctgan/ctgan-c2-20260504_152304/runtime_result.json new file mode 100644 index 0000000000000000000000000000000000000000..d04243918b6cf71cea8be69dbd1ac322df2d0d9b --- /dev/null +++ b/timecost/c2/ctgan/ctgan-c2-20260504_152304/runtime_result.json @@ -0,0 +1,27 @@ +{ + "dataset_id": "c2", + "model": "ctgan", + "run_id": "ctgan-c2-20260504_152304", + "public_gate_status": "pass", + "adapter_ready_status": "pass", + "train_status": "success", + "generate_status": "success", + "reason_code": null, + "reason_detail": null, + "artifacts": { + "synthetic_csv": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/c2/ctgan/ctgan-c2-20260504_152304/ctgan-c2-1382-20260504_152353.csv", + "model_path": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/c2/ctgan/ctgan-c2-20260504_152304/models_50epochs/ctgan_50epochs.pt" + }, + "timings": { + "train": { + "started_at": "2026-05-04T15:23:04", + "ended_at": "2026-05-04T15:23:53", + "duration_sec": 49.624 + }, + "generate": { + "started_at": "2026-05-04T15:23:53", + "ended_at": "2026-05-04T15:23:59", + "duration_sec": 6.006 + } + } +} \ No newline at end of file diff --git a/timecost/c2/ctgan/ctgan-c2-20260504_152304/staged/ctgan/adapter_report.json b/timecost/c2/ctgan/ctgan-c2-20260504_152304/staged/ctgan/adapter_report.json new file mode 100644 index 0000000000000000000000000000000000000000..7a10b79b3fd438b352d349856e6aaa5170be0296 --- /dev/null +++ b/timecost/c2/ctgan/ctgan-c2-20260504_152304/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-Benchmark-trainonly-v1/c2/ctgan/ctgan-c2-20260504_152304/staged/ctgan/model_input_manifest.json" +} \ No newline at end of file diff --git a/timecost/c2/ctgan/ctgan-c2-20260504_152304/staged/ctgan/adapter_transforms_applied.json b/timecost/c2/ctgan/ctgan-c2-20260504_152304/staged/ctgan/adapter_transforms_applied.json new file mode 100644 index 0000000000000000000000000000000000000000..0637a088a01e8ddab3bf3fa98dbe804cbde1a0dc --- /dev/null +++ b/timecost/c2/ctgan/ctgan-c2-20260504_152304/staged/ctgan/adapter_transforms_applied.json @@ -0,0 +1 @@ +[] \ No newline at end of file diff --git a/timecost/c2/ctgan/ctgan-c2-20260504_152304/staged/ctgan/model_input_manifest.json b/timecost/c2/ctgan/ctgan-c2-20260504_152304/staged/ctgan/model_input_manifest.json new file mode 100644 index 0000000000000000000000000000000000000000..73b58d2610a7c6335c463f5ded04d279904d13f3 --- /dev/null +++ b/timecost/c2/ctgan/ctgan-c2-20260504_152304/staged/ctgan/model_input_manifest.json @@ -0,0 +1,151 @@ +{ + "dataset_id": "c2", + "model": "ctgan", + "target_column": "class", + "task_type": "classification", + "column_schema": [ + { + "name": "buying", + "role": "feature", + "semantic_type": "categorical", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 4, + "unique_ratio": 0.002894, + "example_values": [ + "vhigh", + "med", + "high", + "low" + ] + } + }, + { + "name": "maint", + "role": "feature", + "semantic_type": "categorical", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 4, + "unique_ratio": 0.002894, + "example_values": [ + "vhigh", + "low", + "med", + "high" + ] + } + }, + { + "name": "doors", + "role": "feature", + "semantic_type": "categorical", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 4, + "unique_ratio": 0.002894, + "example_values": [ + "2", + "5more", + "3", + "4" + ] + } + }, + { + "name": "persons", + "role": "feature", + "semantic_type": "categorical", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 3, + "unique_ratio": 0.002171, + "example_values": [ + "2", + "4", + "more" + ] + } + }, + { + "name": "lug_boot", + "role": "feature", + "semantic_type": "categorical", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 3, + "unique_ratio": 0.002171, + "example_values": [ + "small", + "big", + "med" + ] + } + }, + { + "name": "safety", + "role": "feature", + "semantic_type": "categorical", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 3, + "unique_ratio": 0.002171, + "example_values": [ + "low", + "high", + "med" + ] + } + }, + { + "name": "class", + "role": "target", + "semantic_type": "categorical", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 4, + "unique_ratio": 0.002894, + "example_values": [ + "unacc", + "good", + "acc", + "vgood" + ] + } + } + ], + "public_manifest": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/c2/ctgan/ctgan-c2-20260504_152304/public_gate/staged_input_manifest.json", + "train_csv": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/c2/ctgan/ctgan-c2-20260504_152304/staged/public/train.csv", + "val_csv": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/c2/ctgan/ctgan-c2-20260504_152304/staged/public/val.csv", + "test_csv": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/c2/ctgan/ctgan-c2-20260504_152304/staged/public/test.csv", + "features_json": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/c2/ctgan/ctgan-c2-20260504_152304/staged/public/staged_features.json", + "public_gate_report": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/c2/ctgan/ctgan-c2-20260504_152304/public_gate/public_gate_report.json" +} \ No newline at end of file diff --git a/timecost/c2/ctgan/ctgan-c2-20260504_152304/staged/public/staged_features.json b/timecost/c2/ctgan/ctgan-c2-20260504_152304/staged/public/staged_features.json new file mode 100644 index 0000000000000000000000000000000000000000..61783861dd5de501592f76acb0469cf3f3b2622a --- /dev/null +++ b/timecost/c2/ctgan/ctgan-c2-20260504_152304/staged/public/staged_features.json @@ -0,0 +1,37 @@ +[ + { + "feature_name": "buying", + "data_type": "categorical", + "is_target": false + }, + { + "feature_name": "maint", + "data_type": "categorical", + "is_target": false + }, + { + "feature_name": "doors", + "data_type": "categorical", + "is_target": false + }, + { + "feature_name": "persons", + "data_type": "categorical", + "is_target": false + }, + { + "feature_name": "lug_boot", + "data_type": "categorical", + "is_target": false + }, + { + "feature_name": "safety", + "data_type": "categorical", + "is_target": false + }, + { + "feature_name": "class", + "data_type": "categorical", + "is_target": true + } +] \ No newline at end of file diff --git a/timecost/c2/ctgan/ctgan-c2-20260504_152304/staged/public/test.csv b/timecost/c2/ctgan/ctgan-c2-20260504_152304/staged/public/test.csv new file mode 100644 index 0000000000000000000000000000000000000000..392a0d7189a34d8f13ecf20a99d64b03230d517c --- /dev/null +++ b/timecost/c2/ctgan/ctgan-c2-20260504_152304/staged/public/test.csv @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:b48114a7d0bc5bd9a07920f903c8d4aba8bf98bf2a66a050da03588b0245ca73 +size 5273 diff --git a/timecost/c2/ctgan/ctgan-c2-20260504_152304/staged/public/train.csv b/timecost/c2/ctgan/ctgan-c2-20260504_152304/staged/public/train.csv new file mode 100644 index 0000000000000000000000000000000000000000..da4f4d55134eebc0e51157d0d467536371db1484 --- /dev/null +++ b/timecost/c2/ctgan/ctgan-c2-20260504_152304/staged/public/train.csv @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:4aed00c2c2b3f88a55a7ebff31b2e1b5e0e32fb0a7267e0b9d2779cd23e434dd +size 41565 diff --git a/timecost/c2/ctgan/ctgan-c2-20260504_152304/staged/public/val.csv b/timecost/c2/ctgan/ctgan-c2-20260504_152304/staged/public/val.csv new file mode 100644 index 0000000000000000000000000000000000000000..af8caf7ee42524188534a3daf32996dc491952d9 --- /dev/null +++ b/timecost/c2/ctgan/ctgan-c2-20260504_152304/staged/public/val.csv @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:26e90c1170a57a14c05832ac88027722b1f3848f9662c7c09ef7c93dcba4cc01 +size 5176 diff --git a/timecost/c2/ctgan/ctgan-c2-20260504_152412/_ctgan_generate.py b/timecost/c2/ctgan/ctgan-c2-20260504_152412/_ctgan_generate.py new file mode 100644 index 0000000000000000000000000000000000000000..a6e2cc17bfbb8d558e91a73d47e786f6a6ea4a89 --- /dev/null +++ b/timecost/c2/ctgan/ctgan-c2-20260504_152412/_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-Benchmark-trainonly-v1/c2/ctgan/ctgan-c2-20260504_152412/models_100epochs/ctgan_100epochs.pt") +total = 1382 +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-Benchmark-trainonly-v1/c2/ctgan/ctgan-c2-20260504_152412/ctgan-c2-1382-20260504_152503.csv", index=False) +print("[CTGAN] Generated", total, "rows in", len(parts), "chunks ->", "/work/output-Benchmark-trainonly-v1/c2/ctgan/ctgan-c2-20260504_152412/ctgan-c2-1382-20260504_152503.csv") \ No newline at end of file diff --git a/timecost/c2/ctgan/ctgan-c2-20260504_152412/_ctgan_train.py b/timecost/c2/ctgan/ctgan-c2-20260504_152412/_ctgan_train.py new file mode 100644 index 0000000000000000000000000000000000000000..eb7e6332e2a5f17ac5c5659de2b5fa14f3402fa6 --- /dev/null +++ b/timecost/c2/ctgan/ctgan-c2-20260504_152412/_ctgan_train.py @@ -0,0 +1,17 @@ +import pandas as pd +from ctgan.synthesizers.ctgan import CTGAN + +data = pd.read_csv("/work/output-Benchmark-trainonly-v1/c2/ctgan/ctgan-c2-20260504_152412/staged/public/train.csv") +discrete_columns = ['buying', 'maint', 'doors', 'persons', 'lug_boot', 'safety', 'class'] +model = CTGAN( + embedding_dim=16, + generator_dim=(32, 32), + discriminator_dim=(32, 32), + batch_size=64, + pac=1, + epochs=100, + verbose=True, +) +model.fit(data, discrete_columns) +model.save("/work/output-Benchmark-trainonly-v1/c2/ctgan/ctgan-c2-20260504_152412/models_100epochs/ctgan_100epochs.pt") +print("[CTGAN] Saved model ->", "/work/output-Benchmark-trainonly-v1/c2/ctgan/ctgan-c2-20260504_152412/models_100epochs/ctgan_100epochs.pt") \ No newline at end of file diff --git a/timecost/c2/ctgan/ctgan-c2-20260504_152412/ctgan-c2-1382-20260504_152503.csv b/timecost/c2/ctgan/ctgan-c2-20260504_152412/ctgan-c2-1382-20260504_152503.csv new file mode 100644 index 0000000000000000000000000000000000000000..24115f3ea8ecea36e3add98d8105e4e8fb44f121 --- /dev/null +++ b/timecost/c2/ctgan/ctgan-c2-20260504_152412/ctgan-c2-1382-20260504_152503.csv @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:1a3894c926a9de28a2c5d069c22c5841dba3d46059ebb36e4d9d6a34cf64b9d7 +size 41628 diff --git a/timecost/c2/ctgan/ctgan-c2-20260504_152412/ctgan_metadata.json b/timecost/c2/ctgan/ctgan-c2-20260504_152412/ctgan_metadata.json new file mode 100644 index 0000000000000000000000000000000000000000..183d627ebc98e89233655ec98c9dcbc528c4c328 --- /dev/null +++ b/timecost/c2/ctgan/ctgan-c2-20260504_152412/ctgan_metadata.json @@ -0,0 +1,32 @@ +{ + "columns": [ + { + "name": "buying", + "type": "categorical" + }, + { + "name": "maint", + "type": "categorical" + }, + { + "name": "doors", + "type": "categorical" + }, + { + "name": "persons", + "type": "categorical" + }, + { + "name": "lug_boot", + "type": "categorical" + }, + { + "name": "safety", + "type": "categorical" + }, + { + "name": "class", + "type": "categorical" + } + ] +} \ No newline at end of file diff --git a/timecost/c2/ctgan/ctgan-c2-20260504_152412/gen_20260504_152503.log b/timecost/c2/ctgan/ctgan-c2-20260504_152412/gen_20260504_152503.log new file mode 100644 index 0000000000000000000000000000000000000000..8dc6481b689cc2843ea2cf84ad6d5317d8d6db8d --- /dev/null +++ b/timecost/c2/ctgan/ctgan-c2-20260504_152412/gen_20260504_152503.log @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:4fdf3116f7dbf5aa10526c09e0aa425ff5d1d7b6d646d7493b1947d94e53cdc3 +size 297 diff --git a/timecost/c2/ctgan/ctgan-c2-20260504_152412/input_snapshot.json b/timecost/c2/ctgan/ctgan-c2-20260504_152412/input_snapshot.json new file mode 100644 index 0000000000000000000000000000000000000000..e70c6b5c1d7c7363c5970bab5156163411d211e7 --- /dev/null +++ b/timecost/c2/ctgan/ctgan-c2-20260504_152412/input_snapshot.json @@ -0,0 +1,36 @@ +{ + "dataset_id": "c2", + "model": "ctgan", + "inputs": { + "train_csv": { + "path": "/data/jialinzhang/SynthesizePipeline-server/DatasetNew/c2/c2-train.csv", + "exists": true, + "size": 42948, + "sha256": "17bc560fa96bd00fb3b526e1e65bc91210b701d0d0a4e8bb9b4c5196cab56def" + }, + "val_csv": { + "path": "/data/jialinzhang/SynthesizePipeline-server/DatasetNew/c2/c2-val.csv", + "exists": true, + "size": 5349, + "sha256": "61e565eca62e65a7dccd9d51039a3170413379e10fc494e25870e7c4294863c9" + }, + "test_csv": { + "path": "/data/jialinzhang/SynthesizePipeline-server/DatasetNew/c2/c2-test.csv", + "exists": true, + "size": 5448, + "sha256": "cbcbb062a1faf5fa44b66c80532baa229e05b94fc42137269761e6c6d84af20a" + }, + "profile_json": { + "path": "/data/jialinzhang/SynthesizePipeline-server/DatasetNew/artifacts/data_core/tabular/c2/c2-dataset_profile.json", + "exists": true, + "size": 3240, + "sha256": "526b7163b2076c93c0bf4638438081ee8a6907065d5b608faa40d1a3dbc2a27b" + }, + "contract_json": { + "path": "/data/jialinzhang/SynthesizePipeline-server/DatasetNew/artifacts/data_core/tabular/c2/c2-dataset_contract_v1.json", + "exists": true, + "size": 3731, + "sha256": "fb595a876054c2ee9b4e10cfe83a5691588de1d25466cbb9d473c18ad3604009" + } + } +} \ No newline at end of file diff --git a/timecost/c2/ctgan/ctgan-c2-20260504_152412/models_100epochs/ctgan_100epochs.pt b/timecost/c2/ctgan/ctgan-c2-20260504_152412/models_100epochs/ctgan_100epochs.pt new file mode 100644 index 0000000000000000000000000000000000000000..0e4044dc65ae5c3bd120e640c227865c3a03dc6f --- /dev/null +++ b/timecost/c2/ctgan/ctgan-c2-20260504_152412/models_100epochs/ctgan_100epochs.pt @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:374f0a3ab118b4c358cfa846e538a91d1c0312a5d866fcadfd475f070e6873d8 +size 295011 diff --git a/timecost/c2/ctgan/ctgan-c2-20260504_152412/models_100epochs/train_20260504_152412.log b/timecost/c2/ctgan/ctgan-c2-20260504_152412/models_100epochs/train_20260504_152412.log new file mode 100644 index 0000000000000000000000000000000000000000..016ed31b2b3da069ab0f57b0e1d8afed0aedb0de --- /dev/null +++ b/timecost/c2/ctgan/ctgan-c2-20260504_152412/models_100epochs/train_20260504_152412.log @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:13eea713840c309e407bb778338ff2e10f7e51ab12a6d203f926b413c280d5ad +size 20259 diff --git a/timecost/c2/ctgan/ctgan-c2-20260504_152412/public_gate/normalized_schema_snapshot.json b/timecost/c2/ctgan/ctgan-c2-20260504_152412/public_gate/normalized_schema_snapshot.json new file mode 100644 index 0000000000000000000000000000000000000000..689b1d00d96508e44ba40e58dc4560e19afc2b3b --- /dev/null +++ b/timecost/c2/ctgan/ctgan-c2-20260504_152412/public_gate/normalized_schema_snapshot.json @@ -0,0 +1,144 @@ +{ + "dataset_id": "c2", + "target_column": "class", + "task_type": "classification", + "columns": [ + { + "name": "buying", + "role": "feature", + "semantic_type": "categorical", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 4, + "unique_ratio": 0.002894, + "example_values": [ + "vhigh", + "med", + "high", + "low" + ] + } + }, + { + "name": "maint", + "role": "feature", + "semantic_type": "categorical", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 4, + "unique_ratio": 0.002894, + "example_values": [ + "vhigh", + "low", + "med", + "high" + ] + } + }, + { + "name": "doors", + "role": "feature", + "semantic_type": "categorical", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 4, + "unique_ratio": 0.002894, + "example_values": [ + "2", + "5more", + "3", + "4" + ] + } + }, + { + "name": "persons", + "role": "feature", + "semantic_type": "categorical", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 3, + "unique_ratio": 0.002171, + "example_values": [ + "2", + "4", + "more" + ] + } + }, + { + "name": "lug_boot", + "role": "feature", + "semantic_type": "categorical", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 3, + "unique_ratio": 0.002171, + "example_values": [ + "small", + "big", + "med" + ] + } + }, + { + "name": "safety", + "role": "feature", + "semantic_type": "categorical", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 3, + "unique_ratio": 0.002171, + "example_values": [ + "low", + "high", + "med" + ] + } + }, + { + "name": "class", + "role": "target", + "semantic_type": "categorical", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 4, + "unique_ratio": 0.002894, + "example_values": [ + "unacc", + "good", + "acc", + "vgood" + ] + } + } + ] +} \ No newline at end of file diff --git a/timecost/c2/ctgan/ctgan-c2-20260504_152412/public_gate/public_gate_report.json b/timecost/c2/ctgan/ctgan-c2-20260504_152412/public_gate/public_gate_report.json new file mode 100644 index 0000000000000000000000000000000000000000..2e4cdcb2a4e28e40d59b17a83e773f622b7636a5 --- /dev/null +++ b/timecost/c2/ctgan/ctgan-c2-20260504_152412/public_gate/public_gate_report.json @@ -0,0 +1,37 @@ +{ + "dataset_id": "c2", + "status": "pass", + "checks": [ + { + "check_id": "PG001_csv_parse_ok", + "status": "pass" + }, + { + "check_id": "PG002_split_header_consistent", + "status": "pass" + }, + { + "check_id": "PG003_profile_header_match", + "status": "pass" + }, + { + "check_id": "PG004_missing_token_normalized", + "status": "pass" + }, + { + "check_id": "PG005_semantic_type_validated", + "status": "pass" + }, + { + "check_id": "PG006_target_defined_and_valid", + "status": "pass" + } + ], + "target_column": "class", + "task_type": "classification", + "input_splits": { + "train": "/data/jialinzhang/SynthesizePipeline-server/DatasetNew/c2/c2-train.csv", + "val": "/data/jialinzhang/SynthesizePipeline-server/DatasetNew/c2/c2-val.csv", + "test": "/data/jialinzhang/SynthesizePipeline-server/DatasetNew/c2/c2-test.csv" + } +} \ No newline at end of file diff --git a/timecost/c2/ctgan/ctgan-c2-20260504_152412/public_gate/staged_input_manifest.json b/timecost/c2/ctgan/ctgan-c2-20260504_152412/public_gate/staged_input_manifest.json new file mode 100644 index 0000000000000000000000000000000000000000..80aeec1d38cb19d7ef9896f62f53b30f8a90381f --- /dev/null +++ b/timecost/c2/ctgan/ctgan-c2-20260504_152412/public_gate/staged_input_manifest.json @@ -0,0 +1,149 @@ +{ + "dataset_id": "c2", + "target_column": "class", + "task_type": "classification", + "train_csv": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/c2/ctgan/ctgan-c2-20260504_152412/staged/public/train.csv", + "val_csv": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/c2/ctgan/ctgan-c2-20260504_152412/staged/public/val.csv", + "test_csv": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/c2/ctgan/ctgan-c2-20260504_152412/staged/public/test.csv", + "features_json": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/c2/ctgan/ctgan-c2-20260504_152412/staged/public/staged_features.json", + "public_gate_report": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/c2/ctgan/ctgan-c2-20260504_152412/public_gate/public_gate_report.json", + "column_schema": [ + { + "name": "buying", + "role": "feature", + "semantic_type": "categorical", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 4, + "unique_ratio": 0.002894, + "example_values": [ + "vhigh", + "med", + "high", + "low" + ] + } + }, + { + "name": "maint", + "role": "feature", + "semantic_type": "categorical", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 4, + "unique_ratio": 0.002894, + "example_values": [ + "vhigh", + "low", + "med", + "high" + ] + } + }, + { + "name": "doors", + "role": "feature", + "semantic_type": "categorical", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 4, + "unique_ratio": 0.002894, + "example_values": [ + "2", + "5more", + "3", + "4" + ] + } + }, + { + "name": "persons", + "role": "feature", + "semantic_type": "categorical", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 3, + "unique_ratio": 0.002171, + "example_values": [ + "2", + "4", + "more" + ] + } + }, + { + "name": "lug_boot", + "role": "feature", + "semantic_type": "categorical", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 3, + "unique_ratio": 0.002171, + "example_values": [ + "small", + "big", + "med" + ] + } + }, + { + "name": "safety", + "role": "feature", + "semantic_type": "categorical", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 3, + "unique_ratio": 0.002171, + "example_values": [ + "low", + "high", + "med" + ] + } + }, + { + "name": "class", + "role": "target", + "semantic_type": "categorical", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 4, + "unique_ratio": 0.002894, + "example_values": [ + "unacc", + "good", + "acc", + "vgood" + ] + } + } + ] +} \ No newline at end of file diff --git a/timecost/c2/ctgan/ctgan-c2-20260504_152412/run_config.json b/timecost/c2/ctgan/ctgan-c2-20260504_152412/run_config.json new file mode 100644 index 0000000000000000000000000000000000000000..2cb71686f0f7799148a51aa35b2a4ee84aca72e3 --- /dev/null +++ b/timecost/c2/ctgan/ctgan-c2-20260504_152412/run_config.json @@ -0,0 +1,46 @@ +{ + "schema_version": 1, + "recorded_at": "2026-05-04T15:24:12", + "dataset_id": "c2", + "model": "ctgan", + "work_dir": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/c2/ctgan/ctgan-c2-20260504_152412", + "dataset_source_requested": "new", + "dataset_source_resolved": "new", + "cli_args": { + "model": "ctgan", + "dataset": "c2", + "dataset_source": "new", + "train": true, + "generate": true, + "num_rows": 0, + "epochs": null, + "output_dir": null, + "model_dir": null, + "work_dir": null, + "resume": false, + "no_stats": false + }, + "resolved": { + "num_rows": 1382, + "model_path": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/c2/ctgan/ctgan-c2-20260504_152412/models_100epochs/ctgan_100epochs.pt", + "output_csv": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/c2/ctgan/ctgan-c2-20260504_152412/ctgan-c2-1382-20260504_152503.csv" + }, + "input_artifacts": { + "public_gate_report": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/c2/ctgan/ctgan-c2-20260504_152412/public_gate/public_gate_report.json", + "public_manifest": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/c2/ctgan/ctgan-c2-20260504_152412/public_gate/staged_input_manifest.json", + "model_manifest": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/c2/ctgan/ctgan-c2-20260504_152412/staged/ctgan/model_input_manifest.json", + "train_csv": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/c2/ctgan/ctgan-c2-20260504_152412/staged/public/train.csv", + "features_json": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/c2/ctgan/ctgan-c2-20260504_152412/staged/public/staged_features.json", + "target_column": "class", + "task_type": "classification" + }, + "env_overrides": { + "BENCHMARK_CTGAN_GPUS": "device=3", + "CTGAN_BATCH_SIZE": "64", + "CTGAN_DEFAULT_EPOCHS": "100", + "CTGAN_DISCRIMINATOR_DIMS": "32,32", + "CTGAN_EMBEDDING_DIM": "16", + "CTGAN_GENERATOR_DIMS": "32,32", + "CTGAN_PAC": "1" + } +} \ No newline at end of file diff --git a/timecost/c2/ctgan/ctgan-c2-20260504_152412/runtime_result.json b/timecost/c2/ctgan/ctgan-c2-20260504_152412/runtime_result.json new file mode 100644 index 0000000000000000000000000000000000000000..937e58e0473c6bbd8b3ee0e92fae0b15b8422aeb --- /dev/null +++ b/timecost/c2/ctgan/ctgan-c2-20260504_152412/runtime_result.json @@ -0,0 +1,27 @@ +{ + "dataset_id": "c2", + "model": "ctgan", + "run_id": "ctgan-c2-20260504_152412", + "public_gate_status": "pass", + "adapter_ready_status": "pass", + "train_status": "success", + "generate_status": "success", + "reason_code": null, + "reason_detail": null, + "artifacts": { + "synthetic_csv": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/c2/ctgan/ctgan-c2-20260504_152412/ctgan-c2-1382-20260504_152503.csv", + "model_path": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/c2/ctgan/ctgan-c2-20260504_152412/models_100epochs/ctgan_100epochs.pt" + }, + "timings": { + "train": { + "started_at": "2026-05-04T15:24:12", + "ended_at": "2026-05-04T15:25:03", + "duration_sec": 50.201 + }, + "generate": { + "started_at": "2026-05-04T15:25:03", + "ended_at": "2026-05-04T15:25:08", + "duration_sec": 5.617 + } + } +} \ No newline at end of file diff --git a/timecost/c2/ctgan/ctgan-c2-20260504_152412/staged/ctgan/adapter_report.json b/timecost/c2/ctgan/ctgan-c2-20260504_152412/staged/ctgan/adapter_report.json new file mode 100644 index 0000000000000000000000000000000000000000..f5f5ece257cc2be54a51b3dd7cb44e9814f81e60 --- /dev/null +++ b/timecost/c2/ctgan/ctgan-c2-20260504_152412/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-Benchmark-trainonly-v1/c2/ctgan/ctgan-c2-20260504_152412/staged/ctgan/model_input_manifest.json" +} \ No newline at end of file diff --git a/timecost/c2/ctgan/ctgan-c2-20260504_152412/staged/ctgan/adapter_transforms_applied.json b/timecost/c2/ctgan/ctgan-c2-20260504_152412/staged/ctgan/adapter_transforms_applied.json new file mode 100644 index 0000000000000000000000000000000000000000..0637a088a01e8ddab3bf3fa98dbe804cbde1a0dc --- /dev/null +++ b/timecost/c2/ctgan/ctgan-c2-20260504_152412/staged/ctgan/adapter_transforms_applied.json @@ -0,0 +1 @@ +[] \ No newline at end of file diff --git a/timecost/c2/ctgan/ctgan-c2-20260504_152412/staged/ctgan/model_input_manifest.json b/timecost/c2/ctgan/ctgan-c2-20260504_152412/staged/ctgan/model_input_manifest.json new file mode 100644 index 0000000000000000000000000000000000000000..4962ba89ebed95e0c2b0d4ca815088c5fa2c32b8 --- /dev/null +++ b/timecost/c2/ctgan/ctgan-c2-20260504_152412/staged/ctgan/model_input_manifest.json @@ -0,0 +1,151 @@ +{ + "dataset_id": "c2", + "model": "ctgan", + "target_column": "class", + "task_type": "classification", + "column_schema": [ + { + "name": "buying", + "role": "feature", + "semantic_type": "categorical", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 4, + "unique_ratio": 0.002894, + "example_values": [ + "vhigh", + "med", + "high", + "low" + ] + } + }, + { + "name": "maint", + "role": "feature", + "semantic_type": "categorical", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 4, + "unique_ratio": 0.002894, + "example_values": [ + "vhigh", + "low", + "med", + "high" + ] + } + }, + { + "name": "doors", + "role": "feature", + "semantic_type": "categorical", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 4, + "unique_ratio": 0.002894, + "example_values": [ + "2", + "5more", + "3", + "4" + ] + } + }, + { + "name": "persons", + "role": "feature", + "semantic_type": "categorical", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 3, + "unique_ratio": 0.002171, + "example_values": [ + "2", + "4", + "more" + ] + } + }, + { + "name": "lug_boot", + "role": "feature", + "semantic_type": "categorical", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 3, + "unique_ratio": 0.002171, + "example_values": [ + "small", + "big", + "med" + ] + } + }, + { + "name": "safety", + "role": "feature", + "semantic_type": "categorical", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 3, + "unique_ratio": 0.002171, + "example_values": [ + "low", + "high", + "med" + ] + } + }, + { + "name": "class", + "role": "target", + "semantic_type": "categorical", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 4, + "unique_ratio": 0.002894, + "example_values": [ + "unacc", + "good", + "acc", + "vgood" + ] + } + } + ], + "public_manifest": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/c2/ctgan/ctgan-c2-20260504_152412/public_gate/staged_input_manifest.json", + "train_csv": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/c2/ctgan/ctgan-c2-20260504_152412/staged/public/train.csv", + "val_csv": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/c2/ctgan/ctgan-c2-20260504_152412/staged/public/val.csv", + "test_csv": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/c2/ctgan/ctgan-c2-20260504_152412/staged/public/test.csv", + "features_json": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/c2/ctgan/ctgan-c2-20260504_152412/staged/public/staged_features.json", + "public_gate_report": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/c2/ctgan/ctgan-c2-20260504_152412/public_gate/public_gate_report.json" +} \ No newline at end of file diff --git a/timecost/c2/ctgan/ctgan-c2-20260504_152412/staged/public/staged_features.json b/timecost/c2/ctgan/ctgan-c2-20260504_152412/staged/public/staged_features.json new file mode 100644 index 0000000000000000000000000000000000000000..61783861dd5de501592f76acb0469cf3f3b2622a --- /dev/null +++ b/timecost/c2/ctgan/ctgan-c2-20260504_152412/staged/public/staged_features.json @@ -0,0 +1,37 @@ +[ + { + "feature_name": "buying", + "data_type": "categorical", + "is_target": false + }, + { + "feature_name": "maint", + "data_type": "categorical", + "is_target": false + }, + { + "feature_name": "doors", + "data_type": "categorical", + "is_target": false + }, + { + "feature_name": "persons", + "data_type": "categorical", + "is_target": false + }, + { + "feature_name": "lug_boot", + "data_type": "categorical", + "is_target": false + }, + { + "feature_name": "safety", + "data_type": "categorical", + "is_target": false + }, + { + "feature_name": "class", + "data_type": "categorical", + "is_target": true + } +] \ No newline at end of file diff --git a/timecost/c2/ctgan/ctgan-c2-20260504_152412/staged/public/test.csv b/timecost/c2/ctgan/ctgan-c2-20260504_152412/staged/public/test.csv new file mode 100644 index 0000000000000000000000000000000000000000..392a0d7189a34d8f13ecf20a99d64b03230d517c --- /dev/null +++ b/timecost/c2/ctgan/ctgan-c2-20260504_152412/staged/public/test.csv @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:b48114a7d0bc5bd9a07920f903c8d4aba8bf98bf2a66a050da03588b0245ca73 +size 5273 diff --git a/timecost/c2/ctgan/ctgan-c2-20260504_152412/staged/public/train.csv b/timecost/c2/ctgan/ctgan-c2-20260504_152412/staged/public/train.csv new file mode 100644 index 0000000000000000000000000000000000000000..da4f4d55134eebc0e51157d0d467536371db1484 --- /dev/null +++ b/timecost/c2/ctgan/ctgan-c2-20260504_152412/staged/public/train.csv @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:4aed00c2c2b3f88a55a7ebff31b2e1b5e0e32fb0a7267e0b9d2779cd23e434dd +size 41565 diff --git a/timecost/c2/ctgan/ctgan-c2-20260504_152412/staged/public/val.csv b/timecost/c2/ctgan/ctgan-c2-20260504_152412/staged/public/val.csv new file mode 100644 index 0000000000000000000000000000000000000000..af8caf7ee42524188534a3daf32996dc491952d9 --- /dev/null +++ b/timecost/c2/ctgan/ctgan-c2-20260504_152412/staged/public/val.csv @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:26e90c1170a57a14c05832ac88027722b1f3848f9662c7c09ef7c93dcba4cc01 +size 5176 diff --git a/timecost/c2/ctgan/ctgan-c2-20260504_152521/_ctgan_generate.py b/timecost/c2/ctgan/ctgan-c2-20260504_152521/_ctgan_generate.py new file mode 100644 index 0000000000000000000000000000000000000000..16e1cbf8bd422bec2ca1d496741eb412a6d3b10c --- /dev/null +++ b/timecost/c2/ctgan/ctgan-c2-20260504_152521/_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-Benchmark-trainonly-v1/c2/ctgan/ctgan-c2-20260504_152521/models_150epochs/ctgan_150epochs.pt") +total = 1382 +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-Benchmark-trainonly-v1/c2/ctgan/ctgan-c2-20260504_152521/ctgan-c2-1382-20260504_152602.csv", index=False) +print("[CTGAN] Generated", total, "rows in", len(parts), "chunks ->", "/work/output-Benchmark-trainonly-v1/c2/ctgan/ctgan-c2-20260504_152521/ctgan-c2-1382-20260504_152602.csv") \ No newline at end of file diff --git a/timecost/c2/ctgan/ctgan-c2-20260504_152521/_ctgan_train.py b/timecost/c2/ctgan/ctgan-c2-20260504_152521/_ctgan_train.py new file mode 100644 index 0000000000000000000000000000000000000000..78628106b930abae414832204fa9175a7455533f --- /dev/null +++ b/timecost/c2/ctgan/ctgan-c2-20260504_152521/_ctgan_train.py @@ -0,0 +1,17 @@ +import pandas as pd +from ctgan.synthesizers.ctgan import CTGAN + +data = pd.read_csv("/work/output-Benchmark-trainonly-v1/c2/ctgan/ctgan-c2-20260504_152521/staged/public/train.csv") +discrete_columns = ['buying', 'maint', 'doors', 'persons', 'lug_boot', 'safety', 'class'] +model = CTGAN( + embedding_dim=32, + generator_dim=(64, 64), + discriminator_dim=(64, 64), + batch_size=128, + pac=1, + epochs=150, + verbose=True, +) +model.fit(data, discrete_columns) +model.save("/work/output-Benchmark-trainonly-v1/c2/ctgan/ctgan-c2-20260504_152521/models_150epochs/ctgan_150epochs.pt") +print("[CTGAN] Saved model ->", "/work/output-Benchmark-trainonly-v1/c2/ctgan/ctgan-c2-20260504_152521/models_150epochs/ctgan_150epochs.pt") \ No newline at end of file diff --git a/timecost/c2/ctgan/ctgan-c2-20260504_152521/ctgan-c2-1382-20260504_152602.csv b/timecost/c2/ctgan/ctgan-c2-20260504_152521/ctgan-c2-1382-20260504_152602.csv new file mode 100644 index 0000000000000000000000000000000000000000..fb43b629026c53e55167fb66183df12a8ede4f6e --- /dev/null +++ b/timecost/c2/ctgan/ctgan-c2-20260504_152521/ctgan-c2-1382-20260504_152602.csv @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:f9e5f49ea1929935b2cbff19d40b624b643fce1ce9b25dcd47f8a95b18c8e658 +size 41931 diff --git a/timecost/c2/ctgan/ctgan-c2-20260504_152521/ctgan_metadata.json b/timecost/c2/ctgan/ctgan-c2-20260504_152521/ctgan_metadata.json new file mode 100644 index 0000000000000000000000000000000000000000..183d627ebc98e89233655ec98c9dcbc528c4c328 --- /dev/null +++ b/timecost/c2/ctgan/ctgan-c2-20260504_152521/ctgan_metadata.json @@ -0,0 +1,32 @@ +{ + "columns": [ + { + "name": "buying", + "type": "categorical" + }, + { + "name": "maint", + "type": "categorical" + }, + { + "name": "doors", + "type": "categorical" + }, + { + "name": "persons", + "type": "categorical" + }, + { + "name": "lug_boot", + "type": "categorical" + }, + { + "name": "safety", + "type": "categorical" + }, + { + "name": "class", + "type": "categorical" + } + ] +} \ No newline at end of file diff --git a/timecost/c2/ctgan/ctgan-c2-20260504_152521/gen_20260504_152602.log b/timecost/c2/ctgan/ctgan-c2-20260504_152521/gen_20260504_152602.log new file mode 100644 index 0000000000000000000000000000000000000000..f33ebfa9b854a8e71a032a35483e56c9cc8683f6 --- /dev/null +++ b/timecost/c2/ctgan/ctgan-c2-20260504_152521/gen_20260504_152602.log @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:90a4a7de75eec0fbee24fc86b99413d696184b508dbb5166fb1f6369c00a0259 +size 297 diff --git a/timecost/c2/ctgan/ctgan-c2-20260504_152521/input_snapshot.json b/timecost/c2/ctgan/ctgan-c2-20260504_152521/input_snapshot.json new file mode 100644 index 0000000000000000000000000000000000000000..e70c6b5c1d7c7363c5970bab5156163411d211e7 --- /dev/null +++ b/timecost/c2/ctgan/ctgan-c2-20260504_152521/input_snapshot.json @@ -0,0 +1,36 @@ +{ + "dataset_id": "c2", + "model": "ctgan", + "inputs": { + "train_csv": { + "path": "/data/jialinzhang/SynthesizePipeline-server/DatasetNew/c2/c2-train.csv", + "exists": true, + "size": 42948, + "sha256": "17bc560fa96bd00fb3b526e1e65bc91210b701d0d0a4e8bb9b4c5196cab56def" + }, + "val_csv": { + "path": "/data/jialinzhang/SynthesizePipeline-server/DatasetNew/c2/c2-val.csv", + "exists": true, + "size": 5349, + "sha256": "61e565eca62e65a7dccd9d51039a3170413379e10fc494e25870e7c4294863c9" + }, + "test_csv": { + "path": "/data/jialinzhang/SynthesizePipeline-server/DatasetNew/c2/c2-test.csv", + "exists": true, + "size": 5448, + "sha256": "cbcbb062a1faf5fa44b66c80532baa229e05b94fc42137269761e6c6d84af20a" + }, + "profile_json": { + "path": "/data/jialinzhang/SynthesizePipeline-server/DatasetNew/artifacts/data_core/tabular/c2/c2-dataset_profile.json", + "exists": true, + "size": 3240, + "sha256": "526b7163b2076c93c0bf4638438081ee8a6907065d5b608faa40d1a3dbc2a27b" + }, + "contract_json": { + "path": "/data/jialinzhang/SynthesizePipeline-server/DatasetNew/artifacts/data_core/tabular/c2/c2-dataset_contract_v1.json", + "exists": true, + "size": 3731, + "sha256": "fb595a876054c2ee9b4e10cfe83a5691588de1d25466cbb9d473c18ad3604009" + } + } +} \ No newline at end of file diff --git a/timecost/c2/ctgan/ctgan-c2-20260504_152521/models_150epochs/ctgan_150epochs.pt b/timecost/c2/ctgan/ctgan-c2-20260504_152521/models_150epochs/ctgan_150epochs.pt new file mode 100644 index 0000000000000000000000000000000000000000..464b111ee5a641b1c23c4ed76cc24c07febeefd0 --- /dev/null +++ b/timecost/c2/ctgan/ctgan-c2-20260504_152521/models_150epochs/ctgan_150epochs.pt @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:e03e4717b96ceed0bbec1c8771604a12d35d2af80e6233323dea1b055eec9ae8 +size 336739 diff --git a/timecost/c2/ctgan/ctgan-c2-20260504_152521/models_150epochs/train_20260504_152521.log b/timecost/c2/ctgan/ctgan-c2-20260504_152521/models_150epochs/train_20260504_152521.log new file mode 100644 index 0000000000000000000000000000000000000000..776c175a578fb21419b6be68f41b2a4305893332 --- /dev/null +++ b/timecost/c2/ctgan/ctgan-c2-20260504_152521/models_150epochs/train_20260504_152521.log @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:a3af72c614a2bedcd9896ce46da7ab7b8947307ee05fdababfa63c84c3265b34 +size 29431 diff --git a/timecost/c2/ctgan/ctgan-c2-20260504_152521/public_gate/normalized_schema_snapshot.json b/timecost/c2/ctgan/ctgan-c2-20260504_152521/public_gate/normalized_schema_snapshot.json new file mode 100644 index 0000000000000000000000000000000000000000..689b1d00d96508e44ba40e58dc4560e19afc2b3b --- /dev/null +++ b/timecost/c2/ctgan/ctgan-c2-20260504_152521/public_gate/normalized_schema_snapshot.json @@ -0,0 +1,144 @@ +{ + "dataset_id": "c2", + "target_column": "class", + "task_type": "classification", + "columns": [ + { + "name": "buying", + "role": "feature", + "semantic_type": "categorical", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 4, + "unique_ratio": 0.002894, + "example_values": [ + "vhigh", + "med", + "high", + "low" + ] + } + }, + { + "name": "maint", + "role": "feature", + "semantic_type": "categorical", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 4, + "unique_ratio": 0.002894, + "example_values": [ + "vhigh", + "low", + "med", + "high" + ] + } + }, + { + "name": "doors", + "role": "feature", + "semantic_type": "categorical", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 4, + "unique_ratio": 0.002894, + "example_values": [ + "2", + "5more", + "3", + "4" + ] + } + }, + { + "name": "persons", + "role": "feature", + "semantic_type": "categorical", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 3, + "unique_ratio": 0.002171, + "example_values": [ + "2", + "4", + "more" + ] + } + }, + { + "name": "lug_boot", + "role": "feature", + "semantic_type": "categorical", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 3, + "unique_ratio": 0.002171, + "example_values": [ + "small", + "big", + "med" + ] + } + }, + { + "name": "safety", + "role": "feature", + "semantic_type": "categorical", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 3, + "unique_ratio": 0.002171, + "example_values": [ + "low", + "high", + "med" + ] + } + }, + { + "name": "class", + "role": "target", + "semantic_type": "categorical", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 4, + "unique_ratio": 0.002894, + "example_values": [ + "unacc", + "good", + "acc", + "vgood" + ] + } + } + ] +} \ No newline at end of file diff --git a/timecost/c2/ctgan/ctgan-c2-20260504_152521/public_gate/public_gate_report.json b/timecost/c2/ctgan/ctgan-c2-20260504_152521/public_gate/public_gate_report.json new file mode 100644 index 0000000000000000000000000000000000000000..2e4cdcb2a4e28e40d59b17a83e773f622b7636a5 --- /dev/null +++ b/timecost/c2/ctgan/ctgan-c2-20260504_152521/public_gate/public_gate_report.json @@ -0,0 +1,37 @@ +{ + "dataset_id": "c2", + "status": "pass", + "checks": [ + { + "check_id": "PG001_csv_parse_ok", + "status": "pass" + }, + { + "check_id": "PG002_split_header_consistent", + "status": "pass" + }, + { + "check_id": "PG003_profile_header_match", + "status": "pass" + }, + { + "check_id": "PG004_missing_token_normalized", + "status": "pass" + }, + { + "check_id": "PG005_semantic_type_validated", + "status": "pass" + }, + { + "check_id": "PG006_target_defined_and_valid", + "status": "pass" + } + ], + "target_column": "class", + "task_type": "classification", + "input_splits": { + "train": "/data/jialinzhang/SynthesizePipeline-server/DatasetNew/c2/c2-train.csv", + "val": "/data/jialinzhang/SynthesizePipeline-server/DatasetNew/c2/c2-val.csv", + "test": "/data/jialinzhang/SynthesizePipeline-server/DatasetNew/c2/c2-test.csv" + } +} \ No newline at end of file diff --git a/timecost/c2/ctgan/ctgan-c2-20260504_152521/public_gate/staged_input_manifest.json b/timecost/c2/ctgan/ctgan-c2-20260504_152521/public_gate/staged_input_manifest.json new file mode 100644 index 0000000000000000000000000000000000000000..66e850014a3d2c262c9f9ba6b2ea2fbd0b4277a8 --- /dev/null +++ b/timecost/c2/ctgan/ctgan-c2-20260504_152521/public_gate/staged_input_manifest.json @@ -0,0 +1,149 @@ +{ + "dataset_id": "c2", + "target_column": "class", + "task_type": "classification", + "train_csv": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/c2/ctgan/ctgan-c2-20260504_152521/staged/public/train.csv", + "val_csv": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/c2/ctgan/ctgan-c2-20260504_152521/staged/public/val.csv", + "test_csv": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/c2/ctgan/ctgan-c2-20260504_152521/staged/public/test.csv", + "features_json": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/c2/ctgan/ctgan-c2-20260504_152521/staged/public/staged_features.json", + "public_gate_report": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/c2/ctgan/ctgan-c2-20260504_152521/public_gate/public_gate_report.json", + "column_schema": [ + { + "name": "buying", + "role": "feature", + "semantic_type": "categorical", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 4, + "unique_ratio": 0.002894, + "example_values": [ + "vhigh", + "med", + "high", + "low" + ] + } + }, + { + "name": "maint", + "role": "feature", + "semantic_type": "categorical", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 4, + "unique_ratio": 0.002894, + "example_values": [ + "vhigh", + "low", + "med", + "high" + ] + } + }, + { + "name": "doors", + "role": "feature", + "semantic_type": "categorical", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 4, + "unique_ratio": 0.002894, + "example_values": [ + "2", + "5more", + "3", + "4" + ] + } + }, + { + "name": "persons", + "role": "feature", + "semantic_type": "categorical", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 3, + "unique_ratio": 0.002171, + "example_values": [ + "2", + "4", + "more" + ] + } + }, + { + "name": "lug_boot", + "role": "feature", + "semantic_type": "categorical", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 3, + "unique_ratio": 0.002171, + "example_values": [ + "small", + "big", + "med" + ] + } + }, + { + "name": "safety", + "role": "feature", + "semantic_type": "categorical", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 3, + "unique_ratio": 0.002171, + "example_values": [ + "low", + "high", + "med" + ] + } + }, + { + "name": "class", + "role": "target", + "semantic_type": "categorical", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 4, + "unique_ratio": 0.002894, + "example_values": [ + "unacc", + "good", + "acc", + "vgood" + ] + } + } + ] +} \ No newline at end of file diff --git a/timecost/c2/ctgan/ctgan-c2-20260504_152521/run_config.json b/timecost/c2/ctgan/ctgan-c2-20260504_152521/run_config.json new file mode 100644 index 0000000000000000000000000000000000000000..17ebaa88d95e65cb684c715dc2ce0a786db7eba5 --- /dev/null +++ b/timecost/c2/ctgan/ctgan-c2-20260504_152521/run_config.json @@ -0,0 +1,46 @@ +{ + "schema_version": 1, + "recorded_at": "2026-05-04T15:25:21", + "dataset_id": "c2", + "model": "ctgan", + "work_dir": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/c2/ctgan/ctgan-c2-20260504_152521", + "dataset_source_requested": "new", + "dataset_source_resolved": "new", + "cli_args": { + "model": "ctgan", + "dataset": "c2", + "dataset_source": "new", + "train": true, + "generate": true, + "num_rows": 0, + "epochs": null, + "output_dir": null, + "model_dir": null, + "work_dir": null, + "resume": false, + "no_stats": false + }, + "resolved": { + "num_rows": 1382, + "model_path": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/c2/ctgan/ctgan-c2-20260504_152521/models_150epochs/ctgan_150epochs.pt", + "output_csv": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/c2/ctgan/ctgan-c2-20260504_152521/ctgan-c2-1382-20260504_152602.csv" + }, + "input_artifacts": { + "public_gate_report": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/c2/ctgan/ctgan-c2-20260504_152521/public_gate/public_gate_report.json", + "public_manifest": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/c2/ctgan/ctgan-c2-20260504_152521/public_gate/staged_input_manifest.json", + "model_manifest": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/c2/ctgan/ctgan-c2-20260504_152521/staged/ctgan/model_input_manifest.json", + "train_csv": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/c2/ctgan/ctgan-c2-20260504_152521/staged/public/train.csv", + "features_json": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/c2/ctgan/ctgan-c2-20260504_152521/staged/public/staged_features.json", + "target_column": "class", + "task_type": "classification" + }, + "env_overrides": { + "BENCHMARK_CTGAN_GPUS": "device=3", + "CTGAN_BATCH_SIZE": "128", + "CTGAN_DEFAULT_EPOCHS": "150", + "CTGAN_DISCRIMINATOR_DIMS": "64,64", + "CTGAN_EMBEDDING_DIM": "32", + "CTGAN_GENERATOR_DIMS": "64,64", + "CTGAN_PAC": "1" + } +} \ No newline at end of file diff --git a/timecost/c2/ctgan/ctgan-c2-20260504_152521/runtime_result.json b/timecost/c2/ctgan/ctgan-c2-20260504_152521/runtime_result.json new file mode 100644 index 0000000000000000000000000000000000000000..5441404826fb87c542aeb6ba3fe39ddb39ed7d05 --- /dev/null +++ b/timecost/c2/ctgan/ctgan-c2-20260504_152521/runtime_result.json @@ -0,0 +1,27 @@ +{ + "dataset_id": "c2", + "model": "ctgan", + "run_id": "ctgan-c2-20260504_152521", + "public_gate_status": "pass", + "adapter_ready_status": "pass", + "train_status": "success", + "generate_status": "success", + "reason_code": null, + "reason_detail": null, + "artifacts": { + "synthetic_csv": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/c2/ctgan/ctgan-c2-20260504_152521/ctgan-c2-1382-20260504_152602.csv", + "model_path": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/c2/ctgan/ctgan-c2-20260504_152521/models_150epochs/ctgan_150epochs.pt" + }, + "timings": { + "train": { + "started_at": "2026-05-04T15:25:21", + "ended_at": "2026-05-04T15:26:02", + "duration_sec": 40.385 + }, + "generate": { + "started_at": "2026-05-04T15:26:02", + "ended_at": "2026-05-04T15:26:07", + "duration_sec": 5.523 + } + } +} \ No newline at end of file diff --git a/timecost/c2/ctgan/ctgan-c2-20260504_152521/staged/ctgan/adapter_report.json b/timecost/c2/ctgan/ctgan-c2-20260504_152521/staged/ctgan/adapter_report.json new file mode 100644 index 0000000000000000000000000000000000000000..0b097136f4896f9d5deee418a166899244ba88a2 --- /dev/null +++ b/timecost/c2/ctgan/ctgan-c2-20260504_152521/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-Benchmark-trainonly-v1/c2/ctgan/ctgan-c2-20260504_152521/staged/ctgan/model_input_manifest.json" +} \ No newline at end of file diff --git a/timecost/c2/ctgan/ctgan-c2-20260504_152521/staged/ctgan/adapter_transforms_applied.json b/timecost/c2/ctgan/ctgan-c2-20260504_152521/staged/ctgan/adapter_transforms_applied.json new file mode 100644 index 0000000000000000000000000000000000000000..0637a088a01e8ddab3bf3fa98dbe804cbde1a0dc --- /dev/null +++ b/timecost/c2/ctgan/ctgan-c2-20260504_152521/staged/ctgan/adapter_transforms_applied.json @@ -0,0 +1 @@ +[] \ No newline at end of file diff --git a/timecost/c2/ctgan/ctgan-c2-20260504_152521/staged/ctgan/model_input_manifest.json b/timecost/c2/ctgan/ctgan-c2-20260504_152521/staged/ctgan/model_input_manifest.json new file mode 100644 index 0000000000000000000000000000000000000000..9e0cdf8d1c63e1c6f50e3ef553b75abd8d288f85 --- /dev/null +++ b/timecost/c2/ctgan/ctgan-c2-20260504_152521/staged/ctgan/model_input_manifest.json @@ -0,0 +1,151 @@ +{ + "dataset_id": "c2", + "model": "ctgan", + "target_column": "class", + "task_type": "classification", + "column_schema": [ + { + "name": "buying", + "role": "feature", + "semantic_type": "categorical", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 4, + "unique_ratio": 0.002894, + "example_values": [ + "vhigh", + "med", + "high", + "low" + ] + } + }, + { + "name": "maint", + "role": "feature", + "semantic_type": "categorical", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 4, + "unique_ratio": 0.002894, + "example_values": [ + "vhigh", + "low", + "med", + "high" + ] + } + }, + { + "name": "doors", + "role": "feature", + "semantic_type": "categorical", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 4, + "unique_ratio": 0.002894, + "example_values": [ + "2", + "5more", + "3", + "4" + ] + } + }, + { + "name": "persons", + "role": "feature", + "semantic_type": "categorical", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 3, + "unique_ratio": 0.002171, + "example_values": [ + "2", + "4", + "more" + ] + } + }, + { + "name": "lug_boot", + "role": "feature", + "semantic_type": "categorical", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 3, + "unique_ratio": 0.002171, + "example_values": [ + "small", + "big", + "med" + ] + } + }, + { + "name": "safety", + "role": "feature", + "semantic_type": "categorical", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 3, + "unique_ratio": 0.002171, + "example_values": [ + "low", + "high", + "med" + ] + } + }, + { + "name": "class", + "role": "target", + "semantic_type": "categorical", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 4, + "unique_ratio": 0.002894, + "example_values": [ + "unacc", + "good", + "acc", + "vgood" + ] + } + } + ], + "public_manifest": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/c2/ctgan/ctgan-c2-20260504_152521/public_gate/staged_input_manifest.json", + "train_csv": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/c2/ctgan/ctgan-c2-20260504_152521/staged/public/train.csv", + "val_csv": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/c2/ctgan/ctgan-c2-20260504_152521/staged/public/val.csv", + "test_csv": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/c2/ctgan/ctgan-c2-20260504_152521/staged/public/test.csv", + "features_json": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/c2/ctgan/ctgan-c2-20260504_152521/staged/public/staged_features.json", + "public_gate_report": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/c2/ctgan/ctgan-c2-20260504_152521/public_gate/public_gate_report.json" +} \ No newline at end of file diff --git a/timecost/c2/ctgan/ctgan-c2-20260504_152521/staged/public/staged_features.json b/timecost/c2/ctgan/ctgan-c2-20260504_152521/staged/public/staged_features.json new file mode 100644 index 0000000000000000000000000000000000000000..61783861dd5de501592f76acb0469cf3f3b2622a --- /dev/null +++ b/timecost/c2/ctgan/ctgan-c2-20260504_152521/staged/public/staged_features.json @@ -0,0 +1,37 @@ +[ + { + "feature_name": "buying", + "data_type": "categorical", + "is_target": false + }, + { + "feature_name": "maint", + "data_type": "categorical", + "is_target": false + }, + { + "feature_name": "doors", + "data_type": "categorical", + "is_target": false + }, + { + "feature_name": "persons", + "data_type": "categorical", + "is_target": false + }, + { + "feature_name": "lug_boot", + "data_type": "categorical", + "is_target": false + }, + { + "feature_name": "safety", + "data_type": "categorical", + "is_target": false + }, + { + "feature_name": "class", + "data_type": "categorical", + "is_target": true + } +] \ No newline at end of file diff --git a/timecost/c2/ctgan/ctgan-c2-20260504_152521/staged/public/test.csv b/timecost/c2/ctgan/ctgan-c2-20260504_152521/staged/public/test.csv new file mode 100644 index 0000000000000000000000000000000000000000..392a0d7189a34d8f13ecf20a99d64b03230d517c --- /dev/null +++ b/timecost/c2/ctgan/ctgan-c2-20260504_152521/staged/public/test.csv @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:b48114a7d0bc5bd9a07920f903c8d4aba8bf98bf2a66a050da03588b0245ca73 +size 5273 diff --git a/timecost/c2/ctgan/ctgan-c2-20260504_152521/staged/public/train.csv b/timecost/c2/ctgan/ctgan-c2-20260504_152521/staged/public/train.csv new file mode 100644 index 0000000000000000000000000000000000000000..da4f4d55134eebc0e51157d0d467536371db1484 --- /dev/null +++ b/timecost/c2/ctgan/ctgan-c2-20260504_152521/staged/public/train.csv @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:4aed00c2c2b3f88a55a7ebff31b2e1b5e0e32fb0a7267e0b9d2779cd23e434dd +size 41565 diff --git a/timecost/c2/ctgan/ctgan-c2-20260504_152521/staged/public/val.csv b/timecost/c2/ctgan/ctgan-c2-20260504_152521/staged/public/val.csv new file mode 100644 index 0000000000000000000000000000000000000000..af8caf7ee42524188534a3daf32996dc491952d9 --- /dev/null +++ b/timecost/c2/ctgan/ctgan-c2-20260504_152521/staged/public/val.csv @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:26e90c1170a57a14c05832ac88027722b1f3848f9662c7c09ef7c93dcba4cc01 +size 5176 diff --git a/timecost/c2/ctgan/ctgan-c2-20260504_162240/_ctgan_generate.py b/timecost/c2/ctgan/ctgan-c2-20260504_162240/_ctgan_generate.py new file mode 100644 index 0000000000000000000000000000000000000000..4a513b6c64f8729a0592980505e361f0ede7a9ea --- /dev/null +++ b/timecost/c2/ctgan/ctgan-c2-20260504_162240/_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-Benchmark-trainonly-v1/c2/ctgan/ctgan-c2-20260504_162240/models_100epochs/ctgan_100epochs.pt") +total = 1382 +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-Benchmark-trainonly-v1/c2/ctgan/ctgan-c2-20260504_162240/ctgan-c2-1382-20260504_162321.csv", index=False) +print("[CTGAN] Generated", total, "rows in", len(parts), "chunks ->", "/work/output-Benchmark-trainonly-v1/c2/ctgan/ctgan-c2-20260504_162240/ctgan-c2-1382-20260504_162321.csv") \ No newline at end of file diff --git a/timecost/c2/ctgan/ctgan-c2-20260504_162240/_ctgan_train.py b/timecost/c2/ctgan/ctgan-c2-20260504_162240/_ctgan_train.py new file mode 100644 index 0000000000000000000000000000000000000000..dd7ddb7bea931b54947b0e3d88527c9ad137178d --- /dev/null +++ b/timecost/c2/ctgan/ctgan-c2-20260504_162240/_ctgan_train.py @@ -0,0 +1,17 @@ +import pandas as pd +from ctgan.synthesizers.ctgan import CTGAN + +data = pd.read_csv("/work/output-Benchmark-trainonly-v1/c2/ctgan/ctgan-c2-20260504_162240/staged/public/train.csv") +discrete_columns = ['buying', 'maint', 'doors', 'persons', 'lug_boot', 'safety', 'class'] +model = CTGAN( + embedding_dim=16, + generator_dim=(32, 32), + discriminator_dim=(32, 32), + batch_size=80, + pac=5, + epochs=100, + verbose=True, +) +model.fit(data, discrete_columns) +model.save("/work/output-Benchmark-trainonly-v1/c2/ctgan/ctgan-c2-20260504_162240/models_100epochs/ctgan_100epochs.pt") +print("[CTGAN] Saved model ->", "/work/output-Benchmark-trainonly-v1/c2/ctgan/ctgan-c2-20260504_162240/models_100epochs/ctgan_100epochs.pt") \ No newline at end of file diff --git a/timecost/c2/ctgan/ctgan-c2-20260504_162240/ctgan-c2-1382-20260504_162321.csv b/timecost/c2/ctgan/ctgan-c2-20260504_162240/ctgan-c2-1382-20260504_162321.csv new file mode 100644 index 0000000000000000000000000000000000000000..4c2bcd6913d6fc848e66bb9fdda340a1e05554b7 --- /dev/null +++ b/timecost/c2/ctgan/ctgan-c2-20260504_162240/ctgan-c2-1382-20260504_162321.csv @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:06f4bd2740e2d92884bded619bc47b8652f747c537f543c463da26b4ecc3b2e9 +size 41563 diff --git a/timecost/c2/ctgan/ctgan-c2-20260504_162240/ctgan_metadata.json b/timecost/c2/ctgan/ctgan-c2-20260504_162240/ctgan_metadata.json new file mode 100644 index 0000000000000000000000000000000000000000..183d627ebc98e89233655ec98c9dcbc528c4c328 --- /dev/null +++ b/timecost/c2/ctgan/ctgan-c2-20260504_162240/ctgan_metadata.json @@ -0,0 +1,32 @@ +{ + "columns": [ + { + "name": "buying", + "type": "categorical" + }, + { + "name": "maint", + "type": "categorical" + }, + { + "name": "doors", + "type": "categorical" + }, + { + "name": "persons", + "type": "categorical" + }, + { + "name": "lug_boot", + "type": "categorical" + }, + { + "name": "safety", + "type": "categorical" + }, + { + "name": "class", + "type": "categorical" + } + ] +} \ No newline at end of file diff --git a/timecost/c2/ctgan/ctgan-c2-20260504_162240/gen_20260504_162321.log b/timecost/c2/ctgan/ctgan-c2-20260504_162240/gen_20260504_162321.log new file mode 100644 index 0000000000000000000000000000000000000000..121e2d02ec34b94bf50346ead1a3d5eb919fd14f --- /dev/null +++ b/timecost/c2/ctgan/ctgan-c2-20260504_162240/gen_20260504_162321.log @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:4e9a8bd298558c0d0c5121a8f68fd97cdcf80e5e349de95203e772ebf7d6a0d7 +size 297 diff --git a/timecost/c2/ctgan/ctgan-c2-20260504_162240/input_snapshot.json b/timecost/c2/ctgan/ctgan-c2-20260504_162240/input_snapshot.json new file mode 100644 index 0000000000000000000000000000000000000000..e70c6b5c1d7c7363c5970bab5156163411d211e7 --- /dev/null +++ b/timecost/c2/ctgan/ctgan-c2-20260504_162240/input_snapshot.json @@ -0,0 +1,36 @@ +{ + "dataset_id": "c2", + "model": "ctgan", + "inputs": { + "train_csv": { + "path": "/data/jialinzhang/SynthesizePipeline-server/DatasetNew/c2/c2-train.csv", + "exists": true, + "size": 42948, + "sha256": "17bc560fa96bd00fb3b526e1e65bc91210b701d0d0a4e8bb9b4c5196cab56def" + }, + "val_csv": { + "path": "/data/jialinzhang/SynthesizePipeline-server/DatasetNew/c2/c2-val.csv", + "exists": true, + "size": 5349, + "sha256": "61e565eca62e65a7dccd9d51039a3170413379e10fc494e25870e7c4294863c9" + }, + "test_csv": { + "path": "/data/jialinzhang/SynthesizePipeline-server/DatasetNew/c2/c2-test.csv", + "exists": true, + "size": 5448, + "sha256": "cbcbb062a1faf5fa44b66c80532baa229e05b94fc42137269761e6c6d84af20a" + }, + "profile_json": { + "path": "/data/jialinzhang/SynthesizePipeline-server/DatasetNew/artifacts/data_core/tabular/c2/c2-dataset_profile.json", + "exists": true, + "size": 3240, + "sha256": "526b7163b2076c93c0bf4638438081ee8a6907065d5b608faa40d1a3dbc2a27b" + }, + "contract_json": { + "path": "/data/jialinzhang/SynthesizePipeline-server/DatasetNew/artifacts/data_core/tabular/c2/c2-dataset_contract_v1.json", + "exists": true, + "size": 3731, + "sha256": "fb595a876054c2ee9b4e10cfe83a5691588de1d25466cbb9d473c18ad3604009" + } + } +} \ No newline at end of file diff --git a/timecost/c2/ctgan/ctgan-c2-20260504_162240/models_100epochs/ctgan_100epochs.pt b/timecost/c2/ctgan/ctgan-c2-20260504_162240/models_100epochs/ctgan_100epochs.pt new file mode 100644 index 0000000000000000000000000000000000000000..185ce48c7b3861004a1ae943ced45428837221e1 --- /dev/null +++ b/timecost/c2/ctgan/ctgan-c2-20260504_162240/models_100epochs/ctgan_100epochs.pt @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:89001f5bc9d51b23712eb3bb71f85ef655ff710707b825e7ae6ac1d586cc395b +size 294947 diff --git a/timecost/c2/ctgan/ctgan-c2-20260504_162240/models_100epochs/train_20260504_162240.log b/timecost/c2/ctgan/ctgan-c2-20260504_162240/models_100epochs/train_20260504_162240.log new file mode 100644 index 0000000000000000000000000000000000000000..296e5914be6b77b0dc29b560dbcc0daa497eab65 --- /dev/null +++ b/timecost/c2/ctgan/ctgan-c2-20260504_162240/models_100epochs/train_20260504_162240.log @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:a80e86a687df24cbf5cef0f767d6091a7728594215f9fdc8bbf3e4c508252b43 +size 20165 diff --git a/timecost/c2/ctgan/ctgan-c2-20260504_162240/public_gate/normalized_schema_snapshot.json b/timecost/c2/ctgan/ctgan-c2-20260504_162240/public_gate/normalized_schema_snapshot.json new file mode 100644 index 0000000000000000000000000000000000000000..689b1d00d96508e44ba40e58dc4560e19afc2b3b --- /dev/null +++ b/timecost/c2/ctgan/ctgan-c2-20260504_162240/public_gate/normalized_schema_snapshot.json @@ -0,0 +1,144 @@ +{ + "dataset_id": "c2", + "target_column": "class", + "task_type": "classification", + "columns": [ + { + "name": "buying", + "role": "feature", + "semantic_type": "categorical", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 4, + "unique_ratio": 0.002894, + "example_values": [ + "vhigh", + "med", + "high", + "low" + ] + } + }, + { + "name": "maint", + "role": "feature", + "semantic_type": "categorical", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 4, + "unique_ratio": 0.002894, + "example_values": [ + "vhigh", + "low", + "med", + "high" + ] + } + }, + { + "name": "doors", + "role": "feature", + "semantic_type": "categorical", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 4, + "unique_ratio": 0.002894, + "example_values": [ + "2", + "5more", + "3", + "4" + ] + } + }, + { + "name": "persons", + "role": "feature", + "semantic_type": "categorical", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 3, + "unique_ratio": 0.002171, + "example_values": [ + "2", + "4", + "more" + ] + } + }, + { + "name": "lug_boot", + "role": "feature", + "semantic_type": "categorical", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 3, + "unique_ratio": 0.002171, + "example_values": [ + "small", + "big", + "med" + ] + } + }, + { + "name": "safety", + "role": "feature", + "semantic_type": "categorical", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 3, + "unique_ratio": 0.002171, + "example_values": [ + "low", + "high", + "med" + ] + } + }, + { + "name": "class", + "role": "target", + "semantic_type": "categorical", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 4, + "unique_ratio": 0.002894, + "example_values": [ + "unacc", + "good", + "acc", + "vgood" + ] + } + } + ] +} \ No newline at end of file diff --git a/timecost/c2/ctgan/ctgan-c2-20260504_162240/public_gate/public_gate_report.json b/timecost/c2/ctgan/ctgan-c2-20260504_162240/public_gate/public_gate_report.json new file mode 100644 index 0000000000000000000000000000000000000000..2e4cdcb2a4e28e40d59b17a83e773f622b7636a5 --- /dev/null +++ b/timecost/c2/ctgan/ctgan-c2-20260504_162240/public_gate/public_gate_report.json @@ -0,0 +1,37 @@ +{ + "dataset_id": "c2", + "status": "pass", + "checks": [ + { + "check_id": "PG001_csv_parse_ok", + "status": "pass" + }, + { + "check_id": "PG002_split_header_consistent", + "status": "pass" + }, + { + "check_id": "PG003_profile_header_match", + "status": "pass" + }, + { + "check_id": "PG004_missing_token_normalized", + "status": "pass" + }, + { + "check_id": "PG005_semantic_type_validated", + "status": "pass" + }, + { + "check_id": "PG006_target_defined_and_valid", + "status": "pass" + } + ], + "target_column": "class", + "task_type": "classification", + "input_splits": { + "train": "/data/jialinzhang/SynthesizePipeline-server/DatasetNew/c2/c2-train.csv", + "val": "/data/jialinzhang/SynthesizePipeline-server/DatasetNew/c2/c2-val.csv", + "test": "/data/jialinzhang/SynthesizePipeline-server/DatasetNew/c2/c2-test.csv" + } +} \ No newline at end of file diff --git a/timecost/c2/ctgan/ctgan-c2-20260504_162240/public_gate/staged_input_manifest.json b/timecost/c2/ctgan/ctgan-c2-20260504_162240/public_gate/staged_input_manifest.json new file mode 100644 index 0000000000000000000000000000000000000000..3e04926e55a12a23c91b123f0fdf38caa78c98fe --- /dev/null +++ b/timecost/c2/ctgan/ctgan-c2-20260504_162240/public_gate/staged_input_manifest.json @@ -0,0 +1,149 @@ +{ + "dataset_id": "c2", + "target_column": "class", + "task_type": "classification", + "train_csv": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/c2/ctgan/ctgan-c2-20260504_162240/staged/public/train.csv", + "val_csv": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/c2/ctgan/ctgan-c2-20260504_162240/staged/public/val.csv", + "test_csv": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/c2/ctgan/ctgan-c2-20260504_162240/staged/public/test.csv", + "features_json": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/c2/ctgan/ctgan-c2-20260504_162240/staged/public/staged_features.json", + "public_gate_report": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/c2/ctgan/ctgan-c2-20260504_162240/public_gate/public_gate_report.json", + "column_schema": [ + { + "name": "buying", + "role": "feature", + "semantic_type": "categorical", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 4, + "unique_ratio": 0.002894, + "example_values": [ + "vhigh", + "med", + "high", + "low" + ] + } + }, + { + "name": "maint", + "role": "feature", + "semantic_type": "categorical", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 4, + "unique_ratio": 0.002894, + "example_values": [ + "vhigh", + "low", + "med", + "high" + ] + } + }, + { + "name": "doors", + "role": "feature", + "semantic_type": "categorical", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 4, + "unique_ratio": 0.002894, + "example_values": [ + "2", + "5more", + "3", + "4" + ] + } + }, + { + "name": "persons", + "role": "feature", + "semantic_type": "categorical", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 3, + "unique_ratio": 0.002171, + "example_values": [ + "2", + "4", + "more" + ] + } + }, + { + "name": "lug_boot", + "role": "feature", + "semantic_type": "categorical", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 3, + "unique_ratio": 0.002171, + "example_values": [ + "small", + "big", + "med" + ] + } + }, + { + "name": "safety", + "role": "feature", + "semantic_type": "categorical", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 3, + "unique_ratio": 0.002171, + "example_values": [ + "low", + "high", + "med" + ] + } + }, + { + "name": "class", + "role": "target", + "semantic_type": "categorical", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 4, + "unique_ratio": 0.002894, + "example_values": [ + "unacc", + "good", + "acc", + "vgood" + ] + } + } + ] +} \ No newline at end of file diff --git a/timecost/c2/ctgan/ctgan-c2-20260504_162240/run_config.json b/timecost/c2/ctgan/ctgan-c2-20260504_162240/run_config.json new file mode 100644 index 0000000000000000000000000000000000000000..7e77ec9db818a984c777289e51c82c6925a25d92 --- /dev/null +++ b/timecost/c2/ctgan/ctgan-c2-20260504_162240/run_config.json @@ -0,0 +1,46 @@ +{ + "schema_version": 1, + "recorded_at": "2026-05-04T16:22:40", + "dataset_id": "c2", + "model": "ctgan", + "work_dir": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/c2/ctgan/ctgan-c2-20260504_162240", + "dataset_source_requested": "new", + "dataset_source_resolved": "new", + "cli_args": { + "model": "ctgan", + "dataset": "c2", + "dataset_source": "new", + "train": true, + "generate": true, + "num_rows": 0, + "epochs": null, + "output_dir": null, + "model_dir": null, + "work_dir": null, + "resume": false, + "no_stats": false + }, + "resolved": { + "num_rows": 1382, + "model_path": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/c2/ctgan/ctgan-c2-20260504_162240/models_100epochs/ctgan_100epochs.pt", + "output_csv": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/c2/ctgan/ctgan-c2-20260504_162240/ctgan-c2-1382-20260504_162321.csv" + }, + "input_artifacts": { + "public_gate_report": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/c2/ctgan/ctgan-c2-20260504_162240/public_gate/public_gate_report.json", + "public_manifest": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/c2/ctgan/ctgan-c2-20260504_162240/public_gate/staged_input_manifest.json", + "model_manifest": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/c2/ctgan/ctgan-c2-20260504_162240/staged/ctgan/model_input_manifest.json", + "train_csv": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/c2/ctgan/ctgan-c2-20260504_162240/staged/public/train.csv", + "features_json": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/c2/ctgan/ctgan-c2-20260504_162240/staged/public/staged_features.json", + "target_column": "class", + "task_type": "classification" + }, + "env_overrides": { + "BENCHMARK_CTGAN_GPUS": "device=3", + "CTGAN_BATCH_SIZE": "80", + "CTGAN_DEFAULT_EPOCHS": "100", + "CTGAN_DISCRIMINATOR_DIMS": "32,32", + "CTGAN_EMBEDDING_DIM": "16", + "CTGAN_GENERATOR_DIMS": "32,32", + "CTGAN_PAC": "5" + } +} \ No newline at end of file diff --git a/timecost/c2/ctgan/ctgan-c2-20260504_162240/runtime_result.json b/timecost/c2/ctgan/ctgan-c2-20260504_162240/runtime_result.json new file mode 100644 index 0000000000000000000000000000000000000000..c943130baae43b3a0a41eb9a2f1e7079a453a38e --- /dev/null +++ b/timecost/c2/ctgan/ctgan-c2-20260504_162240/runtime_result.json @@ -0,0 +1,27 @@ +{ + "dataset_id": "c2", + "model": "ctgan", + "run_id": "ctgan-c2-20260504_162240", + "public_gate_status": "pass", + "adapter_ready_status": "pass", + "train_status": "success", + "generate_status": "success", + "reason_code": null, + "reason_detail": null, + "artifacts": { + "synthetic_csv": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/c2/ctgan/ctgan-c2-20260504_162240/ctgan-c2-1382-20260504_162321.csv", + "model_path": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/c2/ctgan/ctgan-c2-20260504_162240/models_100epochs/ctgan_100epochs.pt" + }, + "timings": { + "train": { + "started_at": "2026-05-04T16:22:40", + "ended_at": "2026-05-04T16:23:21", + "duration_sec": 41.673 + }, + "generate": { + "started_at": "2026-05-04T16:23:21", + "ended_at": "2026-05-04T16:23:27", + "duration_sec": 5.382 + } + } +} \ No newline at end of file diff --git a/timecost/c2/ctgan/ctgan-c2-20260504_162240/staged/ctgan/adapter_report.json b/timecost/c2/ctgan/ctgan-c2-20260504_162240/staged/ctgan/adapter_report.json new file mode 100644 index 0000000000000000000000000000000000000000..a84ffcef8e6e4db6b0ae03f2de9ce8b993bf33d0 --- /dev/null +++ b/timecost/c2/ctgan/ctgan-c2-20260504_162240/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-Benchmark-trainonly-v1/c2/ctgan/ctgan-c2-20260504_162240/staged/ctgan/model_input_manifest.json" +} \ No newline at end of file diff --git a/timecost/c2/ctgan/ctgan-c2-20260504_162240/staged/ctgan/adapter_transforms_applied.json b/timecost/c2/ctgan/ctgan-c2-20260504_162240/staged/ctgan/adapter_transforms_applied.json new file mode 100644 index 0000000000000000000000000000000000000000..0637a088a01e8ddab3bf3fa98dbe804cbde1a0dc --- /dev/null +++ b/timecost/c2/ctgan/ctgan-c2-20260504_162240/staged/ctgan/adapter_transforms_applied.json @@ -0,0 +1 @@ +[] \ No newline at end of file diff --git a/timecost/c2/ctgan/ctgan-c2-20260504_162240/staged/ctgan/model_input_manifest.json b/timecost/c2/ctgan/ctgan-c2-20260504_162240/staged/ctgan/model_input_manifest.json new file mode 100644 index 0000000000000000000000000000000000000000..b8bed5508038be911353f57dfc64f5c3fd221056 --- /dev/null +++ b/timecost/c2/ctgan/ctgan-c2-20260504_162240/staged/ctgan/model_input_manifest.json @@ -0,0 +1,151 @@ +{ + "dataset_id": "c2", + "model": "ctgan", + "target_column": "class", + "task_type": "classification", + "column_schema": [ + { + "name": "buying", + "role": "feature", + "semantic_type": "categorical", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 4, + "unique_ratio": 0.002894, + "example_values": [ + "vhigh", + "med", + "high", + "low" + ] + } + }, + { + "name": "maint", + "role": "feature", + "semantic_type": "categorical", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 4, + "unique_ratio": 0.002894, + "example_values": [ + "vhigh", + "low", + "med", + "high" + ] + } + }, + { + "name": "doors", + "role": "feature", + "semantic_type": "categorical", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 4, + "unique_ratio": 0.002894, + "example_values": [ + "2", + "5more", + "3", + "4" + ] + } + }, + { + "name": "persons", + "role": "feature", + "semantic_type": "categorical", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 3, + "unique_ratio": 0.002171, + "example_values": [ + "2", + "4", + "more" + ] + } + }, + { + "name": "lug_boot", + "role": "feature", + "semantic_type": "categorical", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 3, + "unique_ratio": 0.002171, + "example_values": [ + "small", + "big", + "med" + ] + } + }, + { + "name": "safety", + "role": "feature", + "semantic_type": "categorical", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 3, + "unique_ratio": 0.002171, + "example_values": [ + "low", + "high", + "med" + ] + } + }, + { + "name": "class", + "role": "target", + "semantic_type": "categorical", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 4, + "unique_ratio": 0.002894, + "example_values": [ + "unacc", + "good", + "acc", + "vgood" + ] + } + } + ], + "public_manifest": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/c2/ctgan/ctgan-c2-20260504_162240/public_gate/staged_input_manifest.json", + "train_csv": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/c2/ctgan/ctgan-c2-20260504_162240/staged/public/train.csv", + "val_csv": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/c2/ctgan/ctgan-c2-20260504_162240/staged/public/val.csv", + "test_csv": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/c2/ctgan/ctgan-c2-20260504_162240/staged/public/test.csv", + "features_json": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/c2/ctgan/ctgan-c2-20260504_162240/staged/public/staged_features.json", + "public_gate_report": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/c2/ctgan/ctgan-c2-20260504_162240/public_gate/public_gate_report.json" +} \ No newline at end of file diff --git a/timecost/c2/ctgan/ctgan-c2-20260504_162240/staged/public/staged_features.json b/timecost/c2/ctgan/ctgan-c2-20260504_162240/staged/public/staged_features.json new file mode 100644 index 0000000000000000000000000000000000000000..61783861dd5de501592f76acb0469cf3f3b2622a --- /dev/null +++ b/timecost/c2/ctgan/ctgan-c2-20260504_162240/staged/public/staged_features.json @@ -0,0 +1,37 @@ +[ + { + "feature_name": "buying", + "data_type": "categorical", + "is_target": false + }, + { + "feature_name": "maint", + "data_type": "categorical", + "is_target": false + }, + { + "feature_name": "doors", + "data_type": "categorical", + "is_target": false + }, + { + "feature_name": "persons", + "data_type": "categorical", + "is_target": false + }, + { + "feature_name": "lug_boot", + "data_type": "categorical", + "is_target": false + }, + { + "feature_name": "safety", + "data_type": "categorical", + "is_target": false + }, + { + "feature_name": "class", + "data_type": "categorical", + "is_target": true + } +] \ No newline at end of file diff --git a/timecost/c2/ctgan/ctgan-c2-20260504_162240/staged/public/test.csv b/timecost/c2/ctgan/ctgan-c2-20260504_162240/staged/public/test.csv new file mode 100644 index 0000000000000000000000000000000000000000..392a0d7189a34d8f13ecf20a99d64b03230d517c --- /dev/null +++ b/timecost/c2/ctgan/ctgan-c2-20260504_162240/staged/public/test.csv @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:b48114a7d0bc5bd9a07920f903c8d4aba8bf98bf2a66a050da03588b0245ca73 +size 5273 diff --git a/timecost/c2/ctgan/ctgan-c2-20260504_162240/staged/public/train.csv b/timecost/c2/ctgan/ctgan-c2-20260504_162240/staged/public/train.csv new file mode 100644 index 0000000000000000000000000000000000000000..da4f4d55134eebc0e51157d0d467536371db1484 --- /dev/null +++ b/timecost/c2/ctgan/ctgan-c2-20260504_162240/staged/public/train.csv @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:4aed00c2c2b3f88a55a7ebff31b2e1b5e0e32fb0a7267e0b9d2779cd23e434dd +size 41565 diff --git a/timecost/c2/ctgan/ctgan-c2-20260504_162240/staged/public/val.csv b/timecost/c2/ctgan/ctgan-c2-20260504_162240/staged/public/val.csv new file mode 100644 index 0000000000000000000000000000000000000000..af8caf7ee42524188534a3daf32996dc491952d9 --- /dev/null +++ b/timecost/c2/ctgan/ctgan-c2-20260504_162240/staged/public/val.csv @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:26e90c1170a57a14c05832ac88027722b1f3848f9662c7c09ef7c93dcba4cc01 +size 5176 diff --git a/timecost/c2/ctgan/ctgan-c2-20260504_162339/_ctgan_generate.py b/timecost/c2/ctgan/ctgan-c2-20260504_162339/_ctgan_generate.py new file mode 100644 index 0000000000000000000000000000000000000000..ff855eb274e019fb91b6476423543290aaf540c3 --- /dev/null +++ b/timecost/c2/ctgan/ctgan-c2-20260504_162339/_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-Benchmark-trainonly-v1/c2/ctgan/ctgan-c2-20260504_162339/models_200epochs/ctgan_200epochs.pt") +total = 1382 +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-Benchmark-trainonly-v1/c2/ctgan/ctgan-c2-20260504_162339/ctgan-c2-1382-20260504_162437.csv", index=False) +print("[CTGAN] Generated", total, "rows in", len(parts), "chunks ->", "/work/output-Benchmark-trainonly-v1/c2/ctgan/ctgan-c2-20260504_162339/ctgan-c2-1382-20260504_162437.csv") \ No newline at end of file diff --git a/timecost/c2/ctgan/ctgan-c2-20260504_162339/_ctgan_train.py b/timecost/c2/ctgan/ctgan-c2-20260504_162339/_ctgan_train.py new file mode 100644 index 0000000000000000000000000000000000000000..e0dd700a1ac2533023d1f50e947dbe32044a8098 --- /dev/null +++ b/timecost/c2/ctgan/ctgan-c2-20260504_162339/_ctgan_train.py @@ -0,0 +1,17 @@ +import pandas as pd +from ctgan.synthesizers.ctgan import CTGAN + +data = pd.read_csv("/work/output-Benchmark-trainonly-v1/c2/ctgan/ctgan-c2-20260504_162339/staged/public/train.csv") +discrete_columns = ['buying', 'maint', 'doors', 'persons', 'lug_boot', 'safety', 'class'] +model = CTGAN( + embedding_dim=32, + generator_dim=(64, 64), + discriminator_dim=(64, 64), + batch_size=100, + pac=10, + epochs=200, + verbose=True, +) +model.fit(data, discrete_columns) +model.save("/work/output-Benchmark-trainonly-v1/c2/ctgan/ctgan-c2-20260504_162339/models_200epochs/ctgan_200epochs.pt") +print("[CTGAN] Saved model ->", "/work/output-Benchmark-trainonly-v1/c2/ctgan/ctgan-c2-20260504_162339/models_200epochs/ctgan_200epochs.pt") \ No newline at end of file diff --git a/timecost/c2/ctgan/ctgan-c2-20260504_162339/ctgan-c2-1382-20260504_162437.csv b/timecost/c2/ctgan/ctgan-c2-20260504_162339/ctgan-c2-1382-20260504_162437.csv new file mode 100644 index 0000000000000000000000000000000000000000..475fb7eee9738c341bde5529d780b2427ba4b094 --- /dev/null +++ b/timecost/c2/ctgan/ctgan-c2-20260504_162339/ctgan-c2-1382-20260504_162437.csv @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:dcd29852524ef13d0009da75adaf69c0d09dc640b8fbb13ba387045198c5c725 +size 40940 diff --git a/timecost/c2/ctgan/ctgan-c2-20260504_162339/ctgan_metadata.json b/timecost/c2/ctgan/ctgan-c2-20260504_162339/ctgan_metadata.json new file mode 100644 index 0000000000000000000000000000000000000000..183d627ebc98e89233655ec98c9dcbc528c4c328 --- /dev/null +++ b/timecost/c2/ctgan/ctgan-c2-20260504_162339/ctgan_metadata.json @@ -0,0 +1,32 @@ +{ + "columns": [ + { + "name": "buying", + "type": "categorical" + }, + { + "name": "maint", + "type": "categorical" + }, + { + "name": "doors", + "type": "categorical" + }, + { + "name": "persons", + "type": "categorical" + }, + { + "name": "lug_boot", + "type": "categorical" + }, + { + "name": "safety", + "type": "categorical" + }, + { + "name": "class", + "type": "categorical" + } + ] +} \ No newline at end of file diff --git a/timecost/c2/ctgan/ctgan-c2-20260504_162339/gen_20260504_162437.log b/timecost/c2/ctgan/ctgan-c2-20260504_162339/gen_20260504_162437.log new file mode 100644 index 0000000000000000000000000000000000000000..fc73a61c7203640af7a492332124986abd5d10c0 --- /dev/null +++ b/timecost/c2/ctgan/ctgan-c2-20260504_162339/gen_20260504_162437.log @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:fa41d337e65206a8c960582d8745c3fa02cfd860fe74c08c6c3f3d519666af42 +size 297 diff --git a/timecost/c2/ctgan/ctgan-c2-20260504_162339/input_snapshot.json b/timecost/c2/ctgan/ctgan-c2-20260504_162339/input_snapshot.json new file mode 100644 index 0000000000000000000000000000000000000000..e70c6b5c1d7c7363c5970bab5156163411d211e7 --- /dev/null +++ b/timecost/c2/ctgan/ctgan-c2-20260504_162339/input_snapshot.json @@ -0,0 +1,36 @@ +{ + "dataset_id": "c2", + "model": "ctgan", + "inputs": { + "train_csv": { + "path": "/data/jialinzhang/SynthesizePipeline-server/DatasetNew/c2/c2-train.csv", + "exists": true, + "size": 42948, + "sha256": "17bc560fa96bd00fb3b526e1e65bc91210b701d0d0a4e8bb9b4c5196cab56def" + }, + "val_csv": { + "path": "/data/jialinzhang/SynthesizePipeline-server/DatasetNew/c2/c2-val.csv", + "exists": true, + "size": 5349, + "sha256": "61e565eca62e65a7dccd9d51039a3170413379e10fc494e25870e7c4294863c9" + }, + "test_csv": { + "path": "/data/jialinzhang/SynthesizePipeline-server/DatasetNew/c2/c2-test.csv", + "exists": true, + "size": 5448, + "sha256": "cbcbb062a1faf5fa44b66c80532baa229e05b94fc42137269761e6c6d84af20a" + }, + "profile_json": { + "path": "/data/jialinzhang/SynthesizePipeline-server/DatasetNew/artifacts/data_core/tabular/c2/c2-dataset_profile.json", + "exists": true, + "size": 3240, + "sha256": "526b7163b2076c93c0bf4638438081ee8a6907065d5b608faa40d1a3dbc2a27b" + }, + "contract_json": { + "path": "/data/jialinzhang/SynthesizePipeline-server/DatasetNew/artifacts/data_core/tabular/c2/c2-dataset_contract_v1.json", + "exists": true, + "size": 3731, + "sha256": "fb595a876054c2ee9b4e10cfe83a5691588de1d25466cbb9d473c18ad3604009" + } + } +} \ No newline at end of file diff --git a/timecost/c2/ctgan/ctgan-c2-20260504_162339/models_200epochs/ctgan_200epochs.pt b/timecost/c2/ctgan/ctgan-c2-20260504_162339/models_200epochs/ctgan_200epochs.pt new file mode 100644 index 0000000000000000000000000000000000000000..c1729bc2cff9e82169bbe4211dae27af200fe92d --- /dev/null +++ b/timecost/c2/ctgan/ctgan-c2-20260504_162339/models_200epochs/ctgan_200epochs.pt @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:3e731fdc58e37596134fe5bcee815a30e38f087c1aa3dc2944f679c1f1549cdb +size 338275 diff --git a/timecost/c2/ctgan/ctgan-c2-20260504_162339/models_200epochs/train_20260504_162339.log b/timecost/c2/ctgan/ctgan-c2-20260504_162339/models_200epochs/train_20260504_162339.log new file mode 100644 index 0000000000000000000000000000000000000000..80e17b806b94f465ac519b8881a2409fcf01ee0b --- /dev/null +++ b/timecost/c2/ctgan/ctgan-c2-20260504_162339/models_200epochs/train_20260504_162339.log @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:94b3afa2766398447e2c41d92e271ce3a826d7c72cc942e24d400d387a03beb0 +size 38648 diff --git a/timecost/c2/ctgan/ctgan-c2-20260504_162339/public_gate/normalized_schema_snapshot.json b/timecost/c2/ctgan/ctgan-c2-20260504_162339/public_gate/normalized_schema_snapshot.json new file mode 100644 index 0000000000000000000000000000000000000000..689b1d00d96508e44ba40e58dc4560e19afc2b3b --- /dev/null +++ b/timecost/c2/ctgan/ctgan-c2-20260504_162339/public_gate/normalized_schema_snapshot.json @@ -0,0 +1,144 @@ +{ + "dataset_id": "c2", + "target_column": "class", + "task_type": "classification", + "columns": [ + { + "name": "buying", + "role": "feature", + "semantic_type": "categorical", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 4, + "unique_ratio": 0.002894, + "example_values": [ + "vhigh", + "med", + "high", + "low" + ] + } + }, + { + "name": "maint", + "role": "feature", + "semantic_type": "categorical", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 4, + "unique_ratio": 0.002894, + "example_values": [ + "vhigh", + "low", + "med", + "high" + ] + } + }, + { + "name": "doors", + "role": "feature", + "semantic_type": "categorical", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 4, + "unique_ratio": 0.002894, + "example_values": [ + "2", + "5more", + "3", + "4" + ] + } + }, + { + "name": "persons", + "role": "feature", + "semantic_type": "categorical", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 3, + "unique_ratio": 0.002171, + "example_values": [ + "2", + "4", + "more" + ] + } + }, + { + "name": "lug_boot", + "role": "feature", + "semantic_type": "categorical", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 3, + "unique_ratio": 0.002171, + "example_values": [ + "small", + "big", + "med" + ] + } + }, + { + "name": "safety", + "role": "feature", + "semantic_type": "categorical", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 3, + "unique_ratio": 0.002171, + "example_values": [ + "low", + "high", + "med" + ] + } + }, + { + "name": "class", + "role": "target", + "semantic_type": "categorical", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 4, + "unique_ratio": 0.002894, + "example_values": [ + "unacc", + "good", + "acc", + "vgood" + ] + } + } + ] +} \ No newline at end of file diff --git a/timecost/c2/ctgan/ctgan-c2-20260504_162339/public_gate/public_gate_report.json b/timecost/c2/ctgan/ctgan-c2-20260504_162339/public_gate/public_gate_report.json new file mode 100644 index 0000000000000000000000000000000000000000..2e4cdcb2a4e28e40d59b17a83e773f622b7636a5 --- /dev/null +++ b/timecost/c2/ctgan/ctgan-c2-20260504_162339/public_gate/public_gate_report.json @@ -0,0 +1,37 @@ +{ + "dataset_id": "c2", + "status": "pass", + "checks": [ + { + "check_id": "PG001_csv_parse_ok", + "status": "pass" + }, + { + "check_id": "PG002_split_header_consistent", + "status": "pass" + }, + { + "check_id": "PG003_profile_header_match", + "status": "pass" + }, + { + "check_id": "PG004_missing_token_normalized", + "status": "pass" + }, + { + "check_id": "PG005_semantic_type_validated", + "status": "pass" + }, + { + "check_id": "PG006_target_defined_and_valid", + "status": "pass" + } + ], + "target_column": "class", + "task_type": "classification", + "input_splits": { + "train": "/data/jialinzhang/SynthesizePipeline-server/DatasetNew/c2/c2-train.csv", + "val": "/data/jialinzhang/SynthesizePipeline-server/DatasetNew/c2/c2-val.csv", + "test": "/data/jialinzhang/SynthesizePipeline-server/DatasetNew/c2/c2-test.csv" + } +} \ No newline at end of file diff --git a/timecost/c2/ctgan/ctgan-c2-20260504_162339/public_gate/staged_input_manifest.json b/timecost/c2/ctgan/ctgan-c2-20260504_162339/public_gate/staged_input_manifest.json new file mode 100644 index 0000000000000000000000000000000000000000..ed2127908350c287e7b5c03a577bcba2ffe54ddb --- /dev/null +++ b/timecost/c2/ctgan/ctgan-c2-20260504_162339/public_gate/staged_input_manifest.json @@ -0,0 +1,149 @@ +{ + "dataset_id": "c2", + "target_column": "class", + "task_type": "classification", + "train_csv": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/c2/ctgan/ctgan-c2-20260504_162339/staged/public/train.csv", + "val_csv": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/c2/ctgan/ctgan-c2-20260504_162339/staged/public/val.csv", + "test_csv": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/c2/ctgan/ctgan-c2-20260504_162339/staged/public/test.csv", + "features_json": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/c2/ctgan/ctgan-c2-20260504_162339/staged/public/staged_features.json", + "public_gate_report": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/c2/ctgan/ctgan-c2-20260504_162339/public_gate/public_gate_report.json", + "column_schema": [ + { + "name": "buying", + "role": "feature", + "semantic_type": "categorical", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 4, + "unique_ratio": 0.002894, + "example_values": [ + "vhigh", + "med", + "high", + "low" + ] + } + }, + { + "name": "maint", + "role": "feature", + "semantic_type": "categorical", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 4, + "unique_ratio": 0.002894, + "example_values": [ + "vhigh", + "low", + "med", + "high" + ] + } + }, + { + "name": "doors", + "role": "feature", + "semantic_type": "categorical", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 4, + "unique_ratio": 0.002894, + "example_values": [ + "2", + "5more", + "3", + "4" + ] + } + }, + { + "name": "persons", + "role": "feature", + "semantic_type": "categorical", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 3, + "unique_ratio": 0.002171, + "example_values": [ + "2", + "4", + "more" + ] + } + }, + { + "name": "lug_boot", + "role": "feature", + "semantic_type": "categorical", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 3, + "unique_ratio": 0.002171, + "example_values": [ + "small", + "big", + "med" + ] + } + }, + { + "name": "safety", + "role": "feature", + "semantic_type": "categorical", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 3, + "unique_ratio": 0.002171, + "example_values": [ + "low", + "high", + "med" + ] + } + }, + { + "name": "class", + "role": "target", + "semantic_type": "categorical", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 4, + "unique_ratio": 0.002894, + "example_values": [ + "unacc", + "good", + "acc", + "vgood" + ] + } + } + ] +} \ No newline at end of file diff --git a/timecost/c2/ctgan/ctgan-c2-20260504_162339/run_config.json b/timecost/c2/ctgan/ctgan-c2-20260504_162339/run_config.json new file mode 100644 index 0000000000000000000000000000000000000000..1c6884477d3f20bea1a3d689207b894b3a522c28 --- /dev/null +++ b/timecost/c2/ctgan/ctgan-c2-20260504_162339/run_config.json @@ -0,0 +1,46 @@ +{ + "schema_version": 1, + "recorded_at": "2026-05-04T16:23:39", + "dataset_id": "c2", + "model": "ctgan", + "work_dir": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/c2/ctgan/ctgan-c2-20260504_162339", + "dataset_source_requested": "new", + "dataset_source_resolved": "new", + "cli_args": { + "model": "ctgan", + "dataset": "c2", + "dataset_source": "new", + "train": true, + "generate": true, + "num_rows": 0, + "epochs": null, + "output_dir": null, + "model_dir": null, + "work_dir": null, + "resume": false, + "no_stats": false + }, + "resolved": { + "num_rows": 1382, + "model_path": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/c2/ctgan/ctgan-c2-20260504_162339/models_200epochs/ctgan_200epochs.pt", + "output_csv": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/c2/ctgan/ctgan-c2-20260504_162339/ctgan-c2-1382-20260504_162437.csv" + }, + "input_artifacts": { + "public_gate_report": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/c2/ctgan/ctgan-c2-20260504_162339/public_gate/public_gate_report.json", + "public_manifest": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/c2/ctgan/ctgan-c2-20260504_162339/public_gate/staged_input_manifest.json", + "model_manifest": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/c2/ctgan/ctgan-c2-20260504_162339/staged/ctgan/model_input_manifest.json", + "train_csv": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/c2/ctgan/ctgan-c2-20260504_162339/staged/public/train.csv", + "features_json": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/c2/ctgan/ctgan-c2-20260504_162339/staged/public/staged_features.json", + "target_column": "class", + "task_type": "classification" + }, + "env_overrides": { + "BENCHMARK_CTGAN_GPUS": "device=3", + "CTGAN_BATCH_SIZE": "100", + "CTGAN_DEFAULT_EPOCHS": "200", + "CTGAN_DISCRIMINATOR_DIMS": "64,64", + "CTGAN_EMBEDDING_DIM": "32", + "CTGAN_GENERATOR_DIMS": "64,64", + "CTGAN_PAC": "10" + } +} \ No newline at end of file diff --git a/timecost/c2/ctgan/ctgan-c2-20260504_162339/runtime_result.json b/timecost/c2/ctgan/ctgan-c2-20260504_162339/runtime_result.json new file mode 100644 index 0000000000000000000000000000000000000000..7b60a25f52ff5134761945aa34333c69f75663d0 --- /dev/null +++ b/timecost/c2/ctgan/ctgan-c2-20260504_162339/runtime_result.json @@ -0,0 +1,27 @@ +{ + "dataset_id": "c2", + "model": "ctgan", + "run_id": "ctgan-c2-20260504_162339", + "public_gate_status": "pass", + "adapter_ready_status": "pass", + "train_status": "success", + "generate_status": "success", + "reason_code": null, + "reason_detail": null, + "artifacts": { + "synthetic_csv": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/c2/ctgan/ctgan-c2-20260504_162339/ctgan-c2-1382-20260504_162437.csv", + "model_path": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/c2/ctgan/ctgan-c2-20260504_162339/models_200epochs/ctgan_200epochs.pt" + }, + "timings": { + "train": { + "started_at": "2026-05-04T16:23:39", + "ended_at": "2026-05-04T16:24:37", + "duration_sec": 57.631 + }, + "generate": { + "started_at": "2026-05-04T16:24:37", + "ended_at": "2026-05-04T16:24:42", + "duration_sec": 5.235 + } + } +} \ No newline at end of file diff --git a/timecost/c2/ctgan/ctgan-c2-20260504_162339/staged/ctgan/adapter_report.json b/timecost/c2/ctgan/ctgan-c2-20260504_162339/staged/ctgan/adapter_report.json new file mode 100644 index 0000000000000000000000000000000000000000..4c71e56b64844e27c80124db363f5c163b8af547 --- /dev/null +++ b/timecost/c2/ctgan/ctgan-c2-20260504_162339/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-Benchmark-trainonly-v1/c2/ctgan/ctgan-c2-20260504_162339/staged/ctgan/model_input_manifest.json" +} \ No newline at end of file diff --git a/timecost/c2/ctgan/ctgan-c2-20260504_162339/staged/ctgan/adapter_transforms_applied.json b/timecost/c2/ctgan/ctgan-c2-20260504_162339/staged/ctgan/adapter_transforms_applied.json new file mode 100644 index 0000000000000000000000000000000000000000..0637a088a01e8ddab3bf3fa98dbe804cbde1a0dc --- /dev/null +++ b/timecost/c2/ctgan/ctgan-c2-20260504_162339/staged/ctgan/adapter_transforms_applied.json @@ -0,0 +1 @@ +[] \ No newline at end of file diff --git a/timecost/c2/ctgan/ctgan-c2-20260504_162339/staged/ctgan/model_input_manifest.json b/timecost/c2/ctgan/ctgan-c2-20260504_162339/staged/ctgan/model_input_manifest.json new file mode 100644 index 0000000000000000000000000000000000000000..578cbcb2eaf976baa0f04ce2aaf4ef92ca0996d1 --- /dev/null +++ b/timecost/c2/ctgan/ctgan-c2-20260504_162339/staged/ctgan/model_input_manifest.json @@ -0,0 +1,151 @@ +{ + "dataset_id": "c2", + "model": "ctgan", + "target_column": "class", + "task_type": "classification", + "column_schema": [ + { + "name": "buying", + "role": "feature", + "semantic_type": "categorical", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 4, + "unique_ratio": 0.002894, + "example_values": [ + "vhigh", + "med", + "high", + "low" + ] + } + }, + { + "name": "maint", + "role": "feature", + "semantic_type": "categorical", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 4, + "unique_ratio": 0.002894, + "example_values": [ + "vhigh", + "low", + "med", + "high" + ] + } + }, + { + "name": "doors", + "role": "feature", + "semantic_type": "categorical", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 4, + "unique_ratio": 0.002894, + "example_values": [ + "2", + "5more", + "3", + "4" + ] + } + }, + { + "name": "persons", + "role": "feature", + "semantic_type": "categorical", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 3, + "unique_ratio": 0.002171, + "example_values": [ + "2", + "4", + "more" + ] + } + }, + { + "name": "lug_boot", + "role": "feature", + "semantic_type": "categorical", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 3, + "unique_ratio": 0.002171, + "example_values": [ + "small", + "big", + "med" + ] + } + }, + { + "name": "safety", + "role": "feature", + "semantic_type": "categorical", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 3, + "unique_ratio": 0.002171, + "example_values": [ + "low", + "high", + "med" + ] + } + }, + { + "name": "class", + "role": "target", + "semantic_type": "categorical", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 4, + "unique_ratio": 0.002894, + "example_values": [ + "unacc", + "good", + "acc", + "vgood" + ] + } + } + ], + "public_manifest": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/c2/ctgan/ctgan-c2-20260504_162339/public_gate/staged_input_manifest.json", + "train_csv": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/c2/ctgan/ctgan-c2-20260504_162339/staged/public/train.csv", + "val_csv": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/c2/ctgan/ctgan-c2-20260504_162339/staged/public/val.csv", + "test_csv": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/c2/ctgan/ctgan-c2-20260504_162339/staged/public/test.csv", + "features_json": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/c2/ctgan/ctgan-c2-20260504_162339/staged/public/staged_features.json", + "public_gate_report": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/c2/ctgan/ctgan-c2-20260504_162339/public_gate/public_gate_report.json" +} \ No newline at end of file diff --git a/timecost/c2/ctgan/ctgan-c2-20260504_162339/staged/public/staged_features.json b/timecost/c2/ctgan/ctgan-c2-20260504_162339/staged/public/staged_features.json new file mode 100644 index 0000000000000000000000000000000000000000..61783861dd5de501592f76acb0469cf3f3b2622a --- /dev/null +++ b/timecost/c2/ctgan/ctgan-c2-20260504_162339/staged/public/staged_features.json @@ -0,0 +1,37 @@ +[ + { + "feature_name": "buying", + "data_type": "categorical", + "is_target": false + }, + { + "feature_name": "maint", + "data_type": "categorical", + "is_target": false + }, + { + "feature_name": "doors", + "data_type": "categorical", + "is_target": false + }, + { + "feature_name": "persons", + "data_type": "categorical", + "is_target": false + }, + { + "feature_name": "lug_boot", + "data_type": "categorical", + "is_target": false + }, + { + "feature_name": "safety", + "data_type": "categorical", + "is_target": false + }, + { + "feature_name": "class", + "data_type": "categorical", + "is_target": true + } +] \ No newline at end of file diff --git a/timecost/c2/ctgan/ctgan-c2-20260504_162339/staged/public/test.csv b/timecost/c2/ctgan/ctgan-c2-20260504_162339/staged/public/test.csv new file mode 100644 index 0000000000000000000000000000000000000000..392a0d7189a34d8f13ecf20a99d64b03230d517c --- /dev/null +++ b/timecost/c2/ctgan/ctgan-c2-20260504_162339/staged/public/test.csv @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:b48114a7d0bc5bd9a07920f903c8d4aba8bf98bf2a66a050da03588b0245ca73 +size 5273 diff --git a/timecost/c2/ctgan/ctgan-c2-20260504_162339/staged/public/train.csv b/timecost/c2/ctgan/ctgan-c2-20260504_162339/staged/public/train.csv new file mode 100644 index 0000000000000000000000000000000000000000..da4f4d55134eebc0e51157d0d467536371db1484 --- /dev/null +++ b/timecost/c2/ctgan/ctgan-c2-20260504_162339/staged/public/train.csv @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:4aed00c2c2b3f88a55a7ebff31b2e1b5e0e32fb0a7267e0b9d2779cd23e434dd +size 41565 diff --git a/timecost/c2/ctgan/ctgan-c2-20260504_162339/staged/public/val.csv b/timecost/c2/ctgan/ctgan-c2-20260504_162339/staged/public/val.csv new file mode 100644 index 0000000000000000000000000000000000000000..af8caf7ee42524188534a3daf32996dc491952d9 --- /dev/null +++ b/timecost/c2/ctgan/ctgan-c2-20260504_162339/staged/public/val.csv @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:26e90c1170a57a14c05832ac88027722b1f3848f9662c7c09ef7c93dcba4cc01 +size 5176 diff --git a/timecost/c2/forestdiffusion/forest-c2-20260501_180312/_fd_X_host.npy b/timecost/c2/forestdiffusion/forest-c2-20260501_180312/_fd_X_host.npy new file mode 100644 index 0000000000000000000000000000000000000000..2c631eb05814d7aa116816e9799b9c52f8c0e566 --- /dev/null +++ b/timecost/c2/forestdiffusion/forest-c2-20260501_180312/_fd_X_host.npy @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:260745c93bbaaa167bd761bd653a194f7b25b477b3929a24e343741a3c4fa280 +size 38824 diff --git a/timecost/c2/forestdiffusion/forest-c2-20260501_180312/_fd_gen.py b/timecost/c2/forestdiffusion/forest-c2-20260501_180312/_fd_gen.py new file mode 100644 index 0000000000000000000000000000000000000000..d2b42922010bc7ec07265645dfb0e1d6cf86fca4 --- /dev/null +++ b/timecost/c2/forestdiffusion/forest-c2-20260501_180312/_fd_gen.py @@ -0,0 +1,8 @@ + +import joblib, pandas as pd +m, meta = joblib.load(r'/work/output-Benchmark-trainonly-v1/c2/forestdiffusion/forest-c2-20260501_180312/forestdiffusion_model.joblib') +# generate:batch_size 为样本数 +arr = m.generate(batch_size=int(1382)) +df = pd.DataFrame(arr, columns=meta["column_names"]) +df.to_csv(r'/work/output-Benchmark-trainonly-v1/c2/forestdiffusion/forest-c2-20260501_180312/forest-c2-1382-20260501_180507.csv', index=False) +print("saved", len(df)) diff --git a/timecost/c2/forestdiffusion/forest-c2-20260501_180312/_fd_meta_host.json b/timecost/c2/forestdiffusion/forest-c2-20260501_180312/_fd_meta_host.json new file mode 100644 index 0000000000000000000000000000000000000000..be467ac019d08a03e8ba5c0d436f59170db78786 --- /dev/null +++ b/timecost/c2/forestdiffusion/forest-c2-20260501_180312/_fd_meta_host.json @@ -0,0 +1 @@ +{"column_names": ["buying", "maint", "doors", "persons", "lug_boot", "safety", "class"], "cat_indexes": [0, 1, 2, 3, 4, 5]} \ No newline at end of file diff --git a/timecost/c2/forestdiffusion/forest-c2-20260501_180312/_fd_train.py b/timecost/c2/forestdiffusion/forest-c2-20260501_180312/_fd_train.py new file mode 100644 index 0000000000000000000000000000000000000000..c5db79a6adac10e5443c38df7e27a35dfe629363 --- /dev/null +++ b/timecost/c2/forestdiffusion/forest-c2-20260501_180312/_fd_train.py @@ -0,0 +1,28 @@ + +import shutil, json +shutil.copy(r'/work/output-Benchmark-trainonly-v1/c2/forestdiffusion/forest-c2-20260501_180312/_fd_X_host.npy', '/tmp/fd_X.npy') +with open(r'/work/output-Benchmark-trainonly-v1/c2/forestdiffusion/forest-c2-20260501_180312/_fd_meta_host.json') as f: + open('/tmp/fd_meta.json','w').write(f.read()) + +import numpy as np, joblib, json, os +from ForestDiffusion import ForestDiffusionModel +X = np.load("/tmp/fd_X.npy") +with open("/tmp/fd_meta.json") as f: + meta = json.load(f) +cat_indexes = meta["cat_indexes"] +print( + "[ForestDiffusion] train config: " + f"rows={X.shape[0]} cols={X.shape[1]} n_t=20 " + f"n_estimators=100 duplicate_K=20 n_jobs=2 " + f"xgb_verbosity=1", + flush=True, +) +m = ForestDiffusionModel( + X, n_t=20, n_estimators=100, duplicate_K=20, n_jobs=2, + model="xgboost", max_depth=6, tree_method="hist", cat_indexes=cat_indexes, + verbosity=1, +) +joblib.dump((m, meta), "/tmp/fd_model.joblib") +print("ForestDiffusion train OK") + +shutil.copy('/tmp/fd_model.joblib', r'/work/output-Benchmark-trainonly-v1/c2/forestdiffusion/forest-c2-20260501_180312/forestdiffusion_model.joblib') diff --git a/timecost/c2/forestdiffusion/forest-c2-20260501_180312/forest-c2-1382-20260501_180507.csv b/timecost/c2/forestdiffusion/forest-c2-20260501_180312/forest-c2-1382-20260501_180507.csv new file mode 100644 index 0000000000000000000000000000000000000000..f27ce02de22935a63bf9c44b36c1ec95abf22b11 --- /dev/null +++ b/timecost/c2/forestdiffusion/forest-c2-20260501_180312/forest-c2-1382-20260501_180507.csv @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:f05e6305ad9ae6a73ceedca6ac21485ca0252b55a3a2d9c86e9d14b6b1c566fb +size 57598 diff --git a/timecost/c2/forestdiffusion/forest-c2-20260501_180312/forestdiffusion_model.joblib b/timecost/c2/forestdiffusion/forest-c2-20260501_180312/forestdiffusion_model.joblib new file mode 100644 index 0000000000000000000000000000000000000000..91b82d488e3ca149c88205a6b539417bae30b551 --- /dev/null +++ b/timecost/c2/forestdiffusion/forest-c2-20260501_180312/forestdiffusion_model.joblib @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:29b1a2d549cebbb41f05e432a66310bee854f4001499e662ced2d5638d6a1a69 +size 144873431 diff --git a/timecost/c2/forestdiffusion/forest-c2-20260501_180312/gen_20260501_180507.log b/timecost/c2/forestdiffusion/forest-c2-20260501_180312/gen_20260501_180507.log new file mode 100644 index 0000000000000000000000000000000000000000..468dd563bf18965e5a15365cfbb1fbb8ecf3ca12 --- /dev/null +++ b/timecost/c2/forestdiffusion/forest-c2-20260501_180312/gen_20260501_180507.log @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:a0d15ba478b2b03e234e7ef665cd4a0179699fde3851b7149a2ec1bc47f81519 +size 294 diff --git a/timecost/c2/forestdiffusion/forest-c2-20260501_180312/input_snapshot.json b/timecost/c2/forestdiffusion/forest-c2-20260501_180312/input_snapshot.json new file mode 100644 index 0000000000000000000000000000000000000000..24ba74f272fb2c967af52a4ad4947955f45646ea --- /dev/null +++ b/timecost/c2/forestdiffusion/forest-c2-20260501_180312/input_snapshot.json @@ -0,0 +1,36 @@ +{ + "dataset_id": "c2", + "model": "forestdiffusion", + "inputs": { + "train_csv": { + "path": "/data/jialinzhang/SynthesizePipeline-server/DatasetNew/c2/c2-train.csv", + "exists": true, + "size": 42948, + "sha256": "17bc560fa96bd00fb3b526e1e65bc91210b701d0d0a4e8bb9b4c5196cab56def" + }, + "val_csv": { + "path": "/data/jialinzhang/SynthesizePipeline-server/DatasetNew/c2/c2-val.csv", + "exists": true, + "size": 5349, + "sha256": "61e565eca62e65a7dccd9d51039a3170413379e10fc494e25870e7c4294863c9" + }, + "test_csv": { + "path": "/data/jialinzhang/SynthesizePipeline-server/DatasetNew/c2/c2-test.csv", + "exists": true, + "size": 5448, + "sha256": "cbcbb062a1faf5fa44b66c80532baa229e05b94fc42137269761e6c6d84af20a" + }, + "profile_json": { + "path": "/data/jialinzhang/SynthesizePipeline-server/DatasetNew/artifacts/data_core/tabular/c2/c2-dataset_profile.json", + "exists": true, + "size": 3240, + "sha256": "526b7163b2076c93c0bf4638438081ee8a6907065d5b608faa40d1a3dbc2a27b" + }, + "contract_json": { + "path": "/data/jialinzhang/SynthesizePipeline-server/DatasetNew/artifacts/data_core/tabular/c2/c2-dataset_contract_v1.json", + "exists": true, + "size": 3731, + "sha256": "fb595a876054c2ee9b4e10cfe83a5691588de1d25466cbb9d473c18ad3604009" + } + } +} \ No newline at end of file diff --git a/timecost/c2/forestdiffusion/forest-c2-20260501_180312/models_fd/model.joblib b/timecost/c2/forestdiffusion/forest-c2-20260501_180312/models_fd/model.joblib new file mode 100644 index 0000000000000000000000000000000000000000..91b82d488e3ca149c88205a6b539417bae30b551 --- /dev/null +++ b/timecost/c2/forestdiffusion/forest-c2-20260501_180312/models_fd/model.joblib @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:29b1a2d549cebbb41f05e432a66310bee854f4001499e662ced2d5638d6a1a69 +size 144873431 diff --git a/timecost/c2/forestdiffusion/forest-c2-20260501_180312/public_gate/normalized_schema_snapshot.json b/timecost/c2/forestdiffusion/forest-c2-20260501_180312/public_gate/normalized_schema_snapshot.json new file mode 100644 index 0000000000000000000000000000000000000000..689b1d00d96508e44ba40e58dc4560e19afc2b3b --- /dev/null +++ b/timecost/c2/forestdiffusion/forest-c2-20260501_180312/public_gate/normalized_schema_snapshot.json @@ -0,0 +1,144 @@ +{ + "dataset_id": "c2", + "target_column": "class", + "task_type": "classification", + "columns": [ + { + "name": "buying", + "role": "feature", + "semantic_type": "categorical", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 4, + "unique_ratio": 0.002894, + "example_values": [ + "vhigh", + "med", + "high", + "low" + ] + } + }, + { + "name": "maint", + "role": "feature", + "semantic_type": "categorical", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 4, + "unique_ratio": 0.002894, + "example_values": [ + "vhigh", + "low", + "med", + "high" + ] + } + }, + { + "name": "doors", + "role": "feature", + "semantic_type": "categorical", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 4, + "unique_ratio": 0.002894, + "example_values": [ + "2", + "5more", + "3", + "4" + ] + } + }, + { + "name": "persons", + "role": "feature", + "semantic_type": "categorical", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 3, + "unique_ratio": 0.002171, + "example_values": [ + "2", + "4", + "more" + ] + } + }, + { + "name": "lug_boot", + "role": "feature", + "semantic_type": "categorical", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 3, + "unique_ratio": 0.002171, + "example_values": [ + "small", + "big", + "med" + ] + } + }, + { + "name": "safety", + "role": "feature", + "semantic_type": "categorical", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 3, + "unique_ratio": 0.002171, + "example_values": [ + "low", + "high", + "med" + ] + } + }, + { + "name": "class", + "role": "target", + "semantic_type": "categorical", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 4, + "unique_ratio": 0.002894, + "example_values": [ + "unacc", + "good", + "acc", + "vgood" + ] + } + } + ] +} \ No newline at end of file diff --git a/timecost/c2/forestdiffusion/forest-c2-20260501_180312/public_gate/public_gate_report.json b/timecost/c2/forestdiffusion/forest-c2-20260501_180312/public_gate/public_gate_report.json new file mode 100644 index 0000000000000000000000000000000000000000..2e4cdcb2a4e28e40d59b17a83e773f622b7636a5 --- /dev/null +++ b/timecost/c2/forestdiffusion/forest-c2-20260501_180312/public_gate/public_gate_report.json @@ -0,0 +1,37 @@ +{ + "dataset_id": "c2", + "status": "pass", + "checks": [ + { + "check_id": "PG001_csv_parse_ok", + "status": "pass" + }, + { + "check_id": "PG002_split_header_consistent", + "status": "pass" + }, + { + "check_id": "PG003_profile_header_match", + "status": "pass" + }, + { + "check_id": "PG004_missing_token_normalized", + "status": "pass" + }, + { + "check_id": "PG005_semantic_type_validated", + "status": "pass" + }, + { + "check_id": "PG006_target_defined_and_valid", + "status": "pass" + } + ], + "target_column": "class", + "task_type": "classification", + "input_splits": { + "train": "/data/jialinzhang/SynthesizePipeline-server/DatasetNew/c2/c2-train.csv", + "val": "/data/jialinzhang/SynthesizePipeline-server/DatasetNew/c2/c2-val.csv", + "test": "/data/jialinzhang/SynthesizePipeline-server/DatasetNew/c2/c2-test.csv" + } +} \ No newline at end of file diff --git a/timecost/c2/forestdiffusion/forest-c2-20260501_180312/public_gate/staged_input_manifest.json b/timecost/c2/forestdiffusion/forest-c2-20260501_180312/public_gate/staged_input_manifest.json new file mode 100644 index 0000000000000000000000000000000000000000..40f47ecbbad7297b9fcd90dfedc1405053e4ced0 --- /dev/null +++ b/timecost/c2/forestdiffusion/forest-c2-20260501_180312/public_gate/staged_input_manifest.json @@ -0,0 +1,149 @@ +{ + "dataset_id": "c2", + "target_column": "class", + "task_type": "classification", + "train_csv": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/c2/forestdiffusion/forest-c2-20260501_180312/staged/public/train.csv", + "val_csv": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/c2/forestdiffusion/forest-c2-20260501_180312/staged/public/val.csv", + "test_csv": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/c2/forestdiffusion/forest-c2-20260501_180312/staged/public/test.csv", + "features_json": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/c2/forestdiffusion/forest-c2-20260501_180312/staged/public/staged_features.json", + "public_gate_report": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/c2/forestdiffusion/forest-c2-20260501_180312/public_gate/public_gate_report.json", + "column_schema": [ + { + "name": "buying", + "role": "feature", + "semantic_type": "categorical", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 4, + "unique_ratio": 0.002894, + "example_values": [ + "vhigh", + "med", + "high", + "low" + ] + } + }, + { + "name": "maint", + "role": "feature", + "semantic_type": "categorical", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 4, + "unique_ratio": 0.002894, + "example_values": [ + "vhigh", + "low", + "med", + "high" + ] + } + }, + { + "name": "doors", + "role": "feature", + "semantic_type": "categorical", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 4, + "unique_ratio": 0.002894, + "example_values": [ + "2", + "5more", + "3", + "4" + ] + } + }, + { + "name": "persons", + "role": "feature", + "semantic_type": "categorical", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 3, + "unique_ratio": 0.002171, + "example_values": [ + "2", + "4", + "more" + ] + } + }, + { + "name": "lug_boot", + "role": "feature", + "semantic_type": "categorical", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 3, + "unique_ratio": 0.002171, + "example_values": [ + "small", + "big", + "med" + ] + } + }, + { + "name": "safety", + "role": "feature", + "semantic_type": "categorical", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 3, + "unique_ratio": 0.002171, + "example_values": [ + "low", + "high", + "med" + ] + } + }, + { + "name": "class", + "role": "target", + "semantic_type": "categorical", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 4, + "unique_ratio": 0.002894, + "example_values": [ + "unacc", + "good", + "acc", + "vgood" + ] + } + } + ] +} \ No newline at end of file diff --git a/timecost/c2/forestdiffusion/forest-c2-20260501_180312/runtime_result.json b/timecost/c2/forestdiffusion/forest-c2-20260501_180312/runtime_result.json new file mode 100644 index 0000000000000000000000000000000000000000..9f9aca5fb1e17470b7901b0431f423d151468e76 --- /dev/null +++ b/timecost/c2/forestdiffusion/forest-c2-20260501_180312/runtime_result.json @@ -0,0 +1,27 @@ +{ + "dataset_id": "c2", + "model": "forestdiffusion", + "run_id": "forest-c2-20260501_180312", + "public_gate_status": "pass", + "adapter_ready_status": "pass", + "train_status": "success", + "generate_status": "success", + "reason_code": null, + "reason_detail": null, + "artifacts": { + "synthetic_csv": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/c2/forestdiffusion/forest-c2-20260501_180312/forest-c2-1382-20260501_180507.csv", + "model_path": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/c2/forestdiffusion/forest-c2-20260501_180312/models_fd/model.joblib" + }, + "timings": { + "train": { + "started_at": "2026-05-01T18:03:12", + "ended_at": "2026-05-01T18:05:07", + "duration_sec": 115.491 + }, + "generate": { + "started_at": "2026-05-01T18:05:07", + "ended_at": "2026-05-01T18:05:11", + "duration_sec": 3.318 + } + } +} \ No newline at end of file diff --git a/timecost/c2/forestdiffusion/forest-c2-20260501_180312/staged/forestdiffusion/adapter_report.json b/timecost/c2/forestdiffusion/forest-c2-20260501_180312/staged/forestdiffusion/adapter_report.json new file mode 100644 index 0000000000000000000000000000000000000000..ec7aeeae55708b18f1d1c562035d44d71bb20fdd --- /dev/null +++ b/timecost/c2/forestdiffusion/forest-c2-20260501_180312/staged/forestdiffusion/adapter_report.json @@ -0,0 +1,7 @@ +{ + "adapter_ready_status": "pass", + "adapter_fail_reason_code": null, + "adapter_fail_detail": null, + "adapter_transforms_applied": [], + "model_input_manifest": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/c2/forestdiffusion/forest-c2-20260501_180312/staged/forestdiffusion/model_input_manifest.json" +} \ No newline at end of file diff --git a/timecost/c2/forestdiffusion/forest-c2-20260501_180312/staged/forestdiffusion/adapter_transforms_applied.json b/timecost/c2/forestdiffusion/forest-c2-20260501_180312/staged/forestdiffusion/adapter_transforms_applied.json new file mode 100644 index 0000000000000000000000000000000000000000..0637a088a01e8ddab3bf3fa98dbe804cbde1a0dc --- /dev/null +++ b/timecost/c2/forestdiffusion/forest-c2-20260501_180312/staged/forestdiffusion/adapter_transforms_applied.json @@ -0,0 +1 @@ +[] \ No newline at end of file diff --git a/timecost/c2/forestdiffusion/forest-c2-20260501_180312/staged/forestdiffusion/model_input_manifest.json b/timecost/c2/forestdiffusion/forest-c2-20260501_180312/staged/forestdiffusion/model_input_manifest.json new file mode 100644 index 0000000000000000000000000000000000000000..4b30987e72958757fbeada7685be33f1f997b068 --- /dev/null +++ b/timecost/c2/forestdiffusion/forest-c2-20260501_180312/staged/forestdiffusion/model_input_manifest.json @@ -0,0 +1,151 @@ +{ + "dataset_id": "c2", + "model": "forestdiffusion", + "target_column": "class", + "task_type": "classification", + "column_schema": [ + { + "name": "buying", + "role": "feature", + "semantic_type": "categorical", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 4, + "unique_ratio": 0.002894, + "example_values": [ + "vhigh", + "med", + "high", + "low" + ] + } + }, + { + "name": "maint", + "role": "feature", + "semantic_type": "categorical", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 4, + "unique_ratio": 0.002894, + "example_values": [ + "vhigh", + "low", + "med", + "high" + ] + } + }, + { + "name": "doors", + "role": "feature", + "semantic_type": "categorical", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 4, + "unique_ratio": 0.002894, + "example_values": [ + "2", + "5more", + "3", + "4" + ] + } + }, + { + "name": "persons", + "role": "feature", + "semantic_type": "categorical", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 3, + "unique_ratio": 0.002171, + "example_values": [ + "2", + "4", + "more" + ] + } + }, + { + "name": "lug_boot", + "role": "feature", + "semantic_type": "categorical", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 3, + "unique_ratio": 0.002171, + "example_values": [ + "small", + "big", + "med" + ] + } + }, + { + "name": "safety", + "role": "feature", + "semantic_type": "categorical", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 3, + "unique_ratio": 0.002171, + "example_values": [ + "low", + "high", + "med" + ] + } + }, + { + "name": "class", + "role": "target", + "semantic_type": "categorical", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 4, + "unique_ratio": 0.002894, + "example_values": [ + "unacc", + "good", + "acc", + "vgood" + ] + } + } + ], + "public_manifest": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/c2/forestdiffusion/forest-c2-20260501_180312/public_gate/staged_input_manifest.json", + "train_csv": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/c2/forestdiffusion/forest-c2-20260501_180312/staged/public/train.csv", + "val_csv": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/c2/forestdiffusion/forest-c2-20260501_180312/staged/public/val.csv", + "test_csv": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/c2/forestdiffusion/forest-c2-20260501_180312/staged/public/test.csv", + "features_json": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/c2/forestdiffusion/forest-c2-20260501_180312/staged/public/staged_features.json", + "public_gate_report": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/c2/forestdiffusion/forest-c2-20260501_180312/public_gate/public_gate_report.json" +} \ No newline at end of file diff --git a/timecost/c2/forestdiffusion/forest-c2-20260501_180312/staged/public/staged_features.json b/timecost/c2/forestdiffusion/forest-c2-20260501_180312/staged/public/staged_features.json new file mode 100644 index 0000000000000000000000000000000000000000..61783861dd5de501592f76acb0469cf3f3b2622a --- /dev/null +++ b/timecost/c2/forestdiffusion/forest-c2-20260501_180312/staged/public/staged_features.json @@ -0,0 +1,37 @@ +[ + { + "feature_name": "buying", + "data_type": "categorical", + "is_target": false + }, + { + "feature_name": "maint", + "data_type": "categorical", + "is_target": false + }, + { + "feature_name": "doors", + "data_type": "categorical", + "is_target": false + }, + { + "feature_name": "persons", + "data_type": "categorical", + "is_target": false + }, + { + "feature_name": "lug_boot", + "data_type": "categorical", + "is_target": false + }, + { + "feature_name": "safety", + "data_type": "categorical", + "is_target": false + }, + { + "feature_name": "class", + "data_type": "categorical", + "is_target": true + } +] \ No newline at end of file diff --git a/timecost/c2/forestdiffusion/forest-c2-20260501_180312/staged/public/test.csv b/timecost/c2/forestdiffusion/forest-c2-20260501_180312/staged/public/test.csv new file mode 100644 index 0000000000000000000000000000000000000000..392a0d7189a34d8f13ecf20a99d64b03230d517c --- /dev/null +++ b/timecost/c2/forestdiffusion/forest-c2-20260501_180312/staged/public/test.csv @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:b48114a7d0bc5bd9a07920f903c8d4aba8bf98bf2a66a050da03588b0245ca73 +size 5273 diff --git a/timecost/c2/forestdiffusion/forest-c2-20260501_180312/staged/public/train.csv b/timecost/c2/forestdiffusion/forest-c2-20260501_180312/staged/public/train.csv new file mode 100644 index 0000000000000000000000000000000000000000..da4f4d55134eebc0e51157d0d467536371db1484 --- /dev/null +++ b/timecost/c2/forestdiffusion/forest-c2-20260501_180312/staged/public/train.csv @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:4aed00c2c2b3f88a55a7ebff31b2e1b5e0e32fb0a7267e0b9d2779cd23e434dd +size 41565 diff --git a/timecost/c2/forestdiffusion/forest-c2-20260501_180312/staged/public/val.csv b/timecost/c2/forestdiffusion/forest-c2-20260501_180312/staged/public/val.csv new file mode 100644 index 0000000000000000000000000000000000000000..af8caf7ee42524188534a3daf32996dc491952d9 --- /dev/null +++ b/timecost/c2/forestdiffusion/forest-c2-20260501_180312/staged/public/val.csv @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:26e90c1170a57a14c05832ac88027722b1f3848f9662c7c09ef7c93dcba4cc01 +size 5176 diff --git a/timecost/c2/forestdiffusion/forest-c2-20260501_180312/train_20260501_180312.log b/timecost/c2/forestdiffusion/forest-c2-20260501_180312/train_20260501_180312.log new file mode 100644 index 0000000000000000000000000000000000000000..b0837f580d1e116882089fa4c0c6572a8ad0eeab --- /dev/null +++ b/timecost/c2/forestdiffusion/forest-c2-20260501_180312/train_20260501_180312.log @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:62a0bd6a2992b6ddc23566ab5374d6c1e1c225e6fcd605d9d25c303d7fe9ca8f +size 423 diff --git a/timecost/c2/realtabformer/rtf-c2-20260501_033610/gen_20260501_034209.log b/timecost/c2/realtabformer/rtf-c2-20260501_033610/gen_20260501_034209.log new file mode 100644 index 0000000000000000000000000000000000000000..3bd9020c5fdabf94c9ceb6d60a05d2d4d7e4b7aa --- /dev/null +++ b/timecost/c2/realtabformer/rtf-c2-20260501_033610/gen_20260501_034209.log @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:5d9cd78510d0e934b4687ac24af837ad5559644c5e82d47a96ff358807af9d4a +size 962 diff --git a/timecost/c2/realtabformer/rtf-c2-20260501_033610/input_snapshot.json b/timecost/c2/realtabformer/rtf-c2-20260501_033610/input_snapshot.json new file mode 100644 index 0000000000000000000000000000000000000000..16a47f24a14783056963c7c31b54a93442c4e573 --- /dev/null +++ b/timecost/c2/realtabformer/rtf-c2-20260501_033610/input_snapshot.json @@ -0,0 +1,36 @@ +{ + "dataset_id": "c2", + "model": "realtabformer", + "inputs": { + "train_csv": { + "path": "/data/jialinzhang/SynthesizePipeline-server/DatasetNew/c2/c2-train.csv", + "exists": true, + "size": 42948, + "sha256": "17bc560fa96bd00fb3b526e1e65bc91210b701d0d0a4e8bb9b4c5196cab56def" + }, + "val_csv": { + "path": "/data/jialinzhang/SynthesizePipeline-server/DatasetNew/c2/c2-val.csv", + "exists": true, + "size": 5349, + "sha256": "61e565eca62e65a7dccd9d51039a3170413379e10fc494e25870e7c4294863c9" + }, + "test_csv": { + "path": "/data/jialinzhang/SynthesizePipeline-server/DatasetNew/c2/c2-test.csv", + "exists": true, + "size": 5448, + "sha256": "cbcbb062a1faf5fa44b66c80532baa229e05b94fc42137269761e6c6d84af20a" + }, + "profile_json": { + "path": "/data/jialinzhang/SynthesizePipeline-server/DatasetNew/artifacts/data_core/tabular/c2/c2-dataset_profile.json", + "exists": true, + "size": 3240, + "sha256": "526b7163b2076c93c0bf4638438081ee8a6907065d5b608faa40d1a3dbc2a27b" + }, + "contract_json": { + "path": "/data/jialinzhang/SynthesizePipeline-server/DatasetNew/artifacts/data_core/tabular/c2/c2-dataset_contract_v1.json", + "exists": true, + "size": 3731, + "sha256": "fb595a876054c2ee9b4e10cfe83a5691588de1d25466cbb9d473c18ad3604009" + } + } +} \ No newline at end of file diff --git a/timecost/c2/realtabformer/rtf-c2-20260501_033610/models_100epochs/id000017775781275641421824/rtf_config.json b/timecost/c2/realtabformer/rtf-c2-20260501_033610/models_100epochs/id000017775781275641421824/rtf_config.json new file mode 100644 index 0000000000000000000000000000000000000000..8c2b372de02a8cce4bc278762beae14c015db566 --- /dev/null +++ b/timecost/c2/realtabformer/rtf-c2-20260501_033610/models_100epochs/id000017775781275641421824/rtf_config.json @@ -0,0 +1 @@ +{"model_type": "tabular", "tabular_config": {"transformers_version": "5.5.3", "architectures": ["GPT2LMHeadModel"], "output_hidden_states": false, "return_dict": true, "dtype": "float32", "chunk_size_feed_forward": 0, "is_encoder_decoder": false, "id2label": {"0": "LABEL_0", "1": "LABEL_1"}, "label2id": {"LABEL_0": 0, "LABEL_1": 1}, "problem_type": null, "vocab_size": 36, "n_positions": 1024, "n_embd": 768, "n_layer": 6, "n_head": 12, "n_inner": null, "activation_function": "gelu_new", "resid_pdrop": 0.1, "embd_pdrop": 0.1, "attn_pdrop": 0.1, "layer_norm_epsilon": 1e-05, "initializer_range": 0.02, "summary_type": "cls_index", "summary_use_proj": true, "summary_activation": null, "summary_proj_to_labels": true, "summary_first_dropout": 0.1, "scale_attn_weights": true, "use_cache": false, "bos_token_id": 5, "eos_token_id": 6, "pad_token_id": null, "scale_attn_by_inverse_layer_idx": false, "reorder_and_upcast_attn": false, "add_cross_attention": false, "tie_word_embeddings": true, "_name_or_path": "", "model_type": "gpt2", "output_attentions": false}, "checkpoints_dir": "rtf_checkpoints", "samples_save_dir": "rtf_samples", "full_save_dir": "rtf_full_save", "epochs": 100, "batch_size": 8, "early_stopping_patience": 5, "early_stopping_threshold": 0, "training_args_kwargs": {"eval_strategy": "no", "output_dir": "rtf_checkpoints", "metric_for_best_model": "loss", "num_train_epochs": 100, "per_device_train_batch_size": 8, "per_device_eval_batch_size": 8, "gradient_accumulation_steps": 4, "remove_unused_columns": true, "logging_steps": 100, "save_steps": 100, "eval_steps": 100, "load_best_model_at_end": false, "save_total_limit": 6, "optim": "adamw_torch"}, "train_size": 1, "mask_rate": 0, "columns": ["buying", "maint", "doors", "persons", "lug_boot", "safety", "class"], "column_dtypes": {"buying": "object", "maint": "object", "doors": "object", "persons": "object", "lug_boot": "object", "safety": "object", "class": "object"}, "column_has_missing": {"buying": false, "maint": false, "doors": false, "persons": false, "lug_boot": false, "safety": false, "class": false}, "drop_na_cols": ["buying", "maint", "doors", "persons", "lug_boot", "safety", "class"], "processed_columns": ["0___CATEGORICAL___buying", "1___CATEGORICAL___maint", "2___CATEGORICAL___doors", "3___CATEGORICAL___persons", "4___CATEGORICAL___lug_boot", "5___CATEGORICAL___safety", "6___CATEGORICAL___class"], "numeric_columns": [], "datetime_columns": [], "vocab": {"id2token": {"0": "[UNK]", "1": "[SEP]", "2": "[PAD]", "3": "[CLS]", "4": "[MASK]", "5": "[BOS]", "6": "[EOS]", "7": "[BMEM]", "8": "[EMEM]", "9": "[RMASK]", "10": "[SPTYPE]", "11": "0___CATEGORICAL___buying___high", "12": "0___CATEGORICAL___buying___low", "13": "0___CATEGORICAL___buying___med", "14": "0___CATEGORICAL___buying___vhigh", "15": "1___CATEGORICAL___maint___high", "16": "1___CATEGORICAL___maint___low", "17": "1___CATEGORICAL___maint___med", "18": "1___CATEGORICAL___maint___vhigh", "19": "2___CATEGORICAL___doors___2", "20": "2___CATEGORICAL___doors___3", "21": "2___CATEGORICAL___doors___4", "22": "2___CATEGORICAL___doors___5more", "23": "3___CATEGORICAL___persons___2", "24": "3___CATEGORICAL___persons___4", "25": "3___CATEGORICAL___persons___more", "26": "4___CATEGORICAL___lug_boot___big", "27": "4___CATEGORICAL___lug_boot___med", "28": "4___CATEGORICAL___lug_boot___small", "29": "5___CATEGORICAL___safety___high", "30": "5___CATEGORICAL___safety___low", "31": "5___CATEGORICAL___safety___med", "32": "6___CATEGORICAL___class___acc", "33": "6___CATEGORICAL___class___good", "34": "6___CATEGORICAL___class___unacc", "35": "6___CATEGORICAL___class___vgood"}, "token2id": {"[UNK]": 0, "[SEP]": 1, "[PAD]": 2, "[CLS]": 3, "[MASK]": 4, "[BOS]": 5, "[EOS]": 6, "[BMEM]": 7, "[EMEM]": 8, "[RMASK]": 9, "[SPTYPE]": 10, "0___CATEGORICAL___buying___high": 11, "0___CATEGORICAL___buying___low": 12, "0___CATEGORICAL___buying___med": 13, "0___CATEGORICAL___buying___vhigh": 14, "1___CATEGORICAL___maint___high": 15, "1___CATEGORICAL___maint___low": 16, "1___CATEGORICAL___maint___med": 17, "1___CATEGORICAL___maint___vhigh": 18, "2___CATEGORICAL___doors___2": 19, "2___CATEGORICAL___doors___3": 20, "2___CATEGORICAL___doors___4": 21, "2___CATEGORICAL___doors___5more": 22, "3___CATEGORICAL___persons___2": 23, "3___CATEGORICAL___persons___4": 24, "3___CATEGORICAL___persons___more": 25, "4___CATEGORICAL___lug_boot___big": 26, "4___CATEGORICAL___lug_boot___med": 27, "4___CATEGORICAL___lug_boot___small": 28, "5___CATEGORICAL___safety___high": 29, "5___CATEGORICAL___safety___low": 30, "5___CATEGORICAL___safety___med": 31, "6___CATEGORICAL___class___acc": 32, "6___CATEGORICAL___class___good": 33, "6___CATEGORICAL___class___unacc": 34, "6___CATEGORICAL___class___vgood": 35}, "column_token_ids": {"0___CATEGORICAL___buying": [11, 12, 13, 14], "1___CATEGORICAL___maint": [15, 16, 17, 18], "2___CATEGORICAL___doors": [19, 20, 21, 22], "3___CATEGORICAL___persons": [23, 24, 25], "4___CATEGORICAL___lug_boot": [26, 27, 28], "5___CATEGORICAL___safety": [29, 30, 31], "6___CATEGORICAL___class": [32, 33, 34, 35]}}, "tabular_max_length": 9, "relational_max_length": null, "tabular_col_size": 1382, "relational_col_size": null, "col_transform_data": {}, "in_col_transform_data": null, "col_idx_ids": {"0": [11, 12, 13, 14], "1": [15, 16, 17, 18], "2": [19, 20, 21, 22], "3": [23, 24, 25], "4": [26, 27, 28], "5": [29, 30, 31], "6": [32, 33, 34, 35]}, "random_state": 1029, "numeric_nparts": 1, "numeric_precision": 4, "numeric_max_len": 10, "experiment_id": "id000017775781275641421824", "trainer_state": null, "target_col": null, "realtabformer_version": "0.2.4"} \ No newline at end of file diff --git a/timecost/c2/realtabformer/rtf-c2-20260501_033610/models_100epochs/id000017775781275641421824/rtf_model.pt b/timecost/c2/realtabformer/rtf-c2-20260501_033610/models_100epochs/id000017775781275641421824/rtf_model.pt new file mode 100644 index 0000000000000000000000000000000000000000..81afe03efcbe94660da233b432f97f3204096b10 --- /dev/null +++ b/timecost/c2/realtabformer/rtf-c2-20260501_033610/models_100epochs/id000017775781275641421824/rtf_model.pt @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:3999ff4576c179ebf54eb32c880d93cf608e9c96640efd084fef976818e06dc2 +size 173400547 diff --git a/timecost/c2/realtabformer/rtf-c2-20260501_033610/public_gate/normalized_schema_snapshot.json b/timecost/c2/realtabformer/rtf-c2-20260501_033610/public_gate/normalized_schema_snapshot.json new file mode 100644 index 0000000000000000000000000000000000000000..689b1d00d96508e44ba40e58dc4560e19afc2b3b --- /dev/null +++ b/timecost/c2/realtabformer/rtf-c2-20260501_033610/public_gate/normalized_schema_snapshot.json @@ -0,0 +1,144 @@ +{ + "dataset_id": "c2", + "target_column": "class", + "task_type": "classification", + "columns": [ + { + "name": "buying", + "role": "feature", + "semantic_type": "categorical", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 4, + "unique_ratio": 0.002894, + "example_values": [ + "vhigh", + "med", + "high", + "low" + ] + } + }, + { + "name": "maint", + "role": "feature", + "semantic_type": "categorical", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 4, + "unique_ratio": 0.002894, + "example_values": [ + "vhigh", + "low", + "med", + "high" + ] + } + }, + { + "name": "doors", + "role": "feature", + "semantic_type": "categorical", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 4, + "unique_ratio": 0.002894, + "example_values": [ + "2", + "5more", + "3", + "4" + ] + } + }, + { + "name": "persons", + "role": "feature", + "semantic_type": "categorical", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 3, + "unique_ratio": 0.002171, + "example_values": [ + "2", + "4", + "more" + ] + } + }, + { + "name": "lug_boot", + "role": "feature", + "semantic_type": "categorical", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 3, + "unique_ratio": 0.002171, + "example_values": [ + "small", + "big", + "med" + ] + } + }, + { + "name": "safety", + "role": "feature", + "semantic_type": "categorical", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 3, + "unique_ratio": 0.002171, + "example_values": [ + "low", + "high", + "med" + ] + } + }, + { + "name": "class", + "role": "target", + "semantic_type": "categorical", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 4, + "unique_ratio": 0.002894, + "example_values": [ + "unacc", + "good", + "acc", + "vgood" + ] + } + } + ] +} \ No newline at end of file diff --git a/timecost/c2/realtabformer/rtf-c2-20260501_033610/public_gate/public_gate_report.json b/timecost/c2/realtabformer/rtf-c2-20260501_033610/public_gate/public_gate_report.json new file mode 100644 index 0000000000000000000000000000000000000000..2e4cdcb2a4e28e40d59b17a83e773f622b7636a5 --- /dev/null +++ b/timecost/c2/realtabformer/rtf-c2-20260501_033610/public_gate/public_gate_report.json @@ -0,0 +1,37 @@ +{ + "dataset_id": "c2", + "status": "pass", + "checks": [ + { + "check_id": "PG001_csv_parse_ok", + "status": "pass" + }, + { + "check_id": "PG002_split_header_consistent", + "status": "pass" + }, + { + "check_id": "PG003_profile_header_match", + "status": "pass" + }, + { + "check_id": "PG004_missing_token_normalized", + "status": "pass" + }, + { + "check_id": "PG005_semantic_type_validated", + "status": "pass" + }, + { + "check_id": "PG006_target_defined_and_valid", + "status": "pass" + } + ], + "target_column": "class", + "task_type": "classification", + "input_splits": { + "train": "/data/jialinzhang/SynthesizePipeline-server/DatasetNew/c2/c2-train.csv", + "val": "/data/jialinzhang/SynthesizePipeline-server/DatasetNew/c2/c2-val.csv", + "test": "/data/jialinzhang/SynthesizePipeline-server/DatasetNew/c2/c2-test.csv" + } +} \ No newline at end of file diff --git a/timecost/c2/realtabformer/rtf-c2-20260501_033610/public_gate/staged_input_manifest.json b/timecost/c2/realtabformer/rtf-c2-20260501_033610/public_gate/staged_input_manifest.json new file mode 100644 index 0000000000000000000000000000000000000000..7382244ae7430d1e99bbc19e5ac5aa2c966c3030 --- /dev/null +++ b/timecost/c2/realtabformer/rtf-c2-20260501_033610/public_gate/staged_input_manifest.json @@ -0,0 +1,149 @@ +{ + "dataset_id": "c2", + "target_column": "class", + "task_type": "classification", + "train_csv": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/c2/realtabformer/rtf-c2-20260501_033610/staged/public/train.csv", + "val_csv": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/c2/realtabformer/rtf-c2-20260501_033610/staged/public/val.csv", + "test_csv": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/c2/realtabformer/rtf-c2-20260501_033610/staged/public/test.csv", + "features_json": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/c2/realtabformer/rtf-c2-20260501_033610/staged/public/staged_features.json", + "public_gate_report": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/c2/realtabformer/rtf-c2-20260501_033610/public_gate/public_gate_report.json", + "column_schema": [ + { + "name": "buying", + "role": "feature", + "semantic_type": "categorical", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 4, + "unique_ratio": 0.002894, + "example_values": [ + "vhigh", + "med", + "high", + "low" + ] + } + }, + { + "name": "maint", + "role": "feature", + "semantic_type": "categorical", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 4, + "unique_ratio": 0.002894, + "example_values": [ + "vhigh", + "low", + "med", + "high" + ] + } + }, + { + "name": "doors", + "role": "feature", + "semantic_type": "categorical", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 4, + "unique_ratio": 0.002894, + "example_values": [ + "2", + "5more", + "3", + "4" + ] + } + }, + { + "name": "persons", + "role": "feature", + "semantic_type": "categorical", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 3, + "unique_ratio": 0.002171, + "example_values": [ + "2", + "4", + "more" + ] + } + }, + { + "name": "lug_boot", + "role": "feature", + "semantic_type": "categorical", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 3, + "unique_ratio": 0.002171, + "example_values": [ + "small", + "big", + "med" + ] + } + }, + { + "name": "safety", + "role": "feature", + "semantic_type": "categorical", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 3, + "unique_ratio": 0.002171, + "example_values": [ + "low", + "high", + "med" + ] + } + }, + { + "name": "class", + "role": "target", + "semantic_type": "categorical", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 4, + "unique_ratio": 0.002894, + "example_values": [ + "unacc", + "good", + "acc", + "vgood" + ] + } + } + ] +} \ No newline at end of file diff --git a/timecost/c2/realtabformer/rtf-c2-20260501_033610/realtabformer_features.json b/timecost/c2/realtabformer/rtf-c2-20260501_033610/realtabformer_features.json new file mode 100644 index 0000000000000000000000000000000000000000..61783861dd5de501592f76acb0469cf3f3b2622a --- /dev/null +++ b/timecost/c2/realtabformer/rtf-c2-20260501_033610/realtabformer_features.json @@ -0,0 +1,37 @@ +[ + { + "feature_name": "buying", + "data_type": "categorical", + "is_target": false + }, + { + "feature_name": "maint", + "data_type": "categorical", + "is_target": false + }, + { + "feature_name": "doors", + "data_type": "categorical", + "is_target": false + }, + { + "feature_name": "persons", + "data_type": "categorical", + "is_target": false + }, + { + "feature_name": "lug_boot", + "data_type": "categorical", + "is_target": false + }, + { + "feature_name": "safety", + "data_type": "categorical", + "is_target": false + }, + { + "feature_name": "class", + "data_type": "categorical", + "is_target": true + } +] \ No newline at end of file diff --git a/timecost/c2/realtabformer/rtf-c2-20260501_033610/rtf-c2-1382-20260501_034209.csv b/timecost/c2/realtabformer/rtf-c2-20260501_033610/rtf-c2-1382-20260501_034209.csv new file mode 100644 index 0000000000000000000000000000000000000000..6eea15eb12beffeb5a94bc94de67603bdbc2df57 --- /dev/null +++ b/timecost/c2/realtabformer/rtf-c2-20260501_033610/rtf-c2-1382-20260501_034209.csv @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:c62cafca199ad16d8cff51a3ef1babc63070b0b2894f5d6bb68c0e73fdcb7cd3 +size 41525 diff --git a/timecost/c2/realtabformer/rtf-c2-20260501_033610/rtf_checkpoints/checkpoint-4224/config.json b/timecost/c2/realtabformer/rtf-c2-20260501_033610/rtf_checkpoints/checkpoint-4224/config.json new file mode 100644 index 0000000000000000000000000000000000000000..abc7bb2762d6bff3016eb042e7a2ac4abb80ea85 --- /dev/null +++ b/timecost/c2/realtabformer/rtf-c2-20260501_033610/rtf_checkpoints/checkpoint-4224/config.json @@ -0,0 +1,34 @@ +{ + "activation_function": "gelu_new", + "add_cross_attention": false, + "architectures": [ + "GPT2LMHeadModel" + ], + "attn_pdrop": 0.1, + "bos_token_id": 5, + "dtype": "float32", + "embd_pdrop": 0.1, + "eos_token_id": 6, + "initializer_range": 0.02, + "layer_norm_epsilon": 1e-05, + "model_type": "gpt2", + "n_embd": 768, + "n_head": 12, + "n_inner": null, + "n_layer": 6, + "n_positions": 1024, + "pad_token_id": null, + "reorder_and_upcast_attn": false, + "resid_pdrop": 0.1, + "scale_attn_by_inverse_layer_idx": false, + "scale_attn_weights": true, + "summary_activation": null, + "summary_first_dropout": 0.1, + "summary_proj_to_labels": true, + "summary_type": "cls_index", + "summary_use_proj": true, + "tie_word_embeddings": true, + "transformers_version": "5.5.3", + "use_cache": false, + "vocab_size": 36 +} diff --git a/timecost/c2/realtabformer/rtf-c2-20260501_033610/rtf_checkpoints/checkpoint-4224/generation_config.json b/timecost/c2/realtabformer/rtf-c2-20260501_033610/rtf_checkpoints/checkpoint-4224/generation_config.json new file mode 100644 index 0000000000000000000000000000000000000000..ffe89567780e75b5c22eade9be971483b9618f39 --- /dev/null +++ b/timecost/c2/realtabformer/rtf-c2-20260501_033610/rtf_checkpoints/checkpoint-4224/generation_config.json @@ -0,0 +1,9 @@ +{ + "_from_model_config": true, + "bos_token_id": 5, + "eos_token_id": 6, + "output_attentions": false, + "output_hidden_states": false, + "transformers_version": "5.5.3", + "use_cache": true +} diff --git a/timecost/c2/realtabformer/rtf-c2-20260501_033610/rtf_checkpoints/checkpoint-4224/model.safetensors b/timecost/c2/realtabformer/rtf-c2-20260501_033610/rtf_checkpoints/checkpoint-4224/model.safetensors new file mode 100644 index 0000000000000000000000000000000000000000..0d2f680be716257c34c19e28618ac78eb9001ea4 --- /dev/null +++ b/timecost/c2/realtabformer/rtf-c2-20260501_033610/rtf_checkpoints/checkpoint-4224/model.safetensors @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:2dc090231f2d56434eeb9f0712dc141d18914fd7e0c56298f0cc38b7c730fb14 +size 173379016 diff --git a/timecost/c2/realtabformer/rtf-c2-20260501_033610/rtf_checkpoints/checkpoint-4224/optimizer.pt b/timecost/c2/realtabformer/rtf-c2-20260501_033610/rtf_checkpoints/checkpoint-4224/optimizer.pt new file mode 100644 index 0000000000000000000000000000000000000000..f35faadc5cca64eb7ce75ed6ddeaa5cf6ed1a35b --- /dev/null +++ b/timecost/c2/realtabformer/rtf-c2-20260501_033610/rtf_checkpoints/checkpoint-4224/optimizer.pt @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:d6719367c960e29ec05973cdfa6bdab91e9b3820a1b01d0acff1529e85c859c0 +size 346807051 diff --git a/timecost/c2/realtabformer/rtf-c2-20260501_033610/rtf_checkpoints/checkpoint-4224/rng_state.pth b/timecost/c2/realtabformer/rtf-c2-20260501_033610/rtf_checkpoints/checkpoint-4224/rng_state.pth new file mode 100644 index 0000000000000000000000000000000000000000..25544edbc6ce9fd3e6383288989df0938c68514d --- /dev/null +++ b/timecost/c2/realtabformer/rtf-c2-20260501_033610/rtf_checkpoints/checkpoint-4224/rng_state.pth @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:db129c050682435e1bee8ef66cd09a15bb2424a85afbe727801a7a4d1f89624e +size 14645 diff --git a/timecost/c2/realtabformer/rtf-c2-20260501_033610/rtf_checkpoints/checkpoint-4224/scaler.pt b/timecost/c2/realtabformer/rtf-c2-20260501_033610/rtf_checkpoints/checkpoint-4224/scaler.pt new file mode 100644 index 0000000000000000000000000000000000000000..646f9fbf7a046b2836430bbd02cfdda971f0cb71 --- /dev/null +++ b/timecost/c2/realtabformer/rtf-c2-20260501_033610/rtf_checkpoints/checkpoint-4224/scaler.pt @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:3f1fdbb2b1c1114fc2b99a720d34948dc2aa42cd71b7fa5e0643e0738375279b +size 1383 diff --git a/timecost/c2/realtabformer/rtf-c2-20260501_033610/rtf_checkpoints/checkpoint-4224/scheduler.pt b/timecost/c2/realtabformer/rtf-c2-20260501_033610/rtf_checkpoints/checkpoint-4224/scheduler.pt new file mode 100644 index 0000000000000000000000000000000000000000..f841c7a85828017d68e8cd9beaf038dafdcf733a --- /dev/null +++ b/timecost/c2/realtabformer/rtf-c2-20260501_033610/rtf_checkpoints/checkpoint-4224/scheduler.pt @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:7fabe559347cab18597bcee171a8b0137ee130cbd46f3b2052cb8ee7dcc5a843 +size 1465 diff --git a/timecost/c2/realtabformer/rtf-c2-20260501_033610/rtf_checkpoints/checkpoint-4224/trainer_state.json b/timecost/c2/realtabformer/rtf-c2-20260501_033610/rtf_checkpoints/checkpoint-4224/trainer_state.json new file mode 100644 index 0000000000000000000000000000000000000000..32804df048e3123372d62890a1bf1b2ad08a7a14 --- /dev/null +++ b/timecost/c2/realtabformer/rtf-c2-20260501_033610/rtf_checkpoints/checkpoint-4224/trainer_state.json @@ -0,0 +1,328 @@ +{ + "best_global_step": null, + "best_metric": null, + "best_model_checkpoint": null, + "epoch": 96.0, + "eval_steps": 100, + "global_step": 4224, + "is_hyper_param_search": false, + "is_local_process_zero": true, + "is_world_process_zero": true, + "log_history": [ + { + "epoch": 2.277456647398844, + "grad_norm": 0.45774605870246887, + "learning_rate": 4.8875e-05, + "loss": 1.0554571533203125, + "step": 100 + }, + { + "epoch": 4.554913294797688, + "grad_norm": 0.4337577223777771, + "learning_rate": 4.773863636363636e-05, + "loss": 0.8850509643554687, + "step": 200 + }, + { + "epoch": 6.832369942196532, + "grad_norm": 0.6754257678985596, + "learning_rate": 4.660227272727273e-05, + "loss": 0.8728819274902344, + "step": 300 + }, + { + "epoch": 9.092485549132949, + "grad_norm": 0.32570239901542664, + "learning_rate": 4.546590909090909e-05, + "loss": 0.8641302490234375, + "step": 400 + }, + { + "epoch": 11.369942196531792, + "grad_norm": 0.38200652599334717, + "learning_rate": 4.432954545454546e-05, + "loss": 0.8559213256835938, + "step": 500 + }, + { + "epoch": 13.647398843930636, + "grad_norm": 0.458467036485672, + "learning_rate": 4.319318181818182e-05, + "loss": 0.8571351623535156, + "step": 600 + }, + { + "epoch": 15.92485549132948, + "grad_norm": 0.45177900791168213, + "learning_rate": 4.2056818181818186e-05, + "loss": 0.853203125, + "step": 700 + }, + { + "epoch": 18.184971098265898, + "grad_norm": 0.48006364703178406, + "learning_rate": 4.092045454545455e-05, + "loss": 0.8498992919921875, + "step": 800 + }, + { + "epoch": 20.46242774566474, + "grad_norm": 0.29602789878845215, + "learning_rate": 3.978409090909091e-05, + "loss": 0.8481210327148437, + "step": 900 + }, + { + "epoch": 22.739884393063583, + "grad_norm": 0.2875346839427948, + "learning_rate": 3.8647727272727275e-05, + "loss": 0.8433629608154297, + "step": 1000 + }, + { + "epoch": 25.0, + "grad_norm": 0.7051313519477844, + "learning_rate": 3.7511363636363636e-05, + "loss": 0.8442816925048828, + "step": 1100 + }, + { + "epoch": 27.277456647398843, + "grad_norm": 0.3138129711151123, + "learning_rate": 3.6375e-05, + "loss": 0.8439885711669922, + "step": 1200 + }, + { + "epoch": 29.55491329479769, + "grad_norm": 0.47190558910369873, + "learning_rate": 3.5238636363636364e-05, + "loss": 0.8407660675048828, + "step": 1300 + }, + { + "epoch": 31.832369942196532, + "grad_norm": 0.4098823666572571, + "learning_rate": 3.4102272727272725e-05, + "loss": 0.8402595520019531, + "step": 1400 + }, + { + "epoch": 34.092485549132945, + "grad_norm": 0.28894272446632385, + "learning_rate": 3.296590909090909e-05, + "loss": 0.8409199523925781, + "step": 1500 + }, + { + "epoch": 36.369942196531795, + "grad_norm": 0.35202890634536743, + "learning_rate": 3.182954545454546e-05, + "loss": 0.838973388671875, + "step": 1600 + }, + { + "epoch": 38.64739884393064, + "grad_norm": 0.3858259618282318, + "learning_rate": 3.069318181818182e-05, + "loss": 0.8387539672851563, + "step": 1700 + }, + { + "epoch": 40.92485549132948, + "grad_norm": 0.3619968593120575, + "learning_rate": 2.9556818181818184e-05, + "loss": 0.8389186096191407, + "step": 1800 + }, + { + "epoch": 43.1849710982659, + "grad_norm": 0.2380709946155548, + "learning_rate": 2.8420454545454545e-05, + "loss": 0.8381841278076172, + "step": 1900 + }, + { + "epoch": 45.46242774566474, + "grad_norm": 0.2774685323238373, + "learning_rate": 2.728409090909091e-05, + "loss": 0.8379978942871094, + "step": 2000 + }, + { + "epoch": 47.73988439306358, + "grad_norm": 0.3966612219810486, + "learning_rate": 2.6147727272727273e-05, + "loss": 0.8361636352539062, + "step": 2100 + }, + { + "epoch": 50.0, + "grad_norm": 0.6858490705490112, + "learning_rate": 2.5011363636363637e-05, + "loss": 0.8361389923095703, + "step": 2200 + }, + { + "epoch": 52.27745664739884, + "grad_norm": 0.27801573276519775, + "learning_rate": 2.3875e-05, + "loss": 0.8344792938232422, + "step": 2300 + }, + { + "epoch": 54.554913294797686, + "grad_norm": 0.3022511303424835, + "learning_rate": 2.2738636363636365e-05, + "loss": 0.8358657836914063, + "step": 2400 + }, + { + "epoch": 56.83236994219653, + "grad_norm": 0.37043297290802, + "learning_rate": 2.160227272727273e-05, + "loss": 0.8339907836914062, + "step": 2500 + }, + { + "epoch": 59.092485549132945, + "grad_norm": 0.38185206055641174, + "learning_rate": 2.046590909090909e-05, + "loss": 0.8342379760742188, + "step": 2600 + }, + { + "epoch": 61.369942196531795, + "grad_norm": 0.326172411441803, + "learning_rate": 1.9329545454545457e-05, + "loss": 0.834858169555664, + "step": 2700 + }, + { + "epoch": 63.64739884393064, + "grad_norm": 0.34918302297592163, + "learning_rate": 1.819318181818182e-05, + "loss": 0.8337675476074219, + "step": 2800 + }, + { + "epoch": 65.92485549132948, + "grad_norm": 0.2997020483016968, + "learning_rate": 1.7056818181818182e-05, + "loss": 0.8324470520019531, + "step": 2900 + }, + { + "epoch": 68.18497109826589, + "grad_norm": 0.23717710375785828, + "learning_rate": 1.5920454545454546e-05, + "loss": 0.8340346527099609, + "step": 3000 + }, + { + "epoch": 70.46242774566474, + "grad_norm": 0.28393399715423584, + "learning_rate": 1.4784090909090908e-05, + "loss": 0.8327864074707031, + "step": 3100 + }, + { + "epoch": 72.73988439306359, + "grad_norm": 0.2693222165107727, + "learning_rate": 1.3647727272727274e-05, + "loss": 0.8334049987792969, + "step": 3200 + }, + { + "epoch": 75.0, + "grad_norm": 0.6753465533256531, + "learning_rate": 1.2511363636363638e-05, + "loss": 0.8321996307373047, + "step": 3300 + }, + { + "epoch": 77.27745664739885, + "grad_norm": 0.2996279299259186, + "learning_rate": 1.1375e-05, + "loss": 0.8326959991455078, + "step": 3400 + }, + { + "epoch": 79.55491329479769, + "grad_norm": 0.2881743907928467, + "learning_rate": 1.0238636363636364e-05, + "loss": 0.8314301300048829, + "step": 3500 + }, + { + "epoch": 81.83236994219654, + "grad_norm": 0.24612846970558167, + "learning_rate": 9.102272727272727e-06, + "loss": 0.83193115234375, + "step": 3600 + }, + { + "epoch": 84.09248554913295, + "grad_norm": 0.24222785234451294, + "learning_rate": 7.965909090909092e-06, + "loss": 0.8309139251708985, + "step": 3700 + }, + { + "epoch": 86.3699421965318, + "grad_norm": 0.3278041481971741, + "learning_rate": 6.829545454545455e-06, + "loss": 0.83010498046875, + "step": 3800 + }, + { + "epoch": 88.64739884393063, + "grad_norm": 0.2609911561012268, + "learning_rate": 5.693181818181818e-06, + "loss": 0.8300800323486328, + "step": 3900 + }, + { + "epoch": 90.92485549132948, + "grad_norm": 0.24667981266975403, + "learning_rate": 4.556818181818182e-06, + "loss": 0.8305992126464844, + "step": 4000 + }, + { + "epoch": 93.18497109826589, + "grad_norm": 0.2552596628665924, + "learning_rate": 3.4204545454545453e-06, + "loss": 0.8291678619384766, + "step": 4100 + }, + { + "epoch": 95.46242774566474, + "grad_norm": 0.40495359897613525, + "learning_rate": 2.2840909090909093e-06, + "loss": 0.8284315490722656, + "step": 4200 + } + ], + "logging_steps": 100, + "max_steps": 4400, + "num_input_tokens_seen": 0, + "num_train_epochs": 100, + "save_steps": 100, + "stateful_callbacks": { + "TrainerControl": { + "args": { + "should_epoch_stop": false, + "should_evaluate": false, + "should_log": false, + "should_save": true, + "should_training_stop": false + }, + "attributes": {} + } + }, + "total_flos": 304688342237184.0, + "train_batch_size": 8, + "trial_name": null, + "trial_params": null +} diff --git a/timecost/c2/realtabformer/rtf-c2-20260501_033610/rtf_checkpoints/checkpoint-4224/training_args.bin b/timecost/c2/realtabformer/rtf-c2-20260501_033610/rtf_checkpoints/checkpoint-4224/training_args.bin new file mode 100644 index 0000000000000000000000000000000000000000..34d68dc0e0fe1c1f12a2e581dd1b166aa7178a9e --- /dev/null +++ b/timecost/c2/realtabformer/rtf-c2-20260501_033610/rtf_checkpoints/checkpoint-4224/training_args.bin @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:9e2cd88337d1d846c6918d2b3b63fa3e5c93f12fefc082497590da854a564607 +size 5201 diff --git a/timecost/c2/realtabformer/rtf-c2-20260501_033610/rtf_checkpoints/checkpoint-4268/config.json b/timecost/c2/realtabformer/rtf-c2-20260501_033610/rtf_checkpoints/checkpoint-4268/config.json new file mode 100644 index 0000000000000000000000000000000000000000..abc7bb2762d6bff3016eb042e7a2ac4abb80ea85 --- /dev/null +++ b/timecost/c2/realtabformer/rtf-c2-20260501_033610/rtf_checkpoints/checkpoint-4268/config.json @@ -0,0 +1,34 @@ +{ + "activation_function": "gelu_new", + "add_cross_attention": false, + "architectures": [ + "GPT2LMHeadModel" + ], + "attn_pdrop": 0.1, + "bos_token_id": 5, + "dtype": "float32", + "embd_pdrop": 0.1, + "eos_token_id": 6, + "initializer_range": 0.02, + "layer_norm_epsilon": 1e-05, + "model_type": "gpt2", + "n_embd": 768, + "n_head": 12, + "n_inner": null, + "n_layer": 6, + "n_positions": 1024, + "pad_token_id": null, + "reorder_and_upcast_attn": false, + "resid_pdrop": 0.1, + "scale_attn_by_inverse_layer_idx": false, + "scale_attn_weights": true, + "summary_activation": null, + "summary_first_dropout": 0.1, + "summary_proj_to_labels": true, + "summary_type": "cls_index", + "summary_use_proj": true, + "tie_word_embeddings": true, + "transformers_version": "5.5.3", + "use_cache": false, + "vocab_size": 36 +} diff --git a/timecost/c2/realtabformer/rtf-c2-20260501_033610/rtf_checkpoints/checkpoint-4268/generation_config.json b/timecost/c2/realtabformer/rtf-c2-20260501_033610/rtf_checkpoints/checkpoint-4268/generation_config.json new file mode 100644 index 0000000000000000000000000000000000000000..ffe89567780e75b5c22eade9be971483b9618f39 --- /dev/null +++ b/timecost/c2/realtabformer/rtf-c2-20260501_033610/rtf_checkpoints/checkpoint-4268/generation_config.json @@ -0,0 +1,9 @@ +{ + "_from_model_config": true, + "bos_token_id": 5, + "eos_token_id": 6, + "output_attentions": false, + "output_hidden_states": false, + "transformers_version": "5.5.3", + "use_cache": true +} diff --git a/timecost/c2/realtabformer/rtf-c2-20260501_033610/rtf_checkpoints/checkpoint-4268/model.safetensors b/timecost/c2/realtabformer/rtf-c2-20260501_033610/rtf_checkpoints/checkpoint-4268/model.safetensors new file mode 100644 index 0000000000000000000000000000000000000000..85c8994b3db9dfa3d79f8738b96db06de1463e98 --- /dev/null +++ b/timecost/c2/realtabformer/rtf-c2-20260501_033610/rtf_checkpoints/checkpoint-4268/model.safetensors @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:118cf08038de85300bb530c1d48bc0e6e02943a0fedd8d5877ab6cdba6584a73 +size 173379016 diff --git a/timecost/c2/realtabformer/rtf-c2-20260501_033610/rtf_checkpoints/checkpoint-4268/optimizer.pt b/timecost/c2/realtabformer/rtf-c2-20260501_033610/rtf_checkpoints/checkpoint-4268/optimizer.pt new file mode 100644 index 0000000000000000000000000000000000000000..01e2660b8f7f76a8b2264394398f2ee572b65f36 --- /dev/null +++ b/timecost/c2/realtabformer/rtf-c2-20260501_033610/rtf_checkpoints/checkpoint-4268/optimizer.pt @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:216c3997bc98f0ded94fb174304cd6bb982acf54ae20d2578abe2b624d27c511 +size 346807051 diff --git a/timecost/c2/realtabformer/rtf-c2-20260501_033610/rtf_checkpoints/checkpoint-4268/rng_state.pth b/timecost/c2/realtabformer/rtf-c2-20260501_033610/rtf_checkpoints/checkpoint-4268/rng_state.pth new file mode 100644 index 0000000000000000000000000000000000000000..90de22419f703991117d71515b6902beb6013b6e --- /dev/null +++ b/timecost/c2/realtabformer/rtf-c2-20260501_033610/rtf_checkpoints/checkpoint-4268/rng_state.pth @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:17811d77e0d2482dc221eed3b0c12825f2a3a3fb4800e52b1d5c72f8b363d28b +size 14645 diff --git a/timecost/c2/realtabformer/rtf-c2-20260501_033610/rtf_checkpoints/checkpoint-4268/scaler.pt b/timecost/c2/realtabformer/rtf-c2-20260501_033610/rtf_checkpoints/checkpoint-4268/scaler.pt new file mode 100644 index 0000000000000000000000000000000000000000..ae4f3d8061f8bda78e98a10b27cfc2a5d6c4edff --- /dev/null +++ b/timecost/c2/realtabformer/rtf-c2-20260501_033610/rtf_checkpoints/checkpoint-4268/scaler.pt @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:ba5912ef6396b602e2719780ceb3f27177c4d97da75c6e092e3da83a8a774b5a +size 1383 diff --git a/timecost/c2/realtabformer/rtf-c2-20260501_033610/rtf_checkpoints/checkpoint-4268/scheduler.pt b/timecost/c2/realtabformer/rtf-c2-20260501_033610/rtf_checkpoints/checkpoint-4268/scheduler.pt new file mode 100644 index 0000000000000000000000000000000000000000..880265547570fdad6c8af91b6287c6448c83204e --- /dev/null +++ b/timecost/c2/realtabformer/rtf-c2-20260501_033610/rtf_checkpoints/checkpoint-4268/scheduler.pt @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:d9d269895412297c8f61eabaabe357c2031ec99dd29a8e4723e795823ee3316c +size 1465 diff --git a/timecost/c2/realtabformer/rtf-c2-20260501_033610/rtf_checkpoints/checkpoint-4268/trainer_state.json b/timecost/c2/realtabformer/rtf-c2-20260501_033610/rtf_checkpoints/checkpoint-4268/trainer_state.json new file mode 100644 index 0000000000000000000000000000000000000000..5a18a88b4ff6c594748034693f5c0bd9a56255da --- /dev/null +++ b/timecost/c2/realtabformer/rtf-c2-20260501_033610/rtf_checkpoints/checkpoint-4268/trainer_state.json @@ -0,0 +1,328 @@ +{ + "best_global_step": null, + "best_metric": null, + "best_model_checkpoint": null, + "epoch": 97.0, + "eval_steps": 100, + "global_step": 4268, + "is_hyper_param_search": false, + "is_local_process_zero": true, + "is_world_process_zero": true, + "log_history": [ + { + "epoch": 2.277456647398844, + "grad_norm": 0.45774605870246887, + "learning_rate": 4.8875e-05, + "loss": 1.0554571533203125, + "step": 100 + }, + { + "epoch": 4.554913294797688, + "grad_norm": 0.4337577223777771, + "learning_rate": 4.773863636363636e-05, + "loss": 0.8850509643554687, + "step": 200 + }, + { + "epoch": 6.832369942196532, + "grad_norm": 0.6754257678985596, + "learning_rate": 4.660227272727273e-05, + "loss": 0.8728819274902344, + "step": 300 + }, + { + "epoch": 9.092485549132949, + "grad_norm": 0.32570239901542664, + "learning_rate": 4.546590909090909e-05, + "loss": 0.8641302490234375, + "step": 400 + }, + { + "epoch": 11.369942196531792, + "grad_norm": 0.38200652599334717, + "learning_rate": 4.432954545454546e-05, + "loss": 0.8559213256835938, + "step": 500 + }, + { + "epoch": 13.647398843930636, + "grad_norm": 0.458467036485672, + "learning_rate": 4.319318181818182e-05, + "loss": 0.8571351623535156, + "step": 600 + }, + { + "epoch": 15.92485549132948, + "grad_norm": 0.45177900791168213, + "learning_rate": 4.2056818181818186e-05, + "loss": 0.853203125, + "step": 700 + }, + { + "epoch": 18.184971098265898, + "grad_norm": 0.48006364703178406, + "learning_rate": 4.092045454545455e-05, + "loss": 0.8498992919921875, + "step": 800 + }, + { + "epoch": 20.46242774566474, + "grad_norm": 0.29602789878845215, + "learning_rate": 3.978409090909091e-05, + "loss": 0.8481210327148437, + "step": 900 + }, + { + "epoch": 22.739884393063583, + "grad_norm": 0.2875346839427948, + "learning_rate": 3.8647727272727275e-05, + "loss": 0.8433629608154297, + "step": 1000 + }, + { + "epoch": 25.0, + "grad_norm": 0.7051313519477844, + "learning_rate": 3.7511363636363636e-05, + "loss": 0.8442816925048828, + "step": 1100 + }, + { + "epoch": 27.277456647398843, + "grad_norm": 0.3138129711151123, + "learning_rate": 3.6375e-05, + "loss": 0.8439885711669922, + "step": 1200 + }, + { + "epoch": 29.55491329479769, + "grad_norm": 0.47190558910369873, + "learning_rate": 3.5238636363636364e-05, + "loss": 0.8407660675048828, + "step": 1300 + }, + { + "epoch": 31.832369942196532, + "grad_norm": 0.4098823666572571, + "learning_rate": 3.4102272727272725e-05, + "loss": 0.8402595520019531, + "step": 1400 + }, + { + "epoch": 34.092485549132945, + "grad_norm": 0.28894272446632385, + "learning_rate": 3.296590909090909e-05, + "loss": 0.8409199523925781, + "step": 1500 + }, + { + "epoch": 36.369942196531795, + "grad_norm": 0.35202890634536743, + "learning_rate": 3.182954545454546e-05, + "loss": 0.838973388671875, + "step": 1600 + }, + { + "epoch": 38.64739884393064, + "grad_norm": 0.3858259618282318, + "learning_rate": 3.069318181818182e-05, + "loss": 0.8387539672851563, + "step": 1700 + }, + { + "epoch": 40.92485549132948, + "grad_norm": 0.3619968593120575, + "learning_rate": 2.9556818181818184e-05, + "loss": 0.8389186096191407, + "step": 1800 + }, + { + "epoch": 43.1849710982659, + "grad_norm": 0.2380709946155548, + "learning_rate": 2.8420454545454545e-05, + "loss": 0.8381841278076172, + "step": 1900 + }, + { + "epoch": 45.46242774566474, + "grad_norm": 0.2774685323238373, + "learning_rate": 2.728409090909091e-05, + "loss": 0.8379978942871094, + "step": 2000 + }, + { + "epoch": 47.73988439306358, + "grad_norm": 0.3966612219810486, + "learning_rate": 2.6147727272727273e-05, + "loss": 0.8361636352539062, + "step": 2100 + }, + { + "epoch": 50.0, + "grad_norm": 0.6858490705490112, + "learning_rate": 2.5011363636363637e-05, + "loss": 0.8361389923095703, + "step": 2200 + }, + { + "epoch": 52.27745664739884, + "grad_norm": 0.27801573276519775, + "learning_rate": 2.3875e-05, + "loss": 0.8344792938232422, + "step": 2300 + }, + { + "epoch": 54.554913294797686, + "grad_norm": 0.3022511303424835, + "learning_rate": 2.2738636363636365e-05, + "loss": 0.8358657836914063, + "step": 2400 + }, + { + "epoch": 56.83236994219653, + "grad_norm": 0.37043297290802, + "learning_rate": 2.160227272727273e-05, + "loss": 0.8339907836914062, + "step": 2500 + }, + { + "epoch": 59.092485549132945, + "grad_norm": 0.38185206055641174, + "learning_rate": 2.046590909090909e-05, + "loss": 0.8342379760742188, + "step": 2600 + }, + { + "epoch": 61.369942196531795, + "grad_norm": 0.326172411441803, + "learning_rate": 1.9329545454545457e-05, + "loss": 0.834858169555664, + "step": 2700 + }, + { + "epoch": 63.64739884393064, + "grad_norm": 0.34918302297592163, + "learning_rate": 1.819318181818182e-05, + "loss": 0.8337675476074219, + "step": 2800 + }, + { + "epoch": 65.92485549132948, + "grad_norm": 0.2997020483016968, + "learning_rate": 1.7056818181818182e-05, + "loss": 0.8324470520019531, + "step": 2900 + }, + { + "epoch": 68.18497109826589, + "grad_norm": 0.23717710375785828, + "learning_rate": 1.5920454545454546e-05, + "loss": 0.8340346527099609, + "step": 3000 + }, + { + "epoch": 70.46242774566474, + "grad_norm": 0.28393399715423584, + "learning_rate": 1.4784090909090908e-05, + "loss": 0.8327864074707031, + "step": 3100 + }, + { + "epoch": 72.73988439306359, + "grad_norm": 0.2693222165107727, + "learning_rate": 1.3647727272727274e-05, + "loss": 0.8334049987792969, + "step": 3200 + }, + { + "epoch": 75.0, + "grad_norm": 0.6753465533256531, + "learning_rate": 1.2511363636363638e-05, + "loss": 0.8321996307373047, + "step": 3300 + }, + { + "epoch": 77.27745664739885, + "grad_norm": 0.2996279299259186, + "learning_rate": 1.1375e-05, + "loss": 0.8326959991455078, + "step": 3400 + }, + { + "epoch": 79.55491329479769, + "grad_norm": 0.2881743907928467, + "learning_rate": 1.0238636363636364e-05, + "loss": 0.8314301300048829, + "step": 3500 + }, + { + "epoch": 81.83236994219654, + "grad_norm": 0.24612846970558167, + "learning_rate": 9.102272727272727e-06, + "loss": 0.83193115234375, + "step": 3600 + }, + { + "epoch": 84.09248554913295, + "grad_norm": 0.24222785234451294, + "learning_rate": 7.965909090909092e-06, + "loss": 0.8309139251708985, + "step": 3700 + }, + { + "epoch": 86.3699421965318, + "grad_norm": 0.3278041481971741, + "learning_rate": 6.829545454545455e-06, + "loss": 0.83010498046875, + "step": 3800 + }, + { + "epoch": 88.64739884393063, + "grad_norm": 0.2609911561012268, + "learning_rate": 5.693181818181818e-06, + "loss": 0.8300800323486328, + "step": 3900 + }, + { + "epoch": 90.92485549132948, + "grad_norm": 0.24667981266975403, + "learning_rate": 4.556818181818182e-06, + "loss": 0.8305992126464844, + "step": 4000 + }, + { + "epoch": 93.18497109826589, + "grad_norm": 0.2552596628665924, + "learning_rate": 3.4204545454545453e-06, + "loss": 0.8291678619384766, + "step": 4100 + }, + { + "epoch": 95.46242774566474, + "grad_norm": 0.40495359897613525, + "learning_rate": 2.2840909090909093e-06, + "loss": 0.8284315490722656, + "step": 4200 + } + ], + "logging_steps": 100, + "max_steps": 4400, + "num_input_tokens_seen": 0, + "num_train_epochs": 100, + "save_steps": 100, + "stateful_callbacks": { + "TrainerControl": { + "args": { + "should_epoch_stop": false, + "should_evaluate": false, + "should_log": false, + "should_save": true, + "should_training_stop": false + }, + "attributes": {} + } + }, + "total_flos": 307862179135488.0, + "train_batch_size": 8, + "trial_name": null, + "trial_params": null +} diff --git a/timecost/c2/realtabformer/rtf-c2-20260501_033610/rtf_checkpoints/checkpoint-4268/training_args.bin b/timecost/c2/realtabformer/rtf-c2-20260501_033610/rtf_checkpoints/checkpoint-4268/training_args.bin new file mode 100644 index 0000000000000000000000000000000000000000..34d68dc0e0fe1c1f12a2e581dd1b166aa7178a9e --- /dev/null +++ b/timecost/c2/realtabformer/rtf-c2-20260501_033610/rtf_checkpoints/checkpoint-4268/training_args.bin @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:9e2cd88337d1d846c6918d2b3b63fa3e5c93f12fefc082497590da854a564607 +size 5201 diff --git a/timecost/c2/realtabformer/rtf-c2-20260501_033610/rtf_checkpoints/checkpoint-4300/config.json b/timecost/c2/realtabformer/rtf-c2-20260501_033610/rtf_checkpoints/checkpoint-4300/config.json new file mode 100644 index 0000000000000000000000000000000000000000..abc7bb2762d6bff3016eb042e7a2ac4abb80ea85 --- /dev/null +++ b/timecost/c2/realtabformer/rtf-c2-20260501_033610/rtf_checkpoints/checkpoint-4300/config.json @@ -0,0 +1,34 @@ +{ + "activation_function": "gelu_new", + "add_cross_attention": false, + "architectures": [ + "GPT2LMHeadModel" + ], + "attn_pdrop": 0.1, + "bos_token_id": 5, + "dtype": "float32", + "embd_pdrop": 0.1, + "eos_token_id": 6, + "initializer_range": 0.02, + "layer_norm_epsilon": 1e-05, + "model_type": "gpt2", + "n_embd": 768, + "n_head": 12, + "n_inner": null, + "n_layer": 6, + "n_positions": 1024, + "pad_token_id": null, + "reorder_and_upcast_attn": false, + "resid_pdrop": 0.1, + "scale_attn_by_inverse_layer_idx": false, + "scale_attn_weights": true, + "summary_activation": null, + "summary_first_dropout": 0.1, + "summary_proj_to_labels": true, + "summary_type": "cls_index", + "summary_use_proj": true, + "tie_word_embeddings": true, + "transformers_version": "5.5.3", + "use_cache": false, + "vocab_size": 36 +} diff --git a/timecost/c2/realtabformer/rtf-c2-20260501_033610/rtf_checkpoints/checkpoint-4300/generation_config.json b/timecost/c2/realtabformer/rtf-c2-20260501_033610/rtf_checkpoints/checkpoint-4300/generation_config.json new file mode 100644 index 0000000000000000000000000000000000000000..ffe89567780e75b5c22eade9be971483b9618f39 --- /dev/null +++ b/timecost/c2/realtabformer/rtf-c2-20260501_033610/rtf_checkpoints/checkpoint-4300/generation_config.json @@ -0,0 +1,9 @@ +{ + "_from_model_config": true, + "bos_token_id": 5, + "eos_token_id": 6, + "output_attentions": false, + "output_hidden_states": false, + "transformers_version": "5.5.3", + "use_cache": true +} diff --git a/timecost/c2/realtabformer/rtf-c2-20260501_033610/rtf_checkpoints/checkpoint-4300/model.safetensors b/timecost/c2/realtabformer/rtf-c2-20260501_033610/rtf_checkpoints/checkpoint-4300/model.safetensors new file mode 100644 index 0000000000000000000000000000000000000000..769dc52f98e9544708e5e52493a0d83ed2af2ce1 --- /dev/null +++ b/timecost/c2/realtabformer/rtf-c2-20260501_033610/rtf_checkpoints/checkpoint-4300/model.safetensors @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:412161a71761eeef7db7ee9e99f70a58569b716b8ad28d823aca5acfc4c6e41a +size 173379016 diff --git a/timecost/c2/realtabformer/rtf-c2-20260501_033610/rtf_checkpoints/checkpoint-4300/optimizer.pt b/timecost/c2/realtabformer/rtf-c2-20260501_033610/rtf_checkpoints/checkpoint-4300/optimizer.pt new file mode 100644 index 0000000000000000000000000000000000000000..758a69e7eb8a3f3180dac75496be2d62c33c4b03 --- /dev/null +++ b/timecost/c2/realtabformer/rtf-c2-20260501_033610/rtf_checkpoints/checkpoint-4300/optimizer.pt @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:bed5a4fb7f70abcfa00211ae88dd21f3a095e84b9631a95a2ddcc86010eafe4b +size 346807051 diff --git a/timecost/c2/realtabformer/rtf-c2-20260501_033610/rtf_checkpoints/checkpoint-4300/rng_state.pth b/timecost/c2/realtabformer/rtf-c2-20260501_033610/rtf_checkpoints/checkpoint-4300/rng_state.pth new file mode 100644 index 0000000000000000000000000000000000000000..e4c071a2770e5dc0eabf568a648d44dad4d0b31d --- /dev/null +++ b/timecost/c2/realtabformer/rtf-c2-20260501_033610/rtf_checkpoints/checkpoint-4300/rng_state.pth @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:d581829d4b9c43158e0b2d2368de67c84c41bf68dca49f46c5a2348dfd1f7981 +size 14645 diff --git a/timecost/c2/realtabformer/rtf-c2-20260501_033610/rtf_checkpoints/checkpoint-4300/scaler.pt b/timecost/c2/realtabformer/rtf-c2-20260501_033610/rtf_checkpoints/checkpoint-4300/scaler.pt new file mode 100644 index 0000000000000000000000000000000000000000..ffff10570ed4741cc5800c60bb8a2d46d72b9e69 --- /dev/null +++ b/timecost/c2/realtabformer/rtf-c2-20260501_033610/rtf_checkpoints/checkpoint-4300/scaler.pt @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:7b77bb946ed44eb6ecccc838f29d11ac7bdbf77de8b5138f44cbff526a9c81a4 +size 1383 diff --git a/timecost/c2/realtabformer/rtf-c2-20260501_033610/rtf_checkpoints/checkpoint-4300/scheduler.pt b/timecost/c2/realtabformer/rtf-c2-20260501_033610/rtf_checkpoints/checkpoint-4300/scheduler.pt new file mode 100644 index 0000000000000000000000000000000000000000..b2c899ff67dff5f859a6b9f24f3baa65a9b99588 --- /dev/null +++ b/timecost/c2/realtabformer/rtf-c2-20260501_033610/rtf_checkpoints/checkpoint-4300/scheduler.pt @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:15f01b89acc672b4183a2494909de945e4ae6dbe476cf4af90c061b7e3c973b9 +size 1465 diff --git a/timecost/c2/realtabformer/rtf-c2-20260501_033610/rtf_checkpoints/checkpoint-4300/trainer_state.json b/timecost/c2/realtabformer/rtf-c2-20260501_033610/rtf_checkpoints/checkpoint-4300/trainer_state.json new file mode 100644 index 0000000000000000000000000000000000000000..c7605bf7fabbbc70450a0f9993a801423e500410 --- /dev/null +++ b/timecost/c2/realtabformer/rtf-c2-20260501_033610/rtf_checkpoints/checkpoint-4300/trainer_state.json @@ -0,0 +1,335 @@ +{ + "best_global_step": null, + "best_metric": null, + "best_model_checkpoint": null, + "epoch": 97.73988439306359, + "eval_steps": 100, + "global_step": 4300, + "is_hyper_param_search": false, + "is_local_process_zero": true, + "is_world_process_zero": true, + "log_history": [ + { + "epoch": 2.277456647398844, + "grad_norm": 0.45774605870246887, + "learning_rate": 4.8875e-05, + "loss": 1.0554571533203125, + "step": 100 + }, + { + "epoch": 4.554913294797688, + "grad_norm": 0.4337577223777771, + "learning_rate": 4.773863636363636e-05, + "loss": 0.8850509643554687, + "step": 200 + }, + { + "epoch": 6.832369942196532, + "grad_norm": 0.6754257678985596, + "learning_rate": 4.660227272727273e-05, + "loss": 0.8728819274902344, + "step": 300 + }, + { + "epoch": 9.092485549132949, + "grad_norm": 0.32570239901542664, + "learning_rate": 4.546590909090909e-05, + "loss": 0.8641302490234375, + "step": 400 + }, + { + "epoch": 11.369942196531792, + "grad_norm": 0.38200652599334717, + "learning_rate": 4.432954545454546e-05, + "loss": 0.8559213256835938, + "step": 500 + }, + { + "epoch": 13.647398843930636, + "grad_norm": 0.458467036485672, + "learning_rate": 4.319318181818182e-05, + "loss": 0.8571351623535156, + "step": 600 + }, + { + "epoch": 15.92485549132948, + "grad_norm": 0.45177900791168213, + "learning_rate": 4.2056818181818186e-05, + "loss": 0.853203125, + "step": 700 + }, + { + "epoch": 18.184971098265898, + "grad_norm": 0.48006364703178406, + "learning_rate": 4.092045454545455e-05, + "loss": 0.8498992919921875, + "step": 800 + }, + { + "epoch": 20.46242774566474, + "grad_norm": 0.29602789878845215, + "learning_rate": 3.978409090909091e-05, + "loss": 0.8481210327148437, + "step": 900 + }, + { + "epoch": 22.739884393063583, + "grad_norm": 0.2875346839427948, + "learning_rate": 3.8647727272727275e-05, + "loss": 0.8433629608154297, + "step": 1000 + }, + { + "epoch": 25.0, + "grad_norm": 0.7051313519477844, + "learning_rate": 3.7511363636363636e-05, + "loss": 0.8442816925048828, + "step": 1100 + }, + { + "epoch": 27.277456647398843, + "grad_norm": 0.3138129711151123, + "learning_rate": 3.6375e-05, + "loss": 0.8439885711669922, + "step": 1200 + }, + { + "epoch": 29.55491329479769, + "grad_norm": 0.47190558910369873, + "learning_rate": 3.5238636363636364e-05, + "loss": 0.8407660675048828, + "step": 1300 + }, + { + "epoch": 31.832369942196532, + "grad_norm": 0.4098823666572571, + "learning_rate": 3.4102272727272725e-05, + "loss": 0.8402595520019531, + "step": 1400 + }, + { + "epoch": 34.092485549132945, + "grad_norm": 0.28894272446632385, + "learning_rate": 3.296590909090909e-05, + "loss": 0.8409199523925781, + "step": 1500 + }, + { + "epoch": 36.369942196531795, + "grad_norm": 0.35202890634536743, + "learning_rate": 3.182954545454546e-05, + "loss": 0.838973388671875, + "step": 1600 + }, + { + "epoch": 38.64739884393064, + "grad_norm": 0.3858259618282318, + "learning_rate": 3.069318181818182e-05, + "loss": 0.8387539672851563, + "step": 1700 + }, + { + "epoch": 40.92485549132948, + "grad_norm": 0.3619968593120575, + "learning_rate": 2.9556818181818184e-05, + "loss": 0.8389186096191407, + "step": 1800 + }, + { + "epoch": 43.1849710982659, + "grad_norm": 0.2380709946155548, + "learning_rate": 2.8420454545454545e-05, + "loss": 0.8381841278076172, + "step": 1900 + }, + { + "epoch": 45.46242774566474, + "grad_norm": 0.2774685323238373, + "learning_rate": 2.728409090909091e-05, + "loss": 0.8379978942871094, + "step": 2000 + }, + { + "epoch": 47.73988439306358, + "grad_norm": 0.3966612219810486, + "learning_rate": 2.6147727272727273e-05, + "loss": 0.8361636352539062, + "step": 2100 + }, + { + "epoch": 50.0, + "grad_norm": 0.6858490705490112, + "learning_rate": 2.5011363636363637e-05, + "loss": 0.8361389923095703, + "step": 2200 + }, + { + "epoch": 52.27745664739884, + "grad_norm": 0.27801573276519775, + "learning_rate": 2.3875e-05, + "loss": 0.8344792938232422, + "step": 2300 + }, + { + "epoch": 54.554913294797686, + "grad_norm": 0.3022511303424835, + "learning_rate": 2.2738636363636365e-05, + "loss": 0.8358657836914063, + "step": 2400 + }, + { + "epoch": 56.83236994219653, + "grad_norm": 0.37043297290802, + "learning_rate": 2.160227272727273e-05, + "loss": 0.8339907836914062, + "step": 2500 + }, + { + "epoch": 59.092485549132945, + "grad_norm": 0.38185206055641174, + "learning_rate": 2.046590909090909e-05, + "loss": 0.8342379760742188, + "step": 2600 + }, + { + "epoch": 61.369942196531795, + "grad_norm": 0.326172411441803, + "learning_rate": 1.9329545454545457e-05, + "loss": 0.834858169555664, + "step": 2700 + }, + { + "epoch": 63.64739884393064, + "grad_norm": 0.34918302297592163, + "learning_rate": 1.819318181818182e-05, + "loss": 0.8337675476074219, + "step": 2800 + }, + { + "epoch": 65.92485549132948, + "grad_norm": 0.2997020483016968, + "learning_rate": 1.7056818181818182e-05, + "loss": 0.8324470520019531, + "step": 2900 + }, + { + "epoch": 68.18497109826589, + "grad_norm": 0.23717710375785828, + "learning_rate": 1.5920454545454546e-05, + "loss": 0.8340346527099609, + "step": 3000 + }, + { + "epoch": 70.46242774566474, + "grad_norm": 0.28393399715423584, + "learning_rate": 1.4784090909090908e-05, + "loss": 0.8327864074707031, + "step": 3100 + }, + { + "epoch": 72.73988439306359, + "grad_norm": 0.2693222165107727, + "learning_rate": 1.3647727272727274e-05, + "loss": 0.8334049987792969, + "step": 3200 + }, + { + "epoch": 75.0, + "grad_norm": 0.6753465533256531, + "learning_rate": 1.2511363636363638e-05, + "loss": 0.8321996307373047, + "step": 3300 + }, + { + "epoch": 77.27745664739885, + "grad_norm": 0.2996279299259186, + "learning_rate": 1.1375e-05, + "loss": 0.8326959991455078, + "step": 3400 + }, + { + "epoch": 79.55491329479769, + "grad_norm": 0.2881743907928467, + "learning_rate": 1.0238636363636364e-05, + "loss": 0.8314301300048829, + "step": 3500 + }, + { + "epoch": 81.83236994219654, + "grad_norm": 0.24612846970558167, + "learning_rate": 9.102272727272727e-06, + "loss": 0.83193115234375, + "step": 3600 + }, + { + "epoch": 84.09248554913295, + "grad_norm": 0.24222785234451294, + "learning_rate": 7.965909090909092e-06, + "loss": 0.8309139251708985, + "step": 3700 + }, + { + "epoch": 86.3699421965318, + "grad_norm": 0.3278041481971741, + "learning_rate": 6.829545454545455e-06, + "loss": 0.83010498046875, + "step": 3800 + }, + { + "epoch": 88.64739884393063, + "grad_norm": 0.2609911561012268, + "learning_rate": 5.693181818181818e-06, + "loss": 0.8300800323486328, + "step": 3900 + }, + { + "epoch": 90.92485549132948, + "grad_norm": 0.24667981266975403, + "learning_rate": 4.556818181818182e-06, + "loss": 0.8305992126464844, + "step": 4000 + }, + { + "epoch": 93.18497109826589, + "grad_norm": 0.2552596628665924, + "learning_rate": 3.4204545454545453e-06, + "loss": 0.8291678619384766, + "step": 4100 + }, + { + "epoch": 95.46242774566474, + "grad_norm": 0.40495359897613525, + "learning_rate": 2.2840909090909093e-06, + "loss": 0.8284315490722656, + "step": 4200 + }, + { + "epoch": 97.73988439306359, + "grad_norm": 0.34313035011291504, + "learning_rate": 1.1477272727272727e-06, + "loss": 0.8283676147460938, + "step": 4300 + } + ], + "logging_steps": 100, + "max_steps": 4400, + "num_input_tokens_seen": 0, + "num_train_epochs": 100, + "save_steps": 100, + "stateful_callbacks": { + "TrainerControl": { + "args": { + "should_epoch_stop": false, + "should_evaluate": false, + "should_log": false, + "should_save": true, + "should_training_stop": false + }, + "attributes": {} + } + }, + "total_flos": 310213849890816.0, + "train_batch_size": 8, + "trial_name": null, + "trial_params": null +} diff --git a/timecost/c2/realtabformer/rtf-c2-20260501_033610/rtf_checkpoints/checkpoint-4300/training_args.bin b/timecost/c2/realtabformer/rtf-c2-20260501_033610/rtf_checkpoints/checkpoint-4300/training_args.bin new file mode 100644 index 0000000000000000000000000000000000000000..34d68dc0e0fe1c1f12a2e581dd1b166aa7178a9e --- /dev/null +++ b/timecost/c2/realtabformer/rtf-c2-20260501_033610/rtf_checkpoints/checkpoint-4300/training_args.bin @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:9e2cd88337d1d846c6918d2b3b63fa3e5c93f12fefc082497590da854a564607 +size 5201 diff --git a/timecost/c2/realtabformer/rtf-c2-20260501_033610/rtf_checkpoints/checkpoint-4312/config.json b/timecost/c2/realtabformer/rtf-c2-20260501_033610/rtf_checkpoints/checkpoint-4312/config.json new file mode 100644 index 0000000000000000000000000000000000000000..abc7bb2762d6bff3016eb042e7a2ac4abb80ea85 --- /dev/null +++ b/timecost/c2/realtabformer/rtf-c2-20260501_033610/rtf_checkpoints/checkpoint-4312/config.json @@ -0,0 +1,34 @@ +{ + "activation_function": "gelu_new", + "add_cross_attention": false, + "architectures": [ + "GPT2LMHeadModel" + ], + "attn_pdrop": 0.1, + "bos_token_id": 5, + "dtype": "float32", + "embd_pdrop": 0.1, + "eos_token_id": 6, + "initializer_range": 0.02, + "layer_norm_epsilon": 1e-05, + "model_type": "gpt2", + "n_embd": 768, + "n_head": 12, + "n_inner": null, + "n_layer": 6, + "n_positions": 1024, + "pad_token_id": null, + "reorder_and_upcast_attn": false, + "resid_pdrop": 0.1, + "scale_attn_by_inverse_layer_idx": false, + "scale_attn_weights": true, + "summary_activation": null, + "summary_first_dropout": 0.1, + "summary_proj_to_labels": true, + "summary_type": "cls_index", + "summary_use_proj": true, + "tie_word_embeddings": true, + "transformers_version": "5.5.3", + "use_cache": false, + "vocab_size": 36 +} diff --git a/timecost/c2/realtabformer/rtf-c2-20260501_033610/rtf_checkpoints/checkpoint-4312/generation_config.json b/timecost/c2/realtabformer/rtf-c2-20260501_033610/rtf_checkpoints/checkpoint-4312/generation_config.json new file mode 100644 index 0000000000000000000000000000000000000000..ffe89567780e75b5c22eade9be971483b9618f39 --- /dev/null +++ b/timecost/c2/realtabformer/rtf-c2-20260501_033610/rtf_checkpoints/checkpoint-4312/generation_config.json @@ -0,0 +1,9 @@ +{ + "_from_model_config": true, + "bos_token_id": 5, + "eos_token_id": 6, + "output_attentions": false, + "output_hidden_states": false, + "transformers_version": "5.5.3", + "use_cache": true +} diff --git a/timecost/c2/realtabformer/rtf-c2-20260501_033610/rtf_checkpoints/checkpoint-4312/model.safetensors b/timecost/c2/realtabformer/rtf-c2-20260501_033610/rtf_checkpoints/checkpoint-4312/model.safetensors new file mode 100644 index 0000000000000000000000000000000000000000..a47f16f9051eda7ee73aba98eb2ac02b01298425 --- /dev/null +++ b/timecost/c2/realtabformer/rtf-c2-20260501_033610/rtf_checkpoints/checkpoint-4312/model.safetensors @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:1127260854a925fce1946f1f22daae9fa2ea6292f7b9b839d8fbadf4b2ac7712 +size 173379016 diff --git a/timecost/c2/realtabformer/rtf-c2-20260501_033610/rtf_checkpoints/checkpoint-4312/optimizer.pt b/timecost/c2/realtabformer/rtf-c2-20260501_033610/rtf_checkpoints/checkpoint-4312/optimizer.pt new file mode 100644 index 0000000000000000000000000000000000000000..7f3b50f3c2c91a233299dc1adc913a4319bf2484 --- /dev/null +++ b/timecost/c2/realtabformer/rtf-c2-20260501_033610/rtf_checkpoints/checkpoint-4312/optimizer.pt @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:fc8ef5d4eec8704deec63e1d814b4ad3b305cd9ec4cdbe633dabfe7a69544b8c +size 346807051 diff --git a/timecost/c2/realtabformer/rtf-c2-20260501_033610/rtf_checkpoints/checkpoint-4312/rng_state.pth b/timecost/c2/realtabformer/rtf-c2-20260501_033610/rtf_checkpoints/checkpoint-4312/rng_state.pth new file mode 100644 index 0000000000000000000000000000000000000000..580a073b91020747693fd9f9aa90ce102346c56d --- /dev/null +++ b/timecost/c2/realtabformer/rtf-c2-20260501_033610/rtf_checkpoints/checkpoint-4312/rng_state.pth @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:4bffc8ae4ff2d687518986aa40044de1cb7ff133957057c99316aa809f8247e7 +size 14645 diff --git a/timecost/c2/realtabformer/rtf-c2-20260501_033610/rtf_checkpoints/checkpoint-4312/scaler.pt b/timecost/c2/realtabformer/rtf-c2-20260501_033610/rtf_checkpoints/checkpoint-4312/scaler.pt new file mode 100644 index 0000000000000000000000000000000000000000..c5c789a6d5ebd5b1f782838df6924bef6eafda80 --- /dev/null +++ b/timecost/c2/realtabformer/rtf-c2-20260501_033610/rtf_checkpoints/checkpoint-4312/scaler.pt @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:33c18d99842aa93911d0cea99be600a9e53603fb367d4c08bfce14c619ae020c +size 1383 diff --git a/timecost/c2/realtabformer/rtf-c2-20260501_033610/rtf_checkpoints/checkpoint-4312/scheduler.pt b/timecost/c2/realtabformer/rtf-c2-20260501_033610/rtf_checkpoints/checkpoint-4312/scheduler.pt new file mode 100644 index 0000000000000000000000000000000000000000..48fba410ee95b5e58a78491251d480b2e44a6c52 --- /dev/null +++ b/timecost/c2/realtabformer/rtf-c2-20260501_033610/rtf_checkpoints/checkpoint-4312/scheduler.pt @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:3d9d6799dd839046f4c93532b47412559043461a5dd97c5b25bf78d02d9ce20b +size 1465 diff --git a/timecost/c2/realtabformer/rtf-c2-20260501_033610/rtf_checkpoints/checkpoint-4312/trainer_state.json b/timecost/c2/realtabformer/rtf-c2-20260501_033610/rtf_checkpoints/checkpoint-4312/trainer_state.json new file mode 100644 index 0000000000000000000000000000000000000000..f941334e64ebe70d10ded27b51914b47faff0ae5 --- /dev/null +++ b/timecost/c2/realtabformer/rtf-c2-20260501_033610/rtf_checkpoints/checkpoint-4312/trainer_state.json @@ -0,0 +1,335 @@ +{ + "best_global_step": null, + "best_metric": null, + "best_model_checkpoint": null, + "epoch": 98.0, + "eval_steps": 100, + "global_step": 4312, + "is_hyper_param_search": false, + "is_local_process_zero": true, + "is_world_process_zero": true, + "log_history": [ + { + "epoch": 2.277456647398844, + "grad_norm": 0.45774605870246887, + "learning_rate": 4.8875e-05, + "loss": 1.0554571533203125, + "step": 100 + }, + { + "epoch": 4.554913294797688, + "grad_norm": 0.4337577223777771, + "learning_rate": 4.773863636363636e-05, + "loss": 0.8850509643554687, + "step": 200 + }, + { + "epoch": 6.832369942196532, + "grad_norm": 0.6754257678985596, + "learning_rate": 4.660227272727273e-05, + "loss": 0.8728819274902344, + "step": 300 + }, + { + "epoch": 9.092485549132949, + "grad_norm": 0.32570239901542664, + "learning_rate": 4.546590909090909e-05, + "loss": 0.8641302490234375, + "step": 400 + }, + { + "epoch": 11.369942196531792, + "grad_norm": 0.38200652599334717, + "learning_rate": 4.432954545454546e-05, + "loss": 0.8559213256835938, + "step": 500 + }, + { + "epoch": 13.647398843930636, + "grad_norm": 0.458467036485672, + "learning_rate": 4.319318181818182e-05, + "loss": 0.8571351623535156, + "step": 600 + }, + { + "epoch": 15.92485549132948, + "grad_norm": 0.45177900791168213, + "learning_rate": 4.2056818181818186e-05, + "loss": 0.853203125, + "step": 700 + }, + { + "epoch": 18.184971098265898, + "grad_norm": 0.48006364703178406, + "learning_rate": 4.092045454545455e-05, + "loss": 0.8498992919921875, + "step": 800 + }, + { + "epoch": 20.46242774566474, + "grad_norm": 0.29602789878845215, + "learning_rate": 3.978409090909091e-05, + "loss": 0.8481210327148437, + "step": 900 + }, + { + "epoch": 22.739884393063583, + "grad_norm": 0.2875346839427948, + "learning_rate": 3.8647727272727275e-05, + "loss": 0.8433629608154297, + "step": 1000 + }, + { + "epoch": 25.0, + "grad_norm": 0.7051313519477844, + "learning_rate": 3.7511363636363636e-05, + "loss": 0.8442816925048828, + "step": 1100 + }, + { + "epoch": 27.277456647398843, + "grad_norm": 0.3138129711151123, + "learning_rate": 3.6375e-05, + "loss": 0.8439885711669922, + "step": 1200 + }, + { + "epoch": 29.55491329479769, + "grad_norm": 0.47190558910369873, + "learning_rate": 3.5238636363636364e-05, + "loss": 0.8407660675048828, + "step": 1300 + }, + { + "epoch": 31.832369942196532, + "grad_norm": 0.4098823666572571, + "learning_rate": 3.4102272727272725e-05, + "loss": 0.8402595520019531, + "step": 1400 + }, + { + "epoch": 34.092485549132945, + "grad_norm": 0.28894272446632385, + "learning_rate": 3.296590909090909e-05, + "loss": 0.8409199523925781, + "step": 1500 + }, + { + "epoch": 36.369942196531795, + "grad_norm": 0.35202890634536743, + "learning_rate": 3.182954545454546e-05, + "loss": 0.838973388671875, + "step": 1600 + }, + { + "epoch": 38.64739884393064, + "grad_norm": 0.3858259618282318, + "learning_rate": 3.069318181818182e-05, + "loss": 0.8387539672851563, + "step": 1700 + }, + { + "epoch": 40.92485549132948, + "grad_norm": 0.3619968593120575, + "learning_rate": 2.9556818181818184e-05, + "loss": 0.8389186096191407, + "step": 1800 + }, + { + "epoch": 43.1849710982659, + "grad_norm": 0.2380709946155548, + "learning_rate": 2.8420454545454545e-05, + "loss": 0.8381841278076172, + "step": 1900 + }, + { + "epoch": 45.46242774566474, + "grad_norm": 0.2774685323238373, + "learning_rate": 2.728409090909091e-05, + "loss": 0.8379978942871094, + "step": 2000 + }, + { + "epoch": 47.73988439306358, + "grad_norm": 0.3966612219810486, + "learning_rate": 2.6147727272727273e-05, + "loss": 0.8361636352539062, + "step": 2100 + }, + { + "epoch": 50.0, + "grad_norm": 0.6858490705490112, + "learning_rate": 2.5011363636363637e-05, + "loss": 0.8361389923095703, + "step": 2200 + }, + { + "epoch": 52.27745664739884, + "grad_norm": 0.27801573276519775, + "learning_rate": 2.3875e-05, + "loss": 0.8344792938232422, + "step": 2300 + }, + { + "epoch": 54.554913294797686, + "grad_norm": 0.3022511303424835, + "learning_rate": 2.2738636363636365e-05, + "loss": 0.8358657836914063, + "step": 2400 + }, + { + "epoch": 56.83236994219653, + "grad_norm": 0.37043297290802, + "learning_rate": 2.160227272727273e-05, + "loss": 0.8339907836914062, + "step": 2500 + }, + { + "epoch": 59.092485549132945, + "grad_norm": 0.38185206055641174, + "learning_rate": 2.046590909090909e-05, + "loss": 0.8342379760742188, + "step": 2600 + }, + { + "epoch": 61.369942196531795, + "grad_norm": 0.326172411441803, + "learning_rate": 1.9329545454545457e-05, + "loss": 0.834858169555664, + "step": 2700 + }, + { + "epoch": 63.64739884393064, + "grad_norm": 0.34918302297592163, + "learning_rate": 1.819318181818182e-05, + "loss": 0.8337675476074219, + "step": 2800 + }, + { + "epoch": 65.92485549132948, + "grad_norm": 0.2997020483016968, + "learning_rate": 1.7056818181818182e-05, + "loss": 0.8324470520019531, + "step": 2900 + }, + { + "epoch": 68.18497109826589, + "grad_norm": 0.23717710375785828, + "learning_rate": 1.5920454545454546e-05, + "loss": 0.8340346527099609, + "step": 3000 + }, + { + "epoch": 70.46242774566474, + "grad_norm": 0.28393399715423584, + "learning_rate": 1.4784090909090908e-05, + "loss": 0.8327864074707031, + "step": 3100 + }, + { + "epoch": 72.73988439306359, + "grad_norm": 0.2693222165107727, + "learning_rate": 1.3647727272727274e-05, + "loss": 0.8334049987792969, + "step": 3200 + }, + { + "epoch": 75.0, + "grad_norm": 0.6753465533256531, + "learning_rate": 1.2511363636363638e-05, + "loss": 0.8321996307373047, + "step": 3300 + }, + { + "epoch": 77.27745664739885, + "grad_norm": 0.2996279299259186, + "learning_rate": 1.1375e-05, + "loss": 0.8326959991455078, + "step": 3400 + }, + { + "epoch": 79.55491329479769, + "grad_norm": 0.2881743907928467, + "learning_rate": 1.0238636363636364e-05, + "loss": 0.8314301300048829, + "step": 3500 + }, + { + "epoch": 81.83236994219654, + "grad_norm": 0.24612846970558167, + "learning_rate": 9.102272727272727e-06, + "loss": 0.83193115234375, + "step": 3600 + }, + { + "epoch": 84.09248554913295, + "grad_norm": 0.24222785234451294, + "learning_rate": 7.965909090909092e-06, + "loss": 0.8309139251708985, + "step": 3700 + }, + { + "epoch": 86.3699421965318, + "grad_norm": 0.3278041481971741, + "learning_rate": 6.829545454545455e-06, + "loss": 0.83010498046875, + "step": 3800 + }, + { + "epoch": 88.64739884393063, + "grad_norm": 0.2609911561012268, + "learning_rate": 5.693181818181818e-06, + "loss": 0.8300800323486328, + "step": 3900 + }, + { + "epoch": 90.92485549132948, + "grad_norm": 0.24667981266975403, + "learning_rate": 4.556818181818182e-06, + "loss": 0.8305992126464844, + "step": 4000 + }, + { + "epoch": 93.18497109826589, + "grad_norm": 0.2552596628665924, + "learning_rate": 3.4204545454545453e-06, + "loss": 0.8291678619384766, + "step": 4100 + }, + { + "epoch": 95.46242774566474, + "grad_norm": 0.40495359897613525, + "learning_rate": 2.2840909090909093e-06, + "loss": 0.8284315490722656, + "step": 4200 + }, + { + "epoch": 97.73988439306359, + "grad_norm": 0.34313035011291504, + "learning_rate": 1.1477272727272727e-06, + "loss": 0.8283676147460938, + "step": 4300 + } + ], + "logging_steps": 100, + "max_steps": 4400, + "num_input_tokens_seen": 0, + "num_train_epochs": 100, + "save_steps": 100, + "stateful_callbacks": { + "TrainerControl": { + "args": { + "should_epoch_stop": false, + "should_evaluate": false, + "should_log": false, + "should_save": true, + "should_training_stop": false + }, + "attributes": {} + } + }, + "total_flos": 311036016033792.0, + "train_batch_size": 8, + "trial_name": null, + "trial_params": null +} diff --git a/timecost/c2/realtabformer/rtf-c2-20260501_033610/rtf_checkpoints/checkpoint-4312/training_args.bin b/timecost/c2/realtabformer/rtf-c2-20260501_033610/rtf_checkpoints/checkpoint-4312/training_args.bin new file mode 100644 index 0000000000000000000000000000000000000000..34d68dc0e0fe1c1f12a2e581dd1b166aa7178a9e --- /dev/null +++ b/timecost/c2/realtabformer/rtf-c2-20260501_033610/rtf_checkpoints/checkpoint-4312/training_args.bin @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:9e2cd88337d1d846c6918d2b3b63fa3e5c93f12fefc082497590da854a564607 +size 5201 diff --git a/timecost/c2/realtabformer/rtf-c2-20260501_033610/rtf_checkpoints/checkpoint-4356/config.json b/timecost/c2/realtabformer/rtf-c2-20260501_033610/rtf_checkpoints/checkpoint-4356/config.json new file mode 100644 index 0000000000000000000000000000000000000000..abc7bb2762d6bff3016eb042e7a2ac4abb80ea85 --- /dev/null +++ b/timecost/c2/realtabformer/rtf-c2-20260501_033610/rtf_checkpoints/checkpoint-4356/config.json @@ -0,0 +1,34 @@ +{ + "activation_function": "gelu_new", + "add_cross_attention": false, + "architectures": [ + "GPT2LMHeadModel" + ], + "attn_pdrop": 0.1, + "bos_token_id": 5, + "dtype": "float32", + "embd_pdrop": 0.1, + "eos_token_id": 6, + "initializer_range": 0.02, + "layer_norm_epsilon": 1e-05, + "model_type": "gpt2", + "n_embd": 768, + "n_head": 12, + "n_inner": null, + "n_layer": 6, + "n_positions": 1024, + "pad_token_id": null, + "reorder_and_upcast_attn": false, + "resid_pdrop": 0.1, + "scale_attn_by_inverse_layer_idx": false, + "scale_attn_weights": true, + "summary_activation": null, + "summary_first_dropout": 0.1, + "summary_proj_to_labels": true, + "summary_type": "cls_index", + "summary_use_proj": true, + "tie_word_embeddings": true, + "transformers_version": "5.5.3", + "use_cache": false, + "vocab_size": 36 +} diff --git a/timecost/c2/realtabformer/rtf-c2-20260501_033610/rtf_checkpoints/checkpoint-4356/generation_config.json b/timecost/c2/realtabformer/rtf-c2-20260501_033610/rtf_checkpoints/checkpoint-4356/generation_config.json new file mode 100644 index 0000000000000000000000000000000000000000..ffe89567780e75b5c22eade9be971483b9618f39 --- /dev/null +++ b/timecost/c2/realtabformer/rtf-c2-20260501_033610/rtf_checkpoints/checkpoint-4356/generation_config.json @@ -0,0 +1,9 @@ +{ + "_from_model_config": true, + "bos_token_id": 5, + "eos_token_id": 6, + "output_attentions": false, + "output_hidden_states": false, + "transformers_version": "5.5.3", + "use_cache": true +} diff --git a/timecost/c2/realtabformer/rtf-c2-20260501_033610/rtf_checkpoints/checkpoint-4356/model.safetensors b/timecost/c2/realtabformer/rtf-c2-20260501_033610/rtf_checkpoints/checkpoint-4356/model.safetensors new file mode 100644 index 0000000000000000000000000000000000000000..ac46eb31562d19771fcba9a83dd1cfd16b026201 --- /dev/null +++ b/timecost/c2/realtabformer/rtf-c2-20260501_033610/rtf_checkpoints/checkpoint-4356/model.safetensors @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:596c372699db0c6fbabd77f7d84f9c3989bfeccdbeac93b0e2ff73ac64c525ca +size 173379016 diff --git a/timecost/c2/realtabformer/rtf-c2-20260501_033610/rtf_checkpoints/checkpoint-4356/optimizer.pt b/timecost/c2/realtabformer/rtf-c2-20260501_033610/rtf_checkpoints/checkpoint-4356/optimizer.pt new file mode 100644 index 0000000000000000000000000000000000000000..e6959a1a6b56319c1e9e359f04f532d71fddd454 --- /dev/null +++ b/timecost/c2/realtabformer/rtf-c2-20260501_033610/rtf_checkpoints/checkpoint-4356/optimizer.pt @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:3192a821bc1914bc299643c309b0e3204d40620a927230f528bdbd1300f77be4 +size 346807051 diff --git a/timecost/c2/realtabformer/rtf-c2-20260501_033610/rtf_checkpoints/checkpoint-4356/rng_state.pth b/timecost/c2/realtabformer/rtf-c2-20260501_033610/rtf_checkpoints/checkpoint-4356/rng_state.pth new file mode 100644 index 0000000000000000000000000000000000000000..395a76c29f783595f8f4eab0284ff0274576cb8d --- /dev/null +++ b/timecost/c2/realtabformer/rtf-c2-20260501_033610/rtf_checkpoints/checkpoint-4356/rng_state.pth @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:4c67e2085d3d5609bf6ee3832047170b47dd41165a5d8c1803a7ff21b592c744 +size 14645 diff --git a/timecost/c2/realtabformer/rtf-c2-20260501_033610/rtf_checkpoints/checkpoint-4356/scaler.pt b/timecost/c2/realtabformer/rtf-c2-20260501_033610/rtf_checkpoints/checkpoint-4356/scaler.pt new file mode 100644 index 0000000000000000000000000000000000000000..ce5fdcf009bb67e9bccde9082567d48cfcede747 --- /dev/null +++ b/timecost/c2/realtabformer/rtf-c2-20260501_033610/rtf_checkpoints/checkpoint-4356/scaler.pt @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:1e021cff339e4edd3548f3b697bb29ffdaf3fba7dec6f2eeebadec656e0272f9 +size 1383 diff --git a/timecost/c2/realtabformer/rtf-c2-20260501_033610/rtf_checkpoints/checkpoint-4356/scheduler.pt b/timecost/c2/realtabformer/rtf-c2-20260501_033610/rtf_checkpoints/checkpoint-4356/scheduler.pt new file mode 100644 index 0000000000000000000000000000000000000000..d3551307752340d1e0f23f7261459170310b7b5f --- /dev/null +++ b/timecost/c2/realtabformer/rtf-c2-20260501_033610/rtf_checkpoints/checkpoint-4356/scheduler.pt @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:53e0aa8f26ad1221547a743c1ed75af3a624f87d1f833596d3c3313cb311aac8 +size 1465 diff --git a/timecost/c2/realtabformer/rtf-c2-20260501_033610/rtf_checkpoints/checkpoint-4356/trainer_state.json b/timecost/c2/realtabformer/rtf-c2-20260501_033610/rtf_checkpoints/checkpoint-4356/trainer_state.json new file mode 100644 index 0000000000000000000000000000000000000000..63ef23f1005a68cd5918fac20f1e64692446cb55 --- /dev/null +++ b/timecost/c2/realtabformer/rtf-c2-20260501_033610/rtf_checkpoints/checkpoint-4356/trainer_state.json @@ -0,0 +1,335 @@ +{ + "best_global_step": null, + "best_metric": null, + "best_model_checkpoint": null, + "epoch": 99.0, + "eval_steps": 100, + "global_step": 4356, + "is_hyper_param_search": false, + "is_local_process_zero": true, + "is_world_process_zero": true, + "log_history": [ + { + "epoch": 2.277456647398844, + "grad_norm": 0.45774605870246887, + "learning_rate": 4.8875e-05, + "loss": 1.0554571533203125, + "step": 100 + }, + { + "epoch": 4.554913294797688, + "grad_norm": 0.4337577223777771, + "learning_rate": 4.773863636363636e-05, + "loss": 0.8850509643554687, + "step": 200 + }, + { + "epoch": 6.832369942196532, + "grad_norm": 0.6754257678985596, + "learning_rate": 4.660227272727273e-05, + "loss": 0.8728819274902344, + "step": 300 + }, + { + "epoch": 9.092485549132949, + "grad_norm": 0.32570239901542664, + "learning_rate": 4.546590909090909e-05, + "loss": 0.8641302490234375, + "step": 400 + }, + { + "epoch": 11.369942196531792, + "grad_norm": 0.38200652599334717, + "learning_rate": 4.432954545454546e-05, + "loss": 0.8559213256835938, + "step": 500 + }, + { + "epoch": 13.647398843930636, + "grad_norm": 0.458467036485672, + "learning_rate": 4.319318181818182e-05, + "loss": 0.8571351623535156, + "step": 600 + }, + { + "epoch": 15.92485549132948, + "grad_norm": 0.45177900791168213, + "learning_rate": 4.2056818181818186e-05, + "loss": 0.853203125, + "step": 700 + }, + { + "epoch": 18.184971098265898, + "grad_norm": 0.48006364703178406, + "learning_rate": 4.092045454545455e-05, + "loss": 0.8498992919921875, + "step": 800 + }, + { + "epoch": 20.46242774566474, + "grad_norm": 0.29602789878845215, + "learning_rate": 3.978409090909091e-05, + "loss": 0.8481210327148437, + "step": 900 + }, + { + "epoch": 22.739884393063583, + "grad_norm": 0.2875346839427948, + "learning_rate": 3.8647727272727275e-05, + "loss": 0.8433629608154297, + "step": 1000 + }, + { + "epoch": 25.0, + "grad_norm": 0.7051313519477844, + "learning_rate": 3.7511363636363636e-05, + "loss": 0.8442816925048828, + "step": 1100 + }, + { + "epoch": 27.277456647398843, + "grad_norm": 0.3138129711151123, + "learning_rate": 3.6375e-05, + "loss": 0.8439885711669922, + "step": 1200 + }, + { + "epoch": 29.55491329479769, + "grad_norm": 0.47190558910369873, + "learning_rate": 3.5238636363636364e-05, + "loss": 0.8407660675048828, + "step": 1300 + }, + { + "epoch": 31.832369942196532, + "grad_norm": 0.4098823666572571, + "learning_rate": 3.4102272727272725e-05, + "loss": 0.8402595520019531, + "step": 1400 + }, + { + "epoch": 34.092485549132945, + "grad_norm": 0.28894272446632385, + "learning_rate": 3.296590909090909e-05, + "loss": 0.8409199523925781, + "step": 1500 + }, + { + "epoch": 36.369942196531795, + "grad_norm": 0.35202890634536743, + "learning_rate": 3.182954545454546e-05, + "loss": 0.838973388671875, + "step": 1600 + }, + { + "epoch": 38.64739884393064, + "grad_norm": 0.3858259618282318, + "learning_rate": 3.069318181818182e-05, + "loss": 0.8387539672851563, + "step": 1700 + }, + { + "epoch": 40.92485549132948, + "grad_norm": 0.3619968593120575, + "learning_rate": 2.9556818181818184e-05, + "loss": 0.8389186096191407, + "step": 1800 + }, + { + "epoch": 43.1849710982659, + "grad_norm": 0.2380709946155548, + "learning_rate": 2.8420454545454545e-05, + "loss": 0.8381841278076172, + "step": 1900 + }, + { + "epoch": 45.46242774566474, + "grad_norm": 0.2774685323238373, + "learning_rate": 2.728409090909091e-05, + "loss": 0.8379978942871094, + "step": 2000 + }, + { + "epoch": 47.73988439306358, + "grad_norm": 0.3966612219810486, + "learning_rate": 2.6147727272727273e-05, + "loss": 0.8361636352539062, + "step": 2100 + }, + { + "epoch": 50.0, + "grad_norm": 0.6858490705490112, + "learning_rate": 2.5011363636363637e-05, + "loss": 0.8361389923095703, + "step": 2200 + }, + { + "epoch": 52.27745664739884, + "grad_norm": 0.27801573276519775, + "learning_rate": 2.3875e-05, + "loss": 0.8344792938232422, + "step": 2300 + }, + { + "epoch": 54.554913294797686, + "grad_norm": 0.3022511303424835, + "learning_rate": 2.2738636363636365e-05, + "loss": 0.8358657836914063, + "step": 2400 + }, + { + "epoch": 56.83236994219653, + "grad_norm": 0.37043297290802, + "learning_rate": 2.160227272727273e-05, + "loss": 0.8339907836914062, + "step": 2500 + }, + { + "epoch": 59.092485549132945, + "grad_norm": 0.38185206055641174, + "learning_rate": 2.046590909090909e-05, + "loss": 0.8342379760742188, + "step": 2600 + }, + { + "epoch": 61.369942196531795, + "grad_norm": 0.326172411441803, + "learning_rate": 1.9329545454545457e-05, + "loss": 0.834858169555664, + "step": 2700 + }, + { + "epoch": 63.64739884393064, + "grad_norm": 0.34918302297592163, + "learning_rate": 1.819318181818182e-05, + "loss": 0.8337675476074219, + "step": 2800 + }, + { + "epoch": 65.92485549132948, + "grad_norm": 0.2997020483016968, + "learning_rate": 1.7056818181818182e-05, + "loss": 0.8324470520019531, + "step": 2900 + }, + { + "epoch": 68.18497109826589, + "grad_norm": 0.23717710375785828, + "learning_rate": 1.5920454545454546e-05, + "loss": 0.8340346527099609, + "step": 3000 + }, + { + "epoch": 70.46242774566474, + "grad_norm": 0.28393399715423584, + "learning_rate": 1.4784090909090908e-05, + "loss": 0.8327864074707031, + "step": 3100 + }, + { + "epoch": 72.73988439306359, + "grad_norm": 0.2693222165107727, + "learning_rate": 1.3647727272727274e-05, + "loss": 0.8334049987792969, + "step": 3200 + }, + { + "epoch": 75.0, + "grad_norm": 0.6753465533256531, + "learning_rate": 1.2511363636363638e-05, + "loss": 0.8321996307373047, + "step": 3300 + }, + { + "epoch": 77.27745664739885, + "grad_norm": 0.2996279299259186, + "learning_rate": 1.1375e-05, + "loss": 0.8326959991455078, + "step": 3400 + }, + { + "epoch": 79.55491329479769, + "grad_norm": 0.2881743907928467, + "learning_rate": 1.0238636363636364e-05, + "loss": 0.8314301300048829, + "step": 3500 + }, + { + "epoch": 81.83236994219654, + "grad_norm": 0.24612846970558167, + "learning_rate": 9.102272727272727e-06, + "loss": 0.83193115234375, + "step": 3600 + }, + { + "epoch": 84.09248554913295, + "grad_norm": 0.24222785234451294, + "learning_rate": 7.965909090909092e-06, + "loss": 0.8309139251708985, + "step": 3700 + }, + { + "epoch": 86.3699421965318, + "grad_norm": 0.3278041481971741, + "learning_rate": 6.829545454545455e-06, + "loss": 0.83010498046875, + "step": 3800 + }, + { + "epoch": 88.64739884393063, + "grad_norm": 0.2609911561012268, + "learning_rate": 5.693181818181818e-06, + "loss": 0.8300800323486328, + "step": 3900 + }, + { + "epoch": 90.92485549132948, + "grad_norm": 0.24667981266975403, + "learning_rate": 4.556818181818182e-06, + "loss": 0.8305992126464844, + "step": 4000 + }, + { + "epoch": 93.18497109826589, + "grad_norm": 0.2552596628665924, + "learning_rate": 3.4204545454545453e-06, + "loss": 0.8291678619384766, + "step": 4100 + }, + { + "epoch": 95.46242774566474, + "grad_norm": 0.40495359897613525, + "learning_rate": 2.2840909090909093e-06, + "loss": 0.8284315490722656, + "step": 4200 + }, + { + "epoch": 97.73988439306359, + "grad_norm": 0.34313035011291504, + "learning_rate": 1.1477272727272727e-06, + "loss": 0.8283676147460938, + "step": 4300 + } + ], + "logging_steps": 100, + "max_steps": 4400, + "num_input_tokens_seen": 0, + "num_train_epochs": 100, + "save_steps": 100, + "stateful_callbacks": { + "TrainerControl": { + "args": { + "should_epoch_stop": false, + "should_evaluate": false, + "should_log": false, + "should_save": true, + "should_training_stop": false + }, + "attributes": {} + } + }, + "total_flos": 314209852932096.0, + "train_batch_size": 8, + "trial_name": null, + "trial_params": null +} diff --git a/timecost/c2/realtabformer/rtf-c2-20260501_033610/rtf_checkpoints/checkpoint-4356/training_args.bin b/timecost/c2/realtabformer/rtf-c2-20260501_033610/rtf_checkpoints/checkpoint-4356/training_args.bin new file mode 100644 index 0000000000000000000000000000000000000000..34d68dc0e0fe1c1f12a2e581dd1b166aa7178a9e --- /dev/null +++ b/timecost/c2/realtabformer/rtf-c2-20260501_033610/rtf_checkpoints/checkpoint-4356/training_args.bin @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:9e2cd88337d1d846c6918d2b3b63fa3e5c93f12fefc082497590da854a564607 +size 5201 diff --git a/timecost/c2/realtabformer/rtf-c2-20260501_033610/rtf_checkpoints/checkpoint-4400/config.json b/timecost/c2/realtabformer/rtf-c2-20260501_033610/rtf_checkpoints/checkpoint-4400/config.json new file mode 100644 index 0000000000000000000000000000000000000000..abc7bb2762d6bff3016eb042e7a2ac4abb80ea85 --- /dev/null +++ b/timecost/c2/realtabformer/rtf-c2-20260501_033610/rtf_checkpoints/checkpoint-4400/config.json @@ -0,0 +1,34 @@ +{ + "activation_function": "gelu_new", + "add_cross_attention": false, + "architectures": [ + "GPT2LMHeadModel" + ], + "attn_pdrop": 0.1, + "bos_token_id": 5, + "dtype": "float32", + "embd_pdrop": 0.1, + "eos_token_id": 6, + "initializer_range": 0.02, + "layer_norm_epsilon": 1e-05, + "model_type": "gpt2", + "n_embd": 768, + "n_head": 12, + "n_inner": null, + "n_layer": 6, + "n_positions": 1024, + "pad_token_id": null, + "reorder_and_upcast_attn": false, + "resid_pdrop": 0.1, + "scale_attn_by_inverse_layer_idx": false, + "scale_attn_weights": true, + "summary_activation": null, + "summary_first_dropout": 0.1, + "summary_proj_to_labels": true, + "summary_type": "cls_index", + "summary_use_proj": true, + "tie_word_embeddings": true, + "transformers_version": "5.5.3", + "use_cache": false, + "vocab_size": 36 +} diff --git a/timecost/c2/realtabformer/rtf-c2-20260501_033610/rtf_checkpoints/checkpoint-4400/generation_config.json b/timecost/c2/realtabformer/rtf-c2-20260501_033610/rtf_checkpoints/checkpoint-4400/generation_config.json new file mode 100644 index 0000000000000000000000000000000000000000..ffe89567780e75b5c22eade9be971483b9618f39 --- /dev/null +++ b/timecost/c2/realtabformer/rtf-c2-20260501_033610/rtf_checkpoints/checkpoint-4400/generation_config.json @@ -0,0 +1,9 @@ +{ + "_from_model_config": true, + "bos_token_id": 5, + "eos_token_id": 6, + "output_attentions": false, + "output_hidden_states": false, + "transformers_version": "5.5.3", + "use_cache": true +} diff --git a/timecost/c2/realtabformer/rtf-c2-20260501_033610/rtf_checkpoints/checkpoint-4400/model.safetensors b/timecost/c2/realtabformer/rtf-c2-20260501_033610/rtf_checkpoints/checkpoint-4400/model.safetensors new file mode 100644 index 0000000000000000000000000000000000000000..1399711c21693be65845ec1dc675e8cb245b57d6 --- /dev/null +++ b/timecost/c2/realtabformer/rtf-c2-20260501_033610/rtf_checkpoints/checkpoint-4400/model.safetensors @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:8ed75428afdb492dbaccd11b4f1465bfcc6ac566781172c59e44a375aba9442e +size 173379016 diff --git a/timecost/c2/realtabformer/rtf-c2-20260501_033610/rtf_checkpoints/checkpoint-4400/optimizer.pt b/timecost/c2/realtabformer/rtf-c2-20260501_033610/rtf_checkpoints/checkpoint-4400/optimizer.pt new file mode 100644 index 0000000000000000000000000000000000000000..48252b3647344dcd89f8d3b92dcbd0cc686d24bf --- /dev/null +++ b/timecost/c2/realtabformer/rtf-c2-20260501_033610/rtf_checkpoints/checkpoint-4400/optimizer.pt @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:fd570c778841e124aa89f8d5daf89e6e4bcd314281785366f1521ce1584ded43 +size 346807051 diff --git a/timecost/c2/realtabformer/rtf-c2-20260501_033610/rtf_checkpoints/checkpoint-4400/rng_state.pth b/timecost/c2/realtabformer/rtf-c2-20260501_033610/rtf_checkpoints/checkpoint-4400/rng_state.pth new file mode 100644 index 0000000000000000000000000000000000000000..7d546eda79447a75908743f7ef1299e464ca47ca --- /dev/null +++ b/timecost/c2/realtabformer/rtf-c2-20260501_033610/rtf_checkpoints/checkpoint-4400/rng_state.pth @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:f807fcb0e5f9fca67af31ab81a3beb8dcd48e1fbf5ae9664205e45494b6d69a7 +size 14645 diff --git a/timecost/c2/realtabformer/rtf-c2-20260501_033610/rtf_checkpoints/checkpoint-4400/scaler.pt b/timecost/c2/realtabformer/rtf-c2-20260501_033610/rtf_checkpoints/checkpoint-4400/scaler.pt new file mode 100644 index 0000000000000000000000000000000000000000..594910c8773c170780851af6df5df43b17e392cd --- /dev/null +++ b/timecost/c2/realtabformer/rtf-c2-20260501_033610/rtf_checkpoints/checkpoint-4400/scaler.pt @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:fa01c0faab1a39c11ceba075e1e73b81a5689cfd1ac0d27ee7fece150d320be6 +size 1383 diff --git a/timecost/c2/realtabformer/rtf-c2-20260501_033610/rtf_checkpoints/checkpoint-4400/scheduler.pt b/timecost/c2/realtabformer/rtf-c2-20260501_033610/rtf_checkpoints/checkpoint-4400/scheduler.pt new file mode 100644 index 0000000000000000000000000000000000000000..fa736eac4107c8922ce9d5420194434f67ddf6b3 --- /dev/null +++ b/timecost/c2/realtabformer/rtf-c2-20260501_033610/rtf_checkpoints/checkpoint-4400/scheduler.pt @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:8b184d28efe3ccf73505bc2c26d4489920d5847a8671fa58ae465fb1bf157a76 +size 1465 diff --git a/timecost/c2/realtabformer/rtf-c2-20260501_033610/rtf_checkpoints/checkpoint-4400/trainer_state.json b/timecost/c2/realtabformer/rtf-c2-20260501_033610/rtf_checkpoints/checkpoint-4400/trainer_state.json new file mode 100644 index 0000000000000000000000000000000000000000..27de48b5598f48f1a3011d94b06a470b36180ebf --- /dev/null +++ b/timecost/c2/realtabformer/rtf-c2-20260501_033610/rtf_checkpoints/checkpoint-4400/trainer_state.json @@ -0,0 +1,342 @@ +{ + "best_global_step": null, + "best_metric": null, + "best_model_checkpoint": null, + "epoch": 100.0, + "eval_steps": 100, + "global_step": 4400, + "is_hyper_param_search": false, + "is_local_process_zero": true, + "is_world_process_zero": true, + "log_history": [ + { + "epoch": 2.277456647398844, + "grad_norm": 0.45774605870246887, + "learning_rate": 4.8875e-05, + "loss": 1.0554571533203125, + "step": 100 + }, + { + "epoch": 4.554913294797688, + "grad_norm": 0.4337577223777771, + "learning_rate": 4.773863636363636e-05, + "loss": 0.8850509643554687, + "step": 200 + }, + { + "epoch": 6.832369942196532, + "grad_norm": 0.6754257678985596, + "learning_rate": 4.660227272727273e-05, + "loss": 0.8728819274902344, + "step": 300 + }, + { + "epoch": 9.092485549132949, + "grad_norm": 0.32570239901542664, + "learning_rate": 4.546590909090909e-05, + "loss": 0.8641302490234375, + "step": 400 + }, + { + "epoch": 11.369942196531792, + "grad_norm": 0.38200652599334717, + "learning_rate": 4.432954545454546e-05, + "loss": 0.8559213256835938, + "step": 500 + }, + { + "epoch": 13.647398843930636, + "grad_norm": 0.458467036485672, + "learning_rate": 4.319318181818182e-05, + "loss": 0.8571351623535156, + "step": 600 + }, + { + "epoch": 15.92485549132948, + "grad_norm": 0.45177900791168213, + "learning_rate": 4.2056818181818186e-05, + "loss": 0.853203125, + "step": 700 + }, + { + "epoch": 18.184971098265898, + "grad_norm": 0.48006364703178406, + "learning_rate": 4.092045454545455e-05, + "loss": 0.8498992919921875, + "step": 800 + }, + { + "epoch": 20.46242774566474, + "grad_norm": 0.29602789878845215, + "learning_rate": 3.978409090909091e-05, + "loss": 0.8481210327148437, + "step": 900 + }, + { + "epoch": 22.739884393063583, + "grad_norm": 0.2875346839427948, + "learning_rate": 3.8647727272727275e-05, + "loss": 0.8433629608154297, + "step": 1000 + }, + { + "epoch": 25.0, + "grad_norm": 0.7051313519477844, + "learning_rate": 3.7511363636363636e-05, + "loss": 0.8442816925048828, + "step": 1100 + }, + { + "epoch": 27.277456647398843, + "grad_norm": 0.3138129711151123, + "learning_rate": 3.6375e-05, + "loss": 0.8439885711669922, + "step": 1200 + }, + { + "epoch": 29.55491329479769, + "grad_norm": 0.47190558910369873, + "learning_rate": 3.5238636363636364e-05, + "loss": 0.8407660675048828, + "step": 1300 + }, + { + "epoch": 31.832369942196532, + "grad_norm": 0.4098823666572571, + "learning_rate": 3.4102272727272725e-05, + "loss": 0.8402595520019531, + "step": 1400 + }, + { + "epoch": 34.092485549132945, + "grad_norm": 0.28894272446632385, + "learning_rate": 3.296590909090909e-05, + "loss": 0.8409199523925781, + "step": 1500 + }, + { + "epoch": 36.369942196531795, + "grad_norm": 0.35202890634536743, + "learning_rate": 3.182954545454546e-05, + "loss": 0.838973388671875, + "step": 1600 + }, + { + "epoch": 38.64739884393064, + "grad_norm": 0.3858259618282318, + "learning_rate": 3.069318181818182e-05, + "loss": 0.8387539672851563, + "step": 1700 + }, + { + "epoch": 40.92485549132948, + "grad_norm": 0.3619968593120575, + "learning_rate": 2.9556818181818184e-05, + "loss": 0.8389186096191407, + "step": 1800 + }, + { + "epoch": 43.1849710982659, + "grad_norm": 0.2380709946155548, + "learning_rate": 2.8420454545454545e-05, + "loss": 0.8381841278076172, + "step": 1900 + }, + { + "epoch": 45.46242774566474, + "grad_norm": 0.2774685323238373, + "learning_rate": 2.728409090909091e-05, + "loss": 0.8379978942871094, + "step": 2000 + }, + { + "epoch": 47.73988439306358, + "grad_norm": 0.3966612219810486, + "learning_rate": 2.6147727272727273e-05, + "loss": 0.8361636352539062, + "step": 2100 + }, + { + "epoch": 50.0, + "grad_norm": 0.6858490705490112, + "learning_rate": 2.5011363636363637e-05, + "loss": 0.8361389923095703, + "step": 2200 + }, + { + "epoch": 52.27745664739884, + "grad_norm": 0.27801573276519775, + "learning_rate": 2.3875e-05, + "loss": 0.8344792938232422, + "step": 2300 + }, + { + "epoch": 54.554913294797686, + "grad_norm": 0.3022511303424835, + "learning_rate": 2.2738636363636365e-05, + "loss": 0.8358657836914063, + "step": 2400 + }, + { + "epoch": 56.83236994219653, + "grad_norm": 0.37043297290802, + "learning_rate": 2.160227272727273e-05, + "loss": 0.8339907836914062, + "step": 2500 + }, + { + "epoch": 59.092485549132945, + "grad_norm": 0.38185206055641174, + "learning_rate": 2.046590909090909e-05, + "loss": 0.8342379760742188, + "step": 2600 + }, + { + "epoch": 61.369942196531795, + "grad_norm": 0.326172411441803, + "learning_rate": 1.9329545454545457e-05, + "loss": 0.834858169555664, + "step": 2700 + }, + { + "epoch": 63.64739884393064, + "grad_norm": 0.34918302297592163, + "learning_rate": 1.819318181818182e-05, + "loss": 0.8337675476074219, + "step": 2800 + }, + { + "epoch": 65.92485549132948, + "grad_norm": 0.2997020483016968, + "learning_rate": 1.7056818181818182e-05, + "loss": 0.8324470520019531, + "step": 2900 + }, + { + "epoch": 68.18497109826589, + "grad_norm": 0.23717710375785828, + "learning_rate": 1.5920454545454546e-05, + "loss": 0.8340346527099609, + "step": 3000 + }, + { + "epoch": 70.46242774566474, + "grad_norm": 0.28393399715423584, + "learning_rate": 1.4784090909090908e-05, + "loss": 0.8327864074707031, + "step": 3100 + }, + { + "epoch": 72.73988439306359, + "grad_norm": 0.2693222165107727, + "learning_rate": 1.3647727272727274e-05, + "loss": 0.8334049987792969, + "step": 3200 + }, + { + "epoch": 75.0, + "grad_norm": 0.6753465533256531, + "learning_rate": 1.2511363636363638e-05, + "loss": 0.8321996307373047, + "step": 3300 + }, + { + "epoch": 77.27745664739885, + "grad_norm": 0.2996279299259186, + "learning_rate": 1.1375e-05, + "loss": 0.8326959991455078, + "step": 3400 + }, + { + "epoch": 79.55491329479769, + "grad_norm": 0.2881743907928467, + "learning_rate": 1.0238636363636364e-05, + "loss": 0.8314301300048829, + "step": 3500 + }, + { + "epoch": 81.83236994219654, + "grad_norm": 0.24612846970558167, + "learning_rate": 9.102272727272727e-06, + "loss": 0.83193115234375, + "step": 3600 + }, + { + "epoch": 84.09248554913295, + "grad_norm": 0.24222785234451294, + "learning_rate": 7.965909090909092e-06, + "loss": 0.8309139251708985, + "step": 3700 + }, + { + "epoch": 86.3699421965318, + "grad_norm": 0.3278041481971741, + "learning_rate": 6.829545454545455e-06, + "loss": 0.83010498046875, + "step": 3800 + }, + { + "epoch": 88.64739884393063, + "grad_norm": 0.2609911561012268, + "learning_rate": 5.693181818181818e-06, + "loss": 0.8300800323486328, + "step": 3900 + }, + { + "epoch": 90.92485549132948, + "grad_norm": 0.24667981266975403, + "learning_rate": 4.556818181818182e-06, + "loss": 0.8305992126464844, + "step": 4000 + }, + { + "epoch": 93.18497109826589, + "grad_norm": 0.2552596628665924, + "learning_rate": 3.4204545454545453e-06, + "loss": 0.8291678619384766, + "step": 4100 + }, + { + "epoch": 95.46242774566474, + "grad_norm": 0.40495359897613525, + "learning_rate": 2.2840909090909093e-06, + "loss": 0.8284315490722656, + "step": 4200 + }, + { + "epoch": 97.73988439306359, + "grad_norm": 0.34313035011291504, + "learning_rate": 1.1477272727272727e-06, + "loss": 0.8283676147460938, + "step": 4300 + }, + { + "epoch": 100.0, + "grad_norm": 0.6516434550285339, + "learning_rate": 1.1363636363636364e-08, + "loss": 0.8283032989501953, + "step": 4400 + } + ], + "logging_steps": 100, + "max_steps": 4400, + "num_input_tokens_seen": 0, + "num_train_epochs": 100, + "save_steps": 100, + "stateful_callbacks": { + "TrainerControl": { + "args": { + "should_epoch_stop": false, + "should_evaluate": false, + "should_log": false, + "should_save": true, + "should_training_stop": true + }, + "attributes": {} + } + }, + "total_flos": 317383689830400.0, + "train_batch_size": 8, + "trial_name": null, + "trial_params": null +} diff --git a/timecost/c2/realtabformer/rtf-c2-20260501_033610/rtf_checkpoints/checkpoint-4400/training_args.bin b/timecost/c2/realtabformer/rtf-c2-20260501_033610/rtf_checkpoints/checkpoint-4400/training_args.bin new file mode 100644 index 0000000000000000000000000000000000000000..34d68dc0e0fe1c1f12a2e581dd1b166aa7178a9e --- /dev/null +++ b/timecost/c2/realtabformer/rtf-c2-20260501_033610/rtf_checkpoints/checkpoint-4400/training_args.bin @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:9e2cd88337d1d846c6918d2b3b63fa3e5c93f12fefc082497590da854a564607 +size 5201 diff --git a/timecost/c2/realtabformer/rtf-c2-20260501_033610/runtime_result.json b/timecost/c2/realtabformer/rtf-c2-20260501_033610/runtime_result.json new file mode 100644 index 0000000000000000000000000000000000000000..fa535c7281cd70f3d4bc3edbdee04ad9ca9ab504 --- /dev/null +++ b/timecost/c2/realtabformer/rtf-c2-20260501_033610/runtime_result.json @@ -0,0 +1,27 @@ +{ + "dataset_id": "c2", + "model": "realtabformer", + "run_id": "rtf-c2-20260501_033610", + "public_gate_status": "pass", + "adapter_ready_status": "pass", + "train_status": "success", + "generate_status": "success", + "reason_code": null, + "reason_detail": null, + "artifacts": { + "synthetic_csv": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/c2/realtabformer/rtf-c2-20260501_033610/rtf-c2-1382-20260501_034209.csv", + "model_path": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/c2/realtabformer/rtf-c2-20260501_033610/models_100epochs" + }, + "timings": { + "train": { + "started_at": "2026-05-01T03:36:10", + "ended_at": "2026-05-01T03:42:09", + "duration_sec": 358.658 + }, + "generate": { + "started_at": "2026-05-01T03:42:09", + "ended_at": "2026-05-01T03:42:20", + "duration_sec": 10.949 + } + } +} \ No newline at end of file diff --git a/timecost/c2/realtabformer/rtf-c2-20260501_033610/staged/public/staged_features.json b/timecost/c2/realtabformer/rtf-c2-20260501_033610/staged/public/staged_features.json new file mode 100644 index 0000000000000000000000000000000000000000..61783861dd5de501592f76acb0469cf3f3b2622a --- /dev/null +++ b/timecost/c2/realtabformer/rtf-c2-20260501_033610/staged/public/staged_features.json @@ -0,0 +1,37 @@ +[ + { + "feature_name": "buying", + "data_type": "categorical", + "is_target": false + }, + { + "feature_name": "maint", + "data_type": "categorical", + "is_target": false + }, + { + "feature_name": "doors", + "data_type": "categorical", + "is_target": false + }, + { + "feature_name": "persons", + "data_type": "categorical", + "is_target": false + }, + { + "feature_name": "lug_boot", + "data_type": "categorical", + "is_target": false + }, + { + "feature_name": "safety", + "data_type": "categorical", + "is_target": false + }, + { + "feature_name": "class", + "data_type": "categorical", + "is_target": true + } +] \ No newline at end of file diff --git a/timecost/c2/realtabformer/rtf-c2-20260501_033610/staged/public/test.csv b/timecost/c2/realtabformer/rtf-c2-20260501_033610/staged/public/test.csv new file mode 100644 index 0000000000000000000000000000000000000000..392a0d7189a34d8f13ecf20a99d64b03230d517c --- /dev/null +++ b/timecost/c2/realtabformer/rtf-c2-20260501_033610/staged/public/test.csv @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:b48114a7d0bc5bd9a07920f903c8d4aba8bf98bf2a66a050da03588b0245ca73 +size 5273 diff --git a/timecost/c2/realtabformer/rtf-c2-20260501_033610/staged/public/train.csv b/timecost/c2/realtabformer/rtf-c2-20260501_033610/staged/public/train.csv new file mode 100644 index 0000000000000000000000000000000000000000..da4f4d55134eebc0e51157d0d467536371db1484 --- /dev/null +++ b/timecost/c2/realtabformer/rtf-c2-20260501_033610/staged/public/train.csv @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:4aed00c2c2b3f88a55a7ebff31b2e1b5e0e32fb0a7267e0b9d2779cd23e434dd +size 41565 diff --git a/timecost/c2/realtabformer/rtf-c2-20260501_033610/staged/public/val.csv b/timecost/c2/realtabformer/rtf-c2-20260501_033610/staged/public/val.csv new file mode 100644 index 0000000000000000000000000000000000000000..af8caf7ee42524188534a3daf32996dc491952d9 --- /dev/null +++ b/timecost/c2/realtabformer/rtf-c2-20260501_033610/staged/public/val.csv @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:26e90c1170a57a14c05832ac88027722b1f3848f9662c7c09ef7c93dcba4cc01 +size 5176 diff --git a/timecost/c2/realtabformer/rtf-c2-20260501_033610/staged/realtabformer/adapter_report.json b/timecost/c2/realtabformer/rtf-c2-20260501_033610/staged/realtabformer/adapter_report.json new file mode 100644 index 0000000000000000000000000000000000000000..3e933198ad8c43539a2545b69e6b56f76df2f682 --- /dev/null +++ b/timecost/c2/realtabformer/rtf-c2-20260501_033610/staged/realtabformer/adapter_report.json @@ -0,0 +1,7 @@ +{ + "adapter_ready_status": "pass", + "adapter_fail_reason_code": null, + "adapter_fail_detail": null, + "adapter_transforms_applied": [], + "model_input_manifest": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/c2/realtabformer/rtf-c2-20260501_033610/staged/realtabformer/model_input_manifest.json" +} \ No newline at end of file diff --git a/timecost/c2/realtabformer/rtf-c2-20260501_033610/staged/realtabformer/adapter_transforms_applied.json b/timecost/c2/realtabformer/rtf-c2-20260501_033610/staged/realtabformer/adapter_transforms_applied.json new file mode 100644 index 0000000000000000000000000000000000000000..0637a088a01e8ddab3bf3fa98dbe804cbde1a0dc --- /dev/null +++ b/timecost/c2/realtabformer/rtf-c2-20260501_033610/staged/realtabformer/adapter_transforms_applied.json @@ -0,0 +1 @@ +[] \ No newline at end of file diff --git a/timecost/c2/realtabformer/rtf-c2-20260501_033610/staged/realtabformer/model_input_manifest.json b/timecost/c2/realtabformer/rtf-c2-20260501_033610/staged/realtabformer/model_input_manifest.json new file mode 100644 index 0000000000000000000000000000000000000000..a2a0e091cda360e5f8336060c830cb8ff1da6e3b --- /dev/null +++ b/timecost/c2/realtabformer/rtf-c2-20260501_033610/staged/realtabformer/model_input_manifest.json @@ -0,0 +1,151 @@ +{ + "dataset_id": "c2", + "model": "realtabformer", + "target_column": "class", + "task_type": "classification", + "column_schema": [ + { + "name": "buying", + "role": "feature", + "semantic_type": "categorical", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 4, + "unique_ratio": 0.002894, + "example_values": [ + "vhigh", + "med", + "high", + "low" + ] + } + }, + { + "name": "maint", + "role": "feature", + "semantic_type": "categorical", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 4, + "unique_ratio": 0.002894, + "example_values": [ + "vhigh", + "low", + "med", + "high" + ] + } + }, + { + "name": "doors", + "role": "feature", + "semantic_type": "categorical", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 4, + "unique_ratio": 0.002894, + "example_values": [ + "2", + "5more", + "3", + "4" + ] + } + }, + { + "name": "persons", + "role": "feature", + "semantic_type": "categorical", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 3, + "unique_ratio": 0.002171, + "example_values": [ + "2", + "4", + "more" + ] + } + }, + { + "name": "lug_boot", + "role": "feature", + "semantic_type": "categorical", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 3, + "unique_ratio": 0.002171, + "example_values": [ + "small", + "big", + "med" + ] + } + }, + { + "name": "safety", + "role": "feature", + "semantic_type": "categorical", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 3, + "unique_ratio": 0.002171, + "example_values": [ + "low", + "high", + "med" + ] + } + }, + { + "name": "class", + "role": "target", + "semantic_type": "categorical", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 4, + "unique_ratio": 0.002894, + "example_values": [ + "unacc", + "good", + "acc", + "vgood" + ] + } + } + ], + "public_manifest": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/c2/realtabformer/rtf-c2-20260501_033610/public_gate/staged_input_manifest.json", + "train_csv": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/c2/realtabformer/rtf-c2-20260501_033610/staged/public/train.csv", + "val_csv": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/c2/realtabformer/rtf-c2-20260501_033610/staged/public/val.csv", + "test_csv": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/c2/realtabformer/rtf-c2-20260501_033610/staged/public/test.csv", + "features_json": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/c2/realtabformer/rtf-c2-20260501_033610/staged/public/staged_features.json", + "public_gate_report": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/c2/realtabformer/rtf-c2-20260501_033610/public_gate/public_gate_report.json" +} \ No newline at end of file diff --git a/timecost/c2/realtabformer/rtf-c2-20260501_033610/train_20260501_033610.log b/timecost/c2/realtabformer/rtf-c2-20260501_033610/train_20260501_033610.log new file mode 100644 index 0000000000000000000000000000000000000000..0f11a183ee02dcf365160c18b7f456f1aff30d4a --- /dev/null +++ b/timecost/c2/realtabformer/rtf-c2-20260501_033610/train_20260501_033610.log @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:71485f3c386baff64106d1cf94bd73b78804d3ff79be33b856fce97700dba450 +size 182129 diff --git a/timecost/c2/tabbyflow/tabbyflow-c2-20260501_052813/_tabbyflow_gen.py b/timecost/c2/tabbyflow/tabbyflow-c2-20260501_052813/_tabbyflow_gen.py new file mode 100644 index 0000000000000000000000000000000000000000..766ebe32a4394cc53ea12a89ad3424187d78632c --- /dev/null +++ b/timecost/c2/tabbyflow/tabbyflow-c2-20260501_052813/_tabbyflow_gen.py @@ -0,0 +1,33 @@ + +import os, shutil, subprocess, sys +root = r"/workspace/ef-vfm" +name = r"pipeline_c2" +src = r"/work/output-Benchmark-trainonly-v1/c2/tabbyflow/tabbyflow-c2-20260501_052813/tabular_bundle/pipeline_c2" +dst_data = os.path.join(root, "data", name) +shutil.rmtree(dst_data, ignore_errors=True) +shutil.copytree(src, dst_data) +dst_syn = os.path.join(root, "synthetic", name) +os.makedirs(dst_syn, exist_ok=True) +for fn in ("real.csv", "test.csv", "val.csv"): + shutil.copy(os.path.join(src, fn), os.path.join(dst_syn, fn)) +os.chdir(root) +os.environ["PYTHONPATH"] = root + os.pathsep + os.environ.get("PYTHONPATH", "") +subprocess.check_call([ + sys.executable, "main.py", + "--dataname", name, "--mode", "test", "--gpu", "0", + "--no_wandb", "--exp_name", r"adapter_efvfm", + "--ckpt_path", r"/workspace/ef-vfm/ef_vfm/ckpt/pipeline_c2/adapter_efvfm/model_500.pt", + "--num_samples_to_generate", str(int(1382)), +]) +base = os.path.join(root, "ef_vfm", "result", name, r"adapter_efvfm") +best = None +best_t = -1.0 +for r, _, files in os.walk(base): + if "samples.csv" in files: + p = os.path.join(r, "samples.csv") + t = os.path.getmtime(p) + if t > best_t: + best_t, best = t, p +if not best: + raise SystemExit("tabbyflow: no samples.csv in " + base) +shutil.copy(best, r"/work/output-Benchmark-trainonly-v1/c2/tabbyflow/tabbyflow-c2-20260501_052813/tabbyflow-c2-1382-20260501_053427.csv") diff --git a/timecost/c2/tabbyflow/tabbyflow-c2-20260501_052813/_tabbyflow_train.py b/timecost/c2/tabbyflow/tabbyflow-c2-20260501_052813/_tabbyflow_train.py new file mode 100644 index 0000000000000000000000000000000000000000..75ca1b3f716377e162c52a64be03a64f2aa3dc14 --- /dev/null +++ b/timecost/c2/tabbyflow/tabbyflow-c2-20260501_052813/_tabbyflow_train.py @@ -0,0 +1,22 @@ + +import os, shutil, subprocess, sys +root = r"/workspace/ef-vfm" +name = r"pipeline_c2" +src = r"/work/output-Benchmark-trainonly-v1/c2/tabbyflow/tabbyflow-c2-20260501_052813/tabular_bundle/pipeline_c2" +os.makedirs(os.path.join(root, "data", name), exist_ok=True) +dst_data = os.path.join(root, "data", name) +dst_syn = os.path.join(root, "synthetic", name) +shutil.rmtree(dst_data, ignore_errors=True) +shutil.copytree(src, dst_data) +os.makedirs(dst_syn, exist_ok=True) +for fn in ("real.csv", "test.csv", "val.csv"): + shutil.copy(os.path.join(src, fn), os.path.join(dst_syn, fn)) +os.chdir(root) +os.environ["PYTHONPATH"] = root + os.pathsep + os.environ.get("PYTHONPATH", "") +os.environ["EFVFM_SMOKE_STEPS"] = "500" +os.environ["EFVFM_ADAPTER_TRAIN"] = "1" +subprocess.check_call([ + sys.executable, "main.py", + "--dataname", name, "--mode", "train", "--gpu", "0", + "--no_wandb", "--exp_name", r"adapter_efvfm", +]) diff --git a/timecost/c2/tabbyflow/tabbyflow-c2-20260501_052813/gen_20260501_053427.log b/timecost/c2/tabbyflow/tabbyflow-c2-20260501_052813/gen_20260501_053427.log new file mode 100644 index 0000000000000000000000000000000000000000..2b04e56f59be7b12b34f7fc644d24c37604f5c64 --- /dev/null +++ b/timecost/c2/tabbyflow/tabbyflow-c2-20260501_052813/gen_20260501_053427.log @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:ebf455cec75b302ce3913449337578522211c421499afab3f3956fd9e5dfb36c +size 3114 diff --git a/timecost/c2/tabbyflow/tabbyflow-c2-20260501_052813/input_snapshot.json b/timecost/c2/tabbyflow/tabbyflow-c2-20260501_052813/input_snapshot.json new file mode 100644 index 0000000000000000000000000000000000000000..89c9d5855c86fb753a25070ff5c19d45d1e2fb9e --- /dev/null +++ b/timecost/c2/tabbyflow/tabbyflow-c2-20260501_052813/input_snapshot.json @@ -0,0 +1,36 @@ +{ + "dataset_id": "c2", + "model": "tabbyflow", + "inputs": { + "train_csv": { + "path": "/data/jialinzhang/SynthesizePipeline-server/DatasetNew/c2/c2-train.csv", + "exists": true, + "size": 42948, + "sha256": "17bc560fa96bd00fb3b526e1e65bc91210b701d0d0a4e8bb9b4c5196cab56def" + }, + "val_csv": { + "path": "/data/jialinzhang/SynthesizePipeline-server/DatasetNew/c2/c2-val.csv", + "exists": true, + "size": 5349, + "sha256": "61e565eca62e65a7dccd9d51039a3170413379e10fc494e25870e7c4294863c9" + }, + "test_csv": { + "path": "/data/jialinzhang/SynthesizePipeline-server/DatasetNew/c2/c2-test.csv", + "exists": true, + "size": 5448, + "sha256": "cbcbb062a1faf5fa44b66c80532baa229e05b94fc42137269761e6c6d84af20a" + }, + "profile_json": { + "path": "/data/jialinzhang/SynthesizePipeline-server/DatasetNew/artifacts/data_core/tabular/c2/c2-dataset_profile.json", + "exists": true, + "size": 3240, + "sha256": "526b7163b2076c93c0bf4638438081ee8a6907065d5b608faa40d1a3dbc2a27b" + }, + "contract_json": { + "path": "/data/jialinzhang/SynthesizePipeline-server/DatasetNew/artifacts/data_core/tabular/c2/c2-dataset_contract_v1.json", + "exists": true, + "size": 3731, + "sha256": "fb595a876054c2ee9b4e10cfe83a5691588de1d25466cbb9d473c18ad3604009" + } + } +} \ No newline at end of file diff --git a/timecost/c2/tabbyflow/tabbyflow-c2-20260501_052813/models_tabbyflow/trained.pt b/timecost/c2/tabbyflow/tabbyflow-c2-20260501_052813/models_tabbyflow/trained.pt new file mode 100644 index 0000000000000000000000000000000000000000..f063a878c470d9d40f79db79881596e1e497dffd --- /dev/null +++ b/timecost/c2/tabbyflow/tabbyflow-c2-20260501_052813/models_tabbyflow/trained.pt @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:adb734fec12f2251befd371dca69e481b19464aded2a6823105a01b4be6ddbe5 +size 40 diff --git a/timecost/c2/tabbyflow/tabbyflow-c2-20260501_052813/public_gate/normalized_schema_snapshot.json b/timecost/c2/tabbyflow/tabbyflow-c2-20260501_052813/public_gate/normalized_schema_snapshot.json new file mode 100644 index 0000000000000000000000000000000000000000..689b1d00d96508e44ba40e58dc4560e19afc2b3b --- /dev/null +++ b/timecost/c2/tabbyflow/tabbyflow-c2-20260501_052813/public_gate/normalized_schema_snapshot.json @@ -0,0 +1,144 @@ +{ + "dataset_id": "c2", + "target_column": "class", + "task_type": "classification", + "columns": [ + { + "name": "buying", + "role": "feature", + "semantic_type": "categorical", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 4, + "unique_ratio": 0.002894, + "example_values": [ + "vhigh", + "med", + "high", + "low" + ] + } + }, + { + "name": "maint", + "role": "feature", + "semantic_type": "categorical", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 4, + "unique_ratio": 0.002894, + "example_values": [ + "vhigh", + "low", + "med", + "high" + ] + } + }, + { + "name": "doors", + "role": "feature", + "semantic_type": "categorical", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 4, + "unique_ratio": 0.002894, + "example_values": [ + "2", + "5more", + "3", + "4" + ] + } + }, + { + "name": "persons", + "role": "feature", + "semantic_type": "categorical", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 3, + "unique_ratio": 0.002171, + "example_values": [ + "2", + "4", + "more" + ] + } + }, + { + "name": "lug_boot", + "role": "feature", + "semantic_type": "categorical", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 3, + "unique_ratio": 0.002171, + "example_values": [ + "small", + "big", + "med" + ] + } + }, + { + "name": "safety", + "role": "feature", + "semantic_type": "categorical", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 3, + "unique_ratio": 0.002171, + "example_values": [ + "low", + "high", + "med" + ] + } + }, + { + "name": "class", + "role": "target", + "semantic_type": "categorical", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 4, + "unique_ratio": 0.002894, + "example_values": [ + "unacc", + "good", + "acc", + "vgood" + ] + } + } + ] +} \ No newline at end of file diff --git a/timecost/c2/tabbyflow/tabbyflow-c2-20260501_052813/public_gate/public_gate_report.json b/timecost/c2/tabbyflow/tabbyflow-c2-20260501_052813/public_gate/public_gate_report.json new file mode 100644 index 0000000000000000000000000000000000000000..2e4cdcb2a4e28e40d59b17a83e773f622b7636a5 --- /dev/null +++ b/timecost/c2/tabbyflow/tabbyflow-c2-20260501_052813/public_gate/public_gate_report.json @@ -0,0 +1,37 @@ +{ + "dataset_id": "c2", + "status": "pass", + "checks": [ + { + "check_id": "PG001_csv_parse_ok", + "status": "pass" + }, + { + "check_id": "PG002_split_header_consistent", + "status": "pass" + }, + { + "check_id": "PG003_profile_header_match", + "status": "pass" + }, + { + "check_id": "PG004_missing_token_normalized", + "status": "pass" + }, + { + "check_id": "PG005_semantic_type_validated", + "status": "pass" + }, + { + "check_id": "PG006_target_defined_and_valid", + "status": "pass" + } + ], + "target_column": "class", + "task_type": "classification", + "input_splits": { + "train": "/data/jialinzhang/SynthesizePipeline-server/DatasetNew/c2/c2-train.csv", + "val": "/data/jialinzhang/SynthesizePipeline-server/DatasetNew/c2/c2-val.csv", + "test": "/data/jialinzhang/SynthesizePipeline-server/DatasetNew/c2/c2-test.csv" + } +} \ No newline at end of file diff --git a/timecost/c2/tabbyflow/tabbyflow-c2-20260501_052813/public_gate/staged_input_manifest.json b/timecost/c2/tabbyflow/tabbyflow-c2-20260501_052813/public_gate/staged_input_manifest.json new file mode 100644 index 0000000000000000000000000000000000000000..a9b81ba9787b915e756fab34b82d4ddc1f8d0105 --- /dev/null +++ b/timecost/c2/tabbyflow/tabbyflow-c2-20260501_052813/public_gate/staged_input_manifest.json @@ -0,0 +1,149 @@ +{ + "dataset_id": "c2", + "target_column": "class", + "task_type": "classification", + "train_csv": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/c2/tabbyflow/tabbyflow-c2-20260501_052813/staged/public/train.csv", + "val_csv": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/c2/tabbyflow/tabbyflow-c2-20260501_052813/staged/public/val.csv", + "test_csv": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/c2/tabbyflow/tabbyflow-c2-20260501_052813/staged/public/test.csv", + "features_json": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/c2/tabbyflow/tabbyflow-c2-20260501_052813/staged/public/staged_features.json", + "public_gate_report": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/c2/tabbyflow/tabbyflow-c2-20260501_052813/public_gate/public_gate_report.json", + "column_schema": [ + { + "name": "buying", + "role": "feature", + "semantic_type": "categorical", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 4, + "unique_ratio": 0.002894, + "example_values": [ + "vhigh", + "med", + "high", + "low" + ] + } + }, + { + "name": "maint", + "role": "feature", + "semantic_type": "categorical", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 4, + "unique_ratio": 0.002894, + "example_values": [ + "vhigh", + "low", + "med", + "high" + ] + } + }, + { + "name": "doors", + "role": "feature", + "semantic_type": "categorical", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 4, + "unique_ratio": 0.002894, + "example_values": [ + "2", + "5more", + "3", + "4" + ] + } + }, + { + "name": "persons", + "role": "feature", + "semantic_type": "categorical", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 3, + "unique_ratio": 0.002171, + "example_values": [ + "2", + "4", + "more" + ] + } + }, + { + "name": "lug_boot", + "role": "feature", + "semantic_type": "categorical", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 3, + "unique_ratio": 0.002171, + "example_values": [ + "small", + "big", + "med" + ] + } + }, + { + "name": "safety", + "role": "feature", + "semantic_type": "categorical", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 3, + "unique_ratio": 0.002171, + "example_values": [ + "low", + "high", + "med" + ] + } + }, + { + "name": "class", + "role": "target", + "semantic_type": "categorical", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 4, + "unique_ratio": 0.002894, + "example_values": [ + "unacc", + "good", + "acc", + "vgood" + ] + } + } + ] +} \ No newline at end of file diff --git a/timecost/c2/tabbyflow/tabbyflow-c2-20260501_052813/runtime_result.json b/timecost/c2/tabbyflow/tabbyflow-c2-20260501_052813/runtime_result.json new file mode 100644 index 0000000000000000000000000000000000000000..d681c1bf60d9d59ab5575347a273cda152b97fd3 --- /dev/null +++ b/timecost/c2/tabbyflow/tabbyflow-c2-20260501_052813/runtime_result.json @@ -0,0 +1,27 @@ +{ + "dataset_id": "c2", + "model": "tabbyflow", + "run_id": "tabbyflow-c2-20260501_052813", + "public_gate_status": "pass", + "adapter_ready_status": "pass", + "train_status": "success", + "generate_status": "success", + "reason_code": null, + "reason_detail": null, + "artifacts": { + "synthetic_csv": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/c2/tabbyflow/tabbyflow-c2-20260501_052813/tabbyflow-c2-1382-20260501_053427.csv", + "model_path": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/c2/tabbyflow/tabbyflow-c2-20260501_052813/models_tabbyflow/trained.pt" + }, + "timings": { + "train": { + "started_at": "2026-05-01T05:28:13", + "ended_at": "2026-05-01T05:34:27", + "duration_sec": 374.559 + }, + "generate": { + "started_at": "2026-05-01T05:34:27", + "ended_at": "2026-05-01T05:34:37", + "duration_sec": 9.962 + } + } +} \ No newline at end of file diff --git a/timecost/c2/tabbyflow/tabbyflow-c2-20260501_052813/staged/public/staged_features.json b/timecost/c2/tabbyflow/tabbyflow-c2-20260501_052813/staged/public/staged_features.json new file mode 100644 index 0000000000000000000000000000000000000000..61783861dd5de501592f76acb0469cf3f3b2622a --- /dev/null +++ b/timecost/c2/tabbyflow/tabbyflow-c2-20260501_052813/staged/public/staged_features.json @@ -0,0 +1,37 @@ +[ + { + "feature_name": "buying", + "data_type": "categorical", + "is_target": false + }, + { + "feature_name": "maint", + "data_type": "categorical", + "is_target": false + }, + { + "feature_name": "doors", + "data_type": "categorical", + "is_target": false + }, + { + "feature_name": "persons", + "data_type": "categorical", + "is_target": false + }, + { + "feature_name": "lug_boot", + "data_type": "categorical", + "is_target": false + }, + { + "feature_name": "safety", + "data_type": "categorical", + "is_target": false + }, + { + "feature_name": "class", + "data_type": "categorical", + "is_target": true + } +] \ No newline at end of file diff --git a/timecost/c2/tabbyflow/tabbyflow-c2-20260501_052813/staged/public/test.csv b/timecost/c2/tabbyflow/tabbyflow-c2-20260501_052813/staged/public/test.csv new file mode 100644 index 0000000000000000000000000000000000000000..392a0d7189a34d8f13ecf20a99d64b03230d517c --- /dev/null +++ b/timecost/c2/tabbyflow/tabbyflow-c2-20260501_052813/staged/public/test.csv @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:b48114a7d0bc5bd9a07920f903c8d4aba8bf98bf2a66a050da03588b0245ca73 +size 5273 diff --git a/timecost/c2/tabbyflow/tabbyflow-c2-20260501_052813/staged/public/train.csv b/timecost/c2/tabbyflow/tabbyflow-c2-20260501_052813/staged/public/train.csv new file mode 100644 index 0000000000000000000000000000000000000000..da4f4d55134eebc0e51157d0d467536371db1484 --- /dev/null +++ b/timecost/c2/tabbyflow/tabbyflow-c2-20260501_052813/staged/public/train.csv @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:4aed00c2c2b3f88a55a7ebff31b2e1b5e0e32fb0a7267e0b9d2779cd23e434dd +size 41565 diff --git a/timecost/c2/tabbyflow/tabbyflow-c2-20260501_052813/staged/public/val.csv b/timecost/c2/tabbyflow/tabbyflow-c2-20260501_052813/staged/public/val.csv new file mode 100644 index 0000000000000000000000000000000000000000..af8caf7ee42524188534a3daf32996dc491952d9 --- /dev/null +++ b/timecost/c2/tabbyflow/tabbyflow-c2-20260501_052813/staged/public/val.csv @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:26e90c1170a57a14c05832ac88027722b1f3848f9662c7c09ef7c93dcba4cc01 +size 5176 diff --git a/timecost/c2/tabbyflow/tabbyflow-c2-20260501_052813/staged/tabbyflow/adapter_report.json b/timecost/c2/tabbyflow/tabbyflow-c2-20260501_052813/staged/tabbyflow/adapter_report.json new file mode 100644 index 0000000000000000000000000000000000000000..c576d3fa067c5ffde48915bfea86626b2043f54c --- /dev/null +++ b/timecost/c2/tabbyflow/tabbyflow-c2-20260501_052813/staged/tabbyflow/adapter_report.json @@ -0,0 +1,7 @@ +{ + "adapter_ready_status": "pass", + "adapter_fail_reason_code": null, + "adapter_fail_detail": null, + "adapter_transforms_applied": [], + "model_input_manifest": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/c2/tabbyflow/tabbyflow-c2-20260501_052813/staged/tabbyflow/model_input_manifest.json" +} \ No newline at end of file diff --git a/timecost/c2/tabbyflow/tabbyflow-c2-20260501_052813/staged/tabbyflow/adapter_transforms_applied.json b/timecost/c2/tabbyflow/tabbyflow-c2-20260501_052813/staged/tabbyflow/adapter_transforms_applied.json new file mode 100644 index 0000000000000000000000000000000000000000..0637a088a01e8ddab3bf3fa98dbe804cbde1a0dc --- /dev/null +++ b/timecost/c2/tabbyflow/tabbyflow-c2-20260501_052813/staged/tabbyflow/adapter_transforms_applied.json @@ -0,0 +1 @@ +[] \ No newline at end of file diff --git a/timecost/c2/tabbyflow/tabbyflow-c2-20260501_052813/staged/tabbyflow/model_input_manifest.json b/timecost/c2/tabbyflow/tabbyflow-c2-20260501_052813/staged/tabbyflow/model_input_manifest.json new file mode 100644 index 0000000000000000000000000000000000000000..9d554e3d49a66a7b506a9053ad8a2275b84e5284 --- /dev/null +++ b/timecost/c2/tabbyflow/tabbyflow-c2-20260501_052813/staged/tabbyflow/model_input_manifest.json @@ -0,0 +1,151 @@ +{ + "dataset_id": "c2", + "model": "tabbyflow", + "target_column": "class", + "task_type": "classification", + "column_schema": [ + { + "name": "buying", + "role": "feature", + "semantic_type": "categorical", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 4, + "unique_ratio": 0.002894, + "example_values": [ + "vhigh", + "med", + "high", + "low" + ] + } + }, + { + "name": "maint", + "role": "feature", + "semantic_type": "categorical", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 4, + "unique_ratio": 0.002894, + "example_values": [ + "vhigh", + "low", + "med", + "high" + ] + } + }, + { + "name": "doors", + "role": "feature", + "semantic_type": "categorical", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 4, + "unique_ratio": 0.002894, + "example_values": [ + "2", + "5more", + "3", + "4" + ] + } + }, + { + "name": "persons", + "role": "feature", + "semantic_type": "categorical", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 3, + "unique_ratio": 0.002171, + "example_values": [ + "2", + "4", + "more" + ] + } + }, + { + "name": "lug_boot", + "role": "feature", + "semantic_type": "categorical", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 3, + "unique_ratio": 0.002171, + "example_values": [ + "small", + "big", + "med" + ] + } + }, + { + "name": "safety", + "role": "feature", + "semantic_type": "categorical", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 3, + "unique_ratio": 0.002171, + "example_values": [ + "low", + "high", + "med" + ] + } + }, + { + "name": "class", + "role": "target", + "semantic_type": "categorical", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 4, + "unique_ratio": 0.002894, + "example_values": [ + "unacc", + "good", + "acc", + "vgood" + ] + } + } + ], + "public_manifest": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/c2/tabbyflow/tabbyflow-c2-20260501_052813/public_gate/staged_input_manifest.json", + "train_csv": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/c2/tabbyflow/tabbyflow-c2-20260501_052813/staged/public/train.csv", + "val_csv": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/c2/tabbyflow/tabbyflow-c2-20260501_052813/staged/public/val.csv", + "test_csv": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/c2/tabbyflow/tabbyflow-c2-20260501_052813/staged/public/test.csv", + "features_json": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/c2/tabbyflow/tabbyflow-c2-20260501_052813/staged/public/staged_features.json", + "public_gate_report": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/c2/tabbyflow/tabbyflow-c2-20260501_052813/public_gate/public_gate_report.json" +} \ No newline at end of file diff --git a/timecost/c2/tabbyflow/tabbyflow-c2-20260501_052813/tabbyflow-c2-1382-20260501_053427.csv b/timecost/c2/tabbyflow/tabbyflow-c2-20260501_052813/tabbyflow-c2-1382-20260501_053427.csv new file mode 100644 index 0000000000000000000000000000000000000000..a6e53d9e5f1a4ff173c5a43d34d0c264cfe06195 --- /dev/null +++ b/timecost/c2/tabbyflow/tabbyflow-c2-20260501_052813/tabbyflow-c2-1382-20260501_053427.csv @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:1d8becca5e0256674bb48e136f634a952a83ad2e28bbfd1c63182948c9dfcf73 +size 19397 diff --git a/timecost/c2/tabbyflow/tabbyflow-c2-20260501_052813/tabbyflow_train_meta.json b/timecost/c2/tabbyflow/tabbyflow-c2-20260501_052813/tabbyflow_train_meta.json new file mode 100644 index 0000000000000000000000000000000000000000..6d5e4fd3e80d640d56a2181b884d59fb4819fd22 --- /dev/null +++ b/timecost/c2/tabbyflow/tabbyflow-c2-20260501_052813/tabbyflow_train_meta.json @@ -0,0 +1,5 @@ +{ + "exp_name": "adapter_efvfm", + "dataname": "pipeline_c2", + "steps": 500 +} \ No newline at end of file diff --git a/timecost/c2/tabbyflow/tabbyflow-c2-20260501_052813/tabular_bundle/pipeline_c2/X_cat_test.npy b/timecost/c2/tabbyflow/tabbyflow-c2-20260501_052813/tabular_bundle/pipeline_c2/X_cat_test.npy new file mode 100644 index 0000000000000000000000000000000000000000..e99f1ae8dc9e7155e5c4bbbd3c2f3f7215c628f7 --- /dev/null +++ b/timecost/c2/tabbyflow/tabbyflow-c2-20260501_052813/tabular_bundle/pipeline_c2/X_cat_test.npy @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:24d2203601ba060728920e754747e5a1dc3955a1b5775e147382fee4f1812542 +size 66464 diff --git a/timecost/c2/tabbyflow/tabbyflow-c2-20260501_052813/tabular_bundle/pipeline_c2/X_cat_train.npy b/timecost/c2/tabbyflow/tabbyflow-c2-20260501_052813/tabular_bundle/pipeline_c2/X_cat_train.npy new file mode 100644 index 0000000000000000000000000000000000000000..e99f1ae8dc9e7155e5c4bbbd3c2f3f7215c628f7 --- /dev/null +++ b/timecost/c2/tabbyflow/tabbyflow-c2-20260501_052813/tabular_bundle/pipeline_c2/X_cat_train.npy @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:24d2203601ba060728920e754747e5a1dc3955a1b5775e147382fee4f1812542 +size 66464 diff --git a/timecost/c2/tabbyflow/tabbyflow-c2-20260501_052813/tabular_bundle/pipeline_c2/X_cat_val.npy b/timecost/c2/tabbyflow/tabbyflow-c2-20260501_052813/tabular_bundle/pipeline_c2/X_cat_val.npy new file mode 100644 index 0000000000000000000000000000000000000000..e99f1ae8dc9e7155e5c4bbbd3c2f3f7215c628f7 --- /dev/null +++ b/timecost/c2/tabbyflow/tabbyflow-c2-20260501_052813/tabular_bundle/pipeline_c2/X_cat_val.npy @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:24d2203601ba060728920e754747e5a1dc3955a1b5775e147382fee4f1812542 +size 66464 diff --git a/timecost/c2/tabbyflow/tabbyflow-c2-20260501_052813/tabular_bundle/pipeline_c2/X_num_test.npy b/timecost/c2/tabbyflow/tabbyflow-c2-20260501_052813/tabular_bundle/pipeline_c2/X_num_test.npy new file mode 100644 index 0000000000000000000000000000000000000000..9370f90332827a72be71bf3347770cac2c0354f5 --- /dev/null +++ b/timecost/c2/tabbyflow/tabbyflow-c2-20260501_052813/tabular_bundle/pipeline_c2/X_num_test.npy @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:79dbdf62b6c69f71f3fef2bfcff35e322b2ac9387fc545116c7bc0078b3de9ec +size 128 diff --git a/timecost/c2/tabbyflow/tabbyflow-c2-20260501_052813/tabular_bundle/pipeline_c2/X_num_train.npy b/timecost/c2/tabbyflow/tabbyflow-c2-20260501_052813/tabular_bundle/pipeline_c2/X_num_train.npy new file mode 100644 index 0000000000000000000000000000000000000000..9370f90332827a72be71bf3347770cac2c0354f5 --- /dev/null +++ b/timecost/c2/tabbyflow/tabbyflow-c2-20260501_052813/tabular_bundle/pipeline_c2/X_num_train.npy @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:79dbdf62b6c69f71f3fef2bfcff35e322b2ac9387fc545116c7bc0078b3de9ec +size 128 diff --git a/timecost/c2/tabbyflow/tabbyflow-c2-20260501_052813/tabular_bundle/pipeline_c2/X_num_val.npy b/timecost/c2/tabbyflow/tabbyflow-c2-20260501_052813/tabular_bundle/pipeline_c2/X_num_val.npy new file mode 100644 index 0000000000000000000000000000000000000000..9370f90332827a72be71bf3347770cac2c0354f5 --- /dev/null +++ b/timecost/c2/tabbyflow/tabbyflow-c2-20260501_052813/tabular_bundle/pipeline_c2/X_num_val.npy @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:79dbdf62b6c69f71f3fef2bfcff35e322b2ac9387fc545116c7bc0078b3de9ec +size 128 diff --git a/timecost/c2/tabbyflow/tabbyflow-c2-20260501_052813/tabular_bundle/pipeline_c2/info.json b/timecost/c2/tabbyflow/tabbyflow-c2-20260501_052813/tabular_bundle/pipeline_c2/info.json new file mode 100644 index 0000000000000000000000000000000000000000..bf064b213901b4f614a949e23e2e89a63aac1488 --- /dev/null +++ b/timecost/c2/tabbyflow/tabbyflow-c2-20260501_052813/tabular_bundle/pipeline_c2/info.json @@ -0,0 +1,88 @@ +{ + "name": "pipeline_c2", + "task_type": "multiclass", + "n_num_features": 0, + "n_cat_features": 6, + "train_size": 1382, + "test_num": 1382, + "val_num": 1382, + "train_num": 1382, + "bundle_note": "val/test matrices are train copies (train-only policy; no real held-out rows).", + "num_col_idx": [], + "cat_col_idx": [ + 0, + 1, + 2, + 3, + 4, + 5 + ], + "target_col_idx": [ + 6 + ], + "column_names": [ + "buying", + "maint", + "doors", + "persons", + "lug_boot", + "safety", + "class" + ], + "int_col_idx": [], + "int_columns": [], + "int_col_idx_wrt_num": [], + "metadata": { + "columns": { + "0": { + "sdtype": "categorical" + }, + "1": { + "sdtype": "categorical" + }, + "2": { + "sdtype": "categorical" + }, + "3": { + "sdtype": "categorical" + }, + "4": { + "sdtype": "categorical" + }, + "5": { + "sdtype": "categorical" + }, + "6": { + "sdtype": "categorical" + } + } + }, + "idx_mapping": { + "0": 0, + "1": 1, + "2": 2, + "3": 3, + "4": 4, + "5": 5, + "6": 6 + }, + "inverse_idx_mapping": { + "0": 0, + "1": 1, + "2": 2, + "3": 3, + "4": 4, + "5": 5, + "6": 6 + }, + "idx_name_mapping": { + "0": "buying", + "1": "maint", + "2": "doors", + "3": "persons", + "4": "lug_boot", + "5": "safety", + "6": "class" + }, + "n_classes": 4 +} \ No newline at end of file diff --git a/timecost/c2/tabbyflow/tabbyflow-c2-20260501_052813/tabular_bundle/pipeline_c2/real.csv b/timecost/c2/tabbyflow/tabbyflow-c2-20260501_052813/tabular_bundle/pipeline_c2/real.csv new file mode 100644 index 0000000000000000000000000000000000000000..f778fcd2758e712a195229c6f50504f94f046c8d --- /dev/null +++ b/timecost/c2/tabbyflow/tabbyflow-c2-20260501_052813/tabular_bundle/pipeline_c2/real.csv @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:a54d8aab34745836c4d0260009787c8064c2c3e9d99040c5a6856190eb0745e9 +size 24215 diff --git a/timecost/c2/tabbyflow/tabbyflow-c2-20260501_052813/tabular_bundle/pipeline_c2/test.csv b/timecost/c2/tabbyflow/tabbyflow-c2-20260501_052813/tabular_bundle/pipeline_c2/test.csv new file mode 100644 index 0000000000000000000000000000000000000000..f778fcd2758e712a195229c6f50504f94f046c8d --- /dev/null +++ b/timecost/c2/tabbyflow/tabbyflow-c2-20260501_052813/tabular_bundle/pipeline_c2/test.csv @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:a54d8aab34745836c4d0260009787c8064c2c3e9d99040c5a6856190eb0745e9 +size 24215 diff --git a/timecost/c2/tabbyflow/tabbyflow-c2-20260501_052813/tabular_bundle/pipeline_c2/val.csv b/timecost/c2/tabbyflow/tabbyflow-c2-20260501_052813/tabular_bundle/pipeline_c2/val.csv new file mode 100644 index 0000000000000000000000000000000000000000..f778fcd2758e712a195229c6f50504f94f046c8d --- /dev/null +++ b/timecost/c2/tabbyflow/tabbyflow-c2-20260501_052813/tabular_bundle/pipeline_c2/val.csv @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:a54d8aab34745836c4d0260009787c8064c2c3e9d99040c5a6856190eb0745e9 +size 24215 diff --git a/timecost/c2/tabbyflow/tabbyflow-c2-20260501_052813/tabular_bundle/pipeline_c2/y_test.npy b/timecost/c2/tabbyflow/tabbyflow-c2-20260501_052813/tabular_bundle/pipeline_c2/y_test.npy new file mode 100644 index 0000000000000000000000000000000000000000..8bfc8f9de7350657cd6411c55d2b9b87bea9c13a --- /dev/null +++ b/timecost/c2/tabbyflow/tabbyflow-c2-20260501_052813/tabular_bundle/pipeline_c2/y_test.npy @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:3f8eb0b25043331a30fde5439f063eed59e7a76f45d7d102b9b4fbcd16b551b4 +size 11184 diff --git a/timecost/c2/tabbyflow/tabbyflow-c2-20260501_052813/tabular_bundle/pipeline_c2/y_train.npy b/timecost/c2/tabbyflow/tabbyflow-c2-20260501_052813/tabular_bundle/pipeline_c2/y_train.npy new file mode 100644 index 0000000000000000000000000000000000000000..8bfc8f9de7350657cd6411c55d2b9b87bea9c13a --- /dev/null +++ b/timecost/c2/tabbyflow/tabbyflow-c2-20260501_052813/tabular_bundle/pipeline_c2/y_train.npy @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:3f8eb0b25043331a30fde5439f063eed59e7a76f45d7d102b9b4fbcd16b551b4 +size 11184 diff --git a/timecost/c2/tabbyflow/tabbyflow-c2-20260501_052813/tabular_bundle/pipeline_c2/y_val.npy b/timecost/c2/tabbyflow/tabbyflow-c2-20260501_052813/tabular_bundle/pipeline_c2/y_val.npy new file mode 100644 index 0000000000000000000000000000000000000000..8bfc8f9de7350657cd6411c55d2b9b87bea9c13a --- /dev/null +++ b/timecost/c2/tabbyflow/tabbyflow-c2-20260501_052813/tabular_bundle/pipeline_c2/y_val.npy @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:3f8eb0b25043331a30fde5439f063eed59e7a76f45d7d102b9b4fbcd16b551b4 +size 11184 diff --git a/timecost/c2/tabbyflow/tabbyflow-c2-20260501_052813/train_20260501_052813.log b/timecost/c2/tabbyflow/tabbyflow-c2-20260501_052813/train_20260501_052813.log new file mode 100644 index 0000000000000000000000000000000000000000..aecc93002ecc2ed4ad1e5140a514c1bac53c221f --- /dev/null +++ b/timecost/c2/tabbyflow/tabbyflow-c2-20260501_052813/train_20260501_052813.log @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:b0f057a74a0bffb161d24ac00249eb8e9e1d04cb5519e026f539daf6092430aa +size 284038 diff --git a/timecost/c2/tabddpm/tabddpm-c2-20260501_053445/_tabddpm_sample_r0.py b/timecost/c2/tabddpm/tabddpm-c2-20260501_053445/_tabddpm_sample_r0.py new file mode 100644 index 0000000000000000000000000000000000000000..1332f77f922300a8fd73344d77e0f62f24f16145 --- /dev/null +++ b/timecost/c2/tabddpm/tabddpm-c2-20260501_053445/_tabddpm_sample_r0.py @@ -0,0 +1,66 @@ +import os, sys, subprocess, json +import numpy as np +import pandas as pd + +tabddpm_root = "/workspace/tabddpm/code" +assert os.path.isdir(tabddpm_root), f"TabDDPM source not mounted: {tabddpm_root}" +env = os.environ.copy() +env["PYTHONPATH"] = tabddpm_root + (os.pathsep + env.get("PYTHONPATH", "")) + +# Reuse the compat wrapper (patches collections.Sequence for skorch) +wrapper = os.path.join(tabddpm_root, "_compat_run.py") +if not os.path.exists(wrapper): + with open(wrapper, "w") as f: + f.write( + "import collections, collections.abc\n" + "for _a in ('Sequence','MutableSequence','MutableMapping','Mapping'," + "'MutableSet','Set','Callable','Iterable','Iterator'):\n" + " if not hasattr(collections, _a): setattr(collections, _a, getattr(collections.abc, _a, None))\n" + "import sys, runpy\n" + "sys.argv = sys.argv[1:]\n" + "runpy.run_path(sys.argv[0], run_name='__main__')\n" + ) + +print(f"[TabDDPM] Sampling 1382 rows") +ret = subprocess.run( + [sys.executable, wrapper, "scripts/pipeline.py", + "--config", "/work/output-Benchmark-trainonly-v1/c2/tabddpm/tabddpm-c2-20260501_053445/config_sample_20260501_053541_r0.toml", + "--sample"], + cwd=tabddpm_root, + env=env +) +if ret.returncode != 0: + sys.exit(ret.returncode) + +# 将 .npy 输出转为 CSV(npy 在 TabDDPM 的 parent_dir,即 npy_dir) +info_path = "/work/output-Benchmark-trainonly-v1/c2/tabddpm/tabddpm-c2-20260501_053445/data/info.json" +with open(info_path) as f: + info = json.load(f) + +output_dir = "/work/output-Benchmark-trainonly-v1/c2/tabddpm/tabddpm-c2-20260501_053445/output" +col_names = info.get("column_names", []) + +parts = [] +x_num_path = os.path.join(output_dir, "X_num_train.npy") +x_cat_path = os.path.join(output_dir, "X_cat_train.npy") +y_path = os.path.join(output_dir, "y_train.npy") + +if os.path.exists(x_num_path): + parts.append(np.load(x_num_path, allow_pickle=True)) +if os.path.exists(x_cat_path): + parts.append(np.load(x_cat_path, allow_pickle=True).astype(float)) +if os.path.exists(y_path): + y = np.load(y_path, allow_pickle=True) + parts.append(y.reshape(-1, 1) if y.ndim == 1 else y) + +if parts: + combined = np.concatenate(parts, axis=1) + if col_names and len(col_names) == combined.shape[1]: + df = pd.DataFrame(combined, columns=col_names) + else: + df = pd.DataFrame(combined) + df.to_csv("/work/output-Benchmark-trainonly-v1/c2/tabddpm/tabddpm-c2-20260501_053445/tabddpm-c2-1382-20260501_053541.csv", index=False) + print(f"[TabDDPM] Saved {len(df)} rows -> /work/output-Benchmark-trainonly-v1/c2/tabddpm/tabddpm-c2-20260501_053445/tabddpm-c2-1382-20260501_053541.csv") +else: + print("[TabDDPM] WARNING: No output .npy files found") + sys.exit(1) diff --git a/timecost/c2/tabddpm/tabddpm-c2-20260501_053445/_tabddpm_train.py b/timecost/c2/tabddpm/tabddpm-c2-20260501_053445/_tabddpm_train.py new file mode 100644 index 0000000000000000000000000000000000000000..92d450469a11256c4fd44fb797498e3ddd855674 --- /dev/null +++ b/timecost/c2/tabddpm/tabddpm-c2-20260501_053445/_tabddpm_train.py @@ -0,0 +1,32 @@ +import os, sys, subprocess + +tabddpm_root = "/workspace/tabddpm/code" +assert os.path.isdir(tabddpm_root), f"TabDDPM source not mounted: {tabddpm_root}" +env = os.environ.copy() +env["PYTHONPATH"] = tabddpm_root + (os.pathsep + env.get("PYTHONPATH", "")) + +# Write a wrapper that patches collections.Sequence (removed in Python 3.10+) +# before running pipeline.py - needed because skorch uses old API +wrapper = os.path.join(tabddpm_root, "_compat_run.py") +with open(wrapper, "w") as f: + f.write( + "import collections, collections.abc\n" + "for _a in ('Sequence','MutableSequence','MutableMapping','Mapping'," + "'MutableSet','Set','Callable','Iterable','Iterator'):\n" + " if not hasattr(collections, _a): setattr(collections, _a, getattr(collections.abc, _a, None))\n" + "import sys, runpy\n" + "sys.argv = sys.argv[1:]\n" + "runpy.run_path(sys.argv[0], run_name='__main__')\n" + ) + +print(f"[TabDDPM] Training, config=/work/output-Benchmark-trainonly-v1/c2/tabddpm/tabddpm-c2-20260501_053445/config.toml") +ret = subprocess.run( + [sys.executable, wrapper, "scripts/pipeline.py", + "--config", "/work/output-Benchmark-trainonly-v1/c2/tabddpm/tabddpm-c2-20260501_053445/config.toml", + "--train"], + cwd=tabddpm_root, + env=env +) +if ret.returncode != 0: + sys.exit(ret.returncode) +print("[TabDDPM] Training complete") diff --git a/timecost/c2/tabddpm/tabddpm-c2-20260501_053445/config.toml b/timecost/c2/tabddpm/tabddpm-c2-20260501_053445/config.toml new file mode 100644 index 0000000000000000000000000000000000000000..cfd9b4ef9bd2c804ea29a19f0ad39fbb43d76cd1 --- /dev/null +++ b/timecost/c2/tabddpm/tabddpm-c2-20260501_053445/config.toml @@ -0,0 +1,39 @@ +seed = 0 +parent_dir = "/work/output-Benchmark-trainonly-v1/c2/tabddpm/tabddpm-c2-20260501_053445/output" +real_data_path = "/work/output-Benchmark-trainonly-v1/c2/tabddpm/tabddpm-c2-20260501_053445/data" +model_type = "mlp" +num_numerical_features = 0 +device = "cuda:0" + +[model_params] +d_in = 6 +num_classes = 4 +is_y_cond = true + +[model_params.rtdl_params] +d_layers = [256, 256] +dropout = 0.0 + +[diffusion_params] +num_timesteps = 1000 +gaussian_loss_type = "mse" + +[train.main] +steps = 5000 +lr = 0.001 +weight_decay = 0.0 +batch_size = 256 + +[train.T] +seed = 0 +normalization = "quantile" +num_nan_policy = "__none__" +cat_nan_policy = "__none__" +cat_min_frequency = "__none__" +cat_encoding = "__none__" +y_policy = "default" + +[sample] +num_samples = 1000 +batch_size = 1000 +seed = 0 diff --git a/timecost/c2/tabddpm/tabddpm-c2-20260501_053445/config_sample_20260501_053541_r0.toml b/timecost/c2/tabddpm/tabddpm-c2-20260501_053445/config_sample_20260501_053541_r0.toml new file mode 100644 index 0000000000000000000000000000000000000000..995cd61ec100ee4b3422228b85916af561a13b82 --- /dev/null +++ b/timecost/c2/tabddpm/tabddpm-c2-20260501_053445/config_sample_20260501_053541_r0.toml @@ -0,0 +1,39 @@ +seed = 0 +parent_dir = "/work/output-Benchmark-trainonly-v1/c2/tabddpm/tabddpm-c2-20260501_053445/output" +real_data_path = "/work/output-Benchmark-trainonly-v1/c2/tabddpm/tabddpm-c2-20260501_053445/data" +model_type = "mlp" +num_numerical_features = 0 +device = "cuda:0" + +[model_params] +d_in = 6 +num_classes = 4 +is_y_cond = true + +[model_params.rtdl_params] +d_layers = [256, 256] +dropout = 0.0 + +[diffusion_params] +num_timesteps = 1000 +gaussian_loss_type = "mse" + +[train.main] +steps = 5000 +lr = 0.001 +weight_decay = 0.0 +batch_size = 256 + +[train.T] +seed = 0 +normalization = "quantile" +num_nan_policy = "__none__" +cat_nan_policy = "__none__" +cat_min_frequency = "__none__" +cat_encoding = "__none__" +y_policy = "default" + +[sample] +num_samples = 1382 +batch_size = 1000 +seed = 0 diff --git a/timecost/c2/tabddpm/tabddpm-c2-20260501_053445/data/X_cat_train.npy b/timecost/c2/tabddpm/tabddpm-c2-20260501_053445/data/X_cat_train.npy new file mode 100644 index 0000000000000000000000000000000000000000..e99f1ae8dc9e7155e5c4bbbd3c2f3f7215c628f7 --- /dev/null +++ b/timecost/c2/tabddpm/tabddpm-c2-20260501_053445/data/X_cat_train.npy @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:24d2203601ba060728920e754747e5a1dc3955a1b5775e147382fee4f1812542 +size 66464 diff --git a/timecost/c2/tabddpm/tabddpm-c2-20260501_053445/data/info.json b/timecost/c2/tabddpm/tabddpm-c2-20260501_053445/data/info.json new file mode 100644 index 0000000000000000000000000000000000000000..0f2b351a317260c450725d5a04373330ad3701a3 --- /dev/null +++ b/timecost/c2/tabddpm/tabddpm-c2-20260501_053445/data/info.json @@ -0,0 +1,29 @@ +{ + "name": "benchmark_dataset", + "task_type": "multiclass", + "n_num_features": 0, + "n_cat_features": 6, + "train_size": 1382, + "num_col_idx": [], + "cat_col_idx": [ + 0, + 1, + 2, + 3, + 4, + 5 + ], + "target_col_idx": [ + 6 + ], + "column_names": [ + "buying", + "maint", + "doors", + "persons", + "lug_boot", + "safety", + "class" + ], + "num_classes": 4 +} \ No newline at end of file diff --git a/timecost/c2/tabddpm/tabddpm-c2-20260501_053445/data/y_train.npy b/timecost/c2/tabddpm/tabddpm-c2-20260501_053445/data/y_train.npy new file mode 100644 index 0000000000000000000000000000000000000000..8bfc8f9de7350657cd6411c55d2b9b87bea9c13a --- /dev/null +++ b/timecost/c2/tabddpm/tabddpm-c2-20260501_053445/data/y_train.npy @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:3f8eb0b25043331a30fde5439f063eed59e7a76f45d7d102b9b4fbcd16b551b4 +size 11184 diff --git a/timecost/c2/tabddpm/tabddpm-c2-20260501_053445/gen_20260501_053541_r0.log b/timecost/c2/tabddpm/tabddpm-c2-20260501_053445/gen_20260501_053541_r0.log new file mode 100644 index 0000000000000000000000000000000000000000..5c10bbac2bdc4e338275e0d3d15859957f568ba2 --- /dev/null +++ b/timecost/c2/tabddpm/tabddpm-c2-20260501_053445/gen_20260501_053541_r0.log @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:c7213a586526de04ecda26ec75cada4459cebf641c8481eb89462372a8ef761d +size 42462 diff --git a/timecost/c2/tabddpm/tabddpm-c2-20260501_053445/input_snapshot.json b/timecost/c2/tabddpm/tabddpm-c2-20260501_053445/input_snapshot.json new file mode 100644 index 0000000000000000000000000000000000000000..772021148f055243c89ddfd9b6fa388ee33d05ea --- /dev/null +++ b/timecost/c2/tabddpm/tabddpm-c2-20260501_053445/input_snapshot.json @@ -0,0 +1,36 @@ +{ + "dataset_id": "c2", + "model": "tabddpm", + "inputs": { + "train_csv": { + "path": "/data/jialinzhang/SynthesizePipeline-server/DatasetNew/c2/c2-train.csv", + "exists": true, + "size": 42948, + "sha256": "17bc560fa96bd00fb3b526e1e65bc91210b701d0d0a4e8bb9b4c5196cab56def" + }, + "val_csv": { + "path": "/data/jialinzhang/SynthesizePipeline-server/DatasetNew/c2/c2-val.csv", + "exists": true, + "size": 5349, + "sha256": "61e565eca62e65a7dccd9d51039a3170413379e10fc494e25870e7c4294863c9" + }, + "test_csv": { + "path": "/data/jialinzhang/SynthesizePipeline-server/DatasetNew/c2/c2-test.csv", + "exists": true, + "size": 5448, + "sha256": "cbcbb062a1faf5fa44b66c80532baa229e05b94fc42137269761e6c6d84af20a" + }, + "profile_json": { + "path": "/data/jialinzhang/SynthesizePipeline-server/DatasetNew/artifacts/data_core/tabular/c2/c2-dataset_profile.json", + "exists": true, + "size": 3240, + "sha256": "526b7163b2076c93c0bf4638438081ee8a6907065d5b608faa40d1a3dbc2a27b" + }, + "contract_json": { + "path": "/data/jialinzhang/SynthesizePipeline-server/DatasetNew/artifacts/data_core/tabular/c2/c2-dataset_contract_v1.json", + "exists": true, + "size": 3731, + "sha256": "fb595a876054c2ee9b4e10cfe83a5691588de1d25466cbb9d473c18ad3604009" + } + } +} \ No newline at end of file diff --git a/timecost/c2/tabddpm/tabddpm-c2-20260501_053445/output/X_cat_train.npy b/timecost/c2/tabddpm/tabddpm-c2-20260501_053445/output/X_cat_train.npy new file mode 100644 index 0000000000000000000000000000000000000000..1afe10e9ad04bdf628acab837f97dc71381ae6b5 --- /dev/null +++ b/timecost/c2/tabddpm/tabddpm-c2-20260501_053445/output/X_cat_train.npy @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:f3e794630e03fa6aa423cbcc412303cd342a9e772682c127caa3988778103dbd +size 16885 diff --git a/timecost/c2/tabddpm/tabddpm-c2-20260501_053445/output/X_cat_unnorm.npy b/timecost/c2/tabddpm/tabddpm-c2-20260501_053445/output/X_cat_unnorm.npy new file mode 100644 index 0000000000000000000000000000000000000000..a59ef680a27f15c2dfc431c4c0a79779ecc321fa --- /dev/null +++ b/timecost/c2/tabddpm/tabddpm-c2-20260501_053445/output/X_cat_unnorm.npy @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:7aaee2a9171fa9fe9f0027724f0e45a2e2a3b49c592f5c6c98b509a48b361563 +size 66464 diff --git a/timecost/c2/tabddpm/tabddpm-c2-20260501_053445/output/config.toml b/timecost/c2/tabddpm/tabddpm-c2-20260501_053445/output/config.toml new file mode 100644 index 0000000000000000000000000000000000000000..995cd61ec100ee4b3422228b85916af561a13b82 --- /dev/null +++ b/timecost/c2/tabddpm/tabddpm-c2-20260501_053445/output/config.toml @@ -0,0 +1,39 @@ +seed = 0 +parent_dir = "/work/output-Benchmark-trainonly-v1/c2/tabddpm/tabddpm-c2-20260501_053445/output" +real_data_path = "/work/output-Benchmark-trainonly-v1/c2/tabddpm/tabddpm-c2-20260501_053445/data" +model_type = "mlp" +num_numerical_features = 0 +device = "cuda:0" + +[model_params] +d_in = 6 +num_classes = 4 +is_y_cond = true + +[model_params.rtdl_params] +d_layers = [256, 256] +dropout = 0.0 + +[diffusion_params] +num_timesteps = 1000 +gaussian_loss_type = "mse" + +[train.main] +steps = 5000 +lr = 0.001 +weight_decay = 0.0 +batch_size = 256 + +[train.T] +seed = 0 +normalization = "quantile" +num_nan_policy = "__none__" +cat_nan_policy = "__none__" +cat_min_frequency = "__none__" +cat_encoding = "__none__" +y_policy = "default" + +[sample] +num_samples = 1382 +batch_size = 1000 +seed = 0 diff --git a/timecost/c2/tabddpm/tabddpm-c2-20260501_053445/output/info.json b/timecost/c2/tabddpm/tabddpm-c2-20260501_053445/output/info.json new file mode 100644 index 0000000000000000000000000000000000000000..0f2b351a317260c450725d5a04373330ad3701a3 --- /dev/null +++ b/timecost/c2/tabddpm/tabddpm-c2-20260501_053445/output/info.json @@ -0,0 +1,29 @@ +{ + "name": "benchmark_dataset", + "task_type": "multiclass", + "n_num_features": 0, + "n_cat_features": 6, + "train_size": 1382, + "num_col_idx": [], + "cat_col_idx": [ + 0, + 1, + 2, + 3, + 4, + 5 + ], + "target_col_idx": [ + 6 + ], + "column_names": [ + "buying", + "maint", + "doors", + "persons", + "lug_boot", + "safety", + "class" + ], + "num_classes": 4 +} \ No newline at end of file diff --git a/timecost/c2/tabddpm/tabddpm-c2-20260501_053445/output/loss.csv b/timecost/c2/tabddpm/tabddpm-c2-20260501_053445/output/loss.csv new file mode 100644 index 0000000000000000000000000000000000000000..dd9587ff64e877faf18fb187eea560a843e932d5 --- /dev/null +++ b/timecost/c2/tabddpm/tabddpm-c2-20260501_053445/output/loss.csv @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:5f6f64aab8041c39f33c6e3bb32a0964b75a4692062c9eec03a84cae0cfb47ac +size 1249 diff --git a/timecost/c2/tabddpm/tabddpm-c2-20260501_053445/output/model.pt b/timecost/c2/tabddpm/tabddpm-c2-20260501_053445/output/model.pt new file mode 100644 index 0000000000000000000000000000000000000000..96769674b49295a16307d75a46fae3b6bdb6dd55 --- /dev/null +++ b/timecost/c2/tabddpm/tabddpm-c2-20260501_053445/output/model.pt @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:db4f8cce94f8d9428f68d597138bdd3d357d268f5da7b268c89fab510fce817a +size 566934 diff --git a/timecost/c2/tabddpm/tabddpm-c2-20260501_053445/output/model_ema.pt b/timecost/c2/tabddpm/tabddpm-c2-20260501_053445/output/model_ema.pt new file mode 100644 index 0000000000000000000000000000000000000000..54e3568232f44cd6be11757eb357c334575d37d6 --- /dev/null +++ b/timecost/c2/tabddpm/tabddpm-c2-20260501_053445/output/model_ema.pt @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:285d1dffd7456b5ccf89321bfd98304d0594f85982aee4729e3175ffbffa68aa +size 567778 diff --git a/timecost/c2/tabddpm/tabddpm-c2-20260501_053445/output/y_train.npy b/timecost/c2/tabddpm/tabddpm-c2-20260501_053445/output/y_train.npy new file mode 100644 index 0000000000000000000000000000000000000000..aa9afff4d061333b18828274b1072d1b884f162c --- /dev/null +++ b/timecost/c2/tabddpm/tabddpm-c2-20260501_053445/output/y_train.npy @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:58b1a722d369027a22bed702e3539c6fefa976741570c4c0a2f8546e2978c3d7 +size 11184 diff --git a/timecost/c2/tabddpm/tabddpm-c2-20260501_053445/public_gate/normalized_schema_snapshot.json b/timecost/c2/tabddpm/tabddpm-c2-20260501_053445/public_gate/normalized_schema_snapshot.json new file mode 100644 index 0000000000000000000000000000000000000000..689b1d00d96508e44ba40e58dc4560e19afc2b3b --- /dev/null +++ b/timecost/c2/tabddpm/tabddpm-c2-20260501_053445/public_gate/normalized_schema_snapshot.json @@ -0,0 +1,144 @@ +{ + "dataset_id": "c2", + "target_column": "class", + "task_type": "classification", + "columns": [ + { + "name": "buying", + "role": "feature", + "semantic_type": "categorical", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 4, + "unique_ratio": 0.002894, + "example_values": [ + "vhigh", + "med", + "high", + "low" + ] + } + }, + { + "name": "maint", + "role": "feature", + "semantic_type": "categorical", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 4, + "unique_ratio": 0.002894, + "example_values": [ + "vhigh", + "low", + "med", + "high" + ] + } + }, + { + "name": "doors", + "role": "feature", + "semantic_type": "categorical", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 4, + "unique_ratio": 0.002894, + "example_values": [ + "2", + "5more", + "3", + "4" + ] + } + }, + { + "name": "persons", + "role": "feature", + "semantic_type": "categorical", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 3, + "unique_ratio": 0.002171, + "example_values": [ + "2", + "4", + "more" + ] + } + }, + { + "name": "lug_boot", + "role": "feature", + "semantic_type": "categorical", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 3, + "unique_ratio": 0.002171, + "example_values": [ + "small", + "big", + "med" + ] + } + }, + { + "name": "safety", + "role": "feature", + "semantic_type": "categorical", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 3, + "unique_ratio": 0.002171, + "example_values": [ + "low", + "high", + "med" + ] + } + }, + { + "name": "class", + "role": "target", + "semantic_type": "categorical", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 4, + "unique_ratio": 0.002894, + "example_values": [ + "unacc", + "good", + "acc", + "vgood" + ] + } + } + ] +} \ No newline at end of file diff --git a/timecost/c2/tabddpm/tabddpm-c2-20260501_053445/public_gate/public_gate_report.json b/timecost/c2/tabddpm/tabddpm-c2-20260501_053445/public_gate/public_gate_report.json new file mode 100644 index 0000000000000000000000000000000000000000..2e4cdcb2a4e28e40d59b17a83e773f622b7636a5 --- /dev/null +++ b/timecost/c2/tabddpm/tabddpm-c2-20260501_053445/public_gate/public_gate_report.json @@ -0,0 +1,37 @@ +{ + "dataset_id": "c2", + "status": "pass", + "checks": [ + { + "check_id": "PG001_csv_parse_ok", + "status": "pass" + }, + { + "check_id": "PG002_split_header_consistent", + "status": "pass" + }, + { + "check_id": "PG003_profile_header_match", + "status": "pass" + }, + { + "check_id": "PG004_missing_token_normalized", + "status": "pass" + }, + { + "check_id": "PG005_semantic_type_validated", + "status": "pass" + }, + { + "check_id": "PG006_target_defined_and_valid", + "status": "pass" + } + ], + "target_column": "class", + "task_type": "classification", + "input_splits": { + "train": "/data/jialinzhang/SynthesizePipeline-server/DatasetNew/c2/c2-train.csv", + "val": "/data/jialinzhang/SynthesizePipeline-server/DatasetNew/c2/c2-val.csv", + "test": "/data/jialinzhang/SynthesizePipeline-server/DatasetNew/c2/c2-test.csv" + } +} \ No newline at end of file diff --git a/timecost/c2/tabddpm/tabddpm-c2-20260501_053445/public_gate/staged_input_manifest.json b/timecost/c2/tabddpm/tabddpm-c2-20260501_053445/public_gate/staged_input_manifest.json new file mode 100644 index 0000000000000000000000000000000000000000..47fb0c9ff6989fe85c97a1d5aad8f1a563da07c8 --- /dev/null +++ b/timecost/c2/tabddpm/tabddpm-c2-20260501_053445/public_gate/staged_input_manifest.json @@ -0,0 +1,149 @@ +{ + "dataset_id": "c2", + "target_column": "class", + "task_type": "classification", + "train_csv": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/c2/tabddpm/tabddpm-c2-20260501_053445/staged/public/train.csv", + "val_csv": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/c2/tabddpm/tabddpm-c2-20260501_053445/staged/public/val.csv", + "test_csv": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/c2/tabddpm/tabddpm-c2-20260501_053445/staged/public/test.csv", + "features_json": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/c2/tabddpm/tabddpm-c2-20260501_053445/staged/public/staged_features.json", + "public_gate_report": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/c2/tabddpm/tabddpm-c2-20260501_053445/public_gate/public_gate_report.json", + "column_schema": [ + { + "name": "buying", + "role": "feature", + "semantic_type": "categorical", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 4, + "unique_ratio": 0.002894, + "example_values": [ + "vhigh", + "med", + "high", + "low" + ] + } + }, + { + "name": "maint", + "role": "feature", + "semantic_type": "categorical", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 4, + "unique_ratio": 0.002894, + "example_values": [ + "vhigh", + "low", + "med", + "high" + ] + } + }, + { + "name": "doors", + "role": "feature", + "semantic_type": "categorical", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 4, + "unique_ratio": 0.002894, + "example_values": [ + "2", + "5more", + "3", + "4" + ] + } + }, + { + "name": "persons", + "role": "feature", + "semantic_type": "categorical", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 3, + "unique_ratio": 0.002171, + "example_values": [ + "2", + "4", + "more" + ] + } + }, + { + "name": "lug_boot", + "role": "feature", + "semantic_type": "categorical", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 3, + "unique_ratio": 0.002171, + "example_values": [ + "small", + "big", + "med" + ] + } + }, + { + "name": "safety", + "role": "feature", + "semantic_type": "categorical", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 3, + "unique_ratio": 0.002171, + "example_values": [ + "low", + "high", + "med" + ] + } + }, + { + "name": "class", + "role": "target", + "semantic_type": "categorical", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 4, + "unique_ratio": 0.002894, + "example_values": [ + "unacc", + "good", + "acc", + "vgood" + ] + } + } + ] +} \ No newline at end of file diff --git a/timecost/c2/tabddpm/tabddpm-c2-20260501_053445/runtime_result.json b/timecost/c2/tabddpm/tabddpm-c2-20260501_053445/runtime_result.json new file mode 100644 index 0000000000000000000000000000000000000000..1b4fe13ba691c8157b514f4afcd848262d7adf23 --- /dev/null +++ b/timecost/c2/tabddpm/tabddpm-c2-20260501_053445/runtime_result.json @@ -0,0 +1,27 @@ +{ + "dataset_id": "c2", + "model": "tabddpm", + "run_id": "tabddpm-c2-20260501_053445", + "public_gate_status": "pass", + "adapter_ready_status": "pass", + "train_status": "success", + "generate_status": "success", + "reason_code": null, + "reason_detail": null, + "artifacts": { + "synthetic_csv": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/c2/tabddpm/tabddpm-c2-20260501_053445/tabddpm-c2-1382-20260501_053541.csv", + "model_path": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/c2/tabddpm/tabddpm-c2-20260501_053445" + }, + "timings": { + "train": { + "started_at": "2026-05-01T05:34:45", + "ended_at": "2026-05-01T05:35:41", + "duration_sec": 56.654 + }, + "generate": { + "started_at": "2026-05-01T05:35:41", + "ended_at": "2026-05-01T05:35:55", + "duration_sec": 13.228 + } + } +} \ No newline at end of file diff --git a/timecost/c2/tabddpm/tabddpm-c2-20260501_053445/staged/public/staged_features.json b/timecost/c2/tabddpm/tabddpm-c2-20260501_053445/staged/public/staged_features.json new file mode 100644 index 0000000000000000000000000000000000000000..61783861dd5de501592f76acb0469cf3f3b2622a --- /dev/null +++ b/timecost/c2/tabddpm/tabddpm-c2-20260501_053445/staged/public/staged_features.json @@ -0,0 +1,37 @@ +[ + { + "feature_name": "buying", + "data_type": "categorical", + "is_target": false + }, + { + "feature_name": "maint", + "data_type": "categorical", + "is_target": false + }, + { + "feature_name": "doors", + "data_type": "categorical", + "is_target": false + }, + { + "feature_name": "persons", + "data_type": "categorical", + "is_target": false + }, + { + "feature_name": "lug_boot", + "data_type": "categorical", + "is_target": false + }, + { + "feature_name": "safety", + "data_type": "categorical", + "is_target": false + }, + { + "feature_name": "class", + "data_type": "categorical", + "is_target": true + } +] \ No newline at end of file diff --git a/timecost/c2/tabddpm/tabddpm-c2-20260501_053445/staged/public/test.csv b/timecost/c2/tabddpm/tabddpm-c2-20260501_053445/staged/public/test.csv new file mode 100644 index 0000000000000000000000000000000000000000..392a0d7189a34d8f13ecf20a99d64b03230d517c --- /dev/null +++ b/timecost/c2/tabddpm/tabddpm-c2-20260501_053445/staged/public/test.csv @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:b48114a7d0bc5bd9a07920f903c8d4aba8bf98bf2a66a050da03588b0245ca73 +size 5273 diff --git a/timecost/c2/tabddpm/tabddpm-c2-20260501_053445/staged/public/train.csv b/timecost/c2/tabddpm/tabddpm-c2-20260501_053445/staged/public/train.csv new file mode 100644 index 0000000000000000000000000000000000000000..da4f4d55134eebc0e51157d0d467536371db1484 --- /dev/null +++ b/timecost/c2/tabddpm/tabddpm-c2-20260501_053445/staged/public/train.csv @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:4aed00c2c2b3f88a55a7ebff31b2e1b5e0e32fb0a7267e0b9d2779cd23e434dd +size 41565 diff --git a/timecost/c2/tabddpm/tabddpm-c2-20260501_053445/staged/public/val.csv b/timecost/c2/tabddpm/tabddpm-c2-20260501_053445/staged/public/val.csv new file mode 100644 index 0000000000000000000000000000000000000000..af8caf7ee42524188534a3daf32996dc491952d9 --- /dev/null +++ b/timecost/c2/tabddpm/tabddpm-c2-20260501_053445/staged/public/val.csv @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:26e90c1170a57a14c05832ac88027722b1f3848f9662c7c09ef7c93dcba4cc01 +size 5176 diff --git a/timecost/c2/tabddpm/tabddpm-c2-20260501_053445/staged/tabddpm/adapter_report.json b/timecost/c2/tabddpm/tabddpm-c2-20260501_053445/staged/tabddpm/adapter_report.json new file mode 100644 index 0000000000000000000000000000000000000000..dcbf79e631dc451882e0e2a5edf8e6abe9cec7ed --- /dev/null +++ b/timecost/c2/tabddpm/tabddpm-c2-20260501_053445/staged/tabddpm/adapter_report.json @@ -0,0 +1,7 @@ +{ + "adapter_ready_status": "pass", + "adapter_fail_reason_code": null, + "adapter_fail_detail": null, + "adapter_transforms_applied": [], + "model_input_manifest": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/c2/tabddpm/tabddpm-c2-20260501_053445/staged/tabddpm/model_input_manifest.json" +} \ No newline at end of file diff --git a/timecost/c2/tabddpm/tabddpm-c2-20260501_053445/staged/tabddpm/adapter_transforms_applied.json b/timecost/c2/tabddpm/tabddpm-c2-20260501_053445/staged/tabddpm/adapter_transforms_applied.json new file mode 100644 index 0000000000000000000000000000000000000000..0637a088a01e8ddab3bf3fa98dbe804cbde1a0dc --- /dev/null +++ b/timecost/c2/tabddpm/tabddpm-c2-20260501_053445/staged/tabddpm/adapter_transforms_applied.json @@ -0,0 +1 @@ +[] \ No newline at end of file diff --git a/timecost/c2/tabddpm/tabddpm-c2-20260501_053445/staged/tabddpm/model_input_manifest.json b/timecost/c2/tabddpm/tabddpm-c2-20260501_053445/staged/tabddpm/model_input_manifest.json new file mode 100644 index 0000000000000000000000000000000000000000..8f0ce3ef11af81e5424e650c88f496a673727e93 --- /dev/null +++ b/timecost/c2/tabddpm/tabddpm-c2-20260501_053445/staged/tabddpm/model_input_manifest.json @@ -0,0 +1,151 @@ +{ + "dataset_id": "c2", + "model": "tabddpm", + "target_column": "class", + "task_type": "classification", + "column_schema": [ + { + "name": "buying", + "role": "feature", + "semantic_type": "categorical", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 4, + "unique_ratio": 0.002894, + "example_values": [ + "vhigh", + "med", + "high", + "low" + ] + } + }, + { + "name": "maint", + "role": "feature", + "semantic_type": "categorical", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 4, + "unique_ratio": 0.002894, + "example_values": [ + "vhigh", + "low", + "med", + "high" + ] + } + }, + { + "name": "doors", + "role": "feature", + "semantic_type": "categorical", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 4, + "unique_ratio": 0.002894, + "example_values": [ + "2", + "5more", + "3", + "4" + ] + } + }, + { + "name": "persons", + "role": "feature", + "semantic_type": "categorical", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 3, + "unique_ratio": 0.002171, + "example_values": [ + "2", + "4", + "more" + ] + } + }, + { + "name": "lug_boot", + "role": "feature", + "semantic_type": "categorical", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 3, + "unique_ratio": 0.002171, + "example_values": [ + "small", + "big", + "med" + ] + } + }, + { + "name": "safety", + "role": "feature", + "semantic_type": "categorical", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 3, + "unique_ratio": 0.002171, + "example_values": [ + "low", + "high", + "med" + ] + } + }, + { + "name": "class", + "role": "target", + "semantic_type": "categorical", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 4, + "unique_ratio": 0.002894, + "example_values": [ + "unacc", + "good", + "acc", + "vgood" + ] + } + } + ], + "public_manifest": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/c2/tabddpm/tabddpm-c2-20260501_053445/public_gate/staged_input_manifest.json", + "train_csv": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/c2/tabddpm/tabddpm-c2-20260501_053445/staged/public/train.csv", + "val_csv": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/c2/tabddpm/tabddpm-c2-20260501_053445/staged/public/val.csv", + "test_csv": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/c2/tabddpm/tabddpm-c2-20260501_053445/staged/public/test.csv", + "features_json": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/c2/tabddpm/tabddpm-c2-20260501_053445/staged/public/staged_features.json", + "public_gate_report": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/c2/tabddpm/tabddpm-c2-20260501_053445/public_gate/public_gate_report.json" +} \ No newline at end of file diff --git a/timecost/c2/tabddpm/tabddpm-c2-20260501_053445/tabddpm-c2-1382-20260501_053541.csv b/timecost/c2/tabddpm/tabddpm-c2-20260501_053445/tabddpm-c2-1382-20260501_053541.csv new file mode 100644 index 0000000000000000000000000000000000000000..c1395ed38570055862bc0b0e4808966baf74db1e --- /dev/null +++ b/timecost/c2/tabddpm/tabddpm-c2-20260501_053445/tabddpm-c2-1382-20260501_053541.csv @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:0d1ae5fa4380a0a8879510e49d09625f4653e2ac3b5bb4f8fe08cd7a776dc532 +size 38745 diff --git a/timecost/c2/tabddpm/tabddpm-c2-20260501_053445/train_20260501_053445.log b/timecost/c2/tabddpm/tabddpm-c2-20260501_053445/train_20260501_053445.log new file mode 100644 index 0000000000000000000000000000000000000000..c9cecc5137d01c1ae345ddc11d054205dd6087a3 --- /dev/null +++ b/timecost/c2/tabddpm/tabddpm-c2-20260501_053445/train_20260501_053445.log @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:dc81c3da56b1deeaa60556e8f6cec9fd97ce7200a6cc83fda2acef2f37cba648 +size 1076 diff --git a/timecost/c2/tabddpm/tabddpm-c2-20260504_181103/_tabddpm_sample_r0.py b/timecost/c2/tabddpm/tabddpm-c2-20260504_181103/_tabddpm_sample_r0.py new file mode 100644 index 0000000000000000000000000000000000000000..acd07a0b4e4bcf12e9a8c3908b4d5a6367d1d0d6 --- /dev/null +++ b/timecost/c2/tabddpm/tabddpm-c2-20260504_181103/_tabddpm_sample_r0.py @@ -0,0 +1,66 @@ +import os, sys, subprocess, json +import numpy as np +import pandas as pd + +tabddpm_root = "/workspace/tabddpm/code" +assert os.path.isdir(tabddpm_root), f"TabDDPM source not mounted: {tabddpm_root}" +env = os.environ.copy() +env["PYTHONPATH"] = tabddpm_root + (os.pathsep + env.get("PYTHONPATH", "")) + +# Reuse the compat wrapper (patches collections.Sequence for skorch) +wrapper = os.path.join(tabddpm_root, "_compat_run.py") +if not os.path.exists(wrapper): + with open(wrapper, "w") as f: + f.write( + "import collections, collections.abc\n" + "for _a in ('Sequence','MutableSequence','MutableMapping','Mapping'," + "'MutableSet','Set','Callable','Iterable','Iterator'):\n" + " if not hasattr(collections, _a): setattr(collections, _a, getattr(collections.abc, _a, None))\n" + "import sys, runpy\n" + "sys.argv = sys.argv[1:]\n" + "runpy.run_path(sys.argv[0], run_name='__main__')\n" + ) + +print(f"[TabDDPM] Sampling 1382 rows") +ret = subprocess.run( + [sys.executable, wrapper, "scripts/pipeline.py", + "--config", "/work/output-Benchmark-trainonly-v1/c2/tabddpm/tabddpm-c2-20260504_181103/config_sample_20260504_181140_r0.toml", + "--sample"], + cwd=tabddpm_root, + env=env +) +if ret.returncode != 0: + sys.exit(ret.returncode) + +# 将 .npy 输出转为 CSV(npy 在 TabDDPM 的 parent_dir,即 npy_dir) +info_path = "/work/output-Benchmark-trainonly-v1/c2/tabddpm/tabddpm-c2-20260504_181103/data/info.json" +with open(info_path) as f: + info = json.load(f) + +output_dir = "/work/output-Benchmark-trainonly-v1/c2/tabddpm/tabddpm-c2-20260504_181103/output" +col_names = info.get("column_names", []) + +parts = [] +x_num_path = os.path.join(output_dir, "X_num_train.npy") +x_cat_path = os.path.join(output_dir, "X_cat_train.npy") +y_path = os.path.join(output_dir, "y_train.npy") + +if os.path.exists(x_num_path): + parts.append(np.load(x_num_path, allow_pickle=True)) +if os.path.exists(x_cat_path): + parts.append(np.load(x_cat_path, allow_pickle=True).astype(float)) +if os.path.exists(y_path): + y = np.load(y_path, allow_pickle=True) + parts.append(y.reshape(-1, 1) if y.ndim == 1 else y) + +if parts: + combined = np.concatenate(parts, axis=1) + if col_names and len(col_names) == combined.shape[1]: + df = pd.DataFrame(combined, columns=col_names) + else: + df = pd.DataFrame(combined) + df.to_csv("/work/output-Benchmark-trainonly-v1/c2/tabddpm/tabddpm-c2-20260504_181103/tabddpm-c2-1382-20260504_181140.csv", index=False) + print(f"[TabDDPM] Saved {len(df)} rows -> /work/output-Benchmark-trainonly-v1/c2/tabddpm/tabddpm-c2-20260504_181103/tabddpm-c2-1382-20260504_181140.csv") +else: + print("[TabDDPM] WARNING: No output .npy files found") + sys.exit(1) diff --git a/timecost/c2/tabddpm/tabddpm-c2-20260504_181103/_tabddpm_train.py b/timecost/c2/tabddpm/tabddpm-c2-20260504_181103/_tabddpm_train.py new file mode 100644 index 0000000000000000000000000000000000000000..ddb041209cab17e11561f35f7bc9132dfe91f27a --- /dev/null +++ b/timecost/c2/tabddpm/tabddpm-c2-20260504_181103/_tabddpm_train.py @@ -0,0 +1,32 @@ +import os, sys, subprocess + +tabddpm_root = "/workspace/tabddpm/code" +assert os.path.isdir(tabddpm_root), f"TabDDPM source not mounted: {tabddpm_root}" +env = os.environ.copy() +env["PYTHONPATH"] = tabddpm_root + (os.pathsep + env.get("PYTHONPATH", "")) + +# Write a wrapper that patches collections.Sequence (removed in Python 3.10+) +# before running pipeline.py - needed because skorch uses old API +wrapper = os.path.join(tabddpm_root, "_compat_run.py") +with open(wrapper, "w") as f: + f.write( + "import collections, collections.abc\n" + "for _a in ('Sequence','MutableSequence','MutableMapping','Mapping'," + "'MutableSet','Set','Callable','Iterable','Iterator'):\n" + " if not hasattr(collections, _a): setattr(collections, _a, getattr(collections.abc, _a, None))\n" + "import sys, runpy\n" + "sys.argv = sys.argv[1:]\n" + "runpy.run_path(sys.argv[0], run_name='__main__')\n" + ) + +print(f"[TabDDPM] Training, config=/work/output-Benchmark-trainonly-v1/c2/tabddpm/tabddpm-c2-20260504_181103/config.toml") +ret = subprocess.run( + [sys.executable, wrapper, "scripts/pipeline.py", + "--config", "/work/output-Benchmark-trainonly-v1/c2/tabddpm/tabddpm-c2-20260504_181103/config.toml", + "--train"], + cwd=tabddpm_root, + env=env +) +if ret.returncode != 0: + sys.exit(ret.returncode) +print("[TabDDPM] Training complete") diff --git a/timecost/c2/tabddpm/tabddpm-c2-20260504_181103/config.toml b/timecost/c2/tabddpm/tabddpm-c2-20260504_181103/config.toml new file mode 100644 index 0000000000000000000000000000000000000000..b32437de5ec87ecfb85758bc6c686c27a4499f45 --- /dev/null +++ b/timecost/c2/tabddpm/tabddpm-c2-20260504_181103/config.toml @@ -0,0 +1,39 @@ +seed = 0 +parent_dir = "/work/output-Benchmark-trainonly-v1/c2/tabddpm/tabddpm-c2-20260504_181103/output" +real_data_path = "/work/output-Benchmark-trainonly-v1/c2/tabddpm/tabddpm-c2-20260504_181103/data" +model_type = "mlp" +num_numerical_features = 0 +device = "cuda:0" + +[model_params] +d_in = 6 +num_classes = 4 +is_y_cond = true + +[model_params.rtdl_params] +d_layers = [256, 256] +dropout = 0.0 + +[diffusion_params] +num_timesteps = 200 +gaussian_loss_type = "mse" + +[train.main] +steps = 2000 +lr = 0.001 +weight_decay = 0.0 +batch_size = 256 + +[train.T] +seed = 0 +normalization = "quantile" +num_nan_policy = "__none__" +cat_nan_policy = "__none__" +cat_min_frequency = "__none__" +cat_encoding = "__none__" +y_policy = "default" + +[sample] +num_samples = 1000 +batch_size = 256 +seed = 0 diff --git a/timecost/c2/tabddpm/tabddpm-c2-20260504_181103/config_sample_20260504_181140_r0.toml b/timecost/c2/tabddpm/tabddpm-c2-20260504_181103/config_sample_20260504_181140_r0.toml new file mode 100644 index 0000000000000000000000000000000000000000..d2a6930b9108b5e2a8f747ee1a781a87b6bc55bb --- /dev/null +++ b/timecost/c2/tabddpm/tabddpm-c2-20260504_181103/config_sample_20260504_181140_r0.toml @@ -0,0 +1,39 @@ +seed = 0 +parent_dir = "/work/output-Benchmark-trainonly-v1/c2/tabddpm/tabddpm-c2-20260504_181103/output" +real_data_path = "/work/output-Benchmark-trainonly-v1/c2/tabddpm/tabddpm-c2-20260504_181103/data" +model_type = "mlp" +num_numerical_features = 0 +device = "cuda:0" + +[model_params] +d_in = 6 +num_classes = 4 +is_y_cond = true + +[model_params.rtdl_params] +d_layers = [256, 256] +dropout = 0.0 + +[diffusion_params] +num_timesteps = 200 +gaussian_loss_type = "mse" + +[train.main] +steps = 2000 +lr = 0.001 +weight_decay = 0.0 +batch_size = 256 + +[train.T] +seed = 0 +normalization = "quantile" +num_nan_policy = "__none__" +cat_nan_policy = "__none__" +cat_min_frequency = "__none__" +cat_encoding = "__none__" +y_policy = "default" + +[sample] +num_samples = 1382 +batch_size = 256 +seed = 0 diff --git a/timecost/c2/tabddpm/tabddpm-c2-20260504_181103/data/X_cat_train.npy b/timecost/c2/tabddpm/tabddpm-c2-20260504_181103/data/X_cat_train.npy new file mode 100644 index 0000000000000000000000000000000000000000..e99f1ae8dc9e7155e5c4bbbd3c2f3f7215c628f7 --- /dev/null +++ b/timecost/c2/tabddpm/tabddpm-c2-20260504_181103/data/X_cat_train.npy @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:24d2203601ba060728920e754747e5a1dc3955a1b5775e147382fee4f1812542 +size 66464 diff --git a/timecost/c2/tabddpm/tabddpm-c2-20260504_181103/data/info.json b/timecost/c2/tabddpm/tabddpm-c2-20260504_181103/data/info.json new file mode 100644 index 0000000000000000000000000000000000000000..0f2b351a317260c450725d5a04373330ad3701a3 --- /dev/null +++ b/timecost/c2/tabddpm/tabddpm-c2-20260504_181103/data/info.json @@ -0,0 +1,29 @@ +{ + "name": "benchmark_dataset", + "task_type": "multiclass", + "n_num_features": 0, + "n_cat_features": 6, + "train_size": 1382, + "num_col_idx": [], + "cat_col_idx": [ + 0, + 1, + 2, + 3, + 4, + 5 + ], + "target_col_idx": [ + 6 + ], + "column_names": [ + "buying", + "maint", + "doors", + "persons", + "lug_boot", + "safety", + "class" + ], + "num_classes": 4 +} \ No newline at end of file diff --git a/timecost/c2/tabddpm/tabddpm-c2-20260504_181103/data/y_train.npy b/timecost/c2/tabddpm/tabddpm-c2-20260504_181103/data/y_train.npy new file mode 100644 index 0000000000000000000000000000000000000000..8bfc8f9de7350657cd6411c55d2b9b87bea9c13a --- /dev/null +++ b/timecost/c2/tabddpm/tabddpm-c2-20260504_181103/data/y_train.npy @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:3f8eb0b25043331a30fde5439f063eed59e7a76f45d7d102b9b4fbcd16b551b4 +size 11184 diff --git a/timecost/c2/tabddpm/tabddpm-c2-20260504_181103/gen_20260504_181140_r0.log b/timecost/c2/tabddpm/tabddpm-c2-20260504_181103/gen_20260504_181140_r0.log new file mode 100644 index 0000000000000000000000000000000000000000..9fcd131940297336c95b3df388afad1eccd0f03f --- /dev/null +++ b/timecost/c2/tabddpm/tabddpm-c2-20260504_181103/gen_20260504_181140_r0.log @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:699ec388503c3fef971e172974cee64500a765cff8855575df673d28450f3420 +size 25662 diff --git a/timecost/c2/tabddpm/tabddpm-c2-20260504_181103/input_snapshot.json b/timecost/c2/tabddpm/tabddpm-c2-20260504_181103/input_snapshot.json new file mode 100644 index 0000000000000000000000000000000000000000..772021148f055243c89ddfd9b6fa388ee33d05ea --- /dev/null +++ b/timecost/c2/tabddpm/tabddpm-c2-20260504_181103/input_snapshot.json @@ -0,0 +1,36 @@ +{ + "dataset_id": "c2", + "model": "tabddpm", + "inputs": { + "train_csv": { + "path": "/data/jialinzhang/SynthesizePipeline-server/DatasetNew/c2/c2-train.csv", + "exists": true, + "size": 42948, + "sha256": "17bc560fa96bd00fb3b526e1e65bc91210b701d0d0a4e8bb9b4c5196cab56def" + }, + "val_csv": { + "path": "/data/jialinzhang/SynthesizePipeline-server/DatasetNew/c2/c2-val.csv", + "exists": true, + "size": 5349, + "sha256": "61e565eca62e65a7dccd9d51039a3170413379e10fc494e25870e7c4294863c9" + }, + "test_csv": { + "path": "/data/jialinzhang/SynthesizePipeline-server/DatasetNew/c2/c2-test.csv", + "exists": true, + "size": 5448, + "sha256": "cbcbb062a1faf5fa44b66c80532baa229e05b94fc42137269761e6c6d84af20a" + }, + "profile_json": { + "path": "/data/jialinzhang/SynthesizePipeline-server/DatasetNew/artifacts/data_core/tabular/c2/c2-dataset_profile.json", + "exists": true, + "size": 3240, + "sha256": "526b7163b2076c93c0bf4638438081ee8a6907065d5b608faa40d1a3dbc2a27b" + }, + "contract_json": { + "path": "/data/jialinzhang/SynthesizePipeline-server/DatasetNew/artifacts/data_core/tabular/c2/c2-dataset_contract_v1.json", + "exists": true, + "size": 3731, + "sha256": "fb595a876054c2ee9b4e10cfe83a5691588de1d25466cbb9d473c18ad3604009" + } + } +} \ No newline at end of file diff --git a/timecost/c2/tabddpm/tabddpm-c2-20260504_181103/output/X_cat_train.npy b/timecost/c2/tabddpm/tabddpm-c2-20260504_181103/output/X_cat_train.npy new file mode 100644 index 0000000000000000000000000000000000000000..862303f0519083c21dea3de3dfc30aaabc4a90fd --- /dev/null +++ b/timecost/c2/tabddpm/tabddpm-c2-20260504_181103/output/X_cat_train.npy @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:6ab974a88850d8041e57dd6341c43e40877629a6e0adaf17a6152e0165922ed3 +size 16885 diff --git a/timecost/c2/tabddpm/tabddpm-c2-20260504_181103/output/X_cat_unnorm.npy b/timecost/c2/tabddpm/tabddpm-c2-20260504_181103/output/X_cat_unnorm.npy new file mode 100644 index 0000000000000000000000000000000000000000..b648311a8f6441d68bdba8e8f5737657ea79a9e1 --- /dev/null +++ b/timecost/c2/tabddpm/tabddpm-c2-20260504_181103/output/X_cat_unnorm.npy @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:06a6d4b433422299123e5388de04c0166e6143ab0788c38fe47f40da1c9c727d +size 66464 diff --git a/timecost/c2/tabddpm/tabddpm-c2-20260504_181103/output/config.toml b/timecost/c2/tabddpm/tabddpm-c2-20260504_181103/output/config.toml new file mode 100644 index 0000000000000000000000000000000000000000..d2a6930b9108b5e2a8f747ee1a781a87b6bc55bb --- /dev/null +++ b/timecost/c2/tabddpm/tabddpm-c2-20260504_181103/output/config.toml @@ -0,0 +1,39 @@ +seed = 0 +parent_dir = "/work/output-Benchmark-trainonly-v1/c2/tabddpm/tabddpm-c2-20260504_181103/output" +real_data_path = "/work/output-Benchmark-trainonly-v1/c2/tabddpm/tabddpm-c2-20260504_181103/data" +model_type = "mlp" +num_numerical_features = 0 +device = "cuda:0" + +[model_params] +d_in = 6 +num_classes = 4 +is_y_cond = true + +[model_params.rtdl_params] +d_layers = [256, 256] +dropout = 0.0 + +[diffusion_params] +num_timesteps = 200 +gaussian_loss_type = "mse" + +[train.main] +steps = 2000 +lr = 0.001 +weight_decay = 0.0 +batch_size = 256 + +[train.T] +seed = 0 +normalization = "quantile" +num_nan_policy = "__none__" +cat_nan_policy = "__none__" +cat_min_frequency = "__none__" +cat_encoding = "__none__" +y_policy = "default" + +[sample] +num_samples = 1382 +batch_size = 256 +seed = 0 diff --git a/timecost/c2/tabddpm/tabddpm-c2-20260504_181103/output/info.json b/timecost/c2/tabddpm/tabddpm-c2-20260504_181103/output/info.json new file mode 100644 index 0000000000000000000000000000000000000000..0f2b351a317260c450725d5a04373330ad3701a3 --- /dev/null +++ b/timecost/c2/tabddpm/tabddpm-c2-20260504_181103/output/info.json @@ -0,0 +1,29 @@ +{ + "name": "benchmark_dataset", + "task_type": "multiclass", + "n_num_features": 0, + "n_cat_features": 6, + "train_size": 1382, + "num_col_idx": [], + "cat_col_idx": [ + 0, + 1, + 2, + 3, + 4, + 5 + ], + "target_col_idx": [ + 6 + ], + "column_names": [ + "buying", + "maint", + "doors", + "persons", + "lug_boot", + "safety", + "class" + ], + "num_classes": 4 +} \ No newline at end of file diff --git a/timecost/c2/tabddpm/tabddpm-c2-20260504_181103/output/loss.csv b/timecost/c2/tabddpm/tabddpm-c2-20260504_181103/output/loss.csv new file mode 100644 index 0000000000000000000000000000000000000000..d5c7da855b8ef5835b2dcde545c19bbb7c72d227 --- /dev/null +++ b/timecost/c2/tabddpm/tabddpm-c2-20260504_181103/output/loss.csv @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:57f250e7354878e53460575baff2b9f2824f988cc8ff11b40b4c980408373c4f +size 505 diff --git a/timecost/c2/tabddpm/tabddpm-c2-20260504_181103/output/model.pt b/timecost/c2/tabddpm/tabddpm-c2-20260504_181103/output/model.pt new file mode 100644 index 0000000000000000000000000000000000000000..127c529e5a524f3d4d02fdfd5c84087cabb70040 --- /dev/null +++ b/timecost/c2/tabddpm/tabddpm-c2-20260504_181103/output/model.pt @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:594458bf70bca8778c1355fcc833e6db2d387465769d2ea8135d727934e2c28f +size 566934 diff --git a/timecost/c2/tabddpm/tabddpm-c2-20260504_181103/output/model_ema.pt b/timecost/c2/tabddpm/tabddpm-c2-20260504_181103/output/model_ema.pt new file mode 100644 index 0000000000000000000000000000000000000000..d29643dbbb54baed7564f91a11c10dffe3f1ed90 --- /dev/null +++ b/timecost/c2/tabddpm/tabddpm-c2-20260504_181103/output/model_ema.pt @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:3ecd8cbe4cf1c5d92c800e17e5be4d19b80c5673a835f655f373bf0dc0eef4c1 +size 567778 diff --git a/timecost/c2/tabddpm/tabddpm-c2-20260504_181103/output/y_train.npy b/timecost/c2/tabddpm/tabddpm-c2-20260504_181103/output/y_train.npy new file mode 100644 index 0000000000000000000000000000000000000000..aa9afff4d061333b18828274b1072d1b884f162c --- /dev/null +++ b/timecost/c2/tabddpm/tabddpm-c2-20260504_181103/output/y_train.npy @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:58b1a722d369027a22bed702e3539c6fefa976741570c4c0a2f8546e2978c3d7 +size 11184 diff --git a/timecost/c2/tabddpm/tabddpm-c2-20260504_181103/public_gate/normalized_schema_snapshot.json b/timecost/c2/tabddpm/tabddpm-c2-20260504_181103/public_gate/normalized_schema_snapshot.json new file mode 100644 index 0000000000000000000000000000000000000000..689b1d00d96508e44ba40e58dc4560e19afc2b3b --- /dev/null +++ b/timecost/c2/tabddpm/tabddpm-c2-20260504_181103/public_gate/normalized_schema_snapshot.json @@ -0,0 +1,144 @@ +{ + "dataset_id": "c2", + "target_column": "class", + "task_type": "classification", + "columns": [ + { + "name": "buying", + "role": "feature", + "semantic_type": "categorical", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 4, + "unique_ratio": 0.002894, + "example_values": [ + "vhigh", + "med", + "high", + "low" + ] + } + }, + { + "name": "maint", + "role": "feature", + "semantic_type": "categorical", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 4, + "unique_ratio": 0.002894, + "example_values": [ + "vhigh", + "low", + "med", + "high" + ] + } + }, + { + "name": "doors", + "role": "feature", + "semantic_type": "categorical", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 4, + "unique_ratio": 0.002894, + "example_values": [ + "2", + "5more", + "3", + "4" + ] + } + }, + { + "name": "persons", + "role": "feature", + "semantic_type": "categorical", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 3, + "unique_ratio": 0.002171, + "example_values": [ + "2", + "4", + "more" + ] + } + }, + { + "name": "lug_boot", + "role": "feature", + "semantic_type": "categorical", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 3, + "unique_ratio": 0.002171, + "example_values": [ + "small", + "big", + "med" + ] + } + }, + { + "name": "safety", + "role": "feature", + "semantic_type": "categorical", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 3, + "unique_ratio": 0.002171, + "example_values": [ + "low", + "high", + "med" + ] + } + }, + { + "name": "class", + "role": "target", + "semantic_type": "categorical", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 4, + "unique_ratio": 0.002894, + "example_values": [ + "unacc", + "good", + "acc", + "vgood" + ] + } + } + ] +} \ No newline at end of file diff --git a/timecost/c2/tabddpm/tabddpm-c2-20260504_181103/public_gate/public_gate_report.json b/timecost/c2/tabddpm/tabddpm-c2-20260504_181103/public_gate/public_gate_report.json new file mode 100644 index 0000000000000000000000000000000000000000..2e4cdcb2a4e28e40d59b17a83e773f622b7636a5 --- /dev/null +++ b/timecost/c2/tabddpm/tabddpm-c2-20260504_181103/public_gate/public_gate_report.json @@ -0,0 +1,37 @@ +{ + "dataset_id": "c2", + "status": "pass", + "checks": [ + { + "check_id": "PG001_csv_parse_ok", + "status": "pass" + }, + { + "check_id": "PG002_split_header_consistent", + "status": "pass" + }, + { + "check_id": "PG003_profile_header_match", + "status": "pass" + }, + { + "check_id": "PG004_missing_token_normalized", + "status": "pass" + }, + { + "check_id": "PG005_semantic_type_validated", + "status": "pass" + }, + { + "check_id": "PG006_target_defined_and_valid", + "status": "pass" + } + ], + "target_column": "class", + "task_type": "classification", + "input_splits": { + "train": "/data/jialinzhang/SynthesizePipeline-server/DatasetNew/c2/c2-train.csv", + "val": "/data/jialinzhang/SynthesizePipeline-server/DatasetNew/c2/c2-val.csv", + "test": "/data/jialinzhang/SynthesizePipeline-server/DatasetNew/c2/c2-test.csv" + } +} \ No newline at end of file diff --git a/timecost/c2/tabddpm/tabddpm-c2-20260504_181103/public_gate/staged_input_manifest.json b/timecost/c2/tabddpm/tabddpm-c2-20260504_181103/public_gate/staged_input_manifest.json new file mode 100644 index 0000000000000000000000000000000000000000..637a4e41d23df216439071f6757c5549d916d585 --- /dev/null +++ b/timecost/c2/tabddpm/tabddpm-c2-20260504_181103/public_gate/staged_input_manifest.json @@ -0,0 +1,149 @@ +{ + "dataset_id": "c2", + "target_column": "class", + "task_type": "classification", + "train_csv": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/c2/tabddpm/tabddpm-c2-20260504_181103/staged/public/train.csv", + "val_csv": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/c2/tabddpm/tabddpm-c2-20260504_181103/staged/public/val.csv", + "test_csv": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/c2/tabddpm/tabddpm-c2-20260504_181103/staged/public/test.csv", + "features_json": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/c2/tabddpm/tabddpm-c2-20260504_181103/staged/public/staged_features.json", + "public_gate_report": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/c2/tabddpm/tabddpm-c2-20260504_181103/public_gate/public_gate_report.json", + "column_schema": [ + { + "name": "buying", + "role": "feature", + "semantic_type": "categorical", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 4, + "unique_ratio": 0.002894, + "example_values": [ + "vhigh", + "med", + "high", + "low" + ] + } + }, + { + "name": "maint", + "role": "feature", + "semantic_type": "categorical", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 4, + "unique_ratio": 0.002894, + "example_values": [ + "vhigh", + "low", + "med", + "high" + ] + } + }, + { + "name": "doors", + "role": "feature", + "semantic_type": "categorical", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 4, + "unique_ratio": 0.002894, + "example_values": [ + "2", + "5more", + "3", + "4" + ] + } + }, + { + "name": "persons", + "role": "feature", + "semantic_type": "categorical", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 3, + "unique_ratio": 0.002171, + "example_values": [ + "2", + "4", + "more" + ] + } + }, + { + "name": "lug_boot", + "role": "feature", + "semantic_type": "categorical", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 3, + "unique_ratio": 0.002171, + "example_values": [ + "small", + "big", + "med" + ] + } + }, + { + "name": "safety", + "role": "feature", + "semantic_type": "categorical", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 3, + "unique_ratio": 0.002171, + "example_values": [ + "low", + "high", + "med" + ] + } + }, + { + "name": "class", + "role": "target", + "semantic_type": "categorical", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 4, + "unique_ratio": 0.002894, + "example_values": [ + "unacc", + "good", + "acc", + "vgood" + ] + } + } + ] +} \ No newline at end of file diff --git a/timecost/c2/tabddpm/tabddpm-c2-20260504_181103/run_config.json b/timecost/c2/tabddpm/tabddpm-c2-20260504_181103/run_config.json new file mode 100644 index 0000000000000000000000000000000000000000..a46955e1b93be7d7411b04cd706f9fb97f91be04 --- /dev/null +++ b/timecost/c2/tabddpm/tabddpm-c2-20260504_181103/run_config.json @@ -0,0 +1,45 @@ +{ + "schema_version": 1, + "recorded_at": "2026-05-04T18:11:03", + "dataset_id": "c2", + "model": "tabddpm", + "work_dir": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/c2/tabddpm/tabddpm-c2-20260504_181103", + "dataset_source_requested": "new", + "dataset_source_resolved": "new", + "cli_args": { + "model": "tabddpm", + "dataset": "c2", + "dataset_source": "new", + "train": true, + "generate": true, + "num_rows": 0, + "epochs": null, + "output_dir": null, + "model_dir": null, + "work_dir": null, + "resume": false, + "no_stats": false + }, + "resolved": { + "num_rows": 1382, + "model_path": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/c2/tabddpm/tabddpm-c2-20260504_181103", + "output_csv": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/c2/tabddpm/tabddpm-c2-20260504_181103/tabddpm-c2-1382-20260504_181140.csv" + }, + "input_artifacts": { + "public_gate_report": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/c2/tabddpm/tabddpm-c2-20260504_181103/public_gate/public_gate_report.json", + "public_manifest": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/c2/tabddpm/tabddpm-c2-20260504_181103/public_gate/staged_input_manifest.json", + "model_manifest": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/c2/tabddpm/tabddpm-c2-20260504_181103/staged/tabddpm/model_input_manifest.json", + "train_csv": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/c2/tabddpm/tabddpm-c2-20260504_181103/staged/public/train.csv", + "features_json": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/c2/tabddpm/tabddpm-c2-20260504_181103/staged/public/staged_features.json", + "target_column": "class", + "task_type": "classification" + }, + "env_overrides": { + "BENCHMARK_TABDDPM_GPUS": "device=3", + "TABDDPM_NUM_TIMESTEPS": "200", + "TABDDPM_SAMPLE_BATCH_SIZE": "256", + "TABDDPM_STEPS_PER_EPOCH": "40", + "TABDDPM_TRAIN_BATCH_SIZE": "256", + "TABDDPM_TRAIN_LR": "0.001" + } +} \ No newline at end of file diff --git a/timecost/c2/tabddpm/tabddpm-c2-20260504_181103/runtime_result.json b/timecost/c2/tabddpm/tabddpm-c2-20260504_181103/runtime_result.json new file mode 100644 index 0000000000000000000000000000000000000000..878ba523189e12e2c0225261e4848c928b5dfaf3 --- /dev/null +++ b/timecost/c2/tabddpm/tabddpm-c2-20260504_181103/runtime_result.json @@ -0,0 +1,27 @@ +{ + "dataset_id": "c2", + "model": "tabddpm", + "run_id": "tabddpm-c2-20260504_181103", + "public_gate_status": "pass", + "adapter_ready_status": "pass", + "train_status": "success", + "generate_status": "success", + "reason_code": null, + "reason_detail": null, + "artifacts": { + "synthetic_csv": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/c2/tabddpm/tabddpm-c2-20260504_181103/tabddpm-c2-1382-20260504_181140.csv", + "model_path": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/c2/tabddpm/tabddpm-c2-20260504_181103" + }, + "timings": { + "train": { + "started_at": "2026-05-04T18:11:03", + "ended_at": "2026-05-04T18:11:40", + "duration_sec": 36.309 + }, + "generate": { + "started_at": "2026-05-04T18:11:40", + "ended_at": "2026-05-04T18:11:55", + "duration_sec": 14.826 + } + } +} \ No newline at end of file diff --git a/timecost/c2/tabddpm/tabddpm-c2-20260504_181103/staged/public/staged_features.json b/timecost/c2/tabddpm/tabddpm-c2-20260504_181103/staged/public/staged_features.json new file mode 100644 index 0000000000000000000000000000000000000000..61783861dd5de501592f76acb0469cf3f3b2622a --- /dev/null +++ b/timecost/c2/tabddpm/tabddpm-c2-20260504_181103/staged/public/staged_features.json @@ -0,0 +1,37 @@ +[ + { + "feature_name": "buying", + "data_type": "categorical", + "is_target": false + }, + { + "feature_name": "maint", + "data_type": "categorical", + "is_target": false + }, + { + "feature_name": "doors", + "data_type": "categorical", + "is_target": false + }, + { + "feature_name": "persons", + "data_type": "categorical", + "is_target": false + }, + { + "feature_name": "lug_boot", + "data_type": "categorical", + "is_target": false + }, + { + "feature_name": "safety", + "data_type": "categorical", + "is_target": false + }, + { + "feature_name": "class", + "data_type": "categorical", + "is_target": true + } +] \ No newline at end of file diff --git a/timecost/c2/tabddpm/tabddpm-c2-20260504_181103/staged/public/test.csv b/timecost/c2/tabddpm/tabddpm-c2-20260504_181103/staged/public/test.csv new file mode 100644 index 0000000000000000000000000000000000000000..392a0d7189a34d8f13ecf20a99d64b03230d517c --- /dev/null +++ b/timecost/c2/tabddpm/tabddpm-c2-20260504_181103/staged/public/test.csv @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:b48114a7d0bc5bd9a07920f903c8d4aba8bf98bf2a66a050da03588b0245ca73 +size 5273 diff --git a/timecost/c2/tabddpm/tabddpm-c2-20260504_181103/staged/public/train.csv b/timecost/c2/tabddpm/tabddpm-c2-20260504_181103/staged/public/train.csv new file mode 100644 index 0000000000000000000000000000000000000000..da4f4d55134eebc0e51157d0d467536371db1484 --- /dev/null +++ b/timecost/c2/tabddpm/tabddpm-c2-20260504_181103/staged/public/train.csv @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:4aed00c2c2b3f88a55a7ebff31b2e1b5e0e32fb0a7267e0b9d2779cd23e434dd +size 41565 diff --git a/timecost/c2/tabddpm/tabddpm-c2-20260504_181103/staged/public/val.csv b/timecost/c2/tabddpm/tabddpm-c2-20260504_181103/staged/public/val.csv new file mode 100644 index 0000000000000000000000000000000000000000..af8caf7ee42524188534a3daf32996dc491952d9 --- /dev/null +++ b/timecost/c2/tabddpm/tabddpm-c2-20260504_181103/staged/public/val.csv @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:26e90c1170a57a14c05832ac88027722b1f3848f9662c7c09ef7c93dcba4cc01 +size 5176 diff --git a/timecost/c2/tabddpm/tabddpm-c2-20260504_181103/staged/tabddpm/adapter_report.json b/timecost/c2/tabddpm/tabddpm-c2-20260504_181103/staged/tabddpm/adapter_report.json new file mode 100644 index 0000000000000000000000000000000000000000..2b7902d6a56d5de7e67c14f54def5d51a189eb8c --- /dev/null +++ b/timecost/c2/tabddpm/tabddpm-c2-20260504_181103/staged/tabddpm/adapter_report.json @@ -0,0 +1,7 @@ +{ + "adapter_ready_status": "pass", + "adapter_fail_reason_code": null, + "adapter_fail_detail": null, + "adapter_transforms_applied": [], + "model_input_manifest": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/c2/tabddpm/tabddpm-c2-20260504_181103/staged/tabddpm/model_input_manifest.json" +} \ No newline at end of file diff --git a/timecost/c2/tabddpm/tabddpm-c2-20260504_181103/staged/tabddpm/adapter_transforms_applied.json b/timecost/c2/tabddpm/tabddpm-c2-20260504_181103/staged/tabddpm/adapter_transforms_applied.json new file mode 100644 index 0000000000000000000000000000000000000000..0637a088a01e8ddab3bf3fa98dbe804cbde1a0dc --- /dev/null +++ b/timecost/c2/tabddpm/tabddpm-c2-20260504_181103/staged/tabddpm/adapter_transforms_applied.json @@ -0,0 +1 @@ +[] \ No newline at end of file diff --git a/timecost/c2/tabddpm/tabddpm-c2-20260504_181103/staged/tabddpm/model_input_manifest.json b/timecost/c2/tabddpm/tabddpm-c2-20260504_181103/staged/tabddpm/model_input_manifest.json new file mode 100644 index 0000000000000000000000000000000000000000..a0f2445cc08e90345603470963b98dc9b001343e --- /dev/null +++ b/timecost/c2/tabddpm/tabddpm-c2-20260504_181103/staged/tabddpm/model_input_manifest.json @@ -0,0 +1,151 @@ +{ + "dataset_id": "c2", + "model": "tabddpm", + "target_column": "class", + "task_type": "classification", + "column_schema": [ + { + "name": "buying", + "role": "feature", + "semantic_type": "categorical", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 4, + "unique_ratio": 0.002894, + "example_values": [ + "vhigh", + "med", + "high", + "low" + ] + } + }, + { + "name": "maint", + "role": "feature", + "semantic_type": "categorical", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 4, + "unique_ratio": 0.002894, + "example_values": [ + "vhigh", + "low", + "med", + "high" + ] + } + }, + { + "name": "doors", + "role": "feature", + "semantic_type": "categorical", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 4, + "unique_ratio": 0.002894, + "example_values": [ + "2", + "5more", + "3", + "4" + ] + } + }, + { + "name": "persons", + "role": "feature", + "semantic_type": "categorical", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 3, + "unique_ratio": 0.002171, + "example_values": [ + "2", + "4", + "more" + ] + } + }, + { + "name": "lug_boot", + "role": "feature", + "semantic_type": "categorical", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 3, + "unique_ratio": 0.002171, + "example_values": [ + "small", + "big", + "med" + ] + } + }, + { + "name": "safety", + "role": "feature", + "semantic_type": "categorical", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 3, + "unique_ratio": 0.002171, + "example_values": [ + "low", + "high", + "med" + ] + } + }, + { + "name": "class", + "role": "target", + "semantic_type": "categorical", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 4, + "unique_ratio": 0.002894, + "example_values": [ + "unacc", + "good", + "acc", + "vgood" + ] + } + } + ], + "public_manifest": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/c2/tabddpm/tabddpm-c2-20260504_181103/public_gate/staged_input_manifest.json", + "train_csv": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/c2/tabddpm/tabddpm-c2-20260504_181103/staged/public/train.csv", + "val_csv": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/c2/tabddpm/tabddpm-c2-20260504_181103/staged/public/val.csv", + "test_csv": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/c2/tabddpm/tabddpm-c2-20260504_181103/staged/public/test.csv", + "features_json": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/c2/tabddpm/tabddpm-c2-20260504_181103/staged/public/staged_features.json", + "public_gate_report": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/c2/tabddpm/tabddpm-c2-20260504_181103/public_gate/public_gate_report.json" +} \ No newline at end of file diff --git a/timecost/c2/tabddpm/tabddpm-c2-20260504_181103/tabddpm-c2-1382-20260504_181140.csv b/timecost/c2/tabddpm/tabddpm-c2-20260504_181103/tabddpm-c2-1382-20260504_181140.csv new file mode 100644 index 0000000000000000000000000000000000000000..80588c5545b15e52e605da2d287e0d164b16372b --- /dev/null +++ b/timecost/c2/tabddpm/tabddpm-c2-20260504_181103/tabddpm-c2-1382-20260504_181140.csv @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:98221dc88260a2ea1e55cdbd30eaedbb33e88e6d066c3bf395565afbf203b2b8 +size 38745 diff --git a/timecost/c2/tabddpm/tabddpm-c2-20260504_181103/train_20260504_181103.log b/timecost/c2/tabddpm/tabddpm-c2-20260504_181103/train_20260504_181103.log new file mode 100644 index 0000000000000000000000000000000000000000..d1bb741fbeb6f2fcd03950e3432f561861e3193f --- /dev/null +++ b/timecost/c2/tabddpm/tabddpm-c2-20260504_181103/train_20260504_181103.log @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:14cf68fa12bf8a9e4d7cc59a892456d54b976c676e71e3d6d92486ff58ee32d0 +size 766 diff --git a/timecost/c2/tabddpm/tabddpm-c2-20260504_181207/_tabddpm_sample_r0.py b/timecost/c2/tabddpm/tabddpm-c2-20260504_181207/_tabddpm_sample_r0.py new file mode 100644 index 0000000000000000000000000000000000000000..9a94d2a41b2dcf189c488b2c4912a7dadb8e35ee --- /dev/null +++ b/timecost/c2/tabddpm/tabddpm-c2-20260504_181207/_tabddpm_sample_r0.py @@ -0,0 +1,66 @@ +import os, sys, subprocess, json +import numpy as np +import pandas as pd + +tabddpm_root = "/workspace/tabddpm/code" +assert os.path.isdir(tabddpm_root), f"TabDDPM source not mounted: {tabddpm_root}" +env = os.environ.copy() +env["PYTHONPATH"] = tabddpm_root + (os.pathsep + env.get("PYTHONPATH", "")) + +# Reuse the compat wrapper (patches collections.Sequence for skorch) +wrapper = os.path.join(tabddpm_root, "_compat_run.py") +if not os.path.exists(wrapper): + with open(wrapper, "w") as f: + f.write( + "import collections, collections.abc\n" + "for _a in ('Sequence','MutableSequence','MutableMapping','Mapping'," + "'MutableSet','Set','Callable','Iterable','Iterator'):\n" + " if not hasattr(collections, _a): setattr(collections, _a, getattr(collections.abc, _a, None))\n" + "import sys, runpy\n" + "sys.argv = sys.argv[1:]\n" + "runpy.run_path(sys.argv[0], run_name='__main__')\n" + ) + +print(f"[TabDDPM] Sampling 1382 rows") +ret = subprocess.run( + [sys.executable, wrapper, "scripts/pipeline.py", + "--config", "/work/output-Benchmark-trainonly-v1/c2/tabddpm/tabddpm-c2-20260504_181207/config_sample_20260504_181327_r0.toml", + "--sample"], + cwd=tabddpm_root, + env=env +) +if ret.returncode != 0: + sys.exit(ret.returncode) + +# 将 .npy 输出转为 CSV(npy 在 TabDDPM 的 parent_dir,即 npy_dir) +info_path = "/work/output-Benchmark-trainonly-v1/c2/tabddpm/tabddpm-c2-20260504_181207/data/info.json" +with open(info_path) as f: + info = json.load(f) + +output_dir = "/work/output-Benchmark-trainonly-v1/c2/tabddpm/tabddpm-c2-20260504_181207/output" +col_names = info.get("column_names", []) + +parts = [] +x_num_path = os.path.join(output_dir, "X_num_train.npy") +x_cat_path = os.path.join(output_dir, "X_cat_train.npy") +y_path = os.path.join(output_dir, "y_train.npy") + +if os.path.exists(x_num_path): + parts.append(np.load(x_num_path, allow_pickle=True)) +if os.path.exists(x_cat_path): + parts.append(np.load(x_cat_path, allow_pickle=True).astype(float)) +if os.path.exists(y_path): + y = np.load(y_path, allow_pickle=True) + parts.append(y.reshape(-1, 1) if y.ndim == 1 else y) + +if parts: + combined = np.concatenate(parts, axis=1) + if col_names and len(col_names) == combined.shape[1]: + df = pd.DataFrame(combined, columns=col_names) + else: + df = pd.DataFrame(combined) + df.to_csv("/work/output-Benchmark-trainonly-v1/c2/tabddpm/tabddpm-c2-20260504_181207/tabddpm-c2-1382-20260504_181327.csv", index=False) + print(f"[TabDDPM] Saved {len(df)} rows -> /work/output-Benchmark-trainonly-v1/c2/tabddpm/tabddpm-c2-20260504_181207/tabddpm-c2-1382-20260504_181327.csv") +else: + print("[TabDDPM] WARNING: No output .npy files found") + sys.exit(1) diff --git a/timecost/c2/tabddpm/tabddpm-c2-20260504_181207/_tabddpm_train.py b/timecost/c2/tabddpm/tabddpm-c2-20260504_181207/_tabddpm_train.py new file mode 100644 index 0000000000000000000000000000000000000000..9930b28e955dff462191f2525b3a0fa738c7ca34 --- /dev/null +++ b/timecost/c2/tabddpm/tabddpm-c2-20260504_181207/_tabddpm_train.py @@ -0,0 +1,32 @@ +import os, sys, subprocess + +tabddpm_root = "/workspace/tabddpm/code" +assert os.path.isdir(tabddpm_root), f"TabDDPM source not mounted: {tabddpm_root}" +env = os.environ.copy() +env["PYTHONPATH"] = tabddpm_root + (os.pathsep + env.get("PYTHONPATH", "")) + +# Write a wrapper that patches collections.Sequence (removed in Python 3.10+) +# before running pipeline.py - needed because skorch uses old API +wrapper = os.path.join(tabddpm_root, "_compat_run.py") +with open(wrapper, "w") as f: + f.write( + "import collections, collections.abc\n" + "for _a in ('Sequence','MutableSequence','MutableMapping','Mapping'," + "'MutableSet','Set','Callable','Iterable','Iterator'):\n" + " if not hasattr(collections, _a): setattr(collections, _a, getattr(collections.abc, _a, None))\n" + "import sys, runpy\n" + "sys.argv = sys.argv[1:]\n" + "runpy.run_path(sys.argv[0], run_name='__main__')\n" + ) + +print(f"[TabDDPM] Training, config=/work/output-Benchmark-trainonly-v1/c2/tabddpm/tabddpm-c2-20260504_181207/config.toml") +ret = subprocess.run( + [sys.executable, wrapper, "scripts/pipeline.py", + "--config", "/work/output-Benchmark-trainonly-v1/c2/tabddpm/tabddpm-c2-20260504_181207/config.toml", + "--train"], + cwd=tabddpm_root, + env=env +) +if ret.returncode != 0: + sys.exit(ret.returncode) +print("[TabDDPM] Training complete") diff --git a/timecost/c2/tabddpm/tabddpm-c2-20260504_181207/config.toml b/timecost/c2/tabddpm/tabddpm-c2-20260504_181207/config.toml new file mode 100644 index 0000000000000000000000000000000000000000..1f89e2e3f7a297157b784a249a11249eeb27c9d0 --- /dev/null +++ b/timecost/c2/tabddpm/tabddpm-c2-20260504_181207/config.toml @@ -0,0 +1,39 @@ +seed = 0 +parent_dir = "/work/output-Benchmark-trainonly-v1/c2/tabddpm/tabddpm-c2-20260504_181207/output" +real_data_path = "/work/output-Benchmark-trainonly-v1/c2/tabddpm/tabddpm-c2-20260504_181207/data" +model_type = "mlp" +num_numerical_features = 0 +device = "cuda:0" + +[model_params] +d_in = 6 +num_classes = 4 +is_y_cond = true + +[model_params.rtdl_params] +d_layers = [256, 256] +dropout = 0.0 + +[diffusion_params] +num_timesteps = 1000 +gaussian_loss_type = "mse" + +[train.main] +steps = 5000 +lr = 0.001 +weight_decay = 0.0 +batch_size = 256 + +[train.T] +seed = 0 +normalization = "quantile" +num_nan_policy = "__none__" +cat_nan_policy = "__none__" +cat_min_frequency = "__none__" +cat_encoding = "__none__" +y_policy = "default" + +[sample] +num_samples = 1000 +batch_size = 256 +seed = 0 diff --git a/timecost/c2/tabddpm/tabddpm-c2-20260504_181207/config_sample_20260504_181327_r0.toml b/timecost/c2/tabddpm/tabddpm-c2-20260504_181207/config_sample_20260504_181327_r0.toml new file mode 100644 index 0000000000000000000000000000000000000000..6d926ececa1d9852eded91a9d1abf795c2056384 --- /dev/null +++ b/timecost/c2/tabddpm/tabddpm-c2-20260504_181207/config_sample_20260504_181327_r0.toml @@ -0,0 +1,39 @@ +seed = 0 +parent_dir = "/work/output-Benchmark-trainonly-v1/c2/tabddpm/tabddpm-c2-20260504_181207/output" +real_data_path = "/work/output-Benchmark-trainonly-v1/c2/tabddpm/tabddpm-c2-20260504_181207/data" +model_type = "mlp" +num_numerical_features = 0 +device = "cuda:0" + +[model_params] +d_in = 6 +num_classes = 4 +is_y_cond = true + +[model_params.rtdl_params] +d_layers = [256, 256] +dropout = 0.0 + +[diffusion_params] +num_timesteps = 1000 +gaussian_loss_type = "mse" + +[train.main] +steps = 5000 +lr = 0.001 +weight_decay = 0.0 +batch_size = 256 + +[train.T] +seed = 0 +normalization = "quantile" +num_nan_policy = "__none__" +cat_nan_policy = "__none__" +cat_min_frequency = "__none__" +cat_encoding = "__none__" +y_policy = "default" + +[sample] +num_samples = 1382 +batch_size = 256 +seed = 0 diff --git a/timecost/c2/tabddpm/tabddpm-c2-20260504_181207/data/X_cat_train.npy b/timecost/c2/tabddpm/tabddpm-c2-20260504_181207/data/X_cat_train.npy new file mode 100644 index 0000000000000000000000000000000000000000..e99f1ae8dc9e7155e5c4bbbd3c2f3f7215c628f7 --- /dev/null +++ b/timecost/c2/tabddpm/tabddpm-c2-20260504_181207/data/X_cat_train.npy @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:24d2203601ba060728920e754747e5a1dc3955a1b5775e147382fee4f1812542 +size 66464 diff --git a/timecost/c2/tabddpm/tabddpm-c2-20260504_181207/data/info.json b/timecost/c2/tabddpm/tabddpm-c2-20260504_181207/data/info.json new file mode 100644 index 0000000000000000000000000000000000000000..0f2b351a317260c450725d5a04373330ad3701a3 --- /dev/null +++ b/timecost/c2/tabddpm/tabddpm-c2-20260504_181207/data/info.json @@ -0,0 +1,29 @@ +{ + "name": "benchmark_dataset", + "task_type": "multiclass", + "n_num_features": 0, + "n_cat_features": 6, + "train_size": 1382, + "num_col_idx": [], + "cat_col_idx": [ + 0, + 1, + 2, + 3, + 4, + 5 + ], + "target_col_idx": [ + 6 + ], + "column_names": [ + "buying", + "maint", + "doors", + "persons", + "lug_boot", + "safety", + "class" + ], + "num_classes": 4 +} \ No newline at end of file diff --git a/timecost/c2/tabddpm/tabddpm-c2-20260504_181207/data/y_train.npy b/timecost/c2/tabddpm/tabddpm-c2-20260504_181207/data/y_train.npy new file mode 100644 index 0000000000000000000000000000000000000000..8bfc8f9de7350657cd6411c55d2b9b87bea9c13a --- /dev/null +++ b/timecost/c2/tabddpm/tabddpm-c2-20260504_181207/data/y_train.npy @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:3f8eb0b25043331a30fde5439f063eed59e7a76f45d7d102b9b4fbcd16b551b4 +size 11184 diff --git a/timecost/c2/tabddpm/tabddpm-c2-20260504_181207/gen_20260504_181327_r0.log b/timecost/c2/tabddpm/tabddpm-c2-20260504_181207/gen_20260504_181327_r0.log new file mode 100644 index 0000000000000000000000000000000000000000..877963b0fe6be73beadf40653b39c241200f7327 --- /dev/null +++ b/timecost/c2/tabddpm/tabddpm-c2-20260504_181207/gen_20260504_181327_r0.log @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:b93d275fe4edebae555a0b578fb14998a7b5164eb5c79abe5b9d996cf4d671a9 +size 126462 diff --git a/timecost/c2/tabddpm/tabddpm-c2-20260504_181207/input_snapshot.json b/timecost/c2/tabddpm/tabddpm-c2-20260504_181207/input_snapshot.json new file mode 100644 index 0000000000000000000000000000000000000000..772021148f055243c89ddfd9b6fa388ee33d05ea --- /dev/null +++ b/timecost/c2/tabddpm/tabddpm-c2-20260504_181207/input_snapshot.json @@ -0,0 +1,36 @@ +{ + "dataset_id": "c2", + "model": "tabddpm", + "inputs": { + "train_csv": { + "path": "/data/jialinzhang/SynthesizePipeline-server/DatasetNew/c2/c2-train.csv", + "exists": true, + "size": 42948, + "sha256": "17bc560fa96bd00fb3b526e1e65bc91210b701d0d0a4e8bb9b4c5196cab56def" + }, + "val_csv": { + "path": "/data/jialinzhang/SynthesizePipeline-server/DatasetNew/c2/c2-val.csv", + "exists": true, + "size": 5349, + "sha256": "61e565eca62e65a7dccd9d51039a3170413379e10fc494e25870e7c4294863c9" + }, + "test_csv": { + "path": "/data/jialinzhang/SynthesizePipeline-server/DatasetNew/c2/c2-test.csv", + "exists": true, + "size": 5448, + "sha256": "cbcbb062a1faf5fa44b66c80532baa229e05b94fc42137269761e6c6d84af20a" + }, + "profile_json": { + "path": "/data/jialinzhang/SynthesizePipeline-server/DatasetNew/artifacts/data_core/tabular/c2/c2-dataset_profile.json", + "exists": true, + "size": 3240, + "sha256": "526b7163b2076c93c0bf4638438081ee8a6907065d5b608faa40d1a3dbc2a27b" + }, + "contract_json": { + "path": "/data/jialinzhang/SynthesizePipeline-server/DatasetNew/artifacts/data_core/tabular/c2/c2-dataset_contract_v1.json", + "exists": true, + "size": 3731, + "sha256": "fb595a876054c2ee9b4e10cfe83a5691588de1d25466cbb9d473c18ad3604009" + } + } +} \ No newline at end of file diff --git a/timecost/c2/tabddpm/tabddpm-c2-20260504_181207/output/X_cat_train.npy b/timecost/c2/tabddpm/tabddpm-c2-20260504_181207/output/X_cat_train.npy new file mode 100644 index 0000000000000000000000000000000000000000..b8ce5b95bc8251728c835c81edbb5e6a6185d9c9 --- /dev/null +++ b/timecost/c2/tabddpm/tabddpm-c2-20260504_181207/output/X_cat_train.npy @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:6e77f34c91b60cbce837540a3e08097ecb343703ce3d0246710819ef447e1d54 +size 16885 diff --git a/timecost/c2/tabddpm/tabddpm-c2-20260504_181207/output/X_cat_unnorm.npy b/timecost/c2/tabddpm/tabddpm-c2-20260504_181207/output/X_cat_unnorm.npy new file mode 100644 index 0000000000000000000000000000000000000000..7ea825ed64e038b9ddc5863f265a1cd55ca73819 --- /dev/null +++ b/timecost/c2/tabddpm/tabddpm-c2-20260504_181207/output/X_cat_unnorm.npy @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:0c3584fe9ca4a1b527e84e477f6fd5695011f2223445495240a83d02ecb2075e +size 66464 diff --git a/timecost/c2/tabddpm/tabddpm-c2-20260504_181207/output/config.toml b/timecost/c2/tabddpm/tabddpm-c2-20260504_181207/output/config.toml new file mode 100644 index 0000000000000000000000000000000000000000..6d926ececa1d9852eded91a9d1abf795c2056384 --- /dev/null +++ b/timecost/c2/tabddpm/tabddpm-c2-20260504_181207/output/config.toml @@ -0,0 +1,39 @@ +seed = 0 +parent_dir = "/work/output-Benchmark-trainonly-v1/c2/tabddpm/tabddpm-c2-20260504_181207/output" +real_data_path = "/work/output-Benchmark-trainonly-v1/c2/tabddpm/tabddpm-c2-20260504_181207/data" +model_type = "mlp" +num_numerical_features = 0 +device = "cuda:0" + +[model_params] +d_in = 6 +num_classes = 4 +is_y_cond = true + +[model_params.rtdl_params] +d_layers = [256, 256] +dropout = 0.0 + +[diffusion_params] +num_timesteps = 1000 +gaussian_loss_type = "mse" + +[train.main] +steps = 5000 +lr = 0.001 +weight_decay = 0.0 +batch_size = 256 + +[train.T] +seed = 0 +normalization = "quantile" +num_nan_policy = "__none__" +cat_nan_policy = "__none__" +cat_min_frequency = "__none__" +cat_encoding = "__none__" +y_policy = "default" + +[sample] +num_samples = 1382 +batch_size = 256 +seed = 0 diff --git a/timecost/c2/tabddpm/tabddpm-c2-20260504_181207/output/info.json b/timecost/c2/tabddpm/tabddpm-c2-20260504_181207/output/info.json new file mode 100644 index 0000000000000000000000000000000000000000..0f2b351a317260c450725d5a04373330ad3701a3 --- /dev/null +++ b/timecost/c2/tabddpm/tabddpm-c2-20260504_181207/output/info.json @@ -0,0 +1,29 @@ +{ + "name": "benchmark_dataset", + "task_type": "multiclass", + "n_num_features": 0, + "n_cat_features": 6, + "train_size": 1382, + "num_col_idx": [], + "cat_col_idx": [ + 0, + 1, + 2, + 3, + 4, + 5 + ], + "target_col_idx": [ + 6 + ], + "column_names": [ + "buying", + "maint", + "doors", + "persons", + "lug_boot", + "safety", + "class" + ], + "num_classes": 4 +} \ No newline at end of file diff --git a/timecost/c2/tabddpm/tabddpm-c2-20260504_181207/output/loss.csv b/timecost/c2/tabddpm/tabddpm-c2-20260504_181207/output/loss.csv new file mode 100644 index 0000000000000000000000000000000000000000..5f996a25328bdaab56049c4f49f7567d240eace0 --- /dev/null +++ b/timecost/c2/tabddpm/tabddpm-c2-20260504_181207/output/loss.csv @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:35ec4ea19e9311190f8c430e41ae865decb12a205a13591d7f3d008db462406e +size 1251 diff --git a/timecost/c2/tabddpm/tabddpm-c2-20260504_181207/output/model.pt b/timecost/c2/tabddpm/tabddpm-c2-20260504_181207/output/model.pt new file mode 100644 index 0000000000000000000000000000000000000000..b80bbad06939fc0ead1b779678d99d473f5b2074 --- /dev/null +++ b/timecost/c2/tabddpm/tabddpm-c2-20260504_181207/output/model.pt @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:e5354cbe787b33e8d9ec39f348ab76a760a7bcf5359143c2cb10cb84c72c79c0 +size 566934 diff --git a/timecost/c2/tabddpm/tabddpm-c2-20260504_181207/output/model_ema.pt b/timecost/c2/tabddpm/tabddpm-c2-20260504_181207/output/model_ema.pt new file mode 100644 index 0000000000000000000000000000000000000000..348701ed22a7b54c87bcf068ba681a3b7d763b59 --- /dev/null +++ b/timecost/c2/tabddpm/tabddpm-c2-20260504_181207/output/model_ema.pt @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:a111267f57c5e1493761867d6869283240e2c0499acd84e32bf616126181ca68 +size 567778 diff --git a/timecost/c2/tabddpm/tabddpm-c2-20260504_181207/output/y_train.npy b/timecost/c2/tabddpm/tabddpm-c2-20260504_181207/output/y_train.npy new file mode 100644 index 0000000000000000000000000000000000000000..aa9afff4d061333b18828274b1072d1b884f162c --- /dev/null +++ b/timecost/c2/tabddpm/tabddpm-c2-20260504_181207/output/y_train.npy @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:58b1a722d369027a22bed702e3539c6fefa976741570c4c0a2f8546e2978c3d7 +size 11184 diff --git a/timecost/c2/tabddpm/tabddpm-c2-20260504_181207/public_gate/normalized_schema_snapshot.json b/timecost/c2/tabddpm/tabddpm-c2-20260504_181207/public_gate/normalized_schema_snapshot.json new file mode 100644 index 0000000000000000000000000000000000000000..689b1d00d96508e44ba40e58dc4560e19afc2b3b --- /dev/null +++ b/timecost/c2/tabddpm/tabddpm-c2-20260504_181207/public_gate/normalized_schema_snapshot.json @@ -0,0 +1,144 @@ +{ + "dataset_id": "c2", + "target_column": "class", + "task_type": "classification", + "columns": [ + { + "name": "buying", + "role": "feature", + "semantic_type": "categorical", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 4, + "unique_ratio": 0.002894, + "example_values": [ + "vhigh", + "med", + "high", + "low" + ] + } + }, + { + "name": "maint", + "role": "feature", + "semantic_type": "categorical", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 4, + "unique_ratio": 0.002894, + "example_values": [ + "vhigh", + "low", + "med", + "high" + ] + } + }, + { + "name": "doors", + "role": "feature", + "semantic_type": "categorical", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 4, + "unique_ratio": 0.002894, + "example_values": [ + "2", + "5more", + "3", + "4" + ] + } + }, + { + "name": "persons", + "role": "feature", + "semantic_type": "categorical", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 3, + "unique_ratio": 0.002171, + "example_values": [ + "2", + "4", + "more" + ] + } + }, + { + "name": "lug_boot", + "role": "feature", + "semantic_type": "categorical", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 3, + "unique_ratio": 0.002171, + "example_values": [ + "small", + "big", + "med" + ] + } + }, + { + "name": "safety", + "role": "feature", + "semantic_type": "categorical", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 3, + "unique_ratio": 0.002171, + "example_values": [ + "low", + "high", + "med" + ] + } + }, + { + "name": "class", + "role": "target", + "semantic_type": "categorical", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 4, + "unique_ratio": 0.002894, + "example_values": [ + "unacc", + "good", + "acc", + "vgood" + ] + } + } + ] +} \ No newline at end of file diff --git a/timecost/c2/tabddpm/tabddpm-c2-20260504_181207/public_gate/public_gate_report.json b/timecost/c2/tabddpm/tabddpm-c2-20260504_181207/public_gate/public_gate_report.json new file mode 100644 index 0000000000000000000000000000000000000000..2e4cdcb2a4e28e40d59b17a83e773f622b7636a5 --- /dev/null +++ b/timecost/c2/tabddpm/tabddpm-c2-20260504_181207/public_gate/public_gate_report.json @@ -0,0 +1,37 @@ +{ + "dataset_id": "c2", + "status": "pass", + "checks": [ + { + "check_id": "PG001_csv_parse_ok", + "status": "pass" + }, + { + "check_id": "PG002_split_header_consistent", + "status": "pass" + }, + { + "check_id": "PG003_profile_header_match", + "status": "pass" + }, + { + "check_id": "PG004_missing_token_normalized", + "status": "pass" + }, + { + "check_id": "PG005_semantic_type_validated", + "status": "pass" + }, + { + "check_id": "PG006_target_defined_and_valid", + "status": "pass" + } + ], + "target_column": "class", + "task_type": "classification", + "input_splits": { + "train": "/data/jialinzhang/SynthesizePipeline-server/DatasetNew/c2/c2-train.csv", + "val": "/data/jialinzhang/SynthesizePipeline-server/DatasetNew/c2/c2-val.csv", + "test": "/data/jialinzhang/SynthesizePipeline-server/DatasetNew/c2/c2-test.csv" + } +} \ No newline at end of file diff --git a/timecost/c2/tabddpm/tabddpm-c2-20260504_181207/public_gate/staged_input_manifest.json b/timecost/c2/tabddpm/tabddpm-c2-20260504_181207/public_gate/staged_input_manifest.json new file mode 100644 index 0000000000000000000000000000000000000000..127403f620cb634ba0d979d9eb9e26ec4ffbbec5 --- /dev/null +++ b/timecost/c2/tabddpm/tabddpm-c2-20260504_181207/public_gate/staged_input_manifest.json @@ -0,0 +1,149 @@ +{ + "dataset_id": "c2", + "target_column": "class", + "task_type": "classification", + "train_csv": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/c2/tabddpm/tabddpm-c2-20260504_181207/staged/public/train.csv", + "val_csv": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/c2/tabddpm/tabddpm-c2-20260504_181207/staged/public/val.csv", + "test_csv": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/c2/tabddpm/tabddpm-c2-20260504_181207/staged/public/test.csv", + "features_json": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/c2/tabddpm/tabddpm-c2-20260504_181207/staged/public/staged_features.json", + "public_gate_report": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/c2/tabddpm/tabddpm-c2-20260504_181207/public_gate/public_gate_report.json", + "column_schema": [ + { + "name": "buying", + "role": "feature", + "semantic_type": "categorical", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 4, + "unique_ratio": 0.002894, + "example_values": [ + "vhigh", + "med", + "high", + "low" + ] + } + }, + { + "name": "maint", + "role": "feature", + "semantic_type": "categorical", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 4, + "unique_ratio": 0.002894, + "example_values": [ + "vhigh", + "low", + "med", + "high" + ] + } + }, + { + "name": "doors", + "role": "feature", + "semantic_type": "categorical", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 4, + "unique_ratio": 0.002894, + "example_values": [ + "2", + "5more", + "3", + "4" + ] + } + }, + { + "name": "persons", + "role": "feature", + "semantic_type": "categorical", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 3, + "unique_ratio": 0.002171, + "example_values": [ + "2", + "4", + "more" + ] + } + }, + { + "name": "lug_boot", + "role": "feature", + "semantic_type": "categorical", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 3, + "unique_ratio": 0.002171, + "example_values": [ + "small", + "big", + "med" + ] + } + }, + { + "name": "safety", + "role": "feature", + "semantic_type": "categorical", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 3, + "unique_ratio": 0.002171, + "example_values": [ + "low", + "high", + "med" + ] + } + }, + { + "name": "class", + "role": "target", + "semantic_type": "categorical", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 4, + "unique_ratio": 0.002894, + "example_values": [ + "unacc", + "good", + "acc", + "vgood" + ] + } + } + ] +} \ No newline at end of file diff --git a/timecost/c2/tabddpm/tabddpm-c2-20260504_181207/run_config.json b/timecost/c2/tabddpm/tabddpm-c2-20260504_181207/run_config.json new file mode 100644 index 0000000000000000000000000000000000000000..21a9ca17affe1adccda08c2ca47f2bde5abd323b --- /dev/null +++ b/timecost/c2/tabddpm/tabddpm-c2-20260504_181207/run_config.json @@ -0,0 +1,45 @@ +{ + "schema_version": 1, + "recorded_at": "2026-05-04T18:12:07", + "dataset_id": "c2", + "model": "tabddpm", + "work_dir": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/c2/tabddpm/tabddpm-c2-20260504_181207", + "dataset_source_requested": "new", + "dataset_source_resolved": "new", + "cli_args": { + "model": "tabddpm", + "dataset": "c2", + "dataset_source": "new", + "train": true, + "generate": true, + "num_rows": 0, + "epochs": null, + "output_dir": null, + "model_dir": null, + "work_dir": null, + "resume": false, + "no_stats": false + }, + "resolved": { + "num_rows": 1382, + "model_path": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/c2/tabddpm/tabddpm-c2-20260504_181207", + "output_csv": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/c2/tabddpm/tabddpm-c2-20260504_181207/tabddpm-c2-1382-20260504_181327.csv" + }, + "input_artifacts": { + "public_gate_report": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/c2/tabddpm/tabddpm-c2-20260504_181207/public_gate/public_gate_report.json", + "public_manifest": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/c2/tabddpm/tabddpm-c2-20260504_181207/public_gate/staged_input_manifest.json", + "model_manifest": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/c2/tabddpm/tabddpm-c2-20260504_181207/staged/tabddpm/model_input_manifest.json", + "train_csv": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/c2/tabddpm/tabddpm-c2-20260504_181207/staged/public/train.csv", + "features_json": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/c2/tabddpm/tabddpm-c2-20260504_181207/staged/public/staged_features.json", + "target_column": "class", + "task_type": "classification" + }, + "env_overrides": { + "BENCHMARK_TABDDPM_GPUS": "device=3", + "TABDDPM_NUM_TIMESTEPS": "1000", + "TABDDPM_SAMPLE_BATCH_SIZE": "256", + "TABDDPM_STEPS_PER_EPOCH": "100", + "TABDDPM_TRAIN_BATCH_SIZE": "256", + "TABDDPM_TRAIN_LR": "0.001" + } +} \ No newline at end of file diff --git a/timecost/c2/tabddpm/tabddpm-c2-20260504_181207/runtime_result.json b/timecost/c2/tabddpm/tabddpm-c2-20260504_181207/runtime_result.json new file mode 100644 index 0000000000000000000000000000000000000000..700458f9cff846eff69a5a3a7fcfd418fc79b27c --- /dev/null +++ b/timecost/c2/tabddpm/tabddpm-c2-20260504_181207/runtime_result.json @@ -0,0 +1,27 @@ +{ + "dataset_id": "c2", + "model": "tabddpm", + "run_id": "tabddpm-c2-20260504_181207", + "public_gate_status": "pass", + "adapter_ready_status": "pass", + "train_status": "success", + "generate_status": "success", + "reason_code": null, + "reason_detail": null, + "artifacts": { + "synthetic_csv": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/c2/tabddpm/tabddpm-c2-20260504_181207/tabddpm-c2-1382-20260504_181327.csv", + "model_path": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/c2/tabddpm/tabddpm-c2-20260504_181207" + }, + "timings": { + "train": { + "started_at": "2026-05-04T18:12:07", + "ended_at": "2026-05-04T18:13:27", + "duration_sec": 80.183 + }, + "generate": { + "started_at": "2026-05-04T18:13:27", + "ended_at": "2026-05-04T18:14:13", + "duration_sec": 45.511 + } + } +} \ No newline at end of file diff --git a/timecost/c2/tabddpm/tabddpm-c2-20260504_181207/staged/public/staged_features.json b/timecost/c2/tabddpm/tabddpm-c2-20260504_181207/staged/public/staged_features.json new file mode 100644 index 0000000000000000000000000000000000000000..61783861dd5de501592f76acb0469cf3f3b2622a --- /dev/null +++ b/timecost/c2/tabddpm/tabddpm-c2-20260504_181207/staged/public/staged_features.json @@ -0,0 +1,37 @@ +[ + { + "feature_name": "buying", + "data_type": "categorical", + "is_target": false + }, + { + "feature_name": "maint", + "data_type": "categorical", + "is_target": false + }, + { + "feature_name": "doors", + "data_type": "categorical", + "is_target": false + }, + { + "feature_name": "persons", + "data_type": "categorical", + "is_target": false + }, + { + "feature_name": "lug_boot", + "data_type": "categorical", + "is_target": false + }, + { + "feature_name": "safety", + "data_type": "categorical", + "is_target": false + }, + { + "feature_name": "class", + "data_type": "categorical", + "is_target": true + } +] \ No newline at end of file diff --git a/timecost/c2/tabddpm/tabddpm-c2-20260504_181207/staged/public/test.csv b/timecost/c2/tabddpm/tabddpm-c2-20260504_181207/staged/public/test.csv new file mode 100644 index 0000000000000000000000000000000000000000..392a0d7189a34d8f13ecf20a99d64b03230d517c --- /dev/null +++ b/timecost/c2/tabddpm/tabddpm-c2-20260504_181207/staged/public/test.csv @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:b48114a7d0bc5bd9a07920f903c8d4aba8bf98bf2a66a050da03588b0245ca73 +size 5273 diff --git a/timecost/c2/tabddpm/tabddpm-c2-20260504_181207/staged/public/train.csv b/timecost/c2/tabddpm/tabddpm-c2-20260504_181207/staged/public/train.csv new file mode 100644 index 0000000000000000000000000000000000000000..da4f4d55134eebc0e51157d0d467536371db1484 --- /dev/null +++ b/timecost/c2/tabddpm/tabddpm-c2-20260504_181207/staged/public/train.csv @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:4aed00c2c2b3f88a55a7ebff31b2e1b5e0e32fb0a7267e0b9d2779cd23e434dd +size 41565 diff --git a/timecost/c2/tabddpm/tabddpm-c2-20260504_181207/staged/public/val.csv b/timecost/c2/tabddpm/tabddpm-c2-20260504_181207/staged/public/val.csv new file mode 100644 index 0000000000000000000000000000000000000000..af8caf7ee42524188534a3daf32996dc491952d9 --- /dev/null +++ b/timecost/c2/tabddpm/tabddpm-c2-20260504_181207/staged/public/val.csv @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:26e90c1170a57a14c05832ac88027722b1f3848f9662c7c09ef7c93dcba4cc01 +size 5176 diff --git a/timecost/c2/tabddpm/tabddpm-c2-20260504_181207/staged/tabddpm/adapter_report.json b/timecost/c2/tabddpm/tabddpm-c2-20260504_181207/staged/tabddpm/adapter_report.json new file mode 100644 index 0000000000000000000000000000000000000000..39ceea716a5a35040872974d2eb66c6003d74991 --- /dev/null +++ b/timecost/c2/tabddpm/tabddpm-c2-20260504_181207/staged/tabddpm/adapter_report.json @@ -0,0 +1,7 @@ +{ + "adapter_ready_status": "pass", + "adapter_fail_reason_code": null, + "adapter_fail_detail": null, + "adapter_transforms_applied": [], + "model_input_manifest": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/c2/tabddpm/tabddpm-c2-20260504_181207/staged/tabddpm/model_input_manifest.json" +} \ No newline at end of file diff --git a/timecost/c2/tabddpm/tabddpm-c2-20260504_181207/staged/tabddpm/adapter_transforms_applied.json b/timecost/c2/tabddpm/tabddpm-c2-20260504_181207/staged/tabddpm/adapter_transforms_applied.json new file mode 100644 index 0000000000000000000000000000000000000000..0637a088a01e8ddab3bf3fa98dbe804cbde1a0dc --- /dev/null +++ b/timecost/c2/tabddpm/tabddpm-c2-20260504_181207/staged/tabddpm/adapter_transforms_applied.json @@ -0,0 +1 @@ +[] \ No newline at end of file diff --git a/timecost/c2/tabddpm/tabddpm-c2-20260504_181207/staged/tabddpm/model_input_manifest.json b/timecost/c2/tabddpm/tabddpm-c2-20260504_181207/staged/tabddpm/model_input_manifest.json new file mode 100644 index 0000000000000000000000000000000000000000..d57fd598a635f3eeb37458528e10312eaea20fc9 --- /dev/null +++ b/timecost/c2/tabddpm/tabddpm-c2-20260504_181207/staged/tabddpm/model_input_manifest.json @@ -0,0 +1,151 @@ +{ + "dataset_id": "c2", + "model": "tabddpm", + "target_column": "class", + "task_type": "classification", + "column_schema": [ + { + "name": "buying", + "role": "feature", + "semantic_type": "categorical", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 4, + "unique_ratio": 0.002894, + "example_values": [ + "vhigh", + "med", + "high", + "low" + ] + } + }, + { + "name": "maint", + "role": "feature", + "semantic_type": "categorical", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 4, + "unique_ratio": 0.002894, + "example_values": [ + "vhigh", + "low", + "med", + "high" + ] + } + }, + { + "name": "doors", + "role": "feature", + "semantic_type": "categorical", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 4, + "unique_ratio": 0.002894, + "example_values": [ + "2", + "5more", + "3", + "4" + ] + } + }, + { + "name": "persons", + "role": "feature", + "semantic_type": "categorical", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 3, + "unique_ratio": 0.002171, + "example_values": [ + "2", + "4", + "more" + ] + } + }, + { + "name": "lug_boot", + "role": "feature", + "semantic_type": "categorical", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 3, + "unique_ratio": 0.002171, + "example_values": [ + "small", + "big", + "med" + ] + } + }, + { + "name": "safety", + "role": "feature", + "semantic_type": "categorical", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 3, + "unique_ratio": 0.002171, + "example_values": [ + "low", + "high", + "med" + ] + } + }, + { + "name": "class", + "role": "target", + "semantic_type": "categorical", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 4, + "unique_ratio": 0.002894, + "example_values": [ + "unacc", + "good", + "acc", + "vgood" + ] + } + } + ], + "public_manifest": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/c2/tabddpm/tabddpm-c2-20260504_181207/public_gate/staged_input_manifest.json", + "train_csv": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/c2/tabddpm/tabddpm-c2-20260504_181207/staged/public/train.csv", + "val_csv": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/c2/tabddpm/tabddpm-c2-20260504_181207/staged/public/val.csv", + "test_csv": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/c2/tabddpm/tabddpm-c2-20260504_181207/staged/public/test.csv", + "features_json": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/c2/tabddpm/tabddpm-c2-20260504_181207/staged/public/staged_features.json", + "public_gate_report": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/c2/tabddpm/tabddpm-c2-20260504_181207/public_gate/public_gate_report.json" +} \ No newline at end of file diff --git a/timecost/c2/tabddpm/tabddpm-c2-20260504_181207/tabddpm-c2-1382-20260504_181327.csv b/timecost/c2/tabddpm/tabddpm-c2-20260504_181207/tabddpm-c2-1382-20260504_181327.csv new file mode 100644 index 0000000000000000000000000000000000000000..a735ab2dad04a579c9f5d5388a4fa8ac2c1ece91 --- /dev/null +++ b/timecost/c2/tabddpm/tabddpm-c2-20260504_181207/tabddpm-c2-1382-20260504_181327.csv @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:3ef7b04421aefbad10890e4ab781f979634cee232355d0c0fa801837604385a7 +size 38745 diff --git a/timecost/c2/tabddpm/tabddpm-c2-20260504_181207/train_20260504_181207.log b/timecost/c2/tabddpm/tabddpm-c2-20260504_181207/train_20260504_181207.log new file mode 100644 index 0000000000000000000000000000000000000000..1a69546b543fcdb5aad504909aefe195ec2cdd07 --- /dev/null +++ b/timecost/c2/tabddpm/tabddpm-c2-20260504_181207/train_20260504_181207.log @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:c43a64728eefff6ad798ad80865649a2403c1ec2aeda34c198141392ff04fb7a +size 1078 diff --git a/timecost/c2/tabdiff/tabdiff-c2-20260501_053602/_tabdiff_gen.py b/timecost/c2/tabdiff/tabdiff-c2-20260501_053602/_tabdiff_gen.py new file mode 100644 index 0000000000000000000000000000000000000000..6ad02cde0ebb7085c857c9467656a0c3dc2b36e6 --- /dev/null +++ b/timecost/c2/tabdiff/tabdiff-c2-20260501_053602/_tabdiff_gen.py @@ -0,0 +1,36 @@ + +import os, shutil, subprocess, sys +td = r"/workspace/TabDiff" +name = r"pipeline_c2" +src = r"/work/output-Benchmark-trainonly-v1/c2/tabdiff/tabdiff-c2-20260501_053602/tabular_bundle/pipeline_c2" +dst_data = os.path.join(td, "data", name) +dst_syn = os.path.join(td, "synthetic", name) +shutil.rmtree(dst_data, ignore_errors=True) +shutil.copytree(src, dst_data) +os.makedirs(dst_syn, exist_ok=True) +for fn in ("real.csv", "test.csv", "val.csv"): + shutil.copy(os.path.join(src, fn), os.path.join(dst_syn, fn)) +os.chdir(td) +os.environ["PYTHONPATH"] = td + os.pathsep + os.environ.get("PYTHONPATH", "") +subprocess.check_call([ + sys.executable, "-m", "tabdiff.main", + "--dataname", name, "--mode", "test", "--gpu", "0", + "--no_wandb", "--exp_name", r"adapter_learnable", + "--ckpt_path", r"/workspace/TabDiff/tabdiff/ckpt/pipeline_c2/adapter_learnable/model_500.pt", + "--num_samples_to_generate", str(int(1382)), +]) +# test() 写入 tabdiff/result////samples.csv +import glob as g +base = os.path.join(td, "tabdiff", "result", name, r"adapter_learnable") +best = None +best_t = -1.0 +for root, _, files in os.walk(base): + if "samples.csv" in files: + p = os.path.join(root, "samples.csv") + t = os.path.getmtime(p) + if t > best_t: + best_t = t + best = p +if not best: + raise SystemExit("tabdiff: no samples.csv under " + base) +shutil.copy(best, r"/work/output-Benchmark-trainonly-v1/c2/tabdiff/tabdiff-c2-20260501_053602/tabdiff-c2-1382-20260501_054253.csv") diff --git a/timecost/c2/tabdiff/tabdiff-c2-20260501_053602/_tabdiff_train.py b/timecost/c2/tabdiff/tabdiff-c2-20260501_053602/_tabdiff_train.py new file mode 100644 index 0000000000000000000000000000000000000000..c639c32804feee4ba0d67da24759d1db2a17f4f6 --- /dev/null +++ b/timecost/c2/tabdiff/tabdiff-c2-20260501_053602/_tabdiff_train.py @@ -0,0 +1,21 @@ + +import os, shutil, subprocess, sys +td = r"/workspace/TabDiff" +name = r"pipeline_c2" +src = r"/work/output-Benchmark-trainonly-v1/c2/tabdiff/tabdiff-c2-20260501_053602/tabular_bundle/pipeline_c2" +dst_data = os.path.join(td, "data", name) +dst_syn = os.path.join(td, "synthetic", name) +shutil.rmtree(dst_data, ignore_errors=True) +shutil.copytree(src, dst_data) +os.makedirs(dst_syn, exist_ok=True) +for fn in ("real.csv", "test.csv", "val.csv"): + shutil.copy(os.path.join(src, fn), os.path.join(dst_syn, fn)) +os.chdir(td) +os.environ["PYTHONPATH"] = td + os.pathsep + os.environ.get("PYTHONPATH", "") +os.environ["TABDIFF_SMOKE_STEPS"] = "500" +os.environ["TABDIFF_ADAPTER_TRAIN"] = "1" +subprocess.check_call([ + sys.executable, "-m", "tabdiff.main", + "--dataname", name, "--mode", "train", "--gpu", "0", + "--no_wandb", "--exp_name", r"adapter_learnable", +]) diff --git a/timecost/c2/tabdiff/tabdiff-c2-20260501_053602/gen_20260501_054253.log b/timecost/c2/tabdiff/tabdiff-c2-20260501_053602/gen_20260501_054253.log new file mode 100644 index 0000000000000000000000000000000000000000..aca2c90c10233d71f8aef41d6b51dd4950215416 --- /dev/null +++ b/timecost/c2/tabdiff/tabdiff-c2-20260501_053602/gen_20260501_054253.log @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:3de292e34bb26dafd4263e6580a3a73883941a9f22ab42d402500eb32b7de440 +size 4472 diff --git a/timecost/c2/tabdiff/tabdiff-c2-20260501_053602/input_snapshot.json b/timecost/c2/tabdiff/tabdiff-c2-20260501_053602/input_snapshot.json new file mode 100644 index 0000000000000000000000000000000000000000..6d83542090e9720c485d72abe1bb75a800175917 --- /dev/null +++ b/timecost/c2/tabdiff/tabdiff-c2-20260501_053602/input_snapshot.json @@ -0,0 +1,36 @@ +{ + "dataset_id": "c2", + "model": "tabdiff", + "inputs": { + "train_csv": { + "path": "/data/jialinzhang/SynthesizePipeline-server/DatasetNew/c2/c2-train.csv", + "exists": true, + "size": 42948, + "sha256": "17bc560fa96bd00fb3b526e1e65bc91210b701d0d0a4e8bb9b4c5196cab56def" + }, + "val_csv": { + "path": "/data/jialinzhang/SynthesizePipeline-server/DatasetNew/c2/c2-val.csv", + "exists": true, + "size": 5349, + "sha256": "61e565eca62e65a7dccd9d51039a3170413379e10fc494e25870e7c4294863c9" + }, + "test_csv": { + "path": "/data/jialinzhang/SynthesizePipeline-server/DatasetNew/c2/c2-test.csv", + "exists": true, + "size": 5448, + "sha256": "cbcbb062a1faf5fa44b66c80532baa229e05b94fc42137269761e6c6d84af20a" + }, + "profile_json": { + "path": "/data/jialinzhang/SynthesizePipeline-server/DatasetNew/artifacts/data_core/tabular/c2/c2-dataset_profile.json", + "exists": true, + "size": 3240, + "sha256": "526b7163b2076c93c0bf4638438081ee8a6907065d5b608faa40d1a3dbc2a27b" + }, + "contract_json": { + "path": "/data/jialinzhang/SynthesizePipeline-server/DatasetNew/artifacts/data_core/tabular/c2/c2-dataset_contract_v1.json", + "exists": true, + "size": 3731, + "sha256": "fb595a876054c2ee9b4e10cfe83a5691588de1d25466cbb9d473c18ad3604009" + } + } +} \ No newline at end of file diff --git a/timecost/c2/tabdiff/tabdiff-c2-20260501_053602/models_tabdiff/trained.pt b/timecost/c2/tabdiff/tabdiff-c2-20260501_053602/models_tabdiff/trained.pt new file mode 100644 index 0000000000000000000000000000000000000000..bc319a55a9c7152a1137f968b6fa1c735125ad11 --- /dev/null +++ b/timecost/c2/tabdiff/tabdiff-c2-20260501_053602/models_tabdiff/trained.pt @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:306660b8aad4549267c68390b017e15ddb9bc06a02c80515eb72a97ae31a81eb +size 74 diff --git a/timecost/c2/tabdiff/tabdiff-c2-20260501_053602/public_gate/normalized_schema_snapshot.json b/timecost/c2/tabdiff/tabdiff-c2-20260501_053602/public_gate/normalized_schema_snapshot.json new file mode 100644 index 0000000000000000000000000000000000000000..689b1d00d96508e44ba40e58dc4560e19afc2b3b --- /dev/null +++ b/timecost/c2/tabdiff/tabdiff-c2-20260501_053602/public_gate/normalized_schema_snapshot.json @@ -0,0 +1,144 @@ +{ + "dataset_id": "c2", + "target_column": "class", + "task_type": "classification", + "columns": [ + { + "name": "buying", + "role": "feature", + "semantic_type": "categorical", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 4, + "unique_ratio": 0.002894, + "example_values": [ + "vhigh", + "med", + "high", + "low" + ] + } + }, + { + "name": "maint", + "role": "feature", + "semantic_type": "categorical", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 4, + "unique_ratio": 0.002894, + "example_values": [ + "vhigh", + "low", + "med", + "high" + ] + } + }, + { + "name": "doors", + "role": "feature", + "semantic_type": "categorical", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 4, + "unique_ratio": 0.002894, + "example_values": [ + "2", + "5more", + "3", + "4" + ] + } + }, + { + "name": "persons", + "role": "feature", + "semantic_type": "categorical", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 3, + "unique_ratio": 0.002171, + "example_values": [ + "2", + "4", + "more" + ] + } + }, + { + "name": "lug_boot", + "role": "feature", + "semantic_type": "categorical", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 3, + "unique_ratio": 0.002171, + "example_values": [ + "small", + "big", + "med" + ] + } + }, + { + "name": "safety", + "role": "feature", + "semantic_type": "categorical", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 3, + "unique_ratio": 0.002171, + "example_values": [ + "low", + "high", + "med" + ] + } + }, + { + "name": "class", + "role": "target", + "semantic_type": "categorical", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 4, + "unique_ratio": 0.002894, + "example_values": [ + "unacc", + "good", + "acc", + "vgood" + ] + } + } + ] +} \ No newline at end of file diff --git a/timecost/c2/tabdiff/tabdiff-c2-20260501_053602/public_gate/public_gate_report.json b/timecost/c2/tabdiff/tabdiff-c2-20260501_053602/public_gate/public_gate_report.json new file mode 100644 index 0000000000000000000000000000000000000000..2e4cdcb2a4e28e40d59b17a83e773f622b7636a5 --- /dev/null +++ b/timecost/c2/tabdiff/tabdiff-c2-20260501_053602/public_gate/public_gate_report.json @@ -0,0 +1,37 @@ +{ + "dataset_id": "c2", + "status": "pass", + "checks": [ + { + "check_id": "PG001_csv_parse_ok", + "status": "pass" + }, + { + "check_id": "PG002_split_header_consistent", + "status": "pass" + }, + { + "check_id": "PG003_profile_header_match", + "status": "pass" + }, + { + "check_id": "PG004_missing_token_normalized", + "status": "pass" + }, + { + "check_id": "PG005_semantic_type_validated", + "status": "pass" + }, + { + "check_id": "PG006_target_defined_and_valid", + "status": "pass" + } + ], + "target_column": "class", + "task_type": "classification", + "input_splits": { + "train": "/data/jialinzhang/SynthesizePipeline-server/DatasetNew/c2/c2-train.csv", + "val": "/data/jialinzhang/SynthesizePipeline-server/DatasetNew/c2/c2-val.csv", + "test": "/data/jialinzhang/SynthesizePipeline-server/DatasetNew/c2/c2-test.csv" + } +} \ No newline at end of file diff --git a/timecost/c2/tabdiff/tabdiff-c2-20260501_053602/public_gate/staged_input_manifest.json b/timecost/c2/tabdiff/tabdiff-c2-20260501_053602/public_gate/staged_input_manifest.json new file mode 100644 index 0000000000000000000000000000000000000000..20da241320b7b58bc53e5eb6d102cb90cc7218e1 --- /dev/null +++ b/timecost/c2/tabdiff/tabdiff-c2-20260501_053602/public_gate/staged_input_manifest.json @@ -0,0 +1,149 @@ +{ + "dataset_id": "c2", + "target_column": "class", + "task_type": "classification", + "train_csv": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/c2/tabdiff/tabdiff-c2-20260501_053602/staged/public/train.csv", + "val_csv": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/c2/tabdiff/tabdiff-c2-20260501_053602/staged/public/val.csv", + "test_csv": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/c2/tabdiff/tabdiff-c2-20260501_053602/staged/public/test.csv", + "features_json": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/c2/tabdiff/tabdiff-c2-20260501_053602/staged/public/staged_features.json", + "public_gate_report": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/c2/tabdiff/tabdiff-c2-20260501_053602/public_gate/public_gate_report.json", + "column_schema": [ + { + "name": "buying", + "role": "feature", + "semantic_type": "categorical", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 4, + "unique_ratio": 0.002894, + "example_values": [ + "vhigh", + "med", + "high", + "low" + ] + } + }, + { + "name": "maint", + "role": "feature", + "semantic_type": "categorical", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 4, + "unique_ratio": 0.002894, + "example_values": [ + "vhigh", + "low", + "med", + "high" + ] + } + }, + { + "name": "doors", + "role": "feature", + "semantic_type": "categorical", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 4, + "unique_ratio": 0.002894, + "example_values": [ + "2", + "5more", + "3", + "4" + ] + } + }, + { + "name": "persons", + "role": "feature", + "semantic_type": "categorical", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 3, + "unique_ratio": 0.002171, + "example_values": [ + "2", + "4", + "more" + ] + } + }, + { + "name": "lug_boot", + "role": "feature", + "semantic_type": "categorical", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 3, + "unique_ratio": 0.002171, + "example_values": [ + "small", + "big", + "med" + ] + } + }, + { + "name": "safety", + "role": "feature", + "semantic_type": "categorical", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 3, + "unique_ratio": 0.002171, + "example_values": [ + "low", + "high", + "med" + ] + } + }, + { + "name": "class", + "role": "target", + "semantic_type": "categorical", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 4, + "unique_ratio": 0.002894, + "example_values": [ + "unacc", + "good", + "acc", + "vgood" + ] + } + } + ] +} \ No newline at end of file diff --git a/timecost/c2/tabdiff/tabdiff-c2-20260501_053602/runtime_result.json b/timecost/c2/tabdiff/tabdiff-c2-20260501_053602/runtime_result.json new file mode 100644 index 0000000000000000000000000000000000000000..86fdaa982483a14c04db6cd45a4e84a4c04ed817 --- /dev/null +++ b/timecost/c2/tabdiff/tabdiff-c2-20260501_053602/runtime_result.json @@ -0,0 +1,27 @@ +{ + "dataset_id": "c2", + "model": "tabdiff", + "run_id": "tabdiff-c2-20260501_053602", + "public_gate_status": "pass", + "adapter_ready_status": "pass", + "train_status": "success", + "generate_status": "success", + "reason_code": null, + "reason_detail": null, + "artifacts": { + "synthetic_csv": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/c2/tabdiff/tabdiff-c2-20260501_053602/tabdiff-c2-1382-20260501_054253.csv", + "model_path": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/c2/tabdiff/tabdiff-c2-20260501_053602/models_tabdiff/trained.pt" + }, + "timings": { + "train": { + "started_at": "2026-05-01T05:36:02", + "ended_at": "2026-05-01T05:42:53", + "duration_sec": 411.134 + }, + "generate": { + "started_at": "2026-05-01T05:42:53", + "ended_at": "2026-05-01T05:43:02", + "duration_sec": 9.393 + } + } +} \ No newline at end of file diff --git a/timecost/c2/tabdiff/tabdiff-c2-20260501_053602/staged/public/staged_features.json b/timecost/c2/tabdiff/tabdiff-c2-20260501_053602/staged/public/staged_features.json new file mode 100644 index 0000000000000000000000000000000000000000..61783861dd5de501592f76acb0469cf3f3b2622a --- /dev/null +++ b/timecost/c2/tabdiff/tabdiff-c2-20260501_053602/staged/public/staged_features.json @@ -0,0 +1,37 @@ +[ + { + "feature_name": "buying", + "data_type": "categorical", + "is_target": false + }, + { + "feature_name": "maint", + "data_type": "categorical", + "is_target": false + }, + { + "feature_name": "doors", + "data_type": "categorical", + "is_target": false + }, + { + "feature_name": "persons", + "data_type": "categorical", + "is_target": false + }, + { + "feature_name": "lug_boot", + "data_type": "categorical", + "is_target": false + }, + { + "feature_name": "safety", + "data_type": "categorical", + "is_target": false + }, + { + "feature_name": "class", + "data_type": "categorical", + "is_target": true + } +] \ No newline at end of file diff --git a/timecost/c2/tabdiff/tabdiff-c2-20260501_053602/staged/public/test.csv b/timecost/c2/tabdiff/tabdiff-c2-20260501_053602/staged/public/test.csv new file mode 100644 index 0000000000000000000000000000000000000000..392a0d7189a34d8f13ecf20a99d64b03230d517c --- /dev/null +++ b/timecost/c2/tabdiff/tabdiff-c2-20260501_053602/staged/public/test.csv @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:b48114a7d0bc5bd9a07920f903c8d4aba8bf98bf2a66a050da03588b0245ca73 +size 5273 diff --git a/timecost/c2/tabdiff/tabdiff-c2-20260501_053602/staged/public/train.csv b/timecost/c2/tabdiff/tabdiff-c2-20260501_053602/staged/public/train.csv new file mode 100644 index 0000000000000000000000000000000000000000..da4f4d55134eebc0e51157d0d467536371db1484 --- /dev/null +++ b/timecost/c2/tabdiff/tabdiff-c2-20260501_053602/staged/public/train.csv @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:4aed00c2c2b3f88a55a7ebff31b2e1b5e0e32fb0a7267e0b9d2779cd23e434dd +size 41565 diff --git a/timecost/c2/tabdiff/tabdiff-c2-20260501_053602/staged/public/val.csv b/timecost/c2/tabdiff/tabdiff-c2-20260501_053602/staged/public/val.csv new file mode 100644 index 0000000000000000000000000000000000000000..af8caf7ee42524188534a3daf32996dc491952d9 --- /dev/null +++ b/timecost/c2/tabdiff/tabdiff-c2-20260501_053602/staged/public/val.csv @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:26e90c1170a57a14c05832ac88027722b1f3848f9662c7c09ef7c93dcba4cc01 +size 5176 diff --git a/timecost/c2/tabdiff/tabdiff-c2-20260501_053602/staged/tabdiff/adapter_report.json b/timecost/c2/tabdiff/tabdiff-c2-20260501_053602/staged/tabdiff/adapter_report.json new file mode 100644 index 0000000000000000000000000000000000000000..ebf25cfa73bc5165b00898833edb483d4395add1 --- /dev/null +++ b/timecost/c2/tabdiff/tabdiff-c2-20260501_053602/staged/tabdiff/adapter_report.json @@ -0,0 +1,7 @@ +{ + "adapter_ready_status": "pass", + "adapter_fail_reason_code": null, + "adapter_fail_detail": null, + "adapter_transforms_applied": [], + "model_input_manifest": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/c2/tabdiff/tabdiff-c2-20260501_053602/staged/tabdiff/model_input_manifest.json" +} \ No newline at end of file diff --git a/timecost/c2/tabdiff/tabdiff-c2-20260501_053602/staged/tabdiff/adapter_transforms_applied.json b/timecost/c2/tabdiff/tabdiff-c2-20260501_053602/staged/tabdiff/adapter_transforms_applied.json new file mode 100644 index 0000000000000000000000000000000000000000..0637a088a01e8ddab3bf3fa98dbe804cbde1a0dc --- /dev/null +++ b/timecost/c2/tabdiff/tabdiff-c2-20260501_053602/staged/tabdiff/adapter_transforms_applied.json @@ -0,0 +1 @@ +[] \ No newline at end of file diff --git a/timecost/c2/tabdiff/tabdiff-c2-20260501_053602/staged/tabdiff/model_input_manifest.json b/timecost/c2/tabdiff/tabdiff-c2-20260501_053602/staged/tabdiff/model_input_manifest.json new file mode 100644 index 0000000000000000000000000000000000000000..6e8444ed55ce353c6b12da55b3670012d2ade6d1 --- /dev/null +++ b/timecost/c2/tabdiff/tabdiff-c2-20260501_053602/staged/tabdiff/model_input_manifest.json @@ -0,0 +1,151 @@ +{ + "dataset_id": "c2", + "model": "tabdiff", + "target_column": "class", + "task_type": "classification", + "column_schema": [ + { + "name": "buying", + "role": "feature", + "semantic_type": "categorical", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 4, + "unique_ratio": 0.002894, + "example_values": [ + "vhigh", + "med", + "high", + "low" + ] + } + }, + { + "name": "maint", + "role": "feature", + "semantic_type": "categorical", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 4, + "unique_ratio": 0.002894, + "example_values": [ + "vhigh", + "low", + "med", + "high" + ] + } + }, + { + "name": "doors", + "role": "feature", + "semantic_type": "categorical", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 4, + "unique_ratio": 0.002894, + "example_values": [ + "2", + "5more", + "3", + "4" + ] + } + }, + { + "name": "persons", + "role": "feature", + "semantic_type": "categorical", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 3, + "unique_ratio": 0.002171, + "example_values": [ + "2", + "4", + "more" + ] + } + }, + { + "name": "lug_boot", + "role": "feature", + "semantic_type": "categorical", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 3, + "unique_ratio": 0.002171, + "example_values": [ + "small", + "big", + "med" + ] + } + }, + { + "name": "safety", + "role": "feature", + "semantic_type": "categorical", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 3, + "unique_ratio": 0.002171, + "example_values": [ + "low", + "high", + "med" + ] + } + }, + { + "name": "class", + "role": "target", + "semantic_type": "categorical", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 4, + "unique_ratio": 0.002894, + "example_values": [ + "unacc", + "good", + "acc", + "vgood" + ] + } + } + ], + "public_manifest": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/c2/tabdiff/tabdiff-c2-20260501_053602/public_gate/staged_input_manifest.json", + "train_csv": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/c2/tabdiff/tabdiff-c2-20260501_053602/staged/public/train.csv", + "val_csv": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/c2/tabdiff/tabdiff-c2-20260501_053602/staged/public/val.csv", + "test_csv": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/c2/tabdiff/tabdiff-c2-20260501_053602/staged/public/test.csv", + "features_json": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/c2/tabdiff/tabdiff-c2-20260501_053602/staged/public/staged_features.json", + "public_gate_report": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/c2/tabdiff/tabdiff-c2-20260501_053602/public_gate/public_gate_report.json" +} \ No newline at end of file diff --git a/timecost/c2/tabdiff/tabdiff-c2-20260501_053602/tabdiff-c2-1382-20260501_054253.csv b/timecost/c2/tabdiff/tabdiff-c2-20260501_053602/tabdiff-c2-1382-20260501_054253.csv new file mode 100644 index 0000000000000000000000000000000000000000..a2493f1665aa8b13ef982441972f9b14b1a95e8e --- /dev/null +++ b/timecost/c2/tabdiff/tabdiff-c2-20260501_053602/tabdiff-c2-1382-20260501_054253.csv @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:914638c490c2fa5d234f37276b5c51d1a6b3cf429ac73bab0741cc357075b03e +size 19397 diff --git a/timecost/c2/tabdiff/tabdiff-c2-20260501_053602/tabdiff_train_meta.json b/timecost/c2/tabdiff/tabdiff-c2-20260501_053602/tabdiff_train_meta.json new file mode 100644 index 0000000000000000000000000000000000000000..b93e041579ad7b1a984971416e1bb8b567d71270 --- /dev/null +++ b/timecost/c2/tabdiff/tabdiff-c2-20260501_053602/tabdiff_train_meta.json @@ -0,0 +1,5 @@ +{ + "exp_name": "adapter_learnable", + "dataname": "pipeline_c2", + "steps": 500 +} \ No newline at end of file diff --git a/timecost/c2/tabdiff/tabdiff-c2-20260501_053602/tabular_bundle/pipeline_c2/X_cat_test.npy b/timecost/c2/tabdiff/tabdiff-c2-20260501_053602/tabular_bundle/pipeline_c2/X_cat_test.npy new file mode 100644 index 0000000000000000000000000000000000000000..e99f1ae8dc9e7155e5c4bbbd3c2f3f7215c628f7 --- /dev/null +++ b/timecost/c2/tabdiff/tabdiff-c2-20260501_053602/tabular_bundle/pipeline_c2/X_cat_test.npy @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:24d2203601ba060728920e754747e5a1dc3955a1b5775e147382fee4f1812542 +size 66464 diff --git a/timecost/c2/tabdiff/tabdiff-c2-20260501_053602/tabular_bundle/pipeline_c2/X_cat_train.npy b/timecost/c2/tabdiff/tabdiff-c2-20260501_053602/tabular_bundle/pipeline_c2/X_cat_train.npy new file mode 100644 index 0000000000000000000000000000000000000000..e99f1ae8dc9e7155e5c4bbbd3c2f3f7215c628f7 --- /dev/null +++ b/timecost/c2/tabdiff/tabdiff-c2-20260501_053602/tabular_bundle/pipeline_c2/X_cat_train.npy @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:24d2203601ba060728920e754747e5a1dc3955a1b5775e147382fee4f1812542 +size 66464 diff --git a/timecost/c2/tabdiff/tabdiff-c2-20260501_053602/tabular_bundle/pipeline_c2/X_cat_val.npy b/timecost/c2/tabdiff/tabdiff-c2-20260501_053602/tabular_bundle/pipeline_c2/X_cat_val.npy new file mode 100644 index 0000000000000000000000000000000000000000..e99f1ae8dc9e7155e5c4bbbd3c2f3f7215c628f7 --- /dev/null +++ b/timecost/c2/tabdiff/tabdiff-c2-20260501_053602/tabular_bundle/pipeline_c2/X_cat_val.npy @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:24d2203601ba060728920e754747e5a1dc3955a1b5775e147382fee4f1812542 +size 66464 diff --git a/timecost/c2/tabdiff/tabdiff-c2-20260501_053602/tabular_bundle/pipeline_c2/X_num_test.npy b/timecost/c2/tabdiff/tabdiff-c2-20260501_053602/tabular_bundle/pipeline_c2/X_num_test.npy new file mode 100644 index 0000000000000000000000000000000000000000..9370f90332827a72be71bf3347770cac2c0354f5 --- /dev/null +++ b/timecost/c2/tabdiff/tabdiff-c2-20260501_053602/tabular_bundle/pipeline_c2/X_num_test.npy @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:79dbdf62b6c69f71f3fef2bfcff35e322b2ac9387fc545116c7bc0078b3de9ec +size 128 diff --git a/timecost/c2/tabdiff/tabdiff-c2-20260501_053602/tabular_bundle/pipeline_c2/X_num_train.npy b/timecost/c2/tabdiff/tabdiff-c2-20260501_053602/tabular_bundle/pipeline_c2/X_num_train.npy new file mode 100644 index 0000000000000000000000000000000000000000..9370f90332827a72be71bf3347770cac2c0354f5 --- /dev/null +++ b/timecost/c2/tabdiff/tabdiff-c2-20260501_053602/tabular_bundle/pipeline_c2/X_num_train.npy @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:79dbdf62b6c69f71f3fef2bfcff35e322b2ac9387fc545116c7bc0078b3de9ec +size 128 diff --git a/timecost/c2/tabdiff/tabdiff-c2-20260501_053602/tabular_bundle/pipeline_c2/X_num_val.npy b/timecost/c2/tabdiff/tabdiff-c2-20260501_053602/tabular_bundle/pipeline_c2/X_num_val.npy new file mode 100644 index 0000000000000000000000000000000000000000..9370f90332827a72be71bf3347770cac2c0354f5 --- /dev/null +++ b/timecost/c2/tabdiff/tabdiff-c2-20260501_053602/tabular_bundle/pipeline_c2/X_num_val.npy @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:79dbdf62b6c69f71f3fef2bfcff35e322b2ac9387fc545116c7bc0078b3de9ec +size 128 diff --git a/timecost/c2/tabdiff/tabdiff-c2-20260501_053602/tabular_bundle/pipeline_c2/info.json b/timecost/c2/tabdiff/tabdiff-c2-20260501_053602/tabular_bundle/pipeline_c2/info.json new file mode 100644 index 0000000000000000000000000000000000000000..bf064b213901b4f614a949e23e2e89a63aac1488 --- /dev/null +++ b/timecost/c2/tabdiff/tabdiff-c2-20260501_053602/tabular_bundle/pipeline_c2/info.json @@ -0,0 +1,88 @@ +{ + "name": "pipeline_c2", + "task_type": "multiclass", + "n_num_features": 0, + "n_cat_features": 6, + "train_size": 1382, + "test_num": 1382, + "val_num": 1382, + "train_num": 1382, + "bundle_note": "val/test matrices are train copies (train-only policy; no real held-out rows).", + "num_col_idx": [], + "cat_col_idx": [ + 0, + 1, + 2, + 3, + 4, + 5 + ], + "target_col_idx": [ + 6 + ], + "column_names": [ + "buying", + "maint", + "doors", + "persons", + "lug_boot", + "safety", + "class" + ], + "int_col_idx": [], + "int_columns": [], + "int_col_idx_wrt_num": [], + "metadata": { + "columns": { + "0": { + "sdtype": "categorical" + }, + "1": { + "sdtype": "categorical" + }, + "2": { + "sdtype": "categorical" + }, + "3": { + "sdtype": "categorical" + }, + "4": { + "sdtype": "categorical" + }, + "5": { + "sdtype": "categorical" + }, + "6": { + "sdtype": "categorical" + } + } + }, + "idx_mapping": { + "0": 0, + "1": 1, + "2": 2, + "3": 3, + "4": 4, + "5": 5, + "6": 6 + }, + "inverse_idx_mapping": { + "0": 0, + "1": 1, + "2": 2, + "3": 3, + "4": 4, + "5": 5, + "6": 6 + }, + "idx_name_mapping": { + "0": "buying", + "1": "maint", + "2": "doors", + "3": "persons", + "4": "lug_boot", + "5": "safety", + "6": "class" + }, + "n_classes": 4 +} \ No newline at end of file diff --git a/timecost/c2/tabdiff/tabdiff-c2-20260501_053602/tabular_bundle/pipeline_c2/real.csv b/timecost/c2/tabdiff/tabdiff-c2-20260501_053602/tabular_bundle/pipeline_c2/real.csv new file mode 100644 index 0000000000000000000000000000000000000000..f778fcd2758e712a195229c6f50504f94f046c8d --- /dev/null +++ b/timecost/c2/tabdiff/tabdiff-c2-20260501_053602/tabular_bundle/pipeline_c2/real.csv @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:a54d8aab34745836c4d0260009787c8064c2c3e9d99040c5a6856190eb0745e9 +size 24215 diff --git a/timecost/c2/tabdiff/tabdiff-c2-20260501_053602/tabular_bundle/pipeline_c2/test.csv b/timecost/c2/tabdiff/tabdiff-c2-20260501_053602/tabular_bundle/pipeline_c2/test.csv new file mode 100644 index 0000000000000000000000000000000000000000..f778fcd2758e712a195229c6f50504f94f046c8d --- /dev/null +++ b/timecost/c2/tabdiff/tabdiff-c2-20260501_053602/tabular_bundle/pipeline_c2/test.csv @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:a54d8aab34745836c4d0260009787c8064c2c3e9d99040c5a6856190eb0745e9 +size 24215 diff --git a/timecost/c2/tabdiff/tabdiff-c2-20260501_053602/tabular_bundle/pipeline_c2/val.csv b/timecost/c2/tabdiff/tabdiff-c2-20260501_053602/tabular_bundle/pipeline_c2/val.csv new file mode 100644 index 0000000000000000000000000000000000000000..f778fcd2758e712a195229c6f50504f94f046c8d --- /dev/null +++ b/timecost/c2/tabdiff/tabdiff-c2-20260501_053602/tabular_bundle/pipeline_c2/val.csv @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:a54d8aab34745836c4d0260009787c8064c2c3e9d99040c5a6856190eb0745e9 +size 24215 diff --git a/timecost/c2/tabdiff/tabdiff-c2-20260501_053602/tabular_bundle/pipeline_c2/y_test.npy b/timecost/c2/tabdiff/tabdiff-c2-20260501_053602/tabular_bundle/pipeline_c2/y_test.npy new file mode 100644 index 0000000000000000000000000000000000000000..8bfc8f9de7350657cd6411c55d2b9b87bea9c13a --- /dev/null +++ b/timecost/c2/tabdiff/tabdiff-c2-20260501_053602/tabular_bundle/pipeline_c2/y_test.npy @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:3f8eb0b25043331a30fde5439f063eed59e7a76f45d7d102b9b4fbcd16b551b4 +size 11184 diff --git a/timecost/c2/tabdiff/tabdiff-c2-20260501_053602/tabular_bundle/pipeline_c2/y_train.npy b/timecost/c2/tabdiff/tabdiff-c2-20260501_053602/tabular_bundle/pipeline_c2/y_train.npy new file mode 100644 index 0000000000000000000000000000000000000000..8bfc8f9de7350657cd6411c55d2b9b87bea9c13a --- /dev/null +++ b/timecost/c2/tabdiff/tabdiff-c2-20260501_053602/tabular_bundle/pipeline_c2/y_train.npy @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:3f8eb0b25043331a30fde5439f063eed59e7a76f45d7d102b9b4fbcd16b551b4 +size 11184 diff --git a/timecost/c2/tabdiff/tabdiff-c2-20260501_053602/tabular_bundle/pipeline_c2/y_val.npy b/timecost/c2/tabdiff/tabdiff-c2-20260501_053602/tabular_bundle/pipeline_c2/y_val.npy new file mode 100644 index 0000000000000000000000000000000000000000..8bfc8f9de7350657cd6411c55d2b9b87bea9c13a --- /dev/null +++ b/timecost/c2/tabdiff/tabdiff-c2-20260501_053602/tabular_bundle/pipeline_c2/y_val.npy @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:3f8eb0b25043331a30fde5439f063eed59e7a76f45d7d102b9b4fbcd16b551b4 +size 11184 diff --git a/timecost/c2/tabdiff/tabdiff-c2-20260501_053602/train_20260501_053602.log b/timecost/c2/tabdiff/tabdiff-c2-20260501_053602/train_20260501_053602.log new file mode 100644 index 0000000000000000000000000000000000000000..6de7164078944facc6e0eb3de930d92356d8d9f9 --- /dev/null +++ b/timecost/c2/tabdiff/tabdiff-c2-20260501_053602/train_20260501_053602.log @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:c984eb61e2f9cdc4c93c5c141f20a2c4bc968b83806b61b00faa48a7107b0ec7 +size 287391 diff --git a/timecost/c2/tabpfgen/tabpfgen-c2-20260501_054310/_tabpfgen_generate.py b/timecost/c2/tabpfgen/tabpfgen-c2-20260501_054310/_tabpfgen_generate.py new file mode 100644 index 0000000000000000000000000000000000000000..2e5bce57f95edf1af58f5e2feb9331fdadf5fe8e --- /dev/null +++ b/timecost/c2/tabpfgen/tabpfgen-c2-20260501_054310/_tabpfgen_generate.py @@ -0,0 +1,100 @@ +import os +import numpy as np +import pandas as pd +import json +from tabpfgen import TabPFGen + +df = pd.read_csv("/work/output-Benchmark-trainonly-v1/c2/tabpfgen/tabpfgen-c2-20260501_054310/staged/public/train.csv") +target_col = "class" + +target_missing = df[target_col].isna() +if target_missing.any(): + dropped = int(target_missing.sum()) + df = df.loc[~target_missing].copy() + print( + f"[TabPFGen] Dropped {dropped} rows with missing target '{target_col}'" + ) +if df.empty: + raise ValueError( + f"[TabPFGen] No rows remain after dropping missing target '{target_col}'" + ) + +feature_cols = [c for c in df.columns if c != target_col] + +cat_encodings = {} +for col in feature_cols: + if df[col].dtype == object or str(df[col].dtype) == 'category': + cats = sorted(df[col].dropna().unique().tolist(), key=str) + cat_map = {v: i for i, v in enumerate(cats)} + df[col] = df[col].map(cat_map).astype(float) + cat_encodings[col] = cats + print(f"[TabPFGen] Label-encoded '{col}' ({len(cats)} categories)") + +target_cats = None +if df[target_col].dtype == object or str(df[target_col].dtype) == 'category': + cats = sorted(df[target_col].dropna().unique().tolist(), key=str) + t_map = {v: i for i, v in enumerate(cats)} + df[target_col] = df[target_col].map(t_map).astype(float) + target_cats = cats + print(f"[TabPFGen] Label-encoded target '{target_col}' ({len(cats)} categories)") + +X = df[feature_cols].values.astype(np.float32) +y = df[target_col].values +target_n = int(1382) + +for i in range(X.shape[1]): + col_vals = X[:, i] + mask = np.isnan(col_vals) + if mask.any(): + mean_val = np.nanmean(col_vals) + X[mask, i] = mean_val if not np.isnan(mean_val) else 0.0 + +# TabPFGen v0.1.x API:仅支持 n_sgld_steps / sgld_* / device。 +# (旧版脚本中的 energy_*_chunk 与上游 TabPFGen 不一致,会导致 TypeError。) +gen = TabPFGen( + n_sgld_steps=1000, + sgld_step_size=0.01, + sgld_noise_scale=0.01, + device="auto", +) + +print(f"[TabPFGen] Generating {target_n} rows via generate_classification") +X_syn, y_syn = gen.generate_classification(X, y, n_samples=target_n) + +syn_df = pd.DataFrame(X_syn, columns=feature_cols) +syn_df[target_col] = y_syn + +for col, cats in cat_encodings.items(): + codes = np.round(syn_df[col].values).astype(int) + codes = np.clip(codes, 0, len(cats) - 1) + syn_df[col] = [cats[c] for c in codes] + +if target_cats is not None: + codes = np.round(syn_df[target_col].values).astype(int) + codes = np.clip(codes, 0, len(target_cats) - 1) + syn_df[target_col] = [target_cats[c] for c in codes] + +if len(syn_df) > target_n: + print(f"[TabPFGen] Trimming rows: {len(syn_df)} -> {target_n}") + syn_df = syn_df.iloc[:target_n].copy() +elif len(syn_df) < target_n: + deficit = target_n - len(syn_df) + print(f"[TabPFGen] Padding rows: {len(syn_df)} -> {target_n} (deficit={deficit})") + if len(syn_df) > 0: + extra = syn_df.sample(n=deficit, replace=True, random_state=42) + syn_df = pd.concat( + [syn_df.reset_index(drop=True), extra.reset_index(drop=True)], + ignore_index=True, + ) + else: + syn_df = df[feature_cols + [target_col]].sample( + n=target_n, replace=True, random_state=42 + ).reset_index(drop=True) + +syn_df = syn_df[list(df.columns)] +if len(syn_df) != target_n: + raise RuntimeError( + f"[TabPFGen] Row alignment failed: got {len(syn_df)}, expected {target_n}" + ) +syn_df.to_csv("/work/output-Benchmark-trainonly-v1/c2/tabpfgen/tabpfgen-c2-20260501_054310/tabpfgen-c2-1382-20260501_054310.csv", index=False) +print(f"[TabPFGen] Saved {len(syn_df)} rows -> /work/output-Benchmark-trainonly-v1/c2/tabpfgen/tabpfgen-c2-20260501_054310/tabpfgen-c2-1382-20260501_054310.csv") diff --git a/timecost/c2/tabpfgen/tabpfgen-c2-20260501_054310/gen_20260501_054310.log b/timecost/c2/tabpfgen/tabpfgen-c2-20260501_054310/gen_20260501_054310.log new file mode 100644 index 0000000000000000000000000000000000000000..5e8eaa6e31f04719374111dcb97f6380827d61c4 --- /dev/null +++ b/timecost/c2/tabpfgen/tabpfgen-c2-20260501_054310/gen_20260501_054310.log @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:df9c8e7725f68e68c48bbd793583da34cdc8df62d4753f48f5d794b3c2fe2a6e +size 1299 diff --git a/timecost/c2/tabpfgen/tabpfgen-c2-20260501_054310/input_snapshot.json b/timecost/c2/tabpfgen/tabpfgen-c2-20260501_054310/input_snapshot.json new file mode 100644 index 0000000000000000000000000000000000000000..0dfc898784526759fbfe4fcdd1aa60dc4d52829f --- /dev/null +++ b/timecost/c2/tabpfgen/tabpfgen-c2-20260501_054310/input_snapshot.json @@ -0,0 +1,36 @@ +{ + "dataset_id": "c2", + "model": "tabpfgen", + "inputs": { + "train_csv": { + "path": "/data/jialinzhang/SynthesizePipeline-server/DatasetNew/c2/c2-train.csv", + "exists": true, + "size": 42948, + "sha256": "17bc560fa96bd00fb3b526e1e65bc91210b701d0d0a4e8bb9b4c5196cab56def" + }, + "val_csv": { + "path": "/data/jialinzhang/SynthesizePipeline-server/DatasetNew/c2/c2-val.csv", + "exists": true, + "size": 5349, + "sha256": "61e565eca62e65a7dccd9d51039a3170413379e10fc494e25870e7c4294863c9" + }, + "test_csv": { + "path": "/data/jialinzhang/SynthesizePipeline-server/DatasetNew/c2/c2-test.csv", + "exists": true, + "size": 5448, + "sha256": "cbcbb062a1faf5fa44b66c80532baa229e05b94fc42137269761e6c6d84af20a" + }, + "profile_json": { + "path": "/data/jialinzhang/SynthesizePipeline-server/DatasetNew/artifacts/data_core/tabular/c2/c2-dataset_profile.json", + "exists": true, + "size": 3240, + "sha256": "526b7163b2076c93c0bf4638438081ee8a6907065d5b608faa40d1a3dbc2a27b" + }, + "contract_json": { + "path": "/data/jialinzhang/SynthesizePipeline-server/DatasetNew/artifacts/data_core/tabular/c2/c2-dataset_contract_v1.json", + "exists": true, + "size": 3731, + "sha256": "fb595a876054c2ee9b4e10cfe83a5691588de1d25466cbb9d473c18ad3604009" + } + } +} \ No newline at end of file diff --git a/timecost/c2/tabpfgen/tabpfgen-c2-20260501_054310/public_gate/normalized_schema_snapshot.json b/timecost/c2/tabpfgen/tabpfgen-c2-20260501_054310/public_gate/normalized_schema_snapshot.json new file mode 100644 index 0000000000000000000000000000000000000000..689b1d00d96508e44ba40e58dc4560e19afc2b3b --- /dev/null +++ b/timecost/c2/tabpfgen/tabpfgen-c2-20260501_054310/public_gate/normalized_schema_snapshot.json @@ -0,0 +1,144 @@ +{ + "dataset_id": "c2", + "target_column": "class", + "task_type": "classification", + "columns": [ + { + "name": "buying", + "role": "feature", + "semantic_type": "categorical", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 4, + "unique_ratio": 0.002894, + "example_values": [ + "vhigh", + "med", + "high", + "low" + ] + } + }, + { + "name": "maint", + "role": "feature", + "semantic_type": "categorical", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 4, + "unique_ratio": 0.002894, + "example_values": [ + "vhigh", + "low", + "med", + "high" + ] + } + }, + { + "name": "doors", + "role": "feature", + "semantic_type": "categorical", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 4, + "unique_ratio": 0.002894, + "example_values": [ + "2", + "5more", + "3", + "4" + ] + } + }, + { + "name": "persons", + "role": "feature", + "semantic_type": "categorical", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 3, + "unique_ratio": 0.002171, + "example_values": [ + "2", + "4", + "more" + ] + } + }, + { + "name": "lug_boot", + "role": "feature", + "semantic_type": "categorical", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 3, + "unique_ratio": 0.002171, + "example_values": [ + "small", + "big", + "med" + ] + } + }, + { + "name": "safety", + "role": "feature", + "semantic_type": "categorical", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 3, + "unique_ratio": 0.002171, + "example_values": [ + "low", + "high", + "med" + ] + } + }, + { + "name": "class", + "role": "target", + "semantic_type": "categorical", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 4, + "unique_ratio": 0.002894, + "example_values": [ + "unacc", + "good", + "acc", + "vgood" + ] + } + } + ] +} \ No newline at end of file diff --git a/timecost/c2/tabpfgen/tabpfgen-c2-20260501_054310/public_gate/public_gate_report.json b/timecost/c2/tabpfgen/tabpfgen-c2-20260501_054310/public_gate/public_gate_report.json new file mode 100644 index 0000000000000000000000000000000000000000..2e4cdcb2a4e28e40d59b17a83e773f622b7636a5 --- /dev/null +++ b/timecost/c2/tabpfgen/tabpfgen-c2-20260501_054310/public_gate/public_gate_report.json @@ -0,0 +1,37 @@ +{ + "dataset_id": "c2", + "status": "pass", + "checks": [ + { + "check_id": "PG001_csv_parse_ok", + "status": "pass" + }, + { + "check_id": "PG002_split_header_consistent", + "status": "pass" + }, + { + "check_id": "PG003_profile_header_match", + "status": "pass" + }, + { + "check_id": "PG004_missing_token_normalized", + "status": "pass" + }, + { + "check_id": "PG005_semantic_type_validated", + "status": "pass" + }, + { + "check_id": "PG006_target_defined_and_valid", + "status": "pass" + } + ], + "target_column": "class", + "task_type": "classification", + "input_splits": { + "train": "/data/jialinzhang/SynthesizePipeline-server/DatasetNew/c2/c2-train.csv", + "val": "/data/jialinzhang/SynthesizePipeline-server/DatasetNew/c2/c2-val.csv", + "test": "/data/jialinzhang/SynthesizePipeline-server/DatasetNew/c2/c2-test.csv" + } +} \ No newline at end of file diff --git a/timecost/c2/tabpfgen/tabpfgen-c2-20260501_054310/public_gate/staged_input_manifest.json b/timecost/c2/tabpfgen/tabpfgen-c2-20260501_054310/public_gate/staged_input_manifest.json new file mode 100644 index 0000000000000000000000000000000000000000..c4d6168e58727023f6112fb5b0d6336fc318482f --- /dev/null +++ b/timecost/c2/tabpfgen/tabpfgen-c2-20260501_054310/public_gate/staged_input_manifest.json @@ -0,0 +1,149 @@ +{ + "dataset_id": "c2", + "target_column": "class", + "task_type": "classification", + "train_csv": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/c2/tabpfgen/tabpfgen-c2-20260501_054310/staged/public/train.csv", + "val_csv": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/c2/tabpfgen/tabpfgen-c2-20260501_054310/staged/public/val.csv", + "test_csv": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/c2/tabpfgen/tabpfgen-c2-20260501_054310/staged/public/test.csv", + "features_json": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/c2/tabpfgen/tabpfgen-c2-20260501_054310/staged/public/staged_features.json", + "public_gate_report": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/c2/tabpfgen/tabpfgen-c2-20260501_054310/public_gate/public_gate_report.json", + "column_schema": [ + { + "name": "buying", + "role": "feature", + "semantic_type": "categorical", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 4, + "unique_ratio": 0.002894, + "example_values": [ + "vhigh", + "med", + "high", + "low" + ] + } + }, + { + "name": "maint", + "role": "feature", + "semantic_type": "categorical", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 4, + "unique_ratio": 0.002894, + "example_values": [ + "vhigh", + "low", + "med", + "high" + ] + } + }, + { + "name": "doors", + "role": "feature", + "semantic_type": "categorical", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 4, + "unique_ratio": 0.002894, + "example_values": [ + "2", + "5more", + "3", + "4" + ] + } + }, + { + "name": "persons", + "role": "feature", + "semantic_type": "categorical", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 3, + "unique_ratio": 0.002171, + "example_values": [ + "2", + "4", + "more" + ] + } + }, + { + "name": "lug_boot", + "role": "feature", + "semantic_type": "categorical", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 3, + "unique_ratio": 0.002171, + "example_values": [ + "small", + "big", + "med" + ] + } + }, + { + "name": "safety", + "role": "feature", + "semantic_type": "categorical", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 3, + "unique_ratio": 0.002171, + "example_values": [ + "low", + "high", + "med" + ] + } + }, + { + "name": "class", + "role": "target", + "semantic_type": "categorical", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 4, + "unique_ratio": 0.002894, + "example_values": [ + "unacc", + "good", + "acc", + "vgood" + ] + } + } + ] +} \ No newline at end of file diff --git a/timecost/c2/tabpfgen/tabpfgen-c2-20260501_054310/runtime_result.json b/timecost/c2/tabpfgen/tabpfgen-c2-20260501_054310/runtime_result.json new file mode 100644 index 0000000000000000000000000000000000000000..9a3ac6e349670b0b59ae9932669950ef901f6dab --- /dev/null +++ b/timecost/c2/tabpfgen/tabpfgen-c2-20260501_054310/runtime_result.json @@ -0,0 +1,27 @@ +{ + "dataset_id": "c2", + "model": "tabpfgen", + "run_id": "tabpfgen-c2-20260501_054310", + "public_gate_status": "pass", + "adapter_ready_status": "pass", + "train_status": "success", + "generate_status": "success", + "reason_code": null, + "reason_detail": null, + "artifacts": { + "synthetic_csv": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/c2/tabpfgen/tabpfgen-c2-20260501_054310/tabpfgen-c2-1382-20260501_054310.csv", + "model_path": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/c2/tabpfgen/tabpfgen-c2-20260501_054310" + }, + "timings": { + "train": { + "started_at": "2026-05-01T05:43:10", + "ended_at": "2026-05-01T05:43:10", + "duration_sec": 0.005 + }, + "generate": { + "started_at": "2026-05-01T05:43:10", + "ended_at": "2026-05-01T05:43:30", + "duration_sec": 19.972 + } + } +} \ No newline at end of file diff --git a/timecost/c2/tabpfgen/tabpfgen-c2-20260501_054310/staged/public/staged_features.json b/timecost/c2/tabpfgen/tabpfgen-c2-20260501_054310/staged/public/staged_features.json new file mode 100644 index 0000000000000000000000000000000000000000..61783861dd5de501592f76acb0469cf3f3b2622a --- /dev/null +++ b/timecost/c2/tabpfgen/tabpfgen-c2-20260501_054310/staged/public/staged_features.json @@ -0,0 +1,37 @@ +[ + { + "feature_name": "buying", + "data_type": "categorical", + "is_target": false + }, + { + "feature_name": "maint", + "data_type": "categorical", + "is_target": false + }, + { + "feature_name": "doors", + "data_type": "categorical", + "is_target": false + }, + { + "feature_name": "persons", + "data_type": "categorical", + "is_target": false + }, + { + "feature_name": "lug_boot", + "data_type": "categorical", + "is_target": false + }, + { + "feature_name": "safety", + "data_type": "categorical", + "is_target": false + }, + { + "feature_name": "class", + "data_type": "categorical", + "is_target": true + } +] \ No newline at end of file diff --git a/timecost/c2/tabpfgen/tabpfgen-c2-20260501_054310/staged/public/test.csv b/timecost/c2/tabpfgen/tabpfgen-c2-20260501_054310/staged/public/test.csv new file mode 100644 index 0000000000000000000000000000000000000000..392a0d7189a34d8f13ecf20a99d64b03230d517c --- /dev/null +++ b/timecost/c2/tabpfgen/tabpfgen-c2-20260501_054310/staged/public/test.csv @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:b48114a7d0bc5bd9a07920f903c8d4aba8bf98bf2a66a050da03588b0245ca73 +size 5273 diff --git a/timecost/c2/tabpfgen/tabpfgen-c2-20260501_054310/staged/public/train.csv b/timecost/c2/tabpfgen/tabpfgen-c2-20260501_054310/staged/public/train.csv new file mode 100644 index 0000000000000000000000000000000000000000..da4f4d55134eebc0e51157d0d467536371db1484 --- /dev/null +++ b/timecost/c2/tabpfgen/tabpfgen-c2-20260501_054310/staged/public/train.csv @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:4aed00c2c2b3f88a55a7ebff31b2e1b5e0e32fb0a7267e0b9d2779cd23e434dd +size 41565 diff --git a/timecost/c2/tabpfgen/tabpfgen-c2-20260501_054310/staged/public/val.csv b/timecost/c2/tabpfgen/tabpfgen-c2-20260501_054310/staged/public/val.csv new file mode 100644 index 0000000000000000000000000000000000000000..af8caf7ee42524188534a3daf32996dc491952d9 --- /dev/null +++ b/timecost/c2/tabpfgen/tabpfgen-c2-20260501_054310/staged/public/val.csv @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:26e90c1170a57a14c05832ac88027722b1f3848f9662c7c09ef7c93dcba4cc01 +size 5176 diff --git a/timecost/c2/tabpfgen/tabpfgen-c2-20260501_054310/staged/tabpfgen/adapter_report.json b/timecost/c2/tabpfgen/tabpfgen-c2-20260501_054310/staged/tabpfgen/adapter_report.json new file mode 100644 index 0000000000000000000000000000000000000000..3586c931712b08ab687b4f24e81e0c90c8b61da1 --- /dev/null +++ b/timecost/c2/tabpfgen/tabpfgen-c2-20260501_054310/staged/tabpfgen/adapter_report.json @@ -0,0 +1,7 @@ +{ + "adapter_ready_status": "pass", + "adapter_fail_reason_code": null, + "adapter_fail_detail": null, + "adapter_transforms_applied": [], + "model_input_manifest": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/c2/tabpfgen/tabpfgen-c2-20260501_054310/staged/tabpfgen/model_input_manifest.json" +} \ No newline at end of file diff --git a/timecost/c2/tabpfgen/tabpfgen-c2-20260501_054310/staged/tabpfgen/adapter_transforms_applied.json b/timecost/c2/tabpfgen/tabpfgen-c2-20260501_054310/staged/tabpfgen/adapter_transforms_applied.json new file mode 100644 index 0000000000000000000000000000000000000000..0637a088a01e8ddab3bf3fa98dbe804cbde1a0dc --- /dev/null +++ b/timecost/c2/tabpfgen/tabpfgen-c2-20260501_054310/staged/tabpfgen/adapter_transforms_applied.json @@ -0,0 +1 @@ +[] \ No newline at end of file diff --git a/timecost/c2/tabpfgen/tabpfgen-c2-20260501_054310/staged/tabpfgen/model_input_manifest.json b/timecost/c2/tabpfgen/tabpfgen-c2-20260501_054310/staged/tabpfgen/model_input_manifest.json new file mode 100644 index 0000000000000000000000000000000000000000..37e58f9691a32aa088daf57022cb90fb57f416b8 --- /dev/null +++ b/timecost/c2/tabpfgen/tabpfgen-c2-20260501_054310/staged/tabpfgen/model_input_manifest.json @@ -0,0 +1,151 @@ +{ + "dataset_id": "c2", + "model": "tabpfgen", + "target_column": "class", + "task_type": "classification", + "column_schema": [ + { + "name": "buying", + "role": "feature", + "semantic_type": "categorical", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 4, + "unique_ratio": 0.002894, + "example_values": [ + "vhigh", + "med", + "high", + "low" + ] + } + }, + { + "name": "maint", + "role": "feature", + "semantic_type": "categorical", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 4, + "unique_ratio": 0.002894, + "example_values": [ + "vhigh", + "low", + "med", + "high" + ] + } + }, + { + "name": "doors", + "role": "feature", + "semantic_type": "categorical", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 4, + "unique_ratio": 0.002894, + "example_values": [ + "2", + "5more", + "3", + "4" + ] + } + }, + { + "name": "persons", + "role": "feature", + "semantic_type": "categorical", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 3, + "unique_ratio": 0.002171, + "example_values": [ + "2", + "4", + "more" + ] + } + }, + { + "name": "lug_boot", + "role": "feature", + "semantic_type": "categorical", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 3, + "unique_ratio": 0.002171, + "example_values": [ + "small", + "big", + "med" + ] + } + }, + { + "name": "safety", + "role": "feature", + "semantic_type": "categorical", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 3, + "unique_ratio": 0.002171, + "example_values": [ + "low", + "high", + "med" + ] + } + }, + { + "name": "class", + "role": "target", + "semantic_type": "categorical", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 4, + "unique_ratio": 0.002894, + "example_values": [ + "unacc", + "good", + "acc", + "vgood" + ] + } + } + ], + "public_manifest": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/c2/tabpfgen/tabpfgen-c2-20260501_054310/public_gate/staged_input_manifest.json", + "train_csv": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/c2/tabpfgen/tabpfgen-c2-20260501_054310/staged/public/train.csv", + "val_csv": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/c2/tabpfgen/tabpfgen-c2-20260501_054310/staged/public/val.csv", + "test_csv": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/c2/tabpfgen/tabpfgen-c2-20260501_054310/staged/public/test.csv", + "features_json": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/c2/tabpfgen/tabpfgen-c2-20260501_054310/staged/public/staged_features.json", + "public_gate_report": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/c2/tabpfgen/tabpfgen-c2-20260501_054310/public_gate/public_gate_report.json" +} \ No newline at end of file diff --git a/timecost/c2/tabpfgen/tabpfgen-c2-20260501_054310/tabpfgen-c2-1382-20260501_054310.csv b/timecost/c2/tabpfgen/tabpfgen-c2-20260501_054310/tabpfgen-c2-1382-20260501_054310.csv new file mode 100644 index 0000000000000000000000000000000000000000..7deaca4f7a6caf6fad2c45c7da3bb3d51f33f543 --- /dev/null +++ b/timecost/c2/tabpfgen/tabpfgen-c2-20260501_054310/tabpfgen-c2-1382-20260501_054310.csv @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:c1b5c3eb2de3884b6fa7c5f7dfec978ca2c4fb9011eb27b75455fdb21cd7e0c4 +size 41880 diff --git a/timecost/c2/tabpfgen/tabpfgen-c2-20260501_054310/tabpfgen_meta.json b/timecost/c2/tabpfgen/tabpfgen-c2-20260501_054310/tabpfgen_meta.json new file mode 100644 index 0000000000000000000000000000000000000000..d583cd196e1529239c5ed015efbdba6cd0af7fe1 --- /dev/null +++ b/timecost/c2/tabpfgen/tabpfgen-c2-20260501_054310/tabpfgen_meta.json @@ -0,0 +1,9 @@ +{ + "csv_path": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/c2/tabpfgen/tabpfgen-c2-20260501_054310/staged/public/train.csv", + "json_path": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/c2/tabpfgen/tabpfgen-c2-20260501_054310/staged/public/staged_features.json", + "target_col": "class", + "is_classification": true, + "task_type": "classification", + "n_rows": 1382, + "n_cols": 7 +} \ No newline at end of file diff --git a/timecost/c2/tabpfgen/tabpfgen-c2-20260501_054310/train_20260501_054310.log b/timecost/c2/tabpfgen/tabpfgen-c2-20260501_054310/train_20260501_054310.log new file mode 100644 index 0000000000000000000000000000000000000000..94fdfcacc461196060df1374638916fa0f16eedd --- /dev/null +++ b/timecost/c2/tabpfgen/tabpfgen-c2-20260501_054310/train_20260501_054310.log @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:90cbba9f28b2fe9d533d38ca45ee2eb45779177b84e934be49d88ee80150e9e1 +size 595 diff --git a/timecost/c2/tabsyn/tabsyn-c2-20260501_054336/_tabsyn_sample.py b/timecost/c2/tabsyn/tabsyn-c2-20260501_054336/_tabsyn_sample.py new file mode 100644 index 0000000000000000000000000000000000000000..ecd5da7c2197ba6052bf73dd776c2236f87c2821 --- /dev/null +++ b/timecost/c2/tabsyn/tabsyn-c2-20260501_054336/_tabsyn_sample.py @@ -0,0 +1,39 @@ +import os, sys, subprocess + +work_dir = "/work/output-Benchmark-trainonly-v1/c2/tabsyn/tabsyn-c2-20260501_054336" +dataname = "tabsyn_c2" +output_csv = "/work/output-Benchmark-trainonly-v1/c2/tabsyn/tabsyn-c2-20260501_054336/tabsyn-c2-1382-20260501_060640.csv" +tabsyn_root = "/workspace/tabsyn" + +assert os.path.exists(tabsyn_root), f"TabSyn source not mounted: {tabsyn_root}" + +old = os.environ.get("PYTHONPATH", "") +os.environ["PYTHONPATH"] = tabsyn_root + (os.pathsep + old if old else "") +sys.path.insert(0, tabsyn_root) + +os.chdir(tabsyn_root) + +# Ensure data symlink exists +data_link = os.path.join(tabsyn_root, "data", dataname) +data_src = os.path.join(work_dir, "data", dataname) +os.makedirs(os.path.join(tabsyn_root, "data"), exist_ok=True) +if os.path.exists(data_link): + os.remove(data_link) +os.symlink(data_src, data_link) + +print(f"[TabSyn] Sampling 1382 rows") +env = os.environ.copy() +env.setdefault("TABSYN_RESUME", "1") +ret = subprocess.run( + [sys.executable, "main.py", + "--dataname", dataname, + "--mode", "sample", + "--method", "tabsyn", + "--gpu", "0", + "--save_path", output_csv], + cwd=tabsyn_root, + env=env +) +if ret.returncode != 0: + sys.exit(ret.returncode) +print(f"[TabSyn] Saved -> {output_csv}") diff --git a/timecost/c2/tabsyn/tabsyn-c2-20260501_054336/_tabsyn_train.py b/timecost/c2/tabsyn/tabsyn-c2-20260501_054336/_tabsyn_train.py new file mode 100644 index 0000000000000000000000000000000000000000..2c799ff7949ee261da70b3c0f15a1c4cfd25b669 --- /dev/null +++ b/timecost/c2/tabsyn/tabsyn-c2-20260501_054336/_tabsyn_train.py @@ -0,0 +1,65 @@ +import os, sys, subprocess + +work_dir = "/work/output-Benchmark-trainonly-v1/c2/tabsyn/tabsyn-c2-20260501_054336" +dataname = "tabsyn_c2" +tabsyn_root = "/workspace/tabsyn" + +assert os.path.exists(tabsyn_root), f"TabSyn source not mounted: {tabsyn_root}" + +old = os.environ.get("PYTHONPATH", "") +os.environ["PYTHONPATH"] = tabsyn_root + (os.pathsep + old if old else "") +sys.path.insert(0, tabsyn_root) + +os.chdir(tabsyn_root) + +# Symlink data dir into TabSyn data/ +data_link = os.path.join(tabsyn_root, "data", dataname) +data_src = os.path.join(work_dir, "data", dataname) +os.makedirs(os.path.join(tabsyn_root, "data"), exist_ok=True) +if os.path.exists(data_link): + os.remove(data_link) +os.symlink(data_src, data_link) + +env = os.environ.copy() +env.setdefault("TABSYN_RESUME", "1") +env.setdefault("TABSYN_VAE_BATCH_SIZE", "1024") +# Safer defaults for wide tables on Docker: reduce shared-memory pressure in diffusion DataLoader. +env.setdefault("TABSYN_DIFFUSION_NUM_WORKERS", "0") +_te = None +if _te is not None: + env["TABSYN_VAE_EPOCHS"] = str(_te) + env["TABSYN_DIFFUSION_MAX_EPOCHS"] = str(max(_te + 1, 2)) + +# Data preprocessing is done on the host side (_prepare_data_dir) +# which creates .npy files, train/test CSVs, and info.json + +# Step 1: Train VAE (produces latent embeddings) +print(f"[TabSyn] Step 1/2: Training VAE in {tabsyn_root}, dataname={dataname}") +ret = subprocess.run( + [sys.executable, "main.py", + "--dataname", dataname, + "--mode", "train", + "--method", "vae", + "--gpu", "0"], + cwd=tabsyn_root, + env=env +) +if ret.returncode != 0: + print("[TabSyn] VAE training failed") + sys.exit(ret.returncode) + +# Step 2: Train diffusion model on latent space +print(f"[TabSyn] Step 2/2: Training diffusion model") +ret = subprocess.run( + [sys.executable, "main.py", + "--dataname", dataname, + "--mode", "train", + "--method", "tabsyn", + "--gpu", "0"], + cwd=tabsyn_root, + env=env +) +if ret.returncode != 0: + print("[TabSyn] Diffusion training failed") + sys.exit(ret.returncode) +print("[TabSyn] Training complete (VAE + Diffusion)") diff --git a/timecost/c2/tabsyn/tabsyn-c2-20260501_054336/data/tabsyn_c2/X_cat_test.npy b/timecost/c2/tabsyn/tabsyn-c2-20260501_054336/data/tabsyn_c2/X_cat_test.npy new file mode 100644 index 0000000000000000000000000000000000000000..6cf4fc75ff61837a47172e845d2942ba68f4ccd1 --- /dev/null +++ b/timecost/c2/tabsyn/tabsyn-c2-20260501_054336/data/tabsyn_c2/X_cat_test.npy @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:0e9f5e299905cfd50c63688fb7b818aeec0d802b14338f705ec09d39826ac9c2 +size 55408 diff --git a/timecost/c2/tabsyn/tabsyn-c2-20260501_054336/data/tabsyn_c2/X_cat_train.npy b/timecost/c2/tabsyn/tabsyn-c2-20260501_054336/data/tabsyn_c2/X_cat_train.npy new file mode 100644 index 0000000000000000000000000000000000000000..6cf4fc75ff61837a47172e845d2942ba68f4ccd1 --- /dev/null +++ b/timecost/c2/tabsyn/tabsyn-c2-20260501_054336/data/tabsyn_c2/X_cat_train.npy @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:0e9f5e299905cfd50c63688fb7b818aeec0d802b14338f705ec09d39826ac9c2 +size 55408 diff --git a/timecost/c2/tabsyn/tabsyn-c2-20260501_054336/data/tabsyn_c2/X_num_test.npy b/timecost/c2/tabsyn/tabsyn-c2-20260501_054336/data/tabsyn_c2/X_num_test.npy new file mode 100644 index 0000000000000000000000000000000000000000..9a71edeab7a22756c9090743b5d0fde204acfb75 --- /dev/null +++ b/timecost/c2/tabsyn/tabsyn-c2-20260501_054336/data/tabsyn_c2/X_num_test.npy @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:f937731a3e7785676e9f861e44eddab69c323327e03bdd1f6e8755c5321538fb +size 5656 diff --git a/timecost/c2/tabsyn/tabsyn-c2-20260501_054336/data/tabsyn_c2/X_num_train.npy b/timecost/c2/tabsyn/tabsyn-c2-20260501_054336/data/tabsyn_c2/X_num_train.npy new file mode 100644 index 0000000000000000000000000000000000000000..9a71edeab7a22756c9090743b5d0fde204acfb75 --- /dev/null +++ b/timecost/c2/tabsyn/tabsyn-c2-20260501_054336/data/tabsyn_c2/X_num_train.npy @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:f937731a3e7785676e9f861e44eddab69c323327e03bdd1f6e8755c5321538fb +size 5656 diff --git a/timecost/c2/tabsyn/tabsyn-c2-20260501_054336/data/tabsyn_c2/info.json b/timecost/c2/tabsyn/tabsyn-c2-20260501_054336/data/tabsyn_c2/info.json new file mode 100644 index 0000000000000000000000000000000000000000..3d85c74a88f8b29c5054c0455ce2f895b74cc726 --- /dev/null +++ b/timecost/c2/tabsyn/tabsyn-c2-20260501_054336/data/tabsyn_c2/info.json @@ -0,0 +1,89 @@ +{ + "name": "tabsyn_c2", + "task_type": "multiclass", + "n_num_features": 1, + "n_cat_features": 5, + "train_size": 1382, + "num_col_idx": [ + 0 + ], + "cat_col_idx": [ + 1, + 2, + 3, + 4, + 5 + ], + "target_col_idx": [ + 6 + ], + "column_names": [ + "buying", + "maint", + "doors", + "persons", + "lug_boot", + "safety", + "class" + ], + "train_num": 1382, + "test_num": 1382, + "header": 0, + "file_type": "csv", + "data_path": "data/tabsyn_c2/train.csv", + "test_path": null, + "idx_mapping": { + "0": 0, + "1": 1, + "2": 2, + "3": 3, + "4": 4, + "5": 5, + "6": 6 + }, + "inverse_idx_mapping": { + "0": 0, + "1": 1, + "2": 2, + "3": 3, + "4": 4, + "5": 5, + "6": 6 + }, + "idx_name_mapping": { + "0": "buying", + "1": "maint", + "2": "doors", + "3": "persons", + "4": "lug_boot", + "5": "safety", + "6": "class" + }, + "n_classes": 4, + "metadata": { + "columns": { + "0": { + "sdtype": "numerical", + "computer_representation": "Float" + }, + "1": { + "sdtype": "categorical" + }, + "2": { + "sdtype": "categorical" + }, + "3": { + "sdtype": "categorical" + }, + "4": { + "sdtype": "categorical" + }, + "5": { + "sdtype": "categorical" + }, + "6": { + "sdtype": "categorical" + } + } + } +} \ No newline at end of file diff --git a/timecost/c2/tabsyn/tabsyn-c2-20260501_054336/data/tabsyn_c2/test.csv b/timecost/c2/tabsyn/tabsyn-c2-20260501_054336/data/tabsyn_c2/test.csv new file mode 100644 index 0000000000000000000000000000000000000000..94d40776e20a2226c5a316fc3eaf8b74b8513970 --- /dev/null +++ b/timecost/c2/tabsyn/tabsyn-c2-20260501_054336/data/tabsyn_c2/test.csv @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:3e7b4d4a1f787d81e53eddffbd43603149e1dd038d94b4c0244340ff4a2e4511 +size 19397 diff --git a/timecost/c2/tabsyn/tabsyn-c2-20260501_054336/data/tabsyn_c2/train.csv b/timecost/c2/tabsyn/tabsyn-c2-20260501_054336/data/tabsyn_c2/train.csv new file mode 100644 index 0000000000000000000000000000000000000000..94d40776e20a2226c5a316fc3eaf8b74b8513970 --- /dev/null +++ b/timecost/c2/tabsyn/tabsyn-c2-20260501_054336/data/tabsyn_c2/train.csv @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:3e7b4d4a1f787d81e53eddffbd43603149e1dd038d94b4c0244340ff4a2e4511 +size 19397 diff --git a/timecost/c2/tabsyn/tabsyn-c2-20260501_054336/data/tabsyn_c2/y_test.npy b/timecost/c2/tabsyn/tabsyn-c2-20260501_054336/data/tabsyn_c2/y_test.npy new file mode 100644 index 0000000000000000000000000000000000000000..108cc1504a0828881e00ae2e843ec55f1a447337 --- /dev/null +++ b/timecost/c2/tabsyn/tabsyn-c2-20260501_054336/data/tabsyn_c2/y_test.npy @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:f88f9f2d088513402a20e38e046da314636957e28ee86d4df15ac0dfc9fce867 +size 11184 diff --git a/timecost/c2/tabsyn/tabsyn-c2-20260501_054336/data/tabsyn_c2/y_train.npy b/timecost/c2/tabsyn/tabsyn-c2-20260501_054336/data/tabsyn_c2/y_train.npy new file mode 100644 index 0000000000000000000000000000000000000000..108cc1504a0828881e00ae2e843ec55f1a447337 --- /dev/null +++ b/timecost/c2/tabsyn/tabsyn-c2-20260501_054336/data/tabsyn_c2/y_train.npy @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:f88f9f2d088513402a20e38e046da314636957e28ee86d4df15ac0dfc9fce867 +size 11184 diff --git a/timecost/c2/tabsyn/tabsyn-c2-20260501_054336/gen_20260501_060640.log b/timecost/c2/tabsyn/tabsyn-c2-20260501_054336/gen_20260501_060640.log new file mode 100644 index 0000000000000000000000000000000000000000..2d0549f2b8d7c49273cac23d3b44743858a3f869 --- /dev/null +++ b/timecost/c2/tabsyn/tabsyn-c2-20260501_054336/gen_20260501_060640.log @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:e6a621aaff31f015ef41220895c2510442df1fd27aafca47bce909f7a2fbe92e +size 940 diff --git a/timecost/c2/tabsyn/tabsyn-c2-20260501_054336/input_snapshot.json b/timecost/c2/tabsyn/tabsyn-c2-20260501_054336/input_snapshot.json new file mode 100644 index 0000000000000000000000000000000000000000..7d3fddeb570e67b127ac5aef0d448cae7e934e6c --- /dev/null +++ b/timecost/c2/tabsyn/tabsyn-c2-20260501_054336/input_snapshot.json @@ -0,0 +1,36 @@ +{ + "dataset_id": "c2", + "model": "tabsyn", + "inputs": { + "train_csv": { + "path": "/data/jialinzhang/SynthesizePipeline-server/DatasetNew/c2/c2-train.csv", + "exists": true, + "size": 42948, + "sha256": "17bc560fa96bd00fb3b526e1e65bc91210b701d0d0a4e8bb9b4c5196cab56def" + }, + "val_csv": { + "path": "/data/jialinzhang/SynthesizePipeline-server/DatasetNew/c2/c2-val.csv", + "exists": true, + "size": 5349, + "sha256": "61e565eca62e65a7dccd9d51039a3170413379e10fc494e25870e7c4294863c9" + }, + "test_csv": { + "path": "/data/jialinzhang/SynthesizePipeline-server/DatasetNew/c2/c2-test.csv", + "exists": true, + "size": 5448, + "sha256": "cbcbb062a1faf5fa44b66c80532baa229e05b94fc42137269761e6c6d84af20a" + }, + "profile_json": { + "path": "/data/jialinzhang/SynthesizePipeline-server/DatasetNew/artifacts/data_core/tabular/c2/c2-dataset_profile.json", + "exists": true, + "size": 3240, + "sha256": "526b7163b2076c93c0bf4638438081ee8a6907065d5b608faa40d1a3dbc2a27b" + }, + "contract_json": { + "path": "/data/jialinzhang/SynthesizePipeline-server/DatasetNew/artifacts/data_core/tabular/c2/c2-dataset_contract_v1.json", + "exists": true, + "size": 3731, + "sha256": "fb595a876054c2ee9b4e10cfe83a5691588de1d25466cbb9d473c18ad3604009" + } + } +} \ No newline at end of file diff --git a/timecost/c2/tabsyn/tabsyn-c2-20260501_054336/public_gate/normalized_schema_snapshot.json b/timecost/c2/tabsyn/tabsyn-c2-20260501_054336/public_gate/normalized_schema_snapshot.json new file mode 100644 index 0000000000000000000000000000000000000000..689b1d00d96508e44ba40e58dc4560e19afc2b3b --- /dev/null +++ b/timecost/c2/tabsyn/tabsyn-c2-20260501_054336/public_gate/normalized_schema_snapshot.json @@ -0,0 +1,144 @@ +{ + "dataset_id": "c2", + "target_column": "class", + "task_type": "classification", + "columns": [ + { + "name": "buying", + "role": "feature", + "semantic_type": "categorical", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 4, + "unique_ratio": 0.002894, + "example_values": [ + "vhigh", + "med", + "high", + "low" + ] + } + }, + { + "name": "maint", + "role": "feature", + "semantic_type": "categorical", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 4, + "unique_ratio": 0.002894, + "example_values": [ + "vhigh", + "low", + "med", + "high" + ] + } + }, + { + "name": "doors", + "role": "feature", + "semantic_type": "categorical", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 4, + "unique_ratio": 0.002894, + "example_values": [ + "2", + "5more", + "3", + "4" + ] + } + }, + { + "name": "persons", + "role": "feature", + "semantic_type": "categorical", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 3, + "unique_ratio": 0.002171, + "example_values": [ + "2", + "4", + "more" + ] + } + }, + { + "name": "lug_boot", + "role": "feature", + "semantic_type": "categorical", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 3, + "unique_ratio": 0.002171, + "example_values": [ + "small", + "big", + "med" + ] + } + }, + { + "name": "safety", + "role": "feature", + "semantic_type": "categorical", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 3, + "unique_ratio": 0.002171, + "example_values": [ + "low", + "high", + "med" + ] + } + }, + { + "name": "class", + "role": "target", + "semantic_type": "categorical", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 4, + "unique_ratio": 0.002894, + "example_values": [ + "unacc", + "good", + "acc", + "vgood" + ] + } + } + ] +} \ No newline at end of file diff --git a/timecost/c2/tabsyn/tabsyn-c2-20260501_054336/public_gate/public_gate_report.json b/timecost/c2/tabsyn/tabsyn-c2-20260501_054336/public_gate/public_gate_report.json new file mode 100644 index 0000000000000000000000000000000000000000..2e4cdcb2a4e28e40d59b17a83e773f622b7636a5 --- /dev/null +++ b/timecost/c2/tabsyn/tabsyn-c2-20260501_054336/public_gate/public_gate_report.json @@ -0,0 +1,37 @@ +{ + "dataset_id": "c2", + "status": "pass", + "checks": [ + { + "check_id": "PG001_csv_parse_ok", + "status": "pass" + }, + { + "check_id": "PG002_split_header_consistent", + "status": "pass" + }, + { + "check_id": "PG003_profile_header_match", + "status": "pass" + }, + { + "check_id": "PG004_missing_token_normalized", + "status": "pass" + }, + { + "check_id": "PG005_semantic_type_validated", + "status": "pass" + }, + { + "check_id": "PG006_target_defined_and_valid", + "status": "pass" + } + ], + "target_column": "class", + "task_type": "classification", + "input_splits": { + "train": "/data/jialinzhang/SynthesizePipeline-server/DatasetNew/c2/c2-train.csv", + "val": "/data/jialinzhang/SynthesizePipeline-server/DatasetNew/c2/c2-val.csv", + "test": "/data/jialinzhang/SynthesizePipeline-server/DatasetNew/c2/c2-test.csv" + } +} \ No newline at end of file diff --git a/timecost/c2/tabsyn/tabsyn-c2-20260501_054336/public_gate/staged_input_manifest.json b/timecost/c2/tabsyn/tabsyn-c2-20260501_054336/public_gate/staged_input_manifest.json new file mode 100644 index 0000000000000000000000000000000000000000..31e2c4cd999d62cc3b0ad0902b1d20685d7f553f --- /dev/null +++ b/timecost/c2/tabsyn/tabsyn-c2-20260501_054336/public_gate/staged_input_manifest.json @@ -0,0 +1,149 @@ +{ + "dataset_id": "c2", + "target_column": "class", + "task_type": "classification", + "train_csv": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/c2/tabsyn/tabsyn-c2-20260501_054336/staged/public/train.csv", + "val_csv": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/c2/tabsyn/tabsyn-c2-20260501_054336/staged/public/val.csv", + "test_csv": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/c2/tabsyn/tabsyn-c2-20260501_054336/staged/public/test.csv", + "features_json": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/c2/tabsyn/tabsyn-c2-20260501_054336/staged/public/staged_features.json", + "public_gate_report": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/c2/tabsyn/tabsyn-c2-20260501_054336/public_gate/public_gate_report.json", + "column_schema": [ + { + "name": "buying", + "role": "feature", + "semantic_type": "categorical", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 4, + "unique_ratio": 0.002894, + "example_values": [ + "vhigh", + "med", + "high", + "low" + ] + } + }, + { + "name": "maint", + "role": "feature", + "semantic_type": "categorical", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 4, + "unique_ratio": 0.002894, + "example_values": [ + "vhigh", + "low", + "med", + "high" + ] + } + }, + { + "name": "doors", + "role": "feature", + "semantic_type": "categorical", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 4, + "unique_ratio": 0.002894, + "example_values": [ + "2", + "5more", + "3", + "4" + ] + } + }, + { + "name": "persons", + "role": "feature", + "semantic_type": "categorical", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 3, + "unique_ratio": 0.002171, + "example_values": [ + "2", + "4", + "more" + ] + } + }, + { + "name": "lug_boot", + "role": "feature", + "semantic_type": "categorical", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 3, + "unique_ratio": 0.002171, + "example_values": [ + "small", + "big", + "med" + ] + } + }, + { + "name": "safety", + "role": "feature", + "semantic_type": "categorical", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 3, + "unique_ratio": 0.002171, + "example_values": [ + "low", + "high", + "med" + ] + } + }, + { + "name": "class", + "role": "target", + "semantic_type": "categorical", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 4, + "unique_ratio": 0.002894, + "example_values": [ + "unacc", + "good", + "acc", + "vgood" + ] + } + } + ] +} \ No newline at end of file diff --git a/timecost/c2/tabsyn/tabsyn-c2-20260501_054336/runtime_result.json b/timecost/c2/tabsyn/tabsyn-c2-20260501_054336/runtime_result.json new file mode 100644 index 0000000000000000000000000000000000000000..b61ea3f3c0e9d8ae2fa7e933fce86116f11606af --- /dev/null +++ b/timecost/c2/tabsyn/tabsyn-c2-20260501_054336/runtime_result.json @@ -0,0 +1,27 @@ +{ + "dataset_id": "c2", + "model": "tabsyn", + "run_id": "tabsyn-c2-20260501_054336", + "public_gate_status": "pass", + "adapter_ready_status": "pass", + "train_status": "success", + "generate_status": "success", + "reason_code": null, + "reason_detail": null, + "artifacts": { + "synthetic_csv": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/c2/tabsyn/tabsyn-c2-20260501_054336/tabsyn-c2-1382-20260501_060640.csv", + "model_path": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/c2/tabsyn/tabsyn-c2-20260501_054336" + }, + "timings": { + "train": { + "started_at": "2026-05-01T05:43:36", + "ended_at": "2026-05-01T06:06:40", + "duration_sec": 1383.961 + }, + "generate": { + "started_at": "2026-05-01T06:06:40", + "ended_at": "2026-05-01T06:06:46", + "duration_sec": 5.527 + } + } +} \ No newline at end of file diff --git a/timecost/c2/tabsyn/tabsyn-c2-20260501_054336/staged/public/staged_features.json b/timecost/c2/tabsyn/tabsyn-c2-20260501_054336/staged/public/staged_features.json new file mode 100644 index 0000000000000000000000000000000000000000..61783861dd5de501592f76acb0469cf3f3b2622a --- /dev/null +++ b/timecost/c2/tabsyn/tabsyn-c2-20260501_054336/staged/public/staged_features.json @@ -0,0 +1,37 @@ +[ + { + "feature_name": "buying", + "data_type": "categorical", + "is_target": false + }, + { + "feature_name": "maint", + "data_type": "categorical", + "is_target": false + }, + { + "feature_name": "doors", + "data_type": "categorical", + "is_target": false + }, + { + "feature_name": "persons", + "data_type": "categorical", + "is_target": false + }, + { + "feature_name": "lug_boot", + "data_type": "categorical", + "is_target": false + }, + { + "feature_name": "safety", + "data_type": "categorical", + "is_target": false + }, + { + "feature_name": "class", + "data_type": "categorical", + "is_target": true + } +] \ No newline at end of file diff --git a/timecost/c2/tabsyn/tabsyn-c2-20260501_054336/staged/public/test.csv b/timecost/c2/tabsyn/tabsyn-c2-20260501_054336/staged/public/test.csv new file mode 100644 index 0000000000000000000000000000000000000000..392a0d7189a34d8f13ecf20a99d64b03230d517c --- /dev/null +++ b/timecost/c2/tabsyn/tabsyn-c2-20260501_054336/staged/public/test.csv @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:b48114a7d0bc5bd9a07920f903c8d4aba8bf98bf2a66a050da03588b0245ca73 +size 5273 diff --git a/timecost/c2/tabsyn/tabsyn-c2-20260501_054336/staged/public/train.csv b/timecost/c2/tabsyn/tabsyn-c2-20260501_054336/staged/public/train.csv new file mode 100644 index 0000000000000000000000000000000000000000..da4f4d55134eebc0e51157d0d467536371db1484 --- /dev/null +++ b/timecost/c2/tabsyn/tabsyn-c2-20260501_054336/staged/public/train.csv @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:4aed00c2c2b3f88a55a7ebff31b2e1b5e0e32fb0a7267e0b9d2779cd23e434dd +size 41565 diff --git a/timecost/c2/tabsyn/tabsyn-c2-20260501_054336/staged/public/val.csv b/timecost/c2/tabsyn/tabsyn-c2-20260501_054336/staged/public/val.csv new file mode 100644 index 0000000000000000000000000000000000000000..af8caf7ee42524188534a3daf32996dc491952d9 --- /dev/null +++ b/timecost/c2/tabsyn/tabsyn-c2-20260501_054336/staged/public/val.csv @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:26e90c1170a57a14c05832ac88027722b1f3848f9662c7c09ef7c93dcba4cc01 +size 5176 diff --git a/timecost/c2/tabsyn/tabsyn-c2-20260501_054336/staged/tabsyn/adapter_report.json b/timecost/c2/tabsyn/tabsyn-c2-20260501_054336/staged/tabsyn/adapter_report.json new file mode 100644 index 0000000000000000000000000000000000000000..6473cb524a6aca6c0137b1df8834b97c83691e40 --- /dev/null +++ b/timecost/c2/tabsyn/tabsyn-c2-20260501_054336/staged/tabsyn/adapter_report.json @@ -0,0 +1,7 @@ +{ + "adapter_ready_status": "pass", + "adapter_fail_reason_code": null, + "adapter_fail_detail": null, + "adapter_transforms_applied": [], + "model_input_manifest": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/c2/tabsyn/tabsyn-c2-20260501_054336/staged/tabsyn/model_input_manifest.json" +} \ No newline at end of file diff --git a/timecost/c2/tabsyn/tabsyn-c2-20260501_054336/staged/tabsyn/adapter_transforms_applied.json b/timecost/c2/tabsyn/tabsyn-c2-20260501_054336/staged/tabsyn/adapter_transforms_applied.json new file mode 100644 index 0000000000000000000000000000000000000000..0637a088a01e8ddab3bf3fa98dbe804cbde1a0dc --- /dev/null +++ b/timecost/c2/tabsyn/tabsyn-c2-20260501_054336/staged/tabsyn/adapter_transforms_applied.json @@ -0,0 +1 @@ +[] \ No newline at end of file diff --git a/timecost/c2/tabsyn/tabsyn-c2-20260501_054336/staged/tabsyn/model_input_manifest.json b/timecost/c2/tabsyn/tabsyn-c2-20260501_054336/staged/tabsyn/model_input_manifest.json new file mode 100644 index 0000000000000000000000000000000000000000..64f1d74c2494673a5dd2bff99e278a5c50b69787 --- /dev/null +++ b/timecost/c2/tabsyn/tabsyn-c2-20260501_054336/staged/tabsyn/model_input_manifest.json @@ -0,0 +1,151 @@ +{ + "dataset_id": "c2", + "model": "tabsyn", + "target_column": "class", + "task_type": "classification", + "column_schema": [ + { + "name": "buying", + "role": "feature", + "semantic_type": "categorical", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 4, + "unique_ratio": 0.002894, + "example_values": [ + "vhigh", + "med", + "high", + "low" + ] + } + }, + { + "name": "maint", + "role": "feature", + "semantic_type": "categorical", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 4, + "unique_ratio": 0.002894, + "example_values": [ + "vhigh", + "low", + "med", + "high" + ] + } + }, + { + "name": "doors", + "role": "feature", + "semantic_type": "categorical", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 4, + "unique_ratio": 0.002894, + "example_values": [ + "2", + "5more", + "3", + "4" + ] + } + }, + { + "name": "persons", + "role": "feature", + "semantic_type": "categorical", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 3, + "unique_ratio": 0.002171, + "example_values": [ + "2", + "4", + "more" + ] + } + }, + { + "name": "lug_boot", + "role": "feature", + "semantic_type": "categorical", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 3, + "unique_ratio": 0.002171, + "example_values": [ + "small", + "big", + "med" + ] + } + }, + { + "name": "safety", + "role": "feature", + "semantic_type": "categorical", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 3, + "unique_ratio": 0.002171, + "example_values": [ + "low", + "high", + "med" + ] + } + }, + { + "name": "class", + "role": "target", + "semantic_type": "categorical", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 4, + "unique_ratio": 0.002894, + "example_values": [ + "unacc", + "good", + "acc", + "vgood" + ] + } + } + ], + "public_manifest": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/c2/tabsyn/tabsyn-c2-20260501_054336/public_gate/staged_input_manifest.json", + "train_csv": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/c2/tabsyn/tabsyn-c2-20260501_054336/staged/public/train.csv", + "val_csv": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/c2/tabsyn/tabsyn-c2-20260501_054336/staged/public/val.csv", + "test_csv": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/c2/tabsyn/tabsyn-c2-20260501_054336/staged/public/test.csv", + "features_json": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/c2/tabsyn/tabsyn-c2-20260501_054336/staged/public/staged_features.json", + "public_gate_report": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/c2/tabsyn/tabsyn-c2-20260501_054336/public_gate/public_gate_report.json" +} \ No newline at end of file diff --git a/timecost/c2/tabsyn/tabsyn-c2-20260501_054336/synthetic/tabsyn_c2/real.csv b/timecost/c2/tabsyn/tabsyn-c2-20260501_054336/synthetic/tabsyn_c2/real.csv new file mode 100644 index 0000000000000000000000000000000000000000..94d40776e20a2226c5a316fc3eaf8b74b8513970 --- /dev/null +++ b/timecost/c2/tabsyn/tabsyn-c2-20260501_054336/synthetic/tabsyn_c2/real.csv @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:3e7b4d4a1f787d81e53eddffbd43603149e1dd038d94b4c0244340ff4a2e4511 +size 19397 diff --git a/timecost/c2/tabsyn/tabsyn-c2-20260501_054336/synthetic/tabsyn_c2/test.csv b/timecost/c2/tabsyn/tabsyn-c2-20260501_054336/synthetic/tabsyn_c2/test.csv new file mode 100644 index 0000000000000000000000000000000000000000..94d40776e20a2226c5a316fc3eaf8b74b8513970 --- /dev/null +++ b/timecost/c2/tabsyn/tabsyn-c2-20260501_054336/synthetic/tabsyn_c2/test.csv @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:3e7b4d4a1f787d81e53eddffbd43603149e1dd038d94b4c0244340ff4a2e4511 +size 19397 diff --git a/timecost/c2/tabsyn/tabsyn-c2-20260501_054336/tabsyn-c2-1382-20260501_060640.csv b/timecost/c2/tabsyn/tabsyn-c2-20260501_054336/tabsyn-c2-1382-20260501_060640.csv new file mode 100644 index 0000000000000000000000000000000000000000..fedf6f64b28363e72d9e20a69e9444cc8716e0e8 --- /dev/null +++ b/timecost/c2/tabsyn/tabsyn-c2-20260501_054336/tabsyn-c2-1382-20260501_060640.csv @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:e978de460d7392592e372d541a1449124a9d1dc0a8431bb52226c1b3be7c3ad4 +size 22171 diff --git a/timecost/c2/tabsyn/tabsyn-c2-20260501_054336/train_20260501_054336.log b/timecost/c2/tabsyn/tabsyn-c2-20260501_054336/train_20260501_054336.log new file mode 100644 index 0000000000000000000000000000000000000000..3f47b32c1e7ee1a9ca0414ac30c4a85a14d55146 --- /dev/null +++ b/timecost/c2/tabsyn/tabsyn-c2-20260501_054336/train_20260501_054336.log @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:1e99c585306f1279128b0848854ae012c2e21c5df40f4520a77ffe1a85bb733a +size 2086454 diff --git a/timecost/c2/tvae/tvae-c2-20260501_060652/_tvae_generate.py b/timecost/c2/tvae/tvae-c2-20260501_060652/_tvae_generate.py new file mode 100644 index 0000000000000000000000000000000000000000..ee07f8086f9dbcecc5be413f1c22bda98e3c3aad --- /dev/null +++ b/timecost/c2/tvae/tvae-c2-20260501_060652/_tvae_generate.py @@ -0,0 +1,23 @@ +import os, sys +sys.path.insert(0, "/work") +from src.SpecificModels.ctgan_joblib_parallel_cap import apply_parallel_cap_from_env +apply_parallel_cap_from_env() +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 +os.environ.setdefault("LOKY_MAX_CPU_COUNT", "8") +os.environ.setdefault("OPENBLAS_NUM_THREADS", "8") +os.environ.setdefault("MKL_NUM_THREADS", "8") +model = TVAE.load("/work/output-Benchmark-trainonly-v1/c2/tvae/tvae-c2-20260501_060652/models_300epochs/tvae_300epochs.pt") +total = 1382 +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-Benchmark-trainonly-v1/c2/tvae/tvae-c2-20260501_060652/tvae-c2-1382-20260501_060709.csv", index=False) +print(f"[TVAE] Generated {total} rows (chunks={len(parts)}) -> /work/output-Benchmark-trainonly-v1/c2/tvae/tvae-c2-20260501_060652/tvae-c2-1382-20260501_060709.csv") diff --git a/timecost/c2/tvae/tvae-c2-20260501_060652/_tvae_train.py b/timecost/c2/tvae/tvae-c2-20260501_060652/_tvae_train.py new file mode 100644 index 0000000000000000000000000000000000000000..bf188e71fc3ecfb788fd1e9ad029b67b8c19e45a --- /dev/null +++ b/timecost/c2/tvae/tvae-c2-20260501_060652/_tvae_train.py @@ -0,0 +1,30 @@ +import json, os, sys +sys.path.insert(0, "/work") +from src.SpecificModels.ctgan_joblib_parallel_cap import apply_parallel_cap_from_env +apply_parallel_cap_from_env() +import pandas as pd +from ctgan.data import read_csv +from ctgan.synthesizers.tvae import TVAE + +# Keep transform stage parallelism bounded for stability on shared host. +os.environ.setdefault("LOKY_MAX_CPU_COUNT", "8") +os.environ.setdefault("OPENBLAS_NUM_THREADS", "8") +os.environ.setdefault("MKL_NUM_THREADS", "8") +_nj = (os.environ.get("TVAE_CTGAN_JOBTRANS_N_JOBS") or "").strip() +if _nj: + print("[TVAE] joblib Parallel cap ON, TVAE_CTGAN_JOBTRANS_N_JOBS=" + _nj) +else: + print("[TVAE] joblib Parallel cap OFF (unset TVAE_CTGAN_JOBTRANS_N_JOBS)") +print("[TVAE] LOKY_MAX_CPU_COUNT=" + str(os.environ.get("LOKY_MAX_CPU_COUNT", ""))) + +csv_path = "/work/output-Benchmark-trainonly-v1/c2/tvae/tvae-c2-20260501_060652/staged/public/train.csv" +meta_path = "/work/output-Benchmark-trainonly-v1/c2/tvae/tvae-c2-20260501_060652/tvae_metadata.json" +save_path = "/work/output-Benchmark-trainonly-v1/c2/tvae/tvae-c2-20260501_060652/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/timecost/c2/tvae/tvae-c2-20260501_060652/gen_20260501_060709.log b/timecost/c2/tvae/tvae-c2-20260501_060652/gen_20260501_060709.log new file mode 100644 index 0000000000000000000000000000000000000000..6e7da99bdaa881a0255e099018caabf0fcb884d2 --- /dev/null +++ b/timecost/c2/tvae/tvae-c2-20260501_060652/gen_20260501_060709.log @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:811a90c82a00a2453464da6ac5fc4ab320e6647e8228f8cec6951bd6f380b484 +size 404 diff --git a/timecost/c2/tvae/tvae-c2-20260501_060652/input_snapshot.json b/timecost/c2/tvae/tvae-c2-20260501_060652/input_snapshot.json new file mode 100644 index 0000000000000000000000000000000000000000..9e28a5421f2176e174a0659e66a40054269fb2ac --- /dev/null +++ b/timecost/c2/tvae/tvae-c2-20260501_060652/input_snapshot.json @@ -0,0 +1,36 @@ +{ + "dataset_id": "c2", + "model": "tvae", + "inputs": { + "train_csv": { + "path": "/data/jialinzhang/SynthesizePipeline-server/DatasetNew/c2/c2-train.csv", + "exists": true, + "size": 42948, + "sha256": "17bc560fa96bd00fb3b526e1e65bc91210b701d0d0a4e8bb9b4c5196cab56def" + }, + "val_csv": { + "path": "/data/jialinzhang/SynthesizePipeline-server/DatasetNew/c2/c2-val.csv", + "exists": true, + "size": 5349, + "sha256": "61e565eca62e65a7dccd9d51039a3170413379e10fc494e25870e7c4294863c9" + }, + "test_csv": { + "path": "/data/jialinzhang/SynthesizePipeline-server/DatasetNew/c2/c2-test.csv", + "exists": true, + "size": 5448, + "sha256": "cbcbb062a1faf5fa44b66c80532baa229e05b94fc42137269761e6c6d84af20a" + }, + "profile_json": { + "path": "/data/jialinzhang/SynthesizePipeline-server/DatasetNew/artifacts/data_core/tabular/c2/c2-dataset_profile.json", + "exists": true, + "size": 3240, + "sha256": "526b7163b2076c93c0bf4638438081ee8a6907065d5b608faa40d1a3dbc2a27b" + }, + "contract_json": { + "path": "/data/jialinzhang/SynthesizePipeline-server/DatasetNew/artifacts/data_core/tabular/c2/c2-dataset_contract_v1.json", + "exists": true, + "size": 3731, + "sha256": "fb595a876054c2ee9b4e10cfe83a5691588de1d25466cbb9d473c18ad3604009" + } + } +} \ No newline at end of file diff --git a/timecost/c2/tvae/tvae-c2-20260501_060652/models_300epochs/train_20260501_060652.log b/timecost/c2/tvae/tvae-c2-20260501_060652/models_300epochs/train_20260501_060652.log new file mode 100644 index 0000000000000000000000000000000000000000..9e1180bfc3aade0f1b5beab810653d04743a3f29 --- /dev/null +++ b/timecost/c2/tvae/tvae-c2-20260501_060652/models_300epochs/train_20260501_060652.log @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:c85525e2a454b9c93bb4128e261000b45ec90958e4758d80a0e77a9d772ece2e +size 531 diff --git a/timecost/c2/tvae/tvae-c2-20260501_060652/models_300epochs/tvae_300epochs.pt b/timecost/c2/tvae/tvae-c2-20260501_060652/models_300epochs/tvae_300epochs.pt new file mode 100644 index 0000000000000000000000000000000000000000..17b6a7e21950887bb50757c079cfd899b0c9e47c --- /dev/null +++ b/timecost/c2/tvae/tvae-c2-20260501_060652/models_300epochs/tvae_300epochs.pt @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:a3a0d83f23a59f1dd860e3ef1c7fd7e17bf189a4f5b79f6078b43dbbe8d01dd6 +size 344876 diff --git a/timecost/c2/tvae/tvae-c2-20260501_060652/public_gate/normalized_schema_snapshot.json b/timecost/c2/tvae/tvae-c2-20260501_060652/public_gate/normalized_schema_snapshot.json new file mode 100644 index 0000000000000000000000000000000000000000..689b1d00d96508e44ba40e58dc4560e19afc2b3b --- /dev/null +++ b/timecost/c2/tvae/tvae-c2-20260501_060652/public_gate/normalized_schema_snapshot.json @@ -0,0 +1,144 @@ +{ + "dataset_id": "c2", + "target_column": "class", + "task_type": "classification", + "columns": [ + { + "name": "buying", + "role": "feature", + "semantic_type": "categorical", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 4, + "unique_ratio": 0.002894, + "example_values": [ + "vhigh", + "med", + "high", + "low" + ] + } + }, + { + "name": "maint", + "role": "feature", + "semantic_type": "categorical", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 4, + "unique_ratio": 0.002894, + "example_values": [ + "vhigh", + "low", + "med", + "high" + ] + } + }, + { + "name": "doors", + "role": "feature", + "semantic_type": "categorical", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 4, + "unique_ratio": 0.002894, + "example_values": [ + "2", + "5more", + "3", + "4" + ] + } + }, + { + "name": "persons", + "role": "feature", + "semantic_type": "categorical", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 3, + "unique_ratio": 0.002171, + "example_values": [ + "2", + "4", + "more" + ] + } + }, + { + "name": "lug_boot", + "role": "feature", + "semantic_type": "categorical", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 3, + "unique_ratio": 0.002171, + "example_values": [ + "small", + "big", + "med" + ] + } + }, + { + "name": "safety", + "role": "feature", + "semantic_type": "categorical", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 3, + "unique_ratio": 0.002171, + "example_values": [ + "low", + "high", + "med" + ] + } + }, + { + "name": "class", + "role": "target", + "semantic_type": "categorical", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 4, + "unique_ratio": 0.002894, + "example_values": [ + "unacc", + "good", + "acc", + "vgood" + ] + } + } + ] +} \ No newline at end of file diff --git a/timecost/c2/tvae/tvae-c2-20260501_060652/public_gate/public_gate_report.json b/timecost/c2/tvae/tvae-c2-20260501_060652/public_gate/public_gate_report.json new file mode 100644 index 0000000000000000000000000000000000000000..2e4cdcb2a4e28e40d59b17a83e773f622b7636a5 --- /dev/null +++ b/timecost/c2/tvae/tvae-c2-20260501_060652/public_gate/public_gate_report.json @@ -0,0 +1,37 @@ +{ + "dataset_id": "c2", + "status": "pass", + "checks": [ + { + "check_id": "PG001_csv_parse_ok", + "status": "pass" + }, + { + "check_id": "PG002_split_header_consistent", + "status": "pass" + }, + { + "check_id": "PG003_profile_header_match", + "status": "pass" + }, + { + "check_id": "PG004_missing_token_normalized", + "status": "pass" + }, + { + "check_id": "PG005_semantic_type_validated", + "status": "pass" + }, + { + "check_id": "PG006_target_defined_and_valid", + "status": "pass" + } + ], + "target_column": "class", + "task_type": "classification", + "input_splits": { + "train": "/data/jialinzhang/SynthesizePipeline-server/DatasetNew/c2/c2-train.csv", + "val": "/data/jialinzhang/SynthesizePipeline-server/DatasetNew/c2/c2-val.csv", + "test": "/data/jialinzhang/SynthesizePipeline-server/DatasetNew/c2/c2-test.csv" + } +} \ No newline at end of file diff --git a/timecost/c2/tvae/tvae-c2-20260501_060652/public_gate/staged_input_manifest.json b/timecost/c2/tvae/tvae-c2-20260501_060652/public_gate/staged_input_manifest.json new file mode 100644 index 0000000000000000000000000000000000000000..988ba0785562dff2c09944102d58b9ee55a965c2 --- /dev/null +++ b/timecost/c2/tvae/tvae-c2-20260501_060652/public_gate/staged_input_manifest.json @@ -0,0 +1,149 @@ +{ + "dataset_id": "c2", + "target_column": "class", + "task_type": "classification", + "train_csv": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/c2/tvae/tvae-c2-20260501_060652/staged/public/train.csv", + "val_csv": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/c2/tvae/tvae-c2-20260501_060652/staged/public/val.csv", + "test_csv": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/c2/tvae/tvae-c2-20260501_060652/staged/public/test.csv", + "features_json": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/c2/tvae/tvae-c2-20260501_060652/staged/public/staged_features.json", + "public_gate_report": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/c2/tvae/tvae-c2-20260501_060652/public_gate/public_gate_report.json", + "column_schema": [ + { + "name": "buying", + "role": "feature", + "semantic_type": "categorical", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 4, + "unique_ratio": 0.002894, + "example_values": [ + "vhigh", + "med", + "high", + "low" + ] + } + }, + { + "name": "maint", + "role": "feature", + "semantic_type": "categorical", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 4, + "unique_ratio": 0.002894, + "example_values": [ + "vhigh", + "low", + "med", + "high" + ] + } + }, + { + "name": "doors", + "role": "feature", + "semantic_type": "categorical", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 4, + "unique_ratio": 0.002894, + "example_values": [ + "2", + "5more", + "3", + "4" + ] + } + }, + { + "name": "persons", + "role": "feature", + "semantic_type": "categorical", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 3, + "unique_ratio": 0.002171, + "example_values": [ + "2", + "4", + "more" + ] + } + }, + { + "name": "lug_boot", + "role": "feature", + "semantic_type": "categorical", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 3, + "unique_ratio": 0.002171, + "example_values": [ + "small", + "big", + "med" + ] + } + }, + { + "name": "safety", + "role": "feature", + "semantic_type": "categorical", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 3, + "unique_ratio": 0.002171, + "example_values": [ + "low", + "high", + "med" + ] + } + }, + { + "name": "class", + "role": "target", + "semantic_type": "categorical", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 4, + "unique_ratio": 0.002894, + "example_values": [ + "unacc", + "good", + "acc", + "vgood" + ] + } + } + ] +} \ No newline at end of file diff --git a/timecost/c2/tvae/tvae-c2-20260501_060652/runtime_result.json b/timecost/c2/tvae/tvae-c2-20260501_060652/runtime_result.json new file mode 100644 index 0000000000000000000000000000000000000000..ddeb3dfc1b4314a2e1b55f685a7b26f8aafcf7c8 --- /dev/null +++ b/timecost/c2/tvae/tvae-c2-20260501_060652/runtime_result.json @@ -0,0 +1,27 @@ +{ + "dataset_id": "c2", + "model": "tvae", + "run_id": "tvae-c2-20260501_060652", + "public_gate_status": "pass", + "adapter_ready_status": "pass", + "train_status": "success", + "generate_status": "success", + "reason_code": null, + "reason_detail": null, + "artifacts": { + "synthetic_csv": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/c2/tvae/tvae-c2-20260501_060652/tvae-c2-1382-20260501_060709.csv", + "model_path": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/c2/tvae/tvae-c2-20260501_060652/models_300epochs/tvae_300epochs.pt" + }, + "timings": { + "train": { + "started_at": "2026-05-01T06:06:52", + "ended_at": "2026-05-01T06:07:09", + "duration_sec": 16.933 + }, + "generate": { + "started_at": "2026-05-01T06:07:09", + "ended_at": "2026-05-01T06:07:14", + "duration_sec": 4.962 + } + } +} \ No newline at end of file diff --git a/timecost/c2/tvae/tvae-c2-20260501_060652/staged/public/staged_features.json b/timecost/c2/tvae/tvae-c2-20260501_060652/staged/public/staged_features.json new file mode 100644 index 0000000000000000000000000000000000000000..61783861dd5de501592f76acb0469cf3f3b2622a --- /dev/null +++ b/timecost/c2/tvae/tvae-c2-20260501_060652/staged/public/staged_features.json @@ -0,0 +1,37 @@ +[ + { + "feature_name": "buying", + "data_type": "categorical", + "is_target": false + }, + { + "feature_name": "maint", + "data_type": "categorical", + "is_target": false + }, + { + "feature_name": "doors", + "data_type": "categorical", + "is_target": false + }, + { + "feature_name": "persons", + "data_type": "categorical", + "is_target": false + }, + { + "feature_name": "lug_boot", + "data_type": "categorical", + "is_target": false + }, + { + "feature_name": "safety", + "data_type": "categorical", + "is_target": false + }, + { + "feature_name": "class", + "data_type": "categorical", + "is_target": true + } +] \ No newline at end of file diff --git a/timecost/c2/tvae/tvae-c2-20260501_060652/staged/public/test.csv b/timecost/c2/tvae/tvae-c2-20260501_060652/staged/public/test.csv new file mode 100644 index 0000000000000000000000000000000000000000..392a0d7189a34d8f13ecf20a99d64b03230d517c --- /dev/null +++ b/timecost/c2/tvae/tvae-c2-20260501_060652/staged/public/test.csv @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:b48114a7d0bc5bd9a07920f903c8d4aba8bf98bf2a66a050da03588b0245ca73 +size 5273 diff --git a/timecost/c2/tvae/tvae-c2-20260501_060652/staged/public/train.csv b/timecost/c2/tvae/tvae-c2-20260501_060652/staged/public/train.csv new file mode 100644 index 0000000000000000000000000000000000000000..da4f4d55134eebc0e51157d0d467536371db1484 --- /dev/null +++ b/timecost/c2/tvae/tvae-c2-20260501_060652/staged/public/train.csv @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:4aed00c2c2b3f88a55a7ebff31b2e1b5e0e32fb0a7267e0b9d2779cd23e434dd +size 41565 diff --git a/timecost/c2/tvae/tvae-c2-20260501_060652/staged/public/val.csv b/timecost/c2/tvae/tvae-c2-20260501_060652/staged/public/val.csv new file mode 100644 index 0000000000000000000000000000000000000000..af8caf7ee42524188534a3daf32996dc491952d9 --- /dev/null +++ b/timecost/c2/tvae/tvae-c2-20260501_060652/staged/public/val.csv @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:26e90c1170a57a14c05832ac88027722b1f3848f9662c7c09ef7c93dcba4cc01 +size 5176 diff --git a/timecost/c2/tvae/tvae-c2-20260501_060652/staged/tvae/adapter_report.json b/timecost/c2/tvae/tvae-c2-20260501_060652/staged/tvae/adapter_report.json new file mode 100644 index 0000000000000000000000000000000000000000..53fd18cae5801eb9ff510758dbec2f26bb298463 --- /dev/null +++ b/timecost/c2/tvae/tvae-c2-20260501_060652/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-Benchmark-trainonly-v1/c2/tvae/tvae-c2-20260501_060652/staged/tvae/model_input_manifest.json" +} \ No newline at end of file diff --git a/timecost/c2/tvae/tvae-c2-20260501_060652/staged/tvae/adapter_transforms_applied.json b/timecost/c2/tvae/tvae-c2-20260501_060652/staged/tvae/adapter_transforms_applied.json new file mode 100644 index 0000000000000000000000000000000000000000..0637a088a01e8ddab3bf3fa98dbe804cbde1a0dc --- /dev/null +++ b/timecost/c2/tvae/tvae-c2-20260501_060652/staged/tvae/adapter_transforms_applied.json @@ -0,0 +1 @@ +[] \ No newline at end of file diff --git a/timecost/c2/tvae/tvae-c2-20260501_060652/staged/tvae/model_input_manifest.json b/timecost/c2/tvae/tvae-c2-20260501_060652/staged/tvae/model_input_manifest.json new file mode 100644 index 0000000000000000000000000000000000000000..25ac1d6d3495f34be078fd191411933776b433ec --- /dev/null +++ b/timecost/c2/tvae/tvae-c2-20260501_060652/staged/tvae/model_input_manifest.json @@ -0,0 +1,151 @@ +{ + "dataset_id": "c2", + "model": "tvae", + "target_column": "class", + "task_type": "classification", + "column_schema": [ + { + "name": "buying", + "role": "feature", + "semantic_type": "categorical", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 4, + "unique_ratio": 0.002894, + "example_values": [ + "vhigh", + "med", + "high", + "low" + ] + } + }, + { + "name": "maint", + "role": "feature", + "semantic_type": "categorical", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 4, + "unique_ratio": 0.002894, + "example_values": [ + "vhigh", + "low", + "med", + "high" + ] + } + }, + { + "name": "doors", + "role": "feature", + "semantic_type": "categorical", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 4, + "unique_ratio": 0.002894, + "example_values": [ + "2", + "5more", + "3", + "4" + ] + } + }, + { + "name": "persons", + "role": "feature", + "semantic_type": "categorical", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 3, + "unique_ratio": 0.002171, + "example_values": [ + "2", + "4", + "more" + ] + } + }, + { + "name": "lug_boot", + "role": "feature", + "semantic_type": "categorical", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 3, + "unique_ratio": 0.002171, + "example_values": [ + "small", + "big", + "med" + ] + } + }, + { + "name": "safety", + "role": "feature", + "semantic_type": "categorical", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 3, + "unique_ratio": 0.002171, + "example_values": [ + "low", + "high", + "med" + ] + } + }, + { + "name": "class", + "role": "target", + "semantic_type": "categorical", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 4, + "unique_ratio": 0.002894, + "example_values": [ + "unacc", + "good", + "acc", + "vgood" + ] + } + } + ], + "public_manifest": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/c2/tvae/tvae-c2-20260501_060652/public_gate/staged_input_manifest.json", + "train_csv": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/c2/tvae/tvae-c2-20260501_060652/staged/public/train.csv", + "val_csv": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/c2/tvae/tvae-c2-20260501_060652/staged/public/val.csv", + "test_csv": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/c2/tvae/tvae-c2-20260501_060652/staged/public/test.csv", + "features_json": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/c2/tvae/tvae-c2-20260501_060652/staged/public/staged_features.json", + "public_gate_report": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/c2/tvae/tvae-c2-20260501_060652/public_gate/public_gate_report.json" +} \ No newline at end of file diff --git a/timecost/c2/tvae/tvae-c2-20260501_060652/tvae-c2-1382-20260501_060709.csv b/timecost/c2/tvae/tvae-c2-20260501_060652/tvae-c2-1382-20260501_060709.csv new file mode 100644 index 0000000000000000000000000000000000000000..7f03aa1c4919240cc177bb5d5621d801da134f1d --- /dev/null +++ b/timecost/c2/tvae/tvae-c2-20260501_060652/tvae-c2-1382-20260501_060709.csv @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:0623ee3f26117b60c69a602520884727739b320db35033d330e1b1415a4d8469 +size 41504 diff --git a/timecost/c2/tvae/tvae-c2-20260501_060652/tvae_metadata.json b/timecost/c2/tvae/tvae-c2-20260501_060652/tvae_metadata.json new file mode 100644 index 0000000000000000000000000000000000000000..183d627ebc98e89233655ec98c9dcbc528c4c328 --- /dev/null +++ b/timecost/c2/tvae/tvae-c2-20260501_060652/tvae_metadata.json @@ -0,0 +1,32 @@ +{ + "columns": [ + { + "name": "buying", + "type": "categorical" + }, + { + "name": "maint", + "type": "categorical" + }, + { + "name": "doors", + "type": "categorical" + }, + { + "name": "persons", + "type": "categorical" + }, + { + "name": "lug_boot", + "type": "categorical" + }, + { + "name": "safety", + "type": "categorical" + }, + { + "name": "class", + "type": "categorical" + } + ] +} \ No newline at end of file diff --git a/timecost/c2/tvae/tvae-c2-20260504_173008/_tvae_generate.py b/timecost/c2/tvae/tvae-c2-20260504_173008/_tvae_generate.py new file mode 100644 index 0000000000000000000000000000000000000000..ba56b67e501be1a02f9df11b17b5be278a4fbaf4 --- /dev/null +++ b/timecost/c2/tvae/tvae-c2-20260504_173008/_tvae_generate.py @@ -0,0 +1,23 @@ +import os, sys +sys.path.insert(0, "/work") +from src.SpecificModels.ctgan_joblib_parallel_cap import apply_parallel_cap_from_env +apply_parallel_cap_from_env() +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 +os.environ.setdefault("LOKY_MAX_CPU_COUNT", "8") +os.environ.setdefault("OPENBLAS_NUM_THREADS", "8") +os.environ.setdefault("MKL_NUM_THREADS", "8") +model = TVAE.load("/work/output-Benchmark-trainonly-v1/c2/tvae/tvae-c2-20260504_173008/models_300epochs/tvae_300epochs.pt") +total = 1382 +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-Benchmark-trainonly-v1/c2/tvae/tvae-c2-20260504_173008/tvae-c2-1382-20260504_173024.csv", index=False) +print(f"[TVAE] Generated {total} rows (chunks={len(parts)}) -> /work/output-Benchmark-trainonly-v1/c2/tvae/tvae-c2-20260504_173008/tvae-c2-1382-20260504_173024.csv") diff --git a/timecost/c2/tvae/tvae-c2-20260504_173008/_tvae_train.py b/timecost/c2/tvae/tvae-c2-20260504_173008/_tvae_train.py new file mode 100644 index 0000000000000000000000000000000000000000..1c8ca6db5febbe87084a63b4625ce50a43245d7d --- /dev/null +++ b/timecost/c2/tvae/tvae-c2-20260504_173008/_tvae_train.py @@ -0,0 +1,30 @@ +import json, os, sys +sys.path.insert(0, "/work") +from src.SpecificModels.ctgan_joblib_parallel_cap import apply_parallel_cap_from_env +apply_parallel_cap_from_env() +import pandas as pd +from ctgan.data import read_csv +from ctgan.synthesizers.tvae import TVAE + +# Keep transform stage parallelism bounded for stability on shared host. +os.environ.setdefault("LOKY_MAX_CPU_COUNT", "8") +os.environ.setdefault("OPENBLAS_NUM_THREADS", "8") +os.environ.setdefault("MKL_NUM_THREADS", "8") +_nj = (os.environ.get("TVAE_CTGAN_JOBTRANS_N_JOBS") or "").strip() +if _nj: + print("[TVAE] joblib Parallel cap ON, TVAE_CTGAN_JOBTRANS_N_JOBS=" + _nj) +else: + print("[TVAE] joblib Parallel cap OFF (unset TVAE_CTGAN_JOBTRANS_N_JOBS)") +print("[TVAE] LOKY_MAX_CPU_COUNT=" + str(os.environ.get("LOKY_MAX_CPU_COUNT", ""))) + +csv_path = "/work/output-Benchmark-trainonly-v1/c2/tvae/tvae-c2-20260504_173008/staged/public/train.csv" +meta_path = "/work/output-Benchmark-trainonly-v1/c2/tvae/tvae-c2-20260504_173008/tvae_metadata.json" +save_path = "/work/output-Benchmark-trainonly-v1/c2/tvae/tvae-c2-20260504_173008/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/timecost/c2/tvae/tvae-c2-20260504_173008/gen_20260504_173024.log b/timecost/c2/tvae/tvae-c2-20260504_173008/gen_20260504_173024.log new file mode 100644 index 0000000000000000000000000000000000000000..53d08cd059dddaa7aff8bae5458dce3fa0b5ab7e --- /dev/null +++ b/timecost/c2/tvae/tvae-c2-20260504_173008/gen_20260504_173024.log @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:c250d16c78bb78776dfd39677e43fa301524a14766e56dfb776757716b41ad3c +size 404 diff --git a/timecost/c2/tvae/tvae-c2-20260504_173008/input_snapshot.json b/timecost/c2/tvae/tvae-c2-20260504_173008/input_snapshot.json new file mode 100644 index 0000000000000000000000000000000000000000..9e28a5421f2176e174a0659e66a40054269fb2ac --- /dev/null +++ b/timecost/c2/tvae/tvae-c2-20260504_173008/input_snapshot.json @@ -0,0 +1,36 @@ +{ + "dataset_id": "c2", + "model": "tvae", + "inputs": { + "train_csv": { + "path": "/data/jialinzhang/SynthesizePipeline-server/DatasetNew/c2/c2-train.csv", + "exists": true, + "size": 42948, + "sha256": "17bc560fa96bd00fb3b526e1e65bc91210b701d0d0a4e8bb9b4c5196cab56def" + }, + "val_csv": { + "path": "/data/jialinzhang/SynthesizePipeline-server/DatasetNew/c2/c2-val.csv", + "exists": true, + "size": 5349, + "sha256": "61e565eca62e65a7dccd9d51039a3170413379e10fc494e25870e7c4294863c9" + }, + "test_csv": { + "path": "/data/jialinzhang/SynthesizePipeline-server/DatasetNew/c2/c2-test.csv", + "exists": true, + "size": 5448, + "sha256": "cbcbb062a1faf5fa44b66c80532baa229e05b94fc42137269761e6c6d84af20a" + }, + "profile_json": { + "path": "/data/jialinzhang/SynthesizePipeline-server/DatasetNew/artifacts/data_core/tabular/c2/c2-dataset_profile.json", + "exists": true, + "size": 3240, + "sha256": "526b7163b2076c93c0bf4638438081ee8a6907065d5b608faa40d1a3dbc2a27b" + }, + "contract_json": { + "path": "/data/jialinzhang/SynthesizePipeline-server/DatasetNew/artifacts/data_core/tabular/c2/c2-dataset_contract_v1.json", + "exists": true, + "size": 3731, + "sha256": "fb595a876054c2ee9b4e10cfe83a5691588de1d25466cbb9d473c18ad3604009" + } + } +} \ No newline at end of file diff --git a/timecost/c2/tvae/tvae-c2-20260504_173008/models_300epochs/train_20260504_173008.log b/timecost/c2/tvae/tvae-c2-20260504_173008/models_300epochs/train_20260504_173008.log new file mode 100644 index 0000000000000000000000000000000000000000..4f1bc8a0c8aa1472b5b5a147d542eb71dee6b421 --- /dev/null +++ b/timecost/c2/tvae/tvae-c2-20260504_173008/models_300epochs/train_20260504_173008.log @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:c1c352ed86bd6646a32996cf14ef89e36f1c70492c504f33136461af759d97f8 +size 531 diff --git a/timecost/c2/tvae/tvae-c2-20260504_173008/models_300epochs/tvae_300epochs.pt b/timecost/c2/tvae/tvae-c2-20260504_173008/models_300epochs/tvae_300epochs.pt new file mode 100644 index 0000000000000000000000000000000000000000..601624c018769994626fca7acae79f71da20202b --- /dev/null +++ b/timecost/c2/tvae/tvae-c2-20260504_173008/models_300epochs/tvae_300epochs.pt @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:359d4ce6570b67da168f59f79a24d6afcc861aaf7416c29c0ad54e031827ea1b +size 344876 diff --git a/timecost/c2/tvae/tvae-c2-20260504_173008/public_gate/normalized_schema_snapshot.json b/timecost/c2/tvae/tvae-c2-20260504_173008/public_gate/normalized_schema_snapshot.json new file mode 100644 index 0000000000000000000000000000000000000000..689b1d00d96508e44ba40e58dc4560e19afc2b3b --- /dev/null +++ b/timecost/c2/tvae/tvae-c2-20260504_173008/public_gate/normalized_schema_snapshot.json @@ -0,0 +1,144 @@ +{ + "dataset_id": "c2", + "target_column": "class", + "task_type": "classification", + "columns": [ + { + "name": "buying", + "role": "feature", + "semantic_type": "categorical", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 4, + "unique_ratio": 0.002894, + "example_values": [ + "vhigh", + "med", + "high", + "low" + ] + } + }, + { + "name": "maint", + "role": "feature", + "semantic_type": "categorical", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 4, + "unique_ratio": 0.002894, + "example_values": [ + "vhigh", + "low", + "med", + "high" + ] + } + }, + { + "name": "doors", + "role": "feature", + "semantic_type": "categorical", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 4, + "unique_ratio": 0.002894, + "example_values": [ + "2", + "5more", + "3", + "4" + ] + } + }, + { + "name": "persons", + "role": "feature", + "semantic_type": "categorical", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 3, + "unique_ratio": 0.002171, + "example_values": [ + "2", + "4", + "more" + ] + } + }, + { + "name": "lug_boot", + "role": "feature", + "semantic_type": "categorical", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 3, + "unique_ratio": 0.002171, + "example_values": [ + "small", + "big", + "med" + ] + } + }, + { + "name": "safety", + "role": "feature", + "semantic_type": "categorical", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 3, + "unique_ratio": 0.002171, + "example_values": [ + "low", + "high", + "med" + ] + } + }, + { + "name": "class", + "role": "target", + "semantic_type": "categorical", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 4, + "unique_ratio": 0.002894, + "example_values": [ + "unacc", + "good", + "acc", + "vgood" + ] + } + } + ] +} \ No newline at end of file diff --git a/timecost/c2/tvae/tvae-c2-20260504_173008/public_gate/public_gate_report.json b/timecost/c2/tvae/tvae-c2-20260504_173008/public_gate/public_gate_report.json new file mode 100644 index 0000000000000000000000000000000000000000..2e4cdcb2a4e28e40d59b17a83e773f622b7636a5 --- /dev/null +++ b/timecost/c2/tvae/tvae-c2-20260504_173008/public_gate/public_gate_report.json @@ -0,0 +1,37 @@ +{ + "dataset_id": "c2", + "status": "pass", + "checks": [ + { + "check_id": "PG001_csv_parse_ok", + "status": "pass" + }, + { + "check_id": "PG002_split_header_consistent", + "status": "pass" + }, + { + "check_id": "PG003_profile_header_match", + "status": "pass" + }, + { + "check_id": "PG004_missing_token_normalized", + "status": "pass" + }, + { + "check_id": "PG005_semantic_type_validated", + "status": "pass" + }, + { + "check_id": "PG006_target_defined_and_valid", + "status": "pass" + } + ], + "target_column": "class", + "task_type": "classification", + "input_splits": { + "train": "/data/jialinzhang/SynthesizePipeline-server/DatasetNew/c2/c2-train.csv", + "val": "/data/jialinzhang/SynthesizePipeline-server/DatasetNew/c2/c2-val.csv", + "test": "/data/jialinzhang/SynthesizePipeline-server/DatasetNew/c2/c2-test.csv" + } +} \ No newline at end of file diff --git a/timecost/c2/tvae/tvae-c2-20260504_173008/public_gate/staged_input_manifest.json b/timecost/c2/tvae/tvae-c2-20260504_173008/public_gate/staged_input_manifest.json new file mode 100644 index 0000000000000000000000000000000000000000..34b8b885d16936dabc4bfa6ae10d9902d0dcbe1e --- /dev/null +++ b/timecost/c2/tvae/tvae-c2-20260504_173008/public_gate/staged_input_manifest.json @@ -0,0 +1,149 @@ +{ + "dataset_id": "c2", + "target_column": "class", + "task_type": "classification", + "train_csv": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/c2/tvae/tvae-c2-20260504_173008/staged/public/train.csv", + "val_csv": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/c2/tvae/tvae-c2-20260504_173008/staged/public/val.csv", + "test_csv": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/c2/tvae/tvae-c2-20260504_173008/staged/public/test.csv", + "features_json": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/c2/tvae/tvae-c2-20260504_173008/staged/public/staged_features.json", + "public_gate_report": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/c2/tvae/tvae-c2-20260504_173008/public_gate/public_gate_report.json", + "column_schema": [ + { + "name": "buying", + "role": "feature", + "semantic_type": "categorical", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 4, + "unique_ratio": 0.002894, + "example_values": [ + "vhigh", + "med", + "high", + "low" + ] + } + }, + { + "name": "maint", + "role": "feature", + "semantic_type": "categorical", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 4, + "unique_ratio": 0.002894, + "example_values": [ + "vhigh", + "low", + "med", + "high" + ] + } + }, + { + "name": "doors", + "role": "feature", + "semantic_type": "categorical", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 4, + "unique_ratio": 0.002894, + "example_values": [ + "2", + "5more", + "3", + "4" + ] + } + }, + { + "name": "persons", + "role": "feature", + "semantic_type": "categorical", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 3, + "unique_ratio": 0.002171, + "example_values": [ + "2", + "4", + "more" + ] + } + }, + { + "name": "lug_boot", + "role": "feature", + "semantic_type": "categorical", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 3, + "unique_ratio": 0.002171, + "example_values": [ + "small", + "big", + "med" + ] + } + }, + { + "name": "safety", + "role": "feature", + "semantic_type": "categorical", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 3, + "unique_ratio": 0.002171, + "example_values": [ + "low", + "high", + "med" + ] + } + }, + { + "name": "class", + "role": "target", + "semantic_type": "categorical", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 4, + "unique_ratio": 0.002894, + "example_values": [ + "unacc", + "good", + "acc", + "vgood" + ] + } + } + ] +} \ No newline at end of file diff --git a/timecost/c2/tvae/tvae-c2-20260504_173008/run_config.json b/timecost/c2/tvae/tvae-c2-20260504_173008/run_config.json new file mode 100644 index 0000000000000000000000000000000000000000..7335c4ba5feedfd103bfd4c81cc612041c2e4e81 --- /dev/null +++ b/timecost/c2/tvae/tvae-c2-20260504_173008/run_config.json @@ -0,0 +1,40 @@ +{ + "schema_version": 1, + "recorded_at": "2026-05-04T17:30:08", + "dataset_id": "c2", + "model": "tvae", + "work_dir": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/c2/tvae/tvae-c2-20260504_173008", + "dataset_source_requested": "new", + "dataset_source_resolved": "new", + "cli_args": { + "model": "tvae", + "dataset": "c2", + "dataset_source": "new", + "train": true, + "generate": true, + "num_rows": 0, + "epochs": null, + "output_dir": null, + "model_dir": null, + "work_dir": null, + "resume": false, + "no_stats": false + }, + "resolved": { + "num_rows": 1382, + "model_path": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/c2/tvae/tvae-c2-20260504_173008/models_300epochs/tvae_300epochs.pt", + "output_csv": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/c2/tvae/tvae-c2-20260504_173008/tvae-c2-1382-20260504_173024.csv" + }, + "input_artifacts": { + "public_gate_report": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/c2/tvae/tvae-c2-20260504_173008/public_gate/public_gate_report.json", + "public_manifest": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/c2/tvae/tvae-c2-20260504_173008/public_gate/staged_input_manifest.json", + "model_manifest": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/c2/tvae/tvae-c2-20260504_173008/staged/tvae/model_input_manifest.json", + "train_csv": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/c2/tvae/tvae-c2-20260504_173008/staged/public/train.csv", + "features_json": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/c2/tvae/tvae-c2-20260504_173008/staged/public/staged_features.json", + "target_column": "class", + "task_type": "classification" + }, + "env_overrides": { + "BENCHMARK_TVAE_GPUS": "device=3" + } +} \ No newline at end of file diff --git a/timecost/c2/tvae/tvae-c2-20260504_173008/runtime_result.json b/timecost/c2/tvae/tvae-c2-20260504_173008/runtime_result.json new file mode 100644 index 0000000000000000000000000000000000000000..22be744ff183e559b6ad1a680776340fac9c465e --- /dev/null +++ b/timecost/c2/tvae/tvae-c2-20260504_173008/runtime_result.json @@ -0,0 +1,27 @@ +{ + "dataset_id": "c2", + "model": "tvae", + "run_id": "tvae-c2-20260504_173008", + "public_gate_status": "pass", + "adapter_ready_status": "pass", + "train_status": "success", + "generate_status": "success", + "reason_code": null, + "reason_detail": null, + "artifacts": { + "synthetic_csv": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/c2/tvae/tvae-c2-20260504_173008/tvae-c2-1382-20260504_173024.csv", + "model_path": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/c2/tvae/tvae-c2-20260504_173008/models_300epochs/tvae_300epochs.pt" + }, + "timings": { + "train": { + "started_at": "2026-05-04T17:30:08", + "ended_at": "2026-05-04T17:30:24", + "duration_sec": 15.956 + }, + "generate": { + "started_at": "2026-05-04T17:30:24", + "ended_at": "2026-05-04T17:30:30", + "duration_sec": 5.259 + } + } +} \ No newline at end of file diff --git a/timecost/c2/tvae/tvae-c2-20260504_173008/staged/public/staged_features.json b/timecost/c2/tvae/tvae-c2-20260504_173008/staged/public/staged_features.json new file mode 100644 index 0000000000000000000000000000000000000000..61783861dd5de501592f76acb0469cf3f3b2622a --- /dev/null +++ b/timecost/c2/tvae/tvae-c2-20260504_173008/staged/public/staged_features.json @@ -0,0 +1,37 @@ +[ + { + "feature_name": "buying", + "data_type": "categorical", + "is_target": false + }, + { + "feature_name": "maint", + "data_type": "categorical", + "is_target": false + }, + { + "feature_name": "doors", + "data_type": "categorical", + "is_target": false + }, + { + "feature_name": "persons", + "data_type": "categorical", + "is_target": false + }, + { + "feature_name": "lug_boot", + "data_type": "categorical", + "is_target": false + }, + { + "feature_name": "safety", + "data_type": "categorical", + "is_target": false + }, + { + "feature_name": "class", + "data_type": "categorical", + "is_target": true + } +] \ No newline at end of file diff --git a/timecost/c2/tvae/tvae-c2-20260504_173008/staged/public/test.csv b/timecost/c2/tvae/tvae-c2-20260504_173008/staged/public/test.csv new file mode 100644 index 0000000000000000000000000000000000000000..392a0d7189a34d8f13ecf20a99d64b03230d517c --- /dev/null +++ b/timecost/c2/tvae/tvae-c2-20260504_173008/staged/public/test.csv @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:b48114a7d0bc5bd9a07920f903c8d4aba8bf98bf2a66a050da03588b0245ca73 +size 5273 diff --git a/timecost/c2/tvae/tvae-c2-20260504_173008/staged/public/train.csv b/timecost/c2/tvae/tvae-c2-20260504_173008/staged/public/train.csv new file mode 100644 index 0000000000000000000000000000000000000000..da4f4d55134eebc0e51157d0d467536371db1484 --- /dev/null +++ b/timecost/c2/tvae/tvae-c2-20260504_173008/staged/public/train.csv @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:4aed00c2c2b3f88a55a7ebff31b2e1b5e0e32fb0a7267e0b9d2779cd23e434dd +size 41565 diff --git a/timecost/c2/tvae/tvae-c2-20260504_173008/staged/public/val.csv b/timecost/c2/tvae/tvae-c2-20260504_173008/staged/public/val.csv new file mode 100644 index 0000000000000000000000000000000000000000..af8caf7ee42524188534a3daf32996dc491952d9 --- /dev/null +++ b/timecost/c2/tvae/tvae-c2-20260504_173008/staged/public/val.csv @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:26e90c1170a57a14c05832ac88027722b1f3848f9662c7c09ef7c93dcba4cc01 +size 5176 diff --git a/timecost/c2/tvae/tvae-c2-20260504_173008/staged/tvae/adapter_report.json b/timecost/c2/tvae/tvae-c2-20260504_173008/staged/tvae/adapter_report.json new file mode 100644 index 0000000000000000000000000000000000000000..4242764ed766368329eb87e61673e22e2b5b6af8 --- /dev/null +++ b/timecost/c2/tvae/tvae-c2-20260504_173008/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-Benchmark-trainonly-v1/c2/tvae/tvae-c2-20260504_173008/staged/tvae/model_input_manifest.json" +} \ No newline at end of file diff --git a/timecost/c2/tvae/tvae-c2-20260504_173008/staged/tvae/adapter_transforms_applied.json b/timecost/c2/tvae/tvae-c2-20260504_173008/staged/tvae/adapter_transforms_applied.json new file mode 100644 index 0000000000000000000000000000000000000000..0637a088a01e8ddab3bf3fa98dbe804cbde1a0dc --- /dev/null +++ b/timecost/c2/tvae/tvae-c2-20260504_173008/staged/tvae/adapter_transforms_applied.json @@ -0,0 +1 @@ +[] \ No newline at end of file diff --git a/timecost/c2/tvae/tvae-c2-20260504_173008/staged/tvae/model_input_manifest.json b/timecost/c2/tvae/tvae-c2-20260504_173008/staged/tvae/model_input_manifest.json new file mode 100644 index 0000000000000000000000000000000000000000..f04fd5c7b319044a938f125aa99765abe6589a9c --- /dev/null +++ b/timecost/c2/tvae/tvae-c2-20260504_173008/staged/tvae/model_input_manifest.json @@ -0,0 +1,151 @@ +{ + "dataset_id": "c2", + "model": "tvae", + "target_column": "class", + "task_type": "classification", + "column_schema": [ + { + "name": "buying", + "role": "feature", + "semantic_type": "categorical", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 4, + "unique_ratio": 0.002894, + "example_values": [ + "vhigh", + "med", + "high", + "low" + ] + } + }, + { + "name": "maint", + "role": "feature", + "semantic_type": "categorical", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 4, + "unique_ratio": 0.002894, + "example_values": [ + "vhigh", + "low", + "med", + "high" + ] + } + }, + { + "name": "doors", + "role": "feature", + "semantic_type": "categorical", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 4, + "unique_ratio": 0.002894, + "example_values": [ + "2", + "5more", + "3", + "4" + ] + } + }, + { + "name": "persons", + "role": "feature", + "semantic_type": "categorical", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 3, + "unique_ratio": 0.002171, + "example_values": [ + "2", + "4", + "more" + ] + } + }, + { + "name": "lug_boot", + "role": "feature", + "semantic_type": "categorical", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 3, + "unique_ratio": 0.002171, + "example_values": [ + "small", + "big", + "med" + ] + } + }, + { + "name": "safety", + "role": "feature", + "semantic_type": "categorical", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 3, + "unique_ratio": 0.002171, + "example_values": [ + "low", + "high", + "med" + ] + } + }, + { + "name": "class", + "role": "target", + "semantic_type": "categorical", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 4, + "unique_ratio": 0.002894, + "example_values": [ + "unacc", + "good", + "acc", + "vgood" + ] + } + } + ], + "public_manifest": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/c2/tvae/tvae-c2-20260504_173008/public_gate/staged_input_manifest.json", + "train_csv": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/c2/tvae/tvae-c2-20260504_173008/staged/public/train.csv", + "val_csv": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/c2/tvae/tvae-c2-20260504_173008/staged/public/val.csv", + "test_csv": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/c2/tvae/tvae-c2-20260504_173008/staged/public/test.csv", + "features_json": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/c2/tvae/tvae-c2-20260504_173008/staged/public/staged_features.json", + "public_gate_report": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/c2/tvae/tvae-c2-20260504_173008/public_gate/public_gate_report.json" +} \ No newline at end of file diff --git a/timecost/c2/tvae/tvae-c2-20260504_173008/tvae-c2-1382-20260504_173024.csv b/timecost/c2/tvae/tvae-c2-20260504_173008/tvae-c2-1382-20260504_173024.csv new file mode 100644 index 0000000000000000000000000000000000000000..0facc9d2d09dd192dcf6aaf22fef2e2ec709388b --- /dev/null +++ b/timecost/c2/tvae/tvae-c2-20260504_173008/tvae-c2-1382-20260504_173024.csv @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:5c13329eb5fa57144da4e37e2c72a488103b21bb242e3711339b259178094e71 +size 41572 diff --git a/timecost/c2/tvae/tvae-c2-20260504_173008/tvae_metadata.json b/timecost/c2/tvae/tvae-c2-20260504_173008/tvae_metadata.json new file mode 100644 index 0000000000000000000000000000000000000000..183d627ebc98e89233655ec98c9dcbc528c4c328 --- /dev/null +++ b/timecost/c2/tvae/tvae-c2-20260504_173008/tvae_metadata.json @@ -0,0 +1,32 @@ +{ + "columns": [ + { + "name": "buying", + "type": "categorical" + }, + { + "name": "maint", + "type": "categorical" + }, + { + "name": "doors", + "type": "categorical" + }, + { + "name": "persons", + "type": "categorical" + }, + { + "name": "lug_boot", + "type": "categorical" + }, + { + "name": "safety", + "type": "categorical" + }, + { + "name": "class", + "type": "categorical" + } + ] +} \ No newline at end of file diff --git a/timecost/c2/tvae/tvae-c2-20260504_174013/_tvae_generate.py b/timecost/c2/tvae/tvae-c2-20260504_174013/_tvae_generate.py new file mode 100644 index 0000000000000000000000000000000000000000..3286ed3675bc2e6dab9822c66720b2afe05caa4d --- /dev/null +++ b/timecost/c2/tvae/tvae-c2-20260504_174013/_tvae_generate.py @@ -0,0 +1,23 @@ +import os, sys +sys.path.insert(0, "/work") +from src.SpecificModels.ctgan_joblib_parallel_cap import apply_parallel_cap_from_env +apply_parallel_cap_from_env() +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 +os.environ.setdefault("LOKY_MAX_CPU_COUNT", "8") +os.environ.setdefault("OPENBLAS_NUM_THREADS", "8") +os.environ.setdefault("MKL_NUM_THREADS", "8") +model = TVAE.load("/work/output-Benchmark-trainonly-v1/c2/tvae/tvae-c2-20260504_174013/models_300epochs/tvae_300epochs.pt") +total = 1382 +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-Benchmark-trainonly-v1/c2/tvae/tvae-c2-20260504_174013/tvae-c2-1382-20260504_174029.csv", index=False) +print(f"[TVAE] Generated {total} rows (chunks={len(parts)}) -> /work/output-Benchmark-trainonly-v1/c2/tvae/tvae-c2-20260504_174013/tvae-c2-1382-20260504_174029.csv") diff --git a/timecost/c2/tvae/tvae-c2-20260504_174013/_tvae_train.py b/timecost/c2/tvae/tvae-c2-20260504_174013/_tvae_train.py new file mode 100644 index 0000000000000000000000000000000000000000..907e254de6937dd18f07ac7af235f221f36bb32a --- /dev/null +++ b/timecost/c2/tvae/tvae-c2-20260504_174013/_tvae_train.py @@ -0,0 +1,39 @@ +import json, os, sys +sys.path.insert(0, "/work") +from src.SpecificModels.ctgan_joblib_parallel_cap import apply_parallel_cap_from_env +apply_parallel_cap_from_env() +import pandas as pd +from ctgan.data import read_csv +from ctgan.synthesizers.tvae import TVAE + +# Keep transform stage parallelism bounded for stability on shared host. +os.environ.setdefault("LOKY_MAX_CPU_COUNT", "8") +os.environ.setdefault("OPENBLAS_NUM_THREADS", "8") +os.environ.setdefault("MKL_NUM_THREADS", "8") +_nj = (os.environ.get("TVAE_CTGAN_JOBTRANS_N_JOBS") or "").strip() +if _nj: + print("[TVAE] joblib Parallel cap ON, TVAE_CTGAN_JOBTRANS_N_JOBS=" + _nj) +else: + print("[TVAE] joblib Parallel cap OFF (unset TVAE_CTGAN_JOBTRANS_N_JOBS)") +print("[TVAE] LOKY_MAX_CPU_COUNT=" + str(os.environ.get("LOKY_MAX_CPU_COUNT", ""))) + +csv_path = "/work/output-Benchmark-trainonly-v1/c2/tvae/tvae-c2-20260504_174013/staged/public/train.csv" +meta_path = "/work/output-Benchmark-trainonly-v1/c2/tvae/tvae-c2-20260504_174013/tvae_metadata.json" +save_path = "/work/output-Benchmark-trainonly-v1/c2/tvae/tvae-c2-20260504_174013/models_300epochs/tvae_300epochs.pt" +epochs = int(os.environ.get("TVAE_EPOCHS", 300)) +batch_size = int(os.environ.get("TVAE_BATCH_SIZE", "500")) +embedding_dim = int(os.environ.get("TVAE_EMBEDDING_DIM", "128")) +def _parse_dims(name, default): + raw = (os.environ.get(name) or "").strip() + if not raw: + return default + return tuple(int(x.strip()) for x in raw.split(",") if x.strip()) +compress_dims = _parse_dims("TVAE_COMPRESS_DIMS", (128, 128)) +decompress_dims = _parse_dims("TVAE_DECOMPRESS_DIMS", (128, 128)) + +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}, batch_size={batch_size}, embedding_dim={embedding_dim}, compress_dims={compress_dims}, decompress_dims={decompress_dims}") +model = TVAE(epochs=epochs, batch_size=batch_size, embedding_dim=embedding_dim, compress_dims=compress_dims, decompress_dims=decompress_dims) +model.fit(data, discrete_columns) +model.save(save_path) +print(f"[TVAE] Model saved -> {save_path}") diff --git a/timecost/c2/tvae/tvae-c2-20260504_174013/gen_20260504_174029.log b/timecost/c2/tvae/tvae-c2-20260504_174013/gen_20260504_174029.log new file mode 100644 index 0000000000000000000000000000000000000000..a1b1e990c2280e5c69b5bb23bc9d3b47e6938193 --- /dev/null +++ b/timecost/c2/tvae/tvae-c2-20260504_174013/gen_20260504_174029.log @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:56d72e0efac984702b081bb48d7cb946ea3691388616e818ff414e6e231d5453 +size 404 diff --git a/timecost/c2/tvae/tvae-c2-20260504_174013/input_snapshot.json b/timecost/c2/tvae/tvae-c2-20260504_174013/input_snapshot.json new file mode 100644 index 0000000000000000000000000000000000000000..9e28a5421f2176e174a0659e66a40054269fb2ac --- /dev/null +++ b/timecost/c2/tvae/tvae-c2-20260504_174013/input_snapshot.json @@ -0,0 +1,36 @@ +{ + "dataset_id": "c2", + "model": "tvae", + "inputs": { + "train_csv": { + "path": "/data/jialinzhang/SynthesizePipeline-server/DatasetNew/c2/c2-train.csv", + "exists": true, + "size": 42948, + "sha256": "17bc560fa96bd00fb3b526e1e65bc91210b701d0d0a4e8bb9b4c5196cab56def" + }, + "val_csv": { + "path": "/data/jialinzhang/SynthesizePipeline-server/DatasetNew/c2/c2-val.csv", + "exists": true, + "size": 5349, + "sha256": "61e565eca62e65a7dccd9d51039a3170413379e10fc494e25870e7c4294863c9" + }, + "test_csv": { + "path": "/data/jialinzhang/SynthesizePipeline-server/DatasetNew/c2/c2-test.csv", + "exists": true, + "size": 5448, + "sha256": "cbcbb062a1faf5fa44b66c80532baa229e05b94fc42137269761e6c6d84af20a" + }, + "profile_json": { + "path": "/data/jialinzhang/SynthesizePipeline-server/DatasetNew/artifacts/data_core/tabular/c2/c2-dataset_profile.json", + "exists": true, + "size": 3240, + "sha256": "526b7163b2076c93c0bf4638438081ee8a6907065d5b608faa40d1a3dbc2a27b" + }, + "contract_json": { + "path": "/data/jialinzhang/SynthesizePipeline-server/DatasetNew/artifacts/data_core/tabular/c2/c2-dataset_contract_v1.json", + "exists": true, + "size": 3731, + "sha256": "fb595a876054c2ee9b4e10cfe83a5691588de1d25466cbb9d473c18ad3604009" + } + } +} \ No newline at end of file diff --git a/timecost/c2/tvae/tvae-c2-20260504_174013/models_300epochs/train_20260504_174013.log b/timecost/c2/tvae/tvae-c2-20260504_174013/models_300epochs/train_20260504_174013.log new file mode 100644 index 0000000000000000000000000000000000000000..bad1b646c923e3b9a8e91ad353281c3cc4607689 --- /dev/null +++ b/timecost/c2/tvae/tvae-c2-20260504_174013/models_300epochs/train_20260504_174013.log @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:0b25cd4019839ccaca05dcab067fe07c9a8293c777a3e34ded19ab97c8e49e17 +size 620 diff --git a/timecost/c2/tvae/tvae-c2-20260504_174013/models_300epochs/tvae_300epochs.pt b/timecost/c2/tvae/tvae-c2-20260504_174013/models_300epochs/tvae_300epochs.pt new file mode 100644 index 0000000000000000000000000000000000000000..08961776a4f44dbaf6745845c6423443d3fbed2b --- /dev/null +++ b/timecost/c2/tvae/tvae-c2-20260504_174013/models_300epochs/tvae_300epochs.pt @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:a6cb2b979aca8616d64810c710e8de8e8ca165a0d1117a54c4bc6ba60ff36a79 +size 344876 diff --git a/timecost/c2/tvae/tvae-c2-20260504_174013/public_gate/normalized_schema_snapshot.json b/timecost/c2/tvae/tvae-c2-20260504_174013/public_gate/normalized_schema_snapshot.json new file mode 100644 index 0000000000000000000000000000000000000000..689b1d00d96508e44ba40e58dc4560e19afc2b3b --- /dev/null +++ b/timecost/c2/tvae/tvae-c2-20260504_174013/public_gate/normalized_schema_snapshot.json @@ -0,0 +1,144 @@ +{ + "dataset_id": "c2", + "target_column": "class", + "task_type": "classification", + "columns": [ + { + "name": "buying", + "role": "feature", + "semantic_type": "categorical", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 4, + "unique_ratio": 0.002894, + "example_values": [ + "vhigh", + "med", + "high", + "low" + ] + } + }, + { + "name": "maint", + "role": "feature", + "semantic_type": "categorical", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 4, + "unique_ratio": 0.002894, + "example_values": [ + "vhigh", + "low", + "med", + "high" + ] + } + }, + { + "name": "doors", + "role": "feature", + "semantic_type": "categorical", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 4, + "unique_ratio": 0.002894, + "example_values": [ + "2", + "5more", + "3", + "4" + ] + } + }, + { + "name": "persons", + "role": "feature", + "semantic_type": "categorical", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 3, + "unique_ratio": 0.002171, + "example_values": [ + "2", + "4", + "more" + ] + } + }, + { + "name": "lug_boot", + "role": "feature", + "semantic_type": "categorical", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 3, + "unique_ratio": 0.002171, + "example_values": [ + "small", + "big", + "med" + ] + } + }, + { + "name": "safety", + "role": "feature", + "semantic_type": "categorical", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 3, + "unique_ratio": 0.002171, + "example_values": [ + "low", + "high", + "med" + ] + } + }, + { + "name": "class", + "role": "target", + "semantic_type": "categorical", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 4, + "unique_ratio": 0.002894, + "example_values": [ + "unacc", + "good", + "acc", + "vgood" + ] + } + } + ] +} \ No newline at end of file diff --git a/timecost/c2/tvae/tvae-c2-20260504_174013/public_gate/public_gate_report.json b/timecost/c2/tvae/tvae-c2-20260504_174013/public_gate/public_gate_report.json new file mode 100644 index 0000000000000000000000000000000000000000..2e4cdcb2a4e28e40d59b17a83e773f622b7636a5 --- /dev/null +++ b/timecost/c2/tvae/tvae-c2-20260504_174013/public_gate/public_gate_report.json @@ -0,0 +1,37 @@ +{ + "dataset_id": "c2", + "status": "pass", + "checks": [ + { + "check_id": "PG001_csv_parse_ok", + "status": "pass" + }, + { + "check_id": "PG002_split_header_consistent", + "status": "pass" + }, + { + "check_id": "PG003_profile_header_match", + "status": "pass" + }, + { + "check_id": "PG004_missing_token_normalized", + "status": "pass" + }, + { + "check_id": "PG005_semantic_type_validated", + "status": "pass" + }, + { + "check_id": "PG006_target_defined_and_valid", + "status": "pass" + } + ], + "target_column": "class", + "task_type": "classification", + "input_splits": { + "train": "/data/jialinzhang/SynthesizePipeline-server/DatasetNew/c2/c2-train.csv", + "val": "/data/jialinzhang/SynthesizePipeline-server/DatasetNew/c2/c2-val.csv", + "test": "/data/jialinzhang/SynthesizePipeline-server/DatasetNew/c2/c2-test.csv" + } +} \ No newline at end of file diff --git a/timecost/c2/tvae/tvae-c2-20260504_174013/public_gate/staged_input_manifest.json b/timecost/c2/tvae/tvae-c2-20260504_174013/public_gate/staged_input_manifest.json new file mode 100644 index 0000000000000000000000000000000000000000..663ecf4e842af7f358042d1ff125793c36e9c902 --- /dev/null +++ b/timecost/c2/tvae/tvae-c2-20260504_174013/public_gate/staged_input_manifest.json @@ -0,0 +1,149 @@ +{ + "dataset_id": "c2", + "target_column": "class", + "task_type": "classification", + "train_csv": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/c2/tvae/tvae-c2-20260504_174013/staged/public/train.csv", + "val_csv": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/c2/tvae/tvae-c2-20260504_174013/staged/public/val.csv", + "test_csv": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/c2/tvae/tvae-c2-20260504_174013/staged/public/test.csv", + "features_json": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/c2/tvae/tvae-c2-20260504_174013/staged/public/staged_features.json", + "public_gate_report": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/c2/tvae/tvae-c2-20260504_174013/public_gate/public_gate_report.json", + "column_schema": [ + { + "name": "buying", + "role": "feature", + "semantic_type": "categorical", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 4, + "unique_ratio": 0.002894, + "example_values": [ + "vhigh", + "med", + "high", + "low" + ] + } + }, + { + "name": "maint", + "role": "feature", + "semantic_type": "categorical", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 4, + "unique_ratio": 0.002894, + "example_values": [ + "vhigh", + "low", + "med", + "high" + ] + } + }, + { + "name": "doors", + "role": "feature", + "semantic_type": "categorical", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 4, + "unique_ratio": 0.002894, + "example_values": [ + "2", + "5more", + "3", + "4" + ] + } + }, + { + "name": "persons", + "role": "feature", + "semantic_type": "categorical", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 3, + "unique_ratio": 0.002171, + "example_values": [ + "2", + "4", + "more" + ] + } + }, + { + "name": "lug_boot", + "role": "feature", + "semantic_type": "categorical", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 3, + "unique_ratio": 0.002171, + "example_values": [ + "small", + "big", + "med" + ] + } + }, + { + "name": "safety", + "role": "feature", + "semantic_type": "categorical", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 3, + "unique_ratio": 0.002171, + "example_values": [ + "low", + "high", + "med" + ] + } + }, + { + "name": "class", + "role": "target", + "semantic_type": "categorical", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 4, + "unique_ratio": 0.002894, + "example_values": [ + "unacc", + "good", + "acc", + "vgood" + ] + } + } + ] +} \ No newline at end of file diff --git a/timecost/c2/tvae/tvae-c2-20260504_174013/run_config.json b/timecost/c2/tvae/tvae-c2-20260504_174013/run_config.json new file mode 100644 index 0000000000000000000000000000000000000000..6a076fb31e3df33d38747e4d6395e6be885e9eb4 --- /dev/null +++ b/timecost/c2/tvae/tvae-c2-20260504_174013/run_config.json @@ -0,0 +1,45 @@ +{ + "schema_version": 1, + "recorded_at": "2026-05-04T17:40:13", + "dataset_id": "c2", + "model": "tvae", + "work_dir": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/c2/tvae/tvae-c2-20260504_174013", + "dataset_source_requested": "new", + "dataset_source_resolved": "new", + "cli_args": { + "model": "tvae", + "dataset": "c2", + "dataset_source": "new", + "train": true, + "generate": true, + "num_rows": 0, + "epochs": null, + "output_dir": null, + "model_dir": null, + "work_dir": null, + "resume": false, + "no_stats": false + }, + "resolved": { + "num_rows": 1382, + "model_path": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/c2/tvae/tvae-c2-20260504_174013/models_300epochs/tvae_300epochs.pt", + "output_csv": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/c2/tvae/tvae-c2-20260504_174013/tvae-c2-1382-20260504_174029.csv" + }, + "input_artifacts": { + "public_gate_report": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/c2/tvae/tvae-c2-20260504_174013/public_gate/public_gate_report.json", + "public_manifest": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/c2/tvae/tvae-c2-20260504_174013/public_gate/staged_input_manifest.json", + "model_manifest": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/c2/tvae/tvae-c2-20260504_174013/staged/tvae/model_input_manifest.json", + "train_csv": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/c2/tvae/tvae-c2-20260504_174013/staged/public/train.csv", + "features_json": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/c2/tvae/tvae-c2-20260504_174013/staged/public/staged_features.json", + "target_column": "class", + "task_type": "classification" + }, + "env_overrides": { + "BENCHMARK_TVAE_GPUS": "device=3", + "TVAE_BATCH_SIZE": "256", + "TVAE_COMPRESS_DIMS": "64,64", + "TVAE_DECOMPRESS_DIMS": "64,64", + "TVAE_EMBEDDING_DIM": "32", + "TVAE_EPOCHS": "100" + } +} \ No newline at end of file diff --git a/timecost/c2/tvae/tvae-c2-20260504_174013/runtime_result.json b/timecost/c2/tvae/tvae-c2-20260504_174013/runtime_result.json new file mode 100644 index 0000000000000000000000000000000000000000..164db63b9f9a2691769a87cde6ec4207ef8d4409 --- /dev/null +++ b/timecost/c2/tvae/tvae-c2-20260504_174013/runtime_result.json @@ -0,0 +1,27 @@ +{ + "dataset_id": "c2", + "model": "tvae", + "run_id": "tvae-c2-20260504_174013", + "public_gate_status": "pass", + "adapter_ready_status": "pass", + "train_status": "success", + "generate_status": "success", + "reason_code": null, + "reason_detail": null, + "artifacts": { + "synthetic_csv": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/c2/tvae/tvae-c2-20260504_174013/tvae-c2-1382-20260504_174029.csv", + "model_path": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/c2/tvae/tvae-c2-20260504_174013/models_300epochs/tvae_300epochs.pt" + }, + "timings": { + "train": { + "started_at": "2026-05-04T17:40:13", + "ended_at": "2026-05-04T17:40:29", + "duration_sec": 16.005 + }, + "generate": { + "started_at": "2026-05-04T17:40:29", + "ended_at": "2026-05-04T17:40:34", + "duration_sec": 5.26 + } + } +} \ No newline at end of file diff --git a/timecost/c2/tvae/tvae-c2-20260504_174013/staged/public/staged_features.json b/timecost/c2/tvae/tvae-c2-20260504_174013/staged/public/staged_features.json new file mode 100644 index 0000000000000000000000000000000000000000..61783861dd5de501592f76acb0469cf3f3b2622a --- /dev/null +++ b/timecost/c2/tvae/tvae-c2-20260504_174013/staged/public/staged_features.json @@ -0,0 +1,37 @@ +[ + { + "feature_name": "buying", + "data_type": "categorical", + "is_target": false + }, + { + "feature_name": "maint", + "data_type": "categorical", + "is_target": false + }, + { + "feature_name": "doors", + "data_type": "categorical", + "is_target": false + }, + { + "feature_name": "persons", + "data_type": "categorical", + "is_target": false + }, + { + "feature_name": "lug_boot", + "data_type": "categorical", + "is_target": false + }, + { + "feature_name": "safety", + "data_type": "categorical", + "is_target": false + }, + { + "feature_name": "class", + "data_type": "categorical", + "is_target": true + } +] \ No newline at end of file diff --git a/timecost/c2/tvae/tvae-c2-20260504_174013/staged/public/test.csv b/timecost/c2/tvae/tvae-c2-20260504_174013/staged/public/test.csv new file mode 100644 index 0000000000000000000000000000000000000000..392a0d7189a34d8f13ecf20a99d64b03230d517c --- /dev/null +++ b/timecost/c2/tvae/tvae-c2-20260504_174013/staged/public/test.csv @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:b48114a7d0bc5bd9a07920f903c8d4aba8bf98bf2a66a050da03588b0245ca73 +size 5273 diff --git a/timecost/c2/tvae/tvae-c2-20260504_174013/staged/public/train.csv b/timecost/c2/tvae/tvae-c2-20260504_174013/staged/public/train.csv new file mode 100644 index 0000000000000000000000000000000000000000..da4f4d55134eebc0e51157d0d467536371db1484 --- /dev/null +++ b/timecost/c2/tvae/tvae-c2-20260504_174013/staged/public/train.csv @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:4aed00c2c2b3f88a55a7ebff31b2e1b5e0e32fb0a7267e0b9d2779cd23e434dd +size 41565 diff --git a/timecost/c2/tvae/tvae-c2-20260504_174013/staged/public/val.csv b/timecost/c2/tvae/tvae-c2-20260504_174013/staged/public/val.csv new file mode 100644 index 0000000000000000000000000000000000000000..af8caf7ee42524188534a3daf32996dc491952d9 --- /dev/null +++ b/timecost/c2/tvae/tvae-c2-20260504_174013/staged/public/val.csv @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:26e90c1170a57a14c05832ac88027722b1f3848f9662c7c09ef7c93dcba4cc01 +size 5176 diff --git a/timecost/c2/tvae/tvae-c2-20260504_174013/staged/tvae/adapter_report.json b/timecost/c2/tvae/tvae-c2-20260504_174013/staged/tvae/adapter_report.json new file mode 100644 index 0000000000000000000000000000000000000000..d02acf7a8d601fb7def477f25e447dc0b277dcb4 --- /dev/null +++ b/timecost/c2/tvae/tvae-c2-20260504_174013/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-Benchmark-trainonly-v1/c2/tvae/tvae-c2-20260504_174013/staged/tvae/model_input_manifest.json" +} \ No newline at end of file diff --git a/timecost/c2/tvae/tvae-c2-20260504_174013/staged/tvae/adapter_transforms_applied.json b/timecost/c2/tvae/tvae-c2-20260504_174013/staged/tvae/adapter_transforms_applied.json new file mode 100644 index 0000000000000000000000000000000000000000..0637a088a01e8ddab3bf3fa98dbe804cbde1a0dc --- /dev/null +++ b/timecost/c2/tvae/tvae-c2-20260504_174013/staged/tvae/adapter_transforms_applied.json @@ -0,0 +1 @@ +[] \ No newline at end of file diff --git a/timecost/c2/tvae/tvae-c2-20260504_174013/staged/tvae/model_input_manifest.json b/timecost/c2/tvae/tvae-c2-20260504_174013/staged/tvae/model_input_manifest.json new file mode 100644 index 0000000000000000000000000000000000000000..f400cbfa46a2b6a52c93e8ade8ad35565c6c90e7 --- /dev/null +++ b/timecost/c2/tvae/tvae-c2-20260504_174013/staged/tvae/model_input_manifest.json @@ -0,0 +1,151 @@ +{ + "dataset_id": "c2", + "model": "tvae", + "target_column": "class", + "task_type": "classification", + "column_schema": [ + { + "name": "buying", + "role": "feature", + "semantic_type": "categorical", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 4, + "unique_ratio": 0.002894, + "example_values": [ + "vhigh", + "med", + "high", + "low" + ] + } + }, + { + "name": "maint", + "role": "feature", + "semantic_type": "categorical", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 4, + "unique_ratio": 0.002894, + "example_values": [ + "vhigh", + "low", + "med", + "high" + ] + } + }, + { + "name": "doors", + "role": "feature", + "semantic_type": "categorical", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 4, + "unique_ratio": 0.002894, + "example_values": [ + "2", + "5more", + "3", + "4" + ] + } + }, + { + "name": "persons", + "role": "feature", + "semantic_type": "categorical", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 3, + "unique_ratio": 0.002171, + "example_values": [ + "2", + "4", + "more" + ] + } + }, + { + "name": "lug_boot", + "role": "feature", + "semantic_type": "categorical", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 3, + "unique_ratio": 0.002171, + "example_values": [ + "small", + "big", + "med" + ] + } + }, + { + "name": "safety", + "role": "feature", + "semantic_type": "categorical", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 3, + "unique_ratio": 0.002171, + "example_values": [ + "low", + "high", + "med" + ] + } + }, + { + "name": "class", + "role": "target", + "semantic_type": "categorical", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 4, + "unique_ratio": 0.002894, + "example_values": [ + "unacc", + "good", + "acc", + "vgood" + ] + } + } + ], + "public_manifest": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/c2/tvae/tvae-c2-20260504_174013/public_gate/staged_input_manifest.json", + "train_csv": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/c2/tvae/tvae-c2-20260504_174013/staged/public/train.csv", + "val_csv": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/c2/tvae/tvae-c2-20260504_174013/staged/public/val.csv", + "test_csv": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/c2/tvae/tvae-c2-20260504_174013/staged/public/test.csv", + "features_json": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/c2/tvae/tvae-c2-20260504_174013/staged/public/staged_features.json", + "public_gate_report": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/c2/tvae/tvae-c2-20260504_174013/public_gate/public_gate_report.json" +} \ No newline at end of file diff --git a/timecost/c2/tvae/tvae-c2-20260504_174013/tvae-c2-1382-20260504_174029.csv b/timecost/c2/tvae/tvae-c2-20260504_174013/tvae-c2-1382-20260504_174029.csv new file mode 100644 index 0000000000000000000000000000000000000000..5c0427bc294d7b6a885a82a120413f02c0b6b483 --- /dev/null +++ b/timecost/c2/tvae/tvae-c2-20260504_174013/tvae-c2-1382-20260504_174029.csv @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:cb907028881b168202eadcc30313f4c70d0b390f379c1f64699c77c0cb5b1a23 +size 41983 diff --git a/timecost/c2/tvae/tvae-c2-20260504_174013/tvae_metadata.json b/timecost/c2/tvae/tvae-c2-20260504_174013/tvae_metadata.json new file mode 100644 index 0000000000000000000000000000000000000000..183d627ebc98e89233655ec98c9dcbc528c4c328 --- /dev/null +++ b/timecost/c2/tvae/tvae-c2-20260504_174013/tvae_metadata.json @@ -0,0 +1,32 @@ +{ + "columns": [ + { + "name": "buying", + "type": "categorical" + }, + { + "name": "maint", + "type": "categorical" + }, + { + "name": "doors", + "type": "categorical" + }, + { + "name": "persons", + "type": "categorical" + }, + { + "name": "lug_boot", + "type": "categorical" + }, + { + "name": "safety", + "type": "categorical" + }, + { + "name": "class", + "type": "categorical" + } + ] +} \ No newline at end of file diff --git a/timecost/c2/tvae/tvae-c2-20260504_174047/_tvae_generate.py b/timecost/c2/tvae/tvae-c2-20260504_174047/_tvae_generate.py new file mode 100644 index 0000000000000000000000000000000000000000..54301febcfdbada05a2cc11f3d8302fc4c95abfa --- /dev/null +++ b/timecost/c2/tvae/tvae-c2-20260504_174047/_tvae_generate.py @@ -0,0 +1,23 @@ +import os, sys +sys.path.insert(0, "/work") +from src.SpecificModels.ctgan_joblib_parallel_cap import apply_parallel_cap_from_env +apply_parallel_cap_from_env() +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 +os.environ.setdefault("LOKY_MAX_CPU_COUNT", "8") +os.environ.setdefault("OPENBLAS_NUM_THREADS", "8") +os.environ.setdefault("MKL_NUM_THREADS", "8") +model = TVAE.load("/work/output-Benchmark-trainonly-v1/c2/tvae/tvae-c2-20260504_174047/models_300epochs/tvae_300epochs.pt") +total = 1382 +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-Benchmark-trainonly-v1/c2/tvae/tvae-c2-20260504_174047/tvae-c2-1382-20260504_174104.csv", index=False) +print(f"[TVAE] Generated {total} rows (chunks={len(parts)}) -> /work/output-Benchmark-trainonly-v1/c2/tvae/tvae-c2-20260504_174047/tvae-c2-1382-20260504_174104.csv") diff --git a/timecost/c2/tvae/tvae-c2-20260504_174047/_tvae_train.py b/timecost/c2/tvae/tvae-c2-20260504_174047/_tvae_train.py new file mode 100644 index 0000000000000000000000000000000000000000..975f46af9bc9246f533df0df46150305c2b5913d --- /dev/null +++ b/timecost/c2/tvae/tvae-c2-20260504_174047/_tvae_train.py @@ -0,0 +1,39 @@ +import json, os, sys +sys.path.insert(0, "/work") +from src.SpecificModels.ctgan_joblib_parallel_cap import apply_parallel_cap_from_env +apply_parallel_cap_from_env() +import pandas as pd +from ctgan.data import read_csv +from ctgan.synthesizers.tvae import TVAE + +# Keep transform stage parallelism bounded for stability on shared host. +os.environ.setdefault("LOKY_MAX_CPU_COUNT", "8") +os.environ.setdefault("OPENBLAS_NUM_THREADS", "8") +os.environ.setdefault("MKL_NUM_THREADS", "8") +_nj = (os.environ.get("TVAE_CTGAN_JOBTRANS_N_JOBS") or "").strip() +if _nj: + print("[TVAE] joblib Parallel cap ON, TVAE_CTGAN_JOBTRANS_N_JOBS=" + _nj) +else: + print("[TVAE] joblib Parallel cap OFF (unset TVAE_CTGAN_JOBTRANS_N_JOBS)") +print("[TVAE] LOKY_MAX_CPU_COUNT=" + str(os.environ.get("LOKY_MAX_CPU_COUNT", ""))) + +csv_path = "/work/output-Benchmark-trainonly-v1/c2/tvae/tvae-c2-20260504_174047/staged/public/train.csv" +meta_path = "/work/output-Benchmark-trainonly-v1/c2/tvae/tvae-c2-20260504_174047/tvae_metadata.json" +save_path = "/work/output-Benchmark-trainonly-v1/c2/tvae/tvae-c2-20260504_174047/models_300epochs/tvae_300epochs.pt" +epochs = int(os.environ.get("TVAE_EPOCHS", 300)) +batch_size = int(os.environ.get("TVAE_BATCH_SIZE", "500")) +embedding_dim = int(os.environ.get("TVAE_EMBEDDING_DIM", "128")) +def _parse_dims(name, default): + raw = (os.environ.get(name) or "").strip() + if not raw: + return default + return tuple(int(x.strip()) for x in raw.split(",") if x.strip()) +compress_dims = _parse_dims("TVAE_COMPRESS_DIMS", (128, 128)) +decompress_dims = _parse_dims("TVAE_DECOMPRESS_DIMS", (128, 128)) + +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}, batch_size={batch_size}, embedding_dim={embedding_dim}, compress_dims={compress_dims}, decompress_dims={decompress_dims}") +model = TVAE(epochs=epochs, batch_size=batch_size, embedding_dim=embedding_dim, compress_dims=compress_dims, decompress_dims=decompress_dims) +model.fit(data, discrete_columns) +model.save(save_path) +print(f"[TVAE] Model saved -> {save_path}") diff --git a/timecost/c2/tvae/tvae-c2-20260504_174047/gen_20260504_174104.log b/timecost/c2/tvae/tvae-c2-20260504_174047/gen_20260504_174104.log new file mode 100644 index 0000000000000000000000000000000000000000..03b14e21e7e199bc2f26331ac5842f0dc60facd4 --- /dev/null +++ b/timecost/c2/tvae/tvae-c2-20260504_174047/gen_20260504_174104.log @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:084af1bcbd34d4f755a09dd9ffbc4cce57069fbb7bbb8c8eff2ae22b9d3e7a7a +size 404 diff --git a/timecost/c2/tvae/tvae-c2-20260504_174047/input_snapshot.json b/timecost/c2/tvae/tvae-c2-20260504_174047/input_snapshot.json new file mode 100644 index 0000000000000000000000000000000000000000..9e28a5421f2176e174a0659e66a40054269fb2ac --- /dev/null +++ b/timecost/c2/tvae/tvae-c2-20260504_174047/input_snapshot.json @@ -0,0 +1,36 @@ +{ + "dataset_id": "c2", + "model": "tvae", + "inputs": { + "train_csv": { + "path": "/data/jialinzhang/SynthesizePipeline-server/DatasetNew/c2/c2-train.csv", + "exists": true, + "size": 42948, + "sha256": "17bc560fa96bd00fb3b526e1e65bc91210b701d0d0a4e8bb9b4c5196cab56def" + }, + "val_csv": { + "path": "/data/jialinzhang/SynthesizePipeline-server/DatasetNew/c2/c2-val.csv", + "exists": true, + "size": 5349, + "sha256": "61e565eca62e65a7dccd9d51039a3170413379e10fc494e25870e7c4294863c9" + }, + "test_csv": { + "path": "/data/jialinzhang/SynthesizePipeline-server/DatasetNew/c2/c2-test.csv", + "exists": true, + "size": 5448, + "sha256": "cbcbb062a1faf5fa44b66c80532baa229e05b94fc42137269761e6c6d84af20a" + }, + "profile_json": { + "path": "/data/jialinzhang/SynthesizePipeline-server/DatasetNew/artifacts/data_core/tabular/c2/c2-dataset_profile.json", + "exists": true, + "size": 3240, + "sha256": "526b7163b2076c93c0bf4638438081ee8a6907065d5b608faa40d1a3dbc2a27b" + }, + "contract_json": { + "path": "/data/jialinzhang/SynthesizePipeline-server/DatasetNew/artifacts/data_core/tabular/c2/c2-dataset_contract_v1.json", + "exists": true, + "size": 3731, + "sha256": "fb595a876054c2ee9b4e10cfe83a5691588de1d25466cbb9d473c18ad3604009" + } + } +} \ No newline at end of file diff --git a/timecost/c2/tvae/tvae-c2-20260504_174047/models_300epochs/train_20260504_174047.log b/timecost/c2/tvae/tvae-c2-20260504_174047/models_300epochs/train_20260504_174047.log new file mode 100644 index 0000000000000000000000000000000000000000..dcae6ce961bfa13c10a2b5cf75c07f435593295b --- /dev/null +++ b/timecost/c2/tvae/tvae-c2-20260504_174047/models_300epochs/train_20260504_174047.log @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:30a727c05f092232ce9b947d1ef769919085dd8c762c2eae3492cb27950a2802 +size 620 diff --git a/timecost/c2/tvae/tvae-c2-20260504_174047/models_300epochs/tvae_300epochs.pt b/timecost/c2/tvae/tvae-c2-20260504_174047/models_300epochs/tvae_300epochs.pt new file mode 100644 index 0000000000000000000000000000000000000000..037655d3c719ce686f316a15170097bcd4082671 --- /dev/null +++ b/timecost/c2/tvae/tvae-c2-20260504_174047/models_300epochs/tvae_300epochs.pt @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:e86ebfc162121c60718157c90bdb1625acba8d2b170c086a6eaa4a3f9adc47eb +size 344812 diff --git a/timecost/c2/tvae/tvae-c2-20260504_174047/public_gate/normalized_schema_snapshot.json b/timecost/c2/tvae/tvae-c2-20260504_174047/public_gate/normalized_schema_snapshot.json new file mode 100644 index 0000000000000000000000000000000000000000..689b1d00d96508e44ba40e58dc4560e19afc2b3b --- /dev/null +++ b/timecost/c2/tvae/tvae-c2-20260504_174047/public_gate/normalized_schema_snapshot.json @@ -0,0 +1,144 @@ +{ + "dataset_id": "c2", + "target_column": "class", + "task_type": "classification", + "columns": [ + { + "name": "buying", + "role": "feature", + "semantic_type": "categorical", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 4, + "unique_ratio": 0.002894, + "example_values": [ + "vhigh", + "med", + "high", + "low" + ] + } + }, + { + "name": "maint", + "role": "feature", + "semantic_type": "categorical", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 4, + "unique_ratio": 0.002894, + "example_values": [ + "vhigh", + "low", + "med", + "high" + ] + } + }, + { + "name": "doors", + "role": "feature", + "semantic_type": "categorical", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 4, + "unique_ratio": 0.002894, + "example_values": [ + "2", + "5more", + "3", + "4" + ] + } + }, + { + "name": "persons", + "role": "feature", + "semantic_type": "categorical", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 3, + "unique_ratio": 0.002171, + "example_values": [ + "2", + "4", + "more" + ] + } + }, + { + "name": "lug_boot", + "role": "feature", + "semantic_type": "categorical", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 3, + "unique_ratio": 0.002171, + "example_values": [ + "small", + "big", + "med" + ] + } + }, + { + "name": "safety", + "role": "feature", + "semantic_type": "categorical", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 3, + "unique_ratio": 0.002171, + "example_values": [ + "low", + "high", + "med" + ] + } + }, + { + "name": "class", + "role": "target", + "semantic_type": "categorical", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 4, + "unique_ratio": 0.002894, + "example_values": [ + "unacc", + "good", + "acc", + "vgood" + ] + } + } + ] +} \ No newline at end of file diff --git a/timecost/c2/tvae/tvae-c2-20260504_174047/public_gate/public_gate_report.json b/timecost/c2/tvae/tvae-c2-20260504_174047/public_gate/public_gate_report.json new file mode 100644 index 0000000000000000000000000000000000000000..2e4cdcb2a4e28e40d59b17a83e773f622b7636a5 --- /dev/null +++ b/timecost/c2/tvae/tvae-c2-20260504_174047/public_gate/public_gate_report.json @@ -0,0 +1,37 @@ +{ + "dataset_id": "c2", + "status": "pass", + "checks": [ + { + "check_id": "PG001_csv_parse_ok", + "status": "pass" + }, + { + "check_id": "PG002_split_header_consistent", + "status": "pass" + }, + { + "check_id": "PG003_profile_header_match", + "status": "pass" + }, + { + "check_id": "PG004_missing_token_normalized", + "status": "pass" + }, + { + "check_id": "PG005_semantic_type_validated", + "status": "pass" + }, + { + "check_id": "PG006_target_defined_and_valid", + "status": "pass" + } + ], + "target_column": "class", + "task_type": "classification", + "input_splits": { + "train": "/data/jialinzhang/SynthesizePipeline-server/DatasetNew/c2/c2-train.csv", + "val": "/data/jialinzhang/SynthesizePipeline-server/DatasetNew/c2/c2-val.csv", + "test": "/data/jialinzhang/SynthesizePipeline-server/DatasetNew/c2/c2-test.csv" + } +} \ No newline at end of file diff --git a/timecost/c2/tvae/tvae-c2-20260504_174047/public_gate/staged_input_manifest.json b/timecost/c2/tvae/tvae-c2-20260504_174047/public_gate/staged_input_manifest.json new file mode 100644 index 0000000000000000000000000000000000000000..735b63a84685350d1026e3b103616fca33b64d1c --- /dev/null +++ b/timecost/c2/tvae/tvae-c2-20260504_174047/public_gate/staged_input_manifest.json @@ -0,0 +1,149 @@ +{ + "dataset_id": "c2", + "target_column": "class", + "task_type": "classification", + "train_csv": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/c2/tvae/tvae-c2-20260504_174047/staged/public/train.csv", + "val_csv": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/c2/tvae/tvae-c2-20260504_174047/staged/public/val.csv", + "test_csv": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/c2/tvae/tvae-c2-20260504_174047/staged/public/test.csv", + "features_json": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/c2/tvae/tvae-c2-20260504_174047/staged/public/staged_features.json", + "public_gate_report": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/c2/tvae/tvae-c2-20260504_174047/public_gate/public_gate_report.json", + "column_schema": [ + { + "name": "buying", + "role": "feature", + "semantic_type": "categorical", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 4, + "unique_ratio": 0.002894, + "example_values": [ + "vhigh", + "med", + "high", + "low" + ] + } + }, + { + "name": "maint", + "role": "feature", + "semantic_type": "categorical", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 4, + "unique_ratio": 0.002894, + "example_values": [ + "vhigh", + "low", + "med", + "high" + ] + } + }, + { + "name": "doors", + "role": "feature", + "semantic_type": "categorical", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 4, + "unique_ratio": 0.002894, + "example_values": [ + "2", + "5more", + "3", + "4" + ] + } + }, + { + "name": "persons", + "role": "feature", + "semantic_type": "categorical", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 3, + "unique_ratio": 0.002171, + "example_values": [ + "2", + "4", + "more" + ] + } + }, + { + "name": "lug_boot", + "role": "feature", + "semantic_type": "categorical", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 3, + "unique_ratio": 0.002171, + "example_values": [ + "small", + "big", + "med" + ] + } + }, + { + "name": "safety", + "role": "feature", + "semantic_type": "categorical", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 3, + "unique_ratio": 0.002171, + "example_values": [ + "low", + "high", + "med" + ] + } + }, + { + "name": "class", + "role": "target", + "semantic_type": "categorical", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 4, + "unique_ratio": 0.002894, + "example_values": [ + "unacc", + "good", + "acc", + "vgood" + ] + } + } + ] +} \ No newline at end of file diff --git a/timecost/c2/tvae/tvae-c2-20260504_174047/run_config.json b/timecost/c2/tvae/tvae-c2-20260504_174047/run_config.json new file mode 100644 index 0000000000000000000000000000000000000000..eb699b6178b4fec97d70cffefc82f29ebab21fa4 --- /dev/null +++ b/timecost/c2/tvae/tvae-c2-20260504_174047/run_config.json @@ -0,0 +1,45 @@ +{ + "schema_version": 1, + "recorded_at": "2026-05-04T17:40:47", + "dataset_id": "c2", + "model": "tvae", + "work_dir": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/c2/tvae/tvae-c2-20260504_174047", + "dataset_source_requested": "new", + "dataset_source_resolved": "new", + "cli_args": { + "model": "tvae", + "dataset": "c2", + "dataset_source": "new", + "train": true, + "generate": true, + "num_rows": 0, + "epochs": null, + "output_dir": null, + "model_dir": null, + "work_dir": null, + "resume": false, + "no_stats": false + }, + "resolved": { + "num_rows": 1382, + "model_path": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/c2/tvae/tvae-c2-20260504_174047/models_300epochs/tvae_300epochs.pt", + "output_csv": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/c2/tvae/tvae-c2-20260504_174047/tvae-c2-1382-20260504_174104.csv" + }, + "input_artifacts": { + "public_gate_report": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/c2/tvae/tvae-c2-20260504_174047/public_gate/public_gate_report.json", + "public_manifest": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/c2/tvae/tvae-c2-20260504_174047/public_gate/staged_input_manifest.json", + "model_manifest": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/c2/tvae/tvae-c2-20260504_174047/staged/tvae/model_input_manifest.json", + "train_csv": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/c2/tvae/tvae-c2-20260504_174047/staged/public/train.csv", + "features_json": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/c2/tvae/tvae-c2-20260504_174047/staged/public/staged_features.json", + "target_column": "class", + "task_type": "classification" + }, + "env_overrides": { + "BENCHMARK_TVAE_GPUS": "device=3", + "TVAE_BATCH_SIZE": "256", + "TVAE_COMPRESS_DIMS": "128,128", + "TVAE_DECOMPRESS_DIMS": "128,128", + "TVAE_EMBEDDING_DIM": "64", + "TVAE_EPOCHS": "200" + } +} \ No newline at end of file diff --git a/timecost/c2/tvae/tvae-c2-20260504_174047/runtime_result.json b/timecost/c2/tvae/tvae-c2-20260504_174047/runtime_result.json new file mode 100644 index 0000000000000000000000000000000000000000..a409396bf2280e0bf0083aa37a0cbacc3c2a0c17 --- /dev/null +++ b/timecost/c2/tvae/tvae-c2-20260504_174047/runtime_result.json @@ -0,0 +1,27 @@ +{ + "dataset_id": "c2", + "model": "tvae", + "run_id": "tvae-c2-20260504_174047", + "public_gate_status": "pass", + "adapter_ready_status": "pass", + "train_status": "success", + "generate_status": "success", + "reason_code": null, + "reason_detail": null, + "artifacts": { + "synthetic_csv": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/c2/tvae/tvae-c2-20260504_174047/tvae-c2-1382-20260504_174104.csv", + "model_path": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/c2/tvae/tvae-c2-20260504_174047/models_300epochs/tvae_300epochs.pt" + }, + "timings": { + "train": { + "started_at": "2026-05-04T17:40:47", + "ended_at": "2026-05-04T17:41:04", + "duration_sec": 16.508 + }, + "generate": { + "started_at": "2026-05-04T17:41:04", + "ended_at": "2026-05-04T17:41:09", + "duration_sec": 5.213 + } + } +} \ No newline at end of file diff --git a/timecost/c2/tvae/tvae-c2-20260504_174047/staged/public/staged_features.json b/timecost/c2/tvae/tvae-c2-20260504_174047/staged/public/staged_features.json new file mode 100644 index 0000000000000000000000000000000000000000..61783861dd5de501592f76acb0469cf3f3b2622a --- /dev/null +++ b/timecost/c2/tvae/tvae-c2-20260504_174047/staged/public/staged_features.json @@ -0,0 +1,37 @@ +[ + { + "feature_name": "buying", + "data_type": "categorical", + "is_target": false + }, + { + "feature_name": "maint", + "data_type": "categorical", + "is_target": false + }, + { + "feature_name": "doors", + "data_type": "categorical", + "is_target": false + }, + { + "feature_name": "persons", + "data_type": "categorical", + "is_target": false + }, + { + "feature_name": "lug_boot", + "data_type": "categorical", + "is_target": false + }, + { + "feature_name": "safety", + "data_type": "categorical", + "is_target": false + }, + { + "feature_name": "class", + "data_type": "categorical", + "is_target": true + } +] \ No newline at end of file diff --git a/timecost/c2/tvae/tvae-c2-20260504_174047/staged/public/test.csv b/timecost/c2/tvae/tvae-c2-20260504_174047/staged/public/test.csv new file mode 100644 index 0000000000000000000000000000000000000000..392a0d7189a34d8f13ecf20a99d64b03230d517c --- /dev/null +++ b/timecost/c2/tvae/tvae-c2-20260504_174047/staged/public/test.csv @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:b48114a7d0bc5bd9a07920f903c8d4aba8bf98bf2a66a050da03588b0245ca73 +size 5273 diff --git a/timecost/c2/tvae/tvae-c2-20260504_174047/staged/public/train.csv b/timecost/c2/tvae/tvae-c2-20260504_174047/staged/public/train.csv new file mode 100644 index 0000000000000000000000000000000000000000..da4f4d55134eebc0e51157d0d467536371db1484 --- /dev/null +++ b/timecost/c2/tvae/tvae-c2-20260504_174047/staged/public/train.csv @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:4aed00c2c2b3f88a55a7ebff31b2e1b5e0e32fb0a7267e0b9d2779cd23e434dd +size 41565 diff --git a/timecost/c2/tvae/tvae-c2-20260504_174047/staged/public/val.csv b/timecost/c2/tvae/tvae-c2-20260504_174047/staged/public/val.csv new file mode 100644 index 0000000000000000000000000000000000000000..af8caf7ee42524188534a3daf32996dc491952d9 --- /dev/null +++ b/timecost/c2/tvae/tvae-c2-20260504_174047/staged/public/val.csv @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:26e90c1170a57a14c05832ac88027722b1f3848f9662c7c09ef7c93dcba4cc01 +size 5176 diff --git a/timecost/c2/tvae/tvae-c2-20260504_174047/staged/tvae/adapter_report.json b/timecost/c2/tvae/tvae-c2-20260504_174047/staged/tvae/adapter_report.json new file mode 100644 index 0000000000000000000000000000000000000000..06f4c95c62f7be8ab33f2428fbbeb6007bd51879 --- /dev/null +++ b/timecost/c2/tvae/tvae-c2-20260504_174047/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-Benchmark-trainonly-v1/c2/tvae/tvae-c2-20260504_174047/staged/tvae/model_input_manifest.json" +} \ No newline at end of file diff --git a/timecost/c2/tvae/tvae-c2-20260504_174047/staged/tvae/adapter_transforms_applied.json b/timecost/c2/tvae/tvae-c2-20260504_174047/staged/tvae/adapter_transforms_applied.json new file mode 100644 index 0000000000000000000000000000000000000000..0637a088a01e8ddab3bf3fa98dbe804cbde1a0dc --- /dev/null +++ b/timecost/c2/tvae/tvae-c2-20260504_174047/staged/tvae/adapter_transforms_applied.json @@ -0,0 +1 @@ +[] \ No newline at end of file diff --git a/timecost/c2/tvae/tvae-c2-20260504_174047/staged/tvae/model_input_manifest.json b/timecost/c2/tvae/tvae-c2-20260504_174047/staged/tvae/model_input_manifest.json new file mode 100644 index 0000000000000000000000000000000000000000..ee377a50c2a2c26beaa41219a40cdf526ae72890 --- /dev/null +++ b/timecost/c2/tvae/tvae-c2-20260504_174047/staged/tvae/model_input_manifest.json @@ -0,0 +1,151 @@ +{ + "dataset_id": "c2", + "model": "tvae", + "target_column": "class", + "task_type": "classification", + "column_schema": [ + { + "name": "buying", + "role": "feature", + "semantic_type": "categorical", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 4, + "unique_ratio": 0.002894, + "example_values": [ + "vhigh", + "med", + "high", + "low" + ] + } + }, + { + "name": "maint", + "role": "feature", + "semantic_type": "categorical", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 4, + "unique_ratio": 0.002894, + "example_values": [ + "vhigh", + "low", + "med", + "high" + ] + } + }, + { + "name": "doors", + "role": "feature", + "semantic_type": "categorical", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 4, + "unique_ratio": 0.002894, + "example_values": [ + "2", + "5more", + "3", + "4" + ] + } + }, + { + "name": "persons", + "role": "feature", + "semantic_type": "categorical", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 3, + "unique_ratio": 0.002171, + "example_values": [ + "2", + "4", + "more" + ] + } + }, + { + "name": "lug_boot", + "role": "feature", + "semantic_type": "categorical", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 3, + "unique_ratio": 0.002171, + "example_values": [ + "small", + "big", + "med" + ] + } + }, + { + "name": "safety", + "role": "feature", + "semantic_type": "categorical", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 3, + "unique_ratio": 0.002171, + "example_values": [ + "low", + "high", + "med" + ] + } + }, + { + "name": "class", + "role": "target", + "semantic_type": "categorical", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 4, + "unique_ratio": 0.002894, + "example_values": [ + "unacc", + "good", + "acc", + "vgood" + ] + } + } + ], + "public_manifest": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/c2/tvae/tvae-c2-20260504_174047/public_gate/staged_input_manifest.json", + "train_csv": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/c2/tvae/tvae-c2-20260504_174047/staged/public/train.csv", + "val_csv": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/c2/tvae/tvae-c2-20260504_174047/staged/public/val.csv", + "test_csv": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/c2/tvae/tvae-c2-20260504_174047/staged/public/test.csv", + "features_json": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/c2/tvae/tvae-c2-20260504_174047/staged/public/staged_features.json", + "public_gate_report": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/c2/tvae/tvae-c2-20260504_174047/public_gate/public_gate_report.json" +} \ No newline at end of file diff --git a/timecost/c2/tvae/tvae-c2-20260504_174047/tvae-c2-1382-20260504_174104.csv b/timecost/c2/tvae/tvae-c2-20260504_174047/tvae-c2-1382-20260504_174104.csv new file mode 100644 index 0000000000000000000000000000000000000000..22155eb14eab4a0343f73faaeff5b279cb5b8e30 --- /dev/null +++ b/timecost/c2/tvae/tvae-c2-20260504_174047/tvae-c2-1382-20260504_174104.csv @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:7f3d50a2af8fc7f73f7995213dac76d9a43b9b386a2008e9b0c6dc02b8446f65 +size 41450 diff --git a/timecost/c2/tvae/tvae-c2-20260504_174047/tvae_metadata.json b/timecost/c2/tvae/tvae-c2-20260504_174047/tvae_metadata.json new file mode 100644 index 0000000000000000000000000000000000000000..183d627ebc98e89233655ec98c9dcbc528c4c328 --- /dev/null +++ b/timecost/c2/tvae/tvae-c2-20260504_174047/tvae_metadata.json @@ -0,0 +1,32 @@ +{ + "columns": [ + { + "name": "buying", + "type": "categorical" + }, + { + "name": "maint", + "type": "categorical" + }, + { + "name": "doors", + "type": "categorical" + }, + { + "name": "persons", + "type": "categorical" + }, + { + "name": "lug_boot", + "type": "categorical" + }, + { + "name": "safety", + "type": "categorical" + }, + { + "name": "class", + "type": "categorical" + } + ] +} \ No newline at end of file diff --git a/timecost/c2/tvae/tvae-c2-20260504_174121/_tvae_generate.py b/timecost/c2/tvae/tvae-c2-20260504_174121/_tvae_generate.py new file mode 100644 index 0000000000000000000000000000000000000000..ec162da85d8047a163fdaf4dcb2a5ad436a24fed --- /dev/null +++ b/timecost/c2/tvae/tvae-c2-20260504_174121/_tvae_generate.py @@ -0,0 +1,23 @@ +import os, sys +sys.path.insert(0, "/work") +from src.SpecificModels.ctgan_joblib_parallel_cap import apply_parallel_cap_from_env +apply_parallel_cap_from_env() +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 +os.environ.setdefault("LOKY_MAX_CPU_COUNT", "8") +os.environ.setdefault("OPENBLAS_NUM_THREADS", "8") +os.environ.setdefault("MKL_NUM_THREADS", "8") +model = TVAE.load("/work/output-Benchmark-trainonly-v1/c2/tvae/tvae-c2-20260504_174121/models_300epochs/tvae_300epochs.pt") +total = 1382 +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-Benchmark-trainonly-v1/c2/tvae/tvae-c2-20260504_174121/tvae-c2-1382-20260504_174137.csv", index=False) +print(f"[TVAE] Generated {total} rows (chunks={len(parts)}) -> /work/output-Benchmark-trainonly-v1/c2/tvae/tvae-c2-20260504_174121/tvae-c2-1382-20260504_174137.csv") diff --git a/timecost/c2/tvae/tvae-c2-20260504_174121/_tvae_train.py b/timecost/c2/tvae/tvae-c2-20260504_174121/_tvae_train.py new file mode 100644 index 0000000000000000000000000000000000000000..68cb971e55e8481a522d1968d1b464386b46ef56 --- /dev/null +++ b/timecost/c2/tvae/tvae-c2-20260504_174121/_tvae_train.py @@ -0,0 +1,39 @@ +import json, os, sys +sys.path.insert(0, "/work") +from src.SpecificModels.ctgan_joblib_parallel_cap import apply_parallel_cap_from_env +apply_parallel_cap_from_env() +import pandas as pd +from ctgan.data import read_csv +from ctgan.synthesizers.tvae import TVAE + +# Keep transform stage parallelism bounded for stability on shared host. +os.environ.setdefault("LOKY_MAX_CPU_COUNT", "8") +os.environ.setdefault("OPENBLAS_NUM_THREADS", "8") +os.environ.setdefault("MKL_NUM_THREADS", "8") +_nj = (os.environ.get("TVAE_CTGAN_JOBTRANS_N_JOBS") or "").strip() +if _nj: + print("[TVAE] joblib Parallel cap ON, TVAE_CTGAN_JOBTRANS_N_JOBS=" + _nj) +else: + print("[TVAE] joblib Parallel cap OFF (unset TVAE_CTGAN_JOBTRANS_N_JOBS)") +print("[TVAE] LOKY_MAX_CPU_COUNT=" + str(os.environ.get("LOKY_MAX_CPU_COUNT", ""))) + +csv_path = "/work/output-Benchmark-trainonly-v1/c2/tvae/tvae-c2-20260504_174121/staged/public/train.csv" +meta_path = "/work/output-Benchmark-trainonly-v1/c2/tvae/tvae-c2-20260504_174121/tvae_metadata.json" +save_path = "/work/output-Benchmark-trainonly-v1/c2/tvae/tvae-c2-20260504_174121/models_300epochs/tvae_300epochs.pt" +epochs = int(os.environ.get("TVAE_EPOCHS", 300)) +batch_size = int(os.environ.get("TVAE_BATCH_SIZE", "500")) +embedding_dim = int(os.environ.get("TVAE_EMBEDDING_DIM", "128")) +def _parse_dims(name, default): + raw = (os.environ.get(name) or "").strip() + if not raw: + return default + return tuple(int(x.strip()) for x in raw.split(",") if x.strip()) +compress_dims = _parse_dims("TVAE_COMPRESS_DIMS", (128, 128)) +decompress_dims = _parse_dims("TVAE_DECOMPRESS_DIMS", (128, 128)) + +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}, batch_size={batch_size}, embedding_dim={embedding_dim}, compress_dims={compress_dims}, decompress_dims={decompress_dims}") +model = TVAE(epochs=epochs, batch_size=batch_size, embedding_dim=embedding_dim, compress_dims=compress_dims, decompress_dims=decompress_dims) +model.fit(data, discrete_columns) +model.save(save_path) +print(f"[TVAE] Model saved -> {save_path}") diff --git a/timecost/c2/tvae/tvae-c2-20260504_174121/gen_20260504_174137.log b/timecost/c2/tvae/tvae-c2-20260504_174121/gen_20260504_174137.log new file mode 100644 index 0000000000000000000000000000000000000000..88ffae8c24be5d2edfc2409b11cb081adb30f462 --- /dev/null +++ b/timecost/c2/tvae/tvae-c2-20260504_174121/gen_20260504_174137.log @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:2e53e01455da4782d481bbd50839033f0111faaf92c485276e3cbd8c32d56679 +size 404 diff --git a/timecost/c2/tvae/tvae-c2-20260504_174121/input_snapshot.json b/timecost/c2/tvae/tvae-c2-20260504_174121/input_snapshot.json new file mode 100644 index 0000000000000000000000000000000000000000..9e28a5421f2176e174a0659e66a40054269fb2ac --- /dev/null +++ b/timecost/c2/tvae/tvae-c2-20260504_174121/input_snapshot.json @@ -0,0 +1,36 @@ +{ + "dataset_id": "c2", + "model": "tvae", + "inputs": { + "train_csv": { + "path": "/data/jialinzhang/SynthesizePipeline-server/DatasetNew/c2/c2-train.csv", + "exists": true, + "size": 42948, + "sha256": "17bc560fa96bd00fb3b526e1e65bc91210b701d0d0a4e8bb9b4c5196cab56def" + }, + "val_csv": { + "path": "/data/jialinzhang/SynthesizePipeline-server/DatasetNew/c2/c2-val.csv", + "exists": true, + "size": 5349, + "sha256": "61e565eca62e65a7dccd9d51039a3170413379e10fc494e25870e7c4294863c9" + }, + "test_csv": { + "path": "/data/jialinzhang/SynthesizePipeline-server/DatasetNew/c2/c2-test.csv", + "exists": true, + "size": 5448, + "sha256": "cbcbb062a1faf5fa44b66c80532baa229e05b94fc42137269761e6c6d84af20a" + }, + "profile_json": { + "path": "/data/jialinzhang/SynthesizePipeline-server/DatasetNew/artifacts/data_core/tabular/c2/c2-dataset_profile.json", + "exists": true, + "size": 3240, + "sha256": "526b7163b2076c93c0bf4638438081ee8a6907065d5b608faa40d1a3dbc2a27b" + }, + "contract_json": { + "path": "/data/jialinzhang/SynthesizePipeline-server/DatasetNew/artifacts/data_core/tabular/c2/c2-dataset_contract_v1.json", + "exists": true, + "size": 3731, + "sha256": "fb595a876054c2ee9b4e10cfe83a5691588de1d25466cbb9d473c18ad3604009" + } + } +} \ No newline at end of file diff --git a/timecost/c2/tvae/tvae-c2-20260504_174121/models_300epochs/train_20260504_174121.log b/timecost/c2/tvae/tvae-c2-20260504_174121/models_300epochs/train_20260504_174121.log new file mode 100644 index 0000000000000000000000000000000000000000..f800cda209dfb903de878f3e788d08e76c1a6e08 --- /dev/null +++ b/timecost/c2/tvae/tvae-c2-20260504_174121/models_300epochs/train_20260504_174121.log @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:b5cb02568a6f8495e6421e9264a30e3ba31dec47cfae9988a71fefea03963a2f +size 620 diff --git a/timecost/c2/tvae/tvae-c2-20260504_174121/models_300epochs/tvae_300epochs.pt b/timecost/c2/tvae/tvae-c2-20260504_174121/models_300epochs/tvae_300epochs.pt new file mode 100644 index 0000000000000000000000000000000000000000..e72dfc1e14a30f9339527324998970255cefe4d6 --- /dev/null +++ b/timecost/c2/tvae/tvae-c2-20260504_174121/models_300epochs/tvae_300epochs.pt @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:de5a76a10a2d1af3ee2f46d67f3e917ab275e457bc912df0201c440f05949b7b +size 344812 diff --git a/timecost/c2/tvae/tvae-c2-20260504_174121/public_gate/normalized_schema_snapshot.json b/timecost/c2/tvae/tvae-c2-20260504_174121/public_gate/normalized_schema_snapshot.json new file mode 100644 index 0000000000000000000000000000000000000000..689b1d00d96508e44ba40e58dc4560e19afc2b3b --- /dev/null +++ b/timecost/c2/tvae/tvae-c2-20260504_174121/public_gate/normalized_schema_snapshot.json @@ -0,0 +1,144 @@ +{ + "dataset_id": "c2", + "target_column": "class", + "task_type": "classification", + "columns": [ + { + "name": "buying", + "role": "feature", + "semantic_type": "categorical", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 4, + "unique_ratio": 0.002894, + "example_values": [ + "vhigh", + "med", + "high", + "low" + ] + } + }, + { + "name": "maint", + "role": "feature", + "semantic_type": "categorical", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 4, + "unique_ratio": 0.002894, + "example_values": [ + "vhigh", + "low", + "med", + "high" + ] + } + }, + { + "name": "doors", + "role": "feature", + "semantic_type": "categorical", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 4, + "unique_ratio": 0.002894, + "example_values": [ + "2", + "5more", + "3", + "4" + ] + } + }, + { + "name": "persons", + "role": "feature", + "semantic_type": "categorical", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 3, + "unique_ratio": 0.002171, + "example_values": [ + "2", + "4", + "more" + ] + } + }, + { + "name": "lug_boot", + "role": "feature", + "semantic_type": "categorical", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 3, + "unique_ratio": 0.002171, + "example_values": [ + "small", + "big", + "med" + ] + } + }, + { + "name": "safety", + "role": "feature", + "semantic_type": "categorical", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 3, + "unique_ratio": 0.002171, + "example_values": [ + "low", + "high", + "med" + ] + } + }, + { + "name": "class", + "role": "target", + "semantic_type": "categorical", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 4, + "unique_ratio": 0.002894, + "example_values": [ + "unacc", + "good", + "acc", + "vgood" + ] + } + } + ] +} \ No newline at end of file diff --git a/timecost/c2/tvae/tvae-c2-20260504_174121/public_gate/public_gate_report.json b/timecost/c2/tvae/tvae-c2-20260504_174121/public_gate/public_gate_report.json new file mode 100644 index 0000000000000000000000000000000000000000..2e4cdcb2a4e28e40d59b17a83e773f622b7636a5 --- /dev/null +++ b/timecost/c2/tvae/tvae-c2-20260504_174121/public_gate/public_gate_report.json @@ -0,0 +1,37 @@ +{ + "dataset_id": "c2", + "status": "pass", + "checks": [ + { + "check_id": "PG001_csv_parse_ok", + "status": "pass" + }, + { + "check_id": "PG002_split_header_consistent", + "status": "pass" + }, + { + "check_id": "PG003_profile_header_match", + "status": "pass" + }, + { + "check_id": "PG004_missing_token_normalized", + "status": "pass" + }, + { + "check_id": "PG005_semantic_type_validated", + "status": "pass" + }, + { + "check_id": "PG006_target_defined_and_valid", + "status": "pass" + } + ], + "target_column": "class", + "task_type": "classification", + "input_splits": { + "train": "/data/jialinzhang/SynthesizePipeline-server/DatasetNew/c2/c2-train.csv", + "val": "/data/jialinzhang/SynthesizePipeline-server/DatasetNew/c2/c2-val.csv", + "test": "/data/jialinzhang/SynthesizePipeline-server/DatasetNew/c2/c2-test.csv" + } +} \ No newline at end of file diff --git a/timecost/c2/tvae/tvae-c2-20260504_174121/public_gate/staged_input_manifest.json b/timecost/c2/tvae/tvae-c2-20260504_174121/public_gate/staged_input_manifest.json new file mode 100644 index 0000000000000000000000000000000000000000..cbdc8394986794990476966ddf1e40c05ed5e826 --- /dev/null +++ b/timecost/c2/tvae/tvae-c2-20260504_174121/public_gate/staged_input_manifest.json @@ -0,0 +1,149 @@ +{ + "dataset_id": "c2", + "target_column": "class", + "task_type": "classification", + "train_csv": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/c2/tvae/tvae-c2-20260504_174121/staged/public/train.csv", + "val_csv": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/c2/tvae/tvae-c2-20260504_174121/staged/public/val.csv", + "test_csv": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/c2/tvae/tvae-c2-20260504_174121/staged/public/test.csv", + "features_json": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/c2/tvae/tvae-c2-20260504_174121/staged/public/staged_features.json", + "public_gate_report": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/c2/tvae/tvae-c2-20260504_174121/public_gate/public_gate_report.json", + "column_schema": [ + { + "name": "buying", + "role": "feature", + "semantic_type": "categorical", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 4, + "unique_ratio": 0.002894, + "example_values": [ + "vhigh", + "med", + "high", + "low" + ] + } + }, + { + "name": "maint", + "role": "feature", + "semantic_type": "categorical", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 4, + "unique_ratio": 0.002894, + "example_values": [ + "vhigh", + "low", + "med", + "high" + ] + } + }, + { + "name": "doors", + "role": "feature", + "semantic_type": "categorical", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 4, + "unique_ratio": 0.002894, + "example_values": [ + "2", + "5more", + "3", + "4" + ] + } + }, + { + "name": "persons", + "role": "feature", + "semantic_type": "categorical", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 3, + "unique_ratio": 0.002171, + "example_values": [ + "2", + "4", + "more" + ] + } + }, + { + "name": "lug_boot", + "role": "feature", + "semantic_type": "categorical", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 3, + "unique_ratio": 0.002171, + "example_values": [ + "small", + "big", + "med" + ] + } + }, + { + "name": "safety", + "role": "feature", + "semantic_type": "categorical", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 3, + "unique_ratio": 0.002171, + "example_values": [ + "low", + "high", + "med" + ] + } + }, + { + "name": "class", + "role": "target", + "semantic_type": "categorical", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 4, + "unique_ratio": 0.002894, + "example_values": [ + "unacc", + "good", + "acc", + "vgood" + ] + } + } + ] +} \ No newline at end of file diff --git a/timecost/c2/tvae/tvae-c2-20260504_174121/run_config.json b/timecost/c2/tvae/tvae-c2-20260504_174121/run_config.json new file mode 100644 index 0000000000000000000000000000000000000000..e81894e726b3bc07bcc6ef203eb2627230f85dc0 --- /dev/null +++ b/timecost/c2/tvae/tvae-c2-20260504_174121/run_config.json @@ -0,0 +1,45 @@ +{ + "schema_version": 1, + "recorded_at": "2026-05-04T17:41:21", + "dataset_id": "c2", + "model": "tvae", + "work_dir": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/c2/tvae/tvae-c2-20260504_174121", + "dataset_source_requested": "new", + "dataset_source_resolved": "new", + "cli_args": { + "model": "tvae", + "dataset": "c2", + "dataset_source": "new", + "train": true, + "generate": true, + "num_rows": 0, + "epochs": null, + "output_dir": null, + "model_dir": null, + "work_dir": null, + "resume": false, + "no_stats": false + }, + "resolved": { + "num_rows": 1382, + "model_path": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/c2/tvae/tvae-c2-20260504_174121/models_300epochs/tvae_300epochs.pt", + "output_csv": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/c2/tvae/tvae-c2-20260504_174121/tvae-c2-1382-20260504_174137.csv" + }, + "input_artifacts": { + "public_gate_report": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/c2/tvae/tvae-c2-20260504_174121/public_gate/public_gate_report.json", + "public_manifest": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/c2/tvae/tvae-c2-20260504_174121/public_gate/staged_input_manifest.json", + "model_manifest": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/c2/tvae/tvae-c2-20260504_174121/staged/tvae/model_input_manifest.json", + "train_csv": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/c2/tvae/tvae-c2-20260504_174121/staged/public/train.csv", + "features_json": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/c2/tvae/tvae-c2-20260504_174121/staged/public/staged_features.json", + "target_column": "class", + "task_type": "classification" + }, + "env_overrides": { + "BENCHMARK_TVAE_GPUS": "device=3", + "TVAE_BATCH_SIZE": "500", + "TVAE_COMPRESS_DIMS": "256,256", + "TVAE_DECOMPRESS_DIMS": "256,256", + "TVAE_EMBEDDING_DIM": "128", + "TVAE_EPOCHS": "300" + } +} \ No newline at end of file diff --git a/timecost/c2/tvae/tvae-c2-20260504_174121/runtime_result.json b/timecost/c2/tvae/tvae-c2-20260504_174121/runtime_result.json new file mode 100644 index 0000000000000000000000000000000000000000..ae08bccde264898fc9c9617de2a738e0dca29f69 --- /dev/null +++ b/timecost/c2/tvae/tvae-c2-20260504_174121/runtime_result.json @@ -0,0 +1,27 @@ +{ + "dataset_id": "c2", + "model": "tvae", + "run_id": "tvae-c2-20260504_174121", + "public_gate_status": "pass", + "adapter_ready_status": "pass", + "train_status": "success", + "generate_status": "success", + "reason_code": null, + "reason_detail": null, + "artifacts": { + "synthetic_csv": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/c2/tvae/tvae-c2-20260504_174121/tvae-c2-1382-20260504_174137.csv", + "model_path": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/c2/tvae/tvae-c2-20260504_174121/models_300epochs/tvae_300epochs.pt" + }, + "timings": { + "train": { + "started_at": "2026-05-04T17:41:21", + "ended_at": "2026-05-04T17:41:37", + "duration_sec": 15.662 + }, + "generate": { + "started_at": "2026-05-04T17:41:37", + "ended_at": "2026-05-04T17:41:42", + "duration_sec": 5.043 + } + } +} \ No newline at end of file diff --git a/timecost/c2/tvae/tvae-c2-20260504_174121/staged/public/staged_features.json b/timecost/c2/tvae/tvae-c2-20260504_174121/staged/public/staged_features.json new file mode 100644 index 0000000000000000000000000000000000000000..61783861dd5de501592f76acb0469cf3f3b2622a --- /dev/null +++ b/timecost/c2/tvae/tvae-c2-20260504_174121/staged/public/staged_features.json @@ -0,0 +1,37 @@ +[ + { + "feature_name": "buying", + "data_type": "categorical", + "is_target": false + }, + { + "feature_name": "maint", + "data_type": "categorical", + "is_target": false + }, + { + "feature_name": "doors", + "data_type": "categorical", + "is_target": false + }, + { + "feature_name": "persons", + "data_type": "categorical", + "is_target": false + }, + { + "feature_name": "lug_boot", + "data_type": "categorical", + "is_target": false + }, + { + "feature_name": "safety", + "data_type": "categorical", + "is_target": false + }, + { + "feature_name": "class", + "data_type": "categorical", + "is_target": true + } +] \ No newline at end of file diff --git a/timecost/c2/tvae/tvae-c2-20260504_174121/staged/public/test.csv b/timecost/c2/tvae/tvae-c2-20260504_174121/staged/public/test.csv new file mode 100644 index 0000000000000000000000000000000000000000..392a0d7189a34d8f13ecf20a99d64b03230d517c --- /dev/null +++ b/timecost/c2/tvae/tvae-c2-20260504_174121/staged/public/test.csv @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:b48114a7d0bc5bd9a07920f903c8d4aba8bf98bf2a66a050da03588b0245ca73 +size 5273 diff --git a/timecost/c2/tvae/tvae-c2-20260504_174121/staged/public/train.csv b/timecost/c2/tvae/tvae-c2-20260504_174121/staged/public/train.csv new file mode 100644 index 0000000000000000000000000000000000000000..da4f4d55134eebc0e51157d0d467536371db1484 --- /dev/null +++ b/timecost/c2/tvae/tvae-c2-20260504_174121/staged/public/train.csv @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:4aed00c2c2b3f88a55a7ebff31b2e1b5e0e32fb0a7267e0b9d2779cd23e434dd +size 41565 diff --git a/timecost/c2/tvae/tvae-c2-20260504_174121/staged/public/val.csv b/timecost/c2/tvae/tvae-c2-20260504_174121/staged/public/val.csv new file mode 100644 index 0000000000000000000000000000000000000000..af8caf7ee42524188534a3daf32996dc491952d9 --- /dev/null +++ b/timecost/c2/tvae/tvae-c2-20260504_174121/staged/public/val.csv @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:26e90c1170a57a14c05832ac88027722b1f3848f9662c7c09ef7c93dcba4cc01 +size 5176 diff --git a/timecost/c2/tvae/tvae-c2-20260504_174121/staged/tvae/adapter_report.json b/timecost/c2/tvae/tvae-c2-20260504_174121/staged/tvae/adapter_report.json new file mode 100644 index 0000000000000000000000000000000000000000..8e5f88dfc2ef54136ba069841270a9bc1107c991 --- /dev/null +++ b/timecost/c2/tvae/tvae-c2-20260504_174121/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-Benchmark-trainonly-v1/c2/tvae/tvae-c2-20260504_174121/staged/tvae/model_input_manifest.json" +} \ No newline at end of file diff --git a/timecost/c2/tvae/tvae-c2-20260504_174121/staged/tvae/adapter_transforms_applied.json b/timecost/c2/tvae/tvae-c2-20260504_174121/staged/tvae/adapter_transforms_applied.json new file mode 100644 index 0000000000000000000000000000000000000000..0637a088a01e8ddab3bf3fa98dbe804cbde1a0dc --- /dev/null +++ b/timecost/c2/tvae/tvae-c2-20260504_174121/staged/tvae/adapter_transforms_applied.json @@ -0,0 +1 @@ +[] \ No newline at end of file diff --git a/timecost/c2/tvae/tvae-c2-20260504_174121/staged/tvae/model_input_manifest.json b/timecost/c2/tvae/tvae-c2-20260504_174121/staged/tvae/model_input_manifest.json new file mode 100644 index 0000000000000000000000000000000000000000..4025a7ab4cdca8637f0c0f73606fe22e2f7a7433 --- /dev/null +++ b/timecost/c2/tvae/tvae-c2-20260504_174121/staged/tvae/model_input_manifest.json @@ -0,0 +1,151 @@ +{ + "dataset_id": "c2", + "model": "tvae", + "target_column": "class", + "task_type": "classification", + "column_schema": [ + { + "name": "buying", + "role": "feature", + "semantic_type": "categorical", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 4, + "unique_ratio": 0.002894, + "example_values": [ + "vhigh", + "med", + "high", + "low" + ] + } + }, + { + "name": "maint", + "role": "feature", + "semantic_type": "categorical", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 4, + "unique_ratio": 0.002894, + "example_values": [ + "vhigh", + "low", + "med", + "high" + ] + } + }, + { + "name": "doors", + "role": "feature", + "semantic_type": "categorical", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 4, + "unique_ratio": 0.002894, + "example_values": [ + "2", + "5more", + "3", + "4" + ] + } + }, + { + "name": "persons", + "role": "feature", + "semantic_type": "categorical", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 3, + "unique_ratio": 0.002171, + "example_values": [ + "2", + "4", + "more" + ] + } + }, + { + "name": "lug_boot", + "role": "feature", + "semantic_type": "categorical", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 3, + "unique_ratio": 0.002171, + "example_values": [ + "small", + "big", + "med" + ] + } + }, + { + "name": "safety", + "role": "feature", + "semantic_type": "categorical", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 3, + "unique_ratio": 0.002171, + "example_values": [ + "low", + "high", + "med" + ] + } + }, + { + "name": "class", + "role": "target", + "semantic_type": "categorical", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 4, + "unique_ratio": 0.002894, + "example_values": [ + "unacc", + "good", + "acc", + "vgood" + ] + } + } + ], + "public_manifest": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/c2/tvae/tvae-c2-20260504_174121/public_gate/staged_input_manifest.json", + "train_csv": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/c2/tvae/tvae-c2-20260504_174121/staged/public/train.csv", + "val_csv": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/c2/tvae/tvae-c2-20260504_174121/staged/public/val.csv", + "test_csv": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/c2/tvae/tvae-c2-20260504_174121/staged/public/test.csv", + "features_json": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/c2/tvae/tvae-c2-20260504_174121/staged/public/staged_features.json", + "public_gate_report": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/c2/tvae/tvae-c2-20260504_174121/public_gate/public_gate_report.json" +} \ No newline at end of file diff --git a/timecost/c2/tvae/tvae-c2-20260504_174121/tvae-c2-1382-20260504_174137.csv b/timecost/c2/tvae/tvae-c2-20260504_174121/tvae-c2-1382-20260504_174137.csv new file mode 100644 index 0000000000000000000000000000000000000000..0737ba5dfe37b5d7ec7bc0bc5c69c9ede6a47216 --- /dev/null +++ b/timecost/c2/tvae/tvae-c2-20260504_174121/tvae-c2-1382-20260504_174137.csv @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:1b2dc7b4aac308837c0d16c501f82943b483cde999544304161ff98921ed6e4c +size 41505 diff --git a/timecost/c2/tvae/tvae-c2-20260504_174121/tvae_metadata.json b/timecost/c2/tvae/tvae-c2-20260504_174121/tvae_metadata.json new file mode 100644 index 0000000000000000000000000000000000000000..183d627ebc98e89233655ec98c9dcbc528c4c328 --- /dev/null +++ b/timecost/c2/tvae/tvae-c2-20260504_174121/tvae_metadata.json @@ -0,0 +1,32 @@ +{ + "columns": [ + { + "name": "buying", + "type": "categorical" + }, + { + "name": "maint", + "type": "categorical" + }, + { + "name": "doors", + "type": "categorical" + }, + { + "name": "persons", + "type": "categorical" + }, + { + "name": "lug_boot", + "type": "categorical" + }, + { + "name": "safety", + "type": "categorical" + }, + { + "name": "class", + "type": "categorical" + } + ] +} \ No newline at end of file diff --git a/timecost/c2/tvae/tvae-c2-20260504_174154/_tvae_generate.py b/timecost/c2/tvae/tvae-c2-20260504_174154/_tvae_generate.py new file mode 100644 index 0000000000000000000000000000000000000000..d80d25210e0289b817b08633cb84481dad9fa72c --- /dev/null +++ b/timecost/c2/tvae/tvae-c2-20260504_174154/_tvae_generate.py @@ -0,0 +1,23 @@ +import os, sys +sys.path.insert(0, "/work") +from src.SpecificModels.ctgan_joblib_parallel_cap import apply_parallel_cap_from_env +apply_parallel_cap_from_env() +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 +os.environ.setdefault("LOKY_MAX_CPU_COUNT", "8") +os.environ.setdefault("OPENBLAS_NUM_THREADS", "8") +os.environ.setdefault("MKL_NUM_THREADS", "8") +model = TVAE.load("/work/output-Benchmark-trainonly-v1/c2/tvae/tvae-c2-20260504_174154/models_300epochs/tvae_300epochs.pt") +total = 1382 +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-Benchmark-trainonly-v1/c2/tvae/tvae-c2-20260504_174154/tvae-c2-1382-20260504_174210.csv", index=False) +print(f"[TVAE] Generated {total} rows (chunks={len(parts)}) -> /work/output-Benchmark-trainonly-v1/c2/tvae/tvae-c2-20260504_174154/tvae-c2-1382-20260504_174210.csv") diff --git a/timecost/c2/tvae/tvae-c2-20260504_174154/_tvae_train.py b/timecost/c2/tvae/tvae-c2-20260504_174154/_tvae_train.py new file mode 100644 index 0000000000000000000000000000000000000000..26e132045e4721046a67aaab210cdd192059dbd4 --- /dev/null +++ b/timecost/c2/tvae/tvae-c2-20260504_174154/_tvae_train.py @@ -0,0 +1,39 @@ +import json, os, sys +sys.path.insert(0, "/work") +from src.SpecificModels.ctgan_joblib_parallel_cap import apply_parallel_cap_from_env +apply_parallel_cap_from_env() +import pandas as pd +from ctgan.data import read_csv +from ctgan.synthesizers.tvae import TVAE + +# Keep transform stage parallelism bounded for stability on shared host. +os.environ.setdefault("LOKY_MAX_CPU_COUNT", "8") +os.environ.setdefault("OPENBLAS_NUM_THREADS", "8") +os.environ.setdefault("MKL_NUM_THREADS", "8") +_nj = (os.environ.get("TVAE_CTGAN_JOBTRANS_N_JOBS") or "").strip() +if _nj: + print("[TVAE] joblib Parallel cap ON, TVAE_CTGAN_JOBTRANS_N_JOBS=" + _nj) +else: + print("[TVAE] joblib Parallel cap OFF (unset TVAE_CTGAN_JOBTRANS_N_JOBS)") +print("[TVAE] LOKY_MAX_CPU_COUNT=" + str(os.environ.get("LOKY_MAX_CPU_COUNT", ""))) + +csv_path = "/work/output-Benchmark-trainonly-v1/c2/tvae/tvae-c2-20260504_174154/staged/public/train.csv" +meta_path = "/work/output-Benchmark-trainonly-v1/c2/tvae/tvae-c2-20260504_174154/tvae_metadata.json" +save_path = "/work/output-Benchmark-trainonly-v1/c2/tvae/tvae-c2-20260504_174154/models_300epochs/tvae_300epochs.pt" +epochs = int(os.environ.get("TVAE_EPOCHS", 300)) +batch_size = int(os.environ.get("TVAE_BATCH_SIZE", "500")) +embedding_dim = int(os.environ.get("TVAE_EMBEDDING_DIM", "128")) +def _parse_dims(name, default): + raw = (os.environ.get(name) or "").strip() + if not raw: + return default + return tuple(int(x.strip()) for x in raw.split(",") if x.strip()) +compress_dims = _parse_dims("TVAE_COMPRESS_DIMS", (128, 128)) +decompress_dims = _parse_dims("TVAE_DECOMPRESS_DIMS", (128, 128)) + +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}, batch_size={batch_size}, embedding_dim={embedding_dim}, compress_dims={compress_dims}, decompress_dims={decompress_dims}") +model = TVAE(epochs=epochs, batch_size=batch_size, embedding_dim=embedding_dim, compress_dims=compress_dims, decompress_dims=decompress_dims) +model.fit(data, discrete_columns) +model.save(save_path) +print(f"[TVAE] Model saved -> {save_path}") diff --git a/timecost/c2/tvae/tvae-c2-20260504_174154/gen_20260504_174210.log b/timecost/c2/tvae/tvae-c2-20260504_174154/gen_20260504_174210.log new file mode 100644 index 0000000000000000000000000000000000000000..63123e59ac40ced95634de8d57657fd11d935320 --- /dev/null +++ b/timecost/c2/tvae/tvae-c2-20260504_174154/gen_20260504_174210.log @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:9295c44c01b1fd97e9c805d7a481d72fcd0e87d969e89140bc0d39af40dfc04a +size 404 diff --git a/timecost/c2/tvae/tvae-c2-20260504_174154/input_snapshot.json b/timecost/c2/tvae/tvae-c2-20260504_174154/input_snapshot.json new file mode 100644 index 0000000000000000000000000000000000000000..9e28a5421f2176e174a0659e66a40054269fb2ac --- /dev/null +++ b/timecost/c2/tvae/tvae-c2-20260504_174154/input_snapshot.json @@ -0,0 +1,36 @@ +{ + "dataset_id": "c2", + "model": "tvae", + "inputs": { + "train_csv": { + "path": "/data/jialinzhang/SynthesizePipeline-server/DatasetNew/c2/c2-train.csv", + "exists": true, + "size": 42948, + "sha256": "17bc560fa96bd00fb3b526e1e65bc91210b701d0d0a4e8bb9b4c5196cab56def" + }, + "val_csv": { + "path": "/data/jialinzhang/SynthesizePipeline-server/DatasetNew/c2/c2-val.csv", + "exists": true, + "size": 5349, + "sha256": "61e565eca62e65a7dccd9d51039a3170413379e10fc494e25870e7c4294863c9" + }, + "test_csv": { + "path": "/data/jialinzhang/SynthesizePipeline-server/DatasetNew/c2/c2-test.csv", + "exists": true, + "size": 5448, + "sha256": "cbcbb062a1faf5fa44b66c80532baa229e05b94fc42137269761e6c6d84af20a" + }, + "profile_json": { + "path": "/data/jialinzhang/SynthesizePipeline-server/DatasetNew/artifacts/data_core/tabular/c2/c2-dataset_profile.json", + "exists": true, + "size": 3240, + "sha256": "526b7163b2076c93c0bf4638438081ee8a6907065d5b608faa40d1a3dbc2a27b" + }, + "contract_json": { + "path": "/data/jialinzhang/SynthesizePipeline-server/DatasetNew/artifacts/data_core/tabular/c2/c2-dataset_contract_v1.json", + "exists": true, + "size": 3731, + "sha256": "fb595a876054c2ee9b4e10cfe83a5691588de1d25466cbb9d473c18ad3604009" + } + } +} \ No newline at end of file diff --git a/timecost/c2/tvae/tvae-c2-20260504_174154/models_300epochs/train_20260504_174154.log b/timecost/c2/tvae/tvae-c2-20260504_174154/models_300epochs/train_20260504_174154.log new file mode 100644 index 0000000000000000000000000000000000000000..18eba14510752169d46511d24b9fa056d4d48a17 --- /dev/null +++ b/timecost/c2/tvae/tvae-c2-20260504_174154/models_300epochs/train_20260504_174154.log @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:545125874fecb8ddd76af96a5ee5e06601127a0dd2e37ce07f49191222e99dc3 +size 620 diff --git a/timecost/c2/tvae/tvae-c2-20260504_174154/models_300epochs/tvae_300epochs.pt b/timecost/c2/tvae/tvae-c2-20260504_174154/models_300epochs/tvae_300epochs.pt new file mode 100644 index 0000000000000000000000000000000000000000..8a29d8a55e3370ac0603b39a5784954180c743de --- /dev/null +++ b/timecost/c2/tvae/tvae-c2-20260504_174154/models_300epochs/tvae_300epochs.pt @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:c313f03bd4c66656f8c97200f3e68fa34fe32d3c2b0f3e6faccdd71d3f96f276 +size 344876 diff --git a/timecost/c2/tvae/tvae-c2-20260504_174154/public_gate/normalized_schema_snapshot.json b/timecost/c2/tvae/tvae-c2-20260504_174154/public_gate/normalized_schema_snapshot.json new file mode 100644 index 0000000000000000000000000000000000000000..689b1d00d96508e44ba40e58dc4560e19afc2b3b --- /dev/null +++ b/timecost/c2/tvae/tvae-c2-20260504_174154/public_gate/normalized_schema_snapshot.json @@ -0,0 +1,144 @@ +{ + "dataset_id": "c2", + "target_column": "class", + "task_type": "classification", + "columns": [ + { + "name": "buying", + "role": "feature", + "semantic_type": "categorical", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 4, + "unique_ratio": 0.002894, + "example_values": [ + "vhigh", + "med", + "high", + "low" + ] + } + }, + { + "name": "maint", + "role": "feature", + "semantic_type": "categorical", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 4, + "unique_ratio": 0.002894, + "example_values": [ + "vhigh", + "low", + "med", + "high" + ] + } + }, + { + "name": "doors", + "role": "feature", + "semantic_type": "categorical", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 4, + "unique_ratio": 0.002894, + "example_values": [ + "2", + "5more", + "3", + "4" + ] + } + }, + { + "name": "persons", + "role": "feature", + "semantic_type": "categorical", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 3, + "unique_ratio": 0.002171, + "example_values": [ + "2", + "4", + "more" + ] + } + }, + { + "name": "lug_boot", + "role": "feature", + "semantic_type": "categorical", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 3, + "unique_ratio": 0.002171, + "example_values": [ + "small", + "big", + "med" + ] + } + }, + { + "name": "safety", + "role": "feature", + "semantic_type": "categorical", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 3, + "unique_ratio": 0.002171, + "example_values": [ + "low", + "high", + "med" + ] + } + }, + { + "name": "class", + "role": "target", + "semantic_type": "categorical", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 4, + "unique_ratio": 0.002894, + "example_values": [ + "unacc", + "good", + "acc", + "vgood" + ] + } + } + ] +} \ No newline at end of file diff --git a/timecost/c2/tvae/tvae-c2-20260504_174154/public_gate/public_gate_report.json b/timecost/c2/tvae/tvae-c2-20260504_174154/public_gate/public_gate_report.json new file mode 100644 index 0000000000000000000000000000000000000000..2e4cdcb2a4e28e40d59b17a83e773f622b7636a5 --- /dev/null +++ b/timecost/c2/tvae/tvae-c2-20260504_174154/public_gate/public_gate_report.json @@ -0,0 +1,37 @@ +{ + "dataset_id": "c2", + "status": "pass", + "checks": [ + { + "check_id": "PG001_csv_parse_ok", + "status": "pass" + }, + { + "check_id": "PG002_split_header_consistent", + "status": "pass" + }, + { + "check_id": "PG003_profile_header_match", + "status": "pass" + }, + { + "check_id": "PG004_missing_token_normalized", + "status": "pass" + }, + { + "check_id": "PG005_semantic_type_validated", + "status": "pass" + }, + { + "check_id": "PG006_target_defined_and_valid", + "status": "pass" + } + ], + "target_column": "class", + "task_type": "classification", + "input_splits": { + "train": "/data/jialinzhang/SynthesizePipeline-server/DatasetNew/c2/c2-train.csv", + "val": "/data/jialinzhang/SynthesizePipeline-server/DatasetNew/c2/c2-val.csv", + "test": "/data/jialinzhang/SynthesizePipeline-server/DatasetNew/c2/c2-test.csv" + } +} \ No newline at end of file diff --git a/timecost/c2/tvae/tvae-c2-20260504_174154/public_gate/staged_input_manifest.json b/timecost/c2/tvae/tvae-c2-20260504_174154/public_gate/staged_input_manifest.json new file mode 100644 index 0000000000000000000000000000000000000000..3b36c44b28c91fc89b7acfc0f2b620ed715caaf6 --- /dev/null +++ b/timecost/c2/tvae/tvae-c2-20260504_174154/public_gate/staged_input_manifest.json @@ -0,0 +1,149 @@ +{ + "dataset_id": "c2", + "target_column": "class", + "task_type": "classification", + "train_csv": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/c2/tvae/tvae-c2-20260504_174154/staged/public/train.csv", + "val_csv": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/c2/tvae/tvae-c2-20260504_174154/staged/public/val.csv", + "test_csv": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/c2/tvae/tvae-c2-20260504_174154/staged/public/test.csv", + "features_json": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/c2/tvae/tvae-c2-20260504_174154/staged/public/staged_features.json", + "public_gate_report": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/c2/tvae/tvae-c2-20260504_174154/public_gate/public_gate_report.json", + "column_schema": [ + { + "name": "buying", + "role": "feature", + "semantic_type": "categorical", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 4, + "unique_ratio": 0.002894, + "example_values": [ + "vhigh", + "med", + "high", + "low" + ] + } + }, + { + "name": "maint", + "role": "feature", + "semantic_type": "categorical", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 4, + "unique_ratio": 0.002894, + "example_values": [ + "vhigh", + "low", + "med", + "high" + ] + } + }, + { + "name": "doors", + "role": "feature", + "semantic_type": "categorical", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 4, + "unique_ratio": 0.002894, + "example_values": [ + "2", + "5more", + "3", + "4" + ] + } + }, + { + "name": "persons", + "role": "feature", + "semantic_type": "categorical", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 3, + "unique_ratio": 0.002171, + "example_values": [ + "2", + "4", + "more" + ] + } + }, + { + "name": "lug_boot", + "role": "feature", + "semantic_type": "categorical", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 3, + "unique_ratio": 0.002171, + "example_values": [ + "small", + "big", + "med" + ] + } + }, + { + "name": "safety", + "role": "feature", + "semantic_type": "categorical", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 3, + "unique_ratio": 0.002171, + "example_values": [ + "low", + "high", + "med" + ] + } + }, + { + "name": "class", + "role": "target", + "semantic_type": "categorical", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 4, + "unique_ratio": 0.002894, + "example_values": [ + "unacc", + "good", + "acc", + "vgood" + ] + } + } + ] +} \ No newline at end of file diff --git a/timecost/c2/tvae/tvae-c2-20260504_174154/run_config.json b/timecost/c2/tvae/tvae-c2-20260504_174154/run_config.json new file mode 100644 index 0000000000000000000000000000000000000000..d7c6834b0a8e47bb7e6f56b9fd086655f8441bce --- /dev/null +++ b/timecost/c2/tvae/tvae-c2-20260504_174154/run_config.json @@ -0,0 +1,45 @@ +{ + "schema_version": 1, + "recorded_at": "2026-05-04T17:41:54", + "dataset_id": "c2", + "model": "tvae", + "work_dir": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/c2/tvae/tvae-c2-20260504_174154", + "dataset_source_requested": "new", + "dataset_source_resolved": "new", + "cli_args": { + "model": "tvae", + "dataset": "c2", + "dataset_source": "new", + "train": true, + "generate": true, + "num_rows": 0, + "epochs": null, + "output_dir": null, + "model_dir": null, + "work_dir": null, + "resume": false, + "no_stats": false + }, + "resolved": { + "num_rows": 1382, + "model_path": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/c2/tvae/tvae-c2-20260504_174154/models_300epochs/tvae_300epochs.pt", + "output_csv": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/c2/tvae/tvae-c2-20260504_174154/tvae-c2-1382-20260504_174210.csv" + }, + "input_artifacts": { + "public_gate_report": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/c2/tvae/tvae-c2-20260504_174154/public_gate/public_gate_report.json", + "public_manifest": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/c2/tvae/tvae-c2-20260504_174154/public_gate/staged_input_manifest.json", + "model_manifest": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/c2/tvae/tvae-c2-20260504_174154/staged/tvae/model_input_manifest.json", + "train_csv": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/c2/tvae/tvae-c2-20260504_174154/staged/public/train.csv", + "features_json": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/c2/tvae/tvae-c2-20260504_174154/staged/public/staged_features.json", + "target_column": "class", + "task_type": "classification" + }, + "env_overrides": { + "BENCHMARK_TVAE_GPUS": "device=3", + "TVAE_BATCH_SIZE": "256", + "TVAE_COMPRESS_DIMS": "256,256", + "TVAE_DECOMPRESS_DIMS": "256,256", + "TVAE_EMBEDDING_DIM": "128", + "TVAE_EPOCHS": "500" + } +} \ No newline at end of file diff --git a/timecost/c2/tvae/tvae-c2-20260504_174154/runtime_result.json b/timecost/c2/tvae/tvae-c2-20260504_174154/runtime_result.json new file mode 100644 index 0000000000000000000000000000000000000000..731b3fb75f31150c5c810369fca9d9fb0a47b65e --- /dev/null +++ b/timecost/c2/tvae/tvae-c2-20260504_174154/runtime_result.json @@ -0,0 +1,27 @@ +{ + "dataset_id": "c2", + "model": "tvae", + "run_id": "tvae-c2-20260504_174154", + "public_gate_status": "pass", + "adapter_ready_status": "pass", + "train_status": "success", + "generate_status": "success", + "reason_code": null, + "reason_detail": null, + "artifacts": { + "synthetic_csv": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/c2/tvae/tvae-c2-20260504_174154/tvae-c2-1382-20260504_174210.csv", + "model_path": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/c2/tvae/tvae-c2-20260504_174154/models_300epochs/tvae_300epochs.pt" + }, + "timings": { + "train": { + "started_at": "2026-05-04T17:41:54", + "ended_at": "2026-05-04T17:42:10", + "duration_sec": 15.509 + }, + "generate": { + "started_at": "2026-05-04T17:42:10", + "ended_at": "2026-05-04T17:42:15", + "duration_sec": 5.341 + } + } +} \ No newline at end of file diff --git a/timecost/c2/tvae/tvae-c2-20260504_174154/staged/public/staged_features.json b/timecost/c2/tvae/tvae-c2-20260504_174154/staged/public/staged_features.json new file mode 100644 index 0000000000000000000000000000000000000000..61783861dd5de501592f76acb0469cf3f3b2622a --- /dev/null +++ b/timecost/c2/tvae/tvae-c2-20260504_174154/staged/public/staged_features.json @@ -0,0 +1,37 @@ +[ + { + "feature_name": "buying", + "data_type": "categorical", + "is_target": false + }, + { + "feature_name": "maint", + "data_type": "categorical", + "is_target": false + }, + { + "feature_name": "doors", + "data_type": "categorical", + "is_target": false + }, + { + "feature_name": "persons", + "data_type": "categorical", + "is_target": false + }, + { + "feature_name": "lug_boot", + "data_type": "categorical", + "is_target": false + }, + { + "feature_name": "safety", + "data_type": "categorical", + "is_target": false + }, + { + "feature_name": "class", + "data_type": "categorical", + "is_target": true + } +] \ No newline at end of file diff --git a/timecost/c2/tvae/tvae-c2-20260504_174154/staged/public/test.csv b/timecost/c2/tvae/tvae-c2-20260504_174154/staged/public/test.csv new file mode 100644 index 0000000000000000000000000000000000000000..392a0d7189a34d8f13ecf20a99d64b03230d517c --- /dev/null +++ b/timecost/c2/tvae/tvae-c2-20260504_174154/staged/public/test.csv @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:b48114a7d0bc5bd9a07920f903c8d4aba8bf98bf2a66a050da03588b0245ca73 +size 5273 diff --git a/timecost/c2/tvae/tvae-c2-20260504_174154/staged/public/train.csv b/timecost/c2/tvae/tvae-c2-20260504_174154/staged/public/train.csv new file mode 100644 index 0000000000000000000000000000000000000000..da4f4d55134eebc0e51157d0d467536371db1484 --- /dev/null +++ b/timecost/c2/tvae/tvae-c2-20260504_174154/staged/public/train.csv @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:4aed00c2c2b3f88a55a7ebff31b2e1b5e0e32fb0a7267e0b9d2779cd23e434dd +size 41565 diff --git a/timecost/c2/tvae/tvae-c2-20260504_174154/staged/public/val.csv b/timecost/c2/tvae/tvae-c2-20260504_174154/staged/public/val.csv new file mode 100644 index 0000000000000000000000000000000000000000..af8caf7ee42524188534a3daf32996dc491952d9 --- /dev/null +++ b/timecost/c2/tvae/tvae-c2-20260504_174154/staged/public/val.csv @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:26e90c1170a57a14c05832ac88027722b1f3848f9662c7c09ef7c93dcba4cc01 +size 5176 diff --git a/timecost/c2/tvae/tvae-c2-20260504_174154/staged/tvae/adapter_report.json b/timecost/c2/tvae/tvae-c2-20260504_174154/staged/tvae/adapter_report.json new file mode 100644 index 0000000000000000000000000000000000000000..189b83c6cb1392d0d91b7025744650bbf87dfb55 --- /dev/null +++ b/timecost/c2/tvae/tvae-c2-20260504_174154/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-Benchmark-trainonly-v1/c2/tvae/tvae-c2-20260504_174154/staged/tvae/model_input_manifest.json" +} \ No newline at end of file diff --git a/timecost/c2/tvae/tvae-c2-20260504_174154/staged/tvae/adapter_transforms_applied.json b/timecost/c2/tvae/tvae-c2-20260504_174154/staged/tvae/adapter_transforms_applied.json new file mode 100644 index 0000000000000000000000000000000000000000..0637a088a01e8ddab3bf3fa98dbe804cbde1a0dc --- /dev/null +++ b/timecost/c2/tvae/tvae-c2-20260504_174154/staged/tvae/adapter_transforms_applied.json @@ -0,0 +1 @@ +[] \ No newline at end of file diff --git a/timecost/c2/tvae/tvae-c2-20260504_174154/staged/tvae/model_input_manifest.json b/timecost/c2/tvae/tvae-c2-20260504_174154/staged/tvae/model_input_manifest.json new file mode 100644 index 0000000000000000000000000000000000000000..3b4bcd1074c6e0d6cc900926febe83d6ece42b52 --- /dev/null +++ b/timecost/c2/tvae/tvae-c2-20260504_174154/staged/tvae/model_input_manifest.json @@ -0,0 +1,151 @@ +{ + "dataset_id": "c2", + "model": "tvae", + "target_column": "class", + "task_type": "classification", + "column_schema": [ + { + "name": "buying", + "role": "feature", + "semantic_type": "categorical", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 4, + "unique_ratio": 0.002894, + "example_values": [ + "vhigh", + "med", + "high", + "low" + ] + } + }, + { + "name": "maint", + "role": "feature", + "semantic_type": "categorical", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 4, + "unique_ratio": 0.002894, + "example_values": [ + "vhigh", + "low", + "med", + "high" + ] + } + }, + { + "name": "doors", + "role": "feature", + "semantic_type": "categorical", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 4, + "unique_ratio": 0.002894, + "example_values": [ + "2", + "5more", + "3", + "4" + ] + } + }, + { + "name": "persons", + "role": "feature", + "semantic_type": "categorical", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 3, + "unique_ratio": 0.002171, + "example_values": [ + "2", + "4", + "more" + ] + } + }, + { + "name": "lug_boot", + "role": "feature", + "semantic_type": "categorical", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 3, + "unique_ratio": 0.002171, + "example_values": [ + "small", + "big", + "med" + ] + } + }, + { + "name": "safety", + "role": "feature", + "semantic_type": "categorical", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 3, + "unique_ratio": 0.002171, + "example_values": [ + "low", + "high", + "med" + ] + } + }, + { + "name": "class", + "role": "target", + "semantic_type": "categorical", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 4, + "unique_ratio": 0.002894, + "example_values": [ + "unacc", + "good", + "acc", + "vgood" + ] + } + } + ], + "public_manifest": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/c2/tvae/tvae-c2-20260504_174154/public_gate/staged_input_manifest.json", + "train_csv": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/c2/tvae/tvae-c2-20260504_174154/staged/public/train.csv", + "val_csv": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/c2/tvae/tvae-c2-20260504_174154/staged/public/val.csv", + "test_csv": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/c2/tvae/tvae-c2-20260504_174154/staged/public/test.csv", + "features_json": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/c2/tvae/tvae-c2-20260504_174154/staged/public/staged_features.json", + "public_gate_report": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/c2/tvae/tvae-c2-20260504_174154/public_gate/public_gate_report.json" +} \ No newline at end of file diff --git a/timecost/c2/tvae/tvae-c2-20260504_174154/tvae-c2-1382-20260504_174210.csv b/timecost/c2/tvae/tvae-c2-20260504_174154/tvae-c2-1382-20260504_174210.csv new file mode 100644 index 0000000000000000000000000000000000000000..c83688d2010e78aeb0ecc98529fdd18e33c714d5 --- /dev/null +++ b/timecost/c2/tvae/tvae-c2-20260504_174154/tvae-c2-1382-20260504_174210.csv @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:94ee321408fa4dd67c768ba7f1522bec0d6ad27f49ecc50eb179d2ae844dd3f5 +size 41485 diff --git a/timecost/c2/tvae/tvae-c2-20260504_174154/tvae_metadata.json b/timecost/c2/tvae/tvae-c2-20260504_174154/tvae_metadata.json new file mode 100644 index 0000000000000000000000000000000000000000..183d627ebc98e89233655ec98c9dcbc528c4c328 --- /dev/null +++ b/timecost/c2/tvae/tvae-c2-20260504_174154/tvae_metadata.json @@ -0,0 +1,32 @@ +{ + "columns": [ + { + "name": "buying", + "type": "categorical" + }, + { + "name": "maint", + "type": "categorical" + }, + { + "name": "doors", + "type": "categorical" + }, + { + "name": "persons", + "type": "categorical" + }, + { + "name": "lug_boot", + "type": "categorical" + }, + { + "name": "safety", + "type": "categorical" + }, + { + "name": "class", + "type": "categorical" + } + ] +} \ No newline at end of file diff --git a/timecost/c2/tvae/tvae-c2-20260504_174228/_tvae_generate.py b/timecost/c2/tvae/tvae-c2-20260504_174228/_tvae_generate.py new file mode 100644 index 0000000000000000000000000000000000000000..bc004c641ef3108ef8d5f082c796ac82f8020042 --- /dev/null +++ b/timecost/c2/tvae/tvae-c2-20260504_174228/_tvae_generate.py @@ -0,0 +1,23 @@ +import os, sys +sys.path.insert(0, "/work") +from src.SpecificModels.ctgan_joblib_parallel_cap import apply_parallel_cap_from_env +apply_parallel_cap_from_env() +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 +os.environ.setdefault("LOKY_MAX_CPU_COUNT", "8") +os.environ.setdefault("OPENBLAS_NUM_THREADS", "8") +os.environ.setdefault("MKL_NUM_THREADS", "8") +model = TVAE.load("/work/output-Benchmark-trainonly-v1/c2/tvae/tvae-c2-20260504_174228/models_300epochs/tvae_300epochs.pt") +total = 1382 +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-Benchmark-trainonly-v1/c2/tvae/tvae-c2-20260504_174228/tvae-c2-1382-20260504_174245.csv", index=False) +print(f"[TVAE] Generated {total} rows (chunks={len(parts)}) -> /work/output-Benchmark-trainonly-v1/c2/tvae/tvae-c2-20260504_174228/tvae-c2-1382-20260504_174245.csv") diff --git a/timecost/c2/tvae/tvae-c2-20260504_174228/_tvae_train.py b/timecost/c2/tvae/tvae-c2-20260504_174228/_tvae_train.py new file mode 100644 index 0000000000000000000000000000000000000000..bb08e002da231ddadd43ffcfd0f08856e725b5fb --- /dev/null +++ b/timecost/c2/tvae/tvae-c2-20260504_174228/_tvae_train.py @@ -0,0 +1,39 @@ +import json, os, sys +sys.path.insert(0, "/work") +from src.SpecificModels.ctgan_joblib_parallel_cap import apply_parallel_cap_from_env +apply_parallel_cap_from_env() +import pandas as pd +from ctgan.data import read_csv +from ctgan.synthesizers.tvae import TVAE + +# Keep transform stage parallelism bounded for stability on shared host. +os.environ.setdefault("LOKY_MAX_CPU_COUNT", "8") +os.environ.setdefault("OPENBLAS_NUM_THREADS", "8") +os.environ.setdefault("MKL_NUM_THREADS", "8") +_nj = (os.environ.get("TVAE_CTGAN_JOBTRANS_N_JOBS") or "").strip() +if _nj: + print("[TVAE] joblib Parallel cap ON, TVAE_CTGAN_JOBTRANS_N_JOBS=" + _nj) +else: + print("[TVAE] joblib Parallel cap OFF (unset TVAE_CTGAN_JOBTRANS_N_JOBS)") +print("[TVAE] LOKY_MAX_CPU_COUNT=" + str(os.environ.get("LOKY_MAX_CPU_COUNT", ""))) + +csv_path = "/work/output-Benchmark-trainonly-v1/c2/tvae/tvae-c2-20260504_174228/staged/public/train.csv" +meta_path = "/work/output-Benchmark-trainonly-v1/c2/tvae/tvae-c2-20260504_174228/tvae_metadata.json" +save_path = "/work/output-Benchmark-trainonly-v1/c2/tvae/tvae-c2-20260504_174228/models_300epochs/tvae_300epochs.pt" +epochs = int(os.environ.get("TVAE_EPOCHS", 300)) +batch_size = int(os.environ.get("TVAE_BATCH_SIZE", "500")) +embedding_dim = int(os.environ.get("TVAE_EMBEDDING_DIM", "128")) +def _parse_dims(name, default): + raw = (os.environ.get(name) or "").strip() + if not raw: + return default + return tuple(int(x.strip()) for x in raw.split(",") if x.strip()) +compress_dims = _parse_dims("TVAE_COMPRESS_DIMS", (128, 128)) +decompress_dims = _parse_dims("TVAE_DECOMPRESS_DIMS", (128, 128)) + +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}, batch_size={batch_size}, embedding_dim={embedding_dim}, compress_dims={compress_dims}, decompress_dims={decompress_dims}") +model = TVAE(epochs=epochs, batch_size=batch_size, embedding_dim=embedding_dim, compress_dims=compress_dims, decompress_dims=decompress_dims) +model.fit(data, discrete_columns) +model.save(save_path) +print(f"[TVAE] Model saved -> {save_path}") diff --git a/timecost/c2/tvae/tvae-c2-20260504_174228/gen_20260504_174245.log b/timecost/c2/tvae/tvae-c2-20260504_174228/gen_20260504_174245.log new file mode 100644 index 0000000000000000000000000000000000000000..8c9691faa417502fa8ab6fd539913322f6ab883f --- /dev/null +++ b/timecost/c2/tvae/tvae-c2-20260504_174228/gen_20260504_174245.log @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:52660e570f2b1798f41853f45ac28d1c585f75b473dc0bafb63cea59cf9cd40d +size 404 diff --git a/timecost/c2/tvae/tvae-c2-20260504_174228/input_snapshot.json b/timecost/c2/tvae/tvae-c2-20260504_174228/input_snapshot.json new file mode 100644 index 0000000000000000000000000000000000000000..9e28a5421f2176e174a0659e66a40054269fb2ac --- /dev/null +++ b/timecost/c2/tvae/tvae-c2-20260504_174228/input_snapshot.json @@ -0,0 +1,36 @@ +{ + "dataset_id": "c2", + "model": "tvae", + "inputs": { + "train_csv": { + "path": "/data/jialinzhang/SynthesizePipeline-server/DatasetNew/c2/c2-train.csv", + "exists": true, + "size": 42948, + "sha256": "17bc560fa96bd00fb3b526e1e65bc91210b701d0d0a4e8bb9b4c5196cab56def" + }, + "val_csv": { + "path": "/data/jialinzhang/SynthesizePipeline-server/DatasetNew/c2/c2-val.csv", + "exists": true, + "size": 5349, + "sha256": "61e565eca62e65a7dccd9d51039a3170413379e10fc494e25870e7c4294863c9" + }, + "test_csv": { + "path": "/data/jialinzhang/SynthesizePipeline-server/DatasetNew/c2/c2-test.csv", + "exists": true, + "size": 5448, + "sha256": "cbcbb062a1faf5fa44b66c80532baa229e05b94fc42137269761e6c6d84af20a" + }, + "profile_json": { + "path": "/data/jialinzhang/SynthesizePipeline-server/DatasetNew/artifacts/data_core/tabular/c2/c2-dataset_profile.json", + "exists": true, + "size": 3240, + "sha256": "526b7163b2076c93c0bf4638438081ee8a6907065d5b608faa40d1a3dbc2a27b" + }, + "contract_json": { + "path": "/data/jialinzhang/SynthesizePipeline-server/DatasetNew/artifacts/data_core/tabular/c2/c2-dataset_contract_v1.json", + "exists": true, + "size": 3731, + "sha256": "fb595a876054c2ee9b4e10cfe83a5691588de1d25466cbb9d473c18ad3604009" + } + } +} \ No newline at end of file diff --git a/timecost/c2/tvae/tvae-c2-20260504_174228/models_300epochs/train_20260504_174228.log b/timecost/c2/tvae/tvae-c2-20260504_174228/models_300epochs/train_20260504_174228.log new file mode 100644 index 0000000000000000000000000000000000000000..5de5d0ad51877c8b6ec752621ca300d9862143ba --- /dev/null +++ b/timecost/c2/tvae/tvae-c2-20260504_174228/models_300epochs/train_20260504_174228.log @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:58c60bb9fe86a317efabacf81546eb2b25f680a81383de073a9feceb8729d822 +size 620 diff --git a/timecost/c2/tvae/tvae-c2-20260504_174228/models_300epochs/tvae_300epochs.pt b/timecost/c2/tvae/tvae-c2-20260504_174228/models_300epochs/tvae_300epochs.pt new file mode 100644 index 0000000000000000000000000000000000000000..9924f6a37f84dc82fb6b9898dcfd4dd32b199504 --- /dev/null +++ b/timecost/c2/tvae/tvae-c2-20260504_174228/models_300epochs/tvae_300epochs.pt @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:15fc84c398c90a6b1dfa00fc6c2395643c8ca9901216eb12f9c29c1389c2775b +size 344876 diff --git a/timecost/c2/tvae/tvae-c2-20260504_174228/public_gate/normalized_schema_snapshot.json b/timecost/c2/tvae/tvae-c2-20260504_174228/public_gate/normalized_schema_snapshot.json new file mode 100644 index 0000000000000000000000000000000000000000..689b1d00d96508e44ba40e58dc4560e19afc2b3b --- /dev/null +++ b/timecost/c2/tvae/tvae-c2-20260504_174228/public_gate/normalized_schema_snapshot.json @@ -0,0 +1,144 @@ +{ + "dataset_id": "c2", + "target_column": "class", + "task_type": "classification", + "columns": [ + { + "name": "buying", + "role": "feature", + "semantic_type": "categorical", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 4, + "unique_ratio": 0.002894, + "example_values": [ + "vhigh", + "med", + "high", + "low" + ] + } + }, + { + "name": "maint", + "role": "feature", + "semantic_type": "categorical", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 4, + "unique_ratio": 0.002894, + "example_values": [ + "vhigh", + "low", + "med", + "high" + ] + } + }, + { + "name": "doors", + "role": "feature", + "semantic_type": "categorical", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 4, + "unique_ratio": 0.002894, + "example_values": [ + "2", + "5more", + "3", + "4" + ] + } + }, + { + "name": "persons", + "role": "feature", + "semantic_type": "categorical", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 3, + "unique_ratio": 0.002171, + "example_values": [ + "2", + "4", + "more" + ] + } + }, + { + "name": "lug_boot", + "role": "feature", + "semantic_type": "categorical", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 3, + "unique_ratio": 0.002171, + "example_values": [ + "small", + "big", + "med" + ] + } + }, + { + "name": "safety", + "role": "feature", + "semantic_type": "categorical", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 3, + "unique_ratio": 0.002171, + "example_values": [ + "low", + "high", + "med" + ] + } + }, + { + "name": "class", + "role": "target", + "semantic_type": "categorical", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 4, + "unique_ratio": 0.002894, + "example_values": [ + "unacc", + "good", + "acc", + "vgood" + ] + } + } + ] +} \ No newline at end of file diff --git a/timecost/c2/tvae/tvae-c2-20260504_174228/public_gate/public_gate_report.json b/timecost/c2/tvae/tvae-c2-20260504_174228/public_gate/public_gate_report.json new file mode 100644 index 0000000000000000000000000000000000000000..2e4cdcb2a4e28e40d59b17a83e773f622b7636a5 --- /dev/null +++ b/timecost/c2/tvae/tvae-c2-20260504_174228/public_gate/public_gate_report.json @@ -0,0 +1,37 @@ +{ + "dataset_id": "c2", + "status": "pass", + "checks": [ + { + "check_id": "PG001_csv_parse_ok", + "status": "pass" + }, + { + "check_id": "PG002_split_header_consistent", + "status": "pass" + }, + { + "check_id": "PG003_profile_header_match", + "status": "pass" + }, + { + "check_id": "PG004_missing_token_normalized", + "status": "pass" + }, + { + "check_id": "PG005_semantic_type_validated", + "status": "pass" + }, + { + "check_id": "PG006_target_defined_and_valid", + "status": "pass" + } + ], + "target_column": "class", + "task_type": "classification", + "input_splits": { + "train": "/data/jialinzhang/SynthesizePipeline-server/DatasetNew/c2/c2-train.csv", + "val": "/data/jialinzhang/SynthesizePipeline-server/DatasetNew/c2/c2-val.csv", + "test": "/data/jialinzhang/SynthesizePipeline-server/DatasetNew/c2/c2-test.csv" + } +} \ No newline at end of file diff --git a/timecost/c2/tvae/tvae-c2-20260504_174228/public_gate/staged_input_manifest.json b/timecost/c2/tvae/tvae-c2-20260504_174228/public_gate/staged_input_manifest.json new file mode 100644 index 0000000000000000000000000000000000000000..8b14a46f210a5c5de1d60562b8556e1663ab2d60 --- /dev/null +++ b/timecost/c2/tvae/tvae-c2-20260504_174228/public_gate/staged_input_manifest.json @@ -0,0 +1,149 @@ +{ + "dataset_id": "c2", + "target_column": "class", + "task_type": "classification", + "train_csv": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/c2/tvae/tvae-c2-20260504_174228/staged/public/train.csv", + "val_csv": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/c2/tvae/tvae-c2-20260504_174228/staged/public/val.csv", + "test_csv": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/c2/tvae/tvae-c2-20260504_174228/staged/public/test.csv", + "features_json": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/c2/tvae/tvae-c2-20260504_174228/staged/public/staged_features.json", + "public_gate_report": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/c2/tvae/tvae-c2-20260504_174228/public_gate/public_gate_report.json", + "column_schema": [ + { + "name": "buying", + "role": "feature", + "semantic_type": "categorical", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 4, + "unique_ratio": 0.002894, + "example_values": [ + "vhigh", + "med", + "high", + "low" + ] + } + }, + { + "name": "maint", + "role": "feature", + "semantic_type": "categorical", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 4, + "unique_ratio": 0.002894, + "example_values": [ + "vhigh", + "low", + "med", + "high" + ] + } + }, + { + "name": "doors", + "role": "feature", + "semantic_type": "categorical", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 4, + "unique_ratio": 0.002894, + "example_values": [ + "2", + "5more", + "3", + "4" + ] + } + }, + { + "name": "persons", + "role": "feature", + "semantic_type": "categorical", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 3, + "unique_ratio": 0.002171, + "example_values": [ + "2", + "4", + "more" + ] + } + }, + { + "name": "lug_boot", + "role": "feature", + "semantic_type": "categorical", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 3, + "unique_ratio": 0.002171, + "example_values": [ + "small", + "big", + "med" + ] + } + }, + { + "name": "safety", + "role": "feature", + "semantic_type": "categorical", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 3, + "unique_ratio": 0.002171, + "example_values": [ + "low", + "high", + "med" + ] + } + }, + { + "name": "class", + "role": "target", + "semantic_type": "categorical", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 4, + "unique_ratio": 0.002894, + "example_values": [ + "unacc", + "good", + "acc", + "vgood" + ] + } + } + ] +} \ No newline at end of file diff --git a/timecost/c2/tvae/tvae-c2-20260504_174228/run_config.json b/timecost/c2/tvae/tvae-c2-20260504_174228/run_config.json new file mode 100644 index 0000000000000000000000000000000000000000..7ba68d85fbf3be069f5726a7ab23f2656ab6a24e --- /dev/null +++ b/timecost/c2/tvae/tvae-c2-20260504_174228/run_config.json @@ -0,0 +1,45 @@ +{ + "schema_version": 1, + "recorded_at": "2026-05-04T17:42:28", + "dataset_id": "c2", + "model": "tvae", + "work_dir": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/c2/tvae/tvae-c2-20260504_174228", + "dataset_source_requested": "new", + "dataset_source_resolved": "new", + "cli_args": { + "model": "tvae", + "dataset": "c2", + "dataset_source": "new", + "train": true, + "generate": true, + "num_rows": 0, + "epochs": null, + "output_dir": null, + "model_dir": null, + "work_dir": null, + "resume": false, + "no_stats": false + }, + "resolved": { + "num_rows": 1382, + "model_path": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/c2/tvae/tvae-c2-20260504_174228/models_300epochs/tvae_300epochs.pt", + "output_csv": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/c2/tvae/tvae-c2-20260504_174228/tvae-c2-1382-20260504_174245.csv" + }, + "input_artifacts": { + "public_gate_report": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/c2/tvae/tvae-c2-20260504_174228/public_gate/public_gate_report.json", + "public_manifest": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/c2/tvae/tvae-c2-20260504_174228/public_gate/staged_input_manifest.json", + "model_manifest": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/c2/tvae/tvae-c2-20260504_174228/staged/tvae/model_input_manifest.json", + "train_csv": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/c2/tvae/tvae-c2-20260504_174228/staged/public/train.csv", + "features_json": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/c2/tvae/tvae-c2-20260504_174228/staged/public/staged_features.json", + "target_column": "class", + "task_type": "classification" + }, + "env_overrides": { + "BENCHMARK_TVAE_GPUS": "device=3", + "TVAE_BATCH_SIZE": "256", + "TVAE_COMPRESS_DIMS": "256,256", + "TVAE_DECOMPRESS_DIMS": "256,256", + "TVAE_EMBEDDING_DIM": "256", + "TVAE_EPOCHS": "500" + } +} \ No newline at end of file diff --git a/timecost/c2/tvae/tvae-c2-20260504_174228/runtime_result.json b/timecost/c2/tvae/tvae-c2-20260504_174228/runtime_result.json new file mode 100644 index 0000000000000000000000000000000000000000..79f329aafcff2be74e9f81bdeb2d4b5a868bdd83 --- /dev/null +++ b/timecost/c2/tvae/tvae-c2-20260504_174228/runtime_result.json @@ -0,0 +1,27 @@ +{ + "dataset_id": "c2", + "model": "tvae", + "run_id": "tvae-c2-20260504_174228", + "public_gate_status": "pass", + "adapter_ready_status": "pass", + "train_status": "success", + "generate_status": "success", + "reason_code": null, + "reason_detail": null, + "artifacts": { + "synthetic_csv": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/c2/tvae/tvae-c2-20260504_174228/tvae-c2-1382-20260504_174245.csv", + "model_path": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/c2/tvae/tvae-c2-20260504_174228/models_300epochs/tvae_300epochs.pt" + }, + "timings": { + "train": { + "started_at": "2026-05-04T17:42:28", + "ended_at": "2026-05-04T17:42:45", + "duration_sec": 16.727 + }, + "generate": { + "started_at": "2026-05-04T17:42:45", + "ended_at": "2026-05-04T17:42:50", + "duration_sec": 4.871 + } + } +} \ No newline at end of file diff --git a/timecost/c2/tvae/tvae-c2-20260504_174228/staged/public/staged_features.json b/timecost/c2/tvae/tvae-c2-20260504_174228/staged/public/staged_features.json new file mode 100644 index 0000000000000000000000000000000000000000..61783861dd5de501592f76acb0469cf3f3b2622a --- /dev/null +++ b/timecost/c2/tvae/tvae-c2-20260504_174228/staged/public/staged_features.json @@ -0,0 +1,37 @@ +[ + { + "feature_name": "buying", + "data_type": "categorical", + "is_target": false + }, + { + "feature_name": "maint", + "data_type": "categorical", + "is_target": false + }, + { + "feature_name": "doors", + "data_type": "categorical", + "is_target": false + }, + { + "feature_name": "persons", + "data_type": "categorical", + "is_target": false + }, + { + "feature_name": "lug_boot", + "data_type": "categorical", + "is_target": false + }, + { + "feature_name": "safety", + "data_type": "categorical", + "is_target": false + }, + { + "feature_name": "class", + "data_type": "categorical", + "is_target": true + } +] \ No newline at end of file diff --git a/timecost/c2/tvae/tvae-c2-20260504_174228/staged/public/test.csv b/timecost/c2/tvae/tvae-c2-20260504_174228/staged/public/test.csv new file mode 100644 index 0000000000000000000000000000000000000000..392a0d7189a34d8f13ecf20a99d64b03230d517c --- /dev/null +++ b/timecost/c2/tvae/tvae-c2-20260504_174228/staged/public/test.csv @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:b48114a7d0bc5bd9a07920f903c8d4aba8bf98bf2a66a050da03588b0245ca73 +size 5273 diff --git a/timecost/c2/tvae/tvae-c2-20260504_174228/staged/public/train.csv b/timecost/c2/tvae/tvae-c2-20260504_174228/staged/public/train.csv new file mode 100644 index 0000000000000000000000000000000000000000..da4f4d55134eebc0e51157d0d467536371db1484 --- /dev/null +++ b/timecost/c2/tvae/tvae-c2-20260504_174228/staged/public/train.csv @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:4aed00c2c2b3f88a55a7ebff31b2e1b5e0e32fb0a7267e0b9d2779cd23e434dd +size 41565 diff --git a/timecost/c2/tvae/tvae-c2-20260504_174228/staged/public/val.csv b/timecost/c2/tvae/tvae-c2-20260504_174228/staged/public/val.csv new file mode 100644 index 0000000000000000000000000000000000000000..af8caf7ee42524188534a3daf32996dc491952d9 --- /dev/null +++ b/timecost/c2/tvae/tvae-c2-20260504_174228/staged/public/val.csv @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:26e90c1170a57a14c05832ac88027722b1f3848f9662c7c09ef7c93dcba4cc01 +size 5176 diff --git a/timecost/c2/tvae/tvae-c2-20260504_174228/staged/tvae/adapter_report.json b/timecost/c2/tvae/tvae-c2-20260504_174228/staged/tvae/adapter_report.json new file mode 100644 index 0000000000000000000000000000000000000000..0e82075016a8326f1f9b6c83948df8bb21b14b53 --- /dev/null +++ b/timecost/c2/tvae/tvae-c2-20260504_174228/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-Benchmark-trainonly-v1/c2/tvae/tvae-c2-20260504_174228/staged/tvae/model_input_manifest.json" +} \ No newline at end of file diff --git a/timecost/c2/tvae/tvae-c2-20260504_174228/staged/tvae/adapter_transforms_applied.json b/timecost/c2/tvae/tvae-c2-20260504_174228/staged/tvae/adapter_transforms_applied.json new file mode 100644 index 0000000000000000000000000000000000000000..0637a088a01e8ddab3bf3fa98dbe804cbde1a0dc --- /dev/null +++ b/timecost/c2/tvae/tvae-c2-20260504_174228/staged/tvae/adapter_transforms_applied.json @@ -0,0 +1 @@ +[] \ No newline at end of file diff --git a/timecost/c2/tvae/tvae-c2-20260504_174228/staged/tvae/model_input_manifest.json b/timecost/c2/tvae/tvae-c2-20260504_174228/staged/tvae/model_input_manifest.json new file mode 100644 index 0000000000000000000000000000000000000000..daeb2bc660e9e321edfd0696d3d48311f9070c78 --- /dev/null +++ b/timecost/c2/tvae/tvae-c2-20260504_174228/staged/tvae/model_input_manifest.json @@ -0,0 +1,151 @@ +{ + "dataset_id": "c2", + "model": "tvae", + "target_column": "class", + "task_type": "classification", + "column_schema": [ + { + "name": "buying", + "role": "feature", + "semantic_type": "categorical", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 4, + "unique_ratio": 0.002894, + "example_values": [ + "vhigh", + "med", + "high", + "low" + ] + } + }, + { + "name": "maint", + "role": "feature", + "semantic_type": "categorical", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 4, + "unique_ratio": 0.002894, + "example_values": [ + "vhigh", + "low", + "med", + "high" + ] + } + }, + { + "name": "doors", + "role": "feature", + "semantic_type": "categorical", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 4, + "unique_ratio": 0.002894, + "example_values": [ + "2", + "5more", + "3", + "4" + ] + } + }, + { + "name": "persons", + "role": "feature", + "semantic_type": "categorical", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 3, + "unique_ratio": 0.002171, + "example_values": [ + "2", + "4", + "more" + ] + } + }, + { + "name": "lug_boot", + "role": "feature", + "semantic_type": "categorical", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 3, + "unique_ratio": 0.002171, + "example_values": [ + "small", + "big", + "med" + ] + } + }, + { + "name": "safety", + "role": "feature", + "semantic_type": "categorical", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 3, + "unique_ratio": 0.002171, + "example_values": [ + "low", + "high", + "med" + ] + } + }, + { + "name": "class", + "role": "target", + "semantic_type": "categorical", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 4, + "unique_ratio": 0.002894, + "example_values": [ + "unacc", + "good", + "acc", + "vgood" + ] + } + } + ], + "public_manifest": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/c2/tvae/tvae-c2-20260504_174228/public_gate/staged_input_manifest.json", + "train_csv": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/c2/tvae/tvae-c2-20260504_174228/staged/public/train.csv", + "val_csv": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/c2/tvae/tvae-c2-20260504_174228/staged/public/val.csv", + "test_csv": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/c2/tvae/tvae-c2-20260504_174228/staged/public/test.csv", + "features_json": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/c2/tvae/tvae-c2-20260504_174228/staged/public/staged_features.json", + "public_gate_report": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/c2/tvae/tvae-c2-20260504_174228/public_gate/public_gate_report.json" +} \ No newline at end of file diff --git a/timecost/c2/tvae/tvae-c2-20260504_174228/tvae-c2-1382-20260504_174245.csv b/timecost/c2/tvae/tvae-c2-20260504_174228/tvae-c2-1382-20260504_174245.csv new file mode 100644 index 0000000000000000000000000000000000000000..1eef2401674d55c788c8457160db07fb3ca8f4e4 --- /dev/null +++ b/timecost/c2/tvae/tvae-c2-20260504_174228/tvae-c2-1382-20260504_174245.csv @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:ed8d81c7986042bdc6d46d880cf4b8ecbb4ab544eed3754733fc1ee8424db47d +size 41641 diff --git a/timecost/c2/tvae/tvae-c2-20260504_174228/tvae_metadata.json b/timecost/c2/tvae/tvae-c2-20260504_174228/tvae_metadata.json new file mode 100644 index 0000000000000000000000000000000000000000..183d627ebc98e89233655ec98c9dcbc528c4c328 --- /dev/null +++ b/timecost/c2/tvae/tvae-c2-20260504_174228/tvae_metadata.json @@ -0,0 +1,32 @@ +{ + "columns": [ + { + "name": "buying", + "type": "categorical" + }, + { + "name": "maint", + "type": "categorical" + }, + { + "name": "doors", + "type": "categorical" + }, + { + "name": "persons", + "type": "categorical" + }, + { + "name": "lug_boot", + "type": "categorical" + }, + { + "name": "safety", + "type": "categorical" + }, + { + "name": "class", + "type": "categorical" + } + ] +} \ No newline at end of file diff --git a/timecost/c2/tvae/tvae-c2-20260504_175027/_tvae_generate.py b/timecost/c2/tvae/tvae-c2-20260504_175027/_tvae_generate.py new file mode 100644 index 0000000000000000000000000000000000000000..8104879488e8e7e39b0f1ce35e55b7498a71c718 --- /dev/null +++ b/timecost/c2/tvae/tvae-c2-20260504_175027/_tvae_generate.py @@ -0,0 +1,23 @@ +import os, sys +sys.path.insert(0, "/work") +from src.SpecificModels.ctgan_joblib_parallel_cap import apply_parallel_cap_from_env +apply_parallel_cap_from_env() +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 +os.environ.setdefault("LOKY_MAX_CPU_COUNT", "8") +os.environ.setdefault("OPENBLAS_NUM_THREADS", "8") +os.environ.setdefault("MKL_NUM_THREADS", "8") +model = TVAE.load("/work/output-Benchmark-trainonly-v1/c2/tvae/tvae-c2-20260504_175027/models_300epochs/tvae_300epochs.pt") +total = 1382 +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-Benchmark-trainonly-v1/c2/tvae/tvae-c2-20260504_175027/tvae-c2-1382-20260504_175041.csv", index=False) +print(f"[TVAE] Generated {total} rows (chunks={len(parts)}) -> /work/output-Benchmark-trainonly-v1/c2/tvae/tvae-c2-20260504_175027/tvae-c2-1382-20260504_175041.csv") diff --git a/timecost/c2/tvae/tvae-c2-20260504_175027/_tvae_train.py b/timecost/c2/tvae/tvae-c2-20260504_175027/_tvae_train.py new file mode 100644 index 0000000000000000000000000000000000000000..cb7ef14cbfef58c7485e0f2c428a4de8aa54f4f7 --- /dev/null +++ b/timecost/c2/tvae/tvae-c2-20260504_175027/_tvae_train.py @@ -0,0 +1,39 @@ +import json, os, sys +sys.path.insert(0, "/work") +from src.SpecificModels.ctgan_joblib_parallel_cap import apply_parallel_cap_from_env +apply_parallel_cap_from_env() +import pandas as pd +from ctgan.data import read_csv +from ctgan.synthesizers.tvae import TVAE + +# Keep transform stage parallelism bounded for stability on shared host. +os.environ.setdefault("LOKY_MAX_CPU_COUNT", "8") +os.environ.setdefault("OPENBLAS_NUM_THREADS", "8") +os.environ.setdefault("MKL_NUM_THREADS", "8") +_nj = (os.environ.get("TVAE_CTGAN_JOBTRANS_N_JOBS") or "").strip() +if _nj: + print("[TVAE] joblib Parallel cap ON, TVAE_CTGAN_JOBTRANS_N_JOBS=" + _nj) +else: + print("[TVAE] joblib Parallel cap OFF (unset TVAE_CTGAN_JOBTRANS_N_JOBS)") +print("[TVAE] LOKY_MAX_CPU_COUNT=" + str(os.environ.get("LOKY_MAX_CPU_COUNT", ""))) + +csv_path = "/work/output-Benchmark-trainonly-v1/c2/tvae/tvae-c2-20260504_175027/staged/public/train.csv" +meta_path = "/work/output-Benchmark-trainonly-v1/c2/tvae/tvae-c2-20260504_175027/tvae_metadata.json" +save_path = "/work/output-Benchmark-trainonly-v1/c2/tvae/tvae-c2-20260504_175027/models_300epochs/tvae_300epochs.pt" +epochs = int(os.environ.get("TVAE_EPOCHS", 300)) +batch_size = int(os.environ.get("TVAE_BATCH_SIZE", "500")) +embedding_dim = int(os.environ.get("TVAE_EMBEDDING_DIM", "128")) +def _parse_dims(name, default): + raw = (os.environ.get(name) or "").strip() + if not raw: + return default + return tuple(int(x.strip()) for x in raw.split(",") if x.strip()) +compress_dims = _parse_dims("TVAE_COMPRESS_DIMS", (128, 128)) +decompress_dims = _parse_dims("TVAE_DECOMPRESS_DIMS", (128, 128)) + +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}, batch_size={batch_size}, embedding_dim={embedding_dim}, compress_dims={compress_dims}, decompress_dims={decompress_dims}") +model = TVAE(epochs=epochs, batch_size=batch_size, embedding_dim=embedding_dim, compress_dims=compress_dims, decompress_dims=decompress_dims) +model.fit(data, discrete_columns) +model.save(save_path) +print(f"[TVAE] Model saved -> {save_path}") diff --git a/timecost/c2/tvae/tvae-c2-20260504_175027/gen_20260504_175041.log b/timecost/c2/tvae/tvae-c2-20260504_175027/gen_20260504_175041.log new file mode 100644 index 0000000000000000000000000000000000000000..fc18445fff6eeef90a8c0c788069fa1fc492dd49 --- /dev/null +++ b/timecost/c2/tvae/tvae-c2-20260504_175027/gen_20260504_175041.log @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:a01f4b4e5969a83ef737504dd36e3b52b491552504978f2029b415c1d0899625 +size 404 diff --git a/timecost/c2/tvae/tvae-c2-20260504_175027/input_snapshot.json b/timecost/c2/tvae/tvae-c2-20260504_175027/input_snapshot.json new file mode 100644 index 0000000000000000000000000000000000000000..9e28a5421f2176e174a0659e66a40054269fb2ac --- /dev/null +++ b/timecost/c2/tvae/tvae-c2-20260504_175027/input_snapshot.json @@ -0,0 +1,36 @@ +{ + "dataset_id": "c2", + "model": "tvae", + "inputs": { + "train_csv": { + "path": "/data/jialinzhang/SynthesizePipeline-server/DatasetNew/c2/c2-train.csv", + "exists": true, + "size": 42948, + "sha256": "17bc560fa96bd00fb3b526e1e65bc91210b701d0d0a4e8bb9b4c5196cab56def" + }, + "val_csv": { + "path": "/data/jialinzhang/SynthesizePipeline-server/DatasetNew/c2/c2-val.csv", + "exists": true, + "size": 5349, + "sha256": "61e565eca62e65a7dccd9d51039a3170413379e10fc494e25870e7c4294863c9" + }, + "test_csv": { + "path": "/data/jialinzhang/SynthesizePipeline-server/DatasetNew/c2/c2-test.csv", + "exists": true, + "size": 5448, + "sha256": "cbcbb062a1faf5fa44b66c80532baa229e05b94fc42137269761e6c6d84af20a" + }, + "profile_json": { + "path": "/data/jialinzhang/SynthesizePipeline-server/DatasetNew/artifacts/data_core/tabular/c2/c2-dataset_profile.json", + "exists": true, + "size": 3240, + "sha256": "526b7163b2076c93c0bf4638438081ee8a6907065d5b608faa40d1a3dbc2a27b" + }, + "contract_json": { + "path": "/data/jialinzhang/SynthesizePipeline-server/DatasetNew/artifacts/data_core/tabular/c2/c2-dataset_contract_v1.json", + "exists": true, + "size": 3731, + "sha256": "fb595a876054c2ee9b4e10cfe83a5691588de1d25466cbb9d473c18ad3604009" + } + } +} \ No newline at end of file diff --git a/timecost/c2/tvae/tvae-c2-20260504_175027/models_300epochs/train_20260504_175027.log b/timecost/c2/tvae/tvae-c2-20260504_175027/models_300epochs/train_20260504_175027.log new file mode 100644 index 0000000000000000000000000000000000000000..75d081b6b67b71d98c32792a120f034523c9ed61 --- /dev/null +++ b/timecost/c2/tvae/tvae-c2-20260504_175027/models_300epochs/train_20260504_175027.log @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:27a31e992b3e274f3bef6e36d82e154a1098ee374a42da5d23ba2eb446f2e9d0 +size 615 diff --git a/timecost/c2/tvae/tvae-c2-20260504_175027/models_300epochs/tvae_300epochs.pt b/timecost/c2/tvae/tvae-c2-20260504_175027/models_300epochs/tvae_300epochs.pt new file mode 100644 index 0000000000000000000000000000000000000000..b0e9191e1b878412f955dd1c2f27ac5ec132edbe --- /dev/null +++ b/timecost/c2/tvae/tvae-c2-20260504_175027/models_300epochs/tvae_300epochs.pt @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:7f1e00695ed4fb39555e6e1b9efe1af61665640f750ddca0c6dd743d68f8b55a +size 223404 diff --git a/timecost/c2/tvae/tvae-c2-20260504_175027/public_gate/normalized_schema_snapshot.json b/timecost/c2/tvae/tvae-c2-20260504_175027/public_gate/normalized_schema_snapshot.json new file mode 100644 index 0000000000000000000000000000000000000000..689b1d00d96508e44ba40e58dc4560e19afc2b3b --- /dev/null +++ b/timecost/c2/tvae/tvae-c2-20260504_175027/public_gate/normalized_schema_snapshot.json @@ -0,0 +1,144 @@ +{ + "dataset_id": "c2", + "target_column": "class", + "task_type": "classification", + "columns": [ + { + "name": "buying", + "role": "feature", + "semantic_type": "categorical", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 4, + "unique_ratio": 0.002894, + "example_values": [ + "vhigh", + "med", + "high", + "low" + ] + } + }, + { + "name": "maint", + "role": "feature", + "semantic_type": "categorical", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 4, + "unique_ratio": 0.002894, + "example_values": [ + "vhigh", + "low", + "med", + "high" + ] + } + }, + { + "name": "doors", + "role": "feature", + "semantic_type": "categorical", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 4, + "unique_ratio": 0.002894, + "example_values": [ + "2", + "5more", + "3", + "4" + ] + } + }, + { + "name": "persons", + "role": "feature", + "semantic_type": "categorical", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 3, + "unique_ratio": 0.002171, + "example_values": [ + "2", + "4", + "more" + ] + } + }, + { + "name": "lug_boot", + "role": "feature", + "semantic_type": "categorical", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 3, + "unique_ratio": 0.002171, + "example_values": [ + "small", + "big", + "med" + ] + } + }, + { + "name": "safety", + "role": "feature", + "semantic_type": "categorical", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 3, + "unique_ratio": 0.002171, + "example_values": [ + "low", + "high", + "med" + ] + } + }, + { + "name": "class", + "role": "target", + "semantic_type": "categorical", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 4, + "unique_ratio": 0.002894, + "example_values": [ + "unacc", + "good", + "acc", + "vgood" + ] + } + } + ] +} \ No newline at end of file diff --git a/timecost/c2/tvae/tvae-c2-20260504_175027/public_gate/public_gate_report.json b/timecost/c2/tvae/tvae-c2-20260504_175027/public_gate/public_gate_report.json new file mode 100644 index 0000000000000000000000000000000000000000..2e4cdcb2a4e28e40d59b17a83e773f622b7636a5 --- /dev/null +++ b/timecost/c2/tvae/tvae-c2-20260504_175027/public_gate/public_gate_report.json @@ -0,0 +1,37 @@ +{ + "dataset_id": "c2", + "status": "pass", + "checks": [ + { + "check_id": "PG001_csv_parse_ok", + "status": "pass" + }, + { + "check_id": "PG002_split_header_consistent", + "status": "pass" + }, + { + "check_id": "PG003_profile_header_match", + "status": "pass" + }, + { + "check_id": "PG004_missing_token_normalized", + "status": "pass" + }, + { + "check_id": "PG005_semantic_type_validated", + "status": "pass" + }, + { + "check_id": "PG006_target_defined_and_valid", + "status": "pass" + } + ], + "target_column": "class", + "task_type": "classification", + "input_splits": { + "train": "/data/jialinzhang/SynthesizePipeline-server/DatasetNew/c2/c2-train.csv", + "val": "/data/jialinzhang/SynthesizePipeline-server/DatasetNew/c2/c2-val.csv", + "test": "/data/jialinzhang/SynthesizePipeline-server/DatasetNew/c2/c2-test.csv" + } +} \ No newline at end of file diff --git a/timecost/c2/tvae/tvae-c2-20260504_175027/public_gate/staged_input_manifest.json b/timecost/c2/tvae/tvae-c2-20260504_175027/public_gate/staged_input_manifest.json new file mode 100644 index 0000000000000000000000000000000000000000..2d0396d7a163d0e0292af99bc6584ce15b374c93 --- /dev/null +++ b/timecost/c2/tvae/tvae-c2-20260504_175027/public_gate/staged_input_manifest.json @@ -0,0 +1,149 @@ +{ + "dataset_id": "c2", + "target_column": "class", + "task_type": "classification", + "train_csv": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/c2/tvae/tvae-c2-20260504_175027/staged/public/train.csv", + "val_csv": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/c2/tvae/tvae-c2-20260504_175027/staged/public/val.csv", + "test_csv": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/c2/tvae/tvae-c2-20260504_175027/staged/public/test.csv", + "features_json": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/c2/tvae/tvae-c2-20260504_175027/staged/public/staged_features.json", + "public_gate_report": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/c2/tvae/tvae-c2-20260504_175027/public_gate/public_gate_report.json", + "column_schema": [ + { + "name": "buying", + "role": "feature", + "semantic_type": "categorical", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 4, + "unique_ratio": 0.002894, + "example_values": [ + "vhigh", + "med", + "high", + "low" + ] + } + }, + { + "name": "maint", + "role": "feature", + "semantic_type": "categorical", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 4, + "unique_ratio": 0.002894, + "example_values": [ + "vhigh", + "low", + "med", + "high" + ] + } + }, + { + "name": "doors", + "role": "feature", + "semantic_type": "categorical", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 4, + "unique_ratio": 0.002894, + "example_values": [ + "2", + "5more", + "3", + "4" + ] + } + }, + { + "name": "persons", + "role": "feature", + "semantic_type": "categorical", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 3, + "unique_ratio": 0.002171, + "example_values": [ + "2", + "4", + "more" + ] + } + }, + { + "name": "lug_boot", + "role": "feature", + "semantic_type": "categorical", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 3, + "unique_ratio": 0.002171, + "example_values": [ + "small", + "big", + "med" + ] + } + }, + { + "name": "safety", + "role": "feature", + "semantic_type": "categorical", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 3, + "unique_ratio": 0.002171, + "example_values": [ + "low", + "high", + "med" + ] + } + }, + { + "name": "class", + "role": "target", + "semantic_type": "categorical", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 4, + "unique_ratio": 0.002894, + "example_values": [ + "unacc", + "good", + "acc", + "vgood" + ] + } + } + ] +} \ No newline at end of file diff --git a/timecost/c2/tvae/tvae-c2-20260504_175027/run_config.json b/timecost/c2/tvae/tvae-c2-20260504_175027/run_config.json new file mode 100644 index 0000000000000000000000000000000000000000..3a2d617b169ad852ac43f72a1c4b7cfccfa33466 --- /dev/null +++ b/timecost/c2/tvae/tvae-c2-20260504_175027/run_config.json @@ -0,0 +1,45 @@ +{ + "schema_version": 1, + "recorded_at": "2026-05-04T17:50:27", + "dataset_id": "c2", + "model": "tvae", + "work_dir": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/c2/tvae/tvae-c2-20260504_175027", + "dataset_source_requested": "new", + "dataset_source_resolved": "new", + "cli_args": { + "model": "tvae", + "dataset": "c2", + "dataset_source": "new", + "train": true, + "generate": true, + "num_rows": 0, + "epochs": null, + "output_dir": null, + "model_dir": null, + "work_dir": null, + "resume": false, + "no_stats": false + }, + "resolved": { + "num_rows": 1382, + "model_path": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/c2/tvae/tvae-c2-20260504_175027/models_300epochs/tvae_300epochs.pt", + "output_csv": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/c2/tvae/tvae-c2-20260504_175027/tvae-c2-1382-20260504_175041.csv" + }, + "input_artifacts": { + "public_gate_report": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/c2/tvae/tvae-c2-20260504_175027/public_gate/public_gate_report.json", + "public_manifest": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/c2/tvae/tvae-c2-20260504_175027/public_gate/staged_input_manifest.json", + "model_manifest": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/c2/tvae/tvae-c2-20260504_175027/staged/tvae/model_input_manifest.json", + "train_csv": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/c2/tvae/tvae-c2-20260504_175027/staged/public/train.csv", + "features_json": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/c2/tvae/tvae-c2-20260504_175027/staged/public/staged_features.json", + "target_column": "class", + "task_type": "classification" + }, + "env_overrides": { + "BENCHMARK_TVAE_GPUS": "device=3", + "TVAE_BATCH_SIZE": "256", + "TVAE_COMPRESS_DIMS": "64,64", + "TVAE_DECOMPRESS_DIMS": "64,64", + "TVAE_EMBEDDING_DIM": "32", + "TVAE_EPOCHS": "100" + } +} \ No newline at end of file diff --git a/timecost/c2/tvae/tvae-c2-20260504_175027/runtime_result.json b/timecost/c2/tvae/tvae-c2-20260504_175027/runtime_result.json new file mode 100644 index 0000000000000000000000000000000000000000..5d3a41b107926d16f24d14d77ee75a75add3ae2c --- /dev/null +++ b/timecost/c2/tvae/tvae-c2-20260504_175027/runtime_result.json @@ -0,0 +1,27 @@ +{ + "dataset_id": "c2", + "model": "tvae", + "run_id": "tvae-c2-20260504_175027", + "public_gate_status": "pass", + "adapter_ready_status": "pass", + "train_status": "success", + "generate_status": "success", + "reason_code": null, + "reason_detail": null, + "artifacts": { + "synthetic_csv": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/c2/tvae/tvae-c2-20260504_175027/tvae-c2-1382-20260504_175041.csv", + "model_path": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/c2/tvae/tvae-c2-20260504_175027/models_300epochs/tvae_300epochs.pt" + }, + "timings": { + "train": { + "started_at": "2026-05-04T17:50:27", + "ended_at": "2026-05-04T17:50:41", + "duration_sec": 13.546 + }, + "generate": { + "started_at": "2026-05-04T17:50:41", + "ended_at": "2026-05-04T17:50:46", + "duration_sec": 5.172 + } + } +} \ No newline at end of file diff --git a/timecost/c2/tvae/tvae-c2-20260504_175027/staged/public/staged_features.json b/timecost/c2/tvae/tvae-c2-20260504_175027/staged/public/staged_features.json new file mode 100644 index 0000000000000000000000000000000000000000..61783861dd5de501592f76acb0469cf3f3b2622a --- /dev/null +++ b/timecost/c2/tvae/tvae-c2-20260504_175027/staged/public/staged_features.json @@ -0,0 +1,37 @@ +[ + { + "feature_name": "buying", + "data_type": "categorical", + "is_target": false + }, + { + "feature_name": "maint", + "data_type": "categorical", + "is_target": false + }, + { + "feature_name": "doors", + "data_type": "categorical", + "is_target": false + }, + { + "feature_name": "persons", + "data_type": "categorical", + "is_target": false + }, + { + "feature_name": "lug_boot", + "data_type": "categorical", + "is_target": false + }, + { + "feature_name": "safety", + "data_type": "categorical", + "is_target": false + }, + { + "feature_name": "class", + "data_type": "categorical", + "is_target": true + } +] \ No newline at end of file diff --git a/timecost/c2/tvae/tvae-c2-20260504_175027/staged/public/test.csv b/timecost/c2/tvae/tvae-c2-20260504_175027/staged/public/test.csv new file mode 100644 index 0000000000000000000000000000000000000000..392a0d7189a34d8f13ecf20a99d64b03230d517c --- /dev/null +++ b/timecost/c2/tvae/tvae-c2-20260504_175027/staged/public/test.csv @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:b48114a7d0bc5bd9a07920f903c8d4aba8bf98bf2a66a050da03588b0245ca73 +size 5273 diff --git a/timecost/c2/tvae/tvae-c2-20260504_175027/staged/public/train.csv b/timecost/c2/tvae/tvae-c2-20260504_175027/staged/public/train.csv new file mode 100644 index 0000000000000000000000000000000000000000..da4f4d55134eebc0e51157d0d467536371db1484 --- /dev/null +++ b/timecost/c2/tvae/tvae-c2-20260504_175027/staged/public/train.csv @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:4aed00c2c2b3f88a55a7ebff31b2e1b5e0e32fb0a7267e0b9d2779cd23e434dd +size 41565 diff --git a/timecost/c2/tvae/tvae-c2-20260504_175027/staged/public/val.csv b/timecost/c2/tvae/tvae-c2-20260504_175027/staged/public/val.csv new file mode 100644 index 0000000000000000000000000000000000000000..af8caf7ee42524188534a3daf32996dc491952d9 --- /dev/null +++ b/timecost/c2/tvae/tvae-c2-20260504_175027/staged/public/val.csv @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:26e90c1170a57a14c05832ac88027722b1f3848f9662c7c09ef7c93dcba4cc01 +size 5176 diff --git a/timecost/c2/tvae/tvae-c2-20260504_175027/staged/tvae/adapter_report.json b/timecost/c2/tvae/tvae-c2-20260504_175027/staged/tvae/adapter_report.json new file mode 100644 index 0000000000000000000000000000000000000000..fd315eb1068f5c43dc5617cab4ab1fee932da6f2 --- /dev/null +++ b/timecost/c2/tvae/tvae-c2-20260504_175027/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-Benchmark-trainonly-v1/c2/tvae/tvae-c2-20260504_175027/staged/tvae/model_input_manifest.json" +} \ No newline at end of file diff --git a/timecost/c2/tvae/tvae-c2-20260504_175027/staged/tvae/adapter_transforms_applied.json b/timecost/c2/tvae/tvae-c2-20260504_175027/staged/tvae/adapter_transforms_applied.json new file mode 100644 index 0000000000000000000000000000000000000000..0637a088a01e8ddab3bf3fa98dbe804cbde1a0dc --- /dev/null +++ b/timecost/c2/tvae/tvae-c2-20260504_175027/staged/tvae/adapter_transforms_applied.json @@ -0,0 +1 @@ +[] \ No newline at end of file diff --git a/timecost/c2/tvae/tvae-c2-20260504_175027/staged/tvae/model_input_manifest.json b/timecost/c2/tvae/tvae-c2-20260504_175027/staged/tvae/model_input_manifest.json new file mode 100644 index 0000000000000000000000000000000000000000..afcd3f42f324ce459307b455f3e2a3bb649e77e5 --- /dev/null +++ b/timecost/c2/tvae/tvae-c2-20260504_175027/staged/tvae/model_input_manifest.json @@ -0,0 +1,151 @@ +{ + "dataset_id": "c2", + "model": "tvae", + "target_column": "class", + "task_type": "classification", + "column_schema": [ + { + "name": "buying", + "role": "feature", + "semantic_type": "categorical", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 4, + "unique_ratio": 0.002894, + "example_values": [ + "vhigh", + "med", + "high", + "low" + ] + } + }, + { + "name": "maint", + "role": "feature", + "semantic_type": "categorical", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 4, + "unique_ratio": 0.002894, + "example_values": [ + "vhigh", + "low", + "med", + "high" + ] + } + }, + { + "name": "doors", + "role": "feature", + "semantic_type": "categorical", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 4, + "unique_ratio": 0.002894, + "example_values": [ + "2", + "5more", + "3", + "4" + ] + } + }, + { + "name": "persons", + "role": "feature", + "semantic_type": "categorical", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 3, + "unique_ratio": 0.002171, + "example_values": [ + "2", + "4", + "more" + ] + } + }, + { + "name": "lug_boot", + "role": "feature", + "semantic_type": "categorical", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 3, + "unique_ratio": 0.002171, + "example_values": [ + "small", + "big", + "med" + ] + } + }, + { + "name": "safety", + "role": "feature", + "semantic_type": "categorical", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 3, + "unique_ratio": 0.002171, + "example_values": [ + "low", + "high", + "med" + ] + } + }, + { + "name": "class", + "role": "target", + "semantic_type": "categorical", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 4, + "unique_ratio": 0.002894, + "example_values": [ + "unacc", + "good", + "acc", + "vgood" + ] + } + } + ], + "public_manifest": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/c2/tvae/tvae-c2-20260504_175027/public_gate/staged_input_manifest.json", + "train_csv": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/c2/tvae/tvae-c2-20260504_175027/staged/public/train.csv", + "val_csv": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/c2/tvae/tvae-c2-20260504_175027/staged/public/val.csv", + "test_csv": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/c2/tvae/tvae-c2-20260504_175027/staged/public/test.csv", + "features_json": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/c2/tvae/tvae-c2-20260504_175027/staged/public/staged_features.json", + "public_gate_report": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/c2/tvae/tvae-c2-20260504_175027/public_gate/public_gate_report.json" +} \ No newline at end of file diff --git a/timecost/c2/tvae/tvae-c2-20260504_175027/tvae-c2-1382-20260504_175041.csv b/timecost/c2/tvae/tvae-c2-20260504_175027/tvae-c2-1382-20260504_175041.csv new file mode 100644 index 0000000000000000000000000000000000000000..52de855ad6d8d3bf281e75cf4eed61b1ebb11e07 --- /dev/null +++ b/timecost/c2/tvae/tvae-c2-20260504_175027/tvae-c2-1382-20260504_175041.csv @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:c35716ec2b3678e33bbe0beeafcc0fdc08b695166f0faa60a359cce73fe16eed +size 42288 diff --git a/timecost/c2/tvae/tvae-c2-20260504_175027/tvae_metadata.json b/timecost/c2/tvae/tvae-c2-20260504_175027/tvae_metadata.json new file mode 100644 index 0000000000000000000000000000000000000000..183d627ebc98e89233655ec98c9dcbc528c4c328 --- /dev/null +++ b/timecost/c2/tvae/tvae-c2-20260504_175027/tvae_metadata.json @@ -0,0 +1,32 @@ +{ + "columns": [ + { + "name": "buying", + "type": "categorical" + }, + { + "name": "maint", + "type": "categorical" + }, + { + "name": "doors", + "type": "categorical" + }, + { + "name": "persons", + "type": "categorical" + }, + { + "name": "lug_boot", + "type": "categorical" + }, + { + "name": "safety", + "type": "categorical" + }, + { + "name": "class", + "type": "categorical" + } + ] +} \ No newline at end of file diff --git a/timecost/c2/tvae/tvae-c2-20260504_175059/_tvae_generate.py b/timecost/c2/tvae/tvae-c2-20260504_175059/_tvae_generate.py new file mode 100644 index 0000000000000000000000000000000000000000..9bdfcbea9bd89c4db99013044747122d14480916 --- /dev/null +++ b/timecost/c2/tvae/tvae-c2-20260504_175059/_tvae_generate.py @@ -0,0 +1,23 @@ +import os, sys +sys.path.insert(0, "/work") +from src.SpecificModels.ctgan_joblib_parallel_cap import apply_parallel_cap_from_env +apply_parallel_cap_from_env() +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 +os.environ.setdefault("LOKY_MAX_CPU_COUNT", "8") +os.environ.setdefault("OPENBLAS_NUM_THREADS", "8") +os.environ.setdefault("MKL_NUM_THREADS", "8") +model = TVAE.load("/work/output-Benchmark-trainonly-v1/c2/tvae/tvae-c2-20260504_175059/models_300epochs/tvae_300epochs.pt") +total = 1382 +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-Benchmark-trainonly-v1/c2/tvae/tvae-c2-20260504_175059/tvae-c2-1382-20260504_175116.csv", index=False) +print(f"[TVAE] Generated {total} rows (chunks={len(parts)}) -> /work/output-Benchmark-trainonly-v1/c2/tvae/tvae-c2-20260504_175059/tvae-c2-1382-20260504_175116.csv") diff --git a/timecost/c2/tvae/tvae-c2-20260504_175059/_tvae_train.py b/timecost/c2/tvae/tvae-c2-20260504_175059/_tvae_train.py new file mode 100644 index 0000000000000000000000000000000000000000..16748e54eb9a1ae5a6f60d11a4f52397f67560f6 --- /dev/null +++ b/timecost/c2/tvae/tvae-c2-20260504_175059/_tvae_train.py @@ -0,0 +1,39 @@ +import json, os, sys +sys.path.insert(0, "/work") +from src.SpecificModels.ctgan_joblib_parallel_cap import apply_parallel_cap_from_env +apply_parallel_cap_from_env() +import pandas as pd +from ctgan.data import read_csv +from ctgan.synthesizers.tvae import TVAE + +# Keep transform stage parallelism bounded for stability on shared host. +os.environ.setdefault("LOKY_MAX_CPU_COUNT", "8") +os.environ.setdefault("OPENBLAS_NUM_THREADS", "8") +os.environ.setdefault("MKL_NUM_THREADS", "8") +_nj = (os.environ.get("TVAE_CTGAN_JOBTRANS_N_JOBS") or "").strip() +if _nj: + print("[TVAE] joblib Parallel cap ON, TVAE_CTGAN_JOBTRANS_N_JOBS=" + _nj) +else: + print("[TVAE] joblib Parallel cap OFF (unset TVAE_CTGAN_JOBTRANS_N_JOBS)") +print("[TVAE] LOKY_MAX_CPU_COUNT=" + str(os.environ.get("LOKY_MAX_CPU_COUNT", ""))) + +csv_path = "/work/output-Benchmark-trainonly-v1/c2/tvae/tvae-c2-20260504_175059/staged/public/train.csv" +meta_path = "/work/output-Benchmark-trainonly-v1/c2/tvae/tvae-c2-20260504_175059/tvae_metadata.json" +save_path = "/work/output-Benchmark-trainonly-v1/c2/tvae/tvae-c2-20260504_175059/models_300epochs/tvae_300epochs.pt" +epochs = int(os.environ.get("TVAE_EPOCHS", 300)) +batch_size = int(os.environ.get("TVAE_BATCH_SIZE", "500")) +embedding_dim = int(os.environ.get("TVAE_EMBEDDING_DIM", "128")) +def _parse_dims(name, default): + raw = (os.environ.get(name) or "").strip() + if not raw: + return default + return tuple(int(x.strip()) for x in raw.split(",") if x.strip()) +compress_dims = _parse_dims("TVAE_COMPRESS_DIMS", (128, 128)) +decompress_dims = _parse_dims("TVAE_DECOMPRESS_DIMS", (128, 128)) + +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}, batch_size={batch_size}, embedding_dim={embedding_dim}, compress_dims={compress_dims}, decompress_dims={decompress_dims}") +model = TVAE(epochs=epochs, batch_size=batch_size, embedding_dim=embedding_dim, compress_dims=compress_dims, decompress_dims=decompress_dims) +model.fit(data, discrete_columns) +model.save(save_path) +print(f"[TVAE] Model saved -> {save_path}") diff --git a/timecost/c2/tvae/tvae-c2-20260504_175059/gen_20260504_175116.log b/timecost/c2/tvae/tvae-c2-20260504_175059/gen_20260504_175116.log new file mode 100644 index 0000000000000000000000000000000000000000..d49ada4499e260e32bafa422e2d1facee36f56f7 --- /dev/null +++ b/timecost/c2/tvae/tvae-c2-20260504_175059/gen_20260504_175116.log @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:7273add7930ed5939cafe3d43ea1602d7885408ec8627e3f03bf7ca8aae8d86a +size 404 diff --git a/timecost/c2/tvae/tvae-c2-20260504_175059/input_snapshot.json b/timecost/c2/tvae/tvae-c2-20260504_175059/input_snapshot.json new file mode 100644 index 0000000000000000000000000000000000000000..9e28a5421f2176e174a0659e66a40054269fb2ac --- /dev/null +++ b/timecost/c2/tvae/tvae-c2-20260504_175059/input_snapshot.json @@ -0,0 +1,36 @@ +{ + "dataset_id": "c2", + "model": "tvae", + "inputs": { + "train_csv": { + "path": "/data/jialinzhang/SynthesizePipeline-server/DatasetNew/c2/c2-train.csv", + "exists": true, + "size": 42948, + "sha256": "17bc560fa96bd00fb3b526e1e65bc91210b701d0d0a4e8bb9b4c5196cab56def" + }, + "val_csv": { + "path": "/data/jialinzhang/SynthesizePipeline-server/DatasetNew/c2/c2-val.csv", + "exists": true, + "size": 5349, + "sha256": "61e565eca62e65a7dccd9d51039a3170413379e10fc494e25870e7c4294863c9" + }, + "test_csv": { + "path": "/data/jialinzhang/SynthesizePipeline-server/DatasetNew/c2/c2-test.csv", + "exists": true, + "size": 5448, + "sha256": "cbcbb062a1faf5fa44b66c80532baa229e05b94fc42137269761e6c6d84af20a" + }, + "profile_json": { + "path": "/data/jialinzhang/SynthesizePipeline-server/DatasetNew/artifacts/data_core/tabular/c2/c2-dataset_profile.json", + "exists": true, + "size": 3240, + "sha256": "526b7163b2076c93c0bf4638438081ee8a6907065d5b608faa40d1a3dbc2a27b" + }, + "contract_json": { + "path": "/data/jialinzhang/SynthesizePipeline-server/DatasetNew/artifacts/data_core/tabular/c2/c2-dataset_contract_v1.json", + "exists": true, + "size": 3731, + "sha256": "fb595a876054c2ee9b4e10cfe83a5691588de1d25466cbb9d473c18ad3604009" + } + } +} \ No newline at end of file diff --git a/timecost/c2/tvae/tvae-c2-20260504_175059/models_300epochs/train_20260504_175100.log b/timecost/c2/tvae/tvae-c2-20260504_175059/models_300epochs/train_20260504_175100.log new file mode 100644 index 0000000000000000000000000000000000000000..f4b363f0e40c680a056ef1415fbb43824b139ec1 --- /dev/null +++ b/timecost/c2/tvae/tvae-c2-20260504_175059/models_300epochs/train_20260504_175100.log @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:13d7f892be66207b52dd8124e5bbe5442b4e8fcd0668d9a502ea70381c6bc846 +size 619 diff --git a/timecost/c2/tvae/tvae-c2-20260504_175059/models_300epochs/tvae_300epochs.pt b/timecost/c2/tvae/tvae-c2-20260504_175059/models_300epochs/tvae_300epochs.pt new file mode 100644 index 0000000000000000000000000000000000000000..c1d147d3d16f2d818036c6c7e229480c733a81f1 --- /dev/null +++ b/timecost/c2/tvae/tvae-c2-20260504_175059/models_300epochs/tvae_300epochs.pt @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:05b303a596195c046df86ed9e9dd4aeac7f0072cc58d433b73a2cbafe0c93e12 +size 319852 diff --git a/timecost/c2/tvae/tvae-c2-20260504_175059/public_gate/normalized_schema_snapshot.json b/timecost/c2/tvae/tvae-c2-20260504_175059/public_gate/normalized_schema_snapshot.json new file mode 100644 index 0000000000000000000000000000000000000000..689b1d00d96508e44ba40e58dc4560e19afc2b3b --- /dev/null +++ b/timecost/c2/tvae/tvae-c2-20260504_175059/public_gate/normalized_schema_snapshot.json @@ -0,0 +1,144 @@ +{ + "dataset_id": "c2", + "target_column": "class", + "task_type": "classification", + "columns": [ + { + "name": "buying", + "role": "feature", + "semantic_type": "categorical", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 4, + "unique_ratio": 0.002894, + "example_values": [ + "vhigh", + "med", + "high", + "low" + ] + } + }, + { + "name": "maint", + "role": "feature", + "semantic_type": "categorical", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 4, + "unique_ratio": 0.002894, + "example_values": [ + "vhigh", + "low", + "med", + "high" + ] + } + }, + { + "name": "doors", + "role": "feature", + "semantic_type": "categorical", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 4, + "unique_ratio": 0.002894, + "example_values": [ + "2", + "5more", + "3", + "4" + ] + } + }, + { + "name": "persons", + "role": "feature", + "semantic_type": "categorical", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 3, + "unique_ratio": 0.002171, + "example_values": [ + "2", + "4", + "more" + ] + } + }, + { + "name": "lug_boot", + "role": "feature", + "semantic_type": "categorical", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 3, + "unique_ratio": 0.002171, + "example_values": [ + "small", + "big", + "med" + ] + } + }, + { + "name": "safety", + "role": "feature", + "semantic_type": "categorical", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 3, + "unique_ratio": 0.002171, + "example_values": [ + "low", + "high", + "med" + ] + } + }, + { + "name": "class", + "role": "target", + "semantic_type": "categorical", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 4, + "unique_ratio": 0.002894, + "example_values": [ + "unacc", + "good", + "acc", + "vgood" + ] + } + } + ] +} \ No newline at end of file diff --git a/timecost/c2/tvae/tvae-c2-20260504_175059/public_gate/public_gate_report.json b/timecost/c2/tvae/tvae-c2-20260504_175059/public_gate/public_gate_report.json new file mode 100644 index 0000000000000000000000000000000000000000..2e4cdcb2a4e28e40d59b17a83e773f622b7636a5 --- /dev/null +++ b/timecost/c2/tvae/tvae-c2-20260504_175059/public_gate/public_gate_report.json @@ -0,0 +1,37 @@ +{ + "dataset_id": "c2", + "status": "pass", + "checks": [ + { + "check_id": "PG001_csv_parse_ok", + "status": "pass" + }, + { + "check_id": "PG002_split_header_consistent", + "status": "pass" + }, + { + "check_id": "PG003_profile_header_match", + "status": "pass" + }, + { + "check_id": "PG004_missing_token_normalized", + "status": "pass" + }, + { + "check_id": "PG005_semantic_type_validated", + "status": "pass" + }, + { + "check_id": "PG006_target_defined_and_valid", + "status": "pass" + } + ], + "target_column": "class", + "task_type": "classification", + "input_splits": { + "train": "/data/jialinzhang/SynthesizePipeline-server/DatasetNew/c2/c2-train.csv", + "val": "/data/jialinzhang/SynthesizePipeline-server/DatasetNew/c2/c2-val.csv", + "test": "/data/jialinzhang/SynthesizePipeline-server/DatasetNew/c2/c2-test.csv" + } +} \ No newline at end of file diff --git a/timecost/c2/tvae/tvae-c2-20260504_175059/public_gate/staged_input_manifest.json b/timecost/c2/tvae/tvae-c2-20260504_175059/public_gate/staged_input_manifest.json new file mode 100644 index 0000000000000000000000000000000000000000..a1dd8f289c4edf67a2cd2fb29e1d242f70efeb9a --- /dev/null +++ b/timecost/c2/tvae/tvae-c2-20260504_175059/public_gate/staged_input_manifest.json @@ -0,0 +1,149 @@ +{ + "dataset_id": "c2", + "target_column": "class", + "task_type": "classification", + "train_csv": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/c2/tvae/tvae-c2-20260504_175059/staged/public/train.csv", + "val_csv": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/c2/tvae/tvae-c2-20260504_175059/staged/public/val.csv", + "test_csv": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/c2/tvae/tvae-c2-20260504_175059/staged/public/test.csv", + "features_json": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/c2/tvae/tvae-c2-20260504_175059/staged/public/staged_features.json", + "public_gate_report": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/c2/tvae/tvae-c2-20260504_175059/public_gate/public_gate_report.json", + "column_schema": [ + { + "name": "buying", + "role": "feature", + "semantic_type": "categorical", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 4, + "unique_ratio": 0.002894, + "example_values": [ + "vhigh", + "med", + "high", + "low" + ] + } + }, + { + "name": "maint", + "role": "feature", + "semantic_type": "categorical", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 4, + "unique_ratio": 0.002894, + "example_values": [ + "vhigh", + "low", + "med", + "high" + ] + } + }, + { + "name": "doors", + "role": "feature", + "semantic_type": "categorical", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 4, + "unique_ratio": 0.002894, + "example_values": [ + "2", + "5more", + "3", + "4" + ] + } + }, + { + "name": "persons", + "role": "feature", + "semantic_type": "categorical", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 3, + "unique_ratio": 0.002171, + "example_values": [ + "2", + "4", + "more" + ] + } + }, + { + "name": "lug_boot", + "role": "feature", + "semantic_type": "categorical", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 3, + "unique_ratio": 0.002171, + "example_values": [ + "small", + "big", + "med" + ] + } + }, + { + "name": "safety", + "role": "feature", + "semantic_type": "categorical", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 3, + "unique_ratio": 0.002171, + "example_values": [ + "low", + "high", + "med" + ] + } + }, + { + "name": "class", + "role": "target", + "semantic_type": "categorical", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 4, + "unique_ratio": 0.002894, + "example_values": [ + "unacc", + "good", + "acc", + "vgood" + ] + } + } + ] +} \ No newline at end of file diff --git a/timecost/c2/tvae/tvae-c2-20260504_175059/run_config.json b/timecost/c2/tvae/tvae-c2-20260504_175059/run_config.json new file mode 100644 index 0000000000000000000000000000000000000000..9d5bf1b03dd5312dc8f0b6b480c2d8333e42ff85 --- /dev/null +++ b/timecost/c2/tvae/tvae-c2-20260504_175059/run_config.json @@ -0,0 +1,45 @@ +{ + "schema_version": 1, + "recorded_at": "2026-05-04T17:51:00", + "dataset_id": "c2", + "model": "tvae", + "work_dir": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/c2/tvae/tvae-c2-20260504_175059", + "dataset_source_requested": "new", + "dataset_source_resolved": "new", + "cli_args": { + "model": "tvae", + "dataset": "c2", + "dataset_source": "new", + "train": true, + "generate": true, + "num_rows": 0, + "epochs": null, + "output_dir": null, + "model_dir": null, + "work_dir": null, + "resume": false, + "no_stats": false + }, + "resolved": { + "num_rows": 1382, + "model_path": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/c2/tvae/tvae-c2-20260504_175059/models_300epochs/tvae_300epochs.pt", + "output_csv": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/c2/tvae/tvae-c2-20260504_175059/tvae-c2-1382-20260504_175116.csv" + }, + "input_artifacts": { + "public_gate_report": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/c2/tvae/tvae-c2-20260504_175059/public_gate/public_gate_report.json", + "public_manifest": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/c2/tvae/tvae-c2-20260504_175059/public_gate/staged_input_manifest.json", + "model_manifest": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/c2/tvae/tvae-c2-20260504_175059/staged/tvae/model_input_manifest.json", + "train_csv": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/c2/tvae/tvae-c2-20260504_175059/staged/public/train.csv", + "features_json": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/c2/tvae/tvae-c2-20260504_175059/staged/public/staged_features.json", + "target_column": "class", + "task_type": "classification" + }, + "env_overrides": { + "BENCHMARK_TVAE_GPUS": "device=3", + "TVAE_BATCH_SIZE": "256", + "TVAE_COMPRESS_DIMS": "128,128", + "TVAE_DECOMPRESS_DIMS": "128,128", + "TVAE_EMBEDDING_DIM": "64", + "TVAE_EPOCHS": "200" + } +} \ No newline at end of file diff --git a/timecost/c2/tvae/tvae-c2-20260504_175059/runtime_result.json b/timecost/c2/tvae/tvae-c2-20260504_175059/runtime_result.json new file mode 100644 index 0000000000000000000000000000000000000000..498a194563371d3471c9dc07442f9249c2fb375e --- /dev/null +++ b/timecost/c2/tvae/tvae-c2-20260504_175059/runtime_result.json @@ -0,0 +1,27 @@ +{ + "dataset_id": "c2", + "model": "tvae", + "run_id": "tvae-c2-20260504_175059", + "public_gate_status": "pass", + "adapter_ready_status": "pass", + "train_status": "success", + "generate_status": "success", + "reason_code": null, + "reason_detail": null, + "artifacts": { + "synthetic_csv": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/c2/tvae/tvae-c2-20260504_175059/tvae-c2-1382-20260504_175116.csv", + "model_path": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/c2/tvae/tvae-c2-20260504_175059/models_300epochs/tvae_300epochs.pt" + }, + "timings": { + "train": { + "started_at": "2026-05-04T17:51:00", + "ended_at": "2026-05-04T17:51:16", + "duration_sec": 16.884 + }, + "generate": { + "started_at": "2026-05-04T17:51:16", + "ended_at": "2026-05-04T17:51:21", + "duration_sec": 5.026 + } + } +} \ No newline at end of file diff --git a/timecost/c2/tvae/tvae-c2-20260504_175059/staged/public/staged_features.json b/timecost/c2/tvae/tvae-c2-20260504_175059/staged/public/staged_features.json new file mode 100644 index 0000000000000000000000000000000000000000..61783861dd5de501592f76acb0469cf3f3b2622a --- /dev/null +++ b/timecost/c2/tvae/tvae-c2-20260504_175059/staged/public/staged_features.json @@ -0,0 +1,37 @@ +[ + { + "feature_name": "buying", + "data_type": "categorical", + "is_target": false + }, + { + "feature_name": "maint", + "data_type": "categorical", + "is_target": false + }, + { + "feature_name": "doors", + "data_type": "categorical", + "is_target": false + }, + { + "feature_name": "persons", + "data_type": "categorical", + "is_target": false + }, + { + "feature_name": "lug_boot", + "data_type": "categorical", + "is_target": false + }, + { + "feature_name": "safety", + "data_type": "categorical", + "is_target": false + }, + { + "feature_name": "class", + "data_type": "categorical", + "is_target": true + } +] \ No newline at end of file diff --git a/timecost/c2/tvae/tvae-c2-20260504_175059/staged/public/test.csv b/timecost/c2/tvae/tvae-c2-20260504_175059/staged/public/test.csv new file mode 100644 index 0000000000000000000000000000000000000000..392a0d7189a34d8f13ecf20a99d64b03230d517c --- /dev/null +++ b/timecost/c2/tvae/tvae-c2-20260504_175059/staged/public/test.csv @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:b48114a7d0bc5bd9a07920f903c8d4aba8bf98bf2a66a050da03588b0245ca73 +size 5273 diff --git a/timecost/c2/tvae/tvae-c2-20260504_175059/staged/public/train.csv b/timecost/c2/tvae/tvae-c2-20260504_175059/staged/public/train.csv new file mode 100644 index 0000000000000000000000000000000000000000..da4f4d55134eebc0e51157d0d467536371db1484 --- /dev/null +++ b/timecost/c2/tvae/tvae-c2-20260504_175059/staged/public/train.csv @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:4aed00c2c2b3f88a55a7ebff31b2e1b5e0e32fb0a7267e0b9d2779cd23e434dd +size 41565 diff --git a/timecost/c2/tvae/tvae-c2-20260504_175059/staged/public/val.csv b/timecost/c2/tvae/tvae-c2-20260504_175059/staged/public/val.csv new file mode 100644 index 0000000000000000000000000000000000000000..af8caf7ee42524188534a3daf32996dc491952d9 --- /dev/null +++ b/timecost/c2/tvae/tvae-c2-20260504_175059/staged/public/val.csv @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:26e90c1170a57a14c05832ac88027722b1f3848f9662c7c09ef7c93dcba4cc01 +size 5176 diff --git a/timecost/c2/tvae/tvae-c2-20260504_175059/staged/tvae/adapter_report.json b/timecost/c2/tvae/tvae-c2-20260504_175059/staged/tvae/adapter_report.json new file mode 100644 index 0000000000000000000000000000000000000000..f39e1ab317ffaaa0c489f1d152d3541f687bec20 --- /dev/null +++ b/timecost/c2/tvae/tvae-c2-20260504_175059/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-Benchmark-trainonly-v1/c2/tvae/tvae-c2-20260504_175059/staged/tvae/model_input_manifest.json" +} \ No newline at end of file diff --git a/timecost/c2/tvae/tvae-c2-20260504_175059/staged/tvae/adapter_transforms_applied.json b/timecost/c2/tvae/tvae-c2-20260504_175059/staged/tvae/adapter_transforms_applied.json new file mode 100644 index 0000000000000000000000000000000000000000..0637a088a01e8ddab3bf3fa98dbe804cbde1a0dc --- /dev/null +++ b/timecost/c2/tvae/tvae-c2-20260504_175059/staged/tvae/adapter_transforms_applied.json @@ -0,0 +1 @@ +[] \ No newline at end of file diff --git a/timecost/c2/tvae/tvae-c2-20260504_175059/staged/tvae/model_input_manifest.json b/timecost/c2/tvae/tvae-c2-20260504_175059/staged/tvae/model_input_manifest.json new file mode 100644 index 0000000000000000000000000000000000000000..a3d86b3bcd4548705a5cc753afef3a6d4838e19e --- /dev/null +++ b/timecost/c2/tvae/tvae-c2-20260504_175059/staged/tvae/model_input_manifest.json @@ -0,0 +1,151 @@ +{ + "dataset_id": "c2", + "model": "tvae", + "target_column": "class", + "task_type": "classification", + "column_schema": [ + { + "name": "buying", + "role": "feature", + "semantic_type": "categorical", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 4, + "unique_ratio": 0.002894, + "example_values": [ + "vhigh", + "med", + "high", + "low" + ] + } + }, + { + "name": "maint", + "role": "feature", + "semantic_type": "categorical", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 4, + "unique_ratio": 0.002894, + "example_values": [ + "vhigh", + "low", + "med", + "high" + ] + } + }, + { + "name": "doors", + "role": "feature", + "semantic_type": "categorical", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 4, + "unique_ratio": 0.002894, + "example_values": [ + "2", + "5more", + "3", + "4" + ] + } + }, + { + "name": "persons", + "role": "feature", + "semantic_type": "categorical", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 3, + "unique_ratio": 0.002171, + "example_values": [ + "2", + "4", + "more" + ] + } + }, + { + "name": "lug_boot", + "role": "feature", + "semantic_type": "categorical", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 3, + "unique_ratio": 0.002171, + "example_values": [ + "small", + "big", + "med" + ] + } + }, + { + "name": "safety", + "role": "feature", + "semantic_type": "categorical", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 3, + "unique_ratio": 0.002171, + "example_values": [ + "low", + "high", + "med" + ] + } + }, + { + "name": "class", + "role": "target", + "semantic_type": "categorical", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 4, + "unique_ratio": 0.002894, + "example_values": [ + "unacc", + "good", + "acc", + "vgood" + ] + } + } + ], + "public_manifest": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/c2/tvae/tvae-c2-20260504_175059/public_gate/staged_input_manifest.json", + "train_csv": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/c2/tvae/tvae-c2-20260504_175059/staged/public/train.csv", + "val_csv": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/c2/tvae/tvae-c2-20260504_175059/staged/public/val.csv", + "test_csv": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/c2/tvae/tvae-c2-20260504_175059/staged/public/test.csv", + "features_json": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/c2/tvae/tvae-c2-20260504_175059/staged/public/staged_features.json", + "public_gate_report": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/c2/tvae/tvae-c2-20260504_175059/public_gate/public_gate_report.json" +} \ No newline at end of file diff --git a/timecost/c2/tvae/tvae-c2-20260504_175059/tvae-c2-1382-20260504_175116.csv b/timecost/c2/tvae/tvae-c2-20260504_175059/tvae-c2-1382-20260504_175116.csv new file mode 100644 index 0000000000000000000000000000000000000000..ed1aaacefa064433627b31272a6a0570e43c431a --- /dev/null +++ b/timecost/c2/tvae/tvae-c2-20260504_175059/tvae-c2-1382-20260504_175116.csv @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:31e5e3a91a0418044bc61b09e258d72356c52e332b3e614c0699f5f2962fe56c +size 41725 diff --git a/timecost/c2/tvae/tvae-c2-20260504_175059/tvae_metadata.json b/timecost/c2/tvae/tvae-c2-20260504_175059/tvae_metadata.json new file mode 100644 index 0000000000000000000000000000000000000000..183d627ebc98e89233655ec98c9dcbc528c4c328 --- /dev/null +++ b/timecost/c2/tvae/tvae-c2-20260504_175059/tvae_metadata.json @@ -0,0 +1,32 @@ +{ + "columns": [ + { + "name": "buying", + "type": "categorical" + }, + { + "name": "maint", + "type": "categorical" + }, + { + "name": "doors", + "type": "categorical" + }, + { + "name": "persons", + "type": "categorical" + }, + { + "name": "lug_boot", + "type": "categorical" + }, + { + "name": "safety", + "type": "categorical" + }, + { + "name": "class", + "type": "categorical" + } + ] +} \ No newline at end of file diff --git a/timecost/c2/tvae/tvae-c2-20260504_175134/_tvae_generate.py b/timecost/c2/tvae/tvae-c2-20260504_175134/_tvae_generate.py new file mode 100644 index 0000000000000000000000000000000000000000..c5f94d959d7eeaa29f9d882a3763d81f02da8b2e --- /dev/null +++ b/timecost/c2/tvae/tvae-c2-20260504_175134/_tvae_generate.py @@ -0,0 +1,23 @@ +import os, sys +sys.path.insert(0, "/work") +from src.SpecificModels.ctgan_joblib_parallel_cap import apply_parallel_cap_from_env +apply_parallel_cap_from_env() +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 +os.environ.setdefault("LOKY_MAX_CPU_COUNT", "8") +os.environ.setdefault("OPENBLAS_NUM_THREADS", "8") +os.environ.setdefault("MKL_NUM_THREADS", "8") +model = TVAE.load("/work/output-Benchmark-trainonly-v1/c2/tvae/tvae-c2-20260504_175134/models_300epochs/tvae_300epochs.pt") +total = 1382 +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-Benchmark-trainonly-v1/c2/tvae/tvae-c2-20260504_175134/tvae-c2-1382-20260504_175151.csv", index=False) +print(f"[TVAE] Generated {total} rows (chunks={len(parts)}) -> /work/output-Benchmark-trainonly-v1/c2/tvae/tvae-c2-20260504_175134/tvae-c2-1382-20260504_175151.csv") diff --git a/timecost/c2/tvae/tvae-c2-20260504_175134/_tvae_train.py b/timecost/c2/tvae/tvae-c2-20260504_175134/_tvae_train.py new file mode 100644 index 0000000000000000000000000000000000000000..091e65996ed24436d0d0cec26d6e97b2d8a731cb --- /dev/null +++ b/timecost/c2/tvae/tvae-c2-20260504_175134/_tvae_train.py @@ -0,0 +1,39 @@ +import json, os, sys +sys.path.insert(0, "/work") +from src.SpecificModels.ctgan_joblib_parallel_cap import apply_parallel_cap_from_env +apply_parallel_cap_from_env() +import pandas as pd +from ctgan.data import read_csv +from ctgan.synthesizers.tvae import TVAE + +# Keep transform stage parallelism bounded for stability on shared host. +os.environ.setdefault("LOKY_MAX_CPU_COUNT", "8") +os.environ.setdefault("OPENBLAS_NUM_THREADS", "8") +os.environ.setdefault("MKL_NUM_THREADS", "8") +_nj = (os.environ.get("TVAE_CTGAN_JOBTRANS_N_JOBS") or "").strip() +if _nj: + print("[TVAE] joblib Parallel cap ON, TVAE_CTGAN_JOBTRANS_N_JOBS=" + _nj) +else: + print("[TVAE] joblib Parallel cap OFF (unset TVAE_CTGAN_JOBTRANS_N_JOBS)") +print("[TVAE] LOKY_MAX_CPU_COUNT=" + str(os.environ.get("LOKY_MAX_CPU_COUNT", ""))) + +csv_path = "/work/output-Benchmark-trainonly-v1/c2/tvae/tvae-c2-20260504_175134/staged/public/train.csv" +meta_path = "/work/output-Benchmark-trainonly-v1/c2/tvae/tvae-c2-20260504_175134/tvae_metadata.json" +save_path = "/work/output-Benchmark-trainonly-v1/c2/tvae/tvae-c2-20260504_175134/models_300epochs/tvae_300epochs.pt" +epochs = int(os.environ.get("TVAE_EPOCHS", 300)) +batch_size = int(os.environ.get("TVAE_BATCH_SIZE", "500")) +embedding_dim = int(os.environ.get("TVAE_EMBEDDING_DIM", "128")) +def _parse_dims(name, default): + raw = (os.environ.get(name) or "").strip() + if not raw: + return default + return tuple(int(x.strip()) for x in raw.split(",") if x.strip()) +compress_dims = _parse_dims("TVAE_COMPRESS_DIMS", (128, 128)) +decompress_dims = _parse_dims("TVAE_DECOMPRESS_DIMS", (128, 128)) + +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}, batch_size={batch_size}, embedding_dim={embedding_dim}, compress_dims={compress_dims}, decompress_dims={decompress_dims}") +model = TVAE(epochs=epochs, batch_size=batch_size, embedding_dim=embedding_dim, compress_dims=compress_dims, decompress_dims=decompress_dims) +model.fit(data, discrete_columns) +model.save(save_path) +print(f"[TVAE] Model saved -> {save_path}") diff --git a/timecost/c2/tvae/tvae-c2-20260504_175134/gen_20260504_175151.log b/timecost/c2/tvae/tvae-c2-20260504_175134/gen_20260504_175151.log new file mode 100644 index 0000000000000000000000000000000000000000..7eadd238040dc89416ea5fb86cf52da087bf5a71 --- /dev/null +++ b/timecost/c2/tvae/tvae-c2-20260504_175134/gen_20260504_175151.log @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:40511260bd9eb00dcc35cfc95b37da03e79a617b156ee312d5e0a42d69f03ec5 +size 404 diff --git a/timecost/c2/tvae/tvae-c2-20260504_175134/input_snapshot.json b/timecost/c2/tvae/tvae-c2-20260504_175134/input_snapshot.json new file mode 100644 index 0000000000000000000000000000000000000000..9e28a5421f2176e174a0659e66a40054269fb2ac --- /dev/null +++ b/timecost/c2/tvae/tvae-c2-20260504_175134/input_snapshot.json @@ -0,0 +1,36 @@ +{ + "dataset_id": "c2", + "model": "tvae", + "inputs": { + "train_csv": { + "path": "/data/jialinzhang/SynthesizePipeline-server/DatasetNew/c2/c2-train.csv", + "exists": true, + "size": 42948, + "sha256": "17bc560fa96bd00fb3b526e1e65bc91210b701d0d0a4e8bb9b4c5196cab56def" + }, + "val_csv": { + "path": "/data/jialinzhang/SynthesizePipeline-server/DatasetNew/c2/c2-val.csv", + "exists": true, + "size": 5349, + "sha256": "61e565eca62e65a7dccd9d51039a3170413379e10fc494e25870e7c4294863c9" + }, + "test_csv": { + "path": "/data/jialinzhang/SynthesizePipeline-server/DatasetNew/c2/c2-test.csv", + "exists": true, + "size": 5448, + "sha256": "cbcbb062a1faf5fa44b66c80532baa229e05b94fc42137269761e6c6d84af20a" + }, + "profile_json": { + "path": "/data/jialinzhang/SynthesizePipeline-server/DatasetNew/artifacts/data_core/tabular/c2/c2-dataset_profile.json", + "exists": true, + "size": 3240, + "sha256": "526b7163b2076c93c0bf4638438081ee8a6907065d5b608faa40d1a3dbc2a27b" + }, + "contract_json": { + "path": "/data/jialinzhang/SynthesizePipeline-server/DatasetNew/artifacts/data_core/tabular/c2/c2-dataset_contract_v1.json", + "exists": true, + "size": 3731, + "sha256": "fb595a876054c2ee9b4e10cfe83a5691588de1d25466cbb9d473c18ad3604009" + } + } +} \ No newline at end of file diff --git a/timecost/c2/tvae/tvae-c2-20260504_175134/models_300epochs/train_20260504_175134.log b/timecost/c2/tvae/tvae-c2-20260504_175134/models_300epochs/train_20260504_175134.log new file mode 100644 index 0000000000000000000000000000000000000000..75f36e6e8bc72d6ec568cd3e2d86064d800a9dfe --- /dev/null +++ b/timecost/c2/tvae/tvae-c2-20260504_175134/models_300epochs/train_20260504_175134.log @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:e7d33708ecbb6ef5a07bd3355c804b12ee37c50055d190d2d2034a51d3b6c95e +size 619 diff --git a/timecost/c2/tvae/tvae-c2-20260504_175134/models_300epochs/tvae_300epochs.pt b/timecost/c2/tvae/tvae-c2-20260504_175134/models_300epochs/tvae_300epochs.pt new file mode 100644 index 0000000000000000000000000000000000000000..32e8acd1b1837e47a3c1a4545a9b1765d6996774 --- /dev/null +++ b/timecost/c2/tvae/tvae-c2-20260504_175134/models_300epochs/tvae_300epochs.pt @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:61cb2ff2172d59d7221cfda8f98a518f8db67166a7fc0011342913cc46d7170d +size 620844 diff --git a/timecost/c2/tvae/tvae-c2-20260504_175134/public_gate/normalized_schema_snapshot.json b/timecost/c2/tvae/tvae-c2-20260504_175134/public_gate/normalized_schema_snapshot.json new file mode 100644 index 0000000000000000000000000000000000000000..689b1d00d96508e44ba40e58dc4560e19afc2b3b --- /dev/null +++ b/timecost/c2/tvae/tvae-c2-20260504_175134/public_gate/normalized_schema_snapshot.json @@ -0,0 +1,144 @@ +{ + "dataset_id": "c2", + "target_column": "class", + "task_type": "classification", + "columns": [ + { + "name": "buying", + "role": "feature", + "semantic_type": "categorical", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 4, + "unique_ratio": 0.002894, + "example_values": [ + "vhigh", + "med", + "high", + "low" + ] + } + }, + { + "name": "maint", + "role": "feature", + "semantic_type": "categorical", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 4, + "unique_ratio": 0.002894, + "example_values": [ + "vhigh", + "low", + "med", + "high" + ] + } + }, + { + "name": "doors", + "role": "feature", + "semantic_type": "categorical", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 4, + "unique_ratio": 0.002894, + "example_values": [ + "2", + "5more", + "3", + "4" + ] + } + }, + { + "name": "persons", + "role": "feature", + "semantic_type": "categorical", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 3, + "unique_ratio": 0.002171, + "example_values": [ + "2", + "4", + "more" + ] + } + }, + { + "name": "lug_boot", + "role": "feature", + "semantic_type": "categorical", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 3, + "unique_ratio": 0.002171, + "example_values": [ + "small", + "big", + "med" + ] + } + }, + { + "name": "safety", + "role": "feature", + "semantic_type": "categorical", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 3, + "unique_ratio": 0.002171, + "example_values": [ + "low", + "high", + "med" + ] + } + }, + { + "name": "class", + "role": "target", + "semantic_type": "categorical", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 4, + "unique_ratio": 0.002894, + "example_values": [ + "unacc", + "good", + "acc", + "vgood" + ] + } + } + ] +} \ No newline at end of file diff --git a/timecost/c2/tvae/tvae-c2-20260504_175134/public_gate/public_gate_report.json b/timecost/c2/tvae/tvae-c2-20260504_175134/public_gate/public_gate_report.json new file mode 100644 index 0000000000000000000000000000000000000000..2e4cdcb2a4e28e40d59b17a83e773f622b7636a5 --- /dev/null +++ b/timecost/c2/tvae/tvae-c2-20260504_175134/public_gate/public_gate_report.json @@ -0,0 +1,37 @@ +{ + "dataset_id": "c2", + "status": "pass", + "checks": [ + { + "check_id": "PG001_csv_parse_ok", + "status": "pass" + }, + { + "check_id": "PG002_split_header_consistent", + "status": "pass" + }, + { + "check_id": "PG003_profile_header_match", + "status": "pass" + }, + { + "check_id": "PG004_missing_token_normalized", + "status": "pass" + }, + { + "check_id": "PG005_semantic_type_validated", + "status": "pass" + }, + { + "check_id": "PG006_target_defined_and_valid", + "status": "pass" + } + ], + "target_column": "class", + "task_type": "classification", + "input_splits": { + "train": "/data/jialinzhang/SynthesizePipeline-server/DatasetNew/c2/c2-train.csv", + "val": "/data/jialinzhang/SynthesizePipeline-server/DatasetNew/c2/c2-val.csv", + "test": "/data/jialinzhang/SynthesizePipeline-server/DatasetNew/c2/c2-test.csv" + } +} \ No newline at end of file diff --git a/timecost/c2/tvae/tvae-c2-20260504_175134/public_gate/staged_input_manifest.json b/timecost/c2/tvae/tvae-c2-20260504_175134/public_gate/staged_input_manifest.json new file mode 100644 index 0000000000000000000000000000000000000000..954ee901c436870528834dbd01f691a15d3d9dc7 --- /dev/null +++ b/timecost/c2/tvae/tvae-c2-20260504_175134/public_gate/staged_input_manifest.json @@ -0,0 +1,149 @@ +{ + "dataset_id": "c2", + "target_column": "class", + "task_type": "classification", + "train_csv": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/c2/tvae/tvae-c2-20260504_175134/staged/public/train.csv", + "val_csv": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/c2/tvae/tvae-c2-20260504_175134/staged/public/val.csv", + "test_csv": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/c2/tvae/tvae-c2-20260504_175134/staged/public/test.csv", + "features_json": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/c2/tvae/tvae-c2-20260504_175134/staged/public/staged_features.json", + "public_gate_report": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/c2/tvae/tvae-c2-20260504_175134/public_gate/public_gate_report.json", + "column_schema": [ + { + "name": "buying", + "role": "feature", + "semantic_type": "categorical", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 4, + "unique_ratio": 0.002894, + "example_values": [ + "vhigh", + "med", + "high", + "low" + ] + } + }, + { + "name": "maint", + "role": "feature", + "semantic_type": "categorical", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 4, + "unique_ratio": 0.002894, + "example_values": [ + "vhigh", + "low", + "med", + "high" + ] + } + }, + { + "name": "doors", + "role": "feature", + "semantic_type": "categorical", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 4, + "unique_ratio": 0.002894, + "example_values": [ + "2", + "5more", + "3", + "4" + ] + } + }, + { + "name": "persons", + "role": "feature", + "semantic_type": "categorical", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 3, + "unique_ratio": 0.002171, + "example_values": [ + "2", + "4", + "more" + ] + } + }, + { + "name": "lug_boot", + "role": "feature", + "semantic_type": "categorical", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 3, + "unique_ratio": 0.002171, + "example_values": [ + "small", + "big", + "med" + ] + } + }, + { + "name": "safety", + "role": "feature", + "semantic_type": "categorical", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 3, + "unique_ratio": 0.002171, + "example_values": [ + "low", + "high", + "med" + ] + } + }, + { + "name": "class", + "role": "target", + "semantic_type": "categorical", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 4, + "unique_ratio": 0.002894, + "example_values": [ + "unacc", + "good", + "acc", + "vgood" + ] + } + } + ] +} \ No newline at end of file diff --git a/timecost/c2/tvae/tvae-c2-20260504_175134/run_config.json b/timecost/c2/tvae/tvae-c2-20260504_175134/run_config.json new file mode 100644 index 0000000000000000000000000000000000000000..108d7de688c2694ec1c049e873ddc406ac7190ae --- /dev/null +++ b/timecost/c2/tvae/tvae-c2-20260504_175134/run_config.json @@ -0,0 +1,45 @@ +{ + "schema_version": 1, + "recorded_at": "2026-05-04T17:51:34", + "dataset_id": "c2", + "model": "tvae", + "work_dir": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/c2/tvae/tvae-c2-20260504_175134", + "dataset_source_requested": "new", + "dataset_source_resolved": "new", + "cli_args": { + "model": "tvae", + "dataset": "c2", + "dataset_source": "new", + "train": true, + "generate": true, + "num_rows": 0, + "epochs": null, + "output_dir": null, + "model_dir": null, + "work_dir": null, + "resume": false, + "no_stats": false + }, + "resolved": { + "num_rows": 1382, + "model_path": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/c2/tvae/tvae-c2-20260504_175134/models_300epochs/tvae_300epochs.pt", + "output_csv": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/c2/tvae/tvae-c2-20260504_175134/tvae-c2-1382-20260504_175151.csv" + }, + "input_artifacts": { + "public_gate_report": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/c2/tvae/tvae-c2-20260504_175134/public_gate/public_gate_report.json", + "public_manifest": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/c2/tvae/tvae-c2-20260504_175134/public_gate/staged_input_manifest.json", + "model_manifest": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/c2/tvae/tvae-c2-20260504_175134/staged/tvae/model_input_manifest.json", + "train_csv": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/c2/tvae/tvae-c2-20260504_175134/staged/public/train.csv", + "features_json": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/c2/tvae/tvae-c2-20260504_175134/staged/public/staged_features.json", + "target_column": "class", + "task_type": "classification" + }, + "env_overrides": { + "BENCHMARK_TVAE_GPUS": "device=3", + "TVAE_BATCH_SIZE": "500", + "TVAE_COMPRESS_DIMS": "256,256", + "TVAE_DECOMPRESS_DIMS": "256,256", + "TVAE_EMBEDDING_DIM": "128", + "TVAE_EPOCHS": "300" + } +} \ No newline at end of file diff --git a/timecost/c2/tvae/tvae-c2-20260504_175134/runtime_result.json b/timecost/c2/tvae/tvae-c2-20260504_175134/runtime_result.json new file mode 100644 index 0000000000000000000000000000000000000000..cb5e0c36d106bd81f81366cae2601095a6582ca2 --- /dev/null +++ b/timecost/c2/tvae/tvae-c2-20260504_175134/runtime_result.json @@ -0,0 +1,27 @@ +{ + "dataset_id": "c2", + "model": "tvae", + "run_id": "tvae-c2-20260504_175134", + "public_gate_status": "pass", + "adapter_ready_status": "pass", + "train_status": "success", + "generate_status": "success", + "reason_code": null, + "reason_detail": null, + "artifacts": { + "synthetic_csv": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/c2/tvae/tvae-c2-20260504_175134/tvae-c2-1382-20260504_175151.csv", + "model_path": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/c2/tvae/tvae-c2-20260504_175134/models_300epochs/tvae_300epochs.pt" + }, + "timings": { + "train": { + "started_at": "2026-05-04T17:51:34", + "ended_at": "2026-05-04T17:51:51", + "duration_sec": 16.259 + }, + "generate": { + "started_at": "2026-05-04T17:51:51", + "ended_at": "2026-05-04T17:51:56", + "duration_sec": 5.045 + } + } +} \ No newline at end of file diff --git a/timecost/c2/tvae/tvae-c2-20260504_175134/staged/public/staged_features.json b/timecost/c2/tvae/tvae-c2-20260504_175134/staged/public/staged_features.json new file mode 100644 index 0000000000000000000000000000000000000000..61783861dd5de501592f76acb0469cf3f3b2622a --- /dev/null +++ b/timecost/c2/tvae/tvae-c2-20260504_175134/staged/public/staged_features.json @@ -0,0 +1,37 @@ +[ + { + "feature_name": "buying", + "data_type": "categorical", + "is_target": false + }, + { + "feature_name": "maint", + "data_type": "categorical", + "is_target": false + }, + { + "feature_name": "doors", + "data_type": "categorical", + "is_target": false + }, + { + "feature_name": "persons", + "data_type": "categorical", + "is_target": false + }, + { + "feature_name": "lug_boot", + "data_type": "categorical", + "is_target": false + }, + { + "feature_name": "safety", + "data_type": "categorical", + "is_target": false + }, + { + "feature_name": "class", + "data_type": "categorical", + "is_target": true + } +] \ No newline at end of file diff --git a/timecost/c2/tvae/tvae-c2-20260504_175134/staged/public/test.csv b/timecost/c2/tvae/tvae-c2-20260504_175134/staged/public/test.csv new file mode 100644 index 0000000000000000000000000000000000000000..392a0d7189a34d8f13ecf20a99d64b03230d517c --- /dev/null +++ b/timecost/c2/tvae/tvae-c2-20260504_175134/staged/public/test.csv @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:b48114a7d0bc5bd9a07920f903c8d4aba8bf98bf2a66a050da03588b0245ca73 +size 5273 diff --git a/timecost/c2/tvae/tvae-c2-20260504_175134/staged/public/train.csv b/timecost/c2/tvae/tvae-c2-20260504_175134/staged/public/train.csv new file mode 100644 index 0000000000000000000000000000000000000000..da4f4d55134eebc0e51157d0d467536371db1484 --- /dev/null +++ b/timecost/c2/tvae/tvae-c2-20260504_175134/staged/public/train.csv @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:4aed00c2c2b3f88a55a7ebff31b2e1b5e0e32fb0a7267e0b9d2779cd23e434dd +size 41565 diff --git a/timecost/c2/tvae/tvae-c2-20260504_175134/staged/public/val.csv b/timecost/c2/tvae/tvae-c2-20260504_175134/staged/public/val.csv new file mode 100644 index 0000000000000000000000000000000000000000..af8caf7ee42524188534a3daf32996dc491952d9 --- /dev/null +++ b/timecost/c2/tvae/tvae-c2-20260504_175134/staged/public/val.csv @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:26e90c1170a57a14c05832ac88027722b1f3848f9662c7c09ef7c93dcba4cc01 +size 5176 diff --git a/timecost/c2/tvae/tvae-c2-20260504_175134/staged/tvae/adapter_report.json b/timecost/c2/tvae/tvae-c2-20260504_175134/staged/tvae/adapter_report.json new file mode 100644 index 0000000000000000000000000000000000000000..d15ac7350977f377e07a67ea190641bcb1e59862 --- /dev/null +++ b/timecost/c2/tvae/tvae-c2-20260504_175134/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-Benchmark-trainonly-v1/c2/tvae/tvae-c2-20260504_175134/staged/tvae/model_input_manifest.json" +} \ No newline at end of file diff --git a/timecost/c2/tvae/tvae-c2-20260504_175134/staged/tvae/adapter_transforms_applied.json b/timecost/c2/tvae/tvae-c2-20260504_175134/staged/tvae/adapter_transforms_applied.json new file mode 100644 index 0000000000000000000000000000000000000000..0637a088a01e8ddab3bf3fa98dbe804cbde1a0dc --- /dev/null +++ b/timecost/c2/tvae/tvae-c2-20260504_175134/staged/tvae/adapter_transforms_applied.json @@ -0,0 +1 @@ +[] \ No newline at end of file diff --git a/timecost/c2/tvae/tvae-c2-20260504_175134/staged/tvae/model_input_manifest.json b/timecost/c2/tvae/tvae-c2-20260504_175134/staged/tvae/model_input_manifest.json new file mode 100644 index 0000000000000000000000000000000000000000..3d40ff2b935773ff96bb0fad06628e8a7fd619a9 --- /dev/null +++ b/timecost/c2/tvae/tvae-c2-20260504_175134/staged/tvae/model_input_manifest.json @@ -0,0 +1,151 @@ +{ + "dataset_id": "c2", + "model": "tvae", + "target_column": "class", + "task_type": "classification", + "column_schema": [ + { + "name": "buying", + "role": "feature", + "semantic_type": "categorical", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 4, + "unique_ratio": 0.002894, + "example_values": [ + "vhigh", + "med", + "high", + "low" + ] + } + }, + { + "name": "maint", + "role": "feature", + "semantic_type": "categorical", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 4, + "unique_ratio": 0.002894, + "example_values": [ + "vhigh", + "low", + "med", + "high" + ] + } + }, + { + "name": "doors", + "role": "feature", + "semantic_type": "categorical", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 4, + "unique_ratio": 0.002894, + "example_values": [ + "2", + "5more", + "3", + "4" + ] + } + }, + { + "name": "persons", + "role": "feature", + "semantic_type": "categorical", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 3, + "unique_ratio": 0.002171, + "example_values": [ + "2", + "4", + "more" + ] + } + }, + { + "name": "lug_boot", + "role": "feature", + "semantic_type": "categorical", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 3, + "unique_ratio": 0.002171, + "example_values": [ + "small", + "big", + "med" + ] + } + }, + { + "name": "safety", + "role": "feature", + "semantic_type": "categorical", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 3, + "unique_ratio": 0.002171, + "example_values": [ + "low", + "high", + "med" + ] + } + }, + { + "name": "class", + "role": "target", + "semantic_type": "categorical", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 4, + "unique_ratio": 0.002894, + "example_values": [ + "unacc", + "good", + "acc", + "vgood" + ] + } + } + ], + "public_manifest": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/c2/tvae/tvae-c2-20260504_175134/public_gate/staged_input_manifest.json", + "train_csv": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/c2/tvae/tvae-c2-20260504_175134/staged/public/train.csv", + "val_csv": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/c2/tvae/tvae-c2-20260504_175134/staged/public/val.csv", + "test_csv": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/c2/tvae/tvae-c2-20260504_175134/staged/public/test.csv", + "features_json": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/c2/tvae/tvae-c2-20260504_175134/staged/public/staged_features.json", + "public_gate_report": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/c2/tvae/tvae-c2-20260504_175134/public_gate/public_gate_report.json" +} \ No newline at end of file diff --git a/timecost/c2/tvae/tvae-c2-20260504_175134/tvae-c2-1382-20260504_175151.csv b/timecost/c2/tvae/tvae-c2-20260504_175134/tvae-c2-1382-20260504_175151.csv new file mode 100644 index 0000000000000000000000000000000000000000..f4b76c08fd9e79d194664a18efca7c2da7973dba --- /dev/null +++ b/timecost/c2/tvae/tvae-c2-20260504_175134/tvae-c2-1382-20260504_175151.csv @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:cd6e35a64f02e454c60026dced645a026e8ff462523a2befdd87293700edee0e +size 41542 diff --git a/timecost/c2/tvae/tvae-c2-20260504_175134/tvae_metadata.json b/timecost/c2/tvae/tvae-c2-20260504_175134/tvae_metadata.json new file mode 100644 index 0000000000000000000000000000000000000000..183d627ebc98e89233655ec98c9dcbc528c4c328 --- /dev/null +++ b/timecost/c2/tvae/tvae-c2-20260504_175134/tvae_metadata.json @@ -0,0 +1,32 @@ +{ + "columns": [ + { + "name": "buying", + "type": "categorical" + }, + { + "name": "maint", + "type": "categorical" + }, + { + "name": "doors", + "type": "categorical" + }, + { + "name": "persons", + "type": "categorical" + }, + { + "name": "lug_boot", + "type": "categorical" + }, + { + "name": "safety", + "type": "categorical" + }, + { + "name": "class", + "type": "categorical" + } + ] +} \ No newline at end of file diff --git a/timecost/c2/tvae/tvae-c2-20260504_175208/_tvae_generate.py b/timecost/c2/tvae/tvae-c2-20260504_175208/_tvae_generate.py new file mode 100644 index 0000000000000000000000000000000000000000..15ffa754523d7c1b3a6284549e839113f4d69d20 --- /dev/null +++ b/timecost/c2/tvae/tvae-c2-20260504_175208/_tvae_generate.py @@ -0,0 +1,23 @@ +import os, sys +sys.path.insert(0, "/work") +from src.SpecificModels.ctgan_joblib_parallel_cap import apply_parallel_cap_from_env +apply_parallel_cap_from_env() +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 +os.environ.setdefault("LOKY_MAX_CPU_COUNT", "8") +os.environ.setdefault("OPENBLAS_NUM_THREADS", "8") +os.environ.setdefault("MKL_NUM_THREADS", "8") +model = TVAE.load("/work/output-Benchmark-trainonly-v1/c2/tvae/tvae-c2-20260504_175208/models_300epochs/tvae_300epochs.pt") +total = 1382 +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-Benchmark-trainonly-v1/c2/tvae/tvae-c2-20260504_175208/tvae-c2-1382-20260504_175232.csv", index=False) +print(f"[TVAE] Generated {total} rows (chunks={len(parts)}) -> /work/output-Benchmark-trainonly-v1/c2/tvae/tvae-c2-20260504_175208/tvae-c2-1382-20260504_175232.csv") diff --git a/timecost/c2/tvae/tvae-c2-20260504_175208/_tvae_train.py b/timecost/c2/tvae/tvae-c2-20260504_175208/_tvae_train.py new file mode 100644 index 0000000000000000000000000000000000000000..e493362becc793f8b983b6bd6bfc45c3b7fd1422 --- /dev/null +++ b/timecost/c2/tvae/tvae-c2-20260504_175208/_tvae_train.py @@ -0,0 +1,39 @@ +import json, os, sys +sys.path.insert(0, "/work") +from src.SpecificModels.ctgan_joblib_parallel_cap import apply_parallel_cap_from_env +apply_parallel_cap_from_env() +import pandas as pd +from ctgan.data import read_csv +from ctgan.synthesizers.tvae import TVAE + +# Keep transform stage parallelism bounded for stability on shared host. +os.environ.setdefault("LOKY_MAX_CPU_COUNT", "8") +os.environ.setdefault("OPENBLAS_NUM_THREADS", "8") +os.environ.setdefault("MKL_NUM_THREADS", "8") +_nj = (os.environ.get("TVAE_CTGAN_JOBTRANS_N_JOBS") or "").strip() +if _nj: + print("[TVAE] joblib Parallel cap ON, TVAE_CTGAN_JOBTRANS_N_JOBS=" + _nj) +else: + print("[TVAE] joblib Parallel cap OFF (unset TVAE_CTGAN_JOBTRANS_N_JOBS)") +print("[TVAE] LOKY_MAX_CPU_COUNT=" + str(os.environ.get("LOKY_MAX_CPU_COUNT", ""))) + +csv_path = "/work/output-Benchmark-trainonly-v1/c2/tvae/tvae-c2-20260504_175208/staged/public/train.csv" +meta_path = "/work/output-Benchmark-trainonly-v1/c2/tvae/tvae-c2-20260504_175208/tvae_metadata.json" +save_path = "/work/output-Benchmark-trainonly-v1/c2/tvae/tvae-c2-20260504_175208/models_300epochs/tvae_300epochs.pt" +epochs = int(os.environ.get("TVAE_EPOCHS", 300)) +batch_size = int(os.environ.get("TVAE_BATCH_SIZE", "500")) +embedding_dim = int(os.environ.get("TVAE_EMBEDDING_DIM", "128")) +def _parse_dims(name, default): + raw = (os.environ.get(name) or "").strip() + if not raw: + return default + return tuple(int(x.strip()) for x in raw.split(",") if x.strip()) +compress_dims = _parse_dims("TVAE_COMPRESS_DIMS", (128, 128)) +decompress_dims = _parse_dims("TVAE_DECOMPRESS_DIMS", (128, 128)) + +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}, batch_size={batch_size}, embedding_dim={embedding_dim}, compress_dims={compress_dims}, decompress_dims={decompress_dims}") +model = TVAE(epochs=epochs, batch_size=batch_size, embedding_dim=embedding_dim, compress_dims=compress_dims, decompress_dims=decompress_dims) +model.fit(data, discrete_columns) +model.save(save_path) +print(f"[TVAE] Model saved -> {save_path}") diff --git a/timecost/c2/tvae/tvae-c2-20260504_175208/gen_20260504_175232.log b/timecost/c2/tvae/tvae-c2-20260504_175208/gen_20260504_175232.log new file mode 100644 index 0000000000000000000000000000000000000000..e96d2b0bb30e659460d8b3287452895d64ac6b35 --- /dev/null +++ b/timecost/c2/tvae/tvae-c2-20260504_175208/gen_20260504_175232.log @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:b8ff2fdb44fa6e18bdeb7130618b3ebdd47cd7c82320e407c9cad2778a38258b +size 404 diff --git a/timecost/c2/tvae/tvae-c2-20260504_175208/input_snapshot.json b/timecost/c2/tvae/tvae-c2-20260504_175208/input_snapshot.json new file mode 100644 index 0000000000000000000000000000000000000000..9e28a5421f2176e174a0659e66a40054269fb2ac --- /dev/null +++ b/timecost/c2/tvae/tvae-c2-20260504_175208/input_snapshot.json @@ -0,0 +1,36 @@ +{ + "dataset_id": "c2", + "model": "tvae", + "inputs": { + "train_csv": { + "path": "/data/jialinzhang/SynthesizePipeline-server/DatasetNew/c2/c2-train.csv", + "exists": true, + "size": 42948, + "sha256": "17bc560fa96bd00fb3b526e1e65bc91210b701d0d0a4e8bb9b4c5196cab56def" + }, + "val_csv": { + "path": "/data/jialinzhang/SynthesizePipeline-server/DatasetNew/c2/c2-val.csv", + "exists": true, + "size": 5349, + "sha256": "61e565eca62e65a7dccd9d51039a3170413379e10fc494e25870e7c4294863c9" + }, + "test_csv": { + "path": "/data/jialinzhang/SynthesizePipeline-server/DatasetNew/c2/c2-test.csv", + "exists": true, + "size": 5448, + "sha256": "cbcbb062a1faf5fa44b66c80532baa229e05b94fc42137269761e6c6d84af20a" + }, + "profile_json": { + "path": "/data/jialinzhang/SynthesizePipeline-server/DatasetNew/artifacts/data_core/tabular/c2/c2-dataset_profile.json", + "exists": true, + "size": 3240, + "sha256": "526b7163b2076c93c0bf4638438081ee8a6907065d5b608faa40d1a3dbc2a27b" + }, + "contract_json": { + "path": "/data/jialinzhang/SynthesizePipeline-server/DatasetNew/artifacts/data_core/tabular/c2/c2-dataset_contract_v1.json", + "exists": true, + "size": 3731, + "sha256": "fb595a876054c2ee9b4e10cfe83a5691588de1d25466cbb9d473c18ad3604009" + } + } +} \ No newline at end of file diff --git a/timecost/c2/tvae/tvae-c2-20260504_175208/models_300epochs/train_20260504_175208.log b/timecost/c2/tvae/tvae-c2-20260504_175208/models_300epochs/train_20260504_175208.log new file mode 100644 index 0000000000000000000000000000000000000000..bd12ed223dd5717571a179c201d36a613606c8c5 --- /dev/null +++ b/timecost/c2/tvae/tvae-c2-20260504_175208/models_300epochs/train_20260504_175208.log @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:59dac04cf25233b63c8854c0f2a0cc19f76ce5ccba7c3ea8bc62496c7595041f +size 620 diff --git a/timecost/c2/tvae/tvae-c2-20260504_175208/models_300epochs/tvae_300epochs.pt b/timecost/c2/tvae/tvae-c2-20260504_175208/models_300epochs/tvae_300epochs.pt new file mode 100644 index 0000000000000000000000000000000000000000..1d25793602500f1b942c6b9c92013786108ee57c --- /dev/null +++ b/timecost/c2/tvae/tvae-c2-20260504_175208/models_300epochs/tvae_300epochs.pt @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:fe6ba0f4654657fae90688f2455aa63a74fd0dbacc1fa20576c3921a6e802c90 +size 675500 diff --git a/timecost/c2/tvae/tvae-c2-20260504_175208/public_gate/normalized_schema_snapshot.json b/timecost/c2/tvae/tvae-c2-20260504_175208/public_gate/normalized_schema_snapshot.json new file mode 100644 index 0000000000000000000000000000000000000000..689b1d00d96508e44ba40e58dc4560e19afc2b3b --- /dev/null +++ b/timecost/c2/tvae/tvae-c2-20260504_175208/public_gate/normalized_schema_snapshot.json @@ -0,0 +1,144 @@ +{ + "dataset_id": "c2", + "target_column": "class", + "task_type": "classification", + "columns": [ + { + "name": "buying", + "role": "feature", + "semantic_type": "categorical", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 4, + "unique_ratio": 0.002894, + "example_values": [ + "vhigh", + "med", + "high", + "low" + ] + } + }, + { + "name": "maint", + "role": "feature", + "semantic_type": "categorical", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 4, + "unique_ratio": 0.002894, + "example_values": [ + "vhigh", + "low", + "med", + "high" + ] + } + }, + { + "name": "doors", + "role": "feature", + "semantic_type": "categorical", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 4, + "unique_ratio": 0.002894, + "example_values": [ + "2", + "5more", + "3", + "4" + ] + } + }, + { + "name": "persons", + "role": "feature", + "semantic_type": "categorical", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 3, + "unique_ratio": 0.002171, + "example_values": [ + "2", + "4", + "more" + ] + } + }, + { + "name": "lug_boot", + "role": "feature", + "semantic_type": "categorical", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 3, + "unique_ratio": 0.002171, + "example_values": [ + "small", + "big", + "med" + ] + } + }, + { + "name": "safety", + "role": "feature", + "semantic_type": "categorical", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 3, + "unique_ratio": 0.002171, + "example_values": [ + "low", + "high", + "med" + ] + } + }, + { + "name": "class", + "role": "target", + "semantic_type": "categorical", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 4, + "unique_ratio": 0.002894, + "example_values": [ + "unacc", + "good", + "acc", + "vgood" + ] + } + } + ] +} \ No newline at end of file diff --git a/timecost/c2/tvae/tvae-c2-20260504_175208/public_gate/public_gate_report.json b/timecost/c2/tvae/tvae-c2-20260504_175208/public_gate/public_gate_report.json new file mode 100644 index 0000000000000000000000000000000000000000..2e4cdcb2a4e28e40d59b17a83e773f622b7636a5 --- /dev/null +++ b/timecost/c2/tvae/tvae-c2-20260504_175208/public_gate/public_gate_report.json @@ -0,0 +1,37 @@ +{ + "dataset_id": "c2", + "status": "pass", + "checks": [ + { + "check_id": "PG001_csv_parse_ok", + "status": "pass" + }, + { + "check_id": "PG002_split_header_consistent", + "status": "pass" + }, + { + "check_id": "PG003_profile_header_match", + "status": "pass" + }, + { + "check_id": "PG004_missing_token_normalized", + "status": "pass" + }, + { + "check_id": "PG005_semantic_type_validated", + "status": "pass" + }, + { + "check_id": "PG006_target_defined_and_valid", + "status": "pass" + } + ], + "target_column": "class", + "task_type": "classification", + "input_splits": { + "train": "/data/jialinzhang/SynthesizePipeline-server/DatasetNew/c2/c2-train.csv", + "val": "/data/jialinzhang/SynthesizePipeline-server/DatasetNew/c2/c2-val.csv", + "test": "/data/jialinzhang/SynthesizePipeline-server/DatasetNew/c2/c2-test.csv" + } +} \ No newline at end of file diff --git a/timecost/c2/tvae/tvae-c2-20260504_175208/public_gate/staged_input_manifest.json b/timecost/c2/tvae/tvae-c2-20260504_175208/public_gate/staged_input_manifest.json new file mode 100644 index 0000000000000000000000000000000000000000..6600bdfdf9a7e545696eeb926d8ceb33799e8760 --- /dev/null +++ b/timecost/c2/tvae/tvae-c2-20260504_175208/public_gate/staged_input_manifest.json @@ -0,0 +1,149 @@ +{ + "dataset_id": "c2", + "target_column": "class", + "task_type": "classification", + "train_csv": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/c2/tvae/tvae-c2-20260504_175208/staged/public/train.csv", + "val_csv": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/c2/tvae/tvae-c2-20260504_175208/staged/public/val.csv", + "test_csv": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/c2/tvae/tvae-c2-20260504_175208/staged/public/test.csv", + "features_json": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/c2/tvae/tvae-c2-20260504_175208/staged/public/staged_features.json", + "public_gate_report": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/c2/tvae/tvae-c2-20260504_175208/public_gate/public_gate_report.json", + "column_schema": [ + { + "name": "buying", + "role": "feature", + "semantic_type": "categorical", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 4, + "unique_ratio": 0.002894, + "example_values": [ + "vhigh", + "med", + "high", + "low" + ] + } + }, + { + "name": "maint", + "role": "feature", + "semantic_type": "categorical", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 4, + "unique_ratio": 0.002894, + "example_values": [ + "vhigh", + "low", + "med", + "high" + ] + } + }, + { + "name": "doors", + "role": "feature", + "semantic_type": "categorical", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 4, + "unique_ratio": 0.002894, + "example_values": [ + "2", + "5more", + "3", + "4" + ] + } + }, + { + "name": "persons", + "role": "feature", + "semantic_type": "categorical", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 3, + "unique_ratio": 0.002171, + "example_values": [ + "2", + "4", + "more" + ] + } + }, + { + "name": "lug_boot", + "role": "feature", + "semantic_type": "categorical", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 3, + "unique_ratio": 0.002171, + "example_values": [ + "small", + "big", + "med" + ] + } + }, + { + "name": "safety", + "role": "feature", + "semantic_type": "categorical", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 3, + "unique_ratio": 0.002171, + "example_values": [ + "low", + "high", + "med" + ] + } + }, + { + "name": "class", + "role": "target", + "semantic_type": "categorical", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 4, + "unique_ratio": 0.002894, + "example_values": [ + "unacc", + "good", + "acc", + "vgood" + ] + } + } + ] +} \ No newline at end of file diff --git a/timecost/c2/tvae/tvae-c2-20260504_175208/run_config.json b/timecost/c2/tvae/tvae-c2-20260504_175208/run_config.json new file mode 100644 index 0000000000000000000000000000000000000000..1324de920f33ee421e8de3a00d82d7ad3411227a --- /dev/null +++ b/timecost/c2/tvae/tvae-c2-20260504_175208/run_config.json @@ -0,0 +1,45 @@ +{ + "schema_version": 1, + "recorded_at": "2026-05-04T17:52:08", + "dataset_id": "c2", + "model": "tvae", + "work_dir": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/c2/tvae/tvae-c2-20260504_175208", + "dataset_source_requested": "new", + "dataset_source_resolved": "new", + "cli_args": { + "model": "tvae", + "dataset": "c2", + "dataset_source": "new", + "train": true, + "generate": true, + "num_rows": 0, + "epochs": null, + "output_dir": null, + "model_dir": null, + "work_dir": null, + "resume": false, + "no_stats": false + }, + "resolved": { + "num_rows": 1382, + "model_path": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/c2/tvae/tvae-c2-20260504_175208/models_300epochs/tvae_300epochs.pt", + "output_csv": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/c2/tvae/tvae-c2-20260504_175208/tvae-c2-1382-20260504_175232.csv" + }, + "input_artifacts": { + "public_gate_report": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/c2/tvae/tvae-c2-20260504_175208/public_gate/public_gate_report.json", + "public_manifest": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/c2/tvae/tvae-c2-20260504_175208/public_gate/staged_input_manifest.json", + "model_manifest": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/c2/tvae/tvae-c2-20260504_175208/staged/tvae/model_input_manifest.json", + "train_csv": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/c2/tvae/tvae-c2-20260504_175208/staged/public/train.csv", + "features_json": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/c2/tvae/tvae-c2-20260504_175208/staged/public/staged_features.json", + "target_column": "class", + "task_type": "classification" + }, + "env_overrides": { + "BENCHMARK_TVAE_GPUS": "device=3", + "TVAE_BATCH_SIZE": "256", + "TVAE_COMPRESS_DIMS": "256,256", + "TVAE_DECOMPRESS_DIMS": "256,256", + "TVAE_EMBEDDING_DIM": "128", + "TVAE_EPOCHS": "500" + } +} \ No newline at end of file diff --git a/timecost/c2/tvae/tvae-c2-20260504_175208/runtime_result.json b/timecost/c2/tvae/tvae-c2-20260504_175208/runtime_result.json new file mode 100644 index 0000000000000000000000000000000000000000..2571fd685f2ca86d9026a5aeb4b2d5d2135271e0 --- /dev/null +++ b/timecost/c2/tvae/tvae-c2-20260504_175208/runtime_result.json @@ -0,0 +1,27 @@ +{ + "dataset_id": "c2", + "model": "tvae", + "run_id": "tvae-c2-20260504_175208", + "public_gate_status": "pass", + "adapter_ready_status": "pass", + "train_status": "success", + "generate_status": "success", + "reason_code": null, + "reason_detail": null, + "artifacts": { + "synthetic_csv": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/c2/tvae/tvae-c2-20260504_175208/tvae-c2-1382-20260504_175232.csv", + "model_path": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/c2/tvae/tvae-c2-20260504_175208/models_300epochs/tvae_300epochs.pt" + }, + "timings": { + "train": { + "started_at": "2026-05-04T17:52:08", + "ended_at": "2026-05-04T17:52:32", + "duration_sec": 24.013 + }, + "generate": { + "started_at": "2026-05-04T17:52:32", + "ended_at": "2026-05-04T17:52:37", + "duration_sec": 5.103 + } + } +} \ No newline at end of file diff --git a/timecost/c2/tvae/tvae-c2-20260504_175208/staged/public/staged_features.json b/timecost/c2/tvae/tvae-c2-20260504_175208/staged/public/staged_features.json new file mode 100644 index 0000000000000000000000000000000000000000..61783861dd5de501592f76acb0469cf3f3b2622a --- /dev/null +++ b/timecost/c2/tvae/tvae-c2-20260504_175208/staged/public/staged_features.json @@ -0,0 +1,37 @@ +[ + { + "feature_name": "buying", + "data_type": "categorical", + "is_target": false + }, + { + "feature_name": "maint", + "data_type": "categorical", + "is_target": false + }, + { + "feature_name": "doors", + "data_type": "categorical", + "is_target": false + }, + { + "feature_name": "persons", + "data_type": "categorical", + "is_target": false + }, + { + "feature_name": "lug_boot", + "data_type": "categorical", + "is_target": false + }, + { + "feature_name": "safety", + "data_type": "categorical", + "is_target": false + }, + { + "feature_name": "class", + "data_type": "categorical", + "is_target": true + } +] \ No newline at end of file diff --git a/timecost/c2/tvae/tvae-c2-20260504_175208/staged/public/test.csv b/timecost/c2/tvae/tvae-c2-20260504_175208/staged/public/test.csv new file mode 100644 index 0000000000000000000000000000000000000000..392a0d7189a34d8f13ecf20a99d64b03230d517c --- /dev/null +++ b/timecost/c2/tvae/tvae-c2-20260504_175208/staged/public/test.csv @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:b48114a7d0bc5bd9a07920f903c8d4aba8bf98bf2a66a050da03588b0245ca73 +size 5273 diff --git a/timecost/c2/tvae/tvae-c2-20260504_175208/staged/public/train.csv b/timecost/c2/tvae/tvae-c2-20260504_175208/staged/public/train.csv new file mode 100644 index 0000000000000000000000000000000000000000..da4f4d55134eebc0e51157d0d467536371db1484 --- /dev/null +++ b/timecost/c2/tvae/tvae-c2-20260504_175208/staged/public/train.csv @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:4aed00c2c2b3f88a55a7ebff31b2e1b5e0e32fb0a7267e0b9d2779cd23e434dd +size 41565 diff --git a/timecost/c2/tvae/tvae-c2-20260504_175208/staged/public/val.csv b/timecost/c2/tvae/tvae-c2-20260504_175208/staged/public/val.csv new file mode 100644 index 0000000000000000000000000000000000000000..af8caf7ee42524188534a3daf32996dc491952d9 --- /dev/null +++ b/timecost/c2/tvae/tvae-c2-20260504_175208/staged/public/val.csv @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:26e90c1170a57a14c05832ac88027722b1f3848f9662c7c09ef7c93dcba4cc01 +size 5176 diff --git a/timecost/c2/tvae/tvae-c2-20260504_175208/staged/tvae/adapter_report.json b/timecost/c2/tvae/tvae-c2-20260504_175208/staged/tvae/adapter_report.json new file mode 100644 index 0000000000000000000000000000000000000000..dd934cb8736896aea413f6c1ee693f46b6a150f2 --- /dev/null +++ b/timecost/c2/tvae/tvae-c2-20260504_175208/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-Benchmark-trainonly-v1/c2/tvae/tvae-c2-20260504_175208/staged/tvae/model_input_manifest.json" +} \ No newline at end of file diff --git a/timecost/c2/tvae/tvae-c2-20260504_175208/staged/tvae/adapter_transforms_applied.json b/timecost/c2/tvae/tvae-c2-20260504_175208/staged/tvae/adapter_transforms_applied.json new file mode 100644 index 0000000000000000000000000000000000000000..0637a088a01e8ddab3bf3fa98dbe804cbde1a0dc --- /dev/null +++ b/timecost/c2/tvae/tvae-c2-20260504_175208/staged/tvae/adapter_transforms_applied.json @@ -0,0 +1 @@ +[] \ No newline at end of file diff --git a/timecost/c2/tvae/tvae-c2-20260504_175208/staged/tvae/model_input_manifest.json b/timecost/c2/tvae/tvae-c2-20260504_175208/staged/tvae/model_input_manifest.json new file mode 100644 index 0000000000000000000000000000000000000000..b2dfb70e860332f2d4729abbb0e5335fa3f2fa58 --- /dev/null +++ b/timecost/c2/tvae/tvae-c2-20260504_175208/staged/tvae/model_input_manifest.json @@ -0,0 +1,151 @@ +{ + "dataset_id": "c2", + "model": "tvae", + "target_column": "class", + "task_type": "classification", + "column_schema": [ + { + "name": "buying", + "role": "feature", + "semantic_type": "categorical", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 4, + "unique_ratio": 0.002894, + "example_values": [ + "vhigh", + "med", + "high", + "low" + ] + } + }, + { + "name": "maint", + "role": "feature", + "semantic_type": "categorical", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 4, + "unique_ratio": 0.002894, + "example_values": [ + "vhigh", + "low", + "med", + "high" + ] + } + }, + { + "name": "doors", + "role": "feature", + "semantic_type": "categorical", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 4, + "unique_ratio": 0.002894, + "example_values": [ + "2", + "5more", + "3", + "4" + ] + } + }, + { + "name": "persons", + "role": "feature", + "semantic_type": "categorical", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 3, + "unique_ratio": 0.002171, + "example_values": [ + "2", + "4", + "more" + ] + } + }, + { + "name": "lug_boot", + "role": "feature", + "semantic_type": "categorical", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 3, + "unique_ratio": 0.002171, + "example_values": [ + "small", + "big", + "med" + ] + } + }, + { + "name": "safety", + "role": "feature", + "semantic_type": "categorical", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 3, + "unique_ratio": 0.002171, + "example_values": [ + "low", + "high", + "med" + ] + } + }, + { + "name": "class", + "role": "target", + "semantic_type": "categorical", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 4, + "unique_ratio": 0.002894, + "example_values": [ + "unacc", + "good", + "acc", + "vgood" + ] + } + } + ], + "public_manifest": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/c2/tvae/tvae-c2-20260504_175208/public_gate/staged_input_manifest.json", + "train_csv": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/c2/tvae/tvae-c2-20260504_175208/staged/public/train.csv", + "val_csv": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/c2/tvae/tvae-c2-20260504_175208/staged/public/val.csv", + "test_csv": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/c2/tvae/tvae-c2-20260504_175208/staged/public/test.csv", + "features_json": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/c2/tvae/tvae-c2-20260504_175208/staged/public/staged_features.json", + "public_gate_report": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/c2/tvae/tvae-c2-20260504_175208/public_gate/public_gate_report.json" +} \ No newline at end of file diff --git a/timecost/c2/tvae/tvae-c2-20260504_175208/tvae-c2-1382-20260504_175232.csv b/timecost/c2/tvae/tvae-c2-20260504_175208/tvae-c2-1382-20260504_175232.csv new file mode 100644 index 0000000000000000000000000000000000000000..f87119bdc86f96e711c84b1e0e548aef02373279 --- /dev/null +++ b/timecost/c2/tvae/tvae-c2-20260504_175208/tvae-c2-1382-20260504_175232.csv @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:dfa0ee0f5edf291d4a1440b73cc43eb64a1bef6799cdf66405b3384a12031f3f +size 41049 diff --git a/timecost/c2/tvae/tvae-c2-20260504_175208/tvae_metadata.json b/timecost/c2/tvae/tvae-c2-20260504_175208/tvae_metadata.json new file mode 100644 index 0000000000000000000000000000000000000000..183d627ebc98e89233655ec98c9dcbc528c4c328 --- /dev/null +++ b/timecost/c2/tvae/tvae-c2-20260504_175208/tvae_metadata.json @@ -0,0 +1,32 @@ +{ + "columns": [ + { + "name": "buying", + "type": "categorical" + }, + { + "name": "maint", + "type": "categorical" + }, + { + "name": "doors", + "type": "categorical" + }, + { + "name": "persons", + "type": "categorical" + }, + { + "name": "lug_boot", + "type": "categorical" + }, + { + "name": "safety", + "type": "categorical" + }, + { + "name": "class", + "type": "categorical" + } + ] +} \ No newline at end of file diff --git a/timecost/c2/tvae/tvae-c2-20260504_175249/_tvae_generate.py b/timecost/c2/tvae/tvae-c2-20260504_175249/_tvae_generate.py new file mode 100644 index 0000000000000000000000000000000000000000..e07148c1ba4ddca992b0f7e20cf0df0dcdeb69c0 --- /dev/null +++ b/timecost/c2/tvae/tvae-c2-20260504_175249/_tvae_generate.py @@ -0,0 +1,23 @@ +import os, sys +sys.path.insert(0, "/work") +from src.SpecificModels.ctgan_joblib_parallel_cap import apply_parallel_cap_from_env +apply_parallel_cap_from_env() +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 +os.environ.setdefault("LOKY_MAX_CPU_COUNT", "8") +os.environ.setdefault("OPENBLAS_NUM_THREADS", "8") +os.environ.setdefault("MKL_NUM_THREADS", "8") +model = TVAE.load("/work/output-Benchmark-trainonly-v1/c2/tvae/tvae-c2-20260504_175249/models_300epochs/tvae_300epochs.pt") +total = 1382 +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-Benchmark-trainonly-v1/c2/tvae/tvae-c2-20260504_175249/tvae-c2-1382-20260504_175313.csv", index=False) +print(f"[TVAE] Generated {total} rows (chunks={len(parts)}) -> /work/output-Benchmark-trainonly-v1/c2/tvae/tvae-c2-20260504_175249/tvae-c2-1382-20260504_175313.csv") diff --git a/timecost/c2/tvae/tvae-c2-20260504_175249/_tvae_train.py b/timecost/c2/tvae/tvae-c2-20260504_175249/_tvae_train.py new file mode 100644 index 0000000000000000000000000000000000000000..c032455229e3f6f5d8909e0b2a91cfe61ca5b48b --- /dev/null +++ b/timecost/c2/tvae/tvae-c2-20260504_175249/_tvae_train.py @@ -0,0 +1,39 @@ +import json, os, sys +sys.path.insert(0, "/work") +from src.SpecificModels.ctgan_joblib_parallel_cap import apply_parallel_cap_from_env +apply_parallel_cap_from_env() +import pandas as pd +from ctgan.data import read_csv +from ctgan.synthesizers.tvae import TVAE + +# Keep transform stage parallelism bounded for stability on shared host. +os.environ.setdefault("LOKY_MAX_CPU_COUNT", "8") +os.environ.setdefault("OPENBLAS_NUM_THREADS", "8") +os.environ.setdefault("MKL_NUM_THREADS", "8") +_nj = (os.environ.get("TVAE_CTGAN_JOBTRANS_N_JOBS") or "").strip() +if _nj: + print("[TVAE] joblib Parallel cap ON, TVAE_CTGAN_JOBTRANS_N_JOBS=" + _nj) +else: + print("[TVAE] joblib Parallel cap OFF (unset TVAE_CTGAN_JOBTRANS_N_JOBS)") +print("[TVAE] LOKY_MAX_CPU_COUNT=" + str(os.environ.get("LOKY_MAX_CPU_COUNT", ""))) + +csv_path = "/work/output-Benchmark-trainonly-v1/c2/tvae/tvae-c2-20260504_175249/staged/public/train.csv" +meta_path = "/work/output-Benchmark-trainonly-v1/c2/tvae/tvae-c2-20260504_175249/tvae_metadata.json" +save_path = "/work/output-Benchmark-trainonly-v1/c2/tvae/tvae-c2-20260504_175249/models_300epochs/tvae_300epochs.pt" +epochs = int(os.environ.get("TVAE_EPOCHS", 300)) +batch_size = int(os.environ.get("TVAE_BATCH_SIZE", "500")) +embedding_dim = int(os.environ.get("TVAE_EMBEDDING_DIM", "128")) +def _parse_dims(name, default): + raw = (os.environ.get(name) or "").strip() + if not raw: + return default + return tuple(int(x.strip()) for x in raw.split(",") if x.strip()) +compress_dims = _parse_dims("TVAE_COMPRESS_DIMS", (128, 128)) +decompress_dims = _parse_dims("TVAE_DECOMPRESS_DIMS", (128, 128)) + +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}, batch_size={batch_size}, embedding_dim={embedding_dim}, compress_dims={compress_dims}, decompress_dims={decompress_dims}") +model = TVAE(epochs=epochs, batch_size=batch_size, embedding_dim=embedding_dim, compress_dims=compress_dims, decompress_dims=decompress_dims) +model.fit(data, discrete_columns) +model.save(save_path) +print(f"[TVAE] Model saved -> {save_path}") diff --git a/timecost/c2/tvae/tvae-c2-20260504_175249/gen_20260504_175313.log b/timecost/c2/tvae/tvae-c2-20260504_175249/gen_20260504_175313.log new file mode 100644 index 0000000000000000000000000000000000000000..aba55b7de57d2847ab08ab93541dc182fd99c817 --- /dev/null +++ b/timecost/c2/tvae/tvae-c2-20260504_175249/gen_20260504_175313.log @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:6fd3a537a0edd5fbdc6f85ba4458aafb0b13c7a9e94d15ec3e50395e2b28182b +size 404 diff --git a/timecost/c2/tvae/tvae-c2-20260504_175249/input_snapshot.json b/timecost/c2/tvae/tvae-c2-20260504_175249/input_snapshot.json new file mode 100644 index 0000000000000000000000000000000000000000..9e28a5421f2176e174a0659e66a40054269fb2ac --- /dev/null +++ b/timecost/c2/tvae/tvae-c2-20260504_175249/input_snapshot.json @@ -0,0 +1,36 @@ +{ + "dataset_id": "c2", + "model": "tvae", + "inputs": { + "train_csv": { + "path": "/data/jialinzhang/SynthesizePipeline-server/DatasetNew/c2/c2-train.csv", + "exists": true, + "size": 42948, + "sha256": "17bc560fa96bd00fb3b526e1e65bc91210b701d0d0a4e8bb9b4c5196cab56def" + }, + "val_csv": { + "path": "/data/jialinzhang/SynthesizePipeline-server/DatasetNew/c2/c2-val.csv", + "exists": true, + "size": 5349, + "sha256": "61e565eca62e65a7dccd9d51039a3170413379e10fc494e25870e7c4294863c9" + }, + "test_csv": { + "path": "/data/jialinzhang/SynthesizePipeline-server/DatasetNew/c2/c2-test.csv", + "exists": true, + "size": 5448, + "sha256": "cbcbb062a1faf5fa44b66c80532baa229e05b94fc42137269761e6c6d84af20a" + }, + "profile_json": { + "path": "/data/jialinzhang/SynthesizePipeline-server/DatasetNew/artifacts/data_core/tabular/c2/c2-dataset_profile.json", + "exists": true, + "size": 3240, + "sha256": "526b7163b2076c93c0bf4638438081ee8a6907065d5b608faa40d1a3dbc2a27b" + }, + "contract_json": { + "path": "/data/jialinzhang/SynthesizePipeline-server/DatasetNew/artifacts/data_core/tabular/c2/c2-dataset_contract_v1.json", + "exists": true, + "size": 3731, + "sha256": "fb595a876054c2ee9b4e10cfe83a5691588de1d25466cbb9d473c18ad3604009" + } + } +} \ No newline at end of file diff --git a/timecost/c2/tvae/tvae-c2-20260504_175249/models_300epochs/train_20260504_175249.log b/timecost/c2/tvae/tvae-c2-20260504_175249/models_300epochs/train_20260504_175249.log new file mode 100644 index 0000000000000000000000000000000000000000..4d871338efdc74e0d6149b21cbb781486f4d93bb --- /dev/null +++ b/timecost/c2/tvae/tvae-c2-20260504_175249/models_300epochs/train_20260504_175249.log @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:36225451e64c28e079e1ffc5a02a1ff4755ba438ebe0f77dc8c5e87cafc124df +size 619 diff --git a/timecost/c2/tvae/tvae-c2-20260504_175249/models_300epochs/tvae_300epochs.pt b/timecost/c2/tvae/tvae-c2-20260504_175249/models_300epochs/tvae_300epochs.pt new file mode 100644 index 0000000000000000000000000000000000000000..c83492b85c2b473e1c5456cd62dd742606c08223 --- /dev/null +++ b/timecost/c2/tvae/tvae-c2-20260504_175249/models_300epochs/tvae_300epochs.pt @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:6784c6b8e4a0d3d2654f738df5614002347068fc0f6512daf0970b15d29c6106 +size 806572 diff --git a/timecost/c2/tvae/tvae-c2-20260504_175249/public_gate/normalized_schema_snapshot.json b/timecost/c2/tvae/tvae-c2-20260504_175249/public_gate/normalized_schema_snapshot.json new file mode 100644 index 0000000000000000000000000000000000000000..689b1d00d96508e44ba40e58dc4560e19afc2b3b --- /dev/null +++ b/timecost/c2/tvae/tvae-c2-20260504_175249/public_gate/normalized_schema_snapshot.json @@ -0,0 +1,144 @@ +{ + "dataset_id": "c2", + "target_column": "class", + "task_type": "classification", + "columns": [ + { + "name": "buying", + "role": "feature", + "semantic_type": "categorical", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 4, + "unique_ratio": 0.002894, + "example_values": [ + "vhigh", + "med", + "high", + "low" + ] + } + }, + { + "name": "maint", + "role": "feature", + "semantic_type": "categorical", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 4, + "unique_ratio": 0.002894, + "example_values": [ + "vhigh", + "low", + "med", + "high" + ] + } + }, + { + "name": "doors", + "role": "feature", + "semantic_type": "categorical", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 4, + "unique_ratio": 0.002894, + "example_values": [ + "2", + "5more", + "3", + "4" + ] + } + }, + { + "name": "persons", + "role": "feature", + "semantic_type": "categorical", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 3, + "unique_ratio": 0.002171, + "example_values": [ + "2", + "4", + "more" + ] + } + }, + { + "name": "lug_boot", + "role": "feature", + "semantic_type": "categorical", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 3, + "unique_ratio": 0.002171, + "example_values": [ + "small", + "big", + "med" + ] + } + }, + { + "name": "safety", + "role": "feature", + "semantic_type": "categorical", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 3, + "unique_ratio": 0.002171, + "example_values": [ + "low", + "high", + "med" + ] + } + }, + { + "name": "class", + "role": "target", + "semantic_type": "categorical", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 4, + "unique_ratio": 0.002894, + "example_values": [ + "unacc", + "good", + "acc", + "vgood" + ] + } + } + ] +} \ No newline at end of file diff --git a/timecost/c2/tvae/tvae-c2-20260504_175249/public_gate/public_gate_report.json b/timecost/c2/tvae/tvae-c2-20260504_175249/public_gate/public_gate_report.json new file mode 100644 index 0000000000000000000000000000000000000000..2e4cdcb2a4e28e40d59b17a83e773f622b7636a5 --- /dev/null +++ b/timecost/c2/tvae/tvae-c2-20260504_175249/public_gate/public_gate_report.json @@ -0,0 +1,37 @@ +{ + "dataset_id": "c2", + "status": "pass", + "checks": [ + { + "check_id": "PG001_csv_parse_ok", + "status": "pass" + }, + { + "check_id": "PG002_split_header_consistent", + "status": "pass" + }, + { + "check_id": "PG003_profile_header_match", + "status": "pass" + }, + { + "check_id": "PG004_missing_token_normalized", + "status": "pass" + }, + { + "check_id": "PG005_semantic_type_validated", + "status": "pass" + }, + { + "check_id": "PG006_target_defined_and_valid", + "status": "pass" + } + ], + "target_column": "class", + "task_type": "classification", + "input_splits": { + "train": "/data/jialinzhang/SynthesizePipeline-server/DatasetNew/c2/c2-train.csv", + "val": "/data/jialinzhang/SynthesizePipeline-server/DatasetNew/c2/c2-val.csv", + "test": "/data/jialinzhang/SynthesizePipeline-server/DatasetNew/c2/c2-test.csv" + } +} \ No newline at end of file diff --git a/timecost/c2/tvae/tvae-c2-20260504_175249/public_gate/staged_input_manifest.json b/timecost/c2/tvae/tvae-c2-20260504_175249/public_gate/staged_input_manifest.json new file mode 100644 index 0000000000000000000000000000000000000000..75e186f4667b8837057d5c45d32abccf2e5dd0e4 --- /dev/null +++ b/timecost/c2/tvae/tvae-c2-20260504_175249/public_gate/staged_input_manifest.json @@ -0,0 +1,149 @@ +{ + "dataset_id": "c2", + "target_column": "class", + "task_type": "classification", + "train_csv": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/c2/tvae/tvae-c2-20260504_175249/staged/public/train.csv", + "val_csv": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/c2/tvae/tvae-c2-20260504_175249/staged/public/val.csv", + "test_csv": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/c2/tvae/tvae-c2-20260504_175249/staged/public/test.csv", + "features_json": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/c2/tvae/tvae-c2-20260504_175249/staged/public/staged_features.json", + "public_gate_report": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/c2/tvae/tvae-c2-20260504_175249/public_gate/public_gate_report.json", + "column_schema": [ + { + "name": "buying", + "role": "feature", + "semantic_type": "categorical", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 4, + "unique_ratio": 0.002894, + "example_values": [ + "vhigh", + "med", + "high", + "low" + ] + } + }, + { + "name": "maint", + "role": "feature", + "semantic_type": "categorical", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 4, + "unique_ratio": 0.002894, + "example_values": [ + "vhigh", + "low", + "med", + "high" + ] + } + }, + { + "name": "doors", + "role": "feature", + "semantic_type": "categorical", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 4, + "unique_ratio": 0.002894, + "example_values": [ + "2", + "5more", + "3", + "4" + ] + } + }, + { + "name": "persons", + "role": "feature", + "semantic_type": "categorical", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 3, + "unique_ratio": 0.002171, + "example_values": [ + "2", + "4", + "more" + ] + } + }, + { + "name": "lug_boot", + "role": "feature", + "semantic_type": "categorical", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 3, + "unique_ratio": 0.002171, + "example_values": [ + "small", + "big", + "med" + ] + } + }, + { + "name": "safety", + "role": "feature", + "semantic_type": "categorical", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 3, + "unique_ratio": 0.002171, + "example_values": [ + "low", + "high", + "med" + ] + } + }, + { + "name": "class", + "role": "target", + "semantic_type": "categorical", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 4, + "unique_ratio": 0.002894, + "example_values": [ + "unacc", + "good", + "acc", + "vgood" + ] + } + } + ] +} \ No newline at end of file diff --git a/timecost/c2/tvae/tvae-c2-20260504_175249/run_config.json b/timecost/c2/tvae/tvae-c2-20260504_175249/run_config.json new file mode 100644 index 0000000000000000000000000000000000000000..fc3643ef5c96749e6ef0e5aacb3ae517516134be --- /dev/null +++ b/timecost/c2/tvae/tvae-c2-20260504_175249/run_config.json @@ -0,0 +1,45 @@ +{ + "schema_version": 1, + "recorded_at": "2026-05-04T17:52:49", + "dataset_id": "c2", + "model": "tvae", + "work_dir": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/c2/tvae/tvae-c2-20260504_175249", + "dataset_source_requested": "new", + "dataset_source_resolved": "new", + "cli_args": { + "model": "tvae", + "dataset": "c2", + "dataset_source": "new", + "train": true, + "generate": true, + "num_rows": 0, + "epochs": null, + "output_dir": null, + "model_dir": null, + "work_dir": null, + "resume": false, + "no_stats": false + }, + "resolved": { + "num_rows": 1382, + "model_path": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/c2/tvae/tvae-c2-20260504_175249/models_300epochs/tvae_300epochs.pt", + "output_csv": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/c2/tvae/tvae-c2-20260504_175249/tvae-c2-1382-20260504_175313.csv" + }, + "input_artifacts": { + "public_gate_report": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/c2/tvae/tvae-c2-20260504_175249/public_gate/public_gate_report.json", + "public_manifest": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/c2/tvae/tvae-c2-20260504_175249/public_gate/staged_input_manifest.json", + "model_manifest": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/c2/tvae/tvae-c2-20260504_175249/staged/tvae/model_input_manifest.json", + "train_csv": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/c2/tvae/tvae-c2-20260504_175249/staged/public/train.csv", + "features_json": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/c2/tvae/tvae-c2-20260504_175249/staged/public/staged_features.json", + "target_column": "class", + "task_type": "classification" + }, + "env_overrides": { + "BENCHMARK_TVAE_GPUS": "device=3", + "TVAE_BATCH_SIZE": "256", + "TVAE_COMPRESS_DIMS": "256,256", + "TVAE_DECOMPRESS_DIMS": "256,256", + "TVAE_EMBEDDING_DIM": "256", + "TVAE_EPOCHS": "500" + } +} \ No newline at end of file diff --git a/timecost/c2/tvae/tvae-c2-20260504_175249/runtime_result.json b/timecost/c2/tvae/tvae-c2-20260504_175249/runtime_result.json new file mode 100644 index 0000000000000000000000000000000000000000..0cb85f7daa3338b4f0cbada27e90ac334c284ed3 --- /dev/null +++ b/timecost/c2/tvae/tvae-c2-20260504_175249/runtime_result.json @@ -0,0 +1,27 @@ +{ + "dataset_id": "c2", + "model": "tvae", + "run_id": "tvae-c2-20260504_175249", + "public_gate_status": "pass", + "adapter_ready_status": "pass", + "train_status": "success", + "generate_status": "success", + "reason_code": null, + "reason_detail": null, + "artifacts": { + "synthetic_csv": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/c2/tvae/tvae-c2-20260504_175249/tvae-c2-1382-20260504_175313.csv", + "model_path": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/c2/tvae/tvae-c2-20260504_175249/models_300epochs/tvae_300epochs.pt" + }, + "timings": { + "train": { + "started_at": "2026-05-04T17:52:49", + "ended_at": "2026-05-04T17:53:13", + "duration_sec": 23.837 + }, + "generate": { + "started_at": "2026-05-04T17:53:13", + "ended_at": "2026-05-04T17:53:18", + "duration_sec": 5.187 + } + } +} \ No newline at end of file diff --git a/timecost/c2/tvae/tvae-c2-20260504_175249/staged/public/staged_features.json b/timecost/c2/tvae/tvae-c2-20260504_175249/staged/public/staged_features.json new file mode 100644 index 0000000000000000000000000000000000000000..61783861dd5de501592f76acb0469cf3f3b2622a --- /dev/null +++ b/timecost/c2/tvae/tvae-c2-20260504_175249/staged/public/staged_features.json @@ -0,0 +1,37 @@ +[ + { + "feature_name": "buying", + "data_type": "categorical", + "is_target": false + }, + { + "feature_name": "maint", + "data_type": "categorical", + "is_target": false + }, + { + "feature_name": "doors", + "data_type": "categorical", + "is_target": false + }, + { + "feature_name": "persons", + "data_type": "categorical", + "is_target": false + }, + { + "feature_name": "lug_boot", + "data_type": "categorical", + "is_target": false + }, + { + "feature_name": "safety", + "data_type": "categorical", + "is_target": false + }, + { + "feature_name": "class", + "data_type": "categorical", + "is_target": true + } +] \ No newline at end of file diff --git a/timecost/c2/tvae/tvae-c2-20260504_175249/staged/public/test.csv b/timecost/c2/tvae/tvae-c2-20260504_175249/staged/public/test.csv new file mode 100644 index 0000000000000000000000000000000000000000..392a0d7189a34d8f13ecf20a99d64b03230d517c --- /dev/null +++ b/timecost/c2/tvae/tvae-c2-20260504_175249/staged/public/test.csv @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:b48114a7d0bc5bd9a07920f903c8d4aba8bf98bf2a66a050da03588b0245ca73 +size 5273 diff --git a/timecost/c2/tvae/tvae-c2-20260504_175249/staged/public/train.csv b/timecost/c2/tvae/tvae-c2-20260504_175249/staged/public/train.csv new file mode 100644 index 0000000000000000000000000000000000000000..da4f4d55134eebc0e51157d0d467536371db1484 --- /dev/null +++ b/timecost/c2/tvae/tvae-c2-20260504_175249/staged/public/train.csv @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:4aed00c2c2b3f88a55a7ebff31b2e1b5e0e32fb0a7267e0b9d2779cd23e434dd +size 41565 diff --git a/timecost/c2/tvae/tvae-c2-20260504_175249/staged/public/val.csv b/timecost/c2/tvae/tvae-c2-20260504_175249/staged/public/val.csv new file mode 100644 index 0000000000000000000000000000000000000000..af8caf7ee42524188534a3daf32996dc491952d9 --- /dev/null +++ b/timecost/c2/tvae/tvae-c2-20260504_175249/staged/public/val.csv @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:26e90c1170a57a14c05832ac88027722b1f3848f9662c7c09ef7c93dcba4cc01 +size 5176 diff --git a/timecost/c2/tvae/tvae-c2-20260504_175249/staged/tvae/adapter_report.json b/timecost/c2/tvae/tvae-c2-20260504_175249/staged/tvae/adapter_report.json new file mode 100644 index 0000000000000000000000000000000000000000..64b18a507f528876aa0c3b86fcbc3c69370770e1 --- /dev/null +++ b/timecost/c2/tvae/tvae-c2-20260504_175249/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-Benchmark-trainonly-v1/c2/tvae/tvae-c2-20260504_175249/staged/tvae/model_input_manifest.json" +} \ No newline at end of file diff --git a/timecost/c2/tvae/tvae-c2-20260504_175249/staged/tvae/adapter_transforms_applied.json b/timecost/c2/tvae/tvae-c2-20260504_175249/staged/tvae/adapter_transforms_applied.json new file mode 100644 index 0000000000000000000000000000000000000000..0637a088a01e8ddab3bf3fa98dbe804cbde1a0dc --- /dev/null +++ b/timecost/c2/tvae/tvae-c2-20260504_175249/staged/tvae/adapter_transforms_applied.json @@ -0,0 +1 @@ +[] \ No newline at end of file diff --git a/timecost/c2/tvae/tvae-c2-20260504_175249/staged/tvae/model_input_manifest.json b/timecost/c2/tvae/tvae-c2-20260504_175249/staged/tvae/model_input_manifest.json new file mode 100644 index 0000000000000000000000000000000000000000..ff76871e41b31780ffa015bfa09409fab9868e57 --- /dev/null +++ b/timecost/c2/tvae/tvae-c2-20260504_175249/staged/tvae/model_input_manifest.json @@ -0,0 +1,151 @@ +{ + "dataset_id": "c2", + "model": "tvae", + "target_column": "class", + "task_type": "classification", + "column_schema": [ + { + "name": "buying", + "role": "feature", + "semantic_type": "categorical", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 4, + "unique_ratio": 0.002894, + "example_values": [ + "vhigh", + "med", + "high", + "low" + ] + } + }, + { + "name": "maint", + "role": "feature", + "semantic_type": "categorical", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 4, + "unique_ratio": 0.002894, + "example_values": [ + "vhigh", + "low", + "med", + "high" + ] + } + }, + { + "name": "doors", + "role": "feature", + "semantic_type": "categorical", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 4, + "unique_ratio": 0.002894, + "example_values": [ + "2", + "5more", + "3", + "4" + ] + } + }, + { + "name": "persons", + "role": "feature", + "semantic_type": "categorical", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 3, + "unique_ratio": 0.002171, + "example_values": [ + "2", + "4", + "more" + ] + } + }, + { + "name": "lug_boot", + "role": "feature", + "semantic_type": "categorical", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 3, + "unique_ratio": 0.002171, + "example_values": [ + "small", + "big", + "med" + ] + } + }, + { + "name": "safety", + "role": "feature", + "semantic_type": "categorical", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 3, + "unique_ratio": 0.002171, + "example_values": [ + "low", + "high", + "med" + ] + } + }, + { + "name": "class", + "role": "target", + "semantic_type": "categorical", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 4, + "unique_ratio": 0.002894, + "example_values": [ + "unacc", + "good", + "acc", + "vgood" + ] + } + } + ], + "public_manifest": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/c2/tvae/tvae-c2-20260504_175249/public_gate/staged_input_manifest.json", + "train_csv": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/c2/tvae/tvae-c2-20260504_175249/staged/public/train.csv", + "val_csv": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/c2/tvae/tvae-c2-20260504_175249/staged/public/val.csv", + "test_csv": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/c2/tvae/tvae-c2-20260504_175249/staged/public/test.csv", + "features_json": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/c2/tvae/tvae-c2-20260504_175249/staged/public/staged_features.json", + "public_gate_report": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/c2/tvae/tvae-c2-20260504_175249/public_gate/public_gate_report.json" +} \ No newline at end of file diff --git a/timecost/c2/tvae/tvae-c2-20260504_175249/tvae-c2-1382-20260504_175313.csv b/timecost/c2/tvae/tvae-c2-20260504_175249/tvae-c2-1382-20260504_175313.csv new file mode 100644 index 0000000000000000000000000000000000000000..ae3153f5e356d1b61c8b9d640e35d36e141387c2 --- /dev/null +++ b/timecost/c2/tvae/tvae-c2-20260504_175249/tvae-c2-1382-20260504_175313.csv @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:ef368b14d1cd6f881c56fcba6683fbb15c133cf8ab7331cea2484b675b53bfc6 +size 41456 diff --git a/timecost/c2/tvae/tvae-c2-20260504_175249/tvae_metadata.json b/timecost/c2/tvae/tvae-c2-20260504_175249/tvae_metadata.json new file mode 100644 index 0000000000000000000000000000000000000000..183d627ebc98e89233655ec98c9dcbc528c4c328 --- /dev/null +++ b/timecost/c2/tvae/tvae-c2-20260504_175249/tvae_metadata.json @@ -0,0 +1,32 @@ +{ + "columns": [ + { + "name": "buying", + "type": "categorical" + }, + { + "name": "maint", + "type": "categorical" + }, + { + "name": "doors", + "type": "categorical" + }, + { + "name": "persons", + "type": "categorical" + }, + { + "name": "lug_boot", + "type": "categorical" + }, + { + "name": "safety", + "type": "categorical" + }, + { + "name": "class", + "type": "categorical" + } + ] +} \ No newline at end of file diff --git a/timecost/c7/arf/arf-c7-20260429_030948/_arf_generate.py b/timecost/c7/arf/arf-c7-20260429_030948/_arf_generate.py new file mode 100644 index 0000000000000000000000000000000000000000..44f72d63db070539b9ff78e9f4150ec2dff090c7 --- /dev/null +++ b/timecost/c7/arf/arf-c7-20260429_030948/_arf_generate.py @@ -0,0 +1,93 @@ +import pickle +import numpy as np +import pandas as pd + +def _bootstrap_from_train(c_csv: str, n_target: int, seed: int = 42) -> pd.DataFrame: + """当 arfpy.forge 完全不可用时,从训练 CSV 有放回抽样,保证行数与列对齐。""" + src = pd.read_csv(c_csv, encoding="utf-8-sig", low_memory=False) + src = src.replace([np.inf, -np.inf], np.nan).dropna(axis=1, how="all") + src = src.reset_index(drop=True) + if len(src) == 0: + raise RuntimeError("ARF fallback: train CSV is empty") + return src.sample(n=n_target, replace=True, random_state=seed).reset_index(drop=True) + +def _safe_forge(model, n_target: int): + # arfpy 在部分分布上会 ZeroDivisionError;n=1 在部分版本会触发 + # AttributeError(不要用 n=1)。失败返回 None,由外层走 bootstrap。 + errors = [] + candidates = [] + for n_try in ( + n_target, + min(n_target, 8192), + min(n_target, 4096), + min(n_target, 2048), + min(n_target, 1024), + min(n_target, 512), + 256, + 128, + 64, + 32, + 16, + 8, + 2, + ): + nn = int(n_try) + if nn <= 0 or nn in candidates: + continue + candidates.append(nn) + for n_try in candidates: + try: + out = model.forge(n=n_try).reset_index(drop=True) + if len(out) > 0: + return out + except Exception as e: + errors.append(f"n={n_try}: {type(e).__name__}: {e}") + print("[ARF] forge failed after retries; last errors:", " | ".join(errors[-4:])) + return None + +n_target = int(10368) +c_csv = "/work/output-Benchmark-trainonly-v1/c7/arf/arf-c7-20260429_030948/staged/public/train.csv" +with open("/work/output-Benchmark-trainonly-v1/c7/arf/arf-c7-20260429_030948/arf_model.pkl", "rb") as f: + model = pickle.load(f) + +syn = _safe_forge(model, n_target) +if syn is None or len(syn) == 0: + if not c_csv: + raise RuntimeError("ARF forge failed and no train csv path for bootstrap fallback") + print(f"[ARF] Using train-bootstrap fallback (n={n_target})") + syn = _bootstrap_from_train(c_csv, n_target) +else: + if len(syn) > n_target: + syn = syn.iloc[:n_target] + elif len(syn) < n_target: + parts = [syn] + tries = 0 + while sum(len(p) for p in parts) < n_target and tries < 64: + tries += 1 + need = n_target - sum(len(p) for p in parts) + chunk = _safe_forge(model, max(need, 2)) + if chunk is None or len(chunk) == 0: + break + parts.append(chunk) + syn = pd.concat(parts, ignore_index=True).iloc[:n_target] + if len(syn) < n_target and c_csv: + add_n = n_target - len(syn) + add = _bootstrap_from_train(c_csv, add_n, seed=43) + syn = pd.concat([syn, add], ignore_index=True).iloc[:n_target] + +_ds_id = 'c7' +if _ds_id == "c19": + # 仅 c19:object 列内裸换行会使 pivot 用 csv.reader 统计到的「记录数」大于 DataFrame 行数 → Sw。 + for _col in syn.columns: + if syn[_col].dtype == object: + syn[_col] = ( + syn[_col] + .astype(str) + .str.replace("\r\n", " ", regex=False) + .str.replace("\n", " ", regex=False) + .str.replace("\r", " ", regex=False) + ) + syn = syn.iloc[:n_target].reset_index(drop=True) + +syn.to_csv("/work/output-Benchmark-trainonly-v1/c7/arf/arf-c7-20260429_030948/arf-c7-10368-20260429_031026.csv", index=False) +print(f"[ARF] Generated {len(syn)} rows (requested {n_target}) -> /work/output-Benchmark-trainonly-v1/c7/arf/arf-c7-20260429_030948/arf-c7-10368-20260429_031026.csv") diff --git a/timecost/c7/arf/arf-c7-20260429_030948/_arf_train.py b/timecost/c7/arf/arf-c7-20260429_030948/_arf_train.py new file mode 100644 index 0000000000000000000000000000000000000000..91239e3716171e5b18e61a1140b0bcbdeb926dce --- /dev/null +++ b/timecost/c7/arf/arf-c7-20260429_030948/_arf_train.py @@ -0,0 +1,37 @@ +import pickle +import numpy as np +import pandas as pd +from arfpy import arf + +def _sanitize_for_arf(df: pd.DataFrame) -> pd.DataFrame: + """缓解 forge 阶段 scipy.stats.truncnorm / 除零:处理 inf、NaN 与极端尾部。""" + df = df.replace([np.inf, -np.inf], np.nan) + df = df.dropna(axis=1, how="all") + for col in df.select_dtypes(include=[np.number]).columns: + med = df[col].median() + if pd.isna(med): + med = 0.0 + df[col] = df[col].fillna(med) + nu = int(df[col].nunique(dropna=True)) + if nu <= 1: + continue + lo, hi = df[col].quantile(0.001), df[col].quantile(0.999) + if pd.notna(lo) and pd.notna(hi) and lo < hi: + df[col] = df[col].clip(lo, hi) + return df + +df = pd.read_csv("/work/output-Benchmark-trainonly-v1/c7/arf/arf-c7-20260429_030948/staged/public/train.csv") +df = _sanitize_for_arf(df) +print(f"[ARF] Training on {len(df)} rows, {len(df.columns)} cols") + +model = arf.arf(x=df) +if hasattr(model, "fit"): + model.fit() +elif hasattr(model, "forde"): + model.forde() +else: + raise RuntimeError("arfpy API: no fit() / forde()") + +with open("/work/output-Benchmark-trainonly-v1/c7/arf/arf-c7-20260429_030948/arf_model.pkl", "wb") as f: + pickle.dump(model, f) +print(f"[ARF] Model saved -> /work/output-Benchmark-trainonly-v1/c7/arf/arf-c7-20260429_030948/arf_model.pkl") diff --git a/timecost/c7/arf/arf-c7-20260429_030948/arf-c7-10368-20260429_031026.csv b/timecost/c7/arf/arf-c7-20260429_030948/arf-c7-10368-20260429_031026.csv new file mode 100644 index 0000000000000000000000000000000000000000..0f1aef2f26f514478160dc5e75b581aa0a1f8367 --- /dev/null +++ b/timecost/c7/arf/arf-c7-20260429_030948/arf-c7-10368-20260429_031026.csv @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:66bc5cb299efafaea27685aa7dabdd62ede6e19adf9aae833cfe6c8c6aa6b81c +size 846612 diff --git a/timecost/c7/arf/arf-c7-20260429_030948/arf_model.pkl b/timecost/c7/arf/arf-c7-20260429_030948/arf_model.pkl new file mode 100644 index 0000000000000000000000000000000000000000..3008fca0f2b479982cb9cb9836163225c4b6000f --- /dev/null +++ b/timecost/c7/arf/arf-c7-20260429_030948/arf_model.pkl @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:d8786230db2bbc8dec7374177bbdc74810e36d36ad685dcdba983ed5e6e3f84c +size 44356271 diff --git a/timecost/c7/arf/arf-c7-20260429_030948/gen_20260429_031026.log b/timecost/c7/arf/arf-c7-20260429_030948/gen_20260429_031026.log new file mode 100644 index 0000000000000000000000000000000000000000..1d997be670b8ef4c9905653e9acc8324604abbca --- /dev/null +++ b/timecost/c7/arf/arf-c7-20260429_030948/gen_20260429_031026.log @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:f94fa2b074d235488ffe68c5133b8e6c8361d97a22d7ac461165f2b363bbbaa1 +size 3250 diff --git a/timecost/c7/arf/arf-c7-20260429_030948/input_snapshot.json b/timecost/c7/arf/arf-c7-20260429_030948/input_snapshot.json new file mode 100644 index 0000000000000000000000000000000000000000..f1ae1af8b683e62a8986562037668d2d1c4d2cbf --- /dev/null +++ b/timecost/c7/arf/arf-c7-20260429_030948/input_snapshot.json @@ -0,0 +1,36 @@ +{ + "dataset_id": "c7", + "model": "arf", + "inputs": { + "train_csv": { + "path": "/data/jialinzhang/SynthesizePipeline-server/DatasetNew/c7/c7-train.csv", + "exists": true, + "size": 857718, + "sha256": "0ec97b49cecfd452f07551a63db7b812b5998a1e37101eae82255d00aa6a6243" + }, + "val_csv": { + "path": "/data/jialinzhang/SynthesizePipeline-server/DatasetNew/c7/c7-val.csv", + "exists": true, + "size": 107489, + "sha256": "4501bb2be19f7e13b7ff5e9dedd74e3dd42f2cafc8cefd5435bda61fc974a769" + }, + "test_csv": { + "path": "/data/jialinzhang/SynthesizePipeline-server/DatasetNew/c7/c7-test.csv", + "exists": true, + "size": 107327, + "sha256": "f9e808033a07feabb980addcf8c5f75111189ac2fb70993b8ad0f5ca3d5cfbae" + }, + "profile_json": { + "path": "/data/jialinzhang/SynthesizePipeline-server/DatasetNew/artifacts/data_core/tabular/c7/c7-dataset_profile.json", + "exists": true, + "size": 4014, + "sha256": "60424c615b91a26cf02d9bc1d7f91caa0ceb95bab39eb7cff6f9edea3ca0600e" + }, + "contract_json": { + "path": "/data/jialinzhang/SynthesizePipeline-server/DatasetNew/artifacts/data_core/tabular/c7/c7-dataset_contract_v1.json", + "exists": true, + "size": 4759, + "sha256": "79a434a1e2553b14b9f2e98c1adfc32a71aaa0d6cd49234f3f8a5603efca4ebd" + } + } +} \ No newline at end of file diff --git a/timecost/c7/arf/arf-c7-20260429_030948/public_gate/normalized_schema_snapshot.json b/timecost/c7/arf/arf-c7-20260429_030948/public_gate/normalized_schema_snapshot.json new file mode 100644 index 0000000000000000000000000000000000000000..3ea4859ec2aa245a19531b254f45d87237c23069 --- /dev/null +++ b/timecost/c7/arf/arf-c7-20260429_030948/public_gate/normalized_schema_snapshot.json @@ -0,0 +1,183 @@ +{ + "dataset_id": "c7", + "target_column": "class", + "task_type": "classification", + "columns": [ + { + "name": "parents", + "role": "feature", + "semantic_type": "categorical", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 3, + "unique_ratio": 0.000289, + "example_values": [ + "usual", + "pretentious", + "great_pret" + ] + } + }, + { + "name": "has_nurs", + "role": "feature", + "semantic_type": "categorical", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 5, + "unique_ratio": 0.000482, + "example_values": [ + "very_crit", + "critical", + "improper", + "less_proper", + "proper" + ] + } + }, + { + "name": "form", + "role": "feature", + "semantic_type": "categorical", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 4, + "unique_ratio": 0.000386, + "example_values": [ + "complete", + "completed", + "incomplete", + "foster" + ] + } + }, + { + "name": "children", + "role": "feature", + "semantic_type": "categorical", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 4, + "unique_ratio": 0.000386, + "example_values": [ + "1", + "3", + "2", + "more" + ] + } + }, + { + "name": "housing", + "role": "feature", + "semantic_type": "categorical", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 3, + "unique_ratio": 0.000289, + "example_values": [ + "less_conv", + "convenient", + "critical" + ] + } + }, + { + "name": "finance", + "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.000193, + "example_values": [ + "convenient", + "inconv" + ] + } + }, + { + "name": "social", + "role": "feature", + "semantic_type": "categorical", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 3, + "unique_ratio": 0.000289, + "example_values": [ + "slightly_prob", + "nonprob", + "problematic" + ] + } + }, + { + "name": "health", + "role": "feature", + "semantic_type": "categorical", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 3, + "unique_ratio": 0.000289, + "example_values": [ + "recommended", + "priority", + "not_recom" + ] + } + }, + { + "name": "class", + "role": "target", + "semantic_type": "categorical", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 5, + "unique_ratio": 0.000482, + "example_values": [ + "priority", + "spec_prior", + "not_recom", + "very_recom", + "recommend" + ] + } + } + ] +} \ No newline at end of file diff --git a/timecost/c7/arf/arf-c7-20260429_030948/public_gate/public_gate_report.json b/timecost/c7/arf/arf-c7-20260429_030948/public_gate/public_gate_report.json new file mode 100644 index 0000000000000000000000000000000000000000..3328fe59cd490a424e50f931e9eedba9e81d1cec --- /dev/null +++ b/timecost/c7/arf/arf-c7-20260429_030948/public_gate/public_gate_report.json @@ -0,0 +1,37 @@ +{ + "dataset_id": "c7", + "status": "pass", + "checks": [ + { + "check_id": "PG001_csv_parse_ok", + "status": "pass" + }, + { + "check_id": "PG002_split_header_consistent", + "status": "pass" + }, + { + "check_id": "PG003_profile_header_match", + "status": "pass" + }, + { + "check_id": "PG004_missing_token_normalized", + "status": "pass" + }, + { + "check_id": "PG005_semantic_type_validated", + "status": "pass" + }, + { + "check_id": "PG006_target_defined_and_valid", + "status": "pass" + } + ], + "target_column": "class", + "task_type": "classification", + "input_splits": { + "train": "/data/jialinzhang/SynthesizePipeline-server/DatasetNew/c7/c7-train.csv", + "val": "/data/jialinzhang/SynthesizePipeline-server/DatasetNew/c7/c7-val.csv", + "test": "/data/jialinzhang/SynthesizePipeline-server/DatasetNew/c7/c7-test.csv" + } +} \ No newline at end of file diff --git a/timecost/c7/arf/arf-c7-20260429_030948/public_gate/staged_input_manifest.json b/timecost/c7/arf/arf-c7-20260429_030948/public_gate/staged_input_manifest.json new file mode 100644 index 0000000000000000000000000000000000000000..6d7c9cc4cce18fe9a5b514be511a77b1d76a4496 --- /dev/null +++ b/timecost/c7/arf/arf-c7-20260429_030948/public_gate/staged_input_manifest.json @@ -0,0 +1,188 @@ +{ + "dataset_id": "c7", + "target_column": "class", + "task_type": "classification", + "train_csv": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/c7/arf/arf-c7-20260429_030948/staged/public/train.csv", + "val_csv": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/c7/arf/arf-c7-20260429_030948/staged/public/val.csv", + "test_csv": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/c7/arf/arf-c7-20260429_030948/staged/public/test.csv", + "features_json": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/c7/arf/arf-c7-20260429_030948/staged/public/staged_features.json", + "public_gate_report": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/c7/arf/arf-c7-20260429_030948/public_gate/public_gate_report.json", + "column_schema": [ + { + "name": "parents", + "role": "feature", + "semantic_type": "categorical", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 3, + "unique_ratio": 0.000289, + "example_values": [ + "usual", + "pretentious", + "great_pret" + ] + } + }, + { + "name": "has_nurs", + "role": "feature", + "semantic_type": "categorical", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 5, + "unique_ratio": 0.000482, + "example_values": [ + "very_crit", + "critical", + "improper", + "less_proper", + "proper" + ] + } + }, + { + "name": "form", + "role": "feature", + "semantic_type": "categorical", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 4, + "unique_ratio": 0.000386, + "example_values": [ + "complete", + "completed", + "incomplete", + "foster" + ] + } + }, + { + "name": "children", + "role": "feature", + "semantic_type": "categorical", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 4, + "unique_ratio": 0.000386, + "example_values": [ + "1", + "3", + "2", + "more" + ] + } + }, + { + "name": "housing", + "role": "feature", + "semantic_type": "categorical", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 3, + "unique_ratio": 0.000289, + "example_values": [ + "less_conv", + "convenient", + "critical" + ] + } + }, + { + "name": "finance", + "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.000193, + "example_values": [ + "convenient", + "inconv" + ] + } + }, + { + "name": "social", + "role": "feature", + "semantic_type": "categorical", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 3, + "unique_ratio": 0.000289, + "example_values": [ + "slightly_prob", + "nonprob", + "problematic" + ] + } + }, + { + "name": "health", + "role": "feature", + "semantic_type": "categorical", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 3, + "unique_ratio": 0.000289, + "example_values": [ + "recommended", + "priority", + "not_recom" + ] + } + }, + { + "name": "class", + "role": "target", + "semantic_type": "categorical", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 5, + "unique_ratio": 0.000482, + "example_values": [ + "priority", + "spec_prior", + "not_recom", + "very_recom", + "recommend" + ] + } + } + ] +} \ No newline at end of file diff --git a/timecost/c7/arf/arf-c7-20260429_030948/runtime_result.json b/timecost/c7/arf/arf-c7-20260429_030948/runtime_result.json new file mode 100644 index 0000000000000000000000000000000000000000..aa1de66407fea7feb131a64ed46a998d7297591a --- /dev/null +++ b/timecost/c7/arf/arf-c7-20260429_030948/runtime_result.json @@ -0,0 +1,15 @@ +{ + "dataset_id": "c7", + "model": "arf", + "run_id": "arf-c7-20260429_030948", + "public_gate_status": "pass", + "adapter_ready_status": "pass", + "train_status": "success", + "generate_status": "success", + "reason_code": null, + "reason_detail": null, + "artifacts": { + "synthetic_csv": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/c7/arf/arf-c7-20260429_030948/arf-c7-10368-20260429_031026.csv", + "model_path": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/c7/arf/arf-c7-20260429_030948/arf_model.pkl" + } +} \ No newline at end of file diff --git a/timecost/c7/arf/arf-c7-20260429_030948/staged/arf/adapter_report.json b/timecost/c7/arf/arf-c7-20260429_030948/staged/arf/adapter_report.json new file mode 100644 index 0000000000000000000000000000000000000000..ef6561b5c3c9e15fe7e39facbf75637087678d81 --- /dev/null +++ b/timecost/c7/arf/arf-c7-20260429_030948/staged/arf/adapter_report.json @@ -0,0 +1,7 @@ +{ + "adapter_ready_status": "pass", + "adapter_fail_reason_code": null, + "adapter_fail_detail": null, + "adapter_transforms_applied": [], + "model_input_manifest": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/c7/arf/arf-c7-20260429_030948/staged/arf/model_input_manifest.json" +} \ No newline at end of file diff --git a/timecost/c7/arf/arf-c7-20260429_030948/staged/arf/adapter_transforms_applied.json b/timecost/c7/arf/arf-c7-20260429_030948/staged/arf/adapter_transforms_applied.json new file mode 100644 index 0000000000000000000000000000000000000000..0637a088a01e8ddab3bf3fa98dbe804cbde1a0dc --- /dev/null +++ b/timecost/c7/arf/arf-c7-20260429_030948/staged/arf/adapter_transforms_applied.json @@ -0,0 +1 @@ +[] \ No newline at end of file diff --git a/timecost/c7/arf/arf-c7-20260429_030948/staged/arf/model_input_manifest.json b/timecost/c7/arf/arf-c7-20260429_030948/staged/arf/model_input_manifest.json new file mode 100644 index 0000000000000000000000000000000000000000..4f6e17545c099f677f73125419e8e3fc430905b7 --- /dev/null +++ b/timecost/c7/arf/arf-c7-20260429_030948/staged/arf/model_input_manifest.json @@ -0,0 +1,190 @@ +{ + "dataset_id": "c7", + "model": "arf", + "target_column": "class", + "task_type": "classification", + "column_schema": [ + { + "name": "parents", + "role": "feature", + "semantic_type": "categorical", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 3, + "unique_ratio": 0.000289, + "example_values": [ + "usual", + "pretentious", + "great_pret" + ] + } + }, + { + "name": "has_nurs", + "role": "feature", + "semantic_type": "categorical", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 5, + "unique_ratio": 0.000482, + "example_values": [ + "very_crit", + "critical", + "improper", + "less_proper", + "proper" + ] + } + }, + { + "name": "form", + "role": "feature", + "semantic_type": "categorical", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 4, + "unique_ratio": 0.000386, + "example_values": [ + "complete", + "completed", + "incomplete", + "foster" + ] + } + }, + { + "name": "children", + "role": "feature", + "semantic_type": "categorical", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 4, + "unique_ratio": 0.000386, + "example_values": [ + "1", + "3", + "2", + "more" + ] + } + }, + { + "name": "housing", + "role": "feature", + "semantic_type": "categorical", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 3, + "unique_ratio": 0.000289, + "example_values": [ + "less_conv", + "convenient", + "critical" + ] + } + }, + { + "name": "finance", + "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.000193, + "example_values": [ + "convenient", + "inconv" + ] + } + }, + { + "name": "social", + "role": "feature", + "semantic_type": "categorical", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 3, + "unique_ratio": 0.000289, + "example_values": [ + "slightly_prob", + "nonprob", + "problematic" + ] + } + }, + { + "name": "health", + "role": "feature", + "semantic_type": "categorical", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 3, + "unique_ratio": 0.000289, + "example_values": [ + "recommended", + "priority", + "not_recom" + ] + } + }, + { + "name": "class", + "role": "target", + "semantic_type": "categorical", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 5, + "unique_ratio": 0.000482, + "example_values": [ + "priority", + "spec_prior", + "not_recom", + "very_recom", + "recommend" + ] + } + } + ], + "public_manifest": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/c7/arf/arf-c7-20260429_030948/public_gate/staged_input_manifest.json", + "train_csv": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/c7/arf/arf-c7-20260429_030948/staged/public/train.csv", + "val_csv": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/c7/arf/arf-c7-20260429_030948/staged/public/val.csv", + "test_csv": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/c7/arf/arf-c7-20260429_030948/staged/public/test.csv", + "features_json": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/c7/arf/arf-c7-20260429_030948/staged/public/staged_features.json", + "public_gate_report": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/c7/arf/arf-c7-20260429_030948/public_gate/public_gate_report.json" +} \ No newline at end of file diff --git a/timecost/c7/arf/arf-c7-20260429_030948/staged/public/staged_features.json b/timecost/c7/arf/arf-c7-20260429_030948/staged/public/staged_features.json new file mode 100644 index 0000000000000000000000000000000000000000..0e23df6bcfb7ecfd44dfefc3d0ca0bf6b6aebc60 --- /dev/null +++ b/timecost/c7/arf/arf-c7-20260429_030948/staged/public/staged_features.json @@ -0,0 +1,47 @@ +[ + { + "feature_name": "parents", + "data_type": "categorical", + "is_target": false + }, + { + "feature_name": "has_nurs", + "data_type": "categorical", + "is_target": false + }, + { + "feature_name": "form", + "data_type": "categorical", + "is_target": false + }, + { + "feature_name": "children", + "data_type": "categorical", + "is_target": false + }, + { + "feature_name": "housing", + "data_type": "categorical", + "is_target": false + }, + { + "feature_name": "finance", + "data_type": "categorical", + "is_target": false + }, + { + "feature_name": "social", + "data_type": "categorical", + "is_target": false + }, + { + "feature_name": "health", + "data_type": "categorical", + "is_target": false + }, + { + "feature_name": "class", + "data_type": "categorical", + "is_target": true + } +] \ No newline at end of file diff --git a/timecost/c7/arf/arf-c7-20260429_030948/staged/public/test.csv b/timecost/c7/arf/arf-c7-20260429_030948/staged/public/test.csv new file mode 100644 index 0000000000000000000000000000000000000000..cb9d7081ca745e9eed28a35168872d450c4a2a44 --- /dev/null +++ b/timecost/c7/arf/arf-c7-20260429_030948/staged/public/test.csv @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:2042076337d5c37c6476e6bca2bd33cb5a171450c27894534ef50ac223256058 +size 106030 diff --git a/timecost/c7/arf/arf-c7-20260429_030948/staged/public/train.csv b/timecost/c7/arf/arf-c7-20260429_030948/staged/public/train.csv new file mode 100644 index 0000000000000000000000000000000000000000..4c8e5e0c5031fc7e8e25213132c1231950ec29da --- /dev/null +++ b/timecost/c7/arf/arf-c7-20260429_030948/staged/public/train.csv @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:b37f6b2ef5257f40bd826ac956749881f0f474362bdb56e8c5728ad629242e3a +size 847349 diff --git a/timecost/c7/arf/arf-c7-20260429_030948/staged/public/val.csv b/timecost/c7/arf/arf-c7-20260429_030948/staged/public/val.csv new file mode 100644 index 0000000000000000000000000000000000000000..55792963756b1ae35b4d79dee11881372962b8d5 --- /dev/null +++ b/timecost/c7/arf/arf-c7-20260429_030948/staged/public/val.csv @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:eff6dec27c3740661a1ae84dea391d690dfb60342bfd5d7527b903fdd6009780 +size 106192 diff --git a/timecost/c7/arf/arf-c7-20260429_030948/train_20260429_030948.log b/timecost/c7/arf/arf-c7-20260429_030948/train_20260429_030948.log new file mode 100644 index 0000000000000000000000000000000000000000..d2465360e17472280cb92a92b76b7ed4434e39bc --- /dev/null +++ b/timecost/c7/arf/arf-c7-20260429_030948/train_20260429_030948.log @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:872a5d80f7aabdecef7e9cb7ef3d751219c9b6a70b1427bda23e39a521d5012c +size 497 diff --git a/timecost/c7/arf/arf-c7-20260429_031427/_arf_generate.py b/timecost/c7/arf/arf-c7-20260429_031427/_arf_generate.py new file mode 100644 index 0000000000000000000000000000000000000000..8079ff32c83c3e892dbf0f99fbb2097efb1dc824 --- /dev/null +++ b/timecost/c7/arf/arf-c7-20260429_031427/_arf_generate.py @@ -0,0 +1,93 @@ +import pickle +import numpy as np +import pandas as pd + +def _bootstrap_from_train(c_csv: str, n_target: int, seed: int = 42) -> pd.DataFrame: + """当 arfpy.forge 完全不可用时,从训练 CSV 有放回抽样,保证行数与列对齐。""" + src = pd.read_csv(c_csv, encoding="utf-8-sig", low_memory=False) + src = src.replace([np.inf, -np.inf], np.nan).dropna(axis=1, how="all") + src = src.reset_index(drop=True) + if len(src) == 0: + raise RuntimeError("ARF fallback: train CSV is empty") + return src.sample(n=n_target, replace=True, random_state=seed).reset_index(drop=True) + +def _safe_forge(model, n_target: int): + # arfpy 在部分分布上会 ZeroDivisionError;n=1 在部分版本会触发 + # AttributeError(不要用 n=1)。失败返回 None,由外层走 bootstrap。 + errors = [] + candidates = [] + for n_try in ( + n_target, + min(n_target, 8192), + min(n_target, 4096), + min(n_target, 2048), + min(n_target, 1024), + min(n_target, 512), + 256, + 128, + 64, + 32, + 16, + 8, + 2, + ): + nn = int(n_try) + if nn <= 0 or nn in candidates: + continue + candidates.append(nn) + for n_try in candidates: + try: + out = model.forge(n=n_try).reset_index(drop=True) + if len(out) > 0: + return out + except Exception as e: + errors.append(f"n={n_try}: {type(e).__name__}: {e}") + print("[ARF] forge failed after retries; last errors:", " | ".join(errors[-4:])) + return None + +n_target = int(10368) +c_csv = "/work/output-Benchmark-trainonly-v1/c7/arf/arf-c7-20260429_031427/staged/public/train.csv" +with open("/work/output-Benchmark-trainonly-v1/c7/arf/arf-c7-20260429_031427/arf_model.pkl", "rb") as f: + model = pickle.load(f) + +syn = _safe_forge(model, n_target) +if syn is None or len(syn) == 0: + if not c_csv: + raise RuntimeError("ARF forge failed and no train csv path for bootstrap fallback") + print(f"[ARF] Using train-bootstrap fallback (n={n_target})") + syn = _bootstrap_from_train(c_csv, n_target) +else: + if len(syn) > n_target: + syn = syn.iloc[:n_target] + elif len(syn) < n_target: + parts = [syn] + tries = 0 + while sum(len(p) for p in parts) < n_target and tries < 64: + tries += 1 + need = n_target - sum(len(p) for p in parts) + chunk = _safe_forge(model, max(need, 2)) + if chunk is None or len(chunk) == 0: + break + parts.append(chunk) + syn = pd.concat(parts, ignore_index=True).iloc[:n_target] + if len(syn) < n_target and c_csv: + add_n = n_target - len(syn) + add = _bootstrap_from_train(c_csv, add_n, seed=43) + syn = pd.concat([syn, add], ignore_index=True).iloc[:n_target] + +_ds_id = 'c7' +if _ds_id == "c19": + # 仅 c19:object 列内裸换行会使 pivot 用 csv.reader 统计到的「记录数」大于 DataFrame 行数 → Sw。 + for _col in syn.columns: + if syn[_col].dtype == object: + syn[_col] = ( + syn[_col] + .astype(str) + .str.replace("\r\n", " ", regex=False) + .str.replace("\n", " ", regex=False) + .str.replace("\r", " ", regex=False) + ) + syn = syn.iloc[:n_target].reset_index(drop=True) + +syn.to_csv("/work/output-Benchmark-trainonly-v1/c7/arf/arf-c7-20260429_031427/arf-c7-10368-20260429_031508.csv", index=False) +print(f"[ARF] Generated {len(syn)} rows (requested {n_target}) -> /work/output-Benchmark-trainonly-v1/c7/arf/arf-c7-20260429_031427/arf-c7-10368-20260429_031508.csv") diff --git a/timecost/c7/arf/arf-c7-20260429_031427/_arf_train.py b/timecost/c7/arf/arf-c7-20260429_031427/_arf_train.py new file mode 100644 index 0000000000000000000000000000000000000000..c859b5bcb717b5d63f72a4bf258a26c51e41bb22 --- /dev/null +++ b/timecost/c7/arf/arf-c7-20260429_031427/_arf_train.py @@ -0,0 +1,37 @@ +import pickle +import numpy as np +import pandas as pd +from arfpy import arf + +def _sanitize_for_arf(df: pd.DataFrame) -> pd.DataFrame: + """缓解 forge 阶段 scipy.stats.truncnorm / 除零:处理 inf、NaN 与极端尾部。""" + df = df.replace([np.inf, -np.inf], np.nan) + df = df.dropna(axis=1, how="all") + for col in df.select_dtypes(include=[np.number]).columns: + med = df[col].median() + if pd.isna(med): + med = 0.0 + df[col] = df[col].fillna(med) + nu = int(df[col].nunique(dropna=True)) + if nu <= 1: + continue + lo, hi = df[col].quantile(0.001), df[col].quantile(0.999) + if pd.notna(lo) and pd.notna(hi) and lo < hi: + df[col] = df[col].clip(lo, hi) + return df + +df = pd.read_csv("/work/output-Benchmark-trainonly-v1/c7/arf/arf-c7-20260429_031427/staged/public/train.csv") +df = _sanitize_for_arf(df) +print(f"[ARF] Training on {len(df)} rows, {len(df.columns)} cols") + +model = arf.arf(x=df) +if hasattr(model, "fit"): + model.fit() +elif hasattr(model, "forde"): + model.forde() +else: + raise RuntimeError("arfpy API: no fit() / forde()") + +with open("/work/output-Benchmark-trainonly-v1/c7/arf/arf-c7-20260429_031427/arf_model.pkl", "wb") as f: + pickle.dump(model, f) +print(f"[ARF] Model saved -> /work/output-Benchmark-trainonly-v1/c7/arf/arf-c7-20260429_031427/arf_model.pkl") diff --git a/timecost/c7/arf/arf-c7-20260429_031427/arf-c7-10368-20260429_031508.csv b/timecost/c7/arf/arf-c7-20260429_031427/arf-c7-10368-20260429_031508.csv new file mode 100644 index 0000000000000000000000000000000000000000..d0f07209c63b168554fcbb27516022809dc43a56 --- /dev/null +++ b/timecost/c7/arf/arf-c7-20260429_031427/arf-c7-10368-20260429_031508.csv @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:a3134ad72093b490836b740edcce2a9f1b54af146b5b634edecb40bedc58f5f3 +size 847327 diff --git a/timecost/c7/arf/arf-c7-20260429_031427/arf_model.pkl b/timecost/c7/arf/arf-c7-20260429_031427/arf_model.pkl new file mode 100644 index 0000000000000000000000000000000000000000..f0b3d05774b8a2a35970664377cfb70749cbbe05 --- /dev/null +++ b/timecost/c7/arf/arf-c7-20260429_031427/arf_model.pkl @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:b090af3e7010af1dc06c6e8a03175ca70bb9bb84f3d2eca7127e57bc0ecb7ebc +size 44391799 diff --git a/timecost/c7/arf/arf-c7-20260429_031427/gen_20260429_031508.log b/timecost/c7/arf/arf-c7-20260429_031427/gen_20260429_031508.log new file mode 100644 index 0000000000000000000000000000000000000000..f0f58ab28c73e36160cf8b30c4324cecb3c1960b --- /dev/null +++ b/timecost/c7/arf/arf-c7-20260429_031427/gen_20260429_031508.log @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:2768b1d2fb4bd05c8f06205fd11c0fab338aa3aa9156048dc145708e6ffca906 +size 3251 diff --git a/timecost/c7/arf/arf-c7-20260429_031427/input_snapshot.json b/timecost/c7/arf/arf-c7-20260429_031427/input_snapshot.json new file mode 100644 index 0000000000000000000000000000000000000000..f1ae1af8b683e62a8986562037668d2d1c4d2cbf --- /dev/null +++ b/timecost/c7/arf/arf-c7-20260429_031427/input_snapshot.json @@ -0,0 +1,36 @@ +{ + "dataset_id": "c7", + "model": "arf", + "inputs": { + "train_csv": { + "path": "/data/jialinzhang/SynthesizePipeline-server/DatasetNew/c7/c7-train.csv", + "exists": true, + "size": 857718, + "sha256": "0ec97b49cecfd452f07551a63db7b812b5998a1e37101eae82255d00aa6a6243" + }, + "val_csv": { + "path": "/data/jialinzhang/SynthesizePipeline-server/DatasetNew/c7/c7-val.csv", + "exists": true, + "size": 107489, + "sha256": "4501bb2be19f7e13b7ff5e9dedd74e3dd42f2cafc8cefd5435bda61fc974a769" + }, + "test_csv": { + "path": "/data/jialinzhang/SynthesizePipeline-server/DatasetNew/c7/c7-test.csv", + "exists": true, + "size": 107327, + "sha256": "f9e808033a07feabb980addcf8c5f75111189ac2fb70993b8ad0f5ca3d5cfbae" + }, + "profile_json": { + "path": "/data/jialinzhang/SynthesizePipeline-server/DatasetNew/artifacts/data_core/tabular/c7/c7-dataset_profile.json", + "exists": true, + "size": 4014, + "sha256": "60424c615b91a26cf02d9bc1d7f91caa0ceb95bab39eb7cff6f9edea3ca0600e" + }, + "contract_json": { + "path": "/data/jialinzhang/SynthesizePipeline-server/DatasetNew/artifacts/data_core/tabular/c7/c7-dataset_contract_v1.json", + "exists": true, + "size": 4759, + "sha256": "79a434a1e2553b14b9f2e98c1adfc32a71aaa0d6cd49234f3f8a5603efca4ebd" + } + } +} \ No newline at end of file diff --git a/timecost/c7/arf/arf-c7-20260429_031427/public_gate/normalized_schema_snapshot.json b/timecost/c7/arf/arf-c7-20260429_031427/public_gate/normalized_schema_snapshot.json new file mode 100644 index 0000000000000000000000000000000000000000..3ea4859ec2aa245a19531b254f45d87237c23069 --- /dev/null +++ b/timecost/c7/arf/arf-c7-20260429_031427/public_gate/normalized_schema_snapshot.json @@ -0,0 +1,183 @@ +{ + "dataset_id": "c7", + "target_column": "class", + "task_type": "classification", + "columns": [ + { + "name": "parents", + "role": "feature", + "semantic_type": "categorical", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 3, + "unique_ratio": 0.000289, + "example_values": [ + "usual", + "pretentious", + "great_pret" + ] + } + }, + { + "name": "has_nurs", + "role": "feature", + "semantic_type": "categorical", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 5, + "unique_ratio": 0.000482, + "example_values": [ + "very_crit", + "critical", + "improper", + "less_proper", + "proper" + ] + } + }, + { + "name": "form", + "role": "feature", + "semantic_type": "categorical", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 4, + "unique_ratio": 0.000386, + "example_values": [ + "complete", + "completed", + "incomplete", + "foster" + ] + } + }, + { + "name": "children", + "role": "feature", + "semantic_type": "categorical", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 4, + "unique_ratio": 0.000386, + "example_values": [ + "1", + "3", + "2", + "more" + ] + } + }, + { + "name": "housing", + "role": "feature", + "semantic_type": "categorical", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 3, + "unique_ratio": 0.000289, + "example_values": [ + "less_conv", + "convenient", + "critical" + ] + } + }, + { + "name": "finance", + "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.000193, + "example_values": [ + "convenient", + "inconv" + ] + } + }, + { + "name": "social", + "role": "feature", + "semantic_type": "categorical", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 3, + "unique_ratio": 0.000289, + "example_values": [ + "slightly_prob", + "nonprob", + "problematic" + ] + } + }, + { + "name": "health", + "role": "feature", + "semantic_type": "categorical", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 3, + "unique_ratio": 0.000289, + "example_values": [ + "recommended", + "priority", + "not_recom" + ] + } + }, + { + "name": "class", + "role": "target", + "semantic_type": "categorical", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 5, + "unique_ratio": 0.000482, + "example_values": [ + "priority", + "spec_prior", + "not_recom", + "very_recom", + "recommend" + ] + } + } + ] +} \ No newline at end of file diff --git a/timecost/c7/arf/arf-c7-20260429_031427/public_gate/public_gate_report.json b/timecost/c7/arf/arf-c7-20260429_031427/public_gate/public_gate_report.json new file mode 100644 index 0000000000000000000000000000000000000000..3328fe59cd490a424e50f931e9eedba9e81d1cec --- /dev/null +++ b/timecost/c7/arf/arf-c7-20260429_031427/public_gate/public_gate_report.json @@ -0,0 +1,37 @@ +{ + "dataset_id": "c7", + "status": "pass", + "checks": [ + { + "check_id": "PG001_csv_parse_ok", + "status": "pass" + }, + { + "check_id": "PG002_split_header_consistent", + "status": "pass" + }, + { + "check_id": "PG003_profile_header_match", + "status": "pass" + }, + { + "check_id": "PG004_missing_token_normalized", + "status": "pass" + }, + { + "check_id": "PG005_semantic_type_validated", + "status": "pass" + }, + { + "check_id": "PG006_target_defined_and_valid", + "status": "pass" + } + ], + "target_column": "class", + "task_type": "classification", + "input_splits": { + "train": "/data/jialinzhang/SynthesizePipeline-server/DatasetNew/c7/c7-train.csv", + "val": "/data/jialinzhang/SynthesizePipeline-server/DatasetNew/c7/c7-val.csv", + "test": "/data/jialinzhang/SynthesizePipeline-server/DatasetNew/c7/c7-test.csv" + } +} \ No newline at end of file diff --git a/timecost/c7/arf/arf-c7-20260429_031427/public_gate/staged_input_manifest.json b/timecost/c7/arf/arf-c7-20260429_031427/public_gate/staged_input_manifest.json new file mode 100644 index 0000000000000000000000000000000000000000..df1866933f8b7c40d7c77b7bf0cbba209ee2440e --- /dev/null +++ b/timecost/c7/arf/arf-c7-20260429_031427/public_gate/staged_input_manifest.json @@ -0,0 +1,188 @@ +{ + "dataset_id": "c7", + "target_column": "class", + "task_type": "classification", + "train_csv": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/c7/arf/arf-c7-20260429_031427/staged/public/train.csv", + "val_csv": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/c7/arf/arf-c7-20260429_031427/staged/public/val.csv", + "test_csv": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/c7/arf/arf-c7-20260429_031427/staged/public/test.csv", + "features_json": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/c7/arf/arf-c7-20260429_031427/staged/public/staged_features.json", + "public_gate_report": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/c7/arf/arf-c7-20260429_031427/public_gate/public_gate_report.json", + "column_schema": [ + { + "name": "parents", + "role": "feature", + "semantic_type": "categorical", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 3, + "unique_ratio": 0.000289, + "example_values": [ + "usual", + "pretentious", + "great_pret" + ] + } + }, + { + "name": "has_nurs", + "role": "feature", + "semantic_type": "categorical", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 5, + "unique_ratio": 0.000482, + "example_values": [ + "very_crit", + "critical", + "improper", + "less_proper", + "proper" + ] + } + }, + { + "name": "form", + "role": "feature", + "semantic_type": "categorical", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 4, + "unique_ratio": 0.000386, + "example_values": [ + "complete", + "completed", + "incomplete", + "foster" + ] + } + }, + { + "name": "children", + "role": "feature", + "semantic_type": "categorical", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 4, + "unique_ratio": 0.000386, + "example_values": [ + "1", + "3", + "2", + "more" + ] + } + }, + { + "name": "housing", + "role": "feature", + "semantic_type": "categorical", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 3, + "unique_ratio": 0.000289, + "example_values": [ + "less_conv", + "convenient", + "critical" + ] + } + }, + { + "name": "finance", + "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.000193, + "example_values": [ + "convenient", + "inconv" + ] + } + }, + { + "name": "social", + "role": "feature", + "semantic_type": "categorical", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 3, + "unique_ratio": 0.000289, + "example_values": [ + "slightly_prob", + "nonprob", + "problematic" + ] + } + }, + { + "name": "health", + "role": "feature", + "semantic_type": "categorical", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 3, + "unique_ratio": 0.000289, + "example_values": [ + "recommended", + "priority", + "not_recom" + ] + } + }, + { + "name": "class", + "role": "target", + "semantic_type": "categorical", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 5, + "unique_ratio": 0.000482, + "example_values": [ + "priority", + "spec_prior", + "not_recom", + "very_recom", + "recommend" + ] + } + } + ] +} \ No newline at end of file diff --git a/timecost/c7/arf/arf-c7-20260429_031427/runtime_result.json b/timecost/c7/arf/arf-c7-20260429_031427/runtime_result.json new file mode 100644 index 0000000000000000000000000000000000000000..7fd0aa517559af04f9f6143cf52296c666249364 --- /dev/null +++ b/timecost/c7/arf/arf-c7-20260429_031427/runtime_result.json @@ -0,0 +1,15 @@ +{ + "dataset_id": "c7", + "model": "arf", + "run_id": "arf-c7-20260429_031427", + "public_gate_status": "pass", + "adapter_ready_status": "pass", + "train_status": "success", + "generate_status": "success", + "reason_code": null, + "reason_detail": null, + "artifacts": { + "synthetic_csv": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/c7/arf/arf-c7-20260429_031427/arf-c7-10368-20260429_031508.csv", + "model_path": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/c7/arf/arf-c7-20260429_031427/arf_model.pkl" + } +} \ No newline at end of file diff --git a/timecost/c7/arf/arf-c7-20260429_031427/staged/arf/adapter_report.json b/timecost/c7/arf/arf-c7-20260429_031427/staged/arf/adapter_report.json new file mode 100644 index 0000000000000000000000000000000000000000..3eefd15ddbd34c1475f204a69edda1786692e452 --- /dev/null +++ b/timecost/c7/arf/arf-c7-20260429_031427/staged/arf/adapter_report.json @@ -0,0 +1,7 @@ +{ + "adapter_ready_status": "pass", + "adapter_fail_reason_code": null, + "adapter_fail_detail": null, + "adapter_transforms_applied": [], + "model_input_manifest": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/c7/arf/arf-c7-20260429_031427/staged/arf/model_input_manifest.json" +} \ No newline at end of file diff --git a/timecost/c7/arf/arf-c7-20260429_031427/staged/arf/adapter_transforms_applied.json b/timecost/c7/arf/arf-c7-20260429_031427/staged/arf/adapter_transforms_applied.json new file mode 100644 index 0000000000000000000000000000000000000000..0637a088a01e8ddab3bf3fa98dbe804cbde1a0dc --- /dev/null +++ b/timecost/c7/arf/arf-c7-20260429_031427/staged/arf/adapter_transforms_applied.json @@ -0,0 +1 @@ +[] \ No newline at end of file diff --git a/timecost/c7/arf/arf-c7-20260429_031427/staged/arf/model_input_manifest.json b/timecost/c7/arf/arf-c7-20260429_031427/staged/arf/model_input_manifest.json new file mode 100644 index 0000000000000000000000000000000000000000..b38798668da3f8e6d341a771d620d6b72dc08a1d --- /dev/null +++ b/timecost/c7/arf/arf-c7-20260429_031427/staged/arf/model_input_manifest.json @@ -0,0 +1,190 @@ +{ + "dataset_id": "c7", + "model": "arf", + "target_column": "class", + "task_type": "classification", + "column_schema": [ + { + "name": "parents", + "role": "feature", + "semantic_type": "categorical", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 3, + "unique_ratio": 0.000289, + "example_values": [ + "usual", + "pretentious", + "great_pret" + ] + } + }, + { + "name": "has_nurs", + "role": "feature", + "semantic_type": "categorical", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 5, + "unique_ratio": 0.000482, + "example_values": [ + "very_crit", + "critical", + "improper", + "less_proper", + "proper" + ] + } + }, + { + "name": "form", + "role": "feature", + "semantic_type": "categorical", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 4, + "unique_ratio": 0.000386, + "example_values": [ + "complete", + "completed", + "incomplete", + "foster" + ] + } + }, + { + "name": "children", + "role": "feature", + "semantic_type": "categorical", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 4, + "unique_ratio": 0.000386, + "example_values": [ + "1", + "3", + "2", + "more" + ] + } + }, + { + "name": "housing", + "role": "feature", + "semantic_type": "categorical", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 3, + "unique_ratio": 0.000289, + "example_values": [ + "less_conv", + "convenient", + "critical" + ] + } + }, + { + "name": "finance", + "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.000193, + "example_values": [ + "convenient", + "inconv" + ] + } + }, + { + "name": "social", + "role": "feature", + "semantic_type": "categorical", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 3, + "unique_ratio": 0.000289, + "example_values": [ + "slightly_prob", + "nonprob", + "problematic" + ] + } + }, + { + "name": "health", + "role": "feature", + "semantic_type": "categorical", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 3, + "unique_ratio": 0.000289, + "example_values": [ + "recommended", + "priority", + "not_recom" + ] + } + }, + { + "name": "class", + "role": "target", + "semantic_type": "categorical", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 5, + "unique_ratio": 0.000482, + "example_values": [ + "priority", + "spec_prior", + "not_recom", + "very_recom", + "recommend" + ] + } + } + ], + "public_manifest": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/c7/arf/arf-c7-20260429_031427/public_gate/staged_input_manifest.json", + "train_csv": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/c7/arf/arf-c7-20260429_031427/staged/public/train.csv", + "val_csv": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/c7/arf/arf-c7-20260429_031427/staged/public/val.csv", + "test_csv": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/c7/arf/arf-c7-20260429_031427/staged/public/test.csv", + "features_json": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/c7/arf/arf-c7-20260429_031427/staged/public/staged_features.json", + "public_gate_report": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/c7/arf/arf-c7-20260429_031427/public_gate/public_gate_report.json" +} \ No newline at end of file diff --git a/timecost/c7/arf/arf-c7-20260429_031427/staged/public/staged_features.json b/timecost/c7/arf/arf-c7-20260429_031427/staged/public/staged_features.json new file mode 100644 index 0000000000000000000000000000000000000000..0e23df6bcfb7ecfd44dfefc3d0ca0bf6b6aebc60 --- /dev/null +++ b/timecost/c7/arf/arf-c7-20260429_031427/staged/public/staged_features.json @@ -0,0 +1,47 @@ +[ + { + "feature_name": "parents", + "data_type": "categorical", + "is_target": false + }, + { + "feature_name": "has_nurs", + "data_type": "categorical", + "is_target": false + }, + { + "feature_name": "form", + "data_type": "categorical", + "is_target": false + }, + { + "feature_name": "children", + "data_type": "categorical", + "is_target": false + }, + { + "feature_name": "housing", + "data_type": "categorical", + "is_target": false + }, + { + "feature_name": "finance", + "data_type": "categorical", + "is_target": false + }, + { + "feature_name": "social", + "data_type": "categorical", + "is_target": false + }, + { + "feature_name": "health", + "data_type": "categorical", + "is_target": false + }, + { + "feature_name": "class", + "data_type": "categorical", + "is_target": true + } +] \ No newline at end of file diff --git a/timecost/c7/arf/arf-c7-20260429_031427/staged/public/test.csv b/timecost/c7/arf/arf-c7-20260429_031427/staged/public/test.csv new file mode 100644 index 0000000000000000000000000000000000000000..cb9d7081ca745e9eed28a35168872d450c4a2a44 --- /dev/null +++ b/timecost/c7/arf/arf-c7-20260429_031427/staged/public/test.csv @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:2042076337d5c37c6476e6bca2bd33cb5a171450c27894534ef50ac223256058 +size 106030 diff --git a/timecost/c7/arf/arf-c7-20260429_031427/staged/public/train.csv b/timecost/c7/arf/arf-c7-20260429_031427/staged/public/train.csv new file mode 100644 index 0000000000000000000000000000000000000000..4c8e5e0c5031fc7e8e25213132c1231950ec29da --- /dev/null +++ b/timecost/c7/arf/arf-c7-20260429_031427/staged/public/train.csv @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:b37f6b2ef5257f40bd826ac956749881f0f474362bdb56e8c5728ad629242e3a +size 847349 diff --git a/timecost/c7/arf/arf-c7-20260429_031427/staged/public/val.csv b/timecost/c7/arf/arf-c7-20260429_031427/staged/public/val.csv new file mode 100644 index 0000000000000000000000000000000000000000..55792963756b1ae35b4d79dee11881372962b8d5 --- /dev/null +++ b/timecost/c7/arf/arf-c7-20260429_031427/staged/public/val.csv @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:eff6dec27c3740661a1ae84dea391d690dfb60342bfd5d7527b903fdd6009780 +size 106192 diff --git a/timecost/c7/arf/arf-c7-20260429_031427/train_20260429_031427.log b/timecost/c7/arf/arf-c7-20260429_031427/train_20260429_031427.log new file mode 100644 index 0000000000000000000000000000000000000000..cc12ff77f3f7d475e2e8be7055e3000dfcb8b2db --- /dev/null +++ b/timecost/c7/arf/arf-c7-20260429_031427/train_20260429_031427.log @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:f0d935bc8eb8e8cd8f3afd6a152d66de11e20ed7cf990d2a7166afae26cb856e +size 496 diff --git a/timecost/c7/bayesnet/bayesnet-c7-20260429_031038/_bayesnet_generate.py b/timecost/c7/bayesnet/bayesnet-c7-20260429_031038/_bayesnet_generate.py new file mode 100644 index 0000000000000000000000000000000000000000..78641417cc9d3360992d592f1855feaa882ce648 --- /dev/null +++ b/timecost/c7/bayesnet/bayesnet-c7-20260429_031038/_bayesnet_generate.py @@ -0,0 +1,105 @@ + +import pickle +import subprocess +import sys +import warnings + +import numpy as np +import pandas as pd +from pgmpy.sampling import BayesianModelSampling + +warnings.filterwarnings("ignore", category=FutureWarning) + +def _ensure_cloudpickle(): + try: + import cloudpickle # noqa: F401 + except ModuleNotFoundError: + subprocess.check_call( + [sys.executable, "-m", "pip", "install", "--quiet", "cloudpickle"], + ) + +_ensure_cloudpickle() + +with open("/work/output-Benchmark-trainonly-v1/c7/bayesnet/bayesnet-c7-20260429_031038/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(10368) +sampler = BayesianModelSampling(network) +raw = sampler.forward_sample(size=num_rows, show_progress=False) +raw = raw.reset_index(drop=True) +if len(raw) > num_rows: + raw = raw.iloc[:num_rows] +_tries = 0 +while len(raw) < num_rows and _tries < 64: + _tries += 1 + nextra = min(10000, num_rows - len(raw)) + more = sampler.forward_sample(size=max(nextra, 1), show_progress=False) + more = more.reset_index(drop=True) + if len(more) == 0: + break + raw = pd.concat([raw, more], ignore_index=True) + if len(raw) > num_rows: + raw = raw.iloc[:num_rows] + +out = pd.DataFrame(index=raw.index) +rng = np.random.default_rng() + +for c in cols: + if c in inverse["categorical"]: + levels = inverse["categorical"][c] + idx = raw[c].astype(int).to_numpy() + idx = np.clip(idx, 0, max(0, len(levels) - 1)) + out[c] = [levels[i] for i in idx] + else: + edges = np.asarray(inverse["continuous"][c], dtype=float) + if edges.size < 2: + out[c] = 0.0 + else: + nbin = edges.size - 1 + res = [] + for k in raw[c].astype(int).to_numpy(): + k = int(k) + if k < 0: + k = 0 + if k >= nbin: + k = nbin - 1 + lo, hi = float(edges[k]), float(edges[k + 1]) + if hi < lo: + lo, hi = hi, lo + v = rng.uniform(lo, hi) + if c in integer_columns: + v = int(round(v)) + res.append(v) + out[c] = res + +final = pd.DataFrame(index=out.index) +for c in full_order: + if c in const_cols: + final[c] = const_cols[c] + elif c in out.columns: + final[c] = out[c] + +dtypes = bundle.get("original_dtypes") or {} +for c, dts in dtypes.items(): + if c not in final.columns: + continue + try: + if "int" in dts: + final[c] = pd.to_numeric(final[c], errors="coerce").astype("Int64") + elif "float" in dts: + final[c] = pd.to_numeric(final[c], errors="coerce") + except Exception: + pass + +if len(final) != num_rows: + final = final.iloc[:num_rows].copy() +final = final.reset_index(drop=True) +final.to_csv("/work/output-Benchmark-trainonly-v1/c7/bayesnet/bayesnet-c7-20260429_031038/bayesnet-c7-10368-20260429_031053.csv", index=False) +print(f"[BayesNet] Generated {len(final)} rows (requested {num_rows}) -> /work/output-Benchmark-trainonly-v1/c7/bayesnet/bayesnet-c7-20260429_031038/bayesnet-c7-10368-20260429_031053.csv") diff --git a/timecost/c7/bayesnet/bayesnet-c7-20260429_031038/_bayesnet_train.py b/timecost/c7/bayesnet/bayesnet-c7-20260429_031038/_bayesnet_train.py new file mode 100644 index 0000000000000000000000000000000000000000..11a124de915aefe335a4cace17f610c3d2b370c2 --- /dev/null +++ b/timecost/c7/bayesnet/bayesnet-c7-20260429_031038/_bayesnet_train.py @@ -0,0 +1,133 @@ + +import json +import pickle +import subprocess +import sys +import warnings + +import numpy as np +import pandas as pd +from pgmpy.estimators import TreeSearch +from pgmpy.models import DiscreteBayesianNetwork +warnings.filterwarnings("ignore", category=FutureWarning) + +def _ensure_cloudpickle(): + try: + import cloudpickle # noqa: F401 + except ModuleNotFoundError: + subprocess.check_call( + [sys.executable, "-m", "pip", "install", "--quiet", "cloudpickle"], + ) + +_ensure_cloudpickle() + +with open("/work/output-Benchmark-trainonly-v1/c7/bayesnet/bayesnet-c7-20260429_031038/bayesnet_coltypes.json", "r", encoding="utf-8") as _f: + colmeta = json.load(_f) +integer_columns = set(colmeta.get("integer_columns") or []) + +df = pd.read_csv("/work/output-Benchmark-trainonly-v1/c7/bayesnet/bayesnet-c7-20260429_031038/staged/public/train.csv") +df = df.dropna(axis=1, how="all") +full_column_order = list(df.columns) + +const_cols = {} +for col in list(df.columns): + if df[col].nunique(dropna=True) <= 1: + const_cols[col] = df[col].iloc[0] if len(df) > 0 else None + df = df.drop(columns=[col]) + print(f"[BayesNet] Dropped zero-variance column '{col}'") + +const_path = "/work/output-Benchmark-trainonly-v1/c7/bayesnet/bayesnet-c7-20260429_031038/bayesnet_model.pkl".replace("bayesnet_model.pkl", "const_cols.json") +with open(const_path, "w", encoding="utf-8") as _f: + json.dump({k: str(v) for k, v in const_cols.items()}, _f) + +inverse = {"categorical": {}, "continuous": {}} +enc = pd.DataFrame(index=df.index) +_n_samples = len(df) +_n_plan = sum( + 1 for e in colmeta["columns"] if str(e.get("name", "")) in df.columns +) +max_bins = 10 +max_cat_levels = 256 +if _n_plan > 35 or _n_samples > 200000: + max_bins = 5 + max_cat_levels = 64 +if _n_plan > 55: + max_bins = 4 + max_cat_levels = 32 +print( + f"[BayesNet] max_bins={max_bins}, max_cat_levels={max_cat_levels} " + f"(cols_in_df={_n_plan}, rows={_n_samples})" +) + +for entry in colmeta["columns"]: + name = entry["name"] + if name not in df.columns: + continue + kind = entry["type"] + s = df[name] + if kind == "categorical": + s2 = s.astype(str).fillna("__NA__") + counts = s2.value_counts(dropna=False) + if len(counts) > max_cat_levels: + keep = set(counts.index[: max_cat_levels - 1].tolist()) + s2 = s2.map(lambda x: x if x in keep else "__OTHER__") + uniques = sorted(s2.dropna().unique(), key=lambda x: str(x)) + mapping = {str(v): i for i, v in enumerate(uniques)} + inverse["categorical"][name] = [uniques[i] for i in range(len(uniques))] + enc[name] = s2.map(lambda x, m=mapping: m.get(str(x), 0)).astype(int) + else: + s_num = pd.to_numeric(s, errors="coerce") + nu = int(s_num.nunique(dropna=True)) + q = min(max_bins, max(2, nu)) + if nu < 2: + enc[name] = np.zeros(len(s_num), dtype=int) + lo, hi = float(s_num.min()), float(s_num.max()) + inverse["continuous"][name] = [lo, hi] + else: + try: + _, bins = pd.qcut( + s_num, q=q, retbins=True, duplicates="drop" + ) + except Exception: + med = float(s_num.median()) + s2 = s_num.fillna(med) + _, bins = pd.qcut( + s2, q=min(q, 3), retbins=True, duplicates="drop" + ) + bins = np.asarray(bins, dtype=float) + lab = pd.cut( + s_num, bins=bins, labels=False, include_lowest=True + ) + enc[name] = lab.fillna(0).astype(int) + inverse["continuous"][name] = bins.tolist() + +print(f"[BayesNet] Training on {len(enc)} rows, {len(enc.columns)} cols (encoded)") + +enc_struct = enc +if len(enc) > 25000: + enc_struct = enc.sample(n=25000, random_state=0, replace=False) + print(f"[BayesNet] TreeSearch on {len(enc_struct)} rows (subsample; full n={len(enc)})") +dag = TreeSearch(enc_struct).estimate(show_progress=False) +for col in enc.columns: + if col not in dag.nodes(): + dag.add_node(col) + print(f"[BayesNet] Added isolated node to DAG: {col}") +network = DiscreteBayesianNetwork(dag) +enc_fit = enc +if len(enc) > 120000: + enc_fit = enc.sample(n=120000, random_state=1, replace=False) + print(f"[BayesNet] fit() on {len(enc_fit)} rows (full n={len(enc)})") +network.fit(enc_fit) + +bundle = { + "network": network, + "inverse": inverse, + "column_order": list(enc.columns), + "full_column_order": full_column_order, + "integer_columns": list(integer_columns), + "original_dtypes": {c: str(df[c].dtype) for c in enc.columns}, + "const_cols": const_cols, +} +with open("/work/output-Benchmark-trainonly-v1/c7/bayesnet/bayesnet-c7-20260429_031038/bayesnet_model.pkl", "wb") as _f: + pickle.dump(bundle, _f) +print(f"[BayesNet] Model saved -> /work/output-Benchmark-trainonly-v1/c7/bayesnet/bayesnet-c7-20260429_031038/bayesnet_model.pkl") diff --git a/timecost/c7/bayesnet/bayesnet-c7-20260429_031038/bayesnet-c7-10368-20260429_031053.csv b/timecost/c7/bayesnet/bayesnet-c7-20260429_031038/bayesnet-c7-10368-20260429_031053.csv new file mode 100644 index 0000000000000000000000000000000000000000..34e00fb879c4d92a49a889129b1578b2faa354dc --- /dev/null +++ b/timecost/c7/bayesnet/bayesnet-c7-20260429_031038/bayesnet-c7-10368-20260429_031053.csv @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:0ec483f732565f4c875574544cd638c236741ab73b64670c524b307e81d3762a +size 847720 diff --git a/timecost/c7/bayesnet/bayesnet-c7-20260429_031038/bayesnet_coltypes.json b/timecost/c7/bayesnet/bayesnet-c7-20260429_031038/bayesnet_coltypes.json new file mode 100644 index 0000000000000000000000000000000000000000..6408be4c6bd3187fdebffa9c5b618f974690b33d --- /dev/null +++ b/timecost/c7/bayesnet/bayesnet-c7-20260429_031038/bayesnet_coltypes.json @@ -0,0 +1,41 @@ +{ + "columns": [ + { + "name": "parents", + "type": "categorical" + }, + { + "name": "has_nurs", + "type": "categorical" + }, + { + "name": "form", + "type": "categorical" + }, + { + "name": "children", + "type": "categorical" + }, + { + "name": "housing", + "type": "categorical" + }, + { + "name": "finance", + "type": "categorical" + }, + { + "name": "social", + "type": "categorical" + }, + { + "name": "health", + "type": "categorical" + }, + { + "name": "class", + "type": "categorical" + } + ], + "integer_columns": [] +} \ No newline at end of file diff --git a/timecost/c7/bayesnet/bayesnet-c7-20260429_031038/bayesnet_model.pkl b/timecost/c7/bayesnet/bayesnet-c7-20260429_031038/bayesnet_model.pkl new file mode 100644 index 0000000000000000000000000000000000000000..291862b34113b529e8bf02f930bf59f1fe805dee --- /dev/null +++ b/timecost/c7/bayesnet/bayesnet-c7-20260429_031038/bayesnet_model.pkl @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:342563385d822291efea03ef34858a3fa7a9c37695d1d9aa761ad616bb14bd4f +size 5680 diff --git a/timecost/c7/bayesnet/bayesnet-c7-20260429_031038/const_cols.json b/timecost/c7/bayesnet/bayesnet-c7-20260429_031038/const_cols.json new file mode 100644 index 0000000000000000000000000000000000000000..9e26dfeeb6e641a33dae4961196235bdb965b21b --- /dev/null +++ b/timecost/c7/bayesnet/bayesnet-c7-20260429_031038/const_cols.json @@ -0,0 +1 @@ +{} \ No newline at end of file diff --git a/timecost/c7/bayesnet/bayesnet-c7-20260429_031038/gen_20260429_031053.log b/timecost/c7/bayesnet/bayesnet-c7-20260429_031038/gen_20260429_031053.log new file mode 100644 index 0000000000000000000000000000000000000000..dcd9e42a58b26f8bc5cdbd3e21bc7fa629bf9246 --- /dev/null +++ b/timecost/c7/bayesnet/bayesnet-c7-20260429_031038/gen_20260429_031053.log @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:e814c1f07c97634a205072c6af264b79105ca899b88cdfec9e2a14198170e22e +size 3664 diff --git a/timecost/c7/bayesnet/bayesnet-c7-20260429_031038/input_snapshot.json b/timecost/c7/bayesnet/bayesnet-c7-20260429_031038/input_snapshot.json new file mode 100644 index 0000000000000000000000000000000000000000..b61f053445c3620fe2db11628eda0f82572c1916 --- /dev/null +++ b/timecost/c7/bayesnet/bayesnet-c7-20260429_031038/input_snapshot.json @@ -0,0 +1,36 @@ +{ + "dataset_id": "c7", + "model": "bayesnet", + "inputs": { + "train_csv": { + "path": "/data/jialinzhang/SynthesizePipeline-server/DatasetNew/c7/c7-train.csv", + "exists": true, + "size": 857718, + "sha256": "0ec97b49cecfd452f07551a63db7b812b5998a1e37101eae82255d00aa6a6243" + }, + "val_csv": { + "path": "/data/jialinzhang/SynthesizePipeline-server/DatasetNew/c7/c7-val.csv", + "exists": true, + "size": 107489, + "sha256": "4501bb2be19f7e13b7ff5e9dedd74e3dd42f2cafc8cefd5435bda61fc974a769" + }, + "test_csv": { + "path": "/data/jialinzhang/SynthesizePipeline-server/DatasetNew/c7/c7-test.csv", + "exists": true, + "size": 107327, + "sha256": "f9e808033a07feabb980addcf8c5f75111189ac2fb70993b8ad0f5ca3d5cfbae" + }, + "profile_json": { + "path": "/data/jialinzhang/SynthesizePipeline-server/DatasetNew/artifacts/data_core/tabular/c7/c7-dataset_profile.json", + "exists": true, + "size": 4014, + "sha256": "60424c615b91a26cf02d9bc1d7f91caa0ceb95bab39eb7cff6f9edea3ca0600e" + }, + "contract_json": { + "path": "/data/jialinzhang/SynthesizePipeline-server/DatasetNew/artifacts/data_core/tabular/c7/c7-dataset_contract_v1.json", + "exists": true, + "size": 4759, + "sha256": "79a434a1e2553b14b9f2e98c1adfc32a71aaa0d6cd49234f3f8a5603efca4ebd" + } + } +} \ No newline at end of file diff --git a/timecost/c7/bayesnet/bayesnet-c7-20260429_031038/public_gate/normalized_schema_snapshot.json b/timecost/c7/bayesnet/bayesnet-c7-20260429_031038/public_gate/normalized_schema_snapshot.json new file mode 100644 index 0000000000000000000000000000000000000000..3ea4859ec2aa245a19531b254f45d87237c23069 --- /dev/null +++ b/timecost/c7/bayesnet/bayesnet-c7-20260429_031038/public_gate/normalized_schema_snapshot.json @@ -0,0 +1,183 @@ +{ + "dataset_id": "c7", + "target_column": "class", + "task_type": "classification", + "columns": [ + { + "name": "parents", + "role": "feature", + "semantic_type": "categorical", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 3, + "unique_ratio": 0.000289, + "example_values": [ + "usual", + "pretentious", + "great_pret" + ] + } + }, + { + "name": "has_nurs", + "role": "feature", + "semantic_type": "categorical", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 5, + "unique_ratio": 0.000482, + "example_values": [ + "very_crit", + "critical", + "improper", + "less_proper", + "proper" + ] + } + }, + { + "name": "form", + "role": "feature", + "semantic_type": "categorical", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 4, + "unique_ratio": 0.000386, + "example_values": [ + "complete", + "completed", + "incomplete", + "foster" + ] + } + }, + { + "name": "children", + "role": "feature", + "semantic_type": "categorical", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 4, + "unique_ratio": 0.000386, + "example_values": [ + "1", + "3", + "2", + "more" + ] + } + }, + { + "name": "housing", + "role": "feature", + "semantic_type": "categorical", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 3, + "unique_ratio": 0.000289, + "example_values": [ + "less_conv", + "convenient", + "critical" + ] + } + }, + { + "name": "finance", + "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.000193, + "example_values": [ + "convenient", + "inconv" + ] + } + }, + { + "name": "social", + "role": "feature", + "semantic_type": "categorical", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 3, + "unique_ratio": 0.000289, + "example_values": [ + "slightly_prob", + "nonprob", + "problematic" + ] + } + }, + { + "name": "health", + "role": "feature", + "semantic_type": "categorical", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 3, + "unique_ratio": 0.000289, + "example_values": [ + "recommended", + "priority", + "not_recom" + ] + } + }, + { + "name": "class", + "role": "target", + "semantic_type": "categorical", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 5, + "unique_ratio": 0.000482, + "example_values": [ + "priority", + "spec_prior", + "not_recom", + "very_recom", + "recommend" + ] + } + } + ] +} \ No newline at end of file diff --git a/timecost/c7/bayesnet/bayesnet-c7-20260429_031038/public_gate/public_gate_report.json b/timecost/c7/bayesnet/bayesnet-c7-20260429_031038/public_gate/public_gate_report.json new file mode 100644 index 0000000000000000000000000000000000000000..3328fe59cd490a424e50f931e9eedba9e81d1cec --- /dev/null +++ b/timecost/c7/bayesnet/bayesnet-c7-20260429_031038/public_gate/public_gate_report.json @@ -0,0 +1,37 @@ +{ + "dataset_id": "c7", + "status": "pass", + "checks": [ + { + "check_id": "PG001_csv_parse_ok", + "status": "pass" + }, + { + "check_id": "PG002_split_header_consistent", + "status": "pass" + }, + { + "check_id": "PG003_profile_header_match", + "status": "pass" + }, + { + "check_id": "PG004_missing_token_normalized", + "status": "pass" + }, + { + "check_id": "PG005_semantic_type_validated", + "status": "pass" + }, + { + "check_id": "PG006_target_defined_and_valid", + "status": "pass" + } + ], + "target_column": "class", + "task_type": "classification", + "input_splits": { + "train": "/data/jialinzhang/SynthesizePipeline-server/DatasetNew/c7/c7-train.csv", + "val": "/data/jialinzhang/SynthesizePipeline-server/DatasetNew/c7/c7-val.csv", + "test": "/data/jialinzhang/SynthesizePipeline-server/DatasetNew/c7/c7-test.csv" + } +} \ No newline at end of file diff --git a/timecost/c7/bayesnet/bayesnet-c7-20260429_031038/public_gate/staged_input_manifest.json b/timecost/c7/bayesnet/bayesnet-c7-20260429_031038/public_gate/staged_input_manifest.json new file mode 100644 index 0000000000000000000000000000000000000000..0ef05b3ebd82258da64060ecc3279e07189da65c --- /dev/null +++ b/timecost/c7/bayesnet/bayesnet-c7-20260429_031038/public_gate/staged_input_manifest.json @@ -0,0 +1,188 @@ +{ + "dataset_id": "c7", + "target_column": "class", + "task_type": "classification", + "train_csv": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/c7/bayesnet/bayesnet-c7-20260429_031038/staged/public/train.csv", + "val_csv": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/c7/bayesnet/bayesnet-c7-20260429_031038/staged/public/val.csv", + "test_csv": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/c7/bayesnet/bayesnet-c7-20260429_031038/staged/public/test.csv", + "features_json": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/c7/bayesnet/bayesnet-c7-20260429_031038/staged/public/staged_features.json", + "public_gate_report": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/c7/bayesnet/bayesnet-c7-20260429_031038/public_gate/public_gate_report.json", + "column_schema": [ + { + "name": "parents", + "role": "feature", + "semantic_type": "categorical", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 3, + "unique_ratio": 0.000289, + "example_values": [ + "usual", + "pretentious", + "great_pret" + ] + } + }, + { + "name": "has_nurs", + "role": "feature", + "semantic_type": "categorical", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 5, + "unique_ratio": 0.000482, + "example_values": [ + "very_crit", + "critical", + "improper", + "less_proper", + "proper" + ] + } + }, + { + "name": "form", + "role": "feature", + "semantic_type": "categorical", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 4, + "unique_ratio": 0.000386, + "example_values": [ + "complete", + "completed", + "incomplete", + "foster" + ] + } + }, + { + "name": "children", + "role": "feature", + "semantic_type": "categorical", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 4, + "unique_ratio": 0.000386, + "example_values": [ + "1", + "3", + "2", + "more" + ] + } + }, + { + "name": "housing", + "role": "feature", + "semantic_type": "categorical", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 3, + "unique_ratio": 0.000289, + "example_values": [ + "less_conv", + "convenient", + "critical" + ] + } + }, + { + "name": "finance", + "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.000193, + "example_values": [ + "convenient", + "inconv" + ] + } + }, + { + "name": "social", + "role": "feature", + "semantic_type": "categorical", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 3, + "unique_ratio": 0.000289, + "example_values": [ + "slightly_prob", + "nonprob", + "problematic" + ] + } + }, + { + "name": "health", + "role": "feature", + "semantic_type": "categorical", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 3, + "unique_ratio": 0.000289, + "example_values": [ + "recommended", + "priority", + "not_recom" + ] + } + }, + { + "name": "class", + "role": "target", + "semantic_type": "categorical", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 5, + "unique_ratio": 0.000482, + "example_values": [ + "priority", + "spec_prior", + "not_recom", + "very_recom", + "recommend" + ] + } + } + ] +} \ No newline at end of file diff --git a/timecost/c7/bayesnet/bayesnet-c7-20260429_031038/runtime_result.json b/timecost/c7/bayesnet/bayesnet-c7-20260429_031038/runtime_result.json new file mode 100644 index 0000000000000000000000000000000000000000..c369594a356ca32f064e35b2fd9ed05e466c3052 --- /dev/null +++ b/timecost/c7/bayesnet/bayesnet-c7-20260429_031038/runtime_result.json @@ -0,0 +1,15 @@ +{ + "dataset_id": "c7", + "model": "bayesnet", + "run_id": "bayesnet-c7-20260429_031038", + "public_gate_status": "pass", + "adapter_ready_status": "pass", + "train_status": "success", + "generate_status": "success", + "reason_code": null, + "reason_detail": null, + "artifacts": { + "synthetic_csv": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/c7/bayesnet/bayesnet-c7-20260429_031038/bayesnet-c7-10368-20260429_031053.csv", + "model_path": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/c7/bayesnet/bayesnet-c7-20260429_031038/bayesnet_model.pkl" + } +} \ No newline at end of file diff --git a/timecost/c7/bayesnet/bayesnet-c7-20260429_031038/staged/bayesnet/adapter_report.json b/timecost/c7/bayesnet/bayesnet-c7-20260429_031038/staged/bayesnet/adapter_report.json new file mode 100644 index 0000000000000000000000000000000000000000..016e858453ec6fa11ff4a414a437af8f21aea850 --- /dev/null +++ b/timecost/c7/bayesnet/bayesnet-c7-20260429_031038/staged/bayesnet/adapter_report.json @@ -0,0 +1,7 @@ +{ + "adapter_ready_status": "pass", + "adapter_fail_reason_code": null, + "adapter_fail_detail": null, + "adapter_transforms_applied": [], + "model_input_manifest": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/c7/bayesnet/bayesnet-c7-20260429_031038/staged/bayesnet/model_input_manifest.json" +} \ No newline at end of file diff --git a/timecost/c7/bayesnet/bayesnet-c7-20260429_031038/staged/bayesnet/adapter_transforms_applied.json b/timecost/c7/bayesnet/bayesnet-c7-20260429_031038/staged/bayesnet/adapter_transforms_applied.json new file mode 100644 index 0000000000000000000000000000000000000000..0637a088a01e8ddab3bf3fa98dbe804cbde1a0dc --- /dev/null +++ b/timecost/c7/bayesnet/bayesnet-c7-20260429_031038/staged/bayesnet/adapter_transforms_applied.json @@ -0,0 +1 @@ +[] \ No newline at end of file diff --git a/timecost/c7/bayesnet/bayesnet-c7-20260429_031038/staged/bayesnet/model_input_manifest.json b/timecost/c7/bayesnet/bayesnet-c7-20260429_031038/staged/bayesnet/model_input_manifest.json new file mode 100644 index 0000000000000000000000000000000000000000..8971de78ffd1c4f28e69ac1bf8ea4100ca873fb8 --- /dev/null +++ b/timecost/c7/bayesnet/bayesnet-c7-20260429_031038/staged/bayesnet/model_input_manifest.json @@ -0,0 +1,190 @@ +{ + "dataset_id": "c7", + "model": "bayesnet", + "target_column": "class", + "task_type": "classification", + "column_schema": [ + { + "name": "parents", + "role": "feature", + "semantic_type": "categorical", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 3, + "unique_ratio": 0.000289, + "example_values": [ + "usual", + "pretentious", + "great_pret" + ] + } + }, + { + "name": "has_nurs", + "role": "feature", + "semantic_type": "categorical", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 5, + "unique_ratio": 0.000482, + "example_values": [ + "very_crit", + "critical", + "improper", + "less_proper", + "proper" + ] + } + }, + { + "name": "form", + "role": "feature", + "semantic_type": "categorical", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 4, + "unique_ratio": 0.000386, + "example_values": [ + "complete", + "completed", + "incomplete", + "foster" + ] + } + }, + { + "name": "children", + "role": "feature", + "semantic_type": "categorical", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 4, + "unique_ratio": 0.000386, + "example_values": [ + "1", + "3", + "2", + "more" + ] + } + }, + { + "name": "housing", + "role": "feature", + "semantic_type": "categorical", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 3, + "unique_ratio": 0.000289, + "example_values": [ + "less_conv", + "convenient", + "critical" + ] + } + }, + { + "name": "finance", + "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.000193, + "example_values": [ + "convenient", + "inconv" + ] + } + }, + { + "name": "social", + "role": "feature", + "semantic_type": "categorical", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 3, + "unique_ratio": 0.000289, + "example_values": [ + "slightly_prob", + "nonprob", + "problematic" + ] + } + }, + { + "name": "health", + "role": "feature", + "semantic_type": "categorical", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 3, + "unique_ratio": 0.000289, + "example_values": [ + "recommended", + "priority", + "not_recom" + ] + } + }, + { + "name": "class", + "role": "target", + "semantic_type": "categorical", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 5, + "unique_ratio": 0.000482, + "example_values": [ + "priority", + "spec_prior", + "not_recom", + "very_recom", + "recommend" + ] + } + } + ], + "public_manifest": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/c7/bayesnet/bayesnet-c7-20260429_031038/public_gate/staged_input_manifest.json", + "train_csv": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/c7/bayesnet/bayesnet-c7-20260429_031038/staged/public/train.csv", + "val_csv": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/c7/bayesnet/bayesnet-c7-20260429_031038/staged/public/val.csv", + "test_csv": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/c7/bayesnet/bayesnet-c7-20260429_031038/staged/public/test.csv", + "features_json": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/c7/bayesnet/bayesnet-c7-20260429_031038/staged/public/staged_features.json", + "public_gate_report": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/c7/bayesnet/bayesnet-c7-20260429_031038/public_gate/public_gate_report.json" +} \ No newline at end of file diff --git a/timecost/c7/bayesnet/bayesnet-c7-20260429_031038/staged/public/staged_features.json b/timecost/c7/bayesnet/bayesnet-c7-20260429_031038/staged/public/staged_features.json new file mode 100644 index 0000000000000000000000000000000000000000..0e23df6bcfb7ecfd44dfefc3d0ca0bf6b6aebc60 --- /dev/null +++ b/timecost/c7/bayesnet/bayesnet-c7-20260429_031038/staged/public/staged_features.json @@ -0,0 +1,47 @@ +[ + { + "feature_name": "parents", + "data_type": "categorical", + "is_target": false + }, + { + "feature_name": "has_nurs", + "data_type": "categorical", + "is_target": false + }, + { + "feature_name": "form", + "data_type": "categorical", + "is_target": false + }, + { + "feature_name": "children", + "data_type": "categorical", + "is_target": false + }, + { + "feature_name": "housing", + "data_type": "categorical", + "is_target": false + }, + { + "feature_name": "finance", + "data_type": "categorical", + "is_target": false + }, + { + "feature_name": "social", + "data_type": "categorical", + "is_target": false + }, + { + "feature_name": "health", + "data_type": "categorical", + "is_target": false + }, + { + "feature_name": "class", + "data_type": "categorical", + "is_target": true + } +] \ No newline at end of file diff --git a/timecost/c7/bayesnet/bayesnet-c7-20260429_031038/staged/public/test.csv b/timecost/c7/bayesnet/bayesnet-c7-20260429_031038/staged/public/test.csv new file mode 100644 index 0000000000000000000000000000000000000000..cb9d7081ca745e9eed28a35168872d450c4a2a44 --- /dev/null +++ b/timecost/c7/bayesnet/bayesnet-c7-20260429_031038/staged/public/test.csv @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:2042076337d5c37c6476e6bca2bd33cb5a171450c27894534ef50ac223256058 +size 106030 diff --git a/timecost/c7/bayesnet/bayesnet-c7-20260429_031038/staged/public/train.csv b/timecost/c7/bayesnet/bayesnet-c7-20260429_031038/staged/public/train.csv new file mode 100644 index 0000000000000000000000000000000000000000..4c8e5e0c5031fc7e8e25213132c1231950ec29da --- /dev/null +++ b/timecost/c7/bayesnet/bayesnet-c7-20260429_031038/staged/public/train.csv @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:b37f6b2ef5257f40bd826ac956749881f0f474362bdb56e8c5728ad629242e3a +size 847349 diff --git a/timecost/c7/bayesnet/bayesnet-c7-20260429_031038/staged/public/val.csv b/timecost/c7/bayesnet/bayesnet-c7-20260429_031038/staged/public/val.csv new file mode 100644 index 0000000000000000000000000000000000000000..55792963756b1ae35b4d79dee11881372962b8d5 --- /dev/null +++ b/timecost/c7/bayesnet/bayesnet-c7-20260429_031038/staged/public/val.csv @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:eff6dec27c3740661a1ae84dea391d690dfb60342bfd5d7527b903fdd6009780 +size 106192 diff --git a/timecost/c7/bayesnet/bayesnet-c7-20260429_031038/train_20260429_031038.log b/timecost/c7/bayesnet/bayesnet-c7-20260429_031038/train_20260429_031038.log new file mode 100644 index 0000000000000000000000000000000000000000..9104255c0a1b829752d5d6a5b2aff7a04598814b --- /dev/null +++ b/timecost/c7/bayesnet/bayesnet-c7-20260429_031038/train_20260429_031038.log @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:4111c669d5532e874b7f7b68b102dfe387746d6756cffa5d3ad8d7cb0ea7f147 +size 3741 diff --git a/timecost/c7/bayesnet/bayesnet-c7-20260429_031537/_bayesnet_generate.py b/timecost/c7/bayesnet/bayesnet-c7-20260429_031537/_bayesnet_generate.py new file mode 100644 index 0000000000000000000000000000000000000000..2f68468ec9c3fb4110422420ec5c9dc1886f8c18 --- /dev/null +++ b/timecost/c7/bayesnet/bayesnet-c7-20260429_031537/_bayesnet_generate.py @@ -0,0 +1,105 @@ + +import pickle +import subprocess +import sys +import warnings + +import numpy as np +import pandas as pd +from pgmpy.sampling import BayesianModelSampling + +warnings.filterwarnings("ignore", category=FutureWarning) + +def _ensure_cloudpickle(): + try: + import cloudpickle # noqa: F401 + except ModuleNotFoundError: + subprocess.check_call( + [sys.executable, "-m", "pip", "install", "--quiet", "cloudpickle"], + ) + +_ensure_cloudpickle() + +with open("/work/output-Benchmark-trainonly-v1/c7/bayesnet/bayesnet-c7-20260429_031537/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(10368) +sampler = BayesianModelSampling(network) +raw = sampler.forward_sample(size=num_rows, show_progress=False) +raw = raw.reset_index(drop=True) +if len(raw) > num_rows: + raw = raw.iloc[:num_rows] +_tries = 0 +while len(raw) < num_rows and _tries < 64: + _tries += 1 + nextra = min(10000, num_rows - len(raw)) + more = sampler.forward_sample(size=max(nextra, 1), show_progress=False) + more = more.reset_index(drop=True) + if len(more) == 0: + break + raw = pd.concat([raw, more], ignore_index=True) + if len(raw) > num_rows: + raw = raw.iloc[:num_rows] + +out = pd.DataFrame(index=raw.index) +rng = np.random.default_rng() + +for c in cols: + if c in inverse["categorical"]: + levels = inverse["categorical"][c] + idx = raw[c].astype(int).to_numpy() + idx = np.clip(idx, 0, max(0, len(levels) - 1)) + out[c] = [levels[i] for i in idx] + else: + edges = np.asarray(inverse["continuous"][c], dtype=float) + if edges.size < 2: + out[c] = 0.0 + else: + nbin = edges.size - 1 + res = [] + for k in raw[c].astype(int).to_numpy(): + k = int(k) + if k < 0: + k = 0 + if k >= nbin: + k = nbin - 1 + lo, hi = float(edges[k]), float(edges[k + 1]) + if hi < lo: + lo, hi = hi, lo + v = rng.uniform(lo, hi) + if c in integer_columns: + v = int(round(v)) + res.append(v) + out[c] = res + +final = pd.DataFrame(index=out.index) +for c in full_order: + if c in const_cols: + final[c] = const_cols[c] + elif c in out.columns: + final[c] = out[c] + +dtypes = bundle.get("original_dtypes") or {} +for c, dts in dtypes.items(): + if c not in final.columns: + continue + try: + if "int" in dts: + final[c] = pd.to_numeric(final[c], errors="coerce").astype("Int64") + elif "float" in dts: + final[c] = pd.to_numeric(final[c], errors="coerce") + except Exception: + pass + +if len(final) != num_rows: + final = final.iloc[:num_rows].copy() +final = final.reset_index(drop=True) +final.to_csv("/work/output-Benchmark-trainonly-v1/c7/bayesnet/bayesnet-c7-20260429_031537/bayesnet-c7-10368-20260429_031608.csv", index=False) +print(f"[BayesNet] Generated {len(final)} rows (requested {num_rows}) -> /work/output-Benchmark-trainonly-v1/c7/bayesnet/bayesnet-c7-20260429_031537/bayesnet-c7-10368-20260429_031608.csv") diff --git a/timecost/c7/bayesnet/bayesnet-c7-20260429_031537/_bayesnet_train.py b/timecost/c7/bayesnet/bayesnet-c7-20260429_031537/_bayesnet_train.py new file mode 100644 index 0000000000000000000000000000000000000000..4b564a2f8e858b3932ee00b96d13a5fd46926031 --- /dev/null +++ b/timecost/c7/bayesnet/bayesnet-c7-20260429_031537/_bayesnet_train.py @@ -0,0 +1,133 @@ + +import json +import pickle +import subprocess +import sys +import warnings + +import numpy as np +import pandas as pd +from pgmpy.estimators import TreeSearch +from pgmpy.models import DiscreteBayesianNetwork +warnings.filterwarnings("ignore", category=FutureWarning) + +def _ensure_cloudpickle(): + try: + import cloudpickle # noqa: F401 + except ModuleNotFoundError: + subprocess.check_call( + [sys.executable, "-m", "pip", "install", "--quiet", "cloudpickle"], + ) + +_ensure_cloudpickle() + +with open("/work/output-Benchmark-trainonly-v1/c7/bayesnet/bayesnet-c7-20260429_031537/bayesnet_coltypes.json", "r", encoding="utf-8") as _f: + colmeta = json.load(_f) +integer_columns = set(colmeta.get("integer_columns") or []) + +df = pd.read_csv("/work/output-Benchmark-trainonly-v1/c7/bayesnet/bayesnet-c7-20260429_031537/staged/public/train.csv") +df = df.dropna(axis=1, how="all") +full_column_order = list(df.columns) + +const_cols = {} +for col in list(df.columns): + if df[col].nunique(dropna=True) <= 1: + const_cols[col] = df[col].iloc[0] if len(df) > 0 else None + df = df.drop(columns=[col]) + print(f"[BayesNet] Dropped zero-variance column '{col}'") + +const_path = "/work/output-Benchmark-trainonly-v1/c7/bayesnet/bayesnet-c7-20260429_031537/bayesnet_model.pkl".replace("bayesnet_model.pkl", "const_cols.json") +with open(const_path, "w", encoding="utf-8") as _f: + json.dump({k: str(v) for k, v in const_cols.items()}, _f) + +inverse = {"categorical": {}, "continuous": {}} +enc = pd.DataFrame(index=df.index) +_n_samples = len(df) +_n_plan = sum( + 1 for e in colmeta["columns"] if str(e.get("name", "")) in df.columns +) +max_bins = 10 +max_cat_levels = 256 +if _n_plan > 35 or _n_samples > 200000: + max_bins = 5 + max_cat_levels = 64 +if _n_plan > 55: + max_bins = 4 + max_cat_levels = 32 +print( + f"[BayesNet] max_bins={max_bins}, max_cat_levels={max_cat_levels} " + f"(cols_in_df={_n_plan}, rows={_n_samples})" +) + +for entry in colmeta["columns"]: + name = entry["name"] + if name not in df.columns: + continue + kind = entry["type"] + s = df[name] + if kind == "categorical": + s2 = s.astype(str).fillna("__NA__") + counts = s2.value_counts(dropna=False) + if len(counts) > max_cat_levels: + keep = set(counts.index[: max_cat_levels - 1].tolist()) + s2 = s2.map(lambda x: x if x in keep else "__OTHER__") + uniques = sorted(s2.dropna().unique(), key=lambda x: str(x)) + mapping = {str(v): i for i, v in enumerate(uniques)} + inverse["categorical"][name] = [uniques[i] for i in range(len(uniques))] + enc[name] = s2.map(lambda x, m=mapping: m.get(str(x), 0)).astype(int) + else: + s_num = pd.to_numeric(s, errors="coerce") + nu = int(s_num.nunique(dropna=True)) + q = min(max_bins, max(2, nu)) + if nu < 2: + enc[name] = np.zeros(len(s_num), dtype=int) + lo, hi = float(s_num.min()), float(s_num.max()) + inverse["continuous"][name] = [lo, hi] + else: + try: + _, bins = pd.qcut( + s_num, q=q, retbins=True, duplicates="drop" + ) + except Exception: + med = float(s_num.median()) + s2 = s_num.fillna(med) + _, bins = pd.qcut( + s2, q=min(q, 3), retbins=True, duplicates="drop" + ) + bins = np.asarray(bins, dtype=float) + lab = pd.cut( + s_num, bins=bins, labels=False, include_lowest=True + ) + enc[name] = lab.fillna(0).astype(int) + inverse["continuous"][name] = bins.tolist() + +print(f"[BayesNet] Training on {len(enc)} rows, {len(enc.columns)} cols (encoded)") + +enc_struct = enc +if len(enc) > 25000: + enc_struct = enc.sample(n=25000, random_state=0, replace=False) + print(f"[BayesNet] TreeSearch on {len(enc_struct)} rows (subsample; full n={len(enc)})") +dag = TreeSearch(enc_struct).estimate(show_progress=False) +for col in enc.columns: + if col not in dag.nodes(): + dag.add_node(col) + print(f"[BayesNet] Added isolated node to DAG: {col}") +network = DiscreteBayesianNetwork(dag) +enc_fit = enc +if len(enc) > 120000: + enc_fit = enc.sample(n=120000, random_state=1, replace=False) + print(f"[BayesNet] fit() on {len(enc_fit)} rows (full n={len(enc)})") +network.fit(enc_fit) + +bundle = { + "network": network, + "inverse": inverse, + "column_order": list(enc.columns), + "full_column_order": full_column_order, + "integer_columns": list(integer_columns), + "original_dtypes": {c: str(df[c].dtype) for c in enc.columns}, + "const_cols": const_cols, +} +with open("/work/output-Benchmark-trainonly-v1/c7/bayesnet/bayesnet-c7-20260429_031537/bayesnet_model.pkl", "wb") as _f: + pickle.dump(bundle, _f) +print(f"[BayesNet] Model saved -> /work/output-Benchmark-trainonly-v1/c7/bayesnet/bayesnet-c7-20260429_031537/bayesnet_model.pkl") diff --git a/timecost/c7/bayesnet/bayesnet-c7-20260429_031537/bayesnet-c7-10368-20260429_031608.csv b/timecost/c7/bayesnet/bayesnet-c7-20260429_031537/bayesnet-c7-10368-20260429_031608.csv new file mode 100644 index 0000000000000000000000000000000000000000..524cf9d802c20f757784f989c1f23f22ff5f9f48 --- /dev/null +++ b/timecost/c7/bayesnet/bayesnet-c7-20260429_031537/bayesnet-c7-10368-20260429_031608.csv @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:39ab8a39e164ff03b6176d8e2ecb2cd4bcaad07a36ece74636a690a5b5fc0128 +size 848576 diff --git a/timecost/c7/bayesnet/bayesnet-c7-20260429_031537/bayesnet_coltypes.json b/timecost/c7/bayesnet/bayesnet-c7-20260429_031537/bayesnet_coltypes.json new file mode 100644 index 0000000000000000000000000000000000000000..6408be4c6bd3187fdebffa9c5b618f974690b33d --- /dev/null +++ b/timecost/c7/bayesnet/bayesnet-c7-20260429_031537/bayesnet_coltypes.json @@ -0,0 +1,41 @@ +{ + "columns": [ + { + "name": "parents", + "type": "categorical" + }, + { + "name": "has_nurs", + "type": "categorical" + }, + { + "name": "form", + "type": "categorical" + }, + { + "name": "children", + "type": "categorical" + }, + { + "name": "housing", + "type": "categorical" + }, + { + "name": "finance", + "type": "categorical" + }, + { + "name": "social", + "type": "categorical" + }, + { + "name": "health", + "type": "categorical" + }, + { + "name": "class", + "type": "categorical" + } + ], + "integer_columns": [] +} \ No newline at end of file diff --git a/timecost/c7/bayesnet/bayesnet-c7-20260429_031537/bayesnet_model.pkl b/timecost/c7/bayesnet/bayesnet-c7-20260429_031537/bayesnet_model.pkl new file mode 100644 index 0000000000000000000000000000000000000000..291862b34113b529e8bf02f930bf59f1fe805dee --- /dev/null +++ b/timecost/c7/bayesnet/bayesnet-c7-20260429_031537/bayesnet_model.pkl @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:342563385d822291efea03ef34858a3fa7a9c37695d1d9aa761ad616bb14bd4f +size 5680 diff --git a/timecost/c7/bayesnet/bayesnet-c7-20260429_031537/const_cols.json b/timecost/c7/bayesnet/bayesnet-c7-20260429_031537/const_cols.json new file mode 100644 index 0000000000000000000000000000000000000000..9e26dfeeb6e641a33dae4961196235bdb965b21b --- /dev/null +++ b/timecost/c7/bayesnet/bayesnet-c7-20260429_031537/const_cols.json @@ -0,0 +1 @@ +{} \ No newline at end of file diff --git a/timecost/c7/bayesnet/bayesnet-c7-20260429_031537/gen_20260429_031608.log b/timecost/c7/bayesnet/bayesnet-c7-20260429_031537/gen_20260429_031608.log new file mode 100644 index 0000000000000000000000000000000000000000..769d74dae5c7714ab4945767de4b0ca18029f370 --- /dev/null +++ b/timecost/c7/bayesnet/bayesnet-c7-20260429_031537/gen_20260429_031608.log @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:29ad479e9d4fb60e922c5012efa4a0a98dbd7d317e09898bbbf71679ac4fc146 +size 3664 diff --git a/timecost/c7/bayesnet/bayesnet-c7-20260429_031537/input_snapshot.json b/timecost/c7/bayesnet/bayesnet-c7-20260429_031537/input_snapshot.json new file mode 100644 index 0000000000000000000000000000000000000000..b61f053445c3620fe2db11628eda0f82572c1916 --- /dev/null +++ b/timecost/c7/bayesnet/bayesnet-c7-20260429_031537/input_snapshot.json @@ -0,0 +1,36 @@ +{ + "dataset_id": "c7", + "model": "bayesnet", + "inputs": { + "train_csv": { + "path": "/data/jialinzhang/SynthesizePipeline-server/DatasetNew/c7/c7-train.csv", + "exists": true, + "size": 857718, + "sha256": "0ec97b49cecfd452f07551a63db7b812b5998a1e37101eae82255d00aa6a6243" + }, + "val_csv": { + "path": "/data/jialinzhang/SynthesizePipeline-server/DatasetNew/c7/c7-val.csv", + "exists": true, + "size": 107489, + "sha256": "4501bb2be19f7e13b7ff5e9dedd74e3dd42f2cafc8cefd5435bda61fc974a769" + }, + "test_csv": { + "path": "/data/jialinzhang/SynthesizePipeline-server/DatasetNew/c7/c7-test.csv", + "exists": true, + "size": 107327, + "sha256": "f9e808033a07feabb980addcf8c5f75111189ac2fb70993b8ad0f5ca3d5cfbae" + }, + "profile_json": { + "path": "/data/jialinzhang/SynthesizePipeline-server/DatasetNew/artifacts/data_core/tabular/c7/c7-dataset_profile.json", + "exists": true, + "size": 4014, + "sha256": "60424c615b91a26cf02d9bc1d7f91caa0ceb95bab39eb7cff6f9edea3ca0600e" + }, + "contract_json": { + "path": "/data/jialinzhang/SynthesizePipeline-server/DatasetNew/artifacts/data_core/tabular/c7/c7-dataset_contract_v1.json", + "exists": true, + "size": 4759, + "sha256": "79a434a1e2553b14b9f2e98c1adfc32a71aaa0d6cd49234f3f8a5603efca4ebd" + } + } +} \ No newline at end of file diff --git a/timecost/c7/bayesnet/bayesnet-c7-20260429_031537/public_gate/normalized_schema_snapshot.json b/timecost/c7/bayesnet/bayesnet-c7-20260429_031537/public_gate/normalized_schema_snapshot.json new file mode 100644 index 0000000000000000000000000000000000000000..3ea4859ec2aa245a19531b254f45d87237c23069 --- /dev/null +++ b/timecost/c7/bayesnet/bayesnet-c7-20260429_031537/public_gate/normalized_schema_snapshot.json @@ -0,0 +1,183 @@ +{ + "dataset_id": "c7", + "target_column": "class", + "task_type": "classification", + "columns": [ + { + "name": "parents", + "role": "feature", + "semantic_type": "categorical", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 3, + "unique_ratio": 0.000289, + "example_values": [ + "usual", + "pretentious", + "great_pret" + ] + } + }, + { + "name": "has_nurs", + "role": "feature", + "semantic_type": "categorical", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 5, + "unique_ratio": 0.000482, + "example_values": [ + "very_crit", + "critical", + "improper", + "less_proper", + "proper" + ] + } + }, + { + "name": "form", + "role": "feature", + "semantic_type": "categorical", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 4, + "unique_ratio": 0.000386, + "example_values": [ + "complete", + "completed", + "incomplete", + "foster" + ] + } + }, + { + "name": "children", + "role": "feature", + "semantic_type": "categorical", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 4, + "unique_ratio": 0.000386, + "example_values": [ + "1", + "3", + "2", + "more" + ] + } + }, + { + "name": "housing", + "role": "feature", + "semantic_type": "categorical", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 3, + "unique_ratio": 0.000289, + "example_values": [ + "less_conv", + "convenient", + "critical" + ] + } + }, + { + "name": "finance", + "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.000193, + "example_values": [ + "convenient", + "inconv" + ] + } + }, + { + "name": "social", + "role": "feature", + "semantic_type": "categorical", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 3, + "unique_ratio": 0.000289, + "example_values": [ + "slightly_prob", + "nonprob", + "problematic" + ] + } + }, + { + "name": "health", + "role": "feature", + "semantic_type": "categorical", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 3, + "unique_ratio": 0.000289, + "example_values": [ + "recommended", + "priority", + "not_recom" + ] + } + }, + { + "name": "class", + "role": "target", + "semantic_type": "categorical", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 5, + "unique_ratio": 0.000482, + "example_values": [ + "priority", + "spec_prior", + "not_recom", + "very_recom", + "recommend" + ] + } + } + ] +} \ No newline at end of file diff --git a/timecost/c7/bayesnet/bayesnet-c7-20260429_031537/public_gate/public_gate_report.json b/timecost/c7/bayesnet/bayesnet-c7-20260429_031537/public_gate/public_gate_report.json new file mode 100644 index 0000000000000000000000000000000000000000..3328fe59cd490a424e50f931e9eedba9e81d1cec --- /dev/null +++ b/timecost/c7/bayesnet/bayesnet-c7-20260429_031537/public_gate/public_gate_report.json @@ -0,0 +1,37 @@ +{ + "dataset_id": "c7", + "status": "pass", + "checks": [ + { + "check_id": "PG001_csv_parse_ok", + "status": "pass" + }, + { + "check_id": "PG002_split_header_consistent", + "status": "pass" + }, + { + "check_id": "PG003_profile_header_match", + "status": "pass" + }, + { + "check_id": "PG004_missing_token_normalized", + "status": "pass" + }, + { + "check_id": "PG005_semantic_type_validated", + "status": "pass" + }, + { + "check_id": "PG006_target_defined_and_valid", + "status": "pass" + } + ], + "target_column": "class", + "task_type": "classification", + "input_splits": { + "train": "/data/jialinzhang/SynthesizePipeline-server/DatasetNew/c7/c7-train.csv", + "val": "/data/jialinzhang/SynthesizePipeline-server/DatasetNew/c7/c7-val.csv", + "test": "/data/jialinzhang/SynthesizePipeline-server/DatasetNew/c7/c7-test.csv" + } +} \ No newline at end of file diff --git a/timecost/c7/bayesnet/bayesnet-c7-20260429_031537/public_gate/staged_input_manifest.json b/timecost/c7/bayesnet/bayesnet-c7-20260429_031537/public_gate/staged_input_manifest.json new file mode 100644 index 0000000000000000000000000000000000000000..80c958d28ddeaeeb4e6d6d3e3a2bbaa0e488979d --- /dev/null +++ b/timecost/c7/bayesnet/bayesnet-c7-20260429_031537/public_gate/staged_input_manifest.json @@ -0,0 +1,188 @@ +{ + "dataset_id": "c7", + "target_column": "class", + "task_type": "classification", + "train_csv": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/c7/bayesnet/bayesnet-c7-20260429_031537/staged/public/train.csv", + "val_csv": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/c7/bayesnet/bayesnet-c7-20260429_031537/staged/public/val.csv", + "test_csv": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/c7/bayesnet/bayesnet-c7-20260429_031537/staged/public/test.csv", + "features_json": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/c7/bayesnet/bayesnet-c7-20260429_031537/staged/public/staged_features.json", + "public_gate_report": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/c7/bayesnet/bayesnet-c7-20260429_031537/public_gate/public_gate_report.json", + "column_schema": [ + { + "name": "parents", + "role": "feature", + "semantic_type": "categorical", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 3, + "unique_ratio": 0.000289, + "example_values": [ + "usual", + "pretentious", + "great_pret" + ] + } + }, + { + "name": "has_nurs", + "role": "feature", + "semantic_type": "categorical", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 5, + "unique_ratio": 0.000482, + "example_values": [ + "very_crit", + "critical", + "improper", + "less_proper", + "proper" + ] + } + }, + { + "name": "form", + "role": "feature", + "semantic_type": "categorical", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 4, + "unique_ratio": 0.000386, + "example_values": [ + "complete", + "completed", + "incomplete", + "foster" + ] + } + }, + { + "name": "children", + "role": "feature", + "semantic_type": "categorical", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 4, + "unique_ratio": 0.000386, + "example_values": [ + "1", + "3", + "2", + "more" + ] + } + }, + { + "name": "housing", + "role": "feature", + "semantic_type": "categorical", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 3, + "unique_ratio": 0.000289, + "example_values": [ + "less_conv", + "convenient", + "critical" + ] + } + }, + { + "name": "finance", + "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.000193, + "example_values": [ + "convenient", + "inconv" + ] + } + }, + { + "name": "social", + "role": "feature", + "semantic_type": "categorical", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 3, + "unique_ratio": 0.000289, + "example_values": [ + "slightly_prob", + "nonprob", + "problematic" + ] + } + }, + { + "name": "health", + "role": "feature", + "semantic_type": "categorical", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 3, + "unique_ratio": 0.000289, + "example_values": [ + "recommended", + "priority", + "not_recom" + ] + } + }, + { + "name": "class", + "role": "target", + "semantic_type": "categorical", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 5, + "unique_ratio": 0.000482, + "example_values": [ + "priority", + "spec_prior", + "not_recom", + "very_recom", + "recommend" + ] + } + } + ] +} \ No newline at end of file diff --git a/timecost/c7/bayesnet/bayesnet-c7-20260429_031537/runtime_result.json b/timecost/c7/bayesnet/bayesnet-c7-20260429_031537/runtime_result.json new file mode 100644 index 0000000000000000000000000000000000000000..8dff74eaa82d23969060956c35c4b590c3123652 --- /dev/null +++ b/timecost/c7/bayesnet/bayesnet-c7-20260429_031537/runtime_result.json @@ -0,0 +1,15 @@ +{ + "dataset_id": "c7", + "model": "bayesnet", + "run_id": "bayesnet-c7-20260429_031537", + "public_gate_status": "pass", + "adapter_ready_status": "pass", + "train_status": "success", + "generate_status": "success", + "reason_code": null, + "reason_detail": null, + "artifacts": { + "synthetic_csv": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/c7/bayesnet/bayesnet-c7-20260429_031537/bayesnet-c7-10368-20260429_031608.csv", + "model_path": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/c7/bayesnet/bayesnet-c7-20260429_031537/bayesnet_model.pkl" + } +} \ No newline at end of file diff --git a/timecost/c7/bayesnet/bayesnet-c7-20260429_031537/staged/bayesnet/adapter_report.json b/timecost/c7/bayesnet/bayesnet-c7-20260429_031537/staged/bayesnet/adapter_report.json new file mode 100644 index 0000000000000000000000000000000000000000..bb99555631b53b5961bafee3429625d6bcf8d4e4 --- /dev/null +++ b/timecost/c7/bayesnet/bayesnet-c7-20260429_031537/staged/bayesnet/adapter_report.json @@ -0,0 +1,7 @@ +{ + "adapter_ready_status": "pass", + "adapter_fail_reason_code": null, + "adapter_fail_detail": null, + "adapter_transforms_applied": [], + "model_input_manifest": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/c7/bayesnet/bayesnet-c7-20260429_031537/staged/bayesnet/model_input_manifest.json" +} \ No newline at end of file diff --git a/timecost/c7/bayesnet/bayesnet-c7-20260429_031537/staged/bayesnet/adapter_transforms_applied.json b/timecost/c7/bayesnet/bayesnet-c7-20260429_031537/staged/bayesnet/adapter_transforms_applied.json new file mode 100644 index 0000000000000000000000000000000000000000..0637a088a01e8ddab3bf3fa98dbe804cbde1a0dc --- /dev/null +++ b/timecost/c7/bayesnet/bayesnet-c7-20260429_031537/staged/bayesnet/adapter_transforms_applied.json @@ -0,0 +1 @@ +[] \ No newline at end of file diff --git a/timecost/c7/bayesnet/bayesnet-c7-20260429_031537/staged/bayesnet/model_input_manifest.json b/timecost/c7/bayesnet/bayesnet-c7-20260429_031537/staged/bayesnet/model_input_manifest.json new file mode 100644 index 0000000000000000000000000000000000000000..cc9e5b8d709ad50c0dd67d7fd5bccb38aff83173 --- /dev/null +++ b/timecost/c7/bayesnet/bayesnet-c7-20260429_031537/staged/bayesnet/model_input_manifest.json @@ -0,0 +1,190 @@ +{ + "dataset_id": "c7", + "model": "bayesnet", + "target_column": "class", + "task_type": "classification", + "column_schema": [ + { + "name": "parents", + "role": "feature", + "semantic_type": "categorical", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 3, + "unique_ratio": 0.000289, + "example_values": [ + "usual", + "pretentious", + "great_pret" + ] + } + }, + { + "name": "has_nurs", + "role": "feature", + "semantic_type": "categorical", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 5, + "unique_ratio": 0.000482, + "example_values": [ + "very_crit", + "critical", + "improper", + "less_proper", + "proper" + ] + } + }, + { + "name": "form", + "role": "feature", + "semantic_type": "categorical", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 4, + "unique_ratio": 0.000386, + "example_values": [ + "complete", + "completed", + "incomplete", + "foster" + ] + } + }, + { + "name": "children", + "role": "feature", + "semantic_type": "categorical", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 4, + "unique_ratio": 0.000386, + "example_values": [ + "1", + "3", + "2", + "more" + ] + } + }, + { + "name": "housing", + "role": "feature", + "semantic_type": "categorical", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 3, + "unique_ratio": 0.000289, + "example_values": [ + "less_conv", + "convenient", + "critical" + ] + } + }, + { + "name": "finance", + "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.000193, + "example_values": [ + "convenient", + "inconv" + ] + } + }, + { + "name": "social", + "role": "feature", + "semantic_type": "categorical", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 3, + "unique_ratio": 0.000289, + "example_values": [ + "slightly_prob", + "nonprob", + "problematic" + ] + } + }, + { + "name": "health", + "role": "feature", + "semantic_type": "categorical", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 3, + "unique_ratio": 0.000289, + "example_values": [ + "recommended", + "priority", + "not_recom" + ] + } + }, + { + "name": "class", + "role": "target", + "semantic_type": "categorical", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 5, + "unique_ratio": 0.000482, + "example_values": [ + "priority", + "spec_prior", + "not_recom", + "very_recom", + "recommend" + ] + } + } + ], + "public_manifest": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/c7/bayesnet/bayesnet-c7-20260429_031537/public_gate/staged_input_manifest.json", + "train_csv": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/c7/bayesnet/bayesnet-c7-20260429_031537/staged/public/train.csv", + "val_csv": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/c7/bayesnet/bayesnet-c7-20260429_031537/staged/public/val.csv", + "test_csv": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/c7/bayesnet/bayesnet-c7-20260429_031537/staged/public/test.csv", + "features_json": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/c7/bayesnet/bayesnet-c7-20260429_031537/staged/public/staged_features.json", + "public_gate_report": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/c7/bayesnet/bayesnet-c7-20260429_031537/public_gate/public_gate_report.json" +} \ No newline at end of file diff --git a/timecost/c7/bayesnet/bayesnet-c7-20260429_031537/staged/public/staged_features.json b/timecost/c7/bayesnet/bayesnet-c7-20260429_031537/staged/public/staged_features.json new file mode 100644 index 0000000000000000000000000000000000000000..0e23df6bcfb7ecfd44dfefc3d0ca0bf6b6aebc60 --- /dev/null +++ b/timecost/c7/bayesnet/bayesnet-c7-20260429_031537/staged/public/staged_features.json @@ -0,0 +1,47 @@ +[ + { + "feature_name": "parents", + "data_type": "categorical", + "is_target": false + }, + { + "feature_name": "has_nurs", + "data_type": "categorical", + "is_target": false + }, + { + "feature_name": "form", + "data_type": "categorical", + "is_target": false + }, + { + "feature_name": "children", + "data_type": "categorical", + "is_target": false + }, + { + "feature_name": "housing", + "data_type": "categorical", + "is_target": false + }, + { + "feature_name": "finance", + "data_type": "categorical", + "is_target": false + }, + { + "feature_name": "social", + "data_type": "categorical", + "is_target": false + }, + { + "feature_name": "health", + "data_type": "categorical", + "is_target": false + }, + { + "feature_name": "class", + "data_type": "categorical", + "is_target": true + } +] \ No newline at end of file diff --git a/timecost/c7/bayesnet/bayesnet-c7-20260429_031537/staged/public/test.csv b/timecost/c7/bayesnet/bayesnet-c7-20260429_031537/staged/public/test.csv new file mode 100644 index 0000000000000000000000000000000000000000..cb9d7081ca745e9eed28a35168872d450c4a2a44 --- /dev/null +++ b/timecost/c7/bayesnet/bayesnet-c7-20260429_031537/staged/public/test.csv @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:2042076337d5c37c6476e6bca2bd33cb5a171450c27894534ef50ac223256058 +size 106030 diff --git a/timecost/c7/bayesnet/bayesnet-c7-20260429_031537/staged/public/train.csv b/timecost/c7/bayesnet/bayesnet-c7-20260429_031537/staged/public/train.csv new file mode 100644 index 0000000000000000000000000000000000000000..4c8e5e0c5031fc7e8e25213132c1231950ec29da --- /dev/null +++ b/timecost/c7/bayesnet/bayesnet-c7-20260429_031537/staged/public/train.csv @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:b37f6b2ef5257f40bd826ac956749881f0f474362bdb56e8c5728ad629242e3a +size 847349 diff --git a/timecost/c7/bayesnet/bayesnet-c7-20260429_031537/staged/public/val.csv b/timecost/c7/bayesnet/bayesnet-c7-20260429_031537/staged/public/val.csv new file mode 100644 index 0000000000000000000000000000000000000000..55792963756b1ae35b4d79dee11881372962b8d5 --- /dev/null +++ b/timecost/c7/bayesnet/bayesnet-c7-20260429_031537/staged/public/val.csv @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:eff6dec27c3740661a1ae84dea391d690dfb60342bfd5d7527b903fdd6009780 +size 106192 diff --git a/timecost/c7/bayesnet/bayesnet-c7-20260429_031537/train_20260429_031537.log b/timecost/c7/bayesnet/bayesnet-c7-20260429_031537/train_20260429_031537.log new file mode 100644 index 0000000000000000000000000000000000000000..5bdc045b3f9046a909b43dabaf0f8a3f80061ee2 --- /dev/null +++ b/timecost/c7/bayesnet/bayesnet-c7-20260429_031537/train_20260429_031537.log @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:1788e94eba6e542f6afdf6c0054a1d521deae3fba20e72212282c5bd06f20d84 +size 3741 diff --git a/timecost/c7/ctgan/ctgan-c7-20260429_032054/_ctgan_generate.py b/timecost/c7/ctgan/ctgan-c7-20260429_032054/_ctgan_generate.py new file mode 100644 index 0000000000000000000000000000000000000000..07dcc9743b472953e91f3e07ecf5bba82a9e4e69 --- /dev/null +++ b/timecost/c7/ctgan/ctgan-c7-20260429_032054/_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-Benchmark-trainonly-v1/c7/ctgan/ctgan-c7-20260429_032054/models_300epochs/ctgan_300epochs.pt") +total = 10368 +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-Benchmark-trainonly-v1/c7/ctgan/ctgan-c7-20260429_032054/ctgan-c7-10368-20260429_032437.csv", index=False) +print("[CTGAN] Generated", total, "rows in", len(parts), "chunks ->", "/work/output-Benchmark-trainonly-v1/c7/ctgan/ctgan-c7-20260429_032054/ctgan-c7-10368-20260429_032437.csv") \ No newline at end of file diff --git a/timecost/c7/ctgan/ctgan-c7-20260429_032054/ctgan-c7-10368-20260429_032437.csv b/timecost/c7/ctgan/ctgan-c7-20260429_032054/ctgan-c7-10368-20260429_032437.csv new file mode 100644 index 0000000000000000000000000000000000000000..cf988bee2b95867429d9dbc730c1922a9bf65abc --- /dev/null +++ b/timecost/c7/ctgan/ctgan-c7-20260429_032054/ctgan-c7-10368-20260429_032437.csv @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:6292ae1576f8682712eb05a628de61384dab5cf211e620852f27aaea02e87599 +size 840588 diff --git a/timecost/c7/ctgan/ctgan-c7-20260429_032054/ctgan_metadata.json b/timecost/c7/ctgan/ctgan-c7-20260429_032054/ctgan_metadata.json new file mode 100644 index 0000000000000000000000000000000000000000..83f41ad233860beaed71ee8e4637e99ce522d64a --- /dev/null +++ b/timecost/c7/ctgan/ctgan-c7-20260429_032054/ctgan_metadata.json @@ -0,0 +1,40 @@ +{ + "columns": [ + { + "name": "parents", + "type": "categorical" + }, + { + "name": "has_nurs", + "type": "categorical" + }, + { + "name": "form", + "type": "categorical" + }, + { + "name": "children", + "type": "categorical" + }, + { + "name": "housing", + "type": "categorical" + }, + { + "name": "finance", + "type": "categorical" + }, + { + "name": "social", + "type": "categorical" + }, + { + "name": "health", + "type": "categorical" + }, + { + "name": "class", + "type": "categorical" + } + ] +} \ No newline at end of file diff --git a/timecost/c7/ctgan/ctgan-c7-20260429_032054/gen_20260429_032437.log b/timecost/c7/ctgan/ctgan-c7-20260429_032054/gen_20260429_032437.log new file mode 100644 index 0000000000000000000000000000000000000000..fce5186d026734b62295d4253fb1492d2bfb5d6f --- /dev/null +++ b/timecost/c7/ctgan/ctgan-c7-20260429_032054/gen_20260429_032437.log @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:f1d7b26ffe98c9c4f15c6f3f4fcf38ed6984c6577f5b8686141b8abea66e75a8 +size 563 diff --git a/timecost/c7/ctgan/ctgan-c7-20260429_032054/input_snapshot.json b/timecost/c7/ctgan/ctgan-c7-20260429_032054/input_snapshot.json new file mode 100644 index 0000000000000000000000000000000000000000..7f121e36aa5b57e68554114fd4795c6b6e40f143 --- /dev/null +++ b/timecost/c7/ctgan/ctgan-c7-20260429_032054/input_snapshot.json @@ -0,0 +1,36 @@ +{ + "dataset_id": "c7", + "model": "ctgan", + "inputs": { + "train_csv": { + "path": "/data/jialinzhang/SynthesizePipeline-server/DatasetNew/c7/c7-train.csv", + "exists": true, + "size": 857718, + "sha256": "0ec97b49cecfd452f07551a63db7b812b5998a1e37101eae82255d00aa6a6243" + }, + "val_csv": { + "path": "/data/jialinzhang/SynthesizePipeline-server/DatasetNew/c7/c7-val.csv", + "exists": true, + "size": 107489, + "sha256": "4501bb2be19f7e13b7ff5e9dedd74e3dd42f2cafc8cefd5435bda61fc974a769" + }, + "test_csv": { + "path": "/data/jialinzhang/SynthesizePipeline-server/DatasetNew/c7/c7-test.csv", + "exists": true, + "size": 107327, + "sha256": "f9e808033a07feabb980addcf8c5f75111189ac2fb70993b8ad0f5ca3d5cfbae" + }, + "profile_json": { + "path": "/data/jialinzhang/SynthesizePipeline-server/DatasetNew/artifacts/data_core/tabular/c7/c7-dataset_profile.json", + "exists": true, + "size": 4014, + "sha256": "60424c615b91a26cf02d9bc1d7f91caa0ceb95bab39eb7cff6f9edea3ca0600e" + }, + "contract_json": { + "path": "/data/jialinzhang/SynthesizePipeline-server/DatasetNew/artifacts/data_core/tabular/c7/c7-dataset_contract_v1.json", + "exists": true, + "size": 4759, + "sha256": "79a434a1e2553b14b9f2e98c1adfc32a71aaa0d6cd49234f3f8a5603efca4ebd" + } + } +} \ No newline at end of file diff --git a/timecost/c7/ctgan/ctgan-c7-20260429_032054/models_300epochs/ctgan_300epochs.pt b/timecost/c7/ctgan/ctgan-c7-20260429_032054/models_300epochs/ctgan_300epochs.pt new file mode 100644 index 0000000000000000000000000000000000000000..781fa466df5e3a50520c45aa00d33a937475bb15 --- /dev/null +++ b/timecost/c7/ctgan/ctgan-c7-20260429_032054/models_300epochs/ctgan_300epochs.pt @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:3a47a60b20791694378a281f78a743706e39736e244a1eab9e74ecda1c047290 +size 1720675 diff --git a/timecost/c7/ctgan/ctgan-c7-20260429_032054/models_300epochs/train_20260429_032054.log b/timecost/c7/ctgan/ctgan-c7-20260429_032054/models_300epochs/train_20260429_032054.log new file mode 100644 index 0000000000000000000000000000000000000000..499f48810a7bdebbe86e48a8bb854f4e60eadb91 --- /dev/null +++ b/timecost/c7/ctgan/ctgan-c7-20260429_032054/models_300epochs/train_20260429_032054.log @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:4f792127bbf2b816a8b9651c667011239008e28916d147130fc115dd27b3304c +size 2137 diff --git a/timecost/c7/ctgan/ctgan-c7-20260429_032054/public_gate/normalized_schema_snapshot.json b/timecost/c7/ctgan/ctgan-c7-20260429_032054/public_gate/normalized_schema_snapshot.json new file mode 100644 index 0000000000000000000000000000000000000000..3ea4859ec2aa245a19531b254f45d87237c23069 --- /dev/null +++ b/timecost/c7/ctgan/ctgan-c7-20260429_032054/public_gate/normalized_schema_snapshot.json @@ -0,0 +1,183 @@ +{ + "dataset_id": "c7", + "target_column": "class", + "task_type": "classification", + "columns": [ + { + "name": "parents", + "role": "feature", + "semantic_type": "categorical", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 3, + "unique_ratio": 0.000289, + "example_values": [ + "usual", + "pretentious", + "great_pret" + ] + } + }, + { + "name": "has_nurs", + "role": "feature", + "semantic_type": "categorical", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 5, + "unique_ratio": 0.000482, + "example_values": [ + "very_crit", + "critical", + "improper", + "less_proper", + "proper" + ] + } + }, + { + "name": "form", + "role": "feature", + "semantic_type": "categorical", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 4, + "unique_ratio": 0.000386, + "example_values": [ + "complete", + "completed", + "incomplete", + "foster" + ] + } + }, + { + "name": "children", + "role": "feature", + "semantic_type": "categorical", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 4, + "unique_ratio": 0.000386, + "example_values": [ + "1", + "3", + "2", + "more" + ] + } + }, + { + "name": "housing", + "role": "feature", + "semantic_type": "categorical", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 3, + "unique_ratio": 0.000289, + "example_values": [ + "less_conv", + "convenient", + "critical" + ] + } + }, + { + "name": "finance", + "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.000193, + "example_values": [ + "convenient", + "inconv" + ] + } + }, + { + "name": "social", + "role": "feature", + "semantic_type": "categorical", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 3, + "unique_ratio": 0.000289, + "example_values": [ + "slightly_prob", + "nonprob", + "problematic" + ] + } + }, + { + "name": "health", + "role": "feature", + "semantic_type": "categorical", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 3, + "unique_ratio": 0.000289, + "example_values": [ + "recommended", + "priority", + "not_recom" + ] + } + }, + { + "name": "class", + "role": "target", + "semantic_type": "categorical", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 5, + "unique_ratio": 0.000482, + "example_values": [ + "priority", + "spec_prior", + "not_recom", + "very_recom", + "recommend" + ] + } + } + ] +} \ No newline at end of file diff --git a/timecost/c7/ctgan/ctgan-c7-20260429_032054/public_gate/public_gate_report.json b/timecost/c7/ctgan/ctgan-c7-20260429_032054/public_gate/public_gate_report.json new file mode 100644 index 0000000000000000000000000000000000000000..3328fe59cd490a424e50f931e9eedba9e81d1cec --- /dev/null +++ b/timecost/c7/ctgan/ctgan-c7-20260429_032054/public_gate/public_gate_report.json @@ -0,0 +1,37 @@ +{ + "dataset_id": "c7", + "status": "pass", + "checks": [ + { + "check_id": "PG001_csv_parse_ok", + "status": "pass" + }, + { + "check_id": "PG002_split_header_consistent", + "status": "pass" + }, + { + "check_id": "PG003_profile_header_match", + "status": "pass" + }, + { + "check_id": "PG004_missing_token_normalized", + "status": "pass" + }, + { + "check_id": "PG005_semantic_type_validated", + "status": "pass" + }, + { + "check_id": "PG006_target_defined_and_valid", + "status": "pass" + } + ], + "target_column": "class", + "task_type": "classification", + "input_splits": { + "train": "/data/jialinzhang/SynthesizePipeline-server/DatasetNew/c7/c7-train.csv", + "val": "/data/jialinzhang/SynthesizePipeline-server/DatasetNew/c7/c7-val.csv", + "test": "/data/jialinzhang/SynthesizePipeline-server/DatasetNew/c7/c7-test.csv" + } +} \ No newline at end of file diff --git a/timecost/c7/ctgan/ctgan-c7-20260429_032054/public_gate/staged_input_manifest.json b/timecost/c7/ctgan/ctgan-c7-20260429_032054/public_gate/staged_input_manifest.json new file mode 100644 index 0000000000000000000000000000000000000000..43fc67deb419650a4887a1dd4befc660e50d5a38 --- /dev/null +++ b/timecost/c7/ctgan/ctgan-c7-20260429_032054/public_gate/staged_input_manifest.json @@ -0,0 +1,188 @@ +{ + "dataset_id": "c7", + "target_column": "class", + "task_type": "classification", + "train_csv": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/c7/ctgan/ctgan-c7-20260429_032054/staged/public/train.csv", + "val_csv": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/c7/ctgan/ctgan-c7-20260429_032054/staged/public/val.csv", + "test_csv": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/c7/ctgan/ctgan-c7-20260429_032054/staged/public/test.csv", + "features_json": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/c7/ctgan/ctgan-c7-20260429_032054/staged/public/staged_features.json", + "public_gate_report": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/c7/ctgan/ctgan-c7-20260429_032054/public_gate/public_gate_report.json", + "column_schema": [ + { + "name": "parents", + "role": "feature", + "semantic_type": "categorical", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 3, + "unique_ratio": 0.000289, + "example_values": [ + "usual", + "pretentious", + "great_pret" + ] + } + }, + { + "name": "has_nurs", + "role": "feature", + "semantic_type": "categorical", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 5, + "unique_ratio": 0.000482, + "example_values": [ + "very_crit", + "critical", + "improper", + "less_proper", + "proper" + ] + } + }, + { + "name": "form", + "role": "feature", + "semantic_type": "categorical", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 4, + "unique_ratio": 0.000386, + "example_values": [ + "complete", + "completed", + "incomplete", + "foster" + ] + } + }, + { + "name": "children", + "role": "feature", + "semantic_type": "categorical", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 4, + "unique_ratio": 0.000386, + "example_values": [ + "1", + "3", + "2", + "more" + ] + } + }, + { + "name": "housing", + "role": "feature", + "semantic_type": "categorical", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 3, + "unique_ratio": 0.000289, + "example_values": [ + "less_conv", + "convenient", + "critical" + ] + } + }, + { + "name": "finance", + "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.000193, + "example_values": [ + "convenient", + "inconv" + ] + } + }, + { + "name": "social", + "role": "feature", + "semantic_type": "categorical", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 3, + "unique_ratio": 0.000289, + "example_values": [ + "slightly_prob", + "nonprob", + "problematic" + ] + } + }, + { + "name": "health", + "role": "feature", + "semantic_type": "categorical", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 3, + "unique_ratio": 0.000289, + "example_values": [ + "recommended", + "priority", + "not_recom" + ] + } + }, + { + "name": "class", + "role": "target", + "semantic_type": "categorical", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 5, + "unique_ratio": 0.000482, + "example_values": [ + "priority", + "spec_prior", + "not_recom", + "very_recom", + "recommend" + ] + } + } + ] +} \ No newline at end of file diff --git a/timecost/c7/ctgan/ctgan-c7-20260429_032054/runtime_result.json b/timecost/c7/ctgan/ctgan-c7-20260429_032054/runtime_result.json new file mode 100644 index 0000000000000000000000000000000000000000..4c3164ec0de0618b4e93ba245a13645a0a1bf709 --- /dev/null +++ b/timecost/c7/ctgan/ctgan-c7-20260429_032054/runtime_result.json @@ -0,0 +1,15 @@ +{ + "dataset_id": "c7", + "model": "ctgan", + "run_id": "ctgan-c7-20260429_032054", + "public_gate_status": "pass", + "adapter_ready_status": "pass", + "train_status": "success", + "generate_status": "success", + "reason_code": null, + "reason_detail": null, + "artifacts": { + "synthetic_csv": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/c7/ctgan/ctgan-c7-20260429_032054/ctgan-c7-10368-20260429_032437.csv", + "model_path": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/c7/ctgan/ctgan-c7-20260429_032054/models_300epochs/ctgan_300epochs.pt" + } +} \ No newline at end of file diff --git a/timecost/c7/ctgan/ctgan-c7-20260429_032054/staged/ctgan/adapter_report.json b/timecost/c7/ctgan/ctgan-c7-20260429_032054/staged/ctgan/adapter_report.json new file mode 100644 index 0000000000000000000000000000000000000000..003ee3427cc830d7719f286a9fbd99b913a2273d --- /dev/null +++ b/timecost/c7/ctgan/ctgan-c7-20260429_032054/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-Benchmark-trainonly-v1/c7/ctgan/ctgan-c7-20260429_032054/staged/ctgan/model_input_manifest.json" +} \ No newline at end of file diff --git a/timecost/c7/ctgan/ctgan-c7-20260429_032054/staged/ctgan/adapter_transforms_applied.json b/timecost/c7/ctgan/ctgan-c7-20260429_032054/staged/ctgan/adapter_transforms_applied.json new file mode 100644 index 0000000000000000000000000000000000000000..0637a088a01e8ddab3bf3fa98dbe804cbde1a0dc --- /dev/null +++ b/timecost/c7/ctgan/ctgan-c7-20260429_032054/staged/ctgan/adapter_transforms_applied.json @@ -0,0 +1 @@ +[] \ No newline at end of file diff --git a/timecost/c7/ctgan/ctgan-c7-20260429_032054/staged/ctgan/model_input_manifest.json b/timecost/c7/ctgan/ctgan-c7-20260429_032054/staged/ctgan/model_input_manifest.json new file mode 100644 index 0000000000000000000000000000000000000000..faa34452a508e683536b48bace7db8669cf8033b --- /dev/null +++ b/timecost/c7/ctgan/ctgan-c7-20260429_032054/staged/ctgan/model_input_manifest.json @@ -0,0 +1,190 @@ +{ + "dataset_id": "c7", + "model": "ctgan", + "target_column": "class", + "task_type": "classification", + "column_schema": [ + { + "name": "parents", + "role": "feature", + "semantic_type": "categorical", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 3, + "unique_ratio": 0.000289, + "example_values": [ + "usual", + "pretentious", + "great_pret" + ] + } + }, + { + "name": "has_nurs", + "role": "feature", + "semantic_type": "categorical", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 5, + "unique_ratio": 0.000482, + "example_values": [ + "very_crit", + "critical", + "improper", + "less_proper", + "proper" + ] + } + }, + { + "name": "form", + "role": "feature", + "semantic_type": "categorical", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 4, + "unique_ratio": 0.000386, + "example_values": [ + "complete", + "completed", + "incomplete", + "foster" + ] + } + }, + { + "name": "children", + "role": "feature", + "semantic_type": "categorical", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 4, + "unique_ratio": 0.000386, + "example_values": [ + "1", + "3", + "2", + "more" + ] + } + }, + { + "name": "housing", + "role": "feature", + "semantic_type": "categorical", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 3, + "unique_ratio": 0.000289, + "example_values": [ + "less_conv", + "convenient", + "critical" + ] + } + }, + { + "name": "finance", + "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.000193, + "example_values": [ + "convenient", + "inconv" + ] + } + }, + { + "name": "social", + "role": "feature", + "semantic_type": "categorical", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 3, + "unique_ratio": 0.000289, + "example_values": [ + "slightly_prob", + "nonprob", + "problematic" + ] + } + }, + { + "name": "health", + "role": "feature", + "semantic_type": "categorical", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 3, + "unique_ratio": 0.000289, + "example_values": [ + "recommended", + "priority", + "not_recom" + ] + } + }, + { + "name": "class", + "role": "target", + "semantic_type": "categorical", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 5, + "unique_ratio": 0.000482, + "example_values": [ + "priority", + "spec_prior", + "not_recom", + "very_recom", + "recommend" + ] + } + } + ], + "public_manifest": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/c7/ctgan/ctgan-c7-20260429_032054/public_gate/staged_input_manifest.json", + "train_csv": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/c7/ctgan/ctgan-c7-20260429_032054/staged/public/train.csv", + "val_csv": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/c7/ctgan/ctgan-c7-20260429_032054/staged/public/val.csv", + "test_csv": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/c7/ctgan/ctgan-c7-20260429_032054/staged/public/test.csv", + "features_json": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/c7/ctgan/ctgan-c7-20260429_032054/staged/public/staged_features.json", + "public_gate_report": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/c7/ctgan/ctgan-c7-20260429_032054/public_gate/public_gate_report.json" +} \ No newline at end of file diff --git a/timecost/c7/ctgan/ctgan-c7-20260429_032054/staged/public/staged_features.json b/timecost/c7/ctgan/ctgan-c7-20260429_032054/staged/public/staged_features.json new file mode 100644 index 0000000000000000000000000000000000000000..0e23df6bcfb7ecfd44dfefc3d0ca0bf6b6aebc60 --- /dev/null +++ b/timecost/c7/ctgan/ctgan-c7-20260429_032054/staged/public/staged_features.json @@ -0,0 +1,47 @@ +[ + { + "feature_name": "parents", + "data_type": "categorical", + "is_target": false + }, + { + "feature_name": "has_nurs", + "data_type": "categorical", + "is_target": false + }, + { + "feature_name": "form", + "data_type": "categorical", + "is_target": false + }, + { + "feature_name": "children", + "data_type": "categorical", + "is_target": false + }, + { + "feature_name": "housing", + "data_type": "categorical", + "is_target": false + }, + { + "feature_name": "finance", + "data_type": "categorical", + "is_target": false + }, + { + "feature_name": "social", + "data_type": "categorical", + "is_target": false + }, + { + "feature_name": "health", + "data_type": "categorical", + "is_target": false + }, + { + "feature_name": "class", + "data_type": "categorical", + "is_target": true + } +] \ No newline at end of file diff --git a/timecost/c7/ctgan/ctgan-c7-20260429_032054/staged/public/test.csv b/timecost/c7/ctgan/ctgan-c7-20260429_032054/staged/public/test.csv new file mode 100644 index 0000000000000000000000000000000000000000..cb9d7081ca745e9eed28a35168872d450c4a2a44 --- /dev/null +++ b/timecost/c7/ctgan/ctgan-c7-20260429_032054/staged/public/test.csv @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:2042076337d5c37c6476e6bca2bd33cb5a171450c27894534ef50ac223256058 +size 106030 diff --git a/timecost/c7/ctgan/ctgan-c7-20260429_032054/staged/public/train.csv b/timecost/c7/ctgan/ctgan-c7-20260429_032054/staged/public/train.csv new file mode 100644 index 0000000000000000000000000000000000000000..4c8e5e0c5031fc7e8e25213132c1231950ec29da --- /dev/null +++ b/timecost/c7/ctgan/ctgan-c7-20260429_032054/staged/public/train.csv @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:b37f6b2ef5257f40bd826ac956749881f0f474362bdb56e8c5728ad629242e3a +size 847349 diff --git a/timecost/c7/ctgan/ctgan-c7-20260429_032054/staged/public/val.csv b/timecost/c7/ctgan/ctgan-c7-20260429_032054/staged/public/val.csv new file mode 100644 index 0000000000000000000000000000000000000000..55792963756b1ae35b4d79dee11881372962b8d5 --- /dev/null +++ b/timecost/c7/ctgan/ctgan-c7-20260429_032054/staged/public/val.csv @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:eff6dec27c3740661a1ae84dea391d690dfb60342bfd5d7527b903fdd6009780 +size 106192 diff --git a/timecost/c7/forestdiffusion/forest-c7-20260429_210000/_fd_X_host.npy b/timecost/c7/forestdiffusion/forest-c7-20260429_210000/_fd_X_host.npy new file mode 100644 index 0000000000000000000000000000000000000000..a69a99ccbffbc951a8691a96b79ee4ef0725d1a4 --- /dev/null +++ b/timecost/c7/forestdiffusion/forest-c7-20260429_210000/_fd_X_host.npy @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:704bab13ead16cf08a6c8521c33a1e9c77ec3c94ed9b6b190511a1b1d55d7ba1 +size 373376 diff --git a/timecost/c7/forestdiffusion/forest-c7-20260429_210000/_fd_gen.py b/timecost/c7/forestdiffusion/forest-c7-20260429_210000/_fd_gen.py new file mode 100644 index 0000000000000000000000000000000000000000..46312bf3b3bcb880551505e16637e06b59eed3d8 --- /dev/null +++ b/timecost/c7/forestdiffusion/forest-c7-20260429_210000/_fd_gen.py @@ -0,0 +1,8 @@ + +import joblib, pandas as pd +m, meta = joblib.load(r'/work/output-Benchmark-trainonly-v1/c7/forestdiffusion/forest-c7-20260429_210000/forestdiffusion_model.joblib') +# generate:batch_size 为样本数 +arr = m.generate(batch_size=int(10368)) +df = pd.DataFrame(arr, columns=meta["column_names"]) +df.to_csv(r'/work/output-Benchmark-trainonly-v1/c7/forestdiffusion/forest-c7-20260429_210000/forest-c7-10368-20260430_054452.csv', index=False) +print("saved", len(df)) diff --git a/timecost/c7/forestdiffusion/forest-c7-20260429_210000/_fd_meta_host.json b/timecost/c7/forestdiffusion/forest-c7-20260429_210000/_fd_meta_host.json new file mode 100644 index 0000000000000000000000000000000000000000..a6c4906bd4050053b5e4d3027aa1125b5feae0cf --- /dev/null +++ b/timecost/c7/forestdiffusion/forest-c7-20260429_210000/_fd_meta_host.json @@ -0,0 +1 @@ +{"column_names": ["parents", "has_nurs", "form", "children", "housing", "finance", "social", "health", "class"], "cat_indexes": [0, 1, 2, 3, 4, 5, 6, 7]} \ No newline at end of file diff --git a/timecost/c7/forestdiffusion/forest-c7-20260429_210000/_fd_train.py b/timecost/c7/forestdiffusion/forest-c7-20260429_210000/_fd_train.py new file mode 100644 index 0000000000000000000000000000000000000000..e712ce764a6df3d2f4fe87c74fff051644e3b0b3 --- /dev/null +++ b/timecost/c7/forestdiffusion/forest-c7-20260429_210000/_fd_train.py @@ -0,0 +1,28 @@ + +import shutil, json +shutil.copy(r'/work/output-Benchmark-trainonly-v1/c7/forestdiffusion/forest-c7-20260429_210000/_fd_X_host.npy', '/tmp/fd_X.npy') +with open(r'/work/output-Benchmark-trainonly-v1/c7/forestdiffusion/forest-c7-20260429_210000/_fd_meta_host.json') as f: + open('/tmp/fd_meta.json','w').write(f.read()) + +import numpy as np, joblib, json, os +from ForestDiffusion import ForestDiffusionModel +X = np.load("/tmp/fd_X.npy") +with open("/tmp/fd_meta.json") as f: + meta = json.load(f) +cat_indexes = meta["cat_indexes"] +print( + "[ForestDiffusion] train config: " + f"rows={X.shape[0]} cols={X.shape[1]} n_t=20 " + f"n_estimators=100 duplicate_K=20 n_jobs=2 " + f"xgb_verbosity=1", + flush=True, +) +m = ForestDiffusionModel( + X, n_t=20, n_estimators=100, duplicate_K=20, n_jobs=2, + model="xgboost", max_depth=6, tree_method="hist", cat_indexes=cat_indexes, + verbosity=1, +) +joblib.dump((m, meta), "/tmp/fd_model.joblib") +print("ForestDiffusion train OK") + +shutil.copy('/tmp/fd_model.joblib', r'/work/output-Benchmark-trainonly-v1/c7/forestdiffusion/forest-c7-20260429_210000/forestdiffusion_model.joblib') diff --git a/timecost/c7/forestdiffusion/forest-c7-20260429_210000/forest-c7-10368-20260430_054452.csv b/timecost/c7/forestdiffusion/forest-c7-20260429_210000/forest-c7-10368-20260430_054452.csv new file mode 100644 index 0000000000000000000000000000000000000000..31b640988ec67b7d4650796f2ab808a2e5f0f5c2 --- /dev/null +++ b/timecost/c7/forestdiffusion/forest-c7-20260429_210000/forest-c7-10368-20260430_054452.csv @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:703360b58e9d53fe5254592edfe3c9a39155fde5e78017c6dcf544c20b00ab2e +size 504811 diff --git a/timecost/c7/forestdiffusion/forest-c7-20260429_210000/forestdiffusion_model.joblib b/timecost/c7/forestdiffusion/forest-c7-20260429_210000/forestdiffusion_model.joblib new file mode 100644 index 0000000000000000000000000000000000000000..ed64701a672f42334d5944dee00838abe86b5b41 --- /dev/null +++ b/timecost/c7/forestdiffusion/forest-c7-20260429_210000/forestdiffusion_model.joblib @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:9b6b0fa6051d5a485cbfd393e980f1ac6f949cdb1b3f91b49c4e55d5f637a0be +size 191178113 diff --git a/timecost/c7/forestdiffusion/forest-c7-20260429_210000/gen_20260430_054452.log b/timecost/c7/forestdiffusion/forest-c7-20260429_210000/gen_20260430_054452.log new file mode 100644 index 0000000000000000000000000000000000000000..85d5fbcd5693428521cad011040017867da1cd84 --- /dev/null +++ b/timecost/c7/forestdiffusion/forest-c7-20260429_210000/gen_20260430_054452.log @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:1c49c54437191843a32a8a9e36c89644373d4384f753025182b0e4b2bed2e3f7 +size 294 diff --git a/timecost/c7/forestdiffusion/forest-c7-20260429_210000/input_snapshot.json b/timecost/c7/forestdiffusion/forest-c7-20260429_210000/input_snapshot.json new file mode 100644 index 0000000000000000000000000000000000000000..be64076e7dd6fc44b3a431506cf263059963b329 --- /dev/null +++ b/timecost/c7/forestdiffusion/forest-c7-20260429_210000/input_snapshot.json @@ -0,0 +1,36 @@ +{ + "dataset_id": "c7", + "model": "forestdiffusion", + "inputs": { + "train_csv": { + "path": "/data/jialinzhang/SynthesizePipeline-server/DatasetNew/c7/c7-train.csv", + "exists": true, + "size": 857718, + "sha256": "0ec97b49cecfd452f07551a63db7b812b5998a1e37101eae82255d00aa6a6243" + }, + "val_csv": { + "path": "/data/jialinzhang/SynthesizePipeline-server/DatasetNew/c7/c7-val.csv", + "exists": true, + "size": 107489, + "sha256": "4501bb2be19f7e13b7ff5e9dedd74e3dd42f2cafc8cefd5435bda61fc974a769" + }, + "test_csv": { + "path": "/data/jialinzhang/SynthesizePipeline-server/DatasetNew/c7/c7-test.csv", + "exists": true, + "size": 107327, + "sha256": "f9e808033a07feabb980addcf8c5f75111189ac2fb70993b8ad0f5ca3d5cfbae" + }, + "profile_json": { + "path": "/data/jialinzhang/SynthesizePipeline-server/DatasetNew/artifacts/data_core/tabular/c7/c7-dataset_profile.json", + "exists": true, + "size": 4014, + "sha256": "60424c615b91a26cf02d9bc1d7f91caa0ceb95bab39eb7cff6f9edea3ca0600e" + }, + "contract_json": { + "path": "/data/jialinzhang/SynthesizePipeline-server/DatasetNew/artifacts/data_core/tabular/c7/c7-dataset_contract_v1.json", + "exists": true, + "size": 4759, + "sha256": "79a434a1e2553b14b9f2e98c1adfc32a71aaa0d6cd49234f3f8a5603efca4ebd" + } + } +} \ No newline at end of file diff --git a/timecost/c7/forestdiffusion/forest-c7-20260429_210000/models_fd/model.joblib b/timecost/c7/forestdiffusion/forest-c7-20260429_210000/models_fd/model.joblib new file mode 100644 index 0000000000000000000000000000000000000000..ed64701a672f42334d5944dee00838abe86b5b41 --- /dev/null +++ b/timecost/c7/forestdiffusion/forest-c7-20260429_210000/models_fd/model.joblib @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:9b6b0fa6051d5a485cbfd393e980f1ac6f949cdb1b3f91b49c4e55d5f637a0be +size 191178113 diff --git a/timecost/c7/forestdiffusion/forest-c7-20260429_210000/public_gate/normalized_schema_snapshot.json b/timecost/c7/forestdiffusion/forest-c7-20260429_210000/public_gate/normalized_schema_snapshot.json new file mode 100644 index 0000000000000000000000000000000000000000..3ea4859ec2aa245a19531b254f45d87237c23069 --- /dev/null +++ b/timecost/c7/forestdiffusion/forest-c7-20260429_210000/public_gate/normalized_schema_snapshot.json @@ -0,0 +1,183 @@ +{ + "dataset_id": "c7", + "target_column": "class", + "task_type": "classification", + "columns": [ + { + "name": "parents", + "role": "feature", + "semantic_type": "categorical", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 3, + "unique_ratio": 0.000289, + "example_values": [ + "usual", + "pretentious", + "great_pret" + ] + } + }, + { + "name": "has_nurs", + "role": "feature", + "semantic_type": "categorical", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 5, + "unique_ratio": 0.000482, + "example_values": [ + "very_crit", + "critical", + "improper", + "less_proper", + "proper" + ] + } + }, + { + "name": "form", + "role": "feature", + "semantic_type": "categorical", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 4, + "unique_ratio": 0.000386, + "example_values": [ + "complete", + "completed", + "incomplete", + "foster" + ] + } + }, + { + "name": "children", + "role": "feature", + "semantic_type": "categorical", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 4, + "unique_ratio": 0.000386, + "example_values": [ + "1", + "3", + "2", + "more" + ] + } + }, + { + "name": "housing", + "role": "feature", + "semantic_type": "categorical", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 3, + "unique_ratio": 0.000289, + "example_values": [ + "less_conv", + "convenient", + "critical" + ] + } + }, + { + "name": "finance", + "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.000193, + "example_values": [ + "convenient", + "inconv" + ] + } + }, + { + "name": "social", + "role": "feature", + "semantic_type": "categorical", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 3, + "unique_ratio": 0.000289, + "example_values": [ + "slightly_prob", + "nonprob", + "problematic" + ] + } + }, + { + "name": "health", + "role": "feature", + "semantic_type": "categorical", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 3, + "unique_ratio": 0.000289, + "example_values": [ + "recommended", + "priority", + "not_recom" + ] + } + }, + { + "name": "class", + "role": "target", + "semantic_type": "categorical", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 5, + "unique_ratio": 0.000482, + "example_values": [ + "priority", + "spec_prior", + "not_recom", + "very_recom", + "recommend" + ] + } + } + ] +} \ No newline at end of file diff --git a/timecost/c7/forestdiffusion/forest-c7-20260429_210000/public_gate/public_gate_report.json b/timecost/c7/forestdiffusion/forest-c7-20260429_210000/public_gate/public_gate_report.json new file mode 100644 index 0000000000000000000000000000000000000000..3328fe59cd490a424e50f931e9eedba9e81d1cec --- /dev/null +++ b/timecost/c7/forestdiffusion/forest-c7-20260429_210000/public_gate/public_gate_report.json @@ -0,0 +1,37 @@ +{ + "dataset_id": "c7", + "status": "pass", + "checks": [ + { + "check_id": "PG001_csv_parse_ok", + "status": "pass" + }, + { + "check_id": "PG002_split_header_consistent", + "status": "pass" + }, + { + "check_id": "PG003_profile_header_match", + "status": "pass" + }, + { + "check_id": "PG004_missing_token_normalized", + "status": "pass" + }, + { + "check_id": "PG005_semantic_type_validated", + "status": "pass" + }, + { + "check_id": "PG006_target_defined_and_valid", + "status": "pass" + } + ], + "target_column": "class", + "task_type": "classification", + "input_splits": { + "train": "/data/jialinzhang/SynthesizePipeline-server/DatasetNew/c7/c7-train.csv", + "val": "/data/jialinzhang/SynthesizePipeline-server/DatasetNew/c7/c7-val.csv", + "test": "/data/jialinzhang/SynthesizePipeline-server/DatasetNew/c7/c7-test.csv" + } +} \ No newline at end of file diff --git a/timecost/c7/forestdiffusion/forest-c7-20260429_210000/public_gate/staged_input_manifest.json b/timecost/c7/forestdiffusion/forest-c7-20260429_210000/public_gate/staged_input_manifest.json new file mode 100644 index 0000000000000000000000000000000000000000..9ff469cc5277035e59f661925b42d0649ffb82c4 --- /dev/null +++ b/timecost/c7/forestdiffusion/forest-c7-20260429_210000/public_gate/staged_input_manifest.json @@ -0,0 +1,188 @@ +{ + "dataset_id": "c7", + "target_column": "class", + "task_type": "classification", + "train_csv": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/c7/forestdiffusion/forest-c7-20260429_210000/staged/public/train.csv", + "val_csv": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/c7/forestdiffusion/forest-c7-20260429_210000/staged/public/val.csv", + "test_csv": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/c7/forestdiffusion/forest-c7-20260429_210000/staged/public/test.csv", + "features_json": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/c7/forestdiffusion/forest-c7-20260429_210000/staged/public/staged_features.json", + "public_gate_report": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/c7/forestdiffusion/forest-c7-20260429_210000/public_gate/public_gate_report.json", + "column_schema": [ + { + "name": "parents", + "role": "feature", + "semantic_type": "categorical", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 3, + "unique_ratio": 0.000289, + "example_values": [ + "usual", + "pretentious", + "great_pret" + ] + } + }, + { + "name": "has_nurs", + "role": "feature", + "semantic_type": "categorical", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 5, + "unique_ratio": 0.000482, + "example_values": [ + "very_crit", + "critical", + "improper", + "less_proper", + "proper" + ] + } + }, + { + "name": "form", + "role": "feature", + "semantic_type": "categorical", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 4, + "unique_ratio": 0.000386, + "example_values": [ + "complete", + "completed", + "incomplete", + "foster" + ] + } + }, + { + "name": "children", + "role": "feature", + "semantic_type": "categorical", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 4, + "unique_ratio": 0.000386, + "example_values": [ + "1", + "3", + "2", + "more" + ] + } + }, + { + "name": "housing", + "role": "feature", + "semantic_type": "categorical", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 3, + "unique_ratio": 0.000289, + "example_values": [ + "less_conv", + "convenient", + "critical" + ] + } + }, + { + "name": "finance", + "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.000193, + "example_values": [ + "convenient", + "inconv" + ] + } + }, + { + "name": "social", + "role": "feature", + "semantic_type": "categorical", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 3, + "unique_ratio": 0.000289, + "example_values": [ + "slightly_prob", + "nonprob", + "problematic" + ] + } + }, + { + "name": "health", + "role": "feature", + "semantic_type": "categorical", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 3, + "unique_ratio": 0.000289, + "example_values": [ + "recommended", + "priority", + "not_recom" + ] + } + }, + { + "name": "class", + "role": "target", + "semantic_type": "categorical", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 5, + "unique_ratio": 0.000482, + "example_values": [ + "priority", + "spec_prior", + "not_recom", + "very_recom", + "recommend" + ] + } + } + ] +} \ No newline at end of file diff --git a/timecost/c7/forestdiffusion/forest-c7-20260429_210000/runtime_result.json b/timecost/c7/forestdiffusion/forest-c7-20260429_210000/runtime_result.json new file mode 100644 index 0000000000000000000000000000000000000000..e8e5df3181b3d566e71a9683795f4940a86c8555 --- /dev/null +++ b/timecost/c7/forestdiffusion/forest-c7-20260429_210000/runtime_result.json @@ -0,0 +1,15 @@ +{ + "dataset_id": "c7", + "model": "forestdiffusion", + "run_id": "forest-c7-20260429_210000", + "public_gate_status": "pass", + "adapter_ready_status": "pass", + "train_status": "success", + "generate_status": "success", + "reason_code": null, + "reason_detail": null, + "artifacts": { + "synthetic_csv": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/c7/forestdiffusion/forest-c7-20260429_210000/forest-c7-10368-20260430_054452.csv", + "model_path": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/c7/forestdiffusion/forest-c7-20260429_210000/models_fd/model.joblib" + } +} \ No newline at end of file diff --git a/timecost/c7/forestdiffusion/forest-c7-20260429_210000/staged/forestdiffusion/adapter_report.json b/timecost/c7/forestdiffusion/forest-c7-20260429_210000/staged/forestdiffusion/adapter_report.json new file mode 100644 index 0000000000000000000000000000000000000000..8edd1b3e328a6c6f7ab4a0c36952b2f6664a1830 --- /dev/null +++ b/timecost/c7/forestdiffusion/forest-c7-20260429_210000/staged/forestdiffusion/adapter_report.json @@ -0,0 +1,7 @@ +{ + "adapter_ready_status": "pass", + "adapter_fail_reason_code": null, + "adapter_fail_detail": null, + "adapter_transforms_applied": [], + "model_input_manifest": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/c7/forestdiffusion/forest-c7-20260429_210000/staged/forestdiffusion/model_input_manifest.json" +} \ No newline at end of file diff --git a/timecost/c7/forestdiffusion/forest-c7-20260429_210000/staged/forestdiffusion/adapter_transforms_applied.json b/timecost/c7/forestdiffusion/forest-c7-20260429_210000/staged/forestdiffusion/adapter_transforms_applied.json new file mode 100644 index 0000000000000000000000000000000000000000..0637a088a01e8ddab3bf3fa98dbe804cbde1a0dc --- /dev/null +++ b/timecost/c7/forestdiffusion/forest-c7-20260429_210000/staged/forestdiffusion/adapter_transforms_applied.json @@ -0,0 +1 @@ +[] \ No newline at end of file diff --git a/timecost/c7/forestdiffusion/forest-c7-20260429_210000/staged/forestdiffusion/model_input_manifest.json b/timecost/c7/forestdiffusion/forest-c7-20260429_210000/staged/forestdiffusion/model_input_manifest.json new file mode 100644 index 0000000000000000000000000000000000000000..649934e833c5829dfd7dbf3d1aa640383f2bfb4e --- /dev/null +++ b/timecost/c7/forestdiffusion/forest-c7-20260429_210000/staged/forestdiffusion/model_input_manifest.json @@ -0,0 +1,190 @@ +{ + "dataset_id": "c7", + "model": "forestdiffusion", + "target_column": "class", + "task_type": "classification", + "column_schema": [ + { + "name": "parents", + "role": "feature", + "semantic_type": "categorical", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 3, + "unique_ratio": 0.000289, + "example_values": [ + "usual", + "pretentious", + "great_pret" + ] + } + }, + { + "name": "has_nurs", + "role": "feature", + "semantic_type": "categorical", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 5, + "unique_ratio": 0.000482, + "example_values": [ + "very_crit", + "critical", + "improper", + "less_proper", + "proper" + ] + } + }, + { + "name": "form", + "role": "feature", + "semantic_type": "categorical", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 4, + "unique_ratio": 0.000386, + "example_values": [ + "complete", + "completed", + "incomplete", + "foster" + ] + } + }, + { + "name": "children", + "role": "feature", + "semantic_type": "categorical", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 4, + "unique_ratio": 0.000386, + "example_values": [ + "1", + "3", + "2", + "more" + ] + } + }, + { + "name": "housing", + "role": "feature", + "semantic_type": "categorical", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 3, + "unique_ratio": 0.000289, + "example_values": [ + "less_conv", + "convenient", + "critical" + ] + } + }, + { + "name": "finance", + "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.000193, + "example_values": [ + "convenient", + "inconv" + ] + } + }, + { + "name": "social", + "role": "feature", + "semantic_type": "categorical", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 3, + "unique_ratio": 0.000289, + "example_values": [ + "slightly_prob", + "nonprob", + "problematic" + ] + } + }, + { + "name": "health", + "role": "feature", + "semantic_type": "categorical", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 3, + "unique_ratio": 0.000289, + "example_values": [ + "recommended", + "priority", + "not_recom" + ] + } + }, + { + "name": "class", + "role": "target", + "semantic_type": "categorical", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 5, + "unique_ratio": 0.000482, + "example_values": [ + "priority", + "spec_prior", + "not_recom", + "very_recom", + "recommend" + ] + } + } + ], + "public_manifest": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/c7/forestdiffusion/forest-c7-20260429_210000/public_gate/staged_input_manifest.json", + "train_csv": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/c7/forestdiffusion/forest-c7-20260429_210000/staged/public/train.csv", + "val_csv": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/c7/forestdiffusion/forest-c7-20260429_210000/staged/public/val.csv", + "test_csv": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/c7/forestdiffusion/forest-c7-20260429_210000/staged/public/test.csv", + "features_json": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/c7/forestdiffusion/forest-c7-20260429_210000/staged/public/staged_features.json", + "public_gate_report": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/c7/forestdiffusion/forest-c7-20260429_210000/public_gate/public_gate_report.json" +} \ No newline at end of file diff --git a/timecost/c7/forestdiffusion/forest-c7-20260429_210000/staged/public/staged_features.json b/timecost/c7/forestdiffusion/forest-c7-20260429_210000/staged/public/staged_features.json new file mode 100644 index 0000000000000000000000000000000000000000..0e23df6bcfb7ecfd44dfefc3d0ca0bf6b6aebc60 --- /dev/null +++ b/timecost/c7/forestdiffusion/forest-c7-20260429_210000/staged/public/staged_features.json @@ -0,0 +1,47 @@ +[ + { + "feature_name": "parents", + "data_type": "categorical", + "is_target": false + }, + { + "feature_name": "has_nurs", + "data_type": "categorical", + "is_target": false + }, + { + "feature_name": "form", + "data_type": "categorical", + "is_target": false + }, + { + "feature_name": "children", + "data_type": "categorical", + "is_target": false + }, + { + "feature_name": "housing", + "data_type": "categorical", + "is_target": false + }, + { + "feature_name": "finance", + "data_type": "categorical", + "is_target": false + }, + { + "feature_name": "social", + "data_type": "categorical", + "is_target": false + }, + { + "feature_name": "health", + "data_type": "categorical", + "is_target": false + }, + { + "feature_name": "class", + "data_type": "categorical", + "is_target": true + } +] \ No newline at end of file diff --git a/timecost/c7/forestdiffusion/forest-c7-20260429_210000/staged/public/test.csv b/timecost/c7/forestdiffusion/forest-c7-20260429_210000/staged/public/test.csv new file mode 100644 index 0000000000000000000000000000000000000000..cb9d7081ca745e9eed28a35168872d450c4a2a44 --- /dev/null +++ b/timecost/c7/forestdiffusion/forest-c7-20260429_210000/staged/public/test.csv @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:2042076337d5c37c6476e6bca2bd33cb5a171450c27894534ef50ac223256058 +size 106030 diff --git a/timecost/c7/forestdiffusion/forest-c7-20260429_210000/staged/public/train.csv b/timecost/c7/forestdiffusion/forest-c7-20260429_210000/staged/public/train.csv new file mode 100644 index 0000000000000000000000000000000000000000..4c8e5e0c5031fc7e8e25213132c1231950ec29da --- /dev/null +++ b/timecost/c7/forestdiffusion/forest-c7-20260429_210000/staged/public/train.csv @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:b37f6b2ef5257f40bd826ac956749881f0f474362bdb56e8c5728ad629242e3a +size 847349 diff --git a/timecost/c7/forestdiffusion/forest-c7-20260429_210000/staged/public/val.csv b/timecost/c7/forestdiffusion/forest-c7-20260429_210000/staged/public/val.csv new file mode 100644 index 0000000000000000000000000000000000000000..55792963756b1ae35b4d79dee11881372962b8d5 --- /dev/null +++ b/timecost/c7/forestdiffusion/forest-c7-20260429_210000/staged/public/val.csv @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:eff6dec27c3740661a1ae84dea391d690dfb60342bfd5d7527b903fdd6009780 +size 106192 diff --git a/timecost/c7/forestdiffusion/forest-c7-20260429_210000/train_20260429_210000.log b/timecost/c7/forestdiffusion/forest-c7-20260429_210000/train_20260429_210000.log new file mode 100644 index 0000000000000000000000000000000000000000..b2a94990d75bb5355618a5d5fa1c99123b73cc3c --- /dev/null +++ b/timecost/c7/forestdiffusion/forest-c7-20260429_210000/train_20260429_210000.log @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:9226abaddf0b235c55e758a858abb878322b6fa7ce4917212f87f4237f1dcfa3 +size 426 diff --git a/timecost/c7/forestdiffusion/forest-c7-20260430_060233/_fd_X_host.npy b/timecost/c7/forestdiffusion/forest-c7-20260430_060233/_fd_X_host.npy new file mode 100644 index 0000000000000000000000000000000000000000..a69a99ccbffbc951a8691a96b79ee4ef0725d1a4 --- /dev/null +++ b/timecost/c7/forestdiffusion/forest-c7-20260430_060233/_fd_X_host.npy @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:704bab13ead16cf08a6c8521c33a1e9c77ec3c94ed9b6b190511a1b1d55d7ba1 +size 373376 diff --git a/timecost/c7/forestdiffusion/forest-c7-20260430_060233/_fd_gen.py b/timecost/c7/forestdiffusion/forest-c7-20260430_060233/_fd_gen.py new file mode 100644 index 0000000000000000000000000000000000000000..19668c2b18fc68dedbc74fdf00e077f7ac7bd8b1 --- /dev/null +++ b/timecost/c7/forestdiffusion/forest-c7-20260430_060233/_fd_gen.py @@ -0,0 +1,8 @@ + +import joblib, pandas as pd +m, meta = joblib.load(r'/work/output-Benchmark-trainonly-v1/c7/forestdiffusion/forest-c7-20260430_060233/forestdiffusion_model.joblib') +# generate:batch_size 为样本数 +arr = m.generate(batch_size=int(10368)) +df = pd.DataFrame(arr, columns=meta["column_names"]) +df.to_csv(r'/work/output-Benchmark-trainonly-v1/c7/forestdiffusion/forest-c7-20260430_060233/forest-c7-10368-20260430_060359.csv', index=False) +print("saved", len(df)) diff --git a/timecost/c7/forestdiffusion/forest-c7-20260430_060233/_fd_meta_host.json b/timecost/c7/forestdiffusion/forest-c7-20260430_060233/_fd_meta_host.json new file mode 100644 index 0000000000000000000000000000000000000000..a6c4906bd4050053b5e4d3027aa1125b5feae0cf --- /dev/null +++ b/timecost/c7/forestdiffusion/forest-c7-20260430_060233/_fd_meta_host.json @@ -0,0 +1 @@ +{"column_names": ["parents", "has_nurs", "form", "children", "housing", "finance", "social", "health", "class"], "cat_indexes": [0, 1, 2, 3, 4, 5, 6, 7]} \ No newline at end of file diff --git a/timecost/c7/forestdiffusion/forest-c7-20260430_060233/_fd_train.py b/timecost/c7/forestdiffusion/forest-c7-20260430_060233/_fd_train.py new file mode 100644 index 0000000000000000000000000000000000000000..61981b375c1363c0bf6291fe77cabf72234fd20b --- /dev/null +++ b/timecost/c7/forestdiffusion/forest-c7-20260430_060233/_fd_train.py @@ -0,0 +1,28 @@ + +import shutil, json +shutil.copy(r'/work/output-Benchmark-trainonly-v1/c7/forestdiffusion/forest-c7-20260430_060233/_fd_X_host.npy', '/tmp/fd_X.npy') +with open(r'/work/output-Benchmark-trainonly-v1/c7/forestdiffusion/forest-c7-20260430_060233/_fd_meta_host.json') as f: + open('/tmp/fd_meta.json','w').write(f.read()) + +import numpy as np, joblib, json, os +from ForestDiffusion import ForestDiffusionModel +X = np.load("/tmp/fd_X.npy") +with open("/tmp/fd_meta.json") as f: + meta = json.load(f) +cat_indexes = meta["cat_indexes"] +print( + "[ForestDiffusion] train config: " + f"rows={X.shape[0]} cols={X.shape[1]} n_t=20 " + f"n_estimators=100 duplicate_K=20 n_jobs=2 " + f"xgb_verbosity=1", + flush=True, +) +m = ForestDiffusionModel( + X, n_t=20, n_estimators=100, duplicate_K=20, n_jobs=2, + model="xgboost", max_depth=6, tree_method="hist", cat_indexes=cat_indexes, + verbosity=1, +) +joblib.dump((m, meta), "/tmp/fd_model.joblib") +print("ForestDiffusion train OK") + +shutil.copy('/tmp/fd_model.joblib', r'/work/output-Benchmark-trainonly-v1/c7/forestdiffusion/forest-c7-20260430_060233/forestdiffusion_model.joblib') diff --git a/timecost/c7/forestdiffusion/forest-c7-20260430_060233/forest-c7-10368-20260430_060359.csv b/timecost/c7/forestdiffusion/forest-c7-20260430_060233/forest-c7-10368-20260430_060359.csv new file mode 100644 index 0000000000000000000000000000000000000000..1d46c5ff99fff9ad97525e576432970485c09b17 --- /dev/null +++ b/timecost/c7/forestdiffusion/forest-c7-20260430_060233/forest-c7-10368-20260430_060359.csv @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:c9027b66b5e58a47c6c08de377244a98e3d41fa6dd83a432316aefb7e7bed716 +size 504511 diff --git a/timecost/c7/forestdiffusion/forest-c7-20260430_060233/forestdiffusion_model.joblib b/timecost/c7/forestdiffusion/forest-c7-20260430_060233/forestdiffusion_model.joblib new file mode 100644 index 0000000000000000000000000000000000000000..ed64701a672f42334d5944dee00838abe86b5b41 --- /dev/null +++ b/timecost/c7/forestdiffusion/forest-c7-20260430_060233/forestdiffusion_model.joblib @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:9b6b0fa6051d5a485cbfd393e980f1ac6f949cdb1b3f91b49c4e55d5f637a0be +size 191178113 diff --git a/timecost/c7/forestdiffusion/forest-c7-20260430_060233/gen_20260430_060359.log b/timecost/c7/forestdiffusion/forest-c7-20260430_060233/gen_20260430_060359.log new file mode 100644 index 0000000000000000000000000000000000000000..627973bd3257a4cf62a516a4f1fba3847f283138 --- /dev/null +++ b/timecost/c7/forestdiffusion/forest-c7-20260430_060233/gen_20260430_060359.log @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:5dc24d6c21b670c2b37e5c469c4747f1aac46869068218c8e85d9f67ff5bdcf8 +size 295 diff --git a/timecost/c7/forestdiffusion/forest-c7-20260430_060233/input_snapshot.json b/timecost/c7/forestdiffusion/forest-c7-20260430_060233/input_snapshot.json new file mode 100644 index 0000000000000000000000000000000000000000..be64076e7dd6fc44b3a431506cf263059963b329 --- /dev/null +++ b/timecost/c7/forestdiffusion/forest-c7-20260430_060233/input_snapshot.json @@ -0,0 +1,36 @@ +{ + "dataset_id": "c7", + "model": "forestdiffusion", + "inputs": { + "train_csv": { + "path": "/data/jialinzhang/SynthesizePipeline-server/DatasetNew/c7/c7-train.csv", + "exists": true, + "size": 857718, + "sha256": "0ec97b49cecfd452f07551a63db7b812b5998a1e37101eae82255d00aa6a6243" + }, + "val_csv": { + "path": "/data/jialinzhang/SynthesizePipeline-server/DatasetNew/c7/c7-val.csv", + "exists": true, + "size": 107489, + "sha256": "4501bb2be19f7e13b7ff5e9dedd74e3dd42f2cafc8cefd5435bda61fc974a769" + }, + "test_csv": { + "path": "/data/jialinzhang/SynthesizePipeline-server/DatasetNew/c7/c7-test.csv", + "exists": true, + "size": 107327, + "sha256": "f9e808033a07feabb980addcf8c5f75111189ac2fb70993b8ad0f5ca3d5cfbae" + }, + "profile_json": { + "path": "/data/jialinzhang/SynthesizePipeline-server/DatasetNew/artifacts/data_core/tabular/c7/c7-dataset_profile.json", + "exists": true, + "size": 4014, + "sha256": "60424c615b91a26cf02d9bc1d7f91caa0ceb95bab39eb7cff6f9edea3ca0600e" + }, + "contract_json": { + "path": "/data/jialinzhang/SynthesizePipeline-server/DatasetNew/artifacts/data_core/tabular/c7/c7-dataset_contract_v1.json", + "exists": true, + "size": 4759, + "sha256": "79a434a1e2553b14b9f2e98c1adfc32a71aaa0d6cd49234f3f8a5603efca4ebd" + } + } +} \ No newline at end of file diff --git a/timecost/c7/forestdiffusion/forest-c7-20260430_060233/models_fd/model.joblib b/timecost/c7/forestdiffusion/forest-c7-20260430_060233/models_fd/model.joblib new file mode 100644 index 0000000000000000000000000000000000000000..ed64701a672f42334d5944dee00838abe86b5b41 --- /dev/null +++ b/timecost/c7/forestdiffusion/forest-c7-20260430_060233/models_fd/model.joblib @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:9b6b0fa6051d5a485cbfd393e980f1ac6f949cdb1b3f91b49c4e55d5f637a0be +size 191178113 diff --git a/timecost/c7/forestdiffusion/forest-c7-20260430_060233/public_gate/normalized_schema_snapshot.json b/timecost/c7/forestdiffusion/forest-c7-20260430_060233/public_gate/normalized_schema_snapshot.json new file mode 100644 index 0000000000000000000000000000000000000000..3ea4859ec2aa245a19531b254f45d87237c23069 --- /dev/null +++ b/timecost/c7/forestdiffusion/forest-c7-20260430_060233/public_gate/normalized_schema_snapshot.json @@ -0,0 +1,183 @@ +{ + "dataset_id": "c7", + "target_column": "class", + "task_type": "classification", + "columns": [ + { + "name": "parents", + "role": "feature", + "semantic_type": "categorical", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 3, + "unique_ratio": 0.000289, + "example_values": [ + "usual", + "pretentious", + "great_pret" + ] + } + }, + { + "name": "has_nurs", + "role": "feature", + "semantic_type": "categorical", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 5, + "unique_ratio": 0.000482, + "example_values": [ + "very_crit", + "critical", + "improper", + "less_proper", + "proper" + ] + } + }, + { + "name": "form", + "role": "feature", + "semantic_type": "categorical", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 4, + "unique_ratio": 0.000386, + "example_values": [ + "complete", + "completed", + "incomplete", + "foster" + ] + } + }, + { + "name": "children", + "role": "feature", + "semantic_type": "categorical", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 4, + "unique_ratio": 0.000386, + "example_values": [ + "1", + "3", + "2", + "more" + ] + } + }, + { + "name": "housing", + "role": "feature", + "semantic_type": "categorical", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 3, + "unique_ratio": 0.000289, + "example_values": [ + "less_conv", + "convenient", + "critical" + ] + } + }, + { + "name": "finance", + "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.000193, + "example_values": [ + "convenient", + "inconv" + ] + } + }, + { + "name": "social", + "role": "feature", + "semantic_type": "categorical", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 3, + "unique_ratio": 0.000289, + "example_values": [ + "slightly_prob", + "nonprob", + "problematic" + ] + } + }, + { + "name": "health", + "role": "feature", + "semantic_type": "categorical", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 3, + "unique_ratio": 0.000289, + "example_values": [ + "recommended", + "priority", + "not_recom" + ] + } + }, + { + "name": "class", + "role": "target", + "semantic_type": "categorical", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 5, + "unique_ratio": 0.000482, + "example_values": [ + "priority", + "spec_prior", + "not_recom", + "very_recom", + "recommend" + ] + } + } + ] +} \ No newline at end of file diff --git a/timecost/c7/forestdiffusion/forest-c7-20260430_060233/public_gate/public_gate_report.json b/timecost/c7/forestdiffusion/forest-c7-20260430_060233/public_gate/public_gate_report.json new file mode 100644 index 0000000000000000000000000000000000000000..3328fe59cd490a424e50f931e9eedba9e81d1cec --- /dev/null +++ b/timecost/c7/forestdiffusion/forest-c7-20260430_060233/public_gate/public_gate_report.json @@ -0,0 +1,37 @@ +{ + "dataset_id": "c7", + "status": "pass", + "checks": [ + { + "check_id": "PG001_csv_parse_ok", + "status": "pass" + }, + { + "check_id": "PG002_split_header_consistent", + "status": "pass" + }, + { + "check_id": "PG003_profile_header_match", + "status": "pass" + }, + { + "check_id": "PG004_missing_token_normalized", + "status": "pass" + }, + { + "check_id": "PG005_semantic_type_validated", + "status": "pass" + }, + { + "check_id": "PG006_target_defined_and_valid", + "status": "pass" + } + ], + "target_column": "class", + "task_type": "classification", + "input_splits": { + "train": "/data/jialinzhang/SynthesizePipeline-server/DatasetNew/c7/c7-train.csv", + "val": "/data/jialinzhang/SynthesizePipeline-server/DatasetNew/c7/c7-val.csv", + "test": "/data/jialinzhang/SynthesizePipeline-server/DatasetNew/c7/c7-test.csv" + } +} \ No newline at end of file diff --git a/timecost/c7/forestdiffusion/forest-c7-20260430_060233/public_gate/staged_input_manifest.json b/timecost/c7/forestdiffusion/forest-c7-20260430_060233/public_gate/staged_input_manifest.json new file mode 100644 index 0000000000000000000000000000000000000000..c5321696b982f7a3cda88c50eb6e793b64a96451 --- /dev/null +++ b/timecost/c7/forestdiffusion/forest-c7-20260430_060233/public_gate/staged_input_manifest.json @@ -0,0 +1,188 @@ +{ + "dataset_id": "c7", + "target_column": "class", + "task_type": "classification", + "train_csv": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/c7/forestdiffusion/forest-c7-20260430_060233/staged/public/train.csv", + "val_csv": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/c7/forestdiffusion/forest-c7-20260430_060233/staged/public/val.csv", + "test_csv": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/c7/forestdiffusion/forest-c7-20260430_060233/staged/public/test.csv", + "features_json": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/c7/forestdiffusion/forest-c7-20260430_060233/staged/public/staged_features.json", + "public_gate_report": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/c7/forestdiffusion/forest-c7-20260430_060233/public_gate/public_gate_report.json", + "column_schema": [ + { + "name": "parents", + "role": "feature", + "semantic_type": "categorical", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 3, + "unique_ratio": 0.000289, + "example_values": [ + "usual", + "pretentious", + "great_pret" + ] + } + }, + { + "name": "has_nurs", + "role": "feature", + "semantic_type": "categorical", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 5, + "unique_ratio": 0.000482, + "example_values": [ + "very_crit", + "critical", + "improper", + "less_proper", + "proper" + ] + } + }, + { + "name": "form", + "role": "feature", + "semantic_type": "categorical", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 4, + "unique_ratio": 0.000386, + "example_values": [ + "complete", + "completed", + "incomplete", + "foster" + ] + } + }, + { + "name": "children", + "role": "feature", + "semantic_type": "categorical", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 4, + "unique_ratio": 0.000386, + "example_values": [ + "1", + "3", + "2", + "more" + ] + } + }, + { + "name": "housing", + "role": "feature", + "semantic_type": "categorical", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 3, + "unique_ratio": 0.000289, + "example_values": [ + "less_conv", + "convenient", + "critical" + ] + } + }, + { + "name": "finance", + "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.000193, + "example_values": [ + "convenient", + "inconv" + ] + } + }, + { + "name": "social", + "role": "feature", + "semantic_type": "categorical", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 3, + "unique_ratio": 0.000289, + "example_values": [ + "slightly_prob", + "nonprob", + "problematic" + ] + } + }, + { + "name": "health", + "role": "feature", + "semantic_type": "categorical", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 3, + "unique_ratio": 0.000289, + "example_values": [ + "recommended", + "priority", + "not_recom" + ] + } + }, + { + "name": "class", + "role": "target", + "semantic_type": "categorical", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 5, + "unique_ratio": 0.000482, + "example_values": [ + "priority", + "spec_prior", + "not_recom", + "very_recom", + "recommend" + ] + } + } + ] +} \ No newline at end of file diff --git a/timecost/c7/forestdiffusion/forest-c7-20260430_060233/runtime_result.json b/timecost/c7/forestdiffusion/forest-c7-20260430_060233/runtime_result.json new file mode 100644 index 0000000000000000000000000000000000000000..6dbdd156060b660fdbacab88fe757683e30ef013 --- /dev/null +++ b/timecost/c7/forestdiffusion/forest-c7-20260430_060233/runtime_result.json @@ -0,0 +1,15 @@ +{ + "dataset_id": "c7", + "model": "forestdiffusion", + "run_id": "forest-c7-20260430_060233", + "public_gate_status": "pass", + "adapter_ready_status": "pass", + "train_status": "success", + "generate_status": "success", + "reason_code": null, + "reason_detail": null, + "artifacts": { + "synthetic_csv": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/c7/forestdiffusion/forest-c7-20260430_060233/forest-c7-10368-20260430_060359.csv", + "model_path": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/c7/forestdiffusion/forest-c7-20260430_060233/models_fd/model.joblib" + } +} \ No newline at end of file diff --git a/timecost/c7/forestdiffusion/forest-c7-20260430_060233/staged/forestdiffusion/adapter_report.json b/timecost/c7/forestdiffusion/forest-c7-20260430_060233/staged/forestdiffusion/adapter_report.json new file mode 100644 index 0000000000000000000000000000000000000000..93e429d002afae5b368c59bbbf164cb1b30c092d --- /dev/null +++ b/timecost/c7/forestdiffusion/forest-c7-20260430_060233/staged/forestdiffusion/adapter_report.json @@ -0,0 +1,7 @@ +{ + "adapter_ready_status": "pass", + "adapter_fail_reason_code": null, + "adapter_fail_detail": null, + "adapter_transforms_applied": [], + "model_input_manifest": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/c7/forestdiffusion/forest-c7-20260430_060233/staged/forestdiffusion/model_input_manifest.json" +} \ No newline at end of file diff --git a/timecost/c7/forestdiffusion/forest-c7-20260430_060233/staged/forestdiffusion/adapter_transforms_applied.json b/timecost/c7/forestdiffusion/forest-c7-20260430_060233/staged/forestdiffusion/adapter_transforms_applied.json new file mode 100644 index 0000000000000000000000000000000000000000..0637a088a01e8ddab3bf3fa98dbe804cbde1a0dc --- /dev/null +++ b/timecost/c7/forestdiffusion/forest-c7-20260430_060233/staged/forestdiffusion/adapter_transforms_applied.json @@ -0,0 +1 @@ +[] \ No newline at end of file diff --git a/timecost/c7/forestdiffusion/forest-c7-20260430_060233/staged/forestdiffusion/model_input_manifest.json b/timecost/c7/forestdiffusion/forest-c7-20260430_060233/staged/forestdiffusion/model_input_manifest.json new file mode 100644 index 0000000000000000000000000000000000000000..28c618d29c29e9acd6ebc8fac9905e9ac96e63d8 --- /dev/null +++ b/timecost/c7/forestdiffusion/forest-c7-20260430_060233/staged/forestdiffusion/model_input_manifest.json @@ -0,0 +1,190 @@ +{ + "dataset_id": "c7", + "model": "forestdiffusion", + "target_column": "class", + "task_type": "classification", + "column_schema": [ + { + "name": "parents", + "role": "feature", + "semantic_type": "categorical", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 3, + "unique_ratio": 0.000289, + "example_values": [ + "usual", + "pretentious", + "great_pret" + ] + } + }, + { + "name": "has_nurs", + "role": "feature", + "semantic_type": "categorical", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 5, + "unique_ratio": 0.000482, + "example_values": [ + "very_crit", + "critical", + "improper", + "less_proper", + "proper" + ] + } + }, + { + "name": "form", + "role": "feature", + "semantic_type": "categorical", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 4, + "unique_ratio": 0.000386, + "example_values": [ + "complete", + "completed", + "incomplete", + "foster" + ] + } + }, + { + "name": "children", + "role": "feature", + "semantic_type": "categorical", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 4, + "unique_ratio": 0.000386, + "example_values": [ + "1", + "3", + "2", + "more" + ] + } + }, + { + "name": "housing", + "role": "feature", + "semantic_type": "categorical", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 3, + "unique_ratio": 0.000289, + "example_values": [ + "less_conv", + "convenient", + "critical" + ] + } + }, + { + "name": "finance", + "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.000193, + "example_values": [ + "convenient", + "inconv" + ] + } + }, + { + "name": "social", + "role": "feature", + "semantic_type": "categorical", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 3, + "unique_ratio": 0.000289, + "example_values": [ + "slightly_prob", + "nonprob", + "problematic" + ] + } + }, + { + "name": "health", + "role": "feature", + "semantic_type": "categorical", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 3, + "unique_ratio": 0.000289, + "example_values": [ + "recommended", + "priority", + "not_recom" + ] + } + }, + { + "name": "class", + "role": "target", + "semantic_type": "categorical", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 5, + "unique_ratio": 0.000482, + "example_values": [ + "priority", + "spec_prior", + "not_recom", + "very_recom", + "recommend" + ] + } + } + ], + "public_manifest": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/c7/forestdiffusion/forest-c7-20260430_060233/public_gate/staged_input_manifest.json", + "train_csv": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/c7/forestdiffusion/forest-c7-20260430_060233/staged/public/train.csv", + "val_csv": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/c7/forestdiffusion/forest-c7-20260430_060233/staged/public/val.csv", + "test_csv": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/c7/forestdiffusion/forest-c7-20260430_060233/staged/public/test.csv", + "features_json": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/c7/forestdiffusion/forest-c7-20260430_060233/staged/public/staged_features.json", + "public_gate_report": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/c7/forestdiffusion/forest-c7-20260430_060233/public_gate/public_gate_report.json" +} \ No newline at end of file diff --git a/timecost/c7/forestdiffusion/forest-c7-20260430_060233/staged/public/staged_features.json b/timecost/c7/forestdiffusion/forest-c7-20260430_060233/staged/public/staged_features.json new file mode 100644 index 0000000000000000000000000000000000000000..0e23df6bcfb7ecfd44dfefc3d0ca0bf6b6aebc60 --- /dev/null +++ b/timecost/c7/forestdiffusion/forest-c7-20260430_060233/staged/public/staged_features.json @@ -0,0 +1,47 @@ +[ + { + "feature_name": "parents", + "data_type": "categorical", + "is_target": false + }, + { + "feature_name": "has_nurs", + "data_type": "categorical", + "is_target": false + }, + { + "feature_name": "form", + "data_type": "categorical", + "is_target": false + }, + { + "feature_name": "children", + "data_type": "categorical", + "is_target": false + }, + { + "feature_name": "housing", + "data_type": "categorical", + "is_target": false + }, + { + "feature_name": "finance", + "data_type": "categorical", + "is_target": false + }, + { + "feature_name": "social", + "data_type": "categorical", + "is_target": false + }, + { + "feature_name": "health", + "data_type": "categorical", + "is_target": false + }, + { + "feature_name": "class", + "data_type": "categorical", + "is_target": true + } +] \ No newline at end of file diff --git a/timecost/c7/forestdiffusion/forest-c7-20260430_060233/staged/public/test.csv b/timecost/c7/forestdiffusion/forest-c7-20260430_060233/staged/public/test.csv new file mode 100644 index 0000000000000000000000000000000000000000..cb9d7081ca745e9eed28a35168872d450c4a2a44 --- /dev/null +++ b/timecost/c7/forestdiffusion/forest-c7-20260430_060233/staged/public/test.csv @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:2042076337d5c37c6476e6bca2bd33cb5a171450c27894534ef50ac223256058 +size 106030 diff --git a/timecost/c7/forestdiffusion/forest-c7-20260430_060233/staged/public/train.csv b/timecost/c7/forestdiffusion/forest-c7-20260430_060233/staged/public/train.csv new file mode 100644 index 0000000000000000000000000000000000000000..4c8e5e0c5031fc7e8e25213132c1231950ec29da --- /dev/null +++ b/timecost/c7/forestdiffusion/forest-c7-20260430_060233/staged/public/train.csv @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:b37f6b2ef5257f40bd826ac956749881f0f474362bdb56e8c5728ad629242e3a +size 847349 diff --git a/timecost/c7/forestdiffusion/forest-c7-20260430_060233/staged/public/val.csv b/timecost/c7/forestdiffusion/forest-c7-20260430_060233/staged/public/val.csv new file mode 100644 index 0000000000000000000000000000000000000000..55792963756b1ae35b4d79dee11881372962b8d5 --- /dev/null +++ b/timecost/c7/forestdiffusion/forest-c7-20260430_060233/staged/public/val.csv @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:eff6dec27c3740661a1ae84dea391d690dfb60342bfd5d7527b903fdd6009780 +size 106192 diff --git a/timecost/c7/forestdiffusion/forest-c7-20260430_060233/train_20260430_060233.log b/timecost/c7/forestdiffusion/forest-c7-20260430_060233/train_20260430_060233.log new file mode 100644 index 0000000000000000000000000000000000000000..e988e6b010bf4e450e27b81aca035025e25c19f0 --- /dev/null +++ b/timecost/c7/forestdiffusion/forest-c7-20260430_060233/train_20260430_060233.log @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:e72c0374cc7780d3f6f49e146bf33296369d95dc6f834e858aed5aa66fc6c135 +size 423 diff --git a/timecost/c7/realtabformer/rtf-c7-20260429_070344/gen_20260429_080628.log b/timecost/c7/realtabformer/rtf-c7-20260429_070344/gen_20260429_080628.log new file mode 100644 index 0000000000000000000000000000000000000000..096f9fa19368256cf861933776ef0e192bd0b048 --- /dev/null +++ b/timecost/c7/realtabformer/rtf-c7-20260429_070344/gen_20260429_080628.log @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:c993a6d8c5fd63f10a377a0895bfc3f7df48e60e16bb6f3ca275eae0a86f3eb7 +size 5925 diff --git a/timecost/c7/realtabformer/rtf-c7-20260429_070344/input_snapshot.json b/timecost/c7/realtabformer/rtf-c7-20260429_070344/input_snapshot.json new file mode 100644 index 0000000000000000000000000000000000000000..5cb8340027fd23312ef3ea880b2dad6aa4ad18a5 --- /dev/null +++ b/timecost/c7/realtabformer/rtf-c7-20260429_070344/input_snapshot.json @@ -0,0 +1,36 @@ +{ + "dataset_id": "c7", + "model": "realtabformer", + "inputs": { + "train_csv": { + "path": "/data/jialinzhang/SynthesizePipeline-server/DatasetNew/c7/c7-train.csv", + "exists": true, + "size": 857718, + "sha256": "0ec97b49cecfd452f07551a63db7b812b5998a1e37101eae82255d00aa6a6243" + }, + "val_csv": { + "path": "/data/jialinzhang/SynthesizePipeline-server/DatasetNew/c7/c7-val.csv", + "exists": true, + "size": 107489, + "sha256": "4501bb2be19f7e13b7ff5e9dedd74e3dd42f2cafc8cefd5435bda61fc974a769" + }, + "test_csv": { + "path": "/data/jialinzhang/SynthesizePipeline-server/DatasetNew/c7/c7-test.csv", + "exists": true, + "size": 107327, + "sha256": "f9e808033a07feabb980addcf8c5f75111189ac2fb70993b8ad0f5ca3d5cfbae" + }, + "profile_json": { + "path": "/data/jialinzhang/SynthesizePipeline-server/DatasetNew/artifacts/data_core/tabular/c7/c7-dataset_profile.json", + "exists": true, + "size": 4014, + "sha256": "60424c615b91a26cf02d9bc1d7f91caa0ceb95bab39eb7cff6f9edea3ca0600e" + }, + "contract_json": { + "path": "/data/jialinzhang/SynthesizePipeline-server/DatasetNew/artifacts/data_core/tabular/c7/c7-dataset_contract_v1.json", + "exists": true, + "size": 4759, + "sha256": "79a434a1e2553b14b9f2e98c1adfc32a71aaa0d6cd49234f3f8a5603efca4ebd" + } + } +} \ No newline at end of file diff --git a/timecost/c7/realtabformer/rtf-c7-20260429_070344/models_100epochs/id000017774211802192011264/rtf_config.json b/timecost/c7/realtabformer/rtf-c7-20260429_070344/models_100epochs/id000017774211802192011264/rtf_config.json new file mode 100644 index 0000000000000000000000000000000000000000..38a6a75fad1d4bb9d611dbf1fe9aa2f19f7b5005 --- /dev/null +++ b/timecost/c7/realtabformer/rtf-c7-20260429_070344/models_100epochs/id000017774211802192011264/rtf_config.json @@ -0,0 +1 @@ +{"model_type": "tabular", "tabular_config": {"transformers_version": "5.5.3", "architectures": ["GPT2LMHeadModel"], "output_hidden_states": false, "return_dict": true, "dtype": "float32", "chunk_size_feed_forward": 0, "is_encoder_decoder": false, "id2label": {"0": "LABEL_0", "1": "LABEL_1"}, "label2id": {"LABEL_0": 0, "LABEL_1": 1}, "problem_type": null, "vocab_size": 43, "n_positions": 1024, "n_embd": 768, "n_layer": 6, "n_head": 12, "n_inner": null, "activation_function": "gelu_new", "resid_pdrop": 0.1, "embd_pdrop": 0.1, "attn_pdrop": 0.1, "layer_norm_epsilon": 1e-05, "initializer_range": 0.02, "summary_type": "cls_index", "summary_use_proj": true, "summary_activation": null, "summary_proj_to_labels": true, "summary_first_dropout": 0.1, "scale_attn_weights": true, "use_cache": false, "bos_token_id": 5, "eos_token_id": 6, "pad_token_id": null, "scale_attn_by_inverse_layer_idx": false, "reorder_and_upcast_attn": false, "add_cross_attention": false, "tie_word_embeddings": true, "_name_or_path": "", "model_type": "gpt2", "output_attentions": false}, "checkpoints_dir": "rtf_checkpoints", "samples_save_dir": "rtf_samples", "full_save_dir": "rtf_full_save", "epochs": 100, "batch_size": 8, "early_stopping_patience": 5, "early_stopping_threshold": 0, "training_args_kwargs": {"eval_strategy": "no", "output_dir": "rtf_checkpoints", "metric_for_best_model": "loss", "num_train_epochs": 100, "per_device_train_batch_size": 8, "per_device_eval_batch_size": 8, "gradient_accumulation_steps": 4, "remove_unused_columns": true, "logging_steps": 100, "save_steps": 100, "eval_steps": 100, "load_best_model_at_end": false, "save_total_limit": 6, "optim": "adamw_torch"}, "train_size": 1, "mask_rate": 0, "columns": ["parents", "has_nurs", "form", "children", "housing", "finance", "social", "health", "class"], "column_dtypes": {"parents": "object", "has_nurs": "object", "form": "object", "children": "object", "housing": "object", "finance": "object", "social": "object", "health": "object", "class": "object"}, "column_has_missing": {"parents": false, "has_nurs": false, "form": false, "children": false, "housing": false, "finance": false, "social": false, "health": false, "class": false}, "drop_na_cols": ["parents", "has_nurs", "form", "children", "housing", "finance", "social", "health", "class"], "processed_columns": ["0___CATEGORICAL___parents", "1___CATEGORICAL___has_nurs", "2___CATEGORICAL___form", "3___CATEGORICAL___children", "4___CATEGORICAL___housing", "5___CATEGORICAL___finance", "6___CATEGORICAL___social", "7___CATEGORICAL___health", "8___CATEGORICAL___class"], "numeric_columns": [], "datetime_columns": [], "vocab": {"id2token": {"0": "[UNK]", "1": "[SEP]", "2": "[PAD]", "3": "[CLS]", "4": "[MASK]", "5": "[BOS]", "6": "[EOS]", "7": "[BMEM]", "8": "[EMEM]", "9": "[RMASK]", "10": "[SPTYPE]", "11": "0___CATEGORICAL___parents___great_pret", "12": "0___CATEGORICAL___parents___pretentious", "13": "0___CATEGORICAL___parents___usual", "14": "1___CATEGORICAL___has_nurs___critical", "15": "1___CATEGORICAL___has_nurs___improper", "16": "1___CATEGORICAL___has_nurs___less_proper", "17": "1___CATEGORICAL___has_nurs___proper", "18": "1___CATEGORICAL___has_nurs___very_crit", "19": "2___CATEGORICAL___form___complete", "20": "2___CATEGORICAL___form___completed", "21": "2___CATEGORICAL___form___foster", "22": "2___CATEGORICAL___form___incomplete", "23": "3___CATEGORICAL___children___1", "24": "3___CATEGORICAL___children___2", "25": "3___CATEGORICAL___children___3", "26": "3___CATEGORICAL___children___more", "27": "4___CATEGORICAL___housing___convenient", "28": "4___CATEGORICAL___housing___critical", "29": "4___CATEGORICAL___housing___less_conv", "30": "5___CATEGORICAL___finance___convenient", "31": "5___CATEGORICAL___finance___inconv", "32": "6___CATEGORICAL___social___nonprob", "33": "6___CATEGORICAL___social___problematic", "34": "6___CATEGORICAL___social___slightly_prob", "35": "7___CATEGORICAL___health___not_recom", "36": "7___CATEGORICAL___health___priority", "37": "7___CATEGORICAL___health___recommended", "38": "8___CATEGORICAL___class___not_recom", "39": "8___CATEGORICAL___class___priority", "40": "8___CATEGORICAL___class___recommend", "41": "8___CATEGORICAL___class___spec_prior", "42": "8___CATEGORICAL___class___very_recom"}, "token2id": {"[UNK]": 0, "[SEP]": 1, "[PAD]": 2, "[CLS]": 3, "[MASK]": 4, "[BOS]": 5, "[EOS]": 6, "[BMEM]": 7, "[EMEM]": 8, "[RMASK]": 9, "[SPTYPE]": 10, "0___CATEGORICAL___parents___great_pret": 11, "0___CATEGORICAL___parents___pretentious": 12, "0___CATEGORICAL___parents___usual": 13, "1___CATEGORICAL___has_nurs___critical": 14, "1___CATEGORICAL___has_nurs___improper": 15, "1___CATEGORICAL___has_nurs___less_proper": 16, "1___CATEGORICAL___has_nurs___proper": 17, "1___CATEGORICAL___has_nurs___very_crit": 18, "2___CATEGORICAL___form___complete": 19, "2___CATEGORICAL___form___completed": 20, "2___CATEGORICAL___form___foster": 21, "2___CATEGORICAL___form___incomplete": 22, "3___CATEGORICAL___children___1": 23, "3___CATEGORICAL___children___2": 24, "3___CATEGORICAL___children___3": 25, "3___CATEGORICAL___children___more": 26, "4___CATEGORICAL___housing___convenient": 27, "4___CATEGORICAL___housing___critical": 28, "4___CATEGORICAL___housing___less_conv": 29, "5___CATEGORICAL___finance___convenient": 30, "5___CATEGORICAL___finance___inconv": 31, "6___CATEGORICAL___social___nonprob": 32, "6___CATEGORICAL___social___problematic": 33, "6___CATEGORICAL___social___slightly_prob": 34, "7___CATEGORICAL___health___not_recom": 35, "7___CATEGORICAL___health___priority": 36, "7___CATEGORICAL___health___recommended": 37, "8___CATEGORICAL___class___not_recom": 38, "8___CATEGORICAL___class___priority": 39, "8___CATEGORICAL___class___recommend": 40, "8___CATEGORICAL___class___spec_prior": 41, "8___CATEGORICAL___class___very_recom": 42}, "column_token_ids": {"0___CATEGORICAL___parents": [11, 12, 13], "1___CATEGORICAL___has_nurs": [14, 15, 16, 17, 18], "2___CATEGORICAL___form": [19, 20, 21, 22], "3___CATEGORICAL___children": [23, 24, 25, 26], "4___CATEGORICAL___housing": [27, 28, 29], "5___CATEGORICAL___finance": [30, 31], "6___CATEGORICAL___social": [32, 33, 34], "7___CATEGORICAL___health": [35, 36, 37], "8___CATEGORICAL___class": [38, 39, 40, 41, 42]}}, "tabular_max_length": 11, "relational_max_length": null, "tabular_col_size": 10368, "relational_col_size": null, "col_transform_data": {}, "in_col_transform_data": null, "col_idx_ids": {"0": [11, 12, 13], "1": [14, 15, 16, 17, 18], "2": [19, 20, 21, 22], "3": [23, 24, 25, 26], "4": [27, 28, 29], "5": [30, 31], "6": [32, 33, 34], "7": [35, 36, 37], "8": [38, 39, 40, 41, 42]}, "random_state": 1029, "numeric_nparts": 1, "numeric_precision": 4, "numeric_max_len": 10, "experiment_id": "id000017774211802192011264", "trainer_state": null, "target_col": null, "realtabformer_version": "0.2.4"} \ No newline at end of file diff --git a/timecost/c7/realtabformer/rtf-c7-20260429_070344/models_100epochs/id000017774211802192011264/rtf_model.pt b/timecost/c7/realtabformer/rtf-c7-20260429_070344/models_100epochs/id000017774211802192011264/rtf_model.pt new file mode 100644 index 0000000000000000000000000000000000000000..b36e5e172f9bcc0e4221ab6dc35087f54d4262f5 --- /dev/null +++ b/timecost/c7/realtabformer/rtf-c7-20260429_070344/models_100epochs/id000017774211802192011264/rtf_model.pt @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:d43274e2cc771b97e707d3dc05031533bf5904cff43532d1137abacd83df4608 +size 173422051 diff --git a/timecost/c7/realtabformer/rtf-c7-20260429_070344/public_gate/normalized_schema_snapshot.json b/timecost/c7/realtabformer/rtf-c7-20260429_070344/public_gate/normalized_schema_snapshot.json new file mode 100644 index 0000000000000000000000000000000000000000..3ea4859ec2aa245a19531b254f45d87237c23069 --- /dev/null +++ b/timecost/c7/realtabformer/rtf-c7-20260429_070344/public_gate/normalized_schema_snapshot.json @@ -0,0 +1,183 @@ +{ + "dataset_id": "c7", + "target_column": "class", + "task_type": "classification", + "columns": [ + { + "name": "parents", + "role": "feature", + "semantic_type": "categorical", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 3, + "unique_ratio": 0.000289, + "example_values": [ + "usual", + "pretentious", + "great_pret" + ] + } + }, + { + "name": "has_nurs", + "role": "feature", + "semantic_type": "categorical", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 5, + "unique_ratio": 0.000482, + "example_values": [ + "very_crit", + "critical", + "improper", + "less_proper", + "proper" + ] + } + }, + { + "name": "form", + "role": "feature", + "semantic_type": "categorical", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 4, + "unique_ratio": 0.000386, + "example_values": [ + "complete", + "completed", + "incomplete", + "foster" + ] + } + }, + { + "name": "children", + "role": "feature", + "semantic_type": "categorical", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 4, + "unique_ratio": 0.000386, + "example_values": [ + "1", + "3", + "2", + "more" + ] + } + }, + { + "name": "housing", + "role": "feature", + "semantic_type": "categorical", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 3, + "unique_ratio": 0.000289, + "example_values": [ + "less_conv", + "convenient", + "critical" + ] + } + }, + { + "name": "finance", + "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.000193, + "example_values": [ + "convenient", + "inconv" + ] + } + }, + { + "name": "social", + "role": "feature", + "semantic_type": "categorical", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 3, + "unique_ratio": 0.000289, + "example_values": [ + "slightly_prob", + "nonprob", + "problematic" + ] + } + }, + { + "name": "health", + "role": "feature", + "semantic_type": "categorical", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 3, + "unique_ratio": 0.000289, + "example_values": [ + "recommended", + "priority", + "not_recom" + ] + } + }, + { + "name": "class", + "role": "target", + "semantic_type": "categorical", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 5, + "unique_ratio": 0.000482, + "example_values": [ + "priority", + "spec_prior", + "not_recom", + "very_recom", + "recommend" + ] + } + } + ] +} \ No newline at end of file diff --git a/timecost/c7/realtabformer/rtf-c7-20260429_070344/public_gate/public_gate_report.json b/timecost/c7/realtabformer/rtf-c7-20260429_070344/public_gate/public_gate_report.json new file mode 100644 index 0000000000000000000000000000000000000000..3328fe59cd490a424e50f931e9eedba9e81d1cec --- /dev/null +++ b/timecost/c7/realtabformer/rtf-c7-20260429_070344/public_gate/public_gate_report.json @@ -0,0 +1,37 @@ +{ + "dataset_id": "c7", + "status": "pass", + "checks": [ + { + "check_id": "PG001_csv_parse_ok", + "status": "pass" + }, + { + "check_id": "PG002_split_header_consistent", + "status": "pass" + }, + { + "check_id": "PG003_profile_header_match", + "status": "pass" + }, + { + "check_id": "PG004_missing_token_normalized", + "status": "pass" + }, + { + "check_id": "PG005_semantic_type_validated", + "status": "pass" + }, + { + "check_id": "PG006_target_defined_and_valid", + "status": "pass" + } + ], + "target_column": "class", + "task_type": "classification", + "input_splits": { + "train": "/data/jialinzhang/SynthesizePipeline-server/DatasetNew/c7/c7-train.csv", + "val": "/data/jialinzhang/SynthesizePipeline-server/DatasetNew/c7/c7-val.csv", + "test": "/data/jialinzhang/SynthesizePipeline-server/DatasetNew/c7/c7-test.csv" + } +} \ No newline at end of file diff --git a/timecost/c7/realtabformer/rtf-c7-20260429_070344/public_gate/staged_input_manifest.json b/timecost/c7/realtabformer/rtf-c7-20260429_070344/public_gate/staged_input_manifest.json new file mode 100644 index 0000000000000000000000000000000000000000..614edeb2d9fbda62a355db9f5d6c2a379ad4cb9b --- /dev/null +++ b/timecost/c7/realtabformer/rtf-c7-20260429_070344/public_gate/staged_input_manifest.json @@ -0,0 +1,188 @@ +{ + "dataset_id": "c7", + "target_column": "class", + "task_type": "classification", + "train_csv": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/c7/realtabformer/rtf-c7-20260429_070344/staged/public/train.csv", + "val_csv": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/c7/realtabformer/rtf-c7-20260429_070344/staged/public/val.csv", + "test_csv": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/c7/realtabformer/rtf-c7-20260429_070344/staged/public/test.csv", + "features_json": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/c7/realtabformer/rtf-c7-20260429_070344/staged/public/staged_features.json", + "public_gate_report": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/c7/realtabformer/rtf-c7-20260429_070344/public_gate/public_gate_report.json", + "column_schema": [ + { + "name": "parents", + "role": "feature", + "semantic_type": "categorical", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 3, + "unique_ratio": 0.000289, + "example_values": [ + "usual", + "pretentious", + "great_pret" + ] + } + }, + { + "name": "has_nurs", + "role": "feature", + "semantic_type": "categorical", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 5, + "unique_ratio": 0.000482, + "example_values": [ + "very_crit", + "critical", + "improper", + "less_proper", + "proper" + ] + } + }, + { + "name": "form", + "role": "feature", + "semantic_type": "categorical", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 4, + "unique_ratio": 0.000386, + "example_values": [ + "complete", + "completed", + "incomplete", + "foster" + ] + } + }, + { + "name": "children", + "role": "feature", + "semantic_type": "categorical", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 4, + "unique_ratio": 0.000386, + "example_values": [ + "1", + "3", + "2", + "more" + ] + } + }, + { + "name": "housing", + "role": "feature", + "semantic_type": "categorical", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 3, + "unique_ratio": 0.000289, + "example_values": [ + "less_conv", + "convenient", + "critical" + ] + } + }, + { + "name": "finance", + "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.000193, + "example_values": [ + "convenient", + "inconv" + ] + } + }, + { + "name": "social", + "role": "feature", + "semantic_type": "categorical", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 3, + "unique_ratio": 0.000289, + "example_values": [ + "slightly_prob", + "nonprob", + "problematic" + ] + } + }, + { + "name": "health", + "role": "feature", + "semantic_type": "categorical", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 3, + "unique_ratio": 0.000289, + "example_values": [ + "recommended", + "priority", + "not_recom" + ] + } + }, + { + "name": "class", + "role": "target", + "semantic_type": "categorical", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 5, + "unique_ratio": 0.000482, + "example_values": [ + "priority", + "spec_prior", + "not_recom", + "very_recom", + "recommend" + ] + } + } + ] +} \ No newline at end of file diff --git a/timecost/c7/realtabformer/rtf-c7-20260429_070344/realtabformer_features.json b/timecost/c7/realtabformer/rtf-c7-20260429_070344/realtabformer_features.json new file mode 100644 index 0000000000000000000000000000000000000000..0e23df6bcfb7ecfd44dfefc3d0ca0bf6b6aebc60 --- /dev/null +++ b/timecost/c7/realtabformer/rtf-c7-20260429_070344/realtabformer_features.json @@ -0,0 +1,47 @@ +[ + { + "feature_name": "parents", + "data_type": "categorical", + "is_target": false + }, + { + "feature_name": "has_nurs", + "data_type": "categorical", + "is_target": false + }, + { + "feature_name": "form", + "data_type": "categorical", + "is_target": false + }, + { + "feature_name": "children", + "data_type": "categorical", + "is_target": false + }, + { + "feature_name": "housing", + "data_type": "categorical", + "is_target": false + }, + { + "feature_name": "finance", + "data_type": "categorical", + "is_target": false + }, + { + "feature_name": "social", + "data_type": "categorical", + "is_target": false + }, + { + "feature_name": "health", + "data_type": "categorical", + "is_target": false + }, + { + "feature_name": "class", + "data_type": "categorical", + "is_target": true + } +] \ No newline at end of file diff --git a/timecost/c7/realtabformer/rtf-c7-20260429_070344/rtf-c7-10368-20260429_080628.csv b/timecost/c7/realtabformer/rtf-c7-20260429_070344/rtf-c7-10368-20260429_080628.csv new file mode 100644 index 0000000000000000000000000000000000000000..08305702a4f102f428c6941a44083d526901c0ec --- /dev/null +++ b/timecost/c7/realtabformer/rtf-c7-20260429_070344/rtf-c7-10368-20260429_080628.csv @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:eacf53ac9d10b76c72b503f5c35fe21da383e209117fd9cb98ffccc21895fbc7 +size 848494 diff --git a/timecost/c7/realtabformer/rtf-c7-20260429_070344/rtf_checkpoints/checkpoint-32000/config.json b/timecost/c7/realtabformer/rtf-c7-20260429_070344/rtf_checkpoints/checkpoint-32000/config.json new file mode 100644 index 0000000000000000000000000000000000000000..2f4b2de295e37af41a4d510862dce45d9dafa48a --- /dev/null +++ b/timecost/c7/realtabformer/rtf-c7-20260429_070344/rtf_checkpoints/checkpoint-32000/config.json @@ -0,0 +1,34 @@ +{ + "activation_function": "gelu_new", + "add_cross_attention": false, + "architectures": [ + "GPT2LMHeadModel" + ], + "attn_pdrop": 0.1, + "bos_token_id": 5, + "dtype": "float32", + "embd_pdrop": 0.1, + "eos_token_id": 6, + "initializer_range": 0.02, + "layer_norm_epsilon": 1e-05, + "model_type": "gpt2", + "n_embd": 768, + "n_head": 12, + "n_inner": null, + "n_layer": 6, + "n_positions": 1024, + "pad_token_id": null, + "reorder_and_upcast_attn": false, + "resid_pdrop": 0.1, + "scale_attn_by_inverse_layer_idx": false, + "scale_attn_weights": true, + "summary_activation": null, + "summary_first_dropout": 0.1, + "summary_proj_to_labels": true, + "summary_type": "cls_index", + "summary_use_proj": true, + "tie_word_embeddings": true, + "transformers_version": "5.5.3", + "use_cache": false, + "vocab_size": 43 +} diff --git a/timecost/c7/realtabformer/rtf-c7-20260429_070344/rtf_checkpoints/checkpoint-32000/generation_config.json b/timecost/c7/realtabformer/rtf-c7-20260429_070344/rtf_checkpoints/checkpoint-32000/generation_config.json new file mode 100644 index 0000000000000000000000000000000000000000..ffe89567780e75b5c22eade9be971483b9618f39 --- /dev/null +++ b/timecost/c7/realtabformer/rtf-c7-20260429_070344/rtf_checkpoints/checkpoint-32000/generation_config.json @@ -0,0 +1,9 @@ +{ + "_from_model_config": true, + "bos_token_id": 5, + "eos_token_id": 6, + "output_attentions": false, + "output_hidden_states": false, + "transformers_version": "5.5.3", + "use_cache": true +} diff --git a/timecost/c7/realtabformer/rtf-c7-20260429_070344/rtf_checkpoints/checkpoint-32000/model.safetensors b/timecost/c7/realtabformer/rtf-c7-20260429_070344/rtf_checkpoints/checkpoint-32000/model.safetensors new file mode 100644 index 0000000000000000000000000000000000000000..b5e4e99b73a91464f30d7162297fe18568653466 --- /dev/null +++ b/timecost/c7/realtabformer/rtf-c7-20260429_070344/rtf_checkpoints/checkpoint-32000/model.safetensors @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:817f9ea69419221eeae439087e91dc36fe57f36f81662fdeb84deb29f1b2a172 +size 173400520 diff --git a/timecost/c7/realtabformer/rtf-c7-20260429_070344/rtf_checkpoints/checkpoint-32000/optimizer.pt b/timecost/c7/realtabformer/rtf-c7-20260429_070344/rtf_checkpoints/checkpoint-32000/optimizer.pt new file mode 100644 index 0000000000000000000000000000000000000000..39b983217b4f9b71b4d29f31895d77d09a9c4681 --- /dev/null +++ b/timecost/c7/realtabformer/rtf-c7-20260429_070344/rtf_checkpoints/checkpoint-32000/optimizer.pt @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:f67c0787adc172b2ebd78c2c7f729081318534debf2d415f29d1a664dc73f26d +size 346850059 diff --git a/timecost/c7/realtabformer/rtf-c7-20260429_070344/rtf_checkpoints/checkpoint-32000/rng_state.pth b/timecost/c7/realtabformer/rtf-c7-20260429_070344/rtf_checkpoints/checkpoint-32000/rng_state.pth new file mode 100644 index 0000000000000000000000000000000000000000..08de2b04c1bb20d8ba767495362b361d0cc141ec --- /dev/null +++ b/timecost/c7/realtabformer/rtf-c7-20260429_070344/rtf_checkpoints/checkpoint-32000/rng_state.pth @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:28d4dbc76821e5abc06af2ea2a7b49ebbae2c8e5ef697808eac11c34654142e0 +size 14645 diff --git a/timecost/c7/realtabformer/rtf-c7-20260429_070344/rtf_checkpoints/checkpoint-32000/scaler.pt b/timecost/c7/realtabformer/rtf-c7-20260429_070344/rtf_checkpoints/checkpoint-32000/scaler.pt new file mode 100644 index 0000000000000000000000000000000000000000..5f243c43374408e6f5236b7a8b5a505b219100e8 --- /dev/null +++ b/timecost/c7/realtabformer/rtf-c7-20260429_070344/rtf_checkpoints/checkpoint-32000/scaler.pt @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:1b62607ce1898455cff8bcb90592183845e9fbbc6f2cc287dcc20295a3738311 +size 1383 diff --git a/timecost/c7/realtabformer/rtf-c7-20260429_070344/rtf_checkpoints/checkpoint-32000/scheduler.pt b/timecost/c7/realtabformer/rtf-c7-20260429_070344/rtf_checkpoints/checkpoint-32000/scheduler.pt new file mode 100644 index 0000000000000000000000000000000000000000..d053a04f51adfeefc152bf47f7649119d7cf4c11 --- /dev/null +++ b/timecost/c7/realtabformer/rtf-c7-20260429_070344/rtf_checkpoints/checkpoint-32000/scheduler.pt @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:92bc00b957a3cf095065fa9fc60a764f0f8c78dce459ba4c97316fda419cc346 +size 1465 diff --git a/timecost/c7/realtabformer/rtf-c7-20260429_070344/rtf_checkpoints/checkpoint-32000/trainer_state.json b/timecost/c7/realtabformer/rtf-c7-20260429_070344/rtf_checkpoints/checkpoint-32000/trainer_state.json new file mode 100644 index 0000000000000000000000000000000000000000..faa27b1af9c14fd1d818ee8e57f3ba808720ae05 --- /dev/null +++ b/timecost/c7/realtabformer/rtf-c7-20260429_070344/rtf_checkpoints/checkpoint-32000/trainer_state.json @@ -0,0 +1,2274 @@ +{ + "best_global_step": null, + "best_metric": null, + "best_model_checkpoint": null, + "epoch": 98.76543209876543, + "eval_steps": 100, + "global_step": 32000, + "is_hyper_param_search": false, + "is_local_process_zero": true, + "is_world_process_zero": true, + "log_history": [ + { + "epoch": 0.30864197530864196, + "grad_norm": 0.5975016355514526, + "learning_rate": 4.9847222222222224e-05, + "loss": 1.1053435516357422, + "step": 100 + }, + { + "epoch": 0.6172839506172839, + "grad_norm": 0.4975835680961609, + "learning_rate": 4.96929012345679e-05, + "loss": 0.913399429321289, + "step": 200 + }, + { + "epoch": 0.9259259259259259, + "grad_norm": 0.5069450736045837, + "learning_rate": 4.9538580246913586e-05, + "loss": 0.9037506866455078, + "step": 300 + }, + { + "epoch": 1.2345679012345678, + "grad_norm": 0.3577662706375122, + "learning_rate": 4.9384259259259264e-05, + "loss": 0.8971150207519532, + "step": 400 + }, + { + "epoch": 1.5432098765432098, + "grad_norm": 0.37501809000968933, + "learning_rate": 4.922993827160494e-05, + "loss": 0.8930672454833984, + "step": 500 + }, + { + "epoch": 1.8518518518518519, + "grad_norm": 0.3230942487716675, + "learning_rate": 4.907561728395062e-05, + "loss": 0.8911088562011719, + "step": 600 + }, + { + "epoch": 2.1604938271604937, + "grad_norm": 0.31315380334854126, + "learning_rate": 4.89212962962963e-05, + "loss": 0.8870069122314453, + "step": 700 + }, + { + "epoch": 2.4691358024691357, + "grad_norm": 0.3408145606517792, + "learning_rate": 4.8766975308641975e-05, + "loss": 0.8845426177978516, + "step": 800 + }, + { + "epoch": 2.7777777777777777, + "grad_norm": 0.34649044275283813, + "learning_rate": 4.861265432098765e-05, + "loss": 0.8816167449951172, + "step": 900 + }, + { + "epoch": 3.0864197530864197, + "grad_norm": 0.2891448140144348, + "learning_rate": 4.845833333333334e-05, + "loss": 0.8816600799560547, + "step": 1000 + }, + { + "epoch": 3.3950617283950617, + "grad_norm": 0.3047502636909485, + "learning_rate": 4.8304012345679014e-05, + "loss": 0.8813356018066406, + "step": 1100 + }, + { + "epoch": 3.7037037037037037, + "grad_norm": 0.34682637453079224, + "learning_rate": 4.81496913580247e-05, + "loss": 0.8769812774658203, + "step": 1200 + }, + { + "epoch": 4.012345679012346, + "grad_norm": 0.3608556091785431, + "learning_rate": 4.7995370370370376e-05, + "loss": 0.8777651977539063, + "step": 1300 + }, + { + "epoch": 4.320987654320987, + "grad_norm": 0.3927426338195801, + "learning_rate": 4.7841049382716054e-05, + "loss": 0.8768961334228516, + "step": 1400 + }, + { + "epoch": 4.62962962962963, + "grad_norm": 0.2639325261116028, + "learning_rate": 4.768672839506173e-05, + "loss": 0.8781243133544921, + "step": 1500 + }, + { + "epoch": 4.938271604938271, + "grad_norm": 0.35398051142692566, + "learning_rate": 4.753240740740741e-05, + "loss": 0.87546630859375, + "step": 1600 + }, + { + "epoch": 5.246913580246914, + "grad_norm": 0.305637001991272, + "learning_rate": 4.737808641975309e-05, + "loss": 0.8746750640869141, + "step": 1700 + }, + { + "epoch": 5.555555555555555, + "grad_norm": 0.217234268784523, + "learning_rate": 4.7223765432098765e-05, + "loss": 0.8738501739501953, + "step": 1800 + }, + { + "epoch": 5.864197530864198, + "grad_norm": 0.3149331510066986, + "learning_rate": 4.706944444444445e-05, + "loss": 0.8732035064697266, + "step": 1900 + }, + { + "epoch": 6.172839506172839, + "grad_norm": 0.26609405875205994, + "learning_rate": 4.691512345679013e-05, + "loss": 0.8728971862792969, + "step": 2000 + }, + { + "epoch": 6.481481481481482, + "grad_norm": 0.31683775782585144, + "learning_rate": 4.6760802469135805e-05, + "loss": 0.8713655853271485, + "step": 2100 + }, + { + "epoch": 6.790123456790123, + "grad_norm": 0.34013745188713074, + "learning_rate": 4.660648148148148e-05, + "loss": 0.8744948577880859, + "step": 2200 + }, + { + "epoch": 7.098765432098766, + "grad_norm": 0.22860896587371826, + "learning_rate": 4.645216049382716e-05, + "loss": 0.8739882659912109, + "step": 2300 + }, + { + "epoch": 7.407407407407407, + "grad_norm": 0.37235602736473083, + "learning_rate": 4.629783950617284e-05, + "loss": 0.8726573944091797, + "step": 2400 + }, + { + "epoch": 7.716049382716049, + "grad_norm": 0.23996835947036743, + "learning_rate": 4.614351851851852e-05, + "loss": 0.8695323944091797, + "step": 2500 + }, + { + "epoch": 8.024691358024691, + "grad_norm": 0.27126339077949524, + "learning_rate": 4.59891975308642e-05, + "loss": 0.8710608673095703, + "step": 2600 + }, + { + "epoch": 8.333333333333334, + "grad_norm": 0.3054942190647125, + "learning_rate": 4.5834876543209884e-05, + "loss": 0.870329360961914, + "step": 2700 + }, + { + "epoch": 8.641975308641975, + "grad_norm": 0.32970622181892395, + "learning_rate": 4.568055555555556e-05, + "loss": 0.8703945922851563, + "step": 2800 + }, + { + "epoch": 8.950617283950617, + "grad_norm": 0.24803043901920319, + "learning_rate": 4.552623456790124e-05, + "loss": 0.8710511779785156, + "step": 2900 + }, + { + "epoch": 9.25925925925926, + "grad_norm": 0.4170224964618683, + "learning_rate": 4.537191358024692e-05, + "loss": 0.8694993591308594, + "step": 3000 + }, + { + "epoch": 9.567901234567902, + "grad_norm": 0.26911184191703796, + "learning_rate": 4.5217592592592595e-05, + "loss": 0.870486068725586, + "step": 3100 + }, + { + "epoch": 9.876543209876543, + "grad_norm": 0.30582156777381897, + "learning_rate": 4.506327160493827e-05, + "loss": 0.8719473266601563, + "step": 3200 + }, + { + "epoch": 10.185185185185185, + "grad_norm": 0.29516837000846863, + "learning_rate": 4.490895061728395e-05, + "loss": 0.8712838745117187, + "step": 3300 + }, + { + "epoch": 10.493827160493828, + "grad_norm": 0.28133177757263184, + "learning_rate": 4.475462962962963e-05, + "loss": 0.8699048614501953, + "step": 3400 + }, + { + "epoch": 10.802469135802468, + "grad_norm": 0.38596439361572266, + "learning_rate": 4.4600308641975306e-05, + "loss": 0.8712091064453125, + "step": 3500 + }, + { + "epoch": 11.11111111111111, + "grad_norm": 0.2777452766895294, + "learning_rate": 4.444598765432099e-05, + "loss": 0.8693663787841797, + "step": 3600 + }, + { + "epoch": 11.419753086419753, + "grad_norm": 0.4119755029678345, + "learning_rate": 4.429166666666667e-05, + "loss": 0.8681372833251954, + "step": 3700 + }, + { + "epoch": 11.728395061728396, + "grad_norm": 0.2371830940246582, + "learning_rate": 4.4137345679012346e-05, + "loss": 0.8699448394775391, + "step": 3800 + }, + { + "epoch": 12.037037037037036, + "grad_norm": 0.22597350180149078, + "learning_rate": 4.3983024691358023e-05, + "loss": 0.8695160675048829, + "step": 3900 + }, + { + "epoch": 12.345679012345679, + "grad_norm": 0.2682456970214844, + "learning_rate": 4.382870370370371e-05, + "loss": 0.8695050811767578, + "step": 4000 + }, + { + "epoch": 12.654320987654321, + "grad_norm": 0.29016727209091187, + "learning_rate": 4.3674382716049386e-05, + "loss": 0.8679987335205078, + "step": 4100 + }, + { + "epoch": 12.962962962962964, + "grad_norm": 0.26374146342277527, + "learning_rate": 4.352006172839506e-05, + "loss": 0.8693247222900391, + "step": 4200 + }, + { + "epoch": 13.271604938271604, + "grad_norm": 0.29962387681007385, + "learning_rate": 4.336574074074074e-05, + "loss": 0.8679438781738281, + "step": 4300 + }, + { + "epoch": 13.580246913580247, + "grad_norm": 0.29223865270614624, + "learning_rate": 4.3211419753086425e-05, + "loss": 0.8687114715576172, + "step": 4400 + }, + { + "epoch": 13.88888888888889, + "grad_norm": 0.37939226627349854, + "learning_rate": 4.30570987654321e-05, + "loss": 0.8680426025390625, + "step": 4500 + }, + { + "epoch": 14.197530864197532, + "grad_norm": 0.3423369526863098, + "learning_rate": 4.290277777777778e-05, + "loss": 0.8689276123046875, + "step": 4600 + }, + { + "epoch": 14.506172839506172, + "grad_norm": 0.36750486493110657, + "learning_rate": 4.274845679012346e-05, + "loss": 0.8679615783691407, + "step": 4700 + }, + { + "epoch": 14.814814814814815, + "grad_norm": 0.35079503059387207, + "learning_rate": 4.2594135802469136e-05, + "loss": 0.8678194427490235, + "step": 4800 + }, + { + "epoch": 15.123456790123457, + "grad_norm": 0.22617663443088531, + "learning_rate": 4.2439814814814814e-05, + "loss": 0.8699114990234375, + "step": 4900 + }, + { + "epoch": 15.432098765432098, + "grad_norm": 0.3365887999534607, + "learning_rate": 4.228549382716049e-05, + "loss": 0.8693661499023437, + "step": 5000 + }, + { + "epoch": 15.74074074074074, + "grad_norm": 0.29944780468940735, + "learning_rate": 4.213117283950617e-05, + "loss": 0.8680919647216797, + "step": 5100 + }, + { + "epoch": 16.049382716049383, + "grad_norm": 0.29136228561401367, + "learning_rate": 4.1976851851851854e-05, + "loss": 0.868043212890625, + "step": 5200 + }, + { + "epoch": 16.358024691358025, + "grad_norm": 0.24972350895404816, + "learning_rate": 4.182253086419753e-05, + "loss": 0.8676002502441407, + "step": 5300 + }, + { + "epoch": 16.666666666666668, + "grad_norm": 0.3150668442249298, + "learning_rate": 4.1668209876543216e-05, + "loss": 0.868660659790039, + "step": 5400 + }, + { + "epoch": 16.97530864197531, + "grad_norm": 0.3512415587902069, + "learning_rate": 4.1513888888888894e-05, + "loss": 0.8682049560546875, + "step": 5500 + }, + { + "epoch": 17.28395061728395, + "grad_norm": 0.3164934515953064, + "learning_rate": 4.135956790123457e-05, + "loss": 0.8676078033447265, + "step": 5600 + }, + { + "epoch": 17.59259259259259, + "grad_norm": 0.2696605324745178, + "learning_rate": 4.120524691358025e-05, + "loss": 0.8678233337402343, + "step": 5700 + }, + { + "epoch": 17.901234567901234, + "grad_norm": 0.345699280500412, + "learning_rate": 4.105092592592593e-05, + "loss": 0.8660729217529297, + "step": 5800 + }, + { + "epoch": 18.209876543209877, + "grad_norm": 0.2393321543931961, + "learning_rate": 4.0896604938271604e-05, + "loss": 0.86662109375, + "step": 5900 + }, + { + "epoch": 18.51851851851852, + "grad_norm": 0.23627376556396484, + "learning_rate": 4.074228395061729e-05, + "loss": 0.8684516906738281, + "step": 6000 + }, + { + "epoch": 18.82716049382716, + "grad_norm": 0.22598141431808472, + "learning_rate": 4.0587962962962966e-05, + "loss": 0.8676165771484375, + "step": 6100 + }, + { + "epoch": 19.135802469135804, + "grad_norm": 0.29334530234336853, + "learning_rate": 4.0433641975308644e-05, + "loss": 0.8662307739257813, + "step": 6200 + }, + { + "epoch": 19.444444444444443, + "grad_norm": 0.23827306926250458, + "learning_rate": 4.027932098765432e-05, + "loss": 0.8666460418701172, + "step": 6300 + }, + { + "epoch": 19.753086419753085, + "grad_norm": 0.29057374596595764, + "learning_rate": 4.0125e-05, + "loss": 0.8675463104248047, + "step": 6400 + }, + { + "epoch": 20.061728395061728, + "grad_norm": 0.3120971918106079, + "learning_rate": 3.997067901234568e-05, + "loss": 0.8672868347167969, + "step": 6500 + }, + { + "epoch": 20.37037037037037, + "grad_norm": 0.412092924118042, + "learning_rate": 3.9816358024691355e-05, + "loss": 0.8670984649658203, + "step": 6600 + }, + { + "epoch": 20.679012345679013, + "grad_norm": 0.2982257306575775, + "learning_rate": 3.966203703703704e-05, + "loss": 0.8685931396484375, + "step": 6700 + }, + { + "epoch": 20.987654320987655, + "grad_norm": 0.2703470289707184, + "learning_rate": 3.950771604938272e-05, + "loss": 0.8666371917724609, + "step": 6800 + }, + { + "epoch": 21.296296296296298, + "grad_norm": 0.3358808159828186, + "learning_rate": 3.93533950617284e-05, + "loss": 0.8664039611816406, + "step": 6900 + }, + { + "epoch": 21.604938271604937, + "grad_norm": 0.3047441244125366, + "learning_rate": 3.919907407407408e-05, + "loss": 0.8664222717285156, + "step": 7000 + }, + { + "epoch": 21.91358024691358, + "grad_norm": 0.28871631622314453, + "learning_rate": 3.904475308641976e-05, + "loss": 0.8676378631591797, + "step": 7100 + }, + { + "epoch": 22.22222222222222, + "grad_norm": 0.29110872745513916, + "learning_rate": 3.8890432098765435e-05, + "loss": 0.8660447692871094, + "step": 7200 + }, + { + "epoch": 22.530864197530864, + "grad_norm": 0.2692337930202484, + "learning_rate": 3.873611111111111e-05, + "loss": 0.8669923400878906, + "step": 7300 + }, + { + "epoch": 22.839506172839506, + "grad_norm": 0.31768998503685, + "learning_rate": 3.858179012345679e-05, + "loss": 0.8663272094726563, + "step": 7400 + }, + { + "epoch": 23.14814814814815, + "grad_norm": 0.22150367498397827, + "learning_rate": 3.842746913580247e-05, + "loss": 0.8668128967285156, + "step": 7500 + }, + { + "epoch": 23.45679012345679, + "grad_norm": 0.23608367145061493, + "learning_rate": 3.827314814814815e-05, + "loss": 0.8661857604980469, + "step": 7600 + }, + { + "epoch": 23.765432098765434, + "grad_norm": 0.23709823191165924, + "learning_rate": 3.811882716049383e-05, + "loss": 0.8668611145019531, + "step": 7700 + }, + { + "epoch": 24.074074074074073, + "grad_norm": 0.2794584333896637, + "learning_rate": 3.796450617283951e-05, + "loss": 0.8664863586425782, + "step": 7800 + }, + { + "epoch": 24.382716049382715, + "grad_norm": 0.35239988565444946, + "learning_rate": 3.7810185185185185e-05, + "loss": 0.8656664276123047, + "step": 7900 + }, + { + "epoch": 24.691358024691358, + "grad_norm": 0.3032480776309967, + "learning_rate": 3.765586419753086e-05, + "loss": 0.8664974212646485, + "step": 8000 + }, + { + "epoch": 25.0, + "grad_norm": 0.32895025610923767, + "learning_rate": 3.750154320987655e-05, + "loss": 0.8656834411621094, + "step": 8100 + }, + { + "epoch": 25.308641975308642, + "grad_norm": 0.24647651612758636, + "learning_rate": 3.7347222222222225e-05, + "loss": 0.8668187713623047, + "step": 8200 + }, + { + "epoch": 25.617283950617285, + "grad_norm": 0.3259798288345337, + "learning_rate": 3.71929012345679e-05, + "loss": 0.8659412384033203, + "step": 8300 + }, + { + "epoch": 25.925925925925927, + "grad_norm": 0.29342758655548096, + "learning_rate": 3.703858024691359e-05, + "loss": 0.865984115600586, + "step": 8400 + }, + { + "epoch": 26.234567901234566, + "grad_norm": 0.18561498820781708, + "learning_rate": 3.6884259259259265e-05, + "loss": 0.8656551361083984, + "step": 8500 + }, + { + "epoch": 26.54320987654321, + "grad_norm": 0.24412372708320618, + "learning_rate": 3.672993827160494e-05, + "loss": 0.8654991912841797, + "step": 8600 + }, + { + "epoch": 26.85185185185185, + "grad_norm": 0.2831413447856903, + "learning_rate": 3.657561728395062e-05, + "loss": 0.8658388519287109, + "step": 8700 + }, + { + "epoch": 27.160493827160494, + "grad_norm": 0.27400529384613037, + "learning_rate": 3.64212962962963e-05, + "loss": 0.8661294555664063, + "step": 8800 + }, + { + "epoch": 27.469135802469136, + "grad_norm": 0.30983632802963257, + "learning_rate": 3.6266975308641976e-05, + "loss": 0.866031265258789, + "step": 8900 + }, + { + "epoch": 27.77777777777778, + "grad_norm": 0.3088923990726471, + "learning_rate": 3.611265432098765e-05, + "loss": 0.8667101287841796, + "step": 9000 + }, + { + "epoch": 28.08641975308642, + "grad_norm": 0.23197945952415466, + "learning_rate": 3.595833333333333e-05, + "loss": 0.8657314300537109, + "step": 9100 + }, + { + "epoch": 28.395061728395063, + "grad_norm": 0.32310914993286133, + "learning_rate": 3.5804012345679015e-05, + "loss": 0.8657714080810547, + "step": 9200 + }, + { + "epoch": 28.703703703703702, + "grad_norm": 0.2674392759799957, + "learning_rate": 3.564969135802469e-05, + "loss": 0.8655484771728515, + "step": 9300 + }, + { + "epoch": 29.012345679012345, + "grad_norm": 0.25402772426605225, + "learning_rate": 3.549537037037037e-05, + "loss": 0.8671824645996093, + "step": 9400 + }, + { + "epoch": 29.320987654320987, + "grad_norm": 0.2903260886669159, + "learning_rate": 3.534104938271605e-05, + "loss": 0.8659280395507812, + "step": 9500 + }, + { + "epoch": 29.62962962962963, + "grad_norm": 0.2330218255519867, + "learning_rate": 3.518672839506173e-05, + "loss": 0.8649930572509765, + "step": 9600 + }, + { + "epoch": 29.938271604938272, + "grad_norm": 0.31311362981796265, + "learning_rate": 3.503240740740741e-05, + "loss": 0.865321044921875, + "step": 9700 + }, + { + "epoch": 30.246913580246915, + "grad_norm": 0.3377930223941803, + "learning_rate": 3.487808641975309e-05, + "loss": 0.8644564056396484, + "step": 9800 + }, + { + "epoch": 30.555555555555557, + "grad_norm": 0.3928042948246002, + "learning_rate": 3.4723765432098766e-05, + "loss": 0.8649266815185547, + "step": 9900 + }, + { + "epoch": 30.864197530864196, + "grad_norm": 0.2636756896972656, + "learning_rate": 3.456944444444445e-05, + "loss": 0.865054931640625, + "step": 10000 + }, + { + "epoch": 31.17283950617284, + "grad_norm": 0.28490859270095825, + "learning_rate": 3.441512345679013e-05, + "loss": 0.8649151611328125, + "step": 10100 + }, + { + "epoch": 31.48148148148148, + "grad_norm": 0.15659233927726746, + "learning_rate": 3.4260802469135806e-05, + "loss": 0.8644688415527344, + "step": 10200 + }, + { + "epoch": 31.790123456790123, + "grad_norm": 0.2705706059932709, + "learning_rate": 3.4106481481481484e-05, + "loss": 0.8652298736572266, + "step": 10300 + }, + { + "epoch": 32.098765432098766, + "grad_norm": 0.2109704315662384, + "learning_rate": 3.395216049382716e-05, + "loss": 0.8646073150634765, + "step": 10400 + }, + { + "epoch": 32.407407407407405, + "grad_norm": 0.4892992079257965, + "learning_rate": 3.379783950617284e-05, + "loss": 0.8661848449707031, + "step": 10500 + }, + { + "epoch": 32.71604938271605, + "grad_norm": 0.24907298386096954, + "learning_rate": 3.364351851851852e-05, + "loss": 0.8667823028564453, + "step": 10600 + }, + { + "epoch": 33.02469135802469, + "grad_norm": 0.252615749835968, + "learning_rate": 3.3489197530864194e-05, + "loss": 0.8658191680908203, + "step": 10700 + }, + { + "epoch": 33.333333333333336, + "grad_norm": 0.2954252362251282, + "learning_rate": 3.333487654320988e-05, + "loss": 0.8650070190429687, + "step": 10800 + }, + { + "epoch": 33.641975308641975, + "grad_norm": 0.25497448444366455, + "learning_rate": 3.3180555555555556e-05, + "loss": 0.8645931243896484, + "step": 10900 + }, + { + "epoch": 33.95061728395062, + "grad_norm": 0.21472449600696564, + "learning_rate": 3.3026234567901234e-05, + "loss": 0.8647118377685546, + "step": 11000 + }, + { + "epoch": 34.25925925925926, + "grad_norm": 0.2599078118801117, + "learning_rate": 3.287191358024692e-05, + "loss": 0.8644834136962891, + "step": 11100 + }, + { + "epoch": 34.5679012345679, + "grad_norm": 0.22373680770397186, + "learning_rate": 3.2717592592592596e-05, + "loss": 0.8649051666259766, + "step": 11200 + }, + { + "epoch": 34.876543209876544, + "grad_norm": 0.26835867762565613, + "learning_rate": 3.2563271604938274e-05, + "loss": 0.8655126953125, + "step": 11300 + }, + { + "epoch": 35.18518518518518, + "grad_norm": 0.27637186646461487, + "learning_rate": 3.240895061728395e-05, + "loss": 0.8649341583251953, + "step": 11400 + }, + { + "epoch": 35.49382716049383, + "grad_norm": 0.24539203941822052, + "learning_rate": 3.225462962962963e-05, + "loss": 0.8642951202392578, + "step": 11500 + }, + { + "epoch": 35.80246913580247, + "grad_norm": 0.237693190574646, + "learning_rate": 3.210030864197531e-05, + "loss": 0.8649242401123047, + "step": 11600 + }, + { + "epoch": 36.111111111111114, + "grad_norm": 0.31651604175567627, + "learning_rate": 3.194598765432099e-05, + "loss": 0.8645661926269531, + "step": 11700 + }, + { + "epoch": 36.41975308641975, + "grad_norm": 0.2650340497493744, + "learning_rate": 3.179166666666667e-05, + "loss": 0.8651156616210938, + "step": 11800 + }, + { + "epoch": 36.72839506172839, + "grad_norm": 0.25851109623908997, + "learning_rate": 3.163734567901235e-05, + "loss": 0.8652816772460937, + "step": 11900 + }, + { + "epoch": 37.03703703703704, + "grad_norm": 0.32711413502693176, + "learning_rate": 3.1483024691358025e-05, + "loss": 0.8652924346923828, + "step": 12000 + }, + { + "epoch": 37.34567901234568, + "grad_norm": 0.3487214148044586, + "learning_rate": 3.1330246913580246e-05, + "loss": 0.8653363037109375, + "step": 12100 + }, + { + "epoch": 37.65432098765432, + "grad_norm": 0.19253982603549957, + "learning_rate": 3.1175925925925924e-05, + "loss": 0.864839859008789, + "step": 12200 + }, + { + "epoch": 37.96296296296296, + "grad_norm": 0.3058128356933594, + "learning_rate": 3.102160493827161e-05, + "loss": 0.8642467498779297, + "step": 12300 + }, + { + "epoch": 38.27160493827161, + "grad_norm": 0.30015528202056885, + "learning_rate": 3.0867283950617286e-05, + "loss": 0.8649742126464843, + "step": 12400 + }, + { + "epoch": 38.58024691358025, + "grad_norm": 0.33380067348480225, + "learning_rate": 3.0712962962962964e-05, + "loss": 0.8651032257080078, + "step": 12500 + }, + { + "epoch": 38.888888888888886, + "grad_norm": 0.36329004168510437, + "learning_rate": 3.055864197530864e-05, + "loss": 0.8648841857910157, + "step": 12600 + }, + { + "epoch": 39.19753086419753, + "grad_norm": 0.24460196495056152, + "learning_rate": 3.0404320987654322e-05, + "loss": 0.864749755859375, + "step": 12700 + }, + { + "epoch": 39.50617283950617, + "grad_norm": 0.2373257279396057, + "learning_rate": 3.025e-05, + "loss": 0.8641365051269532, + "step": 12800 + }, + { + "epoch": 39.81481481481482, + "grad_norm": 0.30177298188209534, + "learning_rate": 3.0095679012345678e-05, + "loss": 0.8651829528808593, + "step": 12900 + }, + { + "epoch": 40.123456790123456, + "grad_norm": 0.28286585211753845, + "learning_rate": 2.994135802469136e-05, + "loss": 0.8650211334228516, + "step": 13000 + }, + { + "epoch": 40.4320987654321, + "grad_norm": 0.2545726001262665, + "learning_rate": 2.978703703703704e-05, + "loss": 0.8654981231689454, + "step": 13100 + }, + { + "epoch": 40.74074074074074, + "grad_norm": 0.23175671696662903, + "learning_rate": 2.963271604938272e-05, + "loss": 0.8643350219726562, + "step": 13200 + }, + { + "epoch": 41.04938271604938, + "grad_norm": 0.2642582952976227, + "learning_rate": 2.94783950617284e-05, + "loss": 0.8648191070556641, + "step": 13300 + }, + { + "epoch": 41.358024691358025, + "grad_norm": 0.20592033863067627, + "learning_rate": 2.9324074074074076e-05, + "loss": 0.8642449951171876, + "step": 13400 + }, + { + "epoch": 41.666666666666664, + "grad_norm": 0.29046180844306946, + "learning_rate": 2.9169753086419754e-05, + "loss": 0.8642656707763672, + "step": 13500 + }, + { + "epoch": 41.97530864197531, + "grad_norm": 0.26292547583580017, + "learning_rate": 2.9015432098765432e-05, + "loss": 0.8639488220214844, + "step": 13600 + }, + { + "epoch": 42.28395061728395, + "grad_norm": 0.297783225774765, + "learning_rate": 2.886111111111111e-05, + "loss": 0.864585189819336, + "step": 13700 + }, + { + "epoch": 42.592592592592595, + "grad_norm": 0.2444617748260498, + "learning_rate": 2.870679012345679e-05, + "loss": 0.8649152374267578, + "step": 13800 + }, + { + "epoch": 42.901234567901234, + "grad_norm": 0.2831110656261444, + "learning_rate": 2.855246913580247e-05, + "loss": 0.8645712280273438, + "step": 13900 + }, + { + "epoch": 43.20987654320987, + "grad_norm": 0.2567242980003357, + "learning_rate": 2.8398148148148153e-05, + "loss": 0.8638491058349609, + "step": 14000 + }, + { + "epoch": 43.51851851851852, + "grad_norm": 0.2865658104419708, + "learning_rate": 2.824537037037037e-05, + "loss": 0.8642730712890625, + "step": 14100 + }, + { + "epoch": 43.82716049382716, + "grad_norm": 0.298484742641449, + "learning_rate": 2.8091049382716052e-05, + "loss": 0.8649552917480469, + "step": 14200 + }, + { + "epoch": 44.135802469135804, + "grad_norm": 0.28939852118492126, + "learning_rate": 2.793672839506173e-05, + "loss": 0.8639812469482422, + "step": 14300 + }, + { + "epoch": 44.44444444444444, + "grad_norm": 0.3122703433036804, + "learning_rate": 2.7782407407407407e-05, + "loss": 0.8637904357910157, + "step": 14400 + }, + { + "epoch": 44.75308641975309, + "grad_norm": 0.2748583257198334, + "learning_rate": 2.7628086419753085e-05, + "loss": 0.8642880249023438, + "step": 14500 + }, + { + "epoch": 45.06172839506173, + "grad_norm": 0.2639121115207672, + "learning_rate": 2.747376543209877e-05, + "loss": 0.8640217590332031, + "step": 14600 + }, + { + "epoch": 45.370370370370374, + "grad_norm": 0.2939169406890869, + "learning_rate": 2.7319444444444447e-05, + "loss": 0.8636822509765625, + "step": 14700 + }, + { + "epoch": 45.67901234567901, + "grad_norm": 0.28234273195266724, + "learning_rate": 2.7165123456790125e-05, + "loss": 0.8640520477294922, + "step": 14800 + }, + { + "epoch": 45.98765432098765, + "grad_norm": 0.3247532844543457, + "learning_rate": 2.7010802469135806e-05, + "loss": 0.8645074462890625, + "step": 14900 + }, + { + "epoch": 46.2962962962963, + "grad_norm": 0.17439720034599304, + "learning_rate": 2.6856481481481484e-05, + "loss": 0.86478759765625, + "step": 15000 + }, + { + "epoch": 46.60493827160494, + "grad_norm": 0.21647287905216217, + "learning_rate": 2.670216049382716e-05, + "loss": 0.8639440155029297, + "step": 15100 + }, + { + "epoch": 46.91358024691358, + "grad_norm": 0.22848644852638245, + "learning_rate": 2.654783950617284e-05, + "loss": 0.8637759399414062, + "step": 15200 + }, + { + "epoch": 47.22222222222222, + "grad_norm": 0.2585737407207489, + "learning_rate": 2.6393518518518517e-05, + "loss": 0.8639788055419921, + "step": 15300 + }, + { + "epoch": 47.53086419753087, + "grad_norm": 0.3228673040866852, + "learning_rate": 2.62391975308642e-05, + "loss": 0.8634998321533203, + "step": 15400 + }, + { + "epoch": 47.839506172839506, + "grad_norm": 0.19199813902378082, + "learning_rate": 2.608487654320988e-05, + "loss": 0.8637458038330078, + "step": 15500 + }, + { + "epoch": 48.148148148148145, + "grad_norm": 0.25434640049934387, + "learning_rate": 2.5930555555555556e-05, + "loss": 0.8639579010009766, + "step": 15600 + }, + { + "epoch": 48.45679012345679, + "grad_norm": 0.2062629610300064, + "learning_rate": 2.5776234567901237e-05, + "loss": 0.8633383941650391, + "step": 15700 + }, + { + "epoch": 48.76543209876543, + "grad_norm": 0.28273260593414307, + "learning_rate": 2.5621913580246915e-05, + "loss": 0.8634058380126953, + "step": 15800 + }, + { + "epoch": 49.074074074074076, + "grad_norm": 0.25794675946235657, + "learning_rate": 2.5467592592592593e-05, + "loss": 0.8644215393066407, + "step": 15900 + }, + { + "epoch": 49.382716049382715, + "grad_norm": 0.2801361382007599, + "learning_rate": 2.531327160493827e-05, + "loss": 0.8637371826171875, + "step": 16000 + }, + { + "epoch": 49.69135802469136, + "grad_norm": 0.31594523787498474, + "learning_rate": 2.51604938271605e-05, + "loss": 0.8638718414306641, + "step": 16100 + }, + { + "epoch": 50.0, + "grad_norm": 0.1785411238670349, + "learning_rate": 2.5006172839506177e-05, + "loss": 0.8638040161132813, + "step": 16200 + }, + { + "epoch": 50.30864197530864, + "grad_norm": 0.23965902626514435, + "learning_rate": 2.4851851851851854e-05, + "loss": 0.8634780883789063, + "step": 16300 + }, + { + "epoch": 50.617283950617285, + "grad_norm": 0.20226578414440155, + "learning_rate": 2.4697530864197532e-05, + "loss": 0.8635775756835937, + "step": 16400 + }, + { + "epoch": 50.925925925925924, + "grad_norm": 0.26240015029907227, + "learning_rate": 2.454320987654321e-05, + "loss": 0.8634452819824219, + "step": 16500 + }, + { + "epoch": 51.23456790123457, + "grad_norm": 0.31871360540390015, + "learning_rate": 2.4388888888888887e-05, + "loss": 0.8634230041503906, + "step": 16600 + }, + { + "epoch": 51.54320987654321, + "grad_norm": 0.28414225578308105, + "learning_rate": 2.423456790123457e-05, + "loss": 0.863424072265625, + "step": 16700 + }, + { + "epoch": 51.851851851851855, + "grad_norm": 0.25372815132141113, + "learning_rate": 2.408024691358025e-05, + "loss": 0.8632637023925781, + "step": 16800 + }, + { + "epoch": 52.160493827160494, + "grad_norm": 0.2601035237312317, + "learning_rate": 2.3925925925925927e-05, + "loss": 0.8637233734130859, + "step": 16900 + }, + { + "epoch": 52.46913580246913, + "grad_norm": 0.15456737577915192, + "learning_rate": 2.3771604938271605e-05, + "loss": 0.8640314483642578, + "step": 17000 + }, + { + "epoch": 52.77777777777778, + "grad_norm": 0.2598564326763153, + "learning_rate": 2.3617283950617286e-05, + "loss": 0.8640044403076171, + "step": 17100 + }, + { + "epoch": 53.08641975308642, + "grad_norm": 0.22886838018894196, + "learning_rate": 2.3462962962962964e-05, + "loss": 0.8635028076171875, + "step": 17200 + }, + { + "epoch": 53.39506172839506, + "grad_norm": 0.2388191968202591, + "learning_rate": 2.330864197530864e-05, + "loss": 0.8633686828613282, + "step": 17300 + }, + { + "epoch": 53.7037037037037, + "grad_norm": 0.18569715321063995, + "learning_rate": 2.3154320987654322e-05, + "loss": 0.8634825897216797, + "step": 17400 + }, + { + "epoch": 54.01234567901235, + "grad_norm": 0.23340563476085663, + "learning_rate": 2.3000000000000003e-05, + "loss": 0.8637994384765625, + "step": 17500 + }, + { + "epoch": 54.32098765432099, + "grad_norm": 0.2481815665960312, + "learning_rate": 2.284567901234568e-05, + "loss": 0.8632342529296875, + "step": 17600 + }, + { + "epoch": 54.629629629629626, + "grad_norm": 0.2559766173362732, + "learning_rate": 2.269135802469136e-05, + "loss": 0.8636701202392578, + "step": 17700 + }, + { + "epoch": 54.93827160493827, + "grad_norm": 0.4377776086330414, + "learning_rate": 2.2537037037037036e-05, + "loss": 0.8633976745605468, + "step": 17800 + }, + { + "epoch": 55.24691358024691, + "grad_norm": 0.26731622219085693, + "learning_rate": 2.2382716049382718e-05, + "loss": 0.8637456512451172, + "step": 17900 + }, + { + "epoch": 55.55555555555556, + "grad_norm": 0.25528597831726074, + "learning_rate": 2.2228395061728395e-05, + "loss": 0.8630653381347656, + "step": 18000 + }, + { + "epoch": 55.864197530864196, + "grad_norm": 0.3228375315666199, + "learning_rate": 2.2075617283950617e-05, + "loss": 0.8641485595703124, + "step": 18100 + }, + { + "epoch": 56.17283950617284, + "grad_norm": 0.3410342037677765, + "learning_rate": 2.1921296296296298e-05, + "loss": 0.8628273773193359, + "step": 18200 + }, + { + "epoch": 56.48148148148148, + "grad_norm": 0.27824917435646057, + "learning_rate": 2.1766975308641976e-05, + "loss": 0.8632877349853516, + "step": 18300 + }, + { + "epoch": 56.79012345679013, + "grad_norm": 0.29218852519989014, + "learning_rate": 2.1612654320987653e-05, + "loss": 0.8634963989257812, + "step": 18400 + }, + { + "epoch": 57.098765432098766, + "grad_norm": 0.26962971687316895, + "learning_rate": 2.1458333333333334e-05, + "loss": 0.8631212615966797, + "step": 18500 + }, + { + "epoch": 57.407407407407405, + "grad_norm": 0.31703895330429077, + "learning_rate": 2.1304012345679015e-05, + "loss": 0.8632781219482422, + "step": 18600 + }, + { + "epoch": 57.71604938271605, + "grad_norm": 0.32334306836128235, + "learning_rate": 2.1149691358024693e-05, + "loss": 0.8634398651123046, + "step": 18700 + }, + { + "epoch": 58.02469135802469, + "grad_norm": 0.2593790292739868, + "learning_rate": 2.099537037037037e-05, + "loss": 0.8636258697509765, + "step": 18800 + }, + { + "epoch": 58.333333333333336, + "grad_norm": 0.2949954569339752, + "learning_rate": 2.084104938271605e-05, + "loss": 0.8629860687255859, + "step": 18900 + }, + { + "epoch": 58.641975308641975, + "grad_norm": 0.23345129191875458, + "learning_rate": 2.068672839506173e-05, + "loss": 0.8632596588134765, + "step": 19000 + }, + { + "epoch": 58.95061728395062, + "grad_norm": 0.3483967185020447, + "learning_rate": 2.0532407407407407e-05, + "loss": 0.8632754516601563, + "step": 19100 + }, + { + "epoch": 59.25925925925926, + "grad_norm": 0.24414049088954926, + "learning_rate": 2.0378086419753088e-05, + "loss": 0.863308334350586, + "step": 19200 + }, + { + "epoch": 59.5679012345679, + "grad_norm": 0.22884564101696014, + "learning_rate": 2.0223765432098766e-05, + "loss": 0.8630153656005859, + "step": 19300 + }, + { + "epoch": 59.876543209876544, + "grad_norm": 0.293367862701416, + "learning_rate": 2.0069444444444447e-05, + "loss": 0.8631407165527344, + "step": 19400 + }, + { + "epoch": 60.18518518518518, + "grad_norm": 0.24008184671401978, + "learning_rate": 1.9915123456790125e-05, + "loss": 0.8633984375, + "step": 19500 + }, + { + "epoch": 60.49382716049383, + "grad_norm": 0.2940938472747803, + "learning_rate": 1.9760802469135802e-05, + "loss": 0.8634149932861328, + "step": 19600 + }, + { + "epoch": 60.80246913580247, + "grad_norm": 0.24539810419082642, + "learning_rate": 1.960648148148148e-05, + "loss": 0.8639472961425781, + "step": 19700 + }, + { + "epoch": 61.111111111111114, + "grad_norm": 0.2464188188314438, + "learning_rate": 1.945216049382716e-05, + "loss": 0.8634198760986328, + "step": 19800 + }, + { + "epoch": 61.41975308641975, + "grad_norm": 0.250593900680542, + "learning_rate": 1.9297839506172842e-05, + "loss": 0.8628058624267578, + "step": 19900 + }, + { + "epoch": 61.72839506172839, + "grad_norm": 0.25289106369018555, + "learning_rate": 1.914351851851852e-05, + "loss": 0.862940673828125, + "step": 20000 + }, + { + "epoch": 62.03703703703704, + "grad_norm": 0.270373672246933, + "learning_rate": 1.899074074074074e-05, + "loss": 0.8629447937011718, + "step": 20100 + }, + { + "epoch": 62.34567901234568, + "grad_norm": 0.2208729088306427, + "learning_rate": 1.883641975308642e-05, + "loss": 0.86260498046875, + "step": 20200 + }, + { + "epoch": 62.65432098765432, + "grad_norm": 0.20749305188655853, + "learning_rate": 1.86820987654321e-05, + "loss": 0.8630132293701172, + "step": 20300 + }, + { + "epoch": 62.96296296296296, + "grad_norm": 0.29507532715797424, + "learning_rate": 1.852777777777778e-05, + "loss": 0.8628247833251953, + "step": 20400 + }, + { + "epoch": 63.27160493827161, + "grad_norm": 0.3076235055923462, + "learning_rate": 1.837345679012346e-05, + "loss": 0.863165512084961, + "step": 20500 + }, + { + "epoch": 63.58024691358025, + "grad_norm": 0.25332000851631165, + "learning_rate": 1.8219135802469137e-05, + "loss": 0.8626132202148438, + "step": 20600 + }, + { + "epoch": 63.888888888888886, + "grad_norm": 0.22742706537246704, + "learning_rate": 1.8064814814814814e-05, + "loss": 0.8633429718017578, + "step": 20700 + }, + { + "epoch": 64.19753086419753, + "grad_norm": 0.24907511472702026, + "learning_rate": 1.7910493827160495e-05, + "loss": 0.8628691864013672, + "step": 20800 + }, + { + "epoch": 64.50617283950618, + "grad_norm": 0.37986981868743896, + "learning_rate": 1.7756172839506173e-05, + "loss": 0.862381591796875, + "step": 20900 + }, + { + "epoch": 64.81481481481481, + "grad_norm": 0.26957404613494873, + "learning_rate": 1.7601851851851854e-05, + "loss": 0.8621443176269531, + "step": 21000 + }, + { + "epoch": 65.12345679012346, + "grad_norm": 0.21372266113758087, + "learning_rate": 1.7447530864197532e-05, + "loss": 0.8624749755859376, + "step": 21100 + }, + { + "epoch": 65.4320987654321, + "grad_norm": 0.23659591376781464, + "learning_rate": 1.729320987654321e-05, + "loss": 0.862855453491211, + "step": 21200 + }, + { + "epoch": 65.74074074074075, + "grad_norm": 0.2516464591026306, + "learning_rate": 1.713888888888889e-05, + "loss": 0.8628866577148437, + "step": 21300 + }, + { + "epoch": 66.04938271604938, + "grad_norm": 0.23080387711524963, + "learning_rate": 1.698456790123457e-05, + "loss": 0.8628789520263672, + "step": 21400 + }, + { + "epoch": 66.35802469135803, + "grad_norm": 0.24531495571136475, + "learning_rate": 1.6830246913580246e-05, + "loss": 0.8624163818359375, + "step": 21500 + }, + { + "epoch": 66.66666666666667, + "grad_norm": 0.3036033809185028, + "learning_rate": 1.6675925925925927e-05, + "loss": 0.8630258178710938, + "step": 21600 + }, + { + "epoch": 66.9753086419753, + "grad_norm": 0.24009738862514496, + "learning_rate": 1.6521604938271608e-05, + "loss": 0.8635572814941406, + "step": 21700 + }, + { + "epoch": 67.28395061728395, + "grad_norm": 0.2536623477935791, + "learning_rate": 1.6367283950617286e-05, + "loss": 0.8623932647705078, + "step": 21800 + }, + { + "epoch": 67.5925925925926, + "grad_norm": 0.28109127283096313, + "learning_rate": 1.6212962962962964e-05, + "loss": 0.8624723052978516, + "step": 21900 + }, + { + "epoch": 67.90123456790124, + "grad_norm": 0.2185950130224228, + "learning_rate": 1.605864197530864e-05, + "loss": 0.8623596954345704, + "step": 22000 + }, + { + "epoch": 68.20987654320987, + "grad_norm": 0.33554041385650635, + "learning_rate": 1.5905864197530866e-05, + "loss": 0.8626500701904297, + "step": 22100 + }, + { + "epoch": 68.51851851851852, + "grad_norm": 0.2552665174007416, + "learning_rate": 1.5751543209876544e-05, + "loss": 0.8622700500488282, + "step": 22200 + }, + { + "epoch": 68.82716049382717, + "grad_norm": 0.3290879726409912, + "learning_rate": 1.5597222222222225e-05, + "loss": 0.8628783416748047, + "step": 22300 + }, + { + "epoch": 69.1358024691358, + "grad_norm": 0.23781687021255493, + "learning_rate": 1.5442901234567903e-05, + "loss": 0.8625830841064454, + "step": 22400 + }, + { + "epoch": 69.44444444444444, + "grad_norm": 0.29894009232521057, + "learning_rate": 1.528858024691358e-05, + "loss": 0.8624604034423828, + "step": 22500 + }, + { + "epoch": 69.75308641975309, + "grad_norm": 0.28855380415916443, + "learning_rate": 1.513425925925926e-05, + "loss": 0.8624363708496093, + "step": 22600 + }, + { + "epoch": 70.06172839506173, + "grad_norm": 0.30909860134124756, + "learning_rate": 1.497993827160494e-05, + "loss": 0.8625530242919922, + "step": 22700 + }, + { + "epoch": 70.37037037037037, + "grad_norm": 0.25948941707611084, + "learning_rate": 1.4825617283950618e-05, + "loss": 0.8629596710205079, + "step": 22800 + }, + { + "epoch": 70.67901234567901, + "grad_norm": 0.23436062037944794, + "learning_rate": 1.4671296296296296e-05, + "loss": 0.8624345397949219, + "step": 22900 + }, + { + "epoch": 70.98765432098766, + "grad_norm": 0.22997359931468964, + "learning_rate": 1.4516975308641975e-05, + "loss": 0.8627075958251953, + "step": 23000 + }, + { + "epoch": 71.29629629629629, + "grad_norm": 0.25879642367362976, + "learning_rate": 1.4362654320987657e-05, + "loss": 0.862459716796875, + "step": 23100 + }, + { + "epoch": 71.60493827160494, + "grad_norm": 0.2785871624946594, + "learning_rate": 1.4208333333333334e-05, + "loss": 0.8629904937744141, + "step": 23200 + }, + { + "epoch": 71.91358024691358, + "grad_norm": 0.23828476667404175, + "learning_rate": 1.4054012345679014e-05, + "loss": 0.8625855255126953, + "step": 23300 + }, + { + "epoch": 72.22222222222223, + "grad_norm": 0.28304004669189453, + "learning_rate": 1.3899691358024691e-05, + "loss": 0.8623751068115234, + "step": 23400 + }, + { + "epoch": 72.53086419753086, + "grad_norm": 0.35052117705345154, + "learning_rate": 1.3745370370370372e-05, + "loss": 0.8628295135498046, + "step": 23500 + }, + { + "epoch": 72.8395061728395, + "grad_norm": 0.21472153067588806, + "learning_rate": 1.359104938271605e-05, + "loss": 0.862393798828125, + "step": 23600 + }, + { + "epoch": 73.14814814814815, + "grad_norm": 0.22292311489582062, + "learning_rate": 1.343672839506173e-05, + "loss": 0.8621687316894531, + "step": 23700 + }, + { + "epoch": 73.45679012345678, + "grad_norm": 0.2587008476257324, + "learning_rate": 1.3282407407407407e-05, + "loss": 0.8623291778564454, + "step": 23800 + }, + { + "epoch": 73.76543209876543, + "grad_norm": 0.2771637439727783, + "learning_rate": 1.3128086419753088e-05, + "loss": 0.8624784088134766, + "step": 23900 + }, + { + "epoch": 74.07407407407408, + "grad_norm": 0.2332049012184143, + "learning_rate": 1.2973765432098766e-05, + "loss": 0.8628304290771485, + "step": 24000 + }, + { + "epoch": 74.38271604938272, + "grad_norm": 0.18202383816242218, + "learning_rate": 1.2820987654320987e-05, + "loss": 0.8623355102539062, + "step": 24100 + }, + { + "epoch": 74.69135802469135, + "grad_norm": 0.25001880526542664, + "learning_rate": 1.2666666666666668e-05, + "loss": 0.8625141906738282, + "step": 24200 + }, + { + "epoch": 75.0, + "grad_norm": 0.25027912855148315, + "learning_rate": 1.2512345679012346e-05, + "loss": 0.8624292755126953, + "step": 24300 + }, + { + "epoch": 75.30864197530865, + "grad_norm": 0.2614375054836273, + "learning_rate": 1.2358024691358026e-05, + "loss": 0.8622071838378906, + "step": 24400 + }, + { + "epoch": 75.61728395061728, + "grad_norm": 0.23685692250728607, + "learning_rate": 1.2203703703703705e-05, + "loss": 0.862458724975586, + "step": 24500 + }, + { + "epoch": 75.92592592592592, + "grad_norm": 0.2700103223323822, + "learning_rate": 1.2049382716049383e-05, + "loss": 0.8620365905761719, + "step": 24600 + }, + { + "epoch": 76.23456790123457, + "grad_norm": 0.28203874826431274, + "learning_rate": 1.1895061728395062e-05, + "loss": 0.8621501159667969, + "step": 24700 + }, + { + "epoch": 76.54320987654322, + "grad_norm": 0.2746220827102661, + "learning_rate": 1.1740740740740741e-05, + "loss": 0.8624026489257812, + "step": 24800 + }, + { + "epoch": 76.85185185185185, + "grad_norm": 0.30292582511901855, + "learning_rate": 1.158641975308642e-05, + "loss": 0.862785873413086, + "step": 24900 + }, + { + "epoch": 77.1604938271605, + "grad_norm": 0.2562635540962219, + "learning_rate": 1.1432098765432098e-05, + "loss": 0.8624921417236329, + "step": 25000 + }, + { + "epoch": 77.46913580246914, + "grad_norm": 0.27666226029396057, + "learning_rate": 1.127777777777778e-05, + "loss": 0.8622743988037109, + "step": 25100 + }, + { + "epoch": 77.77777777777777, + "grad_norm": 0.2963859438896179, + "learning_rate": 1.1123456790123457e-05, + "loss": 0.8626934814453125, + "step": 25200 + }, + { + "epoch": 78.08641975308642, + "grad_norm": 0.2593159079551697, + "learning_rate": 1.0969135802469137e-05, + "loss": 0.8621681976318359, + "step": 25300 + }, + { + "epoch": 78.39506172839506, + "grad_norm": 0.2810990810394287, + "learning_rate": 1.0814814814814814e-05, + "loss": 0.8621713256835938, + "step": 25400 + }, + { + "epoch": 78.70370370370371, + "grad_norm": 0.2808496654033661, + "learning_rate": 1.0660493827160495e-05, + "loss": 0.8622039031982421, + "step": 25500 + }, + { + "epoch": 79.01234567901234, + "grad_norm": 0.2452424019575119, + "learning_rate": 1.0506172839506173e-05, + "loss": 0.8625334930419922, + "step": 25600 + }, + { + "epoch": 79.32098765432099, + "grad_norm": 0.2880192697048187, + "learning_rate": 1.0351851851851852e-05, + "loss": 0.8622465515136719, + "step": 25700 + }, + { + "epoch": 79.62962962962963, + "grad_norm": 0.24877040088176727, + "learning_rate": 1.0197530864197532e-05, + "loss": 0.8621809387207031, + "step": 25800 + }, + { + "epoch": 79.93827160493827, + "grad_norm": 0.3088701069355011, + "learning_rate": 1.0043209876543211e-05, + "loss": 0.8624029541015625, + "step": 25900 + }, + { + "epoch": 80.24691358024691, + "grad_norm": 0.19949986040592194, + "learning_rate": 9.888888888888889e-06, + "loss": 0.8618679809570312, + "step": 26000 + }, + { + "epoch": 80.55555555555556, + "grad_norm": 0.3270089626312256, + "learning_rate": 9.734567901234568e-06, + "loss": 0.8620806884765625, + "step": 26100 + }, + { + "epoch": 80.8641975308642, + "grad_norm": 0.24055376648902893, + "learning_rate": 9.581790123456791e-06, + "loss": 0.861843490600586, + "step": 26200 + }, + { + "epoch": 81.17283950617283, + "grad_norm": 0.28812849521636963, + "learning_rate": 9.42746913580247e-06, + "loss": 0.8618939971923828, + "step": 26300 + }, + { + "epoch": 81.48148148148148, + "grad_norm": 0.18239010870456696, + "learning_rate": 9.273148148148149e-06, + "loss": 0.8618624114990234, + "step": 26400 + }, + { + "epoch": 81.79012345679013, + "grad_norm": 0.2698865234851837, + "learning_rate": 9.118827160493828e-06, + "loss": 0.8617278289794922, + "step": 26500 + }, + { + "epoch": 82.09876543209876, + "grad_norm": 0.2671756446361542, + "learning_rate": 8.964506172839507e-06, + "loss": 0.8620853424072266, + "step": 26600 + }, + { + "epoch": 82.4074074074074, + "grad_norm": 0.20211544632911682, + "learning_rate": 8.810185185185185e-06, + "loss": 0.8620963287353516, + "step": 26700 + }, + { + "epoch": 82.71604938271605, + "grad_norm": 0.3215954899787903, + "learning_rate": 8.655864197530864e-06, + "loss": 0.8621923065185547, + "step": 26800 + }, + { + "epoch": 83.0246913580247, + "grad_norm": 0.2056690901517868, + "learning_rate": 8.501543209876544e-06, + "loss": 0.8621724700927734, + "step": 26900 + }, + { + "epoch": 83.33333333333333, + "grad_norm": 0.24216392636299133, + "learning_rate": 8.347222222222223e-06, + "loss": 0.8620801544189454, + "step": 27000 + }, + { + "epoch": 83.64197530864197, + "grad_norm": 0.28262120485305786, + "learning_rate": 8.1929012345679e-06, + "loss": 0.861885986328125, + "step": 27100 + }, + { + "epoch": 83.95061728395062, + "grad_norm": 0.3250841200351715, + "learning_rate": 8.03858024691358e-06, + "loss": 0.8618600463867188, + "step": 27200 + }, + { + "epoch": 84.25925925925925, + "grad_norm": 0.27586230635643005, + "learning_rate": 7.88425925925926e-06, + "loss": 0.8616656494140625, + "step": 27300 + }, + { + "epoch": 84.5679012345679, + "grad_norm": 0.2721251845359802, + "learning_rate": 7.729938271604939e-06, + "loss": 0.8620500183105468, + "step": 27400 + }, + { + "epoch": 84.87654320987654, + "grad_norm": 0.26842591166496277, + "learning_rate": 7.5756172839506175e-06, + "loss": 0.8617433929443359, + "step": 27500 + }, + { + "epoch": 85.18518518518519, + "grad_norm": 0.23888643085956573, + "learning_rate": 7.421296296296297e-06, + "loss": 0.861810073852539, + "step": 27600 + }, + { + "epoch": 85.49382716049382, + "grad_norm": 0.24433459341526031, + "learning_rate": 7.2669753086419754e-06, + "loss": 0.8616561889648438, + "step": 27700 + }, + { + "epoch": 85.80246913580247, + "grad_norm": 0.24760094285011292, + "learning_rate": 7.112654320987655e-06, + "loss": 0.8622868347167969, + "step": 27800 + }, + { + "epoch": 86.11111111111111, + "grad_norm": 0.19840151071548462, + "learning_rate": 6.958333333333333e-06, + "loss": 0.8618616485595703, + "step": 27900 + }, + { + "epoch": 86.41975308641975, + "grad_norm": 0.24764691293239594, + "learning_rate": 6.804012345679013e-06, + "loss": 0.8621045684814453, + "step": 28000 + }, + { + "epoch": 86.72839506172839, + "grad_norm": 0.23593583703041077, + "learning_rate": 6.649691358024691e-06, + "loss": 0.8618828582763672, + "step": 28100 + }, + { + "epoch": 87.03703703703704, + "grad_norm": 0.2748619318008423, + "learning_rate": 6.496913580246914e-06, + "loss": 0.8616398620605469, + "step": 28200 + }, + { + "epoch": 87.34567901234568, + "grad_norm": 0.2573417127132416, + "learning_rate": 6.342592592592593e-06, + "loss": 0.8620298004150391, + "step": 28300 + }, + { + "epoch": 87.65432098765432, + "grad_norm": 0.2384900599718094, + "learning_rate": 6.188271604938272e-06, + "loss": 0.8617670440673828, + "step": 28400 + }, + { + "epoch": 87.96296296296296, + "grad_norm": 0.21160998940467834, + "learning_rate": 6.033950617283951e-06, + "loss": 0.861859359741211, + "step": 28500 + }, + { + "epoch": 88.27160493827161, + "grad_norm": 0.39718398451805115, + "learning_rate": 5.87962962962963e-06, + "loss": 0.8616744995117187, + "step": 28600 + }, + { + "epoch": 88.58024691358025, + "grad_norm": 0.27755340933799744, + "learning_rate": 5.725308641975309e-06, + "loss": 0.8617410278320312, + "step": 28700 + }, + { + "epoch": 88.88888888888889, + "grad_norm": 0.2871803939342499, + "learning_rate": 5.570987654320988e-06, + "loss": 0.8616901397705078, + "step": 28800 + }, + { + "epoch": 89.19753086419753, + "grad_norm": 0.3335205614566803, + "learning_rate": 5.416666666666667e-06, + "loss": 0.8615732574462891, + "step": 28900 + }, + { + "epoch": 89.50617283950618, + "grad_norm": 0.23746320605278015, + "learning_rate": 5.262345679012346e-06, + "loss": 0.861851806640625, + "step": 29000 + }, + { + "epoch": 89.81481481481481, + "grad_norm": 0.28229081630706787, + "learning_rate": 5.1080246913580255e-06, + "loss": 0.86148681640625, + "step": 29100 + }, + { + "epoch": 90.12345679012346, + "grad_norm": 0.21336163580417633, + "learning_rate": 4.953703703703704e-06, + "loss": 0.861663818359375, + "step": 29200 + }, + { + "epoch": 90.4320987654321, + "grad_norm": 0.2604101300239563, + "learning_rate": 4.7993827160493834e-06, + "loss": 0.8617544555664063, + "step": 29300 + }, + { + "epoch": 90.74074074074075, + "grad_norm": 0.26023662090301514, + "learning_rate": 4.645061728395062e-06, + "loss": 0.8617599487304688, + "step": 29400 + }, + { + "epoch": 91.04938271604938, + "grad_norm": 0.26295042037963867, + "learning_rate": 4.490740740740741e-06, + "loss": 0.8617560577392578, + "step": 29500 + }, + { + "epoch": 91.35802469135803, + "grad_norm": 0.22411581873893738, + "learning_rate": 4.33641975308642e-06, + "loss": 0.8616332244873047, + "step": 29600 + }, + { + "epoch": 91.66666666666667, + "grad_norm": 0.24028459191322327, + "learning_rate": 4.182098765432099e-06, + "loss": 0.8615241241455078, + "step": 29700 + }, + { + "epoch": 91.9753086419753, + "grad_norm": 0.25509828329086304, + "learning_rate": 4.027777777777779e-06, + "loss": 0.8616260528564453, + "step": 29800 + }, + { + "epoch": 92.28395061728395, + "grad_norm": 0.22896139323711395, + "learning_rate": 3.873456790123457e-06, + "loss": 0.8615116882324219, + "step": 29900 + }, + { + "epoch": 92.5925925925926, + "grad_norm": 0.1981690675020218, + "learning_rate": 3.719135802469136e-06, + "loss": 0.8616599273681641, + "step": 30000 + }, + { + "epoch": 92.90123456790124, + "grad_norm": 0.2998819053173065, + "learning_rate": 3.564814814814815e-06, + "loss": 0.8616020965576172, + "step": 30100 + }, + { + "epoch": 93.20987654320987, + "grad_norm": 0.2514878213405609, + "learning_rate": 3.412037037037037e-06, + "loss": 0.8614517974853516, + "step": 30200 + }, + { + "epoch": 93.51851851851852, + "grad_norm": 0.24726809561252594, + "learning_rate": 3.257716049382716e-06, + "loss": 0.8615573883056641, + "step": 30300 + }, + { + "epoch": 93.82716049382717, + "grad_norm": 0.24331317842006683, + "learning_rate": 3.1033950617283954e-06, + "loss": 0.861545181274414, + "step": 30400 + }, + { + "epoch": 94.1358024691358, + "grad_norm": 0.29127877950668335, + "learning_rate": 2.9490740740740743e-06, + "loss": 0.8617371368408203, + "step": 30500 + }, + { + "epoch": 94.44444444444444, + "grad_norm": 0.3069797456264496, + "learning_rate": 2.7947530864197533e-06, + "loss": 0.8614784240722656, + "step": 30600 + }, + { + "epoch": 94.75308641975309, + "grad_norm": 0.25526171922683716, + "learning_rate": 2.6404320987654323e-06, + "loss": 0.8612818908691406, + "step": 30700 + }, + { + "epoch": 95.06172839506173, + "grad_norm": 0.25805607438087463, + "learning_rate": 2.4861111111111112e-06, + "loss": 0.8611087799072266, + "step": 30800 + }, + { + "epoch": 95.37037037037037, + "grad_norm": 0.24607188999652863, + "learning_rate": 2.33179012345679e-06, + "loss": 0.8613501739501953, + "step": 30900 + }, + { + "epoch": 95.67901234567901, + "grad_norm": 0.3257257640361786, + "learning_rate": 2.177469135802469e-06, + "loss": 0.8614185333251954, + "step": 31000 + }, + { + "epoch": 95.98765432098766, + "grad_norm": 0.3006044924259186, + "learning_rate": 2.0231481481481485e-06, + "loss": 0.8614950561523438, + "step": 31100 + }, + { + "epoch": 96.29629629629629, + "grad_norm": 0.26980897784233093, + "learning_rate": 1.8688271604938273e-06, + "loss": 0.8614867401123046, + "step": 31200 + }, + { + "epoch": 96.60493827160494, + "grad_norm": 0.25481465458869934, + "learning_rate": 1.7145061728395064e-06, + "loss": 0.8614888000488281, + "step": 31300 + }, + { + "epoch": 96.91358024691358, + "grad_norm": 0.2795570194721222, + "learning_rate": 1.5601851851851852e-06, + "loss": 0.8614127349853515, + "step": 31400 + }, + { + "epoch": 97.22222222222223, + "grad_norm": 0.2887301743030548, + "learning_rate": 1.4058641975308641e-06, + "loss": 0.8610345458984375, + "step": 31500 + }, + { + "epoch": 97.53086419753086, + "grad_norm": 0.28151342272758484, + "learning_rate": 1.2515432098765433e-06, + "loss": 0.8611799621582031, + "step": 31600 + }, + { + "epoch": 97.8395061728395, + "grad_norm": 0.2844570279121399, + "learning_rate": 1.0972222222222223e-06, + "loss": 0.8612938690185546, + "step": 31700 + }, + { + "epoch": 98.14814814814815, + "grad_norm": 0.28799548745155334, + "learning_rate": 9.429012345679012e-07, + "loss": 0.8612958526611328, + "step": 31800 + }, + { + "epoch": 98.45679012345678, + "grad_norm": 0.17849087715148926, + "learning_rate": 7.885802469135803e-07, + "loss": 0.8611792755126954, + "step": 31900 + }, + { + "epoch": 98.76543209876543, + "grad_norm": 0.2363658845424652, + "learning_rate": 6.342592592592592e-07, + "loss": 0.8614938354492188, + "step": 32000 + } + ], + "logging_steps": 100, + "max_steps": 32400, + "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": 2874264256512000.0, + "train_batch_size": 8, + "trial_name": null, + "trial_params": null +} diff --git a/timecost/c7/realtabformer/rtf-c7-20260429_070344/rtf_checkpoints/checkpoint-32000/training_args.bin b/timecost/c7/realtabformer/rtf-c7-20260429_070344/rtf_checkpoints/checkpoint-32000/training_args.bin new file mode 100644 index 0000000000000000000000000000000000000000..34d68dc0e0fe1c1f12a2e581dd1b166aa7178a9e --- /dev/null +++ b/timecost/c7/realtabformer/rtf-c7-20260429_070344/rtf_checkpoints/checkpoint-32000/training_args.bin @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:9e2cd88337d1d846c6918d2b3b63fa3e5c93f12fefc082497590da854a564607 +size 5201 diff --git a/timecost/c7/realtabformer/rtf-c7-20260429_070344/rtf_checkpoints/checkpoint-32076/config.json b/timecost/c7/realtabformer/rtf-c7-20260429_070344/rtf_checkpoints/checkpoint-32076/config.json new file mode 100644 index 0000000000000000000000000000000000000000..2f4b2de295e37af41a4d510862dce45d9dafa48a --- /dev/null +++ b/timecost/c7/realtabformer/rtf-c7-20260429_070344/rtf_checkpoints/checkpoint-32076/config.json @@ -0,0 +1,34 @@ +{ + "activation_function": "gelu_new", + "add_cross_attention": false, + "architectures": [ + "GPT2LMHeadModel" + ], + "attn_pdrop": 0.1, + "bos_token_id": 5, + "dtype": "float32", + "embd_pdrop": 0.1, + "eos_token_id": 6, + "initializer_range": 0.02, + "layer_norm_epsilon": 1e-05, + "model_type": "gpt2", + "n_embd": 768, + "n_head": 12, + "n_inner": null, + "n_layer": 6, + "n_positions": 1024, + "pad_token_id": null, + "reorder_and_upcast_attn": false, + "resid_pdrop": 0.1, + "scale_attn_by_inverse_layer_idx": false, + "scale_attn_weights": true, + "summary_activation": null, + "summary_first_dropout": 0.1, + "summary_proj_to_labels": true, + "summary_type": "cls_index", + "summary_use_proj": true, + "tie_word_embeddings": true, + "transformers_version": "5.5.3", + "use_cache": false, + "vocab_size": 43 +} diff --git a/timecost/c7/realtabformer/rtf-c7-20260429_070344/rtf_checkpoints/checkpoint-32076/generation_config.json b/timecost/c7/realtabformer/rtf-c7-20260429_070344/rtf_checkpoints/checkpoint-32076/generation_config.json new file mode 100644 index 0000000000000000000000000000000000000000..ffe89567780e75b5c22eade9be971483b9618f39 --- /dev/null +++ b/timecost/c7/realtabformer/rtf-c7-20260429_070344/rtf_checkpoints/checkpoint-32076/generation_config.json @@ -0,0 +1,9 @@ +{ + "_from_model_config": true, + "bos_token_id": 5, + "eos_token_id": 6, + "output_attentions": false, + "output_hidden_states": false, + "transformers_version": "5.5.3", + "use_cache": true +} diff --git a/timecost/c7/realtabformer/rtf-c7-20260429_070344/rtf_checkpoints/checkpoint-32076/model.safetensors b/timecost/c7/realtabformer/rtf-c7-20260429_070344/rtf_checkpoints/checkpoint-32076/model.safetensors new file mode 100644 index 0000000000000000000000000000000000000000..57bcc0698b80d97ab629f98ae23945e0ae627187 --- /dev/null +++ b/timecost/c7/realtabformer/rtf-c7-20260429_070344/rtf_checkpoints/checkpoint-32076/model.safetensors @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:4e88fb08ff9b95c1494d92f1d661df83a69e58e5c04ae1a76f06708390393b79 +size 173400520 diff --git a/timecost/c7/realtabformer/rtf-c7-20260429_070344/rtf_checkpoints/checkpoint-32076/optimizer.pt b/timecost/c7/realtabformer/rtf-c7-20260429_070344/rtf_checkpoints/checkpoint-32076/optimizer.pt new file mode 100644 index 0000000000000000000000000000000000000000..0ddc631dd7bebfad826f5d9259d70d4a097f27e9 --- /dev/null +++ b/timecost/c7/realtabformer/rtf-c7-20260429_070344/rtf_checkpoints/checkpoint-32076/optimizer.pt @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:edcf268013cea9b9e95b04addcc8f2ea692933fa5413ff5929813fb44019f1f0 +size 346850059 diff --git a/timecost/c7/realtabformer/rtf-c7-20260429_070344/rtf_checkpoints/checkpoint-32076/rng_state.pth b/timecost/c7/realtabformer/rtf-c7-20260429_070344/rtf_checkpoints/checkpoint-32076/rng_state.pth new file mode 100644 index 0000000000000000000000000000000000000000..675dc9d3664f32f1887efbcf731c33e3c634d16f --- /dev/null +++ b/timecost/c7/realtabformer/rtf-c7-20260429_070344/rtf_checkpoints/checkpoint-32076/rng_state.pth @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:feffbf8e087c30ce9263e9247b497fdbbed20559639d3cd1200ee27b8596e1e4 +size 14645 diff --git a/timecost/c7/realtabformer/rtf-c7-20260429_070344/rtf_checkpoints/checkpoint-32076/scaler.pt b/timecost/c7/realtabformer/rtf-c7-20260429_070344/rtf_checkpoints/checkpoint-32076/scaler.pt new file mode 100644 index 0000000000000000000000000000000000000000..bd3f0a7a10c12e787badbb94edcfc709bcd3e20c --- /dev/null +++ b/timecost/c7/realtabformer/rtf-c7-20260429_070344/rtf_checkpoints/checkpoint-32076/scaler.pt @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:d8b85f10637bbdca9c91a31433a4e5e99e39484ef50048781cc3f457b9178afd +size 1383 diff --git a/timecost/c7/realtabformer/rtf-c7-20260429_070344/rtf_checkpoints/checkpoint-32076/scheduler.pt b/timecost/c7/realtabformer/rtf-c7-20260429_070344/rtf_checkpoints/checkpoint-32076/scheduler.pt new file mode 100644 index 0000000000000000000000000000000000000000..891a64c4c33479005542e41bcdceb1ab75988121 --- /dev/null +++ b/timecost/c7/realtabformer/rtf-c7-20260429_070344/rtf_checkpoints/checkpoint-32076/scheduler.pt @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:7605f0ed998df3121e408ebf53a7a2ab7391dd1435c504c11a10710b70206ad2 +size 1465 diff --git a/timecost/c7/realtabformer/rtf-c7-20260429_070344/rtf_checkpoints/checkpoint-32076/trainer_state.json b/timecost/c7/realtabformer/rtf-c7-20260429_070344/rtf_checkpoints/checkpoint-32076/trainer_state.json new file mode 100644 index 0000000000000000000000000000000000000000..64911172745aee5ce4c93b9329f43ade8554aa03 --- /dev/null +++ b/timecost/c7/realtabformer/rtf-c7-20260429_070344/rtf_checkpoints/checkpoint-32076/trainer_state.json @@ -0,0 +1,2274 @@ +{ + "best_global_step": null, + "best_metric": null, + "best_model_checkpoint": null, + "epoch": 99.0, + "eval_steps": 100, + "global_step": 32076, + "is_hyper_param_search": false, + "is_local_process_zero": true, + "is_world_process_zero": true, + "log_history": [ + { + "epoch": 0.30864197530864196, + "grad_norm": 0.5975016355514526, + "learning_rate": 4.9847222222222224e-05, + "loss": 1.1053435516357422, + "step": 100 + }, + { + "epoch": 0.6172839506172839, + "grad_norm": 0.4975835680961609, + "learning_rate": 4.96929012345679e-05, + "loss": 0.913399429321289, + "step": 200 + }, + { + "epoch": 0.9259259259259259, + "grad_norm": 0.5069450736045837, + "learning_rate": 4.9538580246913586e-05, + "loss": 0.9037506866455078, + "step": 300 + }, + { + "epoch": 1.2345679012345678, + "grad_norm": 0.3577662706375122, + "learning_rate": 4.9384259259259264e-05, + "loss": 0.8971150207519532, + "step": 400 + }, + { + "epoch": 1.5432098765432098, + "grad_norm": 0.37501809000968933, + "learning_rate": 4.922993827160494e-05, + "loss": 0.8930672454833984, + "step": 500 + }, + { + "epoch": 1.8518518518518519, + "grad_norm": 0.3230942487716675, + "learning_rate": 4.907561728395062e-05, + "loss": 0.8911088562011719, + "step": 600 + }, + { + "epoch": 2.1604938271604937, + "grad_norm": 0.31315380334854126, + "learning_rate": 4.89212962962963e-05, + "loss": 0.8870069122314453, + "step": 700 + }, + { + "epoch": 2.4691358024691357, + "grad_norm": 0.3408145606517792, + "learning_rate": 4.8766975308641975e-05, + "loss": 0.8845426177978516, + "step": 800 + }, + { + "epoch": 2.7777777777777777, + "grad_norm": 0.34649044275283813, + "learning_rate": 4.861265432098765e-05, + "loss": 0.8816167449951172, + "step": 900 + }, + { + "epoch": 3.0864197530864197, + "grad_norm": 0.2891448140144348, + "learning_rate": 4.845833333333334e-05, + "loss": 0.8816600799560547, + "step": 1000 + }, + { + "epoch": 3.3950617283950617, + "grad_norm": 0.3047502636909485, + "learning_rate": 4.8304012345679014e-05, + "loss": 0.8813356018066406, + "step": 1100 + }, + { + "epoch": 3.7037037037037037, + "grad_norm": 0.34682637453079224, + "learning_rate": 4.81496913580247e-05, + "loss": 0.8769812774658203, + "step": 1200 + }, + { + "epoch": 4.012345679012346, + "grad_norm": 0.3608556091785431, + "learning_rate": 4.7995370370370376e-05, + "loss": 0.8777651977539063, + "step": 1300 + }, + { + "epoch": 4.320987654320987, + "grad_norm": 0.3927426338195801, + "learning_rate": 4.7841049382716054e-05, + "loss": 0.8768961334228516, + "step": 1400 + }, + { + "epoch": 4.62962962962963, + "grad_norm": 0.2639325261116028, + "learning_rate": 4.768672839506173e-05, + "loss": 0.8781243133544921, + "step": 1500 + }, + { + "epoch": 4.938271604938271, + "grad_norm": 0.35398051142692566, + "learning_rate": 4.753240740740741e-05, + "loss": 0.87546630859375, + "step": 1600 + }, + { + "epoch": 5.246913580246914, + "grad_norm": 0.305637001991272, + "learning_rate": 4.737808641975309e-05, + "loss": 0.8746750640869141, + "step": 1700 + }, + { + "epoch": 5.555555555555555, + "grad_norm": 0.217234268784523, + "learning_rate": 4.7223765432098765e-05, + "loss": 0.8738501739501953, + "step": 1800 + }, + { + "epoch": 5.864197530864198, + "grad_norm": 0.3149331510066986, + "learning_rate": 4.706944444444445e-05, + "loss": 0.8732035064697266, + "step": 1900 + }, + { + "epoch": 6.172839506172839, + "grad_norm": 0.26609405875205994, + "learning_rate": 4.691512345679013e-05, + "loss": 0.8728971862792969, + "step": 2000 + }, + { + "epoch": 6.481481481481482, + "grad_norm": 0.31683775782585144, + "learning_rate": 4.6760802469135805e-05, + "loss": 0.8713655853271485, + "step": 2100 + }, + { + "epoch": 6.790123456790123, + "grad_norm": 0.34013745188713074, + "learning_rate": 4.660648148148148e-05, + "loss": 0.8744948577880859, + "step": 2200 + }, + { + "epoch": 7.098765432098766, + "grad_norm": 0.22860896587371826, + "learning_rate": 4.645216049382716e-05, + "loss": 0.8739882659912109, + "step": 2300 + }, + { + "epoch": 7.407407407407407, + "grad_norm": 0.37235602736473083, + "learning_rate": 4.629783950617284e-05, + "loss": 0.8726573944091797, + "step": 2400 + }, + { + "epoch": 7.716049382716049, + "grad_norm": 0.23996835947036743, + "learning_rate": 4.614351851851852e-05, + "loss": 0.8695323944091797, + "step": 2500 + }, + { + "epoch": 8.024691358024691, + "grad_norm": 0.27126339077949524, + "learning_rate": 4.59891975308642e-05, + "loss": 0.8710608673095703, + "step": 2600 + }, + { + "epoch": 8.333333333333334, + "grad_norm": 0.3054942190647125, + "learning_rate": 4.5834876543209884e-05, + "loss": 0.870329360961914, + "step": 2700 + }, + { + "epoch": 8.641975308641975, + "grad_norm": 0.32970622181892395, + "learning_rate": 4.568055555555556e-05, + "loss": 0.8703945922851563, + "step": 2800 + }, + { + "epoch": 8.950617283950617, + "grad_norm": 0.24803043901920319, + "learning_rate": 4.552623456790124e-05, + "loss": 0.8710511779785156, + "step": 2900 + }, + { + "epoch": 9.25925925925926, + "grad_norm": 0.4170224964618683, + "learning_rate": 4.537191358024692e-05, + "loss": 0.8694993591308594, + "step": 3000 + }, + { + "epoch": 9.567901234567902, + "grad_norm": 0.26911184191703796, + "learning_rate": 4.5217592592592595e-05, + "loss": 0.870486068725586, + "step": 3100 + }, + { + "epoch": 9.876543209876543, + "grad_norm": 0.30582156777381897, + "learning_rate": 4.506327160493827e-05, + "loss": 0.8719473266601563, + "step": 3200 + }, + { + "epoch": 10.185185185185185, + "grad_norm": 0.29516837000846863, + "learning_rate": 4.490895061728395e-05, + "loss": 0.8712838745117187, + "step": 3300 + }, + { + "epoch": 10.493827160493828, + "grad_norm": 0.28133177757263184, + "learning_rate": 4.475462962962963e-05, + "loss": 0.8699048614501953, + "step": 3400 + }, + { + "epoch": 10.802469135802468, + "grad_norm": 0.38596439361572266, + "learning_rate": 4.4600308641975306e-05, + "loss": 0.8712091064453125, + "step": 3500 + }, + { + "epoch": 11.11111111111111, + "grad_norm": 0.2777452766895294, + "learning_rate": 4.444598765432099e-05, + "loss": 0.8693663787841797, + "step": 3600 + }, + { + "epoch": 11.419753086419753, + "grad_norm": 0.4119755029678345, + "learning_rate": 4.429166666666667e-05, + "loss": 0.8681372833251954, + "step": 3700 + }, + { + "epoch": 11.728395061728396, + "grad_norm": 0.2371830940246582, + "learning_rate": 4.4137345679012346e-05, + "loss": 0.8699448394775391, + "step": 3800 + }, + { + "epoch": 12.037037037037036, + "grad_norm": 0.22597350180149078, + "learning_rate": 4.3983024691358023e-05, + "loss": 0.8695160675048829, + "step": 3900 + }, + { + "epoch": 12.345679012345679, + "grad_norm": 0.2682456970214844, + "learning_rate": 4.382870370370371e-05, + "loss": 0.8695050811767578, + "step": 4000 + }, + { + "epoch": 12.654320987654321, + "grad_norm": 0.29016727209091187, + "learning_rate": 4.3674382716049386e-05, + "loss": 0.8679987335205078, + "step": 4100 + }, + { + "epoch": 12.962962962962964, + "grad_norm": 0.26374146342277527, + "learning_rate": 4.352006172839506e-05, + "loss": 0.8693247222900391, + "step": 4200 + }, + { + "epoch": 13.271604938271604, + "grad_norm": 0.29962387681007385, + "learning_rate": 4.336574074074074e-05, + "loss": 0.8679438781738281, + "step": 4300 + }, + { + "epoch": 13.580246913580247, + "grad_norm": 0.29223865270614624, + "learning_rate": 4.3211419753086425e-05, + "loss": 0.8687114715576172, + "step": 4400 + }, + { + "epoch": 13.88888888888889, + "grad_norm": 0.37939226627349854, + "learning_rate": 4.30570987654321e-05, + "loss": 0.8680426025390625, + "step": 4500 + }, + { + "epoch": 14.197530864197532, + "grad_norm": 0.3423369526863098, + "learning_rate": 4.290277777777778e-05, + "loss": 0.8689276123046875, + "step": 4600 + }, + { + "epoch": 14.506172839506172, + "grad_norm": 0.36750486493110657, + "learning_rate": 4.274845679012346e-05, + "loss": 0.8679615783691407, + "step": 4700 + }, + { + "epoch": 14.814814814814815, + "grad_norm": 0.35079503059387207, + "learning_rate": 4.2594135802469136e-05, + "loss": 0.8678194427490235, + "step": 4800 + }, + { + "epoch": 15.123456790123457, + "grad_norm": 0.22617663443088531, + "learning_rate": 4.2439814814814814e-05, + "loss": 0.8699114990234375, + "step": 4900 + }, + { + "epoch": 15.432098765432098, + "grad_norm": 0.3365887999534607, + "learning_rate": 4.228549382716049e-05, + "loss": 0.8693661499023437, + "step": 5000 + }, + { + "epoch": 15.74074074074074, + "grad_norm": 0.29944780468940735, + "learning_rate": 4.213117283950617e-05, + "loss": 0.8680919647216797, + "step": 5100 + }, + { + "epoch": 16.049382716049383, + "grad_norm": 0.29136228561401367, + "learning_rate": 4.1976851851851854e-05, + "loss": 0.868043212890625, + "step": 5200 + }, + { + "epoch": 16.358024691358025, + "grad_norm": 0.24972350895404816, + "learning_rate": 4.182253086419753e-05, + "loss": 0.8676002502441407, + "step": 5300 + }, + { + "epoch": 16.666666666666668, + "grad_norm": 0.3150668442249298, + "learning_rate": 4.1668209876543216e-05, + "loss": 0.868660659790039, + "step": 5400 + }, + { + "epoch": 16.97530864197531, + "grad_norm": 0.3512415587902069, + "learning_rate": 4.1513888888888894e-05, + "loss": 0.8682049560546875, + "step": 5500 + }, + { + "epoch": 17.28395061728395, + "grad_norm": 0.3164934515953064, + "learning_rate": 4.135956790123457e-05, + "loss": 0.8676078033447265, + "step": 5600 + }, + { + "epoch": 17.59259259259259, + "grad_norm": 0.2696605324745178, + "learning_rate": 4.120524691358025e-05, + "loss": 0.8678233337402343, + "step": 5700 + }, + { + "epoch": 17.901234567901234, + "grad_norm": 0.345699280500412, + "learning_rate": 4.105092592592593e-05, + "loss": 0.8660729217529297, + "step": 5800 + }, + { + "epoch": 18.209876543209877, + "grad_norm": 0.2393321543931961, + "learning_rate": 4.0896604938271604e-05, + "loss": 0.86662109375, + "step": 5900 + }, + { + "epoch": 18.51851851851852, + "grad_norm": 0.23627376556396484, + "learning_rate": 4.074228395061729e-05, + "loss": 0.8684516906738281, + "step": 6000 + }, + { + "epoch": 18.82716049382716, + "grad_norm": 0.22598141431808472, + "learning_rate": 4.0587962962962966e-05, + "loss": 0.8676165771484375, + "step": 6100 + }, + { + "epoch": 19.135802469135804, + "grad_norm": 0.29334530234336853, + "learning_rate": 4.0433641975308644e-05, + "loss": 0.8662307739257813, + "step": 6200 + }, + { + "epoch": 19.444444444444443, + "grad_norm": 0.23827306926250458, + "learning_rate": 4.027932098765432e-05, + "loss": 0.8666460418701172, + "step": 6300 + }, + { + "epoch": 19.753086419753085, + "grad_norm": 0.29057374596595764, + "learning_rate": 4.0125e-05, + "loss": 0.8675463104248047, + "step": 6400 + }, + { + "epoch": 20.061728395061728, + "grad_norm": 0.3120971918106079, + "learning_rate": 3.997067901234568e-05, + "loss": 0.8672868347167969, + "step": 6500 + }, + { + "epoch": 20.37037037037037, + "grad_norm": 0.412092924118042, + "learning_rate": 3.9816358024691355e-05, + "loss": 0.8670984649658203, + "step": 6600 + }, + { + "epoch": 20.679012345679013, + "grad_norm": 0.2982257306575775, + "learning_rate": 3.966203703703704e-05, + "loss": 0.8685931396484375, + "step": 6700 + }, + { + "epoch": 20.987654320987655, + "grad_norm": 0.2703470289707184, + "learning_rate": 3.950771604938272e-05, + "loss": 0.8666371917724609, + "step": 6800 + }, + { + "epoch": 21.296296296296298, + "grad_norm": 0.3358808159828186, + "learning_rate": 3.93533950617284e-05, + "loss": 0.8664039611816406, + "step": 6900 + }, + { + "epoch": 21.604938271604937, + "grad_norm": 0.3047441244125366, + "learning_rate": 3.919907407407408e-05, + "loss": 0.8664222717285156, + "step": 7000 + }, + { + "epoch": 21.91358024691358, + "grad_norm": 0.28871631622314453, + "learning_rate": 3.904475308641976e-05, + "loss": 0.8676378631591797, + "step": 7100 + }, + { + "epoch": 22.22222222222222, + "grad_norm": 0.29110872745513916, + "learning_rate": 3.8890432098765435e-05, + "loss": 0.8660447692871094, + "step": 7200 + }, + { + "epoch": 22.530864197530864, + "grad_norm": 0.2692337930202484, + "learning_rate": 3.873611111111111e-05, + "loss": 0.8669923400878906, + "step": 7300 + }, + { + "epoch": 22.839506172839506, + "grad_norm": 0.31768998503685, + "learning_rate": 3.858179012345679e-05, + "loss": 0.8663272094726563, + "step": 7400 + }, + { + "epoch": 23.14814814814815, + "grad_norm": 0.22150367498397827, + "learning_rate": 3.842746913580247e-05, + "loss": 0.8668128967285156, + "step": 7500 + }, + { + "epoch": 23.45679012345679, + "grad_norm": 0.23608367145061493, + "learning_rate": 3.827314814814815e-05, + "loss": 0.8661857604980469, + "step": 7600 + }, + { + "epoch": 23.765432098765434, + "grad_norm": 0.23709823191165924, + "learning_rate": 3.811882716049383e-05, + "loss": 0.8668611145019531, + "step": 7700 + }, + { + "epoch": 24.074074074074073, + "grad_norm": 0.2794584333896637, + "learning_rate": 3.796450617283951e-05, + "loss": 0.8664863586425782, + "step": 7800 + }, + { + "epoch": 24.382716049382715, + "grad_norm": 0.35239988565444946, + "learning_rate": 3.7810185185185185e-05, + "loss": 0.8656664276123047, + "step": 7900 + }, + { + "epoch": 24.691358024691358, + "grad_norm": 0.3032480776309967, + "learning_rate": 3.765586419753086e-05, + "loss": 0.8664974212646485, + "step": 8000 + }, + { + "epoch": 25.0, + "grad_norm": 0.32895025610923767, + "learning_rate": 3.750154320987655e-05, + "loss": 0.8656834411621094, + "step": 8100 + }, + { + "epoch": 25.308641975308642, + "grad_norm": 0.24647651612758636, + "learning_rate": 3.7347222222222225e-05, + "loss": 0.8668187713623047, + "step": 8200 + }, + { + "epoch": 25.617283950617285, + "grad_norm": 0.3259798288345337, + "learning_rate": 3.71929012345679e-05, + "loss": 0.8659412384033203, + "step": 8300 + }, + { + "epoch": 25.925925925925927, + "grad_norm": 0.29342758655548096, + "learning_rate": 3.703858024691359e-05, + "loss": 0.865984115600586, + "step": 8400 + }, + { + "epoch": 26.234567901234566, + "grad_norm": 0.18561498820781708, + "learning_rate": 3.6884259259259265e-05, + "loss": 0.8656551361083984, + "step": 8500 + }, + { + "epoch": 26.54320987654321, + "grad_norm": 0.24412372708320618, + "learning_rate": 3.672993827160494e-05, + "loss": 0.8654991912841797, + "step": 8600 + }, + { + "epoch": 26.85185185185185, + "grad_norm": 0.2831413447856903, + "learning_rate": 3.657561728395062e-05, + "loss": 0.8658388519287109, + "step": 8700 + }, + { + "epoch": 27.160493827160494, + "grad_norm": 0.27400529384613037, + "learning_rate": 3.64212962962963e-05, + "loss": 0.8661294555664063, + "step": 8800 + }, + { + "epoch": 27.469135802469136, + "grad_norm": 0.30983632802963257, + "learning_rate": 3.6266975308641976e-05, + "loss": 0.866031265258789, + "step": 8900 + }, + { + "epoch": 27.77777777777778, + "grad_norm": 0.3088923990726471, + "learning_rate": 3.611265432098765e-05, + "loss": 0.8667101287841796, + "step": 9000 + }, + { + "epoch": 28.08641975308642, + "grad_norm": 0.23197945952415466, + "learning_rate": 3.595833333333333e-05, + "loss": 0.8657314300537109, + "step": 9100 + }, + { + "epoch": 28.395061728395063, + "grad_norm": 0.32310914993286133, + "learning_rate": 3.5804012345679015e-05, + "loss": 0.8657714080810547, + "step": 9200 + }, + { + "epoch": 28.703703703703702, + "grad_norm": 0.2674392759799957, + "learning_rate": 3.564969135802469e-05, + "loss": 0.8655484771728515, + "step": 9300 + }, + { + "epoch": 29.012345679012345, + "grad_norm": 0.25402772426605225, + "learning_rate": 3.549537037037037e-05, + "loss": 0.8671824645996093, + "step": 9400 + }, + { + "epoch": 29.320987654320987, + "grad_norm": 0.2903260886669159, + "learning_rate": 3.534104938271605e-05, + "loss": 0.8659280395507812, + "step": 9500 + }, + { + "epoch": 29.62962962962963, + "grad_norm": 0.2330218255519867, + "learning_rate": 3.518672839506173e-05, + "loss": 0.8649930572509765, + "step": 9600 + }, + { + "epoch": 29.938271604938272, + "grad_norm": 0.31311362981796265, + "learning_rate": 3.503240740740741e-05, + "loss": 0.865321044921875, + "step": 9700 + }, + { + "epoch": 30.246913580246915, + "grad_norm": 0.3377930223941803, + "learning_rate": 3.487808641975309e-05, + "loss": 0.8644564056396484, + "step": 9800 + }, + { + "epoch": 30.555555555555557, + "grad_norm": 0.3928042948246002, + "learning_rate": 3.4723765432098766e-05, + "loss": 0.8649266815185547, + "step": 9900 + }, + { + "epoch": 30.864197530864196, + "grad_norm": 0.2636756896972656, + "learning_rate": 3.456944444444445e-05, + "loss": 0.865054931640625, + "step": 10000 + }, + { + "epoch": 31.17283950617284, + "grad_norm": 0.28490859270095825, + "learning_rate": 3.441512345679013e-05, + "loss": 0.8649151611328125, + "step": 10100 + }, + { + "epoch": 31.48148148148148, + "grad_norm": 0.15659233927726746, + "learning_rate": 3.4260802469135806e-05, + "loss": 0.8644688415527344, + "step": 10200 + }, + { + "epoch": 31.790123456790123, + "grad_norm": 0.2705706059932709, + "learning_rate": 3.4106481481481484e-05, + "loss": 0.8652298736572266, + "step": 10300 + }, + { + "epoch": 32.098765432098766, + "grad_norm": 0.2109704315662384, + "learning_rate": 3.395216049382716e-05, + "loss": 0.8646073150634765, + "step": 10400 + }, + { + "epoch": 32.407407407407405, + "grad_norm": 0.4892992079257965, + "learning_rate": 3.379783950617284e-05, + "loss": 0.8661848449707031, + "step": 10500 + }, + { + "epoch": 32.71604938271605, + "grad_norm": 0.24907298386096954, + "learning_rate": 3.364351851851852e-05, + "loss": 0.8667823028564453, + "step": 10600 + }, + { + "epoch": 33.02469135802469, + "grad_norm": 0.252615749835968, + "learning_rate": 3.3489197530864194e-05, + "loss": 0.8658191680908203, + "step": 10700 + }, + { + "epoch": 33.333333333333336, + "grad_norm": 0.2954252362251282, + "learning_rate": 3.333487654320988e-05, + "loss": 0.8650070190429687, + "step": 10800 + }, + { + "epoch": 33.641975308641975, + "grad_norm": 0.25497448444366455, + "learning_rate": 3.3180555555555556e-05, + "loss": 0.8645931243896484, + "step": 10900 + }, + { + "epoch": 33.95061728395062, + "grad_norm": 0.21472449600696564, + "learning_rate": 3.3026234567901234e-05, + "loss": 0.8647118377685546, + "step": 11000 + }, + { + "epoch": 34.25925925925926, + "grad_norm": 0.2599078118801117, + "learning_rate": 3.287191358024692e-05, + "loss": 0.8644834136962891, + "step": 11100 + }, + { + "epoch": 34.5679012345679, + "grad_norm": 0.22373680770397186, + "learning_rate": 3.2717592592592596e-05, + "loss": 0.8649051666259766, + "step": 11200 + }, + { + "epoch": 34.876543209876544, + "grad_norm": 0.26835867762565613, + "learning_rate": 3.2563271604938274e-05, + "loss": 0.8655126953125, + "step": 11300 + }, + { + "epoch": 35.18518518518518, + "grad_norm": 0.27637186646461487, + "learning_rate": 3.240895061728395e-05, + "loss": 0.8649341583251953, + "step": 11400 + }, + { + "epoch": 35.49382716049383, + "grad_norm": 0.24539203941822052, + "learning_rate": 3.225462962962963e-05, + "loss": 0.8642951202392578, + "step": 11500 + }, + { + "epoch": 35.80246913580247, + "grad_norm": 0.237693190574646, + "learning_rate": 3.210030864197531e-05, + "loss": 0.8649242401123047, + "step": 11600 + }, + { + "epoch": 36.111111111111114, + "grad_norm": 0.31651604175567627, + "learning_rate": 3.194598765432099e-05, + "loss": 0.8645661926269531, + "step": 11700 + }, + { + "epoch": 36.41975308641975, + "grad_norm": 0.2650340497493744, + "learning_rate": 3.179166666666667e-05, + "loss": 0.8651156616210938, + "step": 11800 + }, + { + "epoch": 36.72839506172839, + "grad_norm": 0.25851109623908997, + "learning_rate": 3.163734567901235e-05, + "loss": 0.8652816772460937, + "step": 11900 + }, + { + "epoch": 37.03703703703704, + "grad_norm": 0.32711413502693176, + "learning_rate": 3.1483024691358025e-05, + "loss": 0.8652924346923828, + "step": 12000 + }, + { + "epoch": 37.34567901234568, + "grad_norm": 0.3487214148044586, + "learning_rate": 3.1330246913580246e-05, + "loss": 0.8653363037109375, + "step": 12100 + }, + { + "epoch": 37.65432098765432, + "grad_norm": 0.19253982603549957, + "learning_rate": 3.1175925925925924e-05, + "loss": 0.864839859008789, + "step": 12200 + }, + { + "epoch": 37.96296296296296, + "grad_norm": 0.3058128356933594, + "learning_rate": 3.102160493827161e-05, + "loss": 0.8642467498779297, + "step": 12300 + }, + { + "epoch": 38.27160493827161, + "grad_norm": 0.30015528202056885, + "learning_rate": 3.0867283950617286e-05, + "loss": 0.8649742126464843, + "step": 12400 + }, + { + "epoch": 38.58024691358025, + "grad_norm": 0.33380067348480225, + "learning_rate": 3.0712962962962964e-05, + "loss": 0.8651032257080078, + "step": 12500 + }, + { + "epoch": 38.888888888888886, + "grad_norm": 0.36329004168510437, + "learning_rate": 3.055864197530864e-05, + "loss": 0.8648841857910157, + "step": 12600 + }, + { + "epoch": 39.19753086419753, + "grad_norm": 0.24460196495056152, + "learning_rate": 3.0404320987654322e-05, + "loss": 0.864749755859375, + "step": 12700 + }, + { + "epoch": 39.50617283950617, + "grad_norm": 0.2373257279396057, + "learning_rate": 3.025e-05, + "loss": 0.8641365051269532, + "step": 12800 + }, + { + "epoch": 39.81481481481482, + "grad_norm": 0.30177298188209534, + "learning_rate": 3.0095679012345678e-05, + "loss": 0.8651829528808593, + "step": 12900 + }, + { + "epoch": 40.123456790123456, + "grad_norm": 0.28286585211753845, + "learning_rate": 2.994135802469136e-05, + "loss": 0.8650211334228516, + "step": 13000 + }, + { + "epoch": 40.4320987654321, + "grad_norm": 0.2545726001262665, + "learning_rate": 2.978703703703704e-05, + "loss": 0.8654981231689454, + "step": 13100 + }, + { + "epoch": 40.74074074074074, + "grad_norm": 0.23175671696662903, + "learning_rate": 2.963271604938272e-05, + "loss": 0.8643350219726562, + "step": 13200 + }, + { + "epoch": 41.04938271604938, + "grad_norm": 0.2642582952976227, + "learning_rate": 2.94783950617284e-05, + "loss": 0.8648191070556641, + "step": 13300 + }, + { + "epoch": 41.358024691358025, + "grad_norm": 0.20592033863067627, + "learning_rate": 2.9324074074074076e-05, + "loss": 0.8642449951171876, + "step": 13400 + }, + { + "epoch": 41.666666666666664, + "grad_norm": 0.29046180844306946, + "learning_rate": 2.9169753086419754e-05, + "loss": 0.8642656707763672, + "step": 13500 + }, + { + "epoch": 41.97530864197531, + "grad_norm": 0.26292547583580017, + "learning_rate": 2.9015432098765432e-05, + "loss": 0.8639488220214844, + "step": 13600 + }, + { + "epoch": 42.28395061728395, + "grad_norm": 0.297783225774765, + "learning_rate": 2.886111111111111e-05, + "loss": 0.864585189819336, + "step": 13700 + }, + { + "epoch": 42.592592592592595, + "grad_norm": 0.2444617748260498, + "learning_rate": 2.870679012345679e-05, + "loss": 0.8649152374267578, + "step": 13800 + }, + { + "epoch": 42.901234567901234, + "grad_norm": 0.2831110656261444, + "learning_rate": 2.855246913580247e-05, + "loss": 0.8645712280273438, + "step": 13900 + }, + { + "epoch": 43.20987654320987, + "grad_norm": 0.2567242980003357, + "learning_rate": 2.8398148148148153e-05, + "loss": 0.8638491058349609, + "step": 14000 + }, + { + "epoch": 43.51851851851852, + "grad_norm": 0.2865658104419708, + "learning_rate": 2.824537037037037e-05, + "loss": 0.8642730712890625, + "step": 14100 + }, + { + "epoch": 43.82716049382716, + "grad_norm": 0.298484742641449, + "learning_rate": 2.8091049382716052e-05, + "loss": 0.8649552917480469, + "step": 14200 + }, + { + "epoch": 44.135802469135804, + "grad_norm": 0.28939852118492126, + "learning_rate": 2.793672839506173e-05, + "loss": 0.8639812469482422, + "step": 14300 + }, + { + "epoch": 44.44444444444444, + "grad_norm": 0.3122703433036804, + "learning_rate": 2.7782407407407407e-05, + "loss": 0.8637904357910157, + "step": 14400 + }, + { + "epoch": 44.75308641975309, + "grad_norm": 0.2748583257198334, + "learning_rate": 2.7628086419753085e-05, + "loss": 0.8642880249023438, + "step": 14500 + }, + { + "epoch": 45.06172839506173, + "grad_norm": 0.2639121115207672, + "learning_rate": 2.747376543209877e-05, + "loss": 0.8640217590332031, + "step": 14600 + }, + { + "epoch": 45.370370370370374, + "grad_norm": 0.2939169406890869, + "learning_rate": 2.7319444444444447e-05, + "loss": 0.8636822509765625, + "step": 14700 + }, + { + "epoch": 45.67901234567901, + "grad_norm": 0.28234273195266724, + "learning_rate": 2.7165123456790125e-05, + "loss": 0.8640520477294922, + "step": 14800 + }, + { + "epoch": 45.98765432098765, + "grad_norm": 0.3247532844543457, + "learning_rate": 2.7010802469135806e-05, + "loss": 0.8645074462890625, + "step": 14900 + }, + { + "epoch": 46.2962962962963, + "grad_norm": 0.17439720034599304, + "learning_rate": 2.6856481481481484e-05, + "loss": 0.86478759765625, + "step": 15000 + }, + { + "epoch": 46.60493827160494, + "grad_norm": 0.21647287905216217, + "learning_rate": 2.670216049382716e-05, + "loss": 0.8639440155029297, + "step": 15100 + }, + { + "epoch": 46.91358024691358, + "grad_norm": 0.22848644852638245, + "learning_rate": 2.654783950617284e-05, + "loss": 0.8637759399414062, + "step": 15200 + }, + { + "epoch": 47.22222222222222, + "grad_norm": 0.2585737407207489, + "learning_rate": 2.6393518518518517e-05, + "loss": 0.8639788055419921, + "step": 15300 + }, + { + "epoch": 47.53086419753087, + "grad_norm": 0.3228673040866852, + "learning_rate": 2.62391975308642e-05, + "loss": 0.8634998321533203, + "step": 15400 + }, + { + "epoch": 47.839506172839506, + "grad_norm": 0.19199813902378082, + "learning_rate": 2.608487654320988e-05, + "loss": 0.8637458038330078, + "step": 15500 + }, + { + "epoch": 48.148148148148145, + "grad_norm": 0.25434640049934387, + "learning_rate": 2.5930555555555556e-05, + "loss": 0.8639579010009766, + "step": 15600 + }, + { + "epoch": 48.45679012345679, + "grad_norm": 0.2062629610300064, + "learning_rate": 2.5776234567901237e-05, + "loss": 0.8633383941650391, + "step": 15700 + }, + { + "epoch": 48.76543209876543, + "grad_norm": 0.28273260593414307, + "learning_rate": 2.5621913580246915e-05, + "loss": 0.8634058380126953, + "step": 15800 + }, + { + "epoch": 49.074074074074076, + "grad_norm": 0.25794675946235657, + "learning_rate": 2.5467592592592593e-05, + "loss": 0.8644215393066407, + "step": 15900 + }, + { + "epoch": 49.382716049382715, + "grad_norm": 0.2801361382007599, + "learning_rate": 2.531327160493827e-05, + "loss": 0.8637371826171875, + "step": 16000 + }, + { + "epoch": 49.69135802469136, + "grad_norm": 0.31594523787498474, + "learning_rate": 2.51604938271605e-05, + "loss": 0.8638718414306641, + "step": 16100 + }, + { + "epoch": 50.0, + "grad_norm": 0.1785411238670349, + "learning_rate": 2.5006172839506177e-05, + "loss": 0.8638040161132813, + "step": 16200 + }, + { + "epoch": 50.30864197530864, + "grad_norm": 0.23965902626514435, + "learning_rate": 2.4851851851851854e-05, + "loss": 0.8634780883789063, + "step": 16300 + }, + { + "epoch": 50.617283950617285, + "grad_norm": 0.20226578414440155, + "learning_rate": 2.4697530864197532e-05, + "loss": 0.8635775756835937, + "step": 16400 + }, + { + "epoch": 50.925925925925924, + "grad_norm": 0.26240015029907227, + "learning_rate": 2.454320987654321e-05, + "loss": 0.8634452819824219, + "step": 16500 + }, + { + "epoch": 51.23456790123457, + "grad_norm": 0.31871360540390015, + "learning_rate": 2.4388888888888887e-05, + "loss": 0.8634230041503906, + "step": 16600 + }, + { + "epoch": 51.54320987654321, + "grad_norm": 0.28414225578308105, + "learning_rate": 2.423456790123457e-05, + "loss": 0.863424072265625, + "step": 16700 + }, + { + "epoch": 51.851851851851855, + "grad_norm": 0.25372815132141113, + "learning_rate": 2.408024691358025e-05, + "loss": 0.8632637023925781, + "step": 16800 + }, + { + "epoch": 52.160493827160494, + "grad_norm": 0.2601035237312317, + "learning_rate": 2.3925925925925927e-05, + "loss": 0.8637233734130859, + "step": 16900 + }, + { + "epoch": 52.46913580246913, + "grad_norm": 0.15456737577915192, + "learning_rate": 2.3771604938271605e-05, + "loss": 0.8640314483642578, + "step": 17000 + }, + { + "epoch": 52.77777777777778, + "grad_norm": 0.2598564326763153, + "learning_rate": 2.3617283950617286e-05, + "loss": 0.8640044403076171, + "step": 17100 + }, + { + "epoch": 53.08641975308642, + "grad_norm": 0.22886838018894196, + "learning_rate": 2.3462962962962964e-05, + "loss": 0.8635028076171875, + "step": 17200 + }, + { + "epoch": 53.39506172839506, + "grad_norm": 0.2388191968202591, + "learning_rate": 2.330864197530864e-05, + "loss": 0.8633686828613282, + "step": 17300 + }, + { + "epoch": 53.7037037037037, + "grad_norm": 0.18569715321063995, + "learning_rate": 2.3154320987654322e-05, + "loss": 0.8634825897216797, + "step": 17400 + }, + { + "epoch": 54.01234567901235, + "grad_norm": 0.23340563476085663, + "learning_rate": 2.3000000000000003e-05, + "loss": 0.8637994384765625, + "step": 17500 + }, + { + "epoch": 54.32098765432099, + "grad_norm": 0.2481815665960312, + "learning_rate": 2.284567901234568e-05, + "loss": 0.8632342529296875, + "step": 17600 + }, + { + "epoch": 54.629629629629626, + "grad_norm": 0.2559766173362732, + "learning_rate": 2.269135802469136e-05, + "loss": 0.8636701202392578, + "step": 17700 + }, + { + "epoch": 54.93827160493827, + "grad_norm": 0.4377776086330414, + "learning_rate": 2.2537037037037036e-05, + "loss": 0.8633976745605468, + "step": 17800 + }, + { + "epoch": 55.24691358024691, + "grad_norm": 0.26731622219085693, + "learning_rate": 2.2382716049382718e-05, + "loss": 0.8637456512451172, + "step": 17900 + }, + { + "epoch": 55.55555555555556, + "grad_norm": 0.25528597831726074, + "learning_rate": 2.2228395061728395e-05, + "loss": 0.8630653381347656, + "step": 18000 + }, + { + "epoch": 55.864197530864196, + "grad_norm": 0.3228375315666199, + "learning_rate": 2.2075617283950617e-05, + "loss": 0.8641485595703124, + "step": 18100 + }, + { + "epoch": 56.17283950617284, + "grad_norm": 0.3410342037677765, + "learning_rate": 2.1921296296296298e-05, + "loss": 0.8628273773193359, + "step": 18200 + }, + { + "epoch": 56.48148148148148, + "grad_norm": 0.27824917435646057, + "learning_rate": 2.1766975308641976e-05, + "loss": 0.8632877349853516, + "step": 18300 + }, + { + "epoch": 56.79012345679013, + "grad_norm": 0.29218852519989014, + "learning_rate": 2.1612654320987653e-05, + "loss": 0.8634963989257812, + "step": 18400 + }, + { + "epoch": 57.098765432098766, + "grad_norm": 0.26962971687316895, + "learning_rate": 2.1458333333333334e-05, + "loss": 0.8631212615966797, + "step": 18500 + }, + { + "epoch": 57.407407407407405, + "grad_norm": 0.31703895330429077, + "learning_rate": 2.1304012345679015e-05, + "loss": 0.8632781219482422, + "step": 18600 + }, + { + "epoch": 57.71604938271605, + "grad_norm": 0.32334306836128235, + "learning_rate": 2.1149691358024693e-05, + "loss": 0.8634398651123046, + "step": 18700 + }, + { + "epoch": 58.02469135802469, + "grad_norm": 0.2593790292739868, + "learning_rate": 2.099537037037037e-05, + "loss": 0.8636258697509765, + "step": 18800 + }, + { + "epoch": 58.333333333333336, + "grad_norm": 0.2949954569339752, + "learning_rate": 2.084104938271605e-05, + "loss": 0.8629860687255859, + "step": 18900 + }, + { + "epoch": 58.641975308641975, + "grad_norm": 0.23345129191875458, + "learning_rate": 2.068672839506173e-05, + "loss": 0.8632596588134765, + "step": 19000 + }, + { + "epoch": 58.95061728395062, + "grad_norm": 0.3483967185020447, + "learning_rate": 2.0532407407407407e-05, + "loss": 0.8632754516601563, + "step": 19100 + }, + { + "epoch": 59.25925925925926, + "grad_norm": 0.24414049088954926, + "learning_rate": 2.0378086419753088e-05, + "loss": 0.863308334350586, + "step": 19200 + }, + { + "epoch": 59.5679012345679, + "grad_norm": 0.22884564101696014, + "learning_rate": 2.0223765432098766e-05, + "loss": 0.8630153656005859, + "step": 19300 + }, + { + "epoch": 59.876543209876544, + "grad_norm": 0.293367862701416, + "learning_rate": 2.0069444444444447e-05, + "loss": 0.8631407165527344, + "step": 19400 + }, + { + "epoch": 60.18518518518518, + "grad_norm": 0.24008184671401978, + "learning_rate": 1.9915123456790125e-05, + "loss": 0.8633984375, + "step": 19500 + }, + { + "epoch": 60.49382716049383, + "grad_norm": 0.2940938472747803, + "learning_rate": 1.9760802469135802e-05, + "loss": 0.8634149932861328, + "step": 19600 + }, + { + "epoch": 60.80246913580247, + "grad_norm": 0.24539810419082642, + "learning_rate": 1.960648148148148e-05, + "loss": 0.8639472961425781, + "step": 19700 + }, + { + "epoch": 61.111111111111114, + "grad_norm": 0.2464188188314438, + "learning_rate": 1.945216049382716e-05, + "loss": 0.8634198760986328, + "step": 19800 + }, + { + "epoch": 61.41975308641975, + "grad_norm": 0.250593900680542, + "learning_rate": 1.9297839506172842e-05, + "loss": 0.8628058624267578, + "step": 19900 + }, + { + "epoch": 61.72839506172839, + "grad_norm": 0.25289106369018555, + "learning_rate": 1.914351851851852e-05, + "loss": 0.862940673828125, + "step": 20000 + }, + { + "epoch": 62.03703703703704, + "grad_norm": 0.270373672246933, + "learning_rate": 1.899074074074074e-05, + "loss": 0.8629447937011718, + "step": 20100 + }, + { + "epoch": 62.34567901234568, + "grad_norm": 0.2208729088306427, + "learning_rate": 1.883641975308642e-05, + "loss": 0.86260498046875, + "step": 20200 + }, + { + "epoch": 62.65432098765432, + "grad_norm": 0.20749305188655853, + "learning_rate": 1.86820987654321e-05, + "loss": 0.8630132293701172, + "step": 20300 + }, + { + "epoch": 62.96296296296296, + "grad_norm": 0.29507532715797424, + "learning_rate": 1.852777777777778e-05, + "loss": 0.8628247833251953, + "step": 20400 + }, + { + "epoch": 63.27160493827161, + "grad_norm": 0.3076235055923462, + "learning_rate": 1.837345679012346e-05, + "loss": 0.863165512084961, + "step": 20500 + }, + { + "epoch": 63.58024691358025, + "grad_norm": 0.25332000851631165, + "learning_rate": 1.8219135802469137e-05, + "loss": 0.8626132202148438, + "step": 20600 + }, + { + "epoch": 63.888888888888886, + "grad_norm": 0.22742706537246704, + "learning_rate": 1.8064814814814814e-05, + "loss": 0.8633429718017578, + "step": 20700 + }, + { + "epoch": 64.19753086419753, + "grad_norm": 0.24907511472702026, + "learning_rate": 1.7910493827160495e-05, + "loss": 0.8628691864013672, + "step": 20800 + }, + { + "epoch": 64.50617283950618, + "grad_norm": 0.37986981868743896, + "learning_rate": 1.7756172839506173e-05, + "loss": 0.862381591796875, + "step": 20900 + }, + { + "epoch": 64.81481481481481, + "grad_norm": 0.26957404613494873, + "learning_rate": 1.7601851851851854e-05, + "loss": 0.8621443176269531, + "step": 21000 + }, + { + "epoch": 65.12345679012346, + "grad_norm": 0.21372266113758087, + "learning_rate": 1.7447530864197532e-05, + "loss": 0.8624749755859376, + "step": 21100 + }, + { + "epoch": 65.4320987654321, + "grad_norm": 0.23659591376781464, + "learning_rate": 1.729320987654321e-05, + "loss": 0.862855453491211, + "step": 21200 + }, + { + "epoch": 65.74074074074075, + "grad_norm": 0.2516464591026306, + "learning_rate": 1.713888888888889e-05, + "loss": 0.8628866577148437, + "step": 21300 + }, + { + "epoch": 66.04938271604938, + "grad_norm": 0.23080387711524963, + "learning_rate": 1.698456790123457e-05, + "loss": 0.8628789520263672, + "step": 21400 + }, + { + "epoch": 66.35802469135803, + "grad_norm": 0.24531495571136475, + "learning_rate": 1.6830246913580246e-05, + "loss": 0.8624163818359375, + "step": 21500 + }, + { + "epoch": 66.66666666666667, + "grad_norm": 0.3036033809185028, + "learning_rate": 1.6675925925925927e-05, + "loss": 0.8630258178710938, + "step": 21600 + }, + { + "epoch": 66.9753086419753, + "grad_norm": 0.24009738862514496, + "learning_rate": 1.6521604938271608e-05, + "loss": 0.8635572814941406, + "step": 21700 + }, + { + "epoch": 67.28395061728395, + "grad_norm": 0.2536623477935791, + "learning_rate": 1.6367283950617286e-05, + "loss": 0.8623932647705078, + "step": 21800 + }, + { + "epoch": 67.5925925925926, + "grad_norm": 0.28109127283096313, + "learning_rate": 1.6212962962962964e-05, + "loss": 0.8624723052978516, + "step": 21900 + }, + { + "epoch": 67.90123456790124, + "grad_norm": 0.2185950130224228, + "learning_rate": 1.605864197530864e-05, + "loss": 0.8623596954345704, + "step": 22000 + }, + { + "epoch": 68.20987654320987, + "grad_norm": 0.33554041385650635, + "learning_rate": 1.5905864197530866e-05, + "loss": 0.8626500701904297, + "step": 22100 + }, + { + "epoch": 68.51851851851852, + "grad_norm": 0.2552665174007416, + "learning_rate": 1.5751543209876544e-05, + "loss": 0.8622700500488282, + "step": 22200 + }, + { + "epoch": 68.82716049382717, + "grad_norm": 0.3290879726409912, + "learning_rate": 1.5597222222222225e-05, + "loss": 0.8628783416748047, + "step": 22300 + }, + { + "epoch": 69.1358024691358, + "grad_norm": 0.23781687021255493, + "learning_rate": 1.5442901234567903e-05, + "loss": 0.8625830841064454, + "step": 22400 + }, + { + "epoch": 69.44444444444444, + "grad_norm": 0.29894009232521057, + "learning_rate": 1.528858024691358e-05, + "loss": 0.8624604034423828, + "step": 22500 + }, + { + "epoch": 69.75308641975309, + "grad_norm": 0.28855380415916443, + "learning_rate": 1.513425925925926e-05, + "loss": 0.8624363708496093, + "step": 22600 + }, + { + "epoch": 70.06172839506173, + "grad_norm": 0.30909860134124756, + "learning_rate": 1.497993827160494e-05, + "loss": 0.8625530242919922, + "step": 22700 + }, + { + "epoch": 70.37037037037037, + "grad_norm": 0.25948941707611084, + "learning_rate": 1.4825617283950618e-05, + "loss": 0.8629596710205079, + "step": 22800 + }, + { + "epoch": 70.67901234567901, + "grad_norm": 0.23436062037944794, + "learning_rate": 1.4671296296296296e-05, + "loss": 0.8624345397949219, + "step": 22900 + }, + { + "epoch": 70.98765432098766, + "grad_norm": 0.22997359931468964, + "learning_rate": 1.4516975308641975e-05, + "loss": 0.8627075958251953, + "step": 23000 + }, + { + "epoch": 71.29629629629629, + "grad_norm": 0.25879642367362976, + "learning_rate": 1.4362654320987657e-05, + "loss": 0.862459716796875, + "step": 23100 + }, + { + "epoch": 71.60493827160494, + "grad_norm": 0.2785871624946594, + "learning_rate": 1.4208333333333334e-05, + "loss": 0.8629904937744141, + "step": 23200 + }, + { + "epoch": 71.91358024691358, + "grad_norm": 0.23828476667404175, + "learning_rate": 1.4054012345679014e-05, + "loss": 0.8625855255126953, + "step": 23300 + }, + { + "epoch": 72.22222222222223, + "grad_norm": 0.28304004669189453, + "learning_rate": 1.3899691358024691e-05, + "loss": 0.8623751068115234, + "step": 23400 + }, + { + "epoch": 72.53086419753086, + "grad_norm": 0.35052117705345154, + "learning_rate": 1.3745370370370372e-05, + "loss": 0.8628295135498046, + "step": 23500 + }, + { + "epoch": 72.8395061728395, + "grad_norm": 0.21472153067588806, + "learning_rate": 1.359104938271605e-05, + "loss": 0.862393798828125, + "step": 23600 + }, + { + "epoch": 73.14814814814815, + "grad_norm": 0.22292311489582062, + "learning_rate": 1.343672839506173e-05, + "loss": 0.8621687316894531, + "step": 23700 + }, + { + "epoch": 73.45679012345678, + "grad_norm": 0.2587008476257324, + "learning_rate": 1.3282407407407407e-05, + "loss": 0.8623291778564454, + "step": 23800 + }, + { + "epoch": 73.76543209876543, + "grad_norm": 0.2771637439727783, + "learning_rate": 1.3128086419753088e-05, + "loss": 0.8624784088134766, + "step": 23900 + }, + { + "epoch": 74.07407407407408, + "grad_norm": 0.2332049012184143, + "learning_rate": 1.2973765432098766e-05, + "loss": 0.8628304290771485, + "step": 24000 + }, + { + "epoch": 74.38271604938272, + "grad_norm": 0.18202383816242218, + "learning_rate": 1.2820987654320987e-05, + "loss": 0.8623355102539062, + "step": 24100 + }, + { + "epoch": 74.69135802469135, + "grad_norm": 0.25001880526542664, + "learning_rate": 1.2666666666666668e-05, + "loss": 0.8625141906738282, + "step": 24200 + }, + { + "epoch": 75.0, + "grad_norm": 0.25027912855148315, + "learning_rate": 1.2512345679012346e-05, + "loss": 0.8624292755126953, + "step": 24300 + }, + { + "epoch": 75.30864197530865, + "grad_norm": 0.2614375054836273, + "learning_rate": 1.2358024691358026e-05, + "loss": 0.8622071838378906, + "step": 24400 + }, + { + "epoch": 75.61728395061728, + "grad_norm": 0.23685692250728607, + "learning_rate": 1.2203703703703705e-05, + "loss": 0.862458724975586, + "step": 24500 + }, + { + "epoch": 75.92592592592592, + "grad_norm": 0.2700103223323822, + "learning_rate": 1.2049382716049383e-05, + "loss": 0.8620365905761719, + "step": 24600 + }, + { + "epoch": 76.23456790123457, + "grad_norm": 0.28203874826431274, + "learning_rate": 1.1895061728395062e-05, + "loss": 0.8621501159667969, + "step": 24700 + }, + { + "epoch": 76.54320987654322, + "grad_norm": 0.2746220827102661, + "learning_rate": 1.1740740740740741e-05, + "loss": 0.8624026489257812, + "step": 24800 + }, + { + "epoch": 76.85185185185185, + "grad_norm": 0.30292582511901855, + "learning_rate": 1.158641975308642e-05, + "loss": 0.862785873413086, + "step": 24900 + }, + { + "epoch": 77.1604938271605, + "grad_norm": 0.2562635540962219, + "learning_rate": 1.1432098765432098e-05, + "loss": 0.8624921417236329, + "step": 25000 + }, + { + "epoch": 77.46913580246914, + "grad_norm": 0.27666226029396057, + "learning_rate": 1.127777777777778e-05, + "loss": 0.8622743988037109, + "step": 25100 + }, + { + "epoch": 77.77777777777777, + "grad_norm": 0.2963859438896179, + "learning_rate": 1.1123456790123457e-05, + "loss": 0.8626934814453125, + "step": 25200 + }, + { + "epoch": 78.08641975308642, + "grad_norm": 0.2593159079551697, + "learning_rate": 1.0969135802469137e-05, + "loss": 0.8621681976318359, + "step": 25300 + }, + { + "epoch": 78.39506172839506, + "grad_norm": 0.2810990810394287, + "learning_rate": 1.0814814814814814e-05, + "loss": 0.8621713256835938, + "step": 25400 + }, + { + "epoch": 78.70370370370371, + "grad_norm": 0.2808496654033661, + "learning_rate": 1.0660493827160495e-05, + "loss": 0.8622039031982421, + "step": 25500 + }, + { + "epoch": 79.01234567901234, + "grad_norm": 0.2452424019575119, + "learning_rate": 1.0506172839506173e-05, + "loss": 0.8625334930419922, + "step": 25600 + }, + { + "epoch": 79.32098765432099, + "grad_norm": 0.2880192697048187, + "learning_rate": 1.0351851851851852e-05, + "loss": 0.8622465515136719, + "step": 25700 + }, + { + "epoch": 79.62962962962963, + "grad_norm": 0.24877040088176727, + "learning_rate": 1.0197530864197532e-05, + "loss": 0.8621809387207031, + "step": 25800 + }, + { + "epoch": 79.93827160493827, + "grad_norm": 0.3088701069355011, + "learning_rate": 1.0043209876543211e-05, + "loss": 0.8624029541015625, + "step": 25900 + }, + { + "epoch": 80.24691358024691, + "grad_norm": 0.19949986040592194, + "learning_rate": 9.888888888888889e-06, + "loss": 0.8618679809570312, + "step": 26000 + }, + { + "epoch": 80.55555555555556, + "grad_norm": 0.3270089626312256, + "learning_rate": 9.734567901234568e-06, + "loss": 0.8620806884765625, + "step": 26100 + }, + { + "epoch": 80.8641975308642, + "grad_norm": 0.24055376648902893, + "learning_rate": 9.581790123456791e-06, + "loss": 0.861843490600586, + "step": 26200 + }, + { + "epoch": 81.17283950617283, + "grad_norm": 0.28812849521636963, + "learning_rate": 9.42746913580247e-06, + "loss": 0.8618939971923828, + "step": 26300 + }, + { + "epoch": 81.48148148148148, + "grad_norm": 0.18239010870456696, + "learning_rate": 9.273148148148149e-06, + "loss": 0.8618624114990234, + "step": 26400 + }, + { + "epoch": 81.79012345679013, + "grad_norm": 0.2698865234851837, + "learning_rate": 9.118827160493828e-06, + "loss": 0.8617278289794922, + "step": 26500 + }, + { + "epoch": 82.09876543209876, + "grad_norm": 0.2671756446361542, + "learning_rate": 8.964506172839507e-06, + "loss": 0.8620853424072266, + "step": 26600 + }, + { + "epoch": 82.4074074074074, + "grad_norm": 0.20211544632911682, + "learning_rate": 8.810185185185185e-06, + "loss": 0.8620963287353516, + "step": 26700 + }, + { + "epoch": 82.71604938271605, + "grad_norm": 0.3215954899787903, + "learning_rate": 8.655864197530864e-06, + "loss": 0.8621923065185547, + "step": 26800 + }, + { + "epoch": 83.0246913580247, + "grad_norm": 0.2056690901517868, + "learning_rate": 8.501543209876544e-06, + "loss": 0.8621724700927734, + "step": 26900 + }, + { + "epoch": 83.33333333333333, + "grad_norm": 0.24216392636299133, + "learning_rate": 8.347222222222223e-06, + "loss": 0.8620801544189454, + "step": 27000 + }, + { + "epoch": 83.64197530864197, + "grad_norm": 0.28262120485305786, + "learning_rate": 8.1929012345679e-06, + "loss": 0.861885986328125, + "step": 27100 + }, + { + "epoch": 83.95061728395062, + "grad_norm": 0.3250841200351715, + "learning_rate": 8.03858024691358e-06, + "loss": 0.8618600463867188, + "step": 27200 + }, + { + "epoch": 84.25925925925925, + "grad_norm": 0.27586230635643005, + "learning_rate": 7.88425925925926e-06, + "loss": 0.8616656494140625, + "step": 27300 + }, + { + "epoch": 84.5679012345679, + "grad_norm": 0.2721251845359802, + "learning_rate": 7.729938271604939e-06, + "loss": 0.8620500183105468, + "step": 27400 + }, + { + "epoch": 84.87654320987654, + "grad_norm": 0.26842591166496277, + "learning_rate": 7.5756172839506175e-06, + "loss": 0.8617433929443359, + "step": 27500 + }, + { + "epoch": 85.18518518518519, + "grad_norm": 0.23888643085956573, + "learning_rate": 7.421296296296297e-06, + "loss": 0.861810073852539, + "step": 27600 + }, + { + "epoch": 85.49382716049382, + "grad_norm": 0.24433459341526031, + "learning_rate": 7.2669753086419754e-06, + "loss": 0.8616561889648438, + "step": 27700 + }, + { + "epoch": 85.80246913580247, + "grad_norm": 0.24760094285011292, + "learning_rate": 7.112654320987655e-06, + "loss": 0.8622868347167969, + "step": 27800 + }, + { + "epoch": 86.11111111111111, + "grad_norm": 0.19840151071548462, + "learning_rate": 6.958333333333333e-06, + "loss": 0.8618616485595703, + "step": 27900 + }, + { + "epoch": 86.41975308641975, + "grad_norm": 0.24764691293239594, + "learning_rate": 6.804012345679013e-06, + "loss": 0.8621045684814453, + "step": 28000 + }, + { + "epoch": 86.72839506172839, + "grad_norm": 0.23593583703041077, + "learning_rate": 6.649691358024691e-06, + "loss": 0.8618828582763672, + "step": 28100 + }, + { + "epoch": 87.03703703703704, + "grad_norm": 0.2748619318008423, + "learning_rate": 6.496913580246914e-06, + "loss": 0.8616398620605469, + "step": 28200 + }, + { + "epoch": 87.34567901234568, + "grad_norm": 0.2573417127132416, + "learning_rate": 6.342592592592593e-06, + "loss": 0.8620298004150391, + "step": 28300 + }, + { + "epoch": 87.65432098765432, + "grad_norm": 0.2384900599718094, + "learning_rate": 6.188271604938272e-06, + "loss": 0.8617670440673828, + "step": 28400 + }, + { + "epoch": 87.96296296296296, + "grad_norm": 0.21160998940467834, + "learning_rate": 6.033950617283951e-06, + "loss": 0.861859359741211, + "step": 28500 + }, + { + "epoch": 88.27160493827161, + "grad_norm": 0.39718398451805115, + "learning_rate": 5.87962962962963e-06, + "loss": 0.8616744995117187, + "step": 28600 + }, + { + "epoch": 88.58024691358025, + "grad_norm": 0.27755340933799744, + "learning_rate": 5.725308641975309e-06, + "loss": 0.8617410278320312, + "step": 28700 + }, + { + "epoch": 88.88888888888889, + "grad_norm": 0.2871803939342499, + "learning_rate": 5.570987654320988e-06, + "loss": 0.8616901397705078, + "step": 28800 + }, + { + "epoch": 89.19753086419753, + "grad_norm": 0.3335205614566803, + "learning_rate": 5.416666666666667e-06, + "loss": 0.8615732574462891, + "step": 28900 + }, + { + "epoch": 89.50617283950618, + "grad_norm": 0.23746320605278015, + "learning_rate": 5.262345679012346e-06, + "loss": 0.861851806640625, + "step": 29000 + }, + { + "epoch": 89.81481481481481, + "grad_norm": 0.28229081630706787, + "learning_rate": 5.1080246913580255e-06, + "loss": 0.86148681640625, + "step": 29100 + }, + { + "epoch": 90.12345679012346, + "grad_norm": 0.21336163580417633, + "learning_rate": 4.953703703703704e-06, + "loss": 0.861663818359375, + "step": 29200 + }, + { + "epoch": 90.4320987654321, + "grad_norm": 0.2604101300239563, + "learning_rate": 4.7993827160493834e-06, + "loss": 0.8617544555664063, + "step": 29300 + }, + { + "epoch": 90.74074074074075, + "grad_norm": 0.26023662090301514, + "learning_rate": 4.645061728395062e-06, + "loss": 0.8617599487304688, + "step": 29400 + }, + { + "epoch": 91.04938271604938, + "grad_norm": 0.26295042037963867, + "learning_rate": 4.490740740740741e-06, + "loss": 0.8617560577392578, + "step": 29500 + }, + { + "epoch": 91.35802469135803, + "grad_norm": 0.22411581873893738, + "learning_rate": 4.33641975308642e-06, + "loss": 0.8616332244873047, + "step": 29600 + }, + { + "epoch": 91.66666666666667, + "grad_norm": 0.24028459191322327, + "learning_rate": 4.182098765432099e-06, + "loss": 0.8615241241455078, + "step": 29700 + }, + { + "epoch": 91.9753086419753, + "grad_norm": 0.25509828329086304, + "learning_rate": 4.027777777777779e-06, + "loss": 0.8616260528564453, + "step": 29800 + }, + { + "epoch": 92.28395061728395, + "grad_norm": 0.22896139323711395, + "learning_rate": 3.873456790123457e-06, + "loss": 0.8615116882324219, + "step": 29900 + }, + { + "epoch": 92.5925925925926, + "grad_norm": 0.1981690675020218, + "learning_rate": 3.719135802469136e-06, + "loss": 0.8616599273681641, + "step": 30000 + }, + { + "epoch": 92.90123456790124, + "grad_norm": 0.2998819053173065, + "learning_rate": 3.564814814814815e-06, + "loss": 0.8616020965576172, + "step": 30100 + }, + { + "epoch": 93.20987654320987, + "grad_norm": 0.2514878213405609, + "learning_rate": 3.412037037037037e-06, + "loss": 0.8614517974853516, + "step": 30200 + }, + { + "epoch": 93.51851851851852, + "grad_norm": 0.24726809561252594, + "learning_rate": 3.257716049382716e-06, + "loss": 0.8615573883056641, + "step": 30300 + }, + { + "epoch": 93.82716049382717, + "grad_norm": 0.24331317842006683, + "learning_rate": 3.1033950617283954e-06, + "loss": 0.861545181274414, + "step": 30400 + }, + { + "epoch": 94.1358024691358, + "grad_norm": 0.29127877950668335, + "learning_rate": 2.9490740740740743e-06, + "loss": 0.8617371368408203, + "step": 30500 + }, + { + "epoch": 94.44444444444444, + "grad_norm": 0.3069797456264496, + "learning_rate": 2.7947530864197533e-06, + "loss": 0.8614784240722656, + "step": 30600 + }, + { + "epoch": 94.75308641975309, + "grad_norm": 0.25526171922683716, + "learning_rate": 2.6404320987654323e-06, + "loss": 0.8612818908691406, + "step": 30700 + }, + { + "epoch": 95.06172839506173, + "grad_norm": 0.25805607438087463, + "learning_rate": 2.4861111111111112e-06, + "loss": 0.8611087799072266, + "step": 30800 + }, + { + "epoch": 95.37037037037037, + "grad_norm": 0.24607188999652863, + "learning_rate": 2.33179012345679e-06, + "loss": 0.8613501739501953, + "step": 30900 + }, + { + "epoch": 95.67901234567901, + "grad_norm": 0.3257257640361786, + "learning_rate": 2.177469135802469e-06, + "loss": 0.8614185333251954, + "step": 31000 + }, + { + "epoch": 95.98765432098766, + "grad_norm": 0.3006044924259186, + "learning_rate": 2.0231481481481485e-06, + "loss": 0.8614950561523438, + "step": 31100 + }, + { + "epoch": 96.29629629629629, + "grad_norm": 0.26980897784233093, + "learning_rate": 1.8688271604938273e-06, + "loss": 0.8614867401123046, + "step": 31200 + }, + { + "epoch": 96.60493827160494, + "grad_norm": 0.25481465458869934, + "learning_rate": 1.7145061728395064e-06, + "loss": 0.8614888000488281, + "step": 31300 + }, + { + "epoch": 96.91358024691358, + "grad_norm": 0.2795570194721222, + "learning_rate": 1.5601851851851852e-06, + "loss": 0.8614127349853515, + "step": 31400 + }, + { + "epoch": 97.22222222222223, + "grad_norm": 0.2887301743030548, + "learning_rate": 1.4058641975308641e-06, + "loss": 0.8610345458984375, + "step": 31500 + }, + { + "epoch": 97.53086419753086, + "grad_norm": 0.28151342272758484, + "learning_rate": 1.2515432098765433e-06, + "loss": 0.8611799621582031, + "step": 31600 + }, + { + "epoch": 97.8395061728395, + "grad_norm": 0.2844570279121399, + "learning_rate": 1.0972222222222223e-06, + "loss": 0.8612938690185546, + "step": 31700 + }, + { + "epoch": 98.14814814814815, + "grad_norm": 0.28799548745155334, + "learning_rate": 9.429012345679012e-07, + "loss": 0.8612958526611328, + "step": 31800 + }, + { + "epoch": 98.45679012345678, + "grad_norm": 0.17849087715148926, + "learning_rate": 7.885802469135803e-07, + "loss": 0.8611792755126954, + "step": 31900 + }, + { + "epoch": 98.76543209876543, + "grad_norm": 0.2363658845424652, + "learning_rate": 6.342592592592592e-07, + "loss": 0.8614938354492188, + "step": 32000 + } + ], + "logging_steps": 100, + "max_steps": 32400, + "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": 2881090634121216.0, + "train_batch_size": 8, + "trial_name": null, + "trial_params": null +} diff --git a/timecost/c7/realtabformer/rtf-c7-20260429_070344/rtf_checkpoints/checkpoint-32076/training_args.bin b/timecost/c7/realtabformer/rtf-c7-20260429_070344/rtf_checkpoints/checkpoint-32076/training_args.bin new file mode 100644 index 0000000000000000000000000000000000000000..34d68dc0e0fe1c1f12a2e581dd1b166aa7178a9e --- /dev/null +++ b/timecost/c7/realtabformer/rtf-c7-20260429_070344/rtf_checkpoints/checkpoint-32076/training_args.bin @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:9e2cd88337d1d846c6918d2b3b63fa3e5c93f12fefc082497590da854a564607 +size 5201 diff --git a/timecost/c7/realtabformer/rtf-c7-20260429_070344/rtf_checkpoints/checkpoint-32100/config.json b/timecost/c7/realtabformer/rtf-c7-20260429_070344/rtf_checkpoints/checkpoint-32100/config.json new file mode 100644 index 0000000000000000000000000000000000000000..2f4b2de295e37af41a4d510862dce45d9dafa48a --- /dev/null +++ b/timecost/c7/realtabformer/rtf-c7-20260429_070344/rtf_checkpoints/checkpoint-32100/config.json @@ -0,0 +1,34 @@ +{ + "activation_function": "gelu_new", + "add_cross_attention": false, + "architectures": [ + "GPT2LMHeadModel" + ], + "attn_pdrop": 0.1, + "bos_token_id": 5, + "dtype": "float32", + "embd_pdrop": 0.1, + "eos_token_id": 6, + "initializer_range": 0.02, + "layer_norm_epsilon": 1e-05, + "model_type": "gpt2", + "n_embd": 768, + "n_head": 12, + "n_inner": null, + "n_layer": 6, + "n_positions": 1024, + "pad_token_id": null, + "reorder_and_upcast_attn": false, + "resid_pdrop": 0.1, + "scale_attn_by_inverse_layer_idx": false, + "scale_attn_weights": true, + "summary_activation": null, + "summary_first_dropout": 0.1, + "summary_proj_to_labels": true, + "summary_type": "cls_index", + "summary_use_proj": true, + "tie_word_embeddings": true, + "transformers_version": "5.5.3", + "use_cache": false, + "vocab_size": 43 +} diff --git a/timecost/c7/realtabformer/rtf-c7-20260429_070344/rtf_checkpoints/checkpoint-32100/generation_config.json b/timecost/c7/realtabformer/rtf-c7-20260429_070344/rtf_checkpoints/checkpoint-32100/generation_config.json new file mode 100644 index 0000000000000000000000000000000000000000..ffe89567780e75b5c22eade9be971483b9618f39 --- /dev/null +++ b/timecost/c7/realtabformer/rtf-c7-20260429_070344/rtf_checkpoints/checkpoint-32100/generation_config.json @@ -0,0 +1,9 @@ +{ + "_from_model_config": true, + "bos_token_id": 5, + "eos_token_id": 6, + "output_attentions": false, + "output_hidden_states": false, + "transformers_version": "5.5.3", + "use_cache": true +} diff --git a/timecost/c7/realtabformer/rtf-c7-20260429_070344/rtf_checkpoints/checkpoint-32100/model.safetensors b/timecost/c7/realtabformer/rtf-c7-20260429_070344/rtf_checkpoints/checkpoint-32100/model.safetensors new file mode 100644 index 0000000000000000000000000000000000000000..f30a7999dee5379bf318cfe8e03159aaceae8488 --- /dev/null +++ b/timecost/c7/realtabformer/rtf-c7-20260429_070344/rtf_checkpoints/checkpoint-32100/model.safetensors @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:7e5cb6b0ad79312d7b8916d005894648f29ad24f0f7db554eb47e7251a866710 +size 173400520 diff --git a/timecost/c7/realtabformer/rtf-c7-20260429_070344/rtf_checkpoints/checkpoint-32100/optimizer.pt b/timecost/c7/realtabformer/rtf-c7-20260429_070344/rtf_checkpoints/checkpoint-32100/optimizer.pt new file mode 100644 index 0000000000000000000000000000000000000000..bca223749c2595060418f3e286b993ccfe911e61 --- /dev/null +++ b/timecost/c7/realtabformer/rtf-c7-20260429_070344/rtf_checkpoints/checkpoint-32100/optimizer.pt @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:591defeb2ce8f41cabd677f04cdee33424e78c151adcc032b03dfe195024e753 +size 346850059 diff --git a/timecost/c7/realtabformer/rtf-c7-20260429_070344/rtf_checkpoints/checkpoint-32100/rng_state.pth b/timecost/c7/realtabformer/rtf-c7-20260429_070344/rtf_checkpoints/checkpoint-32100/rng_state.pth new file mode 100644 index 0000000000000000000000000000000000000000..35c186ef46f3d9437c1196243ee44f2a61d7d9d8 --- /dev/null +++ b/timecost/c7/realtabformer/rtf-c7-20260429_070344/rtf_checkpoints/checkpoint-32100/rng_state.pth @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:00e7051aa580547f8118691acf463d6b8d096d67e834501126f203bdeda2782f +size 14645 diff --git a/timecost/c7/realtabformer/rtf-c7-20260429_070344/rtf_checkpoints/checkpoint-32100/scaler.pt b/timecost/c7/realtabformer/rtf-c7-20260429_070344/rtf_checkpoints/checkpoint-32100/scaler.pt new file mode 100644 index 0000000000000000000000000000000000000000..76d28df919d6985c7b932dd60f3346e3382a7b2c --- /dev/null +++ b/timecost/c7/realtabformer/rtf-c7-20260429_070344/rtf_checkpoints/checkpoint-32100/scaler.pt @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:c413a28e6854ba5529e829b0b46ac30264ba9378d12aa6d0ac398f9dac2769f7 +size 1383 diff --git a/timecost/c7/realtabformer/rtf-c7-20260429_070344/rtf_checkpoints/checkpoint-32100/scheduler.pt b/timecost/c7/realtabformer/rtf-c7-20260429_070344/rtf_checkpoints/checkpoint-32100/scheduler.pt new file mode 100644 index 0000000000000000000000000000000000000000..fa8996e0e153efed072806aa822cb5f11130b9ac --- /dev/null +++ b/timecost/c7/realtabformer/rtf-c7-20260429_070344/rtf_checkpoints/checkpoint-32100/scheduler.pt @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:6776b9f18b7b76ffa8744ecc1a3c1250e04fdca2c85943a51b06388f5d73c74f +size 1465 diff --git a/timecost/c7/realtabformer/rtf-c7-20260429_070344/rtf_checkpoints/checkpoint-32100/trainer_state.json b/timecost/c7/realtabformer/rtf-c7-20260429_070344/rtf_checkpoints/checkpoint-32100/trainer_state.json new file mode 100644 index 0000000000000000000000000000000000000000..702b8524035869a1659c70943ec360faae5aaafa --- /dev/null +++ b/timecost/c7/realtabformer/rtf-c7-20260429_070344/rtf_checkpoints/checkpoint-32100/trainer_state.json @@ -0,0 +1,2281 @@ +{ + "best_global_step": null, + "best_metric": null, + "best_model_checkpoint": null, + "epoch": 99.07407407407408, + "eval_steps": 100, + "global_step": 32100, + "is_hyper_param_search": false, + "is_local_process_zero": true, + "is_world_process_zero": true, + "log_history": [ + { + "epoch": 0.30864197530864196, + "grad_norm": 0.5975016355514526, + "learning_rate": 4.9847222222222224e-05, + "loss": 1.1053435516357422, + "step": 100 + }, + { + "epoch": 0.6172839506172839, + "grad_norm": 0.4975835680961609, + "learning_rate": 4.96929012345679e-05, + "loss": 0.913399429321289, + "step": 200 + }, + { + "epoch": 0.9259259259259259, + "grad_norm": 0.5069450736045837, + "learning_rate": 4.9538580246913586e-05, + "loss": 0.9037506866455078, + "step": 300 + }, + { + "epoch": 1.2345679012345678, + "grad_norm": 0.3577662706375122, + "learning_rate": 4.9384259259259264e-05, + "loss": 0.8971150207519532, + "step": 400 + }, + { + "epoch": 1.5432098765432098, + "grad_norm": 0.37501809000968933, + "learning_rate": 4.922993827160494e-05, + "loss": 0.8930672454833984, + "step": 500 + }, + { + "epoch": 1.8518518518518519, + "grad_norm": 0.3230942487716675, + "learning_rate": 4.907561728395062e-05, + "loss": 0.8911088562011719, + "step": 600 + }, + { + "epoch": 2.1604938271604937, + "grad_norm": 0.31315380334854126, + "learning_rate": 4.89212962962963e-05, + "loss": 0.8870069122314453, + "step": 700 + }, + { + "epoch": 2.4691358024691357, + "grad_norm": 0.3408145606517792, + "learning_rate": 4.8766975308641975e-05, + "loss": 0.8845426177978516, + "step": 800 + }, + { + "epoch": 2.7777777777777777, + "grad_norm": 0.34649044275283813, + "learning_rate": 4.861265432098765e-05, + "loss": 0.8816167449951172, + "step": 900 + }, + { + "epoch": 3.0864197530864197, + "grad_norm": 0.2891448140144348, + "learning_rate": 4.845833333333334e-05, + "loss": 0.8816600799560547, + "step": 1000 + }, + { + "epoch": 3.3950617283950617, + "grad_norm": 0.3047502636909485, + "learning_rate": 4.8304012345679014e-05, + "loss": 0.8813356018066406, + "step": 1100 + }, + { + "epoch": 3.7037037037037037, + "grad_norm": 0.34682637453079224, + "learning_rate": 4.81496913580247e-05, + "loss": 0.8769812774658203, + "step": 1200 + }, + { + "epoch": 4.012345679012346, + "grad_norm": 0.3608556091785431, + "learning_rate": 4.7995370370370376e-05, + "loss": 0.8777651977539063, + "step": 1300 + }, + { + "epoch": 4.320987654320987, + "grad_norm": 0.3927426338195801, + "learning_rate": 4.7841049382716054e-05, + "loss": 0.8768961334228516, + "step": 1400 + }, + { + "epoch": 4.62962962962963, + "grad_norm": 0.2639325261116028, + "learning_rate": 4.768672839506173e-05, + "loss": 0.8781243133544921, + "step": 1500 + }, + { + "epoch": 4.938271604938271, + "grad_norm": 0.35398051142692566, + "learning_rate": 4.753240740740741e-05, + "loss": 0.87546630859375, + "step": 1600 + }, + { + "epoch": 5.246913580246914, + "grad_norm": 0.305637001991272, + "learning_rate": 4.737808641975309e-05, + "loss": 0.8746750640869141, + "step": 1700 + }, + { + "epoch": 5.555555555555555, + "grad_norm": 0.217234268784523, + "learning_rate": 4.7223765432098765e-05, + "loss": 0.8738501739501953, + "step": 1800 + }, + { + "epoch": 5.864197530864198, + "grad_norm": 0.3149331510066986, + "learning_rate": 4.706944444444445e-05, + "loss": 0.8732035064697266, + "step": 1900 + }, + { + "epoch": 6.172839506172839, + "grad_norm": 0.26609405875205994, + "learning_rate": 4.691512345679013e-05, + "loss": 0.8728971862792969, + "step": 2000 + }, + { + "epoch": 6.481481481481482, + "grad_norm": 0.31683775782585144, + "learning_rate": 4.6760802469135805e-05, + "loss": 0.8713655853271485, + "step": 2100 + }, + { + "epoch": 6.790123456790123, + "grad_norm": 0.34013745188713074, + "learning_rate": 4.660648148148148e-05, + "loss": 0.8744948577880859, + "step": 2200 + }, + { + "epoch": 7.098765432098766, + "grad_norm": 0.22860896587371826, + "learning_rate": 4.645216049382716e-05, + "loss": 0.8739882659912109, + "step": 2300 + }, + { + "epoch": 7.407407407407407, + "grad_norm": 0.37235602736473083, + "learning_rate": 4.629783950617284e-05, + "loss": 0.8726573944091797, + "step": 2400 + }, + { + "epoch": 7.716049382716049, + "grad_norm": 0.23996835947036743, + "learning_rate": 4.614351851851852e-05, + "loss": 0.8695323944091797, + "step": 2500 + }, + { + "epoch": 8.024691358024691, + "grad_norm": 0.27126339077949524, + "learning_rate": 4.59891975308642e-05, + "loss": 0.8710608673095703, + "step": 2600 + }, + { + "epoch": 8.333333333333334, + "grad_norm": 0.3054942190647125, + "learning_rate": 4.5834876543209884e-05, + "loss": 0.870329360961914, + "step": 2700 + }, + { + "epoch": 8.641975308641975, + "grad_norm": 0.32970622181892395, + "learning_rate": 4.568055555555556e-05, + "loss": 0.8703945922851563, + "step": 2800 + }, + { + "epoch": 8.950617283950617, + "grad_norm": 0.24803043901920319, + "learning_rate": 4.552623456790124e-05, + "loss": 0.8710511779785156, + "step": 2900 + }, + { + "epoch": 9.25925925925926, + "grad_norm": 0.4170224964618683, + "learning_rate": 4.537191358024692e-05, + "loss": 0.8694993591308594, + "step": 3000 + }, + { + "epoch": 9.567901234567902, + "grad_norm": 0.26911184191703796, + "learning_rate": 4.5217592592592595e-05, + "loss": 0.870486068725586, + "step": 3100 + }, + { + "epoch": 9.876543209876543, + "grad_norm": 0.30582156777381897, + "learning_rate": 4.506327160493827e-05, + "loss": 0.8719473266601563, + "step": 3200 + }, + { + "epoch": 10.185185185185185, + "grad_norm": 0.29516837000846863, + "learning_rate": 4.490895061728395e-05, + "loss": 0.8712838745117187, + "step": 3300 + }, + { + "epoch": 10.493827160493828, + "grad_norm": 0.28133177757263184, + "learning_rate": 4.475462962962963e-05, + "loss": 0.8699048614501953, + "step": 3400 + }, + { + "epoch": 10.802469135802468, + "grad_norm": 0.38596439361572266, + "learning_rate": 4.4600308641975306e-05, + "loss": 0.8712091064453125, + "step": 3500 + }, + { + "epoch": 11.11111111111111, + "grad_norm": 0.2777452766895294, + "learning_rate": 4.444598765432099e-05, + "loss": 0.8693663787841797, + "step": 3600 + }, + { + "epoch": 11.419753086419753, + "grad_norm": 0.4119755029678345, + "learning_rate": 4.429166666666667e-05, + "loss": 0.8681372833251954, + "step": 3700 + }, + { + "epoch": 11.728395061728396, + "grad_norm": 0.2371830940246582, + "learning_rate": 4.4137345679012346e-05, + "loss": 0.8699448394775391, + "step": 3800 + }, + { + "epoch": 12.037037037037036, + "grad_norm": 0.22597350180149078, + "learning_rate": 4.3983024691358023e-05, + "loss": 0.8695160675048829, + "step": 3900 + }, + { + "epoch": 12.345679012345679, + "grad_norm": 0.2682456970214844, + "learning_rate": 4.382870370370371e-05, + "loss": 0.8695050811767578, + "step": 4000 + }, + { + "epoch": 12.654320987654321, + "grad_norm": 0.29016727209091187, + "learning_rate": 4.3674382716049386e-05, + "loss": 0.8679987335205078, + "step": 4100 + }, + { + "epoch": 12.962962962962964, + "grad_norm": 0.26374146342277527, + "learning_rate": 4.352006172839506e-05, + "loss": 0.8693247222900391, + "step": 4200 + }, + { + "epoch": 13.271604938271604, + "grad_norm": 0.29962387681007385, + "learning_rate": 4.336574074074074e-05, + "loss": 0.8679438781738281, + "step": 4300 + }, + { + "epoch": 13.580246913580247, + "grad_norm": 0.29223865270614624, + "learning_rate": 4.3211419753086425e-05, + "loss": 0.8687114715576172, + "step": 4400 + }, + { + "epoch": 13.88888888888889, + "grad_norm": 0.37939226627349854, + "learning_rate": 4.30570987654321e-05, + "loss": 0.8680426025390625, + "step": 4500 + }, + { + "epoch": 14.197530864197532, + "grad_norm": 0.3423369526863098, + "learning_rate": 4.290277777777778e-05, + "loss": 0.8689276123046875, + "step": 4600 + }, + { + "epoch": 14.506172839506172, + "grad_norm": 0.36750486493110657, + "learning_rate": 4.274845679012346e-05, + "loss": 0.8679615783691407, + "step": 4700 + }, + { + "epoch": 14.814814814814815, + "grad_norm": 0.35079503059387207, + "learning_rate": 4.2594135802469136e-05, + "loss": 0.8678194427490235, + "step": 4800 + }, + { + "epoch": 15.123456790123457, + "grad_norm": 0.22617663443088531, + "learning_rate": 4.2439814814814814e-05, + "loss": 0.8699114990234375, + "step": 4900 + }, + { + "epoch": 15.432098765432098, + "grad_norm": 0.3365887999534607, + "learning_rate": 4.228549382716049e-05, + "loss": 0.8693661499023437, + "step": 5000 + }, + { + "epoch": 15.74074074074074, + "grad_norm": 0.29944780468940735, + "learning_rate": 4.213117283950617e-05, + "loss": 0.8680919647216797, + "step": 5100 + }, + { + "epoch": 16.049382716049383, + "grad_norm": 0.29136228561401367, + "learning_rate": 4.1976851851851854e-05, + "loss": 0.868043212890625, + "step": 5200 + }, + { + "epoch": 16.358024691358025, + "grad_norm": 0.24972350895404816, + "learning_rate": 4.182253086419753e-05, + "loss": 0.8676002502441407, + "step": 5300 + }, + { + "epoch": 16.666666666666668, + "grad_norm": 0.3150668442249298, + "learning_rate": 4.1668209876543216e-05, + "loss": 0.868660659790039, + "step": 5400 + }, + { + "epoch": 16.97530864197531, + "grad_norm": 0.3512415587902069, + "learning_rate": 4.1513888888888894e-05, + "loss": 0.8682049560546875, + "step": 5500 + }, + { + "epoch": 17.28395061728395, + "grad_norm": 0.3164934515953064, + "learning_rate": 4.135956790123457e-05, + "loss": 0.8676078033447265, + "step": 5600 + }, + { + "epoch": 17.59259259259259, + "grad_norm": 0.2696605324745178, + "learning_rate": 4.120524691358025e-05, + "loss": 0.8678233337402343, + "step": 5700 + }, + { + "epoch": 17.901234567901234, + "grad_norm": 0.345699280500412, + "learning_rate": 4.105092592592593e-05, + "loss": 0.8660729217529297, + "step": 5800 + }, + { + "epoch": 18.209876543209877, + "grad_norm": 0.2393321543931961, + "learning_rate": 4.0896604938271604e-05, + "loss": 0.86662109375, + "step": 5900 + }, + { + "epoch": 18.51851851851852, + "grad_norm": 0.23627376556396484, + "learning_rate": 4.074228395061729e-05, + "loss": 0.8684516906738281, + "step": 6000 + }, + { + "epoch": 18.82716049382716, + "grad_norm": 0.22598141431808472, + "learning_rate": 4.0587962962962966e-05, + "loss": 0.8676165771484375, + "step": 6100 + }, + { + "epoch": 19.135802469135804, + "grad_norm": 0.29334530234336853, + "learning_rate": 4.0433641975308644e-05, + "loss": 0.8662307739257813, + "step": 6200 + }, + { + "epoch": 19.444444444444443, + "grad_norm": 0.23827306926250458, + "learning_rate": 4.027932098765432e-05, + "loss": 0.8666460418701172, + "step": 6300 + }, + { + "epoch": 19.753086419753085, + "grad_norm": 0.29057374596595764, + "learning_rate": 4.0125e-05, + "loss": 0.8675463104248047, + "step": 6400 + }, + { + "epoch": 20.061728395061728, + "grad_norm": 0.3120971918106079, + "learning_rate": 3.997067901234568e-05, + "loss": 0.8672868347167969, + "step": 6500 + }, + { + "epoch": 20.37037037037037, + "grad_norm": 0.412092924118042, + "learning_rate": 3.9816358024691355e-05, + "loss": 0.8670984649658203, + "step": 6600 + }, + { + "epoch": 20.679012345679013, + "grad_norm": 0.2982257306575775, + "learning_rate": 3.966203703703704e-05, + "loss": 0.8685931396484375, + "step": 6700 + }, + { + "epoch": 20.987654320987655, + "grad_norm": 0.2703470289707184, + "learning_rate": 3.950771604938272e-05, + "loss": 0.8666371917724609, + "step": 6800 + }, + { + "epoch": 21.296296296296298, + "grad_norm": 0.3358808159828186, + "learning_rate": 3.93533950617284e-05, + "loss": 0.8664039611816406, + "step": 6900 + }, + { + "epoch": 21.604938271604937, + "grad_norm": 0.3047441244125366, + "learning_rate": 3.919907407407408e-05, + "loss": 0.8664222717285156, + "step": 7000 + }, + { + "epoch": 21.91358024691358, + "grad_norm": 0.28871631622314453, + "learning_rate": 3.904475308641976e-05, + "loss": 0.8676378631591797, + "step": 7100 + }, + { + "epoch": 22.22222222222222, + "grad_norm": 0.29110872745513916, + "learning_rate": 3.8890432098765435e-05, + "loss": 0.8660447692871094, + "step": 7200 + }, + { + "epoch": 22.530864197530864, + "grad_norm": 0.2692337930202484, + "learning_rate": 3.873611111111111e-05, + "loss": 0.8669923400878906, + "step": 7300 + }, + { + "epoch": 22.839506172839506, + "grad_norm": 0.31768998503685, + "learning_rate": 3.858179012345679e-05, + "loss": 0.8663272094726563, + "step": 7400 + }, + { + "epoch": 23.14814814814815, + "grad_norm": 0.22150367498397827, + "learning_rate": 3.842746913580247e-05, + "loss": 0.8668128967285156, + "step": 7500 + }, + { + "epoch": 23.45679012345679, + "grad_norm": 0.23608367145061493, + "learning_rate": 3.827314814814815e-05, + "loss": 0.8661857604980469, + "step": 7600 + }, + { + "epoch": 23.765432098765434, + "grad_norm": 0.23709823191165924, + "learning_rate": 3.811882716049383e-05, + "loss": 0.8668611145019531, + "step": 7700 + }, + { + "epoch": 24.074074074074073, + "grad_norm": 0.2794584333896637, + "learning_rate": 3.796450617283951e-05, + "loss": 0.8664863586425782, + "step": 7800 + }, + { + "epoch": 24.382716049382715, + "grad_norm": 0.35239988565444946, + "learning_rate": 3.7810185185185185e-05, + "loss": 0.8656664276123047, + "step": 7900 + }, + { + "epoch": 24.691358024691358, + "grad_norm": 0.3032480776309967, + "learning_rate": 3.765586419753086e-05, + "loss": 0.8664974212646485, + "step": 8000 + }, + { + "epoch": 25.0, + "grad_norm": 0.32895025610923767, + "learning_rate": 3.750154320987655e-05, + "loss": 0.8656834411621094, + "step": 8100 + }, + { + "epoch": 25.308641975308642, + "grad_norm": 0.24647651612758636, + "learning_rate": 3.7347222222222225e-05, + "loss": 0.8668187713623047, + "step": 8200 + }, + { + "epoch": 25.617283950617285, + "grad_norm": 0.3259798288345337, + "learning_rate": 3.71929012345679e-05, + "loss": 0.8659412384033203, + "step": 8300 + }, + { + "epoch": 25.925925925925927, + "grad_norm": 0.29342758655548096, + "learning_rate": 3.703858024691359e-05, + "loss": 0.865984115600586, + "step": 8400 + }, + { + "epoch": 26.234567901234566, + "grad_norm": 0.18561498820781708, + "learning_rate": 3.6884259259259265e-05, + "loss": 0.8656551361083984, + "step": 8500 + }, + { + "epoch": 26.54320987654321, + "grad_norm": 0.24412372708320618, + "learning_rate": 3.672993827160494e-05, + "loss": 0.8654991912841797, + "step": 8600 + }, + { + "epoch": 26.85185185185185, + "grad_norm": 0.2831413447856903, + "learning_rate": 3.657561728395062e-05, + "loss": 0.8658388519287109, + "step": 8700 + }, + { + "epoch": 27.160493827160494, + "grad_norm": 0.27400529384613037, + "learning_rate": 3.64212962962963e-05, + "loss": 0.8661294555664063, + "step": 8800 + }, + { + "epoch": 27.469135802469136, + "grad_norm": 0.30983632802963257, + "learning_rate": 3.6266975308641976e-05, + "loss": 0.866031265258789, + "step": 8900 + }, + { + "epoch": 27.77777777777778, + "grad_norm": 0.3088923990726471, + "learning_rate": 3.611265432098765e-05, + "loss": 0.8667101287841796, + "step": 9000 + }, + { + "epoch": 28.08641975308642, + "grad_norm": 0.23197945952415466, + "learning_rate": 3.595833333333333e-05, + "loss": 0.8657314300537109, + "step": 9100 + }, + { + "epoch": 28.395061728395063, + "grad_norm": 0.32310914993286133, + "learning_rate": 3.5804012345679015e-05, + "loss": 0.8657714080810547, + "step": 9200 + }, + { + "epoch": 28.703703703703702, + "grad_norm": 0.2674392759799957, + "learning_rate": 3.564969135802469e-05, + "loss": 0.8655484771728515, + "step": 9300 + }, + { + "epoch": 29.012345679012345, + "grad_norm": 0.25402772426605225, + "learning_rate": 3.549537037037037e-05, + "loss": 0.8671824645996093, + "step": 9400 + }, + { + "epoch": 29.320987654320987, + "grad_norm": 0.2903260886669159, + "learning_rate": 3.534104938271605e-05, + "loss": 0.8659280395507812, + "step": 9500 + }, + { + "epoch": 29.62962962962963, + "grad_norm": 0.2330218255519867, + "learning_rate": 3.518672839506173e-05, + "loss": 0.8649930572509765, + "step": 9600 + }, + { + "epoch": 29.938271604938272, + "grad_norm": 0.31311362981796265, + "learning_rate": 3.503240740740741e-05, + "loss": 0.865321044921875, + "step": 9700 + }, + { + "epoch": 30.246913580246915, + "grad_norm": 0.3377930223941803, + "learning_rate": 3.487808641975309e-05, + "loss": 0.8644564056396484, + "step": 9800 + }, + { + "epoch": 30.555555555555557, + "grad_norm": 0.3928042948246002, + "learning_rate": 3.4723765432098766e-05, + "loss": 0.8649266815185547, + "step": 9900 + }, + { + "epoch": 30.864197530864196, + "grad_norm": 0.2636756896972656, + "learning_rate": 3.456944444444445e-05, + "loss": 0.865054931640625, + "step": 10000 + }, + { + "epoch": 31.17283950617284, + "grad_norm": 0.28490859270095825, + "learning_rate": 3.441512345679013e-05, + "loss": 0.8649151611328125, + "step": 10100 + }, + { + "epoch": 31.48148148148148, + "grad_norm": 0.15659233927726746, + "learning_rate": 3.4260802469135806e-05, + "loss": 0.8644688415527344, + "step": 10200 + }, + { + "epoch": 31.790123456790123, + "grad_norm": 0.2705706059932709, + "learning_rate": 3.4106481481481484e-05, + "loss": 0.8652298736572266, + "step": 10300 + }, + { + "epoch": 32.098765432098766, + "grad_norm": 0.2109704315662384, + "learning_rate": 3.395216049382716e-05, + "loss": 0.8646073150634765, + "step": 10400 + }, + { + "epoch": 32.407407407407405, + "grad_norm": 0.4892992079257965, + "learning_rate": 3.379783950617284e-05, + "loss": 0.8661848449707031, + "step": 10500 + }, + { + "epoch": 32.71604938271605, + "grad_norm": 0.24907298386096954, + "learning_rate": 3.364351851851852e-05, + "loss": 0.8667823028564453, + "step": 10600 + }, + { + "epoch": 33.02469135802469, + "grad_norm": 0.252615749835968, + "learning_rate": 3.3489197530864194e-05, + "loss": 0.8658191680908203, + "step": 10700 + }, + { + "epoch": 33.333333333333336, + "grad_norm": 0.2954252362251282, + "learning_rate": 3.333487654320988e-05, + "loss": 0.8650070190429687, + "step": 10800 + }, + { + "epoch": 33.641975308641975, + "grad_norm": 0.25497448444366455, + "learning_rate": 3.3180555555555556e-05, + "loss": 0.8645931243896484, + "step": 10900 + }, + { + "epoch": 33.95061728395062, + "grad_norm": 0.21472449600696564, + "learning_rate": 3.3026234567901234e-05, + "loss": 0.8647118377685546, + "step": 11000 + }, + { + "epoch": 34.25925925925926, + "grad_norm": 0.2599078118801117, + "learning_rate": 3.287191358024692e-05, + "loss": 0.8644834136962891, + "step": 11100 + }, + { + "epoch": 34.5679012345679, + "grad_norm": 0.22373680770397186, + "learning_rate": 3.2717592592592596e-05, + "loss": 0.8649051666259766, + "step": 11200 + }, + { + "epoch": 34.876543209876544, + "grad_norm": 0.26835867762565613, + "learning_rate": 3.2563271604938274e-05, + "loss": 0.8655126953125, + "step": 11300 + }, + { + "epoch": 35.18518518518518, + "grad_norm": 0.27637186646461487, + "learning_rate": 3.240895061728395e-05, + "loss": 0.8649341583251953, + "step": 11400 + }, + { + "epoch": 35.49382716049383, + "grad_norm": 0.24539203941822052, + "learning_rate": 3.225462962962963e-05, + "loss": 0.8642951202392578, + "step": 11500 + }, + { + "epoch": 35.80246913580247, + "grad_norm": 0.237693190574646, + "learning_rate": 3.210030864197531e-05, + "loss": 0.8649242401123047, + "step": 11600 + }, + { + "epoch": 36.111111111111114, + "grad_norm": 0.31651604175567627, + "learning_rate": 3.194598765432099e-05, + "loss": 0.8645661926269531, + "step": 11700 + }, + { + "epoch": 36.41975308641975, + "grad_norm": 0.2650340497493744, + "learning_rate": 3.179166666666667e-05, + "loss": 0.8651156616210938, + "step": 11800 + }, + { + "epoch": 36.72839506172839, + "grad_norm": 0.25851109623908997, + "learning_rate": 3.163734567901235e-05, + "loss": 0.8652816772460937, + "step": 11900 + }, + { + "epoch": 37.03703703703704, + "grad_norm": 0.32711413502693176, + "learning_rate": 3.1483024691358025e-05, + "loss": 0.8652924346923828, + "step": 12000 + }, + { + "epoch": 37.34567901234568, + "grad_norm": 0.3487214148044586, + "learning_rate": 3.1330246913580246e-05, + "loss": 0.8653363037109375, + "step": 12100 + }, + { + "epoch": 37.65432098765432, + "grad_norm": 0.19253982603549957, + "learning_rate": 3.1175925925925924e-05, + "loss": 0.864839859008789, + "step": 12200 + }, + { + "epoch": 37.96296296296296, + "grad_norm": 0.3058128356933594, + "learning_rate": 3.102160493827161e-05, + "loss": 0.8642467498779297, + "step": 12300 + }, + { + "epoch": 38.27160493827161, + "grad_norm": 0.30015528202056885, + "learning_rate": 3.0867283950617286e-05, + "loss": 0.8649742126464843, + "step": 12400 + }, + { + "epoch": 38.58024691358025, + "grad_norm": 0.33380067348480225, + "learning_rate": 3.0712962962962964e-05, + "loss": 0.8651032257080078, + "step": 12500 + }, + { + "epoch": 38.888888888888886, + "grad_norm": 0.36329004168510437, + "learning_rate": 3.055864197530864e-05, + "loss": 0.8648841857910157, + "step": 12600 + }, + { + "epoch": 39.19753086419753, + "grad_norm": 0.24460196495056152, + "learning_rate": 3.0404320987654322e-05, + "loss": 0.864749755859375, + "step": 12700 + }, + { + "epoch": 39.50617283950617, + "grad_norm": 0.2373257279396057, + "learning_rate": 3.025e-05, + "loss": 0.8641365051269532, + "step": 12800 + }, + { + "epoch": 39.81481481481482, + "grad_norm": 0.30177298188209534, + "learning_rate": 3.0095679012345678e-05, + "loss": 0.8651829528808593, + "step": 12900 + }, + { + "epoch": 40.123456790123456, + "grad_norm": 0.28286585211753845, + "learning_rate": 2.994135802469136e-05, + "loss": 0.8650211334228516, + "step": 13000 + }, + { + "epoch": 40.4320987654321, + "grad_norm": 0.2545726001262665, + "learning_rate": 2.978703703703704e-05, + "loss": 0.8654981231689454, + "step": 13100 + }, + { + "epoch": 40.74074074074074, + "grad_norm": 0.23175671696662903, + "learning_rate": 2.963271604938272e-05, + "loss": 0.8643350219726562, + "step": 13200 + }, + { + "epoch": 41.04938271604938, + "grad_norm": 0.2642582952976227, + "learning_rate": 2.94783950617284e-05, + "loss": 0.8648191070556641, + "step": 13300 + }, + { + "epoch": 41.358024691358025, + "grad_norm": 0.20592033863067627, + "learning_rate": 2.9324074074074076e-05, + "loss": 0.8642449951171876, + "step": 13400 + }, + { + "epoch": 41.666666666666664, + "grad_norm": 0.29046180844306946, + "learning_rate": 2.9169753086419754e-05, + "loss": 0.8642656707763672, + "step": 13500 + }, + { + "epoch": 41.97530864197531, + "grad_norm": 0.26292547583580017, + "learning_rate": 2.9015432098765432e-05, + "loss": 0.8639488220214844, + "step": 13600 + }, + { + "epoch": 42.28395061728395, + "grad_norm": 0.297783225774765, + "learning_rate": 2.886111111111111e-05, + "loss": 0.864585189819336, + "step": 13700 + }, + { + "epoch": 42.592592592592595, + "grad_norm": 0.2444617748260498, + "learning_rate": 2.870679012345679e-05, + "loss": 0.8649152374267578, + "step": 13800 + }, + { + "epoch": 42.901234567901234, + "grad_norm": 0.2831110656261444, + "learning_rate": 2.855246913580247e-05, + "loss": 0.8645712280273438, + "step": 13900 + }, + { + "epoch": 43.20987654320987, + "grad_norm": 0.2567242980003357, + "learning_rate": 2.8398148148148153e-05, + "loss": 0.8638491058349609, + "step": 14000 + }, + { + "epoch": 43.51851851851852, + "grad_norm": 0.2865658104419708, + "learning_rate": 2.824537037037037e-05, + "loss": 0.8642730712890625, + "step": 14100 + }, + { + "epoch": 43.82716049382716, + "grad_norm": 0.298484742641449, + "learning_rate": 2.8091049382716052e-05, + "loss": 0.8649552917480469, + "step": 14200 + }, + { + "epoch": 44.135802469135804, + "grad_norm": 0.28939852118492126, + "learning_rate": 2.793672839506173e-05, + "loss": 0.8639812469482422, + "step": 14300 + }, + { + "epoch": 44.44444444444444, + "grad_norm": 0.3122703433036804, + "learning_rate": 2.7782407407407407e-05, + "loss": 0.8637904357910157, + "step": 14400 + }, + { + "epoch": 44.75308641975309, + "grad_norm": 0.2748583257198334, + "learning_rate": 2.7628086419753085e-05, + "loss": 0.8642880249023438, + "step": 14500 + }, + { + "epoch": 45.06172839506173, + "grad_norm": 0.2639121115207672, + "learning_rate": 2.747376543209877e-05, + "loss": 0.8640217590332031, + "step": 14600 + }, + { + "epoch": 45.370370370370374, + "grad_norm": 0.2939169406890869, + "learning_rate": 2.7319444444444447e-05, + "loss": 0.8636822509765625, + "step": 14700 + }, + { + "epoch": 45.67901234567901, + "grad_norm": 0.28234273195266724, + "learning_rate": 2.7165123456790125e-05, + "loss": 0.8640520477294922, + "step": 14800 + }, + { + "epoch": 45.98765432098765, + "grad_norm": 0.3247532844543457, + "learning_rate": 2.7010802469135806e-05, + "loss": 0.8645074462890625, + "step": 14900 + }, + { + "epoch": 46.2962962962963, + "grad_norm": 0.17439720034599304, + "learning_rate": 2.6856481481481484e-05, + "loss": 0.86478759765625, + "step": 15000 + }, + { + "epoch": 46.60493827160494, + "grad_norm": 0.21647287905216217, + "learning_rate": 2.670216049382716e-05, + "loss": 0.8639440155029297, + "step": 15100 + }, + { + "epoch": 46.91358024691358, + "grad_norm": 0.22848644852638245, + "learning_rate": 2.654783950617284e-05, + "loss": 0.8637759399414062, + "step": 15200 + }, + { + "epoch": 47.22222222222222, + "grad_norm": 0.2585737407207489, + "learning_rate": 2.6393518518518517e-05, + "loss": 0.8639788055419921, + "step": 15300 + }, + { + "epoch": 47.53086419753087, + "grad_norm": 0.3228673040866852, + "learning_rate": 2.62391975308642e-05, + "loss": 0.8634998321533203, + "step": 15400 + }, + { + "epoch": 47.839506172839506, + "grad_norm": 0.19199813902378082, + "learning_rate": 2.608487654320988e-05, + "loss": 0.8637458038330078, + "step": 15500 + }, + { + "epoch": 48.148148148148145, + "grad_norm": 0.25434640049934387, + "learning_rate": 2.5930555555555556e-05, + "loss": 0.8639579010009766, + "step": 15600 + }, + { + "epoch": 48.45679012345679, + "grad_norm": 0.2062629610300064, + "learning_rate": 2.5776234567901237e-05, + "loss": 0.8633383941650391, + "step": 15700 + }, + { + "epoch": 48.76543209876543, + "grad_norm": 0.28273260593414307, + "learning_rate": 2.5621913580246915e-05, + "loss": 0.8634058380126953, + "step": 15800 + }, + { + "epoch": 49.074074074074076, + "grad_norm": 0.25794675946235657, + "learning_rate": 2.5467592592592593e-05, + "loss": 0.8644215393066407, + "step": 15900 + }, + { + "epoch": 49.382716049382715, + "grad_norm": 0.2801361382007599, + "learning_rate": 2.531327160493827e-05, + "loss": 0.8637371826171875, + "step": 16000 + }, + { + "epoch": 49.69135802469136, + "grad_norm": 0.31594523787498474, + "learning_rate": 2.51604938271605e-05, + "loss": 0.8638718414306641, + "step": 16100 + }, + { + "epoch": 50.0, + "grad_norm": 0.1785411238670349, + "learning_rate": 2.5006172839506177e-05, + "loss": 0.8638040161132813, + "step": 16200 + }, + { + "epoch": 50.30864197530864, + "grad_norm": 0.23965902626514435, + "learning_rate": 2.4851851851851854e-05, + "loss": 0.8634780883789063, + "step": 16300 + }, + { + "epoch": 50.617283950617285, + "grad_norm": 0.20226578414440155, + "learning_rate": 2.4697530864197532e-05, + "loss": 0.8635775756835937, + "step": 16400 + }, + { + "epoch": 50.925925925925924, + "grad_norm": 0.26240015029907227, + "learning_rate": 2.454320987654321e-05, + "loss": 0.8634452819824219, + "step": 16500 + }, + { + "epoch": 51.23456790123457, + "grad_norm": 0.31871360540390015, + "learning_rate": 2.4388888888888887e-05, + "loss": 0.8634230041503906, + "step": 16600 + }, + { + "epoch": 51.54320987654321, + "grad_norm": 0.28414225578308105, + "learning_rate": 2.423456790123457e-05, + "loss": 0.863424072265625, + "step": 16700 + }, + { + "epoch": 51.851851851851855, + "grad_norm": 0.25372815132141113, + "learning_rate": 2.408024691358025e-05, + "loss": 0.8632637023925781, + "step": 16800 + }, + { + "epoch": 52.160493827160494, + "grad_norm": 0.2601035237312317, + "learning_rate": 2.3925925925925927e-05, + "loss": 0.8637233734130859, + "step": 16900 + }, + { + "epoch": 52.46913580246913, + "grad_norm": 0.15456737577915192, + "learning_rate": 2.3771604938271605e-05, + "loss": 0.8640314483642578, + "step": 17000 + }, + { + "epoch": 52.77777777777778, + "grad_norm": 0.2598564326763153, + "learning_rate": 2.3617283950617286e-05, + "loss": 0.8640044403076171, + "step": 17100 + }, + { + "epoch": 53.08641975308642, + "grad_norm": 0.22886838018894196, + "learning_rate": 2.3462962962962964e-05, + "loss": 0.8635028076171875, + "step": 17200 + }, + { + "epoch": 53.39506172839506, + "grad_norm": 0.2388191968202591, + "learning_rate": 2.330864197530864e-05, + "loss": 0.8633686828613282, + "step": 17300 + }, + { + "epoch": 53.7037037037037, + "grad_norm": 0.18569715321063995, + "learning_rate": 2.3154320987654322e-05, + "loss": 0.8634825897216797, + "step": 17400 + }, + { + "epoch": 54.01234567901235, + "grad_norm": 0.23340563476085663, + "learning_rate": 2.3000000000000003e-05, + "loss": 0.8637994384765625, + "step": 17500 + }, + { + "epoch": 54.32098765432099, + "grad_norm": 0.2481815665960312, + "learning_rate": 2.284567901234568e-05, + "loss": 0.8632342529296875, + "step": 17600 + }, + { + "epoch": 54.629629629629626, + "grad_norm": 0.2559766173362732, + "learning_rate": 2.269135802469136e-05, + "loss": 0.8636701202392578, + "step": 17700 + }, + { + "epoch": 54.93827160493827, + "grad_norm": 0.4377776086330414, + "learning_rate": 2.2537037037037036e-05, + "loss": 0.8633976745605468, + "step": 17800 + }, + { + "epoch": 55.24691358024691, + "grad_norm": 0.26731622219085693, + "learning_rate": 2.2382716049382718e-05, + "loss": 0.8637456512451172, + "step": 17900 + }, + { + "epoch": 55.55555555555556, + "grad_norm": 0.25528597831726074, + "learning_rate": 2.2228395061728395e-05, + "loss": 0.8630653381347656, + "step": 18000 + }, + { + "epoch": 55.864197530864196, + "grad_norm": 0.3228375315666199, + "learning_rate": 2.2075617283950617e-05, + "loss": 0.8641485595703124, + "step": 18100 + }, + { + "epoch": 56.17283950617284, + "grad_norm": 0.3410342037677765, + "learning_rate": 2.1921296296296298e-05, + "loss": 0.8628273773193359, + "step": 18200 + }, + { + "epoch": 56.48148148148148, + "grad_norm": 0.27824917435646057, + "learning_rate": 2.1766975308641976e-05, + "loss": 0.8632877349853516, + "step": 18300 + }, + { + "epoch": 56.79012345679013, + "grad_norm": 0.29218852519989014, + "learning_rate": 2.1612654320987653e-05, + "loss": 0.8634963989257812, + "step": 18400 + }, + { + "epoch": 57.098765432098766, + "grad_norm": 0.26962971687316895, + "learning_rate": 2.1458333333333334e-05, + "loss": 0.8631212615966797, + "step": 18500 + }, + { + "epoch": 57.407407407407405, + "grad_norm": 0.31703895330429077, + "learning_rate": 2.1304012345679015e-05, + "loss": 0.8632781219482422, + "step": 18600 + }, + { + "epoch": 57.71604938271605, + "grad_norm": 0.32334306836128235, + "learning_rate": 2.1149691358024693e-05, + "loss": 0.8634398651123046, + "step": 18700 + }, + { + "epoch": 58.02469135802469, + "grad_norm": 0.2593790292739868, + "learning_rate": 2.099537037037037e-05, + "loss": 0.8636258697509765, + "step": 18800 + }, + { + "epoch": 58.333333333333336, + "grad_norm": 0.2949954569339752, + "learning_rate": 2.084104938271605e-05, + "loss": 0.8629860687255859, + "step": 18900 + }, + { + "epoch": 58.641975308641975, + "grad_norm": 0.23345129191875458, + "learning_rate": 2.068672839506173e-05, + "loss": 0.8632596588134765, + "step": 19000 + }, + { + "epoch": 58.95061728395062, + "grad_norm": 0.3483967185020447, + "learning_rate": 2.0532407407407407e-05, + "loss": 0.8632754516601563, + "step": 19100 + }, + { + "epoch": 59.25925925925926, + "grad_norm": 0.24414049088954926, + "learning_rate": 2.0378086419753088e-05, + "loss": 0.863308334350586, + "step": 19200 + }, + { + "epoch": 59.5679012345679, + "grad_norm": 0.22884564101696014, + "learning_rate": 2.0223765432098766e-05, + "loss": 0.8630153656005859, + "step": 19300 + }, + { + "epoch": 59.876543209876544, + "grad_norm": 0.293367862701416, + "learning_rate": 2.0069444444444447e-05, + "loss": 0.8631407165527344, + "step": 19400 + }, + { + "epoch": 60.18518518518518, + "grad_norm": 0.24008184671401978, + "learning_rate": 1.9915123456790125e-05, + "loss": 0.8633984375, + "step": 19500 + }, + { + "epoch": 60.49382716049383, + "grad_norm": 0.2940938472747803, + "learning_rate": 1.9760802469135802e-05, + "loss": 0.8634149932861328, + "step": 19600 + }, + { + "epoch": 60.80246913580247, + "grad_norm": 0.24539810419082642, + "learning_rate": 1.960648148148148e-05, + "loss": 0.8639472961425781, + "step": 19700 + }, + { + "epoch": 61.111111111111114, + "grad_norm": 0.2464188188314438, + "learning_rate": 1.945216049382716e-05, + "loss": 0.8634198760986328, + "step": 19800 + }, + { + "epoch": 61.41975308641975, + "grad_norm": 0.250593900680542, + "learning_rate": 1.9297839506172842e-05, + "loss": 0.8628058624267578, + "step": 19900 + }, + { + "epoch": 61.72839506172839, + "grad_norm": 0.25289106369018555, + "learning_rate": 1.914351851851852e-05, + "loss": 0.862940673828125, + "step": 20000 + }, + { + "epoch": 62.03703703703704, + "grad_norm": 0.270373672246933, + "learning_rate": 1.899074074074074e-05, + "loss": 0.8629447937011718, + "step": 20100 + }, + { + "epoch": 62.34567901234568, + "grad_norm": 0.2208729088306427, + "learning_rate": 1.883641975308642e-05, + "loss": 0.86260498046875, + "step": 20200 + }, + { + "epoch": 62.65432098765432, + "grad_norm": 0.20749305188655853, + "learning_rate": 1.86820987654321e-05, + "loss": 0.8630132293701172, + "step": 20300 + }, + { + "epoch": 62.96296296296296, + "grad_norm": 0.29507532715797424, + "learning_rate": 1.852777777777778e-05, + "loss": 0.8628247833251953, + "step": 20400 + }, + { + "epoch": 63.27160493827161, + "grad_norm": 0.3076235055923462, + "learning_rate": 1.837345679012346e-05, + "loss": 0.863165512084961, + "step": 20500 + }, + { + "epoch": 63.58024691358025, + "grad_norm": 0.25332000851631165, + "learning_rate": 1.8219135802469137e-05, + "loss": 0.8626132202148438, + "step": 20600 + }, + { + "epoch": 63.888888888888886, + "grad_norm": 0.22742706537246704, + "learning_rate": 1.8064814814814814e-05, + "loss": 0.8633429718017578, + "step": 20700 + }, + { + "epoch": 64.19753086419753, + "grad_norm": 0.24907511472702026, + "learning_rate": 1.7910493827160495e-05, + "loss": 0.8628691864013672, + "step": 20800 + }, + { + "epoch": 64.50617283950618, + "grad_norm": 0.37986981868743896, + "learning_rate": 1.7756172839506173e-05, + "loss": 0.862381591796875, + "step": 20900 + }, + { + "epoch": 64.81481481481481, + "grad_norm": 0.26957404613494873, + "learning_rate": 1.7601851851851854e-05, + "loss": 0.8621443176269531, + "step": 21000 + }, + { + "epoch": 65.12345679012346, + "grad_norm": 0.21372266113758087, + "learning_rate": 1.7447530864197532e-05, + "loss": 0.8624749755859376, + "step": 21100 + }, + { + "epoch": 65.4320987654321, + "grad_norm": 0.23659591376781464, + "learning_rate": 1.729320987654321e-05, + "loss": 0.862855453491211, + "step": 21200 + }, + { + "epoch": 65.74074074074075, + "grad_norm": 0.2516464591026306, + "learning_rate": 1.713888888888889e-05, + "loss": 0.8628866577148437, + "step": 21300 + }, + { + "epoch": 66.04938271604938, + "grad_norm": 0.23080387711524963, + "learning_rate": 1.698456790123457e-05, + "loss": 0.8628789520263672, + "step": 21400 + }, + { + "epoch": 66.35802469135803, + "grad_norm": 0.24531495571136475, + "learning_rate": 1.6830246913580246e-05, + "loss": 0.8624163818359375, + "step": 21500 + }, + { + "epoch": 66.66666666666667, + "grad_norm": 0.3036033809185028, + "learning_rate": 1.6675925925925927e-05, + "loss": 0.8630258178710938, + "step": 21600 + }, + { + "epoch": 66.9753086419753, + "grad_norm": 0.24009738862514496, + "learning_rate": 1.6521604938271608e-05, + "loss": 0.8635572814941406, + "step": 21700 + }, + { + "epoch": 67.28395061728395, + "grad_norm": 0.2536623477935791, + "learning_rate": 1.6367283950617286e-05, + "loss": 0.8623932647705078, + "step": 21800 + }, + { + "epoch": 67.5925925925926, + "grad_norm": 0.28109127283096313, + "learning_rate": 1.6212962962962964e-05, + "loss": 0.8624723052978516, + "step": 21900 + }, + { + "epoch": 67.90123456790124, + "grad_norm": 0.2185950130224228, + "learning_rate": 1.605864197530864e-05, + "loss": 0.8623596954345704, + "step": 22000 + }, + { + "epoch": 68.20987654320987, + "grad_norm": 0.33554041385650635, + "learning_rate": 1.5905864197530866e-05, + "loss": 0.8626500701904297, + "step": 22100 + }, + { + "epoch": 68.51851851851852, + "grad_norm": 0.2552665174007416, + "learning_rate": 1.5751543209876544e-05, + "loss": 0.8622700500488282, + "step": 22200 + }, + { + "epoch": 68.82716049382717, + "grad_norm": 0.3290879726409912, + "learning_rate": 1.5597222222222225e-05, + "loss": 0.8628783416748047, + "step": 22300 + }, + { + "epoch": 69.1358024691358, + "grad_norm": 0.23781687021255493, + "learning_rate": 1.5442901234567903e-05, + "loss": 0.8625830841064454, + "step": 22400 + }, + { + "epoch": 69.44444444444444, + "grad_norm": 0.29894009232521057, + "learning_rate": 1.528858024691358e-05, + "loss": 0.8624604034423828, + "step": 22500 + }, + { + "epoch": 69.75308641975309, + "grad_norm": 0.28855380415916443, + "learning_rate": 1.513425925925926e-05, + "loss": 0.8624363708496093, + "step": 22600 + }, + { + "epoch": 70.06172839506173, + "grad_norm": 0.30909860134124756, + "learning_rate": 1.497993827160494e-05, + "loss": 0.8625530242919922, + "step": 22700 + }, + { + "epoch": 70.37037037037037, + "grad_norm": 0.25948941707611084, + "learning_rate": 1.4825617283950618e-05, + "loss": 0.8629596710205079, + "step": 22800 + }, + { + "epoch": 70.67901234567901, + "grad_norm": 0.23436062037944794, + "learning_rate": 1.4671296296296296e-05, + "loss": 0.8624345397949219, + "step": 22900 + }, + { + "epoch": 70.98765432098766, + "grad_norm": 0.22997359931468964, + "learning_rate": 1.4516975308641975e-05, + "loss": 0.8627075958251953, + "step": 23000 + }, + { + "epoch": 71.29629629629629, + "grad_norm": 0.25879642367362976, + "learning_rate": 1.4362654320987657e-05, + "loss": 0.862459716796875, + "step": 23100 + }, + { + "epoch": 71.60493827160494, + "grad_norm": 0.2785871624946594, + "learning_rate": 1.4208333333333334e-05, + "loss": 0.8629904937744141, + "step": 23200 + }, + { + "epoch": 71.91358024691358, + "grad_norm": 0.23828476667404175, + "learning_rate": 1.4054012345679014e-05, + "loss": 0.8625855255126953, + "step": 23300 + }, + { + "epoch": 72.22222222222223, + "grad_norm": 0.28304004669189453, + "learning_rate": 1.3899691358024691e-05, + "loss": 0.8623751068115234, + "step": 23400 + }, + { + "epoch": 72.53086419753086, + "grad_norm": 0.35052117705345154, + "learning_rate": 1.3745370370370372e-05, + "loss": 0.8628295135498046, + "step": 23500 + }, + { + "epoch": 72.8395061728395, + "grad_norm": 0.21472153067588806, + "learning_rate": 1.359104938271605e-05, + "loss": 0.862393798828125, + "step": 23600 + }, + { + "epoch": 73.14814814814815, + "grad_norm": 0.22292311489582062, + "learning_rate": 1.343672839506173e-05, + "loss": 0.8621687316894531, + "step": 23700 + }, + { + "epoch": 73.45679012345678, + "grad_norm": 0.2587008476257324, + "learning_rate": 1.3282407407407407e-05, + "loss": 0.8623291778564454, + "step": 23800 + }, + { + "epoch": 73.76543209876543, + "grad_norm": 0.2771637439727783, + "learning_rate": 1.3128086419753088e-05, + "loss": 0.8624784088134766, + "step": 23900 + }, + { + "epoch": 74.07407407407408, + "grad_norm": 0.2332049012184143, + "learning_rate": 1.2973765432098766e-05, + "loss": 0.8628304290771485, + "step": 24000 + }, + { + "epoch": 74.38271604938272, + "grad_norm": 0.18202383816242218, + "learning_rate": 1.2820987654320987e-05, + "loss": 0.8623355102539062, + "step": 24100 + }, + { + "epoch": 74.69135802469135, + "grad_norm": 0.25001880526542664, + "learning_rate": 1.2666666666666668e-05, + "loss": 0.8625141906738282, + "step": 24200 + }, + { + "epoch": 75.0, + "grad_norm": 0.25027912855148315, + "learning_rate": 1.2512345679012346e-05, + "loss": 0.8624292755126953, + "step": 24300 + }, + { + "epoch": 75.30864197530865, + "grad_norm": 0.2614375054836273, + "learning_rate": 1.2358024691358026e-05, + "loss": 0.8622071838378906, + "step": 24400 + }, + { + "epoch": 75.61728395061728, + "grad_norm": 0.23685692250728607, + "learning_rate": 1.2203703703703705e-05, + "loss": 0.862458724975586, + "step": 24500 + }, + { + "epoch": 75.92592592592592, + "grad_norm": 0.2700103223323822, + "learning_rate": 1.2049382716049383e-05, + "loss": 0.8620365905761719, + "step": 24600 + }, + { + "epoch": 76.23456790123457, + "grad_norm": 0.28203874826431274, + "learning_rate": 1.1895061728395062e-05, + "loss": 0.8621501159667969, + "step": 24700 + }, + { + "epoch": 76.54320987654322, + "grad_norm": 0.2746220827102661, + "learning_rate": 1.1740740740740741e-05, + "loss": 0.8624026489257812, + "step": 24800 + }, + { + "epoch": 76.85185185185185, + "grad_norm": 0.30292582511901855, + "learning_rate": 1.158641975308642e-05, + "loss": 0.862785873413086, + "step": 24900 + }, + { + "epoch": 77.1604938271605, + "grad_norm": 0.2562635540962219, + "learning_rate": 1.1432098765432098e-05, + "loss": 0.8624921417236329, + "step": 25000 + }, + { + "epoch": 77.46913580246914, + "grad_norm": 0.27666226029396057, + "learning_rate": 1.127777777777778e-05, + "loss": 0.8622743988037109, + "step": 25100 + }, + { + "epoch": 77.77777777777777, + "grad_norm": 0.2963859438896179, + "learning_rate": 1.1123456790123457e-05, + "loss": 0.8626934814453125, + "step": 25200 + }, + { + "epoch": 78.08641975308642, + "grad_norm": 0.2593159079551697, + "learning_rate": 1.0969135802469137e-05, + "loss": 0.8621681976318359, + "step": 25300 + }, + { + "epoch": 78.39506172839506, + "grad_norm": 0.2810990810394287, + "learning_rate": 1.0814814814814814e-05, + "loss": 0.8621713256835938, + "step": 25400 + }, + { + "epoch": 78.70370370370371, + "grad_norm": 0.2808496654033661, + "learning_rate": 1.0660493827160495e-05, + "loss": 0.8622039031982421, + "step": 25500 + }, + { + "epoch": 79.01234567901234, + "grad_norm": 0.2452424019575119, + "learning_rate": 1.0506172839506173e-05, + "loss": 0.8625334930419922, + "step": 25600 + }, + { + "epoch": 79.32098765432099, + "grad_norm": 0.2880192697048187, + "learning_rate": 1.0351851851851852e-05, + "loss": 0.8622465515136719, + "step": 25700 + }, + { + "epoch": 79.62962962962963, + "grad_norm": 0.24877040088176727, + "learning_rate": 1.0197530864197532e-05, + "loss": 0.8621809387207031, + "step": 25800 + }, + { + "epoch": 79.93827160493827, + "grad_norm": 0.3088701069355011, + "learning_rate": 1.0043209876543211e-05, + "loss": 0.8624029541015625, + "step": 25900 + }, + { + "epoch": 80.24691358024691, + "grad_norm": 0.19949986040592194, + "learning_rate": 9.888888888888889e-06, + "loss": 0.8618679809570312, + "step": 26000 + }, + { + "epoch": 80.55555555555556, + "grad_norm": 0.3270089626312256, + "learning_rate": 9.734567901234568e-06, + "loss": 0.8620806884765625, + "step": 26100 + }, + { + "epoch": 80.8641975308642, + "grad_norm": 0.24055376648902893, + "learning_rate": 9.581790123456791e-06, + "loss": 0.861843490600586, + "step": 26200 + }, + { + "epoch": 81.17283950617283, + "grad_norm": 0.28812849521636963, + "learning_rate": 9.42746913580247e-06, + "loss": 0.8618939971923828, + "step": 26300 + }, + { + "epoch": 81.48148148148148, + "grad_norm": 0.18239010870456696, + "learning_rate": 9.273148148148149e-06, + "loss": 0.8618624114990234, + "step": 26400 + }, + { + "epoch": 81.79012345679013, + "grad_norm": 0.2698865234851837, + "learning_rate": 9.118827160493828e-06, + "loss": 0.8617278289794922, + "step": 26500 + }, + { + "epoch": 82.09876543209876, + "grad_norm": 0.2671756446361542, + "learning_rate": 8.964506172839507e-06, + "loss": 0.8620853424072266, + "step": 26600 + }, + { + "epoch": 82.4074074074074, + "grad_norm": 0.20211544632911682, + "learning_rate": 8.810185185185185e-06, + "loss": 0.8620963287353516, + "step": 26700 + }, + { + "epoch": 82.71604938271605, + "grad_norm": 0.3215954899787903, + "learning_rate": 8.655864197530864e-06, + "loss": 0.8621923065185547, + "step": 26800 + }, + { + "epoch": 83.0246913580247, + "grad_norm": 0.2056690901517868, + "learning_rate": 8.501543209876544e-06, + "loss": 0.8621724700927734, + "step": 26900 + }, + { + "epoch": 83.33333333333333, + "grad_norm": 0.24216392636299133, + "learning_rate": 8.347222222222223e-06, + "loss": 0.8620801544189454, + "step": 27000 + }, + { + "epoch": 83.64197530864197, + "grad_norm": 0.28262120485305786, + "learning_rate": 8.1929012345679e-06, + "loss": 0.861885986328125, + "step": 27100 + }, + { + "epoch": 83.95061728395062, + "grad_norm": 0.3250841200351715, + "learning_rate": 8.03858024691358e-06, + "loss": 0.8618600463867188, + "step": 27200 + }, + { + "epoch": 84.25925925925925, + "grad_norm": 0.27586230635643005, + "learning_rate": 7.88425925925926e-06, + "loss": 0.8616656494140625, + "step": 27300 + }, + { + "epoch": 84.5679012345679, + "grad_norm": 0.2721251845359802, + "learning_rate": 7.729938271604939e-06, + "loss": 0.8620500183105468, + "step": 27400 + }, + { + "epoch": 84.87654320987654, + "grad_norm": 0.26842591166496277, + "learning_rate": 7.5756172839506175e-06, + "loss": 0.8617433929443359, + "step": 27500 + }, + { + "epoch": 85.18518518518519, + "grad_norm": 0.23888643085956573, + "learning_rate": 7.421296296296297e-06, + "loss": 0.861810073852539, + "step": 27600 + }, + { + "epoch": 85.49382716049382, + "grad_norm": 0.24433459341526031, + "learning_rate": 7.2669753086419754e-06, + "loss": 0.8616561889648438, + "step": 27700 + }, + { + "epoch": 85.80246913580247, + "grad_norm": 0.24760094285011292, + "learning_rate": 7.112654320987655e-06, + "loss": 0.8622868347167969, + "step": 27800 + }, + { + "epoch": 86.11111111111111, + "grad_norm": 0.19840151071548462, + "learning_rate": 6.958333333333333e-06, + "loss": 0.8618616485595703, + "step": 27900 + }, + { + "epoch": 86.41975308641975, + "grad_norm": 0.24764691293239594, + "learning_rate": 6.804012345679013e-06, + "loss": 0.8621045684814453, + "step": 28000 + }, + { + "epoch": 86.72839506172839, + "grad_norm": 0.23593583703041077, + "learning_rate": 6.649691358024691e-06, + "loss": 0.8618828582763672, + "step": 28100 + }, + { + "epoch": 87.03703703703704, + "grad_norm": 0.2748619318008423, + "learning_rate": 6.496913580246914e-06, + "loss": 0.8616398620605469, + "step": 28200 + }, + { + "epoch": 87.34567901234568, + "grad_norm": 0.2573417127132416, + "learning_rate": 6.342592592592593e-06, + "loss": 0.8620298004150391, + "step": 28300 + }, + { + "epoch": 87.65432098765432, + "grad_norm": 0.2384900599718094, + "learning_rate": 6.188271604938272e-06, + "loss": 0.8617670440673828, + "step": 28400 + }, + { + "epoch": 87.96296296296296, + "grad_norm": 0.21160998940467834, + "learning_rate": 6.033950617283951e-06, + "loss": 0.861859359741211, + "step": 28500 + }, + { + "epoch": 88.27160493827161, + "grad_norm": 0.39718398451805115, + "learning_rate": 5.87962962962963e-06, + "loss": 0.8616744995117187, + "step": 28600 + }, + { + "epoch": 88.58024691358025, + "grad_norm": 0.27755340933799744, + "learning_rate": 5.725308641975309e-06, + "loss": 0.8617410278320312, + "step": 28700 + }, + { + "epoch": 88.88888888888889, + "grad_norm": 0.2871803939342499, + "learning_rate": 5.570987654320988e-06, + "loss": 0.8616901397705078, + "step": 28800 + }, + { + "epoch": 89.19753086419753, + "grad_norm": 0.3335205614566803, + "learning_rate": 5.416666666666667e-06, + "loss": 0.8615732574462891, + "step": 28900 + }, + { + "epoch": 89.50617283950618, + "grad_norm": 0.23746320605278015, + "learning_rate": 5.262345679012346e-06, + "loss": 0.861851806640625, + "step": 29000 + }, + { + "epoch": 89.81481481481481, + "grad_norm": 0.28229081630706787, + "learning_rate": 5.1080246913580255e-06, + "loss": 0.86148681640625, + "step": 29100 + }, + { + "epoch": 90.12345679012346, + "grad_norm": 0.21336163580417633, + "learning_rate": 4.953703703703704e-06, + "loss": 0.861663818359375, + "step": 29200 + }, + { + "epoch": 90.4320987654321, + "grad_norm": 0.2604101300239563, + "learning_rate": 4.7993827160493834e-06, + "loss": 0.8617544555664063, + "step": 29300 + }, + { + "epoch": 90.74074074074075, + "grad_norm": 0.26023662090301514, + "learning_rate": 4.645061728395062e-06, + "loss": 0.8617599487304688, + "step": 29400 + }, + { + "epoch": 91.04938271604938, + "grad_norm": 0.26295042037963867, + "learning_rate": 4.490740740740741e-06, + "loss": 0.8617560577392578, + "step": 29500 + }, + { + "epoch": 91.35802469135803, + "grad_norm": 0.22411581873893738, + "learning_rate": 4.33641975308642e-06, + "loss": 0.8616332244873047, + "step": 29600 + }, + { + "epoch": 91.66666666666667, + "grad_norm": 0.24028459191322327, + "learning_rate": 4.182098765432099e-06, + "loss": 0.8615241241455078, + "step": 29700 + }, + { + "epoch": 91.9753086419753, + "grad_norm": 0.25509828329086304, + "learning_rate": 4.027777777777779e-06, + "loss": 0.8616260528564453, + "step": 29800 + }, + { + "epoch": 92.28395061728395, + "grad_norm": 0.22896139323711395, + "learning_rate": 3.873456790123457e-06, + "loss": 0.8615116882324219, + "step": 29900 + }, + { + "epoch": 92.5925925925926, + "grad_norm": 0.1981690675020218, + "learning_rate": 3.719135802469136e-06, + "loss": 0.8616599273681641, + "step": 30000 + }, + { + "epoch": 92.90123456790124, + "grad_norm": 0.2998819053173065, + "learning_rate": 3.564814814814815e-06, + "loss": 0.8616020965576172, + "step": 30100 + }, + { + "epoch": 93.20987654320987, + "grad_norm": 0.2514878213405609, + "learning_rate": 3.412037037037037e-06, + "loss": 0.8614517974853516, + "step": 30200 + }, + { + "epoch": 93.51851851851852, + "grad_norm": 0.24726809561252594, + "learning_rate": 3.257716049382716e-06, + "loss": 0.8615573883056641, + "step": 30300 + }, + { + "epoch": 93.82716049382717, + "grad_norm": 0.24331317842006683, + "learning_rate": 3.1033950617283954e-06, + "loss": 0.861545181274414, + "step": 30400 + }, + { + "epoch": 94.1358024691358, + "grad_norm": 0.29127877950668335, + "learning_rate": 2.9490740740740743e-06, + "loss": 0.8617371368408203, + "step": 30500 + }, + { + "epoch": 94.44444444444444, + "grad_norm": 0.3069797456264496, + "learning_rate": 2.7947530864197533e-06, + "loss": 0.8614784240722656, + "step": 30600 + }, + { + "epoch": 94.75308641975309, + "grad_norm": 0.25526171922683716, + "learning_rate": 2.6404320987654323e-06, + "loss": 0.8612818908691406, + "step": 30700 + }, + { + "epoch": 95.06172839506173, + "grad_norm": 0.25805607438087463, + "learning_rate": 2.4861111111111112e-06, + "loss": 0.8611087799072266, + "step": 30800 + }, + { + "epoch": 95.37037037037037, + "grad_norm": 0.24607188999652863, + "learning_rate": 2.33179012345679e-06, + "loss": 0.8613501739501953, + "step": 30900 + }, + { + "epoch": 95.67901234567901, + "grad_norm": 0.3257257640361786, + "learning_rate": 2.177469135802469e-06, + "loss": 0.8614185333251954, + "step": 31000 + }, + { + "epoch": 95.98765432098766, + "grad_norm": 0.3006044924259186, + "learning_rate": 2.0231481481481485e-06, + "loss": 0.8614950561523438, + "step": 31100 + }, + { + "epoch": 96.29629629629629, + "grad_norm": 0.26980897784233093, + "learning_rate": 1.8688271604938273e-06, + "loss": 0.8614867401123046, + "step": 31200 + }, + { + "epoch": 96.60493827160494, + "grad_norm": 0.25481465458869934, + "learning_rate": 1.7145061728395064e-06, + "loss": 0.8614888000488281, + "step": 31300 + }, + { + "epoch": 96.91358024691358, + "grad_norm": 0.2795570194721222, + "learning_rate": 1.5601851851851852e-06, + "loss": 0.8614127349853515, + "step": 31400 + }, + { + "epoch": 97.22222222222223, + "grad_norm": 0.2887301743030548, + "learning_rate": 1.4058641975308641e-06, + "loss": 0.8610345458984375, + "step": 31500 + }, + { + "epoch": 97.53086419753086, + "grad_norm": 0.28151342272758484, + "learning_rate": 1.2515432098765433e-06, + "loss": 0.8611799621582031, + "step": 31600 + }, + { + "epoch": 97.8395061728395, + "grad_norm": 0.2844570279121399, + "learning_rate": 1.0972222222222223e-06, + "loss": 0.8612938690185546, + "step": 31700 + }, + { + "epoch": 98.14814814814815, + "grad_norm": 0.28799548745155334, + "learning_rate": 9.429012345679012e-07, + "loss": 0.8612958526611328, + "step": 31800 + }, + { + "epoch": 98.45679012345678, + "grad_norm": 0.17849087715148926, + "learning_rate": 7.885802469135803e-07, + "loss": 0.8611792755126954, + "step": 31900 + }, + { + "epoch": 98.76543209876543, + "grad_norm": 0.2363658845424652, + "learning_rate": 6.342592592592592e-07, + "loss": 0.8614938354492188, + "step": 32000 + }, + { + "epoch": 99.07407407407408, + "grad_norm": 0.3181602358818054, + "learning_rate": 4.799382716049383e-07, + "loss": 0.8611763000488282, + "step": 32100 + } + ], + "logging_steps": 100, + "max_steps": 32400, + "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": 2883246332313600.0, + "train_batch_size": 8, + "trial_name": null, + "trial_params": null +} diff --git a/timecost/c7/realtabformer/rtf-c7-20260429_070344/rtf_checkpoints/checkpoint-32100/training_args.bin b/timecost/c7/realtabformer/rtf-c7-20260429_070344/rtf_checkpoints/checkpoint-32100/training_args.bin new file mode 100644 index 0000000000000000000000000000000000000000..34d68dc0e0fe1c1f12a2e581dd1b166aa7178a9e --- /dev/null +++ b/timecost/c7/realtabformer/rtf-c7-20260429_070344/rtf_checkpoints/checkpoint-32100/training_args.bin @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:9e2cd88337d1d846c6918d2b3b63fa3e5c93f12fefc082497590da854a564607 +size 5201 diff --git a/timecost/c7/realtabformer/rtf-c7-20260429_070344/rtf_checkpoints/checkpoint-32200/config.json b/timecost/c7/realtabformer/rtf-c7-20260429_070344/rtf_checkpoints/checkpoint-32200/config.json new file mode 100644 index 0000000000000000000000000000000000000000..2f4b2de295e37af41a4d510862dce45d9dafa48a --- /dev/null +++ b/timecost/c7/realtabformer/rtf-c7-20260429_070344/rtf_checkpoints/checkpoint-32200/config.json @@ -0,0 +1,34 @@ +{ + "activation_function": "gelu_new", + "add_cross_attention": false, + "architectures": [ + "GPT2LMHeadModel" + ], + "attn_pdrop": 0.1, + "bos_token_id": 5, + "dtype": "float32", + "embd_pdrop": 0.1, + "eos_token_id": 6, + "initializer_range": 0.02, + "layer_norm_epsilon": 1e-05, + "model_type": "gpt2", + "n_embd": 768, + "n_head": 12, + "n_inner": null, + "n_layer": 6, + "n_positions": 1024, + "pad_token_id": null, + "reorder_and_upcast_attn": false, + "resid_pdrop": 0.1, + "scale_attn_by_inverse_layer_idx": false, + "scale_attn_weights": true, + "summary_activation": null, + "summary_first_dropout": 0.1, + "summary_proj_to_labels": true, + "summary_type": "cls_index", + "summary_use_proj": true, + "tie_word_embeddings": true, + "transformers_version": "5.5.3", + "use_cache": false, + "vocab_size": 43 +} diff --git a/timecost/c7/realtabformer/rtf-c7-20260429_070344/rtf_checkpoints/checkpoint-32200/generation_config.json b/timecost/c7/realtabformer/rtf-c7-20260429_070344/rtf_checkpoints/checkpoint-32200/generation_config.json new file mode 100644 index 0000000000000000000000000000000000000000..ffe89567780e75b5c22eade9be971483b9618f39 --- /dev/null +++ b/timecost/c7/realtabformer/rtf-c7-20260429_070344/rtf_checkpoints/checkpoint-32200/generation_config.json @@ -0,0 +1,9 @@ +{ + "_from_model_config": true, + "bos_token_id": 5, + "eos_token_id": 6, + "output_attentions": false, + "output_hidden_states": false, + "transformers_version": "5.5.3", + "use_cache": true +} diff --git a/timecost/c7/realtabformer/rtf-c7-20260429_070344/rtf_checkpoints/checkpoint-32200/model.safetensors b/timecost/c7/realtabformer/rtf-c7-20260429_070344/rtf_checkpoints/checkpoint-32200/model.safetensors new file mode 100644 index 0000000000000000000000000000000000000000..de7758f78c06a4d2208b3ee85dd7139f14331c7f --- /dev/null +++ b/timecost/c7/realtabformer/rtf-c7-20260429_070344/rtf_checkpoints/checkpoint-32200/model.safetensors @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:1c2e9f7e05e0882706078780128f9a3ed83d44899c3bdde2ee289b86690e34bd +size 173400520 diff --git a/timecost/c7/realtabformer/rtf-c7-20260429_070344/rtf_checkpoints/checkpoint-32200/optimizer.pt b/timecost/c7/realtabformer/rtf-c7-20260429_070344/rtf_checkpoints/checkpoint-32200/optimizer.pt new file mode 100644 index 0000000000000000000000000000000000000000..bcfb4cbfcb22f00035ef0df38ac177703e873928 --- /dev/null +++ b/timecost/c7/realtabformer/rtf-c7-20260429_070344/rtf_checkpoints/checkpoint-32200/optimizer.pt @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:7b869bef69fef9e5013f4c40d59bcf0c0e16f483e3892ffd9a6ff59fc7ab18b2 +size 346850059 diff --git a/timecost/c7/realtabformer/rtf-c7-20260429_070344/rtf_checkpoints/checkpoint-32200/rng_state.pth b/timecost/c7/realtabformer/rtf-c7-20260429_070344/rtf_checkpoints/checkpoint-32200/rng_state.pth new file mode 100644 index 0000000000000000000000000000000000000000..c62e8e9c58c558baa4139a130c20b1627f1524ed --- /dev/null +++ b/timecost/c7/realtabformer/rtf-c7-20260429_070344/rtf_checkpoints/checkpoint-32200/rng_state.pth @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:5d3bf40d70ecbaf8b502fabe160cf58db707afdb7fcde3e2be81260f00f01a21 +size 14645 diff --git a/timecost/c7/realtabformer/rtf-c7-20260429_070344/rtf_checkpoints/checkpoint-32200/scaler.pt b/timecost/c7/realtabformer/rtf-c7-20260429_070344/rtf_checkpoints/checkpoint-32200/scaler.pt new file mode 100644 index 0000000000000000000000000000000000000000..3b6b59a2707c80c8acf6cd6a0e71881914e57d31 --- /dev/null +++ b/timecost/c7/realtabformer/rtf-c7-20260429_070344/rtf_checkpoints/checkpoint-32200/scaler.pt @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:9190930860d04e724e65040728f5fc186646479f96198c011a5a362b52c6f2ff +size 1383 diff --git a/timecost/c7/realtabformer/rtf-c7-20260429_070344/rtf_checkpoints/checkpoint-32200/scheduler.pt b/timecost/c7/realtabformer/rtf-c7-20260429_070344/rtf_checkpoints/checkpoint-32200/scheduler.pt new file mode 100644 index 0000000000000000000000000000000000000000..f4fdaf1e3504b320011af450db8bd122e1829bbf --- /dev/null +++ b/timecost/c7/realtabformer/rtf-c7-20260429_070344/rtf_checkpoints/checkpoint-32200/scheduler.pt @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:fc03f92d85caf7a6f3e9270bec128f8bb7d8029e04f45307374a8d248329e0c5 +size 1465 diff --git a/timecost/c7/realtabformer/rtf-c7-20260429_070344/rtf_checkpoints/checkpoint-32200/trainer_state.json b/timecost/c7/realtabformer/rtf-c7-20260429_070344/rtf_checkpoints/checkpoint-32200/trainer_state.json new file mode 100644 index 0000000000000000000000000000000000000000..43db4c95bf2664ac9c8d0e4e59b0eb5ca1de1437 --- /dev/null +++ b/timecost/c7/realtabformer/rtf-c7-20260429_070344/rtf_checkpoints/checkpoint-32200/trainer_state.json @@ -0,0 +1,2288 @@ +{ + "best_global_step": null, + "best_metric": null, + "best_model_checkpoint": null, + "epoch": 99.38271604938272, + "eval_steps": 100, + "global_step": 32200, + "is_hyper_param_search": false, + "is_local_process_zero": true, + "is_world_process_zero": true, + "log_history": [ + { + "epoch": 0.30864197530864196, + "grad_norm": 0.5975016355514526, + "learning_rate": 4.9847222222222224e-05, + "loss": 1.1053435516357422, + "step": 100 + }, + { + "epoch": 0.6172839506172839, + "grad_norm": 0.4975835680961609, + "learning_rate": 4.96929012345679e-05, + "loss": 0.913399429321289, + "step": 200 + }, + { + "epoch": 0.9259259259259259, + "grad_norm": 0.5069450736045837, + "learning_rate": 4.9538580246913586e-05, + "loss": 0.9037506866455078, + "step": 300 + }, + { + "epoch": 1.2345679012345678, + "grad_norm": 0.3577662706375122, + "learning_rate": 4.9384259259259264e-05, + "loss": 0.8971150207519532, + "step": 400 + }, + { + "epoch": 1.5432098765432098, + "grad_norm": 0.37501809000968933, + "learning_rate": 4.922993827160494e-05, + "loss": 0.8930672454833984, + "step": 500 + }, + { + "epoch": 1.8518518518518519, + "grad_norm": 0.3230942487716675, + "learning_rate": 4.907561728395062e-05, + "loss": 0.8911088562011719, + "step": 600 + }, + { + "epoch": 2.1604938271604937, + "grad_norm": 0.31315380334854126, + "learning_rate": 4.89212962962963e-05, + "loss": 0.8870069122314453, + "step": 700 + }, + { + "epoch": 2.4691358024691357, + "grad_norm": 0.3408145606517792, + "learning_rate": 4.8766975308641975e-05, + "loss": 0.8845426177978516, + "step": 800 + }, + { + "epoch": 2.7777777777777777, + "grad_norm": 0.34649044275283813, + "learning_rate": 4.861265432098765e-05, + "loss": 0.8816167449951172, + "step": 900 + }, + { + "epoch": 3.0864197530864197, + "grad_norm": 0.2891448140144348, + "learning_rate": 4.845833333333334e-05, + "loss": 0.8816600799560547, + "step": 1000 + }, + { + "epoch": 3.3950617283950617, + "grad_norm": 0.3047502636909485, + "learning_rate": 4.8304012345679014e-05, + "loss": 0.8813356018066406, + "step": 1100 + }, + { + "epoch": 3.7037037037037037, + "grad_norm": 0.34682637453079224, + "learning_rate": 4.81496913580247e-05, + "loss": 0.8769812774658203, + "step": 1200 + }, + { + "epoch": 4.012345679012346, + "grad_norm": 0.3608556091785431, + "learning_rate": 4.7995370370370376e-05, + "loss": 0.8777651977539063, + "step": 1300 + }, + { + "epoch": 4.320987654320987, + "grad_norm": 0.3927426338195801, + "learning_rate": 4.7841049382716054e-05, + "loss": 0.8768961334228516, + "step": 1400 + }, + { + "epoch": 4.62962962962963, + "grad_norm": 0.2639325261116028, + "learning_rate": 4.768672839506173e-05, + "loss": 0.8781243133544921, + "step": 1500 + }, + { + "epoch": 4.938271604938271, + "grad_norm": 0.35398051142692566, + "learning_rate": 4.753240740740741e-05, + "loss": 0.87546630859375, + "step": 1600 + }, + { + "epoch": 5.246913580246914, + "grad_norm": 0.305637001991272, + "learning_rate": 4.737808641975309e-05, + "loss": 0.8746750640869141, + "step": 1700 + }, + { + "epoch": 5.555555555555555, + "grad_norm": 0.217234268784523, + "learning_rate": 4.7223765432098765e-05, + "loss": 0.8738501739501953, + "step": 1800 + }, + { + "epoch": 5.864197530864198, + "grad_norm": 0.3149331510066986, + "learning_rate": 4.706944444444445e-05, + "loss": 0.8732035064697266, + "step": 1900 + }, + { + "epoch": 6.172839506172839, + "grad_norm": 0.26609405875205994, + "learning_rate": 4.691512345679013e-05, + "loss": 0.8728971862792969, + "step": 2000 + }, + { + "epoch": 6.481481481481482, + "grad_norm": 0.31683775782585144, + "learning_rate": 4.6760802469135805e-05, + "loss": 0.8713655853271485, + "step": 2100 + }, + { + "epoch": 6.790123456790123, + "grad_norm": 0.34013745188713074, + "learning_rate": 4.660648148148148e-05, + "loss": 0.8744948577880859, + "step": 2200 + }, + { + "epoch": 7.098765432098766, + "grad_norm": 0.22860896587371826, + "learning_rate": 4.645216049382716e-05, + "loss": 0.8739882659912109, + "step": 2300 + }, + { + "epoch": 7.407407407407407, + "grad_norm": 0.37235602736473083, + "learning_rate": 4.629783950617284e-05, + "loss": 0.8726573944091797, + "step": 2400 + }, + { + "epoch": 7.716049382716049, + "grad_norm": 0.23996835947036743, + "learning_rate": 4.614351851851852e-05, + "loss": 0.8695323944091797, + "step": 2500 + }, + { + "epoch": 8.024691358024691, + "grad_norm": 0.27126339077949524, + "learning_rate": 4.59891975308642e-05, + "loss": 0.8710608673095703, + "step": 2600 + }, + { + "epoch": 8.333333333333334, + "grad_norm": 0.3054942190647125, + "learning_rate": 4.5834876543209884e-05, + "loss": 0.870329360961914, + "step": 2700 + }, + { + "epoch": 8.641975308641975, + "grad_norm": 0.32970622181892395, + "learning_rate": 4.568055555555556e-05, + "loss": 0.8703945922851563, + "step": 2800 + }, + { + "epoch": 8.950617283950617, + "grad_norm": 0.24803043901920319, + "learning_rate": 4.552623456790124e-05, + "loss": 0.8710511779785156, + "step": 2900 + }, + { + "epoch": 9.25925925925926, + "grad_norm": 0.4170224964618683, + "learning_rate": 4.537191358024692e-05, + "loss": 0.8694993591308594, + "step": 3000 + }, + { + "epoch": 9.567901234567902, + "grad_norm": 0.26911184191703796, + "learning_rate": 4.5217592592592595e-05, + "loss": 0.870486068725586, + "step": 3100 + }, + { + "epoch": 9.876543209876543, + "grad_norm": 0.30582156777381897, + "learning_rate": 4.506327160493827e-05, + "loss": 0.8719473266601563, + "step": 3200 + }, + { + "epoch": 10.185185185185185, + "grad_norm": 0.29516837000846863, + "learning_rate": 4.490895061728395e-05, + "loss": 0.8712838745117187, + "step": 3300 + }, + { + "epoch": 10.493827160493828, + "grad_norm": 0.28133177757263184, + "learning_rate": 4.475462962962963e-05, + "loss": 0.8699048614501953, + "step": 3400 + }, + { + "epoch": 10.802469135802468, + "grad_norm": 0.38596439361572266, + "learning_rate": 4.4600308641975306e-05, + "loss": 0.8712091064453125, + "step": 3500 + }, + { + "epoch": 11.11111111111111, + "grad_norm": 0.2777452766895294, + "learning_rate": 4.444598765432099e-05, + "loss": 0.8693663787841797, + "step": 3600 + }, + { + "epoch": 11.419753086419753, + "grad_norm": 0.4119755029678345, + "learning_rate": 4.429166666666667e-05, + "loss": 0.8681372833251954, + "step": 3700 + }, + { + "epoch": 11.728395061728396, + "grad_norm": 0.2371830940246582, + "learning_rate": 4.4137345679012346e-05, + "loss": 0.8699448394775391, + "step": 3800 + }, + { + "epoch": 12.037037037037036, + "grad_norm": 0.22597350180149078, + "learning_rate": 4.3983024691358023e-05, + "loss": 0.8695160675048829, + "step": 3900 + }, + { + "epoch": 12.345679012345679, + "grad_norm": 0.2682456970214844, + "learning_rate": 4.382870370370371e-05, + "loss": 0.8695050811767578, + "step": 4000 + }, + { + "epoch": 12.654320987654321, + "grad_norm": 0.29016727209091187, + "learning_rate": 4.3674382716049386e-05, + "loss": 0.8679987335205078, + "step": 4100 + }, + { + "epoch": 12.962962962962964, + "grad_norm": 0.26374146342277527, + "learning_rate": 4.352006172839506e-05, + "loss": 0.8693247222900391, + "step": 4200 + }, + { + "epoch": 13.271604938271604, + "grad_norm": 0.29962387681007385, + "learning_rate": 4.336574074074074e-05, + "loss": 0.8679438781738281, + "step": 4300 + }, + { + "epoch": 13.580246913580247, + "grad_norm": 0.29223865270614624, + "learning_rate": 4.3211419753086425e-05, + "loss": 0.8687114715576172, + "step": 4400 + }, + { + "epoch": 13.88888888888889, + "grad_norm": 0.37939226627349854, + "learning_rate": 4.30570987654321e-05, + "loss": 0.8680426025390625, + "step": 4500 + }, + { + "epoch": 14.197530864197532, + "grad_norm": 0.3423369526863098, + "learning_rate": 4.290277777777778e-05, + "loss": 0.8689276123046875, + "step": 4600 + }, + { + "epoch": 14.506172839506172, + "grad_norm": 0.36750486493110657, + "learning_rate": 4.274845679012346e-05, + "loss": 0.8679615783691407, + "step": 4700 + }, + { + "epoch": 14.814814814814815, + "grad_norm": 0.35079503059387207, + "learning_rate": 4.2594135802469136e-05, + "loss": 0.8678194427490235, + "step": 4800 + }, + { + "epoch": 15.123456790123457, + "grad_norm": 0.22617663443088531, + "learning_rate": 4.2439814814814814e-05, + "loss": 0.8699114990234375, + "step": 4900 + }, + { + "epoch": 15.432098765432098, + "grad_norm": 0.3365887999534607, + "learning_rate": 4.228549382716049e-05, + "loss": 0.8693661499023437, + "step": 5000 + }, + { + "epoch": 15.74074074074074, + "grad_norm": 0.29944780468940735, + "learning_rate": 4.213117283950617e-05, + "loss": 0.8680919647216797, + "step": 5100 + }, + { + "epoch": 16.049382716049383, + "grad_norm": 0.29136228561401367, + "learning_rate": 4.1976851851851854e-05, + "loss": 0.868043212890625, + "step": 5200 + }, + { + "epoch": 16.358024691358025, + "grad_norm": 0.24972350895404816, + "learning_rate": 4.182253086419753e-05, + "loss": 0.8676002502441407, + "step": 5300 + }, + { + "epoch": 16.666666666666668, + "grad_norm": 0.3150668442249298, + "learning_rate": 4.1668209876543216e-05, + "loss": 0.868660659790039, + "step": 5400 + }, + { + "epoch": 16.97530864197531, + "grad_norm": 0.3512415587902069, + "learning_rate": 4.1513888888888894e-05, + "loss": 0.8682049560546875, + "step": 5500 + }, + { + "epoch": 17.28395061728395, + "grad_norm": 0.3164934515953064, + "learning_rate": 4.135956790123457e-05, + "loss": 0.8676078033447265, + "step": 5600 + }, + { + "epoch": 17.59259259259259, + "grad_norm": 0.2696605324745178, + "learning_rate": 4.120524691358025e-05, + "loss": 0.8678233337402343, + "step": 5700 + }, + { + "epoch": 17.901234567901234, + "grad_norm": 0.345699280500412, + "learning_rate": 4.105092592592593e-05, + "loss": 0.8660729217529297, + "step": 5800 + }, + { + "epoch": 18.209876543209877, + "grad_norm": 0.2393321543931961, + "learning_rate": 4.0896604938271604e-05, + "loss": 0.86662109375, + "step": 5900 + }, + { + "epoch": 18.51851851851852, + "grad_norm": 0.23627376556396484, + "learning_rate": 4.074228395061729e-05, + "loss": 0.8684516906738281, + "step": 6000 + }, + { + "epoch": 18.82716049382716, + "grad_norm": 0.22598141431808472, + "learning_rate": 4.0587962962962966e-05, + "loss": 0.8676165771484375, + "step": 6100 + }, + { + "epoch": 19.135802469135804, + "grad_norm": 0.29334530234336853, + "learning_rate": 4.0433641975308644e-05, + "loss": 0.8662307739257813, + "step": 6200 + }, + { + "epoch": 19.444444444444443, + "grad_norm": 0.23827306926250458, + "learning_rate": 4.027932098765432e-05, + "loss": 0.8666460418701172, + "step": 6300 + }, + { + "epoch": 19.753086419753085, + "grad_norm": 0.29057374596595764, + "learning_rate": 4.0125e-05, + "loss": 0.8675463104248047, + "step": 6400 + }, + { + "epoch": 20.061728395061728, + "grad_norm": 0.3120971918106079, + "learning_rate": 3.997067901234568e-05, + "loss": 0.8672868347167969, + "step": 6500 + }, + { + "epoch": 20.37037037037037, + "grad_norm": 0.412092924118042, + "learning_rate": 3.9816358024691355e-05, + "loss": 0.8670984649658203, + "step": 6600 + }, + { + "epoch": 20.679012345679013, + "grad_norm": 0.2982257306575775, + "learning_rate": 3.966203703703704e-05, + "loss": 0.8685931396484375, + "step": 6700 + }, + { + "epoch": 20.987654320987655, + "grad_norm": 0.2703470289707184, + "learning_rate": 3.950771604938272e-05, + "loss": 0.8666371917724609, + "step": 6800 + }, + { + "epoch": 21.296296296296298, + "grad_norm": 0.3358808159828186, + "learning_rate": 3.93533950617284e-05, + "loss": 0.8664039611816406, + "step": 6900 + }, + { + "epoch": 21.604938271604937, + "grad_norm": 0.3047441244125366, + "learning_rate": 3.919907407407408e-05, + "loss": 0.8664222717285156, + "step": 7000 + }, + { + "epoch": 21.91358024691358, + "grad_norm": 0.28871631622314453, + "learning_rate": 3.904475308641976e-05, + "loss": 0.8676378631591797, + "step": 7100 + }, + { + "epoch": 22.22222222222222, + "grad_norm": 0.29110872745513916, + "learning_rate": 3.8890432098765435e-05, + "loss": 0.8660447692871094, + "step": 7200 + }, + { + "epoch": 22.530864197530864, + "grad_norm": 0.2692337930202484, + "learning_rate": 3.873611111111111e-05, + "loss": 0.8669923400878906, + "step": 7300 + }, + { + "epoch": 22.839506172839506, + "grad_norm": 0.31768998503685, + "learning_rate": 3.858179012345679e-05, + "loss": 0.8663272094726563, + "step": 7400 + }, + { + "epoch": 23.14814814814815, + "grad_norm": 0.22150367498397827, + "learning_rate": 3.842746913580247e-05, + "loss": 0.8668128967285156, + "step": 7500 + }, + { + "epoch": 23.45679012345679, + "grad_norm": 0.23608367145061493, + "learning_rate": 3.827314814814815e-05, + "loss": 0.8661857604980469, + "step": 7600 + }, + { + "epoch": 23.765432098765434, + "grad_norm": 0.23709823191165924, + "learning_rate": 3.811882716049383e-05, + "loss": 0.8668611145019531, + "step": 7700 + }, + { + "epoch": 24.074074074074073, + "grad_norm": 0.2794584333896637, + "learning_rate": 3.796450617283951e-05, + "loss": 0.8664863586425782, + "step": 7800 + }, + { + "epoch": 24.382716049382715, + "grad_norm": 0.35239988565444946, + "learning_rate": 3.7810185185185185e-05, + "loss": 0.8656664276123047, + "step": 7900 + }, + { + "epoch": 24.691358024691358, + "grad_norm": 0.3032480776309967, + "learning_rate": 3.765586419753086e-05, + "loss": 0.8664974212646485, + "step": 8000 + }, + { + "epoch": 25.0, + "grad_norm": 0.32895025610923767, + "learning_rate": 3.750154320987655e-05, + "loss": 0.8656834411621094, + "step": 8100 + }, + { + "epoch": 25.308641975308642, + "grad_norm": 0.24647651612758636, + "learning_rate": 3.7347222222222225e-05, + "loss": 0.8668187713623047, + "step": 8200 + }, + { + "epoch": 25.617283950617285, + "grad_norm": 0.3259798288345337, + "learning_rate": 3.71929012345679e-05, + "loss": 0.8659412384033203, + "step": 8300 + }, + { + "epoch": 25.925925925925927, + "grad_norm": 0.29342758655548096, + "learning_rate": 3.703858024691359e-05, + "loss": 0.865984115600586, + "step": 8400 + }, + { + "epoch": 26.234567901234566, + "grad_norm": 0.18561498820781708, + "learning_rate": 3.6884259259259265e-05, + "loss": 0.8656551361083984, + "step": 8500 + }, + { + "epoch": 26.54320987654321, + "grad_norm": 0.24412372708320618, + "learning_rate": 3.672993827160494e-05, + "loss": 0.8654991912841797, + "step": 8600 + }, + { + "epoch": 26.85185185185185, + "grad_norm": 0.2831413447856903, + "learning_rate": 3.657561728395062e-05, + "loss": 0.8658388519287109, + "step": 8700 + }, + { + "epoch": 27.160493827160494, + "grad_norm": 0.27400529384613037, + "learning_rate": 3.64212962962963e-05, + "loss": 0.8661294555664063, + "step": 8800 + }, + { + "epoch": 27.469135802469136, + "grad_norm": 0.30983632802963257, + "learning_rate": 3.6266975308641976e-05, + "loss": 0.866031265258789, + "step": 8900 + }, + { + "epoch": 27.77777777777778, + "grad_norm": 0.3088923990726471, + "learning_rate": 3.611265432098765e-05, + "loss": 0.8667101287841796, + "step": 9000 + }, + { + "epoch": 28.08641975308642, + "grad_norm": 0.23197945952415466, + "learning_rate": 3.595833333333333e-05, + "loss": 0.8657314300537109, + "step": 9100 + }, + { + "epoch": 28.395061728395063, + "grad_norm": 0.32310914993286133, + "learning_rate": 3.5804012345679015e-05, + "loss": 0.8657714080810547, + "step": 9200 + }, + { + "epoch": 28.703703703703702, + "grad_norm": 0.2674392759799957, + "learning_rate": 3.564969135802469e-05, + "loss": 0.8655484771728515, + "step": 9300 + }, + { + "epoch": 29.012345679012345, + "grad_norm": 0.25402772426605225, + "learning_rate": 3.549537037037037e-05, + "loss": 0.8671824645996093, + "step": 9400 + }, + { + "epoch": 29.320987654320987, + "grad_norm": 0.2903260886669159, + "learning_rate": 3.534104938271605e-05, + "loss": 0.8659280395507812, + "step": 9500 + }, + { + "epoch": 29.62962962962963, + "grad_norm": 0.2330218255519867, + "learning_rate": 3.518672839506173e-05, + "loss": 0.8649930572509765, + "step": 9600 + }, + { + "epoch": 29.938271604938272, + "grad_norm": 0.31311362981796265, + "learning_rate": 3.503240740740741e-05, + "loss": 0.865321044921875, + "step": 9700 + }, + { + "epoch": 30.246913580246915, + "grad_norm": 0.3377930223941803, + "learning_rate": 3.487808641975309e-05, + "loss": 0.8644564056396484, + "step": 9800 + }, + { + "epoch": 30.555555555555557, + "grad_norm": 0.3928042948246002, + "learning_rate": 3.4723765432098766e-05, + "loss": 0.8649266815185547, + "step": 9900 + }, + { + "epoch": 30.864197530864196, + "grad_norm": 0.2636756896972656, + "learning_rate": 3.456944444444445e-05, + "loss": 0.865054931640625, + "step": 10000 + }, + { + "epoch": 31.17283950617284, + "grad_norm": 0.28490859270095825, + "learning_rate": 3.441512345679013e-05, + "loss": 0.8649151611328125, + "step": 10100 + }, + { + "epoch": 31.48148148148148, + "grad_norm": 0.15659233927726746, + "learning_rate": 3.4260802469135806e-05, + "loss": 0.8644688415527344, + "step": 10200 + }, + { + "epoch": 31.790123456790123, + "grad_norm": 0.2705706059932709, + "learning_rate": 3.4106481481481484e-05, + "loss": 0.8652298736572266, + "step": 10300 + }, + { + "epoch": 32.098765432098766, + "grad_norm": 0.2109704315662384, + "learning_rate": 3.395216049382716e-05, + "loss": 0.8646073150634765, + "step": 10400 + }, + { + "epoch": 32.407407407407405, + "grad_norm": 0.4892992079257965, + "learning_rate": 3.379783950617284e-05, + "loss": 0.8661848449707031, + "step": 10500 + }, + { + "epoch": 32.71604938271605, + "grad_norm": 0.24907298386096954, + "learning_rate": 3.364351851851852e-05, + "loss": 0.8667823028564453, + "step": 10600 + }, + { + "epoch": 33.02469135802469, + "grad_norm": 0.252615749835968, + "learning_rate": 3.3489197530864194e-05, + "loss": 0.8658191680908203, + "step": 10700 + }, + { + "epoch": 33.333333333333336, + "grad_norm": 0.2954252362251282, + "learning_rate": 3.333487654320988e-05, + "loss": 0.8650070190429687, + "step": 10800 + }, + { + "epoch": 33.641975308641975, + "grad_norm": 0.25497448444366455, + "learning_rate": 3.3180555555555556e-05, + "loss": 0.8645931243896484, + "step": 10900 + }, + { + "epoch": 33.95061728395062, + "grad_norm": 0.21472449600696564, + "learning_rate": 3.3026234567901234e-05, + "loss": 0.8647118377685546, + "step": 11000 + }, + { + "epoch": 34.25925925925926, + "grad_norm": 0.2599078118801117, + "learning_rate": 3.287191358024692e-05, + "loss": 0.8644834136962891, + "step": 11100 + }, + { + "epoch": 34.5679012345679, + "grad_norm": 0.22373680770397186, + "learning_rate": 3.2717592592592596e-05, + "loss": 0.8649051666259766, + "step": 11200 + }, + { + "epoch": 34.876543209876544, + "grad_norm": 0.26835867762565613, + "learning_rate": 3.2563271604938274e-05, + "loss": 0.8655126953125, + "step": 11300 + }, + { + "epoch": 35.18518518518518, + "grad_norm": 0.27637186646461487, + "learning_rate": 3.240895061728395e-05, + "loss": 0.8649341583251953, + "step": 11400 + }, + { + "epoch": 35.49382716049383, + "grad_norm": 0.24539203941822052, + "learning_rate": 3.225462962962963e-05, + "loss": 0.8642951202392578, + "step": 11500 + }, + { + "epoch": 35.80246913580247, + "grad_norm": 0.237693190574646, + "learning_rate": 3.210030864197531e-05, + "loss": 0.8649242401123047, + "step": 11600 + }, + { + "epoch": 36.111111111111114, + "grad_norm": 0.31651604175567627, + "learning_rate": 3.194598765432099e-05, + "loss": 0.8645661926269531, + "step": 11700 + }, + { + "epoch": 36.41975308641975, + "grad_norm": 0.2650340497493744, + "learning_rate": 3.179166666666667e-05, + "loss": 0.8651156616210938, + "step": 11800 + }, + { + "epoch": 36.72839506172839, + "grad_norm": 0.25851109623908997, + "learning_rate": 3.163734567901235e-05, + "loss": 0.8652816772460937, + "step": 11900 + }, + { + "epoch": 37.03703703703704, + "grad_norm": 0.32711413502693176, + "learning_rate": 3.1483024691358025e-05, + "loss": 0.8652924346923828, + "step": 12000 + }, + { + "epoch": 37.34567901234568, + "grad_norm": 0.3487214148044586, + "learning_rate": 3.1330246913580246e-05, + "loss": 0.8653363037109375, + "step": 12100 + }, + { + "epoch": 37.65432098765432, + "grad_norm": 0.19253982603549957, + "learning_rate": 3.1175925925925924e-05, + "loss": 0.864839859008789, + "step": 12200 + }, + { + "epoch": 37.96296296296296, + "grad_norm": 0.3058128356933594, + "learning_rate": 3.102160493827161e-05, + "loss": 0.8642467498779297, + "step": 12300 + }, + { + "epoch": 38.27160493827161, + "grad_norm": 0.30015528202056885, + "learning_rate": 3.0867283950617286e-05, + "loss": 0.8649742126464843, + "step": 12400 + }, + { + "epoch": 38.58024691358025, + "grad_norm": 0.33380067348480225, + "learning_rate": 3.0712962962962964e-05, + "loss": 0.8651032257080078, + "step": 12500 + }, + { + "epoch": 38.888888888888886, + "grad_norm": 0.36329004168510437, + "learning_rate": 3.055864197530864e-05, + "loss": 0.8648841857910157, + "step": 12600 + }, + { + "epoch": 39.19753086419753, + "grad_norm": 0.24460196495056152, + "learning_rate": 3.0404320987654322e-05, + "loss": 0.864749755859375, + "step": 12700 + }, + { + "epoch": 39.50617283950617, + "grad_norm": 0.2373257279396057, + "learning_rate": 3.025e-05, + "loss": 0.8641365051269532, + "step": 12800 + }, + { + "epoch": 39.81481481481482, + "grad_norm": 0.30177298188209534, + "learning_rate": 3.0095679012345678e-05, + "loss": 0.8651829528808593, + "step": 12900 + }, + { + "epoch": 40.123456790123456, + "grad_norm": 0.28286585211753845, + "learning_rate": 2.994135802469136e-05, + "loss": 0.8650211334228516, + "step": 13000 + }, + { + "epoch": 40.4320987654321, + "grad_norm": 0.2545726001262665, + "learning_rate": 2.978703703703704e-05, + "loss": 0.8654981231689454, + "step": 13100 + }, + { + "epoch": 40.74074074074074, + "grad_norm": 0.23175671696662903, + "learning_rate": 2.963271604938272e-05, + "loss": 0.8643350219726562, + "step": 13200 + }, + { + "epoch": 41.04938271604938, + "grad_norm": 0.2642582952976227, + "learning_rate": 2.94783950617284e-05, + "loss": 0.8648191070556641, + "step": 13300 + }, + { + "epoch": 41.358024691358025, + "grad_norm": 0.20592033863067627, + "learning_rate": 2.9324074074074076e-05, + "loss": 0.8642449951171876, + "step": 13400 + }, + { + "epoch": 41.666666666666664, + "grad_norm": 0.29046180844306946, + "learning_rate": 2.9169753086419754e-05, + "loss": 0.8642656707763672, + "step": 13500 + }, + { + "epoch": 41.97530864197531, + "grad_norm": 0.26292547583580017, + "learning_rate": 2.9015432098765432e-05, + "loss": 0.8639488220214844, + "step": 13600 + }, + { + "epoch": 42.28395061728395, + "grad_norm": 0.297783225774765, + "learning_rate": 2.886111111111111e-05, + "loss": 0.864585189819336, + "step": 13700 + }, + { + "epoch": 42.592592592592595, + "grad_norm": 0.2444617748260498, + "learning_rate": 2.870679012345679e-05, + "loss": 0.8649152374267578, + "step": 13800 + }, + { + "epoch": 42.901234567901234, + "grad_norm": 0.2831110656261444, + "learning_rate": 2.855246913580247e-05, + "loss": 0.8645712280273438, + "step": 13900 + }, + { + "epoch": 43.20987654320987, + "grad_norm": 0.2567242980003357, + "learning_rate": 2.8398148148148153e-05, + "loss": 0.8638491058349609, + "step": 14000 + }, + { + "epoch": 43.51851851851852, + "grad_norm": 0.2865658104419708, + "learning_rate": 2.824537037037037e-05, + "loss": 0.8642730712890625, + "step": 14100 + }, + { + "epoch": 43.82716049382716, + "grad_norm": 0.298484742641449, + "learning_rate": 2.8091049382716052e-05, + "loss": 0.8649552917480469, + "step": 14200 + }, + { + "epoch": 44.135802469135804, + "grad_norm": 0.28939852118492126, + "learning_rate": 2.793672839506173e-05, + "loss": 0.8639812469482422, + "step": 14300 + }, + { + "epoch": 44.44444444444444, + "grad_norm": 0.3122703433036804, + "learning_rate": 2.7782407407407407e-05, + "loss": 0.8637904357910157, + "step": 14400 + }, + { + "epoch": 44.75308641975309, + "grad_norm": 0.2748583257198334, + "learning_rate": 2.7628086419753085e-05, + "loss": 0.8642880249023438, + "step": 14500 + }, + { + "epoch": 45.06172839506173, + "grad_norm": 0.2639121115207672, + "learning_rate": 2.747376543209877e-05, + "loss": 0.8640217590332031, + "step": 14600 + }, + { + "epoch": 45.370370370370374, + "grad_norm": 0.2939169406890869, + "learning_rate": 2.7319444444444447e-05, + "loss": 0.8636822509765625, + "step": 14700 + }, + { + "epoch": 45.67901234567901, + "grad_norm": 0.28234273195266724, + "learning_rate": 2.7165123456790125e-05, + "loss": 0.8640520477294922, + "step": 14800 + }, + { + "epoch": 45.98765432098765, + "grad_norm": 0.3247532844543457, + "learning_rate": 2.7010802469135806e-05, + "loss": 0.8645074462890625, + "step": 14900 + }, + { + "epoch": 46.2962962962963, + "grad_norm": 0.17439720034599304, + "learning_rate": 2.6856481481481484e-05, + "loss": 0.86478759765625, + "step": 15000 + }, + { + "epoch": 46.60493827160494, + "grad_norm": 0.21647287905216217, + "learning_rate": 2.670216049382716e-05, + "loss": 0.8639440155029297, + "step": 15100 + }, + { + "epoch": 46.91358024691358, + "grad_norm": 0.22848644852638245, + "learning_rate": 2.654783950617284e-05, + "loss": 0.8637759399414062, + "step": 15200 + }, + { + "epoch": 47.22222222222222, + "grad_norm": 0.2585737407207489, + "learning_rate": 2.6393518518518517e-05, + "loss": 0.8639788055419921, + "step": 15300 + }, + { + "epoch": 47.53086419753087, + "grad_norm": 0.3228673040866852, + "learning_rate": 2.62391975308642e-05, + "loss": 0.8634998321533203, + "step": 15400 + }, + { + "epoch": 47.839506172839506, + "grad_norm": 0.19199813902378082, + "learning_rate": 2.608487654320988e-05, + "loss": 0.8637458038330078, + "step": 15500 + }, + { + "epoch": 48.148148148148145, + "grad_norm": 0.25434640049934387, + "learning_rate": 2.5930555555555556e-05, + "loss": 0.8639579010009766, + "step": 15600 + }, + { + "epoch": 48.45679012345679, + "grad_norm": 0.2062629610300064, + "learning_rate": 2.5776234567901237e-05, + "loss": 0.8633383941650391, + "step": 15700 + }, + { + "epoch": 48.76543209876543, + "grad_norm": 0.28273260593414307, + "learning_rate": 2.5621913580246915e-05, + "loss": 0.8634058380126953, + "step": 15800 + }, + { + "epoch": 49.074074074074076, + "grad_norm": 0.25794675946235657, + "learning_rate": 2.5467592592592593e-05, + "loss": 0.8644215393066407, + "step": 15900 + }, + { + "epoch": 49.382716049382715, + "grad_norm": 0.2801361382007599, + "learning_rate": 2.531327160493827e-05, + "loss": 0.8637371826171875, + "step": 16000 + }, + { + "epoch": 49.69135802469136, + "grad_norm": 0.31594523787498474, + "learning_rate": 2.51604938271605e-05, + "loss": 0.8638718414306641, + "step": 16100 + }, + { + "epoch": 50.0, + "grad_norm": 0.1785411238670349, + "learning_rate": 2.5006172839506177e-05, + "loss": 0.8638040161132813, + "step": 16200 + }, + { + "epoch": 50.30864197530864, + "grad_norm": 0.23965902626514435, + "learning_rate": 2.4851851851851854e-05, + "loss": 0.8634780883789063, + "step": 16300 + }, + { + "epoch": 50.617283950617285, + "grad_norm": 0.20226578414440155, + "learning_rate": 2.4697530864197532e-05, + "loss": 0.8635775756835937, + "step": 16400 + }, + { + "epoch": 50.925925925925924, + "grad_norm": 0.26240015029907227, + "learning_rate": 2.454320987654321e-05, + "loss": 0.8634452819824219, + "step": 16500 + }, + { + "epoch": 51.23456790123457, + "grad_norm": 0.31871360540390015, + "learning_rate": 2.4388888888888887e-05, + "loss": 0.8634230041503906, + "step": 16600 + }, + { + "epoch": 51.54320987654321, + "grad_norm": 0.28414225578308105, + "learning_rate": 2.423456790123457e-05, + "loss": 0.863424072265625, + "step": 16700 + }, + { + "epoch": 51.851851851851855, + "grad_norm": 0.25372815132141113, + "learning_rate": 2.408024691358025e-05, + "loss": 0.8632637023925781, + "step": 16800 + }, + { + "epoch": 52.160493827160494, + "grad_norm": 0.2601035237312317, + "learning_rate": 2.3925925925925927e-05, + "loss": 0.8637233734130859, + "step": 16900 + }, + { + "epoch": 52.46913580246913, + "grad_norm": 0.15456737577915192, + "learning_rate": 2.3771604938271605e-05, + "loss": 0.8640314483642578, + "step": 17000 + }, + { + "epoch": 52.77777777777778, + "grad_norm": 0.2598564326763153, + "learning_rate": 2.3617283950617286e-05, + "loss": 0.8640044403076171, + "step": 17100 + }, + { + "epoch": 53.08641975308642, + "grad_norm": 0.22886838018894196, + "learning_rate": 2.3462962962962964e-05, + "loss": 0.8635028076171875, + "step": 17200 + }, + { + "epoch": 53.39506172839506, + "grad_norm": 0.2388191968202591, + "learning_rate": 2.330864197530864e-05, + "loss": 0.8633686828613282, + "step": 17300 + }, + { + "epoch": 53.7037037037037, + "grad_norm": 0.18569715321063995, + "learning_rate": 2.3154320987654322e-05, + "loss": 0.8634825897216797, + "step": 17400 + }, + { + "epoch": 54.01234567901235, + "grad_norm": 0.23340563476085663, + "learning_rate": 2.3000000000000003e-05, + "loss": 0.8637994384765625, + "step": 17500 + }, + { + "epoch": 54.32098765432099, + "grad_norm": 0.2481815665960312, + "learning_rate": 2.284567901234568e-05, + "loss": 0.8632342529296875, + "step": 17600 + }, + { + "epoch": 54.629629629629626, + "grad_norm": 0.2559766173362732, + "learning_rate": 2.269135802469136e-05, + "loss": 0.8636701202392578, + "step": 17700 + }, + { + "epoch": 54.93827160493827, + "grad_norm": 0.4377776086330414, + "learning_rate": 2.2537037037037036e-05, + "loss": 0.8633976745605468, + "step": 17800 + }, + { + "epoch": 55.24691358024691, + "grad_norm": 0.26731622219085693, + "learning_rate": 2.2382716049382718e-05, + "loss": 0.8637456512451172, + "step": 17900 + }, + { + "epoch": 55.55555555555556, + "grad_norm": 0.25528597831726074, + "learning_rate": 2.2228395061728395e-05, + "loss": 0.8630653381347656, + "step": 18000 + }, + { + "epoch": 55.864197530864196, + "grad_norm": 0.3228375315666199, + "learning_rate": 2.2075617283950617e-05, + "loss": 0.8641485595703124, + "step": 18100 + }, + { + "epoch": 56.17283950617284, + "grad_norm": 0.3410342037677765, + "learning_rate": 2.1921296296296298e-05, + "loss": 0.8628273773193359, + "step": 18200 + }, + { + "epoch": 56.48148148148148, + "grad_norm": 0.27824917435646057, + "learning_rate": 2.1766975308641976e-05, + "loss": 0.8632877349853516, + "step": 18300 + }, + { + "epoch": 56.79012345679013, + "grad_norm": 0.29218852519989014, + "learning_rate": 2.1612654320987653e-05, + "loss": 0.8634963989257812, + "step": 18400 + }, + { + "epoch": 57.098765432098766, + "grad_norm": 0.26962971687316895, + "learning_rate": 2.1458333333333334e-05, + "loss": 0.8631212615966797, + "step": 18500 + }, + { + "epoch": 57.407407407407405, + "grad_norm": 0.31703895330429077, + "learning_rate": 2.1304012345679015e-05, + "loss": 0.8632781219482422, + "step": 18600 + }, + { + "epoch": 57.71604938271605, + "grad_norm": 0.32334306836128235, + "learning_rate": 2.1149691358024693e-05, + "loss": 0.8634398651123046, + "step": 18700 + }, + { + "epoch": 58.02469135802469, + "grad_norm": 0.2593790292739868, + "learning_rate": 2.099537037037037e-05, + "loss": 0.8636258697509765, + "step": 18800 + }, + { + "epoch": 58.333333333333336, + "grad_norm": 0.2949954569339752, + "learning_rate": 2.084104938271605e-05, + "loss": 0.8629860687255859, + "step": 18900 + }, + { + "epoch": 58.641975308641975, + "grad_norm": 0.23345129191875458, + "learning_rate": 2.068672839506173e-05, + "loss": 0.8632596588134765, + "step": 19000 + }, + { + "epoch": 58.95061728395062, + "grad_norm": 0.3483967185020447, + "learning_rate": 2.0532407407407407e-05, + "loss": 0.8632754516601563, + "step": 19100 + }, + { + "epoch": 59.25925925925926, + "grad_norm": 0.24414049088954926, + "learning_rate": 2.0378086419753088e-05, + "loss": 0.863308334350586, + "step": 19200 + }, + { + "epoch": 59.5679012345679, + "grad_norm": 0.22884564101696014, + "learning_rate": 2.0223765432098766e-05, + "loss": 0.8630153656005859, + "step": 19300 + }, + { + "epoch": 59.876543209876544, + "grad_norm": 0.293367862701416, + "learning_rate": 2.0069444444444447e-05, + "loss": 0.8631407165527344, + "step": 19400 + }, + { + "epoch": 60.18518518518518, + "grad_norm": 0.24008184671401978, + "learning_rate": 1.9915123456790125e-05, + "loss": 0.8633984375, + "step": 19500 + }, + { + "epoch": 60.49382716049383, + "grad_norm": 0.2940938472747803, + "learning_rate": 1.9760802469135802e-05, + "loss": 0.8634149932861328, + "step": 19600 + }, + { + "epoch": 60.80246913580247, + "grad_norm": 0.24539810419082642, + "learning_rate": 1.960648148148148e-05, + "loss": 0.8639472961425781, + "step": 19700 + }, + { + "epoch": 61.111111111111114, + "grad_norm": 0.2464188188314438, + "learning_rate": 1.945216049382716e-05, + "loss": 0.8634198760986328, + "step": 19800 + }, + { + "epoch": 61.41975308641975, + "grad_norm": 0.250593900680542, + "learning_rate": 1.9297839506172842e-05, + "loss": 0.8628058624267578, + "step": 19900 + }, + { + "epoch": 61.72839506172839, + "grad_norm": 0.25289106369018555, + "learning_rate": 1.914351851851852e-05, + "loss": 0.862940673828125, + "step": 20000 + }, + { + "epoch": 62.03703703703704, + "grad_norm": 0.270373672246933, + "learning_rate": 1.899074074074074e-05, + "loss": 0.8629447937011718, + "step": 20100 + }, + { + "epoch": 62.34567901234568, + "grad_norm": 0.2208729088306427, + "learning_rate": 1.883641975308642e-05, + "loss": 0.86260498046875, + "step": 20200 + }, + { + "epoch": 62.65432098765432, + "grad_norm": 0.20749305188655853, + "learning_rate": 1.86820987654321e-05, + "loss": 0.8630132293701172, + "step": 20300 + }, + { + "epoch": 62.96296296296296, + "grad_norm": 0.29507532715797424, + "learning_rate": 1.852777777777778e-05, + "loss": 0.8628247833251953, + "step": 20400 + }, + { + "epoch": 63.27160493827161, + "grad_norm": 0.3076235055923462, + "learning_rate": 1.837345679012346e-05, + "loss": 0.863165512084961, + "step": 20500 + }, + { + "epoch": 63.58024691358025, + "grad_norm": 0.25332000851631165, + "learning_rate": 1.8219135802469137e-05, + "loss": 0.8626132202148438, + "step": 20600 + }, + { + "epoch": 63.888888888888886, + "grad_norm": 0.22742706537246704, + "learning_rate": 1.8064814814814814e-05, + "loss": 0.8633429718017578, + "step": 20700 + }, + { + "epoch": 64.19753086419753, + "grad_norm": 0.24907511472702026, + "learning_rate": 1.7910493827160495e-05, + "loss": 0.8628691864013672, + "step": 20800 + }, + { + "epoch": 64.50617283950618, + "grad_norm": 0.37986981868743896, + "learning_rate": 1.7756172839506173e-05, + "loss": 0.862381591796875, + "step": 20900 + }, + { + "epoch": 64.81481481481481, + "grad_norm": 0.26957404613494873, + "learning_rate": 1.7601851851851854e-05, + "loss": 0.8621443176269531, + "step": 21000 + }, + { + "epoch": 65.12345679012346, + "grad_norm": 0.21372266113758087, + "learning_rate": 1.7447530864197532e-05, + "loss": 0.8624749755859376, + "step": 21100 + }, + { + "epoch": 65.4320987654321, + "grad_norm": 0.23659591376781464, + "learning_rate": 1.729320987654321e-05, + "loss": 0.862855453491211, + "step": 21200 + }, + { + "epoch": 65.74074074074075, + "grad_norm": 0.2516464591026306, + "learning_rate": 1.713888888888889e-05, + "loss": 0.8628866577148437, + "step": 21300 + }, + { + "epoch": 66.04938271604938, + "grad_norm": 0.23080387711524963, + "learning_rate": 1.698456790123457e-05, + "loss": 0.8628789520263672, + "step": 21400 + }, + { + "epoch": 66.35802469135803, + "grad_norm": 0.24531495571136475, + "learning_rate": 1.6830246913580246e-05, + "loss": 0.8624163818359375, + "step": 21500 + }, + { + "epoch": 66.66666666666667, + "grad_norm": 0.3036033809185028, + "learning_rate": 1.6675925925925927e-05, + "loss": 0.8630258178710938, + "step": 21600 + }, + { + "epoch": 66.9753086419753, + "grad_norm": 0.24009738862514496, + "learning_rate": 1.6521604938271608e-05, + "loss": 0.8635572814941406, + "step": 21700 + }, + { + "epoch": 67.28395061728395, + "grad_norm": 0.2536623477935791, + "learning_rate": 1.6367283950617286e-05, + "loss": 0.8623932647705078, + "step": 21800 + }, + { + "epoch": 67.5925925925926, + "grad_norm": 0.28109127283096313, + "learning_rate": 1.6212962962962964e-05, + "loss": 0.8624723052978516, + "step": 21900 + }, + { + "epoch": 67.90123456790124, + "grad_norm": 0.2185950130224228, + "learning_rate": 1.605864197530864e-05, + "loss": 0.8623596954345704, + "step": 22000 + }, + { + "epoch": 68.20987654320987, + "grad_norm": 0.33554041385650635, + "learning_rate": 1.5905864197530866e-05, + "loss": 0.8626500701904297, + "step": 22100 + }, + { + "epoch": 68.51851851851852, + "grad_norm": 0.2552665174007416, + "learning_rate": 1.5751543209876544e-05, + "loss": 0.8622700500488282, + "step": 22200 + }, + { + "epoch": 68.82716049382717, + "grad_norm": 0.3290879726409912, + "learning_rate": 1.5597222222222225e-05, + "loss": 0.8628783416748047, + "step": 22300 + }, + { + "epoch": 69.1358024691358, + "grad_norm": 0.23781687021255493, + "learning_rate": 1.5442901234567903e-05, + "loss": 0.8625830841064454, + "step": 22400 + }, + { + "epoch": 69.44444444444444, + "grad_norm": 0.29894009232521057, + "learning_rate": 1.528858024691358e-05, + "loss": 0.8624604034423828, + "step": 22500 + }, + { + "epoch": 69.75308641975309, + "grad_norm": 0.28855380415916443, + "learning_rate": 1.513425925925926e-05, + "loss": 0.8624363708496093, + "step": 22600 + }, + { + "epoch": 70.06172839506173, + "grad_norm": 0.30909860134124756, + "learning_rate": 1.497993827160494e-05, + "loss": 0.8625530242919922, + "step": 22700 + }, + { + "epoch": 70.37037037037037, + "grad_norm": 0.25948941707611084, + "learning_rate": 1.4825617283950618e-05, + "loss": 0.8629596710205079, + "step": 22800 + }, + { + "epoch": 70.67901234567901, + "grad_norm": 0.23436062037944794, + "learning_rate": 1.4671296296296296e-05, + "loss": 0.8624345397949219, + "step": 22900 + }, + { + "epoch": 70.98765432098766, + "grad_norm": 0.22997359931468964, + "learning_rate": 1.4516975308641975e-05, + "loss": 0.8627075958251953, + "step": 23000 + }, + { + "epoch": 71.29629629629629, + "grad_norm": 0.25879642367362976, + "learning_rate": 1.4362654320987657e-05, + "loss": 0.862459716796875, + "step": 23100 + }, + { + "epoch": 71.60493827160494, + "grad_norm": 0.2785871624946594, + "learning_rate": 1.4208333333333334e-05, + "loss": 0.8629904937744141, + "step": 23200 + }, + { + "epoch": 71.91358024691358, + "grad_norm": 0.23828476667404175, + "learning_rate": 1.4054012345679014e-05, + "loss": 0.8625855255126953, + "step": 23300 + }, + { + "epoch": 72.22222222222223, + "grad_norm": 0.28304004669189453, + "learning_rate": 1.3899691358024691e-05, + "loss": 0.8623751068115234, + "step": 23400 + }, + { + "epoch": 72.53086419753086, + "grad_norm": 0.35052117705345154, + "learning_rate": 1.3745370370370372e-05, + "loss": 0.8628295135498046, + "step": 23500 + }, + { + "epoch": 72.8395061728395, + "grad_norm": 0.21472153067588806, + "learning_rate": 1.359104938271605e-05, + "loss": 0.862393798828125, + "step": 23600 + }, + { + "epoch": 73.14814814814815, + "grad_norm": 0.22292311489582062, + "learning_rate": 1.343672839506173e-05, + "loss": 0.8621687316894531, + "step": 23700 + }, + { + "epoch": 73.45679012345678, + "grad_norm": 0.2587008476257324, + "learning_rate": 1.3282407407407407e-05, + "loss": 0.8623291778564454, + "step": 23800 + }, + { + "epoch": 73.76543209876543, + "grad_norm": 0.2771637439727783, + "learning_rate": 1.3128086419753088e-05, + "loss": 0.8624784088134766, + "step": 23900 + }, + { + "epoch": 74.07407407407408, + "grad_norm": 0.2332049012184143, + "learning_rate": 1.2973765432098766e-05, + "loss": 0.8628304290771485, + "step": 24000 + }, + { + "epoch": 74.38271604938272, + "grad_norm": 0.18202383816242218, + "learning_rate": 1.2820987654320987e-05, + "loss": 0.8623355102539062, + "step": 24100 + }, + { + "epoch": 74.69135802469135, + "grad_norm": 0.25001880526542664, + "learning_rate": 1.2666666666666668e-05, + "loss": 0.8625141906738282, + "step": 24200 + }, + { + "epoch": 75.0, + "grad_norm": 0.25027912855148315, + "learning_rate": 1.2512345679012346e-05, + "loss": 0.8624292755126953, + "step": 24300 + }, + { + "epoch": 75.30864197530865, + "grad_norm": 0.2614375054836273, + "learning_rate": 1.2358024691358026e-05, + "loss": 0.8622071838378906, + "step": 24400 + }, + { + "epoch": 75.61728395061728, + "grad_norm": 0.23685692250728607, + "learning_rate": 1.2203703703703705e-05, + "loss": 0.862458724975586, + "step": 24500 + }, + { + "epoch": 75.92592592592592, + "grad_norm": 0.2700103223323822, + "learning_rate": 1.2049382716049383e-05, + "loss": 0.8620365905761719, + "step": 24600 + }, + { + "epoch": 76.23456790123457, + "grad_norm": 0.28203874826431274, + "learning_rate": 1.1895061728395062e-05, + "loss": 0.8621501159667969, + "step": 24700 + }, + { + "epoch": 76.54320987654322, + "grad_norm": 0.2746220827102661, + "learning_rate": 1.1740740740740741e-05, + "loss": 0.8624026489257812, + "step": 24800 + }, + { + "epoch": 76.85185185185185, + "grad_norm": 0.30292582511901855, + "learning_rate": 1.158641975308642e-05, + "loss": 0.862785873413086, + "step": 24900 + }, + { + "epoch": 77.1604938271605, + "grad_norm": 0.2562635540962219, + "learning_rate": 1.1432098765432098e-05, + "loss": 0.8624921417236329, + "step": 25000 + }, + { + "epoch": 77.46913580246914, + "grad_norm": 0.27666226029396057, + "learning_rate": 1.127777777777778e-05, + "loss": 0.8622743988037109, + "step": 25100 + }, + { + "epoch": 77.77777777777777, + "grad_norm": 0.2963859438896179, + "learning_rate": 1.1123456790123457e-05, + "loss": 0.8626934814453125, + "step": 25200 + }, + { + "epoch": 78.08641975308642, + "grad_norm": 0.2593159079551697, + "learning_rate": 1.0969135802469137e-05, + "loss": 0.8621681976318359, + "step": 25300 + }, + { + "epoch": 78.39506172839506, + "grad_norm": 0.2810990810394287, + "learning_rate": 1.0814814814814814e-05, + "loss": 0.8621713256835938, + "step": 25400 + }, + { + "epoch": 78.70370370370371, + "grad_norm": 0.2808496654033661, + "learning_rate": 1.0660493827160495e-05, + "loss": 0.8622039031982421, + "step": 25500 + }, + { + "epoch": 79.01234567901234, + "grad_norm": 0.2452424019575119, + "learning_rate": 1.0506172839506173e-05, + "loss": 0.8625334930419922, + "step": 25600 + }, + { + "epoch": 79.32098765432099, + "grad_norm": 0.2880192697048187, + "learning_rate": 1.0351851851851852e-05, + "loss": 0.8622465515136719, + "step": 25700 + }, + { + "epoch": 79.62962962962963, + "grad_norm": 0.24877040088176727, + "learning_rate": 1.0197530864197532e-05, + "loss": 0.8621809387207031, + "step": 25800 + }, + { + "epoch": 79.93827160493827, + "grad_norm": 0.3088701069355011, + "learning_rate": 1.0043209876543211e-05, + "loss": 0.8624029541015625, + "step": 25900 + }, + { + "epoch": 80.24691358024691, + "grad_norm": 0.19949986040592194, + "learning_rate": 9.888888888888889e-06, + "loss": 0.8618679809570312, + "step": 26000 + }, + { + "epoch": 80.55555555555556, + "grad_norm": 0.3270089626312256, + "learning_rate": 9.734567901234568e-06, + "loss": 0.8620806884765625, + "step": 26100 + }, + { + "epoch": 80.8641975308642, + "grad_norm": 0.24055376648902893, + "learning_rate": 9.581790123456791e-06, + "loss": 0.861843490600586, + "step": 26200 + }, + { + "epoch": 81.17283950617283, + "grad_norm": 0.28812849521636963, + "learning_rate": 9.42746913580247e-06, + "loss": 0.8618939971923828, + "step": 26300 + }, + { + "epoch": 81.48148148148148, + "grad_norm": 0.18239010870456696, + "learning_rate": 9.273148148148149e-06, + "loss": 0.8618624114990234, + "step": 26400 + }, + { + "epoch": 81.79012345679013, + "grad_norm": 0.2698865234851837, + "learning_rate": 9.118827160493828e-06, + "loss": 0.8617278289794922, + "step": 26500 + }, + { + "epoch": 82.09876543209876, + "grad_norm": 0.2671756446361542, + "learning_rate": 8.964506172839507e-06, + "loss": 0.8620853424072266, + "step": 26600 + }, + { + "epoch": 82.4074074074074, + "grad_norm": 0.20211544632911682, + "learning_rate": 8.810185185185185e-06, + "loss": 0.8620963287353516, + "step": 26700 + }, + { + "epoch": 82.71604938271605, + "grad_norm": 0.3215954899787903, + "learning_rate": 8.655864197530864e-06, + "loss": 0.8621923065185547, + "step": 26800 + }, + { + "epoch": 83.0246913580247, + "grad_norm": 0.2056690901517868, + "learning_rate": 8.501543209876544e-06, + "loss": 0.8621724700927734, + "step": 26900 + }, + { + "epoch": 83.33333333333333, + "grad_norm": 0.24216392636299133, + "learning_rate": 8.347222222222223e-06, + "loss": 0.8620801544189454, + "step": 27000 + }, + { + "epoch": 83.64197530864197, + "grad_norm": 0.28262120485305786, + "learning_rate": 8.1929012345679e-06, + "loss": 0.861885986328125, + "step": 27100 + }, + { + "epoch": 83.95061728395062, + "grad_norm": 0.3250841200351715, + "learning_rate": 8.03858024691358e-06, + "loss": 0.8618600463867188, + "step": 27200 + }, + { + "epoch": 84.25925925925925, + "grad_norm": 0.27586230635643005, + "learning_rate": 7.88425925925926e-06, + "loss": 0.8616656494140625, + "step": 27300 + }, + { + "epoch": 84.5679012345679, + "grad_norm": 0.2721251845359802, + "learning_rate": 7.729938271604939e-06, + "loss": 0.8620500183105468, + "step": 27400 + }, + { + "epoch": 84.87654320987654, + "grad_norm": 0.26842591166496277, + "learning_rate": 7.5756172839506175e-06, + "loss": 0.8617433929443359, + "step": 27500 + }, + { + "epoch": 85.18518518518519, + "grad_norm": 0.23888643085956573, + "learning_rate": 7.421296296296297e-06, + "loss": 0.861810073852539, + "step": 27600 + }, + { + "epoch": 85.49382716049382, + "grad_norm": 0.24433459341526031, + "learning_rate": 7.2669753086419754e-06, + "loss": 0.8616561889648438, + "step": 27700 + }, + { + "epoch": 85.80246913580247, + "grad_norm": 0.24760094285011292, + "learning_rate": 7.112654320987655e-06, + "loss": 0.8622868347167969, + "step": 27800 + }, + { + "epoch": 86.11111111111111, + "grad_norm": 0.19840151071548462, + "learning_rate": 6.958333333333333e-06, + "loss": 0.8618616485595703, + "step": 27900 + }, + { + "epoch": 86.41975308641975, + "grad_norm": 0.24764691293239594, + "learning_rate": 6.804012345679013e-06, + "loss": 0.8621045684814453, + "step": 28000 + }, + { + "epoch": 86.72839506172839, + "grad_norm": 0.23593583703041077, + "learning_rate": 6.649691358024691e-06, + "loss": 0.8618828582763672, + "step": 28100 + }, + { + "epoch": 87.03703703703704, + "grad_norm": 0.2748619318008423, + "learning_rate": 6.496913580246914e-06, + "loss": 0.8616398620605469, + "step": 28200 + }, + { + "epoch": 87.34567901234568, + "grad_norm": 0.2573417127132416, + "learning_rate": 6.342592592592593e-06, + "loss": 0.8620298004150391, + "step": 28300 + }, + { + "epoch": 87.65432098765432, + "grad_norm": 0.2384900599718094, + "learning_rate": 6.188271604938272e-06, + "loss": 0.8617670440673828, + "step": 28400 + }, + { + "epoch": 87.96296296296296, + "grad_norm": 0.21160998940467834, + "learning_rate": 6.033950617283951e-06, + "loss": 0.861859359741211, + "step": 28500 + }, + { + "epoch": 88.27160493827161, + "grad_norm": 0.39718398451805115, + "learning_rate": 5.87962962962963e-06, + "loss": 0.8616744995117187, + "step": 28600 + }, + { + "epoch": 88.58024691358025, + "grad_norm": 0.27755340933799744, + "learning_rate": 5.725308641975309e-06, + "loss": 0.8617410278320312, + "step": 28700 + }, + { + "epoch": 88.88888888888889, + "grad_norm": 0.2871803939342499, + "learning_rate": 5.570987654320988e-06, + "loss": 0.8616901397705078, + "step": 28800 + }, + { + "epoch": 89.19753086419753, + "grad_norm": 0.3335205614566803, + "learning_rate": 5.416666666666667e-06, + "loss": 0.8615732574462891, + "step": 28900 + }, + { + "epoch": 89.50617283950618, + "grad_norm": 0.23746320605278015, + "learning_rate": 5.262345679012346e-06, + "loss": 0.861851806640625, + "step": 29000 + }, + { + "epoch": 89.81481481481481, + "grad_norm": 0.28229081630706787, + "learning_rate": 5.1080246913580255e-06, + "loss": 0.86148681640625, + "step": 29100 + }, + { + "epoch": 90.12345679012346, + "grad_norm": 0.21336163580417633, + "learning_rate": 4.953703703703704e-06, + "loss": 0.861663818359375, + "step": 29200 + }, + { + "epoch": 90.4320987654321, + "grad_norm": 0.2604101300239563, + "learning_rate": 4.7993827160493834e-06, + "loss": 0.8617544555664063, + "step": 29300 + }, + { + "epoch": 90.74074074074075, + "grad_norm": 0.26023662090301514, + "learning_rate": 4.645061728395062e-06, + "loss": 0.8617599487304688, + "step": 29400 + }, + { + "epoch": 91.04938271604938, + "grad_norm": 0.26295042037963867, + "learning_rate": 4.490740740740741e-06, + "loss": 0.8617560577392578, + "step": 29500 + }, + { + "epoch": 91.35802469135803, + "grad_norm": 0.22411581873893738, + "learning_rate": 4.33641975308642e-06, + "loss": 0.8616332244873047, + "step": 29600 + }, + { + "epoch": 91.66666666666667, + "grad_norm": 0.24028459191322327, + "learning_rate": 4.182098765432099e-06, + "loss": 0.8615241241455078, + "step": 29700 + }, + { + "epoch": 91.9753086419753, + "grad_norm": 0.25509828329086304, + "learning_rate": 4.027777777777779e-06, + "loss": 0.8616260528564453, + "step": 29800 + }, + { + "epoch": 92.28395061728395, + "grad_norm": 0.22896139323711395, + "learning_rate": 3.873456790123457e-06, + "loss": 0.8615116882324219, + "step": 29900 + }, + { + "epoch": 92.5925925925926, + "grad_norm": 0.1981690675020218, + "learning_rate": 3.719135802469136e-06, + "loss": 0.8616599273681641, + "step": 30000 + }, + { + "epoch": 92.90123456790124, + "grad_norm": 0.2998819053173065, + "learning_rate": 3.564814814814815e-06, + "loss": 0.8616020965576172, + "step": 30100 + }, + { + "epoch": 93.20987654320987, + "grad_norm": 0.2514878213405609, + "learning_rate": 3.412037037037037e-06, + "loss": 0.8614517974853516, + "step": 30200 + }, + { + "epoch": 93.51851851851852, + "grad_norm": 0.24726809561252594, + "learning_rate": 3.257716049382716e-06, + "loss": 0.8615573883056641, + "step": 30300 + }, + { + "epoch": 93.82716049382717, + "grad_norm": 0.24331317842006683, + "learning_rate": 3.1033950617283954e-06, + "loss": 0.861545181274414, + "step": 30400 + }, + { + "epoch": 94.1358024691358, + "grad_norm": 0.29127877950668335, + "learning_rate": 2.9490740740740743e-06, + "loss": 0.8617371368408203, + "step": 30500 + }, + { + "epoch": 94.44444444444444, + "grad_norm": 0.3069797456264496, + "learning_rate": 2.7947530864197533e-06, + "loss": 0.8614784240722656, + "step": 30600 + }, + { + "epoch": 94.75308641975309, + "grad_norm": 0.25526171922683716, + "learning_rate": 2.6404320987654323e-06, + "loss": 0.8612818908691406, + "step": 30700 + }, + { + "epoch": 95.06172839506173, + "grad_norm": 0.25805607438087463, + "learning_rate": 2.4861111111111112e-06, + "loss": 0.8611087799072266, + "step": 30800 + }, + { + "epoch": 95.37037037037037, + "grad_norm": 0.24607188999652863, + "learning_rate": 2.33179012345679e-06, + "loss": 0.8613501739501953, + "step": 30900 + }, + { + "epoch": 95.67901234567901, + "grad_norm": 0.3257257640361786, + "learning_rate": 2.177469135802469e-06, + "loss": 0.8614185333251954, + "step": 31000 + }, + { + "epoch": 95.98765432098766, + "grad_norm": 0.3006044924259186, + "learning_rate": 2.0231481481481485e-06, + "loss": 0.8614950561523438, + "step": 31100 + }, + { + "epoch": 96.29629629629629, + "grad_norm": 0.26980897784233093, + "learning_rate": 1.8688271604938273e-06, + "loss": 0.8614867401123046, + "step": 31200 + }, + { + "epoch": 96.60493827160494, + "grad_norm": 0.25481465458869934, + "learning_rate": 1.7145061728395064e-06, + "loss": 0.8614888000488281, + "step": 31300 + }, + { + "epoch": 96.91358024691358, + "grad_norm": 0.2795570194721222, + "learning_rate": 1.5601851851851852e-06, + "loss": 0.8614127349853515, + "step": 31400 + }, + { + "epoch": 97.22222222222223, + "grad_norm": 0.2887301743030548, + "learning_rate": 1.4058641975308641e-06, + "loss": 0.8610345458984375, + "step": 31500 + }, + { + "epoch": 97.53086419753086, + "grad_norm": 0.28151342272758484, + "learning_rate": 1.2515432098765433e-06, + "loss": 0.8611799621582031, + "step": 31600 + }, + { + "epoch": 97.8395061728395, + "grad_norm": 0.2844570279121399, + "learning_rate": 1.0972222222222223e-06, + "loss": 0.8612938690185546, + "step": 31700 + }, + { + "epoch": 98.14814814814815, + "grad_norm": 0.28799548745155334, + "learning_rate": 9.429012345679012e-07, + "loss": 0.8612958526611328, + "step": 31800 + }, + { + "epoch": 98.45679012345678, + "grad_norm": 0.17849087715148926, + "learning_rate": 7.885802469135803e-07, + "loss": 0.8611792755126954, + "step": 31900 + }, + { + "epoch": 98.76543209876543, + "grad_norm": 0.2363658845424652, + "learning_rate": 6.342592592592592e-07, + "loss": 0.8614938354492188, + "step": 32000 + }, + { + "epoch": 99.07407407407408, + "grad_norm": 0.3181602358818054, + "learning_rate": 4.799382716049383e-07, + "loss": 0.8611763000488282, + "step": 32100 + }, + { + "epoch": 99.38271604938272, + "grad_norm": 0.23163554072380066, + "learning_rate": 3.271604938271605e-07, + "loss": 0.8610628509521484, + "step": 32200 + } + ], + "logging_steps": 100, + "max_steps": 32400, + "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": 2892228408115200.0, + "train_batch_size": 8, + "trial_name": null, + "trial_params": null +} diff --git a/timecost/c7/realtabformer/rtf-c7-20260429_070344/rtf_checkpoints/checkpoint-32200/training_args.bin b/timecost/c7/realtabformer/rtf-c7-20260429_070344/rtf_checkpoints/checkpoint-32200/training_args.bin new file mode 100644 index 0000000000000000000000000000000000000000..34d68dc0e0fe1c1f12a2e581dd1b166aa7178a9e --- /dev/null +++ b/timecost/c7/realtabformer/rtf-c7-20260429_070344/rtf_checkpoints/checkpoint-32200/training_args.bin @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:9e2cd88337d1d846c6918d2b3b63fa3e5c93f12fefc082497590da854a564607 +size 5201 diff --git a/timecost/c7/realtabformer/rtf-c7-20260429_070344/rtf_checkpoints/checkpoint-32300/config.json b/timecost/c7/realtabformer/rtf-c7-20260429_070344/rtf_checkpoints/checkpoint-32300/config.json new file mode 100644 index 0000000000000000000000000000000000000000..2f4b2de295e37af41a4d510862dce45d9dafa48a --- /dev/null +++ b/timecost/c7/realtabformer/rtf-c7-20260429_070344/rtf_checkpoints/checkpoint-32300/config.json @@ -0,0 +1,34 @@ +{ + "activation_function": "gelu_new", + "add_cross_attention": false, + "architectures": [ + "GPT2LMHeadModel" + ], + "attn_pdrop": 0.1, + "bos_token_id": 5, + "dtype": "float32", + "embd_pdrop": 0.1, + "eos_token_id": 6, + "initializer_range": 0.02, + "layer_norm_epsilon": 1e-05, + "model_type": "gpt2", + "n_embd": 768, + "n_head": 12, + "n_inner": null, + "n_layer": 6, + "n_positions": 1024, + "pad_token_id": null, + "reorder_and_upcast_attn": false, + "resid_pdrop": 0.1, + "scale_attn_by_inverse_layer_idx": false, + "scale_attn_weights": true, + "summary_activation": null, + "summary_first_dropout": 0.1, + "summary_proj_to_labels": true, + "summary_type": "cls_index", + "summary_use_proj": true, + "tie_word_embeddings": true, + "transformers_version": "5.5.3", + "use_cache": false, + "vocab_size": 43 +} diff --git a/timecost/c7/realtabformer/rtf-c7-20260429_070344/rtf_checkpoints/checkpoint-32300/generation_config.json b/timecost/c7/realtabformer/rtf-c7-20260429_070344/rtf_checkpoints/checkpoint-32300/generation_config.json new file mode 100644 index 0000000000000000000000000000000000000000..ffe89567780e75b5c22eade9be971483b9618f39 --- /dev/null +++ b/timecost/c7/realtabformer/rtf-c7-20260429_070344/rtf_checkpoints/checkpoint-32300/generation_config.json @@ -0,0 +1,9 @@ +{ + "_from_model_config": true, + "bos_token_id": 5, + "eos_token_id": 6, + "output_attentions": false, + "output_hidden_states": false, + "transformers_version": "5.5.3", + "use_cache": true +} diff --git a/timecost/c7/realtabformer/rtf-c7-20260429_070344/rtf_checkpoints/checkpoint-32300/model.safetensors b/timecost/c7/realtabformer/rtf-c7-20260429_070344/rtf_checkpoints/checkpoint-32300/model.safetensors new file mode 100644 index 0000000000000000000000000000000000000000..a7cc7d66923e54fb98cfd5aed729975fa2736c21 --- /dev/null +++ b/timecost/c7/realtabformer/rtf-c7-20260429_070344/rtf_checkpoints/checkpoint-32300/model.safetensors @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:825cfe2c44620e3cea5777c7017ff88bf5667cb94ff6151102a0f94f84c2b29f +size 173400520 diff --git a/timecost/c7/realtabformer/rtf-c7-20260429_070344/rtf_checkpoints/checkpoint-32300/optimizer.pt b/timecost/c7/realtabformer/rtf-c7-20260429_070344/rtf_checkpoints/checkpoint-32300/optimizer.pt new file mode 100644 index 0000000000000000000000000000000000000000..5e3d52d81fab979ed63e387260d64e1b579751fc --- /dev/null +++ b/timecost/c7/realtabformer/rtf-c7-20260429_070344/rtf_checkpoints/checkpoint-32300/optimizer.pt @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:083fcd08e1fdffc5078d1ee35d1944766cc7d6aeb249cac9a0e04b36ce37e3a4 +size 346850059 diff --git a/timecost/c7/realtabformer/rtf-c7-20260429_070344/rtf_checkpoints/checkpoint-32300/rng_state.pth b/timecost/c7/realtabformer/rtf-c7-20260429_070344/rtf_checkpoints/checkpoint-32300/rng_state.pth new file mode 100644 index 0000000000000000000000000000000000000000..f49a0a26915ef6517ad5c2e3e8e292243a61a8e2 --- /dev/null +++ b/timecost/c7/realtabformer/rtf-c7-20260429_070344/rtf_checkpoints/checkpoint-32300/rng_state.pth @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:4d63cef36262a542b89cff18f7f2d426161654beb1bcf51ec533dd7acf205a7e +size 14645 diff --git a/timecost/c7/realtabformer/rtf-c7-20260429_070344/rtf_checkpoints/checkpoint-32300/scaler.pt b/timecost/c7/realtabformer/rtf-c7-20260429_070344/rtf_checkpoints/checkpoint-32300/scaler.pt new file mode 100644 index 0000000000000000000000000000000000000000..710f3e478b760832c8ee96e4efd0591b71848bf2 --- /dev/null +++ b/timecost/c7/realtabformer/rtf-c7-20260429_070344/rtf_checkpoints/checkpoint-32300/scaler.pt @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:4d9de8140e1a89b746cde56befd089e15c299b2b58b5245135b5605a49f06b28 +size 1383 diff --git a/timecost/c7/realtabformer/rtf-c7-20260429_070344/rtf_checkpoints/checkpoint-32300/scheduler.pt b/timecost/c7/realtabformer/rtf-c7-20260429_070344/rtf_checkpoints/checkpoint-32300/scheduler.pt new file mode 100644 index 0000000000000000000000000000000000000000..469c7e0fd84887151b5414bf36e073b14ed47aef --- /dev/null +++ b/timecost/c7/realtabformer/rtf-c7-20260429_070344/rtf_checkpoints/checkpoint-32300/scheduler.pt @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:df973433c22a0446c89908162e002d0c26746596fc8f765a4d5e607c3aa70403 +size 1465 diff --git a/timecost/c7/realtabformer/rtf-c7-20260429_070344/rtf_checkpoints/checkpoint-32300/trainer_state.json b/timecost/c7/realtabformer/rtf-c7-20260429_070344/rtf_checkpoints/checkpoint-32300/trainer_state.json new file mode 100644 index 0000000000000000000000000000000000000000..d54d4c98436a683fa9916bdf11d8a09afc8c5c7e --- /dev/null +++ b/timecost/c7/realtabformer/rtf-c7-20260429_070344/rtf_checkpoints/checkpoint-32300/trainer_state.json @@ -0,0 +1,2295 @@ +{ + "best_global_step": null, + "best_metric": null, + "best_model_checkpoint": null, + "epoch": 99.69135802469135, + "eval_steps": 100, + "global_step": 32300, + "is_hyper_param_search": false, + "is_local_process_zero": true, + "is_world_process_zero": true, + "log_history": [ + { + "epoch": 0.30864197530864196, + "grad_norm": 0.5975016355514526, + "learning_rate": 4.9847222222222224e-05, + "loss": 1.1053435516357422, + "step": 100 + }, + { + "epoch": 0.6172839506172839, + "grad_norm": 0.4975835680961609, + "learning_rate": 4.96929012345679e-05, + "loss": 0.913399429321289, + "step": 200 + }, + { + "epoch": 0.9259259259259259, + "grad_norm": 0.5069450736045837, + "learning_rate": 4.9538580246913586e-05, + "loss": 0.9037506866455078, + "step": 300 + }, + { + "epoch": 1.2345679012345678, + "grad_norm": 0.3577662706375122, + "learning_rate": 4.9384259259259264e-05, + "loss": 0.8971150207519532, + "step": 400 + }, + { + "epoch": 1.5432098765432098, + "grad_norm": 0.37501809000968933, + "learning_rate": 4.922993827160494e-05, + "loss": 0.8930672454833984, + "step": 500 + }, + { + "epoch": 1.8518518518518519, + "grad_norm": 0.3230942487716675, + "learning_rate": 4.907561728395062e-05, + "loss": 0.8911088562011719, + "step": 600 + }, + { + "epoch": 2.1604938271604937, + "grad_norm": 0.31315380334854126, + "learning_rate": 4.89212962962963e-05, + "loss": 0.8870069122314453, + "step": 700 + }, + { + "epoch": 2.4691358024691357, + "grad_norm": 0.3408145606517792, + "learning_rate": 4.8766975308641975e-05, + "loss": 0.8845426177978516, + "step": 800 + }, + { + "epoch": 2.7777777777777777, + "grad_norm": 0.34649044275283813, + "learning_rate": 4.861265432098765e-05, + "loss": 0.8816167449951172, + "step": 900 + }, + { + "epoch": 3.0864197530864197, + "grad_norm": 0.2891448140144348, + "learning_rate": 4.845833333333334e-05, + "loss": 0.8816600799560547, + "step": 1000 + }, + { + "epoch": 3.3950617283950617, + "grad_norm": 0.3047502636909485, + "learning_rate": 4.8304012345679014e-05, + "loss": 0.8813356018066406, + "step": 1100 + }, + { + "epoch": 3.7037037037037037, + "grad_norm": 0.34682637453079224, + "learning_rate": 4.81496913580247e-05, + "loss": 0.8769812774658203, + "step": 1200 + }, + { + "epoch": 4.012345679012346, + "grad_norm": 0.3608556091785431, + "learning_rate": 4.7995370370370376e-05, + "loss": 0.8777651977539063, + "step": 1300 + }, + { + "epoch": 4.320987654320987, + "grad_norm": 0.3927426338195801, + "learning_rate": 4.7841049382716054e-05, + "loss": 0.8768961334228516, + "step": 1400 + }, + { + "epoch": 4.62962962962963, + "grad_norm": 0.2639325261116028, + "learning_rate": 4.768672839506173e-05, + "loss": 0.8781243133544921, + "step": 1500 + }, + { + "epoch": 4.938271604938271, + "grad_norm": 0.35398051142692566, + "learning_rate": 4.753240740740741e-05, + "loss": 0.87546630859375, + "step": 1600 + }, + { + "epoch": 5.246913580246914, + "grad_norm": 0.305637001991272, + "learning_rate": 4.737808641975309e-05, + "loss": 0.8746750640869141, + "step": 1700 + }, + { + "epoch": 5.555555555555555, + "grad_norm": 0.217234268784523, + "learning_rate": 4.7223765432098765e-05, + "loss": 0.8738501739501953, + "step": 1800 + }, + { + "epoch": 5.864197530864198, + "grad_norm": 0.3149331510066986, + "learning_rate": 4.706944444444445e-05, + "loss": 0.8732035064697266, + "step": 1900 + }, + { + "epoch": 6.172839506172839, + "grad_norm": 0.26609405875205994, + "learning_rate": 4.691512345679013e-05, + "loss": 0.8728971862792969, + "step": 2000 + }, + { + "epoch": 6.481481481481482, + "grad_norm": 0.31683775782585144, + "learning_rate": 4.6760802469135805e-05, + "loss": 0.8713655853271485, + "step": 2100 + }, + { + "epoch": 6.790123456790123, + "grad_norm": 0.34013745188713074, + "learning_rate": 4.660648148148148e-05, + "loss": 0.8744948577880859, + "step": 2200 + }, + { + "epoch": 7.098765432098766, + "grad_norm": 0.22860896587371826, + "learning_rate": 4.645216049382716e-05, + "loss": 0.8739882659912109, + "step": 2300 + }, + { + "epoch": 7.407407407407407, + "grad_norm": 0.37235602736473083, + "learning_rate": 4.629783950617284e-05, + "loss": 0.8726573944091797, + "step": 2400 + }, + { + "epoch": 7.716049382716049, + "grad_norm": 0.23996835947036743, + "learning_rate": 4.614351851851852e-05, + "loss": 0.8695323944091797, + "step": 2500 + }, + { + "epoch": 8.024691358024691, + "grad_norm": 0.27126339077949524, + "learning_rate": 4.59891975308642e-05, + "loss": 0.8710608673095703, + "step": 2600 + }, + { + "epoch": 8.333333333333334, + "grad_norm": 0.3054942190647125, + "learning_rate": 4.5834876543209884e-05, + "loss": 0.870329360961914, + "step": 2700 + }, + { + "epoch": 8.641975308641975, + "grad_norm": 0.32970622181892395, + "learning_rate": 4.568055555555556e-05, + "loss": 0.8703945922851563, + "step": 2800 + }, + { + "epoch": 8.950617283950617, + "grad_norm": 0.24803043901920319, + "learning_rate": 4.552623456790124e-05, + "loss": 0.8710511779785156, + "step": 2900 + }, + { + "epoch": 9.25925925925926, + "grad_norm": 0.4170224964618683, + "learning_rate": 4.537191358024692e-05, + "loss": 0.8694993591308594, + "step": 3000 + }, + { + "epoch": 9.567901234567902, + "grad_norm": 0.26911184191703796, + "learning_rate": 4.5217592592592595e-05, + "loss": 0.870486068725586, + "step": 3100 + }, + { + "epoch": 9.876543209876543, + "grad_norm": 0.30582156777381897, + "learning_rate": 4.506327160493827e-05, + "loss": 0.8719473266601563, + "step": 3200 + }, + { + "epoch": 10.185185185185185, + "grad_norm": 0.29516837000846863, + "learning_rate": 4.490895061728395e-05, + "loss": 0.8712838745117187, + "step": 3300 + }, + { + "epoch": 10.493827160493828, + "grad_norm": 0.28133177757263184, + "learning_rate": 4.475462962962963e-05, + "loss": 0.8699048614501953, + "step": 3400 + }, + { + "epoch": 10.802469135802468, + "grad_norm": 0.38596439361572266, + "learning_rate": 4.4600308641975306e-05, + "loss": 0.8712091064453125, + "step": 3500 + }, + { + "epoch": 11.11111111111111, + "grad_norm": 0.2777452766895294, + "learning_rate": 4.444598765432099e-05, + "loss": 0.8693663787841797, + "step": 3600 + }, + { + "epoch": 11.419753086419753, + "grad_norm": 0.4119755029678345, + "learning_rate": 4.429166666666667e-05, + "loss": 0.8681372833251954, + "step": 3700 + }, + { + "epoch": 11.728395061728396, + "grad_norm": 0.2371830940246582, + "learning_rate": 4.4137345679012346e-05, + "loss": 0.8699448394775391, + "step": 3800 + }, + { + "epoch": 12.037037037037036, + "grad_norm": 0.22597350180149078, + "learning_rate": 4.3983024691358023e-05, + "loss": 0.8695160675048829, + "step": 3900 + }, + { + "epoch": 12.345679012345679, + "grad_norm": 0.2682456970214844, + "learning_rate": 4.382870370370371e-05, + "loss": 0.8695050811767578, + "step": 4000 + }, + { + "epoch": 12.654320987654321, + "grad_norm": 0.29016727209091187, + "learning_rate": 4.3674382716049386e-05, + "loss": 0.8679987335205078, + "step": 4100 + }, + { + "epoch": 12.962962962962964, + "grad_norm": 0.26374146342277527, + "learning_rate": 4.352006172839506e-05, + "loss": 0.8693247222900391, + "step": 4200 + }, + { + "epoch": 13.271604938271604, + "grad_norm": 0.29962387681007385, + "learning_rate": 4.336574074074074e-05, + "loss": 0.8679438781738281, + "step": 4300 + }, + { + "epoch": 13.580246913580247, + "grad_norm": 0.29223865270614624, + "learning_rate": 4.3211419753086425e-05, + "loss": 0.8687114715576172, + "step": 4400 + }, + { + "epoch": 13.88888888888889, + "grad_norm": 0.37939226627349854, + "learning_rate": 4.30570987654321e-05, + "loss": 0.8680426025390625, + "step": 4500 + }, + { + "epoch": 14.197530864197532, + "grad_norm": 0.3423369526863098, + "learning_rate": 4.290277777777778e-05, + "loss": 0.8689276123046875, + "step": 4600 + }, + { + "epoch": 14.506172839506172, + "grad_norm": 0.36750486493110657, + "learning_rate": 4.274845679012346e-05, + "loss": 0.8679615783691407, + "step": 4700 + }, + { + "epoch": 14.814814814814815, + "grad_norm": 0.35079503059387207, + "learning_rate": 4.2594135802469136e-05, + "loss": 0.8678194427490235, + "step": 4800 + }, + { + "epoch": 15.123456790123457, + "grad_norm": 0.22617663443088531, + "learning_rate": 4.2439814814814814e-05, + "loss": 0.8699114990234375, + "step": 4900 + }, + { + "epoch": 15.432098765432098, + "grad_norm": 0.3365887999534607, + "learning_rate": 4.228549382716049e-05, + "loss": 0.8693661499023437, + "step": 5000 + }, + { + "epoch": 15.74074074074074, + "grad_norm": 0.29944780468940735, + "learning_rate": 4.213117283950617e-05, + "loss": 0.8680919647216797, + "step": 5100 + }, + { + "epoch": 16.049382716049383, + "grad_norm": 0.29136228561401367, + "learning_rate": 4.1976851851851854e-05, + "loss": 0.868043212890625, + "step": 5200 + }, + { + "epoch": 16.358024691358025, + "grad_norm": 0.24972350895404816, + "learning_rate": 4.182253086419753e-05, + "loss": 0.8676002502441407, + "step": 5300 + }, + { + "epoch": 16.666666666666668, + "grad_norm": 0.3150668442249298, + "learning_rate": 4.1668209876543216e-05, + "loss": 0.868660659790039, + "step": 5400 + }, + { + "epoch": 16.97530864197531, + "grad_norm": 0.3512415587902069, + "learning_rate": 4.1513888888888894e-05, + "loss": 0.8682049560546875, + "step": 5500 + }, + { + "epoch": 17.28395061728395, + "grad_norm": 0.3164934515953064, + "learning_rate": 4.135956790123457e-05, + "loss": 0.8676078033447265, + "step": 5600 + }, + { + "epoch": 17.59259259259259, + "grad_norm": 0.2696605324745178, + "learning_rate": 4.120524691358025e-05, + "loss": 0.8678233337402343, + "step": 5700 + }, + { + "epoch": 17.901234567901234, + "grad_norm": 0.345699280500412, + "learning_rate": 4.105092592592593e-05, + "loss": 0.8660729217529297, + "step": 5800 + }, + { + "epoch": 18.209876543209877, + "grad_norm": 0.2393321543931961, + "learning_rate": 4.0896604938271604e-05, + "loss": 0.86662109375, + "step": 5900 + }, + { + "epoch": 18.51851851851852, + "grad_norm": 0.23627376556396484, + "learning_rate": 4.074228395061729e-05, + "loss": 0.8684516906738281, + "step": 6000 + }, + { + "epoch": 18.82716049382716, + "grad_norm": 0.22598141431808472, + "learning_rate": 4.0587962962962966e-05, + "loss": 0.8676165771484375, + "step": 6100 + }, + { + "epoch": 19.135802469135804, + "grad_norm": 0.29334530234336853, + "learning_rate": 4.0433641975308644e-05, + "loss": 0.8662307739257813, + "step": 6200 + }, + { + "epoch": 19.444444444444443, + "grad_norm": 0.23827306926250458, + "learning_rate": 4.027932098765432e-05, + "loss": 0.8666460418701172, + "step": 6300 + }, + { + "epoch": 19.753086419753085, + "grad_norm": 0.29057374596595764, + "learning_rate": 4.0125e-05, + "loss": 0.8675463104248047, + "step": 6400 + }, + { + "epoch": 20.061728395061728, + "grad_norm": 0.3120971918106079, + "learning_rate": 3.997067901234568e-05, + "loss": 0.8672868347167969, + "step": 6500 + }, + { + "epoch": 20.37037037037037, + "grad_norm": 0.412092924118042, + "learning_rate": 3.9816358024691355e-05, + "loss": 0.8670984649658203, + "step": 6600 + }, + { + "epoch": 20.679012345679013, + "grad_norm": 0.2982257306575775, + "learning_rate": 3.966203703703704e-05, + "loss": 0.8685931396484375, + "step": 6700 + }, + { + "epoch": 20.987654320987655, + "grad_norm": 0.2703470289707184, + "learning_rate": 3.950771604938272e-05, + "loss": 0.8666371917724609, + "step": 6800 + }, + { + "epoch": 21.296296296296298, + "grad_norm": 0.3358808159828186, + "learning_rate": 3.93533950617284e-05, + "loss": 0.8664039611816406, + "step": 6900 + }, + { + "epoch": 21.604938271604937, + "grad_norm": 0.3047441244125366, + "learning_rate": 3.919907407407408e-05, + "loss": 0.8664222717285156, + "step": 7000 + }, + { + "epoch": 21.91358024691358, + "grad_norm": 0.28871631622314453, + "learning_rate": 3.904475308641976e-05, + "loss": 0.8676378631591797, + "step": 7100 + }, + { + "epoch": 22.22222222222222, + "grad_norm": 0.29110872745513916, + "learning_rate": 3.8890432098765435e-05, + "loss": 0.8660447692871094, + "step": 7200 + }, + { + "epoch": 22.530864197530864, + "grad_norm": 0.2692337930202484, + "learning_rate": 3.873611111111111e-05, + "loss": 0.8669923400878906, + "step": 7300 + }, + { + "epoch": 22.839506172839506, + "grad_norm": 0.31768998503685, + "learning_rate": 3.858179012345679e-05, + "loss": 0.8663272094726563, + "step": 7400 + }, + { + "epoch": 23.14814814814815, + "grad_norm": 0.22150367498397827, + "learning_rate": 3.842746913580247e-05, + "loss": 0.8668128967285156, + "step": 7500 + }, + { + "epoch": 23.45679012345679, + "grad_norm": 0.23608367145061493, + "learning_rate": 3.827314814814815e-05, + "loss": 0.8661857604980469, + "step": 7600 + }, + { + "epoch": 23.765432098765434, + "grad_norm": 0.23709823191165924, + "learning_rate": 3.811882716049383e-05, + "loss": 0.8668611145019531, + "step": 7700 + }, + { + "epoch": 24.074074074074073, + "grad_norm": 0.2794584333896637, + "learning_rate": 3.796450617283951e-05, + "loss": 0.8664863586425782, + "step": 7800 + }, + { + "epoch": 24.382716049382715, + "grad_norm": 0.35239988565444946, + "learning_rate": 3.7810185185185185e-05, + "loss": 0.8656664276123047, + "step": 7900 + }, + { + "epoch": 24.691358024691358, + "grad_norm": 0.3032480776309967, + "learning_rate": 3.765586419753086e-05, + "loss": 0.8664974212646485, + "step": 8000 + }, + { + "epoch": 25.0, + "grad_norm": 0.32895025610923767, + "learning_rate": 3.750154320987655e-05, + "loss": 0.8656834411621094, + "step": 8100 + }, + { + "epoch": 25.308641975308642, + "grad_norm": 0.24647651612758636, + "learning_rate": 3.7347222222222225e-05, + "loss": 0.8668187713623047, + "step": 8200 + }, + { + "epoch": 25.617283950617285, + "grad_norm": 0.3259798288345337, + "learning_rate": 3.71929012345679e-05, + "loss": 0.8659412384033203, + "step": 8300 + }, + { + "epoch": 25.925925925925927, + "grad_norm": 0.29342758655548096, + "learning_rate": 3.703858024691359e-05, + "loss": 0.865984115600586, + "step": 8400 + }, + { + "epoch": 26.234567901234566, + "grad_norm": 0.18561498820781708, + "learning_rate": 3.6884259259259265e-05, + "loss": 0.8656551361083984, + "step": 8500 + }, + { + "epoch": 26.54320987654321, + "grad_norm": 0.24412372708320618, + "learning_rate": 3.672993827160494e-05, + "loss": 0.8654991912841797, + "step": 8600 + }, + { + "epoch": 26.85185185185185, + "grad_norm": 0.2831413447856903, + "learning_rate": 3.657561728395062e-05, + "loss": 0.8658388519287109, + "step": 8700 + }, + { + "epoch": 27.160493827160494, + "grad_norm": 0.27400529384613037, + "learning_rate": 3.64212962962963e-05, + "loss": 0.8661294555664063, + "step": 8800 + }, + { + "epoch": 27.469135802469136, + "grad_norm": 0.30983632802963257, + "learning_rate": 3.6266975308641976e-05, + "loss": 0.866031265258789, + "step": 8900 + }, + { + "epoch": 27.77777777777778, + "grad_norm": 0.3088923990726471, + "learning_rate": 3.611265432098765e-05, + "loss": 0.8667101287841796, + "step": 9000 + }, + { + "epoch": 28.08641975308642, + "grad_norm": 0.23197945952415466, + "learning_rate": 3.595833333333333e-05, + "loss": 0.8657314300537109, + "step": 9100 + }, + { + "epoch": 28.395061728395063, + "grad_norm": 0.32310914993286133, + "learning_rate": 3.5804012345679015e-05, + "loss": 0.8657714080810547, + "step": 9200 + }, + { + "epoch": 28.703703703703702, + "grad_norm": 0.2674392759799957, + "learning_rate": 3.564969135802469e-05, + "loss": 0.8655484771728515, + "step": 9300 + }, + { + "epoch": 29.012345679012345, + "grad_norm": 0.25402772426605225, + "learning_rate": 3.549537037037037e-05, + "loss": 0.8671824645996093, + "step": 9400 + }, + { + "epoch": 29.320987654320987, + "grad_norm": 0.2903260886669159, + "learning_rate": 3.534104938271605e-05, + "loss": 0.8659280395507812, + "step": 9500 + }, + { + "epoch": 29.62962962962963, + "grad_norm": 0.2330218255519867, + "learning_rate": 3.518672839506173e-05, + "loss": 0.8649930572509765, + "step": 9600 + }, + { + "epoch": 29.938271604938272, + "grad_norm": 0.31311362981796265, + "learning_rate": 3.503240740740741e-05, + "loss": 0.865321044921875, + "step": 9700 + }, + { + "epoch": 30.246913580246915, + "grad_norm": 0.3377930223941803, + "learning_rate": 3.487808641975309e-05, + "loss": 0.8644564056396484, + "step": 9800 + }, + { + "epoch": 30.555555555555557, + "grad_norm": 0.3928042948246002, + "learning_rate": 3.4723765432098766e-05, + "loss": 0.8649266815185547, + "step": 9900 + }, + { + "epoch": 30.864197530864196, + "grad_norm": 0.2636756896972656, + "learning_rate": 3.456944444444445e-05, + "loss": 0.865054931640625, + "step": 10000 + }, + { + "epoch": 31.17283950617284, + "grad_norm": 0.28490859270095825, + "learning_rate": 3.441512345679013e-05, + "loss": 0.8649151611328125, + "step": 10100 + }, + { + "epoch": 31.48148148148148, + "grad_norm": 0.15659233927726746, + "learning_rate": 3.4260802469135806e-05, + "loss": 0.8644688415527344, + "step": 10200 + }, + { + "epoch": 31.790123456790123, + "grad_norm": 0.2705706059932709, + "learning_rate": 3.4106481481481484e-05, + "loss": 0.8652298736572266, + "step": 10300 + }, + { + "epoch": 32.098765432098766, + "grad_norm": 0.2109704315662384, + "learning_rate": 3.395216049382716e-05, + "loss": 0.8646073150634765, + "step": 10400 + }, + { + "epoch": 32.407407407407405, + "grad_norm": 0.4892992079257965, + "learning_rate": 3.379783950617284e-05, + "loss": 0.8661848449707031, + "step": 10500 + }, + { + "epoch": 32.71604938271605, + "grad_norm": 0.24907298386096954, + "learning_rate": 3.364351851851852e-05, + "loss": 0.8667823028564453, + "step": 10600 + }, + { + "epoch": 33.02469135802469, + "grad_norm": 0.252615749835968, + "learning_rate": 3.3489197530864194e-05, + "loss": 0.8658191680908203, + "step": 10700 + }, + { + "epoch": 33.333333333333336, + "grad_norm": 0.2954252362251282, + "learning_rate": 3.333487654320988e-05, + "loss": 0.8650070190429687, + "step": 10800 + }, + { + "epoch": 33.641975308641975, + "grad_norm": 0.25497448444366455, + "learning_rate": 3.3180555555555556e-05, + "loss": 0.8645931243896484, + "step": 10900 + }, + { + "epoch": 33.95061728395062, + "grad_norm": 0.21472449600696564, + "learning_rate": 3.3026234567901234e-05, + "loss": 0.8647118377685546, + "step": 11000 + }, + { + "epoch": 34.25925925925926, + "grad_norm": 0.2599078118801117, + "learning_rate": 3.287191358024692e-05, + "loss": 0.8644834136962891, + "step": 11100 + }, + { + "epoch": 34.5679012345679, + "grad_norm": 0.22373680770397186, + "learning_rate": 3.2717592592592596e-05, + "loss": 0.8649051666259766, + "step": 11200 + }, + { + "epoch": 34.876543209876544, + "grad_norm": 0.26835867762565613, + "learning_rate": 3.2563271604938274e-05, + "loss": 0.8655126953125, + "step": 11300 + }, + { + "epoch": 35.18518518518518, + "grad_norm": 0.27637186646461487, + "learning_rate": 3.240895061728395e-05, + "loss": 0.8649341583251953, + "step": 11400 + }, + { + "epoch": 35.49382716049383, + "grad_norm": 0.24539203941822052, + "learning_rate": 3.225462962962963e-05, + "loss": 0.8642951202392578, + "step": 11500 + }, + { + "epoch": 35.80246913580247, + "grad_norm": 0.237693190574646, + "learning_rate": 3.210030864197531e-05, + "loss": 0.8649242401123047, + "step": 11600 + }, + { + "epoch": 36.111111111111114, + "grad_norm": 0.31651604175567627, + "learning_rate": 3.194598765432099e-05, + "loss": 0.8645661926269531, + "step": 11700 + }, + { + "epoch": 36.41975308641975, + "grad_norm": 0.2650340497493744, + "learning_rate": 3.179166666666667e-05, + "loss": 0.8651156616210938, + "step": 11800 + }, + { + "epoch": 36.72839506172839, + "grad_norm": 0.25851109623908997, + "learning_rate": 3.163734567901235e-05, + "loss": 0.8652816772460937, + "step": 11900 + }, + { + "epoch": 37.03703703703704, + "grad_norm": 0.32711413502693176, + "learning_rate": 3.1483024691358025e-05, + "loss": 0.8652924346923828, + "step": 12000 + }, + { + "epoch": 37.34567901234568, + "grad_norm": 0.3487214148044586, + "learning_rate": 3.1330246913580246e-05, + "loss": 0.8653363037109375, + "step": 12100 + }, + { + "epoch": 37.65432098765432, + "grad_norm": 0.19253982603549957, + "learning_rate": 3.1175925925925924e-05, + "loss": 0.864839859008789, + "step": 12200 + }, + { + "epoch": 37.96296296296296, + "grad_norm": 0.3058128356933594, + "learning_rate": 3.102160493827161e-05, + "loss": 0.8642467498779297, + "step": 12300 + }, + { + "epoch": 38.27160493827161, + "grad_norm": 0.30015528202056885, + "learning_rate": 3.0867283950617286e-05, + "loss": 0.8649742126464843, + "step": 12400 + }, + { + "epoch": 38.58024691358025, + "grad_norm": 0.33380067348480225, + "learning_rate": 3.0712962962962964e-05, + "loss": 0.8651032257080078, + "step": 12500 + }, + { + "epoch": 38.888888888888886, + "grad_norm": 0.36329004168510437, + "learning_rate": 3.055864197530864e-05, + "loss": 0.8648841857910157, + "step": 12600 + }, + { + "epoch": 39.19753086419753, + "grad_norm": 0.24460196495056152, + "learning_rate": 3.0404320987654322e-05, + "loss": 0.864749755859375, + "step": 12700 + }, + { + "epoch": 39.50617283950617, + "grad_norm": 0.2373257279396057, + "learning_rate": 3.025e-05, + "loss": 0.8641365051269532, + "step": 12800 + }, + { + "epoch": 39.81481481481482, + "grad_norm": 0.30177298188209534, + "learning_rate": 3.0095679012345678e-05, + "loss": 0.8651829528808593, + "step": 12900 + }, + { + "epoch": 40.123456790123456, + "grad_norm": 0.28286585211753845, + "learning_rate": 2.994135802469136e-05, + "loss": 0.8650211334228516, + "step": 13000 + }, + { + "epoch": 40.4320987654321, + "grad_norm": 0.2545726001262665, + "learning_rate": 2.978703703703704e-05, + "loss": 0.8654981231689454, + "step": 13100 + }, + { + "epoch": 40.74074074074074, + "grad_norm": 0.23175671696662903, + "learning_rate": 2.963271604938272e-05, + "loss": 0.8643350219726562, + "step": 13200 + }, + { + "epoch": 41.04938271604938, + "grad_norm": 0.2642582952976227, + "learning_rate": 2.94783950617284e-05, + "loss": 0.8648191070556641, + "step": 13300 + }, + { + "epoch": 41.358024691358025, + "grad_norm": 0.20592033863067627, + "learning_rate": 2.9324074074074076e-05, + "loss": 0.8642449951171876, + "step": 13400 + }, + { + "epoch": 41.666666666666664, + "grad_norm": 0.29046180844306946, + "learning_rate": 2.9169753086419754e-05, + "loss": 0.8642656707763672, + "step": 13500 + }, + { + "epoch": 41.97530864197531, + "grad_norm": 0.26292547583580017, + "learning_rate": 2.9015432098765432e-05, + "loss": 0.8639488220214844, + "step": 13600 + }, + { + "epoch": 42.28395061728395, + "grad_norm": 0.297783225774765, + "learning_rate": 2.886111111111111e-05, + "loss": 0.864585189819336, + "step": 13700 + }, + { + "epoch": 42.592592592592595, + "grad_norm": 0.2444617748260498, + "learning_rate": 2.870679012345679e-05, + "loss": 0.8649152374267578, + "step": 13800 + }, + { + "epoch": 42.901234567901234, + "grad_norm": 0.2831110656261444, + "learning_rate": 2.855246913580247e-05, + "loss": 0.8645712280273438, + "step": 13900 + }, + { + "epoch": 43.20987654320987, + "grad_norm": 0.2567242980003357, + "learning_rate": 2.8398148148148153e-05, + "loss": 0.8638491058349609, + "step": 14000 + }, + { + "epoch": 43.51851851851852, + "grad_norm": 0.2865658104419708, + "learning_rate": 2.824537037037037e-05, + "loss": 0.8642730712890625, + "step": 14100 + }, + { + "epoch": 43.82716049382716, + "grad_norm": 0.298484742641449, + "learning_rate": 2.8091049382716052e-05, + "loss": 0.8649552917480469, + "step": 14200 + }, + { + "epoch": 44.135802469135804, + "grad_norm": 0.28939852118492126, + "learning_rate": 2.793672839506173e-05, + "loss": 0.8639812469482422, + "step": 14300 + }, + { + "epoch": 44.44444444444444, + "grad_norm": 0.3122703433036804, + "learning_rate": 2.7782407407407407e-05, + "loss": 0.8637904357910157, + "step": 14400 + }, + { + "epoch": 44.75308641975309, + "grad_norm": 0.2748583257198334, + "learning_rate": 2.7628086419753085e-05, + "loss": 0.8642880249023438, + "step": 14500 + }, + { + "epoch": 45.06172839506173, + "grad_norm": 0.2639121115207672, + "learning_rate": 2.747376543209877e-05, + "loss": 0.8640217590332031, + "step": 14600 + }, + { + "epoch": 45.370370370370374, + "grad_norm": 0.2939169406890869, + "learning_rate": 2.7319444444444447e-05, + "loss": 0.8636822509765625, + "step": 14700 + }, + { + "epoch": 45.67901234567901, + "grad_norm": 0.28234273195266724, + "learning_rate": 2.7165123456790125e-05, + "loss": 0.8640520477294922, + "step": 14800 + }, + { + "epoch": 45.98765432098765, + "grad_norm": 0.3247532844543457, + "learning_rate": 2.7010802469135806e-05, + "loss": 0.8645074462890625, + "step": 14900 + }, + { + "epoch": 46.2962962962963, + "grad_norm": 0.17439720034599304, + "learning_rate": 2.6856481481481484e-05, + "loss": 0.86478759765625, + "step": 15000 + }, + { + "epoch": 46.60493827160494, + "grad_norm": 0.21647287905216217, + "learning_rate": 2.670216049382716e-05, + "loss": 0.8639440155029297, + "step": 15100 + }, + { + "epoch": 46.91358024691358, + "grad_norm": 0.22848644852638245, + "learning_rate": 2.654783950617284e-05, + "loss": 0.8637759399414062, + "step": 15200 + }, + { + "epoch": 47.22222222222222, + "grad_norm": 0.2585737407207489, + "learning_rate": 2.6393518518518517e-05, + "loss": 0.8639788055419921, + "step": 15300 + }, + { + "epoch": 47.53086419753087, + "grad_norm": 0.3228673040866852, + "learning_rate": 2.62391975308642e-05, + "loss": 0.8634998321533203, + "step": 15400 + }, + { + "epoch": 47.839506172839506, + "grad_norm": 0.19199813902378082, + "learning_rate": 2.608487654320988e-05, + "loss": 0.8637458038330078, + "step": 15500 + }, + { + "epoch": 48.148148148148145, + "grad_norm": 0.25434640049934387, + "learning_rate": 2.5930555555555556e-05, + "loss": 0.8639579010009766, + "step": 15600 + }, + { + "epoch": 48.45679012345679, + "grad_norm": 0.2062629610300064, + "learning_rate": 2.5776234567901237e-05, + "loss": 0.8633383941650391, + "step": 15700 + }, + { + "epoch": 48.76543209876543, + "grad_norm": 0.28273260593414307, + "learning_rate": 2.5621913580246915e-05, + "loss": 0.8634058380126953, + "step": 15800 + }, + { + "epoch": 49.074074074074076, + "grad_norm": 0.25794675946235657, + "learning_rate": 2.5467592592592593e-05, + "loss": 0.8644215393066407, + "step": 15900 + }, + { + "epoch": 49.382716049382715, + "grad_norm": 0.2801361382007599, + "learning_rate": 2.531327160493827e-05, + "loss": 0.8637371826171875, + "step": 16000 + }, + { + "epoch": 49.69135802469136, + "grad_norm": 0.31594523787498474, + "learning_rate": 2.51604938271605e-05, + "loss": 0.8638718414306641, + "step": 16100 + }, + { + "epoch": 50.0, + "grad_norm": 0.1785411238670349, + "learning_rate": 2.5006172839506177e-05, + "loss": 0.8638040161132813, + "step": 16200 + }, + { + "epoch": 50.30864197530864, + "grad_norm": 0.23965902626514435, + "learning_rate": 2.4851851851851854e-05, + "loss": 0.8634780883789063, + "step": 16300 + }, + { + "epoch": 50.617283950617285, + "grad_norm": 0.20226578414440155, + "learning_rate": 2.4697530864197532e-05, + "loss": 0.8635775756835937, + "step": 16400 + }, + { + "epoch": 50.925925925925924, + "grad_norm": 0.26240015029907227, + "learning_rate": 2.454320987654321e-05, + "loss": 0.8634452819824219, + "step": 16500 + }, + { + "epoch": 51.23456790123457, + "grad_norm": 0.31871360540390015, + "learning_rate": 2.4388888888888887e-05, + "loss": 0.8634230041503906, + "step": 16600 + }, + { + "epoch": 51.54320987654321, + "grad_norm": 0.28414225578308105, + "learning_rate": 2.423456790123457e-05, + "loss": 0.863424072265625, + "step": 16700 + }, + { + "epoch": 51.851851851851855, + "grad_norm": 0.25372815132141113, + "learning_rate": 2.408024691358025e-05, + "loss": 0.8632637023925781, + "step": 16800 + }, + { + "epoch": 52.160493827160494, + "grad_norm": 0.2601035237312317, + "learning_rate": 2.3925925925925927e-05, + "loss": 0.8637233734130859, + "step": 16900 + }, + { + "epoch": 52.46913580246913, + "grad_norm": 0.15456737577915192, + "learning_rate": 2.3771604938271605e-05, + "loss": 0.8640314483642578, + "step": 17000 + }, + { + "epoch": 52.77777777777778, + "grad_norm": 0.2598564326763153, + "learning_rate": 2.3617283950617286e-05, + "loss": 0.8640044403076171, + "step": 17100 + }, + { + "epoch": 53.08641975308642, + "grad_norm": 0.22886838018894196, + "learning_rate": 2.3462962962962964e-05, + "loss": 0.8635028076171875, + "step": 17200 + }, + { + "epoch": 53.39506172839506, + "grad_norm": 0.2388191968202591, + "learning_rate": 2.330864197530864e-05, + "loss": 0.8633686828613282, + "step": 17300 + }, + { + "epoch": 53.7037037037037, + "grad_norm": 0.18569715321063995, + "learning_rate": 2.3154320987654322e-05, + "loss": 0.8634825897216797, + "step": 17400 + }, + { + "epoch": 54.01234567901235, + "grad_norm": 0.23340563476085663, + "learning_rate": 2.3000000000000003e-05, + "loss": 0.8637994384765625, + "step": 17500 + }, + { + "epoch": 54.32098765432099, + "grad_norm": 0.2481815665960312, + "learning_rate": 2.284567901234568e-05, + "loss": 0.8632342529296875, + "step": 17600 + }, + { + "epoch": 54.629629629629626, + "grad_norm": 0.2559766173362732, + "learning_rate": 2.269135802469136e-05, + "loss": 0.8636701202392578, + "step": 17700 + }, + { + "epoch": 54.93827160493827, + "grad_norm": 0.4377776086330414, + "learning_rate": 2.2537037037037036e-05, + "loss": 0.8633976745605468, + "step": 17800 + }, + { + "epoch": 55.24691358024691, + "grad_norm": 0.26731622219085693, + "learning_rate": 2.2382716049382718e-05, + "loss": 0.8637456512451172, + "step": 17900 + }, + { + "epoch": 55.55555555555556, + "grad_norm": 0.25528597831726074, + "learning_rate": 2.2228395061728395e-05, + "loss": 0.8630653381347656, + "step": 18000 + }, + { + "epoch": 55.864197530864196, + "grad_norm": 0.3228375315666199, + "learning_rate": 2.2075617283950617e-05, + "loss": 0.8641485595703124, + "step": 18100 + }, + { + "epoch": 56.17283950617284, + "grad_norm": 0.3410342037677765, + "learning_rate": 2.1921296296296298e-05, + "loss": 0.8628273773193359, + "step": 18200 + }, + { + "epoch": 56.48148148148148, + "grad_norm": 0.27824917435646057, + "learning_rate": 2.1766975308641976e-05, + "loss": 0.8632877349853516, + "step": 18300 + }, + { + "epoch": 56.79012345679013, + "grad_norm": 0.29218852519989014, + "learning_rate": 2.1612654320987653e-05, + "loss": 0.8634963989257812, + "step": 18400 + }, + { + "epoch": 57.098765432098766, + "grad_norm": 0.26962971687316895, + "learning_rate": 2.1458333333333334e-05, + "loss": 0.8631212615966797, + "step": 18500 + }, + { + "epoch": 57.407407407407405, + "grad_norm": 0.31703895330429077, + "learning_rate": 2.1304012345679015e-05, + "loss": 0.8632781219482422, + "step": 18600 + }, + { + "epoch": 57.71604938271605, + "grad_norm": 0.32334306836128235, + "learning_rate": 2.1149691358024693e-05, + "loss": 0.8634398651123046, + "step": 18700 + }, + { + "epoch": 58.02469135802469, + "grad_norm": 0.2593790292739868, + "learning_rate": 2.099537037037037e-05, + "loss": 0.8636258697509765, + "step": 18800 + }, + { + "epoch": 58.333333333333336, + "grad_norm": 0.2949954569339752, + "learning_rate": 2.084104938271605e-05, + "loss": 0.8629860687255859, + "step": 18900 + }, + { + "epoch": 58.641975308641975, + "grad_norm": 0.23345129191875458, + "learning_rate": 2.068672839506173e-05, + "loss": 0.8632596588134765, + "step": 19000 + }, + { + "epoch": 58.95061728395062, + "grad_norm": 0.3483967185020447, + "learning_rate": 2.0532407407407407e-05, + "loss": 0.8632754516601563, + "step": 19100 + }, + { + "epoch": 59.25925925925926, + "grad_norm": 0.24414049088954926, + "learning_rate": 2.0378086419753088e-05, + "loss": 0.863308334350586, + "step": 19200 + }, + { + "epoch": 59.5679012345679, + "grad_norm": 0.22884564101696014, + "learning_rate": 2.0223765432098766e-05, + "loss": 0.8630153656005859, + "step": 19300 + }, + { + "epoch": 59.876543209876544, + "grad_norm": 0.293367862701416, + "learning_rate": 2.0069444444444447e-05, + "loss": 0.8631407165527344, + "step": 19400 + }, + { + "epoch": 60.18518518518518, + "grad_norm": 0.24008184671401978, + "learning_rate": 1.9915123456790125e-05, + "loss": 0.8633984375, + "step": 19500 + }, + { + "epoch": 60.49382716049383, + "grad_norm": 0.2940938472747803, + "learning_rate": 1.9760802469135802e-05, + "loss": 0.8634149932861328, + "step": 19600 + }, + { + "epoch": 60.80246913580247, + "grad_norm": 0.24539810419082642, + "learning_rate": 1.960648148148148e-05, + "loss": 0.8639472961425781, + "step": 19700 + }, + { + "epoch": 61.111111111111114, + "grad_norm": 0.2464188188314438, + "learning_rate": 1.945216049382716e-05, + "loss": 0.8634198760986328, + "step": 19800 + }, + { + "epoch": 61.41975308641975, + "grad_norm": 0.250593900680542, + "learning_rate": 1.9297839506172842e-05, + "loss": 0.8628058624267578, + "step": 19900 + }, + { + "epoch": 61.72839506172839, + "grad_norm": 0.25289106369018555, + "learning_rate": 1.914351851851852e-05, + "loss": 0.862940673828125, + "step": 20000 + }, + { + "epoch": 62.03703703703704, + "grad_norm": 0.270373672246933, + "learning_rate": 1.899074074074074e-05, + "loss": 0.8629447937011718, + "step": 20100 + }, + { + "epoch": 62.34567901234568, + "grad_norm": 0.2208729088306427, + "learning_rate": 1.883641975308642e-05, + "loss": 0.86260498046875, + "step": 20200 + }, + { + "epoch": 62.65432098765432, + "grad_norm": 0.20749305188655853, + "learning_rate": 1.86820987654321e-05, + "loss": 0.8630132293701172, + "step": 20300 + }, + { + "epoch": 62.96296296296296, + "grad_norm": 0.29507532715797424, + "learning_rate": 1.852777777777778e-05, + "loss": 0.8628247833251953, + "step": 20400 + }, + { + "epoch": 63.27160493827161, + "grad_norm": 0.3076235055923462, + "learning_rate": 1.837345679012346e-05, + "loss": 0.863165512084961, + "step": 20500 + }, + { + "epoch": 63.58024691358025, + "grad_norm": 0.25332000851631165, + "learning_rate": 1.8219135802469137e-05, + "loss": 0.8626132202148438, + "step": 20600 + }, + { + "epoch": 63.888888888888886, + "grad_norm": 0.22742706537246704, + "learning_rate": 1.8064814814814814e-05, + "loss": 0.8633429718017578, + "step": 20700 + }, + { + "epoch": 64.19753086419753, + "grad_norm": 0.24907511472702026, + "learning_rate": 1.7910493827160495e-05, + "loss": 0.8628691864013672, + "step": 20800 + }, + { + "epoch": 64.50617283950618, + "grad_norm": 0.37986981868743896, + "learning_rate": 1.7756172839506173e-05, + "loss": 0.862381591796875, + "step": 20900 + }, + { + "epoch": 64.81481481481481, + "grad_norm": 0.26957404613494873, + "learning_rate": 1.7601851851851854e-05, + "loss": 0.8621443176269531, + "step": 21000 + }, + { + "epoch": 65.12345679012346, + "grad_norm": 0.21372266113758087, + "learning_rate": 1.7447530864197532e-05, + "loss": 0.8624749755859376, + "step": 21100 + }, + { + "epoch": 65.4320987654321, + "grad_norm": 0.23659591376781464, + "learning_rate": 1.729320987654321e-05, + "loss": 0.862855453491211, + "step": 21200 + }, + { + "epoch": 65.74074074074075, + "grad_norm": 0.2516464591026306, + "learning_rate": 1.713888888888889e-05, + "loss": 0.8628866577148437, + "step": 21300 + }, + { + "epoch": 66.04938271604938, + "grad_norm": 0.23080387711524963, + "learning_rate": 1.698456790123457e-05, + "loss": 0.8628789520263672, + "step": 21400 + }, + { + "epoch": 66.35802469135803, + "grad_norm": 0.24531495571136475, + "learning_rate": 1.6830246913580246e-05, + "loss": 0.8624163818359375, + "step": 21500 + }, + { + "epoch": 66.66666666666667, + "grad_norm": 0.3036033809185028, + "learning_rate": 1.6675925925925927e-05, + "loss": 0.8630258178710938, + "step": 21600 + }, + { + "epoch": 66.9753086419753, + "grad_norm": 0.24009738862514496, + "learning_rate": 1.6521604938271608e-05, + "loss": 0.8635572814941406, + "step": 21700 + }, + { + "epoch": 67.28395061728395, + "grad_norm": 0.2536623477935791, + "learning_rate": 1.6367283950617286e-05, + "loss": 0.8623932647705078, + "step": 21800 + }, + { + "epoch": 67.5925925925926, + "grad_norm": 0.28109127283096313, + "learning_rate": 1.6212962962962964e-05, + "loss": 0.8624723052978516, + "step": 21900 + }, + { + "epoch": 67.90123456790124, + "grad_norm": 0.2185950130224228, + "learning_rate": 1.605864197530864e-05, + "loss": 0.8623596954345704, + "step": 22000 + }, + { + "epoch": 68.20987654320987, + "grad_norm": 0.33554041385650635, + "learning_rate": 1.5905864197530866e-05, + "loss": 0.8626500701904297, + "step": 22100 + }, + { + "epoch": 68.51851851851852, + "grad_norm": 0.2552665174007416, + "learning_rate": 1.5751543209876544e-05, + "loss": 0.8622700500488282, + "step": 22200 + }, + { + "epoch": 68.82716049382717, + "grad_norm": 0.3290879726409912, + "learning_rate": 1.5597222222222225e-05, + "loss": 0.8628783416748047, + "step": 22300 + }, + { + "epoch": 69.1358024691358, + "grad_norm": 0.23781687021255493, + "learning_rate": 1.5442901234567903e-05, + "loss": 0.8625830841064454, + "step": 22400 + }, + { + "epoch": 69.44444444444444, + "grad_norm": 0.29894009232521057, + "learning_rate": 1.528858024691358e-05, + "loss": 0.8624604034423828, + "step": 22500 + }, + { + "epoch": 69.75308641975309, + "grad_norm": 0.28855380415916443, + "learning_rate": 1.513425925925926e-05, + "loss": 0.8624363708496093, + "step": 22600 + }, + { + "epoch": 70.06172839506173, + "grad_norm": 0.30909860134124756, + "learning_rate": 1.497993827160494e-05, + "loss": 0.8625530242919922, + "step": 22700 + }, + { + "epoch": 70.37037037037037, + "grad_norm": 0.25948941707611084, + "learning_rate": 1.4825617283950618e-05, + "loss": 0.8629596710205079, + "step": 22800 + }, + { + "epoch": 70.67901234567901, + "grad_norm": 0.23436062037944794, + "learning_rate": 1.4671296296296296e-05, + "loss": 0.8624345397949219, + "step": 22900 + }, + { + "epoch": 70.98765432098766, + "grad_norm": 0.22997359931468964, + "learning_rate": 1.4516975308641975e-05, + "loss": 0.8627075958251953, + "step": 23000 + }, + { + "epoch": 71.29629629629629, + "grad_norm": 0.25879642367362976, + "learning_rate": 1.4362654320987657e-05, + "loss": 0.862459716796875, + "step": 23100 + }, + { + "epoch": 71.60493827160494, + "grad_norm": 0.2785871624946594, + "learning_rate": 1.4208333333333334e-05, + "loss": 0.8629904937744141, + "step": 23200 + }, + { + "epoch": 71.91358024691358, + "grad_norm": 0.23828476667404175, + "learning_rate": 1.4054012345679014e-05, + "loss": 0.8625855255126953, + "step": 23300 + }, + { + "epoch": 72.22222222222223, + "grad_norm": 0.28304004669189453, + "learning_rate": 1.3899691358024691e-05, + "loss": 0.8623751068115234, + "step": 23400 + }, + { + "epoch": 72.53086419753086, + "grad_norm": 0.35052117705345154, + "learning_rate": 1.3745370370370372e-05, + "loss": 0.8628295135498046, + "step": 23500 + }, + { + "epoch": 72.8395061728395, + "grad_norm": 0.21472153067588806, + "learning_rate": 1.359104938271605e-05, + "loss": 0.862393798828125, + "step": 23600 + }, + { + "epoch": 73.14814814814815, + "grad_norm": 0.22292311489582062, + "learning_rate": 1.343672839506173e-05, + "loss": 0.8621687316894531, + "step": 23700 + }, + { + "epoch": 73.45679012345678, + "grad_norm": 0.2587008476257324, + "learning_rate": 1.3282407407407407e-05, + "loss": 0.8623291778564454, + "step": 23800 + }, + { + "epoch": 73.76543209876543, + "grad_norm": 0.2771637439727783, + "learning_rate": 1.3128086419753088e-05, + "loss": 0.8624784088134766, + "step": 23900 + }, + { + "epoch": 74.07407407407408, + "grad_norm": 0.2332049012184143, + "learning_rate": 1.2973765432098766e-05, + "loss": 0.8628304290771485, + "step": 24000 + }, + { + "epoch": 74.38271604938272, + "grad_norm": 0.18202383816242218, + "learning_rate": 1.2820987654320987e-05, + "loss": 0.8623355102539062, + "step": 24100 + }, + { + "epoch": 74.69135802469135, + "grad_norm": 0.25001880526542664, + "learning_rate": 1.2666666666666668e-05, + "loss": 0.8625141906738282, + "step": 24200 + }, + { + "epoch": 75.0, + "grad_norm": 0.25027912855148315, + "learning_rate": 1.2512345679012346e-05, + "loss": 0.8624292755126953, + "step": 24300 + }, + { + "epoch": 75.30864197530865, + "grad_norm": 0.2614375054836273, + "learning_rate": 1.2358024691358026e-05, + "loss": 0.8622071838378906, + "step": 24400 + }, + { + "epoch": 75.61728395061728, + "grad_norm": 0.23685692250728607, + "learning_rate": 1.2203703703703705e-05, + "loss": 0.862458724975586, + "step": 24500 + }, + { + "epoch": 75.92592592592592, + "grad_norm": 0.2700103223323822, + "learning_rate": 1.2049382716049383e-05, + "loss": 0.8620365905761719, + "step": 24600 + }, + { + "epoch": 76.23456790123457, + "grad_norm": 0.28203874826431274, + "learning_rate": 1.1895061728395062e-05, + "loss": 0.8621501159667969, + "step": 24700 + }, + { + "epoch": 76.54320987654322, + "grad_norm": 0.2746220827102661, + "learning_rate": 1.1740740740740741e-05, + "loss": 0.8624026489257812, + "step": 24800 + }, + { + "epoch": 76.85185185185185, + "grad_norm": 0.30292582511901855, + "learning_rate": 1.158641975308642e-05, + "loss": 0.862785873413086, + "step": 24900 + }, + { + "epoch": 77.1604938271605, + "grad_norm": 0.2562635540962219, + "learning_rate": 1.1432098765432098e-05, + "loss": 0.8624921417236329, + "step": 25000 + }, + { + "epoch": 77.46913580246914, + "grad_norm": 0.27666226029396057, + "learning_rate": 1.127777777777778e-05, + "loss": 0.8622743988037109, + "step": 25100 + }, + { + "epoch": 77.77777777777777, + "grad_norm": 0.2963859438896179, + "learning_rate": 1.1123456790123457e-05, + "loss": 0.8626934814453125, + "step": 25200 + }, + { + "epoch": 78.08641975308642, + "grad_norm": 0.2593159079551697, + "learning_rate": 1.0969135802469137e-05, + "loss": 0.8621681976318359, + "step": 25300 + }, + { + "epoch": 78.39506172839506, + "grad_norm": 0.2810990810394287, + "learning_rate": 1.0814814814814814e-05, + "loss": 0.8621713256835938, + "step": 25400 + }, + { + "epoch": 78.70370370370371, + "grad_norm": 0.2808496654033661, + "learning_rate": 1.0660493827160495e-05, + "loss": 0.8622039031982421, + "step": 25500 + }, + { + "epoch": 79.01234567901234, + "grad_norm": 0.2452424019575119, + "learning_rate": 1.0506172839506173e-05, + "loss": 0.8625334930419922, + "step": 25600 + }, + { + "epoch": 79.32098765432099, + "grad_norm": 0.2880192697048187, + "learning_rate": 1.0351851851851852e-05, + "loss": 0.8622465515136719, + "step": 25700 + }, + { + "epoch": 79.62962962962963, + "grad_norm": 0.24877040088176727, + "learning_rate": 1.0197530864197532e-05, + "loss": 0.8621809387207031, + "step": 25800 + }, + { + "epoch": 79.93827160493827, + "grad_norm": 0.3088701069355011, + "learning_rate": 1.0043209876543211e-05, + "loss": 0.8624029541015625, + "step": 25900 + }, + { + "epoch": 80.24691358024691, + "grad_norm": 0.19949986040592194, + "learning_rate": 9.888888888888889e-06, + "loss": 0.8618679809570312, + "step": 26000 + }, + { + "epoch": 80.55555555555556, + "grad_norm": 0.3270089626312256, + "learning_rate": 9.734567901234568e-06, + "loss": 0.8620806884765625, + "step": 26100 + }, + { + "epoch": 80.8641975308642, + "grad_norm": 0.24055376648902893, + "learning_rate": 9.581790123456791e-06, + "loss": 0.861843490600586, + "step": 26200 + }, + { + "epoch": 81.17283950617283, + "grad_norm": 0.28812849521636963, + "learning_rate": 9.42746913580247e-06, + "loss": 0.8618939971923828, + "step": 26300 + }, + { + "epoch": 81.48148148148148, + "grad_norm": 0.18239010870456696, + "learning_rate": 9.273148148148149e-06, + "loss": 0.8618624114990234, + "step": 26400 + }, + { + "epoch": 81.79012345679013, + "grad_norm": 0.2698865234851837, + "learning_rate": 9.118827160493828e-06, + "loss": 0.8617278289794922, + "step": 26500 + }, + { + "epoch": 82.09876543209876, + "grad_norm": 0.2671756446361542, + "learning_rate": 8.964506172839507e-06, + "loss": 0.8620853424072266, + "step": 26600 + }, + { + "epoch": 82.4074074074074, + "grad_norm": 0.20211544632911682, + "learning_rate": 8.810185185185185e-06, + "loss": 0.8620963287353516, + "step": 26700 + }, + { + "epoch": 82.71604938271605, + "grad_norm": 0.3215954899787903, + "learning_rate": 8.655864197530864e-06, + "loss": 0.8621923065185547, + "step": 26800 + }, + { + "epoch": 83.0246913580247, + "grad_norm": 0.2056690901517868, + "learning_rate": 8.501543209876544e-06, + "loss": 0.8621724700927734, + "step": 26900 + }, + { + "epoch": 83.33333333333333, + "grad_norm": 0.24216392636299133, + "learning_rate": 8.347222222222223e-06, + "loss": 0.8620801544189454, + "step": 27000 + }, + { + "epoch": 83.64197530864197, + "grad_norm": 0.28262120485305786, + "learning_rate": 8.1929012345679e-06, + "loss": 0.861885986328125, + "step": 27100 + }, + { + "epoch": 83.95061728395062, + "grad_norm": 0.3250841200351715, + "learning_rate": 8.03858024691358e-06, + "loss": 0.8618600463867188, + "step": 27200 + }, + { + "epoch": 84.25925925925925, + "grad_norm": 0.27586230635643005, + "learning_rate": 7.88425925925926e-06, + "loss": 0.8616656494140625, + "step": 27300 + }, + { + "epoch": 84.5679012345679, + "grad_norm": 0.2721251845359802, + "learning_rate": 7.729938271604939e-06, + "loss": 0.8620500183105468, + "step": 27400 + }, + { + "epoch": 84.87654320987654, + "grad_norm": 0.26842591166496277, + "learning_rate": 7.5756172839506175e-06, + "loss": 0.8617433929443359, + "step": 27500 + }, + { + "epoch": 85.18518518518519, + "grad_norm": 0.23888643085956573, + "learning_rate": 7.421296296296297e-06, + "loss": 0.861810073852539, + "step": 27600 + }, + { + "epoch": 85.49382716049382, + "grad_norm": 0.24433459341526031, + "learning_rate": 7.2669753086419754e-06, + "loss": 0.8616561889648438, + "step": 27700 + }, + { + "epoch": 85.80246913580247, + "grad_norm": 0.24760094285011292, + "learning_rate": 7.112654320987655e-06, + "loss": 0.8622868347167969, + "step": 27800 + }, + { + "epoch": 86.11111111111111, + "grad_norm": 0.19840151071548462, + "learning_rate": 6.958333333333333e-06, + "loss": 0.8618616485595703, + "step": 27900 + }, + { + "epoch": 86.41975308641975, + "grad_norm": 0.24764691293239594, + "learning_rate": 6.804012345679013e-06, + "loss": 0.8621045684814453, + "step": 28000 + }, + { + "epoch": 86.72839506172839, + "grad_norm": 0.23593583703041077, + "learning_rate": 6.649691358024691e-06, + "loss": 0.8618828582763672, + "step": 28100 + }, + { + "epoch": 87.03703703703704, + "grad_norm": 0.2748619318008423, + "learning_rate": 6.496913580246914e-06, + "loss": 0.8616398620605469, + "step": 28200 + }, + { + "epoch": 87.34567901234568, + "grad_norm": 0.2573417127132416, + "learning_rate": 6.342592592592593e-06, + "loss": 0.8620298004150391, + "step": 28300 + }, + { + "epoch": 87.65432098765432, + "grad_norm": 0.2384900599718094, + "learning_rate": 6.188271604938272e-06, + "loss": 0.8617670440673828, + "step": 28400 + }, + { + "epoch": 87.96296296296296, + "grad_norm": 0.21160998940467834, + "learning_rate": 6.033950617283951e-06, + "loss": 0.861859359741211, + "step": 28500 + }, + { + "epoch": 88.27160493827161, + "grad_norm": 0.39718398451805115, + "learning_rate": 5.87962962962963e-06, + "loss": 0.8616744995117187, + "step": 28600 + }, + { + "epoch": 88.58024691358025, + "grad_norm": 0.27755340933799744, + "learning_rate": 5.725308641975309e-06, + "loss": 0.8617410278320312, + "step": 28700 + }, + { + "epoch": 88.88888888888889, + "grad_norm": 0.2871803939342499, + "learning_rate": 5.570987654320988e-06, + "loss": 0.8616901397705078, + "step": 28800 + }, + { + "epoch": 89.19753086419753, + "grad_norm": 0.3335205614566803, + "learning_rate": 5.416666666666667e-06, + "loss": 0.8615732574462891, + "step": 28900 + }, + { + "epoch": 89.50617283950618, + "grad_norm": 0.23746320605278015, + "learning_rate": 5.262345679012346e-06, + "loss": 0.861851806640625, + "step": 29000 + }, + { + "epoch": 89.81481481481481, + "grad_norm": 0.28229081630706787, + "learning_rate": 5.1080246913580255e-06, + "loss": 0.86148681640625, + "step": 29100 + }, + { + "epoch": 90.12345679012346, + "grad_norm": 0.21336163580417633, + "learning_rate": 4.953703703703704e-06, + "loss": 0.861663818359375, + "step": 29200 + }, + { + "epoch": 90.4320987654321, + "grad_norm": 0.2604101300239563, + "learning_rate": 4.7993827160493834e-06, + "loss": 0.8617544555664063, + "step": 29300 + }, + { + "epoch": 90.74074074074075, + "grad_norm": 0.26023662090301514, + "learning_rate": 4.645061728395062e-06, + "loss": 0.8617599487304688, + "step": 29400 + }, + { + "epoch": 91.04938271604938, + "grad_norm": 0.26295042037963867, + "learning_rate": 4.490740740740741e-06, + "loss": 0.8617560577392578, + "step": 29500 + }, + { + "epoch": 91.35802469135803, + "grad_norm": 0.22411581873893738, + "learning_rate": 4.33641975308642e-06, + "loss": 0.8616332244873047, + "step": 29600 + }, + { + "epoch": 91.66666666666667, + "grad_norm": 0.24028459191322327, + "learning_rate": 4.182098765432099e-06, + "loss": 0.8615241241455078, + "step": 29700 + }, + { + "epoch": 91.9753086419753, + "grad_norm": 0.25509828329086304, + "learning_rate": 4.027777777777779e-06, + "loss": 0.8616260528564453, + "step": 29800 + }, + { + "epoch": 92.28395061728395, + "grad_norm": 0.22896139323711395, + "learning_rate": 3.873456790123457e-06, + "loss": 0.8615116882324219, + "step": 29900 + }, + { + "epoch": 92.5925925925926, + "grad_norm": 0.1981690675020218, + "learning_rate": 3.719135802469136e-06, + "loss": 0.8616599273681641, + "step": 30000 + }, + { + "epoch": 92.90123456790124, + "grad_norm": 0.2998819053173065, + "learning_rate": 3.564814814814815e-06, + "loss": 0.8616020965576172, + "step": 30100 + }, + { + "epoch": 93.20987654320987, + "grad_norm": 0.2514878213405609, + "learning_rate": 3.412037037037037e-06, + "loss": 0.8614517974853516, + "step": 30200 + }, + { + "epoch": 93.51851851851852, + "grad_norm": 0.24726809561252594, + "learning_rate": 3.257716049382716e-06, + "loss": 0.8615573883056641, + "step": 30300 + }, + { + "epoch": 93.82716049382717, + "grad_norm": 0.24331317842006683, + "learning_rate": 3.1033950617283954e-06, + "loss": 0.861545181274414, + "step": 30400 + }, + { + "epoch": 94.1358024691358, + "grad_norm": 0.29127877950668335, + "learning_rate": 2.9490740740740743e-06, + "loss": 0.8617371368408203, + "step": 30500 + }, + { + "epoch": 94.44444444444444, + "grad_norm": 0.3069797456264496, + "learning_rate": 2.7947530864197533e-06, + "loss": 0.8614784240722656, + "step": 30600 + }, + { + "epoch": 94.75308641975309, + "grad_norm": 0.25526171922683716, + "learning_rate": 2.6404320987654323e-06, + "loss": 0.8612818908691406, + "step": 30700 + }, + { + "epoch": 95.06172839506173, + "grad_norm": 0.25805607438087463, + "learning_rate": 2.4861111111111112e-06, + "loss": 0.8611087799072266, + "step": 30800 + }, + { + "epoch": 95.37037037037037, + "grad_norm": 0.24607188999652863, + "learning_rate": 2.33179012345679e-06, + "loss": 0.8613501739501953, + "step": 30900 + }, + { + "epoch": 95.67901234567901, + "grad_norm": 0.3257257640361786, + "learning_rate": 2.177469135802469e-06, + "loss": 0.8614185333251954, + "step": 31000 + }, + { + "epoch": 95.98765432098766, + "grad_norm": 0.3006044924259186, + "learning_rate": 2.0231481481481485e-06, + "loss": 0.8614950561523438, + "step": 31100 + }, + { + "epoch": 96.29629629629629, + "grad_norm": 0.26980897784233093, + "learning_rate": 1.8688271604938273e-06, + "loss": 0.8614867401123046, + "step": 31200 + }, + { + "epoch": 96.60493827160494, + "grad_norm": 0.25481465458869934, + "learning_rate": 1.7145061728395064e-06, + "loss": 0.8614888000488281, + "step": 31300 + }, + { + "epoch": 96.91358024691358, + "grad_norm": 0.2795570194721222, + "learning_rate": 1.5601851851851852e-06, + "loss": 0.8614127349853515, + "step": 31400 + }, + { + "epoch": 97.22222222222223, + "grad_norm": 0.2887301743030548, + "learning_rate": 1.4058641975308641e-06, + "loss": 0.8610345458984375, + "step": 31500 + }, + { + "epoch": 97.53086419753086, + "grad_norm": 0.28151342272758484, + "learning_rate": 1.2515432098765433e-06, + "loss": 0.8611799621582031, + "step": 31600 + }, + { + "epoch": 97.8395061728395, + "grad_norm": 0.2844570279121399, + "learning_rate": 1.0972222222222223e-06, + "loss": 0.8612938690185546, + "step": 31700 + }, + { + "epoch": 98.14814814814815, + "grad_norm": 0.28799548745155334, + "learning_rate": 9.429012345679012e-07, + "loss": 0.8612958526611328, + "step": 31800 + }, + { + "epoch": 98.45679012345678, + "grad_norm": 0.17849087715148926, + "learning_rate": 7.885802469135803e-07, + "loss": 0.8611792755126954, + "step": 31900 + }, + { + "epoch": 98.76543209876543, + "grad_norm": 0.2363658845424652, + "learning_rate": 6.342592592592592e-07, + "loss": 0.8614938354492188, + "step": 32000 + }, + { + "epoch": 99.07407407407408, + "grad_norm": 0.3181602358818054, + "learning_rate": 4.799382716049383e-07, + "loss": 0.8611763000488282, + "step": 32100 + }, + { + "epoch": 99.38271604938272, + "grad_norm": 0.23163554072380066, + "learning_rate": 3.271604938271605e-07, + "loss": 0.8610628509521484, + "step": 32200 + }, + { + "epoch": 99.69135802469135, + "grad_norm": 0.25123292207717896, + "learning_rate": 1.7283950617283952e-07, + "loss": 0.8611888122558594, + "step": 32300 + } + ], + "logging_steps": 100, + "max_steps": 32400, + "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": 2901210483916800.0, + "train_batch_size": 8, + "trial_name": null, + "trial_params": null +} diff --git a/timecost/c7/realtabformer/rtf-c7-20260429_070344/rtf_checkpoints/checkpoint-32300/training_args.bin b/timecost/c7/realtabformer/rtf-c7-20260429_070344/rtf_checkpoints/checkpoint-32300/training_args.bin new file mode 100644 index 0000000000000000000000000000000000000000..34d68dc0e0fe1c1f12a2e581dd1b166aa7178a9e --- /dev/null +++ b/timecost/c7/realtabformer/rtf-c7-20260429_070344/rtf_checkpoints/checkpoint-32300/training_args.bin @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:9e2cd88337d1d846c6918d2b3b63fa3e5c93f12fefc082497590da854a564607 +size 5201 diff --git a/timecost/c7/realtabformer/rtf-c7-20260429_070344/rtf_checkpoints/checkpoint-32400/config.json b/timecost/c7/realtabformer/rtf-c7-20260429_070344/rtf_checkpoints/checkpoint-32400/config.json new file mode 100644 index 0000000000000000000000000000000000000000..2f4b2de295e37af41a4d510862dce45d9dafa48a --- /dev/null +++ b/timecost/c7/realtabformer/rtf-c7-20260429_070344/rtf_checkpoints/checkpoint-32400/config.json @@ -0,0 +1,34 @@ +{ + "activation_function": "gelu_new", + "add_cross_attention": false, + "architectures": [ + "GPT2LMHeadModel" + ], + "attn_pdrop": 0.1, + "bos_token_id": 5, + "dtype": "float32", + "embd_pdrop": 0.1, + "eos_token_id": 6, + "initializer_range": 0.02, + "layer_norm_epsilon": 1e-05, + "model_type": "gpt2", + "n_embd": 768, + "n_head": 12, + "n_inner": null, + "n_layer": 6, + "n_positions": 1024, + "pad_token_id": null, + "reorder_and_upcast_attn": false, + "resid_pdrop": 0.1, + "scale_attn_by_inverse_layer_idx": false, + "scale_attn_weights": true, + "summary_activation": null, + "summary_first_dropout": 0.1, + "summary_proj_to_labels": true, + "summary_type": "cls_index", + "summary_use_proj": true, + "tie_word_embeddings": true, + "transformers_version": "5.5.3", + "use_cache": false, + "vocab_size": 43 +} diff --git a/timecost/c7/realtabformer/rtf-c7-20260429_070344/rtf_checkpoints/checkpoint-32400/generation_config.json b/timecost/c7/realtabformer/rtf-c7-20260429_070344/rtf_checkpoints/checkpoint-32400/generation_config.json new file mode 100644 index 0000000000000000000000000000000000000000..ffe89567780e75b5c22eade9be971483b9618f39 --- /dev/null +++ b/timecost/c7/realtabformer/rtf-c7-20260429_070344/rtf_checkpoints/checkpoint-32400/generation_config.json @@ -0,0 +1,9 @@ +{ + "_from_model_config": true, + "bos_token_id": 5, + "eos_token_id": 6, + "output_attentions": false, + "output_hidden_states": false, + "transformers_version": "5.5.3", + "use_cache": true +} diff --git a/timecost/c7/realtabformer/rtf-c7-20260429_070344/rtf_checkpoints/checkpoint-32400/model.safetensors b/timecost/c7/realtabformer/rtf-c7-20260429_070344/rtf_checkpoints/checkpoint-32400/model.safetensors new file mode 100644 index 0000000000000000000000000000000000000000..03b77dcf97daa9b0b1c916b14b042706bd1dc442 --- /dev/null +++ b/timecost/c7/realtabformer/rtf-c7-20260429_070344/rtf_checkpoints/checkpoint-32400/model.safetensors @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:32dfab53f26e71f03d9f60474f983250fc6f0266e75d17bcfca24885ab526c52 +size 173400520 diff --git a/timecost/c7/realtabformer/rtf-c7-20260429_070344/rtf_checkpoints/checkpoint-32400/optimizer.pt b/timecost/c7/realtabformer/rtf-c7-20260429_070344/rtf_checkpoints/checkpoint-32400/optimizer.pt new file mode 100644 index 0000000000000000000000000000000000000000..d62b170f536fdea25cd6a0743e4d37f55ec33436 --- /dev/null +++ b/timecost/c7/realtabformer/rtf-c7-20260429_070344/rtf_checkpoints/checkpoint-32400/optimizer.pt @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:a18b3d29814cdd8ccdb22326a3c8b91cd7aef64265c0e963165ad9d46d3cb769 +size 346850059 diff --git a/timecost/c7/realtabformer/rtf-c7-20260429_070344/rtf_checkpoints/checkpoint-32400/rng_state.pth b/timecost/c7/realtabformer/rtf-c7-20260429_070344/rtf_checkpoints/checkpoint-32400/rng_state.pth new file mode 100644 index 0000000000000000000000000000000000000000..017073ce79148cd854371fccf3f7eeb36818dc24 --- /dev/null +++ b/timecost/c7/realtabformer/rtf-c7-20260429_070344/rtf_checkpoints/checkpoint-32400/rng_state.pth @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:793ad6a1c8a975c8f7d93d8301f47b7b833b2bb1e2701323f5e4d94443988080 +size 14645 diff --git a/timecost/c7/realtabformer/rtf-c7-20260429_070344/rtf_checkpoints/checkpoint-32400/scaler.pt b/timecost/c7/realtabformer/rtf-c7-20260429_070344/rtf_checkpoints/checkpoint-32400/scaler.pt new file mode 100644 index 0000000000000000000000000000000000000000..d0aebf4034c3cfe9b9b719977a4b994f213a5be3 --- /dev/null +++ b/timecost/c7/realtabformer/rtf-c7-20260429_070344/rtf_checkpoints/checkpoint-32400/scaler.pt @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:232e328863ad7781c1fb46bc9ed559264161861f15388b5d85e6312d284a3143 +size 1383 diff --git a/timecost/c7/realtabformer/rtf-c7-20260429_070344/rtf_checkpoints/checkpoint-32400/scheduler.pt b/timecost/c7/realtabformer/rtf-c7-20260429_070344/rtf_checkpoints/checkpoint-32400/scheduler.pt new file mode 100644 index 0000000000000000000000000000000000000000..9f466ecd34336789514c1c931caa17171d79f5e4 --- /dev/null +++ b/timecost/c7/realtabformer/rtf-c7-20260429_070344/rtf_checkpoints/checkpoint-32400/scheduler.pt @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:bf9dce48695fe46b0256d8861d45b3fd591860b85cd7a3d14ff751dae1f161b4 +size 1465 diff --git a/timecost/c7/realtabformer/rtf-c7-20260429_070344/rtf_checkpoints/checkpoint-32400/trainer_state.json b/timecost/c7/realtabformer/rtf-c7-20260429_070344/rtf_checkpoints/checkpoint-32400/trainer_state.json new file mode 100644 index 0000000000000000000000000000000000000000..11f983d8af2d351ad1b9b20044485c36df88e3a7 --- /dev/null +++ b/timecost/c7/realtabformer/rtf-c7-20260429_070344/rtf_checkpoints/checkpoint-32400/trainer_state.json @@ -0,0 +1,2302 @@ +{ + "best_global_step": null, + "best_metric": null, + "best_model_checkpoint": null, + "epoch": 100.0, + "eval_steps": 100, + "global_step": 32400, + "is_hyper_param_search": false, + "is_local_process_zero": true, + "is_world_process_zero": true, + "log_history": [ + { + "epoch": 0.30864197530864196, + "grad_norm": 0.5975016355514526, + "learning_rate": 4.9847222222222224e-05, + "loss": 1.1053435516357422, + "step": 100 + }, + { + "epoch": 0.6172839506172839, + "grad_norm": 0.4975835680961609, + "learning_rate": 4.96929012345679e-05, + "loss": 0.913399429321289, + "step": 200 + }, + { + "epoch": 0.9259259259259259, + "grad_norm": 0.5069450736045837, + "learning_rate": 4.9538580246913586e-05, + "loss": 0.9037506866455078, + "step": 300 + }, + { + "epoch": 1.2345679012345678, + "grad_norm": 0.3577662706375122, + "learning_rate": 4.9384259259259264e-05, + "loss": 0.8971150207519532, + "step": 400 + }, + { + "epoch": 1.5432098765432098, + "grad_norm": 0.37501809000968933, + "learning_rate": 4.922993827160494e-05, + "loss": 0.8930672454833984, + "step": 500 + }, + { + "epoch": 1.8518518518518519, + "grad_norm": 0.3230942487716675, + "learning_rate": 4.907561728395062e-05, + "loss": 0.8911088562011719, + "step": 600 + }, + { + "epoch": 2.1604938271604937, + "grad_norm": 0.31315380334854126, + "learning_rate": 4.89212962962963e-05, + "loss": 0.8870069122314453, + "step": 700 + }, + { + "epoch": 2.4691358024691357, + "grad_norm": 0.3408145606517792, + "learning_rate": 4.8766975308641975e-05, + "loss": 0.8845426177978516, + "step": 800 + }, + { + "epoch": 2.7777777777777777, + "grad_norm": 0.34649044275283813, + "learning_rate": 4.861265432098765e-05, + "loss": 0.8816167449951172, + "step": 900 + }, + { + "epoch": 3.0864197530864197, + "grad_norm": 0.2891448140144348, + "learning_rate": 4.845833333333334e-05, + "loss": 0.8816600799560547, + "step": 1000 + }, + { + "epoch": 3.3950617283950617, + "grad_norm": 0.3047502636909485, + "learning_rate": 4.8304012345679014e-05, + "loss": 0.8813356018066406, + "step": 1100 + }, + { + "epoch": 3.7037037037037037, + "grad_norm": 0.34682637453079224, + "learning_rate": 4.81496913580247e-05, + "loss": 0.8769812774658203, + "step": 1200 + }, + { + "epoch": 4.012345679012346, + "grad_norm": 0.3608556091785431, + "learning_rate": 4.7995370370370376e-05, + "loss": 0.8777651977539063, + "step": 1300 + }, + { + "epoch": 4.320987654320987, + "grad_norm": 0.3927426338195801, + "learning_rate": 4.7841049382716054e-05, + "loss": 0.8768961334228516, + "step": 1400 + }, + { + "epoch": 4.62962962962963, + "grad_norm": 0.2639325261116028, + "learning_rate": 4.768672839506173e-05, + "loss": 0.8781243133544921, + "step": 1500 + }, + { + "epoch": 4.938271604938271, + "grad_norm": 0.35398051142692566, + "learning_rate": 4.753240740740741e-05, + "loss": 0.87546630859375, + "step": 1600 + }, + { + "epoch": 5.246913580246914, + "grad_norm": 0.305637001991272, + "learning_rate": 4.737808641975309e-05, + "loss": 0.8746750640869141, + "step": 1700 + }, + { + "epoch": 5.555555555555555, + "grad_norm": 0.217234268784523, + "learning_rate": 4.7223765432098765e-05, + "loss": 0.8738501739501953, + "step": 1800 + }, + { + "epoch": 5.864197530864198, + "grad_norm": 0.3149331510066986, + "learning_rate": 4.706944444444445e-05, + "loss": 0.8732035064697266, + "step": 1900 + }, + { + "epoch": 6.172839506172839, + "grad_norm": 0.26609405875205994, + "learning_rate": 4.691512345679013e-05, + "loss": 0.8728971862792969, + "step": 2000 + }, + { + "epoch": 6.481481481481482, + "grad_norm": 0.31683775782585144, + "learning_rate": 4.6760802469135805e-05, + "loss": 0.8713655853271485, + "step": 2100 + }, + { + "epoch": 6.790123456790123, + "grad_norm": 0.34013745188713074, + "learning_rate": 4.660648148148148e-05, + "loss": 0.8744948577880859, + "step": 2200 + }, + { + "epoch": 7.098765432098766, + "grad_norm": 0.22860896587371826, + "learning_rate": 4.645216049382716e-05, + "loss": 0.8739882659912109, + "step": 2300 + }, + { + "epoch": 7.407407407407407, + "grad_norm": 0.37235602736473083, + "learning_rate": 4.629783950617284e-05, + "loss": 0.8726573944091797, + "step": 2400 + }, + { + "epoch": 7.716049382716049, + "grad_norm": 0.23996835947036743, + "learning_rate": 4.614351851851852e-05, + "loss": 0.8695323944091797, + "step": 2500 + }, + { + "epoch": 8.024691358024691, + "grad_norm": 0.27126339077949524, + "learning_rate": 4.59891975308642e-05, + "loss": 0.8710608673095703, + "step": 2600 + }, + { + "epoch": 8.333333333333334, + "grad_norm": 0.3054942190647125, + "learning_rate": 4.5834876543209884e-05, + "loss": 0.870329360961914, + "step": 2700 + }, + { + "epoch": 8.641975308641975, + "grad_norm": 0.32970622181892395, + "learning_rate": 4.568055555555556e-05, + "loss": 0.8703945922851563, + "step": 2800 + }, + { + "epoch": 8.950617283950617, + "grad_norm": 0.24803043901920319, + "learning_rate": 4.552623456790124e-05, + "loss": 0.8710511779785156, + "step": 2900 + }, + { + "epoch": 9.25925925925926, + "grad_norm": 0.4170224964618683, + "learning_rate": 4.537191358024692e-05, + "loss": 0.8694993591308594, + "step": 3000 + }, + { + "epoch": 9.567901234567902, + "grad_norm": 0.26911184191703796, + "learning_rate": 4.5217592592592595e-05, + "loss": 0.870486068725586, + "step": 3100 + }, + { + "epoch": 9.876543209876543, + "grad_norm": 0.30582156777381897, + "learning_rate": 4.506327160493827e-05, + "loss": 0.8719473266601563, + "step": 3200 + }, + { + "epoch": 10.185185185185185, + "grad_norm": 0.29516837000846863, + "learning_rate": 4.490895061728395e-05, + "loss": 0.8712838745117187, + "step": 3300 + }, + { + "epoch": 10.493827160493828, + "grad_norm": 0.28133177757263184, + "learning_rate": 4.475462962962963e-05, + "loss": 0.8699048614501953, + "step": 3400 + }, + { + "epoch": 10.802469135802468, + "grad_norm": 0.38596439361572266, + "learning_rate": 4.4600308641975306e-05, + "loss": 0.8712091064453125, + "step": 3500 + }, + { + "epoch": 11.11111111111111, + "grad_norm": 0.2777452766895294, + "learning_rate": 4.444598765432099e-05, + "loss": 0.8693663787841797, + "step": 3600 + }, + { + "epoch": 11.419753086419753, + "grad_norm": 0.4119755029678345, + "learning_rate": 4.429166666666667e-05, + "loss": 0.8681372833251954, + "step": 3700 + }, + { + "epoch": 11.728395061728396, + "grad_norm": 0.2371830940246582, + "learning_rate": 4.4137345679012346e-05, + "loss": 0.8699448394775391, + "step": 3800 + }, + { + "epoch": 12.037037037037036, + "grad_norm": 0.22597350180149078, + "learning_rate": 4.3983024691358023e-05, + "loss": 0.8695160675048829, + "step": 3900 + }, + { + "epoch": 12.345679012345679, + "grad_norm": 0.2682456970214844, + "learning_rate": 4.382870370370371e-05, + "loss": 0.8695050811767578, + "step": 4000 + }, + { + "epoch": 12.654320987654321, + "grad_norm": 0.29016727209091187, + "learning_rate": 4.3674382716049386e-05, + "loss": 0.8679987335205078, + "step": 4100 + }, + { + "epoch": 12.962962962962964, + "grad_norm": 0.26374146342277527, + "learning_rate": 4.352006172839506e-05, + "loss": 0.8693247222900391, + "step": 4200 + }, + { + "epoch": 13.271604938271604, + "grad_norm": 0.29962387681007385, + "learning_rate": 4.336574074074074e-05, + "loss": 0.8679438781738281, + "step": 4300 + }, + { + "epoch": 13.580246913580247, + "grad_norm": 0.29223865270614624, + "learning_rate": 4.3211419753086425e-05, + "loss": 0.8687114715576172, + "step": 4400 + }, + { + "epoch": 13.88888888888889, + "grad_norm": 0.37939226627349854, + "learning_rate": 4.30570987654321e-05, + "loss": 0.8680426025390625, + "step": 4500 + }, + { + "epoch": 14.197530864197532, + "grad_norm": 0.3423369526863098, + "learning_rate": 4.290277777777778e-05, + "loss": 0.8689276123046875, + "step": 4600 + }, + { + "epoch": 14.506172839506172, + "grad_norm": 0.36750486493110657, + "learning_rate": 4.274845679012346e-05, + "loss": 0.8679615783691407, + "step": 4700 + }, + { + "epoch": 14.814814814814815, + "grad_norm": 0.35079503059387207, + "learning_rate": 4.2594135802469136e-05, + "loss": 0.8678194427490235, + "step": 4800 + }, + { + "epoch": 15.123456790123457, + "grad_norm": 0.22617663443088531, + "learning_rate": 4.2439814814814814e-05, + "loss": 0.8699114990234375, + "step": 4900 + }, + { + "epoch": 15.432098765432098, + "grad_norm": 0.3365887999534607, + "learning_rate": 4.228549382716049e-05, + "loss": 0.8693661499023437, + "step": 5000 + }, + { + "epoch": 15.74074074074074, + "grad_norm": 0.29944780468940735, + "learning_rate": 4.213117283950617e-05, + "loss": 0.8680919647216797, + "step": 5100 + }, + { + "epoch": 16.049382716049383, + "grad_norm": 0.29136228561401367, + "learning_rate": 4.1976851851851854e-05, + "loss": 0.868043212890625, + "step": 5200 + }, + { + "epoch": 16.358024691358025, + "grad_norm": 0.24972350895404816, + "learning_rate": 4.182253086419753e-05, + "loss": 0.8676002502441407, + "step": 5300 + }, + { + "epoch": 16.666666666666668, + "grad_norm": 0.3150668442249298, + "learning_rate": 4.1668209876543216e-05, + "loss": 0.868660659790039, + "step": 5400 + }, + { + "epoch": 16.97530864197531, + "grad_norm": 0.3512415587902069, + "learning_rate": 4.1513888888888894e-05, + "loss": 0.8682049560546875, + "step": 5500 + }, + { + "epoch": 17.28395061728395, + "grad_norm": 0.3164934515953064, + "learning_rate": 4.135956790123457e-05, + "loss": 0.8676078033447265, + "step": 5600 + }, + { + "epoch": 17.59259259259259, + "grad_norm": 0.2696605324745178, + "learning_rate": 4.120524691358025e-05, + "loss": 0.8678233337402343, + "step": 5700 + }, + { + "epoch": 17.901234567901234, + "grad_norm": 0.345699280500412, + "learning_rate": 4.105092592592593e-05, + "loss": 0.8660729217529297, + "step": 5800 + }, + { + "epoch": 18.209876543209877, + "grad_norm": 0.2393321543931961, + "learning_rate": 4.0896604938271604e-05, + "loss": 0.86662109375, + "step": 5900 + }, + { + "epoch": 18.51851851851852, + "grad_norm": 0.23627376556396484, + "learning_rate": 4.074228395061729e-05, + "loss": 0.8684516906738281, + "step": 6000 + }, + { + "epoch": 18.82716049382716, + "grad_norm": 0.22598141431808472, + "learning_rate": 4.0587962962962966e-05, + "loss": 0.8676165771484375, + "step": 6100 + }, + { + "epoch": 19.135802469135804, + "grad_norm": 0.29334530234336853, + "learning_rate": 4.0433641975308644e-05, + "loss": 0.8662307739257813, + "step": 6200 + }, + { + "epoch": 19.444444444444443, + "grad_norm": 0.23827306926250458, + "learning_rate": 4.027932098765432e-05, + "loss": 0.8666460418701172, + "step": 6300 + }, + { + "epoch": 19.753086419753085, + "grad_norm": 0.29057374596595764, + "learning_rate": 4.0125e-05, + "loss": 0.8675463104248047, + "step": 6400 + }, + { + "epoch": 20.061728395061728, + "grad_norm": 0.3120971918106079, + "learning_rate": 3.997067901234568e-05, + "loss": 0.8672868347167969, + "step": 6500 + }, + { + "epoch": 20.37037037037037, + "grad_norm": 0.412092924118042, + "learning_rate": 3.9816358024691355e-05, + "loss": 0.8670984649658203, + "step": 6600 + }, + { + "epoch": 20.679012345679013, + "grad_norm": 0.2982257306575775, + "learning_rate": 3.966203703703704e-05, + "loss": 0.8685931396484375, + "step": 6700 + }, + { + "epoch": 20.987654320987655, + "grad_norm": 0.2703470289707184, + "learning_rate": 3.950771604938272e-05, + "loss": 0.8666371917724609, + "step": 6800 + }, + { + "epoch": 21.296296296296298, + "grad_norm": 0.3358808159828186, + "learning_rate": 3.93533950617284e-05, + "loss": 0.8664039611816406, + "step": 6900 + }, + { + "epoch": 21.604938271604937, + "grad_norm": 0.3047441244125366, + "learning_rate": 3.919907407407408e-05, + "loss": 0.8664222717285156, + "step": 7000 + }, + { + "epoch": 21.91358024691358, + "grad_norm": 0.28871631622314453, + "learning_rate": 3.904475308641976e-05, + "loss": 0.8676378631591797, + "step": 7100 + }, + { + "epoch": 22.22222222222222, + "grad_norm": 0.29110872745513916, + "learning_rate": 3.8890432098765435e-05, + "loss": 0.8660447692871094, + "step": 7200 + }, + { + "epoch": 22.530864197530864, + "grad_norm": 0.2692337930202484, + "learning_rate": 3.873611111111111e-05, + "loss": 0.8669923400878906, + "step": 7300 + }, + { + "epoch": 22.839506172839506, + "grad_norm": 0.31768998503685, + "learning_rate": 3.858179012345679e-05, + "loss": 0.8663272094726563, + "step": 7400 + }, + { + "epoch": 23.14814814814815, + "grad_norm": 0.22150367498397827, + "learning_rate": 3.842746913580247e-05, + "loss": 0.8668128967285156, + "step": 7500 + }, + { + "epoch": 23.45679012345679, + "grad_norm": 0.23608367145061493, + "learning_rate": 3.827314814814815e-05, + "loss": 0.8661857604980469, + "step": 7600 + }, + { + "epoch": 23.765432098765434, + "grad_norm": 0.23709823191165924, + "learning_rate": 3.811882716049383e-05, + "loss": 0.8668611145019531, + "step": 7700 + }, + { + "epoch": 24.074074074074073, + "grad_norm": 0.2794584333896637, + "learning_rate": 3.796450617283951e-05, + "loss": 0.8664863586425782, + "step": 7800 + }, + { + "epoch": 24.382716049382715, + "grad_norm": 0.35239988565444946, + "learning_rate": 3.7810185185185185e-05, + "loss": 0.8656664276123047, + "step": 7900 + }, + { + "epoch": 24.691358024691358, + "grad_norm": 0.3032480776309967, + "learning_rate": 3.765586419753086e-05, + "loss": 0.8664974212646485, + "step": 8000 + }, + { + "epoch": 25.0, + "grad_norm": 0.32895025610923767, + "learning_rate": 3.750154320987655e-05, + "loss": 0.8656834411621094, + "step": 8100 + }, + { + "epoch": 25.308641975308642, + "grad_norm": 0.24647651612758636, + "learning_rate": 3.7347222222222225e-05, + "loss": 0.8668187713623047, + "step": 8200 + }, + { + "epoch": 25.617283950617285, + "grad_norm": 0.3259798288345337, + "learning_rate": 3.71929012345679e-05, + "loss": 0.8659412384033203, + "step": 8300 + }, + { + "epoch": 25.925925925925927, + "grad_norm": 0.29342758655548096, + "learning_rate": 3.703858024691359e-05, + "loss": 0.865984115600586, + "step": 8400 + }, + { + "epoch": 26.234567901234566, + "grad_norm": 0.18561498820781708, + "learning_rate": 3.6884259259259265e-05, + "loss": 0.8656551361083984, + "step": 8500 + }, + { + "epoch": 26.54320987654321, + "grad_norm": 0.24412372708320618, + "learning_rate": 3.672993827160494e-05, + "loss": 0.8654991912841797, + "step": 8600 + }, + { + "epoch": 26.85185185185185, + "grad_norm": 0.2831413447856903, + "learning_rate": 3.657561728395062e-05, + "loss": 0.8658388519287109, + "step": 8700 + }, + { + "epoch": 27.160493827160494, + "grad_norm": 0.27400529384613037, + "learning_rate": 3.64212962962963e-05, + "loss": 0.8661294555664063, + "step": 8800 + }, + { + "epoch": 27.469135802469136, + "grad_norm": 0.30983632802963257, + "learning_rate": 3.6266975308641976e-05, + "loss": 0.866031265258789, + "step": 8900 + }, + { + "epoch": 27.77777777777778, + "grad_norm": 0.3088923990726471, + "learning_rate": 3.611265432098765e-05, + "loss": 0.8667101287841796, + "step": 9000 + }, + { + "epoch": 28.08641975308642, + "grad_norm": 0.23197945952415466, + "learning_rate": 3.595833333333333e-05, + "loss": 0.8657314300537109, + "step": 9100 + }, + { + "epoch": 28.395061728395063, + "grad_norm": 0.32310914993286133, + "learning_rate": 3.5804012345679015e-05, + "loss": 0.8657714080810547, + "step": 9200 + }, + { + "epoch": 28.703703703703702, + "grad_norm": 0.2674392759799957, + "learning_rate": 3.564969135802469e-05, + "loss": 0.8655484771728515, + "step": 9300 + }, + { + "epoch": 29.012345679012345, + "grad_norm": 0.25402772426605225, + "learning_rate": 3.549537037037037e-05, + "loss": 0.8671824645996093, + "step": 9400 + }, + { + "epoch": 29.320987654320987, + "grad_norm": 0.2903260886669159, + "learning_rate": 3.534104938271605e-05, + "loss": 0.8659280395507812, + "step": 9500 + }, + { + "epoch": 29.62962962962963, + "grad_norm": 0.2330218255519867, + "learning_rate": 3.518672839506173e-05, + "loss": 0.8649930572509765, + "step": 9600 + }, + { + "epoch": 29.938271604938272, + "grad_norm": 0.31311362981796265, + "learning_rate": 3.503240740740741e-05, + "loss": 0.865321044921875, + "step": 9700 + }, + { + "epoch": 30.246913580246915, + "grad_norm": 0.3377930223941803, + "learning_rate": 3.487808641975309e-05, + "loss": 0.8644564056396484, + "step": 9800 + }, + { + "epoch": 30.555555555555557, + "grad_norm": 0.3928042948246002, + "learning_rate": 3.4723765432098766e-05, + "loss": 0.8649266815185547, + "step": 9900 + }, + { + "epoch": 30.864197530864196, + "grad_norm": 0.2636756896972656, + "learning_rate": 3.456944444444445e-05, + "loss": 0.865054931640625, + "step": 10000 + }, + { + "epoch": 31.17283950617284, + "grad_norm": 0.28490859270095825, + "learning_rate": 3.441512345679013e-05, + "loss": 0.8649151611328125, + "step": 10100 + }, + { + "epoch": 31.48148148148148, + "grad_norm": 0.15659233927726746, + "learning_rate": 3.4260802469135806e-05, + "loss": 0.8644688415527344, + "step": 10200 + }, + { + "epoch": 31.790123456790123, + "grad_norm": 0.2705706059932709, + "learning_rate": 3.4106481481481484e-05, + "loss": 0.8652298736572266, + "step": 10300 + }, + { + "epoch": 32.098765432098766, + "grad_norm": 0.2109704315662384, + "learning_rate": 3.395216049382716e-05, + "loss": 0.8646073150634765, + "step": 10400 + }, + { + "epoch": 32.407407407407405, + "grad_norm": 0.4892992079257965, + "learning_rate": 3.379783950617284e-05, + "loss": 0.8661848449707031, + "step": 10500 + }, + { + "epoch": 32.71604938271605, + "grad_norm": 0.24907298386096954, + "learning_rate": 3.364351851851852e-05, + "loss": 0.8667823028564453, + "step": 10600 + }, + { + "epoch": 33.02469135802469, + "grad_norm": 0.252615749835968, + "learning_rate": 3.3489197530864194e-05, + "loss": 0.8658191680908203, + "step": 10700 + }, + { + "epoch": 33.333333333333336, + "grad_norm": 0.2954252362251282, + "learning_rate": 3.333487654320988e-05, + "loss": 0.8650070190429687, + "step": 10800 + }, + { + "epoch": 33.641975308641975, + "grad_norm": 0.25497448444366455, + "learning_rate": 3.3180555555555556e-05, + "loss": 0.8645931243896484, + "step": 10900 + }, + { + "epoch": 33.95061728395062, + "grad_norm": 0.21472449600696564, + "learning_rate": 3.3026234567901234e-05, + "loss": 0.8647118377685546, + "step": 11000 + }, + { + "epoch": 34.25925925925926, + "grad_norm": 0.2599078118801117, + "learning_rate": 3.287191358024692e-05, + "loss": 0.8644834136962891, + "step": 11100 + }, + { + "epoch": 34.5679012345679, + "grad_norm": 0.22373680770397186, + "learning_rate": 3.2717592592592596e-05, + "loss": 0.8649051666259766, + "step": 11200 + }, + { + "epoch": 34.876543209876544, + "grad_norm": 0.26835867762565613, + "learning_rate": 3.2563271604938274e-05, + "loss": 0.8655126953125, + "step": 11300 + }, + { + "epoch": 35.18518518518518, + "grad_norm": 0.27637186646461487, + "learning_rate": 3.240895061728395e-05, + "loss": 0.8649341583251953, + "step": 11400 + }, + { + "epoch": 35.49382716049383, + "grad_norm": 0.24539203941822052, + "learning_rate": 3.225462962962963e-05, + "loss": 0.8642951202392578, + "step": 11500 + }, + { + "epoch": 35.80246913580247, + "grad_norm": 0.237693190574646, + "learning_rate": 3.210030864197531e-05, + "loss": 0.8649242401123047, + "step": 11600 + }, + { + "epoch": 36.111111111111114, + "grad_norm": 0.31651604175567627, + "learning_rate": 3.194598765432099e-05, + "loss": 0.8645661926269531, + "step": 11700 + }, + { + "epoch": 36.41975308641975, + "grad_norm": 0.2650340497493744, + "learning_rate": 3.179166666666667e-05, + "loss": 0.8651156616210938, + "step": 11800 + }, + { + "epoch": 36.72839506172839, + "grad_norm": 0.25851109623908997, + "learning_rate": 3.163734567901235e-05, + "loss": 0.8652816772460937, + "step": 11900 + }, + { + "epoch": 37.03703703703704, + "grad_norm": 0.32711413502693176, + "learning_rate": 3.1483024691358025e-05, + "loss": 0.8652924346923828, + "step": 12000 + }, + { + "epoch": 37.34567901234568, + "grad_norm": 0.3487214148044586, + "learning_rate": 3.1330246913580246e-05, + "loss": 0.8653363037109375, + "step": 12100 + }, + { + "epoch": 37.65432098765432, + "grad_norm": 0.19253982603549957, + "learning_rate": 3.1175925925925924e-05, + "loss": 0.864839859008789, + "step": 12200 + }, + { + "epoch": 37.96296296296296, + "grad_norm": 0.3058128356933594, + "learning_rate": 3.102160493827161e-05, + "loss": 0.8642467498779297, + "step": 12300 + }, + { + "epoch": 38.27160493827161, + "grad_norm": 0.30015528202056885, + "learning_rate": 3.0867283950617286e-05, + "loss": 0.8649742126464843, + "step": 12400 + }, + { + "epoch": 38.58024691358025, + "grad_norm": 0.33380067348480225, + "learning_rate": 3.0712962962962964e-05, + "loss": 0.8651032257080078, + "step": 12500 + }, + { + "epoch": 38.888888888888886, + "grad_norm": 0.36329004168510437, + "learning_rate": 3.055864197530864e-05, + "loss": 0.8648841857910157, + "step": 12600 + }, + { + "epoch": 39.19753086419753, + "grad_norm": 0.24460196495056152, + "learning_rate": 3.0404320987654322e-05, + "loss": 0.864749755859375, + "step": 12700 + }, + { + "epoch": 39.50617283950617, + "grad_norm": 0.2373257279396057, + "learning_rate": 3.025e-05, + "loss": 0.8641365051269532, + "step": 12800 + }, + { + "epoch": 39.81481481481482, + "grad_norm": 0.30177298188209534, + "learning_rate": 3.0095679012345678e-05, + "loss": 0.8651829528808593, + "step": 12900 + }, + { + "epoch": 40.123456790123456, + "grad_norm": 0.28286585211753845, + "learning_rate": 2.994135802469136e-05, + "loss": 0.8650211334228516, + "step": 13000 + }, + { + "epoch": 40.4320987654321, + "grad_norm": 0.2545726001262665, + "learning_rate": 2.978703703703704e-05, + "loss": 0.8654981231689454, + "step": 13100 + }, + { + "epoch": 40.74074074074074, + "grad_norm": 0.23175671696662903, + "learning_rate": 2.963271604938272e-05, + "loss": 0.8643350219726562, + "step": 13200 + }, + { + "epoch": 41.04938271604938, + "grad_norm": 0.2642582952976227, + "learning_rate": 2.94783950617284e-05, + "loss": 0.8648191070556641, + "step": 13300 + }, + { + "epoch": 41.358024691358025, + "grad_norm": 0.20592033863067627, + "learning_rate": 2.9324074074074076e-05, + "loss": 0.8642449951171876, + "step": 13400 + }, + { + "epoch": 41.666666666666664, + "grad_norm": 0.29046180844306946, + "learning_rate": 2.9169753086419754e-05, + "loss": 0.8642656707763672, + "step": 13500 + }, + { + "epoch": 41.97530864197531, + "grad_norm": 0.26292547583580017, + "learning_rate": 2.9015432098765432e-05, + "loss": 0.8639488220214844, + "step": 13600 + }, + { + "epoch": 42.28395061728395, + "grad_norm": 0.297783225774765, + "learning_rate": 2.886111111111111e-05, + "loss": 0.864585189819336, + "step": 13700 + }, + { + "epoch": 42.592592592592595, + "grad_norm": 0.2444617748260498, + "learning_rate": 2.870679012345679e-05, + "loss": 0.8649152374267578, + "step": 13800 + }, + { + "epoch": 42.901234567901234, + "grad_norm": 0.2831110656261444, + "learning_rate": 2.855246913580247e-05, + "loss": 0.8645712280273438, + "step": 13900 + }, + { + "epoch": 43.20987654320987, + "grad_norm": 0.2567242980003357, + "learning_rate": 2.8398148148148153e-05, + "loss": 0.8638491058349609, + "step": 14000 + }, + { + "epoch": 43.51851851851852, + "grad_norm": 0.2865658104419708, + "learning_rate": 2.824537037037037e-05, + "loss": 0.8642730712890625, + "step": 14100 + }, + { + "epoch": 43.82716049382716, + "grad_norm": 0.298484742641449, + "learning_rate": 2.8091049382716052e-05, + "loss": 0.8649552917480469, + "step": 14200 + }, + { + "epoch": 44.135802469135804, + "grad_norm": 0.28939852118492126, + "learning_rate": 2.793672839506173e-05, + "loss": 0.8639812469482422, + "step": 14300 + }, + { + "epoch": 44.44444444444444, + "grad_norm": 0.3122703433036804, + "learning_rate": 2.7782407407407407e-05, + "loss": 0.8637904357910157, + "step": 14400 + }, + { + "epoch": 44.75308641975309, + "grad_norm": 0.2748583257198334, + "learning_rate": 2.7628086419753085e-05, + "loss": 0.8642880249023438, + "step": 14500 + }, + { + "epoch": 45.06172839506173, + "grad_norm": 0.2639121115207672, + "learning_rate": 2.747376543209877e-05, + "loss": 0.8640217590332031, + "step": 14600 + }, + { + "epoch": 45.370370370370374, + "grad_norm": 0.2939169406890869, + "learning_rate": 2.7319444444444447e-05, + "loss": 0.8636822509765625, + "step": 14700 + }, + { + "epoch": 45.67901234567901, + "grad_norm": 0.28234273195266724, + "learning_rate": 2.7165123456790125e-05, + "loss": 0.8640520477294922, + "step": 14800 + }, + { + "epoch": 45.98765432098765, + "grad_norm": 0.3247532844543457, + "learning_rate": 2.7010802469135806e-05, + "loss": 0.8645074462890625, + "step": 14900 + }, + { + "epoch": 46.2962962962963, + "grad_norm": 0.17439720034599304, + "learning_rate": 2.6856481481481484e-05, + "loss": 0.86478759765625, + "step": 15000 + }, + { + "epoch": 46.60493827160494, + "grad_norm": 0.21647287905216217, + "learning_rate": 2.670216049382716e-05, + "loss": 0.8639440155029297, + "step": 15100 + }, + { + "epoch": 46.91358024691358, + "grad_norm": 0.22848644852638245, + "learning_rate": 2.654783950617284e-05, + "loss": 0.8637759399414062, + "step": 15200 + }, + { + "epoch": 47.22222222222222, + "grad_norm": 0.2585737407207489, + "learning_rate": 2.6393518518518517e-05, + "loss": 0.8639788055419921, + "step": 15300 + }, + { + "epoch": 47.53086419753087, + "grad_norm": 0.3228673040866852, + "learning_rate": 2.62391975308642e-05, + "loss": 0.8634998321533203, + "step": 15400 + }, + { + "epoch": 47.839506172839506, + "grad_norm": 0.19199813902378082, + "learning_rate": 2.608487654320988e-05, + "loss": 0.8637458038330078, + "step": 15500 + }, + { + "epoch": 48.148148148148145, + "grad_norm": 0.25434640049934387, + "learning_rate": 2.5930555555555556e-05, + "loss": 0.8639579010009766, + "step": 15600 + }, + { + "epoch": 48.45679012345679, + "grad_norm": 0.2062629610300064, + "learning_rate": 2.5776234567901237e-05, + "loss": 0.8633383941650391, + "step": 15700 + }, + { + "epoch": 48.76543209876543, + "grad_norm": 0.28273260593414307, + "learning_rate": 2.5621913580246915e-05, + "loss": 0.8634058380126953, + "step": 15800 + }, + { + "epoch": 49.074074074074076, + "grad_norm": 0.25794675946235657, + "learning_rate": 2.5467592592592593e-05, + "loss": 0.8644215393066407, + "step": 15900 + }, + { + "epoch": 49.382716049382715, + "grad_norm": 0.2801361382007599, + "learning_rate": 2.531327160493827e-05, + "loss": 0.8637371826171875, + "step": 16000 + }, + { + "epoch": 49.69135802469136, + "grad_norm": 0.31594523787498474, + "learning_rate": 2.51604938271605e-05, + "loss": 0.8638718414306641, + "step": 16100 + }, + { + "epoch": 50.0, + "grad_norm": 0.1785411238670349, + "learning_rate": 2.5006172839506177e-05, + "loss": 0.8638040161132813, + "step": 16200 + }, + { + "epoch": 50.30864197530864, + "grad_norm": 0.23965902626514435, + "learning_rate": 2.4851851851851854e-05, + "loss": 0.8634780883789063, + "step": 16300 + }, + { + "epoch": 50.617283950617285, + "grad_norm": 0.20226578414440155, + "learning_rate": 2.4697530864197532e-05, + "loss": 0.8635775756835937, + "step": 16400 + }, + { + "epoch": 50.925925925925924, + "grad_norm": 0.26240015029907227, + "learning_rate": 2.454320987654321e-05, + "loss": 0.8634452819824219, + "step": 16500 + }, + { + "epoch": 51.23456790123457, + "grad_norm": 0.31871360540390015, + "learning_rate": 2.4388888888888887e-05, + "loss": 0.8634230041503906, + "step": 16600 + }, + { + "epoch": 51.54320987654321, + "grad_norm": 0.28414225578308105, + "learning_rate": 2.423456790123457e-05, + "loss": 0.863424072265625, + "step": 16700 + }, + { + "epoch": 51.851851851851855, + "grad_norm": 0.25372815132141113, + "learning_rate": 2.408024691358025e-05, + "loss": 0.8632637023925781, + "step": 16800 + }, + { + "epoch": 52.160493827160494, + "grad_norm": 0.2601035237312317, + "learning_rate": 2.3925925925925927e-05, + "loss": 0.8637233734130859, + "step": 16900 + }, + { + "epoch": 52.46913580246913, + "grad_norm": 0.15456737577915192, + "learning_rate": 2.3771604938271605e-05, + "loss": 0.8640314483642578, + "step": 17000 + }, + { + "epoch": 52.77777777777778, + "grad_norm": 0.2598564326763153, + "learning_rate": 2.3617283950617286e-05, + "loss": 0.8640044403076171, + "step": 17100 + }, + { + "epoch": 53.08641975308642, + "grad_norm": 0.22886838018894196, + "learning_rate": 2.3462962962962964e-05, + "loss": 0.8635028076171875, + "step": 17200 + }, + { + "epoch": 53.39506172839506, + "grad_norm": 0.2388191968202591, + "learning_rate": 2.330864197530864e-05, + "loss": 0.8633686828613282, + "step": 17300 + }, + { + "epoch": 53.7037037037037, + "grad_norm": 0.18569715321063995, + "learning_rate": 2.3154320987654322e-05, + "loss": 0.8634825897216797, + "step": 17400 + }, + { + "epoch": 54.01234567901235, + "grad_norm": 0.23340563476085663, + "learning_rate": 2.3000000000000003e-05, + "loss": 0.8637994384765625, + "step": 17500 + }, + { + "epoch": 54.32098765432099, + "grad_norm": 0.2481815665960312, + "learning_rate": 2.284567901234568e-05, + "loss": 0.8632342529296875, + "step": 17600 + }, + { + "epoch": 54.629629629629626, + "grad_norm": 0.2559766173362732, + "learning_rate": 2.269135802469136e-05, + "loss": 0.8636701202392578, + "step": 17700 + }, + { + "epoch": 54.93827160493827, + "grad_norm": 0.4377776086330414, + "learning_rate": 2.2537037037037036e-05, + "loss": 0.8633976745605468, + "step": 17800 + }, + { + "epoch": 55.24691358024691, + "grad_norm": 0.26731622219085693, + "learning_rate": 2.2382716049382718e-05, + "loss": 0.8637456512451172, + "step": 17900 + }, + { + "epoch": 55.55555555555556, + "grad_norm": 0.25528597831726074, + "learning_rate": 2.2228395061728395e-05, + "loss": 0.8630653381347656, + "step": 18000 + }, + { + "epoch": 55.864197530864196, + "grad_norm": 0.3228375315666199, + "learning_rate": 2.2075617283950617e-05, + "loss": 0.8641485595703124, + "step": 18100 + }, + { + "epoch": 56.17283950617284, + "grad_norm": 0.3410342037677765, + "learning_rate": 2.1921296296296298e-05, + "loss": 0.8628273773193359, + "step": 18200 + }, + { + "epoch": 56.48148148148148, + "grad_norm": 0.27824917435646057, + "learning_rate": 2.1766975308641976e-05, + "loss": 0.8632877349853516, + "step": 18300 + }, + { + "epoch": 56.79012345679013, + "grad_norm": 0.29218852519989014, + "learning_rate": 2.1612654320987653e-05, + "loss": 0.8634963989257812, + "step": 18400 + }, + { + "epoch": 57.098765432098766, + "grad_norm": 0.26962971687316895, + "learning_rate": 2.1458333333333334e-05, + "loss": 0.8631212615966797, + "step": 18500 + }, + { + "epoch": 57.407407407407405, + "grad_norm": 0.31703895330429077, + "learning_rate": 2.1304012345679015e-05, + "loss": 0.8632781219482422, + "step": 18600 + }, + { + "epoch": 57.71604938271605, + "grad_norm": 0.32334306836128235, + "learning_rate": 2.1149691358024693e-05, + "loss": 0.8634398651123046, + "step": 18700 + }, + { + "epoch": 58.02469135802469, + "grad_norm": 0.2593790292739868, + "learning_rate": 2.099537037037037e-05, + "loss": 0.8636258697509765, + "step": 18800 + }, + { + "epoch": 58.333333333333336, + "grad_norm": 0.2949954569339752, + "learning_rate": 2.084104938271605e-05, + "loss": 0.8629860687255859, + "step": 18900 + }, + { + "epoch": 58.641975308641975, + "grad_norm": 0.23345129191875458, + "learning_rate": 2.068672839506173e-05, + "loss": 0.8632596588134765, + "step": 19000 + }, + { + "epoch": 58.95061728395062, + "grad_norm": 0.3483967185020447, + "learning_rate": 2.0532407407407407e-05, + "loss": 0.8632754516601563, + "step": 19100 + }, + { + "epoch": 59.25925925925926, + "grad_norm": 0.24414049088954926, + "learning_rate": 2.0378086419753088e-05, + "loss": 0.863308334350586, + "step": 19200 + }, + { + "epoch": 59.5679012345679, + "grad_norm": 0.22884564101696014, + "learning_rate": 2.0223765432098766e-05, + "loss": 0.8630153656005859, + "step": 19300 + }, + { + "epoch": 59.876543209876544, + "grad_norm": 0.293367862701416, + "learning_rate": 2.0069444444444447e-05, + "loss": 0.8631407165527344, + "step": 19400 + }, + { + "epoch": 60.18518518518518, + "grad_norm": 0.24008184671401978, + "learning_rate": 1.9915123456790125e-05, + "loss": 0.8633984375, + "step": 19500 + }, + { + "epoch": 60.49382716049383, + "grad_norm": 0.2940938472747803, + "learning_rate": 1.9760802469135802e-05, + "loss": 0.8634149932861328, + "step": 19600 + }, + { + "epoch": 60.80246913580247, + "grad_norm": 0.24539810419082642, + "learning_rate": 1.960648148148148e-05, + "loss": 0.8639472961425781, + "step": 19700 + }, + { + "epoch": 61.111111111111114, + "grad_norm": 0.2464188188314438, + "learning_rate": 1.945216049382716e-05, + "loss": 0.8634198760986328, + "step": 19800 + }, + { + "epoch": 61.41975308641975, + "grad_norm": 0.250593900680542, + "learning_rate": 1.9297839506172842e-05, + "loss": 0.8628058624267578, + "step": 19900 + }, + { + "epoch": 61.72839506172839, + "grad_norm": 0.25289106369018555, + "learning_rate": 1.914351851851852e-05, + "loss": 0.862940673828125, + "step": 20000 + }, + { + "epoch": 62.03703703703704, + "grad_norm": 0.270373672246933, + "learning_rate": 1.899074074074074e-05, + "loss": 0.8629447937011718, + "step": 20100 + }, + { + "epoch": 62.34567901234568, + "grad_norm": 0.2208729088306427, + "learning_rate": 1.883641975308642e-05, + "loss": 0.86260498046875, + "step": 20200 + }, + { + "epoch": 62.65432098765432, + "grad_norm": 0.20749305188655853, + "learning_rate": 1.86820987654321e-05, + "loss": 0.8630132293701172, + "step": 20300 + }, + { + "epoch": 62.96296296296296, + "grad_norm": 0.29507532715797424, + "learning_rate": 1.852777777777778e-05, + "loss": 0.8628247833251953, + "step": 20400 + }, + { + "epoch": 63.27160493827161, + "grad_norm": 0.3076235055923462, + "learning_rate": 1.837345679012346e-05, + "loss": 0.863165512084961, + "step": 20500 + }, + { + "epoch": 63.58024691358025, + "grad_norm": 0.25332000851631165, + "learning_rate": 1.8219135802469137e-05, + "loss": 0.8626132202148438, + "step": 20600 + }, + { + "epoch": 63.888888888888886, + "grad_norm": 0.22742706537246704, + "learning_rate": 1.8064814814814814e-05, + "loss": 0.8633429718017578, + "step": 20700 + }, + { + "epoch": 64.19753086419753, + "grad_norm": 0.24907511472702026, + "learning_rate": 1.7910493827160495e-05, + "loss": 0.8628691864013672, + "step": 20800 + }, + { + "epoch": 64.50617283950618, + "grad_norm": 0.37986981868743896, + "learning_rate": 1.7756172839506173e-05, + "loss": 0.862381591796875, + "step": 20900 + }, + { + "epoch": 64.81481481481481, + "grad_norm": 0.26957404613494873, + "learning_rate": 1.7601851851851854e-05, + "loss": 0.8621443176269531, + "step": 21000 + }, + { + "epoch": 65.12345679012346, + "grad_norm": 0.21372266113758087, + "learning_rate": 1.7447530864197532e-05, + "loss": 0.8624749755859376, + "step": 21100 + }, + { + "epoch": 65.4320987654321, + "grad_norm": 0.23659591376781464, + "learning_rate": 1.729320987654321e-05, + "loss": 0.862855453491211, + "step": 21200 + }, + { + "epoch": 65.74074074074075, + "grad_norm": 0.2516464591026306, + "learning_rate": 1.713888888888889e-05, + "loss": 0.8628866577148437, + "step": 21300 + }, + { + "epoch": 66.04938271604938, + "grad_norm": 0.23080387711524963, + "learning_rate": 1.698456790123457e-05, + "loss": 0.8628789520263672, + "step": 21400 + }, + { + "epoch": 66.35802469135803, + "grad_norm": 0.24531495571136475, + "learning_rate": 1.6830246913580246e-05, + "loss": 0.8624163818359375, + "step": 21500 + }, + { + "epoch": 66.66666666666667, + "grad_norm": 0.3036033809185028, + "learning_rate": 1.6675925925925927e-05, + "loss": 0.8630258178710938, + "step": 21600 + }, + { + "epoch": 66.9753086419753, + "grad_norm": 0.24009738862514496, + "learning_rate": 1.6521604938271608e-05, + "loss": 0.8635572814941406, + "step": 21700 + }, + { + "epoch": 67.28395061728395, + "grad_norm": 0.2536623477935791, + "learning_rate": 1.6367283950617286e-05, + "loss": 0.8623932647705078, + "step": 21800 + }, + { + "epoch": 67.5925925925926, + "grad_norm": 0.28109127283096313, + "learning_rate": 1.6212962962962964e-05, + "loss": 0.8624723052978516, + "step": 21900 + }, + { + "epoch": 67.90123456790124, + "grad_norm": 0.2185950130224228, + "learning_rate": 1.605864197530864e-05, + "loss": 0.8623596954345704, + "step": 22000 + }, + { + "epoch": 68.20987654320987, + "grad_norm": 0.33554041385650635, + "learning_rate": 1.5905864197530866e-05, + "loss": 0.8626500701904297, + "step": 22100 + }, + { + "epoch": 68.51851851851852, + "grad_norm": 0.2552665174007416, + "learning_rate": 1.5751543209876544e-05, + "loss": 0.8622700500488282, + "step": 22200 + }, + { + "epoch": 68.82716049382717, + "grad_norm": 0.3290879726409912, + "learning_rate": 1.5597222222222225e-05, + "loss": 0.8628783416748047, + "step": 22300 + }, + { + "epoch": 69.1358024691358, + "grad_norm": 0.23781687021255493, + "learning_rate": 1.5442901234567903e-05, + "loss": 0.8625830841064454, + "step": 22400 + }, + { + "epoch": 69.44444444444444, + "grad_norm": 0.29894009232521057, + "learning_rate": 1.528858024691358e-05, + "loss": 0.8624604034423828, + "step": 22500 + }, + { + "epoch": 69.75308641975309, + "grad_norm": 0.28855380415916443, + "learning_rate": 1.513425925925926e-05, + "loss": 0.8624363708496093, + "step": 22600 + }, + { + "epoch": 70.06172839506173, + "grad_norm": 0.30909860134124756, + "learning_rate": 1.497993827160494e-05, + "loss": 0.8625530242919922, + "step": 22700 + }, + { + "epoch": 70.37037037037037, + "grad_norm": 0.25948941707611084, + "learning_rate": 1.4825617283950618e-05, + "loss": 0.8629596710205079, + "step": 22800 + }, + { + "epoch": 70.67901234567901, + "grad_norm": 0.23436062037944794, + "learning_rate": 1.4671296296296296e-05, + "loss": 0.8624345397949219, + "step": 22900 + }, + { + "epoch": 70.98765432098766, + "grad_norm": 0.22997359931468964, + "learning_rate": 1.4516975308641975e-05, + "loss": 0.8627075958251953, + "step": 23000 + }, + { + "epoch": 71.29629629629629, + "grad_norm": 0.25879642367362976, + "learning_rate": 1.4362654320987657e-05, + "loss": 0.862459716796875, + "step": 23100 + }, + { + "epoch": 71.60493827160494, + "grad_norm": 0.2785871624946594, + "learning_rate": 1.4208333333333334e-05, + "loss": 0.8629904937744141, + "step": 23200 + }, + { + "epoch": 71.91358024691358, + "grad_norm": 0.23828476667404175, + "learning_rate": 1.4054012345679014e-05, + "loss": 0.8625855255126953, + "step": 23300 + }, + { + "epoch": 72.22222222222223, + "grad_norm": 0.28304004669189453, + "learning_rate": 1.3899691358024691e-05, + "loss": 0.8623751068115234, + "step": 23400 + }, + { + "epoch": 72.53086419753086, + "grad_norm": 0.35052117705345154, + "learning_rate": 1.3745370370370372e-05, + "loss": 0.8628295135498046, + "step": 23500 + }, + { + "epoch": 72.8395061728395, + "grad_norm": 0.21472153067588806, + "learning_rate": 1.359104938271605e-05, + "loss": 0.862393798828125, + "step": 23600 + }, + { + "epoch": 73.14814814814815, + "grad_norm": 0.22292311489582062, + "learning_rate": 1.343672839506173e-05, + "loss": 0.8621687316894531, + "step": 23700 + }, + { + "epoch": 73.45679012345678, + "grad_norm": 0.2587008476257324, + "learning_rate": 1.3282407407407407e-05, + "loss": 0.8623291778564454, + "step": 23800 + }, + { + "epoch": 73.76543209876543, + "grad_norm": 0.2771637439727783, + "learning_rate": 1.3128086419753088e-05, + "loss": 0.8624784088134766, + "step": 23900 + }, + { + "epoch": 74.07407407407408, + "grad_norm": 0.2332049012184143, + "learning_rate": 1.2973765432098766e-05, + "loss": 0.8628304290771485, + "step": 24000 + }, + { + "epoch": 74.38271604938272, + "grad_norm": 0.18202383816242218, + "learning_rate": 1.2820987654320987e-05, + "loss": 0.8623355102539062, + "step": 24100 + }, + { + "epoch": 74.69135802469135, + "grad_norm": 0.25001880526542664, + "learning_rate": 1.2666666666666668e-05, + "loss": 0.8625141906738282, + "step": 24200 + }, + { + "epoch": 75.0, + "grad_norm": 0.25027912855148315, + "learning_rate": 1.2512345679012346e-05, + "loss": 0.8624292755126953, + "step": 24300 + }, + { + "epoch": 75.30864197530865, + "grad_norm": 0.2614375054836273, + "learning_rate": 1.2358024691358026e-05, + "loss": 0.8622071838378906, + "step": 24400 + }, + { + "epoch": 75.61728395061728, + "grad_norm": 0.23685692250728607, + "learning_rate": 1.2203703703703705e-05, + "loss": 0.862458724975586, + "step": 24500 + }, + { + "epoch": 75.92592592592592, + "grad_norm": 0.2700103223323822, + "learning_rate": 1.2049382716049383e-05, + "loss": 0.8620365905761719, + "step": 24600 + }, + { + "epoch": 76.23456790123457, + "grad_norm": 0.28203874826431274, + "learning_rate": 1.1895061728395062e-05, + "loss": 0.8621501159667969, + "step": 24700 + }, + { + "epoch": 76.54320987654322, + "grad_norm": 0.2746220827102661, + "learning_rate": 1.1740740740740741e-05, + "loss": 0.8624026489257812, + "step": 24800 + }, + { + "epoch": 76.85185185185185, + "grad_norm": 0.30292582511901855, + "learning_rate": 1.158641975308642e-05, + "loss": 0.862785873413086, + "step": 24900 + }, + { + "epoch": 77.1604938271605, + "grad_norm": 0.2562635540962219, + "learning_rate": 1.1432098765432098e-05, + "loss": 0.8624921417236329, + "step": 25000 + }, + { + "epoch": 77.46913580246914, + "grad_norm": 0.27666226029396057, + "learning_rate": 1.127777777777778e-05, + "loss": 0.8622743988037109, + "step": 25100 + }, + { + "epoch": 77.77777777777777, + "grad_norm": 0.2963859438896179, + "learning_rate": 1.1123456790123457e-05, + "loss": 0.8626934814453125, + "step": 25200 + }, + { + "epoch": 78.08641975308642, + "grad_norm": 0.2593159079551697, + "learning_rate": 1.0969135802469137e-05, + "loss": 0.8621681976318359, + "step": 25300 + }, + { + "epoch": 78.39506172839506, + "grad_norm": 0.2810990810394287, + "learning_rate": 1.0814814814814814e-05, + "loss": 0.8621713256835938, + "step": 25400 + }, + { + "epoch": 78.70370370370371, + "grad_norm": 0.2808496654033661, + "learning_rate": 1.0660493827160495e-05, + "loss": 0.8622039031982421, + "step": 25500 + }, + { + "epoch": 79.01234567901234, + "grad_norm": 0.2452424019575119, + "learning_rate": 1.0506172839506173e-05, + "loss": 0.8625334930419922, + "step": 25600 + }, + { + "epoch": 79.32098765432099, + "grad_norm": 0.2880192697048187, + "learning_rate": 1.0351851851851852e-05, + "loss": 0.8622465515136719, + "step": 25700 + }, + { + "epoch": 79.62962962962963, + "grad_norm": 0.24877040088176727, + "learning_rate": 1.0197530864197532e-05, + "loss": 0.8621809387207031, + "step": 25800 + }, + { + "epoch": 79.93827160493827, + "grad_norm": 0.3088701069355011, + "learning_rate": 1.0043209876543211e-05, + "loss": 0.8624029541015625, + "step": 25900 + }, + { + "epoch": 80.24691358024691, + "grad_norm": 0.19949986040592194, + "learning_rate": 9.888888888888889e-06, + "loss": 0.8618679809570312, + "step": 26000 + }, + { + "epoch": 80.55555555555556, + "grad_norm": 0.3270089626312256, + "learning_rate": 9.734567901234568e-06, + "loss": 0.8620806884765625, + "step": 26100 + }, + { + "epoch": 80.8641975308642, + "grad_norm": 0.24055376648902893, + "learning_rate": 9.581790123456791e-06, + "loss": 0.861843490600586, + "step": 26200 + }, + { + "epoch": 81.17283950617283, + "grad_norm": 0.28812849521636963, + "learning_rate": 9.42746913580247e-06, + "loss": 0.8618939971923828, + "step": 26300 + }, + { + "epoch": 81.48148148148148, + "grad_norm": 0.18239010870456696, + "learning_rate": 9.273148148148149e-06, + "loss": 0.8618624114990234, + "step": 26400 + }, + { + "epoch": 81.79012345679013, + "grad_norm": 0.2698865234851837, + "learning_rate": 9.118827160493828e-06, + "loss": 0.8617278289794922, + "step": 26500 + }, + { + "epoch": 82.09876543209876, + "grad_norm": 0.2671756446361542, + "learning_rate": 8.964506172839507e-06, + "loss": 0.8620853424072266, + "step": 26600 + }, + { + "epoch": 82.4074074074074, + "grad_norm": 0.20211544632911682, + "learning_rate": 8.810185185185185e-06, + "loss": 0.8620963287353516, + "step": 26700 + }, + { + "epoch": 82.71604938271605, + "grad_norm": 0.3215954899787903, + "learning_rate": 8.655864197530864e-06, + "loss": 0.8621923065185547, + "step": 26800 + }, + { + "epoch": 83.0246913580247, + "grad_norm": 0.2056690901517868, + "learning_rate": 8.501543209876544e-06, + "loss": 0.8621724700927734, + "step": 26900 + }, + { + "epoch": 83.33333333333333, + "grad_norm": 0.24216392636299133, + "learning_rate": 8.347222222222223e-06, + "loss": 0.8620801544189454, + "step": 27000 + }, + { + "epoch": 83.64197530864197, + "grad_norm": 0.28262120485305786, + "learning_rate": 8.1929012345679e-06, + "loss": 0.861885986328125, + "step": 27100 + }, + { + "epoch": 83.95061728395062, + "grad_norm": 0.3250841200351715, + "learning_rate": 8.03858024691358e-06, + "loss": 0.8618600463867188, + "step": 27200 + }, + { + "epoch": 84.25925925925925, + "grad_norm": 0.27586230635643005, + "learning_rate": 7.88425925925926e-06, + "loss": 0.8616656494140625, + "step": 27300 + }, + { + "epoch": 84.5679012345679, + "grad_norm": 0.2721251845359802, + "learning_rate": 7.729938271604939e-06, + "loss": 0.8620500183105468, + "step": 27400 + }, + { + "epoch": 84.87654320987654, + "grad_norm": 0.26842591166496277, + "learning_rate": 7.5756172839506175e-06, + "loss": 0.8617433929443359, + "step": 27500 + }, + { + "epoch": 85.18518518518519, + "grad_norm": 0.23888643085956573, + "learning_rate": 7.421296296296297e-06, + "loss": 0.861810073852539, + "step": 27600 + }, + { + "epoch": 85.49382716049382, + "grad_norm": 0.24433459341526031, + "learning_rate": 7.2669753086419754e-06, + "loss": 0.8616561889648438, + "step": 27700 + }, + { + "epoch": 85.80246913580247, + "grad_norm": 0.24760094285011292, + "learning_rate": 7.112654320987655e-06, + "loss": 0.8622868347167969, + "step": 27800 + }, + { + "epoch": 86.11111111111111, + "grad_norm": 0.19840151071548462, + "learning_rate": 6.958333333333333e-06, + "loss": 0.8618616485595703, + "step": 27900 + }, + { + "epoch": 86.41975308641975, + "grad_norm": 0.24764691293239594, + "learning_rate": 6.804012345679013e-06, + "loss": 0.8621045684814453, + "step": 28000 + }, + { + "epoch": 86.72839506172839, + "grad_norm": 0.23593583703041077, + "learning_rate": 6.649691358024691e-06, + "loss": 0.8618828582763672, + "step": 28100 + }, + { + "epoch": 87.03703703703704, + "grad_norm": 0.2748619318008423, + "learning_rate": 6.496913580246914e-06, + "loss": 0.8616398620605469, + "step": 28200 + }, + { + "epoch": 87.34567901234568, + "grad_norm": 0.2573417127132416, + "learning_rate": 6.342592592592593e-06, + "loss": 0.8620298004150391, + "step": 28300 + }, + { + "epoch": 87.65432098765432, + "grad_norm": 0.2384900599718094, + "learning_rate": 6.188271604938272e-06, + "loss": 0.8617670440673828, + "step": 28400 + }, + { + "epoch": 87.96296296296296, + "grad_norm": 0.21160998940467834, + "learning_rate": 6.033950617283951e-06, + "loss": 0.861859359741211, + "step": 28500 + }, + { + "epoch": 88.27160493827161, + "grad_norm": 0.39718398451805115, + "learning_rate": 5.87962962962963e-06, + "loss": 0.8616744995117187, + "step": 28600 + }, + { + "epoch": 88.58024691358025, + "grad_norm": 0.27755340933799744, + "learning_rate": 5.725308641975309e-06, + "loss": 0.8617410278320312, + "step": 28700 + }, + { + "epoch": 88.88888888888889, + "grad_norm": 0.2871803939342499, + "learning_rate": 5.570987654320988e-06, + "loss": 0.8616901397705078, + "step": 28800 + }, + { + "epoch": 89.19753086419753, + "grad_norm": 0.3335205614566803, + "learning_rate": 5.416666666666667e-06, + "loss": 0.8615732574462891, + "step": 28900 + }, + { + "epoch": 89.50617283950618, + "grad_norm": 0.23746320605278015, + "learning_rate": 5.262345679012346e-06, + "loss": 0.861851806640625, + "step": 29000 + }, + { + "epoch": 89.81481481481481, + "grad_norm": 0.28229081630706787, + "learning_rate": 5.1080246913580255e-06, + "loss": 0.86148681640625, + "step": 29100 + }, + { + "epoch": 90.12345679012346, + "grad_norm": 0.21336163580417633, + "learning_rate": 4.953703703703704e-06, + "loss": 0.861663818359375, + "step": 29200 + }, + { + "epoch": 90.4320987654321, + "grad_norm": 0.2604101300239563, + "learning_rate": 4.7993827160493834e-06, + "loss": 0.8617544555664063, + "step": 29300 + }, + { + "epoch": 90.74074074074075, + "grad_norm": 0.26023662090301514, + "learning_rate": 4.645061728395062e-06, + "loss": 0.8617599487304688, + "step": 29400 + }, + { + "epoch": 91.04938271604938, + "grad_norm": 0.26295042037963867, + "learning_rate": 4.490740740740741e-06, + "loss": 0.8617560577392578, + "step": 29500 + }, + { + "epoch": 91.35802469135803, + "grad_norm": 0.22411581873893738, + "learning_rate": 4.33641975308642e-06, + "loss": 0.8616332244873047, + "step": 29600 + }, + { + "epoch": 91.66666666666667, + "grad_norm": 0.24028459191322327, + "learning_rate": 4.182098765432099e-06, + "loss": 0.8615241241455078, + "step": 29700 + }, + { + "epoch": 91.9753086419753, + "grad_norm": 0.25509828329086304, + "learning_rate": 4.027777777777779e-06, + "loss": 0.8616260528564453, + "step": 29800 + }, + { + "epoch": 92.28395061728395, + "grad_norm": 0.22896139323711395, + "learning_rate": 3.873456790123457e-06, + "loss": 0.8615116882324219, + "step": 29900 + }, + { + "epoch": 92.5925925925926, + "grad_norm": 0.1981690675020218, + "learning_rate": 3.719135802469136e-06, + "loss": 0.8616599273681641, + "step": 30000 + }, + { + "epoch": 92.90123456790124, + "grad_norm": 0.2998819053173065, + "learning_rate": 3.564814814814815e-06, + "loss": 0.8616020965576172, + "step": 30100 + }, + { + "epoch": 93.20987654320987, + "grad_norm": 0.2514878213405609, + "learning_rate": 3.412037037037037e-06, + "loss": 0.8614517974853516, + "step": 30200 + }, + { + "epoch": 93.51851851851852, + "grad_norm": 0.24726809561252594, + "learning_rate": 3.257716049382716e-06, + "loss": 0.8615573883056641, + "step": 30300 + }, + { + "epoch": 93.82716049382717, + "grad_norm": 0.24331317842006683, + "learning_rate": 3.1033950617283954e-06, + "loss": 0.861545181274414, + "step": 30400 + }, + { + "epoch": 94.1358024691358, + "grad_norm": 0.29127877950668335, + "learning_rate": 2.9490740740740743e-06, + "loss": 0.8617371368408203, + "step": 30500 + }, + { + "epoch": 94.44444444444444, + "grad_norm": 0.3069797456264496, + "learning_rate": 2.7947530864197533e-06, + "loss": 0.8614784240722656, + "step": 30600 + }, + { + "epoch": 94.75308641975309, + "grad_norm": 0.25526171922683716, + "learning_rate": 2.6404320987654323e-06, + "loss": 0.8612818908691406, + "step": 30700 + }, + { + "epoch": 95.06172839506173, + "grad_norm": 0.25805607438087463, + "learning_rate": 2.4861111111111112e-06, + "loss": 0.8611087799072266, + "step": 30800 + }, + { + "epoch": 95.37037037037037, + "grad_norm": 0.24607188999652863, + "learning_rate": 2.33179012345679e-06, + "loss": 0.8613501739501953, + "step": 30900 + }, + { + "epoch": 95.67901234567901, + "grad_norm": 0.3257257640361786, + "learning_rate": 2.177469135802469e-06, + "loss": 0.8614185333251954, + "step": 31000 + }, + { + "epoch": 95.98765432098766, + "grad_norm": 0.3006044924259186, + "learning_rate": 2.0231481481481485e-06, + "loss": 0.8614950561523438, + "step": 31100 + }, + { + "epoch": 96.29629629629629, + "grad_norm": 0.26980897784233093, + "learning_rate": 1.8688271604938273e-06, + "loss": 0.8614867401123046, + "step": 31200 + }, + { + "epoch": 96.60493827160494, + "grad_norm": 0.25481465458869934, + "learning_rate": 1.7145061728395064e-06, + "loss": 0.8614888000488281, + "step": 31300 + }, + { + "epoch": 96.91358024691358, + "grad_norm": 0.2795570194721222, + "learning_rate": 1.5601851851851852e-06, + "loss": 0.8614127349853515, + "step": 31400 + }, + { + "epoch": 97.22222222222223, + "grad_norm": 0.2887301743030548, + "learning_rate": 1.4058641975308641e-06, + "loss": 0.8610345458984375, + "step": 31500 + }, + { + "epoch": 97.53086419753086, + "grad_norm": 0.28151342272758484, + "learning_rate": 1.2515432098765433e-06, + "loss": 0.8611799621582031, + "step": 31600 + }, + { + "epoch": 97.8395061728395, + "grad_norm": 0.2844570279121399, + "learning_rate": 1.0972222222222223e-06, + "loss": 0.8612938690185546, + "step": 31700 + }, + { + "epoch": 98.14814814814815, + "grad_norm": 0.28799548745155334, + "learning_rate": 9.429012345679012e-07, + "loss": 0.8612958526611328, + "step": 31800 + }, + { + "epoch": 98.45679012345678, + "grad_norm": 0.17849087715148926, + "learning_rate": 7.885802469135803e-07, + "loss": 0.8611792755126954, + "step": 31900 + }, + { + "epoch": 98.76543209876543, + "grad_norm": 0.2363658845424652, + "learning_rate": 6.342592592592592e-07, + "loss": 0.8614938354492188, + "step": 32000 + }, + { + "epoch": 99.07407407407408, + "grad_norm": 0.3181602358818054, + "learning_rate": 4.799382716049383e-07, + "loss": 0.8611763000488282, + "step": 32100 + }, + { + "epoch": 99.38271604938272, + "grad_norm": 0.23163554072380066, + "learning_rate": 3.271604938271605e-07, + "loss": 0.8610628509521484, + "step": 32200 + }, + { + "epoch": 99.69135802469135, + "grad_norm": 0.25123292207717896, + "learning_rate": 1.7283950617283952e-07, + "loss": 0.8611888122558594, + "step": 32300 + }, + { + "epoch": 100.0, + "grad_norm": 0.3190302550792694, + "learning_rate": 1.8518518518518518e-08, + "loss": 0.8613631439208984, + "step": 32400 + } + ], + "logging_steps": 100, + "max_steps": 32400, + "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": 2910192559718400.0, + "train_batch_size": 8, + "trial_name": null, + "trial_params": null +} diff --git a/timecost/c7/realtabformer/rtf-c7-20260429_070344/rtf_checkpoints/checkpoint-32400/training_args.bin b/timecost/c7/realtabformer/rtf-c7-20260429_070344/rtf_checkpoints/checkpoint-32400/training_args.bin new file mode 100644 index 0000000000000000000000000000000000000000..34d68dc0e0fe1c1f12a2e581dd1b166aa7178a9e --- /dev/null +++ b/timecost/c7/realtabformer/rtf-c7-20260429_070344/rtf_checkpoints/checkpoint-32400/training_args.bin @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:9e2cd88337d1d846c6918d2b3b63fa3e5c93f12fefc082497590da854a564607 +size 5201 diff --git a/timecost/c7/realtabformer/rtf-c7-20260429_070344/runtime_result.json b/timecost/c7/realtabformer/rtf-c7-20260429_070344/runtime_result.json new file mode 100644 index 0000000000000000000000000000000000000000..d70d3a176bd8a2216ec311139a6a0db010fe4922 --- /dev/null +++ b/timecost/c7/realtabformer/rtf-c7-20260429_070344/runtime_result.json @@ -0,0 +1,15 @@ +{ + "dataset_id": "c7", + "model": "realtabformer", + "run_id": "rtf-c7-20260429_070344", + "public_gate_status": "pass", + "adapter_ready_status": "pass", + "train_status": "success", + "generate_status": "success", + "reason_code": null, + "reason_detail": null, + "artifacts": { + "synthetic_csv": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/c7/realtabformer/rtf-c7-20260429_070344/rtf-c7-10368-20260429_080628.csv", + "model_path": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/c7/realtabformer/rtf-c7-20260429_070344/models_100epochs" + } +} \ No newline at end of file diff --git a/timecost/c7/realtabformer/rtf-c7-20260429_070344/staged/public/staged_features.json b/timecost/c7/realtabformer/rtf-c7-20260429_070344/staged/public/staged_features.json new file mode 100644 index 0000000000000000000000000000000000000000..0e23df6bcfb7ecfd44dfefc3d0ca0bf6b6aebc60 --- /dev/null +++ b/timecost/c7/realtabformer/rtf-c7-20260429_070344/staged/public/staged_features.json @@ -0,0 +1,47 @@ +[ + { + "feature_name": "parents", + "data_type": "categorical", + "is_target": false + }, + { + "feature_name": "has_nurs", + "data_type": "categorical", + "is_target": false + }, + { + "feature_name": "form", + "data_type": "categorical", + "is_target": false + }, + { + "feature_name": "children", + "data_type": "categorical", + "is_target": false + }, + { + "feature_name": "housing", + "data_type": "categorical", + "is_target": false + }, + { + "feature_name": "finance", + "data_type": "categorical", + "is_target": false + }, + { + "feature_name": "social", + "data_type": "categorical", + "is_target": false + }, + { + "feature_name": "health", + "data_type": "categorical", + "is_target": false + }, + { + "feature_name": "class", + "data_type": "categorical", + "is_target": true + } +] \ No newline at end of file diff --git a/timecost/c7/realtabformer/rtf-c7-20260429_070344/staged/public/test.csv b/timecost/c7/realtabformer/rtf-c7-20260429_070344/staged/public/test.csv new file mode 100644 index 0000000000000000000000000000000000000000..cb9d7081ca745e9eed28a35168872d450c4a2a44 --- /dev/null +++ b/timecost/c7/realtabformer/rtf-c7-20260429_070344/staged/public/test.csv @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:2042076337d5c37c6476e6bca2bd33cb5a171450c27894534ef50ac223256058 +size 106030 diff --git a/timecost/c7/realtabformer/rtf-c7-20260429_070344/staged/public/train.csv b/timecost/c7/realtabformer/rtf-c7-20260429_070344/staged/public/train.csv new file mode 100644 index 0000000000000000000000000000000000000000..4c8e5e0c5031fc7e8e25213132c1231950ec29da --- /dev/null +++ b/timecost/c7/realtabformer/rtf-c7-20260429_070344/staged/public/train.csv @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:b37f6b2ef5257f40bd826ac956749881f0f474362bdb56e8c5728ad629242e3a +size 847349 diff --git a/timecost/c7/realtabformer/rtf-c7-20260429_070344/staged/public/val.csv b/timecost/c7/realtabformer/rtf-c7-20260429_070344/staged/public/val.csv new file mode 100644 index 0000000000000000000000000000000000000000..55792963756b1ae35b4d79dee11881372962b8d5 --- /dev/null +++ b/timecost/c7/realtabformer/rtf-c7-20260429_070344/staged/public/val.csv @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:eff6dec27c3740661a1ae84dea391d690dfb60342bfd5d7527b903fdd6009780 +size 106192 diff --git a/timecost/c7/realtabformer/rtf-c7-20260429_070344/staged/realtabformer/adapter_report.json b/timecost/c7/realtabformer/rtf-c7-20260429_070344/staged/realtabformer/adapter_report.json new file mode 100644 index 0000000000000000000000000000000000000000..9b999a50d39f47c42e4fc685be1e9645db5c0ff6 --- /dev/null +++ b/timecost/c7/realtabformer/rtf-c7-20260429_070344/staged/realtabformer/adapter_report.json @@ -0,0 +1,7 @@ +{ + "adapter_ready_status": "pass", + "adapter_fail_reason_code": null, + "adapter_fail_detail": null, + "adapter_transforms_applied": [], + "model_input_manifest": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/c7/realtabformer/rtf-c7-20260429_070344/staged/realtabformer/model_input_manifest.json" +} \ No newline at end of file diff --git a/timecost/c7/realtabformer/rtf-c7-20260429_070344/staged/realtabformer/adapter_transforms_applied.json b/timecost/c7/realtabformer/rtf-c7-20260429_070344/staged/realtabformer/adapter_transforms_applied.json new file mode 100644 index 0000000000000000000000000000000000000000..0637a088a01e8ddab3bf3fa98dbe804cbde1a0dc --- /dev/null +++ b/timecost/c7/realtabformer/rtf-c7-20260429_070344/staged/realtabformer/adapter_transforms_applied.json @@ -0,0 +1 @@ +[] \ No newline at end of file diff --git a/timecost/c7/realtabformer/rtf-c7-20260429_070344/staged/realtabformer/model_input_manifest.json b/timecost/c7/realtabformer/rtf-c7-20260429_070344/staged/realtabformer/model_input_manifest.json new file mode 100644 index 0000000000000000000000000000000000000000..1a75da5853b249b52a61b85c500ef410dafc3c49 --- /dev/null +++ b/timecost/c7/realtabformer/rtf-c7-20260429_070344/staged/realtabformer/model_input_manifest.json @@ -0,0 +1,190 @@ +{ + "dataset_id": "c7", + "model": "realtabformer", + "target_column": "class", + "task_type": "classification", + "column_schema": [ + { + "name": "parents", + "role": "feature", + "semantic_type": "categorical", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 3, + "unique_ratio": 0.000289, + "example_values": [ + "usual", + "pretentious", + "great_pret" + ] + } + }, + { + "name": "has_nurs", + "role": "feature", + "semantic_type": "categorical", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 5, + "unique_ratio": 0.000482, + "example_values": [ + "very_crit", + "critical", + "improper", + "less_proper", + "proper" + ] + } + }, + { + "name": "form", + "role": "feature", + "semantic_type": "categorical", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 4, + "unique_ratio": 0.000386, + "example_values": [ + "complete", + "completed", + "incomplete", + "foster" + ] + } + }, + { + "name": "children", + "role": "feature", + "semantic_type": "categorical", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 4, + "unique_ratio": 0.000386, + "example_values": [ + "1", + "3", + "2", + "more" + ] + } + }, + { + "name": "housing", + "role": "feature", + "semantic_type": "categorical", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 3, + "unique_ratio": 0.000289, + "example_values": [ + "less_conv", + "convenient", + "critical" + ] + } + }, + { + "name": "finance", + "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.000193, + "example_values": [ + "convenient", + "inconv" + ] + } + }, + { + "name": "social", + "role": "feature", + "semantic_type": "categorical", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 3, + "unique_ratio": 0.000289, + "example_values": [ + "slightly_prob", + "nonprob", + "problematic" + ] + } + }, + { + "name": "health", + "role": "feature", + "semantic_type": "categorical", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 3, + "unique_ratio": 0.000289, + "example_values": [ + "recommended", + "priority", + "not_recom" + ] + } + }, + { + "name": "class", + "role": "target", + "semantic_type": "categorical", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 5, + "unique_ratio": 0.000482, + "example_values": [ + "priority", + "spec_prior", + "not_recom", + "very_recom", + "recommend" + ] + } + } + ], + "public_manifest": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/c7/realtabformer/rtf-c7-20260429_070344/public_gate/staged_input_manifest.json", + "train_csv": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/c7/realtabformer/rtf-c7-20260429_070344/staged/public/train.csv", + "val_csv": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/c7/realtabformer/rtf-c7-20260429_070344/staged/public/val.csv", + "test_csv": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/c7/realtabformer/rtf-c7-20260429_070344/staged/public/test.csv", + "features_json": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/c7/realtabformer/rtf-c7-20260429_070344/staged/public/staged_features.json", + "public_gate_report": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/c7/realtabformer/rtf-c7-20260429_070344/public_gate/public_gate_report.json" +} \ No newline at end of file diff --git a/timecost/c7/realtabformer/rtf-c7-20260429_070344/train_20260429_070344.log b/timecost/c7/realtabformer/rtf-c7-20260429_070344/train_20260429_070344.log new file mode 100644 index 0000000000000000000000000000000000000000..048cf82be1ff1cb1f3486adf2046c5f879f4a9d0 --- /dev/null +++ b/timecost/c7/realtabformer/rtf-c7-20260429_070344/train_20260429_070344.log @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:c729c4774de7f9400da97b1cd3ce45a56835d11ee8ee0de191e7e09f1eda6152 +size 1439900 diff --git a/timecost/c7/tabbyflow/tabbyflow-c7-20260429_041029/_tabbyflow_gen.py b/timecost/c7/tabbyflow/tabbyflow-c7-20260429_041029/_tabbyflow_gen.py new file mode 100644 index 0000000000000000000000000000000000000000..9ad288fec400c0668155bb19d8de6e9b07caa996 --- /dev/null +++ b/timecost/c7/tabbyflow/tabbyflow-c7-20260429_041029/_tabbyflow_gen.py @@ -0,0 +1,33 @@ + +import os, shutil, subprocess, sys +root = r"/workspace/ef-vfm" +name = r"pipeline_c7" +src = r"/work/output-Benchmark-trainonly-v1/c7/tabbyflow/tabbyflow-c7-20260429_041029/tabular_bundle/pipeline_c7" +dst_data = os.path.join(root, "data", name) +shutil.rmtree(dst_data, ignore_errors=True) +shutil.copytree(src, dst_data) +dst_syn = os.path.join(root, "synthetic", name) +os.makedirs(dst_syn, exist_ok=True) +for fn in ("real.csv", "test.csv", "val.csv"): + shutil.copy(os.path.join(src, fn), os.path.join(dst_syn, fn)) +os.chdir(root) +os.environ["PYTHONPATH"] = root + os.pathsep + os.environ.get("PYTHONPATH", "") +subprocess.check_call([ + sys.executable, "main.py", + "--dataname", name, "--mode", "test", "--gpu", "0", + "--no_wandb", "--exp_name", r"adapter_efvfm", + "--ckpt_path", r"/workspace/ef-vfm/ef_vfm/ckpt/pipeline_c7/adapter_efvfm/model_500.pt", + "--num_samples_to_generate", str(int(10368)), +]) +base = os.path.join(root, "ef_vfm", "result", name, r"adapter_efvfm") +best = None +best_t = -1.0 +for r, _, files in os.walk(base): + if "samples.csv" in files: + p = os.path.join(r, "samples.csv") + t = os.path.getmtime(p) + if t > best_t: + best_t, best = t, p +if not best: + raise SystemExit("tabbyflow: no samples.csv in " + base) +shutil.copy(best, r"/work/output-Benchmark-trainonly-v1/c7/tabbyflow/tabbyflow-c7-20260429_041029/tabbyflow-c7-10368-20260429_041920.csv") diff --git a/timecost/c7/tabbyflow/tabbyflow-c7-20260429_041029/_tabbyflow_train.py b/timecost/c7/tabbyflow/tabbyflow-c7-20260429_041029/_tabbyflow_train.py new file mode 100644 index 0000000000000000000000000000000000000000..9484ef96dd6870b7e56330dbf2a0dd197072132f --- /dev/null +++ b/timecost/c7/tabbyflow/tabbyflow-c7-20260429_041029/_tabbyflow_train.py @@ -0,0 +1,22 @@ + +import os, shutil, subprocess, sys +root = r"/workspace/ef-vfm" +name = r"pipeline_c7" +src = r"/work/output-Benchmark-trainonly-v1/c7/tabbyflow/tabbyflow-c7-20260429_041029/tabular_bundle/pipeline_c7" +os.makedirs(os.path.join(root, "data", name), exist_ok=True) +dst_data = os.path.join(root, "data", name) +dst_syn = os.path.join(root, "synthetic", name) +shutil.rmtree(dst_data, ignore_errors=True) +shutil.copytree(src, dst_data) +os.makedirs(dst_syn, exist_ok=True) +for fn in ("real.csv", "test.csv", "val.csv"): + shutil.copy(os.path.join(src, fn), os.path.join(dst_syn, fn)) +os.chdir(root) +os.environ["PYTHONPATH"] = root + os.pathsep + os.environ.get("PYTHONPATH", "") +os.environ["EFVFM_SMOKE_STEPS"] = "500" +os.environ["EFVFM_ADAPTER_TRAIN"] = "1" +subprocess.check_call([ + sys.executable, "main.py", + "--dataname", name, "--mode", "train", "--gpu", "0", + "--no_wandb", "--exp_name", r"adapter_efvfm", +]) diff --git a/timecost/c7/tabbyflow/tabbyflow-c7-20260429_041029/gen_20260429_041920.log b/timecost/c7/tabbyflow/tabbyflow-c7-20260429_041029/gen_20260429_041920.log new file mode 100644 index 0000000000000000000000000000000000000000..9ac03c6fda4b58aba68c9a602fc3b49495141ac9 --- /dev/null +++ b/timecost/c7/tabbyflow/tabbyflow-c7-20260429_041029/gen_20260429_041920.log @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:5e97cf73bc23ea58d1eb7881bc42f26521eef278a43d7d496799711f96af4b52 +size 3177 diff --git a/timecost/c7/tabbyflow/tabbyflow-c7-20260429_041029/input_snapshot.json b/timecost/c7/tabbyflow/tabbyflow-c7-20260429_041029/input_snapshot.json new file mode 100644 index 0000000000000000000000000000000000000000..daee91b9fc0d787f6dab7fca5b0b13db985cc55a --- /dev/null +++ b/timecost/c7/tabbyflow/tabbyflow-c7-20260429_041029/input_snapshot.json @@ -0,0 +1,36 @@ +{ + "dataset_id": "c7", + "model": "tabbyflow", + "inputs": { + "train_csv": { + "path": "/data/jialinzhang/SynthesizePipeline-server/DatasetNew/c7/c7-train.csv", + "exists": true, + "size": 857718, + "sha256": "0ec97b49cecfd452f07551a63db7b812b5998a1e37101eae82255d00aa6a6243" + }, + "val_csv": { + "path": "/data/jialinzhang/SynthesizePipeline-server/DatasetNew/c7/c7-val.csv", + "exists": true, + "size": 107489, + "sha256": "4501bb2be19f7e13b7ff5e9dedd74e3dd42f2cafc8cefd5435bda61fc974a769" + }, + "test_csv": { + "path": "/data/jialinzhang/SynthesizePipeline-server/DatasetNew/c7/c7-test.csv", + "exists": true, + "size": 107327, + "sha256": "f9e808033a07feabb980addcf8c5f75111189ac2fb70993b8ad0f5ca3d5cfbae" + }, + "profile_json": { + "path": "/data/jialinzhang/SynthesizePipeline-server/DatasetNew/artifacts/data_core/tabular/c7/c7-dataset_profile.json", + "exists": true, + "size": 4014, + "sha256": "60424c615b91a26cf02d9bc1d7f91caa0ceb95bab39eb7cff6f9edea3ca0600e" + }, + "contract_json": { + "path": "/data/jialinzhang/SynthesizePipeline-server/DatasetNew/artifacts/data_core/tabular/c7/c7-dataset_contract_v1.json", + "exists": true, + "size": 4759, + "sha256": "79a434a1e2553b14b9f2e98c1adfc32a71aaa0d6cd49234f3f8a5603efca4ebd" + } + } +} \ No newline at end of file diff --git a/timecost/c7/tabbyflow/tabbyflow-c7-20260429_041029/models_tabbyflow/trained.pt b/timecost/c7/tabbyflow/tabbyflow-c7-20260429_041029/models_tabbyflow/trained.pt new file mode 100644 index 0000000000000000000000000000000000000000..f063a878c470d9d40f79db79881596e1e497dffd --- /dev/null +++ b/timecost/c7/tabbyflow/tabbyflow-c7-20260429_041029/models_tabbyflow/trained.pt @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:adb734fec12f2251befd371dca69e481b19464aded2a6823105a01b4be6ddbe5 +size 40 diff --git a/timecost/c7/tabbyflow/tabbyflow-c7-20260429_041029/public_gate/normalized_schema_snapshot.json b/timecost/c7/tabbyflow/tabbyflow-c7-20260429_041029/public_gate/normalized_schema_snapshot.json new file mode 100644 index 0000000000000000000000000000000000000000..3ea4859ec2aa245a19531b254f45d87237c23069 --- /dev/null +++ b/timecost/c7/tabbyflow/tabbyflow-c7-20260429_041029/public_gate/normalized_schema_snapshot.json @@ -0,0 +1,183 @@ +{ + "dataset_id": "c7", + "target_column": "class", + "task_type": "classification", + "columns": [ + { + "name": "parents", + "role": "feature", + "semantic_type": "categorical", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 3, + "unique_ratio": 0.000289, + "example_values": [ + "usual", + "pretentious", + "great_pret" + ] + } + }, + { + "name": "has_nurs", + "role": "feature", + "semantic_type": "categorical", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 5, + "unique_ratio": 0.000482, + "example_values": [ + "very_crit", + "critical", + "improper", + "less_proper", + "proper" + ] + } + }, + { + "name": "form", + "role": "feature", + "semantic_type": "categorical", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 4, + "unique_ratio": 0.000386, + "example_values": [ + "complete", + "completed", + "incomplete", + "foster" + ] + } + }, + { + "name": "children", + "role": "feature", + "semantic_type": "categorical", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 4, + "unique_ratio": 0.000386, + "example_values": [ + "1", + "3", + "2", + "more" + ] + } + }, + { + "name": "housing", + "role": "feature", + "semantic_type": "categorical", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 3, + "unique_ratio": 0.000289, + "example_values": [ + "less_conv", + "convenient", + "critical" + ] + } + }, + { + "name": "finance", + "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.000193, + "example_values": [ + "convenient", + "inconv" + ] + } + }, + { + "name": "social", + "role": "feature", + "semantic_type": "categorical", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 3, + "unique_ratio": 0.000289, + "example_values": [ + "slightly_prob", + "nonprob", + "problematic" + ] + } + }, + { + "name": "health", + "role": "feature", + "semantic_type": "categorical", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 3, + "unique_ratio": 0.000289, + "example_values": [ + "recommended", + "priority", + "not_recom" + ] + } + }, + { + "name": "class", + "role": "target", + "semantic_type": "categorical", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 5, + "unique_ratio": 0.000482, + "example_values": [ + "priority", + "spec_prior", + "not_recom", + "very_recom", + "recommend" + ] + } + } + ] +} \ No newline at end of file diff --git a/timecost/c7/tabbyflow/tabbyflow-c7-20260429_041029/public_gate/public_gate_report.json b/timecost/c7/tabbyflow/tabbyflow-c7-20260429_041029/public_gate/public_gate_report.json new file mode 100644 index 0000000000000000000000000000000000000000..3328fe59cd490a424e50f931e9eedba9e81d1cec --- /dev/null +++ b/timecost/c7/tabbyflow/tabbyflow-c7-20260429_041029/public_gate/public_gate_report.json @@ -0,0 +1,37 @@ +{ + "dataset_id": "c7", + "status": "pass", + "checks": [ + { + "check_id": "PG001_csv_parse_ok", + "status": "pass" + }, + { + "check_id": "PG002_split_header_consistent", + "status": "pass" + }, + { + "check_id": "PG003_profile_header_match", + "status": "pass" + }, + { + "check_id": "PG004_missing_token_normalized", + "status": "pass" + }, + { + "check_id": "PG005_semantic_type_validated", + "status": "pass" + }, + { + "check_id": "PG006_target_defined_and_valid", + "status": "pass" + } + ], + "target_column": "class", + "task_type": "classification", + "input_splits": { + "train": "/data/jialinzhang/SynthesizePipeline-server/DatasetNew/c7/c7-train.csv", + "val": "/data/jialinzhang/SynthesizePipeline-server/DatasetNew/c7/c7-val.csv", + "test": "/data/jialinzhang/SynthesizePipeline-server/DatasetNew/c7/c7-test.csv" + } +} \ No newline at end of file diff --git a/timecost/c7/tabbyflow/tabbyflow-c7-20260429_041029/public_gate/staged_input_manifest.json b/timecost/c7/tabbyflow/tabbyflow-c7-20260429_041029/public_gate/staged_input_manifest.json new file mode 100644 index 0000000000000000000000000000000000000000..fe5283fdbcc80bbd6af0401c31b77eb00e77cac6 --- /dev/null +++ b/timecost/c7/tabbyflow/tabbyflow-c7-20260429_041029/public_gate/staged_input_manifest.json @@ -0,0 +1,188 @@ +{ + "dataset_id": "c7", + "target_column": "class", + "task_type": "classification", + "train_csv": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/c7/tabbyflow/tabbyflow-c7-20260429_041029/staged/public/train.csv", + "val_csv": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/c7/tabbyflow/tabbyflow-c7-20260429_041029/staged/public/val.csv", + "test_csv": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/c7/tabbyflow/tabbyflow-c7-20260429_041029/staged/public/test.csv", + "features_json": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/c7/tabbyflow/tabbyflow-c7-20260429_041029/staged/public/staged_features.json", + "public_gate_report": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/c7/tabbyflow/tabbyflow-c7-20260429_041029/public_gate/public_gate_report.json", + "column_schema": [ + { + "name": "parents", + "role": "feature", + "semantic_type": "categorical", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 3, + "unique_ratio": 0.000289, + "example_values": [ + "usual", + "pretentious", + "great_pret" + ] + } + }, + { + "name": "has_nurs", + "role": "feature", + "semantic_type": "categorical", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 5, + "unique_ratio": 0.000482, + "example_values": [ + "very_crit", + "critical", + "improper", + "less_proper", + "proper" + ] + } + }, + { + "name": "form", + "role": "feature", + "semantic_type": "categorical", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 4, + "unique_ratio": 0.000386, + "example_values": [ + "complete", + "completed", + "incomplete", + "foster" + ] + } + }, + { + "name": "children", + "role": "feature", + "semantic_type": "categorical", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 4, + "unique_ratio": 0.000386, + "example_values": [ + "1", + "3", + "2", + "more" + ] + } + }, + { + "name": "housing", + "role": "feature", + "semantic_type": "categorical", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 3, + "unique_ratio": 0.000289, + "example_values": [ + "less_conv", + "convenient", + "critical" + ] + } + }, + { + "name": "finance", + "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.000193, + "example_values": [ + "convenient", + "inconv" + ] + } + }, + { + "name": "social", + "role": "feature", + "semantic_type": "categorical", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 3, + "unique_ratio": 0.000289, + "example_values": [ + "slightly_prob", + "nonprob", + "problematic" + ] + } + }, + { + "name": "health", + "role": "feature", + "semantic_type": "categorical", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 3, + "unique_ratio": 0.000289, + "example_values": [ + "recommended", + "priority", + "not_recom" + ] + } + }, + { + "name": "class", + "role": "target", + "semantic_type": "categorical", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 5, + "unique_ratio": 0.000482, + "example_values": [ + "priority", + "spec_prior", + "not_recom", + "very_recom", + "recommend" + ] + } + } + ] +} \ No newline at end of file diff --git a/timecost/c7/tabbyflow/tabbyflow-c7-20260429_041029/runtime_result.json b/timecost/c7/tabbyflow/tabbyflow-c7-20260429_041029/runtime_result.json new file mode 100644 index 0000000000000000000000000000000000000000..8a921c948d241b5c5374c6667d7d0b7d949d316f --- /dev/null +++ b/timecost/c7/tabbyflow/tabbyflow-c7-20260429_041029/runtime_result.json @@ -0,0 +1,15 @@ +{ + "dataset_id": "c7", + "model": "tabbyflow", + "run_id": "tabbyflow-c7-20260429_041029", + "public_gate_status": "pass", + "adapter_ready_status": "pass", + "train_status": "success", + "generate_status": "success", + "reason_code": null, + "reason_detail": null, + "artifacts": { + "synthetic_csv": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/c7/tabbyflow/tabbyflow-c7-20260429_041029/tabbyflow-c7-10368-20260429_041920.csv", + "model_path": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/c7/tabbyflow/tabbyflow-c7-20260429_041029/models_tabbyflow/trained.pt" + } +} \ No newline at end of file diff --git a/timecost/c7/tabbyflow/tabbyflow-c7-20260429_041029/staged/public/staged_features.json b/timecost/c7/tabbyflow/tabbyflow-c7-20260429_041029/staged/public/staged_features.json new file mode 100644 index 0000000000000000000000000000000000000000..0e23df6bcfb7ecfd44dfefc3d0ca0bf6b6aebc60 --- /dev/null +++ b/timecost/c7/tabbyflow/tabbyflow-c7-20260429_041029/staged/public/staged_features.json @@ -0,0 +1,47 @@ +[ + { + "feature_name": "parents", + "data_type": "categorical", + "is_target": false + }, + { + "feature_name": "has_nurs", + "data_type": "categorical", + "is_target": false + }, + { + "feature_name": "form", + "data_type": "categorical", + "is_target": false + }, + { + "feature_name": "children", + "data_type": "categorical", + "is_target": false + }, + { + "feature_name": "housing", + "data_type": "categorical", + "is_target": false + }, + { + "feature_name": "finance", + "data_type": "categorical", + "is_target": false + }, + { + "feature_name": "social", + "data_type": "categorical", + "is_target": false + }, + { + "feature_name": "health", + "data_type": "categorical", + "is_target": false + }, + { + "feature_name": "class", + "data_type": "categorical", + "is_target": true + } +] \ No newline at end of file diff --git a/timecost/c7/tabbyflow/tabbyflow-c7-20260429_041029/staged/public/test.csv b/timecost/c7/tabbyflow/tabbyflow-c7-20260429_041029/staged/public/test.csv new file mode 100644 index 0000000000000000000000000000000000000000..cb9d7081ca745e9eed28a35168872d450c4a2a44 --- /dev/null +++ b/timecost/c7/tabbyflow/tabbyflow-c7-20260429_041029/staged/public/test.csv @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:2042076337d5c37c6476e6bca2bd33cb5a171450c27894534ef50ac223256058 +size 106030 diff --git a/timecost/c7/tabbyflow/tabbyflow-c7-20260429_041029/staged/public/train.csv b/timecost/c7/tabbyflow/tabbyflow-c7-20260429_041029/staged/public/train.csv new file mode 100644 index 0000000000000000000000000000000000000000..4c8e5e0c5031fc7e8e25213132c1231950ec29da --- /dev/null +++ b/timecost/c7/tabbyflow/tabbyflow-c7-20260429_041029/staged/public/train.csv @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:b37f6b2ef5257f40bd826ac956749881f0f474362bdb56e8c5728ad629242e3a +size 847349 diff --git a/timecost/c7/tabbyflow/tabbyflow-c7-20260429_041029/staged/public/val.csv b/timecost/c7/tabbyflow/tabbyflow-c7-20260429_041029/staged/public/val.csv new file mode 100644 index 0000000000000000000000000000000000000000..55792963756b1ae35b4d79dee11881372962b8d5 --- /dev/null +++ b/timecost/c7/tabbyflow/tabbyflow-c7-20260429_041029/staged/public/val.csv @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:eff6dec27c3740661a1ae84dea391d690dfb60342bfd5d7527b903fdd6009780 +size 106192 diff --git a/timecost/c7/tabbyflow/tabbyflow-c7-20260429_041029/staged/tabbyflow/adapter_report.json b/timecost/c7/tabbyflow/tabbyflow-c7-20260429_041029/staged/tabbyflow/adapter_report.json new file mode 100644 index 0000000000000000000000000000000000000000..74fcbc8d3dbbce0b07d59321579b783c0c5ae2ad --- /dev/null +++ b/timecost/c7/tabbyflow/tabbyflow-c7-20260429_041029/staged/tabbyflow/adapter_report.json @@ -0,0 +1,7 @@ +{ + "adapter_ready_status": "pass", + "adapter_fail_reason_code": null, + "adapter_fail_detail": null, + "adapter_transforms_applied": [], + "model_input_manifest": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/c7/tabbyflow/tabbyflow-c7-20260429_041029/staged/tabbyflow/model_input_manifest.json" +} \ No newline at end of file diff --git a/timecost/c7/tabbyflow/tabbyflow-c7-20260429_041029/staged/tabbyflow/adapter_transforms_applied.json b/timecost/c7/tabbyflow/tabbyflow-c7-20260429_041029/staged/tabbyflow/adapter_transforms_applied.json new file mode 100644 index 0000000000000000000000000000000000000000..0637a088a01e8ddab3bf3fa98dbe804cbde1a0dc --- /dev/null +++ b/timecost/c7/tabbyflow/tabbyflow-c7-20260429_041029/staged/tabbyflow/adapter_transforms_applied.json @@ -0,0 +1 @@ +[] \ No newline at end of file diff --git a/timecost/c7/tabbyflow/tabbyflow-c7-20260429_041029/staged/tabbyflow/model_input_manifest.json b/timecost/c7/tabbyflow/tabbyflow-c7-20260429_041029/staged/tabbyflow/model_input_manifest.json new file mode 100644 index 0000000000000000000000000000000000000000..beac7f2a58653d69d61a355f2dcd751ddb8a03f6 --- /dev/null +++ b/timecost/c7/tabbyflow/tabbyflow-c7-20260429_041029/staged/tabbyflow/model_input_manifest.json @@ -0,0 +1,190 @@ +{ + "dataset_id": "c7", + "model": "tabbyflow", + "target_column": "class", + "task_type": "classification", + "column_schema": [ + { + "name": "parents", + "role": "feature", + "semantic_type": "categorical", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 3, + "unique_ratio": 0.000289, + "example_values": [ + "usual", + "pretentious", + "great_pret" + ] + } + }, + { + "name": "has_nurs", + "role": "feature", + "semantic_type": "categorical", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 5, + "unique_ratio": 0.000482, + "example_values": [ + "very_crit", + "critical", + "improper", + "less_proper", + "proper" + ] + } + }, + { + "name": "form", + "role": "feature", + "semantic_type": "categorical", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 4, + "unique_ratio": 0.000386, + "example_values": [ + "complete", + "completed", + "incomplete", + "foster" + ] + } + }, + { + "name": "children", + "role": "feature", + "semantic_type": "categorical", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 4, + "unique_ratio": 0.000386, + "example_values": [ + "1", + "3", + "2", + "more" + ] + } + }, + { + "name": "housing", + "role": "feature", + "semantic_type": "categorical", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 3, + "unique_ratio": 0.000289, + "example_values": [ + "less_conv", + "convenient", + "critical" + ] + } + }, + { + "name": "finance", + "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.000193, + "example_values": [ + "convenient", + "inconv" + ] + } + }, + { + "name": "social", + "role": "feature", + "semantic_type": "categorical", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 3, + "unique_ratio": 0.000289, + "example_values": [ + "slightly_prob", + "nonprob", + "problematic" + ] + } + }, + { + "name": "health", + "role": "feature", + "semantic_type": "categorical", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 3, + "unique_ratio": 0.000289, + "example_values": [ + "recommended", + "priority", + "not_recom" + ] + } + }, + { + "name": "class", + "role": "target", + "semantic_type": "categorical", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 5, + "unique_ratio": 0.000482, + "example_values": [ + "priority", + "spec_prior", + "not_recom", + "very_recom", + "recommend" + ] + } + } + ], + "public_manifest": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/c7/tabbyflow/tabbyflow-c7-20260429_041029/public_gate/staged_input_manifest.json", + "train_csv": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/c7/tabbyflow/tabbyflow-c7-20260429_041029/staged/public/train.csv", + "val_csv": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/c7/tabbyflow/tabbyflow-c7-20260429_041029/staged/public/val.csv", + "test_csv": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/c7/tabbyflow/tabbyflow-c7-20260429_041029/staged/public/test.csv", + "features_json": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/c7/tabbyflow/tabbyflow-c7-20260429_041029/staged/public/staged_features.json", + "public_gate_report": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/c7/tabbyflow/tabbyflow-c7-20260429_041029/public_gate/public_gate_report.json" +} \ No newline at end of file diff --git a/timecost/c7/tabbyflow/tabbyflow-c7-20260429_041029/tabbyflow-c7-10368-20260429_041920.csv b/timecost/c7/tabbyflow/tabbyflow-c7-20260429_041029/tabbyflow-c7-10368-20260429_041920.csv new file mode 100644 index 0000000000000000000000000000000000000000..1ac5fa3893c61fd1bb80bb39c46b6a5903a390f1 --- /dev/null +++ b/timecost/c7/tabbyflow/tabbyflow-c7-20260429_041029/tabbyflow-c7-10368-20260429_041920.csv @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:55c104a155bda80f95e2fde4bdab8bb395abd17b90d9e8623f6f15fd1d9d72ce +size 186691 diff --git a/timecost/c7/tabbyflow/tabbyflow-c7-20260429_041029/tabbyflow_train_meta.json b/timecost/c7/tabbyflow/tabbyflow-c7-20260429_041029/tabbyflow_train_meta.json new file mode 100644 index 0000000000000000000000000000000000000000..3135d306749c740b5ce38fae82b6928f47c50615 --- /dev/null +++ b/timecost/c7/tabbyflow/tabbyflow-c7-20260429_041029/tabbyflow_train_meta.json @@ -0,0 +1,5 @@ +{ + "exp_name": "adapter_efvfm", + "dataname": "pipeline_c7", + "steps": 500 +} \ No newline at end of file diff --git a/timecost/c7/tabbyflow/tabbyflow-c7-20260429_041029/tabular_bundle/pipeline_c7/X_cat_test.npy b/timecost/c7/tabbyflow/tabbyflow-c7-20260429_041029/tabular_bundle/pipeline_c7/X_cat_test.npy new file mode 100644 index 0000000000000000000000000000000000000000..5088dd2f36e0ffeae013fe0c5cdc769d9d88d33b --- /dev/null +++ b/timecost/c7/tabbyflow/tabbyflow-c7-20260429_041029/tabular_bundle/pipeline_c7/X_cat_test.npy @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:fe170020f0e97be3d763c4207ff95efc4e981264660ef6397fcf5f6e62d31eec +size 663680 diff --git a/timecost/c7/tabbyflow/tabbyflow-c7-20260429_041029/tabular_bundle/pipeline_c7/X_cat_train.npy b/timecost/c7/tabbyflow/tabbyflow-c7-20260429_041029/tabular_bundle/pipeline_c7/X_cat_train.npy new file mode 100644 index 0000000000000000000000000000000000000000..5088dd2f36e0ffeae013fe0c5cdc769d9d88d33b --- /dev/null +++ b/timecost/c7/tabbyflow/tabbyflow-c7-20260429_041029/tabular_bundle/pipeline_c7/X_cat_train.npy @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:fe170020f0e97be3d763c4207ff95efc4e981264660ef6397fcf5f6e62d31eec +size 663680 diff --git a/timecost/c7/tabbyflow/tabbyflow-c7-20260429_041029/tabular_bundle/pipeline_c7/X_cat_val.npy b/timecost/c7/tabbyflow/tabbyflow-c7-20260429_041029/tabular_bundle/pipeline_c7/X_cat_val.npy new file mode 100644 index 0000000000000000000000000000000000000000..5088dd2f36e0ffeae013fe0c5cdc769d9d88d33b --- /dev/null +++ b/timecost/c7/tabbyflow/tabbyflow-c7-20260429_041029/tabular_bundle/pipeline_c7/X_cat_val.npy @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:fe170020f0e97be3d763c4207ff95efc4e981264660ef6397fcf5f6e62d31eec +size 663680 diff --git a/timecost/c7/tabbyflow/tabbyflow-c7-20260429_041029/tabular_bundle/pipeline_c7/X_num_test.npy b/timecost/c7/tabbyflow/tabbyflow-c7-20260429_041029/tabular_bundle/pipeline_c7/X_num_test.npy new file mode 100644 index 0000000000000000000000000000000000000000..05368376414bc8e2221b9744c2e3746a587e749c --- /dev/null +++ b/timecost/c7/tabbyflow/tabbyflow-c7-20260429_041029/tabular_bundle/pipeline_c7/X_num_test.npy @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:ba6482dc6705ea0ac5fc0355391800cb0937fe4c3221baa21bc1f47beec8c260 +size 128 diff --git a/timecost/c7/tabbyflow/tabbyflow-c7-20260429_041029/tabular_bundle/pipeline_c7/X_num_train.npy b/timecost/c7/tabbyflow/tabbyflow-c7-20260429_041029/tabular_bundle/pipeline_c7/X_num_train.npy new file mode 100644 index 0000000000000000000000000000000000000000..05368376414bc8e2221b9744c2e3746a587e749c --- /dev/null +++ b/timecost/c7/tabbyflow/tabbyflow-c7-20260429_041029/tabular_bundle/pipeline_c7/X_num_train.npy @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:ba6482dc6705ea0ac5fc0355391800cb0937fe4c3221baa21bc1f47beec8c260 +size 128 diff --git a/timecost/c7/tabbyflow/tabbyflow-c7-20260429_041029/tabular_bundle/pipeline_c7/X_num_val.npy b/timecost/c7/tabbyflow/tabbyflow-c7-20260429_041029/tabular_bundle/pipeline_c7/X_num_val.npy new file mode 100644 index 0000000000000000000000000000000000000000..05368376414bc8e2221b9744c2e3746a587e749c --- /dev/null +++ b/timecost/c7/tabbyflow/tabbyflow-c7-20260429_041029/tabular_bundle/pipeline_c7/X_num_val.npy @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:ba6482dc6705ea0ac5fc0355391800cb0937fe4c3221baa21bc1f47beec8c260 +size 128 diff --git a/timecost/c7/tabbyflow/tabbyflow-c7-20260429_041029/tabular_bundle/pipeline_c7/info.json b/timecost/c7/tabbyflow/tabbyflow-c7-20260429_041029/tabular_bundle/pipeline_c7/info.json new file mode 100644 index 0000000000000000000000000000000000000000..b7dce7397c47eaf0d0ac811c5e11699e183be0b7 --- /dev/null +++ b/timecost/c7/tabbyflow/tabbyflow-c7-20260429_041029/tabular_bundle/pipeline_c7/info.json @@ -0,0 +1,104 @@ +{ + "name": "pipeline_c7", + "task_type": "multiclass", + "n_num_features": 0, + "n_cat_features": 8, + "train_size": 10368, + "test_num": 10368, + "val_num": 10368, + "train_num": 10368, + "bundle_note": "val/test matrices are train copies (train-only policy; no real held-out rows).", + "num_col_idx": [], + "cat_col_idx": [ + 0, + 1, + 2, + 3, + 4, + 5, + 6, + 7 + ], + "target_col_idx": [ + 8 + ], + "column_names": [ + "parents", + "has_nurs", + "form", + "children", + "housing", + "finance", + "social", + "health", + "class" + ], + "int_col_idx": [], + "int_columns": [], + "int_col_idx_wrt_num": [], + "metadata": { + "columns": { + "0": { + "sdtype": "categorical" + }, + "1": { + "sdtype": "categorical" + }, + "2": { + "sdtype": "categorical" + }, + "3": { + "sdtype": "categorical" + }, + "4": { + "sdtype": "categorical" + }, + "5": { + "sdtype": "categorical" + }, + "6": { + "sdtype": "categorical" + }, + "7": { + "sdtype": "categorical" + }, + "8": { + "sdtype": "categorical" + } + } + }, + "idx_mapping": { + "0": 0, + "1": 1, + "2": 2, + "3": 3, + "4": 4, + "5": 5, + "6": 6, + "7": 7, + "8": 8 + }, + "inverse_idx_mapping": { + "0": 0, + "1": 1, + "2": 2, + "3": 3, + "4": 4, + "5": 5, + "6": 6, + "7": 7, + "8": 8 + }, + "idx_name_mapping": { + "0": "parents", + "1": "has_nurs", + "2": "form", + "3": "children", + "4": "housing", + "5": "finance", + "6": "social", + "7": "health", + "8": "class" + }, + "n_classes": 5 +} \ No newline at end of file diff --git a/timecost/c7/tabbyflow/tabbyflow-c7-20260429_041029/tabular_bundle/pipeline_c7/real.csv b/timecost/c7/tabbyflow/tabbyflow-c7-20260429_041029/tabular_bundle/pipeline_c7/real.csv new file mode 100644 index 0000000000000000000000000000000000000000..38ea9e3e3a618729b1d98a0d1efb1a2e98f2cbc8 --- /dev/null +++ b/timecost/c7/tabbyflow/tabbyflow-c7-20260429_041029/tabular_bundle/pipeline_c7/real.csv @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:1ba16ecd55573b2bdc268f8a19464703e0109546f5951689c6d9a99eb5c6cc09 +size 269700 diff --git a/timecost/c7/tabbyflow/tabbyflow-c7-20260429_041029/tabular_bundle/pipeline_c7/test.csv b/timecost/c7/tabbyflow/tabbyflow-c7-20260429_041029/tabular_bundle/pipeline_c7/test.csv new file mode 100644 index 0000000000000000000000000000000000000000..38ea9e3e3a618729b1d98a0d1efb1a2e98f2cbc8 --- /dev/null +++ b/timecost/c7/tabbyflow/tabbyflow-c7-20260429_041029/tabular_bundle/pipeline_c7/test.csv @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:1ba16ecd55573b2bdc268f8a19464703e0109546f5951689c6d9a99eb5c6cc09 +size 269700 diff --git a/timecost/c7/tabbyflow/tabbyflow-c7-20260429_041029/tabular_bundle/pipeline_c7/val.csv b/timecost/c7/tabbyflow/tabbyflow-c7-20260429_041029/tabular_bundle/pipeline_c7/val.csv new file mode 100644 index 0000000000000000000000000000000000000000..38ea9e3e3a618729b1d98a0d1efb1a2e98f2cbc8 --- /dev/null +++ b/timecost/c7/tabbyflow/tabbyflow-c7-20260429_041029/tabular_bundle/pipeline_c7/val.csv @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:1ba16ecd55573b2bdc268f8a19464703e0109546f5951689c6d9a99eb5c6cc09 +size 269700 diff --git a/timecost/c7/tabbyflow/tabbyflow-c7-20260429_041029/tabular_bundle/pipeline_c7/y_test.npy b/timecost/c7/tabbyflow/tabbyflow-c7-20260429_041029/tabular_bundle/pipeline_c7/y_test.npy new file mode 100644 index 0000000000000000000000000000000000000000..91a84420670ea33a588c708837d1c1fff56c64cd --- /dev/null +++ b/timecost/c7/tabbyflow/tabbyflow-c7-20260429_041029/tabular_bundle/pipeline_c7/y_test.npy @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:99ac41d294af4eecd6e8a45863077f58b49456e9d0e055344706824cbb034964 +size 83072 diff --git a/timecost/c7/tabbyflow/tabbyflow-c7-20260429_041029/tabular_bundle/pipeline_c7/y_train.npy b/timecost/c7/tabbyflow/tabbyflow-c7-20260429_041029/tabular_bundle/pipeline_c7/y_train.npy new file mode 100644 index 0000000000000000000000000000000000000000..91a84420670ea33a588c708837d1c1fff56c64cd --- /dev/null +++ b/timecost/c7/tabbyflow/tabbyflow-c7-20260429_041029/tabular_bundle/pipeline_c7/y_train.npy @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:99ac41d294af4eecd6e8a45863077f58b49456e9d0e055344706824cbb034964 +size 83072 diff --git a/timecost/c7/tabbyflow/tabbyflow-c7-20260429_041029/tabular_bundle/pipeline_c7/y_val.npy b/timecost/c7/tabbyflow/tabbyflow-c7-20260429_041029/tabular_bundle/pipeline_c7/y_val.npy new file mode 100644 index 0000000000000000000000000000000000000000..91a84420670ea33a588c708837d1c1fff56c64cd --- /dev/null +++ b/timecost/c7/tabbyflow/tabbyflow-c7-20260429_041029/tabular_bundle/pipeline_c7/y_val.npy @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:99ac41d294af4eecd6e8a45863077f58b49456e9d0e055344706824cbb034964 +size 83072 diff --git a/timecost/c7/tabbyflow/tabbyflow-c7-20260429_041029/train_20260429_041030.log b/timecost/c7/tabbyflow/tabbyflow-c7-20260429_041029/train_20260429_041030.log new file mode 100644 index 0000000000000000000000000000000000000000..572e7a80a24b5d4995f0aede17cc50fca294934b --- /dev/null +++ b/timecost/c7/tabbyflow/tabbyflow-c7-20260429_041029/train_20260429_041030.log @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:bc98d78a1665a8ecd34fdf05631ab0fb93fd7e961a785cba1ba557d521b9a74f +size 452556 diff --git a/timecost/c7/tabddpm/tabddpm-c7-20260429_052039/_tabddpm_sample_r0.py b/timecost/c7/tabddpm/tabddpm-c7-20260429_052039/_tabddpm_sample_r0.py new file mode 100644 index 0000000000000000000000000000000000000000..6cee16423f22d5273df79a48b8f237db4b9d4d7b --- /dev/null +++ b/timecost/c7/tabddpm/tabddpm-c7-20260429_052039/_tabddpm_sample_r0.py @@ -0,0 +1,66 @@ +import os, sys, subprocess, json +import numpy as np +import pandas as pd + +tabddpm_root = "/workspace/tabddpm/code" +assert os.path.isdir(tabddpm_root), f"TabDDPM source not mounted: {tabddpm_root}" +env = os.environ.copy() +env["PYTHONPATH"] = tabddpm_root + (os.pathsep + env.get("PYTHONPATH", "")) + +# Reuse the compat wrapper (patches collections.Sequence for skorch) +wrapper = os.path.join(tabddpm_root, "_compat_run.py") +if not os.path.exists(wrapper): + with open(wrapper, "w") as f: + f.write( + "import collections, collections.abc\n" + "for _a in ('Sequence','MutableSequence','MutableMapping','Mapping'," + "'MutableSet','Set','Callable','Iterable','Iterator'):\n" + " if not hasattr(collections, _a): setattr(collections, _a, getattr(collections.abc, _a, None))\n" + "import sys, runpy\n" + "sys.argv = sys.argv[1:]\n" + "runpy.run_path(sys.argv[0], run_name='__main__')\n" + ) + +print(f"[TabDDPM] Sampling 10368 rows") +ret = subprocess.run( + [sys.executable, wrapper, "scripts/pipeline.py", + "--config", "/work/output-Benchmark-trainonly-v1/c7/tabddpm/tabddpm-c7-20260429_052039/config_sample_20260429_052217_r0.toml", + "--sample"], + cwd=tabddpm_root, + env=env +) +if ret.returncode != 0: + sys.exit(ret.returncode) + +# 将 .npy 输出转为 CSV(npy 在 TabDDPM 的 parent_dir,即 npy_dir) +info_path = "/work/output-Benchmark-trainonly-v1/c7/tabddpm/tabddpm-c7-20260429_052039/data/info.json" +with open(info_path) as f: + info = json.load(f) + +output_dir = "/work/output-Benchmark-trainonly-v1/c7/tabddpm/tabddpm-c7-20260429_052039/output" +col_names = info.get("column_names", []) + +parts = [] +x_num_path = os.path.join(output_dir, "X_num_train.npy") +x_cat_path = os.path.join(output_dir, "X_cat_train.npy") +y_path = os.path.join(output_dir, "y_train.npy") + +if os.path.exists(x_num_path): + parts.append(np.load(x_num_path, allow_pickle=True)) +if os.path.exists(x_cat_path): + parts.append(np.load(x_cat_path, allow_pickle=True).astype(float)) +if os.path.exists(y_path): + y = np.load(y_path, allow_pickle=True) + parts.append(y.reshape(-1, 1) if y.ndim == 1 else y) + +if parts: + combined = np.concatenate(parts, axis=1) + if col_names and len(col_names) == combined.shape[1]: + df = pd.DataFrame(combined, columns=col_names) + else: + df = pd.DataFrame(combined) + df.to_csv("/work/output-Benchmark-trainonly-v1/c7/tabddpm/tabddpm-c7-20260429_052039/tabddpm-c7-10368-20260429_052217.csv", index=False) + print(f"[TabDDPM] Saved {len(df)} rows -> /work/output-Benchmark-trainonly-v1/c7/tabddpm/tabddpm-c7-20260429_052039/tabddpm-c7-10368-20260429_052217.csv") +else: + print("[TabDDPM] WARNING: No output .npy files found") + sys.exit(1) diff --git a/timecost/c7/tabddpm/tabddpm-c7-20260429_052039/_tabddpm_train.py b/timecost/c7/tabddpm/tabddpm-c7-20260429_052039/_tabddpm_train.py new file mode 100644 index 0000000000000000000000000000000000000000..d8e86af9f02664794a8c84227a73652c2b8262e6 --- /dev/null +++ b/timecost/c7/tabddpm/tabddpm-c7-20260429_052039/_tabddpm_train.py @@ -0,0 +1,32 @@ +import os, sys, subprocess + +tabddpm_root = "/workspace/tabddpm/code" +assert os.path.isdir(tabddpm_root), f"TabDDPM source not mounted: {tabddpm_root}" +env = os.environ.copy() +env["PYTHONPATH"] = tabddpm_root + (os.pathsep + env.get("PYTHONPATH", "")) + +# Write a wrapper that patches collections.Sequence (removed in Python 3.10+) +# before running pipeline.py - needed because skorch uses old API +wrapper = os.path.join(tabddpm_root, "_compat_run.py") +with open(wrapper, "w") as f: + f.write( + "import collections, collections.abc\n" + "for _a in ('Sequence','MutableSequence','MutableMapping','Mapping'," + "'MutableSet','Set','Callable','Iterable','Iterator'):\n" + " if not hasattr(collections, _a): setattr(collections, _a, getattr(collections.abc, _a, None))\n" + "import sys, runpy\n" + "sys.argv = sys.argv[1:]\n" + "runpy.run_path(sys.argv[0], run_name='__main__')\n" + ) + +print(f"[TabDDPM] Training, config=/work/output-Benchmark-trainonly-v1/c7/tabddpm/tabddpm-c7-20260429_052039/config.toml") +ret = subprocess.run( + [sys.executable, wrapper, "scripts/pipeline.py", + "--config", "/work/output-Benchmark-trainonly-v1/c7/tabddpm/tabddpm-c7-20260429_052039/config.toml", + "--train"], + cwd=tabddpm_root, + env=env +) +if ret.returncode != 0: + sys.exit(ret.returncode) +print("[TabDDPM] Training complete") diff --git a/timecost/c7/tabddpm/tabddpm-c7-20260429_052039/config.toml b/timecost/c7/tabddpm/tabddpm-c7-20260429_052039/config.toml new file mode 100644 index 0000000000000000000000000000000000000000..625b4ad477eb3350597a79bf0b7db4c1111f26e6 --- /dev/null +++ b/timecost/c7/tabddpm/tabddpm-c7-20260429_052039/config.toml @@ -0,0 +1,39 @@ +seed = 0 +parent_dir = "/work/output-Benchmark-trainonly-v1/c7/tabddpm/tabddpm-c7-20260429_052039/output" +real_data_path = "/work/output-Benchmark-trainonly-v1/c7/tabddpm/tabddpm-c7-20260429_052039/data" +model_type = "mlp" +num_numerical_features = 0 +device = "cuda:0" + +[model_params] +d_in = 8 +num_classes = 5 +is_y_cond = true + +[model_params.rtdl_params] +d_layers = [256, 256] +dropout = 0.0 + +[diffusion_params] +num_timesteps = 1000 +gaussian_loss_type = "mse" + +[train.main] +steps = 5000 +lr = 0.001 +weight_decay = 0.0 +batch_size = 256 + +[train.T] +seed = 0 +normalization = "quantile" +num_nan_policy = "__none__" +cat_nan_policy = "__none__" +cat_min_frequency = "__none__" +cat_encoding = "__none__" +y_policy = "default" + +[sample] +num_samples = 1000 +batch_size = 1000 +seed = 0 diff --git a/timecost/c7/tabddpm/tabddpm-c7-20260429_052039/config_sample_20260429_052217_r0.toml b/timecost/c7/tabddpm/tabddpm-c7-20260429_052039/config_sample_20260429_052217_r0.toml new file mode 100644 index 0000000000000000000000000000000000000000..137b608a092d1e2349dd96cfb1342a65e6f832d1 --- /dev/null +++ b/timecost/c7/tabddpm/tabddpm-c7-20260429_052039/config_sample_20260429_052217_r0.toml @@ -0,0 +1,39 @@ +seed = 0 +parent_dir = "/work/output-Benchmark-trainonly-v1/c7/tabddpm/tabddpm-c7-20260429_052039/output" +real_data_path = "/work/output-Benchmark-trainonly-v1/c7/tabddpm/tabddpm-c7-20260429_052039/data" +model_type = "mlp" +num_numerical_features = 0 +device = "cuda:0" + +[model_params] +d_in = 8 +num_classes = 5 +is_y_cond = true + +[model_params.rtdl_params] +d_layers = [256, 256] +dropout = 0.0 + +[diffusion_params] +num_timesteps = 1000 +gaussian_loss_type = "mse" + +[train.main] +steps = 5000 +lr = 0.001 +weight_decay = 0.0 +batch_size = 256 + +[train.T] +seed = 0 +normalization = "quantile" +num_nan_policy = "__none__" +cat_nan_policy = "__none__" +cat_min_frequency = "__none__" +cat_encoding = "__none__" +y_policy = "default" + +[sample] +num_samples = 10368 +batch_size = 1000 +seed = 0 diff --git a/timecost/c7/tabddpm/tabddpm-c7-20260429_052039/data/X_cat_train.npy b/timecost/c7/tabddpm/tabddpm-c7-20260429_052039/data/X_cat_train.npy new file mode 100644 index 0000000000000000000000000000000000000000..5088dd2f36e0ffeae013fe0c5cdc769d9d88d33b --- /dev/null +++ b/timecost/c7/tabddpm/tabddpm-c7-20260429_052039/data/X_cat_train.npy @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:fe170020f0e97be3d763c4207ff95efc4e981264660ef6397fcf5f6e62d31eec +size 663680 diff --git a/timecost/c7/tabddpm/tabddpm-c7-20260429_052039/data/info.json b/timecost/c7/tabddpm/tabddpm-c7-20260429_052039/data/info.json new file mode 100644 index 0000000000000000000000000000000000000000..348c194d9d198ccbef46a7046431163d973ec28c --- /dev/null +++ b/timecost/c7/tabddpm/tabddpm-c7-20260429_052039/data/info.json @@ -0,0 +1,33 @@ +{ + "name": "benchmark_dataset", + "task_type": "multiclass", + "n_num_features": 0, + "n_cat_features": 8, + "train_size": 10368, + "num_col_idx": [], + "cat_col_idx": [ + 0, + 1, + 2, + 3, + 4, + 5, + 6, + 7 + ], + "target_col_idx": [ + 8 + ], + "column_names": [ + "parents", + "has_nurs", + "form", + "children", + "housing", + "finance", + "social", + "health", + "class" + ], + "num_classes": 5 +} \ No newline at end of file diff --git a/timecost/c7/tabddpm/tabddpm-c7-20260429_052039/data/y_train.npy b/timecost/c7/tabddpm/tabddpm-c7-20260429_052039/data/y_train.npy new file mode 100644 index 0000000000000000000000000000000000000000..91a84420670ea33a588c708837d1c1fff56c64cd --- /dev/null +++ b/timecost/c7/tabddpm/tabddpm-c7-20260429_052039/data/y_train.npy @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:99ac41d294af4eecd6e8a45863077f58b49456e9d0e055344706824cbb034964 +size 83072 diff --git a/timecost/c7/tabddpm/tabddpm-c7-20260429_052039/gen_20260429_052217_r0.log b/timecost/c7/tabddpm/tabddpm-c7-20260429_052039/gen_20260429_052217_r0.log new file mode 100644 index 0000000000000000000000000000000000000000..fe08f5b853719148a08e8916a44b9a1f7fbb02b0 --- /dev/null +++ b/timecost/c7/tabddpm/tabddpm-c7-20260429_052039/gen_20260429_052217_r0.log @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:69eefeccadb18bbb24b45d6445e5a0e9ef0df1dafbb5ac687437c022bb447521 +size 231465 diff --git a/timecost/c7/tabddpm/tabddpm-c7-20260429_052039/input_snapshot.json b/timecost/c7/tabddpm/tabddpm-c7-20260429_052039/input_snapshot.json new file mode 100644 index 0000000000000000000000000000000000000000..a96e042f3873b34ba4355c25abd9c6dbcf21adc5 --- /dev/null +++ b/timecost/c7/tabddpm/tabddpm-c7-20260429_052039/input_snapshot.json @@ -0,0 +1,36 @@ +{ + "dataset_id": "c7", + "model": "tabddpm", + "inputs": { + "train_csv": { + "path": "/data/jialinzhang/SynthesizePipeline-server/DatasetNew/c7/c7-train.csv", + "exists": true, + "size": 857718, + "sha256": "0ec97b49cecfd452f07551a63db7b812b5998a1e37101eae82255d00aa6a6243" + }, + "val_csv": { + "path": "/data/jialinzhang/SynthesizePipeline-server/DatasetNew/c7/c7-val.csv", + "exists": true, + "size": 107489, + "sha256": "4501bb2be19f7e13b7ff5e9dedd74e3dd42f2cafc8cefd5435bda61fc974a769" + }, + "test_csv": { + "path": "/data/jialinzhang/SynthesizePipeline-server/DatasetNew/c7/c7-test.csv", + "exists": true, + "size": 107327, + "sha256": "f9e808033a07feabb980addcf8c5f75111189ac2fb70993b8ad0f5ca3d5cfbae" + }, + "profile_json": { + "path": "/data/jialinzhang/SynthesizePipeline-server/DatasetNew/artifacts/data_core/tabular/c7/c7-dataset_profile.json", + "exists": true, + "size": 4014, + "sha256": "60424c615b91a26cf02d9bc1d7f91caa0ceb95bab39eb7cff6f9edea3ca0600e" + }, + "contract_json": { + "path": "/data/jialinzhang/SynthesizePipeline-server/DatasetNew/artifacts/data_core/tabular/c7/c7-dataset_contract_v1.json", + "exists": true, + "size": 4759, + "sha256": "79a434a1e2553b14b9f2e98c1adfc32a71aaa0d6cd49234f3f8a5603efca4ebd" + } + } +} \ No newline at end of file diff --git a/timecost/c7/tabddpm/tabddpm-c7-20260429_052039/output/X_cat_train.npy b/timecost/c7/tabddpm/tabddpm-c7-20260429_052039/output/X_cat_train.npy new file mode 100644 index 0000000000000000000000000000000000000000..a98dcbd9386984ce5744920900b9198619f13c49 --- /dev/null +++ b/timecost/c7/tabddpm/tabddpm-c7-20260429_052039/output/X_cat_train.npy @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:16be36641783ba511d1c6a52baffaf0e9505ea21441908bf4c3fc36523972099 +size 166337 diff --git a/timecost/c7/tabddpm/tabddpm-c7-20260429_052039/output/X_cat_unnorm.npy b/timecost/c7/tabddpm/tabddpm-c7-20260429_052039/output/X_cat_unnorm.npy new file mode 100644 index 0000000000000000000000000000000000000000..14f18f5c90392d0eef416d0ca0c335c20bc18a2f --- /dev/null +++ b/timecost/c7/tabddpm/tabddpm-c7-20260429_052039/output/X_cat_unnorm.npy @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:37912a71902967a76f0872c545f8c8886f4a690441621c9e4db08306fd41cb01 +size 663680 diff --git a/timecost/c7/tabddpm/tabddpm-c7-20260429_052039/output/config.toml b/timecost/c7/tabddpm/tabddpm-c7-20260429_052039/output/config.toml new file mode 100644 index 0000000000000000000000000000000000000000..137b608a092d1e2349dd96cfb1342a65e6f832d1 --- /dev/null +++ b/timecost/c7/tabddpm/tabddpm-c7-20260429_052039/output/config.toml @@ -0,0 +1,39 @@ +seed = 0 +parent_dir = "/work/output-Benchmark-trainonly-v1/c7/tabddpm/tabddpm-c7-20260429_052039/output" +real_data_path = "/work/output-Benchmark-trainonly-v1/c7/tabddpm/tabddpm-c7-20260429_052039/data" +model_type = "mlp" +num_numerical_features = 0 +device = "cuda:0" + +[model_params] +d_in = 8 +num_classes = 5 +is_y_cond = true + +[model_params.rtdl_params] +d_layers = [256, 256] +dropout = 0.0 + +[diffusion_params] +num_timesteps = 1000 +gaussian_loss_type = "mse" + +[train.main] +steps = 5000 +lr = 0.001 +weight_decay = 0.0 +batch_size = 256 + +[train.T] +seed = 0 +normalization = "quantile" +num_nan_policy = "__none__" +cat_nan_policy = "__none__" +cat_min_frequency = "__none__" +cat_encoding = "__none__" +y_policy = "default" + +[sample] +num_samples = 10368 +batch_size = 1000 +seed = 0 diff --git a/timecost/c7/tabddpm/tabddpm-c7-20260429_052039/output/info.json b/timecost/c7/tabddpm/tabddpm-c7-20260429_052039/output/info.json new file mode 100644 index 0000000000000000000000000000000000000000..348c194d9d198ccbef46a7046431163d973ec28c --- /dev/null +++ b/timecost/c7/tabddpm/tabddpm-c7-20260429_052039/output/info.json @@ -0,0 +1,33 @@ +{ + "name": "benchmark_dataset", + "task_type": "multiclass", + "n_num_features": 0, + "n_cat_features": 8, + "train_size": 10368, + "num_col_idx": [], + "cat_col_idx": [ + 0, + 1, + 2, + 3, + 4, + 5, + 6, + 7 + ], + "target_col_idx": [ + 8 + ], + "column_names": [ + "parents", + "has_nurs", + "form", + "children", + "housing", + "finance", + "social", + "health", + "class" + ], + "num_classes": 5 +} \ No newline at end of file diff --git a/timecost/c7/tabddpm/tabddpm-c7-20260429_052039/output/loss.csv b/timecost/c7/tabddpm/tabddpm-c7-20260429_052039/output/loss.csv new file mode 100644 index 0000000000000000000000000000000000000000..7a67948430aeb22a5031a563520388e47ccfb9ff --- /dev/null +++ b/timecost/c7/tabddpm/tabddpm-c7-20260429_052039/output/loss.csv @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:439e8e111684e872c6aa50f895f54ce61a8afc53de6b21b6dd9ac899635b99d8 +size 1255 diff --git a/timecost/c7/tabddpm/tabddpm-c7-20260429_052039/output/model.pt b/timecost/c7/tabddpm/tabddpm-c7-20260429_052039/output/model.pt new file mode 100644 index 0000000000000000000000000000000000000000..4006cc0798dcc51e265bdf98b7d51e6000d091b0 --- /dev/null +++ b/timecost/c7/tabddpm/tabddpm-c7-20260429_052039/output/model.pt @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:50a336bd69bb6cc75541f8f634083ff597f3d334c11e6bf049b0c2718fee85f2 +size 576662 diff --git a/timecost/c7/tabddpm/tabddpm-c7-20260429_052039/output/model_ema.pt b/timecost/c7/tabddpm/tabddpm-c7-20260429_052039/output/model_ema.pt new file mode 100644 index 0000000000000000000000000000000000000000..559b3c706210c98ea69e0059769972959556837c --- /dev/null +++ b/timecost/c7/tabddpm/tabddpm-c7-20260429_052039/output/model_ema.pt @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:ced1e2ea2da6188b6f2357b59a5973ba35c76cd507e80804dda4e2771c6606f7 +size 577506 diff --git a/timecost/c7/tabddpm/tabddpm-c7-20260429_052039/output/y_train.npy b/timecost/c7/tabddpm/tabddpm-c7-20260429_052039/output/y_train.npy new file mode 100644 index 0000000000000000000000000000000000000000..8477ee1875e26cf8e1a7705daef31a8ad528766e --- /dev/null +++ b/timecost/c7/tabddpm/tabddpm-c7-20260429_052039/output/y_train.npy @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:8bc12cd5aab117213155fc70e2895b6990bc505a4d5e69dd12e2d8651a64e214 +size 83072 diff --git a/timecost/c7/tabddpm/tabddpm-c7-20260429_052039/public_gate/normalized_schema_snapshot.json b/timecost/c7/tabddpm/tabddpm-c7-20260429_052039/public_gate/normalized_schema_snapshot.json new file mode 100644 index 0000000000000000000000000000000000000000..3ea4859ec2aa245a19531b254f45d87237c23069 --- /dev/null +++ b/timecost/c7/tabddpm/tabddpm-c7-20260429_052039/public_gate/normalized_schema_snapshot.json @@ -0,0 +1,183 @@ +{ + "dataset_id": "c7", + "target_column": "class", + "task_type": "classification", + "columns": [ + { + "name": "parents", + "role": "feature", + "semantic_type": "categorical", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 3, + "unique_ratio": 0.000289, + "example_values": [ + "usual", + "pretentious", + "great_pret" + ] + } + }, + { + "name": "has_nurs", + "role": "feature", + "semantic_type": "categorical", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 5, + "unique_ratio": 0.000482, + "example_values": [ + "very_crit", + "critical", + "improper", + "less_proper", + "proper" + ] + } + }, + { + "name": "form", + "role": "feature", + "semantic_type": "categorical", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 4, + "unique_ratio": 0.000386, + "example_values": [ + "complete", + "completed", + "incomplete", + "foster" + ] + } + }, + { + "name": "children", + "role": "feature", + "semantic_type": "categorical", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 4, + "unique_ratio": 0.000386, + "example_values": [ + "1", + "3", + "2", + "more" + ] + } + }, + { + "name": "housing", + "role": "feature", + "semantic_type": "categorical", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 3, + "unique_ratio": 0.000289, + "example_values": [ + "less_conv", + "convenient", + "critical" + ] + } + }, + { + "name": "finance", + "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.000193, + "example_values": [ + "convenient", + "inconv" + ] + } + }, + { + "name": "social", + "role": "feature", + "semantic_type": "categorical", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 3, + "unique_ratio": 0.000289, + "example_values": [ + "slightly_prob", + "nonprob", + "problematic" + ] + } + }, + { + "name": "health", + "role": "feature", + "semantic_type": "categorical", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 3, + "unique_ratio": 0.000289, + "example_values": [ + "recommended", + "priority", + "not_recom" + ] + } + }, + { + "name": "class", + "role": "target", + "semantic_type": "categorical", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 5, + "unique_ratio": 0.000482, + "example_values": [ + "priority", + "spec_prior", + "not_recom", + "very_recom", + "recommend" + ] + } + } + ] +} \ No newline at end of file diff --git a/timecost/c7/tabddpm/tabddpm-c7-20260429_052039/public_gate/public_gate_report.json b/timecost/c7/tabddpm/tabddpm-c7-20260429_052039/public_gate/public_gate_report.json new file mode 100644 index 0000000000000000000000000000000000000000..3328fe59cd490a424e50f931e9eedba9e81d1cec --- /dev/null +++ b/timecost/c7/tabddpm/tabddpm-c7-20260429_052039/public_gate/public_gate_report.json @@ -0,0 +1,37 @@ +{ + "dataset_id": "c7", + "status": "pass", + "checks": [ + { + "check_id": "PG001_csv_parse_ok", + "status": "pass" + }, + { + "check_id": "PG002_split_header_consistent", + "status": "pass" + }, + { + "check_id": "PG003_profile_header_match", + "status": "pass" + }, + { + "check_id": "PG004_missing_token_normalized", + "status": "pass" + }, + { + "check_id": "PG005_semantic_type_validated", + "status": "pass" + }, + { + "check_id": "PG006_target_defined_and_valid", + "status": "pass" + } + ], + "target_column": "class", + "task_type": "classification", + "input_splits": { + "train": "/data/jialinzhang/SynthesizePipeline-server/DatasetNew/c7/c7-train.csv", + "val": "/data/jialinzhang/SynthesizePipeline-server/DatasetNew/c7/c7-val.csv", + "test": "/data/jialinzhang/SynthesizePipeline-server/DatasetNew/c7/c7-test.csv" + } +} \ No newline at end of file diff --git a/timecost/c7/tabddpm/tabddpm-c7-20260429_052039/public_gate/staged_input_manifest.json b/timecost/c7/tabddpm/tabddpm-c7-20260429_052039/public_gate/staged_input_manifest.json new file mode 100644 index 0000000000000000000000000000000000000000..fb711af1709273878b4b21e508316a04db344b57 --- /dev/null +++ b/timecost/c7/tabddpm/tabddpm-c7-20260429_052039/public_gate/staged_input_manifest.json @@ -0,0 +1,188 @@ +{ + "dataset_id": "c7", + "target_column": "class", + "task_type": "classification", + "train_csv": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/c7/tabddpm/tabddpm-c7-20260429_052039/staged/public/train.csv", + "val_csv": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/c7/tabddpm/tabddpm-c7-20260429_052039/staged/public/val.csv", + "test_csv": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/c7/tabddpm/tabddpm-c7-20260429_052039/staged/public/test.csv", + "features_json": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/c7/tabddpm/tabddpm-c7-20260429_052039/staged/public/staged_features.json", + "public_gate_report": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/c7/tabddpm/tabddpm-c7-20260429_052039/public_gate/public_gate_report.json", + "column_schema": [ + { + "name": "parents", + "role": "feature", + "semantic_type": "categorical", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 3, + "unique_ratio": 0.000289, + "example_values": [ + "usual", + "pretentious", + "great_pret" + ] + } + }, + { + "name": "has_nurs", + "role": "feature", + "semantic_type": "categorical", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 5, + "unique_ratio": 0.000482, + "example_values": [ + "very_crit", + "critical", + "improper", + "less_proper", + "proper" + ] + } + }, + { + "name": "form", + "role": "feature", + "semantic_type": "categorical", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 4, + "unique_ratio": 0.000386, + "example_values": [ + "complete", + "completed", + "incomplete", + "foster" + ] + } + }, + { + "name": "children", + "role": "feature", + "semantic_type": "categorical", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 4, + "unique_ratio": 0.000386, + "example_values": [ + "1", + "3", + "2", + "more" + ] + } + }, + { + "name": "housing", + "role": "feature", + "semantic_type": "categorical", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 3, + "unique_ratio": 0.000289, + "example_values": [ + "less_conv", + "convenient", + "critical" + ] + } + }, + { + "name": "finance", + "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.000193, + "example_values": [ + "convenient", + "inconv" + ] + } + }, + { + "name": "social", + "role": "feature", + "semantic_type": "categorical", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 3, + "unique_ratio": 0.000289, + "example_values": [ + "slightly_prob", + "nonprob", + "problematic" + ] + } + }, + { + "name": "health", + "role": "feature", + "semantic_type": "categorical", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 3, + "unique_ratio": 0.000289, + "example_values": [ + "recommended", + "priority", + "not_recom" + ] + } + }, + { + "name": "class", + "role": "target", + "semantic_type": "categorical", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 5, + "unique_ratio": 0.000482, + "example_values": [ + "priority", + "spec_prior", + "not_recom", + "very_recom", + "recommend" + ] + } + } + ] +} \ No newline at end of file diff --git a/timecost/c7/tabddpm/tabddpm-c7-20260429_052039/runtime_result.json b/timecost/c7/tabddpm/tabddpm-c7-20260429_052039/runtime_result.json new file mode 100644 index 0000000000000000000000000000000000000000..8f2230e71cc9df598e3315aaddf717d268a082cc --- /dev/null +++ b/timecost/c7/tabddpm/tabddpm-c7-20260429_052039/runtime_result.json @@ -0,0 +1,15 @@ +{ + "dataset_id": "c7", + "model": "tabddpm", + "run_id": "tabddpm-c7-20260429_052039", + "public_gate_status": "pass", + "adapter_ready_status": "pass", + "train_status": "success", + "generate_status": "success", + "reason_code": null, + "reason_detail": null, + "artifacts": { + "synthetic_csv": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/c7/tabddpm/tabddpm-c7-20260429_052039/tabddpm-c7-10368-20260429_052217.csv", + "model_path": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/c7/tabddpm/tabddpm-c7-20260429_052039" + } +} \ No newline at end of file diff --git a/timecost/c7/tabddpm/tabddpm-c7-20260429_052039/staged/public/staged_features.json b/timecost/c7/tabddpm/tabddpm-c7-20260429_052039/staged/public/staged_features.json new file mode 100644 index 0000000000000000000000000000000000000000..0e23df6bcfb7ecfd44dfefc3d0ca0bf6b6aebc60 --- /dev/null +++ b/timecost/c7/tabddpm/tabddpm-c7-20260429_052039/staged/public/staged_features.json @@ -0,0 +1,47 @@ +[ + { + "feature_name": "parents", + "data_type": "categorical", + "is_target": false + }, + { + "feature_name": "has_nurs", + "data_type": "categorical", + "is_target": false + }, + { + "feature_name": "form", + "data_type": "categorical", + "is_target": false + }, + { + "feature_name": "children", + "data_type": "categorical", + "is_target": false + }, + { + "feature_name": "housing", + "data_type": "categorical", + "is_target": false + }, + { + "feature_name": "finance", + "data_type": "categorical", + "is_target": false + }, + { + "feature_name": "social", + "data_type": "categorical", + "is_target": false + }, + { + "feature_name": "health", + "data_type": "categorical", + "is_target": false + }, + { + "feature_name": "class", + "data_type": "categorical", + "is_target": true + } +] \ No newline at end of file diff --git a/timecost/c7/tabddpm/tabddpm-c7-20260429_052039/staged/public/test.csv b/timecost/c7/tabddpm/tabddpm-c7-20260429_052039/staged/public/test.csv new file mode 100644 index 0000000000000000000000000000000000000000..cb9d7081ca745e9eed28a35168872d450c4a2a44 --- /dev/null +++ b/timecost/c7/tabddpm/tabddpm-c7-20260429_052039/staged/public/test.csv @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:2042076337d5c37c6476e6bca2bd33cb5a171450c27894534ef50ac223256058 +size 106030 diff --git a/timecost/c7/tabddpm/tabddpm-c7-20260429_052039/staged/public/train.csv b/timecost/c7/tabddpm/tabddpm-c7-20260429_052039/staged/public/train.csv new file mode 100644 index 0000000000000000000000000000000000000000..4c8e5e0c5031fc7e8e25213132c1231950ec29da --- /dev/null +++ b/timecost/c7/tabddpm/tabddpm-c7-20260429_052039/staged/public/train.csv @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:b37f6b2ef5257f40bd826ac956749881f0f474362bdb56e8c5728ad629242e3a +size 847349 diff --git a/timecost/c7/tabddpm/tabddpm-c7-20260429_052039/staged/public/val.csv b/timecost/c7/tabddpm/tabddpm-c7-20260429_052039/staged/public/val.csv new file mode 100644 index 0000000000000000000000000000000000000000..55792963756b1ae35b4d79dee11881372962b8d5 --- /dev/null +++ b/timecost/c7/tabddpm/tabddpm-c7-20260429_052039/staged/public/val.csv @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:eff6dec27c3740661a1ae84dea391d690dfb60342bfd5d7527b903fdd6009780 +size 106192 diff --git a/timecost/c7/tabddpm/tabddpm-c7-20260429_052039/staged/tabddpm/adapter_report.json b/timecost/c7/tabddpm/tabddpm-c7-20260429_052039/staged/tabddpm/adapter_report.json new file mode 100644 index 0000000000000000000000000000000000000000..4888184f75e5df42a3807e08241d0e5804849bc6 --- /dev/null +++ b/timecost/c7/tabddpm/tabddpm-c7-20260429_052039/staged/tabddpm/adapter_report.json @@ -0,0 +1,7 @@ +{ + "adapter_ready_status": "pass", + "adapter_fail_reason_code": null, + "adapter_fail_detail": null, + "adapter_transforms_applied": [], + "model_input_manifest": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/c7/tabddpm/tabddpm-c7-20260429_052039/staged/tabddpm/model_input_manifest.json" +} \ No newline at end of file diff --git a/timecost/c7/tabddpm/tabddpm-c7-20260429_052039/staged/tabddpm/adapter_transforms_applied.json b/timecost/c7/tabddpm/tabddpm-c7-20260429_052039/staged/tabddpm/adapter_transforms_applied.json new file mode 100644 index 0000000000000000000000000000000000000000..0637a088a01e8ddab3bf3fa98dbe804cbde1a0dc --- /dev/null +++ b/timecost/c7/tabddpm/tabddpm-c7-20260429_052039/staged/tabddpm/adapter_transforms_applied.json @@ -0,0 +1 @@ +[] \ No newline at end of file diff --git a/timecost/c7/tabddpm/tabddpm-c7-20260429_052039/staged/tabddpm/model_input_manifest.json b/timecost/c7/tabddpm/tabddpm-c7-20260429_052039/staged/tabddpm/model_input_manifest.json new file mode 100644 index 0000000000000000000000000000000000000000..80c4e4287624e3d3628620de7cb7fefa5466c1cf --- /dev/null +++ b/timecost/c7/tabddpm/tabddpm-c7-20260429_052039/staged/tabddpm/model_input_manifest.json @@ -0,0 +1,190 @@ +{ + "dataset_id": "c7", + "model": "tabddpm", + "target_column": "class", + "task_type": "classification", + "column_schema": [ + { + "name": "parents", + "role": "feature", + "semantic_type": "categorical", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 3, + "unique_ratio": 0.000289, + "example_values": [ + "usual", + "pretentious", + "great_pret" + ] + } + }, + { + "name": "has_nurs", + "role": "feature", + "semantic_type": "categorical", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 5, + "unique_ratio": 0.000482, + "example_values": [ + "very_crit", + "critical", + "improper", + "less_proper", + "proper" + ] + } + }, + { + "name": "form", + "role": "feature", + "semantic_type": "categorical", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 4, + "unique_ratio": 0.000386, + "example_values": [ + "complete", + "completed", + "incomplete", + "foster" + ] + } + }, + { + "name": "children", + "role": "feature", + "semantic_type": "categorical", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 4, + "unique_ratio": 0.000386, + "example_values": [ + "1", + "3", + "2", + "more" + ] + } + }, + { + "name": "housing", + "role": "feature", + "semantic_type": "categorical", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 3, + "unique_ratio": 0.000289, + "example_values": [ + "less_conv", + "convenient", + "critical" + ] + } + }, + { + "name": "finance", + "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.000193, + "example_values": [ + "convenient", + "inconv" + ] + } + }, + { + "name": "social", + "role": "feature", + "semantic_type": "categorical", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 3, + "unique_ratio": 0.000289, + "example_values": [ + "slightly_prob", + "nonprob", + "problematic" + ] + } + }, + { + "name": "health", + "role": "feature", + "semantic_type": "categorical", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 3, + "unique_ratio": 0.000289, + "example_values": [ + "recommended", + "priority", + "not_recom" + ] + } + }, + { + "name": "class", + "role": "target", + "semantic_type": "categorical", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 5, + "unique_ratio": 0.000482, + "example_values": [ + "priority", + "spec_prior", + "not_recom", + "very_recom", + "recommend" + ] + } + } + ], + "public_manifest": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/c7/tabddpm/tabddpm-c7-20260429_052039/public_gate/staged_input_manifest.json", + "train_csv": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/c7/tabddpm/tabddpm-c7-20260429_052039/staged/public/train.csv", + "val_csv": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/c7/tabddpm/tabddpm-c7-20260429_052039/staged/public/val.csv", + "test_csv": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/c7/tabddpm/tabddpm-c7-20260429_052039/staged/public/test.csv", + "features_json": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/c7/tabddpm/tabddpm-c7-20260429_052039/staged/public/staged_features.json", + "public_gate_report": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/c7/tabddpm/tabddpm-c7-20260429_052039/public_gate/public_gate_report.json" +} \ No newline at end of file diff --git a/timecost/c7/tabddpm/tabddpm-c7-20260429_052039/tabddpm-c7-10368-20260429_052217.csv b/timecost/c7/tabddpm/tabddpm-c7-20260429_052039/tabddpm-c7-10368-20260429_052217.csv new file mode 100644 index 0000000000000000000000000000000000000000..ea759a732aef85c64642b1015a371a628db4f023 --- /dev/null +++ b/timecost/c7/tabddpm/tabddpm-c7-20260429_052039/tabddpm-c7-10368-20260429_052217.csv @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:fca12de9a3621b5e41a7f0c4952f8cffd66ae002b2e412abe4df34493b1a18f1 +size 373315 diff --git a/timecost/c7/tabddpm/tabddpm-c7-20260429_052039/train_20260429_052039.log b/timecost/c7/tabddpm/tabddpm-c7-20260429_052039/train_20260429_052039.log new file mode 100644 index 0000000000000000000000000000000000000000..c28b18e3f62d9b224c51346f42e6e7f5e78b4702 --- /dev/null +++ b/timecost/c7/tabddpm/tabddpm-c7-20260429_052039/train_20260429_052039.log @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:cd88eb16a0a4da60df76f1cab22fee5c923aa05babd86a292910fda970565c1e +size 1080 diff --git a/timecost/c7/tabdiff/tabdiff-c7-20260429_033922/_tabdiff_gen.py b/timecost/c7/tabdiff/tabdiff-c7-20260429_033922/_tabdiff_gen.py new file mode 100644 index 0000000000000000000000000000000000000000..a958e904213e983a883c85d2d4a121a13d96fef0 --- /dev/null +++ b/timecost/c7/tabdiff/tabdiff-c7-20260429_033922/_tabdiff_gen.py @@ -0,0 +1,36 @@ + +import os, shutil, subprocess, sys +td = r"/workspace/TabDiff" +name = r"pipeline_ds" +src = r"/work/output-Benchmark-trainonly-v1/c7/tabdiff/tabdiff-c7-20260429_033922/tabular_bundle/pipeline_ds" +dst_data = os.path.join(td, "data", name) +dst_syn = os.path.join(td, "synthetic", name) +shutil.rmtree(dst_data, ignore_errors=True) +shutil.copytree(src, dst_data) +os.makedirs(dst_syn, exist_ok=True) +for fn in ("real.csv", "test.csv", "val.csv"): + shutil.copy(os.path.join(src, fn), os.path.join(dst_syn, fn)) +os.chdir(td) +os.environ["PYTHONPATH"] = td + os.pathsep + os.environ.get("PYTHONPATH", "") +subprocess.check_call([ + sys.executable, "-m", "tabdiff.main", + "--dataname", name, "--mode", "test", "--gpu", "0", + "--no_wandb", "--exp_name", r"adapter_learnable", + "--ckpt_path", r"/workspace/TabDiff/tabdiff/ckpt/pipeline_ds/adapter_learnable/model_500.pt", + "--num_samples_to_generate", str(int(10368)), +]) +# test() 写入 tabdiff/result////samples.csv +import glob as g +base = os.path.join(td, "tabdiff", "result", name, r"adapter_learnable") +best = None +best_t = -1.0 +for root, _, files in os.walk(base): + if "samples.csv" in files: + p = os.path.join(root, "samples.csv") + t = os.path.getmtime(p) + if t > best_t: + best_t = t + best = p +if not best: + raise SystemExit("tabdiff: no samples.csv under " + base) +shutil.copy(best, r"/work/output-Benchmark-trainonly-v1/c7/tabdiff/tabdiff-c7-20260429_033922/tabdiff-c7-10368-20260429_034804.csv") diff --git a/timecost/c7/tabdiff/tabdiff-c7-20260429_033922/_tabdiff_train.py b/timecost/c7/tabdiff/tabdiff-c7-20260429_033922/_tabdiff_train.py new file mode 100644 index 0000000000000000000000000000000000000000..db18c0f7ca9f99e86380416e384e03dba8a006a7 --- /dev/null +++ b/timecost/c7/tabdiff/tabdiff-c7-20260429_033922/_tabdiff_train.py @@ -0,0 +1,21 @@ + +import os, shutil, subprocess, sys +td = r"/workspace/TabDiff" +name = r"pipeline_ds" +src = r"/work/output-Benchmark-trainonly-v1/c7/tabdiff/tabdiff-c7-20260429_033922/tabular_bundle/pipeline_ds" +dst_data = os.path.join(td, "data", name) +dst_syn = os.path.join(td, "synthetic", name) +shutil.rmtree(dst_data, ignore_errors=True) +shutil.copytree(src, dst_data) +os.makedirs(dst_syn, exist_ok=True) +for fn in ("real.csv", "test.csv", "val.csv"): + shutil.copy(os.path.join(src, fn), os.path.join(dst_syn, fn)) +os.chdir(td) +os.environ["PYTHONPATH"] = td + os.pathsep + os.environ.get("PYTHONPATH", "") +os.environ["TABDIFF_SMOKE_STEPS"] = "500" +os.environ["TABDIFF_ADAPTER_TRAIN"] = "1" +subprocess.check_call([ + sys.executable, "-m", "tabdiff.main", + "--dataname", name, "--mode", "train", "--gpu", "0", + "--no_wandb", "--exp_name", r"adapter_learnable", +]) diff --git a/timecost/c7/tabdiff/tabdiff-c7-20260429_033922/gen_20260429_034804.log b/timecost/c7/tabdiff/tabdiff-c7-20260429_033922/gen_20260429_034804.log new file mode 100644 index 0000000000000000000000000000000000000000..429c2acfe53e5626962af89f3bad3a030a5b8896 --- /dev/null +++ b/timecost/c7/tabdiff/tabdiff-c7-20260429_033922/gen_20260429_034804.log @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:d24c7ed48f7e338d0fd32224bbab0ef22d1fcf4bbed15f58106e572839d8955e +size 5240 diff --git a/timecost/c7/tabdiff/tabdiff-c7-20260429_033922/input_snapshot.json b/timecost/c7/tabdiff/tabdiff-c7-20260429_033922/input_snapshot.json new file mode 100644 index 0000000000000000000000000000000000000000..20d4b266b7691979822c6190a9818f61e8ac3aa1 --- /dev/null +++ b/timecost/c7/tabdiff/tabdiff-c7-20260429_033922/input_snapshot.json @@ -0,0 +1,36 @@ +{ + "dataset_id": "c7", + "model": "tabdiff", + "inputs": { + "train_csv": { + "path": "/data/jialinzhang/SynthesizePipeline-server/DatasetNew/c7/c7-train.csv", + "exists": true, + "size": 857718, + "sha256": "0ec97b49cecfd452f07551a63db7b812b5998a1e37101eae82255d00aa6a6243" + }, + "val_csv": { + "path": "/data/jialinzhang/SynthesizePipeline-server/DatasetNew/c7/c7-val.csv", + "exists": true, + "size": 107489, + "sha256": "4501bb2be19f7e13b7ff5e9dedd74e3dd42f2cafc8cefd5435bda61fc974a769" + }, + "test_csv": { + "path": "/data/jialinzhang/SynthesizePipeline-server/DatasetNew/c7/c7-test.csv", + "exists": true, + "size": 107327, + "sha256": "f9e808033a07feabb980addcf8c5f75111189ac2fb70993b8ad0f5ca3d5cfbae" + }, + "profile_json": { + "path": "/data/jialinzhang/SynthesizePipeline-server/DatasetNew/artifacts/data_core/tabular/c7/c7-dataset_profile.json", + "exists": true, + "size": 4014, + "sha256": "60424c615b91a26cf02d9bc1d7f91caa0ceb95bab39eb7cff6f9edea3ca0600e" + }, + "contract_json": { + "path": "/data/jialinzhang/SynthesizePipeline-server/DatasetNew/artifacts/data_core/tabular/c7/c7-dataset_contract_v1.json", + "exists": true, + "size": 4759, + "sha256": "79a434a1e2553b14b9f2e98c1adfc32a71aaa0d6cd49234f3f8a5603efca4ebd" + } + } +} \ No newline at end of file diff --git a/timecost/c7/tabdiff/tabdiff-c7-20260429_033922/models_tabdiff/trained.pt b/timecost/c7/tabdiff/tabdiff-c7-20260429_033922/models_tabdiff/trained.pt new file mode 100644 index 0000000000000000000000000000000000000000..bc319a55a9c7152a1137f968b6fa1c735125ad11 --- /dev/null +++ b/timecost/c7/tabdiff/tabdiff-c7-20260429_033922/models_tabdiff/trained.pt @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:306660b8aad4549267c68390b017e15ddb9bc06a02c80515eb72a97ae31a81eb +size 74 diff --git a/timecost/c7/tabdiff/tabdiff-c7-20260429_033922/public_gate/normalized_schema_snapshot.json b/timecost/c7/tabdiff/tabdiff-c7-20260429_033922/public_gate/normalized_schema_snapshot.json new file mode 100644 index 0000000000000000000000000000000000000000..3ea4859ec2aa245a19531b254f45d87237c23069 --- /dev/null +++ b/timecost/c7/tabdiff/tabdiff-c7-20260429_033922/public_gate/normalized_schema_snapshot.json @@ -0,0 +1,183 @@ +{ + "dataset_id": "c7", + "target_column": "class", + "task_type": "classification", + "columns": [ + { + "name": "parents", + "role": "feature", + "semantic_type": "categorical", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 3, + "unique_ratio": 0.000289, + "example_values": [ + "usual", + "pretentious", + "great_pret" + ] + } + }, + { + "name": "has_nurs", + "role": "feature", + "semantic_type": "categorical", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 5, + "unique_ratio": 0.000482, + "example_values": [ + "very_crit", + "critical", + "improper", + "less_proper", + "proper" + ] + } + }, + { + "name": "form", + "role": "feature", + "semantic_type": "categorical", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 4, + "unique_ratio": 0.000386, + "example_values": [ + "complete", + "completed", + "incomplete", + "foster" + ] + } + }, + { + "name": "children", + "role": "feature", + "semantic_type": "categorical", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 4, + "unique_ratio": 0.000386, + "example_values": [ + "1", + "3", + "2", + "more" + ] + } + }, + { + "name": "housing", + "role": "feature", + "semantic_type": "categorical", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 3, + "unique_ratio": 0.000289, + "example_values": [ + "less_conv", + "convenient", + "critical" + ] + } + }, + { + "name": "finance", + "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.000193, + "example_values": [ + "convenient", + "inconv" + ] + } + }, + { + "name": "social", + "role": "feature", + "semantic_type": "categorical", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 3, + "unique_ratio": 0.000289, + "example_values": [ + "slightly_prob", + "nonprob", + "problematic" + ] + } + }, + { + "name": "health", + "role": "feature", + "semantic_type": "categorical", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 3, + "unique_ratio": 0.000289, + "example_values": [ + "recommended", + "priority", + "not_recom" + ] + } + }, + { + "name": "class", + "role": "target", + "semantic_type": "categorical", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 5, + "unique_ratio": 0.000482, + "example_values": [ + "priority", + "spec_prior", + "not_recom", + "very_recom", + "recommend" + ] + } + } + ] +} \ No newline at end of file diff --git a/timecost/c7/tabdiff/tabdiff-c7-20260429_033922/public_gate/public_gate_report.json b/timecost/c7/tabdiff/tabdiff-c7-20260429_033922/public_gate/public_gate_report.json new file mode 100644 index 0000000000000000000000000000000000000000..3328fe59cd490a424e50f931e9eedba9e81d1cec --- /dev/null +++ b/timecost/c7/tabdiff/tabdiff-c7-20260429_033922/public_gate/public_gate_report.json @@ -0,0 +1,37 @@ +{ + "dataset_id": "c7", + "status": "pass", + "checks": [ + { + "check_id": "PG001_csv_parse_ok", + "status": "pass" + }, + { + "check_id": "PG002_split_header_consistent", + "status": "pass" + }, + { + "check_id": "PG003_profile_header_match", + "status": "pass" + }, + { + "check_id": "PG004_missing_token_normalized", + "status": "pass" + }, + { + "check_id": "PG005_semantic_type_validated", + "status": "pass" + }, + { + "check_id": "PG006_target_defined_and_valid", + "status": "pass" + } + ], + "target_column": "class", + "task_type": "classification", + "input_splits": { + "train": "/data/jialinzhang/SynthesizePipeline-server/DatasetNew/c7/c7-train.csv", + "val": "/data/jialinzhang/SynthesizePipeline-server/DatasetNew/c7/c7-val.csv", + "test": "/data/jialinzhang/SynthesizePipeline-server/DatasetNew/c7/c7-test.csv" + } +} \ No newline at end of file diff --git a/timecost/c7/tabdiff/tabdiff-c7-20260429_033922/public_gate/staged_input_manifest.json b/timecost/c7/tabdiff/tabdiff-c7-20260429_033922/public_gate/staged_input_manifest.json new file mode 100644 index 0000000000000000000000000000000000000000..664bdf30e160a7b9a8e77f6e490af1cd4506f5dc --- /dev/null +++ b/timecost/c7/tabdiff/tabdiff-c7-20260429_033922/public_gate/staged_input_manifest.json @@ -0,0 +1,188 @@ +{ + "dataset_id": "c7", + "target_column": "class", + "task_type": "classification", + "train_csv": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/c7/tabdiff/tabdiff-c7-20260429_033922/staged/public/train.csv", + "val_csv": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/c7/tabdiff/tabdiff-c7-20260429_033922/staged/public/val.csv", + "test_csv": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/c7/tabdiff/tabdiff-c7-20260429_033922/staged/public/test.csv", + "features_json": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/c7/tabdiff/tabdiff-c7-20260429_033922/staged/public/staged_features.json", + "public_gate_report": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/c7/tabdiff/tabdiff-c7-20260429_033922/public_gate/public_gate_report.json", + "column_schema": [ + { + "name": "parents", + "role": "feature", + "semantic_type": "categorical", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 3, + "unique_ratio": 0.000289, + "example_values": [ + "usual", + "pretentious", + "great_pret" + ] + } + }, + { + "name": "has_nurs", + "role": "feature", + "semantic_type": "categorical", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 5, + "unique_ratio": 0.000482, + "example_values": [ + "very_crit", + "critical", + "improper", + "less_proper", + "proper" + ] + } + }, + { + "name": "form", + "role": "feature", + "semantic_type": "categorical", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 4, + "unique_ratio": 0.000386, + "example_values": [ + "complete", + "completed", + "incomplete", + "foster" + ] + } + }, + { + "name": "children", + "role": "feature", + "semantic_type": "categorical", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 4, + "unique_ratio": 0.000386, + "example_values": [ + "1", + "3", + "2", + "more" + ] + } + }, + { + "name": "housing", + "role": "feature", + "semantic_type": "categorical", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 3, + "unique_ratio": 0.000289, + "example_values": [ + "less_conv", + "convenient", + "critical" + ] + } + }, + { + "name": "finance", + "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.000193, + "example_values": [ + "convenient", + "inconv" + ] + } + }, + { + "name": "social", + "role": "feature", + "semantic_type": "categorical", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 3, + "unique_ratio": 0.000289, + "example_values": [ + "slightly_prob", + "nonprob", + "problematic" + ] + } + }, + { + "name": "health", + "role": "feature", + "semantic_type": "categorical", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 3, + "unique_ratio": 0.000289, + "example_values": [ + "recommended", + "priority", + "not_recom" + ] + } + }, + { + "name": "class", + "role": "target", + "semantic_type": "categorical", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 5, + "unique_ratio": 0.000482, + "example_values": [ + "priority", + "spec_prior", + "not_recom", + "very_recom", + "recommend" + ] + } + } + ] +} \ No newline at end of file diff --git a/timecost/c7/tabdiff/tabdiff-c7-20260429_033922/runtime_result.json b/timecost/c7/tabdiff/tabdiff-c7-20260429_033922/runtime_result.json new file mode 100644 index 0000000000000000000000000000000000000000..72325dd199b6070190affdca82f9ffec13423c55 --- /dev/null +++ b/timecost/c7/tabdiff/tabdiff-c7-20260429_033922/runtime_result.json @@ -0,0 +1,15 @@ +{ + "dataset_id": "c7", + "model": "tabdiff", + "run_id": "tabdiff-c7-20260429_033922", + "public_gate_status": "pass", + "adapter_ready_status": "pass", + "train_status": "success", + "generate_status": "success", + "reason_code": null, + "reason_detail": null, + "artifacts": { + "synthetic_csv": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/c7/tabdiff/tabdiff-c7-20260429_033922/tabdiff-c7-10368-20260429_034804.csv", + "model_path": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/c7/tabdiff/tabdiff-c7-20260429_033922/models_tabdiff/trained.pt" + } +} \ No newline at end of file diff --git a/timecost/c7/tabdiff/tabdiff-c7-20260429_033922/staged/public/staged_features.json b/timecost/c7/tabdiff/tabdiff-c7-20260429_033922/staged/public/staged_features.json new file mode 100644 index 0000000000000000000000000000000000000000..0e23df6bcfb7ecfd44dfefc3d0ca0bf6b6aebc60 --- /dev/null +++ b/timecost/c7/tabdiff/tabdiff-c7-20260429_033922/staged/public/staged_features.json @@ -0,0 +1,47 @@ +[ + { + "feature_name": "parents", + "data_type": "categorical", + "is_target": false + }, + { + "feature_name": "has_nurs", + "data_type": "categorical", + "is_target": false + }, + { + "feature_name": "form", + "data_type": "categorical", + "is_target": false + }, + { + "feature_name": "children", + "data_type": "categorical", + "is_target": false + }, + { + "feature_name": "housing", + "data_type": "categorical", + "is_target": false + }, + { + "feature_name": "finance", + "data_type": "categorical", + "is_target": false + }, + { + "feature_name": "social", + "data_type": "categorical", + "is_target": false + }, + { + "feature_name": "health", + "data_type": "categorical", + "is_target": false + }, + { + "feature_name": "class", + "data_type": "categorical", + "is_target": true + } +] \ No newline at end of file diff --git a/timecost/c7/tabdiff/tabdiff-c7-20260429_033922/staged/public/test.csv b/timecost/c7/tabdiff/tabdiff-c7-20260429_033922/staged/public/test.csv new file mode 100644 index 0000000000000000000000000000000000000000..cb9d7081ca745e9eed28a35168872d450c4a2a44 --- /dev/null +++ b/timecost/c7/tabdiff/tabdiff-c7-20260429_033922/staged/public/test.csv @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:2042076337d5c37c6476e6bca2bd33cb5a171450c27894534ef50ac223256058 +size 106030 diff --git a/timecost/c7/tabdiff/tabdiff-c7-20260429_033922/staged/public/train.csv b/timecost/c7/tabdiff/tabdiff-c7-20260429_033922/staged/public/train.csv new file mode 100644 index 0000000000000000000000000000000000000000..4c8e5e0c5031fc7e8e25213132c1231950ec29da --- /dev/null +++ b/timecost/c7/tabdiff/tabdiff-c7-20260429_033922/staged/public/train.csv @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:b37f6b2ef5257f40bd826ac956749881f0f474362bdb56e8c5728ad629242e3a +size 847349 diff --git a/timecost/c7/tabdiff/tabdiff-c7-20260429_033922/staged/public/val.csv b/timecost/c7/tabdiff/tabdiff-c7-20260429_033922/staged/public/val.csv new file mode 100644 index 0000000000000000000000000000000000000000..55792963756b1ae35b4d79dee11881372962b8d5 --- /dev/null +++ b/timecost/c7/tabdiff/tabdiff-c7-20260429_033922/staged/public/val.csv @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:eff6dec27c3740661a1ae84dea391d690dfb60342bfd5d7527b903fdd6009780 +size 106192 diff --git a/timecost/c7/tabdiff/tabdiff-c7-20260429_033922/staged/tabdiff/adapter_report.json b/timecost/c7/tabdiff/tabdiff-c7-20260429_033922/staged/tabdiff/adapter_report.json new file mode 100644 index 0000000000000000000000000000000000000000..e2f2f2cf3f433933891c35ca7c313dae51a25863 --- /dev/null +++ b/timecost/c7/tabdiff/tabdiff-c7-20260429_033922/staged/tabdiff/adapter_report.json @@ -0,0 +1,7 @@ +{ + "adapter_ready_status": "pass", + "adapter_fail_reason_code": null, + "adapter_fail_detail": null, + "adapter_transforms_applied": [], + "model_input_manifest": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/c7/tabdiff/tabdiff-c7-20260429_033922/staged/tabdiff/model_input_manifest.json" +} \ No newline at end of file diff --git a/timecost/c7/tabdiff/tabdiff-c7-20260429_033922/staged/tabdiff/adapter_transforms_applied.json b/timecost/c7/tabdiff/tabdiff-c7-20260429_033922/staged/tabdiff/adapter_transforms_applied.json new file mode 100644 index 0000000000000000000000000000000000000000..0637a088a01e8ddab3bf3fa98dbe804cbde1a0dc --- /dev/null +++ b/timecost/c7/tabdiff/tabdiff-c7-20260429_033922/staged/tabdiff/adapter_transforms_applied.json @@ -0,0 +1 @@ +[] \ No newline at end of file diff --git a/timecost/c7/tabdiff/tabdiff-c7-20260429_033922/staged/tabdiff/model_input_manifest.json b/timecost/c7/tabdiff/tabdiff-c7-20260429_033922/staged/tabdiff/model_input_manifest.json new file mode 100644 index 0000000000000000000000000000000000000000..f7d3c6a224883b18939386987dd5837022b598d6 --- /dev/null +++ b/timecost/c7/tabdiff/tabdiff-c7-20260429_033922/staged/tabdiff/model_input_manifest.json @@ -0,0 +1,190 @@ +{ + "dataset_id": "c7", + "model": "tabdiff", + "target_column": "class", + "task_type": "classification", + "column_schema": [ + { + "name": "parents", + "role": "feature", + "semantic_type": "categorical", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 3, + "unique_ratio": 0.000289, + "example_values": [ + "usual", + "pretentious", + "great_pret" + ] + } + }, + { + "name": "has_nurs", + "role": "feature", + "semantic_type": "categorical", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 5, + "unique_ratio": 0.000482, + "example_values": [ + "very_crit", + "critical", + "improper", + "less_proper", + "proper" + ] + } + }, + { + "name": "form", + "role": "feature", + "semantic_type": "categorical", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 4, + "unique_ratio": 0.000386, + "example_values": [ + "complete", + "completed", + "incomplete", + "foster" + ] + } + }, + { + "name": "children", + "role": "feature", + "semantic_type": "categorical", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 4, + "unique_ratio": 0.000386, + "example_values": [ + "1", + "3", + "2", + "more" + ] + } + }, + { + "name": "housing", + "role": "feature", + "semantic_type": "categorical", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 3, + "unique_ratio": 0.000289, + "example_values": [ + "less_conv", + "convenient", + "critical" + ] + } + }, + { + "name": "finance", + "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.000193, + "example_values": [ + "convenient", + "inconv" + ] + } + }, + { + "name": "social", + "role": "feature", + "semantic_type": "categorical", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 3, + "unique_ratio": 0.000289, + "example_values": [ + "slightly_prob", + "nonprob", + "problematic" + ] + } + }, + { + "name": "health", + "role": "feature", + "semantic_type": "categorical", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 3, + "unique_ratio": 0.000289, + "example_values": [ + "recommended", + "priority", + "not_recom" + ] + } + }, + { + "name": "class", + "role": "target", + "semantic_type": "categorical", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 5, + "unique_ratio": 0.000482, + "example_values": [ + "priority", + "spec_prior", + "not_recom", + "very_recom", + "recommend" + ] + } + } + ], + "public_manifest": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/c7/tabdiff/tabdiff-c7-20260429_033922/public_gate/staged_input_manifest.json", + "train_csv": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/c7/tabdiff/tabdiff-c7-20260429_033922/staged/public/train.csv", + "val_csv": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/c7/tabdiff/tabdiff-c7-20260429_033922/staged/public/val.csv", + "test_csv": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/c7/tabdiff/tabdiff-c7-20260429_033922/staged/public/test.csv", + "features_json": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/c7/tabdiff/tabdiff-c7-20260429_033922/staged/public/staged_features.json", + "public_gate_report": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/c7/tabdiff/tabdiff-c7-20260429_033922/public_gate/public_gate_report.json" +} \ No newline at end of file diff --git a/timecost/c7/tabdiff/tabdiff-c7-20260429_033922/tabdiff-c7-10368-20260429_034804.csv b/timecost/c7/tabdiff/tabdiff-c7-20260429_033922/tabdiff-c7-10368-20260429_034804.csv new file mode 100644 index 0000000000000000000000000000000000000000..c30f0ae21716b82d5a6ae986f6a5e041d8b60e58 --- /dev/null +++ b/timecost/c7/tabdiff/tabdiff-c7-20260429_033922/tabdiff-c7-10368-20260429_034804.csv @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:17045482ec150db7fcad1cb32d34c4849911a9d6f8c9647eb7b4b28ca455e63a +size 186691 diff --git a/timecost/c7/tabdiff/tabdiff-c7-20260429_033922/tabdiff_train_meta.json b/timecost/c7/tabdiff/tabdiff-c7-20260429_033922/tabdiff_train_meta.json new file mode 100644 index 0000000000000000000000000000000000000000..67db548cc1d51dd0579d7d72a740db13c38399db --- /dev/null +++ b/timecost/c7/tabdiff/tabdiff-c7-20260429_033922/tabdiff_train_meta.json @@ -0,0 +1,5 @@ +{ + "exp_name": "adapter_learnable", + "dataname": "pipeline_ds", + "steps": 500 +} \ No newline at end of file diff --git a/timecost/c7/tabdiff/tabdiff-c7-20260429_033922/tabular_bundle/pipeline_ds/X_cat_test.npy b/timecost/c7/tabdiff/tabdiff-c7-20260429_033922/tabular_bundle/pipeline_ds/X_cat_test.npy new file mode 100644 index 0000000000000000000000000000000000000000..5088dd2f36e0ffeae013fe0c5cdc769d9d88d33b --- /dev/null +++ b/timecost/c7/tabdiff/tabdiff-c7-20260429_033922/tabular_bundle/pipeline_ds/X_cat_test.npy @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:fe170020f0e97be3d763c4207ff95efc4e981264660ef6397fcf5f6e62d31eec +size 663680 diff --git a/timecost/c7/tabdiff/tabdiff-c7-20260429_033922/tabular_bundle/pipeline_ds/X_cat_train.npy b/timecost/c7/tabdiff/tabdiff-c7-20260429_033922/tabular_bundle/pipeline_ds/X_cat_train.npy new file mode 100644 index 0000000000000000000000000000000000000000..5088dd2f36e0ffeae013fe0c5cdc769d9d88d33b --- /dev/null +++ b/timecost/c7/tabdiff/tabdiff-c7-20260429_033922/tabular_bundle/pipeline_ds/X_cat_train.npy @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:fe170020f0e97be3d763c4207ff95efc4e981264660ef6397fcf5f6e62d31eec +size 663680 diff --git a/timecost/c7/tabdiff/tabdiff-c7-20260429_033922/tabular_bundle/pipeline_ds/X_cat_val.npy b/timecost/c7/tabdiff/tabdiff-c7-20260429_033922/tabular_bundle/pipeline_ds/X_cat_val.npy new file mode 100644 index 0000000000000000000000000000000000000000..5088dd2f36e0ffeae013fe0c5cdc769d9d88d33b --- /dev/null +++ b/timecost/c7/tabdiff/tabdiff-c7-20260429_033922/tabular_bundle/pipeline_ds/X_cat_val.npy @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:fe170020f0e97be3d763c4207ff95efc4e981264660ef6397fcf5f6e62d31eec +size 663680 diff --git a/timecost/c7/tabdiff/tabdiff-c7-20260429_033922/tabular_bundle/pipeline_ds/X_num_test.npy b/timecost/c7/tabdiff/tabdiff-c7-20260429_033922/tabular_bundle/pipeline_ds/X_num_test.npy new file mode 100644 index 0000000000000000000000000000000000000000..05368376414bc8e2221b9744c2e3746a587e749c --- /dev/null +++ b/timecost/c7/tabdiff/tabdiff-c7-20260429_033922/tabular_bundle/pipeline_ds/X_num_test.npy @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:ba6482dc6705ea0ac5fc0355391800cb0937fe4c3221baa21bc1f47beec8c260 +size 128 diff --git a/timecost/c7/tabdiff/tabdiff-c7-20260429_033922/tabular_bundle/pipeline_ds/X_num_train.npy b/timecost/c7/tabdiff/tabdiff-c7-20260429_033922/tabular_bundle/pipeline_ds/X_num_train.npy new file mode 100644 index 0000000000000000000000000000000000000000..05368376414bc8e2221b9744c2e3746a587e749c --- /dev/null +++ b/timecost/c7/tabdiff/tabdiff-c7-20260429_033922/tabular_bundle/pipeline_ds/X_num_train.npy @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:ba6482dc6705ea0ac5fc0355391800cb0937fe4c3221baa21bc1f47beec8c260 +size 128 diff --git a/timecost/c7/tabdiff/tabdiff-c7-20260429_033922/tabular_bundle/pipeline_ds/X_num_val.npy b/timecost/c7/tabdiff/tabdiff-c7-20260429_033922/tabular_bundle/pipeline_ds/X_num_val.npy new file mode 100644 index 0000000000000000000000000000000000000000..05368376414bc8e2221b9744c2e3746a587e749c --- /dev/null +++ b/timecost/c7/tabdiff/tabdiff-c7-20260429_033922/tabular_bundle/pipeline_ds/X_num_val.npy @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:ba6482dc6705ea0ac5fc0355391800cb0937fe4c3221baa21bc1f47beec8c260 +size 128 diff --git a/timecost/c7/tabdiff/tabdiff-c7-20260429_033922/tabular_bundle/pipeline_ds/info.json b/timecost/c7/tabdiff/tabdiff-c7-20260429_033922/tabular_bundle/pipeline_ds/info.json new file mode 100644 index 0000000000000000000000000000000000000000..0a27214b83536ad36b42f7207db6cfb548d0f7d8 --- /dev/null +++ b/timecost/c7/tabdiff/tabdiff-c7-20260429_033922/tabular_bundle/pipeline_ds/info.json @@ -0,0 +1,104 @@ +{ + "name": "pipeline_ds", + "task_type": "multiclass", + "n_num_features": 0, + "n_cat_features": 8, + "train_size": 10368, + "test_num": 10368, + "val_num": 10368, + "train_num": 10368, + "bundle_note": "val/test matrices are train copies (train-only policy; no real held-out rows).", + "num_col_idx": [], + "cat_col_idx": [ + 0, + 1, + 2, + 3, + 4, + 5, + 6, + 7 + ], + "target_col_idx": [ + 8 + ], + "column_names": [ + "parents", + "has_nurs", + "form", + "children", + "housing", + "finance", + "social", + "health", + "class" + ], + "int_col_idx": [], + "int_columns": [], + "int_col_idx_wrt_num": [], + "metadata": { + "columns": { + "0": { + "sdtype": "categorical" + }, + "1": { + "sdtype": "categorical" + }, + "2": { + "sdtype": "categorical" + }, + "3": { + "sdtype": "categorical" + }, + "4": { + "sdtype": "categorical" + }, + "5": { + "sdtype": "categorical" + }, + "6": { + "sdtype": "categorical" + }, + "7": { + "sdtype": "categorical" + }, + "8": { + "sdtype": "categorical" + } + } + }, + "idx_mapping": { + "0": 0, + "1": 1, + "2": 2, + "3": 3, + "4": 4, + "5": 5, + "6": 6, + "7": 7, + "8": 8 + }, + "inverse_idx_mapping": { + "0": 0, + "1": 1, + "2": 2, + "3": 3, + "4": 4, + "5": 5, + "6": 6, + "7": 7, + "8": 8 + }, + "idx_name_mapping": { + "0": "parents", + "1": "has_nurs", + "2": "form", + "3": "children", + "4": "housing", + "5": "finance", + "6": "social", + "7": "health", + "8": "class" + }, + "n_classes": 5 +} \ No newline at end of file diff --git a/timecost/c7/tabdiff/tabdiff-c7-20260429_033922/tabular_bundle/pipeline_ds/real.csv b/timecost/c7/tabdiff/tabdiff-c7-20260429_033922/tabular_bundle/pipeline_ds/real.csv new file mode 100644 index 0000000000000000000000000000000000000000..21879e2e98f6a99a9fb514ff1b5dc907c5eeef6f --- /dev/null +++ b/timecost/c7/tabdiff/tabdiff-c7-20260429_033922/tabular_bundle/pipeline_ds/real.csv @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:691798157151e2810978f9c3113050cbde9ce547607309e6994953e3a77b5b60 +size 269749 diff --git a/timecost/c7/tabdiff/tabdiff-c7-20260429_033922/tabular_bundle/pipeline_ds/test.csv b/timecost/c7/tabdiff/tabdiff-c7-20260429_033922/tabular_bundle/pipeline_ds/test.csv new file mode 100644 index 0000000000000000000000000000000000000000..21879e2e98f6a99a9fb514ff1b5dc907c5eeef6f --- /dev/null +++ b/timecost/c7/tabdiff/tabdiff-c7-20260429_033922/tabular_bundle/pipeline_ds/test.csv @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:691798157151e2810978f9c3113050cbde9ce547607309e6994953e3a77b5b60 +size 269749 diff --git a/timecost/c7/tabdiff/tabdiff-c7-20260429_033922/tabular_bundle/pipeline_ds/val.csv b/timecost/c7/tabdiff/tabdiff-c7-20260429_033922/tabular_bundle/pipeline_ds/val.csv new file mode 100644 index 0000000000000000000000000000000000000000..21879e2e98f6a99a9fb514ff1b5dc907c5eeef6f --- /dev/null +++ b/timecost/c7/tabdiff/tabdiff-c7-20260429_033922/tabular_bundle/pipeline_ds/val.csv @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:691798157151e2810978f9c3113050cbde9ce547607309e6994953e3a77b5b60 +size 269749 diff --git a/timecost/c7/tabdiff/tabdiff-c7-20260429_033922/tabular_bundle/pipeline_ds/y_test.npy b/timecost/c7/tabdiff/tabdiff-c7-20260429_033922/tabular_bundle/pipeline_ds/y_test.npy new file mode 100644 index 0000000000000000000000000000000000000000..91a84420670ea33a588c708837d1c1fff56c64cd --- /dev/null +++ b/timecost/c7/tabdiff/tabdiff-c7-20260429_033922/tabular_bundle/pipeline_ds/y_test.npy @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:99ac41d294af4eecd6e8a45863077f58b49456e9d0e055344706824cbb034964 +size 83072 diff --git a/timecost/c7/tabdiff/tabdiff-c7-20260429_033922/tabular_bundle/pipeline_ds/y_train.npy b/timecost/c7/tabdiff/tabdiff-c7-20260429_033922/tabular_bundle/pipeline_ds/y_train.npy new file mode 100644 index 0000000000000000000000000000000000000000..91a84420670ea33a588c708837d1c1fff56c64cd --- /dev/null +++ b/timecost/c7/tabdiff/tabdiff-c7-20260429_033922/tabular_bundle/pipeline_ds/y_train.npy @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:99ac41d294af4eecd6e8a45863077f58b49456e9d0e055344706824cbb034964 +size 83072 diff --git a/timecost/c7/tabdiff/tabdiff-c7-20260429_033922/tabular_bundle/pipeline_ds/y_val.npy b/timecost/c7/tabdiff/tabdiff-c7-20260429_033922/tabular_bundle/pipeline_ds/y_val.npy new file mode 100644 index 0000000000000000000000000000000000000000..91a84420670ea33a588c708837d1c1fff56c64cd --- /dev/null +++ b/timecost/c7/tabdiff/tabdiff-c7-20260429_033922/tabular_bundle/pipeline_ds/y_val.npy @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:99ac41d294af4eecd6e8a45863077f58b49456e9d0e055344706824cbb034964 +size 83072 diff --git a/timecost/c7/tabdiff/tabdiff-c7-20260429_033922/train_20260429_033923.log b/timecost/c7/tabdiff/tabdiff-c7-20260429_033922/train_20260429_033923.log new file mode 100644 index 0000000000000000000000000000000000000000..2d7000b7f1ea5b8ebb6c32e92efb8ff18c986e2a --- /dev/null +++ b/timecost/c7/tabdiff/tabdiff-c7-20260429_033922/train_20260429_033923.log @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:250df662b3b4e6a64ea5b736cdc88b9aa5030a75bcd495d84a90e03e7e15ff1e +size 441018 diff --git a/timecost/c7/tabpfgen/tabpfgen-c7-20260429_061314/_tabpfgen_generate.py b/timecost/c7/tabpfgen/tabpfgen-c7-20260429_061314/_tabpfgen_generate.py new file mode 100644 index 0000000000000000000000000000000000000000..08b47351c3e118ba3a59239e6f1ed473844988aa --- /dev/null +++ b/timecost/c7/tabpfgen/tabpfgen-c7-20260429_061314/_tabpfgen_generate.py @@ -0,0 +1,100 @@ +import os +import numpy as np +import pandas as pd +import json +from tabpfgen import TabPFGen + +df = pd.read_csv("/work/output-Benchmark-trainonly-v1/c7/tabpfgen/tabpfgen-c7-20260429_061314/staged/public/train.csv") +target_col = "class" + +target_missing = df[target_col].isna() +if target_missing.any(): + dropped = int(target_missing.sum()) + df = df.loc[~target_missing].copy() + print( + f"[TabPFGen] Dropped {dropped} rows with missing target '{target_col}'" + ) +if df.empty: + raise ValueError( + f"[TabPFGen] No rows remain after dropping missing target '{target_col}'" + ) + +feature_cols = [c for c in df.columns if c != target_col] + +cat_encodings = {} +for col in feature_cols: + if df[col].dtype == object or str(df[col].dtype) == 'category': + cats = sorted(df[col].dropna().unique().tolist(), key=str) + cat_map = {v: i for i, v in enumerate(cats)} + df[col] = df[col].map(cat_map).astype(float) + cat_encodings[col] = cats + print(f"[TabPFGen] Label-encoded '{col}' ({len(cats)} categories)") + +target_cats = None +if df[target_col].dtype == object or str(df[target_col].dtype) == 'category': + cats = sorted(df[target_col].dropna().unique().tolist(), key=str) + t_map = {v: i for i, v in enumerate(cats)} + df[target_col] = df[target_col].map(t_map).astype(float) + target_cats = cats + print(f"[TabPFGen] Label-encoded target '{target_col}' ({len(cats)} categories)") + +X = df[feature_cols].values.astype(np.float32) +y = df[target_col].values +target_n = int(10368) + +for i in range(X.shape[1]): + col_vals = X[:, i] + mask = np.isnan(col_vals) + if mask.any(): + mean_val = np.nanmean(col_vals) + X[mask, i] = mean_val if not np.isnan(mean_val) else 0.0 + +# TabPFGen v0.1.x API:仅支持 n_sgld_steps / sgld_* / device。 +# (旧版脚本中的 energy_*_chunk 与上游 TabPFGen 不一致,会导致 TypeError。) +gen = TabPFGen( + n_sgld_steps=1000, + sgld_step_size=0.01, + sgld_noise_scale=0.01, + device="auto", +) + +print(f"[TabPFGen] Generating {target_n} rows via generate_classification") +X_syn, y_syn = gen.generate_classification(X, y, n_samples=target_n) + +syn_df = pd.DataFrame(X_syn, columns=feature_cols) +syn_df[target_col] = y_syn + +for col, cats in cat_encodings.items(): + codes = np.round(syn_df[col].values).astype(int) + codes = np.clip(codes, 0, len(cats) - 1) + syn_df[col] = [cats[c] for c in codes] + +if target_cats is not None: + codes = np.round(syn_df[target_col].values).astype(int) + codes = np.clip(codes, 0, len(target_cats) - 1) + syn_df[target_col] = [target_cats[c] for c in codes] + +if len(syn_df) > target_n: + print(f"[TabPFGen] Trimming rows: {len(syn_df)} -> {target_n}") + syn_df = syn_df.iloc[:target_n].copy() +elif len(syn_df) < target_n: + deficit = target_n - len(syn_df) + print(f"[TabPFGen] Padding rows: {len(syn_df)} -> {target_n} (deficit={deficit})") + if len(syn_df) > 0: + extra = syn_df.sample(n=deficit, replace=True, random_state=42) + syn_df = pd.concat( + [syn_df.reset_index(drop=True), extra.reset_index(drop=True)], + ignore_index=True, + ) + else: + syn_df = df[feature_cols + [target_col]].sample( + n=target_n, replace=True, random_state=42 + ).reset_index(drop=True) + +syn_df = syn_df[list(df.columns)] +if len(syn_df) != target_n: + raise RuntimeError( + f"[TabPFGen] Row alignment failed: got {len(syn_df)}, expected {target_n}" + ) +syn_df.to_csv("/work/output-Benchmark-trainonly-v1/c7/tabpfgen/tabpfgen-c7-20260429_061314/tabpfgen-c7-10368-20260429_061314.csv", index=False) +print(f"[TabPFGen] Saved {len(syn_df)} rows -> /work/output-Benchmark-trainonly-v1/c7/tabpfgen/tabpfgen-c7-20260429_061314/tabpfgen-c7-10368-20260429_061314.csv") diff --git a/timecost/c7/tabpfgen/tabpfgen-c7-20260429_061314/gen_20260429_061314.log b/timecost/c7/tabpfgen/tabpfgen-c7-20260429_061314/gen_20260429_061314.log new file mode 100644 index 0000000000000000000000000000000000000000..f40e5b0db009ef96d449271680c1c264e5a07830 --- /dev/null +++ b/timecost/c7/tabpfgen/tabpfgen-c7-20260429_061314/gen_20260429_061314.log @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:50514dbd9cd064ed6754ea4b46fd82f7df79bcc7f0ff228dab81cdd9aeb3c8a6 +size 1267 diff --git a/timecost/c7/tabpfgen/tabpfgen-c7-20260429_061314/input_snapshot.json b/timecost/c7/tabpfgen/tabpfgen-c7-20260429_061314/input_snapshot.json new file mode 100644 index 0000000000000000000000000000000000000000..5d364a8d2a623f4bc59dd9c80500eaf78ec0cddf --- /dev/null +++ b/timecost/c7/tabpfgen/tabpfgen-c7-20260429_061314/input_snapshot.json @@ -0,0 +1,36 @@ +{ + "dataset_id": "c7", + "model": "tabpfgen", + "inputs": { + "train_csv": { + "path": "/data/jialinzhang/SynthesizePipeline-server/DatasetNew/c7/c7-train.csv", + "exists": true, + "size": 857718, + "sha256": "0ec97b49cecfd452f07551a63db7b812b5998a1e37101eae82255d00aa6a6243" + }, + "val_csv": { + "path": "/data/jialinzhang/SynthesizePipeline-server/DatasetNew/c7/c7-val.csv", + "exists": true, + "size": 107489, + "sha256": "4501bb2be19f7e13b7ff5e9dedd74e3dd42f2cafc8cefd5435bda61fc974a769" + }, + "test_csv": { + "path": "/data/jialinzhang/SynthesizePipeline-server/DatasetNew/c7/c7-test.csv", + "exists": true, + "size": 107327, + "sha256": "f9e808033a07feabb980addcf8c5f75111189ac2fb70993b8ad0f5ca3d5cfbae" + }, + "profile_json": { + "path": "/data/jialinzhang/SynthesizePipeline-server/DatasetNew/artifacts/data_core/tabular/c7/c7-dataset_profile.json", + "exists": true, + "size": 4014, + "sha256": "60424c615b91a26cf02d9bc1d7f91caa0ceb95bab39eb7cff6f9edea3ca0600e" + }, + "contract_json": { + "path": "/data/jialinzhang/SynthesizePipeline-server/DatasetNew/artifacts/data_core/tabular/c7/c7-dataset_contract_v1.json", + "exists": true, + "size": 4759, + "sha256": "79a434a1e2553b14b9f2e98c1adfc32a71aaa0d6cd49234f3f8a5603efca4ebd" + } + } +} \ No newline at end of file diff --git a/timecost/c7/tabpfgen/tabpfgen-c7-20260429_061314/public_gate/normalized_schema_snapshot.json b/timecost/c7/tabpfgen/tabpfgen-c7-20260429_061314/public_gate/normalized_schema_snapshot.json new file mode 100644 index 0000000000000000000000000000000000000000..3ea4859ec2aa245a19531b254f45d87237c23069 --- /dev/null +++ b/timecost/c7/tabpfgen/tabpfgen-c7-20260429_061314/public_gate/normalized_schema_snapshot.json @@ -0,0 +1,183 @@ +{ + "dataset_id": "c7", + "target_column": "class", + "task_type": "classification", + "columns": [ + { + "name": "parents", + "role": "feature", + "semantic_type": "categorical", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 3, + "unique_ratio": 0.000289, + "example_values": [ + "usual", + "pretentious", + "great_pret" + ] + } + }, + { + "name": "has_nurs", + "role": "feature", + "semantic_type": "categorical", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 5, + "unique_ratio": 0.000482, + "example_values": [ + "very_crit", + "critical", + "improper", + "less_proper", + "proper" + ] + } + }, + { + "name": "form", + "role": "feature", + "semantic_type": "categorical", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 4, + "unique_ratio": 0.000386, + "example_values": [ + "complete", + "completed", + "incomplete", + "foster" + ] + } + }, + { + "name": "children", + "role": "feature", + "semantic_type": "categorical", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 4, + "unique_ratio": 0.000386, + "example_values": [ + "1", + "3", + "2", + "more" + ] + } + }, + { + "name": "housing", + "role": "feature", + "semantic_type": "categorical", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 3, + "unique_ratio": 0.000289, + "example_values": [ + "less_conv", + "convenient", + "critical" + ] + } + }, + { + "name": "finance", + "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.000193, + "example_values": [ + "convenient", + "inconv" + ] + } + }, + { + "name": "social", + "role": "feature", + "semantic_type": "categorical", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 3, + "unique_ratio": 0.000289, + "example_values": [ + "slightly_prob", + "nonprob", + "problematic" + ] + } + }, + { + "name": "health", + "role": "feature", + "semantic_type": "categorical", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 3, + "unique_ratio": 0.000289, + "example_values": [ + "recommended", + "priority", + "not_recom" + ] + } + }, + { + "name": "class", + "role": "target", + "semantic_type": "categorical", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 5, + "unique_ratio": 0.000482, + "example_values": [ + "priority", + "spec_prior", + "not_recom", + "very_recom", + "recommend" + ] + } + } + ] +} \ No newline at end of file diff --git a/timecost/c7/tabpfgen/tabpfgen-c7-20260429_061314/public_gate/public_gate_report.json b/timecost/c7/tabpfgen/tabpfgen-c7-20260429_061314/public_gate/public_gate_report.json new file mode 100644 index 0000000000000000000000000000000000000000..3328fe59cd490a424e50f931e9eedba9e81d1cec --- /dev/null +++ b/timecost/c7/tabpfgen/tabpfgen-c7-20260429_061314/public_gate/public_gate_report.json @@ -0,0 +1,37 @@ +{ + "dataset_id": "c7", + "status": "pass", + "checks": [ + { + "check_id": "PG001_csv_parse_ok", + "status": "pass" + }, + { + "check_id": "PG002_split_header_consistent", + "status": "pass" + }, + { + "check_id": "PG003_profile_header_match", + "status": "pass" + }, + { + "check_id": "PG004_missing_token_normalized", + "status": "pass" + }, + { + "check_id": "PG005_semantic_type_validated", + "status": "pass" + }, + { + "check_id": "PG006_target_defined_and_valid", + "status": "pass" + } + ], + "target_column": "class", + "task_type": "classification", + "input_splits": { + "train": "/data/jialinzhang/SynthesizePipeline-server/DatasetNew/c7/c7-train.csv", + "val": "/data/jialinzhang/SynthesizePipeline-server/DatasetNew/c7/c7-val.csv", + "test": "/data/jialinzhang/SynthesizePipeline-server/DatasetNew/c7/c7-test.csv" + } +} \ No newline at end of file diff --git a/timecost/c7/tabpfgen/tabpfgen-c7-20260429_061314/public_gate/staged_input_manifest.json b/timecost/c7/tabpfgen/tabpfgen-c7-20260429_061314/public_gate/staged_input_manifest.json new file mode 100644 index 0000000000000000000000000000000000000000..cefd5d636f9fd36e82b1096ea892c13c32702704 --- /dev/null +++ b/timecost/c7/tabpfgen/tabpfgen-c7-20260429_061314/public_gate/staged_input_manifest.json @@ -0,0 +1,188 @@ +{ + "dataset_id": "c7", + "target_column": "class", + "task_type": "classification", + "train_csv": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/c7/tabpfgen/tabpfgen-c7-20260429_061314/staged/public/train.csv", + "val_csv": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/c7/tabpfgen/tabpfgen-c7-20260429_061314/staged/public/val.csv", + "test_csv": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/c7/tabpfgen/tabpfgen-c7-20260429_061314/staged/public/test.csv", + "features_json": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/c7/tabpfgen/tabpfgen-c7-20260429_061314/staged/public/staged_features.json", + "public_gate_report": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/c7/tabpfgen/tabpfgen-c7-20260429_061314/public_gate/public_gate_report.json", + "column_schema": [ + { + "name": "parents", + "role": "feature", + "semantic_type": "categorical", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 3, + "unique_ratio": 0.000289, + "example_values": [ + "usual", + "pretentious", + "great_pret" + ] + } + }, + { + "name": "has_nurs", + "role": "feature", + "semantic_type": "categorical", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 5, + "unique_ratio": 0.000482, + "example_values": [ + "very_crit", + "critical", + "improper", + "less_proper", + "proper" + ] + } + }, + { + "name": "form", + "role": "feature", + "semantic_type": "categorical", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 4, + "unique_ratio": 0.000386, + "example_values": [ + "complete", + "completed", + "incomplete", + "foster" + ] + } + }, + { + "name": "children", + "role": "feature", + "semantic_type": "categorical", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 4, + "unique_ratio": 0.000386, + "example_values": [ + "1", + "3", + "2", + "more" + ] + } + }, + { + "name": "housing", + "role": "feature", + "semantic_type": "categorical", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 3, + "unique_ratio": 0.000289, + "example_values": [ + "less_conv", + "convenient", + "critical" + ] + } + }, + { + "name": "finance", + "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.000193, + "example_values": [ + "convenient", + "inconv" + ] + } + }, + { + "name": "social", + "role": "feature", + "semantic_type": "categorical", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 3, + "unique_ratio": 0.000289, + "example_values": [ + "slightly_prob", + "nonprob", + "problematic" + ] + } + }, + { + "name": "health", + "role": "feature", + "semantic_type": "categorical", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 3, + "unique_ratio": 0.000289, + "example_values": [ + "recommended", + "priority", + "not_recom" + ] + } + }, + { + "name": "class", + "role": "target", + "semantic_type": "categorical", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 5, + "unique_ratio": 0.000482, + "example_values": [ + "priority", + "spec_prior", + "not_recom", + "very_recom", + "recommend" + ] + } + } + ] +} \ No newline at end of file diff --git a/timecost/c7/tabpfgen/tabpfgen-c7-20260429_061314/runtime_result.json b/timecost/c7/tabpfgen/tabpfgen-c7-20260429_061314/runtime_result.json new file mode 100644 index 0000000000000000000000000000000000000000..a3af4707a0d395f9eb1f98433ac129a15fb69e41 --- /dev/null +++ b/timecost/c7/tabpfgen/tabpfgen-c7-20260429_061314/runtime_result.json @@ -0,0 +1,15 @@ +{ + "dataset_id": "c7", + "model": "tabpfgen", + "run_id": "tabpfgen-c7-20260429_061314", + "public_gate_status": "pass", + "adapter_ready_status": "pass", + "train_status": "success", + "generate_status": "success", + "reason_code": null, + "reason_detail": null, + "artifacts": { + "synthetic_csv": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/c7/tabpfgen/tabpfgen-c7-20260429_061314/tabpfgen-c7-10368-20260429_061314.csv", + "model_path": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/c7/tabpfgen/tabpfgen-c7-20260429_061314" + } +} \ No newline at end of file diff --git a/timecost/c7/tabpfgen/tabpfgen-c7-20260429_061314/staged/public/staged_features.json b/timecost/c7/tabpfgen/tabpfgen-c7-20260429_061314/staged/public/staged_features.json new file mode 100644 index 0000000000000000000000000000000000000000..0e23df6bcfb7ecfd44dfefc3d0ca0bf6b6aebc60 --- /dev/null +++ b/timecost/c7/tabpfgen/tabpfgen-c7-20260429_061314/staged/public/staged_features.json @@ -0,0 +1,47 @@ +[ + { + "feature_name": "parents", + "data_type": "categorical", + "is_target": false + }, + { + "feature_name": "has_nurs", + "data_type": "categorical", + "is_target": false + }, + { + "feature_name": "form", + "data_type": "categorical", + "is_target": false + }, + { + "feature_name": "children", + "data_type": "categorical", + "is_target": false + }, + { + "feature_name": "housing", + "data_type": "categorical", + "is_target": false + }, + { + "feature_name": "finance", + "data_type": "categorical", + "is_target": false + }, + { + "feature_name": "social", + "data_type": "categorical", + "is_target": false + }, + { + "feature_name": "health", + "data_type": "categorical", + "is_target": false + }, + { + "feature_name": "class", + "data_type": "categorical", + "is_target": true + } +] \ No newline at end of file diff --git a/timecost/c7/tabpfgen/tabpfgen-c7-20260429_061314/staged/public/test.csv b/timecost/c7/tabpfgen/tabpfgen-c7-20260429_061314/staged/public/test.csv new file mode 100644 index 0000000000000000000000000000000000000000..cb9d7081ca745e9eed28a35168872d450c4a2a44 --- /dev/null +++ b/timecost/c7/tabpfgen/tabpfgen-c7-20260429_061314/staged/public/test.csv @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:2042076337d5c37c6476e6bca2bd33cb5a171450c27894534ef50ac223256058 +size 106030 diff --git a/timecost/c7/tabpfgen/tabpfgen-c7-20260429_061314/staged/public/train.csv b/timecost/c7/tabpfgen/tabpfgen-c7-20260429_061314/staged/public/train.csv new file mode 100644 index 0000000000000000000000000000000000000000..4c8e5e0c5031fc7e8e25213132c1231950ec29da --- /dev/null +++ b/timecost/c7/tabpfgen/tabpfgen-c7-20260429_061314/staged/public/train.csv @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:b37f6b2ef5257f40bd826ac956749881f0f474362bdb56e8c5728ad629242e3a +size 847349 diff --git a/timecost/c7/tabpfgen/tabpfgen-c7-20260429_061314/staged/public/val.csv b/timecost/c7/tabpfgen/tabpfgen-c7-20260429_061314/staged/public/val.csv new file mode 100644 index 0000000000000000000000000000000000000000..55792963756b1ae35b4d79dee11881372962b8d5 --- /dev/null +++ b/timecost/c7/tabpfgen/tabpfgen-c7-20260429_061314/staged/public/val.csv @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:eff6dec27c3740661a1ae84dea391d690dfb60342bfd5d7527b903fdd6009780 +size 106192 diff --git a/timecost/c7/tabpfgen/tabpfgen-c7-20260429_061314/staged/tabpfgen/adapter_report.json b/timecost/c7/tabpfgen/tabpfgen-c7-20260429_061314/staged/tabpfgen/adapter_report.json new file mode 100644 index 0000000000000000000000000000000000000000..f301d945f1883d729f0f1f61101ccfb021d0811d --- /dev/null +++ b/timecost/c7/tabpfgen/tabpfgen-c7-20260429_061314/staged/tabpfgen/adapter_report.json @@ -0,0 +1,7 @@ +{ + "adapter_ready_status": "pass", + "adapter_fail_reason_code": null, + "adapter_fail_detail": null, + "adapter_transforms_applied": [], + "model_input_manifest": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/c7/tabpfgen/tabpfgen-c7-20260429_061314/staged/tabpfgen/model_input_manifest.json" +} \ No newline at end of file diff --git a/timecost/c7/tabpfgen/tabpfgen-c7-20260429_061314/staged/tabpfgen/adapter_transforms_applied.json b/timecost/c7/tabpfgen/tabpfgen-c7-20260429_061314/staged/tabpfgen/adapter_transforms_applied.json new file mode 100644 index 0000000000000000000000000000000000000000..0637a088a01e8ddab3bf3fa98dbe804cbde1a0dc --- /dev/null +++ b/timecost/c7/tabpfgen/tabpfgen-c7-20260429_061314/staged/tabpfgen/adapter_transforms_applied.json @@ -0,0 +1 @@ +[] \ No newline at end of file diff --git a/timecost/c7/tabpfgen/tabpfgen-c7-20260429_061314/staged/tabpfgen/model_input_manifest.json b/timecost/c7/tabpfgen/tabpfgen-c7-20260429_061314/staged/tabpfgen/model_input_manifest.json new file mode 100644 index 0000000000000000000000000000000000000000..964945e70f46d24807e770166cc8c47d6665fbd8 --- /dev/null +++ b/timecost/c7/tabpfgen/tabpfgen-c7-20260429_061314/staged/tabpfgen/model_input_manifest.json @@ -0,0 +1,190 @@ +{ + "dataset_id": "c7", + "model": "tabpfgen", + "target_column": "class", + "task_type": "classification", + "column_schema": [ + { + "name": "parents", + "role": "feature", + "semantic_type": "categorical", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 3, + "unique_ratio": 0.000289, + "example_values": [ + "usual", + "pretentious", + "great_pret" + ] + } + }, + { + "name": "has_nurs", + "role": "feature", + "semantic_type": "categorical", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 5, + "unique_ratio": 0.000482, + "example_values": [ + "very_crit", + "critical", + "improper", + "less_proper", + "proper" + ] + } + }, + { + "name": "form", + "role": "feature", + "semantic_type": "categorical", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 4, + "unique_ratio": 0.000386, + "example_values": [ + "complete", + "completed", + "incomplete", + "foster" + ] + } + }, + { + "name": "children", + "role": "feature", + "semantic_type": "categorical", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 4, + "unique_ratio": 0.000386, + "example_values": [ + "1", + "3", + "2", + "more" + ] + } + }, + { + "name": "housing", + "role": "feature", + "semantic_type": "categorical", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 3, + "unique_ratio": 0.000289, + "example_values": [ + "less_conv", + "convenient", + "critical" + ] + } + }, + { + "name": "finance", + "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.000193, + "example_values": [ + "convenient", + "inconv" + ] + } + }, + { + "name": "social", + "role": "feature", + "semantic_type": "categorical", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 3, + "unique_ratio": 0.000289, + "example_values": [ + "slightly_prob", + "nonprob", + "problematic" + ] + } + }, + { + "name": "health", + "role": "feature", + "semantic_type": "categorical", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 3, + "unique_ratio": 0.000289, + "example_values": [ + "recommended", + "priority", + "not_recom" + ] + } + }, + { + "name": "class", + "role": "target", + "semantic_type": "categorical", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 5, + "unique_ratio": 0.000482, + "example_values": [ + "priority", + "spec_prior", + "not_recom", + "very_recom", + "recommend" + ] + } + } + ], + "public_manifest": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/c7/tabpfgen/tabpfgen-c7-20260429_061314/public_gate/staged_input_manifest.json", + "train_csv": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/c7/tabpfgen/tabpfgen-c7-20260429_061314/staged/public/train.csv", + "val_csv": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/c7/tabpfgen/tabpfgen-c7-20260429_061314/staged/public/val.csv", + "test_csv": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/c7/tabpfgen/tabpfgen-c7-20260429_061314/staged/public/test.csv", + "features_json": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/c7/tabpfgen/tabpfgen-c7-20260429_061314/staged/public/staged_features.json", + "public_gate_report": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/c7/tabpfgen/tabpfgen-c7-20260429_061314/public_gate/public_gate_report.json" +} \ No newline at end of file diff --git a/timecost/c7/tabpfgen/tabpfgen-c7-20260429_061314/tabpfgen-c7-10368-20260429_061314.csv b/timecost/c7/tabpfgen/tabpfgen-c7-20260429_061314/tabpfgen-c7-10368-20260429_061314.csv new file mode 100644 index 0000000000000000000000000000000000000000..b9e3a22f1185e49aaa016ef6b5418dd62b6d2df5 --- /dev/null +++ b/timecost/c7/tabpfgen/tabpfgen-c7-20260429_061314/tabpfgen-c7-10368-20260429_061314.csv @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:11bb6aee31a1bcbe969d798a8a69906cd73c17223291104079b93797d7cf94d0 +size 843881 diff --git a/timecost/c7/tabpfgen/tabpfgen-c7-20260429_061314/tabpfgen_meta.json b/timecost/c7/tabpfgen/tabpfgen-c7-20260429_061314/tabpfgen_meta.json new file mode 100644 index 0000000000000000000000000000000000000000..a75798b883cc8707f32859a385a3edee3324970a --- /dev/null +++ b/timecost/c7/tabpfgen/tabpfgen-c7-20260429_061314/tabpfgen_meta.json @@ -0,0 +1,9 @@ +{ + "csv_path": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/c7/tabpfgen/tabpfgen-c7-20260429_061314/staged/public/train.csv", + "json_path": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/c7/tabpfgen/tabpfgen-c7-20260429_061314/staged/public/staged_features.json", + "target_col": "class", + "is_classification": true, + "task_type": "classification", + "n_rows": 10368, + "n_cols": 9 +} \ No newline at end of file diff --git a/timecost/c7/tabpfgen/tabpfgen-c7-20260429_061314/train_20260429_061314.log b/timecost/c7/tabpfgen/tabpfgen-c7-20260429_061314/train_20260429_061314.log new file mode 100644 index 0000000000000000000000000000000000000000..6b247d09b96afd4c14d366cc4e7eaf666815f21e --- /dev/null +++ b/timecost/c7/tabpfgen/tabpfgen-c7-20260429_061314/train_20260429_061314.log @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:73ec563d826ab6396f832e3e1487289794c7c2a744680d747abf25ceb3611619 +size 595 diff --git a/timecost/c7/tabsyn/tabsyn-c7-20260429_052312/_tabsyn_sample.py b/timecost/c7/tabsyn/tabsyn-c7-20260429_052312/_tabsyn_sample.py new file mode 100644 index 0000000000000000000000000000000000000000..ac414667eb089c0d6abb603dde4e3c855b25bc66 --- /dev/null +++ b/timecost/c7/tabsyn/tabsyn-c7-20260429_052312/_tabsyn_sample.py @@ -0,0 +1,39 @@ +import os, sys, subprocess + +work_dir = "/work/output-Benchmark-trainonly-v1/c7/tabsyn/tabsyn-c7-20260429_052312" +dataname = "tabsyn_c7" +output_csv = "/work/output-Benchmark-trainonly-v1/c7/tabsyn/tabsyn-c7-20260429_052312/tabsyn-c7-10368-20260429_061302.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 10368 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/timecost/c7/tabsyn/tabsyn-c7-20260429_052312/_tabsyn_train.py b/timecost/c7/tabsyn/tabsyn-c7-20260429_052312/_tabsyn_train.py new file mode 100644 index 0000000000000000000000000000000000000000..a9f348266ba8291c4e3298592ef99cf71b0fe44a --- /dev/null +++ b/timecost/c7/tabsyn/tabsyn-c7-20260429_052312/_tabsyn_train.py @@ -0,0 +1,65 @@ +import os, sys, subprocess + +work_dir = "/work/output-Benchmark-trainonly-v1/c7/tabsyn/tabsyn-c7-20260429_052312" +dataname = "tabsyn_c7" +tabsyn_root = "/workspace/tabsyn" + +assert os.path.exists(tabsyn_root), f"TabSyn source not mounted: {tabsyn_root}" + +old = os.environ.get("PYTHONPATH", "") +os.environ["PYTHONPATH"] = tabsyn_root + (os.pathsep + old if old else "") +sys.path.insert(0, tabsyn_root) + +os.chdir(tabsyn_root) + +# Symlink data dir into TabSyn data/ +data_link = os.path.join(tabsyn_root, "data", dataname) +data_src = os.path.join(work_dir, "data", dataname) +os.makedirs(os.path.join(tabsyn_root, "data"), exist_ok=True) +if os.path.exists(data_link): + os.remove(data_link) +os.symlink(data_src, data_link) + +env = os.environ.copy() +env.setdefault("TABSYN_RESUME", "1") +env.setdefault("TABSYN_VAE_BATCH_SIZE", "1024") +# Safer defaults for wide tables on Docker: reduce shared-memory pressure in diffusion DataLoader. +env.setdefault("TABSYN_DIFFUSION_NUM_WORKERS", "0") +_te = None +if _te is not None: + env["TABSYN_VAE_EPOCHS"] = str(_te) + env["TABSYN_DIFFUSION_MAX_EPOCHS"] = str(max(_te + 1, 2)) + +# Data preprocessing is done on the host side (_prepare_data_dir) +# which creates .npy files, train/test CSVs, and info.json + +# Step 1: Train VAE (produces latent embeddings) +print(f"[TabSyn] Step 1/2: Training VAE in {tabsyn_root}, dataname={dataname}") +ret = subprocess.run( + [sys.executable, "main.py", + "--dataname", dataname, + "--mode", "train", + "--method", "vae", + "--gpu", "0"], + cwd=tabsyn_root, + env=env +) +if ret.returncode != 0: + print("[TabSyn] VAE training failed") + sys.exit(ret.returncode) + +# Step 2: Train diffusion model on latent space +print(f"[TabSyn] Step 2/2: Training diffusion model") +ret = subprocess.run( + [sys.executable, "main.py", + "--dataname", dataname, + "--mode", "train", + "--method", "tabsyn", + "--gpu", "0"], + cwd=tabsyn_root, + env=env +) +if ret.returncode != 0: + print("[TabSyn] Diffusion training failed") + sys.exit(ret.returncode) +print("[TabSyn] Training complete (VAE + Diffusion)") diff --git a/timecost/c7/tabsyn/tabsyn-c7-20260429_052312/data/tabsyn_c7/X_cat_test.npy b/timecost/c7/tabsyn/tabsyn-c7-20260429_052312/data/tabsyn_c7/X_cat_test.npy new file mode 100644 index 0000000000000000000000000000000000000000..15d20f20875bae252cf0a056e5ee5571e0584d8b --- /dev/null +++ b/timecost/c7/tabsyn/tabsyn-c7-20260429_052312/data/tabsyn_c7/X_cat_test.npy @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:5898435dc71fd39ba74a22d4faf107144b4c9f639078c4877ab5039b7e25c161 +size 580736 diff --git a/timecost/c7/tabsyn/tabsyn-c7-20260429_052312/data/tabsyn_c7/X_cat_train.npy b/timecost/c7/tabsyn/tabsyn-c7-20260429_052312/data/tabsyn_c7/X_cat_train.npy new file mode 100644 index 0000000000000000000000000000000000000000..15d20f20875bae252cf0a056e5ee5571e0584d8b --- /dev/null +++ b/timecost/c7/tabsyn/tabsyn-c7-20260429_052312/data/tabsyn_c7/X_cat_train.npy @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:5898435dc71fd39ba74a22d4faf107144b4c9f639078c4877ab5039b7e25c161 +size 580736 diff --git a/timecost/c7/tabsyn/tabsyn-c7-20260429_052312/data/tabsyn_c7/X_num_test.npy b/timecost/c7/tabsyn/tabsyn-c7-20260429_052312/data/tabsyn_c7/X_num_test.npy new file mode 100644 index 0000000000000000000000000000000000000000..230bb001c11cc40bc7fb7ee0ee1b20d4124840e6 --- /dev/null +++ b/timecost/c7/tabsyn/tabsyn-c7-20260429_052312/data/tabsyn_c7/X_num_test.npy @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:b5d26ec504320ce42b09c7bc5b58833c8ac8a26a5085fa51047744a2b19e0da2 +size 41600 diff --git a/timecost/c7/tabsyn/tabsyn-c7-20260429_052312/data/tabsyn_c7/X_num_train.npy b/timecost/c7/tabsyn/tabsyn-c7-20260429_052312/data/tabsyn_c7/X_num_train.npy new file mode 100644 index 0000000000000000000000000000000000000000..230bb001c11cc40bc7fb7ee0ee1b20d4124840e6 --- /dev/null +++ b/timecost/c7/tabsyn/tabsyn-c7-20260429_052312/data/tabsyn_c7/X_num_train.npy @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:b5d26ec504320ce42b09c7bc5b58833c8ac8a26a5085fa51047744a2b19e0da2 +size 41600 diff --git a/timecost/c7/tabsyn/tabsyn-c7-20260429_052312/data/tabsyn_c7/info.json b/timecost/c7/tabsyn/tabsyn-c7-20260429_052312/data/tabsyn_c7/info.json new file mode 100644 index 0000000000000000000000000000000000000000..477f08a9ea5987c4318de0ef9846fa6d0ee4608a --- /dev/null +++ b/timecost/c7/tabsyn/tabsyn-c7-20260429_052312/data/tabsyn_c7/info.json @@ -0,0 +1,105 @@ +{ + "name": "tabsyn_c7", + "task_type": "multiclass", + "n_num_features": 1, + "n_cat_features": 7, + "train_size": 10368, + "num_col_idx": [ + 0 + ], + "cat_col_idx": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7 + ], + "target_col_idx": [ + 8 + ], + "column_names": [ + "parents", + "has_nurs", + "form", + "children", + "housing", + "finance", + "social", + "health", + "class" + ], + "train_num": 10368, + "test_num": 10368, + "header": 0, + "file_type": "csv", + "data_path": "data/tabsyn_c7/train.csv", + "test_path": null, + "idx_mapping": { + "0": 0, + "1": 1, + "2": 2, + "3": 3, + "4": 4, + "5": 5, + "6": 6, + "7": 7, + "8": 8 + }, + "inverse_idx_mapping": { + "0": 0, + "1": 1, + "2": 2, + "3": 3, + "4": 4, + "5": 5, + "6": 6, + "7": 7, + "8": 8 + }, + "idx_name_mapping": { + "0": "parents", + "1": "has_nurs", + "2": "form", + "3": "children", + "4": "housing", + "5": "finance", + "6": "social", + "7": "health", + "8": "class" + }, + "n_classes": 5, + "metadata": { + "columns": { + "0": { + "sdtype": "numerical", + "computer_representation": "Float" + }, + "1": { + "sdtype": "categorical" + }, + "2": { + "sdtype": "categorical" + }, + "3": { + "sdtype": "categorical" + }, + "4": { + "sdtype": "categorical" + }, + "5": { + "sdtype": "categorical" + }, + "6": { + "sdtype": "categorical" + }, + "7": { + "sdtype": "categorical" + }, + "8": { + "sdtype": "categorical" + } + } + } +} \ No newline at end of file diff --git a/timecost/c7/tabsyn/tabsyn-c7-20260429_052312/data/tabsyn_c7/test.csv b/timecost/c7/tabsyn/tabsyn-c7-20260429_052312/data/tabsyn_c7/test.csv new file mode 100644 index 0000000000000000000000000000000000000000..f626c9ced7fe6f41ec3af4e940622d41e2546f39 --- /dev/null +++ b/timecost/c7/tabsyn/tabsyn-c7-20260429_052312/data/tabsyn_c7/test.csv @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:66fea27ff1eb37a50e165cda89ed19e1b96f6a3f11cc541ffd1a427c3211f00a +size 186691 diff --git a/timecost/c7/tabsyn/tabsyn-c7-20260429_052312/data/tabsyn_c7/train.csv b/timecost/c7/tabsyn/tabsyn-c7-20260429_052312/data/tabsyn_c7/train.csv new file mode 100644 index 0000000000000000000000000000000000000000..f626c9ced7fe6f41ec3af4e940622d41e2546f39 --- /dev/null +++ b/timecost/c7/tabsyn/tabsyn-c7-20260429_052312/data/tabsyn_c7/train.csv @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:66fea27ff1eb37a50e165cda89ed19e1b96f6a3f11cc541ffd1a427c3211f00a +size 186691 diff --git a/timecost/c7/tabsyn/tabsyn-c7-20260429_052312/data/tabsyn_c7/y_test.npy b/timecost/c7/tabsyn/tabsyn-c7-20260429_052312/data/tabsyn_c7/y_test.npy new file mode 100644 index 0000000000000000000000000000000000000000..12f99c1af3cdb775ca9b72516555bbe31ff545cb --- /dev/null +++ b/timecost/c7/tabsyn/tabsyn-c7-20260429_052312/data/tabsyn_c7/y_test.npy @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:6c7233c5790f228c81991a22961964f9cb18192e1d68da9a5bc0555156e771f1 +size 83072 diff --git a/timecost/c7/tabsyn/tabsyn-c7-20260429_052312/data/tabsyn_c7/y_train.npy b/timecost/c7/tabsyn/tabsyn-c7-20260429_052312/data/tabsyn_c7/y_train.npy new file mode 100644 index 0000000000000000000000000000000000000000..12f99c1af3cdb775ca9b72516555bbe31ff545cb --- /dev/null +++ b/timecost/c7/tabsyn/tabsyn-c7-20260429_052312/data/tabsyn_c7/y_train.npy @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:6c7233c5790f228c81991a22961964f9cb18192e1d68da9a5bc0555156e771f1 +size 83072 diff --git a/timecost/c7/tabsyn/tabsyn-c7-20260429_052312/gen_20260429_061302.log b/timecost/c7/tabsyn/tabsyn-c7-20260429_052312/gen_20260429_061302.log new file mode 100644 index 0000000000000000000000000000000000000000..b5217fac2d7771cffbe9330277768044383f3059 --- /dev/null +++ b/timecost/c7/tabsyn/tabsyn-c7-20260429_052312/gen_20260429_061302.log @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:9b444b4929848be3b58d03551ea3fdb6d3f17bfa36bce07cd3642988c2aa68e0 +size 944 diff --git a/timecost/c7/tabsyn/tabsyn-c7-20260429_052312/input_snapshot.json b/timecost/c7/tabsyn/tabsyn-c7-20260429_052312/input_snapshot.json new file mode 100644 index 0000000000000000000000000000000000000000..fb7245e08a32f0563985ab6661bc6a7f63b112b4 --- /dev/null +++ b/timecost/c7/tabsyn/tabsyn-c7-20260429_052312/input_snapshot.json @@ -0,0 +1,36 @@ +{ + "dataset_id": "c7", + "model": "tabsyn", + "inputs": { + "train_csv": { + "path": "/data/jialinzhang/SynthesizePipeline-server/DatasetNew/c7/c7-train.csv", + "exists": true, + "size": 857718, + "sha256": "0ec97b49cecfd452f07551a63db7b812b5998a1e37101eae82255d00aa6a6243" + }, + "val_csv": { + "path": "/data/jialinzhang/SynthesizePipeline-server/DatasetNew/c7/c7-val.csv", + "exists": true, + "size": 107489, + "sha256": "4501bb2be19f7e13b7ff5e9dedd74e3dd42f2cafc8cefd5435bda61fc974a769" + }, + "test_csv": { + "path": "/data/jialinzhang/SynthesizePipeline-server/DatasetNew/c7/c7-test.csv", + "exists": true, + "size": 107327, + "sha256": "f9e808033a07feabb980addcf8c5f75111189ac2fb70993b8ad0f5ca3d5cfbae" + }, + "profile_json": { + "path": "/data/jialinzhang/SynthesizePipeline-server/DatasetNew/artifacts/data_core/tabular/c7/c7-dataset_profile.json", + "exists": true, + "size": 4014, + "sha256": "60424c615b91a26cf02d9bc1d7f91caa0ceb95bab39eb7cff6f9edea3ca0600e" + }, + "contract_json": { + "path": "/data/jialinzhang/SynthesizePipeline-server/DatasetNew/artifacts/data_core/tabular/c7/c7-dataset_contract_v1.json", + "exists": true, + "size": 4759, + "sha256": "79a434a1e2553b14b9f2e98c1adfc32a71aaa0d6cd49234f3f8a5603efca4ebd" + } + } +} \ No newline at end of file diff --git a/timecost/c7/tabsyn/tabsyn-c7-20260429_052312/public_gate/normalized_schema_snapshot.json b/timecost/c7/tabsyn/tabsyn-c7-20260429_052312/public_gate/normalized_schema_snapshot.json new file mode 100644 index 0000000000000000000000000000000000000000..3ea4859ec2aa245a19531b254f45d87237c23069 --- /dev/null +++ b/timecost/c7/tabsyn/tabsyn-c7-20260429_052312/public_gate/normalized_schema_snapshot.json @@ -0,0 +1,183 @@ +{ + "dataset_id": "c7", + "target_column": "class", + "task_type": "classification", + "columns": [ + { + "name": "parents", + "role": "feature", + "semantic_type": "categorical", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 3, + "unique_ratio": 0.000289, + "example_values": [ + "usual", + "pretentious", + "great_pret" + ] + } + }, + { + "name": "has_nurs", + "role": "feature", + "semantic_type": "categorical", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 5, + "unique_ratio": 0.000482, + "example_values": [ + "very_crit", + "critical", + "improper", + "less_proper", + "proper" + ] + } + }, + { + "name": "form", + "role": "feature", + "semantic_type": "categorical", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 4, + "unique_ratio": 0.000386, + "example_values": [ + "complete", + "completed", + "incomplete", + "foster" + ] + } + }, + { + "name": "children", + "role": "feature", + "semantic_type": "categorical", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 4, + "unique_ratio": 0.000386, + "example_values": [ + "1", + "3", + "2", + "more" + ] + } + }, + { + "name": "housing", + "role": "feature", + "semantic_type": "categorical", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 3, + "unique_ratio": 0.000289, + "example_values": [ + "less_conv", + "convenient", + "critical" + ] + } + }, + { + "name": "finance", + "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.000193, + "example_values": [ + "convenient", + "inconv" + ] + } + }, + { + "name": "social", + "role": "feature", + "semantic_type": "categorical", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 3, + "unique_ratio": 0.000289, + "example_values": [ + "slightly_prob", + "nonprob", + "problematic" + ] + } + }, + { + "name": "health", + "role": "feature", + "semantic_type": "categorical", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 3, + "unique_ratio": 0.000289, + "example_values": [ + "recommended", + "priority", + "not_recom" + ] + } + }, + { + "name": "class", + "role": "target", + "semantic_type": "categorical", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 5, + "unique_ratio": 0.000482, + "example_values": [ + "priority", + "spec_prior", + "not_recom", + "very_recom", + "recommend" + ] + } + } + ] +} \ No newline at end of file diff --git a/timecost/c7/tabsyn/tabsyn-c7-20260429_052312/public_gate/public_gate_report.json b/timecost/c7/tabsyn/tabsyn-c7-20260429_052312/public_gate/public_gate_report.json new file mode 100644 index 0000000000000000000000000000000000000000..3328fe59cd490a424e50f931e9eedba9e81d1cec --- /dev/null +++ b/timecost/c7/tabsyn/tabsyn-c7-20260429_052312/public_gate/public_gate_report.json @@ -0,0 +1,37 @@ +{ + "dataset_id": "c7", + "status": "pass", + "checks": [ + { + "check_id": "PG001_csv_parse_ok", + "status": "pass" + }, + { + "check_id": "PG002_split_header_consistent", + "status": "pass" + }, + { + "check_id": "PG003_profile_header_match", + "status": "pass" + }, + { + "check_id": "PG004_missing_token_normalized", + "status": "pass" + }, + { + "check_id": "PG005_semantic_type_validated", + "status": "pass" + }, + { + "check_id": "PG006_target_defined_and_valid", + "status": "pass" + } + ], + "target_column": "class", + "task_type": "classification", + "input_splits": { + "train": "/data/jialinzhang/SynthesizePipeline-server/DatasetNew/c7/c7-train.csv", + "val": "/data/jialinzhang/SynthesizePipeline-server/DatasetNew/c7/c7-val.csv", + "test": "/data/jialinzhang/SynthesizePipeline-server/DatasetNew/c7/c7-test.csv" + } +} \ No newline at end of file diff --git a/timecost/c7/tabsyn/tabsyn-c7-20260429_052312/public_gate/staged_input_manifest.json b/timecost/c7/tabsyn/tabsyn-c7-20260429_052312/public_gate/staged_input_manifest.json new file mode 100644 index 0000000000000000000000000000000000000000..30d2613361e7466d2d40ea42d773d2da3433d132 --- /dev/null +++ b/timecost/c7/tabsyn/tabsyn-c7-20260429_052312/public_gate/staged_input_manifest.json @@ -0,0 +1,188 @@ +{ + "dataset_id": "c7", + "target_column": "class", + "task_type": "classification", + "train_csv": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/c7/tabsyn/tabsyn-c7-20260429_052312/staged/public/train.csv", + "val_csv": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/c7/tabsyn/tabsyn-c7-20260429_052312/staged/public/val.csv", + "test_csv": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/c7/tabsyn/tabsyn-c7-20260429_052312/staged/public/test.csv", + "features_json": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/c7/tabsyn/tabsyn-c7-20260429_052312/staged/public/staged_features.json", + "public_gate_report": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/c7/tabsyn/tabsyn-c7-20260429_052312/public_gate/public_gate_report.json", + "column_schema": [ + { + "name": "parents", + "role": "feature", + "semantic_type": "categorical", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 3, + "unique_ratio": 0.000289, + "example_values": [ + "usual", + "pretentious", + "great_pret" + ] + } + }, + { + "name": "has_nurs", + "role": "feature", + "semantic_type": "categorical", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 5, + "unique_ratio": 0.000482, + "example_values": [ + "very_crit", + "critical", + "improper", + "less_proper", + "proper" + ] + } + }, + { + "name": "form", + "role": "feature", + "semantic_type": "categorical", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 4, + "unique_ratio": 0.000386, + "example_values": [ + "complete", + "completed", + "incomplete", + "foster" + ] + } + }, + { + "name": "children", + "role": "feature", + "semantic_type": "categorical", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 4, + "unique_ratio": 0.000386, + "example_values": [ + "1", + "3", + "2", + "more" + ] + } + }, + { + "name": "housing", + "role": "feature", + "semantic_type": "categorical", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 3, + "unique_ratio": 0.000289, + "example_values": [ + "less_conv", + "convenient", + "critical" + ] + } + }, + { + "name": "finance", + "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.000193, + "example_values": [ + "convenient", + "inconv" + ] + } + }, + { + "name": "social", + "role": "feature", + "semantic_type": "categorical", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 3, + "unique_ratio": 0.000289, + "example_values": [ + "slightly_prob", + "nonprob", + "problematic" + ] + } + }, + { + "name": "health", + "role": "feature", + "semantic_type": "categorical", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 3, + "unique_ratio": 0.000289, + "example_values": [ + "recommended", + "priority", + "not_recom" + ] + } + }, + { + "name": "class", + "role": "target", + "semantic_type": "categorical", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 5, + "unique_ratio": 0.000482, + "example_values": [ + "priority", + "spec_prior", + "not_recom", + "very_recom", + "recommend" + ] + } + } + ] +} \ No newline at end of file diff --git a/timecost/c7/tabsyn/tabsyn-c7-20260429_052312/runtime_result.json b/timecost/c7/tabsyn/tabsyn-c7-20260429_052312/runtime_result.json new file mode 100644 index 0000000000000000000000000000000000000000..73df2f8e6328f64cc8c323e741930ead11c2fb23 --- /dev/null +++ b/timecost/c7/tabsyn/tabsyn-c7-20260429_052312/runtime_result.json @@ -0,0 +1,15 @@ +{ + "dataset_id": "c7", + "model": "tabsyn", + "run_id": "tabsyn-c7-20260429_052312", + "public_gate_status": "pass", + "adapter_ready_status": "pass", + "train_status": "success", + "generate_status": "success", + "reason_code": null, + "reason_detail": null, + "artifacts": { + "synthetic_csv": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/c7/tabsyn/tabsyn-c7-20260429_052312/tabsyn-c7-10368-20260429_061302.csv", + "model_path": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/c7/tabsyn/tabsyn-c7-20260429_052312" + } +} \ No newline at end of file diff --git a/timecost/c7/tabsyn/tabsyn-c7-20260429_052312/staged/public/staged_features.json b/timecost/c7/tabsyn/tabsyn-c7-20260429_052312/staged/public/staged_features.json new file mode 100644 index 0000000000000000000000000000000000000000..0e23df6bcfb7ecfd44dfefc3d0ca0bf6b6aebc60 --- /dev/null +++ b/timecost/c7/tabsyn/tabsyn-c7-20260429_052312/staged/public/staged_features.json @@ -0,0 +1,47 @@ +[ + { + "feature_name": "parents", + "data_type": "categorical", + "is_target": false + }, + { + "feature_name": "has_nurs", + "data_type": "categorical", + "is_target": false + }, + { + "feature_name": "form", + "data_type": "categorical", + "is_target": false + }, + { + "feature_name": "children", + "data_type": "categorical", + "is_target": false + }, + { + "feature_name": "housing", + "data_type": "categorical", + "is_target": false + }, + { + "feature_name": "finance", + "data_type": "categorical", + "is_target": false + }, + { + "feature_name": "social", + "data_type": "categorical", + "is_target": false + }, + { + "feature_name": "health", + "data_type": "categorical", + "is_target": false + }, + { + "feature_name": "class", + "data_type": "categorical", + "is_target": true + } +] \ No newline at end of file diff --git a/timecost/c7/tabsyn/tabsyn-c7-20260429_052312/staged/public/test.csv b/timecost/c7/tabsyn/tabsyn-c7-20260429_052312/staged/public/test.csv new file mode 100644 index 0000000000000000000000000000000000000000..cb9d7081ca745e9eed28a35168872d450c4a2a44 --- /dev/null +++ b/timecost/c7/tabsyn/tabsyn-c7-20260429_052312/staged/public/test.csv @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:2042076337d5c37c6476e6bca2bd33cb5a171450c27894534ef50ac223256058 +size 106030 diff --git a/timecost/c7/tabsyn/tabsyn-c7-20260429_052312/staged/public/train.csv b/timecost/c7/tabsyn/tabsyn-c7-20260429_052312/staged/public/train.csv new file mode 100644 index 0000000000000000000000000000000000000000..4c8e5e0c5031fc7e8e25213132c1231950ec29da --- /dev/null +++ b/timecost/c7/tabsyn/tabsyn-c7-20260429_052312/staged/public/train.csv @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:b37f6b2ef5257f40bd826ac956749881f0f474362bdb56e8c5728ad629242e3a +size 847349 diff --git a/timecost/c7/tabsyn/tabsyn-c7-20260429_052312/staged/public/val.csv b/timecost/c7/tabsyn/tabsyn-c7-20260429_052312/staged/public/val.csv new file mode 100644 index 0000000000000000000000000000000000000000..55792963756b1ae35b4d79dee11881372962b8d5 --- /dev/null +++ b/timecost/c7/tabsyn/tabsyn-c7-20260429_052312/staged/public/val.csv @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:eff6dec27c3740661a1ae84dea391d690dfb60342bfd5d7527b903fdd6009780 +size 106192 diff --git a/timecost/c7/tabsyn/tabsyn-c7-20260429_052312/staged/tabsyn/adapter_report.json b/timecost/c7/tabsyn/tabsyn-c7-20260429_052312/staged/tabsyn/adapter_report.json new file mode 100644 index 0000000000000000000000000000000000000000..4ba77794db15e6ab3f70b54576dd92d19741ae54 --- /dev/null +++ b/timecost/c7/tabsyn/tabsyn-c7-20260429_052312/staged/tabsyn/adapter_report.json @@ -0,0 +1,7 @@ +{ + "adapter_ready_status": "pass", + "adapter_fail_reason_code": null, + "adapter_fail_detail": null, + "adapter_transforms_applied": [], + "model_input_manifest": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/c7/tabsyn/tabsyn-c7-20260429_052312/staged/tabsyn/model_input_manifest.json" +} \ No newline at end of file diff --git a/timecost/c7/tabsyn/tabsyn-c7-20260429_052312/staged/tabsyn/adapter_transforms_applied.json b/timecost/c7/tabsyn/tabsyn-c7-20260429_052312/staged/tabsyn/adapter_transforms_applied.json new file mode 100644 index 0000000000000000000000000000000000000000..0637a088a01e8ddab3bf3fa98dbe804cbde1a0dc --- /dev/null +++ b/timecost/c7/tabsyn/tabsyn-c7-20260429_052312/staged/tabsyn/adapter_transforms_applied.json @@ -0,0 +1 @@ +[] \ No newline at end of file diff --git a/timecost/c7/tabsyn/tabsyn-c7-20260429_052312/staged/tabsyn/model_input_manifest.json b/timecost/c7/tabsyn/tabsyn-c7-20260429_052312/staged/tabsyn/model_input_manifest.json new file mode 100644 index 0000000000000000000000000000000000000000..b0479d88d5b54604c27c6ea3e84f40676bf3a199 --- /dev/null +++ b/timecost/c7/tabsyn/tabsyn-c7-20260429_052312/staged/tabsyn/model_input_manifest.json @@ -0,0 +1,190 @@ +{ + "dataset_id": "c7", + "model": "tabsyn", + "target_column": "class", + "task_type": "classification", + "column_schema": [ + { + "name": "parents", + "role": "feature", + "semantic_type": "categorical", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 3, + "unique_ratio": 0.000289, + "example_values": [ + "usual", + "pretentious", + "great_pret" + ] + } + }, + { + "name": "has_nurs", + "role": "feature", + "semantic_type": "categorical", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 5, + "unique_ratio": 0.000482, + "example_values": [ + "very_crit", + "critical", + "improper", + "less_proper", + "proper" + ] + } + }, + { + "name": "form", + "role": "feature", + "semantic_type": "categorical", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 4, + "unique_ratio": 0.000386, + "example_values": [ + "complete", + "completed", + "incomplete", + "foster" + ] + } + }, + { + "name": "children", + "role": "feature", + "semantic_type": "categorical", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 4, + "unique_ratio": 0.000386, + "example_values": [ + "1", + "3", + "2", + "more" + ] + } + }, + { + "name": "housing", + "role": "feature", + "semantic_type": "categorical", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 3, + "unique_ratio": 0.000289, + "example_values": [ + "less_conv", + "convenient", + "critical" + ] + } + }, + { + "name": "finance", + "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.000193, + "example_values": [ + "convenient", + "inconv" + ] + } + }, + { + "name": "social", + "role": "feature", + "semantic_type": "categorical", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 3, + "unique_ratio": 0.000289, + "example_values": [ + "slightly_prob", + "nonprob", + "problematic" + ] + } + }, + { + "name": "health", + "role": "feature", + "semantic_type": "categorical", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 3, + "unique_ratio": 0.000289, + "example_values": [ + "recommended", + "priority", + "not_recom" + ] + } + }, + { + "name": "class", + "role": "target", + "semantic_type": "categorical", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 5, + "unique_ratio": 0.000482, + "example_values": [ + "priority", + "spec_prior", + "not_recom", + "very_recom", + "recommend" + ] + } + } + ], + "public_manifest": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/c7/tabsyn/tabsyn-c7-20260429_052312/public_gate/staged_input_manifest.json", + "train_csv": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/c7/tabsyn/tabsyn-c7-20260429_052312/staged/public/train.csv", + "val_csv": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/c7/tabsyn/tabsyn-c7-20260429_052312/staged/public/val.csv", + "test_csv": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/c7/tabsyn/tabsyn-c7-20260429_052312/staged/public/test.csv", + "features_json": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/c7/tabsyn/tabsyn-c7-20260429_052312/staged/public/staged_features.json", + "public_gate_report": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/c7/tabsyn/tabsyn-c7-20260429_052312/public_gate/public_gate_report.json" +} \ No newline at end of file diff --git a/timecost/c7/tabsyn/tabsyn-c7-20260429_052312/synthetic/tabsyn_c7/real.csv b/timecost/c7/tabsyn/tabsyn-c7-20260429_052312/synthetic/tabsyn_c7/real.csv new file mode 100644 index 0000000000000000000000000000000000000000..f626c9ced7fe6f41ec3af4e940622d41e2546f39 --- /dev/null +++ b/timecost/c7/tabsyn/tabsyn-c7-20260429_052312/synthetic/tabsyn_c7/real.csv @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:66fea27ff1eb37a50e165cda89ed19e1b96f6a3f11cc541ffd1a427c3211f00a +size 186691 diff --git a/timecost/c7/tabsyn/tabsyn-c7-20260429_052312/synthetic/tabsyn_c7/test.csv b/timecost/c7/tabsyn/tabsyn-c7-20260429_052312/synthetic/tabsyn_c7/test.csv new file mode 100644 index 0000000000000000000000000000000000000000..f626c9ced7fe6f41ec3af4e940622d41e2546f39 --- /dev/null +++ b/timecost/c7/tabsyn/tabsyn-c7-20260429_052312/synthetic/tabsyn_c7/test.csv @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:66fea27ff1eb37a50e165cda89ed19e1b96f6a3f11cc541ffd1a427c3211f00a +size 186691 diff --git a/timecost/c7/tabsyn/tabsyn-c7-20260429_052312/tabsyn-c7-10368-20260429_061302.csv b/timecost/c7/tabsyn/tabsyn-c7-20260429_052312/tabsyn-c7-10368-20260429_061302.csv new file mode 100644 index 0000000000000000000000000000000000000000..69a4831a5da4fd1fd5a1bb488718ebada143dcd9 --- /dev/null +++ b/timecost/c7/tabsyn/tabsyn-c7-20260429_052312/tabsyn-c7-10368-20260429_061302.csv @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:27454586e8f19b03191a78461144a704bd499eddfa158fdc11a3acb8d6431778 +size 207427 diff --git a/timecost/c7/tabsyn/tabsyn-c7-20260429_052312/train_20260429_052312.log b/timecost/c7/tabsyn/tabsyn-c7-20260429_052312/train_20260429_052312.log new file mode 100644 index 0000000000000000000000000000000000000000..401a57f7c0a1fea7d1a3d47f888c863ea754b11f --- /dev/null +++ b/timecost/c7/tabsyn/tabsyn-c7-20260429_052312/train_20260429_052312.log @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:68c2938cba689f704152160f6c88cb60bb429cdc47dea88b574d9ba45e91c756 +size 2890992 diff --git a/timecost/c7/tvae/tvae-c7-20260429_031938/_tvae_generate.py b/timecost/c7/tvae/tvae-c7-20260429_031938/_tvae_generate.py new file mode 100644 index 0000000000000000000000000000000000000000..97b054d359c203f5bce5035c35154d549095b67b --- /dev/null +++ b/timecost/c7/tvae/tvae-c7-20260429_031938/_tvae_generate.py @@ -0,0 +1,23 @@ +import os, sys +sys.path.insert(0, "/work") +from src.SpecificModels.ctgan_joblib_parallel_cap import apply_parallel_cap_from_env +apply_parallel_cap_from_env() +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 +os.environ.setdefault("LOKY_MAX_CPU_COUNT", "8") +os.environ.setdefault("OPENBLAS_NUM_THREADS", "8") +os.environ.setdefault("MKL_NUM_THREADS", "8") +model = TVAE.load("/work/output-Benchmark-trainonly-v1/c7/tvae/tvae-c7-20260429_031938/models_300epochs/tvae_300epochs.pt") +total = 10368 +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-Benchmark-trainonly-v1/c7/tvae/tvae-c7-20260429_031938/tvae-c7-10368-20260429_032040.csv", index=False) +print(f"[TVAE] Generated {total} rows (chunks={len(parts)}) -> /work/output-Benchmark-trainonly-v1/c7/tvae/tvae-c7-20260429_031938/tvae-c7-10368-20260429_032040.csv") diff --git a/timecost/c7/tvae/tvae-c7-20260429_031938/_tvae_train.py b/timecost/c7/tvae/tvae-c7-20260429_031938/_tvae_train.py new file mode 100644 index 0000000000000000000000000000000000000000..dda2fe3921491373c214bd0c9bf435073726f059 --- /dev/null +++ b/timecost/c7/tvae/tvae-c7-20260429_031938/_tvae_train.py @@ -0,0 +1,30 @@ +import json, os, sys +sys.path.insert(0, "/work") +from src.SpecificModels.ctgan_joblib_parallel_cap import apply_parallel_cap_from_env +apply_parallel_cap_from_env() +import pandas as pd +from ctgan.data import read_csv +from ctgan.synthesizers.tvae import TVAE + +# Keep transform stage parallelism bounded for stability on shared host. +os.environ.setdefault("LOKY_MAX_CPU_COUNT", "8") +os.environ.setdefault("OPENBLAS_NUM_THREADS", "8") +os.environ.setdefault("MKL_NUM_THREADS", "8") +_nj = (os.environ.get("TVAE_CTGAN_JOBTRANS_N_JOBS") or "").strip() +if _nj: + print("[TVAE] joblib Parallel cap ON, TVAE_CTGAN_JOBTRANS_N_JOBS=" + _nj) +else: + print("[TVAE] joblib Parallel cap OFF (unset TVAE_CTGAN_JOBTRANS_N_JOBS)") +print("[TVAE] LOKY_MAX_CPU_COUNT=" + str(os.environ.get("LOKY_MAX_CPU_COUNT", ""))) + +csv_path = "/work/output-Benchmark-trainonly-v1/c7/tvae/tvae-c7-20260429_031938/staged/public/train.csv" +meta_path = "/work/output-Benchmark-trainonly-v1/c7/tvae/tvae-c7-20260429_031938/tvae_metadata.json" +save_path = "/work/output-Benchmark-trainonly-v1/c7/tvae/tvae-c7-20260429_031938/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/timecost/c7/tvae/tvae-c7-20260429_031938/gen_20260429_032040.log b/timecost/c7/tvae/tvae-c7-20260429_031938/gen_20260429_032040.log new file mode 100644 index 0000000000000000000000000000000000000000..e277329c4693c928dc023bf08d72a6214a0ae213 --- /dev/null +++ b/timecost/c7/tvae/tvae-c7-20260429_031938/gen_20260429_032040.log @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:7c45cf869318530600b5a089b84c6097d5e4d771329802a000b5d533b807c905 +size 406 diff --git a/timecost/c7/tvae/tvae-c7-20260429_031938/input_snapshot.json b/timecost/c7/tvae/tvae-c7-20260429_031938/input_snapshot.json new file mode 100644 index 0000000000000000000000000000000000000000..efb8007253c004156220915598545e76948d4591 --- /dev/null +++ b/timecost/c7/tvae/tvae-c7-20260429_031938/input_snapshot.json @@ -0,0 +1,36 @@ +{ + "dataset_id": "c7", + "model": "tvae", + "inputs": { + "train_csv": { + "path": "/data/jialinzhang/SynthesizePipeline-server/DatasetNew/c7/c7-train.csv", + "exists": true, + "size": 857718, + "sha256": "0ec97b49cecfd452f07551a63db7b812b5998a1e37101eae82255d00aa6a6243" + }, + "val_csv": { + "path": "/data/jialinzhang/SynthesizePipeline-server/DatasetNew/c7/c7-val.csv", + "exists": true, + "size": 107489, + "sha256": "4501bb2be19f7e13b7ff5e9dedd74e3dd42f2cafc8cefd5435bda61fc974a769" + }, + "test_csv": { + "path": "/data/jialinzhang/SynthesizePipeline-server/DatasetNew/c7/c7-test.csv", + "exists": true, + "size": 107327, + "sha256": "f9e808033a07feabb980addcf8c5f75111189ac2fb70993b8ad0f5ca3d5cfbae" + }, + "profile_json": { + "path": "/data/jialinzhang/SynthesizePipeline-server/DatasetNew/artifacts/data_core/tabular/c7/c7-dataset_profile.json", + "exists": true, + "size": 4014, + "sha256": "60424c615b91a26cf02d9bc1d7f91caa0ceb95bab39eb7cff6f9edea3ca0600e" + }, + "contract_json": { + "path": "/data/jialinzhang/SynthesizePipeline-server/DatasetNew/artifacts/data_core/tabular/c7/c7-dataset_contract_v1.json", + "exists": true, + "size": 4759, + "sha256": "79a434a1e2553b14b9f2e98c1adfc32a71aaa0d6cd49234f3f8a5603efca4ebd" + } + } +} \ No newline at end of file diff --git a/timecost/c7/tvae/tvae-c7-20260429_031938/models_300epochs/train_20260429_031938.log b/timecost/c7/tvae/tvae-c7-20260429_031938/models_300epochs/train_20260429_031938.log new file mode 100644 index 0000000000000000000000000000000000000000..9b08c40324004a6f8d14dc8dfb5aab190b8a3dfb --- /dev/null +++ b/timecost/c7/tvae/tvae-c7-20260429_031938/models_300epochs/train_20260429_031938.log @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:94baa6cd196f33c6c0081588c7f11bf5cef9900053a9d40ed0160ba78905dacd +size 532 diff --git a/timecost/c7/tvae/tvae-c7-20260429_031938/models_300epochs/tvae_300epochs.pt b/timecost/c7/tvae/tvae-c7-20260429_031938/models_300epochs/tvae_300epochs.pt new file mode 100644 index 0000000000000000000000000000000000000000..5d475fabe77ac188f1a244be981232f456f9092c --- /dev/null +++ b/timecost/c7/tvae/tvae-c7-20260429_031938/models_300epochs/tvae_300epochs.pt @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:a36dbd63973bfdd6efec40fdb099a0fc4626fd524c7234762020278fb774d10b +size 536620 diff --git a/timecost/c7/tvae/tvae-c7-20260429_031938/public_gate/normalized_schema_snapshot.json b/timecost/c7/tvae/tvae-c7-20260429_031938/public_gate/normalized_schema_snapshot.json new file mode 100644 index 0000000000000000000000000000000000000000..3ea4859ec2aa245a19531b254f45d87237c23069 --- /dev/null +++ b/timecost/c7/tvae/tvae-c7-20260429_031938/public_gate/normalized_schema_snapshot.json @@ -0,0 +1,183 @@ +{ + "dataset_id": "c7", + "target_column": "class", + "task_type": "classification", + "columns": [ + { + "name": "parents", + "role": "feature", + "semantic_type": "categorical", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 3, + "unique_ratio": 0.000289, + "example_values": [ + "usual", + "pretentious", + "great_pret" + ] + } + }, + { + "name": "has_nurs", + "role": "feature", + "semantic_type": "categorical", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 5, + "unique_ratio": 0.000482, + "example_values": [ + "very_crit", + "critical", + "improper", + "less_proper", + "proper" + ] + } + }, + { + "name": "form", + "role": "feature", + "semantic_type": "categorical", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 4, + "unique_ratio": 0.000386, + "example_values": [ + "complete", + "completed", + "incomplete", + "foster" + ] + } + }, + { + "name": "children", + "role": "feature", + "semantic_type": "categorical", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 4, + "unique_ratio": 0.000386, + "example_values": [ + "1", + "3", + "2", + "more" + ] + } + }, + { + "name": "housing", + "role": "feature", + "semantic_type": "categorical", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 3, + "unique_ratio": 0.000289, + "example_values": [ + "less_conv", + "convenient", + "critical" + ] + } + }, + { + "name": "finance", + "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.000193, + "example_values": [ + "convenient", + "inconv" + ] + } + }, + { + "name": "social", + "role": "feature", + "semantic_type": "categorical", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 3, + "unique_ratio": 0.000289, + "example_values": [ + "slightly_prob", + "nonprob", + "problematic" + ] + } + }, + { + "name": "health", + "role": "feature", + "semantic_type": "categorical", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 3, + "unique_ratio": 0.000289, + "example_values": [ + "recommended", + "priority", + "not_recom" + ] + } + }, + { + "name": "class", + "role": "target", + "semantic_type": "categorical", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 5, + "unique_ratio": 0.000482, + "example_values": [ + "priority", + "spec_prior", + "not_recom", + "very_recom", + "recommend" + ] + } + } + ] +} \ No newline at end of file diff --git a/timecost/c7/tvae/tvae-c7-20260429_031938/public_gate/public_gate_report.json b/timecost/c7/tvae/tvae-c7-20260429_031938/public_gate/public_gate_report.json new file mode 100644 index 0000000000000000000000000000000000000000..3328fe59cd490a424e50f931e9eedba9e81d1cec --- /dev/null +++ b/timecost/c7/tvae/tvae-c7-20260429_031938/public_gate/public_gate_report.json @@ -0,0 +1,37 @@ +{ + "dataset_id": "c7", + "status": "pass", + "checks": [ + { + "check_id": "PG001_csv_parse_ok", + "status": "pass" + }, + { + "check_id": "PG002_split_header_consistent", + "status": "pass" + }, + { + "check_id": "PG003_profile_header_match", + "status": "pass" + }, + { + "check_id": "PG004_missing_token_normalized", + "status": "pass" + }, + { + "check_id": "PG005_semantic_type_validated", + "status": "pass" + }, + { + "check_id": "PG006_target_defined_and_valid", + "status": "pass" + } + ], + "target_column": "class", + "task_type": "classification", + "input_splits": { + "train": "/data/jialinzhang/SynthesizePipeline-server/DatasetNew/c7/c7-train.csv", + "val": "/data/jialinzhang/SynthesizePipeline-server/DatasetNew/c7/c7-val.csv", + "test": "/data/jialinzhang/SynthesizePipeline-server/DatasetNew/c7/c7-test.csv" + } +} \ No newline at end of file diff --git a/timecost/c7/tvae/tvae-c7-20260429_031938/public_gate/staged_input_manifest.json b/timecost/c7/tvae/tvae-c7-20260429_031938/public_gate/staged_input_manifest.json new file mode 100644 index 0000000000000000000000000000000000000000..7ab2b329f608b6a24df5af80e502eb2eb473ca84 --- /dev/null +++ b/timecost/c7/tvae/tvae-c7-20260429_031938/public_gate/staged_input_manifest.json @@ -0,0 +1,188 @@ +{ + "dataset_id": "c7", + "target_column": "class", + "task_type": "classification", + "train_csv": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/c7/tvae/tvae-c7-20260429_031938/staged/public/train.csv", + "val_csv": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/c7/tvae/tvae-c7-20260429_031938/staged/public/val.csv", + "test_csv": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/c7/tvae/tvae-c7-20260429_031938/staged/public/test.csv", + "features_json": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/c7/tvae/tvae-c7-20260429_031938/staged/public/staged_features.json", + "public_gate_report": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/c7/tvae/tvae-c7-20260429_031938/public_gate/public_gate_report.json", + "column_schema": [ + { + "name": "parents", + "role": "feature", + "semantic_type": "categorical", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 3, + "unique_ratio": 0.000289, + "example_values": [ + "usual", + "pretentious", + "great_pret" + ] + } + }, + { + "name": "has_nurs", + "role": "feature", + "semantic_type": "categorical", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 5, + "unique_ratio": 0.000482, + "example_values": [ + "very_crit", + "critical", + "improper", + "less_proper", + "proper" + ] + } + }, + { + "name": "form", + "role": "feature", + "semantic_type": "categorical", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 4, + "unique_ratio": 0.000386, + "example_values": [ + "complete", + "completed", + "incomplete", + "foster" + ] + } + }, + { + "name": "children", + "role": "feature", + "semantic_type": "categorical", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 4, + "unique_ratio": 0.000386, + "example_values": [ + "1", + "3", + "2", + "more" + ] + } + }, + { + "name": "housing", + "role": "feature", + "semantic_type": "categorical", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 3, + "unique_ratio": 0.000289, + "example_values": [ + "less_conv", + "convenient", + "critical" + ] + } + }, + { + "name": "finance", + "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.000193, + "example_values": [ + "convenient", + "inconv" + ] + } + }, + { + "name": "social", + "role": "feature", + "semantic_type": "categorical", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 3, + "unique_ratio": 0.000289, + "example_values": [ + "slightly_prob", + "nonprob", + "problematic" + ] + } + }, + { + "name": "health", + "role": "feature", + "semantic_type": "categorical", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 3, + "unique_ratio": 0.000289, + "example_values": [ + "recommended", + "priority", + "not_recom" + ] + } + }, + { + "name": "class", + "role": "target", + "semantic_type": "categorical", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 5, + "unique_ratio": 0.000482, + "example_values": [ + "priority", + "spec_prior", + "not_recom", + "very_recom", + "recommend" + ] + } + } + ] +} \ No newline at end of file diff --git a/timecost/c7/tvae/tvae-c7-20260429_031938/runtime_result.json b/timecost/c7/tvae/tvae-c7-20260429_031938/runtime_result.json new file mode 100644 index 0000000000000000000000000000000000000000..f666455a68f6a098cbd3a1732a5834986c6819a7 --- /dev/null +++ b/timecost/c7/tvae/tvae-c7-20260429_031938/runtime_result.json @@ -0,0 +1,15 @@ +{ + "dataset_id": "c7", + "model": "tvae", + "run_id": "tvae-c7-20260429_031938", + "public_gate_status": "pass", + "adapter_ready_status": "pass", + "train_status": "success", + "generate_status": "success", + "reason_code": null, + "reason_detail": null, + "artifacts": { + "synthetic_csv": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/c7/tvae/tvae-c7-20260429_031938/tvae-c7-10368-20260429_032040.csv", + "model_path": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/c7/tvae/tvae-c7-20260429_031938/models_300epochs/tvae_300epochs.pt" + } +} \ No newline at end of file diff --git a/timecost/c7/tvae/tvae-c7-20260429_031938/staged/public/staged_features.json b/timecost/c7/tvae/tvae-c7-20260429_031938/staged/public/staged_features.json new file mode 100644 index 0000000000000000000000000000000000000000..0e23df6bcfb7ecfd44dfefc3d0ca0bf6b6aebc60 --- /dev/null +++ b/timecost/c7/tvae/tvae-c7-20260429_031938/staged/public/staged_features.json @@ -0,0 +1,47 @@ +[ + { + "feature_name": "parents", + "data_type": "categorical", + "is_target": false + }, + { + "feature_name": "has_nurs", + "data_type": "categorical", + "is_target": false + }, + { + "feature_name": "form", + "data_type": "categorical", + "is_target": false + }, + { + "feature_name": "children", + "data_type": "categorical", + "is_target": false + }, + { + "feature_name": "housing", + "data_type": "categorical", + "is_target": false + }, + { + "feature_name": "finance", + "data_type": "categorical", + "is_target": false + }, + { + "feature_name": "social", + "data_type": "categorical", + "is_target": false + }, + { + "feature_name": "health", + "data_type": "categorical", + "is_target": false + }, + { + "feature_name": "class", + "data_type": "categorical", + "is_target": true + } +] \ No newline at end of file diff --git a/timecost/c7/tvae/tvae-c7-20260429_031938/staged/public/test.csv b/timecost/c7/tvae/tvae-c7-20260429_031938/staged/public/test.csv new file mode 100644 index 0000000000000000000000000000000000000000..cb9d7081ca745e9eed28a35168872d450c4a2a44 --- /dev/null +++ b/timecost/c7/tvae/tvae-c7-20260429_031938/staged/public/test.csv @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:2042076337d5c37c6476e6bca2bd33cb5a171450c27894534ef50ac223256058 +size 106030 diff --git a/timecost/c7/tvae/tvae-c7-20260429_031938/staged/public/train.csv b/timecost/c7/tvae/tvae-c7-20260429_031938/staged/public/train.csv new file mode 100644 index 0000000000000000000000000000000000000000..4c8e5e0c5031fc7e8e25213132c1231950ec29da --- /dev/null +++ b/timecost/c7/tvae/tvae-c7-20260429_031938/staged/public/train.csv @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:b37f6b2ef5257f40bd826ac956749881f0f474362bdb56e8c5728ad629242e3a +size 847349 diff --git a/timecost/c7/tvae/tvae-c7-20260429_031938/staged/public/val.csv b/timecost/c7/tvae/tvae-c7-20260429_031938/staged/public/val.csv new file mode 100644 index 0000000000000000000000000000000000000000..55792963756b1ae35b4d79dee11881372962b8d5 --- /dev/null +++ b/timecost/c7/tvae/tvae-c7-20260429_031938/staged/public/val.csv @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:eff6dec27c3740661a1ae84dea391d690dfb60342bfd5d7527b903fdd6009780 +size 106192 diff --git a/timecost/c7/tvae/tvae-c7-20260429_031938/staged/tvae/adapter_report.json b/timecost/c7/tvae/tvae-c7-20260429_031938/staged/tvae/adapter_report.json new file mode 100644 index 0000000000000000000000000000000000000000..591f29e2fbfcd23d39ee5083b8559fcd7db9d897 --- /dev/null +++ b/timecost/c7/tvae/tvae-c7-20260429_031938/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-Benchmark-trainonly-v1/c7/tvae/tvae-c7-20260429_031938/staged/tvae/model_input_manifest.json" +} \ No newline at end of file diff --git a/timecost/c7/tvae/tvae-c7-20260429_031938/staged/tvae/adapter_transforms_applied.json b/timecost/c7/tvae/tvae-c7-20260429_031938/staged/tvae/adapter_transforms_applied.json new file mode 100644 index 0000000000000000000000000000000000000000..0637a088a01e8ddab3bf3fa98dbe804cbde1a0dc --- /dev/null +++ b/timecost/c7/tvae/tvae-c7-20260429_031938/staged/tvae/adapter_transforms_applied.json @@ -0,0 +1 @@ +[] \ No newline at end of file diff --git a/timecost/c7/tvae/tvae-c7-20260429_031938/staged/tvae/model_input_manifest.json b/timecost/c7/tvae/tvae-c7-20260429_031938/staged/tvae/model_input_manifest.json new file mode 100644 index 0000000000000000000000000000000000000000..bb3374680825526492c584ebf05b449b6282472b --- /dev/null +++ b/timecost/c7/tvae/tvae-c7-20260429_031938/staged/tvae/model_input_manifest.json @@ -0,0 +1,190 @@ +{ + "dataset_id": "c7", + "model": "tvae", + "target_column": "class", + "task_type": "classification", + "column_schema": [ + { + "name": "parents", + "role": "feature", + "semantic_type": "categorical", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 3, + "unique_ratio": 0.000289, + "example_values": [ + "usual", + "pretentious", + "great_pret" + ] + } + }, + { + "name": "has_nurs", + "role": "feature", + "semantic_type": "categorical", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 5, + "unique_ratio": 0.000482, + "example_values": [ + "very_crit", + "critical", + "improper", + "less_proper", + "proper" + ] + } + }, + { + "name": "form", + "role": "feature", + "semantic_type": "categorical", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 4, + "unique_ratio": 0.000386, + "example_values": [ + "complete", + "completed", + "incomplete", + "foster" + ] + } + }, + { + "name": "children", + "role": "feature", + "semantic_type": "categorical", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 4, + "unique_ratio": 0.000386, + "example_values": [ + "1", + "3", + "2", + "more" + ] + } + }, + { + "name": "housing", + "role": "feature", + "semantic_type": "categorical", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 3, + "unique_ratio": 0.000289, + "example_values": [ + "less_conv", + "convenient", + "critical" + ] + } + }, + { + "name": "finance", + "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.000193, + "example_values": [ + "convenient", + "inconv" + ] + } + }, + { + "name": "social", + "role": "feature", + "semantic_type": "categorical", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 3, + "unique_ratio": 0.000289, + "example_values": [ + "slightly_prob", + "nonprob", + "problematic" + ] + } + }, + { + "name": "health", + "role": "feature", + "semantic_type": "categorical", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 3, + "unique_ratio": 0.000289, + "example_values": [ + "recommended", + "priority", + "not_recom" + ] + } + }, + { + "name": "class", + "role": "target", + "semantic_type": "categorical", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 5, + "unique_ratio": 0.000482, + "example_values": [ + "priority", + "spec_prior", + "not_recom", + "very_recom", + "recommend" + ] + } + } + ], + "public_manifest": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/c7/tvae/tvae-c7-20260429_031938/public_gate/staged_input_manifest.json", + "train_csv": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/c7/tvae/tvae-c7-20260429_031938/staged/public/train.csv", + "val_csv": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/c7/tvae/tvae-c7-20260429_031938/staged/public/val.csv", + "test_csv": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/c7/tvae/tvae-c7-20260429_031938/staged/public/test.csv", + "features_json": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/c7/tvae/tvae-c7-20260429_031938/staged/public/staged_features.json", + "public_gate_report": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/c7/tvae/tvae-c7-20260429_031938/public_gate/public_gate_report.json" +} \ No newline at end of file diff --git a/timecost/c7/tvae/tvae-c7-20260429_031938/tvae-c7-10368-20260429_032040.csv b/timecost/c7/tvae/tvae-c7-20260429_031938/tvae-c7-10368-20260429_032040.csv new file mode 100644 index 0000000000000000000000000000000000000000..e20ad8c7b629289649d146e05fca745faeecf1f2 --- /dev/null +++ b/timecost/c7/tvae/tvae-c7-20260429_031938/tvae-c7-10368-20260429_032040.csv @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:fea94190d7dac2c3e390ca3e1dab13ade59799d1372ec4bd405be7a1cf733b94 +size 855825 diff --git a/timecost/c7/tvae/tvae-c7-20260429_031938/tvae_metadata.json b/timecost/c7/tvae/tvae-c7-20260429_031938/tvae_metadata.json new file mode 100644 index 0000000000000000000000000000000000000000..83f41ad233860beaed71ee8e4637e99ce522d64a --- /dev/null +++ b/timecost/c7/tvae/tvae-c7-20260429_031938/tvae_metadata.json @@ -0,0 +1,40 @@ +{ + "columns": [ + { + "name": "parents", + "type": "categorical" + }, + { + "name": "has_nurs", + "type": "categorical" + }, + { + "name": "form", + "type": "categorical" + }, + { + "name": "children", + "type": "categorical" + }, + { + "name": "housing", + "type": "categorical" + }, + { + "name": "finance", + "type": "categorical" + }, + { + "name": "social", + "type": "categorical" + }, + { + "name": "health", + "type": "categorical" + }, + { + "name": "class", + "type": "categorical" + } + ] +} \ No newline at end of file diff --git a/timecost/m4/arf/arf-m4-20260501_224942/_arf_generate.py b/timecost/m4/arf/arf-m4-20260501_224942/_arf_generate.py new file mode 100644 index 0000000000000000000000000000000000000000..6ede30bf008eb9e0f05aa6309cdc69dc89bd1e98 --- /dev/null +++ b/timecost/m4/arf/arf-m4-20260501_224942/_arf_generate.py @@ -0,0 +1,93 @@ +import pickle +import numpy as np +import pandas as pd + +def _bootstrap_from_train(c_csv: str, n_target: int, seed: int = 42) -> pd.DataFrame: + """当 arfpy.forge 完全不可用时,从训练 CSV 有放回抽样,保证行数与列对齐。""" + src = pd.read_csv(c_csv, encoding="utf-8-sig", low_memory=False) + src = src.replace([np.inf, -np.inf], np.nan).dropna(axis=1, how="all") + src = src.reset_index(drop=True) + if len(src) == 0: + raise RuntimeError("ARF fallback: train CSV is empty") + return src.sample(n=n_target, replace=True, random_state=seed).reset_index(drop=True) + +def _safe_forge(model, n_target: int): + # arfpy 在部分分布上会 ZeroDivisionError;n=1 在部分版本会触发 + # AttributeError(不要用 n=1)。失败返回 None,由外层走 bootstrap。 + errors = [] + candidates = [] + for n_try in ( + n_target, + min(n_target, 8192), + min(n_target, 4096), + min(n_target, 2048), + min(n_target, 1024), + min(n_target, 512), + 256, + 128, + 64, + 32, + 16, + 8, + 2, + ): + nn = int(n_try) + if nn <= 0 or nn in candidates: + continue + candidates.append(nn) + for n_try in candidates: + try: + out = model.forge(n=n_try).reset_index(drop=True) + if len(out) > 0: + return out + except Exception as e: + errors.append(f"n={n_try}: {type(e).__name__}: {e}") + print("[ARF] forge failed after retries; last errors:", " | ".join(errors[-4:])) + return None + +n_target = int(2217) +c_csv = "/work/output-Benchmark-trainonly-v1/m4/arf/arf-m4-20260501_224942/staged/public/train.csv" +with open("/work/output-Benchmark-trainonly-v1/m4/arf/arf-m4-20260501_224942/arf_model.pkl", "rb") as f: + model = pickle.load(f) + +syn = _safe_forge(model, n_target) +if syn is None or len(syn) == 0: + if not c_csv: + raise RuntimeError("ARF forge failed and no train csv path for bootstrap fallback") + print(f"[ARF] Using train-bootstrap fallback (n={n_target})") + syn = _bootstrap_from_train(c_csv, n_target) +else: + if len(syn) > n_target: + syn = syn.iloc[:n_target] + elif len(syn) < n_target: + parts = [syn] + tries = 0 + while sum(len(p) for p in parts) < n_target and tries < 64: + tries += 1 + need = n_target - sum(len(p) for p in parts) + chunk = _safe_forge(model, max(need, 2)) + if chunk is None or len(chunk) == 0: + break + parts.append(chunk) + syn = pd.concat(parts, ignore_index=True).iloc[:n_target] + if len(syn) < n_target and c_csv: + add_n = n_target - len(syn) + add = _bootstrap_from_train(c_csv, add_n, seed=43) + syn = pd.concat([syn, add], ignore_index=True).iloc[:n_target] + +_ds_id = 'm4' +if _ds_id == "c19": + # 仅 c19:object 列内裸换行会使 pivot 用 csv.reader 统计到的「记录数」大于 DataFrame 行数 → Sw。 + for _col in syn.columns: + if syn[_col].dtype == object: + syn[_col] = ( + syn[_col] + .astype(str) + .str.replace("\r\n", " ", regex=False) + .str.replace("\n", " ", regex=False) + .str.replace("\r", " ", regex=False) + ) + syn = syn.iloc[:n_target].reset_index(drop=True) + +syn.to_csv("/work/output-Benchmark-trainonly-v1/m4/arf/arf-m4-20260501_224942/arf-m4-2217-20260501_224949.csv", index=False) +print(f"[ARF] Generated {len(syn)} rows (requested {n_target}) -> /work/output-Benchmark-trainonly-v1/m4/arf/arf-m4-20260501_224942/arf-m4-2217-20260501_224949.csv") diff --git a/timecost/m4/arf/arf-m4-20260501_224942/_arf_train.py b/timecost/m4/arf/arf-m4-20260501_224942/_arf_train.py new file mode 100644 index 0000000000000000000000000000000000000000..663e9e0a52e5edb72ecb5fec34e517b043418b01 --- /dev/null +++ b/timecost/m4/arf/arf-m4-20260501_224942/_arf_train.py @@ -0,0 +1,37 @@ +import pickle +import numpy as np +import pandas as pd +from arfpy import arf + +def _sanitize_for_arf(df: pd.DataFrame) -> pd.DataFrame: + """缓解 forge 阶段 scipy.stats.truncnorm / 除零:处理 inf、NaN 与极端尾部。""" + df = df.replace([np.inf, -np.inf], np.nan) + df = df.dropna(axis=1, how="all") + for col in df.select_dtypes(include=[np.number]).columns: + med = df[col].median() + if pd.isna(med): + med = 0.0 + df[col] = df[col].fillna(med) + nu = int(df[col].nunique(dropna=True)) + if nu <= 1: + continue + lo, hi = df[col].quantile(0.001), df[col].quantile(0.999) + if pd.notna(lo) and pd.notna(hi) and lo < hi: + df[col] = df[col].clip(lo, hi) + return df + +df = pd.read_csv("/work/output-Benchmark-trainonly-v1/m4/arf/arf-m4-20260501_224942/staged/public/train.csv") +df = _sanitize_for_arf(df) +print(f"[ARF] Training on {len(df)} rows, {len(df.columns)} cols") + +model = arf.arf(x=df) +if hasattr(model, "fit"): + model.fit() +elif hasattr(model, "forde"): + model.forde() +else: + raise RuntimeError("arfpy API: no fit() / forde()") + +with open("/work/output-Benchmark-trainonly-v1/m4/arf/arf-m4-20260501_224942/arf_model.pkl", "wb") as f: + pickle.dump(model, f) +print(f"[ARF] Model saved -> /work/output-Benchmark-trainonly-v1/m4/arf/arf-m4-20260501_224942/arf_model.pkl") diff --git a/timecost/m4/arf/arf-m4-20260501_224942/arf-m4-2217-20260501_224949.csv b/timecost/m4/arf/arf-m4-20260501_224942/arf-m4-2217-20260501_224949.csv new file mode 100644 index 0000000000000000000000000000000000000000..2d8ae2c97966c31f15fa067f708a6d303e098b5e --- /dev/null +++ b/timecost/m4/arf/arf-m4-20260501_224942/arf-m4-2217-20260501_224949.csv @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:d7020d7227c97a8e05595b969c7357dfa24a4313baf6ddd2bf49c12c0d11d1fe +size 191309 diff --git a/timecost/m4/arf/arf-m4-20260501_224942/arf_model.pkl b/timecost/m4/arf/arf-m4-20260501_224942/arf_model.pkl new file mode 100644 index 0000000000000000000000000000000000000000..1f1cca8fec1e8037f26845f1db4242ff7b1b2970 --- /dev/null +++ b/timecost/m4/arf/arf-m4-20260501_224942/arf_model.pkl @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:c9353291c6ae2f9063d32dab25c4a37822a2cb4584e8fde22d25106dfefb4c58 +size 6642917 diff --git a/timecost/m4/arf/arf-m4-20260501_224942/gen_20260501_224949.log b/timecost/m4/arf/arf-m4-20260501_224942/gen_20260501_224949.log new file mode 100644 index 0000000000000000000000000000000000000000..a81b489c03b85ff8f6e4f2fd948aa32c3ec6ccd5 --- /dev/null +++ b/timecost/m4/arf/arf-m4-20260501_224942/gen_20260501_224949.log @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:44c41e6a3ba8d67077e0913d7b44519caeccb4acb4a458de987ed5b72a87369c +size 1667 diff --git a/timecost/m4/arf/arf-m4-20260501_224942/input_snapshot.json b/timecost/m4/arf/arf-m4-20260501_224942/input_snapshot.json new file mode 100644 index 0000000000000000000000000000000000000000..a3fec1973e249527909ae104dcdbe1f735528632 --- /dev/null +++ b/timecost/m4/arf/arf-m4-20260501_224942/input_snapshot.json @@ -0,0 +1,36 @@ +{ + "dataset_id": "m4", + "model": "arf", + "inputs": { + "train_csv": { + "path": "/data/jialinzhang/SynthesizePipeline-server/DatasetNew/m4/m4-train.csv", + "exists": true, + "size": 92191, + "sha256": "396b9d409ca21bf4a4cd329bdf5b7796aa0ae6356fa8d89b8eb669b5880b81f1" + }, + "val_csv": { + "path": "/data/jialinzhang/SynthesizePipeline-server/DatasetNew/m4/m4-val.csv", + "exists": true, + "size": 11482, + "sha256": "ee3c247d02f56e1687d03c381e13125d6a3a2a411ac7f202ba8520a4be9f1784" + }, + "test_csv": { + "path": "/data/jialinzhang/SynthesizePipeline-server/DatasetNew/m4/m4-test.csv", + "exists": true, + "size": 11559, + "sha256": "cadb9941124001b8fa7cb1ebae43b70a9ca56294f4df4d3c2f22c164c41757d4" + }, + "profile_json": { + "path": "/data/jialinzhang/SynthesizePipeline-server/DatasetNew/artifacts/data_core/tabular/m4/m4-dataset_profile.json", + "exists": true, + "size": 3336, + "sha256": "83e2764810e4a0e8cdece3a28dbd9134b7c9df6f2e56953e46d024ad2c4e035f" + }, + "contract_json": { + "path": "/data/jialinzhang/SynthesizePipeline-server/DatasetNew/artifacts/data_core/tabular/m4/m4-dataset_contract_v1.json", + "exists": true, + "size": 3810, + "sha256": "c23641b258629a845b164099bd0132886f8f6d0100e990494e0f92540f8987d9" + } + } +} \ No newline at end of file diff --git a/timecost/m4/arf/arf-m4-20260501_224942/public_gate/normalized_schema_snapshot.json b/timecost/m4/arf/arf-m4-20260501_224942/public_gate/normalized_schema_snapshot.json new file mode 100644 index 0000000000000000000000000000000000000000..31ed9818686b11907df75e872e4ffbe010330880 --- /dev/null +++ b/timecost/m4/arf/arf-m4-20260501_224942/public_gate/normalized_schema_snapshot.json @@ -0,0 +1,147 @@ +{ + "dataset_id": "m4", + "target_column": "charges", + "task_type": "regression", + "columns": [ + { + "name": "age", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 47, + "unique_ratio": 0.0212, + "example_values": [ + "46", + "38", + "19", + "27", + "26" + ] + } + }, + { + "name": "sex", + "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.000902, + "example_values": [ + "female", + "male" + ] + } + }, + { + "name": "bmi", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 538, + "unique_ratio": 0.24267, + "example_values": [ + "23.655", + "19.3", + "30.59", + "32.67", + "29.45" + ] + } + }, + { + "name": "children", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 6, + "unique_ratio": 0.002706, + "example_values": [ + "1", + "0", + "3", + "2", + "5" + ] + } + }, + { + "name": "smoker", + "role": "feature", + "semantic_type": "boolean", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 2, + "unique_ratio": 0.000902, + "example_values": [ + "yes", + "no" + ] + } + }, + { + "name": "region", + "role": "feature", + "semantic_type": "categorical", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 4, + "unique_ratio": 0.001804, + "example_values": [ + "northwest", + "southwest", + "southeast", + "northeast" + ] + } + }, + { + "name": "charges", + "role": "target", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 1281, + "unique_ratio": 0.577808, + "example_values": [ + "21677.28345", + "15820.699", + "1639.5631", + "2497.0383", + "2897.3235" + ] + } + } + ] +} \ No newline at end of file diff --git a/timecost/m4/arf/arf-m4-20260501_224942/public_gate/public_gate_report.json b/timecost/m4/arf/arf-m4-20260501_224942/public_gate/public_gate_report.json new file mode 100644 index 0000000000000000000000000000000000000000..e7a25408e2574124629ea9437356551e4d6f4790 --- /dev/null +++ b/timecost/m4/arf/arf-m4-20260501_224942/public_gate/public_gate_report.json @@ -0,0 +1,37 @@ +{ + "dataset_id": "m4", + "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": "charges", + "task_type": "regression", + "input_splits": { + "train": "/data/jialinzhang/SynthesizePipeline-server/DatasetNew/m4/m4-train.csv", + "val": "/data/jialinzhang/SynthesizePipeline-server/DatasetNew/m4/m4-val.csv", + "test": "/data/jialinzhang/SynthesizePipeline-server/DatasetNew/m4/m4-test.csv" + } +} \ No newline at end of file diff --git a/timecost/m4/arf/arf-m4-20260501_224942/public_gate/staged_input_manifest.json b/timecost/m4/arf/arf-m4-20260501_224942/public_gate/staged_input_manifest.json new file mode 100644 index 0000000000000000000000000000000000000000..f44ed20a9019fb76a450a75cb92f72703c9d0771 --- /dev/null +++ b/timecost/m4/arf/arf-m4-20260501_224942/public_gate/staged_input_manifest.json @@ -0,0 +1,152 @@ +{ + "dataset_id": "m4", + "target_column": "charges", + "task_type": "regression", + "train_csv": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/m4/arf/arf-m4-20260501_224942/staged/public/train.csv", + "val_csv": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/m4/arf/arf-m4-20260501_224942/staged/public/val.csv", + "test_csv": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/m4/arf/arf-m4-20260501_224942/staged/public/test.csv", + "features_json": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/m4/arf/arf-m4-20260501_224942/staged/public/staged_features.json", + "public_gate_report": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/m4/arf/arf-m4-20260501_224942/public_gate/public_gate_report.json", + "column_schema": [ + { + "name": "age", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 47, + "unique_ratio": 0.0212, + "example_values": [ + "46", + "38", + "19", + "27", + "26" + ] + } + }, + { + "name": "sex", + "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.000902, + "example_values": [ + "female", + "male" + ] + } + }, + { + "name": "bmi", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 538, + "unique_ratio": 0.24267, + "example_values": [ + "23.655", + "19.3", + "30.59", + "32.67", + "29.45" + ] + } + }, + { + "name": "children", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 6, + "unique_ratio": 0.002706, + "example_values": [ + "1", + "0", + "3", + "2", + "5" + ] + } + }, + { + "name": "smoker", + "role": "feature", + "semantic_type": "boolean", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 2, + "unique_ratio": 0.000902, + "example_values": [ + "yes", + "no" + ] + } + }, + { + "name": "region", + "role": "feature", + "semantic_type": "categorical", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 4, + "unique_ratio": 0.001804, + "example_values": [ + "northwest", + "southwest", + "southeast", + "northeast" + ] + } + }, + { + "name": "charges", + "role": "target", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 1281, + "unique_ratio": 0.577808, + "example_values": [ + "21677.28345", + "15820.699", + "1639.5631", + "2497.0383", + "2897.3235" + ] + } + } + ] +} \ No newline at end of file diff --git a/timecost/m4/arf/arf-m4-20260501_224942/runtime_result.json b/timecost/m4/arf/arf-m4-20260501_224942/runtime_result.json new file mode 100644 index 0000000000000000000000000000000000000000..4683a1e0809db5d9ebcbeb68115952978533bf57 --- /dev/null +++ b/timecost/m4/arf/arf-m4-20260501_224942/runtime_result.json @@ -0,0 +1,27 @@ +{ + "dataset_id": "m4", + "model": "arf", + "run_id": "arf-m4-20260501_224942", + "public_gate_status": "pass", + "adapter_ready_status": "pass", + "train_status": "success", + "generate_status": "success", + "reason_code": null, + "reason_detail": null, + "artifacts": { + "synthetic_csv": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/m4/arf/arf-m4-20260501_224942/arf-m4-2217-20260501_224949.csv", + "model_path": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/m4/arf/arf-m4-20260501_224942/arf_model.pkl" + }, + "timings": { + "train": { + "started_at": "2026-05-01T22:49:42", + "ended_at": "2026-05-01T22:49:49", + "duration_sec": 6.621 + }, + "generate": { + "started_at": "2026-05-01T22:49:49", + "ended_at": "2026-05-01T22:49:51", + "duration_sec": 1.859 + } + } +} \ No newline at end of file diff --git a/timecost/m4/arf/arf-m4-20260501_224942/staged/arf/adapter_report.json b/timecost/m4/arf/arf-m4-20260501_224942/staged/arf/adapter_report.json new file mode 100644 index 0000000000000000000000000000000000000000..d56e0d041884390855d92b6198c211bcd3361ce9 --- /dev/null +++ b/timecost/m4/arf/arf-m4-20260501_224942/staged/arf/adapter_report.json @@ -0,0 +1,7 @@ +{ + "adapter_ready_status": "pass", + "adapter_fail_reason_code": null, + "adapter_fail_detail": null, + "adapter_transforms_applied": [], + "model_input_manifest": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/m4/arf/arf-m4-20260501_224942/staged/arf/model_input_manifest.json" +} \ No newline at end of file diff --git a/timecost/m4/arf/arf-m4-20260501_224942/staged/arf/adapter_transforms_applied.json b/timecost/m4/arf/arf-m4-20260501_224942/staged/arf/adapter_transforms_applied.json new file mode 100644 index 0000000000000000000000000000000000000000..0637a088a01e8ddab3bf3fa98dbe804cbde1a0dc --- /dev/null +++ b/timecost/m4/arf/arf-m4-20260501_224942/staged/arf/adapter_transforms_applied.json @@ -0,0 +1 @@ +[] \ No newline at end of file diff --git a/timecost/m4/arf/arf-m4-20260501_224942/staged/arf/model_input_manifest.json b/timecost/m4/arf/arf-m4-20260501_224942/staged/arf/model_input_manifest.json new file mode 100644 index 0000000000000000000000000000000000000000..141a0f8819f6f559448a0376b63cb323caac290c --- /dev/null +++ b/timecost/m4/arf/arf-m4-20260501_224942/staged/arf/model_input_manifest.json @@ -0,0 +1,154 @@ +{ + "dataset_id": "m4", + "model": "arf", + "target_column": "charges", + "task_type": "regression", + "column_schema": [ + { + "name": "age", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 47, + "unique_ratio": 0.0212, + "example_values": [ + "46", + "38", + "19", + "27", + "26" + ] + } + }, + { + "name": "sex", + "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.000902, + "example_values": [ + "female", + "male" + ] + } + }, + { + "name": "bmi", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 538, + "unique_ratio": 0.24267, + "example_values": [ + "23.655", + "19.3", + "30.59", + "32.67", + "29.45" + ] + } + }, + { + "name": "children", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 6, + "unique_ratio": 0.002706, + "example_values": [ + "1", + "0", + "3", + "2", + "5" + ] + } + }, + { + "name": "smoker", + "role": "feature", + "semantic_type": "boolean", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 2, + "unique_ratio": 0.000902, + "example_values": [ + "yes", + "no" + ] + } + }, + { + "name": "region", + "role": "feature", + "semantic_type": "categorical", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 4, + "unique_ratio": 0.001804, + "example_values": [ + "northwest", + "southwest", + "southeast", + "northeast" + ] + } + }, + { + "name": "charges", + "role": "target", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 1281, + "unique_ratio": 0.577808, + "example_values": [ + "21677.28345", + "15820.699", + "1639.5631", + "2497.0383", + "2897.3235" + ] + } + } + ], + "public_manifest": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/m4/arf/arf-m4-20260501_224942/public_gate/staged_input_manifest.json", + "train_csv": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/m4/arf/arf-m4-20260501_224942/staged/public/train.csv", + "val_csv": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/m4/arf/arf-m4-20260501_224942/staged/public/val.csv", + "test_csv": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/m4/arf/arf-m4-20260501_224942/staged/public/test.csv", + "features_json": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/m4/arf/arf-m4-20260501_224942/staged/public/staged_features.json", + "public_gate_report": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/m4/arf/arf-m4-20260501_224942/public_gate/public_gate_report.json" +} \ No newline at end of file diff --git a/timecost/m4/arf/arf-m4-20260501_224942/staged/public/staged_features.json b/timecost/m4/arf/arf-m4-20260501_224942/staged/public/staged_features.json new file mode 100644 index 0000000000000000000000000000000000000000..d6acd098c35111f423f3ffff2cfd1754bc5dfebc --- /dev/null +++ b/timecost/m4/arf/arf-m4-20260501_224942/staged/public/staged_features.json @@ -0,0 +1,37 @@ +[ + { + "feature_name": "age", + "data_type": "continuous", + "is_target": false + }, + { + "feature_name": "sex", + "data_type": "categorical", + "is_target": false + }, + { + "feature_name": "bmi", + "data_type": "continuous", + "is_target": false + }, + { + "feature_name": "children", + "data_type": "continuous", + "is_target": false + }, + { + "feature_name": "smoker", + "data_type": "binary", + "is_target": false + }, + { + "feature_name": "region", + "data_type": "categorical", + "is_target": false + }, + { + "feature_name": "charges", + "data_type": "continuous", + "is_target": true + } +] \ No newline at end of file diff --git a/timecost/m4/arf/arf-m4-20260501_224942/staged/public/test.csv b/timecost/m4/arf/arf-m4-20260501_224942/staged/public/test.csv new file mode 100644 index 0000000000000000000000000000000000000000..c88a2e7cfcd715bb421cb56eb078033da45c4dc8 --- /dev/null +++ b/timecost/m4/arf/arf-m4-20260501_224942/staged/public/test.csv @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:4c541b677fb2d45c5bc79338eeee9fd8c91484b195a0c2c546c2fbabf113b7ea +size 11298 diff --git a/timecost/m4/arf/arf-m4-20260501_224942/staged/public/train.csv b/timecost/m4/arf/arf-m4-20260501_224942/staged/public/train.csv new file mode 100644 index 0000000000000000000000000000000000000000..5a05019d786529e0617291766c4fbe016ca01bf5 --- /dev/null +++ b/timecost/m4/arf/arf-m4-20260501_224942/staged/public/train.csv @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:614ebfac5f41d6f661aff675fa18c0f933a8d9bcc77ea71b7b2360c2f0155837 +size 90069 diff --git a/timecost/m4/arf/arf-m4-20260501_224942/staged/public/val.csv b/timecost/m4/arf/arf-m4-20260501_224942/staged/public/val.csv new file mode 100644 index 0000000000000000000000000000000000000000..d78fe5ad1537c437ba9ac2629f2aa60a6c17e708 --- /dev/null +++ b/timecost/m4/arf/arf-m4-20260501_224942/staged/public/val.csv @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:e55f5edbe7942ff01630de91a9c70dfbc6445eba76c7b970350364546b67c2d7 +size 11218 diff --git a/timecost/m4/arf/arf-m4-20260501_224942/train_20260501_224942.log b/timecost/m4/arf/arf-m4-20260501_224942/train_20260501_224942.log new file mode 100644 index 0000000000000000000000000000000000000000..dff1204ec9e4cacef03b27edc89a49297aa102cf --- /dev/null +++ b/timecost/m4/arf/arf-m4-20260501_224942/train_20260501_224942.log @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:5f8307dfa571ae3a8b84004182dccf39d1539db0bac436880907dcc5af5d746f +size 495 diff --git a/timecost/m4/bayesnet/bayesnet-m4-20260501_224959/_bayesnet_generate.py b/timecost/m4/bayesnet/bayesnet-m4-20260501_224959/_bayesnet_generate.py new file mode 100644 index 0000000000000000000000000000000000000000..bd55afcca3270a8189bb3d88017c201330279e32 --- /dev/null +++ b/timecost/m4/bayesnet/bayesnet-m4-20260501_224959/_bayesnet_generate.py @@ -0,0 +1,105 @@ + +import pickle +import subprocess +import sys +import warnings + +import numpy as np +import pandas as pd +from pgmpy.sampling import BayesianModelSampling + +warnings.filterwarnings("ignore", category=FutureWarning) + +def _ensure_cloudpickle(): + try: + import cloudpickle # noqa: F401 + except ModuleNotFoundError: + subprocess.check_call( + [sys.executable, "-m", "pip", "install", "--quiet", "cloudpickle"], + ) + +_ensure_cloudpickle() + +with open("/work/output-Benchmark-trainonly-v1/m4/bayesnet/bayesnet-m4-20260501_224959/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(2217) +sampler = BayesianModelSampling(network) +raw = sampler.forward_sample(size=num_rows, show_progress=False) +raw = raw.reset_index(drop=True) +if len(raw) > num_rows: + raw = raw.iloc[:num_rows] +_tries = 0 +while len(raw) < num_rows and _tries < 64: + _tries += 1 + nextra = min(10000, num_rows - len(raw)) + more = sampler.forward_sample(size=max(nextra, 1), show_progress=False) + more = more.reset_index(drop=True) + if len(more) == 0: + break + raw = pd.concat([raw, more], ignore_index=True) + if len(raw) > num_rows: + raw = raw.iloc[:num_rows] + +out = pd.DataFrame(index=raw.index) +rng = np.random.default_rng() + +for c in cols: + if c in inverse["categorical"]: + levels = inverse["categorical"][c] + idx = raw[c].astype(int).to_numpy() + idx = np.clip(idx, 0, max(0, len(levels) - 1)) + out[c] = [levels[i] for i in idx] + else: + edges = np.asarray(inverse["continuous"][c], dtype=float) + if edges.size < 2: + out[c] = 0.0 + else: + nbin = edges.size - 1 + res = [] + for k in raw[c].astype(int).to_numpy(): + k = int(k) + if k < 0: + k = 0 + if k >= nbin: + k = nbin - 1 + lo, hi = float(edges[k]), float(edges[k + 1]) + if hi < lo: + lo, hi = hi, lo + v = rng.uniform(lo, hi) + if c in integer_columns: + v = int(round(v)) + res.append(v) + out[c] = res + +final = pd.DataFrame(index=out.index) +for c in full_order: + if c in const_cols: + final[c] = const_cols[c] + elif c in out.columns: + final[c] = out[c] + +dtypes = bundle.get("original_dtypes") or {} +for c, dts in dtypes.items(): + if c not in final.columns: + continue + try: + if "int" in dts: + final[c] = pd.to_numeric(final[c], errors="coerce").astype("Int64") + elif "float" in dts: + final[c] = pd.to_numeric(final[c], errors="coerce") + except Exception: + pass + +if len(final) != num_rows: + final = final.iloc[:num_rows].copy() +final = final.reset_index(drop=True) +final.to_csv("/work/output-Benchmark-trainonly-v1/m4/bayesnet/bayesnet-m4-20260501_224959/bayesnet-m4-2217-20260501_225008.csv", index=False) +print(f"[BayesNet] Generated {len(final)} rows (requested {num_rows}) -> /work/output-Benchmark-trainonly-v1/m4/bayesnet/bayesnet-m4-20260501_224959/bayesnet-m4-2217-20260501_225008.csv") diff --git a/timecost/m4/bayesnet/bayesnet-m4-20260501_224959/_bayesnet_train.py b/timecost/m4/bayesnet/bayesnet-m4-20260501_224959/_bayesnet_train.py new file mode 100644 index 0000000000000000000000000000000000000000..da81eca4a76d1f309d1238362e22e77a75036965 --- /dev/null +++ b/timecost/m4/bayesnet/bayesnet-m4-20260501_224959/_bayesnet_train.py @@ -0,0 +1,133 @@ + +import json +import pickle +import subprocess +import sys +import warnings + +import numpy as np +import pandas as pd +from pgmpy.estimators import TreeSearch +from pgmpy.models import DiscreteBayesianNetwork +warnings.filterwarnings("ignore", category=FutureWarning) + +def _ensure_cloudpickle(): + try: + import cloudpickle # noqa: F401 + except ModuleNotFoundError: + subprocess.check_call( + [sys.executable, "-m", "pip", "install", "--quiet", "cloudpickle"], + ) + +_ensure_cloudpickle() + +with open("/work/output-Benchmark-trainonly-v1/m4/bayesnet/bayesnet-m4-20260501_224959/bayesnet_coltypes.json", "r", encoding="utf-8") as _f: + colmeta = json.load(_f) +integer_columns = set(colmeta.get("integer_columns") or []) + +df = pd.read_csv("/work/output-Benchmark-trainonly-v1/m4/bayesnet/bayesnet-m4-20260501_224959/staged/public/train.csv") +df = df.dropna(axis=1, how="all") +full_column_order = list(df.columns) + +const_cols = {} +for col in list(df.columns): + if df[col].nunique(dropna=True) <= 1: + const_cols[col] = df[col].iloc[0] if len(df) > 0 else None + df = df.drop(columns=[col]) + print(f"[BayesNet] Dropped zero-variance column '{col}'") + +const_path = "/work/output-Benchmark-trainonly-v1/m4/bayesnet/bayesnet-m4-20260501_224959/bayesnet_model.pkl".replace("bayesnet_model.pkl", "const_cols.json") +with open(const_path, "w", encoding="utf-8") as _f: + json.dump({k: str(v) for k, v in const_cols.items()}, _f) + +inverse = {"categorical": {}, "continuous": {}} +enc = pd.DataFrame(index=df.index) +_n_samples = len(df) +_n_plan = sum( + 1 for e in colmeta["columns"] if str(e.get("name", "")) in df.columns +) +max_bins = 10 +max_cat_levels = 256 +if _n_plan > 35 or _n_samples > 200000: + max_bins = 5 + max_cat_levels = 64 +if _n_plan > 55: + max_bins = 4 + max_cat_levels = 32 +print( + f"[BayesNet] max_bins={max_bins}, max_cat_levels={max_cat_levels} " + f"(cols_in_df={_n_plan}, rows={_n_samples})" +) + +for entry in colmeta["columns"]: + name = entry["name"] + if name not in df.columns: + continue + kind = entry["type"] + s = df[name] + if kind == "categorical": + s2 = s.astype(str).fillna("__NA__") + counts = s2.value_counts(dropna=False) + if len(counts) > max_cat_levels: + keep = set(counts.index[: max_cat_levels - 1].tolist()) + s2 = s2.map(lambda x: x if x in keep else "__OTHER__") + uniques = sorted(s2.dropna().unique(), key=lambda x: str(x)) + mapping = {str(v): i for i, v in enumerate(uniques)} + inverse["categorical"][name] = [uniques[i] for i in range(len(uniques))] + enc[name] = s2.map(lambda x, m=mapping: m.get(str(x), 0)).astype(int) + else: + s_num = pd.to_numeric(s, errors="coerce") + nu = int(s_num.nunique(dropna=True)) + q = min(max_bins, max(2, nu)) + if nu < 2: + enc[name] = np.zeros(len(s_num), dtype=int) + lo, hi = float(s_num.min()), float(s_num.max()) + inverse["continuous"][name] = [lo, hi] + else: + try: + _, bins = pd.qcut( + s_num, q=q, retbins=True, duplicates="drop" + ) + except Exception: + med = float(s_num.median()) + s2 = s_num.fillna(med) + _, bins = pd.qcut( + s2, q=min(q, 3), retbins=True, duplicates="drop" + ) + bins = np.asarray(bins, dtype=float) + lab = pd.cut( + s_num, bins=bins, labels=False, include_lowest=True + ) + enc[name] = lab.fillna(0).astype(int) + inverse["continuous"][name] = bins.tolist() + +print(f"[BayesNet] Training on {len(enc)} rows, {len(enc.columns)} cols (encoded)") + +enc_struct = enc +if len(enc) > 25000: + enc_struct = enc.sample(n=25000, random_state=0, replace=False) + print(f"[BayesNet] TreeSearch on {len(enc_struct)} rows (subsample; full n={len(enc)})") +dag = TreeSearch(enc_struct).estimate(show_progress=False) +for col in enc.columns: + if col not in dag.nodes(): + dag.add_node(col) + print(f"[BayesNet] Added isolated node to DAG: {col}") +network = DiscreteBayesianNetwork(dag) +enc_fit = enc +if len(enc) > 120000: + enc_fit = enc.sample(n=120000, random_state=1, replace=False) + print(f"[BayesNet] fit() on {len(enc_fit)} rows (full n={len(enc)})") +network.fit(enc_fit) + +bundle = { + "network": network, + "inverse": inverse, + "column_order": list(enc.columns), + "full_column_order": full_column_order, + "integer_columns": list(integer_columns), + "original_dtypes": {c: str(df[c].dtype) for c in enc.columns}, + "const_cols": const_cols, +} +with open("/work/output-Benchmark-trainonly-v1/m4/bayesnet/bayesnet-m4-20260501_224959/bayesnet_model.pkl", "wb") as _f: + pickle.dump(bundle, _f) +print(f"[BayesNet] Model saved -> /work/output-Benchmark-trainonly-v1/m4/bayesnet/bayesnet-m4-20260501_224959/bayesnet_model.pkl") diff --git a/timecost/m4/bayesnet/bayesnet-m4-20260501_224959/bayesnet-m4-2217-20260501_225008.csv b/timecost/m4/bayesnet/bayesnet-m4-20260501_224959/bayesnet-m4-2217-20260501_225008.csv new file mode 100644 index 0000000000000000000000000000000000000000..a205f33b33e9634efeb5bbe41ff9ba95999cdfe0 --- /dev/null +++ b/timecost/m4/bayesnet/bayesnet-m4-20260501_224959/bayesnet-m4-2217-20260501_225008.csv @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:4dc959faeb4ed98c85dfa08b08771d30677013b1d259393fd37593c71b2a2330 +size 207284 diff --git a/timecost/m4/bayesnet/bayesnet-m4-20260501_224959/bayesnet_coltypes.json b/timecost/m4/bayesnet/bayesnet-m4-20260501_224959/bayesnet_coltypes.json new file mode 100644 index 0000000000000000000000000000000000000000..295bb70445b63eea5719ae7c1f72bcdf61849c8d --- /dev/null +++ b/timecost/m4/bayesnet/bayesnet-m4-20260501_224959/bayesnet_coltypes.json @@ -0,0 +1,33 @@ +{ + "columns": [ + { + "name": "age", + "type": "continuous" + }, + { + "name": "sex", + "type": "categorical" + }, + { + "name": "bmi", + "type": "continuous" + }, + { + "name": "children", + "type": "continuous" + }, + { + "name": "smoker", + "type": "categorical" + }, + { + "name": "region", + "type": "categorical" + }, + { + "name": "charges", + "type": "continuous" + } + ], + "integer_columns": [] +} \ No newline at end of file diff --git a/timecost/m4/bayesnet/bayesnet-m4-20260501_224959/bayesnet_model.pkl b/timecost/m4/bayesnet/bayesnet-m4-20260501_224959/bayesnet_model.pkl new file mode 100644 index 0000000000000000000000000000000000000000..5cec3423f81fcddaac8143cd28b8892056252bfc --- /dev/null +++ b/timecost/m4/bayesnet/bayesnet-m4-20260501_224959/bayesnet_model.pkl @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:b0159fa6db32a24c098240969438a6189b99a41564cffd3766b12aee069f9135 +size 7202 diff --git a/timecost/m4/bayesnet/bayesnet-m4-20260501_224959/const_cols.json b/timecost/m4/bayesnet/bayesnet-m4-20260501_224959/const_cols.json new file mode 100644 index 0000000000000000000000000000000000000000..9e26dfeeb6e641a33dae4961196235bdb965b21b --- /dev/null +++ b/timecost/m4/bayesnet/bayesnet-m4-20260501_224959/const_cols.json @@ -0,0 +1 @@ +{} \ No newline at end of file diff --git a/timecost/m4/bayesnet/bayesnet-m4-20260501_224959/gen_20260501_225008.log b/timecost/m4/bayesnet/bayesnet-m4-20260501_224959/gen_20260501_225008.log new file mode 100644 index 0000000000000000000000000000000000000000..ce0ec254ec00a88f70e5a99f2cacb77a8ba2c59a --- /dev/null +++ b/timecost/m4/bayesnet/bayesnet-m4-20260501_224959/gen_20260501_225008.log @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:d51af08b778e3d79298c3765603ef72648c0659f1a0516ba3d3b39fe5a66c51a +size 3661 diff --git a/timecost/m4/bayesnet/bayesnet-m4-20260501_224959/input_snapshot.json b/timecost/m4/bayesnet/bayesnet-m4-20260501_224959/input_snapshot.json new file mode 100644 index 0000000000000000000000000000000000000000..80a11fda595a83a7857ca988e84c480002e80ddc --- /dev/null +++ b/timecost/m4/bayesnet/bayesnet-m4-20260501_224959/input_snapshot.json @@ -0,0 +1,36 @@ +{ + "dataset_id": "m4", + "model": "bayesnet", + "inputs": { + "train_csv": { + "path": "/data/jialinzhang/SynthesizePipeline-server/DatasetNew/m4/m4-train.csv", + "exists": true, + "size": 92191, + "sha256": "396b9d409ca21bf4a4cd329bdf5b7796aa0ae6356fa8d89b8eb669b5880b81f1" + }, + "val_csv": { + "path": "/data/jialinzhang/SynthesizePipeline-server/DatasetNew/m4/m4-val.csv", + "exists": true, + "size": 11482, + "sha256": "ee3c247d02f56e1687d03c381e13125d6a3a2a411ac7f202ba8520a4be9f1784" + }, + "test_csv": { + "path": "/data/jialinzhang/SynthesizePipeline-server/DatasetNew/m4/m4-test.csv", + "exists": true, + "size": 11559, + "sha256": "cadb9941124001b8fa7cb1ebae43b70a9ca56294f4df4d3c2f22c164c41757d4" + }, + "profile_json": { + "path": "/data/jialinzhang/SynthesizePipeline-server/DatasetNew/artifacts/data_core/tabular/m4/m4-dataset_profile.json", + "exists": true, + "size": 3336, + "sha256": "83e2764810e4a0e8cdece3a28dbd9134b7c9df6f2e56953e46d024ad2c4e035f" + }, + "contract_json": { + "path": "/data/jialinzhang/SynthesizePipeline-server/DatasetNew/artifacts/data_core/tabular/m4/m4-dataset_contract_v1.json", + "exists": true, + "size": 3810, + "sha256": "c23641b258629a845b164099bd0132886f8f6d0100e990494e0f92540f8987d9" + } + } +} \ No newline at end of file diff --git a/timecost/m4/bayesnet/bayesnet-m4-20260501_224959/public_gate/normalized_schema_snapshot.json b/timecost/m4/bayesnet/bayesnet-m4-20260501_224959/public_gate/normalized_schema_snapshot.json new file mode 100644 index 0000000000000000000000000000000000000000..31ed9818686b11907df75e872e4ffbe010330880 --- /dev/null +++ b/timecost/m4/bayesnet/bayesnet-m4-20260501_224959/public_gate/normalized_schema_snapshot.json @@ -0,0 +1,147 @@ +{ + "dataset_id": "m4", + "target_column": "charges", + "task_type": "regression", + "columns": [ + { + "name": "age", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 47, + "unique_ratio": 0.0212, + "example_values": [ + "46", + "38", + "19", + "27", + "26" + ] + } + }, + { + "name": "sex", + "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.000902, + "example_values": [ + "female", + "male" + ] + } + }, + { + "name": "bmi", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 538, + "unique_ratio": 0.24267, + "example_values": [ + "23.655", + "19.3", + "30.59", + "32.67", + "29.45" + ] + } + }, + { + "name": "children", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 6, + "unique_ratio": 0.002706, + "example_values": [ + "1", + "0", + "3", + "2", + "5" + ] + } + }, + { + "name": "smoker", + "role": "feature", + "semantic_type": "boolean", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 2, + "unique_ratio": 0.000902, + "example_values": [ + "yes", + "no" + ] + } + }, + { + "name": "region", + "role": "feature", + "semantic_type": "categorical", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 4, + "unique_ratio": 0.001804, + "example_values": [ + "northwest", + "southwest", + "southeast", + "northeast" + ] + } + }, + { + "name": "charges", + "role": "target", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 1281, + "unique_ratio": 0.577808, + "example_values": [ + "21677.28345", + "15820.699", + "1639.5631", + "2497.0383", + "2897.3235" + ] + } + } + ] +} \ No newline at end of file diff --git a/timecost/m4/bayesnet/bayesnet-m4-20260501_224959/public_gate/public_gate_report.json b/timecost/m4/bayesnet/bayesnet-m4-20260501_224959/public_gate/public_gate_report.json new file mode 100644 index 0000000000000000000000000000000000000000..e7a25408e2574124629ea9437356551e4d6f4790 --- /dev/null +++ b/timecost/m4/bayesnet/bayesnet-m4-20260501_224959/public_gate/public_gate_report.json @@ -0,0 +1,37 @@ +{ + "dataset_id": "m4", + "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": "charges", + "task_type": "regression", + "input_splits": { + "train": "/data/jialinzhang/SynthesizePipeline-server/DatasetNew/m4/m4-train.csv", + "val": "/data/jialinzhang/SynthesizePipeline-server/DatasetNew/m4/m4-val.csv", + "test": "/data/jialinzhang/SynthesizePipeline-server/DatasetNew/m4/m4-test.csv" + } +} \ No newline at end of file diff --git a/timecost/m4/bayesnet/bayesnet-m4-20260501_224959/public_gate/staged_input_manifest.json b/timecost/m4/bayesnet/bayesnet-m4-20260501_224959/public_gate/staged_input_manifest.json new file mode 100644 index 0000000000000000000000000000000000000000..b76841ca1ebb0185e476c2ed8c9b82d633091cad --- /dev/null +++ b/timecost/m4/bayesnet/bayesnet-m4-20260501_224959/public_gate/staged_input_manifest.json @@ -0,0 +1,152 @@ +{ + "dataset_id": "m4", + "target_column": "charges", + "task_type": "regression", + "train_csv": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/m4/bayesnet/bayesnet-m4-20260501_224959/staged/public/train.csv", + "val_csv": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/m4/bayesnet/bayesnet-m4-20260501_224959/staged/public/val.csv", + "test_csv": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/m4/bayesnet/bayesnet-m4-20260501_224959/staged/public/test.csv", + "features_json": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/m4/bayesnet/bayesnet-m4-20260501_224959/staged/public/staged_features.json", + "public_gate_report": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/m4/bayesnet/bayesnet-m4-20260501_224959/public_gate/public_gate_report.json", + "column_schema": [ + { + "name": "age", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 47, + "unique_ratio": 0.0212, + "example_values": [ + "46", + "38", + "19", + "27", + "26" + ] + } + }, + { + "name": "sex", + "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.000902, + "example_values": [ + "female", + "male" + ] + } + }, + { + "name": "bmi", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 538, + "unique_ratio": 0.24267, + "example_values": [ + "23.655", + "19.3", + "30.59", + "32.67", + "29.45" + ] + } + }, + { + "name": "children", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 6, + "unique_ratio": 0.002706, + "example_values": [ + "1", + "0", + "3", + "2", + "5" + ] + } + }, + { + "name": "smoker", + "role": "feature", + "semantic_type": "boolean", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 2, + "unique_ratio": 0.000902, + "example_values": [ + "yes", + "no" + ] + } + }, + { + "name": "region", + "role": "feature", + "semantic_type": "categorical", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 4, + "unique_ratio": 0.001804, + "example_values": [ + "northwest", + "southwest", + "southeast", + "northeast" + ] + } + }, + { + "name": "charges", + "role": "target", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 1281, + "unique_ratio": 0.577808, + "example_values": [ + "21677.28345", + "15820.699", + "1639.5631", + "2497.0383", + "2897.3235" + ] + } + } + ] +} \ No newline at end of file diff --git a/timecost/m4/bayesnet/bayesnet-m4-20260501_224959/runtime_result.json b/timecost/m4/bayesnet/bayesnet-m4-20260501_224959/runtime_result.json new file mode 100644 index 0000000000000000000000000000000000000000..ac44c1ab24318dcbf29281e36b2dfa3b5cac2d65 --- /dev/null +++ b/timecost/m4/bayesnet/bayesnet-m4-20260501_224959/runtime_result.json @@ -0,0 +1,27 @@ +{ + "dataset_id": "m4", + "model": "bayesnet", + "run_id": "bayesnet-m4-20260501_224959", + "public_gate_status": "pass", + "adapter_ready_status": "pass", + "train_status": "success", + "generate_status": "success", + "reason_code": null, + "reason_detail": null, + "artifacts": { + "synthetic_csv": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/m4/bayesnet/bayesnet-m4-20260501_224959/bayesnet-m4-2217-20260501_225008.csv", + "model_path": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/m4/bayesnet/bayesnet-m4-20260501_224959/bayesnet_model.pkl" + }, + "timings": { + "train": { + "started_at": "2026-05-01T22:49:59", + "ended_at": "2026-05-01T22:50:08", + "duration_sec": 8.203 + }, + "generate": { + "started_at": "2026-05-01T22:50:08", + "ended_at": "2026-05-01T22:50:13", + "duration_sec": 5.386 + } + } +} \ No newline at end of file diff --git a/timecost/m4/bayesnet/bayesnet-m4-20260501_224959/staged/bayesnet/adapter_report.json b/timecost/m4/bayesnet/bayesnet-m4-20260501_224959/staged/bayesnet/adapter_report.json new file mode 100644 index 0000000000000000000000000000000000000000..2c2d535c274055b550ca68ab2aeb34f24ef09bc2 --- /dev/null +++ b/timecost/m4/bayesnet/bayesnet-m4-20260501_224959/staged/bayesnet/adapter_report.json @@ -0,0 +1,7 @@ +{ + "adapter_ready_status": "pass", + "adapter_fail_reason_code": null, + "adapter_fail_detail": null, + "adapter_transforms_applied": [], + "model_input_manifest": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/m4/bayesnet/bayesnet-m4-20260501_224959/staged/bayesnet/model_input_manifest.json" +} \ No newline at end of file diff --git a/timecost/m4/bayesnet/bayesnet-m4-20260501_224959/staged/bayesnet/adapter_transforms_applied.json b/timecost/m4/bayesnet/bayesnet-m4-20260501_224959/staged/bayesnet/adapter_transforms_applied.json new file mode 100644 index 0000000000000000000000000000000000000000..0637a088a01e8ddab3bf3fa98dbe804cbde1a0dc --- /dev/null +++ b/timecost/m4/bayesnet/bayesnet-m4-20260501_224959/staged/bayesnet/adapter_transforms_applied.json @@ -0,0 +1 @@ +[] \ No newline at end of file diff --git a/timecost/m4/bayesnet/bayesnet-m4-20260501_224959/staged/bayesnet/model_input_manifest.json b/timecost/m4/bayesnet/bayesnet-m4-20260501_224959/staged/bayesnet/model_input_manifest.json new file mode 100644 index 0000000000000000000000000000000000000000..7cc6312e585fd5688202840b93e3a99c875fa2d5 --- /dev/null +++ b/timecost/m4/bayesnet/bayesnet-m4-20260501_224959/staged/bayesnet/model_input_manifest.json @@ -0,0 +1,154 @@ +{ + "dataset_id": "m4", + "model": "bayesnet", + "target_column": "charges", + "task_type": "regression", + "column_schema": [ + { + "name": "age", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 47, + "unique_ratio": 0.0212, + "example_values": [ + "46", + "38", + "19", + "27", + "26" + ] + } + }, + { + "name": "sex", + "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.000902, + "example_values": [ + "female", + "male" + ] + } + }, + { + "name": "bmi", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 538, + "unique_ratio": 0.24267, + "example_values": [ + "23.655", + "19.3", + "30.59", + "32.67", + "29.45" + ] + } + }, + { + "name": "children", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 6, + "unique_ratio": 0.002706, + "example_values": [ + "1", + "0", + "3", + "2", + "5" + ] + } + }, + { + "name": "smoker", + "role": "feature", + "semantic_type": "boolean", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 2, + "unique_ratio": 0.000902, + "example_values": [ + "yes", + "no" + ] + } + }, + { + "name": "region", + "role": "feature", + "semantic_type": "categorical", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 4, + "unique_ratio": 0.001804, + "example_values": [ + "northwest", + "southwest", + "southeast", + "northeast" + ] + } + }, + { + "name": "charges", + "role": "target", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 1281, + "unique_ratio": 0.577808, + "example_values": [ + "21677.28345", + "15820.699", + "1639.5631", + "2497.0383", + "2897.3235" + ] + } + } + ], + "public_manifest": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/m4/bayesnet/bayesnet-m4-20260501_224959/public_gate/staged_input_manifest.json", + "train_csv": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/m4/bayesnet/bayesnet-m4-20260501_224959/staged/public/train.csv", + "val_csv": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/m4/bayesnet/bayesnet-m4-20260501_224959/staged/public/val.csv", + "test_csv": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/m4/bayesnet/bayesnet-m4-20260501_224959/staged/public/test.csv", + "features_json": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/m4/bayesnet/bayesnet-m4-20260501_224959/staged/public/staged_features.json", + "public_gate_report": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/m4/bayesnet/bayesnet-m4-20260501_224959/public_gate/public_gate_report.json" +} \ No newline at end of file diff --git a/timecost/m4/bayesnet/bayesnet-m4-20260501_224959/staged/public/staged_features.json b/timecost/m4/bayesnet/bayesnet-m4-20260501_224959/staged/public/staged_features.json new file mode 100644 index 0000000000000000000000000000000000000000..d6acd098c35111f423f3ffff2cfd1754bc5dfebc --- /dev/null +++ b/timecost/m4/bayesnet/bayesnet-m4-20260501_224959/staged/public/staged_features.json @@ -0,0 +1,37 @@ +[ + { + "feature_name": "age", + "data_type": "continuous", + "is_target": false + }, + { + "feature_name": "sex", + "data_type": "categorical", + "is_target": false + }, + { + "feature_name": "bmi", + "data_type": "continuous", + "is_target": false + }, + { + "feature_name": "children", + "data_type": "continuous", + "is_target": false + }, + { + "feature_name": "smoker", + "data_type": "binary", + "is_target": false + }, + { + "feature_name": "region", + "data_type": "categorical", + "is_target": false + }, + { + "feature_name": "charges", + "data_type": "continuous", + "is_target": true + } +] \ No newline at end of file diff --git a/timecost/m4/bayesnet/bayesnet-m4-20260501_224959/staged/public/test.csv b/timecost/m4/bayesnet/bayesnet-m4-20260501_224959/staged/public/test.csv new file mode 100644 index 0000000000000000000000000000000000000000..c88a2e7cfcd715bb421cb56eb078033da45c4dc8 --- /dev/null +++ b/timecost/m4/bayesnet/bayesnet-m4-20260501_224959/staged/public/test.csv @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:4c541b677fb2d45c5bc79338eeee9fd8c91484b195a0c2c546c2fbabf113b7ea +size 11298 diff --git a/timecost/m4/bayesnet/bayesnet-m4-20260501_224959/staged/public/train.csv b/timecost/m4/bayesnet/bayesnet-m4-20260501_224959/staged/public/train.csv new file mode 100644 index 0000000000000000000000000000000000000000..5a05019d786529e0617291766c4fbe016ca01bf5 --- /dev/null +++ b/timecost/m4/bayesnet/bayesnet-m4-20260501_224959/staged/public/train.csv @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:614ebfac5f41d6f661aff675fa18c0f933a8d9bcc77ea71b7b2360c2f0155837 +size 90069 diff --git a/timecost/m4/bayesnet/bayesnet-m4-20260501_224959/staged/public/val.csv b/timecost/m4/bayesnet/bayesnet-m4-20260501_224959/staged/public/val.csv new file mode 100644 index 0000000000000000000000000000000000000000..d78fe5ad1537c437ba9ac2629f2aa60a6c17e708 --- /dev/null +++ b/timecost/m4/bayesnet/bayesnet-m4-20260501_224959/staged/public/val.csv @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:e55f5edbe7942ff01630de91a9c70dfbc6445eba76c7b970350364546b67c2d7 +size 11218 diff --git a/timecost/m4/bayesnet/bayesnet-m4-20260501_224959/train_20260501_224959.log b/timecost/m4/bayesnet/bayesnet-m4-20260501_224959/train_20260501_224959.log new file mode 100644 index 0000000000000000000000000000000000000000..c5a7791086f44bb7fd3faf021a00160501504c95 --- /dev/null +++ b/timecost/m4/bayesnet/bayesnet-m4-20260501_224959/train_20260501_224959.log @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:9028b3cbf752de48d3e72989c4933fffd2ddbd9d8d9f1aac6de1d571e14847d3 +size 3738 diff --git a/timecost/m4/ctgan/ctgan-m4-20260501_005319/_ctgan_generate.py b/timecost/m4/ctgan/ctgan-m4-20260501_005319/_ctgan_generate.py new file mode 100644 index 0000000000000000000000000000000000000000..67d0dff7e211262c70ea184863e1ec0ff317f87e --- /dev/null +++ b/timecost/m4/ctgan/ctgan-m4-20260501_005319/_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-Benchmark-trainonly-v1/m4/ctgan/ctgan-m4-20260501_005319/models_300epochs/ctgan_300epochs.pt") +total = 2217 +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-Benchmark-trainonly-v1/m4/ctgan/ctgan-m4-20260501_005319/ctgan-m4-2217-20260501_005357.csv", index=False) +print("[CTGAN] Generated", total, "rows in", len(parts), "chunks ->", "/work/output-Benchmark-trainonly-v1/m4/ctgan/ctgan-m4-20260501_005319/ctgan-m4-2217-20260501_005357.csv") \ No newline at end of file diff --git a/timecost/m4/ctgan/ctgan-m4-20260501_005319/ctgan-m4-2217-20260501_005357.csv b/timecost/m4/ctgan/ctgan-m4-20260501_005319/ctgan-m4-2217-20260501_005357.csv new file mode 100644 index 0000000000000000000000000000000000000000..4b7802a17da7367a716b5c90ffd32ccdfd089bf4 --- /dev/null +++ b/timecost/m4/ctgan/ctgan-m4-20260501_005319/ctgan-m4-2217-20260501_005357.csv @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:5c8c7341ffb00ab61712df4a680a498018c4b055e21115e17af39f9f573de3e8 +size 135690 diff --git a/timecost/m4/ctgan/ctgan-m4-20260501_005319/ctgan_metadata.json b/timecost/m4/ctgan/ctgan-m4-20260501_005319/ctgan_metadata.json new file mode 100644 index 0000000000000000000000000000000000000000..d89b1e0b3095638c982d4d3321d21a8bedcd33ae --- /dev/null +++ b/timecost/m4/ctgan/ctgan-m4-20260501_005319/ctgan_metadata.json @@ -0,0 +1,32 @@ +{ + "columns": [ + { + "name": "age", + "type": "continuous" + }, + { + "name": "sex", + "type": "categorical" + }, + { + "name": "bmi", + "type": "continuous" + }, + { + "name": "children", + "type": "continuous" + }, + { + "name": "smoker", + "type": "categorical" + }, + { + "name": "region", + "type": "categorical" + }, + { + "name": "charges", + "type": "continuous" + } + ] +} \ No newline at end of file diff --git a/timecost/m4/ctgan/ctgan-m4-20260501_005319/gen_20260501_005357.log b/timecost/m4/ctgan/ctgan-m4-20260501_005319/gen_20260501_005357.log new file mode 100644 index 0000000000000000000000000000000000000000..611c6f429da6ca41495cb66d06d380630e1655f9 --- /dev/null +++ b/timecost/m4/ctgan/ctgan-m4-20260501_005319/gen_20260501_005357.log @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:7ec8a0834349502d3ac5a92adc918f52c147d215b61a063e2a73d81a537df15f +size 560 diff --git a/timecost/m4/ctgan/ctgan-m4-20260501_005319/input_snapshot.json b/timecost/m4/ctgan/ctgan-m4-20260501_005319/input_snapshot.json new file mode 100644 index 0000000000000000000000000000000000000000..f11278f1ffa8959e7869f70def91d0284f7dd656 --- /dev/null +++ b/timecost/m4/ctgan/ctgan-m4-20260501_005319/input_snapshot.json @@ -0,0 +1,36 @@ +{ + "dataset_id": "m4", + "model": "ctgan", + "inputs": { + "train_csv": { + "path": "/data/jialinzhang/SynthesizePipeline-server/DatasetNew/m4/m4-train.csv", + "exists": true, + "size": 92191, + "sha256": "396b9d409ca21bf4a4cd329bdf5b7796aa0ae6356fa8d89b8eb669b5880b81f1" + }, + "val_csv": { + "path": "/data/jialinzhang/SynthesizePipeline-server/DatasetNew/m4/m4-val.csv", + "exists": true, + "size": 11482, + "sha256": "ee3c247d02f56e1687d03c381e13125d6a3a2a411ac7f202ba8520a4be9f1784" + }, + "test_csv": { + "path": "/data/jialinzhang/SynthesizePipeline-server/DatasetNew/m4/m4-test.csv", + "exists": true, + "size": 11559, + "sha256": "cadb9941124001b8fa7cb1ebae43b70a9ca56294f4df4d3c2f22c164c41757d4" + }, + "profile_json": { + "path": "/data/jialinzhang/SynthesizePipeline-server/DatasetNew/artifacts/data_core/tabular/m4/m4-dataset_profile.json", + "exists": true, + "size": 3336, + "sha256": "83e2764810e4a0e8cdece3a28dbd9134b7c9df6f2e56953e46d024ad2c4e035f" + }, + "contract_json": { + "path": "/data/jialinzhang/SynthesizePipeline-server/DatasetNew/artifacts/data_core/tabular/m4/m4-dataset_contract_v1.json", + "exists": true, + "size": 3810, + "sha256": "c23641b258629a845b164099bd0132886f8f6d0100e990494e0f92540f8987d9" + } + } +} \ No newline at end of file diff --git a/timecost/m4/ctgan/ctgan-m4-20260501_005319/models_300epochs/ctgan_300epochs.pt b/timecost/m4/ctgan/ctgan-m4-20260501_005319/models_300epochs/ctgan_300epochs.pt new file mode 100644 index 0000000000000000000000000000000000000000..9edafc7993600acc052f7948120ce587abf78625 --- /dev/null +++ b/timecost/m4/ctgan/ctgan-m4-20260501_005319/models_300epochs/ctgan_300epochs.pt @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:1a3a7bf168cae7aea5ffe1f2665ab950e673295c028d44f1a8a5dbf0bf894a08 +size 938531 diff --git a/timecost/m4/ctgan/ctgan-m4-20260501_005319/models_300epochs/train_20260501_005319.log b/timecost/m4/ctgan/ctgan-m4-20260501_005319/models_300epochs/train_20260501_005319.log new file mode 100644 index 0000000000000000000000000000000000000000..cb708f2cf9da62e736fd2b4e3f3c0b6eb23cccd8 --- /dev/null +++ b/timecost/m4/ctgan/ctgan-m4-20260501_005319/models_300epochs/train_20260501_005319.log @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:66f22b081707c0d5ff4c2ad6ae85dadb1e184f8787f65058d06222084fa5c73f +size 1836 diff --git a/timecost/m4/ctgan/ctgan-m4-20260501_005319/public_gate/normalized_schema_snapshot.json b/timecost/m4/ctgan/ctgan-m4-20260501_005319/public_gate/normalized_schema_snapshot.json new file mode 100644 index 0000000000000000000000000000000000000000..31ed9818686b11907df75e872e4ffbe010330880 --- /dev/null +++ b/timecost/m4/ctgan/ctgan-m4-20260501_005319/public_gate/normalized_schema_snapshot.json @@ -0,0 +1,147 @@ +{ + "dataset_id": "m4", + "target_column": "charges", + "task_type": "regression", + "columns": [ + { + "name": "age", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 47, + "unique_ratio": 0.0212, + "example_values": [ + "46", + "38", + "19", + "27", + "26" + ] + } + }, + { + "name": "sex", + "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.000902, + "example_values": [ + "female", + "male" + ] + } + }, + { + "name": "bmi", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 538, + "unique_ratio": 0.24267, + "example_values": [ + "23.655", + "19.3", + "30.59", + "32.67", + "29.45" + ] + } + }, + { + "name": "children", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 6, + "unique_ratio": 0.002706, + "example_values": [ + "1", + "0", + "3", + "2", + "5" + ] + } + }, + { + "name": "smoker", + "role": "feature", + "semantic_type": "boolean", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 2, + "unique_ratio": 0.000902, + "example_values": [ + "yes", + "no" + ] + } + }, + { + "name": "region", + "role": "feature", + "semantic_type": "categorical", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 4, + "unique_ratio": 0.001804, + "example_values": [ + "northwest", + "southwest", + "southeast", + "northeast" + ] + } + }, + { + "name": "charges", + "role": "target", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 1281, + "unique_ratio": 0.577808, + "example_values": [ + "21677.28345", + "15820.699", + "1639.5631", + "2497.0383", + "2897.3235" + ] + } + } + ] +} \ No newline at end of file diff --git a/timecost/m4/ctgan/ctgan-m4-20260501_005319/public_gate/public_gate_report.json b/timecost/m4/ctgan/ctgan-m4-20260501_005319/public_gate/public_gate_report.json new file mode 100644 index 0000000000000000000000000000000000000000..e7a25408e2574124629ea9437356551e4d6f4790 --- /dev/null +++ b/timecost/m4/ctgan/ctgan-m4-20260501_005319/public_gate/public_gate_report.json @@ -0,0 +1,37 @@ +{ + "dataset_id": "m4", + "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": "charges", + "task_type": "regression", + "input_splits": { + "train": "/data/jialinzhang/SynthesizePipeline-server/DatasetNew/m4/m4-train.csv", + "val": "/data/jialinzhang/SynthesizePipeline-server/DatasetNew/m4/m4-val.csv", + "test": "/data/jialinzhang/SynthesizePipeline-server/DatasetNew/m4/m4-test.csv" + } +} \ No newline at end of file diff --git a/timecost/m4/ctgan/ctgan-m4-20260501_005319/public_gate/staged_input_manifest.json b/timecost/m4/ctgan/ctgan-m4-20260501_005319/public_gate/staged_input_manifest.json new file mode 100644 index 0000000000000000000000000000000000000000..1239a1d2ea58e088b577c2cafba82b5d9e0479a7 --- /dev/null +++ b/timecost/m4/ctgan/ctgan-m4-20260501_005319/public_gate/staged_input_manifest.json @@ -0,0 +1,152 @@ +{ + "dataset_id": "m4", + "target_column": "charges", + "task_type": "regression", + "train_csv": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/m4/ctgan/ctgan-m4-20260501_005319/staged/public/train.csv", + "val_csv": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/m4/ctgan/ctgan-m4-20260501_005319/staged/public/val.csv", + "test_csv": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/m4/ctgan/ctgan-m4-20260501_005319/staged/public/test.csv", + "features_json": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/m4/ctgan/ctgan-m4-20260501_005319/staged/public/staged_features.json", + "public_gate_report": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/m4/ctgan/ctgan-m4-20260501_005319/public_gate/public_gate_report.json", + "column_schema": [ + { + "name": "age", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 47, + "unique_ratio": 0.0212, + "example_values": [ + "46", + "38", + "19", + "27", + "26" + ] + } + }, + { + "name": "sex", + "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.000902, + "example_values": [ + "female", + "male" + ] + } + }, + { + "name": "bmi", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 538, + "unique_ratio": 0.24267, + "example_values": [ + "23.655", + "19.3", + "30.59", + "32.67", + "29.45" + ] + } + }, + { + "name": "children", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 6, + "unique_ratio": 0.002706, + "example_values": [ + "1", + "0", + "3", + "2", + "5" + ] + } + }, + { + "name": "smoker", + "role": "feature", + "semantic_type": "boolean", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 2, + "unique_ratio": 0.000902, + "example_values": [ + "yes", + "no" + ] + } + }, + { + "name": "region", + "role": "feature", + "semantic_type": "categorical", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 4, + "unique_ratio": 0.001804, + "example_values": [ + "northwest", + "southwest", + "southeast", + "northeast" + ] + } + }, + { + "name": "charges", + "role": "target", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 1281, + "unique_ratio": 0.577808, + "example_values": [ + "21677.28345", + "15820.699", + "1639.5631", + "2497.0383", + "2897.3235" + ] + } + } + ] +} \ No newline at end of file diff --git a/timecost/m4/ctgan/ctgan-m4-20260501_005319/runtime_result.json b/timecost/m4/ctgan/ctgan-m4-20260501_005319/runtime_result.json new file mode 100644 index 0000000000000000000000000000000000000000..917d031934701f59a3b33f4208ce2e60e7f5cf0e --- /dev/null +++ b/timecost/m4/ctgan/ctgan-m4-20260501_005319/runtime_result.json @@ -0,0 +1,27 @@ +{ + "dataset_id": "m4", + "model": "ctgan", + "run_id": "ctgan-m4-20260501_005319", + "public_gate_status": "pass", + "adapter_ready_status": "pass", + "train_status": "success", + "generate_status": "success", + "reason_code": null, + "reason_detail": null, + "artifacts": { + "synthetic_csv": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/m4/ctgan/ctgan-m4-20260501_005319/ctgan-m4-2217-20260501_005357.csv", + "model_path": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/m4/ctgan/ctgan-m4-20260501_005319/models_300epochs/ctgan_300epochs.pt" + }, + "timings": { + "train": { + "started_at": "2026-05-01T00:53:19", + "ended_at": "2026-05-01T00:53:57", + "duration_sec": 37.489 + }, + "generate": { + "started_at": "2026-05-01T00:53:57", + "ended_at": "2026-05-01T00:54:02", + "duration_sec": 5.556 + } + } +} \ No newline at end of file diff --git a/timecost/m4/ctgan/ctgan-m4-20260501_005319/staged/ctgan/adapter_report.json b/timecost/m4/ctgan/ctgan-m4-20260501_005319/staged/ctgan/adapter_report.json new file mode 100644 index 0000000000000000000000000000000000000000..eefb60d78d53a0f76c297170986bd7bc78dfa9e7 --- /dev/null +++ b/timecost/m4/ctgan/ctgan-m4-20260501_005319/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-Benchmark-trainonly-v1/m4/ctgan/ctgan-m4-20260501_005319/staged/ctgan/model_input_manifest.json" +} \ No newline at end of file diff --git a/timecost/m4/ctgan/ctgan-m4-20260501_005319/staged/ctgan/adapter_transforms_applied.json b/timecost/m4/ctgan/ctgan-m4-20260501_005319/staged/ctgan/adapter_transforms_applied.json new file mode 100644 index 0000000000000000000000000000000000000000..0637a088a01e8ddab3bf3fa98dbe804cbde1a0dc --- /dev/null +++ b/timecost/m4/ctgan/ctgan-m4-20260501_005319/staged/ctgan/adapter_transforms_applied.json @@ -0,0 +1 @@ +[] \ No newline at end of file diff --git a/timecost/m4/ctgan/ctgan-m4-20260501_005319/staged/ctgan/model_input_manifest.json b/timecost/m4/ctgan/ctgan-m4-20260501_005319/staged/ctgan/model_input_manifest.json new file mode 100644 index 0000000000000000000000000000000000000000..cf04f5744959454b88b35eb04a56e70d73389a79 --- /dev/null +++ b/timecost/m4/ctgan/ctgan-m4-20260501_005319/staged/ctgan/model_input_manifest.json @@ -0,0 +1,154 @@ +{ + "dataset_id": "m4", + "model": "ctgan", + "target_column": "charges", + "task_type": "regression", + "column_schema": [ + { + "name": "age", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 47, + "unique_ratio": 0.0212, + "example_values": [ + "46", + "38", + "19", + "27", + "26" + ] + } + }, + { + "name": "sex", + "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.000902, + "example_values": [ + "female", + "male" + ] + } + }, + { + "name": "bmi", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 538, + "unique_ratio": 0.24267, + "example_values": [ + "23.655", + "19.3", + "30.59", + "32.67", + "29.45" + ] + } + }, + { + "name": "children", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 6, + "unique_ratio": 0.002706, + "example_values": [ + "1", + "0", + "3", + "2", + "5" + ] + } + }, + { + "name": "smoker", + "role": "feature", + "semantic_type": "boolean", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 2, + "unique_ratio": 0.000902, + "example_values": [ + "yes", + "no" + ] + } + }, + { + "name": "region", + "role": "feature", + "semantic_type": "categorical", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 4, + "unique_ratio": 0.001804, + "example_values": [ + "northwest", + "southwest", + "southeast", + "northeast" + ] + } + }, + { + "name": "charges", + "role": "target", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 1281, + "unique_ratio": 0.577808, + "example_values": [ + "21677.28345", + "15820.699", + "1639.5631", + "2497.0383", + "2897.3235" + ] + } + } + ], + "public_manifest": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/m4/ctgan/ctgan-m4-20260501_005319/public_gate/staged_input_manifest.json", + "train_csv": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/m4/ctgan/ctgan-m4-20260501_005319/staged/public/train.csv", + "val_csv": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/m4/ctgan/ctgan-m4-20260501_005319/staged/public/val.csv", + "test_csv": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/m4/ctgan/ctgan-m4-20260501_005319/staged/public/test.csv", + "features_json": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/m4/ctgan/ctgan-m4-20260501_005319/staged/public/staged_features.json", + "public_gate_report": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/m4/ctgan/ctgan-m4-20260501_005319/public_gate/public_gate_report.json" +} \ No newline at end of file diff --git a/timecost/m4/ctgan/ctgan-m4-20260501_005319/staged/public/staged_features.json b/timecost/m4/ctgan/ctgan-m4-20260501_005319/staged/public/staged_features.json new file mode 100644 index 0000000000000000000000000000000000000000..d6acd098c35111f423f3ffff2cfd1754bc5dfebc --- /dev/null +++ b/timecost/m4/ctgan/ctgan-m4-20260501_005319/staged/public/staged_features.json @@ -0,0 +1,37 @@ +[ + { + "feature_name": "age", + "data_type": "continuous", + "is_target": false + }, + { + "feature_name": "sex", + "data_type": "categorical", + "is_target": false + }, + { + "feature_name": "bmi", + "data_type": "continuous", + "is_target": false + }, + { + "feature_name": "children", + "data_type": "continuous", + "is_target": false + }, + { + "feature_name": "smoker", + "data_type": "binary", + "is_target": false + }, + { + "feature_name": "region", + "data_type": "categorical", + "is_target": false + }, + { + "feature_name": "charges", + "data_type": "continuous", + "is_target": true + } +] \ No newline at end of file diff --git a/timecost/m4/ctgan/ctgan-m4-20260501_005319/staged/public/test.csv b/timecost/m4/ctgan/ctgan-m4-20260501_005319/staged/public/test.csv new file mode 100644 index 0000000000000000000000000000000000000000..c88a2e7cfcd715bb421cb56eb078033da45c4dc8 --- /dev/null +++ b/timecost/m4/ctgan/ctgan-m4-20260501_005319/staged/public/test.csv @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:4c541b677fb2d45c5bc79338eeee9fd8c91484b195a0c2c546c2fbabf113b7ea +size 11298 diff --git a/timecost/m4/ctgan/ctgan-m4-20260501_005319/staged/public/train.csv b/timecost/m4/ctgan/ctgan-m4-20260501_005319/staged/public/train.csv new file mode 100644 index 0000000000000000000000000000000000000000..5a05019d786529e0617291766c4fbe016ca01bf5 --- /dev/null +++ b/timecost/m4/ctgan/ctgan-m4-20260501_005319/staged/public/train.csv @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:614ebfac5f41d6f661aff675fa18c0f933a8d9bcc77ea71b7b2360c2f0155837 +size 90069 diff --git a/timecost/m4/ctgan/ctgan-m4-20260501_005319/staged/public/val.csv b/timecost/m4/ctgan/ctgan-m4-20260501_005319/staged/public/val.csv new file mode 100644 index 0000000000000000000000000000000000000000..d78fe5ad1537c437ba9ac2629f2aa60a6c17e708 --- /dev/null +++ b/timecost/m4/ctgan/ctgan-m4-20260501_005319/staged/public/val.csv @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:e55f5edbe7942ff01630de91a9c70dfbc6445eba76c7b970350364546b67c2d7 +size 11218 diff --git a/timecost/m4/ctgan/ctgan-m4-20260504_162455/_ctgan_generate.py b/timecost/m4/ctgan/ctgan-m4-20260504_162455/_ctgan_generate.py new file mode 100644 index 0000000000000000000000000000000000000000..563f6bea6aa8d6a1a16da4850ba8a90c0cfc96a1 --- /dev/null +++ b/timecost/m4/ctgan/ctgan-m4-20260504_162455/_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-Benchmark-trainonly-v1/m4/ctgan/ctgan-m4-20260504_162455/models_50epochs/ctgan_50epochs.pt") +total = 2217 +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-Benchmark-trainonly-v1/m4/ctgan/ctgan-m4-20260504_162455/ctgan-m4-2217-20260504_162609.csv", index=False) +print("[CTGAN] Generated", total, "rows in", len(parts), "chunks ->", "/work/output-Benchmark-trainonly-v1/m4/ctgan/ctgan-m4-20260504_162455/ctgan-m4-2217-20260504_162609.csv") \ No newline at end of file diff --git a/timecost/m4/ctgan/ctgan-m4-20260504_162455/_ctgan_train.py b/timecost/m4/ctgan/ctgan-m4-20260504_162455/_ctgan_train.py new file mode 100644 index 0000000000000000000000000000000000000000..90d9736982b710db248ddd882246ba9562d061c8 --- /dev/null +++ b/timecost/m4/ctgan/ctgan-m4-20260504_162455/_ctgan_train.py @@ -0,0 +1,17 @@ +import pandas as pd +from ctgan.synthesizers.ctgan import CTGAN + +data = pd.read_csv("/work/output-Benchmark-trainonly-v1/m4/ctgan/ctgan-m4-20260504_162455/staged/public/train.csv") +discrete_columns = ['sex', 'smoker', 'region'] +model = CTGAN( + embedding_dim=8, + generator_dim=(16, 16), + discriminator_dim=(16, 16), + batch_size=32, + pac=1, + epochs=50, + verbose=True, +) +model.fit(data, discrete_columns) +model.save("/work/output-Benchmark-trainonly-v1/m4/ctgan/ctgan-m4-20260504_162455/models_50epochs/ctgan_50epochs.pt") +print("[CTGAN] Saved model ->", "/work/output-Benchmark-trainonly-v1/m4/ctgan/ctgan-m4-20260504_162455/models_50epochs/ctgan_50epochs.pt") \ No newline at end of file diff --git a/timecost/m4/ctgan/ctgan-m4-20260504_162455/ctgan-m4-2217-20260504_162609.csv b/timecost/m4/ctgan/ctgan-m4-20260504_162455/ctgan-m4-2217-20260504_162609.csv new file mode 100644 index 0000000000000000000000000000000000000000..5c047df18e289162d7342334349e940f451dc505 --- /dev/null +++ b/timecost/m4/ctgan/ctgan-m4-20260504_162455/ctgan-m4-2217-20260504_162609.csv @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:9d5b1fd2a8f637e700f3164b1aa7833a9eeba0084237d900006fbf35829a1009 +size 135963 diff --git a/timecost/m4/ctgan/ctgan-m4-20260504_162455/ctgan_metadata.json b/timecost/m4/ctgan/ctgan-m4-20260504_162455/ctgan_metadata.json new file mode 100644 index 0000000000000000000000000000000000000000..d89b1e0b3095638c982d4d3321d21a8bedcd33ae --- /dev/null +++ b/timecost/m4/ctgan/ctgan-m4-20260504_162455/ctgan_metadata.json @@ -0,0 +1,32 @@ +{ + "columns": [ + { + "name": "age", + "type": "continuous" + }, + { + "name": "sex", + "type": "categorical" + }, + { + "name": "bmi", + "type": "continuous" + }, + { + "name": "children", + "type": "continuous" + }, + { + "name": "smoker", + "type": "categorical" + }, + { + "name": "region", + "type": "categorical" + }, + { + "name": "charges", + "type": "continuous" + } + ] +} \ No newline at end of file diff --git a/timecost/m4/ctgan/ctgan-m4-20260504_162455/gen_20260504_162609.log b/timecost/m4/ctgan/ctgan-m4-20260504_162455/gen_20260504_162609.log new file mode 100644 index 0000000000000000000000000000000000000000..4dec0f96e5a80b73bcae9d62fe3758231d7ad60d --- /dev/null +++ b/timecost/m4/ctgan/ctgan-m4-20260504_162455/gen_20260504_162609.log @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:631cad7bb802b05edec1212c5654bc3cf2b87f637cb37bb0269c684a86a0a78b +size 297 diff --git a/timecost/m4/ctgan/ctgan-m4-20260504_162455/input_snapshot.json b/timecost/m4/ctgan/ctgan-m4-20260504_162455/input_snapshot.json new file mode 100644 index 0000000000000000000000000000000000000000..f11278f1ffa8959e7869f70def91d0284f7dd656 --- /dev/null +++ b/timecost/m4/ctgan/ctgan-m4-20260504_162455/input_snapshot.json @@ -0,0 +1,36 @@ +{ + "dataset_id": "m4", + "model": "ctgan", + "inputs": { + "train_csv": { + "path": "/data/jialinzhang/SynthesizePipeline-server/DatasetNew/m4/m4-train.csv", + "exists": true, + "size": 92191, + "sha256": "396b9d409ca21bf4a4cd329bdf5b7796aa0ae6356fa8d89b8eb669b5880b81f1" + }, + "val_csv": { + "path": "/data/jialinzhang/SynthesizePipeline-server/DatasetNew/m4/m4-val.csv", + "exists": true, + "size": 11482, + "sha256": "ee3c247d02f56e1687d03c381e13125d6a3a2a411ac7f202ba8520a4be9f1784" + }, + "test_csv": { + "path": "/data/jialinzhang/SynthesizePipeline-server/DatasetNew/m4/m4-test.csv", + "exists": true, + "size": 11559, + "sha256": "cadb9941124001b8fa7cb1ebae43b70a9ca56294f4df4d3c2f22c164c41757d4" + }, + "profile_json": { + "path": "/data/jialinzhang/SynthesizePipeline-server/DatasetNew/artifacts/data_core/tabular/m4/m4-dataset_profile.json", + "exists": true, + "size": 3336, + "sha256": "83e2764810e4a0e8cdece3a28dbd9134b7c9df6f2e56953e46d024ad2c4e035f" + }, + "contract_json": { + "path": "/data/jialinzhang/SynthesizePipeline-server/DatasetNew/artifacts/data_core/tabular/m4/m4-dataset_contract_v1.json", + "exists": true, + "size": 3810, + "sha256": "c23641b258629a845b164099bd0132886f8f6d0100e990494e0f92540f8987d9" + } + } +} \ No newline at end of file diff --git a/timecost/m4/ctgan/ctgan-m4-20260504_162455/models_50epochs/ctgan_50epochs.pt b/timecost/m4/ctgan/ctgan-m4-20260504_162455/models_50epochs/ctgan_50epochs.pt new file mode 100644 index 0000000000000000000000000000000000000000..74d60aada6757cb50756979c746af4977a01a3d5 --- /dev/null +++ b/timecost/m4/ctgan/ctgan-m4-20260504_162455/models_50epochs/ctgan_50epochs.pt @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:0fcbc1eca52b300da8de0000993e73b4d58d44408c58f5e94824b040a9312f97 +size 280461 diff --git a/timecost/m4/ctgan/ctgan-m4-20260504_162455/models_50epochs/train_20260504_162455.log b/timecost/m4/ctgan/ctgan-m4-20260504_162455/models_50epochs/train_20260504_162455.log new file mode 100644 index 0000000000000000000000000000000000000000..b862c69bf2d88bf63062508f45c2c94c1b1f0a63 --- /dev/null +++ b/timecost/m4/ctgan/ctgan-m4-20260504_162455/models_50epochs/train_20260504_162455.log @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:421ee609e428857108a8ef1840b7d88d9b1a05532c27ba8b20235b9b582126f8 +size 10928 diff --git a/timecost/m4/ctgan/ctgan-m4-20260504_162455/public_gate/normalized_schema_snapshot.json b/timecost/m4/ctgan/ctgan-m4-20260504_162455/public_gate/normalized_schema_snapshot.json new file mode 100644 index 0000000000000000000000000000000000000000..31ed9818686b11907df75e872e4ffbe010330880 --- /dev/null +++ b/timecost/m4/ctgan/ctgan-m4-20260504_162455/public_gate/normalized_schema_snapshot.json @@ -0,0 +1,147 @@ +{ + "dataset_id": "m4", + "target_column": "charges", + "task_type": "regression", + "columns": [ + { + "name": "age", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 47, + "unique_ratio": 0.0212, + "example_values": [ + "46", + "38", + "19", + "27", + "26" + ] + } + }, + { + "name": "sex", + "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.000902, + "example_values": [ + "female", + "male" + ] + } + }, + { + "name": "bmi", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 538, + "unique_ratio": 0.24267, + "example_values": [ + "23.655", + "19.3", + "30.59", + "32.67", + "29.45" + ] + } + }, + { + "name": "children", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 6, + "unique_ratio": 0.002706, + "example_values": [ + "1", + "0", + "3", + "2", + "5" + ] + } + }, + { + "name": "smoker", + "role": "feature", + "semantic_type": "boolean", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 2, + "unique_ratio": 0.000902, + "example_values": [ + "yes", + "no" + ] + } + }, + { + "name": "region", + "role": "feature", + "semantic_type": "categorical", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 4, + "unique_ratio": 0.001804, + "example_values": [ + "northwest", + "southwest", + "southeast", + "northeast" + ] + } + }, + { + "name": "charges", + "role": "target", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 1281, + "unique_ratio": 0.577808, + "example_values": [ + "21677.28345", + "15820.699", + "1639.5631", + "2497.0383", + "2897.3235" + ] + } + } + ] +} \ No newline at end of file diff --git a/timecost/m4/ctgan/ctgan-m4-20260504_162455/public_gate/public_gate_report.json b/timecost/m4/ctgan/ctgan-m4-20260504_162455/public_gate/public_gate_report.json new file mode 100644 index 0000000000000000000000000000000000000000..e7a25408e2574124629ea9437356551e4d6f4790 --- /dev/null +++ b/timecost/m4/ctgan/ctgan-m4-20260504_162455/public_gate/public_gate_report.json @@ -0,0 +1,37 @@ +{ + "dataset_id": "m4", + "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": "charges", + "task_type": "regression", + "input_splits": { + "train": "/data/jialinzhang/SynthesizePipeline-server/DatasetNew/m4/m4-train.csv", + "val": "/data/jialinzhang/SynthesizePipeline-server/DatasetNew/m4/m4-val.csv", + "test": "/data/jialinzhang/SynthesizePipeline-server/DatasetNew/m4/m4-test.csv" + } +} \ No newline at end of file diff --git a/timecost/m4/ctgan/ctgan-m4-20260504_162455/public_gate/staged_input_manifest.json b/timecost/m4/ctgan/ctgan-m4-20260504_162455/public_gate/staged_input_manifest.json new file mode 100644 index 0000000000000000000000000000000000000000..de8fec055242a76a46100b112369488b7a1a3b54 --- /dev/null +++ b/timecost/m4/ctgan/ctgan-m4-20260504_162455/public_gate/staged_input_manifest.json @@ -0,0 +1,152 @@ +{ + "dataset_id": "m4", + "target_column": "charges", + "task_type": "regression", + "train_csv": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/m4/ctgan/ctgan-m4-20260504_162455/staged/public/train.csv", + "val_csv": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/m4/ctgan/ctgan-m4-20260504_162455/staged/public/val.csv", + "test_csv": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/m4/ctgan/ctgan-m4-20260504_162455/staged/public/test.csv", + "features_json": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/m4/ctgan/ctgan-m4-20260504_162455/staged/public/staged_features.json", + "public_gate_report": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/m4/ctgan/ctgan-m4-20260504_162455/public_gate/public_gate_report.json", + "column_schema": [ + { + "name": "age", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 47, + "unique_ratio": 0.0212, + "example_values": [ + "46", + "38", + "19", + "27", + "26" + ] + } + }, + { + "name": "sex", + "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.000902, + "example_values": [ + "female", + "male" + ] + } + }, + { + "name": "bmi", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 538, + "unique_ratio": 0.24267, + "example_values": [ + "23.655", + "19.3", + "30.59", + "32.67", + "29.45" + ] + } + }, + { + "name": "children", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 6, + "unique_ratio": 0.002706, + "example_values": [ + "1", + "0", + "3", + "2", + "5" + ] + } + }, + { + "name": "smoker", + "role": "feature", + "semantic_type": "boolean", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 2, + "unique_ratio": 0.000902, + "example_values": [ + "yes", + "no" + ] + } + }, + { + "name": "region", + "role": "feature", + "semantic_type": "categorical", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 4, + "unique_ratio": 0.001804, + "example_values": [ + "northwest", + "southwest", + "southeast", + "northeast" + ] + } + }, + { + "name": "charges", + "role": "target", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 1281, + "unique_ratio": 0.577808, + "example_values": [ + "21677.28345", + "15820.699", + "1639.5631", + "2497.0383", + "2897.3235" + ] + } + } + ] +} \ No newline at end of file diff --git a/timecost/m4/ctgan/ctgan-m4-20260504_162455/run_config.json b/timecost/m4/ctgan/ctgan-m4-20260504_162455/run_config.json new file mode 100644 index 0000000000000000000000000000000000000000..65b52b73614d057167e888ab36f2fa74e106b161 --- /dev/null +++ b/timecost/m4/ctgan/ctgan-m4-20260504_162455/run_config.json @@ -0,0 +1,46 @@ +{ + "schema_version": 1, + "recorded_at": "2026-05-04T16:24:55", + "dataset_id": "m4", + "model": "ctgan", + "work_dir": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/m4/ctgan/ctgan-m4-20260504_162455", + "dataset_source_requested": "new", + "dataset_source_resolved": "new", + "cli_args": { + "model": "ctgan", + "dataset": "m4", + "dataset_source": "new", + "train": true, + "generate": true, + "num_rows": 0, + "epochs": null, + "output_dir": null, + "model_dir": null, + "work_dir": null, + "resume": false, + "no_stats": false + }, + "resolved": { + "num_rows": 2217, + "model_path": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/m4/ctgan/ctgan-m4-20260504_162455/models_50epochs/ctgan_50epochs.pt", + "output_csv": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/m4/ctgan/ctgan-m4-20260504_162455/ctgan-m4-2217-20260504_162609.csv" + }, + "input_artifacts": { + "public_gate_report": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/m4/ctgan/ctgan-m4-20260504_162455/public_gate/public_gate_report.json", + "public_manifest": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/m4/ctgan/ctgan-m4-20260504_162455/public_gate/staged_input_manifest.json", + "model_manifest": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/m4/ctgan/ctgan-m4-20260504_162455/staged/ctgan/model_input_manifest.json", + "train_csv": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/m4/ctgan/ctgan-m4-20260504_162455/staged/public/train.csv", + "features_json": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/m4/ctgan/ctgan-m4-20260504_162455/staged/public/staged_features.json", + "target_column": "charges", + "task_type": "regression" + }, + "env_overrides": { + "BENCHMARK_CTGAN_GPUS": "device=3", + "CTGAN_BATCH_SIZE": "32", + "CTGAN_DEFAULT_EPOCHS": "50", + "CTGAN_DISCRIMINATOR_DIMS": "16,16", + "CTGAN_EMBEDDING_DIM": "8", + "CTGAN_GENERATOR_DIMS": "16,16", + "CTGAN_PAC": "1" + } +} \ No newline at end of file diff --git a/timecost/m4/ctgan/ctgan-m4-20260504_162455/runtime_result.json b/timecost/m4/ctgan/ctgan-m4-20260504_162455/runtime_result.json new file mode 100644 index 0000000000000000000000000000000000000000..68cb13745d1370732ba3f4f2b3936fde950009e4 --- /dev/null +++ b/timecost/m4/ctgan/ctgan-m4-20260504_162455/runtime_result.json @@ -0,0 +1,27 @@ +{ + "dataset_id": "m4", + "model": "ctgan", + "run_id": "ctgan-m4-20260504_162455", + "public_gate_status": "pass", + "adapter_ready_status": "pass", + "train_status": "success", + "generate_status": "success", + "reason_code": null, + "reason_detail": null, + "artifacts": { + "synthetic_csv": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/m4/ctgan/ctgan-m4-20260504_162455/ctgan-m4-2217-20260504_162609.csv", + "model_path": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/m4/ctgan/ctgan-m4-20260504_162455/models_50epochs/ctgan_50epochs.pt" + }, + "timings": { + "train": { + "started_at": "2026-05-04T16:24:55", + "ended_at": "2026-05-04T16:26:09", + "duration_sec": 74.098 + }, + "generate": { + "started_at": "2026-05-04T16:26:09", + "ended_at": "2026-05-04T16:26:15", + "duration_sec": 5.73 + } + } +} \ No newline at end of file diff --git a/timecost/m4/ctgan/ctgan-m4-20260504_162455/staged/ctgan/adapter_report.json b/timecost/m4/ctgan/ctgan-m4-20260504_162455/staged/ctgan/adapter_report.json new file mode 100644 index 0000000000000000000000000000000000000000..b9d0293168cdd6f75a7982799521ddd525f21883 --- /dev/null +++ b/timecost/m4/ctgan/ctgan-m4-20260504_162455/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-Benchmark-trainonly-v1/m4/ctgan/ctgan-m4-20260504_162455/staged/ctgan/model_input_manifest.json" +} \ No newline at end of file diff --git a/timecost/m4/ctgan/ctgan-m4-20260504_162455/staged/ctgan/adapter_transforms_applied.json b/timecost/m4/ctgan/ctgan-m4-20260504_162455/staged/ctgan/adapter_transforms_applied.json new file mode 100644 index 0000000000000000000000000000000000000000..0637a088a01e8ddab3bf3fa98dbe804cbde1a0dc --- /dev/null +++ b/timecost/m4/ctgan/ctgan-m4-20260504_162455/staged/ctgan/adapter_transforms_applied.json @@ -0,0 +1 @@ +[] \ No newline at end of file diff --git a/timecost/m4/ctgan/ctgan-m4-20260504_162455/staged/ctgan/model_input_manifest.json b/timecost/m4/ctgan/ctgan-m4-20260504_162455/staged/ctgan/model_input_manifest.json new file mode 100644 index 0000000000000000000000000000000000000000..113d24a0e03711e2cee69ee4ebfa63e6f8632a90 --- /dev/null +++ b/timecost/m4/ctgan/ctgan-m4-20260504_162455/staged/ctgan/model_input_manifest.json @@ -0,0 +1,154 @@ +{ + "dataset_id": "m4", + "model": "ctgan", + "target_column": "charges", + "task_type": "regression", + "column_schema": [ + { + "name": "age", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 47, + "unique_ratio": 0.0212, + "example_values": [ + "46", + "38", + "19", + "27", + "26" + ] + } + }, + { + "name": "sex", + "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.000902, + "example_values": [ + "female", + "male" + ] + } + }, + { + "name": "bmi", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 538, + "unique_ratio": 0.24267, + "example_values": [ + "23.655", + "19.3", + "30.59", + "32.67", + "29.45" + ] + } + }, + { + "name": "children", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 6, + "unique_ratio": 0.002706, + "example_values": [ + "1", + "0", + "3", + "2", + "5" + ] + } + }, + { + "name": "smoker", + "role": "feature", + "semantic_type": "boolean", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 2, + "unique_ratio": 0.000902, + "example_values": [ + "yes", + "no" + ] + } + }, + { + "name": "region", + "role": "feature", + "semantic_type": "categorical", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 4, + "unique_ratio": 0.001804, + "example_values": [ + "northwest", + "southwest", + "southeast", + "northeast" + ] + } + }, + { + "name": "charges", + "role": "target", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 1281, + "unique_ratio": 0.577808, + "example_values": [ + "21677.28345", + "15820.699", + "1639.5631", + "2497.0383", + "2897.3235" + ] + } + } + ], + "public_manifest": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/m4/ctgan/ctgan-m4-20260504_162455/public_gate/staged_input_manifest.json", + "train_csv": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/m4/ctgan/ctgan-m4-20260504_162455/staged/public/train.csv", + "val_csv": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/m4/ctgan/ctgan-m4-20260504_162455/staged/public/val.csv", + "test_csv": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/m4/ctgan/ctgan-m4-20260504_162455/staged/public/test.csv", + "features_json": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/m4/ctgan/ctgan-m4-20260504_162455/staged/public/staged_features.json", + "public_gate_report": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/m4/ctgan/ctgan-m4-20260504_162455/public_gate/public_gate_report.json" +} \ No newline at end of file diff --git a/timecost/m4/ctgan/ctgan-m4-20260504_162455/staged/public/staged_features.json b/timecost/m4/ctgan/ctgan-m4-20260504_162455/staged/public/staged_features.json new file mode 100644 index 0000000000000000000000000000000000000000..d6acd098c35111f423f3ffff2cfd1754bc5dfebc --- /dev/null +++ b/timecost/m4/ctgan/ctgan-m4-20260504_162455/staged/public/staged_features.json @@ -0,0 +1,37 @@ +[ + { + "feature_name": "age", + "data_type": "continuous", + "is_target": false + }, + { + "feature_name": "sex", + "data_type": "categorical", + "is_target": false + }, + { + "feature_name": "bmi", + "data_type": "continuous", + "is_target": false + }, + { + "feature_name": "children", + "data_type": "continuous", + "is_target": false + }, + { + "feature_name": "smoker", + "data_type": "binary", + "is_target": false + }, + { + "feature_name": "region", + "data_type": "categorical", + "is_target": false + }, + { + "feature_name": "charges", + "data_type": "continuous", + "is_target": true + } +] \ No newline at end of file diff --git a/timecost/m4/ctgan/ctgan-m4-20260504_162455/staged/public/test.csv b/timecost/m4/ctgan/ctgan-m4-20260504_162455/staged/public/test.csv new file mode 100644 index 0000000000000000000000000000000000000000..c88a2e7cfcd715bb421cb56eb078033da45c4dc8 --- /dev/null +++ b/timecost/m4/ctgan/ctgan-m4-20260504_162455/staged/public/test.csv @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:4c541b677fb2d45c5bc79338eeee9fd8c91484b195a0c2c546c2fbabf113b7ea +size 11298 diff --git a/timecost/m4/ctgan/ctgan-m4-20260504_162455/staged/public/train.csv b/timecost/m4/ctgan/ctgan-m4-20260504_162455/staged/public/train.csv new file mode 100644 index 0000000000000000000000000000000000000000..5a05019d786529e0617291766c4fbe016ca01bf5 --- /dev/null +++ b/timecost/m4/ctgan/ctgan-m4-20260504_162455/staged/public/train.csv @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:614ebfac5f41d6f661aff675fa18c0f933a8d9bcc77ea71b7b2360c2f0155837 +size 90069 diff --git a/timecost/m4/ctgan/ctgan-m4-20260504_162455/staged/public/val.csv b/timecost/m4/ctgan/ctgan-m4-20260504_162455/staged/public/val.csv new file mode 100644 index 0000000000000000000000000000000000000000..d78fe5ad1537c437ba9ac2629f2aa60a6c17e708 --- /dev/null +++ b/timecost/m4/ctgan/ctgan-m4-20260504_162455/staged/public/val.csv @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:e55f5edbe7942ff01630de91a9c70dfbc6445eba76c7b970350364546b67c2d7 +size 11218 diff --git a/timecost/m4/ctgan/ctgan-m4-20260504_162628/_ctgan_generate.py b/timecost/m4/ctgan/ctgan-m4-20260504_162628/_ctgan_generate.py new file mode 100644 index 0000000000000000000000000000000000000000..cdef9a9fbb89b21fb93106f5cba82484dc209f91 --- /dev/null +++ b/timecost/m4/ctgan/ctgan-m4-20260504_162628/_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-Benchmark-trainonly-v1/m4/ctgan/ctgan-m4-20260504_162628/models_100epochs/ctgan_100epochs.pt") +total = 2217 +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-Benchmark-trainonly-v1/m4/ctgan/ctgan-m4-20260504_162628/ctgan-m4-2217-20260504_162744.csv", index=False) +print("[CTGAN] Generated", total, "rows in", len(parts), "chunks ->", "/work/output-Benchmark-trainonly-v1/m4/ctgan/ctgan-m4-20260504_162628/ctgan-m4-2217-20260504_162744.csv") \ No newline at end of file diff --git a/timecost/m4/ctgan/ctgan-m4-20260504_162628/_ctgan_train.py b/timecost/m4/ctgan/ctgan-m4-20260504_162628/_ctgan_train.py new file mode 100644 index 0000000000000000000000000000000000000000..641f6347bdb1791cfb4d69ab521cbb669f678005 --- /dev/null +++ b/timecost/m4/ctgan/ctgan-m4-20260504_162628/_ctgan_train.py @@ -0,0 +1,17 @@ +import pandas as pd +from ctgan.synthesizers.ctgan import CTGAN + +data = pd.read_csv("/work/output-Benchmark-trainonly-v1/m4/ctgan/ctgan-m4-20260504_162628/staged/public/train.csv") +discrete_columns = ['sex', 'smoker', 'region'] +model = CTGAN( + embedding_dim=16, + generator_dim=(32, 32), + discriminator_dim=(32, 32), + batch_size=64, + pac=1, + epochs=100, + verbose=True, +) +model.fit(data, discrete_columns) +model.save("/work/output-Benchmark-trainonly-v1/m4/ctgan/ctgan-m4-20260504_162628/models_100epochs/ctgan_100epochs.pt") +print("[CTGAN] Saved model ->", "/work/output-Benchmark-trainonly-v1/m4/ctgan/ctgan-m4-20260504_162628/models_100epochs/ctgan_100epochs.pt") \ No newline at end of file diff --git a/timecost/m4/ctgan/ctgan-m4-20260504_162628/ctgan-m4-2217-20260504_162744.csv b/timecost/m4/ctgan/ctgan-m4-20260504_162628/ctgan-m4-2217-20260504_162744.csv new file mode 100644 index 0000000000000000000000000000000000000000..324aa30fc8c04f9c70c6622270c46f790870065b --- /dev/null +++ b/timecost/m4/ctgan/ctgan-m4-20260504_162628/ctgan-m4-2217-20260504_162744.csv @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:d4ad246572c9acdde64b136e255d90992eee5bac1408041de15f542602d5f7c5 +size 135924 diff --git a/timecost/m4/ctgan/ctgan-m4-20260504_162628/ctgan_metadata.json b/timecost/m4/ctgan/ctgan-m4-20260504_162628/ctgan_metadata.json new file mode 100644 index 0000000000000000000000000000000000000000..d89b1e0b3095638c982d4d3321d21a8bedcd33ae --- /dev/null +++ b/timecost/m4/ctgan/ctgan-m4-20260504_162628/ctgan_metadata.json @@ -0,0 +1,32 @@ +{ + "columns": [ + { + "name": "age", + "type": "continuous" + }, + { + "name": "sex", + "type": "categorical" + }, + { + "name": "bmi", + "type": "continuous" + }, + { + "name": "children", + "type": "continuous" + }, + { + "name": "smoker", + "type": "categorical" + }, + { + "name": "region", + "type": "categorical" + }, + { + "name": "charges", + "type": "continuous" + } + ] +} \ No newline at end of file diff --git a/timecost/m4/ctgan/ctgan-m4-20260504_162628/gen_20260504_162744.log b/timecost/m4/ctgan/ctgan-m4-20260504_162628/gen_20260504_162744.log new file mode 100644 index 0000000000000000000000000000000000000000..e98d9fa7af6300f34a8e3494acba4027d4a29136 --- /dev/null +++ b/timecost/m4/ctgan/ctgan-m4-20260504_162628/gen_20260504_162744.log @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:c4078474fb8d9cc0dc9820a2d898eb02a6930796acfda171c2dca2cae431ca45 +size 297 diff --git a/timecost/m4/ctgan/ctgan-m4-20260504_162628/input_snapshot.json b/timecost/m4/ctgan/ctgan-m4-20260504_162628/input_snapshot.json new file mode 100644 index 0000000000000000000000000000000000000000..f11278f1ffa8959e7869f70def91d0284f7dd656 --- /dev/null +++ b/timecost/m4/ctgan/ctgan-m4-20260504_162628/input_snapshot.json @@ -0,0 +1,36 @@ +{ + "dataset_id": "m4", + "model": "ctgan", + "inputs": { + "train_csv": { + "path": "/data/jialinzhang/SynthesizePipeline-server/DatasetNew/m4/m4-train.csv", + "exists": true, + "size": 92191, + "sha256": "396b9d409ca21bf4a4cd329bdf5b7796aa0ae6356fa8d89b8eb669b5880b81f1" + }, + "val_csv": { + "path": "/data/jialinzhang/SynthesizePipeline-server/DatasetNew/m4/m4-val.csv", + "exists": true, + "size": 11482, + "sha256": "ee3c247d02f56e1687d03c381e13125d6a3a2a411ac7f202ba8520a4be9f1784" + }, + "test_csv": { + "path": "/data/jialinzhang/SynthesizePipeline-server/DatasetNew/m4/m4-test.csv", + "exists": true, + "size": 11559, + "sha256": "cadb9941124001b8fa7cb1ebae43b70a9ca56294f4df4d3c2f22c164c41757d4" + }, + "profile_json": { + "path": "/data/jialinzhang/SynthesizePipeline-server/DatasetNew/artifacts/data_core/tabular/m4/m4-dataset_profile.json", + "exists": true, + "size": 3336, + "sha256": "83e2764810e4a0e8cdece3a28dbd9134b7c9df6f2e56953e46d024ad2c4e035f" + }, + "contract_json": { + "path": "/data/jialinzhang/SynthesizePipeline-server/DatasetNew/artifacts/data_core/tabular/m4/m4-dataset_contract_v1.json", + "exists": true, + "size": 3810, + "sha256": "c23641b258629a845b164099bd0132886f8f6d0100e990494e0f92540f8987d9" + } + } +} \ No newline at end of file diff --git a/timecost/m4/ctgan/ctgan-m4-20260504_162628/models_100epochs/ctgan_100epochs.pt b/timecost/m4/ctgan/ctgan-m4-20260504_162628/models_100epochs/ctgan_100epochs.pt new file mode 100644 index 0000000000000000000000000000000000000000..c5854a45badcccb4d8052678fe5b87d7fd145019 --- /dev/null +++ b/timecost/m4/ctgan/ctgan-m4-20260504_162628/models_100epochs/ctgan_100epochs.pt @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:29799bc301c47b2edeb651132d03a7091181e08c93c9f9fa3187b2f78aba517c +size 296675 diff --git a/timecost/m4/ctgan/ctgan-m4-20260504_162628/models_100epochs/train_20260504_162628.log b/timecost/m4/ctgan/ctgan-m4-20260504_162628/models_100epochs/train_20260504_162628.log new file mode 100644 index 0000000000000000000000000000000000000000..f77332fe3e25a652b5ed704200376dd7167d6802 --- /dev/null +++ b/timecost/m4/ctgan/ctgan-m4-20260504_162628/models_100epochs/train_20260504_162628.log @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:d8b60ecb9e48817e50d61f794e78bfddf29823d27d102e8ead5ed0b3069ad070 +size 20368 diff --git a/timecost/m4/ctgan/ctgan-m4-20260504_162628/public_gate/normalized_schema_snapshot.json b/timecost/m4/ctgan/ctgan-m4-20260504_162628/public_gate/normalized_schema_snapshot.json new file mode 100644 index 0000000000000000000000000000000000000000..31ed9818686b11907df75e872e4ffbe010330880 --- /dev/null +++ b/timecost/m4/ctgan/ctgan-m4-20260504_162628/public_gate/normalized_schema_snapshot.json @@ -0,0 +1,147 @@ +{ + "dataset_id": "m4", + "target_column": "charges", + "task_type": "regression", + "columns": [ + { + "name": "age", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 47, + "unique_ratio": 0.0212, + "example_values": [ + "46", + "38", + "19", + "27", + "26" + ] + } + }, + { + "name": "sex", + "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.000902, + "example_values": [ + "female", + "male" + ] + } + }, + { + "name": "bmi", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 538, + "unique_ratio": 0.24267, + "example_values": [ + "23.655", + "19.3", + "30.59", + "32.67", + "29.45" + ] + } + }, + { + "name": "children", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 6, + "unique_ratio": 0.002706, + "example_values": [ + "1", + "0", + "3", + "2", + "5" + ] + } + }, + { + "name": "smoker", + "role": "feature", + "semantic_type": "boolean", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 2, + "unique_ratio": 0.000902, + "example_values": [ + "yes", + "no" + ] + } + }, + { + "name": "region", + "role": "feature", + "semantic_type": "categorical", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 4, + "unique_ratio": 0.001804, + "example_values": [ + "northwest", + "southwest", + "southeast", + "northeast" + ] + } + }, + { + "name": "charges", + "role": "target", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 1281, + "unique_ratio": 0.577808, + "example_values": [ + "21677.28345", + "15820.699", + "1639.5631", + "2497.0383", + "2897.3235" + ] + } + } + ] +} \ No newline at end of file diff --git a/timecost/m4/ctgan/ctgan-m4-20260504_162628/public_gate/public_gate_report.json b/timecost/m4/ctgan/ctgan-m4-20260504_162628/public_gate/public_gate_report.json new file mode 100644 index 0000000000000000000000000000000000000000..e7a25408e2574124629ea9437356551e4d6f4790 --- /dev/null +++ b/timecost/m4/ctgan/ctgan-m4-20260504_162628/public_gate/public_gate_report.json @@ -0,0 +1,37 @@ +{ + "dataset_id": "m4", + "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": "charges", + "task_type": "regression", + "input_splits": { + "train": "/data/jialinzhang/SynthesizePipeline-server/DatasetNew/m4/m4-train.csv", + "val": "/data/jialinzhang/SynthesizePipeline-server/DatasetNew/m4/m4-val.csv", + "test": "/data/jialinzhang/SynthesizePipeline-server/DatasetNew/m4/m4-test.csv" + } +} \ No newline at end of file diff --git a/timecost/m4/ctgan/ctgan-m4-20260504_162628/public_gate/staged_input_manifest.json b/timecost/m4/ctgan/ctgan-m4-20260504_162628/public_gate/staged_input_manifest.json new file mode 100644 index 0000000000000000000000000000000000000000..951a91deb548648001acebfdf0cf14ab1aac1da0 --- /dev/null +++ b/timecost/m4/ctgan/ctgan-m4-20260504_162628/public_gate/staged_input_manifest.json @@ -0,0 +1,152 @@ +{ + "dataset_id": "m4", + "target_column": "charges", + "task_type": "regression", + "train_csv": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/m4/ctgan/ctgan-m4-20260504_162628/staged/public/train.csv", + "val_csv": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/m4/ctgan/ctgan-m4-20260504_162628/staged/public/val.csv", + "test_csv": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/m4/ctgan/ctgan-m4-20260504_162628/staged/public/test.csv", + "features_json": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/m4/ctgan/ctgan-m4-20260504_162628/staged/public/staged_features.json", + "public_gate_report": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/m4/ctgan/ctgan-m4-20260504_162628/public_gate/public_gate_report.json", + "column_schema": [ + { + "name": "age", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 47, + "unique_ratio": 0.0212, + "example_values": [ + "46", + "38", + "19", + "27", + "26" + ] + } + }, + { + "name": "sex", + "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.000902, + "example_values": [ + "female", + "male" + ] + } + }, + { + "name": "bmi", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 538, + "unique_ratio": 0.24267, + "example_values": [ + "23.655", + "19.3", + "30.59", + "32.67", + "29.45" + ] + } + }, + { + "name": "children", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 6, + "unique_ratio": 0.002706, + "example_values": [ + "1", + "0", + "3", + "2", + "5" + ] + } + }, + { + "name": "smoker", + "role": "feature", + "semantic_type": "boolean", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 2, + "unique_ratio": 0.000902, + "example_values": [ + "yes", + "no" + ] + } + }, + { + "name": "region", + "role": "feature", + "semantic_type": "categorical", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 4, + "unique_ratio": 0.001804, + "example_values": [ + "northwest", + "southwest", + "southeast", + "northeast" + ] + } + }, + { + "name": "charges", + "role": "target", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 1281, + "unique_ratio": 0.577808, + "example_values": [ + "21677.28345", + "15820.699", + "1639.5631", + "2497.0383", + "2897.3235" + ] + } + } + ] +} \ No newline at end of file diff --git a/timecost/m4/ctgan/ctgan-m4-20260504_162628/run_config.json b/timecost/m4/ctgan/ctgan-m4-20260504_162628/run_config.json new file mode 100644 index 0000000000000000000000000000000000000000..99605f6c543fb6ce9f66a0a604a21f03d390d63f --- /dev/null +++ b/timecost/m4/ctgan/ctgan-m4-20260504_162628/run_config.json @@ -0,0 +1,46 @@ +{ + "schema_version": 1, + "recorded_at": "2026-05-04T16:26:28", + "dataset_id": "m4", + "model": "ctgan", + "work_dir": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/m4/ctgan/ctgan-m4-20260504_162628", + "dataset_source_requested": "new", + "dataset_source_resolved": "new", + "cli_args": { + "model": "ctgan", + "dataset": "m4", + "dataset_source": "new", + "train": true, + "generate": true, + "num_rows": 0, + "epochs": null, + "output_dir": null, + "model_dir": null, + "work_dir": null, + "resume": false, + "no_stats": false + }, + "resolved": { + "num_rows": 2217, + "model_path": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/m4/ctgan/ctgan-m4-20260504_162628/models_100epochs/ctgan_100epochs.pt", + "output_csv": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/m4/ctgan/ctgan-m4-20260504_162628/ctgan-m4-2217-20260504_162744.csv" + }, + "input_artifacts": { + "public_gate_report": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/m4/ctgan/ctgan-m4-20260504_162628/public_gate/public_gate_report.json", + "public_manifest": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/m4/ctgan/ctgan-m4-20260504_162628/public_gate/staged_input_manifest.json", + "model_manifest": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/m4/ctgan/ctgan-m4-20260504_162628/staged/ctgan/model_input_manifest.json", + "train_csv": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/m4/ctgan/ctgan-m4-20260504_162628/staged/public/train.csv", + "features_json": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/m4/ctgan/ctgan-m4-20260504_162628/staged/public/staged_features.json", + "target_column": "charges", + "task_type": "regression" + }, + "env_overrides": { + "BENCHMARK_CTGAN_GPUS": "device=3", + "CTGAN_BATCH_SIZE": "64", + "CTGAN_DEFAULT_EPOCHS": "100", + "CTGAN_DISCRIMINATOR_DIMS": "32,32", + "CTGAN_EMBEDDING_DIM": "16", + "CTGAN_GENERATOR_DIMS": "32,32", + "CTGAN_PAC": "1" + } +} \ No newline at end of file diff --git a/timecost/m4/ctgan/ctgan-m4-20260504_162628/runtime_result.json b/timecost/m4/ctgan/ctgan-m4-20260504_162628/runtime_result.json new file mode 100644 index 0000000000000000000000000000000000000000..b2c7143635c4f190a941973d83a91fa0e27ac498 --- /dev/null +++ b/timecost/m4/ctgan/ctgan-m4-20260504_162628/runtime_result.json @@ -0,0 +1,27 @@ +{ + "dataset_id": "m4", + "model": "ctgan", + "run_id": "ctgan-m4-20260504_162628", + "public_gate_status": "pass", + "adapter_ready_status": "pass", + "train_status": "success", + "generate_status": "success", + "reason_code": null, + "reason_detail": null, + "artifacts": { + "synthetic_csv": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/m4/ctgan/ctgan-m4-20260504_162628/ctgan-m4-2217-20260504_162744.csv", + "model_path": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/m4/ctgan/ctgan-m4-20260504_162628/models_100epochs/ctgan_100epochs.pt" + }, + "timings": { + "train": { + "started_at": "2026-05-04T16:26:28", + "ended_at": "2026-05-04T16:27:44", + "duration_sec": 76.234 + }, + "generate": { + "started_at": "2026-05-04T16:27:44", + "ended_at": "2026-05-04T16:27:50", + "duration_sec": 5.742 + } + } +} \ No newline at end of file diff --git a/timecost/m4/ctgan/ctgan-m4-20260504_162628/staged/ctgan/adapter_report.json b/timecost/m4/ctgan/ctgan-m4-20260504_162628/staged/ctgan/adapter_report.json new file mode 100644 index 0000000000000000000000000000000000000000..9d5f3fbb9ed2a280ba0125577a7ef0295565b112 --- /dev/null +++ b/timecost/m4/ctgan/ctgan-m4-20260504_162628/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-Benchmark-trainonly-v1/m4/ctgan/ctgan-m4-20260504_162628/staged/ctgan/model_input_manifest.json" +} \ No newline at end of file diff --git a/timecost/m4/ctgan/ctgan-m4-20260504_162628/staged/ctgan/adapter_transforms_applied.json b/timecost/m4/ctgan/ctgan-m4-20260504_162628/staged/ctgan/adapter_transforms_applied.json new file mode 100644 index 0000000000000000000000000000000000000000..0637a088a01e8ddab3bf3fa98dbe804cbde1a0dc --- /dev/null +++ b/timecost/m4/ctgan/ctgan-m4-20260504_162628/staged/ctgan/adapter_transforms_applied.json @@ -0,0 +1 @@ +[] \ No newline at end of file diff --git a/timecost/m4/ctgan/ctgan-m4-20260504_162628/staged/ctgan/model_input_manifest.json b/timecost/m4/ctgan/ctgan-m4-20260504_162628/staged/ctgan/model_input_manifest.json new file mode 100644 index 0000000000000000000000000000000000000000..643730be588f337790c3330908ab3b54be6a6105 --- /dev/null +++ b/timecost/m4/ctgan/ctgan-m4-20260504_162628/staged/ctgan/model_input_manifest.json @@ -0,0 +1,154 @@ +{ + "dataset_id": "m4", + "model": "ctgan", + "target_column": "charges", + "task_type": "regression", + "column_schema": [ + { + "name": "age", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 47, + "unique_ratio": 0.0212, + "example_values": [ + "46", + "38", + "19", + "27", + "26" + ] + } + }, + { + "name": "sex", + "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.000902, + "example_values": [ + "female", + "male" + ] + } + }, + { + "name": "bmi", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 538, + "unique_ratio": 0.24267, + "example_values": [ + "23.655", + "19.3", + "30.59", + "32.67", + "29.45" + ] + } + }, + { + "name": "children", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 6, + "unique_ratio": 0.002706, + "example_values": [ + "1", + "0", + "3", + "2", + "5" + ] + } + }, + { + "name": "smoker", + "role": "feature", + "semantic_type": "boolean", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 2, + "unique_ratio": 0.000902, + "example_values": [ + "yes", + "no" + ] + } + }, + { + "name": "region", + "role": "feature", + "semantic_type": "categorical", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 4, + "unique_ratio": 0.001804, + "example_values": [ + "northwest", + "southwest", + "southeast", + "northeast" + ] + } + }, + { + "name": "charges", + "role": "target", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 1281, + "unique_ratio": 0.577808, + "example_values": [ + "21677.28345", + "15820.699", + "1639.5631", + "2497.0383", + "2897.3235" + ] + } + } + ], + "public_manifest": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/m4/ctgan/ctgan-m4-20260504_162628/public_gate/staged_input_manifest.json", + "train_csv": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/m4/ctgan/ctgan-m4-20260504_162628/staged/public/train.csv", + "val_csv": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/m4/ctgan/ctgan-m4-20260504_162628/staged/public/val.csv", + "test_csv": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/m4/ctgan/ctgan-m4-20260504_162628/staged/public/test.csv", + "features_json": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/m4/ctgan/ctgan-m4-20260504_162628/staged/public/staged_features.json", + "public_gate_report": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/m4/ctgan/ctgan-m4-20260504_162628/public_gate/public_gate_report.json" +} \ No newline at end of file diff --git a/timecost/m4/ctgan/ctgan-m4-20260504_162628/staged/public/staged_features.json b/timecost/m4/ctgan/ctgan-m4-20260504_162628/staged/public/staged_features.json new file mode 100644 index 0000000000000000000000000000000000000000..d6acd098c35111f423f3ffff2cfd1754bc5dfebc --- /dev/null +++ b/timecost/m4/ctgan/ctgan-m4-20260504_162628/staged/public/staged_features.json @@ -0,0 +1,37 @@ +[ + { + "feature_name": "age", + "data_type": "continuous", + "is_target": false + }, + { + "feature_name": "sex", + "data_type": "categorical", + "is_target": false + }, + { + "feature_name": "bmi", + "data_type": "continuous", + "is_target": false + }, + { + "feature_name": "children", + "data_type": "continuous", + "is_target": false + }, + { + "feature_name": "smoker", + "data_type": "binary", + "is_target": false + }, + { + "feature_name": "region", + "data_type": "categorical", + "is_target": false + }, + { + "feature_name": "charges", + "data_type": "continuous", + "is_target": true + } +] \ No newline at end of file diff --git a/timecost/m4/ctgan/ctgan-m4-20260504_162628/staged/public/test.csv b/timecost/m4/ctgan/ctgan-m4-20260504_162628/staged/public/test.csv new file mode 100644 index 0000000000000000000000000000000000000000..c88a2e7cfcd715bb421cb56eb078033da45c4dc8 --- /dev/null +++ b/timecost/m4/ctgan/ctgan-m4-20260504_162628/staged/public/test.csv @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:4c541b677fb2d45c5bc79338eeee9fd8c91484b195a0c2c546c2fbabf113b7ea +size 11298 diff --git a/timecost/m4/ctgan/ctgan-m4-20260504_162628/staged/public/train.csv b/timecost/m4/ctgan/ctgan-m4-20260504_162628/staged/public/train.csv new file mode 100644 index 0000000000000000000000000000000000000000..5a05019d786529e0617291766c4fbe016ca01bf5 --- /dev/null +++ b/timecost/m4/ctgan/ctgan-m4-20260504_162628/staged/public/train.csv @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:614ebfac5f41d6f661aff675fa18c0f933a8d9bcc77ea71b7b2360c2f0155837 +size 90069 diff --git a/timecost/m4/ctgan/ctgan-m4-20260504_162628/staged/public/val.csv b/timecost/m4/ctgan/ctgan-m4-20260504_162628/staged/public/val.csv new file mode 100644 index 0000000000000000000000000000000000000000..d78fe5ad1537c437ba9ac2629f2aa60a6c17e708 --- /dev/null +++ b/timecost/m4/ctgan/ctgan-m4-20260504_162628/staged/public/val.csv @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:e55f5edbe7942ff01630de91a9c70dfbc6445eba76c7b970350364546b67c2d7 +size 11218 diff --git a/timecost/m4/ctgan/ctgan-m4-20260504_162802/_ctgan_generate.py b/timecost/m4/ctgan/ctgan-m4-20260504_162802/_ctgan_generate.py new file mode 100644 index 0000000000000000000000000000000000000000..56154cfced3a7c24b394769111b46be23741c05f --- /dev/null +++ b/timecost/m4/ctgan/ctgan-m4-20260504_162802/_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-Benchmark-trainonly-v1/m4/ctgan/ctgan-m4-20260504_162802/models_150epochs/ctgan_150epochs.pt") +total = 2217 +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-Benchmark-trainonly-v1/m4/ctgan/ctgan-m4-20260504_162802/ctgan-m4-2217-20260504_162901.csv", index=False) +print("[CTGAN] Generated", total, "rows in", len(parts), "chunks ->", "/work/output-Benchmark-trainonly-v1/m4/ctgan/ctgan-m4-20260504_162802/ctgan-m4-2217-20260504_162901.csv") \ No newline at end of file diff --git a/timecost/m4/ctgan/ctgan-m4-20260504_162802/_ctgan_train.py b/timecost/m4/ctgan/ctgan-m4-20260504_162802/_ctgan_train.py new file mode 100644 index 0000000000000000000000000000000000000000..b461b498a3b3fe0aa2e514b9cbe2736069c01a87 --- /dev/null +++ b/timecost/m4/ctgan/ctgan-m4-20260504_162802/_ctgan_train.py @@ -0,0 +1,17 @@ +import pandas as pd +from ctgan.synthesizers.ctgan import CTGAN + +data = pd.read_csv("/work/output-Benchmark-trainonly-v1/m4/ctgan/ctgan-m4-20260504_162802/staged/public/train.csv") +discrete_columns = ['sex', 'smoker', 'region'] +model = CTGAN( + embedding_dim=32, + generator_dim=(64, 64), + discriminator_dim=(64, 64), + batch_size=128, + pac=1, + epochs=150, + verbose=True, +) +model.fit(data, discrete_columns) +model.save("/work/output-Benchmark-trainonly-v1/m4/ctgan/ctgan-m4-20260504_162802/models_150epochs/ctgan_150epochs.pt") +print("[CTGAN] Saved model ->", "/work/output-Benchmark-trainonly-v1/m4/ctgan/ctgan-m4-20260504_162802/models_150epochs/ctgan_150epochs.pt") \ No newline at end of file diff --git a/timecost/m4/ctgan/ctgan-m4-20260504_162802/ctgan-m4-2217-20260504_162901.csv b/timecost/m4/ctgan/ctgan-m4-20260504_162802/ctgan-m4-2217-20260504_162901.csv new file mode 100644 index 0000000000000000000000000000000000000000..50880bc8444a2e81313982a10d35af8dd5ecc7c4 --- /dev/null +++ b/timecost/m4/ctgan/ctgan-m4-20260504_162802/ctgan-m4-2217-20260504_162901.csv @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:384120f54add6d314fafdc5938da22645316ce9201f4847812c063015d105e86 +size 135501 diff --git a/timecost/m4/ctgan/ctgan-m4-20260504_162802/ctgan_metadata.json b/timecost/m4/ctgan/ctgan-m4-20260504_162802/ctgan_metadata.json new file mode 100644 index 0000000000000000000000000000000000000000..d89b1e0b3095638c982d4d3321d21a8bedcd33ae --- /dev/null +++ b/timecost/m4/ctgan/ctgan-m4-20260504_162802/ctgan_metadata.json @@ -0,0 +1,32 @@ +{ + "columns": [ + { + "name": "age", + "type": "continuous" + }, + { + "name": "sex", + "type": "categorical" + }, + { + "name": "bmi", + "type": "continuous" + }, + { + "name": "children", + "type": "continuous" + }, + { + "name": "smoker", + "type": "categorical" + }, + { + "name": "region", + "type": "categorical" + }, + { + "name": "charges", + "type": "continuous" + } + ] +} \ No newline at end of file diff --git a/timecost/m4/ctgan/ctgan-m4-20260504_162802/gen_20260504_162901.log b/timecost/m4/ctgan/ctgan-m4-20260504_162802/gen_20260504_162901.log new file mode 100644 index 0000000000000000000000000000000000000000..2c8740823b955b36adbc1e5f820b0819bea3b9bf --- /dev/null +++ b/timecost/m4/ctgan/ctgan-m4-20260504_162802/gen_20260504_162901.log @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:53c84f13415a31957dfe62320cf0a57fc913c8b4622039b492c928ea4ee09517 +size 297 diff --git a/timecost/m4/ctgan/ctgan-m4-20260504_162802/input_snapshot.json b/timecost/m4/ctgan/ctgan-m4-20260504_162802/input_snapshot.json new file mode 100644 index 0000000000000000000000000000000000000000..f11278f1ffa8959e7869f70def91d0284f7dd656 --- /dev/null +++ b/timecost/m4/ctgan/ctgan-m4-20260504_162802/input_snapshot.json @@ -0,0 +1,36 @@ +{ + "dataset_id": "m4", + "model": "ctgan", + "inputs": { + "train_csv": { + "path": "/data/jialinzhang/SynthesizePipeline-server/DatasetNew/m4/m4-train.csv", + "exists": true, + "size": 92191, + "sha256": "396b9d409ca21bf4a4cd329bdf5b7796aa0ae6356fa8d89b8eb669b5880b81f1" + }, + "val_csv": { + "path": "/data/jialinzhang/SynthesizePipeline-server/DatasetNew/m4/m4-val.csv", + "exists": true, + "size": 11482, + "sha256": "ee3c247d02f56e1687d03c381e13125d6a3a2a411ac7f202ba8520a4be9f1784" + }, + "test_csv": { + "path": "/data/jialinzhang/SynthesizePipeline-server/DatasetNew/m4/m4-test.csv", + "exists": true, + "size": 11559, + "sha256": "cadb9941124001b8fa7cb1ebae43b70a9ca56294f4df4d3c2f22c164c41757d4" + }, + "profile_json": { + "path": "/data/jialinzhang/SynthesizePipeline-server/DatasetNew/artifacts/data_core/tabular/m4/m4-dataset_profile.json", + "exists": true, + "size": 3336, + "sha256": "83e2764810e4a0e8cdece3a28dbd9134b7c9df6f2e56953e46d024ad2c4e035f" + }, + "contract_json": { + "path": "/data/jialinzhang/SynthesizePipeline-server/DatasetNew/artifacts/data_core/tabular/m4/m4-dataset_contract_v1.json", + "exists": true, + "size": 3810, + "sha256": "c23641b258629a845b164099bd0132886f8f6d0100e990494e0f92540f8987d9" + } + } +} \ No newline at end of file diff --git a/timecost/m4/ctgan/ctgan-m4-20260504_162802/models_150epochs/ctgan_150epochs.pt b/timecost/m4/ctgan/ctgan-m4-20260504_162802/models_150epochs/ctgan_150epochs.pt new file mode 100644 index 0000000000000000000000000000000000000000..217f090ca1b40d37dd79db4d92718f4b8ade52d1 --- /dev/null +++ b/timecost/m4/ctgan/ctgan-m4-20260504_162802/models_150epochs/ctgan_150epochs.pt @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:a5f0ddb51de8e66d1bb73ba247bb8d3781b7eb35a4fbd45c3e76624bbf2adb18 +size 339811 diff --git a/timecost/m4/ctgan/ctgan-m4-20260504_162802/models_150epochs/train_20260504_162802.log b/timecost/m4/ctgan/ctgan-m4-20260504_162802/models_150epochs/train_20260504_162802.log new file mode 100644 index 0000000000000000000000000000000000000000..c61563e139d4cee1fd2b83fbc0d7e3c8fdf9d1a4 --- /dev/null +++ b/timecost/m4/ctgan/ctgan-m4-20260504_162802/models_150epochs/train_20260504_162802.log @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:621ab279edd3d52657cce8c48d67b29b97b292b746ad59317fcc87329dbf9f98 +size 29629 diff --git a/timecost/m4/ctgan/ctgan-m4-20260504_162802/public_gate/normalized_schema_snapshot.json b/timecost/m4/ctgan/ctgan-m4-20260504_162802/public_gate/normalized_schema_snapshot.json new file mode 100644 index 0000000000000000000000000000000000000000..31ed9818686b11907df75e872e4ffbe010330880 --- /dev/null +++ b/timecost/m4/ctgan/ctgan-m4-20260504_162802/public_gate/normalized_schema_snapshot.json @@ -0,0 +1,147 @@ +{ + "dataset_id": "m4", + "target_column": "charges", + "task_type": "regression", + "columns": [ + { + "name": "age", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 47, + "unique_ratio": 0.0212, + "example_values": [ + "46", + "38", + "19", + "27", + "26" + ] + } + }, + { + "name": "sex", + "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.000902, + "example_values": [ + "female", + "male" + ] + } + }, + { + "name": "bmi", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 538, + "unique_ratio": 0.24267, + "example_values": [ + "23.655", + "19.3", + "30.59", + "32.67", + "29.45" + ] + } + }, + { + "name": "children", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 6, + "unique_ratio": 0.002706, + "example_values": [ + "1", + "0", + "3", + "2", + "5" + ] + } + }, + { + "name": "smoker", + "role": "feature", + "semantic_type": "boolean", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 2, + "unique_ratio": 0.000902, + "example_values": [ + "yes", + "no" + ] + } + }, + { + "name": "region", + "role": "feature", + "semantic_type": "categorical", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 4, + "unique_ratio": 0.001804, + "example_values": [ + "northwest", + "southwest", + "southeast", + "northeast" + ] + } + }, + { + "name": "charges", + "role": "target", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 1281, + "unique_ratio": 0.577808, + "example_values": [ + "21677.28345", + "15820.699", + "1639.5631", + "2497.0383", + "2897.3235" + ] + } + } + ] +} \ No newline at end of file diff --git a/timecost/m4/ctgan/ctgan-m4-20260504_162802/public_gate/public_gate_report.json b/timecost/m4/ctgan/ctgan-m4-20260504_162802/public_gate/public_gate_report.json new file mode 100644 index 0000000000000000000000000000000000000000..e7a25408e2574124629ea9437356551e4d6f4790 --- /dev/null +++ b/timecost/m4/ctgan/ctgan-m4-20260504_162802/public_gate/public_gate_report.json @@ -0,0 +1,37 @@ +{ + "dataset_id": "m4", + "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": "charges", + "task_type": "regression", + "input_splits": { + "train": "/data/jialinzhang/SynthesizePipeline-server/DatasetNew/m4/m4-train.csv", + "val": "/data/jialinzhang/SynthesizePipeline-server/DatasetNew/m4/m4-val.csv", + "test": "/data/jialinzhang/SynthesizePipeline-server/DatasetNew/m4/m4-test.csv" + } +} \ No newline at end of file diff --git a/timecost/m4/ctgan/ctgan-m4-20260504_162802/public_gate/staged_input_manifest.json b/timecost/m4/ctgan/ctgan-m4-20260504_162802/public_gate/staged_input_manifest.json new file mode 100644 index 0000000000000000000000000000000000000000..a7acbe7288ea212067cd072ed988c4511e9ae1c5 --- /dev/null +++ b/timecost/m4/ctgan/ctgan-m4-20260504_162802/public_gate/staged_input_manifest.json @@ -0,0 +1,152 @@ +{ + "dataset_id": "m4", + "target_column": "charges", + "task_type": "regression", + "train_csv": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/m4/ctgan/ctgan-m4-20260504_162802/staged/public/train.csv", + "val_csv": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/m4/ctgan/ctgan-m4-20260504_162802/staged/public/val.csv", + "test_csv": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/m4/ctgan/ctgan-m4-20260504_162802/staged/public/test.csv", + "features_json": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/m4/ctgan/ctgan-m4-20260504_162802/staged/public/staged_features.json", + "public_gate_report": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/m4/ctgan/ctgan-m4-20260504_162802/public_gate/public_gate_report.json", + "column_schema": [ + { + "name": "age", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 47, + "unique_ratio": 0.0212, + "example_values": [ + "46", + "38", + "19", + "27", + "26" + ] + } + }, + { + "name": "sex", + "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.000902, + "example_values": [ + "female", + "male" + ] + } + }, + { + "name": "bmi", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 538, + "unique_ratio": 0.24267, + "example_values": [ + "23.655", + "19.3", + "30.59", + "32.67", + "29.45" + ] + } + }, + { + "name": "children", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 6, + "unique_ratio": 0.002706, + "example_values": [ + "1", + "0", + "3", + "2", + "5" + ] + } + }, + { + "name": "smoker", + "role": "feature", + "semantic_type": "boolean", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 2, + "unique_ratio": 0.000902, + "example_values": [ + "yes", + "no" + ] + } + }, + { + "name": "region", + "role": "feature", + "semantic_type": "categorical", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 4, + "unique_ratio": 0.001804, + "example_values": [ + "northwest", + "southwest", + "southeast", + "northeast" + ] + } + }, + { + "name": "charges", + "role": "target", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 1281, + "unique_ratio": 0.577808, + "example_values": [ + "21677.28345", + "15820.699", + "1639.5631", + "2497.0383", + "2897.3235" + ] + } + } + ] +} \ No newline at end of file diff --git a/timecost/m4/ctgan/ctgan-m4-20260504_162802/run_config.json b/timecost/m4/ctgan/ctgan-m4-20260504_162802/run_config.json new file mode 100644 index 0000000000000000000000000000000000000000..7199dfd8d3dc5af78632834ddd98a1a2b0af2579 --- /dev/null +++ b/timecost/m4/ctgan/ctgan-m4-20260504_162802/run_config.json @@ -0,0 +1,46 @@ +{ + "schema_version": 1, + "recorded_at": "2026-05-04T16:28:02", + "dataset_id": "m4", + "model": "ctgan", + "work_dir": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/m4/ctgan/ctgan-m4-20260504_162802", + "dataset_source_requested": "new", + "dataset_source_resolved": "new", + "cli_args": { + "model": "ctgan", + "dataset": "m4", + "dataset_source": "new", + "train": true, + "generate": true, + "num_rows": 0, + "epochs": null, + "output_dir": null, + "model_dir": null, + "work_dir": null, + "resume": false, + "no_stats": false + }, + "resolved": { + "num_rows": 2217, + "model_path": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/m4/ctgan/ctgan-m4-20260504_162802/models_150epochs/ctgan_150epochs.pt", + "output_csv": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/m4/ctgan/ctgan-m4-20260504_162802/ctgan-m4-2217-20260504_162901.csv" + }, + "input_artifacts": { + "public_gate_report": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/m4/ctgan/ctgan-m4-20260504_162802/public_gate/public_gate_report.json", + "public_manifest": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/m4/ctgan/ctgan-m4-20260504_162802/public_gate/staged_input_manifest.json", + "model_manifest": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/m4/ctgan/ctgan-m4-20260504_162802/staged/ctgan/model_input_manifest.json", + "train_csv": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/m4/ctgan/ctgan-m4-20260504_162802/staged/public/train.csv", + "features_json": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/m4/ctgan/ctgan-m4-20260504_162802/staged/public/staged_features.json", + "target_column": "charges", + "task_type": "regression" + }, + "env_overrides": { + "BENCHMARK_CTGAN_GPUS": "device=3", + "CTGAN_BATCH_SIZE": "128", + "CTGAN_DEFAULT_EPOCHS": "150", + "CTGAN_DISCRIMINATOR_DIMS": "64,64", + "CTGAN_EMBEDDING_DIM": "32", + "CTGAN_GENERATOR_DIMS": "64,64", + "CTGAN_PAC": "1" + } +} \ No newline at end of file diff --git a/timecost/m4/ctgan/ctgan-m4-20260504_162802/runtime_result.json b/timecost/m4/ctgan/ctgan-m4-20260504_162802/runtime_result.json new file mode 100644 index 0000000000000000000000000000000000000000..1d742290655adc88c195d0a4d1430817f337102b --- /dev/null +++ b/timecost/m4/ctgan/ctgan-m4-20260504_162802/runtime_result.json @@ -0,0 +1,27 @@ +{ + "dataset_id": "m4", + "model": "ctgan", + "run_id": "ctgan-m4-20260504_162802", + "public_gate_status": "pass", + "adapter_ready_status": "pass", + "train_status": "success", + "generate_status": "success", + "reason_code": null, + "reason_detail": null, + "artifacts": { + "synthetic_csv": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/m4/ctgan/ctgan-m4-20260504_162802/ctgan-m4-2217-20260504_162901.csv", + "model_path": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/m4/ctgan/ctgan-m4-20260504_162802/models_150epochs/ctgan_150epochs.pt" + }, + "timings": { + "train": { + "started_at": "2026-05-04T16:28:02", + "ended_at": "2026-05-04T16:29:01", + "duration_sec": 58.433 + }, + "generate": { + "started_at": "2026-05-04T16:29:01", + "ended_at": "2026-05-04T16:29:07", + "duration_sec": 6.047 + } + } +} \ No newline at end of file diff --git a/timecost/m4/ctgan/ctgan-m4-20260504_162802/staged/ctgan/adapter_report.json b/timecost/m4/ctgan/ctgan-m4-20260504_162802/staged/ctgan/adapter_report.json new file mode 100644 index 0000000000000000000000000000000000000000..c3029518606f6993d8f6e8c961a0afd76cf5989b --- /dev/null +++ b/timecost/m4/ctgan/ctgan-m4-20260504_162802/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-Benchmark-trainonly-v1/m4/ctgan/ctgan-m4-20260504_162802/staged/ctgan/model_input_manifest.json" +} \ No newline at end of file diff --git a/timecost/m4/ctgan/ctgan-m4-20260504_162802/staged/ctgan/adapter_transforms_applied.json b/timecost/m4/ctgan/ctgan-m4-20260504_162802/staged/ctgan/adapter_transforms_applied.json new file mode 100644 index 0000000000000000000000000000000000000000..0637a088a01e8ddab3bf3fa98dbe804cbde1a0dc --- /dev/null +++ b/timecost/m4/ctgan/ctgan-m4-20260504_162802/staged/ctgan/adapter_transforms_applied.json @@ -0,0 +1 @@ +[] \ No newline at end of file diff --git a/timecost/m4/ctgan/ctgan-m4-20260504_162802/staged/ctgan/model_input_manifest.json b/timecost/m4/ctgan/ctgan-m4-20260504_162802/staged/ctgan/model_input_manifest.json new file mode 100644 index 0000000000000000000000000000000000000000..b322f966a05e8955544dcb79ac90ae5da186b160 --- /dev/null +++ b/timecost/m4/ctgan/ctgan-m4-20260504_162802/staged/ctgan/model_input_manifest.json @@ -0,0 +1,154 @@ +{ + "dataset_id": "m4", + "model": "ctgan", + "target_column": "charges", + "task_type": "regression", + "column_schema": [ + { + "name": "age", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 47, + "unique_ratio": 0.0212, + "example_values": [ + "46", + "38", + "19", + "27", + "26" + ] + } + }, + { + "name": "sex", + "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.000902, + "example_values": [ + "female", + "male" + ] + } + }, + { + "name": "bmi", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 538, + "unique_ratio": 0.24267, + "example_values": [ + "23.655", + "19.3", + "30.59", + "32.67", + "29.45" + ] + } + }, + { + "name": "children", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 6, + "unique_ratio": 0.002706, + "example_values": [ + "1", + "0", + "3", + "2", + "5" + ] + } + }, + { + "name": "smoker", + "role": "feature", + "semantic_type": "boolean", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 2, + "unique_ratio": 0.000902, + "example_values": [ + "yes", + "no" + ] + } + }, + { + "name": "region", + "role": "feature", + "semantic_type": "categorical", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 4, + "unique_ratio": 0.001804, + "example_values": [ + "northwest", + "southwest", + "southeast", + "northeast" + ] + } + }, + { + "name": "charges", + "role": "target", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 1281, + "unique_ratio": 0.577808, + "example_values": [ + "21677.28345", + "15820.699", + "1639.5631", + "2497.0383", + "2897.3235" + ] + } + } + ], + "public_manifest": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/m4/ctgan/ctgan-m4-20260504_162802/public_gate/staged_input_manifest.json", + "train_csv": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/m4/ctgan/ctgan-m4-20260504_162802/staged/public/train.csv", + "val_csv": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/m4/ctgan/ctgan-m4-20260504_162802/staged/public/val.csv", + "test_csv": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/m4/ctgan/ctgan-m4-20260504_162802/staged/public/test.csv", + "features_json": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/m4/ctgan/ctgan-m4-20260504_162802/staged/public/staged_features.json", + "public_gate_report": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/m4/ctgan/ctgan-m4-20260504_162802/public_gate/public_gate_report.json" +} \ No newline at end of file diff --git a/timecost/m4/ctgan/ctgan-m4-20260504_162802/staged/public/staged_features.json b/timecost/m4/ctgan/ctgan-m4-20260504_162802/staged/public/staged_features.json new file mode 100644 index 0000000000000000000000000000000000000000..d6acd098c35111f423f3ffff2cfd1754bc5dfebc --- /dev/null +++ b/timecost/m4/ctgan/ctgan-m4-20260504_162802/staged/public/staged_features.json @@ -0,0 +1,37 @@ +[ + { + "feature_name": "age", + "data_type": "continuous", + "is_target": false + }, + { + "feature_name": "sex", + "data_type": "categorical", + "is_target": false + }, + { + "feature_name": "bmi", + "data_type": "continuous", + "is_target": false + }, + { + "feature_name": "children", + "data_type": "continuous", + "is_target": false + }, + { + "feature_name": "smoker", + "data_type": "binary", + "is_target": false + }, + { + "feature_name": "region", + "data_type": "categorical", + "is_target": false + }, + { + "feature_name": "charges", + "data_type": "continuous", + "is_target": true + } +] \ No newline at end of file diff --git a/timecost/m4/ctgan/ctgan-m4-20260504_162802/staged/public/test.csv b/timecost/m4/ctgan/ctgan-m4-20260504_162802/staged/public/test.csv new file mode 100644 index 0000000000000000000000000000000000000000..c88a2e7cfcd715bb421cb56eb078033da45c4dc8 --- /dev/null +++ b/timecost/m4/ctgan/ctgan-m4-20260504_162802/staged/public/test.csv @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:4c541b677fb2d45c5bc79338eeee9fd8c91484b195a0c2c546c2fbabf113b7ea +size 11298 diff --git a/timecost/m4/ctgan/ctgan-m4-20260504_162802/staged/public/train.csv b/timecost/m4/ctgan/ctgan-m4-20260504_162802/staged/public/train.csv new file mode 100644 index 0000000000000000000000000000000000000000..5a05019d786529e0617291766c4fbe016ca01bf5 --- /dev/null +++ b/timecost/m4/ctgan/ctgan-m4-20260504_162802/staged/public/train.csv @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:614ebfac5f41d6f661aff675fa18c0f933a8d9bcc77ea71b7b2360c2f0155837 +size 90069 diff --git a/timecost/m4/ctgan/ctgan-m4-20260504_162802/staged/public/val.csv b/timecost/m4/ctgan/ctgan-m4-20260504_162802/staged/public/val.csv new file mode 100644 index 0000000000000000000000000000000000000000..d78fe5ad1537c437ba9ac2629f2aa60a6c17e708 --- /dev/null +++ b/timecost/m4/ctgan/ctgan-m4-20260504_162802/staged/public/val.csv @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:e55f5edbe7942ff01630de91a9c70dfbc6445eba76c7b970350364546b67c2d7 +size 11218 diff --git a/timecost/m4/ctgan/ctgan-m4-20260504_162920/_ctgan_generate.py b/timecost/m4/ctgan/ctgan-m4-20260504_162920/_ctgan_generate.py new file mode 100644 index 0000000000000000000000000000000000000000..1c6869a3fe44882e4389b3896ee6dfd20585ca25 --- /dev/null +++ b/timecost/m4/ctgan/ctgan-m4-20260504_162920/_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-Benchmark-trainonly-v1/m4/ctgan/ctgan-m4-20260504_162920/models_100epochs/ctgan_100epochs.pt") +total = 2217 +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-Benchmark-trainonly-v1/m4/ctgan/ctgan-m4-20260504_162920/ctgan-m4-2217-20260504_163019.csv", index=False) +print("[CTGAN] Generated", total, "rows in", len(parts), "chunks ->", "/work/output-Benchmark-trainonly-v1/m4/ctgan/ctgan-m4-20260504_162920/ctgan-m4-2217-20260504_163019.csv") \ No newline at end of file diff --git a/timecost/m4/ctgan/ctgan-m4-20260504_162920/_ctgan_train.py b/timecost/m4/ctgan/ctgan-m4-20260504_162920/_ctgan_train.py new file mode 100644 index 0000000000000000000000000000000000000000..1b7c20d0b22c8b49a0901ad3141ca60eb2badbdf --- /dev/null +++ b/timecost/m4/ctgan/ctgan-m4-20260504_162920/_ctgan_train.py @@ -0,0 +1,17 @@ +import pandas as pd +from ctgan.synthesizers.ctgan import CTGAN + +data = pd.read_csv("/work/output-Benchmark-trainonly-v1/m4/ctgan/ctgan-m4-20260504_162920/staged/public/train.csv") +discrete_columns = ['sex', 'smoker', 'region'] +model = CTGAN( + embedding_dim=16, + generator_dim=(32, 32), + discriminator_dim=(32, 32), + batch_size=80, + pac=5, + epochs=100, + verbose=True, +) +model.fit(data, discrete_columns) +model.save("/work/output-Benchmark-trainonly-v1/m4/ctgan/ctgan-m4-20260504_162920/models_100epochs/ctgan_100epochs.pt") +print("[CTGAN] Saved model ->", "/work/output-Benchmark-trainonly-v1/m4/ctgan/ctgan-m4-20260504_162920/models_100epochs/ctgan_100epochs.pt") \ No newline at end of file diff --git a/timecost/m4/ctgan/ctgan-m4-20260504_162920/ctgan-m4-2217-20260504_163019.csv b/timecost/m4/ctgan/ctgan-m4-20260504_162920/ctgan-m4-2217-20260504_163019.csv new file mode 100644 index 0000000000000000000000000000000000000000..3e72d45b8b8b9317621e27073d49108074f9aef9 --- /dev/null +++ b/timecost/m4/ctgan/ctgan-m4-20260504_162920/ctgan-m4-2217-20260504_163019.csv @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:8c406571e96f9c06734e3b7b6d3ba3c06c0069415306215bf688fab81de6a3f9 +size 135713 diff --git a/timecost/m4/ctgan/ctgan-m4-20260504_162920/ctgan_metadata.json b/timecost/m4/ctgan/ctgan-m4-20260504_162920/ctgan_metadata.json new file mode 100644 index 0000000000000000000000000000000000000000..d89b1e0b3095638c982d4d3321d21a8bedcd33ae --- /dev/null +++ b/timecost/m4/ctgan/ctgan-m4-20260504_162920/ctgan_metadata.json @@ -0,0 +1,32 @@ +{ + "columns": [ + { + "name": "age", + "type": "continuous" + }, + { + "name": "sex", + "type": "categorical" + }, + { + "name": "bmi", + "type": "continuous" + }, + { + "name": "children", + "type": "continuous" + }, + { + "name": "smoker", + "type": "categorical" + }, + { + "name": "region", + "type": "categorical" + }, + { + "name": "charges", + "type": "continuous" + } + ] +} \ No newline at end of file diff --git a/timecost/m4/ctgan/ctgan-m4-20260504_162920/gen_20260504_163019.log b/timecost/m4/ctgan/ctgan-m4-20260504_162920/gen_20260504_163019.log new file mode 100644 index 0000000000000000000000000000000000000000..fbf8afe72b30dd7d2519ba324c9633ffc6d3265b --- /dev/null +++ b/timecost/m4/ctgan/ctgan-m4-20260504_162920/gen_20260504_163019.log @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:1fff1fd92ce19744bd06b418d3b6c357dfa8b03a6e2dadb1c31c75f57762eb18 +size 297 diff --git a/timecost/m4/ctgan/ctgan-m4-20260504_162920/input_snapshot.json b/timecost/m4/ctgan/ctgan-m4-20260504_162920/input_snapshot.json new file mode 100644 index 0000000000000000000000000000000000000000..f11278f1ffa8959e7869f70def91d0284f7dd656 --- /dev/null +++ b/timecost/m4/ctgan/ctgan-m4-20260504_162920/input_snapshot.json @@ -0,0 +1,36 @@ +{ + "dataset_id": "m4", + "model": "ctgan", + "inputs": { + "train_csv": { + "path": "/data/jialinzhang/SynthesizePipeline-server/DatasetNew/m4/m4-train.csv", + "exists": true, + "size": 92191, + "sha256": "396b9d409ca21bf4a4cd329bdf5b7796aa0ae6356fa8d89b8eb669b5880b81f1" + }, + "val_csv": { + "path": "/data/jialinzhang/SynthesizePipeline-server/DatasetNew/m4/m4-val.csv", + "exists": true, + "size": 11482, + "sha256": "ee3c247d02f56e1687d03c381e13125d6a3a2a411ac7f202ba8520a4be9f1784" + }, + "test_csv": { + "path": "/data/jialinzhang/SynthesizePipeline-server/DatasetNew/m4/m4-test.csv", + "exists": true, + "size": 11559, + "sha256": "cadb9941124001b8fa7cb1ebae43b70a9ca56294f4df4d3c2f22c164c41757d4" + }, + "profile_json": { + "path": "/data/jialinzhang/SynthesizePipeline-server/DatasetNew/artifacts/data_core/tabular/m4/m4-dataset_profile.json", + "exists": true, + "size": 3336, + "sha256": "83e2764810e4a0e8cdece3a28dbd9134b7c9df6f2e56953e46d024ad2c4e035f" + }, + "contract_json": { + "path": "/data/jialinzhang/SynthesizePipeline-server/DatasetNew/artifacts/data_core/tabular/m4/m4-dataset_contract_v1.json", + "exists": true, + "size": 3810, + "sha256": "c23641b258629a845b164099bd0132886f8f6d0100e990494e0f92540f8987d9" + } + } +} \ No newline at end of file diff --git a/timecost/m4/ctgan/ctgan-m4-20260504_162920/models_100epochs/ctgan_100epochs.pt b/timecost/m4/ctgan/ctgan-m4-20260504_162920/models_100epochs/ctgan_100epochs.pt new file mode 100644 index 0000000000000000000000000000000000000000..c0f2fdc77c4f3e0788cdd693f2f2bd2ed97a3cb4 --- /dev/null +++ b/timecost/m4/ctgan/ctgan-m4-20260504_162920/models_100epochs/ctgan_100epochs.pt @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:f1735982b8a1196accf5fa3d751028415305c00286b49342dd845ccdf4171edb +size 296675 diff --git a/timecost/m4/ctgan/ctgan-m4-20260504_162920/models_100epochs/train_20260504_162920.log b/timecost/m4/ctgan/ctgan-m4-20260504_162920/models_100epochs/train_20260504_162920.log new file mode 100644 index 0000000000000000000000000000000000000000..6e9831c5270bf75c1e2c4eb4085454182a52e85c --- /dev/null +++ b/timecost/m4/ctgan/ctgan-m4-20260504_162920/models_100epochs/train_20260504_162920.log @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:1f12ac50c989ef88b4b247ec0de8a38cb7d48b186cd47b1ae55ce0e904fe030c +size 20346 diff --git a/timecost/m4/ctgan/ctgan-m4-20260504_162920/public_gate/normalized_schema_snapshot.json b/timecost/m4/ctgan/ctgan-m4-20260504_162920/public_gate/normalized_schema_snapshot.json new file mode 100644 index 0000000000000000000000000000000000000000..31ed9818686b11907df75e872e4ffbe010330880 --- /dev/null +++ b/timecost/m4/ctgan/ctgan-m4-20260504_162920/public_gate/normalized_schema_snapshot.json @@ -0,0 +1,147 @@ +{ + "dataset_id": "m4", + "target_column": "charges", + "task_type": "regression", + "columns": [ + { + "name": "age", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 47, + "unique_ratio": 0.0212, + "example_values": [ + "46", + "38", + "19", + "27", + "26" + ] + } + }, + { + "name": "sex", + "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.000902, + "example_values": [ + "female", + "male" + ] + } + }, + { + "name": "bmi", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 538, + "unique_ratio": 0.24267, + "example_values": [ + "23.655", + "19.3", + "30.59", + "32.67", + "29.45" + ] + } + }, + { + "name": "children", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 6, + "unique_ratio": 0.002706, + "example_values": [ + "1", + "0", + "3", + "2", + "5" + ] + } + }, + { + "name": "smoker", + "role": "feature", + "semantic_type": "boolean", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 2, + "unique_ratio": 0.000902, + "example_values": [ + "yes", + "no" + ] + } + }, + { + "name": "region", + "role": "feature", + "semantic_type": "categorical", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 4, + "unique_ratio": 0.001804, + "example_values": [ + "northwest", + "southwest", + "southeast", + "northeast" + ] + } + }, + { + "name": "charges", + "role": "target", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 1281, + "unique_ratio": 0.577808, + "example_values": [ + "21677.28345", + "15820.699", + "1639.5631", + "2497.0383", + "2897.3235" + ] + } + } + ] +} \ No newline at end of file diff --git a/timecost/m4/ctgan/ctgan-m4-20260504_162920/public_gate/public_gate_report.json b/timecost/m4/ctgan/ctgan-m4-20260504_162920/public_gate/public_gate_report.json new file mode 100644 index 0000000000000000000000000000000000000000..e7a25408e2574124629ea9437356551e4d6f4790 --- /dev/null +++ b/timecost/m4/ctgan/ctgan-m4-20260504_162920/public_gate/public_gate_report.json @@ -0,0 +1,37 @@ +{ + "dataset_id": "m4", + "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": "charges", + "task_type": "regression", + "input_splits": { + "train": "/data/jialinzhang/SynthesizePipeline-server/DatasetNew/m4/m4-train.csv", + "val": "/data/jialinzhang/SynthesizePipeline-server/DatasetNew/m4/m4-val.csv", + "test": "/data/jialinzhang/SynthesizePipeline-server/DatasetNew/m4/m4-test.csv" + } +} \ No newline at end of file diff --git a/timecost/m4/ctgan/ctgan-m4-20260504_162920/public_gate/staged_input_manifest.json b/timecost/m4/ctgan/ctgan-m4-20260504_162920/public_gate/staged_input_manifest.json new file mode 100644 index 0000000000000000000000000000000000000000..d8f24c7fe9e92f7fd58473243d225e823c6ba09e --- /dev/null +++ b/timecost/m4/ctgan/ctgan-m4-20260504_162920/public_gate/staged_input_manifest.json @@ -0,0 +1,152 @@ +{ + "dataset_id": "m4", + "target_column": "charges", + "task_type": "regression", + "train_csv": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/m4/ctgan/ctgan-m4-20260504_162920/staged/public/train.csv", + "val_csv": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/m4/ctgan/ctgan-m4-20260504_162920/staged/public/val.csv", + "test_csv": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/m4/ctgan/ctgan-m4-20260504_162920/staged/public/test.csv", + "features_json": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/m4/ctgan/ctgan-m4-20260504_162920/staged/public/staged_features.json", + "public_gate_report": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/m4/ctgan/ctgan-m4-20260504_162920/public_gate/public_gate_report.json", + "column_schema": [ + { + "name": "age", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 47, + "unique_ratio": 0.0212, + "example_values": [ + "46", + "38", + "19", + "27", + "26" + ] + } + }, + { + "name": "sex", + "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.000902, + "example_values": [ + "female", + "male" + ] + } + }, + { + "name": "bmi", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 538, + "unique_ratio": 0.24267, + "example_values": [ + "23.655", + "19.3", + "30.59", + "32.67", + "29.45" + ] + } + }, + { + "name": "children", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 6, + "unique_ratio": 0.002706, + "example_values": [ + "1", + "0", + "3", + "2", + "5" + ] + } + }, + { + "name": "smoker", + "role": "feature", + "semantic_type": "boolean", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 2, + "unique_ratio": 0.000902, + "example_values": [ + "yes", + "no" + ] + } + }, + { + "name": "region", + "role": "feature", + "semantic_type": "categorical", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 4, + "unique_ratio": 0.001804, + "example_values": [ + "northwest", + "southwest", + "southeast", + "northeast" + ] + } + }, + { + "name": "charges", + "role": "target", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 1281, + "unique_ratio": 0.577808, + "example_values": [ + "21677.28345", + "15820.699", + "1639.5631", + "2497.0383", + "2897.3235" + ] + } + } + ] +} \ No newline at end of file diff --git a/timecost/m4/ctgan/ctgan-m4-20260504_162920/run_config.json b/timecost/m4/ctgan/ctgan-m4-20260504_162920/run_config.json new file mode 100644 index 0000000000000000000000000000000000000000..17026468f7ac98957eac5a7392159a739976006c --- /dev/null +++ b/timecost/m4/ctgan/ctgan-m4-20260504_162920/run_config.json @@ -0,0 +1,46 @@ +{ + "schema_version": 1, + "recorded_at": "2026-05-04T16:29:20", + "dataset_id": "m4", + "model": "ctgan", + "work_dir": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/m4/ctgan/ctgan-m4-20260504_162920", + "dataset_source_requested": "new", + "dataset_source_resolved": "new", + "cli_args": { + "model": "ctgan", + "dataset": "m4", + "dataset_source": "new", + "train": true, + "generate": true, + "num_rows": 0, + "epochs": null, + "output_dir": null, + "model_dir": null, + "work_dir": null, + "resume": false, + "no_stats": false + }, + "resolved": { + "num_rows": 2217, + "model_path": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/m4/ctgan/ctgan-m4-20260504_162920/models_100epochs/ctgan_100epochs.pt", + "output_csv": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/m4/ctgan/ctgan-m4-20260504_162920/ctgan-m4-2217-20260504_163019.csv" + }, + "input_artifacts": { + "public_gate_report": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/m4/ctgan/ctgan-m4-20260504_162920/public_gate/public_gate_report.json", + "public_manifest": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/m4/ctgan/ctgan-m4-20260504_162920/public_gate/staged_input_manifest.json", + "model_manifest": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/m4/ctgan/ctgan-m4-20260504_162920/staged/ctgan/model_input_manifest.json", + "train_csv": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/m4/ctgan/ctgan-m4-20260504_162920/staged/public/train.csv", + "features_json": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/m4/ctgan/ctgan-m4-20260504_162920/staged/public/staged_features.json", + "target_column": "charges", + "task_type": "regression" + }, + "env_overrides": { + "BENCHMARK_CTGAN_GPUS": "device=3", + "CTGAN_BATCH_SIZE": "80", + "CTGAN_DEFAULT_EPOCHS": "100", + "CTGAN_DISCRIMINATOR_DIMS": "32,32", + "CTGAN_EMBEDDING_DIM": "16", + "CTGAN_GENERATOR_DIMS": "32,32", + "CTGAN_PAC": "5" + } +} \ No newline at end of file diff --git a/timecost/m4/ctgan/ctgan-m4-20260504_162920/runtime_result.json b/timecost/m4/ctgan/ctgan-m4-20260504_162920/runtime_result.json new file mode 100644 index 0000000000000000000000000000000000000000..f115cc028f0b74ab7cbc3aa216d7c3eb92534435 --- /dev/null +++ b/timecost/m4/ctgan/ctgan-m4-20260504_162920/runtime_result.json @@ -0,0 +1,27 @@ +{ + "dataset_id": "m4", + "model": "ctgan", + "run_id": "ctgan-m4-20260504_162920", + "public_gate_status": "pass", + "adapter_ready_status": "pass", + "train_status": "success", + "generate_status": "success", + "reason_code": null, + "reason_detail": null, + "artifacts": { + "synthetic_csv": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/m4/ctgan/ctgan-m4-20260504_162920/ctgan-m4-2217-20260504_163019.csv", + "model_path": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/m4/ctgan/ctgan-m4-20260504_162920/models_100epochs/ctgan_100epochs.pt" + }, + "timings": { + "train": { + "started_at": "2026-05-04T16:29:20", + "ended_at": "2026-05-04T16:30:19", + "duration_sec": 59.085 + }, + "generate": { + "started_at": "2026-05-04T16:30:19", + "ended_at": "2026-05-04T16:30:25", + "duration_sec": 5.992 + } + } +} \ No newline at end of file diff --git a/timecost/m4/ctgan/ctgan-m4-20260504_162920/staged/ctgan/adapter_report.json b/timecost/m4/ctgan/ctgan-m4-20260504_162920/staged/ctgan/adapter_report.json new file mode 100644 index 0000000000000000000000000000000000000000..30fa05b5471fe1b2a7a06b2fe5ddfd6182cd1449 --- /dev/null +++ b/timecost/m4/ctgan/ctgan-m4-20260504_162920/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-Benchmark-trainonly-v1/m4/ctgan/ctgan-m4-20260504_162920/staged/ctgan/model_input_manifest.json" +} \ No newline at end of file diff --git a/timecost/m4/ctgan/ctgan-m4-20260504_162920/staged/ctgan/adapter_transforms_applied.json b/timecost/m4/ctgan/ctgan-m4-20260504_162920/staged/ctgan/adapter_transforms_applied.json new file mode 100644 index 0000000000000000000000000000000000000000..0637a088a01e8ddab3bf3fa98dbe804cbde1a0dc --- /dev/null +++ b/timecost/m4/ctgan/ctgan-m4-20260504_162920/staged/ctgan/adapter_transforms_applied.json @@ -0,0 +1 @@ +[] \ No newline at end of file diff --git a/timecost/m4/ctgan/ctgan-m4-20260504_162920/staged/ctgan/model_input_manifest.json b/timecost/m4/ctgan/ctgan-m4-20260504_162920/staged/ctgan/model_input_manifest.json new file mode 100644 index 0000000000000000000000000000000000000000..6605d154467983325f599e76a16d6ae710802bf1 --- /dev/null +++ b/timecost/m4/ctgan/ctgan-m4-20260504_162920/staged/ctgan/model_input_manifest.json @@ -0,0 +1,154 @@ +{ + "dataset_id": "m4", + "model": "ctgan", + "target_column": "charges", + "task_type": "regression", + "column_schema": [ + { + "name": "age", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 47, + "unique_ratio": 0.0212, + "example_values": [ + "46", + "38", + "19", + "27", + "26" + ] + } + }, + { + "name": "sex", + "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.000902, + "example_values": [ + "female", + "male" + ] + } + }, + { + "name": "bmi", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 538, + "unique_ratio": 0.24267, + "example_values": [ + "23.655", + "19.3", + "30.59", + "32.67", + "29.45" + ] + } + }, + { + "name": "children", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 6, + "unique_ratio": 0.002706, + "example_values": [ + "1", + "0", + "3", + "2", + "5" + ] + } + }, + { + "name": "smoker", + "role": "feature", + "semantic_type": "boolean", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 2, + "unique_ratio": 0.000902, + "example_values": [ + "yes", + "no" + ] + } + }, + { + "name": "region", + "role": "feature", + "semantic_type": "categorical", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 4, + "unique_ratio": 0.001804, + "example_values": [ + "northwest", + "southwest", + "southeast", + "northeast" + ] + } + }, + { + "name": "charges", + "role": "target", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 1281, + "unique_ratio": 0.577808, + "example_values": [ + "21677.28345", + "15820.699", + "1639.5631", + "2497.0383", + "2897.3235" + ] + } + } + ], + "public_manifest": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/m4/ctgan/ctgan-m4-20260504_162920/public_gate/staged_input_manifest.json", + "train_csv": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/m4/ctgan/ctgan-m4-20260504_162920/staged/public/train.csv", + "val_csv": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/m4/ctgan/ctgan-m4-20260504_162920/staged/public/val.csv", + "test_csv": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/m4/ctgan/ctgan-m4-20260504_162920/staged/public/test.csv", + "features_json": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/m4/ctgan/ctgan-m4-20260504_162920/staged/public/staged_features.json", + "public_gate_report": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/m4/ctgan/ctgan-m4-20260504_162920/public_gate/public_gate_report.json" +} \ No newline at end of file diff --git a/timecost/m4/ctgan/ctgan-m4-20260504_162920/staged/public/staged_features.json b/timecost/m4/ctgan/ctgan-m4-20260504_162920/staged/public/staged_features.json new file mode 100644 index 0000000000000000000000000000000000000000..d6acd098c35111f423f3ffff2cfd1754bc5dfebc --- /dev/null +++ b/timecost/m4/ctgan/ctgan-m4-20260504_162920/staged/public/staged_features.json @@ -0,0 +1,37 @@ +[ + { + "feature_name": "age", + "data_type": "continuous", + "is_target": false + }, + { + "feature_name": "sex", + "data_type": "categorical", + "is_target": false + }, + { + "feature_name": "bmi", + "data_type": "continuous", + "is_target": false + }, + { + "feature_name": "children", + "data_type": "continuous", + "is_target": false + }, + { + "feature_name": "smoker", + "data_type": "binary", + "is_target": false + }, + { + "feature_name": "region", + "data_type": "categorical", + "is_target": false + }, + { + "feature_name": "charges", + "data_type": "continuous", + "is_target": true + } +] \ No newline at end of file diff --git a/timecost/m4/ctgan/ctgan-m4-20260504_162920/staged/public/test.csv b/timecost/m4/ctgan/ctgan-m4-20260504_162920/staged/public/test.csv new file mode 100644 index 0000000000000000000000000000000000000000..c88a2e7cfcd715bb421cb56eb078033da45c4dc8 --- /dev/null +++ b/timecost/m4/ctgan/ctgan-m4-20260504_162920/staged/public/test.csv @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:4c541b677fb2d45c5bc79338eeee9fd8c91484b195a0c2c546c2fbabf113b7ea +size 11298 diff --git a/timecost/m4/ctgan/ctgan-m4-20260504_162920/staged/public/train.csv b/timecost/m4/ctgan/ctgan-m4-20260504_162920/staged/public/train.csv new file mode 100644 index 0000000000000000000000000000000000000000..5a05019d786529e0617291766c4fbe016ca01bf5 --- /dev/null +++ b/timecost/m4/ctgan/ctgan-m4-20260504_162920/staged/public/train.csv @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:614ebfac5f41d6f661aff675fa18c0f933a8d9bcc77ea71b7b2360c2f0155837 +size 90069 diff --git a/timecost/m4/ctgan/ctgan-m4-20260504_162920/staged/public/val.csv b/timecost/m4/ctgan/ctgan-m4-20260504_162920/staged/public/val.csv new file mode 100644 index 0000000000000000000000000000000000000000..d78fe5ad1537c437ba9ac2629f2aa60a6c17e708 --- /dev/null +++ b/timecost/m4/ctgan/ctgan-m4-20260504_162920/staged/public/val.csv @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:e55f5edbe7942ff01630de91a9c70dfbc6445eba76c7b970350364546b67c2d7 +size 11218 diff --git a/timecost/m4/ctgan/ctgan-m4-20260504_163038/_ctgan_generate.py b/timecost/m4/ctgan/ctgan-m4-20260504_163038/_ctgan_generate.py new file mode 100644 index 0000000000000000000000000000000000000000..9bd1b474a2c4e3a5589188b211b0e6e39efb81f0 --- /dev/null +++ b/timecost/m4/ctgan/ctgan-m4-20260504_163038/_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-Benchmark-trainonly-v1/m4/ctgan/ctgan-m4-20260504_163038/models_200epochs/ctgan_200epochs.pt") +total = 2217 +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-Benchmark-trainonly-v1/m4/ctgan/ctgan-m4-20260504_163038/ctgan-m4-2217-20260504_163207.csv", index=False) +print("[CTGAN] Generated", total, "rows in", len(parts), "chunks ->", "/work/output-Benchmark-trainonly-v1/m4/ctgan/ctgan-m4-20260504_163038/ctgan-m4-2217-20260504_163207.csv") \ No newline at end of file diff --git a/timecost/m4/ctgan/ctgan-m4-20260504_163038/_ctgan_train.py b/timecost/m4/ctgan/ctgan-m4-20260504_163038/_ctgan_train.py new file mode 100644 index 0000000000000000000000000000000000000000..a841856a406bbb3e09660cb7d1a6488fd8eb5858 --- /dev/null +++ b/timecost/m4/ctgan/ctgan-m4-20260504_163038/_ctgan_train.py @@ -0,0 +1,17 @@ +import pandas as pd +from ctgan.synthesizers.ctgan import CTGAN + +data = pd.read_csv("/work/output-Benchmark-trainonly-v1/m4/ctgan/ctgan-m4-20260504_163038/staged/public/train.csv") +discrete_columns = ['sex', 'smoker', 'region'] +model = CTGAN( + embedding_dim=32, + generator_dim=(64, 64), + discriminator_dim=(64, 64), + batch_size=100, + pac=10, + epochs=200, + verbose=True, +) +model.fit(data, discrete_columns) +model.save("/work/output-Benchmark-trainonly-v1/m4/ctgan/ctgan-m4-20260504_163038/models_200epochs/ctgan_200epochs.pt") +print("[CTGAN] Saved model ->", "/work/output-Benchmark-trainonly-v1/m4/ctgan/ctgan-m4-20260504_163038/models_200epochs/ctgan_200epochs.pt") \ No newline at end of file diff --git a/timecost/m4/ctgan/ctgan-m4-20260504_163038/ctgan-m4-2217-20260504_163207.csv b/timecost/m4/ctgan/ctgan-m4-20260504_163038/ctgan-m4-2217-20260504_163207.csv new file mode 100644 index 0000000000000000000000000000000000000000..02a4410b10356bd5136a2b9cbee8b59d63cb1cea --- /dev/null +++ b/timecost/m4/ctgan/ctgan-m4-20260504_163038/ctgan-m4-2217-20260504_163207.csv @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:7baf2650acdb58a6960bf3482afc14f2a59738fbe3de156152a55cc7636ab39e +size 136085 diff --git a/timecost/m4/ctgan/ctgan-m4-20260504_163038/ctgan_metadata.json b/timecost/m4/ctgan/ctgan-m4-20260504_163038/ctgan_metadata.json new file mode 100644 index 0000000000000000000000000000000000000000..d89b1e0b3095638c982d4d3321d21a8bedcd33ae --- /dev/null +++ b/timecost/m4/ctgan/ctgan-m4-20260504_163038/ctgan_metadata.json @@ -0,0 +1,32 @@ +{ + "columns": [ + { + "name": "age", + "type": "continuous" + }, + { + "name": "sex", + "type": "categorical" + }, + { + "name": "bmi", + "type": "continuous" + }, + { + "name": "children", + "type": "continuous" + }, + { + "name": "smoker", + "type": "categorical" + }, + { + "name": "region", + "type": "categorical" + }, + { + "name": "charges", + "type": "continuous" + } + ] +} \ No newline at end of file diff --git a/timecost/m4/ctgan/ctgan-m4-20260504_163038/gen_20260504_163207.log b/timecost/m4/ctgan/ctgan-m4-20260504_163038/gen_20260504_163207.log new file mode 100644 index 0000000000000000000000000000000000000000..1794c145cc281f95b00fe5f46b3d2dc1ff9bc4aa --- /dev/null +++ b/timecost/m4/ctgan/ctgan-m4-20260504_163038/gen_20260504_163207.log @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:843b04a29b1a7c84294fbdad7fafc0ad169db22ca2b2b9ddbd5813e245293903 +size 297 diff --git a/timecost/m4/ctgan/ctgan-m4-20260504_163038/input_snapshot.json b/timecost/m4/ctgan/ctgan-m4-20260504_163038/input_snapshot.json new file mode 100644 index 0000000000000000000000000000000000000000..f11278f1ffa8959e7869f70def91d0284f7dd656 --- /dev/null +++ b/timecost/m4/ctgan/ctgan-m4-20260504_163038/input_snapshot.json @@ -0,0 +1,36 @@ +{ + "dataset_id": "m4", + "model": "ctgan", + "inputs": { + "train_csv": { + "path": "/data/jialinzhang/SynthesizePipeline-server/DatasetNew/m4/m4-train.csv", + "exists": true, + "size": 92191, + "sha256": "396b9d409ca21bf4a4cd329bdf5b7796aa0ae6356fa8d89b8eb669b5880b81f1" + }, + "val_csv": { + "path": "/data/jialinzhang/SynthesizePipeline-server/DatasetNew/m4/m4-val.csv", + "exists": true, + "size": 11482, + "sha256": "ee3c247d02f56e1687d03c381e13125d6a3a2a411ac7f202ba8520a4be9f1784" + }, + "test_csv": { + "path": "/data/jialinzhang/SynthesizePipeline-server/DatasetNew/m4/m4-test.csv", + "exists": true, + "size": 11559, + "sha256": "cadb9941124001b8fa7cb1ebae43b70a9ca56294f4df4d3c2f22c164c41757d4" + }, + "profile_json": { + "path": "/data/jialinzhang/SynthesizePipeline-server/DatasetNew/artifacts/data_core/tabular/m4/m4-dataset_profile.json", + "exists": true, + "size": 3336, + "sha256": "83e2764810e4a0e8cdece3a28dbd9134b7c9df6f2e56953e46d024ad2c4e035f" + }, + "contract_json": { + "path": "/data/jialinzhang/SynthesizePipeline-server/DatasetNew/artifacts/data_core/tabular/m4/m4-dataset_contract_v1.json", + "exists": true, + "size": 3810, + "sha256": "c23641b258629a845b164099bd0132886f8f6d0100e990494e0f92540f8987d9" + } + } +} \ No newline at end of file diff --git a/timecost/m4/ctgan/ctgan-m4-20260504_163038/models_200epochs/ctgan_200epochs.pt b/timecost/m4/ctgan/ctgan-m4-20260504_163038/models_200epochs/ctgan_200epochs.pt new file mode 100644 index 0000000000000000000000000000000000000000..60c1b8863a50d55ea3f90ff4f64bcf1822d472ff --- /dev/null +++ b/timecost/m4/ctgan/ctgan-m4-20260504_163038/models_200epochs/ctgan_200epochs.pt @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:9f7587270ae8535607fd4804d5bf9cf09d651bba7376264c2365fce4e6ce00c6 +size 341411 diff --git a/timecost/m4/ctgan/ctgan-m4-20260504_163038/models_200epochs/train_20260504_163038.log b/timecost/m4/ctgan/ctgan-m4-20260504_163038/models_200epochs/train_20260504_163038.log new file mode 100644 index 0000000000000000000000000000000000000000..de0ac05ad9d6cff23800812ff6879cb55324c8bb --- /dev/null +++ b/timecost/m4/ctgan/ctgan-m4-20260504_163038/models_200epochs/train_20260504_163038.log @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:393ba9d05340b1971bf7f5b702d02a8fee4ed5303a31bd46c1803bf4d6c4ddb6 +size 39009 diff --git a/timecost/m4/ctgan/ctgan-m4-20260504_163038/public_gate/normalized_schema_snapshot.json b/timecost/m4/ctgan/ctgan-m4-20260504_163038/public_gate/normalized_schema_snapshot.json new file mode 100644 index 0000000000000000000000000000000000000000..31ed9818686b11907df75e872e4ffbe010330880 --- /dev/null +++ b/timecost/m4/ctgan/ctgan-m4-20260504_163038/public_gate/normalized_schema_snapshot.json @@ -0,0 +1,147 @@ +{ + "dataset_id": "m4", + "target_column": "charges", + "task_type": "regression", + "columns": [ + { + "name": "age", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 47, + "unique_ratio": 0.0212, + "example_values": [ + "46", + "38", + "19", + "27", + "26" + ] + } + }, + { + "name": "sex", + "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.000902, + "example_values": [ + "female", + "male" + ] + } + }, + { + "name": "bmi", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 538, + "unique_ratio": 0.24267, + "example_values": [ + "23.655", + "19.3", + "30.59", + "32.67", + "29.45" + ] + } + }, + { + "name": "children", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 6, + "unique_ratio": 0.002706, + "example_values": [ + "1", + "0", + "3", + "2", + "5" + ] + } + }, + { + "name": "smoker", + "role": "feature", + "semantic_type": "boolean", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 2, + "unique_ratio": 0.000902, + "example_values": [ + "yes", + "no" + ] + } + }, + { + "name": "region", + "role": "feature", + "semantic_type": "categorical", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 4, + "unique_ratio": 0.001804, + "example_values": [ + "northwest", + "southwest", + "southeast", + "northeast" + ] + } + }, + { + "name": "charges", + "role": "target", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 1281, + "unique_ratio": 0.577808, + "example_values": [ + "21677.28345", + "15820.699", + "1639.5631", + "2497.0383", + "2897.3235" + ] + } + } + ] +} \ No newline at end of file diff --git a/timecost/m4/ctgan/ctgan-m4-20260504_163038/public_gate/public_gate_report.json b/timecost/m4/ctgan/ctgan-m4-20260504_163038/public_gate/public_gate_report.json new file mode 100644 index 0000000000000000000000000000000000000000..e7a25408e2574124629ea9437356551e4d6f4790 --- /dev/null +++ b/timecost/m4/ctgan/ctgan-m4-20260504_163038/public_gate/public_gate_report.json @@ -0,0 +1,37 @@ +{ + "dataset_id": "m4", + "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": "charges", + "task_type": "regression", + "input_splits": { + "train": "/data/jialinzhang/SynthesizePipeline-server/DatasetNew/m4/m4-train.csv", + "val": "/data/jialinzhang/SynthesizePipeline-server/DatasetNew/m4/m4-val.csv", + "test": "/data/jialinzhang/SynthesizePipeline-server/DatasetNew/m4/m4-test.csv" + } +} \ No newline at end of file diff --git a/timecost/m4/ctgan/ctgan-m4-20260504_163038/public_gate/staged_input_manifest.json b/timecost/m4/ctgan/ctgan-m4-20260504_163038/public_gate/staged_input_manifest.json new file mode 100644 index 0000000000000000000000000000000000000000..b816cabf716c275363c4a5a402d22bf38a2108aa --- /dev/null +++ b/timecost/m4/ctgan/ctgan-m4-20260504_163038/public_gate/staged_input_manifest.json @@ -0,0 +1,152 @@ +{ + "dataset_id": "m4", + "target_column": "charges", + "task_type": "regression", + "train_csv": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/m4/ctgan/ctgan-m4-20260504_163038/staged/public/train.csv", + "val_csv": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/m4/ctgan/ctgan-m4-20260504_163038/staged/public/val.csv", + "test_csv": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/m4/ctgan/ctgan-m4-20260504_163038/staged/public/test.csv", + "features_json": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/m4/ctgan/ctgan-m4-20260504_163038/staged/public/staged_features.json", + "public_gate_report": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/m4/ctgan/ctgan-m4-20260504_163038/public_gate/public_gate_report.json", + "column_schema": [ + { + "name": "age", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 47, + "unique_ratio": 0.0212, + "example_values": [ + "46", + "38", + "19", + "27", + "26" + ] + } + }, + { + "name": "sex", + "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.000902, + "example_values": [ + "female", + "male" + ] + } + }, + { + "name": "bmi", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 538, + "unique_ratio": 0.24267, + "example_values": [ + "23.655", + "19.3", + "30.59", + "32.67", + "29.45" + ] + } + }, + { + "name": "children", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 6, + "unique_ratio": 0.002706, + "example_values": [ + "1", + "0", + "3", + "2", + "5" + ] + } + }, + { + "name": "smoker", + "role": "feature", + "semantic_type": "boolean", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 2, + "unique_ratio": 0.000902, + "example_values": [ + "yes", + "no" + ] + } + }, + { + "name": "region", + "role": "feature", + "semantic_type": "categorical", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 4, + "unique_ratio": 0.001804, + "example_values": [ + "northwest", + "southwest", + "southeast", + "northeast" + ] + } + }, + { + "name": "charges", + "role": "target", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 1281, + "unique_ratio": 0.577808, + "example_values": [ + "21677.28345", + "15820.699", + "1639.5631", + "2497.0383", + "2897.3235" + ] + } + } + ] +} \ No newline at end of file diff --git a/timecost/m4/ctgan/ctgan-m4-20260504_163038/run_config.json b/timecost/m4/ctgan/ctgan-m4-20260504_163038/run_config.json new file mode 100644 index 0000000000000000000000000000000000000000..f5b9d4f9b1fb6f4e85065405913c9ceaf536244f --- /dev/null +++ b/timecost/m4/ctgan/ctgan-m4-20260504_163038/run_config.json @@ -0,0 +1,46 @@ +{ + "schema_version": 1, + "recorded_at": "2026-05-04T16:30:38", + "dataset_id": "m4", + "model": "ctgan", + "work_dir": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/m4/ctgan/ctgan-m4-20260504_163038", + "dataset_source_requested": "new", + "dataset_source_resolved": "new", + "cli_args": { + "model": "ctgan", + "dataset": "m4", + "dataset_source": "new", + "train": true, + "generate": true, + "num_rows": 0, + "epochs": null, + "output_dir": null, + "model_dir": null, + "work_dir": null, + "resume": false, + "no_stats": false + }, + "resolved": { + "num_rows": 2217, + "model_path": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/m4/ctgan/ctgan-m4-20260504_163038/models_200epochs/ctgan_200epochs.pt", + "output_csv": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/m4/ctgan/ctgan-m4-20260504_163038/ctgan-m4-2217-20260504_163207.csv" + }, + "input_artifacts": { + "public_gate_report": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/m4/ctgan/ctgan-m4-20260504_163038/public_gate/public_gate_report.json", + "public_manifest": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/m4/ctgan/ctgan-m4-20260504_163038/public_gate/staged_input_manifest.json", + "model_manifest": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/m4/ctgan/ctgan-m4-20260504_163038/staged/ctgan/model_input_manifest.json", + "train_csv": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/m4/ctgan/ctgan-m4-20260504_163038/staged/public/train.csv", + "features_json": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/m4/ctgan/ctgan-m4-20260504_163038/staged/public/staged_features.json", + "target_column": "charges", + "task_type": "regression" + }, + "env_overrides": { + "BENCHMARK_CTGAN_GPUS": "device=3", + "CTGAN_BATCH_SIZE": "100", + "CTGAN_DEFAULT_EPOCHS": "200", + "CTGAN_DISCRIMINATOR_DIMS": "64,64", + "CTGAN_EMBEDDING_DIM": "32", + "CTGAN_GENERATOR_DIMS": "64,64", + "CTGAN_PAC": "10" + } +} \ No newline at end of file diff --git a/timecost/m4/ctgan/ctgan-m4-20260504_163038/runtime_result.json b/timecost/m4/ctgan/ctgan-m4-20260504_163038/runtime_result.json new file mode 100644 index 0000000000000000000000000000000000000000..7db01fc69ae2c574a3aebf602eb5ef1cb959b9e5 --- /dev/null +++ b/timecost/m4/ctgan/ctgan-m4-20260504_163038/runtime_result.json @@ -0,0 +1,27 @@ +{ + "dataset_id": "m4", + "model": "ctgan", + "run_id": "ctgan-m4-20260504_163038", + "public_gate_status": "pass", + "adapter_ready_status": "pass", + "train_status": "success", + "generate_status": "success", + "reason_code": null, + "reason_detail": null, + "artifacts": { + "synthetic_csv": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/m4/ctgan/ctgan-m4-20260504_163038/ctgan-m4-2217-20260504_163207.csv", + "model_path": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/m4/ctgan/ctgan-m4-20260504_163038/models_200epochs/ctgan_200epochs.pt" + }, + "timings": { + "train": { + "started_at": "2026-05-04T16:30:38", + "ended_at": "2026-05-04T16:32:07", + "duration_sec": 88.927 + }, + "generate": { + "started_at": "2026-05-04T16:32:07", + "ended_at": "2026-05-04T16:32:13", + "duration_sec": 5.981 + } + } +} \ No newline at end of file diff --git a/timecost/m4/ctgan/ctgan-m4-20260504_163038/staged/ctgan/adapter_report.json b/timecost/m4/ctgan/ctgan-m4-20260504_163038/staged/ctgan/adapter_report.json new file mode 100644 index 0000000000000000000000000000000000000000..c66b2d5d18b0bd9500d67f443aedbdf219804a82 --- /dev/null +++ b/timecost/m4/ctgan/ctgan-m4-20260504_163038/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-Benchmark-trainonly-v1/m4/ctgan/ctgan-m4-20260504_163038/staged/ctgan/model_input_manifest.json" +} \ No newline at end of file diff --git a/timecost/m4/ctgan/ctgan-m4-20260504_163038/staged/ctgan/adapter_transforms_applied.json b/timecost/m4/ctgan/ctgan-m4-20260504_163038/staged/ctgan/adapter_transforms_applied.json new file mode 100644 index 0000000000000000000000000000000000000000..0637a088a01e8ddab3bf3fa98dbe804cbde1a0dc --- /dev/null +++ b/timecost/m4/ctgan/ctgan-m4-20260504_163038/staged/ctgan/adapter_transforms_applied.json @@ -0,0 +1 @@ +[] \ No newline at end of file diff --git a/timecost/m4/ctgan/ctgan-m4-20260504_163038/staged/ctgan/model_input_manifest.json b/timecost/m4/ctgan/ctgan-m4-20260504_163038/staged/ctgan/model_input_manifest.json new file mode 100644 index 0000000000000000000000000000000000000000..033c4ca1a435c6ec97f441f3886476742ec4be6d --- /dev/null +++ b/timecost/m4/ctgan/ctgan-m4-20260504_163038/staged/ctgan/model_input_manifest.json @@ -0,0 +1,154 @@ +{ + "dataset_id": "m4", + "model": "ctgan", + "target_column": "charges", + "task_type": "regression", + "column_schema": [ + { + "name": "age", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 47, + "unique_ratio": 0.0212, + "example_values": [ + "46", + "38", + "19", + "27", + "26" + ] + } + }, + { + "name": "sex", + "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.000902, + "example_values": [ + "female", + "male" + ] + } + }, + { + "name": "bmi", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 538, + "unique_ratio": 0.24267, + "example_values": [ + "23.655", + "19.3", + "30.59", + "32.67", + "29.45" + ] + } + }, + { + "name": "children", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 6, + "unique_ratio": 0.002706, + "example_values": [ + "1", + "0", + "3", + "2", + "5" + ] + } + }, + { + "name": "smoker", + "role": "feature", + "semantic_type": "boolean", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 2, + "unique_ratio": 0.000902, + "example_values": [ + "yes", + "no" + ] + } + }, + { + "name": "region", + "role": "feature", + "semantic_type": "categorical", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 4, + "unique_ratio": 0.001804, + "example_values": [ + "northwest", + "southwest", + "southeast", + "northeast" + ] + } + }, + { + "name": "charges", + "role": "target", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 1281, + "unique_ratio": 0.577808, + "example_values": [ + "21677.28345", + "15820.699", + "1639.5631", + "2497.0383", + "2897.3235" + ] + } + } + ], + "public_manifest": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/m4/ctgan/ctgan-m4-20260504_163038/public_gate/staged_input_manifest.json", + "train_csv": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/m4/ctgan/ctgan-m4-20260504_163038/staged/public/train.csv", + "val_csv": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/m4/ctgan/ctgan-m4-20260504_163038/staged/public/val.csv", + "test_csv": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/m4/ctgan/ctgan-m4-20260504_163038/staged/public/test.csv", + "features_json": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/m4/ctgan/ctgan-m4-20260504_163038/staged/public/staged_features.json", + "public_gate_report": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/m4/ctgan/ctgan-m4-20260504_163038/public_gate/public_gate_report.json" +} \ No newline at end of file diff --git a/timecost/m4/ctgan/ctgan-m4-20260504_163038/staged/public/staged_features.json b/timecost/m4/ctgan/ctgan-m4-20260504_163038/staged/public/staged_features.json new file mode 100644 index 0000000000000000000000000000000000000000..d6acd098c35111f423f3ffff2cfd1754bc5dfebc --- /dev/null +++ b/timecost/m4/ctgan/ctgan-m4-20260504_163038/staged/public/staged_features.json @@ -0,0 +1,37 @@ +[ + { + "feature_name": "age", + "data_type": "continuous", + "is_target": false + }, + { + "feature_name": "sex", + "data_type": "categorical", + "is_target": false + }, + { + "feature_name": "bmi", + "data_type": "continuous", + "is_target": false + }, + { + "feature_name": "children", + "data_type": "continuous", + "is_target": false + }, + { + "feature_name": "smoker", + "data_type": "binary", + "is_target": false + }, + { + "feature_name": "region", + "data_type": "categorical", + "is_target": false + }, + { + "feature_name": "charges", + "data_type": "continuous", + "is_target": true + } +] \ No newline at end of file diff --git a/timecost/m4/ctgan/ctgan-m4-20260504_163038/staged/public/test.csv b/timecost/m4/ctgan/ctgan-m4-20260504_163038/staged/public/test.csv new file mode 100644 index 0000000000000000000000000000000000000000..c88a2e7cfcd715bb421cb56eb078033da45c4dc8 --- /dev/null +++ b/timecost/m4/ctgan/ctgan-m4-20260504_163038/staged/public/test.csv @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:4c541b677fb2d45c5bc79338eeee9fd8c91484b195a0c2c546c2fbabf113b7ea +size 11298 diff --git a/timecost/m4/ctgan/ctgan-m4-20260504_163038/staged/public/train.csv b/timecost/m4/ctgan/ctgan-m4-20260504_163038/staged/public/train.csv new file mode 100644 index 0000000000000000000000000000000000000000..5a05019d786529e0617291766c4fbe016ca01bf5 --- /dev/null +++ b/timecost/m4/ctgan/ctgan-m4-20260504_163038/staged/public/train.csv @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:614ebfac5f41d6f661aff675fa18c0f933a8d9bcc77ea71b7b2360c2f0155837 +size 90069 diff --git a/timecost/m4/ctgan/ctgan-m4-20260504_163038/staged/public/val.csv b/timecost/m4/ctgan/ctgan-m4-20260504_163038/staged/public/val.csv new file mode 100644 index 0000000000000000000000000000000000000000..d78fe5ad1537c437ba9ac2629f2aa60a6c17e708 --- /dev/null +++ b/timecost/m4/ctgan/ctgan-m4-20260504_163038/staged/public/val.csv @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:e55f5edbe7942ff01630de91a9c70dfbc6445eba76c7b970350364546b67c2d7 +size 11218 diff --git a/timecost/m4/forestdiffusion/forest-m4-20260501_180515/_fd_X_host.npy b/timecost/m4/forestdiffusion/forest-m4-20260501_180515/_fd_X_host.npy new file mode 100644 index 0000000000000000000000000000000000000000..adf7790ed3b5f3fbf003c878147469425b445ed1 --- /dev/null +++ b/timecost/m4/forestdiffusion/forest-m4-20260501_180515/_fd_X_host.npy @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:2075e38ffa201390419d8ba927a30948410d3bae79c47b2d376e0991c42ba455 +size 62204 diff --git a/timecost/m4/forestdiffusion/forest-m4-20260501_180515/_fd_gen.py b/timecost/m4/forestdiffusion/forest-m4-20260501_180515/_fd_gen.py new file mode 100644 index 0000000000000000000000000000000000000000..99c06c9f2e40f637316b397ae4efb41f75d47b73 --- /dev/null +++ b/timecost/m4/forestdiffusion/forest-m4-20260501_180515/_fd_gen.py @@ -0,0 +1,8 @@ + +import joblib, pandas as pd +m, meta = joblib.load(r'/work/output-Benchmark-trainonly-v1/m4/forestdiffusion/forest-m4-20260501_180515/forestdiffusion_model.joblib') +# generate:batch_size 为样本数 +arr = m.generate(batch_size=int(2217)) +df = pd.DataFrame(arr, columns=meta["column_names"]) +df.to_csv(r'/work/output-Benchmark-trainonly-v1/m4/forestdiffusion/forest-m4-20260501_180515/forest-m4-2217-20260501_180613.csv', index=False) +print("saved", len(df)) diff --git a/timecost/m4/forestdiffusion/forest-m4-20260501_180515/_fd_meta_host.json b/timecost/m4/forestdiffusion/forest-m4-20260501_180515/_fd_meta_host.json new file mode 100644 index 0000000000000000000000000000000000000000..ee3e9bf77c9008274d3ca5b068e49b142b0bb624 --- /dev/null +++ b/timecost/m4/forestdiffusion/forest-m4-20260501_180515/_fd_meta_host.json @@ -0,0 +1 @@ +{"column_names": ["age", "sex", "bmi", "children", "smoker", "region", "charges"], "cat_indexes": [1, 4, 5]} \ No newline at end of file diff --git a/timecost/m4/forestdiffusion/forest-m4-20260501_180515/_fd_train.py b/timecost/m4/forestdiffusion/forest-m4-20260501_180515/_fd_train.py new file mode 100644 index 0000000000000000000000000000000000000000..be7c41b9f5840133c854a4fd69dae07d746b6a9d --- /dev/null +++ b/timecost/m4/forestdiffusion/forest-m4-20260501_180515/_fd_train.py @@ -0,0 +1,28 @@ + +import shutil, json +shutil.copy(r'/work/output-Benchmark-trainonly-v1/m4/forestdiffusion/forest-m4-20260501_180515/_fd_X_host.npy', '/tmp/fd_X.npy') +with open(r'/work/output-Benchmark-trainonly-v1/m4/forestdiffusion/forest-m4-20260501_180515/_fd_meta_host.json') as f: + open('/tmp/fd_meta.json','w').write(f.read()) + +import numpy as np, joblib, json, os +from ForestDiffusion import ForestDiffusionModel +X = np.load("/tmp/fd_X.npy") +with open("/tmp/fd_meta.json") as f: + meta = json.load(f) +cat_indexes = meta["cat_indexes"] +print( + "[ForestDiffusion] train config: " + f"rows={X.shape[0]} cols={X.shape[1]} n_t=20 " + f"n_estimators=100 duplicate_K=20 n_jobs=2 " + f"xgb_verbosity=1", + flush=True, +) +m = ForestDiffusionModel( + X, n_t=20, n_estimators=100, duplicate_K=20, n_jobs=2, + model="xgboost", max_depth=6, tree_method="hist", cat_indexes=cat_indexes, + verbosity=1, +) +joblib.dump((m, meta), "/tmp/fd_model.joblib") +print("ForestDiffusion train OK") + +shutil.copy('/tmp/fd_model.joblib', r'/work/output-Benchmark-trainonly-v1/m4/forestdiffusion/forest-m4-20260501_180515/forestdiffusion_model.joblib') diff --git a/timecost/m4/forestdiffusion/forest-m4-20260501_180515/forest-m4-2217-20260501_180613.csv b/timecost/m4/forestdiffusion/forest-m4-20260501_180515/forest-m4-2217-20260501_180613.csv new file mode 100644 index 0000000000000000000000000000000000000000..d30aed8d50de2c4dbbe266ebe0078a3838f8bc0b --- /dev/null +++ b/timecost/m4/forestdiffusion/forest-m4-20260501_180515/forest-m4-2217-20260501_180613.csv @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:6e764181c7250d24f9cfc643be0c2f147bfa49b503a7447ef06154f46469965d +size 184302 diff --git a/timecost/m4/forestdiffusion/forest-m4-20260501_180515/forestdiffusion_model.joblib b/timecost/m4/forestdiffusion/forest-m4-20260501_180515/forestdiffusion_model.joblib new file mode 100644 index 0000000000000000000000000000000000000000..cf5dbfcc3f0cbd8622d6359a378cf96f45d9b3fb --- /dev/null +++ b/timecost/m4/forestdiffusion/forest-m4-20260501_180515/forestdiffusion_model.joblib @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:e5441860108c9d0dc83f869bb3de0909d36382ceada4791c9e919556f81e9e5d +size 83389261 diff --git a/timecost/m4/forestdiffusion/forest-m4-20260501_180515/gen_20260501_180613.log b/timecost/m4/forestdiffusion/forest-m4-20260501_180515/gen_20260501_180613.log new file mode 100644 index 0000000000000000000000000000000000000000..c35ca2f556f604f7dc47fbd89beedf075e8f5e64 --- /dev/null +++ b/timecost/m4/forestdiffusion/forest-m4-20260501_180515/gen_20260501_180613.log @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:1165091351583dd9b06ceed67097a7d6651aae2370bc221259adf13f6bcfede0 +size 294 diff --git a/timecost/m4/forestdiffusion/forest-m4-20260501_180515/input_snapshot.json b/timecost/m4/forestdiffusion/forest-m4-20260501_180515/input_snapshot.json new file mode 100644 index 0000000000000000000000000000000000000000..5daa6d8c1d862349e305d0a5fcbd26d5361342b8 --- /dev/null +++ b/timecost/m4/forestdiffusion/forest-m4-20260501_180515/input_snapshot.json @@ -0,0 +1,36 @@ +{ + "dataset_id": "m4", + "model": "forestdiffusion", + "inputs": { + "train_csv": { + "path": "/data/jialinzhang/SynthesizePipeline-server/DatasetNew/m4/m4-train.csv", + "exists": true, + "size": 92191, + "sha256": "396b9d409ca21bf4a4cd329bdf5b7796aa0ae6356fa8d89b8eb669b5880b81f1" + }, + "val_csv": { + "path": "/data/jialinzhang/SynthesizePipeline-server/DatasetNew/m4/m4-val.csv", + "exists": true, + "size": 11482, + "sha256": "ee3c247d02f56e1687d03c381e13125d6a3a2a411ac7f202ba8520a4be9f1784" + }, + "test_csv": { + "path": "/data/jialinzhang/SynthesizePipeline-server/DatasetNew/m4/m4-test.csv", + "exists": true, + "size": 11559, + "sha256": "cadb9941124001b8fa7cb1ebae43b70a9ca56294f4df4d3c2f22c164c41757d4" + }, + "profile_json": { + "path": "/data/jialinzhang/SynthesizePipeline-server/DatasetNew/artifacts/data_core/tabular/m4/m4-dataset_profile.json", + "exists": true, + "size": 3336, + "sha256": "83e2764810e4a0e8cdece3a28dbd9134b7c9df6f2e56953e46d024ad2c4e035f" + }, + "contract_json": { + "path": "/data/jialinzhang/SynthesizePipeline-server/DatasetNew/artifacts/data_core/tabular/m4/m4-dataset_contract_v1.json", + "exists": true, + "size": 3810, + "sha256": "c23641b258629a845b164099bd0132886f8f6d0100e990494e0f92540f8987d9" + } + } +} \ No newline at end of file diff --git a/timecost/m4/forestdiffusion/forest-m4-20260501_180515/models_fd/model.joblib b/timecost/m4/forestdiffusion/forest-m4-20260501_180515/models_fd/model.joblib new file mode 100644 index 0000000000000000000000000000000000000000..cf5dbfcc3f0cbd8622d6359a378cf96f45d9b3fb --- /dev/null +++ b/timecost/m4/forestdiffusion/forest-m4-20260501_180515/models_fd/model.joblib @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:e5441860108c9d0dc83f869bb3de0909d36382ceada4791c9e919556f81e9e5d +size 83389261 diff --git a/timecost/m4/forestdiffusion/forest-m4-20260501_180515/public_gate/normalized_schema_snapshot.json b/timecost/m4/forestdiffusion/forest-m4-20260501_180515/public_gate/normalized_schema_snapshot.json new file mode 100644 index 0000000000000000000000000000000000000000..31ed9818686b11907df75e872e4ffbe010330880 --- /dev/null +++ b/timecost/m4/forestdiffusion/forest-m4-20260501_180515/public_gate/normalized_schema_snapshot.json @@ -0,0 +1,147 @@ +{ + "dataset_id": "m4", + "target_column": "charges", + "task_type": "regression", + "columns": [ + { + "name": "age", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 47, + "unique_ratio": 0.0212, + "example_values": [ + "46", + "38", + "19", + "27", + "26" + ] + } + }, + { + "name": "sex", + "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.000902, + "example_values": [ + "female", + "male" + ] + } + }, + { + "name": "bmi", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 538, + "unique_ratio": 0.24267, + "example_values": [ + "23.655", + "19.3", + "30.59", + "32.67", + "29.45" + ] + } + }, + { + "name": "children", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 6, + "unique_ratio": 0.002706, + "example_values": [ + "1", + "0", + "3", + "2", + "5" + ] + } + }, + { + "name": "smoker", + "role": "feature", + "semantic_type": "boolean", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 2, + "unique_ratio": 0.000902, + "example_values": [ + "yes", + "no" + ] + } + }, + { + "name": "region", + "role": "feature", + "semantic_type": "categorical", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 4, + "unique_ratio": 0.001804, + "example_values": [ + "northwest", + "southwest", + "southeast", + "northeast" + ] + } + }, + { + "name": "charges", + "role": "target", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 1281, + "unique_ratio": 0.577808, + "example_values": [ + "21677.28345", + "15820.699", + "1639.5631", + "2497.0383", + "2897.3235" + ] + } + } + ] +} \ No newline at end of file diff --git a/timecost/m4/forestdiffusion/forest-m4-20260501_180515/public_gate/public_gate_report.json b/timecost/m4/forestdiffusion/forest-m4-20260501_180515/public_gate/public_gate_report.json new file mode 100644 index 0000000000000000000000000000000000000000..e7a25408e2574124629ea9437356551e4d6f4790 --- /dev/null +++ b/timecost/m4/forestdiffusion/forest-m4-20260501_180515/public_gate/public_gate_report.json @@ -0,0 +1,37 @@ +{ + "dataset_id": "m4", + "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": "charges", + "task_type": "regression", + "input_splits": { + "train": "/data/jialinzhang/SynthesizePipeline-server/DatasetNew/m4/m4-train.csv", + "val": "/data/jialinzhang/SynthesizePipeline-server/DatasetNew/m4/m4-val.csv", + "test": "/data/jialinzhang/SynthesizePipeline-server/DatasetNew/m4/m4-test.csv" + } +} \ No newline at end of file diff --git a/timecost/m4/forestdiffusion/forest-m4-20260501_180515/public_gate/staged_input_manifest.json b/timecost/m4/forestdiffusion/forest-m4-20260501_180515/public_gate/staged_input_manifest.json new file mode 100644 index 0000000000000000000000000000000000000000..59c81493a710d9c0f09f2eda972818ddedcb844c --- /dev/null +++ b/timecost/m4/forestdiffusion/forest-m4-20260501_180515/public_gate/staged_input_manifest.json @@ -0,0 +1,152 @@ +{ + "dataset_id": "m4", + "target_column": "charges", + "task_type": "regression", + "train_csv": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/m4/forestdiffusion/forest-m4-20260501_180515/staged/public/train.csv", + "val_csv": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/m4/forestdiffusion/forest-m4-20260501_180515/staged/public/val.csv", + "test_csv": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/m4/forestdiffusion/forest-m4-20260501_180515/staged/public/test.csv", + "features_json": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/m4/forestdiffusion/forest-m4-20260501_180515/staged/public/staged_features.json", + "public_gate_report": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/m4/forestdiffusion/forest-m4-20260501_180515/public_gate/public_gate_report.json", + "column_schema": [ + { + "name": "age", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 47, + "unique_ratio": 0.0212, + "example_values": [ + "46", + "38", + "19", + "27", + "26" + ] + } + }, + { + "name": "sex", + "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.000902, + "example_values": [ + "female", + "male" + ] + } + }, + { + "name": "bmi", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 538, + "unique_ratio": 0.24267, + "example_values": [ + "23.655", + "19.3", + "30.59", + "32.67", + "29.45" + ] + } + }, + { + "name": "children", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 6, + "unique_ratio": 0.002706, + "example_values": [ + "1", + "0", + "3", + "2", + "5" + ] + } + }, + { + "name": "smoker", + "role": "feature", + "semantic_type": "boolean", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 2, + "unique_ratio": 0.000902, + "example_values": [ + "yes", + "no" + ] + } + }, + { + "name": "region", + "role": "feature", + "semantic_type": "categorical", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 4, + "unique_ratio": 0.001804, + "example_values": [ + "northwest", + "southwest", + "southeast", + "northeast" + ] + } + }, + { + "name": "charges", + "role": "target", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 1281, + "unique_ratio": 0.577808, + "example_values": [ + "21677.28345", + "15820.699", + "1639.5631", + "2497.0383", + "2897.3235" + ] + } + } + ] +} \ No newline at end of file diff --git a/timecost/m4/forestdiffusion/forest-m4-20260501_180515/runtime_result.json b/timecost/m4/forestdiffusion/forest-m4-20260501_180515/runtime_result.json new file mode 100644 index 0000000000000000000000000000000000000000..72c689add5376a1424244cc8baadbe05f67a23a5 --- /dev/null +++ b/timecost/m4/forestdiffusion/forest-m4-20260501_180515/runtime_result.json @@ -0,0 +1,27 @@ +{ + "dataset_id": "m4", + "model": "forestdiffusion", + "run_id": "forest-m4-20260501_180515", + "public_gate_status": "pass", + "adapter_ready_status": "pass", + "train_status": "success", + "generate_status": "success", + "reason_code": null, + "reason_detail": null, + "artifacts": { + "synthetic_csv": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/m4/forestdiffusion/forest-m4-20260501_180515/forest-m4-2217-20260501_180613.csv", + "model_path": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/m4/forestdiffusion/forest-m4-20260501_180515/models_fd/model.joblib" + }, + "timings": { + "train": { + "started_at": "2026-05-01T18:05:15", + "ended_at": "2026-05-01T18:06:13", + "duration_sec": 57.88 + }, + "generate": { + "started_at": "2026-05-01T18:06:13", + "ended_at": "2026-05-01T18:06:16", + "duration_sec": 2.913 + } + } +} \ No newline at end of file diff --git a/timecost/m4/forestdiffusion/forest-m4-20260501_180515/staged/forestdiffusion/adapter_report.json b/timecost/m4/forestdiffusion/forest-m4-20260501_180515/staged/forestdiffusion/adapter_report.json new file mode 100644 index 0000000000000000000000000000000000000000..56064736c23b7a069eff8b9fd4b35aa3d71c72f5 --- /dev/null +++ b/timecost/m4/forestdiffusion/forest-m4-20260501_180515/staged/forestdiffusion/adapter_report.json @@ -0,0 +1,7 @@ +{ + "adapter_ready_status": "pass", + "adapter_fail_reason_code": null, + "adapter_fail_detail": null, + "adapter_transforms_applied": [], + "model_input_manifest": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/m4/forestdiffusion/forest-m4-20260501_180515/staged/forestdiffusion/model_input_manifest.json" +} \ No newline at end of file diff --git a/timecost/m4/forestdiffusion/forest-m4-20260501_180515/staged/forestdiffusion/adapter_transforms_applied.json b/timecost/m4/forestdiffusion/forest-m4-20260501_180515/staged/forestdiffusion/adapter_transforms_applied.json new file mode 100644 index 0000000000000000000000000000000000000000..0637a088a01e8ddab3bf3fa98dbe804cbde1a0dc --- /dev/null +++ b/timecost/m4/forestdiffusion/forest-m4-20260501_180515/staged/forestdiffusion/adapter_transforms_applied.json @@ -0,0 +1 @@ +[] \ No newline at end of file diff --git a/timecost/m4/forestdiffusion/forest-m4-20260501_180515/staged/forestdiffusion/model_input_manifest.json b/timecost/m4/forestdiffusion/forest-m4-20260501_180515/staged/forestdiffusion/model_input_manifest.json new file mode 100644 index 0000000000000000000000000000000000000000..f83a69a894d04252fc073ae019fd608f8fc425d4 --- /dev/null +++ b/timecost/m4/forestdiffusion/forest-m4-20260501_180515/staged/forestdiffusion/model_input_manifest.json @@ -0,0 +1,154 @@ +{ + "dataset_id": "m4", + "model": "forestdiffusion", + "target_column": "charges", + "task_type": "regression", + "column_schema": [ + { + "name": "age", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 47, + "unique_ratio": 0.0212, + "example_values": [ + "46", + "38", + "19", + "27", + "26" + ] + } + }, + { + "name": "sex", + "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.000902, + "example_values": [ + "female", + "male" + ] + } + }, + { + "name": "bmi", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 538, + "unique_ratio": 0.24267, + "example_values": [ + "23.655", + "19.3", + "30.59", + "32.67", + "29.45" + ] + } + }, + { + "name": "children", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 6, + "unique_ratio": 0.002706, + "example_values": [ + "1", + "0", + "3", + "2", + "5" + ] + } + }, + { + "name": "smoker", + "role": "feature", + "semantic_type": "boolean", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 2, + "unique_ratio": 0.000902, + "example_values": [ + "yes", + "no" + ] + } + }, + { + "name": "region", + "role": "feature", + "semantic_type": "categorical", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 4, + "unique_ratio": 0.001804, + "example_values": [ + "northwest", + "southwest", + "southeast", + "northeast" + ] + } + }, + { + "name": "charges", + "role": "target", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 1281, + "unique_ratio": 0.577808, + "example_values": [ + "21677.28345", + "15820.699", + "1639.5631", + "2497.0383", + "2897.3235" + ] + } + } + ], + "public_manifest": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/m4/forestdiffusion/forest-m4-20260501_180515/public_gate/staged_input_manifest.json", + "train_csv": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/m4/forestdiffusion/forest-m4-20260501_180515/staged/public/train.csv", + "val_csv": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/m4/forestdiffusion/forest-m4-20260501_180515/staged/public/val.csv", + "test_csv": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/m4/forestdiffusion/forest-m4-20260501_180515/staged/public/test.csv", + "features_json": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/m4/forestdiffusion/forest-m4-20260501_180515/staged/public/staged_features.json", + "public_gate_report": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/m4/forestdiffusion/forest-m4-20260501_180515/public_gate/public_gate_report.json" +} \ No newline at end of file diff --git a/timecost/m4/forestdiffusion/forest-m4-20260501_180515/staged/public/staged_features.json b/timecost/m4/forestdiffusion/forest-m4-20260501_180515/staged/public/staged_features.json new file mode 100644 index 0000000000000000000000000000000000000000..d6acd098c35111f423f3ffff2cfd1754bc5dfebc --- /dev/null +++ b/timecost/m4/forestdiffusion/forest-m4-20260501_180515/staged/public/staged_features.json @@ -0,0 +1,37 @@ +[ + { + "feature_name": "age", + "data_type": "continuous", + "is_target": false + }, + { + "feature_name": "sex", + "data_type": "categorical", + "is_target": false + }, + { + "feature_name": "bmi", + "data_type": "continuous", + "is_target": false + }, + { + "feature_name": "children", + "data_type": "continuous", + "is_target": false + }, + { + "feature_name": "smoker", + "data_type": "binary", + "is_target": false + }, + { + "feature_name": "region", + "data_type": "categorical", + "is_target": false + }, + { + "feature_name": "charges", + "data_type": "continuous", + "is_target": true + } +] \ No newline at end of file diff --git a/timecost/m4/forestdiffusion/forest-m4-20260501_180515/staged/public/test.csv b/timecost/m4/forestdiffusion/forest-m4-20260501_180515/staged/public/test.csv new file mode 100644 index 0000000000000000000000000000000000000000..c88a2e7cfcd715bb421cb56eb078033da45c4dc8 --- /dev/null +++ b/timecost/m4/forestdiffusion/forest-m4-20260501_180515/staged/public/test.csv @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:4c541b677fb2d45c5bc79338eeee9fd8c91484b195a0c2c546c2fbabf113b7ea +size 11298 diff --git a/timecost/m4/forestdiffusion/forest-m4-20260501_180515/staged/public/train.csv b/timecost/m4/forestdiffusion/forest-m4-20260501_180515/staged/public/train.csv new file mode 100644 index 0000000000000000000000000000000000000000..5a05019d786529e0617291766c4fbe016ca01bf5 --- /dev/null +++ b/timecost/m4/forestdiffusion/forest-m4-20260501_180515/staged/public/train.csv @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:614ebfac5f41d6f661aff675fa18c0f933a8d9bcc77ea71b7b2360c2f0155837 +size 90069 diff --git a/timecost/m4/forestdiffusion/forest-m4-20260501_180515/staged/public/val.csv b/timecost/m4/forestdiffusion/forest-m4-20260501_180515/staged/public/val.csv new file mode 100644 index 0000000000000000000000000000000000000000..d78fe5ad1537c437ba9ac2629f2aa60a6c17e708 --- /dev/null +++ b/timecost/m4/forestdiffusion/forest-m4-20260501_180515/staged/public/val.csv @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:e55f5edbe7942ff01630de91a9c70dfbc6445eba76c7b970350364546b67c2d7 +size 11218 diff --git a/timecost/m4/forestdiffusion/forest-m4-20260501_180515/train_20260501_180515.log b/timecost/m4/forestdiffusion/forest-m4-20260501_180515/train_20260501_180515.log new file mode 100644 index 0000000000000000000000000000000000000000..f49eeca23976bdb11642498eb2568d8074f1c6c6 --- /dev/null +++ b/timecost/m4/forestdiffusion/forest-m4-20260501_180515/train_20260501_180515.log @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:04408cebec8e9a4ffa7defd33433944a7702ac6869da550bee775ad1fcf1ccb8 +size 421 diff --git a/timecost/m4/realtabformer/rtf-m4-20260501_033611/gen_20260501_034506.log b/timecost/m4/realtabformer/rtf-m4-20260501_033611/gen_20260501_034506.log new file mode 100644 index 0000000000000000000000000000000000000000..1ffb072f68684890f4fa4ab986becf7af321e3c3 --- /dev/null +++ b/timecost/m4/realtabformer/rtf-m4-20260501_033611/gen_20260501_034506.log @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:cd13f5b783d0993e6b1a0e1b060b47ff9e4273ecbf113118deebd0f9b433305c +size 1732 diff --git a/timecost/m4/realtabformer/rtf-m4-20260501_033611/input_snapshot.json b/timecost/m4/realtabformer/rtf-m4-20260501_033611/input_snapshot.json new file mode 100644 index 0000000000000000000000000000000000000000..9db22a39e5ccaaeedd23cf99efa32e16d4ed388a --- /dev/null +++ b/timecost/m4/realtabformer/rtf-m4-20260501_033611/input_snapshot.json @@ -0,0 +1,36 @@ +{ + "dataset_id": "m4", + "model": "realtabformer", + "inputs": { + "train_csv": { + "path": "/data/jialinzhang/SynthesizePipeline-server/DatasetNew/m4/m4-train.csv", + "exists": true, + "size": 92191, + "sha256": "396b9d409ca21bf4a4cd329bdf5b7796aa0ae6356fa8d89b8eb669b5880b81f1" + }, + "val_csv": { + "path": "/data/jialinzhang/SynthesizePipeline-server/DatasetNew/m4/m4-val.csv", + "exists": true, + "size": 11482, + "sha256": "ee3c247d02f56e1687d03c381e13125d6a3a2a411ac7f202ba8520a4be9f1784" + }, + "test_csv": { + "path": "/data/jialinzhang/SynthesizePipeline-server/DatasetNew/m4/m4-test.csv", + "exists": true, + "size": 11559, + "sha256": "cadb9941124001b8fa7cb1ebae43b70a9ca56294f4df4d3c2f22c164c41757d4" + }, + "profile_json": { + "path": "/data/jialinzhang/SynthesizePipeline-server/DatasetNew/artifacts/data_core/tabular/m4/m4-dataset_profile.json", + "exists": true, + "size": 3336, + "sha256": "83e2764810e4a0e8cdece3a28dbd9134b7c9df6f2e56953e46d024ad2c4e035f" + }, + "contract_json": { + "path": "/data/jialinzhang/SynthesizePipeline-server/DatasetNew/artifacts/data_core/tabular/m4/m4-dataset_contract_v1.json", + "exists": true, + "size": 3810, + "sha256": "c23641b258629a845b164099bd0132886f8f6d0100e990494e0f92540f8987d9" + } + } +} \ No newline at end of file diff --git a/timecost/m4/realtabformer/rtf-m4-20260501_033611/models_100epochs/id000017775783042094469120/rtf_config.json b/timecost/m4/realtabformer/rtf-m4-20260501_033611/models_100epochs/id000017775783042094469120/rtf_config.json new file mode 100644 index 0000000000000000000000000000000000000000..87e6c03c6097f811621a00bee440bd0725656468 --- /dev/null +++ b/timecost/m4/realtabformer/rtf-m4-20260501_033611/models_100epochs/id000017775783042094469120/rtf_config.json @@ -0,0 +1 @@ +{"model_type": "tabular", "tabular_config": {"transformers_version": "5.5.3", "architectures": ["GPT2LMHeadModel"], "output_hidden_states": false, "return_dict": true, "dtype": "float32", "chunk_size_feed_forward": 0, "is_encoder_decoder": false, "id2label": {"0": "LABEL_0", "1": "LABEL_1"}, "label2id": {"LABEL_0": 0, "LABEL_1": 1}, "problem_type": null, "vocab_size": 167, "n_positions": 1024, "n_embd": 768, "n_layer": 6, "n_head": 12, "n_inner": null, "activation_function": "gelu_new", "resid_pdrop": 0.1, "embd_pdrop": 0.1, "attn_pdrop": 0.1, "layer_norm_epsilon": 1e-05, "initializer_range": 0.02, "summary_type": "cls_index", "summary_use_proj": true, "summary_activation": null, "summary_proj_to_labels": true, "summary_first_dropout": 0.1, "scale_attn_weights": true, "use_cache": false, "bos_token_id": 5, "eos_token_id": 6, "pad_token_id": null, "scale_attn_by_inverse_layer_idx": false, "reorder_and_upcast_attn": false, "add_cross_attention": false, "tie_word_embeddings": true, "_name_or_path": "", "model_type": "gpt2", "output_attentions": false}, "checkpoints_dir": "rtf_checkpoints", "samples_save_dir": "rtf_samples", "full_save_dir": "rtf_full_save", "epochs": 100, "batch_size": 8, "early_stopping_patience": 5, "early_stopping_threshold": 0, "training_args_kwargs": {"eval_strategy": "no", "output_dir": "rtf_checkpoints", "metric_for_best_model": "loss", "num_train_epochs": 100, "per_device_train_batch_size": 8, "per_device_eval_batch_size": 8, "gradient_accumulation_steps": 4, "remove_unused_columns": true, "logging_steps": 100, "save_steps": 100, "eval_steps": 100, "load_best_model_at_end": false, "save_total_limit": 6, "optim": "adamw_torch"}, "train_size": 1, "mask_rate": 0, "columns": ["age", "sex", "bmi", "children", "smoker", "region", "charges"], "column_dtypes": {"age": "int64", "sex": "object", "bmi": "float64", "children": "int64", "smoker": "object", "region": "object", "charges": "float64"}, "column_has_missing": {"age": false, "sex": false, "bmi": false, "children": false, "smoker": false, "region": false, "charges": false}, "drop_na_cols": ["age", "sex", "bmi", "children", "smoker", "region", "charges"], "processed_columns": ["0___NUMERIC___age_00", "0___NUMERIC___age_01", "1___CATEGORICAL___sex", "2___NUMERIC___bmi_00", "2___NUMERIC___bmi_01", "2___NUMERIC___bmi_02", "2___NUMERIC___bmi_03", "2___NUMERIC___bmi_04", "2___NUMERIC___bmi_05", "3___NUMERIC___children_00", "4___CATEGORICAL___smoker", "5___CATEGORICAL___region", "6___NUMERIC___charges_00", "6___NUMERIC___charges_01", "6___NUMERIC___charges_02", "6___NUMERIC___charges_03", "6___NUMERIC___charges_04", "6___NUMERIC___charges_05", "6___NUMERIC___charges_06", "6___NUMERIC___charges_07", "6___NUMERIC___charges_08", "6___NUMERIC___charges_09"], "numeric_columns": ["age", "bmi", "children", "charges"], "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___age_00___1", "12": "0___NUMERIC___age_00___2", "13": "0___NUMERIC___age_00___3", "14": "0___NUMERIC___age_00___4", "15": "0___NUMERIC___age_00___5", "16": "0___NUMERIC___age_00___6", "17": "0___NUMERIC___age_01___0", "18": "0___NUMERIC___age_01___1", "19": "0___NUMERIC___age_01___2", "20": "0___NUMERIC___age_01___3", "21": "0___NUMERIC___age_01___4", "22": "0___NUMERIC___age_01___5", "23": "0___NUMERIC___age_01___6", "24": "0___NUMERIC___age_01___7", "25": "0___NUMERIC___age_01___8", "26": "0___NUMERIC___age_01___9", "27": "1___CATEGORICAL___sex___female", "28": "1___CATEGORICAL___sex___male", "29": "2___NUMERIC___bmi_00___1", "30": "2___NUMERIC___bmi_00___2", "31": "2___NUMERIC___bmi_00___3", "32": "2___NUMERIC___bmi_00___4", "33": "2___NUMERIC___bmi_00___5", "34": "2___NUMERIC___bmi_01___0", "35": "2___NUMERIC___bmi_01___1", "36": "2___NUMERIC___bmi_01___2", "37": "2___NUMERIC___bmi_01___3", "38": "2___NUMERIC___bmi_01___4", "39": "2___NUMERIC___bmi_01___5", "40": "2___NUMERIC___bmi_01___6", "41": "2___NUMERIC___bmi_01___7", "42": "2___NUMERIC___bmi_01___8", "43": "2___NUMERIC___bmi_01___9", "44": "2___NUMERIC___bmi_02___.", "45": "2___NUMERIC___bmi_03___0", "46": "2___NUMERIC___bmi_03___1", "47": "2___NUMERIC___bmi_03___2", "48": "2___NUMERIC___bmi_03___3", "49": "2___NUMERIC___bmi_03___4", "50": "2___NUMERIC___bmi_03___5", "51": "2___NUMERIC___bmi_03___6", "52": "2___NUMERIC___bmi_03___7", "53": "2___NUMERIC___bmi_03___8", "54": "2___NUMERIC___bmi_03___9", "55": "2___NUMERIC___bmi_04___0", "56": "2___NUMERIC___bmi_04___1", "57": "2___NUMERIC___bmi_04___2", "58": "2___NUMERIC___bmi_04___3", "59": "2___NUMERIC___bmi_04___4", "60": "2___NUMERIC___bmi_04___5", "61": "2___NUMERIC___bmi_04___6", "62": "2___NUMERIC___bmi_04___7", "63": "2___NUMERIC___bmi_04___8", "64": "2___NUMERIC___bmi_04___9", "65": "2___NUMERIC___bmi_05___0", "66": "2___NUMERIC___bmi_05___5", "67": "3___NUMERIC___children_00___0", "68": "3___NUMERIC___children_00___1", "69": "3___NUMERIC___children_00___2", "70": "3___NUMERIC___children_00___3", "71": "3___NUMERIC___children_00___4", "72": "3___NUMERIC___children_00___5", "73": "4___CATEGORICAL___smoker___no", "74": "4___CATEGORICAL___smoker___yes", "75": "5___CATEGORICAL___region___northeast", "76": "5___CATEGORICAL___region___northwest", "77": "5___CATEGORICAL___region___southeast", "78": "5___CATEGORICAL___region___southwest", "79": "6___NUMERIC___charges_00___0", "80": "6___NUMERIC___charges_00___1", "81": "6___NUMERIC___charges_00___2", "82": "6___NUMERIC___charges_00___3", "83": "6___NUMERIC___charges_00___4", "84": "6___NUMERIC___charges_00___5", "85": "6___NUMERIC___charges_00___6", "86": "6___NUMERIC___charges_01___0", "87": "6___NUMERIC___charges_01___1", "88": "6___NUMERIC___charges_01___2", "89": "6___NUMERIC___charges_01___3", "90": "6___NUMERIC___charges_01___4", "91": "6___NUMERIC___charges_01___5", "92": "6___NUMERIC___charges_01___6", "93": "6___NUMERIC___charges_01___7", "94": "6___NUMERIC___charges_01___8", "95": "6___NUMERIC___charges_01___9", "96": "6___NUMERIC___charges_02___0", "97": "6___NUMERIC___charges_02___1", "98": "6___NUMERIC___charges_02___2", "99": "6___NUMERIC___charges_02___3", "100": "6___NUMERIC___charges_02___4", "101": "6___NUMERIC___charges_02___5", "102": "6___NUMERIC___charges_02___6", "103": "6___NUMERIC___charges_02___7", "104": "6___NUMERIC___charges_02___8", "105": "6___NUMERIC___charges_02___9", "106": "6___NUMERIC___charges_03___0", "107": "6___NUMERIC___charges_03___1", "108": "6___NUMERIC___charges_03___2", "109": "6___NUMERIC___charges_03___3", "110": "6___NUMERIC___charges_03___4", "111": "6___NUMERIC___charges_03___5", "112": "6___NUMERIC___charges_03___6", "113": "6___NUMERIC___charges_03___7", "114": "6___NUMERIC___charges_03___8", "115": "6___NUMERIC___charges_03___9", "116": "6___NUMERIC___charges_04___0", "117": "6___NUMERIC___charges_04___1", "118": "6___NUMERIC___charges_04___2", "119": "6___NUMERIC___charges_04___3", "120": "6___NUMERIC___charges_04___4", "121": "6___NUMERIC___charges_04___5", "122": "6___NUMERIC___charges_04___6", "123": "6___NUMERIC___charges_04___7", "124": "6___NUMERIC___charges_04___8", "125": "6___NUMERIC___charges_04___9", "126": "6___NUMERIC___charges_05___.", "127": "6___NUMERIC___charges_06___0", "128": "6___NUMERIC___charges_06___1", "129": "6___NUMERIC___charges_06___2", "130": "6___NUMERIC___charges_06___3", "131": "6___NUMERIC___charges_06___4", "132": "6___NUMERIC___charges_06___5", "133": "6___NUMERIC___charges_06___6", "134": "6___NUMERIC___charges_06___7", "135": "6___NUMERIC___charges_06___8", "136": "6___NUMERIC___charges_06___9", "137": "6___NUMERIC___charges_07___0", "138": "6___NUMERIC___charges_07___1", "139": "6___NUMERIC___charges_07___2", "140": "6___NUMERIC___charges_07___3", "141": "6___NUMERIC___charges_07___4", "142": "6___NUMERIC___charges_07___5", "143": "6___NUMERIC___charges_07___6", "144": "6___NUMERIC___charges_07___7", "145": "6___NUMERIC___charges_07___8", "146": "6___NUMERIC___charges_07___9", "147": "6___NUMERIC___charges_08___0", "148": "6___NUMERIC___charges_08___1", "149": "6___NUMERIC___charges_08___2", "150": "6___NUMERIC___charges_08___3", "151": "6___NUMERIC___charges_08___4", "152": "6___NUMERIC___charges_08___5", "153": "6___NUMERIC___charges_08___6", "154": "6___NUMERIC___charges_08___7", "155": "6___NUMERIC___charges_08___8", "156": "6___NUMERIC___charges_08___9", "157": "6___NUMERIC___charges_09___0", "158": "6___NUMERIC___charges_09___1", "159": "6___NUMERIC___charges_09___2", "160": "6___NUMERIC___charges_09___3", "161": "6___NUMERIC___charges_09___4", "162": "6___NUMERIC___charges_09___5", "163": "6___NUMERIC___charges_09___6", "164": "6___NUMERIC___charges_09___7", "165": "6___NUMERIC___charges_09___8", "166": "6___NUMERIC___charges_09___9"}, "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___age_00___1": 11, "0___NUMERIC___age_00___2": 12, "0___NUMERIC___age_00___3": 13, "0___NUMERIC___age_00___4": 14, "0___NUMERIC___age_00___5": 15, "0___NUMERIC___age_00___6": 16, "0___NUMERIC___age_01___0": 17, "0___NUMERIC___age_01___1": 18, "0___NUMERIC___age_01___2": 19, "0___NUMERIC___age_01___3": 20, "0___NUMERIC___age_01___4": 21, "0___NUMERIC___age_01___5": 22, "0___NUMERIC___age_01___6": 23, "0___NUMERIC___age_01___7": 24, "0___NUMERIC___age_01___8": 25, "0___NUMERIC___age_01___9": 26, "1___CATEGORICAL___sex___female": 27, "1___CATEGORICAL___sex___male": 28, "2___NUMERIC___bmi_00___1": 29, "2___NUMERIC___bmi_00___2": 30, "2___NUMERIC___bmi_00___3": 31, "2___NUMERIC___bmi_00___4": 32, "2___NUMERIC___bmi_00___5": 33, "2___NUMERIC___bmi_01___0": 34, "2___NUMERIC___bmi_01___1": 35, "2___NUMERIC___bmi_01___2": 36, "2___NUMERIC___bmi_01___3": 37, "2___NUMERIC___bmi_01___4": 38, "2___NUMERIC___bmi_01___5": 39, "2___NUMERIC___bmi_01___6": 40, "2___NUMERIC___bmi_01___7": 41, "2___NUMERIC___bmi_01___8": 42, "2___NUMERIC___bmi_01___9": 43, "2___NUMERIC___bmi_02___.": 44, "2___NUMERIC___bmi_03___0": 45, "2___NUMERIC___bmi_03___1": 46, "2___NUMERIC___bmi_03___2": 47, "2___NUMERIC___bmi_03___3": 48, "2___NUMERIC___bmi_03___4": 49, "2___NUMERIC___bmi_03___5": 50, "2___NUMERIC___bmi_03___6": 51, "2___NUMERIC___bmi_03___7": 52, "2___NUMERIC___bmi_03___8": 53, "2___NUMERIC___bmi_03___9": 54, "2___NUMERIC___bmi_04___0": 55, "2___NUMERIC___bmi_04___1": 56, "2___NUMERIC___bmi_04___2": 57, "2___NUMERIC___bmi_04___3": 58, "2___NUMERIC___bmi_04___4": 59, "2___NUMERIC___bmi_04___5": 60, "2___NUMERIC___bmi_04___6": 61, "2___NUMERIC___bmi_04___7": 62, "2___NUMERIC___bmi_04___8": 63, "2___NUMERIC___bmi_04___9": 64, "2___NUMERIC___bmi_05___0": 65, "2___NUMERIC___bmi_05___5": 66, "3___NUMERIC___children_00___0": 67, "3___NUMERIC___children_00___1": 68, "3___NUMERIC___children_00___2": 69, "3___NUMERIC___children_00___3": 70, "3___NUMERIC___children_00___4": 71, "3___NUMERIC___children_00___5": 72, "4___CATEGORICAL___smoker___no": 73, "4___CATEGORICAL___smoker___yes": 74, "5___CATEGORICAL___region___northeast": 75, "5___CATEGORICAL___region___northwest": 76, "5___CATEGORICAL___region___southeast": 77, "5___CATEGORICAL___region___southwest": 78, "6___NUMERIC___charges_00___0": 79, "6___NUMERIC___charges_00___1": 80, "6___NUMERIC___charges_00___2": 81, "6___NUMERIC___charges_00___3": 82, "6___NUMERIC___charges_00___4": 83, "6___NUMERIC___charges_00___5": 84, "6___NUMERIC___charges_00___6": 85, "6___NUMERIC___charges_01___0": 86, "6___NUMERIC___charges_01___1": 87, "6___NUMERIC___charges_01___2": 88, "6___NUMERIC___charges_01___3": 89, "6___NUMERIC___charges_01___4": 90, "6___NUMERIC___charges_01___5": 91, "6___NUMERIC___charges_01___6": 92, "6___NUMERIC___charges_01___7": 93, "6___NUMERIC___charges_01___8": 94, "6___NUMERIC___charges_01___9": 95, "6___NUMERIC___charges_02___0": 96, "6___NUMERIC___charges_02___1": 97, "6___NUMERIC___charges_02___2": 98, "6___NUMERIC___charges_02___3": 99, "6___NUMERIC___charges_02___4": 100, "6___NUMERIC___charges_02___5": 101, "6___NUMERIC___charges_02___6": 102, "6___NUMERIC___charges_02___7": 103, "6___NUMERIC___charges_02___8": 104, "6___NUMERIC___charges_02___9": 105, "6___NUMERIC___charges_03___0": 106, "6___NUMERIC___charges_03___1": 107, "6___NUMERIC___charges_03___2": 108, "6___NUMERIC___charges_03___3": 109, "6___NUMERIC___charges_03___4": 110, "6___NUMERIC___charges_03___5": 111, "6___NUMERIC___charges_03___6": 112, "6___NUMERIC___charges_03___7": 113, "6___NUMERIC___charges_03___8": 114, "6___NUMERIC___charges_03___9": 115, "6___NUMERIC___charges_04___0": 116, "6___NUMERIC___charges_04___1": 117, "6___NUMERIC___charges_04___2": 118, "6___NUMERIC___charges_04___3": 119, "6___NUMERIC___charges_04___4": 120, "6___NUMERIC___charges_04___5": 121, "6___NUMERIC___charges_04___6": 122, "6___NUMERIC___charges_04___7": 123, "6___NUMERIC___charges_04___8": 124, "6___NUMERIC___charges_04___9": 125, "6___NUMERIC___charges_05___.": 126, "6___NUMERIC___charges_06___0": 127, "6___NUMERIC___charges_06___1": 128, "6___NUMERIC___charges_06___2": 129, "6___NUMERIC___charges_06___3": 130, "6___NUMERIC___charges_06___4": 131, "6___NUMERIC___charges_06___5": 132, "6___NUMERIC___charges_06___6": 133, "6___NUMERIC___charges_06___7": 134, "6___NUMERIC___charges_06___8": 135, "6___NUMERIC___charges_06___9": 136, "6___NUMERIC___charges_07___0": 137, "6___NUMERIC___charges_07___1": 138, "6___NUMERIC___charges_07___2": 139, "6___NUMERIC___charges_07___3": 140, "6___NUMERIC___charges_07___4": 141, "6___NUMERIC___charges_07___5": 142, "6___NUMERIC___charges_07___6": 143, "6___NUMERIC___charges_07___7": 144, "6___NUMERIC___charges_07___8": 145, "6___NUMERIC___charges_07___9": 146, "6___NUMERIC___charges_08___0": 147, "6___NUMERIC___charges_08___1": 148, "6___NUMERIC___charges_08___2": 149, "6___NUMERIC___charges_08___3": 150, "6___NUMERIC___charges_08___4": 151, "6___NUMERIC___charges_08___5": 152, "6___NUMERIC___charges_08___6": 153, "6___NUMERIC___charges_08___7": 154, "6___NUMERIC___charges_08___8": 155, "6___NUMERIC___charges_08___9": 156, "6___NUMERIC___charges_09___0": 157, "6___NUMERIC___charges_09___1": 158, "6___NUMERIC___charges_09___2": 159, "6___NUMERIC___charges_09___3": 160, "6___NUMERIC___charges_09___4": 161, "6___NUMERIC___charges_09___5": 162, "6___NUMERIC___charges_09___6": 163, "6___NUMERIC___charges_09___7": 164, "6___NUMERIC___charges_09___8": 165, "6___NUMERIC___charges_09___9": 166}, "column_token_ids": {"0___NUMERIC___age_00": [11, 12, 13, 14, 15, 16], "0___NUMERIC___age_01": [17, 18, 19, 20, 21, 22, 23, 24, 25, 26], "1___CATEGORICAL___sex": [27, 28], "2___NUMERIC___bmi_00": [29, 30, 31, 32, 33], "2___NUMERIC___bmi_01": [34, 35, 36, 37, 38, 39, 40, 41, 42, 43], "2___NUMERIC___bmi_02": [44], "2___NUMERIC___bmi_03": [45, 46, 47, 48, 49, 50, 51, 52, 53, 54], "2___NUMERIC___bmi_04": [55, 56, 57, 58, 59, 60, 61, 62, 63, 64], "2___NUMERIC___bmi_05": [65, 66], "3___NUMERIC___children_00": [67, 68, 69, 70, 71, 72], "4___CATEGORICAL___smoker": [73, 74], "5___CATEGORICAL___region": [75, 76, 77, 78], "6___NUMERIC___charges_00": [79, 80, 81, 82, 83, 84, 85], "6___NUMERIC___charges_01": [86, 87, 88, 89, 90, 91, 92, 93, 94, 95], "6___NUMERIC___charges_02": [96, 97, 98, 99, 100, 101, 102, 103, 104, 105], "6___NUMERIC___charges_03": [106, 107, 108, 109, 110, 111, 112, 113, 114, 115], "6___NUMERIC___charges_04": [116, 117, 118, 119, 120, 121, 122, 123, 124, 125], "6___NUMERIC___charges_05": [126], "6___NUMERIC___charges_06": [127, 128, 129, 130, 131, 132, 133, 134, 135, 136], "6___NUMERIC___charges_07": [137, 138, 139, 140, 141, 142, 143, 144, 145, 146], "6___NUMERIC___charges_08": [147, 148, 149, 150, 151, 152, 153, 154, 155, 156], "6___NUMERIC___charges_09": [157, 158, 159, 160, 161, 162, 163, 164, 165, 166]}}, "tabular_max_length": 24, "relational_max_length": null, "tabular_col_size": 2217, "relational_col_size": null, "col_transform_data": {"age": {"max_len": 10, "numeric_precision": 4, "mx_sig": -1, "zfill": 2, "numeric_nparts": 1}, "bmi": {"max_len": 10, "numeric_precision": 4, "mx_sig": 2, "ljust": 6, "numeric_nparts": 1}, "children": {"max_len": 10, "numeric_precision": 4, "mx_sig": -1, "zfill": 1, "numeric_nparts": 1}, "charges": {"max_len": 10, "numeric_precision": 4, "mx_sig": 5, "ljust": 10, "numeric_nparts": 1}}, "in_col_transform_data": null, "col_idx_ids": {"0": [11, 12, 13, 14, 15, 16], "1": [17, 18, 19, 20, 21, 22, 23, 24, 25, 26], "2": [27, 28], "3": [29, 30, 31, 32, 33], "4": [34, 35, 36, 37, 38, 39, 40, 41, 42, 43], "5": [44], "6": [45, 46, 47, 48, 49, 50, 51, 52, 53, 54], "7": [55, 56, 57, 58, 59, 60, 61, 62, 63, 64], "8": [65, 66], "9": [67, 68, 69, 70, 71, 72], "10": [73, 74], "11": [75, 76, 77, 78], "12": [79, 80, 81, 82, 83, 84, 85], "13": [86, 87, 88, 89, 90, 91, 92, 93, 94, 95], "14": [96, 97, 98, 99, 100, 101, 102, 103, 104, 105], "15": [106, 107, 108, 109, 110, 111, 112, 113, 114, 115], "16": [116, 117, 118, 119, 120, 121, 122, 123, 124, 125], "17": [126], "18": [127, 128, 129, 130, 131, 132, 133, 134, 135, 136], "19": [137, 138, 139, 140, 141, 142, 143, 144, 145, 146], "20": [147, 148, 149, 150, 151, 152, 153, 154, 155, 156], "21": [157, 158, 159, 160, 161, 162, 163, 164, 165, 166]}, "random_state": 1029, "numeric_nparts": 1, "numeric_precision": 4, "numeric_max_len": 10, "experiment_id": "id000017775783042094469120", "trainer_state": null, "target_col": null, "realtabformer_version": "0.2.4"} \ No newline at end of file diff --git a/timecost/m4/realtabformer/rtf-m4-20260501_033611/models_100epochs/id000017775783042094469120/rtf_model.pt b/timecost/m4/realtabformer/rtf-m4-20260501_033611/models_100epochs/id000017775783042094469120/rtf_model.pt new file mode 100644 index 0000000000000000000000000000000000000000..d62b5ed9b79f43902f845a9436f6a59f162796e6 --- /dev/null +++ b/timecost/m4/realtabformer/rtf-m4-20260501_033611/models_100epochs/id000017775783042094469120/rtf_model.pt @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:f8caed3c365182c50722b6cc231d2454fa35b93305aa0578f4755801fadcf7af +size 173802979 diff --git a/timecost/m4/realtabformer/rtf-m4-20260501_033611/public_gate/normalized_schema_snapshot.json b/timecost/m4/realtabformer/rtf-m4-20260501_033611/public_gate/normalized_schema_snapshot.json new file mode 100644 index 0000000000000000000000000000000000000000..31ed9818686b11907df75e872e4ffbe010330880 --- /dev/null +++ b/timecost/m4/realtabformer/rtf-m4-20260501_033611/public_gate/normalized_schema_snapshot.json @@ -0,0 +1,147 @@ +{ + "dataset_id": "m4", + "target_column": "charges", + "task_type": "regression", + "columns": [ + { + "name": "age", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 47, + "unique_ratio": 0.0212, + "example_values": [ + "46", + "38", + "19", + "27", + "26" + ] + } + }, + { + "name": "sex", + "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.000902, + "example_values": [ + "female", + "male" + ] + } + }, + { + "name": "bmi", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 538, + "unique_ratio": 0.24267, + "example_values": [ + "23.655", + "19.3", + "30.59", + "32.67", + "29.45" + ] + } + }, + { + "name": "children", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 6, + "unique_ratio": 0.002706, + "example_values": [ + "1", + "0", + "3", + "2", + "5" + ] + } + }, + { + "name": "smoker", + "role": "feature", + "semantic_type": "boolean", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 2, + "unique_ratio": 0.000902, + "example_values": [ + "yes", + "no" + ] + } + }, + { + "name": "region", + "role": "feature", + "semantic_type": "categorical", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 4, + "unique_ratio": 0.001804, + "example_values": [ + "northwest", + "southwest", + "southeast", + "northeast" + ] + } + }, + { + "name": "charges", + "role": "target", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 1281, + "unique_ratio": 0.577808, + "example_values": [ + "21677.28345", + "15820.699", + "1639.5631", + "2497.0383", + "2897.3235" + ] + } + } + ] +} \ No newline at end of file diff --git a/timecost/m4/realtabformer/rtf-m4-20260501_033611/public_gate/public_gate_report.json b/timecost/m4/realtabformer/rtf-m4-20260501_033611/public_gate/public_gate_report.json new file mode 100644 index 0000000000000000000000000000000000000000..e7a25408e2574124629ea9437356551e4d6f4790 --- /dev/null +++ b/timecost/m4/realtabformer/rtf-m4-20260501_033611/public_gate/public_gate_report.json @@ -0,0 +1,37 @@ +{ + "dataset_id": "m4", + "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": "charges", + "task_type": "regression", + "input_splits": { + "train": "/data/jialinzhang/SynthesizePipeline-server/DatasetNew/m4/m4-train.csv", + "val": "/data/jialinzhang/SynthesizePipeline-server/DatasetNew/m4/m4-val.csv", + "test": "/data/jialinzhang/SynthesizePipeline-server/DatasetNew/m4/m4-test.csv" + } +} \ No newline at end of file diff --git a/timecost/m4/realtabformer/rtf-m4-20260501_033611/public_gate/staged_input_manifest.json b/timecost/m4/realtabformer/rtf-m4-20260501_033611/public_gate/staged_input_manifest.json new file mode 100644 index 0000000000000000000000000000000000000000..10a928683e9eef723a7f7405c1f5ee2ca9afe1db --- /dev/null +++ b/timecost/m4/realtabformer/rtf-m4-20260501_033611/public_gate/staged_input_manifest.json @@ -0,0 +1,152 @@ +{ + "dataset_id": "m4", + "target_column": "charges", + "task_type": "regression", + "train_csv": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/m4/realtabformer/rtf-m4-20260501_033611/staged/public/train.csv", + "val_csv": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/m4/realtabformer/rtf-m4-20260501_033611/staged/public/val.csv", + "test_csv": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/m4/realtabformer/rtf-m4-20260501_033611/staged/public/test.csv", + "features_json": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/m4/realtabformer/rtf-m4-20260501_033611/staged/public/staged_features.json", + "public_gate_report": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/m4/realtabformer/rtf-m4-20260501_033611/public_gate/public_gate_report.json", + "column_schema": [ + { + "name": "age", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 47, + "unique_ratio": 0.0212, + "example_values": [ + "46", + "38", + "19", + "27", + "26" + ] + } + }, + { + "name": "sex", + "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.000902, + "example_values": [ + "female", + "male" + ] + } + }, + { + "name": "bmi", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 538, + "unique_ratio": 0.24267, + "example_values": [ + "23.655", + "19.3", + "30.59", + "32.67", + "29.45" + ] + } + }, + { + "name": "children", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 6, + "unique_ratio": 0.002706, + "example_values": [ + "1", + "0", + "3", + "2", + "5" + ] + } + }, + { + "name": "smoker", + "role": "feature", + "semantic_type": "boolean", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 2, + "unique_ratio": 0.000902, + "example_values": [ + "yes", + "no" + ] + } + }, + { + "name": "region", + "role": "feature", + "semantic_type": "categorical", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 4, + "unique_ratio": 0.001804, + "example_values": [ + "northwest", + "southwest", + "southeast", + "northeast" + ] + } + }, + { + "name": "charges", + "role": "target", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 1281, + "unique_ratio": 0.577808, + "example_values": [ + "21677.28345", + "15820.699", + "1639.5631", + "2497.0383", + "2897.3235" + ] + } + } + ] +} \ No newline at end of file diff --git a/timecost/m4/realtabformer/rtf-m4-20260501_033611/realtabformer_features.json b/timecost/m4/realtabformer/rtf-m4-20260501_033611/realtabformer_features.json new file mode 100644 index 0000000000000000000000000000000000000000..d6acd098c35111f423f3ffff2cfd1754bc5dfebc --- /dev/null +++ b/timecost/m4/realtabformer/rtf-m4-20260501_033611/realtabformer_features.json @@ -0,0 +1,37 @@ +[ + { + "feature_name": "age", + "data_type": "continuous", + "is_target": false + }, + { + "feature_name": "sex", + "data_type": "categorical", + "is_target": false + }, + { + "feature_name": "bmi", + "data_type": "continuous", + "is_target": false + }, + { + "feature_name": "children", + "data_type": "continuous", + "is_target": false + }, + { + "feature_name": "smoker", + "data_type": "binary", + "is_target": false + }, + { + "feature_name": "region", + "data_type": "categorical", + "is_target": false + }, + { + "feature_name": "charges", + "data_type": "continuous", + "is_target": true + } +] \ No newline at end of file diff --git a/timecost/m4/realtabformer/rtf-m4-20260501_033611/rtf-m4-2217-20260501_034506.csv b/timecost/m4/realtabformer/rtf-m4-20260501_033611/rtf-m4-2217-20260501_034506.csv new file mode 100644 index 0000000000000000000000000000000000000000..9334c73c613ef00d04ed6338cd4040d6eda1584b --- /dev/null +++ b/timecost/m4/realtabformer/rtf-m4-20260501_033611/rtf-m4-2217-20260501_034506.csv @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:8fc4645c3323ef885348244dce9a3df30de8c9f0b65996d633d6fded1e7be1dd +size 89525 diff --git a/timecost/m4/realtabformer/rtf-m4-20260501_033611/rtf_checkpoints/checkpoint-6790/config.json b/timecost/m4/realtabformer/rtf-m4-20260501_033611/rtf_checkpoints/checkpoint-6790/config.json new file mode 100644 index 0000000000000000000000000000000000000000..69b1961f0cbafdc846150e71a2d82b4ce3beb94c --- /dev/null +++ b/timecost/m4/realtabformer/rtf-m4-20260501_033611/rtf_checkpoints/checkpoint-6790/config.json @@ -0,0 +1,34 @@ +{ + "activation_function": "gelu_new", + "add_cross_attention": false, + "architectures": [ + "GPT2LMHeadModel" + ], + "attn_pdrop": 0.1, + "bos_token_id": 5, + "dtype": "float32", + "embd_pdrop": 0.1, + "eos_token_id": 6, + "initializer_range": 0.02, + "layer_norm_epsilon": 1e-05, + "model_type": "gpt2", + "n_embd": 768, + "n_head": 12, + "n_inner": null, + "n_layer": 6, + "n_positions": 1024, + "pad_token_id": null, + "reorder_and_upcast_attn": false, + "resid_pdrop": 0.1, + "scale_attn_by_inverse_layer_idx": false, + "scale_attn_weights": true, + "summary_activation": null, + "summary_first_dropout": 0.1, + "summary_proj_to_labels": true, + "summary_type": "cls_index", + "summary_use_proj": true, + "tie_word_embeddings": true, + "transformers_version": "5.5.3", + "use_cache": false, + "vocab_size": 167 +} diff --git a/timecost/m4/realtabformer/rtf-m4-20260501_033611/rtf_checkpoints/checkpoint-6790/generation_config.json b/timecost/m4/realtabformer/rtf-m4-20260501_033611/rtf_checkpoints/checkpoint-6790/generation_config.json new file mode 100644 index 0000000000000000000000000000000000000000..ffe89567780e75b5c22eade9be971483b9618f39 --- /dev/null +++ b/timecost/m4/realtabformer/rtf-m4-20260501_033611/rtf_checkpoints/checkpoint-6790/generation_config.json @@ -0,0 +1,9 @@ +{ + "_from_model_config": true, + "bos_token_id": 5, + "eos_token_id": 6, + "output_attentions": false, + "output_hidden_states": false, + "transformers_version": "5.5.3", + "use_cache": true +} diff --git a/timecost/m4/realtabformer/rtf-m4-20260501_033611/rtf_checkpoints/checkpoint-6790/model.safetensors b/timecost/m4/realtabformer/rtf-m4-20260501_033611/rtf_checkpoints/checkpoint-6790/model.safetensors new file mode 100644 index 0000000000000000000000000000000000000000..9124164a61b6e40ac80d3aed933448e4d36624b0 --- /dev/null +++ b/timecost/m4/realtabformer/rtf-m4-20260501_033611/rtf_checkpoints/checkpoint-6790/model.safetensors @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:b5994f5180d8e9f816461560c2a11b25f891f1ac01c21bffcd89bf3de26426ba +size 173781448 diff --git a/timecost/m4/realtabformer/rtf-m4-20260501_033611/rtf_checkpoints/checkpoint-6790/optimizer.pt b/timecost/m4/realtabformer/rtf-m4-20260501_033611/rtf_checkpoints/checkpoint-6790/optimizer.pt new file mode 100644 index 0000000000000000000000000000000000000000..14ca3c826e8299c4ad52a4b15f4062bff2311276 --- /dev/null +++ b/timecost/m4/realtabformer/rtf-m4-20260501_033611/rtf_checkpoints/checkpoint-6790/optimizer.pt @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:54c2d868b2030bd5e8caded00d5e58cc21069bd10f0fdb1e6ef078e19f9bddee +size 347611979 diff --git a/timecost/m4/realtabformer/rtf-m4-20260501_033611/rtf_checkpoints/checkpoint-6790/rng_state.pth b/timecost/m4/realtabformer/rtf-m4-20260501_033611/rtf_checkpoints/checkpoint-6790/rng_state.pth new file mode 100644 index 0000000000000000000000000000000000000000..41df2febec3b46bd397fb18467fde2a8f8d4aebd --- /dev/null +++ b/timecost/m4/realtabformer/rtf-m4-20260501_033611/rtf_checkpoints/checkpoint-6790/rng_state.pth @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:732e23aaffd55178f2dd1d085eecf298625b2d4d355d639c34a72ab88128f8f0 +size 14645 diff --git a/timecost/m4/realtabformer/rtf-m4-20260501_033611/rtf_checkpoints/checkpoint-6790/scaler.pt b/timecost/m4/realtabformer/rtf-m4-20260501_033611/rtf_checkpoints/checkpoint-6790/scaler.pt new file mode 100644 index 0000000000000000000000000000000000000000..38ef879e14ef0ec13bd903cd31cf182793c5d358 --- /dev/null +++ b/timecost/m4/realtabformer/rtf-m4-20260501_033611/rtf_checkpoints/checkpoint-6790/scaler.pt @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:99e2f29d3922f3b085866a94f7ed2f7acf8347b8c4ffa9ffe23357f84a2e7ff6 +size 1383 diff --git a/timecost/m4/realtabformer/rtf-m4-20260501_033611/rtf_checkpoints/checkpoint-6790/scheduler.pt b/timecost/m4/realtabformer/rtf-m4-20260501_033611/rtf_checkpoints/checkpoint-6790/scheduler.pt new file mode 100644 index 0000000000000000000000000000000000000000..2a0658e737821b25bdd1dde523e5270a28e92a95 --- /dev/null +++ b/timecost/m4/realtabformer/rtf-m4-20260501_033611/rtf_checkpoints/checkpoint-6790/scheduler.pt @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:0007691153b41c73b1c602c3655b57a3810594736cdb735c7a760179d53b5a07 +size 1465 diff --git a/timecost/m4/realtabformer/rtf-m4-20260501_033611/rtf_checkpoints/checkpoint-6790/trainer_state.json b/timecost/m4/realtabformer/rtf-m4-20260501_033611/rtf_checkpoints/checkpoint-6790/trainer_state.json new file mode 100644 index 0000000000000000000000000000000000000000..45cc6933bfa61437c7bb6905d00e3ab92f87329f --- /dev/null +++ b/timecost/m4/realtabformer/rtf-m4-20260501_033611/rtf_checkpoints/checkpoint-6790/trainer_state.json @@ -0,0 +1,503 @@ +{ + "best_global_step": null, + "best_metric": null, + "best_model_checkpoint": null, + "epoch": 97.0, + "eval_steps": 100, + "global_step": 6790, + "is_hyper_param_search": false, + "is_local_process_zero": true, + "is_world_process_zero": true, + "log_history": [ + { + "epoch": 1.4316546762589928, + "grad_norm": 0.355408638715744, + "learning_rate": 4.929285714285715e-05, + "loss": 1.9745016479492188, + "step": 100 + }, + { + "epoch": 2.8633093525179856, + "grad_norm": 0.3432696759700775, + "learning_rate": 4.857857142857143e-05, + "loss": 1.4019232177734375, + "step": 200 + }, + { + "epoch": 4.287769784172662, + "grad_norm": 0.37436360120773315, + "learning_rate": 4.7864285714285714e-05, + "loss": 1.3409852600097656, + "step": 300 + }, + { + "epoch": 5.719424460431655, + "grad_norm": 0.3854033648967743, + "learning_rate": 4.715e-05, + "loss": 1.2996253967285156, + "step": 400 + }, + { + "epoch": 7.143884892086331, + "grad_norm": 0.4203447997570038, + "learning_rate": 4.643571428571429e-05, + "loss": 1.259985122680664, + "step": 500 + }, + { + "epoch": 8.575539568345324, + "grad_norm": 0.4687316417694092, + "learning_rate": 4.5721428571428574e-05, + "loss": 1.2107434844970704, + "step": 600 + }, + { + "epoch": 10.0, + "grad_norm": 0.9186628460884094, + "learning_rate": 4.500714285714286e-05, + "loss": 1.1670813751220703, + "step": 700 + }, + { + "epoch": 11.431654676258994, + "grad_norm": 0.49637436866760254, + "learning_rate": 4.429285714285715e-05, + "loss": 1.1059295654296875, + "step": 800 + }, + { + "epoch": 12.863309352517986, + "grad_norm": 0.5657761096954346, + "learning_rate": 4.357857142857143e-05, + "loss": 1.040764389038086, + "step": 900 + }, + { + "epoch": 14.287769784172662, + "grad_norm": 0.5341610312461853, + "learning_rate": 4.2864285714285715e-05, + "loss": 0.9634710693359375, + "step": 1000 + }, + { + "epoch": 15.719424460431654, + "grad_norm": 0.6149197816848755, + "learning_rate": 4.215e-05, + "loss": 0.88642822265625, + "step": 1100 + }, + { + "epoch": 17.14388489208633, + "grad_norm": 0.5562811493873596, + "learning_rate": 4.143571428571429e-05, + "loss": 0.8134054565429687, + "step": 1200 + }, + { + "epoch": 18.575539568345324, + "grad_norm": 0.572320282459259, + "learning_rate": 4.0721428571428575e-05, + "loss": 0.7409443664550781, + "step": 1300 + }, + { + "epoch": 20.0, + "grad_norm": 1.1183358430862427, + "learning_rate": 4.000714285714286e-05, + "loss": 0.6947654724121094, + "step": 1400 + }, + { + "epoch": 21.431654676258994, + "grad_norm": 0.5899038314819336, + "learning_rate": 3.929285714285714e-05, + "loss": 0.6337775039672852, + "step": 1500 + }, + { + "epoch": 22.863309352517987, + "grad_norm": 0.5425059199333191, + "learning_rate": 3.857857142857143e-05, + "loss": 0.5985966491699218, + "step": 1600 + }, + { + "epoch": 24.28776978417266, + "grad_norm": 0.5404720306396484, + "learning_rate": 3.786428571428572e-05, + "loss": 0.5602037811279297, + "step": 1700 + }, + { + "epoch": 25.719424460431654, + "grad_norm": 0.5059275031089783, + "learning_rate": 3.715e-05, + "loss": 0.5371580123901367, + "step": 1800 + }, + { + "epoch": 27.14388489208633, + "grad_norm": 0.44090911746025085, + "learning_rate": 3.643571428571429e-05, + "loss": 0.5157820892333984, + "step": 1900 + }, + { + "epoch": 28.575539568345324, + "grad_norm": 0.47748005390167236, + "learning_rate": 3.5721428571428575e-05, + "loss": 0.4929149627685547, + "step": 2000 + }, + { + "epoch": 30.0, + "grad_norm": 0.8368889689445496, + "learning_rate": 3.500714285714286e-05, + "loss": 0.4742084503173828, + "step": 2100 + }, + { + "epoch": 31.431654676258994, + "grad_norm": 0.43759119510650635, + "learning_rate": 3.429285714285714e-05, + "loss": 0.4594686508178711, + "step": 2200 + }, + { + "epoch": 32.86330935251799, + "grad_norm": 0.5055125951766968, + "learning_rate": 3.357857142857143e-05, + "loss": 0.44555919647216796, + "step": 2300 + }, + { + "epoch": 34.28776978417266, + "grad_norm": 0.4293630123138428, + "learning_rate": 3.2864285714285715e-05, + "loss": 0.43556678771972657, + "step": 2400 + }, + { + "epoch": 35.719424460431654, + "grad_norm": 0.4206651747226715, + "learning_rate": 3.215e-05, + "loss": 0.42476219177246094, + "step": 2500 + }, + { + "epoch": 37.143884892086334, + "grad_norm": 0.40377891063690186, + "learning_rate": 3.143571428571428e-05, + "loss": 0.41686100006103516, + "step": 2600 + }, + { + "epoch": 38.57553956834532, + "grad_norm": 0.44274216890335083, + "learning_rate": 3.0721428571428576e-05, + "loss": 0.4049409866333008, + "step": 2700 + }, + { + "epoch": 40.0, + "grad_norm": 0.7320085763931274, + "learning_rate": 3.0007142857142856e-05, + "loss": 0.40352741241455076, + "step": 2800 + }, + { + "epoch": 41.431654676258994, + "grad_norm": 0.3710326552391052, + "learning_rate": 2.9292857142857146e-05, + "loss": 0.392877082824707, + "step": 2900 + }, + { + "epoch": 42.86330935251799, + "grad_norm": 0.41697078943252563, + "learning_rate": 2.8578571428571433e-05, + "loss": 0.3891782760620117, + "step": 3000 + }, + { + "epoch": 44.28776978417266, + "grad_norm": 0.3859659433364868, + "learning_rate": 2.7864285714285716e-05, + "loss": 0.3797669982910156, + "step": 3100 + }, + { + "epoch": 45.719424460431654, + "grad_norm": 0.4415609836578369, + "learning_rate": 2.7150000000000003e-05, + "loss": 0.375827751159668, + "step": 3200 + }, + { + "epoch": 47.143884892086334, + "grad_norm": 0.3726028501987457, + "learning_rate": 2.6435714285714286e-05, + "loss": 0.37346839904785156, + "step": 3300 + }, + { + "epoch": 48.57553956834532, + "grad_norm": 0.38533180952072144, + "learning_rate": 2.5721428571428573e-05, + "loss": 0.36665096282958987, + "step": 3400 + }, + { + "epoch": 50.0, + "grad_norm": 0.6937333345413208, + "learning_rate": 2.5007142857142856e-05, + "loss": 0.3679323959350586, + "step": 3500 + }, + { + "epoch": 51.431654676258994, + "grad_norm": 0.3872888386249542, + "learning_rate": 2.4292857142857146e-05, + "loss": 0.3602333068847656, + "step": 3600 + }, + { + "epoch": 52.86330935251799, + "grad_norm": 0.3236874043941498, + "learning_rate": 2.357857142857143e-05, + "loss": 0.3591602325439453, + "step": 3700 + }, + { + "epoch": 54.28776978417266, + "grad_norm": 0.3833729326725006, + "learning_rate": 2.2864285714285716e-05, + "loss": 0.3564492797851562, + "step": 3800 + }, + { + "epoch": 55.719424460431654, + "grad_norm": 0.38681459426879883, + "learning_rate": 2.215e-05, + "loss": 0.35298805236816405, + "step": 3900 + }, + { + "epoch": 57.143884892086334, + "grad_norm": 0.3262157142162323, + "learning_rate": 2.1435714285714286e-05, + "loss": 0.3520388412475586, + "step": 4000 + }, + { + "epoch": 58.57553956834532, + "grad_norm": 0.28272324800491333, + "learning_rate": 2.0721428571428573e-05, + "loss": 0.3480962371826172, + "step": 4100 + }, + { + "epoch": 60.0, + "grad_norm": 0.6237635016441345, + "learning_rate": 2.0007142857142857e-05, + "loss": 0.34799785614013673, + "step": 4200 + }, + { + "epoch": 61.431654676258994, + "grad_norm": 0.28903186321258545, + "learning_rate": 1.9292857142857143e-05, + "loss": 0.3425423049926758, + "step": 4300 + }, + { + "epoch": 62.86330935251799, + "grad_norm": 0.3131926953792572, + "learning_rate": 1.857857142857143e-05, + "loss": 0.3454655456542969, + "step": 4400 + }, + { + "epoch": 64.28776978417267, + "grad_norm": 0.28085246682167053, + "learning_rate": 1.7864285714285713e-05, + "loss": 0.34086563110351564, + "step": 4500 + }, + { + "epoch": 65.71942446043165, + "grad_norm": 0.3234202563762665, + "learning_rate": 1.7150000000000004e-05, + "loss": 0.33850929260253904, + "step": 4600 + }, + { + "epoch": 67.14388489208633, + "grad_norm": 0.25634437799453735, + "learning_rate": 1.6435714285714287e-05, + "loss": 0.3384051132202148, + "step": 4700 + }, + { + "epoch": 68.57553956834532, + "grad_norm": 0.3404187262058258, + "learning_rate": 1.5721428571428574e-05, + "loss": 0.3373231887817383, + "step": 4800 + }, + { + "epoch": 70.0, + "grad_norm": 0.6950141191482544, + "learning_rate": 1.5007142857142859e-05, + "loss": 0.3362230682373047, + "step": 4900 + }, + { + "epoch": 71.43165467625899, + "grad_norm": 0.38788536190986633, + "learning_rate": 1.4292857142857144e-05, + "loss": 0.33364181518554686, + "step": 5000 + }, + { + "epoch": 72.86330935251799, + "grad_norm": 0.26893335580825806, + "learning_rate": 1.3578571428571429e-05, + "loss": 0.33343013763427737, + "step": 5100 + }, + { + "epoch": 74.28776978417267, + "grad_norm": 0.317146360874176, + "learning_rate": 1.2864285714285716e-05, + "loss": 0.33120128631591794, + "step": 5200 + }, + { + "epoch": 75.71942446043165, + "grad_norm": 0.25996723771095276, + "learning_rate": 1.215e-05, + "loss": 0.33197879791259766, + "step": 5300 + }, + { + "epoch": 77.14388489208633, + "grad_norm": 0.2829038202762604, + "learning_rate": 1.1435714285714286e-05, + "loss": 0.3305575942993164, + "step": 5400 + }, + { + "epoch": 78.57553956834532, + "grad_norm": 0.3527142405509949, + "learning_rate": 1.0721428571428572e-05, + "loss": 0.32733917236328125, + "step": 5500 + }, + { + "epoch": 80.0, + "grad_norm": 0.48380932211875916, + "learning_rate": 1.0007142857142857e-05, + "loss": 0.3284780502319336, + "step": 5600 + }, + { + "epoch": 81.43165467625899, + "grad_norm": 0.28093209862709045, + "learning_rate": 9.292857142857144e-06, + "loss": 0.3261085891723633, + "step": 5700 + }, + { + "epoch": 82.86330935251799, + "grad_norm": 0.32190901041030884, + "learning_rate": 8.57857142857143e-06, + "loss": 0.32692623138427734, + "step": 5800 + }, + { + "epoch": 84.28776978417267, + "grad_norm": 0.25844648480415344, + "learning_rate": 7.864285714285714e-06, + "loss": 0.32516582489013673, + "step": 5900 + }, + { + "epoch": 85.71942446043165, + "grad_norm": 0.28139543533325195, + "learning_rate": 7.15e-06, + "loss": 0.3232896423339844, + "step": 6000 + }, + { + "epoch": 87.14388489208633, + "grad_norm": 0.29647108912467957, + "learning_rate": 6.435714285714287e-06, + "loss": 0.32342647552490233, + "step": 6100 + }, + { + "epoch": 88.57553956834532, + "grad_norm": 0.3490413427352905, + "learning_rate": 5.721428571428572e-06, + "loss": 0.3228362274169922, + "step": 6200 + }, + { + "epoch": 90.0, + "grad_norm": 0.716325044631958, + "learning_rate": 5.007142857142858e-06, + "loss": 0.3227589797973633, + "step": 6300 + }, + { + "epoch": 91.43165467625899, + "grad_norm": 0.27956023812294006, + "learning_rate": 4.292857142857143e-06, + "loss": 0.32096038818359374, + "step": 6400 + }, + { + "epoch": 92.86330935251799, + "grad_norm": 0.25956645607948303, + "learning_rate": 3.5785714285714292e-06, + "loss": 0.32137725830078123, + "step": 6500 + }, + { + "epoch": 94.28776978417267, + "grad_norm": 0.2535034120082855, + "learning_rate": 2.8642857142857147e-06, + "loss": 0.31845773696899415, + "step": 6600 + }, + { + "epoch": 95.71942446043165, + "grad_norm": 0.3152118921279907, + "learning_rate": 2.1499999999999997e-06, + "loss": 0.3196479606628418, + "step": 6700 + } + ], + "logging_steps": 100, + "max_steps": 7000, + "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": 1316990740267008.0, + "train_batch_size": 8, + "trial_name": null, + "trial_params": null +} diff --git a/timecost/m4/realtabformer/rtf-m4-20260501_033611/rtf_checkpoints/checkpoint-6790/training_args.bin b/timecost/m4/realtabformer/rtf-m4-20260501_033611/rtf_checkpoints/checkpoint-6790/training_args.bin new file mode 100644 index 0000000000000000000000000000000000000000..34d68dc0e0fe1c1f12a2e581dd1b166aa7178a9e --- /dev/null +++ b/timecost/m4/realtabformer/rtf-m4-20260501_033611/rtf_checkpoints/checkpoint-6790/training_args.bin @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:9e2cd88337d1d846c6918d2b3b63fa3e5c93f12fefc082497590da854a564607 +size 5201 diff --git a/timecost/m4/realtabformer/rtf-m4-20260501_033611/rtf_checkpoints/checkpoint-6800/config.json b/timecost/m4/realtabformer/rtf-m4-20260501_033611/rtf_checkpoints/checkpoint-6800/config.json new file mode 100644 index 0000000000000000000000000000000000000000..69b1961f0cbafdc846150e71a2d82b4ce3beb94c --- /dev/null +++ b/timecost/m4/realtabformer/rtf-m4-20260501_033611/rtf_checkpoints/checkpoint-6800/config.json @@ -0,0 +1,34 @@ +{ + "activation_function": "gelu_new", + "add_cross_attention": false, + "architectures": [ + "GPT2LMHeadModel" + ], + "attn_pdrop": 0.1, + "bos_token_id": 5, + "dtype": "float32", + "embd_pdrop": 0.1, + "eos_token_id": 6, + "initializer_range": 0.02, + "layer_norm_epsilon": 1e-05, + "model_type": "gpt2", + "n_embd": 768, + "n_head": 12, + "n_inner": null, + "n_layer": 6, + "n_positions": 1024, + "pad_token_id": null, + "reorder_and_upcast_attn": false, + "resid_pdrop": 0.1, + "scale_attn_by_inverse_layer_idx": false, + "scale_attn_weights": true, + "summary_activation": null, + "summary_first_dropout": 0.1, + "summary_proj_to_labels": true, + "summary_type": "cls_index", + "summary_use_proj": true, + "tie_word_embeddings": true, + "transformers_version": "5.5.3", + "use_cache": false, + "vocab_size": 167 +} diff --git a/timecost/m4/realtabformer/rtf-m4-20260501_033611/rtf_checkpoints/checkpoint-6800/generation_config.json b/timecost/m4/realtabformer/rtf-m4-20260501_033611/rtf_checkpoints/checkpoint-6800/generation_config.json new file mode 100644 index 0000000000000000000000000000000000000000..ffe89567780e75b5c22eade9be971483b9618f39 --- /dev/null +++ b/timecost/m4/realtabformer/rtf-m4-20260501_033611/rtf_checkpoints/checkpoint-6800/generation_config.json @@ -0,0 +1,9 @@ +{ + "_from_model_config": true, + "bos_token_id": 5, + "eos_token_id": 6, + "output_attentions": false, + "output_hidden_states": false, + "transformers_version": "5.5.3", + "use_cache": true +} diff --git a/timecost/m4/realtabformer/rtf-m4-20260501_033611/rtf_checkpoints/checkpoint-6800/model.safetensors b/timecost/m4/realtabformer/rtf-m4-20260501_033611/rtf_checkpoints/checkpoint-6800/model.safetensors new file mode 100644 index 0000000000000000000000000000000000000000..5558036f90dd9932d74915097bc68a76f92a6dea --- /dev/null +++ b/timecost/m4/realtabformer/rtf-m4-20260501_033611/rtf_checkpoints/checkpoint-6800/model.safetensors @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:8aed5a57cfa9029848a63c9dc13bbb28de53f79fa53a77fb353108b980be2c29 +size 173781448 diff --git a/timecost/m4/realtabformer/rtf-m4-20260501_033611/rtf_checkpoints/checkpoint-6800/optimizer.pt b/timecost/m4/realtabformer/rtf-m4-20260501_033611/rtf_checkpoints/checkpoint-6800/optimizer.pt new file mode 100644 index 0000000000000000000000000000000000000000..acb1686d0c959d91ba30eface49dfbf192450bb7 --- /dev/null +++ b/timecost/m4/realtabformer/rtf-m4-20260501_033611/rtf_checkpoints/checkpoint-6800/optimizer.pt @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:3fb083e4044f993aa199e9d931343bdcf89f412b0d82b2b0f03a2bebfd15952e +size 347611979 diff --git a/timecost/m4/realtabformer/rtf-m4-20260501_033611/rtf_checkpoints/checkpoint-6800/rng_state.pth b/timecost/m4/realtabformer/rtf-m4-20260501_033611/rtf_checkpoints/checkpoint-6800/rng_state.pth new file mode 100644 index 0000000000000000000000000000000000000000..bba7fd653e514efd9d53b22c324aabb5e8a72f4c --- /dev/null +++ b/timecost/m4/realtabformer/rtf-m4-20260501_033611/rtf_checkpoints/checkpoint-6800/rng_state.pth @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:bb49e1d0fdac32a9ff2374156499e1309014429587272dd6cf53a373025e6b08 +size 14645 diff --git a/timecost/m4/realtabformer/rtf-m4-20260501_033611/rtf_checkpoints/checkpoint-6800/scaler.pt b/timecost/m4/realtabformer/rtf-m4-20260501_033611/rtf_checkpoints/checkpoint-6800/scaler.pt new file mode 100644 index 0000000000000000000000000000000000000000..3f3303da1d867db6f340dced04c8a2f4f18cf6b8 --- /dev/null +++ b/timecost/m4/realtabformer/rtf-m4-20260501_033611/rtf_checkpoints/checkpoint-6800/scaler.pt @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:fec8adf6dd32f95d0556739e982497aa626085040f80bf9f9f82f94e825c932f +size 1383 diff --git a/timecost/m4/realtabformer/rtf-m4-20260501_033611/rtf_checkpoints/checkpoint-6800/scheduler.pt b/timecost/m4/realtabformer/rtf-m4-20260501_033611/rtf_checkpoints/checkpoint-6800/scheduler.pt new file mode 100644 index 0000000000000000000000000000000000000000..49c5b5e867e8e2991422630f23f864a112c8d181 --- /dev/null +++ b/timecost/m4/realtabformer/rtf-m4-20260501_033611/rtf_checkpoints/checkpoint-6800/scheduler.pt @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:07e7d0dc2bb34e27a78c9649e6e32ce9ef350a54454a674bfa755cc23f098882 +size 1465 diff --git a/timecost/m4/realtabformer/rtf-m4-20260501_033611/rtf_checkpoints/checkpoint-6800/trainer_state.json b/timecost/m4/realtabformer/rtf-m4-20260501_033611/rtf_checkpoints/checkpoint-6800/trainer_state.json new file mode 100644 index 0000000000000000000000000000000000000000..06c05be8a2053c04aab4a9bc581c60528deea052 --- /dev/null +++ b/timecost/m4/realtabformer/rtf-m4-20260501_033611/rtf_checkpoints/checkpoint-6800/trainer_state.json @@ -0,0 +1,510 @@ +{ + "best_global_step": null, + "best_metric": null, + "best_model_checkpoint": null, + "epoch": 97.14388489208633, + "eval_steps": 100, + "global_step": 6800, + "is_hyper_param_search": false, + "is_local_process_zero": true, + "is_world_process_zero": true, + "log_history": [ + { + "epoch": 1.4316546762589928, + "grad_norm": 0.355408638715744, + "learning_rate": 4.929285714285715e-05, + "loss": 1.9745016479492188, + "step": 100 + }, + { + "epoch": 2.8633093525179856, + "grad_norm": 0.3432696759700775, + "learning_rate": 4.857857142857143e-05, + "loss": 1.4019232177734375, + "step": 200 + }, + { + "epoch": 4.287769784172662, + "grad_norm": 0.37436360120773315, + "learning_rate": 4.7864285714285714e-05, + "loss": 1.3409852600097656, + "step": 300 + }, + { + "epoch": 5.719424460431655, + "grad_norm": 0.3854033648967743, + "learning_rate": 4.715e-05, + "loss": 1.2996253967285156, + "step": 400 + }, + { + "epoch": 7.143884892086331, + "grad_norm": 0.4203447997570038, + "learning_rate": 4.643571428571429e-05, + "loss": 1.259985122680664, + "step": 500 + }, + { + "epoch": 8.575539568345324, + "grad_norm": 0.4687316417694092, + "learning_rate": 4.5721428571428574e-05, + "loss": 1.2107434844970704, + "step": 600 + }, + { + "epoch": 10.0, + "grad_norm": 0.9186628460884094, + "learning_rate": 4.500714285714286e-05, + "loss": 1.1670813751220703, + "step": 700 + }, + { + "epoch": 11.431654676258994, + "grad_norm": 0.49637436866760254, + "learning_rate": 4.429285714285715e-05, + "loss": 1.1059295654296875, + "step": 800 + }, + { + "epoch": 12.863309352517986, + "grad_norm": 0.5657761096954346, + "learning_rate": 4.357857142857143e-05, + "loss": 1.040764389038086, + "step": 900 + }, + { + "epoch": 14.287769784172662, + "grad_norm": 0.5341610312461853, + "learning_rate": 4.2864285714285715e-05, + "loss": 0.9634710693359375, + "step": 1000 + }, + { + "epoch": 15.719424460431654, + "grad_norm": 0.6149197816848755, + "learning_rate": 4.215e-05, + "loss": 0.88642822265625, + "step": 1100 + }, + { + "epoch": 17.14388489208633, + "grad_norm": 0.5562811493873596, + "learning_rate": 4.143571428571429e-05, + "loss": 0.8134054565429687, + "step": 1200 + }, + { + "epoch": 18.575539568345324, + "grad_norm": 0.572320282459259, + "learning_rate": 4.0721428571428575e-05, + "loss": 0.7409443664550781, + "step": 1300 + }, + { + "epoch": 20.0, + "grad_norm": 1.1183358430862427, + "learning_rate": 4.000714285714286e-05, + "loss": 0.6947654724121094, + "step": 1400 + }, + { + "epoch": 21.431654676258994, + "grad_norm": 0.5899038314819336, + "learning_rate": 3.929285714285714e-05, + "loss": 0.6337775039672852, + "step": 1500 + }, + { + "epoch": 22.863309352517987, + "grad_norm": 0.5425059199333191, + "learning_rate": 3.857857142857143e-05, + "loss": 0.5985966491699218, + "step": 1600 + }, + { + "epoch": 24.28776978417266, + "grad_norm": 0.5404720306396484, + "learning_rate": 3.786428571428572e-05, + "loss": 0.5602037811279297, + "step": 1700 + }, + { + "epoch": 25.719424460431654, + "grad_norm": 0.5059275031089783, + "learning_rate": 3.715e-05, + "loss": 0.5371580123901367, + "step": 1800 + }, + { + "epoch": 27.14388489208633, + "grad_norm": 0.44090911746025085, + "learning_rate": 3.643571428571429e-05, + "loss": 0.5157820892333984, + "step": 1900 + }, + { + "epoch": 28.575539568345324, + "grad_norm": 0.47748005390167236, + "learning_rate": 3.5721428571428575e-05, + "loss": 0.4929149627685547, + "step": 2000 + }, + { + "epoch": 30.0, + "grad_norm": 0.8368889689445496, + "learning_rate": 3.500714285714286e-05, + "loss": 0.4742084503173828, + "step": 2100 + }, + { + "epoch": 31.431654676258994, + "grad_norm": 0.43759119510650635, + "learning_rate": 3.429285714285714e-05, + "loss": 0.4594686508178711, + "step": 2200 + }, + { + "epoch": 32.86330935251799, + "grad_norm": 0.5055125951766968, + "learning_rate": 3.357857142857143e-05, + "loss": 0.44555919647216796, + "step": 2300 + }, + { + "epoch": 34.28776978417266, + "grad_norm": 0.4293630123138428, + "learning_rate": 3.2864285714285715e-05, + "loss": 0.43556678771972657, + "step": 2400 + }, + { + "epoch": 35.719424460431654, + "grad_norm": 0.4206651747226715, + "learning_rate": 3.215e-05, + "loss": 0.42476219177246094, + "step": 2500 + }, + { + "epoch": 37.143884892086334, + "grad_norm": 0.40377891063690186, + "learning_rate": 3.143571428571428e-05, + "loss": 0.41686100006103516, + "step": 2600 + }, + { + "epoch": 38.57553956834532, + "grad_norm": 0.44274216890335083, + "learning_rate": 3.0721428571428576e-05, + "loss": 0.4049409866333008, + "step": 2700 + }, + { + "epoch": 40.0, + "grad_norm": 0.7320085763931274, + "learning_rate": 3.0007142857142856e-05, + "loss": 0.40352741241455076, + "step": 2800 + }, + { + "epoch": 41.431654676258994, + "grad_norm": 0.3710326552391052, + "learning_rate": 2.9292857142857146e-05, + "loss": 0.392877082824707, + "step": 2900 + }, + { + "epoch": 42.86330935251799, + "grad_norm": 0.41697078943252563, + "learning_rate": 2.8578571428571433e-05, + "loss": 0.3891782760620117, + "step": 3000 + }, + { + "epoch": 44.28776978417266, + "grad_norm": 0.3859659433364868, + "learning_rate": 2.7864285714285716e-05, + "loss": 0.3797669982910156, + "step": 3100 + }, + { + "epoch": 45.719424460431654, + "grad_norm": 0.4415609836578369, + "learning_rate": 2.7150000000000003e-05, + "loss": 0.375827751159668, + "step": 3200 + }, + { + "epoch": 47.143884892086334, + "grad_norm": 0.3726028501987457, + "learning_rate": 2.6435714285714286e-05, + "loss": 0.37346839904785156, + "step": 3300 + }, + { + "epoch": 48.57553956834532, + "grad_norm": 0.38533180952072144, + "learning_rate": 2.5721428571428573e-05, + "loss": 0.36665096282958987, + "step": 3400 + }, + { + "epoch": 50.0, + "grad_norm": 0.6937333345413208, + "learning_rate": 2.5007142857142856e-05, + "loss": 0.3679323959350586, + "step": 3500 + }, + { + "epoch": 51.431654676258994, + "grad_norm": 0.3872888386249542, + "learning_rate": 2.4292857142857146e-05, + "loss": 0.3602333068847656, + "step": 3600 + }, + { + "epoch": 52.86330935251799, + "grad_norm": 0.3236874043941498, + "learning_rate": 2.357857142857143e-05, + "loss": 0.3591602325439453, + "step": 3700 + }, + { + "epoch": 54.28776978417266, + "grad_norm": 0.3833729326725006, + "learning_rate": 2.2864285714285716e-05, + "loss": 0.3564492797851562, + "step": 3800 + }, + { + "epoch": 55.719424460431654, + "grad_norm": 0.38681459426879883, + "learning_rate": 2.215e-05, + "loss": 0.35298805236816405, + "step": 3900 + }, + { + "epoch": 57.143884892086334, + "grad_norm": 0.3262157142162323, + "learning_rate": 2.1435714285714286e-05, + "loss": 0.3520388412475586, + "step": 4000 + }, + { + "epoch": 58.57553956834532, + "grad_norm": 0.28272324800491333, + "learning_rate": 2.0721428571428573e-05, + "loss": 0.3480962371826172, + "step": 4100 + }, + { + "epoch": 60.0, + "grad_norm": 0.6237635016441345, + "learning_rate": 2.0007142857142857e-05, + "loss": 0.34799785614013673, + "step": 4200 + }, + { + "epoch": 61.431654676258994, + "grad_norm": 0.28903186321258545, + "learning_rate": 1.9292857142857143e-05, + "loss": 0.3425423049926758, + "step": 4300 + }, + { + "epoch": 62.86330935251799, + "grad_norm": 0.3131926953792572, + "learning_rate": 1.857857142857143e-05, + "loss": 0.3454655456542969, + "step": 4400 + }, + { + "epoch": 64.28776978417267, + "grad_norm": 0.28085246682167053, + "learning_rate": 1.7864285714285713e-05, + "loss": 0.34086563110351564, + "step": 4500 + }, + { + "epoch": 65.71942446043165, + "grad_norm": 0.3234202563762665, + "learning_rate": 1.7150000000000004e-05, + "loss": 0.33850929260253904, + "step": 4600 + }, + { + "epoch": 67.14388489208633, + "grad_norm": 0.25634437799453735, + "learning_rate": 1.6435714285714287e-05, + "loss": 0.3384051132202148, + "step": 4700 + }, + { + "epoch": 68.57553956834532, + "grad_norm": 0.3404187262058258, + "learning_rate": 1.5721428571428574e-05, + "loss": 0.3373231887817383, + "step": 4800 + }, + { + "epoch": 70.0, + "grad_norm": 0.6950141191482544, + "learning_rate": 1.5007142857142859e-05, + "loss": 0.3362230682373047, + "step": 4900 + }, + { + "epoch": 71.43165467625899, + "grad_norm": 0.38788536190986633, + "learning_rate": 1.4292857142857144e-05, + "loss": 0.33364181518554686, + "step": 5000 + }, + { + "epoch": 72.86330935251799, + "grad_norm": 0.26893335580825806, + "learning_rate": 1.3578571428571429e-05, + "loss": 0.33343013763427737, + "step": 5100 + }, + { + "epoch": 74.28776978417267, + "grad_norm": 0.317146360874176, + "learning_rate": 1.2864285714285716e-05, + "loss": 0.33120128631591794, + "step": 5200 + }, + { + "epoch": 75.71942446043165, + "grad_norm": 0.25996723771095276, + "learning_rate": 1.215e-05, + "loss": 0.33197879791259766, + "step": 5300 + }, + { + "epoch": 77.14388489208633, + "grad_norm": 0.2829038202762604, + "learning_rate": 1.1435714285714286e-05, + "loss": 0.3305575942993164, + "step": 5400 + }, + { + "epoch": 78.57553956834532, + "grad_norm": 0.3527142405509949, + "learning_rate": 1.0721428571428572e-05, + "loss": 0.32733917236328125, + "step": 5500 + }, + { + "epoch": 80.0, + "grad_norm": 0.48380932211875916, + "learning_rate": 1.0007142857142857e-05, + "loss": 0.3284780502319336, + "step": 5600 + }, + { + "epoch": 81.43165467625899, + "grad_norm": 0.28093209862709045, + "learning_rate": 9.292857142857144e-06, + "loss": 0.3261085891723633, + "step": 5700 + }, + { + "epoch": 82.86330935251799, + "grad_norm": 0.32190901041030884, + "learning_rate": 8.57857142857143e-06, + "loss": 0.32692623138427734, + "step": 5800 + }, + { + "epoch": 84.28776978417267, + "grad_norm": 0.25844648480415344, + "learning_rate": 7.864285714285714e-06, + "loss": 0.32516582489013673, + "step": 5900 + }, + { + "epoch": 85.71942446043165, + "grad_norm": 0.28139543533325195, + "learning_rate": 7.15e-06, + "loss": 0.3232896423339844, + "step": 6000 + }, + { + "epoch": 87.14388489208633, + "grad_norm": 0.29647108912467957, + "learning_rate": 6.435714285714287e-06, + "loss": 0.32342647552490233, + "step": 6100 + }, + { + "epoch": 88.57553956834532, + "grad_norm": 0.3490413427352905, + "learning_rate": 5.721428571428572e-06, + "loss": 0.3228362274169922, + "step": 6200 + }, + { + "epoch": 90.0, + "grad_norm": 0.716325044631958, + "learning_rate": 5.007142857142858e-06, + "loss": 0.3227589797973633, + "step": 6300 + }, + { + "epoch": 91.43165467625899, + "grad_norm": 0.27956023812294006, + "learning_rate": 4.292857142857143e-06, + "loss": 0.32096038818359374, + "step": 6400 + }, + { + "epoch": 92.86330935251799, + "grad_norm": 0.25956645607948303, + "learning_rate": 3.5785714285714292e-06, + "loss": 0.32137725830078123, + "step": 6500 + }, + { + "epoch": 94.28776978417267, + "grad_norm": 0.2535034120082855, + "learning_rate": 2.8642857142857147e-06, + "loss": 0.31845773696899415, + "step": 6600 + }, + { + "epoch": 95.71942446043165, + "grad_norm": 0.3152118921279907, + "learning_rate": 2.1499999999999997e-06, + "loss": 0.3196479606628418, + "step": 6700 + }, + { + "epoch": 97.14388489208633, + "grad_norm": 0.2890796363353729, + "learning_rate": 1.4357142857142856e-06, + "loss": 0.31787015914916994, + "step": 6800 + } + ], + "logging_steps": 100, + "max_steps": 7000, + "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": 1318950465896448.0, + "train_batch_size": 8, + "trial_name": null, + "trial_params": null +} diff --git a/timecost/m4/realtabformer/rtf-m4-20260501_033611/rtf_checkpoints/checkpoint-6800/training_args.bin b/timecost/m4/realtabformer/rtf-m4-20260501_033611/rtf_checkpoints/checkpoint-6800/training_args.bin new file mode 100644 index 0000000000000000000000000000000000000000..34d68dc0e0fe1c1f12a2e581dd1b166aa7178a9e --- /dev/null +++ b/timecost/m4/realtabformer/rtf-m4-20260501_033611/rtf_checkpoints/checkpoint-6800/training_args.bin @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:9e2cd88337d1d846c6918d2b3b63fa3e5c93f12fefc082497590da854a564607 +size 5201 diff --git a/timecost/m4/realtabformer/rtf-m4-20260501_033611/rtf_checkpoints/checkpoint-6860/config.json b/timecost/m4/realtabformer/rtf-m4-20260501_033611/rtf_checkpoints/checkpoint-6860/config.json new file mode 100644 index 0000000000000000000000000000000000000000..69b1961f0cbafdc846150e71a2d82b4ce3beb94c --- /dev/null +++ b/timecost/m4/realtabformer/rtf-m4-20260501_033611/rtf_checkpoints/checkpoint-6860/config.json @@ -0,0 +1,34 @@ +{ + "activation_function": "gelu_new", + "add_cross_attention": false, + "architectures": [ + "GPT2LMHeadModel" + ], + "attn_pdrop": 0.1, + "bos_token_id": 5, + "dtype": "float32", + "embd_pdrop": 0.1, + "eos_token_id": 6, + "initializer_range": 0.02, + "layer_norm_epsilon": 1e-05, + "model_type": "gpt2", + "n_embd": 768, + "n_head": 12, + "n_inner": null, + "n_layer": 6, + "n_positions": 1024, + "pad_token_id": null, + "reorder_and_upcast_attn": false, + "resid_pdrop": 0.1, + "scale_attn_by_inverse_layer_idx": false, + "scale_attn_weights": true, + "summary_activation": null, + "summary_first_dropout": 0.1, + "summary_proj_to_labels": true, + "summary_type": "cls_index", + "summary_use_proj": true, + "tie_word_embeddings": true, + "transformers_version": "5.5.3", + "use_cache": false, + "vocab_size": 167 +} diff --git a/timecost/m4/realtabformer/rtf-m4-20260501_033611/rtf_checkpoints/checkpoint-6860/generation_config.json b/timecost/m4/realtabformer/rtf-m4-20260501_033611/rtf_checkpoints/checkpoint-6860/generation_config.json new file mode 100644 index 0000000000000000000000000000000000000000..ffe89567780e75b5c22eade9be971483b9618f39 --- /dev/null +++ b/timecost/m4/realtabformer/rtf-m4-20260501_033611/rtf_checkpoints/checkpoint-6860/generation_config.json @@ -0,0 +1,9 @@ +{ + "_from_model_config": true, + "bos_token_id": 5, + "eos_token_id": 6, + "output_attentions": false, + "output_hidden_states": false, + "transformers_version": "5.5.3", + "use_cache": true +} diff --git a/timecost/m4/realtabformer/rtf-m4-20260501_033611/rtf_checkpoints/checkpoint-6860/model.safetensors b/timecost/m4/realtabformer/rtf-m4-20260501_033611/rtf_checkpoints/checkpoint-6860/model.safetensors new file mode 100644 index 0000000000000000000000000000000000000000..820c3983480cbdbd221a7e05e5cb34d0f5056fdd --- /dev/null +++ b/timecost/m4/realtabformer/rtf-m4-20260501_033611/rtf_checkpoints/checkpoint-6860/model.safetensors @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:28f2f7a76b4a660c92d5b808f3b83c52a6c861e9f0bab5acbf00521897649292 +size 173781448 diff --git a/timecost/m4/realtabformer/rtf-m4-20260501_033611/rtf_checkpoints/checkpoint-6860/optimizer.pt b/timecost/m4/realtabformer/rtf-m4-20260501_033611/rtf_checkpoints/checkpoint-6860/optimizer.pt new file mode 100644 index 0000000000000000000000000000000000000000..c42d5fcd8243348e8b91f9c72b79f9220255e20b --- /dev/null +++ b/timecost/m4/realtabformer/rtf-m4-20260501_033611/rtf_checkpoints/checkpoint-6860/optimizer.pt @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:e309e088a563696ddd858897a2e71e5a08827d77481916a25de554157695e599 +size 347611979 diff --git a/timecost/m4/realtabformer/rtf-m4-20260501_033611/rtf_checkpoints/checkpoint-6860/rng_state.pth b/timecost/m4/realtabformer/rtf-m4-20260501_033611/rtf_checkpoints/checkpoint-6860/rng_state.pth new file mode 100644 index 0000000000000000000000000000000000000000..34bb5a6e105d24e0c59095df39f38ee0da97766e --- /dev/null +++ b/timecost/m4/realtabformer/rtf-m4-20260501_033611/rtf_checkpoints/checkpoint-6860/rng_state.pth @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:9c5223493a4e5165d3b7f3ecbd86b655b6d83342b368e82a5f1bde11e97c5693 +size 14645 diff --git a/timecost/m4/realtabformer/rtf-m4-20260501_033611/rtf_checkpoints/checkpoint-6860/scaler.pt b/timecost/m4/realtabformer/rtf-m4-20260501_033611/rtf_checkpoints/checkpoint-6860/scaler.pt new file mode 100644 index 0000000000000000000000000000000000000000..429f8542f9f9f85cf15e749979a7163f21e76708 --- /dev/null +++ b/timecost/m4/realtabformer/rtf-m4-20260501_033611/rtf_checkpoints/checkpoint-6860/scaler.pt @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:94f6d8455dcc1fc44d8f663d345ed0d2382767e7063edd08063eddb0652d4baf +size 1383 diff --git a/timecost/m4/realtabformer/rtf-m4-20260501_033611/rtf_checkpoints/checkpoint-6860/scheduler.pt b/timecost/m4/realtabformer/rtf-m4-20260501_033611/rtf_checkpoints/checkpoint-6860/scheduler.pt new file mode 100644 index 0000000000000000000000000000000000000000..cb3bf7bb2d844cec40e196f1ac4d160bf2bc267c --- /dev/null +++ b/timecost/m4/realtabformer/rtf-m4-20260501_033611/rtf_checkpoints/checkpoint-6860/scheduler.pt @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:c2badfb537f00437ebbb17cefda7d6dd2e779aa81d99c60b4e372103e6454754 +size 1465 diff --git a/timecost/m4/realtabformer/rtf-m4-20260501_033611/rtf_checkpoints/checkpoint-6860/trainer_state.json b/timecost/m4/realtabformer/rtf-m4-20260501_033611/rtf_checkpoints/checkpoint-6860/trainer_state.json new file mode 100644 index 0000000000000000000000000000000000000000..434e3bf19a101a4c10568eab03d2f17b3dc0b255 --- /dev/null +++ b/timecost/m4/realtabformer/rtf-m4-20260501_033611/rtf_checkpoints/checkpoint-6860/trainer_state.json @@ -0,0 +1,510 @@ +{ + "best_global_step": null, + "best_metric": null, + "best_model_checkpoint": null, + "epoch": 98.0, + "eval_steps": 100, + "global_step": 6860, + "is_hyper_param_search": false, + "is_local_process_zero": true, + "is_world_process_zero": true, + "log_history": [ + { + "epoch": 1.4316546762589928, + "grad_norm": 0.355408638715744, + "learning_rate": 4.929285714285715e-05, + "loss": 1.9745016479492188, + "step": 100 + }, + { + "epoch": 2.8633093525179856, + "grad_norm": 0.3432696759700775, + "learning_rate": 4.857857142857143e-05, + "loss": 1.4019232177734375, + "step": 200 + }, + { + "epoch": 4.287769784172662, + "grad_norm": 0.37436360120773315, + "learning_rate": 4.7864285714285714e-05, + "loss": 1.3409852600097656, + "step": 300 + }, + { + "epoch": 5.719424460431655, + "grad_norm": 0.3854033648967743, + "learning_rate": 4.715e-05, + "loss": 1.2996253967285156, + "step": 400 + }, + { + "epoch": 7.143884892086331, + "grad_norm": 0.4203447997570038, + "learning_rate": 4.643571428571429e-05, + "loss": 1.259985122680664, + "step": 500 + }, + { + "epoch": 8.575539568345324, + "grad_norm": 0.4687316417694092, + "learning_rate": 4.5721428571428574e-05, + "loss": 1.2107434844970704, + "step": 600 + }, + { + "epoch": 10.0, + "grad_norm": 0.9186628460884094, + "learning_rate": 4.500714285714286e-05, + "loss": 1.1670813751220703, + "step": 700 + }, + { + "epoch": 11.431654676258994, + "grad_norm": 0.49637436866760254, + "learning_rate": 4.429285714285715e-05, + "loss": 1.1059295654296875, + "step": 800 + }, + { + "epoch": 12.863309352517986, + "grad_norm": 0.5657761096954346, + "learning_rate": 4.357857142857143e-05, + "loss": 1.040764389038086, + "step": 900 + }, + { + "epoch": 14.287769784172662, + "grad_norm": 0.5341610312461853, + "learning_rate": 4.2864285714285715e-05, + "loss": 0.9634710693359375, + "step": 1000 + }, + { + "epoch": 15.719424460431654, + "grad_norm": 0.6149197816848755, + "learning_rate": 4.215e-05, + "loss": 0.88642822265625, + "step": 1100 + }, + { + "epoch": 17.14388489208633, + "grad_norm": 0.5562811493873596, + "learning_rate": 4.143571428571429e-05, + "loss": 0.8134054565429687, + "step": 1200 + }, + { + "epoch": 18.575539568345324, + "grad_norm": 0.572320282459259, + "learning_rate": 4.0721428571428575e-05, + "loss": 0.7409443664550781, + "step": 1300 + }, + { + "epoch": 20.0, + "grad_norm": 1.1183358430862427, + "learning_rate": 4.000714285714286e-05, + "loss": 0.6947654724121094, + "step": 1400 + }, + { + "epoch": 21.431654676258994, + "grad_norm": 0.5899038314819336, + "learning_rate": 3.929285714285714e-05, + "loss": 0.6337775039672852, + "step": 1500 + }, + { + "epoch": 22.863309352517987, + "grad_norm": 0.5425059199333191, + "learning_rate": 3.857857142857143e-05, + "loss": 0.5985966491699218, + "step": 1600 + }, + { + "epoch": 24.28776978417266, + "grad_norm": 0.5404720306396484, + "learning_rate": 3.786428571428572e-05, + "loss": 0.5602037811279297, + "step": 1700 + }, + { + "epoch": 25.719424460431654, + "grad_norm": 0.5059275031089783, + "learning_rate": 3.715e-05, + "loss": 0.5371580123901367, + "step": 1800 + }, + { + "epoch": 27.14388489208633, + "grad_norm": 0.44090911746025085, + "learning_rate": 3.643571428571429e-05, + "loss": 0.5157820892333984, + "step": 1900 + }, + { + "epoch": 28.575539568345324, + "grad_norm": 0.47748005390167236, + "learning_rate": 3.5721428571428575e-05, + "loss": 0.4929149627685547, + "step": 2000 + }, + { + "epoch": 30.0, + "grad_norm": 0.8368889689445496, + "learning_rate": 3.500714285714286e-05, + "loss": 0.4742084503173828, + "step": 2100 + }, + { + "epoch": 31.431654676258994, + "grad_norm": 0.43759119510650635, + "learning_rate": 3.429285714285714e-05, + "loss": 0.4594686508178711, + "step": 2200 + }, + { + "epoch": 32.86330935251799, + "grad_norm": 0.5055125951766968, + "learning_rate": 3.357857142857143e-05, + "loss": 0.44555919647216796, + "step": 2300 + }, + { + "epoch": 34.28776978417266, + "grad_norm": 0.4293630123138428, + "learning_rate": 3.2864285714285715e-05, + "loss": 0.43556678771972657, + "step": 2400 + }, + { + "epoch": 35.719424460431654, + "grad_norm": 0.4206651747226715, + "learning_rate": 3.215e-05, + "loss": 0.42476219177246094, + "step": 2500 + }, + { + "epoch": 37.143884892086334, + "grad_norm": 0.40377891063690186, + "learning_rate": 3.143571428571428e-05, + "loss": 0.41686100006103516, + "step": 2600 + }, + { + "epoch": 38.57553956834532, + "grad_norm": 0.44274216890335083, + "learning_rate": 3.0721428571428576e-05, + "loss": 0.4049409866333008, + "step": 2700 + }, + { + "epoch": 40.0, + "grad_norm": 0.7320085763931274, + "learning_rate": 3.0007142857142856e-05, + "loss": 0.40352741241455076, + "step": 2800 + }, + { + "epoch": 41.431654676258994, + "grad_norm": 0.3710326552391052, + "learning_rate": 2.9292857142857146e-05, + "loss": 0.392877082824707, + "step": 2900 + }, + { + "epoch": 42.86330935251799, + "grad_norm": 0.41697078943252563, + "learning_rate": 2.8578571428571433e-05, + "loss": 0.3891782760620117, + "step": 3000 + }, + { + "epoch": 44.28776978417266, + "grad_norm": 0.3859659433364868, + "learning_rate": 2.7864285714285716e-05, + "loss": 0.3797669982910156, + "step": 3100 + }, + { + "epoch": 45.719424460431654, + "grad_norm": 0.4415609836578369, + "learning_rate": 2.7150000000000003e-05, + "loss": 0.375827751159668, + "step": 3200 + }, + { + "epoch": 47.143884892086334, + "grad_norm": 0.3726028501987457, + "learning_rate": 2.6435714285714286e-05, + "loss": 0.37346839904785156, + "step": 3300 + }, + { + "epoch": 48.57553956834532, + "grad_norm": 0.38533180952072144, + "learning_rate": 2.5721428571428573e-05, + "loss": 0.36665096282958987, + "step": 3400 + }, + { + "epoch": 50.0, + "grad_norm": 0.6937333345413208, + "learning_rate": 2.5007142857142856e-05, + "loss": 0.3679323959350586, + "step": 3500 + }, + { + "epoch": 51.431654676258994, + "grad_norm": 0.3872888386249542, + "learning_rate": 2.4292857142857146e-05, + "loss": 0.3602333068847656, + "step": 3600 + }, + { + "epoch": 52.86330935251799, + "grad_norm": 0.3236874043941498, + "learning_rate": 2.357857142857143e-05, + "loss": 0.3591602325439453, + "step": 3700 + }, + { + "epoch": 54.28776978417266, + "grad_norm": 0.3833729326725006, + "learning_rate": 2.2864285714285716e-05, + "loss": 0.3564492797851562, + "step": 3800 + }, + { + "epoch": 55.719424460431654, + "grad_norm": 0.38681459426879883, + "learning_rate": 2.215e-05, + "loss": 0.35298805236816405, + "step": 3900 + }, + { + "epoch": 57.143884892086334, + "grad_norm": 0.3262157142162323, + "learning_rate": 2.1435714285714286e-05, + "loss": 0.3520388412475586, + "step": 4000 + }, + { + "epoch": 58.57553956834532, + "grad_norm": 0.28272324800491333, + "learning_rate": 2.0721428571428573e-05, + "loss": 0.3480962371826172, + "step": 4100 + }, + { + "epoch": 60.0, + "grad_norm": 0.6237635016441345, + "learning_rate": 2.0007142857142857e-05, + "loss": 0.34799785614013673, + "step": 4200 + }, + { + "epoch": 61.431654676258994, + "grad_norm": 0.28903186321258545, + "learning_rate": 1.9292857142857143e-05, + "loss": 0.3425423049926758, + "step": 4300 + }, + { + "epoch": 62.86330935251799, + "grad_norm": 0.3131926953792572, + "learning_rate": 1.857857142857143e-05, + "loss": 0.3454655456542969, + "step": 4400 + }, + { + "epoch": 64.28776978417267, + "grad_norm": 0.28085246682167053, + "learning_rate": 1.7864285714285713e-05, + "loss": 0.34086563110351564, + "step": 4500 + }, + { + "epoch": 65.71942446043165, + "grad_norm": 0.3234202563762665, + "learning_rate": 1.7150000000000004e-05, + "loss": 0.33850929260253904, + "step": 4600 + }, + { + "epoch": 67.14388489208633, + "grad_norm": 0.25634437799453735, + "learning_rate": 1.6435714285714287e-05, + "loss": 0.3384051132202148, + "step": 4700 + }, + { + "epoch": 68.57553956834532, + "grad_norm": 0.3404187262058258, + "learning_rate": 1.5721428571428574e-05, + "loss": 0.3373231887817383, + "step": 4800 + }, + { + "epoch": 70.0, + "grad_norm": 0.6950141191482544, + "learning_rate": 1.5007142857142859e-05, + "loss": 0.3362230682373047, + "step": 4900 + }, + { + "epoch": 71.43165467625899, + "grad_norm": 0.38788536190986633, + "learning_rate": 1.4292857142857144e-05, + "loss": 0.33364181518554686, + "step": 5000 + }, + { + "epoch": 72.86330935251799, + "grad_norm": 0.26893335580825806, + "learning_rate": 1.3578571428571429e-05, + "loss": 0.33343013763427737, + "step": 5100 + }, + { + "epoch": 74.28776978417267, + "grad_norm": 0.317146360874176, + "learning_rate": 1.2864285714285716e-05, + "loss": 0.33120128631591794, + "step": 5200 + }, + { + "epoch": 75.71942446043165, + "grad_norm": 0.25996723771095276, + "learning_rate": 1.215e-05, + "loss": 0.33197879791259766, + "step": 5300 + }, + { + "epoch": 77.14388489208633, + "grad_norm": 0.2829038202762604, + "learning_rate": 1.1435714285714286e-05, + "loss": 0.3305575942993164, + "step": 5400 + }, + { + "epoch": 78.57553956834532, + "grad_norm": 0.3527142405509949, + "learning_rate": 1.0721428571428572e-05, + "loss": 0.32733917236328125, + "step": 5500 + }, + { + "epoch": 80.0, + "grad_norm": 0.48380932211875916, + "learning_rate": 1.0007142857142857e-05, + "loss": 0.3284780502319336, + "step": 5600 + }, + { + "epoch": 81.43165467625899, + "grad_norm": 0.28093209862709045, + "learning_rate": 9.292857142857144e-06, + "loss": 0.3261085891723633, + "step": 5700 + }, + { + "epoch": 82.86330935251799, + "grad_norm": 0.32190901041030884, + "learning_rate": 8.57857142857143e-06, + "loss": 0.32692623138427734, + "step": 5800 + }, + { + "epoch": 84.28776978417267, + "grad_norm": 0.25844648480415344, + "learning_rate": 7.864285714285714e-06, + "loss": 0.32516582489013673, + "step": 5900 + }, + { + "epoch": 85.71942446043165, + "grad_norm": 0.28139543533325195, + "learning_rate": 7.15e-06, + "loss": 0.3232896423339844, + "step": 6000 + }, + { + "epoch": 87.14388489208633, + "grad_norm": 0.29647108912467957, + "learning_rate": 6.435714285714287e-06, + "loss": 0.32342647552490233, + "step": 6100 + }, + { + "epoch": 88.57553956834532, + "grad_norm": 0.3490413427352905, + "learning_rate": 5.721428571428572e-06, + "loss": 0.3228362274169922, + "step": 6200 + }, + { + "epoch": 90.0, + "grad_norm": 0.716325044631958, + "learning_rate": 5.007142857142858e-06, + "loss": 0.3227589797973633, + "step": 6300 + }, + { + "epoch": 91.43165467625899, + "grad_norm": 0.27956023812294006, + "learning_rate": 4.292857142857143e-06, + "loss": 0.32096038818359374, + "step": 6400 + }, + { + "epoch": 92.86330935251799, + "grad_norm": 0.25956645607948303, + "learning_rate": 3.5785714285714292e-06, + "loss": 0.32137725830078123, + "step": 6500 + }, + { + "epoch": 94.28776978417267, + "grad_norm": 0.2535034120082855, + "learning_rate": 2.8642857142857147e-06, + "loss": 0.31845773696899415, + "step": 6600 + }, + { + "epoch": 95.71942446043165, + "grad_norm": 0.3152118921279907, + "learning_rate": 2.1499999999999997e-06, + "loss": 0.3196479606628418, + "step": 6700 + }, + { + "epoch": 97.14388489208633, + "grad_norm": 0.2890796363353729, + "learning_rate": 1.4357142857142856e-06, + "loss": 0.31787015914916994, + "step": 6800 + } + ], + "logging_steps": 100, + "max_steps": 7000, + "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": 1330567964393472.0, + "train_batch_size": 8, + "trial_name": null, + "trial_params": null +} diff --git a/timecost/m4/realtabformer/rtf-m4-20260501_033611/rtf_checkpoints/checkpoint-6860/training_args.bin b/timecost/m4/realtabformer/rtf-m4-20260501_033611/rtf_checkpoints/checkpoint-6860/training_args.bin new file mode 100644 index 0000000000000000000000000000000000000000..34d68dc0e0fe1c1f12a2e581dd1b166aa7178a9e --- /dev/null +++ b/timecost/m4/realtabformer/rtf-m4-20260501_033611/rtf_checkpoints/checkpoint-6860/training_args.bin @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:9e2cd88337d1d846c6918d2b3b63fa3e5c93f12fefc082497590da854a564607 +size 5201 diff --git a/timecost/m4/realtabformer/rtf-m4-20260501_033611/rtf_checkpoints/checkpoint-6900/config.json b/timecost/m4/realtabformer/rtf-m4-20260501_033611/rtf_checkpoints/checkpoint-6900/config.json new file mode 100644 index 0000000000000000000000000000000000000000..69b1961f0cbafdc846150e71a2d82b4ce3beb94c --- /dev/null +++ b/timecost/m4/realtabformer/rtf-m4-20260501_033611/rtf_checkpoints/checkpoint-6900/config.json @@ -0,0 +1,34 @@ +{ + "activation_function": "gelu_new", + "add_cross_attention": false, + "architectures": [ + "GPT2LMHeadModel" + ], + "attn_pdrop": 0.1, + "bos_token_id": 5, + "dtype": "float32", + "embd_pdrop": 0.1, + "eos_token_id": 6, + "initializer_range": 0.02, + "layer_norm_epsilon": 1e-05, + "model_type": "gpt2", + "n_embd": 768, + "n_head": 12, + "n_inner": null, + "n_layer": 6, + "n_positions": 1024, + "pad_token_id": null, + "reorder_and_upcast_attn": false, + "resid_pdrop": 0.1, + "scale_attn_by_inverse_layer_idx": false, + "scale_attn_weights": true, + "summary_activation": null, + "summary_first_dropout": 0.1, + "summary_proj_to_labels": true, + "summary_type": "cls_index", + "summary_use_proj": true, + "tie_word_embeddings": true, + "transformers_version": "5.5.3", + "use_cache": false, + "vocab_size": 167 +} diff --git a/timecost/m4/realtabformer/rtf-m4-20260501_033611/rtf_checkpoints/checkpoint-6900/generation_config.json b/timecost/m4/realtabformer/rtf-m4-20260501_033611/rtf_checkpoints/checkpoint-6900/generation_config.json new file mode 100644 index 0000000000000000000000000000000000000000..ffe89567780e75b5c22eade9be971483b9618f39 --- /dev/null +++ b/timecost/m4/realtabformer/rtf-m4-20260501_033611/rtf_checkpoints/checkpoint-6900/generation_config.json @@ -0,0 +1,9 @@ +{ + "_from_model_config": true, + "bos_token_id": 5, + "eos_token_id": 6, + "output_attentions": false, + "output_hidden_states": false, + "transformers_version": "5.5.3", + "use_cache": true +} diff --git a/timecost/m4/realtabformer/rtf-m4-20260501_033611/rtf_checkpoints/checkpoint-6900/model.safetensors b/timecost/m4/realtabformer/rtf-m4-20260501_033611/rtf_checkpoints/checkpoint-6900/model.safetensors new file mode 100644 index 0000000000000000000000000000000000000000..ccd0639e74eed588059c885fdee6a042808100b6 --- /dev/null +++ b/timecost/m4/realtabformer/rtf-m4-20260501_033611/rtf_checkpoints/checkpoint-6900/model.safetensors @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:7402e6c6c5b5faf82350b4687bf63d1c1df6f2c5c3c26a6e5e9830d3b2b04c6b +size 173781448 diff --git a/timecost/m4/realtabformer/rtf-m4-20260501_033611/rtf_checkpoints/checkpoint-6900/optimizer.pt b/timecost/m4/realtabformer/rtf-m4-20260501_033611/rtf_checkpoints/checkpoint-6900/optimizer.pt new file mode 100644 index 0000000000000000000000000000000000000000..ccdca6770fc29f3ee65dd7c0ad1055bd560c88e0 --- /dev/null +++ b/timecost/m4/realtabformer/rtf-m4-20260501_033611/rtf_checkpoints/checkpoint-6900/optimizer.pt @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:6a62928c737bc08116d952eb9d736384cd061fe9f4485a205bfc8c3fbd8fcb79 +size 347611979 diff --git a/timecost/m4/realtabformer/rtf-m4-20260501_033611/rtf_checkpoints/checkpoint-6900/rng_state.pth b/timecost/m4/realtabformer/rtf-m4-20260501_033611/rtf_checkpoints/checkpoint-6900/rng_state.pth new file mode 100644 index 0000000000000000000000000000000000000000..7026121a96476d11eb9e56bba2a3d772d3faf4e0 --- /dev/null +++ b/timecost/m4/realtabformer/rtf-m4-20260501_033611/rtf_checkpoints/checkpoint-6900/rng_state.pth @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:a52db3c6e706198d1236b6614c23c143890bf0c5ac7e569c743ef81fc4b1913b +size 14645 diff --git a/timecost/m4/realtabformer/rtf-m4-20260501_033611/rtf_checkpoints/checkpoint-6900/scaler.pt b/timecost/m4/realtabformer/rtf-m4-20260501_033611/rtf_checkpoints/checkpoint-6900/scaler.pt new file mode 100644 index 0000000000000000000000000000000000000000..b22b1914dbfb583b5a2deff1ab77d77681c82e68 --- /dev/null +++ b/timecost/m4/realtabformer/rtf-m4-20260501_033611/rtf_checkpoints/checkpoint-6900/scaler.pt @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:4ffb8fb5b11cd6889e0c0a2a8995390e58f4cc2bf69f1c1002148fd7d9bdfafd +size 1383 diff --git a/timecost/m4/realtabformer/rtf-m4-20260501_033611/rtf_checkpoints/checkpoint-6900/scheduler.pt b/timecost/m4/realtabformer/rtf-m4-20260501_033611/rtf_checkpoints/checkpoint-6900/scheduler.pt new file mode 100644 index 0000000000000000000000000000000000000000..4137dd17f201d7e14b89bd62623ea6aa85023f0b --- /dev/null +++ b/timecost/m4/realtabformer/rtf-m4-20260501_033611/rtf_checkpoints/checkpoint-6900/scheduler.pt @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:12072c368c1a29e858b950700c462bd515d08e328e5ebaed43cf1720259ee67e +size 1465 diff --git a/timecost/m4/realtabformer/rtf-m4-20260501_033611/rtf_checkpoints/checkpoint-6900/trainer_state.json b/timecost/m4/realtabformer/rtf-m4-20260501_033611/rtf_checkpoints/checkpoint-6900/trainer_state.json new file mode 100644 index 0000000000000000000000000000000000000000..fc2c386350074f55c0eaa218b34b0ec43a25997c --- /dev/null +++ b/timecost/m4/realtabformer/rtf-m4-20260501_033611/rtf_checkpoints/checkpoint-6900/trainer_state.json @@ -0,0 +1,517 @@ +{ + "best_global_step": null, + "best_metric": null, + "best_model_checkpoint": null, + "epoch": 98.57553956834532, + "eval_steps": 100, + "global_step": 6900, + "is_hyper_param_search": false, + "is_local_process_zero": true, + "is_world_process_zero": true, + "log_history": [ + { + "epoch": 1.4316546762589928, + "grad_norm": 0.355408638715744, + "learning_rate": 4.929285714285715e-05, + "loss": 1.9745016479492188, + "step": 100 + }, + { + "epoch": 2.8633093525179856, + "grad_norm": 0.3432696759700775, + "learning_rate": 4.857857142857143e-05, + "loss": 1.4019232177734375, + "step": 200 + }, + { + "epoch": 4.287769784172662, + "grad_norm": 0.37436360120773315, + "learning_rate": 4.7864285714285714e-05, + "loss": 1.3409852600097656, + "step": 300 + }, + { + "epoch": 5.719424460431655, + "grad_norm": 0.3854033648967743, + "learning_rate": 4.715e-05, + "loss": 1.2996253967285156, + "step": 400 + }, + { + "epoch": 7.143884892086331, + "grad_norm": 0.4203447997570038, + "learning_rate": 4.643571428571429e-05, + "loss": 1.259985122680664, + "step": 500 + }, + { + "epoch": 8.575539568345324, + "grad_norm": 0.4687316417694092, + "learning_rate": 4.5721428571428574e-05, + "loss": 1.2107434844970704, + "step": 600 + }, + { + "epoch": 10.0, + "grad_norm": 0.9186628460884094, + "learning_rate": 4.500714285714286e-05, + "loss": 1.1670813751220703, + "step": 700 + }, + { + "epoch": 11.431654676258994, + "grad_norm": 0.49637436866760254, + "learning_rate": 4.429285714285715e-05, + "loss": 1.1059295654296875, + "step": 800 + }, + { + "epoch": 12.863309352517986, + "grad_norm": 0.5657761096954346, + "learning_rate": 4.357857142857143e-05, + "loss": 1.040764389038086, + "step": 900 + }, + { + "epoch": 14.287769784172662, + "grad_norm": 0.5341610312461853, + "learning_rate": 4.2864285714285715e-05, + "loss": 0.9634710693359375, + "step": 1000 + }, + { + "epoch": 15.719424460431654, + "grad_norm": 0.6149197816848755, + "learning_rate": 4.215e-05, + "loss": 0.88642822265625, + "step": 1100 + }, + { + "epoch": 17.14388489208633, + "grad_norm": 0.5562811493873596, + "learning_rate": 4.143571428571429e-05, + "loss": 0.8134054565429687, + "step": 1200 + }, + { + "epoch": 18.575539568345324, + "grad_norm": 0.572320282459259, + "learning_rate": 4.0721428571428575e-05, + "loss": 0.7409443664550781, + "step": 1300 + }, + { + "epoch": 20.0, + "grad_norm": 1.1183358430862427, + "learning_rate": 4.000714285714286e-05, + "loss": 0.6947654724121094, + "step": 1400 + }, + { + "epoch": 21.431654676258994, + "grad_norm": 0.5899038314819336, + "learning_rate": 3.929285714285714e-05, + "loss": 0.6337775039672852, + "step": 1500 + }, + { + "epoch": 22.863309352517987, + "grad_norm": 0.5425059199333191, + "learning_rate": 3.857857142857143e-05, + "loss": 0.5985966491699218, + "step": 1600 + }, + { + "epoch": 24.28776978417266, + "grad_norm": 0.5404720306396484, + "learning_rate": 3.786428571428572e-05, + "loss": 0.5602037811279297, + "step": 1700 + }, + { + "epoch": 25.719424460431654, + "grad_norm": 0.5059275031089783, + "learning_rate": 3.715e-05, + "loss": 0.5371580123901367, + "step": 1800 + }, + { + "epoch": 27.14388489208633, + "grad_norm": 0.44090911746025085, + "learning_rate": 3.643571428571429e-05, + "loss": 0.5157820892333984, + "step": 1900 + }, + { + "epoch": 28.575539568345324, + "grad_norm": 0.47748005390167236, + "learning_rate": 3.5721428571428575e-05, + "loss": 0.4929149627685547, + "step": 2000 + }, + { + "epoch": 30.0, + "grad_norm": 0.8368889689445496, + "learning_rate": 3.500714285714286e-05, + "loss": 0.4742084503173828, + "step": 2100 + }, + { + "epoch": 31.431654676258994, + "grad_norm": 0.43759119510650635, + "learning_rate": 3.429285714285714e-05, + "loss": 0.4594686508178711, + "step": 2200 + }, + { + "epoch": 32.86330935251799, + "grad_norm": 0.5055125951766968, + "learning_rate": 3.357857142857143e-05, + "loss": 0.44555919647216796, + "step": 2300 + }, + { + "epoch": 34.28776978417266, + "grad_norm": 0.4293630123138428, + "learning_rate": 3.2864285714285715e-05, + "loss": 0.43556678771972657, + "step": 2400 + }, + { + "epoch": 35.719424460431654, + "grad_norm": 0.4206651747226715, + "learning_rate": 3.215e-05, + "loss": 0.42476219177246094, + "step": 2500 + }, + { + "epoch": 37.143884892086334, + "grad_norm": 0.40377891063690186, + "learning_rate": 3.143571428571428e-05, + "loss": 0.41686100006103516, + "step": 2600 + }, + { + "epoch": 38.57553956834532, + "grad_norm": 0.44274216890335083, + "learning_rate": 3.0721428571428576e-05, + "loss": 0.4049409866333008, + "step": 2700 + }, + { + "epoch": 40.0, + "grad_norm": 0.7320085763931274, + "learning_rate": 3.0007142857142856e-05, + "loss": 0.40352741241455076, + "step": 2800 + }, + { + "epoch": 41.431654676258994, + "grad_norm": 0.3710326552391052, + "learning_rate": 2.9292857142857146e-05, + "loss": 0.392877082824707, + "step": 2900 + }, + { + "epoch": 42.86330935251799, + "grad_norm": 0.41697078943252563, + "learning_rate": 2.8578571428571433e-05, + "loss": 0.3891782760620117, + "step": 3000 + }, + { + "epoch": 44.28776978417266, + "grad_norm": 0.3859659433364868, + "learning_rate": 2.7864285714285716e-05, + "loss": 0.3797669982910156, + "step": 3100 + }, + { + "epoch": 45.719424460431654, + "grad_norm": 0.4415609836578369, + "learning_rate": 2.7150000000000003e-05, + "loss": 0.375827751159668, + "step": 3200 + }, + { + "epoch": 47.143884892086334, + "grad_norm": 0.3726028501987457, + "learning_rate": 2.6435714285714286e-05, + "loss": 0.37346839904785156, + "step": 3300 + }, + { + "epoch": 48.57553956834532, + "grad_norm": 0.38533180952072144, + "learning_rate": 2.5721428571428573e-05, + "loss": 0.36665096282958987, + "step": 3400 + }, + { + "epoch": 50.0, + "grad_norm": 0.6937333345413208, + "learning_rate": 2.5007142857142856e-05, + "loss": 0.3679323959350586, + "step": 3500 + }, + { + "epoch": 51.431654676258994, + "grad_norm": 0.3872888386249542, + "learning_rate": 2.4292857142857146e-05, + "loss": 0.3602333068847656, + "step": 3600 + }, + { + "epoch": 52.86330935251799, + "grad_norm": 0.3236874043941498, + "learning_rate": 2.357857142857143e-05, + "loss": 0.3591602325439453, + "step": 3700 + }, + { + "epoch": 54.28776978417266, + "grad_norm": 0.3833729326725006, + "learning_rate": 2.2864285714285716e-05, + "loss": 0.3564492797851562, + "step": 3800 + }, + { + "epoch": 55.719424460431654, + "grad_norm": 0.38681459426879883, + "learning_rate": 2.215e-05, + "loss": 0.35298805236816405, + "step": 3900 + }, + { + "epoch": 57.143884892086334, + "grad_norm": 0.3262157142162323, + "learning_rate": 2.1435714285714286e-05, + "loss": 0.3520388412475586, + "step": 4000 + }, + { + "epoch": 58.57553956834532, + "grad_norm": 0.28272324800491333, + "learning_rate": 2.0721428571428573e-05, + "loss": 0.3480962371826172, + "step": 4100 + }, + { + "epoch": 60.0, + "grad_norm": 0.6237635016441345, + "learning_rate": 2.0007142857142857e-05, + "loss": 0.34799785614013673, + "step": 4200 + }, + { + "epoch": 61.431654676258994, + "grad_norm": 0.28903186321258545, + "learning_rate": 1.9292857142857143e-05, + "loss": 0.3425423049926758, + "step": 4300 + }, + { + "epoch": 62.86330935251799, + "grad_norm": 0.3131926953792572, + "learning_rate": 1.857857142857143e-05, + "loss": 0.3454655456542969, + "step": 4400 + }, + { + "epoch": 64.28776978417267, + "grad_norm": 0.28085246682167053, + "learning_rate": 1.7864285714285713e-05, + "loss": 0.34086563110351564, + "step": 4500 + }, + { + "epoch": 65.71942446043165, + "grad_norm": 0.3234202563762665, + "learning_rate": 1.7150000000000004e-05, + "loss": 0.33850929260253904, + "step": 4600 + }, + { + "epoch": 67.14388489208633, + "grad_norm": 0.25634437799453735, + "learning_rate": 1.6435714285714287e-05, + "loss": 0.3384051132202148, + "step": 4700 + }, + { + "epoch": 68.57553956834532, + "grad_norm": 0.3404187262058258, + "learning_rate": 1.5721428571428574e-05, + "loss": 0.3373231887817383, + "step": 4800 + }, + { + "epoch": 70.0, + "grad_norm": 0.6950141191482544, + "learning_rate": 1.5007142857142859e-05, + "loss": 0.3362230682373047, + "step": 4900 + }, + { + "epoch": 71.43165467625899, + "grad_norm": 0.38788536190986633, + "learning_rate": 1.4292857142857144e-05, + "loss": 0.33364181518554686, + "step": 5000 + }, + { + "epoch": 72.86330935251799, + "grad_norm": 0.26893335580825806, + "learning_rate": 1.3578571428571429e-05, + "loss": 0.33343013763427737, + "step": 5100 + }, + { + "epoch": 74.28776978417267, + "grad_norm": 0.317146360874176, + "learning_rate": 1.2864285714285716e-05, + "loss": 0.33120128631591794, + "step": 5200 + }, + { + "epoch": 75.71942446043165, + "grad_norm": 0.25996723771095276, + "learning_rate": 1.215e-05, + "loss": 0.33197879791259766, + "step": 5300 + }, + { + "epoch": 77.14388489208633, + "grad_norm": 0.2829038202762604, + "learning_rate": 1.1435714285714286e-05, + "loss": 0.3305575942993164, + "step": 5400 + }, + { + "epoch": 78.57553956834532, + "grad_norm": 0.3527142405509949, + "learning_rate": 1.0721428571428572e-05, + "loss": 0.32733917236328125, + "step": 5500 + }, + { + "epoch": 80.0, + "grad_norm": 0.48380932211875916, + "learning_rate": 1.0007142857142857e-05, + "loss": 0.3284780502319336, + "step": 5600 + }, + { + "epoch": 81.43165467625899, + "grad_norm": 0.28093209862709045, + "learning_rate": 9.292857142857144e-06, + "loss": 0.3261085891723633, + "step": 5700 + }, + { + "epoch": 82.86330935251799, + "grad_norm": 0.32190901041030884, + "learning_rate": 8.57857142857143e-06, + "loss": 0.32692623138427734, + "step": 5800 + }, + { + "epoch": 84.28776978417267, + "grad_norm": 0.25844648480415344, + "learning_rate": 7.864285714285714e-06, + "loss": 0.32516582489013673, + "step": 5900 + }, + { + "epoch": 85.71942446043165, + "grad_norm": 0.28139543533325195, + "learning_rate": 7.15e-06, + "loss": 0.3232896423339844, + "step": 6000 + }, + { + "epoch": 87.14388489208633, + "grad_norm": 0.29647108912467957, + "learning_rate": 6.435714285714287e-06, + "loss": 0.32342647552490233, + "step": 6100 + }, + { + "epoch": 88.57553956834532, + "grad_norm": 0.3490413427352905, + "learning_rate": 5.721428571428572e-06, + "loss": 0.3228362274169922, + "step": 6200 + }, + { + "epoch": 90.0, + "grad_norm": 0.716325044631958, + "learning_rate": 5.007142857142858e-06, + "loss": 0.3227589797973633, + "step": 6300 + }, + { + "epoch": 91.43165467625899, + "grad_norm": 0.27956023812294006, + "learning_rate": 4.292857142857143e-06, + "loss": 0.32096038818359374, + "step": 6400 + }, + { + "epoch": 92.86330935251799, + "grad_norm": 0.25956645607948303, + "learning_rate": 3.5785714285714292e-06, + "loss": 0.32137725830078123, + "step": 6500 + }, + { + "epoch": 94.28776978417267, + "grad_norm": 0.2535034120082855, + "learning_rate": 2.8642857142857147e-06, + "loss": 0.31845773696899415, + "step": 6600 + }, + { + "epoch": 95.71942446043165, + "grad_norm": 0.3152118921279907, + "learning_rate": 2.1499999999999997e-06, + "loss": 0.3196479606628418, + "step": 6700 + }, + { + "epoch": 97.14388489208633, + "grad_norm": 0.2890796363353729, + "learning_rate": 1.4357142857142856e-06, + "loss": 0.31787015914916994, + "step": 6800 + }, + { + "epoch": 98.57553956834532, + "grad_norm": 0.2547329366207123, + "learning_rate": 7.214285714285714e-07, + "loss": 0.3171095275878906, + "step": 6900 + } + ], + "logging_steps": 100, + "max_steps": 7000, + "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": 1338406866911232.0, + "train_batch_size": 8, + "trial_name": null, + "trial_params": null +} diff --git a/timecost/m4/realtabformer/rtf-m4-20260501_033611/rtf_checkpoints/checkpoint-6900/training_args.bin b/timecost/m4/realtabformer/rtf-m4-20260501_033611/rtf_checkpoints/checkpoint-6900/training_args.bin new file mode 100644 index 0000000000000000000000000000000000000000..34d68dc0e0fe1c1f12a2e581dd1b166aa7178a9e --- /dev/null +++ b/timecost/m4/realtabformer/rtf-m4-20260501_033611/rtf_checkpoints/checkpoint-6900/training_args.bin @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:9e2cd88337d1d846c6918d2b3b63fa3e5c93f12fefc082497590da854a564607 +size 5201 diff --git a/timecost/m4/realtabformer/rtf-m4-20260501_033611/rtf_checkpoints/checkpoint-6930/config.json b/timecost/m4/realtabformer/rtf-m4-20260501_033611/rtf_checkpoints/checkpoint-6930/config.json new file mode 100644 index 0000000000000000000000000000000000000000..69b1961f0cbafdc846150e71a2d82b4ce3beb94c --- /dev/null +++ b/timecost/m4/realtabformer/rtf-m4-20260501_033611/rtf_checkpoints/checkpoint-6930/config.json @@ -0,0 +1,34 @@ +{ + "activation_function": "gelu_new", + "add_cross_attention": false, + "architectures": [ + "GPT2LMHeadModel" + ], + "attn_pdrop": 0.1, + "bos_token_id": 5, + "dtype": "float32", + "embd_pdrop": 0.1, + "eos_token_id": 6, + "initializer_range": 0.02, + "layer_norm_epsilon": 1e-05, + "model_type": "gpt2", + "n_embd": 768, + "n_head": 12, + "n_inner": null, + "n_layer": 6, + "n_positions": 1024, + "pad_token_id": null, + "reorder_and_upcast_attn": false, + "resid_pdrop": 0.1, + "scale_attn_by_inverse_layer_idx": false, + "scale_attn_weights": true, + "summary_activation": null, + "summary_first_dropout": 0.1, + "summary_proj_to_labels": true, + "summary_type": "cls_index", + "summary_use_proj": true, + "tie_word_embeddings": true, + "transformers_version": "5.5.3", + "use_cache": false, + "vocab_size": 167 +} diff --git a/timecost/m4/realtabformer/rtf-m4-20260501_033611/rtf_checkpoints/checkpoint-6930/generation_config.json b/timecost/m4/realtabformer/rtf-m4-20260501_033611/rtf_checkpoints/checkpoint-6930/generation_config.json new file mode 100644 index 0000000000000000000000000000000000000000..ffe89567780e75b5c22eade9be971483b9618f39 --- /dev/null +++ b/timecost/m4/realtabformer/rtf-m4-20260501_033611/rtf_checkpoints/checkpoint-6930/generation_config.json @@ -0,0 +1,9 @@ +{ + "_from_model_config": true, + "bos_token_id": 5, + "eos_token_id": 6, + "output_attentions": false, + "output_hidden_states": false, + "transformers_version": "5.5.3", + "use_cache": true +} diff --git a/timecost/m4/realtabformer/rtf-m4-20260501_033611/rtf_checkpoints/checkpoint-6930/model.safetensors b/timecost/m4/realtabformer/rtf-m4-20260501_033611/rtf_checkpoints/checkpoint-6930/model.safetensors new file mode 100644 index 0000000000000000000000000000000000000000..f599729006e9619a3c2a43e2e95adee778e5f157 --- /dev/null +++ b/timecost/m4/realtabformer/rtf-m4-20260501_033611/rtf_checkpoints/checkpoint-6930/model.safetensors @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:906f8d95544b40f41a5e709a1b3a9ba6089a6e43a0b4cbf1358a80f940249232 +size 173781448 diff --git a/timecost/m4/realtabformer/rtf-m4-20260501_033611/rtf_checkpoints/checkpoint-6930/optimizer.pt b/timecost/m4/realtabformer/rtf-m4-20260501_033611/rtf_checkpoints/checkpoint-6930/optimizer.pt new file mode 100644 index 0000000000000000000000000000000000000000..53fb7dc03862bfc7fbf4e07aa64bdaaa2f09af1a --- /dev/null +++ b/timecost/m4/realtabformer/rtf-m4-20260501_033611/rtf_checkpoints/checkpoint-6930/optimizer.pt @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:8e9f1e0081ec9ba7e14133c9750d97d59d7f1286fdbcababf8ba1166eebc4d9b +size 347611979 diff --git a/timecost/m4/realtabformer/rtf-m4-20260501_033611/rtf_checkpoints/checkpoint-6930/rng_state.pth b/timecost/m4/realtabformer/rtf-m4-20260501_033611/rtf_checkpoints/checkpoint-6930/rng_state.pth new file mode 100644 index 0000000000000000000000000000000000000000..95ec0029ac774471062945329d60a7d9550394b2 --- /dev/null +++ b/timecost/m4/realtabformer/rtf-m4-20260501_033611/rtf_checkpoints/checkpoint-6930/rng_state.pth @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:cc324dc3bed523a53af0336f0b4d9586c59e95829ddebc3189c72ad1dd5a3863 +size 14645 diff --git a/timecost/m4/realtabformer/rtf-m4-20260501_033611/rtf_checkpoints/checkpoint-6930/scaler.pt b/timecost/m4/realtabformer/rtf-m4-20260501_033611/rtf_checkpoints/checkpoint-6930/scaler.pt new file mode 100644 index 0000000000000000000000000000000000000000..0ebf9bc98647409e1f05cf1cc11fef343b9bcdcd --- /dev/null +++ b/timecost/m4/realtabformer/rtf-m4-20260501_033611/rtf_checkpoints/checkpoint-6930/scaler.pt @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:0ffaa8457fea28d38460ea7b8e75d174423b495040439d8f1aca61aa1fe00f12 +size 1383 diff --git a/timecost/m4/realtabformer/rtf-m4-20260501_033611/rtf_checkpoints/checkpoint-6930/scheduler.pt b/timecost/m4/realtabformer/rtf-m4-20260501_033611/rtf_checkpoints/checkpoint-6930/scheduler.pt new file mode 100644 index 0000000000000000000000000000000000000000..1ac04d59d3b357459fa689077a251fb6aefa1d67 --- /dev/null +++ b/timecost/m4/realtabformer/rtf-m4-20260501_033611/rtf_checkpoints/checkpoint-6930/scheduler.pt @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:673e469b2765d06d5cba7bb00ffca947c5716738b7633d51b89cd62f566fa651 +size 1465 diff --git a/timecost/m4/realtabformer/rtf-m4-20260501_033611/rtf_checkpoints/checkpoint-6930/trainer_state.json b/timecost/m4/realtabformer/rtf-m4-20260501_033611/rtf_checkpoints/checkpoint-6930/trainer_state.json new file mode 100644 index 0000000000000000000000000000000000000000..317d75ae6beb9af6bddc9f9ff8b37735097a1d7d --- /dev/null +++ b/timecost/m4/realtabformer/rtf-m4-20260501_033611/rtf_checkpoints/checkpoint-6930/trainer_state.json @@ -0,0 +1,517 @@ +{ + "best_global_step": null, + "best_metric": null, + "best_model_checkpoint": null, + "epoch": 99.0, + "eval_steps": 100, + "global_step": 6930, + "is_hyper_param_search": false, + "is_local_process_zero": true, + "is_world_process_zero": true, + "log_history": [ + { + "epoch": 1.4316546762589928, + "grad_norm": 0.355408638715744, + "learning_rate": 4.929285714285715e-05, + "loss": 1.9745016479492188, + "step": 100 + }, + { + "epoch": 2.8633093525179856, + "grad_norm": 0.3432696759700775, + "learning_rate": 4.857857142857143e-05, + "loss": 1.4019232177734375, + "step": 200 + }, + { + "epoch": 4.287769784172662, + "grad_norm": 0.37436360120773315, + "learning_rate": 4.7864285714285714e-05, + "loss": 1.3409852600097656, + "step": 300 + }, + { + "epoch": 5.719424460431655, + "grad_norm": 0.3854033648967743, + "learning_rate": 4.715e-05, + "loss": 1.2996253967285156, + "step": 400 + }, + { + "epoch": 7.143884892086331, + "grad_norm": 0.4203447997570038, + "learning_rate": 4.643571428571429e-05, + "loss": 1.259985122680664, + "step": 500 + }, + { + "epoch": 8.575539568345324, + "grad_norm": 0.4687316417694092, + "learning_rate": 4.5721428571428574e-05, + "loss": 1.2107434844970704, + "step": 600 + }, + { + "epoch": 10.0, + "grad_norm": 0.9186628460884094, + "learning_rate": 4.500714285714286e-05, + "loss": 1.1670813751220703, + "step": 700 + }, + { + "epoch": 11.431654676258994, + "grad_norm": 0.49637436866760254, + "learning_rate": 4.429285714285715e-05, + "loss": 1.1059295654296875, + "step": 800 + }, + { + "epoch": 12.863309352517986, + "grad_norm": 0.5657761096954346, + "learning_rate": 4.357857142857143e-05, + "loss": 1.040764389038086, + "step": 900 + }, + { + "epoch": 14.287769784172662, + "grad_norm": 0.5341610312461853, + "learning_rate": 4.2864285714285715e-05, + "loss": 0.9634710693359375, + "step": 1000 + }, + { + "epoch": 15.719424460431654, + "grad_norm": 0.6149197816848755, + "learning_rate": 4.215e-05, + "loss": 0.88642822265625, + "step": 1100 + }, + { + "epoch": 17.14388489208633, + "grad_norm": 0.5562811493873596, + "learning_rate": 4.143571428571429e-05, + "loss": 0.8134054565429687, + "step": 1200 + }, + { + "epoch": 18.575539568345324, + "grad_norm": 0.572320282459259, + "learning_rate": 4.0721428571428575e-05, + "loss": 0.7409443664550781, + "step": 1300 + }, + { + "epoch": 20.0, + "grad_norm": 1.1183358430862427, + "learning_rate": 4.000714285714286e-05, + "loss": 0.6947654724121094, + "step": 1400 + }, + { + "epoch": 21.431654676258994, + "grad_norm": 0.5899038314819336, + "learning_rate": 3.929285714285714e-05, + "loss": 0.6337775039672852, + "step": 1500 + }, + { + "epoch": 22.863309352517987, + "grad_norm": 0.5425059199333191, + "learning_rate": 3.857857142857143e-05, + "loss": 0.5985966491699218, + "step": 1600 + }, + { + "epoch": 24.28776978417266, + "grad_norm": 0.5404720306396484, + "learning_rate": 3.786428571428572e-05, + "loss": 0.5602037811279297, + "step": 1700 + }, + { + "epoch": 25.719424460431654, + "grad_norm": 0.5059275031089783, + "learning_rate": 3.715e-05, + "loss": 0.5371580123901367, + "step": 1800 + }, + { + "epoch": 27.14388489208633, + "grad_norm": 0.44090911746025085, + "learning_rate": 3.643571428571429e-05, + "loss": 0.5157820892333984, + "step": 1900 + }, + { + "epoch": 28.575539568345324, + "grad_norm": 0.47748005390167236, + "learning_rate": 3.5721428571428575e-05, + "loss": 0.4929149627685547, + "step": 2000 + }, + { + "epoch": 30.0, + "grad_norm": 0.8368889689445496, + "learning_rate": 3.500714285714286e-05, + "loss": 0.4742084503173828, + "step": 2100 + }, + { + "epoch": 31.431654676258994, + "grad_norm": 0.43759119510650635, + "learning_rate": 3.429285714285714e-05, + "loss": 0.4594686508178711, + "step": 2200 + }, + { + "epoch": 32.86330935251799, + "grad_norm": 0.5055125951766968, + "learning_rate": 3.357857142857143e-05, + "loss": 0.44555919647216796, + "step": 2300 + }, + { + "epoch": 34.28776978417266, + "grad_norm": 0.4293630123138428, + "learning_rate": 3.2864285714285715e-05, + "loss": 0.43556678771972657, + "step": 2400 + }, + { + "epoch": 35.719424460431654, + "grad_norm": 0.4206651747226715, + "learning_rate": 3.215e-05, + "loss": 0.42476219177246094, + "step": 2500 + }, + { + "epoch": 37.143884892086334, + "grad_norm": 0.40377891063690186, + "learning_rate": 3.143571428571428e-05, + "loss": 0.41686100006103516, + "step": 2600 + }, + { + "epoch": 38.57553956834532, + "grad_norm": 0.44274216890335083, + "learning_rate": 3.0721428571428576e-05, + "loss": 0.4049409866333008, + "step": 2700 + }, + { + "epoch": 40.0, + "grad_norm": 0.7320085763931274, + "learning_rate": 3.0007142857142856e-05, + "loss": 0.40352741241455076, + "step": 2800 + }, + { + "epoch": 41.431654676258994, + "grad_norm": 0.3710326552391052, + "learning_rate": 2.9292857142857146e-05, + "loss": 0.392877082824707, + "step": 2900 + }, + { + "epoch": 42.86330935251799, + "grad_norm": 0.41697078943252563, + "learning_rate": 2.8578571428571433e-05, + "loss": 0.3891782760620117, + "step": 3000 + }, + { + "epoch": 44.28776978417266, + "grad_norm": 0.3859659433364868, + "learning_rate": 2.7864285714285716e-05, + "loss": 0.3797669982910156, + "step": 3100 + }, + { + "epoch": 45.719424460431654, + "grad_norm": 0.4415609836578369, + "learning_rate": 2.7150000000000003e-05, + "loss": 0.375827751159668, + "step": 3200 + }, + { + "epoch": 47.143884892086334, + "grad_norm": 0.3726028501987457, + "learning_rate": 2.6435714285714286e-05, + "loss": 0.37346839904785156, + "step": 3300 + }, + { + "epoch": 48.57553956834532, + "grad_norm": 0.38533180952072144, + "learning_rate": 2.5721428571428573e-05, + "loss": 0.36665096282958987, + "step": 3400 + }, + { + "epoch": 50.0, + "grad_norm": 0.6937333345413208, + "learning_rate": 2.5007142857142856e-05, + "loss": 0.3679323959350586, + "step": 3500 + }, + { + "epoch": 51.431654676258994, + "grad_norm": 0.3872888386249542, + "learning_rate": 2.4292857142857146e-05, + "loss": 0.3602333068847656, + "step": 3600 + }, + { + "epoch": 52.86330935251799, + "grad_norm": 0.3236874043941498, + "learning_rate": 2.357857142857143e-05, + "loss": 0.3591602325439453, + "step": 3700 + }, + { + "epoch": 54.28776978417266, + "grad_norm": 0.3833729326725006, + "learning_rate": 2.2864285714285716e-05, + "loss": 0.3564492797851562, + "step": 3800 + }, + { + "epoch": 55.719424460431654, + "grad_norm": 0.38681459426879883, + "learning_rate": 2.215e-05, + "loss": 0.35298805236816405, + "step": 3900 + }, + { + "epoch": 57.143884892086334, + "grad_norm": 0.3262157142162323, + "learning_rate": 2.1435714285714286e-05, + "loss": 0.3520388412475586, + "step": 4000 + }, + { + "epoch": 58.57553956834532, + "grad_norm": 0.28272324800491333, + "learning_rate": 2.0721428571428573e-05, + "loss": 0.3480962371826172, + "step": 4100 + }, + { + "epoch": 60.0, + "grad_norm": 0.6237635016441345, + "learning_rate": 2.0007142857142857e-05, + "loss": 0.34799785614013673, + "step": 4200 + }, + { + "epoch": 61.431654676258994, + "grad_norm": 0.28903186321258545, + "learning_rate": 1.9292857142857143e-05, + "loss": 0.3425423049926758, + "step": 4300 + }, + { + "epoch": 62.86330935251799, + "grad_norm": 0.3131926953792572, + "learning_rate": 1.857857142857143e-05, + "loss": 0.3454655456542969, + "step": 4400 + }, + { + "epoch": 64.28776978417267, + "grad_norm": 0.28085246682167053, + "learning_rate": 1.7864285714285713e-05, + "loss": 0.34086563110351564, + "step": 4500 + }, + { + "epoch": 65.71942446043165, + "grad_norm": 0.3234202563762665, + "learning_rate": 1.7150000000000004e-05, + "loss": 0.33850929260253904, + "step": 4600 + }, + { + "epoch": 67.14388489208633, + "grad_norm": 0.25634437799453735, + "learning_rate": 1.6435714285714287e-05, + "loss": 0.3384051132202148, + "step": 4700 + }, + { + "epoch": 68.57553956834532, + "grad_norm": 0.3404187262058258, + "learning_rate": 1.5721428571428574e-05, + "loss": 0.3373231887817383, + "step": 4800 + }, + { + "epoch": 70.0, + "grad_norm": 0.6950141191482544, + "learning_rate": 1.5007142857142859e-05, + "loss": 0.3362230682373047, + "step": 4900 + }, + { + "epoch": 71.43165467625899, + "grad_norm": 0.38788536190986633, + "learning_rate": 1.4292857142857144e-05, + "loss": 0.33364181518554686, + "step": 5000 + }, + { + "epoch": 72.86330935251799, + "grad_norm": 0.26893335580825806, + "learning_rate": 1.3578571428571429e-05, + "loss": 0.33343013763427737, + "step": 5100 + }, + { + "epoch": 74.28776978417267, + "grad_norm": 0.317146360874176, + "learning_rate": 1.2864285714285716e-05, + "loss": 0.33120128631591794, + "step": 5200 + }, + { + "epoch": 75.71942446043165, + "grad_norm": 0.25996723771095276, + "learning_rate": 1.215e-05, + "loss": 0.33197879791259766, + "step": 5300 + }, + { + "epoch": 77.14388489208633, + "grad_norm": 0.2829038202762604, + "learning_rate": 1.1435714285714286e-05, + "loss": 0.3305575942993164, + "step": 5400 + }, + { + "epoch": 78.57553956834532, + "grad_norm": 0.3527142405509949, + "learning_rate": 1.0721428571428572e-05, + "loss": 0.32733917236328125, + "step": 5500 + }, + { + "epoch": 80.0, + "grad_norm": 0.48380932211875916, + "learning_rate": 1.0007142857142857e-05, + "loss": 0.3284780502319336, + "step": 5600 + }, + { + "epoch": 81.43165467625899, + "grad_norm": 0.28093209862709045, + "learning_rate": 9.292857142857144e-06, + "loss": 0.3261085891723633, + "step": 5700 + }, + { + "epoch": 82.86330935251799, + "grad_norm": 0.32190901041030884, + "learning_rate": 8.57857142857143e-06, + "loss": 0.32692623138427734, + "step": 5800 + }, + { + "epoch": 84.28776978417267, + "grad_norm": 0.25844648480415344, + "learning_rate": 7.864285714285714e-06, + "loss": 0.32516582489013673, + "step": 5900 + }, + { + "epoch": 85.71942446043165, + "grad_norm": 0.28139543533325195, + "learning_rate": 7.15e-06, + "loss": 0.3232896423339844, + "step": 6000 + }, + { + "epoch": 87.14388489208633, + "grad_norm": 0.29647108912467957, + "learning_rate": 6.435714285714287e-06, + "loss": 0.32342647552490233, + "step": 6100 + }, + { + "epoch": 88.57553956834532, + "grad_norm": 0.3490413427352905, + "learning_rate": 5.721428571428572e-06, + "loss": 0.3228362274169922, + "step": 6200 + }, + { + "epoch": 90.0, + "grad_norm": 0.716325044631958, + "learning_rate": 5.007142857142858e-06, + "loss": 0.3227589797973633, + "step": 6300 + }, + { + "epoch": 91.43165467625899, + "grad_norm": 0.27956023812294006, + "learning_rate": 4.292857142857143e-06, + "loss": 0.32096038818359374, + "step": 6400 + }, + { + "epoch": 92.86330935251799, + "grad_norm": 0.25956645607948303, + "learning_rate": 3.5785714285714292e-06, + "loss": 0.32137725830078123, + "step": 6500 + }, + { + "epoch": 94.28776978417267, + "grad_norm": 0.2535034120082855, + "learning_rate": 2.8642857142857147e-06, + "loss": 0.31845773696899415, + "step": 6600 + }, + { + "epoch": 95.71942446043165, + "grad_norm": 0.3152118921279907, + "learning_rate": 2.1499999999999997e-06, + "loss": 0.3196479606628418, + "step": 6700 + }, + { + "epoch": 97.14388489208633, + "grad_norm": 0.2890796363353729, + "learning_rate": 1.4357142857142856e-06, + "loss": 0.31787015914916994, + "step": 6800 + }, + { + "epoch": 98.57553956834532, + "grad_norm": 0.2547329366207123, + "learning_rate": 7.214285714285714e-07, + "loss": 0.3171095275878906, + "step": 6900 + } + ], + "logging_steps": 100, + "max_steps": 7000, + "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": 1344145188519936.0, + "train_batch_size": 8, + "trial_name": null, + "trial_params": null +} diff --git a/timecost/m4/realtabformer/rtf-m4-20260501_033611/rtf_checkpoints/checkpoint-6930/training_args.bin b/timecost/m4/realtabformer/rtf-m4-20260501_033611/rtf_checkpoints/checkpoint-6930/training_args.bin new file mode 100644 index 0000000000000000000000000000000000000000..34d68dc0e0fe1c1f12a2e581dd1b166aa7178a9e --- /dev/null +++ b/timecost/m4/realtabformer/rtf-m4-20260501_033611/rtf_checkpoints/checkpoint-6930/training_args.bin @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:9e2cd88337d1d846c6918d2b3b63fa3e5c93f12fefc082497590da854a564607 +size 5201 diff --git a/timecost/m4/realtabformer/rtf-m4-20260501_033611/rtf_checkpoints/checkpoint-7000/config.json b/timecost/m4/realtabformer/rtf-m4-20260501_033611/rtf_checkpoints/checkpoint-7000/config.json new file mode 100644 index 0000000000000000000000000000000000000000..69b1961f0cbafdc846150e71a2d82b4ce3beb94c --- /dev/null +++ b/timecost/m4/realtabformer/rtf-m4-20260501_033611/rtf_checkpoints/checkpoint-7000/config.json @@ -0,0 +1,34 @@ +{ + "activation_function": "gelu_new", + "add_cross_attention": false, + "architectures": [ + "GPT2LMHeadModel" + ], + "attn_pdrop": 0.1, + "bos_token_id": 5, + "dtype": "float32", + "embd_pdrop": 0.1, + "eos_token_id": 6, + "initializer_range": 0.02, + "layer_norm_epsilon": 1e-05, + "model_type": "gpt2", + "n_embd": 768, + "n_head": 12, + "n_inner": null, + "n_layer": 6, + "n_positions": 1024, + "pad_token_id": null, + "reorder_and_upcast_attn": false, + "resid_pdrop": 0.1, + "scale_attn_by_inverse_layer_idx": false, + "scale_attn_weights": true, + "summary_activation": null, + "summary_first_dropout": 0.1, + "summary_proj_to_labels": true, + "summary_type": "cls_index", + "summary_use_proj": true, + "tie_word_embeddings": true, + "transformers_version": "5.5.3", + "use_cache": false, + "vocab_size": 167 +} diff --git a/timecost/m4/realtabformer/rtf-m4-20260501_033611/rtf_checkpoints/checkpoint-7000/generation_config.json b/timecost/m4/realtabformer/rtf-m4-20260501_033611/rtf_checkpoints/checkpoint-7000/generation_config.json new file mode 100644 index 0000000000000000000000000000000000000000..ffe89567780e75b5c22eade9be971483b9618f39 --- /dev/null +++ b/timecost/m4/realtabformer/rtf-m4-20260501_033611/rtf_checkpoints/checkpoint-7000/generation_config.json @@ -0,0 +1,9 @@ +{ + "_from_model_config": true, + "bos_token_id": 5, + "eos_token_id": 6, + "output_attentions": false, + "output_hidden_states": false, + "transformers_version": "5.5.3", + "use_cache": true +} diff --git a/timecost/m4/realtabformer/rtf-m4-20260501_033611/rtf_checkpoints/checkpoint-7000/model.safetensors b/timecost/m4/realtabformer/rtf-m4-20260501_033611/rtf_checkpoints/checkpoint-7000/model.safetensors new file mode 100644 index 0000000000000000000000000000000000000000..f467e8679fdff66cc446d9b444d53461eaa3d8c1 --- /dev/null +++ b/timecost/m4/realtabformer/rtf-m4-20260501_033611/rtf_checkpoints/checkpoint-7000/model.safetensors @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:ced1da8ed49d7f1db72461c93eb59f82ba36785630b78ef7fe5450053a47d20c +size 173781448 diff --git a/timecost/m4/realtabformer/rtf-m4-20260501_033611/rtf_checkpoints/checkpoint-7000/optimizer.pt b/timecost/m4/realtabformer/rtf-m4-20260501_033611/rtf_checkpoints/checkpoint-7000/optimizer.pt new file mode 100644 index 0000000000000000000000000000000000000000..4e7da1e0471410b8f3da0dd11f1dc90431549a28 --- /dev/null +++ b/timecost/m4/realtabformer/rtf-m4-20260501_033611/rtf_checkpoints/checkpoint-7000/optimizer.pt @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:0e7aa6f9aaed4b80ec913b0aa50a46432cd805cb2fcba347d5d64a1256e0b0e7 +size 347611979 diff --git a/timecost/m4/realtabformer/rtf-m4-20260501_033611/rtf_checkpoints/checkpoint-7000/rng_state.pth b/timecost/m4/realtabformer/rtf-m4-20260501_033611/rtf_checkpoints/checkpoint-7000/rng_state.pth new file mode 100644 index 0000000000000000000000000000000000000000..57a730344967e4e3bb6f5ab67aac6ff5b9e4fab7 --- /dev/null +++ b/timecost/m4/realtabformer/rtf-m4-20260501_033611/rtf_checkpoints/checkpoint-7000/rng_state.pth @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:1b4eb534e081c459531c4bf6924e55176249373e3611f260440c3ba11305a3af +size 14645 diff --git a/timecost/m4/realtabformer/rtf-m4-20260501_033611/rtf_checkpoints/checkpoint-7000/scaler.pt b/timecost/m4/realtabformer/rtf-m4-20260501_033611/rtf_checkpoints/checkpoint-7000/scaler.pt new file mode 100644 index 0000000000000000000000000000000000000000..a73c6b0883bf57decca93eb22ecc5f881367beb0 --- /dev/null +++ b/timecost/m4/realtabformer/rtf-m4-20260501_033611/rtf_checkpoints/checkpoint-7000/scaler.pt @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:be40a03f70bb2a35bb567114fb5ceb05ce1222c8df24b1e1100746c617c5be10 +size 1383 diff --git a/timecost/m4/realtabformer/rtf-m4-20260501_033611/rtf_checkpoints/checkpoint-7000/scheduler.pt b/timecost/m4/realtabformer/rtf-m4-20260501_033611/rtf_checkpoints/checkpoint-7000/scheduler.pt new file mode 100644 index 0000000000000000000000000000000000000000..554a566bdc17820a8b62c5d72bb37ee3973fcd0c --- /dev/null +++ b/timecost/m4/realtabformer/rtf-m4-20260501_033611/rtf_checkpoints/checkpoint-7000/scheduler.pt @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:f06f9f9f0ff2472b43e8d9b5a76bfdf3831bc0b3a788f2a460c2ae740d6c20df +size 1465 diff --git a/timecost/m4/realtabformer/rtf-m4-20260501_033611/rtf_checkpoints/checkpoint-7000/trainer_state.json b/timecost/m4/realtabformer/rtf-m4-20260501_033611/rtf_checkpoints/checkpoint-7000/trainer_state.json new file mode 100644 index 0000000000000000000000000000000000000000..4858be1c0e640439d8c6e8ba2b2b04caabfb6ba1 --- /dev/null +++ b/timecost/m4/realtabformer/rtf-m4-20260501_033611/rtf_checkpoints/checkpoint-7000/trainer_state.json @@ -0,0 +1,524 @@ +{ + "best_global_step": null, + "best_metric": null, + "best_model_checkpoint": null, + "epoch": 100.0, + "eval_steps": 100, + "global_step": 7000, + "is_hyper_param_search": false, + "is_local_process_zero": true, + "is_world_process_zero": true, + "log_history": [ + { + "epoch": 1.4316546762589928, + "grad_norm": 0.355408638715744, + "learning_rate": 4.929285714285715e-05, + "loss": 1.9745016479492188, + "step": 100 + }, + { + "epoch": 2.8633093525179856, + "grad_norm": 0.3432696759700775, + "learning_rate": 4.857857142857143e-05, + "loss": 1.4019232177734375, + "step": 200 + }, + { + "epoch": 4.287769784172662, + "grad_norm": 0.37436360120773315, + "learning_rate": 4.7864285714285714e-05, + "loss": 1.3409852600097656, + "step": 300 + }, + { + "epoch": 5.719424460431655, + "grad_norm": 0.3854033648967743, + "learning_rate": 4.715e-05, + "loss": 1.2996253967285156, + "step": 400 + }, + { + "epoch": 7.143884892086331, + "grad_norm": 0.4203447997570038, + "learning_rate": 4.643571428571429e-05, + "loss": 1.259985122680664, + "step": 500 + }, + { + "epoch": 8.575539568345324, + "grad_norm": 0.4687316417694092, + "learning_rate": 4.5721428571428574e-05, + "loss": 1.2107434844970704, + "step": 600 + }, + { + "epoch": 10.0, + "grad_norm": 0.9186628460884094, + "learning_rate": 4.500714285714286e-05, + "loss": 1.1670813751220703, + "step": 700 + }, + { + "epoch": 11.431654676258994, + "grad_norm": 0.49637436866760254, + "learning_rate": 4.429285714285715e-05, + "loss": 1.1059295654296875, + "step": 800 + }, + { + "epoch": 12.863309352517986, + "grad_norm": 0.5657761096954346, + "learning_rate": 4.357857142857143e-05, + "loss": 1.040764389038086, + "step": 900 + }, + { + "epoch": 14.287769784172662, + "grad_norm": 0.5341610312461853, + "learning_rate": 4.2864285714285715e-05, + "loss": 0.9634710693359375, + "step": 1000 + }, + { + "epoch": 15.719424460431654, + "grad_norm": 0.6149197816848755, + "learning_rate": 4.215e-05, + "loss": 0.88642822265625, + "step": 1100 + }, + { + "epoch": 17.14388489208633, + "grad_norm": 0.5562811493873596, + "learning_rate": 4.143571428571429e-05, + "loss": 0.8134054565429687, + "step": 1200 + }, + { + "epoch": 18.575539568345324, + "grad_norm": 0.572320282459259, + "learning_rate": 4.0721428571428575e-05, + "loss": 0.7409443664550781, + "step": 1300 + }, + { + "epoch": 20.0, + "grad_norm": 1.1183358430862427, + "learning_rate": 4.000714285714286e-05, + "loss": 0.6947654724121094, + "step": 1400 + }, + { + "epoch": 21.431654676258994, + "grad_norm": 0.5899038314819336, + "learning_rate": 3.929285714285714e-05, + "loss": 0.6337775039672852, + "step": 1500 + }, + { + "epoch": 22.863309352517987, + "grad_norm": 0.5425059199333191, + "learning_rate": 3.857857142857143e-05, + "loss": 0.5985966491699218, + "step": 1600 + }, + { + "epoch": 24.28776978417266, + "grad_norm": 0.5404720306396484, + "learning_rate": 3.786428571428572e-05, + "loss": 0.5602037811279297, + "step": 1700 + }, + { + "epoch": 25.719424460431654, + "grad_norm": 0.5059275031089783, + "learning_rate": 3.715e-05, + "loss": 0.5371580123901367, + "step": 1800 + }, + { + "epoch": 27.14388489208633, + "grad_norm": 0.44090911746025085, + "learning_rate": 3.643571428571429e-05, + "loss": 0.5157820892333984, + "step": 1900 + }, + { + "epoch": 28.575539568345324, + "grad_norm": 0.47748005390167236, + "learning_rate": 3.5721428571428575e-05, + "loss": 0.4929149627685547, + "step": 2000 + }, + { + "epoch": 30.0, + "grad_norm": 0.8368889689445496, + "learning_rate": 3.500714285714286e-05, + "loss": 0.4742084503173828, + "step": 2100 + }, + { + "epoch": 31.431654676258994, + "grad_norm": 0.43759119510650635, + "learning_rate": 3.429285714285714e-05, + "loss": 0.4594686508178711, + "step": 2200 + }, + { + "epoch": 32.86330935251799, + "grad_norm": 0.5055125951766968, + "learning_rate": 3.357857142857143e-05, + "loss": 0.44555919647216796, + "step": 2300 + }, + { + "epoch": 34.28776978417266, + "grad_norm": 0.4293630123138428, + "learning_rate": 3.2864285714285715e-05, + "loss": 0.43556678771972657, + "step": 2400 + }, + { + "epoch": 35.719424460431654, + "grad_norm": 0.4206651747226715, + "learning_rate": 3.215e-05, + "loss": 0.42476219177246094, + "step": 2500 + }, + { + "epoch": 37.143884892086334, + "grad_norm": 0.40377891063690186, + "learning_rate": 3.143571428571428e-05, + "loss": 0.41686100006103516, + "step": 2600 + }, + { + "epoch": 38.57553956834532, + "grad_norm": 0.44274216890335083, + "learning_rate": 3.0721428571428576e-05, + "loss": 0.4049409866333008, + "step": 2700 + }, + { + "epoch": 40.0, + "grad_norm": 0.7320085763931274, + "learning_rate": 3.0007142857142856e-05, + "loss": 0.40352741241455076, + "step": 2800 + }, + { + "epoch": 41.431654676258994, + "grad_norm": 0.3710326552391052, + "learning_rate": 2.9292857142857146e-05, + "loss": 0.392877082824707, + "step": 2900 + }, + { + "epoch": 42.86330935251799, + "grad_norm": 0.41697078943252563, + "learning_rate": 2.8578571428571433e-05, + "loss": 0.3891782760620117, + "step": 3000 + }, + { + "epoch": 44.28776978417266, + "grad_norm": 0.3859659433364868, + "learning_rate": 2.7864285714285716e-05, + "loss": 0.3797669982910156, + "step": 3100 + }, + { + "epoch": 45.719424460431654, + "grad_norm": 0.4415609836578369, + "learning_rate": 2.7150000000000003e-05, + "loss": 0.375827751159668, + "step": 3200 + }, + { + "epoch": 47.143884892086334, + "grad_norm": 0.3726028501987457, + "learning_rate": 2.6435714285714286e-05, + "loss": 0.37346839904785156, + "step": 3300 + }, + { + "epoch": 48.57553956834532, + "grad_norm": 0.38533180952072144, + "learning_rate": 2.5721428571428573e-05, + "loss": 0.36665096282958987, + "step": 3400 + }, + { + "epoch": 50.0, + "grad_norm": 0.6937333345413208, + "learning_rate": 2.5007142857142856e-05, + "loss": 0.3679323959350586, + "step": 3500 + }, + { + "epoch": 51.431654676258994, + "grad_norm": 0.3872888386249542, + "learning_rate": 2.4292857142857146e-05, + "loss": 0.3602333068847656, + "step": 3600 + }, + { + "epoch": 52.86330935251799, + "grad_norm": 0.3236874043941498, + "learning_rate": 2.357857142857143e-05, + "loss": 0.3591602325439453, + "step": 3700 + }, + { + "epoch": 54.28776978417266, + "grad_norm": 0.3833729326725006, + "learning_rate": 2.2864285714285716e-05, + "loss": 0.3564492797851562, + "step": 3800 + }, + { + "epoch": 55.719424460431654, + "grad_norm": 0.38681459426879883, + "learning_rate": 2.215e-05, + "loss": 0.35298805236816405, + "step": 3900 + }, + { + "epoch": 57.143884892086334, + "grad_norm": 0.3262157142162323, + "learning_rate": 2.1435714285714286e-05, + "loss": 0.3520388412475586, + "step": 4000 + }, + { + "epoch": 58.57553956834532, + "grad_norm": 0.28272324800491333, + "learning_rate": 2.0721428571428573e-05, + "loss": 0.3480962371826172, + "step": 4100 + }, + { + "epoch": 60.0, + "grad_norm": 0.6237635016441345, + "learning_rate": 2.0007142857142857e-05, + "loss": 0.34799785614013673, + "step": 4200 + }, + { + "epoch": 61.431654676258994, + "grad_norm": 0.28903186321258545, + "learning_rate": 1.9292857142857143e-05, + "loss": 0.3425423049926758, + "step": 4300 + }, + { + "epoch": 62.86330935251799, + "grad_norm": 0.3131926953792572, + "learning_rate": 1.857857142857143e-05, + "loss": 0.3454655456542969, + "step": 4400 + }, + { + "epoch": 64.28776978417267, + "grad_norm": 0.28085246682167053, + "learning_rate": 1.7864285714285713e-05, + "loss": 0.34086563110351564, + "step": 4500 + }, + { + "epoch": 65.71942446043165, + "grad_norm": 0.3234202563762665, + "learning_rate": 1.7150000000000004e-05, + "loss": 0.33850929260253904, + "step": 4600 + }, + { + "epoch": 67.14388489208633, + "grad_norm": 0.25634437799453735, + "learning_rate": 1.6435714285714287e-05, + "loss": 0.3384051132202148, + "step": 4700 + }, + { + "epoch": 68.57553956834532, + "grad_norm": 0.3404187262058258, + "learning_rate": 1.5721428571428574e-05, + "loss": 0.3373231887817383, + "step": 4800 + }, + { + "epoch": 70.0, + "grad_norm": 0.6950141191482544, + "learning_rate": 1.5007142857142859e-05, + "loss": 0.3362230682373047, + "step": 4900 + }, + { + "epoch": 71.43165467625899, + "grad_norm": 0.38788536190986633, + "learning_rate": 1.4292857142857144e-05, + "loss": 0.33364181518554686, + "step": 5000 + }, + { + "epoch": 72.86330935251799, + "grad_norm": 0.26893335580825806, + "learning_rate": 1.3578571428571429e-05, + "loss": 0.33343013763427737, + "step": 5100 + }, + { + "epoch": 74.28776978417267, + "grad_norm": 0.317146360874176, + "learning_rate": 1.2864285714285716e-05, + "loss": 0.33120128631591794, + "step": 5200 + }, + { + "epoch": 75.71942446043165, + "grad_norm": 0.25996723771095276, + "learning_rate": 1.215e-05, + "loss": 0.33197879791259766, + "step": 5300 + }, + { + "epoch": 77.14388489208633, + "grad_norm": 0.2829038202762604, + "learning_rate": 1.1435714285714286e-05, + "loss": 0.3305575942993164, + "step": 5400 + }, + { + "epoch": 78.57553956834532, + "grad_norm": 0.3527142405509949, + "learning_rate": 1.0721428571428572e-05, + "loss": 0.32733917236328125, + "step": 5500 + }, + { + "epoch": 80.0, + "grad_norm": 0.48380932211875916, + "learning_rate": 1.0007142857142857e-05, + "loss": 0.3284780502319336, + "step": 5600 + }, + { + "epoch": 81.43165467625899, + "grad_norm": 0.28093209862709045, + "learning_rate": 9.292857142857144e-06, + "loss": 0.3261085891723633, + "step": 5700 + }, + { + "epoch": 82.86330935251799, + "grad_norm": 0.32190901041030884, + "learning_rate": 8.57857142857143e-06, + "loss": 0.32692623138427734, + "step": 5800 + }, + { + "epoch": 84.28776978417267, + "grad_norm": 0.25844648480415344, + "learning_rate": 7.864285714285714e-06, + "loss": 0.32516582489013673, + "step": 5900 + }, + { + "epoch": 85.71942446043165, + "grad_norm": 0.28139543533325195, + "learning_rate": 7.15e-06, + "loss": 0.3232896423339844, + "step": 6000 + }, + { + "epoch": 87.14388489208633, + "grad_norm": 0.29647108912467957, + "learning_rate": 6.435714285714287e-06, + "loss": 0.32342647552490233, + "step": 6100 + }, + { + "epoch": 88.57553956834532, + "grad_norm": 0.3490413427352905, + "learning_rate": 5.721428571428572e-06, + "loss": 0.3228362274169922, + "step": 6200 + }, + { + "epoch": 90.0, + "grad_norm": 0.716325044631958, + "learning_rate": 5.007142857142858e-06, + "loss": 0.3227589797973633, + "step": 6300 + }, + { + "epoch": 91.43165467625899, + "grad_norm": 0.27956023812294006, + "learning_rate": 4.292857142857143e-06, + "loss": 0.32096038818359374, + "step": 6400 + }, + { + "epoch": 92.86330935251799, + "grad_norm": 0.25956645607948303, + "learning_rate": 3.5785714285714292e-06, + "loss": 0.32137725830078123, + "step": 6500 + }, + { + "epoch": 94.28776978417267, + "grad_norm": 0.2535034120082855, + "learning_rate": 2.8642857142857147e-06, + "loss": 0.31845773696899415, + "step": 6600 + }, + { + "epoch": 95.71942446043165, + "grad_norm": 0.3152118921279907, + "learning_rate": 2.1499999999999997e-06, + "loss": 0.3196479606628418, + "step": 6700 + }, + { + "epoch": 97.14388489208633, + "grad_norm": 0.2890796363353729, + "learning_rate": 1.4357142857142856e-06, + "loss": 0.31787015914916994, + "step": 6800 + }, + { + "epoch": 98.57553956834532, + "grad_norm": 0.2547329366207123, + "learning_rate": 7.214285714285714e-07, + "loss": 0.3171095275878906, + "step": 6900 + }, + { + "epoch": 100.0, + "grad_norm": 0.45711931586265564, + "learning_rate": 7.142857142857144e-09, + "loss": 0.3166196060180664, + "step": 7000 + } + ], + "logging_steps": 100, + "max_steps": 7000, + "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": 1357722412646400.0, + "train_batch_size": 8, + "trial_name": null, + "trial_params": null +} diff --git a/timecost/m4/realtabformer/rtf-m4-20260501_033611/rtf_checkpoints/checkpoint-7000/training_args.bin b/timecost/m4/realtabformer/rtf-m4-20260501_033611/rtf_checkpoints/checkpoint-7000/training_args.bin new file mode 100644 index 0000000000000000000000000000000000000000..34d68dc0e0fe1c1f12a2e581dd1b166aa7178a9e --- /dev/null +++ b/timecost/m4/realtabformer/rtf-m4-20260501_033611/rtf_checkpoints/checkpoint-7000/training_args.bin @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:9e2cd88337d1d846c6918d2b3b63fa3e5c93f12fefc082497590da854a564607 +size 5201 diff --git a/timecost/m4/realtabformer/rtf-m4-20260501_033611/runtime_result.json b/timecost/m4/realtabformer/rtf-m4-20260501_033611/runtime_result.json new file mode 100644 index 0000000000000000000000000000000000000000..25f6de0731596c9a0c81d54c3b889ce20cf1cd07 --- /dev/null +++ b/timecost/m4/realtabformer/rtf-m4-20260501_033611/runtime_result.json @@ -0,0 +1,27 @@ +{ + "dataset_id": "m4", + "model": "realtabformer", + "run_id": "rtf-m4-20260501_033611", + "public_gate_status": "pass", + "adapter_ready_status": "pass", + "train_status": "success", + "generate_status": "success", + "reason_code": null, + "reason_detail": null, + "artifacts": { + "synthetic_csv": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/m4/realtabformer/rtf-m4-20260501_033611/rtf-m4-2217-20260501_034506.csv", + "model_path": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/m4/realtabformer/rtf-m4-20260501_033611/models_100epochs" + }, + "timings": { + "train": { + "started_at": "2026-05-01T03:36:11", + "ended_at": "2026-05-01T03:45:06", + "duration_sec": 534.109 + }, + "generate": { + "started_at": "2026-05-01T03:45:06", + "ended_at": "2026-05-01T03:45:21", + "duration_sec": 15.625 + } + } +} \ No newline at end of file diff --git a/timecost/m4/realtabformer/rtf-m4-20260501_033611/staged/public/staged_features.json b/timecost/m4/realtabformer/rtf-m4-20260501_033611/staged/public/staged_features.json new file mode 100644 index 0000000000000000000000000000000000000000..d6acd098c35111f423f3ffff2cfd1754bc5dfebc --- /dev/null +++ b/timecost/m4/realtabformer/rtf-m4-20260501_033611/staged/public/staged_features.json @@ -0,0 +1,37 @@ +[ + { + "feature_name": "age", + "data_type": "continuous", + "is_target": false + }, + { + "feature_name": "sex", + "data_type": "categorical", + "is_target": false + }, + { + "feature_name": "bmi", + "data_type": "continuous", + "is_target": false + }, + { + "feature_name": "children", + "data_type": "continuous", + "is_target": false + }, + { + "feature_name": "smoker", + "data_type": "binary", + "is_target": false + }, + { + "feature_name": "region", + "data_type": "categorical", + "is_target": false + }, + { + "feature_name": "charges", + "data_type": "continuous", + "is_target": true + } +] \ No newline at end of file diff --git a/timecost/m4/realtabformer/rtf-m4-20260501_033611/staged/public/test.csv b/timecost/m4/realtabformer/rtf-m4-20260501_033611/staged/public/test.csv new file mode 100644 index 0000000000000000000000000000000000000000..c88a2e7cfcd715bb421cb56eb078033da45c4dc8 --- /dev/null +++ b/timecost/m4/realtabformer/rtf-m4-20260501_033611/staged/public/test.csv @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:4c541b677fb2d45c5bc79338eeee9fd8c91484b195a0c2c546c2fbabf113b7ea +size 11298 diff --git a/timecost/m4/realtabformer/rtf-m4-20260501_033611/staged/public/train.csv b/timecost/m4/realtabformer/rtf-m4-20260501_033611/staged/public/train.csv new file mode 100644 index 0000000000000000000000000000000000000000..5a05019d786529e0617291766c4fbe016ca01bf5 --- /dev/null +++ b/timecost/m4/realtabformer/rtf-m4-20260501_033611/staged/public/train.csv @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:614ebfac5f41d6f661aff675fa18c0f933a8d9bcc77ea71b7b2360c2f0155837 +size 90069 diff --git a/timecost/m4/realtabformer/rtf-m4-20260501_033611/staged/public/val.csv b/timecost/m4/realtabformer/rtf-m4-20260501_033611/staged/public/val.csv new file mode 100644 index 0000000000000000000000000000000000000000..d78fe5ad1537c437ba9ac2629f2aa60a6c17e708 --- /dev/null +++ b/timecost/m4/realtabformer/rtf-m4-20260501_033611/staged/public/val.csv @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:e55f5edbe7942ff01630de91a9c70dfbc6445eba76c7b970350364546b67c2d7 +size 11218 diff --git a/timecost/m4/realtabformer/rtf-m4-20260501_033611/staged/realtabformer/adapter_report.json b/timecost/m4/realtabformer/rtf-m4-20260501_033611/staged/realtabformer/adapter_report.json new file mode 100644 index 0000000000000000000000000000000000000000..b445ebdebf2aa753c21b4897686760b1fb1c7da7 --- /dev/null +++ b/timecost/m4/realtabformer/rtf-m4-20260501_033611/staged/realtabformer/adapter_report.json @@ -0,0 +1,7 @@ +{ + "adapter_ready_status": "pass", + "adapter_fail_reason_code": null, + "adapter_fail_detail": null, + "adapter_transforms_applied": [], + "model_input_manifest": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/m4/realtabformer/rtf-m4-20260501_033611/staged/realtabformer/model_input_manifest.json" +} \ No newline at end of file diff --git a/timecost/m4/realtabformer/rtf-m4-20260501_033611/staged/realtabformer/adapter_transforms_applied.json b/timecost/m4/realtabformer/rtf-m4-20260501_033611/staged/realtabformer/adapter_transforms_applied.json new file mode 100644 index 0000000000000000000000000000000000000000..0637a088a01e8ddab3bf3fa98dbe804cbde1a0dc --- /dev/null +++ b/timecost/m4/realtabformer/rtf-m4-20260501_033611/staged/realtabformer/adapter_transforms_applied.json @@ -0,0 +1 @@ +[] \ No newline at end of file diff --git a/timecost/m4/realtabformer/rtf-m4-20260501_033611/staged/realtabformer/model_input_manifest.json b/timecost/m4/realtabformer/rtf-m4-20260501_033611/staged/realtabformer/model_input_manifest.json new file mode 100644 index 0000000000000000000000000000000000000000..e4b1f36314c1b9333e8fc23a286224033a9b8bc5 --- /dev/null +++ b/timecost/m4/realtabformer/rtf-m4-20260501_033611/staged/realtabformer/model_input_manifest.json @@ -0,0 +1,154 @@ +{ + "dataset_id": "m4", + "model": "realtabformer", + "target_column": "charges", + "task_type": "regression", + "column_schema": [ + { + "name": "age", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 47, + "unique_ratio": 0.0212, + "example_values": [ + "46", + "38", + "19", + "27", + "26" + ] + } + }, + { + "name": "sex", + "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.000902, + "example_values": [ + "female", + "male" + ] + } + }, + { + "name": "bmi", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 538, + "unique_ratio": 0.24267, + "example_values": [ + "23.655", + "19.3", + "30.59", + "32.67", + "29.45" + ] + } + }, + { + "name": "children", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 6, + "unique_ratio": 0.002706, + "example_values": [ + "1", + "0", + "3", + "2", + "5" + ] + } + }, + { + "name": "smoker", + "role": "feature", + "semantic_type": "boolean", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 2, + "unique_ratio": 0.000902, + "example_values": [ + "yes", + "no" + ] + } + }, + { + "name": "region", + "role": "feature", + "semantic_type": "categorical", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 4, + "unique_ratio": 0.001804, + "example_values": [ + "northwest", + "southwest", + "southeast", + "northeast" + ] + } + }, + { + "name": "charges", + "role": "target", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 1281, + "unique_ratio": 0.577808, + "example_values": [ + "21677.28345", + "15820.699", + "1639.5631", + "2497.0383", + "2897.3235" + ] + } + } + ], + "public_manifest": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/m4/realtabformer/rtf-m4-20260501_033611/public_gate/staged_input_manifest.json", + "train_csv": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/m4/realtabformer/rtf-m4-20260501_033611/staged/public/train.csv", + "val_csv": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/m4/realtabformer/rtf-m4-20260501_033611/staged/public/val.csv", + "test_csv": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/m4/realtabformer/rtf-m4-20260501_033611/staged/public/test.csv", + "features_json": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/m4/realtabformer/rtf-m4-20260501_033611/staged/public/staged_features.json", + "public_gate_report": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/m4/realtabformer/rtf-m4-20260501_033611/public_gate/public_gate_report.json" +} \ No newline at end of file diff --git a/timecost/m4/realtabformer/rtf-m4-20260501_033611/train_20260501_033611.log b/timecost/m4/realtabformer/rtf-m4-20260501_033611/train_20260501_033611.log new file mode 100644 index 0000000000000000000000000000000000000000..de41aa38cc79bb8c5f8b88cd6fb369efea9c40f1 --- /dev/null +++ b/timecost/m4/realtabformer/rtf-m4-20260501_033611/train_20260501_033611.log @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:15e03d697bcd765661b1dca3cee077bb5ebf139d16ceacb85823348d091c5b34 +size 276386 diff --git a/timecost/m4/tabbyflow/tabbyflow-m4-20260505_003507/_tabbyflow_gen.py b/timecost/m4/tabbyflow/tabbyflow-m4-20260505_003507/_tabbyflow_gen.py new file mode 100644 index 0000000000000000000000000000000000000000..d98a7b934607c36eb22a776e92df322a392ddfa1 --- /dev/null +++ b/timecost/m4/tabbyflow/tabbyflow-m4-20260505_003507/_tabbyflow_gen.py @@ -0,0 +1,34 @@ + +import os, shutil, subprocess, sys +root = r"/workspace/ef-vfm" +name = r"pipeline_m4" +src = r"/work/output-Benchmark-trainonly-v1/m4/tabbyflow/tabbyflow-m4-20260505_003507/tabular_bundle/pipeline_m4" +dst_data = os.path.join(root, "data", name) +shutil.rmtree(dst_data, ignore_errors=True) +shutil.copytree(src, dst_data) +dst_syn = os.path.join(root, "synthetic", name) +os.makedirs(dst_syn, exist_ok=True) +for fn in ("real.csv", "test.csv", "val.csv"): + shutil.copy(os.path.join(src, fn), os.path.join(dst_syn, fn)) +os.chdir(root) +os.environ["PYTHONPATH"] = root + os.pathsep + os.environ.get("PYTHONPATH", "") +os.environ.setdefault("EFVFM_SAMPLE_BATCH_SIZE", "128") +subprocess.check_call([ + sys.executable, "main.py", + "--dataname", name, "--mode", "test", "--gpu", "0", + "--no_wandb", "--exp_name", r"adapter_efvfm", + "--ckpt_path", r"/workspace/ef-vfm/ef_vfm/ckpt/pipeline_m4/adapter_efvfm/model_300.pt", + "--num_samples_to_generate", str(int(2217)), +]) +base = os.path.join(root, "ef_vfm", "result", name, r"adapter_efvfm") +best = None +best_t = -1.0 +for r, _, files in os.walk(base): + if "samples.csv" in files: + p = os.path.join(r, "samples.csv") + t = os.path.getmtime(p) + if t > best_t: + best_t, best = t, p +if not best: + raise SystemExit("tabbyflow: no samples.csv in " + base) +shutil.copy(best, r"/work/output-Benchmark-trainonly-v1/m4/tabbyflow/tabbyflow-m4-20260505_003507/tabbyflow-m4-2217-20260505_004055.csv") diff --git a/timecost/m4/tabbyflow/tabbyflow-m4-20260505_003507/_tabbyflow_train.py b/timecost/m4/tabbyflow/tabbyflow-m4-20260505_003507/_tabbyflow_train.py new file mode 100644 index 0000000000000000000000000000000000000000..6218a0f02f6a9586b6b53dd56df0b58092541475 --- /dev/null +++ b/timecost/m4/tabbyflow/tabbyflow-m4-20260505_003507/_tabbyflow_train.py @@ -0,0 +1,24 @@ + +import os, shutil, subprocess, sys +root = r"/workspace/ef-vfm" +name = r"pipeline_m4" +src = r"/work/output-Benchmark-trainonly-v1/m4/tabbyflow/tabbyflow-m4-20260505_003507/tabular_bundle/pipeline_m4" +os.makedirs(os.path.join(root, "data", name), exist_ok=True) +dst_data = os.path.join(root, "data", name) +dst_syn = os.path.join(root, "synthetic", name) +shutil.rmtree(dst_data, ignore_errors=True) +shutil.copytree(src, dst_data) +os.makedirs(dst_syn, exist_ok=True) +for fn in ("real.csv", "test.csv", "val.csv"): + shutil.copy(os.path.join(src, fn), os.path.join(dst_syn, fn)) +os.chdir(root) +os.environ["PYTHONPATH"] = root + os.pathsep + os.environ.get("PYTHONPATH", "") +os.environ["EFVFM_SMOKE_STEPS"] = "300" +os.environ["EFVFM_ADAPTER_TRAIN"] = "1" +os.environ.setdefault("EFVFM_SAMPLE_BATCH_SIZE", "128") +os.environ.setdefault("EFVFM_EVAL_NUM_SAMPLES", "512") +subprocess.check_call([ + sys.executable, "main.py", + "--dataname", name, "--mode", "train", "--gpu", "0", + "--no_wandb", "--exp_name", r"adapter_efvfm", +]) diff --git a/timecost/m4/tabbyflow/tabbyflow-m4-20260505_003507/gen_20260505_004055.log b/timecost/m4/tabbyflow/tabbyflow-m4-20260505_003507/gen_20260505_004055.log new file mode 100644 index 0000000000000000000000000000000000000000..5acce39e217334420d18441f8bb2fd1d2cfb4ffd --- /dev/null +++ b/timecost/m4/tabbyflow/tabbyflow-m4-20260505_003507/gen_20260505_004055.log @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:28b24fc237445e5f99c53a4fd52b4c1d366b66cc7574aae7383cad03c2035040 +size 3570 diff --git a/timecost/m4/tabbyflow/tabbyflow-m4-20260505_003507/input_snapshot.json b/timecost/m4/tabbyflow/tabbyflow-m4-20260505_003507/input_snapshot.json new file mode 100644 index 0000000000000000000000000000000000000000..a8e6cea3720f9c9515d0f6647d3de14221c42d45 --- /dev/null +++ b/timecost/m4/tabbyflow/tabbyflow-m4-20260505_003507/input_snapshot.json @@ -0,0 +1,36 @@ +{ + "dataset_id": "m4", + "model": "tabbyflow", + "inputs": { + "train_csv": { + "path": "/data/jialinzhang/SynthesizePipeline-server/DatasetNew/m4/m4-train.csv", + "exists": true, + "size": 92191, + "sha256": "396b9d409ca21bf4a4cd329bdf5b7796aa0ae6356fa8d89b8eb669b5880b81f1" + }, + "val_csv": { + "path": "/data/jialinzhang/SynthesizePipeline-server/DatasetNew/m4/m4-val.csv", + "exists": true, + "size": 11482, + "sha256": "ee3c247d02f56e1687d03c381e13125d6a3a2a411ac7f202ba8520a4be9f1784" + }, + "test_csv": { + "path": "/data/jialinzhang/SynthesizePipeline-server/DatasetNew/m4/m4-test.csv", + "exists": true, + "size": 11559, + "sha256": "cadb9941124001b8fa7cb1ebae43b70a9ca56294f4df4d3c2f22c164c41757d4" + }, + "profile_json": { + "path": "/data/jialinzhang/SynthesizePipeline-server/DatasetNew/artifacts/data_core/tabular/m4/m4-dataset_profile.json", + "exists": true, + "size": 3336, + "sha256": "83e2764810e4a0e8cdece3a28dbd9134b7c9df6f2e56953e46d024ad2c4e035f" + }, + "contract_json": { + "path": "/data/jialinzhang/SynthesizePipeline-server/DatasetNew/artifacts/data_core/tabular/m4/m4-dataset_contract_v1.json", + "exists": true, + "size": 3810, + "sha256": "c23641b258629a845b164099bd0132886f8f6d0100e990494e0f92540f8987d9" + } + } +} \ No newline at end of file diff --git a/timecost/m4/tabbyflow/tabbyflow-m4-20260505_003507/models_tabbyflow/trained.pt b/timecost/m4/tabbyflow/tabbyflow-m4-20260505_003507/models_tabbyflow/trained.pt new file mode 100644 index 0000000000000000000000000000000000000000..f063a878c470d9d40f79db79881596e1e497dffd --- /dev/null +++ b/timecost/m4/tabbyflow/tabbyflow-m4-20260505_003507/models_tabbyflow/trained.pt @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:adb734fec12f2251befd371dca69e481b19464aded2a6823105a01b4be6ddbe5 +size 40 diff --git a/timecost/m4/tabbyflow/tabbyflow-m4-20260505_003507/public_gate/normalized_schema_snapshot.json b/timecost/m4/tabbyflow/tabbyflow-m4-20260505_003507/public_gate/normalized_schema_snapshot.json new file mode 100644 index 0000000000000000000000000000000000000000..31ed9818686b11907df75e872e4ffbe010330880 --- /dev/null +++ b/timecost/m4/tabbyflow/tabbyflow-m4-20260505_003507/public_gate/normalized_schema_snapshot.json @@ -0,0 +1,147 @@ +{ + "dataset_id": "m4", + "target_column": "charges", + "task_type": "regression", + "columns": [ + { + "name": "age", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 47, + "unique_ratio": 0.0212, + "example_values": [ + "46", + "38", + "19", + "27", + "26" + ] + } + }, + { + "name": "sex", + "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.000902, + "example_values": [ + "female", + "male" + ] + } + }, + { + "name": "bmi", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 538, + "unique_ratio": 0.24267, + "example_values": [ + "23.655", + "19.3", + "30.59", + "32.67", + "29.45" + ] + } + }, + { + "name": "children", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 6, + "unique_ratio": 0.002706, + "example_values": [ + "1", + "0", + "3", + "2", + "5" + ] + } + }, + { + "name": "smoker", + "role": "feature", + "semantic_type": "boolean", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 2, + "unique_ratio": 0.000902, + "example_values": [ + "yes", + "no" + ] + } + }, + { + "name": "region", + "role": "feature", + "semantic_type": "categorical", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 4, + "unique_ratio": 0.001804, + "example_values": [ + "northwest", + "southwest", + "southeast", + "northeast" + ] + } + }, + { + "name": "charges", + "role": "target", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 1281, + "unique_ratio": 0.577808, + "example_values": [ + "21677.28345", + "15820.699", + "1639.5631", + "2497.0383", + "2897.3235" + ] + } + } + ] +} \ No newline at end of file diff --git a/timecost/m4/tabbyflow/tabbyflow-m4-20260505_003507/public_gate/public_gate_report.json b/timecost/m4/tabbyflow/tabbyflow-m4-20260505_003507/public_gate/public_gate_report.json new file mode 100644 index 0000000000000000000000000000000000000000..e7a25408e2574124629ea9437356551e4d6f4790 --- /dev/null +++ b/timecost/m4/tabbyflow/tabbyflow-m4-20260505_003507/public_gate/public_gate_report.json @@ -0,0 +1,37 @@ +{ + "dataset_id": "m4", + "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": "charges", + "task_type": "regression", + "input_splits": { + "train": "/data/jialinzhang/SynthesizePipeline-server/DatasetNew/m4/m4-train.csv", + "val": "/data/jialinzhang/SynthesizePipeline-server/DatasetNew/m4/m4-val.csv", + "test": "/data/jialinzhang/SynthesizePipeline-server/DatasetNew/m4/m4-test.csv" + } +} \ No newline at end of file diff --git a/timecost/m4/tabbyflow/tabbyflow-m4-20260505_003507/public_gate/staged_input_manifest.json b/timecost/m4/tabbyflow/tabbyflow-m4-20260505_003507/public_gate/staged_input_manifest.json new file mode 100644 index 0000000000000000000000000000000000000000..f1a12f4988cdd82545a68c22fa6d2cc4117c9864 --- /dev/null +++ b/timecost/m4/tabbyflow/tabbyflow-m4-20260505_003507/public_gate/staged_input_manifest.json @@ -0,0 +1,152 @@ +{ + "dataset_id": "m4", + "target_column": "charges", + "task_type": "regression", + "train_csv": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/m4/tabbyflow/tabbyflow-m4-20260505_003507/staged/public/train.csv", + "val_csv": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/m4/tabbyflow/tabbyflow-m4-20260505_003507/staged/public/val.csv", + "test_csv": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/m4/tabbyflow/tabbyflow-m4-20260505_003507/staged/public/test.csv", + "features_json": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/m4/tabbyflow/tabbyflow-m4-20260505_003507/staged/public/staged_features.json", + "public_gate_report": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/m4/tabbyflow/tabbyflow-m4-20260505_003507/public_gate/public_gate_report.json", + "column_schema": [ + { + "name": "age", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 47, + "unique_ratio": 0.0212, + "example_values": [ + "46", + "38", + "19", + "27", + "26" + ] + } + }, + { + "name": "sex", + "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.000902, + "example_values": [ + "female", + "male" + ] + } + }, + { + "name": "bmi", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 538, + "unique_ratio": 0.24267, + "example_values": [ + "23.655", + "19.3", + "30.59", + "32.67", + "29.45" + ] + } + }, + { + "name": "children", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 6, + "unique_ratio": 0.002706, + "example_values": [ + "1", + "0", + "3", + "2", + "5" + ] + } + }, + { + "name": "smoker", + "role": "feature", + "semantic_type": "boolean", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 2, + "unique_ratio": 0.000902, + "example_values": [ + "yes", + "no" + ] + } + }, + { + "name": "region", + "role": "feature", + "semantic_type": "categorical", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 4, + "unique_ratio": 0.001804, + "example_values": [ + "northwest", + "southwest", + "southeast", + "northeast" + ] + } + }, + { + "name": "charges", + "role": "target", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 1281, + "unique_ratio": 0.577808, + "example_values": [ + "21677.28345", + "15820.699", + "1639.5631", + "2497.0383", + "2897.3235" + ] + } + } + ] +} \ No newline at end of file diff --git a/timecost/m4/tabbyflow/tabbyflow-m4-20260505_003507/run_config.json b/timecost/m4/tabbyflow/tabbyflow-m4-20260505_003507/run_config.json new file mode 100644 index 0000000000000000000000000000000000000000..97f88166c0e8da30141c86a0f2211c9f9803b813 --- /dev/null +++ b/timecost/m4/tabbyflow/tabbyflow-m4-20260505_003507/run_config.json @@ -0,0 +1,42 @@ +{ + "schema_version": 1, + "recorded_at": "2026-05-05T00:35:07", + "dataset_id": "m4", + "model": "tabbyflow", + "work_dir": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/m4/tabbyflow/tabbyflow-m4-20260505_003507", + "dataset_source_requested": "new", + "dataset_source_resolved": "new", + "cli_args": { + "model": "tabbyflow", + "dataset": "m4", + "dataset_source": "new", + "train": true, + "generate": true, + "num_rows": 0, + "epochs": 300, + "output_dir": null, + "model_dir": null, + "work_dir": null, + "resume": false, + "no_stats": false + }, + "resolved": { + "num_rows": 2217, + "model_path": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/m4/tabbyflow/tabbyflow-m4-20260505_003507/models_tabbyflow/trained.pt", + "output_csv": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/m4/tabbyflow/tabbyflow-m4-20260505_003507/tabbyflow-m4-2217-20260505_004055.csv" + }, + "input_artifacts": { + "public_gate_report": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/m4/tabbyflow/tabbyflow-m4-20260505_003507/public_gate/public_gate_report.json", + "public_manifest": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/m4/tabbyflow/tabbyflow-m4-20260505_003507/public_gate/staged_input_manifest.json", + "model_manifest": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/m4/tabbyflow/tabbyflow-m4-20260505_003507/staged/tabbyflow/model_input_manifest.json", + "train_csv": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/m4/tabbyflow/tabbyflow-m4-20260505_003507/staged/public/train.csv", + "features_json": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/m4/tabbyflow/tabbyflow-m4-20260505_003507/staged/public/staged_features.json", + "target_column": "charges", + "task_type": "regression" + }, + "env_overrides": { + "BENCHMARK_TABBYFLOW_GPUS": "device=0", + "EFVFM_EVAL_NUM_SAMPLES": "1024", + "EFVFM_SAMPLE_BATCH_SIZE": "64" + } +} \ No newline at end of file diff --git a/timecost/m4/tabbyflow/tabbyflow-m4-20260505_003507/runtime_result.json b/timecost/m4/tabbyflow/tabbyflow-m4-20260505_003507/runtime_result.json new file mode 100644 index 0000000000000000000000000000000000000000..db3859202d2d27f52fda10075bec9706b6015859 --- /dev/null +++ b/timecost/m4/tabbyflow/tabbyflow-m4-20260505_003507/runtime_result.json @@ -0,0 +1,27 @@ +{ + "dataset_id": "m4", + "model": "tabbyflow", + "run_id": "tabbyflow-m4-20260505_003507", + "public_gate_status": "pass", + "adapter_ready_status": "pass", + "train_status": "success", + "generate_status": "success", + "reason_code": null, + "reason_detail": null, + "artifacts": { + "synthetic_csv": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/m4/tabbyflow/tabbyflow-m4-20260505_003507/tabbyflow-m4-2217-20260505_004055.csv", + "model_path": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/m4/tabbyflow/tabbyflow-m4-20260505_003507/models_tabbyflow/trained.pt" + }, + "timings": { + "train": { + "started_at": "2026-05-05T00:35:07", + "ended_at": "2026-05-05T00:40:55", + "duration_sec": 347.533 + }, + "generate": { + "started_at": "2026-05-05T00:40:55", + "ended_at": "2026-05-05T00:41:27", + "duration_sec": 32.626 + } + } +} \ No newline at end of file diff --git a/timecost/m4/tabbyflow/tabbyflow-m4-20260505_003507/staged/public/staged_features.json b/timecost/m4/tabbyflow/tabbyflow-m4-20260505_003507/staged/public/staged_features.json new file mode 100644 index 0000000000000000000000000000000000000000..d6acd098c35111f423f3ffff2cfd1754bc5dfebc --- /dev/null +++ b/timecost/m4/tabbyflow/tabbyflow-m4-20260505_003507/staged/public/staged_features.json @@ -0,0 +1,37 @@ +[ + { + "feature_name": "age", + "data_type": "continuous", + "is_target": false + }, + { + "feature_name": "sex", + "data_type": "categorical", + "is_target": false + }, + { + "feature_name": "bmi", + "data_type": "continuous", + "is_target": false + }, + { + "feature_name": "children", + "data_type": "continuous", + "is_target": false + }, + { + "feature_name": "smoker", + "data_type": "binary", + "is_target": false + }, + { + "feature_name": "region", + "data_type": "categorical", + "is_target": false + }, + { + "feature_name": "charges", + "data_type": "continuous", + "is_target": true + } +] \ No newline at end of file diff --git a/timecost/m4/tabbyflow/tabbyflow-m4-20260505_003507/staged/public/test.csv b/timecost/m4/tabbyflow/tabbyflow-m4-20260505_003507/staged/public/test.csv new file mode 100644 index 0000000000000000000000000000000000000000..c88a2e7cfcd715bb421cb56eb078033da45c4dc8 --- /dev/null +++ b/timecost/m4/tabbyflow/tabbyflow-m4-20260505_003507/staged/public/test.csv @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:4c541b677fb2d45c5bc79338eeee9fd8c91484b195a0c2c546c2fbabf113b7ea +size 11298 diff --git a/timecost/m4/tabbyflow/tabbyflow-m4-20260505_003507/staged/public/train.csv b/timecost/m4/tabbyflow/tabbyflow-m4-20260505_003507/staged/public/train.csv new file mode 100644 index 0000000000000000000000000000000000000000..5a05019d786529e0617291766c4fbe016ca01bf5 --- /dev/null +++ b/timecost/m4/tabbyflow/tabbyflow-m4-20260505_003507/staged/public/train.csv @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:614ebfac5f41d6f661aff675fa18c0f933a8d9bcc77ea71b7b2360c2f0155837 +size 90069 diff --git a/timecost/m4/tabbyflow/tabbyflow-m4-20260505_003507/staged/public/val.csv b/timecost/m4/tabbyflow/tabbyflow-m4-20260505_003507/staged/public/val.csv new file mode 100644 index 0000000000000000000000000000000000000000..d78fe5ad1537c437ba9ac2629f2aa60a6c17e708 --- /dev/null +++ b/timecost/m4/tabbyflow/tabbyflow-m4-20260505_003507/staged/public/val.csv @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:e55f5edbe7942ff01630de91a9c70dfbc6445eba76c7b970350364546b67c2d7 +size 11218 diff --git a/timecost/m4/tabbyflow/tabbyflow-m4-20260505_003507/staged/tabbyflow/adapter_report.json b/timecost/m4/tabbyflow/tabbyflow-m4-20260505_003507/staged/tabbyflow/adapter_report.json new file mode 100644 index 0000000000000000000000000000000000000000..6e466374fafbcb4fc9ec0e266a8a88f51bd918b0 --- /dev/null +++ b/timecost/m4/tabbyflow/tabbyflow-m4-20260505_003507/staged/tabbyflow/adapter_report.json @@ -0,0 +1,7 @@ +{ + "adapter_ready_status": "pass", + "adapter_fail_reason_code": null, + "adapter_fail_detail": null, + "adapter_transforms_applied": [], + "model_input_manifest": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/m4/tabbyflow/tabbyflow-m4-20260505_003507/staged/tabbyflow/model_input_manifest.json" +} \ No newline at end of file diff --git a/timecost/m4/tabbyflow/tabbyflow-m4-20260505_003507/staged/tabbyflow/adapter_transforms_applied.json b/timecost/m4/tabbyflow/tabbyflow-m4-20260505_003507/staged/tabbyflow/adapter_transforms_applied.json new file mode 100644 index 0000000000000000000000000000000000000000..0637a088a01e8ddab3bf3fa98dbe804cbde1a0dc --- /dev/null +++ b/timecost/m4/tabbyflow/tabbyflow-m4-20260505_003507/staged/tabbyflow/adapter_transforms_applied.json @@ -0,0 +1 @@ +[] \ No newline at end of file diff --git a/timecost/m4/tabbyflow/tabbyflow-m4-20260505_003507/staged/tabbyflow/model_input_manifest.json b/timecost/m4/tabbyflow/tabbyflow-m4-20260505_003507/staged/tabbyflow/model_input_manifest.json new file mode 100644 index 0000000000000000000000000000000000000000..2ba5b635c79d39cc983d128b6a81adb8a686a9f8 --- /dev/null +++ b/timecost/m4/tabbyflow/tabbyflow-m4-20260505_003507/staged/tabbyflow/model_input_manifest.json @@ -0,0 +1,154 @@ +{ + "dataset_id": "m4", + "model": "tabbyflow", + "target_column": "charges", + "task_type": "regression", + "column_schema": [ + { + "name": "age", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 47, + "unique_ratio": 0.0212, + "example_values": [ + "46", + "38", + "19", + "27", + "26" + ] + } + }, + { + "name": "sex", + "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.000902, + "example_values": [ + "female", + "male" + ] + } + }, + { + "name": "bmi", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 538, + "unique_ratio": 0.24267, + "example_values": [ + "23.655", + "19.3", + "30.59", + "32.67", + "29.45" + ] + } + }, + { + "name": "children", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 6, + "unique_ratio": 0.002706, + "example_values": [ + "1", + "0", + "3", + "2", + "5" + ] + } + }, + { + "name": "smoker", + "role": "feature", + "semantic_type": "boolean", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 2, + "unique_ratio": 0.000902, + "example_values": [ + "yes", + "no" + ] + } + }, + { + "name": "region", + "role": "feature", + "semantic_type": "categorical", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 4, + "unique_ratio": 0.001804, + "example_values": [ + "northwest", + "southwest", + "southeast", + "northeast" + ] + } + }, + { + "name": "charges", + "role": "target", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 1281, + "unique_ratio": 0.577808, + "example_values": [ + "21677.28345", + "15820.699", + "1639.5631", + "2497.0383", + "2897.3235" + ] + } + } + ], + "public_manifest": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/m4/tabbyflow/tabbyflow-m4-20260505_003507/public_gate/staged_input_manifest.json", + "train_csv": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/m4/tabbyflow/tabbyflow-m4-20260505_003507/staged/public/train.csv", + "val_csv": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/m4/tabbyflow/tabbyflow-m4-20260505_003507/staged/public/val.csv", + "test_csv": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/m4/tabbyflow/tabbyflow-m4-20260505_003507/staged/public/test.csv", + "features_json": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/m4/tabbyflow/tabbyflow-m4-20260505_003507/staged/public/staged_features.json", + "public_gate_report": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/m4/tabbyflow/tabbyflow-m4-20260505_003507/public_gate/public_gate_report.json" +} \ No newline at end of file diff --git a/timecost/m4/tabbyflow/tabbyflow-m4-20260505_003507/tabbyflow-m4-2217-20260505_004055.csv b/timecost/m4/tabbyflow/tabbyflow-m4-20260505_003507/tabbyflow-m4-2217-20260505_004055.csv new file mode 100644 index 0000000000000000000000000000000000000000..bab0bc1307125c194a6fdd3410bcf3cf533a7073 --- /dev/null +++ b/timecost/m4/tabbyflow/tabbyflow-m4-20260505_003507/tabbyflow-m4-2217-20260505_004055.csv @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:2de44868a429b14068c2127e73ae90064103b56cc4310d4197d4adbab1412807 +size 81800 diff --git a/timecost/m4/tabbyflow/tabbyflow-m4-20260505_003507/tabbyflow_train_meta.json b/timecost/m4/tabbyflow/tabbyflow-m4-20260505_003507/tabbyflow_train_meta.json new file mode 100644 index 0000000000000000000000000000000000000000..8b4332a05178491bfd60732d15f03f29e66332c0 --- /dev/null +++ b/timecost/m4/tabbyflow/tabbyflow-m4-20260505_003507/tabbyflow_train_meta.json @@ -0,0 +1,5 @@ +{ + "exp_name": "adapter_efvfm", + "dataname": "pipeline_m4", + "steps": 300 +} \ No newline at end of file diff --git a/timecost/m4/tabbyflow/tabbyflow-m4-20260505_003507/tabular_bundle/pipeline_m4/X_cat_test.npy b/timecost/m4/tabbyflow/tabbyflow-m4-20260505_003507/tabular_bundle/pipeline_m4/X_cat_test.npy new file mode 100644 index 0000000000000000000000000000000000000000..2f6b8b23f5768174aab4879e2a30371e9a3d0ead --- /dev/null +++ b/timecost/m4/tabbyflow/tabbyflow-m4-20260505_003507/tabular_bundle/pipeline_m4/X_cat_test.npy @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:c91af7ac26382e392a70536d3dbb592c04ba5e4f495d1e3c364416b9ef704a07 +size 53336 diff --git a/timecost/m4/tabbyflow/tabbyflow-m4-20260505_003507/tabular_bundle/pipeline_m4/X_cat_train.npy b/timecost/m4/tabbyflow/tabbyflow-m4-20260505_003507/tabular_bundle/pipeline_m4/X_cat_train.npy new file mode 100644 index 0000000000000000000000000000000000000000..2f6b8b23f5768174aab4879e2a30371e9a3d0ead --- /dev/null +++ b/timecost/m4/tabbyflow/tabbyflow-m4-20260505_003507/tabular_bundle/pipeline_m4/X_cat_train.npy @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:c91af7ac26382e392a70536d3dbb592c04ba5e4f495d1e3c364416b9ef704a07 +size 53336 diff --git a/timecost/m4/tabbyflow/tabbyflow-m4-20260505_003507/tabular_bundle/pipeline_m4/X_cat_val.npy b/timecost/m4/tabbyflow/tabbyflow-m4-20260505_003507/tabular_bundle/pipeline_m4/X_cat_val.npy new file mode 100644 index 0000000000000000000000000000000000000000..2f6b8b23f5768174aab4879e2a30371e9a3d0ead --- /dev/null +++ b/timecost/m4/tabbyflow/tabbyflow-m4-20260505_003507/tabular_bundle/pipeline_m4/X_cat_val.npy @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:c91af7ac26382e392a70536d3dbb592c04ba5e4f495d1e3c364416b9ef704a07 +size 53336 diff --git a/timecost/m4/tabbyflow/tabbyflow-m4-20260505_003507/tabular_bundle/pipeline_m4/X_num_test.npy b/timecost/m4/tabbyflow/tabbyflow-m4-20260505_003507/tabular_bundle/pipeline_m4/X_num_test.npy new file mode 100644 index 0000000000000000000000000000000000000000..dc149960a879e21fd1aeed7de2419851175627e7 --- /dev/null +++ b/timecost/m4/tabbyflow/tabbyflow-m4-20260505_003507/tabular_bundle/pipeline_m4/X_num_test.npy @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:4a21bd2fd5a226c07d543ddf78616a8edb2d52b51097fc7a5df5b05612267af8 +size 26732 diff --git a/timecost/m4/tabbyflow/tabbyflow-m4-20260505_003507/tabular_bundle/pipeline_m4/X_num_train.npy b/timecost/m4/tabbyflow/tabbyflow-m4-20260505_003507/tabular_bundle/pipeline_m4/X_num_train.npy new file mode 100644 index 0000000000000000000000000000000000000000..dc149960a879e21fd1aeed7de2419851175627e7 --- /dev/null +++ b/timecost/m4/tabbyflow/tabbyflow-m4-20260505_003507/tabular_bundle/pipeline_m4/X_num_train.npy @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:4a21bd2fd5a226c07d543ddf78616a8edb2d52b51097fc7a5df5b05612267af8 +size 26732 diff --git a/timecost/m4/tabbyflow/tabbyflow-m4-20260505_003507/tabular_bundle/pipeline_m4/X_num_val.npy b/timecost/m4/tabbyflow/tabbyflow-m4-20260505_003507/tabular_bundle/pipeline_m4/X_num_val.npy new file mode 100644 index 0000000000000000000000000000000000000000..dc149960a879e21fd1aeed7de2419851175627e7 --- /dev/null +++ b/timecost/m4/tabbyflow/tabbyflow-m4-20260505_003507/tabular_bundle/pipeline_m4/X_num_val.npy @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:4a21bd2fd5a226c07d543ddf78616a8edb2d52b51097fc7a5df5b05612267af8 +size 26732 diff --git a/timecost/m4/tabbyflow/tabbyflow-m4-20260505_003507/tabular_bundle/pipeline_m4/info.json b/timecost/m4/tabbyflow/tabbyflow-m4-20260505_003507/tabular_bundle/pipeline_m4/info.json new file mode 100644 index 0000000000000000000000000000000000000000..1ccad8d2dc3c60feacc99d202a75e21be3afa7b5 --- /dev/null +++ b/timecost/m4/tabbyflow/tabbyflow-m4-20260505_003507/tabular_bundle/pipeline_m4/info.json @@ -0,0 +1,92 @@ +{ + "name": "pipeline_m4", + "task_type": "regression", + "n_num_features": 3, + "n_cat_features": 3, + "train_size": 2217, + "test_num": 2217, + "val_num": 2217, + "train_num": 2217, + "bundle_note": "val/test matrices are train copies (train-only policy; no real held-out rows).", + "num_col_idx": [ + 0, + 1, + 2 + ], + "cat_col_idx": [ + 3, + 4, + 5 + ], + "target_col_idx": [ + 6 + ], + "column_names": [ + "age", + "bmi", + "children", + "sex", + "smoker", + "region", + "charges" + ], + "int_col_idx": [], + "int_columns": [], + "int_col_idx_wrt_num": [], + "metadata": { + "columns": { + "0": { + "sdtype": "numerical", + "computer_representation": "Float" + }, + "1": { + "sdtype": "numerical", + "computer_representation": "Float" + }, + "2": { + "sdtype": "numerical", + "computer_representation": "Float" + }, + "3": { + "sdtype": "categorical" + }, + "4": { + "sdtype": "categorical" + }, + "5": { + "sdtype": "categorical" + }, + "6": { + "sdtype": "numerical", + "computer_representation": "Float" + } + } + }, + "idx_mapping": { + "0": 0, + "1": 1, + "2": 2, + "3": 3, + "4": 4, + "5": 5, + "6": 6 + }, + "inverse_idx_mapping": { + "0": 0, + "1": 1, + "2": 2, + "3": 3, + "4": 4, + "5": 5, + "6": 6 + }, + "idx_name_mapping": { + "0": "age", + "1": "bmi", + "2": "children", + "3": "sex", + "4": "smoker", + "5": "region", + "6": "charges" + } +} \ No newline at end of file diff --git a/timecost/m4/tabbyflow/tabbyflow-m4-20260505_003507/tabular_bundle/pipeline_m4/real.csv b/timecost/m4/tabbyflow/tabbyflow-m4-20260505_003507/tabular_bundle/pipeline_m4/real.csv new file mode 100644 index 0000000000000000000000000000000000000000..85ff7f4464fa73c1d58767739e7b259f9371a55b --- /dev/null +++ b/timecost/m4/tabbyflow/tabbyflow-m4-20260505_003507/tabular_bundle/pipeline_m4/real.csv @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:e031e2816aa79e4e5fab4c7fe470741eb2d287e493d74b9cfda68441799e07fa +size 60773 diff --git a/timecost/m4/tabbyflow/tabbyflow-m4-20260505_003507/tabular_bundle/pipeline_m4/test.csv b/timecost/m4/tabbyflow/tabbyflow-m4-20260505_003507/tabular_bundle/pipeline_m4/test.csv new file mode 100644 index 0000000000000000000000000000000000000000..85ff7f4464fa73c1d58767739e7b259f9371a55b --- /dev/null +++ b/timecost/m4/tabbyflow/tabbyflow-m4-20260505_003507/tabular_bundle/pipeline_m4/test.csv @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:e031e2816aa79e4e5fab4c7fe470741eb2d287e493d74b9cfda68441799e07fa +size 60773 diff --git a/timecost/m4/tabbyflow/tabbyflow-m4-20260505_003507/tabular_bundle/pipeline_m4/val.csv b/timecost/m4/tabbyflow/tabbyflow-m4-20260505_003507/tabular_bundle/pipeline_m4/val.csv new file mode 100644 index 0000000000000000000000000000000000000000..85ff7f4464fa73c1d58767739e7b259f9371a55b --- /dev/null +++ b/timecost/m4/tabbyflow/tabbyflow-m4-20260505_003507/tabular_bundle/pipeline_m4/val.csv @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:e031e2816aa79e4e5fab4c7fe470741eb2d287e493d74b9cfda68441799e07fa +size 60773 diff --git a/timecost/m4/tabbyflow/tabbyflow-m4-20260505_003507/tabular_bundle/pipeline_m4/y_test.npy b/timecost/m4/tabbyflow/tabbyflow-m4-20260505_003507/tabular_bundle/pipeline_m4/y_test.npy new file mode 100644 index 0000000000000000000000000000000000000000..717f965e62bd5595d6df01d1ad7851fc5768dc29 --- /dev/null +++ b/timecost/m4/tabbyflow/tabbyflow-m4-20260505_003507/tabular_bundle/pipeline_m4/y_test.npy @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:0c64fea6ad5ed2f8441ef5212c726195dbf53e1c81298427bddd18eb20e35cf2 +size 8996 diff --git a/timecost/m4/tabbyflow/tabbyflow-m4-20260505_003507/tabular_bundle/pipeline_m4/y_train.npy b/timecost/m4/tabbyflow/tabbyflow-m4-20260505_003507/tabular_bundle/pipeline_m4/y_train.npy new file mode 100644 index 0000000000000000000000000000000000000000..717f965e62bd5595d6df01d1ad7851fc5768dc29 --- /dev/null +++ b/timecost/m4/tabbyflow/tabbyflow-m4-20260505_003507/tabular_bundle/pipeline_m4/y_train.npy @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:0c64fea6ad5ed2f8441ef5212c726195dbf53e1c81298427bddd18eb20e35cf2 +size 8996 diff --git a/timecost/m4/tabbyflow/tabbyflow-m4-20260505_003507/tabular_bundle/pipeline_m4/y_val.npy b/timecost/m4/tabbyflow/tabbyflow-m4-20260505_003507/tabular_bundle/pipeline_m4/y_val.npy new file mode 100644 index 0000000000000000000000000000000000000000..717f965e62bd5595d6df01d1ad7851fc5768dc29 --- /dev/null +++ b/timecost/m4/tabbyflow/tabbyflow-m4-20260505_003507/tabular_bundle/pipeline_m4/y_val.npy @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:0c64fea6ad5ed2f8441ef5212c726195dbf53e1c81298427bddd18eb20e35cf2 +size 8996 diff --git a/timecost/m4/tabbyflow/tabbyflow-m4-20260505_003507/train_20260505_003507.log b/timecost/m4/tabbyflow/tabbyflow-m4-20260505_003507/train_20260505_003507.log new file mode 100644 index 0000000000000000000000000000000000000000..358eb5a5f809a43b67d92aa2bb96e13d9b27c7b2 --- /dev/null +++ b/timecost/m4/tabbyflow/tabbyflow-m4-20260505_003507/train_20260505_003507.log @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:122258462ca0fae1bcc8be8b190c967fb45b08711adfcb7b5e7484469df41ae5 +size 175285 diff --git a/timecost/m4/tabddpm/tabddpm-m4-20260501_002012/_tabddpm_sample_r0.py b/timecost/m4/tabddpm/tabddpm-m4-20260501_002012/_tabddpm_sample_r0.py new file mode 100644 index 0000000000000000000000000000000000000000..2e6048bab95ba3f3803c0a6104ca81669f7c384b --- /dev/null +++ b/timecost/m4/tabddpm/tabddpm-m4-20260501_002012/_tabddpm_sample_r0.py @@ -0,0 +1,66 @@ +import os, sys, subprocess, json +import numpy as np +import pandas as pd + +tabddpm_root = "/workspace/tabddpm/code" +assert os.path.isdir(tabddpm_root), f"TabDDPM source not mounted: {tabddpm_root}" +env = os.environ.copy() +env["PYTHONPATH"] = tabddpm_root + (os.pathsep + env.get("PYTHONPATH", "")) + +# Reuse the compat wrapper (patches collections.Sequence for skorch) +wrapper = os.path.join(tabddpm_root, "_compat_run.py") +if not os.path.exists(wrapper): + with open(wrapper, "w") as f: + f.write( + "import collections, collections.abc\n" + "for _a in ('Sequence','MutableSequence','MutableMapping','Mapping'," + "'MutableSet','Set','Callable','Iterable','Iterator'):\n" + " if not hasattr(collections, _a): setattr(collections, _a, getattr(collections.abc, _a, None))\n" + "import sys, runpy\n" + "sys.argv = sys.argv[1:]\n" + "runpy.run_path(sys.argv[0], run_name='__main__')\n" + ) + +print(f"[TabDDPM] Sampling 2217 rows") +ret = subprocess.run( + [sys.executable, wrapper, "scripts/pipeline.py", + "--config", "/work/output-Benchmark-trainonly-v1/m4/tabddpm/tabddpm-m4-20260501_002012/config_sample_20260501_002103_r0.toml", + "--sample"], + cwd=tabddpm_root, + env=env +) +if ret.returncode != 0: + sys.exit(ret.returncode) + +# 将 .npy 输出转为 CSV(npy 在 TabDDPM 的 parent_dir,即 npy_dir) +info_path = "/work/output-Benchmark-trainonly-v1/m4/tabddpm/tabddpm-m4-20260501_002012/data/info.json" +with open(info_path) as f: + info = json.load(f) + +output_dir = "/work/output-Benchmark-trainonly-v1/m4/tabddpm/tabddpm-m4-20260501_002012/output" +col_names = info.get("column_names", []) + +parts = [] +x_num_path = os.path.join(output_dir, "X_num_train.npy") +x_cat_path = os.path.join(output_dir, "X_cat_train.npy") +y_path = os.path.join(output_dir, "y_train.npy") + +if os.path.exists(x_num_path): + parts.append(np.load(x_num_path, allow_pickle=True)) +if os.path.exists(x_cat_path): + parts.append(np.load(x_cat_path, allow_pickle=True).astype(float)) +if os.path.exists(y_path): + y = np.load(y_path, allow_pickle=True) + parts.append(y.reshape(-1, 1) if y.ndim == 1 else y) + +if parts: + combined = np.concatenate(parts, axis=1) + if col_names and len(col_names) == combined.shape[1]: + df = pd.DataFrame(combined, columns=col_names) + else: + df = pd.DataFrame(combined) + df.to_csv("/work/output-Benchmark-trainonly-v1/m4/tabddpm/tabddpm-m4-20260501_002012/tabddpm-m4-2217-20260501_002103.csv", index=False) + print(f"[TabDDPM] Saved {len(df)} rows -> /work/output-Benchmark-trainonly-v1/m4/tabddpm/tabddpm-m4-20260501_002012/tabddpm-m4-2217-20260501_002103.csv") +else: + print("[TabDDPM] WARNING: No output .npy files found") + sys.exit(1) diff --git a/timecost/m4/tabddpm/tabddpm-m4-20260501_002012/_tabddpm_train.py b/timecost/m4/tabddpm/tabddpm-m4-20260501_002012/_tabddpm_train.py new file mode 100644 index 0000000000000000000000000000000000000000..417fdb96cffb192101af75c03ef22fb0fe6f9c37 --- /dev/null +++ b/timecost/m4/tabddpm/tabddpm-m4-20260501_002012/_tabddpm_train.py @@ -0,0 +1,32 @@ +import os, sys, subprocess + +tabddpm_root = "/workspace/tabddpm/code" +assert os.path.isdir(tabddpm_root), f"TabDDPM source not mounted: {tabddpm_root}" +env = os.environ.copy() +env["PYTHONPATH"] = tabddpm_root + (os.pathsep + env.get("PYTHONPATH", "")) + +# Write a wrapper that patches collections.Sequence (removed in Python 3.10+) +# before running pipeline.py - needed because skorch uses old API +wrapper = os.path.join(tabddpm_root, "_compat_run.py") +with open(wrapper, "w") as f: + f.write( + "import collections, collections.abc\n" + "for _a in ('Sequence','MutableSequence','MutableMapping','Mapping'," + "'MutableSet','Set','Callable','Iterable','Iterator'):\n" + " if not hasattr(collections, _a): setattr(collections, _a, getattr(collections.abc, _a, None))\n" + "import sys, runpy\n" + "sys.argv = sys.argv[1:]\n" + "runpy.run_path(sys.argv[0], run_name='__main__')\n" + ) + +print(f"[TabDDPM] Training, config=/work/output-Benchmark-trainonly-v1/m4/tabddpm/tabddpm-m4-20260501_002012/config.toml") +ret = subprocess.run( + [sys.executable, wrapper, "scripts/pipeline.py", + "--config", "/work/output-Benchmark-trainonly-v1/m4/tabddpm/tabddpm-m4-20260501_002012/config.toml", + "--train"], + cwd=tabddpm_root, + env=env +) +if ret.returncode != 0: + sys.exit(ret.returncode) +print("[TabDDPM] Training complete") diff --git a/timecost/m4/tabddpm/tabddpm-m4-20260501_002012/config.toml b/timecost/m4/tabddpm/tabddpm-m4-20260501_002012/config.toml new file mode 100644 index 0000000000000000000000000000000000000000..e40773ed5a92be547e5b272aac54a1edd49a31dd --- /dev/null +++ b/timecost/m4/tabddpm/tabddpm-m4-20260501_002012/config.toml @@ -0,0 +1,39 @@ +seed = 0 +parent_dir = "/work/output-Benchmark-trainonly-v1/m4/tabddpm/tabddpm-m4-20260501_002012/output" +real_data_path = "/work/output-Benchmark-trainonly-v1/m4/tabddpm/tabddpm-m4-20260501_002012/data" +model_type = "mlp" +num_numerical_features = 3 +device = "cuda:0" + +[model_params] +d_in = 6 +num_classes = 0 +is_y_cond = true + +[model_params.rtdl_params] +d_layers = [256, 256] +dropout = 0.0 + +[diffusion_params] +num_timesteps = 1000 +gaussian_loss_type = "mse" + +[train.main] +steps = 5000 +lr = 0.001 +weight_decay = 0.0 +batch_size = 256 + +[train.T] +seed = 0 +normalization = "quantile" +num_nan_policy = "__none__" +cat_nan_policy = "__none__" +cat_min_frequency = "__none__" +cat_encoding = "__none__" +y_policy = "default" + +[sample] +num_samples = 1000 +batch_size = 1000 +seed = 0 diff --git a/timecost/m4/tabddpm/tabddpm-m4-20260501_002012/config_sample_20260501_002103_r0.toml b/timecost/m4/tabddpm/tabddpm-m4-20260501_002012/config_sample_20260501_002103_r0.toml new file mode 100644 index 0000000000000000000000000000000000000000..868f104506973dd113227fa7fe94789f4b3108af --- /dev/null +++ b/timecost/m4/tabddpm/tabddpm-m4-20260501_002012/config_sample_20260501_002103_r0.toml @@ -0,0 +1,39 @@ +seed = 0 +parent_dir = "/work/output-Benchmark-trainonly-v1/m4/tabddpm/tabddpm-m4-20260501_002012/output" +real_data_path = "/work/output-Benchmark-trainonly-v1/m4/tabddpm/tabddpm-m4-20260501_002012/data" +model_type = "mlp" +num_numerical_features = 3 +device = "cuda:0" + +[model_params] +d_in = 6 +num_classes = 0 +is_y_cond = true + +[model_params.rtdl_params] +d_layers = [256, 256] +dropout = 0.0 + +[diffusion_params] +num_timesteps = 1000 +gaussian_loss_type = "mse" + +[train.main] +steps = 5000 +lr = 0.001 +weight_decay = 0.0 +batch_size = 256 + +[train.T] +seed = 0 +normalization = "quantile" +num_nan_policy = "__none__" +cat_nan_policy = "__none__" +cat_min_frequency = "__none__" +cat_encoding = "__none__" +y_policy = "default" + +[sample] +num_samples = 2217 +batch_size = 1000 +seed = 0 diff --git a/timecost/m4/tabddpm/tabddpm-m4-20260501_002012/data/X_cat_train.npy b/timecost/m4/tabddpm/tabddpm-m4-20260501_002012/data/X_cat_train.npy new file mode 100644 index 0000000000000000000000000000000000000000..2f6b8b23f5768174aab4879e2a30371e9a3d0ead --- /dev/null +++ b/timecost/m4/tabddpm/tabddpm-m4-20260501_002012/data/X_cat_train.npy @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:c91af7ac26382e392a70536d3dbb592c04ba5e4f495d1e3c364416b9ef704a07 +size 53336 diff --git a/timecost/m4/tabddpm/tabddpm-m4-20260501_002012/data/X_num_train.npy b/timecost/m4/tabddpm/tabddpm-m4-20260501_002012/data/X_num_train.npy new file mode 100644 index 0000000000000000000000000000000000000000..dc149960a879e21fd1aeed7de2419851175627e7 --- /dev/null +++ b/timecost/m4/tabddpm/tabddpm-m4-20260501_002012/data/X_num_train.npy @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:4a21bd2fd5a226c07d543ddf78616a8edb2d52b51097fc7a5df5b05612267af8 +size 26732 diff --git a/timecost/m4/tabddpm/tabddpm-m4-20260501_002012/data/info.json b/timecost/m4/tabddpm/tabddpm-m4-20260501_002012/data/info.json new file mode 100644 index 0000000000000000000000000000000000000000..fdcf5357ff78dd47dfcca0748443a009323ebfba --- /dev/null +++ b/timecost/m4/tabddpm/tabddpm-m4-20260501_002012/data/info.json @@ -0,0 +1,29 @@ +{ + "name": "benchmark_dataset", + "task_type": "regression", + "n_num_features": 3, + "n_cat_features": 3, + "train_size": 2217, + "num_col_idx": [ + 0, + 1, + 2 + ], + "cat_col_idx": [ + 3, + 4, + 5 + ], + "target_col_idx": [ + 6 + ], + "column_names": [ + "age", + "bmi", + "children", + "sex", + "smoker", + "region", + "charges" + ] +} \ No newline at end of file diff --git a/timecost/m4/tabddpm/tabddpm-m4-20260501_002012/data/y_train.npy b/timecost/m4/tabddpm/tabddpm-m4-20260501_002012/data/y_train.npy new file mode 100644 index 0000000000000000000000000000000000000000..717f965e62bd5595d6df01d1ad7851fc5768dc29 --- /dev/null +++ b/timecost/m4/tabddpm/tabddpm-m4-20260501_002012/data/y_train.npy @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:0c64fea6ad5ed2f8441ef5212c726195dbf53e1c81298427bddd18eb20e35cf2 +size 8996 diff --git a/timecost/m4/tabddpm/tabddpm-m4-20260501_002012/gen_20260501_002103_r0.log b/timecost/m4/tabddpm/tabddpm-m4-20260501_002012/gen_20260501_002103_r0.log new file mode 100644 index 0000000000000000000000000000000000000000..34552ba10b0a349e58da2108aff6bbbec4d16c02 --- /dev/null +++ b/timecost/m4/tabddpm/tabddpm-m4-20260501_002012/gen_20260501_002103_r0.log @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:52f8f30bf72e44fceb0267db01abdeb06812b986bb6d2e52e5f455ff527c9440 +size 63664 diff --git a/timecost/m4/tabddpm/tabddpm-m4-20260501_002012/input_snapshot.json b/timecost/m4/tabddpm/tabddpm-m4-20260501_002012/input_snapshot.json new file mode 100644 index 0000000000000000000000000000000000000000..e4dd477396c560c94b19cc8b62c2e927481b290f --- /dev/null +++ b/timecost/m4/tabddpm/tabddpm-m4-20260501_002012/input_snapshot.json @@ -0,0 +1,36 @@ +{ + "dataset_id": "m4", + "model": "tabddpm", + "inputs": { + "train_csv": { + "path": "/data/jialinzhang/SynthesizePipeline-server/DatasetNew/m4/m4-train.csv", + "exists": true, + "size": 92191, + "sha256": "396b9d409ca21bf4a4cd329bdf5b7796aa0ae6356fa8d89b8eb669b5880b81f1" + }, + "val_csv": { + "path": "/data/jialinzhang/SynthesizePipeline-server/DatasetNew/m4/m4-val.csv", + "exists": true, + "size": 11482, + "sha256": "ee3c247d02f56e1687d03c381e13125d6a3a2a411ac7f202ba8520a4be9f1784" + }, + "test_csv": { + "path": "/data/jialinzhang/SynthesizePipeline-server/DatasetNew/m4/m4-test.csv", + "exists": true, + "size": 11559, + "sha256": "cadb9941124001b8fa7cb1ebae43b70a9ca56294f4df4d3c2f22c164c41757d4" + }, + "profile_json": { + "path": "/data/jialinzhang/SynthesizePipeline-server/DatasetNew/artifacts/data_core/tabular/m4/m4-dataset_profile.json", + "exists": true, + "size": 3336, + "sha256": "83e2764810e4a0e8cdece3a28dbd9134b7c9df6f2e56953e46d024ad2c4e035f" + }, + "contract_json": { + "path": "/data/jialinzhang/SynthesizePipeline-server/DatasetNew/artifacts/data_core/tabular/m4/m4-dataset_contract_v1.json", + "exists": true, + "size": 3810, + "sha256": "c23641b258629a845b164099bd0132886f8f6d0100e990494e0f92540f8987d9" + } + } +} \ No newline at end of file diff --git a/timecost/m4/tabddpm/tabddpm-m4-20260501_002012/output/X_cat_train.npy b/timecost/m4/tabddpm/tabddpm-m4-20260501_002012/output/X_cat_train.npy new file mode 100644 index 0000000000000000000000000000000000000000..16649c0c991e770ef6c123d639b1bdc351f77272 --- /dev/null +++ b/timecost/m4/tabddpm/tabddpm-m4-20260501_002012/output/X_cat_train.npy @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:5d8b3a3e4d926fb702a70dc834c6f556ff49551421c80661f380ab4805096ca2 +size 13599 diff --git a/timecost/m4/tabddpm/tabddpm-m4-20260501_002012/output/X_cat_unnorm.npy b/timecost/m4/tabddpm/tabddpm-m4-20260501_002012/output/X_cat_unnorm.npy new file mode 100644 index 0000000000000000000000000000000000000000..aa90a47b84f656ecb8fe2d640df1e7c87c00aa43 --- /dev/null +++ b/timecost/m4/tabddpm/tabddpm-m4-20260501_002012/output/X_cat_unnorm.npy @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:efe7fdba2758f6e03972b3531387c072144cbdd1d6e07d5af2b0ca501f71dc8b +size 53336 diff --git a/timecost/m4/tabddpm/tabddpm-m4-20260501_002012/output/X_num_train.npy b/timecost/m4/tabddpm/tabddpm-m4-20260501_002012/output/X_num_train.npy new file mode 100644 index 0000000000000000000000000000000000000000..76837d04c0b261443750bc0b6af9b00d6fc49447 --- /dev/null +++ b/timecost/m4/tabddpm/tabddpm-m4-20260501_002012/output/X_num_train.npy @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:edf87db493b750f271e50b379fcfed588449ef2ce21f3dfd85f5b0fe3b12a082 +size 53336 diff --git a/timecost/m4/tabddpm/tabddpm-m4-20260501_002012/output/X_num_unnorm.npy b/timecost/m4/tabddpm/tabddpm-m4-20260501_002012/output/X_num_unnorm.npy new file mode 100644 index 0000000000000000000000000000000000000000..6b9f465e1428b706d31828489eac3bf0f46972ab --- /dev/null +++ b/timecost/m4/tabddpm/tabddpm-m4-20260501_002012/output/X_num_unnorm.npy @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:9cbf26ade33e92b58ce69497411a3240ccda363c7750ce86037c2cd04936c44f +size 53336 diff --git a/timecost/m4/tabddpm/tabddpm-m4-20260501_002012/output/config.toml b/timecost/m4/tabddpm/tabddpm-m4-20260501_002012/output/config.toml new file mode 100644 index 0000000000000000000000000000000000000000..868f104506973dd113227fa7fe94789f4b3108af --- /dev/null +++ b/timecost/m4/tabddpm/tabddpm-m4-20260501_002012/output/config.toml @@ -0,0 +1,39 @@ +seed = 0 +parent_dir = "/work/output-Benchmark-trainonly-v1/m4/tabddpm/tabddpm-m4-20260501_002012/output" +real_data_path = "/work/output-Benchmark-trainonly-v1/m4/tabddpm/tabddpm-m4-20260501_002012/data" +model_type = "mlp" +num_numerical_features = 3 +device = "cuda:0" + +[model_params] +d_in = 6 +num_classes = 0 +is_y_cond = true + +[model_params.rtdl_params] +d_layers = [256, 256] +dropout = 0.0 + +[diffusion_params] +num_timesteps = 1000 +gaussian_loss_type = "mse" + +[train.main] +steps = 5000 +lr = 0.001 +weight_decay = 0.0 +batch_size = 256 + +[train.T] +seed = 0 +normalization = "quantile" +num_nan_policy = "__none__" +cat_nan_policy = "__none__" +cat_min_frequency = "__none__" +cat_encoding = "__none__" +y_policy = "default" + +[sample] +num_samples = 2217 +batch_size = 1000 +seed = 0 diff --git a/timecost/m4/tabddpm/tabddpm-m4-20260501_002012/output/info.json b/timecost/m4/tabddpm/tabddpm-m4-20260501_002012/output/info.json new file mode 100644 index 0000000000000000000000000000000000000000..fdcf5357ff78dd47dfcca0748443a009323ebfba --- /dev/null +++ b/timecost/m4/tabddpm/tabddpm-m4-20260501_002012/output/info.json @@ -0,0 +1,29 @@ +{ + "name": "benchmark_dataset", + "task_type": "regression", + "n_num_features": 3, + "n_cat_features": 3, + "train_size": 2217, + "num_col_idx": [ + 0, + 1, + 2 + ], + "cat_col_idx": [ + 3, + 4, + 5 + ], + "target_col_idx": [ + 6 + ], + "column_names": [ + "age", + "bmi", + "children", + "sex", + "smoker", + "region", + "charges" + ] +} \ No newline at end of file diff --git a/timecost/m4/tabddpm/tabddpm-m4-20260501_002012/output/loss.csv b/timecost/m4/tabddpm/tabddpm-m4-20260501_002012/output/loss.csv new file mode 100644 index 0000000000000000000000000000000000000000..3da7c73f9d0ba838deb25b723a91815a61aab204 --- /dev/null +++ b/timecost/m4/tabddpm/tabddpm-m4-20260501_002012/output/loss.csv @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:edfe9e49b81be848f13488d277888ef9fa80dba0b1aaea3db0d973487be57faf +size 1502 diff --git a/timecost/m4/tabddpm/tabddpm-m4-20260501_002012/output/model.pt b/timecost/m4/tabddpm/tabddpm-m4-20260501_002012/output/model.pt new file mode 100644 index 0000000000000000000000000000000000000000..ee1c6f8c5af9337e71c6d3f6f8879ed9682a3f57 --- /dev/null +++ b/timecost/m4/tabddpm/tabddpm-m4-20260501_002012/output/model.pt @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:9d48fe15a35c8b63f73a2053ccc3691a347d09aa4e28b6f2a335cb5c8623ba1b +size 550673 diff --git a/timecost/m4/tabddpm/tabddpm-m4-20260501_002012/output/model_ema.pt b/timecost/m4/tabddpm/tabddpm-m4-20260501_002012/output/model_ema.pt new file mode 100644 index 0000000000000000000000000000000000000000..97bdf6a93e97345e5a8c17918ecda3d30c770730 --- /dev/null +++ b/timecost/m4/tabddpm/tabddpm-m4-20260501_002012/output/model_ema.pt @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:2bcb545f8e3ff78e5f2f2a5beed22a6146629e04bdf80c5a975a62aaf542f625 +size 551585 diff --git a/timecost/m4/tabddpm/tabddpm-m4-20260501_002012/output/y_train.npy b/timecost/m4/tabddpm/tabddpm-m4-20260501_002012/output/y_train.npy new file mode 100644 index 0000000000000000000000000000000000000000..73b8d6c3258989047d17afc0bc8c231f615e8ab6 --- /dev/null +++ b/timecost/m4/tabddpm/tabddpm-m4-20260501_002012/output/y_train.npy @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:2ebaf2c1bb96a0e9e9032e11c3367eecbbb27dc5b5ef037fd4406551fcf68b7e +size 17864 diff --git a/timecost/m4/tabddpm/tabddpm-m4-20260501_002012/public_gate/normalized_schema_snapshot.json b/timecost/m4/tabddpm/tabddpm-m4-20260501_002012/public_gate/normalized_schema_snapshot.json new file mode 100644 index 0000000000000000000000000000000000000000..31ed9818686b11907df75e872e4ffbe010330880 --- /dev/null +++ b/timecost/m4/tabddpm/tabddpm-m4-20260501_002012/public_gate/normalized_schema_snapshot.json @@ -0,0 +1,147 @@ +{ + "dataset_id": "m4", + "target_column": "charges", + "task_type": "regression", + "columns": [ + { + "name": "age", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 47, + "unique_ratio": 0.0212, + "example_values": [ + "46", + "38", + "19", + "27", + "26" + ] + } + }, + { + "name": "sex", + "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.000902, + "example_values": [ + "female", + "male" + ] + } + }, + { + "name": "bmi", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 538, + "unique_ratio": 0.24267, + "example_values": [ + "23.655", + "19.3", + "30.59", + "32.67", + "29.45" + ] + } + }, + { + "name": "children", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 6, + "unique_ratio": 0.002706, + "example_values": [ + "1", + "0", + "3", + "2", + "5" + ] + } + }, + { + "name": "smoker", + "role": "feature", + "semantic_type": "boolean", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 2, + "unique_ratio": 0.000902, + "example_values": [ + "yes", + "no" + ] + } + }, + { + "name": "region", + "role": "feature", + "semantic_type": "categorical", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 4, + "unique_ratio": 0.001804, + "example_values": [ + "northwest", + "southwest", + "southeast", + "northeast" + ] + } + }, + { + "name": "charges", + "role": "target", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 1281, + "unique_ratio": 0.577808, + "example_values": [ + "21677.28345", + "15820.699", + "1639.5631", + "2497.0383", + "2897.3235" + ] + } + } + ] +} \ No newline at end of file diff --git a/timecost/m4/tabddpm/tabddpm-m4-20260501_002012/public_gate/public_gate_report.json b/timecost/m4/tabddpm/tabddpm-m4-20260501_002012/public_gate/public_gate_report.json new file mode 100644 index 0000000000000000000000000000000000000000..e7a25408e2574124629ea9437356551e4d6f4790 --- /dev/null +++ b/timecost/m4/tabddpm/tabddpm-m4-20260501_002012/public_gate/public_gate_report.json @@ -0,0 +1,37 @@ +{ + "dataset_id": "m4", + "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": "charges", + "task_type": "regression", + "input_splits": { + "train": "/data/jialinzhang/SynthesizePipeline-server/DatasetNew/m4/m4-train.csv", + "val": "/data/jialinzhang/SynthesizePipeline-server/DatasetNew/m4/m4-val.csv", + "test": "/data/jialinzhang/SynthesizePipeline-server/DatasetNew/m4/m4-test.csv" + } +} \ No newline at end of file diff --git a/timecost/m4/tabddpm/tabddpm-m4-20260501_002012/public_gate/staged_input_manifest.json b/timecost/m4/tabddpm/tabddpm-m4-20260501_002012/public_gate/staged_input_manifest.json new file mode 100644 index 0000000000000000000000000000000000000000..26a6d0b6a4671486d9aa47bf3a1ab14f7769fcf2 --- /dev/null +++ b/timecost/m4/tabddpm/tabddpm-m4-20260501_002012/public_gate/staged_input_manifest.json @@ -0,0 +1,152 @@ +{ + "dataset_id": "m4", + "target_column": "charges", + "task_type": "regression", + "train_csv": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/m4/tabddpm/tabddpm-m4-20260501_002012/staged/public/train.csv", + "val_csv": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/m4/tabddpm/tabddpm-m4-20260501_002012/staged/public/val.csv", + "test_csv": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/m4/tabddpm/tabddpm-m4-20260501_002012/staged/public/test.csv", + "features_json": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/m4/tabddpm/tabddpm-m4-20260501_002012/staged/public/staged_features.json", + "public_gate_report": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/m4/tabddpm/tabddpm-m4-20260501_002012/public_gate/public_gate_report.json", + "column_schema": [ + { + "name": "age", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 47, + "unique_ratio": 0.0212, + "example_values": [ + "46", + "38", + "19", + "27", + "26" + ] + } + }, + { + "name": "sex", + "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.000902, + "example_values": [ + "female", + "male" + ] + } + }, + { + "name": "bmi", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 538, + "unique_ratio": 0.24267, + "example_values": [ + "23.655", + "19.3", + "30.59", + "32.67", + "29.45" + ] + } + }, + { + "name": "children", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 6, + "unique_ratio": 0.002706, + "example_values": [ + "1", + "0", + "3", + "2", + "5" + ] + } + }, + { + "name": "smoker", + "role": "feature", + "semantic_type": "boolean", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 2, + "unique_ratio": 0.000902, + "example_values": [ + "yes", + "no" + ] + } + }, + { + "name": "region", + "role": "feature", + "semantic_type": "categorical", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 4, + "unique_ratio": 0.001804, + "example_values": [ + "northwest", + "southwest", + "southeast", + "northeast" + ] + } + }, + { + "name": "charges", + "role": "target", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 1281, + "unique_ratio": 0.577808, + "example_values": [ + "21677.28345", + "15820.699", + "1639.5631", + "2497.0383", + "2897.3235" + ] + } + } + ] +} \ No newline at end of file diff --git a/timecost/m4/tabddpm/tabddpm-m4-20260501_002012/runtime_result.json b/timecost/m4/tabddpm/tabddpm-m4-20260501_002012/runtime_result.json new file mode 100644 index 0000000000000000000000000000000000000000..703fc5a05bf4bc44ce4999ceb7723f0a4e67026d --- /dev/null +++ b/timecost/m4/tabddpm/tabddpm-m4-20260501_002012/runtime_result.json @@ -0,0 +1,27 @@ +{ + "dataset_id": "m4", + "model": "tabddpm", + "run_id": "tabddpm-m4-20260501_002012", + "public_gate_status": "pass", + "adapter_ready_status": "pass", + "train_status": "success", + "generate_status": "success", + "reason_code": null, + "reason_detail": null, + "artifacts": { + "synthetic_csv": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/m4/tabddpm/tabddpm-m4-20260501_002012/tabddpm-m4-2217-20260501_002103.csv", + "model_path": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/m4/tabddpm/tabddpm-m4-20260501_002012" + }, + "timings": { + "train": { + "started_at": "2026-05-01T00:20:12", + "ended_at": "2026-05-01T00:21:03", + "duration_sec": 50.678 + }, + "generate": { + "started_at": "2026-05-01T00:21:03", + "ended_at": "2026-05-01T00:21:18", + "duration_sec": 14.849 + } + } +} \ No newline at end of file diff --git a/timecost/m4/tabddpm/tabddpm-m4-20260501_002012/staged/public/staged_features.json b/timecost/m4/tabddpm/tabddpm-m4-20260501_002012/staged/public/staged_features.json new file mode 100644 index 0000000000000000000000000000000000000000..d6acd098c35111f423f3ffff2cfd1754bc5dfebc --- /dev/null +++ b/timecost/m4/tabddpm/tabddpm-m4-20260501_002012/staged/public/staged_features.json @@ -0,0 +1,37 @@ +[ + { + "feature_name": "age", + "data_type": "continuous", + "is_target": false + }, + { + "feature_name": "sex", + "data_type": "categorical", + "is_target": false + }, + { + "feature_name": "bmi", + "data_type": "continuous", + "is_target": false + }, + { + "feature_name": "children", + "data_type": "continuous", + "is_target": false + }, + { + "feature_name": "smoker", + "data_type": "binary", + "is_target": false + }, + { + "feature_name": "region", + "data_type": "categorical", + "is_target": false + }, + { + "feature_name": "charges", + "data_type": "continuous", + "is_target": true + } +] \ No newline at end of file diff --git a/timecost/m4/tabddpm/tabddpm-m4-20260501_002012/staged/public/test.csv b/timecost/m4/tabddpm/tabddpm-m4-20260501_002012/staged/public/test.csv new file mode 100644 index 0000000000000000000000000000000000000000..c88a2e7cfcd715bb421cb56eb078033da45c4dc8 --- /dev/null +++ b/timecost/m4/tabddpm/tabddpm-m4-20260501_002012/staged/public/test.csv @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:4c541b677fb2d45c5bc79338eeee9fd8c91484b195a0c2c546c2fbabf113b7ea +size 11298 diff --git a/timecost/m4/tabddpm/tabddpm-m4-20260501_002012/staged/public/train.csv b/timecost/m4/tabddpm/tabddpm-m4-20260501_002012/staged/public/train.csv new file mode 100644 index 0000000000000000000000000000000000000000..5a05019d786529e0617291766c4fbe016ca01bf5 --- /dev/null +++ b/timecost/m4/tabddpm/tabddpm-m4-20260501_002012/staged/public/train.csv @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:614ebfac5f41d6f661aff675fa18c0f933a8d9bcc77ea71b7b2360c2f0155837 +size 90069 diff --git a/timecost/m4/tabddpm/tabddpm-m4-20260501_002012/staged/public/val.csv b/timecost/m4/tabddpm/tabddpm-m4-20260501_002012/staged/public/val.csv new file mode 100644 index 0000000000000000000000000000000000000000..d78fe5ad1537c437ba9ac2629f2aa60a6c17e708 --- /dev/null +++ b/timecost/m4/tabddpm/tabddpm-m4-20260501_002012/staged/public/val.csv @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:e55f5edbe7942ff01630de91a9c70dfbc6445eba76c7b970350364546b67c2d7 +size 11218 diff --git a/timecost/m4/tabddpm/tabddpm-m4-20260501_002012/staged/tabddpm/adapter_report.json b/timecost/m4/tabddpm/tabddpm-m4-20260501_002012/staged/tabddpm/adapter_report.json new file mode 100644 index 0000000000000000000000000000000000000000..01bf1744344044be70d4225704d366b860e5b55d --- /dev/null +++ b/timecost/m4/tabddpm/tabddpm-m4-20260501_002012/staged/tabddpm/adapter_report.json @@ -0,0 +1,7 @@ +{ + "adapter_ready_status": "pass", + "adapter_fail_reason_code": null, + "adapter_fail_detail": null, + "adapter_transforms_applied": [], + "model_input_manifest": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/m4/tabddpm/tabddpm-m4-20260501_002012/staged/tabddpm/model_input_manifest.json" +} \ No newline at end of file diff --git a/timecost/m4/tabddpm/tabddpm-m4-20260501_002012/staged/tabddpm/adapter_transforms_applied.json b/timecost/m4/tabddpm/tabddpm-m4-20260501_002012/staged/tabddpm/adapter_transforms_applied.json new file mode 100644 index 0000000000000000000000000000000000000000..0637a088a01e8ddab3bf3fa98dbe804cbde1a0dc --- /dev/null +++ b/timecost/m4/tabddpm/tabddpm-m4-20260501_002012/staged/tabddpm/adapter_transforms_applied.json @@ -0,0 +1 @@ +[] \ No newline at end of file diff --git a/timecost/m4/tabddpm/tabddpm-m4-20260501_002012/staged/tabddpm/model_input_manifest.json b/timecost/m4/tabddpm/tabddpm-m4-20260501_002012/staged/tabddpm/model_input_manifest.json new file mode 100644 index 0000000000000000000000000000000000000000..2c83eda5e92459bea83ec899cc45e05933567c78 --- /dev/null +++ b/timecost/m4/tabddpm/tabddpm-m4-20260501_002012/staged/tabddpm/model_input_manifest.json @@ -0,0 +1,154 @@ +{ + "dataset_id": "m4", + "model": "tabddpm", + "target_column": "charges", + "task_type": "regression", + "column_schema": [ + { + "name": "age", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 47, + "unique_ratio": 0.0212, + "example_values": [ + "46", + "38", + "19", + "27", + "26" + ] + } + }, + { + "name": "sex", + "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.000902, + "example_values": [ + "female", + "male" + ] + } + }, + { + "name": "bmi", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 538, + "unique_ratio": 0.24267, + "example_values": [ + "23.655", + "19.3", + "30.59", + "32.67", + "29.45" + ] + } + }, + { + "name": "children", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 6, + "unique_ratio": 0.002706, + "example_values": [ + "1", + "0", + "3", + "2", + "5" + ] + } + }, + { + "name": "smoker", + "role": "feature", + "semantic_type": "boolean", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 2, + "unique_ratio": 0.000902, + "example_values": [ + "yes", + "no" + ] + } + }, + { + "name": "region", + "role": "feature", + "semantic_type": "categorical", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 4, + "unique_ratio": 0.001804, + "example_values": [ + "northwest", + "southwest", + "southeast", + "northeast" + ] + } + }, + { + "name": "charges", + "role": "target", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 1281, + "unique_ratio": 0.577808, + "example_values": [ + "21677.28345", + "15820.699", + "1639.5631", + "2497.0383", + "2897.3235" + ] + } + } + ], + "public_manifest": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/m4/tabddpm/tabddpm-m4-20260501_002012/public_gate/staged_input_manifest.json", + "train_csv": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/m4/tabddpm/tabddpm-m4-20260501_002012/staged/public/train.csv", + "val_csv": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/m4/tabddpm/tabddpm-m4-20260501_002012/staged/public/val.csv", + "test_csv": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/m4/tabddpm/tabddpm-m4-20260501_002012/staged/public/test.csv", + "features_json": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/m4/tabddpm/tabddpm-m4-20260501_002012/staged/public/staged_features.json", + "public_gate_report": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/m4/tabddpm/tabddpm-m4-20260501_002012/public_gate/public_gate_report.json" +} \ No newline at end of file diff --git a/timecost/m4/tabddpm/tabddpm-m4-20260501_002012/tabddpm-m4-2217-20260501_002103.csv b/timecost/m4/tabddpm/tabddpm-m4-20260501_002012/tabddpm-m4-2217-20260501_002103.csv new file mode 100644 index 0000000000000000000000000000000000000000..5ab28a780597b227ff2e3bebbfd38a2fa7882f5d --- /dev/null +++ b/timecost/m4/tabddpm/tabddpm-m4-20260501_002012/tabddpm-m4-2217-20260501_002103.csv @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:75d65561f3b4531077e2145626ef2f81dd90f4be95c6bb9d62f0c97ea4bb7143 +size 102421 diff --git a/timecost/m4/tabddpm/tabddpm-m4-20260501_002012/train_20260501_002012.log b/timecost/m4/tabddpm/tabddpm-m4-20260501_002012/train_20260501_002012.log new file mode 100644 index 0000000000000000000000000000000000000000..7a8e589b8b62ec90f2244e67df8cbfdcce45815c --- /dev/null +++ b/timecost/m4/tabddpm/tabddpm-m4-20260501_002012/train_20260501_002012.log @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:65856d3d7601f57664a0b451b5d8b311571553e2b88be056194e543c47267934 +size 9176 diff --git a/timecost/m4/tabdiff/tabdiff-m4-20260501_004659/_tabdiff_gen.py b/timecost/m4/tabdiff/tabdiff-m4-20260501_004659/_tabdiff_gen.py new file mode 100644 index 0000000000000000000000000000000000000000..8558e989d232d1b665a25c80607d47a0ca9a9191 --- /dev/null +++ b/timecost/m4/tabdiff/tabdiff-m4-20260501_004659/_tabdiff_gen.py @@ -0,0 +1,36 @@ + +import os, shutil, subprocess, sys +td = r"/workspace/TabDiff" +name = r"pipeline_m4" +src = r"/work/output-Benchmark-trainonly-v1/m4/tabdiff/tabdiff-m4-20260501_004659/tabular_bundle/pipeline_m4" +dst_data = os.path.join(td, "data", name) +dst_syn = os.path.join(td, "synthetic", name) +shutil.rmtree(dst_data, ignore_errors=True) +shutil.copytree(src, dst_data) +os.makedirs(dst_syn, exist_ok=True) +for fn in ("real.csv", "test.csv", "val.csv"): + shutil.copy(os.path.join(src, fn), os.path.join(dst_syn, fn)) +os.chdir(td) +os.environ["PYTHONPATH"] = td + os.pathsep + os.environ.get("PYTHONPATH", "") +subprocess.check_call([ + sys.executable, "-m", "tabdiff.main", + "--dataname", name, "--mode", "test", "--gpu", "0", + "--no_wandb", "--exp_name", r"adapter_learnable", + "--ckpt_path", r"/workspace/TabDiff/tabdiff/ckpt/pipeline_m4/adapter_learnable/model_500.pt", + "--num_samples_to_generate", str(int(2217)), +]) +# test() 写入 tabdiff/result////samples.csv +import glob as g +base = os.path.join(td, "tabdiff", "result", name, r"adapter_learnable") +best = None +best_t = -1.0 +for root, _, files in os.walk(base): + if "samples.csv" in files: + p = os.path.join(root, "samples.csv") + t = os.path.getmtime(p) + if t > best_t: + best_t = t + best = p +if not best: + raise SystemExit("tabdiff: no samples.csv under " + base) +shutil.copy(best, r"/work/output-Benchmark-trainonly-v1/m4/tabdiff/tabdiff-m4-20260501_004659/tabdiff-m4-2217-20260501_005309.csv") diff --git a/timecost/m4/tabdiff/tabdiff-m4-20260501_004659/_tabdiff_train.py b/timecost/m4/tabdiff/tabdiff-m4-20260501_004659/_tabdiff_train.py new file mode 100644 index 0000000000000000000000000000000000000000..8a3b26184cee7eed4375238f2069bf1ee6309387 --- /dev/null +++ b/timecost/m4/tabdiff/tabdiff-m4-20260501_004659/_tabdiff_train.py @@ -0,0 +1,21 @@ + +import os, shutil, subprocess, sys +td = r"/workspace/TabDiff" +name = r"pipeline_m4" +src = r"/work/output-Benchmark-trainonly-v1/m4/tabdiff/tabdiff-m4-20260501_004659/tabular_bundle/pipeline_m4" +dst_data = os.path.join(td, "data", name) +dst_syn = os.path.join(td, "synthetic", name) +shutil.rmtree(dst_data, ignore_errors=True) +shutil.copytree(src, dst_data) +os.makedirs(dst_syn, exist_ok=True) +for fn in ("real.csv", "test.csv", "val.csv"): + shutil.copy(os.path.join(src, fn), os.path.join(dst_syn, fn)) +os.chdir(td) +os.environ["PYTHONPATH"] = td + os.pathsep + os.environ.get("PYTHONPATH", "") +os.environ["TABDIFF_SMOKE_STEPS"] = "500" +os.environ["TABDIFF_ADAPTER_TRAIN"] = "1" +subprocess.check_call([ + sys.executable, "-m", "tabdiff.main", + "--dataname", name, "--mode", "train", "--gpu", "0", + "--no_wandb", "--exp_name", r"adapter_learnable", +]) diff --git a/timecost/m4/tabdiff/tabdiff-m4-20260501_004659/gen_20260501_005309.log b/timecost/m4/tabdiff/tabdiff-m4-20260501_004659/gen_20260501_005309.log new file mode 100644 index 0000000000000000000000000000000000000000..5a690f4fd1c621b3e91540189a5d2933fd62ad29 --- /dev/null +++ b/timecost/m4/tabdiff/tabdiff-m4-20260501_004659/gen_20260501_005309.log @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:d00869193a3d6da4619a20b3b2d02f2071ba38b7cf188eaebfe2e30e8e6f546d +size 4557 diff --git a/timecost/m4/tabdiff/tabdiff-m4-20260501_004659/input_snapshot.json b/timecost/m4/tabdiff/tabdiff-m4-20260501_004659/input_snapshot.json new file mode 100644 index 0000000000000000000000000000000000000000..28cd3a4d75d18efdf20f8d2e0b931a2ecdef48e9 --- /dev/null +++ b/timecost/m4/tabdiff/tabdiff-m4-20260501_004659/input_snapshot.json @@ -0,0 +1,36 @@ +{ + "dataset_id": "m4", + "model": "tabdiff", + "inputs": { + "train_csv": { + "path": "/data/jialinzhang/SynthesizePipeline-server/DatasetNew/m4/m4-train.csv", + "exists": true, + "size": 92191, + "sha256": "396b9d409ca21bf4a4cd329bdf5b7796aa0ae6356fa8d89b8eb669b5880b81f1" + }, + "val_csv": { + "path": "/data/jialinzhang/SynthesizePipeline-server/DatasetNew/m4/m4-val.csv", + "exists": true, + "size": 11482, + "sha256": "ee3c247d02f56e1687d03c381e13125d6a3a2a411ac7f202ba8520a4be9f1784" + }, + "test_csv": { + "path": "/data/jialinzhang/SynthesizePipeline-server/DatasetNew/m4/m4-test.csv", + "exists": true, + "size": 11559, + "sha256": "cadb9941124001b8fa7cb1ebae43b70a9ca56294f4df4d3c2f22c164c41757d4" + }, + "profile_json": { + "path": "/data/jialinzhang/SynthesizePipeline-server/DatasetNew/artifacts/data_core/tabular/m4/m4-dataset_profile.json", + "exists": true, + "size": 3336, + "sha256": "83e2764810e4a0e8cdece3a28dbd9134b7c9df6f2e56953e46d024ad2c4e035f" + }, + "contract_json": { + "path": "/data/jialinzhang/SynthesizePipeline-server/DatasetNew/artifacts/data_core/tabular/m4/m4-dataset_contract_v1.json", + "exists": true, + "size": 3810, + "sha256": "c23641b258629a845b164099bd0132886f8f6d0100e990494e0f92540f8987d9" + } + } +} \ No newline at end of file diff --git a/timecost/m4/tabdiff/tabdiff-m4-20260501_004659/models_tabdiff/trained.pt b/timecost/m4/tabdiff/tabdiff-m4-20260501_004659/models_tabdiff/trained.pt new file mode 100644 index 0000000000000000000000000000000000000000..bc319a55a9c7152a1137f968b6fa1c735125ad11 --- /dev/null +++ b/timecost/m4/tabdiff/tabdiff-m4-20260501_004659/models_tabdiff/trained.pt @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:306660b8aad4549267c68390b017e15ddb9bc06a02c80515eb72a97ae31a81eb +size 74 diff --git a/timecost/m4/tabdiff/tabdiff-m4-20260501_004659/public_gate/normalized_schema_snapshot.json b/timecost/m4/tabdiff/tabdiff-m4-20260501_004659/public_gate/normalized_schema_snapshot.json new file mode 100644 index 0000000000000000000000000000000000000000..31ed9818686b11907df75e872e4ffbe010330880 --- /dev/null +++ b/timecost/m4/tabdiff/tabdiff-m4-20260501_004659/public_gate/normalized_schema_snapshot.json @@ -0,0 +1,147 @@ +{ + "dataset_id": "m4", + "target_column": "charges", + "task_type": "regression", + "columns": [ + { + "name": "age", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 47, + "unique_ratio": 0.0212, + "example_values": [ + "46", + "38", + "19", + "27", + "26" + ] + } + }, + { + "name": "sex", + "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.000902, + "example_values": [ + "female", + "male" + ] + } + }, + { + "name": "bmi", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 538, + "unique_ratio": 0.24267, + "example_values": [ + "23.655", + "19.3", + "30.59", + "32.67", + "29.45" + ] + } + }, + { + "name": "children", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 6, + "unique_ratio": 0.002706, + "example_values": [ + "1", + "0", + "3", + "2", + "5" + ] + } + }, + { + "name": "smoker", + "role": "feature", + "semantic_type": "boolean", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 2, + "unique_ratio": 0.000902, + "example_values": [ + "yes", + "no" + ] + } + }, + { + "name": "region", + "role": "feature", + "semantic_type": "categorical", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 4, + "unique_ratio": 0.001804, + "example_values": [ + "northwest", + "southwest", + "southeast", + "northeast" + ] + } + }, + { + "name": "charges", + "role": "target", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 1281, + "unique_ratio": 0.577808, + "example_values": [ + "21677.28345", + "15820.699", + "1639.5631", + "2497.0383", + "2897.3235" + ] + } + } + ] +} \ No newline at end of file diff --git a/timecost/m4/tabdiff/tabdiff-m4-20260501_004659/public_gate/public_gate_report.json b/timecost/m4/tabdiff/tabdiff-m4-20260501_004659/public_gate/public_gate_report.json new file mode 100644 index 0000000000000000000000000000000000000000..e7a25408e2574124629ea9437356551e4d6f4790 --- /dev/null +++ b/timecost/m4/tabdiff/tabdiff-m4-20260501_004659/public_gate/public_gate_report.json @@ -0,0 +1,37 @@ +{ + "dataset_id": "m4", + "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": "charges", + "task_type": "regression", + "input_splits": { + "train": "/data/jialinzhang/SynthesizePipeline-server/DatasetNew/m4/m4-train.csv", + "val": "/data/jialinzhang/SynthesizePipeline-server/DatasetNew/m4/m4-val.csv", + "test": "/data/jialinzhang/SynthesizePipeline-server/DatasetNew/m4/m4-test.csv" + } +} \ No newline at end of file diff --git a/timecost/m4/tabdiff/tabdiff-m4-20260501_004659/public_gate/staged_input_manifest.json b/timecost/m4/tabdiff/tabdiff-m4-20260501_004659/public_gate/staged_input_manifest.json new file mode 100644 index 0000000000000000000000000000000000000000..1590344d2101ed87d7b9f7b7941a5c9dacad00a9 --- /dev/null +++ b/timecost/m4/tabdiff/tabdiff-m4-20260501_004659/public_gate/staged_input_manifest.json @@ -0,0 +1,152 @@ +{ + "dataset_id": "m4", + "target_column": "charges", + "task_type": "regression", + "train_csv": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/m4/tabdiff/tabdiff-m4-20260501_004659/staged/public/train.csv", + "val_csv": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/m4/tabdiff/tabdiff-m4-20260501_004659/staged/public/val.csv", + "test_csv": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/m4/tabdiff/tabdiff-m4-20260501_004659/staged/public/test.csv", + "features_json": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/m4/tabdiff/tabdiff-m4-20260501_004659/staged/public/staged_features.json", + "public_gate_report": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/m4/tabdiff/tabdiff-m4-20260501_004659/public_gate/public_gate_report.json", + "column_schema": [ + { + "name": "age", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 47, + "unique_ratio": 0.0212, + "example_values": [ + "46", + "38", + "19", + "27", + "26" + ] + } + }, + { + "name": "sex", + "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.000902, + "example_values": [ + "female", + "male" + ] + } + }, + { + "name": "bmi", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 538, + "unique_ratio": 0.24267, + "example_values": [ + "23.655", + "19.3", + "30.59", + "32.67", + "29.45" + ] + } + }, + { + "name": "children", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 6, + "unique_ratio": 0.002706, + "example_values": [ + "1", + "0", + "3", + "2", + "5" + ] + } + }, + { + "name": "smoker", + "role": "feature", + "semantic_type": "boolean", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 2, + "unique_ratio": 0.000902, + "example_values": [ + "yes", + "no" + ] + } + }, + { + "name": "region", + "role": "feature", + "semantic_type": "categorical", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 4, + "unique_ratio": 0.001804, + "example_values": [ + "northwest", + "southwest", + "southeast", + "northeast" + ] + } + }, + { + "name": "charges", + "role": "target", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 1281, + "unique_ratio": 0.577808, + "example_values": [ + "21677.28345", + "15820.699", + "1639.5631", + "2497.0383", + "2897.3235" + ] + } + } + ] +} \ No newline at end of file diff --git a/timecost/m4/tabdiff/tabdiff-m4-20260501_004659/runtime_result.json b/timecost/m4/tabdiff/tabdiff-m4-20260501_004659/runtime_result.json new file mode 100644 index 0000000000000000000000000000000000000000..fecd6d14a03f134cd87a0ed6540b2e5de75bbd1f --- /dev/null +++ b/timecost/m4/tabdiff/tabdiff-m4-20260501_004659/runtime_result.json @@ -0,0 +1,27 @@ +{ + "dataset_id": "m4", + "model": "tabdiff", + "run_id": "tabdiff-m4-20260501_004659", + "public_gate_status": "pass", + "adapter_ready_status": "pass", + "train_status": "success", + "generate_status": "success", + "reason_code": null, + "reason_detail": null, + "artifacts": { + "synthetic_csv": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/m4/tabdiff/tabdiff-m4-20260501_004659/tabdiff-m4-2217-20260501_005309.csv", + "model_path": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/m4/tabdiff/tabdiff-m4-20260501_004659/models_tabdiff/trained.pt" + }, + "timings": { + "train": { + "started_at": "2026-05-01T00:46:59", + "ended_at": "2026-05-01T00:53:09", + "duration_sec": 370.221 + }, + "generate": { + "started_at": "2026-05-01T00:53:09", + "ended_at": "2026-05-01T00:53:19", + "duration_sec": 9.619 + } + } +} \ No newline at end of file diff --git a/timecost/m4/tabdiff/tabdiff-m4-20260501_004659/staged/public/staged_features.json b/timecost/m4/tabdiff/tabdiff-m4-20260501_004659/staged/public/staged_features.json new file mode 100644 index 0000000000000000000000000000000000000000..d6acd098c35111f423f3ffff2cfd1754bc5dfebc --- /dev/null +++ b/timecost/m4/tabdiff/tabdiff-m4-20260501_004659/staged/public/staged_features.json @@ -0,0 +1,37 @@ +[ + { + "feature_name": "age", + "data_type": "continuous", + "is_target": false + }, + { + "feature_name": "sex", + "data_type": "categorical", + "is_target": false + }, + { + "feature_name": "bmi", + "data_type": "continuous", + "is_target": false + }, + { + "feature_name": "children", + "data_type": "continuous", + "is_target": false + }, + { + "feature_name": "smoker", + "data_type": "binary", + "is_target": false + }, + { + "feature_name": "region", + "data_type": "categorical", + "is_target": false + }, + { + "feature_name": "charges", + "data_type": "continuous", + "is_target": true + } +] \ No newline at end of file diff --git a/timecost/m4/tabdiff/tabdiff-m4-20260501_004659/staged/public/test.csv b/timecost/m4/tabdiff/tabdiff-m4-20260501_004659/staged/public/test.csv new file mode 100644 index 0000000000000000000000000000000000000000..c88a2e7cfcd715bb421cb56eb078033da45c4dc8 --- /dev/null +++ b/timecost/m4/tabdiff/tabdiff-m4-20260501_004659/staged/public/test.csv @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:4c541b677fb2d45c5bc79338eeee9fd8c91484b195a0c2c546c2fbabf113b7ea +size 11298 diff --git a/timecost/m4/tabdiff/tabdiff-m4-20260501_004659/staged/public/train.csv b/timecost/m4/tabdiff/tabdiff-m4-20260501_004659/staged/public/train.csv new file mode 100644 index 0000000000000000000000000000000000000000..5a05019d786529e0617291766c4fbe016ca01bf5 --- /dev/null +++ b/timecost/m4/tabdiff/tabdiff-m4-20260501_004659/staged/public/train.csv @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:614ebfac5f41d6f661aff675fa18c0f933a8d9bcc77ea71b7b2360c2f0155837 +size 90069 diff --git a/timecost/m4/tabdiff/tabdiff-m4-20260501_004659/staged/public/val.csv b/timecost/m4/tabdiff/tabdiff-m4-20260501_004659/staged/public/val.csv new file mode 100644 index 0000000000000000000000000000000000000000..d78fe5ad1537c437ba9ac2629f2aa60a6c17e708 --- /dev/null +++ b/timecost/m4/tabdiff/tabdiff-m4-20260501_004659/staged/public/val.csv @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:e55f5edbe7942ff01630de91a9c70dfbc6445eba76c7b970350364546b67c2d7 +size 11218 diff --git a/timecost/m4/tabdiff/tabdiff-m4-20260501_004659/staged/tabdiff/adapter_report.json b/timecost/m4/tabdiff/tabdiff-m4-20260501_004659/staged/tabdiff/adapter_report.json new file mode 100644 index 0000000000000000000000000000000000000000..1cd46cd61d66224cca45ccbf49334c2e4353e363 --- /dev/null +++ b/timecost/m4/tabdiff/tabdiff-m4-20260501_004659/staged/tabdiff/adapter_report.json @@ -0,0 +1,7 @@ +{ + "adapter_ready_status": "pass", + "adapter_fail_reason_code": null, + "adapter_fail_detail": null, + "adapter_transforms_applied": [], + "model_input_manifest": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/m4/tabdiff/tabdiff-m4-20260501_004659/staged/tabdiff/model_input_manifest.json" +} \ No newline at end of file diff --git a/timecost/m4/tabdiff/tabdiff-m4-20260501_004659/staged/tabdiff/adapter_transforms_applied.json b/timecost/m4/tabdiff/tabdiff-m4-20260501_004659/staged/tabdiff/adapter_transforms_applied.json new file mode 100644 index 0000000000000000000000000000000000000000..0637a088a01e8ddab3bf3fa98dbe804cbde1a0dc --- /dev/null +++ b/timecost/m4/tabdiff/tabdiff-m4-20260501_004659/staged/tabdiff/adapter_transforms_applied.json @@ -0,0 +1 @@ +[] \ No newline at end of file diff --git a/timecost/m4/tabdiff/tabdiff-m4-20260501_004659/staged/tabdiff/model_input_manifest.json b/timecost/m4/tabdiff/tabdiff-m4-20260501_004659/staged/tabdiff/model_input_manifest.json new file mode 100644 index 0000000000000000000000000000000000000000..be3c82d65b976bbccf3d93e1e54d5878bd499c85 --- /dev/null +++ b/timecost/m4/tabdiff/tabdiff-m4-20260501_004659/staged/tabdiff/model_input_manifest.json @@ -0,0 +1,154 @@ +{ + "dataset_id": "m4", + "model": "tabdiff", + "target_column": "charges", + "task_type": "regression", + "column_schema": [ + { + "name": "age", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 47, + "unique_ratio": 0.0212, + "example_values": [ + "46", + "38", + "19", + "27", + "26" + ] + } + }, + { + "name": "sex", + "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.000902, + "example_values": [ + "female", + "male" + ] + } + }, + { + "name": "bmi", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 538, + "unique_ratio": 0.24267, + "example_values": [ + "23.655", + "19.3", + "30.59", + "32.67", + "29.45" + ] + } + }, + { + "name": "children", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 6, + "unique_ratio": 0.002706, + "example_values": [ + "1", + "0", + "3", + "2", + "5" + ] + } + }, + { + "name": "smoker", + "role": "feature", + "semantic_type": "boolean", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 2, + "unique_ratio": 0.000902, + "example_values": [ + "yes", + "no" + ] + } + }, + { + "name": "region", + "role": "feature", + "semantic_type": "categorical", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 4, + "unique_ratio": 0.001804, + "example_values": [ + "northwest", + "southwest", + "southeast", + "northeast" + ] + } + }, + { + "name": "charges", + "role": "target", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 1281, + "unique_ratio": 0.577808, + "example_values": [ + "21677.28345", + "15820.699", + "1639.5631", + "2497.0383", + "2897.3235" + ] + } + } + ], + "public_manifest": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/m4/tabdiff/tabdiff-m4-20260501_004659/public_gate/staged_input_manifest.json", + "train_csv": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/m4/tabdiff/tabdiff-m4-20260501_004659/staged/public/train.csv", + "val_csv": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/m4/tabdiff/tabdiff-m4-20260501_004659/staged/public/val.csv", + "test_csv": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/m4/tabdiff/tabdiff-m4-20260501_004659/staged/public/test.csv", + "features_json": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/m4/tabdiff/tabdiff-m4-20260501_004659/staged/public/staged_features.json", + "public_gate_report": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/m4/tabdiff/tabdiff-m4-20260501_004659/public_gate/public_gate_report.json" +} \ No newline at end of file diff --git a/timecost/m4/tabdiff/tabdiff-m4-20260501_004659/tabdiff-m4-2217-20260501_005309.csv b/timecost/m4/tabdiff/tabdiff-m4-20260501_004659/tabdiff-m4-2217-20260501_005309.csv new file mode 100644 index 0000000000000000000000000000000000000000..96770bb3238156c8f6c0cdc3c3afbb07c6e47f8e --- /dev/null +++ b/timecost/m4/tabdiff/tabdiff-m4-20260501_004659/tabdiff-m4-2217-20260501_005309.csv @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:600e619c2913f596c6bbd4037a4f0c7e817babff655bb4204ea365307424261b +size 83526 diff --git a/timecost/m4/tabdiff/tabdiff-m4-20260501_004659/tabdiff_train_meta.json b/timecost/m4/tabdiff/tabdiff-m4-20260501_004659/tabdiff_train_meta.json new file mode 100644 index 0000000000000000000000000000000000000000..50b960046ba7cb1cf57499cc34e3cd3bf6e9db6e --- /dev/null +++ b/timecost/m4/tabdiff/tabdiff-m4-20260501_004659/tabdiff_train_meta.json @@ -0,0 +1,5 @@ +{ + "exp_name": "adapter_learnable", + "dataname": "pipeline_m4", + "steps": 500 +} \ No newline at end of file diff --git a/timecost/m4/tabdiff/tabdiff-m4-20260501_004659/tabular_bundle/pipeline_m4/X_cat_test.npy b/timecost/m4/tabdiff/tabdiff-m4-20260501_004659/tabular_bundle/pipeline_m4/X_cat_test.npy new file mode 100644 index 0000000000000000000000000000000000000000..2f6b8b23f5768174aab4879e2a30371e9a3d0ead --- /dev/null +++ b/timecost/m4/tabdiff/tabdiff-m4-20260501_004659/tabular_bundle/pipeline_m4/X_cat_test.npy @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:c91af7ac26382e392a70536d3dbb592c04ba5e4f495d1e3c364416b9ef704a07 +size 53336 diff --git a/timecost/m4/tabdiff/tabdiff-m4-20260501_004659/tabular_bundle/pipeline_m4/X_cat_train.npy b/timecost/m4/tabdiff/tabdiff-m4-20260501_004659/tabular_bundle/pipeline_m4/X_cat_train.npy new file mode 100644 index 0000000000000000000000000000000000000000..2f6b8b23f5768174aab4879e2a30371e9a3d0ead --- /dev/null +++ b/timecost/m4/tabdiff/tabdiff-m4-20260501_004659/tabular_bundle/pipeline_m4/X_cat_train.npy @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:c91af7ac26382e392a70536d3dbb592c04ba5e4f495d1e3c364416b9ef704a07 +size 53336 diff --git a/timecost/m4/tabdiff/tabdiff-m4-20260501_004659/tabular_bundle/pipeline_m4/X_cat_val.npy b/timecost/m4/tabdiff/tabdiff-m4-20260501_004659/tabular_bundle/pipeline_m4/X_cat_val.npy new file mode 100644 index 0000000000000000000000000000000000000000..2f6b8b23f5768174aab4879e2a30371e9a3d0ead --- /dev/null +++ b/timecost/m4/tabdiff/tabdiff-m4-20260501_004659/tabular_bundle/pipeline_m4/X_cat_val.npy @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:c91af7ac26382e392a70536d3dbb592c04ba5e4f495d1e3c364416b9ef704a07 +size 53336 diff --git a/timecost/m4/tabdiff/tabdiff-m4-20260501_004659/tabular_bundle/pipeline_m4/X_num_test.npy b/timecost/m4/tabdiff/tabdiff-m4-20260501_004659/tabular_bundle/pipeline_m4/X_num_test.npy new file mode 100644 index 0000000000000000000000000000000000000000..dc149960a879e21fd1aeed7de2419851175627e7 --- /dev/null +++ b/timecost/m4/tabdiff/tabdiff-m4-20260501_004659/tabular_bundle/pipeline_m4/X_num_test.npy @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:4a21bd2fd5a226c07d543ddf78616a8edb2d52b51097fc7a5df5b05612267af8 +size 26732 diff --git a/timecost/m4/tabdiff/tabdiff-m4-20260501_004659/tabular_bundle/pipeline_m4/X_num_train.npy b/timecost/m4/tabdiff/tabdiff-m4-20260501_004659/tabular_bundle/pipeline_m4/X_num_train.npy new file mode 100644 index 0000000000000000000000000000000000000000..dc149960a879e21fd1aeed7de2419851175627e7 --- /dev/null +++ b/timecost/m4/tabdiff/tabdiff-m4-20260501_004659/tabular_bundle/pipeline_m4/X_num_train.npy @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:4a21bd2fd5a226c07d543ddf78616a8edb2d52b51097fc7a5df5b05612267af8 +size 26732 diff --git a/timecost/m4/tabdiff/tabdiff-m4-20260501_004659/tabular_bundle/pipeline_m4/X_num_val.npy b/timecost/m4/tabdiff/tabdiff-m4-20260501_004659/tabular_bundle/pipeline_m4/X_num_val.npy new file mode 100644 index 0000000000000000000000000000000000000000..dc149960a879e21fd1aeed7de2419851175627e7 --- /dev/null +++ b/timecost/m4/tabdiff/tabdiff-m4-20260501_004659/tabular_bundle/pipeline_m4/X_num_val.npy @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:4a21bd2fd5a226c07d543ddf78616a8edb2d52b51097fc7a5df5b05612267af8 +size 26732 diff --git a/timecost/m4/tabdiff/tabdiff-m4-20260501_004659/tabular_bundle/pipeline_m4/info.json b/timecost/m4/tabdiff/tabdiff-m4-20260501_004659/tabular_bundle/pipeline_m4/info.json new file mode 100644 index 0000000000000000000000000000000000000000..1ccad8d2dc3c60feacc99d202a75e21be3afa7b5 --- /dev/null +++ b/timecost/m4/tabdiff/tabdiff-m4-20260501_004659/tabular_bundle/pipeline_m4/info.json @@ -0,0 +1,92 @@ +{ + "name": "pipeline_m4", + "task_type": "regression", + "n_num_features": 3, + "n_cat_features": 3, + "train_size": 2217, + "test_num": 2217, + "val_num": 2217, + "train_num": 2217, + "bundle_note": "val/test matrices are train copies (train-only policy; no real held-out rows).", + "num_col_idx": [ + 0, + 1, + 2 + ], + "cat_col_idx": [ + 3, + 4, + 5 + ], + "target_col_idx": [ + 6 + ], + "column_names": [ + "age", + "bmi", + "children", + "sex", + "smoker", + "region", + "charges" + ], + "int_col_idx": [], + "int_columns": [], + "int_col_idx_wrt_num": [], + "metadata": { + "columns": { + "0": { + "sdtype": "numerical", + "computer_representation": "Float" + }, + "1": { + "sdtype": "numerical", + "computer_representation": "Float" + }, + "2": { + "sdtype": "numerical", + "computer_representation": "Float" + }, + "3": { + "sdtype": "categorical" + }, + "4": { + "sdtype": "categorical" + }, + "5": { + "sdtype": "categorical" + }, + "6": { + "sdtype": "numerical", + "computer_representation": "Float" + } + } + }, + "idx_mapping": { + "0": 0, + "1": 1, + "2": 2, + "3": 3, + "4": 4, + "5": 5, + "6": 6 + }, + "inverse_idx_mapping": { + "0": 0, + "1": 1, + "2": 2, + "3": 3, + "4": 4, + "5": 5, + "6": 6 + }, + "idx_name_mapping": { + "0": "age", + "1": "bmi", + "2": "children", + "3": "sex", + "4": "smoker", + "5": "region", + "6": "charges" + } +} \ No newline at end of file diff --git a/timecost/m4/tabdiff/tabdiff-m4-20260501_004659/tabular_bundle/pipeline_m4/real.csv b/timecost/m4/tabdiff/tabdiff-m4-20260501_004659/tabular_bundle/pipeline_m4/real.csv new file mode 100644 index 0000000000000000000000000000000000000000..85ff7f4464fa73c1d58767739e7b259f9371a55b --- /dev/null +++ b/timecost/m4/tabdiff/tabdiff-m4-20260501_004659/tabular_bundle/pipeline_m4/real.csv @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:e031e2816aa79e4e5fab4c7fe470741eb2d287e493d74b9cfda68441799e07fa +size 60773 diff --git a/timecost/m4/tabdiff/tabdiff-m4-20260501_004659/tabular_bundle/pipeline_m4/test.csv b/timecost/m4/tabdiff/tabdiff-m4-20260501_004659/tabular_bundle/pipeline_m4/test.csv new file mode 100644 index 0000000000000000000000000000000000000000..85ff7f4464fa73c1d58767739e7b259f9371a55b --- /dev/null +++ b/timecost/m4/tabdiff/tabdiff-m4-20260501_004659/tabular_bundle/pipeline_m4/test.csv @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:e031e2816aa79e4e5fab4c7fe470741eb2d287e493d74b9cfda68441799e07fa +size 60773 diff --git a/timecost/m4/tabdiff/tabdiff-m4-20260501_004659/tabular_bundle/pipeline_m4/val.csv b/timecost/m4/tabdiff/tabdiff-m4-20260501_004659/tabular_bundle/pipeline_m4/val.csv new file mode 100644 index 0000000000000000000000000000000000000000..85ff7f4464fa73c1d58767739e7b259f9371a55b --- /dev/null +++ b/timecost/m4/tabdiff/tabdiff-m4-20260501_004659/tabular_bundle/pipeline_m4/val.csv @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:e031e2816aa79e4e5fab4c7fe470741eb2d287e493d74b9cfda68441799e07fa +size 60773 diff --git a/timecost/m4/tabdiff/tabdiff-m4-20260501_004659/tabular_bundle/pipeline_m4/y_test.npy b/timecost/m4/tabdiff/tabdiff-m4-20260501_004659/tabular_bundle/pipeline_m4/y_test.npy new file mode 100644 index 0000000000000000000000000000000000000000..717f965e62bd5595d6df01d1ad7851fc5768dc29 --- /dev/null +++ b/timecost/m4/tabdiff/tabdiff-m4-20260501_004659/tabular_bundle/pipeline_m4/y_test.npy @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:0c64fea6ad5ed2f8441ef5212c726195dbf53e1c81298427bddd18eb20e35cf2 +size 8996 diff --git a/timecost/m4/tabdiff/tabdiff-m4-20260501_004659/tabular_bundle/pipeline_m4/y_train.npy b/timecost/m4/tabdiff/tabdiff-m4-20260501_004659/tabular_bundle/pipeline_m4/y_train.npy new file mode 100644 index 0000000000000000000000000000000000000000..717f965e62bd5595d6df01d1ad7851fc5768dc29 --- /dev/null +++ b/timecost/m4/tabdiff/tabdiff-m4-20260501_004659/tabular_bundle/pipeline_m4/y_train.npy @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:0c64fea6ad5ed2f8441ef5212c726195dbf53e1c81298427bddd18eb20e35cf2 +size 8996 diff --git a/timecost/m4/tabdiff/tabdiff-m4-20260501_004659/tabular_bundle/pipeline_m4/y_val.npy b/timecost/m4/tabdiff/tabdiff-m4-20260501_004659/tabular_bundle/pipeline_m4/y_val.npy new file mode 100644 index 0000000000000000000000000000000000000000..717f965e62bd5595d6df01d1ad7851fc5768dc29 --- /dev/null +++ b/timecost/m4/tabdiff/tabdiff-m4-20260501_004659/tabular_bundle/pipeline_m4/y_val.npy @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:0c64fea6ad5ed2f8441ef5212c726195dbf53e1c81298427bddd18eb20e35cf2 +size 8996 diff --git a/timecost/m4/tabdiff/tabdiff-m4-20260501_004659/train_20260501_004659.log b/timecost/m4/tabdiff/tabdiff-m4-20260501_004659/train_20260501_004659.log new file mode 100644 index 0000000000000000000000000000000000000000..ccd8d5f878ad3a19cbb3567447853c0bcf31d2c8 --- /dev/null +++ b/timecost/m4/tabdiff/tabdiff-m4-20260501_004659/train_20260501_004659.log @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:a2a12f73486cd9d00b992f6e238a862d617a8acbb201d9e42306dc2cc94aa62c +size 292966 diff --git a/timecost/m4/tabpfgen/tabpfgen-m4-20260501_005403/_tabpfgen_generate.py b/timecost/m4/tabpfgen/tabpfgen-m4-20260501_005403/_tabpfgen_generate.py new file mode 100644 index 0000000000000000000000000000000000000000..b849aba2d7577b09e1ec71efab398c568f41bbb7 --- /dev/null +++ b/timecost/m4/tabpfgen/tabpfgen-m4-20260501_005403/_tabpfgen_generate.py @@ -0,0 +1,100 @@ +import os +import numpy as np +import pandas as pd +import json +from tabpfgen import TabPFGen + +df = pd.read_csv("/work/output-Benchmark-trainonly-v1/m4/tabpfgen/tabpfgen-m4-20260501_005403/staged/public/train.csv") +target_col = "charges" + +target_missing = df[target_col].isna() +if target_missing.any(): + dropped = int(target_missing.sum()) + df = df.loc[~target_missing].copy() + print( + f"[TabPFGen] Dropped {dropped} rows with missing target '{target_col}'" + ) +if df.empty: + raise ValueError( + f"[TabPFGen] No rows remain after dropping missing target '{target_col}'" + ) + +feature_cols = [c for c in df.columns if c != target_col] + +cat_encodings = {} +for col in feature_cols: + if df[col].dtype == object or str(df[col].dtype) == 'category': + cats = sorted(df[col].dropna().unique().tolist(), key=str) + cat_map = {v: i for i, v in enumerate(cats)} + df[col] = df[col].map(cat_map).astype(float) + cat_encodings[col] = cats + print(f"[TabPFGen] Label-encoded '{col}' ({len(cats)} categories)") + +target_cats = None +if df[target_col].dtype == object or str(df[target_col].dtype) == 'category': + cats = sorted(df[target_col].dropna().unique().tolist(), key=str) + t_map = {v: i for i, v in enumerate(cats)} + df[target_col] = df[target_col].map(t_map).astype(float) + target_cats = cats + print(f"[TabPFGen] Label-encoded target '{target_col}' ({len(cats)} categories)") + +X = df[feature_cols].values.astype(np.float32) +y = df[target_col].values +target_n = int(2217) + +for i in range(X.shape[1]): + col_vals = X[:, i] + mask = np.isnan(col_vals) + if mask.any(): + mean_val = np.nanmean(col_vals) + X[mask, i] = mean_val if not np.isnan(mean_val) else 0.0 + +# TabPFGen v0.1.x API:仅支持 n_sgld_steps / sgld_* / device。 +# (旧版脚本中的 energy_*_chunk 与上游 TabPFGen 不一致,会导致 TypeError。) +gen = TabPFGen( + n_sgld_steps=1000, + sgld_step_size=0.01, + sgld_noise_scale=0.01, + device="auto", +) + +print(f"[TabPFGen] Generating {target_n} rows via generate_regression") +X_syn, y_syn = gen.generate_regression(X, y, n_samples=target_n) + +syn_df = pd.DataFrame(X_syn, columns=feature_cols) +syn_df[target_col] = y_syn + +for col, cats in cat_encodings.items(): + codes = np.round(syn_df[col].values).astype(int) + codes = np.clip(codes, 0, len(cats) - 1) + syn_df[col] = [cats[c] for c in codes] + +if target_cats is not None: + codes = np.round(syn_df[target_col].values).astype(int) + codes = np.clip(codes, 0, len(target_cats) - 1) + syn_df[target_col] = [target_cats[c] for c in codes] + +if len(syn_df) > target_n: + print(f"[TabPFGen] Trimming rows: {len(syn_df)} -> {target_n}") + syn_df = syn_df.iloc[:target_n].copy() +elif len(syn_df) < target_n: + deficit = target_n - len(syn_df) + print(f"[TabPFGen] Padding rows: {len(syn_df)} -> {target_n} (deficit={deficit})") + if len(syn_df) > 0: + extra = syn_df.sample(n=deficit, replace=True, random_state=42) + syn_df = pd.concat( + [syn_df.reset_index(drop=True), extra.reset_index(drop=True)], + ignore_index=True, + ) + else: + syn_df = df[feature_cols + [target_col]].sample( + n=target_n, replace=True, random_state=42 + ).reset_index(drop=True) + +syn_df = syn_df[list(df.columns)] +if len(syn_df) != target_n: + raise RuntimeError( + f"[TabPFGen] Row alignment failed: got {len(syn_df)}, expected {target_n}" + ) +syn_df.to_csv("/work/output-Benchmark-trainonly-v1/m4/tabpfgen/tabpfgen-m4-20260501_005403/tabpfgen-m4-2217-20260501_005403.csv", index=False) +print(f"[TabPFGen] Saved {len(syn_df)} rows -> /work/output-Benchmark-trainonly-v1/m4/tabpfgen/tabpfgen-m4-20260501_005403/tabpfgen-m4-2217-20260501_005403.csv") diff --git a/timecost/m4/tabpfgen/tabpfgen-m4-20260501_005403/gen_20260501_005403.log b/timecost/m4/tabpfgen/tabpfgen-m4-20260501_005403/gen_20260501_005403.log new file mode 100644 index 0000000000000000000000000000000000000000..8dabb9bfeb17f6585cbad340648bc085e92a2a3e --- /dev/null +++ b/timecost/m4/tabpfgen/tabpfgen-m4-20260501_005403/gen_20260501_005403.log @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:96a46fe5ac21305487900ec49903c345aa1a96959e97976873b1b757cf174d2c +size 951 diff --git a/timecost/m4/tabpfgen/tabpfgen-m4-20260501_005403/input_snapshot.json b/timecost/m4/tabpfgen/tabpfgen-m4-20260501_005403/input_snapshot.json new file mode 100644 index 0000000000000000000000000000000000000000..0e4ec9d0bc32394ab638c94bcf784b81478f2f39 --- /dev/null +++ b/timecost/m4/tabpfgen/tabpfgen-m4-20260501_005403/input_snapshot.json @@ -0,0 +1,36 @@ +{ + "dataset_id": "m4", + "model": "tabpfgen", + "inputs": { + "train_csv": { + "path": "/data/jialinzhang/SynthesizePipeline-server/DatasetNew/m4/m4-train.csv", + "exists": true, + "size": 92191, + "sha256": "396b9d409ca21bf4a4cd329bdf5b7796aa0ae6356fa8d89b8eb669b5880b81f1" + }, + "val_csv": { + "path": "/data/jialinzhang/SynthesizePipeline-server/DatasetNew/m4/m4-val.csv", + "exists": true, + "size": 11482, + "sha256": "ee3c247d02f56e1687d03c381e13125d6a3a2a411ac7f202ba8520a4be9f1784" + }, + "test_csv": { + "path": "/data/jialinzhang/SynthesizePipeline-server/DatasetNew/m4/m4-test.csv", + "exists": true, + "size": 11559, + "sha256": "cadb9941124001b8fa7cb1ebae43b70a9ca56294f4df4d3c2f22c164c41757d4" + }, + "profile_json": { + "path": "/data/jialinzhang/SynthesizePipeline-server/DatasetNew/artifacts/data_core/tabular/m4/m4-dataset_profile.json", + "exists": true, + "size": 3336, + "sha256": "83e2764810e4a0e8cdece3a28dbd9134b7c9df6f2e56953e46d024ad2c4e035f" + }, + "contract_json": { + "path": "/data/jialinzhang/SynthesizePipeline-server/DatasetNew/artifacts/data_core/tabular/m4/m4-dataset_contract_v1.json", + "exists": true, + "size": 3810, + "sha256": "c23641b258629a845b164099bd0132886f8f6d0100e990494e0f92540f8987d9" + } + } +} \ No newline at end of file diff --git a/timecost/m4/tabpfgen/tabpfgen-m4-20260501_005403/public_gate/normalized_schema_snapshot.json b/timecost/m4/tabpfgen/tabpfgen-m4-20260501_005403/public_gate/normalized_schema_snapshot.json new file mode 100644 index 0000000000000000000000000000000000000000..31ed9818686b11907df75e872e4ffbe010330880 --- /dev/null +++ b/timecost/m4/tabpfgen/tabpfgen-m4-20260501_005403/public_gate/normalized_schema_snapshot.json @@ -0,0 +1,147 @@ +{ + "dataset_id": "m4", + "target_column": "charges", + "task_type": "regression", + "columns": [ + { + "name": "age", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 47, + "unique_ratio": 0.0212, + "example_values": [ + "46", + "38", + "19", + "27", + "26" + ] + } + }, + { + "name": "sex", + "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.000902, + "example_values": [ + "female", + "male" + ] + } + }, + { + "name": "bmi", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 538, + "unique_ratio": 0.24267, + "example_values": [ + "23.655", + "19.3", + "30.59", + "32.67", + "29.45" + ] + } + }, + { + "name": "children", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 6, + "unique_ratio": 0.002706, + "example_values": [ + "1", + "0", + "3", + "2", + "5" + ] + } + }, + { + "name": "smoker", + "role": "feature", + "semantic_type": "boolean", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 2, + "unique_ratio": 0.000902, + "example_values": [ + "yes", + "no" + ] + } + }, + { + "name": "region", + "role": "feature", + "semantic_type": "categorical", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 4, + "unique_ratio": 0.001804, + "example_values": [ + "northwest", + "southwest", + "southeast", + "northeast" + ] + } + }, + { + "name": "charges", + "role": "target", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 1281, + "unique_ratio": 0.577808, + "example_values": [ + "21677.28345", + "15820.699", + "1639.5631", + "2497.0383", + "2897.3235" + ] + } + } + ] +} \ No newline at end of file diff --git a/timecost/m4/tabpfgen/tabpfgen-m4-20260501_005403/public_gate/public_gate_report.json b/timecost/m4/tabpfgen/tabpfgen-m4-20260501_005403/public_gate/public_gate_report.json new file mode 100644 index 0000000000000000000000000000000000000000..e7a25408e2574124629ea9437356551e4d6f4790 --- /dev/null +++ b/timecost/m4/tabpfgen/tabpfgen-m4-20260501_005403/public_gate/public_gate_report.json @@ -0,0 +1,37 @@ +{ + "dataset_id": "m4", + "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": "charges", + "task_type": "regression", + "input_splits": { + "train": "/data/jialinzhang/SynthesizePipeline-server/DatasetNew/m4/m4-train.csv", + "val": "/data/jialinzhang/SynthesizePipeline-server/DatasetNew/m4/m4-val.csv", + "test": "/data/jialinzhang/SynthesizePipeline-server/DatasetNew/m4/m4-test.csv" + } +} \ No newline at end of file diff --git a/timecost/m4/tabpfgen/tabpfgen-m4-20260501_005403/public_gate/staged_input_manifest.json b/timecost/m4/tabpfgen/tabpfgen-m4-20260501_005403/public_gate/staged_input_manifest.json new file mode 100644 index 0000000000000000000000000000000000000000..2f421eb9ce8e3dc6ab98883a4ccc7a24d321d222 --- /dev/null +++ b/timecost/m4/tabpfgen/tabpfgen-m4-20260501_005403/public_gate/staged_input_manifest.json @@ -0,0 +1,152 @@ +{ + "dataset_id": "m4", + "target_column": "charges", + "task_type": "regression", + "train_csv": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/m4/tabpfgen/tabpfgen-m4-20260501_005403/staged/public/train.csv", + "val_csv": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/m4/tabpfgen/tabpfgen-m4-20260501_005403/staged/public/val.csv", + "test_csv": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/m4/tabpfgen/tabpfgen-m4-20260501_005403/staged/public/test.csv", + "features_json": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/m4/tabpfgen/tabpfgen-m4-20260501_005403/staged/public/staged_features.json", + "public_gate_report": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/m4/tabpfgen/tabpfgen-m4-20260501_005403/public_gate/public_gate_report.json", + "column_schema": [ + { + "name": "age", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 47, + "unique_ratio": 0.0212, + "example_values": [ + "46", + "38", + "19", + "27", + "26" + ] + } + }, + { + "name": "sex", + "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.000902, + "example_values": [ + "female", + "male" + ] + } + }, + { + "name": "bmi", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 538, + "unique_ratio": 0.24267, + "example_values": [ + "23.655", + "19.3", + "30.59", + "32.67", + "29.45" + ] + } + }, + { + "name": "children", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 6, + "unique_ratio": 0.002706, + "example_values": [ + "1", + "0", + "3", + "2", + "5" + ] + } + }, + { + "name": "smoker", + "role": "feature", + "semantic_type": "boolean", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 2, + "unique_ratio": 0.000902, + "example_values": [ + "yes", + "no" + ] + } + }, + { + "name": "region", + "role": "feature", + "semantic_type": "categorical", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 4, + "unique_ratio": 0.001804, + "example_values": [ + "northwest", + "southwest", + "southeast", + "northeast" + ] + } + }, + { + "name": "charges", + "role": "target", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 1281, + "unique_ratio": 0.577808, + "example_values": [ + "21677.28345", + "15820.699", + "1639.5631", + "2497.0383", + "2897.3235" + ] + } + } + ] +} \ No newline at end of file diff --git a/timecost/m4/tabpfgen/tabpfgen-m4-20260501_005403/runtime_result.json b/timecost/m4/tabpfgen/tabpfgen-m4-20260501_005403/runtime_result.json new file mode 100644 index 0000000000000000000000000000000000000000..7fae3acd256c90f33b3674e66b3dc94ce875e757 --- /dev/null +++ b/timecost/m4/tabpfgen/tabpfgen-m4-20260501_005403/runtime_result.json @@ -0,0 +1,27 @@ +{ + "dataset_id": "m4", + "model": "tabpfgen", + "run_id": "tabpfgen-m4-20260501_005403", + "public_gate_status": "pass", + "adapter_ready_status": "pass", + "train_status": "success", + "generate_status": "success", + "reason_code": null, + "reason_detail": null, + "artifacts": { + "synthetic_csv": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/m4/tabpfgen/tabpfgen-m4-20260501_005403/tabpfgen-m4-2217-20260501_005403.csv", + "model_path": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/m4/tabpfgen/tabpfgen-m4-20260501_005403" + }, + "timings": { + "train": { + "started_at": "2026-05-01T00:54:03", + "ended_at": "2026-05-01T00:54:03", + "duration_sec": 0.006 + }, + "generate": { + "started_at": "2026-05-01T00:54:03", + "ended_at": "2026-05-01T00:54:23", + "duration_sec": 19.969 + } + } +} \ No newline at end of file diff --git a/timecost/m4/tabpfgen/tabpfgen-m4-20260501_005403/staged/public/staged_features.json b/timecost/m4/tabpfgen/tabpfgen-m4-20260501_005403/staged/public/staged_features.json new file mode 100644 index 0000000000000000000000000000000000000000..d6acd098c35111f423f3ffff2cfd1754bc5dfebc --- /dev/null +++ b/timecost/m4/tabpfgen/tabpfgen-m4-20260501_005403/staged/public/staged_features.json @@ -0,0 +1,37 @@ +[ + { + "feature_name": "age", + "data_type": "continuous", + "is_target": false + }, + { + "feature_name": "sex", + "data_type": "categorical", + "is_target": false + }, + { + "feature_name": "bmi", + "data_type": "continuous", + "is_target": false + }, + { + "feature_name": "children", + "data_type": "continuous", + "is_target": false + }, + { + "feature_name": "smoker", + "data_type": "binary", + "is_target": false + }, + { + "feature_name": "region", + "data_type": "categorical", + "is_target": false + }, + { + "feature_name": "charges", + "data_type": "continuous", + "is_target": true + } +] \ No newline at end of file diff --git a/timecost/m4/tabpfgen/tabpfgen-m4-20260501_005403/staged/public/test.csv b/timecost/m4/tabpfgen/tabpfgen-m4-20260501_005403/staged/public/test.csv new file mode 100644 index 0000000000000000000000000000000000000000..c88a2e7cfcd715bb421cb56eb078033da45c4dc8 --- /dev/null +++ b/timecost/m4/tabpfgen/tabpfgen-m4-20260501_005403/staged/public/test.csv @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:4c541b677fb2d45c5bc79338eeee9fd8c91484b195a0c2c546c2fbabf113b7ea +size 11298 diff --git a/timecost/m4/tabpfgen/tabpfgen-m4-20260501_005403/staged/public/train.csv b/timecost/m4/tabpfgen/tabpfgen-m4-20260501_005403/staged/public/train.csv new file mode 100644 index 0000000000000000000000000000000000000000..5a05019d786529e0617291766c4fbe016ca01bf5 --- /dev/null +++ b/timecost/m4/tabpfgen/tabpfgen-m4-20260501_005403/staged/public/train.csv @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:614ebfac5f41d6f661aff675fa18c0f933a8d9bcc77ea71b7b2360c2f0155837 +size 90069 diff --git a/timecost/m4/tabpfgen/tabpfgen-m4-20260501_005403/staged/public/val.csv b/timecost/m4/tabpfgen/tabpfgen-m4-20260501_005403/staged/public/val.csv new file mode 100644 index 0000000000000000000000000000000000000000..d78fe5ad1537c437ba9ac2629f2aa60a6c17e708 --- /dev/null +++ b/timecost/m4/tabpfgen/tabpfgen-m4-20260501_005403/staged/public/val.csv @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:e55f5edbe7942ff01630de91a9c70dfbc6445eba76c7b970350364546b67c2d7 +size 11218 diff --git a/timecost/m4/tabpfgen/tabpfgen-m4-20260501_005403/staged/tabpfgen/adapter_report.json b/timecost/m4/tabpfgen/tabpfgen-m4-20260501_005403/staged/tabpfgen/adapter_report.json new file mode 100644 index 0000000000000000000000000000000000000000..5bab4b213666513b1d6984199c924b867ba6da62 --- /dev/null +++ b/timecost/m4/tabpfgen/tabpfgen-m4-20260501_005403/staged/tabpfgen/adapter_report.json @@ -0,0 +1,7 @@ +{ + "adapter_ready_status": "pass", + "adapter_fail_reason_code": null, + "adapter_fail_detail": null, + "adapter_transforms_applied": [], + "model_input_manifest": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/m4/tabpfgen/tabpfgen-m4-20260501_005403/staged/tabpfgen/model_input_manifest.json" +} \ No newline at end of file diff --git a/timecost/m4/tabpfgen/tabpfgen-m4-20260501_005403/staged/tabpfgen/adapter_transforms_applied.json b/timecost/m4/tabpfgen/tabpfgen-m4-20260501_005403/staged/tabpfgen/adapter_transforms_applied.json new file mode 100644 index 0000000000000000000000000000000000000000..0637a088a01e8ddab3bf3fa98dbe804cbde1a0dc --- /dev/null +++ b/timecost/m4/tabpfgen/tabpfgen-m4-20260501_005403/staged/tabpfgen/adapter_transforms_applied.json @@ -0,0 +1 @@ +[] \ No newline at end of file diff --git a/timecost/m4/tabpfgen/tabpfgen-m4-20260501_005403/staged/tabpfgen/model_input_manifest.json b/timecost/m4/tabpfgen/tabpfgen-m4-20260501_005403/staged/tabpfgen/model_input_manifest.json new file mode 100644 index 0000000000000000000000000000000000000000..911959d0545938ed704c81ed6c65d04c5457cc3d --- /dev/null +++ b/timecost/m4/tabpfgen/tabpfgen-m4-20260501_005403/staged/tabpfgen/model_input_manifest.json @@ -0,0 +1,154 @@ +{ + "dataset_id": "m4", + "model": "tabpfgen", + "target_column": "charges", + "task_type": "regression", + "column_schema": [ + { + "name": "age", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 47, + "unique_ratio": 0.0212, + "example_values": [ + "46", + "38", + "19", + "27", + "26" + ] + } + }, + { + "name": "sex", + "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.000902, + "example_values": [ + "female", + "male" + ] + } + }, + { + "name": "bmi", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 538, + "unique_ratio": 0.24267, + "example_values": [ + "23.655", + "19.3", + "30.59", + "32.67", + "29.45" + ] + } + }, + { + "name": "children", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 6, + "unique_ratio": 0.002706, + "example_values": [ + "1", + "0", + "3", + "2", + "5" + ] + } + }, + { + "name": "smoker", + "role": "feature", + "semantic_type": "boolean", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 2, + "unique_ratio": 0.000902, + "example_values": [ + "yes", + "no" + ] + } + }, + { + "name": "region", + "role": "feature", + "semantic_type": "categorical", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 4, + "unique_ratio": 0.001804, + "example_values": [ + "northwest", + "southwest", + "southeast", + "northeast" + ] + } + }, + { + "name": "charges", + "role": "target", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 1281, + "unique_ratio": 0.577808, + "example_values": [ + "21677.28345", + "15820.699", + "1639.5631", + "2497.0383", + "2897.3235" + ] + } + } + ], + "public_manifest": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/m4/tabpfgen/tabpfgen-m4-20260501_005403/public_gate/staged_input_manifest.json", + "train_csv": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/m4/tabpfgen/tabpfgen-m4-20260501_005403/staged/public/train.csv", + "val_csv": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/m4/tabpfgen/tabpfgen-m4-20260501_005403/staged/public/val.csv", + "test_csv": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/m4/tabpfgen/tabpfgen-m4-20260501_005403/staged/public/test.csv", + "features_json": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/m4/tabpfgen/tabpfgen-m4-20260501_005403/staged/public/staged_features.json", + "public_gate_report": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/m4/tabpfgen/tabpfgen-m4-20260501_005403/public_gate/public_gate_report.json" +} \ No newline at end of file diff --git a/timecost/m4/tabpfgen/tabpfgen-m4-20260501_005403/tabpfgen-m4-2217-20260501_005403.csv b/timecost/m4/tabpfgen/tabpfgen-m4-20260501_005403/tabpfgen-m4-2217-20260501_005403.csv new file mode 100644 index 0000000000000000000000000000000000000000..892796d4a836fc0927c42a7dd32ff348360a4c67 --- /dev/null +++ b/timecost/m4/tabpfgen/tabpfgen-m4-20260501_005403/tabpfgen-m4-2217-20260501_005403.csv @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:c3d6014563799a9f3a5e5a61e77d16b4e3516f68004a5bfccafb8d31b382ade8 +size 151515 diff --git a/timecost/m4/tabpfgen/tabpfgen-m4-20260501_005403/tabpfgen_meta.json b/timecost/m4/tabpfgen/tabpfgen-m4-20260501_005403/tabpfgen_meta.json new file mode 100644 index 0000000000000000000000000000000000000000..b7d04611615bf3b7afd5f5e71ce493a235046145 --- /dev/null +++ b/timecost/m4/tabpfgen/tabpfgen-m4-20260501_005403/tabpfgen_meta.json @@ -0,0 +1,9 @@ +{ + "csv_path": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/m4/tabpfgen/tabpfgen-m4-20260501_005403/staged/public/train.csv", + "json_path": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/m4/tabpfgen/tabpfgen-m4-20260501_005403/staged/public/staged_features.json", + "target_col": "charges", + "is_classification": false, + "task_type": "regression", + "n_rows": 2217, + "n_cols": 7 +} \ No newline at end of file diff --git a/timecost/m4/tabpfgen/tabpfgen-m4-20260501_005403/train_20260501_005403.log b/timecost/m4/tabpfgen/tabpfgen-m4-20260501_005403/train_20260501_005403.log new file mode 100644 index 0000000000000000000000000000000000000000..2bc33582165aff2ed37bc5f569b0741f3ac7be47 --- /dev/null +++ b/timecost/m4/tabpfgen/tabpfgen-m4-20260501_005403/train_20260501_005403.log @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:8cafc6bd1a580da66b0197a0595821f6de2ce962295c27af83354e897305bbcc +size 595 diff --git a/timecost/m4/tabsyn/tabsyn-m4-20260501_002118/_tabsyn_sample.py b/timecost/m4/tabsyn/tabsyn-m4-20260501_002118/_tabsyn_sample.py new file mode 100644 index 0000000000000000000000000000000000000000..3446b13345a06b8e796ba47cccc3dae0abca43c8 --- /dev/null +++ b/timecost/m4/tabsyn/tabsyn-m4-20260501_002118/_tabsyn_sample.py @@ -0,0 +1,39 @@ +import os, sys, subprocess + +work_dir = "/work/output-Benchmark-trainonly-v1/m4/tabsyn/tabsyn-m4-20260501_002118" +dataname = "tabsyn_m4" +output_csv = "/work/output-Benchmark-trainonly-v1/m4/tabsyn/tabsyn-m4-20260501_002118/tabsyn-m4-2217-20260501_004653.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 2217 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/timecost/m4/tabsyn/tabsyn-m4-20260501_002118/_tabsyn_train.py b/timecost/m4/tabsyn/tabsyn-m4-20260501_002118/_tabsyn_train.py new file mode 100644 index 0000000000000000000000000000000000000000..4b8ffe2256df09defa4e72d758ca779366cd74d1 --- /dev/null +++ b/timecost/m4/tabsyn/tabsyn-m4-20260501_002118/_tabsyn_train.py @@ -0,0 +1,65 @@ +import os, sys, subprocess + +work_dir = "/work/output-Benchmark-trainonly-v1/m4/tabsyn/tabsyn-m4-20260501_002118" +dataname = "tabsyn_m4" +tabsyn_root = "/workspace/tabsyn" + +assert os.path.exists(tabsyn_root), f"TabSyn source not mounted: {tabsyn_root}" + +old = os.environ.get("PYTHONPATH", "") +os.environ["PYTHONPATH"] = tabsyn_root + (os.pathsep + old if old else "") +sys.path.insert(0, tabsyn_root) + +os.chdir(tabsyn_root) + +# Symlink data dir into TabSyn data/ +data_link = os.path.join(tabsyn_root, "data", dataname) +data_src = os.path.join(work_dir, "data", dataname) +os.makedirs(os.path.join(tabsyn_root, "data"), exist_ok=True) +if os.path.exists(data_link): + os.remove(data_link) +os.symlink(data_src, data_link) + +env = os.environ.copy() +env.setdefault("TABSYN_RESUME", "1") +env.setdefault("TABSYN_VAE_BATCH_SIZE", "1024") +# Safer defaults for wide tables on Docker: reduce shared-memory pressure in diffusion DataLoader. +env.setdefault("TABSYN_DIFFUSION_NUM_WORKERS", "0") +_te = None +if _te is not None: + env["TABSYN_VAE_EPOCHS"] = str(_te) + env["TABSYN_DIFFUSION_MAX_EPOCHS"] = str(max(_te + 1, 2)) + +# Data preprocessing is done on the host side (_prepare_data_dir) +# which creates .npy files, train/test CSVs, and info.json + +# Step 1: Train VAE (produces latent embeddings) +print(f"[TabSyn] Step 1/2: Training VAE in {tabsyn_root}, dataname={dataname}") +ret = subprocess.run( + [sys.executable, "main.py", + "--dataname", dataname, + "--mode", "train", + "--method", "vae", + "--gpu", "0"], + cwd=tabsyn_root, + env=env +) +if ret.returncode != 0: + print("[TabSyn] VAE training failed") + sys.exit(ret.returncode) + +# Step 2: Train diffusion model on latent space +print(f"[TabSyn] Step 2/2: Training diffusion model") +ret = subprocess.run( + [sys.executable, "main.py", + "--dataname", dataname, + "--mode", "train", + "--method", "tabsyn", + "--gpu", "0"], + cwd=tabsyn_root, + env=env +) +if ret.returncode != 0: + print("[TabSyn] Diffusion training failed") + sys.exit(ret.returncode) +print("[TabSyn] Training complete (VAE + Diffusion)") diff --git a/timecost/m4/tabsyn/tabsyn-m4-20260501_002118/data/tabsyn_m4/X_cat_test.npy b/timecost/m4/tabsyn/tabsyn-m4-20260501_002118/data/tabsyn_m4/X_cat_test.npy new file mode 100644 index 0000000000000000000000000000000000000000..35977ccea6d36736d37a5000108e57633f2bb227 --- /dev/null +++ b/timecost/m4/tabsyn/tabsyn-m4-20260501_002118/data/tabsyn_m4/X_cat_test.npy @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:d8893cf5626d7469e90c946b0f59fca148a445e109a27fa5a2acdd425b6bb7d2 +size 53336 diff --git a/timecost/m4/tabsyn/tabsyn-m4-20260501_002118/data/tabsyn_m4/X_cat_train.npy b/timecost/m4/tabsyn/tabsyn-m4-20260501_002118/data/tabsyn_m4/X_cat_train.npy new file mode 100644 index 0000000000000000000000000000000000000000..35977ccea6d36736d37a5000108e57633f2bb227 --- /dev/null +++ b/timecost/m4/tabsyn/tabsyn-m4-20260501_002118/data/tabsyn_m4/X_cat_train.npy @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:d8893cf5626d7469e90c946b0f59fca148a445e109a27fa5a2acdd425b6bb7d2 +size 53336 diff --git a/timecost/m4/tabsyn/tabsyn-m4-20260501_002118/data/tabsyn_m4/X_num_test.npy b/timecost/m4/tabsyn/tabsyn-m4-20260501_002118/data/tabsyn_m4/X_num_test.npy new file mode 100644 index 0000000000000000000000000000000000000000..dc149960a879e21fd1aeed7de2419851175627e7 --- /dev/null +++ b/timecost/m4/tabsyn/tabsyn-m4-20260501_002118/data/tabsyn_m4/X_num_test.npy @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:4a21bd2fd5a226c07d543ddf78616a8edb2d52b51097fc7a5df5b05612267af8 +size 26732 diff --git a/timecost/m4/tabsyn/tabsyn-m4-20260501_002118/data/tabsyn_m4/X_num_train.npy b/timecost/m4/tabsyn/tabsyn-m4-20260501_002118/data/tabsyn_m4/X_num_train.npy new file mode 100644 index 0000000000000000000000000000000000000000..dc149960a879e21fd1aeed7de2419851175627e7 --- /dev/null +++ b/timecost/m4/tabsyn/tabsyn-m4-20260501_002118/data/tabsyn_m4/X_num_train.npy @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:4a21bd2fd5a226c07d543ddf78616a8edb2d52b51097fc7a5df5b05612267af8 +size 26732 diff --git a/timecost/m4/tabsyn/tabsyn-m4-20260501_002118/data/tabsyn_m4/info.json b/timecost/m4/tabsyn/tabsyn-m4-20260501_002118/data/tabsyn_m4/info.json new file mode 100644 index 0000000000000000000000000000000000000000..a6affaecfbfc8f45e63d3ab86bbffb378c04caa5 --- /dev/null +++ b/timecost/m4/tabsyn/tabsyn-m4-20260501_002118/data/tabsyn_m4/info.json @@ -0,0 +1,91 @@ +{ + "name": "tabsyn_m4", + "task_type": "regression", + "n_num_features": 3, + "n_cat_features": 3, + "train_size": 2217, + "num_col_idx": [ + 0, + 2, + 3 + ], + "cat_col_idx": [ + 1, + 4, + 5 + ], + "target_col_idx": [ + 6 + ], + "column_names": [ + "age", + "sex", + "bmi", + "children", + "smoker", + "region", + "charges" + ], + "train_num": 2217, + "test_num": 2217, + "header": 0, + "file_type": "csv", + "data_path": "data/tabsyn_m4/train.csv", + "test_path": null, + "idx_mapping": { + "0": 0, + "1": 3, + "2": 1, + "3": 2, + "4": 4, + "5": 5, + "6": 6 + }, + "inverse_idx_mapping": { + "0": 0, + "3": 1, + "1": 2, + "2": 3, + "4": 4, + "5": 5, + "6": 6 + }, + "idx_name_mapping": { + "0": "age", + "1": "sex", + "2": "bmi", + "3": "children", + "4": "smoker", + "5": "region", + "6": "charges" + }, + "metadata": { + "columns": { + "0": { + "sdtype": "numerical", + "computer_representation": "Float" + }, + "2": { + "sdtype": "numerical", + "computer_representation": "Float" + }, + "3": { + "sdtype": "numerical", + "computer_representation": "Float" + }, + "1": { + "sdtype": "categorical" + }, + "4": { + "sdtype": "categorical" + }, + "5": { + "sdtype": "categorical" + }, + "6": { + "sdtype": "numerical", + "computer_representation": "Float" + } + } + } +} \ No newline at end of file diff --git a/timecost/m4/tabsyn/tabsyn-m4-20260501_002118/data/tabsyn_m4/test.csv b/timecost/m4/tabsyn/tabsyn-m4-20260501_002118/data/tabsyn_m4/test.csv new file mode 100644 index 0000000000000000000000000000000000000000..152c9a200d3e5ce590ed1621c80749a36fc97e13 --- /dev/null +++ b/timecost/m4/tabsyn/tabsyn-m4-20260501_002118/data/tabsyn_m4/test.csv @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:67f64f75063e2f8d838d7f7040ebc12f8c46df4dc54450874b851786224ba875 +size 60802 diff --git a/timecost/m4/tabsyn/tabsyn-m4-20260501_002118/data/tabsyn_m4/train.csv b/timecost/m4/tabsyn/tabsyn-m4-20260501_002118/data/tabsyn_m4/train.csv new file mode 100644 index 0000000000000000000000000000000000000000..152c9a200d3e5ce590ed1621c80749a36fc97e13 --- /dev/null +++ b/timecost/m4/tabsyn/tabsyn-m4-20260501_002118/data/tabsyn_m4/train.csv @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:67f64f75063e2f8d838d7f7040ebc12f8c46df4dc54450874b851786224ba875 +size 60802 diff --git a/timecost/m4/tabsyn/tabsyn-m4-20260501_002118/data/tabsyn_m4/y_test.npy b/timecost/m4/tabsyn/tabsyn-m4-20260501_002118/data/tabsyn_m4/y_test.npy new file mode 100644 index 0000000000000000000000000000000000000000..c1d23d8e35b403e2d772e5544af9d68ff32a8ea0 --- /dev/null +++ b/timecost/m4/tabsyn/tabsyn-m4-20260501_002118/data/tabsyn_m4/y_test.npy @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:4d6e4ad93beee28740cc25ee808a180c01fa94a053f79ff383504888f2d8f39e +size 17864 diff --git a/timecost/m4/tabsyn/tabsyn-m4-20260501_002118/data/tabsyn_m4/y_train.npy b/timecost/m4/tabsyn/tabsyn-m4-20260501_002118/data/tabsyn_m4/y_train.npy new file mode 100644 index 0000000000000000000000000000000000000000..c1d23d8e35b403e2d772e5544af9d68ff32a8ea0 --- /dev/null +++ b/timecost/m4/tabsyn/tabsyn-m4-20260501_002118/data/tabsyn_m4/y_train.npy @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:4d6e4ad93beee28740cc25ee808a180c01fa94a053f79ff383504888f2d8f39e +size 17864 diff --git a/timecost/m4/tabsyn/tabsyn-m4-20260501_002118/gen_20260501_004653.log b/timecost/m4/tabsyn/tabsyn-m4-20260501_002118/gen_20260501_004653.log new file mode 100644 index 0000000000000000000000000000000000000000..6d052f7d521e744b02159470dee052bdb17086df --- /dev/null +++ b/timecost/m4/tabsyn/tabsyn-m4-20260501_002118/gen_20260501_004653.log @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:af7610447f698cf17d603bce882093da4e5c45e69d1cf8b99faad5f1e536496d +size 930 diff --git a/timecost/m4/tabsyn/tabsyn-m4-20260501_002118/input_snapshot.json b/timecost/m4/tabsyn/tabsyn-m4-20260501_002118/input_snapshot.json new file mode 100644 index 0000000000000000000000000000000000000000..21fe15b6e6863f7441ca4017d82218a03e3a90b4 --- /dev/null +++ b/timecost/m4/tabsyn/tabsyn-m4-20260501_002118/input_snapshot.json @@ -0,0 +1,36 @@ +{ + "dataset_id": "m4", + "model": "tabsyn", + "inputs": { + "train_csv": { + "path": "/data/jialinzhang/SynthesizePipeline-server/DatasetNew/m4/m4-train.csv", + "exists": true, + "size": 92191, + "sha256": "396b9d409ca21bf4a4cd329bdf5b7796aa0ae6356fa8d89b8eb669b5880b81f1" + }, + "val_csv": { + "path": "/data/jialinzhang/SynthesizePipeline-server/DatasetNew/m4/m4-val.csv", + "exists": true, + "size": 11482, + "sha256": "ee3c247d02f56e1687d03c381e13125d6a3a2a411ac7f202ba8520a4be9f1784" + }, + "test_csv": { + "path": "/data/jialinzhang/SynthesizePipeline-server/DatasetNew/m4/m4-test.csv", + "exists": true, + "size": 11559, + "sha256": "cadb9941124001b8fa7cb1ebae43b70a9ca56294f4df4d3c2f22c164c41757d4" + }, + "profile_json": { + "path": "/data/jialinzhang/SynthesizePipeline-server/DatasetNew/artifacts/data_core/tabular/m4/m4-dataset_profile.json", + "exists": true, + "size": 3336, + "sha256": "83e2764810e4a0e8cdece3a28dbd9134b7c9df6f2e56953e46d024ad2c4e035f" + }, + "contract_json": { + "path": "/data/jialinzhang/SynthesizePipeline-server/DatasetNew/artifacts/data_core/tabular/m4/m4-dataset_contract_v1.json", + "exists": true, + "size": 3810, + "sha256": "c23641b258629a845b164099bd0132886f8f6d0100e990494e0f92540f8987d9" + } + } +} \ No newline at end of file diff --git a/timecost/m4/tabsyn/tabsyn-m4-20260501_002118/public_gate/normalized_schema_snapshot.json b/timecost/m4/tabsyn/tabsyn-m4-20260501_002118/public_gate/normalized_schema_snapshot.json new file mode 100644 index 0000000000000000000000000000000000000000..31ed9818686b11907df75e872e4ffbe010330880 --- /dev/null +++ b/timecost/m4/tabsyn/tabsyn-m4-20260501_002118/public_gate/normalized_schema_snapshot.json @@ -0,0 +1,147 @@ +{ + "dataset_id": "m4", + "target_column": "charges", + "task_type": "regression", + "columns": [ + { + "name": "age", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 47, + "unique_ratio": 0.0212, + "example_values": [ + "46", + "38", + "19", + "27", + "26" + ] + } + }, + { + "name": "sex", + "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.000902, + "example_values": [ + "female", + "male" + ] + } + }, + { + "name": "bmi", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 538, + "unique_ratio": 0.24267, + "example_values": [ + "23.655", + "19.3", + "30.59", + "32.67", + "29.45" + ] + } + }, + { + "name": "children", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 6, + "unique_ratio": 0.002706, + "example_values": [ + "1", + "0", + "3", + "2", + "5" + ] + } + }, + { + "name": "smoker", + "role": "feature", + "semantic_type": "boolean", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 2, + "unique_ratio": 0.000902, + "example_values": [ + "yes", + "no" + ] + } + }, + { + "name": "region", + "role": "feature", + "semantic_type": "categorical", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 4, + "unique_ratio": 0.001804, + "example_values": [ + "northwest", + "southwest", + "southeast", + "northeast" + ] + } + }, + { + "name": "charges", + "role": "target", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 1281, + "unique_ratio": 0.577808, + "example_values": [ + "21677.28345", + "15820.699", + "1639.5631", + "2497.0383", + "2897.3235" + ] + } + } + ] +} \ No newline at end of file diff --git a/timecost/m4/tabsyn/tabsyn-m4-20260501_002118/public_gate/public_gate_report.json b/timecost/m4/tabsyn/tabsyn-m4-20260501_002118/public_gate/public_gate_report.json new file mode 100644 index 0000000000000000000000000000000000000000..e7a25408e2574124629ea9437356551e4d6f4790 --- /dev/null +++ b/timecost/m4/tabsyn/tabsyn-m4-20260501_002118/public_gate/public_gate_report.json @@ -0,0 +1,37 @@ +{ + "dataset_id": "m4", + "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": "charges", + "task_type": "regression", + "input_splits": { + "train": "/data/jialinzhang/SynthesizePipeline-server/DatasetNew/m4/m4-train.csv", + "val": "/data/jialinzhang/SynthesizePipeline-server/DatasetNew/m4/m4-val.csv", + "test": "/data/jialinzhang/SynthesizePipeline-server/DatasetNew/m4/m4-test.csv" + } +} \ No newline at end of file diff --git a/timecost/m4/tabsyn/tabsyn-m4-20260501_002118/public_gate/staged_input_manifest.json b/timecost/m4/tabsyn/tabsyn-m4-20260501_002118/public_gate/staged_input_manifest.json new file mode 100644 index 0000000000000000000000000000000000000000..b7c70717cfee2c8bde2c692c55e2e2627ed5f184 --- /dev/null +++ b/timecost/m4/tabsyn/tabsyn-m4-20260501_002118/public_gate/staged_input_manifest.json @@ -0,0 +1,152 @@ +{ + "dataset_id": "m4", + "target_column": "charges", + "task_type": "regression", + "train_csv": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/m4/tabsyn/tabsyn-m4-20260501_002118/staged/public/train.csv", + "val_csv": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/m4/tabsyn/tabsyn-m4-20260501_002118/staged/public/val.csv", + "test_csv": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/m4/tabsyn/tabsyn-m4-20260501_002118/staged/public/test.csv", + "features_json": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/m4/tabsyn/tabsyn-m4-20260501_002118/staged/public/staged_features.json", + "public_gate_report": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/m4/tabsyn/tabsyn-m4-20260501_002118/public_gate/public_gate_report.json", + "column_schema": [ + { + "name": "age", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 47, + "unique_ratio": 0.0212, + "example_values": [ + "46", + "38", + "19", + "27", + "26" + ] + } + }, + { + "name": "sex", + "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.000902, + "example_values": [ + "female", + "male" + ] + } + }, + { + "name": "bmi", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 538, + "unique_ratio": 0.24267, + "example_values": [ + "23.655", + "19.3", + "30.59", + "32.67", + "29.45" + ] + } + }, + { + "name": "children", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 6, + "unique_ratio": 0.002706, + "example_values": [ + "1", + "0", + "3", + "2", + "5" + ] + } + }, + { + "name": "smoker", + "role": "feature", + "semantic_type": "boolean", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 2, + "unique_ratio": 0.000902, + "example_values": [ + "yes", + "no" + ] + } + }, + { + "name": "region", + "role": "feature", + "semantic_type": "categorical", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 4, + "unique_ratio": 0.001804, + "example_values": [ + "northwest", + "southwest", + "southeast", + "northeast" + ] + } + }, + { + "name": "charges", + "role": "target", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 1281, + "unique_ratio": 0.577808, + "example_values": [ + "21677.28345", + "15820.699", + "1639.5631", + "2497.0383", + "2897.3235" + ] + } + } + ] +} \ No newline at end of file diff --git a/timecost/m4/tabsyn/tabsyn-m4-20260501_002118/runtime_result.json b/timecost/m4/tabsyn/tabsyn-m4-20260501_002118/runtime_result.json new file mode 100644 index 0000000000000000000000000000000000000000..c59eed7391f5f5388a42fa2f69ad176aabab9692 --- /dev/null +++ b/timecost/m4/tabsyn/tabsyn-m4-20260501_002118/runtime_result.json @@ -0,0 +1,27 @@ +{ + "dataset_id": "m4", + "model": "tabsyn", + "run_id": "tabsyn-m4-20260501_002118", + "public_gate_status": "pass", + "adapter_ready_status": "pass", + "train_status": "success", + "generate_status": "success", + "reason_code": null, + "reason_detail": null, + "artifacts": { + "synthetic_csv": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/m4/tabsyn/tabsyn-m4-20260501_002118/tabsyn-m4-2217-20260501_004653.csv", + "model_path": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/m4/tabsyn/tabsyn-m4-20260501_002118" + }, + "timings": { + "train": { + "started_at": "2026-05-01T00:21:18", + "ended_at": "2026-05-01T00:46:53", + "duration_sec": 1534.909 + }, + "generate": { + "started_at": "2026-05-01T00:46:53", + "ended_at": "2026-05-01T00:46:58", + "duration_sec": 5.22 + } + } +} \ No newline at end of file diff --git a/timecost/m4/tabsyn/tabsyn-m4-20260501_002118/staged/public/staged_features.json b/timecost/m4/tabsyn/tabsyn-m4-20260501_002118/staged/public/staged_features.json new file mode 100644 index 0000000000000000000000000000000000000000..d6acd098c35111f423f3ffff2cfd1754bc5dfebc --- /dev/null +++ b/timecost/m4/tabsyn/tabsyn-m4-20260501_002118/staged/public/staged_features.json @@ -0,0 +1,37 @@ +[ + { + "feature_name": "age", + "data_type": "continuous", + "is_target": false + }, + { + "feature_name": "sex", + "data_type": "categorical", + "is_target": false + }, + { + "feature_name": "bmi", + "data_type": "continuous", + "is_target": false + }, + { + "feature_name": "children", + "data_type": "continuous", + "is_target": false + }, + { + "feature_name": "smoker", + "data_type": "binary", + "is_target": false + }, + { + "feature_name": "region", + "data_type": "categorical", + "is_target": false + }, + { + "feature_name": "charges", + "data_type": "continuous", + "is_target": true + } +] \ No newline at end of file diff --git a/timecost/m4/tabsyn/tabsyn-m4-20260501_002118/staged/public/test.csv b/timecost/m4/tabsyn/tabsyn-m4-20260501_002118/staged/public/test.csv new file mode 100644 index 0000000000000000000000000000000000000000..c88a2e7cfcd715bb421cb56eb078033da45c4dc8 --- /dev/null +++ b/timecost/m4/tabsyn/tabsyn-m4-20260501_002118/staged/public/test.csv @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:4c541b677fb2d45c5bc79338eeee9fd8c91484b195a0c2c546c2fbabf113b7ea +size 11298 diff --git a/timecost/m4/tabsyn/tabsyn-m4-20260501_002118/staged/public/train.csv b/timecost/m4/tabsyn/tabsyn-m4-20260501_002118/staged/public/train.csv new file mode 100644 index 0000000000000000000000000000000000000000..5a05019d786529e0617291766c4fbe016ca01bf5 --- /dev/null +++ b/timecost/m4/tabsyn/tabsyn-m4-20260501_002118/staged/public/train.csv @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:614ebfac5f41d6f661aff675fa18c0f933a8d9bcc77ea71b7b2360c2f0155837 +size 90069 diff --git a/timecost/m4/tabsyn/tabsyn-m4-20260501_002118/staged/public/val.csv b/timecost/m4/tabsyn/tabsyn-m4-20260501_002118/staged/public/val.csv new file mode 100644 index 0000000000000000000000000000000000000000..d78fe5ad1537c437ba9ac2629f2aa60a6c17e708 --- /dev/null +++ b/timecost/m4/tabsyn/tabsyn-m4-20260501_002118/staged/public/val.csv @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:e55f5edbe7942ff01630de91a9c70dfbc6445eba76c7b970350364546b67c2d7 +size 11218 diff --git a/timecost/m4/tabsyn/tabsyn-m4-20260501_002118/staged/tabsyn/adapter_report.json b/timecost/m4/tabsyn/tabsyn-m4-20260501_002118/staged/tabsyn/adapter_report.json new file mode 100644 index 0000000000000000000000000000000000000000..abb6db567735b329c272a2186a8c72ae991e057f --- /dev/null +++ b/timecost/m4/tabsyn/tabsyn-m4-20260501_002118/staged/tabsyn/adapter_report.json @@ -0,0 +1,7 @@ +{ + "adapter_ready_status": "pass", + "adapter_fail_reason_code": null, + "adapter_fail_detail": null, + "adapter_transforms_applied": [], + "model_input_manifest": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/m4/tabsyn/tabsyn-m4-20260501_002118/staged/tabsyn/model_input_manifest.json" +} \ No newline at end of file diff --git a/timecost/m4/tabsyn/tabsyn-m4-20260501_002118/staged/tabsyn/adapter_transforms_applied.json b/timecost/m4/tabsyn/tabsyn-m4-20260501_002118/staged/tabsyn/adapter_transforms_applied.json new file mode 100644 index 0000000000000000000000000000000000000000..0637a088a01e8ddab3bf3fa98dbe804cbde1a0dc --- /dev/null +++ b/timecost/m4/tabsyn/tabsyn-m4-20260501_002118/staged/tabsyn/adapter_transforms_applied.json @@ -0,0 +1 @@ +[] \ No newline at end of file diff --git a/timecost/m4/tabsyn/tabsyn-m4-20260501_002118/staged/tabsyn/model_input_manifest.json b/timecost/m4/tabsyn/tabsyn-m4-20260501_002118/staged/tabsyn/model_input_manifest.json new file mode 100644 index 0000000000000000000000000000000000000000..1234a03c0f902a27d8b3f09a352a58b6abdb20fc --- /dev/null +++ b/timecost/m4/tabsyn/tabsyn-m4-20260501_002118/staged/tabsyn/model_input_manifest.json @@ -0,0 +1,154 @@ +{ + "dataset_id": "m4", + "model": "tabsyn", + "target_column": "charges", + "task_type": "regression", + "column_schema": [ + { + "name": "age", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 47, + "unique_ratio": 0.0212, + "example_values": [ + "46", + "38", + "19", + "27", + "26" + ] + } + }, + { + "name": "sex", + "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.000902, + "example_values": [ + "female", + "male" + ] + } + }, + { + "name": "bmi", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 538, + "unique_ratio": 0.24267, + "example_values": [ + "23.655", + "19.3", + "30.59", + "32.67", + "29.45" + ] + } + }, + { + "name": "children", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 6, + "unique_ratio": 0.002706, + "example_values": [ + "1", + "0", + "3", + "2", + "5" + ] + } + }, + { + "name": "smoker", + "role": "feature", + "semantic_type": "boolean", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 2, + "unique_ratio": 0.000902, + "example_values": [ + "yes", + "no" + ] + } + }, + { + "name": "region", + "role": "feature", + "semantic_type": "categorical", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 4, + "unique_ratio": 0.001804, + "example_values": [ + "northwest", + "southwest", + "southeast", + "northeast" + ] + } + }, + { + "name": "charges", + "role": "target", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 1281, + "unique_ratio": 0.577808, + "example_values": [ + "21677.28345", + "15820.699", + "1639.5631", + "2497.0383", + "2897.3235" + ] + } + } + ], + "public_manifest": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/m4/tabsyn/tabsyn-m4-20260501_002118/public_gate/staged_input_manifest.json", + "train_csv": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/m4/tabsyn/tabsyn-m4-20260501_002118/staged/public/train.csv", + "val_csv": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/m4/tabsyn/tabsyn-m4-20260501_002118/staged/public/val.csv", + "test_csv": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/m4/tabsyn/tabsyn-m4-20260501_002118/staged/public/test.csv", + "features_json": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/m4/tabsyn/tabsyn-m4-20260501_002118/staged/public/staged_features.json", + "public_gate_report": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/m4/tabsyn/tabsyn-m4-20260501_002118/public_gate/public_gate_report.json" +} \ No newline at end of file diff --git a/timecost/m4/tabsyn/tabsyn-m4-20260501_002118/synthetic/tabsyn_m4/real.csv b/timecost/m4/tabsyn/tabsyn-m4-20260501_002118/synthetic/tabsyn_m4/real.csv new file mode 100644 index 0000000000000000000000000000000000000000..152c9a200d3e5ce590ed1621c80749a36fc97e13 --- /dev/null +++ b/timecost/m4/tabsyn/tabsyn-m4-20260501_002118/synthetic/tabsyn_m4/real.csv @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:67f64f75063e2f8d838d7f7040ebc12f8c46df4dc54450874b851786224ba875 +size 60802 diff --git a/timecost/m4/tabsyn/tabsyn-m4-20260501_002118/synthetic/tabsyn_m4/test.csv b/timecost/m4/tabsyn/tabsyn-m4-20260501_002118/synthetic/tabsyn_m4/test.csv new file mode 100644 index 0000000000000000000000000000000000000000..152c9a200d3e5ce590ed1621c80749a36fc97e13 --- /dev/null +++ b/timecost/m4/tabsyn/tabsyn-m4-20260501_002118/synthetic/tabsyn_m4/test.csv @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:67f64f75063e2f8d838d7f7040ebc12f8c46df4dc54450874b851786224ba875 +size 60802 diff --git a/timecost/m4/tabsyn/tabsyn-m4-20260501_002118/tabsyn-m4-2217-20260501_004653.csv b/timecost/m4/tabsyn/tabsyn-m4-20260501_002118/tabsyn-m4-2217-20260501_004653.csv new file mode 100644 index 0000000000000000000000000000000000000000..01510a48f79cb7f27f544e1e598f4c8cfd4f9be6 --- /dev/null +++ b/timecost/m4/tabsyn/tabsyn-m4-20260501_002118/tabsyn-m4-2217-20260501_004653.csv @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:1afabca93cbcc921f9c9f91e395beddcc57c23bb3a012751c4bd2fbb18c4119e +size 83345 diff --git a/timecost/m4/tabsyn/tabsyn-m4-20260501_002118/train_20260501_002118.log b/timecost/m4/tabsyn/tabsyn-m4-20260501_002118/train_20260501_002118.log new file mode 100644 index 0000000000000000000000000000000000000000..1c27436cf4bfaa4e9830827e0101afdfb87664a5 --- /dev/null +++ b/timecost/m4/tabsyn/tabsyn-m4-20260501_002118/train_20260501_002118.log @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:3c6391abc9ca72c238e7717562f1ed0ee8afb97fbb34f6e20088940e2044c724 +size 2153039 diff --git a/timecost/m4/tvae/tvae-m4-20260501_055812/_tvae_generate.py b/timecost/m4/tvae/tvae-m4-20260501_055812/_tvae_generate.py new file mode 100644 index 0000000000000000000000000000000000000000..fd4d7affa32f0d281c334aa3ed7cf8baff921c00 --- /dev/null +++ b/timecost/m4/tvae/tvae-m4-20260501_055812/_tvae_generate.py @@ -0,0 +1,23 @@ +import os, sys +sys.path.insert(0, "/work") +from src.SpecificModels.ctgan_joblib_parallel_cap import apply_parallel_cap_from_env +apply_parallel_cap_from_env() +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 +os.environ.setdefault("LOKY_MAX_CPU_COUNT", "8") +os.environ.setdefault("OPENBLAS_NUM_THREADS", "8") +os.environ.setdefault("MKL_NUM_THREADS", "8") +model = TVAE.load("/work/output-Benchmark-trainonly-v1/m4/tvae/tvae-m4-20260501_055812/models_300epochs/tvae_300epochs.pt") +total = 2217 +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-Benchmark-trainonly-v1/m4/tvae/tvae-m4-20260501_055812/tvae-m4-2217-20260501_055834.csv", index=False) +print(f"[TVAE] Generated {total} rows (chunks={len(parts)}) -> /work/output-Benchmark-trainonly-v1/m4/tvae/tvae-m4-20260501_055812/tvae-m4-2217-20260501_055834.csv") diff --git a/timecost/m4/tvae/tvae-m4-20260501_055812/_tvae_train.py b/timecost/m4/tvae/tvae-m4-20260501_055812/_tvae_train.py new file mode 100644 index 0000000000000000000000000000000000000000..ef5925ca28ee1f4772e7c03eee8d4a0207656339 --- /dev/null +++ b/timecost/m4/tvae/tvae-m4-20260501_055812/_tvae_train.py @@ -0,0 +1,30 @@ +import json, os, sys +sys.path.insert(0, "/work") +from src.SpecificModels.ctgan_joblib_parallel_cap import apply_parallel_cap_from_env +apply_parallel_cap_from_env() +import pandas as pd +from ctgan.data import read_csv +from ctgan.synthesizers.tvae import TVAE + +# Keep transform stage parallelism bounded for stability on shared host. +os.environ.setdefault("LOKY_MAX_CPU_COUNT", "8") +os.environ.setdefault("OPENBLAS_NUM_THREADS", "8") +os.environ.setdefault("MKL_NUM_THREADS", "8") +_nj = (os.environ.get("TVAE_CTGAN_JOBTRANS_N_JOBS") or "").strip() +if _nj: + print("[TVAE] joblib Parallel cap ON, TVAE_CTGAN_JOBTRANS_N_JOBS=" + _nj) +else: + print("[TVAE] joblib Parallel cap OFF (unset TVAE_CTGAN_JOBTRANS_N_JOBS)") +print("[TVAE] LOKY_MAX_CPU_COUNT=" + str(os.environ.get("LOKY_MAX_CPU_COUNT", ""))) + +csv_path = "/work/output-Benchmark-trainonly-v1/m4/tvae/tvae-m4-20260501_055812/staged/public/train.csv" +meta_path = "/work/output-Benchmark-trainonly-v1/m4/tvae/tvae-m4-20260501_055812/tvae_metadata.json" +save_path = "/work/output-Benchmark-trainonly-v1/m4/tvae/tvae-m4-20260501_055812/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/timecost/m4/tvae/tvae-m4-20260501_055812/gen_20260501_055834.log b/timecost/m4/tvae/tvae-m4-20260501_055812/gen_20260501_055834.log new file mode 100644 index 0000000000000000000000000000000000000000..f33c02adfb39603116028ea6d8a455ac9ca79881 --- /dev/null +++ b/timecost/m4/tvae/tvae-m4-20260501_055812/gen_20260501_055834.log @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:85af262332f60beb0aa22d3000de71b318f00926a2c27a0273b16f183329101c +size 404 diff --git a/timecost/m4/tvae/tvae-m4-20260501_055812/input_snapshot.json b/timecost/m4/tvae/tvae-m4-20260501_055812/input_snapshot.json new file mode 100644 index 0000000000000000000000000000000000000000..60c34c26acabd61c3c87a32ef8cbe89659d8c727 --- /dev/null +++ b/timecost/m4/tvae/tvae-m4-20260501_055812/input_snapshot.json @@ -0,0 +1,36 @@ +{ + "dataset_id": "m4", + "model": "tvae", + "inputs": { + "train_csv": { + "path": "/data/jialinzhang/SynthesizePipeline-server/DatasetNew/m4/m4-train.csv", + "exists": true, + "size": 92191, + "sha256": "396b9d409ca21bf4a4cd329bdf5b7796aa0ae6356fa8d89b8eb669b5880b81f1" + }, + "val_csv": { + "path": "/data/jialinzhang/SynthesizePipeline-server/DatasetNew/m4/m4-val.csv", + "exists": true, + "size": 11482, + "sha256": "ee3c247d02f56e1687d03c381e13125d6a3a2a411ac7f202ba8520a4be9f1784" + }, + "test_csv": { + "path": "/data/jialinzhang/SynthesizePipeline-server/DatasetNew/m4/m4-test.csv", + "exists": true, + "size": 11559, + "sha256": "cadb9941124001b8fa7cb1ebae43b70a9ca56294f4df4d3c2f22c164c41757d4" + }, + "profile_json": { + "path": "/data/jialinzhang/SynthesizePipeline-server/DatasetNew/artifacts/data_core/tabular/m4/m4-dataset_profile.json", + "exists": true, + "size": 3336, + "sha256": "83e2764810e4a0e8cdece3a28dbd9134b7c9df6f2e56953e46d024ad2c4e035f" + }, + "contract_json": { + "path": "/data/jialinzhang/SynthesizePipeline-server/DatasetNew/artifacts/data_core/tabular/m4/m4-dataset_contract_v1.json", + "exists": true, + "size": 3810, + "sha256": "c23641b258629a845b164099bd0132886f8f6d0100e990494e0f92540f8987d9" + } + } +} \ No newline at end of file diff --git a/timecost/m4/tvae/tvae-m4-20260501_055812/models_300epochs/train_20260501_055812.log b/timecost/m4/tvae/tvae-m4-20260501_055812/models_300epochs/train_20260501_055812.log new file mode 100644 index 0000000000000000000000000000000000000000..5a04b28e3bdce4d1c68ce1066d178dda6f0a7475 --- /dev/null +++ b/timecost/m4/tvae/tvae-m4-20260501_055812/models_300epochs/train_20260501_055812.log @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:cea974684b89ac9abfdc4feedad02c71b9abaf15de17fa78960b6447fc1157d8 +size 531 diff --git a/timecost/m4/tvae/tvae-m4-20260501_055812/models_300epochs/tvae_300epochs.pt b/timecost/m4/tvae/tvae-m4-20260501_055812/models_300epochs/tvae_300epochs.pt new file mode 100644 index 0000000000000000000000000000000000000000..843058a63404d636cb94e88b60dbef9dc99523e0 --- /dev/null +++ b/timecost/m4/tvae/tvae-m4-20260501_055812/models_300epochs/tvae_300epochs.pt @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:6abd8eec6a8d217c00b45f3f0a99a036041e4856f65e0e0c9e960159f0af57dd +size 399276 diff --git a/timecost/m4/tvae/tvae-m4-20260501_055812/public_gate/normalized_schema_snapshot.json b/timecost/m4/tvae/tvae-m4-20260501_055812/public_gate/normalized_schema_snapshot.json new file mode 100644 index 0000000000000000000000000000000000000000..31ed9818686b11907df75e872e4ffbe010330880 --- /dev/null +++ b/timecost/m4/tvae/tvae-m4-20260501_055812/public_gate/normalized_schema_snapshot.json @@ -0,0 +1,147 @@ +{ + "dataset_id": "m4", + "target_column": "charges", + "task_type": "regression", + "columns": [ + { + "name": "age", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 47, + "unique_ratio": 0.0212, + "example_values": [ + "46", + "38", + "19", + "27", + "26" + ] + } + }, + { + "name": "sex", + "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.000902, + "example_values": [ + "female", + "male" + ] + } + }, + { + "name": "bmi", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 538, + "unique_ratio": 0.24267, + "example_values": [ + "23.655", + "19.3", + "30.59", + "32.67", + "29.45" + ] + } + }, + { + "name": "children", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 6, + "unique_ratio": 0.002706, + "example_values": [ + "1", + "0", + "3", + "2", + "5" + ] + } + }, + { + "name": "smoker", + "role": "feature", + "semantic_type": "boolean", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 2, + "unique_ratio": 0.000902, + "example_values": [ + "yes", + "no" + ] + } + }, + { + "name": "region", + "role": "feature", + "semantic_type": "categorical", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 4, + "unique_ratio": 0.001804, + "example_values": [ + "northwest", + "southwest", + "southeast", + "northeast" + ] + } + }, + { + "name": "charges", + "role": "target", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 1281, + "unique_ratio": 0.577808, + "example_values": [ + "21677.28345", + "15820.699", + "1639.5631", + "2497.0383", + "2897.3235" + ] + } + } + ] +} \ No newline at end of file diff --git a/timecost/m4/tvae/tvae-m4-20260501_055812/public_gate/public_gate_report.json b/timecost/m4/tvae/tvae-m4-20260501_055812/public_gate/public_gate_report.json new file mode 100644 index 0000000000000000000000000000000000000000..e7a25408e2574124629ea9437356551e4d6f4790 --- /dev/null +++ b/timecost/m4/tvae/tvae-m4-20260501_055812/public_gate/public_gate_report.json @@ -0,0 +1,37 @@ +{ + "dataset_id": "m4", + "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": "charges", + "task_type": "regression", + "input_splits": { + "train": "/data/jialinzhang/SynthesizePipeline-server/DatasetNew/m4/m4-train.csv", + "val": "/data/jialinzhang/SynthesizePipeline-server/DatasetNew/m4/m4-val.csv", + "test": "/data/jialinzhang/SynthesizePipeline-server/DatasetNew/m4/m4-test.csv" + } +} \ No newline at end of file diff --git a/timecost/m4/tvae/tvae-m4-20260501_055812/public_gate/staged_input_manifest.json b/timecost/m4/tvae/tvae-m4-20260501_055812/public_gate/staged_input_manifest.json new file mode 100644 index 0000000000000000000000000000000000000000..147c38bb9ea3492a7689c35828d674faad1e8895 --- /dev/null +++ b/timecost/m4/tvae/tvae-m4-20260501_055812/public_gate/staged_input_manifest.json @@ -0,0 +1,152 @@ +{ + "dataset_id": "m4", + "target_column": "charges", + "task_type": "regression", + "train_csv": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/m4/tvae/tvae-m4-20260501_055812/staged/public/train.csv", + "val_csv": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/m4/tvae/tvae-m4-20260501_055812/staged/public/val.csv", + "test_csv": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/m4/tvae/tvae-m4-20260501_055812/staged/public/test.csv", + "features_json": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/m4/tvae/tvae-m4-20260501_055812/staged/public/staged_features.json", + "public_gate_report": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/m4/tvae/tvae-m4-20260501_055812/public_gate/public_gate_report.json", + "column_schema": [ + { + "name": "age", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 47, + "unique_ratio": 0.0212, + "example_values": [ + "46", + "38", + "19", + "27", + "26" + ] + } + }, + { + "name": "sex", + "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.000902, + "example_values": [ + "female", + "male" + ] + } + }, + { + "name": "bmi", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 538, + "unique_ratio": 0.24267, + "example_values": [ + "23.655", + "19.3", + "30.59", + "32.67", + "29.45" + ] + } + }, + { + "name": "children", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 6, + "unique_ratio": 0.002706, + "example_values": [ + "1", + "0", + "3", + "2", + "5" + ] + } + }, + { + "name": "smoker", + "role": "feature", + "semantic_type": "boolean", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 2, + "unique_ratio": 0.000902, + "example_values": [ + "yes", + "no" + ] + } + }, + { + "name": "region", + "role": "feature", + "semantic_type": "categorical", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 4, + "unique_ratio": 0.001804, + "example_values": [ + "northwest", + "southwest", + "southeast", + "northeast" + ] + } + }, + { + "name": "charges", + "role": "target", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 1281, + "unique_ratio": 0.577808, + "example_values": [ + "21677.28345", + "15820.699", + "1639.5631", + "2497.0383", + "2897.3235" + ] + } + } + ] +} \ No newline at end of file diff --git a/timecost/m4/tvae/tvae-m4-20260501_055812/runtime_result.json b/timecost/m4/tvae/tvae-m4-20260501_055812/runtime_result.json new file mode 100644 index 0000000000000000000000000000000000000000..d5064d887c6d82a45ee515359535ea90e87566d6 --- /dev/null +++ b/timecost/m4/tvae/tvae-m4-20260501_055812/runtime_result.json @@ -0,0 +1,27 @@ +{ + "dataset_id": "m4", + "model": "tvae", + "run_id": "tvae-m4-20260501_055812", + "public_gate_status": "pass", + "adapter_ready_status": "pass", + "train_status": "success", + "generate_status": "success", + "reason_code": null, + "reason_detail": null, + "artifacts": { + "synthetic_csv": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/m4/tvae/tvae-m4-20260501_055812/tvae-m4-2217-20260501_055834.csv", + "model_path": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/m4/tvae/tvae-m4-20260501_055812/models_300epochs/tvae_300epochs.pt" + }, + "timings": { + "train": { + "started_at": "2026-05-01T05:58:12", + "ended_at": "2026-05-01T05:58:34", + "duration_sec": 22.789 + }, + "generate": { + "started_at": "2026-05-01T05:58:34", + "ended_at": "2026-05-01T05:58:39", + "duration_sec": 5.046 + } + } +} \ No newline at end of file diff --git a/timecost/m4/tvae/tvae-m4-20260501_055812/staged/public/staged_features.json b/timecost/m4/tvae/tvae-m4-20260501_055812/staged/public/staged_features.json new file mode 100644 index 0000000000000000000000000000000000000000..d6acd098c35111f423f3ffff2cfd1754bc5dfebc --- /dev/null +++ b/timecost/m4/tvae/tvae-m4-20260501_055812/staged/public/staged_features.json @@ -0,0 +1,37 @@ +[ + { + "feature_name": "age", + "data_type": "continuous", + "is_target": false + }, + { + "feature_name": "sex", + "data_type": "categorical", + "is_target": false + }, + { + "feature_name": "bmi", + "data_type": "continuous", + "is_target": false + }, + { + "feature_name": "children", + "data_type": "continuous", + "is_target": false + }, + { + "feature_name": "smoker", + "data_type": "binary", + "is_target": false + }, + { + "feature_name": "region", + "data_type": "categorical", + "is_target": false + }, + { + "feature_name": "charges", + "data_type": "continuous", + "is_target": true + } +] \ No newline at end of file diff --git a/timecost/m4/tvae/tvae-m4-20260501_055812/staged/public/test.csv b/timecost/m4/tvae/tvae-m4-20260501_055812/staged/public/test.csv new file mode 100644 index 0000000000000000000000000000000000000000..c88a2e7cfcd715bb421cb56eb078033da45c4dc8 --- /dev/null +++ b/timecost/m4/tvae/tvae-m4-20260501_055812/staged/public/test.csv @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:4c541b677fb2d45c5bc79338eeee9fd8c91484b195a0c2c546c2fbabf113b7ea +size 11298 diff --git a/timecost/m4/tvae/tvae-m4-20260501_055812/staged/public/train.csv b/timecost/m4/tvae/tvae-m4-20260501_055812/staged/public/train.csv new file mode 100644 index 0000000000000000000000000000000000000000..5a05019d786529e0617291766c4fbe016ca01bf5 --- /dev/null +++ b/timecost/m4/tvae/tvae-m4-20260501_055812/staged/public/train.csv @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:614ebfac5f41d6f661aff675fa18c0f933a8d9bcc77ea71b7b2360c2f0155837 +size 90069 diff --git a/timecost/m4/tvae/tvae-m4-20260501_055812/staged/public/val.csv b/timecost/m4/tvae/tvae-m4-20260501_055812/staged/public/val.csv new file mode 100644 index 0000000000000000000000000000000000000000..d78fe5ad1537c437ba9ac2629f2aa60a6c17e708 --- /dev/null +++ b/timecost/m4/tvae/tvae-m4-20260501_055812/staged/public/val.csv @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:e55f5edbe7942ff01630de91a9c70dfbc6445eba76c7b970350364546b67c2d7 +size 11218 diff --git a/timecost/m4/tvae/tvae-m4-20260501_055812/staged/tvae/adapter_report.json b/timecost/m4/tvae/tvae-m4-20260501_055812/staged/tvae/adapter_report.json new file mode 100644 index 0000000000000000000000000000000000000000..54901e708e565c37d4e370db466919cfd64f3518 --- /dev/null +++ b/timecost/m4/tvae/tvae-m4-20260501_055812/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-Benchmark-trainonly-v1/m4/tvae/tvae-m4-20260501_055812/staged/tvae/model_input_manifest.json" +} \ No newline at end of file diff --git a/timecost/m4/tvae/tvae-m4-20260501_055812/staged/tvae/adapter_transforms_applied.json b/timecost/m4/tvae/tvae-m4-20260501_055812/staged/tvae/adapter_transforms_applied.json new file mode 100644 index 0000000000000000000000000000000000000000..0637a088a01e8ddab3bf3fa98dbe804cbde1a0dc --- /dev/null +++ b/timecost/m4/tvae/tvae-m4-20260501_055812/staged/tvae/adapter_transforms_applied.json @@ -0,0 +1 @@ +[] \ No newline at end of file diff --git a/timecost/m4/tvae/tvae-m4-20260501_055812/staged/tvae/model_input_manifest.json b/timecost/m4/tvae/tvae-m4-20260501_055812/staged/tvae/model_input_manifest.json new file mode 100644 index 0000000000000000000000000000000000000000..206bf565c629dd02b5d193b7536019b74853e6b2 --- /dev/null +++ b/timecost/m4/tvae/tvae-m4-20260501_055812/staged/tvae/model_input_manifest.json @@ -0,0 +1,154 @@ +{ + "dataset_id": "m4", + "model": "tvae", + "target_column": "charges", + "task_type": "regression", + "column_schema": [ + { + "name": "age", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 47, + "unique_ratio": 0.0212, + "example_values": [ + "46", + "38", + "19", + "27", + "26" + ] + } + }, + { + "name": "sex", + "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.000902, + "example_values": [ + "female", + "male" + ] + } + }, + { + "name": "bmi", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 538, + "unique_ratio": 0.24267, + "example_values": [ + "23.655", + "19.3", + "30.59", + "32.67", + "29.45" + ] + } + }, + { + "name": "children", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 6, + "unique_ratio": 0.002706, + "example_values": [ + "1", + "0", + "3", + "2", + "5" + ] + } + }, + { + "name": "smoker", + "role": "feature", + "semantic_type": "boolean", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 2, + "unique_ratio": 0.000902, + "example_values": [ + "yes", + "no" + ] + } + }, + { + "name": "region", + "role": "feature", + "semantic_type": "categorical", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 4, + "unique_ratio": 0.001804, + "example_values": [ + "northwest", + "southwest", + "southeast", + "northeast" + ] + } + }, + { + "name": "charges", + "role": "target", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 1281, + "unique_ratio": 0.577808, + "example_values": [ + "21677.28345", + "15820.699", + "1639.5631", + "2497.0383", + "2897.3235" + ] + } + } + ], + "public_manifest": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/m4/tvae/tvae-m4-20260501_055812/public_gate/staged_input_manifest.json", + "train_csv": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/m4/tvae/tvae-m4-20260501_055812/staged/public/train.csv", + "val_csv": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/m4/tvae/tvae-m4-20260501_055812/staged/public/val.csv", + "test_csv": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/m4/tvae/tvae-m4-20260501_055812/staged/public/test.csv", + "features_json": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/m4/tvae/tvae-m4-20260501_055812/staged/public/staged_features.json", + "public_gate_report": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/m4/tvae/tvae-m4-20260501_055812/public_gate/public_gate_report.json" +} \ No newline at end of file diff --git a/timecost/m4/tvae/tvae-m4-20260501_055812/tvae-m4-2217-20260501_055834.csv b/timecost/m4/tvae/tvae-m4-20260501_055812/tvae-m4-2217-20260501_055834.csv new file mode 100644 index 0000000000000000000000000000000000000000..4b6d8c9c71a48a66edcac9603890345aa2a286eb --- /dev/null +++ b/timecost/m4/tvae/tvae-m4-20260501_055812/tvae-m4-2217-20260501_055834.csv @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:b9348dc4652c821a0d9d0063497456c91ee369c89f18f6b1a4c8104120077d71 +size 135727 diff --git a/timecost/m4/tvae/tvae-m4-20260501_055812/tvae_metadata.json b/timecost/m4/tvae/tvae-m4-20260501_055812/tvae_metadata.json new file mode 100644 index 0000000000000000000000000000000000000000..d89b1e0b3095638c982d4d3321d21a8bedcd33ae --- /dev/null +++ b/timecost/m4/tvae/tvae-m4-20260501_055812/tvae_metadata.json @@ -0,0 +1,32 @@ +{ + "columns": [ + { + "name": "age", + "type": "continuous" + }, + { + "name": "sex", + "type": "categorical" + }, + { + "name": "bmi", + "type": "continuous" + }, + { + "name": "children", + "type": "continuous" + }, + { + "name": "smoker", + "type": "categorical" + }, + { + "name": "region", + "type": "categorical" + }, + { + "name": "charges", + "type": "continuous" + } + ] +} \ No newline at end of file diff --git a/timecost/m4/tvae/tvae-m4-20260504_172924/_tvae_generate.py b/timecost/m4/tvae/tvae-m4-20260504_172924/_tvae_generate.py new file mode 100644 index 0000000000000000000000000000000000000000..64d07e128ef6dbb294fc5e3083f11bfa36692685 --- /dev/null +++ b/timecost/m4/tvae/tvae-m4-20260504_172924/_tvae_generate.py @@ -0,0 +1,23 @@ +import os, sys +sys.path.insert(0, "/work") +from src.SpecificModels.ctgan_joblib_parallel_cap import apply_parallel_cap_from_env +apply_parallel_cap_from_env() +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 +os.environ.setdefault("LOKY_MAX_CPU_COUNT", "8") +os.environ.setdefault("OPENBLAS_NUM_THREADS", "8") +os.environ.setdefault("MKL_NUM_THREADS", "8") +model = TVAE.load("/work/output-Benchmark-trainonly-v1/m4/tvae/tvae-m4-20260504_172924/models_300epochs/tvae_300epochs.pt") +total = 2217 +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-Benchmark-trainonly-v1/m4/tvae/tvae-m4-20260504_172924/tvae-m4-2217-20260504_172948.csv", index=False) +print(f"[TVAE] Generated {total} rows (chunks={len(parts)}) -> /work/output-Benchmark-trainonly-v1/m4/tvae/tvae-m4-20260504_172924/tvae-m4-2217-20260504_172948.csv") diff --git a/timecost/m4/tvae/tvae-m4-20260504_172924/_tvae_train.py b/timecost/m4/tvae/tvae-m4-20260504_172924/_tvae_train.py new file mode 100644 index 0000000000000000000000000000000000000000..d28215e962c43113cd7268680d82572ec243c015 --- /dev/null +++ b/timecost/m4/tvae/tvae-m4-20260504_172924/_tvae_train.py @@ -0,0 +1,30 @@ +import json, os, sys +sys.path.insert(0, "/work") +from src.SpecificModels.ctgan_joblib_parallel_cap import apply_parallel_cap_from_env +apply_parallel_cap_from_env() +import pandas as pd +from ctgan.data import read_csv +from ctgan.synthesizers.tvae import TVAE + +# Keep transform stage parallelism bounded for stability on shared host. +os.environ.setdefault("LOKY_MAX_CPU_COUNT", "8") +os.environ.setdefault("OPENBLAS_NUM_THREADS", "8") +os.environ.setdefault("MKL_NUM_THREADS", "8") +_nj = (os.environ.get("TVAE_CTGAN_JOBTRANS_N_JOBS") or "").strip() +if _nj: + print("[TVAE] joblib Parallel cap ON, TVAE_CTGAN_JOBTRANS_N_JOBS=" + _nj) +else: + print("[TVAE] joblib Parallel cap OFF (unset TVAE_CTGAN_JOBTRANS_N_JOBS)") +print("[TVAE] LOKY_MAX_CPU_COUNT=" + str(os.environ.get("LOKY_MAX_CPU_COUNT", ""))) + +csv_path = "/work/output-Benchmark-trainonly-v1/m4/tvae/tvae-m4-20260504_172924/staged/public/train.csv" +meta_path = "/work/output-Benchmark-trainonly-v1/m4/tvae/tvae-m4-20260504_172924/tvae_metadata.json" +save_path = "/work/output-Benchmark-trainonly-v1/m4/tvae/tvae-m4-20260504_172924/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/timecost/m4/tvae/tvae-m4-20260504_172924/gen_20260504_172948.log b/timecost/m4/tvae/tvae-m4-20260504_172924/gen_20260504_172948.log new file mode 100644 index 0000000000000000000000000000000000000000..9cb264d80125eb9865bcf1ff211a5f47e5408296 --- /dev/null +++ b/timecost/m4/tvae/tvae-m4-20260504_172924/gen_20260504_172948.log @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:21074009efaaf889eeada81da04fe08875f77e84e1c9ad6863c7e7801d6f0f96 +size 404 diff --git a/timecost/m4/tvae/tvae-m4-20260504_172924/input_snapshot.json b/timecost/m4/tvae/tvae-m4-20260504_172924/input_snapshot.json new file mode 100644 index 0000000000000000000000000000000000000000..60c34c26acabd61c3c87a32ef8cbe89659d8c727 --- /dev/null +++ b/timecost/m4/tvae/tvae-m4-20260504_172924/input_snapshot.json @@ -0,0 +1,36 @@ +{ + "dataset_id": "m4", + "model": "tvae", + "inputs": { + "train_csv": { + "path": "/data/jialinzhang/SynthesizePipeline-server/DatasetNew/m4/m4-train.csv", + "exists": true, + "size": 92191, + "sha256": "396b9d409ca21bf4a4cd329bdf5b7796aa0ae6356fa8d89b8eb669b5880b81f1" + }, + "val_csv": { + "path": "/data/jialinzhang/SynthesizePipeline-server/DatasetNew/m4/m4-val.csv", + "exists": true, + "size": 11482, + "sha256": "ee3c247d02f56e1687d03c381e13125d6a3a2a411ac7f202ba8520a4be9f1784" + }, + "test_csv": { + "path": "/data/jialinzhang/SynthesizePipeline-server/DatasetNew/m4/m4-test.csv", + "exists": true, + "size": 11559, + "sha256": "cadb9941124001b8fa7cb1ebae43b70a9ca56294f4df4d3c2f22c164c41757d4" + }, + "profile_json": { + "path": "/data/jialinzhang/SynthesizePipeline-server/DatasetNew/artifacts/data_core/tabular/m4/m4-dataset_profile.json", + "exists": true, + "size": 3336, + "sha256": "83e2764810e4a0e8cdece3a28dbd9134b7c9df6f2e56953e46d024ad2c4e035f" + }, + "contract_json": { + "path": "/data/jialinzhang/SynthesizePipeline-server/DatasetNew/artifacts/data_core/tabular/m4/m4-dataset_contract_v1.json", + "exists": true, + "size": 3810, + "sha256": "c23641b258629a845b164099bd0132886f8f6d0100e990494e0f92540f8987d9" + } + } +} \ No newline at end of file diff --git a/timecost/m4/tvae/tvae-m4-20260504_172924/models_300epochs/train_20260504_172924.log b/timecost/m4/tvae/tvae-m4-20260504_172924/models_300epochs/train_20260504_172924.log new file mode 100644 index 0000000000000000000000000000000000000000..6c02affe89b895eda841ba107e0c4e50dd4dedbe --- /dev/null +++ b/timecost/m4/tvae/tvae-m4-20260504_172924/models_300epochs/train_20260504_172924.log @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:1d9cd060818ff6f5d72a3e1faf866cdd5ff16bf2b6638e45612e08b00d03d6ad +size 531 diff --git a/timecost/m4/tvae/tvae-m4-20260504_172924/models_300epochs/tvae_300epochs.pt b/timecost/m4/tvae/tvae-m4-20260504_172924/models_300epochs/tvae_300epochs.pt new file mode 100644 index 0000000000000000000000000000000000000000..478a3a8f355a5b127ef8fcf413a992ab9007af33 --- /dev/null +++ b/timecost/m4/tvae/tvae-m4-20260504_172924/models_300epochs/tvae_300epochs.pt @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:5aac3416f42e1ad8ca96be12c0e3109c90b138a711112aa88c40b0929a04f049 +size 399084 diff --git a/timecost/m4/tvae/tvae-m4-20260504_172924/public_gate/normalized_schema_snapshot.json b/timecost/m4/tvae/tvae-m4-20260504_172924/public_gate/normalized_schema_snapshot.json new file mode 100644 index 0000000000000000000000000000000000000000..31ed9818686b11907df75e872e4ffbe010330880 --- /dev/null +++ b/timecost/m4/tvae/tvae-m4-20260504_172924/public_gate/normalized_schema_snapshot.json @@ -0,0 +1,147 @@ +{ + "dataset_id": "m4", + "target_column": "charges", + "task_type": "regression", + "columns": [ + { + "name": "age", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 47, + "unique_ratio": 0.0212, + "example_values": [ + "46", + "38", + "19", + "27", + "26" + ] + } + }, + { + "name": "sex", + "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.000902, + "example_values": [ + "female", + "male" + ] + } + }, + { + "name": "bmi", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 538, + "unique_ratio": 0.24267, + "example_values": [ + "23.655", + "19.3", + "30.59", + "32.67", + "29.45" + ] + } + }, + { + "name": "children", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 6, + "unique_ratio": 0.002706, + "example_values": [ + "1", + "0", + "3", + "2", + "5" + ] + } + }, + { + "name": "smoker", + "role": "feature", + "semantic_type": "boolean", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 2, + "unique_ratio": 0.000902, + "example_values": [ + "yes", + "no" + ] + } + }, + { + "name": "region", + "role": "feature", + "semantic_type": "categorical", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 4, + "unique_ratio": 0.001804, + "example_values": [ + "northwest", + "southwest", + "southeast", + "northeast" + ] + } + }, + { + "name": "charges", + "role": "target", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 1281, + "unique_ratio": 0.577808, + "example_values": [ + "21677.28345", + "15820.699", + "1639.5631", + "2497.0383", + "2897.3235" + ] + } + } + ] +} \ No newline at end of file diff --git a/timecost/m4/tvae/tvae-m4-20260504_172924/public_gate/public_gate_report.json b/timecost/m4/tvae/tvae-m4-20260504_172924/public_gate/public_gate_report.json new file mode 100644 index 0000000000000000000000000000000000000000..e7a25408e2574124629ea9437356551e4d6f4790 --- /dev/null +++ b/timecost/m4/tvae/tvae-m4-20260504_172924/public_gate/public_gate_report.json @@ -0,0 +1,37 @@ +{ + "dataset_id": "m4", + "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": "charges", + "task_type": "regression", + "input_splits": { + "train": "/data/jialinzhang/SynthesizePipeline-server/DatasetNew/m4/m4-train.csv", + "val": "/data/jialinzhang/SynthesizePipeline-server/DatasetNew/m4/m4-val.csv", + "test": "/data/jialinzhang/SynthesizePipeline-server/DatasetNew/m4/m4-test.csv" + } +} \ No newline at end of file diff --git a/timecost/m4/tvae/tvae-m4-20260504_172924/public_gate/staged_input_manifest.json b/timecost/m4/tvae/tvae-m4-20260504_172924/public_gate/staged_input_manifest.json new file mode 100644 index 0000000000000000000000000000000000000000..c0ce0d6de2936b789a292c39df659d63d078edfc --- /dev/null +++ b/timecost/m4/tvae/tvae-m4-20260504_172924/public_gate/staged_input_manifest.json @@ -0,0 +1,152 @@ +{ + "dataset_id": "m4", + "target_column": "charges", + "task_type": "regression", + "train_csv": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/m4/tvae/tvae-m4-20260504_172924/staged/public/train.csv", + "val_csv": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/m4/tvae/tvae-m4-20260504_172924/staged/public/val.csv", + "test_csv": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/m4/tvae/tvae-m4-20260504_172924/staged/public/test.csv", + "features_json": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/m4/tvae/tvae-m4-20260504_172924/staged/public/staged_features.json", + "public_gate_report": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/m4/tvae/tvae-m4-20260504_172924/public_gate/public_gate_report.json", + "column_schema": [ + { + "name": "age", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 47, + "unique_ratio": 0.0212, + "example_values": [ + "46", + "38", + "19", + "27", + "26" + ] + } + }, + { + "name": "sex", + "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.000902, + "example_values": [ + "female", + "male" + ] + } + }, + { + "name": "bmi", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 538, + "unique_ratio": 0.24267, + "example_values": [ + "23.655", + "19.3", + "30.59", + "32.67", + "29.45" + ] + } + }, + { + "name": "children", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 6, + "unique_ratio": 0.002706, + "example_values": [ + "1", + "0", + "3", + "2", + "5" + ] + } + }, + { + "name": "smoker", + "role": "feature", + "semantic_type": "boolean", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 2, + "unique_ratio": 0.000902, + "example_values": [ + "yes", + "no" + ] + } + }, + { + "name": "region", + "role": "feature", + "semantic_type": "categorical", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 4, + "unique_ratio": 0.001804, + "example_values": [ + "northwest", + "southwest", + "southeast", + "northeast" + ] + } + }, + { + "name": "charges", + "role": "target", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 1281, + "unique_ratio": 0.577808, + "example_values": [ + "21677.28345", + "15820.699", + "1639.5631", + "2497.0383", + "2897.3235" + ] + } + } + ] +} \ No newline at end of file diff --git a/timecost/m4/tvae/tvae-m4-20260504_172924/run_config.json b/timecost/m4/tvae/tvae-m4-20260504_172924/run_config.json new file mode 100644 index 0000000000000000000000000000000000000000..df2a1021195b5f94824e84627e5fb1d294f0bc16 --- /dev/null +++ b/timecost/m4/tvae/tvae-m4-20260504_172924/run_config.json @@ -0,0 +1,40 @@ +{ + "schema_version": 1, + "recorded_at": "2026-05-04T17:29:24", + "dataset_id": "m4", + "model": "tvae", + "work_dir": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/m4/tvae/tvae-m4-20260504_172924", + "dataset_source_requested": "new", + "dataset_source_resolved": "new", + "cli_args": { + "model": "tvae", + "dataset": "m4", + "dataset_source": "new", + "train": true, + "generate": true, + "num_rows": 0, + "epochs": null, + "output_dir": null, + "model_dir": null, + "work_dir": null, + "resume": false, + "no_stats": false + }, + "resolved": { + "num_rows": 2217, + "model_path": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/m4/tvae/tvae-m4-20260504_172924/models_300epochs/tvae_300epochs.pt", + "output_csv": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/m4/tvae/tvae-m4-20260504_172924/tvae-m4-2217-20260504_172948.csv" + }, + "input_artifacts": { + "public_gate_report": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/m4/tvae/tvae-m4-20260504_172924/public_gate/public_gate_report.json", + "public_manifest": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/m4/tvae/tvae-m4-20260504_172924/public_gate/staged_input_manifest.json", + "model_manifest": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/m4/tvae/tvae-m4-20260504_172924/staged/tvae/model_input_manifest.json", + "train_csv": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/m4/tvae/tvae-m4-20260504_172924/staged/public/train.csv", + "features_json": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/m4/tvae/tvae-m4-20260504_172924/staged/public/staged_features.json", + "target_column": "charges", + "task_type": "regression" + }, + "env_overrides": { + "BENCHMARK_TVAE_GPUS": "device=3" + } +} \ No newline at end of file diff --git a/timecost/m4/tvae/tvae-m4-20260504_172924/runtime_result.json b/timecost/m4/tvae/tvae-m4-20260504_172924/runtime_result.json new file mode 100644 index 0000000000000000000000000000000000000000..069b138b0a41ccfe020e455a197d44d0e8e3b66c --- /dev/null +++ b/timecost/m4/tvae/tvae-m4-20260504_172924/runtime_result.json @@ -0,0 +1,27 @@ +{ + "dataset_id": "m4", + "model": "tvae", + "run_id": "tvae-m4-20260504_172924", + "public_gate_status": "pass", + "adapter_ready_status": "pass", + "train_status": "success", + "generate_status": "success", + "reason_code": null, + "reason_detail": null, + "artifacts": { + "synthetic_csv": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/m4/tvae/tvae-m4-20260504_172924/tvae-m4-2217-20260504_172948.csv", + "model_path": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/m4/tvae/tvae-m4-20260504_172924/models_300epochs/tvae_300epochs.pt" + }, + "timings": { + "train": { + "started_at": "2026-05-04T17:29:24", + "ended_at": "2026-05-04T17:29:48", + "duration_sec": 23.27 + }, + "generate": { + "started_at": "2026-05-04T17:29:48", + "ended_at": "2026-05-04T17:29:53", + "duration_sec": 5.352 + } + } +} \ No newline at end of file diff --git a/timecost/m4/tvae/tvae-m4-20260504_172924/staged/public/staged_features.json b/timecost/m4/tvae/tvae-m4-20260504_172924/staged/public/staged_features.json new file mode 100644 index 0000000000000000000000000000000000000000..d6acd098c35111f423f3ffff2cfd1754bc5dfebc --- /dev/null +++ b/timecost/m4/tvae/tvae-m4-20260504_172924/staged/public/staged_features.json @@ -0,0 +1,37 @@ +[ + { + "feature_name": "age", + "data_type": "continuous", + "is_target": false + }, + { + "feature_name": "sex", + "data_type": "categorical", + "is_target": false + }, + { + "feature_name": "bmi", + "data_type": "continuous", + "is_target": false + }, + { + "feature_name": "children", + "data_type": "continuous", + "is_target": false + }, + { + "feature_name": "smoker", + "data_type": "binary", + "is_target": false + }, + { + "feature_name": "region", + "data_type": "categorical", + "is_target": false + }, + { + "feature_name": "charges", + "data_type": "continuous", + "is_target": true + } +] \ No newline at end of file diff --git a/timecost/m4/tvae/tvae-m4-20260504_172924/staged/public/test.csv b/timecost/m4/tvae/tvae-m4-20260504_172924/staged/public/test.csv new file mode 100644 index 0000000000000000000000000000000000000000..c88a2e7cfcd715bb421cb56eb078033da45c4dc8 --- /dev/null +++ b/timecost/m4/tvae/tvae-m4-20260504_172924/staged/public/test.csv @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:4c541b677fb2d45c5bc79338eeee9fd8c91484b195a0c2c546c2fbabf113b7ea +size 11298 diff --git a/timecost/m4/tvae/tvae-m4-20260504_172924/staged/public/train.csv b/timecost/m4/tvae/tvae-m4-20260504_172924/staged/public/train.csv new file mode 100644 index 0000000000000000000000000000000000000000..5a05019d786529e0617291766c4fbe016ca01bf5 --- /dev/null +++ b/timecost/m4/tvae/tvae-m4-20260504_172924/staged/public/train.csv @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:614ebfac5f41d6f661aff675fa18c0f933a8d9bcc77ea71b7b2360c2f0155837 +size 90069 diff --git a/timecost/m4/tvae/tvae-m4-20260504_172924/staged/public/val.csv b/timecost/m4/tvae/tvae-m4-20260504_172924/staged/public/val.csv new file mode 100644 index 0000000000000000000000000000000000000000..d78fe5ad1537c437ba9ac2629f2aa60a6c17e708 --- /dev/null +++ b/timecost/m4/tvae/tvae-m4-20260504_172924/staged/public/val.csv @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:e55f5edbe7942ff01630de91a9c70dfbc6445eba76c7b970350364546b67c2d7 +size 11218 diff --git a/timecost/m4/tvae/tvae-m4-20260504_172924/staged/tvae/adapter_report.json b/timecost/m4/tvae/tvae-m4-20260504_172924/staged/tvae/adapter_report.json new file mode 100644 index 0000000000000000000000000000000000000000..d7463f2b76fda0bb44764663ad8e881e19398e60 --- /dev/null +++ b/timecost/m4/tvae/tvae-m4-20260504_172924/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-Benchmark-trainonly-v1/m4/tvae/tvae-m4-20260504_172924/staged/tvae/model_input_manifest.json" +} \ No newline at end of file diff --git a/timecost/m4/tvae/tvae-m4-20260504_172924/staged/tvae/adapter_transforms_applied.json b/timecost/m4/tvae/tvae-m4-20260504_172924/staged/tvae/adapter_transforms_applied.json new file mode 100644 index 0000000000000000000000000000000000000000..0637a088a01e8ddab3bf3fa98dbe804cbde1a0dc --- /dev/null +++ b/timecost/m4/tvae/tvae-m4-20260504_172924/staged/tvae/adapter_transforms_applied.json @@ -0,0 +1 @@ +[] \ No newline at end of file diff --git a/timecost/m4/tvae/tvae-m4-20260504_172924/staged/tvae/model_input_manifest.json b/timecost/m4/tvae/tvae-m4-20260504_172924/staged/tvae/model_input_manifest.json new file mode 100644 index 0000000000000000000000000000000000000000..88352edb6469f4386dd47bc9b6c6413f5efba165 --- /dev/null +++ b/timecost/m4/tvae/tvae-m4-20260504_172924/staged/tvae/model_input_manifest.json @@ -0,0 +1,154 @@ +{ + "dataset_id": "m4", + "model": "tvae", + "target_column": "charges", + "task_type": "regression", + "column_schema": [ + { + "name": "age", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 47, + "unique_ratio": 0.0212, + "example_values": [ + "46", + "38", + "19", + "27", + "26" + ] + } + }, + { + "name": "sex", + "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.000902, + "example_values": [ + "female", + "male" + ] + } + }, + { + "name": "bmi", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 538, + "unique_ratio": 0.24267, + "example_values": [ + "23.655", + "19.3", + "30.59", + "32.67", + "29.45" + ] + } + }, + { + "name": "children", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 6, + "unique_ratio": 0.002706, + "example_values": [ + "1", + "0", + "3", + "2", + "5" + ] + } + }, + { + "name": "smoker", + "role": "feature", + "semantic_type": "boolean", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 2, + "unique_ratio": 0.000902, + "example_values": [ + "yes", + "no" + ] + } + }, + { + "name": "region", + "role": "feature", + "semantic_type": "categorical", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 4, + "unique_ratio": 0.001804, + "example_values": [ + "northwest", + "southwest", + "southeast", + "northeast" + ] + } + }, + { + "name": "charges", + "role": "target", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 1281, + "unique_ratio": 0.577808, + "example_values": [ + "21677.28345", + "15820.699", + "1639.5631", + "2497.0383", + "2897.3235" + ] + } + } + ], + "public_manifest": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/m4/tvae/tvae-m4-20260504_172924/public_gate/staged_input_manifest.json", + "train_csv": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/m4/tvae/tvae-m4-20260504_172924/staged/public/train.csv", + "val_csv": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/m4/tvae/tvae-m4-20260504_172924/staged/public/val.csv", + "test_csv": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/m4/tvae/tvae-m4-20260504_172924/staged/public/test.csv", + "features_json": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/m4/tvae/tvae-m4-20260504_172924/staged/public/staged_features.json", + "public_gate_report": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/m4/tvae/tvae-m4-20260504_172924/public_gate/public_gate_report.json" +} \ No newline at end of file diff --git a/timecost/m4/tvae/tvae-m4-20260504_172924/tvae-m4-2217-20260504_172948.csv b/timecost/m4/tvae/tvae-m4-20260504_172924/tvae-m4-2217-20260504_172948.csv new file mode 100644 index 0000000000000000000000000000000000000000..a3d27569151d13175f6106f0b9ec16a29ecd454b --- /dev/null +++ b/timecost/m4/tvae/tvae-m4-20260504_172924/tvae-m4-2217-20260504_172948.csv @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:cc71fa06a7efd6b7984554097fbac50bc8364689311279a95ec83b921ea69076 +size 134967 diff --git a/timecost/m4/tvae/tvae-m4-20260504_172924/tvae_metadata.json b/timecost/m4/tvae/tvae-m4-20260504_172924/tvae_metadata.json new file mode 100644 index 0000000000000000000000000000000000000000..d89b1e0b3095638c982d4d3321d21a8bedcd33ae --- /dev/null +++ b/timecost/m4/tvae/tvae-m4-20260504_172924/tvae_metadata.json @@ -0,0 +1,32 @@ +{ + "columns": [ + { + "name": "age", + "type": "continuous" + }, + { + "name": "sex", + "type": "categorical" + }, + { + "name": "bmi", + "type": "continuous" + }, + { + "name": "children", + "type": "continuous" + }, + { + "name": "smoker", + "type": "categorical" + }, + { + "name": "region", + "type": "categorical" + }, + { + "name": "charges", + "type": "continuous" + } + ] +} \ No newline at end of file diff --git a/timecost/m4/tvae/tvae-m4-20260504_174302/_tvae_generate.py b/timecost/m4/tvae/tvae-m4-20260504_174302/_tvae_generate.py new file mode 100644 index 0000000000000000000000000000000000000000..81b1295a580f8a6f079ccfcc3c40e66fb290a4a7 --- /dev/null +++ b/timecost/m4/tvae/tvae-m4-20260504_174302/_tvae_generate.py @@ -0,0 +1,23 @@ +import os, sys +sys.path.insert(0, "/work") +from src.SpecificModels.ctgan_joblib_parallel_cap import apply_parallel_cap_from_env +apply_parallel_cap_from_env() +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 +os.environ.setdefault("LOKY_MAX_CPU_COUNT", "8") +os.environ.setdefault("OPENBLAS_NUM_THREADS", "8") +os.environ.setdefault("MKL_NUM_THREADS", "8") +model = TVAE.load("/work/output-Benchmark-trainonly-v1/m4/tvae/tvae-m4-20260504_174302/models_300epochs/tvae_300epochs.pt") +total = 2217 +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-Benchmark-trainonly-v1/m4/tvae/tvae-m4-20260504_174302/tvae-m4-2217-20260504_174327.csv", index=False) +print(f"[TVAE] Generated {total} rows (chunks={len(parts)}) -> /work/output-Benchmark-trainonly-v1/m4/tvae/tvae-m4-20260504_174302/tvae-m4-2217-20260504_174327.csv") diff --git a/timecost/m4/tvae/tvae-m4-20260504_174302/_tvae_train.py b/timecost/m4/tvae/tvae-m4-20260504_174302/_tvae_train.py new file mode 100644 index 0000000000000000000000000000000000000000..1aa090f428d3524915512adaba16283538755528 --- /dev/null +++ b/timecost/m4/tvae/tvae-m4-20260504_174302/_tvae_train.py @@ -0,0 +1,39 @@ +import json, os, sys +sys.path.insert(0, "/work") +from src.SpecificModels.ctgan_joblib_parallel_cap import apply_parallel_cap_from_env +apply_parallel_cap_from_env() +import pandas as pd +from ctgan.data import read_csv +from ctgan.synthesizers.tvae import TVAE + +# Keep transform stage parallelism bounded for stability on shared host. +os.environ.setdefault("LOKY_MAX_CPU_COUNT", "8") +os.environ.setdefault("OPENBLAS_NUM_THREADS", "8") +os.environ.setdefault("MKL_NUM_THREADS", "8") +_nj = (os.environ.get("TVAE_CTGAN_JOBTRANS_N_JOBS") or "").strip() +if _nj: + print("[TVAE] joblib Parallel cap ON, TVAE_CTGAN_JOBTRANS_N_JOBS=" + _nj) +else: + print("[TVAE] joblib Parallel cap OFF (unset TVAE_CTGAN_JOBTRANS_N_JOBS)") +print("[TVAE] LOKY_MAX_CPU_COUNT=" + str(os.environ.get("LOKY_MAX_CPU_COUNT", ""))) + +csv_path = "/work/output-Benchmark-trainonly-v1/m4/tvae/tvae-m4-20260504_174302/staged/public/train.csv" +meta_path = "/work/output-Benchmark-trainonly-v1/m4/tvae/tvae-m4-20260504_174302/tvae_metadata.json" +save_path = "/work/output-Benchmark-trainonly-v1/m4/tvae/tvae-m4-20260504_174302/models_300epochs/tvae_300epochs.pt" +epochs = int(os.environ.get("TVAE_EPOCHS", 300)) +batch_size = int(os.environ.get("TVAE_BATCH_SIZE", "500")) +embedding_dim = int(os.environ.get("TVAE_EMBEDDING_DIM", "128")) +def _parse_dims(name, default): + raw = (os.environ.get(name) or "").strip() + if not raw: + return default + return tuple(int(x.strip()) for x in raw.split(",") if x.strip()) +compress_dims = _parse_dims("TVAE_COMPRESS_DIMS", (128, 128)) +decompress_dims = _parse_dims("TVAE_DECOMPRESS_DIMS", (128, 128)) + +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}, batch_size={batch_size}, embedding_dim={embedding_dim}, compress_dims={compress_dims}, decompress_dims={decompress_dims}") +model = TVAE(epochs=epochs, batch_size=batch_size, embedding_dim=embedding_dim, compress_dims=compress_dims, decompress_dims=decompress_dims) +model.fit(data, discrete_columns) +model.save(save_path) +print(f"[TVAE] Model saved -> {save_path}") diff --git a/timecost/m4/tvae/tvae-m4-20260504_174302/gen_20260504_174327.log b/timecost/m4/tvae/tvae-m4-20260504_174302/gen_20260504_174327.log new file mode 100644 index 0000000000000000000000000000000000000000..60c093f4fc68d51d4270c47f02ced7614c438a31 --- /dev/null +++ b/timecost/m4/tvae/tvae-m4-20260504_174302/gen_20260504_174327.log @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:af461c511bf86e5d1de31bd40d8796e533698a811681c73ac90e6480905b46d5 +size 404 diff --git a/timecost/m4/tvae/tvae-m4-20260504_174302/input_snapshot.json b/timecost/m4/tvae/tvae-m4-20260504_174302/input_snapshot.json new file mode 100644 index 0000000000000000000000000000000000000000..60c34c26acabd61c3c87a32ef8cbe89659d8c727 --- /dev/null +++ b/timecost/m4/tvae/tvae-m4-20260504_174302/input_snapshot.json @@ -0,0 +1,36 @@ +{ + "dataset_id": "m4", + "model": "tvae", + "inputs": { + "train_csv": { + "path": "/data/jialinzhang/SynthesizePipeline-server/DatasetNew/m4/m4-train.csv", + "exists": true, + "size": 92191, + "sha256": "396b9d409ca21bf4a4cd329bdf5b7796aa0ae6356fa8d89b8eb669b5880b81f1" + }, + "val_csv": { + "path": "/data/jialinzhang/SynthesizePipeline-server/DatasetNew/m4/m4-val.csv", + "exists": true, + "size": 11482, + "sha256": "ee3c247d02f56e1687d03c381e13125d6a3a2a411ac7f202ba8520a4be9f1784" + }, + "test_csv": { + "path": "/data/jialinzhang/SynthesizePipeline-server/DatasetNew/m4/m4-test.csv", + "exists": true, + "size": 11559, + "sha256": "cadb9941124001b8fa7cb1ebae43b70a9ca56294f4df4d3c2f22c164c41757d4" + }, + "profile_json": { + "path": "/data/jialinzhang/SynthesizePipeline-server/DatasetNew/artifacts/data_core/tabular/m4/m4-dataset_profile.json", + "exists": true, + "size": 3336, + "sha256": "83e2764810e4a0e8cdece3a28dbd9134b7c9df6f2e56953e46d024ad2c4e035f" + }, + "contract_json": { + "path": "/data/jialinzhang/SynthesizePipeline-server/DatasetNew/artifacts/data_core/tabular/m4/m4-dataset_contract_v1.json", + "exists": true, + "size": 3810, + "sha256": "c23641b258629a845b164099bd0132886f8f6d0100e990494e0f92540f8987d9" + } + } +} \ No newline at end of file diff --git a/timecost/m4/tvae/tvae-m4-20260504_174302/models_300epochs/train_20260504_174302.log b/timecost/m4/tvae/tvae-m4-20260504_174302/models_300epochs/train_20260504_174302.log new file mode 100644 index 0000000000000000000000000000000000000000..07fcade7ce7aa7bc4269426a8a925a7ef169b3ce --- /dev/null +++ b/timecost/m4/tvae/tvae-m4-20260504_174302/models_300epochs/train_20260504_174302.log @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:683a06ca92238c36301c9b1f7f7deb14006752d9a9b57b1e9313fb9933a379ef +size 620 diff --git a/timecost/m4/tvae/tvae-m4-20260504_174302/models_300epochs/tvae_300epochs.pt b/timecost/m4/tvae/tvae-m4-20260504_174302/models_300epochs/tvae_300epochs.pt new file mode 100644 index 0000000000000000000000000000000000000000..16b24bb489870d2ce6bead2362af3bf11f079ff6 --- /dev/null +++ b/timecost/m4/tvae/tvae-m4-20260504_174302/models_300epochs/tvae_300epochs.pt @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:51665a4e34a979ffcc118e07a61e66b7ff84eda7587c6ebd1fe903b01015b6ab +size 399148 diff --git a/timecost/m4/tvae/tvae-m4-20260504_174302/public_gate/normalized_schema_snapshot.json b/timecost/m4/tvae/tvae-m4-20260504_174302/public_gate/normalized_schema_snapshot.json new file mode 100644 index 0000000000000000000000000000000000000000..31ed9818686b11907df75e872e4ffbe010330880 --- /dev/null +++ b/timecost/m4/tvae/tvae-m4-20260504_174302/public_gate/normalized_schema_snapshot.json @@ -0,0 +1,147 @@ +{ + "dataset_id": "m4", + "target_column": "charges", + "task_type": "regression", + "columns": [ + { + "name": "age", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 47, + "unique_ratio": 0.0212, + "example_values": [ + "46", + "38", + "19", + "27", + "26" + ] + } + }, + { + "name": "sex", + "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.000902, + "example_values": [ + "female", + "male" + ] + } + }, + { + "name": "bmi", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 538, + "unique_ratio": 0.24267, + "example_values": [ + "23.655", + "19.3", + "30.59", + "32.67", + "29.45" + ] + } + }, + { + "name": "children", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 6, + "unique_ratio": 0.002706, + "example_values": [ + "1", + "0", + "3", + "2", + "5" + ] + } + }, + { + "name": "smoker", + "role": "feature", + "semantic_type": "boolean", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 2, + "unique_ratio": 0.000902, + "example_values": [ + "yes", + "no" + ] + } + }, + { + "name": "region", + "role": "feature", + "semantic_type": "categorical", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 4, + "unique_ratio": 0.001804, + "example_values": [ + "northwest", + "southwest", + "southeast", + "northeast" + ] + } + }, + { + "name": "charges", + "role": "target", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 1281, + "unique_ratio": 0.577808, + "example_values": [ + "21677.28345", + "15820.699", + "1639.5631", + "2497.0383", + "2897.3235" + ] + } + } + ] +} \ No newline at end of file diff --git a/timecost/m4/tvae/tvae-m4-20260504_174302/public_gate/public_gate_report.json b/timecost/m4/tvae/tvae-m4-20260504_174302/public_gate/public_gate_report.json new file mode 100644 index 0000000000000000000000000000000000000000..e7a25408e2574124629ea9437356551e4d6f4790 --- /dev/null +++ b/timecost/m4/tvae/tvae-m4-20260504_174302/public_gate/public_gate_report.json @@ -0,0 +1,37 @@ +{ + "dataset_id": "m4", + "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": "charges", + "task_type": "regression", + "input_splits": { + "train": "/data/jialinzhang/SynthesizePipeline-server/DatasetNew/m4/m4-train.csv", + "val": "/data/jialinzhang/SynthesizePipeline-server/DatasetNew/m4/m4-val.csv", + "test": "/data/jialinzhang/SynthesizePipeline-server/DatasetNew/m4/m4-test.csv" + } +} \ No newline at end of file diff --git a/timecost/m4/tvae/tvae-m4-20260504_174302/public_gate/staged_input_manifest.json b/timecost/m4/tvae/tvae-m4-20260504_174302/public_gate/staged_input_manifest.json new file mode 100644 index 0000000000000000000000000000000000000000..66a493d45188588761c51eab52795cfad070bf87 --- /dev/null +++ b/timecost/m4/tvae/tvae-m4-20260504_174302/public_gate/staged_input_manifest.json @@ -0,0 +1,152 @@ +{ + "dataset_id": "m4", + "target_column": "charges", + "task_type": "regression", + "train_csv": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/m4/tvae/tvae-m4-20260504_174302/staged/public/train.csv", + "val_csv": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/m4/tvae/tvae-m4-20260504_174302/staged/public/val.csv", + "test_csv": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/m4/tvae/tvae-m4-20260504_174302/staged/public/test.csv", + "features_json": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/m4/tvae/tvae-m4-20260504_174302/staged/public/staged_features.json", + "public_gate_report": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/m4/tvae/tvae-m4-20260504_174302/public_gate/public_gate_report.json", + "column_schema": [ + { + "name": "age", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 47, + "unique_ratio": 0.0212, + "example_values": [ + "46", + "38", + "19", + "27", + "26" + ] + } + }, + { + "name": "sex", + "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.000902, + "example_values": [ + "female", + "male" + ] + } + }, + { + "name": "bmi", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 538, + "unique_ratio": 0.24267, + "example_values": [ + "23.655", + "19.3", + "30.59", + "32.67", + "29.45" + ] + } + }, + { + "name": "children", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 6, + "unique_ratio": 0.002706, + "example_values": [ + "1", + "0", + "3", + "2", + "5" + ] + } + }, + { + "name": "smoker", + "role": "feature", + "semantic_type": "boolean", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 2, + "unique_ratio": 0.000902, + "example_values": [ + "yes", + "no" + ] + } + }, + { + "name": "region", + "role": "feature", + "semantic_type": "categorical", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 4, + "unique_ratio": 0.001804, + "example_values": [ + "northwest", + "southwest", + "southeast", + "northeast" + ] + } + }, + { + "name": "charges", + "role": "target", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 1281, + "unique_ratio": 0.577808, + "example_values": [ + "21677.28345", + "15820.699", + "1639.5631", + "2497.0383", + "2897.3235" + ] + } + } + ] +} \ No newline at end of file diff --git a/timecost/m4/tvae/tvae-m4-20260504_174302/run_config.json b/timecost/m4/tvae/tvae-m4-20260504_174302/run_config.json new file mode 100644 index 0000000000000000000000000000000000000000..435f7cd9c975afc4a9b23a62dc58674a4b1f98c1 --- /dev/null +++ b/timecost/m4/tvae/tvae-m4-20260504_174302/run_config.json @@ -0,0 +1,45 @@ +{ + "schema_version": 1, + "recorded_at": "2026-05-04T17:43:02", + "dataset_id": "m4", + "model": "tvae", + "work_dir": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/m4/tvae/tvae-m4-20260504_174302", + "dataset_source_requested": "new", + "dataset_source_resolved": "new", + "cli_args": { + "model": "tvae", + "dataset": "m4", + "dataset_source": "new", + "train": true, + "generate": true, + "num_rows": 0, + "epochs": null, + "output_dir": null, + "model_dir": null, + "work_dir": null, + "resume": false, + "no_stats": false + }, + "resolved": { + "num_rows": 2217, + "model_path": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/m4/tvae/tvae-m4-20260504_174302/models_300epochs/tvae_300epochs.pt", + "output_csv": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/m4/tvae/tvae-m4-20260504_174302/tvae-m4-2217-20260504_174327.csv" + }, + "input_artifacts": { + "public_gate_report": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/m4/tvae/tvae-m4-20260504_174302/public_gate/public_gate_report.json", + "public_manifest": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/m4/tvae/tvae-m4-20260504_174302/public_gate/staged_input_manifest.json", + "model_manifest": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/m4/tvae/tvae-m4-20260504_174302/staged/tvae/model_input_manifest.json", + "train_csv": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/m4/tvae/tvae-m4-20260504_174302/staged/public/train.csv", + "features_json": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/m4/tvae/tvae-m4-20260504_174302/staged/public/staged_features.json", + "target_column": "charges", + "task_type": "regression" + }, + "env_overrides": { + "BENCHMARK_TVAE_GPUS": "device=3", + "TVAE_BATCH_SIZE": "256", + "TVAE_COMPRESS_DIMS": "64,64", + "TVAE_DECOMPRESS_DIMS": "64,64", + "TVAE_EMBEDDING_DIM": "32", + "TVAE_EPOCHS": "100" + } +} \ No newline at end of file diff --git a/timecost/m4/tvae/tvae-m4-20260504_174302/runtime_result.json b/timecost/m4/tvae/tvae-m4-20260504_174302/runtime_result.json new file mode 100644 index 0000000000000000000000000000000000000000..cb553f8c827cd5d12fe1aa3ab0e87b8651244569 --- /dev/null +++ b/timecost/m4/tvae/tvae-m4-20260504_174302/runtime_result.json @@ -0,0 +1,27 @@ +{ + "dataset_id": "m4", + "model": "tvae", + "run_id": "tvae-m4-20260504_174302", + "public_gate_status": "pass", + "adapter_ready_status": "pass", + "train_status": "success", + "generate_status": "success", + "reason_code": null, + "reason_detail": null, + "artifacts": { + "synthetic_csv": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/m4/tvae/tvae-m4-20260504_174302/tvae-m4-2217-20260504_174327.csv", + "model_path": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/m4/tvae/tvae-m4-20260504_174302/models_300epochs/tvae_300epochs.pt" + }, + "timings": { + "train": { + "started_at": "2026-05-04T17:43:02", + "ended_at": "2026-05-04T17:43:27", + "duration_sec": 24.249 + }, + "generate": { + "started_at": "2026-05-04T17:43:27", + "ended_at": "2026-05-04T17:43:32", + "duration_sec": 5.407 + } + } +} \ No newline at end of file diff --git a/timecost/m4/tvae/tvae-m4-20260504_174302/staged/public/staged_features.json b/timecost/m4/tvae/tvae-m4-20260504_174302/staged/public/staged_features.json new file mode 100644 index 0000000000000000000000000000000000000000..d6acd098c35111f423f3ffff2cfd1754bc5dfebc --- /dev/null +++ b/timecost/m4/tvae/tvae-m4-20260504_174302/staged/public/staged_features.json @@ -0,0 +1,37 @@ +[ + { + "feature_name": "age", + "data_type": "continuous", + "is_target": false + }, + { + "feature_name": "sex", + "data_type": "categorical", + "is_target": false + }, + { + "feature_name": "bmi", + "data_type": "continuous", + "is_target": false + }, + { + "feature_name": "children", + "data_type": "continuous", + "is_target": false + }, + { + "feature_name": "smoker", + "data_type": "binary", + "is_target": false + }, + { + "feature_name": "region", + "data_type": "categorical", + "is_target": false + }, + { + "feature_name": "charges", + "data_type": "continuous", + "is_target": true + } +] \ No newline at end of file diff --git a/timecost/m4/tvae/tvae-m4-20260504_174302/staged/public/test.csv b/timecost/m4/tvae/tvae-m4-20260504_174302/staged/public/test.csv new file mode 100644 index 0000000000000000000000000000000000000000..c88a2e7cfcd715bb421cb56eb078033da45c4dc8 --- /dev/null +++ b/timecost/m4/tvae/tvae-m4-20260504_174302/staged/public/test.csv @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:4c541b677fb2d45c5bc79338eeee9fd8c91484b195a0c2c546c2fbabf113b7ea +size 11298 diff --git a/timecost/m4/tvae/tvae-m4-20260504_174302/staged/public/train.csv b/timecost/m4/tvae/tvae-m4-20260504_174302/staged/public/train.csv new file mode 100644 index 0000000000000000000000000000000000000000..5a05019d786529e0617291766c4fbe016ca01bf5 --- /dev/null +++ b/timecost/m4/tvae/tvae-m4-20260504_174302/staged/public/train.csv @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:614ebfac5f41d6f661aff675fa18c0f933a8d9bcc77ea71b7b2360c2f0155837 +size 90069 diff --git a/timecost/m4/tvae/tvae-m4-20260504_174302/staged/public/val.csv b/timecost/m4/tvae/tvae-m4-20260504_174302/staged/public/val.csv new file mode 100644 index 0000000000000000000000000000000000000000..d78fe5ad1537c437ba9ac2629f2aa60a6c17e708 --- /dev/null +++ b/timecost/m4/tvae/tvae-m4-20260504_174302/staged/public/val.csv @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:e55f5edbe7942ff01630de91a9c70dfbc6445eba76c7b970350364546b67c2d7 +size 11218 diff --git a/timecost/m4/tvae/tvae-m4-20260504_174302/staged/tvae/adapter_report.json b/timecost/m4/tvae/tvae-m4-20260504_174302/staged/tvae/adapter_report.json new file mode 100644 index 0000000000000000000000000000000000000000..5a09a4742de3a8b219cf8df46bd0846a8ec726d2 --- /dev/null +++ b/timecost/m4/tvae/tvae-m4-20260504_174302/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-Benchmark-trainonly-v1/m4/tvae/tvae-m4-20260504_174302/staged/tvae/model_input_manifest.json" +} \ No newline at end of file diff --git a/timecost/m4/tvae/tvae-m4-20260504_174302/staged/tvae/adapter_transforms_applied.json b/timecost/m4/tvae/tvae-m4-20260504_174302/staged/tvae/adapter_transforms_applied.json new file mode 100644 index 0000000000000000000000000000000000000000..0637a088a01e8ddab3bf3fa98dbe804cbde1a0dc --- /dev/null +++ b/timecost/m4/tvae/tvae-m4-20260504_174302/staged/tvae/adapter_transforms_applied.json @@ -0,0 +1 @@ +[] \ No newline at end of file diff --git a/timecost/m4/tvae/tvae-m4-20260504_174302/staged/tvae/model_input_manifest.json b/timecost/m4/tvae/tvae-m4-20260504_174302/staged/tvae/model_input_manifest.json new file mode 100644 index 0000000000000000000000000000000000000000..068bb0b9d0b426739333b63a6ec98858fc30bda9 --- /dev/null +++ b/timecost/m4/tvae/tvae-m4-20260504_174302/staged/tvae/model_input_manifest.json @@ -0,0 +1,154 @@ +{ + "dataset_id": "m4", + "model": "tvae", + "target_column": "charges", + "task_type": "regression", + "column_schema": [ + { + "name": "age", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 47, + "unique_ratio": 0.0212, + "example_values": [ + "46", + "38", + "19", + "27", + "26" + ] + } + }, + { + "name": "sex", + "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.000902, + "example_values": [ + "female", + "male" + ] + } + }, + { + "name": "bmi", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 538, + "unique_ratio": 0.24267, + "example_values": [ + "23.655", + "19.3", + "30.59", + "32.67", + "29.45" + ] + } + }, + { + "name": "children", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 6, + "unique_ratio": 0.002706, + "example_values": [ + "1", + "0", + "3", + "2", + "5" + ] + } + }, + { + "name": "smoker", + "role": "feature", + "semantic_type": "boolean", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 2, + "unique_ratio": 0.000902, + "example_values": [ + "yes", + "no" + ] + } + }, + { + "name": "region", + "role": "feature", + "semantic_type": "categorical", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 4, + "unique_ratio": 0.001804, + "example_values": [ + "northwest", + "southwest", + "southeast", + "northeast" + ] + } + }, + { + "name": "charges", + "role": "target", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 1281, + "unique_ratio": 0.577808, + "example_values": [ + "21677.28345", + "15820.699", + "1639.5631", + "2497.0383", + "2897.3235" + ] + } + } + ], + "public_manifest": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/m4/tvae/tvae-m4-20260504_174302/public_gate/staged_input_manifest.json", + "train_csv": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/m4/tvae/tvae-m4-20260504_174302/staged/public/train.csv", + "val_csv": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/m4/tvae/tvae-m4-20260504_174302/staged/public/val.csv", + "test_csv": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/m4/tvae/tvae-m4-20260504_174302/staged/public/test.csv", + "features_json": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/m4/tvae/tvae-m4-20260504_174302/staged/public/staged_features.json", + "public_gate_report": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/m4/tvae/tvae-m4-20260504_174302/public_gate/public_gate_report.json" +} \ No newline at end of file diff --git a/timecost/m4/tvae/tvae-m4-20260504_174302/tvae-m4-2217-20260504_174327.csv b/timecost/m4/tvae/tvae-m4-20260504_174302/tvae-m4-2217-20260504_174327.csv new file mode 100644 index 0000000000000000000000000000000000000000..cc89d367bbc77fcaa87035697f57afb63c3dd0f5 --- /dev/null +++ b/timecost/m4/tvae/tvae-m4-20260504_174302/tvae-m4-2217-20260504_174327.csv @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:18426a62b60277585bdaec0b71059b5102ff55a45beba0836da8fbf8759b3a39 +size 135340 diff --git a/timecost/m4/tvae/tvae-m4-20260504_174302/tvae_metadata.json b/timecost/m4/tvae/tvae-m4-20260504_174302/tvae_metadata.json new file mode 100644 index 0000000000000000000000000000000000000000..d89b1e0b3095638c982d4d3321d21a8bedcd33ae --- /dev/null +++ b/timecost/m4/tvae/tvae-m4-20260504_174302/tvae_metadata.json @@ -0,0 +1,32 @@ +{ + "columns": [ + { + "name": "age", + "type": "continuous" + }, + { + "name": "sex", + "type": "categorical" + }, + { + "name": "bmi", + "type": "continuous" + }, + { + "name": "children", + "type": "continuous" + }, + { + "name": "smoker", + "type": "categorical" + }, + { + "name": "region", + "type": "categorical" + }, + { + "name": "charges", + "type": "continuous" + } + ] +} \ No newline at end of file diff --git a/timecost/m4/tvae/tvae-m4-20260504_174345/_tvae_generate.py b/timecost/m4/tvae/tvae-m4-20260504_174345/_tvae_generate.py new file mode 100644 index 0000000000000000000000000000000000000000..5752f6a3066cdfc5f9df8ba23e3090b04584f4d8 --- /dev/null +++ b/timecost/m4/tvae/tvae-m4-20260504_174345/_tvae_generate.py @@ -0,0 +1,23 @@ +import os, sys +sys.path.insert(0, "/work") +from src.SpecificModels.ctgan_joblib_parallel_cap import apply_parallel_cap_from_env +apply_parallel_cap_from_env() +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 +os.environ.setdefault("LOKY_MAX_CPU_COUNT", "8") +os.environ.setdefault("OPENBLAS_NUM_THREADS", "8") +os.environ.setdefault("MKL_NUM_THREADS", "8") +model = TVAE.load("/work/output-Benchmark-trainonly-v1/m4/tvae/tvae-m4-20260504_174345/models_300epochs/tvae_300epochs.pt") +total = 2217 +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-Benchmark-trainonly-v1/m4/tvae/tvae-m4-20260504_174345/tvae-m4-2217-20260504_174408.csv", index=False) +print(f"[TVAE] Generated {total} rows (chunks={len(parts)}) -> /work/output-Benchmark-trainonly-v1/m4/tvae/tvae-m4-20260504_174345/tvae-m4-2217-20260504_174408.csv") diff --git a/timecost/m4/tvae/tvae-m4-20260504_174345/_tvae_train.py b/timecost/m4/tvae/tvae-m4-20260504_174345/_tvae_train.py new file mode 100644 index 0000000000000000000000000000000000000000..aca9f4cee652b8d957c0618750c8f79706afa308 --- /dev/null +++ b/timecost/m4/tvae/tvae-m4-20260504_174345/_tvae_train.py @@ -0,0 +1,39 @@ +import json, os, sys +sys.path.insert(0, "/work") +from src.SpecificModels.ctgan_joblib_parallel_cap import apply_parallel_cap_from_env +apply_parallel_cap_from_env() +import pandas as pd +from ctgan.data import read_csv +from ctgan.synthesizers.tvae import TVAE + +# Keep transform stage parallelism bounded for stability on shared host. +os.environ.setdefault("LOKY_MAX_CPU_COUNT", "8") +os.environ.setdefault("OPENBLAS_NUM_THREADS", "8") +os.environ.setdefault("MKL_NUM_THREADS", "8") +_nj = (os.environ.get("TVAE_CTGAN_JOBTRANS_N_JOBS") or "").strip() +if _nj: + print("[TVAE] joblib Parallel cap ON, TVAE_CTGAN_JOBTRANS_N_JOBS=" + _nj) +else: + print("[TVAE] joblib Parallel cap OFF (unset TVAE_CTGAN_JOBTRANS_N_JOBS)") +print("[TVAE] LOKY_MAX_CPU_COUNT=" + str(os.environ.get("LOKY_MAX_CPU_COUNT", ""))) + +csv_path = "/work/output-Benchmark-trainonly-v1/m4/tvae/tvae-m4-20260504_174345/staged/public/train.csv" +meta_path = "/work/output-Benchmark-trainonly-v1/m4/tvae/tvae-m4-20260504_174345/tvae_metadata.json" +save_path = "/work/output-Benchmark-trainonly-v1/m4/tvae/tvae-m4-20260504_174345/models_300epochs/tvae_300epochs.pt" +epochs = int(os.environ.get("TVAE_EPOCHS", 300)) +batch_size = int(os.environ.get("TVAE_BATCH_SIZE", "500")) +embedding_dim = int(os.environ.get("TVAE_EMBEDDING_DIM", "128")) +def _parse_dims(name, default): + raw = (os.environ.get(name) or "").strip() + if not raw: + return default + return tuple(int(x.strip()) for x in raw.split(",") if x.strip()) +compress_dims = _parse_dims("TVAE_COMPRESS_DIMS", (128, 128)) +decompress_dims = _parse_dims("TVAE_DECOMPRESS_DIMS", (128, 128)) + +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}, batch_size={batch_size}, embedding_dim={embedding_dim}, compress_dims={compress_dims}, decompress_dims={decompress_dims}") +model = TVAE(epochs=epochs, batch_size=batch_size, embedding_dim=embedding_dim, compress_dims=compress_dims, decompress_dims=decompress_dims) +model.fit(data, discrete_columns) +model.save(save_path) +print(f"[TVAE] Model saved -> {save_path}") diff --git a/timecost/m4/tvae/tvae-m4-20260504_174345/gen_20260504_174408.log b/timecost/m4/tvae/tvae-m4-20260504_174345/gen_20260504_174408.log new file mode 100644 index 0000000000000000000000000000000000000000..8fc5e6292cb4d277e08212280353a2066877709f --- /dev/null +++ b/timecost/m4/tvae/tvae-m4-20260504_174345/gen_20260504_174408.log @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:6a4497f79ab8d0c7ce135c4864c2a53a2e7353da7444daaf7b0e9dde72e02f5e +size 404 diff --git a/timecost/m4/tvae/tvae-m4-20260504_174345/input_snapshot.json b/timecost/m4/tvae/tvae-m4-20260504_174345/input_snapshot.json new file mode 100644 index 0000000000000000000000000000000000000000..60c34c26acabd61c3c87a32ef8cbe89659d8c727 --- /dev/null +++ b/timecost/m4/tvae/tvae-m4-20260504_174345/input_snapshot.json @@ -0,0 +1,36 @@ +{ + "dataset_id": "m4", + "model": "tvae", + "inputs": { + "train_csv": { + "path": "/data/jialinzhang/SynthesizePipeline-server/DatasetNew/m4/m4-train.csv", + "exists": true, + "size": 92191, + "sha256": "396b9d409ca21bf4a4cd329bdf5b7796aa0ae6356fa8d89b8eb669b5880b81f1" + }, + "val_csv": { + "path": "/data/jialinzhang/SynthesizePipeline-server/DatasetNew/m4/m4-val.csv", + "exists": true, + "size": 11482, + "sha256": "ee3c247d02f56e1687d03c381e13125d6a3a2a411ac7f202ba8520a4be9f1784" + }, + "test_csv": { + "path": "/data/jialinzhang/SynthesizePipeline-server/DatasetNew/m4/m4-test.csv", + "exists": true, + "size": 11559, + "sha256": "cadb9941124001b8fa7cb1ebae43b70a9ca56294f4df4d3c2f22c164c41757d4" + }, + "profile_json": { + "path": "/data/jialinzhang/SynthesizePipeline-server/DatasetNew/artifacts/data_core/tabular/m4/m4-dataset_profile.json", + "exists": true, + "size": 3336, + "sha256": "83e2764810e4a0e8cdece3a28dbd9134b7c9df6f2e56953e46d024ad2c4e035f" + }, + "contract_json": { + "path": "/data/jialinzhang/SynthesizePipeline-server/DatasetNew/artifacts/data_core/tabular/m4/m4-dataset_contract_v1.json", + "exists": true, + "size": 3810, + "sha256": "c23641b258629a845b164099bd0132886f8f6d0100e990494e0f92540f8987d9" + } + } +} \ No newline at end of file diff --git a/timecost/m4/tvae/tvae-m4-20260504_174345/models_300epochs/train_20260504_174345.log b/timecost/m4/tvae/tvae-m4-20260504_174345/models_300epochs/train_20260504_174345.log new file mode 100644 index 0000000000000000000000000000000000000000..d9c3fff9bb4dbe5599922e1d080551aca2b86361 --- /dev/null +++ b/timecost/m4/tvae/tvae-m4-20260504_174345/models_300epochs/train_20260504_174345.log @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:c494110b8fec6c70cf01186532504c957a2de78d8140a7fb363f74601b4b2a18 +size 619 diff --git a/timecost/m4/tvae/tvae-m4-20260504_174345/models_300epochs/tvae_300epochs.pt b/timecost/m4/tvae/tvae-m4-20260504_174345/models_300epochs/tvae_300epochs.pt new file mode 100644 index 0000000000000000000000000000000000000000..0c28da14e1cbc85fc7636e69a71272a7c7923f92 --- /dev/null +++ b/timecost/m4/tvae/tvae-m4-20260504_174345/models_300epochs/tvae_300epochs.pt @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:81942ae13ef96a3ad65261194e36070237c40e9a5c95b8dc18ed277045304175 +size 399020 diff --git a/timecost/m4/tvae/tvae-m4-20260504_174345/public_gate/normalized_schema_snapshot.json b/timecost/m4/tvae/tvae-m4-20260504_174345/public_gate/normalized_schema_snapshot.json new file mode 100644 index 0000000000000000000000000000000000000000..31ed9818686b11907df75e872e4ffbe010330880 --- /dev/null +++ b/timecost/m4/tvae/tvae-m4-20260504_174345/public_gate/normalized_schema_snapshot.json @@ -0,0 +1,147 @@ +{ + "dataset_id": "m4", + "target_column": "charges", + "task_type": "regression", + "columns": [ + { + "name": "age", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 47, + "unique_ratio": 0.0212, + "example_values": [ + "46", + "38", + "19", + "27", + "26" + ] + } + }, + { + "name": "sex", + "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.000902, + "example_values": [ + "female", + "male" + ] + } + }, + { + "name": "bmi", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 538, + "unique_ratio": 0.24267, + "example_values": [ + "23.655", + "19.3", + "30.59", + "32.67", + "29.45" + ] + } + }, + { + "name": "children", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 6, + "unique_ratio": 0.002706, + "example_values": [ + "1", + "0", + "3", + "2", + "5" + ] + } + }, + { + "name": "smoker", + "role": "feature", + "semantic_type": "boolean", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 2, + "unique_ratio": 0.000902, + "example_values": [ + "yes", + "no" + ] + } + }, + { + "name": "region", + "role": "feature", + "semantic_type": "categorical", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 4, + "unique_ratio": 0.001804, + "example_values": [ + "northwest", + "southwest", + "southeast", + "northeast" + ] + } + }, + { + "name": "charges", + "role": "target", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 1281, + "unique_ratio": 0.577808, + "example_values": [ + "21677.28345", + "15820.699", + "1639.5631", + "2497.0383", + "2897.3235" + ] + } + } + ] +} \ No newline at end of file diff --git a/timecost/m4/tvae/tvae-m4-20260504_174345/public_gate/public_gate_report.json b/timecost/m4/tvae/tvae-m4-20260504_174345/public_gate/public_gate_report.json new file mode 100644 index 0000000000000000000000000000000000000000..e7a25408e2574124629ea9437356551e4d6f4790 --- /dev/null +++ b/timecost/m4/tvae/tvae-m4-20260504_174345/public_gate/public_gate_report.json @@ -0,0 +1,37 @@ +{ + "dataset_id": "m4", + "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": "charges", + "task_type": "regression", + "input_splits": { + "train": "/data/jialinzhang/SynthesizePipeline-server/DatasetNew/m4/m4-train.csv", + "val": "/data/jialinzhang/SynthesizePipeline-server/DatasetNew/m4/m4-val.csv", + "test": "/data/jialinzhang/SynthesizePipeline-server/DatasetNew/m4/m4-test.csv" + } +} \ No newline at end of file diff --git a/timecost/m4/tvae/tvae-m4-20260504_174345/public_gate/staged_input_manifest.json b/timecost/m4/tvae/tvae-m4-20260504_174345/public_gate/staged_input_manifest.json new file mode 100644 index 0000000000000000000000000000000000000000..b0b82386d8afde67d57d61d34d14967820ba36bc --- /dev/null +++ b/timecost/m4/tvae/tvae-m4-20260504_174345/public_gate/staged_input_manifest.json @@ -0,0 +1,152 @@ +{ + "dataset_id": "m4", + "target_column": "charges", + "task_type": "regression", + "train_csv": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/m4/tvae/tvae-m4-20260504_174345/staged/public/train.csv", + "val_csv": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/m4/tvae/tvae-m4-20260504_174345/staged/public/val.csv", + "test_csv": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/m4/tvae/tvae-m4-20260504_174345/staged/public/test.csv", + "features_json": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/m4/tvae/tvae-m4-20260504_174345/staged/public/staged_features.json", + "public_gate_report": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/m4/tvae/tvae-m4-20260504_174345/public_gate/public_gate_report.json", + "column_schema": [ + { + "name": "age", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 47, + "unique_ratio": 0.0212, + "example_values": [ + "46", + "38", + "19", + "27", + "26" + ] + } + }, + { + "name": "sex", + "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.000902, + "example_values": [ + "female", + "male" + ] + } + }, + { + "name": "bmi", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 538, + "unique_ratio": 0.24267, + "example_values": [ + "23.655", + "19.3", + "30.59", + "32.67", + "29.45" + ] + } + }, + { + "name": "children", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 6, + "unique_ratio": 0.002706, + "example_values": [ + "1", + "0", + "3", + "2", + "5" + ] + } + }, + { + "name": "smoker", + "role": "feature", + "semantic_type": "boolean", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 2, + "unique_ratio": 0.000902, + "example_values": [ + "yes", + "no" + ] + } + }, + { + "name": "region", + "role": "feature", + "semantic_type": "categorical", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 4, + "unique_ratio": 0.001804, + "example_values": [ + "northwest", + "southwest", + "southeast", + "northeast" + ] + } + }, + { + "name": "charges", + "role": "target", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 1281, + "unique_ratio": 0.577808, + "example_values": [ + "21677.28345", + "15820.699", + "1639.5631", + "2497.0383", + "2897.3235" + ] + } + } + ] +} \ No newline at end of file diff --git a/timecost/m4/tvae/tvae-m4-20260504_174345/run_config.json b/timecost/m4/tvae/tvae-m4-20260504_174345/run_config.json new file mode 100644 index 0000000000000000000000000000000000000000..6a0d856803666f7f8f0fd1b32a1a8b71d17c669c --- /dev/null +++ b/timecost/m4/tvae/tvae-m4-20260504_174345/run_config.json @@ -0,0 +1,45 @@ +{ + "schema_version": 1, + "recorded_at": "2026-05-04T17:43:45", + "dataset_id": "m4", + "model": "tvae", + "work_dir": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/m4/tvae/tvae-m4-20260504_174345", + "dataset_source_requested": "new", + "dataset_source_resolved": "new", + "cli_args": { + "model": "tvae", + "dataset": "m4", + "dataset_source": "new", + "train": true, + "generate": true, + "num_rows": 0, + "epochs": null, + "output_dir": null, + "model_dir": null, + "work_dir": null, + "resume": false, + "no_stats": false + }, + "resolved": { + "num_rows": 2217, + "model_path": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/m4/tvae/tvae-m4-20260504_174345/models_300epochs/tvae_300epochs.pt", + "output_csv": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/m4/tvae/tvae-m4-20260504_174345/tvae-m4-2217-20260504_174408.csv" + }, + "input_artifacts": { + "public_gate_report": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/m4/tvae/tvae-m4-20260504_174345/public_gate/public_gate_report.json", + "public_manifest": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/m4/tvae/tvae-m4-20260504_174345/public_gate/staged_input_manifest.json", + "model_manifest": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/m4/tvae/tvae-m4-20260504_174345/staged/tvae/model_input_manifest.json", + "train_csv": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/m4/tvae/tvae-m4-20260504_174345/staged/public/train.csv", + "features_json": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/m4/tvae/tvae-m4-20260504_174345/staged/public/staged_features.json", + "target_column": "charges", + "task_type": "regression" + }, + "env_overrides": { + "BENCHMARK_TVAE_GPUS": "device=3", + "TVAE_BATCH_SIZE": "256", + "TVAE_COMPRESS_DIMS": "128,128", + "TVAE_DECOMPRESS_DIMS": "128,128", + "TVAE_EMBEDDING_DIM": "64", + "TVAE_EPOCHS": "200" + } +} \ No newline at end of file diff --git a/timecost/m4/tvae/tvae-m4-20260504_174345/runtime_result.json b/timecost/m4/tvae/tvae-m4-20260504_174345/runtime_result.json new file mode 100644 index 0000000000000000000000000000000000000000..018199b620d8be1125db7cf1c4d80366a23151f7 --- /dev/null +++ b/timecost/m4/tvae/tvae-m4-20260504_174345/runtime_result.json @@ -0,0 +1,27 @@ +{ + "dataset_id": "m4", + "model": "tvae", + "run_id": "tvae-m4-20260504_174345", + "public_gate_status": "pass", + "adapter_ready_status": "pass", + "train_status": "success", + "generate_status": "success", + "reason_code": null, + "reason_detail": null, + "artifacts": { + "synthetic_csv": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/m4/tvae/tvae-m4-20260504_174345/tvae-m4-2217-20260504_174408.csv", + "model_path": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/m4/tvae/tvae-m4-20260504_174345/models_300epochs/tvae_300epochs.pt" + }, + "timings": { + "train": { + "started_at": "2026-05-04T17:43:45", + "ended_at": "2026-05-04T17:44:08", + "duration_sec": 23.351 + }, + "generate": { + "started_at": "2026-05-04T17:44:08", + "ended_at": "2026-05-04T17:44:13", + "duration_sec": 5.268 + } + } +} \ No newline at end of file diff --git a/timecost/m4/tvae/tvae-m4-20260504_174345/staged/public/staged_features.json b/timecost/m4/tvae/tvae-m4-20260504_174345/staged/public/staged_features.json new file mode 100644 index 0000000000000000000000000000000000000000..d6acd098c35111f423f3ffff2cfd1754bc5dfebc --- /dev/null +++ b/timecost/m4/tvae/tvae-m4-20260504_174345/staged/public/staged_features.json @@ -0,0 +1,37 @@ +[ + { + "feature_name": "age", + "data_type": "continuous", + "is_target": false + }, + { + "feature_name": "sex", + "data_type": "categorical", + "is_target": false + }, + { + "feature_name": "bmi", + "data_type": "continuous", + "is_target": false + }, + { + "feature_name": "children", + "data_type": "continuous", + "is_target": false + }, + { + "feature_name": "smoker", + "data_type": "binary", + "is_target": false + }, + { + "feature_name": "region", + "data_type": "categorical", + "is_target": false + }, + { + "feature_name": "charges", + "data_type": "continuous", + "is_target": true + } +] \ No newline at end of file diff --git a/timecost/m4/tvae/tvae-m4-20260504_174345/staged/public/test.csv b/timecost/m4/tvae/tvae-m4-20260504_174345/staged/public/test.csv new file mode 100644 index 0000000000000000000000000000000000000000..c88a2e7cfcd715bb421cb56eb078033da45c4dc8 --- /dev/null +++ b/timecost/m4/tvae/tvae-m4-20260504_174345/staged/public/test.csv @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:4c541b677fb2d45c5bc79338eeee9fd8c91484b195a0c2c546c2fbabf113b7ea +size 11298 diff --git a/timecost/m4/tvae/tvae-m4-20260504_174345/staged/public/train.csv b/timecost/m4/tvae/tvae-m4-20260504_174345/staged/public/train.csv new file mode 100644 index 0000000000000000000000000000000000000000..5a05019d786529e0617291766c4fbe016ca01bf5 --- /dev/null +++ b/timecost/m4/tvae/tvae-m4-20260504_174345/staged/public/train.csv @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:614ebfac5f41d6f661aff675fa18c0f933a8d9bcc77ea71b7b2360c2f0155837 +size 90069 diff --git a/timecost/m4/tvae/tvae-m4-20260504_174345/staged/public/val.csv b/timecost/m4/tvae/tvae-m4-20260504_174345/staged/public/val.csv new file mode 100644 index 0000000000000000000000000000000000000000..d78fe5ad1537c437ba9ac2629f2aa60a6c17e708 --- /dev/null +++ b/timecost/m4/tvae/tvae-m4-20260504_174345/staged/public/val.csv @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:e55f5edbe7942ff01630de91a9c70dfbc6445eba76c7b970350364546b67c2d7 +size 11218 diff --git a/timecost/m4/tvae/tvae-m4-20260504_174345/staged/tvae/adapter_report.json b/timecost/m4/tvae/tvae-m4-20260504_174345/staged/tvae/adapter_report.json new file mode 100644 index 0000000000000000000000000000000000000000..8c95e5df24a3ad9d5cecc4a4ab707a886869ef49 --- /dev/null +++ b/timecost/m4/tvae/tvae-m4-20260504_174345/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-Benchmark-trainonly-v1/m4/tvae/tvae-m4-20260504_174345/staged/tvae/model_input_manifest.json" +} \ No newline at end of file diff --git a/timecost/m4/tvae/tvae-m4-20260504_174345/staged/tvae/adapter_transforms_applied.json b/timecost/m4/tvae/tvae-m4-20260504_174345/staged/tvae/adapter_transforms_applied.json new file mode 100644 index 0000000000000000000000000000000000000000..0637a088a01e8ddab3bf3fa98dbe804cbde1a0dc --- /dev/null +++ b/timecost/m4/tvae/tvae-m4-20260504_174345/staged/tvae/adapter_transforms_applied.json @@ -0,0 +1 @@ +[] \ No newline at end of file diff --git a/timecost/m4/tvae/tvae-m4-20260504_174345/staged/tvae/model_input_manifest.json b/timecost/m4/tvae/tvae-m4-20260504_174345/staged/tvae/model_input_manifest.json new file mode 100644 index 0000000000000000000000000000000000000000..8310da218087853e3398cb155bdf4b9c096a06bc --- /dev/null +++ b/timecost/m4/tvae/tvae-m4-20260504_174345/staged/tvae/model_input_manifest.json @@ -0,0 +1,154 @@ +{ + "dataset_id": "m4", + "model": "tvae", + "target_column": "charges", + "task_type": "regression", + "column_schema": [ + { + "name": "age", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 47, + "unique_ratio": 0.0212, + "example_values": [ + "46", + "38", + "19", + "27", + "26" + ] + } + }, + { + "name": "sex", + "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.000902, + "example_values": [ + "female", + "male" + ] + } + }, + { + "name": "bmi", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 538, + "unique_ratio": 0.24267, + "example_values": [ + "23.655", + "19.3", + "30.59", + "32.67", + "29.45" + ] + } + }, + { + "name": "children", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 6, + "unique_ratio": 0.002706, + "example_values": [ + "1", + "0", + "3", + "2", + "5" + ] + } + }, + { + "name": "smoker", + "role": "feature", + "semantic_type": "boolean", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 2, + "unique_ratio": 0.000902, + "example_values": [ + "yes", + "no" + ] + } + }, + { + "name": "region", + "role": "feature", + "semantic_type": "categorical", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 4, + "unique_ratio": 0.001804, + "example_values": [ + "northwest", + "southwest", + "southeast", + "northeast" + ] + } + }, + { + "name": "charges", + "role": "target", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 1281, + "unique_ratio": 0.577808, + "example_values": [ + "21677.28345", + "15820.699", + "1639.5631", + "2497.0383", + "2897.3235" + ] + } + } + ], + "public_manifest": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/m4/tvae/tvae-m4-20260504_174345/public_gate/staged_input_manifest.json", + "train_csv": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/m4/tvae/tvae-m4-20260504_174345/staged/public/train.csv", + "val_csv": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/m4/tvae/tvae-m4-20260504_174345/staged/public/val.csv", + "test_csv": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/m4/tvae/tvae-m4-20260504_174345/staged/public/test.csv", + "features_json": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/m4/tvae/tvae-m4-20260504_174345/staged/public/staged_features.json", + "public_gate_report": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/m4/tvae/tvae-m4-20260504_174345/public_gate/public_gate_report.json" +} \ No newline at end of file diff --git a/timecost/m4/tvae/tvae-m4-20260504_174345/tvae-m4-2217-20260504_174408.csv b/timecost/m4/tvae/tvae-m4-20260504_174345/tvae-m4-2217-20260504_174408.csv new file mode 100644 index 0000000000000000000000000000000000000000..57b7a745bd77beb6a86f026fe8306bda5886a559 --- /dev/null +++ b/timecost/m4/tvae/tvae-m4-20260504_174345/tvae-m4-2217-20260504_174408.csv @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:083f6155edb8f495beff37d43146b53d55fbeb8eedb579e53a6ff1db820317d5 +size 135606 diff --git a/timecost/m4/tvae/tvae-m4-20260504_174345/tvae_metadata.json b/timecost/m4/tvae/tvae-m4-20260504_174345/tvae_metadata.json new file mode 100644 index 0000000000000000000000000000000000000000..d89b1e0b3095638c982d4d3321d21a8bedcd33ae --- /dev/null +++ b/timecost/m4/tvae/tvae-m4-20260504_174345/tvae_metadata.json @@ -0,0 +1,32 @@ +{ + "columns": [ + { + "name": "age", + "type": "continuous" + }, + { + "name": "sex", + "type": "categorical" + }, + { + "name": "bmi", + "type": "continuous" + }, + { + "name": "children", + "type": "continuous" + }, + { + "name": "smoker", + "type": "categorical" + }, + { + "name": "region", + "type": "categorical" + }, + { + "name": "charges", + "type": "continuous" + } + ] +} \ No newline at end of file diff --git a/timecost/m4/tvae/tvae-m4-20260504_174426/_tvae_generate.py b/timecost/m4/tvae/tvae-m4-20260504_174426/_tvae_generate.py new file mode 100644 index 0000000000000000000000000000000000000000..986470909887e64074ae7b5468923539ce59c61e --- /dev/null +++ b/timecost/m4/tvae/tvae-m4-20260504_174426/_tvae_generate.py @@ -0,0 +1,23 @@ +import os, sys +sys.path.insert(0, "/work") +from src.SpecificModels.ctgan_joblib_parallel_cap import apply_parallel_cap_from_env +apply_parallel_cap_from_env() +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 +os.environ.setdefault("LOKY_MAX_CPU_COUNT", "8") +os.environ.setdefault("OPENBLAS_NUM_THREADS", "8") +os.environ.setdefault("MKL_NUM_THREADS", "8") +model = TVAE.load("/work/output-Benchmark-trainonly-v1/m4/tvae/tvae-m4-20260504_174426/models_300epochs/tvae_300epochs.pt") +total = 2217 +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-Benchmark-trainonly-v1/m4/tvae/tvae-m4-20260504_174426/tvae-m4-2217-20260504_174448.csv", index=False) +print(f"[TVAE] Generated {total} rows (chunks={len(parts)}) -> /work/output-Benchmark-trainonly-v1/m4/tvae/tvae-m4-20260504_174426/tvae-m4-2217-20260504_174448.csv") diff --git a/timecost/m4/tvae/tvae-m4-20260504_174426/_tvae_train.py b/timecost/m4/tvae/tvae-m4-20260504_174426/_tvae_train.py new file mode 100644 index 0000000000000000000000000000000000000000..51849963b3e68038221e8e94145da119f0101e40 --- /dev/null +++ b/timecost/m4/tvae/tvae-m4-20260504_174426/_tvae_train.py @@ -0,0 +1,39 @@ +import json, os, sys +sys.path.insert(0, "/work") +from src.SpecificModels.ctgan_joblib_parallel_cap import apply_parallel_cap_from_env +apply_parallel_cap_from_env() +import pandas as pd +from ctgan.data import read_csv +from ctgan.synthesizers.tvae import TVAE + +# Keep transform stage parallelism bounded for stability on shared host. +os.environ.setdefault("LOKY_MAX_CPU_COUNT", "8") +os.environ.setdefault("OPENBLAS_NUM_THREADS", "8") +os.environ.setdefault("MKL_NUM_THREADS", "8") +_nj = (os.environ.get("TVAE_CTGAN_JOBTRANS_N_JOBS") or "").strip() +if _nj: + print("[TVAE] joblib Parallel cap ON, TVAE_CTGAN_JOBTRANS_N_JOBS=" + _nj) +else: + print("[TVAE] joblib Parallel cap OFF (unset TVAE_CTGAN_JOBTRANS_N_JOBS)") +print("[TVAE] LOKY_MAX_CPU_COUNT=" + str(os.environ.get("LOKY_MAX_CPU_COUNT", ""))) + +csv_path = "/work/output-Benchmark-trainonly-v1/m4/tvae/tvae-m4-20260504_174426/staged/public/train.csv" +meta_path = "/work/output-Benchmark-trainonly-v1/m4/tvae/tvae-m4-20260504_174426/tvae_metadata.json" +save_path = "/work/output-Benchmark-trainonly-v1/m4/tvae/tvae-m4-20260504_174426/models_300epochs/tvae_300epochs.pt" +epochs = int(os.environ.get("TVAE_EPOCHS", 300)) +batch_size = int(os.environ.get("TVAE_BATCH_SIZE", "500")) +embedding_dim = int(os.environ.get("TVAE_EMBEDDING_DIM", "128")) +def _parse_dims(name, default): + raw = (os.environ.get(name) or "").strip() + if not raw: + return default + return tuple(int(x.strip()) for x in raw.split(",") if x.strip()) +compress_dims = _parse_dims("TVAE_COMPRESS_DIMS", (128, 128)) +decompress_dims = _parse_dims("TVAE_DECOMPRESS_DIMS", (128, 128)) + +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}, batch_size={batch_size}, embedding_dim={embedding_dim}, compress_dims={compress_dims}, decompress_dims={decompress_dims}") +model = TVAE(epochs=epochs, batch_size=batch_size, embedding_dim=embedding_dim, compress_dims=compress_dims, decompress_dims=decompress_dims) +model.fit(data, discrete_columns) +model.save(save_path) +print(f"[TVAE] Model saved -> {save_path}") diff --git a/timecost/m4/tvae/tvae-m4-20260504_174426/gen_20260504_174448.log b/timecost/m4/tvae/tvae-m4-20260504_174426/gen_20260504_174448.log new file mode 100644 index 0000000000000000000000000000000000000000..bf3bec0ffb0b16650e96487ab6aef4b913e7cf21 --- /dev/null +++ b/timecost/m4/tvae/tvae-m4-20260504_174426/gen_20260504_174448.log @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:a129533a2ad4f0771f09c7c1113903202b4304c36ffa3260f021cba649543cbe +size 404 diff --git a/timecost/m4/tvae/tvae-m4-20260504_174426/input_snapshot.json b/timecost/m4/tvae/tvae-m4-20260504_174426/input_snapshot.json new file mode 100644 index 0000000000000000000000000000000000000000..60c34c26acabd61c3c87a32ef8cbe89659d8c727 --- /dev/null +++ b/timecost/m4/tvae/tvae-m4-20260504_174426/input_snapshot.json @@ -0,0 +1,36 @@ +{ + "dataset_id": "m4", + "model": "tvae", + "inputs": { + "train_csv": { + "path": "/data/jialinzhang/SynthesizePipeline-server/DatasetNew/m4/m4-train.csv", + "exists": true, + "size": 92191, + "sha256": "396b9d409ca21bf4a4cd329bdf5b7796aa0ae6356fa8d89b8eb669b5880b81f1" + }, + "val_csv": { + "path": "/data/jialinzhang/SynthesizePipeline-server/DatasetNew/m4/m4-val.csv", + "exists": true, + "size": 11482, + "sha256": "ee3c247d02f56e1687d03c381e13125d6a3a2a411ac7f202ba8520a4be9f1784" + }, + "test_csv": { + "path": "/data/jialinzhang/SynthesizePipeline-server/DatasetNew/m4/m4-test.csv", + "exists": true, + "size": 11559, + "sha256": "cadb9941124001b8fa7cb1ebae43b70a9ca56294f4df4d3c2f22c164c41757d4" + }, + "profile_json": { + "path": "/data/jialinzhang/SynthesizePipeline-server/DatasetNew/artifacts/data_core/tabular/m4/m4-dataset_profile.json", + "exists": true, + "size": 3336, + "sha256": "83e2764810e4a0e8cdece3a28dbd9134b7c9df6f2e56953e46d024ad2c4e035f" + }, + "contract_json": { + "path": "/data/jialinzhang/SynthesizePipeline-server/DatasetNew/artifacts/data_core/tabular/m4/m4-dataset_contract_v1.json", + "exists": true, + "size": 3810, + "sha256": "c23641b258629a845b164099bd0132886f8f6d0100e990494e0f92540f8987d9" + } + } +} \ No newline at end of file diff --git a/timecost/m4/tvae/tvae-m4-20260504_174426/models_300epochs/train_20260504_174426.log b/timecost/m4/tvae/tvae-m4-20260504_174426/models_300epochs/train_20260504_174426.log new file mode 100644 index 0000000000000000000000000000000000000000..3aaedef345ca67f0cd8136ae4946e016390d447b --- /dev/null +++ b/timecost/m4/tvae/tvae-m4-20260504_174426/models_300epochs/train_20260504_174426.log @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:131de4dfe1a2d5ce638b8f5ba437d185fecbcc78924c59ec2071c9ab1a059d50 +size 620 diff --git a/timecost/m4/tvae/tvae-m4-20260504_174426/models_300epochs/tvae_300epochs.pt b/timecost/m4/tvae/tvae-m4-20260504_174426/models_300epochs/tvae_300epochs.pt new file mode 100644 index 0000000000000000000000000000000000000000..e16266a5a93d9224447326b03ce66256a1e2b41b --- /dev/null +++ b/timecost/m4/tvae/tvae-m4-20260504_174426/models_300epochs/tvae_300epochs.pt @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:08da8f0a648e3fdfb1e1c8b1ea7d76832c8955a5b3f523c056b91db92405d19a +size 684524 diff --git a/timecost/m4/tvae/tvae-m4-20260504_174426/public_gate/normalized_schema_snapshot.json b/timecost/m4/tvae/tvae-m4-20260504_174426/public_gate/normalized_schema_snapshot.json new file mode 100644 index 0000000000000000000000000000000000000000..31ed9818686b11907df75e872e4ffbe010330880 --- /dev/null +++ b/timecost/m4/tvae/tvae-m4-20260504_174426/public_gate/normalized_schema_snapshot.json @@ -0,0 +1,147 @@ +{ + "dataset_id": "m4", + "target_column": "charges", + "task_type": "regression", + "columns": [ + { + "name": "age", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 47, + "unique_ratio": 0.0212, + "example_values": [ + "46", + "38", + "19", + "27", + "26" + ] + } + }, + { + "name": "sex", + "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.000902, + "example_values": [ + "female", + "male" + ] + } + }, + { + "name": "bmi", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 538, + "unique_ratio": 0.24267, + "example_values": [ + "23.655", + "19.3", + "30.59", + "32.67", + "29.45" + ] + } + }, + { + "name": "children", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 6, + "unique_ratio": 0.002706, + "example_values": [ + "1", + "0", + "3", + "2", + "5" + ] + } + }, + { + "name": "smoker", + "role": "feature", + "semantic_type": "boolean", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 2, + "unique_ratio": 0.000902, + "example_values": [ + "yes", + "no" + ] + } + }, + { + "name": "region", + "role": "feature", + "semantic_type": "categorical", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 4, + "unique_ratio": 0.001804, + "example_values": [ + "northwest", + "southwest", + "southeast", + "northeast" + ] + } + }, + { + "name": "charges", + "role": "target", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 1281, + "unique_ratio": 0.577808, + "example_values": [ + "21677.28345", + "15820.699", + "1639.5631", + "2497.0383", + "2897.3235" + ] + } + } + ] +} \ No newline at end of file diff --git a/timecost/m4/tvae/tvae-m4-20260504_174426/public_gate/public_gate_report.json b/timecost/m4/tvae/tvae-m4-20260504_174426/public_gate/public_gate_report.json new file mode 100644 index 0000000000000000000000000000000000000000..e7a25408e2574124629ea9437356551e4d6f4790 --- /dev/null +++ b/timecost/m4/tvae/tvae-m4-20260504_174426/public_gate/public_gate_report.json @@ -0,0 +1,37 @@ +{ + "dataset_id": "m4", + "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": "charges", + "task_type": "regression", + "input_splits": { + "train": "/data/jialinzhang/SynthesizePipeline-server/DatasetNew/m4/m4-train.csv", + "val": "/data/jialinzhang/SynthesizePipeline-server/DatasetNew/m4/m4-val.csv", + "test": "/data/jialinzhang/SynthesizePipeline-server/DatasetNew/m4/m4-test.csv" + } +} \ No newline at end of file diff --git a/timecost/m4/tvae/tvae-m4-20260504_174426/public_gate/staged_input_manifest.json b/timecost/m4/tvae/tvae-m4-20260504_174426/public_gate/staged_input_manifest.json new file mode 100644 index 0000000000000000000000000000000000000000..cd39515addd348f9fcb2b4c8ba4ef09d43238433 --- /dev/null +++ b/timecost/m4/tvae/tvae-m4-20260504_174426/public_gate/staged_input_manifest.json @@ -0,0 +1,152 @@ +{ + "dataset_id": "m4", + "target_column": "charges", + "task_type": "regression", + "train_csv": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/m4/tvae/tvae-m4-20260504_174426/staged/public/train.csv", + "val_csv": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/m4/tvae/tvae-m4-20260504_174426/staged/public/val.csv", + "test_csv": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/m4/tvae/tvae-m4-20260504_174426/staged/public/test.csv", + "features_json": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/m4/tvae/tvae-m4-20260504_174426/staged/public/staged_features.json", + "public_gate_report": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/m4/tvae/tvae-m4-20260504_174426/public_gate/public_gate_report.json", + "column_schema": [ + { + "name": "age", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 47, + "unique_ratio": 0.0212, + "example_values": [ + "46", + "38", + "19", + "27", + "26" + ] + } + }, + { + "name": "sex", + "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.000902, + "example_values": [ + "female", + "male" + ] + } + }, + { + "name": "bmi", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 538, + "unique_ratio": 0.24267, + "example_values": [ + "23.655", + "19.3", + "30.59", + "32.67", + "29.45" + ] + } + }, + { + "name": "children", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 6, + "unique_ratio": 0.002706, + "example_values": [ + "1", + "0", + "3", + "2", + "5" + ] + } + }, + { + "name": "smoker", + "role": "feature", + "semantic_type": "boolean", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 2, + "unique_ratio": 0.000902, + "example_values": [ + "yes", + "no" + ] + } + }, + { + "name": "region", + "role": "feature", + "semantic_type": "categorical", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 4, + "unique_ratio": 0.001804, + "example_values": [ + "northwest", + "southwest", + "southeast", + "northeast" + ] + } + }, + { + "name": "charges", + "role": "target", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 1281, + "unique_ratio": 0.577808, + "example_values": [ + "21677.28345", + "15820.699", + "1639.5631", + "2497.0383", + "2897.3235" + ] + } + } + ] +} \ No newline at end of file diff --git a/timecost/m4/tvae/tvae-m4-20260504_174426/run_config.json b/timecost/m4/tvae/tvae-m4-20260504_174426/run_config.json new file mode 100644 index 0000000000000000000000000000000000000000..20792d803cbf316b3142e9ed6f42bc28fa626586 --- /dev/null +++ b/timecost/m4/tvae/tvae-m4-20260504_174426/run_config.json @@ -0,0 +1,45 @@ +{ + "schema_version": 1, + "recorded_at": "2026-05-04T17:44:26", + "dataset_id": "m4", + "model": "tvae", + "work_dir": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/m4/tvae/tvae-m4-20260504_174426", + "dataset_source_requested": "new", + "dataset_source_resolved": "new", + "cli_args": { + "model": "tvae", + "dataset": "m4", + "dataset_source": "new", + "train": true, + "generate": true, + "num_rows": 0, + "epochs": null, + "output_dir": null, + "model_dir": null, + "work_dir": null, + "resume": false, + "no_stats": false + }, + "resolved": { + "num_rows": 2217, + "model_path": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/m4/tvae/tvae-m4-20260504_174426/models_300epochs/tvae_300epochs.pt", + "output_csv": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/m4/tvae/tvae-m4-20260504_174426/tvae-m4-2217-20260504_174448.csv" + }, + "input_artifacts": { + "public_gate_report": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/m4/tvae/tvae-m4-20260504_174426/public_gate/public_gate_report.json", + "public_manifest": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/m4/tvae/tvae-m4-20260504_174426/public_gate/staged_input_manifest.json", + "model_manifest": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/m4/tvae/tvae-m4-20260504_174426/staged/tvae/model_input_manifest.json", + "train_csv": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/m4/tvae/tvae-m4-20260504_174426/staged/public/train.csv", + "features_json": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/m4/tvae/tvae-m4-20260504_174426/staged/public/staged_features.json", + "target_column": "charges", + "task_type": "regression" + }, + "env_overrides": { + "BENCHMARK_TVAE_GPUS": "device=3", + "TVAE_BATCH_SIZE": "500", + "TVAE_COMPRESS_DIMS": "256,256", + "TVAE_DECOMPRESS_DIMS": "256,256", + "TVAE_EMBEDDING_DIM": "128", + "TVAE_EPOCHS": "300" + } +} \ No newline at end of file diff --git a/timecost/m4/tvae/tvae-m4-20260504_174426/runtime_result.json b/timecost/m4/tvae/tvae-m4-20260504_174426/runtime_result.json new file mode 100644 index 0000000000000000000000000000000000000000..7b2e9d42f8215da9a9728e78bb081221cbec76dd --- /dev/null +++ b/timecost/m4/tvae/tvae-m4-20260504_174426/runtime_result.json @@ -0,0 +1,27 @@ +{ + "dataset_id": "m4", + "model": "tvae", + "run_id": "tvae-m4-20260504_174426", + "public_gate_status": "pass", + "adapter_ready_status": "pass", + "train_status": "success", + "generate_status": "success", + "reason_code": null, + "reason_detail": null, + "artifacts": { + "synthetic_csv": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/m4/tvae/tvae-m4-20260504_174426/tvae-m4-2217-20260504_174448.csv", + "model_path": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/m4/tvae/tvae-m4-20260504_174426/models_300epochs/tvae_300epochs.pt" + }, + "timings": { + "train": { + "started_at": "2026-05-04T17:44:26", + "ended_at": "2026-05-04T17:44:48", + "duration_sec": 22.417 + }, + "generate": { + "started_at": "2026-05-04T17:44:48", + "ended_at": "2026-05-04T17:44:53", + "duration_sec": 5.005 + } + } +} \ No newline at end of file diff --git a/timecost/m4/tvae/tvae-m4-20260504_174426/staged/public/staged_features.json b/timecost/m4/tvae/tvae-m4-20260504_174426/staged/public/staged_features.json new file mode 100644 index 0000000000000000000000000000000000000000..d6acd098c35111f423f3ffff2cfd1754bc5dfebc --- /dev/null +++ b/timecost/m4/tvae/tvae-m4-20260504_174426/staged/public/staged_features.json @@ -0,0 +1,37 @@ +[ + { + "feature_name": "age", + "data_type": "continuous", + "is_target": false + }, + { + "feature_name": "sex", + "data_type": "categorical", + "is_target": false + }, + { + "feature_name": "bmi", + "data_type": "continuous", + "is_target": false + }, + { + "feature_name": "children", + "data_type": "continuous", + "is_target": false + }, + { + "feature_name": "smoker", + "data_type": "binary", + "is_target": false + }, + { + "feature_name": "region", + "data_type": "categorical", + "is_target": false + }, + { + "feature_name": "charges", + "data_type": "continuous", + "is_target": true + } +] \ No newline at end of file diff --git a/timecost/m4/tvae/tvae-m4-20260504_174426/staged/public/test.csv b/timecost/m4/tvae/tvae-m4-20260504_174426/staged/public/test.csv new file mode 100644 index 0000000000000000000000000000000000000000..c88a2e7cfcd715bb421cb56eb078033da45c4dc8 --- /dev/null +++ b/timecost/m4/tvae/tvae-m4-20260504_174426/staged/public/test.csv @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:4c541b677fb2d45c5bc79338eeee9fd8c91484b195a0c2c546c2fbabf113b7ea +size 11298 diff --git a/timecost/m4/tvae/tvae-m4-20260504_174426/staged/public/train.csv b/timecost/m4/tvae/tvae-m4-20260504_174426/staged/public/train.csv new file mode 100644 index 0000000000000000000000000000000000000000..5a05019d786529e0617291766c4fbe016ca01bf5 --- /dev/null +++ b/timecost/m4/tvae/tvae-m4-20260504_174426/staged/public/train.csv @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:614ebfac5f41d6f661aff675fa18c0f933a8d9bcc77ea71b7b2360c2f0155837 +size 90069 diff --git a/timecost/m4/tvae/tvae-m4-20260504_174426/staged/public/val.csv b/timecost/m4/tvae/tvae-m4-20260504_174426/staged/public/val.csv new file mode 100644 index 0000000000000000000000000000000000000000..d78fe5ad1537c437ba9ac2629f2aa60a6c17e708 --- /dev/null +++ b/timecost/m4/tvae/tvae-m4-20260504_174426/staged/public/val.csv @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:e55f5edbe7942ff01630de91a9c70dfbc6445eba76c7b970350364546b67c2d7 +size 11218 diff --git a/timecost/m4/tvae/tvae-m4-20260504_174426/staged/tvae/adapter_report.json b/timecost/m4/tvae/tvae-m4-20260504_174426/staged/tvae/adapter_report.json new file mode 100644 index 0000000000000000000000000000000000000000..d5a01ea2a5b209d961dfbffde36d77b4193c82e5 --- /dev/null +++ b/timecost/m4/tvae/tvae-m4-20260504_174426/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-Benchmark-trainonly-v1/m4/tvae/tvae-m4-20260504_174426/staged/tvae/model_input_manifest.json" +} \ No newline at end of file diff --git a/timecost/m4/tvae/tvae-m4-20260504_174426/staged/tvae/adapter_transforms_applied.json b/timecost/m4/tvae/tvae-m4-20260504_174426/staged/tvae/adapter_transforms_applied.json new file mode 100644 index 0000000000000000000000000000000000000000..0637a088a01e8ddab3bf3fa98dbe804cbde1a0dc --- /dev/null +++ b/timecost/m4/tvae/tvae-m4-20260504_174426/staged/tvae/adapter_transforms_applied.json @@ -0,0 +1 @@ +[] \ No newline at end of file diff --git a/timecost/m4/tvae/tvae-m4-20260504_174426/staged/tvae/model_input_manifest.json b/timecost/m4/tvae/tvae-m4-20260504_174426/staged/tvae/model_input_manifest.json new file mode 100644 index 0000000000000000000000000000000000000000..b155a31733b6d5835127d8d34920b3e34bf262ef --- /dev/null +++ b/timecost/m4/tvae/tvae-m4-20260504_174426/staged/tvae/model_input_manifest.json @@ -0,0 +1,154 @@ +{ + "dataset_id": "m4", + "model": "tvae", + "target_column": "charges", + "task_type": "regression", + "column_schema": [ + { + "name": "age", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 47, + "unique_ratio": 0.0212, + "example_values": [ + "46", + "38", + "19", + "27", + "26" + ] + } + }, + { + "name": "sex", + "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.000902, + "example_values": [ + "female", + "male" + ] + } + }, + { + "name": "bmi", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 538, + "unique_ratio": 0.24267, + "example_values": [ + "23.655", + "19.3", + "30.59", + "32.67", + "29.45" + ] + } + }, + { + "name": "children", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 6, + "unique_ratio": 0.002706, + "example_values": [ + "1", + "0", + "3", + "2", + "5" + ] + } + }, + { + "name": "smoker", + "role": "feature", + "semantic_type": "boolean", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 2, + "unique_ratio": 0.000902, + "example_values": [ + "yes", + "no" + ] + } + }, + { + "name": "region", + "role": "feature", + "semantic_type": "categorical", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 4, + "unique_ratio": 0.001804, + "example_values": [ + "northwest", + "southwest", + "southeast", + "northeast" + ] + } + }, + { + "name": "charges", + "role": "target", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 1281, + "unique_ratio": 0.577808, + "example_values": [ + "21677.28345", + "15820.699", + "1639.5631", + "2497.0383", + "2897.3235" + ] + } + } + ], + "public_manifest": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/m4/tvae/tvae-m4-20260504_174426/public_gate/staged_input_manifest.json", + "train_csv": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/m4/tvae/tvae-m4-20260504_174426/staged/public/train.csv", + "val_csv": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/m4/tvae/tvae-m4-20260504_174426/staged/public/val.csv", + "test_csv": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/m4/tvae/tvae-m4-20260504_174426/staged/public/test.csv", + "features_json": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/m4/tvae/tvae-m4-20260504_174426/staged/public/staged_features.json", + "public_gate_report": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/m4/tvae/tvae-m4-20260504_174426/public_gate/public_gate_report.json" +} \ No newline at end of file diff --git a/timecost/m4/tvae/tvae-m4-20260504_174426/tvae-m4-2217-20260504_174448.csv b/timecost/m4/tvae/tvae-m4-20260504_174426/tvae-m4-2217-20260504_174448.csv new file mode 100644 index 0000000000000000000000000000000000000000..224d4c92d849978c5d816faa4fda791406550bce --- /dev/null +++ b/timecost/m4/tvae/tvae-m4-20260504_174426/tvae-m4-2217-20260504_174448.csv @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:bcf9234a7900b6ed86dbc6178935c16a0f4ba186b337d1c84cff04c15a40e1f4 +size 135512 diff --git a/timecost/m4/tvae/tvae-m4-20260504_174426/tvae_metadata.json b/timecost/m4/tvae/tvae-m4-20260504_174426/tvae_metadata.json new file mode 100644 index 0000000000000000000000000000000000000000..d89b1e0b3095638c982d4d3321d21a8bedcd33ae --- /dev/null +++ b/timecost/m4/tvae/tvae-m4-20260504_174426/tvae_metadata.json @@ -0,0 +1,32 @@ +{ + "columns": [ + { + "name": "age", + "type": "continuous" + }, + { + "name": "sex", + "type": "categorical" + }, + { + "name": "bmi", + "type": "continuous" + }, + { + "name": "children", + "type": "continuous" + }, + { + "name": "smoker", + "type": "categorical" + }, + { + "name": "region", + "type": "categorical" + }, + { + "name": "charges", + "type": "continuous" + } + ] +} \ No newline at end of file diff --git a/timecost/m4/tvae/tvae-m4-20260504_175331/_tvae_generate.py b/timecost/m4/tvae/tvae-m4-20260504_175331/_tvae_generate.py new file mode 100644 index 0000000000000000000000000000000000000000..b70a0b4d228b99bd6d3e71c9b31701fd7efe7eea --- /dev/null +++ b/timecost/m4/tvae/tvae-m4-20260504_175331/_tvae_generate.py @@ -0,0 +1,23 @@ +import os, sys +sys.path.insert(0, "/work") +from src.SpecificModels.ctgan_joblib_parallel_cap import apply_parallel_cap_from_env +apply_parallel_cap_from_env() +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 +os.environ.setdefault("LOKY_MAX_CPU_COUNT", "8") +os.environ.setdefault("OPENBLAS_NUM_THREADS", "8") +os.environ.setdefault("MKL_NUM_THREADS", "8") +model = TVAE.load("/work/output-Benchmark-trainonly-v1/m4/tvae/tvae-m4-20260504_175331/models_300epochs/tvae_300epochs.pt") +total = 2217 +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-Benchmark-trainonly-v1/m4/tvae/tvae-m4-20260504_175331/tvae-m4-2217-20260504_175349.csv", index=False) +print(f"[TVAE] Generated {total} rows (chunks={len(parts)}) -> /work/output-Benchmark-trainonly-v1/m4/tvae/tvae-m4-20260504_175331/tvae-m4-2217-20260504_175349.csv") diff --git a/timecost/m4/tvae/tvae-m4-20260504_175331/_tvae_train.py b/timecost/m4/tvae/tvae-m4-20260504_175331/_tvae_train.py new file mode 100644 index 0000000000000000000000000000000000000000..72d435e2a4019187fa552c7ef6488a04c198cb74 --- /dev/null +++ b/timecost/m4/tvae/tvae-m4-20260504_175331/_tvae_train.py @@ -0,0 +1,39 @@ +import json, os, sys +sys.path.insert(0, "/work") +from src.SpecificModels.ctgan_joblib_parallel_cap import apply_parallel_cap_from_env +apply_parallel_cap_from_env() +import pandas as pd +from ctgan.data import read_csv +from ctgan.synthesizers.tvae import TVAE + +# Keep transform stage parallelism bounded for stability on shared host. +os.environ.setdefault("LOKY_MAX_CPU_COUNT", "8") +os.environ.setdefault("OPENBLAS_NUM_THREADS", "8") +os.environ.setdefault("MKL_NUM_THREADS", "8") +_nj = (os.environ.get("TVAE_CTGAN_JOBTRANS_N_JOBS") or "").strip() +if _nj: + print("[TVAE] joblib Parallel cap ON, TVAE_CTGAN_JOBTRANS_N_JOBS=" + _nj) +else: + print("[TVAE] joblib Parallel cap OFF (unset TVAE_CTGAN_JOBTRANS_N_JOBS)") +print("[TVAE] LOKY_MAX_CPU_COUNT=" + str(os.environ.get("LOKY_MAX_CPU_COUNT", ""))) + +csv_path = "/work/output-Benchmark-trainonly-v1/m4/tvae/tvae-m4-20260504_175331/staged/public/train.csv" +meta_path = "/work/output-Benchmark-trainonly-v1/m4/tvae/tvae-m4-20260504_175331/tvae_metadata.json" +save_path = "/work/output-Benchmark-trainonly-v1/m4/tvae/tvae-m4-20260504_175331/models_300epochs/tvae_300epochs.pt" +epochs = int(os.environ.get("TVAE_EPOCHS", 300)) +batch_size = int(os.environ.get("TVAE_BATCH_SIZE", "500")) +embedding_dim = int(os.environ.get("TVAE_EMBEDDING_DIM", "128")) +def _parse_dims(name, default): + raw = (os.environ.get(name) or "").strip() + if not raw: + return default + return tuple(int(x.strip()) for x in raw.split(",") if x.strip()) +compress_dims = _parse_dims("TVAE_COMPRESS_DIMS", (128, 128)) +decompress_dims = _parse_dims("TVAE_DECOMPRESS_DIMS", (128, 128)) + +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}, batch_size={batch_size}, embedding_dim={embedding_dim}, compress_dims={compress_dims}, decompress_dims={decompress_dims}") +model = TVAE(epochs=epochs, batch_size=batch_size, embedding_dim=embedding_dim, compress_dims=compress_dims, decompress_dims=decompress_dims) +model.fit(data, discrete_columns) +model.save(save_path) +print(f"[TVAE] Model saved -> {save_path}") diff --git a/timecost/m4/tvae/tvae-m4-20260504_175331/gen_20260504_175349.log b/timecost/m4/tvae/tvae-m4-20260504_175331/gen_20260504_175349.log new file mode 100644 index 0000000000000000000000000000000000000000..d80b9a01a901102579202b4593edb4c4ee21e77f --- /dev/null +++ b/timecost/m4/tvae/tvae-m4-20260504_175331/gen_20260504_175349.log @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:198de309a988fdec10f4dd85fbbc1f0f354ac22664545de9e229b6a40353e304 +size 404 diff --git a/timecost/m4/tvae/tvae-m4-20260504_175331/input_snapshot.json b/timecost/m4/tvae/tvae-m4-20260504_175331/input_snapshot.json new file mode 100644 index 0000000000000000000000000000000000000000..60c34c26acabd61c3c87a32ef8cbe89659d8c727 --- /dev/null +++ b/timecost/m4/tvae/tvae-m4-20260504_175331/input_snapshot.json @@ -0,0 +1,36 @@ +{ + "dataset_id": "m4", + "model": "tvae", + "inputs": { + "train_csv": { + "path": "/data/jialinzhang/SynthesizePipeline-server/DatasetNew/m4/m4-train.csv", + "exists": true, + "size": 92191, + "sha256": "396b9d409ca21bf4a4cd329bdf5b7796aa0ae6356fa8d89b8eb669b5880b81f1" + }, + "val_csv": { + "path": "/data/jialinzhang/SynthesizePipeline-server/DatasetNew/m4/m4-val.csv", + "exists": true, + "size": 11482, + "sha256": "ee3c247d02f56e1687d03c381e13125d6a3a2a411ac7f202ba8520a4be9f1784" + }, + "test_csv": { + "path": "/data/jialinzhang/SynthesizePipeline-server/DatasetNew/m4/m4-test.csv", + "exists": true, + "size": 11559, + "sha256": "cadb9941124001b8fa7cb1ebae43b70a9ca56294f4df4d3c2f22c164c41757d4" + }, + "profile_json": { + "path": "/data/jialinzhang/SynthesizePipeline-server/DatasetNew/artifacts/data_core/tabular/m4/m4-dataset_profile.json", + "exists": true, + "size": 3336, + "sha256": "83e2764810e4a0e8cdece3a28dbd9134b7c9df6f2e56953e46d024ad2c4e035f" + }, + "contract_json": { + "path": "/data/jialinzhang/SynthesizePipeline-server/DatasetNew/artifacts/data_core/tabular/m4/m4-dataset_contract_v1.json", + "exists": true, + "size": 3810, + "sha256": "c23641b258629a845b164099bd0132886f8f6d0100e990494e0f92540f8987d9" + } + } +} \ No newline at end of file diff --git a/timecost/m4/tvae/tvae-m4-20260504_175331/models_300epochs/train_20260504_175331.log b/timecost/m4/tvae/tvae-m4-20260504_175331/models_300epochs/train_20260504_175331.log new file mode 100644 index 0000000000000000000000000000000000000000..84b1f25f76db42e58f5013b6169e84d8a08f70ae --- /dev/null +++ b/timecost/m4/tvae/tvae-m4-20260504_175331/models_300epochs/train_20260504_175331.log @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:ef9355f3042f9be1f1e24f023ec141d00b5472f85f7b583ac3988e3bd9ecf510 +size 614 diff --git a/timecost/m4/tvae/tvae-m4-20260504_175331/models_300epochs/tvae_300epochs.pt b/timecost/m4/tvae/tvae-m4-20260504_175331/models_300epochs/tvae_300epochs.pt new file mode 100644 index 0000000000000000000000000000000000000000..e229cbd8af4127f12660e01a5dc741635c564f0e --- /dev/null +++ b/timecost/m4/tvae/tvae-m4-20260504_175331/models_300epochs/tvae_300epochs.pt @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:f00efa1443d564da74605e9f2b5702368cf97a6e2495daf901b29414f34e9ecf +size 264748 diff --git a/timecost/m4/tvae/tvae-m4-20260504_175331/public_gate/normalized_schema_snapshot.json b/timecost/m4/tvae/tvae-m4-20260504_175331/public_gate/normalized_schema_snapshot.json new file mode 100644 index 0000000000000000000000000000000000000000..31ed9818686b11907df75e872e4ffbe010330880 --- /dev/null +++ b/timecost/m4/tvae/tvae-m4-20260504_175331/public_gate/normalized_schema_snapshot.json @@ -0,0 +1,147 @@ +{ + "dataset_id": "m4", + "target_column": "charges", + "task_type": "regression", + "columns": [ + { + "name": "age", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 47, + "unique_ratio": 0.0212, + "example_values": [ + "46", + "38", + "19", + "27", + "26" + ] + } + }, + { + "name": "sex", + "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.000902, + "example_values": [ + "female", + "male" + ] + } + }, + { + "name": "bmi", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 538, + "unique_ratio": 0.24267, + "example_values": [ + "23.655", + "19.3", + "30.59", + "32.67", + "29.45" + ] + } + }, + { + "name": "children", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 6, + "unique_ratio": 0.002706, + "example_values": [ + "1", + "0", + "3", + "2", + "5" + ] + } + }, + { + "name": "smoker", + "role": "feature", + "semantic_type": "boolean", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 2, + "unique_ratio": 0.000902, + "example_values": [ + "yes", + "no" + ] + } + }, + { + "name": "region", + "role": "feature", + "semantic_type": "categorical", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 4, + "unique_ratio": 0.001804, + "example_values": [ + "northwest", + "southwest", + "southeast", + "northeast" + ] + } + }, + { + "name": "charges", + "role": "target", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 1281, + "unique_ratio": 0.577808, + "example_values": [ + "21677.28345", + "15820.699", + "1639.5631", + "2497.0383", + "2897.3235" + ] + } + } + ] +} \ No newline at end of file diff --git a/timecost/m4/tvae/tvae-m4-20260504_175331/public_gate/public_gate_report.json b/timecost/m4/tvae/tvae-m4-20260504_175331/public_gate/public_gate_report.json new file mode 100644 index 0000000000000000000000000000000000000000..e7a25408e2574124629ea9437356551e4d6f4790 --- /dev/null +++ b/timecost/m4/tvae/tvae-m4-20260504_175331/public_gate/public_gate_report.json @@ -0,0 +1,37 @@ +{ + "dataset_id": "m4", + "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": "charges", + "task_type": "regression", + "input_splits": { + "train": "/data/jialinzhang/SynthesizePipeline-server/DatasetNew/m4/m4-train.csv", + "val": "/data/jialinzhang/SynthesizePipeline-server/DatasetNew/m4/m4-val.csv", + "test": "/data/jialinzhang/SynthesizePipeline-server/DatasetNew/m4/m4-test.csv" + } +} \ No newline at end of file diff --git a/timecost/m4/tvae/tvae-m4-20260504_175331/public_gate/staged_input_manifest.json b/timecost/m4/tvae/tvae-m4-20260504_175331/public_gate/staged_input_manifest.json new file mode 100644 index 0000000000000000000000000000000000000000..1dde719e8651a2477d097a3c5f1c1d7f39230457 --- /dev/null +++ b/timecost/m4/tvae/tvae-m4-20260504_175331/public_gate/staged_input_manifest.json @@ -0,0 +1,152 @@ +{ + "dataset_id": "m4", + "target_column": "charges", + "task_type": "regression", + "train_csv": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/m4/tvae/tvae-m4-20260504_175331/staged/public/train.csv", + "val_csv": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/m4/tvae/tvae-m4-20260504_175331/staged/public/val.csv", + "test_csv": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/m4/tvae/tvae-m4-20260504_175331/staged/public/test.csv", + "features_json": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/m4/tvae/tvae-m4-20260504_175331/staged/public/staged_features.json", + "public_gate_report": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/m4/tvae/tvae-m4-20260504_175331/public_gate/public_gate_report.json", + "column_schema": [ + { + "name": "age", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 47, + "unique_ratio": 0.0212, + "example_values": [ + "46", + "38", + "19", + "27", + "26" + ] + } + }, + { + "name": "sex", + "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.000902, + "example_values": [ + "female", + "male" + ] + } + }, + { + "name": "bmi", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 538, + "unique_ratio": 0.24267, + "example_values": [ + "23.655", + "19.3", + "30.59", + "32.67", + "29.45" + ] + } + }, + { + "name": "children", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 6, + "unique_ratio": 0.002706, + "example_values": [ + "1", + "0", + "3", + "2", + "5" + ] + } + }, + { + "name": "smoker", + "role": "feature", + "semantic_type": "boolean", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 2, + "unique_ratio": 0.000902, + "example_values": [ + "yes", + "no" + ] + } + }, + { + "name": "region", + "role": "feature", + "semantic_type": "categorical", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 4, + "unique_ratio": 0.001804, + "example_values": [ + "northwest", + "southwest", + "southeast", + "northeast" + ] + } + }, + { + "name": "charges", + "role": "target", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 1281, + "unique_ratio": 0.577808, + "example_values": [ + "21677.28345", + "15820.699", + "1639.5631", + "2497.0383", + "2897.3235" + ] + } + } + ] +} \ No newline at end of file diff --git a/timecost/m4/tvae/tvae-m4-20260504_175331/run_config.json b/timecost/m4/tvae/tvae-m4-20260504_175331/run_config.json new file mode 100644 index 0000000000000000000000000000000000000000..71797307e0a97f2af74b7c2cf967ace2547d9bad --- /dev/null +++ b/timecost/m4/tvae/tvae-m4-20260504_175331/run_config.json @@ -0,0 +1,45 @@ +{ + "schema_version": 1, + "recorded_at": "2026-05-04T17:53:31", + "dataset_id": "m4", + "model": "tvae", + "work_dir": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/m4/tvae/tvae-m4-20260504_175331", + "dataset_source_requested": "new", + "dataset_source_resolved": "new", + "cli_args": { + "model": "tvae", + "dataset": "m4", + "dataset_source": "new", + "train": true, + "generate": true, + "num_rows": 0, + "epochs": null, + "output_dir": null, + "model_dir": null, + "work_dir": null, + "resume": false, + "no_stats": false + }, + "resolved": { + "num_rows": 2217, + "model_path": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/m4/tvae/tvae-m4-20260504_175331/models_300epochs/tvae_300epochs.pt", + "output_csv": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/m4/tvae/tvae-m4-20260504_175331/tvae-m4-2217-20260504_175349.csv" + }, + "input_artifacts": { + "public_gate_report": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/m4/tvae/tvae-m4-20260504_175331/public_gate/public_gate_report.json", + "public_manifest": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/m4/tvae/tvae-m4-20260504_175331/public_gate/staged_input_manifest.json", + "model_manifest": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/m4/tvae/tvae-m4-20260504_175331/staged/tvae/model_input_manifest.json", + "train_csv": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/m4/tvae/tvae-m4-20260504_175331/staged/public/train.csv", + "features_json": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/m4/tvae/tvae-m4-20260504_175331/staged/public/staged_features.json", + "target_column": "charges", + "task_type": "regression" + }, + "env_overrides": { + "BENCHMARK_TVAE_GPUS": "device=3", + "TVAE_BATCH_SIZE": "256", + "TVAE_COMPRESS_DIMS": "64,64", + "TVAE_DECOMPRESS_DIMS": "64,64", + "TVAE_EMBEDDING_DIM": "32", + "TVAE_EPOCHS": "100" + } +} \ No newline at end of file diff --git a/timecost/m4/tvae/tvae-m4-20260504_175331/runtime_result.json b/timecost/m4/tvae/tvae-m4-20260504_175331/runtime_result.json new file mode 100644 index 0000000000000000000000000000000000000000..8d9fff1d4d3a73f0ab5c57ec96df348e154dbb2f --- /dev/null +++ b/timecost/m4/tvae/tvae-m4-20260504_175331/runtime_result.json @@ -0,0 +1,27 @@ +{ + "dataset_id": "m4", + "model": "tvae", + "run_id": "tvae-m4-20260504_175331", + "public_gate_status": "pass", + "adapter_ready_status": "pass", + "train_status": "success", + "generate_status": "success", + "reason_code": null, + "reason_detail": null, + "artifacts": { + "synthetic_csv": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/m4/tvae/tvae-m4-20260504_175331/tvae-m4-2217-20260504_175349.csv", + "model_path": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/m4/tvae/tvae-m4-20260504_175331/models_300epochs/tvae_300epochs.pt" + }, + "timings": { + "train": { + "started_at": "2026-05-04T17:53:31", + "ended_at": "2026-05-04T17:53:49", + "duration_sec": 18.291 + }, + "generate": { + "started_at": "2026-05-04T17:53:49", + "ended_at": "2026-05-04T17:53:54", + "duration_sec": 4.931 + } + } +} \ No newline at end of file diff --git a/timecost/m4/tvae/tvae-m4-20260504_175331/staged/public/staged_features.json b/timecost/m4/tvae/tvae-m4-20260504_175331/staged/public/staged_features.json new file mode 100644 index 0000000000000000000000000000000000000000..d6acd098c35111f423f3ffff2cfd1754bc5dfebc --- /dev/null +++ b/timecost/m4/tvae/tvae-m4-20260504_175331/staged/public/staged_features.json @@ -0,0 +1,37 @@ +[ + { + "feature_name": "age", + "data_type": "continuous", + "is_target": false + }, + { + "feature_name": "sex", + "data_type": "categorical", + "is_target": false + }, + { + "feature_name": "bmi", + "data_type": "continuous", + "is_target": false + }, + { + "feature_name": "children", + "data_type": "continuous", + "is_target": false + }, + { + "feature_name": "smoker", + "data_type": "binary", + "is_target": false + }, + { + "feature_name": "region", + "data_type": "categorical", + "is_target": false + }, + { + "feature_name": "charges", + "data_type": "continuous", + "is_target": true + } +] \ No newline at end of file diff --git a/timecost/m4/tvae/tvae-m4-20260504_175331/staged/public/test.csv b/timecost/m4/tvae/tvae-m4-20260504_175331/staged/public/test.csv new file mode 100644 index 0000000000000000000000000000000000000000..c88a2e7cfcd715bb421cb56eb078033da45c4dc8 --- /dev/null +++ b/timecost/m4/tvae/tvae-m4-20260504_175331/staged/public/test.csv @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:4c541b677fb2d45c5bc79338eeee9fd8c91484b195a0c2c546c2fbabf113b7ea +size 11298 diff --git a/timecost/m4/tvae/tvae-m4-20260504_175331/staged/public/train.csv b/timecost/m4/tvae/tvae-m4-20260504_175331/staged/public/train.csv new file mode 100644 index 0000000000000000000000000000000000000000..5a05019d786529e0617291766c4fbe016ca01bf5 --- /dev/null +++ b/timecost/m4/tvae/tvae-m4-20260504_175331/staged/public/train.csv @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:614ebfac5f41d6f661aff675fa18c0f933a8d9bcc77ea71b7b2360c2f0155837 +size 90069 diff --git a/timecost/m4/tvae/tvae-m4-20260504_175331/staged/public/val.csv b/timecost/m4/tvae/tvae-m4-20260504_175331/staged/public/val.csv new file mode 100644 index 0000000000000000000000000000000000000000..d78fe5ad1537c437ba9ac2629f2aa60a6c17e708 --- /dev/null +++ b/timecost/m4/tvae/tvae-m4-20260504_175331/staged/public/val.csv @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:e55f5edbe7942ff01630de91a9c70dfbc6445eba76c7b970350364546b67c2d7 +size 11218 diff --git a/timecost/m4/tvae/tvae-m4-20260504_175331/staged/tvae/adapter_report.json b/timecost/m4/tvae/tvae-m4-20260504_175331/staged/tvae/adapter_report.json new file mode 100644 index 0000000000000000000000000000000000000000..470c1d0d8debe339dfbb1574cee4a3eafe1c899e --- /dev/null +++ b/timecost/m4/tvae/tvae-m4-20260504_175331/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-Benchmark-trainonly-v1/m4/tvae/tvae-m4-20260504_175331/staged/tvae/model_input_manifest.json" +} \ No newline at end of file diff --git a/timecost/m4/tvae/tvae-m4-20260504_175331/staged/tvae/adapter_transforms_applied.json b/timecost/m4/tvae/tvae-m4-20260504_175331/staged/tvae/adapter_transforms_applied.json new file mode 100644 index 0000000000000000000000000000000000000000..0637a088a01e8ddab3bf3fa98dbe804cbde1a0dc --- /dev/null +++ b/timecost/m4/tvae/tvae-m4-20260504_175331/staged/tvae/adapter_transforms_applied.json @@ -0,0 +1 @@ +[] \ No newline at end of file diff --git a/timecost/m4/tvae/tvae-m4-20260504_175331/staged/tvae/model_input_manifest.json b/timecost/m4/tvae/tvae-m4-20260504_175331/staged/tvae/model_input_manifest.json new file mode 100644 index 0000000000000000000000000000000000000000..a10b01ee4c8705e73edbac3554347b0446b4fbd4 --- /dev/null +++ b/timecost/m4/tvae/tvae-m4-20260504_175331/staged/tvae/model_input_manifest.json @@ -0,0 +1,154 @@ +{ + "dataset_id": "m4", + "model": "tvae", + "target_column": "charges", + "task_type": "regression", + "column_schema": [ + { + "name": "age", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 47, + "unique_ratio": 0.0212, + "example_values": [ + "46", + "38", + "19", + "27", + "26" + ] + } + }, + { + "name": "sex", + "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.000902, + "example_values": [ + "female", + "male" + ] + } + }, + { + "name": "bmi", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 538, + "unique_ratio": 0.24267, + "example_values": [ + "23.655", + "19.3", + "30.59", + "32.67", + "29.45" + ] + } + }, + { + "name": "children", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 6, + "unique_ratio": 0.002706, + "example_values": [ + "1", + "0", + "3", + "2", + "5" + ] + } + }, + { + "name": "smoker", + "role": "feature", + "semantic_type": "boolean", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 2, + "unique_ratio": 0.000902, + "example_values": [ + "yes", + "no" + ] + } + }, + { + "name": "region", + "role": "feature", + "semantic_type": "categorical", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 4, + "unique_ratio": 0.001804, + "example_values": [ + "northwest", + "southwest", + "southeast", + "northeast" + ] + } + }, + { + "name": "charges", + "role": "target", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 1281, + "unique_ratio": 0.577808, + "example_values": [ + "21677.28345", + "15820.699", + "1639.5631", + "2497.0383", + "2897.3235" + ] + } + } + ], + "public_manifest": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/m4/tvae/tvae-m4-20260504_175331/public_gate/staged_input_manifest.json", + "train_csv": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/m4/tvae/tvae-m4-20260504_175331/staged/public/train.csv", + "val_csv": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/m4/tvae/tvae-m4-20260504_175331/staged/public/val.csv", + "test_csv": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/m4/tvae/tvae-m4-20260504_175331/staged/public/test.csv", + "features_json": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/m4/tvae/tvae-m4-20260504_175331/staged/public/staged_features.json", + "public_gate_report": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/m4/tvae/tvae-m4-20260504_175331/public_gate/public_gate_report.json" +} \ No newline at end of file diff --git a/timecost/m4/tvae/tvae-m4-20260504_175331/tvae-m4-2217-20260504_175349.csv b/timecost/m4/tvae/tvae-m4-20260504_175331/tvae-m4-2217-20260504_175349.csv new file mode 100644 index 0000000000000000000000000000000000000000..b4180a57b42d16ad5884478676d597804f2a2abc --- /dev/null +++ b/timecost/m4/tvae/tvae-m4-20260504_175331/tvae-m4-2217-20260504_175349.csv @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:b3901b669115b3a46120c956bc92e368c0b0ebe459743844f643091b7d2c6b1c +size 135479 diff --git a/timecost/m4/tvae/tvae-m4-20260504_175331/tvae_metadata.json b/timecost/m4/tvae/tvae-m4-20260504_175331/tvae_metadata.json new file mode 100644 index 0000000000000000000000000000000000000000..d89b1e0b3095638c982d4d3321d21a8bedcd33ae --- /dev/null +++ b/timecost/m4/tvae/tvae-m4-20260504_175331/tvae_metadata.json @@ -0,0 +1,32 @@ +{ + "columns": [ + { + "name": "age", + "type": "continuous" + }, + { + "name": "sex", + "type": "categorical" + }, + { + "name": "bmi", + "type": "continuous" + }, + { + "name": "children", + "type": "continuous" + }, + { + "name": "smoker", + "type": "categorical" + }, + { + "name": "region", + "type": "categorical" + }, + { + "name": "charges", + "type": "continuous" + } + ] +} \ No newline at end of file diff --git a/timecost/m4/tvae/tvae-m4-20260504_175407/_tvae_generate.py b/timecost/m4/tvae/tvae-m4-20260504_175407/_tvae_generate.py new file mode 100644 index 0000000000000000000000000000000000000000..ce22b690c0cf1d6a0c43dff49a21a99b4a9955a0 --- /dev/null +++ b/timecost/m4/tvae/tvae-m4-20260504_175407/_tvae_generate.py @@ -0,0 +1,23 @@ +import os, sys +sys.path.insert(0, "/work") +from src.SpecificModels.ctgan_joblib_parallel_cap import apply_parallel_cap_from_env +apply_parallel_cap_from_env() +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 +os.environ.setdefault("LOKY_MAX_CPU_COUNT", "8") +os.environ.setdefault("OPENBLAS_NUM_THREADS", "8") +os.environ.setdefault("MKL_NUM_THREADS", "8") +model = TVAE.load("/work/output-Benchmark-trainonly-v1/m4/tvae/tvae-m4-20260504_175407/models_300epochs/tvae_300epochs.pt") +total = 2217 +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-Benchmark-trainonly-v1/m4/tvae/tvae-m4-20260504_175407/tvae-m4-2217-20260504_175431.csv", index=False) +print(f"[TVAE] Generated {total} rows (chunks={len(parts)}) -> /work/output-Benchmark-trainonly-v1/m4/tvae/tvae-m4-20260504_175407/tvae-m4-2217-20260504_175431.csv") diff --git a/timecost/m4/tvae/tvae-m4-20260504_175407/_tvae_train.py b/timecost/m4/tvae/tvae-m4-20260504_175407/_tvae_train.py new file mode 100644 index 0000000000000000000000000000000000000000..d145109f933ae3ccfbc8e5969da96387a97fcd43 --- /dev/null +++ b/timecost/m4/tvae/tvae-m4-20260504_175407/_tvae_train.py @@ -0,0 +1,39 @@ +import json, os, sys +sys.path.insert(0, "/work") +from src.SpecificModels.ctgan_joblib_parallel_cap import apply_parallel_cap_from_env +apply_parallel_cap_from_env() +import pandas as pd +from ctgan.data import read_csv +from ctgan.synthesizers.tvae import TVAE + +# Keep transform stage parallelism bounded for stability on shared host. +os.environ.setdefault("LOKY_MAX_CPU_COUNT", "8") +os.environ.setdefault("OPENBLAS_NUM_THREADS", "8") +os.environ.setdefault("MKL_NUM_THREADS", "8") +_nj = (os.environ.get("TVAE_CTGAN_JOBTRANS_N_JOBS") or "").strip() +if _nj: + print("[TVAE] joblib Parallel cap ON, TVAE_CTGAN_JOBTRANS_N_JOBS=" + _nj) +else: + print("[TVAE] joblib Parallel cap OFF (unset TVAE_CTGAN_JOBTRANS_N_JOBS)") +print("[TVAE] LOKY_MAX_CPU_COUNT=" + str(os.environ.get("LOKY_MAX_CPU_COUNT", ""))) + +csv_path = "/work/output-Benchmark-trainonly-v1/m4/tvae/tvae-m4-20260504_175407/staged/public/train.csv" +meta_path = "/work/output-Benchmark-trainonly-v1/m4/tvae/tvae-m4-20260504_175407/tvae_metadata.json" +save_path = "/work/output-Benchmark-trainonly-v1/m4/tvae/tvae-m4-20260504_175407/models_300epochs/tvae_300epochs.pt" +epochs = int(os.environ.get("TVAE_EPOCHS", 300)) +batch_size = int(os.environ.get("TVAE_BATCH_SIZE", "500")) +embedding_dim = int(os.environ.get("TVAE_EMBEDDING_DIM", "128")) +def _parse_dims(name, default): + raw = (os.environ.get(name) or "").strip() + if not raw: + return default + return tuple(int(x.strip()) for x in raw.split(",") if x.strip()) +compress_dims = _parse_dims("TVAE_COMPRESS_DIMS", (128, 128)) +decompress_dims = _parse_dims("TVAE_DECOMPRESS_DIMS", (128, 128)) + +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}, batch_size={batch_size}, embedding_dim={embedding_dim}, compress_dims={compress_dims}, decompress_dims={decompress_dims}") +model = TVAE(epochs=epochs, batch_size=batch_size, embedding_dim=embedding_dim, compress_dims=compress_dims, decompress_dims=decompress_dims) +model.fit(data, discrete_columns) +model.save(save_path) +print(f"[TVAE] Model saved -> {save_path}") diff --git a/timecost/m4/tvae/tvae-m4-20260504_175407/gen_20260504_175431.log b/timecost/m4/tvae/tvae-m4-20260504_175407/gen_20260504_175431.log new file mode 100644 index 0000000000000000000000000000000000000000..7a2bdd2a830702ca913ec67da6b9cb26556e1acc --- /dev/null +++ b/timecost/m4/tvae/tvae-m4-20260504_175407/gen_20260504_175431.log @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:2d559e320b3bee74da788cc285a06ae8720e75230a0db1eb51ca71e53784f832 +size 404 diff --git a/timecost/m4/tvae/tvae-m4-20260504_175407/input_snapshot.json b/timecost/m4/tvae/tvae-m4-20260504_175407/input_snapshot.json new file mode 100644 index 0000000000000000000000000000000000000000..60c34c26acabd61c3c87a32ef8cbe89659d8c727 --- /dev/null +++ b/timecost/m4/tvae/tvae-m4-20260504_175407/input_snapshot.json @@ -0,0 +1,36 @@ +{ + "dataset_id": "m4", + "model": "tvae", + "inputs": { + "train_csv": { + "path": "/data/jialinzhang/SynthesizePipeline-server/DatasetNew/m4/m4-train.csv", + "exists": true, + "size": 92191, + "sha256": "396b9d409ca21bf4a4cd329bdf5b7796aa0ae6356fa8d89b8eb669b5880b81f1" + }, + "val_csv": { + "path": "/data/jialinzhang/SynthesizePipeline-server/DatasetNew/m4/m4-val.csv", + "exists": true, + "size": 11482, + "sha256": "ee3c247d02f56e1687d03c381e13125d6a3a2a411ac7f202ba8520a4be9f1784" + }, + "test_csv": { + "path": "/data/jialinzhang/SynthesizePipeline-server/DatasetNew/m4/m4-test.csv", + "exists": true, + "size": 11559, + "sha256": "cadb9941124001b8fa7cb1ebae43b70a9ca56294f4df4d3c2f22c164c41757d4" + }, + "profile_json": { + "path": "/data/jialinzhang/SynthesizePipeline-server/DatasetNew/artifacts/data_core/tabular/m4/m4-dataset_profile.json", + "exists": true, + "size": 3336, + "sha256": "83e2764810e4a0e8cdece3a28dbd9134b7c9df6f2e56953e46d024ad2c4e035f" + }, + "contract_json": { + "path": "/data/jialinzhang/SynthesizePipeline-server/DatasetNew/artifacts/data_core/tabular/m4/m4-dataset_contract_v1.json", + "exists": true, + "size": 3810, + "sha256": "c23641b258629a845b164099bd0132886f8f6d0100e990494e0f92540f8987d9" + } + } +} \ No newline at end of file diff --git a/timecost/m4/tvae/tvae-m4-20260504_175407/models_300epochs/train_20260504_175407.log b/timecost/m4/tvae/tvae-m4-20260504_175407/models_300epochs/train_20260504_175407.log new file mode 100644 index 0000000000000000000000000000000000000000..bf83b297fb071d15ff04372380dabc4196db60fb --- /dev/null +++ b/timecost/m4/tvae/tvae-m4-20260504_175407/models_300epochs/train_20260504_175407.log @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:ff90102b17458f07ebfe6886f6d8c47f1fc7cc1fcc52d06a233551c0e38f3ad7 +size 618 diff --git a/timecost/m4/tvae/tvae-m4-20260504_175407/models_300epochs/tvae_300epochs.pt b/timecost/m4/tvae/tvae-m4-20260504_175407/models_300epochs/tvae_300epochs.pt new file mode 100644 index 0000000000000000000000000000000000000000..be3d93001c2e864bd637815838434984f24da1b3 --- /dev/null +++ b/timecost/m4/tvae/tvae-m4-20260504_175407/models_300epochs/tvae_300epochs.pt @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:c165ac7b339973e99bbef1131338c6c945532187a0e2bbfd9de49bc2313bbe68 +size 374508 diff --git a/timecost/m4/tvae/tvae-m4-20260504_175407/public_gate/normalized_schema_snapshot.json b/timecost/m4/tvae/tvae-m4-20260504_175407/public_gate/normalized_schema_snapshot.json new file mode 100644 index 0000000000000000000000000000000000000000..31ed9818686b11907df75e872e4ffbe010330880 --- /dev/null +++ b/timecost/m4/tvae/tvae-m4-20260504_175407/public_gate/normalized_schema_snapshot.json @@ -0,0 +1,147 @@ +{ + "dataset_id": "m4", + "target_column": "charges", + "task_type": "regression", + "columns": [ + { + "name": "age", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 47, + "unique_ratio": 0.0212, + "example_values": [ + "46", + "38", + "19", + "27", + "26" + ] + } + }, + { + "name": "sex", + "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.000902, + "example_values": [ + "female", + "male" + ] + } + }, + { + "name": "bmi", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 538, + "unique_ratio": 0.24267, + "example_values": [ + "23.655", + "19.3", + "30.59", + "32.67", + "29.45" + ] + } + }, + { + "name": "children", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 6, + "unique_ratio": 0.002706, + "example_values": [ + "1", + "0", + "3", + "2", + "5" + ] + } + }, + { + "name": "smoker", + "role": "feature", + "semantic_type": "boolean", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 2, + "unique_ratio": 0.000902, + "example_values": [ + "yes", + "no" + ] + } + }, + { + "name": "region", + "role": "feature", + "semantic_type": "categorical", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 4, + "unique_ratio": 0.001804, + "example_values": [ + "northwest", + "southwest", + "southeast", + "northeast" + ] + } + }, + { + "name": "charges", + "role": "target", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 1281, + "unique_ratio": 0.577808, + "example_values": [ + "21677.28345", + "15820.699", + "1639.5631", + "2497.0383", + "2897.3235" + ] + } + } + ] +} \ No newline at end of file diff --git a/timecost/m4/tvae/tvae-m4-20260504_175407/public_gate/public_gate_report.json b/timecost/m4/tvae/tvae-m4-20260504_175407/public_gate/public_gate_report.json new file mode 100644 index 0000000000000000000000000000000000000000..e7a25408e2574124629ea9437356551e4d6f4790 --- /dev/null +++ b/timecost/m4/tvae/tvae-m4-20260504_175407/public_gate/public_gate_report.json @@ -0,0 +1,37 @@ +{ + "dataset_id": "m4", + "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": "charges", + "task_type": "regression", + "input_splits": { + "train": "/data/jialinzhang/SynthesizePipeline-server/DatasetNew/m4/m4-train.csv", + "val": "/data/jialinzhang/SynthesizePipeline-server/DatasetNew/m4/m4-val.csv", + "test": "/data/jialinzhang/SynthesizePipeline-server/DatasetNew/m4/m4-test.csv" + } +} \ No newline at end of file diff --git a/timecost/m4/tvae/tvae-m4-20260504_175407/public_gate/staged_input_manifest.json b/timecost/m4/tvae/tvae-m4-20260504_175407/public_gate/staged_input_manifest.json new file mode 100644 index 0000000000000000000000000000000000000000..eb0801ec96685c9a9fbae813d6242ec57c5340d2 --- /dev/null +++ b/timecost/m4/tvae/tvae-m4-20260504_175407/public_gate/staged_input_manifest.json @@ -0,0 +1,152 @@ +{ + "dataset_id": "m4", + "target_column": "charges", + "task_type": "regression", + "train_csv": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/m4/tvae/tvae-m4-20260504_175407/staged/public/train.csv", + "val_csv": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/m4/tvae/tvae-m4-20260504_175407/staged/public/val.csv", + "test_csv": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/m4/tvae/tvae-m4-20260504_175407/staged/public/test.csv", + "features_json": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/m4/tvae/tvae-m4-20260504_175407/staged/public/staged_features.json", + "public_gate_report": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/m4/tvae/tvae-m4-20260504_175407/public_gate/public_gate_report.json", + "column_schema": [ + { + "name": "age", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 47, + "unique_ratio": 0.0212, + "example_values": [ + "46", + "38", + "19", + "27", + "26" + ] + } + }, + { + "name": "sex", + "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.000902, + "example_values": [ + "female", + "male" + ] + } + }, + { + "name": "bmi", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 538, + "unique_ratio": 0.24267, + "example_values": [ + "23.655", + "19.3", + "30.59", + "32.67", + "29.45" + ] + } + }, + { + "name": "children", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 6, + "unique_ratio": 0.002706, + "example_values": [ + "1", + "0", + "3", + "2", + "5" + ] + } + }, + { + "name": "smoker", + "role": "feature", + "semantic_type": "boolean", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 2, + "unique_ratio": 0.000902, + "example_values": [ + "yes", + "no" + ] + } + }, + { + "name": "region", + "role": "feature", + "semantic_type": "categorical", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 4, + "unique_ratio": 0.001804, + "example_values": [ + "northwest", + "southwest", + "southeast", + "northeast" + ] + } + }, + { + "name": "charges", + "role": "target", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 1281, + "unique_ratio": 0.577808, + "example_values": [ + "21677.28345", + "15820.699", + "1639.5631", + "2497.0383", + "2897.3235" + ] + } + } + ] +} \ No newline at end of file diff --git a/timecost/m4/tvae/tvae-m4-20260504_175407/run_config.json b/timecost/m4/tvae/tvae-m4-20260504_175407/run_config.json new file mode 100644 index 0000000000000000000000000000000000000000..85e0fb54421528c038fb188663a3ffb8c0a503c0 --- /dev/null +++ b/timecost/m4/tvae/tvae-m4-20260504_175407/run_config.json @@ -0,0 +1,45 @@ +{ + "schema_version": 1, + "recorded_at": "2026-05-04T17:54:07", + "dataset_id": "m4", + "model": "tvae", + "work_dir": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/m4/tvae/tvae-m4-20260504_175407", + "dataset_source_requested": "new", + "dataset_source_resolved": "new", + "cli_args": { + "model": "tvae", + "dataset": "m4", + "dataset_source": "new", + "train": true, + "generate": true, + "num_rows": 0, + "epochs": null, + "output_dir": null, + "model_dir": null, + "work_dir": null, + "resume": false, + "no_stats": false + }, + "resolved": { + "num_rows": 2217, + "model_path": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/m4/tvae/tvae-m4-20260504_175407/models_300epochs/tvae_300epochs.pt", + "output_csv": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/m4/tvae/tvae-m4-20260504_175407/tvae-m4-2217-20260504_175431.csv" + }, + "input_artifacts": { + "public_gate_report": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/m4/tvae/tvae-m4-20260504_175407/public_gate/public_gate_report.json", + "public_manifest": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/m4/tvae/tvae-m4-20260504_175407/public_gate/staged_input_manifest.json", + "model_manifest": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/m4/tvae/tvae-m4-20260504_175407/staged/tvae/model_input_manifest.json", + "train_csv": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/m4/tvae/tvae-m4-20260504_175407/staged/public/train.csv", + "features_json": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/m4/tvae/tvae-m4-20260504_175407/staged/public/staged_features.json", + "target_column": "charges", + "task_type": "regression" + }, + "env_overrides": { + "BENCHMARK_TVAE_GPUS": "device=3", + "TVAE_BATCH_SIZE": "256", + "TVAE_COMPRESS_DIMS": "128,128", + "TVAE_DECOMPRESS_DIMS": "128,128", + "TVAE_EMBEDDING_DIM": "64", + "TVAE_EPOCHS": "200" + } +} \ No newline at end of file diff --git a/timecost/m4/tvae/tvae-m4-20260504_175407/runtime_result.json b/timecost/m4/tvae/tvae-m4-20260504_175407/runtime_result.json new file mode 100644 index 0000000000000000000000000000000000000000..8155ff06da6f1b94c81f9bec4b973b83ff1680c5 --- /dev/null +++ b/timecost/m4/tvae/tvae-m4-20260504_175407/runtime_result.json @@ -0,0 +1,27 @@ +{ + "dataset_id": "m4", + "model": "tvae", + "run_id": "tvae-m4-20260504_175407", + "public_gate_status": "pass", + "adapter_ready_status": "pass", + "train_status": "success", + "generate_status": "success", + "reason_code": null, + "reason_detail": null, + "artifacts": { + "synthetic_csv": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/m4/tvae/tvae-m4-20260504_175407/tvae-m4-2217-20260504_175431.csv", + "model_path": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/m4/tvae/tvae-m4-20260504_175407/models_300epochs/tvae_300epochs.pt" + }, + "timings": { + "train": { + "started_at": "2026-05-04T17:54:07", + "ended_at": "2026-05-04T17:54:31", + "duration_sec": 23.982 + }, + "generate": { + "started_at": "2026-05-04T17:54:31", + "ended_at": "2026-05-04T17:54:37", + "duration_sec": 5.22 + } + } +} \ No newline at end of file diff --git a/timecost/m4/tvae/tvae-m4-20260504_175407/staged/public/staged_features.json b/timecost/m4/tvae/tvae-m4-20260504_175407/staged/public/staged_features.json new file mode 100644 index 0000000000000000000000000000000000000000..d6acd098c35111f423f3ffff2cfd1754bc5dfebc --- /dev/null +++ b/timecost/m4/tvae/tvae-m4-20260504_175407/staged/public/staged_features.json @@ -0,0 +1,37 @@ +[ + { + "feature_name": "age", + "data_type": "continuous", + "is_target": false + }, + { + "feature_name": "sex", + "data_type": "categorical", + "is_target": false + }, + { + "feature_name": "bmi", + "data_type": "continuous", + "is_target": false + }, + { + "feature_name": "children", + "data_type": "continuous", + "is_target": false + }, + { + "feature_name": "smoker", + "data_type": "binary", + "is_target": false + }, + { + "feature_name": "region", + "data_type": "categorical", + "is_target": false + }, + { + "feature_name": "charges", + "data_type": "continuous", + "is_target": true + } +] \ No newline at end of file diff --git a/timecost/m4/tvae/tvae-m4-20260504_175407/staged/public/test.csv b/timecost/m4/tvae/tvae-m4-20260504_175407/staged/public/test.csv new file mode 100644 index 0000000000000000000000000000000000000000..c88a2e7cfcd715bb421cb56eb078033da45c4dc8 --- /dev/null +++ b/timecost/m4/tvae/tvae-m4-20260504_175407/staged/public/test.csv @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:4c541b677fb2d45c5bc79338eeee9fd8c91484b195a0c2c546c2fbabf113b7ea +size 11298 diff --git a/timecost/m4/tvae/tvae-m4-20260504_175407/staged/public/train.csv b/timecost/m4/tvae/tvae-m4-20260504_175407/staged/public/train.csv new file mode 100644 index 0000000000000000000000000000000000000000..5a05019d786529e0617291766c4fbe016ca01bf5 --- /dev/null +++ b/timecost/m4/tvae/tvae-m4-20260504_175407/staged/public/train.csv @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:614ebfac5f41d6f661aff675fa18c0f933a8d9bcc77ea71b7b2360c2f0155837 +size 90069 diff --git a/timecost/m4/tvae/tvae-m4-20260504_175407/staged/public/val.csv b/timecost/m4/tvae/tvae-m4-20260504_175407/staged/public/val.csv new file mode 100644 index 0000000000000000000000000000000000000000..d78fe5ad1537c437ba9ac2629f2aa60a6c17e708 --- /dev/null +++ b/timecost/m4/tvae/tvae-m4-20260504_175407/staged/public/val.csv @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:e55f5edbe7942ff01630de91a9c70dfbc6445eba76c7b970350364546b67c2d7 +size 11218 diff --git a/timecost/m4/tvae/tvae-m4-20260504_175407/staged/tvae/adapter_report.json b/timecost/m4/tvae/tvae-m4-20260504_175407/staged/tvae/adapter_report.json new file mode 100644 index 0000000000000000000000000000000000000000..d3ceab1d24b3a337a6729c31a8caf961eecd2506 --- /dev/null +++ b/timecost/m4/tvae/tvae-m4-20260504_175407/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-Benchmark-trainonly-v1/m4/tvae/tvae-m4-20260504_175407/staged/tvae/model_input_manifest.json" +} \ No newline at end of file diff --git a/timecost/m4/tvae/tvae-m4-20260504_175407/staged/tvae/adapter_transforms_applied.json b/timecost/m4/tvae/tvae-m4-20260504_175407/staged/tvae/adapter_transforms_applied.json new file mode 100644 index 0000000000000000000000000000000000000000..0637a088a01e8ddab3bf3fa98dbe804cbde1a0dc --- /dev/null +++ b/timecost/m4/tvae/tvae-m4-20260504_175407/staged/tvae/adapter_transforms_applied.json @@ -0,0 +1 @@ +[] \ No newline at end of file diff --git a/timecost/m4/tvae/tvae-m4-20260504_175407/staged/tvae/model_input_manifest.json b/timecost/m4/tvae/tvae-m4-20260504_175407/staged/tvae/model_input_manifest.json new file mode 100644 index 0000000000000000000000000000000000000000..77943e13a9d58931e45134d53195514fa45fbec9 --- /dev/null +++ b/timecost/m4/tvae/tvae-m4-20260504_175407/staged/tvae/model_input_manifest.json @@ -0,0 +1,154 @@ +{ + "dataset_id": "m4", + "model": "tvae", + "target_column": "charges", + "task_type": "regression", + "column_schema": [ + { + "name": "age", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 47, + "unique_ratio": 0.0212, + "example_values": [ + "46", + "38", + "19", + "27", + "26" + ] + } + }, + { + "name": "sex", + "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.000902, + "example_values": [ + "female", + "male" + ] + } + }, + { + "name": "bmi", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 538, + "unique_ratio": 0.24267, + "example_values": [ + "23.655", + "19.3", + "30.59", + "32.67", + "29.45" + ] + } + }, + { + "name": "children", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 6, + "unique_ratio": 0.002706, + "example_values": [ + "1", + "0", + "3", + "2", + "5" + ] + } + }, + { + "name": "smoker", + "role": "feature", + "semantic_type": "boolean", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 2, + "unique_ratio": 0.000902, + "example_values": [ + "yes", + "no" + ] + } + }, + { + "name": "region", + "role": "feature", + "semantic_type": "categorical", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 4, + "unique_ratio": 0.001804, + "example_values": [ + "northwest", + "southwest", + "southeast", + "northeast" + ] + } + }, + { + "name": "charges", + "role": "target", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 1281, + "unique_ratio": 0.577808, + "example_values": [ + "21677.28345", + "15820.699", + "1639.5631", + "2497.0383", + "2897.3235" + ] + } + } + ], + "public_manifest": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/m4/tvae/tvae-m4-20260504_175407/public_gate/staged_input_manifest.json", + "train_csv": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/m4/tvae/tvae-m4-20260504_175407/staged/public/train.csv", + "val_csv": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/m4/tvae/tvae-m4-20260504_175407/staged/public/val.csv", + "test_csv": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/m4/tvae/tvae-m4-20260504_175407/staged/public/test.csv", + "features_json": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/m4/tvae/tvae-m4-20260504_175407/staged/public/staged_features.json", + "public_gate_report": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/m4/tvae/tvae-m4-20260504_175407/public_gate/public_gate_report.json" +} \ No newline at end of file diff --git a/timecost/m4/tvae/tvae-m4-20260504_175407/tvae-m4-2217-20260504_175431.csv b/timecost/m4/tvae/tvae-m4-20260504_175407/tvae-m4-2217-20260504_175431.csv new file mode 100644 index 0000000000000000000000000000000000000000..6782c785f5ba68b4490045ef62ffb08322d5d0f1 --- /dev/null +++ b/timecost/m4/tvae/tvae-m4-20260504_175407/tvae-m4-2217-20260504_175431.csv @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:d1beaf0f631c81739f92d94d2b563d598045876727c2857bc5d562accd79a344 +size 135440 diff --git a/timecost/m4/tvae/tvae-m4-20260504_175407/tvae_metadata.json b/timecost/m4/tvae/tvae-m4-20260504_175407/tvae_metadata.json new file mode 100644 index 0000000000000000000000000000000000000000..d89b1e0b3095638c982d4d3321d21a8bedcd33ae --- /dev/null +++ b/timecost/m4/tvae/tvae-m4-20260504_175407/tvae_metadata.json @@ -0,0 +1,32 @@ +{ + "columns": [ + { + "name": "age", + "type": "continuous" + }, + { + "name": "sex", + "type": "categorical" + }, + { + "name": "bmi", + "type": "continuous" + }, + { + "name": "children", + "type": "continuous" + }, + { + "name": "smoker", + "type": "categorical" + }, + { + "name": "region", + "type": "categorical" + }, + { + "name": "charges", + "type": "continuous" + } + ] +} \ No newline at end of file diff --git a/timecost/m4/tvae/tvae-m4-20260504_175449/_tvae_generate.py b/timecost/m4/tvae/tvae-m4-20260504_175449/_tvae_generate.py new file mode 100644 index 0000000000000000000000000000000000000000..8ce529c5975d8135d8bc87e2d902ce1cd0a5fab7 --- /dev/null +++ b/timecost/m4/tvae/tvae-m4-20260504_175449/_tvae_generate.py @@ -0,0 +1,23 @@ +import os, sys +sys.path.insert(0, "/work") +from src.SpecificModels.ctgan_joblib_parallel_cap import apply_parallel_cap_from_env +apply_parallel_cap_from_env() +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 +os.environ.setdefault("LOKY_MAX_CPU_COUNT", "8") +os.environ.setdefault("OPENBLAS_NUM_THREADS", "8") +os.environ.setdefault("MKL_NUM_THREADS", "8") +model = TVAE.load("/work/output-Benchmark-trainonly-v1/m4/tvae/tvae-m4-20260504_175449/models_300epochs/tvae_300epochs.pt") +total = 2217 +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-Benchmark-trainonly-v1/m4/tvae/tvae-m4-20260504_175449/tvae-m4-2217-20260504_175513.csv", index=False) +print(f"[TVAE] Generated {total} rows (chunks={len(parts)}) -> /work/output-Benchmark-trainonly-v1/m4/tvae/tvae-m4-20260504_175449/tvae-m4-2217-20260504_175513.csv") diff --git a/timecost/m4/tvae/tvae-m4-20260504_175449/_tvae_train.py b/timecost/m4/tvae/tvae-m4-20260504_175449/_tvae_train.py new file mode 100644 index 0000000000000000000000000000000000000000..0ddb2b7321a12d3aff39be0c0f3c4c23e022d041 --- /dev/null +++ b/timecost/m4/tvae/tvae-m4-20260504_175449/_tvae_train.py @@ -0,0 +1,39 @@ +import json, os, sys +sys.path.insert(0, "/work") +from src.SpecificModels.ctgan_joblib_parallel_cap import apply_parallel_cap_from_env +apply_parallel_cap_from_env() +import pandas as pd +from ctgan.data import read_csv +from ctgan.synthesizers.tvae import TVAE + +# Keep transform stage parallelism bounded for stability on shared host. +os.environ.setdefault("LOKY_MAX_CPU_COUNT", "8") +os.environ.setdefault("OPENBLAS_NUM_THREADS", "8") +os.environ.setdefault("MKL_NUM_THREADS", "8") +_nj = (os.environ.get("TVAE_CTGAN_JOBTRANS_N_JOBS") or "").strip() +if _nj: + print("[TVAE] joblib Parallel cap ON, TVAE_CTGAN_JOBTRANS_N_JOBS=" + _nj) +else: + print("[TVAE] joblib Parallel cap OFF (unset TVAE_CTGAN_JOBTRANS_N_JOBS)") +print("[TVAE] LOKY_MAX_CPU_COUNT=" + str(os.environ.get("LOKY_MAX_CPU_COUNT", ""))) + +csv_path = "/work/output-Benchmark-trainonly-v1/m4/tvae/tvae-m4-20260504_175449/staged/public/train.csv" +meta_path = "/work/output-Benchmark-trainonly-v1/m4/tvae/tvae-m4-20260504_175449/tvae_metadata.json" +save_path = "/work/output-Benchmark-trainonly-v1/m4/tvae/tvae-m4-20260504_175449/models_300epochs/tvae_300epochs.pt" +epochs = int(os.environ.get("TVAE_EPOCHS", 300)) +batch_size = int(os.environ.get("TVAE_BATCH_SIZE", "500")) +embedding_dim = int(os.environ.get("TVAE_EMBEDDING_DIM", "128")) +def _parse_dims(name, default): + raw = (os.environ.get(name) or "").strip() + if not raw: + return default + return tuple(int(x.strip()) for x in raw.split(",") if x.strip()) +compress_dims = _parse_dims("TVAE_COMPRESS_DIMS", (128, 128)) +decompress_dims = _parse_dims("TVAE_DECOMPRESS_DIMS", (128, 128)) + +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}, batch_size={batch_size}, embedding_dim={embedding_dim}, compress_dims={compress_dims}, decompress_dims={decompress_dims}") +model = TVAE(epochs=epochs, batch_size=batch_size, embedding_dim=embedding_dim, compress_dims=compress_dims, decompress_dims=decompress_dims) +model.fit(data, discrete_columns) +model.save(save_path) +print(f"[TVAE] Model saved -> {save_path}") diff --git a/timecost/m4/tvae/tvae-m4-20260504_175449/gen_20260504_175513.log b/timecost/m4/tvae/tvae-m4-20260504_175449/gen_20260504_175513.log new file mode 100644 index 0000000000000000000000000000000000000000..a9e912bdc4026a088ea34ccdeb07d10973cd5245 --- /dev/null +++ b/timecost/m4/tvae/tvae-m4-20260504_175449/gen_20260504_175513.log @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:506bc0358a88c82bed1b729b7efcaccb73aea52807b692c21a5262b6c5c6854c +size 404 diff --git a/timecost/m4/tvae/tvae-m4-20260504_175449/input_snapshot.json b/timecost/m4/tvae/tvae-m4-20260504_175449/input_snapshot.json new file mode 100644 index 0000000000000000000000000000000000000000..60c34c26acabd61c3c87a32ef8cbe89659d8c727 --- /dev/null +++ b/timecost/m4/tvae/tvae-m4-20260504_175449/input_snapshot.json @@ -0,0 +1,36 @@ +{ + "dataset_id": "m4", + "model": "tvae", + "inputs": { + "train_csv": { + "path": "/data/jialinzhang/SynthesizePipeline-server/DatasetNew/m4/m4-train.csv", + "exists": true, + "size": 92191, + "sha256": "396b9d409ca21bf4a4cd329bdf5b7796aa0ae6356fa8d89b8eb669b5880b81f1" + }, + "val_csv": { + "path": "/data/jialinzhang/SynthesizePipeline-server/DatasetNew/m4/m4-val.csv", + "exists": true, + "size": 11482, + "sha256": "ee3c247d02f56e1687d03c381e13125d6a3a2a411ac7f202ba8520a4be9f1784" + }, + "test_csv": { + "path": "/data/jialinzhang/SynthesizePipeline-server/DatasetNew/m4/m4-test.csv", + "exists": true, + "size": 11559, + "sha256": "cadb9941124001b8fa7cb1ebae43b70a9ca56294f4df4d3c2f22c164c41757d4" + }, + "profile_json": { + "path": "/data/jialinzhang/SynthesizePipeline-server/DatasetNew/artifacts/data_core/tabular/m4/m4-dataset_profile.json", + "exists": true, + "size": 3336, + "sha256": "83e2764810e4a0e8cdece3a28dbd9134b7c9df6f2e56953e46d024ad2c4e035f" + }, + "contract_json": { + "path": "/data/jialinzhang/SynthesizePipeline-server/DatasetNew/artifacts/data_core/tabular/m4/m4-dataset_contract_v1.json", + "exists": true, + "size": 3810, + "sha256": "c23641b258629a845b164099bd0132886f8f6d0100e990494e0f92540f8987d9" + } + } +} \ No newline at end of file diff --git a/timecost/m4/tvae/tvae-m4-20260504_175449/models_300epochs/train_20260504_175449.log b/timecost/m4/tvae/tvae-m4-20260504_175449/models_300epochs/train_20260504_175449.log new file mode 100644 index 0000000000000000000000000000000000000000..68c1a34e689a2d713886f2cc826e6c9f60bbf379 --- /dev/null +++ b/timecost/m4/tvae/tvae-m4-20260504_175449/models_300epochs/train_20260504_175449.log @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:0e03fc03009b999dc1131d532847efc117ab94d363f9730f715066728ae278fb +size 620 diff --git a/timecost/m4/tvae/tvae-m4-20260504_175449/models_300epochs/tvae_300epochs.pt b/timecost/m4/tvae/tvae-m4-20260504_175449/models_300epochs/tvae_300epochs.pt new file mode 100644 index 0000000000000000000000000000000000000000..09fa703d767213aaac45b0e81a2180a81d6e5db5 --- /dev/null +++ b/timecost/m4/tvae/tvae-m4-20260504_175449/models_300epochs/tvae_300epochs.pt @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:13f1bc9bbe9511781fbaebc70c932da3e4ffb82b1eb24a2d7326a204046dc8b8 +size 684524 diff --git a/timecost/m4/tvae/tvae-m4-20260504_175449/public_gate/normalized_schema_snapshot.json b/timecost/m4/tvae/tvae-m4-20260504_175449/public_gate/normalized_schema_snapshot.json new file mode 100644 index 0000000000000000000000000000000000000000..31ed9818686b11907df75e872e4ffbe010330880 --- /dev/null +++ b/timecost/m4/tvae/tvae-m4-20260504_175449/public_gate/normalized_schema_snapshot.json @@ -0,0 +1,147 @@ +{ + "dataset_id": "m4", + "target_column": "charges", + "task_type": "regression", + "columns": [ + { + "name": "age", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 47, + "unique_ratio": 0.0212, + "example_values": [ + "46", + "38", + "19", + "27", + "26" + ] + } + }, + { + "name": "sex", + "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.000902, + "example_values": [ + "female", + "male" + ] + } + }, + { + "name": "bmi", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 538, + "unique_ratio": 0.24267, + "example_values": [ + "23.655", + "19.3", + "30.59", + "32.67", + "29.45" + ] + } + }, + { + "name": "children", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 6, + "unique_ratio": 0.002706, + "example_values": [ + "1", + "0", + "3", + "2", + "5" + ] + } + }, + { + "name": "smoker", + "role": "feature", + "semantic_type": "boolean", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 2, + "unique_ratio": 0.000902, + "example_values": [ + "yes", + "no" + ] + } + }, + { + "name": "region", + "role": "feature", + "semantic_type": "categorical", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 4, + "unique_ratio": 0.001804, + "example_values": [ + "northwest", + "southwest", + "southeast", + "northeast" + ] + } + }, + { + "name": "charges", + "role": "target", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 1281, + "unique_ratio": 0.577808, + "example_values": [ + "21677.28345", + "15820.699", + "1639.5631", + "2497.0383", + "2897.3235" + ] + } + } + ] +} \ No newline at end of file diff --git a/timecost/m4/tvae/tvae-m4-20260504_175449/public_gate/public_gate_report.json b/timecost/m4/tvae/tvae-m4-20260504_175449/public_gate/public_gate_report.json new file mode 100644 index 0000000000000000000000000000000000000000..e7a25408e2574124629ea9437356551e4d6f4790 --- /dev/null +++ b/timecost/m4/tvae/tvae-m4-20260504_175449/public_gate/public_gate_report.json @@ -0,0 +1,37 @@ +{ + "dataset_id": "m4", + "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": "charges", + "task_type": "regression", + "input_splits": { + "train": "/data/jialinzhang/SynthesizePipeline-server/DatasetNew/m4/m4-train.csv", + "val": "/data/jialinzhang/SynthesizePipeline-server/DatasetNew/m4/m4-val.csv", + "test": "/data/jialinzhang/SynthesizePipeline-server/DatasetNew/m4/m4-test.csv" + } +} \ No newline at end of file diff --git a/timecost/m4/tvae/tvae-m4-20260504_175449/public_gate/staged_input_manifest.json b/timecost/m4/tvae/tvae-m4-20260504_175449/public_gate/staged_input_manifest.json new file mode 100644 index 0000000000000000000000000000000000000000..6c44a4622897b6a80eac1f92d52e00343f0eacc6 --- /dev/null +++ b/timecost/m4/tvae/tvae-m4-20260504_175449/public_gate/staged_input_manifest.json @@ -0,0 +1,152 @@ +{ + "dataset_id": "m4", + "target_column": "charges", + "task_type": "regression", + "train_csv": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/m4/tvae/tvae-m4-20260504_175449/staged/public/train.csv", + "val_csv": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/m4/tvae/tvae-m4-20260504_175449/staged/public/val.csv", + "test_csv": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/m4/tvae/tvae-m4-20260504_175449/staged/public/test.csv", + "features_json": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/m4/tvae/tvae-m4-20260504_175449/staged/public/staged_features.json", + "public_gate_report": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/m4/tvae/tvae-m4-20260504_175449/public_gate/public_gate_report.json", + "column_schema": [ + { + "name": "age", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 47, + "unique_ratio": 0.0212, + "example_values": [ + "46", + "38", + "19", + "27", + "26" + ] + } + }, + { + "name": "sex", + "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.000902, + "example_values": [ + "female", + "male" + ] + } + }, + { + "name": "bmi", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 538, + "unique_ratio": 0.24267, + "example_values": [ + "23.655", + "19.3", + "30.59", + "32.67", + "29.45" + ] + } + }, + { + "name": "children", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 6, + "unique_ratio": 0.002706, + "example_values": [ + "1", + "0", + "3", + "2", + "5" + ] + } + }, + { + "name": "smoker", + "role": "feature", + "semantic_type": "boolean", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 2, + "unique_ratio": 0.000902, + "example_values": [ + "yes", + "no" + ] + } + }, + { + "name": "region", + "role": "feature", + "semantic_type": "categorical", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 4, + "unique_ratio": 0.001804, + "example_values": [ + "northwest", + "southwest", + "southeast", + "northeast" + ] + } + }, + { + "name": "charges", + "role": "target", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 1281, + "unique_ratio": 0.577808, + "example_values": [ + "21677.28345", + "15820.699", + "1639.5631", + "2497.0383", + "2897.3235" + ] + } + } + ] +} \ No newline at end of file diff --git a/timecost/m4/tvae/tvae-m4-20260504_175449/run_config.json b/timecost/m4/tvae/tvae-m4-20260504_175449/run_config.json new file mode 100644 index 0000000000000000000000000000000000000000..0a50da50b87dcf497b64842d9af4be2b2664156c --- /dev/null +++ b/timecost/m4/tvae/tvae-m4-20260504_175449/run_config.json @@ -0,0 +1,45 @@ +{ + "schema_version": 1, + "recorded_at": "2026-05-04T17:54:49", + "dataset_id": "m4", + "model": "tvae", + "work_dir": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/m4/tvae/tvae-m4-20260504_175449", + "dataset_source_requested": "new", + "dataset_source_resolved": "new", + "cli_args": { + "model": "tvae", + "dataset": "m4", + "dataset_source": "new", + "train": true, + "generate": true, + "num_rows": 0, + "epochs": null, + "output_dir": null, + "model_dir": null, + "work_dir": null, + "resume": false, + "no_stats": false + }, + "resolved": { + "num_rows": 2217, + "model_path": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/m4/tvae/tvae-m4-20260504_175449/models_300epochs/tvae_300epochs.pt", + "output_csv": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/m4/tvae/tvae-m4-20260504_175449/tvae-m4-2217-20260504_175513.csv" + }, + "input_artifacts": { + "public_gate_report": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/m4/tvae/tvae-m4-20260504_175449/public_gate/public_gate_report.json", + "public_manifest": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/m4/tvae/tvae-m4-20260504_175449/public_gate/staged_input_manifest.json", + "model_manifest": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/m4/tvae/tvae-m4-20260504_175449/staged/tvae/model_input_manifest.json", + "train_csv": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/m4/tvae/tvae-m4-20260504_175449/staged/public/train.csv", + "features_json": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/m4/tvae/tvae-m4-20260504_175449/staged/public/staged_features.json", + "target_column": "charges", + "task_type": "regression" + }, + "env_overrides": { + "BENCHMARK_TVAE_GPUS": "device=3", + "TVAE_BATCH_SIZE": "500", + "TVAE_COMPRESS_DIMS": "256,256", + "TVAE_DECOMPRESS_DIMS": "256,256", + "TVAE_EMBEDDING_DIM": "128", + "TVAE_EPOCHS": "300" + } +} \ No newline at end of file diff --git a/timecost/m4/tvae/tvae-m4-20260504_175449/runtime_result.json b/timecost/m4/tvae/tvae-m4-20260504_175449/runtime_result.json new file mode 100644 index 0000000000000000000000000000000000000000..c3792a3ec28b2df18468254616f76eed6e51ce7f --- /dev/null +++ b/timecost/m4/tvae/tvae-m4-20260504_175449/runtime_result.json @@ -0,0 +1,27 @@ +{ + "dataset_id": "m4", + "model": "tvae", + "run_id": "tvae-m4-20260504_175449", + "public_gate_status": "pass", + "adapter_ready_status": "pass", + "train_status": "success", + "generate_status": "success", + "reason_code": null, + "reason_detail": null, + "artifacts": { + "synthetic_csv": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/m4/tvae/tvae-m4-20260504_175449/tvae-m4-2217-20260504_175513.csv", + "model_path": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/m4/tvae/tvae-m4-20260504_175449/models_300epochs/tvae_300epochs.pt" + }, + "timings": { + "train": { + "started_at": "2026-05-04T17:54:49", + "ended_at": "2026-05-04T17:55:13", + "duration_sec": 23.522 + }, + "generate": { + "started_at": "2026-05-04T17:55:13", + "ended_at": "2026-05-04T17:55:18", + "duration_sec": 5.229 + } + } +} \ No newline at end of file diff --git a/timecost/m4/tvae/tvae-m4-20260504_175449/staged/public/staged_features.json b/timecost/m4/tvae/tvae-m4-20260504_175449/staged/public/staged_features.json new file mode 100644 index 0000000000000000000000000000000000000000..d6acd098c35111f423f3ffff2cfd1754bc5dfebc --- /dev/null +++ b/timecost/m4/tvae/tvae-m4-20260504_175449/staged/public/staged_features.json @@ -0,0 +1,37 @@ +[ + { + "feature_name": "age", + "data_type": "continuous", + "is_target": false + }, + { + "feature_name": "sex", + "data_type": "categorical", + "is_target": false + }, + { + "feature_name": "bmi", + "data_type": "continuous", + "is_target": false + }, + { + "feature_name": "children", + "data_type": "continuous", + "is_target": false + }, + { + "feature_name": "smoker", + "data_type": "binary", + "is_target": false + }, + { + "feature_name": "region", + "data_type": "categorical", + "is_target": false + }, + { + "feature_name": "charges", + "data_type": "continuous", + "is_target": true + } +] \ No newline at end of file diff --git a/timecost/m4/tvae/tvae-m4-20260504_175449/staged/public/test.csv b/timecost/m4/tvae/tvae-m4-20260504_175449/staged/public/test.csv new file mode 100644 index 0000000000000000000000000000000000000000..c88a2e7cfcd715bb421cb56eb078033da45c4dc8 --- /dev/null +++ b/timecost/m4/tvae/tvae-m4-20260504_175449/staged/public/test.csv @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:4c541b677fb2d45c5bc79338eeee9fd8c91484b195a0c2c546c2fbabf113b7ea +size 11298 diff --git a/timecost/m4/tvae/tvae-m4-20260504_175449/staged/public/train.csv b/timecost/m4/tvae/tvae-m4-20260504_175449/staged/public/train.csv new file mode 100644 index 0000000000000000000000000000000000000000..5a05019d786529e0617291766c4fbe016ca01bf5 --- /dev/null +++ b/timecost/m4/tvae/tvae-m4-20260504_175449/staged/public/train.csv @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:614ebfac5f41d6f661aff675fa18c0f933a8d9bcc77ea71b7b2360c2f0155837 +size 90069 diff --git a/timecost/m4/tvae/tvae-m4-20260504_175449/staged/public/val.csv b/timecost/m4/tvae/tvae-m4-20260504_175449/staged/public/val.csv new file mode 100644 index 0000000000000000000000000000000000000000..d78fe5ad1537c437ba9ac2629f2aa60a6c17e708 --- /dev/null +++ b/timecost/m4/tvae/tvae-m4-20260504_175449/staged/public/val.csv @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:e55f5edbe7942ff01630de91a9c70dfbc6445eba76c7b970350364546b67c2d7 +size 11218 diff --git a/timecost/m4/tvae/tvae-m4-20260504_175449/staged/tvae/adapter_report.json b/timecost/m4/tvae/tvae-m4-20260504_175449/staged/tvae/adapter_report.json new file mode 100644 index 0000000000000000000000000000000000000000..879d3f0289b8638013ac026e0da5150aa5c0b9f0 --- /dev/null +++ b/timecost/m4/tvae/tvae-m4-20260504_175449/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-Benchmark-trainonly-v1/m4/tvae/tvae-m4-20260504_175449/staged/tvae/model_input_manifest.json" +} \ No newline at end of file diff --git a/timecost/m4/tvae/tvae-m4-20260504_175449/staged/tvae/adapter_transforms_applied.json b/timecost/m4/tvae/tvae-m4-20260504_175449/staged/tvae/adapter_transforms_applied.json new file mode 100644 index 0000000000000000000000000000000000000000..0637a088a01e8ddab3bf3fa98dbe804cbde1a0dc --- /dev/null +++ b/timecost/m4/tvae/tvae-m4-20260504_175449/staged/tvae/adapter_transforms_applied.json @@ -0,0 +1 @@ +[] \ No newline at end of file diff --git a/timecost/m4/tvae/tvae-m4-20260504_175449/staged/tvae/model_input_manifest.json b/timecost/m4/tvae/tvae-m4-20260504_175449/staged/tvae/model_input_manifest.json new file mode 100644 index 0000000000000000000000000000000000000000..c3c9d78fcce98d02acf18fdedf44445fe601e6b1 --- /dev/null +++ b/timecost/m4/tvae/tvae-m4-20260504_175449/staged/tvae/model_input_manifest.json @@ -0,0 +1,154 @@ +{ + "dataset_id": "m4", + "model": "tvae", + "target_column": "charges", + "task_type": "regression", + "column_schema": [ + { + "name": "age", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 47, + "unique_ratio": 0.0212, + "example_values": [ + "46", + "38", + "19", + "27", + "26" + ] + } + }, + { + "name": "sex", + "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.000902, + "example_values": [ + "female", + "male" + ] + } + }, + { + "name": "bmi", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 538, + "unique_ratio": 0.24267, + "example_values": [ + "23.655", + "19.3", + "30.59", + "32.67", + "29.45" + ] + } + }, + { + "name": "children", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 6, + "unique_ratio": 0.002706, + "example_values": [ + "1", + "0", + "3", + "2", + "5" + ] + } + }, + { + "name": "smoker", + "role": "feature", + "semantic_type": "boolean", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 2, + "unique_ratio": 0.000902, + "example_values": [ + "yes", + "no" + ] + } + }, + { + "name": "region", + "role": "feature", + "semantic_type": "categorical", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 4, + "unique_ratio": 0.001804, + "example_values": [ + "northwest", + "southwest", + "southeast", + "northeast" + ] + } + }, + { + "name": "charges", + "role": "target", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 1281, + "unique_ratio": 0.577808, + "example_values": [ + "21677.28345", + "15820.699", + "1639.5631", + "2497.0383", + "2897.3235" + ] + } + } + ], + "public_manifest": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/m4/tvae/tvae-m4-20260504_175449/public_gate/staged_input_manifest.json", + "train_csv": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/m4/tvae/tvae-m4-20260504_175449/staged/public/train.csv", + "val_csv": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/m4/tvae/tvae-m4-20260504_175449/staged/public/val.csv", + "test_csv": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/m4/tvae/tvae-m4-20260504_175449/staged/public/test.csv", + "features_json": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/m4/tvae/tvae-m4-20260504_175449/staged/public/staged_features.json", + "public_gate_report": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/m4/tvae/tvae-m4-20260504_175449/public_gate/public_gate_report.json" +} \ No newline at end of file diff --git a/timecost/m4/tvae/tvae-m4-20260504_175449/tvae-m4-2217-20260504_175513.csv b/timecost/m4/tvae/tvae-m4-20260504_175449/tvae-m4-2217-20260504_175513.csv new file mode 100644 index 0000000000000000000000000000000000000000..0f5c77368d7ce704a1accc5fa2633d69ea7b94dd --- /dev/null +++ b/timecost/m4/tvae/tvae-m4-20260504_175449/tvae-m4-2217-20260504_175513.csv @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:e98a12bdd925dfd2cb11667b7709d30496bb352aa2a492439db83409ec7f05da +size 135526 diff --git a/timecost/m4/tvae/tvae-m4-20260504_175449/tvae_metadata.json b/timecost/m4/tvae/tvae-m4-20260504_175449/tvae_metadata.json new file mode 100644 index 0000000000000000000000000000000000000000..d89b1e0b3095638c982d4d3321d21a8bedcd33ae --- /dev/null +++ b/timecost/m4/tvae/tvae-m4-20260504_175449/tvae_metadata.json @@ -0,0 +1,32 @@ +{ + "columns": [ + { + "name": "age", + "type": "continuous" + }, + { + "name": "sex", + "type": "categorical" + }, + { + "name": "bmi", + "type": "continuous" + }, + { + "name": "children", + "type": "continuous" + }, + { + "name": "smoker", + "type": "categorical" + }, + { + "name": "region", + "type": "categorical" + }, + { + "name": "charges", + "type": "continuous" + } + ] +} \ No newline at end of file diff --git a/timecost/m4/tvae/tvae-m4-20260504_175530/_tvae_generate.py b/timecost/m4/tvae/tvae-m4-20260504_175530/_tvae_generate.py new file mode 100644 index 0000000000000000000000000000000000000000..5630436cb207679ca36a2faa95aed68d8b90e70c --- /dev/null +++ b/timecost/m4/tvae/tvae-m4-20260504_175530/_tvae_generate.py @@ -0,0 +1,23 @@ +import os, sys +sys.path.insert(0, "/work") +from src.SpecificModels.ctgan_joblib_parallel_cap import apply_parallel_cap_from_env +apply_parallel_cap_from_env() +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 +os.environ.setdefault("LOKY_MAX_CPU_COUNT", "8") +os.environ.setdefault("OPENBLAS_NUM_THREADS", "8") +os.environ.setdefault("MKL_NUM_THREADS", "8") +model = TVAE.load("/work/output-Benchmark-trainonly-v1/m4/tvae/tvae-m4-20260504_175530/models_300epochs/tvae_300epochs.pt") +total = 2217 +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-Benchmark-trainonly-v1/m4/tvae/tvae-m4-20260504_175530/tvae-m4-2217-20260504_175610.csv", index=False) +print(f"[TVAE] Generated {total} rows (chunks={len(parts)}) -> /work/output-Benchmark-trainonly-v1/m4/tvae/tvae-m4-20260504_175530/tvae-m4-2217-20260504_175610.csv") diff --git a/timecost/m4/tvae/tvae-m4-20260504_175530/_tvae_train.py b/timecost/m4/tvae/tvae-m4-20260504_175530/_tvae_train.py new file mode 100644 index 0000000000000000000000000000000000000000..8bddc1e2fca3b1f61308cc45e156164c030dd8b2 --- /dev/null +++ b/timecost/m4/tvae/tvae-m4-20260504_175530/_tvae_train.py @@ -0,0 +1,39 @@ +import json, os, sys +sys.path.insert(0, "/work") +from src.SpecificModels.ctgan_joblib_parallel_cap import apply_parallel_cap_from_env +apply_parallel_cap_from_env() +import pandas as pd +from ctgan.data import read_csv +from ctgan.synthesizers.tvae import TVAE + +# Keep transform stage parallelism bounded for stability on shared host. +os.environ.setdefault("LOKY_MAX_CPU_COUNT", "8") +os.environ.setdefault("OPENBLAS_NUM_THREADS", "8") +os.environ.setdefault("MKL_NUM_THREADS", "8") +_nj = (os.environ.get("TVAE_CTGAN_JOBTRANS_N_JOBS") or "").strip() +if _nj: + print("[TVAE] joblib Parallel cap ON, TVAE_CTGAN_JOBTRANS_N_JOBS=" + _nj) +else: + print("[TVAE] joblib Parallel cap OFF (unset TVAE_CTGAN_JOBTRANS_N_JOBS)") +print("[TVAE] LOKY_MAX_CPU_COUNT=" + str(os.environ.get("LOKY_MAX_CPU_COUNT", ""))) + +csv_path = "/work/output-Benchmark-trainonly-v1/m4/tvae/tvae-m4-20260504_175530/staged/public/train.csv" +meta_path = "/work/output-Benchmark-trainonly-v1/m4/tvae/tvae-m4-20260504_175530/tvae_metadata.json" +save_path = "/work/output-Benchmark-trainonly-v1/m4/tvae/tvae-m4-20260504_175530/models_300epochs/tvae_300epochs.pt" +epochs = int(os.environ.get("TVAE_EPOCHS", 300)) +batch_size = int(os.environ.get("TVAE_BATCH_SIZE", "500")) +embedding_dim = int(os.environ.get("TVAE_EMBEDDING_DIM", "128")) +def _parse_dims(name, default): + raw = (os.environ.get(name) or "").strip() + if not raw: + return default + return tuple(int(x.strip()) for x in raw.split(",") if x.strip()) +compress_dims = _parse_dims("TVAE_COMPRESS_DIMS", (128, 128)) +decompress_dims = _parse_dims("TVAE_DECOMPRESS_DIMS", (128, 128)) + +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}, batch_size={batch_size}, embedding_dim={embedding_dim}, compress_dims={compress_dims}, decompress_dims={decompress_dims}") +model = TVAE(epochs=epochs, batch_size=batch_size, embedding_dim=embedding_dim, compress_dims=compress_dims, decompress_dims=decompress_dims) +model.fit(data, discrete_columns) +model.save(save_path) +print(f"[TVAE] Model saved -> {save_path}") diff --git a/timecost/m4/tvae/tvae-m4-20260504_175530/gen_20260504_175610.log b/timecost/m4/tvae/tvae-m4-20260504_175530/gen_20260504_175610.log new file mode 100644 index 0000000000000000000000000000000000000000..4b1bb491e22a5f18459632adf927b43ede912e80 --- /dev/null +++ b/timecost/m4/tvae/tvae-m4-20260504_175530/gen_20260504_175610.log @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:5cf0eef736ccb09b775ee91e91bf1cecff4d38769b05d4bf2e40228f12f99156 +size 404 diff --git a/timecost/m4/tvae/tvae-m4-20260504_175530/input_snapshot.json b/timecost/m4/tvae/tvae-m4-20260504_175530/input_snapshot.json new file mode 100644 index 0000000000000000000000000000000000000000..60c34c26acabd61c3c87a32ef8cbe89659d8c727 --- /dev/null +++ b/timecost/m4/tvae/tvae-m4-20260504_175530/input_snapshot.json @@ -0,0 +1,36 @@ +{ + "dataset_id": "m4", + "model": "tvae", + "inputs": { + "train_csv": { + "path": "/data/jialinzhang/SynthesizePipeline-server/DatasetNew/m4/m4-train.csv", + "exists": true, + "size": 92191, + "sha256": "396b9d409ca21bf4a4cd329bdf5b7796aa0ae6356fa8d89b8eb669b5880b81f1" + }, + "val_csv": { + "path": "/data/jialinzhang/SynthesizePipeline-server/DatasetNew/m4/m4-val.csv", + "exists": true, + "size": 11482, + "sha256": "ee3c247d02f56e1687d03c381e13125d6a3a2a411ac7f202ba8520a4be9f1784" + }, + "test_csv": { + "path": "/data/jialinzhang/SynthesizePipeline-server/DatasetNew/m4/m4-test.csv", + "exists": true, + "size": 11559, + "sha256": "cadb9941124001b8fa7cb1ebae43b70a9ca56294f4df4d3c2f22c164c41757d4" + }, + "profile_json": { + "path": "/data/jialinzhang/SynthesizePipeline-server/DatasetNew/artifacts/data_core/tabular/m4/m4-dataset_profile.json", + "exists": true, + "size": 3336, + "sha256": "83e2764810e4a0e8cdece3a28dbd9134b7c9df6f2e56953e46d024ad2c4e035f" + }, + "contract_json": { + "path": "/data/jialinzhang/SynthesizePipeline-server/DatasetNew/artifacts/data_core/tabular/m4/m4-dataset_contract_v1.json", + "exists": true, + "size": 3810, + "sha256": "c23641b258629a845b164099bd0132886f8f6d0100e990494e0f92540f8987d9" + } + } +} \ No newline at end of file diff --git a/timecost/m4/tvae/tvae-m4-20260504_175530/models_300epochs/train_20260504_175531.log b/timecost/m4/tvae/tvae-m4-20260504_175530/models_300epochs/train_20260504_175531.log new file mode 100644 index 0000000000000000000000000000000000000000..ab63c7540b64e9f038a5e7f537de8ffa11294c20 --- /dev/null +++ b/timecost/m4/tvae/tvae-m4-20260504_175530/models_300epochs/train_20260504_175531.log @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:eee2f0fc9338e7e8903f28b8c9484dae9bd01ffaaf28d9ca7d689b117e9646d2 +size 620 diff --git a/timecost/m4/tvae/tvae-m4-20260504_175530/models_300epochs/tvae_300epochs.pt b/timecost/m4/tvae/tvae-m4-20260504_175530/models_300epochs/tvae_300epochs.pt new file mode 100644 index 0000000000000000000000000000000000000000..2f0cecc3a52a25f09009f0d041d9abed7a4eda90 --- /dev/null +++ b/timecost/m4/tvae/tvae-m4-20260504_175530/models_300epochs/tvae_300epochs.pt @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:312b6cfa7a04181e1c825c875e767675a86c53ef0f51a073830ebdeafb82b715 +size 765292 diff --git a/timecost/m4/tvae/tvae-m4-20260504_175530/public_gate/normalized_schema_snapshot.json b/timecost/m4/tvae/tvae-m4-20260504_175530/public_gate/normalized_schema_snapshot.json new file mode 100644 index 0000000000000000000000000000000000000000..31ed9818686b11907df75e872e4ffbe010330880 --- /dev/null +++ b/timecost/m4/tvae/tvae-m4-20260504_175530/public_gate/normalized_schema_snapshot.json @@ -0,0 +1,147 @@ +{ + "dataset_id": "m4", + "target_column": "charges", + "task_type": "regression", + "columns": [ + { + "name": "age", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 47, + "unique_ratio": 0.0212, + "example_values": [ + "46", + "38", + "19", + "27", + "26" + ] + } + }, + { + "name": "sex", + "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.000902, + "example_values": [ + "female", + "male" + ] + } + }, + { + "name": "bmi", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 538, + "unique_ratio": 0.24267, + "example_values": [ + "23.655", + "19.3", + "30.59", + "32.67", + "29.45" + ] + } + }, + { + "name": "children", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 6, + "unique_ratio": 0.002706, + "example_values": [ + "1", + "0", + "3", + "2", + "5" + ] + } + }, + { + "name": "smoker", + "role": "feature", + "semantic_type": "boolean", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 2, + "unique_ratio": 0.000902, + "example_values": [ + "yes", + "no" + ] + } + }, + { + "name": "region", + "role": "feature", + "semantic_type": "categorical", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 4, + "unique_ratio": 0.001804, + "example_values": [ + "northwest", + "southwest", + "southeast", + "northeast" + ] + } + }, + { + "name": "charges", + "role": "target", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 1281, + "unique_ratio": 0.577808, + "example_values": [ + "21677.28345", + "15820.699", + "1639.5631", + "2497.0383", + "2897.3235" + ] + } + } + ] +} \ No newline at end of file diff --git a/timecost/m4/tvae/tvae-m4-20260504_175530/public_gate/public_gate_report.json b/timecost/m4/tvae/tvae-m4-20260504_175530/public_gate/public_gate_report.json new file mode 100644 index 0000000000000000000000000000000000000000..e7a25408e2574124629ea9437356551e4d6f4790 --- /dev/null +++ b/timecost/m4/tvae/tvae-m4-20260504_175530/public_gate/public_gate_report.json @@ -0,0 +1,37 @@ +{ + "dataset_id": "m4", + "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": "charges", + "task_type": "regression", + "input_splits": { + "train": "/data/jialinzhang/SynthesizePipeline-server/DatasetNew/m4/m4-train.csv", + "val": "/data/jialinzhang/SynthesizePipeline-server/DatasetNew/m4/m4-val.csv", + "test": "/data/jialinzhang/SynthesizePipeline-server/DatasetNew/m4/m4-test.csv" + } +} \ No newline at end of file diff --git a/timecost/m4/tvae/tvae-m4-20260504_175530/public_gate/staged_input_manifest.json b/timecost/m4/tvae/tvae-m4-20260504_175530/public_gate/staged_input_manifest.json new file mode 100644 index 0000000000000000000000000000000000000000..1ccf316d39cda13b861175fe16fcd94babb6fe6a --- /dev/null +++ b/timecost/m4/tvae/tvae-m4-20260504_175530/public_gate/staged_input_manifest.json @@ -0,0 +1,152 @@ +{ + "dataset_id": "m4", + "target_column": "charges", + "task_type": "regression", + "train_csv": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/m4/tvae/tvae-m4-20260504_175530/staged/public/train.csv", + "val_csv": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/m4/tvae/tvae-m4-20260504_175530/staged/public/val.csv", + "test_csv": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/m4/tvae/tvae-m4-20260504_175530/staged/public/test.csv", + "features_json": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/m4/tvae/tvae-m4-20260504_175530/staged/public/staged_features.json", + "public_gate_report": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/m4/tvae/tvae-m4-20260504_175530/public_gate/public_gate_report.json", + "column_schema": [ + { + "name": "age", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 47, + "unique_ratio": 0.0212, + "example_values": [ + "46", + "38", + "19", + "27", + "26" + ] + } + }, + { + "name": "sex", + "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.000902, + "example_values": [ + "female", + "male" + ] + } + }, + { + "name": "bmi", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 538, + "unique_ratio": 0.24267, + "example_values": [ + "23.655", + "19.3", + "30.59", + "32.67", + "29.45" + ] + } + }, + { + "name": "children", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 6, + "unique_ratio": 0.002706, + "example_values": [ + "1", + "0", + "3", + "2", + "5" + ] + } + }, + { + "name": "smoker", + "role": "feature", + "semantic_type": "boolean", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 2, + "unique_ratio": 0.000902, + "example_values": [ + "yes", + "no" + ] + } + }, + { + "name": "region", + "role": "feature", + "semantic_type": "categorical", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 4, + "unique_ratio": 0.001804, + "example_values": [ + "northwest", + "southwest", + "southeast", + "northeast" + ] + } + }, + { + "name": "charges", + "role": "target", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 1281, + "unique_ratio": 0.577808, + "example_values": [ + "21677.28345", + "15820.699", + "1639.5631", + "2497.0383", + "2897.3235" + ] + } + } + ] +} \ No newline at end of file diff --git a/timecost/m4/tvae/tvae-m4-20260504_175530/run_config.json b/timecost/m4/tvae/tvae-m4-20260504_175530/run_config.json new file mode 100644 index 0000000000000000000000000000000000000000..21e8788fec3a6356cd17b49ec03f3ea82d3406fa --- /dev/null +++ b/timecost/m4/tvae/tvae-m4-20260504_175530/run_config.json @@ -0,0 +1,45 @@ +{ + "schema_version": 1, + "recorded_at": "2026-05-04T17:55:31", + "dataset_id": "m4", + "model": "tvae", + "work_dir": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/m4/tvae/tvae-m4-20260504_175530", + "dataset_source_requested": "new", + "dataset_source_resolved": "new", + "cli_args": { + "model": "tvae", + "dataset": "m4", + "dataset_source": "new", + "train": true, + "generate": true, + "num_rows": 0, + "epochs": null, + "output_dir": null, + "model_dir": null, + "work_dir": null, + "resume": false, + "no_stats": false + }, + "resolved": { + "num_rows": 2217, + "model_path": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/m4/tvae/tvae-m4-20260504_175530/models_300epochs/tvae_300epochs.pt", + "output_csv": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/m4/tvae/tvae-m4-20260504_175530/tvae-m4-2217-20260504_175610.csv" + }, + "input_artifacts": { + "public_gate_report": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/m4/tvae/tvae-m4-20260504_175530/public_gate/public_gate_report.json", + "public_manifest": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/m4/tvae/tvae-m4-20260504_175530/public_gate/staged_input_manifest.json", + "model_manifest": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/m4/tvae/tvae-m4-20260504_175530/staged/tvae/model_input_manifest.json", + "train_csv": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/m4/tvae/tvae-m4-20260504_175530/staged/public/train.csv", + "features_json": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/m4/tvae/tvae-m4-20260504_175530/staged/public/staged_features.json", + "target_column": "charges", + "task_type": "regression" + }, + "env_overrides": { + "BENCHMARK_TVAE_GPUS": "device=3", + "TVAE_BATCH_SIZE": "256", + "TVAE_COMPRESS_DIMS": "256,256", + "TVAE_DECOMPRESS_DIMS": "256,256", + "TVAE_EMBEDDING_DIM": "128", + "TVAE_EPOCHS": "500" + } +} \ No newline at end of file diff --git a/timecost/m4/tvae/tvae-m4-20260504_175530/runtime_result.json b/timecost/m4/tvae/tvae-m4-20260504_175530/runtime_result.json new file mode 100644 index 0000000000000000000000000000000000000000..65b42c7cb5ae1dc51773c686c000d66f14213373 --- /dev/null +++ b/timecost/m4/tvae/tvae-m4-20260504_175530/runtime_result.json @@ -0,0 +1,27 @@ +{ + "dataset_id": "m4", + "model": "tvae", + "run_id": "tvae-m4-20260504_175530", + "public_gate_status": "pass", + "adapter_ready_status": "pass", + "train_status": "success", + "generate_status": "success", + "reason_code": null, + "reason_detail": null, + "artifacts": { + "synthetic_csv": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/m4/tvae/tvae-m4-20260504_175530/tvae-m4-2217-20260504_175610.csv", + "model_path": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/m4/tvae/tvae-m4-20260504_175530/models_300epochs/tvae_300epochs.pt" + }, + "timings": { + "train": { + "started_at": "2026-05-04T17:55:31", + "ended_at": "2026-05-04T17:56:10", + "duration_sec": 39.917 + }, + "generate": { + "started_at": "2026-05-04T17:56:10", + "ended_at": "2026-05-04T17:56:16", + "duration_sec": 5.502 + } + } +} \ No newline at end of file diff --git a/timecost/m4/tvae/tvae-m4-20260504_175530/staged/public/staged_features.json b/timecost/m4/tvae/tvae-m4-20260504_175530/staged/public/staged_features.json new file mode 100644 index 0000000000000000000000000000000000000000..d6acd098c35111f423f3ffff2cfd1754bc5dfebc --- /dev/null +++ b/timecost/m4/tvae/tvae-m4-20260504_175530/staged/public/staged_features.json @@ -0,0 +1,37 @@ +[ + { + "feature_name": "age", + "data_type": "continuous", + "is_target": false + }, + { + "feature_name": "sex", + "data_type": "categorical", + "is_target": false + }, + { + "feature_name": "bmi", + "data_type": "continuous", + "is_target": false + }, + { + "feature_name": "children", + "data_type": "continuous", + "is_target": false + }, + { + "feature_name": "smoker", + "data_type": "binary", + "is_target": false + }, + { + "feature_name": "region", + "data_type": "categorical", + "is_target": false + }, + { + "feature_name": "charges", + "data_type": "continuous", + "is_target": true + } +] \ No newline at end of file diff --git a/timecost/m4/tvae/tvae-m4-20260504_175530/staged/public/test.csv b/timecost/m4/tvae/tvae-m4-20260504_175530/staged/public/test.csv new file mode 100644 index 0000000000000000000000000000000000000000..c88a2e7cfcd715bb421cb56eb078033da45c4dc8 --- /dev/null +++ b/timecost/m4/tvae/tvae-m4-20260504_175530/staged/public/test.csv @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:4c541b677fb2d45c5bc79338eeee9fd8c91484b195a0c2c546c2fbabf113b7ea +size 11298 diff --git a/timecost/m4/tvae/tvae-m4-20260504_175530/staged/public/train.csv b/timecost/m4/tvae/tvae-m4-20260504_175530/staged/public/train.csv new file mode 100644 index 0000000000000000000000000000000000000000..5a05019d786529e0617291766c4fbe016ca01bf5 --- /dev/null +++ b/timecost/m4/tvae/tvae-m4-20260504_175530/staged/public/train.csv @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:614ebfac5f41d6f661aff675fa18c0f933a8d9bcc77ea71b7b2360c2f0155837 +size 90069 diff --git a/timecost/m4/tvae/tvae-m4-20260504_175530/staged/public/val.csv b/timecost/m4/tvae/tvae-m4-20260504_175530/staged/public/val.csv new file mode 100644 index 0000000000000000000000000000000000000000..d78fe5ad1537c437ba9ac2629f2aa60a6c17e708 --- /dev/null +++ b/timecost/m4/tvae/tvae-m4-20260504_175530/staged/public/val.csv @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:e55f5edbe7942ff01630de91a9c70dfbc6445eba76c7b970350364546b67c2d7 +size 11218 diff --git a/timecost/m4/tvae/tvae-m4-20260504_175530/staged/tvae/adapter_report.json b/timecost/m4/tvae/tvae-m4-20260504_175530/staged/tvae/adapter_report.json new file mode 100644 index 0000000000000000000000000000000000000000..37f886a4c807fe8b69e99c1104f0e36d6c6adf2e --- /dev/null +++ b/timecost/m4/tvae/tvae-m4-20260504_175530/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-Benchmark-trainonly-v1/m4/tvae/tvae-m4-20260504_175530/staged/tvae/model_input_manifest.json" +} \ No newline at end of file diff --git a/timecost/m4/tvae/tvae-m4-20260504_175530/staged/tvae/adapter_transforms_applied.json b/timecost/m4/tvae/tvae-m4-20260504_175530/staged/tvae/adapter_transforms_applied.json new file mode 100644 index 0000000000000000000000000000000000000000..0637a088a01e8ddab3bf3fa98dbe804cbde1a0dc --- /dev/null +++ b/timecost/m4/tvae/tvae-m4-20260504_175530/staged/tvae/adapter_transforms_applied.json @@ -0,0 +1 @@ +[] \ No newline at end of file diff --git a/timecost/m4/tvae/tvae-m4-20260504_175530/staged/tvae/model_input_manifest.json b/timecost/m4/tvae/tvae-m4-20260504_175530/staged/tvae/model_input_manifest.json new file mode 100644 index 0000000000000000000000000000000000000000..cb351c79f41d5f0ba4ad75267366eb75b2b99a89 --- /dev/null +++ b/timecost/m4/tvae/tvae-m4-20260504_175530/staged/tvae/model_input_manifest.json @@ -0,0 +1,154 @@ +{ + "dataset_id": "m4", + "model": "tvae", + "target_column": "charges", + "task_type": "regression", + "column_schema": [ + { + "name": "age", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 47, + "unique_ratio": 0.0212, + "example_values": [ + "46", + "38", + "19", + "27", + "26" + ] + } + }, + { + "name": "sex", + "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.000902, + "example_values": [ + "female", + "male" + ] + } + }, + { + "name": "bmi", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 538, + "unique_ratio": 0.24267, + "example_values": [ + "23.655", + "19.3", + "30.59", + "32.67", + "29.45" + ] + } + }, + { + "name": "children", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 6, + "unique_ratio": 0.002706, + "example_values": [ + "1", + "0", + "3", + "2", + "5" + ] + } + }, + { + "name": "smoker", + "role": "feature", + "semantic_type": "boolean", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 2, + "unique_ratio": 0.000902, + "example_values": [ + "yes", + "no" + ] + } + }, + { + "name": "region", + "role": "feature", + "semantic_type": "categorical", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 4, + "unique_ratio": 0.001804, + "example_values": [ + "northwest", + "southwest", + "southeast", + "northeast" + ] + } + }, + { + "name": "charges", + "role": "target", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 1281, + "unique_ratio": 0.577808, + "example_values": [ + "21677.28345", + "15820.699", + "1639.5631", + "2497.0383", + "2897.3235" + ] + } + } + ], + "public_manifest": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/m4/tvae/tvae-m4-20260504_175530/public_gate/staged_input_manifest.json", + "train_csv": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/m4/tvae/tvae-m4-20260504_175530/staged/public/train.csv", + "val_csv": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/m4/tvae/tvae-m4-20260504_175530/staged/public/val.csv", + "test_csv": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/m4/tvae/tvae-m4-20260504_175530/staged/public/test.csv", + "features_json": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/m4/tvae/tvae-m4-20260504_175530/staged/public/staged_features.json", + "public_gate_report": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/m4/tvae/tvae-m4-20260504_175530/public_gate/public_gate_report.json" +} \ No newline at end of file diff --git a/timecost/m4/tvae/tvae-m4-20260504_175530/tvae-m4-2217-20260504_175610.csv b/timecost/m4/tvae/tvae-m4-20260504_175530/tvae-m4-2217-20260504_175610.csv new file mode 100644 index 0000000000000000000000000000000000000000..606a7d02f0adf19904c4d4ba33d3a4dfea5ca992 --- /dev/null +++ b/timecost/m4/tvae/tvae-m4-20260504_175530/tvae-m4-2217-20260504_175610.csv @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:2fb289413b48175dafe06bf13265b44045456603a5d208e7fe589e2889bdb54b +size 135518 diff --git a/timecost/m4/tvae/tvae-m4-20260504_175530/tvae_metadata.json b/timecost/m4/tvae/tvae-m4-20260504_175530/tvae_metadata.json new file mode 100644 index 0000000000000000000000000000000000000000..d89b1e0b3095638c982d4d3321d21a8bedcd33ae --- /dev/null +++ b/timecost/m4/tvae/tvae-m4-20260504_175530/tvae_metadata.json @@ -0,0 +1,32 @@ +{ + "columns": [ + { + "name": "age", + "type": "continuous" + }, + { + "name": "sex", + "type": "categorical" + }, + { + "name": "bmi", + "type": "continuous" + }, + { + "name": "children", + "type": "continuous" + }, + { + "name": "smoker", + "type": "categorical" + }, + { + "name": "region", + "type": "categorical" + }, + { + "name": "charges", + "type": "continuous" + } + ] +} \ No newline at end of file diff --git a/timecost/m4/tvae/tvae-m4-20260504_175629/_tvae_generate.py b/timecost/m4/tvae/tvae-m4-20260504_175629/_tvae_generate.py new file mode 100644 index 0000000000000000000000000000000000000000..39004fb75945aac1f990221a91985deb650fa5a0 --- /dev/null +++ b/timecost/m4/tvae/tvae-m4-20260504_175629/_tvae_generate.py @@ -0,0 +1,23 @@ +import os, sys +sys.path.insert(0, "/work") +from src.SpecificModels.ctgan_joblib_parallel_cap import apply_parallel_cap_from_env +apply_parallel_cap_from_env() +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 +os.environ.setdefault("LOKY_MAX_CPU_COUNT", "8") +os.environ.setdefault("OPENBLAS_NUM_THREADS", "8") +os.environ.setdefault("MKL_NUM_THREADS", "8") +model = TVAE.load("/work/output-Benchmark-trainonly-v1/m4/tvae/tvae-m4-20260504_175629/models_300epochs/tvae_300epochs.pt") +total = 2217 +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-Benchmark-trainonly-v1/m4/tvae/tvae-m4-20260504_175629/tvae-m4-2217-20260504_175710.csv", index=False) +print(f"[TVAE] Generated {total} rows (chunks={len(parts)}) -> /work/output-Benchmark-trainonly-v1/m4/tvae/tvae-m4-20260504_175629/tvae-m4-2217-20260504_175710.csv") diff --git a/timecost/m4/tvae/tvae-m4-20260504_175629/_tvae_train.py b/timecost/m4/tvae/tvae-m4-20260504_175629/_tvae_train.py new file mode 100644 index 0000000000000000000000000000000000000000..024f990670dcbc746aaa55122c04dee9d8ff3a9e --- /dev/null +++ b/timecost/m4/tvae/tvae-m4-20260504_175629/_tvae_train.py @@ -0,0 +1,39 @@ +import json, os, sys +sys.path.insert(0, "/work") +from src.SpecificModels.ctgan_joblib_parallel_cap import apply_parallel_cap_from_env +apply_parallel_cap_from_env() +import pandas as pd +from ctgan.data import read_csv +from ctgan.synthesizers.tvae import TVAE + +# Keep transform stage parallelism bounded for stability on shared host. +os.environ.setdefault("LOKY_MAX_CPU_COUNT", "8") +os.environ.setdefault("OPENBLAS_NUM_THREADS", "8") +os.environ.setdefault("MKL_NUM_THREADS", "8") +_nj = (os.environ.get("TVAE_CTGAN_JOBTRANS_N_JOBS") or "").strip() +if _nj: + print("[TVAE] joblib Parallel cap ON, TVAE_CTGAN_JOBTRANS_N_JOBS=" + _nj) +else: + print("[TVAE] joblib Parallel cap OFF (unset TVAE_CTGAN_JOBTRANS_N_JOBS)") +print("[TVAE] LOKY_MAX_CPU_COUNT=" + str(os.environ.get("LOKY_MAX_CPU_COUNT", ""))) + +csv_path = "/work/output-Benchmark-trainonly-v1/m4/tvae/tvae-m4-20260504_175629/staged/public/train.csv" +meta_path = "/work/output-Benchmark-trainonly-v1/m4/tvae/tvae-m4-20260504_175629/tvae_metadata.json" +save_path = "/work/output-Benchmark-trainonly-v1/m4/tvae/tvae-m4-20260504_175629/models_300epochs/tvae_300epochs.pt" +epochs = int(os.environ.get("TVAE_EPOCHS", 300)) +batch_size = int(os.environ.get("TVAE_BATCH_SIZE", "500")) +embedding_dim = int(os.environ.get("TVAE_EMBEDDING_DIM", "128")) +def _parse_dims(name, default): + raw = (os.environ.get(name) or "").strip() + if not raw: + return default + return tuple(int(x.strip()) for x in raw.split(",") if x.strip()) +compress_dims = _parse_dims("TVAE_COMPRESS_DIMS", (128, 128)) +decompress_dims = _parse_dims("TVAE_DECOMPRESS_DIMS", (128, 128)) + +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}, batch_size={batch_size}, embedding_dim={embedding_dim}, compress_dims={compress_dims}, decompress_dims={decompress_dims}") +model = TVAE(epochs=epochs, batch_size=batch_size, embedding_dim=embedding_dim, compress_dims=compress_dims, decompress_dims=decompress_dims) +model.fit(data, discrete_columns) +model.save(save_path) +print(f"[TVAE] Model saved -> {save_path}") diff --git a/timecost/m4/tvae/tvae-m4-20260504_175629/gen_20260504_175710.log b/timecost/m4/tvae/tvae-m4-20260504_175629/gen_20260504_175710.log new file mode 100644 index 0000000000000000000000000000000000000000..a795a8030882a84a26d73a4c573aaeb8f8e885c9 --- /dev/null +++ b/timecost/m4/tvae/tvae-m4-20260504_175629/gen_20260504_175710.log @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:d622877b81551b0ad684e4a5085c2911727d027af9a46fc420364324caa62b56 +size 404 diff --git a/timecost/m4/tvae/tvae-m4-20260504_175629/input_snapshot.json b/timecost/m4/tvae/tvae-m4-20260504_175629/input_snapshot.json new file mode 100644 index 0000000000000000000000000000000000000000..60c34c26acabd61c3c87a32ef8cbe89659d8c727 --- /dev/null +++ b/timecost/m4/tvae/tvae-m4-20260504_175629/input_snapshot.json @@ -0,0 +1,36 @@ +{ + "dataset_id": "m4", + "model": "tvae", + "inputs": { + "train_csv": { + "path": "/data/jialinzhang/SynthesizePipeline-server/DatasetNew/m4/m4-train.csv", + "exists": true, + "size": 92191, + "sha256": "396b9d409ca21bf4a4cd329bdf5b7796aa0ae6356fa8d89b8eb669b5880b81f1" + }, + "val_csv": { + "path": "/data/jialinzhang/SynthesizePipeline-server/DatasetNew/m4/m4-val.csv", + "exists": true, + "size": 11482, + "sha256": "ee3c247d02f56e1687d03c381e13125d6a3a2a411ac7f202ba8520a4be9f1784" + }, + "test_csv": { + "path": "/data/jialinzhang/SynthesizePipeline-server/DatasetNew/m4/m4-test.csv", + "exists": true, + "size": 11559, + "sha256": "cadb9941124001b8fa7cb1ebae43b70a9ca56294f4df4d3c2f22c164c41757d4" + }, + "profile_json": { + "path": "/data/jialinzhang/SynthesizePipeline-server/DatasetNew/artifacts/data_core/tabular/m4/m4-dataset_profile.json", + "exists": true, + "size": 3336, + "sha256": "83e2764810e4a0e8cdece3a28dbd9134b7c9df6f2e56953e46d024ad2c4e035f" + }, + "contract_json": { + "path": "/data/jialinzhang/SynthesizePipeline-server/DatasetNew/artifacts/data_core/tabular/m4/m4-dataset_contract_v1.json", + "exists": true, + "size": 3810, + "sha256": "c23641b258629a845b164099bd0132886f8f6d0100e990494e0f92540f8987d9" + } + } +} \ No newline at end of file diff --git a/timecost/m4/tvae/tvae-m4-20260504_175629/models_300epochs/train_20260504_175629.log b/timecost/m4/tvae/tvae-m4-20260504_175629/models_300epochs/train_20260504_175629.log new file mode 100644 index 0000000000000000000000000000000000000000..27900ca9d641e9523358a5597637ab7644edf35b --- /dev/null +++ b/timecost/m4/tvae/tvae-m4-20260504_175629/models_300epochs/train_20260504_175629.log @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:320957d0779658cd00032ad2ad674c5da8cf66cf3de6c185b2919b669f0d319e +size 620 diff --git a/timecost/m4/tvae/tvae-m4-20260504_175629/models_300epochs/tvae_300epochs.pt b/timecost/m4/tvae/tvae-m4-20260504_175629/models_300epochs/tvae_300epochs.pt new file mode 100644 index 0000000000000000000000000000000000000000..3cc976141c8eb3bb7f28b0ada7070e0b9b6d8632 --- /dev/null +++ b/timecost/m4/tvae/tvae-m4-20260504_175629/models_300epochs/tvae_300epochs.pt @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:b777c51e837561a377d700aa332ff47b5f936225dec80dde0479ca8c348aeba5 +size 895788 diff --git a/timecost/m4/tvae/tvae-m4-20260504_175629/public_gate/normalized_schema_snapshot.json b/timecost/m4/tvae/tvae-m4-20260504_175629/public_gate/normalized_schema_snapshot.json new file mode 100644 index 0000000000000000000000000000000000000000..31ed9818686b11907df75e872e4ffbe010330880 --- /dev/null +++ b/timecost/m4/tvae/tvae-m4-20260504_175629/public_gate/normalized_schema_snapshot.json @@ -0,0 +1,147 @@ +{ + "dataset_id": "m4", + "target_column": "charges", + "task_type": "regression", + "columns": [ + { + "name": "age", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 47, + "unique_ratio": 0.0212, + "example_values": [ + "46", + "38", + "19", + "27", + "26" + ] + } + }, + { + "name": "sex", + "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.000902, + "example_values": [ + "female", + "male" + ] + } + }, + { + "name": "bmi", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 538, + "unique_ratio": 0.24267, + "example_values": [ + "23.655", + "19.3", + "30.59", + "32.67", + "29.45" + ] + } + }, + { + "name": "children", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 6, + "unique_ratio": 0.002706, + "example_values": [ + "1", + "0", + "3", + "2", + "5" + ] + } + }, + { + "name": "smoker", + "role": "feature", + "semantic_type": "boolean", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 2, + "unique_ratio": 0.000902, + "example_values": [ + "yes", + "no" + ] + } + }, + { + "name": "region", + "role": "feature", + "semantic_type": "categorical", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 4, + "unique_ratio": 0.001804, + "example_values": [ + "northwest", + "southwest", + "southeast", + "northeast" + ] + } + }, + { + "name": "charges", + "role": "target", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 1281, + "unique_ratio": 0.577808, + "example_values": [ + "21677.28345", + "15820.699", + "1639.5631", + "2497.0383", + "2897.3235" + ] + } + } + ] +} \ No newline at end of file diff --git a/timecost/m4/tvae/tvae-m4-20260504_175629/public_gate/public_gate_report.json b/timecost/m4/tvae/tvae-m4-20260504_175629/public_gate/public_gate_report.json new file mode 100644 index 0000000000000000000000000000000000000000..e7a25408e2574124629ea9437356551e4d6f4790 --- /dev/null +++ b/timecost/m4/tvae/tvae-m4-20260504_175629/public_gate/public_gate_report.json @@ -0,0 +1,37 @@ +{ + "dataset_id": "m4", + "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": "charges", + "task_type": "regression", + "input_splits": { + "train": "/data/jialinzhang/SynthesizePipeline-server/DatasetNew/m4/m4-train.csv", + "val": "/data/jialinzhang/SynthesizePipeline-server/DatasetNew/m4/m4-val.csv", + "test": "/data/jialinzhang/SynthesizePipeline-server/DatasetNew/m4/m4-test.csv" + } +} \ No newline at end of file diff --git a/timecost/m4/tvae/tvae-m4-20260504_175629/public_gate/staged_input_manifest.json b/timecost/m4/tvae/tvae-m4-20260504_175629/public_gate/staged_input_manifest.json new file mode 100644 index 0000000000000000000000000000000000000000..0bde7a4febf07fdb8780f652af167f5f9405b7c2 --- /dev/null +++ b/timecost/m4/tvae/tvae-m4-20260504_175629/public_gate/staged_input_manifest.json @@ -0,0 +1,152 @@ +{ + "dataset_id": "m4", + "target_column": "charges", + "task_type": "regression", + "train_csv": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/m4/tvae/tvae-m4-20260504_175629/staged/public/train.csv", + "val_csv": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/m4/tvae/tvae-m4-20260504_175629/staged/public/val.csv", + "test_csv": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/m4/tvae/tvae-m4-20260504_175629/staged/public/test.csv", + "features_json": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/m4/tvae/tvae-m4-20260504_175629/staged/public/staged_features.json", + "public_gate_report": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/m4/tvae/tvae-m4-20260504_175629/public_gate/public_gate_report.json", + "column_schema": [ + { + "name": "age", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 47, + "unique_ratio": 0.0212, + "example_values": [ + "46", + "38", + "19", + "27", + "26" + ] + } + }, + { + "name": "sex", + "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.000902, + "example_values": [ + "female", + "male" + ] + } + }, + { + "name": "bmi", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 538, + "unique_ratio": 0.24267, + "example_values": [ + "23.655", + "19.3", + "30.59", + "32.67", + "29.45" + ] + } + }, + { + "name": "children", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 6, + "unique_ratio": 0.002706, + "example_values": [ + "1", + "0", + "3", + "2", + "5" + ] + } + }, + { + "name": "smoker", + "role": "feature", + "semantic_type": "boolean", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 2, + "unique_ratio": 0.000902, + "example_values": [ + "yes", + "no" + ] + } + }, + { + "name": "region", + "role": "feature", + "semantic_type": "categorical", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 4, + "unique_ratio": 0.001804, + "example_values": [ + "northwest", + "southwest", + "southeast", + "northeast" + ] + } + }, + { + "name": "charges", + "role": "target", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 1281, + "unique_ratio": 0.577808, + "example_values": [ + "21677.28345", + "15820.699", + "1639.5631", + "2497.0383", + "2897.3235" + ] + } + } + ] +} \ No newline at end of file diff --git a/timecost/m4/tvae/tvae-m4-20260504_175629/run_config.json b/timecost/m4/tvae/tvae-m4-20260504_175629/run_config.json new file mode 100644 index 0000000000000000000000000000000000000000..705b37f42cbc60a30de4fe4a4b0df2f4a0340311 --- /dev/null +++ b/timecost/m4/tvae/tvae-m4-20260504_175629/run_config.json @@ -0,0 +1,45 @@ +{ + "schema_version": 1, + "recorded_at": "2026-05-04T17:56:29", + "dataset_id": "m4", + "model": "tvae", + "work_dir": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/m4/tvae/tvae-m4-20260504_175629", + "dataset_source_requested": "new", + "dataset_source_resolved": "new", + "cli_args": { + "model": "tvae", + "dataset": "m4", + "dataset_source": "new", + "train": true, + "generate": true, + "num_rows": 0, + "epochs": null, + "output_dir": null, + "model_dir": null, + "work_dir": null, + "resume": false, + "no_stats": false + }, + "resolved": { + "num_rows": 2217, + "model_path": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/m4/tvae/tvae-m4-20260504_175629/models_300epochs/tvae_300epochs.pt", + "output_csv": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/m4/tvae/tvae-m4-20260504_175629/tvae-m4-2217-20260504_175710.csv" + }, + "input_artifacts": { + "public_gate_report": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/m4/tvae/tvae-m4-20260504_175629/public_gate/public_gate_report.json", + "public_manifest": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/m4/tvae/tvae-m4-20260504_175629/public_gate/staged_input_manifest.json", + "model_manifest": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/m4/tvae/tvae-m4-20260504_175629/staged/tvae/model_input_manifest.json", + "train_csv": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/m4/tvae/tvae-m4-20260504_175629/staged/public/train.csv", + "features_json": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/m4/tvae/tvae-m4-20260504_175629/staged/public/staged_features.json", + "target_column": "charges", + "task_type": "regression" + }, + "env_overrides": { + "BENCHMARK_TVAE_GPUS": "device=3", + "TVAE_BATCH_SIZE": "256", + "TVAE_COMPRESS_DIMS": "256,256", + "TVAE_DECOMPRESS_DIMS": "256,256", + "TVAE_EMBEDDING_DIM": "256", + "TVAE_EPOCHS": "500" + } +} \ No newline at end of file diff --git a/timecost/m4/tvae/tvae-m4-20260504_175629/runtime_result.json b/timecost/m4/tvae/tvae-m4-20260504_175629/runtime_result.json new file mode 100644 index 0000000000000000000000000000000000000000..617455803da9ab7119a01451262c6b607ec6b6c0 --- /dev/null +++ b/timecost/m4/tvae/tvae-m4-20260504_175629/runtime_result.json @@ -0,0 +1,27 @@ +{ + "dataset_id": "m4", + "model": "tvae", + "run_id": "tvae-m4-20260504_175629", + "public_gate_status": "pass", + "adapter_ready_status": "pass", + "train_status": "success", + "generate_status": "success", + "reason_code": null, + "reason_detail": null, + "artifacts": { + "synthetic_csv": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/m4/tvae/tvae-m4-20260504_175629/tvae-m4-2217-20260504_175710.csv", + "model_path": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/m4/tvae/tvae-m4-20260504_175629/models_300epochs/tvae_300epochs.pt" + }, + "timings": { + "train": { + "started_at": "2026-05-04T17:56:29", + "ended_at": "2026-05-04T17:57:10", + "duration_sec": 40.056 + }, + "generate": { + "started_at": "2026-05-04T17:57:10", + "ended_at": "2026-05-04T17:57:15", + "duration_sec": 5.089 + } + } +} \ No newline at end of file diff --git a/timecost/m4/tvae/tvae-m4-20260504_175629/staged/public/staged_features.json b/timecost/m4/tvae/tvae-m4-20260504_175629/staged/public/staged_features.json new file mode 100644 index 0000000000000000000000000000000000000000..d6acd098c35111f423f3ffff2cfd1754bc5dfebc --- /dev/null +++ b/timecost/m4/tvae/tvae-m4-20260504_175629/staged/public/staged_features.json @@ -0,0 +1,37 @@ +[ + { + "feature_name": "age", + "data_type": "continuous", + "is_target": false + }, + { + "feature_name": "sex", + "data_type": "categorical", + "is_target": false + }, + { + "feature_name": "bmi", + "data_type": "continuous", + "is_target": false + }, + { + "feature_name": "children", + "data_type": "continuous", + "is_target": false + }, + { + "feature_name": "smoker", + "data_type": "binary", + "is_target": false + }, + { + "feature_name": "region", + "data_type": "categorical", + "is_target": false + }, + { + "feature_name": "charges", + "data_type": "continuous", + "is_target": true + } +] \ No newline at end of file diff --git a/timecost/m4/tvae/tvae-m4-20260504_175629/staged/public/test.csv b/timecost/m4/tvae/tvae-m4-20260504_175629/staged/public/test.csv new file mode 100644 index 0000000000000000000000000000000000000000..c88a2e7cfcd715bb421cb56eb078033da45c4dc8 --- /dev/null +++ b/timecost/m4/tvae/tvae-m4-20260504_175629/staged/public/test.csv @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:4c541b677fb2d45c5bc79338eeee9fd8c91484b195a0c2c546c2fbabf113b7ea +size 11298 diff --git a/timecost/m4/tvae/tvae-m4-20260504_175629/staged/public/train.csv b/timecost/m4/tvae/tvae-m4-20260504_175629/staged/public/train.csv new file mode 100644 index 0000000000000000000000000000000000000000..5a05019d786529e0617291766c4fbe016ca01bf5 --- /dev/null +++ b/timecost/m4/tvae/tvae-m4-20260504_175629/staged/public/train.csv @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:614ebfac5f41d6f661aff675fa18c0f933a8d9bcc77ea71b7b2360c2f0155837 +size 90069 diff --git a/timecost/m4/tvae/tvae-m4-20260504_175629/staged/public/val.csv b/timecost/m4/tvae/tvae-m4-20260504_175629/staged/public/val.csv new file mode 100644 index 0000000000000000000000000000000000000000..d78fe5ad1537c437ba9ac2629f2aa60a6c17e708 --- /dev/null +++ b/timecost/m4/tvae/tvae-m4-20260504_175629/staged/public/val.csv @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:e55f5edbe7942ff01630de91a9c70dfbc6445eba76c7b970350364546b67c2d7 +size 11218 diff --git a/timecost/m4/tvae/tvae-m4-20260504_175629/staged/tvae/adapter_report.json b/timecost/m4/tvae/tvae-m4-20260504_175629/staged/tvae/adapter_report.json new file mode 100644 index 0000000000000000000000000000000000000000..e86089d7f904cc28c7d67d3d0e6ee530bd1bcf07 --- /dev/null +++ b/timecost/m4/tvae/tvae-m4-20260504_175629/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-Benchmark-trainonly-v1/m4/tvae/tvae-m4-20260504_175629/staged/tvae/model_input_manifest.json" +} \ No newline at end of file diff --git a/timecost/m4/tvae/tvae-m4-20260504_175629/staged/tvae/adapter_transforms_applied.json b/timecost/m4/tvae/tvae-m4-20260504_175629/staged/tvae/adapter_transforms_applied.json new file mode 100644 index 0000000000000000000000000000000000000000..0637a088a01e8ddab3bf3fa98dbe804cbde1a0dc --- /dev/null +++ b/timecost/m4/tvae/tvae-m4-20260504_175629/staged/tvae/adapter_transforms_applied.json @@ -0,0 +1 @@ +[] \ No newline at end of file diff --git a/timecost/m4/tvae/tvae-m4-20260504_175629/staged/tvae/model_input_manifest.json b/timecost/m4/tvae/tvae-m4-20260504_175629/staged/tvae/model_input_manifest.json new file mode 100644 index 0000000000000000000000000000000000000000..a7e71fa71d160ed2e4c98843a542042bbf3ca4d6 --- /dev/null +++ b/timecost/m4/tvae/tvae-m4-20260504_175629/staged/tvae/model_input_manifest.json @@ -0,0 +1,154 @@ +{ + "dataset_id": "m4", + "model": "tvae", + "target_column": "charges", + "task_type": "regression", + "column_schema": [ + { + "name": "age", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 47, + "unique_ratio": 0.0212, + "example_values": [ + "46", + "38", + "19", + "27", + "26" + ] + } + }, + { + "name": "sex", + "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.000902, + "example_values": [ + "female", + "male" + ] + } + }, + { + "name": "bmi", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 538, + "unique_ratio": 0.24267, + "example_values": [ + "23.655", + "19.3", + "30.59", + "32.67", + "29.45" + ] + } + }, + { + "name": "children", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 6, + "unique_ratio": 0.002706, + "example_values": [ + "1", + "0", + "3", + "2", + "5" + ] + } + }, + { + "name": "smoker", + "role": "feature", + "semantic_type": "boolean", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 2, + "unique_ratio": 0.000902, + "example_values": [ + "yes", + "no" + ] + } + }, + { + "name": "region", + "role": "feature", + "semantic_type": "categorical", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 4, + "unique_ratio": 0.001804, + "example_values": [ + "northwest", + "southwest", + "southeast", + "northeast" + ] + } + }, + { + "name": "charges", + "role": "target", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 1281, + "unique_ratio": 0.577808, + "example_values": [ + "21677.28345", + "15820.699", + "1639.5631", + "2497.0383", + "2897.3235" + ] + } + } + ], + "public_manifest": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/m4/tvae/tvae-m4-20260504_175629/public_gate/staged_input_manifest.json", + "train_csv": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/m4/tvae/tvae-m4-20260504_175629/staged/public/train.csv", + "val_csv": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/m4/tvae/tvae-m4-20260504_175629/staged/public/val.csv", + "test_csv": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/m4/tvae/tvae-m4-20260504_175629/staged/public/test.csv", + "features_json": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/m4/tvae/tvae-m4-20260504_175629/staged/public/staged_features.json", + "public_gate_report": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/m4/tvae/tvae-m4-20260504_175629/public_gate/public_gate_report.json" +} \ No newline at end of file diff --git a/timecost/m4/tvae/tvae-m4-20260504_175629/tvae-m4-2217-20260504_175710.csv b/timecost/m4/tvae/tvae-m4-20260504_175629/tvae-m4-2217-20260504_175710.csv new file mode 100644 index 0000000000000000000000000000000000000000..b76f452e50bc1efbd6d3d66b11321686efd20c3f --- /dev/null +++ b/timecost/m4/tvae/tvae-m4-20260504_175629/tvae-m4-2217-20260504_175710.csv @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:67f6b6e7690fa478a62874ea75e9b98054f344b22f6d643f1a56f557b739bfe1 +size 135661 diff --git a/timecost/m4/tvae/tvae-m4-20260504_175629/tvae_metadata.json b/timecost/m4/tvae/tvae-m4-20260504_175629/tvae_metadata.json new file mode 100644 index 0000000000000000000000000000000000000000..d89b1e0b3095638c982d4d3321d21a8bedcd33ae --- /dev/null +++ b/timecost/m4/tvae/tvae-m4-20260504_175629/tvae_metadata.json @@ -0,0 +1,32 @@ +{ + "columns": [ + { + "name": "age", + "type": "continuous" + }, + { + "name": "sex", + "type": "categorical" + }, + { + "name": "bmi", + "type": "continuous" + }, + { + "name": "children", + "type": "continuous" + }, + { + "name": "smoker", + "type": "categorical" + }, + { + "name": "region", + "type": "categorical" + }, + { + "name": "charges", + "type": "continuous" + } + ] +} \ No newline at end of file diff --git a/timecost/m6/arf/arf-m6-20260429_032047/_arf_generate.py b/timecost/m6/arf/arf-m6-20260429_032047/_arf_generate.py new file mode 100644 index 0000000000000000000000000000000000000000..6cb528453a62781087fcdee2e0ef2bfe9fc937a8 --- /dev/null +++ b/timecost/m6/arf/arf-m6-20260429_032047/_arf_generate.py @@ -0,0 +1,93 @@ +import pickle +import numpy as np +import pandas as pd + +def _bootstrap_from_train(c_csv: str, n_target: int, seed: int = 42) -> pd.DataFrame: + """当 arfpy.forge 完全不可用时,从训练 CSV 有放回抽样,保证行数与列对齐。""" + src = pd.read_csv(c_csv, encoding="utf-8-sig", low_memory=False) + src = src.replace([np.inf, -np.inf], np.nan).dropna(axis=1, how="all") + src = src.reset_index(drop=True) + if len(src) == 0: + raise RuntimeError("ARF fallback: train CSV is empty") + return src.sample(n=n_target, replace=True, random_state=seed).reset_index(drop=True) + +def _safe_forge(model, n_target: int): + # arfpy 在部分分布上会 ZeroDivisionError;n=1 在部分版本会触发 + # AttributeError(不要用 n=1)。失败返回 None,由外层走 bootstrap。 + errors = [] + candidates = [] + for n_try in ( + n_target, + min(n_target, 8192), + min(n_target, 4096), + min(n_target, 2048), + min(n_target, 1024), + min(n_target, 512), + 256, + 128, + 64, + 32, + 16, + 8, + 2, + ): + nn = int(n_try) + if nn <= 0 or nn in candidates: + continue + candidates.append(nn) + for n_try in candidates: + try: + out = model.forge(n=n_try).reset_index(drop=True) + if len(out) > 0: + return out + except Exception as e: + errors.append(f"n={n_try}: {type(e).__name__}: {e}") + print("[ARF] forge failed after retries; last errors:", " | ".join(errors[-4:])) + return None + +n_target = int(9864) +c_csv = "/work/output-Benchmark-trainonly-v1/m6/arf/arf-m6-20260429_032047/staged/public/train.csv" +with open("/work/output-Benchmark-trainonly-v1/m6/arf/arf-m6-20260429_032047/arf_model.pkl", "rb") as f: + model = pickle.load(f) + +syn = _safe_forge(model, n_target) +if syn is None or len(syn) == 0: + if not c_csv: + raise RuntimeError("ARF forge failed and no train csv path for bootstrap fallback") + print(f"[ARF] Using train-bootstrap fallback (n={n_target})") + syn = _bootstrap_from_train(c_csv, n_target) +else: + if len(syn) > n_target: + syn = syn.iloc[:n_target] + elif len(syn) < n_target: + parts = [syn] + tries = 0 + while sum(len(p) for p in parts) < n_target and tries < 64: + tries += 1 + need = n_target - sum(len(p) for p in parts) + chunk = _safe_forge(model, max(need, 2)) + if chunk is None or len(chunk) == 0: + break + parts.append(chunk) + syn = pd.concat(parts, ignore_index=True).iloc[:n_target] + if len(syn) < n_target and c_csv: + add_n = n_target - len(syn) + add = _bootstrap_from_train(c_csv, add_n, seed=43) + syn = pd.concat([syn, add], ignore_index=True).iloc[:n_target] + +_ds_id = 'm6' +if _ds_id == "c19": + # 仅 c19:object 列内裸换行会使 pivot 用 csv.reader 统计到的「记录数」大于 DataFrame 行数 → Sw。 + for _col in syn.columns: + if syn[_col].dtype == object: + syn[_col] = ( + syn[_col] + .astype(str) + .str.replace("\r\n", " ", regex=False) + .str.replace("\n", " ", regex=False) + .str.replace("\r", " ", regex=False) + ) + syn = syn.iloc[:n_target].reset_index(drop=True) + +syn.to_csv("/work/output-Benchmark-trainonly-v1/m6/arf/arf-m6-20260429_032047/arf-m6-9864-20260429_032614.csv", index=False) +print(f"[ARF] Generated {len(syn)} rows (requested {n_target}) -> /work/output-Benchmark-trainonly-v1/m6/arf/arf-m6-20260429_032047/arf-m6-9864-20260429_032614.csv") diff --git a/timecost/m6/arf/arf-m6-20260429_032047/_arf_train.py b/timecost/m6/arf/arf-m6-20260429_032047/_arf_train.py new file mode 100644 index 0000000000000000000000000000000000000000..4c94a2c5482897564db4c8d2062ea1537941cfad --- /dev/null +++ b/timecost/m6/arf/arf-m6-20260429_032047/_arf_train.py @@ -0,0 +1,37 @@ +import pickle +import numpy as np +import pandas as pd +from arfpy import arf + +def _sanitize_for_arf(df: pd.DataFrame) -> pd.DataFrame: + """缓解 forge 阶段 scipy.stats.truncnorm / 除零:处理 inf、NaN 与极端尾部。""" + df = df.replace([np.inf, -np.inf], np.nan) + df = df.dropna(axis=1, how="all") + for col in df.select_dtypes(include=[np.number]).columns: + med = df[col].median() + if pd.isna(med): + med = 0.0 + df[col] = df[col].fillna(med) + nu = int(df[col].nunique(dropna=True)) + if nu <= 1: + continue + lo, hi = df[col].quantile(0.001), df[col].quantile(0.999) + if pd.notna(lo) and pd.notna(hi) and lo < hi: + df[col] = df[col].clip(lo, hi) + return df + +df = pd.read_csv("/work/output-Benchmark-trainonly-v1/m6/arf/arf-m6-20260429_032047/staged/public/train.csv") +df = _sanitize_for_arf(df) +print(f"[ARF] Training on {len(df)} rows, {len(df.columns)} cols") + +model = arf.arf(x=df) +if hasattr(model, "fit"): + model.fit() +elif hasattr(model, "forde"): + model.forde() +else: + raise RuntimeError("arfpy API: no fit() / forde()") + +with open("/work/output-Benchmark-trainonly-v1/m6/arf/arf-m6-20260429_032047/arf_model.pkl", "wb") as f: + pickle.dump(model, f) +print(f"[ARF] Model saved -> /work/output-Benchmark-trainonly-v1/m6/arf/arf-m6-20260429_032047/arf_model.pkl") diff --git a/timecost/m6/arf/arf-m6-20260429_032047/arf-m6-9864-20260429_032614.csv b/timecost/m6/arf/arf-m6-20260429_032047/arf-m6-9864-20260429_032614.csv new file mode 100644 index 0000000000000000000000000000000000000000..a277909403d58ec16ee3d3127ec7a09d7532186e --- /dev/null +++ b/timecost/m6/arf/arf-m6-20260429_032047/arf-m6-9864-20260429_032614.csv @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:e131b12db9695b205eb97e35ed4baf665c6de67084e3117089dd0d357fa53710 +size 922076 diff --git a/timecost/m6/arf/arf-m6-20260429_032047/arf_model.pkl b/timecost/m6/arf/arf-m6-20260429_032047/arf_model.pkl new file mode 100644 index 0000000000000000000000000000000000000000..1e6a10f077a99b9ce2a537daaa5677ec473dd5d3 --- /dev/null +++ b/timecost/m6/arf/arf-m6-20260429_032047/arf_model.pkl @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:c474e1d8dfe780936bff412e0b2b9015b6c85e4be93f788f3af9f32ccf6c8371 +size 75686526 diff --git a/timecost/m6/arf/arf-m6-20260429_032047/gen_20260429_032614.log b/timecost/m6/arf/arf-m6-20260429_032047/gen_20260429_032614.log new file mode 100644 index 0000000000000000000000000000000000000000..ec6262434da6387a596a178624ceb92b5a25bb44 --- /dev/null +++ b/timecost/m6/arf/arf-m6-20260429_032047/gen_20260429_032614.log @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:3cc077131c12d5f2032fb426a39afb72ffb81224d2039b7888771220218b0d60 +size 4926 diff --git a/timecost/m6/arf/arf-m6-20260429_032047/input_snapshot.json b/timecost/m6/arf/arf-m6-20260429_032047/input_snapshot.json new file mode 100644 index 0000000000000000000000000000000000000000..85e550b81639d6cbdbe17d9d406679425dac9c54 --- /dev/null +++ b/timecost/m6/arf/arf-m6-20260429_032047/input_snapshot.json @@ -0,0 +1,36 @@ +{ + "dataset_id": "m6", + "model": "arf", + "inputs": { + "train_csv": { + "path": "/data/jialinzhang/SynthesizePipeline-server/DatasetNew/m6/m6-train.csv", + "exists": true, + "size": 856785, + "sha256": "a5d1c487a8f2611385915fcc5a52bad546680ddbc8d23fc695f442cdd6dafa0c" + }, + "val_csv": { + "path": "/data/jialinzhang/SynthesizePipeline-server/DatasetNew/m6/m6-val.csv", + "exists": true, + "size": 107758, + "sha256": "598196cecc227cfba95c9796b80bc1baf684a0117e6673b8662b89482cdcb78f" + }, + "test_csv": { + "path": "/data/jialinzhang/SynthesizePipeline-server/DatasetNew/m6/m6-test.csv", + "exists": true, + "size": 107996, + "sha256": "ec939ad96a3b14dd960886359fb6c5d45591adc8a734661ade3dee1417a015de" + }, + "profile_json": { + "path": "/data/jialinzhang/SynthesizePipeline-server/DatasetNew/artifacts/data_core/tabular/m6/m6-dataset_profile.json", + "exists": true, + "size": 7622, + "sha256": "859f1fe93806c8ecdea9c9db9db34fb6cf94bc112b5c0a66b2436e8ef71c2e98" + }, + "contract_json": { + "path": "/data/jialinzhang/SynthesizePipeline-server/DatasetNew/artifacts/data_core/tabular/m6/m6-dataset_contract_v1.json", + "exists": true, + "size": 8990, + "sha256": "01142eeb121af615a644c3e312f5f3e79d805396339f40d5a300ba3560cf8e90" + } + } +} \ No newline at end of file diff --git a/timecost/m6/arf/arf-m6-20260429_032047/public_gate/normalized_schema_snapshot.json b/timecost/m6/arf/arf-m6-20260429_032047/public_gate/normalized_schema_snapshot.json new file mode 100644 index 0000000000000000000000000000000000000000..0d48abfe61f58323fd4a425d175b354d51045ae1 --- /dev/null +++ b/timecost/m6/arf/arf-m6-20260429_032047/public_gate/normalized_schema_snapshot.json @@ -0,0 +1,377 @@ +{ + "dataset_id": "m6", + "target_column": "VisitorType", + "task_type": "classification", + "columns": [ + { + "name": "Administrative", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 26, + "unique_ratio": 0.002636, + "example_values": [ + "0", + "3", + "2", + "6", + "1" + ] + } + }, + { + "name": "Administrative_Duration", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 2789, + "unique_ratio": 0.282745, + "example_values": [ + "0", + "45.8", + "77.7", + "52", + "46.33333333" + ] + } + }, + { + "name": "Informational", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 17, + "unique_ratio": 0.001723, + "example_values": [ + "0", + "1", + "3", + "5", + "4" + ] + } + }, + { + "name": "Informational_Duration", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 1074, + "unique_ratio": 0.108881, + "example_values": [ + "0", + "2", + "24", + "86.75", + "62.5" + ] + } + }, + { + "name": "ProductRelated", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 286, + "unique_ratio": 0.028994, + "example_values": [ + "13", + "8", + "63", + "15", + "3" + ] + } + }, + { + "name": "ProductRelated_Duration", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 7769, + "unique_ratio": 0.787612, + "example_values": [ + "549.2", + "64", + "2435.697531", + "267.7333333", + "57.4" + ] + } + }, + { + "name": "BounceRates", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 1574, + "unique_ratio": 0.15957, + "example_values": [ + "0.019230769", + "0", + "0.00952381", + "0.022857143", + "0.004166667" + ] + } + }, + { + "name": "ExitRates", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 3953, + "unique_ratio": 0.40075, + "example_values": [ + "0.045421245", + "0.05", + "0.017460317", + "0.040606061", + "0.133333333" + ] + } + }, + { + "name": "PageValues", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 2129, + "unique_ratio": 0.215835, + "example_values": [ + "0", + "7.945368291", + "10.37042373", + "18.99269231", + "44.33548922" + ] + } + }, + { + "name": "SpecialDay", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 6, + "unique_ratio": 0.000608, + "example_values": [ + "0", + "0.4", + "0.2", + "0.8", + "1" + ] + } + }, + { + "name": "Month", + "role": "feature", + "semantic_type": "categorical", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 10, + "unique_ratio": 0.001014, + "example_values": [ + "Nov", + "Dec", + "Jul", + "Aug", + "Mar" + ] + } + }, + { + "name": "OperatingSystems", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 8, + "unique_ratio": 0.000811, + "example_values": [ + "3", + "2", + "6", + "4", + "1" + ] + } + }, + { + "name": "Browser", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 13, + "unique_ratio": 0.001318, + "example_values": [ + "2", + "1", + "5", + "4", + "3" + ] + } + }, + { + "name": "Region", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 9, + "unique_ratio": 0.000912, + "example_values": [ + "6", + "3", + "4", + "1", + "9" + ] + } + }, + { + "name": "TrafficType", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 20, + "unique_ratio": 0.002028, + "example_values": [ + "2", + "8", + "3", + "11", + "1" + ] + } + }, + { + "name": "VisitorType", + "role": "target", + "semantic_type": "categorical", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 3, + "unique_ratio": 0.000304, + "example_values": [ + "Returning_Visitor", + "New_Visitor", + "Other" + ] + } + }, + { + "name": "Weekend", + "role": "feature", + "semantic_type": "boolean", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 2, + "unique_ratio": 0.000203, + "example_values": [ + "FALSE", + "TRUE" + ] + } + }, + { + "name": "Revenue", + "role": "feature", + "semantic_type": "boolean", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 2, + "unique_ratio": 0.000203, + "example_values": [ + "FALSE", + "TRUE" + ] + } + } + ] +} \ No newline at end of file diff --git a/timecost/m6/arf/arf-m6-20260429_032047/public_gate/public_gate_report.json b/timecost/m6/arf/arf-m6-20260429_032047/public_gate/public_gate_report.json new file mode 100644 index 0000000000000000000000000000000000000000..99a260799c8356f445bdc0b33ccce8b459ba1938 --- /dev/null +++ b/timecost/m6/arf/arf-m6-20260429_032047/public_gate/public_gate_report.json @@ -0,0 +1,37 @@ +{ + "dataset_id": "m6", + "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": "VisitorType", + "task_type": "classification", + "input_splits": { + "train": "/data/jialinzhang/SynthesizePipeline-server/DatasetNew/m6/m6-train.csv", + "val": "/data/jialinzhang/SynthesizePipeline-server/DatasetNew/m6/m6-val.csv", + "test": "/data/jialinzhang/SynthesizePipeline-server/DatasetNew/m6/m6-test.csv" + } +} \ No newline at end of file diff --git a/timecost/m6/arf/arf-m6-20260429_032047/public_gate/staged_input_manifest.json b/timecost/m6/arf/arf-m6-20260429_032047/public_gate/staged_input_manifest.json new file mode 100644 index 0000000000000000000000000000000000000000..0893a4ceeba7a84df644f2ded26836b6f19a86ce --- /dev/null +++ b/timecost/m6/arf/arf-m6-20260429_032047/public_gate/staged_input_manifest.json @@ -0,0 +1,382 @@ +{ + "dataset_id": "m6", + "target_column": "VisitorType", + "task_type": "classification", + "train_csv": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/m6/arf/arf-m6-20260429_032047/staged/public/train.csv", + "val_csv": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/m6/arf/arf-m6-20260429_032047/staged/public/val.csv", + "test_csv": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/m6/arf/arf-m6-20260429_032047/staged/public/test.csv", + "features_json": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/m6/arf/arf-m6-20260429_032047/staged/public/staged_features.json", + "public_gate_report": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/m6/arf/arf-m6-20260429_032047/public_gate/public_gate_report.json", + "column_schema": [ + { + "name": "Administrative", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 26, + "unique_ratio": 0.002636, + "example_values": [ + "0", + "3", + "2", + "6", + "1" + ] + } + }, + { + "name": "Administrative_Duration", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 2789, + "unique_ratio": 0.282745, + "example_values": [ + "0", + "45.8", + "77.7", + "52", + "46.33333333" + ] + } + }, + { + "name": "Informational", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 17, + "unique_ratio": 0.001723, + "example_values": [ + "0", + "1", + "3", + "5", + "4" + ] + } + }, + { + "name": "Informational_Duration", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 1074, + "unique_ratio": 0.108881, + "example_values": [ + "0", + "2", + "24", + "86.75", + "62.5" + ] + } + }, + { + "name": "ProductRelated", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 286, + "unique_ratio": 0.028994, + "example_values": [ + "13", + "8", + "63", + "15", + "3" + ] + } + }, + { + "name": "ProductRelated_Duration", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 7769, + "unique_ratio": 0.787612, + "example_values": [ + "549.2", + "64", + "2435.697531", + "267.7333333", + "57.4" + ] + } + }, + { + "name": "BounceRates", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 1574, + "unique_ratio": 0.15957, + "example_values": [ + "0.019230769", + "0", + "0.00952381", + "0.022857143", + "0.004166667" + ] + } + }, + { + "name": "ExitRates", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 3953, + "unique_ratio": 0.40075, + "example_values": [ + "0.045421245", + "0.05", + "0.017460317", + "0.040606061", + "0.133333333" + ] + } + }, + { + "name": "PageValues", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 2129, + "unique_ratio": 0.215835, + "example_values": [ + "0", + "7.945368291", + "10.37042373", + "18.99269231", + "44.33548922" + ] + } + }, + { + "name": "SpecialDay", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 6, + "unique_ratio": 0.000608, + "example_values": [ + "0", + "0.4", + "0.2", + "0.8", + "1" + ] + } + }, + { + "name": "Month", + "role": "feature", + "semantic_type": "categorical", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 10, + "unique_ratio": 0.001014, + "example_values": [ + "Nov", + "Dec", + "Jul", + "Aug", + "Mar" + ] + } + }, + { + "name": "OperatingSystems", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 8, + "unique_ratio": 0.000811, + "example_values": [ + "3", + "2", + "6", + "4", + "1" + ] + } + }, + { + "name": "Browser", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 13, + "unique_ratio": 0.001318, + "example_values": [ + "2", + "1", + "5", + "4", + "3" + ] + } + }, + { + "name": "Region", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 9, + "unique_ratio": 0.000912, + "example_values": [ + "6", + "3", + "4", + "1", + "9" + ] + } + }, + { + "name": "TrafficType", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 20, + "unique_ratio": 0.002028, + "example_values": [ + "2", + "8", + "3", + "11", + "1" + ] + } + }, + { + "name": "VisitorType", + "role": "target", + "semantic_type": "categorical", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 3, + "unique_ratio": 0.000304, + "example_values": [ + "Returning_Visitor", + "New_Visitor", + "Other" + ] + } + }, + { + "name": "Weekend", + "role": "feature", + "semantic_type": "boolean", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 2, + "unique_ratio": 0.000203, + "example_values": [ + "FALSE", + "TRUE" + ] + } + }, + { + "name": "Revenue", + "role": "feature", + "semantic_type": "boolean", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 2, + "unique_ratio": 0.000203, + "example_values": [ + "FALSE", + "TRUE" + ] + } + } + ] +} \ No newline at end of file diff --git a/timecost/m6/arf/arf-m6-20260429_032047/runtime_result.json b/timecost/m6/arf/arf-m6-20260429_032047/runtime_result.json new file mode 100644 index 0000000000000000000000000000000000000000..3ca25f97107b274fab9f1688a2a2b75bc34b44af --- /dev/null +++ b/timecost/m6/arf/arf-m6-20260429_032047/runtime_result.json @@ -0,0 +1,15 @@ +{ + "dataset_id": "m6", + "model": "arf", + "run_id": "arf-m6-20260429_032047", + "public_gate_status": "pass", + "adapter_ready_status": "pass", + "train_status": "success", + "generate_status": "success", + "reason_code": null, + "reason_detail": null, + "artifacts": { + "synthetic_csv": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/m6/arf/arf-m6-20260429_032047/arf-m6-9864-20260429_032614.csv", + "model_path": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/m6/arf/arf-m6-20260429_032047/arf_model.pkl" + } +} \ No newline at end of file diff --git a/timecost/m6/arf/arf-m6-20260429_032047/staged/arf/adapter_report.json b/timecost/m6/arf/arf-m6-20260429_032047/staged/arf/adapter_report.json new file mode 100644 index 0000000000000000000000000000000000000000..5ae65a507115072fa65e93203e66c00b97d4b164 --- /dev/null +++ b/timecost/m6/arf/arf-m6-20260429_032047/staged/arf/adapter_report.json @@ -0,0 +1,7 @@ +{ + "adapter_ready_status": "pass", + "adapter_fail_reason_code": null, + "adapter_fail_detail": null, + "adapter_transforms_applied": [], + "model_input_manifest": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/m6/arf/arf-m6-20260429_032047/staged/arf/model_input_manifest.json" +} \ No newline at end of file diff --git a/timecost/m6/arf/arf-m6-20260429_032047/staged/arf/adapter_transforms_applied.json b/timecost/m6/arf/arf-m6-20260429_032047/staged/arf/adapter_transforms_applied.json new file mode 100644 index 0000000000000000000000000000000000000000..0637a088a01e8ddab3bf3fa98dbe804cbde1a0dc --- /dev/null +++ b/timecost/m6/arf/arf-m6-20260429_032047/staged/arf/adapter_transforms_applied.json @@ -0,0 +1 @@ +[] \ No newline at end of file diff --git a/timecost/m6/arf/arf-m6-20260429_032047/staged/arf/model_input_manifest.json b/timecost/m6/arf/arf-m6-20260429_032047/staged/arf/model_input_manifest.json new file mode 100644 index 0000000000000000000000000000000000000000..91acea8532ede476a71bb4ba8dc46fc19725d2ef --- /dev/null +++ b/timecost/m6/arf/arf-m6-20260429_032047/staged/arf/model_input_manifest.json @@ -0,0 +1,384 @@ +{ + "dataset_id": "m6", + "model": "arf", + "target_column": "VisitorType", + "task_type": "classification", + "column_schema": [ + { + "name": "Administrative", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 26, + "unique_ratio": 0.002636, + "example_values": [ + "0", + "3", + "2", + "6", + "1" + ] + } + }, + { + "name": "Administrative_Duration", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 2789, + "unique_ratio": 0.282745, + "example_values": [ + "0", + "45.8", + "77.7", + "52", + "46.33333333" + ] + } + }, + { + "name": "Informational", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 17, + "unique_ratio": 0.001723, + "example_values": [ + "0", + "1", + "3", + "5", + "4" + ] + } + }, + { + "name": "Informational_Duration", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 1074, + "unique_ratio": 0.108881, + "example_values": [ + "0", + "2", + "24", + "86.75", + "62.5" + ] + } + }, + { + "name": "ProductRelated", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 286, + "unique_ratio": 0.028994, + "example_values": [ + "13", + "8", + "63", + "15", + "3" + ] + } + }, + { + "name": "ProductRelated_Duration", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 7769, + "unique_ratio": 0.787612, + "example_values": [ + "549.2", + "64", + "2435.697531", + "267.7333333", + "57.4" + ] + } + }, + { + "name": "BounceRates", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 1574, + "unique_ratio": 0.15957, + "example_values": [ + "0.019230769", + "0", + "0.00952381", + "0.022857143", + "0.004166667" + ] + } + }, + { + "name": "ExitRates", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 3953, + "unique_ratio": 0.40075, + "example_values": [ + "0.045421245", + "0.05", + "0.017460317", + "0.040606061", + "0.133333333" + ] + } + }, + { + "name": "PageValues", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 2129, + "unique_ratio": 0.215835, + "example_values": [ + "0", + "7.945368291", + "10.37042373", + "18.99269231", + "44.33548922" + ] + } + }, + { + "name": "SpecialDay", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 6, + "unique_ratio": 0.000608, + "example_values": [ + "0", + "0.4", + "0.2", + "0.8", + "1" + ] + } + }, + { + "name": "Month", + "role": "feature", + "semantic_type": "categorical", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 10, + "unique_ratio": 0.001014, + "example_values": [ + "Nov", + "Dec", + "Jul", + "Aug", + "Mar" + ] + } + }, + { + "name": "OperatingSystems", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 8, + "unique_ratio": 0.000811, + "example_values": [ + "3", + "2", + "6", + "4", + "1" + ] + } + }, + { + "name": "Browser", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 13, + "unique_ratio": 0.001318, + "example_values": [ + "2", + "1", + "5", + "4", + "3" + ] + } + }, + { + "name": "Region", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 9, + "unique_ratio": 0.000912, + "example_values": [ + "6", + "3", + "4", + "1", + "9" + ] + } + }, + { + "name": "TrafficType", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 20, + "unique_ratio": 0.002028, + "example_values": [ + "2", + "8", + "3", + "11", + "1" + ] + } + }, + { + "name": "VisitorType", + "role": "target", + "semantic_type": "categorical", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 3, + "unique_ratio": 0.000304, + "example_values": [ + "Returning_Visitor", + "New_Visitor", + "Other" + ] + } + }, + { + "name": "Weekend", + "role": "feature", + "semantic_type": "boolean", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 2, + "unique_ratio": 0.000203, + "example_values": [ + "FALSE", + "TRUE" + ] + } + }, + { + "name": "Revenue", + "role": "feature", + "semantic_type": "boolean", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 2, + "unique_ratio": 0.000203, + "example_values": [ + "FALSE", + "TRUE" + ] + } + } + ], + "public_manifest": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/m6/arf/arf-m6-20260429_032047/public_gate/staged_input_manifest.json", + "train_csv": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/m6/arf/arf-m6-20260429_032047/staged/public/train.csv", + "val_csv": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/m6/arf/arf-m6-20260429_032047/staged/public/val.csv", + "test_csv": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/m6/arf/arf-m6-20260429_032047/staged/public/test.csv", + "features_json": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/m6/arf/arf-m6-20260429_032047/staged/public/staged_features.json", + "public_gate_report": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/m6/arf/arf-m6-20260429_032047/public_gate/public_gate_report.json" +} \ No newline at end of file diff --git a/timecost/m6/arf/arf-m6-20260429_032047/staged/public/staged_features.json b/timecost/m6/arf/arf-m6-20260429_032047/staged/public/staged_features.json new file mode 100644 index 0000000000000000000000000000000000000000..49b25bd1347f910a2b95ef0c137d1a64bf69e0cb --- /dev/null +++ b/timecost/m6/arf/arf-m6-20260429_032047/staged/public/staged_features.json @@ -0,0 +1,92 @@ +[ + { + "feature_name": "Administrative", + "data_type": "continuous", + "is_target": false + }, + { + "feature_name": "Administrative_Duration", + "data_type": "continuous", + "is_target": false + }, + { + "feature_name": "Informational", + "data_type": "continuous", + "is_target": false + }, + { + "feature_name": "Informational_Duration", + "data_type": "continuous", + "is_target": false + }, + { + "feature_name": "ProductRelated", + "data_type": "continuous", + "is_target": false + }, + { + "feature_name": "ProductRelated_Duration", + "data_type": "continuous", + "is_target": false + }, + { + "feature_name": "BounceRates", + "data_type": "continuous", + "is_target": false + }, + { + "feature_name": "ExitRates", + "data_type": "continuous", + "is_target": false + }, + { + "feature_name": "PageValues", + "data_type": "continuous", + "is_target": false + }, + { + "feature_name": "SpecialDay", + "data_type": "continuous", + "is_target": false + }, + { + "feature_name": "Month", + "data_type": "categorical", + "is_target": false + }, + { + "feature_name": "OperatingSystems", + "data_type": "continuous", + "is_target": false + }, + { + "feature_name": "Browser", + "data_type": "continuous", + "is_target": false + }, + { + "feature_name": "Region", + "data_type": "continuous", + "is_target": false + }, + { + "feature_name": "TrafficType", + "data_type": "continuous", + "is_target": false + }, + { + "feature_name": "VisitorType", + "data_type": "categorical", + "is_target": true + }, + { + "feature_name": "Weekend", + "data_type": "binary", + "is_target": false + }, + { + "feature_name": "Revenue", + "data_type": "binary", + "is_target": false + } +] \ No newline at end of file diff --git a/timecost/m6/arf/arf-m6-20260429_032047/staged/public/test.csv b/timecost/m6/arf/arf-m6-20260429_032047/staged/public/test.csv new file mode 100644 index 0000000000000000000000000000000000000000..3944bd554327e948b8bda8c383bd581f3fc26ec6 --- /dev/null +++ b/timecost/m6/arf/arf-m6-20260429_032047/staged/public/test.csv @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:d16d0389cb0fe4b23bab344dc10070de6678357a9452f9f620d0eeba66a6b12d +size 116376 diff --git a/timecost/m6/arf/arf-m6-20260429_032047/staged/public/train.csv b/timecost/m6/arf/arf-m6-20260429_032047/staged/public/train.csv new file mode 100644 index 0000000000000000000000000000000000000000..ae3a266ed7bebf02bc27c50b9dea6e8c5fe71c10 --- /dev/null +++ b/timecost/m6/arf/arf-m6-20260429_032047/staged/public/train.csv @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:e1f0338c367408dc21d5a4ec9cdc5d3fe8188916db6085f3fd326304a55551e1 +size 924849 diff --git a/timecost/m6/arf/arf-m6-20260429_032047/staged/public/val.csv b/timecost/m6/arf/arf-m6-20260429_032047/staged/public/val.csv new file mode 100644 index 0000000000000000000000000000000000000000..60be57a3609a30d56d27e37e49a3aedfa6294db5 --- /dev/null +++ b/timecost/m6/arf/arf-m6-20260429_032047/staged/public/val.csv @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:cb9169f3c7213420491d9b709ee1cc650aeaed732fa77dcbd6ffe3583366b2d4 +size 116198 diff --git a/timecost/m6/arf/arf-m6-20260429_032047/train_20260429_032047.log b/timecost/m6/arf/arf-m6-20260429_032047/train_20260429_032047.log new file mode 100644 index 0000000000000000000000000000000000000000..3b773cb689f7da622f857def3fc046a5d355ddd4 --- /dev/null +++ b/timecost/m6/arf/arf-m6-20260429_032047/train_20260429_032047.log @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:298d13ce543b6bb0c550ea0a1193e8cc1a62b93915e781e52ee34396c14bc66a +size 733 diff --git a/timecost/m6/bayesnet/bayesnet-m6-20260429_032623/_bayesnet_generate.py b/timecost/m6/bayesnet/bayesnet-m6-20260429_032623/_bayesnet_generate.py new file mode 100644 index 0000000000000000000000000000000000000000..5bc8001cc4b4804555ffa3cfb61d1a3c696e0e62 --- /dev/null +++ b/timecost/m6/bayesnet/bayesnet-m6-20260429_032623/_bayesnet_generate.py @@ -0,0 +1,105 @@ + +import pickle +import subprocess +import sys +import warnings + +import numpy as np +import pandas as pd +from pgmpy.sampling import BayesianModelSampling + +warnings.filterwarnings("ignore", category=FutureWarning) + +def _ensure_cloudpickle(): + try: + import cloudpickle # noqa: F401 + except ModuleNotFoundError: + subprocess.check_call( + [sys.executable, "-m", "pip", "install", "--quiet", "cloudpickle"], + ) + +_ensure_cloudpickle() + +with open("/work/output-Benchmark-trainonly-v1/m6/bayesnet/bayesnet-m6-20260429_032623/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(9864) +sampler = BayesianModelSampling(network) +raw = sampler.forward_sample(size=num_rows, show_progress=False) +raw = raw.reset_index(drop=True) +if len(raw) > num_rows: + raw = raw.iloc[:num_rows] +_tries = 0 +while len(raw) < num_rows and _tries < 64: + _tries += 1 + nextra = min(10000, num_rows - len(raw)) + more = sampler.forward_sample(size=max(nextra, 1), show_progress=False) + more = more.reset_index(drop=True) + if len(more) == 0: + break + raw = pd.concat([raw, more], ignore_index=True) + if len(raw) > num_rows: + raw = raw.iloc[:num_rows] + +out = pd.DataFrame(index=raw.index) +rng = np.random.default_rng() + +for c in cols: + if c in inverse["categorical"]: + levels = inverse["categorical"][c] + idx = raw[c].astype(int).to_numpy() + idx = np.clip(idx, 0, max(0, len(levels) - 1)) + out[c] = [levels[i] for i in idx] + else: + edges = np.asarray(inverse["continuous"][c], dtype=float) + if edges.size < 2: + out[c] = 0.0 + else: + nbin = edges.size - 1 + res = [] + for k in raw[c].astype(int).to_numpy(): + k = int(k) + if k < 0: + k = 0 + if k >= nbin: + k = nbin - 1 + lo, hi = float(edges[k]), float(edges[k + 1]) + if hi < lo: + lo, hi = hi, lo + v = rng.uniform(lo, hi) + if c in integer_columns: + v = int(round(v)) + res.append(v) + out[c] = res + +final = pd.DataFrame(index=out.index) +for c in full_order: + if c in const_cols: + final[c] = const_cols[c] + elif c in out.columns: + final[c] = out[c] + +dtypes = bundle.get("original_dtypes") or {} +for c, dts in dtypes.items(): + if c not in final.columns: + continue + try: + if "int" in dts: + final[c] = pd.to_numeric(final[c], errors="coerce").astype("Int64") + elif "float" in dts: + final[c] = pd.to_numeric(final[c], errors="coerce") + except Exception: + pass + +if len(final) != num_rows: + final = final.iloc[:num_rows].copy() +final = final.reset_index(drop=True) +final.to_csv("/work/output-Benchmark-trainonly-v1/m6/bayesnet/bayesnet-m6-20260429_032623/bayesnet-m6-9864-20260429_032644.csv", index=False) +print(f"[BayesNet] Generated {len(final)} rows (requested {num_rows}) -> /work/output-Benchmark-trainonly-v1/m6/bayesnet/bayesnet-m6-20260429_032623/bayesnet-m6-9864-20260429_032644.csv") diff --git a/timecost/m6/bayesnet/bayesnet-m6-20260429_032623/_bayesnet_train.py b/timecost/m6/bayesnet/bayesnet-m6-20260429_032623/_bayesnet_train.py new file mode 100644 index 0000000000000000000000000000000000000000..0af87da8451508afc336041db8cf5a90f796f660 --- /dev/null +++ b/timecost/m6/bayesnet/bayesnet-m6-20260429_032623/_bayesnet_train.py @@ -0,0 +1,133 @@ + +import json +import pickle +import subprocess +import sys +import warnings + +import numpy as np +import pandas as pd +from pgmpy.estimators import TreeSearch +from pgmpy.models import DiscreteBayesianNetwork +warnings.filterwarnings("ignore", category=FutureWarning) + +def _ensure_cloudpickle(): + try: + import cloudpickle # noqa: F401 + except ModuleNotFoundError: + subprocess.check_call( + [sys.executable, "-m", "pip", "install", "--quiet", "cloudpickle"], + ) + +_ensure_cloudpickle() + +with open("/work/output-Benchmark-trainonly-v1/m6/bayesnet/bayesnet-m6-20260429_032623/bayesnet_coltypes.json", "r", encoding="utf-8") as _f: + colmeta = json.load(_f) +integer_columns = set(colmeta.get("integer_columns") or []) + +df = pd.read_csv("/work/output-Benchmark-trainonly-v1/m6/bayesnet/bayesnet-m6-20260429_032623/staged/public/train.csv") +df = df.dropna(axis=1, how="all") +full_column_order = list(df.columns) + +const_cols = {} +for col in list(df.columns): + if df[col].nunique(dropna=True) <= 1: + const_cols[col] = df[col].iloc[0] if len(df) > 0 else None + df = df.drop(columns=[col]) + print(f"[BayesNet] Dropped zero-variance column '{col}'") + +const_path = "/work/output-Benchmark-trainonly-v1/m6/bayesnet/bayesnet-m6-20260429_032623/bayesnet_model.pkl".replace("bayesnet_model.pkl", "const_cols.json") +with open(const_path, "w", encoding="utf-8") as _f: + json.dump({k: str(v) for k, v in const_cols.items()}, _f) + +inverse = {"categorical": {}, "continuous": {}} +enc = pd.DataFrame(index=df.index) +_n_samples = len(df) +_n_plan = sum( + 1 for e in colmeta["columns"] if str(e.get("name", "")) in df.columns +) +max_bins = 10 +max_cat_levels = 256 +if _n_plan > 35 or _n_samples > 200000: + max_bins = 5 + max_cat_levels = 64 +if _n_plan > 55: + max_bins = 4 + max_cat_levels = 32 +print( + f"[BayesNet] max_bins={max_bins}, max_cat_levels={max_cat_levels} " + f"(cols_in_df={_n_plan}, rows={_n_samples})" +) + +for entry in colmeta["columns"]: + name = entry["name"] + if name not in df.columns: + continue + kind = entry["type"] + s = df[name] + if kind == "categorical": + s2 = s.astype(str).fillna("__NA__") + counts = s2.value_counts(dropna=False) + if len(counts) > max_cat_levels: + keep = set(counts.index[: max_cat_levels - 1].tolist()) + s2 = s2.map(lambda x: x if x in keep else "__OTHER__") + uniques = sorted(s2.dropna().unique(), key=lambda x: str(x)) + mapping = {str(v): i for i, v in enumerate(uniques)} + inverse["categorical"][name] = [uniques[i] for i in range(len(uniques))] + enc[name] = s2.map(lambda x, m=mapping: m.get(str(x), 0)).astype(int) + else: + s_num = pd.to_numeric(s, errors="coerce") + nu = int(s_num.nunique(dropna=True)) + q = min(max_bins, max(2, nu)) + if nu < 2: + enc[name] = np.zeros(len(s_num), dtype=int) + lo, hi = float(s_num.min()), float(s_num.max()) + inverse["continuous"][name] = [lo, hi] + else: + try: + _, bins = pd.qcut( + s_num, q=q, retbins=True, duplicates="drop" + ) + except Exception: + med = float(s_num.median()) + s2 = s_num.fillna(med) + _, bins = pd.qcut( + s2, q=min(q, 3), retbins=True, duplicates="drop" + ) + bins = np.asarray(bins, dtype=float) + lab = pd.cut( + s_num, bins=bins, labels=False, include_lowest=True + ) + enc[name] = lab.fillna(0).astype(int) + inverse["continuous"][name] = bins.tolist() + +print(f"[BayesNet] Training on {len(enc)} rows, {len(enc.columns)} cols (encoded)") + +enc_struct = enc +if len(enc) > 25000: + enc_struct = enc.sample(n=25000, random_state=0, replace=False) + print(f"[BayesNet] TreeSearch on {len(enc_struct)} rows (subsample; full n={len(enc)})") +dag = TreeSearch(enc_struct).estimate(show_progress=False) +for col in enc.columns: + if col not in dag.nodes(): + dag.add_node(col) + print(f"[BayesNet] Added isolated node to DAG: {col}") +network = DiscreteBayesianNetwork(dag) +enc_fit = enc +if len(enc) > 120000: + enc_fit = enc.sample(n=120000, random_state=1, replace=False) + print(f"[BayesNet] fit() on {len(enc_fit)} rows (full n={len(enc)})") +network.fit(enc_fit) + +bundle = { + "network": network, + "inverse": inverse, + "column_order": list(enc.columns), + "full_column_order": full_column_order, + "integer_columns": list(integer_columns), + "original_dtypes": {c: str(df[c].dtype) for c in enc.columns}, + "const_cols": const_cols, +} +with open("/work/output-Benchmark-trainonly-v1/m6/bayesnet/bayesnet-m6-20260429_032623/bayesnet_model.pkl", "wb") as _f: + pickle.dump(bundle, _f) +print(f"[BayesNet] Model saved -> /work/output-Benchmark-trainonly-v1/m6/bayesnet/bayesnet-m6-20260429_032623/bayesnet_model.pkl") diff --git a/timecost/m6/bayesnet/bayesnet-m6-20260429_032623/bayesnet-m6-9864-20260429_032644.csv b/timecost/m6/bayesnet/bayesnet-m6-20260429_032623/bayesnet-m6-9864-20260429_032644.csv new file mode 100644 index 0000000000000000000000000000000000000000..d249fa18a3d2288f5a5229407773be778d4ba173 --- /dev/null +++ b/timecost/m6/bayesnet/bayesnet-m6-20260429_032623/bayesnet-m6-9864-20260429_032644.csv @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:7ba3d31608bb7a67ddbbd04f4fa684bc6292eec77aa0698fe01f8342e22d6c00 +size 2945866 diff --git a/timecost/m6/bayesnet/bayesnet-m6-20260429_032623/bayesnet_coltypes.json b/timecost/m6/bayesnet/bayesnet-m6-20260429_032623/bayesnet_coltypes.json new file mode 100644 index 0000000000000000000000000000000000000000..23844347edd6e059f6368acfef454dd5cf85076d --- /dev/null +++ b/timecost/m6/bayesnet/bayesnet-m6-20260429_032623/bayesnet_coltypes.json @@ -0,0 +1,77 @@ +{ + "columns": [ + { + "name": "Administrative", + "type": "continuous" + }, + { + "name": "Administrative_Duration", + "type": "continuous" + }, + { + "name": "Informational", + "type": "continuous" + }, + { + "name": "Informational_Duration", + "type": "continuous" + }, + { + "name": "ProductRelated", + "type": "continuous" + }, + { + "name": "ProductRelated_Duration", + "type": "continuous" + }, + { + "name": "BounceRates", + "type": "continuous" + }, + { + "name": "ExitRates", + "type": "continuous" + }, + { + "name": "PageValues", + "type": "continuous" + }, + { + "name": "SpecialDay", + "type": "continuous" + }, + { + "name": "Month", + "type": "categorical" + }, + { + "name": "OperatingSystems", + "type": "continuous" + }, + { + "name": "Browser", + "type": "continuous" + }, + { + "name": "Region", + "type": "continuous" + }, + { + "name": "TrafficType", + "type": "continuous" + }, + { + "name": "VisitorType", + "type": "categorical" + }, + { + "name": "Weekend", + "type": "categorical" + }, + { + "name": "Revenue", + "type": "categorical" + } + ], + "integer_columns": [] +} \ No newline at end of file diff --git a/timecost/m6/bayesnet/bayesnet-m6-20260429_032623/bayesnet_model.pkl b/timecost/m6/bayesnet/bayesnet-m6-20260429_032623/bayesnet_model.pkl new file mode 100644 index 0000000000000000000000000000000000000000..24891982bad281214bb0ff39a863156193e2362b --- /dev/null +++ b/timecost/m6/bayesnet/bayesnet-m6-20260429_032623/bayesnet_model.pkl @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:5d6d1d27e02dfc4fd43778d7bcec5491a42dd3303826202c9476a8a1b40e4703 +size 15894 diff --git a/timecost/m6/bayesnet/bayesnet-m6-20260429_032623/const_cols.json b/timecost/m6/bayesnet/bayesnet-m6-20260429_032623/const_cols.json new file mode 100644 index 0000000000000000000000000000000000000000..9e26dfeeb6e641a33dae4961196235bdb965b21b --- /dev/null +++ b/timecost/m6/bayesnet/bayesnet-m6-20260429_032623/const_cols.json @@ -0,0 +1 @@ +{} \ No newline at end of file diff --git a/timecost/m6/bayesnet/bayesnet-m6-20260429_032623/gen_20260429_032644.log b/timecost/m6/bayesnet/bayesnet-m6-20260429_032623/gen_20260429_032644.log new file mode 100644 index 0000000000000000000000000000000000000000..bd55c0d1d3195a62b44ffd7e2f15aef1957a9d7c --- /dev/null +++ b/timecost/m6/bayesnet/bayesnet-m6-20260429_032623/gen_20260429_032644.log @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:09c4419abd6f561b2527256742c2e0f043a6e227668e28786eaabf42321caba5 +size 3661 diff --git a/timecost/m6/bayesnet/bayesnet-m6-20260429_032623/input_snapshot.json b/timecost/m6/bayesnet/bayesnet-m6-20260429_032623/input_snapshot.json new file mode 100644 index 0000000000000000000000000000000000000000..99f410ec3031ca9da543eec56186120ddd23b682 --- /dev/null +++ b/timecost/m6/bayesnet/bayesnet-m6-20260429_032623/input_snapshot.json @@ -0,0 +1,36 @@ +{ + "dataset_id": "m6", + "model": "bayesnet", + "inputs": { + "train_csv": { + "path": "/data/jialinzhang/SynthesizePipeline-server/DatasetNew/m6/m6-train.csv", + "exists": true, + "size": 856785, + "sha256": "a5d1c487a8f2611385915fcc5a52bad546680ddbc8d23fc695f442cdd6dafa0c" + }, + "val_csv": { + "path": "/data/jialinzhang/SynthesizePipeline-server/DatasetNew/m6/m6-val.csv", + "exists": true, + "size": 107758, + "sha256": "598196cecc227cfba95c9796b80bc1baf684a0117e6673b8662b89482cdcb78f" + }, + "test_csv": { + "path": "/data/jialinzhang/SynthesizePipeline-server/DatasetNew/m6/m6-test.csv", + "exists": true, + "size": 107996, + "sha256": "ec939ad96a3b14dd960886359fb6c5d45591adc8a734661ade3dee1417a015de" + }, + "profile_json": { + "path": "/data/jialinzhang/SynthesizePipeline-server/DatasetNew/artifacts/data_core/tabular/m6/m6-dataset_profile.json", + "exists": true, + "size": 7622, + "sha256": "859f1fe93806c8ecdea9c9db9db34fb6cf94bc112b5c0a66b2436e8ef71c2e98" + }, + "contract_json": { + "path": "/data/jialinzhang/SynthesizePipeline-server/DatasetNew/artifacts/data_core/tabular/m6/m6-dataset_contract_v1.json", + "exists": true, + "size": 8990, + "sha256": "01142eeb121af615a644c3e312f5f3e79d805396339f40d5a300ba3560cf8e90" + } + } +} \ No newline at end of file diff --git a/timecost/m6/bayesnet/bayesnet-m6-20260429_032623/public_gate/normalized_schema_snapshot.json b/timecost/m6/bayesnet/bayesnet-m6-20260429_032623/public_gate/normalized_schema_snapshot.json new file mode 100644 index 0000000000000000000000000000000000000000..0d48abfe61f58323fd4a425d175b354d51045ae1 --- /dev/null +++ b/timecost/m6/bayesnet/bayesnet-m6-20260429_032623/public_gate/normalized_schema_snapshot.json @@ -0,0 +1,377 @@ +{ + "dataset_id": "m6", + "target_column": "VisitorType", + "task_type": "classification", + "columns": [ + { + "name": "Administrative", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 26, + "unique_ratio": 0.002636, + "example_values": [ + "0", + "3", + "2", + "6", + "1" + ] + } + }, + { + "name": "Administrative_Duration", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 2789, + "unique_ratio": 0.282745, + "example_values": [ + "0", + "45.8", + "77.7", + "52", + "46.33333333" + ] + } + }, + { + "name": "Informational", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 17, + "unique_ratio": 0.001723, + "example_values": [ + "0", + "1", + "3", + "5", + "4" + ] + } + }, + { + "name": "Informational_Duration", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 1074, + "unique_ratio": 0.108881, + "example_values": [ + "0", + "2", + "24", + "86.75", + "62.5" + ] + } + }, + { + "name": "ProductRelated", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 286, + "unique_ratio": 0.028994, + "example_values": [ + "13", + "8", + "63", + "15", + "3" + ] + } + }, + { + "name": "ProductRelated_Duration", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 7769, + "unique_ratio": 0.787612, + "example_values": [ + "549.2", + "64", + "2435.697531", + "267.7333333", + "57.4" + ] + } + }, + { + "name": "BounceRates", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 1574, + "unique_ratio": 0.15957, + "example_values": [ + "0.019230769", + "0", + "0.00952381", + "0.022857143", + "0.004166667" + ] + } + }, + { + "name": "ExitRates", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 3953, + "unique_ratio": 0.40075, + "example_values": [ + "0.045421245", + "0.05", + "0.017460317", + "0.040606061", + "0.133333333" + ] + } + }, + { + "name": "PageValues", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 2129, + "unique_ratio": 0.215835, + "example_values": [ + "0", + "7.945368291", + "10.37042373", + "18.99269231", + "44.33548922" + ] + } + }, + { + "name": "SpecialDay", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 6, + "unique_ratio": 0.000608, + "example_values": [ + "0", + "0.4", + "0.2", + "0.8", + "1" + ] + } + }, + { + "name": "Month", + "role": "feature", + "semantic_type": "categorical", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 10, + "unique_ratio": 0.001014, + "example_values": [ + "Nov", + "Dec", + "Jul", + "Aug", + "Mar" + ] + } + }, + { + "name": "OperatingSystems", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 8, + "unique_ratio": 0.000811, + "example_values": [ + "3", + "2", + "6", + "4", + "1" + ] + } + }, + { + "name": "Browser", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 13, + "unique_ratio": 0.001318, + "example_values": [ + "2", + "1", + "5", + "4", + "3" + ] + } + }, + { + "name": "Region", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 9, + "unique_ratio": 0.000912, + "example_values": [ + "6", + "3", + "4", + "1", + "9" + ] + } + }, + { + "name": "TrafficType", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 20, + "unique_ratio": 0.002028, + "example_values": [ + "2", + "8", + "3", + "11", + "1" + ] + } + }, + { + "name": "VisitorType", + "role": "target", + "semantic_type": "categorical", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 3, + "unique_ratio": 0.000304, + "example_values": [ + "Returning_Visitor", + "New_Visitor", + "Other" + ] + } + }, + { + "name": "Weekend", + "role": "feature", + "semantic_type": "boolean", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 2, + "unique_ratio": 0.000203, + "example_values": [ + "FALSE", + "TRUE" + ] + } + }, + { + "name": "Revenue", + "role": "feature", + "semantic_type": "boolean", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 2, + "unique_ratio": 0.000203, + "example_values": [ + "FALSE", + "TRUE" + ] + } + } + ] +} \ No newline at end of file diff --git a/timecost/m6/bayesnet/bayesnet-m6-20260429_032623/public_gate/public_gate_report.json b/timecost/m6/bayesnet/bayesnet-m6-20260429_032623/public_gate/public_gate_report.json new file mode 100644 index 0000000000000000000000000000000000000000..99a260799c8356f445bdc0b33ccce8b459ba1938 --- /dev/null +++ b/timecost/m6/bayesnet/bayesnet-m6-20260429_032623/public_gate/public_gate_report.json @@ -0,0 +1,37 @@ +{ + "dataset_id": "m6", + "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": "VisitorType", + "task_type": "classification", + "input_splits": { + "train": "/data/jialinzhang/SynthesizePipeline-server/DatasetNew/m6/m6-train.csv", + "val": "/data/jialinzhang/SynthesizePipeline-server/DatasetNew/m6/m6-val.csv", + "test": "/data/jialinzhang/SynthesizePipeline-server/DatasetNew/m6/m6-test.csv" + } +} \ No newline at end of file diff --git a/timecost/m6/bayesnet/bayesnet-m6-20260429_032623/public_gate/staged_input_manifest.json b/timecost/m6/bayesnet/bayesnet-m6-20260429_032623/public_gate/staged_input_manifest.json new file mode 100644 index 0000000000000000000000000000000000000000..9b9f733b0f44fa5f60da6e5aaca3bbd48690bcfb --- /dev/null +++ b/timecost/m6/bayesnet/bayesnet-m6-20260429_032623/public_gate/staged_input_manifest.json @@ -0,0 +1,382 @@ +{ + "dataset_id": "m6", + "target_column": "VisitorType", + "task_type": "classification", + "train_csv": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/m6/bayesnet/bayesnet-m6-20260429_032623/staged/public/train.csv", + "val_csv": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/m6/bayesnet/bayesnet-m6-20260429_032623/staged/public/val.csv", + "test_csv": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/m6/bayesnet/bayesnet-m6-20260429_032623/staged/public/test.csv", + "features_json": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/m6/bayesnet/bayesnet-m6-20260429_032623/staged/public/staged_features.json", + "public_gate_report": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/m6/bayesnet/bayesnet-m6-20260429_032623/public_gate/public_gate_report.json", + "column_schema": [ + { + "name": "Administrative", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 26, + "unique_ratio": 0.002636, + "example_values": [ + "0", + "3", + "2", + "6", + "1" + ] + } + }, + { + "name": "Administrative_Duration", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 2789, + "unique_ratio": 0.282745, + "example_values": [ + "0", + "45.8", + "77.7", + "52", + "46.33333333" + ] + } + }, + { + "name": "Informational", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 17, + "unique_ratio": 0.001723, + "example_values": [ + "0", + "1", + "3", + "5", + "4" + ] + } + }, + { + "name": "Informational_Duration", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 1074, + "unique_ratio": 0.108881, + "example_values": [ + "0", + "2", + "24", + "86.75", + "62.5" + ] + } + }, + { + "name": "ProductRelated", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 286, + "unique_ratio": 0.028994, + "example_values": [ + "13", + "8", + "63", + "15", + "3" + ] + } + }, + { + "name": "ProductRelated_Duration", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 7769, + "unique_ratio": 0.787612, + "example_values": [ + "549.2", + "64", + "2435.697531", + "267.7333333", + "57.4" + ] + } + }, + { + "name": "BounceRates", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 1574, + "unique_ratio": 0.15957, + "example_values": [ + "0.019230769", + "0", + "0.00952381", + "0.022857143", + "0.004166667" + ] + } + }, + { + "name": "ExitRates", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 3953, + "unique_ratio": 0.40075, + "example_values": [ + "0.045421245", + "0.05", + "0.017460317", + "0.040606061", + "0.133333333" + ] + } + }, + { + "name": "PageValues", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 2129, + "unique_ratio": 0.215835, + "example_values": [ + "0", + "7.945368291", + "10.37042373", + "18.99269231", + "44.33548922" + ] + } + }, + { + "name": "SpecialDay", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 6, + "unique_ratio": 0.000608, + "example_values": [ + "0", + "0.4", + "0.2", + "0.8", + "1" + ] + } + }, + { + "name": "Month", + "role": "feature", + "semantic_type": "categorical", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 10, + "unique_ratio": 0.001014, + "example_values": [ + "Nov", + "Dec", + "Jul", + "Aug", + "Mar" + ] + } + }, + { + "name": "OperatingSystems", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 8, + "unique_ratio": 0.000811, + "example_values": [ + "3", + "2", + "6", + "4", + "1" + ] + } + }, + { + "name": "Browser", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 13, + "unique_ratio": 0.001318, + "example_values": [ + "2", + "1", + "5", + "4", + "3" + ] + } + }, + { + "name": "Region", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 9, + "unique_ratio": 0.000912, + "example_values": [ + "6", + "3", + "4", + "1", + "9" + ] + } + }, + { + "name": "TrafficType", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 20, + "unique_ratio": 0.002028, + "example_values": [ + "2", + "8", + "3", + "11", + "1" + ] + } + }, + { + "name": "VisitorType", + "role": "target", + "semantic_type": "categorical", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 3, + "unique_ratio": 0.000304, + "example_values": [ + "Returning_Visitor", + "New_Visitor", + "Other" + ] + } + }, + { + "name": "Weekend", + "role": "feature", + "semantic_type": "boolean", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 2, + "unique_ratio": 0.000203, + "example_values": [ + "FALSE", + "TRUE" + ] + } + }, + { + "name": "Revenue", + "role": "feature", + "semantic_type": "boolean", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 2, + "unique_ratio": 0.000203, + "example_values": [ + "FALSE", + "TRUE" + ] + } + } + ] +} \ No newline at end of file diff --git a/timecost/m6/bayesnet/bayesnet-m6-20260429_032623/runtime_result.json b/timecost/m6/bayesnet/bayesnet-m6-20260429_032623/runtime_result.json new file mode 100644 index 0000000000000000000000000000000000000000..3824bd4148bb10ecf817d03b77693f2a9194ed39 --- /dev/null +++ b/timecost/m6/bayesnet/bayesnet-m6-20260429_032623/runtime_result.json @@ -0,0 +1,15 @@ +{ + "dataset_id": "m6", + "model": "bayesnet", + "run_id": "bayesnet-m6-20260429_032623", + "public_gate_status": "pass", + "adapter_ready_status": "pass", + "train_status": "success", + "generate_status": "success", + "reason_code": null, + "reason_detail": null, + "artifacts": { + "synthetic_csv": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/m6/bayesnet/bayesnet-m6-20260429_032623/bayesnet-m6-9864-20260429_032644.csv", + "model_path": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/m6/bayesnet/bayesnet-m6-20260429_032623/bayesnet_model.pkl" + } +} \ No newline at end of file diff --git a/timecost/m6/bayesnet/bayesnet-m6-20260429_032623/staged/bayesnet/adapter_report.json b/timecost/m6/bayesnet/bayesnet-m6-20260429_032623/staged/bayesnet/adapter_report.json new file mode 100644 index 0000000000000000000000000000000000000000..e6320a34c30d675bc17413ac962ca709ec1dbebc --- /dev/null +++ b/timecost/m6/bayesnet/bayesnet-m6-20260429_032623/staged/bayesnet/adapter_report.json @@ -0,0 +1,7 @@ +{ + "adapter_ready_status": "pass", + "adapter_fail_reason_code": null, + "adapter_fail_detail": null, + "adapter_transforms_applied": [], + "model_input_manifest": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/m6/bayesnet/bayesnet-m6-20260429_032623/staged/bayesnet/model_input_manifest.json" +} \ No newline at end of file diff --git a/timecost/m6/bayesnet/bayesnet-m6-20260429_032623/staged/bayesnet/adapter_transforms_applied.json b/timecost/m6/bayesnet/bayesnet-m6-20260429_032623/staged/bayesnet/adapter_transforms_applied.json new file mode 100644 index 0000000000000000000000000000000000000000..0637a088a01e8ddab3bf3fa98dbe804cbde1a0dc --- /dev/null +++ b/timecost/m6/bayesnet/bayesnet-m6-20260429_032623/staged/bayesnet/adapter_transforms_applied.json @@ -0,0 +1 @@ +[] \ No newline at end of file diff --git a/timecost/m6/bayesnet/bayesnet-m6-20260429_032623/staged/bayesnet/model_input_manifest.json b/timecost/m6/bayesnet/bayesnet-m6-20260429_032623/staged/bayesnet/model_input_manifest.json new file mode 100644 index 0000000000000000000000000000000000000000..6b4d9e4a147498f4629a4605ac00053102efdf8a --- /dev/null +++ b/timecost/m6/bayesnet/bayesnet-m6-20260429_032623/staged/bayesnet/model_input_manifest.json @@ -0,0 +1,384 @@ +{ + "dataset_id": "m6", + "model": "bayesnet", + "target_column": "VisitorType", + "task_type": "classification", + "column_schema": [ + { + "name": "Administrative", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 26, + "unique_ratio": 0.002636, + "example_values": [ + "0", + "3", + "2", + "6", + "1" + ] + } + }, + { + "name": "Administrative_Duration", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 2789, + "unique_ratio": 0.282745, + "example_values": [ + "0", + "45.8", + "77.7", + "52", + "46.33333333" + ] + } + }, + { + "name": "Informational", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 17, + "unique_ratio": 0.001723, + "example_values": [ + "0", + "1", + "3", + "5", + "4" + ] + } + }, + { + "name": "Informational_Duration", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 1074, + "unique_ratio": 0.108881, + "example_values": [ + "0", + "2", + "24", + "86.75", + "62.5" + ] + } + }, + { + "name": "ProductRelated", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 286, + "unique_ratio": 0.028994, + "example_values": [ + "13", + "8", + "63", + "15", + "3" + ] + } + }, + { + "name": "ProductRelated_Duration", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 7769, + "unique_ratio": 0.787612, + "example_values": [ + "549.2", + "64", + "2435.697531", + "267.7333333", + "57.4" + ] + } + }, + { + "name": "BounceRates", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 1574, + "unique_ratio": 0.15957, + "example_values": [ + "0.019230769", + "0", + "0.00952381", + "0.022857143", + "0.004166667" + ] + } + }, + { + "name": "ExitRates", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 3953, + "unique_ratio": 0.40075, + "example_values": [ + "0.045421245", + "0.05", + "0.017460317", + "0.040606061", + "0.133333333" + ] + } + }, + { + "name": "PageValues", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 2129, + "unique_ratio": 0.215835, + "example_values": [ + "0", + "7.945368291", + "10.37042373", + "18.99269231", + "44.33548922" + ] + } + }, + { + "name": "SpecialDay", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 6, + "unique_ratio": 0.000608, + "example_values": [ + "0", + "0.4", + "0.2", + "0.8", + "1" + ] + } + }, + { + "name": "Month", + "role": "feature", + "semantic_type": "categorical", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 10, + "unique_ratio": 0.001014, + "example_values": [ + "Nov", + "Dec", + "Jul", + "Aug", + "Mar" + ] + } + }, + { + "name": "OperatingSystems", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 8, + "unique_ratio": 0.000811, + "example_values": [ + "3", + "2", + "6", + "4", + "1" + ] + } + }, + { + "name": "Browser", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 13, + "unique_ratio": 0.001318, + "example_values": [ + "2", + "1", + "5", + "4", + "3" + ] + } + }, + { + "name": "Region", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 9, + "unique_ratio": 0.000912, + "example_values": [ + "6", + "3", + "4", + "1", + "9" + ] + } + }, + { + "name": "TrafficType", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 20, + "unique_ratio": 0.002028, + "example_values": [ + "2", + "8", + "3", + "11", + "1" + ] + } + }, + { + "name": "VisitorType", + "role": "target", + "semantic_type": "categorical", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 3, + "unique_ratio": 0.000304, + "example_values": [ + "Returning_Visitor", + "New_Visitor", + "Other" + ] + } + }, + { + "name": "Weekend", + "role": "feature", + "semantic_type": "boolean", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 2, + "unique_ratio": 0.000203, + "example_values": [ + "FALSE", + "TRUE" + ] + } + }, + { + "name": "Revenue", + "role": "feature", + "semantic_type": "boolean", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 2, + "unique_ratio": 0.000203, + "example_values": [ + "FALSE", + "TRUE" + ] + } + } + ], + "public_manifest": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/m6/bayesnet/bayesnet-m6-20260429_032623/public_gate/staged_input_manifest.json", + "train_csv": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/m6/bayesnet/bayesnet-m6-20260429_032623/staged/public/train.csv", + "val_csv": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/m6/bayesnet/bayesnet-m6-20260429_032623/staged/public/val.csv", + "test_csv": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/m6/bayesnet/bayesnet-m6-20260429_032623/staged/public/test.csv", + "features_json": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/m6/bayesnet/bayesnet-m6-20260429_032623/staged/public/staged_features.json", + "public_gate_report": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/m6/bayesnet/bayesnet-m6-20260429_032623/public_gate/public_gate_report.json" +} \ No newline at end of file diff --git a/timecost/m6/bayesnet/bayesnet-m6-20260429_032623/staged/public/staged_features.json b/timecost/m6/bayesnet/bayesnet-m6-20260429_032623/staged/public/staged_features.json new file mode 100644 index 0000000000000000000000000000000000000000..49b25bd1347f910a2b95ef0c137d1a64bf69e0cb --- /dev/null +++ b/timecost/m6/bayesnet/bayesnet-m6-20260429_032623/staged/public/staged_features.json @@ -0,0 +1,92 @@ +[ + { + "feature_name": "Administrative", + "data_type": "continuous", + "is_target": false + }, + { + "feature_name": "Administrative_Duration", + "data_type": "continuous", + "is_target": false + }, + { + "feature_name": "Informational", + "data_type": "continuous", + "is_target": false + }, + { + "feature_name": "Informational_Duration", + "data_type": "continuous", + "is_target": false + }, + { + "feature_name": "ProductRelated", + "data_type": "continuous", + "is_target": false + }, + { + "feature_name": "ProductRelated_Duration", + "data_type": "continuous", + "is_target": false + }, + { + "feature_name": "BounceRates", + "data_type": "continuous", + "is_target": false + }, + { + "feature_name": "ExitRates", + "data_type": "continuous", + "is_target": false + }, + { + "feature_name": "PageValues", + "data_type": "continuous", + "is_target": false + }, + { + "feature_name": "SpecialDay", + "data_type": "continuous", + "is_target": false + }, + { + "feature_name": "Month", + "data_type": "categorical", + "is_target": false + }, + { + "feature_name": "OperatingSystems", + "data_type": "continuous", + "is_target": false + }, + { + "feature_name": "Browser", + "data_type": "continuous", + "is_target": false + }, + { + "feature_name": "Region", + "data_type": "continuous", + "is_target": false + }, + { + "feature_name": "TrafficType", + "data_type": "continuous", + "is_target": false + }, + { + "feature_name": "VisitorType", + "data_type": "categorical", + "is_target": true + }, + { + "feature_name": "Weekend", + "data_type": "binary", + "is_target": false + }, + { + "feature_name": "Revenue", + "data_type": "binary", + "is_target": false + } +] \ No newline at end of file diff --git a/timecost/m6/bayesnet/bayesnet-m6-20260429_032623/staged/public/test.csv b/timecost/m6/bayesnet/bayesnet-m6-20260429_032623/staged/public/test.csv new file mode 100644 index 0000000000000000000000000000000000000000..3944bd554327e948b8bda8c383bd581f3fc26ec6 --- /dev/null +++ b/timecost/m6/bayesnet/bayesnet-m6-20260429_032623/staged/public/test.csv @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:d16d0389cb0fe4b23bab344dc10070de6678357a9452f9f620d0eeba66a6b12d +size 116376 diff --git a/timecost/m6/bayesnet/bayesnet-m6-20260429_032623/staged/public/train.csv b/timecost/m6/bayesnet/bayesnet-m6-20260429_032623/staged/public/train.csv new file mode 100644 index 0000000000000000000000000000000000000000..ae3a266ed7bebf02bc27c50b9dea6e8c5fe71c10 --- /dev/null +++ b/timecost/m6/bayesnet/bayesnet-m6-20260429_032623/staged/public/train.csv @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:e1f0338c367408dc21d5a4ec9cdc5d3fe8188916db6085f3fd326304a55551e1 +size 924849 diff --git a/timecost/m6/bayesnet/bayesnet-m6-20260429_032623/staged/public/val.csv b/timecost/m6/bayesnet/bayesnet-m6-20260429_032623/staged/public/val.csv new file mode 100644 index 0000000000000000000000000000000000000000..60be57a3609a30d56d27e37e49a3aedfa6294db5 --- /dev/null +++ b/timecost/m6/bayesnet/bayesnet-m6-20260429_032623/staged/public/val.csv @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:cb9169f3c7213420491d9b709ee1cc650aeaed732fa77dcbd6ffe3583366b2d4 +size 116198 diff --git a/timecost/m6/bayesnet/bayesnet-m6-20260429_032623/train_20260429_032624.log b/timecost/m6/bayesnet/bayesnet-m6-20260429_032623/train_20260429_032624.log new file mode 100644 index 0000000000000000000000000000000000000000..242af21350b814cbc4b5d25dcaff811b63775008 --- /dev/null +++ b/timecost/m6/bayesnet/bayesnet-m6-20260429_032623/train_20260429_032624.log @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:b94705f16f56f9935999c102f8a4da125287e066433fdddb3f37497ef8278d9f +size 3791 diff --git a/timecost/m6/ctgan/ctgan-m6-20260429_032145/_ctgan_generate.py b/timecost/m6/ctgan/ctgan-m6-20260429_032145/_ctgan_generate.py new file mode 100644 index 0000000000000000000000000000000000000000..cd962c7d70b43c09c205e11c9a5f99d56451dd83 --- /dev/null +++ b/timecost/m6/ctgan/ctgan-m6-20260429_032145/_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-Benchmark-trainonly-v1/m6/ctgan/ctgan-m6-20260429_032145/models_300epochs/ctgan_300epochs.pt") +total = 9864 +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-Benchmark-trainonly-v1/m6/ctgan/ctgan-m6-20260429_032145/ctgan-m6-9864-20260429_032657.csv", index=False) +print("[CTGAN] Generated", total, "rows in", len(parts), "chunks ->", "/work/output-Benchmark-trainonly-v1/m6/ctgan/ctgan-m6-20260429_032145/ctgan-m6-9864-20260429_032657.csv") \ No newline at end of file diff --git a/timecost/m6/ctgan/ctgan-m6-20260429_032145/ctgan-m6-9864-20260429_032657.csv b/timecost/m6/ctgan/ctgan-m6-20260429_032145/ctgan-m6-9864-20260429_032657.csv new file mode 100644 index 0000000000000000000000000000000000000000..4805c5549b3abea2b7811a1602b78c3b388702f3 --- /dev/null +++ b/timecost/m6/ctgan/ctgan-m6-20260429_032145/ctgan-m6-9864-20260429_032657.csv @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:438cc75c1fd73ef405de318fd74e2e9996bed3e8b618759f064c8f2339c86ccf +size 1829798 diff --git a/timecost/m6/ctgan/ctgan-m6-20260429_032145/ctgan_metadata.json b/timecost/m6/ctgan/ctgan-m6-20260429_032145/ctgan_metadata.json new file mode 100644 index 0000000000000000000000000000000000000000..bd02cd3078ddd1c4e6c63a87889218d62f25b7c8 --- /dev/null +++ b/timecost/m6/ctgan/ctgan-m6-20260429_032145/ctgan_metadata.json @@ -0,0 +1,76 @@ +{ + "columns": [ + { + "name": "Administrative", + "type": "continuous" + }, + { + "name": "Administrative_Duration", + "type": "continuous" + }, + { + "name": "Informational", + "type": "continuous" + }, + { + "name": "Informational_Duration", + "type": "continuous" + }, + { + "name": "ProductRelated", + "type": "continuous" + }, + { + "name": "ProductRelated_Duration", + "type": "continuous" + }, + { + "name": "BounceRates", + "type": "continuous" + }, + { + "name": "ExitRates", + "type": "continuous" + }, + { + "name": "PageValues", + "type": "continuous" + }, + { + "name": "SpecialDay", + "type": "continuous" + }, + { + "name": "Month", + "type": "categorical" + }, + { + "name": "OperatingSystems", + "type": "continuous" + }, + { + "name": "Browser", + "type": "continuous" + }, + { + "name": "Region", + "type": "continuous" + }, + { + "name": "TrafficType", + "type": "continuous" + }, + { + "name": "VisitorType", + "type": "categorical" + }, + { + "name": "Weekend", + "type": "categorical" + }, + { + "name": "Revenue", + "type": "categorical" + } + ] +} \ No newline at end of file diff --git a/timecost/m6/ctgan/ctgan-m6-20260429_032145/gen_20260429_032657.log b/timecost/m6/ctgan/ctgan-m6-20260429_032145/gen_20260429_032657.log new file mode 100644 index 0000000000000000000000000000000000000000..2a441a2bce3ea18d8654bbf19f5bd32b15d2b1aa --- /dev/null +++ b/timecost/m6/ctgan/ctgan-m6-20260429_032145/gen_20260429_032657.log @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:19d47b8669a9e287c4c692efd3927f6d70881c595e01df8aad995a20e4d4152d +size 561 diff --git a/timecost/m6/ctgan/ctgan-m6-20260429_032145/input_snapshot.json b/timecost/m6/ctgan/ctgan-m6-20260429_032145/input_snapshot.json new file mode 100644 index 0000000000000000000000000000000000000000..96d3c92e8ca24bcac92a2b04acf9589941cfbef1 --- /dev/null +++ b/timecost/m6/ctgan/ctgan-m6-20260429_032145/input_snapshot.json @@ -0,0 +1,36 @@ +{ + "dataset_id": "m6", + "model": "ctgan", + "inputs": { + "train_csv": { + "path": "/data/jialinzhang/SynthesizePipeline-server/DatasetNew/m6/m6-train.csv", + "exists": true, + "size": 856785, + "sha256": "a5d1c487a8f2611385915fcc5a52bad546680ddbc8d23fc695f442cdd6dafa0c" + }, + "val_csv": { + "path": "/data/jialinzhang/SynthesizePipeline-server/DatasetNew/m6/m6-val.csv", + "exists": true, + "size": 107758, + "sha256": "598196cecc227cfba95c9796b80bc1baf684a0117e6673b8662b89482cdcb78f" + }, + "test_csv": { + "path": "/data/jialinzhang/SynthesizePipeline-server/DatasetNew/m6/m6-test.csv", + "exists": true, + "size": 107996, + "sha256": "ec939ad96a3b14dd960886359fb6c5d45591adc8a734661ade3dee1417a015de" + }, + "profile_json": { + "path": "/data/jialinzhang/SynthesizePipeline-server/DatasetNew/artifacts/data_core/tabular/m6/m6-dataset_profile.json", + "exists": true, + "size": 7622, + "sha256": "859f1fe93806c8ecdea9c9db9db34fb6cf94bc112b5c0a66b2436e8ef71c2e98" + }, + "contract_json": { + "path": "/data/jialinzhang/SynthesizePipeline-server/DatasetNew/artifacts/data_core/tabular/m6/m6-dataset_contract_v1.json", + "exists": true, + "size": 8990, + "sha256": "01142eeb121af615a644c3e312f5f3e79d805396339f40d5a300ba3560cf8e90" + } + } +} \ No newline at end of file diff --git a/timecost/m6/ctgan/ctgan-m6-20260429_032145/models_300epochs/ctgan_300epochs.pt b/timecost/m6/ctgan/ctgan-m6-20260429_032145/models_300epochs/ctgan_300epochs.pt new file mode 100644 index 0000000000000000000000000000000000000000..20cf9189fc728db47c055e943c95bcde8160da99 --- /dev/null +++ b/timecost/m6/ctgan/ctgan-m6-20260429_032145/models_300epochs/ctgan_300epochs.pt @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:241807a5f1a5e8e4b1c00fff112e27a888c7bc1752c5c78733b23b64fe95a6d4 +size 1830563 diff --git a/timecost/m6/ctgan/ctgan-m6-20260429_032145/models_300epochs/train_20260429_032145.log b/timecost/m6/ctgan/ctgan-m6-20260429_032145/models_300epochs/train_20260429_032145.log new file mode 100644 index 0000000000000000000000000000000000000000..19f91216940699a13718bc8d7827d29ff1baf374 --- /dev/null +++ b/timecost/m6/ctgan/ctgan-m6-20260429_032145/models_300epochs/train_20260429_032145.log @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:493afcee1881a840880ee1f60c756fd92acc2e64c7413859ff3b145813976daa +size 3487 diff --git a/timecost/m6/ctgan/ctgan-m6-20260429_032145/public_gate/normalized_schema_snapshot.json b/timecost/m6/ctgan/ctgan-m6-20260429_032145/public_gate/normalized_schema_snapshot.json new file mode 100644 index 0000000000000000000000000000000000000000..0d48abfe61f58323fd4a425d175b354d51045ae1 --- /dev/null +++ b/timecost/m6/ctgan/ctgan-m6-20260429_032145/public_gate/normalized_schema_snapshot.json @@ -0,0 +1,377 @@ +{ + "dataset_id": "m6", + "target_column": "VisitorType", + "task_type": "classification", + "columns": [ + { + "name": "Administrative", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 26, + "unique_ratio": 0.002636, + "example_values": [ + "0", + "3", + "2", + "6", + "1" + ] + } + }, + { + "name": "Administrative_Duration", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 2789, + "unique_ratio": 0.282745, + "example_values": [ + "0", + "45.8", + "77.7", + "52", + "46.33333333" + ] + } + }, + { + "name": "Informational", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 17, + "unique_ratio": 0.001723, + "example_values": [ + "0", + "1", + "3", + "5", + "4" + ] + } + }, + { + "name": "Informational_Duration", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 1074, + "unique_ratio": 0.108881, + "example_values": [ + "0", + "2", + "24", + "86.75", + "62.5" + ] + } + }, + { + "name": "ProductRelated", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 286, + "unique_ratio": 0.028994, + "example_values": [ + "13", + "8", + "63", + "15", + "3" + ] + } + }, + { + "name": "ProductRelated_Duration", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 7769, + "unique_ratio": 0.787612, + "example_values": [ + "549.2", + "64", + "2435.697531", + "267.7333333", + "57.4" + ] + } + }, + { + "name": "BounceRates", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 1574, + "unique_ratio": 0.15957, + "example_values": [ + "0.019230769", + "0", + "0.00952381", + "0.022857143", + "0.004166667" + ] + } + }, + { + "name": "ExitRates", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 3953, + "unique_ratio": 0.40075, + "example_values": [ + "0.045421245", + "0.05", + "0.017460317", + "0.040606061", + "0.133333333" + ] + } + }, + { + "name": "PageValues", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 2129, + "unique_ratio": 0.215835, + "example_values": [ + "0", + "7.945368291", + "10.37042373", + "18.99269231", + "44.33548922" + ] + } + }, + { + "name": "SpecialDay", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 6, + "unique_ratio": 0.000608, + "example_values": [ + "0", + "0.4", + "0.2", + "0.8", + "1" + ] + } + }, + { + "name": "Month", + "role": "feature", + "semantic_type": "categorical", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 10, + "unique_ratio": 0.001014, + "example_values": [ + "Nov", + "Dec", + "Jul", + "Aug", + "Mar" + ] + } + }, + { + "name": "OperatingSystems", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 8, + "unique_ratio": 0.000811, + "example_values": [ + "3", + "2", + "6", + "4", + "1" + ] + } + }, + { + "name": "Browser", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 13, + "unique_ratio": 0.001318, + "example_values": [ + "2", + "1", + "5", + "4", + "3" + ] + } + }, + { + "name": "Region", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 9, + "unique_ratio": 0.000912, + "example_values": [ + "6", + "3", + "4", + "1", + "9" + ] + } + }, + { + "name": "TrafficType", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 20, + "unique_ratio": 0.002028, + "example_values": [ + "2", + "8", + "3", + "11", + "1" + ] + } + }, + { + "name": "VisitorType", + "role": "target", + "semantic_type": "categorical", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 3, + "unique_ratio": 0.000304, + "example_values": [ + "Returning_Visitor", + "New_Visitor", + "Other" + ] + } + }, + { + "name": "Weekend", + "role": "feature", + "semantic_type": "boolean", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 2, + "unique_ratio": 0.000203, + "example_values": [ + "FALSE", + "TRUE" + ] + } + }, + { + "name": "Revenue", + "role": "feature", + "semantic_type": "boolean", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 2, + "unique_ratio": 0.000203, + "example_values": [ + "FALSE", + "TRUE" + ] + } + } + ] +} \ No newline at end of file diff --git a/timecost/m6/ctgan/ctgan-m6-20260429_032145/public_gate/public_gate_report.json b/timecost/m6/ctgan/ctgan-m6-20260429_032145/public_gate/public_gate_report.json new file mode 100644 index 0000000000000000000000000000000000000000..99a260799c8356f445bdc0b33ccce8b459ba1938 --- /dev/null +++ b/timecost/m6/ctgan/ctgan-m6-20260429_032145/public_gate/public_gate_report.json @@ -0,0 +1,37 @@ +{ + "dataset_id": "m6", + "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": "VisitorType", + "task_type": "classification", + "input_splits": { + "train": "/data/jialinzhang/SynthesizePipeline-server/DatasetNew/m6/m6-train.csv", + "val": "/data/jialinzhang/SynthesizePipeline-server/DatasetNew/m6/m6-val.csv", + "test": "/data/jialinzhang/SynthesizePipeline-server/DatasetNew/m6/m6-test.csv" + } +} \ No newline at end of file diff --git a/timecost/m6/ctgan/ctgan-m6-20260429_032145/public_gate/staged_input_manifest.json b/timecost/m6/ctgan/ctgan-m6-20260429_032145/public_gate/staged_input_manifest.json new file mode 100644 index 0000000000000000000000000000000000000000..4eeae945e760ac2c94d9f697939ff4bebcfc078b --- /dev/null +++ b/timecost/m6/ctgan/ctgan-m6-20260429_032145/public_gate/staged_input_manifest.json @@ -0,0 +1,382 @@ +{ + "dataset_id": "m6", + "target_column": "VisitorType", + "task_type": "classification", + "train_csv": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/m6/ctgan/ctgan-m6-20260429_032145/staged/public/train.csv", + "val_csv": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/m6/ctgan/ctgan-m6-20260429_032145/staged/public/val.csv", + "test_csv": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/m6/ctgan/ctgan-m6-20260429_032145/staged/public/test.csv", + "features_json": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/m6/ctgan/ctgan-m6-20260429_032145/staged/public/staged_features.json", + "public_gate_report": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/m6/ctgan/ctgan-m6-20260429_032145/public_gate/public_gate_report.json", + "column_schema": [ + { + "name": "Administrative", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 26, + "unique_ratio": 0.002636, + "example_values": [ + "0", + "3", + "2", + "6", + "1" + ] + } + }, + { + "name": "Administrative_Duration", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 2789, + "unique_ratio": 0.282745, + "example_values": [ + "0", + "45.8", + "77.7", + "52", + "46.33333333" + ] + } + }, + { + "name": "Informational", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 17, + "unique_ratio": 0.001723, + "example_values": [ + "0", + "1", + "3", + "5", + "4" + ] + } + }, + { + "name": "Informational_Duration", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 1074, + "unique_ratio": 0.108881, + "example_values": [ + "0", + "2", + "24", + "86.75", + "62.5" + ] + } + }, + { + "name": "ProductRelated", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 286, + "unique_ratio": 0.028994, + "example_values": [ + "13", + "8", + "63", + "15", + "3" + ] + } + }, + { + "name": "ProductRelated_Duration", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 7769, + "unique_ratio": 0.787612, + "example_values": [ + "549.2", + "64", + "2435.697531", + "267.7333333", + "57.4" + ] + } + }, + { + "name": "BounceRates", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 1574, + "unique_ratio": 0.15957, + "example_values": [ + "0.019230769", + "0", + "0.00952381", + "0.022857143", + "0.004166667" + ] + } + }, + { + "name": "ExitRates", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 3953, + "unique_ratio": 0.40075, + "example_values": [ + "0.045421245", + "0.05", + "0.017460317", + "0.040606061", + "0.133333333" + ] + } + }, + { + "name": "PageValues", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 2129, + "unique_ratio": 0.215835, + "example_values": [ + "0", + "7.945368291", + "10.37042373", + "18.99269231", + "44.33548922" + ] + } + }, + { + "name": "SpecialDay", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 6, + "unique_ratio": 0.000608, + "example_values": [ + "0", + "0.4", + "0.2", + "0.8", + "1" + ] + } + }, + { + "name": "Month", + "role": "feature", + "semantic_type": "categorical", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 10, + "unique_ratio": 0.001014, + "example_values": [ + "Nov", + "Dec", + "Jul", + "Aug", + "Mar" + ] + } + }, + { + "name": "OperatingSystems", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 8, + "unique_ratio": 0.000811, + "example_values": [ + "3", + "2", + "6", + "4", + "1" + ] + } + }, + { + "name": "Browser", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 13, + "unique_ratio": 0.001318, + "example_values": [ + "2", + "1", + "5", + "4", + "3" + ] + } + }, + { + "name": "Region", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 9, + "unique_ratio": 0.000912, + "example_values": [ + "6", + "3", + "4", + "1", + "9" + ] + } + }, + { + "name": "TrafficType", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 20, + "unique_ratio": 0.002028, + "example_values": [ + "2", + "8", + "3", + "11", + "1" + ] + } + }, + { + "name": "VisitorType", + "role": "target", + "semantic_type": "categorical", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 3, + "unique_ratio": 0.000304, + "example_values": [ + "Returning_Visitor", + "New_Visitor", + "Other" + ] + } + }, + { + "name": "Weekend", + "role": "feature", + "semantic_type": "boolean", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 2, + "unique_ratio": 0.000203, + "example_values": [ + "FALSE", + "TRUE" + ] + } + }, + { + "name": "Revenue", + "role": "feature", + "semantic_type": "boolean", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 2, + "unique_ratio": 0.000203, + "example_values": [ + "FALSE", + "TRUE" + ] + } + } + ] +} \ No newline at end of file diff --git a/timecost/m6/ctgan/ctgan-m6-20260429_032145/runtime_result.json b/timecost/m6/ctgan/ctgan-m6-20260429_032145/runtime_result.json new file mode 100644 index 0000000000000000000000000000000000000000..37446a6b4b8a4792e8a6ceb06ea87bb926ca94c7 --- /dev/null +++ b/timecost/m6/ctgan/ctgan-m6-20260429_032145/runtime_result.json @@ -0,0 +1,15 @@ +{ + "dataset_id": "m6", + "model": "ctgan", + "run_id": "ctgan-m6-20260429_032145", + "public_gate_status": "pass", + "adapter_ready_status": "pass", + "train_status": "success", + "generate_status": "success", + "reason_code": null, + "reason_detail": null, + "artifacts": { + "synthetic_csv": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/m6/ctgan/ctgan-m6-20260429_032145/ctgan-m6-9864-20260429_032657.csv", + "model_path": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/m6/ctgan/ctgan-m6-20260429_032145/models_300epochs/ctgan_300epochs.pt" + } +} \ No newline at end of file diff --git a/timecost/m6/ctgan/ctgan-m6-20260429_032145/staged/ctgan/adapter_report.json b/timecost/m6/ctgan/ctgan-m6-20260429_032145/staged/ctgan/adapter_report.json new file mode 100644 index 0000000000000000000000000000000000000000..c158fef9d21ee1c2a4f5d6d5c6544bbd5f418b5a --- /dev/null +++ b/timecost/m6/ctgan/ctgan-m6-20260429_032145/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-Benchmark-trainonly-v1/m6/ctgan/ctgan-m6-20260429_032145/staged/ctgan/model_input_manifest.json" +} \ No newline at end of file diff --git a/timecost/m6/ctgan/ctgan-m6-20260429_032145/staged/ctgan/adapter_transforms_applied.json b/timecost/m6/ctgan/ctgan-m6-20260429_032145/staged/ctgan/adapter_transforms_applied.json new file mode 100644 index 0000000000000000000000000000000000000000..0637a088a01e8ddab3bf3fa98dbe804cbde1a0dc --- /dev/null +++ b/timecost/m6/ctgan/ctgan-m6-20260429_032145/staged/ctgan/adapter_transforms_applied.json @@ -0,0 +1 @@ +[] \ No newline at end of file diff --git a/timecost/m6/ctgan/ctgan-m6-20260429_032145/staged/ctgan/model_input_manifest.json b/timecost/m6/ctgan/ctgan-m6-20260429_032145/staged/ctgan/model_input_manifest.json new file mode 100644 index 0000000000000000000000000000000000000000..f120c837b1c0c10ae7b554c424900ac9a0d6aea3 --- /dev/null +++ b/timecost/m6/ctgan/ctgan-m6-20260429_032145/staged/ctgan/model_input_manifest.json @@ -0,0 +1,384 @@ +{ + "dataset_id": "m6", + "model": "ctgan", + "target_column": "VisitorType", + "task_type": "classification", + "column_schema": [ + { + "name": "Administrative", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 26, + "unique_ratio": 0.002636, + "example_values": [ + "0", + "3", + "2", + "6", + "1" + ] + } + }, + { + "name": "Administrative_Duration", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 2789, + "unique_ratio": 0.282745, + "example_values": [ + "0", + "45.8", + "77.7", + "52", + "46.33333333" + ] + } + }, + { + "name": "Informational", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 17, + "unique_ratio": 0.001723, + "example_values": [ + "0", + "1", + "3", + "5", + "4" + ] + } + }, + { + "name": "Informational_Duration", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 1074, + "unique_ratio": 0.108881, + "example_values": [ + "0", + "2", + "24", + "86.75", + "62.5" + ] + } + }, + { + "name": "ProductRelated", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 286, + "unique_ratio": 0.028994, + "example_values": [ + "13", + "8", + "63", + "15", + "3" + ] + } + }, + { + "name": "ProductRelated_Duration", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 7769, + "unique_ratio": 0.787612, + "example_values": [ + "549.2", + "64", + "2435.697531", + "267.7333333", + "57.4" + ] + } + }, + { + "name": "BounceRates", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 1574, + "unique_ratio": 0.15957, + "example_values": [ + "0.019230769", + "0", + "0.00952381", + "0.022857143", + "0.004166667" + ] + } + }, + { + "name": "ExitRates", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 3953, + "unique_ratio": 0.40075, + "example_values": [ + "0.045421245", + "0.05", + "0.017460317", + "0.040606061", + "0.133333333" + ] + } + }, + { + "name": "PageValues", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 2129, + "unique_ratio": 0.215835, + "example_values": [ + "0", + "7.945368291", + "10.37042373", + "18.99269231", + "44.33548922" + ] + } + }, + { + "name": "SpecialDay", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 6, + "unique_ratio": 0.000608, + "example_values": [ + "0", + "0.4", + "0.2", + "0.8", + "1" + ] + } + }, + { + "name": "Month", + "role": "feature", + "semantic_type": "categorical", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 10, + "unique_ratio": 0.001014, + "example_values": [ + "Nov", + "Dec", + "Jul", + "Aug", + "Mar" + ] + } + }, + { + "name": "OperatingSystems", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 8, + "unique_ratio": 0.000811, + "example_values": [ + "3", + "2", + "6", + "4", + "1" + ] + } + }, + { + "name": "Browser", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 13, + "unique_ratio": 0.001318, + "example_values": [ + "2", + "1", + "5", + "4", + "3" + ] + } + }, + { + "name": "Region", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 9, + "unique_ratio": 0.000912, + "example_values": [ + "6", + "3", + "4", + "1", + "9" + ] + } + }, + { + "name": "TrafficType", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 20, + "unique_ratio": 0.002028, + "example_values": [ + "2", + "8", + "3", + "11", + "1" + ] + } + }, + { + "name": "VisitorType", + "role": "target", + "semantic_type": "categorical", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 3, + "unique_ratio": 0.000304, + "example_values": [ + "Returning_Visitor", + "New_Visitor", + "Other" + ] + } + }, + { + "name": "Weekend", + "role": "feature", + "semantic_type": "boolean", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 2, + "unique_ratio": 0.000203, + "example_values": [ + "FALSE", + "TRUE" + ] + } + }, + { + "name": "Revenue", + "role": "feature", + "semantic_type": "boolean", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 2, + "unique_ratio": 0.000203, + "example_values": [ + "FALSE", + "TRUE" + ] + } + } + ], + "public_manifest": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/m6/ctgan/ctgan-m6-20260429_032145/public_gate/staged_input_manifest.json", + "train_csv": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/m6/ctgan/ctgan-m6-20260429_032145/staged/public/train.csv", + "val_csv": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/m6/ctgan/ctgan-m6-20260429_032145/staged/public/val.csv", + "test_csv": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/m6/ctgan/ctgan-m6-20260429_032145/staged/public/test.csv", + "features_json": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/m6/ctgan/ctgan-m6-20260429_032145/staged/public/staged_features.json", + "public_gate_report": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/m6/ctgan/ctgan-m6-20260429_032145/public_gate/public_gate_report.json" +} \ No newline at end of file diff --git a/timecost/m6/ctgan/ctgan-m6-20260429_032145/staged/public/staged_features.json b/timecost/m6/ctgan/ctgan-m6-20260429_032145/staged/public/staged_features.json new file mode 100644 index 0000000000000000000000000000000000000000..49b25bd1347f910a2b95ef0c137d1a64bf69e0cb --- /dev/null +++ b/timecost/m6/ctgan/ctgan-m6-20260429_032145/staged/public/staged_features.json @@ -0,0 +1,92 @@ +[ + { + "feature_name": "Administrative", + "data_type": "continuous", + "is_target": false + }, + { + "feature_name": "Administrative_Duration", + "data_type": "continuous", + "is_target": false + }, + { + "feature_name": "Informational", + "data_type": "continuous", + "is_target": false + }, + { + "feature_name": "Informational_Duration", + "data_type": "continuous", + "is_target": false + }, + { + "feature_name": "ProductRelated", + "data_type": "continuous", + "is_target": false + }, + { + "feature_name": "ProductRelated_Duration", + "data_type": "continuous", + "is_target": false + }, + { + "feature_name": "BounceRates", + "data_type": "continuous", + "is_target": false + }, + { + "feature_name": "ExitRates", + "data_type": "continuous", + "is_target": false + }, + { + "feature_name": "PageValues", + "data_type": "continuous", + "is_target": false + }, + { + "feature_name": "SpecialDay", + "data_type": "continuous", + "is_target": false + }, + { + "feature_name": "Month", + "data_type": "categorical", + "is_target": false + }, + { + "feature_name": "OperatingSystems", + "data_type": "continuous", + "is_target": false + }, + { + "feature_name": "Browser", + "data_type": "continuous", + "is_target": false + }, + { + "feature_name": "Region", + "data_type": "continuous", + "is_target": false + }, + { + "feature_name": "TrafficType", + "data_type": "continuous", + "is_target": false + }, + { + "feature_name": "VisitorType", + "data_type": "categorical", + "is_target": true + }, + { + "feature_name": "Weekend", + "data_type": "binary", + "is_target": false + }, + { + "feature_name": "Revenue", + "data_type": "binary", + "is_target": false + } +] \ No newline at end of file diff --git a/timecost/m6/ctgan/ctgan-m6-20260429_032145/staged/public/test.csv b/timecost/m6/ctgan/ctgan-m6-20260429_032145/staged/public/test.csv new file mode 100644 index 0000000000000000000000000000000000000000..3944bd554327e948b8bda8c383bd581f3fc26ec6 --- /dev/null +++ b/timecost/m6/ctgan/ctgan-m6-20260429_032145/staged/public/test.csv @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:d16d0389cb0fe4b23bab344dc10070de6678357a9452f9f620d0eeba66a6b12d +size 116376 diff --git a/timecost/m6/ctgan/ctgan-m6-20260429_032145/staged/public/train.csv b/timecost/m6/ctgan/ctgan-m6-20260429_032145/staged/public/train.csv new file mode 100644 index 0000000000000000000000000000000000000000..ae3a266ed7bebf02bc27c50b9dea6e8c5fe71c10 --- /dev/null +++ b/timecost/m6/ctgan/ctgan-m6-20260429_032145/staged/public/train.csv @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:e1f0338c367408dc21d5a4ec9cdc5d3fe8188916db6085f3fd326304a55551e1 +size 924849 diff --git a/timecost/m6/ctgan/ctgan-m6-20260429_032145/staged/public/val.csv b/timecost/m6/ctgan/ctgan-m6-20260429_032145/staged/public/val.csv new file mode 100644 index 0000000000000000000000000000000000000000..60be57a3609a30d56d27e37e49a3aedfa6294db5 --- /dev/null +++ b/timecost/m6/ctgan/ctgan-m6-20260429_032145/staged/public/val.csv @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:cb9169f3c7213420491d9b709ee1cc650aeaed732fa77dcbd6ffe3583366b2d4 +size 116198 diff --git a/timecost/m6/forestdiffusion/forest-m6-20260430_054459/_fd_X_host.npy b/timecost/m6/forestdiffusion/forest-m6-20260430_054459/_fd_X_host.npy new file mode 100644 index 0000000000000000000000000000000000000000..f9898e1189639328928f0b5de8c60707b257fa19 --- /dev/null +++ b/timecost/m6/forestdiffusion/forest-m6-20260430_054459/_fd_X_host.npy @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:ce27b51e592355e14fee8f6d47e08e3f99736fcde567190e0e180a1656361059 +size 710336 diff --git a/timecost/m6/forestdiffusion/forest-m6-20260430_054459/_fd_gen.py b/timecost/m6/forestdiffusion/forest-m6-20260430_054459/_fd_gen.py new file mode 100644 index 0000000000000000000000000000000000000000..b88ba963d6d245c135ef011507e934db80fca36c --- /dev/null +++ b/timecost/m6/forestdiffusion/forest-m6-20260430_054459/_fd_gen.py @@ -0,0 +1,8 @@ + +import joblib, pandas as pd +m, meta = joblib.load(r'/work/output-Benchmark-trainonly-v1/m6/forestdiffusion/forest-m6-20260430_054459/forestdiffusion_model.joblib') +# generate:batch_size 为样本数 +arr = m.generate(batch_size=int(9864)) +df = pd.DataFrame(arr, columns=meta["column_names"]) +df.to_csv(r'/work/output-Benchmark-trainonly-v1/m6/forestdiffusion/forest-m6-20260430_054459/forest-m6-9864-20260430_054654.csv', index=False) +print("saved", len(df)) diff --git a/timecost/m6/forestdiffusion/forest-m6-20260430_054459/_fd_meta_host.json b/timecost/m6/forestdiffusion/forest-m6-20260430_054459/_fd_meta_host.json new file mode 100644 index 0000000000000000000000000000000000000000..61976a1eee68519b8cf984e34d7a66b73b1e0a85 --- /dev/null +++ b/timecost/m6/forestdiffusion/forest-m6-20260430_054459/_fd_meta_host.json @@ -0,0 +1 @@ +{"column_names": ["Administrative", "Administrative_Duration", "Informational", "Informational_Duration", "ProductRelated", "ProductRelated_Duration", "BounceRates", "ExitRates", "PageValues", "SpecialDay", "Month", "OperatingSystems", "Browser", "Region", "TrafficType", "Weekend", "Revenue", "VisitorType"], "cat_indexes": [10, 15, 16]} \ No newline at end of file diff --git a/timecost/m6/forestdiffusion/forest-m6-20260430_054459/_fd_train.py b/timecost/m6/forestdiffusion/forest-m6-20260430_054459/_fd_train.py new file mode 100644 index 0000000000000000000000000000000000000000..cfba2859ac03543dd3c16c9f2b85ae440f6bf708 --- /dev/null +++ b/timecost/m6/forestdiffusion/forest-m6-20260430_054459/_fd_train.py @@ -0,0 +1,28 @@ + +import shutil, json +shutil.copy(r'/work/output-Benchmark-trainonly-v1/m6/forestdiffusion/forest-m6-20260430_054459/_fd_X_host.npy', '/tmp/fd_X.npy') +with open(r'/work/output-Benchmark-trainonly-v1/m6/forestdiffusion/forest-m6-20260430_054459/_fd_meta_host.json') as f: + open('/tmp/fd_meta.json','w').write(f.read()) + +import numpy as np, joblib, json, os +from ForestDiffusion import ForestDiffusionModel +X = np.load("/tmp/fd_X.npy") +with open("/tmp/fd_meta.json") as f: + meta = json.load(f) +cat_indexes = meta["cat_indexes"] +print( + "[ForestDiffusion] train config: " + f"rows={X.shape[0]} cols={X.shape[1]} n_t=20 " + f"n_estimators=100 duplicate_K=20 n_jobs=2 " + f"xgb_verbosity=1", + flush=True, +) +m = ForestDiffusionModel( + X, n_t=20, n_estimators=100, duplicate_K=20, n_jobs=2, + model="xgboost", max_depth=6, tree_method="hist", cat_indexes=cat_indexes, + verbosity=1, +) +joblib.dump((m, meta), "/tmp/fd_model.joblib") +print("ForestDiffusion train OK") + +shutil.copy('/tmp/fd_model.joblib', r'/work/output-Benchmark-trainonly-v1/m6/forestdiffusion/forest-m6-20260430_054459/forestdiffusion_model.joblib') diff --git a/timecost/m6/forestdiffusion/forest-m6-20260430_054459/forest-m6-9864-20260430_054654.csv b/timecost/m6/forestdiffusion/forest-m6-20260430_054459/forest-m6-9864-20260430_054654.csv new file mode 100644 index 0000000000000000000000000000000000000000..c7f682c5b3cb22dc5333b047335b8ad33fb75e7b --- /dev/null +++ b/timecost/m6/forestdiffusion/forest-m6-20260430_054459/forest-m6-9864-20260430_054654.csv @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:7faf5b259fda52ff22517e77518e378b91030f3cb80a92b0f6eb6e9b35bcc216 +size 2609459 diff --git a/timecost/m6/forestdiffusion/forest-m6-20260430_054459/forestdiffusion_model.joblib b/timecost/m6/forestdiffusion/forest-m6-20260430_054459/forestdiffusion_model.joblib new file mode 100644 index 0000000000000000000000000000000000000000..654c882509b6183f8c5548fa3699ec14a6e4acee --- /dev/null +++ b/timecost/m6/forestdiffusion/forest-m6-20260430_054459/forestdiffusion_model.joblib @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:72b48bad6de7a535f72fcdeddfceebe8a0c6146586d37ab93dff734bb9f971df +size 243056863 diff --git a/timecost/m6/forestdiffusion/forest-m6-20260430_054459/gen_20260430_054654.log b/timecost/m6/forestdiffusion/forest-m6-20260430_054459/gen_20260430_054654.log new file mode 100644 index 0000000000000000000000000000000000000000..d27f949f80c14afae5755b6b72cd36e4d04b7613 --- /dev/null +++ b/timecost/m6/forestdiffusion/forest-m6-20260430_054459/gen_20260430_054654.log @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:31252164f9e40ecd1845fe1b4af7576ffc653afed5086861d8ba6ee3c3fee702 +size 294 diff --git a/timecost/m6/forestdiffusion/forest-m6-20260430_054459/input_snapshot.json b/timecost/m6/forestdiffusion/forest-m6-20260430_054459/input_snapshot.json new file mode 100644 index 0000000000000000000000000000000000000000..4b451031aca86c57ce9fc57940bc857161b3d84f --- /dev/null +++ b/timecost/m6/forestdiffusion/forest-m6-20260430_054459/input_snapshot.json @@ -0,0 +1,36 @@ +{ + "dataset_id": "m6", + "model": "forestdiffusion", + "inputs": { + "train_csv": { + "path": "/data/jialinzhang/SynthesizePipeline-server/DatasetNew/m6/m6-train.csv", + "exists": true, + "size": 856785, + "sha256": "a5d1c487a8f2611385915fcc5a52bad546680ddbc8d23fc695f442cdd6dafa0c" + }, + "val_csv": { + "path": "/data/jialinzhang/SynthesizePipeline-server/DatasetNew/m6/m6-val.csv", + "exists": true, + "size": 107758, + "sha256": "598196cecc227cfba95c9796b80bc1baf684a0117e6673b8662b89482cdcb78f" + }, + "test_csv": { + "path": "/data/jialinzhang/SynthesizePipeline-server/DatasetNew/m6/m6-test.csv", + "exists": true, + "size": 107996, + "sha256": "ec939ad96a3b14dd960886359fb6c5d45591adc8a734661ade3dee1417a015de" + }, + "profile_json": { + "path": "/data/jialinzhang/SynthesizePipeline-server/DatasetNew/artifacts/data_core/tabular/m6/m6-dataset_profile.json", + "exists": true, + "size": 7622, + "sha256": "859f1fe93806c8ecdea9c9db9db34fb6cf94bc112b5c0a66b2436e8ef71c2e98" + }, + "contract_json": { + "path": "/data/jialinzhang/SynthesizePipeline-server/DatasetNew/artifacts/data_core/tabular/m6/m6-dataset_contract_v1.json", + "exists": true, + "size": 8990, + "sha256": "01142eeb121af615a644c3e312f5f3e79d805396339f40d5a300ba3560cf8e90" + } + } +} \ No newline at end of file diff --git a/timecost/m6/forestdiffusion/forest-m6-20260430_054459/models_fd/model.joblib b/timecost/m6/forestdiffusion/forest-m6-20260430_054459/models_fd/model.joblib new file mode 100644 index 0000000000000000000000000000000000000000..654c882509b6183f8c5548fa3699ec14a6e4acee --- /dev/null +++ b/timecost/m6/forestdiffusion/forest-m6-20260430_054459/models_fd/model.joblib @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:72b48bad6de7a535f72fcdeddfceebe8a0c6146586d37ab93dff734bb9f971df +size 243056863 diff --git a/timecost/m6/forestdiffusion/forest-m6-20260430_054459/public_gate/normalized_schema_snapshot.json b/timecost/m6/forestdiffusion/forest-m6-20260430_054459/public_gate/normalized_schema_snapshot.json new file mode 100644 index 0000000000000000000000000000000000000000..0d48abfe61f58323fd4a425d175b354d51045ae1 --- /dev/null +++ b/timecost/m6/forestdiffusion/forest-m6-20260430_054459/public_gate/normalized_schema_snapshot.json @@ -0,0 +1,377 @@ +{ + "dataset_id": "m6", + "target_column": "VisitorType", + "task_type": "classification", + "columns": [ + { + "name": "Administrative", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 26, + "unique_ratio": 0.002636, + "example_values": [ + "0", + "3", + "2", + "6", + "1" + ] + } + }, + { + "name": "Administrative_Duration", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 2789, + "unique_ratio": 0.282745, + "example_values": [ + "0", + "45.8", + "77.7", + "52", + "46.33333333" + ] + } + }, + { + "name": "Informational", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 17, + "unique_ratio": 0.001723, + "example_values": [ + "0", + "1", + "3", + "5", + "4" + ] + } + }, + { + "name": "Informational_Duration", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 1074, + "unique_ratio": 0.108881, + "example_values": [ + "0", + "2", + "24", + "86.75", + "62.5" + ] + } + }, + { + "name": "ProductRelated", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 286, + "unique_ratio": 0.028994, + "example_values": [ + "13", + "8", + "63", + "15", + "3" + ] + } + }, + { + "name": "ProductRelated_Duration", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 7769, + "unique_ratio": 0.787612, + "example_values": [ + "549.2", + "64", + "2435.697531", + "267.7333333", + "57.4" + ] + } + }, + { + "name": "BounceRates", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 1574, + "unique_ratio": 0.15957, + "example_values": [ + "0.019230769", + "0", + "0.00952381", + "0.022857143", + "0.004166667" + ] + } + }, + { + "name": "ExitRates", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 3953, + "unique_ratio": 0.40075, + "example_values": [ + "0.045421245", + "0.05", + "0.017460317", + "0.040606061", + "0.133333333" + ] + } + }, + { + "name": "PageValues", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 2129, + "unique_ratio": 0.215835, + "example_values": [ + "0", + "7.945368291", + "10.37042373", + "18.99269231", + "44.33548922" + ] + } + }, + { + "name": "SpecialDay", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 6, + "unique_ratio": 0.000608, + "example_values": [ + "0", + "0.4", + "0.2", + "0.8", + "1" + ] + } + }, + { + "name": "Month", + "role": "feature", + "semantic_type": "categorical", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 10, + "unique_ratio": 0.001014, + "example_values": [ + "Nov", + "Dec", + "Jul", + "Aug", + "Mar" + ] + } + }, + { + "name": "OperatingSystems", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 8, + "unique_ratio": 0.000811, + "example_values": [ + "3", + "2", + "6", + "4", + "1" + ] + } + }, + { + "name": "Browser", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 13, + "unique_ratio": 0.001318, + "example_values": [ + "2", + "1", + "5", + "4", + "3" + ] + } + }, + { + "name": "Region", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 9, + "unique_ratio": 0.000912, + "example_values": [ + "6", + "3", + "4", + "1", + "9" + ] + } + }, + { + "name": "TrafficType", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 20, + "unique_ratio": 0.002028, + "example_values": [ + "2", + "8", + "3", + "11", + "1" + ] + } + }, + { + "name": "VisitorType", + "role": "target", + "semantic_type": "categorical", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 3, + "unique_ratio": 0.000304, + "example_values": [ + "Returning_Visitor", + "New_Visitor", + "Other" + ] + } + }, + { + "name": "Weekend", + "role": "feature", + "semantic_type": "boolean", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 2, + "unique_ratio": 0.000203, + "example_values": [ + "FALSE", + "TRUE" + ] + } + }, + { + "name": "Revenue", + "role": "feature", + "semantic_type": "boolean", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 2, + "unique_ratio": 0.000203, + "example_values": [ + "FALSE", + "TRUE" + ] + } + } + ] +} \ No newline at end of file diff --git a/timecost/m6/forestdiffusion/forest-m6-20260430_054459/public_gate/public_gate_report.json b/timecost/m6/forestdiffusion/forest-m6-20260430_054459/public_gate/public_gate_report.json new file mode 100644 index 0000000000000000000000000000000000000000..99a260799c8356f445bdc0b33ccce8b459ba1938 --- /dev/null +++ b/timecost/m6/forestdiffusion/forest-m6-20260430_054459/public_gate/public_gate_report.json @@ -0,0 +1,37 @@ +{ + "dataset_id": "m6", + "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": "VisitorType", + "task_type": "classification", + "input_splits": { + "train": "/data/jialinzhang/SynthesizePipeline-server/DatasetNew/m6/m6-train.csv", + "val": "/data/jialinzhang/SynthesizePipeline-server/DatasetNew/m6/m6-val.csv", + "test": "/data/jialinzhang/SynthesizePipeline-server/DatasetNew/m6/m6-test.csv" + } +} \ No newline at end of file diff --git a/timecost/m6/forestdiffusion/forest-m6-20260430_054459/public_gate/staged_input_manifest.json b/timecost/m6/forestdiffusion/forest-m6-20260430_054459/public_gate/staged_input_manifest.json new file mode 100644 index 0000000000000000000000000000000000000000..de0da858f6647909cf5c19e506a50452ad0b6af0 --- /dev/null +++ b/timecost/m6/forestdiffusion/forest-m6-20260430_054459/public_gate/staged_input_manifest.json @@ -0,0 +1,382 @@ +{ + "dataset_id": "m6", + "target_column": "VisitorType", + "task_type": "classification", + "train_csv": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/m6/forestdiffusion/forest-m6-20260430_054459/staged/public/train.csv", + "val_csv": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/m6/forestdiffusion/forest-m6-20260430_054459/staged/public/val.csv", + "test_csv": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/m6/forestdiffusion/forest-m6-20260430_054459/staged/public/test.csv", + "features_json": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/m6/forestdiffusion/forest-m6-20260430_054459/staged/public/staged_features.json", + "public_gate_report": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/m6/forestdiffusion/forest-m6-20260430_054459/public_gate/public_gate_report.json", + "column_schema": [ + { + "name": "Administrative", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 26, + "unique_ratio": 0.002636, + "example_values": [ + "0", + "3", + "2", + "6", + "1" + ] + } + }, + { + "name": "Administrative_Duration", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 2789, + "unique_ratio": 0.282745, + "example_values": [ + "0", + "45.8", + "77.7", + "52", + "46.33333333" + ] + } + }, + { + "name": "Informational", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 17, + "unique_ratio": 0.001723, + "example_values": [ + "0", + "1", + "3", + "5", + "4" + ] + } + }, + { + "name": "Informational_Duration", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 1074, + "unique_ratio": 0.108881, + "example_values": [ + "0", + "2", + "24", + "86.75", + "62.5" + ] + } + }, + { + "name": "ProductRelated", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 286, + "unique_ratio": 0.028994, + "example_values": [ + "13", + "8", + "63", + "15", + "3" + ] + } + }, + { + "name": "ProductRelated_Duration", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 7769, + "unique_ratio": 0.787612, + "example_values": [ + "549.2", + "64", + "2435.697531", + "267.7333333", + "57.4" + ] + } + }, + { + "name": "BounceRates", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 1574, + "unique_ratio": 0.15957, + "example_values": [ + "0.019230769", + "0", + "0.00952381", + "0.022857143", + "0.004166667" + ] + } + }, + { + "name": "ExitRates", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 3953, + "unique_ratio": 0.40075, + "example_values": [ + "0.045421245", + "0.05", + "0.017460317", + "0.040606061", + "0.133333333" + ] + } + }, + { + "name": "PageValues", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 2129, + "unique_ratio": 0.215835, + "example_values": [ + "0", + "7.945368291", + "10.37042373", + "18.99269231", + "44.33548922" + ] + } + }, + { + "name": "SpecialDay", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 6, + "unique_ratio": 0.000608, + "example_values": [ + "0", + "0.4", + "0.2", + "0.8", + "1" + ] + } + }, + { + "name": "Month", + "role": "feature", + "semantic_type": "categorical", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 10, + "unique_ratio": 0.001014, + "example_values": [ + "Nov", + "Dec", + "Jul", + "Aug", + "Mar" + ] + } + }, + { + "name": "OperatingSystems", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 8, + "unique_ratio": 0.000811, + "example_values": [ + "3", + "2", + "6", + "4", + "1" + ] + } + }, + { + "name": "Browser", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 13, + "unique_ratio": 0.001318, + "example_values": [ + "2", + "1", + "5", + "4", + "3" + ] + } + }, + { + "name": "Region", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 9, + "unique_ratio": 0.000912, + "example_values": [ + "6", + "3", + "4", + "1", + "9" + ] + } + }, + { + "name": "TrafficType", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 20, + "unique_ratio": 0.002028, + "example_values": [ + "2", + "8", + "3", + "11", + "1" + ] + } + }, + { + "name": "VisitorType", + "role": "target", + "semantic_type": "categorical", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 3, + "unique_ratio": 0.000304, + "example_values": [ + "Returning_Visitor", + "New_Visitor", + "Other" + ] + } + }, + { + "name": "Weekend", + "role": "feature", + "semantic_type": "boolean", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 2, + "unique_ratio": 0.000203, + "example_values": [ + "FALSE", + "TRUE" + ] + } + }, + { + "name": "Revenue", + "role": "feature", + "semantic_type": "boolean", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 2, + "unique_ratio": 0.000203, + "example_values": [ + "FALSE", + "TRUE" + ] + } + } + ] +} \ No newline at end of file diff --git a/timecost/m6/forestdiffusion/forest-m6-20260430_054459/runtime_result.json b/timecost/m6/forestdiffusion/forest-m6-20260430_054459/runtime_result.json new file mode 100644 index 0000000000000000000000000000000000000000..4a80f44303cb9ac11e860a992fb133ade999fa5f --- /dev/null +++ b/timecost/m6/forestdiffusion/forest-m6-20260430_054459/runtime_result.json @@ -0,0 +1,15 @@ +{ + "dataset_id": "m6", + "model": "forestdiffusion", + "run_id": "forest-m6-20260430_054459", + "public_gate_status": "pass", + "adapter_ready_status": "pass", + "train_status": "success", + "generate_status": "success", + "reason_code": null, + "reason_detail": null, + "artifacts": { + "synthetic_csv": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/m6/forestdiffusion/forest-m6-20260430_054459/forest-m6-9864-20260430_054654.csv", + "model_path": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/m6/forestdiffusion/forest-m6-20260430_054459/models_fd/model.joblib" + } +} \ No newline at end of file diff --git a/timecost/m6/forestdiffusion/forest-m6-20260430_054459/staged/forestdiffusion/adapter_report.json b/timecost/m6/forestdiffusion/forest-m6-20260430_054459/staged/forestdiffusion/adapter_report.json new file mode 100644 index 0000000000000000000000000000000000000000..39d44c70d4c50aed0c3800d6523e955dc75803f3 --- /dev/null +++ b/timecost/m6/forestdiffusion/forest-m6-20260430_054459/staged/forestdiffusion/adapter_report.json @@ -0,0 +1,7 @@ +{ + "adapter_ready_status": "pass", + "adapter_fail_reason_code": null, + "adapter_fail_detail": null, + "adapter_transforms_applied": [], + "model_input_manifest": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/m6/forestdiffusion/forest-m6-20260430_054459/staged/forestdiffusion/model_input_manifest.json" +} \ No newline at end of file diff --git a/timecost/m6/forestdiffusion/forest-m6-20260430_054459/staged/forestdiffusion/adapter_transforms_applied.json b/timecost/m6/forestdiffusion/forest-m6-20260430_054459/staged/forestdiffusion/adapter_transforms_applied.json new file mode 100644 index 0000000000000000000000000000000000000000..0637a088a01e8ddab3bf3fa98dbe804cbde1a0dc --- /dev/null +++ b/timecost/m6/forestdiffusion/forest-m6-20260430_054459/staged/forestdiffusion/adapter_transforms_applied.json @@ -0,0 +1 @@ +[] \ No newline at end of file diff --git a/timecost/m6/forestdiffusion/forest-m6-20260430_054459/staged/forestdiffusion/model_input_manifest.json b/timecost/m6/forestdiffusion/forest-m6-20260430_054459/staged/forestdiffusion/model_input_manifest.json new file mode 100644 index 0000000000000000000000000000000000000000..3236c57cd043ef27466d0fee0024a0ef59418ca5 --- /dev/null +++ b/timecost/m6/forestdiffusion/forest-m6-20260430_054459/staged/forestdiffusion/model_input_manifest.json @@ -0,0 +1,384 @@ +{ + "dataset_id": "m6", + "model": "forestdiffusion", + "target_column": "VisitorType", + "task_type": "classification", + "column_schema": [ + { + "name": "Administrative", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 26, + "unique_ratio": 0.002636, + "example_values": [ + "0", + "3", + "2", + "6", + "1" + ] + } + }, + { + "name": "Administrative_Duration", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 2789, + "unique_ratio": 0.282745, + "example_values": [ + "0", + "45.8", + "77.7", + "52", + "46.33333333" + ] + } + }, + { + "name": "Informational", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 17, + "unique_ratio": 0.001723, + "example_values": [ + "0", + "1", + "3", + "5", + "4" + ] + } + }, + { + "name": "Informational_Duration", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 1074, + "unique_ratio": 0.108881, + "example_values": [ + "0", + "2", + "24", + "86.75", + "62.5" + ] + } + }, + { + "name": "ProductRelated", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 286, + "unique_ratio": 0.028994, + "example_values": [ + "13", + "8", + "63", + "15", + "3" + ] + } + }, + { + "name": "ProductRelated_Duration", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 7769, + "unique_ratio": 0.787612, + "example_values": [ + "549.2", + "64", + "2435.697531", + "267.7333333", + "57.4" + ] + } + }, + { + "name": "BounceRates", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 1574, + "unique_ratio": 0.15957, + "example_values": [ + "0.019230769", + "0", + "0.00952381", + "0.022857143", + "0.004166667" + ] + } + }, + { + "name": "ExitRates", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 3953, + "unique_ratio": 0.40075, + "example_values": [ + "0.045421245", + "0.05", + "0.017460317", + "0.040606061", + "0.133333333" + ] + } + }, + { + "name": "PageValues", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 2129, + "unique_ratio": 0.215835, + "example_values": [ + "0", + "7.945368291", + "10.37042373", + "18.99269231", + "44.33548922" + ] + } + }, + { + "name": "SpecialDay", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 6, + "unique_ratio": 0.000608, + "example_values": [ + "0", + "0.4", + "0.2", + "0.8", + "1" + ] + } + }, + { + "name": "Month", + "role": "feature", + "semantic_type": "categorical", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 10, + "unique_ratio": 0.001014, + "example_values": [ + "Nov", + "Dec", + "Jul", + "Aug", + "Mar" + ] + } + }, + { + "name": "OperatingSystems", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 8, + "unique_ratio": 0.000811, + "example_values": [ + "3", + "2", + "6", + "4", + "1" + ] + } + }, + { + "name": "Browser", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 13, + "unique_ratio": 0.001318, + "example_values": [ + "2", + "1", + "5", + "4", + "3" + ] + } + }, + { + "name": "Region", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 9, + "unique_ratio": 0.000912, + "example_values": [ + "6", + "3", + "4", + "1", + "9" + ] + } + }, + { + "name": "TrafficType", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 20, + "unique_ratio": 0.002028, + "example_values": [ + "2", + "8", + "3", + "11", + "1" + ] + } + }, + { + "name": "VisitorType", + "role": "target", + "semantic_type": "categorical", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 3, + "unique_ratio": 0.000304, + "example_values": [ + "Returning_Visitor", + "New_Visitor", + "Other" + ] + } + }, + { + "name": "Weekend", + "role": "feature", + "semantic_type": "boolean", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 2, + "unique_ratio": 0.000203, + "example_values": [ + "FALSE", + "TRUE" + ] + } + }, + { + "name": "Revenue", + "role": "feature", + "semantic_type": "boolean", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 2, + "unique_ratio": 0.000203, + "example_values": [ + "FALSE", + "TRUE" + ] + } + } + ], + "public_manifest": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/m6/forestdiffusion/forest-m6-20260430_054459/public_gate/staged_input_manifest.json", + "train_csv": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/m6/forestdiffusion/forest-m6-20260430_054459/staged/public/train.csv", + "val_csv": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/m6/forestdiffusion/forest-m6-20260430_054459/staged/public/val.csv", + "test_csv": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/m6/forestdiffusion/forest-m6-20260430_054459/staged/public/test.csv", + "features_json": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/m6/forestdiffusion/forest-m6-20260430_054459/staged/public/staged_features.json", + "public_gate_report": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/m6/forestdiffusion/forest-m6-20260430_054459/public_gate/public_gate_report.json" +} \ No newline at end of file diff --git a/timecost/m6/forestdiffusion/forest-m6-20260430_054459/staged/public/staged_features.json b/timecost/m6/forestdiffusion/forest-m6-20260430_054459/staged/public/staged_features.json new file mode 100644 index 0000000000000000000000000000000000000000..49b25bd1347f910a2b95ef0c137d1a64bf69e0cb --- /dev/null +++ b/timecost/m6/forestdiffusion/forest-m6-20260430_054459/staged/public/staged_features.json @@ -0,0 +1,92 @@ +[ + { + "feature_name": "Administrative", + "data_type": "continuous", + "is_target": false + }, + { + "feature_name": "Administrative_Duration", + "data_type": "continuous", + "is_target": false + }, + { + "feature_name": "Informational", + "data_type": "continuous", + "is_target": false + }, + { + "feature_name": "Informational_Duration", + "data_type": "continuous", + "is_target": false + }, + { + "feature_name": "ProductRelated", + "data_type": "continuous", + "is_target": false + }, + { + "feature_name": "ProductRelated_Duration", + "data_type": "continuous", + "is_target": false + }, + { + "feature_name": "BounceRates", + "data_type": "continuous", + "is_target": false + }, + { + "feature_name": "ExitRates", + "data_type": "continuous", + "is_target": false + }, + { + "feature_name": "PageValues", + "data_type": "continuous", + "is_target": false + }, + { + "feature_name": "SpecialDay", + "data_type": "continuous", + "is_target": false + }, + { + "feature_name": "Month", + "data_type": "categorical", + "is_target": false + }, + { + "feature_name": "OperatingSystems", + "data_type": "continuous", + "is_target": false + }, + { + "feature_name": "Browser", + "data_type": "continuous", + "is_target": false + }, + { + "feature_name": "Region", + "data_type": "continuous", + "is_target": false + }, + { + "feature_name": "TrafficType", + "data_type": "continuous", + "is_target": false + }, + { + "feature_name": "VisitorType", + "data_type": "categorical", + "is_target": true + }, + { + "feature_name": "Weekend", + "data_type": "binary", + "is_target": false + }, + { + "feature_name": "Revenue", + "data_type": "binary", + "is_target": false + } +] \ No newline at end of file diff --git a/timecost/m6/forestdiffusion/forest-m6-20260430_054459/staged/public/test.csv b/timecost/m6/forestdiffusion/forest-m6-20260430_054459/staged/public/test.csv new file mode 100644 index 0000000000000000000000000000000000000000..3944bd554327e948b8bda8c383bd581f3fc26ec6 --- /dev/null +++ b/timecost/m6/forestdiffusion/forest-m6-20260430_054459/staged/public/test.csv @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:d16d0389cb0fe4b23bab344dc10070de6678357a9452f9f620d0eeba66a6b12d +size 116376 diff --git a/timecost/m6/forestdiffusion/forest-m6-20260430_054459/staged/public/train.csv b/timecost/m6/forestdiffusion/forest-m6-20260430_054459/staged/public/train.csv new file mode 100644 index 0000000000000000000000000000000000000000..ae3a266ed7bebf02bc27c50b9dea6e8c5fe71c10 --- /dev/null +++ b/timecost/m6/forestdiffusion/forest-m6-20260430_054459/staged/public/train.csv @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:e1f0338c367408dc21d5a4ec9cdc5d3fe8188916db6085f3fd326304a55551e1 +size 924849 diff --git a/timecost/m6/forestdiffusion/forest-m6-20260430_054459/staged/public/val.csv b/timecost/m6/forestdiffusion/forest-m6-20260430_054459/staged/public/val.csv new file mode 100644 index 0000000000000000000000000000000000000000..60be57a3609a30d56d27e37e49a3aedfa6294db5 --- /dev/null +++ b/timecost/m6/forestdiffusion/forest-m6-20260430_054459/staged/public/val.csv @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:cb9169f3c7213420491d9b709ee1cc650aeaed732fa77dcbd6ffe3583366b2d4 +size 116198 diff --git a/timecost/m6/forestdiffusion/forest-m6-20260430_054459/train_20260430_054459.log b/timecost/m6/forestdiffusion/forest-m6-20260430_054459/train_20260430_054459.log new file mode 100644 index 0000000000000000000000000000000000000000..46f00a83010e634522da8b14eef6bb05f3833b7d --- /dev/null +++ b/timecost/m6/forestdiffusion/forest-m6-20260430_054459/train_20260430_054459.log @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:8173d211b9289155d4a0196a0d614b0dfb6e8797604c78d862fd30a3a6f57f46 +size 424 diff --git a/timecost/m6/forestdiffusion/forest-m6-20260430_060004/_fd_X_host.npy b/timecost/m6/forestdiffusion/forest-m6-20260430_060004/_fd_X_host.npy new file mode 100644 index 0000000000000000000000000000000000000000..f9898e1189639328928f0b5de8c60707b257fa19 --- /dev/null +++ b/timecost/m6/forestdiffusion/forest-m6-20260430_060004/_fd_X_host.npy @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:ce27b51e592355e14fee8f6d47e08e3f99736fcde567190e0e180a1656361059 +size 710336 diff --git a/timecost/m6/forestdiffusion/forest-m6-20260430_060004/_fd_gen.py b/timecost/m6/forestdiffusion/forest-m6-20260430_060004/_fd_gen.py new file mode 100644 index 0000000000000000000000000000000000000000..b9a2a962dfa0a7c943ad1491170d5771d0ed3e2a --- /dev/null +++ b/timecost/m6/forestdiffusion/forest-m6-20260430_060004/_fd_gen.py @@ -0,0 +1,8 @@ + +import joblib, pandas as pd +m, meta = joblib.load(r'/work/output-Benchmark-trainonly-v1/m6/forestdiffusion/forest-m6-20260430_060004/forestdiffusion_model.joblib') +# generate:batch_size 为样本数 +arr = m.generate(batch_size=int(9864)) +df = pd.DataFrame(arr, columns=meta["column_names"]) +df.to_csv(r'/work/output-Benchmark-trainonly-v1/m6/forestdiffusion/forest-m6-20260430_060004/forest-m6-9864-20260430_060226.csv', index=False) +print("saved", len(df)) diff --git a/timecost/m6/forestdiffusion/forest-m6-20260430_060004/_fd_meta_host.json b/timecost/m6/forestdiffusion/forest-m6-20260430_060004/_fd_meta_host.json new file mode 100644 index 0000000000000000000000000000000000000000..61976a1eee68519b8cf984e34d7a66b73b1e0a85 --- /dev/null +++ b/timecost/m6/forestdiffusion/forest-m6-20260430_060004/_fd_meta_host.json @@ -0,0 +1 @@ +{"column_names": ["Administrative", "Administrative_Duration", "Informational", "Informational_Duration", "ProductRelated", "ProductRelated_Duration", "BounceRates", "ExitRates", "PageValues", "SpecialDay", "Month", "OperatingSystems", "Browser", "Region", "TrafficType", "Weekend", "Revenue", "VisitorType"], "cat_indexes": [10, 15, 16]} \ No newline at end of file diff --git a/timecost/m6/forestdiffusion/forest-m6-20260430_060004/_fd_train.py b/timecost/m6/forestdiffusion/forest-m6-20260430_060004/_fd_train.py new file mode 100644 index 0000000000000000000000000000000000000000..5ae23b74b949b85045f1bea228331d51b6c65386 --- /dev/null +++ b/timecost/m6/forestdiffusion/forest-m6-20260430_060004/_fd_train.py @@ -0,0 +1,28 @@ + +import shutil, json +shutil.copy(r'/work/output-Benchmark-trainonly-v1/m6/forestdiffusion/forest-m6-20260430_060004/_fd_X_host.npy', '/tmp/fd_X.npy') +with open(r'/work/output-Benchmark-trainonly-v1/m6/forestdiffusion/forest-m6-20260430_060004/_fd_meta_host.json') as f: + open('/tmp/fd_meta.json','w').write(f.read()) + +import numpy as np, joblib, json, os +from ForestDiffusion import ForestDiffusionModel +X = np.load("/tmp/fd_X.npy") +with open("/tmp/fd_meta.json") as f: + meta = json.load(f) +cat_indexes = meta["cat_indexes"] +print( + "[ForestDiffusion] train config: " + f"rows={X.shape[0]} cols={X.shape[1]} n_t=20 " + f"n_estimators=100 duplicate_K=20 n_jobs=2 " + f"xgb_verbosity=1", + flush=True, +) +m = ForestDiffusionModel( + X, n_t=20, n_estimators=100, duplicate_K=20, n_jobs=2, + model="xgboost", max_depth=6, tree_method="hist", cat_indexes=cat_indexes, + verbosity=1, +) +joblib.dump((m, meta), "/tmp/fd_model.joblib") +print("ForestDiffusion train OK") + +shutil.copy('/tmp/fd_model.joblib', r'/work/output-Benchmark-trainonly-v1/m6/forestdiffusion/forest-m6-20260430_060004/forestdiffusion_model.joblib') diff --git a/timecost/m6/forestdiffusion/forest-m6-20260430_060004/forest-m6-9864-20260430_060226.csv b/timecost/m6/forestdiffusion/forest-m6-20260430_060004/forest-m6-9864-20260430_060226.csv new file mode 100644 index 0000000000000000000000000000000000000000..8fa2fddcb9a0194a109ac8622a21facccd18824b --- /dev/null +++ b/timecost/m6/forestdiffusion/forest-m6-20260430_060004/forest-m6-9864-20260430_060226.csv @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:05fba7034232c9c42b466c3e9e97ddc8b27f37e7f5ea06d28d3212606c654293 +size 2610626 diff --git a/timecost/m6/forestdiffusion/forest-m6-20260430_060004/forestdiffusion_model.joblib b/timecost/m6/forestdiffusion/forest-m6-20260430_060004/forestdiffusion_model.joblib new file mode 100644 index 0000000000000000000000000000000000000000..654c882509b6183f8c5548fa3699ec14a6e4acee --- /dev/null +++ b/timecost/m6/forestdiffusion/forest-m6-20260430_060004/forestdiffusion_model.joblib @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:72b48bad6de7a535f72fcdeddfceebe8a0c6146586d37ab93dff734bb9f971df +size 243056863 diff --git a/timecost/m6/forestdiffusion/forest-m6-20260430_060004/gen_20260430_060226.log b/timecost/m6/forestdiffusion/forest-m6-20260430_060004/gen_20260430_060226.log new file mode 100644 index 0000000000000000000000000000000000000000..643a4a2ec8073c83dc12dd161db4de2d20760476 --- /dev/null +++ b/timecost/m6/forestdiffusion/forest-m6-20260430_060004/gen_20260430_060226.log @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:d251e71349595f4888a8e24f01938bfcc659b2c60b8bfed60bf34e568ce8793b +size 294 diff --git a/timecost/m6/forestdiffusion/forest-m6-20260430_060004/input_snapshot.json b/timecost/m6/forestdiffusion/forest-m6-20260430_060004/input_snapshot.json new file mode 100644 index 0000000000000000000000000000000000000000..4b451031aca86c57ce9fc57940bc857161b3d84f --- /dev/null +++ b/timecost/m6/forestdiffusion/forest-m6-20260430_060004/input_snapshot.json @@ -0,0 +1,36 @@ +{ + "dataset_id": "m6", + "model": "forestdiffusion", + "inputs": { + "train_csv": { + "path": "/data/jialinzhang/SynthesizePipeline-server/DatasetNew/m6/m6-train.csv", + "exists": true, + "size": 856785, + "sha256": "a5d1c487a8f2611385915fcc5a52bad546680ddbc8d23fc695f442cdd6dafa0c" + }, + "val_csv": { + "path": "/data/jialinzhang/SynthesizePipeline-server/DatasetNew/m6/m6-val.csv", + "exists": true, + "size": 107758, + "sha256": "598196cecc227cfba95c9796b80bc1baf684a0117e6673b8662b89482cdcb78f" + }, + "test_csv": { + "path": "/data/jialinzhang/SynthesizePipeline-server/DatasetNew/m6/m6-test.csv", + "exists": true, + "size": 107996, + "sha256": "ec939ad96a3b14dd960886359fb6c5d45591adc8a734661ade3dee1417a015de" + }, + "profile_json": { + "path": "/data/jialinzhang/SynthesizePipeline-server/DatasetNew/artifacts/data_core/tabular/m6/m6-dataset_profile.json", + "exists": true, + "size": 7622, + "sha256": "859f1fe93806c8ecdea9c9db9db34fb6cf94bc112b5c0a66b2436e8ef71c2e98" + }, + "contract_json": { + "path": "/data/jialinzhang/SynthesizePipeline-server/DatasetNew/artifacts/data_core/tabular/m6/m6-dataset_contract_v1.json", + "exists": true, + "size": 8990, + "sha256": "01142eeb121af615a644c3e312f5f3e79d805396339f40d5a300ba3560cf8e90" + } + } +} \ No newline at end of file diff --git a/timecost/m6/forestdiffusion/forest-m6-20260430_060004/models_fd/model.joblib b/timecost/m6/forestdiffusion/forest-m6-20260430_060004/models_fd/model.joblib new file mode 100644 index 0000000000000000000000000000000000000000..654c882509b6183f8c5548fa3699ec14a6e4acee --- /dev/null +++ b/timecost/m6/forestdiffusion/forest-m6-20260430_060004/models_fd/model.joblib @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:72b48bad6de7a535f72fcdeddfceebe8a0c6146586d37ab93dff734bb9f971df +size 243056863 diff --git a/timecost/m6/forestdiffusion/forest-m6-20260430_060004/public_gate/normalized_schema_snapshot.json b/timecost/m6/forestdiffusion/forest-m6-20260430_060004/public_gate/normalized_schema_snapshot.json new file mode 100644 index 0000000000000000000000000000000000000000..0d48abfe61f58323fd4a425d175b354d51045ae1 --- /dev/null +++ b/timecost/m6/forestdiffusion/forest-m6-20260430_060004/public_gate/normalized_schema_snapshot.json @@ -0,0 +1,377 @@ +{ + "dataset_id": "m6", + "target_column": "VisitorType", + "task_type": "classification", + "columns": [ + { + "name": "Administrative", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 26, + "unique_ratio": 0.002636, + "example_values": [ + "0", + "3", + "2", + "6", + "1" + ] + } + }, + { + "name": "Administrative_Duration", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 2789, + "unique_ratio": 0.282745, + "example_values": [ + "0", + "45.8", + "77.7", + "52", + "46.33333333" + ] + } + }, + { + "name": "Informational", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 17, + "unique_ratio": 0.001723, + "example_values": [ + "0", + "1", + "3", + "5", + "4" + ] + } + }, + { + "name": "Informational_Duration", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 1074, + "unique_ratio": 0.108881, + "example_values": [ + "0", + "2", + "24", + "86.75", + "62.5" + ] + } + }, + { + "name": "ProductRelated", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 286, + "unique_ratio": 0.028994, + "example_values": [ + "13", + "8", + "63", + "15", + "3" + ] + } + }, + { + "name": "ProductRelated_Duration", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 7769, + "unique_ratio": 0.787612, + "example_values": [ + "549.2", + "64", + "2435.697531", + "267.7333333", + "57.4" + ] + } + }, + { + "name": "BounceRates", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 1574, + "unique_ratio": 0.15957, + "example_values": [ + "0.019230769", + "0", + "0.00952381", + "0.022857143", + "0.004166667" + ] + } + }, + { + "name": "ExitRates", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 3953, + "unique_ratio": 0.40075, + "example_values": [ + "0.045421245", + "0.05", + "0.017460317", + "0.040606061", + "0.133333333" + ] + } + }, + { + "name": "PageValues", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 2129, + "unique_ratio": 0.215835, + "example_values": [ + "0", + "7.945368291", + "10.37042373", + "18.99269231", + "44.33548922" + ] + } + }, + { + "name": "SpecialDay", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 6, + "unique_ratio": 0.000608, + "example_values": [ + "0", + "0.4", + "0.2", + "0.8", + "1" + ] + } + }, + { + "name": "Month", + "role": "feature", + "semantic_type": "categorical", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 10, + "unique_ratio": 0.001014, + "example_values": [ + "Nov", + "Dec", + "Jul", + "Aug", + "Mar" + ] + } + }, + { + "name": "OperatingSystems", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 8, + "unique_ratio": 0.000811, + "example_values": [ + "3", + "2", + "6", + "4", + "1" + ] + } + }, + { + "name": "Browser", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 13, + "unique_ratio": 0.001318, + "example_values": [ + "2", + "1", + "5", + "4", + "3" + ] + } + }, + { + "name": "Region", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 9, + "unique_ratio": 0.000912, + "example_values": [ + "6", + "3", + "4", + "1", + "9" + ] + } + }, + { + "name": "TrafficType", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 20, + "unique_ratio": 0.002028, + "example_values": [ + "2", + "8", + "3", + "11", + "1" + ] + } + }, + { + "name": "VisitorType", + "role": "target", + "semantic_type": "categorical", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 3, + "unique_ratio": 0.000304, + "example_values": [ + "Returning_Visitor", + "New_Visitor", + "Other" + ] + } + }, + { + "name": "Weekend", + "role": "feature", + "semantic_type": "boolean", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 2, + "unique_ratio": 0.000203, + "example_values": [ + "FALSE", + "TRUE" + ] + } + }, + { + "name": "Revenue", + "role": "feature", + "semantic_type": "boolean", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 2, + "unique_ratio": 0.000203, + "example_values": [ + "FALSE", + "TRUE" + ] + } + } + ] +} \ No newline at end of file diff --git a/timecost/m6/forestdiffusion/forest-m6-20260430_060004/public_gate/public_gate_report.json b/timecost/m6/forestdiffusion/forest-m6-20260430_060004/public_gate/public_gate_report.json new file mode 100644 index 0000000000000000000000000000000000000000..99a260799c8356f445bdc0b33ccce8b459ba1938 --- /dev/null +++ b/timecost/m6/forestdiffusion/forest-m6-20260430_060004/public_gate/public_gate_report.json @@ -0,0 +1,37 @@ +{ + "dataset_id": "m6", + "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": "VisitorType", + "task_type": "classification", + "input_splits": { + "train": "/data/jialinzhang/SynthesizePipeline-server/DatasetNew/m6/m6-train.csv", + "val": "/data/jialinzhang/SynthesizePipeline-server/DatasetNew/m6/m6-val.csv", + "test": "/data/jialinzhang/SynthesizePipeline-server/DatasetNew/m6/m6-test.csv" + } +} \ No newline at end of file diff --git a/timecost/m6/forestdiffusion/forest-m6-20260430_060004/public_gate/staged_input_manifest.json b/timecost/m6/forestdiffusion/forest-m6-20260430_060004/public_gate/staged_input_manifest.json new file mode 100644 index 0000000000000000000000000000000000000000..6fd4d06812f09fa30fcde5ac4f7826499cea0189 --- /dev/null +++ b/timecost/m6/forestdiffusion/forest-m6-20260430_060004/public_gate/staged_input_manifest.json @@ -0,0 +1,382 @@ +{ + "dataset_id": "m6", + "target_column": "VisitorType", + "task_type": "classification", + "train_csv": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/m6/forestdiffusion/forest-m6-20260430_060004/staged/public/train.csv", + "val_csv": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/m6/forestdiffusion/forest-m6-20260430_060004/staged/public/val.csv", + "test_csv": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/m6/forestdiffusion/forest-m6-20260430_060004/staged/public/test.csv", + "features_json": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/m6/forestdiffusion/forest-m6-20260430_060004/staged/public/staged_features.json", + "public_gate_report": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/m6/forestdiffusion/forest-m6-20260430_060004/public_gate/public_gate_report.json", + "column_schema": [ + { + "name": "Administrative", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 26, + "unique_ratio": 0.002636, + "example_values": [ + "0", + "3", + "2", + "6", + "1" + ] + } + }, + { + "name": "Administrative_Duration", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 2789, + "unique_ratio": 0.282745, + "example_values": [ + "0", + "45.8", + "77.7", + "52", + "46.33333333" + ] + } + }, + { + "name": "Informational", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 17, + "unique_ratio": 0.001723, + "example_values": [ + "0", + "1", + "3", + "5", + "4" + ] + } + }, + { + "name": "Informational_Duration", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 1074, + "unique_ratio": 0.108881, + "example_values": [ + "0", + "2", + "24", + "86.75", + "62.5" + ] + } + }, + { + "name": "ProductRelated", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 286, + "unique_ratio": 0.028994, + "example_values": [ + "13", + "8", + "63", + "15", + "3" + ] + } + }, + { + "name": "ProductRelated_Duration", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 7769, + "unique_ratio": 0.787612, + "example_values": [ + "549.2", + "64", + "2435.697531", + "267.7333333", + "57.4" + ] + } + }, + { + "name": "BounceRates", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 1574, + "unique_ratio": 0.15957, + "example_values": [ + "0.019230769", + "0", + "0.00952381", + "0.022857143", + "0.004166667" + ] + } + }, + { + "name": "ExitRates", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 3953, + "unique_ratio": 0.40075, + "example_values": [ + "0.045421245", + "0.05", + "0.017460317", + "0.040606061", + "0.133333333" + ] + } + }, + { + "name": "PageValues", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 2129, + "unique_ratio": 0.215835, + "example_values": [ + "0", + "7.945368291", + "10.37042373", + "18.99269231", + "44.33548922" + ] + } + }, + { + "name": "SpecialDay", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 6, + "unique_ratio": 0.000608, + "example_values": [ + "0", + "0.4", + "0.2", + "0.8", + "1" + ] + } + }, + { + "name": "Month", + "role": "feature", + "semantic_type": "categorical", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 10, + "unique_ratio": 0.001014, + "example_values": [ + "Nov", + "Dec", + "Jul", + "Aug", + "Mar" + ] + } + }, + { + "name": "OperatingSystems", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 8, + "unique_ratio": 0.000811, + "example_values": [ + "3", + "2", + "6", + "4", + "1" + ] + } + }, + { + "name": "Browser", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 13, + "unique_ratio": 0.001318, + "example_values": [ + "2", + "1", + "5", + "4", + "3" + ] + } + }, + { + "name": "Region", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 9, + "unique_ratio": 0.000912, + "example_values": [ + "6", + "3", + "4", + "1", + "9" + ] + } + }, + { + "name": "TrafficType", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 20, + "unique_ratio": 0.002028, + "example_values": [ + "2", + "8", + "3", + "11", + "1" + ] + } + }, + { + "name": "VisitorType", + "role": "target", + "semantic_type": "categorical", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 3, + "unique_ratio": 0.000304, + "example_values": [ + "Returning_Visitor", + "New_Visitor", + "Other" + ] + } + }, + { + "name": "Weekend", + "role": "feature", + "semantic_type": "boolean", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 2, + "unique_ratio": 0.000203, + "example_values": [ + "FALSE", + "TRUE" + ] + } + }, + { + "name": "Revenue", + "role": "feature", + "semantic_type": "boolean", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 2, + "unique_ratio": 0.000203, + "example_values": [ + "FALSE", + "TRUE" + ] + } + } + ] +} \ No newline at end of file diff --git a/timecost/m6/forestdiffusion/forest-m6-20260430_060004/runtime_result.json b/timecost/m6/forestdiffusion/forest-m6-20260430_060004/runtime_result.json new file mode 100644 index 0000000000000000000000000000000000000000..3cd9a360c9293b9725bcf0b9895d18f2c6c2a8a0 --- /dev/null +++ b/timecost/m6/forestdiffusion/forest-m6-20260430_060004/runtime_result.json @@ -0,0 +1,15 @@ +{ + "dataset_id": "m6", + "model": "forestdiffusion", + "run_id": "forest-m6-20260430_060004", + "public_gate_status": "pass", + "adapter_ready_status": "pass", + "train_status": "success", + "generate_status": "success", + "reason_code": null, + "reason_detail": null, + "artifacts": { + "synthetic_csv": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/m6/forestdiffusion/forest-m6-20260430_060004/forest-m6-9864-20260430_060226.csv", + "model_path": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/m6/forestdiffusion/forest-m6-20260430_060004/models_fd/model.joblib" + } +} \ No newline at end of file diff --git a/timecost/m6/forestdiffusion/forest-m6-20260430_060004/staged/forestdiffusion/adapter_report.json b/timecost/m6/forestdiffusion/forest-m6-20260430_060004/staged/forestdiffusion/adapter_report.json new file mode 100644 index 0000000000000000000000000000000000000000..6ab44e018b550366f10c4b126c2b4a428250f00c --- /dev/null +++ b/timecost/m6/forestdiffusion/forest-m6-20260430_060004/staged/forestdiffusion/adapter_report.json @@ -0,0 +1,7 @@ +{ + "adapter_ready_status": "pass", + "adapter_fail_reason_code": null, + "adapter_fail_detail": null, + "adapter_transforms_applied": [], + "model_input_manifest": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/m6/forestdiffusion/forest-m6-20260430_060004/staged/forestdiffusion/model_input_manifest.json" +} \ No newline at end of file diff --git a/timecost/m6/forestdiffusion/forest-m6-20260430_060004/staged/forestdiffusion/adapter_transforms_applied.json b/timecost/m6/forestdiffusion/forest-m6-20260430_060004/staged/forestdiffusion/adapter_transforms_applied.json new file mode 100644 index 0000000000000000000000000000000000000000..0637a088a01e8ddab3bf3fa98dbe804cbde1a0dc --- /dev/null +++ b/timecost/m6/forestdiffusion/forest-m6-20260430_060004/staged/forestdiffusion/adapter_transforms_applied.json @@ -0,0 +1 @@ +[] \ No newline at end of file diff --git a/timecost/m6/forestdiffusion/forest-m6-20260430_060004/staged/forestdiffusion/model_input_manifest.json b/timecost/m6/forestdiffusion/forest-m6-20260430_060004/staged/forestdiffusion/model_input_manifest.json new file mode 100644 index 0000000000000000000000000000000000000000..7eed5a9208328b880fb0866af472eb25390d711a --- /dev/null +++ b/timecost/m6/forestdiffusion/forest-m6-20260430_060004/staged/forestdiffusion/model_input_manifest.json @@ -0,0 +1,384 @@ +{ + "dataset_id": "m6", + "model": "forestdiffusion", + "target_column": "VisitorType", + "task_type": "classification", + "column_schema": [ + { + "name": "Administrative", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 26, + "unique_ratio": 0.002636, + "example_values": [ + "0", + "3", + "2", + "6", + "1" + ] + } + }, + { + "name": "Administrative_Duration", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 2789, + "unique_ratio": 0.282745, + "example_values": [ + "0", + "45.8", + "77.7", + "52", + "46.33333333" + ] + } + }, + { + "name": "Informational", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 17, + "unique_ratio": 0.001723, + "example_values": [ + "0", + "1", + "3", + "5", + "4" + ] + } + }, + { + "name": "Informational_Duration", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 1074, + "unique_ratio": 0.108881, + "example_values": [ + "0", + "2", + "24", + "86.75", + "62.5" + ] + } + }, + { + "name": "ProductRelated", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 286, + "unique_ratio": 0.028994, + "example_values": [ + "13", + "8", + "63", + "15", + "3" + ] + } + }, + { + "name": "ProductRelated_Duration", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 7769, + "unique_ratio": 0.787612, + "example_values": [ + "549.2", + "64", + "2435.697531", + "267.7333333", + "57.4" + ] + } + }, + { + "name": "BounceRates", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 1574, + "unique_ratio": 0.15957, + "example_values": [ + "0.019230769", + "0", + "0.00952381", + "0.022857143", + "0.004166667" + ] + } + }, + { + "name": "ExitRates", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 3953, + "unique_ratio": 0.40075, + "example_values": [ + "0.045421245", + "0.05", + "0.017460317", + "0.040606061", + "0.133333333" + ] + } + }, + { + "name": "PageValues", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 2129, + "unique_ratio": 0.215835, + "example_values": [ + "0", + "7.945368291", + "10.37042373", + "18.99269231", + "44.33548922" + ] + } + }, + { + "name": "SpecialDay", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 6, + "unique_ratio": 0.000608, + "example_values": [ + "0", + "0.4", + "0.2", + "0.8", + "1" + ] + } + }, + { + "name": "Month", + "role": "feature", + "semantic_type": "categorical", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 10, + "unique_ratio": 0.001014, + "example_values": [ + "Nov", + "Dec", + "Jul", + "Aug", + "Mar" + ] + } + }, + { + "name": "OperatingSystems", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 8, + "unique_ratio": 0.000811, + "example_values": [ + "3", + "2", + "6", + "4", + "1" + ] + } + }, + { + "name": "Browser", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 13, + "unique_ratio": 0.001318, + "example_values": [ + "2", + "1", + "5", + "4", + "3" + ] + } + }, + { + "name": "Region", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 9, + "unique_ratio": 0.000912, + "example_values": [ + "6", + "3", + "4", + "1", + "9" + ] + } + }, + { + "name": "TrafficType", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 20, + "unique_ratio": 0.002028, + "example_values": [ + "2", + "8", + "3", + "11", + "1" + ] + } + }, + { + "name": "VisitorType", + "role": "target", + "semantic_type": "categorical", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 3, + "unique_ratio": 0.000304, + "example_values": [ + "Returning_Visitor", + "New_Visitor", + "Other" + ] + } + }, + { + "name": "Weekend", + "role": "feature", + "semantic_type": "boolean", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 2, + "unique_ratio": 0.000203, + "example_values": [ + "FALSE", + "TRUE" + ] + } + }, + { + "name": "Revenue", + "role": "feature", + "semantic_type": "boolean", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 2, + "unique_ratio": 0.000203, + "example_values": [ + "FALSE", + "TRUE" + ] + } + } + ], + "public_manifest": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/m6/forestdiffusion/forest-m6-20260430_060004/public_gate/staged_input_manifest.json", + "train_csv": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/m6/forestdiffusion/forest-m6-20260430_060004/staged/public/train.csv", + "val_csv": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/m6/forestdiffusion/forest-m6-20260430_060004/staged/public/val.csv", + "test_csv": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/m6/forestdiffusion/forest-m6-20260430_060004/staged/public/test.csv", + "features_json": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/m6/forestdiffusion/forest-m6-20260430_060004/staged/public/staged_features.json", + "public_gate_report": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/m6/forestdiffusion/forest-m6-20260430_060004/public_gate/public_gate_report.json" +} \ No newline at end of file diff --git a/timecost/m6/forestdiffusion/forest-m6-20260430_060004/staged/public/staged_features.json b/timecost/m6/forestdiffusion/forest-m6-20260430_060004/staged/public/staged_features.json new file mode 100644 index 0000000000000000000000000000000000000000..49b25bd1347f910a2b95ef0c137d1a64bf69e0cb --- /dev/null +++ b/timecost/m6/forestdiffusion/forest-m6-20260430_060004/staged/public/staged_features.json @@ -0,0 +1,92 @@ +[ + { + "feature_name": "Administrative", + "data_type": "continuous", + "is_target": false + }, + { + "feature_name": "Administrative_Duration", + "data_type": "continuous", + "is_target": false + }, + { + "feature_name": "Informational", + "data_type": "continuous", + "is_target": false + }, + { + "feature_name": "Informational_Duration", + "data_type": "continuous", + "is_target": false + }, + { + "feature_name": "ProductRelated", + "data_type": "continuous", + "is_target": false + }, + { + "feature_name": "ProductRelated_Duration", + "data_type": "continuous", + "is_target": false + }, + { + "feature_name": "BounceRates", + "data_type": "continuous", + "is_target": false + }, + { + "feature_name": "ExitRates", + "data_type": "continuous", + "is_target": false + }, + { + "feature_name": "PageValues", + "data_type": "continuous", + "is_target": false + }, + { + "feature_name": "SpecialDay", + "data_type": "continuous", + "is_target": false + }, + { + "feature_name": "Month", + "data_type": "categorical", + "is_target": false + }, + { + "feature_name": "OperatingSystems", + "data_type": "continuous", + "is_target": false + }, + { + "feature_name": "Browser", + "data_type": "continuous", + "is_target": false + }, + { + "feature_name": "Region", + "data_type": "continuous", + "is_target": false + }, + { + "feature_name": "TrafficType", + "data_type": "continuous", + "is_target": false + }, + { + "feature_name": "VisitorType", + "data_type": "categorical", + "is_target": true + }, + { + "feature_name": "Weekend", + "data_type": "binary", + "is_target": false + }, + { + "feature_name": "Revenue", + "data_type": "binary", + "is_target": false + } +] \ No newline at end of file diff --git a/timecost/m6/forestdiffusion/forest-m6-20260430_060004/staged/public/test.csv b/timecost/m6/forestdiffusion/forest-m6-20260430_060004/staged/public/test.csv new file mode 100644 index 0000000000000000000000000000000000000000..3944bd554327e948b8bda8c383bd581f3fc26ec6 --- /dev/null +++ b/timecost/m6/forestdiffusion/forest-m6-20260430_060004/staged/public/test.csv @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:d16d0389cb0fe4b23bab344dc10070de6678357a9452f9f620d0eeba66a6b12d +size 116376 diff --git a/timecost/m6/forestdiffusion/forest-m6-20260430_060004/staged/public/train.csv b/timecost/m6/forestdiffusion/forest-m6-20260430_060004/staged/public/train.csv new file mode 100644 index 0000000000000000000000000000000000000000..ae3a266ed7bebf02bc27c50b9dea6e8c5fe71c10 --- /dev/null +++ b/timecost/m6/forestdiffusion/forest-m6-20260430_060004/staged/public/train.csv @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:e1f0338c367408dc21d5a4ec9cdc5d3fe8188916db6085f3fd326304a55551e1 +size 924849 diff --git a/timecost/m6/forestdiffusion/forest-m6-20260430_060004/staged/public/val.csv b/timecost/m6/forestdiffusion/forest-m6-20260430_060004/staged/public/val.csv new file mode 100644 index 0000000000000000000000000000000000000000..60be57a3609a30d56d27e37e49a3aedfa6294db5 --- /dev/null +++ b/timecost/m6/forestdiffusion/forest-m6-20260430_060004/staged/public/val.csv @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:cb9169f3c7213420491d9b709ee1cc650aeaed732fa77dcbd6ffe3583366b2d4 +size 116198 diff --git a/timecost/m6/forestdiffusion/forest-m6-20260430_060004/train_20260430_060005.log b/timecost/m6/forestdiffusion/forest-m6-20260430_060004/train_20260430_060005.log new file mode 100644 index 0000000000000000000000000000000000000000..f5355f8ca19d9670a8cadad9578f646b4ac71072 --- /dev/null +++ b/timecost/m6/forestdiffusion/forest-m6-20260430_060004/train_20260430_060005.log @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:6e6a5fd95dff7f3309cc795220ba26fd47ccbf1192ff38aef16d7099ef792246 +size 424 diff --git a/timecost/m6/realtabformer/rtf-m6-20260429_070344/gen_20260429_080310.log b/timecost/m6/realtabformer/rtf-m6-20260429_070344/gen_20260429_080310.log new file mode 100644 index 0000000000000000000000000000000000000000..537a540e7223209340d8df8cabfcc70213b139d1 --- /dev/null +++ b/timecost/m6/realtabformer/rtf-m6-20260429_070344/gen_20260429_080310.log @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:3b09996b7dcdfb746dc48a40525ea2ca630e1e803941bca92c1d249eb297c8e2 +size 5497 diff --git a/timecost/m6/realtabformer/rtf-m6-20260429_070344/input_snapshot.json b/timecost/m6/realtabformer/rtf-m6-20260429_070344/input_snapshot.json new file mode 100644 index 0000000000000000000000000000000000000000..43cff822ba098c3814a3514fd9642aaee069baff --- /dev/null +++ b/timecost/m6/realtabformer/rtf-m6-20260429_070344/input_snapshot.json @@ -0,0 +1,36 @@ +{ + "dataset_id": "m6", + "model": "realtabformer", + "inputs": { + "train_csv": { + "path": "/data/jialinzhang/SynthesizePipeline-server/DatasetNew/m6/m6-train.csv", + "exists": true, + "size": 856785, + "sha256": "a5d1c487a8f2611385915fcc5a52bad546680ddbc8d23fc695f442cdd6dafa0c" + }, + "val_csv": { + "path": "/data/jialinzhang/SynthesizePipeline-server/DatasetNew/m6/m6-val.csv", + "exists": true, + "size": 107758, + "sha256": "598196cecc227cfba95c9796b80bc1baf684a0117e6673b8662b89482cdcb78f" + }, + "test_csv": { + "path": "/data/jialinzhang/SynthesizePipeline-server/DatasetNew/m6/m6-test.csv", + "exists": true, + "size": 107996, + "sha256": "ec939ad96a3b14dd960886359fb6c5d45591adc8a734661ade3dee1417a015de" + }, + "profile_json": { + "path": "/data/jialinzhang/SynthesizePipeline-server/DatasetNew/artifacts/data_core/tabular/m6/m6-dataset_profile.json", + "exists": true, + "size": 7622, + "sha256": "859f1fe93806c8ecdea9c9db9db34fb6cf94bc112b5c0a66b2436e8ef71c2e98" + }, + "contract_json": { + "path": "/data/jialinzhang/SynthesizePipeline-server/DatasetNew/artifacts/data_core/tabular/m6/m6-dataset_contract_v1.json", + "exists": true, + "size": 8990, + "sha256": "01142eeb121af615a644c3e312f5f3e79d805396339f40d5a300ba3560cf8e90" + } + } +} \ No newline at end of file diff --git a/timecost/m6/realtabformer/rtf-m6-20260429_070344/models_100epochs/id000017774209869356351488/rtf_config.json b/timecost/m6/realtabformer/rtf-m6-20260429_070344/models_100epochs/id000017774209869356351488/rtf_config.json new file mode 100644 index 0000000000000000000000000000000000000000..35a5e6b80fef001fd33a0e51580895ee5c77fbc6 --- /dev/null +++ b/timecost/m6/realtabformer/rtf-m6-20260429_070344/models_100epochs/id000017774209869356351488/rtf_config.json @@ -0,0 +1 @@ +{"model_type": "tabular", "tabular_config": {"transformers_version": "5.5.3", "architectures": ["GPT2LMHeadModel"], "output_hidden_states": false, "return_dict": true, "dtype": "float32", "chunk_size_feed_forward": 0, "is_encoder_decoder": false, "id2label": {"0": "LABEL_0", "1": "LABEL_1"}, "label2id": {"LABEL_0": 0, "LABEL_1": 1}, "problem_type": null, "vocab_size": 498, "n_positions": 1024, "n_embd": 768, "n_layer": 6, "n_head": 12, "n_inner": null, "activation_function": "gelu_new", "resid_pdrop": 0.1, "embd_pdrop": 0.1, "attn_pdrop": 0.1, "layer_norm_epsilon": 1e-05, "initializer_range": 0.02, "summary_type": "cls_index", "summary_use_proj": true, "summary_activation": null, "summary_proj_to_labels": true, "summary_first_dropout": 0.1, "scale_attn_weights": true, "use_cache": false, "bos_token_id": 5, "eos_token_id": 6, "pad_token_id": null, "scale_attn_by_inverse_layer_idx": false, "reorder_and_upcast_attn": false, "add_cross_attention": false, "tie_word_embeddings": true, "_name_or_path": "", "model_type": "gpt2", "output_attentions": false}, "checkpoints_dir": "rtf_checkpoints", "samples_save_dir": "rtf_samples", "full_save_dir": "rtf_full_save", "epochs": 100, "batch_size": 8, "early_stopping_patience": 5, "early_stopping_threshold": 0, "training_args_kwargs": {"eval_strategy": "no", "output_dir": "rtf_checkpoints", "metric_for_best_model": "loss", "num_train_epochs": 100, "per_device_train_batch_size": 8, "per_device_eval_batch_size": 8, "gradient_accumulation_steps": 4, "remove_unused_columns": true, "logging_steps": 100, "save_steps": 100, "eval_steps": 100, "load_best_model_at_end": false, "save_total_limit": 6, "optim": "adamw_torch"}, "train_size": 1, "mask_rate": 0, "columns": ["Administrative", "Administrative_Duration", "Informational", "Informational_Duration", "ProductRelated", "ProductRelated_Duration", "BounceRates", "ExitRates", "PageValues", "SpecialDay", "Month", "OperatingSystems", "Browser", "Region", "TrafficType", "VisitorType", "Weekend", "Revenue"], "column_dtypes": {"Administrative": "int64", "Administrative_Duration": "float64", "Informational": "int64", "Informational_Duration": "float64", "ProductRelated": "int64", "ProductRelated_Duration": "float64", "BounceRates": "float64", "ExitRates": "float64", "PageValues": "float64", "SpecialDay": "float64", "Month": "object", "OperatingSystems": "int64", "Browser": "int64", "Region": "int64", "TrafficType": "int64", "VisitorType": "object", "Weekend": "object", "Revenue": "object"}, "column_has_missing": {"Administrative": false, "Administrative_Duration": false, "Informational": false, "Informational_Duration": false, "ProductRelated": false, "ProductRelated_Duration": false, "BounceRates": false, "ExitRates": false, "PageValues": false, "SpecialDay": false, "Month": false, "OperatingSystems": false, "Browser": false, "Region": false, "TrafficType": false, "VisitorType": false, "Weekend": false, "Revenue": false}, "drop_na_cols": ["Administrative", "Administrative_Duration", "Informational", "Informational_Duration", "ProductRelated", "ProductRelated_Duration", "BounceRates", "ExitRates", "PageValues", "SpecialDay", "Month", "OperatingSystems", "Browser", "Region", "TrafficType", "VisitorType", "Weekend", "Revenue"], "processed_columns": ["00___NUMERIC___Administrative_00", "00___NUMERIC___Administrative_01", "01___NUMERIC___Administrative_Duration_00", "01___NUMERIC___Administrative_Duration_01", "01___NUMERIC___Administrative_Duration_02", "01___NUMERIC___Administrative_Duration_03", "01___NUMERIC___Administrative_Duration_04", "01___NUMERIC___Administrative_Duration_05", "01___NUMERIC___Administrative_Duration_06", "01___NUMERIC___Administrative_Duration_07", "01___NUMERIC___Administrative_Duration_08", "02___NUMERIC___Informational_00", "02___NUMERIC___Informational_01", "03___NUMERIC___Informational_Duration_00", "03___NUMERIC___Informational_Duration_01", "03___NUMERIC___Informational_Duration_02", "03___NUMERIC___Informational_Duration_03", "03___NUMERIC___Informational_Duration_04", "03___NUMERIC___Informational_Duration_05", "03___NUMERIC___Informational_Duration_06", "03___NUMERIC___Informational_Duration_07", "03___NUMERIC___Informational_Duration_08", "04___NUMERIC___ProductRelated_00", "04___NUMERIC___ProductRelated_01", "04___NUMERIC___ProductRelated_02", "05___NUMERIC___ProductRelated_Duration_00", "05___NUMERIC___ProductRelated_Duration_01", "05___NUMERIC___ProductRelated_Duration_02", "05___NUMERIC___ProductRelated_Duration_03", "05___NUMERIC___ProductRelated_Duration_04", "05___NUMERIC___ProductRelated_Duration_05", "05___NUMERIC___ProductRelated_Duration_06", "05___NUMERIC___ProductRelated_Duration_07", "05___NUMERIC___ProductRelated_Duration_08", "05___NUMERIC___ProductRelated_Duration_09", "06___NUMERIC___BounceRates_00", "06___NUMERIC___BounceRates_01", "06___NUMERIC___BounceRates_02", "06___NUMERIC___BounceRates_03", "06___NUMERIC___BounceRates_04", "06___NUMERIC___BounceRates_05", "07___NUMERIC___ExitRates_00", "07___NUMERIC___ExitRates_01", "07___NUMERIC___ExitRates_02", "07___NUMERIC___ExitRates_03", "07___NUMERIC___ExitRates_04", "07___NUMERIC___ExitRates_05", "08___NUMERIC___PageValues_00", "08___NUMERIC___PageValues_01", "08___NUMERIC___PageValues_02", "08___NUMERIC___PageValues_03", "08___NUMERIC___PageValues_04", "08___NUMERIC___PageValues_05", "08___NUMERIC___PageValues_06", "08___NUMERIC___PageValues_07", "09___NUMERIC___SpecialDay_00", "09___NUMERIC___SpecialDay_01", "09___NUMERIC___SpecialDay_02", "10___CATEGORICAL___Month", "11___NUMERIC___OperatingSystems_00", "12___NUMERIC___Browser_00", "12___NUMERIC___Browser_01", "13___NUMERIC___Region_00", "14___NUMERIC___TrafficType_00", "14___NUMERIC___TrafficType_01", "15___CATEGORICAL___VisitorType", "16___CATEGORICAL___Weekend", "17___CATEGORICAL___Revenue"], "numeric_columns": ["Administrative", "Administrative_Duration", "Informational", "Informational_Duration", "ProductRelated", "ProductRelated_Duration", "BounceRates", "ExitRates", "PageValues", "SpecialDay", "OperatingSystems", "Browser", "Region", "TrafficType"], "datetime_columns": [], "vocab": {"id2token": {"0": "[UNK]", "1": "[SEP]", "2": "[PAD]", "3": "[CLS]", "4": "[MASK]", "5": "[BOS]", "6": "[EOS]", "7": "[BMEM]", "8": "[EMEM]", "9": "[RMASK]", "10": "[SPTYPE]", "11": "00___NUMERIC___Administrative_00___0", "12": "00___NUMERIC___Administrative_00___1", "13": "00___NUMERIC___Administrative_00___2", "14": "00___NUMERIC___Administrative_01___0", "15": "00___NUMERIC___Administrative_01___1", "16": "00___NUMERIC___Administrative_01___2", "17": "00___NUMERIC___Administrative_01___3", "18": "00___NUMERIC___Administrative_01___4", "19": "00___NUMERIC___Administrative_01___5", "20": "00___NUMERIC___Administrative_01___6", "21": "00___NUMERIC___Administrative_01___7", "22": "00___NUMERIC___Administrative_01___8", "23": "00___NUMERIC___Administrative_01___9", "24": "01___NUMERIC___Administrative_Duration_00___0", "25": "01___NUMERIC___Administrative_Duration_00___1", "26": "01___NUMERIC___Administrative_Duration_00___2", "27": "01___NUMERIC___Administrative_Duration_01___0", "28": "01___NUMERIC___Administrative_Duration_01___1", "29": "01___NUMERIC___Administrative_Duration_01___2", "30": "01___NUMERIC___Administrative_Duration_01___3", "31": "01___NUMERIC___Administrative_Duration_01___4", "32": "01___NUMERIC___Administrative_Duration_01___5", "33": "01___NUMERIC___Administrative_Duration_01___6", "34": "01___NUMERIC___Administrative_Duration_01___7", "35": "01___NUMERIC___Administrative_Duration_01___8", "36": "01___NUMERIC___Administrative_Duration_01___9", "37": "01___NUMERIC___Administrative_Duration_02___0", "38": "01___NUMERIC___Administrative_Duration_02___1", "39": "01___NUMERIC___Administrative_Duration_02___2", "40": "01___NUMERIC___Administrative_Duration_02___3", "41": "01___NUMERIC___Administrative_Duration_02___4", "42": "01___NUMERIC___Administrative_Duration_02___5", "43": "01___NUMERIC___Administrative_Duration_02___6", "44": "01___NUMERIC___Administrative_Duration_02___7", "45": "01___NUMERIC___Administrative_Duration_02___8", "46": "01___NUMERIC___Administrative_Duration_02___9", "47": "01___NUMERIC___Administrative_Duration_03___0", "48": "01___NUMERIC___Administrative_Duration_03___1", "49": "01___NUMERIC___Administrative_Duration_03___2", "50": "01___NUMERIC___Administrative_Duration_03___3", "51": "01___NUMERIC___Administrative_Duration_03___4", "52": "01___NUMERIC___Administrative_Duration_03___5", "53": "01___NUMERIC___Administrative_Duration_03___6", "54": "01___NUMERIC___Administrative_Duration_03___7", "55": "01___NUMERIC___Administrative_Duration_03___8", "56": "01___NUMERIC___Administrative_Duration_03___9", "57": "01___NUMERIC___Administrative_Duration_04___.", "58": "01___NUMERIC___Administrative_Duration_05___0", "59": "01___NUMERIC___Administrative_Duration_05___1", "60": "01___NUMERIC___Administrative_Duration_05___2", "61": "01___NUMERIC___Administrative_Duration_05___3", "62": "01___NUMERIC___Administrative_Duration_05___4", "63": "01___NUMERIC___Administrative_Duration_05___5", "64": "01___NUMERIC___Administrative_Duration_05___6", "65": "01___NUMERIC___Administrative_Duration_05___7", "66": "01___NUMERIC___Administrative_Duration_05___8", "67": "01___NUMERIC___Administrative_Duration_05___9", "68": "01___NUMERIC___Administrative_Duration_06___0", "69": "01___NUMERIC___Administrative_Duration_06___1", "70": "01___NUMERIC___Administrative_Duration_06___2", "71": "01___NUMERIC___Administrative_Duration_06___3", "72": "01___NUMERIC___Administrative_Duration_06___4", "73": "01___NUMERIC___Administrative_Duration_06___5", "74": "01___NUMERIC___Administrative_Duration_06___6", "75": "01___NUMERIC___Administrative_Duration_06___7", "76": "01___NUMERIC___Administrative_Duration_06___8", "77": "01___NUMERIC___Administrative_Duration_06___9", "78": "01___NUMERIC___Administrative_Duration_07___0", "79": "01___NUMERIC___Administrative_Duration_07___1", "80": "01___NUMERIC___Administrative_Duration_07___2", "81": "01___NUMERIC___Administrative_Duration_07___3", "82": "01___NUMERIC___Administrative_Duration_07___4", "83": "01___NUMERIC___Administrative_Duration_07___5", "84": "01___NUMERIC___Administrative_Duration_07___6", "85": "01___NUMERIC___Administrative_Duration_07___7", "86": "01___NUMERIC___Administrative_Duration_07___8", "87": "01___NUMERIC___Administrative_Duration_07___9", "88": "01___NUMERIC___Administrative_Duration_08___0", "89": "01___NUMERIC___Administrative_Duration_08___1", "90": "01___NUMERIC___Administrative_Duration_08___2", "91": "01___NUMERIC___Administrative_Duration_08___3", "92": "01___NUMERIC___Administrative_Duration_08___4", "93": "01___NUMERIC___Administrative_Duration_08___5", "94": "01___NUMERIC___Administrative_Duration_08___6", "95": "01___NUMERIC___Administrative_Duration_08___7", "96": "01___NUMERIC___Administrative_Duration_08___8", "97": "01___NUMERIC___Administrative_Duration_08___9", "98": "02___NUMERIC___Informational_00___0", "99": "02___NUMERIC___Informational_00___1", "100": "02___NUMERIC___Informational_00___2", "101": "02___NUMERIC___Informational_01___0", "102": "02___NUMERIC___Informational_01___1", "103": "02___NUMERIC___Informational_01___2", "104": "02___NUMERIC___Informational_01___3", "105": "02___NUMERIC___Informational_01___4", "106": "02___NUMERIC___Informational_01___5", "107": "02___NUMERIC___Informational_01___6", "108": "02___NUMERIC___Informational_01___7", "109": "02___NUMERIC___Informational_01___8", "110": "02___NUMERIC___Informational_01___9", "111": "03___NUMERIC___Informational_Duration_00___0", "112": "03___NUMERIC___Informational_Duration_00___1", "113": "03___NUMERIC___Informational_Duration_00___2", "114": "03___NUMERIC___Informational_Duration_01___0", "115": "03___NUMERIC___Informational_Duration_01___1", "116": "03___NUMERIC___Informational_Duration_01___2", "117": "03___NUMERIC___Informational_Duration_01___3", "118": "03___NUMERIC___Informational_Duration_01___4", "119": "03___NUMERIC___Informational_Duration_01___5", "120": "03___NUMERIC___Informational_Duration_01___6", "121": "03___NUMERIC___Informational_Duration_01___7", "122": "03___NUMERIC___Informational_Duration_01___8", "123": "03___NUMERIC___Informational_Duration_01___9", "124": "03___NUMERIC___Informational_Duration_02___0", "125": "03___NUMERIC___Informational_Duration_02___1", "126": "03___NUMERIC___Informational_Duration_02___2", "127": "03___NUMERIC___Informational_Duration_02___3", "128": "03___NUMERIC___Informational_Duration_02___4", "129": "03___NUMERIC___Informational_Duration_02___5", "130": "03___NUMERIC___Informational_Duration_02___6", "131": "03___NUMERIC___Informational_Duration_02___7", "132": "03___NUMERIC___Informational_Duration_02___8", "133": "03___NUMERIC___Informational_Duration_02___9", "134": "03___NUMERIC___Informational_Duration_03___0", "135": "03___NUMERIC___Informational_Duration_03___1", "136": "03___NUMERIC___Informational_Duration_03___2", "137": "03___NUMERIC___Informational_Duration_03___3", "138": "03___NUMERIC___Informational_Duration_03___4", "139": "03___NUMERIC___Informational_Duration_03___5", "140": "03___NUMERIC___Informational_Duration_03___6", "141": "03___NUMERIC___Informational_Duration_03___7", "142": "03___NUMERIC___Informational_Duration_03___8", "143": "03___NUMERIC___Informational_Duration_03___9", "144": "03___NUMERIC___Informational_Duration_04___.", "145": "03___NUMERIC___Informational_Duration_05___0", "146": "03___NUMERIC___Informational_Duration_05___1", "147": "03___NUMERIC___Informational_Duration_05___2", "148": "03___NUMERIC___Informational_Duration_05___3", "149": "03___NUMERIC___Informational_Duration_05___4", "150": "03___NUMERIC___Informational_Duration_05___5", "151": "03___NUMERIC___Informational_Duration_05___6", "152": "03___NUMERIC___Informational_Duration_05___7", "153": "03___NUMERIC___Informational_Duration_05___8", "154": "03___NUMERIC___Informational_Duration_05___9", "155": "03___NUMERIC___Informational_Duration_06___0", "156": "03___NUMERIC___Informational_Duration_06___1", "157": "03___NUMERIC___Informational_Duration_06___2", "158": "03___NUMERIC___Informational_Duration_06___3", "159": "03___NUMERIC___Informational_Duration_06___4", "160": "03___NUMERIC___Informational_Duration_06___5", "161": "03___NUMERIC___Informational_Duration_06___6", "162": "03___NUMERIC___Informational_Duration_06___7", "163": "03___NUMERIC___Informational_Duration_06___8", "164": "03___NUMERIC___Informational_Duration_06___9", "165": "03___NUMERIC___Informational_Duration_07___0", "166": "03___NUMERIC___Informational_Duration_07___1", "167": "03___NUMERIC___Informational_Duration_07___2", "168": "03___NUMERIC___Informational_Duration_07___3", "169": "03___NUMERIC___Informational_Duration_07___4", "170": "03___NUMERIC___Informational_Duration_07___5", "171": "03___NUMERIC___Informational_Duration_07___6", "172": "03___NUMERIC___Informational_Duration_07___7", "173": "03___NUMERIC___Informational_Duration_07___8", "174": "03___NUMERIC___Informational_Duration_07___9", "175": "03___NUMERIC___Informational_Duration_08___0", "176": "03___NUMERIC___Informational_Duration_08___2", "177": "03___NUMERIC___Informational_Duration_08___3", "178": "03___NUMERIC___Informational_Duration_08___4", "179": "03___NUMERIC___Informational_Duration_08___5", "180": "03___NUMERIC___Informational_Duration_08___6", "181": "03___NUMERIC___Informational_Duration_08___7", "182": "03___NUMERIC___Informational_Duration_08___8", "183": "03___NUMERIC___Informational_Duration_08___9", "184": "04___NUMERIC___ProductRelated_00___0", "185": "04___NUMERIC___ProductRelated_00___1", "186": "04___NUMERIC___ProductRelated_00___2", "187": "04___NUMERIC___ProductRelated_00___3", "188": "04___NUMERIC___ProductRelated_00___4", "189": "04___NUMERIC___ProductRelated_00___5", "190": "04___NUMERIC___ProductRelated_00___7", "191": "04___NUMERIC___ProductRelated_01___0", "192": "04___NUMERIC___ProductRelated_01___1", "193": "04___NUMERIC___ProductRelated_01___2", "194": "04___NUMERIC___ProductRelated_01___3", "195": "04___NUMERIC___ProductRelated_01___4", "196": "04___NUMERIC___ProductRelated_01___5", "197": "04___NUMERIC___ProductRelated_01___6", "198": "04___NUMERIC___ProductRelated_01___7", "199": "04___NUMERIC___ProductRelated_01___8", "200": "04___NUMERIC___ProductRelated_01___9", "201": "04___NUMERIC___ProductRelated_02___0", "202": "04___NUMERIC___ProductRelated_02___1", "203": "04___NUMERIC___ProductRelated_02___2", "204": "04___NUMERIC___ProductRelated_02___3", "205": "04___NUMERIC___ProductRelated_02___4", "206": "04___NUMERIC___ProductRelated_02___5", "207": "04___NUMERIC___ProductRelated_02___6", "208": "04___NUMERIC___ProductRelated_02___7", "209": "04___NUMERIC___ProductRelated_02___8", "210": "04___NUMERIC___ProductRelated_02___9", "211": "05___NUMERIC___ProductRelated_Duration_00___0", "212": "05___NUMERIC___ProductRelated_Duration_00___1", "213": "05___NUMERIC___ProductRelated_Duration_00___2", "214": "05___NUMERIC___ProductRelated_Duration_00___4", "215": "05___NUMERIC___ProductRelated_Duration_01___0", "216": "05___NUMERIC___ProductRelated_Duration_01___1", "217": "05___NUMERIC___ProductRelated_Duration_01___2", "218": "05___NUMERIC___ProductRelated_Duration_01___3", "219": "05___NUMERIC___ProductRelated_Duration_01___4", "220": "05___NUMERIC___ProductRelated_Duration_01___5", "221": "05___NUMERIC___ProductRelated_Duration_01___6", "222": "05___NUMERIC___ProductRelated_Duration_01___7", "223": "05___NUMERIC___ProductRelated_Duration_01___8", "224": "05___NUMERIC___ProductRelated_Duration_01___9", "225": "05___NUMERIC___ProductRelated_Duration_02___0", "226": "05___NUMERIC___ProductRelated_Duration_02___1", "227": "05___NUMERIC___ProductRelated_Duration_02___2", "228": "05___NUMERIC___ProductRelated_Duration_02___3", "229": "05___NUMERIC___ProductRelated_Duration_02___4", "230": "05___NUMERIC___ProductRelated_Duration_02___5", "231": "05___NUMERIC___ProductRelated_Duration_02___6", "232": "05___NUMERIC___ProductRelated_Duration_02___7", "233": "05___NUMERIC___ProductRelated_Duration_02___8", "234": "05___NUMERIC___ProductRelated_Duration_02___9", "235": "05___NUMERIC___ProductRelated_Duration_03___0", "236": "05___NUMERIC___ProductRelated_Duration_03___1", "237": "05___NUMERIC___ProductRelated_Duration_03___2", "238": "05___NUMERIC___ProductRelated_Duration_03___3", "239": "05___NUMERIC___ProductRelated_Duration_03___4", "240": "05___NUMERIC___ProductRelated_Duration_03___5", "241": "05___NUMERIC___ProductRelated_Duration_03___6", "242": "05___NUMERIC___ProductRelated_Duration_03___7", "243": "05___NUMERIC___ProductRelated_Duration_03___8", "244": "05___NUMERIC___ProductRelated_Duration_03___9", "245": "05___NUMERIC___ProductRelated_Duration_04___0", "246": "05___NUMERIC___ProductRelated_Duration_04___1", "247": "05___NUMERIC___ProductRelated_Duration_04___2", "248": "05___NUMERIC___ProductRelated_Duration_04___3", "249": "05___NUMERIC___ProductRelated_Duration_04___4", "250": "05___NUMERIC___ProductRelated_Duration_04___5", "251": "05___NUMERIC___ProductRelated_Duration_04___6", "252": "05___NUMERIC___ProductRelated_Duration_04___7", "253": "05___NUMERIC___ProductRelated_Duration_04___8", "254": "05___NUMERIC___ProductRelated_Duration_04___9", "255": "05___NUMERIC___ProductRelated_Duration_05___.", "256": "05___NUMERIC___ProductRelated_Duration_06___0", "257": "05___NUMERIC___ProductRelated_Duration_06___1", "258": "05___NUMERIC___ProductRelated_Duration_06___2", "259": "05___NUMERIC___ProductRelated_Duration_06___3", "260": "05___NUMERIC___ProductRelated_Duration_06___4", "261": "05___NUMERIC___ProductRelated_Duration_06___5", "262": "05___NUMERIC___ProductRelated_Duration_06___6", "263": "05___NUMERIC___ProductRelated_Duration_06___7", "264": "05___NUMERIC___ProductRelated_Duration_06___8", "265": "05___NUMERIC___ProductRelated_Duration_06___9", "266": "05___NUMERIC___ProductRelated_Duration_07___0", "267": "05___NUMERIC___ProductRelated_Duration_07___1", "268": "05___NUMERIC___ProductRelated_Duration_07___2", "269": "05___NUMERIC___ProductRelated_Duration_07___3", "270": "05___NUMERIC___ProductRelated_Duration_07___4", "271": "05___NUMERIC___ProductRelated_Duration_07___5", "272": "05___NUMERIC___ProductRelated_Duration_07___6", "273": "05___NUMERIC___ProductRelated_Duration_07___7", "274": "05___NUMERIC___ProductRelated_Duration_07___8", "275": "05___NUMERIC___ProductRelated_Duration_07___9", "276": "05___NUMERIC___ProductRelated_Duration_08___0", "277": "05___NUMERIC___ProductRelated_Duration_08___1", "278": "05___NUMERIC___ProductRelated_Duration_08___2", "279": "05___NUMERIC___ProductRelated_Duration_08___3", "280": "05___NUMERIC___ProductRelated_Duration_08___4", "281": "05___NUMERIC___ProductRelated_Duration_08___5", "282": "05___NUMERIC___ProductRelated_Duration_08___6", "283": "05___NUMERIC___ProductRelated_Duration_08___7", "284": "05___NUMERIC___ProductRelated_Duration_08___8", "285": "05___NUMERIC___ProductRelated_Duration_08___9", "286": "05___NUMERIC___ProductRelated_Duration_09___0", "287": "05___NUMERIC___ProductRelated_Duration_09___1", "288": "05___NUMERIC___ProductRelated_Duration_09___2", "289": "05___NUMERIC___ProductRelated_Duration_09___3", "290": "05___NUMERIC___ProductRelated_Duration_09___4", "291": "05___NUMERIC___ProductRelated_Duration_09___5", "292": "05___NUMERIC___ProductRelated_Duration_09___6", "293": "05___NUMERIC___ProductRelated_Duration_09___7", "294": "05___NUMERIC___ProductRelated_Duration_09___8", "295": "05___NUMERIC___ProductRelated_Duration_09___9", "296": "06___NUMERIC___BounceRates_00___0", "297": "06___NUMERIC___BounceRates_01___.", "298": "06___NUMERIC___BounceRates_02___0", "299": "06___NUMERIC___BounceRates_02___1", "300": "06___NUMERIC___BounceRates_02___2", "301": "06___NUMERIC___BounceRates_03___0", "302": "06___NUMERIC___BounceRates_03___1", "303": "06___NUMERIC___BounceRates_03___2", "304": "06___NUMERIC___BounceRates_03___3", "305": "06___NUMERIC___BounceRates_03___4", "306": "06___NUMERIC___BounceRates_03___5", "307": "06___NUMERIC___BounceRates_03___6", "308": "06___NUMERIC___BounceRates_03___7", "309": "06___NUMERIC___BounceRates_03___8", "310": "06___NUMERIC___BounceRates_03___9", "311": "06___NUMERIC___BounceRates_04___0", "312": "06___NUMERIC___BounceRates_04___1", "313": "06___NUMERIC___BounceRates_04___2", "314": "06___NUMERIC___BounceRates_04___3", "315": "06___NUMERIC___BounceRates_04___4", "316": "06___NUMERIC___BounceRates_04___5", "317": "06___NUMERIC___BounceRates_04___6", "318": "06___NUMERIC___BounceRates_04___7", "319": "06___NUMERIC___BounceRates_04___8", "320": "06___NUMERIC___BounceRates_04___9", "321": "06___NUMERIC___BounceRates_05___0", "322": "06___NUMERIC___BounceRates_05___1", "323": "06___NUMERIC___BounceRates_05___2", "324": "06___NUMERIC___BounceRates_05___3", "325": "06___NUMERIC___BounceRates_05___4", "326": "06___NUMERIC___BounceRates_05___5", "327": "06___NUMERIC___BounceRates_05___6", "328": "06___NUMERIC___BounceRates_05___7", "329": "06___NUMERIC___BounceRates_05___8", "330": "06___NUMERIC___BounceRates_05___9", "331": "07___NUMERIC___ExitRates_00___0", "332": "07___NUMERIC___ExitRates_01___.", "333": "07___NUMERIC___ExitRates_02___0", "334": "07___NUMERIC___ExitRates_02___1", "335": "07___NUMERIC___ExitRates_02___2", "336": "07___NUMERIC___ExitRates_03___0", "337": "07___NUMERIC___ExitRates_03___1", "338": "07___NUMERIC___ExitRates_03___2", "339": "07___NUMERIC___ExitRates_03___3", "340": "07___NUMERIC___ExitRates_03___4", "341": "07___NUMERIC___ExitRates_03___5", "342": "07___NUMERIC___ExitRates_03___6", "343": "07___NUMERIC___ExitRates_03___7", "344": "07___NUMERIC___ExitRates_03___8", "345": "07___NUMERIC___ExitRates_03___9", "346": "07___NUMERIC___ExitRates_04___0", "347": "07___NUMERIC___ExitRates_04___1", "348": "07___NUMERIC___ExitRates_04___2", "349": "07___NUMERIC___ExitRates_04___3", "350": "07___NUMERIC___ExitRates_04___4", "351": "07___NUMERIC___ExitRates_04___5", "352": "07___NUMERIC___ExitRates_04___6", "353": "07___NUMERIC___ExitRates_04___7", "354": "07___NUMERIC___ExitRates_04___8", "355": "07___NUMERIC___ExitRates_04___9", "356": "07___NUMERIC___ExitRates_05___0", "357": "07___NUMERIC___ExitRates_05___1", "358": "07___NUMERIC___ExitRates_05___2", "359": "07___NUMERIC___ExitRates_05___3", "360": "07___NUMERIC___ExitRates_05___4", "361": "07___NUMERIC___ExitRates_05___5", "362": "07___NUMERIC___ExitRates_05___6", "363": "07___NUMERIC___ExitRates_05___7", "364": "07___NUMERIC___ExitRates_05___8", "365": "07___NUMERIC___ExitRates_05___9", "366": "08___NUMERIC___PageValues_00___0", "367": "08___NUMERIC___PageValues_00___1", "368": "08___NUMERIC___PageValues_00___2", "369": "08___NUMERIC___PageValues_00___3", "370": "08___NUMERIC___PageValues_01___0", "371": "08___NUMERIC___PageValues_01___1", "372": "08___NUMERIC___PageValues_01___2", "373": "08___NUMERIC___PageValues_01___3", "374": "08___NUMERIC___PageValues_01___4", "375": "08___NUMERIC___PageValues_01___5", "376": "08___NUMERIC___PageValues_01___6", "377": "08___NUMERIC___PageValues_01___7", "378": "08___NUMERIC___PageValues_01___8", "379": "08___NUMERIC___PageValues_01___9", "380": "08___NUMERIC___PageValues_02___0", "381": "08___NUMERIC___PageValues_02___1", "382": "08___NUMERIC___PageValues_02___2", "383": "08___NUMERIC___PageValues_02___3", "384": "08___NUMERIC___PageValues_02___4", "385": "08___NUMERIC___PageValues_02___5", "386": "08___NUMERIC___PageValues_02___6", "387": "08___NUMERIC___PageValues_02___7", "388": "08___NUMERIC___PageValues_02___8", "389": "08___NUMERIC___PageValues_02___9", "390": "08___NUMERIC___PageValues_03___.", "391": "08___NUMERIC___PageValues_04___0", "392": "08___NUMERIC___PageValues_04___1", "393": "08___NUMERIC___PageValues_04___2", "394": "08___NUMERIC___PageValues_04___3", "395": "08___NUMERIC___PageValues_04___4", "396": "08___NUMERIC___PageValues_04___5", "397": "08___NUMERIC___PageValues_04___6", "398": "08___NUMERIC___PageValues_04___7", "399": "08___NUMERIC___PageValues_04___8", "400": "08___NUMERIC___PageValues_04___9", "401": "08___NUMERIC___PageValues_05___0", "402": "08___NUMERIC___PageValues_05___1", "403": "08___NUMERIC___PageValues_05___2", "404": "08___NUMERIC___PageValues_05___3", "405": "08___NUMERIC___PageValues_05___4", "406": "08___NUMERIC___PageValues_05___5", "407": "08___NUMERIC___PageValues_05___6", "408": "08___NUMERIC___PageValues_05___7", "409": "08___NUMERIC___PageValues_05___8", "410": "08___NUMERIC___PageValues_05___9", "411": "08___NUMERIC___PageValues_06___0", "412": "08___NUMERIC___PageValues_06___1", "413": "08___NUMERIC___PageValues_06___2", "414": "08___NUMERIC___PageValues_06___3", "415": "08___NUMERIC___PageValues_06___4", "416": "08___NUMERIC___PageValues_06___5", "417": "08___NUMERIC___PageValues_06___6", "418": "08___NUMERIC___PageValues_06___7", "419": "08___NUMERIC___PageValues_06___8", "420": "08___NUMERIC___PageValues_06___9", "421": "08___NUMERIC___PageValues_07___0", "422": "08___NUMERIC___PageValues_07___1", "423": "08___NUMERIC___PageValues_07___2", "424": "08___NUMERIC___PageValues_07___3", "425": "08___NUMERIC___PageValues_07___4", "426": "08___NUMERIC___PageValues_07___5", "427": "08___NUMERIC___PageValues_07___6", "428": "08___NUMERIC___PageValues_07___7", "429": "08___NUMERIC___PageValues_07___8", "430": "08___NUMERIC___PageValues_07___9", "431": "09___NUMERIC___SpecialDay_00___0", "432": "09___NUMERIC___SpecialDay_00___1", "433": "09___NUMERIC___SpecialDay_01___.", "434": "09___NUMERIC___SpecialDay_02___0", "435": "09___NUMERIC___SpecialDay_02___2", "436": "09___NUMERIC___SpecialDay_02___4", "437": "09___NUMERIC___SpecialDay_02___6", "438": "09___NUMERIC___SpecialDay_02___8", "439": "10___CATEGORICAL___Month___Aug", "440": "10___CATEGORICAL___Month___Dec", "441": "10___CATEGORICAL___Month___Feb", "442": "10___CATEGORICAL___Month___Jul", "443": "10___CATEGORICAL___Month___June", "444": "10___CATEGORICAL___Month___Mar", "445": "10___CATEGORICAL___Month___May", "446": "10___CATEGORICAL___Month___Nov", "447": "10___CATEGORICAL___Month___Oct", "448": "10___CATEGORICAL___Month___Sep", "449": "11___NUMERIC___OperatingSystems_00___1", "450": "11___NUMERIC___OperatingSystems_00___2", "451": "11___NUMERIC___OperatingSystems_00___3", "452": "11___NUMERIC___OperatingSystems_00___4", "453": "11___NUMERIC___OperatingSystems_00___5", "454": "11___NUMERIC___OperatingSystems_00___6", "455": "11___NUMERIC___OperatingSystems_00___7", "456": "11___NUMERIC___OperatingSystems_00___8", "457": "12___NUMERIC___Browser_00___0", "458": "12___NUMERIC___Browser_00___1", "459": "12___NUMERIC___Browser_01___0", "460": "12___NUMERIC___Browser_01___1", "461": "12___NUMERIC___Browser_01___2", "462": "12___NUMERIC___Browser_01___3", "463": "12___NUMERIC___Browser_01___4", "464": "12___NUMERIC___Browser_01___5", "465": "12___NUMERIC___Browser_01___6", "466": "12___NUMERIC___Browser_01___7", "467": "12___NUMERIC___Browser_01___8", "468": "12___NUMERIC___Browser_01___9", "469": "13___NUMERIC___Region_00___1", "470": "13___NUMERIC___Region_00___2", "471": "13___NUMERIC___Region_00___3", "472": "13___NUMERIC___Region_00___4", "473": "13___NUMERIC___Region_00___5", "474": "13___NUMERIC___Region_00___6", "475": "13___NUMERIC___Region_00___7", "476": "13___NUMERIC___Region_00___8", "477": "13___NUMERIC___Region_00___9", "478": "14___NUMERIC___TrafficType_00___0", "479": "14___NUMERIC___TrafficType_00___1", "480": "14___NUMERIC___TrafficType_00___2", "481": "14___NUMERIC___TrafficType_01___0", "482": "14___NUMERIC___TrafficType_01___1", "483": "14___NUMERIC___TrafficType_01___2", "484": "14___NUMERIC___TrafficType_01___3", "485": "14___NUMERIC___TrafficType_01___4", "486": "14___NUMERIC___TrafficType_01___5", "487": "14___NUMERIC___TrafficType_01___6", "488": "14___NUMERIC___TrafficType_01___7", "489": "14___NUMERIC___TrafficType_01___8", "490": "14___NUMERIC___TrafficType_01___9", "491": "15___CATEGORICAL___VisitorType___New_Visitor", "492": "15___CATEGORICAL___VisitorType___Other", "493": "15___CATEGORICAL___VisitorType___Returning_Visitor", "494": "16___CATEGORICAL___Weekend___False", "495": "16___CATEGORICAL___Weekend___True", "496": "17___CATEGORICAL___Revenue___False", "497": "17___CATEGORICAL___Revenue___True"}, "token2id": {"[UNK]": 0, "[SEP]": 1, "[PAD]": 2, "[CLS]": 3, "[MASK]": 4, "[BOS]": 5, "[EOS]": 6, "[BMEM]": 7, "[EMEM]": 8, "[RMASK]": 9, "[SPTYPE]": 10, "00___NUMERIC___Administrative_00___0": 11, "00___NUMERIC___Administrative_00___1": 12, "00___NUMERIC___Administrative_00___2": 13, "00___NUMERIC___Administrative_01___0": 14, "00___NUMERIC___Administrative_01___1": 15, "00___NUMERIC___Administrative_01___2": 16, "00___NUMERIC___Administrative_01___3": 17, "00___NUMERIC___Administrative_01___4": 18, "00___NUMERIC___Administrative_01___5": 19, "00___NUMERIC___Administrative_01___6": 20, "00___NUMERIC___Administrative_01___7": 21, "00___NUMERIC___Administrative_01___8": 22, "00___NUMERIC___Administrative_01___9": 23, "01___NUMERIC___Administrative_Duration_00___0": 24, "01___NUMERIC___Administrative_Duration_00___1": 25, "01___NUMERIC___Administrative_Duration_00___2": 26, "01___NUMERIC___Administrative_Duration_01___0": 27, "01___NUMERIC___Administrative_Duration_01___1": 28, "01___NUMERIC___Administrative_Duration_01___2": 29, "01___NUMERIC___Administrative_Duration_01___3": 30, "01___NUMERIC___Administrative_Duration_01___4": 31, "01___NUMERIC___Administrative_Duration_01___5": 32, "01___NUMERIC___Administrative_Duration_01___6": 33, "01___NUMERIC___Administrative_Duration_01___7": 34, "01___NUMERIC___Administrative_Duration_01___8": 35, "01___NUMERIC___Administrative_Duration_01___9": 36, "01___NUMERIC___Administrative_Duration_02___0": 37, "01___NUMERIC___Administrative_Duration_02___1": 38, "01___NUMERIC___Administrative_Duration_02___2": 39, "01___NUMERIC___Administrative_Duration_02___3": 40, "01___NUMERIC___Administrative_Duration_02___4": 41, "01___NUMERIC___Administrative_Duration_02___5": 42, "01___NUMERIC___Administrative_Duration_02___6": 43, "01___NUMERIC___Administrative_Duration_02___7": 44, "01___NUMERIC___Administrative_Duration_02___8": 45, "01___NUMERIC___Administrative_Duration_02___9": 46, "01___NUMERIC___Administrative_Duration_03___0": 47, "01___NUMERIC___Administrative_Duration_03___1": 48, "01___NUMERIC___Administrative_Duration_03___2": 49, "01___NUMERIC___Administrative_Duration_03___3": 50, "01___NUMERIC___Administrative_Duration_03___4": 51, "01___NUMERIC___Administrative_Duration_03___5": 52, "01___NUMERIC___Administrative_Duration_03___6": 53, "01___NUMERIC___Administrative_Duration_03___7": 54, "01___NUMERIC___Administrative_Duration_03___8": 55, "01___NUMERIC___Administrative_Duration_03___9": 56, "01___NUMERIC___Administrative_Duration_04___.": 57, "01___NUMERIC___Administrative_Duration_05___0": 58, "01___NUMERIC___Administrative_Duration_05___1": 59, "01___NUMERIC___Administrative_Duration_05___2": 60, "01___NUMERIC___Administrative_Duration_05___3": 61, "01___NUMERIC___Administrative_Duration_05___4": 62, "01___NUMERIC___Administrative_Duration_05___5": 63, "01___NUMERIC___Administrative_Duration_05___6": 64, "01___NUMERIC___Administrative_Duration_05___7": 65, "01___NUMERIC___Administrative_Duration_05___8": 66, "01___NUMERIC___Administrative_Duration_05___9": 67, "01___NUMERIC___Administrative_Duration_06___0": 68, "01___NUMERIC___Administrative_Duration_06___1": 69, "01___NUMERIC___Administrative_Duration_06___2": 70, "01___NUMERIC___Administrative_Duration_06___3": 71, "01___NUMERIC___Administrative_Duration_06___4": 72, "01___NUMERIC___Administrative_Duration_06___5": 73, "01___NUMERIC___Administrative_Duration_06___6": 74, "01___NUMERIC___Administrative_Duration_06___7": 75, "01___NUMERIC___Administrative_Duration_06___8": 76, "01___NUMERIC___Administrative_Duration_06___9": 77, "01___NUMERIC___Administrative_Duration_07___0": 78, "01___NUMERIC___Administrative_Duration_07___1": 79, "01___NUMERIC___Administrative_Duration_07___2": 80, "01___NUMERIC___Administrative_Duration_07___3": 81, "01___NUMERIC___Administrative_Duration_07___4": 82, "01___NUMERIC___Administrative_Duration_07___5": 83, "01___NUMERIC___Administrative_Duration_07___6": 84, "01___NUMERIC___Administrative_Duration_07___7": 85, "01___NUMERIC___Administrative_Duration_07___8": 86, "01___NUMERIC___Administrative_Duration_07___9": 87, "01___NUMERIC___Administrative_Duration_08___0": 88, "01___NUMERIC___Administrative_Duration_08___1": 89, "01___NUMERIC___Administrative_Duration_08___2": 90, "01___NUMERIC___Administrative_Duration_08___3": 91, "01___NUMERIC___Administrative_Duration_08___4": 92, "01___NUMERIC___Administrative_Duration_08___5": 93, "01___NUMERIC___Administrative_Duration_08___6": 94, "01___NUMERIC___Administrative_Duration_08___7": 95, "01___NUMERIC___Administrative_Duration_08___8": 96, "01___NUMERIC___Administrative_Duration_08___9": 97, "02___NUMERIC___Informational_00___0": 98, "02___NUMERIC___Informational_00___1": 99, "02___NUMERIC___Informational_00___2": 100, "02___NUMERIC___Informational_01___0": 101, "02___NUMERIC___Informational_01___1": 102, "02___NUMERIC___Informational_01___2": 103, "02___NUMERIC___Informational_01___3": 104, "02___NUMERIC___Informational_01___4": 105, "02___NUMERIC___Informational_01___5": 106, "02___NUMERIC___Informational_01___6": 107, "02___NUMERIC___Informational_01___7": 108, "02___NUMERIC___Informational_01___8": 109, "02___NUMERIC___Informational_01___9": 110, "03___NUMERIC___Informational_Duration_00___0": 111, "03___NUMERIC___Informational_Duration_00___1": 112, "03___NUMERIC___Informational_Duration_00___2": 113, "03___NUMERIC___Informational_Duration_01___0": 114, "03___NUMERIC___Informational_Duration_01___1": 115, "03___NUMERIC___Informational_Duration_01___2": 116, "03___NUMERIC___Informational_Duration_01___3": 117, "03___NUMERIC___Informational_Duration_01___4": 118, "03___NUMERIC___Informational_Duration_01___5": 119, "03___NUMERIC___Informational_Duration_01___6": 120, "03___NUMERIC___Informational_Duration_01___7": 121, "03___NUMERIC___Informational_Duration_01___8": 122, "03___NUMERIC___Informational_Duration_01___9": 123, "03___NUMERIC___Informational_Duration_02___0": 124, "03___NUMERIC___Informational_Duration_02___1": 125, "03___NUMERIC___Informational_Duration_02___2": 126, "03___NUMERIC___Informational_Duration_02___3": 127, "03___NUMERIC___Informational_Duration_02___4": 128, "03___NUMERIC___Informational_Duration_02___5": 129, "03___NUMERIC___Informational_Duration_02___6": 130, "03___NUMERIC___Informational_Duration_02___7": 131, "03___NUMERIC___Informational_Duration_02___8": 132, "03___NUMERIC___Informational_Duration_02___9": 133, "03___NUMERIC___Informational_Duration_03___0": 134, "03___NUMERIC___Informational_Duration_03___1": 135, "03___NUMERIC___Informational_Duration_03___2": 136, "03___NUMERIC___Informational_Duration_03___3": 137, "03___NUMERIC___Informational_Duration_03___4": 138, "03___NUMERIC___Informational_Duration_03___5": 139, "03___NUMERIC___Informational_Duration_03___6": 140, "03___NUMERIC___Informational_Duration_03___7": 141, "03___NUMERIC___Informational_Duration_03___8": 142, "03___NUMERIC___Informational_Duration_03___9": 143, "03___NUMERIC___Informational_Duration_04___.": 144, "03___NUMERIC___Informational_Duration_05___0": 145, "03___NUMERIC___Informational_Duration_05___1": 146, "03___NUMERIC___Informational_Duration_05___2": 147, "03___NUMERIC___Informational_Duration_05___3": 148, "03___NUMERIC___Informational_Duration_05___4": 149, "03___NUMERIC___Informational_Duration_05___5": 150, "03___NUMERIC___Informational_Duration_05___6": 151, "03___NUMERIC___Informational_Duration_05___7": 152, "03___NUMERIC___Informational_Duration_05___8": 153, "03___NUMERIC___Informational_Duration_05___9": 154, "03___NUMERIC___Informational_Duration_06___0": 155, "03___NUMERIC___Informational_Duration_06___1": 156, "03___NUMERIC___Informational_Duration_06___2": 157, "03___NUMERIC___Informational_Duration_06___3": 158, "03___NUMERIC___Informational_Duration_06___4": 159, "03___NUMERIC___Informational_Duration_06___5": 160, "03___NUMERIC___Informational_Duration_06___6": 161, "03___NUMERIC___Informational_Duration_06___7": 162, "03___NUMERIC___Informational_Duration_06___8": 163, "03___NUMERIC___Informational_Duration_06___9": 164, "03___NUMERIC___Informational_Duration_07___0": 165, "03___NUMERIC___Informational_Duration_07___1": 166, "03___NUMERIC___Informational_Duration_07___2": 167, "03___NUMERIC___Informational_Duration_07___3": 168, "03___NUMERIC___Informational_Duration_07___4": 169, "03___NUMERIC___Informational_Duration_07___5": 170, "03___NUMERIC___Informational_Duration_07___6": 171, "03___NUMERIC___Informational_Duration_07___7": 172, "03___NUMERIC___Informational_Duration_07___8": 173, "03___NUMERIC___Informational_Duration_07___9": 174, "03___NUMERIC___Informational_Duration_08___0": 175, "03___NUMERIC___Informational_Duration_08___2": 176, "03___NUMERIC___Informational_Duration_08___3": 177, "03___NUMERIC___Informational_Duration_08___4": 178, "03___NUMERIC___Informational_Duration_08___5": 179, "03___NUMERIC___Informational_Duration_08___6": 180, "03___NUMERIC___Informational_Duration_08___7": 181, "03___NUMERIC___Informational_Duration_08___8": 182, "03___NUMERIC___Informational_Duration_08___9": 183, "04___NUMERIC___ProductRelated_00___0": 184, "04___NUMERIC___ProductRelated_00___1": 185, "04___NUMERIC___ProductRelated_00___2": 186, "04___NUMERIC___ProductRelated_00___3": 187, "04___NUMERIC___ProductRelated_00___4": 188, "04___NUMERIC___ProductRelated_00___5": 189, "04___NUMERIC___ProductRelated_00___7": 190, "04___NUMERIC___ProductRelated_01___0": 191, "04___NUMERIC___ProductRelated_01___1": 192, "04___NUMERIC___ProductRelated_01___2": 193, "04___NUMERIC___ProductRelated_01___3": 194, "04___NUMERIC___ProductRelated_01___4": 195, "04___NUMERIC___ProductRelated_01___5": 196, "04___NUMERIC___ProductRelated_01___6": 197, "04___NUMERIC___ProductRelated_01___7": 198, "04___NUMERIC___ProductRelated_01___8": 199, "04___NUMERIC___ProductRelated_01___9": 200, "04___NUMERIC___ProductRelated_02___0": 201, "04___NUMERIC___ProductRelated_02___1": 202, "04___NUMERIC___ProductRelated_02___2": 203, "04___NUMERIC___ProductRelated_02___3": 204, "04___NUMERIC___ProductRelated_02___4": 205, "04___NUMERIC___ProductRelated_02___5": 206, "04___NUMERIC___ProductRelated_02___6": 207, "04___NUMERIC___ProductRelated_02___7": 208, "04___NUMERIC___ProductRelated_02___8": 209, "04___NUMERIC___ProductRelated_02___9": 210, "05___NUMERIC___ProductRelated_Duration_00___0": 211, "05___NUMERIC___ProductRelated_Duration_00___1": 212, "05___NUMERIC___ProductRelated_Duration_00___2": 213, "05___NUMERIC___ProductRelated_Duration_00___4": 214, "05___NUMERIC___ProductRelated_Duration_01___0": 215, "05___NUMERIC___ProductRelated_Duration_01___1": 216, "05___NUMERIC___ProductRelated_Duration_01___2": 217, "05___NUMERIC___ProductRelated_Duration_01___3": 218, "05___NUMERIC___ProductRelated_Duration_01___4": 219, "05___NUMERIC___ProductRelated_Duration_01___5": 220, "05___NUMERIC___ProductRelated_Duration_01___6": 221, "05___NUMERIC___ProductRelated_Duration_01___7": 222, "05___NUMERIC___ProductRelated_Duration_01___8": 223, "05___NUMERIC___ProductRelated_Duration_01___9": 224, "05___NUMERIC___ProductRelated_Duration_02___0": 225, "05___NUMERIC___ProductRelated_Duration_02___1": 226, "05___NUMERIC___ProductRelated_Duration_02___2": 227, "05___NUMERIC___ProductRelated_Duration_02___3": 228, "05___NUMERIC___ProductRelated_Duration_02___4": 229, "05___NUMERIC___ProductRelated_Duration_02___5": 230, "05___NUMERIC___ProductRelated_Duration_02___6": 231, "05___NUMERIC___ProductRelated_Duration_02___7": 232, "05___NUMERIC___ProductRelated_Duration_02___8": 233, "05___NUMERIC___ProductRelated_Duration_02___9": 234, "05___NUMERIC___ProductRelated_Duration_03___0": 235, "05___NUMERIC___ProductRelated_Duration_03___1": 236, "05___NUMERIC___ProductRelated_Duration_03___2": 237, "05___NUMERIC___ProductRelated_Duration_03___3": 238, "05___NUMERIC___ProductRelated_Duration_03___4": 239, "05___NUMERIC___ProductRelated_Duration_03___5": 240, "05___NUMERIC___ProductRelated_Duration_03___6": 241, "05___NUMERIC___ProductRelated_Duration_03___7": 242, "05___NUMERIC___ProductRelated_Duration_03___8": 243, "05___NUMERIC___ProductRelated_Duration_03___9": 244, "05___NUMERIC___ProductRelated_Duration_04___0": 245, "05___NUMERIC___ProductRelated_Duration_04___1": 246, "05___NUMERIC___ProductRelated_Duration_04___2": 247, "05___NUMERIC___ProductRelated_Duration_04___3": 248, "05___NUMERIC___ProductRelated_Duration_04___4": 249, "05___NUMERIC___ProductRelated_Duration_04___5": 250, "05___NUMERIC___ProductRelated_Duration_04___6": 251, "05___NUMERIC___ProductRelated_Duration_04___7": 252, "05___NUMERIC___ProductRelated_Duration_04___8": 253, "05___NUMERIC___ProductRelated_Duration_04___9": 254, "05___NUMERIC___ProductRelated_Duration_05___.": 255, "05___NUMERIC___ProductRelated_Duration_06___0": 256, "05___NUMERIC___ProductRelated_Duration_06___1": 257, "05___NUMERIC___ProductRelated_Duration_06___2": 258, "05___NUMERIC___ProductRelated_Duration_06___3": 259, "05___NUMERIC___ProductRelated_Duration_06___4": 260, "05___NUMERIC___ProductRelated_Duration_06___5": 261, "05___NUMERIC___ProductRelated_Duration_06___6": 262, "05___NUMERIC___ProductRelated_Duration_06___7": 263, "05___NUMERIC___ProductRelated_Duration_06___8": 264, "05___NUMERIC___ProductRelated_Duration_06___9": 265, "05___NUMERIC___ProductRelated_Duration_07___0": 266, "05___NUMERIC___ProductRelated_Duration_07___1": 267, "05___NUMERIC___ProductRelated_Duration_07___2": 268, "05___NUMERIC___ProductRelated_Duration_07___3": 269, "05___NUMERIC___ProductRelated_Duration_07___4": 270, "05___NUMERIC___ProductRelated_Duration_07___5": 271, "05___NUMERIC___ProductRelated_Duration_07___6": 272, "05___NUMERIC___ProductRelated_Duration_07___7": 273, "05___NUMERIC___ProductRelated_Duration_07___8": 274, "05___NUMERIC___ProductRelated_Duration_07___9": 275, "05___NUMERIC___ProductRelated_Duration_08___0": 276, "05___NUMERIC___ProductRelated_Duration_08___1": 277, "05___NUMERIC___ProductRelated_Duration_08___2": 278, "05___NUMERIC___ProductRelated_Duration_08___3": 279, "05___NUMERIC___ProductRelated_Duration_08___4": 280, "05___NUMERIC___ProductRelated_Duration_08___5": 281, "05___NUMERIC___ProductRelated_Duration_08___6": 282, "05___NUMERIC___ProductRelated_Duration_08___7": 283, "05___NUMERIC___ProductRelated_Duration_08___8": 284, "05___NUMERIC___ProductRelated_Duration_08___9": 285, "05___NUMERIC___ProductRelated_Duration_09___0": 286, "05___NUMERIC___ProductRelated_Duration_09___1": 287, "05___NUMERIC___ProductRelated_Duration_09___2": 288, "05___NUMERIC___ProductRelated_Duration_09___3": 289, "05___NUMERIC___ProductRelated_Duration_09___4": 290, "05___NUMERIC___ProductRelated_Duration_09___5": 291, "05___NUMERIC___ProductRelated_Duration_09___6": 292, "05___NUMERIC___ProductRelated_Duration_09___7": 293, "05___NUMERIC___ProductRelated_Duration_09___8": 294, "05___NUMERIC___ProductRelated_Duration_09___9": 295, "06___NUMERIC___BounceRates_00___0": 296, "06___NUMERIC___BounceRates_01___.": 297, "06___NUMERIC___BounceRates_02___0": 298, "06___NUMERIC___BounceRates_02___1": 299, "06___NUMERIC___BounceRates_02___2": 300, "06___NUMERIC___BounceRates_03___0": 301, "06___NUMERIC___BounceRates_03___1": 302, "06___NUMERIC___BounceRates_03___2": 303, "06___NUMERIC___BounceRates_03___3": 304, "06___NUMERIC___BounceRates_03___4": 305, "06___NUMERIC___BounceRates_03___5": 306, "06___NUMERIC___BounceRates_03___6": 307, "06___NUMERIC___BounceRates_03___7": 308, "06___NUMERIC___BounceRates_03___8": 309, "06___NUMERIC___BounceRates_03___9": 310, "06___NUMERIC___BounceRates_04___0": 311, "06___NUMERIC___BounceRates_04___1": 312, "06___NUMERIC___BounceRates_04___2": 313, "06___NUMERIC___BounceRates_04___3": 314, "06___NUMERIC___BounceRates_04___4": 315, "06___NUMERIC___BounceRates_04___5": 316, "06___NUMERIC___BounceRates_04___6": 317, "06___NUMERIC___BounceRates_04___7": 318, "06___NUMERIC___BounceRates_04___8": 319, "06___NUMERIC___BounceRates_04___9": 320, "06___NUMERIC___BounceRates_05___0": 321, "06___NUMERIC___BounceRates_05___1": 322, "06___NUMERIC___BounceRates_05___2": 323, "06___NUMERIC___BounceRates_05___3": 324, "06___NUMERIC___BounceRates_05___4": 325, "06___NUMERIC___BounceRates_05___5": 326, "06___NUMERIC___BounceRates_05___6": 327, "06___NUMERIC___BounceRates_05___7": 328, "06___NUMERIC___BounceRates_05___8": 329, "06___NUMERIC___BounceRates_05___9": 330, "07___NUMERIC___ExitRates_00___0": 331, "07___NUMERIC___ExitRates_01___.": 332, "07___NUMERIC___ExitRates_02___0": 333, "07___NUMERIC___ExitRates_02___1": 334, "07___NUMERIC___ExitRates_02___2": 335, "07___NUMERIC___ExitRates_03___0": 336, "07___NUMERIC___ExitRates_03___1": 337, "07___NUMERIC___ExitRates_03___2": 338, "07___NUMERIC___ExitRates_03___3": 339, "07___NUMERIC___ExitRates_03___4": 340, "07___NUMERIC___ExitRates_03___5": 341, "07___NUMERIC___ExitRates_03___6": 342, "07___NUMERIC___ExitRates_03___7": 343, "07___NUMERIC___ExitRates_03___8": 344, "07___NUMERIC___ExitRates_03___9": 345, "07___NUMERIC___ExitRates_04___0": 346, "07___NUMERIC___ExitRates_04___1": 347, "07___NUMERIC___ExitRates_04___2": 348, "07___NUMERIC___ExitRates_04___3": 349, "07___NUMERIC___ExitRates_04___4": 350, "07___NUMERIC___ExitRates_04___5": 351, "07___NUMERIC___ExitRates_04___6": 352, "07___NUMERIC___ExitRates_04___7": 353, "07___NUMERIC___ExitRates_04___8": 354, "07___NUMERIC___ExitRates_04___9": 355, "07___NUMERIC___ExitRates_05___0": 356, "07___NUMERIC___ExitRates_05___1": 357, "07___NUMERIC___ExitRates_05___2": 358, "07___NUMERIC___ExitRates_05___3": 359, "07___NUMERIC___ExitRates_05___4": 360, "07___NUMERIC___ExitRates_05___5": 361, "07___NUMERIC___ExitRates_05___6": 362, "07___NUMERIC___ExitRates_05___7": 363, "07___NUMERIC___ExitRates_05___8": 364, "07___NUMERIC___ExitRates_05___9": 365, "08___NUMERIC___PageValues_00___0": 366, "08___NUMERIC___PageValues_00___1": 367, "08___NUMERIC___PageValues_00___2": 368, "08___NUMERIC___PageValues_00___3": 369, "08___NUMERIC___PageValues_01___0": 370, "08___NUMERIC___PageValues_01___1": 371, "08___NUMERIC___PageValues_01___2": 372, "08___NUMERIC___PageValues_01___3": 373, "08___NUMERIC___PageValues_01___4": 374, "08___NUMERIC___PageValues_01___5": 375, "08___NUMERIC___PageValues_01___6": 376, "08___NUMERIC___PageValues_01___7": 377, "08___NUMERIC___PageValues_01___8": 378, "08___NUMERIC___PageValues_01___9": 379, "08___NUMERIC___PageValues_02___0": 380, "08___NUMERIC___PageValues_02___1": 381, "08___NUMERIC___PageValues_02___2": 382, "08___NUMERIC___PageValues_02___3": 383, "08___NUMERIC___PageValues_02___4": 384, "08___NUMERIC___PageValues_02___5": 385, "08___NUMERIC___PageValues_02___6": 386, "08___NUMERIC___PageValues_02___7": 387, "08___NUMERIC___PageValues_02___8": 388, "08___NUMERIC___PageValues_02___9": 389, "08___NUMERIC___PageValues_03___.": 390, "08___NUMERIC___PageValues_04___0": 391, "08___NUMERIC___PageValues_04___1": 392, "08___NUMERIC___PageValues_04___2": 393, "08___NUMERIC___PageValues_04___3": 394, "08___NUMERIC___PageValues_04___4": 395, "08___NUMERIC___PageValues_04___5": 396, "08___NUMERIC___PageValues_04___6": 397, "08___NUMERIC___PageValues_04___7": 398, "08___NUMERIC___PageValues_04___8": 399, "08___NUMERIC___PageValues_04___9": 400, "08___NUMERIC___PageValues_05___0": 401, "08___NUMERIC___PageValues_05___1": 402, "08___NUMERIC___PageValues_05___2": 403, "08___NUMERIC___PageValues_05___3": 404, "08___NUMERIC___PageValues_05___4": 405, "08___NUMERIC___PageValues_05___5": 406, "08___NUMERIC___PageValues_05___6": 407, "08___NUMERIC___PageValues_05___7": 408, "08___NUMERIC___PageValues_05___8": 409, "08___NUMERIC___PageValues_05___9": 410, "08___NUMERIC___PageValues_06___0": 411, "08___NUMERIC___PageValues_06___1": 412, "08___NUMERIC___PageValues_06___2": 413, "08___NUMERIC___PageValues_06___3": 414, "08___NUMERIC___PageValues_06___4": 415, "08___NUMERIC___PageValues_06___5": 416, "08___NUMERIC___PageValues_06___6": 417, "08___NUMERIC___PageValues_06___7": 418, "08___NUMERIC___PageValues_06___8": 419, "08___NUMERIC___PageValues_06___9": 420, "08___NUMERIC___PageValues_07___0": 421, "08___NUMERIC___PageValues_07___1": 422, "08___NUMERIC___PageValues_07___2": 423, "08___NUMERIC___PageValues_07___3": 424, "08___NUMERIC___PageValues_07___4": 425, "08___NUMERIC___PageValues_07___5": 426, "08___NUMERIC___PageValues_07___6": 427, "08___NUMERIC___PageValues_07___7": 428, "08___NUMERIC___PageValues_07___8": 429, "08___NUMERIC___PageValues_07___9": 430, "09___NUMERIC___SpecialDay_00___0": 431, "09___NUMERIC___SpecialDay_00___1": 432, "09___NUMERIC___SpecialDay_01___.": 433, "09___NUMERIC___SpecialDay_02___0": 434, "09___NUMERIC___SpecialDay_02___2": 435, "09___NUMERIC___SpecialDay_02___4": 436, "09___NUMERIC___SpecialDay_02___6": 437, "09___NUMERIC___SpecialDay_02___8": 438, "10___CATEGORICAL___Month___Aug": 439, "10___CATEGORICAL___Month___Dec": 440, "10___CATEGORICAL___Month___Feb": 441, "10___CATEGORICAL___Month___Jul": 442, "10___CATEGORICAL___Month___June": 443, "10___CATEGORICAL___Month___Mar": 444, "10___CATEGORICAL___Month___May": 445, "10___CATEGORICAL___Month___Nov": 446, "10___CATEGORICAL___Month___Oct": 447, "10___CATEGORICAL___Month___Sep": 448, "11___NUMERIC___OperatingSystems_00___1": 449, "11___NUMERIC___OperatingSystems_00___2": 450, "11___NUMERIC___OperatingSystems_00___3": 451, "11___NUMERIC___OperatingSystems_00___4": 452, "11___NUMERIC___OperatingSystems_00___5": 453, "11___NUMERIC___OperatingSystems_00___6": 454, "11___NUMERIC___OperatingSystems_00___7": 455, "11___NUMERIC___OperatingSystems_00___8": 456, "12___NUMERIC___Browser_00___0": 457, "12___NUMERIC___Browser_00___1": 458, "12___NUMERIC___Browser_01___0": 459, "12___NUMERIC___Browser_01___1": 460, "12___NUMERIC___Browser_01___2": 461, "12___NUMERIC___Browser_01___3": 462, "12___NUMERIC___Browser_01___4": 463, "12___NUMERIC___Browser_01___5": 464, "12___NUMERIC___Browser_01___6": 465, "12___NUMERIC___Browser_01___7": 466, "12___NUMERIC___Browser_01___8": 467, "12___NUMERIC___Browser_01___9": 468, "13___NUMERIC___Region_00___1": 469, "13___NUMERIC___Region_00___2": 470, "13___NUMERIC___Region_00___3": 471, "13___NUMERIC___Region_00___4": 472, "13___NUMERIC___Region_00___5": 473, "13___NUMERIC___Region_00___6": 474, "13___NUMERIC___Region_00___7": 475, "13___NUMERIC___Region_00___8": 476, "13___NUMERIC___Region_00___9": 477, "14___NUMERIC___TrafficType_00___0": 478, "14___NUMERIC___TrafficType_00___1": 479, "14___NUMERIC___TrafficType_00___2": 480, "14___NUMERIC___TrafficType_01___0": 481, "14___NUMERIC___TrafficType_01___1": 482, "14___NUMERIC___TrafficType_01___2": 483, "14___NUMERIC___TrafficType_01___3": 484, "14___NUMERIC___TrafficType_01___4": 485, "14___NUMERIC___TrafficType_01___5": 486, "14___NUMERIC___TrafficType_01___6": 487, "14___NUMERIC___TrafficType_01___7": 488, "14___NUMERIC___TrafficType_01___8": 489, "14___NUMERIC___TrafficType_01___9": 490, "15___CATEGORICAL___VisitorType___New_Visitor": 491, "15___CATEGORICAL___VisitorType___Other": 492, "15___CATEGORICAL___VisitorType___Returning_Visitor": 493, "16___CATEGORICAL___Weekend___False": 494, "16___CATEGORICAL___Weekend___True": 495, "17___CATEGORICAL___Revenue___False": 496, "17___CATEGORICAL___Revenue___True": 497}, "column_token_ids": {"00___NUMERIC___Administrative_00": [11, 12, 13], "00___NUMERIC___Administrative_01": [14, 15, 16, 17, 18, 19, 20, 21, 22, 23], "01___NUMERIC___Administrative_Duration_00": [24, 25, 26], "01___NUMERIC___Administrative_Duration_01": [27, 28, 29, 30, 31, 32, 33, 34, 35, 36], "01___NUMERIC___Administrative_Duration_02": [37, 38, 39, 40, 41, 42, 43, 44, 45, 46], "01___NUMERIC___Administrative_Duration_03": [47, 48, 49, 50, 51, 52, 53, 54, 55, 56], "01___NUMERIC___Administrative_Duration_04": [57], "01___NUMERIC___Administrative_Duration_05": [58, 59, 60, 61, 62, 63, 64, 65, 66, 67], "01___NUMERIC___Administrative_Duration_06": [68, 69, 70, 71, 72, 73, 74, 75, 76, 77], "01___NUMERIC___Administrative_Duration_07": [78, 79, 80, 81, 82, 83, 84, 85, 86, 87], "01___NUMERIC___Administrative_Duration_08": [88, 89, 90, 91, 92, 93, 94, 95, 96, 97], "02___NUMERIC___Informational_00": [98, 99, 100], "02___NUMERIC___Informational_01": [101, 102, 103, 104, 105, 106, 107, 108, 109, 110], "03___NUMERIC___Informational_Duration_00": [111, 112, 113], "03___NUMERIC___Informational_Duration_01": [114, 115, 116, 117, 118, 119, 120, 121, 122, 123], "03___NUMERIC___Informational_Duration_02": [124, 125, 126, 127, 128, 129, 130, 131, 132, 133], "03___NUMERIC___Informational_Duration_03": [134, 135, 136, 137, 138, 139, 140, 141, 142, 143], "03___NUMERIC___Informational_Duration_04": [144], "03___NUMERIC___Informational_Duration_05": [145, 146, 147, 148, 149, 150, 151, 152, 153, 154], "03___NUMERIC___Informational_Duration_06": [155, 156, 157, 158, 159, 160, 161, 162, 163, 164], "03___NUMERIC___Informational_Duration_07": [165, 166, 167, 168, 169, 170, 171, 172, 173, 174], "03___NUMERIC___Informational_Duration_08": [175, 176, 177, 178, 179, 180, 181, 182, 183], "04___NUMERIC___ProductRelated_00": [184, 185, 186, 187, 188, 189, 190], "04___NUMERIC___ProductRelated_01": [191, 192, 193, 194, 195, 196, 197, 198, 199, 200], "04___NUMERIC___ProductRelated_02": [201, 202, 203, 204, 205, 206, 207, 208, 209, 210], "05___NUMERIC___ProductRelated_Duration_00": [211, 212, 213, 214], "05___NUMERIC___ProductRelated_Duration_01": [215, 216, 217, 218, 219, 220, 221, 222, 223, 224], "05___NUMERIC___ProductRelated_Duration_02": [225, 226, 227, 228, 229, 230, 231, 232, 233, 234], "05___NUMERIC___ProductRelated_Duration_03": [235, 236, 237, 238, 239, 240, 241, 242, 243, 244], "05___NUMERIC___ProductRelated_Duration_04": [245, 246, 247, 248, 249, 250, 251, 252, 253, 254], "05___NUMERIC___ProductRelated_Duration_05": [255], "05___NUMERIC___ProductRelated_Duration_06": [256, 257, 258, 259, 260, 261, 262, 263, 264, 265], "05___NUMERIC___ProductRelated_Duration_07": [266, 267, 268, 269, 270, 271, 272, 273, 274, 275], "05___NUMERIC___ProductRelated_Duration_08": [276, 277, 278, 279, 280, 281, 282, 283, 284, 285], "05___NUMERIC___ProductRelated_Duration_09": [286, 287, 288, 289, 290, 291, 292, 293, 294, 295], "06___NUMERIC___BounceRates_00": [296], "06___NUMERIC___BounceRates_01": [297], "06___NUMERIC___BounceRates_02": [298, 299, 300], "06___NUMERIC___BounceRates_03": [301, 302, 303, 304, 305, 306, 307, 308, 309, 310], "06___NUMERIC___BounceRates_04": [311, 312, 313, 314, 315, 316, 317, 318, 319, 320], "06___NUMERIC___BounceRates_05": [321, 322, 323, 324, 325, 326, 327, 328, 329, 330], "07___NUMERIC___ExitRates_00": [331], "07___NUMERIC___ExitRates_01": [332], "07___NUMERIC___ExitRates_02": [333, 334, 335], "07___NUMERIC___ExitRates_03": [336, 337, 338, 339, 340, 341, 342, 343, 344, 345], "07___NUMERIC___ExitRates_04": [346, 347, 348, 349, 350, 351, 352, 353, 354, 355], "07___NUMERIC___ExitRates_05": [356, 357, 358, 359, 360, 361, 362, 363, 364, 365], "08___NUMERIC___PageValues_00": [366, 367, 368, 369], "08___NUMERIC___PageValues_01": [370, 371, 372, 373, 374, 375, 376, 377, 378, 379], "08___NUMERIC___PageValues_02": [380, 381, 382, 383, 384, 385, 386, 387, 388, 389], "08___NUMERIC___PageValues_03": [390], "08___NUMERIC___PageValues_04": [391, 392, 393, 394, 395, 396, 397, 398, 399, 400], "08___NUMERIC___PageValues_05": [401, 402, 403, 404, 405, 406, 407, 408, 409, 410], "08___NUMERIC___PageValues_06": [411, 412, 413, 414, 415, 416, 417, 418, 419, 420], "08___NUMERIC___PageValues_07": [421, 422, 423, 424, 425, 426, 427, 428, 429, 430], "09___NUMERIC___SpecialDay_00": [431, 432], "09___NUMERIC___SpecialDay_01": [433], "09___NUMERIC___SpecialDay_02": [434, 435, 436, 437, 438], "10___CATEGORICAL___Month": [439, 440, 441, 442, 443, 444, 445, 446, 447, 448], "11___NUMERIC___OperatingSystems_00": [449, 450, 451, 452, 453, 454, 455, 456], "12___NUMERIC___Browser_00": [457, 458], "12___NUMERIC___Browser_01": [459, 460, 461, 462, 463, 464, 465, 466, 467, 468], "13___NUMERIC___Region_00": [469, 470, 471, 472, 473, 474, 475, 476, 477], "14___NUMERIC___TrafficType_00": [478, 479, 480], "14___NUMERIC___TrafficType_01": [481, 482, 483, 484, 485, 486, 487, 488, 489, 490], "15___CATEGORICAL___VisitorType": [491, 492, 493], "16___CATEGORICAL___Weekend": [494, 495], "17___CATEGORICAL___Revenue": [496, 497]}}, "tabular_max_length": 70, "relational_max_length": null, "tabular_col_size": 9864, "relational_col_size": null, "col_transform_data": {"Administrative": {"max_len": 10, "numeric_precision": 4, "mx_sig": -1, "zfill": 2, "numeric_nparts": 1}, "Administrative_Duration": {"max_len": 10, "numeric_precision": 4, "mx_sig": 4, "ljust": 9, "numeric_nparts": 1}, "Informational": {"max_len": 10, "numeric_precision": 4, "mx_sig": -1, "zfill": 2, "numeric_nparts": 1}, "Informational_Duration": {"max_len": 10, "numeric_precision": 4, "mx_sig": 4, "ljust": 9, "numeric_nparts": 1}, "ProductRelated": {"max_len": 10, "numeric_precision": 4, "mx_sig": -1, "zfill": 3, "numeric_nparts": 1}, "ProductRelated_Duration": {"max_len": 10, "numeric_precision": 4, "mx_sig": 5, "ljust": 10, "numeric_nparts": 1}, "BounceRates": {"max_len": 10, "numeric_precision": 4, "mx_sig": 1, "ljust": 6, "numeric_nparts": 1}, "ExitRates": {"max_len": 10, "numeric_precision": 4, "mx_sig": 1, "ljust": 6, "numeric_nparts": 1}, "PageValues": {"max_len": 10, "numeric_precision": 4, "mx_sig": 3, "ljust": 8, "numeric_nparts": 1}, "SpecialDay": {"max_len": 10, "numeric_precision": 4, "mx_sig": 1, "ljust": 3, "numeric_nparts": 1}, "OperatingSystems": {"max_len": 10, "numeric_precision": 4, "mx_sig": -1, "zfill": 1, "numeric_nparts": 1}, "Browser": {"max_len": 10, "numeric_precision": 4, "mx_sig": -1, "zfill": 2, "numeric_nparts": 1}, "Region": {"max_len": 10, "numeric_precision": 4, "mx_sig": -1, "zfill": 1, "numeric_nparts": 1}, "TrafficType": {"max_len": 10, "numeric_precision": 4, "mx_sig": -1, "zfill": 2, "numeric_nparts": 1}}, "in_col_transform_data": null, "col_idx_ids": {"0": [11, 12, 13], "1": [14, 15, 16, 17, 18, 19, 20, 21, 22, 23], "2": [24, 25, 26], "3": [27, 28, 29, 30, 31, 32, 33, 34, 35, 36], "4": [37, 38, 39, 40, 41, 42, 43, 44, 45, 46], "5": [47, 48, 49, 50, 51, 52, 53, 54, 55, 56], "6": [57], "7": [58, 59, 60, 61, 62, 63, 64, 65, 66, 67], "8": [68, 69, 70, 71, 72, 73, 74, 75, 76, 77], "9": [78, 79, 80, 81, 82, 83, 84, 85, 86, 87], "10": [88, 89, 90, 91, 92, 93, 94, 95, 96, 97], "11": [98, 99, 100], "12": [101, 102, 103, 104, 105, 106, 107, 108, 109, 110], "13": [111, 112, 113], "14": [114, 115, 116, 117, 118, 119, 120, 121, 122, 123], "15": [124, 125, 126, 127, 128, 129, 130, 131, 132, 133], "16": [134, 135, 136, 137, 138, 139, 140, 141, 142, 143], "17": [144], "18": [145, 146, 147, 148, 149, 150, 151, 152, 153, 154], "19": [155, 156, 157, 158, 159, 160, 161, 162, 163, 164], "20": [165, 166, 167, 168, 169, 170, 171, 172, 173, 174], "21": [175, 176, 177, 178, 179, 180, 181, 182, 183], "22": [184, 185, 186, 187, 188, 189, 190], "23": [191, 192, 193, 194, 195, 196, 197, 198, 199, 200], "24": [201, 202, 203, 204, 205, 206, 207, 208, 209, 210], "25": [211, 212, 213, 214], "26": [215, 216, 217, 218, 219, 220, 221, 222, 223, 224], "27": [225, 226, 227, 228, 229, 230, 231, 232, 233, 234], "28": [235, 236, 237, 238, 239, 240, 241, 242, 243, 244], "29": [245, 246, 247, 248, 249, 250, 251, 252, 253, 254], "30": [255], "31": [256, 257, 258, 259, 260, 261, 262, 263, 264, 265], "32": [266, 267, 268, 269, 270, 271, 272, 273, 274, 275], "33": [276, 277, 278, 279, 280, 281, 282, 283, 284, 285], "34": [286, 287, 288, 289, 290, 291, 292, 293, 294, 295], "35": [296], "36": [297], "37": [298, 299, 300], "38": [301, 302, 303, 304, 305, 306, 307, 308, 309, 310], "39": [311, 312, 313, 314, 315, 316, 317, 318, 319, 320], "40": [321, 322, 323, 324, 325, 326, 327, 328, 329, 330], "41": [331], "42": [332], "43": [333, 334, 335], "44": [336, 337, 338, 339, 340, 341, 342, 343, 344, 345], "45": [346, 347, 348, 349, 350, 351, 352, 353, 354, 355], "46": [356, 357, 358, 359, 360, 361, 362, 363, 364, 365], "47": [366, 367, 368, 369], "48": [370, 371, 372, 373, 374, 375, 376, 377, 378, 379], "49": [380, 381, 382, 383, 384, 385, 386, 387, 388, 389], "50": [390], "51": [391, 392, 393, 394, 395, 396, 397, 398, 399, 400], "52": [401, 402, 403, 404, 405, 406, 407, 408, 409, 410], "53": [411, 412, 413, 414, 415, 416, 417, 418, 419, 420], "54": [421, 422, 423, 424, 425, 426, 427, 428, 429, 430], "55": [431, 432], "56": [433], "57": [434, 435, 436, 437, 438], "58": [439, 440, 441, 442, 443, 444, 445, 446, 447, 448], "59": [449, 450, 451, 452, 453, 454, 455, 456], "60": [457, 458], "61": [459, 460, 461, 462, 463, 464, 465, 466, 467, 468], "62": [469, 470, 471, 472, 473, 474, 475, 476, 477], "63": [478, 479, 480], "64": [481, 482, 483, 484, 485, 486, 487, 488, 489, 490], "65": [491, 492, 493], "66": [494, 495], "67": [496, 497]}, "random_state": 1029, "numeric_nparts": 1, "numeric_precision": 4, "numeric_max_len": 10, "experiment_id": "id000017774209869356351488", "trainer_state": null, "target_col": null, "realtabformer_version": "0.2.4"} \ No newline at end of file diff --git a/timecost/m6/realtabformer/rtf-m6-20260429_070344/models_100epochs/id000017774209869356351488/rtf_model.pt b/timecost/m6/realtabformer/rtf-m6-20260429_070344/models_100epochs/id000017774209869356351488/rtf_model.pt new file mode 100644 index 0000000000000000000000000000000000000000..745c41081f5897b737303bcee22acd2b0f280f6a --- /dev/null +++ b/timecost/m6/realtabformer/rtf-m6-20260429_070344/models_100epochs/id000017774209869356351488/rtf_model.pt @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:3cac5ae76266c666cbcc115c84c4af1b05938efcb37c8ad5f618f032e5bb9f8b +size 174819811 diff --git a/timecost/m6/realtabformer/rtf-m6-20260429_070344/public_gate/normalized_schema_snapshot.json b/timecost/m6/realtabformer/rtf-m6-20260429_070344/public_gate/normalized_schema_snapshot.json new file mode 100644 index 0000000000000000000000000000000000000000..0d48abfe61f58323fd4a425d175b354d51045ae1 --- /dev/null +++ b/timecost/m6/realtabformer/rtf-m6-20260429_070344/public_gate/normalized_schema_snapshot.json @@ -0,0 +1,377 @@ +{ + "dataset_id": "m6", + "target_column": "VisitorType", + "task_type": "classification", + "columns": [ + { + "name": "Administrative", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 26, + "unique_ratio": 0.002636, + "example_values": [ + "0", + "3", + "2", + "6", + "1" + ] + } + }, + { + "name": "Administrative_Duration", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 2789, + "unique_ratio": 0.282745, + "example_values": [ + "0", + "45.8", + "77.7", + "52", + "46.33333333" + ] + } + }, + { + "name": "Informational", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 17, + "unique_ratio": 0.001723, + "example_values": [ + "0", + "1", + "3", + "5", + "4" + ] + } + }, + { + "name": "Informational_Duration", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 1074, + "unique_ratio": 0.108881, + "example_values": [ + "0", + "2", + "24", + "86.75", + "62.5" + ] + } + }, + { + "name": "ProductRelated", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 286, + "unique_ratio": 0.028994, + "example_values": [ + "13", + "8", + "63", + "15", + "3" + ] + } + }, + { + "name": "ProductRelated_Duration", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 7769, + "unique_ratio": 0.787612, + "example_values": [ + "549.2", + "64", + "2435.697531", + "267.7333333", + "57.4" + ] + } + }, + { + "name": "BounceRates", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 1574, + "unique_ratio": 0.15957, + "example_values": [ + "0.019230769", + "0", + "0.00952381", + "0.022857143", + "0.004166667" + ] + } + }, + { + "name": "ExitRates", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 3953, + "unique_ratio": 0.40075, + "example_values": [ + "0.045421245", + "0.05", + "0.017460317", + "0.040606061", + "0.133333333" + ] + } + }, + { + "name": "PageValues", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 2129, + "unique_ratio": 0.215835, + "example_values": [ + "0", + "7.945368291", + "10.37042373", + "18.99269231", + "44.33548922" + ] + } + }, + { + "name": "SpecialDay", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 6, + "unique_ratio": 0.000608, + "example_values": [ + "0", + "0.4", + "0.2", + "0.8", + "1" + ] + } + }, + { + "name": "Month", + "role": "feature", + "semantic_type": "categorical", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 10, + "unique_ratio": 0.001014, + "example_values": [ + "Nov", + "Dec", + "Jul", + "Aug", + "Mar" + ] + } + }, + { + "name": "OperatingSystems", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 8, + "unique_ratio": 0.000811, + "example_values": [ + "3", + "2", + "6", + "4", + "1" + ] + } + }, + { + "name": "Browser", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 13, + "unique_ratio": 0.001318, + "example_values": [ + "2", + "1", + "5", + "4", + "3" + ] + } + }, + { + "name": "Region", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 9, + "unique_ratio": 0.000912, + "example_values": [ + "6", + "3", + "4", + "1", + "9" + ] + } + }, + { + "name": "TrafficType", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 20, + "unique_ratio": 0.002028, + "example_values": [ + "2", + "8", + "3", + "11", + "1" + ] + } + }, + { + "name": "VisitorType", + "role": "target", + "semantic_type": "categorical", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 3, + "unique_ratio": 0.000304, + "example_values": [ + "Returning_Visitor", + "New_Visitor", + "Other" + ] + } + }, + { + "name": "Weekend", + "role": "feature", + "semantic_type": "boolean", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 2, + "unique_ratio": 0.000203, + "example_values": [ + "FALSE", + "TRUE" + ] + } + }, + { + "name": "Revenue", + "role": "feature", + "semantic_type": "boolean", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 2, + "unique_ratio": 0.000203, + "example_values": [ + "FALSE", + "TRUE" + ] + } + } + ] +} \ No newline at end of file diff --git a/timecost/m6/realtabformer/rtf-m6-20260429_070344/public_gate/public_gate_report.json b/timecost/m6/realtabformer/rtf-m6-20260429_070344/public_gate/public_gate_report.json new file mode 100644 index 0000000000000000000000000000000000000000..99a260799c8356f445bdc0b33ccce8b459ba1938 --- /dev/null +++ b/timecost/m6/realtabformer/rtf-m6-20260429_070344/public_gate/public_gate_report.json @@ -0,0 +1,37 @@ +{ + "dataset_id": "m6", + "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": "VisitorType", + "task_type": "classification", + "input_splits": { + "train": "/data/jialinzhang/SynthesizePipeline-server/DatasetNew/m6/m6-train.csv", + "val": "/data/jialinzhang/SynthesizePipeline-server/DatasetNew/m6/m6-val.csv", + "test": "/data/jialinzhang/SynthesizePipeline-server/DatasetNew/m6/m6-test.csv" + } +} \ No newline at end of file diff --git a/timecost/m6/realtabformer/rtf-m6-20260429_070344/public_gate/staged_input_manifest.json b/timecost/m6/realtabformer/rtf-m6-20260429_070344/public_gate/staged_input_manifest.json new file mode 100644 index 0000000000000000000000000000000000000000..95e679bdc2c726d4c9908bc27c629a8dfa1c1537 --- /dev/null +++ b/timecost/m6/realtabformer/rtf-m6-20260429_070344/public_gate/staged_input_manifest.json @@ -0,0 +1,382 @@ +{ + "dataset_id": "m6", + "target_column": "VisitorType", + "task_type": "classification", + "train_csv": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/m6/realtabformer/rtf-m6-20260429_070344/staged/public/train.csv", + "val_csv": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/m6/realtabformer/rtf-m6-20260429_070344/staged/public/val.csv", + "test_csv": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/m6/realtabformer/rtf-m6-20260429_070344/staged/public/test.csv", + "features_json": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/m6/realtabformer/rtf-m6-20260429_070344/staged/public/staged_features.json", + "public_gate_report": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/m6/realtabformer/rtf-m6-20260429_070344/public_gate/public_gate_report.json", + "column_schema": [ + { + "name": "Administrative", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 26, + "unique_ratio": 0.002636, + "example_values": [ + "0", + "3", + "2", + "6", + "1" + ] + } + }, + { + "name": "Administrative_Duration", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 2789, + "unique_ratio": 0.282745, + "example_values": [ + "0", + "45.8", + "77.7", + "52", + "46.33333333" + ] + } + }, + { + "name": "Informational", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 17, + "unique_ratio": 0.001723, + "example_values": [ + "0", + "1", + "3", + "5", + "4" + ] + } + }, + { + "name": "Informational_Duration", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 1074, + "unique_ratio": 0.108881, + "example_values": [ + "0", + "2", + "24", + "86.75", + "62.5" + ] + } + }, + { + "name": "ProductRelated", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 286, + "unique_ratio": 0.028994, + "example_values": [ + "13", + "8", + "63", + "15", + "3" + ] + } + }, + { + "name": "ProductRelated_Duration", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 7769, + "unique_ratio": 0.787612, + "example_values": [ + "549.2", + "64", + "2435.697531", + "267.7333333", + "57.4" + ] + } + }, + { + "name": "BounceRates", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 1574, + "unique_ratio": 0.15957, + "example_values": [ + "0.019230769", + "0", + "0.00952381", + "0.022857143", + "0.004166667" + ] + } + }, + { + "name": "ExitRates", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 3953, + "unique_ratio": 0.40075, + "example_values": [ + "0.045421245", + "0.05", + "0.017460317", + "0.040606061", + "0.133333333" + ] + } + }, + { + "name": "PageValues", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 2129, + "unique_ratio": 0.215835, + "example_values": [ + "0", + "7.945368291", + "10.37042373", + "18.99269231", + "44.33548922" + ] + } + }, + { + "name": "SpecialDay", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 6, + "unique_ratio": 0.000608, + "example_values": [ + "0", + "0.4", + "0.2", + "0.8", + "1" + ] + } + }, + { + "name": "Month", + "role": "feature", + "semantic_type": "categorical", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 10, + "unique_ratio": 0.001014, + "example_values": [ + "Nov", + "Dec", + "Jul", + "Aug", + "Mar" + ] + } + }, + { + "name": "OperatingSystems", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 8, + "unique_ratio": 0.000811, + "example_values": [ + "3", + "2", + "6", + "4", + "1" + ] + } + }, + { + "name": "Browser", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 13, + "unique_ratio": 0.001318, + "example_values": [ + "2", + "1", + "5", + "4", + "3" + ] + } + }, + { + "name": "Region", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 9, + "unique_ratio": 0.000912, + "example_values": [ + "6", + "3", + "4", + "1", + "9" + ] + } + }, + { + "name": "TrafficType", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 20, + "unique_ratio": 0.002028, + "example_values": [ + "2", + "8", + "3", + "11", + "1" + ] + } + }, + { + "name": "VisitorType", + "role": "target", + "semantic_type": "categorical", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 3, + "unique_ratio": 0.000304, + "example_values": [ + "Returning_Visitor", + "New_Visitor", + "Other" + ] + } + }, + { + "name": "Weekend", + "role": "feature", + "semantic_type": "boolean", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 2, + "unique_ratio": 0.000203, + "example_values": [ + "FALSE", + "TRUE" + ] + } + }, + { + "name": "Revenue", + "role": "feature", + "semantic_type": "boolean", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 2, + "unique_ratio": 0.000203, + "example_values": [ + "FALSE", + "TRUE" + ] + } + } + ] +} \ No newline at end of file diff --git a/timecost/m6/realtabformer/rtf-m6-20260429_070344/realtabformer_features.json b/timecost/m6/realtabformer/rtf-m6-20260429_070344/realtabformer_features.json new file mode 100644 index 0000000000000000000000000000000000000000..49b25bd1347f910a2b95ef0c137d1a64bf69e0cb --- /dev/null +++ b/timecost/m6/realtabformer/rtf-m6-20260429_070344/realtabformer_features.json @@ -0,0 +1,92 @@ +[ + { + "feature_name": "Administrative", + "data_type": "continuous", + "is_target": false + }, + { + "feature_name": "Administrative_Duration", + "data_type": "continuous", + "is_target": false + }, + { + "feature_name": "Informational", + "data_type": "continuous", + "is_target": false + }, + { + "feature_name": "Informational_Duration", + "data_type": "continuous", + "is_target": false + }, + { + "feature_name": "ProductRelated", + "data_type": "continuous", + "is_target": false + }, + { + "feature_name": "ProductRelated_Duration", + "data_type": "continuous", + "is_target": false + }, + { + "feature_name": "BounceRates", + "data_type": "continuous", + "is_target": false + }, + { + "feature_name": "ExitRates", + "data_type": "continuous", + "is_target": false + }, + { + "feature_name": "PageValues", + "data_type": "continuous", + "is_target": false + }, + { + "feature_name": "SpecialDay", + "data_type": "continuous", + "is_target": false + }, + { + "feature_name": "Month", + "data_type": "categorical", + "is_target": false + }, + { + "feature_name": "OperatingSystems", + "data_type": "continuous", + "is_target": false + }, + { + "feature_name": "Browser", + "data_type": "continuous", + "is_target": false + }, + { + "feature_name": "Region", + "data_type": "continuous", + "is_target": false + }, + { + "feature_name": "TrafficType", + "data_type": "continuous", + "is_target": false + }, + { + "feature_name": "VisitorType", + "data_type": "categorical", + "is_target": true + }, + { + "feature_name": "Weekend", + "data_type": "binary", + "is_target": false + }, + { + "feature_name": "Revenue", + "data_type": "binary", + "is_target": false + } +] \ No newline at end of file diff --git a/timecost/m6/realtabformer/rtf-m6-20260429_070344/rtf-m6-9864-20260429_080310.csv b/timecost/m6/realtabformer/rtf-m6-20260429_070344/rtf-m6-9864-20260429_080310.csv new file mode 100644 index 0000000000000000000000000000000000000000..ded4b1988c798fd760614effb96ff71505296917 --- /dev/null +++ b/timecost/m6/realtabformer/rtf-m6-20260429_070344/rtf-m6-9864-20260429_080310.csv @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:066e7788e27d90ad45a56d41cf0507f6cdaf7a07dece19ba8c8b6e1ce447222c +size 836645 diff --git a/timecost/m6/realtabformer/rtf-m6-20260429_070344/rtf_checkpoints/checkpoint-30500/config.json b/timecost/m6/realtabformer/rtf-m6-20260429_070344/rtf_checkpoints/checkpoint-30500/config.json new file mode 100644 index 0000000000000000000000000000000000000000..5794e9cc1aa00a0ff98ed7967c3c2d9142841a1c --- /dev/null +++ b/timecost/m6/realtabformer/rtf-m6-20260429_070344/rtf_checkpoints/checkpoint-30500/config.json @@ -0,0 +1,34 @@ +{ + "activation_function": "gelu_new", + "add_cross_attention": false, + "architectures": [ + "GPT2LMHeadModel" + ], + "attn_pdrop": 0.1, + "bos_token_id": 5, + "dtype": "float32", + "embd_pdrop": 0.1, + "eos_token_id": 6, + "initializer_range": 0.02, + "layer_norm_epsilon": 1e-05, + "model_type": "gpt2", + "n_embd": 768, + "n_head": 12, + "n_inner": null, + "n_layer": 6, + "n_positions": 1024, + "pad_token_id": null, + "reorder_and_upcast_attn": false, + "resid_pdrop": 0.1, + "scale_attn_by_inverse_layer_idx": false, + "scale_attn_weights": true, + "summary_activation": null, + "summary_first_dropout": 0.1, + "summary_proj_to_labels": true, + "summary_type": "cls_index", + "summary_use_proj": true, + "tie_word_embeddings": true, + "transformers_version": "5.5.3", + "use_cache": false, + "vocab_size": 498 +} diff --git a/timecost/m6/realtabformer/rtf-m6-20260429_070344/rtf_checkpoints/checkpoint-30500/generation_config.json b/timecost/m6/realtabformer/rtf-m6-20260429_070344/rtf_checkpoints/checkpoint-30500/generation_config.json new file mode 100644 index 0000000000000000000000000000000000000000..ffe89567780e75b5c22eade9be971483b9618f39 --- /dev/null +++ b/timecost/m6/realtabformer/rtf-m6-20260429_070344/rtf_checkpoints/checkpoint-30500/generation_config.json @@ -0,0 +1,9 @@ +{ + "_from_model_config": true, + "bos_token_id": 5, + "eos_token_id": 6, + "output_attentions": false, + "output_hidden_states": false, + "transformers_version": "5.5.3", + "use_cache": true +} diff --git a/timecost/m6/realtabformer/rtf-m6-20260429_070344/rtf_checkpoints/checkpoint-30500/model.safetensors b/timecost/m6/realtabformer/rtf-m6-20260429_070344/rtf_checkpoints/checkpoint-30500/model.safetensors new file mode 100644 index 0000000000000000000000000000000000000000..d927d6dac000068ceffc5f41283fbc452fe9c289 --- /dev/null +++ b/timecost/m6/realtabformer/rtf-m6-20260429_070344/rtf_checkpoints/checkpoint-30500/model.safetensors @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:cca7e3b67710e157b5e3275006a715fcf51855cc9b2b592f7ebe29e175cee3f6 +size 174798280 diff --git a/timecost/m6/realtabformer/rtf-m6-20260429_070344/rtf_checkpoints/checkpoint-30500/optimizer.pt b/timecost/m6/realtabformer/rtf-m6-20260429_070344/rtf_checkpoints/checkpoint-30500/optimizer.pt new file mode 100644 index 0000000000000000000000000000000000000000..3f1cadc9fd6a61916abc20b1e664c761a17cdd18 --- /dev/null +++ b/timecost/m6/realtabformer/rtf-m6-20260429_070344/rtf_checkpoints/checkpoint-30500/optimizer.pt @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:15f054216e1d8031944e229fabad0e404dda6670d9bc029efe6cf159d3d9c6ba +size 349645643 diff --git a/timecost/m6/realtabformer/rtf-m6-20260429_070344/rtf_checkpoints/checkpoint-30500/rng_state.pth b/timecost/m6/realtabformer/rtf-m6-20260429_070344/rtf_checkpoints/checkpoint-30500/rng_state.pth new file mode 100644 index 0000000000000000000000000000000000000000..cf01c81842edd5b9439f49d78571f43bcc6e08a3 --- /dev/null +++ b/timecost/m6/realtabformer/rtf-m6-20260429_070344/rtf_checkpoints/checkpoint-30500/rng_state.pth @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:8f1f94e0d5d4fac759f7777f174332532aa1a8896e7b842506b7f2847c906fe2 +size 14645 diff --git a/timecost/m6/realtabformer/rtf-m6-20260429_070344/rtf_checkpoints/checkpoint-30500/scaler.pt b/timecost/m6/realtabformer/rtf-m6-20260429_070344/rtf_checkpoints/checkpoint-30500/scaler.pt new file mode 100644 index 0000000000000000000000000000000000000000..fcb418f4714fd0d45ca239372b543f731e17725f --- /dev/null +++ b/timecost/m6/realtabformer/rtf-m6-20260429_070344/rtf_checkpoints/checkpoint-30500/scaler.pt @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:b99fd581d3aea0d14b84c27112b7cdc6351d1892e867cd727f18f67e45e753a7 +size 1383 diff --git a/timecost/m6/realtabformer/rtf-m6-20260429_070344/rtf_checkpoints/checkpoint-30500/scheduler.pt b/timecost/m6/realtabformer/rtf-m6-20260429_070344/rtf_checkpoints/checkpoint-30500/scheduler.pt new file mode 100644 index 0000000000000000000000000000000000000000..99a8ae38ebfb5fbbcd96edb79b91a4542cc10290 --- /dev/null +++ b/timecost/m6/realtabformer/rtf-m6-20260429_070344/rtf_checkpoints/checkpoint-30500/scheduler.pt @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:5c19c7d8cd6f804dded35e4b0b2192d2b101e4538f7d2d335c047dc868cd2b0b +size 1465 diff --git a/timecost/m6/realtabformer/rtf-m6-20260429_070344/rtf_checkpoints/checkpoint-30500/trainer_state.json b/timecost/m6/realtabformer/rtf-m6-20260429_070344/rtf_checkpoints/checkpoint-30500/trainer_state.json new file mode 100644 index 0000000000000000000000000000000000000000..871feeafb5ae04a928f663b9f09ec8bf26e1a881 --- /dev/null +++ b/timecost/m6/realtabformer/rtf-m6-20260429_070344/rtf_checkpoints/checkpoint-30500/trainer_state.json @@ -0,0 +1,2169 @@ +{ + "best_global_step": null, + "best_metric": null, + "best_model_checkpoint": null, + "epoch": 98.70721816707218, + "eval_steps": 100, + "global_step": 30500, + "is_hyper_param_search": false, + "is_local_process_zero": true, + "is_world_process_zero": true, + "log_history": [ + { + "epoch": 0.32441200324412, + "grad_norm": 0.20164933800697327, + "learning_rate": 4.983980582524272e-05, + "loss": 1.5922834777832031, + "step": 100 + }, + { + "epoch": 0.64882400648824, + "grad_norm": 0.18370771408081055, + "learning_rate": 4.967799352750809e-05, + "loss": 0.8226632690429687, + "step": 200 + }, + { + "epoch": 0.9732360097323601, + "grad_norm": 0.17879560589790344, + "learning_rate": 4.951618122977347e-05, + "loss": 0.7554012298583984, + "step": 300 + }, + { + "epoch": 1.2952149229521492, + "grad_norm": 0.14063459634780884, + "learning_rate": 4.935436893203884e-05, + "loss": 0.7157672882080078, + "step": 400 + }, + { + "epoch": 1.6196269261962692, + "grad_norm": 0.14949747920036316, + "learning_rate": 4.919255663430421e-05, + "loss": 0.7098747253417969, + "step": 500 + }, + { + "epoch": 1.9440389294403893, + "grad_norm": 0.1495194435119629, + "learning_rate": 4.9030744336569583e-05, + "loss": 0.6998626708984375, + "step": 600 + }, + { + "epoch": 2.2660178426601782, + "grad_norm": 0.1467229574918747, + "learning_rate": 4.886893203883495e-05, + "loss": 0.6833465576171875, + "step": 700 + }, + { + "epoch": 2.5904298459042985, + "grad_norm": 0.1609153300523758, + "learning_rate": 4.870711974110033e-05, + "loss": 0.6878270721435547, + "step": 800 + }, + { + "epoch": 2.9148418491484183, + "grad_norm": 0.13326895236968994, + "learning_rate": 4.85453074433657e-05, + "loss": 0.6762329864501954, + "step": 900 + }, + { + "epoch": 3.2368207623682075, + "grad_norm": 0.14083443582057953, + "learning_rate": 4.838349514563107e-05, + "loss": 0.6711769866943359, + "step": 1000 + }, + { + "epoch": 3.5612327656123277, + "grad_norm": 0.13646796345710754, + "learning_rate": 4.822168284789644e-05, + "loss": 0.6645689392089844, + "step": 1100 + }, + { + "epoch": 3.885644768856448, + "grad_norm": 0.13673610985279083, + "learning_rate": 4.805987055016181e-05, + "loss": 0.6698095703125, + "step": 1200 + }, + { + "epoch": 4.207623682076237, + "grad_norm": 0.12795455753803253, + "learning_rate": 4.789805825242719e-05, + "loss": 0.6573734283447266, + "step": 1300 + }, + { + "epoch": 4.5320356853203565, + "grad_norm": 0.12952066957950592, + "learning_rate": 4.773624595469256e-05, + "loss": 0.6638764190673828, + "step": 1400 + }, + { + "epoch": 4.856447688564477, + "grad_norm": 0.1414010375738144, + "learning_rate": 4.757443365695793e-05, + "loss": 0.6583383178710938, + "step": 1500 + }, + { + "epoch": 5.178426601784266, + "grad_norm": 0.14432589709758759, + "learning_rate": 4.74126213592233e-05, + "loss": 0.6485870361328125, + "step": 1600 + }, + { + "epoch": 5.502838605028386, + "grad_norm": 0.1340341866016388, + "learning_rate": 4.725080906148868e-05, + "loss": 0.6541815948486328, + "step": 1700 + }, + { + "epoch": 5.827250608272506, + "grad_norm": 0.1309279352426529, + "learning_rate": 4.708899676375405e-05, + "loss": 0.6557488250732422, + "step": 1800 + }, + { + "epoch": 6.149229521492296, + "grad_norm": 0.1259990930557251, + "learning_rate": 4.692718446601942e-05, + "loss": 0.639359245300293, + "step": 1900 + }, + { + "epoch": 6.473641524736415, + "grad_norm": 0.13993705809116364, + "learning_rate": 4.6765372168284794e-05, + "loss": 0.6472817230224609, + "step": 2000 + }, + { + "epoch": 6.798053527980535, + "grad_norm": 0.12632109224796295, + "learning_rate": 4.660355987055016e-05, + "loss": 0.6512689971923828, + "step": 2100 + }, + { + "epoch": 7.120032441200324, + "grad_norm": 0.12884259223937988, + "learning_rate": 4.644174757281554e-05, + "loss": 0.6424983978271485, + "step": 2200 + }, + { + "epoch": 7.444444444444445, + "grad_norm": 0.13162656128406525, + "learning_rate": 4.627993527508091e-05, + "loss": 0.6413846588134766, + "step": 2300 + }, + { + "epoch": 7.768856447688565, + "grad_norm": 0.1305171549320221, + "learning_rate": 4.611812297734628e-05, + "loss": 0.6504198455810547, + "step": 2400 + }, + { + "epoch": 8.090835360908354, + "grad_norm": 0.12320607155561447, + "learning_rate": 4.5956310679611654e-05, + "loss": 0.6361569213867188, + "step": 2500 + }, + { + "epoch": 8.415247364152474, + "grad_norm": 0.1263129562139511, + "learning_rate": 4.579449838187703e-05, + "loss": 0.6391400527954102, + "step": 2600 + }, + { + "epoch": 8.739659367396595, + "grad_norm": 0.14339180290699005, + "learning_rate": 4.563268608414239e-05, + "loss": 0.643778076171875, + "step": 2700 + }, + { + "epoch": 9.061638280616382, + "grad_norm": 0.13703292608261108, + "learning_rate": 4.547087378640777e-05, + "loss": 0.63127685546875, + "step": 2800 + }, + { + "epoch": 9.386050283860502, + "grad_norm": 0.12888263165950775, + "learning_rate": 4.5309061488673144e-05, + "loss": 0.636928939819336, + "step": 2900 + }, + { + "epoch": 9.710462287104622, + "grad_norm": 0.1290873885154724, + "learning_rate": 4.5147249190938514e-05, + "loss": 0.6323677444458008, + "step": 3000 + }, + { + "epoch": 10.032441200324412, + "grad_norm": 0.13526120781898499, + "learning_rate": 4.498543689320388e-05, + "loss": 0.6302993392944336, + "step": 3100 + }, + { + "epoch": 10.356853203568532, + "grad_norm": 0.14485451579093933, + "learning_rate": 4.482362459546926e-05, + "loss": 0.6336409378051758, + "step": 3200 + }, + { + "epoch": 10.681265206812652, + "grad_norm": 0.12640801072120667, + "learning_rate": 4.466181229773463e-05, + "loss": 0.6236648178100586, + "step": 3300 + }, + { + "epoch": 11.003244120032441, + "grad_norm": 0.13860085606575012, + "learning_rate": 4.4500000000000004e-05, + "loss": 0.6343330383300781, + "step": 3400 + }, + { + "epoch": 11.327656123276562, + "grad_norm": 0.13636715710163116, + "learning_rate": 4.4338187702265373e-05, + "loss": 0.6203033447265625, + "step": 3500 + }, + { + "epoch": 11.652068126520682, + "grad_norm": 0.13047286868095398, + "learning_rate": 4.417637540453074e-05, + "loss": 0.6218357086181641, + "step": 3600 + }, + { + "epoch": 11.976480129764802, + "grad_norm": 0.13506969809532166, + "learning_rate": 4.401456310679612e-05, + "loss": 0.6350560760498047, + "step": 3700 + }, + { + "epoch": 12.298459042984591, + "grad_norm": 0.13476674258708954, + "learning_rate": 4.385275080906149e-05, + "loss": 0.6147463607788086, + "step": 3800 + }, + { + "epoch": 12.62287104622871, + "grad_norm": 0.12256718426942825, + "learning_rate": 4.3690938511326864e-05, + "loss": 0.624836196899414, + "step": 3900 + }, + { + "epoch": 12.94728304947283, + "grad_norm": 0.13317419588565826, + "learning_rate": 4.352912621359223e-05, + "loss": 0.628001823425293, + "step": 4000 + }, + { + "epoch": 13.26926196269262, + "grad_norm": 0.13066990673542023, + "learning_rate": 4.33673139158576e-05, + "loss": 0.609481315612793, + "step": 4100 + }, + { + "epoch": 13.59367396593674, + "grad_norm": 0.13055436313152313, + "learning_rate": 4.320550161812298e-05, + "loss": 0.6177150344848633, + "step": 4200 + }, + { + "epoch": 13.91808596918086, + "grad_norm": 0.13111238181591034, + "learning_rate": 4.3043689320388355e-05, + "loss": 0.6266952896118164, + "step": 4300 + }, + { + "epoch": 14.240064882400649, + "grad_norm": 0.14692434668540955, + "learning_rate": 4.2881877022653724e-05, + "loss": 0.6085420608520508, + "step": 4400 + }, + { + "epoch": 14.564476885644769, + "grad_norm": 0.1490693986415863, + "learning_rate": 4.272006472491909e-05, + "loss": 0.6127510833740234, + "step": 4500 + }, + { + "epoch": 14.88888888888889, + "grad_norm": 0.14273235201835632, + "learning_rate": 4.255825242718447e-05, + "loss": 0.6196828079223633, + "step": 4600 + }, + { + "epoch": 15.210867802108679, + "grad_norm": 0.1464281678199768, + "learning_rate": 4.239644012944984e-05, + "loss": 0.606991844177246, + "step": 4700 + }, + { + "epoch": 15.535279805352799, + "grad_norm": 0.15429367125034332, + "learning_rate": 4.2234627831715215e-05, + "loss": 0.6114653015136718, + "step": 4800 + }, + { + "epoch": 15.859691808596917, + "grad_norm": 0.1561301201581955, + "learning_rate": 4.2072815533980584e-05, + "loss": 0.6102643585205079, + "step": 4900 + }, + { + "epoch": 16.181670721816708, + "grad_norm": 0.14197590947151184, + "learning_rate": 4.191100323624595e-05, + "loss": 0.6006597900390624, + "step": 5000 + }, + { + "epoch": 16.50608272506083, + "grad_norm": 0.15073753893375397, + "learning_rate": 4.174919093851133e-05, + "loss": 0.6000652694702149, + "step": 5100 + }, + { + "epoch": 16.83049472830495, + "grad_norm": 0.1630340814590454, + "learning_rate": 4.1587378640776705e-05, + "loss": 0.601633186340332, + "step": 5200 + }, + { + "epoch": 17.152473641524736, + "grad_norm": 0.14281341433525085, + "learning_rate": 4.1425566343042074e-05, + "loss": 0.6040666580200196, + "step": 5300 + }, + { + "epoch": 17.476885644768856, + "grad_norm": 0.16090357303619385, + "learning_rate": 4.1263754045307444e-05, + "loss": 0.5960210800170899, + "step": 5400 + }, + { + "epoch": 17.801297648012977, + "grad_norm": 0.15764260292053223, + "learning_rate": 4.110194174757282e-05, + "loss": 0.6001902389526367, + "step": 5500 + }, + { + "epoch": 18.123276561232764, + "grad_norm": 0.17385198175907135, + "learning_rate": 4.094012944983819e-05, + "loss": 0.5886587142944336, + "step": 5600 + }, + { + "epoch": 18.447688564476884, + "grad_norm": 0.16908828914165497, + "learning_rate": 4.0778317152103565e-05, + "loss": 0.594392967224121, + "step": 5700 + }, + { + "epoch": 18.772100567721004, + "grad_norm": 0.16428205370903015, + "learning_rate": 4.0616504854368934e-05, + "loss": 0.589791030883789, + "step": 5800 + }, + { + "epoch": 19.094079480940795, + "grad_norm": 0.16796661913394928, + "learning_rate": 4.0454692556634304e-05, + "loss": 0.5915510559082031, + "step": 5900 + }, + { + "epoch": 19.418491484184916, + "grad_norm": 0.17108002305030823, + "learning_rate": 4.029288025889968e-05, + "loss": 0.5712713623046874, + "step": 6000 + }, + { + "epoch": 19.742903487429036, + "grad_norm": 0.17238284647464752, + "learning_rate": 4.0131067961165056e-05, + "loss": 0.5880846786499023, + "step": 6100 + }, + { + "epoch": 20.064882400648823, + "grad_norm": 0.16751733422279358, + "learning_rate": 3.9969255663430425e-05, + "loss": 0.5886093902587891, + "step": 6200 + }, + { + "epoch": 20.389294403892944, + "grad_norm": 0.17518126964569092, + "learning_rate": 3.9807443365695794e-05, + "loss": 0.5645963287353516, + "step": 6300 + }, + { + "epoch": 20.713706407137064, + "grad_norm": 0.19824537634849548, + "learning_rate": 3.9645631067961164e-05, + "loss": 0.5758349609375, + "step": 6400 + }, + { + "epoch": 21.035685320356855, + "grad_norm": 0.17580321431159973, + "learning_rate": 3.948381877022654e-05, + "loss": 0.580423698425293, + "step": 6500 + }, + { + "epoch": 21.360097323600975, + "grad_norm": 0.17921853065490723, + "learning_rate": 3.9322006472491916e-05, + "loss": 0.5611041641235351, + "step": 6600 + }, + { + "epoch": 21.68450932684509, + "grad_norm": 0.18941283226013184, + "learning_rate": 3.916019417475728e-05, + "loss": 0.5720311737060547, + "step": 6700 + }, + { + "epoch": 22.006488240064883, + "grad_norm": 0.18437007069587708, + "learning_rate": 3.8998381877022654e-05, + "loss": 0.563258171081543, + "step": 6800 + }, + { + "epoch": 22.330900243309003, + "grad_norm": 0.19815316796302795, + "learning_rate": 3.883656957928803e-05, + "loss": 0.5511487197875976, + "step": 6900 + }, + { + "epoch": 22.655312246553123, + "grad_norm": 0.20421746373176575, + "learning_rate": 3.86747572815534e-05, + "loss": 0.5592882537841797, + "step": 7000 + }, + { + "epoch": 22.979724249797243, + "grad_norm": 0.2145063877105713, + "learning_rate": 3.851294498381877e-05, + "loss": 0.5531240844726563, + "step": 7100 + }, + { + "epoch": 23.30170316301703, + "grad_norm": 0.2133578211069107, + "learning_rate": 3.8351132686084145e-05, + "loss": 0.5361775588989258, + "step": 7200 + }, + { + "epoch": 23.62611516626115, + "grad_norm": 0.21354049444198608, + "learning_rate": 3.8189320388349514e-05, + "loss": 0.5458520126342773, + "step": 7300 + }, + { + "epoch": 23.95052716950527, + "grad_norm": 0.20230478048324585, + "learning_rate": 3.802750809061489e-05, + "loss": 0.5508059692382813, + "step": 7400 + }, + { + "epoch": 24.272506082725062, + "grad_norm": 0.21077010035514832, + "learning_rate": 3.786569579288026e-05, + "loss": 0.5237713623046875, + "step": 7500 + }, + { + "epoch": 24.596918085969182, + "grad_norm": 0.22097694873809814, + "learning_rate": 3.770388349514563e-05, + "loss": 0.5358617782592774, + "step": 7600 + }, + { + "epoch": 24.9213300892133, + "grad_norm": 0.23570670187473297, + "learning_rate": 3.7542071197411005e-05, + "loss": 0.5347403717041016, + "step": 7700 + }, + { + "epoch": 25.24330900243309, + "grad_norm": 0.21193180978298187, + "learning_rate": 3.738025889967638e-05, + "loss": 0.5195016479492187, + "step": 7800 + }, + { + "epoch": 25.56772100567721, + "grad_norm": 0.24408023059368134, + "learning_rate": 3.721844660194175e-05, + "loss": 0.5128348922729492, + "step": 7900 + }, + { + "epoch": 25.89213300892133, + "grad_norm": 0.2301139086484909, + "learning_rate": 3.705663430420712e-05, + "loss": 0.5274497222900391, + "step": 8000 + }, + { + "epoch": 26.214111922141118, + "grad_norm": 0.23104797303676605, + "learning_rate": 3.6894822006472495e-05, + "loss": 0.5127175521850585, + "step": 8100 + }, + { + "epoch": 26.53852392538524, + "grad_norm": 0.25776928663253784, + "learning_rate": 3.6733009708737865e-05, + "loss": 0.5081464004516602, + "step": 8200 + }, + { + "epoch": 26.86293592862936, + "grad_norm": 0.23275628685951233, + "learning_rate": 3.657119741100324e-05, + "loss": 0.5066284942626953, + "step": 8300 + }, + { + "epoch": 27.18491484184915, + "grad_norm": 0.25895944237709045, + "learning_rate": 3.640938511326861e-05, + "loss": 0.4974431228637695, + "step": 8400 + }, + { + "epoch": 27.50932684509327, + "grad_norm": 0.2517513632774353, + "learning_rate": 3.624757281553398e-05, + "loss": 0.49229534149169923, + "step": 8500 + }, + { + "epoch": 27.83373884833739, + "grad_norm": 0.27210375666618347, + "learning_rate": 3.6085760517799355e-05, + "loss": 0.49578163146972654, + "step": 8600 + }, + { + "epoch": 28.155717761557177, + "grad_norm": 0.27576959133148193, + "learning_rate": 3.592394822006473e-05, + "loss": 0.49141166687011717, + "step": 8700 + }, + { + "epoch": 28.480129764801298, + "grad_norm": 0.26969099044799805, + "learning_rate": 3.57621359223301e-05, + "loss": 0.47837520599365235, + "step": 8800 + }, + { + "epoch": 28.804541768045418, + "grad_norm": 0.2485017627477646, + "learning_rate": 3.560032362459547e-05, + "loss": 0.4838485336303711, + "step": 8900 + }, + { + "epoch": 29.126520681265205, + "grad_norm": 0.2618029713630676, + "learning_rate": 3.543851132686084e-05, + "loss": 0.4762223052978516, + "step": 9000 + }, + { + "epoch": 29.450932684509326, + "grad_norm": 0.25002509355545044, + "learning_rate": 3.5276699029126215e-05, + "loss": 0.4613980865478516, + "step": 9100 + }, + { + "epoch": 29.775344687753446, + "grad_norm": 0.2622935473918915, + "learning_rate": 3.511488673139159e-05, + "loss": 0.46839576721191406, + "step": 9200 + }, + { + "epoch": 30.097323600973237, + "grad_norm": 0.27539685368537903, + "learning_rate": 3.495307443365696e-05, + "loss": 0.46719558715820314, + "step": 9300 + }, + { + "epoch": 30.421735604217357, + "grad_norm": 0.2709919512271881, + "learning_rate": 3.479126213592233e-05, + "loss": 0.44856761932373046, + "step": 9400 + }, + { + "epoch": 30.746147607461477, + "grad_norm": 0.2810458242893219, + "learning_rate": 3.4629449838187706e-05, + "loss": 0.4556717300415039, + "step": 9500 + }, + { + "epoch": 31.068126520681265, + "grad_norm": 0.2798343002796173, + "learning_rate": 3.4467637540453075e-05, + "loss": 0.45173492431640627, + "step": 9600 + }, + { + "epoch": 31.392538523925385, + "grad_norm": 0.3120841383934021, + "learning_rate": 3.430582524271845e-05, + "loss": 0.4392761993408203, + "step": 9700 + }, + { + "epoch": 31.716950527169505, + "grad_norm": 0.2956726551055908, + "learning_rate": 3.414401294498382e-05, + "loss": 0.4437244415283203, + "step": 9800 + }, + { + "epoch": 32.038929440389296, + "grad_norm": 0.2856016457080841, + "learning_rate": 3.398220064724919e-05, + "loss": 0.441302490234375, + "step": 9900 + }, + { + "epoch": 32.363341443633416, + "grad_norm": 0.2965444028377533, + "learning_rate": 3.3820388349514566e-05, + "loss": 0.42223735809326174, + "step": 10000 + }, + { + "epoch": 32.68775344687754, + "grad_norm": 0.2714678943157196, + "learning_rate": 3.365857605177994e-05, + "loss": 0.43019737243652345, + "step": 10100 + }, + { + "epoch": 33.009732360097324, + "grad_norm": 0.23514199256896973, + "learning_rate": 3.3496763754045304e-05, + "loss": 0.4372244644165039, + "step": 10200 + }, + { + "epoch": 33.334144363341444, + "grad_norm": 0.26974233984947205, + "learning_rate": 3.333495145631068e-05, + "loss": 0.41183216094970704, + "step": 10300 + }, + { + "epoch": 33.658556366585564, + "grad_norm": 0.29364973306655884, + "learning_rate": 3.3173139158576056e-05, + "loss": 0.4156087112426758, + "step": 10400 + }, + { + "epoch": 33.982968369829685, + "grad_norm": 0.3023452162742615, + "learning_rate": 3.3011326860841425e-05, + "loss": 0.4232332992553711, + "step": 10500 + }, + { + "epoch": 34.30494728304947, + "grad_norm": 0.2768167555332184, + "learning_rate": 3.2849514563106795e-05, + "loss": 0.4014273452758789, + "step": 10600 + }, + { + "epoch": 34.62935928629359, + "grad_norm": 0.3322605788707733, + "learning_rate": 3.268770226537217e-05, + "loss": 0.40524036407470704, + "step": 10700 + }, + { + "epoch": 34.95377128953771, + "grad_norm": 0.3203238546848297, + "learning_rate": 3.252588996763754e-05, + "loss": 0.40970794677734373, + "step": 10800 + }, + { + "epoch": 35.2757502027575, + "grad_norm": 0.303089439868927, + "learning_rate": 3.2364077669902916e-05, + "loss": 0.38891010284423827, + "step": 10900 + }, + { + "epoch": 35.60016220600162, + "grad_norm": 0.29558560252189636, + "learning_rate": 3.220226537216829e-05, + "loss": 0.3949446105957031, + "step": 11000 + }, + { + "epoch": 35.92457420924574, + "grad_norm": 0.3112625479698181, + "learning_rate": 3.2040453074433655e-05, + "loss": 0.39758953094482424, + "step": 11100 + }, + { + "epoch": 36.24655312246553, + "grad_norm": 0.3039425313472748, + "learning_rate": 3.187864077669903e-05, + "loss": 0.38358245849609374, + "step": 11200 + }, + { + "epoch": 36.57096512570965, + "grad_norm": 0.3353067934513092, + "learning_rate": 3.171682847896441e-05, + "loss": 0.3797079849243164, + "step": 11300 + }, + { + "epoch": 36.89537712895377, + "grad_norm": 0.367567241191864, + "learning_rate": 3.1555016181229776e-05, + "loss": 0.38862274169921873, + "step": 11400 + }, + { + "epoch": 37.21735604217356, + "grad_norm": 0.32198429107666016, + "learning_rate": 3.1393203883495145e-05, + "loss": 0.37104736328125, + "step": 11500 + }, + { + "epoch": 37.54176804541768, + "grad_norm": 0.29541313648223877, + "learning_rate": 3.1231391585760514e-05, + "loss": 0.37103946685791017, + "step": 11600 + }, + { + "epoch": 37.8661800486618, + "grad_norm": 0.34138020873069763, + "learning_rate": 3.106957928802589e-05, + "loss": 0.37340602874755857, + "step": 11700 + }, + { + "epoch": 38.18815896188159, + "grad_norm": 0.301660418510437, + "learning_rate": 3.0907766990291267e-05, + "loss": 0.36555946350097657, + "step": 11800 + }, + { + "epoch": 38.51257096512571, + "grad_norm": 0.2793280780315399, + "learning_rate": 3.0745954692556636e-05, + "loss": 0.35706504821777346, + "step": 11900 + }, + { + "epoch": 38.83698296836983, + "grad_norm": 0.2934885621070862, + "learning_rate": 3.0584142394822005e-05, + "loss": 0.3642056655883789, + "step": 12000 + }, + { + "epoch": 39.15896188158962, + "grad_norm": 0.3178177773952484, + "learning_rate": 3.042233009708738e-05, + "loss": 0.3558914566040039, + "step": 12100 + }, + { + "epoch": 39.48337388483374, + "grad_norm": 0.32718706130981445, + "learning_rate": 3.026051779935275e-05, + "loss": 0.34923362731933594, + "step": 12200 + }, + { + "epoch": 39.80778588807786, + "grad_norm": 0.32444027066230774, + "learning_rate": 3.0098705501618123e-05, + "loss": 0.3525634002685547, + "step": 12300 + }, + { + "epoch": 40.12976480129765, + "grad_norm": 0.3068920075893402, + "learning_rate": 2.99368932038835e-05, + "loss": 0.3468068695068359, + "step": 12400 + }, + { + "epoch": 40.45417680454177, + "grad_norm": 0.31230300664901733, + "learning_rate": 2.977508090614887e-05, + "loss": 0.3374324798583984, + "step": 12500 + }, + { + "epoch": 40.77858880778589, + "grad_norm": 0.35733962059020996, + "learning_rate": 2.961326860841424e-05, + "loss": 0.3439715576171875, + "step": 12600 + }, + { + "epoch": 41.100567721005675, + "grad_norm": 0.3116827607154846, + "learning_rate": 2.9451456310679614e-05, + "loss": 0.3388735961914062, + "step": 12700 + }, + { + "epoch": 41.424979724249795, + "grad_norm": 0.3260541558265686, + "learning_rate": 2.9289644012944983e-05, + "loss": 0.3278466796875, + "step": 12800 + }, + { + "epoch": 41.749391727493915, + "grad_norm": 0.3492940068244934, + "learning_rate": 2.912783171521036e-05, + "loss": 0.33501758575439455, + "step": 12900 + }, + { + "epoch": 42.07137064071371, + "grad_norm": 0.33961179852485657, + "learning_rate": 2.896601941747573e-05, + "loss": 0.332823600769043, + "step": 13000 + }, + { + "epoch": 42.39578264395783, + "grad_norm": 0.3111296594142914, + "learning_rate": 2.88042071197411e-05, + "loss": 0.31814098358154297, + "step": 13100 + }, + { + "epoch": 42.72019464720195, + "grad_norm": 0.33305123448371887, + "learning_rate": 2.8642394822006473e-05, + "loss": 0.3256596374511719, + "step": 13200 + }, + { + "epoch": 43.04217356042174, + "grad_norm": 0.28727594017982483, + "learning_rate": 2.848058252427185e-05, + "loss": 0.32629146575927737, + "step": 13300 + }, + { + "epoch": 43.36658556366586, + "grad_norm": 0.3200686573982239, + "learning_rate": 2.8318770226537215e-05, + "loss": 0.310048885345459, + "step": 13400 + }, + { + "epoch": 43.69099756690998, + "grad_norm": 0.3261258602142334, + "learning_rate": 2.815695792880259e-05, + "loss": 0.3169711685180664, + "step": 13500 + }, + { + "epoch": 44.012976480129765, + "grad_norm": 0.32062989473342896, + "learning_rate": 2.7995145631067964e-05, + "loss": 0.31799676895141604, + "step": 13600 + }, + { + "epoch": 44.337388483373886, + "grad_norm": 0.3417779803276062, + "learning_rate": 2.7833333333333333e-05, + "loss": 0.3045396614074707, + "step": 13700 + }, + { + "epoch": 44.661800486618006, + "grad_norm": 0.32301145792007446, + "learning_rate": 2.7671521035598706e-05, + "loss": 0.3061079978942871, + "step": 13800 + }, + { + "epoch": 44.986212489862126, + "grad_norm": 0.3934004008769989, + "learning_rate": 2.7509708737864082e-05, + "loss": 0.31222929000854494, + "step": 13900 + }, + { + "epoch": 45.30819140308191, + "grad_norm": 0.33090853691101074, + "learning_rate": 2.734789644012945e-05, + "loss": 0.29367765426635745, + "step": 14000 + }, + { + "epoch": 45.632603406326034, + "grad_norm": 0.3316773474216461, + "learning_rate": 2.7186084142394824e-05, + "loss": 0.30018712997436525, + "step": 14100 + }, + { + "epoch": 45.957015409570154, + "grad_norm": 0.36180180311203003, + "learning_rate": 2.7024271844660193e-05, + "loss": 0.3031520080566406, + "step": 14200 + }, + { + "epoch": 46.27899432278994, + "grad_norm": 0.32503196597099304, + "learning_rate": 2.6862459546925566e-05, + "loss": 0.29114202499389646, + "step": 14300 + }, + { + "epoch": 46.60340632603406, + "grad_norm": 0.36477360129356384, + "learning_rate": 2.6700647249190942e-05, + "loss": 0.29186737060546875, + "step": 14400 + }, + { + "epoch": 46.92781832927818, + "grad_norm": 0.3492746949195862, + "learning_rate": 2.6538834951456308e-05, + "loss": 0.296141300201416, + "step": 14500 + }, + { + "epoch": 47.24979724249797, + "grad_norm": 0.32664960622787476, + "learning_rate": 2.6378640776699032e-05, + "loss": 0.2826018142700195, + "step": 14600 + }, + { + "epoch": 47.57420924574209, + "grad_norm": 0.3388548493385315, + "learning_rate": 2.62168284789644e-05, + "loss": 0.28671709060668943, + "step": 14700 + }, + { + "epoch": 47.89862124898621, + "grad_norm": 0.38633057475090027, + "learning_rate": 2.6055016181229774e-05, + "loss": 0.2910732078552246, + "step": 14800 + }, + { + "epoch": 48.220600162206004, + "grad_norm": 0.31736406683921814, + "learning_rate": 2.5893203883495147e-05, + "loss": 0.2784827995300293, + "step": 14900 + }, + { + "epoch": 48.545012165450125, + "grad_norm": 0.37021875381469727, + "learning_rate": 2.5731391585760516e-05, + "loss": 0.2798298263549805, + "step": 15000 + }, + { + "epoch": 48.869424168694245, + "grad_norm": 0.34544867277145386, + "learning_rate": 2.5569579288025892e-05, + "loss": 0.2821967697143555, + "step": 15100 + }, + { + "epoch": 49.19140308191403, + "grad_norm": 0.31732165813446045, + "learning_rate": 2.5407766990291265e-05, + "loss": 0.27426704406738284, + "step": 15200 + }, + { + "epoch": 49.51581508515815, + "grad_norm": 0.3201292157173157, + "learning_rate": 2.5245954692556634e-05, + "loss": 0.27101806640625, + "step": 15300 + }, + { + "epoch": 49.84022708840227, + "grad_norm": 0.33511412143707275, + "learning_rate": 2.5084142394822007e-05, + "loss": 0.27499908447265625, + "step": 15400 + }, + { + "epoch": 50.16220600162206, + "grad_norm": 0.347622275352478, + "learning_rate": 2.492233009708738e-05, + "loss": 0.26981922149658205, + "step": 15500 + }, + { + "epoch": 50.48661800486618, + "grad_norm": 0.3041851222515106, + "learning_rate": 2.4760517799352752e-05, + "loss": 0.2654261589050293, + "step": 15600 + }, + { + "epoch": 50.8110300081103, + "grad_norm": 0.3489990830421448, + "learning_rate": 2.4598705501618125e-05, + "loss": 0.2702595329284668, + "step": 15700 + }, + { + "epoch": 51.13300892133009, + "grad_norm": 0.30876776576042175, + "learning_rate": 2.4436893203883494e-05, + "loss": 0.2657257843017578, + "step": 15800 + }, + { + "epoch": 51.45742092457421, + "grad_norm": 0.34536364674568176, + "learning_rate": 2.4275080906148867e-05, + "loss": 0.261352596282959, + "step": 15900 + }, + { + "epoch": 51.78183292781833, + "grad_norm": 0.3297542333602905, + "learning_rate": 2.4113268608414243e-05, + "loss": 0.26374523162841795, + "step": 16000 + }, + { + "epoch": 52.103811841038116, + "grad_norm": 0.3442004323005676, + "learning_rate": 2.3951456310679612e-05, + "loss": 0.2606217002868652, + "step": 16100 + }, + { + "epoch": 52.428223844282236, + "grad_norm": 0.32110315561294556, + "learning_rate": 2.3789644012944985e-05, + "loss": 0.25471590042114256, + "step": 16200 + }, + { + "epoch": 52.752635847526356, + "grad_norm": 0.35750967264175415, + "learning_rate": 2.3627831715210357e-05, + "loss": 0.25818721771240233, + "step": 16300 + }, + { + "epoch": 53.07461476074615, + "grad_norm": 0.3167541027069092, + "learning_rate": 2.346601941747573e-05, + "loss": 0.25791025161743164, + "step": 16400 + }, + { + "epoch": 53.39902676399027, + "grad_norm": 0.3614417314529419, + "learning_rate": 2.33042071197411e-05, + "loss": 0.2503541374206543, + "step": 16500 + }, + { + "epoch": 53.723438767234384, + "grad_norm": 0.3383695185184479, + "learning_rate": 2.3142394822006475e-05, + "loss": 0.25205833435058594, + "step": 16600 + }, + { + "epoch": 54.04541768045418, + "grad_norm": 0.3129797577857971, + "learning_rate": 2.298220064724919e-05, + "loss": 0.2553220558166504, + "step": 16700 + }, + { + "epoch": 54.3698296836983, + "grad_norm": 0.32768893241882324, + "learning_rate": 2.2820388349514566e-05, + "loss": 0.2452069664001465, + "step": 16800 + }, + { + "epoch": 54.69424168694242, + "grad_norm": 0.34217071533203125, + "learning_rate": 2.2658576051779935e-05, + "loss": 0.2495290756225586, + "step": 16900 + }, + { + "epoch": 55.01622060016221, + "grad_norm": 0.3423132002353668, + "learning_rate": 2.2496763754045308e-05, + "loss": 0.25019683837890627, + "step": 17000 + }, + { + "epoch": 55.34063260340633, + "grad_norm": 0.34714990854263306, + "learning_rate": 2.233495145631068e-05, + "loss": 0.24028772354125977, + "step": 17100 + }, + { + "epoch": 55.66504460665045, + "grad_norm": 0.32141968607902527, + "learning_rate": 2.2173139158576053e-05, + "loss": 0.2443995475769043, + "step": 17200 + }, + { + "epoch": 55.98945660989457, + "grad_norm": 0.3385929763317108, + "learning_rate": 2.2011326860841426e-05, + "loss": 0.24807867050170898, + "step": 17300 + }, + { + "epoch": 56.311435523114355, + "grad_norm": 0.3463747203350067, + "learning_rate": 2.1849514563106795e-05, + "loss": 0.23618980407714843, + "step": 17400 + }, + { + "epoch": 56.635847526358475, + "grad_norm": 0.3065926730632782, + "learning_rate": 2.168770226537217e-05, + "loss": 0.23906055450439453, + "step": 17500 + }, + { + "epoch": 56.960259529602595, + "grad_norm": 0.3168463408946991, + "learning_rate": 2.152588996763754e-05, + "loss": 0.24397821426391603, + "step": 17600 + }, + { + "epoch": 57.28223844282238, + "grad_norm": 0.3540167510509491, + "learning_rate": 2.1364077669902913e-05, + "loss": 0.2341847038269043, + "step": 17700 + }, + { + "epoch": 57.6066504460665, + "grad_norm": 0.3474962115287781, + "learning_rate": 2.1202265372168286e-05, + "loss": 0.23654184341430665, + "step": 17800 + }, + { + "epoch": 57.93106244931062, + "grad_norm": 0.3104344606399536, + "learning_rate": 2.1040453074433658e-05, + "loss": 0.238500919342041, + "step": 17900 + }, + { + "epoch": 58.25304136253041, + "grad_norm": 0.2928438186645508, + "learning_rate": 2.087864077669903e-05, + "loss": 0.2317611312866211, + "step": 18000 + }, + { + "epoch": 58.57745336577453, + "grad_norm": 0.34206250309944153, + "learning_rate": 2.0716828478964404e-05, + "loss": 0.23266231536865234, + "step": 18100 + }, + { + "epoch": 58.90186536901865, + "grad_norm": 0.3680970370769501, + "learning_rate": 2.0555016181229776e-05, + "loss": 0.23497753143310546, + "step": 18200 + }, + { + "epoch": 59.223844282238446, + "grad_norm": 0.3037141263484955, + "learning_rate": 2.0393203883495145e-05, + "loss": 0.2270449447631836, + "step": 18300 + }, + { + "epoch": 59.548256285482566, + "grad_norm": 0.3106273114681244, + "learning_rate": 2.0231391585760518e-05, + "loss": 0.22707063674926758, + "step": 18400 + }, + { + "epoch": 59.872668288726686, + "grad_norm": 0.36219528317451477, + "learning_rate": 2.006957928802589e-05, + "loss": 0.2324913787841797, + "step": 18500 + }, + { + "epoch": 60.194647201946474, + "grad_norm": 0.3081775903701782, + "learning_rate": 1.9907766990291263e-05, + "loss": 0.22577075958251952, + "step": 18600 + }, + { + "epoch": 60.519059205190594, + "grad_norm": 0.3376457989215851, + "learning_rate": 1.9745954692556633e-05, + "loss": 0.2236073112487793, + "step": 18700 + }, + { + "epoch": 60.843471208434714, + "grad_norm": 0.3010921776294708, + "learning_rate": 1.958414239482201e-05, + "loss": 0.2290345001220703, + "step": 18800 + }, + { + "epoch": 61.1654501216545, + "grad_norm": 0.3345211148262024, + "learning_rate": 1.9422330097087378e-05, + "loss": 0.22328811645507812, + "step": 18900 + }, + { + "epoch": 61.48986212489862, + "grad_norm": 0.35830914974212646, + "learning_rate": 1.926051779935275e-05, + "loss": 0.22145767211914064, + "step": 19000 + }, + { + "epoch": 61.81427412814274, + "grad_norm": 0.3177037835121155, + "learning_rate": 1.9098705501618123e-05, + "loss": 0.223042049407959, + "step": 19100 + }, + { + "epoch": 62.13625304136253, + "grad_norm": 0.2974834442138672, + "learning_rate": 1.8936893203883496e-05, + "loss": 0.221235294342041, + "step": 19200 + }, + { + "epoch": 62.46066504460665, + "grad_norm": 0.3040814995765686, + "learning_rate": 1.877508090614887e-05, + "loss": 0.21824802398681642, + "step": 19300 + }, + { + "epoch": 62.78507704785077, + "grad_norm": 0.3453911244869232, + "learning_rate": 1.861326860841424e-05, + "loss": 0.22165294647216796, + "step": 19400 + }, + { + "epoch": 63.10705596107056, + "grad_norm": 0.3323674201965332, + "learning_rate": 1.8451456310679614e-05, + "loss": 0.21942996978759766, + "step": 19500 + }, + { + "epoch": 63.43146796431468, + "grad_norm": 0.2868025302886963, + "learning_rate": 1.8289644012944983e-05, + "loss": 0.2159541893005371, + "step": 19600 + }, + { + "epoch": 63.7558799675588, + "grad_norm": 0.2985902428627014, + "learning_rate": 1.8127831715210356e-05, + "loss": 0.21843338012695312, + "step": 19700 + }, + { + "epoch": 64.07785888077859, + "grad_norm": 0.29877224564552307, + "learning_rate": 1.796601941747573e-05, + "loss": 0.21846704483032225, + "step": 19800 + }, + { + "epoch": 64.40227088402271, + "grad_norm": 0.31725695729255676, + "learning_rate": 1.78042071197411e-05, + "loss": 0.2123063850402832, + "step": 19900 + }, + { + "epoch": 64.72668288726683, + "grad_norm": 0.30116891860961914, + "learning_rate": 1.7642394822006474e-05, + "loss": 0.21550237655639648, + "step": 20000 + }, + { + "epoch": 65.04866180048661, + "grad_norm": 0.33267149329185486, + "learning_rate": 1.7480582524271846e-05, + "loss": 0.2158302879333496, + "step": 20100 + }, + { + "epoch": 65.37307380373073, + "grad_norm": 0.30885910987854004, + "learning_rate": 1.731877022653722e-05, + "loss": 0.2090800666809082, + "step": 20200 + }, + { + "epoch": 65.69748580697485, + "grad_norm": 0.31430330872535706, + "learning_rate": 1.715695792880259e-05, + "loss": 0.21172605514526366, + "step": 20300 + }, + { + "epoch": 66.01946472019465, + "grad_norm": 0.2837020754814148, + "learning_rate": 1.6995145631067964e-05, + "loss": 0.21372562408447265, + "step": 20400 + }, + { + "epoch": 66.34387672343877, + "grad_norm": 0.30839094519615173, + "learning_rate": 1.6833333333333334e-05, + "loss": 0.20695215225219726, + "step": 20500 + }, + { + "epoch": 66.66828872668289, + "grad_norm": 0.31136852502822876, + "learning_rate": 1.6671521035598706e-05, + "loss": 0.20894838333129884, + "step": 20600 + }, + { + "epoch": 66.99270072992701, + "grad_norm": 0.2942120432853699, + "learning_rate": 1.650970873786408e-05, + "loss": 0.21177177429199218, + "step": 20700 + }, + { + "epoch": 67.3146796431468, + "grad_norm": 0.32769644260406494, + "learning_rate": 1.6349514563106797e-05, + "loss": 0.20521749496459962, + "step": 20800 + }, + { + "epoch": 67.63909164639091, + "grad_norm": 0.3272440731525421, + "learning_rate": 1.6187702265372166e-05, + "loss": 0.2083640480041504, + "step": 20900 + }, + { + "epoch": 67.96350364963503, + "grad_norm": 0.2725636959075928, + "learning_rate": 1.6025889967637542e-05, + "loss": 0.2089810562133789, + "step": 21000 + }, + { + "epoch": 68.28548256285482, + "grad_norm": 0.2833479046821594, + "learning_rate": 1.5864077669902915e-05, + "loss": 0.20403633117675782, + "step": 21100 + }, + { + "epoch": 68.60989456609894, + "grad_norm": 0.2848324477672577, + "learning_rate": 1.5702265372168284e-05, + "loss": 0.2053829574584961, + "step": 21200 + }, + { + "epoch": 68.93430656934306, + "grad_norm": 0.324773907661438, + "learning_rate": 1.554045307443366e-05, + "loss": 0.206777400970459, + "step": 21300 + }, + { + "epoch": 69.25628548256286, + "grad_norm": 0.2661566734313965, + "learning_rate": 1.537864077669903e-05, + "loss": 0.20142404556274415, + "step": 21400 + }, + { + "epoch": 69.58069748580698, + "grad_norm": 0.28439629077911377, + "learning_rate": 1.52168284789644e-05, + "loss": 0.20303123474121093, + "step": 21500 + }, + { + "epoch": 69.9051094890511, + "grad_norm": 0.33656612038612366, + "learning_rate": 1.5055016181229775e-05, + "loss": 0.20467769622802734, + "step": 21600 + }, + { + "epoch": 70.22708840227088, + "grad_norm": 0.32043009996414185, + "learning_rate": 1.4893203883495147e-05, + "loss": 0.20070859909057617, + "step": 21700 + }, + { + "epoch": 70.551500405515, + "grad_norm": 0.3048563599586487, + "learning_rate": 1.4731391585760518e-05, + "loss": 0.20159858703613281, + "step": 21800 + }, + { + "epoch": 70.87591240875912, + "grad_norm": 0.2664601802825928, + "learning_rate": 1.4569579288025893e-05, + "loss": 0.20171623229980468, + "step": 21900 + }, + { + "epoch": 71.19789132197891, + "grad_norm": 0.3018724322319031, + "learning_rate": 1.4407766990291264e-05, + "loss": 0.19853240966796876, + "step": 22000 + }, + { + "epoch": 71.52230332522304, + "grad_norm": 0.2770579755306244, + "learning_rate": 1.4245954692556635e-05, + "loss": 0.1985287857055664, + "step": 22100 + }, + { + "epoch": 71.84671532846716, + "grad_norm": 0.2877587080001831, + "learning_rate": 1.4084142394822005e-05, + "loss": 0.2016657066345215, + "step": 22200 + }, + { + "epoch": 72.16869424168694, + "grad_norm": 0.3253211975097656, + "learning_rate": 1.392233009708738e-05, + "loss": 0.19735158920288087, + "step": 22300 + }, + { + "epoch": 72.49310624493106, + "grad_norm": 0.2870253920555115, + "learning_rate": 1.376051779935275e-05, + "loss": 0.19713401794433594, + "step": 22400 + }, + { + "epoch": 72.81751824817518, + "grad_norm": 0.32006755471229553, + "learning_rate": 1.3598705501618122e-05, + "loss": 0.1988151741027832, + "step": 22500 + }, + { + "epoch": 73.13949716139497, + "grad_norm": 0.28510263562202454, + "learning_rate": 1.3436893203883496e-05, + "loss": 0.19770748138427735, + "step": 22600 + }, + { + "epoch": 73.46390916463909, + "grad_norm": 0.2950480878353119, + "learning_rate": 1.3275080906148869e-05, + "loss": 0.195107364654541, + "step": 22700 + }, + { + "epoch": 73.78832116788321, + "grad_norm": 0.30394643545150757, + "learning_rate": 1.311326860841424e-05, + "loss": 0.1975857925415039, + "step": 22800 + }, + { + "epoch": 74.110300081103, + "grad_norm": 0.29557764530181885, + "learning_rate": 1.295307443365696e-05, + "loss": 0.19621952056884764, + "step": 22900 + }, + { + "epoch": 74.43471208434713, + "grad_norm": 0.27801787853240967, + "learning_rate": 1.279126213592233e-05, + "loss": 0.1924858283996582, + "step": 23000 + }, + { + "epoch": 74.75912408759125, + "grad_norm": 0.32521647214889526, + "learning_rate": 1.2629449838187705e-05, + "loss": 0.19586196899414063, + "step": 23100 + }, + { + "epoch": 75.08110300081103, + "grad_norm": 0.27390602231025696, + "learning_rate": 1.2467637540453075e-05, + "loss": 0.19569822311401366, + "step": 23200 + }, + { + "epoch": 75.40551500405515, + "grad_norm": 0.27017250657081604, + "learning_rate": 1.2305825242718446e-05, + "loss": 0.1917603874206543, + "step": 23300 + }, + { + "epoch": 75.72992700729927, + "grad_norm": 0.2980138957500458, + "learning_rate": 1.2144012944983819e-05, + "loss": 0.1927776336669922, + "step": 23400 + }, + { + "epoch": 76.05190592051906, + "grad_norm": 0.3057159185409546, + "learning_rate": 1.1982200647249192e-05, + "loss": 0.19304771423339845, + "step": 23500 + }, + { + "epoch": 76.37631792376318, + "grad_norm": 0.29936423897743225, + "learning_rate": 1.1820388349514563e-05, + "loss": 0.19062232971191406, + "step": 23600 + }, + { + "epoch": 76.7007299270073, + "grad_norm": 0.3179267942905426, + "learning_rate": 1.1658576051779935e-05, + "loss": 0.19235507965087892, + "step": 23700 + }, + { + "epoch": 77.02270884022708, + "grad_norm": 0.25758758187294006, + "learning_rate": 1.1496763754045308e-05, + "loss": 0.1918639373779297, + "step": 23800 + }, + { + "epoch": 77.3471208434712, + "grad_norm": 0.2676644027233124, + "learning_rate": 1.133495145631068e-05, + "loss": 0.18774497985839844, + "step": 23900 + }, + { + "epoch": 77.67153284671532, + "grad_norm": 0.25918132066726685, + "learning_rate": 1.1173139158576053e-05, + "loss": 0.18990053176879884, + "step": 24000 + }, + { + "epoch": 77.99594484995944, + "grad_norm": 0.25803694128990173, + "learning_rate": 1.1011326860841424e-05, + "loss": 0.19139570236206055, + "step": 24100 + }, + { + "epoch": 78.31792376317924, + "grad_norm": 0.2896536588668823, + "learning_rate": 1.0849514563106797e-05, + "loss": 0.18745737075805663, + "step": 24200 + }, + { + "epoch": 78.64233576642336, + "grad_norm": 0.2941916286945343, + "learning_rate": 1.0687702265372168e-05, + "loss": 0.18780550003051757, + "step": 24300 + }, + { + "epoch": 78.96674776966748, + "grad_norm": 0.28496670722961426, + "learning_rate": 1.052588996763754e-05, + "loss": 0.19009716033935548, + "step": 24400 + }, + { + "epoch": 79.28872668288727, + "grad_norm": 0.29919925332069397, + "learning_rate": 1.0364077669902913e-05, + "loss": 0.18620597839355468, + "step": 24500 + }, + { + "epoch": 79.61313868613139, + "grad_norm": 0.285383939743042, + "learning_rate": 1.0202265372168284e-05, + "loss": 0.18723442077636718, + "step": 24600 + }, + { + "epoch": 79.93755068937551, + "grad_norm": 0.2821769416332245, + "learning_rate": 1.0040453074433657e-05, + "loss": 0.1882436180114746, + "step": 24700 + }, + { + "epoch": 80.2595296025953, + "grad_norm": 0.291644424200058, + "learning_rate": 9.87864077669903e-06, + "loss": 0.18627639770507812, + "step": 24800 + }, + { + "epoch": 80.58394160583941, + "grad_norm": 0.28841665387153625, + "learning_rate": 9.716828478964402e-06, + "loss": 0.1859906768798828, + "step": 24900 + }, + { + "epoch": 80.90835360908353, + "grad_norm": 0.2513130307197571, + "learning_rate": 9.555016181229775e-06, + "loss": 0.18743871688842773, + "step": 25000 + }, + { + "epoch": 81.23033252230333, + "grad_norm": 0.28746384382247925, + "learning_rate": 9.394822006472493e-06, + "loss": 0.18453241348266602, + "step": 25100 + }, + { + "epoch": 81.55474452554745, + "grad_norm": 0.29126232862472534, + "learning_rate": 9.233009708737865e-06, + "loss": 0.1854015350341797, + "step": 25200 + }, + { + "epoch": 81.87915652879157, + "grad_norm": 0.2970152795314789, + "learning_rate": 9.071197411003236e-06, + "loss": 0.18607795715332032, + "step": 25300 + }, + { + "epoch": 82.20113544201135, + "grad_norm": 0.30898556113243103, + "learning_rate": 8.909385113268609e-06, + "loss": 0.18391321182250978, + "step": 25400 + }, + { + "epoch": 82.52554744525547, + "grad_norm": 0.2530721426010132, + "learning_rate": 8.74757281553398e-06, + "loss": 0.1833015823364258, + "step": 25500 + }, + { + "epoch": 82.84995944849959, + "grad_norm": 0.26257285475730896, + "learning_rate": 8.585760517799352e-06, + "loss": 0.18504741668701172, + "step": 25600 + }, + { + "epoch": 83.17193836171938, + "grad_norm": 0.29258695244789124, + "learning_rate": 8.423948220064725e-06, + "loss": 0.18265727996826173, + "step": 25700 + }, + { + "epoch": 83.4963503649635, + "grad_norm": 0.28137892484664917, + "learning_rate": 8.262135922330098e-06, + "loss": 0.1820280647277832, + "step": 25800 + }, + { + "epoch": 83.82076236820762, + "grad_norm": 0.253631055355072, + "learning_rate": 8.10032362459547e-06, + "loss": 0.18374771118164063, + "step": 25900 + }, + { + "epoch": 84.14274128142742, + "grad_norm": 0.2612302005290985, + "learning_rate": 7.938511326860843e-06, + "loss": 0.1822812843322754, + "step": 26000 + }, + { + "epoch": 84.46715328467154, + "grad_norm": 0.2968967854976654, + "learning_rate": 7.776699029126214e-06, + "loss": 0.1804751205444336, + "step": 26100 + }, + { + "epoch": 84.79156528791566, + "grad_norm": 0.28858786821365356, + "learning_rate": 7.614886731391587e-06, + "loss": 0.1823977279663086, + "step": 26200 + }, + { + "epoch": 85.11354420113544, + "grad_norm": 0.24769216775894165, + "learning_rate": 7.453074433656958e-06, + "loss": 0.18158819198608397, + "step": 26300 + }, + { + "epoch": 85.43795620437956, + "grad_norm": 0.27769848704338074, + "learning_rate": 7.29126213592233e-06, + "loss": 0.18056314468383788, + "step": 26400 + }, + { + "epoch": 85.76236820762368, + "grad_norm": 0.30476441979408264, + "learning_rate": 7.129449838187703e-06, + "loss": 0.18116596221923828, + "step": 26500 + }, + { + "epoch": 86.08434712084347, + "grad_norm": 0.23022858798503876, + "learning_rate": 6.967637540453075e-06, + "loss": 0.18061212539672852, + "step": 26600 + }, + { + "epoch": 86.4087591240876, + "grad_norm": 0.28072357177734375, + "learning_rate": 6.805825242718447e-06, + "loss": 0.17919044494628905, + "step": 26700 + }, + { + "epoch": 86.73317112733172, + "grad_norm": 0.28679656982421875, + "learning_rate": 6.644012944983818e-06, + "loss": 0.17989681243896485, + "step": 26800 + }, + { + "epoch": 87.0551500405515, + "grad_norm": 0.23604606091976166, + "learning_rate": 6.482200647249191e-06, + "loss": 0.1802787208557129, + "step": 26900 + }, + { + "epoch": 87.37956204379562, + "grad_norm": 0.2767940163612366, + "learning_rate": 6.320388349514564e-06, + "loss": 0.17775949478149414, + "step": 27000 + }, + { + "epoch": 87.70397404703974, + "grad_norm": 0.2633722126483917, + "learning_rate": 6.1585760517799355e-06, + "loss": 0.17942682266235352, + "step": 27100 + }, + { + "epoch": 88.02595296025953, + "grad_norm": 0.254029780626297, + "learning_rate": 5.996763754045308e-06, + "loss": 0.17986074447631836, + "step": 27200 + }, + { + "epoch": 88.35036496350365, + "grad_norm": 0.25648459792137146, + "learning_rate": 5.83495145631068e-06, + "loss": 0.17738138198852538, + "step": 27300 + }, + { + "epoch": 88.67477696674777, + "grad_norm": 0.2450580894947052, + "learning_rate": 5.673139158576052e-06, + "loss": 0.17837905883789062, + "step": 27400 + }, + { + "epoch": 88.99918896999189, + "grad_norm": 0.2686944305896759, + "learning_rate": 5.511326860841424e-06, + "loss": 0.17965082168579102, + "step": 27500 + }, + { + "epoch": 89.32116788321167, + "grad_norm": 0.26215696334838867, + "learning_rate": 5.351132686084142e-06, + "loss": 0.17689130783081056, + "step": 27600 + }, + { + "epoch": 89.64557988645579, + "grad_norm": 0.2659305930137634, + "learning_rate": 5.189320388349515e-06, + "loss": 0.1780232620239258, + "step": 27700 + }, + { + "epoch": 89.96999188969991, + "grad_norm": 0.2572084665298462, + "learning_rate": 5.027508090614887e-06, + "loss": 0.17742925643920898, + "step": 27800 + }, + { + "epoch": 90.2919708029197, + "grad_norm": 0.2678115963935852, + "learning_rate": 4.865695792880259e-06, + "loss": 0.1759064292907715, + "step": 27900 + }, + { + "epoch": 90.61638280616383, + "grad_norm": 0.2606296241283417, + "learning_rate": 4.703883495145631e-06, + "loss": 0.176632080078125, + "step": 28000 + }, + { + "epoch": 90.94079480940795, + "grad_norm": 0.27705252170562744, + "learning_rate": 4.542071197411003e-06, + "loss": 0.17765697479248047, + "step": 28100 + }, + { + "epoch": 91.26277372262774, + "grad_norm": 0.2625502049922943, + "learning_rate": 4.380258899676376e-06, + "loss": 0.1756792449951172, + "step": 28200 + }, + { + "epoch": 91.58718572587186, + "grad_norm": 0.24927927553653717, + "learning_rate": 4.218446601941748e-06, + "loss": 0.17554109573364257, + "step": 28300 + }, + { + "epoch": 91.91159772911598, + "grad_norm": 0.240628182888031, + "learning_rate": 4.05663430420712e-06, + "loss": 0.17559316635131836, + "step": 28400 + }, + { + "epoch": 92.23357664233576, + "grad_norm": 0.2785760462284088, + "learning_rate": 3.894822006472492e-06, + "loss": 0.17503616333007813, + "step": 28500 + }, + { + "epoch": 92.55798864557988, + "grad_norm": 0.25900083780288696, + "learning_rate": 3.733009708737864e-06, + "loss": 0.17507522583007812, + "step": 28600 + }, + { + "epoch": 92.882400648824, + "grad_norm": 0.276037335395813, + "learning_rate": 3.5711974110032368e-06, + "loss": 0.17590507507324218, + "step": 28700 + }, + { + "epoch": 93.2043795620438, + "grad_norm": 0.2555212080478668, + "learning_rate": 3.4093851132686086e-06, + "loss": 0.17514604568481446, + "step": 28800 + }, + { + "epoch": 93.52879156528792, + "grad_norm": 0.2588745653629303, + "learning_rate": 3.247572815533981e-06, + "loss": 0.174718017578125, + "step": 28900 + }, + { + "epoch": 93.85320356853204, + "grad_norm": 0.2660391330718994, + "learning_rate": 3.0857605177993526e-06, + "loss": 0.17506734848022462, + "step": 29000 + }, + { + "epoch": 94.17518248175182, + "grad_norm": 0.2677949368953705, + "learning_rate": 2.9239482200647253e-06, + "loss": 0.17430608749389648, + "step": 29100 + }, + { + "epoch": 94.49959448499594, + "grad_norm": 0.28909972310066223, + "learning_rate": 2.762135922330097e-06, + "loss": 0.17481451034545897, + "step": 29200 + }, + { + "epoch": 94.82400648824006, + "grad_norm": 0.26000115275382996, + "learning_rate": 2.6003236245954693e-06, + "loss": 0.17436113357543945, + "step": 29300 + }, + { + "epoch": 95.14598540145985, + "grad_norm": 0.2968977987766266, + "learning_rate": 2.4385113268608415e-06, + "loss": 0.17399301528930664, + "step": 29400 + }, + { + "epoch": 95.47039740470397, + "grad_norm": 0.24084195494651794, + "learning_rate": 2.2766990291262138e-06, + "loss": 0.1732662582397461, + "step": 29500 + }, + { + "epoch": 95.7948094079481, + "grad_norm": 0.24390101432800293, + "learning_rate": 2.114886731391586e-06, + "loss": 0.17355813980102539, + "step": 29600 + }, + { + "epoch": 96.11678832116789, + "grad_norm": 0.24950821697711945, + "learning_rate": 1.9546925566343042e-06, + "loss": 0.17353734970092774, + "step": 29700 + }, + { + "epoch": 96.44120032441201, + "grad_norm": 0.2526560425758362, + "learning_rate": 1.7928802588996767e-06, + "loss": 0.17330703735351563, + "step": 29800 + }, + { + "epoch": 96.76561232765613, + "grad_norm": 0.2830760180950165, + "learning_rate": 1.6310679611650487e-06, + "loss": 0.1727421760559082, + "step": 29900 + }, + { + "epoch": 97.08759124087591, + "grad_norm": 0.21633441746234894, + "learning_rate": 1.4692556634304207e-06, + "loss": 0.17346202850341796, + "step": 30000 + }, + { + "epoch": 97.41200324412003, + "grad_norm": 0.23232562839984894, + "learning_rate": 1.307443365695793e-06, + "loss": 0.17300867080688476, + "step": 30100 + }, + { + "epoch": 97.73641524736415, + "grad_norm": 0.22741949558258057, + "learning_rate": 1.1456310679611652e-06, + "loss": 0.1723964500427246, + "step": 30200 + }, + { + "epoch": 98.05839416058394, + "grad_norm": 0.21481141448020935, + "learning_rate": 9.838187702265374e-07, + "loss": 0.17242773056030272, + "step": 30300 + }, + { + "epoch": 98.38280616382806, + "grad_norm": 0.26986297965049744, + "learning_rate": 8.220064724919095e-07, + "loss": 0.17295772552490235, + "step": 30400 + }, + { + "epoch": 98.70721816707218, + "grad_norm": 0.23824343085289001, + "learning_rate": 6.601941747572815e-07, + "loss": 0.1724873352050781, + "step": 30500 + } + ], + "logging_steps": 100, + "max_steps": 30900, + "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": 1.739138096037888e+16, + "train_batch_size": 8, + "trial_name": null, + "trial_params": null +} diff --git a/timecost/m6/realtabformer/rtf-m6-20260429_070344/rtf_checkpoints/checkpoint-30500/training_args.bin b/timecost/m6/realtabformer/rtf-m6-20260429_070344/rtf_checkpoints/checkpoint-30500/training_args.bin new file mode 100644 index 0000000000000000000000000000000000000000..34d68dc0e0fe1c1f12a2e581dd1b166aa7178a9e --- /dev/null +++ b/timecost/m6/realtabformer/rtf-m6-20260429_070344/rtf_checkpoints/checkpoint-30500/training_args.bin @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:9e2cd88337d1d846c6918d2b3b63fa3e5c93f12fefc082497590da854a564607 +size 5201 diff --git a/timecost/m6/realtabformer/rtf-m6-20260429_070344/rtf_checkpoints/checkpoint-30591/config.json b/timecost/m6/realtabformer/rtf-m6-20260429_070344/rtf_checkpoints/checkpoint-30591/config.json new file mode 100644 index 0000000000000000000000000000000000000000..5794e9cc1aa00a0ff98ed7967c3c2d9142841a1c --- /dev/null +++ b/timecost/m6/realtabformer/rtf-m6-20260429_070344/rtf_checkpoints/checkpoint-30591/config.json @@ -0,0 +1,34 @@ +{ + "activation_function": "gelu_new", + "add_cross_attention": false, + "architectures": [ + "GPT2LMHeadModel" + ], + "attn_pdrop": 0.1, + "bos_token_id": 5, + "dtype": "float32", + "embd_pdrop": 0.1, + "eos_token_id": 6, + "initializer_range": 0.02, + "layer_norm_epsilon": 1e-05, + "model_type": "gpt2", + "n_embd": 768, + "n_head": 12, + "n_inner": null, + "n_layer": 6, + "n_positions": 1024, + "pad_token_id": null, + "reorder_and_upcast_attn": false, + "resid_pdrop": 0.1, + "scale_attn_by_inverse_layer_idx": false, + "scale_attn_weights": true, + "summary_activation": null, + "summary_first_dropout": 0.1, + "summary_proj_to_labels": true, + "summary_type": "cls_index", + "summary_use_proj": true, + "tie_word_embeddings": true, + "transformers_version": "5.5.3", + "use_cache": false, + "vocab_size": 498 +} diff --git a/timecost/m6/realtabformer/rtf-m6-20260429_070344/rtf_checkpoints/checkpoint-30591/generation_config.json b/timecost/m6/realtabformer/rtf-m6-20260429_070344/rtf_checkpoints/checkpoint-30591/generation_config.json new file mode 100644 index 0000000000000000000000000000000000000000..ffe89567780e75b5c22eade9be971483b9618f39 --- /dev/null +++ b/timecost/m6/realtabformer/rtf-m6-20260429_070344/rtf_checkpoints/checkpoint-30591/generation_config.json @@ -0,0 +1,9 @@ +{ + "_from_model_config": true, + "bos_token_id": 5, + "eos_token_id": 6, + "output_attentions": false, + "output_hidden_states": false, + "transformers_version": "5.5.3", + "use_cache": true +} diff --git a/timecost/m6/realtabformer/rtf-m6-20260429_070344/rtf_checkpoints/checkpoint-30591/model.safetensors b/timecost/m6/realtabformer/rtf-m6-20260429_070344/rtf_checkpoints/checkpoint-30591/model.safetensors new file mode 100644 index 0000000000000000000000000000000000000000..62a5d19e8c73049df202f4e69ccbabe69e28a747 --- /dev/null +++ b/timecost/m6/realtabformer/rtf-m6-20260429_070344/rtf_checkpoints/checkpoint-30591/model.safetensors @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:29060ffe5ee68682611b67150e213d0c669df73bb2b4acb6c416d5940797a7e8 +size 174798280 diff --git a/timecost/m6/realtabformer/rtf-m6-20260429_070344/rtf_checkpoints/checkpoint-30591/optimizer.pt b/timecost/m6/realtabformer/rtf-m6-20260429_070344/rtf_checkpoints/checkpoint-30591/optimizer.pt new file mode 100644 index 0000000000000000000000000000000000000000..2bacd28a4a11722b9af31f258ce9842d1727f38b --- /dev/null +++ b/timecost/m6/realtabformer/rtf-m6-20260429_070344/rtf_checkpoints/checkpoint-30591/optimizer.pt @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:7ba52843edcaecff16d4ad2294bbcb574253e5e4a95ed9ed092aa32565733feb +size 349645643 diff --git a/timecost/m6/realtabformer/rtf-m6-20260429_070344/rtf_checkpoints/checkpoint-30591/rng_state.pth b/timecost/m6/realtabformer/rtf-m6-20260429_070344/rtf_checkpoints/checkpoint-30591/rng_state.pth new file mode 100644 index 0000000000000000000000000000000000000000..341a52887f42804bcc1d255f9bbac3b523ed0872 --- /dev/null +++ b/timecost/m6/realtabformer/rtf-m6-20260429_070344/rtf_checkpoints/checkpoint-30591/rng_state.pth @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:cc27f26802467e1e54c8477abd2ac1573f7630dbcca2c365f92e31a01d1ce47f +size 14645 diff --git a/timecost/m6/realtabformer/rtf-m6-20260429_070344/rtf_checkpoints/checkpoint-30591/scaler.pt b/timecost/m6/realtabformer/rtf-m6-20260429_070344/rtf_checkpoints/checkpoint-30591/scaler.pt new file mode 100644 index 0000000000000000000000000000000000000000..474e157cf659a45cd1a4ba72ddd02b4544a865bb --- /dev/null +++ b/timecost/m6/realtabformer/rtf-m6-20260429_070344/rtf_checkpoints/checkpoint-30591/scaler.pt @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:b810dcc5cd78d869a483a134d620023ed2e8630f0a3f2797c6fc3fe6bff9ba72 +size 1383 diff --git a/timecost/m6/realtabformer/rtf-m6-20260429_070344/rtf_checkpoints/checkpoint-30591/scheduler.pt b/timecost/m6/realtabformer/rtf-m6-20260429_070344/rtf_checkpoints/checkpoint-30591/scheduler.pt new file mode 100644 index 0000000000000000000000000000000000000000..251b8866215d4d0ae763d00c1430ccc710e67ec9 --- /dev/null +++ b/timecost/m6/realtabformer/rtf-m6-20260429_070344/rtf_checkpoints/checkpoint-30591/scheduler.pt @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:dfbbdc533ff04b7827316ddff622053f9891c81c7f163ce365b0902f3d5547cb +size 1465 diff --git a/timecost/m6/realtabformer/rtf-m6-20260429_070344/rtf_checkpoints/checkpoint-30591/trainer_state.json b/timecost/m6/realtabformer/rtf-m6-20260429_070344/rtf_checkpoints/checkpoint-30591/trainer_state.json new file mode 100644 index 0000000000000000000000000000000000000000..4490c6f5c470c7d79679dda2c728301264e3a60e --- /dev/null +++ b/timecost/m6/realtabformer/rtf-m6-20260429_070344/rtf_checkpoints/checkpoint-30591/trainer_state.json @@ -0,0 +1,2169 @@ +{ + "best_global_step": null, + "best_metric": null, + "best_model_checkpoint": null, + "epoch": 99.0, + "eval_steps": 100, + "global_step": 30591, + "is_hyper_param_search": false, + "is_local_process_zero": true, + "is_world_process_zero": true, + "log_history": [ + { + "epoch": 0.32441200324412, + "grad_norm": 0.20164933800697327, + "learning_rate": 4.983980582524272e-05, + "loss": 1.5922834777832031, + "step": 100 + }, + { + "epoch": 0.64882400648824, + "grad_norm": 0.18370771408081055, + "learning_rate": 4.967799352750809e-05, + "loss": 0.8226632690429687, + "step": 200 + }, + { + "epoch": 0.9732360097323601, + "grad_norm": 0.17879560589790344, + "learning_rate": 4.951618122977347e-05, + "loss": 0.7554012298583984, + "step": 300 + }, + { + "epoch": 1.2952149229521492, + "grad_norm": 0.14063459634780884, + "learning_rate": 4.935436893203884e-05, + "loss": 0.7157672882080078, + "step": 400 + }, + { + "epoch": 1.6196269261962692, + "grad_norm": 0.14949747920036316, + "learning_rate": 4.919255663430421e-05, + "loss": 0.7098747253417969, + "step": 500 + }, + { + "epoch": 1.9440389294403893, + "grad_norm": 0.1495194435119629, + "learning_rate": 4.9030744336569583e-05, + "loss": 0.6998626708984375, + "step": 600 + }, + { + "epoch": 2.2660178426601782, + "grad_norm": 0.1467229574918747, + "learning_rate": 4.886893203883495e-05, + "loss": 0.6833465576171875, + "step": 700 + }, + { + "epoch": 2.5904298459042985, + "grad_norm": 0.1609153300523758, + "learning_rate": 4.870711974110033e-05, + "loss": 0.6878270721435547, + "step": 800 + }, + { + "epoch": 2.9148418491484183, + "grad_norm": 0.13326895236968994, + "learning_rate": 4.85453074433657e-05, + "loss": 0.6762329864501954, + "step": 900 + }, + { + "epoch": 3.2368207623682075, + "grad_norm": 0.14083443582057953, + "learning_rate": 4.838349514563107e-05, + "loss": 0.6711769866943359, + "step": 1000 + }, + { + "epoch": 3.5612327656123277, + "grad_norm": 0.13646796345710754, + "learning_rate": 4.822168284789644e-05, + "loss": 0.6645689392089844, + "step": 1100 + }, + { + "epoch": 3.885644768856448, + "grad_norm": 0.13673610985279083, + "learning_rate": 4.805987055016181e-05, + "loss": 0.6698095703125, + "step": 1200 + }, + { + "epoch": 4.207623682076237, + "grad_norm": 0.12795455753803253, + "learning_rate": 4.789805825242719e-05, + "loss": 0.6573734283447266, + "step": 1300 + }, + { + "epoch": 4.5320356853203565, + "grad_norm": 0.12952066957950592, + "learning_rate": 4.773624595469256e-05, + "loss": 0.6638764190673828, + "step": 1400 + }, + { + "epoch": 4.856447688564477, + "grad_norm": 0.1414010375738144, + "learning_rate": 4.757443365695793e-05, + "loss": 0.6583383178710938, + "step": 1500 + }, + { + "epoch": 5.178426601784266, + "grad_norm": 0.14432589709758759, + "learning_rate": 4.74126213592233e-05, + "loss": 0.6485870361328125, + "step": 1600 + }, + { + "epoch": 5.502838605028386, + "grad_norm": 0.1340341866016388, + "learning_rate": 4.725080906148868e-05, + "loss": 0.6541815948486328, + "step": 1700 + }, + { + "epoch": 5.827250608272506, + "grad_norm": 0.1309279352426529, + "learning_rate": 4.708899676375405e-05, + "loss": 0.6557488250732422, + "step": 1800 + }, + { + "epoch": 6.149229521492296, + "grad_norm": 0.1259990930557251, + "learning_rate": 4.692718446601942e-05, + "loss": 0.639359245300293, + "step": 1900 + }, + { + "epoch": 6.473641524736415, + "grad_norm": 0.13993705809116364, + "learning_rate": 4.6765372168284794e-05, + "loss": 0.6472817230224609, + "step": 2000 + }, + { + "epoch": 6.798053527980535, + "grad_norm": 0.12632109224796295, + "learning_rate": 4.660355987055016e-05, + "loss": 0.6512689971923828, + "step": 2100 + }, + { + "epoch": 7.120032441200324, + "grad_norm": 0.12884259223937988, + "learning_rate": 4.644174757281554e-05, + "loss": 0.6424983978271485, + "step": 2200 + }, + { + "epoch": 7.444444444444445, + "grad_norm": 0.13162656128406525, + "learning_rate": 4.627993527508091e-05, + "loss": 0.6413846588134766, + "step": 2300 + }, + { + "epoch": 7.768856447688565, + "grad_norm": 0.1305171549320221, + "learning_rate": 4.611812297734628e-05, + "loss": 0.6504198455810547, + "step": 2400 + }, + { + "epoch": 8.090835360908354, + "grad_norm": 0.12320607155561447, + "learning_rate": 4.5956310679611654e-05, + "loss": 0.6361569213867188, + "step": 2500 + }, + { + "epoch": 8.415247364152474, + "grad_norm": 0.1263129562139511, + "learning_rate": 4.579449838187703e-05, + "loss": 0.6391400527954102, + "step": 2600 + }, + { + "epoch": 8.739659367396595, + "grad_norm": 0.14339180290699005, + "learning_rate": 4.563268608414239e-05, + "loss": 0.643778076171875, + "step": 2700 + }, + { + "epoch": 9.061638280616382, + "grad_norm": 0.13703292608261108, + "learning_rate": 4.547087378640777e-05, + "loss": 0.63127685546875, + "step": 2800 + }, + { + "epoch": 9.386050283860502, + "grad_norm": 0.12888263165950775, + "learning_rate": 4.5309061488673144e-05, + "loss": 0.636928939819336, + "step": 2900 + }, + { + "epoch": 9.710462287104622, + "grad_norm": 0.1290873885154724, + "learning_rate": 4.5147249190938514e-05, + "loss": 0.6323677444458008, + "step": 3000 + }, + { + "epoch": 10.032441200324412, + "grad_norm": 0.13526120781898499, + "learning_rate": 4.498543689320388e-05, + "loss": 0.6302993392944336, + "step": 3100 + }, + { + "epoch": 10.356853203568532, + "grad_norm": 0.14485451579093933, + "learning_rate": 4.482362459546926e-05, + "loss": 0.6336409378051758, + "step": 3200 + }, + { + "epoch": 10.681265206812652, + "grad_norm": 0.12640801072120667, + "learning_rate": 4.466181229773463e-05, + "loss": 0.6236648178100586, + "step": 3300 + }, + { + "epoch": 11.003244120032441, + "grad_norm": 0.13860085606575012, + "learning_rate": 4.4500000000000004e-05, + "loss": 0.6343330383300781, + "step": 3400 + }, + { + "epoch": 11.327656123276562, + "grad_norm": 0.13636715710163116, + "learning_rate": 4.4338187702265373e-05, + "loss": 0.6203033447265625, + "step": 3500 + }, + { + "epoch": 11.652068126520682, + "grad_norm": 0.13047286868095398, + "learning_rate": 4.417637540453074e-05, + "loss": 0.6218357086181641, + "step": 3600 + }, + { + "epoch": 11.976480129764802, + "grad_norm": 0.13506969809532166, + "learning_rate": 4.401456310679612e-05, + "loss": 0.6350560760498047, + "step": 3700 + }, + { + "epoch": 12.298459042984591, + "grad_norm": 0.13476674258708954, + "learning_rate": 4.385275080906149e-05, + "loss": 0.6147463607788086, + "step": 3800 + }, + { + "epoch": 12.62287104622871, + "grad_norm": 0.12256718426942825, + "learning_rate": 4.3690938511326864e-05, + "loss": 0.624836196899414, + "step": 3900 + }, + { + "epoch": 12.94728304947283, + "grad_norm": 0.13317419588565826, + "learning_rate": 4.352912621359223e-05, + "loss": 0.628001823425293, + "step": 4000 + }, + { + "epoch": 13.26926196269262, + "grad_norm": 0.13066990673542023, + "learning_rate": 4.33673139158576e-05, + "loss": 0.609481315612793, + "step": 4100 + }, + { + "epoch": 13.59367396593674, + "grad_norm": 0.13055436313152313, + "learning_rate": 4.320550161812298e-05, + "loss": 0.6177150344848633, + "step": 4200 + }, + { + "epoch": 13.91808596918086, + "grad_norm": 0.13111238181591034, + "learning_rate": 4.3043689320388355e-05, + "loss": 0.6266952896118164, + "step": 4300 + }, + { + "epoch": 14.240064882400649, + "grad_norm": 0.14692434668540955, + "learning_rate": 4.2881877022653724e-05, + "loss": 0.6085420608520508, + "step": 4400 + }, + { + "epoch": 14.564476885644769, + "grad_norm": 0.1490693986415863, + "learning_rate": 4.272006472491909e-05, + "loss": 0.6127510833740234, + "step": 4500 + }, + { + "epoch": 14.88888888888889, + "grad_norm": 0.14273235201835632, + "learning_rate": 4.255825242718447e-05, + "loss": 0.6196828079223633, + "step": 4600 + }, + { + "epoch": 15.210867802108679, + "grad_norm": 0.1464281678199768, + "learning_rate": 4.239644012944984e-05, + "loss": 0.606991844177246, + "step": 4700 + }, + { + "epoch": 15.535279805352799, + "grad_norm": 0.15429367125034332, + "learning_rate": 4.2234627831715215e-05, + "loss": 0.6114653015136718, + "step": 4800 + }, + { + "epoch": 15.859691808596917, + "grad_norm": 0.1561301201581955, + "learning_rate": 4.2072815533980584e-05, + "loss": 0.6102643585205079, + "step": 4900 + }, + { + "epoch": 16.181670721816708, + "grad_norm": 0.14197590947151184, + "learning_rate": 4.191100323624595e-05, + "loss": 0.6006597900390624, + "step": 5000 + }, + { + "epoch": 16.50608272506083, + "grad_norm": 0.15073753893375397, + "learning_rate": 4.174919093851133e-05, + "loss": 0.6000652694702149, + "step": 5100 + }, + { + "epoch": 16.83049472830495, + "grad_norm": 0.1630340814590454, + "learning_rate": 4.1587378640776705e-05, + "loss": 0.601633186340332, + "step": 5200 + }, + { + "epoch": 17.152473641524736, + "grad_norm": 0.14281341433525085, + "learning_rate": 4.1425566343042074e-05, + "loss": 0.6040666580200196, + "step": 5300 + }, + { + "epoch": 17.476885644768856, + "grad_norm": 0.16090357303619385, + "learning_rate": 4.1263754045307444e-05, + "loss": 0.5960210800170899, + "step": 5400 + }, + { + "epoch": 17.801297648012977, + "grad_norm": 0.15764260292053223, + "learning_rate": 4.110194174757282e-05, + "loss": 0.6001902389526367, + "step": 5500 + }, + { + "epoch": 18.123276561232764, + "grad_norm": 0.17385198175907135, + "learning_rate": 4.094012944983819e-05, + "loss": 0.5886587142944336, + "step": 5600 + }, + { + "epoch": 18.447688564476884, + "grad_norm": 0.16908828914165497, + "learning_rate": 4.0778317152103565e-05, + "loss": 0.594392967224121, + "step": 5700 + }, + { + "epoch": 18.772100567721004, + "grad_norm": 0.16428205370903015, + "learning_rate": 4.0616504854368934e-05, + "loss": 0.589791030883789, + "step": 5800 + }, + { + "epoch": 19.094079480940795, + "grad_norm": 0.16796661913394928, + "learning_rate": 4.0454692556634304e-05, + "loss": 0.5915510559082031, + "step": 5900 + }, + { + "epoch": 19.418491484184916, + "grad_norm": 0.17108002305030823, + "learning_rate": 4.029288025889968e-05, + "loss": 0.5712713623046874, + "step": 6000 + }, + { + "epoch": 19.742903487429036, + "grad_norm": 0.17238284647464752, + "learning_rate": 4.0131067961165056e-05, + "loss": 0.5880846786499023, + "step": 6100 + }, + { + "epoch": 20.064882400648823, + "grad_norm": 0.16751733422279358, + "learning_rate": 3.9969255663430425e-05, + "loss": 0.5886093902587891, + "step": 6200 + }, + { + "epoch": 20.389294403892944, + "grad_norm": 0.17518126964569092, + "learning_rate": 3.9807443365695794e-05, + "loss": 0.5645963287353516, + "step": 6300 + }, + { + "epoch": 20.713706407137064, + "grad_norm": 0.19824537634849548, + "learning_rate": 3.9645631067961164e-05, + "loss": 0.5758349609375, + "step": 6400 + }, + { + "epoch": 21.035685320356855, + "grad_norm": 0.17580321431159973, + "learning_rate": 3.948381877022654e-05, + "loss": 0.580423698425293, + "step": 6500 + }, + { + "epoch": 21.360097323600975, + "grad_norm": 0.17921853065490723, + "learning_rate": 3.9322006472491916e-05, + "loss": 0.5611041641235351, + "step": 6600 + }, + { + "epoch": 21.68450932684509, + "grad_norm": 0.18941283226013184, + "learning_rate": 3.916019417475728e-05, + "loss": 0.5720311737060547, + "step": 6700 + }, + { + "epoch": 22.006488240064883, + "grad_norm": 0.18437007069587708, + "learning_rate": 3.8998381877022654e-05, + "loss": 0.563258171081543, + "step": 6800 + }, + { + "epoch": 22.330900243309003, + "grad_norm": 0.19815316796302795, + "learning_rate": 3.883656957928803e-05, + "loss": 0.5511487197875976, + "step": 6900 + }, + { + "epoch": 22.655312246553123, + "grad_norm": 0.20421746373176575, + "learning_rate": 3.86747572815534e-05, + "loss": 0.5592882537841797, + "step": 7000 + }, + { + "epoch": 22.979724249797243, + "grad_norm": 0.2145063877105713, + "learning_rate": 3.851294498381877e-05, + "loss": 0.5531240844726563, + "step": 7100 + }, + { + "epoch": 23.30170316301703, + "grad_norm": 0.2133578211069107, + "learning_rate": 3.8351132686084145e-05, + "loss": 0.5361775588989258, + "step": 7200 + }, + { + "epoch": 23.62611516626115, + "grad_norm": 0.21354049444198608, + "learning_rate": 3.8189320388349514e-05, + "loss": 0.5458520126342773, + "step": 7300 + }, + { + "epoch": 23.95052716950527, + "grad_norm": 0.20230478048324585, + "learning_rate": 3.802750809061489e-05, + "loss": 0.5508059692382813, + "step": 7400 + }, + { + "epoch": 24.272506082725062, + "grad_norm": 0.21077010035514832, + "learning_rate": 3.786569579288026e-05, + "loss": 0.5237713623046875, + "step": 7500 + }, + { + "epoch": 24.596918085969182, + "grad_norm": 0.22097694873809814, + "learning_rate": 3.770388349514563e-05, + "loss": 0.5358617782592774, + "step": 7600 + }, + { + "epoch": 24.9213300892133, + "grad_norm": 0.23570670187473297, + "learning_rate": 3.7542071197411005e-05, + "loss": 0.5347403717041016, + "step": 7700 + }, + { + "epoch": 25.24330900243309, + "grad_norm": 0.21193180978298187, + "learning_rate": 3.738025889967638e-05, + "loss": 0.5195016479492187, + "step": 7800 + }, + { + "epoch": 25.56772100567721, + "grad_norm": 0.24408023059368134, + "learning_rate": 3.721844660194175e-05, + "loss": 0.5128348922729492, + "step": 7900 + }, + { + "epoch": 25.89213300892133, + "grad_norm": 0.2301139086484909, + "learning_rate": 3.705663430420712e-05, + "loss": 0.5274497222900391, + "step": 8000 + }, + { + "epoch": 26.214111922141118, + "grad_norm": 0.23104797303676605, + "learning_rate": 3.6894822006472495e-05, + "loss": 0.5127175521850585, + "step": 8100 + }, + { + "epoch": 26.53852392538524, + "grad_norm": 0.25776928663253784, + "learning_rate": 3.6733009708737865e-05, + "loss": 0.5081464004516602, + "step": 8200 + }, + { + "epoch": 26.86293592862936, + "grad_norm": 0.23275628685951233, + "learning_rate": 3.657119741100324e-05, + "loss": 0.5066284942626953, + "step": 8300 + }, + { + "epoch": 27.18491484184915, + "grad_norm": 0.25895944237709045, + "learning_rate": 3.640938511326861e-05, + "loss": 0.4974431228637695, + "step": 8400 + }, + { + "epoch": 27.50932684509327, + "grad_norm": 0.2517513632774353, + "learning_rate": 3.624757281553398e-05, + "loss": 0.49229534149169923, + "step": 8500 + }, + { + "epoch": 27.83373884833739, + "grad_norm": 0.27210375666618347, + "learning_rate": 3.6085760517799355e-05, + "loss": 0.49578163146972654, + "step": 8600 + }, + { + "epoch": 28.155717761557177, + "grad_norm": 0.27576959133148193, + "learning_rate": 3.592394822006473e-05, + "loss": 0.49141166687011717, + "step": 8700 + }, + { + "epoch": 28.480129764801298, + "grad_norm": 0.26969099044799805, + "learning_rate": 3.57621359223301e-05, + "loss": 0.47837520599365235, + "step": 8800 + }, + { + "epoch": 28.804541768045418, + "grad_norm": 0.2485017627477646, + "learning_rate": 3.560032362459547e-05, + "loss": 0.4838485336303711, + "step": 8900 + }, + { + "epoch": 29.126520681265205, + "grad_norm": 0.2618029713630676, + "learning_rate": 3.543851132686084e-05, + "loss": 0.4762223052978516, + "step": 9000 + }, + { + "epoch": 29.450932684509326, + "grad_norm": 0.25002509355545044, + "learning_rate": 3.5276699029126215e-05, + "loss": 0.4613980865478516, + "step": 9100 + }, + { + "epoch": 29.775344687753446, + "grad_norm": 0.2622935473918915, + "learning_rate": 3.511488673139159e-05, + "loss": 0.46839576721191406, + "step": 9200 + }, + { + "epoch": 30.097323600973237, + "grad_norm": 0.27539685368537903, + "learning_rate": 3.495307443365696e-05, + "loss": 0.46719558715820314, + "step": 9300 + }, + { + "epoch": 30.421735604217357, + "grad_norm": 0.2709919512271881, + "learning_rate": 3.479126213592233e-05, + "loss": 0.44856761932373046, + "step": 9400 + }, + { + "epoch": 30.746147607461477, + "grad_norm": 0.2810458242893219, + "learning_rate": 3.4629449838187706e-05, + "loss": 0.4556717300415039, + "step": 9500 + }, + { + "epoch": 31.068126520681265, + "grad_norm": 0.2798343002796173, + "learning_rate": 3.4467637540453075e-05, + "loss": 0.45173492431640627, + "step": 9600 + }, + { + "epoch": 31.392538523925385, + "grad_norm": 0.3120841383934021, + "learning_rate": 3.430582524271845e-05, + "loss": 0.4392761993408203, + "step": 9700 + }, + { + "epoch": 31.716950527169505, + "grad_norm": 0.2956726551055908, + "learning_rate": 3.414401294498382e-05, + "loss": 0.4437244415283203, + "step": 9800 + }, + { + "epoch": 32.038929440389296, + "grad_norm": 0.2856016457080841, + "learning_rate": 3.398220064724919e-05, + "loss": 0.441302490234375, + "step": 9900 + }, + { + "epoch": 32.363341443633416, + "grad_norm": 0.2965444028377533, + "learning_rate": 3.3820388349514566e-05, + "loss": 0.42223735809326174, + "step": 10000 + }, + { + "epoch": 32.68775344687754, + "grad_norm": 0.2714678943157196, + "learning_rate": 3.365857605177994e-05, + "loss": 0.43019737243652345, + "step": 10100 + }, + { + "epoch": 33.009732360097324, + "grad_norm": 0.23514199256896973, + "learning_rate": 3.3496763754045304e-05, + "loss": 0.4372244644165039, + "step": 10200 + }, + { + "epoch": 33.334144363341444, + "grad_norm": 0.26974233984947205, + "learning_rate": 3.333495145631068e-05, + "loss": 0.41183216094970704, + "step": 10300 + }, + { + "epoch": 33.658556366585564, + "grad_norm": 0.29364973306655884, + "learning_rate": 3.3173139158576056e-05, + "loss": 0.4156087112426758, + "step": 10400 + }, + { + "epoch": 33.982968369829685, + "grad_norm": 0.3023452162742615, + "learning_rate": 3.3011326860841425e-05, + "loss": 0.4232332992553711, + "step": 10500 + }, + { + "epoch": 34.30494728304947, + "grad_norm": 0.2768167555332184, + "learning_rate": 3.2849514563106795e-05, + "loss": 0.4014273452758789, + "step": 10600 + }, + { + "epoch": 34.62935928629359, + "grad_norm": 0.3322605788707733, + "learning_rate": 3.268770226537217e-05, + "loss": 0.40524036407470704, + "step": 10700 + }, + { + "epoch": 34.95377128953771, + "grad_norm": 0.3203238546848297, + "learning_rate": 3.252588996763754e-05, + "loss": 0.40970794677734373, + "step": 10800 + }, + { + "epoch": 35.2757502027575, + "grad_norm": 0.303089439868927, + "learning_rate": 3.2364077669902916e-05, + "loss": 0.38891010284423827, + "step": 10900 + }, + { + "epoch": 35.60016220600162, + "grad_norm": 0.29558560252189636, + "learning_rate": 3.220226537216829e-05, + "loss": 0.3949446105957031, + "step": 11000 + }, + { + "epoch": 35.92457420924574, + "grad_norm": 0.3112625479698181, + "learning_rate": 3.2040453074433655e-05, + "loss": 0.39758953094482424, + "step": 11100 + }, + { + "epoch": 36.24655312246553, + "grad_norm": 0.3039425313472748, + "learning_rate": 3.187864077669903e-05, + "loss": 0.38358245849609374, + "step": 11200 + }, + { + "epoch": 36.57096512570965, + "grad_norm": 0.3353067934513092, + "learning_rate": 3.171682847896441e-05, + "loss": 0.3797079849243164, + "step": 11300 + }, + { + "epoch": 36.89537712895377, + "grad_norm": 0.367567241191864, + "learning_rate": 3.1555016181229776e-05, + "loss": 0.38862274169921873, + "step": 11400 + }, + { + "epoch": 37.21735604217356, + "grad_norm": 0.32198429107666016, + "learning_rate": 3.1393203883495145e-05, + "loss": 0.37104736328125, + "step": 11500 + }, + { + "epoch": 37.54176804541768, + "grad_norm": 0.29541313648223877, + "learning_rate": 3.1231391585760514e-05, + "loss": 0.37103946685791017, + "step": 11600 + }, + { + "epoch": 37.8661800486618, + "grad_norm": 0.34138020873069763, + "learning_rate": 3.106957928802589e-05, + "loss": 0.37340602874755857, + "step": 11700 + }, + { + "epoch": 38.18815896188159, + "grad_norm": 0.301660418510437, + "learning_rate": 3.0907766990291267e-05, + "loss": 0.36555946350097657, + "step": 11800 + }, + { + "epoch": 38.51257096512571, + "grad_norm": 0.2793280780315399, + "learning_rate": 3.0745954692556636e-05, + "loss": 0.35706504821777346, + "step": 11900 + }, + { + "epoch": 38.83698296836983, + "grad_norm": 0.2934885621070862, + "learning_rate": 3.0584142394822005e-05, + "loss": 0.3642056655883789, + "step": 12000 + }, + { + "epoch": 39.15896188158962, + "grad_norm": 0.3178177773952484, + "learning_rate": 3.042233009708738e-05, + "loss": 0.3558914566040039, + "step": 12100 + }, + { + "epoch": 39.48337388483374, + "grad_norm": 0.32718706130981445, + "learning_rate": 3.026051779935275e-05, + "loss": 0.34923362731933594, + "step": 12200 + }, + { + "epoch": 39.80778588807786, + "grad_norm": 0.32444027066230774, + "learning_rate": 3.0098705501618123e-05, + "loss": 0.3525634002685547, + "step": 12300 + }, + { + "epoch": 40.12976480129765, + "grad_norm": 0.3068920075893402, + "learning_rate": 2.99368932038835e-05, + "loss": 0.3468068695068359, + "step": 12400 + }, + { + "epoch": 40.45417680454177, + "grad_norm": 0.31230300664901733, + "learning_rate": 2.977508090614887e-05, + "loss": 0.3374324798583984, + "step": 12500 + }, + { + "epoch": 40.77858880778589, + "grad_norm": 0.35733962059020996, + "learning_rate": 2.961326860841424e-05, + "loss": 0.3439715576171875, + "step": 12600 + }, + { + "epoch": 41.100567721005675, + "grad_norm": 0.3116827607154846, + "learning_rate": 2.9451456310679614e-05, + "loss": 0.3388735961914062, + "step": 12700 + }, + { + "epoch": 41.424979724249795, + "grad_norm": 0.3260541558265686, + "learning_rate": 2.9289644012944983e-05, + "loss": 0.3278466796875, + "step": 12800 + }, + { + "epoch": 41.749391727493915, + "grad_norm": 0.3492940068244934, + "learning_rate": 2.912783171521036e-05, + "loss": 0.33501758575439455, + "step": 12900 + }, + { + "epoch": 42.07137064071371, + "grad_norm": 0.33961179852485657, + "learning_rate": 2.896601941747573e-05, + "loss": 0.332823600769043, + "step": 13000 + }, + { + "epoch": 42.39578264395783, + "grad_norm": 0.3111296594142914, + "learning_rate": 2.88042071197411e-05, + "loss": 0.31814098358154297, + "step": 13100 + }, + { + "epoch": 42.72019464720195, + "grad_norm": 0.33305123448371887, + "learning_rate": 2.8642394822006473e-05, + "loss": 0.3256596374511719, + "step": 13200 + }, + { + "epoch": 43.04217356042174, + "grad_norm": 0.28727594017982483, + "learning_rate": 2.848058252427185e-05, + "loss": 0.32629146575927737, + "step": 13300 + }, + { + "epoch": 43.36658556366586, + "grad_norm": 0.3200686573982239, + "learning_rate": 2.8318770226537215e-05, + "loss": 0.310048885345459, + "step": 13400 + }, + { + "epoch": 43.69099756690998, + "grad_norm": 0.3261258602142334, + "learning_rate": 2.815695792880259e-05, + "loss": 0.3169711685180664, + "step": 13500 + }, + { + "epoch": 44.012976480129765, + "grad_norm": 0.32062989473342896, + "learning_rate": 2.7995145631067964e-05, + "loss": 0.31799676895141604, + "step": 13600 + }, + { + "epoch": 44.337388483373886, + "grad_norm": 0.3417779803276062, + "learning_rate": 2.7833333333333333e-05, + "loss": 0.3045396614074707, + "step": 13700 + }, + { + "epoch": 44.661800486618006, + "grad_norm": 0.32301145792007446, + "learning_rate": 2.7671521035598706e-05, + "loss": 0.3061079978942871, + "step": 13800 + }, + { + "epoch": 44.986212489862126, + "grad_norm": 0.3934004008769989, + "learning_rate": 2.7509708737864082e-05, + "loss": 0.31222929000854494, + "step": 13900 + }, + { + "epoch": 45.30819140308191, + "grad_norm": 0.33090853691101074, + "learning_rate": 2.734789644012945e-05, + "loss": 0.29367765426635745, + "step": 14000 + }, + { + "epoch": 45.632603406326034, + "grad_norm": 0.3316773474216461, + "learning_rate": 2.7186084142394824e-05, + "loss": 0.30018712997436525, + "step": 14100 + }, + { + "epoch": 45.957015409570154, + "grad_norm": 0.36180180311203003, + "learning_rate": 2.7024271844660193e-05, + "loss": 0.3031520080566406, + "step": 14200 + }, + { + "epoch": 46.27899432278994, + "grad_norm": 0.32503196597099304, + "learning_rate": 2.6862459546925566e-05, + "loss": 0.29114202499389646, + "step": 14300 + }, + { + "epoch": 46.60340632603406, + "grad_norm": 0.36477360129356384, + "learning_rate": 2.6700647249190942e-05, + "loss": 0.29186737060546875, + "step": 14400 + }, + { + "epoch": 46.92781832927818, + "grad_norm": 0.3492746949195862, + "learning_rate": 2.6538834951456308e-05, + "loss": 0.296141300201416, + "step": 14500 + }, + { + "epoch": 47.24979724249797, + "grad_norm": 0.32664960622787476, + "learning_rate": 2.6378640776699032e-05, + "loss": 0.2826018142700195, + "step": 14600 + }, + { + "epoch": 47.57420924574209, + "grad_norm": 0.3388548493385315, + "learning_rate": 2.62168284789644e-05, + "loss": 0.28671709060668943, + "step": 14700 + }, + { + "epoch": 47.89862124898621, + "grad_norm": 0.38633057475090027, + "learning_rate": 2.6055016181229774e-05, + "loss": 0.2910732078552246, + "step": 14800 + }, + { + "epoch": 48.220600162206004, + "grad_norm": 0.31736406683921814, + "learning_rate": 2.5893203883495147e-05, + "loss": 0.2784827995300293, + "step": 14900 + }, + { + "epoch": 48.545012165450125, + "grad_norm": 0.37021875381469727, + "learning_rate": 2.5731391585760516e-05, + "loss": 0.2798298263549805, + "step": 15000 + }, + { + "epoch": 48.869424168694245, + "grad_norm": 0.34544867277145386, + "learning_rate": 2.5569579288025892e-05, + "loss": 0.2821967697143555, + "step": 15100 + }, + { + "epoch": 49.19140308191403, + "grad_norm": 0.31732165813446045, + "learning_rate": 2.5407766990291265e-05, + "loss": 0.27426704406738284, + "step": 15200 + }, + { + "epoch": 49.51581508515815, + "grad_norm": 0.3201292157173157, + "learning_rate": 2.5245954692556634e-05, + "loss": 0.27101806640625, + "step": 15300 + }, + { + "epoch": 49.84022708840227, + "grad_norm": 0.33511412143707275, + "learning_rate": 2.5084142394822007e-05, + "loss": 0.27499908447265625, + "step": 15400 + }, + { + "epoch": 50.16220600162206, + "grad_norm": 0.347622275352478, + "learning_rate": 2.492233009708738e-05, + "loss": 0.26981922149658205, + "step": 15500 + }, + { + "epoch": 50.48661800486618, + "grad_norm": 0.3041851222515106, + "learning_rate": 2.4760517799352752e-05, + "loss": 0.2654261589050293, + "step": 15600 + }, + { + "epoch": 50.8110300081103, + "grad_norm": 0.3489990830421448, + "learning_rate": 2.4598705501618125e-05, + "loss": 0.2702595329284668, + "step": 15700 + }, + { + "epoch": 51.13300892133009, + "grad_norm": 0.30876776576042175, + "learning_rate": 2.4436893203883494e-05, + "loss": 0.2657257843017578, + "step": 15800 + }, + { + "epoch": 51.45742092457421, + "grad_norm": 0.34536364674568176, + "learning_rate": 2.4275080906148867e-05, + "loss": 0.261352596282959, + "step": 15900 + }, + { + "epoch": 51.78183292781833, + "grad_norm": 0.3297542333602905, + "learning_rate": 2.4113268608414243e-05, + "loss": 0.26374523162841795, + "step": 16000 + }, + { + "epoch": 52.103811841038116, + "grad_norm": 0.3442004323005676, + "learning_rate": 2.3951456310679612e-05, + "loss": 0.2606217002868652, + "step": 16100 + }, + { + "epoch": 52.428223844282236, + "grad_norm": 0.32110315561294556, + "learning_rate": 2.3789644012944985e-05, + "loss": 0.25471590042114256, + "step": 16200 + }, + { + "epoch": 52.752635847526356, + "grad_norm": 0.35750967264175415, + "learning_rate": 2.3627831715210357e-05, + "loss": 0.25818721771240233, + "step": 16300 + }, + { + "epoch": 53.07461476074615, + "grad_norm": 0.3167541027069092, + "learning_rate": 2.346601941747573e-05, + "loss": 0.25791025161743164, + "step": 16400 + }, + { + "epoch": 53.39902676399027, + "grad_norm": 0.3614417314529419, + "learning_rate": 2.33042071197411e-05, + "loss": 0.2503541374206543, + "step": 16500 + }, + { + "epoch": 53.723438767234384, + "grad_norm": 0.3383695185184479, + "learning_rate": 2.3142394822006475e-05, + "loss": 0.25205833435058594, + "step": 16600 + }, + { + "epoch": 54.04541768045418, + "grad_norm": 0.3129797577857971, + "learning_rate": 2.298220064724919e-05, + "loss": 0.2553220558166504, + "step": 16700 + }, + { + "epoch": 54.3698296836983, + "grad_norm": 0.32768893241882324, + "learning_rate": 2.2820388349514566e-05, + "loss": 0.2452069664001465, + "step": 16800 + }, + { + "epoch": 54.69424168694242, + "grad_norm": 0.34217071533203125, + "learning_rate": 2.2658576051779935e-05, + "loss": 0.2495290756225586, + "step": 16900 + }, + { + "epoch": 55.01622060016221, + "grad_norm": 0.3423132002353668, + "learning_rate": 2.2496763754045308e-05, + "loss": 0.25019683837890627, + "step": 17000 + }, + { + "epoch": 55.34063260340633, + "grad_norm": 0.34714990854263306, + "learning_rate": 2.233495145631068e-05, + "loss": 0.24028772354125977, + "step": 17100 + }, + { + "epoch": 55.66504460665045, + "grad_norm": 0.32141968607902527, + "learning_rate": 2.2173139158576053e-05, + "loss": 0.2443995475769043, + "step": 17200 + }, + { + "epoch": 55.98945660989457, + "grad_norm": 0.3385929763317108, + "learning_rate": 2.2011326860841426e-05, + "loss": 0.24807867050170898, + "step": 17300 + }, + { + "epoch": 56.311435523114355, + "grad_norm": 0.3463747203350067, + "learning_rate": 2.1849514563106795e-05, + "loss": 0.23618980407714843, + "step": 17400 + }, + { + "epoch": 56.635847526358475, + "grad_norm": 0.3065926730632782, + "learning_rate": 2.168770226537217e-05, + "loss": 0.23906055450439453, + "step": 17500 + }, + { + "epoch": 56.960259529602595, + "grad_norm": 0.3168463408946991, + "learning_rate": 2.152588996763754e-05, + "loss": 0.24397821426391603, + "step": 17600 + }, + { + "epoch": 57.28223844282238, + "grad_norm": 0.3540167510509491, + "learning_rate": 2.1364077669902913e-05, + "loss": 0.2341847038269043, + "step": 17700 + }, + { + "epoch": 57.6066504460665, + "grad_norm": 0.3474962115287781, + "learning_rate": 2.1202265372168286e-05, + "loss": 0.23654184341430665, + "step": 17800 + }, + { + "epoch": 57.93106244931062, + "grad_norm": 0.3104344606399536, + "learning_rate": 2.1040453074433658e-05, + "loss": 0.238500919342041, + "step": 17900 + }, + { + "epoch": 58.25304136253041, + "grad_norm": 0.2928438186645508, + "learning_rate": 2.087864077669903e-05, + "loss": 0.2317611312866211, + "step": 18000 + }, + { + "epoch": 58.57745336577453, + "grad_norm": 0.34206250309944153, + "learning_rate": 2.0716828478964404e-05, + "loss": 0.23266231536865234, + "step": 18100 + }, + { + "epoch": 58.90186536901865, + "grad_norm": 0.3680970370769501, + "learning_rate": 2.0555016181229776e-05, + "loss": 0.23497753143310546, + "step": 18200 + }, + { + "epoch": 59.223844282238446, + "grad_norm": 0.3037141263484955, + "learning_rate": 2.0393203883495145e-05, + "loss": 0.2270449447631836, + "step": 18300 + }, + { + "epoch": 59.548256285482566, + "grad_norm": 0.3106273114681244, + "learning_rate": 2.0231391585760518e-05, + "loss": 0.22707063674926758, + "step": 18400 + }, + { + "epoch": 59.872668288726686, + "grad_norm": 0.36219528317451477, + "learning_rate": 2.006957928802589e-05, + "loss": 0.2324913787841797, + "step": 18500 + }, + { + "epoch": 60.194647201946474, + "grad_norm": 0.3081775903701782, + "learning_rate": 1.9907766990291263e-05, + "loss": 0.22577075958251952, + "step": 18600 + }, + { + "epoch": 60.519059205190594, + "grad_norm": 0.3376457989215851, + "learning_rate": 1.9745954692556633e-05, + "loss": 0.2236073112487793, + "step": 18700 + }, + { + "epoch": 60.843471208434714, + "grad_norm": 0.3010921776294708, + "learning_rate": 1.958414239482201e-05, + "loss": 0.2290345001220703, + "step": 18800 + }, + { + "epoch": 61.1654501216545, + "grad_norm": 0.3345211148262024, + "learning_rate": 1.9422330097087378e-05, + "loss": 0.22328811645507812, + "step": 18900 + }, + { + "epoch": 61.48986212489862, + "grad_norm": 0.35830914974212646, + "learning_rate": 1.926051779935275e-05, + "loss": 0.22145767211914064, + "step": 19000 + }, + { + "epoch": 61.81427412814274, + "grad_norm": 0.3177037835121155, + "learning_rate": 1.9098705501618123e-05, + "loss": 0.223042049407959, + "step": 19100 + }, + { + "epoch": 62.13625304136253, + "grad_norm": 0.2974834442138672, + "learning_rate": 1.8936893203883496e-05, + "loss": 0.221235294342041, + "step": 19200 + }, + { + "epoch": 62.46066504460665, + "grad_norm": 0.3040814995765686, + "learning_rate": 1.877508090614887e-05, + "loss": 0.21824802398681642, + "step": 19300 + }, + { + "epoch": 62.78507704785077, + "grad_norm": 0.3453911244869232, + "learning_rate": 1.861326860841424e-05, + "loss": 0.22165294647216796, + "step": 19400 + }, + { + "epoch": 63.10705596107056, + "grad_norm": 0.3323674201965332, + "learning_rate": 1.8451456310679614e-05, + "loss": 0.21942996978759766, + "step": 19500 + }, + { + "epoch": 63.43146796431468, + "grad_norm": 0.2868025302886963, + "learning_rate": 1.8289644012944983e-05, + "loss": 0.2159541893005371, + "step": 19600 + }, + { + "epoch": 63.7558799675588, + "grad_norm": 0.2985902428627014, + "learning_rate": 1.8127831715210356e-05, + "loss": 0.21843338012695312, + "step": 19700 + }, + { + "epoch": 64.07785888077859, + "grad_norm": 0.29877224564552307, + "learning_rate": 1.796601941747573e-05, + "loss": 0.21846704483032225, + "step": 19800 + }, + { + "epoch": 64.40227088402271, + "grad_norm": 0.31725695729255676, + "learning_rate": 1.78042071197411e-05, + "loss": 0.2123063850402832, + "step": 19900 + }, + { + "epoch": 64.72668288726683, + "grad_norm": 0.30116891860961914, + "learning_rate": 1.7642394822006474e-05, + "loss": 0.21550237655639648, + "step": 20000 + }, + { + "epoch": 65.04866180048661, + "grad_norm": 0.33267149329185486, + "learning_rate": 1.7480582524271846e-05, + "loss": 0.2158302879333496, + "step": 20100 + }, + { + "epoch": 65.37307380373073, + "grad_norm": 0.30885910987854004, + "learning_rate": 1.731877022653722e-05, + "loss": 0.2090800666809082, + "step": 20200 + }, + { + "epoch": 65.69748580697485, + "grad_norm": 0.31430330872535706, + "learning_rate": 1.715695792880259e-05, + "loss": 0.21172605514526366, + "step": 20300 + }, + { + "epoch": 66.01946472019465, + "grad_norm": 0.2837020754814148, + "learning_rate": 1.6995145631067964e-05, + "loss": 0.21372562408447265, + "step": 20400 + }, + { + "epoch": 66.34387672343877, + "grad_norm": 0.30839094519615173, + "learning_rate": 1.6833333333333334e-05, + "loss": 0.20695215225219726, + "step": 20500 + }, + { + "epoch": 66.66828872668289, + "grad_norm": 0.31136852502822876, + "learning_rate": 1.6671521035598706e-05, + "loss": 0.20894838333129884, + "step": 20600 + }, + { + "epoch": 66.99270072992701, + "grad_norm": 0.2942120432853699, + "learning_rate": 1.650970873786408e-05, + "loss": 0.21177177429199218, + "step": 20700 + }, + { + "epoch": 67.3146796431468, + "grad_norm": 0.32769644260406494, + "learning_rate": 1.6349514563106797e-05, + "loss": 0.20521749496459962, + "step": 20800 + }, + { + "epoch": 67.63909164639091, + "grad_norm": 0.3272440731525421, + "learning_rate": 1.6187702265372166e-05, + "loss": 0.2083640480041504, + "step": 20900 + }, + { + "epoch": 67.96350364963503, + "grad_norm": 0.2725636959075928, + "learning_rate": 1.6025889967637542e-05, + "loss": 0.2089810562133789, + "step": 21000 + }, + { + "epoch": 68.28548256285482, + "grad_norm": 0.2833479046821594, + "learning_rate": 1.5864077669902915e-05, + "loss": 0.20403633117675782, + "step": 21100 + }, + { + "epoch": 68.60989456609894, + "grad_norm": 0.2848324477672577, + "learning_rate": 1.5702265372168284e-05, + "loss": 0.2053829574584961, + "step": 21200 + }, + { + "epoch": 68.93430656934306, + "grad_norm": 0.324773907661438, + "learning_rate": 1.554045307443366e-05, + "loss": 0.206777400970459, + "step": 21300 + }, + { + "epoch": 69.25628548256286, + "grad_norm": 0.2661566734313965, + "learning_rate": 1.537864077669903e-05, + "loss": 0.20142404556274415, + "step": 21400 + }, + { + "epoch": 69.58069748580698, + "grad_norm": 0.28439629077911377, + "learning_rate": 1.52168284789644e-05, + "loss": 0.20303123474121093, + "step": 21500 + }, + { + "epoch": 69.9051094890511, + "grad_norm": 0.33656612038612366, + "learning_rate": 1.5055016181229775e-05, + "loss": 0.20467769622802734, + "step": 21600 + }, + { + "epoch": 70.22708840227088, + "grad_norm": 0.32043009996414185, + "learning_rate": 1.4893203883495147e-05, + "loss": 0.20070859909057617, + "step": 21700 + }, + { + "epoch": 70.551500405515, + "grad_norm": 0.3048563599586487, + "learning_rate": 1.4731391585760518e-05, + "loss": 0.20159858703613281, + "step": 21800 + }, + { + "epoch": 70.87591240875912, + "grad_norm": 0.2664601802825928, + "learning_rate": 1.4569579288025893e-05, + "loss": 0.20171623229980468, + "step": 21900 + }, + { + "epoch": 71.19789132197891, + "grad_norm": 0.3018724322319031, + "learning_rate": 1.4407766990291264e-05, + "loss": 0.19853240966796876, + "step": 22000 + }, + { + "epoch": 71.52230332522304, + "grad_norm": 0.2770579755306244, + "learning_rate": 1.4245954692556635e-05, + "loss": 0.1985287857055664, + "step": 22100 + }, + { + "epoch": 71.84671532846716, + "grad_norm": 0.2877587080001831, + "learning_rate": 1.4084142394822005e-05, + "loss": 0.2016657066345215, + "step": 22200 + }, + { + "epoch": 72.16869424168694, + "grad_norm": 0.3253211975097656, + "learning_rate": 1.392233009708738e-05, + "loss": 0.19735158920288087, + "step": 22300 + }, + { + "epoch": 72.49310624493106, + "grad_norm": 0.2870253920555115, + "learning_rate": 1.376051779935275e-05, + "loss": 0.19713401794433594, + "step": 22400 + }, + { + "epoch": 72.81751824817518, + "grad_norm": 0.32006755471229553, + "learning_rate": 1.3598705501618122e-05, + "loss": 0.1988151741027832, + "step": 22500 + }, + { + "epoch": 73.13949716139497, + "grad_norm": 0.28510263562202454, + "learning_rate": 1.3436893203883496e-05, + "loss": 0.19770748138427735, + "step": 22600 + }, + { + "epoch": 73.46390916463909, + "grad_norm": 0.2950480878353119, + "learning_rate": 1.3275080906148869e-05, + "loss": 0.195107364654541, + "step": 22700 + }, + { + "epoch": 73.78832116788321, + "grad_norm": 0.30394643545150757, + "learning_rate": 1.311326860841424e-05, + "loss": 0.1975857925415039, + "step": 22800 + }, + { + "epoch": 74.110300081103, + "grad_norm": 0.29557764530181885, + "learning_rate": 1.295307443365696e-05, + "loss": 0.19621952056884764, + "step": 22900 + }, + { + "epoch": 74.43471208434713, + "grad_norm": 0.27801787853240967, + "learning_rate": 1.279126213592233e-05, + "loss": 0.1924858283996582, + "step": 23000 + }, + { + "epoch": 74.75912408759125, + "grad_norm": 0.32521647214889526, + "learning_rate": 1.2629449838187705e-05, + "loss": 0.19586196899414063, + "step": 23100 + }, + { + "epoch": 75.08110300081103, + "grad_norm": 0.27390602231025696, + "learning_rate": 1.2467637540453075e-05, + "loss": 0.19569822311401366, + "step": 23200 + }, + { + "epoch": 75.40551500405515, + "grad_norm": 0.27017250657081604, + "learning_rate": 1.2305825242718446e-05, + "loss": 0.1917603874206543, + "step": 23300 + }, + { + "epoch": 75.72992700729927, + "grad_norm": 0.2980138957500458, + "learning_rate": 1.2144012944983819e-05, + "loss": 0.1927776336669922, + "step": 23400 + }, + { + "epoch": 76.05190592051906, + "grad_norm": 0.3057159185409546, + "learning_rate": 1.1982200647249192e-05, + "loss": 0.19304771423339845, + "step": 23500 + }, + { + "epoch": 76.37631792376318, + "grad_norm": 0.29936423897743225, + "learning_rate": 1.1820388349514563e-05, + "loss": 0.19062232971191406, + "step": 23600 + }, + { + "epoch": 76.7007299270073, + "grad_norm": 0.3179267942905426, + "learning_rate": 1.1658576051779935e-05, + "loss": 0.19235507965087892, + "step": 23700 + }, + { + "epoch": 77.02270884022708, + "grad_norm": 0.25758758187294006, + "learning_rate": 1.1496763754045308e-05, + "loss": 0.1918639373779297, + "step": 23800 + }, + { + "epoch": 77.3471208434712, + "grad_norm": 0.2676644027233124, + "learning_rate": 1.133495145631068e-05, + "loss": 0.18774497985839844, + "step": 23900 + }, + { + "epoch": 77.67153284671532, + "grad_norm": 0.25918132066726685, + "learning_rate": 1.1173139158576053e-05, + "loss": 0.18990053176879884, + "step": 24000 + }, + { + "epoch": 77.99594484995944, + "grad_norm": 0.25803694128990173, + "learning_rate": 1.1011326860841424e-05, + "loss": 0.19139570236206055, + "step": 24100 + }, + { + "epoch": 78.31792376317924, + "grad_norm": 0.2896536588668823, + "learning_rate": 1.0849514563106797e-05, + "loss": 0.18745737075805663, + "step": 24200 + }, + { + "epoch": 78.64233576642336, + "grad_norm": 0.2941916286945343, + "learning_rate": 1.0687702265372168e-05, + "loss": 0.18780550003051757, + "step": 24300 + }, + { + "epoch": 78.96674776966748, + "grad_norm": 0.28496670722961426, + "learning_rate": 1.052588996763754e-05, + "loss": 0.19009716033935548, + "step": 24400 + }, + { + "epoch": 79.28872668288727, + "grad_norm": 0.29919925332069397, + "learning_rate": 1.0364077669902913e-05, + "loss": 0.18620597839355468, + "step": 24500 + }, + { + "epoch": 79.61313868613139, + "grad_norm": 0.285383939743042, + "learning_rate": 1.0202265372168284e-05, + "loss": 0.18723442077636718, + "step": 24600 + }, + { + "epoch": 79.93755068937551, + "grad_norm": 0.2821769416332245, + "learning_rate": 1.0040453074433657e-05, + "loss": 0.1882436180114746, + "step": 24700 + }, + { + "epoch": 80.2595296025953, + "grad_norm": 0.291644424200058, + "learning_rate": 9.87864077669903e-06, + "loss": 0.18627639770507812, + "step": 24800 + }, + { + "epoch": 80.58394160583941, + "grad_norm": 0.28841665387153625, + "learning_rate": 9.716828478964402e-06, + "loss": 0.1859906768798828, + "step": 24900 + }, + { + "epoch": 80.90835360908353, + "grad_norm": 0.2513130307197571, + "learning_rate": 9.555016181229775e-06, + "loss": 0.18743871688842773, + "step": 25000 + }, + { + "epoch": 81.23033252230333, + "grad_norm": 0.28746384382247925, + "learning_rate": 9.394822006472493e-06, + "loss": 0.18453241348266602, + "step": 25100 + }, + { + "epoch": 81.55474452554745, + "grad_norm": 0.29126232862472534, + "learning_rate": 9.233009708737865e-06, + "loss": 0.1854015350341797, + "step": 25200 + }, + { + "epoch": 81.87915652879157, + "grad_norm": 0.2970152795314789, + "learning_rate": 9.071197411003236e-06, + "loss": 0.18607795715332032, + "step": 25300 + }, + { + "epoch": 82.20113544201135, + "grad_norm": 0.30898556113243103, + "learning_rate": 8.909385113268609e-06, + "loss": 0.18391321182250978, + "step": 25400 + }, + { + "epoch": 82.52554744525547, + "grad_norm": 0.2530721426010132, + "learning_rate": 8.74757281553398e-06, + "loss": 0.1833015823364258, + "step": 25500 + }, + { + "epoch": 82.84995944849959, + "grad_norm": 0.26257285475730896, + "learning_rate": 8.585760517799352e-06, + "loss": 0.18504741668701172, + "step": 25600 + }, + { + "epoch": 83.17193836171938, + "grad_norm": 0.29258695244789124, + "learning_rate": 8.423948220064725e-06, + "loss": 0.18265727996826173, + "step": 25700 + }, + { + "epoch": 83.4963503649635, + "grad_norm": 0.28137892484664917, + "learning_rate": 8.262135922330098e-06, + "loss": 0.1820280647277832, + "step": 25800 + }, + { + "epoch": 83.82076236820762, + "grad_norm": 0.253631055355072, + "learning_rate": 8.10032362459547e-06, + "loss": 0.18374771118164063, + "step": 25900 + }, + { + "epoch": 84.14274128142742, + "grad_norm": 0.2612302005290985, + "learning_rate": 7.938511326860843e-06, + "loss": 0.1822812843322754, + "step": 26000 + }, + { + "epoch": 84.46715328467154, + "grad_norm": 0.2968967854976654, + "learning_rate": 7.776699029126214e-06, + "loss": 0.1804751205444336, + "step": 26100 + }, + { + "epoch": 84.79156528791566, + "grad_norm": 0.28858786821365356, + "learning_rate": 7.614886731391587e-06, + "loss": 0.1823977279663086, + "step": 26200 + }, + { + "epoch": 85.11354420113544, + "grad_norm": 0.24769216775894165, + "learning_rate": 7.453074433656958e-06, + "loss": 0.18158819198608397, + "step": 26300 + }, + { + "epoch": 85.43795620437956, + "grad_norm": 0.27769848704338074, + "learning_rate": 7.29126213592233e-06, + "loss": 0.18056314468383788, + "step": 26400 + }, + { + "epoch": 85.76236820762368, + "grad_norm": 0.30476441979408264, + "learning_rate": 7.129449838187703e-06, + "loss": 0.18116596221923828, + "step": 26500 + }, + { + "epoch": 86.08434712084347, + "grad_norm": 0.23022858798503876, + "learning_rate": 6.967637540453075e-06, + "loss": 0.18061212539672852, + "step": 26600 + }, + { + "epoch": 86.4087591240876, + "grad_norm": 0.28072357177734375, + "learning_rate": 6.805825242718447e-06, + "loss": 0.17919044494628905, + "step": 26700 + }, + { + "epoch": 86.73317112733172, + "grad_norm": 0.28679656982421875, + "learning_rate": 6.644012944983818e-06, + "loss": 0.17989681243896485, + "step": 26800 + }, + { + "epoch": 87.0551500405515, + "grad_norm": 0.23604606091976166, + "learning_rate": 6.482200647249191e-06, + "loss": 0.1802787208557129, + "step": 26900 + }, + { + "epoch": 87.37956204379562, + "grad_norm": 0.2767940163612366, + "learning_rate": 6.320388349514564e-06, + "loss": 0.17775949478149414, + "step": 27000 + }, + { + "epoch": 87.70397404703974, + "grad_norm": 0.2633722126483917, + "learning_rate": 6.1585760517799355e-06, + "loss": 0.17942682266235352, + "step": 27100 + }, + { + "epoch": 88.02595296025953, + "grad_norm": 0.254029780626297, + "learning_rate": 5.996763754045308e-06, + "loss": 0.17986074447631836, + "step": 27200 + }, + { + "epoch": 88.35036496350365, + "grad_norm": 0.25648459792137146, + "learning_rate": 5.83495145631068e-06, + "loss": 0.17738138198852538, + "step": 27300 + }, + { + "epoch": 88.67477696674777, + "grad_norm": 0.2450580894947052, + "learning_rate": 5.673139158576052e-06, + "loss": 0.17837905883789062, + "step": 27400 + }, + { + "epoch": 88.99918896999189, + "grad_norm": 0.2686944305896759, + "learning_rate": 5.511326860841424e-06, + "loss": 0.17965082168579102, + "step": 27500 + }, + { + "epoch": 89.32116788321167, + "grad_norm": 0.26215696334838867, + "learning_rate": 5.351132686084142e-06, + "loss": 0.17689130783081056, + "step": 27600 + }, + { + "epoch": 89.64557988645579, + "grad_norm": 0.2659305930137634, + "learning_rate": 5.189320388349515e-06, + "loss": 0.1780232620239258, + "step": 27700 + }, + { + "epoch": 89.96999188969991, + "grad_norm": 0.2572084665298462, + "learning_rate": 5.027508090614887e-06, + "loss": 0.17742925643920898, + "step": 27800 + }, + { + "epoch": 90.2919708029197, + "grad_norm": 0.2678115963935852, + "learning_rate": 4.865695792880259e-06, + "loss": 0.1759064292907715, + "step": 27900 + }, + { + "epoch": 90.61638280616383, + "grad_norm": 0.2606296241283417, + "learning_rate": 4.703883495145631e-06, + "loss": 0.176632080078125, + "step": 28000 + }, + { + "epoch": 90.94079480940795, + "grad_norm": 0.27705252170562744, + "learning_rate": 4.542071197411003e-06, + "loss": 0.17765697479248047, + "step": 28100 + }, + { + "epoch": 91.26277372262774, + "grad_norm": 0.2625502049922943, + "learning_rate": 4.380258899676376e-06, + "loss": 0.1756792449951172, + "step": 28200 + }, + { + "epoch": 91.58718572587186, + "grad_norm": 0.24927927553653717, + "learning_rate": 4.218446601941748e-06, + "loss": 0.17554109573364257, + "step": 28300 + }, + { + "epoch": 91.91159772911598, + "grad_norm": 0.240628182888031, + "learning_rate": 4.05663430420712e-06, + "loss": 0.17559316635131836, + "step": 28400 + }, + { + "epoch": 92.23357664233576, + "grad_norm": 0.2785760462284088, + "learning_rate": 3.894822006472492e-06, + "loss": 0.17503616333007813, + "step": 28500 + }, + { + "epoch": 92.55798864557988, + "grad_norm": 0.25900083780288696, + "learning_rate": 3.733009708737864e-06, + "loss": 0.17507522583007812, + "step": 28600 + }, + { + "epoch": 92.882400648824, + "grad_norm": 0.276037335395813, + "learning_rate": 3.5711974110032368e-06, + "loss": 0.17590507507324218, + "step": 28700 + }, + { + "epoch": 93.2043795620438, + "grad_norm": 0.2555212080478668, + "learning_rate": 3.4093851132686086e-06, + "loss": 0.17514604568481446, + "step": 28800 + }, + { + "epoch": 93.52879156528792, + "grad_norm": 0.2588745653629303, + "learning_rate": 3.247572815533981e-06, + "loss": 0.174718017578125, + "step": 28900 + }, + { + "epoch": 93.85320356853204, + "grad_norm": 0.2660391330718994, + "learning_rate": 3.0857605177993526e-06, + "loss": 0.17506734848022462, + "step": 29000 + }, + { + "epoch": 94.17518248175182, + "grad_norm": 0.2677949368953705, + "learning_rate": 2.9239482200647253e-06, + "loss": 0.17430608749389648, + "step": 29100 + }, + { + "epoch": 94.49959448499594, + "grad_norm": 0.28909972310066223, + "learning_rate": 2.762135922330097e-06, + "loss": 0.17481451034545897, + "step": 29200 + }, + { + "epoch": 94.82400648824006, + "grad_norm": 0.26000115275382996, + "learning_rate": 2.6003236245954693e-06, + "loss": 0.17436113357543945, + "step": 29300 + }, + { + "epoch": 95.14598540145985, + "grad_norm": 0.2968977987766266, + "learning_rate": 2.4385113268608415e-06, + "loss": 0.17399301528930664, + "step": 29400 + }, + { + "epoch": 95.47039740470397, + "grad_norm": 0.24084195494651794, + "learning_rate": 2.2766990291262138e-06, + "loss": 0.1732662582397461, + "step": 29500 + }, + { + "epoch": 95.7948094079481, + "grad_norm": 0.24390101432800293, + "learning_rate": 2.114886731391586e-06, + "loss": 0.17355813980102539, + "step": 29600 + }, + { + "epoch": 96.11678832116789, + "grad_norm": 0.24950821697711945, + "learning_rate": 1.9546925566343042e-06, + "loss": 0.17353734970092774, + "step": 29700 + }, + { + "epoch": 96.44120032441201, + "grad_norm": 0.2526560425758362, + "learning_rate": 1.7928802588996767e-06, + "loss": 0.17330703735351563, + "step": 29800 + }, + { + "epoch": 96.76561232765613, + "grad_norm": 0.2830760180950165, + "learning_rate": 1.6310679611650487e-06, + "loss": 0.1727421760559082, + "step": 29900 + }, + { + "epoch": 97.08759124087591, + "grad_norm": 0.21633441746234894, + "learning_rate": 1.4692556634304207e-06, + "loss": 0.17346202850341796, + "step": 30000 + }, + { + "epoch": 97.41200324412003, + "grad_norm": 0.23232562839984894, + "learning_rate": 1.307443365695793e-06, + "loss": 0.17300867080688476, + "step": 30100 + }, + { + "epoch": 97.73641524736415, + "grad_norm": 0.22741949558258057, + "learning_rate": 1.1456310679611652e-06, + "loss": 0.1723964500427246, + "step": 30200 + }, + { + "epoch": 98.05839416058394, + "grad_norm": 0.21481141448020935, + "learning_rate": 9.838187702265374e-07, + "loss": 0.17242773056030272, + "step": 30300 + }, + { + "epoch": 98.38280616382806, + "grad_norm": 0.26986297965049744, + "learning_rate": 8.220064724919095e-07, + "loss": 0.17295772552490235, + "step": 30400 + }, + { + "epoch": 98.70721816707218, + "grad_norm": 0.23824343085289001, + "learning_rate": 6.601941747572815e-07, + "loss": 0.1724873352050781, + "step": 30500 + } + ], + "logging_steps": 100, + "max_steps": 30900, + "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": 1.744296665481216e+16, + "train_batch_size": 8, + "trial_name": null, + "trial_params": null +} diff --git a/timecost/m6/realtabformer/rtf-m6-20260429_070344/rtf_checkpoints/checkpoint-30591/training_args.bin b/timecost/m6/realtabformer/rtf-m6-20260429_070344/rtf_checkpoints/checkpoint-30591/training_args.bin new file mode 100644 index 0000000000000000000000000000000000000000..34d68dc0e0fe1c1f12a2e581dd1b166aa7178a9e --- /dev/null +++ b/timecost/m6/realtabformer/rtf-m6-20260429_070344/rtf_checkpoints/checkpoint-30591/training_args.bin @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:9e2cd88337d1d846c6918d2b3b63fa3e5c93f12fefc082497590da854a564607 +size 5201 diff --git a/timecost/m6/realtabformer/rtf-m6-20260429_070344/rtf_checkpoints/checkpoint-30600/config.json b/timecost/m6/realtabformer/rtf-m6-20260429_070344/rtf_checkpoints/checkpoint-30600/config.json new file mode 100644 index 0000000000000000000000000000000000000000..5794e9cc1aa00a0ff98ed7967c3c2d9142841a1c --- /dev/null +++ b/timecost/m6/realtabformer/rtf-m6-20260429_070344/rtf_checkpoints/checkpoint-30600/config.json @@ -0,0 +1,34 @@ +{ + "activation_function": "gelu_new", + "add_cross_attention": false, + "architectures": [ + "GPT2LMHeadModel" + ], + "attn_pdrop": 0.1, + "bos_token_id": 5, + "dtype": "float32", + "embd_pdrop": 0.1, + "eos_token_id": 6, + "initializer_range": 0.02, + "layer_norm_epsilon": 1e-05, + "model_type": "gpt2", + "n_embd": 768, + "n_head": 12, + "n_inner": null, + "n_layer": 6, + "n_positions": 1024, + "pad_token_id": null, + "reorder_and_upcast_attn": false, + "resid_pdrop": 0.1, + "scale_attn_by_inverse_layer_idx": false, + "scale_attn_weights": true, + "summary_activation": null, + "summary_first_dropout": 0.1, + "summary_proj_to_labels": true, + "summary_type": "cls_index", + "summary_use_proj": true, + "tie_word_embeddings": true, + "transformers_version": "5.5.3", + "use_cache": false, + "vocab_size": 498 +} diff --git a/timecost/m6/realtabformer/rtf-m6-20260429_070344/rtf_checkpoints/checkpoint-30600/generation_config.json b/timecost/m6/realtabformer/rtf-m6-20260429_070344/rtf_checkpoints/checkpoint-30600/generation_config.json new file mode 100644 index 0000000000000000000000000000000000000000..ffe89567780e75b5c22eade9be971483b9618f39 --- /dev/null +++ b/timecost/m6/realtabformer/rtf-m6-20260429_070344/rtf_checkpoints/checkpoint-30600/generation_config.json @@ -0,0 +1,9 @@ +{ + "_from_model_config": true, + "bos_token_id": 5, + "eos_token_id": 6, + "output_attentions": false, + "output_hidden_states": false, + "transformers_version": "5.5.3", + "use_cache": true +} diff --git a/timecost/m6/realtabformer/rtf-m6-20260429_070344/rtf_checkpoints/checkpoint-30600/model.safetensors b/timecost/m6/realtabformer/rtf-m6-20260429_070344/rtf_checkpoints/checkpoint-30600/model.safetensors new file mode 100644 index 0000000000000000000000000000000000000000..872c23ee118a8ce68769cf1e99d5e96d1eb1650d --- /dev/null +++ b/timecost/m6/realtabformer/rtf-m6-20260429_070344/rtf_checkpoints/checkpoint-30600/model.safetensors @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:1f15f55272033dddd5d8dc173a2c0649b28eb4ffa16ae815d5b473b0461595e9 +size 174798280 diff --git a/timecost/m6/realtabformer/rtf-m6-20260429_070344/rtf_checkpoints/checkpoint-30600/optimizer.pt b/timecost/m6/realtabformer/rtf-m6-20260429_070344/rtf_checkpoints/checkpoint-30600/optimizer.pt new file mode 100644 index 0000000000000000000000000000000000000000..4076f566354130c7c9c619836228737c27c6034d --- /dev/null +++ b/timecost/m6/realtabformer/rtf-m6-20260429_070344/rtf_checkpoints/checkpoint-30600/optimizer.pt @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:8d5b4017a090135661d24b79e16d00998f8c3d98abbe5bff5d12e86abc3287a5 +size 349645643 diff --git a/timecost/m6/realtabformer/rtf-m6-20260429_070344/rtf_checkpoints/checkpoint-30600/rng_state.pth b/timecost/m6/realtabformer/rtf-m6-20260429_070344/rtf_checkpoints/checkpoint-30600/rng_state.pth new file mode 100644 index 0000000000000000000000000000000000000000..cc6ec97a70b2aace39402a63aba7e7486e51e818 --- /dev/null +++ b/timecost/m6/realtabformer/rtf-m6-20260429_070344/rtf_checkpoints/checkpoint-30600/rng_state.pth @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:d7f18a70ca6016ed4510b51c85ef08d5a5ac56b376e3eebf475bc5c2aa5e3d71 +size 14645 diff --git a/timecost/m6/realtabformer/rtf-m6-20260429_070344/rtf_checkpoints/checkpoint-30600/scaler.pt b/timecost/m6/realtabformer/rtf-m6-20260429_070344/rtf_checkpoints/checkpoint-30600/scaler.pt new file mode 100644 index 0000000000000000000000000000000000000000..758a9a1b6114388157440eaf8df3b9861ac3a436 --- /dev/null +++ b/timecost/m6/realtabformer/rtf-m6-20260429_070344/rtf_checkpoints/checkpoint-30600/scaler.pt @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:69f451a2119fe871b0027e14a5d6075015ed50fbdfc610d203c394021b7f33e0 +size 1383 diff --git a/timecost/m6/realtabformer/rtf-m6-20260429_070344/rtf_checkpoints/checkpoint-30600/scheduler.pt b/timecost/m6/realtabformer/rtf-m6-20260429_070344/rtf_checkpoints/checkpoint-30600/scheduler.pt new file mode 100644 index 0000000000000000000000000000000000000000..3772a913cbe246e38aadd7c62419a936e27b392c --- /dev/null +++ b/timecost/m6/realtabformer/rtf-m6-20260429_070344/rtf_checkpoints/checkpoint-30600/scheduler.pt @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:d52327674cbb9b46fbc75a2146c19707c1d6bf610ce2e39ba123e67ec553743a +size 1465 diff --git a/timecost/m6/realtabformer/rtf-m6-20260429_070344/rtf_checkpoints/checkpoint-30600/trainer_state.json b/timecost/m6/realtabformer/rtf-m6-20260429_070344/rtf_checkpoints/checkpoint-30600/trainer_state.json new file mode 100644 index 0000000000000000000000000000000000000000..b587b0042d72bb1fbdc87e44f68cd117a0fbf5fd --- /dev/null +++ b/timecost/m6/realtabformer/rtf-m6-20260429_070344/rtf_checkpoints/checkpoint-30600/trainer_state.json @@ -0,0 +1,2176 @@ +{ + "best_global_step": null, + "best_metric": null, + "best_model_checkpoint": null, + "epoch": 99.02919708029196, + "eval_steps": 100, + "global_step": 30600, + "is_hyper_param_search": false, + "is_local_process_zero": true, + "is_world_process_zero": true, + "log_history": [ + { + "epoch": 0.32441200324412, + "grad_norm": 0.20164933800697327, + "learning_rate": 4.983980582524272e-05, + "loss": 1.5922834777832031, + "step": 100 + }, + { + "epoch": 0.64882400648824, + "grad_norm": 0.18370771408081055, + "learning_rate": 4.967799352750809e-05, + "loss": 0.8226632690429687, + "step": 200 + }, + { + "epoch": 0.9732360097323601, + "grad_norm": 0.17879560589790344, + "learning_rate": 4.951618122977347e-05, + "loss": 0.7554012298583984, + "step": 300 + }, + { + "epoch": 1.2952149229521492, + "grad_norm": 0.14063459634780884, + "learning_rate": 4.935436893203884e-05, + "loss": 0.7157672882080078, + "step": 400 + }, + { + "epoch": 1.6196269261962692, + "grad_norm": 0.14949747920036316, + "learning_rate": 4.919255663430421e-05, + "loss": 0.7098747253417969, + "step": 500 + }, + { + "epoch": 1.9440389294403893, + "grad_norm": 0.1495194435119629, + "learning_rate": 4.9030744336569583e-05, + "loss": 0.6998626708984375, + "step": 600 + }, + { + "epoch": 2.2660178426601782, + "grad_norm": 0.1467229574918747, + "learning_rate": 4.886893203883495e-05, + "loss": 0.6833465576171875, + "step": 700 + }, + { + "epoch": 2.5904298459042985, + "grad_norm": 0.1609153300523758, + "learning_rate": 4.870711974110033e-05, + "loss": 0.6878270721435547, + "step": 800 + }, + { + "epoch": 2.9148418491484183, + "grad_norm": 0.13326895236968994, + "learning_rate": 4.85453074433657e-05, + "loss": 0.6762329864501954, + "step": 900 + }, + { + "epoch": 3.2368207623682075, + "grad_norm": 0.14083443582057953, + "learning_rate": 4.838349514563107e-05, + "loss": 0.6711769866943359, + "step": 1000 + }, + { + "epoch": 3.5612327656123277, + "grad_norm": 0.13646796345710754, + "learning_rate": 4.822168284789644e-05, + "loss": 0.6645689392089844, + "step": 1100 + }, + { + "epoch": 3.885644768856448, + "grad_norm": 0.13673610985279083, + "learning_rate": 4.805987055016181e-05, + "loss": 0.6698095703125, + "step": 1200 + }, + { + "epoch": 4.207623682076237, + "grad_norm": 0.12795455753803253, + "learning_rate": 4.789805825242719e-05, + "loss": 0.6573734283447266, + "step": 1300 + }, + { + "epoch": 4.5320356853203565, + "grad_norm": 0.12952066957950592, + "learning_rate": 4.773624595469256e-05, + "loss": 0.6638764190673828, + "step": 1400 + }, + { + "epoch": 4.856447688564477, + "grad_norm": 0.1414010375738144, + "learning_rate": 4.757443365695793e-05, + "loss": 0.6583383178710938, + "step": 1500 + }, + { + "epoch": 5.178426601784266, + "grad_norm": 0.14432589709758759, + "learning_rate": 4.74126213592233e-05, + "loss": 0.6485870361328125, + "step": 1600 + }, + { + "epoch": 5.502838605028386, + "grad_norm": 0.1340341866016388, + "learning_rate": 4.725080906148868e-05, + "loss": 0.6541815948486328, + "step": 1700 + }, + { + "epoch": 5.827250608272506, + "grad_norm": 0.1309279352426529, + "learning_rate": 4.708899676375405e-05, + "loss": 0.6557488250732422, + "step": 1800 + }, + { + "epoch": 6.149229521492296, + "grad_norm": 0.1259990930557251, + "learning_rate": 4.692718446601942e-05, + "loss": 0.639359245300293, + "step": 1900 + }, + { + "epoch": 6.473641524736415, + "grad_norm": 0.13993705809116364, + "learning_rate": 4.6765372168284794e-05, + "loss": 0.6472817230224609, + "step": 2000 + }, + { + "epoch": 6.798053527980535, + "grad_norm": 0.12632109224796295, + "learning_rate": 4.660355987055016e-05, + "loss": 0.6512689971923828, + "step": 2100 + }, + { + "epoch": 7.120032441200324, + "grad_norm": 0.12884259223937988, + "learning_rate": 4.644174757281554e-05, + "loss": 0.6424983978271485, + "step": 2200 + }, + { + "epoch": 7.444444444444445, + "grad_norm": 0.13162656128406525, + "learning_rate": 4.627993527508091e-05, + "loss": 0.6413846588134766, + "step": 2300 + }, + { + "epoch": 7.768856447688565, + "grad_norm": 0.1305171549320221, + "learning_rate": 4.611812297734628e-05, + "loss": 0.6504198455810547, + "step": 2400 + }, + { + "epoch": 8.090835360908354, + "grad_norm": 0.12320607155561447, + "learning_rate": 4.5956310679611654e-05, + "loss": 0.6361569213867188, + "step": 2500 + }, + { + "epoch": 8.415247364152474, + "grad_norm": 0.1263129562139511, + "learning_rate": 4.579449838187703e-05, + "loss": 0.6391400527954102, + "step": 2600 + }, + { + "epoch": 8.739659367396595, + "grad_norm": 0.14339180290699005, + "learning_rate": 4.563268608414239e-05, + "loss": 0.643778076171875, + "step": 2700 + }, + { + "epoch": 9.061638280616382, + "grad_norm": 0.13703292608261108, + "learning_rate": 4.547087378640777e-05, + "loss": 0.63127685546875, + "step": 2800 + }, + { + "epoch": 9.386050283860502, + "grad_norm": 0.12888263165950775, + "learning_rate": 4.5309061488673144e-05, + "loss": 0.636928939819336, + "step": 2900 + }, + { + "epoch": 9.710462287104622, + "grad_norm": 0.1290873885154724, + "learning_rate": 4.5147249190938514e-05, + "loss": 0.6323677444458008, + "step": 3000 + }, + { + "epoch": 10.032441200324412, + "grad_norm": 0.13526120781898499, + "learning_rate": 4.498543689320388e-05, + "loss": 0.6302993392944336, + "step": 3100 + }, + { + "epoch": 10.356853203568532, + "grad_norm": 0.14485451579093933, + "learning_rate": 4.482362459546926e-05, + "loss": 0.6336409378051758, + "step": 3200 + }, + { + "epoch": 10.681265206812652, + "grad_norm": 0.12640801072120667, + "learning_rate": 4.466181229773463e-05, + "loss": 0.6236648178100586, + "step": 3300 + }, + { + "epoch": 11.003244120032441, + "grad_norm": 0.13860085606575012, + "learning_rate": 4.4500000000000004e-05, + "loss": 0.6343330383300781, + "step": 3400 + }, + { + "epoch": 11.327656123276562, + "grad_norm": 0.13636715710163116, + "learning_rate": 4.4338187702265373e-05, + "loss": 0.6203033447265625, + "step": 3500 + }, + { + "epoch": 11.652068126520682, + "grad_norm": 0.13047286868095398, + "learning_rate": 4.417637540453074e-05, + "loss": 0.6218357086181641, + "step": 3600 + }, + { + "epoch": 11.976480129764802, + "grad_norm": 0.13506969809532166, + "learning_rate": 4.401456310679612e-05, + "loss": 0.6350560760498047, + "step": 3700 + }, + { + "epoch": 12.298459042984591, + "grad_norm": 0.13476674258708954, + "learning_rate": 4.385275080906149e-05, + "loss": 0.6147463607788086, + "step": 3800 + }, + { + "epoch": 12.62287104622871, + "grad_norm": 0.12256718426942825, + "learning_rate": 4.3690938511326864e-05, + "loss": 0.624836196899414, + "step": 3900 + }, + { + "epoch": 12.94728304947283, + "grad_norm": 0.13317419588565826, + "learning_rate": 4.352912621359223e-05, + "loss": 0.628001823425293, + "step": 4000 + }, + { + "epoch": 13.26926196269262, + "grad_norm": 0.13066990673542023, + "learning_rate": 4.33673139158576e-05, + "loss": 0.609481315612793, + "step": 4100 + }, + { + "epoch": 13.59367396593674, + "grad_norm": 0.13055436313152313, + "learning_rate": 4.320550161812298e-05, + "loss": 0.6177150344848633, + "step": 4200 + }, + { + "epoch": 13.91808596918086, + "grad_norm": 0.13111238181591034, + "learning_rate": 4.3043689320388355e-05, + "loss": 0.6266952896118164, + "step": 4300 + }, + { + "epoch": 14.240064882400649, + "grad_norm": 0.14692434668540955, + "learning_rate": 4.2881877022653724e-05, + "loss": 0.6085420608520508, + "step": 4400 + }, + { + "epoch": 14.564476885644769, + "grad_norm": 0.1490693986415863, + "learning_rate": 4.272006472491909e-05, + "loss": 0.6127510833740234, + "step": 4500 + }, + { + "epoch": 14.88888888888889, + "grad_norm": 0.14273235201835632, + "learning_rate": 4.255825242718447e-05, + "loss": 0.6196828079223633, + "step": 4600 + }, + { + "epoch": 15.210867802108679, + "grad_norm": 0.1464281678199768, + "learning_rate": 4.239644012944984e-05, + "loss": 0.606991844177246, + "step": 4700 + }, + { + "epoch": 15.535279805352799, + "grad_norm": 0.15429367125034332, + "learning_rate": 4.2234627831715215e-05, + "loss": 0.6114653015136718, + "step": 4800 + }, + { + "epoch": 15.859691808596917, + "grad_norm": 0.1561301201581955, + "learning_rate": 4.2072815533980584e-05, + "loss": 0.6102643585205079, + "step": 4900 + }, + { + "epoch": 16.181670721816708, + "grad_norm": 0.14197590947151184, + "learning_rate": 4.191100323624595e-05, + "loss": 0.6006597900390624, + "step": 5000 + }, + { + "epoch": 16.50608272506083, + "grad_norm": 0.15073753893375397, + "learning_rate": 4.174919093851133e-05, + "loss": 0.6000652694702149, + "step": 5100 + }, + { + "epoch": 16.83049472830495, + "grad_norm": 0.1630340814590454, + "learning_rate": 4.1587378640776705e-05, + "loss": 0.601633186340332, + "step": 5200 + }, + { + "epoch": 17.152473641524736, + "grad_norm": 0.14281341433525085, + "learning_rate": 4.1425566343042074e-05, + "loss": 0.6040666580200196, + "step": 5300 + }, + { + "epoch": 17.476885644768856, + "grad_norm": 0.16090357303619385, + "learning_rate": 4.1263754045307444e-05, + "loss": 0.5960210800170899, + "step": 5400 + }, + { + "epoch": 17.801297648012977, + "grad_norm": 0.15764260292053223, + "learning_rate": 4.110194174757282e-05, + "loss": 0.6001902389526367, + "step": 5500 + }, + { + "epoch": 18.123276561232764, + "grad_norm": 0.17385198175907135, + "learning_rate": 4.094012944983819e-05, + "loss": 0.5886587142944336, + "step": 5600 + }, + { + "epoch": 18.447688564476884, + "grad_norm": 0.16908828914165497, + "learning_rate": 4.0778317152103565e-05, + "loss": 0.594392967224121, + "step": 5700 + }, + { + "epoch": 18.772100567721004, + "grad_norm": 0.16428205370903015, + "learning_rate": 4.0616504854368934e-05, + "loss": 0.589791030883789, + "step": 5800 + }, + { + "epoch": 19.094079480940795, + "grad_norm": 0.16796661913394928, + "learning_rate": 4.0454692556634304e-05, + "loss": 0.5915510559082031, + "step": 5900 + }, + { + "epoch": 19.418491484184916, + "grad_norm": 0.17108002305030823, + "learning_rate": 4.029288025889968e-05, + "loss": 0.5712713623046874, + "step": 6000 + }, + { + "epoch": 19.742903487429036, + "grad_norm": 0.17238284647464752, + "learning_rate": 4.0131067961165056e-05, + "loss": 0.5880846786499023, + "step": 6100 + }, + { + "epoch": 20.064882400648823, + "grad_norm": 0.16751733422279358, + "learning_rate": 3.9969255663430425e-05, + "loss": 0.5886093902587891, + "step": 6200 + }, + { + "epoch": 20.389294403892944, + "grad_norm": 0.17518126964569092, + "learning_rate": 3.9807443365695794e-05, + "loss": 0.5645963287353516, + "step": 6300 + }, + { + "epoch": 20.713706407137064, + "grad_norm": 0.19824537634849548, + "learning_rate": 3.9645631067961164e-05, + "loss": 0.5758349609375, + "step": 6400 + }, + { + "epoch": 21.035685320356855, + "grad_norm": 0.17580321431159973, + "learning_rate": 3.948381877022654e-05, + "loss": 0.580423698425293, + "step": 6500 + }, + { + "epoch": 21.360097323600975, + "grad_norm": 0.17921853065490723, + "learning_rate": 3.9322006472491916e-05, + "loss": 0.5611041641235351, + "step": 6600 + }, + { + "epoch": 21.68450932684509, + "grad_norm": 0.18941283226013184, + "learning_rate": 3.916019417475728e-05, + "loss": 0.5720311737060547, + "step": 6700 + }, + { + "epoch": 22.006488240064883, + "grad_norm": 0.18437007069587708, + "learning_rate": 3.8998381877022654e-05, + "loss": 0.563258171081543, + "step": 6800 + }, + { + "epoch": 22.330900243309003, + "grad_norm": 0.19815316796302795, + "learning_rate": 3.883656957928803e-05, + "loss": 0.5511487197875976, + "step": 6900 + }, + { + "epoch": 22.655312246553123, + "grad_norm": 0.20421746373176575, + "learning_rate": 3.86747572815534e-05, + "loss": 0.5592882537841797, + "step": 7000 + }, + { + "epoch": 22.979724249797243, + "grad_norm": 0.2145063877105713, + "learning_rate": 3.851294498381877e-05, + "loss": 0.5531240844726563, + "step": 7100 + }, + { + "epoch": 23.30170316301703, + "grad_norm": 0.2133578211069107, + "learning_rate": 3.8351132686084145e-05, + "loss": 0.5361775588989258, + "step": 7200 + }, + { + "epoch": 23.62611516626115, + "grad_norm": 0.21354049444198608, + "learning_rate": 3.8189320388349514e-05, + "loss": 0.5458520126342773, + "step": 7300 + }, + { + "epoch": 23.95052716950527, + "grad_norm": 0.20230478048324585, + "learning_rate": 3.802750809061489e-05, + "loss": 0.5508059692382813, + "step": 7400 + }, + { + "epoch": 24.272506082725062, + "grad_norm": 0.21077010035514832, + "learning_rate": 3.786569579288026e-05, + "loss": 0.5237713623046875, + "step": 7500 + }, + { + "epoch": 24.596918085969182, + "grad_norm": 0.22097694873809814, + "learning_rate": 3.770388349514563e-05, + "loss": 0.5358617782592774, + "step": 7600 + }, + { + "epoch": 24.9213300892133, + "grad_norm": 0.23570670187473297, + "learning_rate": 3.7542071197411005e-05, + "loss": 0.5347403717041016, + "step": 7700 + }, + { + "epoch": 25.24330900243309, + "grad_norm": 0.21193180978298187, + "learning_rate": 3.738025889967638e-05, + "loss": 0.5195016479492187, + "step": 7800 + }, + { + "epoch": 25.56772100567721, + "grad_norm": 0.24408023059368134, + "learning_rate": 3.721844660194175e-05, + "loss": 0.5128348922729492, + "step": 7900 + }, + { + "epoch": 25.89213300892133, + "grad_norm": 0.2301139086484909, + "learning_rate": 3.705663430420712e-05, + "loss": 0.5274497222900391, + "step": 8000 + }, + { + "epoch": 26.214111922141118, + "grad_norm": 0.23104797303676605, + "learning_rate": 3.6894822006472495e-05, + "loss": 0.5127175521850585, + "step": 8100 + }, + { + "epoch": 26.53852392538524, + "grad_norm": 0.25776928663253784, + "learning_rate": 3.6733009708737865e-05, + "loss": 0.5081464004516602, + "step": 8200 + }, + { + "epoch": 26.86293592862936, + "grad_norm": 0.23275628685951233, + "learning_rate": 3.657119741100324e-05, + "loss": 0.5066284942626953, + "step": 8300 + }, + { + "epoch": 27.18491484184915, + "grad_norm": 0.25895944237709045, + "learning_rate": 3.640938511326861e-05, + "loss": 0.4974431228637695, + "step": 8400 + }, + { + "epoch": 27.50932684509327, + "grad_norm": 0.2517513632774353, + "learning_rate": 3.624757281553398e-05, + "loss": 0.49229534149169923, + "step": 8500 + }, + { + "epoch": 27.83373884833739, + "grad_norm": 0.27210375666618347, + "learning_rate": 3.6085760517799355e-05, + "loss": 0.49578163146972654, + "step": 8600 + }, + { + "epoch": 28.155717761557177, + "grad_norm": 0.27576959133148193, + "learning_rate": 3.592394822006473e-05, + "loss": 0.49141166687011717, + "step": 8700 + }, + { + "epoch": 28.480129764801298, + "grad_norm": 0.26969099044799805, + "learning_rate": 3.57621359223301e-05, + "loss": 0.47837520599365235, + "step": 8800 + }, + { + "epoch": 28.804541768045418, + "grad_norm": 0.2485017627477646, + "learning_rate": 3.560032362459547e-05, + "loss": 0.4838485336303711, + "step": 8900 + }, + { + "epoch": 29.126520681265205, + "grad_norm": 0.2618029713630676, + "learning_rate": 3.543851132686084e-05, + "loss": 0.4762223052978516, + "step": 9000 + }, + { + "epoch": 29.450932684509326, + "grad_norm": 0.25002509355545044, + "learning_rate": 3.5276699029126215e-05, + "loss": 0.4613980865478516, + "step": 9100 + }, + { + "epoch": 29.775344687753446, + "grad_norm": 0.2622935473918915, + "learning_rate": 3.511488673139159e-05, + "loss": 0.46839576721191406, + "step": 9200 + }, + { + "epoch": 30.097323600973237, + "grad_norm": 0.27539685368537903, + "learning_rate": 3.495307443365696e-05, + "loss": 0.46719558715820314, + "step": 9300 + }, + { + "epoch": 30.421735604217357, + "grad_norm": 0.2709919512271881, + "learning_rate": 3.479126213592233e-05, + "loss": 0.44856761932373046, + "step": 9400 + }, + { + "epoch": 30.746147607461477, + "grad_norm": 0.2810458242893219, + "learning_rate": 3.4629449838187706e-05, + "loss": 0.4556717300415039, + "step": 9500 + }, + { + "epoch": 31.068126520681265, + "grad_norm": 0.2798343002796173, + "learning_rate": 3.4467637540453075e-05, + "loss": 0.45173492431640627, + "step": 9600 + }, + { + "epoch": 31.392538523925385, + "grad_norm": 0.3120841383934021, + "learning_rate": 3.430582524271845e-05, + "loss": 0.4392761993408203, + "step": 9700 + }, + { + "epoch": 31.716950527169505, + "grad_norm": 0.2956726551055908, + "learning_rate": 3.414401294498382e-05, + "loss": 0.4437244415283203, + "step": 9800 + }, + { + "epoch": 32.038929440389296, + "grad_norm": 0.2856016457080841, + "learning_rate": 3.398220064724919e-05, + "loss": 0.441302490234375, + "step": 9900 + }, + { + "epoch": 32.363341443633416, + "grad_norm": 0.2965444028377533, + "learning_rate": 3.3820388349514566e-05, + "loss": 0.42223735809326174, + "step": 10000 + }, + { + "epoch": 32.68775344687754, + "grad_norm": 0.2714678943157196, + "learning_rate": 3.365857605177994e-05, + "loss": 0.43019737243652345, + "step": 10100 + }, + { + "epoch": 33.009732360097324, + "grad_norm": 0.23514199256896973, + "learning_rate": 3.3496763754045304e-05, + "loss": 0.4372244644165039, + "step": 10200 + }, + { + "epoch": 33.334144363341444, + "grad_norm": 0.26974233984947205, + "learning_rate": 3.333495145631068e-05, + "loss": 0.41183216094970704, + "step": 10300 + }, + { + "epoch": 33.658556366585564, + "grad_norm": 0.29364973306655884, + "learning_rate": 3.3173139158576056e-05, + "loss": 0.4156087112426758, + "step": 10400 + }, + { + "epoch": 33.982968369829685, + "grad_norm": 0.3023452162742615, + "learning_rate": 3.3011326860841425e-05, + "loss": 0.4232332992553711, + "step": 10500 + }, + { + "epoch": 34.30494728304947, + "grad_norm": 0.2768167555332184, + "learning_rate": 3.2849514563106795e-05, + "loss": 0.4014273452758789, + "step": 10600 + }, + { + "epoch": 34.62935928629359, + "grad_norm": 0.3322605788707733, + "learning_rate": 3.268770226537217e-05, + "loss": 0.40524036407470704, + "step": 10700 + }, + { + "epoch": 34.95377128953771, + "grad_norm": 0.3203238546848297, + "learning_rate": 3.252588996763754e-05, + "loss": 0.40970794677734373, + "step": 10800 + }, + { + "epoch": 35.2757502027575, + "grad_norm": 0.303089439868927, + "learning_rate": 3.2364077669902916e-05, + "loss": 0.38891010284423827, + "step": 10900 + }, + { + "epoch": 35.60016220600162, + "grad_norm": 0.29558560252189636, + "learning_rate": 3.220226537216829e-05, + "loss": 0.3949446105957031, + "step": 11000 + }, + { + "epoch": 35.92457420924574, + "grad_norm": 0.3112625479698181, + "learning_rate": 3.2040453074433655e-05, + "loss": 0.39758953094482424, + "step": 11100 + }, + { + "epoch": 36.24655312246553, + "grad_norm": 0.3039425313472748, + "learning_rate": 3.187864077669903e-05, + "loss": 0.38358245849609374, + "step": 11200 + }, + { + "epoch": 36.57096512570965, + "grad_norm": 0.3353067934513092, + "learning_rate": 3.171682847896441e-05, + "loss": 0.3797079849243164, + "step": 11300 + }, + { + "epoch": 36.89537712895377, + "grad_norm": 0.367567241191864, + "learning_rate": 3.1555016181229776e-05, + "loss": 0.38862274169921873, + "step": 11400 + }, + { + "epoch": 37.21735604217356, + "grad_norm": 0.32198429107666016, + "learning_rate": 3.1393203883495145e-05, + "loss": 0.37104736328125, + "step": 11500 + }, + { + "epoch": 37.54176804541768, + "grad_norm": 0.29541313648223877, + "learning_rate": 3.1231391585760514e-05, + "loss": 0.37103946685791017, + "step": 11600 + }, + { + "epoch": 37.8661800486618, + "grad_norm": 0.34138020873069763, + "learning_rate": 3.106957928802589e-05, + "loss": 0.37340602874755857, + "step": 11700 + }, + { + "epoch": 38.18815896188159, + "grad_norm": 0.301660418510437, + "learning_rate": 3.0907766990291267e-05, + "loss": 0.36555946350097657, + "step": 11800 + }, + { + "epoch": 38.51257096512571, + "grad_norm": 0.2793280780315399, + "learning_rate": 3.0745954692556636e-05, + "loss": 0.35706504821777346, + "step": 11900 + }, + { + "epoch": 38.83698296836983, + "grad_norm": 0.2934885621070862, + "learning_rate": 3.0584142394822005e-05, + "loss": 0.3642056655883789, + "step": 12000 + }, + { + "epoch": 39.15896188158962, + "grad_norm": 0.3178177773952484, + "learning_rate": 3.042233009708738e-05, + "loss": 0.3558914566040039, + "step": 12100 + }, + { + "epoch": 39.48337388483374, + "grad_norm": 0.32718706130981445, + "learning_rate": 3.026051779935275e-05, + "loss": 0.34923362731933594, + "step": 12200 + }, + { + "epoch": 39.80778588807786, + "grad_norm": 0.32444027066230774, + "learning_rate": 3.0098705501618123e-05, + "loss": 0.3525634002685547, + "step": 12300 + }, + { + "epoch": 40.12976480129765, + "grad_norm": 0.3068920075893402, + "learning_rate": 2.99368932038835e-05, + "loss": 0.3468068695068359, + "step": 12400 + }, + { + "epoch": 40.45417680454177, + "grad_norm": 0.31230300664901733, + "learning_rate": 2.977508090614887e-05, + "loss": 0.3374324798583984, + "step": 12500 + }, + { + "epoch": 40.77858880778589, + "grad_norm": 0.35733962059020996, + "learning_rate": 2.961326860841424e-05, + "loss": 0.3439715576171875, + "step": 12600 + }, + { + "epoch": 41.100567721005675, + "grad_norm": 0.3116827607154846, + "learning_rate": 2.9451456310679614e-05, + "loss": 0.3388735961914062, + "step": 12700 + }, + { + "epoch": 41.424979724249795, + "grad_norm": 0.3260541558265686, + "learning_rate": 2.9289644012944983e-05, + "loss": 0.3278466796875, + "step": 12800 + }, + { + "epoch": 41.749391727493915, + "grad_norm": 0.3492940068244934, + "learning_rate": 2.912783171521036e-05, + "loss": 0.33501758575439455, + "step": 12900 + }, + { + "epoch": 42.07137064071371, + "grad_norm": 0.33961179852485657, + "learning_rate": 2.896601941747573e-05, + "loss": 0.332823600769043, + "step": 13000 + }, + { + "epoch": 42.39578264395783, + "grad_norm": 0.3111296594142914, + "learning_rate": 2.88042071197411e-05, + "loss": 0.31814098358154297, + "step": 13100 + }, + { + "epoch": 42.72019464720195, + "grad_norm": 0.33305123448371887, + "learning_rate": 2.8642394822006473e-05, + "loss": 0.3256596374511719, + "step": 13200 + }, + { + "epoch": 43.04217356042174, + "grad_norm": 0.28727594017982483, + "learning_rate": 2.848058252427185e-05, + "loss": 0.32629146575927737, + "step": 13300 + }, + { + "epoch": 43.36658556366586, + "grad_norm": 0.3200686573982239, + "learning_rate": 2.8318770226537215e-05, + "loss": 0.310048885345459, + "step": 13400 + }, + { + "epoch": 43.69099756690998, + "grad_norm": 0.3261258602142334, + "learning_rate": 2.815695792880259e-05, + "loss": 0.3169711685180664, + "step": 13500 + }, + { + "epoch": 44.012976480129765, + "grad_norm": 0.32062989473342896, + "learning_rate": 2.7995145631067964e-05, + "loss": 0.31799676895141604, + "step": 13600 + }, + { + "epoch": 44.337388483373886, + "grad_norm": 0.3417779803276062, + "learning_rate": 2.7833333333333333e-05, + "loss": 0.3045396614074707, + "step": 13700 + }, + { + "epoch": 44.661800486618006, + "grad_norm": 0.32301145792007446, + "learning_rate": 2.7671521035598706e-05, + "loss": 0.3061079978942871, + "step": 13800 + }, + { + "epoch": 44.986212489862126, + "grad_norm": 0.3934004008769989, + "learning_rate": 2.7509708737864082e-05, + "loss": 0.31222929000854494, + "step": 13900 + }, + { + "epoch": 45.30819140308191, + "grad_norm": 0.33090853691101074, + "learning_rate": 2.734789644012945e-05, + "loss": 0.29367765426635745, + "step": 14000 + }, + { + "epoch": 45.632603406326034, + "grad_norm": 0.3316773474216461, + "learning_rate": 2.7186084142394824e-05, + "loss": 0.30018712997436525, + "step": 14100 + }, + { + "epoch": 45.957015409570154, + "grad_norm": 0.36180180311203003, + "learning_rate": 2.7024271844660193e-05, + "loss": 0.3031520080566406, + "step": 14200 + }, + { + "epoch": 46.27899432278994, + "grad_norm": 0.32503196597099304, + "learning_rate": 2.6862459546925566e-05, + "loss": 0.29114202499389646, + "step": 14300 + }, + { + "epoch": 46.60340632603406, + "grad_norm": 0.36477360129356384, + "learning_rate": 2.6700647249190942e-05, + "loss": 0.29186737060546875, + "step": 14400 + }, + { + "epoch": 46.92781832927818, + "grad_norm": 0.3492746949195862, + "learning_rate": 2.6538834951456308e-05, + "loss": 0.296141300201416, + "step": 14500 + }, + { + "epoch": 47.24979724249797, + "grad_norm": 0.32664960622787476, + "learning_rate": 2.6378640776699032e-05, + "loss": 0.2826018142700195, + "step": 14600 + }, + { + "epoch": 47.57420924574209, + "grad_norm": 0.3388548493385315, + "learning_rate": 2.62168284789644e-05, + "loss": 0.28671709060668943, + "step": 14700 + }, + { + "epoch": 47.89862124898621, + "grad_norm": 0.38633057475090027, + "learning_rate": 2.6055016181229774e-05, + "loss": 0.2910732078552246, + "step": 14800 + }, + { + "epoch": 48.220600162206004, + "grad_norm": 0.31736406683921814, + "learning_rate": 2.5893203883495147e-05, + "loss": 0.2784827995300293, + "step": 14900 + }, + { + "epoch": 48.545012165450125, + "grad_norm": 0.37021875381469727, + "learning_rate": 2.5731391585760516e-05, + "loss": 0.2798298263549805, + "step": 15000 + }, + { + "epoch": 48.869424168694245, + "grad_norm": 0.34544867277145386, + "learning_rate": 2.5569579288025892e-05, + "loss": 0.2821967697143555, + "step": 15100 + }, + { + "epoch": 49.19140308191403, + "grad_norm": 0.31732165813446045, + "learning_rate": 2.5407766990291265e-05, + "loss": 0.27426704406738284, + "step": 15200 + }, + { + "epoch": 49.51581508515815, + "grad_norm": 0.3201292157173157, + "learning_rate": 2.5245954692556634e-05, + "loss": 0.27101806640625, + "step": 15300 + }, + { + "epoch": 49.84022708840227, + "grad_norm": 0.33511412143707275, + "learning_rate": 2.5084142394822007e-05, + "loss": 0.27499908447265625, + "step": 15400 + }, + { + "epoch": 50.16220600162206, + "grad_norm": 0.347622275352478, + "learning_rate": 2.492233009708738e-05, + "loss": 0.26981922149658205, + "step": 15500 + }, + { + "epoch": 50.48661800486618, + "grad_norm": 0.3041851222515106, + "learning_rate": 2.4760517799352752e-05, + "loss": 0.2654261589050293, + "step": 15600 + }, + { + "epoch": 50.8110300081103, + "grad_norm": 0.3489990830421448, + "learning_rate": 2.4598705501618125e-05, + "loss": 0.2702595329284668, + "step": 15700 + }, + { + "epoch": 51.13300892133009, + "grad_norm": 0.30876776576042175, + "learning_rate": 2.4436893203883494e-05, + "loss": 0.2657257843017578, + "step": 15800 + }, + { + "epoch": 51.45742092457421, + "grad_norm": 0.34536364674568176, + "learning_rate": 2.4275080906148867e-05, + "loss": 0.261352596282959, + "step": 15900 + }, + { + "epoch": 51.78183292781833, + "grad_norm": 0.3297542333602905, + "learning_rate": 2.4113268608414243e-05, + "loss": 0.26374523162841795, + "step": 16000 + }, + { + "epoch": 52.103811841038116, + "grad_norm": 0.3442004323005676, + "learning_rate": 2.3951456310679612e-05, + "loss": 0.2606217002868652, + "step": 16100 + }, + { + "epoch": 52.428223844282236, + "grad_norm": 0.32110315561294556, + "learning_rate": 2.3789644012944985e-05, + "loss": 0.25471590042114256, + "step": 16200 + }, + { + "epoch": 52.752635847526356, + "grad_norm": 0.35750967264175415, + "learning_rate": 2.3627831715210357e-05, + "loss": 0.25818721771240233, + "step": 16300 + }, + { + "epoch": 53.07461476074615, + "grad_norm": 0.3167541027069092, + "learning_rate": 2.346601941747573e-05, + "loss": 0.25791025161743164, + "step": 16400 + }, + { + "epoch": 53.39902676399027, + "grad_norm": 0.3614417314529419, + "learning_rate": 2.33042071197411e-05, + "loss": 0.2503541374206543, + "step": 16500 + }, + { + "epoch": 53.723438767234384, + "grad_norm": 0.3383695185184479, + "learning_rate": 2.3142394822006475e-05, + "loss": 0.25205833435058594, + "step": 16600 + }, + { + "epoch": 54.04541768045418, + "grad_norm": 0.3129797577857971, + "learning_rate": 2.298220064724919e-05, + "loss": 0.2553220558166504, + "step": 16700 + }, + { + "epoch": 54.3698296836983, + "grad_norm": 0.32768893241882324, + "learning_rate": 2.2820388349514566e-05, + "loss": 0.2452069664001465, + "step": 16800 + }, + { + "epoch": 54.69424168694242, + "grad_norm": 0.34217071533203125, + "learning_rate": 2.2658576051779935e-05, + "loss": 0.2495290756225586, + "step": 16900 + }, + { + "epoch": 55.01622060016221, + "grad_norm": 0.3423132002353668, + "learning_rate": 2.2496763754045308e-05, + "loss": 0.25019683837890627, + "step": 17000 + }, + { + "epoch": 55.34063260340633, + "grad_norm": 0.34714990854263306, + "learning_rate": 2.233495145631068e-05, + "loss": 0.24028772354125977, + "step": 17100 + }, + { + "epoch": 55.66504460665045, + "grad_norm": 0.32141968607902527, + "learning_rate": 2.2173139158576053e-05, + "loss": 0.2443995475769043, + "step": 17200 + }, + { + "epoch": 55.98945660989457, + "grad_norm": 0.3385929763317108, + "learning_rate": 2.2011326860841426e-05, + "loss": 0.24807867050170898, + "step": 17300 + }, + { + "epoch": 56.311435523114355, + "grad_norm": 0.3463747203350067, + "learning_rate": 2.1849514563106795e-05, + "loss": 0.23618980407714843, + "step": 17400 + }, + { + "epoch": 56.635847526358475, + "grad_norm": 0.3065926730632782, + "learning_rate": 2.168770226537217e-05, + "loss": 0.23906055450439453, + "step": 17500 + }, + { + "epoch": 56.960259529602595, + "grad_norm": 0.3168463408946991, + "learning_rate": 2.152588996763754e-05, + "loss": 0.24397821426391603, + "step": 17600 + }, + { + "epoch": 57.28223844282238, + "grad_norm": 0.3540167510509491, + "learning_rate": 2.1364077669902913e-05, + "loss": 0.2341847038269043, + "step": 17700 + }, + { + "epoch": 57.6066504460665, + "grad_norm": 0.3474962115287781, + "learning_rate": 2.1202265372168286e-05, + "loss": 0.23654184341430665, + "step": 17800 + }, + { + "epoch": 57.93106244931062, + "grad_norm": 0.3104344606399536, + "learning_rate": 2.1040453074433658e-05, + "loss": 0.238500919342041, + "step": 17900 + }, + { + "epoch": 58.25304136253041, + "grad_norm": 0.2928438186645508, + "learning_rate": 2.087864077669903e-05, + "loss": 0.2317611312866211, + "step": 18000 + }, + { + "epoch": 58.57745336577453, + "grad_norm": 0.34206250309944153, + "learning_rate": 2.0716828478964404e-05, + "loss": 0.23266231536865234, + "step": 18100 + }, + { + "epoch": 58.90186536901865, + "grad_norm": 0.3680970370769501, + "learning_rate": 2.0555016181229776e-05, + "loss": 0.23497753143310546, + "step": 18200 + }, + { + "epoch": 59.223844282238446, + "grad_norm": 0.3037141263484955, + "learning_rate": 2.0393203883495145e-05, + "loss": 0.2270449447631836, + "step": 18300 + }, + { + "epoch": 59.548256285482566, + "grad_norm": 0.3106273114681244, + "learning_rate": 2.0231391585760518e-05, + "loss": 0.22707063674926758, + "step": 18400 + }, + { + "epoch": 59.872668288726686, + "grad_norm": 0.36219528317451477, + "learning_rate": 2.006957928802589e-05, + "loss": 0.2324913787841797, + "step": 18500 + }, + { + "epoch": 60.194647201946474, + "grad_norm": 0.3081775903701782, + "learning_rate": 1.9907766990291263e-05, + "loss": 0.22577075958251952, + "step": 18600 + }, + { + "epoch": 60.519059205190594, + "grad_norm": 0.3376457989215851, + "learning_rate": 1.9745954692556633e-05, + "loss": 0.2236073112487793, + "step": 18700 + }, + { + "epoch": 60.843471208434714, + "grad_norm": 0.3010921776294708, + "learning_rate": 1.958414239482201e-05, + "loss": 0.2290345001220703, + "step": 18800 + }, + { + "epoch": 61.1654501216545, + "grad_norm": 0.3345211148262024, + "learning_rate": 1.9422330097087378e-05, + "loss": 0.22328811645507812, + "step": 18900 + }, + { + "epoch": 61.48986212489862, + "grad_norm": 0.35830914974212646, + "learning_rate": 1.926051779935275e-05, + "loss": 0.22145767211914064, + "step": 19000 + }, + { + "epoch": 61.81427412814274, + "grad_norm": 0.3177037835121155, + "learning_rate": 1.9098705501618123e-05, + "loss": 0.223042049407959, + "step": 19100 + }, + { + "epoch": 62.13625304136253, + "grad_norm": 0.2974834442138672, + "learning_rate": 1.8936893203883496e-05, + "loss": 0.221235294342041, + "step": 19200 + }, + { + "epoch": 62.46066504460665, + "grad_norm": 0.3040814995765686, + "learning_rate": 1.877508090614887e-05, + "loss": 0.21824802398681642, + "step": 19300 + }, + { + "epoch": 62.78507704785077, + "grad_norm": 0.3453911244869232, + "learning_rate": 1.861326860841424e-05, + "loss": 0.22165294647216796, + "step": 19400 + }, + { + "epoch": 63.10705596107056, + "grad_norm": 0.3323674201965332, + "learning_rate": 1.8451456310679614e-05, + "loss": 0.21942996978759766, + "step": 19500 + }, + { + "epoch": 63.43146796431468, + "grad_norm": 0.2868025302886963, + "learning_rate": 1.8289644012944983e-05, + "loss": 0.2159541893005371, + "step": 19600 + }, + { + "epoch": 63.7558799675588, + "grad_norm": 0.2985902428627014, + "learning_rate": 1.8127831715210356e-05, + "loss": 0.21843338012695312, + "step": 19700 + }, + { + "epoch": 64.07785888077859, + "grad_norm": 0.29877224564552307, + "learning_rate": 1.796601941747573e-05, + "loss": 0.21846704483032225, + "step": 19800 + }, + { + "epoch": 64.40227088402271, + "grad_norm": 0.31725695729255676, + "learning_rate": 1.78042071197411e-05, + "loss": 0.2123063850402832, + "step": 19900 + }, + { + "epoch": 64.72668288726683, + "grad_norm": 0.30116891860961914, + "learning_rate": 1.7642394822006474e-05, + "loss": 0.21550237655639648, + "step": 20000 + }, + { + "epoch": 65.04866180048661, + "grad_norm": 0.33267149329185486, + "learning_rate": 1.7480582524271846e-05, + "loss": 0.2158302879333496, + "step": 20100 + }, + { + "epoch": 65.37307380373073, + "grad_norm": 0.30885910987854004, + "learning_rate": 1.731877022653722e-05, + "loss": 0.2090800666809082, + "step": 20200 + }, + { + "epoch": 65.69748580697485, + "grad_norm": 0.31430330872535706, + "learning_rate": 1.715695792880259e-05, + "loss": 0.21172605514526366, + "step": 20300 + }, + { + "epoch": 66.01946472019465, + "grad_norm": 0.2837020754814148, + "learning_rate": 1.6995145631067964e-05, + "loss": 0.21372562408447265, + "step": 20400 + }, + { + "epoch": 66.34387672343877, + "grad_norm": 0.30839094519615173, + "learning_rate": 1.6833333333333334e-05, + "loss": 0.20695215225219726, + "step": 20500 + }, + { + "epoch": 66.66828872668289, + "grad_norm": 0.31136852502822876, + "learning_rate": 1.6671521035598706e-05, + "loss": 0.20894838333129884, + "step": 20600 + }, + { + "epoch": 66.99270072992701, + "grad_norm": 0.2942120432853699, + "learning_rate": 1.650970873786408e-05, + "loss": 0.21177177429199218, + "step": 20700 + }, + { + "epoch": 67.3146796431468, + "grad_norm": 0.32769644260406494, + "learning_rate": 1.6349514563106797e-05, + "loss": 0.20521749496459962, + "step": 20800 + }, + { + "epoch": 67.63909164639091, + "grad_norm": 0.3272440731525421, + "learning_rate": 1.6187702265372166e-05, + "loss": 0.2083640480041504, + "step": 20900 + }, + { + "epoch": 67.96350364963503, + "grad_norm": 0.2725636959075928, + "learning_rate": 1.6025889967637542e-05, + "loss": 0.2089810562133789, + "step": 21000 + }, + { + "epoch": 68.28548256285482, + "grad_norm": 0.2833479046821594, + "learning_rate": 1.5864077669902915e-05, + "loss": 0.20403633117675782, + "step": 21100 + }, + { + "epoch": 68.60989456609894, + "grad_norm": 0.2848324477672577, + "learning_rate": 1.5702265372168284e-05, + "loss": 0.2053829574584961, + "step": 21200 + }, + { + "epoch": 68.93430656934306, + "grad_norm": 0.324773907661438, + "learning_rate": 1.554045307443366e-05, + "loss": 0.206777400970459, + "step": 21300 + }, + { + "epoch": 69.25628548256286, + "grad_norm": 0.2661566734313965, + "learning_rate": 1.537864077669903e-05, + "loss": 0.20142404556274415, + "step": 21400 + }, + { + "epoch": 69.58069748580698, + "grad_norm": 0.28439629077911377, + "learning_rate": 1.52168284789644e-05, + "loss": 0.20303123474121093, + "step": 21500 + }, + { + "epoch": 69.9051094890511, + "grad_norm": 0.33656612038612366, + "learning_rate": 1.5055016181229775e-05, + "loss": 0.20467769622802734, + "step": 21600 + }, + { + "epoch": 70.22708840227088, + "grad_norm": 0.32043009996414185, + "learning_rate": 1.4893203883495147e-05, + "loss": 0.20070859909057617, + "step": 21700 + }, + { + "epoch": 70.551500405515, + "grad_norm": 0.3048563599586487, + "learning_rate": 1.4731391585760518e-05, + "loss": 0.20159858703613281, + "step": 21800 + }, + { + "epoch": 70.87591240875912, + "grad_norm": 0.2664601802825928, + "learning_rate": 1.4569579288025893e-05, + "loss": 0.20171623229980468, + "step": 21900 + }, + { + "epoch": 71.19789132197891, + "grad_norm": 0.3018724322319031, + "learning_rate": 1.4407766990291264e-05, + "loss": 0.19853240966796876, + "step": 22000 + }, + { + "epoch": 71.52230332522304, + "grad_norm": 0.2770579755306244, + "learning_rate": 1.4245954692556635e-05, + "loss": 0.1985287857055664, + "step": 22100 + }, + { + "epoch": 71.84671532846716, + "grad_norm": 0.2877587080001831, + "learning_rate": 1.4084142394822005e-05, + "loss": 0.2016657066345215, + "step": 22200 + }, + { + "epoch": 72.16869424168694, + "grad_norm": 0.3253211975097656, + "learning_rate": 1.392233009708738e-05, + "loss": 0.19735158920288087, + "step": 22300 + }, + { + "epoch": 72.49310624493106, + "grad_norm": 0.2870253920555115, + "learning_rate": 1.376051779935275e-05, + "loss": 0.19713401794433594, + "step": 22400 + }, + { + "epoch": 72.81751824817518, + "grad_norm": 0.32006755471229553, + "learning_rate": 1.3598705501618122e-05, + "loss": 0.1988151741027832, + "step": 22500 + }, + { + "epoch": 73.13949716139497, + "grad_norm": 0.28510263562202454, + "learning_rate": 1.3436893203883496e-05, + "loss": 0.19770748138427735, + "step": 22600 + }, + { + "epoch": 73.46390916463909, + "grad_norm": 0.2950480878353119, + "learning_rate": 1.3275080906148869e-05, + "loss": 0.195107364654541, + "step": 22700 + }, + { + "epoch": 73.78832116788321, + "grad_norm": 0.30394643545150757, + "learning_rate": 1.311326860841424e-05, + "loss": 0.1975857925415039, + "step": 22800 + }, + { + "epoch": 74.110300081103, + "grad_norm": 0.29557764530181885, + "learning_rate": 1.295307443365696e-05, + "loss": 0.19621952056884764, + "step": 22900 + }, + { + "epoch": 74.43471208434713, + "grad_norm": 0.27801787853240967, + "learning_rate": 1.279126213592233e-05, + "loss": 0.1924858283996582, + "step": 23000 + }, + { + "epoch": 74.75912408759125, + "grad_norm": 0.32521647214889526, + "learning_rate": 1.2629449838187705e-05, + "loss": 0.19586196899414063, + "step": 23100 + }, + { + "epoch": 75.08110300081103, + "grad_norm": 0.27390602231025696, + "learning_rate": 1.2467637540453075e-05, + "loss": 0.19569822311401366, + "step": 23200 + }, + { + "epoch": 75.40551500405515, + "grad_norm": 0.27017250657081604, + "learning_rate": 1.2305825242718446e-05, + "loss": 0.1917603874206543, + "step": 23300 + }, + { + "epoch": 75.72992700729927, + "grad_norm": 0.2980138957500458, + "learning_rate": 1.2144012944983819e-05, + "loss": 0.1927776336669922, + "step": 23400 + }, + { + "epoch": 76.05190592051906, + "grad_norm": 0.3057159185409546, + "learning_rate": 1.1982200647249192e-05, + "loss": 0.19304771423339845, + "step": 23500 + }, + { + "epoch": 76.37631792376318, + "grad_norm": 0.29936423897743225, + "learning_rate": 1.1820388349514563e-05, + "loss": 0.19062232971191406, + "step": 23600 + }, + { + "epoch": 76.7007299270073, + "grad_norm": 0.3179267942905426, + "learning_rate": 1.1658576051779935e-05, + "loss": 0.19235507965087892, + "step": 23700 + }, + { + "epoch": 77.02270884022708, + "grad_norm": 0.25758758187294006, + "learning_rate": 1.1496763754045308e-05, + "loss": 0.1918639373779297, + "step": 23800 + }, + { + "epoch": 77.3471208434712, + "grad_norm": 0.2676644027233124, + "learning_rate": 1.133495145631068e-05, + "loss": 0.18774497985839844, + "step": 23900 + }, + { + "epoch": 77.67153284671532, + "grad_norm": 0.25918132066726685, + "learning_rate": 1.1173139158576053e-05, + "loss": 0.18990053176879884, + "step": 24000 + }, + { + "epoch": 77.99594484995944, + "grad_norm": 0.25803694128990173, + "learning_rate": 1.1011326860841424e-05, + "loss": 0.19139570236206055, + "step": 24100 + }, + { + "epoch": 78.31792376317924, + "grad_norm": 0.2896536588668823, + "learning_rate": 1.0849514563106797e-05, + "loss": 0.18745737075805663, + "step": 24200 + }, + { + "epoch": 78.64233576642336, + "grad_norm": 0.2941916286945343, + "learning_rate": 1.0687702265372168e-05, + "loss": 0.18780550003051757, + "step": 24300 + }, + { + "epoch": 78.96674776966748, + "grad_norm": 0.28496670722961426, + "learning_rate": 1.052588996763754e-05, + "loss": 0.19009716033935548, + "step": 24400 + }, + { + "epoch": 79.28872668288727, + "grad_norm": 0.29919925332069397, + "learning_rate": 1.0364077669902913e-05, + "loss": 0.18620597839355468, + "step": 24500 + }, + { + "epoch": 79.61313868613139, + "grad_norm": 0.285383939743042, + "learning_rate": 1.0202265372168284e-05, + "loss": 0.18723442077636718, + "step": 24600 + }, + { + "epoch": 79.93755068937551, + "grad_norm": 0.2821769416332245, + "learning_rate": 1.0040453074433657e-05, + "loss": 0.1882436180114746, + "step": 24700 + }, + { + "epoch": 80.2595296025953, + "grad_norm": 0.291644424200058, + "learning_rate": 9.87864077669903e-06, + "loss": 0.18627639770507812, + "step": 24800 + }, + { + "epoch": 80.58394160583941, + "grad_norm": 0.28841665387153625, + "learning_rate": 9.716828478964402e-06, + "loss": 0.1859906768798828, + "step": 24900 + }, + { + "epoch": 80.90835360908353, + "grad_norm": 0.2513130307197571, + "learning_rate": 9.555016181229775e-06, + "loss": 0.18743871688842773, + "step": 25000 + }, + { + "epoch": 81.23033252230333, + "grad_norm": 0.28746384382247925, + "learning_rate": 9.394822006472493e-06, + "loss": 0.18453241348266602, + "step": 25100 + }, + { + "epoch": 81.55474452554745, + "grad_norm": 0.29126232862472534, + "learning_rate": 9.233009708737865e-06, + "loss": 0.1854015350341797, + "step": 25200 + }, + { + "epoch": 81.87915652879157, + "grad_norm": 0.2970152795314789, + "learning_rate": 9.071197411003236e-06, + "loss": 0.18607795715332032, + "step": 25300 + }, + { + "epoch": 82.20113544201135, + "grad_norm": 0.30898556113243103, + "learning_rate": 8.909385113268609e-06, + "loss": 0.18391321182250978, + "step": 25400 + }, + { + "epoch": 82.52554744525547, + "grad_norm": 0.2530721426010132, + "learning_rate": 8.74757281553398e-06, + "loss": 0.1833015823364258, + "step": 25500 + }, + { + "epoch": 82.84995944849959, + "grad_norm": 0.26257285475730896, + "learning_rate": 8.585760517799352e-06, + "loss": 0.18504741668701172, + "step": 25600 + }, + { + "epoch": 83.17193836171938, + "grad_norm": 0.29258695244789124, + "learning_rate": 8.423948220064725e-06, + "loss": 0.18265727996826173, + "step": 25700 + }, + { + "epoch": 83.4963503649635, + "grad_norm": 0.28137892484664917, + "learning_rate": 8.262135922330098e-06, + "loss": 0.1820280647277832, + "step": 25800 + }, + { + "epoch": 83.82076236820762, + "grad_norm": 0.253631055355072, + "learning_rate": 8.10032362459547e-06, + "loss": 0.18374771118164063, + "step": 25900 + }, + { + "epoch": 84.14274128142742, + "grad_norm": 0.2612302005290985, + "learning_rate": 7.938511326860843e-06, + "loss": 0.1822812843322754, + "step": 26000 + }, + { + "epoch": 84.46715328467154, + "grad_norm": 0.2968967854976654, + "learning_rate": 7.776699029126214e-06, + "loss": 0.1804751205444336, + "step": 26100 + }, + { + "epoch": 84.79156528791566, + "grad_norm": 0.28858786821365356, + "learning_rate": 7.614886731391587e-06, + "loss": 0.1823977279663086, + "step": 26200 + }, + { + "epoch": 85.11354420113544, + "grad_norm": 0.24769216775894165, + "learning_rate": 7.453074433656958e-06, + "loss": 0.18158819198608397, + "step": 26300 + }, + { + "epoch": 85.43795620437956, + "grad_norm": 0.27769848704338074, + "learning_rate": 7.29126213592233e-06, + "loss": 0.18056314468383788, + "step": 26400 + }, + { + "epoch": 85.76236820762368, + "grad_norm": 0.30476441979408264, + "learning_rate": 7.129449838187703e-06, + "loss": 0.18116596221923828, + "step": 26500 + }, + { + "epoch": 86.08434712084347, + "grad_norm": 0.23022858798503876, + "learning_rate": 6.967637540453075e-06, + "loss": 0.18061212539672852, + "step": 26600 + }, + { + "epoch": 86.4087591240876, + "grad_norm": 0.28072357177734375, + "learning_rate": 6.805825242718447e-06, + "loss": 0.17919044494628905, + "step": 26700 + }, + { + "epoch": 86.73317112733172, + "grad_norm": 0.28679656982421875, + "learning_rate": 6.644012944983818e-06, + "loss": 0.17989681243896485, + "step": 26800 + }, + { + "epoch": 87.0551500405515, + "grad_norm": 0.23604606091976166, + "learning_rate": 6.482200647249191e-06, + "loss": 0.1802787208557129, + "step": 26900 + }, + { + "epoch": 87.37956204379562, + "grad_norm": 0.2767940163612366, + "learning_rate": 6.320388349514564e-06, + "loss": 0.17775949478149414, + "step": 27000 + }, + { + "epoch": 87.70397404703974, + "grad_norm": 0.2633722126483917, + "learning_rate": 6.1585760517799355e-06, + "loss": 0.17942682266235352, + "step": 27100 + }, + { + "epoch": 88.02595296025953, + "grad_norm": 0.254029780626297, + "learning_rate": 5.996763754045308e-06, + "loss": 0.17986074447631836, + "step": 27200 + }, + { + "epoch": 88.35036496350365, + "grad_norm": 0.25648459792137146, + "learning_rate": 5.83495145631068e-06, + "loss": 0.17738138198852538, + "step": 27300 + }, + { + "epoch": 88.67477696674777, + "grad_norm": 0.2450580894947052, + "learning_rate": 5.673139158576052e-06, + "loss": 0.17837905883789062, + "step": 27400 + }, + { + "epoch": 88.99918896999189, + "grad_norm": 0.2686944305896759, + "learning_rate": 5.511326860841424e-06, + "loss": 0.17965082168579102, + "step": 27500 + }, + { + "epoch": 89.32116788321167, + "grad_norm": 0.26215696334838867, + "learning_rate": 5.351132686084142e-06, + "loss": 0.17689130783081056, + "step": 27600 + }, + { + "epoch": 89.64557988645579, + "grad_norm": 0.2659305930137634, + "learning_rate": 5.189320388349515e-06, + "loss": 0.1780232620239258, + "step": 27700 + }, + { + "epoch": 89.96999188969991, + "grad_norm": 0.2572084665298462, + "learning_rate": 5.027508090614887e-06, + "loss": 0.17742925643920898, + "step": 27800 + }, + { + "epoch": 90.2919708029197, + "grad_norm": 0.2678115963935852, + "learning_rate": 4.865695792880259e-06, + "loss": 0.1759064292907715, + "step": 27900 + }, + { + "epoch": 90.61638280616383, + "grad_norm": 0.2606296241283417, + "learning_rate": 4.703883495145631e-06, + "loss": 0.176632080078125, + "step": 28000 + }, + { + "epoch": 90.94079480940795, + "grad_norm": 0.27705252170562744, + "learning_rate": 4.542071197411003e-06, + "loss": 0.17765697479248047, + "step": 28100 + }, + { + "epoch": 91.26277372262774, + "grad_norm": 0.2625502049922943, + "learning_rate": 4.380258899676376e-06, + "loss": 0.1756792449951172, + "step": 28200 + }, + { + "epoch": 91.58718572587186, + "grad_norm": 0.24927927553653717, + "learning_rate": 4.218446601941748e-06, + "loss": 0.17554109573364257, + "step": 28300 + }, + { + "epoch": 91.91159772911598, + "grad_norm": 0.240628182888031, + "learning_rate": 4.05663430420712e-06, + "loss": 0.17559316635131836, + "step": 28400 + }, + { + "epoch": 92.23357664233576, + "grad_norm": 0.2785760462284088, + "learning_rate": 3.894822006472492e-06, + "loss": 0.17503616333007813, + "step": 28500 + }, + { + "epoch": 92.55798864557988, + "grad_norm": 0.25900083780288696, + "learning_rate": 3.733009708737864e-06, + "loss": 0.17507522583007812, + "step": 28600 + }, + { + "epoch": 92.882400648824, + "grad_norm": 0.276037335395813, + "learning_rate": 3.5711974110032368e-06, + "loss": 0.17590507507324218, + "step": 28700 + }, + { + "epoch": 93.2043795620438, + "grad_norm": 0.2555212080478668, + "learning_rate": 3.4093851132686086e-06, + "loss": 0.17514604568481446, + "step": 28800 + }, + { + "epoch": 93.52879156528792, + "grad_norm": 0.2588745653629303, + "learning_rate": 3.247572815533981e-06, + "loss": 0.174718017578125, + "step": 28900 + }, + { + "epoch": 93.85320356853204, + "grad_norm": 0.2660391330718994, + "learning_rate": 3.0857605177993526e-06, + "loss": 0.17506734848022462, + "step": 29000 + }, + { + "epoch": 94.17518248175182, + "grad_norm": 0.2677949368953705, + "learning_rate": 2.9239482200647253e-06, + "loss": 0.17430608749389648, + "step": 29100 + }, + { + "epoch": 94.49959448499594, + "grad_norm": 0.28909972310066223, + "learning_rate": 2.762135922330097e-06, + "loss": 0.17481451034545897, + "step": 29200 + }, + { + "epoch": 94.82400648824006, + "grad_norm": 0.26000115275382996, + "learning_rate": 2.6003236245954693e-06, + "loss": 0.17436113357543945, + "step": 29300 + }, + { + "epoch": 95.14598540145985, + "grad_norm": 0.2968977987766266, + "learning_rate": 2.4385113268608415e-06, + "loss": 0.17399301528930664, + "step": 29400 + }, + { + "epoch": 95.47039740470397, + "grad_norm": 0.24084195494651794, + "learning_rate": 2.2766990291262138e-06, + "loss": 0.1732662582397461, + "step": 29500 + }, + { + "epoch": 95.7948094079481, + "grad_norm": 0.24390101432800293, + "learning_rate": 2.114886731391586e-06, + "loss": 0.17355813980102539, + "step": 29600 + }, + { + "epoch": 96.11678832116789, + "grad_norm": 0.24950821697711945, + "learning_rate": 1.9546925566343042e-06, + "loss": 0.17353734970092774, + "step": 29700 + }, + { + "epoch": 96.44120032441201, + "grad_norm": 0.2526560425758362, + "learning_rate": 1.7928802588996767e-06, + "loss": 0.17330703735351563, + "step": 29800 + }, + { + "epoch": 96.76561232765613, + "grad_norm": 0.2830760180950165, + "learning_rate": 1.6310679611650487e-06, + "loss": 0.1727421760559082, + "step": 29900 + }, + { + "epoch": 97.08759124087591, + "grad_norm": 0.21633441746234894, + "learning_rate": 1.4692556634304207e-06, + "loss": 0.17346202850341796, + "step": 30000 + }, + { + "epoch": 97.41200324412003, + "grad_norm": 0.23232562839984894, + "learning_rate": 1.307443365695793e-06, + "loss": 0.17300867080688476, + "step": 30100 + }, + { + "epoch": 97.73641524736415, + "grad_norm": 0.22741949558258057, + "learning_rate": 1.1456310679611652e-06, + "loss": 0.1723964500427246, + "step": 30200 + }, + { + "epoch": 98.05839416058394, + "grad_norm": 0.21481141448020935, + "learning_rate": 9.838187702265374e-07, + "loss": 0.17242773056030272, + "step": 30300 + }, + { + "epoch": 98.38280616382806, + "grad_norm": 0.26986297965049744, + "learning_rate": 8.220064724919095e-07, + "loss": 0.17295772552490235, + "step": 30400 + }, + { + "epoch": 98.70721816707218, + "grad_norm": 0.23824343085289001, + "learning_rate": 6.601941747572815e-07, + "loss": 0.1724873352050781, + "step": 30500 + }, + { + "epoch": 99.02919708029196, + "grad_norm": 0.28364071249961853, + "learning_rate": 4.983818770226538e-07, + "loss": 0.17249490737915038, + "step": 30600 + } + ], + "logging_steps": 100, + "max_steps": 30900, + "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": 1.744811093458944e+16, + "train_batch_size": 8, + "trial_name": null, + "trial_params": null +} diff --git a/timecost/m6/realtabformer/rtf-m6-20260429_070344/rtf_checkpoints/checkpoint-30600/training_args.bin b/timecost/m6/realtabformer/rtf-m6-20260429_070344/rtf_checkpoints/checkpoint-30600/training_args.bin new file mode 100644 index 0000000000000000000000000000000000000000..34d68dc0e0fe1c1f12a2e581dd1b166aa7178a9e --- /dev/null +++ b/timecost/m6/realtabformer/rtf-m6-20260429_070344/rtf_checkpoints/checkpoint-30600/training_args.bin @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:9e2cd88337d1d846c6918d2b3b63fa3e5c93f12fefc082497590da854a564607 +size 5201 diff --git a/timecost/m6/realtabformer/rtf-m6-20260429_070344/rtf_checkpoints/checkpoint-30700/config.json b/timecost/m6/realtabformer/rtf-m6-20260429_070344/rtf_checkpoints/checkpoint-30700/config.json new file mode 100644 index 0000000000000000000000000000000000000000..5794e9cc1aa00a0ff98ed7967c3c2d9142841a1c --- /dev/null +++ b/timecost/m6/realtabformer/rtf-m6-20260429_070344/rtf_checkpoints/checkpoint-30700/config.json @@ -0,0 +1,34 @@ +{ + "activation_function": "gelu_new", + "add_cross_attention": false, + "architectures": [ + "GPT2LMHeadModel" + ], + "attn_pdrop": 0.1, + "bos_token_id": 5, + "dtype": "float32", + "embd_pdrop": 0.1, + "eos_token_id": 6, + "initializer_range": 0.02, + "layer_norm_epsilon": 1e-05, + "model_type": "gpt2", + "n_embd": 768, + "n_head": 12, + "n_inner": null, + "n_layer": 6, + "n_positions": 1024, + "pad_token_id": null, + "reorder_and_upcast_attn": false, + "resid_pdrop": 0.1, + "scale_attn_by_inverse_layer_idx": false, + "scale_attn_weights": true, + "summary_activation": null, + "summary_first_dropout": 0.1, + "summary_proj_to_labels": true, + "summary_type": "cls_index", + "summary_use_proj": true, + "tie_word_embeddings": true, + "transformers_version": "5.5.3", + "use_cache": false, + "vocab_size": 498 +} diff --git a/timecost/m6/realtabformer/rtf-m6-20260429_070344/rtf_checkpoints/checkpoint-30700/generation_config.json b/timecost/m6/realtabformer/rtf-m6-20260429_070344/rtf_checkpoints/checkpoint-30700/generation_config.json new file mode 100644 index 0000000000000000000000000000000000000000..ffe89567780e75b5c22eade9be971483b9618f39 --- /dev/null +++ b/timecost/m6/realtabformer/rtf-m6-20260429_070344/rtf_checkpoints/checkpoint-30700/generation_config.json @@ -0,0 +1,9 @@ +{ + "_from_model_config": true, + "bos_token_id": 5, + "eos_token_id": 6, + "output_attentions": false, + "output_hidden_states": false, + "transformers_version": "5.5.3", + "use_cache": true +} diff --git a/timecost/m6/realtabformer/rtf-m6-20260429_070344/rtf_checkpoints/checkpoint-30700/model.safetensors b/timecost/m6/realtabformer/rtf-m6-20260429_070344/rtf_checkpoints/checkpoint-30700/model.safetensors new file mode 100644 index 0000000000000000000000000000000000000000..9d01833ed4e42eedaf2f642411f7c9b1aca0b856 --- /dev/null +++ b/timecost/m6/realtabformer/rtf-m6-20260429_070344/rtf_checkpoints/checkpoint-30700/model.safetensors @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:c0a45d945f533eb20fec96d66c08b7527e66611cd441c5d6dc80dc768d42baf2 +size 174798280 diff --git a/timecost/m6/realtabformer/rtf-m6-20260429_070344/rtf_checkpoints/checkpoint-30700/optimizer.pt b/timecost/m6/realtabformer/rtf-m6-20260429_070344/rtf_checkpoints/checkpoint-30700/optimizer.pt new file mode 100644 index 0000000000000000000000000000000000000000..2aa91361e4bc3a4f25d237a486a6c7c1cd45565d --- /dev/null +++ b/timecost/m6/realtabformer/rtf-m6-20260429_070344/rtf_checkpoints/checkpoint-30700/optimizer.pt @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:1f344a770507a7794aedce7f58bd8d0b5e18749df8c2da922e6d69fe45fbec40 +size 349645643 diff --git a/timecost/m6/realtabformer/rtf-m6-20260429_070344/rtf_checkpoints/checkpoint-30700/rng_state.pth b/timecost/m6/realtabformer/rtf-m6-20260429_070344/rtf_checkpoints/checkpoint-30700/rng_state.pth new file mode 100644 index 0000000000000000000000000000000000000000..0bb67302a4b0202842f0176b7cdd59f505b12ee4 --- /dev/null +++ b/timecost/m6/realtabformer/rtf-m6-20260429_070344/rtf_checkpoints/checkpoint-30700/rng_state.pth @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:738ed15a1c1e8a016334cad86df4619438b0f3652831897d293ab3d00e69d52c +size 14645 diff --git a/timecost/m6/realtabformer/rtf-m6-20260429_070344/rtf_checkpoints/checkpoint-30700/scaler.pt b/timecost/m6/realtabformer/rtf-m6-20260429_070344/rtf_checkpoints/checkpoint-30700/scaler.pt new file mode 100644 index 0000000000000000000000000000000000000000..269dda17d52e46dc412cbc33a6807baa336d5566 --- /dev/null +++ b/timecost/m6/realtabformer/rtf-m6-20260429_070344/rtf_checkpoints/checkpoint-30700/scaler.pt @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:2eddb842ccc64fc5452e10d29603a178d25cc3e1448a8ed5ac4b9b6cbc30feae +size 1383 diff --git a/timecost/m6/realtabformer/rtf-m6-20260429_070344/rtf_checkpoints/checkpoint-30700/scheduler.pt b/timecost/m6/realtabformer/rtf-m6-20260429_070344/rtf_checkpoints/checkpoint-30700/scheduler.pt new file mode 100644 index 0000000000000000000000000000000000000000..ba265e2d0a45cf29d4039a6e610fab88124b9bcd --- /dev/null +++ b/timecost/m6/realtabformer/rtf-m6-20260429_070344/rtf_checkpoints/checkpoint-30700/scheduler.pt @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:eff46d9879da4530abf0cd51534a786e09ee6f42143bc25a51db01e516d32e50 +size 1465 diff --git a/timecost/m6/realtabformer/rtf-m6-20260429_070344/rtf_checkpoints/checkpoint-30700/trainer_state.json b/timecost/m6/realtabformer/rtf-m6-20260429_070344/rtf_checkpoints/checkpoint-30700/trainer_state.json new file mode 100644 index 0000000000000000000000000000000000000000..1af9ddc80ef8ff5802fcfc1cf54bb08abc12865f --- /dev/null +++ b/timecost/m6/realtabformer/rtf-m6-20260429_070344/rtf_checkpoints/checkpoint-30700/trainer_state.json @@ -0,0 +1,2183 @@ +{ + "best_global_step": null, + "best_metric": null, + "best_model_checkpoint": null, + "epoch": 99.35360908353609, + "eval_steps": 100, + "global_step": 30700, + "is_hyper_param_search": false, + "is_local_process_zero": true, + "is_world_process_zero": true, + "log_history": [ + { + "epoch": 0.32441200324412, + "grad_norm": 0.20164933800697327, + "learning_rate": 4.983980582524272e-05, + "loss": 1.5922834777832031, + "step": 100 + }, + { + "epoch": 0.64882400648824, + "grad_norm": 0.18370771408081055, + "learning_rate": 4.967799352750809e-05, + "loss": 0.8226632690429687, + "step": 200 + }, + { + "epoch": 0.9732360097323601, + "grad_norm": 0.17879560589790344, + "learning_rate": 4.951618122977347e-05, + "loss": 0.7554012298583984, + "step": 300 + }, + { + "epoch": 1.2952149229521492, + "grad_norm": 0.14063459634780884, + "learning_rate": 4.935436893203884e-05, + "loss": 0.7157672882080078, + "step": 400 + }, + { + "epoch": 1.6196269261962692, + "grad_norm": 0.14949747920036316, + "learning_rate": 4.919255663430421e-05, + "loss": 0.7098747253417969, + "step": 500 + }, + { + "epoch": 1.9440389294403893, + "grad_norm": 0.1495194435119629, + "learning_rate": 4.9030744336569583e-05, + "loss": 0.6998626708984375, + "step": 600 + }, + { + "epoch": 2.2660178426601782, + "grad_norm": 0.1467229574918747, + "learning_rate": 4.886893203883495e-05, + "loss": 0.6833465576171875, + "step": 700 + }, + { + "epoch": 2.5904298459042985, + "grad_norm": 0.1609153300523758, + "learning_rate": 4.870711974110033e-05, + "loss": 0.6878270721435547, + "step": 800 + }, + { + "epoch": 2.9148418491484183, + "grad_norm": 0.13326895236968994, + "learning_rate": 4.85453074433657e-05, + "loss": 0.6762329864501954, + "step": 900 + }, + { + "epoch": 3.2368207623682075, + "grad_norm": 0.14083443582057953, + "learning_rate": 4.838349514563107e-05, + "loss": 0.6711769866943359, + "step": 1000 + }, + { + "epoch": 3.5612327656123277, + "grad_norm": 0.13646796345710754, + "learning_rate": 4.822168284789644e-05, + "loss": 0.6645689392089844, + "step": 1100 + }, + { + "epoch": 3.885644768856448, + "grad_norm": 0.13673610985279083, + "learning_rate": 4.805987055016181e-05, + "loss": 0.6698095703125, + "step": 1200 + }, + { + "epoch": 4.207623682076237, + "grad_norm": 0.12795455753803253, + "learning_rate": 4.789805825242719e-05, + "loss": 0.6573734283447266, + "step": 1300 + }, + { + "epoch": 4.5320356853203565, + "grad_norm": 0.12952066957950592, + "learning_rate": 4.773624595469256e-05, + "loss": 0.6638764190673828, + "step": 1400 + }, + { + "epoch": 4.856447688564477, + "grad_norm": 0.1414010375738144, + "learning_rate": 4.757443365695793e-05, + "loss": 0.6583383178710938, + "step": 1500 + }, + { + "epoch": 5.178426601784266, + "grad_norm": 0.14432589709758759, + "learning_rate": 4.74126213592233e-05, + "loss": 0.6485870361328125, + "step": 1600 + }, + { + "epoch": 5.502838605028386, + "grad_norm": 0.1340341866016388, + "learning_rate": 4.725080906148868e-05, + "loss": 0.6541815948486328, + "step": 1700 + }, + { + "epoch": 5.827250608272506, + "grad_norm": 0.1309279352426529, + "learning_rate": 4.708899676375405e-05, + "loss": 0.6557488250732422, + "step": 1800 + }, + { + "epoch": 6.149229521492296, + "grad_norm": 0.1259990930557251, + "learning_rate": 4.692718446601942e-05, + "loss": 0.639359245300293, + "step": 1900 + }, + { + "epoch": 6.473641524736415, + "grad_norm": 0.13993705809116364, + "learning_rate": 4.6765372168284794e-05, + "loss": 0.6472817230224609, + "step": 2000 + }, + { + "epoch": 6.798053527980535, + "grad_norm": 0.12632109224796295, + "learning_rate": 4.660355987055016e-05, + "loss": 0.6512689971923828, + "step": 2100 + }, + { + "epoch": 7.120032441200324, + "grad_norm": 0.12884259223937988, + "learning_rate": 4.644174757281554e-05, + "loss": 0.6424983978271485, + "step": 2200 + }, + { + "epoch": 7.444444444444445, + "grad_norm": 0.13162656128406525, + "learning_rate": 4.627993527508091e-05, + "loss": 0.6413846588134766, + "step": 2300 + }, + { + "epoch": 7.768856447688565, + "grad_norm": 0.1305171549320221, + "learning_rate": 4.611812297734628e-05, + "loss": 0.6504198455810547, + "step": 2400 + }, + { + "epoch": 8.090835360908354, + "grad_norm": 0.12320607155561447, + "learning_rate": 4.5956310679611654e-05, + "loss": 0.6361569213867188, + "step": 2500 + }, + { + "epoch": 8.415247364152474, + "grad_norm": 0.1263129562139511, + "learning_rate": 4.579449838187703e-05, + "loss": 0.6391400527954102, + "step": 2600 + }, + { + "epoch": 8.739659367396595, + "grad_norm": 0.14339180290699005, + "learning_rate": 4.563268608414239e-05, + "loss": 0.643778076171875, + "step": 2700 + }, + { + "epoch": 9.061638280616382, + "grad_norm": 0.13703292608261108, + "learning_rate": 4.547087378640777e-05, + "loss": 0.63127685546875, + "step": 2800 + }, + { + "epoch": 9.386050283860502, + "grad_norm": 0.12888263165950775, + "learning_rate": 4.5309061488673144e-05, + "loss": 0.636928939819336, + "step": 2900 + }, + { + "epoch": 9.710462287104622, + "grad_norm": 0.1290873885154724, + "learning_rate": 4.5147249190938514e-05, + "loss": 0.6323677444458008, + "step": 3000 + }, + { + "epoch": 10.032441200324412, + "grad_norm": 0.13526120781898499, + "learning_rate": 4.498543689320388e-05, + "loss": 0.6302993392944336, + "step": 3100 + }, + { + "epoch": 10.356853203568532, + "grad_norm": 0.14485451579093933, + "learning_rate": 4.482362459546926e-05, + "loss": 0.6336409378051758, + "step": 3200 + }, + { + "epoch": 10.681265206812652, + "grad_norm": 0.12640801072120667, + "learning_rate": 4.466181229773463e-05, + "loss": 0.6236648178100586, + "step": 3300 + }, + { + "epoch": 11.003244120032441, + "grad_norm": 0.13860085606575012, + "learning_rate": 4.4500000000000004e-05, + "loss": 0.6343330383300781, + "step": 3400 + }, + { + "epoch": 11.327656123276562, + "grad_norm": 0.13636715710163116, + "learning_rate": 4.4338187702265373e-05, + "loss": 0.6203033447265625, + "step": 3500 + }, + { + "epoch": 11.652068126520682, + "grad_norm": 0.13047286868095398, + "learning_rate": 4.417637540453074e-05, + "loss": 0.6218357086181641, + "step": 3600 + }, + { + "epoch": 11.976480129764802, + "grad_norm": 0.13506969809532166, + "learning_rate": 4.401456310679612e-05, + "loss": 0.6350560760498047, + "step": 3700 + }, + { + "epoch": 12.298459042984591, + "grad_norm": 0.13476674258708954, + "learning_rate": 4.385275080906149e-05, + "loss": 0.6147463607788086, + "step": 3800 + }, + { + "epoch": 12.62287104622871, + "grad_norm": 0.12256718426942825, + "learning_rate": 4.3690938511326864e-05, + "loss": 0.624836196899414, + "step": 3900 + }, + { + "epoch": 12.94728304947283, + "grad_norm": 0.13317419588565826, + "learning_rate": 4.352912621359223e-05, + "loss": 0.628001823425293, + "step": 4000 + }, + { + "epoch": 13.26926196269262, + "grad_norm": 0.13066990673542023, + "learning_rate": 4.33673139158576e-05, + "loss": 0.609481315612793, + "step": 4100 + }, + { + "epoch": 13.59367396593674, + "grad_norm": 0.13055436313152313, + "learning_rate": 4.320550161812298e-05, + "loss": 0.6177150344848633, + "step": 4200 + }, + { + "epoch": 13.91808596918086, + "grad_norm": 0.13111238181591034, + "learning_rate": 4.3043689320388355e-05, + "loss": 0.6266952896118164, + "step": 4300 + }, + { + "epoch": 14.240064882400649, + "grad_norm": 0.14692434668540955, + "learning_rate": 4.2881877022653724e-05, + "loss": 0.6085420608520508, + "step": 4400 + }, + { + "epoch": 14.564476885644769, + "grad_norm": 0.1490693986415863, + "learning_rate": 4.272006472491909e-05, + "loss": 0.6127510833740234, + "step": 4500 + }, + { + "epoch": 14.88888888888889, + "grad_norm": 0.14273235201835632, + "learning_rate": 4.255825242718447e-05, + "loss": 0.6196828079223633, + "step": 4600 + }, + { + "epoch": 15.210867802108679, + "grad_norm": 0.1464281678199768, + "learning_rate": 4.239644012944984e-05, + "loss": 0.606991844177246, + "step": 4700 + }, + { + "epoch": 15.535279805352799, + "grad_norm": 0.15429367125034332, + "learning_rate": 4.2234627831715215e-05, + "loss": 0.6114653015136718, + "step": 4800 + }, + { + "epoch": 15.859691808596917, + "grad_norm": 0.1561301201581955, + "learning_rate": 4.2072815533980584e-05, + "loss": 0.6102643585205079, + "step": 4900 + }, + { + "epoch": 16.181670721816708, + "grad_norm": 0.14197590947151184, + "learning_rate": 4.191100323624595e-05, + "loss": 0.6006597900390624, + "step": 5000 + }, + { + "epoch": 16.50608272506083, + "grad_norm": 0.15073753893375397, + "learning_rate": 4.174919093851133e-05, + "loss": 0.6000652694702149, + "step": 5100 + }, + { + "epoch": 16.83049472830495, + "grad_norm": 0.1630340814590454, + "learning_rate": 4.1587378640776705e-05, + "loss": 0.601633186340332, + "step": 5200 + }, + { + "epoch": 17.152473641524736, + "grad_norm": 0.14281341433525085, + "learning_rate": 4.1425566343042074e-05, + "loss": 0.6040666580200196, + "step": 5300 + }, + { + "epoch": 17.476885644768856, + "grad_norm": 0.16090357303619385, + "learning_rate": 4.1263754045307444e-05, + "loss": 0.5960210800170899, + "step": 5400 + }, + { + "epoch": 17.801297648012977, + "grad_norm": 0.15764260292053223, + "learning_rate": 4.110194174757282e-05, + "loss": 0.6001902389526367, + "step": 5500 + }, + { + "epoch": 18.123276561232764, + "grad_norm": 0.17385198175907135, + "learning_rate": 4.094012944983819e-05, + "loss": 0.5886587142944336, + "step": 5600 + }, + { + "epoch": 18.447688564476884, + "grad_norm": 0.16908828914165497, + "learning_rate": 4.0778317152103565e-05, + "loss": 0.594392967224121, + "step": 5700 + }, + { + "epoch": 18.772100567721004, + "grad_norm": 0.16428205370903015, + "learning_rate": 4.0616504854368934e-05, + "loss": 0.589791030883789, + "step": 5800 + }, + { + "epoch": 19.094079480940795, + "grad_norm": 0.16796661913394928, + "learning_rate": 4.0454692556634304e-05, + "loss": 0.5915510559082031, + "step": 5900 + }, + { + "epoch": 19.418491484184916, + "grad_norm": 0.17108002305030823, + "learning_rate": 4.029288025889968e-05, + "loss": 0.5712713623046874, + "step": 6000 + }, + { + "epoch": 19.742903487429036, + "grad_norm": 0.17238284647464752, + "learning_rate": 4.0131067961165056e-05, + "loss": 0.5880846786499023, + "step": 6100 + }, + { + "epoch": 20.064882400648823, + "grad_norm": 0.16751733422279358, + "learning_rate": 3.9969255663430425e-05, + "loss": 0.5886093902587891, + "step": 6200 + }, + { + "epoch": 20.389294403892944, + "grad_norm": 0.17518126964569092, + "learning_rate": 3.9807443365695794e-05, + "loss": 0.5645963287353516, + "step": 6300 + }, + { + "epoch": 20.713706407137064, + "grad_norm": 0.19824537634849548, + "learning_rate": 3.9645631067961164e-05, + "loss": 0.5758349609375, + "step": 6400 + }, + { + "epoch": 21.035685320356855, + "grad_norm": 0.17580321431159973, + "learning_rate": 3.948381877022654e-05, + "loss": 0.580423698425293, + "step": 6500 + }, + { + "epoch": 21.360097323600975, + "grad_norm": 0.17921853065490723, + "learning_rate": 3.9322006472491916e-05, + "loss": 0.5611041641235351, + "step": 6600 + }, + { + "epoch": 21.68450932684509, + "grad_norm": 0.18941283226013184, + "learning_rate": 3.916019417475728e-05, + "loss": 0.5720311737060547, + "step": 6700 + }, + { + "epoch": 22.006488240064883, + "grad_norm": 0.18437007069587708, + "learning_rate": 3.8998381877022654e-05, + "loss": 0.563258171081543, + "step": 6800 + }, + { + "epoch": 22.330900243309003, + "grad_norm": 0.19815316796302795, + "learning_rate": 3.883656957928803e-05, + "loss": 0.5511487197875976, + "step": 6900 + }, + { + "epoch": 22.655312246553123, + "grad_norm": 0.20421746373176575, + "learning_rate": 3.86747572815534e-05, + "loss": 0.5592882537841797, + "step": 7000 + }, + { + "epoch": 22.979724249797243, + "grad_norm": 0.2145063877105713, + "learning_rate": 3.851294498381877e-05, + "loss": 0.5531240844726563, + "step": 7100 + }, + { + "epoch": 23.30170316301703, + "grad_norm": 0.2133578211069107, + "learning_rate": 3.8351132686084145e-05, + "loss": 0.5361775588989258, + "step": 7200 + }, + { + "epoch": 23.62611516626115, + "grad_norm": 0.21354049444198608, + "learning_rate": 3.8189320388349514e-05, + "loss": 0.5458520126342773, + "step": 7300 + }, + { + "epoch": 23.95052716950527, + "grad_norm": 0.20230478048324585, + "learning_rate": 3.802750809061489e-05, + "loss": 0.5508059692382813, + "step": 7400 + }, + { + "epoch": 24.272506082725062, + "grad_norm": 0.21077010035514832, + "learning_rate": 3.786569579288026e-05, + "loss": 0.5237713623046875, + "step": 7500 + }, + { + "epoch": 24.596918085969182, + "grad_norm": 0.22097694873809814, + "learning_rate": 3.770388349514563e-05, + "loss": 0.5358617782592774, + "step": 7600 + }, + { + "epoch": 24.9213300892133, + "grad_norm": 0.23570670187473297, + "learning_rate": 3.7542071197411005e-05, + "loss": 0.5347403717041016, + "step": 7700 + }, + { + "epoch": 25.24330900243309, + "grad_norm": 0.21193180978298187, + "learning_rate": 3.738025889967638e-05, + "loss": 0.5195016479492187, + "step": 7800 + }, + { + "epoch": 25.56772100567721, + "grad_norm": 0.24408023059368134, + "learning_rate": 3.721844660194175e-05, + "loss": 0.5128348922729492, + "step": 7900 + }, + { + "epoch": 25.89213300892133, + "grad_norm": 0.2301139086484909, + "learning_rate": 3.705663430420712e-05, + "loss": 0.5274497222900391, + "step": 8000 + }, + { + "epoch": 26.214111922141118, + "grad_norm": 0.23104797303676605, + "learning_rate": 3.6894822006472495e-05, + "loss": 0.5127175521850585, + "step": 8100 + }, + { + "epoch": 26.53852392538524, + "grad_norm": 0.25776928663253784, + "learning_rate": 3.6733009708737865e-05, + "loss": 0.5081464004516602, + "step": 8200 + }, + { + "epoch": 26.86293592862936, + "grad_norm": 0.23275628685951233, + "learning_rate": 3.657119741100324e-05, + "loss": 0.5066284942626953, + "step": 8300 + }, + { + "epoch": 27.18491484184915, + "grad_norm": 0.25895944237709045, + "learning_rate": 3.640938511326861e-05, + "loss": 0.4974431228637695, + "step": 8400 + }, + { + "epoch": 27.50932684509327, + "grad_norm": 0.2517513632774353, + "learning_rate": 3.624757281553398e-05, + "loss": 0.49229534149169923, + "step": 8500 + }, + { + "epoch": 27.83373884833739, + "grad_norm": 0.27210375666618347, + "learning_rate": 3.6085760517799355e-05, + "loss": 0.49578163146972654, + "step": 8600 + }, + { + "epoch": 28.155717761557177, + "grad_norm": 0.27576959133148193, + "learning_rate": 3.592394822006473e-05, + "loss": 0.49141166687011717, + "step": 8700 + }, + { + "epoch": 28.480129764801298, + "grad_norm": 0.26969099044799805, + "learning_rate": 3.57621359223301e-05, + "loss": 0.47837520599365235, + "step": 8800 + }, + { + "epoch": 28.804541768045418, + "grad_norm": 0.2485017627477646, + "learning_rate": 3.560032362459547e-05, + "loss": 0.4838485336303711, + "step": 8900 + }, + { + "epoch": 29.126520681265205, + "grad_norm": 0.2618029713630676, + "learning_rate": 3.543851132686084e-05, + "loss": 0.4762223052978516, + "step": 9000 + }, + { + "epoch": 29.450932684509326, + "grad_norm": 0.25002509355545044, + "learning_rate": 3.5276699029126215e-05, + "loss": 0.4613980865478516, + "step": 9100 + }, + { + "epoch": 29.775344687753446, + "grad_norm": 0.2622935473918915, + "learning_rate": 3.511488673139159e-05, + "loss": 0.46839576721191406, + "step": 9200 + }, + { + "epoch": 30.097323600973237, + "grad_norm": 0.27539685368537903, + "learning_rate": 3.495307443365696e-05, + "loss": 0.46719558715820314, + "step": 9300 + }, + { + "epoch": 30.421735604217357, + "grad_norm": 0.2709919512271881, + "learning_rate": 3.479126213592233e-05, + "loss": 0.44856761932373046, + "step": 9400 + }, + { + "epoch": 30.746147607461477, + "grad_norm": 0.2810458242893219, + "learning_rate": 3.4629449838187706e-05, + "loss": 0.4556717300415039, + "step": 9500 + }, + { + "epoch": 31.068126520681265, + "grad_norm": 0.2798343002796173, + "learning_rate": 3.4467637540453075e-05, + "loss": 0.45173492431640627, + "step": 9600 + }, + { + "epoch": 31.392538523925385, + "grad_norm": 0.3120841383934021, + "learning_rate": 3.430582524271845e-05, + "loss": 0.4392761993408203, + "step": 9700 + }, + { + "epoch": 31.716950527169505, + "grad_norm": 0.2956726551055908, + "learning_rate": 3.414401294498382e-05, + "loss": 0.4437244415283203, + "step": 9800 + }, + { + "epoch": 32.038929440389296, + "grad_norm": 0.2856016457080841, + "learning_rate": 3.398220064724919e-05, + "loss": 0.441302490234375, + "step": 9900 + }, + { + "epoch": 32.363341443633416, + "grad_norm": 0.2965444028377533, + "learning_rate": 3.3820388349514566e-05, + "loss": 0.42223735809326174, + "step": 10000 + }, + { + "epoch": 32.68775344687754, + "grad_norm": 0.2714678943157196, + "learning_rate": 3.365857605177994e-05, + "loss": 0.43019737243652345, + "step": 10100 + }, + { + "epoch": 33.009732360097324, + "grad_norm": 0.23514199256896973, + "learning_rate": 3.3496763754045304e-05, + "loss": 0.4372244644165039, + "step": 10200 + }, + { + "epoch": 33.334144363341444, + "grad_norm": 0.26974233984947205, + "learning_rate": 3.333495145631068e-05, + "loss": 0.41183216094970704, + "step": 10300 + }, + { + "epoch": 33.658556366585564, + "grad_norm": 0.29364973306655884, + "learning_rate": 3.3173139158576056e-05, + "loss": 0.4156087112426758, + "step": 10400 + }, + { + "epoch": 33.982968369829685, + "grad_norm": 0.3023452162742615, + "learning_rate": 3.3011326860841425e-05, + "loss": 0.4232332992553711, + "step": 10500 + }, + { + "epoch": 34.30494728304947, + "grad_norm": 0.2768167555332184, + "learning_rate": 3.2849514563106795e-05, + "loss": 0.4014273452758789, + "step": 10600 + }, + { + "epoch": 34.62935928629359, + "grad_norm": 0.3322605788707733, + "learning_rate": 3.268770226537217e-05, + "loss": 0.40524036407470704, + "step": 10700 + }, + { + "epoch": 34.95377128953771, + "grad_norm": 0.3203238546848297, + "learning_rate": 3.252588996763754e-05, + "loss": 0.40970794677734373, + "step": 10800 + }, + { + "epoch": 35.2757502027575, + "grad_norm": 0.303089439868927, + "learning_rate": 3.2364077669902916e-05, + "loss": 0.38891010284423827, + "step": 10900 + }, + { + "epoch": 35.60016220600162, + "grad_norm": 0.29558560252189636, + "learning_rate": 3.220226537216829e-05, + "loss": 0.3949446105957031, + "step": 11000 + }, + { + "epoch": 35.92457420924574, + "grad_norm": 0.3112625479698181, + "learning_rate": 3.2040453074433655e-05, + "loss": 0.39758953094482424, + "step": 11100 + }, + { + "epoch": 36.24655312246553, + "grad_norm": 0.3039425313472748, + "learning_rate": 3.187864077669903e-05, + "loss": 0.38358245849609374, + "step": 11200 + }, + { + "epoch": 36.57096512570965, + "grad_norm": 0.3353067934513092, + "learning_rate": 3.171682847896441e-05, + "loss": 0.3797079849243164, + "step": 11300 + }, + { + "epoch": 36.89537712895377, + "grad_norm": 0.367567241191864, + "learning_rate": 3.1555016181229776e-05, + "loss": 0.38862274169921873, + "step": 11400 + }, + { + "epoch": 37.21735604217356, + "grad_norm": 0.32198429107666016, + "learning_rate": 3.1393203883495145e-05, + "loss": 0.37104736328125, + "step": 11500 + }, + { + "epoch": 37.54176804541768, + "grad_norm": 0.29541313648223877, + "learning_rate": 3.1231391585760514e-05, + "loss": 0.37103946685791017, + "step": 11600 + }, + { + "epoch": 37.8661800486618, + "grad_norm": 0.34138020873069763, + "learning_rate": 3.106957928802589e-05, + "loss": 0.37340602874755857, + "step": 11700 + }, + { + "epoch": 38.18815896188159, + "grad_norm": 0.301660418510437, + "learning_rate": 3.0907766990291267e-05, + "loss": 0.36555946350097657, + "step": 11800 + }, + { + "epoch": 38.51257096512571, + "grad_norm": 0.2793280780315399, + "learning_rate": 3.0745954692556636e-05, + "loss": 0.35706504821777346, + "step": 11900 + }, + { + "epoch": 38.83698296836983, + "grad_norm": 0.2934885621070862, + "learning_rate": 3.0584142394822005e-05, + "loss": 0.3642056655883789, + "step": 12000 + }, + { + "epoch": 39.15896188158962, + "grad_norm": 0.3178177773952484, + "learning_rate": 3.042233009708738e-05, + "loss": 0.3558914566040039, + "step": 12100 + }, + { + "epoch": 39.48337388483374, + "grad_norm": 0.32718706130981445, + "learning_rate": 3.026051779935275e-05, + "loss": 0.34923362731933594, + "step": 12200 + }, + { + "epoch": 39.80778588807786, + "grad_norm": 0.32444027066230774, + "learning_rate": 3.0098705501618123e-05, + "loss": 0.3525634002685547, + "step": 12300 + }, + { + "epoch": 40.12976480129765, + "grad_norm": 0.3068920075893402, + "learning_rate": 2.99368932038835e-05, + "loss": 0.3468068695068359, + "step": 12400 + }, + { + "epoch": 40.45417680454177, + "grad_norm": 0.31230300664901733, + "learning_rate": 2.977508090614887e-05, + "loss": 0.3374324798583984, + "step": 12500 + }, + { + "epoch": 40.77858880778589, + "grad_norm": 0.35733962059020996, + "learning_rate": 2.961326860841424e-05, + "loss": 0.3439715576171875, + "step": 12600 + }, + { + "epoch": 41.100567721005675, + "grad_norm": 0.3116827607154846, + "learning_rate": 2.9451456310679614e-05, + "loss": 0.3388735961914062, + "step": 12700 + }, + { + "epoch": 41.424979724249795, + "grad_norm": 0.3260541558265686, + "learning_rate": 2.9289644012944983e-05, + "loss": 0.3278466796875, + "step": 12800 + }, + { + "epoch": 41.749391727493915, + "grad_norm": 0.3492940068244934, + "learning_rate": 2.912783171521036e-05, + "loss": 0.33501758575439455, + "step": 12900 + }, + { + "epoch": 42.07137064071371, + "grad_norm": 0.33961179852485657, + "learning_rate": 2.896601941747573e-05, + "loss": 0.332823600769043, + "step": 13000 + }, + { + "epoch": 42.39578264395783, + "grad_norm": 0.3111296594142914, + "learning_rate": 2.88042071197411e-05, + "loss": 0.31814098358154297, + "step": 13100 + }, + { + "epoch": 42.72019464720195, + "grad_norm": 0.33305123448371887, + "learning_rate": 2.8642394822006473e-05, + "loss": 0.3256596374511719, + "step": 13200 + }, + { + "epoch": 43.04217356042174, + "grad_norm": 0.28727594017982483, + "learning_rate": 2.848058252427185e-05, + "loss": 0.32629146575927737, + "step": 13300 + }, + { + "epoch": 43.36658556366586, + "grad_norm": 0.3200686573982239, + "learning_rate": 2.8318770226537215e-05, + "loss": 0.310048885345459, + "step": 13400 + }, + { + "epoch": 43.69099756690998, + "grad_norm": 0.3261258602142334, + "learning_rate": 2.815695792880259e-05, + "loss": 0.3169711685180664, + "step": 13500 + }, + { + "epoch": 44.012976480129765, + "grad_norm": 0.32062989473342896, + "learning_rate": 2.7995145631067964e-05, + "loss": 0.31799676895141604, + "step": 13600 + }, + { + "epoch": 44.337388483373886, + "grad_norm": 0.3417779803276062, + "learning_rate": 2.7833333333333333e-05, + "loss": 0.3045396614074707, + "step": 13700 + }, + { + "epoch": 44.661800486618006, + "grad_norm": 0.32301145792007446, + "learning_rate": 2.7671521035598706e-05, + "loss": 0.3061079978942871, + "step": 13800 + }, + { + "epoch": 44.986212489862126, + "grad_norm": 0.3934004008769989, + "learning_rate": 2.7509708737864082e-05, + "loss": 0.31222929000854494, + "step": 13900 + }, + { + "epoch": 45.30819140308191, + "grad_norm": 0.33090853691101074, + "learning_rate": 2.734789644012945e-05, + "loss": 0.29367765426635745, + "step": 14000 + }, + { + "epoch": 45.632603406326034, + "grad_norm": 0.3316773474216461, + "learning_rate": 2.7186084142394824e-05, + "loss": 0.30018712997436525, + "step": 14100 + }, + { + "epoch": 45.957015409570154, + "grad_norm": 0.36180180311203003, + "learning_rate": 2.7024271844660193e-05, + "loss": 0.3031520080566406, + "step": 14200 + }, + { + "epoch": 46.27899432278994, + "grad_norm": 0.32503196597099304, + "learning_rate": 2.6862459546925566e-05, + "loss": 0.29114202499389646, + "step": 14300 + }, + { + "epoch": 46.60340632603406, + "grad_norm": 0.36477360129356384, + "learning_rate": 2.6700647249190942e-05, + "loss": 0.29186737060546875, + "step": 14400 + }, + { + "epoch": 46.92781832927818, + "grad_norm": 0.3492746949195862, + "learning_rate": 2.6538834951456308e-05, + "loss": 0.296141300201416, + "step": 14500 + }, + { + "epoch": 47.24979724249797, + "grad_norm": 0.32664960622787476, + "learning_rate": 2.6378640776699032e-05, + "loss": 0.2826018142700195, + "step": 14600 + }, + { + "epoch": 47.57420924574209, + "grad_norm": 0.3388548493385315, + "learning_rate": 2.62168284789644e-05, + "loss": 0.28671709060668943, + "step": 14700 + }, + { + "epoch": 47.89862124898621, + "grad_norm": 0.38633057475090027, + "learning_rate": 2.6055016181229774e-05, + "loss": 0.2910732078552246, + "step": 14800 + }, + { + "epoch": 48.220600162206004, + "grad_norm": 0.31736406683921814, + "learning_rate": 2.5893203883495147e-05, + "loss": 0.2784827995300293, + "step": 14900 + }, + { + "epoch": 48.545012165450125, + "grad_norm": 0.37021875381469727, + "learning_rate": 2.5731391585760516e-05, + "loss": 0.2798298263549805, + "step": 15000 + }, + { + "epoch": 48.869424168694245, + "grad_norm": 0.34544867277145386, + "learning_rate": 2.5569579288025892e-05, + "loss": 0.2821967697143555, + "step": 15100 + }, + { + "epoch": 49.19140308191403, + "grad_norm": 0.31732165813446045, + "learning_rate": 2.5407766990291265e-05, + "loss": 0.27426704406738284, + "step": 15200 + }, + { + "epoch": 49.51581508515815, + "grad_norm": 0.3201292157173157, + "learning_rate": 2.5245954692556634e-05, + "loss": 0.27101806640625, + "step": 15300 + }, + { + "epoch": 49.84022708840227, + "grad_norm": 0.33511412143707275, + "learning_rate": 2.5084142394822007e-05, + "loss": 0.27499908447265625, + "step": 15400 + }, + { + "epoch": 50.16220600162206, + "grad_norm": 0.347622275352478, + "learning_rate": 2.492233009708738e-05, + "loss": 0.26981922149658205, + "step": 15500 + }, + { + "epoch": 50.48661800486618, + "grad_norm": 0.3041851222515106, + "learning_rate": 2.4760517799352752e-05, + "loss": 0.2654261589050293, + "step": 15600 + }, + { + "epoch": 50.8110300081103, + "grad_norm": 0.3489990830421448, + "learning_rate": 2.4598705501618125e-05, + "loss": 0.2702595329284668, + "step": 15700 + }, + { + "epoch": 51.13300892133009, + "grad_norm": 0.30876776576042175, + "learning_rate": 2.4436893203883494e-05, + "loss": 0.2657257843017578, + "step": 15800 + }, + { + "epoch": 51.45742092457421, + "grad_norm": 0.34536364674568176, + "learning_rate": 2.4275080906148867e-05, + "loss": 0.261352596282959, + "step": 15900 + }, + { + "epoch": 51.78183292781833, + "grad_norm": 0.3297542333602905, + "learning_rate": 2.4113268608414243e-05, + "loss": 0.26374523162841795, + "step": 16000 + }, + { + "epoch": 52.103811841038116, + "grad_norm": 0.3442004323005676, + "learning_rate": 2.3951456310679612e-05, + "loss": 0.2606217002868652, + "step": 16100 + }, + { + "epoch": 52.428223844282236, + "grad_norm": 0.32110315561294556, + "learning_rate": 2.3789644012944985e-05, + "loss": 0.25471590042114256, + "step": 16200 + }, + { + "epoch": 52.752635847526356, + "grad_norm": 0.35750967264175415, + "learning_rate": 2.3627831715210357e-05, + "loss": 0.25818721771240233, + "step": 16300 + }, + { + "epoch": 53.07461476074615, + "grad_norm": 0.3167541027069092, + "learning_rate": 2.346601941747573e-05, + "loss": 0.25791025161743164, + "step": 16400 + }, + { + "epoch": 53.39902676399027, + "grad_norm": 0.3614417314529419, + "learning_rate": 2.33042071197411e-05, + "loss": 0.2503541374206543, + "step": 16500 + }, + { + "epoch": 53.723438767234384, + "grad_norm": 0.3383695185184479, + "learning_rate": 2.3142394822006475e-05, + "loss": 0.25205833435058594, + "step": 16600 + }, + { + "epoch": 54.04541768045418, + "grad_norm": 0.3129797577857971, + "learning_rate": 2.298220064724919e-05, + "loss": 0.2553220558166504, + "step": 16700 + }, + { + "epoch": 54.3698296836983, + "grad_norm": 0.32768893241882324, + "learning_rate": 2.2820388349514566e-05, + "loss": 0.2452069664001465, + "step": 16800 + }, + { + "epoch": 54.69424168694242, + "grad_norm": 0.34217071533203125, + "learning_rate": 2.2658576051779935e-05, + "loss": 0.2495290756225586, + "step": 16900 + }, + { + "epoch": 55.01622060016221, + "grad_norm": 0.3423132002353668, + "learning_rate": 2.2496763754045308e-05, + "loss": 0.25019683837890627, + "step": 17000 + }, + { + "epoch": 55.34063260340633, + "grad_norm": 0.34714990854263306, + "learning_rate": 2.233495145631068e-05, + "loss": 0.24028772354125977, + "step": 17100 + }, + { + "epoch": 55.66504460665045, + "grad_norm": 0.32141968607902527, + "learning_rate": 2.2173139158576053e-05, + "loss": 0.2443995475769043, + "step": 17200 + }, + { + "epoch": 55.98945660989457, + "grad_norm": 0.3385929763317108, + "learning_rate": 2.2011326860841426e-05, + "loss": 0.24807867050170898, + "step": 17300 + }, + { + "epoch": 56.311435523114355, + "grad_norm": 0.3463747203350067, + "learning_rate": 2.1849514563106795e-05, + "loss": 0.23618980407714843, + "step": 17400 + }, + { + "epoch": 56.635847526358475, + "grad_norm": 0.3065926730632782, + "learning_rate": 2.168770226537217e-05, + "loss": 0.23906055450439453, + "step": 17500 + }, + { + "epoch": 56.960259529602595, + "grad_norm": 0.3168463408946991, + "learning_rate": 2.152588996763754e-05, + "loss": 0.24397821426391603, + "step": 17600 + }, + { + "epoch": 57.28223844282238, + "grad_norm": 0.3540167510509491, + "learning_rate": 2.1364077669902913e-05, + "loss": 0.2341847038269043, + "step": 17700 + }, + { + "epoch": 57.6066504460665, + "grad_norm": 0.3474962115287781, + "learning_rate": 2.1202265372168286e-05, + "loss": 0.23654184341430665, + "step": 17800 + }, + { + "epoch": 57.93106244931062, + "grad_norm": 0.3104344606399536, + "learning_rate": 2.1040453074433658e-05, + "loss": 0.238500919342041, + "step": 17900 + }, + { + "epoch": 58.25304136253041, + "grad_norm": 0.2928438186645508, + "learning_rate": 2.087864077669903e-05, + "loss": 0.2317611312866211, + "step": 18000 + }, + { + "epoch": 58.57745336577453, + "grad_norm": 0.34206250309944153, + "learning_rate": 2.0716828478964404e-05, + "loss": 0.23266231536865234, + "step": 18100 + }, + { + "epoch": 58.90186536901865, + "grad_norm": 0.3680970370769501, + "learning_rate": 2.0555016181229776e-05, + "loss": 0.23497753143310546, + "step": 18200 + }, + { + "epoch": 59.223844282238446, + "grad_norm": 0.3037141263484955, + "learning_rate": 2.0393203883495145e-05, + "loss": 0.2270449447631836, + "step": 18300 + }, + { + "epoch": 59.548256285482566, + "grad_norm": 0.3106273114681244, + "learning_rate": 2.0231391585760518e-05, + "loss": 0.22707063674926758, + "step": 18400 + }, + { + "epoch": 59.872668288726686, + "grad_norm": 0.36219528317451477, + "learning_rate": 2.006957928802589e-05, + "loss": 0.2324913787841797, + "step": 18500 + }, + { + "epoch": 60.194647201946474, + "grad_norm": 0.3081775903701782, + "learning_rate": 1.9907766990291263e-05, + "loss": 0.22577075958251952, + "step": 18600 + }, + { + "epoch": 60.519059205190594, + "grad_norm": 0.3376457989215851, + "learning_rate": 1.9745954692556633e-05, + "loss": 0.2236073112487793, + "step": 18700 + }, + { + "epoch": 60.843471208434714, + "grad_norm": 0.3010921776294708, + "learning_rate": 1.958414239482201e-05, + "loss": 0.2290345001220703, + "step": 18800 + }, + { + "epoch": 61.1654501216545, + "grad_norm": 0.3345211148262024, + "learning_rate": 1.9422330097087378e-05, + "loss": 0.22328811645507812, + "step": 18900 + }, + { + "epoch": 61.48986212489862, + "grad_norm": 0.35830914974212646, + "learning_rate": 1.926051779935275e-05, + "loss": 0.22145767211914064, + "step": 19000 + }, + { + "epoch": 61.81427412814274, + "grad_norm": 0.3177037835121155, + "learning_rate": 1.9098705501618123e-05, + "loss": 0.223042049407959, + "step": 19100 + }, + { + "epoch": 62.13625304136253, + "grad_norm": 0.2974834442138672, + "learning_rate": 1.8936893203883496e-05, + "loss": 0.221235294342041, + "step": 19200 + }, + { + "epoch": 62.46066504460665, + "grad_norm": 0.3040814995765686, + "learning_rate": 1.877508090614887e-05, + "loss": 0.21824802398681642, + "step": 19300 + }, + { + "epoch": 62.78507704785077, + "grad_norm": 0.3453911244869232, + "learning_rate": 1.861326860841424e-05, + "loss": 0.22165294647216796, + "step": 19400 + }, + { + "epoch": 63.10705596107056, + "grad_norm": 0.3323674201965332, + "learning_rate": 1.8451456310679614e-05, + "loss": 0.21942996978759766, + "step": 19500 + }, + { + "epoch": 63.43146796431468, + "grad_norm": 0.2868025302886963, + "learning_rate": 1.8289644012944983e-05, + "loss": 0.2159541893005371, + "step": 19600 + }, + { + "epoch": 63.7558799675588, + "grad_norm": 0.2985902428627014, + "learning_rate": 1.8127831715210356e-05, + "loss": 0.21843338012695312, + "step": 19700 + }, + { + "epoch": 64.07785888077859, + "grad_norm": 0.29877224564552307, + "learning_rate": 1.796601941747573e-05, + "loss": 0.21846704483032225, + "step": 19800 + }, + { + "epoch": 64.40227088402271, + "grad_norm": 0.31725695729255676, + "learning_rate": 1.78042071197411e-05, + "loss": 0.2123063850402832, + "step": 19900 + }, + { + "epoch": 64.72668288726683, + "grad_norm": 0.30116891860961914, + "learning_rate": 1.7642394822006474e-05, + "loss": 0.21550237655639648, + "step": 20000 + }, + { + "epoch": 65.04866180048661, + "grad_norm": 0.33267149329185486, + "learning_rate": 1.7480582524271846e-05, + "loss": 0.2158302879333496, + "step": 20100 + }, + { + "epoch": 65.37307380373073, + "grad_norm": 0.30885910987854004, + "learning_rate": 1.731877022653722e-05, + "loss": 0.2090800666809082, + "step": 20200 + }, + { + "epoch": 65.69748580697485, + "grad_norm": 0.31430330872535706, + "learning_rate": 1.715695792880259e-05, + "loss": 0.21172605514526366, + "step": 20300 + }, + { + "epoch": 66.01946472019465, + "grad_norm": 0.2837020754814148, + "learning_rate": 1.6995145631067964e-05, + "loss": 0.21372562408447265, + "step": 20400 + }, + { + "epoch": 66.34387672343877, + "grad_norm": 0.30839094519615173, + "learning_rate": 1.6833333333333334e-05, + "loss": 0.20695215225219726, + "step": 20500 + }, + { + "epoch": 66.66828872668289, + "grad_norm": 0.31136852502822876, + "learning_rate": 1.6671521035598706e-05, + "loss": 0.20894838333129884, + "step": 20600 + }, + { + "epoch": 66.99270072992701, + "grad_norm": 0.2942120432853699, + "learning_rate": 1.650970873786408e-05, + "loss": 0.21177177429199218, + "step": 20700 + }, + { + "epoch": 67.3146796431468, + "grad_norm": 0.32769644260406494, + "learning_rate": 1.6349514563106797e-05, + "loss": 0.20521749496459962, + "step": 20800 + }, + { + "epoch": 67.63909164639091, + "grad_norm": 0.3272440731525421, + "learning_rate": 1.6187702265372166e-05, + "loss": 0.2083640480041504, + "step": 20900 + }, + { + "epoch": 67.96350364963503, + "grad_norm": 0.2725636959075928, + "learning_rate": 1.6025889967637542e-05, + "loss": 0.2089810562133789, + "step": 21000 + }, + { + "epoch": 68.28548256285482, + "grad_norm": 0.2833479046821594, + "learning_rate": 1.5864077669902915e-05, + "loss": 0.20403633117675782, + "step": 21100 + }, + { + "epoch": 68.60989456609894, + "grad_norm": 0.2848324477672577, + "learning_rate": 1.5702265372168284e-05, + "loss": 0.2053829574584961, + "step": 21200 + }, + { + "epoch": 68.93430656934306, + "grad_norm": 0.324773907661438, + "learning_rate": 1.554045307443366e-05, + "loss": 0.206777400970459, + "step": 21300 + }, + { + "epoch": 69.25628548256286, + "grad_norm": 0.2661566734313965, + "learning_rate": 1.537864077669903e-05, + "loss": 0.20142404556274415, + "step": 21400 + }, + { + "epoch": 69.58069748580698, + "grad_norm": 0.28439629077911377, + "learning_rate": 1.52168284789644e-05, + "loss": 0.20303123474121093, + "step": 21500 + }, + { + "epoch": 69.9051094890511, + "grad_norm": 0.33656612038612366, + "learning_rate": 1.5055016181229775e-05, + "loss": 0.20467769622802734, + "step": 21600 + }, + { + "epoch": 70.22708840227088, + "grad_norm": 0.32043009996414185, + "learning_rate": 1.4893203883495147e-05, + "loss": 0.20070859909057617, + "step": 21700 + }, + { + "epoch": 70.551500405515, + "grad_norm": 0.3048563599586487, + "learning_rate": 1.4731391585760518e-05, + "loss": 0.20159858703613281, + "step": 21800 + }, + { + "epoch": 70.87591240875912, + "grad_norm": 0.2664601802825928, + "learning_rate": 1.4569579288025893e-05, + "loss": 0.20171623229980468, + "step": 21900 + }, + { + "epoch": 71.19789132197891, + "grad_norm": 0.3018724322319031, + "learning_rate": 1.4407766990291264e-05, + "loss": 0.19853240966796876, + "step": 22000 + }, + { + "epoch": 71.52230332522304, + "grad_norm": 0.2770579755306244, + "learning_rate": 1.4245954692556635e-05, + "loss": 0.1985287857055664, + "step": 22100 + }, + { + "epoch": 71.84671532846716, + "grad_norm": 0.2877587080001831, + "learning_rate": 1.4084142394822005e-05, + "loss": 0.2016657066345215, + "step": 22200 + }, + { + "epoch": 72.16869424168694, + "grad_norm": 0.3253211975097656, + "learning_rate": 1.392233009708738e-05, + "loss": 0.19735158920288087, + "step": 22300 + }, + { + "epoch": 72.49310624493106, + "grad_norm": 0.2870253920555115, + "learning_rate": 1.376051779935275e-05, + "loss": 0.19713401794433594, + "step": 22400 + }, + { + "epoch": 72.81751824817518, + "grad_norm": 0.32006755471229553, + "learning_rate": 1.3598705501618122e-05, + "loss": 0.1988151741027832, + "step": 22500 + }, + { + "epoch": 73.13949716139497, + "grad_norm": 0.28510263562202454, + "learning_rate": 1.3436893203883496e-05, + "loss": 0.19770748138427735, + "step": 22600 + }, + { + "epoch": 73.46390916463909, + "grad_norm": 0.2950480878353119, + "learning_rate": 1.3275080906148869e-05, + "loss": 0.195107364654541, + "step": 22700 + }, + { + "epoch": 73.78832116788321, + "grad_norm": 0.30394643545150757, + "learning_rate": 1.311326860841424e-05, + "loss": 0.1975857925415039, + "step": 22800 + }, + { + "epoch": 74.110300081103, + "grad_norm": 0.29557764530181885, + "learning_rate": 1.295307443365696e-05, + "loss": 0.19621952056884764, + "step": 22900 + }, + { + "epoch": 74.43471208434713, + "grad_norm": 0.27801787853240967, + "learning_rate": 1.279126213592233e-05, + "loss": 0.1924858283996582, + "step": 23000 + }, + { + "epoch": 74.75912408759125, + "grad_norm": 0.32521647214889526, + "learning_rate": 1.2629449838187705e-05, + "loss": 0.19586196899414063, + "step": 23100 + }, + { + "epoch": 75.08110300081103, + "grad_norm": 0.27390602231025696, + "learning_rate": 1.2467637540453075e-05, + "loss": 0.19569822311401366, + "step": 23200 + }, + { + "epoch": 75.40551500405515, + "grad_norm": 0.27017250657081604, + "learning_rate": 1.2305825242718446e-05, + "loss": 0.1917603874206543, + "step": 23300 + }, + { + "epoch": 75.72992700729927, + "grad_norm": 0.2980138957500458, + "learning_rate": 1.2144012944983819e-05, + "loss": 0.1927776336669922, + "step": 23400 + }, + { + "epoch": 76.05190592051906, + "grad_norm": 0.3057159185409546, + "learning_rate": 1.1982200647249192e-05, + "loss": 0.19304771423339845, + "step": 23500 + }, + { + "epoch": 76.37631792376318, + "grad_norm": 0.29936423897743225, + "learning_rate": 1.1820388349514563e-05, + "loss": 0.19062232971191406, + "step": 23600 + }, + { + "epoch": 76.7007299270073, + "grad_norm": 0.3179267942905426, + "learning_rate": 1.1658576051779935e-05, + "loss": 0.19235507965087892, + "step": 23700 + }, + { + "epoch": 77.02270884022708, + "grad_norm": 0.25758758187294006, + "learning_rate": 1.1496763754045308e-05, + "loss": 0.1918639373779297, + "step": 23800 + }, + { + "epoch": 77.3471208434712, + "grad_norm": 0.2676644027233124, + "learning_rate": 1.133495145631068e-05, + "loss": 0.18774497985839844, + "step": 23900 + }, + { + "epoch": 77.67153284671532, + "grad_norm": 0.25918132066726685, + "learning_rate": 1.1173139158576053e-05, + "loss": 0.18990053176879884, + "step": 24000 + }, + { + "epoch": 77.99594484995944, + "grad_norm": 0.25803694128990173, + "learning_rate": 1.1011326860841424e-05, + "loss": 0.19139570236206055, + "step": 24100 + }, + { + "epoch": 78.31792376317924, + "grad_norm": 0.2896536588668823, + "learning_rate": 1.0849514563106797e-05, + "loss": 0.18745737075805663, + "step": 24200 + }, + { + "epoch": 78.64233576642336, + "grad_norm": 0.2941916286945343, + "learning_rate": 1.0687702265372168e-05, + "loss": 0.18780550003051757, + "step": 24300 + }, + { + "epoch": 78.96674776966748, + "grad_norm": 0.28496670722961426, + "learning_rate": 1.052588996763754e-05, + "loss": 0.19009716033935548, + "step": 24400 + }, + { + "epoch": 79.28872668288727, + "grad_norm": 0.29919925332069397, + "learning_rate": 1.0364077669902913e-05, + "loss": 0.18620597839355468, + "step": 24500 + }, + { + "epoch": 79.61313868613139, + "grad_norm": 0.285383939743042, + "learning_rate": 1.0202265372168284e-05, + "loss": 0.18723442077636718, + "step": 24600 + }, + { + "epoch": 79.93755068937551, + "grad_norm": 0.2821769416332245, + "learning_rate": 1.0040453074433657e-05, + "loss": 0.1882436180114746, + "step": 24700 + }, + { + "epoch": 80.2595296025953, + "grad_norm": 0.291644424200058, + "learning_rate": 9.87864077669903e-06, + "loss": 0.18627639770507812, + "step": 24800 + }, + { + "epoch": 80.58394160583941, + "grad_norm": 0.28841665387153625, + "learning_rate": 9.716828478964402e-06, + "loss": 0.1859906768798828, + "step": 24900 + }, + { + "epoch": 80.90835360908353, + "grad_norm": 0.2513130307197571, + "learning_rate": 9.555016181229775e-06, + "loss": 0.18743871688842773, + "step": 25000 + }, + { + "epoch": 81.23033252230333, + "grad_norm": 0.28746384382247925, + "learning_rate": 9.394822006472493e-06, + "loss": 0.18453241348266602, + "step": 25100 + }, + { + "epoch": 81.55474452554745, + "grad_norm": 0.29126232862472534, + "learning_rate": 9.233009708737865e-06, + "loss": 0.1854015350341797, + "step": 25200 + }, + { + "epoch": 81.87915652879157, + "grad_norm": 0.2970152795314789, + "learning_rate": 9.071197411003236e-06, + "loss": 0.18607795715332032, + "step": 25300 + }, + { + "epoch": 82.20113544201135, + "grad_norm": 0.30898556113243103, + "learning_rate": 8.909385113268609e-06, + "loss": 0.18391321182250978, + "step": 25400 + }, + { + "epoch": 82.52554744525547, + "grad_norm": 0.2530721426010132, + "learning_rate": 8.74757281553398e-06, + "loss": 0.1833015823364258, + "step": 25500 + }, + { + "epoch": 82.84995944849959, + "grad_norm": 0.26257285475730896, + "learning_rate": 8.585760517799352e-06, + "loss": 0.18504741668701172, + "step": 25600 + }, + { + "epoch": 83.17193836171938, + "grad_norm": 0.29258695244789124, + "learning_rate": 8.423948220064725e-06, + "loss": 0.18265727996826173, + "step": 25700 + }, + { + "epoch": 83.4963503649635, + "grad_norm": 0.28137892484664917, + "learning_rate": 8.262135922330098e-06, + "loss": 0.1820280647277832, + "step": 25800 + }, + { + "epoch": 83.82076236820762, + "grad_norm": 0.253631055355072, + "learning_rate": 8.10032362459547e-06, + "loss": 0.18374771118164063, + "step": 25900 + }, + { + "epoch": 84.14274128142742, + "grad_norm": 0.2612302005290985, + "learning_rate": 7.938511326860843e-06, + "loss": 0.1822812843322754, + "step": 26000 + }, + { + "epoch": 84.46715328467154, + "grad_norm": 0.2968967854976654, + "learning_rate": 7.776699029126214e-06, + "loss": 0.1804751205444336, + "step": 26100 + }, + { + "epoch": 84.79156528791566, + "grad_norm": 0.28858786821365356, + "learning_rate": 7.614886731391587e-06, + "loss": 0.1823977279663086, + "step": 26200 + }, + { + "epoch": 85.11354420113544, + "grad_norm": 0.24769216775894165, + "learning_rate": 7.453074433656958e-06, + "loss": 0.18158819198608397, + "step": 26300 + }, + { + "epoch": 85.43795620437956, + "grad_norm": 0.27769848704338074, + "learning_rate": 7.29126213592233e-06, + "loss": 0.18056314468383788, + "step": 26400 + }, + { + "epoch": 85.76236820762368, + "grad_norm": 0.30476441979408264, + "learning_rate": 7.129449838187703e-06, + "loss": 0.18116596221923828, + "step": 26500 + }, + { + "epoch": 86.08434712084347, + "grad_norm": 0.23022858798503876, + "learning_rate": 6.967637540453075e-06, + "loss": 0.18061212539672852, + "step": 26600 + }, + { + "epoch": 86.4087591240876, + "grad_norm": 0.28072357177734375, + "learning_rate": 6.805825242718447e-06, + "loss": 0.17919044494628905, + "step": 26700 + }, + { + "epoch": 86.73317112733172, + "grad_norm": 0.28679656982421875, + "learning_rate": 6.644012944983818e-06, + "loss": 0.17989681243896485, + "step": 26800 + }, + { + "epoch": 87.0551500405515, + "grad_norm": 0.23604606091976166, + "learning_rate": 6.482200647249191e-06, + "loss": 0.1802787208557129, + "step": 26900 + }, + { + "epoch": 87.37956204379562, + "grad_norm": 0.2767940163612366, + "learning_rate": 6.320388349514564e-06, + "loss": 0.17775949478149414, + "step": 27000 + }, + { + "epoch": 87.70397404703974, + "grad_norm": 0.2633722126483917, + "learning_rate": 6.1585760517799355e-06, + "loss": 0.17942682266235352, + "step": 27100 + }, + { + "epoch": 88.02595296025953, + "grad_norm": 0.254029780626297, + "learning_rate": 5.996763754045308e-06, + "loss": 0.17986074447631836, + "step": 27200 + }, + { + "epoch": 88.35036496350365, + "grad_norm": 0.25648459792137146, + "learning_rate": 5.83495145631068e-06, + "loss": 0.17738138198852538, + "step": 27300 + }, + { + "epoch": 88.67477696674777, + "grad_norm": 0.2450580894947052, + "learning_rate": 5.673139158576052e-06, + "loss": 0.17837905883789062, + "step": 27400 + }, + { + "epoch": 88.99918896999189, + "grad_norm": 0.2686944305896759, + "learning_rate": 5.511326860841424e-06, + "loss": 0.17965082168579102, + "step": 27500 + }, + { + "epoch": 89.32116788321167, + "grad_norm": 0.26215696334838867, + "learning_rate": 5.351132686084142e-06, + "loss": 0.17689130783081056, + "step": 27600 + }, + { + "epoch": 89.64557988645579, + "grad_norm": 0.2659305930137634, + "learning_rate": 5.189320388349515e-06, + "loss": 0.1780232620239258, + "step": 27700 + }, + { + "epoch": 89.96999188969991, + "grad_norm": 0.2572084665298462, + "learning_rate": 5.027508090614887e-06, + "loss": 0.17742925643920898, + "step": 27800 + }, + { + "epoch": 90.2919708029197, + "grad_norm": 0.2678115963935852, + "learning_rate": 4.865695792880259e-06, + "loss": 0.1759064292907715, + "step": 27900 + }, + { + "epoch": 90.61638280616383, + "grad_norm": 0.2606296241283417, + "learning_rate": 4.703883495145631e-06, + "loss": 0.176632080078125, + "step": 28000 + }, + { + "epoch": 90.94079480940795, + "grad_norm": 0.27705252170562744, + "learning_rate": 4.542071197411003e-06, + "loss": 0.17765697479248047, + "step": 28100 + }, + { + "epoch": 91.26277372262774, + "grad_norm": 0.2625502049922943, + "learning_rate": 4.380258899676376e-06, + "loss": 0.1756792449951172, + "step": 28200 + }, + { + "epoch": 91.58718572587186, + "grad_norm": 0.24927927553653717, + "learning_rate": 4.218446601941748e-06, + "loss": 0.17554109573364257, + "step": 28300 + }, + { + "epoch": 91.91159772911598, + "grad_norm": 0.240628182888031, + "learning_rate": 4.05663430420712e-06, + "loss": 0.17559316635131836, + "step": 28400 + }, + { + "epoch": 92.23357664233576, + "grad_norm": 0.2785760462284088, + "learning_rate": 3.894822006472492e-06, + "loss": 0.17503616333007813, + "step": 28500 + }, + { + "epoch": 92.55798864557988, + "grad_norm": 0.25900083780288696, + "learning_rate": 3.733009708737864e-06, + "loss": 0.17507522583007812, + "step": 28600 + }, + { + "epoch": 92.882400648824, + "grad_norm": 0.276037335395813, + "learning_rate": 3.5711974110032368e-06, + "loss": 0.17590507507324218, + "step": 28700 + }, + { + "epoch": 93.2043795620438, + "grad_norm": 0.2555212080478668, + "learning_rate": 3.4093851132686086e-06, + "loss": 0.17514604568481446, + "step": 28800 + }, + { + "epoch": 93.52879156528792, + "grad_norm": 0.2588745653629303, + "learning_rate": 3.247572815533981e-06, + "loss": 0.174718017578125, + "step": 28900 + }, + { + "epoch": 93.85320356853204, + "grad_norm": 0.2660391330718994, + "learning_rate": 3.0857605177993526e-06, + "loss": 0.17506734848022462, + "step": 29000 + }, + { + "epoch": 94.17518248175182, + "grad_norm": 0.2677949368953705, + "learning_rate": 2.9239482200647253e-06, + "loss": 0.17430608749389648, + "step": 29100 + }, + { + "epoch": 94.49959448499594, + "grad_norm": 0.28909972310066223, + "learning_rate": 2.762135922330097e-06, + "loss": 0.17481451034545897, + "step": 29200 + }, + { + "epoch": 94.82400648824006, + "grad_norm": 0.26000115275382996, + "learning_rate": 2.6003236245954693e-06, + "loss": 0.17436113357543945, + "step": 29300 + }, + { + "epoch": 95.14598540145985, + "grad_norm": 0.2968977987766266, + "learning_rate": 2.4385113268608415e-06, + "loss": 0.17399301528930664, + "step": 29400 + }, + { + "epoch": 95.47039740470397, + "grad_norm": 0.24084195494651794, + "learning_rate": 2.2766990291262138e-06, + "loss": 0.1732662582397461, + "step": 29500 + }, + { + "epoch": 95.7948094079481, + "grad_norm": 0.24390101432800293, + "learning_rate": 2.114886731391586e-06, + "loss": 0.17355813980102539, + "step": 29600 + }, + { + "epoch": 96.11678832116789, + "grad_norm": 0.24950821697711945, + "learning_rate": 1.9546925566343042e-06, + "loss": 0.17353734970092774, + "step": 29700 + }, + { + "epoch": 96.44120032441201, + "grad_norm": 0.2526560425758362, + "learning_rate": 1.7928802588996767e-06, + "loss": 0.17330703735351563, + "step": 29800 + }, + { + "epoch": 96.76561232765613, + "grad_norm": 0.2830760180950165, + "learning_rate": 1.6310679611650487e-06, + "loss": 0.1727421760559082, + "step": 29900 + }, + { + "epoch": 97.08759124087591, + "grad_norm": 0.21633441746234894, + "learning_rate": 1.4692556634304207e-06, + "loss": 0.17346202850341796, + "step": 30000 + }, + { + "epoch": 97.41200324412003, + "grad_norm": 0.23232562839984894, + "learning_rate": 1.307443365695793e-06, + "loss": 0.17300867080688476, + "step": 30100 + }, + { + "epoch": 97.73641524736415, + "grad_norm": 0.22741949558258057, + "learning_rate": 1.1456310679611652e-06, + "loss": 0.1723964500427246, + "step": 30200 + }, + { + "epoch": 98.05839416058394, + "grad_norm": 0.21481141448020935, + "learning_rate": 9.838187702265374e-07, + "loss": 0.17242773056030272, + "step": 30300 + }, + { + "epoch": 98.38280616382806, + "grad_norm": 0.26986297965049744, + "learning_rate": 8.220064724919095e-07, + "loss": 0.17295772552490235, + "step": 30400 + }, + { + "epoch": 98.70721816707218, + "grad_norm": 0.23824343085289001, + "learning_rate": 6.601941747572815e-07, + "loss": 0.1724873352050781, + "step": 30500 + }, + { + "epoch": 99.02919708029196, + "grad_norm": 0.28364071249961853, + "learning_rate": 4.983818770226538e-07, + "loss": 0.17249490737915038, + "step": 30600 + }, + { + "epoch": 99.35360908353609, + "grad_norm": 0.2162533402442932, + "learning_rate": 3.3656957928802594e-07, + "loss": 0.1711699867248535, + "step": 30700 + } + ], + "logging_steps": 100, + "max_steps": 30900, + "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": 1.750526959878144e+16, + "train_batch_size": 8, + "trial_name": null, + "trial_params": null +} diff --git a/timecost/m6/realtabformer/rtf-m6-20260429_070344/rtf_checkpoints/checkpoint-30700/training_args.bin b/timecost/m6/realtabformer/rtf-m6-20260429_070344/rtf_checkpoints/checkpoint-30700/training_args.bin new file mode 100644 index 0000000000000000000000000000000000000000..34d68dc0e0fe1c1f12a2e581dd1b166aa7178a9e --- /dev/null +++ b/timecost/m6/realtabformer/rtf-m6-20260429_070344/rtf_checkpoints/checkpoint-30700/training_args.bin @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:9e2cd88337d1d846c6918d2b3b63fa3e5c93f12fefc082497590da854a564607 +size 5201 diff --git a/timecost/m6/realtabformer/rtf-m6-20260429_070344/rtf_checkpoints/checkpoint-30800/config.json b/timecost/m6/realtabformer/rtf-m6-20260429_070344/rtf_checkpoints/checkpoint-30800/config.json new file mode 100644 index 0000000000000000000000000000000000000000..5794e9cc1aa00a0ff98ed7967c3c2d9142841a1c --- /dev/null +++ b/timecost/m6/realtabformer/rtf-m6-20260429_070344/rtf_checkpoints/checkpoint-30800/config.json @@ -0,0 +1,34 @@ +{ + "activation_function": "gelu_new", + "add_cross_attention": false, + "architectures": [ + "GPT2LMHeadModel" + ], + "attn_pdrop": 0.1, + "bos_token_id": 5, + "dtype": "float32", + "embd_pdrop": 0.1, + "eos_token_id": 6, + "initializer_range": 0.02, + "layer_norm_epsilon": 1e-05, + "model_type": "gpt2", + "n_embd": 768, + "n_head": 12, + "n_inner": null, + "n_layer": 6, + "n_positions": 1024, + "pad_token_id": null, + "reorder_and_upcast_attn": false, + "resid_pdrop": 0.1, + "scale_attn_by_inverse_layer_idx": false, + "scale_attn_weights": true, + "summary_activation": null, + "summary_first_dropout": 0.1, + "summary_proj_to_labels": true, + "summary_type": "cls_index", + "summary_use_proj": true, + "tie_word_embeddings": true, + "transformers_version": "5.5.3", + "use_cache": false, + "vocab_size": 498 +} diff --git a/timecost/m6/realtabformer/rtf-m6-20260429_070344/rtf_checkpoints/checkpoint-30800/generation_config.json b/timecost/m6/realtabformer/rtf-m6-20260429_070344/rtf_checkpoints/checkpoint-30800/generation_config.json new file mode 100644 index 0000000000000000000000000000000000000000..ffe89567780e75b5c22eade9be971483b9618f39 --- /dev/null +++ b/timecost/m6/realtabformer/rtf-m6-20260429_070344/rtf_checkpoints/checkpoint-30800/generation_config.json @@ -0,0 +1,9 @@ +{ + "_from_model_config": true, + "bos_token_id": 5, + "eos_token_id": 6, + "output_attentions": false, + "output_hidden_states": false, + "transformers_version": "5.5.3", + "use_cache": true +} diff --git a/timecost/m6/realtabformer/rtf-m6-20260429_070344/rtf_checkpoints/checkpoint-30800/model.safetensors b/timecost/m6/realtabformer/rtf-m6-20260429_070344/rtf_checkpoints/checkpoint-30800/model.safetensors new file mode 100644 index 0000000000000000000000000000000000000000..370916623ac775bd5479cfd1e5f6efb978684505 --- /dev/null +++ b/timecost/m6/realtabformer/rtf-m6-20260429_070344/rtf_checkpoints/checkpoint-30800/model.safetensors @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:a59d7c48bec579a8803090df2cb11b9cd2763ce2baf466152025f9a633032183 +size 174798280 diff --git a/timecost/m6/realtabformer/rtf-m6-20260429_070344/rtf_checkpoints/checkpoint-30800/optimizer.pt b/timecost/m6/realtabformer/rtf-m6-20260429_070344/rtf_checkpoints/checkpoint-30800/optimizer.pt new file mode 100644 index 0000000000000000000000000000000000000000..133bd5e7c9a4743f25f1f4446ed6c8e7dba2af47 --- /dev/null +++ b/timecost/m6/realtabformer/rtf-m6-20260429_070344/rtf_checkpoints/checkpoint-30800/optimizer.pt @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:1ea2f80596f1d698a93d695341291a093ff25b12d94c006c6ce89e8f744000dd +size 349645643 diff --git a/timecost/m6/realtabformer/rtf-m6-20260429_070344/rtf_checkpoints/checkpoint-30800/rng_state.pth b/timecost/m6/realtabformer/rtf-m6-20260429_070344/rtf_checkpoints/checkpoint-30800/rng_state.pth new file mode 100644 index 0000000000000000000000000000000000000000..b2871dca1e75ed40061d92e182a8f54be865e09b --- /dev/null +++ b/timecost/m6/realtabformer/rtf-m6-20260429_070344/rtf_checkpoints/checkpoint-30800/rng_state.pth @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:ee15950f79bc4b424b759cd8c885535b58d04266aae055191905cb091e1f726a +size 14645 diff --git a/timecost/m6/realtabformer/rtf-m6-20260429_070344/rtf_checkpoints/checkpoint-30800/scaler.pt b/timecost/m6/realtabformer/rtf-m6-20260429_070344/rtf_checkpoints/checkpoint-30800/scaler.pt new file mode 100644 index 0000000000000000000000000000000000000000..c2f0675f0e747d14f95438fa2e29625eaae068f4 --- /dev/null +++ b/timecost/m6/realtabformer/rtf-m6-20260429_070344/rtf_checkpoints/checkpoint-30800/scaler.pt @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:0b8ea8989dde2aa3bdfc8b0b7d4760d4d7ecdb1641c6eecb06befd257ae8deba +size 1383 diff --git a/timecost/m6/realtabformer/rtf-m6-20260429_070344/rtf_checkpoints/checkpoint-30800/scheduler.pt b/timecost/m6/realtabformer/rtf-m6-20260429_070344/rtf_checkpoints/checkpoint-30800/scheduler.pt new file mode 100644 index 0000000000000000000000000000000000000000..3a5e7d20582a248a86ab044de6a8f87e17adce90 --- /dev/null +++ b/timecost/m6/realtabformer/rtf-m6-20260429_070344/rtf_checkpoints/checkpoint-30800/scheduler.pt @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:c740bdad4985b30ab9df61d4606ea953f90217fb057eae90aaf6a84de2a7cc41 +size 1465 diff --git a/timecost/m6/realtabformer/rtf-m6-20260429_070344/rtf_checkpoints/checkpoint-30800/trainer_state.json b/timecost/m6/realtabformer/rtf-m6-20260429_070344/rtf_checkpoints/checkpoint-30800/trainer_state.json new file mode 100644 index 0000000000000000000000000000000000000000..a515306d4f9f1afd48ac35a946885da0402756b6 --- /dev/null +++ b/timecost/m6/realtabformer/rtf-m6-20260429_070344/rtf_checkpoints/checkpoint-30800/trainer_state.json @@ -0,0 +1,2190 @@ +{ + "best_global_step": null, + "best_metric": null, + "best_model_checkpoint": null, + "epoch": 99.6780210867802, + "eval_steps": 100, + "global_step": 30800, + "is_hyper_param_search": false, + "is_local_process_zero": true, + "is_world_process_zero": true, + "log_history": [ + { + "epoch": 0.32441200324412, + "grad_norm": 0.20164933800697327, + "learning_rate": 4.983980582524272e-05, + "loss": 1.5922834777832031, + "step": 100 + }, + { + "epoch": 0.64882400648824, + "grad_norm": 0.18370771408081055, + "learning_rate": 4.967799352750809e-05, + "loss": 0.8226632690429687, + "step": 200 + }, + { + "epoch": 0.9732360097323601, + "grad_norm": 0.17879560589790344, + "learning_rate": 4.951618122977347e-05, + "loss": 0.7554012298583984, + "step": 300 + }, + { + "epoch": 1.2952149229521492, + "grad_norm": 0.14063459634780884, + "learning_rate": 4.935436893203884e-05, + "loss": 0.7157672882080078, + "step": 400 + }, + { + "epoch": 1.6196269261962692, + "grad_norm": 0.14949747920036316, + "learning_rate": 4.919255663430421e-05, + "loss": 0.7098747253417969, + "step": 500 + }, + { + "epoch": 1.9440389294403893, + "grad_norm": 0.1495194435119629, + "learning_rate": 4.9030744336569583e-05, + "loss": 0.6998626708984375, + "step": 600 + }, + { + "epoch": 2.2660178426601782, + "grad_norm": 0.1467229574918747, + "learning_rate": 4.886893203883495e-05, + "loss": 0.6833465576171875, + "step": 700 + }, + { + "epoch": 2.5904298459042985, + "grad_norm": 0.1609153300523758, + "learning_rate": 4.870711974110033e-05, + "loss": 0.6878270721435547, + "step": 800 + }, + { + "epoch": 2.9148418491484183, + "grad_norm": 0.13326895236968994, + "learning_rate": 4.85453074433657e-05, + "loss": 0.6762329864501954, + "step": 900 + }, + { + "epoch": 3.2368207623682075, + "grad_norm": 0.14083443582057953, + "learning_rate": 4.838349514563107e-05, + "loss": 0.6711769866943359, + "step": 1000 + }, + { + "epoch": 3.5612327656123277, + "grad_norm": 0.13646796345710754, + "learning_rate": 4.822168284789644e-05, + "loss": 0.6645689392089844, + "step": 1100 + }, + { + "epoch": 3.885644768856448, + "grad_norm": 0.13673610985279083, + "learning_rate": 4.805987055016181e-05, + "loss": 0.6698095703125, + "step": 1200 + }, + { + "epoch": 4.207623682076237, + "grad_norm": 0.12795455753803253, + "learning_rate": 4.789805825242719e-05, + "loss": 0.6573734283447266, + "step": 1300 + }, + { + "epoch": 4.5320356853203565, + "grad_norm": 0.12952066957950592, + "learning_rate": 4.773624595469256e-05, + "loss": 0.6638764190673828, + "step": 1400 + }, + { + "epoch": 4.856447688564477, + "grad_norm": 0.1414010375738144, + "learning_rate": 4.757443365695793e-05, + "loss": 0.6583383178710938, + "step": 1500 + }, + { + "epoch": 5.178426601784266, + "grad_norm": 0.14432589709758759, + "learning_rate": 4.74126213592233e-05, + "loss": 0.6485870361328125, + "step": 1600 + }, + { + "epoch": 5.502838605028386, + "grad_norm": 0.1340341866016388, + "learning_rate": 4.725080906148868e-05, + "loss": 0.6541815948486328, + "step": 1700 + }, + { + "epoch": 5.827250608272506, + "grad_norm": 0.1309279352426529, + "learning_rate": 4.708899676375405e-05, + "loss": 0.6557488250732422, + "step": 1800 + }, + { + "epoch": 6.149229521492296, + "grad_norm": 0.1259990930557251, + "learning_rate": 4.692718446601942e-05, + "loss": 0.639359245300293, + "step": 1900 + }, + { + "epoch": 6.473641524736415, + "grad_norm": 0.13993705809116364, + "learning_rate": 4.6765372168284794e-05, + "loss": 0.6472817230224609, + "step": 2000 + }, + { + "epoch": 6.798053527980535, + "grad_norm": 0.12632109224796295, + "learning_rate": 4.660355987055016e-05, + "loss": 0.6512689971923828, + "step": 2100 + }, + { + "epoch": 7.120032441200324, + "grad_norm": 0.12884259223937988, + "learning_rate": 4.644174757281554e-05, + "loss": 0.6424983978271485, + "step": 2200 + }, + { + "epoch": 7.444444444444445, + "grad_norm": 0.13162656128406525, + "learning_rate": 4.627993527508091e-05, + "loss": 0.6413846588134766, + "step": 2300 + }, + { + "epoch": 7.768856447688565, + "grad_norm": 0.1305171549320221, + "learning_rate": 4.611812297734628e-05, + "loss": 0.6504198455810547, + "step": 2400 + }, + { + "epoch": 8.090835360908354, + "grad_norm": 0.12320607155561447, + "learning_rate": 4.5956310679611654e-05, + "loss": 0.6361569213867188, + "step": 2500 + }, + { + "epoch": 8.415247364152474, + "grad_norm": 0.1263129562139511, + "learning_rate": 4.579449838187703e-05, + "loss": 0.6391400527954102, + "step": 2600 + }, + { + "epoch": 8.739659367396595, + "grad_norm": 0.14339180290699005, + "learning_rate": 4.563268608414239e-05, + "loss": 0.643778076171875, + "step": 2700 + }, + { + "epoch": 9.061638280616382, + "grad_norm": 0.13703292608261108, + "learning_rate": 4.547087378640777e-05, + "loss": 0.63127685546875, + "step": 2800 + }, + { + "epoch": 9.386050283860502, + "grad_norm": 0.12888263165950775, + "learning_rate": 4.5309061488673144e-05, + "loss": 0.636928939819336, + "step": 2900 + }, + { + "epoch": 9.710462287104622, + "grad_norm": 0.1290873885154724, + "learning_rate": 4.5147249190938514e-05, + "loss": 0.6323677444458008, + "step": 3000 + }, + { + "epoch": 10.032441200324412, + "grad_norm": 0.13526120781898499, + "learning_rate": 4.498543689320388e-05, + "loss": 0.6302993392944336, + "step": 3100 + }, + { + "epoch": 10.356853203568532, + "grad_norm": 0.14485451579093933, + "learning_rate": 4.482362459546926e-05, + "loss": 0.6336409378051758, + "step": 3200 + }, + { + "epoch": 10.681265206812652, + "grad_norm": 0.12640801072120667, + "learning_rate": 4.466181229773463e-05, + "loss": 0.6236648178100586, + "step": 3300 + }, + { + "epoch": 11.003244120032441, + "grad_norm": 0.13860085606575012, + "learning_rate": 4.4500000000000004e-05, + "loss": 0.6343330383300781, + "step": 3400 + }, + { + "epoch": 11.327656123276562, + "grad_norm": 0.13636715710163116, + "learning_rate": 4.4338187702265373e-05, + "loss": 0.6203033447265625, + "step": 3500 + }, + { + "epoch": 11.652068126520682, + "grad_norm": 0.13047286868095398, + "learning_rate": 4.417637540453074e-05, + "loss": 0.6218357086181641, + "step": 3600 + }, + { + "epoch": 11.976480129764802, + "grad_norm": 0.13506969809532166, + "learning_rate": 4.401456310679612e-05, + "loss": 0.6350560760498047, + "step": 3700 + }, + { + "epoch": 12.298459042984591, + "grad_norm": 0.13476674258708954, + "learning_rate": 4.385275080906149e-05, + "loss": 0.6147463607788086, + "step": 3800 + }, + { + "epoch": 12.62287104622871, + "grad_norm": 0.12256718426942825, + "learning_rate": 4.3690938511326864e-05, + "loss": 0.624836196899414, + "step": 3900 + }, + { + "epoch": 12.94728304947283, + "grad_norm": 0.13317419588565826, + "learning_rate": 4.352912621359223e-05, + "loss": 0.628001823425293, + "step": 4000 + }, + { + "epoch": 13.26926196269262, + "grad_norm": 0.13066990673542023, + "learning_rate": 4.33673139158576e-05, + "loss": 0.609481315612793, + "step": 4100 + }, + { + "epoch": 13.59367396593674, + "grad_norm": 0.13055436313152313, + "learning_rate": 4.320550161812298e-05, + "loss": 0.6177150344848633, + "step": 4200 + }, + { + "epoch": 13.91808596918086, + "grad_norm": 0.13111238181591034, + "learning_rate": 4.3043689320388355e-05, + "loss": 0.6266952896118164, + "step": 4300 + }, + { + "epoch": 14.240064882400649, + "grad_norm": 0.14692434668540955, + "learning_rate": 4.2881877022653724e-05, + "loss": 0.6085420608520508, + "step": 4400 + }, + { + "epoch": 14.564476885644769, + "grad_norm": 0.1490693986415863, + "learning_rate": 4.272006472491909e-05, + "loss": 0.6127510833740234, + "step": 4500 + }, + { + "epoch": 14.88888888888889, + "grad_norm": 0.14273235201835632, + "learning_rate": 4.255825242718447e-05, + "loss": 0.6196828079223633, + "step": 4600 + }, + { + "epoch": 15.210867802108679, + "grad_norm": 0.1464281678199768, + "learning_rate": 4.239644012944984e-05, + "loss": 0.606991844177246, + "step": 4700 + }, + { + "epoch": 15.535279805352799, + "grad_norm": 0.15429367125034332, + "learning_rate": 4.2234627831715215e-05, + "loss": 0.6114653015136718, + "step": 4800 + }, + { + "epoch": 15.859691808596917, + "grad_norm": 0.1561301201581955, + "learning_rate": 4.2072815533980584e-05, + "loss": 0.6102643585205079, + "step": 4900 + }, + { + "epoch": 16.181670721816708, + "grad_norm": 0.14197590947151184, + "learning_rate": 4.191100323624595e-05, + "loss": 0.6006597900390624, + "step": 5000 + }, + { + "epoch": 16.50608272506083, + "grad_norm": 0.15073753893375397, + "learning_rate": 4.174919093851133e-05, + "loss": 0.6000652694702149, + "step": 5100 + }, + { + "epoch": 16.83049472830495, + "grad_norm": 0.1630340814590454, + "learning_rate": 4.1587378640776705e-05, + "loss": 0.601633186340332, + "step": 5200 + }, + { + "epoch": 17.152473641524736, + "grad_norm": 0.14281341433525085, + "learning_rate": 4.1425566343042074e-05, + "loss": 0.6040666580200196, + "step": 5300 + }, + { + "epoch": 17.476885644768856, + "grad_norm": 0.16090357303619385, + "learning_rate": 4.1263754045307444e-05, + "loss": 0.5960210800170899, + "step": 5400 + }, + { + "epoch": 17.801297648012977, + "grad_norm": 0.15764260292053223, + "learning_rate": 4.110194174757282e-05, + "loss": 0.6001902389526367, + "step": 5500 + }, + { + "epoch": 18.123276561232764, + "grad_norm": 0.17385198175907135, + "learning_rate": 4.094012944983819e-05, + "loss": 0.5886587142944336, + "step": 5600 + }, + { + "epoch": 18.447688564476884, + "grad_norm": 0.16908828914165497, + "learning_rate": 4.0778317152103565e-05, + "loss": 0.594392967224121, + "step": 5700 + }, + { + "epoch": 18.772100567721004, + "grad_norm": 0.16428205370903015, + "learning_rate": 4.0616504854368934e-05, + "loss": 0.589791030883789, + "step": 5800 + }, + { + "epoch": 19.094079480940795, + "grad_norm": 0.16796661913394928, + "learning_rate": 4.0454692556634304e-05, + "loss": 0.5915510559082031, + "step": 5900 + }, + { + "epoch": 19.418491484184916, + "grad_norm": 0.17108002305030823, + "learning_rate": 4.029288025889968e-05, + "loss": 0.5712713623046874, + "step": 6000 + }, + { + "epoch": 19.742903487429036, + "grad_norm": 0.17238284647464752, + "learning_rate": 4.0131067961165056e-05, + "loss": 0.5880846786499023, + "step": 6100 + }, + { + "epoch": 20.064882400648823, + "grad_norm": 0.16751733422279358, + "learning_rate": 3.9969255663430425e-05, + "loss": 0.5886093902587891, + "step": 6200 + }, + { + "epoch": 20.389294403892944, + "grad_norm": 0.17518126964569092, + "learning_rate": 3.9807443365695794e-05, + "loss": 0.5645963287353516, + "step": 6300 + }, + { + "epoch": 20.713706407137064, + "grad_norm": 0.19824537634849548, + "learning_rate": 3.9645631067961164e-05, + "loss": 0.5758349609375, + "step": 6400 + }, + { + "epoch": 21.035685320356855, + "grad_norm": 0.17580321431159973, + "learning_rate": 3.948381877022654e-05, + "loss": 0.580423698425293, + "step": 6500 + }, + { + "epoch": 21.360097323600975, + "grad_norm": 0.17921853065490723, + "learning_rate": 3.9322006472491916e-05, + "loss": 0.5611041641235351, + "step": 6600 + }, + { + "epoch": 21.68450932684509, + "grad_norm": 0.18941283226013184, + "learning_rate": 3.916019417475728e-05, + "loss": 0.5720311737060547, + "step": 6700 + }, + { + "epoch": 22.006488240064883, + "grad_norm": 0.18437007069587708, + "learning_rate": 3.8998381877022654e-05, + "loss": 0.563258171081543, + "step": 6800 + }, + { + "epoch": 22.330900243309003, + "grad_norm": 0.19815316796302795, + "learning_rate": 3.883656957928803e-05, + "loss": 0.5511487197875976, + "step": 6900 + }, + { + "epoch": 22.655312246553123, + "grad_norm": 0.20421746373176575, + "learning_rate": 3.86747572815534e-05, + "loss": 0.5592882537841797, + "step": 7000 + }, + { + "epoch": 22.979724249797243, + "grad_norm": 0.2145063877105713, + "learning_rate": 3.851294498381877e-05, + "loss": 0.5531240844726563, + "step": 7100 + }, + { + "epoch": 23.30170316301703, + "grad_norm": 0.2133578211069107, + "learning_rate": 3.8351132686084145e-05, + "loss": 0.5361775588989258, + "step": 7200 + }, + { + "epoch": 23.62611516626115, + "grad_norm": 0.21354049444198608, + "learning_rate": 3.8189320388349514e-05, + "loss": 0.5458520126342773, + "step": 7300 + }, + { + "epoch": 23.95052716950527, + "grad_norm": 0.20230478048324585, + "learning_rate": 3.802750809061489e-05, + "loss": 0.5508059692382813, + "step": 7400 + }, + { + "epoch": 24.272506082725062, + "grad_norm": 0.21077010035514832, + "learning_rate": 3.786569579288026e-05, + "loss": 0.5237713623046875, + "step": 7500 + }, + { + "epoch": 24.596918085969182, + "grad_norm": 0.22097694873809814, + "learning_rate": 3.770388349514563e-05, + "loss": 0.5358617782592774, + "step": 7600 + }, + { + "epoch": 24.9213300892133, + "grad_norm": 0.23570670187473297, + "learning_rate": 3.7542071197411005e-05, + "loss": 0.5347403717041016, + "step": 7700 + }, + { + "epoch": 25.24330900243309, + "grad_norm": 0.21193180978298187, + "learning_rate": 3.738025889967638e-05, + "loss": 0.5195016479492187, + "step": 7800 + }, + { + "epoch": 25.56772100567721, + "grad_norm": 0.24408023059368134, + "learning_rate": 3.721844660194175e-05, + "loss": 0.5128348922729492, + "step": 7900 + }, + { + "epoch": 25.89213300892133, + "grad_norm": 0.2301139086484909, + "learning_rate": 3.705663430420712e-05, + "loss": 0.5274497222900391, + "step": 8000 + }, + { + "epoch": 26.214111922141118, + "grad_norm": 0.23104797303676605, + "learning_rate": 3.6894822006472495e-05, + "loss": 0.5127175521850585, + "step": 8100 + }, + { + "epoch": 26.53852392538524, + "grad_norm": 0.25776928663253784, + "learning_rate": 3.6733009708737865e-05, + "loss": 0.5081464004516602, + "step": 8200 + }, + { + "epoch": 26.86293592862936, + "grad_norm": 0.23275628685951233, + "learning_rate": 3.657119741100324e-05, + "loss": 0.5066284942626953, + "step": 8300 + }, + { + "epoch": 27.18491484184915, + "grad_norm": 0.25895944237709045, + "learning_rate": 3.640938511326861e-05, + "loss": 0.4974431228637695, + "step": 8400 + }, + { + "epoch": 27.50932684509327, + "grad_norm": 0.2517513632774353, + "learning_rate": 3.624757281553398e-05, + "loss": 0.49229534149169923, + "step": 8500 + }, + { + "epoch": 27.83373884833739, + "grad_norm": 0.27210375666618347, + "learning_rate": 3.6085760517799355e-05, + "loss": 0.49578163146972654, + "step": 8600 + }, + { + "epoch": 28.155717761557177, + "grad_norm": 0.27576959133148193, + "learning_rate": 3.592394822006473e-05, + "loss": 0.49141166687011717, + "step": 8700 + }, + { + "epoch": 28.480129764801298, + "grad_norm": 0.26969099044799805, + "learning_rate": 3.57621359223301e-05, + "loss": 0.47837520599365235, + "step": 8800 + }, + { + "epoch": 28.804541768045418, + "grad_norm": 0.2485017627477646, + "learning_rate": 3.560032362459547e-05, + "loss": 0.4838485336303711, + "step": 8900 + }, + { + "epoch": 29.126520681265205, + "grad_norm": 0.2618029713630676, + "learning_rate": 3.543851132686084e-05, + "loss": 0.4762223052978516, + "step": 9000 + }, + { + "epoch": 29.450932684509326, + "grad_norm": 0.25002509355545044, + "learning_rate": 3.5276699029126215e-05, + "loss": 0.4613980865478516, + "step": 9100 + }, + { + "epoch": 29.775344687753446, + "grad_norm": 0.2622935473918915, + "learning_rate": 3.511488673139159e-05, + "loss": 0.46839576721191406, + "step": 9200 + }, + { + "epoch": 30.097323600973237, + "grad_norm": 0.27539685368537903, + "learning_rate": 3.495307443365696e-05, + "loss": 0.46719558715820314, + "step": 9300 + }, + { + "epoch": 30.421735604217357, + "grad_norm": 0.2709919512271881, + "learning_rate": 3.479126213592233e-05, + "loss": 0.44856761932373046, + "step": 9400 + }, + { + "epoch": 30.746147607461477, + "grad_norm": 0.2810458242893219, + "learning_rate": 3.4629449838187706e-05, + "loss": 0.4556717300415039, + "step": 9500 + }, + { + "epoch": 31.068126520681265, + "grad_norm": 0.2798343002796173, + "learning_rate": 3.4467637540453075e-05, + "loss": 0.45173492431640627, + "step": 9600 + }, + { + "epoch": 31.392538523925385, + "grad_norm": 0.3120841383934021, + "learning_rate": 3.430582524271845e-05, + "loss": 0.4392761993408203, + "step": 9700 + }, + { + "epoch": 31.716950527169505, + "grad_norm": 0.2956726551055908, + "learning_rate": 3.414401294498382e-05, + "loss": 0.4437244415283203, + "step": 9800 + }, + { + "epoch": 32.038929440389296, + "grad_norm": 0.2856016457080841, + "learning_rate": 3.398220064724919e-05, + "loss": 0.441302490234375, + "step": 9900 + }, + { + "epoch": 32.363341443633416, + "grad_norm": 0.2965444028377533, + "learning_rate": 3.3820388349514566e-05, + "loss": 0.42223735809326174, + "step": 10000 + }, + { + "epoch": 32.68775344687754, + "grad_norm": 0.2714678943157196, + "learning_rate": 3.365857605177994e-05, + "loss": 0.43019737243652345, + "step": 10100 + }, + { + "epoch": 33.009732360097324, + "grad_norm": 0.23514199256896973, + "learning_rate": 3.3496763754045304e-05, + "loss": 0.4372244644165039, + "step": 10200 + }, + { + "epoch": 33.334144363341444, + "grad_norm": 0.26974233984947205, + "learning_rate": 3.333495145631068e-05, + "loss": 0.41183216094970704, + "step": 10300 + }, + { + "epoch": 33.658556366585564, + "grad_norm": 0.29364973306655884, + "learning_rate": 3.3173139158576056e-05, + "loss": 0.4156087112426758, + "step": 10400 + }, + { + "epoch": 33.982968369829685, + "grad_norm": 0.3023452162742615, + "learning_rate": 3.3011326860841425e-05, + "loss": 0.4232332992553711, + "step": 10500 + }, + { + "epoch": 34.30494728304947, + "grad_norm": 0.2768167555332184, + "learning_rate": 3.2849514563106795e-05, + "loss": 0.4014273452758789, + "step": 10600 + }, + { + "epoch": 34.62935928629359, + "grad_norm": 0.3322605788707733, + "learning_rate": 3.268770226537217e-05, + "loss": 0.40524036407470704, + "step": 10700 + }, + { + "epoch": 34.95377128953771, + "grad_norm": 0.3203238546848297, + "learning_rate": 3.252588996763754e-05, + "loss": 0.40970794677734373, + "step": 10800 + }, + { + "epoch": 35.2757502027575, + "grad_norm": 0.303089439868927, + "learning_rate": 3.2364077669902916e-05, + "loss": 0.38891010284423827, + "step": 10900 + }, + { + "epoch": 35.60016220600162, + "grad_norm": 0.29558560252189636, + "learning_rate": 3.220226537216829e-05, + "loss": 0.3949446105957031, + "step": 11000 + }, + { + "epoch": 35.92457420924574, + "grad_norm": 0.3112625479698181, + "learning_rate": 3.2040453074433655e-05, + "loss": 0.39758953094482424, + "step": 11100 + }, + { + "epoch": 36.24655312246553, + "grad_norm": 0.3039425313472748, + "learning_rate": 3.187864077669903e-05, + "loss": 0.38358245849609374, + "step": 11200 + }, + { + "epoch": 36.57096512570965, + "grad_norm": 0.3353067934513092, + "learning_rate": 3.171682847896441e-05, + "loss": 0.3797079849243164, + "step": 11300 + }, + { + "epoch": 36.89537712895377, + "grad_norm": 0.367567241191864, + "learning_rate": 3.1555016181229776e-05, + "loss": 0.38862274169921873, + "step": 11400 + }, + { + "epoch": 37.21735604217356, + "grad_norm": 0.32198429107666016, + "learning_rate": 3.1393203883495145e-05, + "loss": 0.37104736328125, + "step": 11500 + }, + { + "epoch": 37.54176804541768, + "grad_norm": 0.29541313648223877, + "learning_rate": 3.1231391585760514e-05, + "loss": 0.37103946685791017, + "step": 11600 + }, + { + "epoch": 37.8661800486618, + "grad_norm": 0.34138020873069763, + "learning_rate": 3.106957928802589e-05, + "loss": 0.37340602874755857, + "step": 11700 + }, + { + "epoch": 38.18815896188159, + "grad_norm": 0.301660418510437, + "learning_rate": 3.0907766990291267e-05, + "loss": 0.36555946350097657, + "step": 11800 + }, + { + "epoch": 38.51257096512571, + "grad_norm": 0.2793280780315399, + "learning_rate": 3.0745954692556636e-05, + "loss": 0.35706504821777346, + "step": 11900 + }, + { + "epoch": 38.83698296836983, + "grad_norm": 0.2934885621070862, + "learning_rate": 3.0584142394822005e-05, + "loss": 0.3642056655883789, + "step": 12000 + }, + { + "epoch": 39.15896188158962, + "grad_norm": 0.3178177773952484, + "learning_rate": 3.042233009708738e-05, + "loss": 0.3558914566040039, + "step": 12100 + }, + { + "epoch": 39.48337388483374, + "grad_norm": 0.32718706130981445, + "learning_rate": 3.026051779935275e-05, + "loss": 0.34923362731933594, + "step": 12200 + }, + { + "epoch": 39.80778588807786, + "grad_norm": 0.32444027066230774, + "learning_rate": 3.0098705501618123e-05, + "loss": 0.3525634002685547, + "step": 12300 + }, + { + "epoch": 40.12976480129765, + "grad_norm": 0.3068920075893402, + "learning_rate": 2.99368932038835e-05, + "loss": 0.3468068695068359, + "step": 12400 + }, + { + "epoch": 40.45417680454177, + "grad_norm": 0.31230300664901733, + "learning_rate": 2.977508090614887e-05, + "loss": 0.3374324798583984, + "step": 12500 + }, + { + "epoch": 40.77858880778589, + "grad_norm": 0.35733962059020996, + "learning_rate": 2.961326860841424e-05, + "loss": 0.3439715576171875, + "step": 12600 + }, + { + "epoch": 41.100567721005675, + "grad_norm": 0.3116827607154846, + "learning_rate": 2.9451456310679614e-05, + "loss": 0.3388735961914062, + "step": 12700 + }, + { + "epoch": 41.424979724249795, + "grad_norm": 0.3260541558265686, + "learning_rate": 2.9289644012944983e-05, + "loss": 0.3278466796875, + "step": 12800 + }, + { + "epoch": 41.749391727493915, + "grad_norm": 0.3492940068244934, + "learning_rate": 2.912783171521036e-05, + "loss": 0.33501758575439455, + "step": 12900 + }, + { + "epoch": 42.07137064071371, + "grad_norm": 0.33961179852485657, + "learning_rate": 2.896601941747573e-05, + "loss": 0.332823600769043, + "step": 13000 + }, + { + "epoch": 42.39578264395783, + "grad_norm": 0.3111296594142914, + "learning_rate": 2.88042071197411e-05, + "loss": 0.31814098358154297, + "step": 13100 + }, + { + "epoch": 42.72019464720195, + "grad_norm": 0.33305123448371887, + "learning_rate": 2.8642394822006473e-05, + "loss": 0.3256596374511719, + "step": 13200 + }, + { + "epoch": 43.04217356042174, + "grad_norm": 0.28727594017982483, + "learning_rate": 2.848058252427185e-05, + "loss": 0.32629146575927737, + "step": 13300 + }, + { + "epoch": 43.36658556366586, + "grad_norm": 0.3200686573982239, + "learning_rate": 2.8318770226537215e-05, + "loss": 0.310048885345459, + "step": 13400 + }, + { + "epoch": 43.69099756690998, + "grad_norm": 0.3261258602142334, + "learning_rate": 2.815695792880259e-05, + "loss": 0.3169711685180664, + "step": 13500 + }, + { + "epoch": 44.012976480129765, + "grad_norm": 0.32062989473342896, + "learning_rate": 2.7995145631067964e-05, + "loss": 0.31799676895141604, + "step": 13600 + }, + { + "epoch": 44.337388483373886, + "grad_norm": 0.3417779803276062, + "learning_rate": 2.7833333333333333e-05, + "loss": 0.3045396614074707, + "step": 13700 + }, + { + "epoch": 44.661800486618006, + "grad_norm": 0.32301145792007446, + "learning_rate": 2.7671521035598706e-05, + "loss": 0.3061079978942871, + "step": 13800 + }, + { + "epoch": 44.986212489862126, + "grad_norm": 0.3934004008769989, + "learning_rate": 2.7509708737864082e-05, + "loss": 0.31222929000854494, + "step": 13900 + }, + { + "epoch": 45.30819140308191, + "grad_norm": 0.33090853691101074, + "learning_rate": 2.734789644012945e-05, + "loss": 0.29367765426635745, + "step": 14000 + }, + { + "epoch": 45.632603406326034, + "grad_norm": 0.3316773474216461, + "learning_rate": 2.7186084142394824e-05, + "loss": 0.30018712997436525, + "step": 14100 + }, + { + "epoch": 45.957015409570154, + "grad_norm": 0.36180180311203003, + "learning_rate": 2.7024271844660193e-05, + "loss": 0.3031520080566406, + "step": 14200 + }, + { + "epoch": 46.27899432278994, + "grad_norm": 0.32503196597099304, + "learning_rate": 2.6862459546925566e-05, + "loss": 0.29114202499389646, + "step": 14300 + }, + { + "epoch": 46.60340632603406, + "grad_norm": 0.36477360129356384, + "learning_rate": 2.6700647249190942e-05, + "loss": 0.29186737060546875, + "step": 14400 + }, + { + "epoch": 46.92781832927818, + "grad_norm": 0.3492746949195862, + "learning_rate": 2.6538834951456308e-05, + "loss": 0.296141300201416, + "step": 14500 + }, + { + "epoch": 47.24979724249797, + "grad_norm": 0.32664960622787476, + "learning_rate": 2.6378640776699032e-05, + "loss": 0.2826018142700195, + "step": 14600 + }, + { + "epoch": 47.57420924574209, + "grad_norm": 0.3388548493385315, + "learning_rate": 2.62168284789644e-05, + "loss": 0.28671709060668943, + "step": 14700 + }, + { + "epoch": 47.89862124898621, + "grad_norm": 0.38633057475090027, + "learning_rate": 2.6055016181229774e-05, + "loss": 0.2910732078552246, + "step": 14800 + }, + { + "epoch": 48.220600162206004, + "grad_norm": 0.31736406683921814, + "learning_rate": 2.5893203883495147e-05, + "loss": 0.2784827995300293, + "step": 14900 + }, + { + "epoch": 48.545012165450125, + "grad_norm": 0.37021875381469727, + "learning_rate": 2.5731391585760516e-05, + "loss": 0.2798298263549805, + "step": 15000 + }, + { + "epoch": 48.869424168694245, + "grad_norm": 0.34544867277145386, + "learning_rate": 2.5569579288025892e-05, + "loss": 0.2821967697143555, + "step": 15100 + }, + { + "epoch": 49.19140308191403, + "grad_norm": 0.31732165813446045, + "learning_rate": 2.5407766990291265e-05, + "loss": 0.27426704406738284, + "step": 15200 + }, + { + "epoch": 49.51581508515815, + "grad_norm": 0.3201292157173157, + "learning_rate": 2.5245954692556634e-05, + "loss": 0.27101806640625, + "step": 15300 + }, + { + "epoch": 49.84022708840227, + "grad_norm": 0.33511412143707275, + "learning_rate": 2.5084142394822007e-05, + "loss": 0.27499908447265625, + "step": 15400 + }, + { + "epoch": 50.16220600162206, + "grad_norm": 0.347622275352478, + "learning_rate": 2.492233009708738e-05, + "loss": 0.26981922149658205, + "step": 15500 + }, + { + "epoch": 50.48661800486618, + "grad_norm": 0.3041851222515106, + "learning_rate": 2.4760517799352752e-05, + "loss": 0.2654261589050293, + "step": 15600 + }, + { + "epoch": 50.8110300081103, + "grad_norm": 0.3489990830421448, + "learning_rate": 2.4598705501618125e-05, + "loss": 0.2702595329284668, + "step": 15700 + }, + { + "epoch": 51.13300892133009, + "grad_norm": 0.30876776576042175, + "learning_rate": 2.4436893203883494e-05, + "loss": 0.2657257843017578, + "step": 15800 + }, + { + "epoch": 51.45742092457421, + "grad_norm": 0.34536364674568176, + "learning_rate": 2.4275080906148867e-05, + "loss": 0.261352596282959, + "step": 15900 + }, + { + "epoch": 51.78183292781833, + "grad_norm": 0.3297542333602905, + "learning_rate": 2.4113268608414243e-05, + "loss": 0.26374523162841795, + "step": 16000 + }, + { + "epoch": 52.103811841038116, + "grad_norm": 0.3442004323005676, + "learning_rate": 2.3951456310679612e-05, + "loss": 0.2606217002868652, + "step": 16100 + }, + { + "epoch": 52.428223844282236, + "grad_norm": 0.32110315561294556, + "learning_rate": 2.3789644012944985e-05, + "loss": 0.25471590042114256, + "step": 16200 + }, + { + "epoch": 52.752635847526356, + "grad_norm": 0.35750967264175415, + "learning_rate": 2.3627831715210357e-05, + "loss": 0.25818721771240233, + "step": 16300 + }, + { + "epoch": 53.07461476074615, + "grad_norm": 0.3167541027069092, + "learning_rate": 2.346601941747573e-05, + "loss": 0.25791025161743164, + "step": 16400 + }, + { + "epoch": 53.39902676399027, + "grad_norm": 0.3614417314529419, + "learning_rate": 2.33042071197411e-05, + "loss": 0.2503541374206543, + "step": 16500 + }, + { + "epoch": 53.723438767234384, + "grad_norm": 0.3383695185184479, + "learning_rate": 2.3142394822006475e-05, + "loss": 0.25205833435058594, + "step": 16600 + }, + { + "epoch": 54.04541768045418, + "grad_norm": 0.3129797577857971, + "learning_rate": 2.298220064724919e-05, + "loss": 0.2553220558166504, + "step": 16700 + }, + { + "epoch": 54.3698296836983, + "grad_norm": 0.32768893241882324, + "learning_rate": 2.2820388349514566e-05, + "loss": 0.2452069664001465, + "step": 16800 + }, + { + "epoch": 54.69424168694242, + "grad_norm": 0.34217071533203125, + "learning_rate": 2.2658576051779935e-05, + "loss": 0.2495290756225586, + "step": 16900 + }, + { + "epoch": 55.01622060016221, + "grad_norm": 0.3423132002353668, + "learning_rate": 2.2496763754045308e-05, + "loss": 0.25019683837890627, + "step": 17000 + }, + { + "epoch": 55.34063260340633, + "grad_norm": 0.34714990854263306, + "learning_rate": 2.233495145631068e-05, + "loss": 0.24028772354125977, + "step": 17100 + }, + { + "epoch": 55.66504460665045, + "grad_norm": 0.32141968607902527, + "learning_rate": 2.2173139158576053e-05, + "loss": 0.2443995475769043, + "step": 17200 + }, + { + "epoch": 55.98945660989457, + "grad_norm": 0.3385929763317108, + "learning_rate": 2.2011326860841426e-05, + "loss": 0.24807867050170898, + "step": 17300 + }, + { + "epoch": 56.311435523114355, + "grad_norm": 0.3463747203350067, + "learning_rate": 2.1849514563106795e-05, + "loss": 0.23618980407714843, + "step": 17400 + }, + { + "epoch": 56.635847526358475, + "grad_norm": 0.3065926730632782, + "learning_rate": 2.168770226537217e-05, + "loss": 0.23906055450439453, + "step": 17500 + }, + { + "epoch": 56.960259529602595, + "grad_norm": 0.3168463408946991, + "learning_rate": 2.152588996763754e-05, + "loss": 0.24397821426391603, + "step": 17600 + }, + { + "epoch": 57.28223844282238, + "grad_norm": 0.3540167510509491, + "learning_rate": 2.1364077669902913e-05, + "loss": 0.2341847038269043, + "step": 17700 + }, + { + "epoch": 57.6066504460665, + "grad_norm": 0.3474962115287781, + "learning_rate": 2.1202265372168286e-05, + "loss": 0.23654184341430665, + "step": 17800 + }, + { + "epoch": 57.93106244931062, + "grad_norm": 0.3104344606399536, + "learning_rate": 2.1040453074433658e-05, + "loss": 0.238500919342041, + "step": 17900 + }, + { + "epoch": 58.25304136253041, + "grad_norm": 0.2928438186645508, + "learning_rate": 2.087864077669903e-05, + "loss": 0.2317611312866211, + "step": 18000 + }, + { + "epoch": 58.57745336577453, + "grad_norm": 0.34206250309944153, + "learning_rate": 2.0716828478964404e-05, + "loss": 0.23266231536865234, + "step": 18100 + }, + { + "epoch": 58.90186536901865, + "grad_norm": 0.3680970370769501, + "learning_rate": 2.0555016181229776e-05, + "loss": 0.23497753143310546, + "step": 18200 + }, + { + "epoch": 59.223844282238446, + "grad_norm": 0.3037141263484955, + "learning_rate": 2.0393203883495145e-05, + "loss": 0.2270449447631836, + "step": 18300 + }, + { + "epoch": 59.548256285482566, + "grad_norm": 0.3106273114681244, + "learning_rate": 2.0231391585760518e-05, + "loss": 0.22707063674926758, + "step": 18400 + }, + { + "epoch": 59.872668288726686, + "grad_norm": 0.36219528317451477, + "learning_rate": 2.006957928802589e-05, + "loss": 0.2324913787841797, + "step": 18500 + }, + { + "epoch": 60.194647201946474, + "grad_norm": 0.3081775903701782, + "learning_rate": 1.9907766990291263e-05, + "loss": 0.22577075958251952, + "step": 18600 + }, + { + "epoch": 60.519059205190594, + "grad_norm": 0.3376457989215851, + "learning_rate": 1.9745954692556633e-05, + "loss": 0.2236073112487793, + "step": 18700 + }, + { + "epoch": 60.843471208434714, + "grad_norm": 0.3010921776294708, + "learning_rate": 1.958414239482201e-05, + "loss": 0.2290345001220703, + "step": 18800 + }, + { + "epoch": 61.1654501216545, + "grad_norm": 0.3345211148262024, + "learning_rate": 1.9422330097087378e-05, + "loss": 0.22328811645507812, + "step": 18900 + }, + { + "epoch": 61.48986212489862, + "grad_norm": 0.35830914974212646, + "learning_rate": 1.926051779935275e-05, + "loss": 0.22145767211914064, + "step": 19000 + }, + { + "epoch": 61.81427412814274, + "grad_norm": 0.3177037835121155, + "learning_rate": 1.9098705501618123e-05, + "loss": 0.223042049407959, + "step": 19100 + }, + { + "epoch": 62.13625304136253, + "grad_norm": 0.2974834442138672, + "learning_rate": 1.8936893203883496e-05, + "loss": 0.221235294342041, + "step": 19200 + }, + { + "epoch": 62.46066504460665, + "grad_norm": 0.3040814995765686, + "learning_rate": 1.877508090614887e-05, + "loss": 0.21824802398681642, + "step": 19300 + }, + { + "epoch": 62.78507704785077, + "grad_norm": 0.3453911244869232, + "learning_rate": 1.861326860841424e-05, + "loss": 0.22165294647216796, + "step": 19400 + }, + { + "epoch": 63.10705596107056, + "grad_norm": 0.3323674201965332, + "learning_rate": 1.8451456310679614e-05, + "loss": 0.21942996978759766, + "step": 19500 + }, + { + "epoch": 63.43146796431468, + "grad_norm": 0.2868025302886963, + "learning_rate": 1.8289644012944983e-05, + "loss": 0.2159541893005371, + "step": 19600 + }, + { + "epoch": 63.7558799675588, + "grad_norm": 0.2985902428627014, + "learning_rate": 1.8127831715210356e-05, + "loss": 0.21843338012695312, + "step": 19700 + }, + { + "epoch": 64.07785888077859, + "grad_norm": 0.29877224564552307, + "learning_rate": 1.796601941747573e-05, + "loss": 0.21846704483032225, + "step": 19800 + }, + { + "epoch": 64.40227088402271, + "grad_norm": 0.31725695729255676, + "learning_rate": 1.78042071197411e-05, + "loss": 0.2123063850402832, + "step": 19900 + }, + { + "epoch": 64.72668288726683, + "grad_norm": 0.30116891860961914, + "learning_rate": 1.7642394822006474e-05, + "loss": 0.21550237655639648, + "step": 20000 + }, + { + "epoch": 65.04866180048661, + "grad_norm": 0.33267149329185486, + "learning_rate": 1.7480582524271846e-05, + "loss": 0.2158302879333496, + "step": 20100 + }, + { + "epoch": 65.37307380373073, + "grad_norm": 0.30885910987854004, + "learning_rate": 1.731877022653722e-05, + "loss": 0.2090800666809082, + "step": 20200 + }, + { + "epoch": 65.69748580697485, + "grad_norm": 0.31430330872535706, + "learning_rate": 1.715695792880259e-05, + "loss": 0.21172605514526366, + "step": 20300 + }, + { + "epoch": 66.01946472019465, + "grad_norm": 0.2837020754814148, + "learning_rate": 1.6995145631067964e-05, + "loss": 0.21372562408447265, + "step": 20400 + }, + { + "epoch": 66.34387672343877, + "grad_norm": 0.30839094519615173, + "learning_rate": 1.6833333333333334e-05, + "loss": 0.20695215225219726, + "step": 20500 + }, + { + "epoch": 66.66828872668289, + "grad_norm": 0.31136852502822876, + "learning_rate": 1.6671521035598706e-05, + "loss": 0.20894838333129884, + "step": 20600 + }, + { + "epoch": 66.99270072992701, + "grad_norm": 0.2942120432853699, + "learning_rate": 1.650970873786408e-05, + "loss": 0.21177177429199218, + "step": 20700 + }, + { + "epoch": 67.3146796431468, + "grad_norm": 0.32769644260406494, + "learning_rate": 1.6349514563106797e-05, + "loss": 0.20521749496459962, + "step": 20800 + }, + { + "epoch": 67.63909164639091, + "grad_norm": 0.3272440731525421, + "learning_rate": 1.6187702265372166e-05, + "loss": 0.2083640480041504, + "step": 20900 + }, + { + "epoch": 67.96350364963503, + "grad_norm": 0.2725636959075928, + "learning_rate": 1.6025889967637542e-05, + "loss": 0.2089810562133789, + "step": 21000 + }, + { + "epoch": 68.28548256285482, + "grad_norm": 0.2833479046821594, + "learning_rate": 1.5864077669902915e-05, + "loss": 0.20403633117675782, + "step": 21100 + }, + { + "epoch": 68.60989456609894, + "grad_norm": 0.2848324477672577, + "learning_rate": 1.5702265372168284e-05, + "loss": 0.2053829574584961, + "step": 21200 + }, + { + "epoch": 68.93430656934306, + "grad_norm": 0.324773907661438, + "learning_rate": 1.554045307443366e-05, + "loss": 0.206777400970459, + "step": 21300 + }, + { + "epoch": 69.25628548256286, + "grad_norm": 0.2661566734313965, + "learning_rate": 1.537864077669903e-05, + "loss": 0.20142404556274415, + "step": 21400 + }, + { + "epoch": 69.58069748580698, + "grad_norm": 0.28439629077911377, + "learning_rate": 1.52168284789644e-05, + "loss": 0.20303123474121093, + "step": 21500 + }, + { + "epoch": 69.9051094890511, + "grad_norm": 0.33656612038612366, + "learning_rate": 1.5055016181229775e-05, + "loss": 0.20467769622802734, + "step": 21600 + }, + { + "epoch": 70.22708840227088, + "grad_norm": 0.32043009996414185, + "learning_rate": 1.4893203883495147e-05, + "loss": 0.20070859909057617, + "step": 21700 + }, + { + "epoch": 70.551500405515, + "grad_norm": 0.3048563599586487, + "learning_rate": 1.4731391585760518e-05, + "loss": 0.20159858703613281, + "step": 21800 + }, + { + "epoch": 70.87591240875912, + "grad_norm": 0.2664601802825928, + "learning_rate": 1.4569579288025893e-05, + "loss": 0.20171623229980468, + "step": 21900 + }, + { + "epoch": 71.19789132197891, + "grad_norm": 0.3018724322319031, + "learning_rate": 1.4407766990291264e-05, + "loss": 0.19853240966796876, + "step": 22000 + }, + { + "epoch": 71.52230332522304, + "grad_norm": 0.2770579755306244, + "learning_rate": 1.4245954692556635e-05, + "loss": 0.1985287857055664, + "step": 22100 + }, + { + "epoch": 71.84671532846716, + "grad_norm": 0.2877587080001831, + "learning_rate": 1.4084142394822005e-05, + "loss": 0.2016657066345215, + "step": 22200 + }, + { + "epoch": 72.16869424168694, + "grad_norm": 0.3253211975097656, + "learning_rate": 1.392233009708738e-05, + "loss": 0.19735158920288087, + "step": 22300 + }, + { + "epoch": 72.49310624493106, + "grad_norm": 0.2870253920555115, + "learning_rate": 1.376051779935275e-05, + "loss": 0.19713401794433594, + "step": 22400 + }, + { + "epoch": 72.81751824817518, + "grad_norm": 0.32006755471229553, + "learning_rate": 1.3598705501618122e-05, + "loss": 0.1988151741027832, + "step": 22500 + }, + { + "epoch": 73.13949716139497, + "grad_norm": 0.28510263562202454, + "learning_rate": 1.3436893203883496e-05, + "loss": 0.19770748138427735, + "step": 22600 + }, + { + "epoch": 73.46390916463909, + "grad_norm": 0.2950480878353119, + "learning_rate": 1.3275080906148869e-05, + "loss": 0.195107364654541, + "step": 22700 + }, + { + "epoch": 73.78832116788321, + "grad_norm": 0.30394643545150757, + "learning_rate": 1.311326860841424e-05, + "loss": 0.1975857925415039, + "step": 22800 + }, + { + "epoch": 74.110300081103, + "grad_norm": 0.29557764530181885, + "learning_rate": 1.295307443365696e-05, + "loss": 0.19621952056884764, + "step": 22900 + }, + { + "epoch": 74.43471208434713, + "grad_norm": 0.27801787853240967, + "learning_rate": 1.279126213592233e-05, + "loss": 0.1924858283996582, + "step": 23000 + }, + { + "epoch": 74.75912408759125, + "grad_norm": 0.32521647214889526, + "learning_rate": 1.2629449838187705e-05, + "loss": 0.19586196899414063, + "step": 23100 + }, + { + "epoch": 75.08110300081103, + "grad_norm": 0.27390602231025696, + "learning_rate": 1.2467637540453075e-05, + "loss": 0.19569822311401366, + "step": 23200 + }, + { + "epoch": 75.40551500405515, + "grad_norm": 0.27017250657081604, + "learning_rate": 1.2305825242718446e-05, + "loss": 0.1917603874206543, + "step": 23300 + }, + { + "epoch": 75.72992700729927, + "grad_norm": 0.2980138957500458, + "learning_rate": 1.2144012944983819e-05, + "loss": 0.1927776336669922, + "step": 23400 + }, + { + "epoch": 76.05190592051906, + "grad_norm": 0.3057159185409546, + "learning_rate": 1.1982200647249192e-05, + "loss": 0.19304771423339845, + "step": 23500 + }, + { + "epoch": 76.37631792376318, + "grad_norm": 0.29936423897743225, + "learning_rate": 1.1820388349514563e-05, + "loss": 0.19062232971191406, + "step": 23600 + }, + { + "epoch": 76.7007299270073, + "grad_norm": 0.3179267942905426, + "learning_rate": 1.1658576051779935e-05, + "loss": 0.19235507965087892, + "step": 23700 + }, + { + "epoch": 77.02270884022708, + "grad_norm": 0.25758758187294006, + "learning_rate": 1.1496763754045308e-05, + "loss": 0.1918639373779297, + "step": 23800 + }, + { + "epoch": 77.3471208434712, + "grad_norm": 0.2676644027233124, + "learning_rate": 1.133495145631068e-05, + "loss": 0.18774497985839844, + "step": 23900 + }, + { + "epoch": 77.67153284671532, + "grad_norm": 0.25918132066726685, + "learning_rate": 1.1173139158576053e-05, + "loss": 0.18990053176879884, + "step": 24000 + }, + { + "epoch": 77.99594484995944, + "grad_norm": 0.25803694128990173, + "learning_rate": 1.1011326860841424e-05, + "loss": 0.19139570236206055, + "step": 24100 + }, + { + "epoch": 78.31792376317924, + "grad_norm": 0.2896536588668823, + "learning_rate": 1.0849514563106797e-05, + "loss": 0.18745737075805663, + "step": 24200 + }, + { + "epoch": 78.64233576642336, + "grad_norm": 0.2941916286945343, + "learning_rate": 1.0687702265372168e-05, + "loss": 0.18780550003051757, + "step": 24300 + }, + { + "epoch": 78.96674776966748, + "grad_norm": 0.28496670722961426, + "learning_rate": 1.052588996763754e-05, + "loss": 0.19009716033935548, + "step": 24400 + }, + { + "epoch": 79.28872668288727, + "grad_norm": 0.29919925332069397, + "learning_rate": 1.0364077669902913e-05, + "loss": 0.18620597839355468, + "step": 24500 + }, + { + "epoch": 79.61313868613139, + "grad_norm": 0.285383939743042, + "learning_rate": 1.0202265372168284e-05, + "loss": 0.18723442077636718, + "step": 24600 + }, + { + "epoch": 79.93755068937551, + "grad_norm": 0.2821769416332245, + "learning_rate": 1.0040453074433657e-05, + "loss": 0.1882436180114746, + "step": 24700 + }, + { + "epoch": 80.2595296025953, + "grad_norm": 0.291644424200058, + "learning_rate": 9.87864077669903e-06, + "loss": 0.18627639770507812, + "step": 24800 + }, + { + "epoch": 80.58394160583941, + "grad_norm": 0.28841665387153625, + "learning_rate": 9.716828478964402e-06, + "loss": 0.1859906768798828, + "step": 24900 + }, + { + "epoch": 80.90835360908353, + "grad_norm": 0.2513130307197571, + "learning_rate": 9.555016181229775e-06, + "loss": 0.18743871688842773, + "step": 25000 + }, + { + "epoch": 81.23033252230333, + "grad_norm": 0.28746384382247925, + "learning_rate": 9.394822006472493e-06, + "loss": 0.18453241348266602, + "step": 25100 + }, + { + "epoch": 81.55474452554745, + "grad_norm": 0.29126232862472534, + "learning_rate": 9.233009708737865e-06, + "loss": 0.1854015350341797, + "step": 25200 + }, + { + "epoch": 81.87915652879157, + "grad_norm": 0.2970152795314789, + "learning_rate": 9.071197411003236e-06, + "loss": 0.18607795715332032, + "step": 25300 + }, + { + "epoch": 82.20113544201135, + "grad_norm": 0.30898556113243103, + "learning_rate": 8.909385113268609e-06, + "loss": 0.18391321182250978, + "step": 25400 + }, + { + "epoch": 82.52554744525547, + "grad_norm": 0.2530721426010132, + "learning_rate": 8.74757281553398e-06, + "loss": 0.1833015823364258, + "step": 25500 + }, + { + "epoch": 82.84995944849959, + "grad_norm": 0.26257285475730896, + "learning_rate": 8.585760517799352e-06, + "loss": 0.18504741668701172, + "step": 25600 + }, + { + "epoch": 83.17193836171938, + "grad_norm": 0.29258695244789124, + "learning_rate": 8.423948220064725e-06, + "loss": 0.18265727996826173, + "step": 25700 + }, + { + "epoch": 83.4963503649635, + "grad_norm": 0.28137892484664917, + "learning_rate": 8.262135922330098e-06, + "loss": 0.1820280647277832, + "step": 25800 + }, + { + "epoch": 83.82076236820762, + "grad_norm": 0.253631055355072, + "learning_rate": 8.10032362459547e-06, + "loss": 0.18374771118164063, + "step": 25900 + }, + { + "epoch": 84.14274128142742, + "grad_norm": 0.2612302005290985, + "learning_rate": 7.938511326860843e-06, + "loss": 0.1822812843322754, + "step": 26000 + }, + { + "epoch": 84.46715328467154, + "grad_norm": 0.2968967854976654, + "learning_rate": 7.776699029126214e-06, + "loss": 0.1804751205444336, + "step": 26100 + }, + { + "epoch": 84.79156528791566, + "grad_norm": 0.28858786821365356, + "learning_rate": 7.614886731391587e-06, + "loss": 0.1823977279663086, + "step": 26200 + }, + { + "epoch": 85.11354420113544, + "grad_norm": 0.24769216775894165, + "learning_rate": 7.453074433656958e-06, + "loss": 0.18158819198608397, + "step": 26300 + }, + { + "epoch": 85.43795620437956, + "grad_norm": 0.27769848704338074, + "learning_rate": 7.29126213592233e-06, + "loss": 0.18056314468383788, + "step": 26400 + }, + { + "epoch": 85.76236820762368, + "grad_norm": 0.30476441979408264, + "learning_rate": 7.129449838187703e-06, + "loss": 0.18116596221923828, + "step": 26500 + }, + { + "epoch": 86.08434712084347, + "grad_norm": 0.23022858798503876, + "learning_rate": 6.967637540453075e-06, + "loss": 0.18061212539672852, + "step": 26600 + }, + { + "epoch": 86.4087591240876, + "grad_norm": 0.28072357177734375, + "learning_rate": 6.805825242718447e-06, + "loss": 0.17919044494628905, + "step": 26700 + }, + { + "epoch": 86.73317112733172, + "grad_norm": 0.28679656982421875, + "learning_rate": 6.644012944983818e-06, + "loss": 0.17989681243896485, + "step": 26800 + }, + { + "epoch": 87.0551500405515, + "grad_norm": 0.23604606091976166, + "learning_rate": 6.482200647249191e-06, + "loss": 0.1802787208557129, + "step": 26900 + }, + { + "epoch": 87.37956204379562, + "grad_norm": 0.2767940163612366, + "learning_rate": 6.320388349514564e-06, + "loss": 0.17775949478149414, + "step": 27000 + }, + { + "epoch": 87.70397404703974, + "grad_norm": 0.2633722126483917, + "learning_rate": 6.1585760517799355e-06, + "loss": 0.17942682266235352, + "step": 27100 + }, + { + "epoch": 88.02595296025953, + "grad_norm": 0.254029780626297, + "learning_rate": 5.996763754045308e-06, + "loss": 0.17986074447631836, + "step": 27200 + }, + { + "epoch": 88.35036496350365, + "grad_norm": 0.25648459792137146, + "learning_rate": 5.83495145631068e-06, + "loss": 0.17738138198852538, + "step": 27300 + }, + { + "epoch": 88.67477696674777, + "grad_norm": 0.2450580894947052, + "learning_rate": 5.673139158576052e-06, + "loss": 0.17837905883789062, + "step": 27400 + }, + { + "epoch": 88.99918896999189, + "grad_norm": 0.2686944305896759, + "learning_rate": 5.511326860841424e-06, + "loss": 0.17965082168579102, + "step": 27500 + }, + { + "epoch": 89.32116788321167, + "grad_norm": 0.26215696334838867, + "learning_rate": 5.351132686084142e-06, + "loss": 0.17689130783081056, + "step": 27600 + }, + { + "epoch": 89.64557988645579, + "grad_norm": 0.2659305930137634, + "learning_rate": 5.189320388349515e-06, + "loss": 0.1780232620239258, + "step": 27700 + }, + { + "epoch": 89.96999188969991, + "grad_norm": 0.2572084665298462, + "learning_rate": 5.027508090614887e-06, + "loss": 0.17742925643920898, + "step": 27800 + }, + { + "epoch": 90.2919708029197, + "grad_norm": 0.2678115963935852, + "learning_rate": 4.865695792880259e-06, + "loss": 0.1759064292907715, + "step": 27900 + }, + { + "epoch": 90.61638280616383, + "grad_norm": 0.2606296241283417, + "learning_rate": 4.703883495145631e-06, + "loss": 0.176632080078125, + "step": 28000 + }, + { + "epoch": 90.94079480940795, + "grad_norm": 0.27705252170562744, + "learning_rate": 4.542071197411003e-06, + "loss": 0.17765697479248047, + "step": 28100 + }, + { + "epoch": 91.26277372262774, + "grad_norm": 0.2625502049922943, + "learning_rate": 4.380258899676376e-06, + "loss": 0.1756792449951172, + "step": 28200 + }, + { + "epoch": 91.58718572587186, + "grad_norm": 0.24927927553653717, + "learning_rate": 4.218446601941748e-06, + "loss": 0.17554109573364257, + "step": 28300 + }, + { + "epoch": 91.91159772911598, + "grad_norm": 0.240628182888031, + "learning_rate": 4.05663430420712e-06, + "loss": 0.17559316635131836, + "step": 28400 + }, + { + "epoch": 92.23357664233576, + "grad_norm": 0.2785760462284088, + "learning_rate": 3.894822006472492e-06, + "loss": 0.17503616333007813, + "step": 28500 + }, + { + "epoch": 92.55798864557988, + "grad_norm": 0.25900083780288696, + "learning_rate": 3.733009708737864e-06, + "loss": 0.17507522583007812, + "step": 28600 + }, + { + "epoch": 92.882400648824, + "grad_norm": 0.276037335395813, + "learning_rate": 3.5711974110032368e-06, + "loss": 0.17590507507324218, + "step": 28700 + }, + { + "epoch": 93.2043795620438, + "grad_norm": 0.2555212080478668, + "learning_rate": 3.4093851132686086e-06, + "loss": 0.17514604568481446, + "step": 28800 + }, + { + "epoch": 93.52879156528792, + "grad_norm": 0.2588745653629303, + "learning_rate": 3.247572815533981e-06, + "loss": 0.174718017578125, + "step": 28900 + }, + { + "epoch": 93.85320356853204, + "grad_norm": 0.2660391330718994, + "learning_rate": 3.0857605177993526e-06, + "loss": 0.17506734848022462, + "step": 29000 + }, + { + "epoch": 94.17518248175182, + "grad_norm": 0.2677949368953705, + "learning_rate": 2.9239482200647253e-06, + "loss": 0.17430608749389648, + "step": 29100 + }, + { + "epoch": 94.49959448499594, + "grad_norm": 0.28909972310066223, + "learning_rate": 2.762135922330097e-06, + "loss": 0.17481451034545897, + "step": 29200 + }, + { + "epoch": 94.82400648824006, + "grad_norm": 0.26000115275382996, + "learning_rate": 2.6003236245954693e-06, + "loss": 0.17436113357543945, + "step": 29300 + }, + { + "epoch": 95.14598540145985, + "grad_norm": 0.2968977987766266, + "learning_rate": 2.4385113268608415e-06, + "loss": 0.17399301528930664, + "step": 29400 + }, + { + "epoch": 95.47039740470397, + "grad_norm": 0.24084195494651794, + "learning_rate": 2.2766990291262138e-06, + "loss": 0.1732662582397461, + "step": 29500 + }, + { + "epoch": 95.7948094079481, + "grad_norm": 0.24390101432800293, + "learning_rate": 2.114886731391586e-06, + "loss": 0.17355813980102539, + "step": 29600 + }, + { + "epoch": 96.11678832116789, + "grad_norm": 0.24950821697711945, + "learning_rate": 1.9546925566343042e-06, + "loss": 0.17353734970092774, + "step": 29700 + }, + { + "epoch": 96.44120032441201, + "grad_norm": 0.2526560425758362, + "learning_rate": 1.7928802588996767e-06, + "loss": 0.17330703735351563, + "step": 29800 + }, + { + "epoch": 96.76561232765613, + "grad_norm": 0.2830760180950165, + "learning_rate": 1.6310679611650487e-06, + "loss": 0.1727421760559082, + "step": 29900 + }, + { + "epoch": 97.08759124087591, + "grad_norm": 0.21633441746234894, + "learning_rate": 1.4692556634304207e-06, + "loss": 0.17346202850341796, + "step": 30000 + }, + { + "epoch": 97.41200324412003, + "grad_norm": 0.23232562839984894, + "learning_rate": 1.307443365695793e-06, + "loss": 0.17300867080688476, + "step": 30100 + }, + { + "epoch": 97.73641524736415, + "grad_norm": 0.22741949558258057, + "learning_rate": 1.1456310679611652e-06, + "loss": 0.1723964500427246, + "step": 30200 + }, + { + "epoch": 98.05839416058394, + "grad_norm": 0.21481141448020935, + "learning_rate": 9.838187702265374e-07, + "loss": 0.17242773056030272, + "step": 30300 + }, + { + "epoch": 98.38280616382806, + "grad_norm": 0.26986297965049744, + "learning_rate": 8.220064724919095e-07, + "loss": 0.17295772552490235, + "step": 30400 + }, + { + "epoch": 98.70721816707218, + "grad_norm": 0.23824343085289001, + "learning_rate": 6.601941747572815e-07, + "loss": 0.1724873352050781, + "step": 30500 + }, + { + "epoch": 99.02919708029196, + "grad_norm": 0.28364071249961853, + "learning_rate": 4.983818770226538e-07, + "loss": 0.17249490737915038, + "step": 30600 + }, + { + "epoch": 99.35360908353609, + "grad_norm": 0.2162533402442932, + "learning_rate": 3.3656957928802594e-07, + "loss": 0.1711699867248535, + "step": 30700 + }, + { + "epoch": 99.6780210867802, + "grad_norm": 0.25766995549201965, + "learning_rate": 1.7475728155339807e-07, + "loss": 0.1732579231262207, + "step": 30800 + } + ], + "logging_steps": 100, + "max_steps": 30900, + "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": 1.756242826297344e+16, + "train_batch_size": 8, + "trial_name": null, + "trial_params": null +} diff --git a/timecost/m6/realtabformer/rtf-m6-20260429_070344/rtf_checkpoints/checkpoint-30800/training_args.bin b/timecost/m6/realtabformer/rtf-m6-20260429_070344/rtf_checkpoints/checkpoint-30800/training_args.bin new file mode 100644 index 0000000000000000000000000000000000000000..34d68dc0e0fe1c1f12a2e581dd1b166aa7178a9e --- /dev/null +++ b/timecost/m6/realtabformer/rtf-m6-20260429_070344/rtf_checkpoints/checkpoint-30800/training_args.bin @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:9e2cd88337d1d846c6918d2b3b63fa3e5c93f12fefc082497590da854a564607 +size 5201 diff --git a/timecost/m6/realtabformer/rtf-m6-20260429_070344/rtf_checkpoints/checkpoint-30900/config.json b/timecost/m6/realtabformer/rtf-m6-20260429_070344/rtf_checkpoints/checkpoint-30900/config.json new file mode 100644 index 0000000000000000000000000000000000000000..5794e9cc1aa00a0ff98ed7967c3c2d9142841a1c --- /dev/null +++ b/timecost/m6/realtabformer/rtf-m6-20260429_070344/rtf_checkpoints/checkpoint-30900/config.json @@ -0,0 +1,34 @@ +{ + "activation_function": "gelu_new", + "add_cross_attention": false, + "architectures": [ + "GPT2LMHeadModel" + ], + "attn_pdrop": 0.1, + "bos_token_id": 5, + "dtype": "float32", + "embd_pdrop": 0.1, + "eos_token_id": 6, + "initializer_range": 0.02, + "layer_norm_epsilon": 1e-05, + "model_type": "gpt2", + "n_embd": 768, + "n_head": 12, + "n_inner": null, + "n_layer": 6, + "n_positions": 1024, + "pad_token_id": null, + "reorder_and_upcast_attn": false, + "resid_pdrop": 0.1, + "scale_attn_by_inverse_layer_idx": false, + "scale_attn_weights": true, + "summary_activation": null, + "summary_first_dropout": 0.1, + "summary_proj_to_labels": true, + "summary_type": "cls_index", + "summary_use_proj": true, + "tie_word_embeddings": true, + "transformers_version": "5.5.3", + "use_cache": false, + "vocab_size": 498 +} diff --git a/timecost/m6/realtabformer/rtf-m6-20260429_070344/rtf_checkpoints/checkpoint-30900/generation_config.json b/timecost/m6/realtabformer/rtf-m6-20260429_070344/rtf_checkpoints/checkpoint-30900/generation_config.json new file mode 100644 index 0000000000000000000000000000000000000000..ffe89567780e75b5c22eade9be971483b9618f39 --- /dev/null +++ b/timecost/m6/realtabformer/rtf-m6-20260429_070344/rtf_checkpoints/checkpoint-30900/generation_config.json @@ -0,0 +1,9 @@ +{ + "_from_model_config": true, + "bos_token_id": 5, + "eos_token_id": 6, + "output_attentions": false, + "output_hidden_states": false, + "transformers_version": "5.5.3", + "use_cache": true +} diff --git a/timecost/m6/realtabformer/rtf-m6-20260429_070344/rtf_checkpoints/checkpoint-30900/model.safetensors b/timecost/m6/realtabformer/rtf-m6-20260429_070344/rtf_checkpoints/checkpoint-30900/model.safetensors new file mode 100644 index 0000000000000000000000000000000000000000..88e8509e2a996411acec7611f3450d8392b0a4e4 --- /dev/null +++ b/timecost/m6/realtabformer/rtf-m6-20260429_070344/rtf_checkpoints/checkpoint-30900/model.safetensors @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:b3443fb41cbc90bd4083e3d1c54d2cdfab994b27c9fd4af1d387fbc4163eae61 +size 174798280 diff --git a/timecost/m6/realtabformer/rtf-m6-20260429_070344/rtf_checkpoints/checkpoint-30900/optimizer.pt b/timecost/m6/realtabformer/rtf-m6-20260429_070344/rtf_checkpoints/checkpoint-30900/optimizer.pt new file mode 100644 index 0000000000000000000000000000000000000000..292555ff96ad2bfa189e3ec94ce4539af9b2b422 --- /dev/null +++ b/timecost/m6/realtabformer/rtf-m6-20260429_070344/rtf_checkpoints/checkpoint-30900/optimizer.pt @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:0eb4332d5cdf3141a302b8ff9ab5720fd3c74e83dc7038321995d4abb60fbf86 +size 349645643 diff --git a/timecost/m6/realtabformer/rtf-m6-20260429_070344/rtf_checkpoints/checkpoint-30900/rng_state.pth b/timecost/m6/realtabformer/rtf-m6-20260429_070344/rtf_checkpoints/checkpoint-30900/rng_state.pth new file mode 100644 index 0000000000000000000000000000000000000000..2ab73bee119e115f948654c9b886ee80cb84651d --- /dev/null +++ b/timecost/m6/realtabformer/rtf-m6-20260429_070344/rtf_checkpoints/checkpoint-30900/rng_state.pth @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:4f99609a291453c1e64cd8d42298e078dbbc81478b719b3befed97f88c71c10e +size 14645 diff --git a/timecost/m6/realtabformer/rtf-m6-20260429_070344/rtf_checkpoints/checkpoint-30900/scaler.pt b/timecost/m6/realtabformer/rtf-m6-20260429_070344/rtf_checkpoints/checkpoint-30900/scaler.pt new file mode 100644 index 0000000000000000000000000000000000000000..940cf2fc69ee1debeab97a1bf407133772e70fbd --- /dev/null +++ b/timecost/m6/realtabformer/rtf-m6-20260429_070344/rtf_checkpoints/checkpoint-30900/scaler.pt @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:7b6611f5a5335d5cd65ee3bf865ba7ba675e242d6f2c51f08d7d21878212d456 +size 1383 diff --git a/timecost/m6/realtabformer/rtf-m6-20260429_070344/rtf_checkpoints/checkpoint-30900/scheduler.pt b/timecost/m6/realtabformer/rtf-m6-20260429_070344/rtf_checkpoints/checkpoint-30900/scheduler.pt new file mode 100644 index 0000000000000000000000000000000000000000..8cd6c014d3e27a6d6c9678560776ea31f1aafff6 --- /dev/null +++ b/timecost/m6/realtabformer/rtf-m6-20260429_070344/rtf_checkpoints/checkpoint-30900/scheduler.pt @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:72750730a043412335a394483cda430187c6360b6fea30a8dbf56368adacb510 +size 1465 diff --git a/timecost/m6/realtabformer/rtf-m6-20260429_070344/rtf_checkpoints/checkpoint-30900/trainer_state.json b/timecost/m6/realtabformer/rtf-m6-20260429_070344/rtf_checkpoints/checkpoint-30900/trainer_state.json new file mode 100644 index 0000000000000000000000000000000000000000..b487359d75fb7aa514df4e01bb7d702beb1f3b80 --- /dev/null +++ b/timecost/m6/realtabformer/rtf-m6-20260429_070344/rtf_checkpoints/checkpoint-30900/trainer_state.json @@ -0,0 +1,2197 @@ +{ + "best_global_step": null, + "best_metric": null, + "best_model_checkpoint": null, + "epoch": 100.0, + "eval_steps": 100, + "global_step": 30900, + "is_hyper_param_search": false, + "is_local_process_zero": true, + "is_world_process_zero": true, + "log_history": [ + { + "epoch": 0.32441200324412, + "grad_norm": 0.20164933800697327, + "learning_rate": 4.983980582524272e-05, + "loss": 1.5922834777832031, + "step": 100 + }, + { + "epoch": 0.64882400648824, + "grad_norm": 0.18370771408081055, + "learning_rate": 4.967799352750809e-05, + "loss": 0.8226632690429687, + "step": 200 + }, + { + "epoch": 0.9732360097323601, + "grad_norm": 0.17879560589790344, + "learning_rate": 4.951618122977347e-05, + "loss": 0.7554012298583984, + "step": 300 + }, + { + "epoch": 1.2952149229521492, + "grad_norm": 0.14063459634780884, + "learning_rate": 4.935436893203884e-05, + "loss": 0.7157672882080078, + "step": 400 + }, + { + "epoch": 1.6196269261962692, + "grad_norm": 0.14949747920036316, + "learning_rate": 4.919255663430421e-05, + "loss": 0.7098747253417969, + "step": 500 + }, + { + "epoch": 1.9440389294403893, + "grad_norm": 0.1495194435119629, + "learning_rate": 4.9030744336569583e-05, + "loss": 0.6998626708984375, + "step": 600 + }, + { + "epoch": 2.2660178426601782, + "grad_norm": 0.1467229574918747, + "learning_rate": 4.886893203883495e-05, + "loss": 0.6833465576171875, + "step": 700 + }, + { + "epoch": 2.5904298459042985, + "grad_norm": 0.1609153300523758, + "learning_rate": 4.870711974110033e-05, + "loss": 0.6878270721435547, + "step": 800 + }, + { + "epoch": 2.9148418491484183, + "grad_norm": 0.13326895236968994, + "learning_rate": 4.85453074433657e-05, + "loss": 0.6762329864501954, + "step": 900 + }, + { + "epoch": 3.2368207623682075, + "grad_norm": 0.14083443582057953, + "learning_rate": 4.838349514563107e-05, + "loss": 0.6711769866943359, + "step": 1000 + }, + { + "epoch": 3.5612327656123277, + "grad_norm": 0.13646796345710754, + "learning_rate": 4.822168284789644e-05, + "loss": 0.6645689392089844, + "step": 1100 + }, + { + "epoch": 3.885644768856448, + "grad_norm": 0.13673610985279083, + "learning_rate": 4.805987055016181e-05, + "loss": 0.6698095703125, + "step": 1200 + }, + { + "epoch": 4.207623682076237, + "grad_norm": 0.12795455753803253, + "learning_rate": 4.789805825242719e-05, + "loss": 0.6573734283447266, + "step": 1300 + }, + { + "epoch": 4.5320356853203565, + "grad_norm": 0.12952066957950592, + "learning_rate": 4.773624595469256e-05, + "loss": 0.6638764190673828, + "step": 1400 + }, + { + "epoch": 4.856447688564477, + "grad_norm": 0.1414010375738144, + "learning_rate": 4.757443365695793e-05, + "loss": 0.6583383178710938, + "step": 1500 + }, + { + "epoch": 5.178426601784266, + "grad_norm": 0.14432589709758759, + "learning_rate": 4.74126213592233e-05, + "loss": 0.6485870361328125, + "step": 1600 + }, + { + "epoch": 5.502838605028386, + "grad_norm": 0.1340341866016388, + "learning_rate": 4.725080906148868e-05, + "loss": 0.6541815948486328, + "step": 1700 + }, + { + "epoch": 5.827250608272506, + "grad_norm": 0.1309279352426529, + "learning_rate": 4.708899676375405e-05, + "loss": 0.6557488250732422, + "step": 1800 + }, + { + "epoch": 6.149229521492296, + "grad_norm": 0.1259990930557251, + "learning_rate": 4.692718446601942e-05, + "loss": 0.639359245300293, + "step": 1900 + }, + { + "epoch": 6.473641524736415, + "grad_norm": 0.13993705809116364, + "learning_rate": 4.6765372168284794e-05, + "loss": 0.6472817230224609, + "step": 2000 + }, + { + "epoch": 6.798053527980535, + "grad_norm": 0.12632109224796295, + "learning_rate": 4.660355987055016e-05, + "loss": 0.6512689971923828, + "step": 2100 + }, + { + "epoch": 7.120032441200324, + "grad_norm": 0.12884259223937988, + "learning_rate": 4.644174757281554e-05, + "loss": 0.6424983978271485, + "step": 2200 + }, + { + "epoch": 7.444444444444445, + "grad_norm": 0.13162656128406525, + "learning_rate": 4.627993527508091e-05, + "loss": 0.6413846588134766, + "step": 2300 + }, + { + "epoch": 7.768856447688565, + "grad_norm": 0.1305171549320221, + "learning_rate": 4.611812297734628e-05, + "loss": 0.6504198455810547, + "step": 2400 + }, + { + "epoch": 8.090835360908354, + "grad_norm": 0.12320607155561447, + "learning_rate": 4.5956310679611654e-05, + "loss": 0.6361569213867188, + "step": 2500 + }, + { + "epoch": 8.415247364152474, + "grad_norm": 0.1263129562139511, + "learning_rate": 4.579449838187703e-05, + "loss": 0.6391400527954102, + "step": 2600 + }, + { + "epoch": 8.739659367396595, + "grad_norm": 0.14339180290699005, + "learning_rate": 4.563268608414239e-05, + "loss": 0.643778076171875, + "step": 2700 + }, + { + "epoch": 9.061638280616382, + "grad_norm": 0.13703292608261108, + "learning_rate": 4.547087378640777e-05, + "loss": 0.63127685546875, + "step": 2800 + }, + { + "epoch": 9.386050283860502, + "grad_norm": 0.12888263165950775, + "learning_rate": 4.5309061488673144e-05, + "loss": 0.636928939819336, + "step": 2900 + }, + { + "epoch": 9.710462287104622, + "grad_norm": 0.1290873885154724, + "learning_rate": 4.5147249190938514e-05, + "loss": 0.6323677444458008, + "step": 3000 + }, + { + "epoch": 10.032441200324412, + "grad_norm": 0.13526120781898499, + "learning_rate": 4.498543689320388e-05, + "loss": 0.6302993392944336, + "step": 3100 + }, + { + "epoch": 10.356853203568532, + "grad_norm": 0.14485451579093933, + "learning_rate": 4.482362459546926e-05, + "loss": 0.6336409378051758, + "step": 3200 + }, + { + "epoch": 10.681265206812652, + "grad_norm": 0.12640801072120667, + "learning_rate": 4.466181229773463e-05, + "loss": 0.6236648178100586, + "step": 3300 + }, + { + "epoch": 11.003244120032441, + "grad_norm": 0.13860085606575012, + "learning_rate": 4.4500000000000004e-05, + "loss": 0.6343330383300781, + "step": 3400 + }, + { + "epoch": 11.327656123276562, + "grad_norm": 0.13636715710163116, + "learning_rate": 4.4338187702265373e-05, + "loss": 0.6203033447265625, + "step": 3500 + }, + { + "epoch": 11.652068126520682, + "grad_norm": 0.13047286868095398, + "learning_rate": 4.417637540453074e-05, + "loss": 0.6218357086181641, + "step": 3600 + }, + { + "epoch": 11.976480129764802, + "grad_norm": 0.13506969809532166, + "learning_rate": 4.401456310679612e-05, + "loss": 0.6350560760498047, + "step": 3700 + }, + { + "epoch": 12.298459042984591, + "grad_norm": 0.13476674258708954, + "learning_rate": 4.385275080906149e-05, + "loss": 0.6147463607788086, + "step": 3800 + }, + { + "epoch": 12.62287104622871, + "grad_norm": 0.12256718426942825, + "learning_rate": 4.3690938511326864e-05, + "loss": 0.624836196899414, + "step": 3900 + }, + { + "epoch": 12.94728304947283, + "grad_norm": 0.13317419588565826, + "learning_rate": 4.352912621359223e-05, + "loss": 0.628001823425293, + "step": 4000 + }, + { + "epoch": 13.26926196269262, + "grad_norm": 0.13066990673542023, + "learning_rate": 4.33673139158576e-05, + "loss": 0.609481315612793, + "step": 4100 + }, + { + "epoch": 13.59367396593674, + "grad_norm": 0.13055436313152313, + "learning_rate": 4.320550161812298e-05, + "loss": 0.6177150344848633, + "step": 4200 + }, + { + "epoch": 13.91808596918086, + "grad_norm": 0.13111238181591034, + "learning_rate": 4.3043689320388355e-05, + "loss": 0.6266952896118164, + "step": 4300 + }, + { + "epoch": 14.240064882400649, + "grad_norm": 0.14692434668540955, + "learning_rate": 4.2881877022653724e-05, + "loss": 0.6085420608520508, + "step": 4400 + }, + { + "epoch": 14.564476885644769, + "grad_norm": 0.1490693986415863, + "learning_rate": 4.272006472491909e-05, + "loss": 0.6127510833740234, + "step": 4500 + }, + { + "epoch": 14.88888888888889, + "grad_norm": 0.14273235201835632, + "learning_rate": 4.255825242718447e-05, + "loss": 0.6196828079223633, + "step": 4600 + }, + { + "epoch": 15.210867802108679, + "grad_norm": 0.1464281678199768, + "learning_rate": 4.239644012944984e-05, + "loss": 0.606991844177246, + "step": 4700 + }, + { + "epoch": 15.535279805352799, + "grad_norm": 0.15429367125034332, + "learning_rate": 4.2234627831715215e-05, + "loss": 0.6114653015136718, + "step": 4800 + }, + { + "epoch": 15.859691808596917, + "grad_norm": 0.1561301201581955, + "learning_rate": 4.2072815533980584e-05, + "loss": 0.6102643585205079, + "step": 4900 + }, + { + "epoch": 16.181670721816708, + "grad_norm": 0.14197590947151184, + "learning_rate": 4.191100323624595e-05, + "loss": 0.6006597900390624, + "step": 5000 + }, + { + "epoch": 16.50608272506083, + "grad_norm": 0.15073753893375397, + "learning_rate": 4.174919093851133e-05, + "loss": 0.6000652694702149, + "step": 5100 + }, + { + "epoch": 16.83049472830495, + "grad_norm": 0.1630340814590454, + "learning_rate": 4.1587378640776705e-05, + "loss": 0.601633186340332, + "step": 5200 + }, + { + "epoch": 17.152473641524736, + "grad_norm": 0.14281341433525085, + "learning_rate": 4.1425566343042074e-05, + "loss": 0.6040666580200196, + "step": 5300 + }, + { + "epoch": 17.476885644768856, + "grad_norm": 0.16090357303619385, + "learning_rate": 4.1263754045307444e-05, + "loss": 0.5960210800170899, + "step": 5400 + }, + { + "epoch": 17.801297648012977, + "grad_norm": 0.15764260292053223, + "learning_rate": 4.110194174757282e-05, + "loss": 0.6001902389526367, + "step": 5500 + }, + { + "epoch": 18.123276561232764, + "grad_norm": 0.17385198175907135, + "learning_rate": 4.094012944983819e-05, + "loss": 0.5886587142944336, + "step": 5600 + }, + { + "epoch": 18.447688564476884, + "grad_norm": 0.16908828914165497, + "learning_rate": 4.0778317152103565e-05, + "loss": 0.594392967224121, + "step": 5700 + }, + { + "epoch": 18.772100567721004, + "grad_norm": 0.16428205370903015, + "learning_rate": 4.0616504854368934e-05, + "loss": 0.589791030883789, + "step": 5800 + }, + { + "epoch": 19.094079480940795, + "grad_norm": 0.16796661913394928, + "learning_rate": 4.0454692556634304e-05, + "loss": 0.5915510559082031, + "step": 5900 + }, + { + "epoch": 19.418491484184916, + "grad_norm": 0.17108002305030823, + "learning_rate": 4.029288025889968e-05, + "loss": 0.5712713623046874, + "step": 6000 + }, + { + "epoch": 19.742903487429036, + "grad_norm": 0.17238284647464752, + "learning_rate": 4.0131067961165056e-05, + "loss": 0.5880846786499023, + "step": 6100 + }, + { + "epoch": 20.064882400648823, + "grad_norm": 0.16751733422279358, + "learning_rate": 3.9969255663430425e-05, + "loss": 0.5886093902587891, + "step": 6200 + }, + { + "epoch": 20.389294403892944, + "grad_norm": 0.17518126964569092, + "learning_rate": 3.9807443365695794e-05, + "loss": 0.5645963287353516, + "step": 6300 + }, + { + "epoch": 20.713706407137064, + "grad_norm": 0.19824537634849548, + "learning_rate": 3.9645631067961164e-05, + "loss": 0.5758349609375, + "step": 6400 + }, + { + "epoch": 21.035685320356855, + "grad_norm": 0.17580321431159973, + "learning_rate": 3.948381877022654e-05, + "loss": 0.580423698425293, + "step": 6500 + }, + { + "epoch": 21.360097323600975, + "grad_norm": 0.17921853065490723, + "learning_rate": 3.9322006472491916e-05, + "loss": 0.5611041641235351, + "step": 6600 + }, + { + "epoch": 21.68450932684509, + "grad_norm": 0.18941283226013184, + "learning_rate": 3.916019417475728e-05, + "loss": 0.5720311737060547, + "step": 6700 + }, + { + "epoch": 22.006488240064883, + "grad_norm": 0.18437007069587708, + "learning_rate": 3.8998381877022654e-05, + "loss": 0.563258171081543, + "step": 6800 + }, + { + "epoch": 22.330900243309003, + "grad_norm": 0.19815316796302795, + "learning_rate": 3.883656957928803e-05, + "loss": 0.5511487197875976, + "step": 6900 + }, + { + "epoch": 22.655312246553123, + "grad_norm": 0.20421746373176575, + "learning_rate": 3.86747572815534e-05, + "loss": 0.5592882537841797, + "step": 7000 + }, + { + "epoch": 22.979724249797243, + "grad_norm": 0.2145063877105713, + "learning_rate": 3.851294498381877e-05, + "loss": 0.5531240844726563, + "step": 7100 + }, + { + "epoch": 23.30170316301703, + "grad_norm": 0.2133578211069107, + "learning_rate": 3.8351132686084145e-05, + "loss": 0.5361775588989258, + "step": 7200 + }, + { + "epoch": 23.62611516626115, + "grad_norm": 0.21354049444198608, + "learning_rate": 3.8189320388349514e-05, + "loss": 0.5458520126342773, + "step": 7300 + }, + { + "epoch": 23.95052716950527, + "grad_norm": 0.20230478048324585, + "learning_rate": 3.802750809061489e-05, + "loss": 0.5508059692382813, + "step": 7400 + }, + { + "epoch": 24.272506082725062, + "grad_norm": 0.21077010035514832, + "learning_rate": 3.786569579288026e-05, + "loss": 0.5237713623046875, + "step": 7500 + }, + { + "epoch": 24.596918085969182, + "grad_norm": 0.22097694873809814, + "learning_rate": 3.770388349514563e-05, + "loss": 0.5358617782592774, + "step": 7600 + }, + { + "epoch": 24.9213300892133, + "grad_norm": 0.23570670187473297, + "learning_rate": 3.7542071197411005e-05, + "loss": 0.5347403717041016, + "step": 7700 + }, + { + "epoch": 25.24330900243309, + "grad_norm": 0.21193180978298187, + "learning_rate": 3.738025889967638e-05, + "loss": 0.5195016479492187, + "step": 7800 + }, + { + "epoch": 25.56772100567721, + "grad_norm": 0.24408023059368134, + "learning_rate": 3.721844660194175e-05, + "loss": 0.5128348922729492, + "step": 7900 + }, + { + "epoch": 25.89213300892133, + "grad_norm": 0.2301139086484909, + "learning_rate": 3.705663430420712e-05, + "loss": 0.5274497222900391, + "step": 8000 + }, + { + "epoch": 26.214111922141118, + "grad_norm": 0.23104797303676605, + "learning_rate": 3.6894822006472495e-05, + "loss": 0.5127175521850585, + "step": 8100 + }, + { + "epoch": 26.53852392538524, + "grad_norm": 0.25776928663253784, + "learning_rate": 3.6733009708737865e-05, + "loss": 0.5081464004516602, + "step": 8200 + }, + { + "epoch": 26.86293592862936, + "grad_norm": 0.23275628685951233, + "learning_rate": 3.657119741100324e-05, + "loss": 0.5066284942626953, + "step": 8300 + }, + { + "epoch": 27.18491484184915, + "grad_norm": 0.25895944237709045, + "learning_rate": 3.640938511326861e-05, + "loss": 0.4974431228637695, + "step": 8400 + }, + { + "epoch": 27.50932684509327, + "grad_norm": 0.2517513632774353, + "learning_rate": 3.624757281553398e-05, + "loss": 0.49229534149169923, + "step": 8500 + }, + { + "epoch": 27.83373884833739, + "grad_norm": 0.27210375666618347, + "learning_rate": 3.6085760517799355e-05, + "loss": 0.49578163146972654, + "step": 8600 + }, + { + "epoch": 28.155717761557177, + "grad_norm": 0.27576959133148193, + "learning_rate": 3.592394822006473e-05, + "loss": 0.49141166687011717, + "step": 8700 + }, + { + "epoch": 28.480129764801298, + "grad_norm": 0.26969099044799805, + "learning_rate": 3.57621359223301e-05, + "loss": 0.47837520599365235, + "step": 8800 + }, + { + "epoch": 28.804541768045418, + "grad_norm": 0.2485017627477646, + "learning_rate": 3.560032362459547e-05, + "loss": 0.4838485336303711, + "step": 8900 + }, + { + "epoch": 29.126520681265205, + "grad_norm": 0.2618029713630676, + "learning_rate": 3.543851132686084e-05, + "loss": 0.4762223052978516, + "step": 9000 + }, + { + "epoch": 29.450932684509326, + "grad_norm": 0.25002509355545044, + "learning_rate": 3.5276699029126215e-05, + "loss": 0.4613980865478516, + "step": 9100 + }, + { + "epoch": 29.775344687753446, + "grad_norm": 0.2622935473918915, + "learning_rate": 3.511488673139159e-05, + "loss": 0.46839576721191406, + "step": 9200 + }, + { + "epoch": 30.097323600973237, + "grad_norm": 0.27539685368537903, + "learning_rate": 3.495307443365696e-05, + "loss": 0.46719558715820314, + "step": 9300 + }, + { + "epoch": 30.421735604217357, + "grad_norm": 0.2709919512271881, + "learning_rate": 3.479126213592233e-05, + "loss": 0.44856761932373046, + "step": 9400 + }, + { + "epoch": 30.746147607461477, + "grad_norm": 0.2810458242893219, + "learning_rate": 3.4629449838187706e-05, + "loss": 0.4556717300415039, + "step": 9500 + }, + { + "epoch": 31.068126520681265, + "grad_norm": 0.2798343002796173, + "learning_rate": 3.4467637540453075e-05, + "loss": 0.45173492431640627, + "step": 9600 + }, + { + "epoch": 31.392538523925385, + "grad_norm": 0.3120841383934021, + "learning_rate": 3.430582524271845e-05, + "loss": 0.4392761993408203, + "step": 9700 + }, + { + "epoch": 31.716950527169505, + "grad_norm": 0.2956726551055908, + "learning_rate": 3.414401294498382e-05, + "loss": 0.4437244415283203, + "step": 9800 + }, + { + "epoch": 32.038929440389296, + "grad_norm": 0.2856016457080841, + "learning_rate": 3.398220064724919e-05, + "loss": 0.441302490234375, + "step": 9900 + }, + { + "epoch": 32.363341443633416, + "grad_norm": 0.2965444028377533, + "learning_rate": 3.3820388349514566e-05, + "loss": 0.42223735809326174, + "step": 10000 + }, + { + "epoch": 32.68775344687754, + "grad_norm": 0.2714678943157196, + "learning_rate": 3.365857605177994e-05, + "loss": 0.43019737243652345, + "step": 10100 + }, + { + "epoch": 33.009732360097324, + "grad_norm": 0.23514199256896973, + "learning_rate": 3.3496763754045304e-05, + "loss": 0.4372244644165039, + "step": 10200 + }, + { + "epoch": 33.334144363341444, + "grad_norm": 0.26974233984947205, + "learning_rate": 3.333495145631068e-05, + "loss": 0.41183216094970704, + "step": 10300 + }, + { + "epoch": 33.658556366585564, + "grad_norm": 0.29364973306655884, + "learning_rate": 3.3173139158576056e-05, + "loss": 0.4156087112426758, + "step": 10400 + }, + { + "epoch": 33.982968369829685, + "grad_norm": 0.3023452162742615, + "learning_rate": 3.3011326860841425e-05, + "loss": 0.4232332992553711, + "step": 10500 + }, + { + "epoch": 34.30494728304947, + "grad_norm": 0.2768167555332184, + "learning_rate": 3.2849514563106795e-05, + "loss": 0.4014273452758789, + "step": 10600 + }, + { + "epoch": 34.62935928629359, + "grad_norm": 0.3322605788707733, + "learning_rate": 3.268770226537217e-05, + "loss": 0.40524036407470704, + "step": 10700 + }, + { + "epoch": 34.95377128953771, + "grad_norm": 0.3203238546848297, + "learning_rate": 3.252588996763754e-05, + "loss": 0.40970794677734373, + "step": 10800 + }, + { + "epoch": 35.2757502027575, + "grad_norm": 0.303089439868927, + "learning_rate": 3.2364077669902916e-05, + "loss": 0.38891010284423827, + "step": 10900 + }, + { + "epoch": 35.60016220600162, + "grad_norm": 0.29558560252189636, + "learning_rate": 3.220226537216829e-05, + "loss": 0.3949446105957031, + "step": 11000 + }, + { + "epoch": 35.92457420924574, + "grad_norm": 0.3112625479698181, + "learning_rate": 3.2040453074433655e-05, + "loss": 0.39758953094482424, + "step": 11100 + }, + { + "epoch": 36.24655312246553, + "grad_norm": 0.3039425313472748, + "learning_rate": 3.187864077669903e-05, + "loss": 0.38358245849609374, + "step": 11200 + }, + { + "epoch": 36.57096512570965, + "grad_norm": 0.3353067934513092, + "learning_rate": 3.171682847896441e-05, + "loss": 0.3797079849243164, + "step": 11300 + }, + { + "epoch": 36.89537712895377, + "grad_norm": 0.367567241191864, + "learning_rate": 3.1555016181229776e-05, + "loss": 0.38862274169921873, + "step": 11400 + }, + { + "epoch": 37.21735604217356, + "grad_norm": 0.32198429107666016, + "learning_rate": 3.1393203883495145e-05, + "loss": 0.37104736328125, + "step": 11500 + }, + { + "epoch": 37.54176804541768, + "grad_norm": 0.29541313648223877, + "learning_rate": 3.1231391585760514e-05, + "loss": 0.37103946685791017, + "step": 11600 + }, + { + "epoch": 37.8661800486618, + "grad_norm": 0.34138020873069763, + "learning_rate": 3.106957928802589e-05, + "loss": 0.37340602874755857, + "step": 11700 + }, + { + "epoch": 38.18815896188159, + "grad_norm": 0.301660418510437, + "learning_rate": 3.0907766990291267e-05, + "loss": 0.36555946350097657, + "step": 11800 + }, + { + "epoch": 38.51257096512571, + "grad_norm": 0.2793280780315399, + "learning_rate": 3.0745954692556636e-05, + "loss": 0.35706504821777346, + "step": 11900 + }, + { + "epoch": 38.83698296836983, + "grad_norm": 0.2934885621070862, + "learning_rate": 3.0584142394822005e-05, + "loss": 0.3642056655883789, + "step": 12000 + }, + { + "epoch": 39.15896188158962, + "grad_norm": 0.3178177773952484, + "learning_rate": 3.042233009708738e-05, + "loss": 0.3558914566040039, + "step": 12100 + }, + { + "epoch": 39.48337388483374, + "grad_norm": 0.32718706130981445, + "learning_rate": 3.026051779935275e-05, + "loss": 0.34923362731933594, + "step": 12200 + }, + { + "epoch": 39.80778588807786, + "grad_norm": 0.32444027066230774, + "learning_rate": 3.0098705501618123e-05, + "loss": 0.3525634002685547, + "step": 12300 + }, + { + "epoch": 40.12976480129765, + "grad_norm": 0.3068920075893402, + "learning_rate": 2.99368932038835e-05, + "loss": 0.3468068695068359, + "step": 12400 + }, + { + "epoch": 40.45417680454177, + "grad_norm": 0.31230300664901733, + "learning_rate": 2.977508090614887e-05, + "loss": 0.3374324798583984, + "step": 12500 + }, + { + "epoch": 40.77858880778589, + "grad_norm": 0.35733962059020996, + "learning_rate": 2.961326860841424e-05, + "loss": 0.3439715576171875, + "step": 12600 + }, + { + "epoch": 41.100567721005675, + "grad_norm": 0.3116827607154846, + "learning_rate": 2.9451456310679614e-05, + "loss": 0.3388735961914062, + "step": 12700 + }, + { + "epoch": 41.424979724249795, + "grad_norm": 0.3260541558265686, + "learning_rate": 2.9289644012944983e-05, + "loss": 0.3278466796875, + "step": 12800 + }, + { + "epoch": 41.749391727493915, + "grad_norm": 0.3492940068244934, + "learning_rate": 2.912783171521036e-05, + "loss": 0.33501758575439455, + "step": 12900 + }, + { + "epoch": 42.07137064071371, + "grad_norm": 0.33961179852485657, + "learning_rate": 2.896601941747573e-05, + "loss": 0.332823600769043, + "step": 13000 + }, + { + "epoch": 42.39578264395783, + "grad_norm": 0.3111296594142914, + "learning_rate": 2.88042071197411e-05, + "loss": 0.31814098358154297, + "step": 13100 + }, + { + "epoch": 42.72019464720195, + "grad_norm": 0.33305123448371887, + "learning_rate": 2.8642394822006473e-05, + "loss": 0.3256596374511719, + "step": 13200 + }, + { + "epoch": 43.04217356042174, + "grad_norm": 0.28727594017982483, + "learning_rate": 2.848058252427185e-05, + "loss": 0.32629146575927737, + "step": 13300 + }, + { + "epoch": 43.36658556366586, + "grad_norm": 0.3200686573982239, + "learning_rate": 2.8318770226537215e-05, + "loss": 0.310048885345459, + "step": 13400 + }, + { + "epoch": 43.69099756690998, + "grad_norm": 0.3261258602142334, + "learning_rate": 2.815695792880259e-05, + "loss": 0.3169711685180664, + "step": 13500 + }, + { + "epoch": 44.012976480129765, + "grad_norm": 0.32062989473342896, + "learning_rate": 2.7995145631067964e-05, + "loss": 0.31799676895141604, + "step": 13600 + }, + { + "epoch": 44.337388483373886, + "grad_norm": 0.3417779803276062, + "learning_rate": 2.7833333333333333e-05, + "loss": 0.3045396614074707, + "step": 13700 + }, + { + "epoch": 44.661800486618006, + "grad_norm": 0.32301145792007446, + "learning_rate": 2.7671521035598706e-05, + "loss": 0.3061079978942871, + "step": 13800 + }, + { + "epoch": 44.986212489862126, + "grad_norm": 0.3934004008769989, + "learning_rate": 2.7509708737864082e-05, + "loss": 0.31222929000854494, + "step": 13900 + }, + { + "epoch": 45.30819140308191, + "grad_norm": 0.33090853691101074, + "learning_rate": 2.734789644012945e-05, + "loss": 0.29367765426635745, + "step": 14000 + }, + { + "epoch": 45.632603406326034, + "grad_norm": 0.3316773474216461, + "learning_rate": 2.7186084142394824e-05, + "loss": 0.30018712997436525, + "step": 14100 + }, + { + "epoch": 45.957015409570154, + "grad_norm": 0.36180180311203003, + "learning_rate": 2.7024271844660193e-05, + "loss": 0.3031520080566406, + "step": 14200 + }, + { + "epoch": 46.27899432278994, + "grad_norm": 0.32503196597099304, + "learning_rate": 2.6862459546925566e-05, + "loss": 0.29114202499389646, + "step": 14300 + }, + { + "epoch": 46.60340632603406, + "grad_norm": 0.36477360129356384, + "learning_rate": 2.6700647249190942e-05, + "loss": 0.29186737060546875, + "step": 14400 + }, + { + "epoch": 46.92781832927818, + "grad_norm": 0.3492746949195862, + "learning_rate": 2.6538834951456308e-05, + "loss": 0.296141300201416, + "step": 14500 + }, + { + "epoch": 47.24979724249797, + "grad_norm": 0.32664960622787476, + "learning_rate": 2.6378640776699032e-05, + "loss": 0.2826018142700195, + "step": 14600 + }, + { + "epoch": 47.57420924574209, + "grad_norm": 0.3388548493385315, + "learning_rate": 2.62168284789644e-05, + "loss": 0.28671709060668943, + "step": 14700 + }, + { + "epoch": 47.89862124898621, + "grad_norm": 0.38633057475090027, + "learning_rate": 2.6055016181229774e-05, + "loss": 0.2910732078552246, + "step": 14800 + }, + { + "epoch": 48.220600162206004, + "grad_norm": 0.31736406683921814, + "learning_rate": 2.5893203883495147e-05, + "loss": 0.2784827995300293, + "step": 14900 + }, + { + "epoch": 48.545012165450125, + "grad_norm": 0.37021875381469727, + "learning_rate": 2.5731391585760516e-05, + "loss": 0.2798298263549805, + "step": 15000 + }, + { + "epoch": 48.869424168694245, + "grad_norm": 0.34544867277145386, + "learning_rate": 2.5569579288025892e-05, + "loss": 0.2821967697143555, + "step": 15100 + }, + { + "epoch": 49.19140308191403, + "grad_norm": 0.31732165813446045, + "learning_rate": 2.5407766990291265e-05, + "loss": 0.27426704406738284, + "step": 15200 + }, + { + "epoch": 49.51581508515815, + "grad_norm": 0.3201292157173157, + "learning_rate": 2.5245954692556634e-05, + "loss": 0.27101806640625, + "step": 15300 + }, + { + "epoch": 49.84022708840227, + "grad_norm": 0.33511412143707275, + "learning_rate": 2.5084142394822007e-05, + "loss": 0.27499908447265625, + "step": 15400 + }, + { + "epoch": 50.16220600162206, + "grad_norm": 0.347622275352478, + "learning_rate": 2.492233009708738e-05, + "loss": 0.26981922149658205, + "step": 15500 + }, + { + "epoch": 50.48661800486618, + "grad_norm": 0.3041851222515106, + "learning_rate": 2.4760517799352752e-05, + "loss": 0.2654261589050293, + "step": 15600 + }, + { + "epoch": 50.8110300081103, + "grad_norm": 0.3489990830421448, + "learning_rate": 2.4598705501618125e-05, + "loss": 0.2702595329284668, + "step": 15700 + }, + { + "epoch": 51.13300892133009, + "grad_norm": 0.30876776576042175, + "learning_rate": 2.4436893203883494e-05, + "loss": 0.2657257843017578, + "step": 15800 + }, + { + "epoch": 51.45742092457421, + "grad_norm": 0.34536364674568176, + "learning_rate": 2.4275080906148867e-05, + "loss": 0.261352596282959, + "step": 15900 + }, + { + "epoch": 51.78183292781833, + "grad_norm": 0.3297542333602905, + "learning_rate": 2.4113268608414243e-05, + "loss": 0.26374523162841795, + "step": 16000 + }, + { + "epoch": 52.103811841038116, + "grad_norm": 0.3442004323005676, + "learning_rate": 2.3951456310679612e-05, + "loss": 0.2606217002868652, + "step": 16100 + }, + { + "epoch": 52.428223844282236, + "grad_norm": 0.32110315561294556, + "learning_rate": 2.3789644012944985e-05, + "loss": 0.25471590042114256, + "step": 16200 + }, + { + "epoch": 52.752635847526356, + "grad_norm": 0.35750967264175415, + "learning_rate": 2.3627831715210357e-05, + "loss": 0.25818721771240233, + "step": 16300 + }, + { + "epoch": 53.07461476074615, + "grad_norm": 0.3167541027069092, + "learning_rate": 2.346601941747573e-05, + "loss": 0.25791025161743164, + "step": 16400 + }, + { + "epoch": 53.39902676399027, + "grad_norm": 0.3614417314529419, + "learning_rate": 2.33042071197411e-05, + "loss": 0.2503541374206543, + "step": 16500 + }, + { + "epoch": 53.723438767234384, + "grad_norm": 0.3383695185184479, + "learning_rate": 2.3142394822006475e-05, + "loss": 0.25205833435058594, + "step": 16600 + }, + { + "epoch": 54.04541768045418, + "grad_norm": 0.3129797577857971, + "learning_rate": 2.298220064724919e-05, + "loss": 0.2553220558166504, + "step": 16700 + }, + { + "epoch": 54.3698296836983, + "grad_norm": 0.32768893241882324, + "learning_rate": 2.2820388349514566e-05, + "loss": 0.2452069664001465, + "step": 16800 + }, + { + "epoch": 54.69424168694242, + "grad_norm": 0.34217071533203125, + "learning_rate": 2.2658576051779935e-05, + "loss": 0.2495290756225586, + "step": 16900 + }, + { + "epoch": 55.01622060016221, + "grad_norm": 0.3423132002353668, + "learning_rate": 2.2496763754045308e-05, + "loss": 0.25019683837890627, + "step": 17000 + }, + { + "epoch": 55.34063260340633, + "grad_norm": 0.34714990854263306, + "learning_rate": 2.233495145631068e-05, + "loss": 0.24028772354125977, + "step": 17100 + }, + { + "epoch": 55.66504460665045, + "grad_norm": 0.32141968607902527, + "learning_rate": 2.2173139158576053e-05, + "loss": 0.2443995475769043, + "step": 17200 + }, + { + "epoch": 55.98945660989457, + "grad_norm": 0.3385929763317108, + "learning_rate": 2.2011326860841426e-05, + "loss": 0.24807867050170898, + "step": 17300 + }, + { + "epoch": 56.311435523114355, + "grad_norm": 0.3463747203350067, + "learning_rate": 2.1849514563106795e-05, + "loss": 0.23618980407714843, + "step": 17400 + }, + { + "epoch": 56.635847526358475, + "grad_norm": 0.3065926730632782, + "learning_rate": 2.168770226537217e-05, + "loss": 0.23906055450439453, + "step": 17500 + }, + { + "epoch": 56.960259529602595, + "grad_norm": 0.3168463408946991, + "learning_rate": 2.152588996763754e-05, + "loss": 0.24397821426391603, + "step": 17600 + }, + { + "epoch": 57.28223844282238, + "grad_norm": 0.3540167510509491, + "learning_rate": 2.1364077669902913e-05, + "loss": 0.2341847038269043, + "step": 17700 + }, + { + "epoch": 57.6066504460665, + "grad_norm": 0.3474962115287781, + "learning_rate": 2.1202265372168286e-05, + "loss": 0.23654184341430665, + "step": 17800 + }, + { + "epoch": 57.93106244931062, + "grad_norm": 0.3104344606399536, + "learning_rate": 2.1040453074433658e-05, + "loss": 0.238500919342041, + "step": 17900 + }, + { + "epoch": 58.25304136253041, + "grad_norm": 0.2928438186645508, + "learning_rate": 2.087864077669903e-05, + "loss": 0.2317611312866211, + "step": 18000 + }, + { + "epoch": 58.57745336577453, + "grad_norm": 0.34206250309944153, + "learning_rate": 2.0716828478964404e-05, + "loss": 0.23266231536865234, + "step": 18100 + }, + { + "epoch": 58.90186536901865, + "grad_norm": 0.3680970370769501, + "learning_rate": 2.0555016181229776e-05, + "loss": 0.23497753143310546, + "step": 18200 + }, + { + "epoch": 59.223844282238446, + "grad_norm": 0.3037141263484955, + "learning_rate": 2.0393203883495145e-05, + "loss": 0.2270449447631836, + "step": 18300 + }, + { + "epoch": 59.548256285482566, + "grad_norm": 0.3106273114681244, + "learning_rate": 2.0231391585760518e-05, + "loss": 0.22707063674926758, + "step": 18400 + }, + { + "epoch": 59.872668288726686, + "grad_norm": 0.36219528317451477, + "learning_rate": 2.006957928802589e-05, + "loss": 0.2324913787841797, + "step": 18500 + }, + { + "epoch": 60.194647201946474, + "grad_norm": 0.3081775903701782, + "learning_rate": 1.9907766990291263e-05, + "loss": 0.22577075958251952, + "step": 18600 + }, + { + "epoch": 60.519059205190594, + "grad_norm": 0.3376457989215851, + "learning_rate": 1.9745954692556633e-05, + "loss": 0.2236073112487793, + "step": 18700 + }, + { + "epoch": 60.843471208434714, + "grad_norm": 0.3010921776294708, + "learning_rate": 1.958414239482201e-05, + "loss": 0.2290345001220703, + "step": 18800 + }, + { + "epoch": 61.1654501216545, + "grad_norm": 0.3345211148262024, + "learning_rate": 1.9422330097087378e-05, + "loss": 0.22328811645507812, + "step": 18900 + }, + { + "epoch": 61.48986212489862, + "grad_norm": 0.35830914974212646, + "learning_rate": 1.926051779935275e-05, + "loss": 0.22145767211914064, + "step": 19000 + }, + { + "epoch": 61.81427412814274, + "grad_norm": 0.3177037835121155, + "learning_rate": 1.9098705501618123e-05, + "loss": 0.223042049407959, + "step": 19100 + }, + { + "epoch": 62.13625304136253, + "grad_norm": 0.2974834442138672, + "learning_rate": 1.8936893203883496e-05, + "loss": 0.221235294342041, + "step": 19200 + }, + { + "epoch": 62.46066504460665, + "grad_norm": 0.3040814995765686, + "learning_rate": 1.877508090614887e-05, + "loss": 0.21824802398681642, + "step": 19300 + }, + { + "epoch": 62.78507704785077, + "grad_norm": 0.3453911244869232, + "learning_rate": 1.861326860841424e-05, + "loss": 0.22165294647216796, + "step": 19400 + }, + { + "epoch": 63.10705596107056, + "grad_norm": 0.3323674201965332, + "learning_rate": 1.8451456310679614e-05, + "loss": 0.21942996978759766, + "step": 19500 + }, + { + "epoch": 63.43146796431468, + "grad_norm": 0.2868025302886963, + "learning_rate": 1.8289644012944983e-05, + "loss": 0.2159541893005371, + "step": 19600 + }, + { + "epoch": 63.7558799675588, + "grad_norm": 0.2985902428627014, + "learning_rate": 1.8127831715210356e-05, + "loss": 0.21843338012695312, + "step": 19700 + }, + { + "epoch": 64.07785888077859, + "grad_norm": 0.29877224564552307, + "learning_rate": 1.796601941747573e-05, + "loss": 0.21846704483032225, + "step": 19800 + }, + { + "epoch": 64.40227088402271, + "grad_norm": 0.31725695729255676, + "learning_rate": 1.78042071197411e-05, + "loss": 0.2123063850402832, + "step": 19900 + }, + { + "epoch": 64.72668288726683, + "grad_norm": 0.30116891860961914, + "learning_rate": 1.7642394822006474e-05, + "loss": 0.21550237655639648, + "step": 20000 + }, + { + "epoch": 65.04866180048661, + "grad_norm": 0.33267149329185486, + "learning_rate": 1.7480582524271846e-05, + "loss": 0.2158302879333496, + "step": 20100 + }, + { + "epoch": 65.37307380373073, + "grad_norm": 0.30885910987854004, + "learning_rate": 1.731877022653722e-05, + "loss": 0.2090800666809082, + "step": 20200 + }, + { + "epoch": 65.69748580697485, + "grad_norm": 0.31430330872535706, + "learning_rate": 1.715695792880259e-05, + "loss": 0.21172605514526366, + "step": 20300 + }, + { + "epoch": 66.01946472019465, + "grad_norm": 0.2837020754814148, + "learning_rate": 1.6995145631067964e-05, + "loss": 0.21372562408447265, + "step": 20400 + }, + { + "epoch": 66.34387672343877, + "grad_norm": 0.30839094519615173, + "learning_rate": 1.6833333333333334e-05, + "loss": 0.20695215225219726, + "step": 20500 + }, + { + "epoch": 66.66828872668289, + "grad_norm": 0.31136852502822876, + "learning_rate": 1.6671521035598706e-05, + "loss": 0.20894838333129884, + "step": 20600 + }, + { + "epoch": 66.99270072992701, + "grad_norm": 0.2942120432853699, + "learning_rate": 1.650970873786408e-05, + "loss": 0.21177177429199218, + "step": 20700 + }, + { + "epoch": 67.3146796431468, + "grad_norm": 0.32769644260406494, + "learning_rate": 1.6349514563106797e-05, + "loss": 0.20521749496459962, + "step": 20800 + }, + { + "epoch": 67.63909164639091, + "grad_norm": 0.3272440731525421, + "learning_rate": 1.6187702265372166e-05, + "loss": 0.2083640480041504, + "step": 20900 + }, + { + "epoch": 67.96350364963503, + "grad_norm": 0.2725636959075928, + "learning_rate": 1.6025889967637542e-05, + "loss": 0.2089810562133789, + "step": 21000 + }, + { + "epoch": 68.28548256285482, + "grad_norm": 0.2833479046821594, + "learning_rate": 1.5864077669902915e-05, + "loss": 0.20403633117675782, + "step": 21100 + }, + { + "epoch": 68.60989456609894, + "grad_norm": 0.2848324477672577, + "learning_rate": 1.5702265372168284e-05, + "loss": 0.2053829574584961, + "step": 21200 + }, + { + "epoch": 68.93430656934306, + "grad_norm": 0.324773907661438, + "learning_rate": 1.554045307443366e-05, + "loss": 0.206777400970459, + "step": 21300 + }, + { + "epoch": 69.25628548256286, + "grad_norm": 0.2661566734313965, + "learning_rate": 1.537864077669903e-05, + "loss": 0.20142404556274415, + "step": 21400 + }, + { + "epoch": 69.58069748580698, + "grad_norm": 0.28439629077911377, + "learning_rate": 1.52168284789644e-05, + "loss": 0.20303123474121093, + "step": 21500 + }, + { + "epoch": 69.9051094890511, + "grad_norm": 0.33656612038612366, + "learning_rate": 1.5055016181229775e-05, + "loss": 0.20467769622802734, + "step": 21600 + }, + { + "epoch": 70.22708840227088, + "grad_norm": 0.32043009996414185, + "learning_rate": 1.4893203883495147e-05, + "loss": 0.20070859909057617, + "step": 21700 + }, + { + "epoch": 70.551500405515, + "grad_norm": 0.3048563599586487, + "learning_rate": 1.4731391585760518e-05, + "loss": 0.20159858703613281, + "step": 21800 + }, + { + "epoch": 70.87591240875912, + "grad_norm": 0.2664601802825928, + "learning_rate": 1.4569579288025893e-05, + "loss": 0.20171623229980468, + "step": 21900 + }, + { + "epoch": 71.19789132197891, + "grad_norm": 0.3018724322319031, + "learning_rate": 1.4407766990291264e-05, + "loss": 0.19853240966796876, + "step": 22000 + }, + { + "epoch": 71.52230332522304, + "grad_norm": 0.2770579755306244, + "learning_rate": 1.4245954692556635e-05, + "loss": 0.1985287857055664, + "step": 22100 + }, + { + "epoch": 71.84671532846716, + "grad_norm": 0.2877587080001831, + "learning_rate": 1.4084142394822005e-05, + "loss": 0.2016657066345215, + "step": 22200 + }, + { + "epoch": 72.16869424168694, + "grad_norm": 0.3253211975097656, + "learning_rate": 1.392233009708738e-05, + "loss": 0.19735158920288087, + "step": 22300 + }, + { + "epoch": 72.49310624493106, + "grad_norm": 0.2870253920555115, + "learning_rate": 1.376051779935275e-05, + "loss": 0.19713401794433594, + "step": 22400 + }, + { + "epoch": 72.81751824817518, + "grad_norm": 0.32006755471229553, + "learning_rate": 1.3598705501618122e-05, + "loss": 0.1988151741027832, + "step": 22500 + }, + { + "epoch": 73.13949716139497, + "grad_norm": 0.28510263562202454, + "learning_rate": 1.3436893203883496e-05, + "loss": 0.19770748138427735, + "step": 22600 + }, + { + "epoch": 73.46390916463909, + "grad_norm": 0.2950480878353119, + "learning_rate": 1.3275080906148869e-05, + "loss": 0.195107364654541, + "step": 22700 + }, + { + "epoch": 73.78832116788321, + "grad_norm": 0.30394643545150757, + "learning_rate": 1.311326860841424e-05, + "loss": 0.1975857925415039, + "step": 22800 + }, + { + "epoch": 74.110300081103, + "grad_norm": 0.29557764530181885, + "learning_rate": 1.295307443365696e-05, + "loss": 0.19621952056884764, + "step": 22900 + }, + { + "epoch": 74.43471208434713, + "grad_norm": 0.27801787853240967, + "learning_rate": 1.279126213592233e-05, + "loss": 0.1924858283996582, + "step": 23000 + }, + { + "epoch": 74.75912408759125, + "grad_norm": 0.32521647214889526, + "learning_rate": 1.2629449838187705e-05, + "loss": 0.19586196899414063, + "step": 23100 + }, + { + "epoch": 75.08110300081103, + "grad_norm": 0.27390602231025696, + "learning_rate": 1.2467637540453075e-05, + "loss": 0.19569822311401366, + "step": 23200 + }, + { + "epoch": 75.40551500405515, + "grad_norm": 0.27017250657081604, + "learning_rate": 1.2305825242718446e-05, + "loss": 0.1917603874206543, + "step": 23300 + }, + { + "epoch": 75.72992700729927, + "grad_norm": 0.2980138957500458, + "learning_rate": 1.2144012944983819e-05, + "loss": 0.1927776336669922, + "step": 23400 + }, + { + "epoch": 76.05190592051906, + "grad_norm": 0.3057159185409546, + "learning_rate": 1.1982200647249192e-05, + "loss": 0.19304771423339845, + "step": 23500 + }, + { + "epoch": 76.37631792376318, + "grad_norm": 0.29936423897743225, + "learning_rate": 1.1820388349514563e-05, + "loss": 0.19062232971191406, + "step": 23600 + }, + { + "epoch": 76.7007299270073, + "grad_norm": 0.3179267942905426, + "learning_rate": 1.1658576051779935e-05, + "loss": 0.19235507965087892, + "step": 23700 + }, + { + "epoch": 77.02270884022708, + "grad_norm": 0.25758758187294006, + "learning_rate": 1.1496763754045308e-05, + "loss": 0.1918639373779297, + "step": 23800 + }, + { + "epoch": 77.3471208434712, + "grad_norm": 0.2676644027233124, + "learning_rate": 1.133495145631068e-05, + "loss": 0.18774497985839844, + "step": 23900 + }, + { + "epoch": 77.67153284671532, + "grad_norm": 0.25918132066726685, + "learning_rate": 1.1173139158576053e-05, + "loss": 0.18990053176879884, + "step": 24000 + }, + { + "epoch": 77.99594484995944, + "grad_norm": 0.25803694128990173, + "learning_rate": 1.1011326860841424e-05, + "loss": 0.19139570236206055, + "step": 24100 + }, + { + "epoch": 78.31792376317924, + "grad_norm": 0.2896536588668823, + "learning_rate": 1.0849514563106797e-05, + "loss": 0.18745737075805663, + "step": 24200 + }, + { + "epoch": 78.64233576642336, + "grad_norm": 0.2941916286945343, + "learning_rate": 1.0687702265372168e-05, + "loss": 0.18780550003051757, + "step": 24300 + }, + { + "epoch": 78.96674776966748, + "grad_norm": 0.28496670722961426, + "learning_rate": 1.052588996763754e-05, + "loss": 0.19009716033935548, + "step": 24400 + }, + { + "epoch": 79.28872668288727, + "grad_norm": 0.29919925332069397, + "learning_rate": 1.0364077669902913e-05, + "loss": 0.18620597839355468, + "step": 24500 + }, + { + "epoch": 79.61313868613139, + "grad_norm": 0.285383939743042, + "learning_rate": 1.0202265372168284e-05, + "loss": 0.18723442077636718, + "step": 24600 + }, + { + "epoch": 79.93755068937551, + "grad_norm": 0.2821769416332245, + "learning_rate": 1.0040453074433657e-05, + "loss": 0.1882436180114746, + "step": 24700 + }, + { + "epoch": 80.2595296025953, + "grad_norm": 0.291644424200058, + "learning_rate": 9.87864077669903e-06, + "loss": 0.18627639770507812, + "step": 24800 + }, + { + "epoch": 80.58394160583941, + "grad_norm": 0.28841665387153625, + "learning_rate": 9.716828478964402e-06, + "loss": 0.1859906768798828, + "step": 24900 + }, + { + "epoch": 80.90835360908353, + "grad_norm": 0.2513130307197571, + "learning_rate": 9.555016181229775e-06, + "loss": 0.18743871688842773, + "step": 25000 + }, + { + "epoch": 81.23033252230333, + "grad_norm": 0.28746384382247925, + "learning_rate": 9.394822006472493e-06, + "loss": 0.18453241348266602, + "step": 25100 + }, + { + "epoch": 81.55474452554745, + "grad_norm": 0.29126232862472534, + "learning_rate": 9.233009708737865e-06, + "loss": 0.1854015350341797, + "step": 25200 + }, + { + "epoch": 81.87915652879157, + "grad_norm": 0.2970152795314789, + "learning_rate": 9.071197411003236e-06, + "loss": 0.18607795715332032, + "step": 25300 + }, + { + "epoch": 82.20113544201135, + "grad_norm": 0.30898556113243103, + "learning_rate": 8.909385113268609e-06, + "loss": 0.18391321182250978, + "step": 25400 + }, + { + "epoch": 82.52554744525547, + "grad_norm": 0.2530721426010132, + "learning_rate": 8.74757281553398e-06, + "loss": 0.1833015823364258, + "step": 25500 + }, + { + "epoch": 82.84995944849959, + "grad_norm": 0.26257285475730896, + "learning_rate": 8.585760517799352e-06, + "loss": 0.18504741668701172, + "step": 25600 + }, + { + "epoch": 83.17193836171938, + "grad_norm": 0.29258695244789124, + "learning_rate": 8.423948220064725e-06, + "loss": 0.18265727996826173, + "step": 25700 + }, + { + "epoch": 83.4963503649635, + "grad_norm": 0.28137892484664917, + "learning_rate": 8.262135922330098e-06, + "loss": 0.1820280647277832, + "step": 25800 + }, + { + "epoch": 83.82076236820762, + "grad_norm": 0.253631055355072, + "learning_rate": 8.10032362459547e-06, + "loss": 0.18374771118164063, + "step": 25900 + }, + { + "epoch": 84.14274128142742, + "grad_norm": 0.2612302005290985, + "learning_rate": 7.938511326860843e-06, + "loss": 0.1822812843322754, + "step": 26000 + }, + { + "epoch": 84.46715328467154, + "grad_norm": 0.2968967854976654, + "learning_rate": 7.776699029126214e-06, + "loss": 0.1804751205444336, + "step": 26100 + }, + { + "epoch": 84.79156528791566, + "grad_norm": 0.28858786821365356, + "learning_rate": 7.614886731391587e-06, + "loss": 0.1823977279663086, + "step": 26200 + }, + { + "epoch": 85.11354420113544, + "grad_norm": 0.24769216775894165, + "learning_rate": 7.453074433656958e-06, + "loss": 0.18158819198608397, + "step": 26300 + }, + { + "epoch": 85.43795620437956, + "grad_norm": 0.27769848704338074, + "learning_rate": 7.29126213592233e-06, + "loss": 0.18056314468383788, + "step": 26400 + }, + { + "epoch": 85.76236820762368, + "grad_norm": 0.30476441979408264, + "learning_rate": 7.129449838187703e-06, + "loss": 0.18116596221923828, + "step": 26500 + }, + { + "epoch": 86.08434712084347, + "grad_norm": 0.23022858798503876, + "learning_rate": 6.967637540453075e-06, + "loss": 0.18061212539672852, + "step": 26600 + }, + { + "epoch": 86.4087591240876, + "grad_norm": 0.28072357177734375, + "learning_rate": 6.805825242718447e-06, + "loss": 0.17919044494628905, + "step": 26700 + }, + { + "epoch": 86.73317112733172, + "grad_norm": 0.28679656982421875, + "learning_rate": 6.644012944983818e-06, + "loss": 0.17989681243896485, + "step": 26800 + }, + { + "epoch": 87.0551500405515, + "grad_norm": 0.23604606091976166, + "learning_rate": 6.482200647249191e-06, + "loss": 0.1802787208557129, + "step": 26900 + }, + { + "epoch": 87.37956204379562, + "grad_norm": 0.2767940163612366, + "learning_rate": 6.320388349514564e-06, + "loss": 0.17775949478149414, + "step": 27000 + }, + { + "epoch": 87.70397404703974, + "grad_norm": 0.2633722126483917, + "learning_rate": 6.1585760517799355e-06, + "loss": 0.17942682266235352, + "step": 27100 + }, + { + "epoch": 88.02595296025953, + "grad_norm": 0.254029780626297, + "learning_rate": 5.996763754045308e-06, + "loss": 0.17986074447631836, + "step": 27200 + }, + { + "epoch": 88.35036496350365, + "grad_norm": 0.25648459792137146, + "learning_rate": 5.83495145631068e-06, + "loss": 0.17738138198852538, + "step": 27300 + }, + { + "epoch": 88.67477696674777, + "grad_norm": 0.2450580894947052, + "learning_rate": 5.673139158576052e-06, + "loss": 0.17837905883789062, + "step": 27400 + }, + { + "epoch": 88.99918896999189, + "grad_norm": 0.2686944305896759, + "learning_rate": 5.511326860841424e-06, + "loss": 0.17965082168579102, + "step": 27500 + }, + { + "epoch": 89.32116788321167, + "grad_norm": 0.26215696334838867, + "learning_rate": 5.351132686084142e-06, + "loss": 0.17689130783081056, + "step": 27600 + }, + { + "epoch": 89.64557988645579, + "grad_norm": 0.2659305930137634, + "learning_rate": 5.189320388349515e-06, + "loss": 0.1780232620239258, + "step": 27700 + }, + { + "epoch": 89.96999188969991, + "grad_norm": 0.2572084665298462, + "learning_rate": 5.027508090614887e-06, + "loss": 0.17742925643920898, + "step": 27800 + }, + { + "epoch": 90.2919708029197, + "grad_norm": 0.2678115963935852, + "learning_rate": 4.865695792880259e-06, + "loss": 0.1759064292907715, + "step": 27900 + }, + { + "epoch": 90.61638280616383, + "grad_norm": 0.2606296241283417, + "learning_rate": 4.703883495145631e-06, + "loss": 0.176632080078125, + "step": 28000 + }, + { + "epoch": 90.94079480940795, + "grad_norm": 0.27705252170562744, + "learning_rate": 4.542071197411003e-06, + "loss": 0.17765697479248047, + "step": 28100 + }, + { + "epoch": 91.26277372262774, + "grad_norm": 0.2625502049922943, + "learning_rate": 4.380258899676376e-06, + "loss": 0.1756792449951172, + "step": 28200 + }, + { + "epoch": 91.58718572587186, + "grad_norm": 0.24927927553653717, + "learning_rate": 4.218446601941748e-06, + "loss": 0.17554109573364257, + "step": 28300 + }, + { + "epoch": 91.91159772911598, + "grad_norm": 0.240628182888031, + "learning_rate": 4.05663430420712e-06, + "loss": 0.17559316635131836, + "step": 28400 + }, + { + "epoch": 92.23357664233576, + "grad_norm": 0.2785760462284088, + "learning_rate": 3.894822006472492e-06, + "loss": 0.17503616333007813, + "step": 28500 + }, + { + "epoch": 92.55798864557988, + "grad_norm": 0.25900083780288696, + "learning_rate": 3.733009708737864e-06, + "loss": 0.17507522583007812, + "step": 28600 + }, + { + "epoch": 92.882400648824, + "grad_norm": 0.276037335395813, + "learning_rate": 3.5711974110032368e-06, + "loss": 0.17590507507324218, + "step": 28700 + }, + { + "epoch": 93.2043795620438, + "grad_norm": 0.2555212080478668, + "learning_rate": 3.4093851132686086e-06, + "loss": 0.17514604568481446, + "step": 28800 + }, + { + "epoch": 93.52879156528792, + "grad_norm": 0.2588745653629303, + "learning_rate": 3.247572815533981e-06, + "loss": 0.174718017578125, + "step": 28900 + }, + { + "epoch": 93.85320356853204, + "grad_norm": 0.2660391330718994, + "learning_rate": 3.0857605177993526e-06, + "loss": 0.17506734848022462, + "step": 29000 + }, + { + "epoch": 94.17518248175182, + "grad_norm": 0.2677949368953705, + "learning_rate": 2.9239482200647253e-06, + "loss": 0.17430608749389648, + "step": 29100 + }, + { + "epoch": 94.49959448499594, + "grad_norm": 0.28909972310066223, + "learning_rate": 2.762135922330097e-06, + "loss": 0.17481451034545897, + "step": 29200 + }, + { + "epoch": 94.82400648824006, + "grad_norm": 0.26000115275382996, + "learning_rate": 2.6003236245954693e-06, + "loss": 0.17436113357543945, + "step": 29300 + }, + { + "epoch": 95.14598540145985, + "grad_norm": 0.2968977987766266, + "learning_rate": 2.4385113268608415e-06, + "loss": 0.17399301528930664, + "step": 29400 + }, + { + "epoch": 95.47039740470397, + "grad_norm": 0.24084195494651794, + "learning_rate": 2.2766990291262138e-06, + "loss": 0.1732662582397461, + "step": 29500 + }, + { + "epoch": 95.7948094079481, + "grad_norm": 0.24390101432800293, + "learning_rate": 2.114886731391586e-06, + "loss": 0.17355813980102539, + "step": 29600 + }, + { + "epoch": 96.11678832116789, + "grad_norm": 0.24950821697711945, + "learning_rate": 1.9546925566343042e-06, + "loss": 0.17353734970092774, + "step": 29700 + }, + { + "epoch": 96.44120032441201, + "grad_norm": 0.2526560425758362, + "learning_rate": 1.7928802588996767e-06, + "loss": 0.17330703735351563, + "step": 29800 + }, + { + "epoch": 96.76561232765613, + "grad_norm": 0.2830760180950165, + "learning_rate": 1.6310679611650487e-06, + "loss": 0.1727421760559082, + "step": 29900 + }, + { + "epoch": 97.08759124087591, + "grad_norm": 0.21633441746234894, + "learning_rate": 1.4692556634304207e-06, + "loss": 0.17346202850341796, + "step": 30000 + }, + { + "epoch": 97.41200324412003, + "grad_norm": 0.23232562839984894, + "learning_rate": 1.307443365695793e-06, + "loss": 0.17300867080688476, + "step": 30100 + }, + { + "epoch": 97.73641524736415, + "grad_norm": 0.22741949558258057, + "learning_rate": 1.1456310679611652e-06, + "loss": 0.1723964500427246, + "step": 30200 + }, + { + "epoch": 98.05839416058394, + "grad_norm": 0.21481141448020935, + "learning_rate": 9.838187702265374e-07, + "loss": 0.17242773056030272, + "step": 30300 + }, + { + "epoch": 98.38280616382806, + "grad_norm": 0.26986297965049744, + "learning_rate": 8.220064724919095e-07, + "loss": 0.17295772552490235, + "step": 30400 + }, + { + "epoch": 98.70721816707218, + "grad_norm": 0.23824343085289001, + "learning_rate": 6.601941747572815e-07, + "loss": 0.1724873352050781, + "step": 30500 + }, + { + "epoch": 99.02919708029196, + "grad_norm": 0.28364071249961853, + "learning_rate": 4.983818770226538e-07, + "loss": 0.17249490737915038, + "step": 30600 + }, + { + "epoch": 99.35360908353609, + "grad_norm": 0.2162533402442932, + "learning_rate": 3.3656957928802594e-07, + "loss": 0.1711699867248535, + "step": 30700 + }, + { + "epoch": 99.6780210867802, + "grad_norm": 0.25766995549201965, + "learning_rate": 1.7475728155339807e-07, + "loss": 0.1732579231262207, + "step": 30800 + }, + { + "epoch": 100.0, + "grad_norm": 0.4984567165374756, + "learning_rate": 1.2944983818770226e-08, + "loss": 0.1720350456237793, + "step": 30900 + } + ], + "logging_steps": 100, + "max_steps": 30900, + "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": 1.7619158237184e+16, + "train_batch_size": 8, + "trial_name": null, + "trial_params": null +} diff --git a/timecost/m6/realtabformer/rtf-m6-20260429_070344/rtf_checkpoints/checkpoint-30900/training_args.bin b/timecost/m6/realtabformer/rtf-m6-20260429_070344/rtf_checkpoints/checkpoint-30900/training_args.bin new file mode 100644 index 0000000000000000000000000000000000000000..34d68dc0e0fe1c1f12a2e581dd1b166aa7178a9e --- /dev/null +++ b/timecost/m6/realtabformer/rtf-m6-20260429_070344/rtf_checkpoints/checkpoint-30900/training_args.bin @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:9e2cd88337d1d846c6918d2b3b63fa3e5c93f12fefc082497590da854a564607 +size 5201 diff --git a/timecost/m6/realtabformer/rtf-m6-20260429_070344/runtime_result.json b/timecost/m6/realtabformer/rtf-m6-20260429_070344/runtime_result.json new file mode 100644 index 0000000000000000000000000000000000000000..3743b5c758e8dd5e82f636d8a79e928d46735ac2 --- /dev/null +++ b/timecost/m6/realtabformer/rtf-m6-20260429_070344/runtime_result.json @@ -0,0 +1,15 @@ +{ + "dataset_id": "m6", + "model": "realtabformer", + "run_id": "rtf-m6-20260429_070344", + "public_gate_status": "pass", + "adapter_ready_status": "pass", + "train_status": "success", + "generate_status": "success", + "reason_code": null, + "reason_detail": null, + "artifacts": { + "synthetic_csv": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/m6/realtabformer/rtf-m6-20260429_070344/rtf-m6-9864-20260429_080310.csv", + "model_path": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/m6/realtabformer/rtf-m6-20260429_070344/models_100epochs" + } +} \ No newline at end of file diff --git a/timecost/m6/realtabformer/rtf-m6-20260429_070344/staged/public/staged_features.json b/timecost/m6/realtabformer/rtf-m6-20260429_070344/staged/public/staged_features.json new file mode 100644 index 0000000000000000000000000000000000000000..49b25bd1347f910a2b95ef0c137d1a64bf69e0cb --- /dev/null +++ b/timecost/m6/realtabformer/rtf-m6-20260429_070344/staged/public/staged_features.json @@ -0,0 +1,92 @@ +[ + { + "feature_name": "Administrative", + "data_type": "continuous", + "is_target": false + }, + { + "feature_name": "Administrative_Duration", + "data_type": "continuous", + "is_target": false + }, + { + "feature_name": "Informational", + "data_type": "continuous", + "is_target": false + }, + { + "feature_name": "Informational_Duration", + "data_type": "continuous", + "is_target": false + }, + { + "feature_name": "ProductRelated", + "data_type": "continuous", + "is_target": false + }, + { + "feature_name": "ProductRelated_Duration", + "data_type": "continuous", + "is_target": false + }, + { + "feature_name": "BounceRates", + "data_type": "continuous", + "is_target": false + }, + { + "feature_name": "ExitRates", + "data_type": "continuous", + "is_target": false + }, + { + "feature_name": "PageValues", + "data_type": "continuous", + "is_target": false + }, + { + "feature_name": "SpecialDay", + "data_type": "continuous", + "is_target": false + }, + { + "feature_name": "Month", + "data_type": "categorical", + "is_target": false + }, + { + "feature_name": "OperatingSystems", + "data_type": "continuous", + "is_target": false + }, + { + "feature_name": "Browser", + "data_type": "continuous", + "is_target": false + }, + { + "feature_name": "Region", + "data_type": "continuous", + "is_target": false + }, + { + "feature_name": "TrafficType", + "data_type": "continuous", + "is_target": false + }, + { + "feature_name": "VisitorType", + "data_type": "categorical", + "is_target": true + }, + { + "feature_name": "Weekend", + "data_type": "binary", + "is_target": false + }, + { + "feature_name": "Revenue", + "data_type": "binary", + "is_target": false + } +] \ No newline at end of file diff --git a/timecost/m6/realtabformer/rtf-m6-20260429_070344/staged/public/test.csv b/timecost/m6/realtabformer/rtf-m6-20260429_070344/staged/public/test.csv new file mode 100644 index 0000000000000000000000000000000000000000..3944bd554327e948b8bda8c383bd581f3fc26ec6 --- /dev/null +++ b/timecost/m6/realtabformer/rtf-m6-20260429_070344/staged/public/test.csv @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:d16d0389cb0fe4b23bab344dc10070de6678357a9452f9f620d0eeba66a6b12d +size 116376 diff --git a/timecost/m6/realtabformer/rtf-m6-20260429_070344/staged/public/train.csv b/timecost/m6/realtabformer/rtf-m6-20260429_070344/staged/public/train.csv new file mode 100644 index 0000000000000000000000000000000000000000..ae3a266ed7bebf02bc27c50b9dea6e8c5fe71c10 --- /dev/null +++ b/timecost/m6/realtabformer/rtf-m6-20260429_070344/staged/public/train.csv @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:e1f0338c367408dc21d5a4ec9cdc5d3fe8188916db6085f3fd326304a55551e1 +size 924849 diff --git a/timecost/m6/realtabformer/rtf-m6-20260429_070344/staged/public/val.csv b/timecost/m6/realtabformer/rtf-m6-20260429_070344/staged/public/val.csv new file mode 100644 index 0000000000000000000000000000000000000000..60be57a3609a30d56d27e37e49a3aedfa6294db5 --- /dev/null +++ b/timecost/m6/realtabformer/rtf-m6-20260429_070344/staged/public/val.csv @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:cb9169f3c7213420491d9b709ee1cc650aeaed732fa77dcbd6ffe3583366b2d4 +size 116198 diff --git a/timecost/m6/realtabformer/rtf-m6-20260429_070344/staged/realtabformer/adapter_report.json b/timecost/m6/realtabformer/rtf-m6-20260429_070344/staged/realtabformer/adapter_report.json new file mode 100644 index 0000000000000000000000000000000000000000..0b44868491b019effcfbbcce981feb5b44815192 --- /dev/null +++ b/timecost/m6/realtabformer/rtf-m6-20260429_070344/staged/realtabformer/adapter_report.json @@ -0,0 +1,7 @@ +{ + "adapter_ready_status": "pass", + "adapter_fail_reason_code": null, + "adapter_fail_detail": null, + "adapter_transforms_applied": [], + "model_input_manifest": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/m6/realtabformer/rtf-m6-20260429_070344/staged/realtabformer/model_input_manifest.json" +} \ No newline at end of file diff --git a/timecost/m6/realtabformer/rtf-m6-20260429_070344/staged/realtabformer/adapter_transforms_applied.json b/timecost/m6/realtabformer/rtf-m6-20260429_070344/staged/realtabformer/adapter_transforms_applied.json new file mode 100644 index 0000000000000000000000000000000000000000..0637a088a01e8ddab3bf3fa98dbe804cbde1a0dc --- /dev/null +++ b/timecost/m6/realtabformer/rtf-m6-20260429_070344/staged/realtabformer/adapter_transforms_applied.json @@ -0,0 +1 @@ +[] \ No newline at end of file diff --git a/timecost/m6/realtabformer/rtf-m6-20260429_070344/staged/realtabformer/model_input_manifest.json b/timecost/m6/realtabformer/rtf-m6-20260429_070344/staged/realtabformer/model_input_manifest.json new file mode 100644 index 0000000000000000000000000000000000000000..2f7e72effffc8694b850b636d97e87458a3bdee9 --- /dev/null +++ b/timecost/m6/realtabformer/rtf-m6-20260429_070344/staged/realtabformer/model_input_manifest.json @@ -0,0 +1,384 @@ +{ + "dataset_id": "m6", + "model": "realtabformer", + "target_column": "VisitorType", + "task_type": "classification", + "column_schema": [ + { + "name": "Administrative", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 26, + "unique_ratio": 0.002636, + "example_values": [ + "0", + "3", + "2", + "6", + "1" + ] + } + }, + { + "name": "Administrative_Duration", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 2789, + "unique_ratio": 0.282745, + "example_values": [ + "0", + "45.8", + "77.7", + "52", + "46.33333333" + ] + } + }, + { + "name": "Informational", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 17, + "unique_ratio": 0.001723, + "example_values": [ + "0", + "1", + "3", + "5", + "4" + ] + } + }, + { + "name": "Informational_Duration", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 1074, + "unique_ratio": 0.108881, + "example_values": [ + "0", + "2", + "24", + "86.75", + "62.5" + ] + } + }, + { + "name": "ProductRelated", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 286, + "unique_ratio": 0.028994, + "example_values": [ + "13", + "8", + "63", + "15", + "3" + ] + } + }, + { + "name": "ProductRelated_Duration", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 7769, + "unique_ratio": 0.787612, + "example_values": [ + "549.2", + "64", + "2435.697531", + "267.7333333", + "57.4" + ] + } + }, + { + "name": "BounceRates", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 1574, + "unique_ratio": 0.15957, + "example_values": [ + "0.019230769", + "0", + "0.00952381", + "0.022857143", + "0.004166667" + ] + } + }, + { + "name": "ExitRates", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 3953, + "unique_ratio": 0.40075, + "example_values": [ + "0.045421245", + "0.05", + "0.017460317", + "0.040606061", + "0.133333333" + ] + } + }, + { + "name": "PageValues", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 2129, + "unique_ratio": 0.215835, + "example_values": [ + "0", + "7.945368291", + "10.37042373", + "18.99269231", + "44.33548922" + ] + } + }, + { + "name": "SpecialDay", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 6, + "unique_ratio": 0.000608, + "example_values": [ + "0", + "0.4", + "0.2", + "0.8", + "1" + ] + } + }, + { + "name": "Month", + "role": "feature", + "semantic_type": "categorical", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 10, + "unique_ratio": 0.001014, + "example_values": [ + "Nov", + "Dec", + "Jul", + "Aug", + "Mar" + ] + } + }, + { + "name": "OperatingSystems", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 8, + "unique_ratio": 0.000811, + "example_values": [ + "3", + "2", + "6", + "4", + "1" + ] + } + }, + { + "name": "Browser", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 13, + "unique_ratio": 0.001318, + "example_values": [ + "2", + "1", + "5", + "4", + "3" + ] + } + }, + { + "name": "Region", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 9, + "unique_ratio": 0.000912, + "example_values": [ + "6", + "3", + "4", + "1", + "9" + ] + } + }, + { + "name": "TrafficType", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 20, + "unique_ratio": 0.002028, + "example_values": [ + "2", + "8", + "3", + "11", + "1" + ] + } + }, + { + "name": "VisitorType", + "role": "target", + "semantic_type": "categorical", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 3, + "unique_ratio": 0.000304, + "example_values": [ + "Returning_Visitor", + "New_Visitor", + "Other" + ] + } + }, + { + "name": "Weekend", + "role": "feature", + "semantic_type": "boolean", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 2, + "unique_ratio": 0.000203, + "example_values": [ + "FALSE", + "TRUE" + ] + } + }, + { + "name": "Revenue", + "role": "feature", + "semantic_type": "boolean", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 2, + "unique_ratio": 0.000203, + "example_values": [ + "FALSE", + "TRUE" + ] + } + } + ], + "public_manifest": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/m6/realtabformer/rtf-m6-20260429_070344/public_gate/staged_input_manifest.json", + "train_csv": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/m6/realtabformer/rtf-m6-20260429_070344/staged/public/train.csv", + "val_csv": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/m6/realtabformer/rtf-m6-20260429_070344/staged/public/val.csv", + "test_csv": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/m6/realtabformer/rtf-m6-20260429_070344/staged/public/test.csv", + "features_json": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/m6/realtabformer/rtf-m6-20260429_070344/staged/public/staged_features.json", + "public_gate_report": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/m6/realtabformer/rtf-m6-20260429_070344/public_gate/public_gate_report.json" +} \ No newline at end of file diff --git a/timecost/m6/realtabformer/rtf-m6-20260429_070344/train_20260429_070345.log b/timecost/m6/realtabformer/rtf-m6-20260429_070344/train_20260429_070345.log new file mode 100644 index 0000000000000000000000000000000000000000..fcc6b039b4e502119d478e2ee1928f92b4ee0140 --- /dev/null +++ b/timecost/m6/realtabformer/rtf-m6-20260429_070344/train_20260429_070345.log @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:7f0a24e9dd084e3b7415a7336b230837fd0b7d5b1df0aaf178e247c26cc463e7 +size 1315977 diff --git a/timecost/m6/tabbyflow/tabbyflow-m6-20260429_041029/_tabbyflow_gen.py b/timecost/m6/tabbyflow/tabbyflow-m6-20260429_041029/_tabbyflow_gen.py new file mode 100644 index 0000000000000000000000000000000000000000..2e66829e5f7859200f843199de97279266604d05 --- /dev/null +++ b/timecost/m6/tabbyflow/tabbyflow-m6-20260429_041029/_tabbyflow_gen.py @@ -0,0 +1,33 @@ + +import os, shutil, subprocess, sys +root = r"/workspace/ef-vfm" +name = r"pipeline_m6" +src = r"/work/output-Benchmark-trainonly-v1/m6/tabbyflow/tabbyflow-m6-20260429_041029/tabular_bundle/pipeline_m6" +dst_data = os.path.join(root, "data", name) +shutil.rmtree(dst_data, ignore_errors=True) +shutil.copytree(src, dst_data) +dst_syn = os.path.join(root, "synthetic", name) +os.makedirs(dst_syn, exist_ok=True) +for fn in ("real.csv", "test.csv", "val.csv"): + shutil.copy(os.path.join(src, fn), os.path.join(dst_syn, fn)) +os.chdir(root) +os.environ["PYTHONPATH"] = root + os.pathsep + os.environ.get("PYTHONPATH", "") +subprocess.check_call([ + sys.executable, "main.py", + "--dataname", name, "--mode", "test", "--gpu", "0", + "--no_wandb", "--exp_name", r"adapter_efvfm", + "--ckpt_path", r"/workspace/ef-vfm/ef_vfm/ckpt/pipeline_m6/adapter_efvfm/model_500.pt", + "--num_samples_to_generate", str(int(9864)), +]) +base = os.path.join(root, "ef_vfm", "result", name, r"adapter_efvfm") +best = None +best_t = -1.0 +for r, _, files in os.walk(base): + if "samples.csv" in files: + p = os.path.join(r, "samples.csv") + t = os.path.getmtime(p) + if t > best_t: + best_t, best = t, p +if not best: + raise SystemExit("tabbyflow: no samples.csv in " + base) +shutil.copy(best, r"/work/output-Benchmark-trainonly-v1/m6/tabbyflow/tabbyflow-m6-20260429_041029/tabbyflow-m6-9864-20260429_042639.csv") diff --git a/timecost/m6/tabbyflow/tabbyflow-m6-20260429_041029/_tabbyflow_train.py b/timecost/m6/tabbyflow/tabbyflow-m6-20260429_041029/_tabbyflow_train.py new file mode 100644 index 0000000000000000000000000000000000000000..b476dece61a4f64634ae360b705233d34d361b1a --- /dev/null +++ b/timecost/m6/tabbyflow/tabbyflow-m6-20260429_041029/_tabbyflow_train.py @@ -0,0 +1,22 @@ + +import os, shutil, subprocess, sys +root = r"/workspace/ef-vfm" +name = r"pipeline_m6" +src = r"/work/output-Benchmark-trainonly-v1/m6/tabbyflow/tabbyflow-m6-20260429_041029/tabular_bundle/pipeline_m6" +os.makedirs(os.path.join(root, "data", name), exist_ok=True) +dst_data = os.path.join(root, "data", name) +dst_syn = os.path.join(root, "synthetic", name) +shutil.rmtree(dst_data, ignore_errors=True) +shutil.copytree(src, dst_data) +os.makedirs(dst_syn, exist_ok=True) +for fn in ("real.csv", "test.csv", "val.csv"): + shutil.copy(os.path.join(src, fn), os.path.join(dst_syn, fn)) +os.chdir(root) +os.environ["PYTHONPATH"] = root + os.pathsep + os.environ.get("PYTHONPATH", "") +os.environ["EFVFM_SMOKE_STEPS"] = "500" +os.environ["EFVFM_ADAPTER_TRAIN"] = "1" +subprocess.check_call([ + sys.executable, "main.py", + "--dataname", name, "--mode", "train", "--gpu", "0", + "--no_wandb", "--exp_name", r"adapter_efvfm", +]) diff --git a/timecost/m6/tabbyflow/tabbyflow-m6-20260429_041029/gen_20260429_042639.log b/timecost/m6/tabbyflow/tabbyflow-m6-20260429_041029/gen_20260429_042639.log new file mode 100644 index 0000000000000000000000000000000000000000..ebb4436cc214f8438425a01d32b03fe02a6e70e6 --- /dev/null +++ b/timecost/m6/tabbyflow/tabbyflow-m6-20260429_041029/gen_20260429_042639.log @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:538973c4de222ddfe910ca4c660e3d86f483297f671bfdc8908796020b4aee66 +size 3072 diff --git a/timecost/m6/tabbyflow/tabbyflow-m6-20260429_041029/input_snapshot.json b/timecost/m6/tabbyflow/tabbyflow-m6-20260429_041029/input_snapshot.json new file mode 100644 index 0000000000000000000000000000000000000000..c11f5d9fc1b1146cb69cdc138f15cc818de081c7 --- /dev/null +++ b/timecost/m6/tabbyflow/tabbyflow-m6-20260429_041029/input_snapshot.json @@ -0,0 +1,36 @@ +{ + "dataset_id": "m6", + "model": "tabbyflow", + "inputs": { + "train_csv": { + "path": "/data/jialinzhang/SynthesizePipeline-server/DatasetNew/m6/m6-train.csv", + "exists": true, + "size": 856785, + "sha256": "a5d1c487a8f2611385915fcc5a52bad546680ddbc8d23fc695f442cdd6dafa0c" + }, + "val_csv": { + "path": "/data/jialinzhang/SynthesizePipeline-server/DatasetNew/m6/m6-val.csv", + "exists": true, + "size": 107758, + "sha256": "598196cecc227cfba95c9796b80bc1baf684a0117e6673b8662b89482cdcb78f" + }, + "test_csv": { + "path": "/data/jialinzhang/SynthesizePipeline-server/DatasetNew/m6/m6-test.csv", + "exists": true, + "size": 107996, + "sha256": "ec939ad96a3b14dd960886359fb6c5d45591adc8a734661ade3dee1417a015de" + }, + "profile_json": { + "path": "/data/jialinzhang/SynthesizePipeline-server/DatasetNew/artifacts/data_core/tabular/m6/m6-dataset_profile.json", + "exists": true, + "size": 7622, + "sha256": "859f1fe93806c8ecdea9c9db9db34fb6cf94bc112b5c0a66b2436e8ef71c2e98" + }, + "contract_json": { + "path": "/data/jialinzhang/SynthesizePipeline-server/DatasetNew/artifacts/data_core/tabular/m6/m6-dataset_contract_v1.json", + "exists": true, + "size": 8990, + "sha256": "01142eeb121af615a644c3e312f5f3e79d805396339f40d5a300ba3560cf8e90" + } + } +} \ No newline at end of file diff --git a/timecost/m6/tabbyflow/tabbyflow-m6-20260429_041029/models_tabbyflow/trained.pt b/timecost/m6/tabbyflow/tabbyflow-m6-20260429_041029/models_tabbyflow/trained.pt new file mode 100644 index 0000000000000000000000000000000000000000..f063a878c470d9d40f79db79881596e1e497dffd --- /dev/null +++ b/timecost/m6/tabbyflow/tabbyflow-m6-20260429_041029/models_tabbyflow/trained.pt @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:adb734fec12f2251befd371dca69e481b19464aded2a6823105a01b4be6ddbe5 +size 40 diff --git a/timecost/m6/tabbyflow/tabbyflow-m6-20260429_041029/public_gate/normalized_schema_snapshot.json b/timecost/m6/tabbyflow/tabbyflow-m6-20260429_041029/public_gate/normalized_schema_snapshot.json new file mode 100644 index 0000000000000000000000000000000000000000..0d48abfe61f58323fd4a425d175b354d51045ae1 --- /dev/null +++ b/timecost/m6/tabbyflow/tabbyflow-m6-20260429_041029/public_gate/normalized_schema_snapshot.json @@ -0,0 +1,377 @@ +{ + "dataset_id": "m6", + "target_column": "VisitorType", + "task_type": "classification", + "columns": [ + { + "name": "Administrative", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 26, + "unique_ratio": 0.002636, + "example_values": [ + "0", + "3", + "2", + "6", + "1" + ] + } + }, + { + "name": "Administrative_Duration", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 2789, + "unique_ratio": 0.282745, + "example_values": [ + "0", + "45.8", + "77.7", + "52", + "46.33333333" + ] + } + }, + { + "name": "Informational", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 17, + "unique_ratio": 0.001723, + "example_values": [ + "0", + "1", + "3", + "5", + "4" + ] + } + }, + { + "name": "Informational_Duration", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 1074, + "unique_ratio": 0.108881, + "example_values": [ + "0", + "2", + "24", + "86.75", + "62.5" + ] + } + }, + { + "name": "ProductRelated", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 286, + "unique_ratio": 0.028994, + "example_values": [ + "13", + "8", + "63", + "15", + "3" + ] + } + }, + { + "name": "ProductRelated_Duration", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 7769, + "unique_ratio": 0.787612, + "example_values": [ + "549.2", + "64", + "2435.697531", + "267.7333333", + "57.4" + ] + } + }, + { + "name": "BounceRates", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 1574, + "unique_ratio": 0.15957, + "example_values": [ + "0.019230769", + "0", + "0.00952381", + "0.022857143", + "0.004166667" + ] + } + }, + { + "name": "ExitRates", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 3953, + "unique_ratio": 0.40075, + "example_values": [ + "0.045421245", + "0.05", + "0.017460317", + "0.040606061", + "0.133333333" + ] + } + }, + { + "name": "PageValues", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 2129, + "unique_ratio": 0.215835, + "example_values": [ + "0", + "7.945368291", + "10.37042373", + "18.99269231", + "44.33548922" + ] + } + }, + { + "name": "SpecialDay", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 6, + "unique_ratio": 0.000608, + "example_values": [ + "0", + "0.4", + "0.2", + "0.8", + "1" + ] + } + }, + { + "name": "Month", + "role": "feature", + "semantic_type": "categorical", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 10, + "unique_ratio": 0.001014, + "example_values": [ + "Nov", + "Dec", + "Jul", + "Aug", + "Mar" + ] + } + }, + { + "name": "OperatingSystems", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 8, + "unique_ratio": 0.000811, + "example_values": [ + "3", + "2", + "6", + "4", + "1" + ] + } + }, + { + "name": "Browser", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 13, + "unique_ratio": 0.001318, + "example_values": [ + "2", + "1", + "5", + "4", + "3" + ] + } + }, + { + "name": "Region", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 9, + "unique_ratio": 0.000912, + "example_values": [ + "6", + "3", + "4", + "1", + "9" + ] + } + }, + { + "name": "TrafficType", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 20, + "unique_ratio": 0.002028, + "example_values": [ + "2", + "8", + "3", + "11", + "1" + ] + } + }, + { + "name": "VisitorType", + "role": "target", + "semantic_type": "categorical", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 3, + "unique_ratio": 0.000304, + "example_values": [ + "Returning_Visitor", + "New_Visitor", + "Other" + ] + } + }, + { + "name": "Weekend", + "role": "feature", + "semantic_type": "boolean", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 2, + "unique_ratio": 0.000203, + "example_values": [ + "FALSE", + "TRUE" + ] + } + }, + { + "name": "Revenue", + "role": "feature", + "semantic_type": "boolean", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 2, + "unique_ratio": 0.000203, + "example_values": [ + "FALSE", + "TRUE" + ] + } + } + ] +} \ No newline at end of file diff --git a/timecost/m6/tabbyflow/tabbyflow-m6-20260429_041029/public_gate/public_gate_report.json b/timecost/m6/tabbyflow/tabbyflow-m6-20260429_041029/public_gate/public_gate_report.json new file mode 100644 index 0000000000000000000000000000000000000000..99a260799c8356f445bdc0b33ccce8b459ba1938 --- /dev/null +++ b/timecost/m6/tabbyflow/tabbyflow-m6-20260429_041029/public_gate/public_gate_report.json @@ -0,0 +1,37 @@ +{ + "dataset_id": "m6", + "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": "VisitorType", + "task_type": "classification", + "input_splits": { + "train": "/data/jialinzhang/SynthesizePipeline-server/DatasetNew/m6/m6-train.csv", + "val": "/data/jialinzhang/SynthesizePipeline-server/DatasetNew/m6/m6-val.csv", + "test": "/data/jialinzhang/SynthesizePipeline-server/DatasetNew/m6/m6-test.csv" + } +} \ No newline at end of file diff --git a/timecost/m6/tabbyflow/tabbyflow-m6-20260429_041029/public_gate/staged_input_manifest.json b/timecost/m6/tabbyflow/tabbyflow-m6-20260429_041029/public_gate/staged_input_manifest.json new file mode 100644 index 0000000000000000000000000000000000000000..4560ef0c8242e5bed79da3e419f615b5b604a970 --- /dev/null +++ b/timecost/m6/tabbyflow/tabbyflow-m6-20260429_041029/public_gate/staged_input_manifest.json @@ -0,0 +1,382 @@ +{ + "dataset_id": "m6", + "target_column": "VisitorType", + "task_type": "classification", + "train_csv": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/m6/tabbyflow/tabbyflow-m6-20260429_041029/staged/public/train.csv", + "val_csv": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/m6/tabbyflow/tabbyflow-m6-20260429_041029/staged/public/val.csv", + "test_csv": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/m6/tabbyflow/tabbyflow-m6-20260429_041029/staged/public/test.csv", + "features_json": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/m6/tabbyflow/tabbyflow-m6-20260429_041029/staged/public/staged_features.json", + "public_gate_report": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/m6/tabbyflow/tabbyflow-m6-20260429_041029/public_gate/public_gate_report.json", + "column_schema": [ + { + "name": "Administrative", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 26, + "unique_ratio": 0.002636, + "example_values": [ + "0", + "3", + "2", + "6", + "1" + ] + } + }, + { + "name": "Administrative_Duration", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 2789, + "unique_ratio": 0.282745, + "example_values": [ + "0", + "45.8", + "77.7", + "52", + "46.33333333" + ] + } + }, + { + "name": "Informational", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 17, + "unique_ratio": 0.001723, + "example_values": [ + "0", + "1", + "3", + "5", + "4" + ] + } + }, + { + "name": "Informational_Duration", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 1074, + "unique_ratio": 0.108881, + "example_values": [ + "0", + "2", + "24", + "86.75", + "62.5" + ] + } + }, + { + "name": "ProductRelated", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 286, + "unique_ratio": 0.028994, + "example_values": [ + "13", + "8", + "63", + "15", + "3" + ] + } + }, + { + "name": "ProductRelated_Duration", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 7769, + "unique_ratio": 0.787612, + "example_values": [ + "549.2", + "64", + "2435.697531", + "267.7333333", + "57.4" + ] + } + }, + { + "name": "BounceRates", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 1574, + "unique_ratio": 0.15957, + "example_values": [ + "0.019230769", + "0", + "0.00952381", + "0.022857143", + "0.004166667" + ] + } + }, + { + "name": "ExitRates", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 3953, + "unique_ratio": 0.40075, + "example_values": [ + "0.045421245", + "0.05", + "0.017460317", + "0.040606061", + "0.133333333" + ] + } + }, + { + "name": "PageValues", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 2129, + "unique_ratio": 0.215835, + "example_values": [ + "0", + "7.945368291", + "10.37042373", + "18.99269231", + "44.33548922" + ] + } + }, + { + "name": "SpecialDay", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 6, + "unique_ratio": 0.000608, + "example_values": [ + "0", + "0.4", + "0.2", + "0.8", + "1" + ] + } + }, + { + "name": "Month", + "role": "feature", + "semantic_type": "categorical", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 10, + "unique_ratio": 0.001014, + "example_values": [ + "Nov", + "Dec", + "Jul", + "Aug", + "Mar" + ] + } + }, + { + "name": "OperatingSystems", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 8, + "unique_ratio": 0.000811, + "example_values": [ + "3", + "2", + "6", + "4", + "1" + ] + } + }, + { + "name": "Browser", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 13, + "unique_ratio": 0.001318, + "example_values": [ + "2", + "1", + "5", + "4", + "3" + ] + } + }, + { + "name": "Region", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 9, + "unique_ratio": 0.000912, + "example_values": [ + "6", + "3", + "4", + "1", + "9" + ] + } + }, + { + "name": "TrafficType", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 20, + "unique_ratio": 0.002028, + "example_values": [ + "2", + "8", + "3", + "11", + "1" + ] + } + }, + { + "name": "VisitorType", + "role": "target", + "semantic_type": "categorical", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 3, + "unique_ratio": 0.000304, + "example_values": [ + "Returning_Visitor", + "New_Visitor", + "Other" + ] + } + }, + { + "name": "Weekend", + "role": "feature", + "semantic_type": "boolean", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 2, + "unique_ratio": 0.000203, + "example_values": [ + "FALSE", + "TRUE" + ] + } + }, + { + "name": "Revenue", + "role": "feature", + "semantic_type": "boolean", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 2, + "unique_ratio": 0.000203, + "example_values": [ + "FALSE", + "TRUE" + ] + } + } + ] +} \ No newline at end of file diff --git a/timecost/m6/tabbyflow/tabbyflow-m6-20260429_041029/runtime_result.json b/timecost/m6/tabbyflow/tabbyflow-m6-20260429_041029/runtime_result.json new file mode 100644 index 0000000000000000000000000000000000000000..7f21ebe88b91a83aa6eafbadd1d25fb10b4f4614 --- /dev/null +++ b/timecost/m6/tabbyflow/tabbyflow-m6-20260429_041029/runtime_result.json @@ -0,0 +1,15 @@ +{ + "dataset_id": "m6", + "model": "tabbyflow", + "run_id": "tabbyflow-m6-20260429_041029", + "public_gate_status": "pass", + "adapter_ready_status": "pass", + "train_status": "success", + "generate_status": "success", + "reason_code": null, + "reason_detail": null, + "artifacts": { + "synthetic_csv": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/m6/tabbyflow/tabbyflow-m6-20260429_041029/tabbyflow-m6-9864-20260429_042639.csv", + "model_path": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/m6/tabbyflow/tabbyflow-m6-20260429_041029/models_tabbyflow/trained.pt" + } +} \ No newline at end of file diff --git a/timecost/m6/tabbyflow/tabbyflow-m6-20260429_041029/staged/public/staged_features.json b/timecost/m6/tabbyflow/tabbyflow-m6-20260429_041029/staged/public/staged_features.json new file mode 100644 index 0000000000000000000000000000000000000000..49b25bd1347f910a2b95ef0c137d1a64bf69e0cb --- /dev/null +++ b/timecost/m6/tabbyflow/tabbyflow-m6-20260429_041029/staged/public/staged_features.json @@ -0,0 +1,92 @@ +[ + { + "feature_name": "Administrative", + "data_type": "continuous", + "is_target": false + }, + { + "feature_name": "Administrative_Duration", + "data_type": "continuous", + "is_target": false + }, + { + "feature_name": "Informational", + "data_type": "continuous", + "is_target": false + }, + { + "feature_name": "Informational_Duration", + "data_type": "continuous", + "is_target": false + }, + { + "feature_name": "ProductRelated", + "data_type": "continuous", + "is_target": false + }, + { + "feature_name": "ProductRelated_Duration", + "data_type": "continuous", + "is_target": false + }, + { + "feature_name": "BounceRates", + "data_type": "continuous", + "is_target": false + }, + { + "feature_name": "ExitRates", + "data_type": "continuous", + "is_target": false + }, + { + "feature_name": "PageValues", + "data_type": "continuous", + "is_target": false + }, + { + "feature_name": "SpecialDay", + "data_type": "continuous", + "is_target": false + }, + { + "feature_name": "Month", + "data_type": "categorical", + "is_target": false + }, + { + "feature_name": "OperatingSystems", + "data_type": "continuous", + "is_target": false + }, + { + "feature_name": "Browser", + "data_type": "continuous", + "is_target": false + }, + { + "feature_name": "Region", + "data_type": "continuous", + "is_target": false + }, + { + "feature_name": "TrafficType", + "data_type": "continuous", + "is_target": false + }, + { + "feature_name": "VisitorType", + "data_type": "categorical", + "is_target": true + }, + { + "feature_name": "Weekend", + "data_type": "binary", + "is_target": false + }, + { + "feature_name": "Revenue", + "data_type": "binary", + "is_target": false + } +] \ No newline at end of file diff --git a/timecost/m6/tabbyflow/tabbyflow-m6-20260429_041029/staged/public/test.csv b/timecost/m6/tabbyflow/tabbyflow-m6-20260429_041029/staged/public/test.csv new file mode 100644 index 0000000000000000000000000000000000000000..3944bd554327e948b8bda8c383bd581f3fc26ec6 --- /dev/null +++ b/timecost/m6/tabbyflow/tabbyflow-m6-20260429_041029/staged/public/test.csv @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:d16d0389cb0fe4b23bab344dc10070de6678357a9452f9f620d0eeba66a6b12d +size 116376 diff --git a/timecost/m6/tabbyflow/tabbyflow-m6-20260429_041029/staged/public/train.csv b/timecost/m6/tabbyflow/tabbyflow-m6-20260429_041029/staged/public/train.csv new file mode 100644 index 0000000000000000000000000000000000000000..ae3a266ed7bebf02bc27c50b9dea6e8c5fe71c10 --- /dev/null +++ b/timecost/m6/tabbyflow/tabbyflow-m6-20260429_041029/staged/public/train.csv @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:e1f0338c367408dc21d5a4ec9cdc5d3fe8188916db6085f3fd326304a55551e1 +size 924849 diff --git a/timecost/m6/tabbyflow/tabbyflow-m6-20260429_041029/staged/public/val.csv b/timecost/m6/tabbyflow/tabbyflow-m6-20260429_041029/staged/public/val.csv new file mode 100644 index 0000000000000000000000000000000000000000..60be57a3609a30d56d27e37e49a3aedfa6294db5 --- /dev/null +++ b/timecost/m6/tabbyflow/tabbyflow-m6-20260429_041029/staged/public/val.csv @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:cb9169f3c7213420491d9b709ee1cc650aeaed732fa77dcbd6ffe3583366b2d4 +size 116198 diff --git a/timecost/m6/tabbyflow/tabbyflow-m6-20260429_041029/staged/tabbyflow/adapter_report.json b/timecost/m6/tabbyflow/tabbyflow-m6-20260429_041029/staged/tabbyflow/adapter_report.json new file mode 100644 index 0000000000000000000000000000000000000000..ad7e388bb8630b27b3a4ac4aa95488097063420b --- /dev/null +++ b/timecost/m6/tabbyflow/tabbyflow-m6-20260429_041029/staged/tabbyflow/adapter_report.json @@ -0,0 +1,7 @@ +{ + "adapter_ready_status": "pass", + "adapter_fail_reason_code": null, + "adapter_fail_detail": null, + "adapter_transforms_applied": [], + "model_input_manifest": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/m6/tabbyflow/tabbyflow-m6-20260429_041029/staged/tabbyflow/model_input_manifest.json" +} \ No newline at end of file diff --git a/timecost/m6/tabbyflow/tabbyflow-m6-20260429_041029/staged/tabbyflow/adapter_transforms_applied.json b/timecost/m6/tabbyflow/tabbyflow-m6-20260429_041029/staged/tabbyflow/adapter_transforms_applied.json new file mode 100644 index 0000000000000000000000000000000000000000..0637a088a01e8ddab3bf3fa98dbe804cbde1a0dc --- /dev/null +++ b/timecost/m6/tabbyflow/tabbyflow-m6-20260429_041029/staged/tabbyflow/adapter_transforms_applied.json @@ -0,0 +1 @@ +[] \ No newline at end of file diff --git a/timecost/m6/tabbyflow/tabbyflow-m6-20260429_041029/staged/tabbyflow/model_input_manifest.json b/timecost/m6/tabbyflow/tabbyflow-m6-20260429_041029/staged/tabbyflow/model_input_manifest.json new file mode 100644 index 0000000000000000000000000000000000000000..099fb971d33c037e97f34deed541a3aac773d3bb --- /dev/null +++ b/timecost/m6/tabbyflow/tabbyflow-m6-20260429_041029/staged/tabbyflow/model_input_manifest.json @@ -0,0 +1,384 @@ +{ + "dataset_id": "m6", + "model": "tabbyflow", + "target_column": "VisitorType", + "task_type": "classification", + "column_schema": [ + { + "name": "Administrative", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 26, + "unique_ratio": 0.002636, + "example_values": [ + "0", + "3", + "2", + "6", + "1" + ] + } + }, + { + "name": "Administrative_Duration", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 2789, + "unique_ratio": 0.282745, + "example_values": [ + "0", + "45.8", + "77.7", + "52", + "46.33333333" + ] + } + }, + { + "name": "Informational", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 17, + "unique_ratio": 0.001723, + "example_values": [ + "0", + "1", + "3", + "5", + "4" + ] + } + }, + { + "name": "Informational_Duration", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 1074, + "unique_ratio": 0.108881, + "example_values": [ + "0", + "2", + "24", + "86.75", + "62.5" + ] + } + }, + { + "name": "ProductRelated", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 286, + "unique_ratio": 0.028994, + "example_values": [ + "13", + "8", + "63", + "15", + "3" + ] + } + }, + { + "name": "ProductRelated_Duration", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 7769, + "unique_ratio": 0.787612, + "example_values": [ + "549.2", + "64", + "2435.697531", + "267.7333333", + "57.4" + ] + } + }, + { + "name": "BounceRates", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 1574, + "unique_ratio": 0.15957, + "example_values": [ + "0.019230769", + "0", + "0.00952381", + "0.022857143", + "0.004166667" + ] + } + }, + { + "name": "ExitRates", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 3953, + "unique_ratio": 0.40075, + "example_values": [ + "0.045421245", + "0.05", + "0.017460317", + "0.040606061", + "0.133333333" + ] + } + }, + { + "name": "PageValues", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 2129, + "unique_ratio": 0.215835, + "example_values": [ + "0", + "7.945368291", + "10.37042373", + "18.99269231", + "44.33548922" + ] + } + }, + { + "name": "SpecialDay", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 6, + "unique_ratio": 0.000608, + "example_values": [ + "0", + "0.4", + "0.2", + "0.8", + "1" + ] + } + }, + { + "name": "Month", + "role": "feature", + "semantic_type": "categorical", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 10, + "unique_ratio": 0.001014, + "example_values": [ + "Nov", + "Dec", + "Jul", + "Aug", + "Mar" + ] + } + }, + { + "name": "OperatingSystems", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 8, + "unique_ratio": 0.000811, + "example_values": [ + "3", + "2", + "6", + "4", + "1" + ] + } + }, + { + "name": "Browser", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 13, + "unique_ratio": 0.001318, + "example_values": [ + "2", + "1", + "5", + "4", + "3" + ] + } + }, + { + "name": "Region", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 9, + "unique_ratio": 0.000912, + "example_values": [ + "6", + "3", + "4", + "1", + "9" + ] + } + }, + { + "name": "TrafficType", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 20, + "unique_ratio": 0.002028, + "example_values": [ + "2", + "8", + "3", + "11", + "1" + ] + } + }, + { + "name": "VisitorType", + "role": "target", + "semantic_type": "categorical", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 3, + "unique_ratio": 0.000304, + "example_values": [ + "Returning_Visitor", + "New_Visitor", + "Other" + ] + } + }, + { + "name": "Weekend", + "role": "feature", + "semantic_type": "boolean", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 2, + "unique_ratio": 0.000203, + "example_values": [ + "FALSE", + "TRUE" + ] + } + }, + { + "name": "Revenue", + "role": "feature", + "semantic_type": "boolean", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 2, + "unique_ratio": 0.000203, + "example_values": [ + "FALSE", + "TRUE" + ] + } + } + ], + "public_manifest": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/m6/tabbyflow/tabbyflow-m6-20260429_041029/public_gate/staged_input_manifest.json", + "train_csv": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/m6/tabbyflow/tabbyflow-m6-20260429_041029/staged/public/train.csv", + "val_csv": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/m6/tabbyflow/tabbyflow-m6-20260429_041029/staged/public/val.csv", + "test_csv": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/m6/tabbyflow/tabbyflow-m6-20260429_041029/staged/public/test.csv", + "features_json": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/m6/tabbyflow/tabbyflow-m6-20260429_041029/staged/public/staged_features.json", + "public_gate_report": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/m6/tabbyflow/tabbyflow-m6-20260429_041029/public_gate/public_gate_report.json" +} \ No newline at end of file diff --git a/timecost/m6/tabbyflow/tabbyflow-m6-20260429_041029/tabbyflow-m6-9864-20260429_042639.csv b/timecost/m6/tabbyflow/tabbyflow-m6-20260429_041029/tabbyflow-m6-9864-20260429_042639.csv new file mode 100644 index 0000000000000000000000000000000000000000..ca86cbbeaf98fa0123be91998df7664dfbd6e868 --- /dev/null +++ b/timecost/m6/tabbyflow/tabbyflow-m6-20260429_041029/tabbyflow-m6-9864-20260429_042639.csv @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:dba32a64633517d927e395dc9d0fe27e1751e61cf0793a368140d47cccf0eae5 +size 851541 diff --git a/timecost/m6/tabbyflow/tabbyflow-m6-20260429_041029/tabbyflow_train_meta.json b/timecost/m6/tabbyflow/tabbyflow-m6-20260429_041029/tabbyflow_train_meta.json new file mode 100644 index 0000000000000000000000000000000000000000..65172d45858af884fb787cfb8abf6650dd14081d --- /dev/null +++ b/timecost/m6/tabbyflow/tabbyflow-m6-20260429_041029/tabbyflow_train_meta.json @@ -0,0 +1,5 @@ +{ + "exp_name": "adapter_efvfm", + "dataname": "pipeline_m6", + "steps": 500 +} \ No newline at end of file diff --git a/timecost/m6/tabbyflow/tabbyflow-m6-20260429_041029/tabular_bundle/pipeline_m6/X_cat_test.npy b/timecost/m6/tabbyflow/tabbyflow-m6-20260429_041029/tabular_bundle/pipeline_m6/X_cat_test.npy new file mode 100644 index 0000000000000000000000000000000000000000..622304720bf969c46f4c82b28d35220f4b91c4b5 --- /dev/null +++ b/timecost/m6/tabbyflow/tabbyflow-m6-20260429_041029/tabular_bundle/pipeline_m6/X_cat_test.npy @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:33b3ba6d661fb460428f33f010200f46937687463db68f5f919e4743a9802815 +size 236864 diff --git a/timecost/m6/tabbyflow/tabbyflow-m6-20260429_041029/tabular_bundle/pipeline_m6/X_cat_train.npy b/timecost/m6/tabbyflow/tabbyflow-m6-20260429_041029/tabular_bundle/pipeline_m6/X_cat_train.npy new file mode 100644 index 0000000000000000000000000000000000000000..622304720bf969c46f4c82b28d35220f4b91c4b5 --- /dev/null +++ b/timecost/m6/tabbyflow/tabbyflow-m6-20260429_041029/tabular_bundle/pipeline_m6/X_cat_train.npy @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:33b3ba6d661fb460428f33f010200f46937687463db68f5f919e4743a9802815 +size 236864 diff --git a/timecost/m6/tabbyflow/tabbyflow-m6-20260429_041029/tabular_bundle/pipeline_m6/X_cat_val.npy b/timecost/m6/tabbyflow/tabbyflow-m6-20260429_041029/tabular_bundle/pipeline_m6/X_cat_val.npy new file mode 100644 index 0000000000000000000000000000000000000000..622304720bf969c46f4c82b28d35220f4b91c4b5 --- /dev/null +++ b/timecost/m6/tabbyflow/tabbyflow-m6-20260429_041029/tabular_bundle/pipeline_m6/X_cat_val.npy @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:33b3ba6d661fb460428f33f010200f46937687463db68f5f919e4743a9802815 +size 236864 diff --git a/timecost/m6/tabbyflow/tabbyflow-m6-20260429_041029/tabular_bundle/pipeline_m6/X_num_test.npy b/timecost/m6/tabbyflow/tabbyflow-m6-20260429_041029/tabular_bundle/pipeline_m6/X_num_test.npy new file mode 100644 index 0000000000000000000000000000000000000000..e00fb621bec79b3db12b58f7a335ce049229c0e9 --- /dev/null +++ b/timecost/m6/tabbyflow/tabbyflow-m6-20260429_041029/tabular_bundle/pipeline_m6/X_num_test.npy @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:960545f531401f06b1ef44d43f0e45228b36d96b6f6dbf87b8f6ad8578e915f5 +size 552512 diff --git a/timecost/m6/tabbyflow/tabbyflow-m6-20260429_041029/tabular_bundle/pipeline_m6/X_num_train.npy b/timecost/m6/tabbyflow/tabbyflow-m6-20260429_041029/tabular_bundle/pipeline_m6/X_num_train.npy new file mode 100644 index 0000000000000000000000000000000000000000..e00fb621bec79b3db12b58f7a335ce049229c0e9 --- /dev/null +++ b/timecost/m6/tabbyflow/tabbyflow-m6-20260429_041029/tabular_bundle/pipeline_m6/X_num_train.npy @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:960545f531401f06b1ef44d43f0e45228b36d96b6f6dbf87b8f6ad8578e915f5 +size 552512 diff --git a/timecost/m6/tabbyflow/tabbyflow-m6-20260429_041029/tabular_bundle/pipeline_m6/X_num_val.npy b/timecost/m6/tabbyflow/tabbyflow-m6-20260429_041029/tabular_bundle/pipeline_m6/X_num_val.npy new file mode 100644 index 0000000000000000000000000000000000000000..e00fb621bec79b3db12b58f7a335ce049229c0e9 --- /dev/null +++ b/timecost/m6/tabbyflow/tabbyflow-m6-20260429_041029/tabular_bundle/pipeline_m6/X_num_val.npy @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:960545f531401f06b1ef44d43f0e45228b36d96b6f6dbf87b8f6ad8578e915f5 +size 552512 diff --git a/timecost/m6/tabbyflow/tabbyflow-m6-20260429_041029/tabular_bundle/pipeline_m6/info.json b/timecost/m6/tabbyflow/tabbyflow-m6-20260429_041029/tabular_bundle/pipeline_m6/info.json new file mode 100644 index 0000000000000000000000000000000000000000..468426cfbed51e7544b418c1232ccf505afd1d8e --- /dev/null +++ b/timecost/m6/tabbyflow/tabbyflow-m6-20260429_041029/tabular_bundle/pipeline_m6/info.json @@ -0,0 +1,191 @@ +{ + "name": "pipeline_m6", + "task_type": "multiclass", + "n_num_features": 14, + "n_cat_features": 3, + "train_size": 9864, + "test_num": 9864, + "val_num": 9864, + "train_num": 9864, + "bundle_note": "val/test matrices are train copies (train-only policy; no real held-out rows).", + "num_col_idx": [ + 0, + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "cat_col_idx": [ + 14, + 15, + 16 + ], + "target_col_idx": [ + 17 + ], + "column_names": [ + "Administrative", + "Administrative_Duration", + "Informational", + "Informational_Duration", + "ProductRelated", + "ProductRelated_Duration", + "BounceRates", + "ExitRates", + "PageValues", + "SpecialDay", + "OperatingSystems", + "Browser", + "Region", + "TrafficType", + "Month", + "Weekend", + "Revenue", + "VisitorType" + ], + "int_col_idx": [], + "int_columns": [], + "int_col_idx_wrt_num": [], + "metadata": { + "columns": { + "0": { + "sdtype": "numerical", + "computer_representation": "Float" + }, + "1": { + "sdtype": "numerical", + "computer_representation": "Float" + }, + "2": { + "sdtype": "numerical", + "computer_representation": "Float" + }, + "3": { + "sdtype": "numerical", + "computer_representation": "Float" + }, + "4": { + "sdtype": "numerical", + "computer_representation": "Float" + }, + "5": { + "sdtype": "numerical", + "computer_representation": "Float" + }, + "6": { + "sdtype": "numerical", + "computer_representation": "Float" + }, + "7": { + "sdtype": "numerical", + "computer_representation": "Float" + }, + "8": { + "sdtype": "numerical", + "computer_representation": "Float" + }, + "9": { + "sdtype": "numerical", + "computer_representation": "Float" + }, + "10": { + "sdtype": "numerical", + "computer_representation": "Float" + }, + "11": { + "sdtype": "numerical", + "computer_representation": "Float" + }, + "12": { + "sdtype": "numerical", + "computer_representation": "Float" + }, + "13": { + "sdtype": "numerical", + "computer_representation": "Float" + }, + "14": { + "sdtype": "categorical" + }, + "15": { + "sdtype": "categorical" + }, + "16": { + "sdtype": "categorical" + }, + "17": { + "sdtype": "categorical" + } + } + }, + "idx_mapping": { + "0": 0, + "1": 1, + "2": 2, + "3": 3, + "4": 4, + "5": 5, + "6": 6, + "7": 7, + "8": 8, + "9": 9, + "10": 10, + "11": 11, + "12": 12, + "13": 13, + "14": 14, + "15": 15, + "16": 16, + "17": 17 + }, + "inverse_idx_mapping": { + "0": 0, + "1": 1, + "2": 2, + "3": 3, + "4": 4, + "5": 5, + "6": 6, + "7": 7, + "8": 8, + "9": 9, + "10": 10, + "11": 11, + "12": 12, + "13": 13, + "14": 14, + "15": 15, + "16": 16, + "17": 17 + }, + "idx_name_mapping": { + "0": "Administrative", + "1": "Administrative_Duration", + "2": "Informational", + "3": "Informational_Duration", + "4": "ProductRelated", + "5": "ProductRelated_Duration", + "6": "BounceRates", + "7": "ExitRates", + "8": "PageValues", + "9": "SpecialDay", + "10": "OperatingSystems", + "11": "Browser", + "12": "Region", + "13": "TrafficType", + "14": "Month", + "15": "Weekend", + "16": "Revenue", + "17": "VisitorType" + }, + "n_classes": 3 +} \ No newline at end of file diff --git a/timecost/m6/tabbyflow/tabbyflow-m6-20260429_041029/tabular_bundle/pipeline_m6/real.csv b/timecost/m6/tabbyflow/tabbyflow-m6-20260429_041029/tabular_bundle/pipeline_m6/real.csv new file mode 100644 index 0000000000000000000000000000000000000000..0ec3ba219df726c40342b02ab35b24ddf76ff2a3 --- /dev/null +++ b/timecost/m6/tabbyflow/tabbyflow-m6-20260429_041029/tabular_bundle/pipeline_m6/real.csv @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:da71c5d7ca6752fd26c431f7fefb3701600af7c659d4597ba65f755dcaf7b902 +size 829594 diff --git a/timecost/m6/tabbyflow/tabbyflow-m6-20260429_041029/tabular_bundle/pipeline_m6/test.csv b/timecost/m6/tabbyflow/tabbyflow-m6-20260429_041029/tabular_bundle/pipeline_m6/test.csv new file mode 100644 index 0000000000000000000000000000000000000000..0ec3ba219df726c40342b02ab35b24ddf76ff2a3 --- /dev/null +++ b/timecost/m6/tabbyflow/tabbyflow-m6-20260429_041029/tabular_bundle/pipeline_m6/test.csv @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:da71c5d7ca6752fd26c431f7fefb3701600af7c659d4597ba65f755dcaf7b902 +size 829594 diff --git a/timecost/m6/tabbyflow/tabbyflow-m6-20260429_041029/tabular_bundle/pipeline_m6/val.csv b/timecost/m6/tabbyflow/tabbyflow-m6-20260429_041029/tabular_bundle/pipeline_m6/val.csv new file mode 100644 index 0000000000000000000000000000000000000000..0ec3ba219df726c40342b02ab35b24ddf76ff2a3 --- /dev/null +++ b/timecost/m6/tabbyflow/tabbyflow-m6-20260429_041029/tabular_bundle/pipeline_m6/val.csv @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:da71c5d7ca6752fd26c431f7fefb3701600af7c659d4597ba65f755dcaf7b902 +size 829594 diff --git a/timecost/m6/tabbyflow/tabbyflow-m6-20260429_041029/tabular_bundle/pipeline_m6/y_test.npy b/timecost/m6/tabbyflow/tabbyflow-m6-20260429_041029/tabular_bundle/pipeline_m6/y_test.npy new file mode 100644 index 0000000000000000000000000000000000000000..8d23ecacfe3b5a6516ea0c56d2ab30a4cbe101fd --- /dev/null +++ b/timecost/m6/tabbyflow/tabbyflow-m6-20260429_041029/tabular_bundle/pipeline_m6/y_test.npy @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:4495cd81dd4e25e4cece22309308cf6ac32d53e46ab3410a78c7e12900bd8f9e +size 79040 diff --git a/timecost/m6/tabbyflow/tabbyflow-m6-20260429_041029/tabular_bundle/pipeline_m6/y_train.npy b/timecost/m6/tabbyflow/tabbyflow-m6-20260429_041029/tabular_bundle/pipeline_m6/y_train.npy new file mode 100644 index 0000000000000000000000000000000000000000..8d23ecacfe3b5a6516ea0c56d2ab30a4cbe101fd --- /dev/null +++ b/timecost/m6/tabbyflow/tabbyflow-m6-20260429_041029/tabular_bundle/pipeline_m6/y_train.npy @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:4495cd81dd4e25e4cece22309308cf6ac32d53e46ab3410a78c7e12900bd8f9e +size 79040 diff --git a/timecost/m6/tabbyflow/tabbyflow-m6-20260429_041029/tabular_bundle/pipeline_m6/y_val.npy b/timecost/m6/tabbyflow/tabbyflow-m6-20260429_041029/tabular_bundle/pipeline_m6/y_val.npy new file mode 100644 index 0000000000000000000000000000000000000000..8d23ecacfe3b5a6516ea0c56d2ab30a4cbe101fd --- /dev/null +++ b/timecost/m6/tabbyflow/tabbyflow-m6-20260429_041029/tabular_bundle/pipeline_m6/y_val.npy @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:4495cd81dd4e25e4cece22309308cf6ac32d53e46ab3410a78c7e12900bd8f9e +size 79040 diff --git a/timecost/m6/tabbyflow/tabbyflow-m6-20260429_041029/train_20260429_041030.log b/timecost/m6/tabbyflow/tabbyflow-m6-20260429_041029/train_20260429_041030.log new file mode 100644 index 0000000000000000000000000000000000000000..1972f6cbeb6cddb044d759b3301547d4ed494aae --- /dev/null +++ b/timecost/m6/tabbyflow/tabbyflow-m6-20260429_041029/train_20260429_041030.log @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:d73a8a46feb3e57fcbf854bafd3ec87b8b2e46095356480983ec9e601cda85f6 +size 497663 diff --git a/timecost/m6/tabddpm/tabddpm-m6-20260429_052038/_tabddpm_sample_r0.py b/timecost/m6/tabddpm/tabddpm-m6-20260429_052038/_tabddpm_sample_r0.py new file mode 100644 index 0000000000000000000000000000000000000000..4989c94cb87185dd827fcbdbcb4332d02db7ba8b --- /dev/null +++ b/timecost/m6/tabddpm/tabddpm-m6-20260429_052038/_tabddpm_sample_r0.py @@ -0,0 +1,66 @@ +import os, sys, subprocess, json +import numpy as np +import pandas as pd + +tabddpm_root = "/workspace/tabddpm/code" +assert os.path.isdir(tabddpm_root), f"TabDDPM source not mounted: {tabddpm_root}" +env = os.environ.copy() +env["PYTHONPATH"] = tabddpm_root + (os.pathsep + env.get("PYTHONPATH", "")) + +# Reuse the compat wrapper (patches collections.Sequence for skorch) +wrapper = os.path.join(tabddpm_root, "_compat_run.py") +if not os.path.exists(wrapper): + with open(wrapper, "w") as f: + f.write( + "import collections, collections.abc\n" + "for _a in ('Sequence','MutableSequence','MutableMapping','Mapping'," + "'MutableSet','Set','Callable','Iterable','Iterator'):\n" + " if not hasattr(collections, _a): setattr(collections, _a, getattr(collections.abc, _a, None))\n" + "import sys, runpy\n" + "sys.argv = sys.argv[1:]\n" + "runpy.run_path(sys.argv[0], run_name='__main__')\n" + ) + +print(f"[TabDDPM] Sampling 9864 rows") +ret = subprocess.run( + [sys.executable, wrapper, "scripts/pipeline.py", + "--config", "/work/output-Benchmark-trainonly-v1/m6/tabddpm/tabddpm-m6-20260429_052038/config_sample_20260429_052144_r0.toml", + "--sample"], + cwd=tabddpm_root, + env=env +) +if ret.returncode != 0: + sys.exit(ret.returncode) + +# 将 .npy 输出转为 CSV(npy 在 TabDDPM 的 parent_dir,即 npy_dir) +info_path = "/work/output-Benchmark-trainonly-v1/m6/tabddpm/tabddpm-m6-20260429_052038/data/info.json" +with open(info_path) as f: + info = json.load(f) + +output_dir = "/work/output-Benchmark-trainonly-v1/m6/tabddpm/tabddpm-m6-20260429_052038/output" +col_names = info.get("column_names", []) + +parts = [] +x_num_path = os.path.join(output_dir, "X_num_train.npy") +x_cat_path = os.path.join(output_dir, "X_cat_train.npy") +y_path = os.path.join(output_dir, "y_train.npy") + +if os.path.exists(x_num_path): + parts.append(np.load(x_num_path, allow_pickle=True)) +if os.path.exists(x_cat_path): + parts.append(np.load(x_cat_path, allow_pickle=True).astype(float)) +if os.path.exists(y_path): + y = np.load(y_path, allow_pickle=True) + parts.append(y.reshape(-1, 1) if y.ndim == 1 else y) + +if parts: + combined = np.concatenate(parts, axis=1) + if col_names and len(col_names) == combined.shape[1]: + df = pd.DataFrame(combined, columns=col_names) + else: + df = pd.DataFrame(combined) + df.to_csv("/work/output-Benchmark-trainonly-v1/m6/tabddpm/tabddpm-m6-20260429_052038/tabddpm-m6-9864-20260429_052144.csv", index=False) + print(f"[TabDDPM] Saved {len(df)} rows -> /work/output-Benchmark-trainonly-v1/m6/tabddpm/tabddpm-m6-20260429_052038/tabddpm-m6-9864-20260429_052144.csv") +else: + print("[TabDDPM] WARNING: No output .npy files found") + sys.exit(1) diff --git a/timecost/m6/tabddpm/tabddpm-m6-20260429_052038/_tabddpm_train.py b/timecost/m6/tabddpm/tabddpm-m6-20260429_052038/_tabddpm_train.py new file mode 100644 index 0000000000000000000000000000000000000000..c43239108b866cd1e3bd5bb14d3986e4bd9e935d --- /dev/null +++ b/timecost/m6/tabddpm/tabddpm-m6-20260429_052038/_tabddpm_train.py @@ -0,0 +1,32 @@ +import os, sys, subprocess + +tabddpm_root = "/workspace/tabddpm/code" +assert os.path.isdir(tabddpm_root), f"TabDDPM source not mounted: {tabddpm_root}" +env = os.environ.copy() +env["PYTHONPATH"] = tabddpm_root + (os.pathsep + env.get("PYTHONPATH", "")) + +# Write a wrapper that patches collections.Sequence (removed in Python 3.10+) +# before running pipeline.py - needed because skorch uses old API +wrapper = os.path.join(tabddpm_root, "_compat_run.py") +with open(wrapper, "w") as f: + f.write( + "import collections, collections.abc\n" + "for _a in ('Sequence','MutableSequence','MutableMapping','Mapping'," + "'MutableSet','Set','Callable','Iterable','Iterator'):\n" + " if not hasattr(collections, _a): setattr(collections, _a, getattr(collections.abc, _a, None))\n" + "import sys, runpy\n" + "sys.argv = sys.argv[1:]\n" + "runpy.run_path(sys.argv[0], run_name='__main__')\n" + ) + +print(f"[TabDDPM] Training, config=/work/output-Benchmark-trainonly-v1/m6/tabddpm/tabddpm-m6-20260429_052038/config.toml") +ret = subprocess.run( + [sys.executable, wrapper, "scripts/pipeline.py", + "--config", "/work/output-Benchmark-trainonly-v1/m6/tabddpm/tabddpm-m6-20260429_052038/config.toml", + "--train"], + cwd=tabddpm_root, + env=env +) +if ret.returncode != 0: + sys.exit(ret.returncode) +print("[TabDDPM] Training complete") diff --git a/timecost/m6/tabddpm/tabddpm-m6-20260429_052038/config.toml b/timecost/m6/tabddpm/tabddpm-m6-20260429_052038/config.toml new file mode 100644 index 0000000000000000000000000000000000000000..815be0376b6ad58f43a29712d029bb70d6aa78cb --- /dev/null +++ b/timecost/m6/tabddpm/tabddpm-m6-20260429_052038/config.toml @@ -0,0 +1,39 @@ +seed = 0 +parent_dir = "/work/output-Benchmark-trainonly-v1/m6/tabddpm/tabddpm-m6-20260429_052038/output" +real_data_path = "/work/output-Benchmark-trainonly-v1/m6/tabddpm/tabddpm-m6-20260429_052038/data" +model_type = "mlp" +num_numerical_features = 14 +device = "cuda:0" + +[model_params] +d_in = 17 +num_classes = 3 +is_y_cond = true + +[model_params.rtdl_params] +d_layers = [256, 256] +dropout = 0.0 + +[diffusion_params] +num_timesteps = 1000 +gaussian_loss_type = "mse" + +[train.main] +steps = 5000 +lr = 0.001 +weight_decay = 0.0 +batch_size = 256 + +[train.T] +seed = 0 +normalization = "quantile" +num_nan_policy = "__none__" +cat_nan_policy = "__none__" +cat_min_frequency = "__none__" +cat_encoding = "__none__" +y_policy = "default" + +[sample] +num_samples = 1000 +batch_size = 1000 +seed = 0 diff --git a/timecost/m6/tabddpm/tabddpm-m6-20260429_052038/config_sample_20260429_052144_r0.toml b/timecost/m6/tabddpm/tabddpm-m6-20260429_052038/config_sample_20260429_052144_r0.toml new file mode 100644 index 0000000000000000000000000000000000000000..7a58c59c63eb2ca63dd026a2599232ea472f298e --- /dev/null +++ b/timecost/m6/tabddpm/tabddpm-m6-20260429_052038/config_sample_20260429_052144_r0.toml @@ -0,0 +1,39 @@ +seed = 0 +parent_dir = "/work/output-Benchmark-trainonly-v1/m6/tabddpm/tabddpm-m6-20260429_052038/output" +real_data_path = "/work/output-Benchmark-trainonly-v1/m6/tabddpm/tabddpm-m6-20260429_052038/data" +model_type = "mlp" +num_numerical_features = 14 +device = "cuda:0" + +[model_params] +d_in = 17 +num_classes = 3 +is_y_cond = true + +[model_params.rtdl_params] +d_layers = [256, 256] +dropout = 0.0 + +[diffusion_params] +num_timesteps = 1000 +gaussian_loss_type = "mse" + +[train.main] +steps = 5000 +lr = 0.001 +weight_decay = 0.0 +batch_size = 256 + +[train.T] +seed = 0 +normalization = "quantile" +num_nan_policy = "__none__" +cat_nan_policy = "__none__" +cat_min_frequency = "__none__" +cat_encoding = "__none__" +y_policy = "default" + +[sample] +num_samples = 9864 +batch_size = 1000 +seed = 0 diff --git a/timecost/m6/tabddpm/tabddpm-m6-20260429_052038/data/X_cat_train.npy b/timecost/m6/tabddpm/tabddpm-m6-20260429_052038/data/X_cat_train.npy new file mode 100644 index 0000000000000000000000000000000000000000..622304720bf969c46f4c82b28d35220f4b91c4b5 --- /dev/null +++ b/timecost/m6/tabddpm/tabddpm-m6-20260429_052038/data/X_cat_train.npy @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:33b3ba6d661fb460428f33f010200f46937687463db68f5f919e4743a9802815 +size 236864 diff --git a/timecost/m6/tabddpm/tabddpm-m6-20260429_052038/data/X_num_train.npy b/timecost/m6/tabddpm/tabddpm-m6-20260429_052038/data/X_num_train.npy new file mode 100644 index 0000000000000000000000000000000000000000..e00fb621bec79b3db12b58f7a335ce049229c0e9 --- /dev/null +++ b/timecost/m6/tabddpm/tabddpm-m6-20260429_052038/data/X_num_train.npy @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:960545f531401f06b1ef44d43f0e45228b36d96b6f6dbf87b8f6ad8578e915f5 +size 552512 diff --git a/timecost/m6/tabddpm/tabddpm-m6-20260429_052038/data/info.json b/timecost/m6/tabddpm/tabddpm-m6-20260429_052038/data/info.json new file mode 100644 index 0000000000000000000000000000000000000000..394febfeaea0c4c7a021b6ec83331f017340dec5 --- /dev/null +++ b/timecost/m6/tabddpm/tabddpm-m6-20260429_052038/data/info.json @@ -0,0 +1,52 @@ +{ + "name": "benchmark_dataset", + "task_type": "multiclass", + "n_num_features": 14, + "n_cat_features": 3, + "train_size": 9864, + "num_col_idx": [ + 0, + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "cat_col_idx": [ + 14, + 15, + 16 + ], + "target_col_idx": [ + 17 + ], + "column_names": [ + "Administrative", + "Administrative_Duration", + "Informational", + "Informational_Duration", + "ProductRelated", + "ProductRelated_Duration", + "BounceRates", + "ExitRates", + "PageValues", + "SpecialDay", + "OperatingSystems", + "Browser", + "Region", + "TrafficType", + "Month", + "Weekend", + "Revenue", + "VisitorType" + ], + "num_classes": 3 +} \ No newline at end of file diff --git a/timecost/m6/tabddpm/tabddpm-m6-20260429_052038/data/y_train.npy b/timecost/m6/tabddpm/tabddpm-m6-20260429_052038/data/y_train.npy new file mode 100644 index 0000000000000000000000000000000000000000..8d23ecacfe3b5a6516ea0c56d2ab30a4cbe101fd --- /dev/null +++ b/timecost/m6/tabddpm/tabddpm-m6-20260429_052038/data/y_train.npy @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:4495cd81dd4e25e4cece22309308cf6ac32d53e46ab3410a78c7e12900bd8f9e +size 79040 diff --git a/timecost/m6/tabddpm/tabddpm-m6-20260429_052038/gen_20260429_052144_r0.log b/timecost/m6/tabddpm/tabddpm-m6-20260429_052038/gen_20260429_052144_r0.log new file mode 100644 index 0000000000000000000000000000000000000000..84edf52be8f0f2c39fbe286db75b901c7e342838 --- /dev/null +++ b/timecost/m6/tabddpm/tabddpm-m6-20260429_052038/gen_20260429_052144_r0.log @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:7872d5ab28a8c448b2b34eebec9a24c1020aa9581ab8cd58392793602116e5db +size 210523 diff --git a/timecost/m6/tabddpm/tabddpm-m6-20260429_052038/input_snapshot.json b/timecost/m6/tabddpm/tabddpm-m6-20260429_052038/input_snapshot.json new file mode 100644 index 0000000000000000000000000000000000000000..c63947e0fe85a073bc1f0a732db5402cbf24263b --- /dev/null +++ b/timecost/m6/tabddpm/tabddpm-m6-20260429_052038/input_snapshot.json @@ -0,0 +1,36 @@ +{ + "dataset_id": "m6", + "model": "tabddpm", + "inputs": { + "train_csv": { + "path": "/data/jialinzhang/SynthesizePipeline-server/DatasetNew/m6/m6-train.csv", + "exists": true, + "size": 856785, + "sha256": "a5d1c487a8f2611385915fcc5a52bad546680ddbc8d23fc695f442cdd6dafa0c" + }, + "val_csv": { + "path": "/data/jialinzhang/SynthesizePipeline-server/DatasetNew/m6/m6-val.csv", + "exists": true, + "size": 107758, + "sha256": "598196cecc227cfba95c9796b80bc1baf684a0117e6673b8662b89482cdcb78f" + }, + "test_csv": { + "path": "/data/jialinzhang/SynthesizePipeline-server/DatasetNew/m6/m6-test.csv", + "exists": true, + "size": 107996, + "sha256": "ec939ad96a3b14dd960886359fb6c5d45591adc8a734661ade3dee1417a015de" + }, + "profile_json": { + "path": "/data/jialinzhang/SynthesizePipeline-server/DatasetNew/artifacts/data_core/tabular/m6/m6-dataset_profile.json", + "exists": true, + "size": 7622, + "sha256": "859f1fe93806c8ecdea9c9db9db34fb6cf94bc112b5c0a66b2436e8ef71c2e98" + }, + "contract_json": { + "path": "/data/jialinzhang/SynthesizePipeline-server/DatasetNew/artifacts/data_core/tabular/m6/m6-dataset_contract_v1.json", + "exists": true, + "size": 8990, + "sha256": "01142eeb121af615a644c3e312f5f3e79d805396339f40d5a300ba3560cf8e90" + } + } +} \ No newline at end of file diff --git a/timecost/m6/tabddpm/tabddpm-m6-20260429_052038/output/X_cat_train.npy b/timecost/m6/tabddpm/tabddpm-m6-20260429_052038/output/X_cat_train.npy new file mode 100644 index 0000000000000000000000000000000000000000..d18a2f18ec65e44276662b224518884cfaa8935b --- /dev/null +++ b/timecost/m6/tabddpm/tabddpm-m6-20260429_052038/output/X_cat_train.npy @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:c97d3ab8d704eda8df51f1a68ba429feb2a888e1196b983f78f3cda22b639218 +size 59527 diff --git a/timecost/m6/tabddpm/tabddpm-m6-20260429_052038/output/X_cat_unnorm.npy b/timecost/m6/tabddpm/tabddpm-m6-20260429_052038/output/X_cat_unnorm.npy new file mode 100644 index 0000000000000000000000000000000000000000..968fd621285feb08f4bce028772f037bd4e69e16 --- /dev/null +++ b/timecost/m6/tabddpm/tabddpm-m6-20260429_052038/output/X_cat_unnorm.npy @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:f78415f75c32c77c08f3d3533ef08036cb9a92d6cbff95d8b48e6637d076a70a +size 236864 diff --git a/timecost/m6/tabddpm/tabddpm-m6-20260429_052038/output/X_num_train.npy b/timecost/m6/tabddpm/tabddpm-m6-20260429_052038/output/X_num_train.npy new file mode 100644 index 0000000000000000000000000000000000000000..819645a74d413a7af59fb1146eac910fdc6d568b --- /dev/null +++ b/timecost/m6/tabddpm/tabddpm-m6-20260429_052038/output/X_num_train.npy @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:7b0f317f97500d1b4e6dff5e3d3d792ba7a895569c9c5a39a680a84a6b266c68 +size 1104896 diff --git a/timecost/m6/tabddpm/tabddpm-m6-20260429_052038/output/X_num_unnorm.npy b/timecost/m6/tabddpm/tabddpm-m6-20260429_052038/output/X_num_unnorm.npy new file mode 100644 index 0000000000000000000000000000000000000000..1814a1c1dae2922e1c47ca9c72f836a91ed23630 --- /dev/null +++ b/timecost/m6/tabddpm/tabddpm-m6-20260429_052038/output/X_num_unnorm.npy @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:d926989f489bd99adc5b101334cfdb69e5bde3c99be0f387aedd65cf3fb4227e +size 1104896 diff --git a/timecost/m6/tabddpm/tabddpm-m6-20260429_052038/output/config.toml b/timecost/m6/tabddpm/tabddpm-m6-20260429_052038/output/config.toml new file mode 100644 index 0000000000000000000000000000000000000000..7a58c59c63eb2ca63dd026a2599232ea472f298e --- /dev/null +++ b/timecost/m6/tabddpm/tabddpm-m6-20260429_052038/output/config.toml @@ -0,0 +1,39 @@ +seed = 0 +parent_dir = "/work/output-Benchmark-trainonly-v1/m6/tabddpm/tabddpm-m6-20260429_052038/output" +real_data_path = "/work/output-Benchmark-trainonly-v1/m6/tabddpm/tabddpm-m6-20260429_052038/data" +model_type = "mlp" +num_numerical_features = 14 +device = "cuda:0" + +[model_params] +d_in = 17 +num_classes = 3 +is_y_cond = true + +[model_params.rtdl_params] +d_layers = [256, 256] +dropout = 0.0 + +[diffusion_params] +num_timesteps = 1000 +gaussian_loss_type = "mse" + +[train.main] +steps = 5000 +lr = 0.001 +weight_decay = 0.0 +batch_size = 256 + +[train.T] +seed = 0 +normalization = "quantile" +num_nan_policy = "__none__" +cat_nan_policy = "__none__" +cat_min_frequency = "__none__" +cat_encoding = "__none__" +y_policy = "default" + +[sample] +num_samples = 9864 +batch_size = 1000 +seed = 0 diff --git a/timecost/m6/tabddpm/tabddpm-m6-20260429_052038/output/info.json b/timecost/m6/tabddpm/tabddpm-m6-20260429_052038/output/info.json new file mode 100644 index 0000000000000000000000000000000000000000..394febfeaea0c4c7a021b6ec83331f017340dec5 --- /dev/null +++ b/timecost/m6/tabddpm/tabddpm-m6-20260429_052038/output/info.json @@ -0,0 +1,52 @@ +{ + "name": "benchmark_dataset", + "task_type": "multiclass", + "n_num_features": 14, + "n_cat_features": 3, + "train_size": 9864, + "num_col_idx": [ + 0, + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "cat_col_idx": [ + 14, + 15, + 16 + ], + "target_col_idx": [ + 17 + ], + "column_names": [ + "Administrative", + "Administrative_Duration", + "Informational", + "Informational_Duration", + "ProductRelated", + "ProductRelated_Duration", + "BounceRates", + "ExitRates", + "PageValues", + "SpecialDay", + "OperatingSystems", + "Browser", + "Region", + "TrafficType", + "Month", + "Weekend", + "Revenue", + "VisitorType" + ], + "num_classes": 3 +} \ No newline at end of file diff --git a/timecost/m6/tabddpm/tabddpm-m6-20260429_052038/output/loss.csv b/timecost/m6/tabddpm/tabddpm-m6-20260429_052038/output/loss.csv new file mode 100644 index 0000000000000000000000000000000000000000..35600a450f6d3f4ec5fd90aae1cdaffe2c6328c3 --- /dev/null +++ b/timecost/m6/tabddpm/tabddpm-m6-20260429_052038/output/loss.csv @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:5283cc1fcdc24e36042ac035b59d6d1031ddf249bf55e50a0acbab4ed28f87ce +size 1522 diff --git a/timecost/m6/tabddpm/tabddpm-m6-20260429_052038/output/model.pt b/timecost/m6/tabddpm/tabddpm-m6-20260429_052038/output/model.pt new file mode 100644 index 0000000000000000000000000000000000000000..c36cb8b28491c94d2b87b50d6179c10855fbb3b9 --- /dev/null +++ b/timecost/m6/tabddpm/tabddpm-m6-20260429_052038/output/model.pt @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:668a5dd46d5f7f82b48668433c50654725e828d8b8b8468bf074dd86dbde134c +size 577174 diff --git a/timecost/m6/tabddpm/tabddpm-m6-20260429_052038/output/model_ema.pt b/timecost/m6/tabddpm/tabddpm-m6-20260429_052038/output/model_ema.pt new file mode 100644 index 0000000000000000000000000000000000000000..a36db1753cbb1656335643caf85b829d695520eb --- /dev/null +++ b/timecost/m6/tabddpm/tabddpm-m6-20260429_052038/output/model_ema.pt @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:16e2b2b69a3f81080393ffdff3619f374e8bdc62e06397cf0fb55559b00fa528 +size 578018 diff --git a/timecost/m6/tabddpm/tabddpm-m6-20260429_052038/output/y_train.npy b/timecost/m6/tabddpm/tabddpm-m6-20260429_052038/output/y_train.npy new file mode 100644 index 0000000000000000000000000000000000000000..1afff5dfbc20c4cf7a318713a3e643f5131d068b --- /dev/null +++ b/timecost/m6/tabddpm/tabddpm-m6-20260429_052038/output/y_train.npy @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:62cea20b4b6cb7717a9549c72c2a5439270960d0daa6b397f9e3b4494e43e8de +size 79040 diff --git a/timecost/m6/tabddpm/tabddpm-m6-20260429_052038/public_gate/normalized_schema_snapshot.json b/timecost/m6/tabddpm/tabddpm-m6-20260429_052038/public_gate/normalized_schema_snapshot.json new file mode 100644 index 0000000000000000000000000000000000000000..0d48abfe61f58323fd4a425d175b354d51045ae1 --- /dev/null +++ b/timecost/m6/tabddpm/tabddpm-m6-20260429_052038/public_gate/normalized_schema_snapshot.json @@ -0,0 +1,377 @@ +{ + "dataset_id": "m6", + "target_column": "VisitorType", + "task_type": "classification", + "columns": [ + { + "name": "Administrative", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 26, + "unique_ratio": 0.002636, + "example_values": [ + "0", + "3", + "2", + "6", + "1" + ] + } + }, + { + "name": "Administrative_Duration", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 2789, + "unique_ratio": 0.282745, + "example_values": [ + "0", + "45.8", + "77.7", + "52", + "46.33333333" + ] + } + }, + { + "name": "Informational", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 17, + "unique_ratio": 0.001723, + "example_values": [ + "0", + "1", + "3", + "5", + "4" + ] + } + }, + { + "name": "Informational_Duration", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 1074, + "unique_ratio": 0.108881, + "example_values": [ + "0", + "2", + "24", + "86.75", + "62.5" + ] + } + }, + { + "name": "ProductRelated", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 286, + "unique_ratio": 0.028994, + "example_values": [ + "13", + "8", + "63", + "15", + "3" + ] + } + }, + { + "name": "ProductRelated_Duration", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 7769, + "unique_ratio": 0.787612, + "example_values": [ + "549.2", + "64", + "2435.697531", + "267.7333333", + "57.4" + ] + } + }, + { + "name": "BounceRates", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 1574, + "unique_ratio": 0.15957, + "example_values": [ + "0.019230769", + "0", + "0.00952381", + "0.022857143", + "0.004166667" + ] + } + }, + { + "name": "ExitRates", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 3953, + "unique_ratio": 0.40075, + "example_values": [ + "0.045421245", + "0.05", + "0.017460317", + "0.040606061", + "0.133333333" + ] + } + }, + { + "name": "PageValues", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 2129, + "unique_ratio": 0.215835, + "example_values": [ + "0", + "7.945368291", + "10.37042373", + "18.99269231", + "44.33548922" + ] + } + }, + { + "name": "SpecialDay", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 6, + "unique_ratio": 0.000608, + "example_values": [ + "0", + "0.4", + "0.2", + "0.8", + "1" + ] + } + }, + { + "name": "Month", + "role": "feature", + "semantic_type": "categorical", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 10, + "unique_ratio": 0.001014, + "example_values": [ + "Nov", + "Dec", + "Jul", + "Aug", + "Mar" + ] + } + }, + { + "name": "OperatingSystems", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 8, + "unique_ratio": 0.000811, + "example_values": [ + "3", + "2", + "6", + "4", + "1" + ] + } + }, + { + "name": "Browser", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 13, + "unique_ratio": 0.001318, + "example_values": [ + "2", + "1", + "5", + "4", + "3" + ] + } + }, + { + "name": "Region", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 9, + "unique_ratio": 0.000912, + "example_values": [ + "6", + "3", + "4", + "1", + "9" + ] + } + }, + { + "name": "TrafficType", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 20, + "unique_ratio": 0.002028, + "example_values": [ + "2", + "8", + "3", + "11", + "1" + ] + } + }, + { + "name": "VisitorType", + "role": "target", + "semantic_type": "categorical", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 3, + "unique_ratio": 0.000304, + "example_values": [ + "Returning_Visitor", + "New_Visitor", + "Other" + ] + } + }, + { + "name": "Weekend", + "role": "feature", + "semantic_type": "boolean", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 2, + "unique_ratio": 0.000203, + "example_values": [ + "FALSE", + "TRUE" + ] + } + }, + { + "name": "Revenue", + "role": "feature", + "semantic_type": "boolean", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 2, + "unique_ratio": 0.000203, + "example_values": [ + "FALSE", + "TRUE" + ] + } + } + ] +} \ No newline at end of file diff --git a/timecost/m6/tabddpm/tabddpm-m6-20260429_052038/public_gate/public_gate_report.json b/timecost/m6/tabddpm/tabddpm-m6-20260429_052038/public_gate/public_gate_report.json new file mode 100644 index 0000000000000000000000000000000000000000..99a260799c8356f445bdc0b33ccce8b459ba1938 --- /dev/null +++ b/timecost/m6/tabddpm/tabddpm-m6-20260429_052038/public_gate/public_gate_report.json @@ -0,0 +1,37 @@ +{ + "dataset_id": "m6", + "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": "VisitorType", + "task_type": "classification", + "input_splits": { + "train": "/data/jialinzhang/SynthesizePipeline-server/DatasetNew/m6/m6-train.csv", + "val": "/data/jialinzhang/SynthesizePipeline-server/DatasetNew/m6/m6-val.csv", + "test": "/data/jialinzhang/SynthesizePipeline-server/DatasetNew/m6/m6-test.csv" + } +} \ No newline at end of file diff --git a/timecost/m6/tabddpm/tabddpm-m6-20260429_052038/public_gate/staged_input_manifest.json b/timecost/m6/tabddpm/tabddpm-m6-20260429_052038/public_gate/staged_input_manifest.json new file mode 100644 index 0000000000000000000000000000000000000000..7e2809e828b86c3210d8017dfb0779440beecdb5 --- /dev/null +++ b/timecost/m6/tabddpm/tabddpm-m6-20260429_052038/public_gate/staged_input_manifest.json @@ -0,0 +1,382 @@ +{ + "dataset_id": "m6", + "target_column": "VisitorType", + "task_type": "classification", + "train_csv": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/m6/tabddpm/tabddpm-m6-20260429_052038/staged/public/train.csv", + "val_csv": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/m6/tabddpm/tabddpm-m6-20260429_052038/staged/public/val.csv", + "test_csv": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/m6/tabddpm/tabddpm-m6-20260429_052038/staged/public/test.csv", + "features_json": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/m6/tabddpm/tabddpm-m6-20260429_052038/staged/public/staged_features.json", + "public_gate_report": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/m6/tabddpm/tabddpm-m6-20260429_052038/public_gate/public_gate_report.json", + "column_schema": [ + { + "name": "Administrative", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 26, + "unique_ratio": 0.002636, + "example_values": [ + "0", + "3", + "2", + "6", + "1" + ] + } + }, + { + "name": "Administrative_Duration", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 2789, + "unique_ratio": 0.282745, + "example_values": [ + "0", + "45.8", + "77.7", + "52", + "46.33333333" + ] + } + }, + { + "name": "Informational", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 17, + "unique_ratio": 0.001723, + "example_values": [ + "0", + "1", + "3", + "5", + "4" + ] + } + }, + { + "name": "Informational_Duration", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 1074, + "unique_ratio": 0.108881, + "example_values": [ + "0", + "2", + "24", + "86.75", + "62.5" + ] + } + }, + { + "name": "ProductRelated", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 286, + "unique_ratio": 0.028994, + "example_values": [ + "13", + "8", + "63", + "15", + "3" + ] + } + }, + { + "name": "ProductRelated_Duration", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 7769, + "unique_ratio": 0.787612, + "example_values": [ + "549.2", + "64", + "2435.697531", + "267.7333333", + "57.4" + ] + } + }, + { + "name": "BounceRates", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 1574, + "unique_ratio": 0.15957, + "example_values": [ + "0.019230769", + "0", + "0.00952381", + "0.022857143", + "0.004166667" + ] + } + }, + { + "name": "ExitRates", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 3953, + "unique_ratio": 0.40075, + "example_values": [ + "0.045421245", + "0.05", + "0.017460317", + "0.040606061", + "0.133333333" + ] + } + }, + { + "name": "PageValues", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 2129, + "unique_ratio": 0.215835, + "example_values": [ + "0", + "7.945368291", + "10.37042373", + "18.99269231", + "44.33548922" + ] + } + }, + { + "name": "SpecialDay", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 6, + "unique_ratio": 0.000608, + "example_values": [ + "0", + "0.4", + "0.2", + "0.8", + "1" + ] + } + }, + { + "name": "Month", + "role": "feature", + "semantic_type": "categorical", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 10, + "unique_ratio": 0.001014, + "example_values": [ + "Nov", + "Dec", + "Jul", + "Aug", + "Mar" + ] + } + }, + { + "name": "OperatingSystems", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 8, + "unique_ratio": 0.000811, + "example_values": [ + "3", + "2", + "6", + "4", + "1" + ] + } + }, + { + "name": "Browser", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 13, + "unique_ratio": 0.001318, + "example_values": [ + "2", + "1", + "5", + "4", + "3" + ] + } + }, + { + "name": "Region", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 9, + "unique_ratio": 0.000912, + "example_values": [ + "6", + "3", + "4", + "1", + "9" + ] + } + }, + { + "name": "TrafficType", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 20, + "unique_ratio": 0.002028, + "example_values": [ + "2", + "8", + "3", + "11", + "1" + ] + } + }, + { + "name": "VisitorType", + "role": "target", + "semantic_type": "categorical", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 3, + "unique_ratio": 0.000304, + "example_values": [ + "Returning_Visitor", + "New_Visitor", + "Other" + ] + } + }, + { + "name": "Weekend", + "role": "feature", + "semantic_type": "boolean", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 2, + "unique_ratio": 0.000203, + "example_values": [ + "FALSE", + "TRUE" + ] + } + }, + { + "name": "Revenue", + "role": "feature", + "semantic_type": "boolean", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 2, + "unique_ratio": 0.000203, + "example_values": [ + "FALSE", + "TRUE" + ] + } + } + ] +} \ No newline at end of file diff --git a/timecost/m6/tabddpm/tabddpm-m6-20260429_052038/runtime_result.json b/timecost/m6/tabddpm/tabddpm-m6-20260429_052038/runtime_result.json new file mode 100644 index 0000000000000000000000000000000000000000..26544d6dda0095490e44189c1ed8831ed8e4b566 --- /dev/null +++ b/timecost/m6/tabddpm/tabddpm-m6-20260429_052038/runtime_result.json @@ -0,0 +1,15 @@ +{ + "dataset_id": "m6", + "model": "tabddpm", + "run_id": "tabddpm-m6-20260429_052038", + "public_gate_status": "pass", + "adapter_ready_status": "pass", + "train_status": "success", + "generate_status": "success", + "reason_code": null, + "reason_detail": null, + "artifacts": { + "synthetic_csv": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/m6/tabddpm/tabddpm-m6-20260429_052038/tabddpm-m6-9864-20260429_052144.csv", + "model_path": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/m6/tabddpm/tabddpm-m6-20260429_052038" + } +} \ No newline at end of file diff --git a/timecost/m6/tabddpm/tabddpm-m6-20260429_052038/staged/public/staged_features.json b/timecost/m6/tabddpm/tabddpm-m6-20260429_052038/staged/public/staged_features.json new file mode 100644 index 0000000000000000000000000000000000000000..49b25bd1347f910a2b95ef0c137d1a64bf69e0cb --- /dev/null +++ b/timecost/m6/tabddpm/tabddpm-m6-20260429_052038/staged/public/staged_features.json @@ -0,0 +1,92 @@ +[ + { + "feature_name": "Administrative", + "data_type": "continuous", + "is_target": false + }, + { + "feature_name": "Administrative_Duration", + "data_type": "continuous", + "is_target": false + }, + { + "feature_name": "Informational", + "data_type": "continuous", + "is_target": false + }, + { + "feature_name": "Informational_Duration", + "data_type": "continuous", + "is_target": false + }, + { + "feature_name": "ProductRelated", + "data_type": "continuous", + "is_target": false + }, + { + "feature_name": "ProductRelated_Duration", + "data_type": "continuous", + "is_target": false + }, + { + "feature_name": "BounceRates", + "data_type": "continuous", + "is_target": false + }, + { + "feature_name": "ExitRates", + "data_type": "continuous", + "is_target": false + }, + { + "feature_name": "PageValues", + "data_type": "continuous", + "is_target": false + }, + { + "feature_name": "SpecialDay", + "data_type": "continuous", + "is_target": false + }, + { + "feature_name": "Month", + "data_type": "categorical", + "is_target": false + }, + { + "feature_name": "OperatingSystems", + "data_type": "continuous", + "is_target": false + }, + { + "feature_name": "Browser", + "data_type": "continuous", + "is_target": false + }, + { + "feature_name": "Region", + "data_type": "continuous", + "is_target": false + }, + { + "feature_name": "TrafficType", + "data_type": "continuous", + "is_target": false + }, + { + "feature_name": "VisitorType", + "data_type": "categorical", + "is_target": true + }, + { + "feature_name": "Weekend", + "data_type": "binary", + "is_target": false + }, + { + "feature_name": "Revenue", + "data_type": "binary", + "is_target": false + } +] \ No newline at end of file diff --git a/timecost/m6/tabddpm/tabddpm-m6-20260429_052038/staged/public/test.csv b/timecost/m6/tabddpm/tabddpm-m6-20260429_052038/staged/public/test.csv new file mode 100644 index 0000000000000000000000000000000000000000..3944bd554327e948b8bda8c383bd581f3fc26ec6 --- /dev/null +++ b/timecost/m6/tabddpm/tabddpm-m6-20260429_052038/staged/public/test.csv @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:d16d0389cb0fe4b23bab344dc10070de6678357a9452f9f620d0eeba66a6b12d +size 116376 diff --git a/timecost/m6/tabddpm/tabddpm-m6-20260429_052038/staged/public/train.csv b/timecost/m6/tabddpm/tabddpm-m6-20260429_052038/staged/public/train.csv new file mode 100644 index 0000000000000000000000000000000000000000..ae3a266ed7bebf02bc27c50b9dea6e8c5fe71c10 --- /dev/null +++ b/timecost/m6/tabddpm/tabddpm-m6-20260429_052038/staged/public/train.csv @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:e1f0338c367408dc21d5a4ec9cdc5d3fe8188916db6085f3fd326304a55551e1 +size 924849 diff --git a/timecost/m6/tabddpm/tabddpm-m6-20260429_052038/staged/public/val.csv b/timecost/m6/tabddpm/tabddpm-m6-20260429_052038/staged/public/val.csv new file mode 100644 index 0000000000000000000000000000000000000000..60be57a3609a30d56d27e37e49a3aedfa6294db5 --- /dev/null +++ b/timecost/m6/tabddpm/tabddpm-m6-20260429_052038/staged/public/val.csv @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:cb9169f3c7213420491d9b709ee1cc650aeaed732fa77dcbd6ffe3583366b2d4 +size 116198 diff --git a/timecost/m6/tabddpm/tabddpm-m6-20260429_052038/staged/tabddpm/adapter_report.json b/timecost/m6/tabddpm/tabddpm-m6-20260429_052038/staged/tabddpm/adapter_report.json new file mode 100644 index 0000000000000000000000000000000000000000..d46786202195905a6c796492d9ec1cd2645f0973 --- /dev/null +++ b/timecost/m6/tabddpm/tabddpm-m6-20260429_052038/staged/tabddpm/adapter_report.json @@ -0,0 +1,7 @@ +{ + "adapter_ready_status": "pass", + "adapter_fail_reason_code": null, + "adapter_fail_detail": null, + "adapter_transforms_applied": [], + "model_input_manifest": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/m6/tabddpm/tabddpm-m6-20260429_052038/staged/tabddpm/model_input_manifest.json" +} \ No newline at end of file diff --git a/timecost/m6/tabddpm/tabddpm-m6-20260429_052038/staged/tabddpm/adapter_transforms_applied.json b/timecost/m6/tabddpm/tabddpm-m6-20260429_052038/staged/tabddpm/adapter_transforms_applied.json new file mode 100644 index 0000000000000000000000000000000000000000..0637a088a01e8ddab3bf3fa98dbe804cbde1a0dc --- /dev/null +++ b/timecost/m6/tabddpm/tabddpm-m6-20260429_052038/staged/tabddpm/adapter_transforms_applied.json @@ -0,0 +1 @@ +[] \ No newline at end of file diff --git a/timecost/m6/tabddpm/tabddpm-m6-20260429_052038/staged/tabddpm/model_input_manifest.json b/timecost/m6/tabddpm/tabddpm-m6-20260429_052038/staged/tabddpm/model_input_manifest.json new file mode 100644 index 0000000000000000000000000000000000000000..263056c99ecbe8522589d6788648bec2362bfb9b --- /dev/null +++ b/timecost/m6/tabddpm/tabddpm-m6-20260429_052038/staged/tabddpm/model_input_manifest.json @@ -0,0 +1,384 @@ +{ + "dataset_id": "m6", + "model": "tabddpm", + "target_column": "VisitorType", + "task_type": "classification", + "column_schema": [ + { + "name": "Administrative", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 26, + "unique_ratio": 0.002636, + "example_values": [ + "0", + "3", + "2", + "6", + "1" + ] + } + }, + { + "name": "Administrative_Duration", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 2789, + "unique_ratio": 0.282745, + "example_values": [ + "0", + "45.8", + "77.7", + "52", + "46.33333333" + ] + } + }, + { + "name": "Informational", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 17, + "unique_ratio": 0.001723, + "example_values": [ + "0", + "1", + "3", + "5", + "4" + ] + } + }, + { + "name": "Informational_Duration", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 1074, + "unique_ratio": 0.108881, + "example_values": [ + "0", + "2", + "24", + "86.75", + "62.5" + ] + } + }, + { + "name": "ProductRelated", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 286, + "unique_ratio": 0.028994, + "example_values": [ + "13", + "8", + "63", + "15", + "3" + ] + } + }, + { + "name": "ProductRelated_Duration", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 7769, + "unique_ratio": 0.787612, + "example_values": [ + "549.2", + "64", + "2435.697531", + "267.7333333", + "57.4" + ] + } + }, + { + "name": "BounceRates", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 1574, + "unique_ratio": 0.15957, + "example_values": [ + "0.019230769", + "0", + "0.00952381", + "0.022857143", + "0.004166667" + ] + } + }, + { + "name": "ExitRates", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 3953, + "unique_ratio": 0.40075, + "example_values": [ + "0.045421245", + "0.05", + "0.017460317", + "0.040606061", + "0.133333333" + ] + } + }, + { + "name": "PageValues", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 2129, + "unique_ratio": 0.215835, + "example_values": [ + "0", + "7.945368291", + "10.37042373", + "18.99269231", + "44.33548922" + ] + } + }, + { + "name": "SpecialDay", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 6, + "unique_ratio": 0.000608, + "example_values": [ + "0", + "0.4", + "0.2", + "0.8", + "1" + ] + } + }, + { + "name": "Month", + "role": "feature", + "semantic_type": "categorical", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 10, + "unique_ratio": 0.001014, + "example_values": [ + "Nov", + "Dec", + "Jul", + "Aug", + "Mar" + ] + } + }, + { + "name": "OperatingSystems", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 8, + "unique_ratio": 0.000811, + "example_values": [ + "3", + "2", + "6", + "4", + "1" + ] + } + }, + { + "name": "Browser", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 13, + "unique_ratio": 0.001318, + "example_values": [ + "2", + "1", + "5", + "4", + "3" + ] + } + }, + { + "name": "Region", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 9, + "unique_ratio": 0.000912, + "example_values": [ + "6", + "3", + "4", + "1", + "9" + ] + } + }, + { + "name": "TrafficType", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 20, + "unique_ratio": 0.002028, + "example_values": [ + "2", + "8", + "3", + "11", + "1" + ] + } + }, + { + "name": "VisitorType", + "role": "target", + "semantic_type": "categorical", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 3, + "unique_ratio": 0.000304, + "example_values": [ + "Returning_Visitor", + "New_Visitor", + "Other" + ] + } + }, + { + "name": "Weekend", + "role": "feature", + "semantic_type": "boolean", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 2, + "unique_ratio": 0.000203, + "example_values": [ + "FALSE", + "TRUE" + ] + } + }, + { + "name": "Revenue", + "role": "feature", + "semantic_type": "boolean", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 2, + "unique_ratio": 0.000203, + "example_values": [ + "FALSE", + "TRUE" + ] + } + } + ], + "public_manifest": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/m6/tabddpm/tabddpm-m6-20260429_052038/public_gate/staged_input_manifest.json", + "train_csv": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/m6/tabddpm/tabddpm-m6-20260429_052038/staged/public/train.csv", + "val_csv": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/m6/tabddpm/tabddpm-m6-20260429_052038/staged/public/val.csv", + "test_csv": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/m6/tabddpm/tabddpm-m6-20260429_052038/staged/public/test.csv", + "features_json": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/m6/tabddpm/tabddpm-m6-20260429_052038/staged/public/staged_features.json", + "public_gate_report": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/m6/tabddpm/tabddpm-m6-20260429_052038/public_gate/public_gate_report.json" +} \ No newline at end of file diff --git a/timecost/m6/tabddpm/tabddpm-m6-20260429_052038/tabddpm-m6-9864-20260429_052144.csv b/timecost/m6/tabddpm/tabddpm-m6-20260429_052038/tabddpm-m6-9864-20260429_052144.csv new file mode 100644 index 0000000000000000000000000000000000000000..a9516dc43e5d9fca7b263e4b426143044893e78f --- /dev/null +++ b/timecost/m6/tabddpm/tabddpm-m6-20260429_052038/tabddpm-m6-9864-20260429_052144.csv @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:6d475389e311c4299c328469b46c4e3282789ebf111cf67e98e6ad63601a2d59 +size 1188819 diff --git a/timecost/m6/tabddpm/tabddpm-m6-20260429_052038/train_20260429_052038.log b/timecost/m6/tabddpm/tabddpm-m6-20260429_052038/train_20260429_052038.log new file mode 100644 index 0000000000000000000000000000000000000000..8e5f76b3de4efcab4456a129d194981e3a3402a3 --- /dev/null +++ b/timecost/m6/tabddpm/tabddpm-m6-20260429_052038/train_20260429_052038.log @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:488c7c8b427e9c663b6b12b4e009ba080c2b26a0a83f6f8cd2a3023e97532281 +size 1153 diff --git a/timecost/m6/tabdiff/tabdiff-m6-20260429_042700/_tabdiff_gen.py b/timecost/m6/tabdiff/tabdiff-m6-20260429_042700/_tabdiff_gen.py new file mode 100644 index 0000000000000000000000000000000000000000..1d84f1aa900f80f3bf11a8051db5759d352a303f --- /dev/null +++ b/timecost/m6/tabdiff/tabdiff-m6-20260429_042700/_tabdiff_gen.py @@ -0,0 +1,36 @@ + +import os, shutil, subprocess, sys +td = r"/workspace/TabDiff" +name = r"pipeline_m6" +src = r"/work/output-Benchmark-trainonly-v1/m6/tabdiff/tabdiff-m6-20260429_042700/tabular_bundle/pipeline_m6" +dst_data = os.path.join(td, "data", name) +dst_syn = os.path.join(td, "synthetic", name) +shutil.rmtree(dst_data, ignore_errors=True) +shutil.copytree(src, dst_data) +os.makedirs(dst_syn, exist_ok=True) +for fn in ("real.csv", "test.csv", "val.csv"): + shutil.copy(os.path.join(src, fn), os.path.join(dst_syn, fn)) +os.chdir(td) +os.environ["PYTHONPATH"] = td + os.pathsep + os.environ.get("PYTHONPATH", "") +subprocess.check_call([ + sys.executable, "-m", "tabdiff.main", + "--dataname", name, "--mode", "test", "--gpu", "0", + "--no_wandb", "--exp_name", r"adapter_learnable", + "--ckpt_path", r"/workspace/TabDiff/tabdiff/ckpt/pipeline_m6/adapter_learnable/model_500.pt", + "--num_samples_to_generate", str(int(9864)), +]) +# test() 写入 tabdiff/result////samples.csv +import glob as g +base = os.path.join(td, "tabdiff", "result", name, r"adapter_learnable") +best = None +best_t = -1.0 +for root, _, files in os.walk(base): + if "samples.csv" in files: + p = os.path.join(root, "samples.csv") + t = os.path.getmtime(p) + if t > best_t: + best_t = t + best = p +if not best: + raise SystemExit("tabdiff: no samples.csv under " + base) +shutil.copy(best, r"/work/output-Benchmark-trainonly-v1/m6/tabdiff/tabdiff-m6-20260429_042700/tabdiff-m6-9864-20260429_043402.csv") diff --git a/timecost/m6/tabdiff/tabdiff-m6-20260429_042700/_tabdiff_train.py b/timecost/m6/tabdiff/tabdiff-m6-20260429_042700/_tabdiff_train.py new file mode 100644 index 0000000000000000000000000000000000000000..a68c6a882e2ddef4634feb29817cd820ef424006 --- /dev/null +++ b/timecost/m6/tabdiff/tabdiff-m6-20260429_042700/_tabdiff_train.py @@ -0,0 +1,21 @@ + +import os, shutil, subprocess, sys +td = r"/workspace/TabDiff" +name = r"pipeline_m6" +src = r"/work/output-Benchmark-trainonly-v1/m6/tabdiff/tabdiff-m6-20260429_042700/tabular_bundle/pipeline_m6" +dst_data = os.path.join(td, "data", name) +dst_syn = os.path.join(td, "synthetic", name) +shutil.rmtree(dst_data, ignore_errors=True) +shutil.copytree(src, dst_data) +os.makedirs(dst_syn, exist_ok=True) +for fn in ("real.csv", "test.csv", "val.csv"): + shutil.copy(os.path.join(src, fn), os.path.join(dst_syn, fn)) +os.chdir(td) +os.environ["PYTHONPATH"] = td + os.pathsep + os.environ.get("PYTHONPATH", "") +os.environ["TABDIFF_SMOKE_STEPS"] = "500" +os.environ["TABDIFF_ADAPTER_TRAIN"] = "1" +subprocess.check_call([ + sys.executable, "-m", "tabdiff.main", + "--dataname", name, "--mode", "train", "--gpu", "0", + "--no_wandb", "--exp_name", r"adapter_learnable", +]) diff --git a/timecost/m6/tabdiff/tabdiff-m6-20260429_042700/gen_20260429_043402.log b/timecost/m6/tabdiff/tabdiff-m6-20260429_042700/gen_20260429_043402.log new file mode 100644 index 0000000000000000000000000000000000000000..a344ca6abb21968f4809751834f7d5a97c793b69 --- /dev/null +++ b/timecost/m6/tabdiff/tabdiff-m6-20260429_042700/gen_20260429_043402.log @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:fe1a358e1512516c736c71ce06d078eebb0619b7a50a4ffe8d81da33d1a568ac +size 4744 diff --git a/timecost/m6/tabdiff/tabdiff-m6-20260429_042700/input_snapshot.json b/timecost/m6/tabdiff/tabdiff-m6-20260429_042700/input_snapshot.json new file mode 100644 index 0000000000000000000000000000000000000000..a94137e83ea256783faf15493a760550dd709020 --- /dev/null +++ b/timecost/m6/tabdiff/tabdiff-m6-20260429_042700/input_snapshot.json @@ -0,0 +1,36 @@ +{ + "dataset_id": "m6", + "model": "tabdiff", + "inputs": { + "train_csv": { + "path": "/data/jialinzhang/SynthesizePipeline-server/DatasetNew/m6/m6-train.csv", + "exists": true, + "size": 856785, + "sha256": "a5d1c487a8f2611385915fcc5a52bad546680ddbc8d23fc695f442cdd6dafa0c" + }, + "val_csv": { + "path": "/data/jialinzhang/SynthesizePipeline-server/DatasetNew/m6/m6-val.csv", + "exists": true, + "size": 107758, + "sha256": "598196cecc227cfba95c9796b80bc1baf684a0117e6673b8662b89482cdcb78f" + }, + "test_csv": { + "path": "/data/jialinzhang/SynthesizePipeline-server/DatasetNew/m6/m6-test.csv", + "exists": true, + "size": 107996, + "sha256": "ec939ad96a3b14dd960886359fb6c5d45591adc8a734661ade3dee1417a015de" + }, + "profile_json": { + "path": "/data/jialinzhang/SynthesizePipeline-server/DatasetNew/artifacts/data_core/tabular/m6/m6-dataset_profile.json", + "exists": true, + "size": 7622, + "sha256": "859f1fe93806c8ecdea9c9db9db34fb6cf94bc112b5c0a66b2436e8ef71c2e98" + }, + "contract_json": { + "path": "/data/jialinzhang/SynthesizePipeline-server/DatasetNew/artifacts/data_core/tabular/m6/m6-dataset_contract_v1.json", + "exists": true, + "size": 8990, + "sha256": "01142eeb121af615a644c3e312f5f3e79d805396339f40d5a300ba3560cf8e90" + } + } +} \ No newline at end of file diff --git a/timecost/m6/tabdiff/tabdiff-m6-20260429_042700/models_tabdiff/trained.pt b/timecost/m6/tabdiff/tabdiff-m6-20260429_042700/models_tabdiff/trained.pt new file mode 100644 index 0000000000000000000000000000000000000000..bc319a55a9c7152a1137f968b6fa1c735125ad11 --- /dev/null +++ b/timecost/m6/tabdiff/tabdiff-m6-20260429_042700/models_tabdiff/trained.pt @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:306660b8aad4549267c68390b017e15ddb9bc06a02c80515eb72a97ae31a81eb +size 74 diff --git a/timecost/m6/tabdiff/tabdiff-m6-20260429_042700/public_gate/normalized_schema_snapshot.json b/timecost/m6/tabdiff/tabdiff-m6-20260429_042700/public_gate/normalized_schema_snapshot.json new file mode 100644 index 0000000000000000000000000000000000000000..0d48abfe61f58323fd4a425d175b354d51045ae1 --- /dev/null +++ b/timecost/m6/tabdiff/tabdiff-m6-20260429_042700/public_gate/normalized_schema_snapshot.json @@ -0,0 +1,377 @@ +{ + "dataset_id": "m6", + "target_column": "VisitorType", + "task_type": "classification", + "columns": [ + { + "name": "Administrative", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 26, + "unique_ratio": 0.002636, + "example_values": [ + "0", + "3", + "2", + "6", + "1" + ] + } + }, + { + "name": "Administrative_Duration", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 2789, + "unique_ratio": 0.282745, + "example_values": [ + "0", + "45.8", + "77.7", + "52", + "46.33333333" + ] + } + }, + { + "name": "Informational", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 17, + "unique_ratio": 0.001723, + "example_values": [ + "0", + "1", + "3", + "5", + "4" + ] + } + }, + { + "name": "Informational_Duration", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 1074, + "unique_ratio": 0.108881, + "example_values": [ + "0", + "2", + "24", + "86.75", + "62.5" + ] + } + }, + { + "name": "ProductRelated", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 286, + "unique_ratio": 0.028994, + "example_values": [ + "13", + "8", + "63", + "15", + "3" + ] + } + }, + { + "name": "ProductRelated_Duration", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 7769, + "unique_ratio": 0.787612, + "example_values": [ + "549.2", + "64", + "2435.697531", + "267.7333333", + "57.4" + ] + } + }, + { + "name": "BounceRates", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 1574, + "unique_ratio": 0.15957, + "example_values": [ + "0.019230769", + "0", + "0.00952381", + "0.022857143", + "0.004166667" + ] + } + }, + { + "name": "ExitRates", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 3953, + "unique_ratio": 0.40075, + "example_values": [ + "0.045421245", + "0.05", + "0.017460317", + "0.040606061", + "0.133333333" + ] + } + }, + { + "name": "PageValues", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 2129, + "unique_ratio": 0.215835, + "example_values": [ + "0", + "7.945368291", + "10.37042373", + "18.99269231", + "44.33548922" + ] + } + }, + { + "name": "SpecialDay", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 6, + "unique_ratio": 0.000608, + "example_values": [ + "0", + "0.4", + "0.2", + "0.8", + "1" + ] + } + }, + { + "name": "Month", + "role": "feature", + "semantic_type": "categorical", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 10, + "unique_ratio": 0.001014, + "example_values": [ + "Nov", + "Dec", + "Jul", + "Aug", + "Mar" + ] + } + }, + { + "name": "OperatingSystems", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 8, + "unique_ratio": 0.000811, + "example_values": [ + "3", + "2", + "6", + "4", + "1" + ] + } + }, + { + "name": "Browser", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 13, + "unique_ratio": 0.001318, + "example_values": [ + "2", + "1", + "5", + "4", + "3" + ] + } + }, + { + "name": "Region", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 9, + "unique_ratio": 0.000912, + "example_values": [ + "6", + "3", + "4", + "1", + "9" + ] + } + }, + { + "name": "TrafficType", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 20, + "unique_ratio": 0.002028, + "example_values": [ + "2", + "8", + "3", + "11", + "1" + ] + } + }, + { + "name": "VisitorType", + "role": "target", + "semantic_type": "categorical", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 3, + "unique_ratio": 0.000304, + "example_values": [ + "Returning_Visitor", + "New_Visitor", + "Other" + ] + } + }, + { + "name": "Weekend", + "role": "feature", + "semantic_type": "boolean", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 2, + "unique_ratio": 0.000203, + "example_values": [ + "FALSE", + "TRUE" + ] + } + }, + { + "name": "Revenue", + "role": "feature", + "semantic_type": "boolean", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 2, + "unique_ratio": 0.000203, + "example_values": [ + "FALSE", + "TRUE" + ] + } + } + ] +} \ No newline at end of file diff --git a/timecost/m6/tabdiff/tabdiff-m6-20260429_042700/public_gate/public_gate_report.json b/timecost/m6/tabdiff/tabdiff-m6-20260429_042700/public_gate/public_gate_report.json new file mode 100644 index 0000000000000000000000000000000000000000..99a260799c8356f445bdc0b33ccce8b459ba1938 --- /dev/null +++ b/timecost/m6/tabdiff/tabdiff-m6-20260429_042700/public_gate/public_gate_report.json @@ -0,0 +1,37 @@ +{ + "dataset_id": "m6", + "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": "VisitorType", + "task_type": "classification", + "input_splits": { + "train": "/data/jialinzhang/SynthesizePipeline-server/DatasetNew/m6/m6-train.csv", + "val": "/data/jialinzhang/SynthesizePipeline-server/DatasetNew/m6/m6-val.csv", + "test": "/data/jialinzhang/SynthesizePipeline-server/DatasetNew/m6/m6-test.csv" + } +} \ No newline at end of file diff --git a/timecost/m6/tabdiff/tabdiff-m6-20260429_042700/public_gate/staged_input_manifest.json b/timecost/m6/tabdiff/tabdiff-m6-20260429_042700/public_gate/staged_input_manifest.json new file mode 100644 index 0000000000000000000000000000000000000000..e27b9f721b68c955711f70309d595424dc783c0f --- /dev/null +++ b/timecost/m6/tabdiff/tabdiff-m6-20260429_042700/public_gate/staged_input_manifest.json @@ -0,0 +1,382 @@ +{ + "dataset_id": "m6", + "target_column": "VisitorType", + "task_type": "classification", + "train_csv": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/m6/tabdiff/tabdiff-m6-20260429_042700/staged/public/train.csv", + "val_csv": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/m6/tabdiff/tabdiff-m6-20260429_042700/staged/public/val.csv", + "test_csv": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/m6/tabdiff/tabdiff-m6-20260429_042700/staged/public/test.csv", + "features_json": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/m6/tabdiff/tabdiff-m6-20260429_042700/staged/public/staged_features.json", + "public_gate_report": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/m6/tabdiff/tabdiff-m6-20260429_042700/public_gate/public_gate_report.json", + "column_schema": [ + { + "name": "Administrative", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 26, + "unique_ratio": 0.002636, + "example_values": [ + "0", + "3", + "2", + "6", + "1" + ] + } + }, + { + "name": "Administrative_Duration", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 2789, + "unique_ratio": 0.282745, + "example_values": [ + "0", + "45.8", + "77.7", + "52", + "46.33333333" + ] + } + }, + { + "name": "Informational", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 17, + "unique_ratio": 0.001723, + "example_values": [ + "0", + "1", + "3", + "5", + "4" + ] + } + }, + { + "name": "Informational_Duration", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 1074, + "unique_ratio": 0.108881, + "example_values": [ + "0", + "2", + "24", + "86.75", + "62.5" + ] + } + }, + { + "name": "ProductRelated", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 286, + "unique_ratio": 0.028994, + "example_values": [ + "13", + "8", + "63", + "15", + "3" + ] + } + }, + { + "name": "ProductRelated_Duration", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 7769, + "unique_ratio": 0.787612, + "example_values": [ + "549.2", + "64", + "2435.697531", + "267.7333333", + "57.4" + ] + } + }, + { + "name": "BounceRates", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 1574, + "unique_ratio": 0.15957, + "example_values": [ + "0.019230769", + "0", + "0.00952381", + "0.022857143", + "0.004166667" + ] + } + }, + { + "name": "ExitRates", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 3953, + "unique_ratio": 0.40075, + "example_values": [ + "0.045421245", + "0.05", + "0.017460317", + "0.040606061", + "0.133333333" + ] + } + }, + { + "name": "PageValues", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 2129, + "unique_ratio": 0.215835, + "example_values": [ + "0", + "7.945368291", + "10.37042373", + "18.99269231", + "44.33548922" + ] + } + }, + { + "name": "SpecialDay", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 6, + "unique_ratio": 0.000608, + "example_values": [ + "0", + "0.4", + "0.2", + "0.8", + "1" + ] + } + }, + { + "name": "Month", + "role": "feature", + "semantic_type": "categorical", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 10, + "unique_ratio": 0.001014, + "example_values": [ + "Nov", + "Dec", + "Jul", + "Aug", + "Mar" + ] + } + }, + { + "name": "OperatingSystems", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 8, + "unique_ratio": 0.000811, + "example_values": [ + "3", + "2", + "6", + "4", + "1" + ] + } + }, + { + "name": "Browser", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 13, + "unique_ratio": 0.001318, + "example_values": [ + "2", + "1", + "5", + "4", + "3" + ] + } + }, + { + "name": "Region", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 9, + "unique_ratio": 0.000912, + "example_values": [ + "6", + "3", + "4", + "1", + "9" + ] + } + }, + { + "name": "TrafficType", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 20, + "unique_ratio": 0.002028, + "example_values": [ + "2", + "8", + "3", + "11", + "1" + ] + } + }, + { + "name": "VisitorType", + "role": "target", + "semantic_type": "categorical", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 3, + "unique_ratio": 0.000304, + "example_values": [ + "Returning_Visitor", + "New_Visitor", + "Other" + ] + } + }, + { + "name": "Weekend", + "role": "feature", + "semantic_type": "boolean", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 2, + "unique_ratio": 0.000203, + "example_values": [ + "FALSE", + "TRUE" + ] + } + }, + { + "name": "Revenue", + "role": "feature", + "semantic_type": "boolean", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 2, + "unique_ratio": 0.000203, + "example_values": [ + "FALSE", + "TRUE" + ] + } + } + ] +} \ No newline at end of file diff --git a/timecost/m6/tabdiff/tabdiff-m6-20260429_042700/runtime_result.json b/timecost/m6/tabdiff/tabdiff-m6-20260429_042700/runtime_result.json new file mode 100644 index 0000000000000000000000000000000000000000..607874d9c0435ceaf9fb9a7abd932dd55ddd3dae --- /dev/null +++ b/timecost/m6/tabdiff/tabdiff-m6-20260429_042700/runtime_result.json @@ -0,0 +1,15 @@ +{ + "dataset_id": "m6", + "model": "tabdiff", + "run_id": "tabdiff-m6-20260429_042700", + "public_gate_status": "pass", + "adapter_ready_status": "pass", + "train_status": "success", + "generate_status": "success", + "reason_code": null, + "reason_detail": null, + "artifacts": { + "synthetic_csv": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/m6/tabdiff/tabdiff-m6-20260429_042700/tabdiff-m6-9864-20260429_043402.csv", + "model_path": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/m6/tabdiff/tabdiff-m6-20260429_042700/models_tabdiff/trained.pt" + } +} \ No newline at end of file diff --git a/timecost/m6/tabdiff/tabdiff-m6-20260429_042700/staged/public/staged_features.json b/timecost/m6/tabdiff/tabdiff-m6-20260429_042700/staged/public/staged_features.json new file mode 100644 index 0000000000000000000000000000000000000000..49b25bd1347f910a2b95ef0c137d1a64bf69e0cb --- /dev/null +++ b/timecost/m6/tabdiff/tabdiff-m6-20260429_042700/staged/public/staged_features.json @@ -0,0 +1,92 @@ +[ + { + "feature_name": "Administrative", + "data_type": "continuous", + "is_target": false + }, + { + "feature_name": "Administrative_Duration", + "data_type": "continuous", + "is_target": false + }, + { + "feature_name": "Informational", + "data_type": "continuous", + "is_target": false + }, + { + "feature_name": "Informational_Duration", + "data_type": "continuous", + "is_target": false + }, + { + "feature_name": "ProductRelated", + "data_type": "continuous", + "is_target": false + }, + { + "feature_name": "ProductRelated_Duration", + "data_type": "continuous", + "is_target": false + }, + { + "feature_name": "BounceRates", + "data_type": "continuous", + "is_target": false + }, + { + "feature_name": "ExitRates", + "data_type": "continuous", + "is_target": false + }, + { + "feature_name": "PageValues", + "data_type": "continuous", + "is_target": false + }, + { + "feature_name": "SpecialDay", + "data_type": "continuous", + "is_target": false + }, + { + "feature_name": "Month", + "data_type": "categorical", + "is_target": false + }, + { + "feature_name": "OperatingSystems", + "data_type": "continuous", + "is_target": false + }, + { + "feature_name": "Browser", + "data_type": "continuous", + "is_target": false + }, + { + "feature_name": "Region", + "data_type": "continuous", + "is_target": false + }, + { + "feature_name": "TrafficType", + "data_type": "continuous", + "is_target": false + }, + { + "feature_name": "VisitorType", + "data_type": "categorical", + "is_target": true + }, + { + "feature_name": "Weekend", + "data_type": "binary", + "is_target": false + }, + { + "feature_name": "Revenue", + "data_type": "binary", + "is_target": false + } +] \ No newline at end of file diff --git a/timecost/m6/tabdiff/tabdiff-m6-20260429_042700/staged/public/test.csv b/timecost/m6/tabdiff/tabdiff-m6-20260429_042700/staged/public/test.csv new file mode 100644 index 0000000000000000000000000000000000000000..3944bd554327e948b8bda8c383bd581f3fc26ec6 --- /dev/null +++ b/timecost/m6/tabdiff/tabdiff-m6-20260429_042700/staged/public/test.csv @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:d16d0389cb0fe4b23bab344dc10070de6678357a9452f9f620d0eeba66a6b12d +size 116376 diff --git a/timecost/m6/tabdiff/tabdiff-m6-20260429_042700/staged/public/train.csv b/timecost/m6/tabdiff/tabdiff-m6-20260429_042700/staged/public/train.csv new file mode 100644 index 0000000000000000000000000000000000000000..ae3a266ed7bebf02bc27c50b9dea6e8c5fe71c10 --- /dev/null +++ b/timecost/m6/tabdiff/tabdiff-m6-20260429_042700/staged/public/train.csv @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:e1f0338c367408dc21d5a4ec9cdc5d3fe8188916db6085f3fd326304a55551e1 +size 924849 diff --git a/timecost/m6/tabdiff/tabdiff-m6-20260429_042700/staged/public/val.csv b/timecost/m6/tabdiff/tabdiff-m6-20260429_042700/staged/public/val.csv new file mode 100644 index 0000000000000000000000000000000000000000..60be57a3609a30d56d27e37e49a3aedfa6294db5 --- /dev/null +++ b/timecost/m6/tabdiff/tabdiff-m6-20260429_042700/staged/public/val.csv @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:cb9169f3c7213420491d9b709ee1cc650aeaed732fa77dcbd6ffe3583366b2d4 +size 116198 diff --git a/timecost/m6/tabdiff/tabdiff-m6-20260429_042700/staged/tabdiff/adapter_report.json b/timecost/m6/tabdiff/tabdiff-m6-20260429_042700/staged/tabdiff/adapter_report.json new file mode 100644 index 0000000000000000000000000000000000000000..c77106f90d755fb02bb773d722f4bf19875416d9 --- /dev/null +++ b/timecost/m6/tabdiff/tabdiff-m6-20260429_042700/staged/tabdiff/adapter_report.json @@ -0,0 +1,7 @@ +{ + "adapter_ready_status": "pass", + "adapter_fail_reason_code": null, + "adapter_fail_detail": null, + "adapter_transforms_applied": [], + "model_input_manifest": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/m6/tabdiff/tabdiff-m6-20260429_042700/staged/tabdiff/model_input_manifest.json" +} \ No newline at end of file diff --git a/timecost/m6/tabdiff/tabdiff-m6-20260429_042700/staged/tabdiff/adapter_transforms_applied.json b/timecost/m6/tabdiff/tabdiff-m6-20260429_042700/staged/tabdiff/adapter_transforms_applied.json new file mode 100644 index 0000000000000000000000000000000000000000..0637a088a01e8ddab3bf3fa98dbe804cbde1a0dc --- /dev/null +++ b/timecost/m6/tabdiff/tabdiff-m6-20260429_042700/staged/tabdiff/adapter_transforms_applied.json @@ -0,0 +1 @@ +[] \ No newline at end of file diff --git a/timecost/m6/tabdiff/tabdiff-m6-20260429_042700/staged/tabdiff/model_input_manifest.json b/timecost/m6/tabdiff/tabdiff-m6-20260429_042700/staged/tabdiff/model_input_manifest.json new file mode 100644 index 0000000000000000000000000000000000000000..209ec48350638347d080ae8c4afd71c314cdb7f1 --- /dev/null +++ b/timecost/m6/tabdiff/tabdiff-m6-20260429_042700/staged/tabdiff/model_input_manifest.json @@ -0,0 +1,384 @@ +{ + "dataset_id": "m6", + "model": "tabdiff", + "target_column": "VisitorType", + "task_type": "classification", + "column_schema": [ + { + "name": "Administrative", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 26, + "unique_ratio": 0.002636, + "example_values": [ + "0", + "3", + "2", + "6", + "1" + ] + } + }, + { + "name": "Administrative_Duration", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 2789, + "unique_ratio": 0.282745, + "example_values": [ + "0", + "45.8", + "77.7", + "52", + "46.33333333" + ] + } + }, + { + "name": "Informational", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 17, + "unique_ratio": 0.001723, + "example_values": [ + "0", + "1", + "3", + "5", + "4" + ] + } + }, + { + "name": "Informational_Duration", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 1074, + "unique_ratio": 0.108881, + "example_values": [ + "0", + "2", + "24", + "86.75", + "62.5" + ] + } + }, + { + "name": "ProductRelated", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 286, + "unique_ratio": 0.028994, + "example_values": [ + "13", + "8", + "63", + "15", + "3" + ] + } + }, + { + "name": "ProductRelated_Duration", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 7769, + "unique_ratio": 0.787612, + "example_values": [ + "549.2", + "64", + "2435.697531", + "267.7333333", + "57.4" + ] + } + }, + { + "name": "BounceRates", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 1574, + "unique_ratio": 0.15957, + "example_values": [ + "0.019230769", + "0", + "0.00952381", + "0.022857143", + "0.004166667" + ] + } + }, + { + "name": "ExitRates", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 3953, + "unique_ratio": 0.40075, + "example_values": [ + "0.045421245", + "0.05", + "0.017460317", + "0.040606061", + "0.133333333" + ] + } + }, + { + "name": "PageValues", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 2129, + "unique_ratio": 0.215835, + "example_values": [ + "0", + "7.945368291", + "10.37042373", + "18.99269231", + "44.33548922" + ] + } + }, + { + "name": "SpecialDay", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 6, + "unique_ratio": 0.000608, + "example_values": [ + "0", + "0.4", + "0.2", + "0.8", + "1" + ] + } + }, + { + "name": "Month", + "role": "feature", + "semantic_type": "categorical", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 10, + "unique_ratio": 0.001014, + "example_values": [ + "Nov", + "Dec", + "Jul", + "Aug", + "Mar" + ] + } + }, + { + "name": "OperatingSystems", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 8, + "unique_ratio": 0.000811, + "example_values": [ + "3", + "2", + "6", + "4", + "1" + ] + } + }, + { + "name": "Browser", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 13, + "unique_ratio": 0.001318, + "example_values": [ + "2", + "1", + "5", + "4", + "3" + ] + } + }, + { + "name": "Region", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 9, + "unique_ratio": 0.000912, + "example_values": [ + "6", + "3", + "4", + "1", + "9" + ] + } + }, + { + "name": "TrafficType", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 20, + "unique_ratio": 0.002028, + "example_values": [ + "2", + "8", + "3", + "11", + "1" + ] + } + }, + { + "name": "VisitorType", + "role": "target", + "semantic_type": "categorical", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 3, + "unique_ratio": 0.000304, + "example_values": [ + "Returning_Visitor", + "New_Visitor", + "Other" + ] + } + }, + { + "name": "Weekend", + "role": "feature", + "semantic_type": "boolean", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 2, + "unique_ratio": 0.000203, + "example_values": [ + "FALSE", + "TRUE" + ] + } + }, + { + "name": "Revenue", + "role": "feature", + "semantic_type": "boolean", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 2, + "unique_ratio": 0.000203, + "example_values": [ + "FALSE", + "TRUE" + ] + } + } + ], + "public_manifest": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/m6/tabdiff/tabdiff-m6-20260429_042700/public_gate/staged_input_manifest.json", + "train_csv": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/m6/tabdiff/tabdiff-m6-20260429_042700/staged/public/train.csv", + "val_csv": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/m6/tabdiff/tabdiff-m6-20260429_042700/staged/public/val.csv", + "test_csv": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/m6/tabdiff/tabdiff-m6-20260429_042700/staged/public/test.csv", + "features_json": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/m6/tabdiff/tabdiff-m6-20260429_042700/staged/public/staged_features.json", + "public_gate_report": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/m6/tabdiff/tabdiff-m6-20260429_042700/public_gate/public_gate_report.json" +} \ No newline at end of file diff --git a/timecost/m6/tabdiff/tabdiff-m6-20260429_042700/tabdiff-m6-9864-20260429_043402.csv b/timecost/m6/tabdiff/tabdiff-m6-20260429_042700/tabdiff-m6-9864-20260429_043402.csv new file mode 100644 index 0000000000000000000000000000000000000000..e62204e15b8137c61bf83e3c093e8f2c307ced16 --- /dev/null +++ b/timecost/m6/tabdiff/tabdiff-m6-20260429_042700/tabdiff-m6-9864-20260429_043402.csv @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:9da32cc7b0fed8560ec43450ee8b479ceba8fcb72f2aa87a11a3060566b760e9 +size 851856 diff --git a/timecost/m6/tabdiff/tabdiff-m6-20260429_042700/tabdiff_train_meta.json b/timecost/m6/tabdiff/tabdiff-m6-20260429_042700/tabdiff_train_meta.json new file mode 100644 index 0000000000000000000000000000000000000000..6e02f1a18519717bc4d916dc2d717f6ffcafb601 --- /dev/null +++ b/timecost/m6/tabdiff/tabdiff-m6-20260429_042700/tabdiff_train_meta.json @@ -0,0 +1,5 @@ +{ + "exp_name": "adapter_learnable", + "dataname": "pipeline_m6", + "steps": 500 +} \ No newline at end of file diff --git a/timecost/m6/tabdiff/tabdiff-m6-20260429_042700/tabular_bundle/pipeline_m6/X_cat_test.npy b/timecost/m6/tabdiff/tabdiff-m6-20260429_042700/tabular_bundle/pipeline_m6/X_cat_test.npy new file mode 100644 index 0000000000000000000000000000000000000000..622304720bf969c46f4c82b28d35220f4b91c4b5 --- /dev/null +++ b/timecost/m6/tabdiff/tabdiff-m6-20260429_042700/tabular_bundle/pipeline_m6/X_cat_test.npy @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:33b3ba6d661fb460428f33f010200f46937687463db68f5f919e4743a9802815 +size 236864 diff --git a/timecost/m6/tabdiff/tabdiff-m6-20260429_042700/tabular_bundle/pipeline_m6/X_cat_train.npy b/timecost/m6/tabdiff/tabdiff-m6-20260429_042700/tabular_bundle/pipeline_m6/X_cat_train.npy new file mode 100644 index 0000000000000000000000000000000000000000..622304720bf969c46f4c82b28d35220f4b91c4b5 --- /dev/null +++ b/timecost/m6/tabdiff/tabdiff-m6-20260429_042700/tabular_bundle/pipeline_m6/X_cat_train.npy @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:33b3ba6d661fb460428f33f010200f46937687463db68f5f919e4743a9802815 +size 236864 diff --git a/timecost/m6/tabdiff/tabdiff-m6-20260429_042700/tabular_bundle/pipeline_m6/X_cat_val.npy b/timecost/m6/tabdiff/tabdiff-m6-20260429_042700/tabular_bundle/pipeline_m6/X_cat_val.npy new file mode 100644 index 0000000000000000000000000000000000000000..622304720bf969c46f4c82b28d35220f4b91c4b5 --- /dev/null +++ b/timecost/m6/tabdiff/tabdiff-m6-20260429_042700/tabular_bundle/pipeline_m6/X_cat_val.npy @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:33b3ba6d661fb460428f33f010200f46937687463db68f5f919e4743a9802815 +size 236864 diff --git a/timecost/m6/tabdiff/tabdiff-m6-20260429_042700/tabular_bundle/pipeline_m6/X_num_test.npy b/timecost/m6/tabdiff/tabdiff-m6-20260429_042700/tabular_bundle/pipeline_m6/X_num_test.npy new file mode 100644 index 0000000000000000000000000000000000000000..e00fb621bec79b3db12b58f7a335ce049229c0e9 --- /dev/null +++ b/timecost/m6/tabdiff/tabdiff-m6-20260429_042700/tabular_bundle/pipeline_m6/X_num_test.npy @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:960545f531401f06b1ef44d43f0e45228b36d96b6f6dbf87b8f6ad8578e915f5 +size 552512 diff --git a/timecost/m6/tabdiff/tabdiff-m6-20260429_042700/tabular_bundle/pipeline_m6/X_num_train.npy b/timecost/m6/tabdiff/tabdiff-m6-20260429_042700/tabular_bundle/pipeline_m6/X_num_train.npy new file mode 100644 index 0000000000000000000000000000000000000000..e00fb621bec79b3db12b58f7a335ce049229c0e9 --- /dev/null +++ b/timecost/m6/tabdiff/tabdiff-m6-20260429_042700/tabular_bundle/pipeline_m6/X_num_train.npy @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:960545f531401f06b1ef44d43f0e45228b36d96b6f6dbf87b8f6ad8578e915f5 +size 552512 diff --git a/timecost/m6/tabdiff/tabdiff-m6-20260429_042700/tabular_bundle/pipeline_m6/X_num_val.npy b/timecost/m6/tabdiff/tabdiff-m6-20260429_042700/tabular_bundle/pipeline_m6/X_num_val.npy new file mode 100644 index 0000000000000000000000000000000000000000..e00fb621bec79b3db12b58f7a335ce049229c0e9 --- /dev/null +++ b/timecost/m6/tabdiff/tabdiff-m6-20260429_042700/tabular_bundle/pipeline_m6/X_num_val.npy @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:960545f531401f06b1ef44d43f0e45228b36d96b6f6dbf87b8f6ad8578e915f5 +size 552512 diff --git a/timecost/m6/tabdiff/tabdiff-m6-20260429_042700/tabular_bundle/pipeline_m6/info.json b/timecost/m6/tabdiff/tabdiff-m6-20260429_042700/tabular_bundle/pipeline_m6/info.json new file mode 100644 index 0000000000000000000000000000000000000000..468426cfbed51e7544b418c1232ccf505afd1d8e --- /dev/null +++ b/timecost/m6/tabdiff/tabdiff-m6-20260429_042700/tabular_bundle/pipeline_m6/info.json @@ -0,0 +1,191 @@ +{ + "name": "pipeline_m6", + "task_type": "multiclass", + "n_num_features": 14, + "n_cat_features": 3, + "train_size": 9864, + "test_num": 9864, + "val_num": 9864, + "train_num": 9864, + "bundle_note": "val/test matrices are train copies (train-only policy; no real held-out rows).", + "num_col_idx": [ + 0, + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13 + ], + "cat_col_idx": [ + 14, + 15, + 16 + ], + "target_col_idx": [ + 17 + ], + "column_names": [ + "Administrative", + "Administrative_Duration", + "Informational", + "Informational_Duration", + "ProductRelated", + "ProductRelated_Duration", + "BounceRates", + "ExitRates", + "PageValues", + "SpecialDay", + "OperatingSystems", + "Browser", + "Region", + "TrafficType", + "Month", + "Weekend", + "Revenue", + "VisitorType" + ], + "int_col_idx": [], + "int_columns": [], + "int_col_idx_wrt_num": [], + "metadata": { + "columns": { + "0": { + "sdtype": "numerical", + "computer_representation": "Float" + }, + "1": { + "sdtype": "numerical", + "computer_representation": "Float" + }, + "2": { + "sdtype": "numerical", + "computer_representation": "Float" + }, + "3": { + "sdtype": "numerical", + "computer_representation": "Float" + }, + "4": { + "sdtype": "numerical", + "computer_representation": "Float" + }, + "5": { + "sdtype": "numerical", + "computer_representation": "Float" + }, + "6": { + "sdtype": "numerical", + "computer_representation": "Float" + }, + "7": { + "sdtype": "numerical", + "computer_representation": "Float" + }, + "8": { + "sdtype": "numerical", + "computer_representation": "Float" + }, + "9": { + "sdtype": "numerical", + "computer_representation": "Float" + }, + "10": { + "sdtype": "numerical", + "computer_representation": "Float" + }, + "11": { + "sdtype": "numerical", + "computer_representation": "Float" + }, + "12": { + "sdtype": "numerical", + "computer_representation": "Float" + }, + "13": { + "sdtype": "numerical", + "computer_representation": "Float" + }, + "14": { + "sdtype": "categorical" + }, + "15": { + "sdtype": "categorical" + }, + "16": { + "sdtype": "categorical" + }, + "17": { + "sdtype": "categorical" + } + } + }, + "idx_mapping": { + "0": 0, + "1": 1, + "2": 2, + "3": 3, + "4": 4, + "5": 5, + "6": 6, + "7": 7, + "8": 8, + "9": 9, + "10": 10, + "11": 11, + "12": 12, + "13": 13, + "14": 14, + "15": 15, + "16": 16, + "17": 17 + }, + "inverse_idx_mapping": { + "0": 0, + "1": 1, + "2": 2, + "3": 3, + "4": 4, + "5": 5, + "6": 6, + "7": 7, + "8": 8, + "9": 9, + "10": 10, + "11": 11, + "12": 12, + "13": 13, + "14": 14, + "15": 15, + "16": 16, + "17": 17 + }, + "idx_name_mapping": { + "0": "Administrative", + "1": "Administrative_Duration", + "2": "Informational", + "3": "Informational_Duration", + "4": "ProductRelated", + "5": "ProductRelated_Duration", + "6": "BounceRates", + "7": "ExitRates", + "8": "PageValues", + "9": "SpecialDay", + "10": "OperatingSystems", + "11": "Browser", + "12": "Region", + "13": "TrafficType", + "14": "Month", + "15": "Weekend", + "16": "Revenue", + "17": "VisitorType" + }, + "n_classes": 3 +} \ No newline at end of file diff --git a/timecost/m6/tabdiff/tabdiff-m6-20260429_042700/tabular_bundle/pipeline_m6/real.csv b/timecost/m6/tabdiff/tabdiff-m6-20260429_042700/tabular_bundle/pipeline_m6/real.csv new file mode 100644 index 0000000000000000000000000000000000000000..0ec3ba219df726c40342b02ab35b24ddf76ff2a3 --- /dev/null +++ b/timecost/m6/tabdiff/tabdiff-m6-20260429_042700/tabular_bundle/pipeline_m6/real.csv @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:da71c5d7ca6752fd26c431f7fefb3701600af7c659d4597ba65f755dcaf7b902 +size 829594 diff --git a/timecost/m6/tabdiff/tabdiff-m6-20260429_042700/tabular_bundle/pipeline_m6/test.csv b/timecost/m6/tabdiff/tabdiff-m6-20260429_042700/tabular_bundle/pipeline_m6/test.csv new file mode 100644 index 0000000000000000000000000000000000000000..0ec3ba219df726c40342b02ab35b24ddf76ff2a3 --- /dev/null +++ b/timecost/m6/tabdiff/tabdiff-m6-20260429_042700/tabular_bundle/pipeline_m6/test.csv @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:da71c5d7ca6752fd26c431f7fefb3701600af7c659d4597ba65f755dcaf7b902 +size 829594 diff --git a/timecost/m6/tabdiff/tabdiff-m6-20260429_042700/tabular_bundle/pipeline_m6/val.csv b/timecost/m6/tabdiff/tabdiff-m6-20260429_042700/tabular_bundle/pipeline_m6/val.csv new file mode 100644 index 0000000000000000000000000000000000000000..0ec3ba219df726c40342b02ab35b24ddf76ff2a3 --- /dev/null +++ b/timecost/m6/tabdiff/tabdiff-m6-20260429_042700/tabular_bundle/pipeline_m6/val.csv @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:da71c5d7ca6752fd26c431f7fefb3701600af7c659d4597ba65f755dcaf7b902 +size 829594 diff --git a/timecost/m6/tabdiff/tabdiff-m6-20260429_042700/tabular_bundle/pipeline_m6/y_test.npy b/timecost/m6/tabdiff/tabdiff-m6-20260429_042700/tabular_bundle/pipeline_m6/y_test.npy new file mode 100644 index 0000000000000000000000000000000000000000..8d23ecacfe3b5a6516ea0c56d2ab30a4cbe101fd --- /dev/null +++ b/timecost/m6/tabdiff/tabdiff-m6-20260429_042700/tabular_bundle/pipeline_m6/y_test.npy @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:4495cd81dd4e25e4cece22309308cf6ac32d53e46ab3410a78c7e12900bd8f9e +size 79040 diff --git a/timecost/m6/tabdiff/tabdiff-m6-20260429_042700/tabular_bundle/pipeline_m6/y_train.npy b/timecost/m6/tabdiff/tabdiff-m6-20260429_042700/tabular_bundle/pipeline_m6/y_train.npy new file mode 100644 index 0000000000000000000000000000000000000000..8d23ecacfe3b5a6516ea0c56d2ab30a4cbe101fd --- /dev/null +++ b/timecost/m6/tabdiff/tabdiff-m6-20260429_042700/tabular_bundle/pipeline_m6/y_train.npy @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:4495cd81dd4e25e4cece22309308cf6ac32d53e46ab3410a78c7e12900bd8f9e +size 79040 diff --git a/timecost/m6/tabdiff/tabdiff-m6-20260429_042700/tabular_bundle/pipeline_m6/y_val.npy b/timecost/m6/tabdiff/tabdiff-m6-20260429_042700/tabular_bundle/pipeline_m6/y_val.npy new file mode 100644 index 0000000000000000000000000000000000000000..8d23ecacfe3b5a6516ea0c56d2ab30a4cbe101fd --- /dev/null +++ b/timecost/m6/tabdiff/tabdiff-m6-20260429_042700/tabular_bundle/pipeline_m6/y_val.npy @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:4495cd81dd4e25e4cece22309308cf6ac32d53e46ab3410a78c7e12900bd8f9e +size 79040 diff --git a/timecost/m6/tabdiff/tabdiff-m6-20260429_042700/train_20260429_042701.log b/timecost/m6/tabdiff/tabdiff-m6-20260429_042700/train_20260429_042701.log new file mode 100644 index 0000000000000000000000000000000000000000..a2a526641f857082a5244b05b3e233cd1d264f4f --- /dev/null +++ b/timecost/m6/tabdiff/tabdiff-m6-20260429_042700/train_20260429_042701.log @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:4335aee0b3501b5df97d1dc245f7249e7c2f16190805842a0891e45c31c1fe5d +size 450169 diff --git a/timecost/m6/tabpfgen/tabpfgen-m6-20260429_061036/_tabpfgen_generate.py b/timecost/m6/tabpfgen/tabpfgen-m6-20260429_061036/_tabpfgen_generate.py new file mode 100644 index 0000000000000000000000000000000000000000..6959482ccde3d2e68d476cdc72babe8915d7b6f8 --- /dev/null +++ b/timecost/m6/tabpfgen/tabpfgen-m6-20260429_061036/_tabpfgen_generate.py @@ -0,0 +1,100 @@ +import os +import numpy as np +import pandas as pd +import json +from tabpfgen import TabPFGen + +df = pd.read_csv("/work/output-Benchmark-trainonly-v1/m6/tabpfgen/tabpfgen-m6-20260429_061036/staged/public/train.csv") +target_col = "VisitorType" + +target_missing = df[target_col].isna() +if target_missing.any(): + dropped = int(target_missing.sum()) + df = df.loc[~target_missing].copy() + print( + f"[TabPFGen] Dropped {dropped} rows with missing target '{target_col}'" + ) +if df.empty: + raise ValueError( + f"[TabPFGen] No rows remain after dropping missing target '{target_col}'" + ) + +feature_cols = [c for c in df.columns if c != target_col] + +cat_encodings = {} +for col in feature_cols: + if df[col].dtype == object or str(df[col].dtype) == 'category': + cats = sorted(df[col].dropna().unique().tolist(), key=str) + cat_map = {v: i for i, v in enumerate(cats)} + df[col] = df[col].map(cat_map).astype(float) + cat_encodings[col] = cats + print(f"[TabPFGen] Label-encoded '{col}' ({len(cats)} categories)") + +target_cats = None +if df[target_col].dtype == object or str(df[target_col].dtype) == 'category': + cats = sorted(df[target_col].dropna().unique().tolist(), key=str) + t_map = {v: i for i, v in enumerate(cats)} + df[target_col] = df[target_col].map(t_map).astype(float) + target_cats = cats + print(f"[TabPFGen] Label-encoded target '{target_col}' ({len(cats)} categories)") + +X = df[feature_cols].values.astype(np.float32) +y = df[target_col].values +target_n = int(9864) + +for i in range(X.shape[1]): + col_vals = X[:, i] + mask = np.isnan(col_vals) + if mask.any(): + mean_val = np.nanmean(col_vals) + X[mask, i] = mean_val if not np.isnan(mean_val) else 0.0 + +# TabPFGen v0.1.x API:仅支持 n_sgld_steps / sgld_* / device。 +# (旧版脚本中的 energy_*_chunk 与上游 TabPFGen 不一致,会导致 TypeError。) +gen = TabPFGen( + n_sgld_steps=1000, + sgld_step_size=0.01, + sgld_noise_scale=0.01, + device="auto", +) + +print(f"[TabPFGen] Generating {target_n} rows via generate_classification") +X_syn, y_syn = gen.generate_classification(X, y, n_samples=target_n) + +syn_df = pd.DataFrame(X_syn, columns=feature_cols) +syn_df[target_col] = y_syn + +for col, cats in cat_encodings.items(): + codes = np.round(syn_df[col].values).astype(int) + codes = np.clip(codes, 0, len(cats) - 1) + syn_df[col] = [cats[c] for c in codes] + +if target_cats is not None: + codes = np.round(syn_df[target_col].values).astype(int) + codes = np.clip(codes, 0, len(target_cats) - 1) + syn_df[target_col] = [target_cats[c] for c in codes] + +if len(syn_df) > target_n: + print(f"[TabPFGen] Trimming rows: {len(syn_df)} -> {target_n}") + syn_df = syn_df.iloc[:target_n].copy() +elif len(syn_df) < target_n: + deficit = target_n - len(syn_df) + print(f"[TabPFGen] Padding rows: {len(syn_df)} -> {target_n} (deficit={deficit})") + if len(syn_df) > 0: + extra = syn_df.sample(n=deficit, replace=True, random_state=42) + syn_df = pd.concat( + [syn_df.reset_index(drop=True), extra.reset_index(drop=True)], + ignore_index=True, + ) + else: + syn_df = df[feature_cols + [target_col]].sample( + n=target_n, replace=True, random_state=42 + ).reset_index(drop=True) + +syn_df = syn_df[list(df.columns)] +if len(syn_df) != target_n: + raise RuntimeError( + f"[TabPFGen] Row alignment failed: got {len(syn_df)}, expected {target_n}" + ) +syn_df.to_csv("/work/output-Benchmark-trainonly-v1/m6/tabpfgen/tabpfgen-m6-20260429_061036/tabpfgen-m6-9864-20260429_061037.csv", index=False) +print(f"[TabPFGen] Saved {len(syn_df)} rows -> /work/output-Benchmark-trainonly-v1/m6/tabpfgen/tabpfgen-m6-20260429_061036/tabpfgen-m6-9864-20260429_061037.csv") diff --git a/timecost/m6/tabpfgen/tabpfgen-m6-20260429_061036/gen_20260429_061037.log b/timecost/m6/tabpfgen/tabpfgen-m6-20260429_061036/gen_20260429_061037.log new file mode 100644 index 0000000000000000000000000000000000000000..6099a453eeb443247b283676095a122ba7abaa18 --- /dev/null +++ b/timecost/m6/tabpfgen/tabpfgen-m6-20260429_061036/gen_20260429_061037.log @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:c1298acab3bbb43c47659b717ab2fc82eefbb9b5e3f3fe5b0bdefee94ea6ce77 +size 1009 diff --git a/timecost/m6/tabpfgen/tabpfgen-m6-20260429_061036/input_snapshot.json b/timecost/m6/tabpfgen/tabpfgen-m6-20260429_061036/input_snapshot.json new file mode 100644 index 0000000000000000000000000000000000000000..8508a20b6499aa7c3d1c2d992165b962275eb5f8 --- /dev/null +++ b/timecost/m6/tabpfgen/tabpfgen-m6-20260429_061036/input_snapshot.json @@ -0,0 +1,36 @@ +{ + "dataset_id": "m6", + "model": "tabpfgen", + "inputs": { + "train_csv": { + "path": "/data/jialinzhang/SynthesizePipeline-server/DatasetNew/m6/m6-train.csv", + "exists": true, + "size": 856785, + "sha256": "a5d1c487a8f2611385915fcc5a52bad546680ddbc8d23fc695f442cdd6dafa0c" + }, + "val_csv": { + "path": "/data/jialinzhang/SynthesizePipeline-server/DatasetNew/m6/m6-val.csv", + "exists": true, + "size": 107758, + "sha256": "598196cecc227cfba95c9796b80bc1baf684a0117e6673b8662b89482cdcb78f" + }, + "test_csv": { + "path": "/data/jialinzhang/SynthesizePipeline-server/DatasetNew/m6/m6-test.csv", + "exists": true, + "size": 107996, + "sha256": "ec939ad96a3b14dd960886359fb6c5d45591adc8a734661ade3dee1417a015de" + }, + "profile_json": { + "path": "/data/jialinzhang/SynthesizePipeline-server/DatasetNew/artifacts/data_core/tabular/m6/m6-dataset_profile.json", + "exists": true, + "size": 7622, + "sha256": "859f1fe93806c8ecdea9c9db9db34fb6cf94bc112b5c0a66b2436e8ef71c2e98" + }, + "contract_json": { + "path": "/data/jialinzhang/SynthesizePipeline-server/DatasetNew/artifacts/data_core/tabular/m6/m6-dataset_contract_v1.json", + "exists": true, + "size": 8990, + "sha256": "01142eeb121af615a644c3e312f5f3e79d805396339f40d5a300ba3560cf8e90" + } + } +} \ No newline at end of file diff --git a/timecost/m6/tabpfgen/tabpfgen-m6-20260429_061036/public_gate/normalized_schema_snapshot.json b/timecost/m6/tabpfgen/tabpfgen-m6-20260429_061036/public_gate/normalized_schema_snapshot.json new file mode 100644 index 0000000000000000000000000000000000000000..0d48abfe61f58323fd4a425d175b354d51045ae1 --- /dev/null +++ b/timecost/m6/tabpfgen/tabpfgen-m6-20260429_061036/public_gate/normalized_schema_snapshot.json @@ -0,0 +1,377 @@ +{ + "dataset_id": "m6", + "target_column": "VisitorType", + "task_type": "classification", + "columns": [ + { + "name": "Administrative", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 26, + "unique_ratio": 0.002636, + "example_values": [ + "0", + "3", + "2", + "6", + "1" + ] + } + }, + { + "name": "Administrative_Duration", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 2789, + "unique_ratio": 0.282745, + "example_values": [ + "0", + "45.8", + "77.7", + "52", + "46.33333333" + ] + } + }, + { + "name": "Informational", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 17, + "unique_ratio": 0.001723, + "example_values": [ + "0", + "1", + "3", + "5", + "4" + ] + } + }, + { + "name": "Informational_Duration", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 1074, + "unique_ratio": 0.108881, + "example_values": [ + "0", + "2", + "24", + "86.75", + "62.5" + ] + } + }, + { + "name": "ProductRelated", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 286, + "unique_ratio": 0.028994, + "example_values": [ + "13", + "8", + "63", + "15", + "3" + ] + } + }, + { + "name": "ProductRelated_Duration", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 7769, + "unique_ratio": 0.787612, + "example_values": [ + "549.2", + "64", + "2435.697531", + "267.7333333", + "57.4" + ] + } + }, + { + "name": "BounceRates", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 1574, + "unique_ratio": 0.15957, + "example_values": [ + "0.019230769", + "0", + "0.00952381", + "0.022857143", + "0.004166667" + ] + } + }, + { + "name": "ExitRates", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 3953, + "unique_ratio": 0.40075, + "example_values": [ + "0.045421245", + "0.05", + "0.017460317", + "0.040606061", + "0.133333333" + ] + } + }, + { + "name": "PageValues", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 2129, + "unique_ratio": 0.215835, + "example_values": [ + "0", + "7.945368291", + "10.37042373", + "18.99269231", + "44.33548922" + ] + } + }, + { + "name": "SpecialDay", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 6, + "unique_ratio": 0.000608, + "example_values": [ + "0", + "0.4", + "0.2", + "0.8", + "1" + ] + } + }, + { + "name": "Month", + "role": "feature", + "semantic_type": "categorical", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 10, + "unique_ratio": 0.001014, + "example_values": [ + "Nov", + "Dec", + "Jul", + "Aug", + "Mar" + ] + } + }, + { + "name": "OperatingSystems", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 8, + "unique_ratio": 0.000811, + "example_values": [ + "3", + "2", + "6", + "4", + "1" + ] + } + }, + { + "name": "Browser", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 13, + "unique_ratio": 0.001318, + "example_values": [ + "2", + "1", + "5", + "4", + "3" + ] + } + }, + { + "name": "Region", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 9, + "unique_ratio": 0.000912, + "example_values": [ + "6", + "3", + "4", + "1", + "9" + ] + } + }, + { + "name": "TrafficType", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 20, + "unique_ratio": 0.002028, + "example_values": [ + "2", + "8", + "3", + "11", + "1" + ] + } + }, + { + "name": "VisitorType", + "role": "target", + "semantic_type": "categorical", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 3, + "unique_ratio": 0.000304, + "example_values": [ + "Returning_Visitor", + "New_Visitor", + "Other" + ] + } + }, + { + "name": "Weekend", + "role": "feature", + "semantic_type": "boolean", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 2, + "unique_ratio": 0.000203, + "example_values": [ + "FALSE", + "TRUE" + ] + } + }, + { + "name": "Revenue", + "role": "feature", + "semantic_type": "boolean", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 2, + "unique_ratio": 0.000203, + "example_values": [ + "FALSE", + "TRUE" + ] + } + } + ] +} \ No newline at end of file diff --git a/timecost/m6/tabpfgen/tabpfgen-m6-20260429_061036/public_gate/public_gate_report.json b/timecost/m6/tabpfgen/tabpfgen-m6-20260429_061036/public_gate/public_gate_report.json new file mode 100644 index 0000000000000000000000000000000000000000..99a260799c8356f445bdc0b33ccce8b459ba1938 --- /dev/null +++ b/timecost/m6/tabpfgen/tabpfgen-m6-20260429_061036/public_gate/public_gate_report.json @@ -0,0 +1,37 @@ +{ + "dataset_id": "m6", + "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": "VisitorType", + "task_type": "classification", + "input_splits": { + "train": "/data/jialinzhang/SynthesizePipeline-server/DatasetNew/m6/m6-train.csv", + "val": "/data/jialinzhang/SynthesizePipeline-server/DatasetNew/m6/m6-val.csv", + "test": "/data/jialinzhang/SynthesizePipeline-server/DatasetNew/m6/m6-test.csv" + } +} \ No newline at end of file diff --git a/timecost/m6/tabpfgen/tabpfgen-m6-20260429_061036/public_gate/staged_input_manifest.json b/timecost/m6/tabpfgen/tabpfgen-m6-20260429_061036/public_gate/staged_input_manifest.json new file mode 100644 index 0000000000000000000000000000000000000000..09135600094b21b9ba363e7c5a5d7e1045f4a3e0 --- /dev/null +++ b/timecost/m6/tabpfgen/tabpfgen-m6-20260429_061036/public_gate/staged_input_manifest.json @@ -0,0 +1,382 @@ +{ + "dataset_id": "m6", + "target_column": "VisitorType", + "task_type": "classification", + "train_csv": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/m6/tabpfgen/tabpfgen-m6-20260429_061036/staged/public/train.csv", + "val_csv": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/m6/tabpfgen/tabpfgen-m6-20260429_061036/staged/public/val.csv", + "test_csv": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/m6/tabpfgen/tabpfgen-m6-20260429_061036/staged/public/test.csv", + "features_json": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/m6/tabpfgen/tabpfgen-m6-20260429_061036/staged/public/staged_features.json", + "public_gate_report": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/m6/tabpfgen/tabpfgen-m6-20260429_061036/public_gate/public_gate_report.json", + "column_schema": [ + { + "name": "Administrative", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 26, + "unique_ratio": 0.002636, + "example_values": [ + "0", + "3", + "2", + "6", + "1" + ] + } + }, + { + "name": "Administrative_Duration", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 2789, + "unique_ratio": 0.282745, + "example_values": [ + "0", + "45.8", + "77.7", + "52", + "46.33333333" + ] + } + }, + { + "name": "Informational", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 17, + "unique_ratio": 0.001723, + "example_values": [ + "0", + "1", + "3", + "5", + "4" + ] + } + }, + { + "name": "Informational_Duration", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 1074, + "unique_ratio": 0.108881, + "example_values": [ + "0", + "2", + "24", + "86.75", + "62.5" + ] + } + }, + { + "name": "ProductRelated", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 286, + "unique_ratio": 0.028994, + "example_values": [ + "13", + "8", + "63", + "15", + "3" + ] + } + }, + { + "name": "ProductRelated_Duration", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 7769, + "unique_ratio": 0.787612, + "example_values": [ + "549.2", + "64", + "2435.697531", + "267.7333333", + "57.4" + ] + } + }, + { + "name": "BounceRates", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 1574, + "unique_ratio": 0.15957, + "example_values": [ + "0.019230769", + "0", + "0.00952381", + "0.022857143", + "0.004166667" + ] + } + }, + { + "name": "ExitRates", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 3953, + "unique_ratio": 0.40075, + "example_values": [ + "0.045421245", + "0.05", + "0.017460317", + "0.040606061", + "0.133333333" + ] + } + }, + { + "name": "PageValues", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 2129, + "unique_ratio": 0.215835, + "example_values": [ + "0", + "7.945368291", + "10.37042373", + "18.99269231", + "44.33548922" + ] + } + }, + { + "name": "SpecialDay", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 6, + "unique_ratio": 0.000608, + "example_values": [ + "0", + "0.4", + "0.2", + "0.8", + "1" + ] + } + }, + { + "name": "Month", + "role": "feature", + "semantic_type": "categorical", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 10, + "unique_ratio": 0.001014, + "example_values": [ + "Nov", + "Dec", + "Jul", + "Aug", + "Mar" + ] + } + }, + { + "name": "OperatingSystems", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 8, + "unique_ratio": 0.000811, + "example_values": [ + "3", + "2", + "6", + "4", + "1" + ] + } + }, + { + "name": "Browser", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 13, + "unique_ratio": 0.001318, + "example_values": [ + "2", + "1", + "5", + "4", + "3" + ] + } + }, + { + "name": "Region", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 9, + "unique_ratio": 0.000912, + "example_values": [ + "6", + "3", + "4", + "1", + "9" + ] + } + }, + { + "name": "TrafficType", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 20, + "unique_ratio": 0.002028, + "example_values": [ + "2", + "8", + "3", + "11", + "1" + ] + } + }, + { + "name": "VisitorType", + "role": "target", + "semantic_type": "categorical", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 3, + "unique_ratio": 0.000304, + "example_values": [ + "Returning_Visitor", + "New_Visitor", + "Other" + ] + } + }, + { + "name": "Weekend", + "role": "feature", + "semantic_type": "boolean", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 2, + "unique_ratio": 0.000203, + "example_values": [ + "FALSE", + "TRUE" + ] + } + }, + { + "name": "Revenue", + "role": "feature", + "semantic_type": "boolean", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 2, + "unique_ratio": 0.000203, + "example_values": [ + "FALSE", + "TRUE" + ] + } + } + ] +} \ No newline at end of file diff --git a/timecost/m6/tabpfgen/tabpfgen-m6-20260429_061036/runtime_result.json b/timecost/m6/tabpfgen/tabpfgen-m6-20260429_061036/runtime_result.json new file mode 100644 index 0000000000000000000000000000000000000000..95e80ad430a4fb129138017e413b165a0c7849c3 --- /dev/null +++ b/timecost/m6/tabpfgen/tabpfgen-m6-20260429_061036/runtime_result.json @@ -0,0 +1,15 @@ +{ + "dataset_id": "m6", + "model": "tabpfgen", + "run_id": "tabpfgen-m6-20260429_061036", + "public_gate_status": "pass", + "adapter_ready_status": "pass", + "train_status": "success", + "generate_status": "success", + "reason_code": null, + "reason_detail": null, + "artifacts": { + "synthetic_csv": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/m6/tabpfgen/tabpfgen-m6-20260429_061036/tabpfgen-m6-9864-20260429_061037.csv", + "model_path": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/m6/tabpfgen/tabpfgen-m6-20260429_061036" + } +} \ No newline at end of file diff --git a/timecost/m6/tabpfgen/tabpfgen-m6-20260429_061036/staged/public/staged_features.json b/timecost/m6/tabpfgen/tabpfgen-m6-20260429_061036/staged/public/staged_features.json new file mode 100644 index 0000000000000000000000000000000000000000..49b25bd1347f910a2b95ef0c137d1a64bf69e0cb --- /dev/null +++ b/timecost/m6/tabpfgen/tabpfgen-m6-20260429_061036/staged/public/staged_features.json @@ -0,0 +1,92 @@ +[ + { + "feature_name": "Administrative", + "data_type": "continuous", + "is_target": false + }, + { + "feature_name": "Administrative_Duration", + "data_type": "continuous", + "is_target": false + }, + { + "feature_name": "Informational", + "data_type": "continuous", + "is_target": false + }, + { + "feature_name": "Informational_Duration", + "data_type": "continuous", + "is_target": false + }, + { + "feature_name": "ProductRelated", + "data_type": "continuous", + "is_target": false + }, + { + "feature_name": "ProductRelated_Duration", + "data_type": "continuous", + "is_target": false + }, + { + "feature_name": "BounceRates", + "data_type": "continuous", + "is_target": false + }, + { + "feature_name": "ExitRates", + "data_type": "continuous", + "is_target": false + }, + { + "feature_name": "PageValues", + "data_type": "continuous", + "is_target": false + }, + { + "feature_name": "SpecialDay", + "data_type": "continuous", + "is_target": false + }, + { + "feature_name": "Month", + "data_type": "categorical", + "is_target": false + }, + { + "feature_name": "OperatingSystems", + "data_type": "continuous", + "is_target": false + }, + { + "feature_name": "Browser", + "data_type": "continuous", + "is_target": false + }, + { + "feature_name": "Region", + "data_type": "continuous", + "is_target": false + }, + { + "feature_name": "TrafficType", + "data_type": "continuous", + "is_target": false + }, + { + "feature_name": "VisitorType", + "data_type": "categorical", + "is_target": true + }, + { + "feature_name": "Weekend", + "data_type": "binary", + "is_target": false + }, + { + "feature_name": "Revenue", + "data_type": "binary", + "is_target": false + } +] \ No newline at end of file diff --git a/timecost/m6/tabpfgen/tabpfgen-m6-20260429_061036/staged/public/test.csv b/timecost/m6/tabpfgen/tabpfgen-m6-20260429_061036/staged/public/test.csv new file mode 100644 index 0000000000000000000000000000000000000000..3944bd554327e948b8bda8c383bd581f3fc26ec6 --- /dev/null +++ b/timecost/m6/tabpfgen/tabpfgen-m6-20260429_061036/staged/public/test.csv @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:d16d0389cb0fe4b23bab344dc10070de6678357a9452f9f620d0eeba66a6b12d +size 116376 diff --git a/timecost/m6/tabpfgen/tabpfgen-m6-20260429_061036/staged/public/train.csv b/timecost/m6/tabpfgen/tabpfgen-m6-20260429_061036/staged/public/train.csv new file mode 100644 index 0000000000000000000000000000000000000000..ae3a266ed7bebf02bc27c50b9dea6e8c5fe71c10 --- /dev/null +++ b/timecost/m6/tabpfgen/tabpfgen-m6-20260429_061036/staged/public/train.csv @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:e1f0338c367408dc21d5a4ec9cdc5d3fe8188916db6085f3fd326304a55551e1 +size 924849 diff --git a/timecost/m6/tabpfgen/tabpfgen-m6-20260429_061036/staged/public/val.csv b/timecost/m6/tabpfgen/tabpfgen-m6-20260429_061036/staged/public/val.csv new file mode 100644 index 0000000000000000000000000000000000000000..60be57a3609a30d56d27e37e49a3aedfa6294db5 --- /dev/null +++ b/timecost/m6/tabpfgen/tabpfgen-m6-20260429_061036/staged/public/val.csv @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:cb9169f3c7213420491d9b709ee1cc650aeaed732fa77dcbd6ffe3583366b2d4 +size 116198 diff --git a/timecost/m6/tabpfgen/tabpfgen-m6-20260429_061036/staged/tabpfgen/adapter_report.json b/timecost/m6/tabpfgen/tabpfgen-m6-20260429_061036/staged/tabpfgen/adapter_report.json new file mode 100644 index 0000000000000000000000000000000000000000..a297c7fba1d4e98a61ab499f1f767e8f8d4d9d32 --- /dev/null +++ b/timecost/m6/tabpfgen/tabpfgen-m6-20260429_061036/staged/tabpfgen/adapter_report.json @@ -0,0 +1,7 @@ +{ + "adapter_ready_status": "pass", + "adapter_fail_reason_code": null, + "adapter_fail_detail": null, + "adapter_transforms_applied": [], + "model_input_manifest": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/m6/tabpfgen/tabpfgen-m6-20260429_061036/staged/tabpfgen/model_input_manifest.json" +} \ No newline at end of file diff --git a/timecost/m6/tabpfgen/tabpfgen-m6-20260429_061036/staged/tabpfgen/adapter_transforms_applied.json b/timecost/m6/tabpfgen/tabpfgen-m6-20260429_061036/staged/tabpfgen/adapter_transforms_applied.json new file mode 100644 index 0000000000000000000000000000000000000000..0637a088a01e8ddab3bf3fa98dbe804cbde1a0dc --- /dev/null +++ b/timecost/m6/tabpfgen/tabpfgen-m6-20260429_061036/staged/tabpfgen/adapter_transforms_applied.json @@ -0,0 +1 @@ +[] \ No newline at end of file diff --git a/timecost/m6/tabpfgen/tabpfgen-m6-20260429_061036/staged/tabpfgen/model_input_manifest.json b/timecost/m6/tabpfgen/tabpfgen-m6-20260429_061036/staged/tabpfgen/model_input_manifest.json new file mode 100644 index 0000000000000000000000000000000000000000..6dbffbaa03457efb00443aeb1e1f983b6808baf8 --- /dev/null +++ b/timecost/m6/tabpfgen/tabpfgen-m6-20260429_061036/staged/tabpfgen/model_input_manifest.json @@ -0,0 +1,384 @@ +{ + "dataset_id": "m6", + "model": "tabpfgen", + "target_column": "VisitorType", + "task_type": "classification", + "column_schema": [ + { + "name": "Administrative", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 26, + "unique_ratio": 0.002636, + "example_values": [ + "0", + "3", + "2", + "6", + "1" + ] + } + }, + { + "name": "Administrative_Duration", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 2789, + "unique_ratio": 0.282745, + "example_values": [ + "0", + "45.8", + "77.7", + "52", + "46.33333333" + ] + } + }, + { + "name": "Informational", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 17, + "unique_ratio": 0.001723, + "example_values": [ + "0", + "1", + "3", + "5", + "4" + ] + } + }, + { + "name": "Informational_Duration", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 1074, + "unique_ratio": 0.108881, + "example_values": [ + "0", + "2", + "24", + "86.75", + "62.5" + ] + } + }, + { + "name": "ProductRelated", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 286, + "unique_ratio": 0.028994, + "example_values": [ + "13", + "8", + "63", + "15", + "3" + ] + } + }, + { + "name": "ProductRelated_Duration", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 7769, + "unique_ratio": 0.787612, + "example_values": [ + "549.2", + "64", + "2435.697531", + "267.7333333", + "57.4" + ] + } + }, + { + "name": "BounceRates", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 1574, + "unique_ratio": 0.15957, + "example_values": [ + "0.019230769", + "0", + "0.00952381", + "0.022857143", + "0.004166667" + ] + } + }, + { + "name": "ExitRates", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 3953, + "unique_ratio": 0.40075, + "example_values": [ + "0.045421245", + "0.05", + "0.017460317", + "0.040606061", + "0.133333333" + ] + } + }, + { + "name": "PageValues", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 2129, + "unique_ratio": 0.215835, + "example_values": [ + "0", + "7.945368291", + "10.37042373", + "18.99269231", + "44.33548922" + ] + } + }, + { + "name": "SpecialDay", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 6, + "unique_ratio": 0.000608, + "example_values": [ + "0", + "0.4", + "0.2", + "0.8", + "1" + ] + } + }, + { + "name": "Month", + "role": "feature", + "semantic_type": "categorical", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 10, + "unique_ratio": 0.001014, + "example_values": [ + "Nov", + "Dec", + "Jul", + "Aug", + "Mar" + ] + } + }, + { + "name": "OperatingSystems", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 8, + "unique_ratio": 0.000811, + "example_values": [ + "3", + "2", + "6", + "4", + "1" + ] + } + }, + { + "name": "Browser", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 13, + "unique_ratio": 0.001318, + "example_values": [ + "2", + "1", + "5", + "4", + "3" + ] + } + }, + { + "name": "Region", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 9, + "unique_ratio": 0.000912, + "example_values": [ + "6", + "3", + "4", + "1", + "9" + ] + } + }, + { + "name": "TrafficType", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 20, + "unique_ratio": 0.002028, + "example_values": [ + "2", + "8", + "3", + "11", + "1" + ] + } + }, + { + "name": "VisitorType", + "role": "target", + "semantic_type": "categorical", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 3, + "unique_ratio": 0.000304, + "example_values": [ + "Returning_Visitor", + "New_Visitor", + "Other" + ] + } + }, + { + "name": "Weekend", + "role": "feature", + "semantic_type": "boolean", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 2, + "unique_ratio": 0.000203, + "example_values": [ + "FALSE", + "TRUE" + ] + } + }, + { + "name": "Revenue", + "role": "feature", + "semantic_type": "boolean", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 2, + "unique_ratio": 0.000203, + "example_values": [ + "FALSE", + "TRUE" + ] + } + } + ], + "public_manifest": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/m6/tabpfgen/tabpfgen-m6-20260429_061036/public_gate/staged_input_manifest.json", + "train_csv": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/m6/tabpfgen/tabpfgen-m6-20260429_061036/staged/public/train.csv", + "val_csv": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/m6/tabpfgen/tabpfgen-m6-20260429_061036/staged/public/val.csv", + "test_csv": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/m6/tabpfgen/tabpfgen-m6-20260429_061036/staged/public/test.csv", + "features_json": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/m6/tabpfgen/tabpfgen-m6-20260429_061036/staged/public/staged_features.json", + "public_gate_report": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/m6/tabpfgen/tabpfgen-m6-20260429_061036/public_gate/public_gate_report.json" +} \ No newline at end of file diff --git a/timecost/m6/tabpfgen/tabpfgen-m6-20260429_061036/tabpfgen-m6-9864-20260429_061037.csv b/timecost/m6/tabpfgen/tabpfgen-m6-20260429_061036/tabpfgen-m6-9864-20260429_061037.csv new file mode 100644 index 0000000000000000000000000000000000000000..27f88c81d471d41817e16176e616a321845721a5 --- /dev/null +++ b/timecost/m6/tabpfgen/tabpfgen-m6-20260429_061036/tabpfgen-m6-9864-20260429_061037.csv @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:add4f4a878f040f1c7d2159a18e9300a83135f301ad1a81224dd9c17e49f14b0 +size 1969051 diff --git a/timecost/m6/tabpfgen/tabpfgen-m6-20260429_061036/tabpfgen_meta.json b/timecost/m6/tabpfgen/tabpfgen-m6-20260429_061036/tabpfgen_meta.json new file mode 100644 index 0000000000000000000000000000000000000000..1b37a108dd2d0f81f90a19c2823cbb8308fd8b80 --- /dev/null +++ b/timecost/m6/tabpfgen/tabpfgen-m6-20260429_061036/tabpfgen_meta.json @@ -0,0 +1,9 @@ +{ + "csv_path": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/m6/tabpfgen/tabpfgen-m6-20260429_061036/staged/public/train.csv", + "json_path": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/m6/tabpfgen/tabpfgen-m6-20260429_061036/staged/public/staged_features.json", + "target_col": "VisitorType", + "is_classification": true, + "task_type": "classification", + "n_rows": 9864, + "n_cols": 18 +} \ No newline at end of file diff --git a/timecost/m6/tabpfgen/tabpfgen-m6-20260429_061036/train_20260429_061037.log b/timecost/m6/tabpfgen/tabpfgen-m6-20260429_061036/train_20260429_061037.log new file mode 100644 index 0000000000000000000000000000000000000000..c24d9e48eb43c865da36ad40085790e47b2b23e9 --- /dev/null +++ b/timecost/m6/tabpfgen/tabpfgen-m6-20260429_061036/train_20260429_061037.log @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:cb1ebbf34920b287311be084a383babac0d04e9f6379859eeb08115d9c1ee42e +size 595 diff --git a/timecost/m6/tabsyn/tabsyn-m6-20260429_052236/_tabsyn_sample.py b/timecost/m6/tabsyn/tabsyn-m6-20260429_052236/_tabsyn_sample.py new file mode 100644 index 0000000000000000000000000000000000000000..3aa741b6000357c1afaa1b62f5387887e827589f --- /dev/null +++ b/timecost/m6/tabsyn/tabsyn-m6-20260429_052236/_tabsyn_sample.py @@ -0,0 +1,39 @@ +import os, sys, subprocess + +work_dir = "/work/output-Benchmark-trainonly-v1/m6/tabsyn/tabsyn-m6-20260429_052236" +dataname = "tabsyn_m6" +output_csv = "/work/output-Benchmark-trainonly-v1/m6/tabsyn/tabsyn-m6-20260429_052236/tabsyn-m6-9864-20260429_061024.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 9864 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/timecost/m6/tabsyn/tabsyn-m6-20260429_052236/_tabsyn_train.py b/timecost/m6/tabsyn/tabsyn-m6-20260429_052236/_tabsyn_train.py new file mode 100644 index 0000000000000000000000000000000000000000..5046457476de92de33f824cb443cd014d5641228 --- /dev/null +++ b/timecost/m6/tabsyn/tabsyn-m6-20260429_052236/_tabsyn_train.py @@ -0,0 +1,65 @@ +import os, sys, subprocess + +work_dir = "/work/output-Benchmark-trainonly-v1/m6/tabsyn/tabsyn-m6-20260429_052236" +dataname = "tabsyn_m6" +tabsyn_root = "/workspace/tabsyn" + +assert os.path.exists(tabsyn_root), f"TabSyn source not mounted: {tabsyn_root}" + +old = os.environ.get("PYTHONPATH", "") +os.environ["PYTHONPATH"] = tabsyn_root + (os.pathsep + old if old else "") +sys.path.insert(0, tabsyn_root) + +os.chdir(tabsyn_root) + +# Symlink data dir into TabSyn data/ +data_link = os.path.join(tabsyn_root, "data", dataname) +data_src = os.path.join(work_dir, "data", dataname) +os.makedirs(os.path.join(tabsyn_root, "data"), exist_ok=True) +if os.path.exists(data_link): + os.remove(data_link) +os.symlink(data_src, data_link) + +env = os.environ.copy() +env.setdefault("TABSYN_RESUME", "1") +env.setdefault("TABSYN_VAE_BATCH_SIZE", "1024") +# Safer defaults for wide tables on Docker: reduce shared-memory pressure in diffusion DataLoader. +env.setdefault("TABSYN_DIFFUSION_NUM_WORKERS", "0") +_te = None +if _te is not None: + env["TABSYN_VAE_EPOCHS"] = str(_te) + env["TABSYN_DIFFUSION_MAX_EPOCHS"] = str(max(_te + 1, 2)) + +# Data preprocessing is done on the host side (_prepare_data_dir) +# which creates .npy files, train/test CSVs, and info.json + +# Step 1: Train VAE (produces latent embeddings) +print(f"[TabSyn] Step 1/2: Training VAE in {tabsyn_root}, dataname={dataname}") +ret = subprocess.run( + [sys.executable, "main.py", + "--dataname", dataname, + "--mode", "train", + "--method", "vae", + "--gpu", "0"], + cwd=tabsyn_root, + env=env +) +if ret.returncode != 0: + print("[TabSyn] VAE training failed") + sys.exit(ret.returncode) + +# Step 2: Train diffusion model on latent space +print(f"[TabSyn] Step 2/2: Training diffusion model") +ret = subprocess.run( + [sys.executable, "main.py", + "--dataname", dataname, + "--mode", "train", + "--method", "tabsyn", + "--gpu", "0"], + cwd=tabsyn_root, + env=env +) +if ret.returncode != 0: + print("[TabSyn] Diffusion training failed") + sys.exit(ret.returncode) +print("[TabSyn] Training complete (VAE + Diffusion)") diff --git a/timecost/m6/tabsyn/tabsyn-m6-20260429_052236/data/tabsyn_m6/X_cat_test.npy b/timecost/m6/tabsyn/tabsyn-m6-20260429_052236/data/tabsyn_m6/X_cat_test.npy new file mode 100644 index 0000000000000000000000000000000000000000..8884f48287fb9f926c3463bfbdd06705e40c69d6 --- /dev/null +++ b/timecost/m6/tabsyn/tabsyn-m6-20260429_052236/data/tabsyn_m6/X_cat_test.npy @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:00c2416031b4d6f8d108691a3b9c7b3009c7e0fdc44ddca005fbecf399ae2435 +size 236864 diff --git a/timecost/m6/tabsyn/tabsyn-m6-20260429_052236/data/tabsyn_m6/X_cat_train.npy b/timecost/m6/tabsyn/tabsyn-m6-20260429_052236/data/tabsyn_m6/X_cat_train.npy new file mode 100644 index 0000000000000000000000000000000000000000..8884f48287fb9f926c3463bfbdd06705e40c69d6 --- /dev/null +++ b/timecost/m6/tabsyn/tabsyn-m6-20260429_052236/data/tabsyn_m6/X_cat_train.npy @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:00c2416031b4d6f8d108691a3b9c7b3009c7e0fdc44ddca005fbecf399ae2435 +size 236864 diff --git a/timecost/m6/tabsyn/tabsyn-m6-20260429_052236/data/tabsyn_m6/X_num_test.npy b/timecost/m6/tabsyn/tabsyn-m6-20260429_052236/data/tabsyn_m6/X_num_test.npy new file mode 100644 index 0000000000000000000000000000000000000000..e00fb621bec79b3db12b58f7a335ce049229c0e9 --- /dev/null +++ b/timecost/m6/tabsyn/tabsyn-m6-20260429_052236/data/tabsyn_m6/X_num_test.npy @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:960545f531401f06b1ef44d43f0e45228b36d96b6f6dbf87b8f6ad8578e915f5 +size 552512 diff --git a/timecost/m6/tabsyn/tabsyn-m6-20260429_052236/data/tabsyn_m6/X_num_train.npy b/timecost/m6/tabsyn/tabsyn-m6-20260429_052236/data/tabsyn_m6/X_num_train.npy new file mode 100644 index 0000000000000000000000000000000000000000..e00fb621bec79b3db12b58f7a335ce049229c0e9 --- /dev/null +++ b/timecost/m6/tabsyn/tabsyn-m6-20260429_052236/data/tabsyn_m6/X_num_train.npy @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:960545f531401f06b1ef44d43f0e45228b36d96b6f6dbf87b8f6ad8578e915f5 +size 552512 diff --git a/timecost/m6/tabsyn/tabsyn-m6-20260429_052236/data/tabsyn_m6/info.json b/timecost/m6/tabsyn/tabsyn-m6-20260429_052236/data/tabsyn_m6/info.json new file mode 100644 index 0000000000000000000000000000000000000000..3b4dd2bf95f0c419eacc16868117dfa1295ccd50 --- /dev/null +++ b/timecost/m6/tabsyn/tabsyn-m6-20260429_052236/data/tabsyn_m6/info.json @@ -0,0 +1,190 @@ +{ + "name": "tabsyn_m6", + "task_type": "multiclass", + "n_num_features": 14, + "n_cat_features": 3, + "train_size": 9864, + "num_col_idx": [ + 0, + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 11, + 12, + 13, + 14 + ], + "cat_col_idx": [ + 10, + 16, + 17 + ], + "target_col_idx": [ + 15 + ], + "column_names": [ + "Administrative", + "Administrative_Duration", + "Informational", + "Informational_Duration", + "ProductRelated", + "ProductRelated_Duration", + "BounceRates", + "ExitRates", + "PageValues", + "SpecialDay", + "Month", + "OperatingSystems", + "Browser", + "Region", + "TrafficType", + "VisitorType", + "Weekend", + "Revenue" + ], + "train_num": 9864, + "test_num": 9864, + "header": 0, + "file_type": "csv", + "data_path": "data/tabsyn_m6/train.csv", + "test_path": null, + "idx_mapping": { + "0": 0, + "1": 1, + "2": 2, + "3": 3, + "4": 4, + "5": 5, + "6": 6, + "7": 7, + "8": 8, + "9": 9, + "10": 14, + "11": 10, + "12": 11, + "13": 12, + "14": 13, + "15": 17, + "16": 15, + "17": 16 + }, + "inverse_idx_mapping": { + "0": 0, + "1": 1, + "2": 2, + "3": 3, + "4": 4, + "5": 5, + "6": 6, + "7": 7, + "8": 8, + "9": 9, + "14": 10, + "10": 11, + "11": 12, + "12": 13, + "13": 14, + "17": 15, + "15": 16, + "16": 17 + }, + "idx_name_mapping": { + "0": "Administrative", + "1": "Administrative_Duration", + "2": "Informational", + "3": "Informational_Duration", + "4": "ProductRelated", + "5": "ProductRelated_Duration", + "6": "BounceRates", + "7": "ExitRates", + "8": "PageValues", + "9": "SpecialDay", + "10": "Month", + "11": "OperatingSystems", + "12": "Browser", + "13": "Region", + "14": "TrafficType", + "15": "VisitorType", + "16": "Weekend", + "17": "Revenue" + }, + "n_classes": 3, + "metadata": { + "columns": { + "0": { + "sdtype": "numerical", + "computer_representation": "Float" + }, + "1": { + "sdtype": "numerical", + "computer_representation": "Float" + }, + "2": { + "sdtype": "numerical", + "computer_representation": "Float" + }, + "3": { + "sdtype": "numerical", + "computer_representation": "Float" + }, + "4": { + "sdtype": "numerical", + "computer_representation": "Float" + }, + "5": { + "sdtype": "numerical", + "computer_representation": "Float" + }, + "6": { + "sdtype": "numerical", + "computer_representation": "Float" + }, + "7": { + "sdtype": "numerical", + "computer_representation": "Float" + }, + "8": { + "sdtype": "numerical", + "computer_representation": "Float" + }, + "9": { + "sdtype": "numerical", + "computer_representation": "Float" + }, + "11": { + "sdtype": "numerical", + "computer_representation": "Float" + }, + "12": { + "sdtype": "numerical", + "computer_representation": "Float" + }, + "13": { + "sdtype": "numerical", + "computer_representation": "Float" + }, + "14": { + "sdtype": "numerical", + "computer_representation": "Float" + }, + "10": { + "sdtype": "categorical" + }, + "16": { + "sdtype": "categorical" + }, + "17": { + "sdtype": "categorical" + }, + "15": { + "sdtype": "categorical" + } + } + } +} \ No newline at end of file diff --git a/timecost/m6/tabsyn/tabsyn-m6-20260429_052236/data/tabsyn_m6/test.csv b/timecost/m6/tabsyn/tabsyn-m6-20260429_052236/data/tabsyn_m6/test.csv new file mode 100644 index 0000000000000000000000000000000000000000..226e311b04feed230ffa47ab4058f94a81db538c --- /dev/null +++ b/timecost/m6/tabsyn/tabsyn-m6-20260429_052236/data/tabsyn_m6/test.csv @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:a9af4fba58b8379aa9b5e7f1c822cd31c8ecaae87e2903e7d1ed61e70e3537a9 +size 681017 diff --git a/timecost/m6/tabsyn/tabsyn-m6-20260429_052236/data/tabsyn_m6/train.csv b/timecost/m6/tabsyn/tabsyn-m6-20260429_052236/data/tabsyn_m6/train.csv new file mode 100644 index 0000000000000000000000000000000000000000..226e311b04feed230ffa47ab4058f94a81db538c --- /dev/null +++ b/timecost/m6/tabsyn/tabsyn-m6-20260429_052236/data/tabsyn_m6/train.csv @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:a9af4fba58b8379aa9b5e7f1c822cd31c8ecaae87e2903e7d1ed61e70e3537a9 +size 681017 diff --git a/timecost/m6/tabsyn/tabsyn-m6-20260429_052236/data/tabsyn_m6/y_test.npy b/timecost/m6/tabsyn/tabsyn-m6-20260429_052236/data/tabsyn_m6/y_test.npy new file mode 100644 index 0000000000000000000000000000000000000000..e34bcc9fd04edd2d1593df5da9e33ee576a672df --- /dev/null +++ b/timecost/m6/tabsyn/tabsyn-m6-20260429_052236/data/tabsyn_m6/y_test.npy @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:aeb7e929da72eb6d27dd41c546e74e0fee12ddfff4b3560f52818c33dc64e073 +size 79040 diff --git a/timecost/m6/tabsyn/tabsyn-m6-20260429_052236/data/tabsyn_m6/y_train.npy b/timecost/m6/tabsyn/tabsyn-m6-20260429_052236/data/tabsyn_m6/y_train.npy new file mode 100644 index 0000000000000000000000000000000000000000..e34bcc9fd04edd2d1593df5da9e33ee576a672df --- /dev/null +++ b/timecost/m6/tabsyn/tabsyn-m6-20260429_052236/data/tabsyn_m6/y_train.npy @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:aeb7e929da72eb6d27dd41c546e74e0fee12ddfff4b3560f52818c33dc64e073 +size 79040 diff --git a/timecost/m6/tabsyn/tabsyn-m6-20260429_052236/gen_20260429_061024.log b/timecost/m6/tabsyn/tabsyn-m6-20260429_052236/gen_20260429_061024.log new file mode 100644 index 0000000000000000000000000000000000000000..91d1014da39cee2184e3f673456cae5a7cfad4f5 --- /dev/null +++ b/timecost/m6/tabsyn/tabsyn-m6-20260429_052236/gen_20260429_061024.log @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:b12db0a188592a6f291d6da6fb54eb894d87305df72ffda7524c26619ad54d47 +size 940 diff --git a/timecost/m6/tabsyn/tabsyn-m6-20260429_052236/input_snapshot.json b/timecost/m6/tabsyn/tabsyn-m6-20260429_052236/input_snapshot.json new file mode 100644 index 0000000000000000000000000000000000000000..3ec9ea42404ad57aac0c9955d1d5b1cb9a097602 --- /dev/null +++ b/timecost/m6/tabsyn/tabsyn-m6-20260429_052236/input_snapshot.json @@ -0,0 +1,36 @@ +{ + "dataset_id": "m6", + "model": "tabsyn", + "inputs": { + "train_csv": { + "path": "/data/jialinzhang/SynthesizePipeline-server/DatasetNew/m6/m6-train.csv", + "exists": true, + "size": 856785, + "sha256": "a5d1c487a8f2611385915fcc5a52bad546680ddbc8d23fc695f442cdd6dafa0c" + }, + "val_csv": { + "path": "/data/jialinzhang/SynthesizePipeline-server/DatasetNew/m6/m6-val.csv", + "exists": true, + "size": 107758, + "sha256": "598196cecc227cfba95c9796b80bc1baf684a0117e6673b8662b89482cdcb78f" + }, + "test_csv": { + "path": "/data/jialinzhang/SynthesizePipeline-server/DatasetNew/m6/m6-test.csv", + "exists": true, + "size": 107996, + "sha256": "ec939ad96a3b14dd960886359fb6c5d45591adc8a734661ade3dee1417a015de" + }, + "profile_json": { + "path": "/data/jialinzhang/SynthesizePipeline-server/DatasetNew/artifacts/data_core/tabular/m6/m6-dataset_profile.json", + "exists": true, + "size": 7622, + "sha256": "859f1fe93806c8ecdea9c9db9db34fb6cf94bc112b5c0a66b2436e8ef71c2e98" + }, + "contract_json": { + "path": "/data/jialinzhang/SynthesizePipeline-server/DatasetNew/artifacts/data_core/tabular/m6/m6-dataset_contract_v1.json", + "exists": true, + "size": 8990, + "sha256": "01142eeb121af615a644c3e312f5f3e79d805396339f40d5a300ba3560cf8e90" + } + } +} \ No newline at end of file diff --git a/timecost/m6/tabsyn/tabsyn-m6-20260429_052236/public_gate/normalized_schema_snapshot.json b/timecost/m6/tabsyn/tabsyn-m6-20260429_052236/public_gate/normalized_schema_snapshot.json new file mode 100644 index 0000000000000000000000000000000000000000..0d48abfe61f58323fd4a425d175b354d51045ae1 --- /dev/null +++ b/timecost/m6/tabsyn/tabsyn-m6-20260429_052236/public_gate/normalized_schema_snapshot.json @@ -0,0 +1,377 @@ +{ + "dataset_id": "m6", + "target_column": "VisitorType", + "task_type": "classification", + "columns": [ + { + "name": "Administrative", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 26, + "unique_ratio": 0.002636, + "example_values": [ + "0", + "3", + "2", + "6", + "1" + ] + } + }, + { + "name": "Administrative_Duration", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 2789, + "unique_ratio": 0.282745, + "example_values": [ + "0", + "45.8", + "77.7", + "52", + "46.33333333" + ] + } + }, + { + "name": "Informational", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 17, + "unique_ratio": 0.001723, + "example_values": [ + "0", + "1", + "3", + "5", + "4" + ] + } + }, + { + "name": "Informational_Duration", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 1074, + "unique_ratio": 0.108881, + "example_values": [ + "0", + "2", + "24", + "86.75", + "62.5" + ] + } + }, + { + "name": "ProductRelated", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 286, + "unique_ratio": 0.028994, + "example_values": [ + "13", + "8", + "63", + "15", + "3" + ] + } + }, + { + "name": "ProductRelated_Duration", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 7769, + "unique_ratio": 0.787612, + "example_values": [ + "549.2", + "64", + "2435.697531", + "267.7333333", + "57.4" + ] + } + }, + { + "name": "BounceRates", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 1574, + "unique_ratio": 0.15957, + "example_values": [ + "0.019230769", + "0", + "0.00952381", + "0.022857143", + "0.004166667" + ] + } + }, + { + "name": "ExitRates", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 3953, + "unique_ratio": 0.40075, + "example_values": [ + "0.045421245", + "0.05", + "0.017460317", + "0.040606061", + "0.133333333" + ] + } + }, + { + "name": "PageValues", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 2129, + "unique_ratio": 0.215835, + "example_values": [ + "0", + "7.945368291", + "10.37042373", + "18.99269231", + "44.33548922" + ] + } + }, + { + "name": "SpecialDay", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 6, + "unique_ratio": 0.000608, + "example_values": [ + "0", + "0.4", + "0.2", + "0.8", + "1" + ] + } + }, + { + "name": "Month", + "role": "feature", + "semantic_type": "categorical", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 10, + "unique_ratio": 0.001014, + "example_values": [ + "Nov", + "Dec", + "Jul", + "Aug", + "Mar" + ] + } + }, + { + "name": "OperatingSystems", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 8, + "unique_ratio": 0.000811, + "example_values": [ + "3", + "2", + "6", + "4", + "1" + ] + } + }, + { + "name": "Browser", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 13, + "unique_ratio": 0.001318, + "example_values": [ + "2", + "1", + "5", + "4", + "3" + ] + } + }, + { + "name": "Region", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 9, + "unique_ratio": 0.000912, + "example_values": [ + "6", + "3", + "4", + "1", + "9" + ] + } + }, + { + "name": "TrafficType", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 20, + "unique_ratio": 0.002028, + "example_values": [ + "2", + "8", + "3", + "11", + "1" + ] + } + }, + { + "name": "VisitorType", + "role": "target", + "semantic_type": "categorical", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 3, + "unique_ratio": 0.000304, + "example_values": [ + "Returning_Visitor", + "New_Visitor", + "Other" + ] + } + }, + { + "name": "Weekend", + "role": "feature", + "semantic_type": "boolean", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 2, + "unique_ratio": 0.000203, + "example_values": [ + "FALSE", + "TRUE" + ] + } + }, + { + "name": "Revenue", + "role": "feature", + "semantic_type": "boolean", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 2, + "unique_ratio": 0.000203, + "example_values": [ + "FALSE", + "TRUE" + ] + } + } + ] +} \ No newline at end of file diff --git a/timecost/m6/tabsyn/tabsyn-m6-20260429_052236/public_gate/public_gate_report.json b/timecost/m6/tabsyn/tabsyn-m6-20260429_052236/public_gate/public_gate_report.json new file mode 100644 index 0000000000000000000000000000000000000000..99a260799c8356f445bdc0b33ccce8b459ba1938 --- /dev/null +++ b/timecost/m6/tabsyn/tabsyn-m6-20260429_052236/public_gate/public_gate_report.json @@ -0,0 +1,37 @@ +{ + "dataset_id": "m6", + "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": "VisitorType", + "task_type": "classification", + "input_splits": { + "train": "/data/jialinzhang/SynthesizePipeline-server/DatasetNew/m6/m6-train.csv", + "val": "/data/jialinzhang/SynthesizePipeline-server/DatasetNew/m6/m6-val.csv", + "test": "/data/jialinzhang/SynthesizePipeline-server/DatasetNew/m6/m6-test.csv" + } +} \ No newline at end of file diff --git a/timecost/m6/tabsyn/tabsyn-m6-20260429_052236/public_gate/staged_input_manifest.json b/timecost/m6/tabsyn/tabsyn-m6-20260429_052236/public_gate/staged_input_manifest.json new file mode 100644 index 0000000000000000000000000000000000000000..0d1aca28472bf50e269cebb9b0aef1842db68abf --- /dev/null +++ b/timecost/m6/tabsyn/tabsyn-m6-20260429_052236/public_gate/staged_input_manifest.json @@ -0,0 +1,382 @@ +{ + "dataset_id": "m6", + "target_column": "VisitorType", + "task_type": "classification", + "train_csv": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/m6/tabsyn/tabsyn-m6-20260429_052236/staged/public/train.csv", + "val_csv": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/m6/tabsyn/tabsyn-m6-20260429_052236/staged/public/val.csv", + "test_csv": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/m6/tabsyn/tabsyn-m6-20260429_052236/staged/public/test.csv", + "features_json": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/m6/tabsyn/tabsyn-m6-20260429_052236/staged/public/staged_features.json", + "public_gate_report": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/m6/tabsyn/tabsyn-m6-20260429_052236/public_gate/public_gate_report.json", + "column_schema": [ + { + "name": "Administrative", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 26, + "unique_ratio": 0.002636, + "example_values": [ + "0", + "3", + "2", + "6", + "1" + ] + } + }, + { + "name": "Administrative_Duration", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 2789, + "unique_ratio": 0.282745, + "example_values": [ + "0", + "45.8", + "77.7", + "52", + "46.33333333" + ] + } + }, + { + "name": "Informational", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 17, + "unique_ratio": 0.001723, + "example_values": [ + "0", + "1", + "3", + "5", + "4" + ] + } + }, + { + "name": "Informational_Duration", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 1074, + "unique_ratio": 0.108881, + "example_values": [ + "0", + "2", + "24", + "86.75", + "62.5" + ] + } + }, + { + "name": "ProductRelated", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 286, + "unique_ratio": 0.028994, + "example_values": [ + "13", + "8", + "63", + "15", + "3" + ] + } + }, + { + "name": "ProductRelated_Duration", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 7769, + "unique_ratio": 0.787612, + "example_values": [ + "549.2", + "64", + "2435.697531", + "267.7333333", + "57.4" + ] + } + }, + { + "name": "BounceRates", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 1574, + "unique_ratio": 0.15957, + "example_values": [ + "0.019230769", + "0", + "0.00952381", + "0.022857143", + "0.004166667" + ] + } + }, + { + "name": "ExitRates", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 3953, + "unique_ratio": 0.40075, + "example_values": [ + "0.045421245", + "0.05", + "0.017460317", + "0.040606061", + "0.133333333" + ] + } + }, + { + "name": "PageValues", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 2129, + "unique_ratio": 0.215835, + "example_values": [ + "0", + "7.945368291", + "10.37042373", + "18.99269231", + "44.33548922" + ] + } + }, + { + "name": "SpecialDay", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 6, + "unique_ratio": 0.000608, + "example_values": [ + "0", + "0.4", + "0.2", + "0.8", + "1" + ] + } + }, + { + "name": "Month", + "role": "feature", + "semantic_type": "categorical", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 10, + "unique_ratio": 0.001014, + "example_values": [ + "Nov", + "Dec", + "Jul", + "Aug", + "Mar" + ] + } + }, + { + "name": "OperatingSystems", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 8, + "unique_ratio": 0.000811, + "example_values": [ + "3", + "2", + "6", + "4", + "1" + ] + } + }, + { + "name": "Browser", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 13, + "unique_ratio": 0.001318, + "example_values": [ + "2", + "1", + "5", + "4", + "3" + ] + } + }, + { + "name": "Region", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 9, + "unique_ratio": 0.000912, + "example_values": [ + "6", + "3", + "4", + "1", + "9" + ] + } + }, + { + "name": "TrafficType", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 20, + "unique_ratio": 0.002028, + "example_values": [ + "2", + "8", + "3", + "11", + "1" + ] + } + }, + { + "name": "VisitorType", + "role": "target", + "semantic_type": "categorical", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 3, + "unique_ratio": 0.000304, + "example_values": [ + "Returning_Visitor", + "New_Visitor", + "Other" + ] + } + }, + { + "name": "Weekend", + "role": "feature", + "semantic_type": "boolean", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 2, + "unique_ratio": 0.000203, + "example_values": [ + "FALSE", + "TRUE" + ] + } + }, + { + "name": "Revenue", + "role": "feature", + "semantic_type": "boolean", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 2, + "unique_ratio": 0.000203, + "example_values": [ + "FALSE", + "TRUE" + ] + } + } + ] +} \ No newline at end of file diff --git a/timecost/m6/tabsyn/tabsyn-m6-20260429_052236/runtime_result.json b/timecost/m6/tabsyn/tabsyn-m6-20260429_052236/runtime_result.json new file mode 100644 index 0000000000000000000000000000000000000000..2a30c3f40a5bdcfaf468a1ce7a3731b1e3f766dc --- /dev/null +++ b/timecost/m6/tabsyn/tabsyn-m6-20260429_052236/runtime_result.json @@ -0,0 +1,15 @@ +{ + "dataset_id": "m6", + "model": "tabsyn", + "run_id": "tabsyn-m6-20260429_052236", + "public_gate_status": "pass", + "adapter_ready_status": "pass", + "train_status": "success", + "generate_status": "success", + "reason_code": null, + "reason_detail": null, + "artifacts": { + "synthetic_csv": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/m6/tabsyn/tabsyn-m6-20260429_052236/tabsyn-m6-9864-20260429_061024.csv", + "model_path": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/m6/tabsyn/tabsyn-m6-20260429_052236" + } +} \ No newline at end of file diff --git a/timecost/m6/tabsyn/tabsyn-m6-20260429_052236/staged/public/staged_features.json b/timecost/m6/tabsyn/tabsyn-m6-20260429_052236/staged/public/staged_features.json new file mode 100644 index 0000000000000000000000000000000000000000..49b25bd1347f910a2b95ef0c137d1a64bf69e0cb --- /dev/null +++ b/timecost/m6/tabsyn/tabsyn-m6-20260429_052236/staged/public/staged_features.json @@ -0,0 +1,92 @@ +[ + { + "feature_name": "Administrative", + "data_type": "continuous", + "is_target": false + }, + { + "feature_name": "Administrative_Duration", + "data_type": "continuous", + "is_target": false + }, + { + "feature_name": "Informational", + "data_type": "continuous", + "is_target": false + }, + { + "feature_name": "Informational_Duration", + "data_type": "continuous", + "is_target": false + }, + { + "feature_name": "ProductRelated", + "data_type": "continuous", + "is_target": false + }, + { + "feature_name": "ProductRelated_Duration", + "data_type": "continuous", + "is_target": false + }, + { + "feature_name": "BounceRates", + "data_type": "continuous", + "is_target": false + }, + { + "feature_name": "ExitRates", + "data_type": "continuous", + "is_target": false + }, + { + "feature_name": "PageValues", + "data_type": "continuous", + "is_target": false + }, + { + "feature_name": "SpecialDay", + "data_type": "continuous", + "is_target": false + }, + { + "feature_name": "Month", + "data_type": "categorical", + "is_target": false + }, + { + "feature_name": "OperatingSystems", + "data_type": "continuous", + "is_target": false + }, + { + "feature_name": "Browser", + "data_type": "continuous", + "is_target": false + }, + { + "feature_name": "Region", + "data_type": "continuous", + "is_target": false + }, + { + "feature_name": "TrafficType", + "data_type": "continuous", + "is_target": false + }, + { + "feature_name": "VisitorType", + "data_type": "categorical", + "is_target": true + }, + { + "feature_name": "Weekend", + "data_type": "binary", + "is_target": false + }, + { + "feature_name": "Revenue", + "data_type": "binary", + "is_target": false + } +] \ No newline at end of file diff --git a/timecost/m6/tabsyn/tabsyn-m6-20260429_052236/staged/public/test.csv b/timecost/m6/tabsyn/tabsyn-m6-20260429_052236/staged/public/test.csv new file mode 100644 index 0000000000000000000000000000000000000000..3944bd554327e948b8bda8c383bd581f3fc26ec6 --- /dev/null +++ b/timecost/m6/tabsyn/tabsyn-m6-20260429_052236/staged/public/test.csv @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:d16d0389cb0fe4b23bab344dc10070de6678357a9452f9f620d0eeba66a6b12d +size 116376 diff --git a/timecost/m6/tabsyn/tabsyn-m6-20260429_052236/staged/public/train.csv b/timecost/m6/tabsyn/tabsyn-m6-20260429_052236/staged/public/train.csv new file mode 100644 index 0000000000000000000000000000000000000000..ae3a266ed7bebf02bc27c50b9dea6e8c5fe71c10 --- /dev/null +++ b/timecost/m6/tabsyn/tabsyn-m6-20260429_052236/staged/public/train.csv @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:e1f0338c367408dc21d5a4ec9cdc5d3fe8188916db6085f3fd326304a55551e1 +size 924849 diff --git a/timecost/m6/tabsyn/tabsyn-m6-20260429_052236/staged/public/val.csv b/timecost/m6/tabsyn/tabsyn-m6-20260429_052236/staged/public/val.csv new file mode 100644 index 0000000000000000000000000000000000000000..60be57a3609a30d56d27e37e49a3aedfa6294db5 --- /dev/null +++ b/timecost/m6/tabsyn/tabsyn-m6-20260429_052236/staged/public/val.csv @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:cb9169f3c7213420491d9b709ee1cc650aeaed732fa77dcbd6ffe3583366b2d4 +size 116198 diff --git a/timecost/m6/tabsyn/tabsyn-m6-20260429_052236/staged/tabsyn/adapter_report.json b/timecost/m6/tabsyn/tabsyn-m6-20260429_052236/staged/tabsyn/adapter_report.json new file mode 100644 index 0000000000000000000000000000000000000000..ede856fc84575d6fce5a8cbb08efa0242dd8fb3e --- /dev/null +++ b/timecost/m6/tabsyn/tabsyn-m6-20260429_052236/staged/tabsyn/adapter_report.json @@ -0,0 +1,7 @@ +{ + "adapter_ready_status": "pass", + "adapter_fail_reason_code": null, + "adapter_fail_detail": null, + "adapter_transforms_applied": [], + "model_input_manifest": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/m6/tabsyn/tabsyn-m6-20260429_052236/staged/tabsyn/model_input_manifest.json" +} \ No newline at end of file diff --git a/timecost/m6/tabsyn/tabsyn-m6-20260429_052236/staged/tabsyn/adapter_transforms_applied.json b/timecost/m6/tabsyn/tabsyn-m6-20260429_052236/staged/tabsyn/adapter_transforms_applied.json new file mode 100644 index 0000000000000000000000000000000000000000..0637a088a01e8ddab3bf3fa98dbe804cbde1a0dc --- /dev/null +++ b/timecost/m6/tabsyn/tabsyn-m6-20260429_052236/staged/tabsyn/adapter_transforms_applied.json @@ -0,0 +1 @@ +[] \ No newline at end of file diff --git a/timecost/m6/tabsyn/tabsyn-m6-20260429_052236/staged/tabsyn/model_input_manifest.json b/timecost/m6/tabsyn/tabsyn-m6-20260429_052236/staged/tabsyn/model_input_manifest.json new file mode 100644 index 0000000000000000000000000000000000000000..f7ce18ee0ea2ac2f97f898dc3ff46225eb209ec7 --- /dev/null +++ b/timecost/m6/tabsyn/tabsyn-m6-20260429_052236/staged/tabsyn/model_input_manifest.json @@ -0,0 +1,384 @@ +{ + "dataset_id": "m6", + "model": "tabsyn", + "target_column": "VisitorType", + "task_type": "classification", + "column_schema": [ + { + "name": "Administrative", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 26, + "unique_ratio": 0.002636, + "example_values": [ + "0", + "3", + "2", + "6", + "1" + ] + } + }, + { + "name": "Administrative_Duration", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 2789, + "unique_ratio": 0.282745, + "example_values": [ + "0", + "45.8", + "77.7", + "52", + "46.33333333" + ] + } + }, + { + "name": "Informational", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 17, + "unique_ratio": 0.001723, + "example_values": [ + "0", + "1", + "3", + "5", + "4" + ] + } + }, + { + "name": "Informational_Duration", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 1074, + "unique_ratio": 0.108881, + "example_values": [ + "0", + "2", + "24", + "86.75", + "62.5" + ] + } + }, + { + "name": "ProductRelated", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 286, + "unique_ratio": 0.028994, + "example_values": [ + "13", + "8", + "63", + "15", + "3" + ] + } + }, + { + "name": "ProductRelated_Duration", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 7769, + "unique_ratio": 0.787612, + "example_values": [ + "549.2", + "64", + "2435.697531", + "267.7333333", + "57.4" + ] + } + }, + { + "name": "BounceRates", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 1574, + "unique_ratio": 0.15957, + "example_values": [ + "0.019230769", + "0", + "0.00952381", + "0.022857143", + "0.004166667" + ] + } + }, + { + "name": "ExitRates", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 3953, + "unique_ratio": 0.40075, + "example_values": [ + "0.045421245", + "0.05", + "0.017460317", + "0.040606061", + "0.133333333" + ] + } + }, + { + "name": "PageValues", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 2129, + "unique_ratio": 0.215835, + "example_values": [ + "0", + "7.945368291", + "10.37042373", + "18.99269231", + "44.33548922" + ] + } + }, + { + "name": "SpecialDay", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 6, + "unique_ratio": 0.000608, + "example_values": [ + "0", + "0.4", + "0.2", + "0.8", + "1" + ] + } + }, + { + "name": "Month", + "role": "feature", + "semantic_type": "categorical", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 10, + "unique_ratio": 0.001014, + "example_values": [ + "Nov", + "Dec", + "Jul", + "Aug", + "Mar" + ] + } + }, + { + "name": "OperatingSystems", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 8, + "unique_ratio": 0.000811, + "example_values": [ + "3", + "2", + "6", + "4", + "1" + ] + } + }, + { + "name": "Browser", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 13, + "unique_ratio": 0.001318, + "example_values": [ + "2", + "1", + "5", + "4", + "3" + ] + } + }, + { + "name": "Region", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 9, + "unique_ratio": 0.000912, + "example_values": [ + "6", + "3", + "4", + "1", + "9" + ] + } + }, + { + "name": "TrafficType", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 20, + "unique_ratio": 0.002028, + "example_values": [ + "2", + "8", + "3", + "11", + "1" + ] + } + }, + { + "name": "VisitorType", + "role": "target", + "semantic_type": "categorical", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 3, + "unique_ratio": 0.000304, + "example_values": [ + "Returning_Visitor", + "New_Visitor", + "Other" + ] + } + }, + { + "name": "Weekend", + "role": "feature", + "semantic_type": "boolean", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 2, + "unique_ratio": 0.000203, + "example_values": [ + "FALSE", + "TRUE" + ] + } + }, + { + "name": "Revenue", + "role": "feature", + "semantic_type": "boolean", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 2, + "unique_ratio": 0.000203, + "example_values": [ + "FALSE", + "TRUE" + ] + } + } + ], + "public_manifest": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/m6/tabsyn/tabsyn-m6-20260429_052236/public_gate/staged_input_manifest.json", + "train_csv": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/m6/tabsyn/tabsyn-m6-20260429_052236/staged/public/train.csv", + "val_csv": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/m6/tabsyn/tabsyn-m6-20260429_052236/staged/public/val.csv", + "test_csv": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/m6/tabsyn/tabsyn-m6-20260429_052236/staged/public/test.csv", + "features_json": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/m6/tabsyn/tabsyn-m6-20260429_052236/staged/public/staged_features.json", + "public_gate_report": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/m6/tabsyn/tabsyn-m6-20260429_052236/public_gate/public_gate_report.json" +} \ No newline at end of file diff --git a/timecost/m6/tabsyn/tabsyn-m6-20260429_052236/synthetic/tabsyn_m6/real.csv b/timecost/m6/tabsyn/tabsyn-m6-20260429_052236/synthetic/tabsyn_m6/real.csv new file mode 100644 index 0000000000000000000000000000000000000000..226e311b04feed230ffa47ab4058f94a81db538c --- /dev/null +++ b/timecost/m6/tabsyn/tabsyn-m6-20260429_052236/synthetic/tabsyn_m6/real.csv @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:a9af4fba58b8379aa9b5e7f1c822cd31c8ecaae87e2903e7d1ed61e70e3537a9 +size 681017 diff --git a/timecost/m6/tabsyn/tabsyn-m6-20260429_052236/synthetic/tabsyn_m6/test.csv b/timecost/m6/tabsyn/tabsyn-m6-20260429_052236/synthetic/tabsyn_m6/test.csv new file mode 100644 index 0000000000000000000000000000000000000000..226e311b04feed230ffa47ab4058f94a81db538c --- /dev/null +++ b/timecost/m6/tabsyn/tabsyn-m6-20260429_052236/synthetic/tabsyn_m6/test.csv @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:a9af4fba58b8379aa9b5e7f1c822cd31c8ecaae87e2903e7d1ed61e70e3537a9 +size 681017 diff --git a/timecost/m6/tabsyn/tabsyn-m6-20260429_052236/tabsyn-m6-9864-20260429_061024.csv b/timecost/m6/tabsyn/tabsyn-m6-20260429_052236/tabsyn-m6-9864-20260429_061024.csv new file mode 100644 index 0000000000000000000000000000000000000000..a9f578deaf61e28fdd0969db5b1d5216195bdb71 --- /dev/null +++ b/timecost/m6/tabsyn/tabsyn-m6-20260429_052236/tabsyn-m6-9864-20260429_061024.csv @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:e5f99d4efa88d96ad863394ad3c0e5a6dcdf8ca9c70764313637c163d5693a4e +size 867308 diff --git a/timecost/m6/tabsyn/tabsyn-m6-20260429_052236/train_20260429_052236.log b/timecost/m6/tabsyn/tabsyn-m6-20260429_052236/train_20260429_052236.log new file mode 100644 index 0000000000000000000000000000000000000000..1661c0b8e9e39252475b2790a3cb4d2000df2c0f --- /dev/null +++ b/timecost/m6/tabsyn/tabsyn-m6-20260429_052236/train_20260429_052236.log @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:3f70864510a8ef8d700522aafa4562dd525139e29bc76893fe6bafd64fc1a85b +size 2842852 diff --git a/timecost/m6/tvae/tvae-m6-20260429_031938/_tvae_generate.py b/timecost/m6/tvae/tvae-m6-20260429_031938/_tvae_generate.py new file mode 100644 index 0000000000000000000000000000000000000000..37b58cd796975596ffd7f432f841924d50d476a2 --- /dev/null +++ b/timecost/m6/tvae/tvae-m6-20260429_031938/_tvae_generate.py @@ -0,0 +1,23 @@ +import os, sys +sys.path.insert(0, "/work") +from src.SpecificModels.ctgan_joblib_parallel_cap import apply_parallel_cap_from_env +apply_parallel_cap_from_env() +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 +os.environ.setdefault("LOKY_MAX_CPU_COUNT", "8") +os.environ.setdefault("OPENBLAS_NUM_THREADS", "8") +os.environ.setdefault("MKL_NUM_THREADS", "8") +model = TVAE.load("/work/output-Benchmark-trainonly-v1/m6/tvae/tvae-m6-20260429_031938/models_300epochs/tvae_300epochs.pt") +total = 9864 +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-Benchmark-trainonly-v1/m6/tvae/tvae-m6-20260429_031938/tvae-m6-9864-20260429_032133.csv", index=False) +print(f"[TVAE] Generated {total} rows (chunks={len(parts)}) -> /work/output-Benchmark-trainonly-v1/m6/tvae/tvae-m6-20260429_031938/tvae-m6-9864-20260429_032133.csv") diff --git a/timecost/m6/tvae/tvae-m6-20260429_031938/_tvae_train.py b/timecost/m6/tvae/tvae-m6-20260429_031938/_tvae_train.py new file mode 100644 index 0000000000000000000000000000000000000000..0c65c809cb6f1c9b97162d55cf1324379aff4516 --- /dev/null +++ b/timecost/m6/tvae/tvae-m6-20260429_031938/_tvae_train.py @@ -0,0 +1,30 @@ +import json, os, sys +sys.path.insert(0, "/work") +from src.SpecificModels.ctgan_joblib_parallel_cap import apply_parallel_cap_from_env +apply_parallel_cap_from_env() +import pandas as pd +from ctgan.data import read_csv +from ctgan.synthesizers.tvae import TVAE + +# Keep transform stage parallelism bounded for stability on shared host. +os.environ.setdefault("LOKY_MAX_CPU_COUNT", "8") +os.environ.setdefault("OPENBLAS_NUM_THREADS", "8") +os.environ.setdefault("MKL_NUM_THREADS", "8") +_nj = (os.environ.get("TVAE_CTGAN_JOBTRANS_N_JOBS") or "").strip() +if _nj: + print("[TVAE] joblib Parallel cap ON, TVAE_CTGAN_JOBTRANS_N_JOBS=" + _nj) +else: + print("[TVAE] joblib Parallel cap OFF (unset TVAE_CTGAN_JOBTRANS_N_JOBS)") +print("[TVAE] LOKY_MAX_CPU_COUNT=" + str(os.environ.get("LOKY_MAX_CPU_COUNT", ""))) + +csv_path = "/work/output-Benchmark-trainonly-v1/m6/tvae/tvae-m6-20260429_031938/staged/public/train.csv" +meta_path = "/work/output-Benchmark-trainonly-v1/m6/tvae/tvae-m6-20260429_031938/tvae_metadata.json" +save_path = "/work/output-Benchmark-trainonly-v1/m6/tvae/tvae-m6-20260429_031938/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/timecost/m6/tvae/tvae-m6-20260429_031938/gen_20260429_032133.log b/timecost/m6/tvae/tvae-m6-20260429_031938/gen_20260429_032133.log new file mode 100644 index 0000000000000000000000000000000000000000..1786b469ae95cf0b3571826ec266454743ba4f48 --- /dev/null +++ b/timecost/m6/tvae/tvae-m6-20260429_031938/gen_20260429_032133.log @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:d80e04f06bf6bdcbec201e9b4b89c27e26de949b4882aff0b9b4113300fab1f6 +size 404 diff --git a/timecost/m6/tvae/tvae-m6-20260429_031938/input_snapshot.json b/timecost/m6/tvae/tvae-m6-20260429_031938/input_snapshot.json new file mode 100644 index 0000000000000000000000000000000000000000..9c9d287628147605b63b7b41f25188b9a5501d2a --- /dev/null +++ b/timecost/m6/tvae/tvae-m6-20260429_031938/input_snapshot.json @@ -0,0 +1,36 @@ +{ + "dataset_id": "m6", + "model": "tvae", + "inputs": { + "train_csv": { + "path": "/data/jialinzhang/SynthesizePipeline-server/DatasetNew/m6/m6-train.csv", + "exists": true, + "size": 856785, + "sha256": "a5d1c487a8f2611385915fcc5a52bad546680ddbc8d23fc695f442cdd6dafa0c" + }, + "val_csv": { + "path": "/data/jialinzhang/SynthesizePipeline-server/DatasetNew/m6/m6-val.csv", + "exists": true, + "size": 107758, + "sha256": "598196cecc227cfba95c9796b80bc1baf684a0117e6673b8662b89482cdcb78f" + }, + "test_csv": { + "path": "/data/jialinzhang/SynthesizePipeline-server/DatasetNew/m6/m6-test.csv", + "exists": true, + "size": 107996, + "sha256": "ec939ad96a3b14dd960886359fb6c5d45591adc8a734661ade3dee1417a015de" + }, + "profile_json": { + "path": "/data/jialinzhang/SynthesizePipeline-server/DatasetNew/artifacts/data_core/tabular/m6/m6-dataset_profile.json", + "exists": true, + "size": 7622, + "sha256": "859f1fe93806c8ecdea9c9db9db34fb6cf94bc112b5c0a66b2436e8ef71c2e98" + }, + "contract_json": { + "path": "/data/jialinzhang/SynthesizePipeline-server/DatasetNew/artifacts/data_core/tabular/m6/m6-dataset_contract_v1.json", + "exists": true, + "size": 8990, + "sha256": "01142eeb121af615a644c3e312f5f3e79d805396339f40d5a300ba3560cf8e90" + } + } +} \ No newline at end of file diff --git a/timecost/m6/tvae/tvae-m6-20260429_031938/models_300epochs/train_20260429_031938.log b/timecost/m6/tvae/tvae-m6-20260429_031938/models_300epochs/train_20260429_031938.log new file mode 100644 index 0000000000000000000000000000000000000000..7166f142765e24631ef4b6021957a676efb5b04e --- /dev/null +++ b/timecost/m6/tvae/tvae-m6-20260429_031938/models_300epochs/train_20260429_031938.log @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:39b224b2563292b02cc5b0938648776beaa3d9f12ce923c2c55d7880dba8e6b6 +size 533 diff --git a/timecost/m6/tvae/tvae-m6-20260429_031938/models_300epochs/tvae_300epochs.pt b/timecost/m6/tvae/tvae-m6-20260429_031938/models_300epochs/tvae_300epochs.pt new file mode 100644 index 0000000000000000000000000000000000000000..b0009fa7690ff08681bbc4ee985630fed5f82eb8 --- /dev/null +++ b/timecost/m6/tvae/tvae-m6-20260429_031938/models_300epochs/tvae_300epochs.pt @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:513c0d58dd895bb50d66d8b3ecfb92325db9494b3808cb8fcd64912f57151ab3 +size 900332 diff --git a/timecost/m6/tvae/tvae-m6-20260429_031938/public_gate/normalized_schema_snapshot.json b/timecost/m6/tvae/tvae-m6-20260429_031938/public_gate/normalized_schema_snapshot.json new file mode 100644 index 0000000000000000000000000000000000000000..0d48abfe61f58323fd4a425d175b354d51045ae1 --- /dev/null +++ b/timecost/m6/tvae/tvae-m6-20260429_031938/public_gate/normalized_schema_snapshot.json @@ -0,0 +1,377 @@ +{ + "dataset_id": "m6", + "target_column": "VisitorType", + "task_type": "classification", + "columns": [ + { + "name": "Administrative", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 26, + "unique_ratio": 0.002636, + "example_values": [ + "0", + "3", + "2", + "6", + "1" + ] + } + }, + { + "name": "Administrative_Duration", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 2789, + "unique_ratio": 0.282745, + "example_values": [ + "0", + "45.8", + "77.7", + "52", + "46.33333333" + ] + } + }, + { + "name": "Informational", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 17, + "unique_ratio": 0.001723, + "example_values": [ + "0", + "1", + "3", + "5", + "4" + ] + } + }, + { + "name": "Informational_Duration", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 1074, + "unique_ratio": 0.108881, + "example_values": [ + "0", + "2", + "24", + "86.75", + "62.5" + ] + } + }, + { + "name": "ProductRelated", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 286, + "unique_ratio": 0.028994, + "example_values": [ + "13", + "8", + "63", + "15", + "3" + ] + } + }, + { + "name": "ProductRelated_Duration", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 7769, + "unique_ratio": 0.787612, + "example_values": [ + "549.2", + "64", + "2435.697531", + "267.7333333", + "57.4" + ] + } + }, + { + "name": "BounceRates", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 1574, + "unique_ratio": 0.15957, + "example_values": [ + "0.019230769", + "0", + "0.00952381", + "0.022857143", + "0.004166667" + ] + } + }, + { + "name": "ExitRates", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 3953, + "unique_ratio": 0.40075, + "example_values": [ + "0.045421245", + "0.05", + "0.017460317", + "0.040606061", + "0.133333333" + ] + } + }, + { + "name": "PageValues", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 2129, + "unique_ratio": 0.215835, + "example_values": [ + "0", + "7.945368291", + "10.37042373", + "18.99269231", + "44.33548922" + ] + } + }, + { + "name": "SpecialDay", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 6, + "unique_ratio": 0.000608, + "example_values": [ + "0", + "0.4", + "0.2", + "0.8", + "1" + ] + } + }, + { + "name": "Month", + "role": "feature", + "semantic_type": "categorical", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 10, + "unique_ratio": 0.001014, + "example_values": [ + "Nov", + "Dec", + "Jul", + "Aug", + "Mar" + ] + } + }, + { + "name": "OperatingSystems", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 8, + "unique_ratio": 0.000811, + "example_values": [ + "3", + "2", + "6", + "4", + "1" + ] + } + }, + { + "name": "Browser", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 13, + "unique_ratio": 0.001318, + "example_values": [ + "2", + "1", + "5", + "4", + "3" + ] + } + }, + { + "name": "Region", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 9, + "unique_ratio": 0.000912, + "example_values": [ + "6", + "3", + "4", + "1", + "9" + ] + } + }, + { + "name": "TrafficType", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 20, + "unique_ratio": 0.002028, + "example_values": [ + "2", + "8", + "3", + "11", + "1" + ] + } + }, + { + "name": "VisitorType", + "role": "target", + "semantic_type": "categorical", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 3, + "unique_ratio": 0.000304, + "example_values": [ + "Returning_Visitor", + "New_Visitor", + "Other" + ] + } + }, + { + "name": "Weekend", + "role": "feature", + "semantic_type": "boolean", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 2, + "unique_ratio": 0.000203, + "example_values": [ + "FALSE", + "TRUE" + ] + } + }, + { + "name": "Revenue", + "role": "feature", + "semantic_type": "boolean", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 2, + "unique_ratio": 0.000203, + "example_values": [ + "FALSE", + "TRUE" + ] + } + } + ] +} \ No newline at end of file diff --git a/timecost/m6/tvae/tvae-m6-20260429_031938/public_gate/public_gate_report.json b/timecost/m6/tvae/tvae-m6-20260429_031938/public_gate/public_gate_report.json new file mode 100644 index 0000000000000000000000000000000000000000..99a260799c8356f445bdc0b33ccce8b459ba1938 --- /dev/null +++ b/timecost/m6/tvae/tvae-m6-20260429_031938/public_gate/public_gate_report.json @@ -0,0 +1,37 @@ +{ + "dataset_id": "m6", + "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": "VisitorType", + "task_type": "classification", + "input_splits": { + "train": "/data/jialinzhang/SynthesizePipeline-server/DatasetNew/m6/m6-train.csv", + "val": "/data/jialinzhang/SynthesizePipeline-server/DatasetNew/m6/m6-val.csv", + "test": "/data/jialinzhang/SynthesizePipeline-server/DatasetNew/m6/m6-test.csv" + } +} \ No newline at end of file diff --git a/timecost/m6/tvae/tvae-m6-20260429_031938/public_gate/staged_input_manifest.json b/timecost/m6/tvae/tvae-m6-20260429_031938/public_gate/staged_input_manifest.json new file mode 100644 index 0000000000000000000000000000000000000000..f975f96fb4d0f70323ee36b371cbaa8a6de73f78 --- /dev/null +++ b/timecost/m6/tvae/tvae-m6-20260429_031938/public_gate/staged_input_manifest.json @@ -0,0 +1,382 @@ +{ + "dataset_id": "m6", + "target_column": "VisitorType", + "task_type": "classification", + "train_csv": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/m6/tvae/tvae-m6-20260429_031938/staged/public/train.csv", + "val_csv": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/m6/tvae/tvae-m6-20260429_031938/staged/public/val.csv", + "test_csv": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/m6/tvae/tvae-m6-20260429_031938/staged/public/test.csv", + "features_json": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/m6/tvae/tvae-m6-20260429_031938/staged/public/staged_features.json", + "public_gate_report": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/m6/tvae/tvae-m6-20260429_031938/public_gate/public_gate_report.json", + "column_schema": [ + { + "name": "Administrative", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 26, + "unique_ratio": 0.002636, + "example_values": [ + "0", + "3", + "2", + "6", + "1" + ] + } + }, + { + "name": "Administrative_Duration", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 2789, + "unique_ratio": 0.282745, + "example_values": [ + "0", + "45.8", + "77.7", + "52", + "46.33333333" + ] + } + }, + { + "name": "Informational", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 17, + "unique_ratio": 0.001723, + "example_values": [ + "0", + "1", + "3", + "5", + "4" + ] + } + }, + { + "name": "Informational_Duration", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 1074, + "unique_ratio": 0.108881, + "example_values": [ + "0", + "2", + "24", + "86.75", + "62.5" + ] + } + }, + { + "name": "ProductRelated", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 286, + "unique_ratio": 0.028994, + "example_values": [ + "13", + "8", + "63", + "15", + "3" + ] + } + }, + { + "name": "ProductRelated_Duration", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 7769, + "unique_ratio": 0.787612, + "example_values": [ + "549.2", + "64", + "2435.697531", + "267.7333333", + "57.4" + ] + } + }, + { + "name": "BounceRates", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 1574, + "unique_ratio": 0.15957, + "example_values": [ + "0.019230769", + "0", + "0.00952381", + "0.022857143", + "0.004166667" + ] + } + }, + { + "name": "ExitRates", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 3953, + "unique_ratio": 0.40075, + "example_values": [ + "0.045421245", + "0.05", + "0.017460317", + "0.040606061", + "0.133333333" + ] + } + }, + { + "name": "PageValues", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 2129, + "unique_ratio": 0.215835, + "example_values": [ + "0", + "7.945368291", + "10.37042373", + "18.99269231", + "44.33548922" + ] + } + }, + { + "name": "SpecialDay", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 6, + "unique_ratio": 0.000608, + "example_values": [ + "0", + "0.4", + "0.2", + "0.8", + "1" + ] + } + }, + { + "name": "Month", + "role": "feature", + "semantic_type": "categorical", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 10, + "unique_ratio": 0.001014, + "example_values": [ + "Nov", + "Dec", + "Jul", + "Aug", + "Mar" + ] + } + }, + { + "name": "OperatingSystems", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 8, + "unique_ratio": 0.000811, + "example_values": [ + "3", + "2", + "6", + "4", + "1" + ] + } + }, + { + "name": "Browser", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 13, + "unique_ratio": 0.001318, + "example_values": [ + "2", + "1", + "5", + "4", + "3" + ] + } + }, + { + "name": "Region", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 9, + "unique_ratio": 0.000912, + "example_values": [ + "6", + "3", + "4", + "1", + "9" + ] + } + }, + { + "name": "TrafficType", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 20, + "unique_ratio": 0.002028, + "example_values": [ + "2", + "8", + "3", + "11", + "1" + ] + } + }, + { + "name": "VisitorType", + "role": "target", + "semantic_type": "categorical", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 3, + "unique_ratio": 0.000304, + "example_values": [ + "Returning_Visitor", + "New_Visitor", + "Other" + ] + } + }, + { + "name": "Weekend", + "role": "feature", + "semantic_type": "boolean", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 2, + "unique_ratio": 0.000203, + "example_values": [ + "FALSE", + "TRUE" + ] + } + }, + { + "name": "Revenue", + "role": "feature", + "semantic_type": "boolean", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 2, + "unique_ratio": 0.000203, + "example_values": [ + "FALSE", + "TRUE" + ] + } + } + ] +} \ No newline at end of file diff --git a/timecost/m6/tvae/tvae-m6-20260429_031938/runtime_result.json b/timecost/m6/tvae/tvae-m6-20260429_031938/runtime_result.json new file mode 100644 index 0000000000000000000000000000000000000000..4ad44caee724d1e6c8f314cc6f50a7e7fd8a8ad2 --- /dev/null +++ b/timecost/m6/tvae/tvae-m6-20260429_031938/runtime_result.json @@ -0,0 +1,15 @@ +{ + "dataset_id": "m6", + "model": "tvae", + "run_id": "tvae-m6-20260429_031938", + "public_gate_status": "pass", + "adapter_ready_status": "pass", + "train_status": "success", + "generate_status": "success", + "reason_code": null, + "reason_detail": null, + "artifacts": { + "synthetic_csv": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/m6/tvae/tvae-m6-20260429_031938/tvae-m6-9864-20260429_032133.csv", + "model_path": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/m6/tvae/tvae-m6-20260429_031938/models_300epochs/tvae_300epochs.pt" + } +} \ No newline at end of file diff --git a/timecost/m6/tvae/tvae-m6-20260429_031938/staged/public/staged_features.json b/timecost/m6/tvae/tvae-m6-20260429_031938/staged/public/staged_features.json new file mode 100644 index 0000000000000000000000000000000000000000..49b25bd1347f910a2b95ef0c137d1a64bf69e0cb --- /dev/null +++ b/timecost/m6/tvae/tvae-m6-20260429_031938/staged/public/staged_features.json @@ -0,0 +1,92 @@ +[ + { + "feature_name": "Administrative", + "data_type": "continuous", + "is_target": false + }, + { + "feature_name": "Administrative_Duration", + "data_type": "continuous", + "is_target": false + }, + { + "feature_name": "Informational", + "data_type": "continuous", + "is_target": false + }, + { + "feature_name": "Informational_Duration", + "data_type": "continuous", + "is_target": false + }, + { + "feature_name": "ProductRelated", + "data_type": "continuous", + "is_target": false + }, + { + "feature_name": "ProductRelated_Duration", + "data_type": "continuous", + "is_target": false + }, + { + "feature_name": "BounceRates", + "data_type": "continuous", + "is_target": false + }, + { + "feature_name": "ExitRates", + "data_type": "continuous", + "is_target": false + }, + { + "feature_name": "PageValues", + "data_type": "continuous", + "is_target": false + }, + { + "feature_name": "SpecialDay", + "data_type": "continuous", + "is_target": false + }, + { + "feature_name": "Month", + "data_type": "categorical", + "is_target": false + }, + { + "feature_name": "OperatingSystems", + "data_type": "continuous", + "is_target": false + }, + { + "feature_name": "Browser", + "data_type": "continuous", + "is_target": false + }, + { + "feature_name": "Region", + "data_type": "continuous", + "is_target": false + }, + { + "feature_name": "TrafficType", + "data_type": "continuous", + "is_target": false + }, + { + "feature_name": "VisitorType", + "data_type": "categorical", + "is_target": true + }, + { + "feature_name": "Weekend", + "data_type": "binary", + "is_target": false + }, + { + "feature_name": "Revenue", + "data_type": "binary", + "is_target": false + } +] \ No newline at end of file diff --git a/timecost/m6/tvae/tvae-m6-20260429_031938/staged/public/test.csv b/timecost/m6/tvae/tvae-m6-20260429_031938/staged/public/test.csv new file mode 100644 index 0000000000000000000000000000000000000000..3944bd554327e948b8bda8c383bd581f3fc26ec6 --- /dev/null +++ b/timecost/m6/tvae/tvae-m6-20260429_031938/staged/public/test.csv @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:d16d0389cb0fe4b23bab344dc10070de6678357a9452f9f620d0eeba66a6b12d +size 116376 diff --git a/timecost/m6/tvae/tvae-m6-20260429_031938/staged/public/train.csv b/timecost/m6/tvae/tvae-m6-20260429_031938/staged/public/train.csv new file mode 100644 index 0000000000000000000000000000000000000000..ae3a266ed7bebf02bc27c50b9dea6e8c5fe71c10 --- /dev/null +++ b/timecost/m6/tvae/tvae-m6-20260429_031938/staged/public/train.csv @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:e1f0338c367408dc21d5a4ec9cdc5d3fe8188916db6085f3fd326304a55551e1 +size 924849 diff --git a/timecost/m6/tvae/tvae-m6-20260429_031938/staged/public/val.csv b/timecost/m6/tvae/tvae-m6-20260429_031938/staged/public/val.csv new file mode 100644 index 0000000000000000000000000000000000000000..60be57a3609a30d56d27e37e49a3aedfa6294db5 --- /dev/null +++ b/timecost/m6/tvae/tvae-m6-20260429_031938/staged/public/val.csv @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:cb9169f3c7213420491d9b709ee1cc650aeaed732fa77dcbd6ffe3583366b2d4 +size 116198 diff --git a/timecost/m6/tvae/tvae-m6-20260429_031938/staged/tvae/adapter_report.json b/timecost/m6/tvae/tvae-m6-20260429_031938/staged/tvae/adapter_report.json new file mode 100644 index 0000000000000000000000000000000000000000..d7ad685c2ff0a8c1d2bf458c49e325c361b8f299 --- /dev/null +++ b/timecost/m6/tvae/tvae-m6-20260429_031938/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-Benchmark-trainonly-v1/m6/tvae/tvae-m6-20260429_031938/staged/tvae/model_input_manifest.json" +} \ No newline at end of file diff --git a/timecost/m6/tvae/tvae-m6-20260429_031938/staged/tvae/adapter_transforms_applied.json b/timecost/m6/tvae/tvae-m6-20260429_031938/staged/tvae/adapter_transforms_applied.json new file mode 100644 index 0000000000000000000000000000000000000000..0637a088a01e8ddab3bf3fa98dbe804cbde1a0dc --- /dev/null +++ b/timecost/m6/tvae/tvae-m6-20260429_031938/staged/tvae/adapter_transforms_applied.json @@ -0,0 +1 @@ +[] \ No newline at end of file diff --git a/timecost/m6/tvae/tvae-m6-20260429_031938/staged/tvae/model_input_manifest.json b/timecost/m6/tvae/tvae-m6-20260429_031938/staged/tvae/model_input_manifest.json new file mode 100644 index 0000000000000000000000000000000000000000..d347b4eaceb2cf7b05133369335df8ebed9e2b37 --- /dev/null +++ b/timecost/m6/tvae/tvae-m6-20260429_031938/staged/tvae/model_input_manifest.json @@ -0,0 +1,384 @@ +{ + "dataset_id": "m6", + "model": "tvae", + "target_column": "VisitorType", + "task_type": "classification", + "column_schema": [ + { + "name": "Administrative", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 26, + "unique_ratio": 0.002636, + "example_values": [ + "0", + "3", + "2", + "6", + "1" + ] + } + }, + { + "name": "Administrative_Duration", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 2789, + "unique_ratio": 0.282745, + "example_values": [ + "0", + "45.8", + "77.7", + "52", + "46.33333333" + ] + } + }, + { + "name": "Informational", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 17, + "unique_ratio": 0.001723, + "example_values": [ + "0", + "1", + "3", + "5", + "4" + ] + } + }, + { + "name": "Informational_Duration", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 1074, + "unique_ratio": 0.108881, + "example_values": [ + "0", + "2", + "24", + "86.75", + "62.5" + ] + } + }, + { + "name": "ProductRelated", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 286, + "unique_ratio": 0.028994, + "example_values": [ + "13", + "8", + "63", + "15", + "3" + ] + } + }, + { + "name": "ProductRelated_Duration", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 7769, + "unique_ratio": 0.787612, + "example_values": [ + "549.2", + "64", + "2435.697531", + "267.7333333", + "57.4" + ] + } + }, + { + "name": "BounceRates", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 1574, + "unique_ratio": 0.15957, + "example_values": [ + "0.019230769", + "0", + "0.00952381", + "0.022857143", + "0.004166667" + ] + } + }, + { + "name": "ExitRates", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 3953, + "unique_ratio": 0.40075, + "example_values": [ + "0.045421245", + "0.05", + "0.017460317", + "0.040606061", + "0.133333333" + ] + } + }, + { + "name": "PageValues", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 2129, + "unique_ratio": 0.215835, + "example_values": [ + "0", + "7.945368291", + "10.37042373", + "18.99269231", + "44.33548922" + ] + } + }, + { + "name": "SpecialDay", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 6, + "unique_ratio": 0.000608, + "example_values": [ + "0", + "0.4", + "0.2", + "0.8", + "1" + ] + } + }, + { + "name": "Month", + "role": "feature", + "semantic_type": "categorical", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 10, + "unique_ratio": 0.001014, + "example_values": [ + "Nov", + "Dec", + "Jul", + "Aug", + "Mar" + ] + } + }, + { + "name": "OperatingSystems", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 8, + "unique_ratio": 0.000811, + "example_values": [ + "3", + "2", + "6", + "4", + "1" + ] + } + }, + { + "name": "Browser", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 13, + "unique_ratio": 0.001318, + "example_values": [ + "2", + "1", + "5", + "4", + "3" + ] + } + }, + { + "name": "Region", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 9, + "unique_ratio": 0.000912, + "example_values": [ + "6", + "3", + "4", + "1", + "9" + ] + } + }, + { + "name": "TrafficType", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 20, + "unique_ratio": 0.002028, + "example_values": [ + "2", + "8", + "3", + "11", + "1" + ] + } + }, + { + "name": "VisitorType", + "role": "target", + "semantic_type": "categorical", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 3, + "unique_ratio": 0.000304, + "example_values": [ + "Returning_Visitor", + "New_Visitor", + "Other" + ] + } + }, + { + "name": "Weekend", + "role": "feature", + "semantic_type": "boolean", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 2, + "unique_ratio": 0.000203, + "example_values": [ + "FALSE", + "TRUE" + ] + } + }, + { + "name": "Revenue", + "role": "feature", + "semantic_type": "boolean", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 2, + "unique_ratio": 0.000203, + "example_values": [ + "FALSE", + "TRUE" + ] + } + } + ], + "public_manifest": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/m6/tvae/tvae-m6-20260429_031938/public_gate/staged_input_manifest.json", + "train_csv": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/m6/tvae/tvae-m6-20260429_031938/staged/public/train.csv", + "val_csv": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/m6/tvae/tvae-m6-20260429_031938/staged/public/val.csv", + "test_csv": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/m6/tvae/tvae-m6-20260429_031938/staged/public/test.csv", + "features_json": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/m6/tvae/tvae-m6-20260429_031938/staged/public/staged_features.json", + "public_gate_report": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/m6/tvae/tvae-m6-20260429_031938/public_gate/public_gate_report.json" +} \ No newline at end of file diff --git a/timecost/m6/tvae/tvae-m6-20260429_031938/tvae-m6-9864-20260429_032133.csv b/timecost/m6/tvae/tvae-m6-20260429_031938/tvae-m6-9864-20260429_032133.csv new file mode 100644 index 0000000000000000000000000000000000000000..286865aca5dd43f1bae88892d6eb3a35174d6b70 --- /dev/null +++ b/timecost/m6/tvae/tvae-m6-20260429_031938/tvae-m6-9864-20260429_032133.csv @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:42f4087e20eadff632116bbb1279355449c382151938523899c903ef3655cac6 +size 1849329 diff --git a/timecost/m6/tvae/tvae-m6-20260429_031938/tvae_metadata.json b/timecost/m6/tvae/tvae-m6-20260429_031938/tvae_metadata.json new file mode 100644 index 0000000000000000000000000000000000000000..bd02cd3078ddd1c4e6c63a87889218d62f25b7c8 --- /dev/null +++ b/timecost/m6/tvae/tvae-m6-20260429_031938/tvae_metadata.json @@ -0,0 +1,76 @@ +{ + "columns": [ + { + "name": "Administrative", + "type": "continuous" + }, + { + "name": "Administrative_Duration", + "type": "continuous" + }, + { + "name": "Informational", + "type": "continuous" + }, + { + "name": "Informational_Duration", + "type": "continuous" + }, + { + "name": "ProductRelated", + "type": "continuous" + }, + { + "name": "ProductRelated_Duration", + "type": "continuous" + }, + { + "name": "BounceRates", + "type": "continuous" + }, + { + "name": "ExitRates", + "type": "continuous" + }, + { + "name": "PageValues", + "type": "continuous" + }, + { + "name": "SpecialDay", + "type": "continuous" + }, + { + "name": "Month", + "type": "categorical" + }, + { + "name": "OperatingSystems", + "type": "continuous" + }, + { + "name": "Browser", + "type": "continuous" + }, + { + "name": "Region", + "type": "continuous" + }, + { + "name": "TrafficType", + "type": "continuous" + }, + { + "name": "VisitorType", + "type": "categorical" + }, + { + "name": "Weekend", + "type": "categorical" + }, + { + "name": "Revenue", + "type": "categorical" + } + ] +} \ No newline at end of file diff --git a/timecost/m8/arf/arf-m8-20260502_160718/_arf_generate.py b/timecost/m8/arf/arf-m8-20260502_160718/_arf_generate.py new file mode 100644 index 0000000000000000000000000000000000000000..5d2585456a1fd57d88b1203dd7edd152f65a6ee9 --- /dev/null +++ b/timecost/m8/arf/arf-m8-20260502_160718/_arf_generate.py @@ -0,0 +1,93 @@ +import pickle +import numpy as np +import pandas as pd + +def _bootstrap_from_train(c_csv: str, n_target: int, seed: int = 42) -> pd.DataFrame: + """当 arfpy.forge 完全不可用时,从训练 CSV 有放回抽样,保证行数与列对齐。""" + src = pd.read_csv(c_csv, encoding="utf-8-sig", low_memory=False) + src = src.replace([np.inf, -np.inf], np.nan).dropna(axis=1, how="all") + src = src.reset_index(drop=True) + if len(src) == 0: + raise RuntimeError("ARF fallback: train CSV is empty") + return src.sample(n=n_target, replace=True, random_state=seed).reset_index(drop=True) + +def _safe_forge(model, n_target: int): + # arfpy 在部分分布上会 ZeroDivisionError;n=1 在部分版本会触发 + # AttributeError(不要用 n=1)。失败返回 None,由外层走 bootstrap。 + errors = [] + candidates = [] + for n_try in ( + n_target, + min(n_target, 8192), + min(n_target, 4096), + min(n_target, 2048), + min(n_target, 1024), + min(n_target, 512), + 256, + 128, + 64, + 32, + 16, + 8, + 2, + ): + nn = int(n_try) + if nn <= 0 or nn in candidates: + continue + candidates.append(nn) + for n_try in candidates: + try: + out = model.forge(n=n_try).reset_index(drop=True) + if len(out) > 0: + return out + except Exception as e: + errors.append(f"n={n_try}: {type(e).__name__}: {e}") + print("[ARF] forge failed after retries; last errors:", " | ".join(errors[-4:])) + return None + +n_target = int(36168) +c_csv = "/work/output-Benchmark-trainonly-v1/m8/arf/arf-m8-20260502_160718/staged/public/train.csv" +with open("/work/output-Benchmark-trainonly-v1/m8/arf/arf-m8-20260502_160718/arf_model.pkl", "rb") as f: + model = pickle.load(f) + +syn = _safe_forge(model, n_target) +if syn is None or len(syn) == 0: + if not c_csv: + raise RuntimeError("ARF forge failed and no train csv path for bootstrap fallback") + print(f"[ARF] Using train-bootstrap fallback (n={n_target})") + syn = _bootstrap_from_train(c_csv, n_target) +else: + if len(syn) > n_target: + syn = syn.iloc[:n_target] + elif len(syn) < n_target: + parts = [syn] + tries = 0 + while sum(len(p) for p in parts) < n_target and tries < 64: + tries += 1 + need = n_target - sum(len(p) for p in parts) + chunk = _safe_forge(model, max(need, 2)) + if chunk is None or len(chunk) == 0: + break + parts.append(chunk) + syn = pd.concat(parts, ignore_index=True).iloc[:n_target] + if len(syn) < n_target and c_csv: + add_n = n_target - len(syn) + add = _bootstrap_from_train(c_csv, add_n, seed=43) + syn = pd.concat([syn, add], ignore_index=True).iloc[:n_target] + +_ds_id = 'm8' +if _ds_id == "c19": + # 仅 c19:object 列内裸换行会使 pivot 用 csv.reader 统计到的「记录数」大于 DataFrame 行数 → Sw。 + for _col in syn.columns: + if syn[_col].dtype == object: + syn[_col] = ( + syn[_col] + .astype(str) + .str.replace("\r\n", " ", regex=False) + .str.replace("\n", " ", regex=False) + .str.replace("\r", " ", regex=False) + ) + syn = syn.iloc[:n_target].reset_index(drop=True) + +syn.to_csv("/work/output-Benchmark-trainonly-v1/m8/arf/arf-m8-20260502_160718/arf-m8-36168-20260502_160912.csv", index=False) +print(f"[ARF] Generated {len(syn)} rows (requested {n_target}) -> /work/output-Benchmark-trainonly-v1/m8/arf/arf-m8-20260502_160718/arf-m8-36168-20260502_160912.csv") diff --git a/timecost/m8/arf/arf-m8-20260502_160718/_arf_train.py b/timecost/m8/arf/arf-m8-20260502_160718/_arf_train.py new file mode 100644 index 0000000000000000000000000000000000000000..c37ba4da79f6dbc5a26d82db3c3dd58b6d168dc9 --- /dev/null +++ b/timecost/m8/arf/arf-m8-20260502_160718/_arf_train.py @@ -0,0 +1,37 @@ +import pickle +import numpy as np +import pandas as pd +from arfpy import arf + +def _sanitize_for_arf(df: pd.DataFrame) -> pd.DataFrame: + """缓解 forge 阶段 scipy.stats.truncnorm / 除零:处理 inf、NaN 与极端尾部。""" + df = df.replace([np.inf, -np.inf], np.nan) + df = df.dropna(axis=1, how="all") + for col in df.select_dtypes(include=[np.number]).columns: + med = df[col].median() + if pd.isna(med): + med = 0.0 + df[col] = df[col].fillna(med) + nu = int(df[col].nunique(dropna=True)) + if nu <= 1: + continue + lo, hi = df[col].quantile(0.001), df[col].quantile(0.999) + if pd.notna(lo) and pd.notna(hi) and lo < hi: + df[col] = df[col].clip(lo, hi) + return df + +df = pd.read_csv("/work/output-Benchmark-trainonly-v1/m8/arf/arf-m8-20260502_160718/staged/public/train.csv") +df = _sanitize_for_arf(df) +print(f"[ARF] Training on {len(df)} rows, {len(df.columns)} cols") + +model = arf.arf(x=df) +if hasattr(model, "fit"): + model.fit() +elif hasattr(model, "forde"): + model.forde() +else: + raise RuntimeError("arfpy API: no fit() / forde()") + +with open("/work/output-Benchmark-trainonly-v1/m8/arf/arf-m8-20260502_160718/arf_model.pkl", "wb") as f: + pickle.dump(model, f) +print(f"[ARF] Model saved -> /work/output-Benchmark-trainonly-v1/m8/arf/arf-m8-20260502_160718/arf_model.pkl") diff --git a/timecost/m8/arf/arf-m8-20260502_160718/arf-m8-36168-20260502_160912.csv b/timecost/m8/arf/arf-m8-20260502_160718/arf-m8-36168-20260502_160912.csv new file mode 100644 index 0000000000000000000000000000000000000000..3f8cee5fe8d1730184388d1ef18d4bb144cabf16 --- /dev/null +++ b/timecost/m8/arf/arf-m8-20260502_160718/arf-m8-36168-20260502_160912.csv @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:ba443b107a71b5faa2d7231d61078f719b9b9d1a399531e7f7c648d886139ff1 +size 6040860 diff --git a/timecost/m8/arf/arf-m8-20260502_160718/arf_model.pkl b/timecost/m8/arf/arf-m8-20260502_160718/arf_model.pkl new file mode 100644 index 0000000000000000000000000000000000000000..19b6f0fcca1c8aef257d8c7596c6b0c9bf236081 --- /dev/null +++ b/timecost/m8/arf/arf-m8-20260502_160718/arf_model.pkl @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:8242a5bf5f6e3d6ebaa2cd60d719b19cb7c480da867300fb8a50f13018a0ef7a +size 170779501 diff --git a/timecost/m8/arf/arf-m8-20260502_160718/gen_20260502_160912.log b/timecost/m8/arf/arf-m8-20260502_160718/gen_20260502_160912.log new file mode 100644 index 0000000000000000000000000000000000000000..21ff0cd7b36248b85489bd71a16902ece0695c6f --- /dev/null +++ b/timecost/m8/arf/arf-m8-20260502_160718/gen_20260502_160912.log @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:d09af1cac5fbd3b9e677fa7fd88f0c0da7f9daa4d65001f9d074137d60ccb56e +size 3567 diff --git a/timecost/m8/arf/arf-m8-20260502_160718/input_snapshot.json b/timecost/m8/arf/arf-m8-20260502_160718/input_snapshot.json new file mode 100644 index 0000000000000000000000000000000000000000..473c9be250ecc66c30f72527706a5bbabe67f2d8 --- /dev/null +++ b/timecost/m8/arf/arf-m8-20260502_160718/input_snapshot.json @@ -0,0 +1,36 @@ +{ + "dataset_id": "m8", + "model": "arf", + "inputs": { + "train_csv": { + "path": "/data/jialinzhang/SynthesizePipeline-server/DatasetNew/m8/m8-train.csv", + "exists": true, + "size": 2964802, + "sha256": "f9cbb71aa793de19869a138d41aea5808f772b31082741b185ffb8ca7b821833" + }, + "val_csv": { + "path": "/data/jialinzhang/SynthesizePipeline-server/DatasetNew/m8/m8-val.csv", + "exists": true, + "size": 370535, + "sha256": "5ee8612128aae92155906abc0fdc752ac24fd04d63c78c080c89e3900efe6525" + }, + "test_csv": { + "path": "/data/jialinzhang/SynthesizePipeline-server/DatasetNew/m8/m8-test.csv", + "exists": true, + "size": 370991, + "sha256": "6221943e422e75c8317b79b7ef93e9cd01f61fdd8de6ce42909a8e4610966310" + }, + "profile_json": { + "path": "/data/jialinzhang/SynthesizePipeline-server/DatasetNew/artifacts/data_core/tabular/m8/m8-dataset_profile.json", + "exists": true, + "size": 6553, + "sha256": "44f883858641584035a0a8859cb95dbcd3a023c03cbc76931aadfc4c70ef871f" + }, + "contract_json": { + "path": "/data/jialinzhang/SynthesizePipeline-server/DatasetNew/artifacts/data_core/tabular/m8/m8-dataset_contract_v1.json", + "exists": true, + "size": 8214, + "sha256": "e76df134780ec9b6c6c625a54e5d0c1935e9f4a7d09320ad19279a0492438d92" + } + } +} \ No newline at end of file diff --git a/timecost/m8/arf/arf-m8-20260502_160718/public_gate/normalized_schema_snapshot.json b/timecost/m8/arf/arf-m8-20260502_160718/public_gate/normalized_schema_snapshot.json new file mode 100644 index 0000000000000000000000000000000000000000..5e616edd2b7924c5e07f02ccbbb842529655f52a --- /dev/null +++ b/timecost/m8/arf/arf-m8-20260502_160718/public_gate/normalized_schema_snapshot.json @@ -0,0 +1,346 @@ +{ + "dataset_id": "m8", + "target_column": "y", + "task_type": "classification", + "columns": [ + { + "name": "age", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 76, + "unique_ratio": 0.002101, + "example_values": [ + "40", + "52", + "31", + "51", + "44" + ] + } + }, + { + "name": "job", + "role": "feature", + "semantic_type": "categorical", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 12, + "unique_ratio": 0.000332, + "example_values": [ + "admin.", + "technician", + "entrepreneur", + "blue-collar", + "services" + ] + } + }, + { + "name": "marital", + "role": "feature", + "semantic_type": "categorical", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 3, + "unique_ratio": 8.3e-05, + "example_values": [ + "single", + "married", + "divorced" + ] + } + }, + { + "name": "education", + "role": "feature", + "semantic_type": "categorical", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 4, + "unique_ratio": 0.000111, + "example_values": [ + "secondary", + "tertiary", + "primary", + "unknown" + ] + } + }, + { + "name": "default", + "role": "feature", + "semantic_type": "boolean", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 2, + "unique_ratio": 5.5e-05, + "example_values": [ + "no", + "yes" + ] + } + }, + { + "name": "balance", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 6604, + "unique_ratio": 0.182592, + "example_values": [ + "419", + "31", + "7567", + "315", + "737" + ] + } + }, + { + "name": "housing", + "role": "feature", + "semantic_type": "boolean", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 2, + "unique_ratio": 5.5e-05, + "example_values": [ + "no", + "yes" + ] + } + }, + { + "name": "loan", + "role": "feature", + "semantic_type": "boolean", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 2, + "unique_ratio": 5.5e-05, + "example_values": [ + "yes", + "no" + ] + } + }, + { + "name": "contact", + "role": "feature", + "semantic_type": "categorical", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 3, + "unique_ratio": 8.3e-05, + "example_values": [ + "cellular", + "unknown", + "telephone" + ] + } + }, + { + "name": "day", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 31, + "unique_ratio": 0.000857, + "example_values": [ + "28", + "7", + "11", + "12", + "14" + ] + } + }, + { + "name": "month", + "role": "feature", + "semantic_type": "categorical", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 12, + "unique_ratio": 0.000332, + "example_values": [ + "jul", + "may", + "aug", + "oct", + "feb" + ] + } + }, + { + "name": "duration", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 1507, + "unique_ratio": 0.041667, + "example_values": [ + "100", + "120", + "70", + "291", + "102" + ] + } + }, + { + "name": "campaign", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 47, + "unique_ratio": 0.001299, + "example_values": [ + "16", + "1", + "2", + "5", + "4" + ] + } + }, + { + "name": "pdays", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 524, + "unique_ratio": 0.014488, + "example_values": [ + "-1", + "91", + "365", + "189", + "117" + ] + } + }, + { + "name": "previous", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 38, + "unique_ratio": 0.001051, + "example_values": [ + "0", + "4", + "1", + "2", + "3" + ] + } + }, + { + "name": "poutcome", + "role": "feature", + "semantic_type": "categorical", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 4, + "unique_ratio": 0.000111, + "example_values": [ + "unknown", + "failure", + "other", + "success" + ] + } + }, + { + "name": "y", + "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": 5.5e-05, + "example_values": [ + "no", + "yes" + ] + } + } + ] +} \ No newline at end of file diff --git a/timecost/m8/arf/arf-m8-20260502_160718/public_gate/public_gate_report.json b/timecost/m8/arf/arf-m8-20260502_160718/public_gate/public_gate_report.json new file mode 100644 index 0000000000000000000000000000000000000000..318ead0018618096d718d3ec1140561db7e0a70f --- /dev/null +++ b/timecost/m8/arf/arf-m8-20260502_160718/public_gate/public_gate_report.json @@ -0,0 +1,37 @@ +{ + "dataset_id": "m8", + "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": "y", + "task_type": "classification", + "input_splits": { + "train": "/data/jialinzhang/SynthesizePipeline-server/DatasetNew/m8/m8-train.csv", + "val": "/data/jialinzhang/SynthesizePipeline-server/DatasetNew/m8/m8-val.csv", + "test": "/data/jialinzhang/SynthesizePipeline-server/DatasetNew/m8/m8-test.csv" + } +} \ No newline at end of file diff --git a/timecost/m8/arf/arf-m8-20260502_160718/public_gate/staged_input_manifest.json b/timecost/m8/arf/arf-m8-20260502_160718/public_gate/staged_input_manifest.json new file mode 100644 index 0000000000000000000000000000000000000000..1d46ecddfd558ef152c74a436f76496bd094014f --- /dev/null +++ b/timecost/m8/arf/arf-m8-20260502_160718/public_gate/staged_input_manifest.json @@ -0,0 +1,351 @@ +{ + "dataset_id": "m8", + "target_column": "y", + "task_type": "classification", + "train_csv": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/m8/arf/arf-m8-20260502_160718/staged/public/train.csv", + "val_csv": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/m8/arf/arf-m8-20260502_160718/staged/public/val.csv", + "test_csv": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/m8/arf/arf-m8-20260502_160718/staged/public/test.csv", + "features_json": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/m8/arf/arf-m8-20260502_160718/staged/public/staged_features.json", + "public_gate_report": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/m8/arf/arf-m8-20260502_160718/public_gate/public_gate_report.json", + "column_schema": [ + { + "name": "age", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 76, + "unique_ratio": 0.002101, + "example_values": [ + "40", + "52", + "31", + "51", + "44" + ] + } + }, + { + "name": "job", + "role": "feature", + "semantic_type": "categorical", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 12, + "unique_ratio": 0.000332, + "example_values": [ + "admin.", + "technician", + "entrepreneur", + "blue-collar", + "services" + ] + } + }, + { + "name": "marital", + "role": "feature", + "semantic_type": "categorical", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 3, + "unique_ratio": 8.3e-05, + "example_values": [ + "single", + "married", + "divorced" + ] + } + }, + { + "name": "education", + "role": "feature", + "semantic_type": "categorical", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 4, + "unique_ratio": 0.000111, + "example_values": [ + "secondary", + "tertiary", + "primary", + "unknown" + ] + } + }, + { + "name": "default", + "role": "feature", + "semantic_type": "boolean", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 2, + "unique_ratio": 5.5e-05, + "example_values": [ + "no", + "yes" + ] + } + }, + { + "name": "balance", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 6604, + "unique_ratio": 0.182592, + "example_values": [ + "419", + "31", + "7567", + "315", + "737" + ] + } + }, + { + "name": "housing", + "role": "feature", + "semantic_type": "boolean", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 2, + "unique_ratio": 5.5e-05, + "example_values": [ + "no", + "yes" + ] + } + }, + { + "name": "loan", + "role": "feature", + "semantic_type": "boolean", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 2, + "unique_ratio": 5.5e-05, + "example_values": [ + "yes", + "no" + ] + } + }, + { + "name": "contact", + "role": "feature", + "semantic_type": "categorical", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 3, + "unique_ratio": 8.3e-05, + "example_values": [ + "cellular", + "unknown", + "telephone" + ] + } + }, + { + "name": "day", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 31, + "unique_ratio": 0.000857, + "example_values": [ + "28", + "7", + "11", + "12", + "14" + ] + } + }, + { + "name": "month", + "role": "feature", + "semantic_type": "categorical", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 12, + "unique_ratio": 0.000332, + "example_values": [ + "jul", + "may", + "aug", + "oct", + "feb" + ] + } + }, + { + "name": "duration", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 1507, + "unique_ratio": 0.041667, + "example_values": [ + "100", + "120", + "70", + "291", + "102" + ] + } + }, + { + "name": "campaign", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 47, + "unique_ratio": 0.001299, + "example_values": [ + "16", + "1", + "2", + "5", + "4" + ] + } + }, + { + "name": "pdays", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 524, + "unique_ratio": 0.014488, + "example_values": [ + "-1", + "91", + "365", + "189", + "117" + ] + } + }, + { + "name": "previous", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 38, + "unique_ratio": 0.001051, + "example_values": [ + "0", + "4", + "1", + "2", + "3" + ] + } + }, + { + "name": "poutcome", + "role": "feature", + "semantic_type": "categorical", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 4, + "unique_ratio": 0.000111, + "example_values": [ + "unknown", + "failure", + "other", + "success" + ] + } + }, + { + "name": "y", + "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": 5.5e-05, + "example_values": [ + "no", + "yes" + ] + } + } + ] +} \ No newline at end of file diff --git a/timecost/m8/arf/arf-m8-20260502_160718/runtime_result.json b/timecost/m8/arf/arf-m8-20260502_160718/runtime_result.json new file mode 100644 index 0000000000000000000000000000000000000000..b5d468f31bef21a83981bf8e6c2dbbef380c7bc4 --- /dev/null +++ b/timecost/m8/arf/arf-m8-20260502_160718/runtime_result.json @@ -0,0 +1,27 @@ +{ + "dataset_id": "m8", + "model": "arf", + "run_id": "arf-m8-20260502_160718", + "public_gate_status": "pass", + "adapter_ready_status": "pass", + "train_status": "success", + "generate_status": "success", + "reason_code": null, + "reason_detail": null, + "artifacts": { + "synthetic_csv": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/m8/arf/arf-m8-20260502_160718/arf-m8-36168-20260502_160912.csv", + "model_path": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/m8/arf/arf-m8-20260502_160718/arf_model.pkl" + }, + "timings": { + "train": { + "started_at": "2026-05-02T16:07:18", + "ended_at": "2026-05-02T16:09:12", + "duration_sec": 113.841 + }, + "generate": { + "started_at": "2026-05-02T16:09:12", + "ended_at": "2026-05-02T16:09:27", + "duration_sec": 14.944 + } + } +} \ No newline at end of file diff --git a/timecost/m8/arf/arf-m8-20260502_160718/staged/arf/adapter_report.json b/timecost/m8/arf/arf-m8-20260502_160718/staged/arf/adapter_report.json new file mode 100644 index 0000000000000000000000000000000000000000..d5d24248cf1aecf004e6e3b195d3880fd53d7cdd --- /dev/null +++ b/timecost/m8/arf/arf-m8-20260502_160718/staged/arf/adapter_report.json @@ -0,0 +1,7 @@ +{ + "adapter_ready_status": "pass", + "adapter_fail_reason_code": null, + "adapter_fail_detail": null, + "adapter_transforms_applied": [], + "model_input_manifest": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/m8/arf/arf-m8-20260502_160718/staged/arf/model_input_manifest.json" +} \ No newline at end of file diff --git a/timecost/m8/arf/arf-m8-20260502_160718/staged/arf/adapter_transforms_applied.json b/timecost/m8/arf/arf-m8-20260502_160718/staged/arf/adapter_transforms_applied.json new file mode 100644 index 0000000000000000000000000000000000000000..0637a088a01e8ddab3bf3fa98dbe804cbde1a0dc --- /dev/null +++ b/timecost/m8/arf/arf-m8-20260502_160718/staged/arf/adapter_transforms_applied.json @@ -0,0 +1 @@ +[] \ No newline at end of file diff --git a/timecost/m8/arf/arf-m8-20260502_160718/staged/arf/model_input_manifest.json b/timecost/m8/arf/arf-m8-20260502_160718/staged/arf/model_input_manifest.json new file mode 100644 index 0000000000000000000000000000000000000000..b2cbc13c8b1463de7eefc872f5bad9ede3aa79bd --- /dev/null +++ b/timecost/m8/arf/arf-m8-20260502_160718/staged/arf/model_input_manifest.json @@ -0,0 +1,353 @@ +{ + "dataset_id": "m8", + "model": "arf", + "target_column": "y", + "task_type": "classification", + "column_schema": [ + { + "name": "age", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 76, + "unique_ratio": 0.002101, + "example_values": [ + "40", + "52", + "31", + "51", + "44" + ] + } + }, + { + "name": "job", + "role": "feature", + "semantic_type": "categorical", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 12, + "unique_ratio": 0.000332, + "example_values": [ + "admin.", + "technician", + "entrepreneur", + "blue-collar", + "services" + ] + } + }, + { + "name": "marital", + "role": "feature", + "semantic_type": "categorical", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 3, + "unique_ratio": 8.3e-05, + "example_values": [ + "single", + "married", + "divorced" + ] + } + }, + { + "name": "education", + "role": "feature", + "semantic_type": "categorical", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 4, + "unique_ratio": 0.000111, + "example_values": [ + "secondary", + "tertiary", + "primary", + "unknown" + ] + } + }, + { + "name": "default", + "role": "feature", + "semantic_type": "boolean", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 2, + "unique_ratio": 5.5e-05, + "example_values": [ + "no", + "yes" + ] + } + }, + { + "name": "balance", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 6604, + "unique_ratio": 0.182592, + "example_values": [ + "419", + "31", + "7567", + "315", + "737" + ] + } + }, + { + "name": "housing", + "role": "feature", + "semantic_type": "boolean", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 2, + "unique_ratio": 5.5e-05, + "example_values": [ + "no", + "yes" + ] + } + }, + { + "name": "loan", + "role": "feature", + "semantic_type": "boolean", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 2, + "unique_ratio": 5.5e-05, + "example_values": [ + "yes", + "no" + ] + } + }, + { + "name": "contact", + "role": "feature", + "semantic_type": "categorical", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 3, + "unique_ratio": 8.3e-05, + "example_values": [ + "cellular", + "unknown", + "telephone" + ] + } + }, + { + "name": "day", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 31, + "unique_ratio": 0.000857, + "example_values": [ + "28", + "7", + "11", + "12", + "14" + ] + } + }, + { + "name": "month", + "role": "feature", + "semantic_type": "categorical", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 12, + "unique_ratio": 0.000332, + "example_values": [ + "jul", + "may", + "aug", + "oct", + "feb" + ] + } + }, + { + "name": "duration", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 1507, + "unique_ratio": 0.041667, + "example_values": [ + "100", + "120", + "70", + "291", + "102" + ] + } + }, + { + "name": "campaign", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 47, + "unique_ratio": 0.001299, + "example_values": [ + "16", + "1", + "2", + "5", + "4" + ] + } + }, + { + "name": "pdays", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 524, + "unique_ratio": 0.014488, + "example_values": [ + "-1", + "91", + "365", + "189", + "117" + ] + } + }, + { + "name": "previous", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 38, + "unique_ratio": 0.001051, + "example_values": [ + "0", + "4", + "1", + "2", + "3" + ] + } + }, + { + "name": "poutcome", + "role": "feature", + "semantic_type": "categorical", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 4, + "unique_ratio": 0.000111, + "example_values": [ + "unknown", + "failure", + "other", + "success" + ] + } + }, + { + "name": "y", + "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": 5.5e-05, + "example_values": [ + "no", + "yes" + ] + } + } + ], + "public_manifest": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/m8/arf/arf-m8-20260502_160718/public_gate/staged_input_manifest.json", + "train_csv": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/m8/arf/arf-m8-20260502_160718/staged/public/train.csv", + "val_csv": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/m8/arf/arf-m8-20260502_160718/staged/public/val.csv", + "test_csv": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/m8/arf/arf-m8-20260502_160718/staged/public/test.csv", + "features_json": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/m8/arf/arf-m8-20260502_160718/staged/public/staged_features.json", + "public_gate_report": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/m8/arf/arf-m8-20260502_160718/public_gate/public_gate_report.json" +} \ No newline at end of file diff --git a/timecost/m8/arf/arf-m8-20260502_160718/staged/public/staged_features.json b/timecost/m8/arf/arf-m8-20260502_160718/staged/public/staged_features.json new file mode 100644 index 0000000000000000000000000000000000000000..11323e8dc5c8a2eaafa8e404e60d3db7e244452a --- /dev/null +++ b/timecost/m8/arf/arf-m8-20260502_160718/staged/public/staged_features.json @@ -0,0 +1,87 @@ +[ + { + "feature_name": "age", + "data_type": "continuous", + "is_target": false + }, + { + "feature_name": "job", + "data_type": "categorical", + "is_target": false + }, + { + "feature_name": "marital", + "data_type": "categorical", + "is_target": false + }, + { + "feature_name": "education", + "data_type": "categorical", + "is_target": false + }, + { + "feature_name": "default", + "data_type": "binary", + "is_target": false + }, + { + "feature_name": "balance", + "data_type": "continuous", + "is_target": false + }, + { + "feature_name": "housing", + "data_type": "binary", + "is_target": false + }, + { + "feature_name": "loan", + "data_type": "binary", + "is_target": false + }, + { + "feature_name": "contact", + "data_type": "categorical", + "is_target": false + }, + { + "feature_name": "day", + "data_type": "continuous", + "is_target": false + }, + { + "feature_name": "month", + "data_type": "categorical", + "is_target": false + }, + { + "feature_name": "duration", + "data_type": "continuous", + "is_target": false + }, + { + "feature_name": "campaign", + "data_type": "continuous", + "is_target": false + }, + { + "feature_name": "pdays", + "data_type": "continuous", + "is_target": false + }, + { + "feature_name": "previous", + "data_type": "continuous", + "is_target": false + }, + { + "feature_name": "poutcome", + "data_type": "categorical", + "is_target": false + }, + { + "feature_name": "y", + "data_type": "binary", + "is_target": true + } +] \ No newline at end of file diff --git a/timecost/m8/arf/arf-m8-20260502_160718/staged/public/test.csv b/timecost/m8/arf/arf-m8-20260502_160718/staged/public/test.csv new file mode 100644 index 0000000000000000000000000000000000000000..e1c4866e541b88f8bcd3b88381c7e56d4df06443 --- /dev/null +++ b/timecost/m8/arf/arf-m8-20260502_160718/staged/public/test.csv @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:6221943e422e75c8317b79b7ef93e9cd01f61fdd8de6ce42909a8e4610966310 +size 370991 diff --git a/timecost/m8/arf/arf-m8-20260502_160718/staged/public/train.csv b/timecost/m8/arf/arf-m8-20260502_160718/staged/public/train.csv new file mode 100644 index 0000000000000000000000000000000000000000..fd7d8791840b6811b098820db4ed9e74cf5d627a --- /dev/null +++ b/timecost/m8/arf/arf-m8-20260502_160718/staged/public/train.csv @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:f9cbb71aa793de19869a138d41aea5808f772b31082741b185ffb8ca7b821833 +size 2964802 diff --git a/timecost/m8/arf/arf-m8-20260502_160718/staged/public/val.csv b/timecost/m8/arf/arf-m8-20260502_160718/staged/public/val.csv new file mode 100644 index 0000000000000000000000000000000000000000..09f0041420455c56eb1f79c62940d135e8bc6ea3 --- /dev/null +++ b/timecost/m8/arf/arf-m8-20260502_160718/staged/public/val.csv @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:5ee8612128aae92155906abc0fdc752ac24fd04d63c78c080c89e3900efe6525 +size 370535 diff --git a/timecost/m8/arf/arf-m8-20260502_160718/train_20260502_160718.log b/timecost/m8/arf/arf-m8-20260502_160718/train_20260502_160718.log new file mode 100644 index 0000000000000000000000000000000000000000..008efedaf40e83c263d2ea0582f2ffcd5f857136 --- /dev/null +++ b/timecost/m8/arf/arf-m8-20260502_160718/train_20260502_160718.log @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:c0ef062957d75d8a0ed6fa7ada811780c5a2d77ef3d7a6e054db4341c85e241f +size 498 diff --git a/timecost/m8/bayesnet/bayesnet-m8-20260502_160947/_bayesnet_generate.py b/timecost/m8/bayesnet/bayesnet-m8-20260502_160947/_bayesnet_generate.py new file mode 100644 index 0000000000000000000000000000000000000000..d7f6e475d0830b8fda888c7d90c82188cf78950b --- /dev/null +++ b/timecost/m8/bayesnet/bayesnet-m8-20260502_160947/_bayesnet_generate.py @@ -0,0 +1,105 @@ + +import pickle +import subprocess +import sys +import warnings + +import numpy as np +import pandas as pd +from pgmpy.sampling import BayesianModelSampling + +warnings.filterwarnings("ignore", category=FutureWarning) + +def _ensure_cloudpickle(): + try: + import cloudpickle # noqa: F401 + except ModuleNotFoundError: + subprocess.check_call( + [sys.executable, "-m", "pip", "install", "--quiet", "cloudpickle"], + ) + +_ensure_cloudpickle() + +with open("/work/output-Benchmark-trainonly-v1/m8/bayesnet/bayesnet-m8-20260502_160947/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(36168) +sampler = BayesianModelSampling(network) +raw = sampler.forward_sample(size=num_rows, show_progress=False) +raw = raw.reset_index(drop=True) +if len(raw) > num_rows: + raw = raw.iloc[:num_rows] +_tries = 0 +while len(raw) < num_rows and _tries < 64: + _tries += 1 + nextra = min(10000, num_rows - len(raw)) + more = sampler.forward_sample(size=max(nextra, 1), show_progress=False) + more = more.reset_index(drop=True) + if len(more) == 0: + break + raw = pd.concat([raw, more], ignore_index=True) + if len(raw) > num_rows: + raw = raw.iloc[:num_rows] + +out = pd.DataFrame(index=raw.index) +rng = np.random.default_rng() + +for c in cols: + if c in inverse["categorical"]: + levels = inverse["categorical"][c] + idx = raw[c].astype(int).to_numpy() + idx = np.clip(idx, 0, max(0, len(levels) - 1)) + out[c] = [levels[i] for i in idx] + else: + edges = np.asarray(inverse["continuous"][c], dtype=float) + if edges.size < 2: + out[c] = 0.0 + else: + nbin = edges.size - 1 + res = [] + for k in raw[c].astype(int).to_numpy(): + k = int(k) + if k < 0: + k = 0 + if k >= nbin: + k = nbin - 1 + lo, hi = float(edges[k]), float(edges[k + 1]) + if hi < lo: + lo, hi = hi, lo + v = rng.uniform(lo, hi) + if c in integer_columns: + v = int(round(v)) + res.append(v) + out[c] = res + +final = pd.DataFrame(index=out.index) +for c in full_order: + if c in const_cols: + final[c] = const_cols[c] + elif c in out.columns: + final[c] = out[c] + +dtypes = bundle.get("original_dtypes") or {} +for c, dts in dtypes.items(): + if c not in final.columns: + continue + try: + if "int" in dts: + final[c] = pd.to_numeric(final[c], errors="coerce").astype("Int64") + elif "float" in dts: + final[c] = pd.to_numeric(final[c], errors="coerce") + except Exception: + pass + +if len(final) != num_rows: + final = final.iloc[:num_rows].copy() +final = final.reset_index(drop=True) +final.to_csv("/work/output-Benchmark-trainonly-v1/m8/bayesnet/bayesnet-m8-20260502_160947/bayesnet-m8-36168-20260502_161000.csv", index=False) +print(f"[BayesNet] Generated {len(final)} rows (requested {num_rows}) -> /work/output-Benchmark-trainonly-v1/m8/bayesnet/bayesnet-m8-20260502_160947/bayesnet-m8-36168-20260502_161000.csv") diff --git a/timecost/m8/bayesnet/bayesnet-m8-20260502_160947/_bayesnet_train.py b/timecost/m8/bayesnet/bayesnet-m8-20260502_160947/_bayesnet_train.py new file mode 100644 index 0000000000000000000000000000000000000000..f6a114133c832da5a4dcbf2debd6b836bd01186b --- /dev/null +++ b/timecost/m8/bayesnet/bayesnet-m8-20260502_160947/_bayesnet_train.py @@ -0,0 +1,133 @@ + +import json +import pickle +import subprocess +import sys +import warnings + +import numpy as np +import pandas as pd +from pgmpy.estimators import TreeSearch +from pgmpy.models import DiscreteBayesianNetwork +warnings.filterwarnings("ignore", category=FutureWarning) + +def _ensure_cloudpickle(): + try: + import cloudpickle # noqa: F401 + except ModuleNotFoundError: + subprocess.check_call( + [sys.executable, "-m", "pip", "install", "--quiet", "cloudpickle"], + ) + +_ensure_cloudpickle() + +with open("/work/output-Benchmark-trainonly-v1/m8/bayesnet/bayesnet-m8-20260502_160947/bayesnet_coltypes.json", "r", encoding="utf-8") as _f: + colmeta = json.load(_f) +integer_columns = set(colmeta.get("integer_columns") or []) + +df = pd.read_csv("/work/output-Benchmark-trainonly-v1/m8/bayesnet/bayesnet-m8-20260502_160947/staged/public/train.csv") +df = df.dropna(axis=1, how="all") +full_column_order = list(df.columns) + +const_cols = {} +for col in list(df.columns): + if df[col].nunique(dropna=True) <= 1: + const_cols[col] = df[col].iloc[0] if len(df) > 0 else None + df = df.drop(columns=[col]) + print(f"[BayesNet] Dropped zero-variance column '{col}'") + +const_path = "/work/output-Benchmark-trainonly-v1/m8/bayesnet/bayesnet-m8-20260502_160947/bayesnet_model.pkl".replace("bayesnet_model.pkl", "const_cols.json") +with open(const_path, "w", encoding="utf-8") as _f: + json.dump({k: str(v) for k, v in const_cols.items()}, _f) + +inverse = {"categorical": {}, "continuous": {}} +enc = pd.DataFrame(index=df.index) +_n_samples = len(df) +_n_plan = sum( + 1 for e in colmeta["columns"] if str(e.get("name", "")) in df.columns +) +max_bins = 10 +max_cat_levels = 256 +if _n_plan > 35 or _n_samples > 200000: + max_bins = 5 + max_cat_levels = 64 +if _n_plan > 55: + max_bins = 4 + max_cat_levels = 32 +print( + f"[BayesNet] max_bins={max_bins}, max_cat_levels={max_cat_levels} " + f"(cols_in_df={_n_plan}, rows={_n_samples})" +) + +for entry in colmeta["columns"]: + name = entry["name"] + if name not in df.columns: + continue + kind = entry["type"] + s = df[name] + if kind == "categorical": + s2 = s.astype(str).fillna("__NA__") + counts = s2.value_counts(dropna=False) + if len(counts) > max_cat_levels: + keep = set(counts.index[: max_cat_levels - 1].tolist()) + s2 = s2.map(lambda x: x if x in keep else "__OTHER__") + uniques = sorted(s2.dropna().unique(), key=lambda x: str(x)) + mapping = {str(v): i for i, v in enumerate(uniques)} + inverse["categorical"][name] = [uniques[i] for i in range(len(uniques))] + enc[name] = s2.map(lambda x, m=mapping: m.get(str(x), 0)).astype(int) + else: + s_num = pd.to_numeric(s, errors="coerce") + nu = int(s_num.nunique(dropna=True)) + q = min(max_bins, max(2, nu)) + if nu < 2: + enc[name] = np.zeros(len(s_num), dtype=int) + lo, hi = float(s_num.min()), float(s_num.max()) + inverse["continuous"][name] = [lo, hi] + else: + try: + _, bins = pd.qcut( + s_num, q=q, retbins=True, duplicates="drop" + ) + except Exception: + med = float(s_num.median()) + s2 = s_num.fillna(med) + _, bins = pd.qcut( + s2, q=min(q, 3), retbins=True, duplicates="drop" + ) + bins = np.asarray(bins, dtype=float) + lab = pd.cut( + s_num, bins=bins, labels=False, include_lowest=True + ) + enc[name] = lab.fillna(0).astype(int) + inverse["continuous"][name] = bins.tolist() + +print(f"[BayesNet] Training on {len(enc)} rows, {len(enc.columns)} cols (encoded)") + +enc_struct = enc +if len(enc) > 25000: + enc_struct = enc.sample(n=25000, random_state=0, replace=False) + print(f"[BayesNet] TreeSearch on {len(enc_struct)} rows (subsample; full n={len(enc)})") +dag = TreeSearch(enc_struct).estimate(show_progress=False) +for col in enc.columns: + if col not in dag.nodes(): + dag.add_node(col) + print(f"[BayesNet] Added isolated node to DAG: {col}") +network = DiscreteBayesianNetwork(dag) +enc_fit = enc +if len(enc) > 120000: + enc_fit = enc.sample(n=120000, random_state=1, replace=False) + print(f"[BayesNet] fit() on {len(enc_fit)} rows (full n={len(enc)})") +network.fit(enc_fit) + +bundle = { + "network": network, + "inverse": inverse, + "column_order": list(enc.columns), + "full_column_order": full_column_order, + "integer_columns": list(integer_columns), + "original_dtypes": {c: str(df[c].dtype) for c in enc.columns}, + "const_cols": const_cols, +} +with open("/work/output-Benchmark-trainonly-v1/m8/bayesnet/bayesnet-m8-20260502_160947/bayesnet_model.pkl", "wb") as _f: + pickle.dump(bundle, _f) +print(f"[BayesNet] Model saved -> /work/output-Benchmark-trainonly-v1/m8/bayesnet/bayesnet-m8-20260502_160947/bayesnet_model.pkl") diff --git a/timecost/m8/bayesnet/bayesnet-m8-20260502_160947/bayesnet-m8-36168-20260502_161000.csv b/timecost/m8/bayesnet/bayesnet-m8-20260502_160947/bayesnet-m8-36168-20260502_161000.csv new file mode 100644 index 0000000000000000000000000000000000000000..edbe8342638545db20fd28c0caeb03c095933049 --- /dev/null +++ b/timecost/m8/bayesnet/bayesnet-m8-20260502_160947/bayesnet-m8-36168-20260502_161000.csv @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:1a92aef9a4b8cf1a1ac5bb91aefa9624cebcab08d6eeded6ed9da65a4885d608 +size 6906618 diff --git a/timecost/m8/bayesnet/bayesnet-m8-20260502_160947/bayesnet_coltypes.json b/timecost/m8/bayesnet/bayesnet-m8-20260502_160947/bayesnet_coltypes.json new file mode 100644 index 0000000000000000000000000000000000000000..452c32e6e0fbb315c4802d60a82ba93edd250e8b --- /dev/null +++ b/timecost/m8/bayesnet/bayesnet-m8-20260502_160947/bayesnet_coltypes.json @@ -0,0 +1,73 @@ +{ + "columns": [ + { + "name": "age", + "type": "continuous" + }, + { + "name": "job", + "type": "categorical" + }, + { + "name": "marital", + "type": "categorical" + }, + { + "name": "education", + "type": "categorical" + }, + { + "name": "default", + "type": "categorical" + }, + { + "name": "balance", + "type": "continuous" + }, + { + "name": "housing", + "type": "categorical" + }, + { + "name": "loan", + "type": "categorical" + }, + { + "name": "contact", + "type": "categorical" + }, + { + "name": "day", + "type": "continuous" + }, + { + "name": "month", + "type": "categorical" + }, + { + "name": "duration", + "type": "continuous" + }, + { + "name": "campaign", + "type": "continuous" + }, + { + "name": "pdays", + "type": "continuous" + }, + { + "name": "previous", + "type": "continuous" + }, + { + "name": "poutcome", + "type": "categorical" + }, + { + "name": "y", + "type": "categorical" + } + ], + "integer_columns": [] +} \ No newline at end of file diff --git a/timecost/m8/bayesnet/bayesnet-m8-20260502_160947/bayesnet_model.pkl b/timecost/m8/bayesnet/bayesnet-m8-20260502_160947/bayesnet_model.pkl new file mode 100644 index 0000000000000000000000000000000000000000..7c1e102b8d4aa09b19f3e38853f2a47850ac4235 --- /dev/null +++ b/timecost/m8/bayesnet/bayesnet-m8-20260502_160947/bayesnet_model.pkl @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:7488697f7835be919cb0a9525b58d8cf8f1dcc8efd4f06b6cb3fcc989aed6fc4 +size 17119 diff --git a/timecost/m8/bayesnet/bayesnet-m8-20260502_160947/const_cols.json b/timecost/m8/bayesnet/bayesnet-m8-20260502_160947/const_cols.json new file mode 100644 index 0000000000000000000000000000000000000000..9e26dfeeb6e641a33dae4961196235bdb965b21b --- /dev/null +++ b/timecost/m8/bayesnet/bayesnet-m8-20260502_160947/const_cols.json @@ -0,0 +1 @@ +{} \ No newline at end of file diff --git a/timecost/m8/bayesnet/bayesnet-m8-20260502_160947/gen_20260502_161000.log b/timecost/m8/bayesnet/bayesnet-m8-20260502_160947/gen_20260502_161000.log new file mode 100644 index 0000000000000000000000000000000000000000..97b33058e8180fee9ae92003bb581748f586e269 --- /dev/null +++ b/timecost/m8/bayesnet/bayesnet-m8-20260502_160947/gen_20260502_161000.log @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:f1a932dda821e4157b7ad56de0f1527ed6ca3a7bac9055a5531bfed13507c42d +size 3665 diff --git a/timecost/m8/bayesnet/bayesnet-m8-20260502_160947/input_snapshot.json b/timecost/m8/bayesnet/bayesnet-m8-20260502_160947/input_snapshot.json new file mode 100644 index 0000000000000000000000000000000000000000..8b9057d11fa60b3e081565eae17affd688aa1a1d --- /dev/null +++ b/timecost/m8/bayesnet/bayesnet-m8-20260502_160947/input_snapshot.json @@ -0,0 +1,36 @@ +{ + "dataset_id": "m8", + "model": "bayesnet", + "inputs": { + "train_csv": { + "path": "/data/jialinzhang/SynthesizePipeline-server/DatasetNew/m8/m8-train.csv", + "exists": true, + "size": 2964802, + "sha256": "f9cbb71aa793de19869a138d41aea5808f772b31082741b185ffb8ca7b821833" + }, + "val_csv": { + "path": "/data/jialinzhang/SynthesizePipeline-server/DatasetNew/m8/m8-val.csv", + "exists": true, + "size": 370535, + "sha256": "5ee8612128aae92155906abc0fdc752ac24fd04d63c78c080c89e3900efe6525" + }, + "test_csv": { + "path": "/data/jialinzhang/SynthesizePipeline-server/DatasetNew/m8/m8-test.csv", + "exists": true, + "size": 370991, + "sha256": "6221943e422e75c8317b79b7ef93e9cd01f61fdd8de6ce42909a8e4610966310" + }, + "profile_json": { + "path": "/data/jialinzhang/SynthesizePipeline-server/DatasetNew/artifacts/data_core/tabular/m8/m8-dataset_profile.json", + "exists": true, + "size": 6553, + "sha256": "44f883858641584035a0a8859cb95dbcd3a023c03cbc76931aadfc4c70ef871f" + }, + "contract_json": { + "path": "/data/jialinzhang/SynthesizePipeline-server/DatasetNew/artifacts/data_core/tabular/m8/m8-dataset_contract_v1.json", + "exists": true, + "size": 8214, + "sha256": "e76df134780ec9b6c6c625a54e5d0c1935e9f4a7d09320ad19279a0492438d92" + } + } +} \ No newline at end of file diff --git a/timecost/m8/bayesnet/bayesnet-m8-20260502_160947/public_gate/normalized_schema_snapshot.json b/timecost/m8/bayesnet/bayesnet-m8-20260502_160947/public_gate/normalized_schema_snapshot.json new file mode 100644 index 0000000000000000000000000000000000000000..5e616edd2b7924c5e07f02ccbbb842529655f52a --- /dev/null +++ b/timecost/m8/bayesnet/bayesnet-m8-20260502_160947/public_gate/normalized_schema_snapshot.json @@ -0,0 +1,346 @@ +{ + "dataset_id": "m8", + "target_column": "y", + "task_type": "classification", + "columns": [ + { + "name": "age", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 76, + "unique_ratio": 0.002101, + "example_values": [ + "40", + "52", + "31", + "51", + "44" + ] + } + }, + { + "name": "job", + "role": "feature", + "semantic_type": "categorical", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 12, + "unique_ratio": 0.000332, + "example_values": [ + "admin.", + "technician", + "entrepreneur", + "blue-collar", + "services" + ] + } + }, + { + "name": "marital", + "role": "feature", + "semantic_type": "categorical", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 3, + "unique_ratio": 8.3e-05, + "example_values": [ + "single", + "married", + "divorced" + ] + } + }, + { + "name": "education", + "role": "feature", + "semantic_type": "categorical", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 4, + "unique_ratio": 0.000111, + "example_values": [ + "secondary", + "tertiary", + "primary", + "unknown" + ] + } + }, + { + "name": "default", + "role": "feature", + "semantic_type": "boolean", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 2, + "unique_ratio": 5.5e-05, + "example_values": [ + "no", + "yes" + ] + } + }, + { + "name": "balance", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 6604, + "unique_ratio": 0.182592, + "example_values": [ + "419", + "31", + "7567", + "315", + "737" + ] + } + }, + { + "name": "housing", + "role": "feature", + "semantic_type": "boolean", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 2, + "unique_ratio": 5.5e-05, + "example_values": [ + "no", + "yes" + ] + } + }, + { + "name": "loan", + "role": "feature", + "semantic_type": "boolean", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 2, + "unique_ratio": 5.5e-05, + "example_values": [ + "yes", + "no" + ] + } + }, + { + "name": "contact", + "role": "feature", + "semantic_type": "categorical", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 3, + "unique_ratio": 8.3e-05, + "example_values": [ + "cellular", + "unknown", + "telephone" + ] + } + }, + { + "name": "day", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 31, + "unique_ratio": 0.000857, + "example_values": [ + "28", + "7", + "11", + "12", + "14" + ] + } + }, + { + "name": "month", + "role": "feature", + "semantic_type": "categorical", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 12, + "unique_ratio": 0.000332, + "example_values": [ + "jul", + "may", + "aug", + "oct", + "feb" + ] + } + }, + { + "name": "duration", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 1507, + "unique_ratio": 0.041667, + "example_values": [ + "100", + "120", + "70", + "291", + "102" + ] + } + }, + { + "name": "campaign", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 47, + "unique_ratio": 0.001299, + "example_values": [ + "16", + "1", + "2", + "5", + "4" + ] + } + }, + { + "name": "pdays", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 524, + "unique_ratio": 0.014488, + "example_values": [ + "-1", + "91", + "365", + "189", + "117" + ] + } + }, + { + "name": "previous", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 38, + "unique_ratio": 0.001051, + "example_values": [ + "0", + "4", + "1", + "2", + "3" + ] + } + }, + { + "name": "poutcome", + "role": "feature", + "semantic_type": "categorical", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 4, + "unique_ratio": 0.000111, + "example_values": [ + "unknown", + "failure", + "other", + "success" + ] + } + }, + { + "name": "y", + "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": 5.5e-05, + "example_values": [ + "no", + "yes" + ] + } + } + ] +} \ No newline at end of file diff --git a/timecost/m8/bayesnet/bayesnet-m8-20260502_160947/public_gate/public_gate_report.json b/timecost/m8/bayesnet/bayesnet-m8-20260502_160947/public_gate/public_gate_report.json new file mode 100644 index 0000000000000000000000000000000000000000..318ead0018618096d718d3ec1140561db7e0a70f --- /dev/null +++ b/timecost/m8/bayesnet/bayesnet-m8-20260502_160947/public_gate/public_gate_report.json @@ -0,0 +1,37 @@ +{ + "dataset_id": "m8", + "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": "y", + "task_type": "classification", + "input_splits": { + "train": "/data/jialinzhang/SynthesizePipeline-server/DatasetNew/m8/m8-train.csv", + "val": "/data/jialinzhang/SynthesizePipeline-server/DatasetNew/m8/m8-val.csv", + "test": "/data/jialinzhang/SynthesizePipeline-server/DatasetNew/m8/m8-test.csv" + } +} \ No newline at end of file diff --git a/timecost/m8/bayesnet/bayesnet-m8-20260502_160947/public_gate/staged_input_manifest.json b/timecost/m8/bayesnet/bayesnet-m8-20260502_160947/public_gate/staged_input_manifest.json new file mode 100644 index 0000000000000000000000000000000000000000..8fc31ee6ab568ec06f7086edbd2074525eb3ba7d --- /dev/null +++ b/timecost/m8/bayesnet/bayesnet-m8-20260502_160947/public_gate/staged_input_manifest.json @@ -0,0 +1,351 @@ +{ + "dataset_id": "m8", + "target_column": "y", + "task_type": "classification", + "train_csv": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/m8/bayesnet/bayesnet-m8-20260502_160947/staged/public/train.csv", + "val_csv": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/m8/bayesnet/bayesnet-m8-20260502_160947/staged/public/val.csv", + "test_csv": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/m8/bayesnet/bayesnet-m8-20260502_160947/staged/public/test.csv", + "features_json": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/m8/bayesnet/bayesnet-m8-20260502_160947/staged/public/staged_features.json", + "public_gate_report": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/m8/bayesnet/bayesnet-m8-20260502_160947/public_gate/public_gate_report.json", + "column_schema": [ + { + "name": "age", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 76, + "unique_ratio": 0.002101, + "example_values": [ + "40", + "52", + "31", + "51", + "44" + ] + } + }, + { + "name": "job", + "role": "feature", + "semantic_type": "categorical", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 12, + "unique_ratio": 0.000332, + "example_values": [ + "admin.", + "technician", + "entrepreneur", + "blue-collar", + "services" + ] + } + }, + { + "name": "marital", + "role": "feature", + "semantic_type": "categorical", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 3, + "unique_ratio": 8.3e-05, + "example_values": [ + "single", + "married", + "divorced" + ] + } + }, + { + "name": "education", + "role": "feature", + "semantic_type": "categorical", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 4, + "unique_ratio": 0.000111, + "example_values": [ + "secondary", + "tertiary", + "primary", + "unknown" + ] + } + }, + { + "name": "default", + "role": "feature", + "semantic_type": "boolean", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 2, + "unique_ratio": 5.5e-05, + "example_values": [ + "no", + "yes" + ] + } + }, + { + "name": "balance", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 6604, + "unique_ratio": 0.182592, + "example_values": [ + "419", + "31", + "7567", + "315", + "737" + ] + } + }, + { + "name": "housing", + "role": "feature", + "semantic_type": "boolean", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 2, + "unique_ratio": 5.5e-05, + "example_values": [ + "no", + "yes" + ] + } + }, + { + "name": "loan", + "role": "feature", + "semantic_type": "boolean", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 2, + "unique_ratio": 5.5e-05, + "example_values": [ + "yes", + "no" + ] + } + }, + { + "name": "contact", + "role": "feature", + "semantic_type": "categorical", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 3, + "unique_ratio": 8.3e-05, + "example_values": [ + "cellular", + "unknown", + "telephone" + ] + } + }, + { + "name": "day", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 31, + "unique_ratio": 0.000857, + "example_values": [ + "28", + "7", + "11", + "12", + "14" + ] + } + }, + { + "name": "month", + "role": "feature", + "semantic_type": "categorical", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 12, + "unique_ratio": 0.000332, + "example_values": [ + "jul", + "may", + "aug", + "oct", + "feb" + ] + } + }, + { + "name": "duration", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 1507, + "unique_ratio": 0.041667, + "example_values": [ + "100", + "120", + "70", + "291", + "102" + ] + } + }, + { + "name": "campaign", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 47, + "unique_ratio": 0.001299, + "example_values": [ + "16", + "1", + "2", + "5", + "4" + ] + } + }, + { + "name": "pdays", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 524, + "unique_ratio": 0.014488, + "example_values": [ + "-1", + "91", + "365", + "189", + "117" + ] + } + }, + { + "name": "previous", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 38, + "unique_ratio": 0.001051, + "example_values": [ + "0", + "4", + "1", + "2", + "3" + ] + } + }, + { + "name": "poutcome", + "role": "feature", + "semantic_type": "categorical", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 4, + "unique_ratio": 0.000111, + "example_values": [ + "unknown", + "failure", + "other", + "success" + ] + } + }, + { + "name": "y", + "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": 5.5e-05, + "example_values": [ + "no", + "yes" + ] + } + } + ] +} \ No newline at end of file diff --git a/timecost/m8/bayesnet/bayesnet-m8-20260502_160947/runtime_result.json b/timecost/m8/bayesnet/bayesnet-m8-20260502_160947/runtime_result.json new file mode 100644 index 0000000000000000000000000000000000000000..65d5739276a206c1fc091c6f14a00a39c3db91b0 --- /dev/null +++ b/timecost/m8/bayesnet/bayesnet-m8-20260502_160947/runtime_result.json @@ -0,0 +1,27 @@ +{ + "dataset_id": "m8", + "model": "bayesnet", + "run_id": "bayesnet-m8-20260502_160947", + "public_gate_status": "pass", + "adapter_ready_status": "pass", + "train_status": "success", + "generate_status": "success", + "reason_code": null, + "reason_detail": null, + "artifacts": { + "synthetic_csv": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/m8/bayesnet/bayesnet-m8-20260502_160947/bayesnet-m8-36168-20260502_161000.csv", + "model_path": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/m8/bayesnet/bayesnet-m8-20260502_160947/bayesnet_model.pkl" + }, + "timings": { + "train": { + "started_at": "2026-05-02T16:09:47", + "ended_at": "2026-05-02T16:10:00", + "duration_sec": 12.607 + }, + "generate": { + "started_at": "2026-05-02T16:10:00", + "ended_at": "2026-05-02T16:10:12", + "duration_sec": 11.941 + } + } +} \ No newline at end of file diff --git a/timecost/m8/bayesnet/bayesnet-m8-20260502_160947/staged/bayesnet/adapter_report.json b/timecost/m8/bayesnet/bayesnet-m8-20260502_160947/staged/bayesnet/adapter_report.json new file mode 100644 index 0000000000000000000000000000000000000000..024817b9832b89ad283292e37b473647004f4189 --- /dev/null +++ b/timecost/m8/bayesnet/bayesnet-m8-20260502_160947/staged/bayesnet/adapter_report.json @@ -0,0 +1,7 @@ +{ + "adapter_ready_status": "pass", + "adapter_fail_reason_code": null, + "adapter_fail_detail": null, + "adapter_transforms_applied": [], + "model_input_manifest": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/m8/bayesnet/bayesnet-m8-20260502_160947/staged/bayesnet/model_input_manifest.json" +} \ No newline at end of file diff --git a/timecost/m8/bayesnet/bayesnet-m8-20260502_160947/staged/bayesnet/adapter_transforms_applied.json b/timecost/m8/bayesnet/bayesnet-m8-20260502_160947/staged/bayesnet/adapter_transforms_applied.json new file mode 100644 index 0000000000000000000000000000000000000000..0637a088a01e8ddab3bf3fa98dbe804cbde1a0dc --- /dev/null +++ b/timecost/m8/bayesnet/bayesnet-m8-20260502_160947/staged/bayesnet/adapter_transforms_applied.json @@ -0,0 +1 @@ +[] \ No newline at end of file diff --git a/timecost/m8/bayesnet/bayesnet-m8-20260502_160947/staged/bayesnet/model_input_manifest.json b/timecost/m8/bayesnet/bayesnet-m8-20260502_160947/staged/bayesnet/model_input_manifest.json new file mode 100644 index 0000000000000000000000000000000000000000..00b582905858ade5224b2aeafeb1f87282bab2c6 --- /dev/null +++ b/timecost/m8/bayesnet/bayesnet-m8-20260502_160947/staged/bayesnet/model_input_manifest.json @@ -0,0 +1,353 @@ +{ + "dataset_id": "m8", + "model": "bayesnet", + "target_column": "y", + "task_type": "classification", + "column_schema": [ + { + "name": "age", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 76, + "unique_ratio": 0.002101, + "example_values": [ + "40", + "52", + "31", + "51", + "44" + ] + } + }, + { + "name": "job", + "role": "feature", + "semantic_type": "categorical", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 12, + "unique_ratio": 0.000332, + "example_values": [ + "admin.", + "technician", + "entrepreneur", + "blue-collar", + "services" + ] + } + }, + { + "name": "marital", + "role": "feature", + "semantic_type": "categorical", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 3, + "unique_ratio": 8.3e-05, + "example_values": [ + "single", + "married", + "divorced" + ] + } + }, + { + "name": "education", + "role": "feature", + "semantic_type": "categorical", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 4, + "unique_ratio": 0.000111, + "example_values": [ + "secondary", + "tertiary", + "primary", + "unknown" + ] + } + }, + { + "name": "default", + "role": "feature", + "semantic_type": "boolean", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 2, + "unique_ratio": 5.5e-05, + "example_values": [ + "no", + "yes" + ] + } + }, + { + "name": "balance", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 6604, + "unique_ratio": 0.182592, + "example_values": [ + "419", + "31", + "7567", + "315", + "737" + ] + } + }, + { + "name": "housing", + "role": "feature", + "semantic_type": "boolean", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 2, + "unique_ratio": 5.5e-05, + "example_values": [ + "no", + "yes" + ] + } + }, + { + "name": "loan", + "role": "feature", + "semantic_type": "boolean", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 2, + "unique_ratio": 5.5e-05, + "example_values": [ + "yes", + "no" + ] + } + }, + { + "name": "contact", + "role": "feature", + "semantic_type": "categorical", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 3, + "unique_ratio": 8.3e-05, + "example_values": [ + "cellular", + "unknown", + "telephone" + ] + } + }, + { + "name": "day", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 31, + "unique_ratio": 0.000857, + "example_values": [ + "28", + "7", + "11", + "12", + "14" + ] + } + }, + { + "name": "month", + "role": "feature", + "semantic_type": "categorical", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 12, + "unique_ratio": 0.000332, + "example_values": [ + "jul", + "may", + "aug", + "oct", + "feb" + ] + } + }, + { + "name": "duration", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 1507, + "unique_ratio": 0.041667, + "example_values": [ + "100", + "120", + "70", + "291", + "102" + ] + } + }, + { + "name": "campaign", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 47, + "unique_ratio": 0.001299, + "example_values": [ + "16", + "1", + "2", + "5", + "4" + ] + } + }, + { + "name": "pdays", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 524, + "unique_ratio": 0.014488, + "example_values": [ + "-1", + "91", + "365", + "189", + "117" + ] + } + }, + { + "name": "previous", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 38, + "unique_ratio": 0.001051, + "example_values": [ + "0", + "4", + "1", + "2", + "3" + ] + } + }, + { + "name": "poutcome", + "role": "feature", + "semantic_type": "categorical", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 4, + "unique_ratio": 0.000111, + "example_values": [ + "unknown", + "failure", + "other", + "success" + ] + } + }, + { + "name": "y", + "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": 5.5e-05, + "example_values": [ + "no", + "yes" + ] + } + } + ], + "public_manifest": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/m8/bayesnet/bayesnet-m8-20260502_160947/public_gate/staged_input_manifest.json", + "train_csv": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/m8/bayesnet/bayesnet-m8-20260502_160947/staged/public/train.csv", + "val_csv": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/m8/bayesnet/bayesnet-m8-20260502_160947/staged/public/val.csv", + "test_csv": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/m8/bayesnet/bayesnet-m8-20260502_160947/staged/public/test.csv", + "features_json": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/m8/bayesnet/bayesnet-m8-20260502_160947/staged/public/staged_features.json", + "public_gate_report": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/m8/bayesnet/bayesnet-m8-20260502_160947/public_gate/public_gate_report.json" +} \ No newline at end of file diff --git a/timecost/m8/bayesnet/bayesnet-m8-20260502_160947/staged/public/staged_features.json b/timecost/m8/bayesnet/bayesnet-m8-20260502_160947/staged/public/staged_features.json new file mode 100644 index 0000000000000000000000000000000000000000..11323e8dc5c8a2eaafa8e404e60d3db7e244452a --- /dev/null +++ b/timecost/m8/bayesnet/bayesnet-m8-20260502_160947/staged/public/staged_features.json @@ -0,0 +1,87 @@ +[ + { + "feature_name": "age", + "data_type": "continuous", + "is_target": false + }, + { + "feature_name": "job", + "data_type": "categorical", + "is_target": false + }, + { + "feature_name": "marital", + "data_type": "categorical", + "is_target": false + }, + { + "feature_name": "education", + "data_type": "categorical", + "is_target": false + }, + { + "feature_name": "default", + "data_type": "binary", + "is_target": false + }, + { + "feature_name": "balance", + "data_type": "continuous", + "is_target": false + }, + { + "feature_name": "housing", + "data_type": "binary", + "is_target": false + }, + { + "feature_name": "loan", + "data_type": "binary", + "is_target": false + }, + { + "feature_name": "contact", + "data_type": "categorical", + "is_target": false + }, + { + "feature_name": "day", + "data_type": "continuous", + "is_target": false + }, + { + "feature_name": "month", + "data_type": "categorical", + "is_target": false + }, + { + "feature_name": "duration", + "data_type": "continuous", + "is_target": false + }, + { + "feature_name": "campaign", + "data_type": "continuous", + "is_target": false + }, + { + "feature_name": "pdays", + "data_type": "continuous", + "is_target": false + }, + { + "feature_name": "previous", + "data_type": "continuous", + "is_target": false + }, + { + "feature_name": "poutcome", + "data_type": "categorical", + "is_target": false + }, + { + "feature_name": "y", + "data_type": "binary", + "is_target": true + } +] \ No newline at end of file diff --git a/timecost/m8/bayesnet/bayesnet-m8-20260502_160947/staged/public/test.csv b/timecost/m8/bayesnet/bayesnet-m8-20260502_160947/staged/public/test.csv new file mode 100644 index 0000000000000000000000000000000000000000..e1c4866e541b88f8bcd3b88381c7e56d4df06443 --- /dev/null +++ b/timecost/m8/bayesnet/bayesnet-m8-20260502_160947/staged/public/test.csv @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:6221943e422e75c8317b79b7ef93e9cd01f61fdd8de6ce42909a8e4610966310 +size 370991 diff --git a/timecost/m8/bayesnet/bayesnet-m8-20260502_160947/staged/public/train.csv b/timecost/m8/bayesnet/bayesnet-m8-20260502_160947/staged/public/train.csv new file mode 100644 index 0000000000000000000000000000000000000000..fd7d8791840b6811b098820db4ed9e74cf5d627a --- /dev/null +++ b/timecost/m8/bayesnet/bayesnet-m8-20260502_160947/staged/public/train.csv @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:f9cbb71aa793de19869a138d41aea5808f772b31082741b185ffb8ca7b821833 +size 2964802 diff --git a/timecost/m8/bayesnet/bayesnet-m8-20260502_160947/staged/public/val.csv b/timecost/m8/bayesnet/bayesnet-m8-20260502_160947/staged/public/val.csv new file mode 100644 index 0000000000000000000000000000000000000000..09f0041420455c56eb1f79c62940d135e8bc6ea3 --- /dev/null +++ b/timecost/m8/bayesnet/bayesnet-m8-20260502_160947/staged/public/val.csv @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:5ee8612128aae92155906abc0fdc752ac24fd04d63c78c080c89e3900efe6525 +size 370535 diff --git a/timecost/m8/bayesnet/bayesnet-m8-20260502_160947/train_20260502_160947.log b/timecost/m8/bayesnet/bayesnet-m8-20260502_160947/train_20260502_160947.log new file mode 100644 index 0000000000000000000000000000000000000000..ee89073abfbb25577f1e96948d7e68ea61d7c843 --- /dev/null +++ b/timecost/m8/bayesnet/bayesnet-m8-20260502_160947/train_20260502_160947.log @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:79c8b4760cbfb5fcc21f6af595b51b78fba1a0989b80868b61d5d1f7f1cfe041 +size 3805 diff --git a/timecost/m8/ctgan/ctgan-m8-20260501_011445/_ctgan_generate.py b/timecost/m8/ctgan/ctgan-m8-20260501_011445/_ctgan_generate.py new file mode 100644 index 0000000000000000000000000000000000000000..c88a1da8b3ab3d318a694cb7f7fba311ffc058ab --- /dev/null +++ b/timecost/m8/ctgan/ctgan-m8-20260501_011445/_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-Benchmark-trainonly-v1/m8/ctgan/ctgan-m8-20260501_011445/models_300epochs/ctgan_300epochs.pt") +total = 36168 +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-Benchmark-trainonly-v1/m8/ctgan/ctgan-m8-20260501_011445/ctgan-m8-36168-20260501_012600.csv", index=False) +print("[CTGAN] Generated", total, "rows in", len(parts), "chunks ->", "/work/output-Benchmark-trainonly-v1/m8/ctgan/ctgan-m8-20260501_011445/ctgan-m8-36168-20260501_012600.csv") \ No newline at end of file diff --git a/timecost/m8/ctgan/ctgan-m8-20260501_011445/ctgan-m8-36168-20260501_012600.csv b/timecost/m8/ctgan/ctgan-m8-20260501_011445/ctgan-m8-36168-20260501_012600.csv new file mode 100644 index 0000000000000000000000000000000000000000..1b8941697f0cc6516d9057e2fd0f5762568fe4b3 --- /dev/null +++ b/timecost/m8/ctgan/ctgan-m8-20260501_011445/ctgan-m8-36168-20260501_012600.csv @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:affed8d8e31123fc53bcb1c1aa6ae3f61e63242e1afe98a8e75e50205da8e05f +size 2931388 diff --git a/timecost/m8/ctgan/ctgan-m8-20260501_011445/ctgan_metadata.json b/timecost/m8/ctgan/ctgan-m8-20260501_011445/ctgan_metadata.json new file mode 100644 index 0000000000000000000000000000000000000000..e4311b6e09b701b44e2d352b6d6f50ef5702793a --- /dev/null +++ b/timecost/m8/ctgan/ctgan-m8-20260501_011445/ctgan_metadata.json @@ -0,0 +1,72 @@ +{ + "columns": [ + { + "name": "age", + "type": "continuous" + }, + { + "name": "job", + "type": "categorical" + }, + { + "name": "marital", + "type": "categorical" + }, + { + "name": "education", + "type": "categorical" + }, + { + "name": "default", + "type": "categorical" + }, + { + "name": "balance", + "type": "continuous" + }, + { + "name": "housing", + "type": "categorical" + }, + { + "name": "loan", + "type": "categorical" + }, + { + "name": "contact", + "type": "categorical" + }, + { + "name": "day", + "type": "continuous" + }, + { + "name": "month", + "type": "categorical" + }, + { + "name": "duration", + "type": "continuous" + }, + { + "name": "campaign", + "type": "continuous" + }, + { + "name": "pdays", + "type": "continuous" + }, + { + "name": "previous", + "type": "continuous" + }, + { + "name": "poutcome", + "type": "categorical" + }, + { + "name": "y", + "type": "categorical" + } + ] +} \ No newline at end of file diff --git a/timecost/m8/ctgan/ctgan-m8-20260501_011445/gen_20260501_012600.log b/timecost/m8/ctgan/ctgan-m8-20260501_011445/gen_20260501_012600.log new file mode 100644 index 0000000000000000000000000000000000000000..b800177fd6813194b3c8fb58d380596a1aaa7210 --- /dev/null +++ b/timecost/m8/ctgan/ctgan-m8-20260501_011445/gen_20260501_012600.log @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:ccb815d03d2b0ebe16d9efdbeb6e8eab509ea50d98d25d98556b037cd198ba59 +size 562 diff --git a/timecost/m8/ctgan/ctgan-m8-20260501_011445/input_snapshot.json b/timecost/m8/ctgan/ctgan-m8-20260501_011445/input_snapshot.json new file mode 100644 index 0000000000000000000000000000000000000000..4d68c64fa62a61ed4f7d248d9cde8b58f20aca12 --- /dev/null +++ b/timecost/m8/ctgan/ctgan-m8-20260501_011445/input_snapshot.json @@ -0,0 +1,36 @@ +{ + "dataset_id": "m8", + "model": "ctgan", + "inputs": { + "train_csv": { + "path": "/data/jialinzhang/SynthesizePipeline-server/DatasetNew/m8/m8-train.csv", + "exists": true, + "size": 2964802, + "sha256": "f9cbb71aa793de19869a138d41aea5808f772b31082741b185ffb8ca7b821833" + }, + "val_csv": { + "path": "/data/jialinzhang/SynthesizePipeline-server/DatasetNew/m8/m8-val.csv", + "exists": true, + "size": 370535, + "sha256": "5ee8612128aae92155906abc0fdc752ac24fd04d63c78c080c89e3900efe6525" + }, + "test_csv": { + "path": "/data/jialinzhang/SynthesizePipeline-server/DatasetNew/m8/m8-test.csv", + "exists": true, + "size": 370991, + "sha256": "6221943e422e75c8317b79b7ef93e9cd01f61fdd8de6ce42909a8e4610966310" + }, + "profile_json": { + "path": "/data/jialinzhang/SynthesizePipeline-server/DatasetNew/artifacts/data_core/tabular/m8/m8-dataset_profile.json", + "exists": true, + "size": 6553, + "sha256": "44f883858641584035a0a8859cb95dbcd3a023c03cbc76931aadfc4c70ef871f" + }, + "contract_json": { + "path": "/data/jialinzhang/SynthesizePipeline-server/DatasetNew/artifacts/data_core/tabular/m8/m8-dataset_contract_v1.json", + "exists": true, + "size": 8214, + "sha256": "e76df134780ec9b6c6c625a54e5d0c1935e9f4a7d09320ad19279a0492438d92" + } + } +} \ No newline at end of file diff --git a/timecost/m8/ctgan/ctgan-m8-20260501_011445/models_300epochs/ctgan_300epochs.pt b/timecost/m8/ctgan/ctgan-m8-20260501_011445/models_300epochs/ctgan_300epochs.pt new file mode 100644 index 0000000000000000000000000000000000000000..7bb7fb7864264183865fba6dc459901fda3c0fd0 --- /dev/null +++ b/timecost/m8/ctgan/ctgan-m8-20260501_011445/models_300epochs/ctgan_300epochs.pt @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:2b9e4e9a0f8e3c300c849a62387a02e3b2406c8ec6f63b4f19997a1ea06eb840 +size 4538659 diff --git a/timecost/m8/ctgan/ctgan-m8-20260501_011445/models_300epochs/train_20260501_011446.log b/timecost/m8/ctgan/ctgan-m8-20260501_011445/models_300epochs/train_20260501_011446.log new file mode 100644 index 0000000000000000000000000000000000000000..59bd3784eda2565385c7371e4efbd241205e716f --- /dev/null +++ b/timecost/m8/ctgan/ctgan-m8-20260501_011445/models_300epochs/train_20260501_011446.log @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:65471f9153a0b6311f61f8d0eb68032d8ee4d40e666619469f31d8bf679be71c +size 3337 diff --git a/timecost/m8/ctgan/ctgan-m8-20260501_011445/public_gate/normalized_schema_snapshot.json b/timecost/m8/ctgan/ctgan-m8-20260501_011445/public_gate/normalized_schema_snapshot.json new file mode 100644 index 0000000000000000000000000000000000000000..5e616edd2b7924c5e07f02ccbbb842529655f52a --- /dev/null +++ b/timecost/m8/ctgan/ctgan-m8-20260501_011445/public_gate/normalized_schema_snapshot.json @@ -0,0 +1,346 @@ +{ + "dataset_id": "m8", + "target_column": "y", + "task_type": "classification", + "columns": [ + { + "name": "age", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 76, + "unique_ratio": 0.002101, + "example_values": [ + "40", + "52", + "31", + "51", + "44" + ] + } + }, + { + "name": "job", + "role": "feature", + "semantic_type": "categorical", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 12, + "unique_ratio": 0.000332, + "example_values": [ + "admin.", + "technician", + "entrepreneur", + "blue-collar", + "services" + ] + } + }, + { + "name": "marital", + "role": "feature", + "semantic_type": "categorical", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 3, + "unique_ratio": 8.3e-05, + "example_values": [ + "single", + "married", + "divorced" + ] + } + }, + { + "name": "education", + "role": "feature", + "semantic_type": "categorical", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 4, + "unique_ratio": 0.000111, + "example_values": [ + "secondary", + "tertiary", + "primary", + "unknown" + ] + } + }, + { + "name": "default", + "role": "feature", + "semantic_type": "boolean", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 2, + "unique_ratio": 5.5e-05, + "example_values": [ + "no", + "yes" + ] + } + }, + { + "name": "balance", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 6604, + "unique_ratio": 0.182592, + "example_values": [ + "419", + "31", + "7567", + "315", + "737" + ] + } + }, + { + "name": "housing", + "role": "feature", + "semantic_type": "boolean", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 2, + "unique_ratio": 5.5e-05, + "example_values": [ + "no", + "yes" + ] + } + }, + { + "name": "loan", + "role": "feature", + "semantic_type": "boolean", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 2, + "unique_ratio": 5.5e-05, + "example_values": [ + "yes", + "no" + ] + } + }, + { + "name": "contact", + "role": "feature", + "semantic_type": "categorical", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 3, + "unique_ratio": 8.3e-05, + "example_values": [ + "cellular", + "unknown", + "telephone" + ] + } + }, + { + "name": "day", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 31, + "unique_ratio": 0.000857, + "example_values": [ + "28", + "7", + "11", + "12", + "14" + ] + } + }, + { + "name": "month", + "role": "feature", + "semantic_type": "categorical", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 12, + "unique_ratio": 0.000332, + "example_values": [ + "jul", + "may", + "aug", + "oct", + "feb" + ] + } + }, + { + "name": "duration", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 1507, + "unique_ratio": 0.041667, + "example_values": [ + "100", + "120", + "70", + "291", + "102" + ] + } + }, + { + "name": "campaign", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 47, + "unique_ratio": 0.001299, + "example_values": [ + "16", + "1", + "2", + "5", + "4" + ] + } + }, + { + "name": "pdays", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 524, + "unique_ratio": 0.014488, + "example_values": [ + "-1", + "91", + "365", + "189", + "117" + ] + } + }, + { + "name": "previous", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 38, + "unique_ratio": 0.001051, + "example_values": [ + "0", + "4", + "1", + "2", + "3" + ] + } + }, + { + "name": "poutcome", + "role": "feature", + "semantic_type": "categorical", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 4, + "unique_ratio": 0.000111, + "example_values": [ + "unknown", + "failure", + "other", + "success" + ] + } + }, + { + "name": "y", + "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": 5.5e-05, + "example_values": [ + "no", + "yes" + ] + } + } + ] +} \ No newline at end of file diff --git a/timecost/m8/ctgan/ctgan-m8-20260501_011445/public_gate/public_gate_report.json b/timecost/m8/ctgan/ctgan-m8-20260501_011445/public_gate/public_gate_report.json new file mode 100644 index 0000000000000000000000000000000000000000..318ead0018618096d718d3ec1140561db7e0a70f --- /dev/null +++ b/timecost/m8/ctgan/ctgan-m8-20260501_011445/public_gate/public_gate_report.json @@ -0,0 +1,37 @@ +{ + "dataset_id": "m8", + "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": "y", + "task_type": "classification", + "input_splits": { + "train": "/data/jialinzhang/SynthesizePipeline-server/DatasetNew/m8/m8-train.csv", + "val": "/data/jialinzhang/SynthesizePipeline-server/DatasetNew/m8/m8-val.csv", + "test": "/data/jialinzhang/SynthesizePipeline-server/DatasetNew/m8/m8-test.csv" + } +} \ No newline at end of file diff --git a/timecost/m8/ctgan/ctgan-m8-20260501_011445/public_gate/staged_input_manifest.json b/timecost/m8/ctgan/ctgan-m8-20260501_011445/public_gate/staged_input_manifest.json new file mode 100644 index 0000000000000000000000000000000000000000..2147dfeb95890451943401e9a96376c037d1cd42 --- /dev/null +++ b/timecost/m8/ctgan/ctgan-m8-20260501_011445/public_gate/staged_input_manifest.json @@ -0,0 +1,351 @@ +{ + "dataset_id": "m8", + "target_column": "y", + "task_type": "classification", + "train_csv": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/m8/ctgan/ctgan-m8-20260501_011445/staged/public/train.csv", + "val_csv": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/m8/ctgan/ctgan-m8-20260501_011445/staged/public/val.csv", + "test_csv": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/m8/ctgan/ctgan-m8-20260501_011445/staged/public/test.csv", + "features_json": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/m8/ctgan/ctgan-m8-20260501_011445/staged/public/staged_features.json", + "public_gate_report": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/m8/ctgan/ctgan-m8-20260501_011445/public_gate/public_gate_report.json", + "column_schema": [ + { + "name": "age", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 76, + "unique_ratio": 0.002101, + "example_values": [ + "40", + "52", + "31", + "51", + "44" + ] + } + }, + { + "name": "job", + "role": "feature", + "semantic_type": "categorical", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 12, + "unique_ratio": 0.000332, + "example_values": [ + "admin.", + "technician", + "entrepreneur", + "blue-collar", + "services" + ] + } + }, + { + "name": "marital", + "role": "feature", + "semantic_type": "categorical", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 3, + "unique_ratio": 8.3e-05, + "example_values": [ + "single", + "married", + "divorced" + ] + } + }, + { + "name": "education", + "role": "feature", + "semantic_type": "categorical", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 4, + "unique_ratio": 0.000111, + "example_values": [ + "secondary", + "tertiary", + "primary", + "unknown" + ] + } + }, + { + "name": "default", + "role": "feature", + "semantic_type": "boolean", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 2, + "unique_ratio": 5.5e-05, + "example_values": [ + "no", + "yes" + ] + } + }, + { + "name": "balance", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 6604, + "unique_ratio": 0.182592, + "example_values": [ + "419", + "31", + "7567", + "315", + "737" + ] + } + }, + { + "name": "housing", + "role": "feature", + "semantic_type": "boolean", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 2, + "unique_ratio": 5.5e-05, + "example_values": [ + "no", + "yes" + ] + } + }, + { + "name": "loan", + "role": "feature", + "semantic_type": "boolean", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 2, + "unique_ratio": 5.5e-05, + "example_values": [ + "yes", + "no" + ] + } + }, + { + "name": "contact", + "role": "feature", + "semantic_type": "categorical", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 3, + "unique_ratio": 8.3e-05, + "example_values": [ + "cellular", + "unknown", + "telephone" + ] + } + }, + { + "name": "day", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 31, + "unique_ratio": 0.000857, + "example_values": [ + "28", + "7", + "11", + "12", + "14" + ] + } + }, + { + "name": "month", + "role": "feature", + "semantic_type": "categorical", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 12, + "unique_ratio": 0.000332, + "example_values": [ + "jul", + "may", + "aug", + "oct", + "feb" + ] + } + }, + { + "name": "duration", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 1507, + "unique_ratio": 0.041667, + "example_values": [ + "100", + "120", + "70", + "291", + "102" + ] + } + }, + { + "name": "campaign", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 47, + "unique_ratio": 0.001299, + "example_values": [ + "16", + "1", + "2", + "5", + "4" + ] + } + }, + { + "name": "pdays", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 524, + "unique_ratio": 0.014488, + "example_values": [ + "-1", + "91", + "365", + "189", + "117" + ] + } + }, + { + "name": "previous", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 38, + "unique_ratio": 0.001051, + "example_values": [ + "0", + "4", + "1", + "2", + "3" + ] + } + }, + { + "name": "poutcome", + "role": "feature", + "semantic_type": "categorical", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 4, + "unique_ratio": 0.000111, + "example_values": [ + "unknown", + "failure", + "other", + "success" + ] + } + }, + { + "name": "y", + "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": 5.5e-05, + "example_values": [ + "no", + "yes" + ] + } + } + ] +} \ No newline at end of file diff --git a/timecost/m8/ctgan/ctgan-m8-20260501_011445/runtime_result.json b/timecost/m8/ctgan/ctgan-m8-20260501_011445/runtime_result.json new file mode 100644 index 0000000000000000000000000000000000000000..fa7a9b138d1a0c2e2445aeed6bdc1d06e42df3f1 --- /dev/null +++ b/timecost/m8/ctgan/ctgan-m8-20260501_011445/runtime_result.json @@ -0,0 +1,27 @@ +{ + "dataset_id": "m8", + "model": "ctgan", + "run_id": "ctgan-m8-20260501_011445", + "public_gate_status": "pass", + "adapter_ready_status": "pass", + "train_status": "success", + "generate_status": "success", + "reason_code": null, + "reason_detail": null, + "artifacts": { + "synthetic_csv": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/m8/ctgan/ctgan-m8-20260501_011445/ctgan-m8-36168-20260501_012600.csv", + "model_path": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/m8/ctgan/ctgan-m8-20260501_011445/models_300epochs/ctgan_300epochs.pt" + }, + "timings": { + "train": { + "started_at": "2026-05-01T01:14:46", + "ended_at": "2026-05-01T01:26:00", + "duration_sec": 674.825 + }, + "generate": { + "started_at": "2026-05-01T01:26:00", + "ended_at": "2026-05-01T01:26:06", + "duration_sec": 5.889 + } + } +} \ No newline at end of file diff --git a/timecost/m8/ctgan/ctgan-m8-20260501_011445/staged/ctgan/adapter_report.json b/timecost/m8/ctgan/ctgan-m8-20260501_011445/staged/ctgan/adapter_report.json new file mode 100644 index 0000000000000000000000000000000000000000..458bdbc33b9a82053fa916d69bb99450968ab5f9 --- /dev/null +++ b/timecost/m8/ctgan/ctgan-m8-20260501_011445/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-Benchmark-trainonly-v1/m8/ctgan/ctgan-m8-20260501_011445/staged/ctgan/model_input_manifest.json" +} \ No newline at end of file diff --git a/timecost/m8/ctgan/ctgan-m8-20260501_011445/staged/ctgan/adapter_transforms_applied.json b/timecost/m8/ctgan/ctgan-m8-20260501_011445/staged/ctgan/adapter_transforms_applied.json new file mode 100644 index 0000000000000000000000000000000000000000..0637a088a01e8ddab3bf3fa98dbe804cbde1a0dc --- /dev/null +++ b/timecost/m8/ctgan/ctgan-m8-20260501_011445/staged/ctgan/adapter_transforms_applied.json @@ -0,0 +1 @@ +[] \ No newline at end of file diff --git a/timecost/m8/ctgan/ctgan-m8-20260501_011445/staged/ctgan/model_input_manifest.json b/timecost/m8/ctgan/ctgan-m8-20260501_011445/staged/ctgan/model_input_manifest.json new file mode 100644 index 0000000000000000000000000000000000000000..126c7e9273dc7c9335a5c6d9f0a313f54eb6ab8d --- /dev/null +++ b/timecost/m8/ctgan/ctgan-m8-20260501_011445/staged/ctgan/model_input_manifest.json @@ -0,0 +1,353 @@ +{ + "dataset_id": "m8", + "model": "ctgan", + "target_column": "y", + "task_type": "classification", + "column_schema": [ + { + "name": "age", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 76, + "unique_ratio": 0.002101, + "example_values": [ + "40", + "52", + "31", + "51", + "44" + ] + } + }, + { + "name": "job", + "role": "feature", + "semantic_type": "categorical", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 12, + "unique_ratio": 0.000332, + "example_values": [ + "admin.", + "technician", + "entrepreneur", + "blue-collar", + "services" + ] + } + }, + { + "name": "marital", + "role": "feature", + "semantic_type": "categorical", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 3, + "unique_ratio": 8.3e-05, + "example_values": [ + "single", + "married", + "divorced" + ] + } + }, + { + "name": "education", + "role": "feature", + "semantic_type": "categorical", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 4, + "unique_ratio": 0.000111, + "example_values": [ + "secondary", + "tertiary", + "primary", + "unknown" + ] + } + }, + { + "name": "default", + "role": "feature", + "semantic_type": "boolean", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 2, + "unique_ratio": 5.5e-05, + "example_values": [ + "no", + "yes" + ] + } + }, + { + "name": "balance", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 6604, + "unique_ratio": 0.182592, + "example_values": [ + "419", + "31", + "7567", + "315", + "737" + ] + } + }, + { + "name": "housing", + "role": "feature", + "semantic_type": "boolean", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 2, + "unique_ratio": 5.5e-05, + "example_values": [ + "no", + "yes" + ] + } + }, + { + "name": "loan", + "role": "feature", + "semantic_type": "boolean", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 2, + "unique_ratio": 5.5e-05, + "example_values": [ + "yes", + "no" + ] + } + }, + { + "name": "contact", + "role": "feature", + "semantic_type": "categorical", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 3, + "unique_ratio": 8.3e-05, + "example_values": [ + "cellular", + "unknown", + "telephone" + ] + } + }, + { + "name": "day", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 31, + "unique_ratio": 0.000857, + "example_values": [ + "28", + "7", + "11", + "12", + "14" + ] + } + }, + { + "name": "month", + "role": "feature", + "semantic_type": "categorical", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 12, + "unique_ratio": 0.000332, + "example_values": [ + "jul", + "may", + "aug", + "oct", + "feb" + ] + } + }, + { + "name": "duration", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 1507, + "unique_ratio": 0.041667, + "example_values": [ + "100", + "120", + "70", + "291", + "102" + ] + } + }, + { + "name": "campaign", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 47, + "unique_ratio": 0.001299, + "example_values": [ + "16", + "1", + "2", + "5", + "4" + ] + } + }, + { + "name": "pdays", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 524, + "unique_ratio": 0.014488, + "example_values": [ + "-1", + "91", + "365", + "189", + "117" + ] + } + }, + { + "name": "previous", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 38, + "unique_ratio": 0.001051, + "example_values": [ + "0", + "4", + "1", + "2", + "3" + ] + } + }, + { + "name": "poutcome", + "role": "feature", + "semantic_type": "categorical", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 4, + "unique_ratio": 0.000111, + "example_values": [ + "unknown", + "failure", + "other", + "success" + ] + } + }, + { + "name": "y", + "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": 5.5e-05, + "example_values": [ + "no", + "yes" + ] + } + } + ], + "public_manifest": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/m8/ctgan/ctgan-m8-20260501_011445/public_gate/staged_input_manifest.json", + "train_csv": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/m8/ctgan/ctgan-m8-20260501_011445/staged/public/train.csv", + "val_csv": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/m8/ctgan/ctgan-m8-20260501_011445/staged/public/val.csv", + "test_csv": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/m8/ctgan/ctgan-m8-20260501_011445/staged/public/test.csv", + "features_json": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/m8/ctgan/ctgan-m8-20260501_011445/staged/public/staged_features.json", + "public_gate_report": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/m8/ctgan/ctgan-m8-20260501_011445/public_gate/public_gate_report.json" +} \ No newline at end of file diff --git a/timecost/m8/ctgan/ctgan-m8-20260501_011445/staged/public/staged_features.json b/timecost/m8/ctgan/ctgan-m8-20260501_011445/staged/public/staged_features.json new file mode 100644 index 0000000000000000000000000000000000000000..11323e8dc5c8a2eaafa8e404e60d3db7e244452a --- /dev/null +++ b/timecost/m8/ctgan/ctgan-m8-20260501_011445/staged/public/staged_features.json @@ -0,0 +1,87 @@ +[ + { + "feature_name": "age", + "data_type": "continuous", + "is_target": false + }, + { + "feature_name": "job", + "data_type": "categorical", + "is_target": false + }, + { + "feature_name": "marital", + "data_type": "categorical", + "is_target": false + }, + { + "feature_name": "education", + "data_type": "categorical", + "is_target": false + }, + { + "feature_name": "default", + "data_type": "binary", + "is_target": false + }, + { + "feature_name": "balance", + "data_type": "continuous", + "is_target": false + }, + { + "feature_name": "housing", + "data_type": "binary", + "is_target": false + }, + { + "feature_name": "loan", + "data_type": "binary", + "is_target": false + }, + { + "feature_name": "contact", + "data_type": "categorical", + "is_target": false + }, + { + "feature_name": "day", + "data_type": "continuous", + "is_target": false + }, + { + "feature_name": "month", + "data_type": "categorical", + "is_target": false + }, + { + "feature_name": "duration", + "data_type": "continuous", + "is_target": false + }, + { + "feature_name": "campaign", + "data_type": "continuous", + "is_target": false + }, + { + "feature_name": "pdays", + "data_type": "continuous", + "is_target": false + }, + { + "feature_name": "previous", + "data_type": "continuous", + "is_target": false + }, + { + "feature_name": "poutcome", + "data_type": "categorical", + "is_target": false + }, + { + "feature_name": "y", + "data_type": "binary", + "is_target": true + } +] \ No newline at end of file diff --git a/timecost/m8/ctgan/ctgan-m8-20260501_011445/staged/public/test.csv b/timecost/m8/ctgan/ctgan-m8-20260501_011445/staged/public/test.csv new file mode 100644 index 0000000000000000000000000000000000000000..e1c4866e541b88f8bcd3b88381c7e56d4df06443 --- /dev/null +++ b/timecost/m8/ctgan/ctgan-m8-20260501_011445/staged/public/test.csv @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:6221943e422e75c8317b79b7ef93e9cd01f61fdd8de6ce42909a8e4610966310 +size 370991 diff --git a/timecost/m8/ctgan/ctgan-m8-20260501_011445/staged/public/train.csv b/timecost/m8/ctgan/ctgan-m8-20260501_011445/staged/public/train.csv new file mode 100644 index 0000000000000000000000000000000000000000..fd7d8791840b6811b098820db4ed9e74cf5d627a --- /dev/null +++ b/timecost/m8/ctgan/ctgan-m8-20260501_011445/staged/public/train.csv @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:f9cbb71aa793de19869a138d41aea5808f772b31082741b185ffb8ca7b821833 +size 2964802 diff --git a/timecost/m8/ctgan/ctgan-m8-20260501_011445/staged/public/val.csv b/timecost/m8/ctgan/ctgan-m8-20260501_011445/staged/public/val.csv new file mode 100644 index 0000000000000000000000000000000000000000..09f0041420455c56eb1f79c62940d135e8bc6ea3 --- /dev/null +++ b/timecost/m8/ctgan/ctgan-m8-20260501_011445/staged/public/val.csv @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:5ee8612128aae92155906abc0fdc752ac24fd04d63c78c080c89e3900efe6525 +size 370535 diff --git a/timecost/m8/forestdiffusion/forest-m8-20260506_045103/_fd_X_host.npy b/timecost/m8/forestdiffusion/forest-m8-20260506_045103/_fd_X_host.npy new file mode 100644 index 0000000000000000000000000000000000000000..edc15f1ab2ac289d7b316a7eb8e41a86a10c1f7a --- /dev/null +++ b/timecost/m8/forestdiffusion/forest-m8-20260506_045103/_fd_X_host.npy @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:19689a29b7db49f458dde36a8be7e74ee096d0134dfc6d01cb0425e80ac18ad2 +size 69760 diff --git a/timecost/m8/forestdiffusion/forest-m8-20260506_045103/_fd_gen.py b/timecost/m8/forestdiffusion/forest-m8-20260506_045103/_fd_gen.py new file mode 100644 index 0000000000000000000000000000000000000000..4f7a9824d9a790b6a76c5ed76527489ddf327fa7 --- /dev/null +++ b/timecost/m8/forestdiffusion/forest-m8-20260506_045103/_fd_gen.py @@ -0,0 +1,8 @@ + +import joblib, pandas as pd +m, meta = joblib.load(r'/work/output-Benchmark-trainonly-v1/m8/forestdiffusion/forest-m8-20260506_045103/forestdiffusion_model.joblib') +# generate:batch_size 为样本数 +arr = m.generate(batch_size=int(36168)) +df = pd.DataFrame(arr, columns=meta["column_names"]) +df.to_csv(r'/work/output-Benchmark-trainonly-v1/m8/forestdiffusion/forest-m8-20260506_045103/forest-m8-36168-20260506_045105.csv', index=False) +print("saved", len(df)) diff --git a/timecost/m8/forestdiffusion/forest-m8-20260506_045103/_fd_meta_host.json b/timecost/m8/forestdiffusion/forest-m8-20260506_045103/_fd_meta_host.json new file mode 100644 index 0000000000000000000000000000000000000000..0eaf90aa76960829366f6a0c7bf34e8ee4b6ed8a --- /dev/null +++ b/timecost/m8/forestdiffusion/forest-m8-20260506_045103/_fd_meta_host.json @@ -0,0 +1 @@ +{"column_names": ["age", "job", "marital", "education", "default", "balance", "housing", "loan", "contact", "day", "month", "duration", "campaign", "pdays", "previous", "poutcome", "y"], "cat_indexes": [1, 2, 3, 4, 6, 7, 8, 10, 15]} \ No newline at end of file diff --git a/timecost/m8/forestdiffusion/forest-m8-20260506_045103/_fd_train.py b/timecost/m8/forestdiffusion/forest-m8-20260506_045103/_fd_train.py new file mode 100644 index 0000000000000000000000000000000000000000..a7bf1ad5b84180a21592bbaa81da0b6384970bfe --- /dev/null +++ b/timecost/m8/forestdiffusion/forest-m8-20260506_045103/_fd_train.py @@ -0,0 +1,36 @@ + +import os, shutil, json +with open('/tmp/pgrep', 'w') as _f: + _f.write("#!/usr/bin/env python3\n") + _f.write("import subprocess, sys\n") + _f.write("ppid = sys.argv[-1]\n") + _f.write("out = subprocess.check_output(['ps', '-o', 'pid=', '--ppid', str(ppid)], text=True)\n") + _f.write("print(out, end='')\n") +os.chmod('/tmp/pgrep', 0o755) +os.environ['PATH'] = '/tmp:' + os.environ.get('PATH', '') +shutil.copy(r'/work/output-Benchmark-trainonly-v1/m8/forestdiffusion/forest-m8-20260506_045103/_fd_X_host.npy', '/tmp/fd_X.npy') +with open(r'/work/output-Benchmark-trainonly-v1/m8/forestdiffusion/forest-m8-20260506_045103/_fd_meta_host.json') as f: + open('/tmp/fd_meta.json','w').write(f.read()) + +import numpy as np, joblib, json, os +from ForestDiffusion import ForestDiffusionModel +X = np.load("/tmp/fd_X.npy") +with open("/tmp/fd_meta.json") as f: + meta = json.load(f) +cat_indexes = meta["cat_indexes"] +print( + "[ForestDiffusion] train config: " + f"rows={X.shape[0]} cols={X.shape[1]} n_t=2 " + f"n_estimators=1 duplicate_K=1 n_jobs=1 " + f"max_depth=2 xgb_verbosity=0 xgb_nthread=1", + flush=True, +) +m = ForestDiffusionModel( + X, n_t=2, n_estimators=1, duplicate_K=1, n_jobs=1, + model="xgboost", max_depth=2, tree_method="hist", cat_indexes=cat_indexes, + verbosity=0, nthread=1, +) +joblib.dump((m, meta), "/tmp/fd_model.joblib") +print("ForestDiffusion train OK") + +shutil.copy('/tmp/fd_model.joblib', r'/work/output-Benchmark-trainonly-v1/m8/forestdiffusion/forest-m8-20260506_045103/forestdiffusion_model.joblib') diff --git a/timecost/m8/forestdiffusion/forest-m8-20260506_045103/forest-m8-36168-20260506_045105.csv b/timecost/m8/forestdiffusion/forest-m8-20260506_045103/forest-m8-36168-20260506_045105.csv new file mode 100644 index 0000000000000000000000000000000000000000..1e30c1ec44403df4e6f7b3d95b12be578a14840b --- /dev/null +++ b/timecost/m8/forestdiffusion/forest-m8-20260506_045103/forest-m8-36168-20260506_045105.csv @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:bf142eb2539fa3e7d6597b66b92d4432dcfd752ec97da6ee2731901a5d941258 +size 4953970 diff --git a/timecost/m8/forestdiffusion/forest-m8-20260506_045103/forestdiffusion_model.joblib b/timecost/m8/forestdiffusion/forest-m8-20260506_045103/forestdiffusion_model.joblib new file mode 100644 index 0000000000000000000000000000000000000000..cacc8913290a2169f9c66335d845f87e70bee969 --- /dev/null +++ b/timecost/m8/forestdiffusion/forest-m8-20260506_045103/forestdiffusion_model.joblib @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:f8e8d50cb17cc21e98475209d4e80427db8a56fcd28ed90a24382abfea909ad7 +size 443637 diff --git a/timecost/m8/forestdiffusion/forest-m8-20260506_045103/gen_20260506_045105.log b/timecost/m8/forestdiffusion/forest-m8-20260506_045103/gen_20260506_045105.log new file mode 100644 index 0000000000000000000000000000000000000000..066b3954bc03c682a65697365ab33fcbc7b85d37 --- /dev/null +++ b/timecost/m8/forestdiffusion/forest-m8-20260506_045103/gen_20260506_045105.log @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:b80ba12b25116c990e84eae2654b82c6c5771e846b5a71d7cacdfe498b657cfa +size 295 diff --git a/timecost/m8/forestdiffusion/forest-m8-20260506_045103/input_snapshot.json b/timecost/m8/forestdiffusion/forest-m8-20260506_045103/input_snapshot.json new file mode 100644 index 0000000000000000000000000000000000000000..8ba0d11191c9dcbcf06fc13256cf789d71452b89 --- /dev/null +++ b/timecost/m8/forestdiffusion/forest-m8-20260506_045103/input_snapshot.json @@ -0,0 +1,36 @@ +{ + "dataset_id": "m8", + "model": "forestdiffusion", + "inputs": { + "train_csv": { + "path": "/data/jialinzhang/SynthesizePipeline-server/DatasetNew/m8/m8-train.csv", + "exists": true, + "size": 2964802, + "sha256": "f9cbb71aa793de19869a138d41aea5808f772b31082741b185ffb8ca7b821833" + }, + "val_csv": { + "path": "/data/jialinzhang/SynthesizePipeline-server/DatasetNew/m8/m8-val.csv", + "exists": true, + "size": 370535, + "sha256": "5ee8612128aae92155906abc0fdc752ac24fd04d63c78c080c89e3900efe6525" + }, + "test_csv": { + "path": "/data/jialinzhang/SynthesizePipeline-server/DatasetNew/m8/m8-test.csv", + "exists": true, + "size": 370991, + "sha256": "6221943e422e75c8317b79b7ef93e9cd01f61fdd8de6ce42909a8e4610966310" + }, + "profile_json": { + "path": "/data/jialinzhang/SynthesizePipeline-server/DatasetNew/artifacts/data_core/tabular/m8/m8-dataset_profile.json", + "exists": true, + "size": 6553, + "sha256": "44f883858641584035a0a8859cb95dbcd3a023c03cbc76931aadfc4c70ef871f" + }, + "contract_json": { + "path": "/data/jialinzhang/SynthesizePipeline-server/DatasetNew/artifacts/data_core/tabular/m8/m8-dataset_contract_v1.json", + "exists": true, + "size": 8214, + "sha256": "e76df134780ec9b6c6c625a54e5d0c1935e9f4a7d09320ad19279a0492438d92" + } + } +} \ No newline at end of file diff --git a/timecost/m8/forestdiffusion/forest-m8-20260506_045103/models_fd/model.joblib b/timecost/m8/forestdiffusion/forest-m8-20260506_045103/models_fd/model.joblib new file mode 100644 index 0000000000000000000000000000000000000000..cacc8913290a2169f9c66335d845f87e70bee969 --- /dev/null +++ b/timecost/m8/forestdiffusion/forest-m8-20260506_045103/models_fd/model.joblib @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:f8e8d50cb17cc21e98475209d4e80427db8a56fcd28ed90a24382abfea909ad7 +size 443637 diff --git a/timecost/m8/forestdiffusion/forest-m8-20260506_045103/public_gate/normalized_schema_snapshot.json b/timecost/m8/forestdiffusion/forest-m8-20260506_045103/public_gate/normalized_schema_snapshot.json new file mode 100644 index 0000000000000000000000000000000000000000..5e616edd2b7924c5e07f02ccbbb842529655f52a --- /dev/null +++ b/timecost/m8/forestdiffusion/forest-m8-20260506_045103/public_gate/normalized_schema_snapshot.json @@ -0,0 +1,346 @@ +{ + "dataset_id": "m8", + "target_column": "y", + "task_type": "classification", + "columns": [ + { + "name": "age", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 76, + "unique_ratio": 0.002101, + "example_values": [ + "40", + "52", + "31", + "51", + "44" + ] + } + }, + { + "name": "job", + "role": "feature", + "semantic_type": "categorical", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 12, + "unique_ratio": 0.000332, + "example_values": [ + "admin.", + "technician", + "entrepreneur", + "blue-collar", + "services" + ] + } + }, + { + "name": "marital", + "role": "feature", + "semantic_type": "categorical", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 3, + "unique_ratio": 8.3e-05, + "example_values": [ + "single", + "married", + "divorced" + ] + } + }, + { + "name": "education", + "role": "feature", + "semantic_type": "categorical", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 4, + "unique_ratio": 0.000111, + "example_values": [ + "secondary", + "tertiary", + "primary", + "unknown" + ] + } + }, + { + "name": "default", + "role": "feature", + "semantic_type": "boolean", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 2, + "unique_ratio": 5.5e-05, + "example_values": [ + "no", + "yes" + ] + } + }, + { + "name": "balance", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 6604, + "unique_ratio": 0.182592, + "example_values": [ + "419", + "31", + "7567", + "315", + "737" + ] + } + }, + { + "name": "housing", + "role": "feature", + "semantic_type": "boolean", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 2, + "unique_ratio": 5.5e-05, + "example_values": [ + "no", + "yes" + ] + } + }, + { + "name": "loan", + "role": "feature", + "semantic_type": "boolean", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 2, + "unique_ratio": 5.5e-05, + "example_values": [ + "yes", + "no" + ] + } + }, + { + "name": "contact", + "role": "feature", + "semantic_type": "categorical", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 3, + "unique_ratio": 8.3e-05, + "example_values": [ + "cellular", + "unknown", + "telephone" + ] + } + }, + { + "name": "day", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 31, + "unique_ratio": 0.000857, + "example_values": [ + "28", + "7", + "11", + "12", + "14" + ] + } + }, + { + "name": "month", + "role": "feature", + "semantic_type": "categorical", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 12, + "unique_ratio": 0.000332, + "example_values": [ + "jul", + "may", + "aug", + "oct", + "feb" + ] + } + }, + { + "name": "duration", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 1507, + "unique_ratio": 0.041667, + "example_values": [ + "100", + "120", + "70", + "291", + "102" + ] + } + }, + { + "name": "campaign", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 47, + "unique_ratio": 0.001299, + "example_values": [ + "16", + "1", + "2", + "5", + "4" + ] + } + }, + { + "name": "pdays", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 524, + "unique_ratio": 0.014488, + "example_values": [ + "-1", + "91", + "365", + "189", + "117" + ] + } + }, + { + "name": "previous", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 38, + "unique_ratio": 0.001051, + "example_values": [ + "0", + "4", + "1", + "2", + "3" + ] + } + }, + { + "name": "poutcome", + "role": "feature", + "semantic_type": "categorical", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 4, + "unique_ratio": 0.000111, + "example_values": [ + "unknown", + "failure", + "other", + "success" + ] + } + }, + { + "name": "y", + "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": 5.5e-05, + "example_values": [ + "no", + "yes" + ] + } + } + ] +} \ No newline at end of file diff --git a/timecost/m8/forestdiffusion/forest-m8-20260506_045103/public_gate/public_gate_report.json b/timecost/m8/forestdiffusion/forest-m8-20260506_045103/public_gate/public_gate_report.json new file mode 100644 index 0000000000000000000000000000000000000000..318ead0018618096d718d3ec1140561db7e0a70f --- /dev/null +++ b/timecost/m8/forestdiffusion/forest-m8-20260506_045103/public_gate/public_gate_report.json @@ -0,0 +1,37 @@ +{ + "dataset_id": "m8", + "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": "y", + "task_type": "classification", + "input_splits": { + "train": "/data/jialinzhang/SynthesizePipeline-server/DatasetNew/m8/m8-train.csv", + "val": "/data/jialinzhang/SynthesizePipeline-server/DatasetNew/m8/m8-val.csv", + "test": "/data/jialinzhang/SynthesizePipeline-server/DatasetNew/m8/m8-test.csv" + } +} \ No newline at end of file diff --git a/timecost/m8/forestdiffusion/forest-m8-20260506_045103/public_gate/staged_input_manifest.json b/timecost/m8/forestdiffusion/forest-m8-20260506_045103/public_gate/staged_input_manifest.json new file mode 100644 index 0000000000000000000000000000000000000000..e4a69cdac5901635e05391e48c27623cf32a9439 --- /dev/null +++ b/timecost/m8/forestdiffusion/forest-m8-20260506_045103/public_gate/staged_input_manifest.json @@ -0,0 +1,351 @@ +{ + "dataset_id": "m8", + "target_column": "y", + "task_type": "classification", + "train_csv": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/m8/forestdiffusion/forest-m8-20260506_045103/staged/public/train.csv", + "val_csv": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/m8/forestdiffusion/forest-m8-20260506_045103/staged/public/val.csv", + "test_csv": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/m8/forestdiffusion/forest-m8-20260506_045103/staged/public/test.csv", + "features_json": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/m8/forestdiffusion/forest-m8-20260506_045103/staged/public/staged_features.json", + "public_gate_report": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/m8/forestdiffusion/forest-m8-20260506_045103/public_gate/public_gate_report.json", + "column_schema": [ + { + "name": "age", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 76, + "unique_ratio": 0.002101, + "example_values": [ + "40", + "52", + "31", + "51", + "44" + ] + } + }, + { + "name": "job", + "role": "feature", + "semantic_type": "categorical", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 12, + "unique_ratio": 0.000332, + "example_values": [ + "admin.", + "technician", + "entrepreneur", + "blue-collar", + "services" + ] + } + }, + { + "name": "marital", + "role": "feature", + "semantic_type": "categorical", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 3, + "unique_ratio": 8.3e-05, + "example_values": [ + "single", + "married", + "divorced" + ] + } + }, + { + "name": "education", + "role": "feature", + "semantic_type": "categorical", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 4, + "unique_ratio": 0.000111, + "example_values": [ + "secondary", + "tertiary", + "primary", + "unknown" + ] + } + }, + { + "name": "default", + "role": "feature", + "semantic_type": "boolean", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 2, + "unique_ratio": 5.5e-05, + "example_values": [ + "no", + "yes" + ] + } + }, + { + "name": "balance", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 6604, + "unique_ratio": 0.182592, + "example_values": [ + "419", + "31", + "7567", + "315", + "737" + ] + } + }, + { + "name": "housing", + "role": "feature", + "semantic_type": "boolean", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 2, + "unique_ratio": 5.5e-05, + "example_values": [ + "no", + "yes" + ] + } + }, + { + "name": "loan", + "role": "feature", + "semantic_type": "boolean", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 2, + "unique_ratio": 5.5e-05, + "example_values": [ + "yes", + "no" + ] + } + }, + { + "name": "contact", + "role": "feature", + "semantic_type": "categorical", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 3, + "unique_ratio": 8.3e-05, + "example_values": [ + "cellular", + "unknown", + "telephone" + ] + } + }, + { + "name": "day", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 31, + "unique_ratio": 0.000857, + "example_values": [ + "28", + "7", + "11", + "12", + "14" + ] + } + }, + { + "name": "month", + "role": "feature", + "semantic_type": "categorical", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 12, + "unique_ratio": 0.000332, + "example_values": [ + "jul", + "may", + "aug", + "oct", + "feb" + ] + } + }, + { + "name": "duration", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 1507, + "unique_ratio": 0.041667, + "example_values": [ + "100", + "120", + "70", + "291", + "102" + ] + } + }, + { + "name": "campaign", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 47, + "unique_ratio": 0.001299, + "example_values": [ + "16", + "1", + "2", + "5", + "4" + ] + } + }, + { + "name": "pdays", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 524, + "unique_ratio": 0.014488, + "example_values": [ + "-1", + "91", + "365", + "189", + "117" + ] + } + }, + { + "name": "previous", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 38, + "unique_ratio": 0.001051, + "example_values": [ + "0", + "4", + "1", + "2", + "3" + ] + } + }, + { + "name": "poutcome", + "role": "feature", + "semantic_type": "categorical", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 4, + "unique_ratio": 0.000111, + "example_values": [ + "unknown", + "failure", + "other", + "success" + ] + } + }, + { + "name": "y", + "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": 5.5e-05, + "example_values": [ + "no", + "yes" + ] + } + } + ] +} \ No newline at end of file diff --git a/timecost/m8/forestdiffusion/forest-m8-20260506_045103/run_config.json b/timecost/m8/forestdiffusion/forest-m8-20260506_045103/run_config.json new file mode 100644 index 0000000000000000000000000000000000000000..1cc795e94a28fa2823b2e89ab950841bb730a421 --- /dev/null +++ b/timecost/m8/forestdiffusion/forest-m8-20260506_045103/run_config.json @@ -0,0 +1,48 @@ +{ + "schema_version": 1, + "recorded_at": "2026-05-06T04:51:03", + "dataset_id": "m8", + "model": "forestdiffusion", + "work_dir": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/m8/forestdiffusion/forest-m8-20260506_045103", + "dataset_source_requested": "new", + "dataset_source_resolved": "new", + "cli_args": { + "model": "forestdiffusion", + "dataset": "m8", + "dataset_source": "new", + "train": true, + "generate": true, + "num_rows": 0, + "epochs": null, + "output_dir": null, + "model_dir": null, + "work_dir": null, + "resume": false, + "no_stats": false + }, + "resolved": { + "num_rows": 36168, + "model_path": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/m8/forestdiffusion/forest-m8-20260506_045103/models_fd/model.joblib", + "output_csv": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/m8/forestdiffusion/forest-m8-20260506_045103/forest-m8-36168-20260506_045105.csv" + }, + "input_artifacts": { + "public_gate_report": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/m8/forestdiffusion/forest-m8-20260506_045103/public_gate/public_gate_report.json", + "public_manifest": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/m8/forestdiffusion/forest-m8-20260506_045103/public_gate/staged_input_manifest.json", + "model_manifest": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/m8/forestdiffusion/forest-m8-20260506_045103/staged/forestdiffusion/model_input_manifest.json", + "train_csv": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/m8/forestdiffusion/forest-m8-20260506_045103/staged/public/train.csv", + "features_json": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/m8/forestdiffusion/forest-m8-20260506_045103/staged/public/staged_features.json", + "target_column": "y", + "task_type": "classification" + }, + "env_overrides": { + "BENCHMARK_DOCKER_HOME": "/work/.home", + "FORESTDIFFUSION_DUPLICATE_K": "1", + "FORESTDIFFUSION_MAX_DEPTH": "2", + "FORESTDIFFUSION_MAX_TRAIN_ROWS": "1024", + "FORESTDIFFUSION_N_ESTIMATORS": "1", + "FORESTDIFFUSION_N_JOBS": "1", + "FORESTDIFFUSION_N_T": "2", + "FORESTDIFFUSION_XGB_NTHREAD": "1", + "FORESTDIFFUSION_XGB_VERBOSITY": "0" + } +} \ No newline at end of file diff --git a/timecost/m8/forestdiffusion/forest-m8-20260506_045103/runtime_result.json b/timecost/m8/forestdiffusion/forest-m8-20260506_045103/runtime_result.json new file mode 100644 index 0000000000000000000000000000000000000000..dd4ea1904163573fb91288771141c21acce785a3 --- /dev/null +++ b/timecost/m8/forestdiffusion/forest-m8-20260506_045103/runtime_result.json @@ -0,0 +1,27 @@ +{ + "dataset_id": "m8", + "model": "forestdiffusion", + "run_id": "forest-m8-20260506_045103", + "public_gate_status": "pass", + "adapter_ready_status": "pass", + "train_status": "success", + "generate_status": "success", + "reason_code": null, + "reason_detail": null, + "artifacts": { + "synthetic_csv": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/m8/forestdiffusion/forest-m8-20260506_045103/forest-m8-36168-20260506_045105.csv", + "model_path": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/m8/forestdiffusion/forest-m8-20260506_045103/models_fd/model.joblib" + }, + "timings": { + "train": { + "started_at": "2026-05-06T04:51:03", + "ended_at": "2026-05-06T04:51:05", + "duration_sec": 1.811 + }, + "generate": { + "started_at": "2026-05-06T04:51:05", + "ended_at": "2026-05-06T04:51:07", + "duration_sec": 1.845 + } + } +} \ No newline at end of file diff --git a/timecost/m8/forestdiffusion/forest-m8-20260506_045103/staged/forestdiffusion/adapter_report.json b/timecost/m8/forestdiffusion/forest-m8-20260506_045103/staged/forestdiffusion/adapter_report.json new file mode 100644 index 0000000000000000000000000000000000000000..42db49a2367a9d431677e5c503a2a88afb46c0d0 --- /dev/null +++ b/timecost/m8/forestdiffusion/forest-m8-20260506_045103/staged/forestdiffusion/adapter_report.json @@ -0,0 +1,7 @@ +{ + "adapter_ready_status": "pass", + "adapter_fail_reason_code": null, + "adapter_fail_detail": null, + "adapter_transforms_applied": [], + "model_input_manifest": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/m8/forestdiffusion/forest-m8-20260506_045103/staged/forestdiffusion/model_input_manifest.json" +} \ No newline at end of file diff --git a/timecost/m8/forestdiffusion/forest-m8-20260506_045103/staged/forestdiffusion/adapter_transforms_applied.json b/timecost/m8/forestdiffusion/forest-m8-20260506_045103/staged/forestdiffusion/adapter_transforms_applied.json new file mode 100644 index 0000000000000000000000000000000000000000..0637a088a01e8ddab3bf3fa98dbe804cbde1a0dc --- /dev/null +++ b/timecost/m8/forestdiffusion/forest-m8-20260506_045103/staged/forestdiffusion/adapter_transforms_applied.json @@ -0,0 +1 @@ +[] \ No newline at end of file diff --git a/timecost/m8/forestdiffusion/forest-m8-20260506_045103/staged/forestdiffusion/model_input_manifest.json b/timecost/m8/forestdiffusion/forest-m8-20260506_045103/staged/forestdiffusion/model_input_manifest.json new file mode 100644 index 0000000000000000000000000000000000000000..05870a207de47f0c666590cd182a151cb5818b25 --- /dev/null +++ b/timecost/m8/forestdiffusion/forest-m8-20260506_045103/staged/forestdiffusion/model_input_manifest.json @@ -0,0 +1,353 @@ +{ + "dataset_id": "m8", + "model": "forestdiffusion", + "target_column": "y", + "task_type": "classification", + "column_schema": [ + { + "name": "age", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 76, + "unique_ratio": 0.002101, + "example_values": [ + "40", + "52", + "31", + "51", + "44" + ] + } + }, + { + "name": "job", + "role": "feature", + "semantic_type": "categorical", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 12, + "unique_ratio": 0.000332, + "example_values": [ + "admin.", + "technician", + "entrepreneur", + "blue-collar", + "services" + ] + } + }, + { + "name": "marital", + "role": "feature", + "semantic_type": "categorical", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 3, + "unique_ratio": 8.3e-05, + "example_values": [ + "single", + "married", + "divorced" + ] + } + }, + { + "name": "education", + "role": "feature", + "semantic_type": "categorical", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 4, + "unique_ratio": 0.000111, + "example_values": [ + "secondary", + "tertiary", + "primary", + "unknown" + ] + } + }, + { + "name": "default", + "role": "feature", + "semantic_type": "boolean", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 2, + "unique_ratio": 5.5e-05, + "example_values": [ + "no", + "yes" + ] + } + }, + { + "name": "balance", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 6604, + "unique_ratio": 0.182592, + "example_values": [ + "419", + "31", + "7567", + "315", + "737" + ] + } + }, + { + "name": "housing", + "role": "feature", + "semantic_type": "boolean", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 2, + "unique_ratio": 5.5e-05, + "example_values": [ + "no", + "yes" + ] + } + }, + { + "name": "loan", + "role": "feature", + "semantic_type": "boolean", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 2, + "unique_ratio": 5.5e-05, + "example_values": [ + "yes", + "no" + ] + } + }, + { + "name": "contact", + "role": "feature", + "semantic_type": "categorical", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 3, + "unique_ratio": 8.3e-05, + "example_values": [ + "cellular", + "unknown", + "telephone" + ] + } + }, + { + "name": "day", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 31, + "unique_ratio": 0.000857, + "example_values": [ + "28", + "7", + "11", + "12", + "14" + ] + } + }, + { + "name": "month", + "role": "feature", + "semantic_type": "categorical", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 12, + "unique_ratio": 0.000332, + "example_values": [ + "jul", + "may", + "aug", + "oct", + "feb" + ] + } + }, + { + "name": "duration", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 1507, + "unique_ratio": 0.041667, + "example_values": [ + "100", + "120", + "70", + "291", + "102" + ] + } + }, + { + "name": "campaign", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 47, + "unique_ratio": 0.001299, + "example_values": [ + "16", + "1", + "2", + "5", + "4" + ] + } + }, + { + "name": "pdays", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 524, + "unique_ratio": 0.014488, + "example_values": [ + "-1", + "91", + "365", + "189", + "117" + ] + } + }, + { + "name": "previous", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 38, + "unique_ratio": 0.001051, + "example_values": [ + "0", + "4", + "1", + "2", + "3" + ] + } + }, + { + "name": "poutcome", + "role": "feature", + "semantic_type": "categorical", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 4, + "unique_ratio": 0.000111, + "example_values": [ + "unknown", + "failure", + "other", + "success" + ] + } + }, + { + "name": "y", + "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": 5.5e-05, + "example_values": [ + "no", + "yes" + ] + } + } + ], + "public_manifest": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/m8/forestdiffusion/forest-m8-20260506_045103/public_gate/staged_input_manifest.json", + "train_csv": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/m8/forestdiffusion/forest-m8-20260506_045103/staged/public/train.csv", + "val_csv": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/m8/forestdiffusion/forest-m8-20260506_045103/staged/public/val.csv", + "test_csv": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/m8/forestdiffusion/forest-m8-20260506_045103/staged/public/test.csv", + "features_json": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/m8/forestdiffusion/forest-m8-20260506_045103/staged/public/staged_features.json", + "public_gate_report": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/m8/forestdiffusion/forest-m8-20260506_045103/public_gate/public_gate_report.json" +} \ No newline at end of file diff --git a/timecost/m8/forestdiffusion/forest-m8-20260506_045103/staged/public/staged_features.json b/timecost/m8/forestdiffusion/forest-m8-20260506_045103/staged/public/staged_features.json new file mode 100644 index 0000000000000000000000000000000000000000..11323e8dc5c8a2eaafa8e404e60d3db7e244452a --- /dev/null +++ b/timecost/m8/forestdiffusion/forest-m8-20260506_045103/staged/public/staged_features.json @@ -0,0 +1,87 @@ +[ + { + "feature_name": "age", + "data_type": "continuous", + "is_target": false + }, + { + "feature_name": "job", + "data_type": "categorical", + "is_target": false + }, + { + "feature_name": "marital", + "data_type": "categorical", + "is_target": false + }, + { + "feature_name": "education", + "data_type": "categorical", + "is_target": false + }, + { + "feature_name": "default", + "data_type": "binary", + "is_target": false + }, + { + "feature_name": "balance", + "data_type": "continuous", + "is_target": false + }, + { + "feature_name": "housing", + "data_type": "binary", + "is_target": false + }, + { + "feature_name": "loan", + "data_type": "binary", + "is_target": false + }, + { + "feature_name": "contact", + "data_type": "categorical", + "is_target": false + }, + { + "feature_name": "day", + "data_type": "continuous", + "is_target": false + }, + { + "feature_name": "month", + "data_type": "categorical", + "is_target": false + }, + { + "feature_name": "duration", + "data_type": "continuous", + "is_target": false + }, + { + "feature_name": "campaign", + "data_type": "continuous", + "is_target": false + }, + { + "feature_name": "pdays", + "data_type": "continuous", + "is_target": false + }, + { + "feature_name": "previous", + "data_type": "continuous", + "is_target": false + }, + { + "feature_name": "poutcome", + "data_type": "categorical", + "is_target": false + }, + { + "feature_name": "y", + "data_type": "binary", + "is_target": true + } +] \ No newline at end of file diff --git a/timecost/m8/forestdiffusion/forest-m8-20260506_045103/staged/public/test.csv b/timecost/m8/forestdiffusion/forest-m8-20260506_045103/staged/public/test.csv new file mode 100644 index 0000000000000000000000000000000000000000..e1c4866e541b88f8bcd3b88381c7e56d4df06443 --- /dev/null +++ b/timecost/m8/forestdiffusion/forest-m8-20260506_045103/staged/public/test.csv @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:6221943e422e75c8317b79b7ef93e9cd01f61fdd8de6ce42909a8e4610966310 +size 370991 diff --git a/timecost/m8/forestdiffusion/forest-m8-20260506_045103/staged/public/train.csv b/timecost/m8/forestdiffusion/forest-m8-20260506_045103/staged/public/train.csv new file mode 100644 index 0000000000000000000000000000000000000000..fd7d8791840b6811b098820db4ed9e74cf5d627a --- /dev/null +++ b/timecost/m8/forestdiffusion/forest-m8-20260506_045103/staged/public/train.csv @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:f9cbb71aa793de19869a138d41aea5808f772b31082741b185ffb8ca7b821833 +size 2964802 diff --git a/timecost/m8/forestdiffusion/forest-m8-20260506_045103/staged/public/val.csv b/timecost/m8/forestdiffusion/forest-m8-20260506_045103/staged/public/val.csv new file mode 100644 index 0000000000000000000000000000000000000000..09f0041420455c56eb1f79c62940d135e8bc6ea3 --- /dev/null +++ b/timecost/m8/forestdiffusion/forest-m8-20260506_045103/staged/public/val.csv @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:5ee8612128aae92155906abc0fdc752ac24fd04d63c78c080c89e3900efe6525 +size 370535 diff --git a/timecost/m8/forestdiffusion/forest-m8-20260506_045103/train_20260506_045103.log b/timecost/m8/forestdiffusion/forest-m8-20260506_045103/train_20260506_045103.log new file mode 100644 index 0000000000000000000000000000000000000000..ded7b2e89205c3db2e14fe9c6352c32e67ea2bd6 --- /dev/null +++ b/timecost/m8/forestdiffusion/forest-m8-20260506_045103/train_20260506_045103.log @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:d60291089b159a46f7833b6acb82ed85f9741c64a69cc29dc5adae57a0c9b3c8 +size 444 diff --git a/timecost/m8/realtabformer/rtf-m8-20260430_214424/gen_20260430_235333.log b/timecost/m8/realtabformer/rtf-m8-20260430_214424/gen_20260430_235333.log new file mode 100644 index 0000000000000000000000000000000000000000..4175d70e179f206b471ae085f5a0a52f94d978d4 --- /dev/null +++ b/timecost/m8/realtabformer/rtf-m8-20260430_214424/gen_20260430_235333.log @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:3b630effba9495f65b95001ab551e45d57d2f8292ab1c86d1d387f8be9d5aca0 +size 19117 diff --git a/timecost/m8/realtabformer/rtf-m8-20260430_214424/input_snapshot.json b/timecost/m8/realtabformer/rtf-m8-20260430_214424/input_snapshot.json new file mode 100644 index 0000000000000000000000000000000000000000..62eb69ea7a43b0a66c2b347eafa65101a98ffaf0 --- /dev/null +++ b/timecost/m8/realtabformer/rtf-m8-20260430_214424/input_snapshot.json @@ -0,0 +1,36 @@ +{ + "dataset_id": "m8", + "model": "realtabformer", + "inputs": { + "train_csv": { + "path": "/data/jialinzhang/SynthesizePipeline-server/DatasetNew/m8/m8-train.csv", + "exists": true, + "size": 2964802, + "sha256": "f9cbb71aa793de19869a138d41aea5808f772b31082741b185ffb8ca7b821833" + }, + "val_csv": { + "path": "/data/jialinzhang/SynthesizePipeline-server/DatasetNew/m8/m8-val.csv", + "exists": true, + "size": 370535, + "sha256": "5ee8612128aae92155906abc0fdc752ac24fd04d63c78c080c89e3900efe6525" + }, + "test_csv": { + "path": "/data/jialinzhang/SynthesizePipeline-server/DatasetNew/m8/m8-test.csv", + "exists": true, + "size": 370991, + "sha256": "6221943e422e75c8317b79b7ef93e9cd01f61fdd8de6ce42909a8e4610966310" + }, + "profile_json": { + "path": "/data/jialinzhang/SynthesizePipeline-server/DatasetNew/artifacts/data_core/tabular/m8/m8-dataset_profile.json", + "exists": true, + "size": 6553, + "sha256": "44f883858641584035a0a8859cb95dbcd3a023c03cbc76931aadfc4c70ef871f" + }, + "contract_json": { + "path": "/data/jialinzhang/SynthesizePipeline-server/DatasetNew/artifacts/data_core/tabular/m8/m8-dataset_contract_v1.json", + "exists": true, + "size": 8214, + "sha256": "e76df134780ec9b6c6c625a54e5d0c1935e9f4a7d09320ad19279a0492438d92" + } + } +} \ No newline at end of file diff --git a/timecost/m8/realtabformer/rtf-m8-20260430_214424/models_100epochs/id000017775644112956340224/rtf_config.json b/timecost/m8/realtabformer/rtf-m8-20260430_214424/models_100epochs/id000017775644112956340224/rtf_config.json new file mode 100644 index 0000000000000000000000000000000000000000..9dbe6558d635f62012f368f4b93fbce847ebd30c --- /dev/null +++ b/timecost/m8/realtabformer/rtf-m8-20260430_214424/models_100epochs/id000017775644112956340224/rtf_config.json @@ -0,0 +1 @@ +{"model_type": "tabular", "tabular_config": {"transformers_version": "5.5.3", "architectures": ["GPT2LMHeadModel"], "output_hidden_states": false, "return_dict": true, "dtype": "float32", "chunk_size_feed_forward": 0, "is_encoder_decoder": false, "id2label": {"0": "LABEL_0", "1": "LABEL_1"}, "label2id": {"LABEL_0": 0, "LABEL_1": 1}, "problem_type": null, "vocab_size": 244, "n_positions": 1024, "n_embd": 768, "n_layer": 6, "n_head": 12, "n_inner": null, "activation_function": "gelu_new", "resid_pdrop": 0.1, "embd_pdrop": 0.1, "attn_pdrop": 0.1, "layer_norm_epsilon": 1e-05, "initializer_range": 0.02, "summary_type": "cls_index", "summary_use_proj": true, "summary_activation": null, "summary_proj_to_labels": true, "summary_first_dropout": 0.1, "scale_attn_weights": true, "use_cache": false, "bos_token_id": 5, "eos_token_id": 6, "pad_token_id": null, "scale_attn_by_inverse_layer_idx": false, "reorder_and_upcast_attn": false, "add_cross_attention": false, "tie_word_embeddings": true, "_name_or_path": "", "model_type": "gpt2", "output_attentions": false}, "checkpoints_dir": "rtf_checkpoints", "samples_save_dir": "rtf_samples", "full_save_dir": "rtf_full_save", "epochs": 100, "batch_size": 8, "early_stopping_patience": 5, "early_stopping_threshold": 0, "training_args_kwargs": {"eval_strategy": "no", "output_dir": "rtf_checkpoints", "metric_for_best_model": "loss", "num_train_epochs": 100, "per_device_train_batch_size": 8, "per_device_eval_batch_size": 8, "gradient_accumulation_steps": 4, "remove_unused_columns": true, "logging_steps": 100, "save_steps": 100, "eval_steps": 100, "load_best_model_at_end": false, "save_total_limit": 6, "optim": "adamw_torch"}, "train_size": 1, "mask_rate": 0, "columns": ["age", "job", "marital", "education", "default", "balance", "housing", "loan", "contact", "day", "month", "duration", "campaign", "pdays", "previous", "poutcome", "y"], "column_dtypes": {"age": "int64", "job": "object", "marital": "object", "education": "object", "default": "object", "balance": "int64", "housing": "object", "loan": "object", "contact": "object", "day": "int64", "month": "object", "duration": "int64", "campaign": "int64", "pdays": "int64", "previous": "int64", "poutcome": "object", "y": "object"}, "column_has_missing": {"age": false, "job": false, "marital": false, "education": false, "default": false, "balance": false, "housing": false, "loan": false, "contact": false, "day": false, "month": false, "duration": false, "campaign": false, "pdays": false, "previous": false, "poutcome": false, "y": false}, "drop_na_cols": ["age", "job", "marital", "education", "default", "balance", "housing", "loan", "contact", "day", "month", "duration", "campaign", "pdays", "previous", "poutcome", "y"], "processed_columns": ["00___NUMERIC___age_00", "00___NUMERIC___age_01", "01___CATEGORICAL___job", "02___CATEGORICAL___marital", "03___CATEGORICAL___education", "04___CATEGORICAL___default", "05___NUMERIC___balance_00", "05___NUMERIC___balance_01", "05___NUMERIC___balance_02", "05___NUMERIC___balance_03", "05___NUMERIC___balance_04", "05___NUMERIC___balance_05", "06___CATEGORICAL___housing", "07___CATEGORICAL___loan", "08___CATEGORICAL___contact", "09___NUMERIC___day_00", "09___NUMERIC___day_01", "10___CATEGORICAL___month", "11___NUMERIC___duration_00", "11___NUMERIC___duration_01", "11___NUMERIC___duration_02", "11___NUMERIC___duration_03", "12___NUMERIC___campaign_00", "12___NUMERIC___campaign_01", "13___NUMERIC___pdays_00", "13___NUMERIC___pdays_01", "13___NUMERIC___pdays_02", "14___NUMERIC___previous_00", "14___NUMERIC___previous_01", "14___NUMERIC___previous_02", "15___CATEGORICAL___poutcome", "16___CATEGORICAL___y"], "numeric_columns": ["age", "balance", "day", "duration", "campaign", "pdays", "previous"], "datetime_columns": [], "vocab": {"id2token": {"0": "[UNK]", "1": "[SEP]", "2": "[PAD]", "3": "[CLS]", "4": "[MASK]", "5": "[BOS]", "6": "[EOS]", "7": "[BMEM]", "8": "[EMEM]", "9": "[RMASK]", "10": "[SPTYPE]", "11": "00___NUMERIC___age_00___1", "12": "00___NUMERIC___age_00___2", "13": "00___NUMERIC___age_00___3", "14": "00___NUMERIC___age_00___4", "15": "00___NUMERIC___age_00___5", "16": "00___NUMERIC___age_00___6", "17": "00___NUMERIC___age_00___7", "18": "00___NUMERIC___age_00___8", "19": "00___NUMERIC___age_00___9", "20": "00___NUMERIC___age_01___0", "21": "00___NUMERIC___age_01___1", "22": "00___NUMERIC___age_01___2", "23": "00___NUMERIC___age_01___3", "24": "00___NUMERIC___age_01___4", "25": "00___NUMERIC___age_01___5", "26": "00___NUMERIC___age_01___6", "27": "00___NUMERIC___age_01___7", "28": "00___NUMERIC___age_01___8", "29": "00___NUMERIC___age_01___9", "30": "01___CATEGORICAL___job___admin.", "31": "01___CATEGORICAL___job___blue-collar", "32": "01___CATEGORICAL___job___entrepreneur", "33": "01___CATEGORICAL___job___housemaid", "34": "01___CATEGORICAL___job___management", "35": "01___CATEGORICAL___job___retired", "36": "01___CATEGORICAL___job___self-employed", "37": "01___CATEGORICAL___job___services", "38": "01___CATEGORICAL___job___student", "39": "01___CATEGORICAL___job___technician", "40": "01___CATEGORICAL___job___unemployed", "41": "01___CATEGORICAL___job___unknown", "42": "02___CATEGORICAL___marital___divorced", "43": "02___CATEGORICAL___marital___married", "44": "02___CATEGORICAL___marital___single", "45": "03___CATEGORICAL___education___primary", "46": "03___CATEGORICAL___education___secondary", "47": "03___CATEGORICAL___education___tertiary", "48": "03___CATEGORICAL___education___unknown", "49": "04___CATEGORICAL___default___no", "50": "04___CATEGORICAL___default___yes", "51": "05___NUMERIC___balance_00___-", "52": "05___NUMERIC___balance_00___0", "53": "05___NUMERIC___balance_00___1", "54": "05___NUMERIC___balance_01___0", "55": "05___NUMERIC___balance_01___1", "56": "05___NUMERIC___balance_01___2", "57": "05___NUMERIC___balance_01___3", "58": "05___NUMERIC___balance_01___4", "59": "05___NUMERIC___balance_01___5", "60": "05___NUMERIC___balance_01___6", "61": "05___NUMERIC___balance_01___7", "62": "05___NUMERIC___balance_01___8", "63": "05___NUMERIC___balance_01___9", "64": "05___NUMERIC___balance_02___0", "65": "05___NUMERIC___balance_02___1", "66": "05___NUMERIC___balance_02___2", "67": "05___NUMERIC___balance_02___3", "68": "05___NUMERIC___balance_02___4", "69": "05___NUMERIC___balance_02___5", "70": "05___NUMERIC___balance_02___6", "71": "05___NUMERIC___balance_02___7", "72": "05___NUMERIC___balance_02___8", "73": "05___NUMERIC___balance_02___9", "74": "05___NUMERIC___balance_03___0", "75": "05___NUMERIC___balance_03___1", "76": "05___NUMERIC___balance_03___2", "77": "05___NUMERIC___balance_03___3", "78": "05___NUMERIC___balance_03___4", "79": "05___NUMERIC___balance_03___5", "80": "05___NUMERIC___balance_03___6", "81": "05___NUMERIC___balance_03___7", "82": "05___NUMERIC___balance_03___8", "83": "05___NUMERIC___balance_03___9", "84": "05___NUMERIC___balance_04___0", "85": "05___NUMERIC___balance_04___1", "86": "05___NUMERIC___balance_04___2", "87": "05___NUMERIC___balance_04___3", "88": "05___NUMERIC___balance_04___4", "89": "05___NUMERIC___balance_04___5", "90": "05___NUMERIC___balance_04___6", "91": "05___NUMERIC___balance_04___7", "92": "05___NUMERIC___balance_04___8", "93": "05___NUMERIC___balance_04___9", "94": "05___NUMERIC___balance_05___0", "95": "05___NUMERIC___balance_05___1", "96": "05___NUMERIC___balance_05___2", "97": "05___NUMERIC___balance_05___3", "98": "05___NUMERIC___balance_05___4", "99": "05___NUMERIC___balance_05___5", "100": "05___NUMERIC___balance_05___6", "101": "05___NUMERIC___balance_05___7", "102": "05___NUMERIC___balance_05___8", "103": "05___NUMERIC___balance_05___9", "104": "06___CATEGORICAL___housing___no", "105": "06___CATEGORICAL___housing___yes", "106": "07___CATEGORICAL___loan___no", "107": "07___CATEGORICAL___loan___yes", "108": "08___CATEGORICAL___contact___cellular", "109": "08___CATEGORICAL___contact___telephone", "110": "08___CATEGORICAL___contact___unknown", "111": "09___NUMERIC___day_00___0", "112": "09___NUMERIC___day_00___1", "113": "09___NUMERIC___day_00___2", "114": "09___NUMERIC___day_00___3", "115": "09___NUMERIC___day_01___0", "116": "09___NUMERIC___day_01___1", "117": "09___NUMERIC___day_01___2", "118": "09___NUMERIC___day_01___3", "119": "09___NUMERIC___day_01___4", "120": "09___NUMERIC___day_01___5", "121": "09___NUMERIC___day_01___6", "122": "09___NUMERIC___day_01___7", "123": "09___NUMERIC___day_01___8", "124": "09___NUMERIC___day_01___9", "125": "10___CATEGORICAL___month___apr", "126": "10___CATEGORICAL___month___aug", "127": "10___CATEGORICAL___month___dec", "128": "10___CATEGORICAL___month___feb", "129": "10___CATEGORICAL___month___jan", "130": "10___CATEGORICAL___month___jul", "131": "10___CATEGORICAL___month___jun", "132": "10___CATEGORICAL___month___mar", "133": "10___CATEGORICAL___month___may", "134": "10___CATEGORICAL___month___nov", "135": "10___CATEGORICAL___month___oct", "136": "10___CATEGORICAL___month___sep", "137": "11___NUMERIC___duration_00___0", "138": "11___NUMERIC___duration_00___1", "139": "11___NUMERIC___duration_00___2", "140": "11___NUMERIC___duration_00___3", "141": "11___NUMERIC___duration_00___4", "142": "11___NUMERIC___duration_01___0", "143": "11___NUMERIC___duration_01___1", "144": "11___NUMERIC___duration_01___2", "145": "11___NUMERIC___duration_01___3", "146": "11___NUMERIC___duration_01___4", "147": "11___NUMERIC___duration_01___5", "148": "11___NUMERIC___duration_01___6", "149": "11___NUMERIC___duration_01___7", "150": "11___NUMERIC___duration_01___8", "151": "11___NUMERIC___duration_01___9", "152": "11___NUMERIC___duration_02___0", "153": "11___NUMERIC___duration_02___1", "154": "11___NUMERIC___duration_02___2", "155": "11___NUMERIC___duration_02___3", "156": "11___NUMERIC___duration_02___4", "157": "11___NUMERIC___duration_02___5", "158": "11___NUMERIC___duration_02___6", "159": "11___NUMERIC___duration_02___7", "160": "11___NUMERIC___duration_02___8", "161": "11___NUMERIC___duration_02___9", "162": "11___NUMERIC___duration_03___0", "163": "11___NUMERIC___duration_03___1", "164": "11___NUMERIC___duration_03___2", "165": "11___NUMERIC___duration_03___3", "166": "11___NUMERIC___duration_03___4", "167": "11___NUMERIC___duration_03___5", "168": "11___NUMERIC___duration_03___6", "169": "11___NUMERIC___duration_03___7", "170": "11___NUMERIC___duration_03___8", "171": "11___NUMERIC___duration_03___9", "172": "12___NUMERIC___campaign_00___0", "173": "12___NUMERIC___campaign_00___1", "174": "12___NUMERIC___campaign_00___2", "175": "12___NUMERIC___campaign_00___3", "176": "12___NUMERIC___campaign_00___4", "177": "12___NUMERIC___campaign_00___5", "178": "12___NUMERIC___campaign_00___6", "179": "12___NUMERIC___campaign_01___0", "180": "12___NUMERIC___campaign_01___1", "181": "12___NUMERIC___campaign_01___2", "182": "12___NUMERIC___campaign_01___3", "183": "12___NUMERIC___campaign_01___4", "184": "12___NUMERIC___campaign_01___5", "185": "12___NUMERIC___campaign_01___6", "186": "12___NUMERIC___campaign_01___7", "187": "12___NUMERIC___campaign_01___8", "188": "12___NUMERIC___campaign_01___9", "189": "13___NUMERIC___pdays_00___-", "190": "13___NUMERIC___pdays_00___0", "191": "13___NUMERIC___pdays_00___1", "192": "13___NUMERIC___pdays_00___2", "193": "13___NUMERIC___pdays_00___3", "194": "13___NUMERIC___pdays_00___4", "195": "13___NUMERIC___pdays_00___5", "196": "13___NUMERIC___pdays_00___6", "197": "13___NUMERIC___pdays_00___7", "198": "13___NUMERIC___pdays_00___8", "199": "13___NUMERIC___pdays_01___0", "200": "13___NUMERIC___pdays_01___1", "201": "13___NUMERIC___pdays_01___2", "202": "13___NUMERIC___pdays_01___3", "203": "13___NUMERIC___pdays_01___4", "204": "13___NUMERIC___pdays_01___5", "205": "13___NUMERIC___pdays_01___6", "206": "13___NUMERIC___pdays_01___7", "207": "13___NUMERIC___pdays_01___8", "208": "13___NUMERIC___pdays_01___9", "209": "13___NUMERIC___pdays_02___0", "210": "13___NUMERIC___pdays_02___1", "211": "13___NUMERIC___pdays_02___2", "212": "13___NUMERIC___pdays_02___3", "213": "13___NUMERIC___pdays_02___4", "214": "13___NUMERIC___pdays_02___5", "215": "13___NUMERIC___pdays_02___6", "216": "13___NUMERIC___pdays_02___7", "217": "13___NUMERIC___pdays_02___8", "218": "13___NUMERIC___pdays_02___9", "219": "14___NUMERIC___previous_00___0", "220": "14___NUMERIC___previous_00___2", "221": "14___NUMERIC___previous_01___0", "222": "14___NUMERIC___previous_01___1", "223": "14___NUMERIC___previous_01___2", "224": "14___NUMERIC___previous_01___3", "225": "14___NUMERIC___previous_01___4", "226": "14___NUMERIC___previous_01___5", "227": "14___NUMERIC___previous_01___7", "228": "14___NUMERIC___previous_02___0", "229": "14___NUMERIC___previous_02___1", "230": "14___NUMERIC___previous_02___2", "231": "14___NUMERIC___previous_02___3", "232": "14___NUMERIC___previous_02___4", "233": "14___NUMERIC___previous_02___5", "234": "14___NUMERIC___previous_02___6", "235": "14___NUMERIC___previous_02___7", "236": "14___NUMERIC___previous_02___8", "237": "14___NUMERIC___previous_02___9", "238": "15___CATEGORICAL___poutcome___failure", "239": "15___CATEGORICAL___poutcome___other", "240": "15___CATEGORICAL___poutcome___success", "241": "15___CATEGORICAL___poutcome___unknown", "242": "16___CATEGORICAL___y___no", "243": "16___CATEGORICAL___y___yes"}, "token2id": {"[UNK]": 0, "[SEP]": 1, "[PAD]": 2, "[CLS]": 3, "[MASK]": 4, "[BOS]": 5, "[EOS]": 6, "[BMEM]": 7, "[EMEM]": 8, "[RMASK]": 9, "[SPTYPE]": 10, "00___NUMERIC___age_00___1": 11, "00___NUMERIC___age_00___2": 12, "00___NUMERIC___age_00___3": 13, "00___NUMERIC___age_00___4": 14, "00___NUMERIC___age_00___5": 15, "00___NUMERIC___age_00___6": 16, "00___NUMERIC___age_00___7": 17, "00___NUMERIC___age_00___8": 18, "00___NUMERIC___age_00___9": 19, "00___NUMERIC___age_01___0": 20, "00___NUMERIC___age_01___1": 21, "00___NUMERIC___age_01___2": 22, "00___NUMERIC___age_01___3": 23, "00___NUMERIC___age_01___4": 24, "00___NUMERIC___age_01___5": 25, "00___NUMERIC___age_01___6": 26, "00___NUMERIC___age_01___7": 27, "00___NUMERIC___age_01___8": 28, "00___NUMERIC___age_01___9": 29, "01___CATEGORICAL___job___admin.": 30, "01___CATEGORICAL___job___blue-collar": 31, "01___CATEGORICAL___job___entrepreneur": 32, "01___CATEGORICAL___job___housemaid": 33, "01___CATEGORICAL___job___management": 34, "01___CATEGORICAL___job___retired": 35, "01___CATEGORICAL___job___self-employed": 36, "01___CATEGORICAL___job___services": 37, "01___CATEGORICAL___job___student": 38, "01___CATEGORICAL___job___technician": 39, "01___CATEGORICAL___job___unemployed": 40, "01___CATEGORICAL___job___unknown": 41, "02___CATEGORICAL___marital___divorced": 42, "02___CATEGORICAL___marital___married": 43, "02___CATEGORICAL___marital___single": 44, "03___CATEGORICAL___education___primary": 45, "03___CATEGORICAL___education___secondary": 46, "03___CATEGORICAL___education___tertiary": 47, "03___CATEGORICAL___education___unknown": 48, "04___CATEGORICAL___default___no": 49, "04___CATEGORICAL___default___yes": 50, "05___NUMERIC___balance_00___-": 51, "05___NUMERIC___balance_00___0": 52, "05___NUMERIC___balance_00___1": 53, "05___NUMERIC___balance_01___0": 54, "05___NUMERIC___balance_01___1": 55, "05___NUMERIC___balance_01___2": 56, "05___NUMERIC___balance_01___3": 57, "05___NUMERIC___balance_01___4": 58, "05___NUMERIC___balance_01___5": 59, "05___NUMERIC___balance_01___6": 60, "05___NUMERIC___balance_01___7": 61, "05___NUMERIC___balance_01___8": 62, "05___NUMERIC___balance_01___9": 63, "05___NUMERIC___balance_02___0": 64, "05___NUMERIC___balance_02___1": 65, "05___NUMERIC___balance_02___2": 66, "05___NUMERIC___balance_02___3": 67, "05___NUMERIC___balance_02___4": 68, "05___NUMERIC___balance_02___5": 69, "05___NUMERIC___balance_02___6": 70, "05___NUMERIC___balance_02___7": 71, "05___NUMERIC___balance_02___8": 72, "05___NUMERIC___balance_02___9": 73, "05___NUMERIC___balance_03___0": 74, "05___NUMERIC___balance_03___1": 75, "05___NUMERIC___balance_03___2": 76, "05___NUMERIC___balance_03___3": 77, "05___NUMERIC___balance_03___4": 78, "05___NUMERIC___balance_03___5": 79, "05___NUMERIC___balance_03___6": 80, "05___NUMERIC___balance_03___7": 81, "05___NUMERIC___balance_03___8": 82, "05___NUMERIC___balance_03___9": 83, "05___NUMERIC___balance_04___0": 84, "05___NUMERIC___balance_04___1": 85, "05___NUMERIC___balance_04___2": 86, "05___NUMERIC___balance_04___3": 87, "05___NUMERIC___balance_04___4": 88, "05___NUMERIC___balance_04___5": 89, "05___NUMERIC___balance_04___6": 90, "05___NUMERIC___balance_04___7": 91, "05___NUMERIC___balance_04___8": 92, "05___NUMERIC___balance_04___9": 93, "05___NUMERIC___balance_05___0": 94, "05___NUMERIC___balance_05___1": 95, "05___NUMERIC___balance_05___2": 96, "05___NUMERIC___balance_05___3": 97, "05___NUMERIC___balance_05___4": 98, "05___NUMERIC___balance_05___5": 99, "05___NUMERIC___balance_05___6": 100, "05___NUMERIC___balance_05___7": 101, "05___NUMERIC___balance_05___8": 102, "05___NUMERIC___balance_05___9": 103, "06___CATEGORICAL___housing___no": 104, "06___CATEGORICAL___housing___yes": 105, "07___CATEGORICAL___loan___no": 106, "07___CATEGORICAL___loan___yes": 107, "08___CATEGORICAL___contact___cellular": 108, "08___CATEGORICAL___contact___telephone": 109, "08___CATEGORICAL___contact___unknown": 110, "09___NUMERIC___day_00___0": 111, "09___NUMERIC___day_00___1": 112, "09___NUMERIC___day_00___2": 113, "09___NUMERIC___day_00___3": 114, "09___NUMERIC___day_01___0": 115, "09___NUMERIC___day_01___1": 116, "09___NUMERIC___day_01___2": 117, "09___NUMERIC___day_01___3": 118, "09___NUMERIC___day_01___4": 119, "09___NUMERIC___day_01___5": 120, "09___NUMERIC___day_01___6": 121, "09___NUMERIC___day_01___7": 122, "09___NUMERIC___day_01___8": 123, "09___NUMERIC___day_01___9": 124, "10___CATEGORICAL___month___apr": 125, "10___CATEGORICAL___month___aug": 126, "10___CATEGORICAL___month___dec": 127, "10___CATEGORICAL___month___feb": 128, "10___CATEGORICAL___month___jan": 129, "10___CATEGORICAL___month___jul": 130, "10___CATEGORICAL___month___jun": 131, "10___CATEGORICAL___month___mar": 132, "10___CATEGORICAL___month___may": 133, "10___CATEGORICAL___month___nov": 134, "10___CATEGORICAL___month___oct": 135, "10___CATEGORICAL___month___sep": 136, "11___NUMERIC___duration_00___0": 137, "11___NUMERIC___duration_00___1": 138, "11___NUMERIC___duration_00___2": 139, "11___NUMERIC___duration_00___3": 140, "11___NUMERIC___duration_00___4": 141, "11___NUMERIC___duration_01___0": 142, "11___NUMERIC___duration_01___1": 143, "11___NUMERIC___duration_01___2": 144, "11___NUMERIC___duration_01___3": 145, "11___NUMERIC___duration_01___4": 146, "11___NUMERIC___duration_01___5": 147, "11___NUMERIC___duration_01___6": 148, "11___NUMERIC___duration_01___7": 149, "11___NUMERIC___duration_01___8": 150, "11___NUMERIC___duration_01___9": 151, "11___NUMERIC___duration_02___0": 152, "11___NUMERIC___duration_02___1": 153, "11___NUMERIC___duration_02___2": 154, "11___NUMERIC___duration_02___3": 155, "11___NUMERIC___duration_02___4": 156, "11___NUMERIC___duration_02___5": 157, "11___NUMERIC___duration_02___6": 158, "11___NUMERIC___duration_02___7": 159, "11___NUMERIC___duration_02___8": 160, "11___NUMERIC___duration_02___9": 161, "11___NUMERIC___duration_03___0": 162, "11___NUMERIC___duration_03___1": 163, "11___NUMERIC___duration_03___2": 164, "11___NUMERIC___duration_03___3": 165, "11___NUMERIC___duration_03___4": 166, "11___NUMERIC___duration_03___5": 167, "11___NUMERIC___duration_03___6": 168, "11___NUMERIC___duration_03___7": 169, "11___NUMERIC___duration_03___8": 170, "11___NUMERIC___duration_03___9": 171, "12___NUMERIC___campaign_00___0": 172, "12___NUMERIC___campaign_00___1": 173, "12___NUMERIC___campaign_00___2": 174, "12___NUMERIC___campaign_00___3": 175, "12___NUMERIC___campaign_00___4": 176, "12___NUMERIC___campaign_00___5": 177, "12___NUMERIC___campaign_00___6": 178, "12___NUMERIC___campaign_01___0": 179, "12___NUMERIC___campaign_01___1": 180, "12___NUMERIC___campaign_01___2": 181, "12___NUMERIC___campaign_01___3": 182, "12___NUMERIC___campaign_01___4": 183, "12___NUMERIC___campaign_01___5": 184, "12___NUMERIC___campaign_01___6": 185, "12___NUMERIC___campaign_01___7": 186, "12___NUMERIC___campaign_01___8": 187, "12___NUMERIC___campaign_01___9": 188, "13___NUMERIC___pdays_00___-": 189, "13___NUMERIC___pdays_00___0": 190, "13___NUMERIC___pdays_00___1": 191, "13___NUMERIC___pdays_00___2": 192, "13___NUMERIC___pdays_00___3": 193, "13___NUMERIC___pdays_00___4": 194, "13___NUMERIC___pdays_00___5": 195, "13___NUMERIC___pdays_00___6": 196, "13___NUMERIC___pdays_00___7": 197, "13___NUMERIC___pdays_00___8": 198, "13___NUMERIC___pdays_01___0": 199, "13___NUMERIC___pdays_01___1": 200, "13___NUMERIC___pdays_01___2": 201, "13___NUMERIC___pdays_01___3": 202, "13___NUMERIC___pdays_01___4": 203, "13___NUMERIC___pdays_01___5": 204, "13___NUMERIC___pdays_01___6": 205, "13___NUMERIC___pdays_01___7": 206, "13___NUMERIC___pdays_01___8": 207, "13___NUMERIC___pdays_01___9": 208, "13___NUMERIC___pdays_02___0": 209, "13___NUMERIC___pdays_02___1": 210, "13___NUMERIC___pdays_02___2": 211, "13___NUMERIC___pdays_02___3": 212, "13___NUMERIC___pdays_02___4": 213, "13___NUMERIC___pdays_02___5": 214, "13___NUMERIC___pdays_02___6": 215, "13___NUMERIC___pdays_02___7": 216, "13___NUMERIC___pdays_02___8": 217, "13___NUMERIC___pdays_02___9": 218, "14___NUMERIC___previous_00___0": 219, "14___NUMERIC___previous_00___2": 220, "14___NUMERIC___previous_01___0": 221, "14___NUMERIC___previous_01___1": 222, "14___NUMERIC___previous_01___2": 223, "14___NUMERIC___previous_01___3": 224, "14___NUMERIC___previous_01___4": 225, "14___NUMERIC___previous_01___5": 226, "14___NUMERIC___previous_01___7": 227, "14___NUMERIC___previous_02___0": 228, "14___NUMERIC___previous_02___1": 229, "14___NUMERIC___previous_02___2": 230, "14___NUMERIC___previous_02___3": 231, "14___NUMERIC___previous_02___4": 232, "14___NUMERIC___previous_02___5": 233, "14___NUMERIC___previous_02___6": 234, "14___NUMERIC___previous_02___7": 235, "14___NUMERIC___previous_02___8": 236, "14___NUMERIC___previous_02___9": 237, "15___CATEGORICAL___poutcome___failure": 238, "15___CATEGORICAL___poutcome___other": 239, "15___CATEGORICAL___poutcome___success": 240, "15___CATEGORICAL___poutcome___unknown": 241, "16___CATEGORICAL___y___no": 242, "16___CATEGORICAL___y___yes": 243}, "column_token_ids": {"00___NUMERIC___age_00": [11, 12, 13, 14, 15, 16, 17, 18, 19], "00___NUMERIC___age_01": [20, 21, 22, 23, 24, 25, 26, 27, 28, 29], "01___CATEGORICAL___job": [30, 31, 32, 33, 34, 35, 36, 37, 38, 39, 40, 41], "02___CATEGORICAL___marital": [42, 43, 44], "03___CATEGORICAL___education": [45, 46, 47, 48], "04___CATEGORICAL___default": [49, 50], "05___NUMERIC___balance_00": [51, 52, 53], "05___NUMERIC___balance_01": [54, 55, 56, 57, 58, 59, 60, 61, 62, 63], "05___NUMERIC___balance_02": [64, 65, 66, 67, 68, 69, 70, 71, 72, 73], "05___NUMERIC___balance_03": [74, 75, 76, 77, 78, 79, 80, 81, 82, 83], "05___NUMERIC___balance_04": [84, 85, 86, 87, 88, 89, 90, 91, 92, 93], "05___NUMERIC___balance_05": [94, 95, 96, 97, 98, 99, 100, 101, 102, 103], "06___CATEGORICAL___housing": [104, 105], "07___CATEGORICAL___loan": [106, 107], "08___CATEGORICAL___contact": [108, 109, 110], "09___NUMERIC___day_00": [111, 112, 113, 114], "09___NUMERIC___day_01": [115, 116, 117, 118, 119, 120, 121, 122, 123, 124], "10___CATEGORICAL___month": [125, 126, 127, 128, 129, 130, 131, 132, 133, 134, 135, 136], "11___NUMERIC___duration_00": [137, 138, 139, 140, 141], "11___NUMERIC___duration_01": [142, 143, 144, 145, 146, 147, 148, 149, 150, 151], "11___NUMERIC___duration_02": [152, 153, 154, 155, 156, 157, 158, 159, 160, 161], "11___NUMERIC___duration_03": [162, 163, 164, 165, 166, 167, 168, 169, 170, 171], "12___NUMERIC___campaign_00": [172, 173, 174, 175, 176, 177, 178], "12___NUMERIC___campaign_01": [179, 180, 181, 182, 183, 184, 185, 186, 187, 188], "13___NUMERIC___pdays_00": [189, 190, 191, 192, 193, 194, 195, 196, 197, 198], "13___NUMERIC___pdays_01": [199, 200, 201, 202, 203, 204, 205, 206, 207, 208], "13___NUMERIC___pdays_02": [209, 210, 211, 212, 213, 214, 215, 216, 217, 218], "14___NUMERIC___previous_00": [219, 220], "14___NUMERIC___previous_01": [221, 222, 223, 224, 225, 226, 227], "14___NUMERIC___previous_02": [228, 229, 230, 231, 232, 233, 234, 235, 236, 237], "15___CATEGORICAL___poutcome": [238, 239, 240, 241], "16___CATEGORICAL___y": [242, 243]}}, "tabular_max_length": 34, "relational_max_length": null, "tabular_col_size": 36168, "relational_col_size": null, "col_transform_data": {"age": {"max_len": 10, "numeric_precision": 4, "mx_sig": -1, "zfill": 2, "numeric_nparts": 1}, "balance": {"max_len": 10, "numeric_precision": 4, "mx_sig": -1, "zfill": 6, "numeric_nparts": 1}, "day": {"max_len": 10, "numeric_precision": 4, "mx_sig": -1, "zfill": 2, "numeric_nparts": 1}, "duration": {"max_len": 10, "numeric_precision": 4, "mx_sig": -1, "zfill": 4, "numeric_nparts": 1}, "campaign": {"max_len": 10, "numeric_precision": 4, "mx_sig": -1, "zfill": 2, "numeric_nparts": 1}, "pdays": {"max_len": 10, "numeric_precision": 4, "mx_sig": -1, "zfill": 3, "numeric_nparts": 1}, "previous": {"max_len": 10, "numeric_precision": 4, "mx_sig": -1, "zfill": 3, "numeric_nparts": 1}}, "in_col_transform_data": null, "col_idx_ids": {"0": [11, 12, 13, 14, 15, 16, 17, 18, 19], "1": [20, 21, 22, 23, 24, 25, 26, 27, 28, 29], "2": [30, 31, 32, 33, 34, 35, 36, 37, 38, 39, 40, 41], "3": [42, 43, 44], "4": [45, 46, 47, 48], "5": [49, 50], "6": [51, 52, 53], "7": [54, 55, 56, 57, 58, 59, 60, 61, 62, 63], "8": [64, 65, 66, 67, 68, 69, 70, 71, 72, 73], "9": [74, 75, 76, 77, 78, 79, 80, 81, 82, 83], "10": [84, 85, 86, 87, 88, 89, 90, 91, 92, 93], "11": [94, 95, 96, 97, 98, 99, 100, 101, 102, 103], "12": [104, 105], "13": [106, 107], "14": [108, 109, 110], "15": [111, 112, 113, 114], "16": [115, 116, 117, 118, 119, 120, 121, 122, 123, 124], "17": [125, 126, 127, 128, 129, 130, 131, 132, 133, 134, 135, 136], "18": [137, 138, 139, 140, 141], "19": [142, 143, 144, 145, 146, 147, 148, 149, 150, 151], "20": [152, 153, 154, 155, 156, 157, 158, 159, 160, 161], "21": [162, 163, 164, 165, 166, 167, 168, 169, 170, 171], "22": [172, 173, 174, 175, 176, 177, 178], "23": [179, 180, 181, 182, 183, 184, 185, 186, 187, 188], "24": [189, 190, 191, 192, 193, 194, 195, 196, 197, 198], "25": [199, 200, 201, 202, 203, 204, 205, 206, 207, 208], "26": [209, 210, 211, 212, 213, 214, 215, 216, 217, 218], "27": [219, 220], "28": [221, 222, 223, 224, 225, 226, 227], "29": [228, 229, 230, 231, 232, 233, 234, 235, 236, 237], "30": [238, 239, 240, 241], "31": [242, 243]}, "random_state": 1029, "numeric_nparts": 1, "numeric_precision": 4, "numeric_max_len": 10, "experiment_id": "id000017775644112956340224", "trainer_state": null, "target_col": null, "realtabformer_version": "0.2.4"} \ No newline at end of file diff --git a/timecost/m8/realtabformer/rtf-m8-20260430_214424/models_100epochs/id000017775644112956340224/rtf_model.pt b/timecost/m8/realtabformer/rtf-m8-20260430_214424/models_100epochs/id000017775644112956340224/rtf_model.pt new file mode 100644 index 0000000000000000000000000000000000000000..7d332746ef55eff95540e087edac0d4ae635da5a --- /dev/null +++ b/timecost/m8/realtabformer/rtf-m8-20260430_214424/models_100epochs/id000017775644112956340224/rtf_model.pt @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:75b9c6203d3620c952c6d029ba39c2087ab5f7cdd1a94a8c4eaefbd8024c0d92 +size 174039523 diff --git a/timecost/m8/realtabformer/rtf-m8-20260430_214424/public_gate/normalized_schema_snapshot.json b/timecost/m8/realtabformer/rtf-m8-20260430_214424/public_gate/normalized_schema_snapshot.json new file mode 100644 index 0000000000000000000000000000000000000000..5e616edd2b7924c5e07f02ccbbb842529655f52a --- /dev/null +++ b/timecost/m8/realtabformer/rtf-m8-20260430_214424/public_gate/normalized_schema_snapshot.json @@ -0,0 +1,346 @@ +{ + "dataset_id": "m8", + "target_column": "y", + "task_type": "classification", + "columns": [ + { + "name": "age", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 76, + "unique_ratio": 0.002101, + "example_values": [ + "40", + "52", + "31", + "51", + "44" + ] + } + }, + { + "name": "job", + "role": "feature", + "semantic_type": "categorical", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 12, + "unique_ratio": 0.000332, + "example_values": [ + "admin.", + "technician", + "entrepreneur", + "blue-collar", + "services" + ] + } + }, + { + "name": "marital", + "role": "feature", + "semantic_type": "categorical", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 3, + "unique_ratio": 8.3e-05, + "example_values": [ + "single", + "married", + "divorced" + ] + } + }, + { + "name": "education", + "role": "feature", + "semantic_type": "categorical", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 4, + "unique_ratio": 0.000111, + "example_values": [ + "secondary", + "tertiary", + "primary", + "unknown" + ] + } + }, + { + "name": "default", + "role": "feature", + "semantic_type": "boolean", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 2, + "unique_ratio": 5.5e-05, + "example_values": [ + "no", + "yes" + ] + } + }, + { + "name": "balance", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 6604, + "unique_ratio": 0.182592, + "example_values": [ + "419", + "31", + "7567", + "315", + "737" + ] + } + }, + { + "name": "housing", + "role": "feature", + "semantic_type": "boolean", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 2, + "unique_ratio": 5.5e-05, + "example_values": [ + "no", + "yes" + ] + } + }, + { + "name": "loan", + "role": "feature", + "semantic_type": "boolean", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 2, + "unique_ratio": 5.5e-05, + "example_values": [ + "yes", + "no" + ] + } + }, + { + "name": "contact", + "role": "feature", + "semantic_type": "categorical", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 3, + "unique_ratio": 8.3e-05, + "example_values": [ + "cellular", + "unknown", + "telephone" + ] + } + }, + { + "name": "day", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 31, + "unique_ratio": 0.000857, + "example_values": [ + "28", + "7", + "11", + "12", + "14" + ] + } + }, + { + "name": "month", + "role": "feature", + "semantic_type": "categorical", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 12, + "unique_ratio": 0.000332, + "example_values": [ + "jul", + "may", + "aug", + "oct", + "feb" + ] + } + }, + { + "name": "duration", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 1507, + "unique_ratio": 0.041667, + "example_values": [ + "100", + "120", + "70", + "291", + "102" + ] + } + }, + { + "name": "campaign", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 47, + "unique_ratio": 0.001299, + "example_values": [ + "16", + "1", + "2", + "5", + "4" + ] + } + }, + { + "name": "pdays", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 524, + "unique_ratio": 0.014488, + "example_values": [ + "-1", + "91", + "365", + "189", + "117" + ] + } + }, + { + "name": "previous", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 38, + "unique_ratio": 0.001051, + "example_values": [ + "0", + "4", + "1", + "2", + "3" + ] + } + }, + { + "name": "poutcome", + "role": "feature", + "semantic_type": "categorical", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 4, + "unique_ratio": 0.000111, + "example_values": [ + "unknown", + "failure", + "other", + "success" + ] + } + }, + { + "name": "y", + "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": 5.5e-05, + "example_values": [ + "no", + "yes" + ] + } + } + ] +} \ No newline at end of file diff --git a/timecost/m8/realtabformer/rtf-m8-20260430_214424/public_gate/public_gate_report.json b/timecost/m8/realtabformer/rtf-m8-20260430_214424/public_gate/public_gate_report.json new file mode 100644 index 0000000000000000000000000000000000000000..318ead0018618096d718d3ec1140561db7e0a70f --- /dev/null +++ b/timecost/m8/realtabformer/rtf-m8-20260430_214424/public_gate/public_gate_report.json @@ -0,0 +1,37 @@ +{ + "dataset_id": "m8", + "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": "y", + "task_type": "classification", + "input_splits": { + "train": "/data/jialinzhang/SynthesizePipeline-server/DatasetNew/m8/m8-train.csv", + "val": "/data/jialinzhang/SynthesizePipeline-server/DatasetNew/m8/m8-val.csv", + "test": "/data/jialinzhang/SynthesizePipeline-server/DatasetNew/m8/m8-test.csv" + } +} \ No newline at end of file diff --git a/timecost/m8/realtabformer/rtf-m8-20260430_214424/public_gate/staged_input_manifest.json b/timecost/m8/realtabformer/rtf-m8-20260430_214424/public_gate/staged_input_manifest.json new file mode 100644 index 0000000000000000000000000000000000000000..91fd1c7955f5f9b41160325878e4bdb7f530f2fa --- /dev/null +++ b/timecost/m8/realtabformer/rtf-m8-20260430_214424/public_gate/staged_input_manifest.json @@ -0,0 +1,351 @@ +{ + "dataset_id": "m8", + "target_column": "y", + "task_type": "classification", + "train_csv": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/m8/realtabformer/rtf-m8-20260430_214424/staged/public/train.csv", + "val_csv": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/m8/realtabformer/rtf-m8-20260430_214424/staged/public/val.csv", + "test_csv": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/m8/realtabformer/rtf-m8-20260430_214424/staged/public/test.csv", + "features_json": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/m8/realtabformer/rtf-m8-20260430_214424/staged/public/staged_features.json", + "public_gate_report": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/m8/realtabformer/rtf-m8-20260430_214424/public_gate/public_gate_report.json", + "column_schema": [ + { + "name": "age", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 76, + "unique_ratio": 0.002101, + "example_values": [ + "40", + "52", + "31", + "51", + "44" + ] + } + }, + { + "name": "job", + "role": "feature", + "semantic_type": "categorical", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 12, + "unique_ratio": 0.000332, + "example_values": [ + "admin.", + "technician", + "entrepreneur", + "blue-collar", + "services" + ] + } + }, + { + "name": "marital", + "role": "feature", + "semantic_type": "categorical", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 3, + "unique_ratio": 8.3e-05, + "example_values": [ + "single", + "married", + "divorced" + ] + } + }, + { + "name": "education", + "role": "feature", + "semantic_type": "categorical", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 4, + "unique_ratio": 0.000111, + "example_values": [ + "secondary", + "tertiary", + "primary", + "unknown" + ] + } + }, + { + "name": "default", + "role": "feature", + "semantic_type": "boolean", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 2, + "unique_ratio": 5.5e-05, + "example_values": [ + "no", + "yes" + ] + } + }, + { + "name": "balance", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 6604, + "unique_ratio": 0.182592, + "example_values": [ + "419", + "31", + "7567", + "315", + "737" + ] + } + }, + { + "name": "housing", + "role": "feature", + "semantic_type": "boolean", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 2, + "unique_ratio": 5.5e-05, + "example_values": [ + "no", + "yes" + ] + } + }, + { + "name": "loan", + "role": "feature", + "semantic_type": "boolean", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 2, + "unique_ratio": 5.5e-05, + "example_values": [ + "yes", + "no" + ] + } + }, + { + "name": "contact", + "role": "feature", + "semantic_type": "categorical", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 3, + "unique_ratio": 8.3e-05, + "example_values": [ + "cellular", + "unknown", + "telephone" + ] + } + }, + { + "name": "day", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 31, + "unique_ratio": 0.000857, + "example_values": [ + "28", + "7", + "11", + "12", + "14" + ] + } + }, + { + "name": "month", + "role": "feature", + "semantic_type": "categorical", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 12, + "unique_ratio": 0.000332, + "example_values": [ + "jul", + "may", + "aug", + "oct", + "feb" + ] + } + }, + { + "name": "duration", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 1507, + "unique_ratio": 0.041667, + "example_values": [ + "100", + "120", + "70", + "291", + "102" + ] + } + }, + { + "name": "campaign", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 47, + "unique_ratio": 0.001299, + "example_values": [ + "16", + "1", + "2", + "5", + "4" + ] + } + }, + { + "name": "pdays", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 524, + "unique_ratio": 0.014488, + "example_values": [ + "-1", + "91", + "365", + "189", + "117" + ] + } + }, + { + "name": "previous", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 38, + "unique_ratio": 0.001051, + "example_values": [ + "0", + "4", + "1", + "2", + "3" + ] + } + }, + { + "name": "poutcome", + "role": "feature", + "semantic_type": "categorical", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 4, + "unique_ratio": 0.000111, + "example_values": [ + "unknown", + "failure", + "other", + "success" + ] + } + }, + { + "name": "y", + "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": 5.5e-05, + "example_values": [ + "no", + "yes" + ] + } + } + ] +} \ No newline at end of file diff --git a/timecost/m8/realtabformer/rtf-m8-20260430_214424/realtabformer_features.json b/timecost/m8/realtabformer/rtf-m8-20260430_214424/realtabformer_features.json new file mode 100644 index 0000000000000000000000000000000000000000..11323e8dc5c8a2eaafa8e404e60d3db7e244452a --- /dev/null +++ b/timecost/m8/realtabformer/rtf-m8-20260430_214424/realtabformer_features.json @@ -0,0 +1,87 @@ +[ + { + "feature_name": "age", + "data_type": "continuous", + "is_target": false + }, + { + "feature_name": "job", + "data_type": "categorical", + "is_target": false + }, + { + "feature_name": "marital", + "data_type": "categorical", + "is_target": false + }, + { + "feature_name": "education", + "data_type": "categorical", + "is_target": false + }, + { + "feature_name": "default", + "data_type": "binary", + "is_target": false + }, + { + "feature_name": "balance", + "data_type": "continuous", + "is_target": false + }, + { + "feature_name": "housing", + "data_type": "binary", + "is_target": false + }, + { + "feature_name": "loan", + "data_type": "binary", + "is_target": false + }, + { + "feature_name": "contact", + "data_type": "categorical", + "is_target": false + }, + { + "feature_name": "day", + "data_type": "continuous", + "is_target": false + }, + { + "feature_name": "month", + "data_type": "categorical", + "is_target": false + }, + { + "feature_name": "duration", + "data_type": "continuous", + "is_target": false + }, + { + "feature_name": "campaign", + "data_type": "continuous", + "is_target": false + }, + { + "feature_name": "pdays", + "data_type": "continuous", + "is_target": false + }, + { + "feature_name": "previous", + "data_type": "continuous", + "is_target": false + }, + { + "feature_name": "poutcome", + "data_type": "categorical", + "is_target": false + }, + { + "feature_name": "y", + "data_type": "binary", + "is_target": true + } +] \ No newline at end of file diff --git a/timecost/m8/realtabformer/rtf-m8-20260430_214424/rtf-m8-36168-20260430_235333.csv b/timecost/m8/realtabformer/rtf-m8-20260430_214424/rtf-m8-36168-20260430_235333.csv new file mode 100644 index 0000000000000000000000000000000000000000..534ab5ecf5bd8253c7a72dd0ae3ef4b12af61ad4 --- /dev/null +++ b/timecost/m8/realtabformer/rtf-m8-20260430_214424/rtf-m8-36168-20260430_235333.csv @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:7aeb163b7ce47a8e0a2ef58b195eac574b15d142b3fc852c9db2c260270224dd +size 2963673 diff --git a/timecost/m8/realtabformer/rtf-m8-20260430_214424/rtf_checkpoints/checkpoint-112600/config.json b/timecost/m8/realtabformer/rtf-m8-20260430_214424/rtf_checkpoints/checkpoint-112600/config.json new file mode 100644 index 0000000000000000000000000000000000000000..d98dd02b920679d4da3c8b60a9be119058fb9fe3 --- /dev/null +++ b/timecost/m8/realtabformer/rtf-m8-20260430_214424/rtf_checkpoints/checkpoint-112600/config.json @@ -0,0 +1,34 @@ +{ + "activation_function": "gelu_new", + "add_cross_attention": false, + "architectures": [ + "GPT2LMHeadModel" + ], + "attn_pdrop": 0.1, + "bos_token_id": 5, + "dtype": "float32", + "embd_pdrop": 0.1, + "eos_token_id": 6, + "initializer_range": 0.02, + "layer_norm_epsilon": 1e-05, + "model_type": "gpt2", + "n_embd": 768, + "n_head": 12, + "n_inner": null, + "n_layer": 6, + "n_positions": 1024, + "pad_token_id": null, + "reorder_and_upcast_attn": false, + "resid_pdrop": 0.1, + "scale_attn_by_inverse_layer_idx": false, + "scale_attn_weights": true, + "summary_activation": null, + "summary_first_dropout": 0.1, + "summary_proj_to_labels": true, + "summary_type": "cls_index", + "summary_use_proj": true, + "tie_word_embeddings": true, + "transformers_version": "5.5.3", + "use_cache": false, + "vocab_size": 244 +} diff --git a/timecost/m8/realtabformer/rtf-m8-20260430_214424/rtf_checkpoints/checkpoint-112600/generation_config.json b/timecost/m8/realtabformer/rtf-m8-20260430_214424/rtf_checkpoints/checkpoint-112600/generation_config.json new file mode 100644 index 0000000000000000000000000000000000000000..ffe89567780e75b5c22eade9be971483b9618f39 --- /dev/null +++ b/timecost/m8/realtabformer/rtf-m8-20260430_214424/rtf_checkpoints/checkpoint-112600/generation_config.json @@ -0,0 +1,9 @@ +{ + "_from_model_config": true, + "bos_token_id": 5, + "eos_token_id": 6, + "output_attentions": false, + "output_hidden_states": false, + "transformers_version": "5.5.3", + "use_cache": true +} diff --git a/timecost/m8/realtabformer/rtf-m8-20260430_214424/rtf_checkpoints/checkpoint-112600/model.safetensors b/timecost/m8/realtabformer/rtf-m8-20260430_214424/rtf_checkpoints/checkpoint-112600/model.safetensors new file mode 100644 index 0000000000000000000000000000000000000000..818cb9a42b25c622f5682c8fc6180b83be720aab --- /dev/null +++ b/timecost/m8/realtabformer/rtf-m8-20260430_214424/rtf_checkpoints/checkpoint-112600/model.safetensors @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:7245a046468976758590b25616b02257c9446729b8be816d2d3b0c963104f00c +size 174017992 diff --git a/timecost/m8/realtabformer/rtf-m8-20260430_214424/rtf_checkpoints/checkpoint-112600/optimizer.pt b/timecost/m8/realtabformer/rtf-m8-20260430_214424/rtf_checkpoints/checkpoint-112600/optimizer.pt new file mode 100644 index 0000000000000000000000000000000000000000..0fbb87fb4c4ded57c8ece25bf3bc63dd4b0b808a --- /dev/null +++ b/timecost/m8/realtabformer/rtf-m8-20260430_214424/rtf_checkpoints/checkpoint-112600/optimizer.pt @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:ed74ed5cd79cfde2c1472f03b96b1bc52f35c11fa702201b1a4fc020ca868872 +size 348085067 diff --git a/timecost/m8/realtabformer/rtf-m8-20260430_214424/rtf_checkpoints/checkpoint-112600/rng_state.pth b/timecost/m8/realtabformer/rtf-m8-20260430_214424/rtf_checkpoints/checkpoint-112600/rng_state.pth new file mode 100644 index 0000000000000000000000000000000000000000..1bdbcc871cdf6dd3f99871b6c402fa8a948b1baf --- /dev/null +++ b/timecost/m8/realtabformer/rtf-m8-20260430_214424/rtf_checkpoints/checkpoint-112600/rng_state.pth @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:2ac7bb7cb7b96c22a2c729a8e4ee257f4e7e462d2d6083b43c8c23f5402f801a +size 14645 diff --git a/timecost/m8/realtabformer/rtf-m8-20260430_214424/rtf_checkpoints/checkpoint-112600/scaler.pt b/timecost/m8/realtabformer/rtf-m8-20260430_214424/rtf_checkpoints/checkpoint-112600/scaler.pt new file mode 100644 index 0000000000000000000000000000000000000000..15c7aa9f9f6c01e1369aff87b87d0eb2a95f6864 --- /dev/null +++ b/timecost/m8/realtabformer/rtf-m8-20260430_214424/rtf_checkpoints/checkpoint-112600/scaler.pt @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:578e2754ebb2620cd7bb5705f92341c34ca69c812a34662dd1b9e41b27241ce5 +size 1383 diff --git a/timecost/m8/realtabformer/rtf-m8-20260430_214424/rtf_checkpoints/checkpoint-112600/scheduler.pt b/timecost/m8/realtabformer/rtf-m8-20260430_214424/rtf_checkpoints/checkpoint-112600/scheduler.pt new file mode 100644 index 0000000000000000000000000000000000000000..2e29b7c4a04cd4a958964d995c0db1eb38ea7cc9 --- /dev/null +++ b/timecost/m8/realtabformer/rtf-m8-20260430_214424/rtf_checkpoints/checkpoint-112600/scheduler.pt @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:ec3f81068f6c72f4ae1fe59a9e287b10ed9e20129a930bdd13be05cd53f38e7d +size 1465 diff --git a/timecost/m8/realtabformer/rtf-m8-20260430_214424/rtf_checkpoints/checkpoint-112600/trainer_state.json b/timecost/m8/realtabformer/rtf-m8-20260430_214424/rtf_checkpoints/checkpoint-112600/trainer_state.json new file mode 100644 index 0000000000000000000000000000000000000000..66dc591a56667b47752f8887f18802abb7439e06 --- /dev/null +++ b/timecost/m8/realtabformer/rtf-m8-20260430_214424/rtf_checkpoints/checkpoint-112600/trainer_state.json @@ -0,0 +1,7916 @@ +{ + "best_global_step": null, + "best_metric": null, + "best_model_checkpoint": null, + "epoch": 99.55828356558284, + "eval_steps": 100, + "global_step": 112600, + "is_hyper_param_search": false, + "is_local_process_zero": true, + "is_world_process_zero": true, + "log_history": [ + { + "epoch": 0.08847600088476001, + "grad_norm": 0.27971890568733215, + "learning_rate": 4.9956233421750666e-05, + "loss": 1.6012767028808594, + "step": 100 + }, + { + "epoch": 0.17695200176952003, + "grad_norm": 0.2532733976840973, + "learning_rate": 4.991202475685234e-05, + "loss": 1.0460629272460937, + "step": 200 + }, + { + "epoch": 0.26542800265428, + "grad_norm": 0.22527219355106354, + "learning_rate": 4.986781609195402e-05, + "loss": 1.0045037841796876, + "step": 300 + }, + { + "epoch": 0.35390400353904006, + "grad_norm": 0.2071678638458252, + "learning_rate": 4.982360742705571e-05, + "loss": 0.9934071350097656, + "step": 400 + }, + { + "epoch": 0.44238000442380004, + "grad_norm": 0.21996082365512848, + "learning_rate": 4.977939876215739e-05, + "loss": 0.9807382965087891, + "step": 500 + }, + { + "epoch": 0.53085600530856, + "grad_norm": 0.20051148533821106, + "learning_rate": 4.9735190097259064e-05, + "loss": 0.9772834014892579, + "step": 600 + }, + { + "epoch": 0.6193320061933201, + "grad_norm": 0.20692776143550873, + "learning_rate": 4.969098143236074e-05, + "loss": 0.9733844757080078, + "step": 700 + }, + { + "epoch": 0.7078080070780801, + "grad_norm": 0.22139734029769897, + "learning_rate": 4.9646772767462425e-05, + "loss": 0.9641999053955078, + "step": 800 + }, + { + "epoch": 0.79628400796284, + "grad_norm": 0.20099565386772156, + "learning_rate": 4.96025641025641e-05, + "loss": 0.9590901947021484, + "step": 900 + }, + { + "epoch": 0.8847600088476001, + "grad_norm": 0.19050444662570953, + "learning_rate": 4.955835543766578e-05, + "loss": 0.9558430480957031, + "step": 1000 + }, + { + "epoch": 0.9732360097323601, + "grad_norm": 0.20780153572559357, + "learning_rate": 4.951414677276747e-05, + "loss": 0.9558073425292969, + "step": 1100 + }, + { + "epoch": 1.0610484406104843, + "grad_norm": 0.20002400875091553, + "learning_rate": 4.946993810786915e-05, + "loss": 0.9575533294677734, + "step": 1200 + }, + { + "epoch": 1.1495244414952444, + "grad_norm": 0.19394151866436005, + "learning_rate": 4.9425729442970824e-05, + "loss": 0.9556401824951172, + "step": 1300 + }, + { + "epoch": 1.2380004423800044, + "grad_norm": 0.19420816004276276, + "learning_rate": 4.93815207780725e-05, + "loss": 0.948358154296875, + "step": 1400 + }, + { + "epoch": 1.3264764432647644, + "grad_norm": 0.2109377682209015, + "learning_rate": 4.9337312113174185e-05, + "loss": 0.9507483673095704, + "step": 1500 + }, + { + "epoch": 1.4149524441495245, + "grad_norm": 0.19577011466026306, + "learning_rate": 4.929310344827586e-05, + "loss": 0.9544251251220703, + "step": 1600 + }, + { + "epoch": 1.5034284450342845, + "grad_norm": 0.17374339699745178, + "learning_rate": 4.924889478337754e-05, + "loss": 0.9495613098144531, + "step": 1700 + }, + { + "epoch": 1.5919044459190443, + "grad_norm": 0.1539471447467804, + "learning_rate": 4.920468611847922e-05, + "loss": 0.946780014038086, + "step": 1800 + }, + { + "epoch": 1.6803804468038046, + "grad_norm": 0.21705853939056396, + "learning_rate": 4.916047745358091e-05, + "loss": 0.9456329345703125, + "step": 1900 + }, + { + "epoch": 1.7688564476885644, + "grad_norm": 0.18109191954135895, + "learning_rate": 4.9116268788682584e-05, + "loss": 0.9452082061767578, + "step": 2000 + }, + { + "epoch": 1.8573324485733245, + "grad_norm": 0.18233413994312286, + "learning_rate": 4.907206012378426e-05, + "loss": 0.9436309051513672, + "step": 2100 + }, + { + "epoch": 1.9458084494580845, + "grad_norm": 0.19978198409080505, + "learning_rate": 4.9027851458885945e-05, + "loss": 0.9466010284423828, + "step": 2200 + }, + { + "epoch": 2.033620880336209, + "grad_norm": 0.19425439834594727, + "learning_rate": 4.898364279398762e-05, + "loss": 0.9419589233398438, + "step": 2300 + }, + { + "epoch": 2.1220968812209686, + "grad_norm": 0.18522261083126068, + "learning_rate": 4.8939434129089306e-05, + "loss": 0.9406929779052734, + "step": 2400 + }, + { + "epoch": 2.210572882105729, + "grad_norm": 0.18092288076877594, + "learning_rate": 4.889522546419098e-05, + "loss": 0.9394661712646485, + "step": 2500 + }, + { + "epoch": 2.2990488829904887, + "grad_norm": 0.16110995411872864, + "learning_rate": 4.885101679929267e-05, + "loss": 0.9415554809570312, + "step": 2600 + }, + { + "epoch": 2.387524883875249, + "grad_norm": 0.1742609441280365, + "learning_rate": 4.8806808134394344e-05, + "loss": 0.9385026550292969, + "step": 2700 + }, + { + "epoch": 2.476000884760009, + "grad_norm": 0.1893293261528015, + "learning_rate": 4.876259946949602e-05, + "loss": 0.9374285125732422, + "step": 2800 + }, + { + "epoch": 2.564476885644769, + "grad_norm": 0.17022491991519928, + "learning_rate": 4.8718390804597705e-05, + "loss": 0.9414189910888672, + "step": 2900 + }, + { + "epoch": 2.652952886529529, + "grad_norm": 0.1820104867219925, + "learning_rate": 4.867418213969938e-05, + "loss": 0.9428114318847656, + "step": 3000 + }, + { + "epoch": 2.7414288874142887, + "grad_norm": 0.1591845154762268, + "learning_rate": 4.8629973474801066e-05, + "loss": 0.9408238220214844, + "step": 3100 + }, + { + "epoch": 2.829904888299049, + "grad_norm": 0.16679565608501434, + "learning_rate": 4.858576480990274e-05, + "loss": 0.9357293701171875, + "step": 3200 + }, + { + "epoch": 2.918380889183809, + "grad_norm": 0.1608530431985855, + "learning_rate": 4.854155614500443e-05, + "loss": 0.9437465667724609, + "step": 3300 + }, + { + "epoch": 3.006193320061933, + "grad_norm": 0.17832520604133606, + "learning_rate": 4.8497347480106104e-05, + "loss": 0.9349425506591796, + "step": 3400 + }, + { + "epoch": 3.0946693209466933, + "grad_norm": 0.18095993995666504, + "learning_rate": 4.845313881520778e-05, + "loss": 0.9341915130615235, + "step": 3500 + }, + { + "epoch": 3.183145321831453, + "grad_norm": 0.15083801746368408, + "learning_rate": 4.8408930150309465e-05, + "loss": 0.9406319427490234, + "step": 3600 + }, + { + "epoch": 3.2716213227162134, + "grad_norm": 0.17318469285964966, + "learning_rate": 4.836472148541114e-05, + "loss": 0.942470703125, + "step": 3700 + }, + { + "epoch": 3.3600973236009732, + "grad_norm": 0.16380801796913147, + "learning_rate": 4.8320512820512826e-05, + "loss": 0.9362622833251953, + "step": 3800 + }, + { + "epoch": 3.448573324485733, + "grad_norm": 0.16394540667533875, + "learning_rate": 4.82763041556145e-05, + "loss": 0.9353338623046875, + "step": 3900 + }, + { + "epoch": 3.5370493253704933, + "grad_norm": 0.15836960077285767, + "learning_rate": 4.8232095490716186e-05, + "loss": 0.9316812896728516, + "step": 4000 + }, + { + "epoch": 3.625525326255253, + "grad_norm": 0.16170428693294525, + "learning_rate": 4.8187886825817864e-05, + "loss": 0.9331712341308593, + "step": 4100 + }, + { + "epoch": 3.7140013271400134, + "grad_norm": 0.16442789137363434, + "learning_rate": 4.814367816091954e-05, + "loss": 0.9366471862792969, + "step": 4200 + }, + { + "epoch": 3.8024773280247732, + "grad_norm": 0.1728108674287796, + "learning_rate": 4.8099469496021224e-05, + "loss": 0.9279624938964843, + "step": 4300 + }, + { + "epoch": 3.890953328909533, + "grad_norm": 0.16846929490566254, + "learning_rate": 4.80552608311229e-05, + "loss": 0.9343041229248047, + "step": 4400 + }, + { + "epoch": 3.9794293297942933, + "grad_norm": 0.15764060616493225, + "learning_rate": 4.8011052166224585e-05, + "loss": 0.9330953979492187, + "step": 4500 + }, + { + "epoch": 4.067241760672418, + "grad_norm": 0.15639521181583405, + "learning_rate": 4.796684350132626e-05, + "loss": 0.92936279296875, + "step": 4600 + }, + { + "epoch": 4.155717761557177, + "grad_norm": 0.1571352481842041, + "learning_rate": 4.7922634836427946e-05, + "loss": 0.928530502319336, + "step": 4700 + }, + { + "epoch": 4.244193762441937, + "grad_norm": 0.1702045202255249, + "learning_rate": 4.787842617152962e-05, + "loss": 0.928214111328125, + "step": 4800 + }, + { + "epoch": 4.332669763326698, + "grad_norm": 0.15860655903816223, + "learning_rate": 4.78342175066313e-05, + "loss": 0.9305215454101563, + "step": 4900 + }, + { + "epoch": 4.421145764211458, + "grad_norm": 0.15470334887504578, + "learning_rate": 4.779000884173298e-05, + "loss": 0.9308832550048828, + "step": 5000 + }, + { + "epoch": 4.509621765096218, + "grad_norm": 0.18338388204574585, + "learning_rate": 4.774580017683466e-05, + "loss": 0.9284812164306641, + "step": 5100 + }, + { + "epoch": 4.598097765980977, + "grad_norm": 0.16396461427211761, + "learning_rate": 4.7701591511936345e-05, + "loss": 0.9331364440917969, + "step": 5200 + }, + { + "epoch": 4.686573766865738, + "grad_norm": 0.15601013600826263, + "learning_rate": 4.765738284703802e-05, + "loss": 0.9345075225830078, + "step": 5300 + }, + { + "epoch": 4.775049767750498, + "grad_norm": 0.15895380079746246, + "learning_rate": 4.76131741821397e-05, + "loss": 0.9342525482177735, + "step": 5400 + }, + { + "epoch": 4.863525768635258, + "grad_norm": 0.17462770640850067, + "learning_rate": 4.756896551724138e-05, + "loss": 0.9322207641601562, + "step": 5500 + }, + { + "epoch": 4.952001769520018, + "grad_norm": 0.15457525849342346, + "learning_rate": 4.752475685234306e-05, + "loss": 0.9310305023193359, + "step": 5600 + }, + { + "epoch": 5.039814200398142, + "grad_norm": 0.13688383996486664, + "learning_rate": 4.748054818744474e-05, + "loss": 0.9262973022460937, + "step": 5700 + }, + { + "epoch": 5.128290201282902, + "grad_norm": 0.15491563081741333, + "learning_rate": 4.743633952254642e-05, + "loss": 0.927138671875, + "step": 5800 + }, + { + "epoch": 5.216766202167662, + "grad_norm": 0.168558269739151, + "learning_rate": 4.7392130857648105e-05, + "loss": 0.9224365234375, + "step": 5900 + }, + { + "epoch": 5.305242203052422, + "grad_norm": 0.1631685495376587, + "learning_rate": 4.734792219274978e-05, + "loss": 0.9300392913818359, + "step": 6000 + }, + { + "epoch": 5.393718203937182, + "grad_norm": 0.1423729509115219, + "learning_rate": 4.730371352785146e-05, + "loss": 0.926734619140625, + "step": 6100 + }, + { + "epoch": 5.482194204821942, + "grad_norm": 0.15391670167446136, + "learning_rate": 4.725950486295314e-05, + "loss": 0.928184814453125, + "step": 6200 + }, + { + "epoch": 5.570670205706702, + "grad_norm": 0.16460080444812775, + "learning_rate": 4.721529619805482e-05, + "loss": 0.9238227844238281, + "step": 6300 + }, + { + "epoch": 5.659146206591462, + "grad_norm": 0.15589170157909393, + "learning_rate": 4.71710875331565e-05, + "loss": 0.9301457214355469, + "step": 6400 + }, + { + "epoch": 5.747622207476222, + "grad_norm": 0.15851308405399323, + "learning_rate": 4.712687886825818e-05, + "loss": 0.9308782196044922, + "step": 6500 + }, + { + "epoch": 5.836098208360982, + "grad_norm": 0.1777440756559372, + "learning_rate": 4.7082670203359865e-05, + "loss": 0.9248320007324219, + "step": 6600 + }, + { + "epoch": 5.924574209245742, + "grad_norm": 0.17118966579437256, + "learning_rate": 4.703846153846154e-05, + "loss": 0.933470458984375, + "step": 6700 + }, + { + "epoch": 6.012386640123866, + "grad_norm": 0.16862431168556213, + "learning_rate": 4.699425287356322e-05, + "loss": 0.9242423248291015, + "step": 6800 + }, + { + "epoch": 6.100862641008627, + "grad_norm": 0.19494886696338654, + "learning_rate": 4.69500442086649e-05, + "loss": 0.9229951477050782, + "step": 6900 + }, + { + "epoch": 6.189338641893387, + "grad_norm": 0.1628340780735016, + "learning_rate": 4.690583554376658e-05, + "loss": 0.9262020111083984, + "step": 7000 + }, + { + "epoch": 6.2778146427781465, + "grad_norm": 0.18057121336460114, + "learning_rate": 4.686162687886826e-05, + "loss": 0.9253005981445312, + "step": 7100 + }, + { + "epoch": 6.366290643662906, + "grad_norm": 0.16090655326843262, + "learning_rate": 4.681741821396994e-05, + "loss": 0.9206966400146485, + "step": 7200 + }, + { + "epoch": 6.454766644547666, + "grad_norm": 0.16115659475326538, + "learning_rate": 4.6773209549071625e-05, + "loss": 0.9219180297851562, + "step": 7300 + }, + { + "epoch": 6.543242645432427, + "grad_norm": 0.1964244246482849, + "learning_rate": 4.67290008841733e-05, + "loss": 0.9238224029541016, + "step": 7400 + }, + { + "epoch": 6.631718646317187, + "grad_norm": 0.1761396825313568, + "learning_rate": 4.668479221927498e-05, + "loss": 0.9244656372070312, + "step": 7500 + }, + { + "epoch": 6.7201946472019465, + "grad_norm": 0.18016010522842407, + "learning_rate": 4.664058355437666e-05, + "loss": 0.9245244598388672, + "step": 7600 + }, + { + "epoch": 6.808670648086706, + "grad_norm": 0.16012924909591675, + "learning_rate": 4.659637488947834e-05, + "loss": 0.9250524139404297, + "step": 7700 + }, + { + "epoch": 6.897146648971466, + "grad_norm": 0.1722676306962967, + "learning_rate": 4.655216622458002e-05, + "loss": 0.9270682525634766, + "step": 7800 + }, + { + "epoch": 6.985622649856227, + "grad_norm": 0.18756897747516632, + "learning_rate": 4.65079575596817e-05, + "loss": 0.9234317779541016, + "step": 7900 + }, + { + "epoch": 7.073435080734351, + "grad_norm": 0.16759978234767914, + "learning_rate": 4.6463748894783384e-05, + "loss": 0.9213732147216797, + "step": 8000 + }, + { + "epoch": 7.1619110816191105, + "grad_norm": 0.15943242609500885, + "learning_rate": 4.641954022988506e-05, + "loss": 0.9243515014648438, + "step": 8100 + }, + { + "epoch": 7.250387082503871, + "grad_norm": 0.15444102883338928, + "learning_rate": 4.637533156498674e-05, + "loss": 0.9177332305908203, + "step": 8200 + }, + { + "epoch": 7.338863083388631, + "grad_norm": 0.17104187607765198, + "learning_rate": 4.633112290008842e-05, + "loss": 0.9199151611328125, + "step": 8300 + }, + { + "epoch": 7.427339084273391, + "grad_norm": 0.152462899684906, + "learning_rate": 4.62869142351901e-05, + "loss": 0.9231443786621094, + "step": 8400 + }, + { + "epoch": 7.515815085158151, + "grad_norm": 0.1663249433040619, + "learning_rate": 4.6242705570291777e-05, + "loss": 0.9231499481201172, + "step": 8500 + }, + { + "epoch": 7.6042910860429105, + "grad_norm": 0.1711215376853943, + "learning_rate": 4.6198496905393454e-05, + "loss": 0.9192819976806641, + "step": 8600 + }, + { + "epoch": 7.692767086927671, + "grad_norm": 0.1620834916830063, + "learning_rate": 4.6154288240495144e-05, + "loss": 0.9260062408447266, + "step": 8700 + }, + { + "epoch": 7.781243087812431, + "grad_norm": 0.16246546804904938, + "learning_rate": 4.611007957559682e-05, + "loss": 0.9250968933105469, + "step": 8800 + }, + { + "epoch": 7.869719088697191, + "grad_norm": 0.15757358074188232, + "learning_rate": 4.60658709106985e-05, + "loss": 0.9235149383544922, + "step": 8900 + }, + { + "epoch": 7.958195089581951, + "grad_norm": 0.15778206288814545, + "learning_rate": 4.602166224580018e-05, + "loss": 0.9173377227783203, + "step": 9000 + }, + { + "epoch": 8.046007520460075, + "grad_norm": 0.17259791493415833, + "learning_rate": 4.597745358090186e-05, + "loss": 0.9134017181396484, + "step": 9100 + }, + { + "epoch": 8.134483521344835, + "grad_norm": 0.1707502007484436, + "learning_rate": 4.5933244916003536e-05, + "loss": 0.9134098052978515, + "step": 9200 + }, + { + "epoch": 8.222959522229596, + "grad_norm": 0.1647530347108841, + "learning_rate": 4.5889036251105213e-05, + "loss": 0.9205097961425781, + "step": 9300 + }, + { + "epoch": 8.311435523114355, + "grad_norm": 0.16971947252750397, + "learning_rate": 4.5844827586206904e-05, + "loss": 0.9217983245849609, + "step": 9400 + }, + { + "epoch": 8.399911523999116, + "grad_norm": 0.15842877328395844, + "learning_rate": 4.580061892130858e-05, + "loss": 0.9172341918945313, + "step": 9500 + }, + { + "epoch": 8.488387524883874, + "grad_norm": 0.15321888029575348, + "learning_rate": 4.575641025641026e-05, + "loss": 0.9222029113769531, + "step": 9600 + }, + { + "epoch": 8.576863525768635, + "grad_norm": 0.17232707142829895, + "learning_rate": 4.5712201591511935e-05, + "loss": 0.9190543365478515, + "step": 9700 + }, + { + "epoch": 8.665339526653396, + "grad_norm": 0.14735591411590576, + "learning_rate": 4.566799292661362e-05, + "loss": 0.9193865203857422, + "step": 9800 + }, + { + "epoch": 8.753815527538155, + "grad_norm": 0.17929628491401672, + "learning_rate": 4.5623784261715296e-05, + "loss": 0.9178209686279297, + "step": 9900 + }, + { + "epoch": 8.842291528422916, + "grad_norm": 0.1546984612941742, + "learning_rate": 4.557957559681697e-05, + "loss": 0.9209825134277344, + "step": 10000 + }, + { + "epoch": 8.930767529307674, + "grad_norm": 0.16275030374526978, + "learning_rate": 4.553536693191866e-05, + "loss": 0.9219312286376953, + "step": 10100 + }, + { + "epoch": 9.0185799601858, + "grad_norm": 0.16977843642234802, + "learning_rate": 4.549115826702034e-05, + "loss": 0.9190888977050782, + "step": 10200 + }, + { + "epoch": 9.107055961070559, + "grad_norm": 0.16722118854522705, + "learning_rate": 4.544694960212202e-05, + "loss": 0.9173007202148438, + "step": 10300 + }, + { + "epoch": 9.19553196195532, + "grad_norm": 0.15637095272541046, + "learning_rate": 4.5402740937223695e-05, + "loss": 0.9152852630615235, + "step": 10400 + }, + { + "epoch": 9.28400796284008, + "grad_norm": 0.15433216094970703, + "learning_rate": 4.535853227232538e-05, + "loss": 0.9151573944091796, + "step": 10500 + }, + { + "epoch": 9.37248396372484, + "grad_norm": 0.15743562579154968, + "learning_rate": 4.5314323607427056e-05, + "loss": 0.9173799896240235, + "step": 10600 + }, + { + "epoch": 9.4609599646096, + "grad_norm": 0.1527981162071228, + "learning_rate": 4.527011494252873e-05, + "loss": 0.911611328125, + "step": 10700 + }, + { + "epoch": 9.549435965494359, + "grad_norm": 0.15745887160301208, + "learning_rate": 4.522590627763042e-05, + "loss": 0.9144339752197266, + "step": 10800 + }, + { + "epoch": 9.63791196637912, + "grad_norm": 0.1523962914943695, + "learning_rate": 4.51816976127321e-05, + "loss": 0.918481216430664, + "step": 10900 + }, + { + "epoch": 9.72638796726388, + "grad_norm": 0.17231452465057373, + "learning_rate": 4.513748894783378e-05, + "loss": 0.9197111511230469, + "step": 11000 + }, + { + "epoch": 9.81486396814864, + "grad_norm": 0.16348381340503693, + "learning_rate": 4.5093280282935455e-05, + "loss": 0.9151203918457032, + "step": 11100 + }, + { + "epoch": 9.9033399690334, + "grad_norm": 0.16555383801460266, + "learning_rate": 4.504907161803714e-05, + "loss": 0.9189680480957031, + "step": 11200 + }, + { + "epoch": 9.991815969918159, + "grad_norm": 0.16531047224998474, + "learning_rate": 4.5004862953138816e-05, + "loss": 0.9149074554443359, + "step": 11300 + }, + { + "epoch": 10.079628400796285, + "grad_norm": 0.1655273735523224, + "learning_rate": 4.496065428824049e-05, + "loss": 0.9143817138671875, + "step": 11400 + }, + { + "epoch": 10.168104401681044, + "grad_norm": 0.1795828938484192, + "learning_rate": 4.491644562334218e-05, + "loss": 0.911801986694336, + "step": 11500 + }, + { + "epoch": 10.256580402565804, + "grad_norm": 0.1684361696243286, + "learning_rate": 4.487223695844386e-05, + "loss": 0.910247802734375, + "step": 11600 + }, + { + "epoch": 10.345056403450563, + "grad_norm": 0.1620638519525528, + "learning_rate": 4.482802829354554e-05, + "loss": 0.9155111694335938, + "step": 11700 + }, + { + "epoch": 10.433532404335324, + "grad_norm": 0.1695495843887329, + "learning_rate": 4.4783819628647215e-05, + "loss": 0.9134779357910157, + "step": 11800 + }, + { + "epoch": 10.522008405220085, + "grad_norm": 0.18226753175258636, + "learning_rate": 4.47396109637489e-05, + "loss": 0.9143638610839844, + "step": 11900 + }, + { + "epoch": 10.610484406104844, + "grad_norm": 0.15289710462093353, + "learning_rate": 4.4695402298850576e-05, + "loss": 0.9122061157226562, + "step": 12000 + }, + { + "epoch": 10.698960406989604, + "grad_norm": 0.15486228466033936, + "learning_rate": 4.465119363395225e-05, + "loss": 0.9148915863037109, + "step": 12100 + }, + { + "epoch": 10.787436407874363, + "grad_norm": 0.17585019767284393, + "learning_rate": 4.4606984969053937e-05, + "loss": 0.9163182830810547, + "step": 12200 + }, + { + "epoch": 10.875912408759124, + "grad_norm": 0.158732071518898, + "learning_rate": 4.456277630415562e-05, + "loss": 0.9148865509033203, + "step": 12300 + }, + { + "epoch": 10.964388409643885, + "grad_norm": 0.15901361405849457, + "learning_rate": 4.45185676392573e-05, + "loss": 0.9184156799316406, + "step": 12400 + }, + { + "epoch": 11.052200840522008, + "grad_norm": 0.15289290249347687, + "learning_rate": 4.4474358974358974e-05, + "loss": 0.910323486328125, + "step": 12500 + }, + { + "epoch": 11.14067684140677, + "grad_norm": 0.14922171831130981, + "learning_rate": 4.443015030946066e-05, + "loss": 0.9092740631103515, + "step": 12600 + }, + { + "epoch": 11.229152842291528, + "grad_norm": 0.1710701584815979, + "learning_rate": 4.4385941644562335e-05, + "loss": 0.909953842163086, + "step": 12700 + }, + { + "epoch": 11.317628843176289, + "grad_norm": 0.16967815160751343, + "learning_rate": 4.434173297966401e-05, + "loss": 0.9069422912597657, + "step": 12800 + }, + { + "epoch": 11.406104844061048, + "grad_norm": 0.16896069049835205, + "learning_rate": 4.4297524314765696e-05, + "loss": 0.9166646575927735, + "step": 12900 + }, + { + "epoch": 11.494580844945808, + "grad_norm": 0.16996079683303833, + "learning_rate": 4.425331564986738e-05, + "loss": 0.9114566040039063, + "step": 13000 + }, + { + "epoch": 11.58305684583057, + "grad_norm": 0.16553319990634918, + "learning_rate": 4.420910698496906e-05, + "loss": 0.9121807098388672, + "step": 13100 + }, + { + "epoch": 11.671532846715328, + "grad_norm": 0.1629258692264557, + "learning_rate": 4.4164898320070734e-05, + "loss": 0.904563217163086, + "step": 13200 + }, + { + "epoch": 11.760008847600089, + "grad_norm": 0.1660201996564865, + "learning_rate": 4.412068965517241e-05, + "loss": 0.9116962432861329, + "step": 13300 + }, + { + "epoch": 11.848484848484848, + "grad_norm": 0.16493095457553864, + "learning_rate": 4.4076480990274095e-05, + "loss": 0.9136554718017578, + "step": 13400 + }, + { + "epoch": 11.936960849369608, + "grad_norm": 0.15279296040534973, + "learning_rate": 4.403227232537578e-05, + "loss": 0.9120658874511719, + "step": 13500 + }, + { + "epoch": 12.024773280247732, + "grad_norm": 0.16151593625545502, + "learning_rate": 4.3988063660477456e-05, + "loss": 0.9155186462402344, + "step": 13600 + }, + { + "epoch": 12.113249281132493, + "grad_norm": 0.16777871549129486, + "learning_rate": 4.394385499557914e-05, + "loss": 0.9070235443115234, + "step": 13700 + }, + { + "epoch": 12.201725282017254, + "grad_norm": 0.15052072703838348, + "learning_rate": 4.389964633068082e-05, + "loss": 0.9057080078125, + "step": 13800 + }, + { + "epoch": 12.290201282902013, + "grad_norm": 0.17466743290424347, + "learning_rate": 4.3855437665782494e-05, + "loss": 0.9058401489257812, + "step": 13900 + }, + { + "epoch": 12.378677283786773, + "grad_norm": 0.17788690328598022, + "learning_rate": 4.381122900088417e-05, + "loss": 0.9058721923828125, + "step": 14000 + }, + { + "epoch": 12.467153284671532, + "grad_norm": 0.17527516186237335, + "learning_rate": 4.3767020335985855e-05, + "loss": 0.908851089477539, + "step": 14100 + }, + { + "epoch": 12.555629285556293, + "grad_norm": 0.17999336123466492, + "learning_rate": 4.372281167108754e-05, + "loss": 0.9110614013671875, + "step": 14200 + }, + { + "epoch": 12.644105286441054, + "grad_norm": 0.1635061800479889, + "learning_rate": 4.3678603006189216e-05, + "loss": 0.9081086730957031, + "step": 14300 + }, + { + "epoch": 12.732581287325813, + "grad_norm": 0.1813993752002716, + "learning_rate": 4.363439434129089e-05, + "loss": 0.9091014862060547, + "step": 14400 + }, + { + "epoch": 12.821057288210573, + "grad_norm": 0.17487457394599915, + "learning_rate": 4.359018567639258e-05, + "loss": 0.9076325988769531, + "step": 14500 + }, + { + "epoch": 12.909533289095332, + "grad_norm": 0.17149627208709717, + "learning_rate": 4.3545977011494254e-05, + "loss": 0.9064749908447266, + "step": 14600 + }, + { + "epoch": 12.998009289980093, + "grad_norm": 0.16990207135677338, + "learning_rate": 4.350176834659593e-05, + "loss": 0.911828384399414, + "step": 14700 + }, + { + "epoch": 13.085821720858217, + "grad_norm": 0.16583888232707977, + "learning_rate": 4.3458001768346594e-05, + "loss": 0.9017422485351563, + "step": 14800 + }, + { + "epoch": 13.174297721742978, + "grad_norm": 0.1644158959388733, + "learning_rate": 4.341379310344828e-05, + "loss": 0.9052355194091797, + "step": 14900 + }, + { + "epoch": 13.262773722627736, + "grad_norm": 0.1759374737739563, + "learning_rate": 4.336958443854996e-05, + "loss": 0.9027067565917969, + "step": 15000 + }, + { + "epoch": 13.351249723512497, + "grad_norm": 0.1623755842447281, + "learning_rate": 4.332537577365164e-05, + "loss": 0.9078491973876953, + "step": 15100 + }, + { + "epoch": 13.439725724397258, + "grad_norm": 0.15563324093818665, + "learning_rate": 4.3281167108753316e-05, + "loss": 0.9046826171875, + "step": 15200 + }, + { + "epoch": 13.528201725282017, + "grad_norm": 0.1762174814939499, + "learning_rate": 4.3236958443855e-05, + "loss": 0.9070060729980469, + "step": 15300 + }, + { + "epoch": 13.616677726166778, + "grad_norm": 0.1598447859287262, + "learning_rate": 4.319274977895668e-05, + "loss": 0.907843017578125, + "step": 15400 + }, + { + "epoch": 13.705153727051536, + "grad_norm": 0.17838729918003082, + "learning_rate": 4.3148541114058354e-05, + "loss": 0.9077598571777343, + "step": 15500 + }, + { + "epoch": 13.793629727936297, + "grad_norm": 0.16615167260169983, + "learning_rate": 4.310433244916004e-05, + "loss": 0.9041740417480468, + "step": 15600 + }, + { + "epoch": 13.882105728821058, + "grad_norm": 0.16463759541511536, + "learning_rate": 4.306012378426172e-05, + "loss": 0.9023047637939453, + "step": 15700 + }, + { + "epoch": 13.970581729705817, + "grad_norm": 0.1562959849834442, + "learning_rate": 4.30159151193634e-05, + "loss": 0.902835693359375, + "step": 15800 + }, + { + "epoch": 14.058394160583942, + "grad_norm": 0.16919565200805664, + "learning_rate": 4.2971706454465076e-05, + "loss": 0.8998876953125, + "step": 15900 + }, + { + "epoch": 14.146870161468701, + "grad_norm": 0.16513022780418396, + "learning_rate": 4.292749778956676e-05, + "loss": 0.9023524475097656, + "step": 16000 + }, + { + "epoch": 14.235346162353462, + "grad_norm": 0.173946812748909, + "learning_rate": 4.288328912466844e-05, + "loss": 0.8980498504638672, + "step": 16100 + }, + { + "epoch": 14.323822163238221, + "grad_norm": 0.16749872267246246, + "learning_rate": 4.2839080459770114e-05, + "loss": 0.9026957702636719, + "step": 16200 + }, + { + "epoch": 14.412298164122982, + "grad_norm": 0.17985551059246063, + "learning_rate": 4.27948717948718e-05, + "loss": 0.9012105560302734, + "step": 16300 + }, + { + "epoch": 14.500774165007742, + "grad_norm": 0.18807820975780487, + "learning_rate": 4.275066312997348e-05, + "loss": 0.9014115905761719, + "step": 16400 + }, + { + "epoch": 14.589250165892501, + "grad_norm": 0.17243777215480804, + "learning_rate": 4.270645446507516e-05, + "loss": 0.9028221893310547, + "step": 16500 + }, + { + "epoch": 14.677726166777262, + "grad_norm": 0.1674414724111557, + "learning_rate": 4.2662245800176836e-05, + "loss": 0.9017185974121094, + "step": 16600 + }, + { + "epoch": 14.766202167662021, + "grad_norm": 0.17522333562374115, + "learning_rate": 4.261803713527851e-05, + "loss": 0.8989543914794922, + "step": 16700 + }, + { + "epoch": 14.854678168546782, + "grad_norm": 0.16300654411315918, + "learning_rate": 4.2573828470380197e-05, + "loss": 0.9001253509521484, + "step": 16800 + }, + { + "epoch": 14.943154169431542, + "grad_norm": 0.1702653169631958, + "learning_rate": 4.2529619805481874e-05, + "loss": 0.9020176696777343, + "step": 16900 + }, + { + "epoch": 15.030966600309666, + "grad_norm": 0.1752340942621231, + "learning_rate": 4.2485853227232544e-05, + "loss": 0.8990335083007812, + "step": 17000 + }, + { + "epoch": 15.119442601194425, + "grad_norm": 0.17765584588050842, + "learning_rate": 4.244164456233422e-05, + "loss": 0.8885309600830078, + "step": 17100 + }, + { + "epoch": 15.207918602079186, + "grad_norm": 0.18404972553253174, + "learning_rate": 4.23974358974359e-05, + "loss": 0.8915805816650391, + "step": 17200 + }, + { + "epoch": 15.296394602963947, + "grad_norm": 0.17206765711307526, + "learning_rate": 4.235322723253758e-05, + "loss": 0.8898361968994141, + "step": 17300 + }, + { + "epoch": 15.384870603848706, + "grad_norm": 0.19998455047607422, + "learning_rate": 4.230901856763926e-05, + "loss": 0.8957837677001953, + "step": 17400 + }, + { + "epoch": 15.473346604733466, + "grad_norm": 0.19454777240753174, + "learning_rate": 4.2264809902740936e-05, + "loss": 0.8990544891357422, + "step": 17500 + }, + { + "epoch": 15.561822605618225, + "grad_norm": 0.17281410098075867, + "learning_rate": 4.222060123784262e-05, + "loss": 0.8996484375, + "step": 17600 + }, + { + "epoch": 15.650298606502986, + "grad_norm": 0.1906009018421173, + "learning_rate": 4.21763925729443e-05, + "loss": 0.9032618713378906, + "step": 17700 + }, + { + "epoch": 15.738774607387747, + "grad_norm": 0.17282316088676453, + "learning_rate": 4.213218390804598e-05, + "loss": 0.8986404418945313, + "step": 17800 + }, + { + "epoch": 15.827250608272506, + "grad_norm": 0.18802666664123535, + "learning_rate": 4.208797524314766e-05, + "loss": 0.8964502716064453, + "step": 17900 + }, + { + "epoch": 15.915726609157266, + "grad_norm": 0.19853872060775757, + "learning_rate": 4.204376657824934e-05, + "loss": 0.9032749938964844, + "step": 18000 + }, + { + "epoch": 16.003539040035392, + "grad_norm": 0.18812181055545807, + "learning_rate": 4.199955791335102e-05, + "loss": 0.8991973876953125, + "step": 18100 + }, + { + "epoch": 16.09201504092015, + "grad_norm": 0.1644710898399353, + "learning_rate": 4.1955349248452695e-05, + "loss": 0.8866680908203125, + "step": 18200 + }, + { + "epoch": 16.18049104180491, + "grad_norm": 0.1884208619594574, + "learning_rate": 4.191114058355438e-05, + "loss": 0.8872537994384766, + "step": 18300 + }, + { + "epoch": 16.26896704268967, + "grad_norm": 0.1828072965145111, + "learning_rate": 4.186693191865606e-05, + "loss": 0.8902882385253906, + "step": 18400 + }, + { + "epoch": 16.35744304357443, + "grad_norm": 0.19119146466255188, + "learning_rate": 4.182272325375774e-05, + "loss": 0.8903806304931641, + "step": 18500 + }, + { + "epoch": 16.445919044459192, + "grad_norm": 0.20727571845054626, + "learning_rate": 4.177851458885942e-05, + "loss": 0.8952965545654297, + "step": 18600 + }, + { + "epoch": 16.53439504534395, + "grad_norm": 0.18735922873020172, + "learning_rate": 4.17343059239611e-05, + "loss": 0.8870563507080078, + "step": 18700 + }, + { + "epoch": 16.62287104622871, + "grad_norm": 0.1973799169063568, + "learning_rate": 4.169009725906278e-05, + "loss": 0.8974028778076172, + "step": 18800 + }, + { + "epoch": 16.71134704711347, + "grad_norm": 0.20604746043682098, + "learning_rate": 4.1645888594164455e-05, + "loss": 0.8937057495117188, + "step": 18900 + }, + { + "epoch": 16.79982304799823, + "grad_norm": 0.18150219321250916, + "learning_rate": 4.160167992926614e-05, + "loss": 0.8935442352294922, + "step": 19000 + }, + { + "epoch": 16.888299048882992, + "grad_norm": 0.18340304493904114, + "learning_rate": 4.155747126436782e-05, + "loss": 0.8885797119140625, + "step": 19100 + }, + { + "epoch": 16.97677504976775, + "grad_norm": 0.2073577493429184, + "learning_rate": 4.15132625994695e-05, + "loss": 0.8951002502441406, + "step": 19200 + }, + { + "epoch": 17.064587480645876, + "grad_norm": 0.17697007954120636, + "learning_rate": 4.146949602122016e-05, + "loss": 0.8879679870605469, + "step": 19300 + }, + { + "epoch": 17.153063481530634, + "grad_norm": 0.20899821817874908, + "learning_rate": 4.142528735632184e-05, + "loss": 0.8794329833984375, + "step": 19400 + }, + { + "epoch": 17.241539482415394, + "grad_norm": 0.18147091567516327, + "learning_rate": 4.138107869142352e-05, + "loss": 0.8802722930908203, + "step": 19500 + }, + { + "epoch": 17.330015483300155, + "grad_norm": 0.20257830619812012, + "learning_rate": 4.13368700265252e-05, + "loss": 0.8870145416259766, + "step": 19600 + }, + { + "epoch": 17.418491484184916, + "grad_norm": 0.20231416821479797, + "learning_rate": 4.1292661361626885e-05, + "loss": 0.8838448333740234, + "step": 19700 + }, + { + "epoch": 17.506967485069676, + "grad_norm": 0.18214623630046844, + "learning_rate": 4.124845269672856e-05, + "loss": 0.8879763793945312, + "step": 19800 + }, + { + "epoch": 17.595443485954434, + "grad_norm": 0.18666088581085205, + "learning_rate": 4.120424403183024e-05, + "loss": 0.8885836029052734, + "step": 19900 + }, + { + "epoch": 17.683919486839194, + "grad_norm": 0.20308583974838257, + "learning_rate": 4.116003536693192e-05, + "loss": 0.8843843078613282, + "step": 20000 + }, + { + "epoch": 17.772395487723955, + "grad_norm": 0.18726830184459686, + "learning_rate": 4.11158267020336e-05, + "loss": 0.8865486145019531, + "step": 20100 + }, + { + "epoch": 17.860871488608716, + "grad_norm": 0.17878851294517517, + "learning_rate": 4.107161803713528e-05, + "loss": 0.8883515930175782, + "step": 20200 + }, + { + "epoch": 17.949347489493476, + "grad_norm": 0.1849307119846344, + "learning_rate": 4.102740937223696e-05, + "loss": 0.8914216613769531, + "step": 20300 + }, + { + "epoch": 18.0371599203716, + "grad_norm": 0.22315239906311035, + "learning_rate": 4.0983200707338645e-05, + "loss": 0.88252197265625, + "step": 20400 + }, + { + "epoch": 18.12563592125636, + "grad_norm": 0.18446321785449982, + "learning_rate": 4.093899204244032e-05, + "loss": 0.8717878723144531, + "step": 20500 + }, + { + "epoch": 18.214111922141118, + "grad_norm": 0.21541251242160797, + "learning_rate": 4.0894783377542e-05, + "loss": 0.8750727844238281, + "step": 20600 + }, + { + "epoch": 18.30258792302588, + "grad_norm": 0.22268827259540558, + "learning_rate": 4.085057471264368e-05, + "loss": 0.8760640716552734, + "step": 20700 + }, + { + "epoch": 18.39106392391064, + "grad_norm": 0.2207673043012619, + "learning_rate": 4.080636604774536e-05, + "loss": 0.876912841796875, + "step": 20800 + }, + { + "epoch": 18.4795399247954, + "grad_norm": 0.21988292038440704, + "learning_rate": 4.076215738284704e-05, + "loss": 0.8794302368164062, + "step": 20900 + }, + { + "epoch": 18.56801592568016, + "grad_norm": 0.2057323008775711, + "learning_rate": 4.0717948717948714e-05, + "loss": 0.8795650482177735, + "step": 21000 + }, + { + "epoch": 18.656491926564918, + "grad_norm": 0.19854794442653656, + "learning_rate": 4.0673740053050405e-05, + "loss": 0.8824103546142578, + "step": 21100 + }, + { + "epoch": 18.74496792744968, + "grad_norm": 0.2183123230934143, + "learning_rate": 4.062953138815208e-05, + "loss": 0.8792383575439453, + "step": 21200 + }, + { + "epoch": 18.83344392833444, + "grad_norm": 0.20326419174671173, + "learning_rate": 4.058532272325376e-05, + "loss": 0.8834226989746093, + "step": 21300 + }, + { + "epoch": 18.9219199292192, + "grad_norm": 0.20735788345336914, + "learning_rate": 4.054111405835544e-05, + "loss": 0.8820342254638672, + "step": 21400 + }, + { + "epoch": 19.009732360097324, + "grad_norm": 0.2023264467716217, + "learning_rate": 4.04973474801061e-05, + "loss": 0.8843944549560547, + "step": 21500 + }, + { + "epoch": 19.098208360982085, + "grad_norm": 0.21148885786533356, + "learning_rate": 4.045313881520778e-05, + "loss": 0.8647132110595703, + "step": 21600 + }, + { + "epoch": 19.186684361866842, + "grad_norm": 0.2251083254814148, + "learning_rate": 4.040893015030947e-05, + "loss": 0.866364974975586, + "step": 21700 + }, + { + "epoch": 19.275160362751603, + "grad_norm": 0.23524972796440125, + "learning_rate": 4.0364721485411144e-05, + "loss": 0.8736127471923828, + "step": 21800 + }, + { + "epoch": 19.363636363636363, + "grad_norm": 0.21772760152816772, + "learning_rate": 4.032051282051282e-05, + "loss": 0.8692568206787109, + "step": 21900 + }, + { + "epoch": 19.452112364521124, + "grad_norm": 0.2125358134508133, + "learning_rate": 4.0276304155614505e-05, + "loss": 0.8706926727294921, + "step": 22000 + }, + { + "epoch": 19.540588365405885, + "grad_norm": 0.22768475115299225, + "learning_rate": 4.023209549071618e-05, + "loss": 0.8674411010742188, + "step": 22100 + }, + { + "epoch": 19.629064366290642, + "grad_norm": 0.2211151272058487, + "learning_rate": 4.018788682581786e-05, + "loss": 0.8749802398681641, + "step": 22200 + }, + { + "epoch": 19.717540367175403, + "grad_norm": 0.21814538538455963, + "learning_rate": 4.014367816091954e-05, + "loss": 0.8754036712646485, + "step": 22300 + }, + { + "epoch": 19.806016368060163, + "grad_norm": 0.2030419558286667, + "learning_rate": 4.0099469496021226e-05, + "loss": 0.8714677429199219, + "step": 22400 + }, + { + "epoch": 19.894492368944924, + "grad_norm": 0.21472303569316864, + "learning_rate": 4.0055260831122904e-05, + "loss": 0.8727165222167969, + "step": 22500 + }, + { + "epoch": 19.982968369829685, + "grad_norm": 0.20911096036434174, + "learning_rate": 4.001105216622458e-05, + "loss": 0.8781427764892578, + "step": 22600 + }, + { + "epoch": 20.07078080070781, + "grad_norm": 0.2304856926202774, + "learning_rate": 3.9966843501326264e-05, + "loss": 0.8589347076416015, + "step": 22700 + }, + { + "epoch": 20.15925680159257, + "grad_norm": 0.23650145530700684, + "learning_rate": 3.992263483642794e-05, + "loss": 0.8598684692382812, + "step": 22800 + }, + { + "epoch": 20.247732802477326, + "grad_norm": 0.21773482859134674, + "learning_rate": 3.987842617152962e-05, + "loss": 0.8605601501464843, + "step": 22900 + }, + { + "epoch": 20.336208803362087, + "grad_norm": 0.2237112671136856, + "learning_rate": 3.98342175066313e-05, + "loss": 0.8617141723632813, + "step": 23000 + }, + { + "epoch": 20.424684804246848, + "grad_norm": 0.24452048540115356, + "learning_rate": 3.9790008841732986e-05, + "loss": 0.8622699737548828, + "step": 23100 + }, + { + "epoch": 20.51316080513161, + "grad_norm": 0.21587280929088593, + "learning_rate": 3.974580017683466e-05, + "loss": 0.8637493896484375, + "step": 23200 + }, + { + "epoch": 20.60163680601637, + "grad_norm": 0.2406671941280365, + "learning_rate": 3.970159151193634e-05, + "loss": 0.859559555053711, + "step": 23300 + }, + { + "epoch": 20.690112806901126, + "grad_norm": 0.22845898568630219, + "learning_rate": 3.9657382847038024e-05, + "loss": 0.8662923431396484, + "step": 23400 + }, + { + "epoch": 20.778588807785887, + "grad_norm": 0.24683597683906555, + "learning_rate": 3.96131741821397e-05, + "loss": 0.8673475646972656, + "step": 23500 + }, + { + "epoch": 20.867064808670648, + "grad_norm": 0.22459226846694946, + "learning_rate": 3.956896551724138e-05, + "loss": 0.8640863037109375, + "step": 23600 + }, + { + "epoch": 20.95554080955541, + "grad_norm": 0.23616963624954224, + "learning_rate": 3.952475685234306e-05, + "loss": 0.8678861236572266, + "step": 23700 + }, + { + "epoch": 21.043353240433532, + "grad_norm": 0.22973845899105072, + "learning_rate": 3.9480990274093725e-05, + "loss": 0.8580598449707031, + "step": 23800 + }, + { + "epoch": 21.131829241318293, + "grad_norm": 0.2424720972776413, + "learning_rate": 3.94367816091954e-05, + "loss": 0.8460955810546875, + "step": 23900 + }, + { + "epoch": 21.220305242203054, + "grad_norm": 0.2528146505355835, + "learning_rate": 3.9392572944297086e-05, + "loss": 0.8499996185302734, + "step": 24000 + }, + { + "epoch": 21.30878124308781, + "grad_norm": 0.2518126666545868, + "learning_rate": 3.9348364279398763e-05, + "loss": 0.8534349060058594, + "step": 24100 + }, + { + "epoch": 21.39725724397257, + "grad_norm": 0.2305818349123001, + "learning_rate": 3.930415561450044e-05, + "loss": 0.84900146484375, + "step": 24200 + }, + { + "epoch": 21.485733244857332, + "grad_norm": 0.25653600692749023, + "learning_rate": 3.9259946949602124e-05, + "loss": 0.8542990875244141, + "step": 24300 + }, + { + "epoch": 21.574209245742093, + "grad_norm": 0.2712801992893219, + "learning_rate": 3.92157382847038e-05, + "loss": 0.8558815002441407, + "step": 24400 + }, + { + "epoch": 21.662685246626854, + "grad_norm": 0.273328959941864, + "learning_rate": 3.9171529619805485e-05, + "loss": 0.8555754089355468, + "step": 24500 + }, + { + "epoch": 21.75116124751161, + "grad_norm": 0.2668614089488983, + "learning_rate": 3.912732095490716e-05, + "loss": 0.8587675476074219, + "step": 24600 + }, + { + "epoch": 21.83963724839637, + "grad_norm": 0.24395836889743805, + "learning_rate": 3.9083112290008846e-05, + "loss": 0.8572028350830078, + "step": 24700 + }, + { + "epoch": 21.928113249281132, + "grad_norm": 0.24808812141418457, + "learning_rate": 3.903890362511052e-05, + "loss": 0.8579219055175781, + "step": 24800 + }, + { + "epoch": 22.015925680159256, + "grad_norm": 0.2587817311286926, + "learning_rate": 3.89946949602122e-05, + "loss": 0.8512050628662109, + "step": 24900 + }, + { + "epoch": 22.104401681044017, + "grad_norm": 0.26175108551979065, + "learning_rate": 3.8950486295313884e-05, + "loss": 0.8361199188232422, + "step": 25000 + }, + { + "epoch": 22.192877681928778, + "grad_norm": 0.2715345025062561, + "learning_rate": 3.890627763041556e-05, + "loss": 0.8399204254150391, + "step": 25100 + }, + { + "epoch": 22.28135368281354, + "grad_norm": 0.27675682306289673, + "learning_rate": 3.8862068965517245e-05, + "loss": 0.8378430938720703, + "step": 25200 + }, + { + "epoch": 22.369829683698295, + "grad_norm": 0.26540565490722656, + "learning_rate": 3.881786030061892e-05, + "loss": 0.8397164916992188, + "step": 25300 + }, + { + "epoch": 22.458305684583056, + "grad_norm": 0.2754775285720825, + "learning_rate": 3.8773651635720606e-05, + "loss": 0.8450184631347656, + "step": 25400 + }, + { + "epoch": 22.546781685467817, + "grad_norm": 0.2393341213464737, + "learning_rate": 3.872944297082228e-05, + "loss": 0.8427618408203125, + "step": 25500 + }, + { + "epoch": 22.635257686352578, + "grad_norm": 0.23895791172981262, + "learning_rate": 3.868523430592396e-05, + "loss": 0.8457352447509766, + "step": 25600 + }, + { + "epoch": 22.72373368723734, + "grad_norm": 0.26955941319465637, + "learning_rate": 3.8641025641025644e-05, + "loss": 0.849469223022461, + "step": 25700 + }, + { + "epoch": 22.812209688122095, + "grad_norm": 0.23746059834957123, + "learning_rate": 3.859681697612732e-05, + "loss": 0.8469708251953125, + "step": 25800 + }, + { + "epoch": 22.900685689006856, + "grad_norm": 0.2649519145488739, + "learning_rate": 3.8552608311229005e-05, + "loss": 0.849559326171875, + "step": 25900 + }, + { + "epoch": 22.989161689891617, + "grad_norm": 0.27285081148147583, + "learning_rate": 3.850839964633068e-05, + "loss": 0.8485184478759765, + "step": 26000 + }, + { + "epoch": 23.07697412076974, + "grad_norm": 0.27895936369895935, + "learning_rate": 3.8464633068081345e-05, + "loss": 0.8252901458740234, + "step": 26100 + }, + { + "epoch": 23.1654501216545, + "grad_norm": 0.2652367055416107, + "learning_rate": 3.842042440318302e-05, + "loss": 0.8263906097412109, + "step": 26200 + }, + { + "epoch": 23.253926122539262, + "grad_norm": 0.2835598886013031, + "learning_rate": 3.8376215738284706e-05, + "loss": 0.8287677001953125, + "step": 26300 + }, + { + "epoch": 23.342402123424023, + "grad_norm": 0.2834433615207672, + "learning_rate": 3.833200707338638e-05, + "loss": 0.8309012603759766, + "step": 26400 + }, + { + "epoch": 23.43087812430878, + "grad_norm": 0.2998100817203522, + "learning_rate": 3.828779840848807e-05, + "loss": 0.8311166381835937, + "step": 26500 + }, + { + "epoch": 23.51935412519354, + "grad_norm": 0.29382187128067017, + "learning_rate": 3.8243589743589744e-05, + "loss": 0.8325238037109375, + "step": 26600 + }, + { + "epoch": 23.6078301260783, + "grad_norm": 0.2950701415538788, + "learning_rate": 3.819938107869143e-05, + "loss": 0.8368535614013672, + "step": 26700 + }, + { + "epoch": 23.696306126963062, + "grad_norm": 0.287801057100296, + "learning_rate": 3.8155172413793105e-05, + "loss": 0.833930435180664, + "step": 26800 + }, + { + "epoch": 23.784782127847823, + "grad_norm": 0.33100536465644836, + "learning_rate": 3.811096374889478e-05, + "loss": 0.8386001586914062, + "step": 26900 + }, + { + "epoch": 23.87325812873258, + "grad_norm": 0.2911369800567627, + "learning_rate": 3.8066755083996466e-05, + "loss": 0.8410533905029297, + "step": 27000 + }, + { + "epoch": 23.96173412961734, + "grad_norm": 0.26980099081993103, + "learning_rate": 3.802254641909814e-05, + "loss": 0.8360975646972656, + "step": 27100 + }, + { + "epoch": 24.049546560495465, + "grad_norm": 0.3001425862312317, + "learning_rate": 3.797833775419983e-05, + "loss": 0.8234864044189453, + "step": 27200 + }, + { + "epoch": 24.138022561380225, + "grad_norm": 0.27798378467559814, + "learning_rate": 3.7934129089301504e-05, + "loss": 0.8135331726074219, + "step": 27300 + }, + { + "epoch": 24.226498562264986, + "grad_norm": 0.2736954689025879, + "learning_rate": 3.788992042440319e-05, + "loss": 0.8113047027587891, + "step": 27400 + }, + { + "epoch": 24.314974563149747, + "grad_norm": 0.29235804080963135, + "learning_rate": 3.7845711759504865e-05, + "loss": 0.8171870422363281, + "step": 27500 + }, + { + "epoch": 24.403450564034507, + "grad_norm": 0.2878233790397644, + "learning_rate": 3.780150309460654e-05, + "loss": 0.8170029449462891, + "step": 27600 + }, + { + "epoch": 24.491926564919265, + "grad_norm": 0.31602925062179565, + "learning_rate": 3.7757294429708226e-05, + "loss": 0.8223928833007812, + "step": 27700 + }, + { + "epoch": 24.580402565804025, + "grad_norm": 0.3145372271537781, + "learning_rate": 3.77130857648099e-05, + "loss": 0.8257860565185546, + "step": 27800 + }, + { + "epoch": 24.668878566688786, + "grad_norm": 0.30716991424560547, + "learning_rate": 3.7668877099911587e-05, + "loss": 0.8240725708007812, + "step": 27900 + }, + { + "epoch": 24.757354567573547, + "grad_norm": 0.28368160128593445, + "learning_rate": 3.7624668435013264e-05, + "loss": 0.825384521484375, + "step": 28000 + }, + { + "epoch": 24.845830568458307, + "grad_norm": 0.2867664694786072, + "learning_rate": 3.758045977011495e-05, + "loss": 0.8270760345458984, + "step": 28100 + }, + { + "epoch": 24.934306569343065, + "grad_norm": 0.28817129135131836, + "learning_rate": 3.7536251105216624e-05, + "loss": 0.8286974334716797, + "step": 28200 + }, + { + "epoch": 25.02211900022119, + "grad_norm": 0.3106354773044586, + "learning_rate": 3.749248452696729e-05, + "loss": 0.82120849609375, + "step": 28300 + }, + { + "epoch": 25.11059500110595, + "grad_norm": 0.3304692506790161, + "learning_rate": 3.7448275862068965e-05, + "loss": 0.8016901397705078, + "step": 28400 + }, + { + "epoch": 25.19907100199071, + "grad_norm": 0.3065616488456726, + "learning_rate": 3.740406719717064e-05, + "loss": 0.8027448272705078, + "step": 28500 + }, + { + "epoch": 25.28754700287547, + "grad_norm": 0.3456852436065674, + "learning_rate": 3.735985853227233e-05, + "loss": 0.8046049499511718, + "step": 28600 + }, + { + "epoch": 25.37602300376023, + "grad_norm": 0.3011663556098938, + "learning_rate": 3.731564986737401e-05, + "loss": 0.8079199981689453, + "step": 28700 + }, + { + "epoch": 25.46449900464499, + "grad_norm": 0.3659413158893585, + "learning_rate": 3.7271441202475687e-05, + "loss": 0.8079922485351563, + "step": 28800 + }, + { + "epoch": 25.55297500552975, + "grad_norm": 0.3281838595867157, + "learning_rate": 3.7227232537577364e-05, + "loss": 0.8134046173095704, + "step": 28900 + }, + { + "epoch": 25.64145100641451, + "grad_norm": 0.3106602132320404, + "learning_rate": 3.718302387267905e-05, + "loss": 0.8104205322265625, + "step": 29000 + }, + { + "epoch": 25.72992700729927, + "grad_norm": 0.3320154845714569, + "learning_rate": 3.7138815207780725e-05, + "loss": 0.8142304992675782, + "step": 29100 + }, + { + "epoch": 25.81840300818403, + "grad_norm": 0.3355977535247803, + "learning_rate": 3.70946065428824e-05, + "loss": 0.8125243377685547, + "step": 29200 + }, + { + "epoch": 25.90687900906879, + "grad_norm": 0.3472290635108948, + "learning_rate": 3.7050397877984085e-05, + "loss": 0.8146660614013672, + "step": 29300 + }, + { + "epoch": 25.99535500995355, + "grad_norm": 0.31780678033828735, + "learning_rate": 3.700618921308577e-05, + "loss": 0.8169705200195313, + "step": 29400 + }, + { + "epoch": 26.083167440831673, + "grad_norm": 0.3046151101589203, + "learning_rate": 3.6961980548187446e-05, + "loss": 0.7894915008544922, + "step": 29500 + }, + { + "epoch": 26.171643441716434, + "grad_norm": 0.3560829162597656, + "learning_rate": 3.6917771883289123e-05, + "loss": 0.7867289733886719, + "step": 29600 + }, + { + "epoch": 26.260119442601194, + "grad_norm": 0.33036884665489197, + "learning_rate": 3.687356321839081e-05, + "loss": 0.7914912414550781, + "step": 29700 + }, + { + "epoch": 26.348595443485955, + "grad_norm": 0.3302215039730072, + "learning_rate": 3.6829354553492484e-05, + "loss": 0.7926998901367187, + "step": 29800 + }, + { + "epoch": 26.437071444370716, + "grad_norm": 0.33766239881515503, + "learning_rate": 3.678514588859416e-05, + "loss": 0.7958551788330078, + "step": 29900 + }, + { + "epoch": 26.525547445255473, + "grad_norm": 0.34900912642478943, + "learning_rate": 3.6740937223695845e-05, + "loss": 0.7958287811279297, + "step": 30000 + }, + { + "epoch": 26.614023446140234, + "grad_norm": 0.3290475010871887, + "learning_rate": 3.669672855879753e-05, + "loss": 0.7994923400878906, + "step": 30100 + }, + { + "epoch": 26.702499447024994, + "grad_norm": 0.3304896950721741, + "learning_rate": 3.6652519893899206e-05, + "loss": 0.8000531005859375, + "step": 30200 + }, + { + "epoch": 26.790975447909755, + "grad_norm": 0.32132837176322937, + "learning_rate": 3.660831122900088e-05, + "loss": 0.8006639862060547, + "step": 30300 + }, + { + "epoch": 26.879451448794516, + "grad_norm": 0.3341081142425537, + "learning_rate": 3.656410256410257e-05, + "loss": 0.8037942504882812, + "step": 30400 + }, + { + "epoch": 26.967927449679273, + "grad_norm": 0.3406025171279907, + "learning_rate": 3.6519893899204244e-05, + "loss": 0.8009793853759766, + "step": 30500 + }, + { + "epoch": 27.0557398805574, + "grad_norm": 0.3396868109703064, + "learning_rate": 3.647568523430592e-05, + "loss": 0.7846424865722657, + "step": 30600 + }, + { + "epoch": 27.144215881442157, + "grad_norm": 0.33319470286369324, + "learning_rate": 3.6431476569407605e-05, + "loss": 0.7724665832519532, + "step": 30700 + }, + { + "epoch": 27.232691882326918, + "grad_norm": 0.38071826100349426, + "learning_rate": 3.638726790450929e-05, + "loss": 0.7791647338867187, + "step": 30800 + }, + { + "epoch": 27.32116788321168, + "grad_norm": 0.3640372157096863, + "learning_rate": 3.6343059239610966e-05, + "loss": 0.778485107421875, + "step": 30900 + }, + { + "epoch": 27.40964388409644, + "grad_norm": 0.34701183438301086, + "learning_rate": 3.629885057471264e-05, + "loss": 0.7812682342529297, + "step": 31000 + }, + { + "epoch": 27.4981198849812, + "grad_norm": 0.34723395109176636, + "learning_rate": 3.625464190981433e-05, + "loss": 0.7816720581054688, + "step": 31100 + }, + { + "epoch": 27.586595885865957, + "grad_norm": 0.3967572748661041, + "learning_rate": 3.6210433244916004e-05, + "loss": 0.7825845336914062, + "step": 31200 + }, + { + "epoch": 27.675071886750718, + "grad_norm": 0.36156365275382996, + "learning_rate": 3.616622458001768e-05, + "loss": 0.7875003814697266, + "step": 31300 + }, + { + "epoch": 27.76354788763548, + "grad_norm": 0.37152451276779175, + "learning_rate": 3.6122015915119365e-05, + "loss": 0.7848563385009766, + "step": 31400 + }, + { + "epoch": 27.85202388852024, + "grad_norm": 0.3751819431781769, + "learning_rate": 3.607780725022105e-05, + "loss": 0.7901625061035156, + "step": 31500 + }, + { + "epoch": 27.940499889405, + "grad_norm": 0.32409200072288513, + "learning_rate": 3.6033598585322726e-05, + "loss": 0.7916508483886718, + "step": 31600 + }, + { + "epoch": 28.028312320283124, + "grad_norm": 0.36621779203414917, + "learning_rate": 3.59893899204244e-05, + "loss": 0.7814656066894531, + "step": 31700 + }, + { + "epoch": 28.116788321167885, + "grad_norm": 0.35782715678215027, + "learning_rate": 3.594518125552609e-05, + "loss": 0.7565266418457032, + "step": 31800 + }, + { + "epoch": 28.205264322052642, + "grad_norm": 0.34983065724372864, + "learning_rate": 3.5900972590627764e-05, + "loss": 0.7589649963378906, + "step": 31900 + }, + { + "epoch": 28.293740322937403, + "grad_norm": 0.36476004123687744, + "learning_rate": 3.585676392572945e-05, + "loss": 0.7618669891357421, + "step": 32000 + }, + { + "epoch": 28.382216323822163, + "grad_norm": 0.3663191795349121, + "learning_rate": 3.5812555260831125e-05, + "loss": 0.768099136352539, + "step": 32100 + }, + { + "epoch": 28.470692324706924, + "grad_norm": 0.3572807312011719, + "learning_rate": 3.576834659593281e-05, + "loss": 0.7697807312011719, + "step": 32200 + }, + { + "epoch": 28.559168325591685, + "grad_norm": 0.39800935983657837, + "learning_rate": 3.5724580017683465e-05, + "loss": 0.7714015960693359, + "step": 32300 + }, + { + "epoch": 28.647644326476442, + "grad_norm": 0.3792218863964081, + "learning_rate": 3.568037135278515e-05, + "loss": 0.7737385559082032, + "step": 32400 + }, + { + "epoch": 28.736120327361203, + "grad_norm": 0.4109075665473938, + "learning_rate": 3.5636162687886826e-05, + "loss": 0.7772123718261719, + "step": 32500 + }, + { + "epoch": 28.824596328245963, + "grad_norm": 0.40446004271507263, + "learning_rate": 3.55919540229885e-05, + "loss": 0.7722319030761718, + "step": 32600 + }, + { + "epoch": 28.913072329130724, + "grad_norm": 0.39553946256637573, + "learning_rate": 3.554774535809019e-05, + "loss": 0.7767266082763672, + "step": 32700 + }, + { + "epoch": 29.000884760008848, + "grad_norm": 0.3675474226474762, + "learning_rate": 3.550397877984085e-05, + "loss": 0.7800326538085938, + "step": 32800 + }, + { + "epoch": 29.08936076089361, + "grad_norm": 0.37354156374931335, + "learning_rate": 3.5459770114942534e-05, + "loss": 0.7407066345214843, + "step": 32900 + }, + { + "epoch": 29.17783676177837, + "grad_norm": 0.3970542550086975, + "learning_rate": 3.541556145004421e-05, + "loss": 0.7467523956298828, + "step": 33000 + }, + { + "epoch": 29.266312762663127, + "grad_norm": 0.3625730872154236, + "learning_rate": 3.537135278514589e-05, + "loss": 0.7477723693847657, + "step": 33100 + }, + { + "epoch": 29.354788763547887, + "grad_norm": 0.37132611870765686, + "learning_rate": 3.532714412024757e-05, + "loss": 0.7502822875976562, + "step": 33200 + }, + { + "epoch": 29.443264764432648, + "grad_norm": 0.3668833374977112, + "learning_rate": 3.528293545534925e-05, + "loss": 0.7570280456542968, + "step": 33300 + }, + { + "epoch": 29.53174076531741, + "grad_norm": 0.404186874628067, + "learning_rate": 3.523872679045093e-05, + "loss": 0.7576876831054687, + "step": 33400 + }, + { + "epoch": 29.62021676620217, + "grad_norm": 0.407461017370224, + "learning_rate": 3.519451812555261e-05, + "loss": 0.7606333923339844, + "step": 33500 + }, + { + "epoch": 29.708692767086927, + "grad_norm": 0.4091641902923584, + "learning_rate": 3.5150309460654294e-05, + "loss": 0.7598370361328125, + "step": 33600 + }, + { + "epoch": 29.797168767971687, + "grad_norm": 0.36642369627952576, + "learning_rate": 3.510610079575597e-05, + "loss": 0.7617308807373047, + "step": 33700 + }, + { + "epoch": 29.885644768856448, + "grad_norm": 0.3767990171909332, + "learning_rate": 3.506189213085765e-05, + "loss": 0.760002670288086, + "step": 33800 + }, + { + "epoch": 29.97412076974121, + "grad_norm": 0.3992450535297394, + "learning_rate": 3.5017683465959325e-05, + "loss": 0.7659886932373047, + "step": 33900 + }, + { + "epoch": 30.061933200619332, + "grad_norm": 0.38657036423683167, + "learning_rate": 3.497347480106101e-05, + "loss": 0.7397030639648438, + "step": 34000 + }, + { + "epoch": 30.150409201504093, + "grad_norm": 0.40928229689598083, + "learning_rate": 3.492926613616269e-05, + "loss": 0.7280159759521484, + "step": 34100 + }, + { + "epoch": 30.23888520238885, + "grad_norm": 0.41609957814216614, + "learning_rate": 3.488505747126437e-05, + "loss": 0.7327291107177735, + "step": 34200 + }, + { + "epoch": 30.32736120327361, + "grad_norm": 0.3990429639816284, + "learning_rate": 3.4840848806366047e-05, + "loss": 0.7359205627441406, + "step": 34300 + }, + { + "epoch": 30.41583720415837, + "grad_norm": 0.40403324365615845, + "learning_rate": 3.479664014146773e-05, + "loss": 0.73650390625, + "step": 34400 + }, + { + "epoch": 30.504313205043132, + "grad_norm": 0.42696642875671387, + "learning_rate": 3.475243147656941e-05, + "loss": 0.7416681671142578, + "step": 34500 + }, + { + "epoch": 30.592789205927893, + "grad_norm": 0.3891199231147766, + "learning_rate": 3.4708222811671085e-05, + "loss": 0.742286605834961, + "step": 34600 + }, + { + "epoch": 30.68126520681265, + "grad_norm": 0.3660706877708435, + "learning_rate": 3.466401414677277e-05, + "loss": 0.7444020080566406, + "step": 34700 + }, + { + "epoch": 30.76974120769741, + "grad_norm": 0.43280747532844543, + "learning_rate": 3.461980548187445e-05, + "loss": 0.7461125183105469, + "step": 34800 + }, + { + "epoch": 30.85821720858217, + "grad_norm": 0.4279727041721344, + "learning_rate": 3.457559681697613e-05, + "loss": 0.7497645568847656, + "step": 34900 + }, + { + "epoch": 30.946693209466932, + "grad_norm": 0.4162921905517578, + "learning_rate": 3.4531388152077806e-05, + "loss": 0.7478341674804687, + "step": 35000 + }, + { + "epoch": 31.034505640345056, + "grad_norm": 0.4011857211589813, + "learning_rate": 3.448762157382847e-05, + "loss": 0.7373168182373047, + "step": 35100 + }, + { + "epoch": 31.122981641229817, + "grad_norm": 0.42476192116737366, + "learning_rate": 3.444341290893015e-05, + "loss": 0.714128646850586, + "step": 35200 + }, + { + "epoch": 31.211457642114578, + "grad_norm": 0.4272063672542572, + "learning_rate": 3.439920424403183e-05, + "loss": 0.717328872680664, + "step": 35300 + }, + { + "epoch": 31.299933642999335, + "grad_norm": 0.39419060945510864, + "learning_rate": 3.4354995579133514e-05, + "loss": 0.7182811737060547, + "step": 35400 + }, + { + "epoch": 31.388409643884096, + "grad_norm": 0.4092519283294678, + "learning_rate": 3.431078691423519e-05, + "loss": 0.7223808288574218, + "step": 35500 + }, + { + "epoch": 31.476885644768856, + "grad_norm": 0.45683449506759644, + "learning_rate": 3.4266578249336875e-05, + "loss": 0.7236460876464844, + "step": 35600 + }, + { + "epoch": 31.565361645653617, + "grad_norm": 0.4914647936820984, + "learning_rate": 3.422236958443855e-05, + "loss": 0.728529052734375, + "step": 35700 + }, + { + "epoch": 31.653837646538378, + "grad_norm": 0.439372718334198, + "learning_rate": 3.417816091954023e-05, + "loss": 0.7269135284423828, + "step": 35800 + }, + { + "epoch": 31.742313647423135, + "grad_norm": 0.488553911447525, + "learning_rate": 3.413395225464191e-05, + "loss": 0.7319352722167969, + "step": 35900 + }, + { + "epoch": 31.830789648307896, + "grad_norm": 0.43236035108566284, + "learning_rate": 3.408974358974359e-05, + "loss": 0.7336878204345703, + "step": 36000 + }, + { + "epoch": 31.919265649192656, + "grad_norm": 0.42669814825057983, + "learning_rate": 3.4045534924845274e-05, + "loss": 0.7357192993164062, + "step": 36100 + }, + { + "epoch": 32.007078080070784, + "grad_norm": 0.40464460849761963, + "learning_rate": 3.400132625994695e-05, + "loss": 0.7324215698242188, + "step": 36200 + }, + { + "epoch": 32.09555408095554, + "grad_norm": 0.4362545311450958, + "learning_rate": 3.3957117595048635e-05, + "loss": 0.6976793670654297, + "step": 36300 + }, + { + "epoch": 32.1840300818403, + "grad_norm": 0.46484723687171936, + "learning_rate": 3.391290893015031e-05, + "loss": 0.6972021484375, + "step": 36400 + }, + { + "epoch": 32.27250608272506, + "grad_norm": 0.43313083052635193, + "learning_rate": 3.386870026525199e-05, + "loss": 0.7049392700195313, + "step": 36500 + }, + { + "epoch": 32.36098208360982, + "grad_norm": 0.437752366065979, + "learning_rate": 3.3824491600353666e-05, + "loss": 0.7091526794433594, + "step": 36600 + }, + { + "epoch": 32.44945808449458, + "grad_norm": 0.44550085067749023, + "learning_rate": 3.378028293545535e-05, + "loss": 0.7121316528320313, + "step": 36700 + }, + { + "epoch": 32.53793408537934, + "grad_norm": 0.46052590012550354, + "learning_rate": 3.3736074270557034e-05, + "loss": 0.7150274658203125, + "step": 36800 + }, + { + "epoch": 32.6264100862641, + "grad_norm": 0.4344913065433502, + "learning_rate": 3.369186560565871e-05, + "loss": 0.7130059814453125, + "step": 36900 + }, + { + "epoch": 32.71488608714886, + "grad_norm": 0.45924630761146545, + "learning_rate": 3.364765694076039e-05, + "loss": 0.7156332397460937, + "step": 37000 + }, + { + "epoch": 32.80336208803362, + "grad_norm": 0.41177231073379517, + "learning_rate": 3.360344827586207e-05, + "loss": 0.7184346008300782, + "step": 37100 + }, + { + "epoch": 32.891838088918384, + "grad_norm": 0.44688835740089417, + "learning_rate": 3.355923961096375e-05, + "loss": 0.7201016235351563, + "step": 37200 + }, + { + "epoch": 32.980314089803144, + "grad_norm": 0.4971197545528412, + "learning_rate": 3.3515030946065426e-05, + "loss": 0.7191078186035156, + "step": 37300 + }, + { + "epoch": 33.06812652068127, + "grad_norm": 0.47201091051101685, + "learning_rate": 3.347126436781609e-05, + "loss": 0.6914530944824219, + "step": 37400 + }, + { + "epoch": 33.15660252156602, + "grad_norm": 0.4473711848258972, + "learning_rate": 3.342705570291777e-05, + "loss": 0.6855306243896484, + "step": 37500 + }, + { + "epoch": 33.24507852245078, + "grad_norm": 0.4745553135871887, + "learning_rate": 3.338284703801946e-05, + "loss": 0.6888325500488282, + "step": 37600 + }, + { + "epoch": 33.33355452333554, + "grad_norm": 0.45796144008636475, + "learning_rate": 3.3338638373121134e-05, + "loss": 0.6924916076660156, + "step": 37700 + }, + { + "epoch": 33.422030524220304, + "grad_norm": 0.47769099473953247, + "learning_rate": 3.329442970822281e-05, + "loss": 0.6937997436523438, + "step": 37800 + }, + { + "epoch": 33.510506525105065, + "grad_norm": 0.4637518525123596, + "learning_rate": 3.3250221043324495e-05, + "loss": 0.6975637817382813, + "step": 37900 + }, + { + "epoch": 33.598982525989825, + "grad_norm": 0.47370946407318115, + "learning_rate": 3.320601237842617e-05, + "loss": 0.6985407257080078, + "step": 38000 + }, + { + "epoch": 33.687458526874586, + "grad_norm": 0.467692106962204, + "learning_rate": 3.316180371352785e-05, + "loss": 0.7032517242431641, + "step": 38100 + }, + { + "epoch": 33.77593452775935, + "grad_norm": 0.4691486060619354, + "learning_rate": 3.311759504862953e-05, + "loss": 0.7019402313232422, + "step": 38200 + }, + { + "epoch": 33.86441052864411, + "grad_norm": 0.465666264295578, + "learning_rate": 3.307338638373122e-05, + "loss": 0.7065095520019531, + "step": 38300 + }, + { + "epoch": 33.95288652952887, + "grad_norm": 0.4870339632034302, + "learning_rate": 3.3029177718832894e-05, + "loss": 0.7060601043701172, + "step": 38400 + }, + { + "epoch": 34.04069896040699, + "grad_norm": 0.46102386713027954, + "learning_rate": 3.298496905393457e-05, + "loss": 0.6895645141601563, + "step": 38500 + }, + { + "epoch": 34.12917496129175, + "grad_norm": 0.4717739522457123, + "learning_rate": 3.2940760389036255e-05, + "loss": 0.6683721160888672, + "step": 38600 + }, + { + "epoch": 34.217650962176506, + "grad_norm": 0.47995516657829285, + "learning_rate": 3.289655172413793e-05, + "loss": 0.67727294921875, + "step": 38700 + }, + { + "epoch": 34.30612696306127, + "grad_norm": 0.4676993191242218, + "learning_rate": 3.2852343059239616e-05, + "loss": 0.6742596435546875, + "step": 38800 + }, + { + "epoch": 34.39460296394603, + "grad_norm": 0.4986591935157776, + "learning_rate": 3.280813439434129e-05, + "loss": 0.6811554718017578, + "step": 38900 + }, + { + "epoch": 34.48307896483079, + "grad_norm": 0.49108394980430603, + "learning_rate": 3.2763925729442977e-05, + "loss": 0.6826177215576172, + "step": 39000 + }, + { + "epoch": 34.57155496571555, + "grad_norm": 0.46544989943504333, + "learning_rate": 3.2719717064544654e-05, + "loss": 0.6843925476074219, + "step": 39100 + }, + { + "epoch": 34.66003096660031, + "grad_norm": 0.4714086055755615, + "learning_rate": 3.267550839964633e-05, + "loss": 0.6843089294433594, + "step": 39200 + }, + { + "epoch": 34.74850696748507, + "grad_norm": 0.4726520776748657, + "learning_rate": 3.263129973474801e-05, + "loss": 0.687828140258789, + "step": 39300 + }, + { + "epoch": 34.83698296836983, + "grad_norm": 0.5056101083755493, + "learning_rate": 3.258709106984969e-05, + "loss": 0.6943804168701172, + "step": 39400 + }, + { + "epoch": 34.92545896925459, + "grad_norm": 0.5143911242485046, + "learning_rate": 3.2542882404951375e-05, + "loss": 0.6947840118408203, + "step": 39500 + }, + { + "epoch": 35.013271400132716, + "grad_norm": 0.4712352752685547, + "learning_rate": 3.249867374005305e-05, + "loss": 0.6877326965332031, + "step": 39600 + }, + { + "epoch": 35.10174740101748, + "grad_norm": 0.5000380873680115, + "learning_rate": 3.2454465075154736e-05, + "loss": 0.6556487274169922, + "step": 39700 + }, + { + "epoch": 35.19022340190224, + "grad_norm": 0.5022478699684143, + "learning_rate": 3.2410256410256413e-05, + "loss": 0.6607290649414063, + "step": 39800 + }, + { + "epoch": 35.27869940278699, + "grad_norm": 0.511082112789154, + "learning_rate": 3.236604774535809e-05, + "loss": 0.6585157775878906, + "step": 39900 + }, + { + "epoch": 35.36717540367175, + "grad_norm": 0.45338326692581177, + "learning_rate": 3.232183908045977e-05, + "loss": 0.6670406341552735, + "step": 40000 + }, + { + "epoch": 35.45565140455651, + "grad_norm": 0.47589078545570374, + "learning_rate": 3.227763041556145e-05, + "loss": 0.6654150390625, + "step": 40100 + }, + { + "epoch": 35.54412740544127, + "grad_norm": 0.5111287236213684, + "learning_rate": 3.2233421750663135e-05, + "loss": 0.6706926727294922, + "step": 40200 + }, + { + "epoch": 35.632603406326034, + "grad_norm": 0.48615771532058716, + "learning_rate": 3.218921308576481e-05, + "loss": 0.6724550628662109, + "step": 40300 + }, + { + "epoch": 35.721079407210794, + "grad_norm": 0.5141739845275879, + "learning_rate": 3.214500442086649e-05, + "loss": 0.674487075805664, + "step": 40400 + }, + { + "epoch": 35.809555408095555, + "grad_norm": 0.512373149394989, + "learning_rate": 3.210079575596817e-05, + "loss": 0.6809010314941406, + "step": 40500 + }, + { + "epoch": 35.898031408980316, + "grad_norm": 0.5156219005584717, + "learning_rate": 3.205658709106985e-05, + "loss": 0.6783308410644531, + "step": 40600 + }, + { + "epoch": 35.98650740986508, + "grad_norm": 0.5266398191452026, + "learning_rate": 3.201237842617153e-05, + "loss": 0.6796981811523437, + "step": 40700 + }, + { + "epoch": 36.0743198407432, + "grad_norm": 0.5198646783828735, + "learning_rate": 3.196861184792219e-05, + "loss": 0.648563232421875, + "step": 40800 + }, + { + "epoch": 36.16279584162796, + "grad_norm": 0.4699224829673767, + "learning_rate": 3.1924403183023874e-05, + "loss": 0.6464600372314453, + "step": 40900 + }, + { + "epoch": 36.25127184251272, + "grad_norm": 0.5014195442199707, + "learning_rate": 3.188019451812556e-05, + "loss": 0.6471477508544922, + "step": 41000 + }, + { + "epoch": 36.339747843397475, + "grad_norm": 0.5231509804725647, + "learning_rate": 3.1835985853227235e-05, + "loss": 0.6519639587402344, + "step": 41100 + }, + { + "epoch": 36.428223844282236, + "grad_norm": 0.4843427538871765, + "learning_rate": 3.179177718832891e-05, + "loss": 0.6523241424560546, + "step": 41200 + }, + { + "epoch": 36.516699845167, + "grad_norm": 0.4956904351711273, + "learning_rate": 3.1747568523430596e-05, + "loss": 0.6547152709960937, + "step": 41300 + }, + { + "epoch": 36.60517584605176, + "grad_norm": 0.5103031396865845, + "learning_rate": 3.170335985853227e-05, + "loss": 0.6602716827392578, + "step": 41400 + }, + { + "epoch": 36.69365184693652, + "grad_norm": 0.5028578042984009, + "learning_rate": 3.165915119363395e-05, + "loss": 0.6617116546630859, + "step": 41500 + }, + { + "epoch": 36.78212784782128, + "grad_norm": 0.4997723698616028, + "learning_rate": 3.1614942528735634e-05, + "loss": 0.6632434844970703, + "step": 41600 + }, + { + "epoch": 36.87060384870604, + "grad_norm": 0.5246814489364624, + "learning_rate": 3.157073386383732e-05, + "loss": 0.6632743835449219, + "step": 41700 + }, + { + "epoch": 36.9590798495908, + "grad_norm": 0.5308569073677063, + "learning_rate": 3.1526525198938995e-05, + "loss": 0.6639631652832031, + "step": 41800 + }, + { + "epoch": 37.046892280468924, + "grad_norm": 0.49218234419822693, + "learning_rate": 3.148231653404067e-05, + "loss": 0.6452173614501953, + "step": 41900 + }, + { + "epoch": 37.135368281353685, + "grad_norm": 0.4680822491645813, + "learning_rate": 3.143810786914235e-05, + "loss": 0.6319191360473633, + "step": 42000 + }, + { + "epoch": 37.223844282238446, + "grad_norm": 0.4810407757759094, + "learning_rate": 3.139389920424403e-05, + "loss": 0.6338667297363281, + "step": 42100 + }, + { + "epoch": 37.3123202831232, + "grad_norm": 0.545889139175415, + "learning_rate": 3.134969053934571e-05, + "loss": 0.6395709228515625, + "step": 42200 + }, + { + "epoch": 37.40079628400796, + "grad_norm": 0.5600217580795288, + "learning_rate": 3.1305481874447394e-05, + "loss": 0.6406965637207032, + "step": 42300 + }, + { + "epoch": 37.48927228489272, + "grad_norm": 0.5517903566360474, + "learning_rate": 3.126127320954908e-05, + "loss": 0.6428462982177734, + "step": 42400 + }, + { + "epoch": 37.57774828577748, + "grad_norm": 0.49925389885902405, + "learning_rate": 3.1217064544650755e-05, + "loss": 0.6470170593261719, + "step": 42500 + }, + { + "epoch": 37.66622428666224, + "grad_norm": 0.4698370397090912, + "learning_rate": 3.117285587975243e-05, + "loss": 0.6477708435058593, + "step": 42600 + }, + { + "epoch": 37.754700287547, + "grad_norm": 0.5349763035774231, + "learning_rate": 3.112864721485411e-05, + "loss": 0.6515216827392578, + "step": 42700 + }, + { + "epoch": 37.84317628843176, + "grad_norm": 0.5066236853599548, + "learning_rate": 3.108443854995579e-05, + "loss": 0.6522242736816406, + "step": 42800 + }, + { + "epoch": 37.931652289316524, + "grad_norm": 0.5211920142173767, + "learning_rate": 3.104022988505747e-05, + "loss": 0.6515906524658203, + "step": 42900 + }, + { + "epoch": 38.01946472019465, + "grad_norm": 0.5003405213356018, + "learning_rate": 3.099646330680814e-05, + "loss": 0.6448411560058593, + "step": 43000 + }, + { + "epoch": 38.10794072107941, + "grad_norm": 0.5215827226638794, + "learning_rate": 3.095225464190982e-05, + "loss": 0.619310417175293, + "step": 43100 + }, + { + "epoch": 38.19641672196417, + "grad_norm": 0.4768511950969696, + "learning_rate": 3.0908045977011494e-05, + "loss": 0.6210311126708984, + "step": 43200 + }, + { + "epoch": 38.28489272284893, + "grad_norm": 0.5353608727455139, + "learning_rate": 3.086383731211318e-05, + "loss": 0.6246475601196289, + "step": 43300 + }, + { + "epoch": 38.373368723733684, + "grad_norm": 0.5182030200958252, + "learning_rate": 3.0819628647214855e-05, + "loss": 0.6273392486572266, + "step": 43400 + }, + { + "epoch": 38.461844724618445, + "grad_norm": 0.500842273235321, + "learning_rate": 3.077541998231653e-05, + "loss": 0.6327916717529297, + "step": 43500 + }, + { + "epoch": 38.550320725503205, + "grad_norm": 0.5168542861938477, + "learning_rate": 3.0731211317418216e-05, + "loss": 0.6323520278930664, + "step": 43600 + }, + { + "epoch": 38.638796726387966, + "grad_norm": 0.5403733253479004, + "learning_rate": 3.06870026525199e-05, + "loss": 0.6338058090209961, + "step": 43700 + }, + { + "epoch": 38.72727272727273, + "grad_norm": 0.5119574666023254, + "learning_rate": 3.064279398762158e-05, + "loss": 0.6391129302978515, + "step": 43800 + }, + { + "epoch": 38.81574872815749, + "grad_norm": 0.5214455127716064, + "learning_rate": 3.0598585322723254e-05, + "loss": 0.6368292999267579, + "step": 43900 + }, + { + "epoch": 38.90422472904225, + "grad_norm": 0.5679435133934021, + "learning_rate": 3.055437665782494e-05, + "loss": 0.6414280700683593, + "step": 44000 + }, + { + "epoch": 38.99270072992701, + "grad_norm": 0.5442212820053101, + "learning_rate": 3.0510167992926615e-05, + "loss": 0.6446417999267579, + "step": 44100 + }, + { + "epoch": 39.08051316080513, + "grad_norm": 0.46873417496681213, + "learning_rate": 3.0465959328028292e-05, + "loss": 0.6127575302124023, + "step": 44200 + }, + { + "epoch": 39.16898916168989, + "grad_norm": 0.5402541756629944, + "learning_rate": 3.042175066312998e-05, + "loss": 0.6059606552124024, + "step": 44300 + }, + { + "epoch": 39.257465162574654, + "grad_norm": 0.5081923007965088, + "learning_rate": 3.0377541998231656e-05, + "loss": 0.6121833038330078, + "step": 44400 + }, + { + "epoch": 39.345941163459415, + "grad_norm": 0.5688677430152893, + "learning_rate": 3.0333333333333337e-05, + "loss": 0.6163175964355468, + "step": 44500 + }, + { + "epoch": 39.43441716434417, + "grad_norm": 0.5273306965827942, + "learning_rate": 3.0289124668435014e-05, + "loss": 0.6198236465454101, + "step": 44600 + }, + { + "epoch": 39.52289316522893, + "grad_norm": 0.5107190608978271, + "learning_rate": 3.0244916003536694e-05, + "loss": 0.6242243576049805, + "step": 44700 + }, + { + "epoch": 39.61136916611369, + "grad_norm": 0.5110412240028381, + "learning_rate": 3.0200707338638375e-05, + "loss": 0.6227451705932617, + "step": 44800 + }, + { + "epoch": 39.69984516699845, + "grad_norm": 0.5370123982429504, + "learning_rate": 3.015649867374005e-05, + "loss": 0.6257634735107422, + "step": 44900 + }, + { + "epoch": 39.78832116788321, + "grad_norm": 0.5311342477798462, + "learning_rate": 3.0112290008841735e-05, + "loss": 0.6246538925170898, + "step": 45000 + }, + { + "epoch": 39.87679716876797, + "grad_norm": 0.5247089862823486, + "learning_rate": 3.0068081343943416e-05, + "loss": 0.6278446578979492, + "step": 45100 + }, + { + "epoch": 39.96527316965273, + "grad_norm": 0.5407604575157166, + "learning_rate": 3.0023872679045096e-05, + "loss": 0.6319368743896484, + "step": 45200 + }, + { + "epoch": 40.053085600530856, + "grad_norm": 0.49125176668167114, + "learning_rate": 2.9980106100795756e-05, + "loss": 0.608686294555664, + "step": 45300 + }, + { + "epoch": 40.14156160141562, + "grad_norm": 0.5193077325820923, + "learning_rate": 2.9935897435897437e-05, + "loss": 0.5979312515258789, + "step": 45400 + }, + { + "epoch": 40.23003760230038, + "grad_norm": 0.5521110892295837, + "learning_rate": 2.9891688770999117e-05, + "loss": 0.6026276016235351, + "step": 45500 + }, + { + "epoch": 40.31851360318514, + "grad_norm": 0.5131237506866455, + "learning_rate": 2.9847480106100794e-05, + "loss": 0.6056368637084961, + "step": 45600 + }, + { + "epoch": 40.4069896040699, + "grad_norm": 0.5547003149986267, + "learning_rate": 2.9803271441202478e-05, + "loss": 0.6073746490478515, + "step": 45700 + }, + { + "epoch": 40.49546560495465, + "grad_norm": 0.5059778690338135, + "learning_rate": 2.975906277630416e-05, + "loss": 0.6093035888671875, + "step": 45800 + }, + { + "epoch": 40.583941605839414, + "grad_norm": 0.5218088030815125, + "learning_rate": 2.971485411140584e-05, + "loss": 0.6098678970336914, + "step": 45900 + }, + { + "epoch": 40.672417606724174, + "grad_norm": 0.5111589431762695, + "learning_rate": 2.9670645446507516e-05, + "loss": 0.6144123458862305, + "step": 46000 + }, + { + "epoch": 40.760893607608935, + "grad_norm": 0.5875983238220215, + "learning_rate": 2.9626436781609196e-05, + "loss": 0.6149031448364258, + "step": 46100 + }, + { + "epoch": 40.849369608493696, + "grad_norm": 0.6077953577041626, + "learning_rate": 2.9582228116710873e-05, + "loss": 0.6200779724121094, + "step": 46200 + }, + { + "epoch": 40.937845609378456, + "grad_norm": 0.5511230230331421, + "learning_rate": 2.9538019451812554e-05, + "loss": 0.6175289916992187, + "step": 46300 + }, + { + "epoch": 41.02565804025658, + "grad_norm": 0.5434758067131042, + "learning_rate": 2.9493810786914238e-05, + "loss": 0.6117794418334961, + "step": 46400 + }, + { + "epoch": 41.11413404114134, + "grad_norm": 0.5463586449623108, + "learning_rate": 2.9449602122015918e-05, + "loss": 0.5865156936645508, + "step": 46500 + }, + { + "epoch": 41.2026100420261, + "grad_norm": 0.516645610332489, + "learning_rate": 2.94053934571176e-05, + "loss": 0.5934408950805664, + "step": 46600 + }, + { + "epoch": 41.29108604291086, + "grad_norm": 0.5041747093200684, + "learning_rate": 2.9361184792219276e-05, + "loss": 0.5907432556152343, + "step": 46700 + }, + { + "epoch": 41.37956204379562, + "grad_norm": 0.5490337014198303, + "learning_rate": 2.9316976127320956e-05, + "loss": 0.597823486328125, + "step": 46800 + }, + { + "epoch": 41.468038044680384, + "grad_norm": 0.5256726741790771, + "learning_rate": 2.9272767462422633e-05, + "loss": 0.5979599380493164, + "step": 46900 + }, + { + "epoch": 41.55651404556514, + "grad_norm": 0.49856510758399963, + "learning_rate": 2.9228558797524314e-05, + "loss": 0.6000013732910157, + "step": 47000 + }, + { + "epoch": 41.6449900464499, + "grad_norm": 0.540030837059021, + "learning_rate": 2.9184350132625998e-05, + "loss": 0.6044590759277344, + "step": 47100 + }, + { + "epoch": 41.73346604733466, + "grad_norm": 0.5599401593208313, + "learning_rate": 2.9140141467727678e-05, + "loss": 0.6050262451171875, + "step": 47200 + }, + { + "epoch": 41.82194204821942, + "grad_norm": 0.5251536965370178, + "learning_rate": 2.9095932802829355e-05, + "loss": 0.6084031677246093, + "step": 47300 + }, + { + "epoch": 41.91041804910418, + "grad_norm": 0.6002141237258911, + "learning_rate": 2.9051724137931036e-05, + "loss": 0.6051164627075195, + "step": 47400 + }, + { + "epoch": 41.99889404998894, + "grad_norm": 0.5603448748588562, + "learning_rate": 2.9007515473032716e-05, + "loss": 0.6085728073120117, + "step": 47500 + }, + { + "epoch": 42.086706480867065, + "grad_norm": 0.5491044521331787, + "learning_rate": 2.8963748894783376e-05, + "loss": 0.576365966796875, + "step": 47600 + }, + { + "epoch": 42.175182481751825, + "grad_norm": 0.5698864459991455, + "learning_rate": 2.8919540229885063e-05, + "loss": 0.5807184219360352, + "step": 47700 + }, + { + "epoch": 42.263658482636586, + "grad_norm": 0.574418306350708, + "learning_rate": 2.887533156498674e-05, + "loss": 0.5844138717651367, + "step": 47800 + }, + { + "epoch": 42.35213448352135, + "grad_norm": 0.5167635083198547, + "learning_rate": 2.883112290008842e-05, + "loss": 0.5845949935913086, + "step": 47900 + }, + { + "epoch": 42.44061048440611, + "grad_norm": 0.5338764786720276, + "learning_rate": 2.8786914235190098e-05, + "loss": 0.5889351272583008, + "step": 48000 + }, + { + "epoch": 42.52908648529087, + "grad_norm": 0.5340341329574585, + "learning_rate": 2.8742705570291778e-05, + "loss": 0.5909807205200195, + "step": 48100 + }, + { + "epoch": 42.61756248617562, + "grad_norm": 0.5493650436401367, + "learning_rate": 2.869849690539346e-05, + "loss": 0.5914651107788086, + "step": 48200 + }, + { + "epoch": 42.70603848706038, + "grad_norm": 0.6116383075714111, + "learning_rate": 2.8654288240495136e-05, + "loss": 0.592667350769043, + "step": 48300 + }, + { + "epoch": 42.79451448794514, + "grad_norm": 0.5631881356239319, + "learning_rate": 2.861007957559682e-05, + "loss": 0.5997231674194335, + "step": 48400 + }, + { + "epoch": 42.882990488829904, + "grad_norm": 0.5806667804718018, + "learning_rate": 2.85658709106985e-05, + "loss": 0.5957838439941406, + "step": 48500 + }, + { + "epoch": 42.971466489714665, + "grad_norm": 0.5075005888938904, + "learning_rate": 2.852166224580018e-05, + "loss": 0.5975283432006836, + "step": 48600 + }, + { + "epoch": 43.05927892059279, + "grad_norm": 0.5606797337532043, + "learning_rate": 2.8477453580901857e-05, + "loss": 0.5800529861450195, + "step": 48700 + }, + { + "epoch": 43.14775492147755, + "grad_norm": 0.5353171229362488, + "learning_rate": 2.8433244916003538e-05, + "loss": 0.5706613540649415, + "step": 48800 + }, + { + "epoch": 43.23623092236231, + "grad_norm": 0.5479321479797363, + "learning_rate": 2.8389036251105215e-05, + "loss": 0.5755366516113282, + "step": 48900 + }, + { + "epoch": 43.32470692324707, + "grad_norm": 0.5302407741546631, + "learning_rate": 2.8344827586206895e-05, + "loss": 0.5780391311645507, + "step": 49000 + }, + { + "epoch": 43.41318292413183, + "grad_norm": 0.5579783320426941, + "learning_rate": 2.830061892130858e-05, + "loss": 0.5774256896972656, + "step": 49100 + }, + { + "epoch": 43.50165892501659, + "grad_norm": 0.5295524597167969, + "learning_rate": 2.825641025641026e-05, + "loss": 0.5812548828125, + "step": 49200 + }, + { + "epoch": 43.59013492590135, + "grad_norm": 0.492058664560318, + "learning_rate": 2.821220159151194e-05, + "loss": 0.5796434783935547, + "step": 49300 + }, + { + "epoch": 43.67861092678611, + "grad_norm": 0.48961371183395386, + "learning_rate": 2.8167992926613617e-05, + "loss": 0.5851696014404297, + "step": 49400 + }, + { + "epoch": 43.76708692767087, + "grad_norm": 0.5714001059532166, + "learning_rate": 2.8123784261715298e-05, + "loss": 0.5890889358520508, + "step": 49500 + }, + { + "epoch": 43.85556292855563, + "grad_norm": 0.537390410900116, + "learning_rate": 2.8079575596816975e-05, + "loss": 0.5881150054931641, + "step": 49600 + }, + { + "epoch": 43.94403892944039, + "grad_norm": 0.5263146758079529, + "learning_rate": 2.8035366931918655e-05, + "loss": 0.5868202209472656, + "step": 49700 + }, + { + "epoch": 44.03185136031851, + "grad_norm": 0.5009394288063049, + "learning_rate": 2.7991600353669322e-05, + "loss": 0.578513412475586, + "step": 49800 + }, + { + "epoch": 44.12032736120327, + "grad_norm": 0.5233928561210632, + "learning_rate": 2.7947391688771002e-05, + "loss": 0.5612442016601562, + "step": 49900 + }, + { + "epoch": 44.208803362088034, + "grad_norm": 0.5212284922599792, + "learning_rate": 2.7903183023872683e-05, + "loss": 0.5634622955322266, + "step": 50000 + }, + { + "epoch": 44.297279362972795, + "grad_norm": 0.5920892357826233, + "learning_rate": 2.785897435897436e-05, + "loss": 0.5646255111694336, + "step": 50100 + }, + { + "epoch": 44.385755363857555, + "grad_norm": 0.5463851690292358, + "learning_rate": 2.781476569407604e-05, + "loss": 0.5711798477172851, + "step": 50200 + }, + { + "epoch": 44.474231364742316, + "grad_norm": 0.513917863368988, + "learning_rate": 2.7770557029177717e-05, + "loss": 0.5757728576660156, + "step": 50300 + }, + { + "epoch": 44.56270736562708, + "grad_norm": 0.5791277289390564, + "learning_rate": 2.7726348364279398e-05, + "loss": 0.5719475173950195, + "step": 50400 + }, + { + "epoch": 44.65118336651183, + "grad_norm": 0.5394783616065979, + "learning_rate": 2.768213969938108e-05, + "loss": 0.5751088714599609, + "step": 50500 + }, + { + "epoch": 44.73965936739659, + "grad_norm": 0.5699083805084229, + "learning_rate": 2.7637931034482762e-05, + "loss": 0.5771770095825195, + "step": 50600 + }, + { + "epoch": 44.82813536828135, + "grad_norm": 0.5610557794570923, + "learning_rate": 2.759372236958444e-05, + "loss": 0.5790963745117188, + "step": 50700 + }, + { + "epoch": 44.91661136916611, + "grad_norm": 0.5751321911811829, + "learning_rate": 2.754951370468612e-05, + "loss": 0.5781265258789062, + "step": 50800 + }, + { + "epoch": 45.004423800044236, + "grad_norm": 0.4831089377403259, + "learning_rate": 2.75053050397878e-05, + "loss": 0.5815114593505859, + "step": 50900 + }, + { + "epoch": 45.092899800929, + "grad_norm": 0.5138679146766663, + "learning_rate": 2.7461096374889477e-05, + "loss": 0.5530588912963867, + "step": 51000 + }, + { + "epoch": 45.18137580181376, + "grad_norm": 0.5327210426330566, + "learning_rate": 2.7416887709991158e-05, + "loss": 0.5549150085449219, + "step": 51100 + }, + { + "epoch": 45.26985180269852, + "grad_norm": 0.5089725255966187, + "learning_rate": 2.737267904509284e-05, + "loss": 0.5587585830688476, + "step": 51200 + }, + { + "epoch": 45.35832780358328, + "grad_norm": 0.5307016372680664, + "learning_rate": 2.7328470380194522e-05, + "loss": 0.5582825851440429, + "step": 51300 + }, + { + "epoch": 45.44680380446804, + "grad_norm": 0.6189883351325989, + "learning_rate": 2.72842617152962e-05, + "loss": 0.561285514831543, + "step": 51400 + }, + { + "epoch": 45.5352798053528, + "grad_norm": 0.5789527893066406, + "learning_rate": 2.724005305039788e-05, + "loss": 0.5647828674316406, + "step": 51500 + }, + { + "epoch": 45.62375580623756, + "grad_norm": 0.553713321685791, + "learning_rate": 2.719584438549956e-05, + "loss": 0.5659704208374023, + "step": 51600 + }, + { + "epoch": 45.712231807122315, + "grad_norm": 0.5502424240112305, + "learning_rate": 2.7151635720601237e-05, + "loss": 0.5685673522949218, + "step": 51700 + }, + { + "epoch": 45.800707808007076, + "grad_norm": 0.6388786435127258, + "learning_rate": 2.7107427055702917e-05, + "loss": 0.569713134765625, + "step": 51800 + }, + { + "epoch": 45.889183808891836, + "grad_norm": 0.5839136242866516, + "learning_rate": 2.70632183908046e-05, + "loss": 0.5713850784301758, + "step": 51900 + }, + { + "epoch": 45.9776598097766, + "grad_norm": 0.5872997641563416, + "learning_rate": 2.701900972590628e-05, + "loss": 0.5713462448120117, + "step": 52000 + }, + { + "epoch": 46.06547224065472, + "grad_norm": 0.5111995339393616, + "learning_rate": 2.697524314765694e-05, + "loss": 0.5514000701904297, + "step": 52100 + }, + { + "epoch": 46.15394824153948, + "grad_norm": 0.5677483677864075, + "learning_rate": 2.6931034482758622e-05, + "loss": 0.5458650207519531, + "step": 52200 + }, + { + "epoch": 46.24242424242424, + "grad_norm": 0.5756211876869202, + "learning_rate": 2.68868258178603e-05, + "loss": 0.5480696868896484, + "step": 52300 + }, + { + "epoch": 46.330900243309, + "grad_norm": 0.6053562164306641, + "learning_rate": 2.684261715296198e-05, + "loss": 0.5525957870483399, + "step": 52400 + }, + { + "epoch": 46.419376244193764, + "grad_norm": 0.5155165791511536, + "learning_rate": 2.6798408488063663e-05, + "loss": 0.5557857513427734, + "step": 52500 + }, + { + "epoch": 46.507852245078524, + "grad_norm": 0.5804229378700256, + "learning_rate": 2.6754199823165344e-05, + "loss": 0.5559201049804687, + "step": 52600 + }, + { + "epoch": 46.596328245963285, + "grad_norm": 0.5536544919013977, + "learning_rate": 2.6709991158267024e-05, + "loss": 0.5591853713989258, + "step": 52700 + }, + { + "epoch": 46.684804246848046, + "grad_norm": 0.603621244430542, + "learning_rate": 2.66657824933687e-05, + "loss": 0.5596856307983399, + "step": 52800 + }, + { + "epoch": 46.7732802477328, + "grad_norm": 0.5604232549667358, + "learning_rate": 2.662157382847038e-05, + "loss": 0.5584945678710938, + "step": 52900 + }, + { + "epoch": 46.86175624861756, + "grad_norm": 0.5974889993667603, + "learning_rate": 2.657736516357206e-05, + "loss": 0.5582848358154296, + "step": 53000 + }, + { + "epoch": 46.95023224950232, + "grad_norm": 0.5440397262573242, + "learning_rate": 2.653315649867374e-05, + "loss": 0.5634394454956054, + "step": 53100 + }, + { + "epoch": 47.038044680380445, + "grad_norm": 0.5610032081604004, + "learning_rate": 2.6488947833775423e-05, + "loss": 0.5574512481689453, + "step": 53200 + }, + { + "epoch": 47.126520681265205, + "grad_norm": 0.607563853263855, + "learning_rate": 2.6444739168877104e-05, + "loss": 0.5387821197509766, + "step": 53300 + }, + { + "epoch": 47.214996682149966, + "grad_norm": 0.5836204290390015, + "learning_rate": 2.640053050397878e-05, + "loss": 0.5401793670654297, + "step": 53400 + }, + { + "epoch": 47.30347268303473, + "grad_norm": 0.5325765013694763, + "learning_rate": 2.635632183908046e-05, + "loss": 0.5437668991088868, + "step": 53500 + }, + { + "epoch": 47.39194868391949, + "grad_norm": 0.5740872621536255, + "learning_rate": 2.631211317418214e-05, + "loss": 0.5443574142456055, + "step": 53600 + }, + { + "epoch": 47.48042468480425, + "grad_norm": 0.5562124848365784, + "learning_rate": 2.626790450928382e-05, + "loss": 0.5469727325439453, + "step": 53700 + }, + { + "epoch": 47.56890068568901, + "grad_norm": 0.5893000960350037, + "learning_rate": 2.62236958443855e-05, + "loss": 0.5502291107177735, + "step": 53800 + }, + { + "epoch": 47.65737668657377, + "grad_norm": 0.6538830995559692, + "learning_rate": 2.6179487179487183e-05, + "loss": 0.552915382385254, + "step": 53900 + }, + { + "epoch": 47.74585268745853, + "grad_norm": 0.5710316300392151, + "learning_rate": 2.6135278514588863e-05, + "loss": 0.5510491943359375, + "step": 54000 + }, + { + "epoch": 47.834328688343284, + "grad_norm": 0.5235297083854675, + "learning_rate": 2.609106984969054e-05, + "loss": 0.5519483184814453, + "step": 54100 + }, + { + "epoch": 47.922804689228045, + "grad_norm": 0.6048061847686768, + "learning_rate": 2.604686118479222e-05, + "loss": 0.5567644882202148, + "step": 54200 + }, + { + "epoch": 48.01061712010617, + "grad_norm": 0.5698108077049255, + "learning_rate": 2.6003094606542884e-05, + "loss": 0.5547234344482422, + "step": 54300 + }, + { + "epoch": 48.09909312099093, + "grad_norm": 0.49287617206573486, + "learning_rate": 2.595888594164456e-05, + "loss": 0.5280181884765625, + "step": 54400 + }, + { + "epoch": 48.18756912187569, + "grad_norm": 0.5525228977203369, + "learning_rate": 2.591467727674624e-05, + "loss": 0.5349401092529297, + "step": 54500 + }, + { + "epoch": 48.27604512276045, + "grad_norm": 0.5026161670684814, + "learning_rate": 2.5870468611847925e-05, + "loss": 0.5378446578979492, + "step": 54600 + }, + { + "epoch": 48.36452112364521, + "grad_norm": 0.5191828608512878, + "learning_rate": 2.5826259946949606e-05, + "loss": 0.5382429122924804, + "step": 54700 + }, + { + "epoch": 48.45299712452997, + "grad_norm": 0.5171953439712524, + "learning_rate": 2.5782051282051283e-05, + "loss": 0.5364204406738281, + "step": 54800 + }, + { + "epoch": 48.54147312541473, + "grad_norm": 0.5302397012710571, + "learning_rate": 2.5737842617152963e-05, + "loss": 0.5405542373657226, + "step": 54900 + }, + { + "epoch": 48.62994912629949, + "grad_norm": 0.5187925100326538, + "learning_rate": 2.569363395225464e-05, + "loss": 0.5436551284790039, + "step": 55000 + }, + { + "epoch": 48.718425127184254, + "grad_norm": 0.5707531571388245, + "learning_rate": 2.564942528735632e-05, + "loss": 0.5467363357543945, + "step": 55100 + }, + { + "epoch": 48.806901128069015, + "grad_norm": 0.5525254607200623, + "learning_rate": 2.5605216622458e-05, + "loss": 0.5466318130493164, + "step": 55200 + }, + { + "epoch": 48.89537712895377, + "grad_norm": 0.5896828174591064, + "learning_rate": 2.5561007957559685e-05, + "loss": 0.5489627075195312, + "step": 55300 + }, + { + "epoch": 48.98385312983853, + "grad_norm": 0.593329131603241, + "learning_rate": 2.5516799292661366e-05, + "loss": 0.5492449569702148, + "step": 55400 + }, + { + "epoch": 49.07166556071665, + "grad_norm": 0.45202845335006714, + "learning_rate": 2.5472590627763043e-05, + "loss": 0.5282985687255859, + "step": 55500 + }, + { + "epoch": 49.160141561601414, + "grad_norm": 0.45874515175819397, + "learning_rate": 2.5428381962864723e-05, + "loss": 0.5267356872558594, + "step": 55600 + }, + { + "epoch": 49.248617562486174, + "grad_norm": 0.5499678254127502, + "learning_rate": 2.53841732979664e-05, + "loss": 0.5255993270874023, + "step": 55700 + }, + { + "epoch": 49.337093563370935, + "grad_norm": 0.5569108724594116, + "learning_rate": 2.533996463306808e-05, + "loss": 0.5299503707885742, + "step": 55800 + }, + { + "epoch": 49.425569564255696, + "grad_norm": 0.5677438974380493, + "learning_rate": 2.529575596816976e-05, + "loss": 0.5316028594970703, + "step": 55900 + }, + { + "epoch": 49.51404556514046, + "grad_norm": 0.5888075828552246, + "learning_rate": 2.5251547303271445e-05, + "loss": 0.5354986953735351, + "step": 56000 + }, + { + "epoch": 49.60252156602522, + "grad_norm": 0.5639616250991821, + "learning_rate": 2.5207338638373122e-05, + "loss": 0.5369997787475586, + "step": 56100 + }, + { + "epoch": 49.69099756690998, + "grad_norm": 0.509158194065094, + "learning_rate": 2.5163129973474803e-05, + "loss": 0.536979866027832, + "step": 56200 + }, + { + "epoch": 49.77947356779474, + "grad_norm": 0.5412595868110657, + "learning_rate": 2.5118921308576483e-05, + "loss": 0.5382201004028321, + "step": 56300 + }, + { + "epoch": 49.86794956867949, + "grad_norm": 0.6052098274230957, + "learning_rate": 2.507471264367816e-05, + "loss": 0.5390504837036133, + "step": 56400 + }, + { + "epoch": 49.95642556956425, + "grad_norm": 0.5019105076789856, + "learning_rate": 2.503050397877984e-05, + "loss": 0.5391928482055665, + "step": 56500 + }, + { + "epoch": 50.04423800044238, + "grad_norm": 0.5133684873580933, + "learning_rate": 2.4986737400530504e-05, + "loss": 0.529360580444336, + "step": 56600 + }, + { + "epoch": 50.13271400132714, + "grad_norm": 0.5742220878601074, + "learning_rate": 2.4942528735632184e-05, + "loss": 0.5150651550292968, + "step": 56700 + }, + { + "epoch": 50.2211900022119, + "grad_norm": 0.5389617681503296, + "learning_rate": 2.4898320070733865e-05, + "loss": 0.5204330444335937, + "step": 56800 + }, + { + "epoch": 50.30966600309666, + "grad_norm": 0.5938611030578613, + "learning_rate": 2.4854111405835545e-05, + "loss": 0.5252494049072266, + "step": 56900 + }, + { + "epoch": 50.39814200398142, + "grad_norm": 0.5617892146110535, + "learning_rate": 2.4809902740937225e-05, + "loss": 0.5260490036010742, + "step": 57000 + }, + { + "epoch": 50.48661800486618, + "grad_norm": 0.6076000332832336, + "learning_rate": 2.4765694076038906e-05, + "loss": 0.5278256607055664, + "step": 57100 + }, + { + "epoch": 50.57509400575094, + "grad_norm": 0.5321983695030212, + "learning_rate": 2.4721485411140586e-05, + "loss": 0.5286510467529297, + "step": 57200 + }, + { + "epoch": 50.6635700066357, + "grad_norm": 0.614532470703125, + "learning_rate": 2.4677276746242263e-05, + "loss": 0.5313225936889648, + "step": 57300 + }, + { + "epoch": 50.75204600752046, + "grad_norm": 0.5830910801887512, + "learning_rate": 2.4633068081343944e-05, + "loss": 0.5300481796264649, + "step": 57400 + }, + { + "epoch": 50.84052200840522, + "grad_norm": 0.5918353199958801, + "learning_rate": 2.4588859416445624e-05, + "loss": 0.5337774276733398, + "step": 57500 + }, + { + "epoch": 50.92899800928998, + "grad_norm": 0.5791705846786499, + "learning_rate": 2.4544650751547305e-05, + "loss": 0.5316382598876953, + "step": 57600 + }, + { + "epoch": 51.01681044016811, + "grad_norm": 0.521299421787262, + "learning_rate": 2.4500442086648985e-05, + "loss": 0.5307102203369141, + "step": 57700 + }, + { + "epoch": 51.10528644105286, + "grad_norm": 0.5163324475288391, + "learning_rate": 2.4456233421750666e-05, + "loss": 0.5103409576416016, + "step": 57800 + }, + { + "epoch": 51.19376244193762, + "grad_norm": 0.5436499714851379, + "learning_rate": 2.4412024756852346e-05, + "loss": 0.5144682693481445, + "step": 57900 + }, + { + "epoch": 51.28223844282238, + "grad_norm": 0.5268517136573792, + "learning_rate": 2.4367816091954023e-05, + "loss": 0.5170879364013672, + "step": 58000 + }, + { + "epoch": 51.37071444370714, + "grad_norm": 0.5523056983947754, + "learning_rate": 2.4323607427055704e-05, + "loss": 0.5176148223876953, + "step": 58100 + }, + { + "epoch": 51.459190444591904, + "grad_norm": 0.5733488202095032, + "learning_rate": 2.4279398762157384e-05, + "loss": 0.5213256454467774, + "step": 58200 + }, + { + "epoch": 51.547666445476665, + "grad_norm": 0.6002511978149414, + "learning_rate": 2.4235190097259065e-05, + "loss": 0.5213332748413086, + "step": 58300 + }, + { + "epoch": 51.636142446361426, + "grad_norm": 0.5866407155990601, + "learning_rate": 2.4190981432360742e-05, + "loss": 0.5219316101074218, + "step": 58400 + }, + { + "epoch": 51.724618447246186, + "grad_norm": 0.620346188545227, + "learning_rate": 2.4146772767462426e-05, + "loss": 0.5251021575927735, + "step": 58500 + }, + { + "epoch": 51.81309444813095, + "grad_norm": 0.5428482294082642, + "learning_rate": 2.4102564102564103e-05, + "loss": 0.5254843521118164, + "step": 58600 + }, + { + "epoch": 51.90157044901571, + "grad_norm": 0.6146367192268372, + "learning_rate": 2.4058355437665783e-05, + "loss": 0.5262796401977539, + "step": 58700 + }, + { + "epoch": 51.99004644990046, + "grad_norm": 0.6002848148345947, + "learning_rate": 2.4014146772767464e-05, + "loss": 0.5279874801635742, + "step": 58800 + }, + { + "epoch": 52.07785888077859, + "grad_norm": 0.5608682036399841, + "learning_rate": 2.3970380194518127e-05, + "loss": 0.5045627975463867, + "step": 58900 + }, + { + "epoch": 52.166334881663346, + "grad_norm": 0.5034646391868591, + "learning_rate": 2.3926171529619807e-05, + "loss": 0.5071027755737305, + "step": 59000 + }, + { + "epoch": 52.25481088254811, + "grad_norm": 0.5443050861358643, + "learning_rate": 2.3881962864721484e-05, + "loss": 0.5105178451538086, + "step": 59100 + }, + { + "epoch": 52.34328688343287, + "grad_norm": 0.5455040335655212, + "learning_rate": 2.3837754199823168e-05, + "loss": 0.5111968612670899, + "step": 59200 + }, + { + "epoch": 52.43176288431763, + "grad_norm": 0.5393562912940979, + "learning_rate": 2.3793545534924845e-05, + "loss": 0.5109628295898437, + "step": 59300 + }, + { + "epoch": 52.52023888520239, + "grad_norm": 0.5572716593742371, + "learning_rate": 2.3749336870026526e-05, + "loss": 0.5128989791870118, + "step": 59400 + }, + { + "epoch": 52.60871488608715, + "grad_norm": 0.5157389640808105, + "learning_rate": 2.3705128205128206e-05, + "loss": 0.5179262924194336, + "step": 59500 + }, + { + "epoch": 52.69719088697191, + "grad_norm": 0.5245424509048462, + "learning_rate": 2.3660919540229886e-05, + "loss": 0.5182614517211914, + "step": 59600 + }, + { + "epoch": 52.78566688785667, + "grad_norm": 0.6405171155929565, + "learning_rate": 2.3616710875331567e-05, + "loss": 0.5196902084350586, + "step": 59700 + }, + { + "epoch": 52.87414288874143, + "grad_norm": 0.5531449317932129, + "learning_rate": 2.3572502210433244e-05, + "loss": 0.5213772583007813, + "step": 59800 + }, + { + "epoch": 52.96261888962619, + "grad_norm": 0.5440499186515808, + "learning_rate": 2.3528293545534928e-05, + "loss": 0.5214180755615234, + "step": 59900 + }, + { + "epoch": 53.050431320504316, + "grad_norm": 0.5454942584037781, + "learning_rate": 2.3484084880636605e-05, + "loss": 0.5082747268676758, + "step": 60000 + }, + { + "epoch": 53.13890732138907, + "grad_norm": 0.6037677526473999, + "learning_rate": 2.3439876215738285e-05, + "loss": 0.4992447662353516, + "step": 60100 + }, + { + "epoch": 53.22738332227383, + "grad_norm": 0.6089978218078613, + "learning_rate": 2.3395667550839966e-05, + "loss": 0.501078987121582, + "step": 60200 + }, + { + "epoch": 53.31585932315859, + "grad_norm": 0.5581852793693542, + "learning_rate": 2.3351458885941646e-05, + "loss": 0.50614990234375, + "step": 60300 + }, + { + "epoch": 53.40433532404335, + "grad_norm": 0.5539824366569519, + "learning_rate": 2.3307250221043327e-05, + "loss": 0.5036640548706055, + "step": 60400 + }, + { + "epoch": 53.49281132492811, + "grad_norm": 0.5434619784355164, + "learning_rate": 2.3263041556145004e-05, + "loss": 0.5078977966308593, + "step": 60500 + }, + { + "epoch": 53.58128732581287, + "grad_norm": 0.5596204400062561, + "learning_rate": 2.3218832891246688e-05, + "loss": 0.5105896377563477, + "step": 60600 + }, + { + "epoch": 53.669763326697634, + "grad_norm": 0.5933516621589661, + "learning_rate": 2.3174624226348365e-05, + "loss": 0.512298583984375, + "step": 60700 + }, + { + "epoch": 53.758239327582395, + "grad_norm": 0.5938782095909119, + "learning_rate": 2.3130415561450045e-05, + "loss": 0.5136246871948242, + "step": 60800 + }, + { + "epoch": 53.846715328467155, + "grad_norm": 0.5711195468902588, + "learning_rate": 2.3086206896551726e-05, + "loss": 0.5137527465820313, + "step": 60900 + }, + { + "epoch": 53.935191329351916, + "grad_norm": 0.5345974564552307, + "learning_rate": 2.3041998231653406e-05, + "loss": 0.5148337173461914, + "step": 61000 + }, + { + "epoch": 54.02300376023004, + "grad_norm": 0.5462290644645691, + "learning_rate": 2.299823165340407e-05, + "loss": 0.5070685577392579, + "step": 61100 + }, + { + "epoch": 54.1114797611148, + "grad_norm": 0.5135403275489807, + "learning_rate": 2.295402298850575e-05, + "loss": 0.49042961120605466, + "step": 61200 + }, + { + "epoch": 54.199955761999554, + "grad_norm": 0.5753411650657654, + "learning_rate": 2.290981432360743e-05, + "loss": 0.49762104034423826, + "step": 61300 + }, + { + "epoch": 54.288431762884315, + "grad_norm": 0.5738378167152405, + "learning_rate": 2.2865605658709107e-05, + "loss": 0.4983011245727539, + "step": 61400 + }, + { + "epoch": 54.376907763769076, + "grad_norm": 0.5234966278076172, + "learning_rate": 2.2821396993810788e-05, + "loss": 0.5005590057373047, + "step": 61500 + }, + { + "epoch": 54.465383764653836, + "grad_norm": 0.5313852429389954, + "learning_rate": 2.2777188328912468e-05, + "loss": 0.503372917175293, + "step": 61600 + }, + { + "epoch": 54.5538597655386, + "grad_norm": 0.49838191270828247, + "learning_rate": 2.273297966401415e-05, + "loss": 0.5020324325561524, + "step": 61700 + }, + { + "epoch": 54.64233576642336, + "grad_norm": 0.5403088927268982, + "learning_rate": 2.2688770999115826e-05, + "loss": 0.5049329376220704, + "step": 61800 + }, + { + "epoch": 54.73081176730812, + "grad_norm": 0.46723249554634094, + "learning_rate": 2.264456233421751e-05, + "loss": 0.5059401321411133, + "step": 61900 + }, + { + "epoch": 54.81928776819288, + "grad_norm": 0.5539482235908508, + "learning_rate": 2.2600353669319187e-05, + "loss": 0.5069823837280274, + "step": 62000 + }, + { + "epoch": 54.90776376907764, + "grad_norm": 0.5377270579338074, + "learning_rate": 2.2556145004420867e-05, + "loss": 0.508377685546875, + "step": 62100 + }, + { + "epoch": 54.9962397699624, + "grad_norm": 0.6182072162628174, + "learning_rate": 2.2511936339522548e-05, + "loss": 0.5095947647094726, + "step": 62200 + }, + { + "epoch": 55.084052200840524, + "grad_norm": 0.5139372944831848, + "learning_rate": 2.2467727674624228e-05, + "loss": 0.4896272277832031, + "step": 62300 + }, + { + "epoch": 55.172528201725285, + "grad_norm": 0.5812121629714966, + "learning_rate": 2.242351900972591e-05, + "loss": 0.49099037170410154, + "step": 62400 + }, + { + "epoch": 55.26100420261004, + "grad_norm": 0.5491729378700256, + "learning_rate": 2.2379310344827586e-05, + "loss": 0.4927267074584961, + "step": 62500 + }, + { + "epoch": 55.3494802034948, + "grad_norm": 0.5951135158538818, + "learning_rate": 2.233510167992927e-05, + "loss": 0.49305023193359376, + "step": 62600 + }, + { + "epoch": 55.43795620437956, + "grad_norm": 0.5938172340393066, + "learning_rate": 2.2290893015030946e-05, + "loss": 0.49482032775878904, + "step": 62700 + }, + { + "epoch": 55.52643220526432, + "grad_norm": 0.5288723111152649, + "learning_rate": 2.2246684350132627e-05, + "loss": 0.4974822998046875, + "step": 62800 + }, + { + "epoch": 55.61490820614908, + "grad_norm": 0.5663400888442993, + "learning_rate": 2.2202475685234307e-05, + "loss": 0.498828239440918, + "step": 62900 + }, + { + "epoch": 55.70338420703384, + "grad_norm": 0.5939375162124634, + "learning_rate": 2.2158267020335988e-05, + "loss": 0.5004440307617187, + "step": 63000 + }, + { + "epoch": 55.7918602079186, + "grad_norm": 0.628774106502533, + "learning_rate": 2.2114058355437668e-05, + "loss": 0.5034025573730468, + "step": 63100 + }, + { + "epoch": 55.880336208803364, + "grad_norm": 0.6160352826118469, + "learning_rate": 2.2069849690539345e-05, + "loss": 0.5042695236206055, + "step": 63200 + }, + { + "epoch": 55.968812209688124, + "grad_norm": 0.5891813635826111, + "learning_rate": 2.202564102564103e-05, + "loss": 0.5021416473388672, + "step": 63300 + }, + { + "epoch": 56.05662464056625, + "grad_norm": 0.5297622680664062, + "learning_rate": 2.198187444739169e-05, + "loss": 0.4904953384399414, + "step": 63400 + }, + { + "epoch": 56.14510064145101, + "grad_norm": 0.5649422407150269, + "learning_rate": 2.193766578249337e-05, + "loss": 0.485706672668457, + "step": 63500 + }, + { + "epoch": 56.23357664233577, + "grad_norm": 0.6352797150611877, + "learning_rate": 2.189345711759505e-05, + "loss": 0.4867672348022461, + "step": 63600 + }, + { + "epoch": 56.32205264322052, + "grad_norm": 0.5789678692817688, + "learning_rate": 2.184924845269673e-05, + "loss": 0.48802379608154295, + "step": 63700 + }, + { + "epoch": 56.410528644105284, + "grad_norm": 0.6075431704521179, + "learning_rate": 2.180503978779841e-05, + "loss": 0.4910835647583008, + "step": 63800 + }, + { + "epoch": 56.499004644990045, + "grad_norm": 0.5858777165412903, + "learning_rate": 2.1760831122900088e-05, + "loss": 0.4906935119628906, + "step": 63900 + }, + { + "epoch": 56.587480645874805, + "grad_norm": 0.5143148899078369, + "learning_rate": 2.171662245800177e-05, + "loss": 0.49202545166015627, + "step": 64000 + }, + { + "epoch": 56.675956646759566, + "grad_norm": 0.5330872535705566, + "learning_rate": 2.167241379310345e-05, + "loss": 0.4929664611816406, + "step": 64100 + }, + { + "epoch": 56.76443264764433, + "grad_norm": 0.5530017018318176, + "learning_rate": 2.162820512820513e-05, + "loss": 0.49355899810791015, + "step": 64200 + }, + { + "epoch": 56.85290864852909, + "grad_norm": 0.5891992449760437, + "learning_rate": 2.158399646330681e-05, + "loss": 0.49566749572753904, + "step": 64300 + }, + { + "epoch": 56.94138464941385, + "grad_norm": 0.5289095044136047, + "learning_rate": 2.153978779840849e-05, + "loss": 0.4987163543701172, + "step": 64400 + }, + { + "epoch": 57.02919708029197, + "grad_norm": 0.5679471492767334, + "learning_rate": 2.1495579133510167e-05, + "loss": 0.49003833770751953, + "step": 64500 + }, + { + "epoch": 57.11767308117673, + "grad_norm": 0.5432245135307312, + "learning_rate": 2.1451370468611848e-05, + "loss": 0.47765895843505857, + "step": 64600 + }, + { + "epoch": 57.20614908206149, + "grad_norm": 0.5474491119384766, + "learning_rate": 2.1407161803713528e-05, + "loss": 0.4797785568237305, + "step": 64700 + }, + { + "epoch": 57.294625082946254, + "grad_norm": 0.537804126739502, + "learning_rate": 2.136295313881521e-05, + "loss": 0.4833247756958008, + "step": 64800 + }, + { + "epoch": 57.38310108383101, + "grad_norm": 0.572169840335846, + "learning_rate": 2.131874447391689e-05, + "loss": 0.4836674118041992, + "step": 64900 + }, + { + "epoch": 57.47157708471577, + "grad_norm": 0.5344268679618835, + "learning_rate": 2.127453580901857e-05, + "loss": 0.48507492065429686, + "step": 65000 + }, + { + "epoch": 57.56005308560053, + "grad_norm": 0.5664619207382202, + "learning_rate": 2.123032714412025e-05, + "loss": 0.488138427734375, + "step": 65100 + }, + { + "epoch": 57.64852908648529, + "grad_norm": 0.5902144312858582, + "learning_rate": 2.1186118479221927e-05, + "loss": 0.48771110534667966, + "step": 65200 + }, + { + "epoch": 57.73700508737005, + "grad_norm": 0.562929630279541, + "learning_rate": 2.1141909814323607e-05, + "loss": 0.4875301742553711, + "step": 65300 + }, + { + "epoch": 57.82548108825481, + "grad_norm": 0.5995573997497559, + "learning_rate": 2.1097701149425288e-05, + "loss": 0.49271678924560547, + "step": 65400 + }, + { + "epoch": 57.91395708913957, + "grad_norm": 0.6624785661697388, + "learning_rate": 2.105349248452697e-05, + "loss": 0.4920695877075195, + "step": 65500 + }, + { + "epoch": 58.001769520017696, + "grad_norm": 0.5402753353118896, + "learning_rate": 2.100928381962865e-05, + "loss": 0.49431739807128905, + "step": 65600 + }, + { + "epoch": 58.09024552090246, + "grad_norm": 0.5145826935768127, + "learning_rate": 2.096507515473033e-05, + "loss": 0.47089763641357424, + "step": 65700 + }, + { + "epoch": 58.17872152178722, + "grad_norm": 0.5931445360183716, + "learning_rate": 2.092086648983201e-05, + "loss": 0.4758612060546875, + "step": 65800 + }, + { + "epoch": 58.26719752267198, + "grad_norm": 0.5388639569282532, + "learning_rate": 2.0876657824933687e-05, + "loss": 0.47640296936035154, + "step": 65900 + }, + { + "epoch": 58.35567352355674, + "grad_norm": 0.5639314651489258, + "learning_rate": 2.0832449160035367e-05, + "loss": 0.482130241394043, + "step": 66000 + }, + { + "epoch": 58.44414952444149, + "grad_norm": 0.5535529851913452, + "learning_rate": 2.0788240495137048e-05, + "loss": 0.47872936248779296, + "step": 66100 + }, + { + "epoch": 58.53262552532625, + "grad_norm": 0.5827674865722656, + "learning_rate": 2.0744031830238728e-05, + "loss": 0.4842064666748047, + "step": 66200 + }, + { + "epoch": 58.621101526211014, + "grad_norm": 0.5696784257888794, + "learning_rate": 2.0699823165340405e-05, + "loss": 0.4816234588623047, + "step": 66300 + }, + { + "epoch": 58.709577527095774, + "grad_norm": 0.5349422097206116, + "learning_rate": 2.065561450044209e-05, + "loss": 0.48554718017578125, + "step": 66400 + }, + { + "epoch": 58.798053527980535, + "grad_norm": 0.636604368686676, + "learning_rate": 2.0611405835543766e-05, + "loss": 0.4876006317138672, + "step": 66500 + }, + { + "epoch": 58.886529528865296, + "grad_norm": 0.6060304045677185, + "learning_rate": 2.0567197170645447e-05, + "loss": 0.4887725830078125, + "step": 66600 + }, + { + "epoch": 58.97500552975006, + "grad_norm": 0.6087244749069214, + "learning_rate": 2.0522988505747127e-05, + "loss": 0.4868877410888672, + "step": 66700 + }, + { + "epoch": 59.06281796062818, + "grad_norm": 0.49913933873176575, + "learning_rate": 2.047922192749779e-05, + "loss": 0.4722119140625, + "step": 66800 + }, + { + "epoch": 59.15129396151294, + "grad_norm": 0.4722621738910675, + "learning_rate": 2.043501326259947e-05, + "loss": 0.47009246826171874, + "step": 66900 + }, + { + "epoch": 59.2397699623977, + "grad_norm": 0.5657719373703003, + "learning_rate": 2.0390804597701148e-05, + "loss": 0.472298583984375, + "step": 67000 + }, + { + "epoch": 59.32824596328246, + "grad_norm": 0.5761541724205017, + "learning_rate": 2.034659593280283e-05, + "loss": 0.4723761749267578, + "step": 67100 + }, + { + "epoch": 59.416721964167216, + "grad_norm": 0.6316192150115967, + "learning_rate": 2.030238726790451e-05, + "loss": 0.47409954071044924, + "step": 67200 + }, + { + "epoch": 59.50519796505198, + "grad_norm": 0.6090986132621765, + "learning_rate": 2.025817860300619e-05, + "loss": 0.4764304351806641, + "step": 67300 + }, + { + "epoch": 59.59367396593674, + "grad_norm": 0.5362303256988525, + "learning_rate": 2.021396993810787e-05, + "loss": 0.4776358795166016, + "step": 67400 + }, + { + "epoch": 59.6821499668215, + "grad_norm": 0.553995668888092, + "learning_rate": 2.016976127320955e-05, + "loss": 0.4807791519165039, + "step": 67500 + }, + { + "epoch": 59.77062596770626, + "grad_norm": 0.5615981221199036, + "learning_rate": 2.012555260831123e-05, + "loss": 0.48062610626220703, + "step": 67600 + }, + { + "epoch": 59.85910196859102, + "grad_norm": 0.5885509252548218, + "learning_rate": 2.0081343943412908e-05, + "loss": 0.48244945526123045, + "step": 67700 + }, + { + "epoch": 59.94757796947578, + "grad_norm": 0.6052979230880737, + "learning_rate": 2.003713527851459e-05, + "loss": 0.4803206634521484, + "step": 67800 + }, + { + "epoch": 60.035390400353904, + "grad_norm": 0.5579769015312195, + "learning_rate": 1.999292661361627e-05, + "loss": 0.4752388000488281, + "step": 67900 + }, + { + "epoch": 60.123866401238665, + "grad_norm": 0.478289395570755, + "learning_rate": 1.994871794871795e-05, + "loss": 0.4645302200317383, + "step": 68000 + }, + { + "epoch": 60.212342402123426, + "grad_norm": 0.5545957088470459, + "learning_rate": 1.990450928381963e-05, + "loss": 0.46837158203125, + "step": 68100 + }, + { + "epoch": 60.300818403008186, + "grad_norm": 0.524662435054779, + "learning_rate": 1.986030061892131e-05, + "loss": 0.4679202651977539, + "step": 68200 + }, + { + "epoch": 60.38929440389295, + "grad_norm": 0.6101793646812439, + "learning_rate": 1.981609195402299e-05, + "loss": 0.46956668853759764, + "step": 68300 + }, + { + "epoch": 60.4777704047777, + "grad_norm": 0.5040204524993896, + "learning_rate": 1.9771883289124667e-05, + "loss": 0.4706681060791016, + "step": 68400 + }, + { + "epoch": 60.56624640566246, + "grad_norm": 0.563679039478302, + "learning_rate": 1.972767462422635e-05, + "loss": 0.471558837890625, + "step": 68500 + }, + { + "epoch": 60.65472240654722, + "grad_norm": 0.5668439865112305, + "learning_rate": 1.9683465959328028e-05, + "loss": 0.4727770233154297, + "step": 68600 + }, + { + "epoch": 60.74319840743198, + "grad_norm": 0.6011987328529358, + "learning_rate": 1.963925729442971e-05, + "loss": 0.47645427703857424, + "step": 68700 + }, + { + "epoch": 60.83167440831674, + "grad_norm": 0.6392132043838501, + "learning_rate": 1.959504862953139e-05, + "loss": 0.4765947341918945, + "step": 68800 + }, + { + "epoch": 60.920150409201504, + "grad_norm": 0.6424957513809204, + "learning_rate": 1.955083996463307e-05, + "loss": 0.4768808746337891, + "step": 68900 + }, + { + "epoch": 61.00796284007963, + "grad_norm": 0.5341200828552246, + "learning_rate": 1.9507073386383733e-05, + "loss": 0.4776120376586914, + "step": 69000 + }, + { + "epoch": 61.09643884096439, + "grad_norm": 0.622922956943512, + "learning_rate": 1.9462864721485413e-05, + "loss": 0.46137203216552736, + "step": 69100 + }, + { + "epoch": 61.18491484184915, + "grad_norm": 0.5679436326026917, + "learning_rate": 1.9418656056587094e-05, + "loss": 0.46096920013427733, + "step": 69200 + }, + { + "epoch": 61.27339084273391, + "grad_norm": 0.5972808003425598, + "learning_rate": 1.937444739168877e-05, + "loss": 0.46090087890625, + "step": 69300 + }, + { + "epoch": 61.36186684361867, + "grad_norm": 0.5825915336608887, + "learning_rate": 1.933023872679045e-05, + "loss": 0.46518352508544925, + "step": 69400 + }, + { + "epoch": 61.45034284450343, + "grad_norm": 0.48754116892814636, + "learning_rate": 1.9286030061892132e-05, + "loss": 0.4664886856079102, + "step": 69500 + }, + { + "epoch": 61.538818845388185, + "grad_norm": 0.5583191514015198, + "learning_rate": 1.9241821396993812e-05, + "loss": 0.46886295318603516, + "step": 69600 + }, + { + "epoch": 61.627294846272946, + "grad_norm": 0.5658340454101562, + "learning_rate": 1.919761273209549e-05, + "loss": 0.4696169662475586, + "step": 69700 + }, + { + "epoch": 61.71577084715771, + "grad_norm": 0.5801714658737183, + "learning_rate": 1.9153404067197173e-05, + "loss": 0.47141036987304685, + "step": 69800 + }, + { + "epoch": 61.80424684804247, + "grad_norm": 0.5643869042396545, + "learning_rate": 1.910919540229885e-05, + "loss": 0.4727308654785156, + "step": 69900 + }, + { + "epoch": 61.89272284892723, + "grad_norm": 0.5937660336494446, + "learning_rate": 1.906498673740053e-05, + "loss": 0.4726886367797852, + "step": 70000 + }, + { + "epoch": 61.98119884981199, + "grad_norm": 0.5228411555290222, + "learning_rate": 1.902077807250221e-05, + "loss": 0.47457176208496094, + "step": 70100 + }, + { + "epoch": 62.06901128069011, + "grad_norm": 0.5100186467170715, + "learning_rate": 1.897656940760389e-05, + "loss": 0.4604149627685547, + "step": 70200 + }, + { + "epoch": 62.15748728157487, + "grad_norm": 0.5119529962539673, + "learning_rate": 1.8932360742705572e-05, + "loss": 0.4561204147338867, + "step": 70300 + }, + { + "epoch": 62.245963282459634, + "grad_norm": 0.5130912065505981, + "learning_rate": 1.888815207780725e-05, + "loss": 0.4596226501464844, + "step": 70400 + }, + { + "epoch": 62.334439283344395, + "grad_norm": 0.5388224720954895, + "learning_rate": 1.8843943412908933e-05, + "loss": 0.4617993927001953, + "step": 70500 + }, + { + "epoch": 62.422915284229155, + "grad_norm": 0.5555194020271301, + "learning_rate": 1.879973474801061e-05, + "loss": 0.46267467498779297, + "step": 70600 + }, + { + "epoch": 62.511391285113916, + "grad_norm": 0.5136281847953796, + "learning_rate": 1.875552608311229e-05, + "loss": 0.4628156280517578, + "step": 70700 + }, + { + "epoch": 62.59986728599867, + "grad_norm": 0.5039867162704468, + "learning_rate": 1.871131741821397e-05, + "loss": 0.4678297805786133, + "step": 70800 + }, + { + "epoch": 62.68834328688343, + "grad_norm": 0.566985547542572, + "learning_rate": 1.866710875331565e-05, + "loss": 0.46522830963134765, + "step": 70900 + }, + { + "epoch": 62.77681928776819, + "grad_norm": 0.5855474472045898, + "learning_rate": 1.8622900088417332e-05, + "loss": 0.46788333892822265, + "step": 71000 + }, + { + "epoch": 62.86529528865295, + "grad_norm": 0.5838083624839783, + "learning_rate": 1.857869142351901e-05, + "loss": 0.4687856292724609, + "step": 71100 + }, + { + "epoch": 62.95377128953771, + "grad_norm": 0.6574355363845825, + "learning_rate": 1.8534482758620693e-05, + "loss": 0.46836143493652344, + "step": 71200 + }, + { + "epoch": 63.04158372041584, + "grad_norm": 0.5751773118972778, + "learning_rate": 1.849027409372237e-05, + "loss": 0.4590755844116211, + "step": 71300 + }, + { + "epoch": 63.1300597213006, + "grad_norm": 0.5056807398796082, + "learning_rate": 1.844606542882405e-05, + "loss": 0.45313865661621094, + "step": 71400 + }, + { + "epoch": 63.21853572218536, + "grad_norm": 0.5403828024864197, + "learning_rate": 1.840185676392573e-05, + "loss": 0.4552134323120117, + "step": 71500 + }, + { + "epoch": 63.30701172307012, + "grad_norm": 0.48244568705558777, + "learning_rate": 1.835764809902741e-05, + "loss": 0.45661014556884766, + "step": 71600 + }, + { + "epoch": 63.39548772395488, + "grad_norm": 0.5753127932548523, + "learning_rate": 1.831343943412909e-05, + "loss": 0.4578168487548828, + "step": 71700 + }, + { + "epoch": 63.48396372483964, + "grad_norm": 0.5782042741775513, + "learning_rate": 1.826923076923077e-05, + "loss": 0.4589107131958008, + "step": 71800 + }, + { + "epoch": 63.5724397257244, + "grad_norm": 0.5895569920539856, + "learning_rate": 1.8225022104332453e-05, + "loss": 0.46304950714111326, + "step": 71900 + }, + { + "epoch": 63.660915726609154, + "grad_norm": 0.6601688265800476, + "learning_rate": 1.818081343943413e-05, + "loss": 0.45953712463378904, + "step": 72000 + }, + { + "epoch": 63.749391727493915, + "grad_norm": 0.5695818066596985, + "learning_rate": 1.813660477453581e-05, + "loss": 0.46058246612548825, + "step": 72100 + }, + { + "epoch": 63.837867728378676, + "grad_norm": 0.5006322264671326, + "learning_rate": 1.809239610963749e-05, + "loss": 0.4630731964111328, + "step": 72200 + }, + { + "epoch": 63.926343729263436, + "grad_norm": 0.5871863961219788, + "learning_rate": 1.804818744473917e-05, + "loss": 0.46295913696289065, + "step": 72300 + }, + { + "epoch": 64.01415616014157, + "grad_norm": 0.5417830348014832, + "learning_rate": 1.8003978779840848e-05, + "loss": 0.4623433303833008, + "step": 72400 + }, + { + "epoch": 64.10263216102632, + "grad_norm": 0.5019242763519287, + "learning_rate": 1.795977011494253e-05, + "loss": 0.44698051452636717, + "step": 72500 + }, + { + "epoch": 64.19110816191107, + "grad_norm": 0.5637330412864685, + "learning_rate": 1.791556145004421e-05, + "loss": 0.4492236328125, + "step": 72600 + }, + { + "epoch": 64.27958416279584, + "grad_norm": 0.5333090424537659, + "learning_rate": 1.787135278514589e-05, + "loss": 0.45192584991455076, + "step": 72700 + }, + { + "epoch": 64.3680601636806, + "grad_norm": 0.5232571363449097, + "learning_rate": 1.782714412024757e-05, + "loss": 0.45244823455810546, + "step": 72800 + }, + { + "epoch": 64.45653616456536, + "grad_norm": 0.4935717284679413, + "learning_rate": 1.778293545534925e-05, + "loss": 0.4529353332519531, + "step": 72900 + }, + { + "epoch": 64.54501216545012, + "grad_norm": 0.5450688600540161, + "learning_rate": 1.7739168877099913e-05, + "loss": 0.4567538833618164, + "step": 73000 + }, + { + "epoch": 64.63348816633489, + "grad_norm": 0.47621846199035645, + "learning_rate": 1.769496021220159e-05, + "loss": 0.4563169097900391, + "step": 73100 + }, + { + "epoch": 64.72196416721964, + "grad_norm": 0.5023945569992065, + "learning_rate": 1.7650751547303274e-05, + "loss": 0.46204959869384765, + "step": 73200 + }, + { + "epoch": 64.8104401681044, + "grad_norm": 0.49148306250572205, + "learning_rate": 1.760654288240495e-05, + "loss": 0.45924064636230466, + "step": 73300 + }, + { + "epoch": 64.89891616898916, + "grad_norm": 0.6161800026893616, + "learning_rate": 1.7562334217506632e-05, + "loss": 0.45994918823242187, + "step": 73400 + }, + { + "epoch": 64.98739216987393, + "grad_norm": 0.5307760238647461, + "learning_rate": 1.7518125552608312e-05, + "loss": 0.461478271484375, + "step": 73500 + }, + { + "epoch": 65.07520460075204, + "grad_norm": 0.588062584400177, + "learning_rate": 1.7474358974358976e-05, + "loss": 0.4461378479003906, + "step": 73600 + }, + { + "epoch": 65.16368060163681, + "grad_norm": 0.5329079627990723, + "learning_rate": 1.7430150309460656e-05, + "loss": 0.4440943145751953, + "step": 73700 + }, + { + "epoch": 65.25215660252157, + "grad_norm": 0.6149891018867493, + "learning_rate": 1.7385941644562333e-05, + "loss": 0.44721881866455077, + "step": 73800 + }, + { + "epoch": 65.34063260340632, + "grad_norm": 0.5438173413276672, + "learning_rate": 1.7341732979664017e-05, + "loss": 0.44954757690429686, + "step": 73900 + }, + { + "epoch": 65.42910860429109, + "grad_norm": 0.5428133606910706, + "learning_rate": 1.7297524314765694e-05, + "loss": 0.45107986450195314, + "step": 74000 + }, + { + "epoch": 65.51758460517584, + "grad_norm": 0.5134186744689941, + "learning_rate": 1.7253315649867374e-05, + "loss": 0.45244071960449217, + "step": 74100 + }, + { + "epoch": 65.60606060606061, + "grad_norm": 0.6233081817626953, + "learning_rate": 1.7209106984969055e-05, + "loss": 0.45329185485839846, + "step": 74200 + }, + { + "epoch": 65.69453660694536, + "grad_norm": 0.5700708627700806, + "learning_rate": 1.7164898320070735e-05, + "loss": 0.4539757537841797, + "step": 74300 + }, + { + "epoch": 65.78301260783013, + "grad_norm": 0.5631476640701294, + "learning_rate": 1.7120689655172416e-05, + "loss": 0.4555579376220703, + "step": 74400 + }, + { + "epoch": 65.87148860871488, + "grad_norm": 0.5964381694793701, + "learning_rate": 1.7076480990274093e-05, + "loss": 0.45496936798095705, + "step": 74500 + }, + { + "epoch": 65.95996460959965, + "grad_norm": 0.5872741341590881, + "learning_rate": 1.7032272325375777e-05, + "loss": 0.45641098022460935, + "step": 74600 + }, + { + "epoch": 66.04777704047777, + "grad_norm": 0.522363543510437, + "learning_rate": 1.6988063660477454e-05, + "loss": 0.4488802337646484, + "step": 74700 + }, + { + "epoch": 66.13625304136254, + "grad_norm": 0.5161113739013672, + "learning_rate": 1.6943854995579134e-05, + "loss": 0.44122817993164065, + "step": 74800 + }, + { + "epoch": 66.22472904224729, + "grad_norm": 0.5127883553504944, + "learning_rate": 1.6899646330680815e-05, + "loss": 0.4447059631347656, + "step": 74900 + }, + { + "epoch": 66.31320504313204, + "grad_norm": 0.5202219486236572, + "learning_rate": 1.6855437665782495e-05, + "loss": 0.4453567123413086, + "step": 75000 + }, + { + "epoch": 66.40168104401681, + "grad_norm": 0.4957808256149292, + "learning_rate": 1.6811229000884172e-05, + "loss": 0.44502986907958986, + "step": 75100 + }, + { + "epoch": 66.49015704490157, + "grad_norm": 0.622518002986908, + "learning_rate": 1.6767020335985853e-05, + "loss": 0.44539188385009765, + "step": 75200 + }, + { + "epoch": 66.57863304578633, + "grad_norm": 0.5333230495452881, + "learning_rate": 1.6722811671087537e-05, + "loss": 0.4479424667358398, + "step": 75300 + }, + { + "epoch": 66.66710904667109, + "grad_norm": 0.536641001701355, + "learning_rate": 1.6678603006189214e-05, + "loss": 0.4486875534057617, + "step": 75400 + }, + { + "epoch": 66.75558504755585, + "grad_norm": 0.6140312552452087, + "learning_rate": 1.6634394341290894e-05, + "loss": 0.45118595123291017, + "step": 75500 + }, + { + "epoch": 66.84406104844061, + "grad_norm": 0.5268392562866211, + "learning_rate": 1.6590185676392574e-05, + "loss": 0.4503518676757812, + "step": 75600 + }, + { + "epoch": 66.93253704932538, + "grad_norm": 0.6316497325897217, + "learning_rate": 1.6545977011494255e-05, + "loss": 0.45311626434326174, + "step": 75700 + }, + { + "epoch": 67.02034948020349, + "grad_norm": 0.4964323937892914, + "learning_rate": 1.6502210433244915e-05, + "loss": 0.44798419952392576, + "step": 75800 + }, + { + "epoch": 67.10882548108826, + "grad_norm": 0.5668012499809265, + "learning_rate": 1.6458001768346595e-05, + "loss": 0.43682758331298827, + "step": 75900 + }, + { + "epoch": 67.19730148197301, + "grad_norm": 0.5451331734657288, + "learning_rate": 1.6413793103448276e-05, + "loss": 0.43744281768798826, + "step": 76000 + }, + { + "epoch": 67.28577748285778, + "grad_norm": 0.5625444650650024, + "learning_rate": 1.6369584438549956e-05, + "loss": 0.44072349548339845, + "step": 76100 + }, + { + "epoch": 67.37425348374254, + "grad_norm": 0.5437332391738892, + "learning_rate": 1.6325375773651637e-05, + "loss": 0.4433360290527344, + "step": 76200 + }, + { + "epoch": 67.46272948462729, + "grad_norm": 0.6005889773368835, + "learning_rate": 1.6281167108753317e-05, + "loss": 0.44355270385742185, + "step": 76300 + }, + { + "epoch": 67.55120548551206, + "grad_norm": 0.6379736065864563, + "learning_rate": 1.6236958443854997e-05, + "loss": 0.4445816421508789, + "step": 76400 + }, + { + "epoch": 67.63968148639681, + "grad_norm": 0.4892788529396057, + "learning_rate": 1.6192749778956675e-05, + "loss": 0.4460066604614258, + "step": 76500 + }, + { + "epoch": 67.72815748728158, + "grad_norm": 0.5238019227981567, + "learning_rate": 1.614854111405836e-05, + "loss": 0.44812583923339844, + "step": 76600 + }, + { + "epoch": 67.81663348816633, + "grad_norm": 0.6448091864585876, + "learning_rate": 1.6104332449160035e-05, + "loss": 0.44679683685302735, + "step": 76700 + }, + { + "epoch": 67.9051094890511, + "grad_norm": 0.501971423625946, + "learning_rate": 1.6060123784261716e-05, + "loss": 0.44675071716308595, + "step": 76800 + }, + { + "epoch": 67.99358548993585, + "grad_norm": 0.5027251243591309, + "learning_rate": 1.6015915119363396e-05, + "loss": 0.450067138671875, + "step": 76900 + }, + { + "epoch": 68.08139792081398, + "grad_norm": 0.5118396878242493, + "learning_rate": 1.5971706454465077e-05, + "loss": 0.4363971710205078, + "step": 77000 + }, + { + "epoch": 68.16987392169874, + "grad_norm": 0.49976325035095215, + "learning_rate": 1.5927497789566757e-05, + "loss": 0.43459579467773435, + "step": 77100 + }, + { + "epoch": 68.2583499225835, + "grad_norm": 0.4591541886329651, + "learning_rate": 1.5883289124668434e-05, + "loss": 0.4374491500854492, + "step": 77200 + }, + { + "epoch": 68.34682592346826, + "grad_norm": 0.5061107277870178, + "learning_rate": 1.5839080459770118e-05, + "loss": 0.4367493438720703, + "step": 77300 + }, + { + "epoch": 68.43530192435301, + "grad_norm": 0.5607414245605469, + "learning_rate": 1.5794871794871795e-05, + "loss": 0.43953250885009765, + "step": 77400 + }, + { + "epoch": 68.52377792523778, + "grad_norm": 0.5758550763130188, + "learning_rate": 1.5750663129973476e-05, + "loss": 0.4412353515625, + "step": 77500 + }, + { + "epoch": 68.61225392612253, + "grad_norm": 0.6092869639396667, + "learning_rate": 1.5706454465075153e-05, + "loss": 0.44133682250976564, + "step": 77600 + }, + { + "epoch": 68.7007299270073, + "grad_norm": 0.6203352808952332, + "learning_rate": 1.5662245800176837e-05, + "loss": 0.4439066696166992, + "step": 77700 + }, + { + "epoch": 68.78920592789206, + "grad_norm": 0.5746839046478271, + "learning_rate": 1.5618037135278517e-05, + "loss": 0.4423197174072266, + "step": 77800 + }, + { + "epoch": 68.87768192877682, + "grad_norm": 0.5136276483535767, + "learning_rate": 1.5573828470380194e-05, + "loss": 0.4460869598388672, + "step": 77900 + }, + { + "epoch": 68.96615792966158, + "grad_norm": 0.4968768358230591, + "learning_rate": 1.5529619805481878e-05, + "loss": 0.4462531280517578, + "step": 78000 + }, + { + "epoch": 69.05397036053971, + "grad_norm": 0.5103012919425964, + "learning_rate": 1.5485411140583555e-05, + "loss": 0.43465484619140626, + "step": 78100 + }, + { + "epoch": 69.14244636142446, + "grad_norm": 0.5626784563064575, + "learning_rate": 1.5441202475685236e-05, + "loss": 0.4333412551879883, + "step": 78200 + }, + { + "epoch": 69.23092236230923, + "grad_norm": 0.5118581652641296, + "learning_rate": 1.5396993810786913e-05, + "loss": 0.4336922836303711, + "step": 78300 + }, + { + "epoch": 69.31939836319398, + "grad_norm": 0.5944911241531372, + "learning_rate": 1.5352785145888596e-05, + "loss": 0.43566287994384767, + "step": 78400 + }, + { + "epoch": 69.40787436407874, + "grad_norm": 0.5433744788169861, + "learning_rate": 1.5308576480990273e-05, + "loss": 0.4361726379394531, + "step": 78500 + }, + { + "epoch": 69.4963503649635, + "grad_norm": 0.614020049571991, + "learning_rate": 1.5264367816091954e-05, + "loss": 0.4380105209350586, + "step": 78600 + }, + { + "epoch": 69.58482636584826, + "grad_norm": 0.5004254579544067, + "learning_rate": 1.5220159151193636e-05, + "loss": 0.4391395950317383, + "step": 78700 + }, + { + "epoch": 69.67330236673303, + "grad_norm": 0.522055983543396, + "learning_rate": 1.5175950486295315e-05, + "loss": 0.4396755599975586, + "step": 78800 + }, + { + "epoch": 69.76177836761778, + "grad_norm": 0.524988055229187, + "learning_rate": 1.5131741821396994e-05, + "loss": 0.4374229431152344, + "step": 78900 + }, + { + "epoch": 69.85025436850255, + "grad_norm": 0.5780676603317261, + "learning_rate": 1.5087533156498674e-05, + "loss": 0.4402974319458008, + "step": 79000 + }, + { + "epoch": 69.9387303693873, + "grad_norm": 0.5651708841323853, + "learning_rate": 1.5043324491600355e-05, + "loss": 0.44202667236328125, + "step": 79100 + }, + { + "epoch": 70.02654280026543, + "grad_norm": 0.48370227217674255, + "learning_rate": 1.4999557913351018e-05, + "loss": 0.4367184829711914, + "step": 79200 + }, + { + "epoch": 70.11501880115019, + "grad_norm": 0.5551156401634216, + "learning_rate": 1.4955349248452696e-05, + "loss": 0.42862590789794924, + "step": 79300 + }, + { + "epoch": 70.20349480203495, + "grad_norm": 0.5126725435256958, + "learning_rate": 1.4911140583554379e-05, + "loss": 0.4319373321533203, + "step": 79400 + }, + { + "epoch": 70.2919708029197, + "grad_norm": 0.5189195871353149, + "learning_rate": 1.4866931918656057e-05, + "loss": 0.4309040832519531, + "step": 79500 + }, + { + "epoch": 70.38044680380447, + "grad_norm": 0.49422213435173035, + "learning_rate": 1.4822723253757736e-05, + "loss": 0.43275665283203124, + "step": 79600 + }, + { + "epoch": 70.46892280468923, + "grad_norm": 0.49081242084503174, + "learning_rate": 1.4778514588859418e-05, + "loss": 0.4326107406616211, + "step": 79700 + }, + { + "epoch": 70.55739880557398, + "grad_norm": 0.5408063530921936, + "learning_rate": 1.4734305923961097e-05, + "loss": 0.4341436004638672, + "step": 79800 + }, + { + "epoch": 70.64587480645875, + "grad_norm": 0.4664778411388397, + "learning_rate": 1.4690097259062778e-05, + "loss": 0.4358782577514648, + "step": 79900 + }, + { + "epoch": 70.7343508073435, + "grad_norm": 0.5463866591453552, + "learning_rate": 1.4645888594164456e-05, + "loss": 0.4348703384399414, + "step": 80000 + }, + { + "epoch": 70.82282680822827, + "grad_norm": 0.5187687873840332, + "learning_rate": 1.4601679929266138e-05, + "loss": 0.43734962463378907, + "step": 80100 + }, + { + "epoch": 70.91130280911302, + "grad_norm": 0.4700576961040497, + "learning_rate": 1.4557471264367817e-05, + "loss": 0.43692012786865236, + "step": 80200 + }, + { + "epoch": 70.99977880999779, + "grad_norm": 0.5413524508476257, + "learning_rate": 1.4513262599469496e-05, + "loss": 0.43848495483398436, + "step": 80300 + }, + { + "epoch": 71.08759124087591, + "grad_norm": 0.5619797110557556, + "learning_rate": 1.4469053934571178e-05, + "loss": 0.4241709899902344, + "step": 80400 + }, + { + "epoch": 71.17606724176068, + "grad_norm": 0.5617126226425171, + "learning_rate": 1.4424845269672857e-05, + "loss": 0.42585777282714843, + "step": 80500 + }, + { + "epoch": 71.26454324264543, + "grad_norm": 0.6131432056427002, + "learning_rate": 1.4380636604774536e-05, + "loss": 0.42857707977294923, + "step": 80600 + }, + { + "epoch": 71.3530192435302, + "grad_norm": 0.5178084969520569, + "learning_rate": 1.4336427939876216e-05, + "loss": 0.4283063507080078, + "step": 80700 + }, + { + "epoch": 71.44149524441495, + "grad_norm": 0.4994112253189087, + "learning_rate": 1.4292219274977897e-05, + "loss": 0.43106334686279296, + "step": 80800 + }, + { + "epoch": 71.5299712452997, + "grad_norm": 0.5411744713783264, + "learning_rate": 1.4248010610079577e-05, + "loss": 0.43190105438232423, + "step": 80900 + }, + { + "epoch": 71.61844724618447, + "grad_norm": 0.5602013468742371, + "learning_rate": 1.4203801945181256e-05, + "loss": 0.4335565185546875, + "step": 81000 + }, + { + "epoch": 71.70692324706923, + "grad_norm": 0.5469107031822205, + "learning_rate": 1.4159593280282938e-05, + "loss": 0.4339017105102539, + "step": 81100 + }, + { + "epoch": 71.795399247954, + "grad_norm": 0.5971689224243164, + "learning_rate": 1.4115384615384617e-05, + "loss": 0.43302181243896487, + "step": 81200 + }, + { + "epoch": 71.88387524883875, + "grad_norm": 0.5518947243690491, + "learning_rate": 1.4071175950486295e-05, + "loss": 0.4339981460571289, + "step": 81300 + }, + { + "epoch": 71.97235124972352, + "grad_norm": 0.46094366908073425, + "learning_rate": 1.4026967285587974e-05, + "loss": 0.4368946075439453, + "step": 81400 + }, + { + "epoch": 72.06016368060163, + "grad_norm": 0.5013940334320068, + "learning_rate": 1.3983200707338639e-05, + "loss": 0.4272830581665039, + "step": 81500 + }, + { + "epoch": 72.1486396814864, + "grad_norm": 0.5779539346694946, + "learning_rate": 1.3938992042440318e-05, + "loss": 0.4237482452392578, + "step": 81600 + }, + { + "epoch": 72.23711568237115, + "grad_norm": 0.5799530744552612, + "learning_rate": 1.3894783377541998e-05, + "loss": 0.4221677398681641, + "step": 81700 + }, + { + "epoch": 72.32559168325592, + "grad_norm": 0.4773975908756256, + "learning_rate": 1.385057471264368e-05, + "loss": 0.4251049041748047, + "step": 81800 + }, + { + "epoch": 72.41406768414068, + "grad_norm": 0.5311180353164673, + "learning_rate": 1.380636604774536e-05, + "loss": 0.42632369995117186, + "step": 81900 + }, + { + "epoch": 72.50254368502544, + "grad_norm": 0.47812601923942566, + "learning_rate": 1.3762157382847038e-05, + "loss": 0.42722888946533205, + "step": 82000 + }, + { + "epoch": 72.5910196859102, + "grad_norm": 0.606674313545227, + "learning_rate": 1.371794871794872e-05, + "loss": 0.4295787811279297, + "step": 82100 + }, + { + "epoch": 72.67949568679495, + "grad_norm": 0.5414536595344543, + "learning_rate": 1.3673740053050399e-05, + "loss": 0.4311911392211914, + "step": 82200 + }, + { + "epoch": 72.76797168767972, + "grad_norm": 0.5214236974716187, + "learning_rate": 1.3629531388152078e-05, + "loss": 0.4323184585571289, + "step": 82300 + }, + { + "epoch": 72.85644768856447, + "grad_norm": 0.531461238861084, + "learning_rate": 1.3585322723253756e-05, + "loss": 0.43523616790771485, + "step": 82400 + }, + { + "epoch": 72.94492368944924, + "grad_norm": 0.550273597240448, + "learning_rate": 1.3541114058355439e-05, + "loss": 0.4310142517089844, + "step": 82500 + }, + { + "epoch": 73.03273612032736, + "grad_norm": 0.47776085138320923, + "learning_rate": 1.3496905393457119e-05, + "loss": 0.4287875747680664, + "step": 82600 + }, + { + "epoch": 73.12121212121212, + "grad_norm": 0.4990812838077545, + "learning_rate": 1.3452696728558798e-05, + "loss": 0.42051288604736325, + "step": 82700 + }, + { + "epoch": 73.20968812209688, + "grad_norm": 0.5124841332435608, + "learning_rate": 1.340848806366048e-05, + "loss": 0.4193102264404297, + "step": 82800 + }, + { + "epoch": 73.29816412298165, + "grad_norm": 0.5289502739906311, + "learning_rate": 1.3364279398762159e-05, + "loss": 0.42208141326904297, + "step": 82900 + }, + { + "epoch": 73.3866401238664, + "grad_norm": 0.4958449602127075, + "learning_rate": 1.3320070733863837e-05, + "loss": 0.42313686370849607, + "step": 83000 + }, + { + "epoch": 73.47511612475117, + "grad_norm": 0.5278774499893188, + "learning_rate": 1.3275862068965516e-05, + "loss": 0.42546688079833983, + "step": 83100 + }, + { + "epoch": 73.56359212563592, + "grad_norm": 0.5365238785743713, + "learning_rate": 1.3231653404067198e-05, + "loss": 0.42514255523681643, + "step": 83200 + }, + { + "epoch": 73.65206812652067, + "grad_norm": 0.5327147841453552, + "learning_rate": 1.3187444739168877e-05, + "loss": 0.42642066955566404, + "step": 83300 + }, + { + "epoch": 73.74054412740544, + "grad_norm": 0.5245737433433533, + "learning_rate": 1.3143236074270558e-05, + "loss": 0.4263890838623047, + "step": 83400 + }, + { + "epoch": 73.8290201282902, + "grad_norm": 0.5159674286842346, + "learning_rate": 1.3099027409372238e-05, + "loss": 0.428508415222168, + "step": 83500 + }, + { + "epoch": 73.91749612917496, + "grad_norm": 0.47965142130851746, + "learning_rate": 1.3054818744473918e-05, + "loss": 0.42886260986328123, + "step": 83600 + }, + { + "epoch": 74.00530856005308, + "grad_norm": 0.573679506778717, + "learning_rate": 1.301105216622458e-05, + "loss": 0.4288605499267578, + "step": 83700 + }, + { + "epoch": 74.09378456093785, + "grad_norm": 0.5544322729110718, + "learning_rate": 1.2966843501326262e-05, + "loss": 0.4174742126464844, + "step": 83800 + }, + { + "epoch": 74.1822605618226, + "grad_norm": 0.4993799030780792, + "learning_rate": 1.2922634836427941e-05, + "loss": 0.4191867828369141, + "step": 83900 + }, + { + "epoch": 74.27073656270737, + "grad_norm": 0.57634037733078, + "learning_rate": 1.287842617152962e-05, + "loss": 0.42080997467041015, + "step": 84000 + }, + { + "epoch": 74.35921256359212, + "grad_norm": 0.5524028539657593, + "learning_rate": 1.2834217506631298e-05, + "loss": 0.41995132446289063, + "step": 84100 + }, + { + "epoch": 74.44768856447689, + "grad_norm": 0.5109556913375854, + "learning_rate": 1.279000884173298e-05, + "loss": 0.4207102584838867, + "step": 84200 + }, + { + "epoch": 74.53616456536164, + "grad_norm": 0.6384374499320984, + "learning_rate": 1.2745800176834661e-05, + "loss": 0.42162609100341797, + "step": 84300 + }, + { + "epoch": 74.6246405662464, + "grad_norm": 0.5029319524765015, + "learning_rate": 1.270159151193634e-05, + "loss": 0.4232307815551758, + "step": 84400 + }, + { + "epoch": 74.71311656713117, + "grad_norm": 0.49697303771972656, + "learning_rate": 1.2657382847038022e-05, + "loss": 0.4233212661743164, + "step": 84500 + }, + { + "epoch": 74.80159256801592, + "grad_norm": 0.5748586058616638, + "learning_rate": 1.26131741821397e-05, + "loss": 0.42522281646728516, + "step": 84600 + }, + { + "epoch": 74.89006856890069, + "grad_norm": 0.5335224866867065, + "learning_rate": 1.256896551724138e-05, + "loss": 0.4264080047607422, + "step": 84700 + }, + { + "epoch": 74.97854456978544, + "grad_norm": 0.5223293900489807, + "learning_rate": 1.2524756852343058e-05, + "loss": 0.4248130416870117, + "step": 84800 + }, + { + "epoch": 75.06635700066357, + "grad_norm": 0.588205099105835, + "learning_rate": 1.2480548187444739e-05, + "loss": 0.41714618682861326, + "step": 84900 + }, + { + "epoch": 75.15483300154833, + "grad_norm": 0.4878210127353668, + "learning_rate": 1.2436339522546419e-05, + "loss": 0.41694087982177735, + "step": 85000 + }, + { + "epoch": 75.2433090024331, + "grad_norm": 0.5826809406280518, + "learning_rate": 1.23921308576481e-05, + "loss": 0.41839481353759767, + "step": 85100 + }, + { + "epoch": 75.33178500331785, + "grad_norm": 0.5703395009040833, + "learning_rate": 1.234792219274978e-05, + "loss": 0.419650993347168, + "step": 85200 + }, + { + "epoch": 75.42026100420262, + "grad_norm": 0.5960374474525452, + "learning_rate": 1.230371352785146e-05, + "loss": 0.41910491943359374, + "step": 85300 + }, + { + "epoch": 75.50873700508737, + "grad_norm": 0.5564795732498169, + "learning_rate": 1.225950486295314e-05, + "loss": 0.42010501861572264, + "step": 85400 + }, + { + "epoch": 75.59721300597214, + "grad_norm": 0.5871827006340027, + "learning_rate": 1.221529619805482e-05, + "loss": 0.41939094543457034, + "step": 85500 + }, + { + "epoch": 75.68568900685689, + "grad_norm": 0.6139041185379028, + "learning_rate": 1.2171087533156498e-05, + "loss": 0.42172611236572266, + "step": 85600 + }, + { + "epoch": 75.77416500774164, + "grad_norm": 0.5693202614784241, + "learning_rate": 1.2126878868258179e-05, + "loss": 0.4217537307739258, + "step": 85700 + }, + { + "epoch": 75.86264100862641, + "grad_norm": 0.5371018648147583, + "learning_rate": 1.208267020335986e-05, + "loss": 0.4220458984375, + "step": 85800 + }, + { + "epoch": 75.95111700951117, + "grad_norm": 0.5617541074752808, + "learning_rate": 1.2038461538461538e-05, + "loss": 0.4248412322998047, + "step": 85900 + }, + { + "epoch": 76.0389294403893, + "grad_norm": 0.5177831649780273, + "learning_rate": 1.1994694960212203e-05, + "loss": 0.41939964294433596, + "step": 86000 + }, + { + "epoch": 76.12740544127405, + "grad_norm": 0.5142802000045776, + "learning_rate": 1.1950486295313883e-05, + "loss": 0.4111063003540039, + "step": 86100 + }, + { + "epoch": 76.21588144215882, + "grad_norm": 0.4861648976802826, + "learning_rate": 1.1906277630415562e-05, + "loss": 0.4148457717895508, + "step": 86200 + }, + { + "epoch": 76.30435744304357, + "grad_norm": 0.5097411870956421, + "learning_rate": 1.1862068965517243e-05, + "loss": 0.4158660125732422, + "step": 86300 + }, + { + "epoch": 76.39283344392834, + "grad_norm": 0.4740864336490631, + "learning_rate": 1.1817860300618921e-05, + "loss": 0.4178118133544922, + "step": 86400 + }, + { + "epoch": 76.48130944481309, + "grad_norm": 0.44249430298805237, + "learning_rate": 1.1773651635720602e-05, + "loss": 0.4165281677246094, + "step": 86500 + }, + { + "epoch": 76.56978544569786, + "grad_norm": 0.5490387082099915, + "learning_rate": 1.172944297082228e-05, + "loss": 0.4198506927490234, + "step": 86600 + }, + { + "epoch": 76.65826144658261, + "grad_norm": 0.5175479650497437, + "learning_rate": 1.1685234305923961e-05, + "loss": 0.4220100402832031, + "step": 86700 + }, + { + "epoch": 76.74673744746737, + "grad_norm": 0.5073688626289368, + "learning_rate": 1.1641025641025642e-05, + "loss": 0.4184294891357422, + "step": 86800 + }, + { + "epoch": 76.83521344835214, + "grad_norm": 0.6137869358062744, + "learning_rate": 1.1596816976127322e-05, + "loss": 0.41919185638427736, + "step": 86900 + }, + { + "epoch": 76.92368944923689, + "grad_norm": 0.5274661183357239, + "learning_rate": 1.1552608311229002e-05, + "loss": 0.4193117141723633, + "step": 87000 + }, + { + "epoch": 77.01150188011502, + "grad_norm": 0.578369677066803, + "learning_rate": 1.1508399646330681e-05, + "loss": 0.4192862701416016, + "step": 87100 + }, + { + "epoch": 77.09997788099977, + "grad_norm": 0.6028936505317688, + "learning_rate": 1.1464190981432362e-05, + "loss": 0.40931896209716795, + "step": 87200 + }, + { + "epoch": 77.18845388188454, + "grad_norm": 0.4915790557861328, + "learning_rate": 1.141998231653404e-05, + "loss": 0.41025619506835936, + "step": 87300 + }, + { + "epoch": 77.2769298827693, + "grad_norm": 0.5164591073989868, + "learning_rate": 1.1375773651635721e-05, + "loss": 0.4112412643432617, + "step": 87400 + }, + { + "epoch": 77.36540588365406, + "grad_norm": 0.48311275243759155, + "learning_rate": 1.1331564986737401e-05, + "loss": 0.4144105911254883, + "step": 87500 + }, + { + "epoch": 77.45388188453882, + "grad_norm": 0.46419015526771545, + "learning_rate": 1.128735632183908e-05, + "loss": 0.41563541412353516, + "step": 87600 + }, + { + "epoch": 77.54235788542358, + "grad_norm": 0.6288944482803345, + "learning_rate": 1.124314765694076e-05, + "loss": 0.41669620513916017, + "step": 87700 + }, + { + "epoch": 77.63083388630834, + "grad_norm": 0.497126966714859, + "learning_rate": 1.1198938992042441e-05, + "loss": 0.41618637084960936, + "step": 87800 + }, + { + "epoch": 77.7193098871931, + "grad_norm": 0.5373407602310181, + "learning_rate": 1.1154730327144122e-05, + "loss": 0.41614810943603514, + "step": 87900 + }, + { + "epoch": 77.80778588807786, + "grad_norm": 0.519382894039154, + "learning_rate": 1.1110521662245802e-05, + "loss": 0.41859901428222657, + "step": 88000 + }, + { + "epoch": 77.89626188896261, + "grad_norm": 0.5001983046531677, + "learning_rate": 1.106631299734748e-05, + "loss": 0.418219108581543, + "step": 88100 + }, + { + "epoch": 77.98473788984738, + "grad_norm": 0.5034019947052002, + "learning_rate": 1.1022104332449161e-05, + "loss": 0.4178015899658203, + "step": 88200 + }, + { + "epoch": 78.0725503207255, + "grad_norm": 0.5158605575561523, + "learning_rate": 1.097789566755084e-05, + "loss": 0.4091143035888672, + "step": 88300 + }, + { + "epoch": 78.16102632161027, + "grad_norm": 0.48502761125564575, + "learning_rate": 1.093368700265252e-05, + "loss": 0.40843994140625, + "step": 88400 + }, + { + "epoch": 78.24950232249502, + "grad_norm": 0.5448765754699707, + "learning_rate": 1.08894783377542e-05, + "loss": 0.4109685516357422, + "step": 88500 + }, + { + "epoch": 78.33797832337979, + "grad_norm": 0.52455735206604, + "learning_rate": 1.084526967285588e-05, + "loss": 0.4108180236816406, + "step": 88600 + }, + { + "epoch": 78.42645432426454, + "grad_norm": 0.49440670013427734, + "learning_rate": 1.080106100795756e-05, + "loss": 0.41148426055908205, + "step": 88700 + }, + { + "epoch": 78.51493032514931, + "grad_norm": 0.5575434565544128, + "learning_rate": 1.075685234305924e-05, + "loss": 0.4121563720703125, + "step": 88800 + }, + { + "epoch": 78.60340632603406, + "grad_norm": 0.5276569724082947, + "learning_rate": 1.0712643678160921e-05, + "loss": 0.41357189178466797, + "step": 88900 + }, + { + "epoch": 78.69188232691883, + "grad_norm": 0.5279592871665955, + "learning_rate": 1.06684350132626e-05, + "loss": 0.4147018814086914, + "step": 89000 + }, + { + "epoch": 78.78035832780358, + "grad_norm": 0.4984647333621979, + "learning_rate": 1.062422634836428e-05, + "loss": 0.41413829803466795, + "step": 89100 + }, + { + "epoch": 78.86883432868834, + "grad_norm": 0.5556148886680603, + "learning_rate": 1.0580017683465959e-05, + "loss": 0.4168708419799805, + "step": 89200 + }, + { + "epoch": 78.9573103295731, + "grad_norm": 0.46219438314437866, + "learning_rate": 1.053580901856764e-05, + "loss": 0.41841983795166016, + "step": 89300 + }, + { + "epoch": 79.04512276045122, + "grad_norm": 0.49136674404144287, + "learning_rate": 1.0492042440318303e-05, + "loss": 0.41013729095458984, + "step": 89400 + }, + { + "epoch": 79.13359876133599, + "grad_norm": 0.5096011161804199, + "learning_rate": 1.0447833775419983e-05, + "loss": 0.4057589340209961, + "step": 89500 + }, + { + "epoch": 79.22207476222074, + "grad_norm": 0.4563368558883667, + "learning_rate": 1.0403625110521663e-05, + "loss": 0.4064152526855469, + "step": 89600 + }, + { + "epoch": 79.31055076310551, + "grad_norm": 0.5743097066879272, + "learning_rate": 1.0359416445623344e-05, + "loss": 0.40998432159423825, + "step": 89700 + }, + { + "epoch": 79.39902676399026, + "grad_norm": 0.46749743819236755, + "learning_rate": 1.0315207780725023e-05, + "loss": 0.40825595855712893, + "step": 89800 + }, + { + "epoch": 79.48750276487503, + "grad_norm": 0.522980272769928, + "learning_rate": 1.0270999115826703e-05, + "loss": 0.4116529083251953, + "step": 89900 + }, + { + "epoch": 79.57597876575979, + "grad_norm": 0.4576069712638855, + "learning_rate": 1.0226790450928382e-05, + "loss": 0.41039798736572264, + "step": 90000 + }, + { + "epoch": 79.66445476664455, + "grad_norm": 0.574553370475769, + "learning_rate": 1.0182581786030062e-05, + "loss": 0.4103997802734375, + "step": 90100 + }, + { + "epoch": 79.7529307675293, + "grad_norm": 0.5592597126960754, + "learning_rate": 1.0138373121131741e-05, + "loss": 0.4123684310913086, + "step": 90200 + }, + { + "epoch": 79.84140676841407, + "grad_norm": 0.5754570364952087, + "learning_rate": 1.0094164456233422e-05, + "loss": 0.4138601684570313, + "step": 90300 + }, + { + "epoch": 79.92988276929883, + "grad_norm": 0.5830336213111877, + "learning_rate": 1.0049955791335102e-05, + "loss": 0.41378173828125, + "step": 90400 + }, + { + "epoch": 80.01769520017695, + "grad_norm": 0.473369836807251, + "learning_rate": 1.0005747126436783e-05, + "loss": 0.41222110748291013, + "step": 90500 + }, + { + "epoch": 80.10617120106171, + "grad_norm": 0.5327860116958618, + "learning_rate": 9.961538461538463e-06, + "loss": 0.4058869934082031, + "step": 90600 + }, + { + "epoch": 80.19464720194647, + "grad_norm": 0.5304612517356873, + "learning_rate": 9.917329796640142e-06, + "loss": 0.4061882781982422, + "step": 90700 + }, + { + "epoch": 80.28312320283123, + "grad_norm": 0.5240916013717651, + "learning_rate": 9.873121131741822e-06, + "loss": 0.40706119537353513, + "step": 90800 + }, + { + "epoch": 80.37159920371599, + "grad_norm": 0.4663858413696289, + "learning_rate": 9.828912466843501e-06, + "loss": 0.4077639389038086, + "step": 90900 + }, + { + "epoch": 80.46007520460076, + "grad_norm": 0.4718465805053711, + "learning_rate": 9.784703801945181e-06, + "loss": 0.4078546905517578, + "step": 91000 + }, + { + "epoch": 80.54855120548551, + "grad_norm": 0.45132529735565186, + "learning_rate": 9.740495137046862e-06, + "loss": 0.40724002838134765, + "step": 91100 + }, + { + "epoch": 80.63702720637028, + "grad_norm": 0.4961422085762024, + "learning_rate": 9.69628647214854e-06, + "loss": 0.4097640609741211, + "step": 91200 + }, + { + "epoch": 80.72550320725503, + "grad_norm": 0.5276188850402832, + "learning_rate": 9.652077807250221e-06, + "loss": 0.41011890411376956, + "step": 91300 + }, + { + "epoch": 80.8139792081398, + "grad_norm": 0.48676180839538574, + "learning_rate": 9.607869142351902e-06, + "loss": 0.41075672149658204, + "step": 91400 + }, + { + "epoch": 80.90245520902455, + "grad_norm": 0.5812916159629822, + "learning_rate": 9.563660477453582e-06, + "loss": 0.4131761932373047, + "step": 91500 + }, + { + "epoch": 80.9909312099093, + "grad_norm": 0.5730577707290649, + "learning_rate": 9.51945181255526e-06, + "loss": 0.41234848022460935, + "step": 91600 + }, + { + "epoch": 81.07874364078744, + "grad_norm": 0.5240619778633118, + "learning_rate": 9.475685234305924e-06, + "loss": 0.40376312255859376, + "step": 91700 + }, + { + "epoch": 81.16721964167219, + "grad_norm": 0.46626827120780945, + "learning_rate": 9.431476569407604e-06, + "loss": 0.40396995544433595, + "step": 91800 + }, + { + "epoch": 81.25569564255696, + "grad_norm": 0.49117109179496765, + "learning_rate": 9.387267904509283e-06, + "loss": 0.4028842544555664, + "step": 91900 + }, + { + "epoch": 81.34417164344171, + "grad_norm": 0.5428334474563599, + "learning_rate": 9.343059239610964e-06, + "loss": 0.4046338653564453, + "step": 92000 + }, + { + "epoch": 81.43264764432648, + "grad_norm": 0.5240166783332825, + "learning_rate": 9.298850574712644e-06, + "loss": 0.4052513885498047, + "step": 92100 + }, + { + "epoch": 81.52112364521123, + "grad_norm": 0.4899362325668335, + "learning_rate": 9.254641909814325e-06, + "loss": 0.4052754974365234, + "step": 92200 + }, + { + "epoch": 81.609599646096, + "grad_norm": 0.46969664096832275, + "learning_rate": 9.210433244916005e-06, + "loss": 0.4072676086425781, + "step": 92300 + }, + { + "epoch": 81.69807564698075, + "grad_norm": 0.4990880489349365, + "learning_rate": 9.166224580017684e-06, + "loss": 0.40702415466308595, + "step": 92400 + }, + { + "epoch": 81.78655164786552, + "grad_norm": 0.5545535087585449, + "learning_rate": 9.122015915119364e-06, + "loss": 0.4103099822998047, + "step": 92500 + }, + { + "epoch": 81.87502764875028, + "grad_norm": 0.5591033101081848, + "learning_rate": 9.077807250221043e-06, + "loss": 0.4087317276000977, + "step": 92600 + }, + { + "epoch": 81.96350364963503, + "grad_norm": 0.5289734601974487, + "learning_rate": 9.033598585322723e-06, + "loss": 0.4112258529663086, + "step": 92700 + }, + { + "epoch": 82.05131608051316, + "grad_norm": 0.59573894739151, + "learning_rate": 8.989389920424404e-06, + "loss": 0.40506195068359374, + "step": 92800 + }, + { + "epoch": 82.13979208139791, + "grad_norm": 0.4581588804721832, + "learning_rate": 8.945181255526083e-06, + "loss": 0.401633186340332, + "step": 92900 + }, + { + "epoch": 82.22826808228268, + "grad_norm": 0.4607727527618408, + "learning_rate": 8.900972590627763e-06, + "loss": 0.4030620193481445, + "step": 93000 + }, + { + "epoch": 82.31674408316744, + "grad_norm": 0.5693869590759277, + "learning_rate": 8.856763925729444e-06, + "loss": 0.4034944152832031, + "step": 93100 + }, + { + "epoch": 82.4052200840522, + "grad_norm": 0.4679562449455261, + "learning_rate": 8.812555260831124e-06, + "loss": 0.40353385925292967, + "step": 93200 + }, + { + "epoch": 82.49369608493696, + "grad_norm": 0.4970017373561859, + "learning_rate": 8.768346595932803e-06, + "loss": 0.4040465545654297, + "step": 93300 + }, + { + "epoch": 82.58217208582172, + "grad_norm": 0.4850037097930908, + "learning_rate": 8.724137931034483e-06, + "loss": 0.40520496368408204, + "step": 93400 + }, + { + "epoch": 82.67064808670648, + "grad_norm": 0.5304952263832092, + "learning_rate": 8.679929266136164e-06, + "loss": 0.4062754440307617, + "step": 93500 + }, + { + "epoch": 82.75912408759125, + "grad_norm": 0.5124515891075134, + "learning_rate": 8.635720601237842e-06, + "loss": 0.4042987442016602, + "step": 93600 + }, + { + "epoch": 82.847600088476, + "grad_norm": 0.5527506470680237, + "learning_rate": 8.591511936339523e-06, + "loss": 0.4051095199584961, + "step": 93700 + }, + { + "epoch": 82.93607608936077, + "grad_norm": 0.4627765119075775, + "learning_rate": 8.547303271441202e-06, + "loss": 0.4065189743041992, + "step": 93800 + }, + { + "epoch": 83.02388852023888, + "grad_norm": 0.47690948843955994, + "learning_rate": 8.503094606542882e-06, + "loss": 0.4059687042236328, + "step": 93900 + }, + { + "epoch": 83.11236452112365, + "grad_norm": 0.543329656124115, + "learning_rate": 8.458885941644563e-06, + "loss": 0.40105613708496096, + "step": 94000 + }, + { + "epoch": 83.2008405220084, + "grad_norm": 0.5308240056037903, + "learning_rate": 8.414677276746243e-06, + "loss": 0.3999287414550781, + "step": 94100 + }, + { + "epoch": 83.28931652289316, + "grad_norm": 0.5098600387573242, + "learning_rate": 8.370468611847924e-06, + "loss": 0.3998809051513672, + "step": 94200 + }, + { + "epoch": 83.37779252377793, + "grad_norm": 0.5461894273757935, + "learning_rate": 8.326259946949602e-06, + "loss": 0.4027032470703125, + "step": 94300 + }, + { + "epoch": 83.46626852466268, + "grad_norm": 0.5599612593650818, + "learning_rate": 8.282051282051283e-06, + "loss": 0.4018612289428711, + "step": 94400 + }, + { + "epoch": 83.55474452554745, + "grad_norm": 0.5953245162963867, + "learning_rate": 8.237842617152961e-06, + "loss": 0.4048320770263672, + "step": 94500 + }, + { + "epoch": 83.6432205264322, + "grad_norm": 0.5232775211334229, + "learning_rate": 8.193633952254642e-06, + "loss": 0.40312889099121096, + "step": 94600 + }, + { + "epoch": 83.73169652731697, + "grad_norm": 0.5057620406150818, + "learning_rate": 8.149425287356322e-06, + "loss": 0.4016009521484375, + "step": 94700 + }, + { + "epoch": 83.82017252820172, + "grad_norm": 0.54839026927948, + "learning_rate": 8.105216622458001e-06, + "loss": 0.40390682220458984, + "step": 94800 + }, + { + "epoch": 83.90864852908649, + "grad_norm": 0.42211759090423584, + "learning_rate": 8.061007957559683e-06, + "loss": 0.4043146514892578, + "step": 94900 + }, + { + "epoch": 83.99712452997125, + "grad_norm": 0.46576666831970215, + "learning_rate": 8.016799292661362e-06, + "loss": 0.4071781539916992, + "step": 95000 + }, + { + "epoch": 84.08493696084938, + "grad_norm": 0.48286134004592896, + "learning_rate": 7.973032714412025e-06, + "loss": 0.3980902862548828, + "step": 95100 + }, + { + "epoch": 84.17341296173413, + "grad_norm": 0.5105409026145935, + "learning_rate": 7.928824049513706e-06, + "loss": 0.39626029968261717, + "step": 95200 + }, + { + "epoch": 84.26188896261888, + "grad_norm": 0.5280846357345581, + "learning_rate": 7.884615384615384e-06, + "loss": 0.39923973083496095, + "step": 95300 + }, + { + "epoch": 84.35036496350365, + "grad_norm": 0.49487778544425964, + "learning_rate": 7.840406719717065e-06, + "loss": 0.39867469787597654, + "step": 95400 + }, + { + "epoch": 84.4388409643884, + "grad_norm": 0.5105910897254944, + "learning_rate": 7.796198054818744e-06, + "loss": 0.4000941467285156, + "step": 95500 + }, + { + "epoch": 84.52731696527317, + "grad_norm": 0.49424290657043457, + "learning_rate": 7.751989389920424e-06, + "loss": 0.4025596618652344, + "step": 95600 + }, + { + "epoch": 84.61579296615793, + "grad_norm": 0.5923288464546204, + "learning_rate": 7.707780725022105e-06, + "loss": 0.40207050323486326, + "step": 95700 + }, + { + "epoch": 84.7042689670427, + "grad_norm": 0.47270065546035767, + "learning_rate": 7.663572060123785e-06, + "loss": 0.40140762329101565, + "step": 95800 + }, + { + "epoch": 84.79274496792745, + "grad_norm": 0.4515872597694397, + "learning_rate": 7.619363395225465e-06, + "loss": 0.4039121627807617, + "step": 95900 + }, + { + "epoch": 84.88122096881222, + "grad_norm": 0.5799027681350708, + "learning_rate": 7.575154730327144e-06, + "loss": 0.40215221405029294, + "step": 96000 + }, + { + "epoch": 84.96969696969697, + "grad_norm": 0.5158770680427551, + "learning_rate": 7.530946065428825e-06, + "loss": 0.40449161529541017, + "step": 96100 + }, + { + "epoch": 85.0575094005751, + "grad_norm": 0.5103220343589783, + "learning_rate": 7.4867374005305035e-06, + "loss": 0.3986453628540039, + "step": 96200 + }, + { + "epoch": 85.14598540145985, + "grad_norm": 0.48847347497940063, + "learning_rate": 7.442528735632184e-06, + "loss": 0.3962085723876953, + "step": 96300 + }, + { + "epoch": 85.2344614023446, + "grad_norm": 0.5786899328231812, + "learning_rate": 7.398320070733865e-06, + "loss": 0.398316535949707, + "step": 96400 + }, + { + "epoch": 85.32293740322937, + "grad_norm": 0.4464615285396576, + "learning_rate": 7.354111405835544e-06, + "loss": 0.39748287200927734, + "step": 96500 + }, + { + "epoch": 85.41141340411413, + "grad_norm": 0.5107320547103882, + "learning_rate": 7.3099027409372245e-06, + "loss": 0.399218864440918, + "step": 96600 + }, + { + "epoch": 85.4998894049989, + "grad_norm": 0.5555247068405151, + "learning_rate": 7.265694076038903e-06, + "loss": 0.40016975402832033, + "step": 96700 + }, + { + "epoch": 85.58836540588365, + "grad_norm": 0.46809983253479004, + "learning_rate": 7.2214854111405845e-06, + "loss": 0.39977962493896485, + "step": 96800 + }, + { + "epoch": 85.67684140676842, + "grad_norm": 0.5176143646240234, + "learning_rate": 7.177276746242263e-06, + "loss": 0.39803340911865237, + "step": 96900 + }, + { + "epoch": 85.76531740765317, + "grad_norm": 0.4717543125152588, + "learning_rate": 7.133068081343944e-06, + "loss": 0.4004299545288086, + "step": 97000 + }, + { + "epoch": 85.85379340853794, + "grad_norm": 0.49673059582710266, + "learning_rate": 7.088859416445624e-06, + "loss": 0.40104530334472654, + "step": 97100 + }, + { + "epoch": 85.94226940942269, + "grad_norm": 0.5706076622009277, + "learning_rate": 7.044650751547304e-06, + "loss": 0.40007728576660156, + "step": 97200 + }, + { + "epoch": 86.03008184030082, + "grad_norm": 0.5170352458953857, + "learning_rate": 7.000884173297967e-06, + "loss": 0.39897975921630857, + "step": 97300 + }, + { + "epoch": 86.11855784118558, + "grad_norm": 0.478630930185318, + "learning_rate": 6.956675508399646e-06, + "loss": 0.3933698272705078, + "step": 97400 + }, + { + "epoch": 86.20703384207035, + "grad_norm": 0.5094186067581177, + "learning_rate": 6.912466843501326e-06, + "loss": 0.39624488830566407, + "step": 97500 + }, + { + "epoch": 86.2955098429551, + "grad_norm": 0.5107275247573853, + "learning_rate": 6.868258178603007e-06, + "loss": 0.39685150146484377, + "step": 97600 + }, + { + "epoch": 86.38398584383985, + "grad_norm": 0.5861279964447021, + "learning_rate": 6.824049513704686e-06, + "loss": 0.3973454284667969, + "step": 97700 + }, + { + "epoch": 86.47246184472462, + "grad_norm": 0.490012526512146, + "learning_rate": 6.779840848806367e-06, + "loss": 0.3982046127319336, + "step": 97800 + }, + { + "epoch": 86.56093784560937, + "grad_norm": 0.47647538781166077, + "learning_rate": 6.7356321839080455e-06, + "loss": 0.39851917266845704, + "step": 97900 + }, + { + "epoch": 86.64941384649414, + "grad_norm": 0.45534029603004456, + "learning_rate": 6.691423519009726e-06, + "loss": 0.39754936218261716, + "step": 98000 + }, + { + "epoch": 86.7378898473789, + "grad_norm": 0.5305948257446289, + "learning_rate": 6.647214854111407e-06, + "loss": 0.39900218963623046, + "step": 98100 + }, + { + "epoch": 86.82636584826366, + "grad_norm": 0.48616868257522583, + "learning_rate": 6.603006189213086e-06, + "loss": 0.39878063201904296, + "step": 98200 + }, + { + "epoch": 86.91484184914842, + "grad_norm": 0.4637695252895355, + "learning_rate": 6.5587975243147665e-06, + "loss": 0.39936519622802735, + "step": 98300 + }, + { + "epoch": 87.00265428002655, + "grad_norm": 0.43915867805480957, + "learning_rate": 6.514588859416445e-06, + "loss": 0.39945316314697266, + "step": 98400 + }, + { + "epoch": 87.0911302809113, + "grad_norm": 0.5064729452133179, + "learning_rate": 6.4703801945181265e-06, + "loss": 0.39295291900634766, + "step": 98500 + }, + { + "epoch": 87.17960628179607, + "grad_norm": 0.41172826290130615, + "learning_rate": 6.426171529619805e-06, + "loss": 0.3956099319458008, + "step": 98600 + }, + { + "epoch": 87.26808228268082, + "grad_norm": 0.5156989693641663, + "learning_rate": 6.381962864721486e-06, + "loss": 0.3927472686767578, + "step": 98700 + }, + { + "epoch": 87.35655828356558, + "grad_norm": 0.4864855706691742, + "learning_rate": 6.337754199823166e-06, + "loss": 0.39533439636230466, + "step": 98800 + }, + { + "epoch": 87.44503428445034, + "grad_norm": 0.5469456911087036, + "learning_rate": 6.293545534924846e-06, + "loss": 0.3970512390136719, + "step": 98900 + }, + { + "epoch": 87.5335102853351, + "grad_norm": 0.4618734121322632, + "learning_rate": 6.249336870026525e-06, + "loss": 0.3967998504638672, + "step": 99000 + }, + { + "epoch": 87.62198628621987, + "grad_norm": 0.41789868474006653, + "learning_rate": 6.205128205128206e-06, + "loss": 0.3979497909545898, + "step": 99100 + }, + { + "epoch": 87.71046228710462, + "grad_norm": 0.5439488887786865, + "learning_rate": 6.1609195402298855e-06, + "loss": 0.3960274887084961, + "step": 99200 + }, + { + "epoch": 87.79893828798939, + "grad_norm": 0.46948105096817017, + "learning_rate": 6.116710875331565e-06, + "loss": 0.39781307220458983, + "step": 99300 + }, + { + "epoch": 87.88741428887414, + "grad_norm": 0.4804007411003113, + "learning_rate": 6.0725022104332456e-06, + "loss": 0.39600673675537107, + "step": 99400 + }, + { + "epoch": 87.97589028975891, + "grad_norm": 0.4494355618953705, + "learning_rate": 6.028293545534925e-06, + "loss": 0.3976548385620117, + "step": 99500 + }, + { + "epoch": 88.06370272063702, + "grad_norm": 0.4300312101840973, + "learning_rate": 5.984526967285588e-06, + "loss": 0.3928862762451172, + "step": 99600 + }, + { + "epoch": 88.15217872152179, + "grad_norm": 0.5155128836631775, + "learning_rate": 5.940318302387268e-06, + "loss": 0.39027740478515627, + "step": 99700 + }, + { + "epoch": 88.24065472240655, + "grad_norm": 0.4635615944862366, + "learning_rate": 5.896109637488948e-06, + "loss": 0.3938739776611328, + "step": 99800 + }, + { + "epoch": 88.32913072329131, + "grad_norm": 0.5408588647842407, + "learning_rate": 5.851900972590628e-06, + "loss": 0.3914863967895508, + "step": 99900 + }, + { + "epoch": 88.41760672417607, + "grad_norm": 0.5169259309768677, + "learning_rate": 5.807692307692308e-06, + "loss": 0.3942420959472656, + "step": 100000 + }, + { + "epoch": 88.50608272506082, + "grad_norm": 0.43603307008743286, + "learning_rate": 5.763483642793987e-06, + "loss": 0.3942053604125977, + "step": 100100 + }, + { + "epoch": 88.59455872594559, + "grad_norm": 0.484275758266449, + "learning_rate": 5.719274977895668e-06, + "loss": 0.3953342056274414, + "step": 100200 + }, + { + "epoch": 88.68303472683034, + "grad_norm": 0.4834429621696472, + "learning_rate": 5.675066312997348e-06, + "loss": 0.39478866577148436, + "step": 100300 + }, + { + "epoch": 88.77151072771511, + "grad_norm": 0.5198318362236023, + "learning_rate": 5.630857648099028e-06, + "loss": 0.3973033905029297, + "step": 100400 + }, + { + "epoch": 88.85998672859986, + "grad_norm": 0.5359114408493042, + "learning_rate": 5.586648983200707e-06, + "loss": 0.3963985824584961, + "step": 100500 + }, + { + "epoch": 88.94846272948463, + "grad_norm": 0.47174566984176636, + "learning_rate": 5.542440318302387e-06, + "loss": 0.39962120056152345, + "step": 100600 + }, + { + "epoch": 89.03627516036275, + "grad_norm": 0.5552394986152649, + "learning_rate": 5.498231653404067e-06, + "loss": 0.3942194747924805, + "step": 100700 + }, + { + "epoch": 89.12475116124752, + "grad_norm": 0.4985731840133667, + "learning_rate": 5.454022988505748e-06, + "loss": 0.39029048919677733, + "step": 100800 + }, + { + "epoch": 89.21322716213227, + "grad_norm": 0.5449782013893127, + "learning_rate": 5.4098143236074275e-06, + "loss": 0.391842155456543, + "step": 100900 + }, + { + "epoch": 89.30170316301704, + "grad_norm": 0.47477561235427856, + "learning_rate": 5.365605658709107e-06, + "loss": 0.39065505981445314, + "step": 101000 + }, + { + "epoch": 89.39017916390179, + "grad_norm": 0.5775418281555176, + "learning_rate": 5.3213969938107875e-06, + "loss": 0.39322795867919924, + "step": 101100 + }, + { + "epoch": 89.47865516478655, + "grad_norm": 0.44463786482810974, + "learning_rate": 5.277188328912467e-06, + "loss": 0.3929602813720703, + "step": 101200 + }, + { + "epoch": 89.56713116567131, + "grad_norm": 0.5217382311820984, + "learning_rate": 5.232979664014147e-06, + "loss": 0.3945352172851562, + "step": 101300 + }, + { + "epoch": 89.65560716655607, + "grad_norm": 0.47336575388908386, + "learning_rate": 5.188770999115826e-06, + "loss": 0.3943867492675781, + "step": 101400 + }, + { + "epoch": 89.74408316744083, + "grad_norm": 0.49890655279159546, + "learning_rate": 5.144562334217507e-06, + "loss": 0.39472442626953125, + "step": 101500 + }, + { + "epoch": 89.83255916832559, + "grad_norm": 0.4528096914291382, + "learning_rate": 5.100353669319187e-06, + "loss": 0.3927711868286133, + "step": 101600 + }, + { + "epoch": 89.92103516921036, + "grad_norm": 0.4498828649520874, + "learning_rate": 5.056145004420867e-06, + "loss": 0.3962491226196289, + "step": 101700 + }, + { + "epoch": 90.00884760008847, + "grad_norm": 0.45861297845840454, + "learning_rate": 5.0119363395225465e-06, + "loss": 0.39339271545410154, + "step": 101800 + }, + { + "epoch": 90.09732360097324, + "grad_norm": 0.5762381553649902, + "learning_rate": 4.967727674624226e-06, + "loss": 0.3896630096435547, + "step": 101900 + }, + { + "epoch": 90.185799601858, + "grad_norm": 0.5530878305435181, + "learning_rate": 4.923519009725907e-06, + "loss": 0.38933868408203126, + "step": 102000 + }, + { + "epoch": 90.27427560274276, + "grad_norm": 0.4769279360771179, + "learning_rate": 4.879310344827587e-06, + "loss": 0.38943870544433595, + "step": 102100 + }, + { + "epoch": 90.36275160362752, + "grad_norm": 0.5254392027854919, + "learning_rate": 4.835101679929267e-06, + "loss": 0.39091030120849607, + "step": 102200 + }, + { + "epoch": 90.45122760451227, + "grad_norm": 0.5098690986633301, + "learning_rate": 4.790893015030946e-06, + "loss": 0.39340557098388673, + "step": 102300 + }, + { + "epoch": 90.53970360539704, + "grad_norm": 0.5299240946769714, + "learning_rate": 4.746684350132626e-06, + "loss": 0.3925971221923828, + "step": 102400 + }, + { + "epoch": 90.62817960628179, + "grad_norm": 0.5023613572120667, + "learning_rate": 4.702475685234306e-06, + "loss": 0.3934814453125, + "step": 102500 + }, + { + "epoch": 90.71665560716656, + "grad_norm": 0.5217054486274719, + "learning_rate": 4.658267020335986e-06, + "loss": 0.39229228973388675, + "step": 102600 + }, + { + "epoch": 90.80513160805131, + "grad_norm": 0.4929801821708679, + "learning_rate": 4.6140583554376656e-06, + "loss": 0.39253700256347657, + "step": 102700 + }, + { + "epoch": 90.89360760893608, + "grad_norm": 0.4281506836414337, + "learning_rate": 4.569849690539346e-06, + "loss": 0.39423236846923826, + "step": 102800 + }, + { + "epoch": 90.98208360982083, + "grad_norm": 0.5606275796890259, + "learning_rate": 4.525641025641026e-06, + "loss": 0.39174613952636717, + "step": 102900 + }, + { + "epoch": 91.06989604069896, + "grad_norm": 0.40593966841697693, + "learning_rate": 4.481874447391689e-06, + "loss": 0.39004261016845704, + "step": 103000 + }, + { + "epoch": 91.15837204158372, + "grad_norm": 0.48218822479248047, + "learning_rate": 4.437665782493368e-06, + "loss": 0.39024349212646486, + "step": 103100 + }, + { + "epoch": 91.24684804246849, + "grad_norm": 0.4803628623485565, + "learning_rate": 4.393457117595049e-06, + "loss": 0.3893236541748047, + "step": 103200 + }, + { + "epoch": 91.33532404335324, + "grad_norm": 0.5424004197120667, + "learning_rate": 4.349248452696729e-06, + "loss": 0.3895704650878906, + "step": 103300 + }, + { + "epoch": 91.423800044238, + "grad_norm": 0.4238603711128235, + "learning_rate": 4.305039787798409e-06, + "loss": 0.3891864776611328, + "step": 103400 + }, + { + "epoch": 91.51227604512276, + "grad_norm": 0.5425596833229065, + "learning_rate": 4.2608311229000885e-06, + "loss": 0.3902478408813477, + "step": 103500 + }, + { + "epoch": 91.60075204600751, + "grad_norm": 0.529647946357727, + "learning_rate": 4.216622458001768e-06, + "loss": 0.39207550048828127, + "step": 103600 + }, + { + "epoch": 91.68922804689228, + "grad_norm": 0.42155396938323975, + "learning_rate": 4.1724137931034486e-06, + "loss": 0.3911063766479492, + "step": 103700 + }, + { + "epoch": 91.77770404777704, + "grad_norm": 0.4809010326862335, + "learning_rate": 4.128205128205129e-06, + "loss": 0.3927000427246094, + "step": 103800 + }, + { + "epoch": 91.8661800486618, + "grad_norm": 0.4598400890827179, + "learning_rate": 4.083996463306809e-06, + "loss": 0.38986122131347656, + "step": 103900 + }, + { + "epoch": 91.95465604954656, + "grad_norm": 0.52349853515625, + "learning_rate": 4.039787798408488e-06, + "loss": 0.3922639465332031, + "step": 104000 + }, + { + "epoch": 92.04246848042469, + "grad_norm": 0.5118280053138733, + "learning_rate": 3.996021220159151e-06, + "loss": 0.388396110534668, + "step": 104100 + }, + { + "epoch": 92.13094448130944, + "grad_norm": 0.49287110567092896, + "learning_rate": 3.951812555260832e-06, + "loss": 0.3882394027709961, + "step": 104200 + }, + { + "epoch": 92.21942048219421, + "grad_norm": 0.5597590804100037, + "learning_rate": 3.9076038903625115e-06, + "loss": 0.38768112182617187, + "step": 104300 + }, + { + "epoch": 92.30789648307896, + "grad_norm": 0.49123573303222656, + "learning_rate": 3.863395225464191e-06, + "loss": 0.38717472076416015, + "step": 104400 + }, + { + "epoch": 92.39637248396373, + "grad_norm": 0.5490599870681763, + "learning_rate": 3.819186560565871e-06, + "loss": 0.38968246459960937, + "step": 104500 + }, + { + "epoch": 92.48484848484848, + "grad_norm": 0.563377857208252, + "learning_rate": 3.7749778956675507e-06, + "loss": 0.3879422760009766, + "step": 104600 + }, + { + "epoch": 92.57332448573324, + "grad_norm": 0.5248238444328308, + "learning_rate": 3.7307692307692308e-06, + "loss": 0.3904239654541016, + "step": 104700 + }, + { + "epoch": 92.661800486618, + "grad_norm": 0.5977566242218018, + "learning_rate": 3.6865605658709104e-06, + "loss": 0.39140804290771486, + "step": 104800 + }, + { + "epoch": 92.75027648750276, + "grad_norm": 0.4992641508579254, + "learning_rate": 3.6423519009725912e-06, + "loss": 0.390025749206543, + "step": 104900 + }, + { + "epoch": 92.83875248838753, + "grad_norm": 0.5491787791252136, + "learning_rate": 3.598143236074271e-06, + "loss": 0.39107063293457034, + "step": 105000 + }, + { + "epoch": 92.92722848927228, + "grad_norm": 0.46409890055656433, + "learning_rate": 3.553934571175951e-06, + "loss": 0.3911115264892578, + "step": 105100 + }, + { + "epoch": 93.01504092015041, + "grad_norm": 0.5469849705696106, + "learning_rate": 3.5097259062776305e-06, + "loss": 0.3916855621337891, + "step": 105200 + }, + { + "epoch": 93.10351692103517, + "grad_norm": 0.496277391910553, + "learning_rate": 3.4655172413793105e-06, + "loss": 0.3867160415649414, + "step": 105300 + }, + { + "epoch": 93.19199292191993, + "grad_norm": 0.42929497361183167, + "learning_rate": 3.42130857648099e-06, + "loss": 0.38718021392822266, + "step": 105400 + }, + { + "epoch": 93.28046892280469, + "grad_norm": 0.406601220369339, + "learning_rate": 3.3770999115826706e-06, + "loss": 0.386837272644043, + "step": 105500 + }, + { + "epoch": 93.36894492368945, + "grad_norm": 0.48087212443351746, + "learning_rate": 3.3328912466843506e-06, + "loss": 0.3877327346801758, + "step": 105600 + }, + { + "epoch": 93.45742092457421, + "grad_norm": 0.5117219090461731, + "learning_rate": 3.2886825817860302e-06, + "loss": 0.38803070068359374, + "step": 105700 + }, + { + "epoch": 93.54589692545898, + "grad_norm": 0.6043857932090759, + "learning_rate": 3.2444739168877103e-06, + "loss": 0.38934085845947264, + "step": 105800 + }, + { + "epoch": 93.63437292634373, + "grad_norm": 0.5303599238395691, + "learning_rate": 3.20026525198939e-06, + "loss": 0.3872317123413086, + "step": 105900 + }, + { + "epoch": 93.72284892722848, + "grad_norm": 0.48868313431739807, + "learning_rate": 3.15605658709107e-06, + "loss": 0.3903642272949219, + "step": 106000 + }, + { + "epoch": 93.81132492811325, + "grad_norm": 0.5126668810844421, + "learning_rate": 3.11184792219275e-06, + "loss": 0.3893658447265625, + "step": 106100 + }, + { + "epoch": 93.899800928998, + "grad_norm": 0.5788067579269409, + "learning_rate": 3.06763925729443e-06, + "loss": 0.3887732315063477, + "step": 106200 + }, + { + "epoch": 93.98827692988277, + "grad_norm": 0.5931738615036011, + "learning_rate": 3.0234305923961096e-06, + "loss": 0.3858309555053711, + "step": 106300 + }, + { + "epoch": 94.07608936076089, + "grad_norm": 0.4667378067970276, + "learning_rate": 2.9792219274977896e-06, + "loss": 0.3882503128051758, + "step": 106400 + }, + { + "epoch": 94.16456536164566, + "grad_norm": 0.4540467858314514, + "learning_rate": 2.9350132625994697e-06, + "loss": 0.3879624557495117, + "step": 106500 + }, + { + "epoch": 94.25304136253041, + "grad_norm": 0.5249928832054138, + "learning_rate": 2.8908045977011493e-06, + "loss": 0.3871700668334961, + "step": 106600 + }, + { + "epoch": 94.34151736341518, + "grad_norm": 0.4902016520500183, + "learning_rate": 2.8465959328028297e-06, + "loss": 0.3865641403198242, + "step": 106700 + }, + { + "epoch": 94.42999336429993, + "grad_norm": 0.4490734934806824, + "learning_rate": 2.8023872679045093e-06, + "loss": 0.3874678039550781, + "step": 106800 + }, + { + "epoch": 94.5184693651847, + "grad_norm": 0.39259180426597595, + "learning_rate": 2.7581786030061894e-06, + "loss": 0.3864010238647461, + "step": 106900 + }, + { + "epoch": 94.60694536606945, + "grad_norm": 0.5160086154937744, + "learning_rate": 2.7139699381078694e-06, + "loss": 0.38762042999267576, + "step": 107000 + }, + { + "epoch": 94.6954213669542, + "grad_norm": 0.5112566947937012, + "learning_rate": 2.669761273209549e-06, + "loss": 0.38802257537841794, + "step": 107100 + }, + { + "epoch": 94.78389736783897, + "grad_norm": 0.48586076498031616, + "learning_rate": 2.625552608311229e-06, + "loss": 0.3883600616455078, + "step": 107200 + }, + { + "epoch": 94.87237336872373, + "grad_norm": 0.5169211626052856, + "learning_rate": 2.581343943412909e-06, + "loss": 0.38775413513183593, + "step": 107300 + }, + { + "epoch": 94.9608493696085, + "grad_norm": 0.4262998700141907, + "learning_rate": 2.537135278514589e-06, + "loss": 0.3891670608520508, + "step": 107400 + }, + { + "epoch": 95.04866180048661, + "grad_norm": 0.4452260434627533, + "learning_rate": 2.4929266136162687e-06, + "loss": 0.38474632263183595, + "step": 107500 + }, + { + "epoch": 95.13713780137138, + "grad_norm": 0.5349674820899963, + "learning_rate": 2.4487179487179488e-06, + "loss": 0.3851365661621094, + "step": 107600 + }, + { + "epoch": 95.22561380225613, + "grad_norm": 0.4277512729167938, + "learning_rate": 2.404509283819629e-06, + "loss": 0.38448490142822267, + "step": 107700 + }, + { + "epoch": 95.3140898031409, + "grad_norm": 0.5199966430664062, + "learning_rate": 2.360300618921309e-06, + "loss": 0.3855178451538086, + "step": 107800 + }, + { + "epoch": 95.40256580402566, + "grad_norm": 0.49931713938713074, + "learning_rate": 2.3160919540229885e-06, + "loss": 0.38597549438476564, + "step": 107900 + }, + { + "epoch": 95.49104180491042, + "grad_norm": 0.44888851046562195, + "learning_rate": 2.2718832891246685e-06, + "loss": 0.38637237548828124, + "step": 108000 + }, + { + "epoch": 95.57951780579518, + "grad_norm": 0.48020413517951965, + "learning_rate": 2.2276746242263485e-06, + "loss": 0.3860820388793945, + "step": 108100 + }, + { + "epoch": 95.66799380667993, + "grad_norm": 0.49320459365844727, + "learning_rate": 2.183465959328028e-06, + "loss": 0.3868730926513672, + "step": 108200 + }, + { + "epoch": 95.7564698075647, + "grad_norm": 0.4776149392127991, + "learning_rate": 2.1392572944297086e-06, + "loss": 0.38699729919433595, + "step": 108300 + }, + { + "epoch": 95.84494580844945, + "grad_norm": 0.4394153356552124, + "learning_rate": 2.095048629531388e-06, + "loss": 0.3858388137817383, + "step": 108400 + }, + { + "epoch": 95.93342180933422, + "grad_norm": 0.40809816122055054, + "learning_rate": 2.0508399646330682e-06, + "loss": 0.3865514373779297, + "step": 108500 + }, + { + "epoch": 96.02123424021234, + "grad_norm": 0.40297845005989075, + "learning_rate": 2.0070733863837314e-06, + "loss": 0.38520877838134765, + "step": 108600 + }, + { + "epoch": 96.1097102410971, + "grad_norm": 0.4992787837982178, + "learning_rate": 1.9628647214854114e-06, + "loss": 0.3824159622192383, + "step": 108700 + }, + { + "epoch": 96.19818624198186, + "grad_norm": 0.4386002719402313, + "learning_rate": 1.918656056587091e-06, + "loss": 0.3828225326538086, + "step": 108800 + }, + { + "epoch": 96.28666224286663, + "grad_norm": 0.4839923679828644, + "learning_rate": 1.874447391688771e-06, + "loss": 0.3837508392333984, + "step": 108900 + }, + { + "epoch": 96.37513824375138, + "grad_norm": 0.5360403656959534, + "learning_rate": 1.830238726790451e-06, + "loss": 0.3868670654296875, + "step": 109000 + }, + { + "epoch": 96.46361424463615, + "grad_norm": 0.5472413897514343, + "learning_rate": 1.786030061892131e-06, + "loss": 0.38740249633789064, + "step": 109100 + }, + { + "epoch": 96.5520902455209, + "grad_norm": 0.4783819019794464, + "learning_rate": 1.7418213969938107e-06, + "loss": 0.3851567459106445, + "step": 109200 + }, + { + "epoch": 96.64056624640567, + "grad_norm": 0.5319016575813293, + "learning_rate": 1.6976127320954906e-06, + "loss": 0.38549720764160156, + "step": 109300 + }, + { + "epoch": 96.72904224729042, + "grad_norm": 0.4579726755619049, + "learning_rate": 1.6534040671971708e-06, + "loss": 0.38684429168701173, + "step": 109400 + }, + { + "epoch": 96.81751824817518, + "grad_norm": 0.4699755012989044, + "learning_rate": 1.6091954022988506e-06, + "loss": 0.3849377822875977, + "step": 109500 + }, + { + "epoch": 96.90599424905994, + "grad_norm": 0.5681434273719788, + "learning_rate": 1.5649867374005304e-06, + "loss": 0.38494167327880857, + "step": 109600 + }, + { + "epoch": 96.9944702499447, + "grad_norm": 0.40921762585639954, + "learning_rate": 1.5207780725022105e-06, + "loss": 0.3864158630371094, + "step": 109700 + }, + { + "epoch": 97.08228268082283, + "grad_norm": 0.5271804928779602, + "learning_rate": 1.4765694076038905e-06, + "loss": 0.3854814529418945, + "step": 109800 + }, + { + "epoch": 97.17075868170758, + "grad_norm": 0.5390716195106506, + "learning_rate": 1.4323607427055703e-06, + "loss": 0.3826302719116211, + "step": 109900 + }, + { + "epoch": 97.25923468259235, + "grad_norm": 0.4738744795322418, + "learning_rate": 1.3881520778072502e-06, + "loss": 0.3834680938720703, + "step": 110000 + }, + { + "epoch": 97.3477106834771, + "grad_norm": 0.47226211428642273, + "learning_rate": 1.3439434129089302e-06, + "loss": 0.383985595703125, + "step": 110100 + }, + { + "epoch": 97.43618668436187, + "grad_norm": 0.44581323862075806, + "learning_rate": 1.29973474801061e-06, + "loss": 0.38392398834228514, + "step": 110200 + }, + { + "epoch": 97.52466268524662, + "grad_norm": 0.505975067615509, + "learning_rate": 1.25552608311229e-06, + "loss": 0.3842586898803711, + "step": 110300 + }, + { + "epoch": 97.61313868613139, + "grad_norm": 0.4737127125263214, + "learning_rate": 1.21131741821397e-06, + "loss": 0.3853626251220703, + "step": 110400 + }, + { + "epoch": 97.70161468701615, + "grad_norm": 0.42337724566459656, + "learning_rate": 1.16710875331565e-06, + "loss": 0.3860707092285156, + "step": 110500 + }, + { + "epoch": 97.7900906879009, + "grad_norm": 0.470935583114624, + "learning_rate": 1.12290008841733e-06, + "loss": 0.3849189758300781, + "step": 110600 + }, + { + "epoch": 97.87856668878567, + "grad_norm": 0.5499629974365234, + "learning_rate": 1.0786914235190098e-06, + "loss": 0.3849348068237305, + "step": 110700 + }, + { + "epoch": 97.96704268967042, + "grad_norm": 0.5295959711074829, + "learning_rate": 1.0344827586206898e-06, + "loss": 0.3844482040405273, + "step": 110800 + }, + { + "epoch": 98.05485512054855, + "grad_norm": 0.510218620300293, + "learning_rate": 9.902740937223696e-07, + "loss": 0.38250988006591796, + "step": 110900 + }, + { + "epoch": 98.1433311214333, + "grad_norm": 0.46240198612213135, + "learning_rate": 9.460654288240495e-07, + "loss": 0.38357555389404296, + "step": 111000 + }, + { + "epoch": 98.23180712231807, + "grad_norm": 0.5413907170295715, + "learning_rate": 9.018567639257295e-07, + "loss": 0.3835936737060547, + "step": 111100 + }, + { + "epoch": 98.32028312320283, + "grad_norm": 0.5282194018363953, + "learning_rate": 8.576480990274095e-07, + "loss": 0.38462539672851564, + "step": 111200 + }, + { + "epoch": 98.4087591240876, + "grad_norm": 0.4430619478225708, + "learning_rate": 8.134394341290893e-07, + "loss": 0.3831254196166992, + "step": 111300 + }, + { + "epoch": 98.49723512497235, + "grad_norm": 0.4520755410194397, + "learning_rate": 7.692307692307694e-07, + "loss": 0.38387767791748045, + "step": 111400 + }, + { + "epoch": 98.58571112585712, + "grad_norm": 0.42326220870018005, + "learning_rate": 7.250221043324492e-07, + "loss": 0.38382118225097656, + "step": 111500 + }, + { + "epoch": 98.67418712674187, + "grad_norm": 0.5536217093467712, + "learning_rate": 6.808134394341291e-07, + "loss": 0.3837322998046875, + "step": 111600 + }, + { + "epoch": 98.76266312762664, + "grad_norm": 0.47729530930519104, + "learning_rate": 6.36604774535809e-07, + "loss": 0.3840275192260742, + "step": 111700 + }, + { + "epoch": 98.85113912851139, + "grad_norm": 0.4712120294570923, + "learning_rate": 5.92396109637489e-07, + "loss": 0.3826910400390625, + "step": 111800 + }, + { + "epoch": 98.93961512939615, + "grad_norm": 0.4533778727054596, + "learning_rate": 5.481874447391689e-07, + "loss": 0.3849251174926758, + "step": 111900 + }, + { + "epoch": 99.02742756027428, + "grad_norm": 0.4762660264968872, + "learning_rate": 5.04420866489832e-07, + "loss": 0.38347198486328127, + "step": 112000 + }, + { + "epoch": 99.11590356115903, + "grad_norm": 0.49900203943252563, + "learning_rate": 4.6021220159151197e-07, + "loss": 0.38361885070800783, + "step": 112100 + }, + { + "epoch": 99.2043795620438, + "grad_norm": 0.5499697923660278, + "learning_rate": 4.1600353669319184e-07, + "loss": 0.38323490142822264, + "step": 112200 + }, + { + "epoch": 99.29285556292855, + "grad_norm": 0.49698564410209656, + "learning_rate": 3.717948717948718e-07, + "loss": 0.38394325256347656, + "step": 112300 + }, + { + "epoch": 99.38133156381332, + "grad_norm": 0.5000177621841431, + "learning_rate": 3.2758620689655175e-07, + "loss": 0.3833367156982422, + "step": 112400 + }, + { + "epoch": 99.46980756469807, + "grad_norm": 0.46179404854774475, + "learning_rate": 2.833775419982317e-07, + "loss": 0.38318233489990233, + "step": 112500 + }, + { + "epoch": 99.55828356558284, + "grad_norm": 0.5522571802139282, + "learning_rate": 2.391688770999116e-07, + "loss": 0.38181392669677733, + "step": 112600 + } + ], + "logging_steps": 100, + "max_steps": 113100, + "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": 3.124027613498573e+16, + "train_batch_size": 8, + "trial_name": null, + "trial_params": null +} diff --git a/timecost/m8/realtabformer/rtf-m8-20260430_214424/rtf_checkpoints/checkpoint-112600/training_args.bin b/timecost/m8/realtabformer/rtf-m8-20260430_214424/rtf_checkpoints/checkpoint-112600/training_args.bin new file mode 100644 index 0000000000000000000000000000000000000000..34d68dc0e0fe1c1f12a2e581dd1b166aa7178a9e --- /dev/null +++ b/timecost/m8/realtabformer/rtf-m8-20260430_214424/rtf_checkpoints/checkpoint-112600/training_args.bin @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:9e2cd88337d1d846c6918d2b3b63fa3e5c93f12fefc082497590da854a564607 +size 5201 diff --git a/timecost/m8/realtabformer/rtf-m8-20260430_214424/rtf_checkpoints/checkpoint-112700/config.json b/timecost/m8/realtabformer/rtf-m8-20260430_214424/rtf_checkpoints/checkpoint-112700/config.json new file mode 100644 index 0000000000000000000000000000000000000000..d98dd02b920679d4da3c8b60a9be119058fb9fe3 --- /dev/null +++ b/timecost/m8/realtabformer/rtf-m8-20260430_214424/rtf_checkpoints/checkpoint-112700/config.json @@ -0,0 +1,34 @@ +{ + "activation_function": "gelu_new", + "add_cross_attention": false, + "architectures": [ + "GPT2LMHeadModel" + ], + "attn_pdrop": 0.1, + "bos_token_id": 5, + "dtype": "float32", + "embd_pdrop": 0.1, + "eos_token_id": 6, + "initializer_range": 0.02, + "layer_norm_epsilon": 1e-05, + "model_type": "gpt2", + "n_embd": 768, + "n_head": 12, + "n_inner": null, + "n_layer": 6, + "n_positions": 1024, + "pad_token_id": null, + "reorder_and_upcast_attn": false, + "resid_pdrop": 0.1, + "scale_attn_by_inverse_layer_idx": false, + "scale_attn_weights": true, + "summary_activation": null, + "summary_first_dropout": 0.1, + "summary_proj_to_labels": true, + "summary_type": "cls_index", + "summary_use_proj": true, + "tie_word_embeddings": true, + "transformers_version": "5.5.3", + "use_cache": false, + "vocab_size": 244 +} diff --git a/timecost/m8/realtabformer/rtf-m8-20260430_214424/rtf_checkpoints/checkpoint-112700/generation_config.json b/timecost/m8/realtabformer/rtf-m8-20260430_214424/rtf_checkpoints/checkpoint-112700/generation_config.json new file mode 100644 index 0000000000000000000000000000000000000000..ffe89567780e75b5c22eade9be971483b9618f39 --- /dev/null +++ b/timecost/m8/realtabformer/rtf-m8-20260430_214424/rtf_checkpoints/checkpoint-112700/generation_config.json @@ -0,0 +1,9 @@ +{ + "_from_model_config": true, + "bos_token_id": 5, + "eos_token_id": 6, + "output_attentions": false, + "output_hidden_states": false, + "transformers_version": "5.5.3", + "use_cache": true +} diff --git a/timecost/m8/realtabformer/rtf-m8-20260430_214424/rtf_checkpoints/checkpoint-112700/model.safetensors b/timecost/m8/realtabformer/rtf-m8-20260430_214424/rtf_checkpoints/checkpoint-112700/model.safetensors new file mode 100644 index 0000000000000000000000000000000000000000..4961704e9d5979dcefcde923906ce1447989e7fd --- /dev/null +++ b/timecost/m8/realtabformer/rtf-m8-20260430_214424/rtf_checkpoints/checkpoint-112700/model.safetensors @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:eabd57ab0e7557953194dcbd5c3ef3ddeb7459fd8eee340cfcffad1390d3c541 +size 174017992 diff --git a/timecost/m8/realtabformer/rtf-m8-20260430_214424/rtf_checkpoints/checkpoint-112700/optimizer.pt b/timecost/m8/realtabformer/rtf-m8-20260430_214424/rtf_checkpoints/checkpoint-112700/optimizer.pt new file mode 100644 index 0000000000000000000000000000000000000000..df0936932c9924fb3635289e2fdb84e9e9e1f5d4 --- /dev/null +++ b/timecost/m8/realtabformer/rtf-m8-20260430_214424/rtf_checkpoints/checkpoint-112700/optimizer.pt @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:c8c661ac8c4f4f5c99182175f908317d5288a4a04260848fdcad48ea999db7cc +size 348085067 diff --git a/timecost/m8/realtabformer/rtf-m8-20260430_214424/rtf_checkpoints/checkpoint-112700/rng_state.pth b/timecost/m8/realtabformer/rtf-m8-20260430_214424/rtf_checkpoints/checkpoint-112700/rng_state.pth new file mode 100644 index 0000000000000000000000000000000000000000..b9857e43a51da29430dd9236aa147fa2bc048c4b --- /dev/null +++ b/timecost/m8/realtabformer/rtf-m8-20260430_214424/rtf_checkpoints/checkpoint-112700/rng_state.pth @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:d3ca4b0361431a19edb93d29f1a0fda4547c2eca0e58a820597621f9a04340cc +size 14645 diff --git a/timecost/m8/realtabformer/rtf-m8-20260430_214424/rtf_checkpoints/checkpoint-112700/scaler.pt b/timecost/m8/realtabformer/rtf-m8-20260430_214424/rtf_checkpoints/checkpoint-112700/scaler.pt new file mode 100644 index 0000000000000000000000000000000000000000..d37a21d468825319b07f6b19a016cfc6135c0596 --- /dev/null +++ b/timecost/m8/realtabformer/rtf-m8-20260430_214424/rtf_checkpoints/checkpoint-112700/scaler.pt @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:f5f7ade3794ef26d4050470e12006bb4f348c58ce1cd249f326e44a58c399612 +size 1383 diff --git a/timecost/m8/realtabformer/rtf-m8-20260430_214424/rtf_checkpoints/checkpoint-112700/scheduler.pt b/timecost/m8/realtabformer/rtf-m8-20260430_214424/rtf_checkpoints/checkpoint-112700/scheduler.pt new file mode 100644 index 0000000000000000000000000000000000000000..2b2df66351c06375d23384659c568105d754836c --- /dev/null +++ b/timecost/m8/realtabformer/rtf-m8-20260430_214424/rtf_checkpoints/checkpoint-112700/scheduler.pt @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:d00a427de58655fdc957cda89ee5995d2e9c409609843d1ea1e784dd94b8bc76 +size 1465 diff --git a/timecost/m8/realtabformer/rtf-m8-20260430_214424/rtf_checkpoints/checkpoint-112700/trainer_state.json b/timecost/m8/realtabformer/rtf-m8-20260430_214424/rtf_checkpoints/checkpoint-112700/trainer_state.json new file mode 100644 index 0000000000000000000000000000000000000000..90b30756b4b43177daaec55d57e8e84baa11eeac --- /dev/null +++ b/timecost/m8/realtabformer/rtf-m8-20260430_214424/rtf_checkpoints/checkpoint-112700/trainer_state.json @@ -0,0 +1,7923 @@ +{ + "best_global_step": null, + "best_metric": null, + "best_model_checkpoint": null, + "epoch": 99.6467595664676, + "eval_steps": 100, + "global_step": 112700, + "is_hyper_param_search": false, + "is_local_process_zero": true, + "is_world_process_zero": true, + "log_history": [ + { + "epoch": 0.08847600088476001, + "grad_norm": 0.27971890568733215, + "learning_rate": 4.9956233421750666e-05, + "loss": 1.6012767028808594, + "step": 100 + }, + { + "epoch": 0.17695200176952003, + "grad_norm": 0.2532733976840973, + "learning_rate": 4.991202475685234e-05, + "loss": 1.0460629272460937, + "step": 200 + }, + { + "epoch": 0.26542800265428, + "grad_norm": 0.22527219355106354, + "learning_rate": 4.986781609195402e-05, + "loss": 1.0045037841796876, + "step": 300 + }, + { + "epoch": 0.35390400353904006, + "grad_norm": 0.2071678638458252, + "learning_rate": 4.982360742705571e-05, + "loss": 0.9934071350097656, + "step": 400 + }, + { + "epoch": 0.44238000442380004, + "grad_norm": 0.21996082365512848, + "learning_rate": 4.977939876215739e-05, + "loss": 0.9807382965087891, + "step": 500 + }, + { + "epoch": 0.53085600530856, + "grad_norm": 0.20051148533821106, + "learning_rate": 4.9735190097259064e-05, + "loss": 0.9772834014892579, + "step": 600 + }, + { + "epoch": 0.6193320061933201, + "grad_norm": 0.20692776143550873, + "learning_rate": 4.969098143236074e-05, + "loss": 0.9733844757080078, + "step": 700 + }, + { + "epoch": 0.7078080070780801, + "grad_norm": 0.22139734029769897, + "learning_rate": 4.9646772767462425e-05, + "loss": 0.9641999053955078, + "step": 800 + }, + { + "epoch": 0.79628400796284, + "grad_norm": 0.20099565386772156, + "learning_rate": 4.96025641025641e-05, + "loss": 0.9590901947021484, + "step": 900 + }, + { + "epoch": 0.8847600088476001, + "grad_norm": 0.19050444662570953, + "learning_rate": 4.955835543766578e-05, + "loss": 0.9558430480957031, + "step": 1000 + }, + { + "epoch": 0.9732360097323601, + "grad_norm": 0.20780153572559357, + "learning_rate": 4.951414677276747e-05, + "loss": 0.9558073425292969, + "step": 1100 + }, + { + "epoch": 1.0610484406104843, + "grad_norm": 0.20002400875091553, + "learning_rate": 4.946993810786915e-05, + "loss": 0.9575533294677734, + "step": 1200 + }, + { + "epoch": 1.1495244414952444, + "grad_norm": 0.19394151866436005, + "learning_rate": 4.9425729442970824e-05, + "loss": 0.9556401824951172, + "step": 1300 + }, + { + "epoch": 1.2380004423800044, + "grad_norm": 0.19420816004276276, + "learning_rate": 4.93815207780725e-05, + "loss": 0.948358154296875, + "step": 1400 + }, + { + "epoch": 1.3264764432647644, + "grad_norm": 0.2109377682209015, + "learning_rate": 4.9337312113174185e-05, + "loss": 0.9507483673095704, + "step": 1500 + }, + { + "epoch": 1.4149524441495245, + "grad_norm": 0.19577011466026306, + "learning_rate": 4.929310344827586e-05, + "loss": 0.9544251251220703, + "step": 1600 + }, + { + "epoch": 1.5034284450342845, + "grad_norm": 0.17374339699745178, + "learning_rate": 4.924889478337754e-05, + "loss": 0.9495613098144531, + "step": 1700 + }, + { + "epoch": 1.5919044459190443, + "grad_norm": 0.1539471447467804, + "learning_rate": 4.920468611847922e-05, + "loss": 0.946780014038086, + "step": 1800 + }, + { + "epoch": 1.6803804468038046, + "grad_norm": 0.21705853939056396, + "learning_rate": 4.916047745358091e-05, + "loss": 0.9456329345703125, + "step": 1900 + }, + { + "epoch": 1.7688564476885644, + "grad_norm": 0.18109191954135895, + "learning_rate": 4.9116268788682584e-05, + "loss": 0.9452082061767578, + "step": 2000 + }, + { + "epoch": 1.8573324485733245, + "grad_norm": 0.18233413994312286, + "learning_rate": 4.907206012378426e-05, + "loss": 0.9436309051513672, + "step": 2100 + }, + { + "epoch": 1.9458084494580845, + "grad_norm": 0.19978198409080505, + "learning_rate": 4.9027851458885945e-05, + "loss": 0.9466010284423828, + "step": 2200 + }, + { + "epoch": 2.033620880336209, + "grad_norm": 0.19425439834594727, + "learning_rate": 4.898364279398762e-05, + "loss": 0.9419589233398438, + "step": 2300 + }, + { + "epoch": 2.1220968812209686, + "grad_norm": 0.18522261083126068, + "learning_rate": 4.8939434129089306e-05, + "loss": 0.9406929779052734, + "step": 2400 + }, + { + "epoch": 2.210572882105729, + "grad_norm": 0.18092288076877594, + "learning_rate": 4.889522546419098e-05, + "loss": 0.9394661712646485, + "step": 2500 + }, + { + "epoch": 2.2990488829904887, + "grad_norm": 0.16110995411872864, + "learning_rate": 4.885101679929267e-05, + "loss": 0.9415554809570312, + "step": 2600 + }, + { + "epoch": 2.387524883875249, + "grad_norm": 0.1742609441280365, + "learning_rate": 4.8806808134394344e-05, + "loss": 0.9385026550292969, + "step": 2700 + }, + { + "epoch": 2.476000884760009, + "grad_norm": 0.1893293261528015, + "learning_rate": 4.876259946949602e-05, + "loss": 0.9374285125732422, + "step": 2800 + }, + { + "epoch": 2.564476885644769, + "grad_norm": 0.17022491991519928, + "learning_rate": 4.8718390804597705e-05, + "loss": 0.9414189910888672, + "step": 2900 + }, + { + "epoch": 2.652952886529529, + "grad_norm": 0.1820104867219925, + "learning_rate": 4.867418213969938e-05, + "loss": 0.9428114318847656, + "step": 3000 + }, + { + "epoch": 2.7414288874142887, + "grad_norm": 0.1591845154762268, + "learning_rate": 4.8629973474801066e-05, + "loss": 0.9408238220214844, + "step": 3100 + }, + { + "epoch": 2.829904888299049, + "grad_norm": 0.16679565608501434, + "learning_rate": 4.858576480990274e-05, + "loss": 0.9357293701171875, + "step": 3200 + }, + { + "epoch": 2.918380889183809, + "grad_norm": 0.1608530431985855, + "learning_rate": 4.854155614500443e-05, + "loss": 0.9437465667724609, + "step": 3300 + }, + { + "epoch": 3.006193320061933, + "grad_norm": 0.17832520604133606, + "learning_rate": 4.8497347480106104e-05, + "loss": 0.9349425506591796, + "step": 3400 + }, + { + "epoch": 3.0946693209466933, + "grad_norm": 0.18095993995666504, + "learning_rate": 4.845313881520778e-05, + "loss": 0.9341915130615235, + "step": 3500 + }, + { + "epoch": 3.183145321831453, + "grad_norm": 0.15083801746368408, + "learning_rate": 4.8408930150309465e-05, + "loss": 0.9406319427490234, + "step": 3600 + }, + { + "epoch": 3.2716213227162134, + "grad_norm": 0.17318469285964966, + "learning_rate": 4.836472148541114e-05, + "loss": 0.942470703125, + "step": 3700 + }, + { + "epoch": 3.3600973236009732, + "grad_norm": 0.16380801796913147, + "learning_rate": 4.8320512820512826e-05, + "loss": 0.9362622833251953, + "step": 3800 + }, + { + "epoch": 3.448573324485733, + "grad_norm": 0.16394540667533875, + "learning_rate": 4.82763041556145e-05, + "loss": 0.9353338623046875, + "step": 3900 + }, + { + "epoch": 3.5370493253704933, + "grad_norm": 0.15836960077285767, + "learning_rate": 4.8232095490716186e-05, + "loss": 0.9316812896728516, + "step": 4000 + }, + { + "epoch": 3.625525326255253, + "grad_norm": 0.16170428693294525, + "learning_rate": 4.8187886825817864e-05, + "loss": 0.9331712341308593, + "step": 4100 + }, + { + "epoch": 3.7140013271400134, + "grad_norm": 0.16442789137363434, + "learning_rate": 4.814367816091954e-05, + "loss": 0.9366471862792969, + "step": 4200 + }, + { + "epoch": 3.8024773280247732, + "grad_norm": 0.1728108674287796, + "learning_rate": 4.8099469496021224e-05, + "loss": 0.9279624938964843, + "step": 4300 + }, + { + "epoch": 3.890953328909533, + "grad_norm": 0.16846929490566254, + "learning_rate": 4.80552608311229e-05, + "loss": 0.9343041229248047, + "step": 4400 + }, + { + "epoch": 3.9794293297942933, + "grad_norm": 0.15764060616493225, + "learning_rate": 4.8011052166224585e-05, + "loss": 0.9330953979492187, + "step": 4500 + }, + { + "epoch": 4.067241760672418, + "grad_norm": 0.15639521181583405, + "learning_rate": 4.796684350132626e-05, + "loss": 0.92936279296875, + "step": 4600 + }, + { + "epoch": 4.155717761557177, + "grad_norm": 0.1571352481842041, + "learning_rate": 4.7922634836427946e-05, + "loss": 0.928530502319336, + "step": 4700 + }, + { + "epoch": 4.244193762441937, + "grad_norm": 0.1702045202255249, + "learning_rate": 4.787842617152962e-05, + "loss": 0.928214111328125, + "step": 4800 + }, + { + "epoch": 4.332669763326698, + "grad_norm": 0.15860655903816223, + "learning_rate": 4.78342175066313e-05, + "loss": 0.9305215454101563, + "step": 4900 + }, + { + "epoch": 4.421145764211458, + "grad_norm": 0.15470334887504578, + "learning_rate": 4.779000884173298e-05, + "loss": 0.9308832550048828, + "step": 5000 + }, + { + "epoch": 4.509621765096218, + "grad_norm": 0.18338388204574585, + "learning_rate": 4.774580017683466e-05, + "loss": 0.9284812164306641, + "step": 5100 + }, + { + "epoch": 4.598097765980977, + "grad_norm": 0.16396461427211761, + "learning_rate": 4.7701591511936345e-05, + "loss": 0.9331364440917969, + "step": 5200 + }, + { + "epoch": 4.686573766865738, + "grad_norm": 0.15601013600826263, + "learning_rate": 4.765738284703802e-05, + "loss": 0.9345075225830078, + "step": 5300 + }, + { + "epoch": 4.775049767750498, + "grad_norm": 0.15895380079746246, + "learning_rate": 4.76131741821397e-05, + "loss": 0.9342525482177735, + "step": 5400 + }, + { + "epoch": 4.863525768635258, + "grad_norm": 0.17462770640850067, + "learning_rate": 4.756896551724138e-05, + "loss": 0.9322207641601562, + "step": 5500 + }, + { + "epoch": 4.952001769520018, + "grad_norm": 0.15457525849342346, + "learning_rate": 4.752475685234306e-05, + "loss": 0.9310305023193359, + "step": 5600 + }, + { + "epoch": 5.039814200398142, + "grad_norm": 0.13688383996486664, + "learning_rate": 4.748054818744474e-05, + "loss": 0.9262973022460937, + "step": 5700 + }, + { + "epoch": 5.128290201282902, + "grad_norm": 0.15491563081741333, + "learning_rate": 4.743633952254642e-05, + "loss": 0.927138671875, + "step": 5800 + }, + { + "epoch": 5.216766202167662, + "grad_norm": 0.168558269739151, + "learning_rate": 4.7392130857648105e-05, + "loss": 0.9224365234375, + "step": 5900 + }, + { + "epoch": 5.305242203052422, + "grad_norm": 0.1631685495376587, + "learning_rate": 4.734792219274978e-05, + "loss": 0.9300392913818359, + "step": 6000 + }, + { + "epoch": 5.393718203937182, + "grad_norm": 0.1423729509115219, + "learning_rate": 4.730371352785146e-05, + "loss": 0.926734619140625, + "step": 6100 + }, + { + "epoch": 5.482194204821942, + "grad_norm": 0.15391670167446136, + "learning_rate": 4.725950486295314e-05, + "loss": 0.928184814453125, + "step": 6200 + }, + { + "epoch": 5.570670205706702, + "grad_norm": 0.16460080444812775, + "learning_rate": 4.721529619805482e-05, + "loss": 0.9238227844238281, + "step": 6300 + }, + { + "epoch": 5.659146206591462, + "grad_norm": 0.15589170157909393, + "learning_rate": 4.71710875331565e-05, + "loss": 0.9301457214355469, + "step": 6400 + }, + { + "epoch": 5.747622207476222, + "grad_norm": 0.15851308405399323, + "learning_rate": 4.712687886825818e-05, + "loss": 0.9308782196044922, + "step": 6500 + }, + { + "epoch": 5.836098208360982, + "grad_norm": 0.1777440756559372, + "learning_rate": 4.7082670203359865e-05, + "loss": 0.9248320007324219, + "step": 6600 + }, + { + "epoch": 5.924574209245742, + "grad_norm": 0.17118966579437256, + "learning_rate": 4.703846153846154e-05, + "loss": 0.933470458984375, + "step": 6700 + }, + { + "epoch": 6.012386640123866, + "grad_norm": 0.16862431168556213, + "learning_rate": 4.699425287356322e-05, + "loss": 0.9242423248291015, + "step": 6800 + }, + { + "epoch": 6.100862641008627, + "grad_norm": 0.19494886696338654, + "learning_rate": 4.69500442086649e-05, + "loss": 0.9229951477050782, + "step": 6900 + }, + { + "epoch": 6.189338641893387, + "grad_norm": 0.1628340780735016, + "learning_rate": 4.690583554376658e-05, + "loss": 0.9262020111083984, + "step": 7000 + }, + { + "epoch": 6.2778146427781465, + "grad_norm": 0.18057121336460114, + "learning_rate": 4.686162687886826e-05, + "loss": 0.9253005981445312, + "step": 7100 + }, + { + "epoch": 6.366290643662906, + "grad_norm": 0.16090655326843262, + "learning_rate": 4.681741821396994e-05, + "loss": 0.9206966400146485, + "step": 7200 + }, + { + "epoch": 6.454766644547666, + "grad_norm": 0.16115659475326538, + "learning_rate": 4.6773209549071625e-05, + "loss": 0.9219180297851562, + "step": 7300 + }, + { + "epoch": 6.543242645432427, + "grad_norm": 0.1964244246482849, + "learning_rate": 4.67290008841733e-05, + "loss": 0.9238224029541016, + "step": 7400 + }, + { + "epoch": 6.631718646317187, + "grad_norm": 0.1761396825313568, + "learning_rate": 4.668479221927498e-05, + "loss": 0.9244656372070312, + "step": 7500 + }, + { + "epoch": 6.7201946472019465, + "grad_norm": 0.18016010522842407, + "learning_rate": 4.664058355437666e-05, + "loss": 0.9245244598388672, + "step": 7600 + }, + { + "epoch": 6.808670648086706, + "grad_norm": 0.16012924909591675, + "learning_rate": 4.659637488947834e-05, + "loss": 0.9250524139404297, + "step": 7700 + }, + { + "epoch": 6.897146648971466, + "grad_norm": 0.1722676306962967, + "learning_rate": 4.655216622458002e-05, + "loss": 0.9270682525634766, + "step": 7800 + }, + { + "epoch": 6.985622649856227, + "grad_norm": 0.18756897747516632, + "learning_rate": 4.65079575596817e-05, + "loss": 0.9234317779541016, + "step": 7900 + }, + { + "epoch": 7.073435080734351, + "grad_norm": 0.16759978234767914, + "learning_rate": 4.6463748894783384e-05, + "loss": 0.9213732147216797, + "step": 8000 + }, + { + "epoch": 7.1619110816191105, + "grad_norm": 0.15943242609500885, + "learning_rate": 4.641954022988506e-05, + "loss": 0.9243515014648438, + "step": 8100 + }, + { + "epoch": 7.250387082503871, + "grad_norm": 0.15444102883338928, + "learning_rate": 4.637533156498674e-05, + "loss": 0.9177332305908203, + "step": 8200 + }, + { + "epoch": 7.338863083388631, + "grad_norm": 0.17104187607765198, + "learning_rate": 4.633112290008842e-05, + "loss": 0.9199151611328125, + "step": 8300 + }, + { + "epoch": 7.427339084273391, + "grad_norm": 0.152462899684906, + "learning_rate": 4.62869142351901e-05, + "loss": 0.9231443786621094, + "step": 8400 + }, + { + "epoch": 7.515815085158151, + "grad_norm": 0.1663249433040619, + "learning_rate": 4.6242705570291777e-05, + "loss": 0.9231499481201172, + "step": 8500 + }, + { + "epoch": 7.6042910860429105, + "grad_norm": 0.1711215376853943, + "learning_rate": 4.6198496905393454e-05, + "loss": 0.9192819976806641, + "step": 8600 + }, + { + "epoch": 7.692767086927671, + "grad_norm": 0.1620834916830063, + "learning_rate": 4.6154288240495144e-05, + "loss": 0.9260062408447266, + "step": 8700 + }, + { + "epoch": 7.781243087812431, + "grad_norm": 0.16246546804904938, + "learning_rate": 4.611007957559682e-05, + "loss": 0.9250968933105469, + "step": 8800 + }, + { + "epoch": 7.869719088697191, + "grad_norm": 0.15757358074188232, + "learning_rate": 4.60658709106985e-05, + "loss": 0.9235149383544922, + "step": 8900 + }, + { + "epoch": 7.958195089581951, + "grad_norm": 0.15778206288814545, + "learning_rate": 4.602166224580018e-05, + "loss": 0.9173377227783203, + "step": 9000 + }, + { + "epoch": 8.046007520460075, + "grad_norm": 0.17259791493415833, + "learning_rate": 4.597745358090186e-05, + "loss": 0.9134017181396484, + "step": 9100 + }, + { + "epoch": 8.134483521344835, + "grad_norm": 0.1707502007484436, + "learning_rate": 4.5933244916003536e-05, + "loss": 0.9134098052978515, + "step": 9200 + }, + { + "epoch": 8.222959522229596, + "grad_norm": 0.1647530347108841, + "learning_rate": 4.5889036251105213e-05, + "loss": 0.9205097961425781, + "step": 9300 + }, + { + "epoch": 8.311435523114355, + "grad_norm": 0.16971947252750397, + "learning_rate": 4.5844827586206904e-05, + "loss": 0.9217983245849609, + "step": 9400 + }, + { + "epoch": 8.399911523999116, + "grad_norm": 0.15842877328395844, + "learning_rate": 4.580061892130858e-05, + "loss": 0.9172341918945313, + "step": 9500 + }, + { + "epoch": 8.488387524883874, + "grad_norm": 0.15321888029575348, + "learning_rate": 4.575641025641026e-05, + "loss": 0.9222029113769531, + "step": 9600 + }, + { + "epoch": 8.576863525768635, + "grad_norm": 0.17232707142829895, + "learning_rate": 4.5712201591511935e-05, + "loss": 0.9190543365478515, + "step": 9700 + }, + { + "epoch": 8.665339526653396, + "grad_norm": 0.14735591411590576, + "learning_rate": 4.566799292661362e-05, + "loss": 0.9193865203857422, + "step": 9800 + }, + { + "epoch": 8.753815527538155, + "grad_norm": 0.17929628491401672, + "learning_rate": 4.5623784261715296e-05, + "loss": 0.9178209686279297, + "step": 9900 + }, + { + "epoch": 8.842291528422916, + "grad_norm": 0.1546984612941742, + "learning_rate": 4.557957559681697e-05, + "loss": 0.9209825134277344, + "step": 10000 + }, + { + "epoch": 8.930767529307674, + "grad_norm": 0.16275030374526978, + "learning_rate": 4.553536693191866e-05, + "loss": 0.9219312286376953, + "step": 10100 + }, + { + "epoch": 9.0185799601858, + "grad_norm": 0.16977843642234802, + "learning_rate": 4.549115826702034e-05, + "loss": 0.9190888977050782, + "step": 10200 + }, + { + "epoch": 9.107055961070559, + "grad_norm": 0.16722118854522705, + "learning_rate": 4.544694960212202e-05, + "loss": 0.9173007202148438, + "step": 10300 + }, + { + "epoch": 9.19553196195532, + "grad_norm": 0.15637095272541046, + "learning_rate": 4.5402740937223695e-05, + "loss": 0.9152852630615235, + "step": 10400 + }, + { + "epoch": 9.28400796284008, + "grad_norm": 0.15433216094970703, + "learning_rate": 4.535853227232538e-05, + "loss": 0.9151573944091796, + "step": 10500 + }, + { + "epoch": 9.37248396372484, + "grad_norm": 0.15743562579154968, + "learning_rate": 4.5314323607427056e-05, + "loss": 0.9173799896240235, + "step": 10600 + }, + { + "epoch": 9.4609599646096, + "grad_norm": 0.1527981162071228, + "learning_rate": 4.527011494252873e-05, + "loss": 0.911611328125, + "step": 10700 + }, + { + "epoch": 9.549435965494359, + "grad_norm": 0.15745887160301208, + "learning_rate": 4.522590627763042e-05, + "loss": 0.9144339752197266, + "step": 10800 + }, + { + "epoch": 9.63791196637912, + "grad_norm": 0.1523962914943695, + "learning_rate": 4.51816976127321e-05, + "loss": 0.918481216430664, + "step": 10900 + }, + { + "epoch": 9.72638796726388, + "grad_norm": 0.17231452465057373, + "learning_rate": 4.513748894783378e-05, + "loss": 0.9197111511230469, + "step": 11000 + }, + { + "epoch": 9.81486396814864, + "grad_norm": 0.16348381340503693, + "learning_rate": 4.5093280282935455e-05, + "loss": 0.9151203918457032, + "step": 11100 + }, + { + "epoch": 9.9033399690334, + "grad_norm": 0.16555383801460266, + "learning_rate": 4.504907161803714e-05, + "loss": 0.9189680480957031, + "step": 11200 + }, + { + "epoch": 9.991815969918159, + "grad_norm": 0.16531047224998474, + "learning_rate": 4.5004862953138816e-05, + "loss": 0.9149074554443359, + "step": 11300 + }, + { + "epoch": 10.079628400796285, + "grad_norm": 0.1655273735523224, + "learning_rate": 4.496065428824049e-05, + "loss": 0.9143817138671875, + "step": 11400 + }, + { + "epoch": 10.168104401681044, + "grad_norm": 0.1795828938484192, + "learning_rate": 4.491644562334218e-05, + "loss": 0.911801986694336, + "step": 11500 + }, + { + "epoch": 10.256580402565804, + "grad_norm": 0.1684361696243286, + "learning_rate": 4.487223695844386e-05, + "loss": 0.910247802734375, + "step": 11600 + }, + { + "epoch": 10.345056403450563, + "grad_norm": 0.1620638519525528, + "learning_rate": 4.482802829354554e-05, + "loss": 0.9155111694335938, + "step": 11700 + }, + { + "epoch": 10.433532404335324, + "grad_norm": 0.1695495843887329, + "learning_rate": 4.4783819628647215e-05, + "loss": 0.9134779357910157, + "step": 11800 + }, + { + "epoch": 10.522008405220085, + "grad_norm": 0.18226753175258636, + "learning_rate": 4.47396109637489e-05, + "loss": 0.9143638610839844, + "step": 11900 + }, + { + "epoch": 10.610484406104844, + "grad_norm": 0.15289710462093353, + "learning_rate": 4.4695402298850576e-05, + "loss": 0.9122061157226562, + "step": 12000 + }, + { + "epoch": 10.698960406989604, + "grad_norm": 0.15486228466033936, + "learning_rate": 4.465119363395225e-05, + "loss": 0.9148915863037109, + "step": 12100 + }, + { + "epoch": 10.787436407874363, + "grad_norm": 0.17585019767284393, + "learning_rate": 4.4606984969053937e-05, + "loss": 0.9163182830810547, + "step": 12200 + }, + { + "epoch": 10.875912408759124, + "grad_norm": 0.158732071518898, + "learning_rate": 4.456277630415562e-05, + "loss": 0.9148865509033203, + "step": 12300 + }, + { + "epoch": 10.964388409643885, + "grad_norm": 0.15901361405849457, + "learning_rate": 4.45185676392573e-05, + "loss": 0.9184156799316406, + "step": 12400 + }, + { + "epoch": 11.052200840522008, + "grad_norm": 0.15289290249347687, + "learning_rate": 4.4474358974358974e-05, + "loss": 0.910323486328125, + "step": 12500 + }, + { + "epoch": 11.14067684140677, + "grad_norm": 0.14922171831130981, + "learning_rate": 4.443015030946066e-05, + "loss": 0.9092740631103515, + "step": 12600 + }, + { + "epoch": 11.229152842291528, + "grad_norm": 0.1710701584815979, + "learning_rate": 4.4385941644562335e-05, + "loss": 0.909953842163086, + "step": 12700 + }, + { + "epoch": 11.317628843176289, + "grad_norm": 0.16967815160751343, + "learning_rate": 4.434173297966401e-05, + "loss": 0.9069422912597657, + "step": 12800 + }, + { + "epoch": 11.406104844061048, + "grad_norm": 0.16896069049835205, + "learning_rate": 4.4297524314765696e-05, + "loss": 0.9166646575927735, + "step": 12900 + }, + { + "epoch": 11.494580844945808, + "grad_norm": 0.16996079683303833, + "learning_rate": 4.425331564986738e-05, + "loss": 0.9114566040039063, + "step": 13000 + }, + { + "epoch": 11.58305684583057, + "grad_norm": 0.16553319990634918, + "learning_rate": 4.420910698496906e-05, + "loss": 0.9121807098388672, + "step": 13100 + }, + { + "epoch": 11.671532846715328, + "grad_norm": 0.1629258692264557, + "learning_rate": 4.4164898320070734e-05, + "loss": 0.904563217163086, + "step": 13200 + }, + { + "epoch": 11.760008847600089, + "grad_norm": 0.1660201996564865, + "learning_rate": 4.412068965517241e-05, + "loss": 0.9116962432861329, + "step": 13300 + }, + { + "epoch": 11.848484848484848, + "grad_norm": 0.16493095457553864, + "learning_rate": 4.4076480990274095e-05, + "loss": 0.9136554718017578, + "step": 13400 + }, + { + "epoch": 11.936960849369608, + "grad_norm": 0.15279296040534973, + "learning_rate": 4.403227232537578e-05, + "loss": 0.9120658874511719, + "step": 13500 + }, + { + "epoch": 12.024773280247732, + "grad_norm": 0.16151593625545502, + "learning_rate": 4.3988063660477456e-05, + "loss": 0.9155186462402344, + "step": 13600 + }, + { + "epoch": 12.113249281132493, + "grad_norm": 0.16777871549129486, + "learning_rate": 4.394385499557914e-05, + "loss": 0.9070235443115234, + "step": 13700 + }, + { + "epoch": 12.201725282017254, + "grad_norm": 0.15052072703838348, + "learning_rate": 4.389964633068082e-05, + "loss": 0.9057080078125, + "step": 13800 + }, + { + "epoch": 12.290201282902013, + "grad_norm": 0.17466743290424347, + "learning_rate": 4.3855437665782494e-05, + "loss": 0.9058401489257812, + "step": 13900 + }, + { + "epoch": 12.378677283786773, + "grad_norm": 0.17788690328598022, + "learning_rate": 4.381122900088417e-05, + "loss": 0.9058721923828125, + "step": 14000 + }, + { + "epoch": 12.467153284671532, + "grad_norm": 0.17527516186237335, + "learning_rate": 4.3767020335985855e-05, + "loss": 0.908851089477539, + "step": 14100 + }, + { + "epoch": 12.555629285556293, + "grad_norm": 0.17999336123466492, + "learning_rate": 4.372281167108754e-05, + "loss": 0.9110614013671875, + "step": 14200 + }, + { + "epoch": 12.644105286441054, + "grad_norm": 0.1635061800479889, + "learning_rate": 4.3678603006189216e-05, + "loss": 0.9081086730957031, + "step": 14300 + }, + { + "epoch": 12.732581287325813, + "grad_norm": 0.1813993752002716, + "learning_rate": 4.363439434129089e-05, + "loss": 0.9091014862060547, + "step": 14400 + }, + { + "epoch": 12.821057288210573, + "grad_norm": 0.17487457394599915, + "learning_rate": 4.359018567639258e-05, + "loss": 0.9076325988769531, + "step": 14500 + }, + { + "epoch": 12.909533289095332, + "grad_norm": 0.17149627208709717, + "learning_rate": 4.3545977011494254e-05, + "loss": 0.9064749908447266, + "step": 14600 + }, + { + "epoch": 12.998009289980093, + "grad_norm": 0.16990207135677338, + "learning_rate": 4.350176834659593e-05, + "loss": 0.911828384399414, + "step": 14700 + }, + { + "epoch": 13.085821720858217, + "grad_norm": 0.16583888232707977, + "learning_rate": 4.3458001768346594e-05, + "loss": 0.9017422485351563, + "step": 14800 + }, + { + "epoch": 13.174297721742978, + "grad_norm": 0.1644158959388733, + "learning_rate": 4.341379310344828e-05, + "loss": 0.9052355194091797, + "step": 14900 + }, + { + "epoch": 13.262773722627736, + "grad_norm": 0.1759374737739563, + "learning_rate": 4.336958443854996e-05, + "loss": 0.9027067565917969, + "step": 15000 + }, + { + "epoch": 13.351249723512497, + "grad_norm": 0.1623755842447281, + "learning_rate": 4.332537577365164e-05, + "loss": 0.9078491973876953, + "step": 15100 + }, + { + "epoch": 13.439725724397258, + "grad_norm": 0.15563324093818665, + "learning_rate": 4.3281167108753316e-05, + "loss": 0.9046826171875, + "step": 15200 + }, + { + "epoch": 13.528201725282017, + "grad_norm": 0.1762174814939499, + "learning_rate": 4.3236958443855e-05, + "loss": 0.9070060729980469, + "step": 15300 + }, + { + "epoch": 13.616677726166778, + "grad_norm": 0.1598447859287262, + "learning_rate": 4.319274977895668e-05, + "loss": 0.907843017578125, + "step": 15400 + }, + { + "epoch": 13.705153727051536, + "grad_norm": 0.17838729918003082, + "learning_rate": 4.3148541114058354e-05, + "loss": 0.9077598571777343, + "step": 15500 + }, + { + "epoch": 13.793629727936297, + "grad_norm": 0.16615167260169983, + "learning_rate": 4.310433244916004e-05, + "loss": 0.9041740417480468, + "step": 15600 + }, + { + "epoch": 13.882105728821058, + "grad_norm": 0.16463759541511536, + "learning_rate": 4.306012378426172e-05, + "loss": 0.9023047637939453, + "step": 15700 + }, + { + "epoch": 13.970581729705817, + "grad_norm": 0.1562959849834442, + "learning_rate": 4.30159151193634e-05, + "loss": 0.902835693359375, + "step": 15800 + }, + { + "epoch": 14.058394160583942, + "grad_norm": 0.16919565200805664, + "learning_rate": 4.2971706454465076e-05, + "loss": 0.8998876953125, + "step": 15900 + }, + { + "epoch": 14.146870161468701, + "grad_norm": 0.16513022780418396, + "learning_rate": 4.292749778956676e-05, + "loss": 0.9023524475097656, + "step": 16000 + }, + { + "epoch": 14.235346162353462, + "grad_norm": 0.173946812748909, + "learning_rate": 4.288328912466844e-05, + "loss": 0.8980498504638672, + "step": 16100 + }, + { + "epoch": 14.323822163238221, + "grad_norm": 0.16749872267246246, + "learning_rate": 4.2839080459770114e-05, + "loss": 0.9026957702636719, + "step": 16200 + }, + { + "epoch": 14.412298164122982, + "grad_norm": 0.17985551059246063, + "learning_rate": 4.27948717948718e-05, + "loss": 0.9012105560302734, + "step": 16300 + }, + { + "epoch": 14.500774165007742, + "grad_norm": 0.18807820975780487, + "learning_rate": 4.275066312997348e-05, + "loss": 0.9014115905761719, + "step": 16400 + }, + { + "epoch": 14.589250165892501, + "grad_norm": 0.17243777215480804, + "learning_rate": 4.270645446507516e-05, + "loss": 0.9028221893310547, + "step": 16500 + }, + { + "epoch": 14.677726166777262, + "grad_norm": 0.1674414724111557, + "learning_rate": 4.2662245800176836e-05, + "loss": 0.9017185974121094, + "step": 16600 + }, + { + "epoch": 14.766202167662021, + "grad_norm": 0.17522333562374115, + "learning_rate": 4.261803713527851e-05, + "loss": 0.8989543914794922, + "step": 16700 + }, + { + "epoch": 14.854678168546782, + "grad_norm": 0.16300654411315918, + "learning_rate": 4.2573828470380197e-05, + "loss": 0.9001253509521484, + "step": 16800 + }, + { + "epoch": 14.943154169431542, + "grad_norm": 0.1702653169631958, + "learning_rate": 4.2529619805481874e-05, + "loss": 0.9020176696777343, + "step": 16900 + }, + { + "epoch": 15.030966600309666, + "grad_norm": 0.1752340942621231, + "learning_rate": 4.2485853227232544e-05, + "loss": 0.8990335083007812, + "step": 17000 + }, + { + "epoch": 15.119442601194425, + "grad_norm": 0.17765584588050842, + "learning_rate": 4.244164456233422e-05, + "loss": 0.8885309600830078, + "step": 17100 + }, + { + "epoch": 15.207918602079186, + "grad_norm": 0.18404972553253174, + "learning_rate": 4.23974358974359e-05, + "loss": 0.8915805816650391, + "step": 17200 + }, + { + "epoch": 15.296394602963947, + "grad_norm": 0.17206765711307526, + "learning_rate": 4.235322723253758e-05, + "loss": 0.8898361968994141, + "step": 17300 + }, + { + "epoch": 15.384870603848706, + "grad_norm": 0.19998455047607422, + "learning_rate": 4.230901856763926e-05, + "loss": 0.8957837677001953, + "step": 17400 + }, + { + "epoch": 15.473346604733466, + "grad_norm": 0.19454777240753174, + "learning_rate": 4.2264809902740936e-05, + "loss": 0.8990544891357422, + "step": 17500 + }, + { + "epoch": 15.561822605618225, + "grad_norm": 0.17281410098075867, + "learning_rate": 4.222060123784262e-05, + "loss": 0.8996484375, + "step": 17600 + }, + { + "epoch": 15.650298606502986, + "grad_norm": 0.1906009018421173, + "learning_rate": 4.21763925729443e-05, + "loss": 0.9032618713378906, + "step": 17700 + }, + { + "epoch": 15.738774607387747, + "grad_norm": 0.17282316088676453, + "learning_rate": 4.213218390804598e-05, + "loss": 0.8986404418945313, + "step": 17800 + }, + { + "epoch": 15.827250608272506, + "grad_norm": 0.18802666664123535, + "learning_rate": 4.208797524314766e-05, + "loss": 0.8964502716064453, + "step": 17900 + }, + { + "epoch": 15.915726609157266, + "grad_norm": 0.19853872060775757, + "learning_rate": 4.204376657824934e-05, + "loss": 0.9032749938964844, + "step": 18000 + }, + { + "epoch": 16.003539040035392, + "grad_norm": 0.18812181055545807, + "learning_rate": 4.199955791335102e-05, + "loss": 0.8991973876953125, + "step": 18100 + }, + { + "epoch": 16.09201504092015, + "grad_norm": 0.1644710898399353, + "learning_rate": 4.1955349248452695e-05, + "loss": 0.8866680908203125, + "step": 18200 + }, + { + "epoch": 16.18049104180491, + "grad_norm": 0.1884208619594574, + "learning_rate": 4.191114058355438e-05, + "loss": 0.8872537994384766, + "step": 18300 + }, + { + "epoch": 16.26896704268967, + "grad_norm": 0.1828072965145111, + "learning_rate": 4.186693191865606e-05, + "loss": 0.8902882385253906, + "step": 18400 + }, + { + "epoch": 16.35744304357443, + "grad_norm": 0.19119146466255188, + "learning_rate": 4.182272325375774e-05, + "loss": 0.8903806304931641, + "step": 18500 + }, + { + "epoch": 16.445919044459192, + "grad_norm": 0.20727571845054626, + "learning_rate": 4.177851458885942e-05, + "loss": 0.8952965545654297, + "step": 18600 + }, + { + "epoch": 16.53439504534395, + "grad_norm": 0.18735922873020172, + "learning_rate": 4.17343059239611e-05, + "loss": 0.8870563507080078, + "step": 18700 + }, + { + "epoch": 16.62287104622871, + "grad_norm": 0.1973799169063568, + "learning_rate": 4.169009725906278e-05, + "loss": 0.8974028778076172, + "step": 18800 + }, + { + "epoch": 16.71134704711347, + "grad_norm": 0.20604746043682098, + "learning_rate": 4.1645888594164455e-05, + "loss": 0.8937057495117188, + "step": 18900 + }, + { + "epoch": 16.79982304799823, + "grad_norm": 0.18150219321250916, + "learning_rate": 4.160167992926614e-05, + "loss": 0.8935442352294922, + "step": 19000 + }, + { + "epoch": 16.888299048882992, + "grad_norm": 0.18340304493904114, + "learning_rate": 4.155747126436782e-05, + "loss": 0.8885797119140625, + "step": 19100 + }, + { + "epoch": 16.97677504976775, + "grad_norm": 0.2073577493429184, + "learning_rate": 4.15132625994695e-05, + "loss": 0.8951002502441406, + "step": 19200 + }, + { + "epoch": 17.064587480645876, + "grad_norm": 0.17697007954120636, + "learning_rate": 4.146949602122016e-05, + "loss": 0.8879679870605469, + "step": 19300 + }, + { + "epoch": 17.153063481530634, + "grad_norm": 0.20899821817874908, + "learning_rate": 4.142528735632184e-05, + "loss": 0.8794329833984375, + "step": 19400 + }, + { + "epoch": 17.241539482415394, + "grad_norm": 0.18147091567516327, + "learning_rate": 4.138107869142352e-05, + "loss": 0.8802722930908203, + "step": 19500 + }, + { + "epoch": 17.330015483300155, + "grad_norm": 0.20257830619812012, + "learning_rate": 4.13368700265252e-05, + "loss": 0.8870145416259766, + "step": 19600 + }, + { + "epoch": 17.418491484184916, + "grad_norm": 0.20231416821479797, + "learning_rate": 4.1292661361626885e-05, + "loss": 0.8838448333740234, + "step": 19700 + }, + { + "epoch": 17.506967485069676, + "grad_norm": 0.18214623630046844, + "learning_rate": 4.124845269672856e-05, + "loss": 0.8879763793945312, + "step": 19800 + }, + { + "epoch": 17.595443485954434, + "grad_norm": 0.18666088581085205, + "learning_rate": 4.120424403183024e-05, + "loss": 0.8885836029052734, + "step": 19900 + }, + { + "epoch": 17.683919486839194, + "grad_norm": 0.20308583974838257, + "learning_rate": 4.116003536693192e-05, + "loss": 0.8843843078613282, + "step": 20000 + }, + { + "epoch": 17.772395487723955, + "grad_norm": 0.18726830184459686, + "learning_rate": 4.11158267020336e-05, + "loss": 0.8865486145019531, + "step": 20100 + }, + { + "epoch": 17.860871488608716, + "grad_norm": 0.17878851294517517, + "learning_rate": 4.107161803713528e-05, + "loss": 0.8883515930175782, + "step": 20200 + }, + { + "epoch": 17.949347489493476, + "grad_norm": 0.1849307119846344, + "learning_rate": 4.102740937223696e-05, + "loss": 0.8914216613769531, + "step": 20300 + }, + { + "epoch": 18.0371599203716, + "grad_norm": 0.22315239906311035, + "learning_rate": 4.0983200707338645e-05, + "loss": 0.88252197265625, + "step": 20400 + }, + { + "epoch": 18.12563592125636, + "grad_norm": 0.18446321785449982, + "learning_rate": 4.093899204244032e-05, + "loss": 0.8717878723144531, + "step": 20500 + }, + { + "epoch": 18.214111922141118, + "grad_norm": 0.21541251242160797, + "learning_rate": 4.0894783377542e-05, + "loss": 0.8750727844238281, + "step": 20600 + }, + { + "epoch": 18.30258792302588, + "grad_norm": 0.22268827259540558, + "learning_rate": 4.085057471264368e-05, + "loss": 0.8760640716552734, + "step": 20700 + }, + { + "epoch": 18.39106392391064, + "grad_norm": 0.2207673043012619, + "learning_rate": 4.080636604774536e-05, + "loss": 0.876912841796875, + "step": 20800 + }, + { + "epoch": 18.4795399247954, + "grad_norm": 0.21988292038440704, + "learning_rate": 4.076215738284704e-05, + "loss": 0.8794302368164062, + "step": 20900 + }, + { + "epoch": 18.56801592568016, + "grad_norm": 0.2057323008775711, + "learning_rate": 4.0717948717948714e-05, + "loss": 0.8795650482177735, + "step": 21000 + }, + { + "epoch": 18.656491926564918, + "grad_norm": 0.19854794442653656, + "learning_rate": 4.0673740053050405e-05, + "loss": 0.8824103546142578, + "step": 21100 + }, + { + "epoch": 18.74496792744968, + "grad_norm": 0.2183123230934143, + "learning_rate": 4.062953138815208e-05, + "loss": 0.8792383575439453, + "step": 21200 + }, + { + "epoch": 18.83344392833444, + "grad_norm": 0.20326419174671173, + "learning_rate": 4.058532272325376e-05, + "loss": 0.8834226989746093, + "step": 21300 + }, + { + "epoch": 18.9219199292192, + "grad_norm": 0.20735788345336914, + "learning_rate": 4.054111405835544e-05, + "loss": 0.8820342254638672, + "step": 21400 + }, + { + "epoch": 19.009732360097324, + "grad_norm": 0.2023264467716217, + "learning_rate": 4.04973474801061e-05, + "loss": 0.8843944549560547, + "step": 21500 + }, + { + "epoch": 19.098208360982085, + "grad_norm": 0.21148885786533356, + "learning_rate": 4.045313881520778e-05, + "loss": 0.8647132110595703, + "step": 21600 + }, + { + "epoch": 19.186684361866842, + "grad_norm": 0.2251083254814148, + "learning_rate": 4.040893015030947e-05, + "loss": 0.866364974975586, + "step": 21700 + }, + { + "epoch": 19.275160362751603, + "grad_norm": 0.23524972796440125, + "learning_rate": 4.0364721485411144e-05, + "loss": 0.8736127471923828, + "step": 21800 + }, + { + "epoch": 19.363636363636363, + "grad_norm": 0.21772760152816772, + "learning_rate": 4.032051282051282e-05, + "loss": 0.8692568206787109, + "step": 21900 + }, + { + "epoch": 19.452112364521124, + "grad_norm": 0.2125358134508133, + "learning_rate": 4.0276304155614505e-05, + "loss": 0.8706926727294921, + "step": 22000 + }, + { + "epoch": 19.540588365405885, + "grad_norm": 0.22768475115299225, + "learning_rate": 4.023209549071618e-05, + "loss": 0.8674411010742188, + "step": 22100 + }, + { + "epoch": 19.629064366290642, + "grad_norm": 0.2211151272058487, + "learning_rate": 4.018788682581786e-05, + "loss": 0.8749802398681641, + "step": 22200 + }, + { + "epoch": 19.717540367175403, + "grad_norm": 0.21814538538455963, + "learning_rate": 4.014367816091954e-05, + "loss": 0.8754036712646485, + "step": 22300 + }, + { + "epoch": 19.806016368060163, + "grad_norm": 0.2030419558286667, + "learning_rate": 4.0099469496021226e-05, + "loss": 0.8714677429199219, + "step": 22400 + }, + { + "epoch": 19.894492368944924, + "grad_norm": 0.21472303569316864, + "learning_rate": 4.0055260831122904e-05, + "loss": 0.8727165222167969, + "step": 22500 + }, + { + "epoch": 19.982968369829685, + "grad_norm": 0.20911096036434174, + "learning_rate": 4.001105216622458e-05, + "loss": 0.8781427764892578, + "step": 22600 + }, + { + "epoch": 20.07078080070781, + "grad_norm": 0.2304856926202774, + "learning_rate": 3.9966843501326264e-05, + "loss": 0.8589347076416015, + "step": 22700 + }, + { + "epoch": 20.15925680159257, + "grad_norm": 0.23650145530700684, + "learning_rate": 3.992263483642794e-05, + "loss": 0.8598684692382812, + "step": 22800 + }, + { + "epoch": 20.247732802477326, + "grad_norm": 0.21773482859134674, + "learning_rate": 3.987842617152962e-05, + "loss": 0.8605601501464843, + "step": 22900 + }, + { + "epoch": 20.336208803362087, + "grad_norm": 0.2237112671136856, + "learning_rate": 3.98342175066313e-05, + "loss": 0.8617141723632813, + "step": 23000 + }, + { + "epoch": 20.424684804246848, + "grad_norm": 0.24452048540115356, + "learning_rate": 3.9790008841732986e-05, + "loss": 0.8622699737548828, + "step": 23100 + }, + { + "epoch": 20.51316080513161, + "grad_norm": 0.21587280929088593, + "learning_rate": 3.974580017683466e-05, + "loss": 0.8637493896484375, + "step": 23200 + }, + { + "epoch": 20.60163680601637, + "grad_norm": 0.2406671941280365, + "learning_rate": 3.970159151193634e-05, + "loss": 0.859559555053711, + "step": 23300 + }, + { + "epoch": 20.690112806901126, + "grad_norm": 0.22845898568630219, + "learning_rate": 3.9657382847038024e-05, + "loss": 0.8662923431396484, + "step": 23400 + }, + { + "epoch": 20.778588807785887, + "grad_norm": 0.24683597683906555, + "learning_rate": 3.96131741821397e-05, + "loss": 0.8673475646972656, + "step": 23500 + }, + { + "epoch": 20.867064808670648, + "grad_norm": 0.22459226846694946, + "learning_rate": 3.956896551724138e-05, + "loss": 0.8640863037109375, + "step": 23600 + }, + { + "epoch": 20.95554080955541, + "grad_norm": 0.23616963624954224, + "learning_rate": 3.952475685234306e-05, + "loss": 0.8678861236572266, + "step": 23700 + }, + { + "epoch": 21.043353240433532, + "grad_norm": 0.22973845899105072, + "learning_rate": 3.9480990274093725e-05, + "loss": 0.8580598449707031, + "step": 23800 + }, + { + "epoch": 21.131829241318293, + "grad_norm": 0.2424720972776413, + "learning_rate": 3.94367816091954e-05, + "loss": 0.8460955810546875, + "step": 23900 + }, + { + "epoch": 21.220305242203054, + "grad_norm": 0.2528146505355835, + "learning_rate": 3.9392572944297086e-05, + "loss": 0.8499996185302734, + "step": 24000 + }, + { + "epoch": 21.30878124308781, + "grad_norm": 0.2518126666545868, + "learning_rate": 3.9348364279398763e-05, + "loss": 0.8534349060058594, + "step": 24100 + }, + { + "epoch": 21.39725724397257, + "grad_norm": 0.2305818349123001, + "learning_rate": 3.930415561450044e-05, + "loss": 0.84900146484375, + "step": 24200 + }, + { + "epoch": 21.485733244857332, + "grad_norm": 0.25653600692749023, + "learning_rate": 3.9259946949602124e-05, + "loss": 0.8542990875244141, + "step": 24300 + }, + { + "epoch": 21.574209245742093, + "grad_norm": 0.2712801992893219, + "learning_rate": 3.92157382847038e-05, + "loss": 0.8558815002441407, + "step": 24400 + }, + { + "epoch": 21.662685246626854, + "grad_norm": 0.273328959941864, + "learning_rate": 3.9171529619805485e-05, + "loss": 0.8555754089355468, + "step": 24500 + }, + { + "epoch": 21.75116124751161, + "grad_norm": 0.2668614089488983, + "learning_rate": 3.912732095490716e-05, + "loss": 0.8587675476074219, + "step": 24600 + }, + { + "epoch": 21.83963724839637, + "grad_norm": 0.24395836889743805, + "learning_rate": 3.9083112290008846e-05, + "loss": 0.8572028350830078, + "step": 24700 + }, + { + "epoch": 21.928113249281132, + "grad_norm": 0.24808812141418457, + "learning_rate": 3.903890362511052e-05, + "loss": 0.8579219055175781, + "step": 24800 + }, + { + "epoch": 22.015925680159256, + "grad_norm": 0.2587817311286926, + "learning_rate": 3.89946949602122e-05, + "loss": 0.8512050628662109, + "step": 24900 + }, + { + "epoch": 22.104401681044017, + "grad_norm": 0.26175108551979065, + "learning_rate": 3.8950486295313884e-05, + "loss": 0.8361199188232422, + "step": 25000 + }, + { + "epoch": 22.192877681928778, + "grad_norm": 0.2715345025062561, + "learning_rate": 3.890627763041556e-05, + "loss": 0.8399204254150391, + "step": 25100 + }, + { + "epoch": 22.28135368281354, + "grad_norm": 0.27675682306289673, + "learning_rate": 3.8862068965517245e-05, + "loss": 0.8378430938720703, + "step": 25200 + }, + { + "epoch": 22.369829683698295, + "grad_norm": 0.26540565490722656, + "learning_rate": 3.881786030061892e-05, + "loss": 0.8397164916992188, + "step": 25300 + }, + { + "epoch": 22.458305684583056, + "grad_norm": 0.2754775285720825, + "learning_rate": 3.8773651635720606e-05, + "loss": 0.8450184631347656, + "step": 25400 + }, + { + "epoch": 22.546781685467817, + "grad_norm": 0.2393341213464737, + "learning_rate": 3.872944297082228e-05, + "loss": 0.8427618408203125, + "step": 25500 + }, + { + "epoch": 22.635257686352578, + "grad_norm": 0.23895791172981262, + "learning_rate": 3.868523430592396e-05, + "loss": 0.8457352447509766, + "step": 25600 + }, + { + "epoch": 22.72373368723734, + "grad_norm": 0.26955941319465637, + "learning_rate": 3.8641025641025644e-05, + "loss": 0.849469223022461, + "step": 25700 + }, + { + "epoch": 22.812209688122095, + "grad_norm": 0.23746059834957123, + "learning_rate": 3.859681697612732e-05, + "loss": 0.8469708251953125, + "step": 25800 + }, + { + "epoch": 22.900685689006856, + "grad_norm": 0.2649519145488739, + "learning_rate": 3.8552608311229005e-05, + "loss": 0.849559326171875, + "step": 25900 + }, + { + "epoch": 22.989161689891617, + "grad_norm": 0.27285081148147583, + "learning_rate": 3.850839964633068e-05, + "loss": 0.8485184478759765, + "step": 26000 + }, + { + "epoch": 23.07697412076974, + "grad_norm": 0.27895936369895935, + "learning_rate": 3.8464633068081345e-05, + "loss": 0.8252901458740234, + "step": 26100 + }, + { + "epoch": 23.1654501216545, + "grad_norm": 0.2652367055416107, + "learning_rate": 3.842042440318302e-05, + "loss": 0.8263906097412109, + "step": 26200 + }, + { + "epoch": 23.253926122539262, + "grad_norm": 0.2835598886013031, + "learning_rate": 3.8376215738284706e-05, + "loss": 0.8287677001953125, + "step": 26300 + }, + { + "epoch": 23.342402123424023, + "grad_norm": 0.2834433615207672, + "learning_rate": 3.833200707338638e-05, + "loss": 0.8309012603759766, + "step": 26400 + }, + { + "epoch": 23.43087812430878, + "grad_norm": 0.2998100817203522, + "learning_rate": 3.828779840848807e-05, + "loss": 0.8311166381835937, + "step": 26500 + }, + { + "epoch": 23.51935412519354, + "grad_norm": 0.29382187128067017, + "learning_rate": 3.8243589743589744e-05, + "loss": 0.8325238037109375, + "step": 26600 + }, + { + "epoch": 23.6078301260783, + "grad_norm": 0.2950701415538788, + "learning_rate": 3.819938107869143e-05, + "loss": 0.8368535614013672, + "step": 26700 + }, + { + "epoch": 23.696306126963062, + "grad_norm": 0.287801057100296, + "learning_rate": 3.8155172413793105e-05, + "loss": 0.833930435180664, + "step": 26800 + }, + { + "epoch": 23.784782127847823, + "grad_norm": 0.33100536465644836, + "learning_rate": 3.811096374889478e-05, + "loss": 0.8386001586914062, + "step": 26900 + }, + { + "epoch": 23.87325812873258, + "grad_norm": 0.2911369800567627, + "learning_rate": 3.8066755083996466e-05, + "loss": 0.8410533905029297, + "step": 27000 + }, + { + "epoch": 23.96173412961734, + "grad_norm": 0.26980099081993103, + "learning_rate": 3.802254641909814e-05, + "loss": 0.8360975646972656, + "step": 27100 + }, + { + "epoch": 24.049546560495465, + "grad_norm": 0.3001425862312317, + "learning_rate": 3.797833775419983e-05, + "loss": 0.8234864044189453, + "step": 27200 + }, + { + "epoch": 24.138022561380225, + "grad_norm": 0.27798378467559814, + "learning_rate": 3.7934129089301504e-05, + "loss": 0.8135331726074219, + "step": 27300 + }, + { + "epoch": 24.226498562264986, + "grad_norm": 0.2736954689025879, + "learning_rate": 3.788992042440319e-05, + "loss": 0.8113047027587891, + "step": 27400 + }, + { + "epoch": 24.314974563149747, + "grad_norm": 0.29235804080963135, + "learning_rate": 3.7845711759504865e-05, + "loss": 0.8171870422363281, + "step": 27500 + }, + { + "epoch": 24.403450564034507, + "grad_norm": 0.2878233790397644, + "learning_rate": 3.780150309460654e-05, + "loss": 0.8170029449462891, + "step": 27600 + }, + { + "epoch": 24.491926564919265, + "grad_norm": 0.31602925062179565, + "learning_rate": 3.7757294429708226e-05, + "loss": 0.8223928833007812, + "step": 27700 + }, + { + "epoch": 24.580402565804025, + "grad_norm": 0.3145372271537781, + "learning_rate": 3.77130857648099e-05, + "loss": 0.8257860565185546, + "step": 27800 + }, + { + "epoch": 24.668878566688786, + "grad_norm": 0.30716991424560547, + "learning_rate": 3.7668877099911587e-05, + "loss": 0.8240725708007812, + "step": 27900 + }, + { + "epoch": 24.757354567573547, + "grad_norm": 0.28368160128593445, + "learning_rate": 3.7624668435013264e-05, + "loss": 0.825384521484375, + "step": 28000 + }, + { + "epoch": 24.845830568458307, + "grad_norm": 0.2867664694786072, + "learning_rate": 3.758045977011495e-05, + "loss": 0.8270760345458984, + "step": 28100 + }, + { + "epoch": 24.934306569343065, + "grad_norm": 0.28817129135131836, + "learning_rate": 3.7536251105216624e-05, + "loss": 0.8286974334716797, + "step": 28200 + }, + { + "epoch": 25.02211900022119, + "grad_norm": 0.3106354773044586, + "learning_rate": 3.749248452696729e-05, + "loss": 0.82120849609375, + "step": 28300 + }, + { + "epoch": 25.11059500110595, + "grad_norm": 0.3304692506790161, + "learning_rate": 3.7448275862068965e-05, + "loss": 0.8016901397705078, + "step": 28400 + }, + { + "epoch": 25.19907100199071, + "grad_norm": 0.3065616488456726, + "learning_rate": 3.740406719717064e-05, + "loss": 0.8027448272705078, + "step": 28500 + }, + { + "epoch": 25.28754700287547, + "grad_norm": 0.3456852436065674, + "learning_rate": 3.735985853227233e-05, + "loss": 0.8046049499511718, + "step": 28600 + }, + { + "epoch": 25.37602300376023, + "grad_norm": 0.3011663556098938, + "learning_rate": 3.731564986737401e-05, + "loss": 0.8079199981689453, + "step": 28700 + }, + { + "epoch": 25.46449900464499, + "grad_norm": 0.3659413158893585, + "learning_rate": 3.7271441202475687e-05, + "loss": 0.8079922485351563, + "step": 28800 + }, + { + "epoch": 25.55297500552975, + "grad_norm": 0.3281838595867157, + "learning_rate": 3.7227232537577364e-05, + "loss": 0.8134046173095704, + "step": 28900 + }, + { + "epoch": 25.64145100641451, + "grad_norm": 0.3106602132320404, + "learning_rate": 3.718302387267905e-05, + "loss": 0.8104205322265625, + "step": 29000 + }, + { + "epoch": 25.72992700729927, + "grad_norm": 0.3320154845714569, + "learning_rate": 3.7138815207780725e-05, + "loss": 0.8142304992675782, + "step": 29100 + }, + { + "epoch": 25.81840300818403, + "grad_norm": 0.3355977535247803, + "learning_rate": 3.70946065428824e-05, + "loss": 0.8125243377685547, + "step": 29200 + }, + { + "epoch": 25.90687900906879, + "grad_norm": 0.3472290635108948, + "learning_rate": 3.7050397877984085e-05, + "loss": 0.8146660614013672, + "step": 29300 + }, + { + "epoch": 25.99535500995355, + "grad_norm": 0.31780678033828735, + "learning_rate": 3.700618921308577e-05, + "loss": 0.8169705200195313, + "step": 29400 + }, + { + "epoch": 26.083167440831673, + "grad_norm": 0.3046151101589203, + "learning_rate": 3.6961980548187446e-05, + "loss": 0.7894915008544922, + "step": 29500 + }, + { + "epoch": 26.171643441716434, + "grad_norm": 0.3560829162597656, + "learning_rate": 3.6917771883289123e-05, + "loss": 0.7867289733886719, + "step": 29600 + }, + { + "epoch": 26.260119442601194, + "grad_norm": 0.33036884665489197, + "learning_rate": 3.687356321839081e-05, + "loss": 0.7914912414550781, + "step": 29700 + }, + { + "epoch": 26.348595443485955, + "grad_norm": 0.3302215039730072, + "learning_rate": 3.6829354553492484e-05, + "loss": 0.7926998901367187, + "step": 29800 + }, + { + "epoch": 26.437071444370716, + "grad_norm": 0.33766239881515503, + "learning_rate": 3.678514588859416e-05, + "loss": 0.7958551788330078, + "step": 29900 + }, + { + "epoch": 26.525547445255473, + "grad_norm": 0.34900912642478943, + "learning_rate": 3.6740937223695845e-05, + "loss": 0.7958287811279297, + "step": 30000 + }, + { + "epoch": 26.614023446140234, + "grad_norm": 0.3290475010871887, + "learning_rate": 3.669672855879753e-05, + "loss": 0.7994923400878906, + "step": 30100 + }, + { + "epoch": 26.702499447024994, + "grad_norm": 0.3304896950721741, + "learning_rate": 3.6652519893899206e-05, + "loss": 0.8000531005859375, + "step": 30200 + }, + { + "epoch": 26.790975447909755, + "grad_norm": 0.32132837176322937, + "learning_rate": 3.660831122900088e-05, + "loss": 0.8006639862060547, + "step": 30300 + }, + { + "epoch": 26.879451448794516, + "grad_norm": 0.3341081142425537, + "learning_rate": 3.656410256410257e-05, + "loss": 0.8037942504882812, + "step": 30400 + }, + { + "epoch": 26.967927449679273, + "grad_norm": 0.3406025171279907, + "learning_rate": 3.6519893899204244e-05, + "loss": 0.8009793853759766, + "step": 30500 + }, + { + "epoch": 27.0557398805574, + "grad_norm": 0.3396868109703064, + "learning_rate": 3.647568523430592e-05, + "loss": 0.7846424865722657, + "step": 30600 + }, + { + "epoch": 27.144215881442157, + "grad_norm": 0.33319470286369324, + "learning_rate": 3.6431476569407605e-05, + "loss": 0.7724665832519532, + "step": 30700 + }, + { + "epoch": 27.232691882326918, + "grad_norm": 0.38071826100349426, + "learning_rate": 3.638726790450929e-05, + "loss": 0.7791647338867187, + "step": 30800 + }, + { + "epoch": 27.32116788321168, + "grad_norm": 0.3640372157096863, + "learning_rate": 3.6343059239610966e-05, + "loss": 0.778485107421875, + "step": 30900 + }, + { + "epoch": 27.40964388409644, + "grad_norm": 0.34701183438301086, + "learning_rate": 3.629885057471264e-05, + "loss": 0.7812682342529297, + "step": 31000 + }, + { + "epoch": 27.4981198849812, + "grad_norm": 0.34723395109176636, + "learning_rate": 3.625464190981433e-05, + "loss": 0.7816720581054688, + "step": 31100 + }, + { + "epoch": 27.586595885865957, + "grad_norm": 0.3967572748661041, + "learning_rate": 3.6210433244916004e-05, + "loss": 0.7825845336914062, + "step": 31200 + }, + { + "epoch": 27.675071886750718, + "grad_norm": 0.36156365275382996, + "learning_rate": 3.616622458001768e-05, + "loss": 0.7875003814697266, + "step": 31300 + }, + { + "epoch": 27.76354788763548, + "grad_norm": 0.37152451276779175, + "learning_rate": 3.6122015915119365e-05, + "loss": 0.7848563385009766, + "step": 31400 + }, + { + "epoch": 27.85202388852024, + "grad_norm": 0.3751819431781769, + "learning_rate": 3.607780725022105e-05, + "loss": 0.7901625061035156, + "step": 31500 + }, + { + "epoch": 27.940499889405, + "grad_norm": 0.32409200072288513, + "learning_rate": 3.6033598585322726e-05, + "loss": 0.7916508483886718, + "step": 31600 + }, + { + "epoch": 28.028312320283124, + "grad_norm": 0.36621779203414917, + "learning_rate": 3.59893899204244e-05, + "loss": 0.7814656066894531, + "step": 31700 + }, + { + "epoch": 28.116788321167885, + "grad_norm": 0.35782715678215027, + "learning_rate": 3.594518125552609e-05, + "loss": 0.7565266418457032, + "step": 31800 + }, + { + "epoch": 28.205264322052642, + "grad_norm": 0.34983065724372864, + "learning_rate": 3.5900972590627764e-05, + "loss": 0.7589649963378906, + "step": 31900 + }, + { + "epoch": 28.293740322937403, + "grad_norm": 0.36476004123687744, + "learning_rate": 3.585676392572945e-05, + "loss": 0.7618669891357421, + "step": 32000 + }, + { + "epoch": 28.382216323822163, + "grad_norm": 0.3663191795349121, + "learning_rate": 3.5812555260831125e-05, + "loss": 0.768099136352539, + "step": 32100 + }, + { + "epoch": 28.470692324706924, + "grad_norm": 0.3572807312011719, + "learning_rate": 3.576834659593281e-05, + "loss": 0.7697807312011719, + "step": 32200 + }, + { + "epoch": 28.559168325591685, + "grad_norm": 0.39800935983657837, + "learning_rate": 3.5724580017683465e-05, + "loss": 0.7714015960693359, + "step": 32300 + }, + { + "epoch": 28.647644326476442, + "grad_norm": 0.3792218863964081, + "learning_rate": 3.568037135278515e-05, + "loss": 0.7737385559082032, + "step": 32400 + }, + { + "epoch": 28.736120327361203, + "grad_norm": 0.4109075665473938, + "learning_rate": 3.5636162687886826e-05, + "loss": 0.7772123718261719, + "step": 32500 + }, + { + "epoch": 28.824596328245963, + "grad_norm": 0.40446004271507263, + "learning_rate": 3.55919540229885e-05, + "loss": 0.7722319030761718, + "step": 32600 + }, + { + "epoch": 28.913072329130724, + "grad_norm": 0.39553946256637573, + "learning_rate": 3.554774535809019e-05, + "loss": 0.7767266082763672, + "step": 32700 + }, + { + "epoch": 29.000884760008848, + "grad_norm": 0.3675474226474762, + "learning_rate": 3.550397877984085e-05, + "loss": 0.7800326538085938, + "step": 32800 + }, + { + "epoch": 29.08936076089361, + "grad_norm": 0.37354156374931335, + "learning_rate": 3.5459770114942534e-05, + "loss": 0.7407066345214843, + "step": 32900 + }, + { + "epoch": 29.17783676177837, + "grad_norm": 0.3970542550086975, + "learning_rate": 3.541556145004421e-05, + "loss": 0.7467523956298828, + "step": 33000 + }, + { + "epoch": 29.266312762663127, + "grad_norm": 0.3625730872154236, + "learning_rate": 3.537135278514589e-05, + "loss": 0.7477723693847657, + "step": 33100 + }, + { + "epoch": 29.354788763547887, + "grad_norm": 0.37132611870765686, + "learning_rate": 3.532714412024757e-05, + "loss": 0.7502822875976562, + "step": 33200 + }, + { + "epoch": 29.443264764432648, + "grad_norm": 0.3668833374977112, + "learning_rate": 3.528293545534925e-05, + "loss": 0.7570280456542968, + "step": 33300 + }, + { + "epoch": 29.53174076531741, + "grad_norm": 0.404186874628067, + "learning_rate": 3.523872679045093e-05, + "loss": 0.7576876831054687, + "step": 33400 + }, + { + "epoch": 29.62021676620217, + "grad_norm": 0.407461017370224, + "learning_rate": 3.519451812555261e-05, + "loss": 0.7606333923339844, + "step": 33500 + }, + { + "epoch": 29.708692767086927, + "grad_norm": 0.4091641902923584, + "learning_rate": 3.5150309460654294e-05, + "loss": 0.7598370361328125, + "step": 33600 + }, + { + "epoch": 29.797168767971687, + "grad_norm": 0.36642369627952576, + "learning_rate": 3.510610079575597e-05, + "loss": 0.7617308807373047, + "step": 33700 + }, + { + "epoch": 29.885644768856448, + "grad_norm": 0.3767990171909332, + "learning_rate": 3.506189213085765e-05, + "loss": 0.760002670288086, + "step": 33800 + }, + { + "epoch": 29.97412076974121, + "grad_norm": 0.3992450535297394, + "learning_rate": 3.5017683465959325e-05, + "loss": 0.7659886932373047, + "step": 33900 + }, + { + "epoch": 30.061933200619332, + "grad_norm": 0.38657036423683167, + "learning_rate": 3.497347480106101e-05, + "loss": 0.7397030639648438, + "step": 34000 + }, + { + "epoch": 30.150409201504093, + "grad_norm": 0.40928229689598083, + "learning_rate": 3.492926613616269e-05, + "loss": 0.7280159759521484, + "step": 34100 + }, + { + "epoch": 30.23888520238885, + "grad_norm": 0.41609957814216614, + "learning_rate": 3.488505747126437e-05, + "loss": 0.7327291107177735, + "step": 34200 + }, + { + "epoch": 30.32736120327361, + "grad_norm": 0.3990429639816284, + "learning_rate": 3.4840848806366047e-05, + "loss": 0.7359205627441406, + "step": 34300 + }, + { + "epoch": 30.41583720415837, + "grad_norm": 0.40403324365615845, + "learning_rate": 3.479664014146773e-05, + "loss": 0.73650390625, + "step": 34400 + }, + { + "epoch": 30.504313205043132, + "grad_norm": 0.42696642875671387, + "learning_rate": 3.475243147656941e-05, + "loss": 0.7416681671142578, + "step": 34500 + }, + { + "epoch": 30.592789205927893, + "grad_norm": 0.3891199231147766, + "learning_rate": 3.4708222811671085e-05, + "loss": 0.742286605834961, + "step": 34600 + }, + { + "epoch": 30.68126520681265, + "grad_norm": 0.3660706877708435, + "learning_rate": 3.466401414677277e-05, + "loss": 0.7444020080566406, + "step": 34700 + }, + { + "epoch": 30.76974120769741, + "grad_norm": 0.43280747532844543, + "learning_rate": 3.461980548187445e-05, + "loss": 0.7461125183105469, + "step": 34800 + }, + { + "epoch": 30.85821720858217, + "grad_norm": 0.4279727041721344, + "learning_rate": 3.457559681697613e-05, + "loss": 0.7497645568847656, + "step": 34900 + }, + { + "epoch": 30.946693209466932, + "grad_norm": 0.4162921905517578, + "learning_rate": 3.4531388152077806e-05, + "loss": 0.7478341674804687, + "step": 35000 + }, + { + "epoch": 31.034505640345056, + "grad_norm": 0.4011857211589813, + "learning_rate": 3.448762157382847e-05, + "loss": 0.7373168182373047, + "step": 35100 + }, + { + "epoch": 31.122981641229817, + "grad_norm": 0.42476192116737366, + "learning_rate": 3.444341290893015e-05, + "loss": 0.714128646850586, + "step": 35200 + }, + { + "epoch": 31.211457642114578, + "grad_norm": 0.4272063672542572, + "learning_rate": 3.439920424403183e-05, + "loss": 0.717328872680664, + "step": 35300 + }, + { + "epoch": 31.299933642999335, + "grad_norm": 0.39419060945510864, + "learning_rate": 3.4354995579133514e-05, + "loss": 0.7182811737060547, + "step": 35400 + }, + { + "epoch": 31.388409643884096, + "grad_norm": 0.4092519283294678, + "learning_rate": 3.431078691423519e-05, + "loss": 0.7223808288574218, + "step": 35500 + }, + { + "epoch": 31.476885644768856, + "grad_norm": 0.45683449506759644, + "learning_rate": 3.4266578249336875e-05, + "loss": 0.7236460876464844, + "step": 35600 + }, + { + "epoch": 31.565361645653617, + "grad_norm": 0.4914647936820984, + "learning_rate": 3.422236958443855e-05, + "loss": 0.728529052734375, + "step": 35700 + }, + { + "epoch": 31.653837646538378, + "grad_norm": 0.439372718334198, + "learning_rate": 3.417816091954023e-05, + "loss": 0.7269135284423828, + "step": 35800 + }, + { + "epoch": 31.742313647423135, + "grad_norm": 0.488553911447525, + "learning_rate": 3.413395225464191e-05, + "loss": 0.7319352722167969, + "step": 35900 + }, + { + "epoch": 31.830789648307896, + "grad_norm": 0.43236035108566284, + "learning_rate": 3.408974358974359e-05, + "loss": 0.7336878204345703, + "step": 36000 + }, + { + "epoch": 31.919265649192656, + "grad_norm": 0.42669814825057983, + "learning_rate": 3.4045534924845274e-05, + "loss": 0.7357192993164062, + "step": 36100 + }, + { + "epoch": 32.007078080070784, + "grad_norm": 0.40464460849761963, + "learning_rate": 3.400132625994695e-05, + "loss": 0.7324215698242188, + "step": 36200 + }, + { + "epoch": 32.09555408095554, + "grad_norm": 0.4362545311450958, + "learning_rate": 3.3957117595048635e-05, + "loss": 0.6976793670654297, + "step": 36300 + }, + { + "epoch": 32.1840300818403, + "grad_norm": 0.46484723687171936, + "learning_rate": 3.391290893015031e-05, + "loss": 0.6972021484375, + "step": 36400 + }, + { + "epoch": 32.27250608272506, + "grad_norm": 0.43313083052635193, + "learning_rate": 3.386870026525199e-05, + "loss": 0.7049392700195313, + "step": 36500 + }, + { + "epoch": 32.36098208360982, + "grad_norm": 0.437752366065979, + "learning_rate": 3.3824491600353666e-05, + "loss": 0.7091526794433594, + "step": 36600 + }, + { + "epoch": 32.44945808449458, + "grad_norm": 0.44550085067749023, + "learning_rate": 3.378028293545535e-05, + "loss": 0.7121316528320313, + "step": 36700 + }, + { + "epoch": 32.53793408537934, + "grad_norm": 0.46052590012550354, + "learning_rate": 3.3736074270557034e-05, + "loss": 0.7150274658203125, + "step": 36800 + }, + { + "epoch": 32.6264100862641, + "grad_norm": 0.4344913065433502, + "learning_rate": 3.369186560565871e-05, + "loss": 0.7130059814453125, + "step": 36900 + }, + { + "epoch": 32.71488608714886, + "grad_norm": 0.45924630761146545, + "learning_rate": 3.364765694076039e-05, + "loss": 0.7156332397460937, + "step": 37000 + }, + { + "epoch": 32.80336208803362, + "grad_norm": 0.41177231073379517, + "learning_rate": 3.360344827586207e-05, + "loss": 0.7184346008300782, + "step": 37100 + }, + { + "epoch": 32.891838088918384, + "grad_norm": 0.44688835740089417, + "learning_rate": 3.355923961096375e-05, + "loss": 0.7201016235351563, + "step": 37200 + }, + { + "epoch": 32.980314089803144, + "grad_norm": 0.4971197545528412, + "learning_rate": 3.3515030946065426e-05, + "loss": 0.7191078186035156, + "step": 37300 + }, + { + "epoch": 33.06812652068127, + "grad_norm": 0.47201091051101685, + "learning_rate": 3.347126436781609e-05, + "loss": 0.6914530944824219, + "step": 37400 + }, + { + "epoch": 33.15660252156602, + "grad_norm": 0.4473711848258972, + "learning_rate": 3.342705570291777e-05, + "loss": 0.6855306243896484, + "step": 37500 + }, + { + "epoch": 33.24507852245078, + "grad_norm": 0.4745553135871887, + "learning_rate": 3.338284703801946e-05, + "loss": 0.6888325500488282, + "step": 37600 + }, + { + "epoch": 33.33355452333554, + "grad_norm": 0.45796144008636475, + "learning_rate": 3.3338638373121134e-05, + "loss": 0.6924916076660156, + "step": 37700 + }, + { + "epoch": 33.422030524220304, + "grad_norm": 0.47769099473953247, + "learning_rate": 3.329442970822281e-05, + "loss": 0.6937997436523438, + "step": 37800 + }, + { + "epoch": 33.510506525105065, + "grad_norm": 0.4637518525123596, + "learning_rate": 3.3250221043324495e-05, + "loss": 0.6975637817382813, + "step": 37900 + }, + { + "epoch": 33.598982525989825, + "grad_norm": 0.47370946407318115, + "learning_rate": 3.320601237842617e-05, + "loss": 0.6985407257080078, + "step": 38000 + }, + { + "epoch": 33.687458526874586, + "grad_norm": 0.467692106962204, + "learning_rate": 3.316180371352785e-05, + "loss": 0.7032517242431641, + "step": 38100 + }, + { + "epoch": 33.77593452775935, + "grad_norm": 0.4691486060619354, + "learning_rate": 3.311759504862953e-05, + "loss": 0.7019402313232422, + "step": 38200 + }, + { + "epoch": 33.86441052864411, + "grad_norm": 0.465666264295578, + "learning_rate": 3.307338638373122e-05, + "loss": 0.7065095520019531, + "step": 38300 + }, + { + "epoch": 33.95288652952887, + "grad_norm": 0.4870339632034302, + "learning_rate": 3.3029177718832894e-05, + "loss": 0.7060601043701172, + "step": 38400 + }, + { + "epoch": 34.04069896040699, + "grad_norm": 0.46102386713027954, + "learning_rate": 3.298496905393457e-05, + "loss": 0.6895645141601563, + "step": 38500 + }, + { + "epoch": 34.12917496129175, + "grad_norm": 0.4717739522457123, + "learning_rate": 3.2940760389036255e-05, + "loss": 0.6683721160888672, + "step": 38600 + }, + { + "epoch": 34.217650962176506, + "grad_norm": 0.47995516657829285, + "learning_rate": 3.289655172413793e-05, + "loss": 0.67727294921875, + "step": 38700 + }, + { + "epoch": 34.30612696306127, + "grad_norm": 0.4676993191242218, + "learning_rate": 3.2852343059239616e-05, + "loss": 0.6742596435546875, + "step": 38800 + }, + { + "epoch": 34.39460296394603, + "grad_norm": 0.4986591935157776, + "learning_rate": 3.280813439434129e-05, + "loss": 0.6811554718017578, + "step": 38900 + }, + { + "epoch": 34.48307896483079, + "grad_norm": 0.49108394980430603, + "learning_rate": 3.2763925729442977e-05, + "loss": 0.6826177215576172, + "step": 39000 + }, + { + "epoch": 34.57155496571555, + "grad_norm": 0.46544989943504333, + "learning_rate": 3.2719717064544654e-05, + "loss": 0.6843925476074219, + "step": 39100 + }, + { + "epoch": 34.66003096660031, + "grad_norm": 0.4714086055755615, + "learning_rate": 3.267550839964633e-05, + "loss": 0.6843089294433594, + "step": 39200 + }, + { + "epoch": 34.74850696748507, + "grad_norm": 0.4726520776748657, + "learning_rate": 3.263129973474801e-05, + "loss": 0.687828140258789, + "step": 39300 + }, + { + "epoch": 34.83698296836983, + "grad_norm": 0.5056101083755493, + "learning_rate": 3.258709106984969e-05, + "loss": 0.6943804168701172, + "step": 39400 + }, + { + "epoch": 34.92545896925459, + "grad_norm": 0.5143911242485046, + "learning_rate": 3.2542882404951375e-05, + "loss": 0.6947840118408203, + "step": 39500 + }, + { + "epoch": 35.013271400132716, + "grad_norm": 0.4712352752685547, + "learning_rate": 3.249867374005305e-05, + "loss": 0.6877326965332031, + "step": 39600 + }, + { + "epoch": 35.10174740101748, + "grad_norm": 0.5000380873680115, + "learning_rate": 3.2454465075154736e-05, + "loss": 0.6556487274169922, + "step": 39700 + }, + { + "epoch": 35.19022340190224, + "grad_norm": 0.5022478699684143, + "learning_rate": 3.2410256410256413e-05, + "loss": 0.6607290649414063, + "step": 39800 + }, + { + "epoch": 35.27869940278699, + "grad_norm": 0.511082112789154, + "learning_rate": 3.236604774535809e-05, + "loss": 0.6585157775878906, + "step": 39900 + }, + { + "epoch": 35.36717540367175, + "grad_norm": 0.45338326692581177, + "learning_rate": 3.232183908045977e-05, + "loss": 0.6670406341552735, + "step": 40000 + }, + { + "epoch": 35.45565140455651, + "grad_norm": 0.47589078545570374, + "learning_rate": 3.227763041556145e-05, + "loss": 0.6654150390625, + "step": 40100 + }, + { + "epoch": 35.54412740544127, + "grad_norm": 0.5111287236213684, + "learning_rate": 3.2233421750663135e-05, + "loss": 0.6706926727294922, + "step": 40200 + }, + { + "epoch": 35.632603406326034, + "grad_norm": 0.48615771532058716, + "learning_rate": 3.218921308576481e-05, + "loss": 0.6724550628662109, + "step": 40300 + }, + { + "epoch": 35.721079407210794, + "grad_norm": 0.5141739845275879, + "learning_rate": 3.214500442086649e-05, + "loss": 0.674487075805664, + "step": 40400 + }, + { + "epoch": 35.809555408095555, + "grad_norm": 0.512373149394989, + "learning_rate": 3.210079575596817e-05, + "loss": 0.6809010314941406, + "step": 40500 + }, + { + "epoch": 35.898031408980316, + "grad_norm": 0.5156219005584717, + "learning_rate": 3.205658709106985e-05, + "loss": 0.6783308410644531, + "step": 40600 + }, + { + "epoch": 35.98650740986508, + "grad_norm": 0.5266398191452026, + "learning_rate": 3.201237842617153e-05, + "loss": 0.6796981811523437, + "step": 40700 + }, + { + "epoch": 36.0743198407432, + "grad_norm": 0.5198646783828735, + "learning_rate": 3.196861184792219e-05, + "loss": 0.648563232421875, + "step": 40800 + }, + { + "epoch": 36.16279584162796, + "grad_norm": 0.4699224829673767, + "learning_rate": 3.1924403183023874e-05, + "loss": 0.6464600372314453, + "step": 40900 + }, + { + "epoch": 36.25127184251272, + "grad_norm": 0.5014195442199707, + "learning_rate": 3.188019451812556e-05, + "loss": 0.6471477508544922, + "step": 41000 + }, + { + "epoch": 36.339747843397475, + "grad_norm": 0.5231509804725647, + "learning_rate": 3.1835985853227235e-05, + "loss": 0.6519639587402344, + "step": 41100 + }, + { + "epoch": 36.428223844282236, + "grad_norm": 0.4843427538871765, + "learning_rate": 3.179177718832891e-05, + "loss": 0.6523241424560546, + "step": 41200 + }, + { + "epoch": 36.516699845167, + "grad_norm": 0.4956904351711273, + "learning_rate": 3.1747568523430596e-05, + "loss": 0.6547152709960937, + "step": 41300 + }, + { + "epoch": 36.60517584605176, + "grad_norm": 0.5103031396865845, + "learning_rate": 3.170335985853227e-05, + "loss": 0.6602716827392578, + "step": 41400 + }, + { + "epoch": 36.69365184693652, + "grad_norm": 0.5028578042984009, + "learning_rate": 3.165915119363395e-05, + "loss": 0.6617116546630859, + "step": 41500 + }, + { + "epoch": 36.78212784782128, + "grad_norm": 0.4997723698616028, + "learning_rate": 3.1614942528735634e-05, + "loss": 0.6632434844970703, + "step": 41600 + }, + { + "epoch": 36.87060384870604, + "grad_norm": 0.5246814489364624, + "learning_rate": 3.157073386383732e-05, + "loss": 0.6632743835449219, + "step": 41700 + }, + { + "epoch": 36.9590798495908, + "grad_norm": 0.5308569073677063, + "learning_rate": 3.1526525198938995e-05, + "loss": 0.6639631652832031, + "step": 41800 + }, + { + "epoch": 37.046892280468924, + "grad_norm": 0.49218234419822693, + "learning_rate": 3.148231653404067e-05, + "loss": 0.6452173614501953, + "step": 41900 + }, + { + "epoch": 37.135368281353685, + "grad_norm": 0.4680822491645813, + "learning_rate": 3.143810786914235e-05, + "loss": 0.6319191360473633, + "step": 42000 + }, + { + "epoch": 37.223844282238446, + "grad_norm": 0.4810407757759094, + "learning_rate": 3.139389920424403e-05, + "loss": 0.6338667297363281, + "step": 42100 + }, + { + "epoch": 37.3123202831232, + "grad_norm": 0.545889139175415, + "learning_rate": 3.134969053934571e-05, + "loss": 0.6395709228515625, + "step": 42200 + }, + { + "epoch": 37.40079628400796, + "grad_norm": 0.5600217580795288, + "learning_rate": 3.1305481874447394e-05, + "loss": 0.6406965637207032, + "step": 42300 + }, + { + "epoch": 37.48927228489272, + "grad_norm": 0.5517903566360474, + "learning_rate": 3.126127320954908e-05, + "loss": 0.6428462982177734, + "step": 42400 + }, + { + "epoch": 37.57774828577748, + "grad_norm": 0.49925389885902405, + "learning_rate": 3.1217064544650755e-05, + "loss": 0.6470170593261719, + "step": 42500 + }, + { + "epoch": 37.66622428666224, + "grad_norm": 0.4698370397090912, + "learning_rate": 3.117285587975243e-05, + "loss": 0.6477708435058593, + "step": 42600 + }, + { + "epoch": 37.754700287547, + "grad_norm": 0.5349763035774231, + "learning_rate": 3.112864721485411e-05, + "loss": 0.6515216827392578, + "step": 42700 + }, + { + "epoch": 37.84317628843176, + "grad_norm": 0.5066236853599548, + "learning_rate": 3.108443854995579e-05, + "loss": 0.6522242736816406, + "step": 42800 + }, + { + "epoch": 37.931652289316524, + "grad_norm": 0.5211920142173767, + "learning_rate": 3.104022988505747e-05, + "loss": 0.6515906524658203, + "step": 42900 + }, + { + "epoch": 38.01946472019465, + "grad_norm": 0.5003405213356018, + "learning_rate": 3.099646330680814e-05, + "loss": 0.6448411560058593, + "step": 43000 + }, + { + "epoch": 38.10794072107941, + "grad_norm": 0.5215827226638794, + "learning_rate": 3.095225464190982e-05, + "loss": 0.619310417175293, + "step": 43100 + }, + { + "epoch": 38.19641672196417, + "grad_norm": 0.4768511950969696, + "learning_rate": 3.0908045977011494e-05, + "loss": 0.6210311126708984, + "step": 43200 + }, + { + "epoch": 38.28489272284893, + "grad_norm": 0.5353608727455139, + "learning_rate": 3.086383731211318e-05, + "loss": 0.6246475601196289, + "step": 43300 + }, + { + "epoch": 38.373368723733684, + "grad_norm": 0.5182030200958252, + "learning_rate": 3.0819628647214855e-05, + "loss": 0.6273392486572266, + "step": 43400 + }, + { + "epoch": 38.461844724618445, + "grad_norm": 0.500842273235321, + "learning_rate": 3.077541998231653e-05, + "loss": 0.6327916717529297, + "step": 43500 + }, + { + "epoch": 38.550320725503205, + "grad_norm": 0.5168542861938477, + "learning_rate": 3.0731211317418216e-05, + "loss": 0.6323520278930664, + "step": 43600 + }, + { + "epoch": 38.638796726387966, + "grad_norm": 0.5403733253479004, + "learning_rate": 3.06870026525199e-05, + "loss": 0.6338058090209961, + "step": 43700 + }, + { + "epoch": 38.72727272727273, + "grad_norm": 0.5119574666023254, + "learning_rate": 3.064279398762158e-05, + "loss": 0.6391129302978515, + "step": 43800 + }, + { + "epoch": 38.81574872815749, + "grad_norm": 0.5214455127716064, + "learning_rate": 3.0598585322723254e-05, + "loss": 0.6368292999267579, + "step": 43900 + }, + { + "epoch": 38.90422472904225, + "grad_norm": 0.5679435133934021, + "learning_rate": 3.055437665782494e-05, + "loss": 0.6414280700683593, + "step": 44000 + }, + { + "epoch": 38.99270072992701, + "grad_norm": 0.5442212820053101, + "learning_rate": 3.0510167992926615e-05, + "loss": 0.6446417999267579, + "step": 44100 + }, + { + "epoch": 39.08051316080513, + "grad_norm": 0.46873417496681213, + "learning_rate": 3.0465959328028292e-05, + "loss": 0.6127575302124023, + "step": 44200 + }, + { + "epoch": 39.16898916168989, + "grad_norm": 0.5402541756629944, + "learning_rate": 3.042175066312998e-05, + "loss": 0.6059606552124024, + "step": 44300 + }, + { + "epoch": 39.257465162574654, + "grad_norm": 0.5081923007965088, + "learning_rate": 3.0377541998231656e-05, + "loss": 0.6121833038330078, + "step": 44400 + }, + { + "epoch": 39.345941163459415, + "grad_norm": 0.5688677430152893, + "learning_rate": 3.0333333333333337e-05, + "loss": 0.6163175964355468, + "step": 44500 + }, + { + "epoch": 39.43441716434417, + "grad_norm": 0.5273306965827942, + "learning_rate": 3.0289124668435014e-05, + "loss": 0.6198236465454101, + "step": 44600 + }, + { + "epoch": 39.52289316522893, + "grad_norm": 0.5107190608978271, + "learning_rate": 3.0244916003536694e-05, + "loss": 0.6242243576049805, + "step": 44700 + }, + { + "epoch": 39.61136916611369, + "grad_norm": 0.5110412240028381, + "learning_rate": 3.0200707338638375e-05, + "loss": 0.6227451705932617, + "step": 44800 + }, + { + "epoch": 39.69984516699845, + "grad_norm": 0.5370123982429504, + "learning_rate": 3.015649867374005e-05, + "loss": 0.6257634735107422, + "step": 44900 + }, + { + "epoch": 39.78832116788321, + "grad_norm": 0.5311342477798462, + "learning_rate": 3.0112290008841735e-05, + "loss": 0.6246538925170898, + "step": 45000 + }, + { + "epoch": 39.87679716876797, + "grad_norm": 0.5247089862823486, + "learning_rate": 3.0068081343943416e-05, + "loss": 0.6278446578979492, + "step": 45100 + }, + { + "epoch": 39.96527316965273, + "grad_norm": 0.5407604575157166, + "learning_rate": 3.0023872679045096e-05, + "loss": 0.6319368743896484, + "step": 45200 + }, + { + "epoch": 40.053085600530856, + "grad_norm": 0.49125176668167114, + "learning_rate": 2.9980106100795756e-05, + "loss": 0.608686294555664, + "step": 45300 + }, + { + "epoch": 40.14156160141562, + "grad_norm": 0.5193077325820923, + "learning_rate": 2.9935897435897437e-05, + "loss": 0.5979312515258789, + "step": 45400 + }, + { + "epoch": 40.23003760230038, + "grad_norm": 0.5521110892295837, + "learning_rate": 2.9891688770999117e-05, + "loss": 0.6026276016235351, + "step": 45500 + }, + { + "epoch": 40.31851360318514, + "grad_norm": 0.5131237506866455, + "learning_rate": 2.9847480106100794e-05, + "loss": 0.6056368637084961, + "step": 45600 + }, + { + "epoch": 40.4069896040699, + "grad_norm": 0.5547003149986267, + "learning_rate": 2.9803271441202478e-05, + "loss": 0.6073746490478515, + "step": 45700 + }, + { + "epoch": 40.49546560495465, + "grad_norm": 0.5059778690338135, + "learning_rate": 2.975906277630416e-05, + "loss": 0.6093035888671875, + "step": 45800 + }, + { + "epoch": 40.583941605839414, + "grad_norm": 0.5218088030815125, + "learning_rate": 2.971485411140584e-05, + "loss": 0.6098678970336914, + "step": 45900 + }, + { + "epoch": 40.672417606724174, + "grad_norm": 0.5111589431762695, + "learning_rate": 2.9670645446507516e-05, + "loss": 0.6144123458862305, + "step": 46000 + }, + { + "epoch": 40.760893607608935, + "grad_norm": 0.5875983238220215, + "learning_rate": 2.9626436781609196e-05, + "loss": 0.6149031448364258, + "step": 46100 + }, + { + "epoch": 40.849369608493696, + "grad_norm": 0.6077953577041626, + "learning_rate": 2.9582228116710873e-05, + "loss": 0.6200779724121094, + "step": 46200 + }, + { + "epoch": 40.937845609378456, + "grad_norm": 0.5511230230331421, + "learning_rate": 2.9538019451812554e-05, + "loss": 0.6175289916992187, + "step": 46300 + }, + { + "epoch": 41.02565804025658, + "grad_norm": 0.5434758067131042, + "learning_rate": 2.9493810786914238e-05, + "loss": 0.6117794418334961, + "step": 46400 + }, + { + "epoch": 41.11413404114134, + "grad_norm": 0.5463586449623108, + "learning_rate": 2.9449602122015918e-05, + "loss": 0.5865156936645508, + "step": 46500 + }, + { + "epoch": 41.2026100420261, + "grad_norm": 0.516645610332489, + "learning_rate": 2.94053934571176e-05, + "loss": 0.5934408950805664, + "step": 46600 + }, + { + "epoch": 41.29108604291086, + "grad_norm": 0.5041747093200684, + "learning_rate": 2.9361184792219276e-05, + "loss": 0.5907432556152343, + "step": 46700 + }, + { + "epoch": 41.37956204379562, + "grad_norm": 0.5490337014198303, + "learning_rate": 2.9316976127320956e-05, + "loss": 0.597823486328125, + "step": 46800 + }, + { + "epoch": 41.468038044680384, + "grad_norm": 0.5256726741790771, + "learning_rate": 2.9272767462422633e-05, + "loss": 0.5979599380493164, + "step": 46900 + }, + { + "epoch": 41.55651404556514, + "grad_norm": 0.49856510758399963, + "learning_rate": 2.9228558797524314e-05, + "loss": 0.6000013732910157, + "step": 47000 + }, + { + "epoch": 41.6449900464499, + "grad_norm": 0.540030837059021, + "learning_rate": 2.9184350132625998e-05, + "loss": 0.6044590759277344, + "step": 47100 + }, + { + "epoch": 41.73346604733466, + "grad_norm": 0.5599401593208313, + "learning_rate": 2.9140141467727678e-05, + "loss": 0.6050262451171875, + "step": 47200 + }, + { + "epoch": 41.82194204821942, + "grad_norm": 0.5251536965370178, + "learning_rate": 2.9095932802829355e-05, + "loss": 0.6084031677246093, + "step": 47300 + }, + { + "epoch": 41.91041804910418, + "grad_norm": 0.6002141237258911, + "learning_rate": 2.9051724137931036e-05, + "loss": 0.6051164627075195, + "step": 47400 + }, + { + "epoch": 41.99889404998894, + "grad_norm": 0.5603448748588562, + "learning_rate": 2.9007515473032716e-05, + "loss": 0.6085728073120117, + "step": 47500 + }, + { + "epoch": 42.086706480867065, + "grad_norm": 0.5491044521331787, + "learning_rate": 2.8963748894783376e-05, + "loss": 0.576365966796875, + "step": 47600 + }, + { + "epoch": 42.175182481751825, + "grad_norm": 0.5698864459991455, + "learning_rate": 2.8919540229885063e-05, + "loss": 0.5807184219360352, + "step": 47700 + }, + { + "epoch": 42.263658482636586, + "grad_norm": 0.574418306350708, + "learning_rate": 2.887533156498674e-05, + "loss": 0.5844138717651367, + "step": 47800 + }, + { + "epoch": 42.35213448352135, + "grad_norm": 0.5167635083198547, + "learning_rate": 2.883112290008842e-05, + "loss": 0.5845949935913086, + "step": 47900 + }, + { + "epoch": 42.44061048440611, + "grad_norm": 0.5338764786720276, + "learning_rate": 2.8786914235190098e-05, + "loss": 0.5889351272583008, + "step": 48000 + }, + { + "epoch": 42.52908648529087, + "grad_norm": 0.5340341329574585, + "learning_rate": 2.8742705570291778e-05, + "loss": 0.5909807205200195, + "step": 48100 + }, + { + "epoch": 42.61756248617562, + "grad_norm": 0.5493650436401367, + "learning_rate": 2.869849690539346e-05, + "loss": 0.5914651107788086, + "step": 48200 + }, + { + "epoch": 42.70603848706038, + "grad_norm": 0.6116383075714111, + "learning_rate": 2.8654288240495136e-05, + "loss": 0.592667350769043, + "step": 48300 + }, + { + "epoch": 42.79451448794514, + "grad_norm": 0.5631881356239319, + "learning_rate": 2.861007957559682e-05, + "loss": 0.5997231674194335, + "step": 48400 + }, + { + "epoch": 42.882990488829904, + "grad_norm": 0.5806667804718018, + "learning_rate": 2.85658709106985e-05, + "loss": 0.5957838439941406, + "step": 48500 + }, + { + "epoch": 42.971466489714665, + "grad_norm": 0.5075005888938904, + "learning_rate": 2.852166224580018e-05, + "loss": 0.5975283432006836, + "step": 48600 + }, + { + "epoch": 43.05927892059279, + "grad_norm": 0.5606797337532043, + "learning_rate": 2.8477453580901857e-05, + "loss": 0.5800529861450195, + "step": 48700 + }, + { + "epoch": 43.14775492147755, + "grad_norm": 0.5353171229362488, + "learning_rate": 2.8433244916003538e-05, + "loss": 0.5706613540649415, + "step": 48800 + }, + { + "epoch": 43.23623092236231, + "grad_norm": 0.5479321479797363, + "learning_rate": 2.8389036251105215e-05, + "loss": 0.5755366516113282, + "step": 48900 + }, + { + "epoch": 43.32470692324707, + "grad_norm": 0.5302407741546631, + "learning_rate": 2.8344827586206895e-05, + "loss": 0.5780391311645507, + "step": 49000 + }, + { + "epoch": 43.41318292413183, + "grad_norm": 0.5579783320426941, + "learning_rate": 2.830061892130858e-05, + "loss": 0.5774256896972656, + "step": 49100 + }, + { + "epoch": 43.50165892501659, + "grad_norm": 0.5295524597167969, + "learning_rate": 2.825641025641026e-05, + "loss": 0.5812548828125, + "step": 49200 + }, + { + "epoch": 43.59013492590135, + "grad_norm": 0.492058664560318, + "learning_rate": 2.821220159151194e-05, + "loss": 0.5796434783935547, + "step": 49300 + }, + { + "epoch": 43.67861092678611, + "grad_norm": 0.48961371183395386, + "learning_rate": 2.8167992926613617e-05, + "loss": 0.5851696014404297, + "step": 49400 + }, + { + "epoch": 43.76708692767087, + "grad_norm": 0.5714001059532166, + "learning_rate": 2.8123784261715298e-05, + "loss": 0.5890889358520508, + "step": 49500 + }, + { + "epoch": 43.85556292855563, + "grad_norm": 0.537390410900116, + "learning_rate": 2.8079575596816975e-05, + "loss": 0.5881150054931641, + "step": 49600 + }, + { + "epoch": 43.94403892944039, + "grad_norm": 0.5263146758079529, + "learning_rate": 2.8035366931918655e-05, + "loss": 0.5868202209472656, + "step": 49700 + }, + { + "epoch": 44.03185136031851, + "grad_norm": 0.5009394288063049, + "learning_rate": 2.7991600353669322e-05, + "loss": 0.578513412475586, + "step": 49800 + }, + { + "epoch": 44.12032736120327, + "grad_norm": 0.5233928561210632, + "learning_rate": 2.7947391688771002e-05, + "loss": 0.5612442016601562, + "step": 49900 + }, + { + "epoch": 44.208803362088034, + "grad_norm": 0.5212284922599792, + "learning_rate": 2.7903183023872683e-05, + "loss": 0.5634622955322266, + "step": 50000 + }, + { + "epoch": 44.297279362972795, + "grad_norm": 0.5920892357826233, + "learning_rate": 2.785897435897436e-05, + "loss": 0.5646255111694336, + "step": 50100 + }, + { + "epoch": 44.385755363857555, + "grad_norm": 0.5463851690292358, + "learning_rate": 2.781476569407604e-05, + "loss": 0.5711798477172851, + "step": 50200 + }, + { + "epoch": 44.474231364742316, + "grad_norm": 0.513917863368988, + "learning_rate": 2.7770557029177717e-05, + "loss": 0.5757728576660156, + "step": 50300 + }, + { + "epoch": 44.56270736562708, + "grad_norm": 0.5791277289390564, + "learning_rate": 2.7726348364279398e-05, + "loss": 0.5719475173950195, + "step": 50400 + }, + { + "epoch": 44.65118336651183, + "grad_norm": 0.5394783616065979, + "learning_rate": 2.768213969938108e-05, + "loss": 0.5751088714599609, + "step": 50500 + }, + { + "epoch": 44.73965936739659, + "grad_norm": 0.5699083805084229, + "learning_rate": 2.7637931034482762e-05, + "loss": 0.5771770095825195, + "step": 50600 + }, + { + "epoch": 44.82813536828135, + "grad_norm": 0.5610557794570923, + "learning_rate": 2.759372236958444e-05, + "loss": 0.5790963745117188, + "step": 50700 + }, + { + "epoch": 44.91661136916611, + "grad_norm": 0.5751321911811829, + "learning_rate": 2.754951370468612e-05, + "loss": 0.5781265258789062, + "step": 50800 + }, + { + "epoch": 45.004423800044236, + "grad_norm": 0.4831089377403259, + "learning_rate": 2.75053050397878e-05, + "loss": 0.5815114593505859, + "step": 50900 + }, + { + "epoch": 45.092899800929, + "grad_norm": 0.5138679146766663, + "learning_rate": 2.7461096374889477e-05, + "loss": 0.5530588912963867, + "step": 51000 + }, + { + "epoch": 45.18137580181376, + "grad_norm": 0.5327210426330566, + "learning_rate": 2.7416887709991158e-05, + "loss": 0.5549150085449219, + "step": 51100 + }, + { + "epoch": 45.26985180269852, + "grad_norm": 0.5089725255966187, + "learning_rate": 2.737267904509284e-05, + "loss": 0.5587585830688476, + "step": 51200 + }, + { + "epoch": 45.35832780358328, + "grad_norm": 0.5307016372680664, + "learning_rate": 2.7328470380194522e-05, + "loss": 0.5582825851440429, + "step": 51300 + }, + { + "epoch": 45.44680380446804, + "grad_norm": 0.6189883351325989, + "learning_rate": 2.72842617152962e-05, + "loss": 0.561285514831543, + "step": 51400 + }, + { + "epoch": 45.5352798053528, + "grad_norm": 0.5789527893066406, + "learning_rate": 2.724005305039788e-05, + "loss": 0.5647828674316406, + "step": 51500 + }, + { + "epoch": 45.62375580623756, + "grad_norm": 0.553713321685791, + "learning_rate": 2.719584438549956e-05, + "loss": 0.5659704208374023, + "step": 51600 + }, + { + "epoch": 45.712231807122315, + "grad_norm": 0.5502424240112305, + "learning_rate": 2.7151635720601237e-05, + "loss": 0.5685673522949218, + "step": 51700 + }, + { + "epoch": 45.800707808007076, + "grad_norm": 0.6388786435127258, + "learning_rate": 2.7107427055702917e-05, + "loss": 0.569713134765625, + "step": 51800 + }, + { + "epoch": 45.889183808891836, + "grad_norm": 0.5839136242866516, + "learning_rate": 2.70632183908046e-05, + "loss": 0.5713850784301758, + "step": 51900 + }, + { + "epoch": 45.9776598097766, + "grad_norm": 0.5872997641563416, + "learning_rate": 2.701900972590628e-05, + "loss": 0.5713462448120117, + "step": 52000 + }, + { + "epoch": 46.06547224065472, + "grad_norm": 0.5111995339393616, + "learning_rate": 2.697524314765694e-05, + "loss": 0.5514000701904297, + "step": 52100 + }, + { + "epoch": 46.15394824153948, + "grad_norm": 0.5677483677864075, + "learning_rate": 2.6931034482758622e-05, + "loss": 0.5458650207519531, + "step": 52200 + }, + { + "epoch": 46.24242424242424, + "grad_norm": 0.5756211876869202, + "learning_rate": 2.68868258178603e-05, + "loss": 0.5480696868896484, + "step": 52300 + }, + { + "epoch": 46.330900243309, + "grad_norm": 0.6053562164306641, + "learning_rate": 2.684261715296198e-05, + "loss": 0.5525957870483399, + "step": 52400 + }, + { + "epoch": 46.419376244193764, + "grad_norm": 0.5155165791511536, + "learning_rate": 2.6798408488063663e-05, + "loss": 0.5557857513427734, + "step": 52500 + }, + { + "epoch": 46.507852245078524, + "grad_norm": 0.5804229378700256, + "learning_rate": 2.6754199823165344e-05, + "loss": 0.5559201049804687, + "step": 52600 + }, + { + "epoch": 46.596328245963285, + "grad_norm": 0.5536544919013977, + "learning_rate": 2.6709991158267024e-05, + "loss": 0.5591853713989258, + "step": 52700 + }, + { + "epoch": 46.684804246848046, + "grad_norm": 0.603621244430542, + "learning_rate": 2.66657824933687e-05, + "loss": 0.5596856307983399, + "step": 52800 + }, + { + "epoch": 46.7732802477328, + "grad_norm": 0.5604232549667358, + "learning_rate": 2.662157382847038e-05, + "loss": 0.5584945678710938, + "step": 52900 + }, + { + "epoch": 46.86175624861756, + "grad_norm": 0.5974889993667603, + "learning_rate": 2.657736516357206e-05, + "loss": 0.5582848358154296, + "step": 53000 + }, + { + "epoch": 46.95023224950232, + "grad_norm": 0.5440397262573242, + "learning_rate": 2.653315649867374e-05, + "loss": 0.5634394454956054, + "step": 53100 + }, + { + "epoch": 47.038044680380445, + "grad_norm": 0.5610032081604004, + "learning_rate": 2.6488947833775423e-05, + "loss": 0.5574512481689453, + "step": 53200 + }, + { + "epoch": 47.126520681265205, + "grad_norm": 0.607563853263855, + "learning_rate": 2.6444739168877104e-05, + "loss": 0.5387821197509766, + "step": 53300 + }, + { + "epoch": 47.214996682149966, + "grad_norm": 0.5836204290390015, + "learning_rate": 2.640053050397878e-05, + "loss": 0.5401793670654297, + "step": 53400 + }, + { + "epoch": 47.30347268303473, + "grad_norm": 0.5325765013694763, + "learning_rate": 2.635632183908046e-05, + "loss": 0.5437668991088868, + "step": 53500 + }, + { + "epoch": 47.39194868391949, + "grad_norm": 0.5740872621536255, + "learning_rate": 2.631211317418214e-05, + "loss": 0.5443574142456055, + "step": 53600 + }, + { + "epoch": 47.48042468480425, + "grad_norm": 0.5562124848365784, + "learning_rate": 2.626790450928382e-05, + "loss": 0.5469727325439453, + "step": 53700 + }, + { + "epoch": 47.56890068568901, + "grad_norm": 0.5893000960350037, + "learning_rate": 2.62236958443855e-05, + "loss": 0.5502291107177735, + "step": 53800 + }, + { + "epoch": 47.65737668657377, + "grad_norm": 0.6538830995559692, + "learning_rate": 2.6179487179487183e-05, + "loss": 0.552915382385254, + "step": 53900 + }, + { + "epoch": 47.74585268745853, + "grad_norm": 0.5710316300392151, + "learning_rate": 2.6135278514588863e-05, + "loss": 0.5510491943359375, + "step": 54000 + }, + { + "epoch": 47.834328688343284, + "grad_norm": 0.5235297083854675, + "learning_rate": 2.609106984969054e-05, + "loss": 0.5519483184814453, + "step": 54100 + }, + { + "epoch": 47.922804689228045, + "grad_norm": 0.6048061847686768, + "learning_rate": 2.604686118479222e-05, + "loss": 0.5567644882202148, + "step": 54200 + }, + { + "epoch": 48.01061712010617, + "grad_norm": 0.5698108077049255, + "learning_rate": 2.6003094606542884e-05, + "loss": 0.5547234344482422, + "step": 54300 + }, + { + "epoch": 48.09909312099093, + "grad_norm": 0.49287617206573486, + "learning_rate": 2.595888594164456e-05, + "loss": 0.5280181884765625, + "step": 54400 + }, + { + "epoch": 48.18756912187569, + "grad_norm": 0.5525228977203369, + "learning_rate": 2.591467727674624e-05, + "loss": 0.5349401092529297, + "step": 54500 + }, + { + "epoch": 48.27604512276045, + "grad_norm": 0.5026161670684814, + "learning_rate": 2.5870468611847925e-05, + "loss": 0.5378446578979492, + "step": 54600 + }, + { + "epoch": 48.36452112364521, + "grad_norm": 0.5191828608512878, + "learning_rate": 2.5826259946949606e-05, + "loss": 0.5382429122924804, + "step": 54700 + }, + { + "epoch": 48.45299712452997, + "grad_norm": 0.5171953439712524, + "learning_rate": 2.5782051282051283e-05, + "loss": 0.5364204406738281, + "step": 54800 + }, + { + "epoch": 48.54147312541473, + "grad_norm": 0.5302397012710571, + "learning_rate": 2.5737842617152963e-05, + "loss": 0.5405542373657226, + "step": 54900 + }, + { + "epoch": 48.62994912629949, + "grad_norm": 0.5187925100326538, + "learning_rate": 2.569363395225464e-05, + "loss": 0.5436551284790039, + "step": 55000 + }, + { + "epoch": 48.718425127184254, + "grad_norm": 0.5707531571388245, + "learning_rate": 2.564942528735632e-05, + "loss": 0.5467363357543945, + "step": 55100 + }, + { + "epoch": 48.806901128069015, + "grad_norm": 0.5525254607200623, + "learning_rate": 2.5605216622458e-05, + "loss": 0.5466318130493164, + "step": 55200 + }, + { + "epoch": 48.89537712895377, + "grad_norm": 0.5896828174591064, + "learning_rate": 2.5561007957559685e-05, + "loss": 0.5489627075195312, + "step": 55300 + }, + { + "epoch": 48.98385312983853, + "grad_norm": 0.593329131603241, + "learning_rate": 2.5516799292661366e-05, + "loss": 0.5492449569702148, + "step": 55400 + }, + { + "epoch": 49.07166556071665, + "grad_norm": 0.45202845335006714, + "learning_rate": 2.5472590627763043e-05, + "loss": 0.5282985687255859, + "step": 55500 + }, + { + "epoch": 49.160141561601414, + "grad_norm": 0.45874515175819397, + "learning_rate": 2.5428381962864723e-05, + "loss": 0.5267356872558594, + "step": 55600 + }, + { + "epoch": 49.248617562486174, + "grad_norm": 0.5499678254127502, + "learning_rate": 2.53841732979664e-05, + "loss": 0.5255993270874023, + "step": 55700 + }, + { + "epoch": 49.337093563370935, + "grad_norm": 0.5569108724594116, + "learning_rate": 2.533996463306808e-05, + "loss": 0.5299503707885742, + "step": 55800 + }, + { + "epoch": 49.425569564255696, + "grad_norm": 0.5677438974380493, + "learning_rate": 2.529575596816976e-05, + "loss": 0.5316028594970703, + "step": 55900 + }, + { + "epoch": 49.51404556514046, + "grad_norm": 0.5888075828552246, + "learning_rate": 2.5251547303271445e-05, + "loss": 0.5354986953735351, + "step": 56000 + }, + { + "epoch": 49.60252156602522, + "grad_norm": 0.5639616250991821, + "learning_rate": 2.5207338638373122e-05, + "loss": 0.5369997787475586, + "step": 56100 + }, + { + "epoch": 49.69099756690998, + "grad_norm": 0.509158194065094, + "learning_rate": 2.5163129973474803e-05, + "loss": 0.536979866027832, + "step": 56200 + }, + { + "epoch": 49.77947356779474, + "grad_norm": 0.5412595868110657, + "learning_rate": 2.5118921308576483e-05, + "loss": 0.5382201004028321, + "step": 56300 + }, + { + "epoch": 49.86794956867949, + "grad_norm": 0.6052098274230957, + "learning_rate": 2.507471264367816e-05, + "loss": 0.5390504837036133, + "step": 56400 + }, + { + "epoch": 49.95642556956425, + "grad_norm": 0.5019105076789856, + "learning_rate": 2.503050397877984e-05, + "loss": 0.5391928482055665, + "step": 56500 + }, + { + "epoch": 50.04423800044238, + "grad_norm": 0.5133684873580933, + "learning_rate": 2.4986737400530504e-05, + "loss": 0.529360580444336, + "step": 56600 + }, + { + "epoch": 50.13271400132714, + "grad_norm": 0.5742220878601074, + "learning_rate": 2.4942528735632184e-05, + "loss": 0.5150651550292968, + "step": 56700 + }, + { + "epoch": 50.2211900022119, + "grad_norm": 0.5389617681503296, + "learning_rate": 2.4898320070733865e-05, + "loss": 0.5204330444335937, + "step": 56800 + }, + { + "epoch": 50.30966600309666, + "grad_norm": 0.5938611030578613, + "learning_rate": 2.4854111405835545e-05, + "loss": 0.5252494049072266, + "step": 56900 + }, + { + "epoch": 50.39814200398142, + "grad_norm": 0.5617892146110535, + "learning_rate": 2.4809902740937225e-05, + "loss": 0.5260490036010742, + "step": 57000 + }, + { + "epoch": 50.48661800486618, + "grad_norm": 0.6076000332832336, + "learning_rate": 2.4765694076038906e-05, + "loss": 0.5278256607055664, + "step": 57100 + }, + { + "epoch": 50.57509400575094, + "grad_norm": 0.5321983695030212, + "learning_rate": 2.4721485411140586e-05, + "loss": 0.5286510467529297, + "step": 57200 + }, + { + "epoch": 50.6635700066357, + "grad_norm": 0.614532470703125, + "learning_rate": 2.4677276746242263e-05, + "loss": 0.5313225936889648, + "step": 57300 + }, + { + "epoch": 50.75204600752046, + "grad_norm": 0.5830910801887512, + "learning_rate": 2.4633068081343944e-05, + "loss": 0.5300481796264649, + "step": 57400 + }, + { + "epoch": 50.84052200840522, + "grad_norm": 0.5918353199958801, + "learning_rate": 2.4588859416445624e-05, + "loss": 0.5337774276733398, + "step": 57500 + }, + { + "epoch": 50.92899800928998, + "grad_norm": 0.5791705846786499, + "learning_rate": 2.4544650751547305e-05, + "loss": 0.5316382598876953, + "step": 57600 + }, + { + "epoch": 51.01681044016811, + "grad_norm": 0.521299421787262, + "learning_rate": 2.4500442086648985e-05, + "loss": 0.5307102203369141, + "step": 57700 + }, + { + "epoch": 51.10528644105286, + "grad_norm": 0.5163324475288391, + "learning_rate": 2.4456233421750666e-05, + "loss": 0.5103409576416016, + "step": 57800 + }, + { + "epoch": 51.19376244193762, + "grad_norm": 0.5436499714851379, + "learning_rate": 2.4412024756852346e-05, + "loss": 0.5144682693481445, + "step": 57900 + }, + { + "epoch": 51.28223844282238, + "grad_norm": 0.5268517136573792, + "learning_rate": 2.4367816091954023e-05, + "loss": 0.5170879364013672, + "step": 58000 + }, + { + "epoch": 51.37071444370714, + "grad_norm": 0.5523056983947754, + "learning_rate": 2.4323607427055704e-05, + "loss": 0.5176148223876953, + "step": 58100 + }, + { + "epoch": 51.459190444591904, + "grad_norm": 0.5733488202095032, + "learning_rate": 2.4279398762157384e-05, + "loss": 0.5213256454467774, + "step": 58200 + }, + { + "epoch": 51.547666445476665, + "grad_norm": 0.6002511978149414, + "learning_rate": 2.4235190097259065e-05, + "loss": 0.5213332748413086, + "step": 58300 + }, + { + "epoch": 51.636142446361426, + "grad_norm": 0.5866407155990601, + "learning_rate": 2.4190981432360742e-05, + "loss": 0.5219316101074218, + "step": 58400 + }, + { + "epoch": 51.724618447246186, + "grad_norm": 0.620346188545227, + "learning_rate": 2.4146772767462426e-05, + "loss": 0.5251021575927735, + "step": 58500 + }, + { + "epoch": 51.81309444813095, + "grad_norm": 0.5428482294082642, + "learning_rate": 2.4102564102564103e-05, + "loss": 0.5254843521118164, + "step": 58600 + }, + { + "epoch": 51.90157044901571, + "grad_norm": 0.6146367192268372, + "learning_rate": 2.4058355437665783e-05, + "loss": 0.5262796401977539, + "step": 58700 + }, + { + "epoch": 51.99004644990046, + "grad_norm": 0.6002848148345947, + "learning_rate": 2.4014146772767464e-05, + "loss": 0.5279874801635742, + "step": 58800 + }, + { + "epoch": 52.07785888077859, + "grad_norm": 0.5608682036399841, + "learning_rate": 2.3970380194518127e-05, + "loss": 0.5045627975463867, + "step": 58900 + }, + { + "epoch": 52.166334881663346, + "grad_norm": 0.5034646391868591, + "learning_rate": 2.3926171529619807e-05, + "loss": 0.5071027755737305, + "step": 59000 + }, + { + "epoch": 52.25481088254811, + "grad_norm": 0.5443050861358643, + "learning_rate": 2.3881962864721484e-05, + "loss": 0.5105178451538086, + "step": 59100 + }, + { + "epoch": 52.34328688343287, + "grad_norm": 0.5455040335655212, + "learning_rate": 2.3837754199823168e-05, + "loss": 0.5111968612670899, + "step": 59200 + }, + { + "epoch": 52.43176288431763, + "grad_norm": 0.5393562912940979, + "learning_rate": 2.3793545534924845e-05, + "loss": 0.5109628295898437, + "step": 59300 + }, + { + "epoch": 52.52023888520239, + "grad_norm": 0.5572716593742371, + "learning_rate": 2.3749336870026526e-05, + "loss": 0.5128989791870118, + "step": 59400 + }, + { + "epoch": 52.60871488608715, + "grad_norm": 0.5157389640808105, + "learning_rate": 2.3705128205128206e-05, + "loss": 0.5179262924194336, + "step": 59500 + }, + { + "epoch": 52.69719088697191, + "grad_norm": 0.5245424509048462, + "learning_rate": 2.3660919540229886e-05, + "loss": 0.5182614517211914, + "step": 59600 + }, + { + "epoch": 52.78566688785667, + "grad_norm": 0.6405171155929565, + "learning_rate": 2.3616710875331567e-05, + "loss": 0.5196902084350586, + "step": 59700 + }, + { + "epoch": 52.87414288874143, + "grad_norm": 0.5531449317932129, + "learning_rate": 2.3572502210433244e-05, + "loss": 0.5213772583007813, + "step": 59800 + }, + { + "epoch": 52.96261888962619, + "grad_norm": 0.5440499186515808, + "learning_rate": 2.3528293545534928e-05, + "loss": 0.5214180755615234, + "step": 59900 + }, + { + "epoch": 53.050431320504316, + "grad_norm": 0.5454942584037781, + "learning_rate": 2.3484084880636605e-05, + "loss": 0.5082747268676758, + "step": 60000 + }, + { + "epoch": 53.13890732138907, + "grad_norm": 0.6037677526473999, + "learning_rate": 2.3439876215738285e-05, + "loss": 0.4992447662353516, + "step": 60100 + }, + { + "epoch": 53.22738332227383, + "grad_norm": 0.6089978218078613, + "learning_rate": 2.3395667550839966e-05, + "loss": 0.501078987121582, + "step": 60200 + }, + { + "epoch": 53.31585932315859, + "grad_norm": 0.5581852793693542, + "learning_rate": 2.3351458885941646e-05, + "loss": 0.50614990234375, + "step": 60300 + }, + { + "epoch": 53.40433532404335, + "grad_norm": 0.5539824366569519, + "learning_rate": 2.3307250221043327e-05, + "loss": 0.5036640548706055, + "step": 60400 + }, + { + "epoch": 53.49281132492811, + "grad_norm": 0.5434619784355164, + "learning_rate": 2.3263041556145004e-05, + "loss": 0.5078977966308593, + "step": 60500 + }, + { + "epoch": 53.58128732581287, + "grad_norm": 0.5596204400062561, + "learning_rate": 2.3218832891246688e-05, + "loss": 0.5105896377563477, + "step": 60600 + }, + { + "epoch": 53.669763326697634, + "grad_norm": 0.5933516621589661, + "learning_rate": 2.3174624226348365e-05, + "loss": 0.512298583984375, + "step": 60700 + }, + { + "epoch": 53.758239327582395, + "grad_norm": 0.5938782095909119, + "learning_rate": 2.3130415561450045e-05, + "loss": 0.5136246871948242, + "step": 60800 + }, + { + "epoch": 53.846715328467155, + "grad_norm": 0.5711195468902588, + "learning_rate": 2.3086206896551726e-05, + "loss": 0.5137527465820313, + "step": 60900 + }, + { + "epoch": 53.935191329351916, + "grad_norm": 0.5345974564552307, + "learning_rate": 2.3041998231653406e-05, + "loss": 0.5148337173461914, + "step": 61000 + }, + { + "epoch": 54.02300376023004, + "grad_norm": 0.5462290644645691, + "learning_rate": 2.299823165340407e-05, + "loss": 0.5070685577392579, + "step": 61100 + }, + { + "epoch": 54.1114797611148, + "grad_norm": 0.5135403275489807, + "learning_rate": 2.295402298850575e-05, + "loss": 0.49042961120605466, + "step": 61200 + }, + { + "epoch": 54.199955761999554, + "grad_norm": 0.5753411650657654, + "learning_rate": 2.290981432360743e-05, + "loss": 0.49762104034423826, + "step": 61300 + }, + { + "epoch": 54.288431762884315, + "grad_norm": 0.5738378167152405, + "learning_rate": 2.2865605658709107e-05, + "loss": 0.4983011245727539, + "step": 61400 + }, + { + "epoch": 54.376907763769076, + "grad_norm": 0.5234966278076172, + "learning_rate": 2.2821396993810788e-05, + "loss": 0.5005590057373047, + "step": 61500 + }, + { + "epoch": 54.465383764653836, + "grad_norm": 0.5313852429389954, + "learning_rate": 2.2777188328912468e-05, + "loss": 0.503372917175293, + "step": 61600 + }, + { + "epoch": 54.5538597655386, + "grad_norm": 0.49838191270828247, + "learning_rate": 2.273297966401415e-05, + "loss": 0.5020324325561524, + "step": 61700 + }, + { + "epoch": 54.64233576642336, + "grad_norm": 0.5403088927268982, + "learning_rate": 2.2688770999115826e-05, + "loss": 0.5049329376220704, + "step": 61800 + }, + { + "epoch": 54.73081176730812, + "grad_norm": 0.46723249554634094, + "learning_rate": 2.264456233421751e-05, + "loss": 0.5059401321411133, + "step": 61900 + }, + { + "epoch": 54.81928776819288, + "grad_norm": 0.5539482235908508, + "learning_rate": 2.2600353669319187e-05, + "loss": 0.5069823837280274, + "step": 62000 + }, + { + "epoch": 54.90776376907764, + "grad_norm": 0.5377270579338074, + "learning_rate": 2.2556145004420867e-05, + "loss": 0.508377685546875, + "step": 62100 + }, + { + "epoch": 54.9962397699624, + "grad_norm": 0.6182072162628174, + "learning_rate": 2.2511936339522548e-05, + "loss": 0.5095947647094726, + "step": 62200 + }, + { + "epoch": 55.084052200840524, + "grad_norm": 0.5139372944831848, + "learning_rate": 2.2467727674624228e-05, + "loss": 0.4896272277832031, + "step": 62300 + }, + { + "epoch": 55.172528201725285, + "grad_norm": 0.5812121629714966, + "learning_rate": 2.242351900972591e-05, + "loss": 0.49099037170410154, + "step": 62400 + }, + { + "epoch": 55.26100420261004, + "grad_norm": 0.5491729378700256, + "learning_rate": 2.2379310344827586e-05, + "loss": 0.4927267074584961, + "step": 62500 + }, + { + "epoch": 55.3494802034948, + "grad_norm": 0.5951135158538818, + "learning_rate": 2.233510167992927e-05, + "loss": 0.49305023193359376, + "step": 62600 + }, + { + "epoch": 55.43795620437956, + "grad_norm": 0.5938172340393066, + "learning_rate": 2.2290893015030946e-05, + "loss": 0.49482032775878904, + "step": 62700 + }, + { + "epoch": 55.52643220526432, + "grad_norm": 0.5288723111152649, + "learning_rate": 2.2246684350132627e-05, + "loss": 0.4974822998046875, + "step": 62800 + }, + { + "epoch": 55.61490820614908, + "grad_norm": 0.5663400888442993, + "learning_rate": 2.2202475685234307e-05, + "loss": 0.498828239440918, + "step": 62900 + }, + { + "epoch": 55.70338420703384, + "grad_norm": 0.5939375162124634, + "learning_rate": 2.2158267020335988e-05, + "loss": 0.5004440307617187, + "step": 63000 + }, + { + "epoch": 55.7918602079186, + "grad_norm": 0.628774106502533, + "learning_rate": 2.2114058355437668e-05, + "loss": 0.5034025573730468, + "step": 63100 + }, + { + "epoch": 55.880336208803364, + "grad_norm": 0.6160352826118469, + "learning_rate": 2.2069849690539345e-05, + "loss": 0.5042695236206055, + "step": 63200 + }, + { + "epoch": 55.968812209688124, + "grad_norm": 0.5891813635826111, + "learning_rate": 2.202564102564103e-05, + "loss": 0.5021416473388672, + "step": 63300 + }, + { + "epoch": 56.05662464056625, + "grad_norm": 0.5297622680664062, + "learning_rate": 2.198187444739169e-05, + "loss": 0.4904953384399414, + "step": 63400 + }, + { + "epoch": 56.14510064145101, + "grad_norm": 0.5649422407150269, + "learning_rate": 2.193766578249337e-05, + "loss": 0.485706672668457, + "step": 63500 + }, + { + "epoch": 56.23357664233577, + "grad_norm": 0.6352797150611877, + "learning_rate": 2.189345711759505e-05, + "loss": 0.4867672348022461, + "step": 63600 + }, + { + "epoch": 56.32205264322052, + "grad_norm": 0.5789678692817688, + "learning_rate": 2.184924845269673e-05, + "loss": 0.48802379608154295, + "step": 63700 + }, + { + "epoch": 56.410528644105284, + "grad_norm": 0.6075431704521179, + "learning_rate": 2.180503978779841e-05, + "loss": 0.4910835647583008, + "step": 63800 + }, + { + "epoch": 56.499004644990045, + "grad_norm": 0.5858777165412903, + "learning_rate": 2.1760831122900088e-05, + "loss": 0.4906935119628906, + "step": 63900 + }, + { + "epoch": 56.587480645874805, + "grad_norm": 0.5143148899078369, + "learning_rate": 2.171662245800177e-05, + "loss": 0.49202545166015627, + "step": 64000 + }, + { + "epoch": 56.675956646759566, + "grad_norm": 0.5330872535705566, + "learning_rate": 2.167241379310345e-05, + "loss": 0.4929664611816406, + "step": 64100 + }, + { + "epoch": 56.76443264764433, + "grad_norm": 0.5530017018318176, + "learning_rate": 2.162820512820513e-05, + "loss": 0.49355899810791015, + "step": 64200 + }, + { + "epoch": 56.85290864852909, + "grad_norm": 0.5891992449760437, + "learning_rate": 2.158399646330681e-05, + "loss": 0.49566749572753904, + "step": 64300 + }, + { + "epoch": 56.94138464941385, + "grad_norm": 0.5289095044136047, + "learning_rate": 2.153978779840849e-05, + "loss": 0.4987163543701172, + "step": 64400 + }, + { + "epoch": 57.02919708029197, + "grad_norm": 0.5679471492767334, + "learning_rate": 2.1495579133510167e-05, + "loss": 0.49003833770751953, + "step": 64500 + }, + { + "epoch": 57.11767308117673, + "grad_norm": 0.5432245135307312, + "learning_rate": 2.1451370468611848e-05, + "loss": 0.47765895843505857, + "step": 64600 + }, + { + "epoch": 57.20614908206149, + "grad_norm": 0.5474491119384766, + "learning_rate": 2.1407161803713528e-05, + "loss": 0.4797785568237305, + "step": 64700 + }, + { + "epoch": 57.294625082946254, + "grad_norm": 0.537804126739502, + "learning_rate": 2.136295313881521e-05, + "loss": 0.4833247756958008, + "step": 64800 + }, + { + "epoch": 57.38310108383101, + "grad_norm": 0.572169840335846, + "learning_rate": 2.131874447391689e-05, + "loss": 0.4836674118041992, + "step": 64900 + }, + { + "epoch": 57.47157708471577, + "grad_norm": 0.5344268679618835, + "learning_rate": 2.127453580901857e-05, + "loss": 0.48507492065429686, + "step": 65000 + }, + { + "epoch": 57.56005308560053, + "grad_norm": 0.5664619207382202, + "learning_rate": 2.123032714412025e-05, + "loss": 0.488138427734375, + "step": 65100 + }, + { + "epoch": 57.64852908648529, + "grad_norm": 0.5902144312858582, + "learning_rate": 2.1186118479221927e-05, + "loss": 0.48771110534667966, + "step": 65200 + }, + { + "epoch": 57.73700508737005, + "grad_norm": 0.562929630279541, + "learning_rate": 2.1141909814323607e-05, + "loss": 0.4875301742553711, + "step": 65300 + }, + { + "epoch": 57.82548108825481, + "grad_norm": 0.5995573997497559, + "learning_rate": 2.1097701149425288e-05, + "loss": 0.49271678924560547, + "step": 65400 + }, + { + "epoch": 57.91395708913957, + "grad_norm": 0.6624785661697388, + "learning_rate": 2.105349248452697e-05, + "loss": 0.4920695877075195, + "step": 65500 + }, + { + "epoch": 58.001769520017696, + "grad_norm": 0.5402753353118896, + "learning_rate": 2.100928381962865e-05, + "loss": 0.49431739807128905, + "step": 65600 + }, + { + "epoch": 58.09024552090246, + "grad_norm": 0.5145826935768127, + "learning_rate": 2.096507515473033e-05, + "loss": 0.47089763641357424, + "step": 65700 + }, + { + "epoch": 58.17872152178722, + "grad_norm": 0.5931445360183716, + "learning_rate": 2.092086648983201e-05, + "loss": 0.4758612060546875, + "step": 65800 + }, + { + "epoch": 58.26719752267198, + "grad_norm": 0.5388639569282532, + "learning_rate": 2.0876657824933687e-05, + "loss": 0.47640296936035154, + "step": 65900 + }, + { + "epoch": 58.35567352355674, + "grad_norm": 0.5639314651489258, + "learning_rate": 2.0832449160035367e-05, + "loss": 0.482130241394043, + "step": 66000 + }, + { + "epoch": 58.44414952444149, + "grad_norm": 0.5535529851913452, + "learning_rate": 2.0788240495137048e-05, + "loss": 0.47872936248779296, + "step": 66100 + }, + { + "epoch": 58.53262552532625, + "grad_norm": 0.5827674865722656, + "learning_rate": 2.0744031830238728e-05, + "loss": 0.4842064666748047, + "step": 66200 + }, + { + "epoch": 58.621101526211014, + "grad_norm": 0.5696784257888794, + "learning_rate": 2.0699823165340405e-05, + "loss": 0.4816234588623047, + "step": 66300 + }, + { + "epoch": 58.709577527095774, + "grad_norm": 0.5349422097206116, + "learning_rate": 2.065561450044209e-05, + "loss": 0.48554718017578125, + "step": 66400 + }, + { + "epoch": 58.798053527980535, + "grad_norm": 0.636604368686676, + "learning_rate": 2.0611405835543766e-05, + "loss": 0.4876006317138672, + "step": 66500 + }, + { + "epoch": 58.886529528865296, + "grad_norm": 0.6060304045677185, + "learning_rate": 2.0567197170645447e-05, + "loss": 0.4887725830078125, + "step": 66600 + }, + { + "epoch": 58.97500552975006, + "grad_norm": 0.6087244749069214, + "learning_rate": 2.0522988505747127e-05, + "loss": 0.4868877410888672, + "step": 66700 + }, + { + "epoch": 59.06281796062818, + "grad_norm": 0.49913933873176575, + "learning_rate": 2.047922192749779e-05, + "loss": 0.4722119140625, + "step": 66800 + }, + { + "epoch": 59.15129396151294, + "grad_norm": 0.4722621738910675, + "learning_rate": 2.043501326259947e-05, + "loss": 0.47009246826171874, + "step": 66900 + }, + { + "epoch": 59.2397699623977, + "grad_norm": 0.5657719373703003, + "learning_rate": 2.0390804597701148e-05, + "loss": 0.472298583984375, + "step": 67000 + }, + { + "epoch": 59.32824596328246, + "grad_norm": 0.5761541724205017, + "learning_rate": 2.034659593280283e-05, + "loss": 0.4723761749267578, + "step": 67100 + }, + { + "epoch": 59.416721964167216, + "grad_norm": 0.6316192150115967, + "learning_rate": 2.030238726790451e-05, + "loss": 0.47409954071044924, + "step": 67200 + }, + { + "epoch": 59.50519796505198, + "grad_norm": 0.6090986132621765, + "learning_rate": 2.025817860300619e-05, + "loss": 0.4764304351806641, + "step": 67300 + }, + { + "epoch": 59.59367396593674, + "grad_norm": 0.5362303256988525, + "learning_rate": 2.021396993810787e-05, + "loss": 0.4776358795166016, + "step": 67400 + }, + { + "epoch": 59.6821499668215, + "grad_norm": 0.553995668888092, + "learning_rate": 2.016976127320955e-05, + "loss": 0.4807791519165039, + "step": 67500 + }, + { + "epoch": 59.77062596770626, + "grad_norm": 0.5615981221199036, + "learning_rate": 2.012555260831123e-05, + "loss": 0.48062610626220703, + "step": 67600 + }, + { + "epoch": 59.85910196859102, + "grad_norm": 0.5885509252548218, + "learning_rate": 2.0081343943412908e-05, + "loss": 0.48244945526123045, + "step": 67700 + }, + { + "epoch": 59.94757796947578, + "grad_norm": 0.6052979230880737, + "learning_rate": 2.003713527851459e-05, + "loss": 0.4803206634521484, + "step": 67800 + }, + { + "epoch": 60.035390400353904, + "grad_norm": 0.5579769015312195, + "learning_rate": 1.999292661361627e-05, + "loss": 0.4752388000488281, + "step": 67900 + }, + { + "epoch": 60.123866401238665, + "grad_norm": 0.478289395570755, + "learning_rate": 1.994871794871795e-05, + "loss": 0.4645302200317383, + "step": 68000 + }, + { + "epoch": 60.212342402123426, + "grad_norm": 0.5545957088470459, + "learning_rate": 1.990450928381963e-05, + "loss": 0.46837158203125, + "step": 68100 + }, + { + "epoch": 60.300818403008186, + "grad_norm": 0.524662435054779, + "learning_rate": 1.986030061892131e-05, + "loss": 0.4679202651977539, + "step": 68200 + }, + { + "epoch": 60.38929440389295, + "grad_norm": 0.6101793646812439, + "learning_rate": 1.981609195402299e-05, + "loss": 0.46956668853759764, + "step": 68300 + }, + { + "epoch": 60.4777704047777, + "grad_norm": 0.5040204524993896, + "learning_rate": 1.9771883289124667e-05, + "loss": 0.4706681060791016, + "step": 68400 + }, + { + "epoch": 60.56624640566246, + "grad_norm": 0.563679039478302, + "learning_rate": 1.972767462422635e-05, + "loss": 0.471558837890625, + "step": 68500 + }, + { + "epoch": 60.65472240654722, + "grad_norm": 0.5668439865112305, + "learning_rate": 1.9683465959328028e-05, + "loss": 0.4727770233154297, + "step": 68600 + }, + { + "epoch": 60.74319840743198, + "grad_norm": 0.6011987328529358, + "learning_rate": 1.963925729442971e-05, + "loss": 0.47645427703857424, + "step": 68700 + }, + { + "epoch": 60.83167440831674, + "grad_norm": 0.6392132043838501, + "learning_rate": 1.959504862953139e-05, + "loss": 0.4765947341918945, + "step": 68800 + }, + { + "epoch": 60.920150409201504, + "grad_norm": 0.6424957513809204, + "learning_rate": 1.955083996463307e-05, + "loss": 0.4768808746337891, + "step": 68900 + }, + { + "epoch": 61.00796284007963, + "grad_norm": 0.5341200828552246, + "learning_rate": 1.9507073386383733e-05, + "loss": 0.4776120376586914, + "step": 69000 + }, + { + "epoch": 61.09643884096439, + "grad_norm": 0.622922956943512, + "learning_rate": 1.9462864721485413e-05, + "loss": 0.46137203216552736, + "step": 69100 + }, + { + "epoch": 61.18491484184915, + "grad_norm": 0.5679436326026917, + "learning_rate": 1.9418656056587094e-05, + "loss": 0.46096920013427733, + "step": 69200 + }, + { + "epoch": 61.27339084273391, + "grad_norm": 0.5972808003425598, + "learning_rate": 1.937444739168877e-05, + "loss": 0.46090087890625, + "step": 69300 + }, + { + "epoch": 61.36186684361867, + "grad_norm": 0.5825915336608887, + "learning_rate": 1.933023872679045e-05, + "loss": 0.46518352508544925, + "step": 69400 + }, + { + "epoch": 61.45034284450343, + "grad_norm": 0.48754116892814636, + "learning_rate": 1.9286030061892132e-05, + "loss": 0.4664886856079102, + "step": 69500 + }, + { + "epoch": 61.538818845388185, + "grad_norm": 0.5583191514015198, + "learning_rate": 1.9241821396993812e-05, + "loss": 0.46886295318603516, + "step": 69600 + }, + { + "epoch": 61.627294846272946, + "grad_norm": 0.5658340454101562, + "learning_rate": 1.919761273209549e-05, + "loss": 0.4696169662475586, + "step": 69700 + }, + { + "epoch": 61.71577084715771, + "grad_norm": 0.5801714658737183, + "learning_rate": 1.9153404067197173e-05, + "loss": 0.47141036987304685, + "step": 69800 + }, + { + "epoch": 61.80424684804247, + "grad_norm": 0.5643869042396545, + "learning_rate": 1.910919540229885e-05, + "loss": 0.4727308654785156, + "step": 69900 + }, + { + "epoch": 61.89272284892723, + "grad_norm": 0.5937660336494446, + "learning_rate": 1.906498673740053e-05, + "loss": 0.4726886367797852, + "step": 70000 + }, + { + "epoch": 61.98119884981199, + "grad_norm": 0.5228411555290222, + "learning_rate": 1.902077807250221e-05, + "loss": 0.47457176208496094, + "step": 70100 + }, + { + "epoch": 62.06901128069011, + "grad_norm": 0.5100186467170715, + "learning_rate": 1.897656940760389e-05, + "loss": 0.4604149627685547, + "step": 70200 + }, + { + "epoch": 62.15748728157487, + "grad_norm": 0.5119529962539673, + "learning_rate": 1.8932360742705572e-05, + "loss": 0.4561204147338867, + "step": 70300 + }, + { + "epoch": 62.245963282459634, + "grad_norm": 0.5130912065505981, + "learning_rate": 1.888815207780725e-05, + "loss": 0.4596226501464844, + "step": 70400 + }, + { + "epoch": 62.334439283344395, + "grad_norm": 0.5388224720954895, + "learning_rate": 1.8843943412908933e-05, + "loss": 0.4617993927001953, + "step": 70500 + }, + { + "epoch": 62.422915284229155, + "grad_norm": 0.5555194020271301, + "learning_rate": 1.879973474801061e-05, + "loss": 0.46267467498779297, + "step": 70600 + }, + { + "epoch": 62.511391285113916, + "grad_norm": 0.5136281847953796, + "learning_rate": 1.875552608311229e-05, + "loss": 0.4628156280517578, + "step": 70700 + }, + { + "epoch": 62.59986728599867, + "grad_norm": 0.5039867162704468, + "learning_rate": 1.871131741821397e-05, + "loss": 0.4678297805786133, + "step": 70800 + }, + { + "epoch": 62.68834328688343, + "grad_norm": 0.566985547542572, + "learning_rate": 1.866710875331565e-05, + "loss": 0.46522830963134765, + "step": 70900 + }, + { + "epoch": 62.77681928776819, + "grad_norm": 0.5855474472045898, + "learning_rate": 1.8622900088417332e-05, + "loss": 0.46788333892822265, + "step": 71000 + }, + { + "epoch": 62.86529528865295, + "grad_norm": 0.5838083624839783, + "learning_rate": 1.857869142351901e-05, + "loss": 0.4687856292724609, + "step": 71100 + }, + { + "epoch": 62.95377128953771, + "grad_norm": 0.6574355363845825, + "learning_rate": 1.8534482758620693e-05, + "loss": 0.46836143493652344, + "step": 71200 + }, + { + "epoch": 63.04158372041584, + "grad_norm": 0.5751773118972778, + "learning_rate": 1.849027409372237e-05, + "loss": 0.4590755844116211, + "step": 71300 + }, + { + "epoch": 63.1300597213006, + "grad_norm": 0.5056807398796082, + "learning_rate": 1.844606542882405e-05, + "loss": 0.45313865661621094, + "step": 71400 + }, + { + "epoch": 63.21853572218536, + "grad_norm": 0.5403828024864197, + "learning_rate": 1.840185676392573e-05, + "loss": 0.4552134323120117, + "step": 71500 + }, + { + "epoch": 63.30701172307012, + "grad_norm": 0.48244568705558777, + "learning_rate": 1.835764809902741e-05, + "loss": 0.45661014556884766, + "step": 71600 + }, + { + "epoch": 63.39548772395488, + "grad_norm": 0.5753127932548523, + "learning_rate": 1.831343943412909e-05, + "loss": 0.4578168487548828, + "step": 71700 + }, + { + "epoch": 63.48396372483964, + "grad_norm": 0.5782042741775513, + "learning_rate": 1.826923076923077e-05, + "loss": 0.4589107131958008, + "step": 71800 + }, + { + "epoch": 63.5724397257244, + "grad_norm": 0.5895569920539856, + "learning_rate": 1.8225022104332453e-05, + "loss": 0.46304950714111326, + "step": 71900 + }, + { + "epoch": 63.660915726609154, + "grad_norm": 0.6601688265800476, + "learning_rate": 1.818081343943413e-05, + "loss": 0.45953712463378904, + "step": 72000 + }, + { + "epoch": 63.749391727493915, + "grad_norm": 0.5695818066596985, + "learning_rate": 1.813660477453581e-05, + "loss": 0.46058246612548825, + "step": 72100 + }, + { + "epoch": 63.837867728378676, + "grad_norm": 0.5006322264671326, + "learning_rate": 1.809239610963749e-05, + "loss": 0.4630731964111328, + "step": 72200 + }, + { + "epoch": 63.926343729263436, + "grad_norm": 0.5871863961219788, + "learning_rate": 1.804818744473917e-05, + "loss": 0.46295913696289065, + "step": 72300 + }, + { + "epoch": 64.01415616014157, + "grad_norm": 0.5417830348014832, + "learning_rate": 1.8003978779840848e-05, + "loss": 0.4623433303833008, + "step": 72400 + }, + { + "epoch": 64.10263216102632, + "grad_norm": 0.5019242763519287, + "learning_rate": 1.795977011494253e-05, + "loss": 0.44698051452636717, + "step": 72500 + }, + { + "epoch": 64.19110816191107, + "grad_norm": 0.5637330412864685, + "learning_rate": 1.791556145004421e-05, + "loss": 0.4492236328125, + "step": 72600 + }, + { + "epoch": 64.27958416279584, + "grad_norm": 0.5333090424537659, + "learning_rate": 1.787135278514589e-05, + "loss": 0.45192584991455076, + "step": 72700 + }, + { + "epoch": 64.3680601636806, + "grad_norm": 0.5232571363449097, + "learning_rate": 1.782714412024757e-05, + "loss": 0.45244823455810546, + "step": 72800 + }, + { + "epoch": 64.45653616456536, + "grad_norm": 0.4935717284679413, + "learning_rate": 1.778293545534925e-05, + "loss": 0.4529353332519531, + "step": 72900 + }, + { + "epoch": 64.54501216545012, + "grad_norm": 0.5450688600540161, + "learning_rate": 1.7739168877099913e-05, + "loss": 0.4567538833618164, + "step": 73000 + }, + { + "epoch": 64.63348816633489, + "grad_norm": 0.47621846199035645, + "learning_rate": 1.769496021220159e-05, + "loss": 0.4563169097900391, + "step": 73100 + }, + { + "epoch": 64.72196416721964, + "grad_norm": 0.5023945569992065, + "learning_rate": 1.7650751547303274e-05, + "loss": 0.46204959869384765, + "step": 73200 + }, + { + "epoch": 64.8104401681044, + "grad_norm": 0.49148306250572205, + "learning_rate": 1.760654288240495e-05, + "loss": 0.45924064636230466, + "step": 73300 + }, + { + "epoch": 64.89891616898916, + "grad_norm": 0.6161800026893616, + "learning_rate": 1.7562334217506632e-05, + "loss": 0.45994918823242187, + "step": 73400 + }, + { + "epoch": 64.98739216987393, + "grad_norm": 0.5307760238647461, + "learning_rate": 1.7518125552608312e-05, + "loss": 0.461478271484375, + "step": 73500 + }, + { + "epoch": 65.07520460075204, + "grad_norm": 0.588062584400177, + "learning_rate": 1.7474358974358976e-05, + "loss": 0.4461378479003906, + "step": 73600 + }, + { + "epoch": 65.16368060163681, + "grad_norm": 0.5329079627990723, + "learning_rate": 1.7430150309460656e-05, + "loss": 0.4440943145751953, + "step": 73700 + }, + { + "epoch": 65.25215660252157, + "grad_norm": 0.6149891018867493, + "learning_rate": 1.7385941644562333e-05, + "loss": 0.44721881866455077, + "step": 73800 + }, + { + "epoch": 65.34063260340632, + "grad_norm": 0.5438173413276672, + "learning_rate": 1.7341732979664017e-05, + "loss": 0.44954757690429686, + "step": 73900 + }, + { + "epoch": 65.42910860429109, + "grad_norm": 0.5428133606910706, + "learning_rate": 1.7297524314765694e-05, + "loss": 0.45107986450195314, + "step": 74000 + }, + { + "epoch": 65.51758460517584, + "grad_norm": 0.5134186744689941, + "learning_rate": 1.7253315649867374e-05, + "loss": 0.45244071960449217, + "step": 74100 + }, + { + "epoch": 65.60606060606061, + "grad_norm": 0.6233081817626953, + "learning_rate": 1.7209106984969055e-05, + "loss": 0.45329185485839846, + "step": 74200 + }, + { + "epoch": 65.69453660694536, + "grad_norm": 0.5700708627700806, + "learning_rate": 1.7164898320070735e-05, + "loss": 0.4539757537841797, + "step": 74300 + }, + { + "epoch": 65.78301260783013, + "grad_norm": 0.5631476640701294, + "learning_rate": 1.7120689655172416e-05, + "loss": 0.4555579376220703, + "step": 74400 + }, + { + "epoch": 65.87148860871488, + "grad_norm": 0.5964381694793701, + "learning_rate": 1.7076480990274093e-05, + "loss": 0.45496936798095705, + "step": 74500 + }, + { + "epoch": 65.95996460959965, + "grad_norm": 0.5872741341590881, + "learning_rate": 1.7032272325375777e-05, + "loss": 0.45641098022460935, + "step": 74600 + }, + { + "epoch": 66.04777704047777, + "grad_norm": 0.522363543510437, + "learning_rate": 1.6988063660477454e-05, + "loss": 0.4488802337646484, + "step": 74700 + }, + { + "epoch": 66.13625304136254, + "grad_norm": 0.5161113739013672, + "learning_rate": 1.6943854995579134e-05, + "loss": 0.44122817993164065, + "step": 74800 + }, + { + "epoch": 66.22472904224729, + "grad_norm": 0.5127883553504944, + "learning_rate": 1.6899646330680815e-05, + "loss": 0.4447059631347656, + "step": 74900 + }, + { + "epoch": 66.31320504313204, + "grad_norm": 0.5202219486236572, + "learning_rate": 1.6855437665782495e-05, + "loss": 0.4453567123413086, + "step": 75000 + }, + { + "epoch": 66.40168104401681, + "grad_norm": 0.4957808256149292, + "learning_rate": 1.6811229000884172e-05, + "loss": 0.44502986907958986, + "step": 75100 + }, + { + "epoch": 66.49015704490157, + "grad_norm": 0.622518002986908, + "learning_rate": 1.6767020335985853e-05, + "loss": 0.44539188385009765, + "step": 75200 + }, + { + "epoch": 66.57863304578633, + "grad_norm": 0.5333230495452881, + "learning_rate": 1.6722811671087537e-05, + "loss": 0.4479424667358398, + "step": 75300 + }, + { + "epoch": 66.66710904667109, + "grad_norm": 0.536641001701355, + "learning_rate": 1.6678603006189214e-05, + "loss": 0.4486875534057617, + "step": 75400 + }, + { + "epoch": 66.75558504755585, + "grad_norm": 0.6140312552452087, + "learning_rate": 1.6634394341290894e-05, + "loss": 0.45118595123291017, + "step": 75500 + }, + { + "epoch": 66.84406104844061, + "grad_norm": 0.5268392562866211, + "learning_rate": 1.6590185676392574e-05, + "loss": 0.4503518676757812, + "step": 75600 + }, + { + "epoch": 66.93253704932538, + "grad_norm": 0.6316497325897217, + "learning_rate": 1.6545977011494255e-05, + "loss": 0.45311626434326174, + "step": 75700 + }, + { + "epoch": 67.02034948020349, + "grad_norm": 0.4964323937892914, + "learning_rate": 1.6502210433244915e-05, + "loss": 0.44798419952392576, + "step": 75800 + }, + { + "epoch": 67.10882548108826, + "grad_norm": 0.5668012499809265, + "learning_rate": 1.6458001768346595e-05, + "loss": 0.43682758331298827, + "step": 75900 + }, + { + "epoch": 67.19730148197301, + "grad_norm": 0.5451331734657288, + "learning_rate": 1.6413793103448276e-05, + "loss": 0.43744281768798826, + "step": 76000 + }, + { + "epoch": 67.28577748285778, + "grad_norm": 0.5625444650650024, + "learning_rate": 1.6369584438549956e-05, + "loss": 0.44072349548339845, + "step": 76100 + }, + { + "epoch": 67.37425348374254, + "grad_norm": 0.5437332391738892, + "learning_rate": 1.6325375773651637e-05, + "loss": 0.4433360290527344, + "step": 76200 + }, + { + "epoch": 67.46272948462729, + "grad_norm": 0.6005889773368835, + "learning_rate": 1.6281167108753317e-05, + "loss": 0.44355270385742185, + "step": 76300 + }, + { + "epoch": 67.55120548551206, + "grad_norm": 0.6379736065864563, + "learning_rate": 1.6236958443854997e-05, + "loss": 0.4445816421508789, + "step": 76400 + }, + { + "epoch": 67.63968148639681, + "grad_norm": 0.4892788529396057, + "learning_rate": 1.6192749778956675e-05, + "loss": 0.4460066604614258, + "step": 76500 + }, + { + "epoch": 67.72815748728158, + "grad_norm": 0.5238019227981567, + "learning_rate": 1.614854111405836e-05, + "loss": 0.44812583923339844, + "step": 76600 + }, + { + "epoch": 67.81663348816633, + "grad_norm": 0.6448091864585876, + "learning_rate": 1.6104332449160035e-05, + "loss": 0.44679683685302735, + "step": 76700 + }, + { + "epoch": 67.9051094890511, + "grad_norm": 0.501971423625946, + "learning_rate": 1.6060123784261716e-05, + "loss": 0.44675071716308595, + "step": 76800 + }, + { + "epoch": 67.99358548993585, + "grad_norm": 0.5027251243591309, + "learning_rate": 1.6015915119363396e-05, + "loss": 0.450067138671875, + "step": 76900 + }, + { + "epoch": 68.08139792081398, + "grad_norm": 0.5118396878242493, + "learning_rate": 1.5971706454465077e-05, + "loss": 0.4363971710205078, + "step": 77000 + }, + { + "epoch": 68.16987392169874, + "grad_norm": 0.49976325035095215, + "learning_rate": 1.5927497789566757e-05, + "loss": 0.43459579467773435, + "step": 77100 + }, + { + "epoch": 68.2583499225835, + "grad_norm": 0.4591541886329651, + "learning_rate": 1.5883289124668434e-05, + "loss": 0.4374491500854492, + "step": 77200 + }, + { + "epoch": 68.34682592346826, + "grad_norm": 0.5061107277870178, + "learning_rate": 1.5839080459770118e-05, + "loss": 0.4367493438720703, + "step": 77300 + }, + { + "epoch": 68.43530192435301, + "grad_norm": 0.5607414245605469, + "learning_rate": 1.5794871794871795e-05, + "loss": 0.43953250885009765, + "step": 77400 + }, + { + "epoch": 68.52377792523778, + "grad_norm": 0.5758550763130188, + "learning_rate": 1.5750663129973476e-05, + "loss": 0.4412353515625, + "step": 77500 + }, + { + "epoch": 68.61225392612253, + "grad_norm": 0.6092869639396667, + "learning_rate": 1.5706454465075153e-05, + "loss": 0.44133682250976564, + "step": 77600 + }, + { + "epoch": 68.7007299270073, + "grad_norm": 0.6203352808952332, + "learning_rate": 1.5662245800176837e-05, + "loss": 0.4439066696166992, + "step": 77700 + }, + { + "epoch": 68.78920592789206, + "grad_norm": 0.5746839046478271, + "learning_rate": 1.5618037135278517e-05, + "loss": 0.4423197174072266, + "step": 77800 + }, + { + "epoch": 68.87768192877682, + "grad_norm": 0.5136276483535767, + "learning_rate": 1.5573828470380194e-05, + "loss": 0.4460869598388672, + "step": 77900 + }, + { + "epoch": 68.96615792966158, + "grad_norm": 0.4968768358230591, + "learning_rate": 1.5529619805481878e-05, + "loss": 0.4462531280517578, + "step": 78000 + }, + { + "epoch": 69.05397036053971, + "grad_norm": 0.5103012919425964, + "learning_rate": 1.5485411140583555e-05, + "loss": 0.43465484619140626, + "step": 78100 + }, + { + "epoch": 69.14244636142446, + "grad_norm": 0.5626784563064575, + "learning_rate": 1.5441202475685236e-05, + "loss": 0.4333412551879883, + "step": 78200 + }, + { + "epoch": 69.23092236230923, + "grad_norm": 0.5118581652641296, + "learning_rate": 1.5396993810786913e-05, + "loss": 0.4336922836303711, + "step": 78300 + }, + { + "epoch": 69.31939836319398, + "grad_norm": 0.5944911241531372, + "learning_rate": 1.5352785145888596e-05, + "loss": 0.43566287994384767, + "step": 78400 + }, + { + "epoch": 69.40787436407874, + "grad_norm": 0.5433744788169861, + "learning_rate": 1.5308576480990273e-05, + "loss": 0.4361726379394531, + "step": 78500 + }, + { + "epoch": 69.4963503649635, + "grad_norm": 0.614020049571991, + "learning_rate": 1.5264367816091954e-05, + "loss": 0.4380105209350586, + "step": 78600 + }, + { + "epoch": 69.58482636584826, + "grad_norm": 0.5004254579544067, + "learning_rate": 1.5220159151193636e-05, + "loss": 0.4391395950317383, + "step": 78700 + }, + { + "epoch": 69.67330236673303, + "grad_norm": 0.522055983543396, + "learning_rate": 1.5175950486295315e-05, + "loss": 0.4396755599975586, + "step": 78800 + }, + { + "epoch": 69.76177836761778, + "grad_norm": 0.524988055229187, + "learning_rate": 1.5131741821396994e-05, + "loss": 0.4374229431152344, + "step": 78900 + }, + { + "epoch": 69.85025436850255, + "grad_norm": 0.5780676603317261, + "learning_rate": 1.5087533156498674e-05, + "loss": 0.4402974319458008, + "step": 79000 + }, + { + "epoch": 69.9387303693873, + "grad_norm": 0.5651708841323853, + "learning_rate": 1.5043324491600355e-05, + "loss": 0.44202667236328125, + "step": 79100 + }, + { + "epoch": 70.02654280026543, + "grad_norm": 0.48370227217674255, + "learning_rate": 1.4999557913351018e-05, + "loss": 0.4367184829711914, + "step": 79200 + }, + { + "epoch": 70.11501880115019, + "grad_norm": 0.5551156401634216, + "learning_rate": 1.4955349248452696e-05, + "loss": 0.42862590789794924, + "step": 79300 + }, + { + "epoch": 70.20349480203495, + "grad_norm": 0.5126725435256958, + "learning_rate": 1.4911140583554379e-05, + "loss": 0.4319373321533203, + "step": 79400 + }, + { + "epoch": 70.2919708029197, + "grad_norm": 0.5189195871353149, + "learning_rate": 1.4866931918656057e-05, + "loss": 0.4309040832519531, + "step": 79500 + }, + { + "epoch": 70.38044680380447, + "grad_norm": 0.49422213435173035, + "learning_rate": 1.4822723253757736e-05, + "loss": 0.43275665283203124, + "step": 79600 + }, + { + "epoch": 70.46892280468923, + "grad_norm": 0.49081242084503174, + "learning_rate": 1.4778514588859418e-05, + "loss": 0.4326107406616211, + "step": 79700 + }, + { + "epoch": 70.55739880557398, + "grad_norm": 0.5408063530921936, + "learning_rate": 1.4734305923961097e-05, + "loss": 0.4341436004638672, + "step": 79800 + }, + { + "epoch": 70.64587480645875, + "grad_norm": 0.4664778411388397, + "learning_rate": 1.4690097259062778e-05, + "loss": 0.4358782577514648, + "step": 79900 + }, + { + "epoch": 70.7343508073435, + "grad_norm": 0.5463866591453552, + "learning_rate": 1.4645888594164456e-05, + "loss": 0.4348703384399414, + "step": 80000 + }, + { + "epoch": 70.82282680822827, + "grad_norm": 0.5187687873840332, + "learning_rate": 1.4601679929266138e-05, + "loss": 0.43734962463378907, + "step": 80100 + }, + { + "epoch": 70.91130280911302, + "grad_norm": 0.4700576961040497, + "learning_rate": 1.4557471264367817e-05, + "loss": 0.43692012786865236, + "step": 80200 + }, + { + "epoch": 70.99977880999779, + "grad_norm": 0.5413524508476257, + "learning_rate": 1.4513262599469496e-05, + "loss": 0.43848495483398436, + "step": 80300 + }, + { + "epoch": 71.08759124087591, + "grad_norm": 0.5619797110557556, + "learning_rate": 1.4469053934571178e-05, + "loss": 0.4241709899902344, + "step": 80400 + }, + { + "epoch": 71.17606724176068, + "grad_norm": 0.5617126226425171, + "learning_rate": 1.4424845269672857e-05, + "loss": 0.42585777282714843, + "step": 80500 + }, + { + "epoch": 71.26454324264543, + "grad_norm": 0.6131432056427002, + "learning_rate": 1.4380636604774536e-05, + "loss": 0.42857707977294923, + "step": 80600 + }, + { + "epoch": 71.3530192435302, + "grad_norm": 0.5178084969520569, + "learning_rate": 1.4336427939876216e-05, + "loss": 0.4283063507080078, + "step": 80700 + }, + { + "epoch": 71.44149524441495, + "grad_norm": 0.4994112253189087, + "learning_rate": 1.4292219274977897e-05, + "loss": 0.43106334686279296, + "step": 80800 + }, + { + "epoch": 71.5299712452997, + "grad_norm": 0.5411744713783264, + "learning_rate": 1.4248010610079577e-05, + "loss": 0.43190105438232423, + "step": 80900 + }, + { + "epoch": 71.61844724618447, + "grad_norm": 0.5602013468742371, + "learning_rate": 1.4203801945181256e-05, + "loss": 0.4335565185546875, + "step": 81000 + }, + { + "epoch": 71.70692324706923, + "grad_norm": 0.5469107031822205, + "learning_rate": 1.4159593280282938e-05, + "loss": 0.4339017105102539, + "step": 81100 + }, + { + "epoch": 71.795399247954, + "grad_norm": 0.5971689224243164, + "learning_rate": 1.4115384615384617e-05, + "loss": 0.43302181243896487, + "step": 81200 + }, + { + "epoch": 71.88387524883875, + "grad_norm": 0.5518947243690491, + "learning_rate": 1.4071175950486295e-05, + "loss": 0.4339981460571289, + "step": 81300 + }, + { + "epoch": 71.97235124972352, + "grad_norm": 0.46094366908073425, + "learning_rate": 1.4026967285587974e-05, + "loss": 0.4368946075439453, + "step": 81400 + }, + { + "epoch": 72.06016368060163, + "grad_norm": 0.5013940334320068, + "learning_rate": 1.3983200707338639e-05, + "loss": 0.4272830581665039, + "step": 81500 + }, + { + "epoch": 72.1486396814864, + "grad_norm": 0.5779539346694946, + "learning_rate": 1.3938992042440318e-05, + "loss": 0.4237482452392578, + "step": 81600 + }, + { + "epoch": 72.23711568237115, + "grad_norm": 0.5799530744552612, + "learning_rate": 1.3894783377541998e-05, + "loss": 0.4221677398681641, + "step": 81700 + }, + { + "epoch": 72.32559168325592, + "grad_norm": 0.4773975908756256, + "learning_rate": 1.385057471264368e-05, + "loss": 0.4251049041748047, + "step": 81800 + }, + { + "epoch": 72.41406768414068, + "grad_norm": 0.5311180353164673, + "learning_rate": 1.380636604774536e-05, + "loss": 0.42632369995117186, + "step": 81900 + }, + { + "epoch": 72.50254368502544, + "grad_norm": 0.47812601923942566, + "learning_rate": 1.3762157382847038e-05, + "loss": 0.42722888946533205, + "step": 82000 + }, + { + "epoch": 72.5910196859102, + "grad_norm": 0.606674313545227, + "learning_rate": 1.371794871794872e-05, + "loss": 0.4295787811279297, + "step": 82100 + }, + { + "epoch": 72.67949568679495, + "grad_norm": 0.5414536595344543, + "learning_rate": 1.3673740053050399e-05, + "loss": 0.4311911392211914, + "step": 82200 + }, + { + "epoch": 72.76797168767972, + "grad_norm": 0.5214236974716187, + "learning_rate": 1.3629531388152078e-05, + "loss": 0.4323184585571289, + "step": 82300 + }, + { + "epoch": 72.85644768856447, + "grad_norm": 0.531461238861084, + "learning_rate": 1.3585322723253756e-05, + "loss": 0.43523616790771485, + "step": 82400 + }, + { + "epoch": 72.94492368944924, + "grad_norm": 0.550273597240448, + "learning_rate": 1.3541114058355439e-05, + "loss": 0.4310142517089844, + "step": 82500 + }, + { + "epoch": 73.03273612032736, + "grad_norm": 0.47776085138320923, + "learning_rate": 1.3496905393457119e-05, + "loss": 0.4287875747680664, + "step": 82600 + }, + { + "epoch": 73.12121212121212, + "grad_norm": 0.4990812838077545, + "learning_rate": 1.3452696728558798e-05, + "loss": 0.42051288604736325, + "step": 82700 + }, + { + "epoch": 73.20968812209688, + "grad_norm": 0.5124841332435608, + "learning_rate": 1.340848806366048e-05, + "loss": 0.4193102264404297, + "step": 82800 + }, + { + "epoch": 73.29816412298165, + "grad_norm": 0.5289502739906311, + "learning_rate": 1.3364279398762159e-05, + "loss": 0.42208141326904297, + "step": 82900 + }, + { + "epoch": 73.3866401238664, + "grad_norm": 0.4958449602127075, + "learning_rate": 1.3320070733863837e-05, + "loss": 0.42313686370849607, + "step": 83000 + }, + { + "epoch": 73.47511612475117, + "grad_norm": 0.5278774499893188, + "learning_rate": 1.3275862068965516e-05, + "loss": 0.42546688079833983, + "step": 83100 + }, + { + "epoch": 73.56359212563592, + "grad_norm": 0.5365238785743713, + "learning_rate": 1.3231653404067198e-05, + "loss": 0.42514255523681643, + "step": 83200 + }, + { + "epoch": 73.65206812652067, + "grad_norm": 0.5327147841453552, + "learning_rate": 1.3187444739168877e-05, + "loss": 0.42642066955566404, + "step": 83300 + }, + { + "epoch": 73.74054412740544, + "grad_norm": 0.5245737433433533, + "learning_rate": 1.3143236074270558e-05, + "loss": 0.4263890838623047, + "step": 83400 + }, + { + "epoch": 73.8290201282902, + "grad_norm": 0.5159674286842346, + "learning_rate": 1.3099027409372238e-05, + "loss": 0.428508415222168, + "step": 83500 + }, + { + "epoch": 73.91749612917496, + "grad_norm": 0.47965142130851746, + "learning_rate": 1.3054818744473918e-05, + "loss": 0.42886260986328123, + "step": 83600 + }, + { + "epoch": 74.00530856005308, + "grad_norm": 0.573679506778717, + "learning_rate": 1.301105216622458e-05, + "loss": 0.4288605499267578, + "step": 83700 + }, + { + "epoch": 74.09378456093785, + "grad_norm": 0.5544322729110718, + "learning_rate": 1.2966843501326262e-05, + "loss": 0.4174742126464844, + "step": 83800 + }, + { + "epoch": 74.1822605618226, + "grad_norm": 0.4993799030780792, + "learning_rate": 1.2922634836427941e-05, + "loss": 0.4191867828369141, + "step": 83900 + }, + { + "epoch": 74.27073656270737, + "grad_norm": 0.57634037733078, + "learning_rate": 1.287842617152962e-05, + "loss": 0.42080997467041015, + "step": 84000 + }, + { + "epoch": 74.35921256359212, + "grad_norm": 0.5524028539657593, + "learning_rate": 1.2834217506631298e-05, + "loss": 0.41995132446289063, + "step": 84100 + }, + { + "epoch": 74.44768856447689, + "grad_norm": 0.5109556913375854, + "learning_rate": 1.279000884173298e-05, + "loss": 0.4207102584838867, + "step": 84200 + }, + { + "epoch": 74.53616456536164, + "grad_norm": 0.6384374499320984, + "learning_rate": 1.2745800176834661e-05, + "loss": 0.42162609100341797, + "step": 84300 + }, + { + "epoch": 74.6246405662464, + "grad_norm": 0.5029319524765015, + "learning_rate": 1.270159151193634e-05, + "loss": 0.4232307815551758, + "step": 84400 + }, + { + "epoch": 74.71311656713117, + "grad_norm": 0.49697303771972656, + "learning_rate": 1.2657382847038022e-05, + "loss": 0.4233212661743164, + "step": 84500 + }, + { + "epoch": 74.80159256801592, + "grad_norm": 0.5748586058616638, + "learning_rate": 1.26131741821397e-05, + "loss": 0.42522281646728516, + "step": 84600 + }, + { + "epoch": 74.89006856890069, + "grad_norm": 0.5335224866867065, + "learning_rate": 1.256896551724138e-05, + "loss": 0.4264080047607422, + "step": 84700 + }, + { + "epoch": 74.97854456978544, + "grad_norm": 0.5223293900489807, + "learning_rate": 1.2524756852343058e-05, + "loss": 0.4248130416870117, + "step": 84800 + }, + { + "epoch": 75.06635700066357, + "grad_norm": 0.588205099105835, + "learning_rate": 1.2480548187444739e-05, + "loss": 0.41714618682861326, + "step": 84900 + }, + { + "epoch": 75.15483300154833, + "grad_norm": 0.4878210127353668, + "learning_rate": 1.2436339522546419e-05, + "loss": 0.41694087982177735, + "step": 85000 + }, + { + "epoch": 75.2433090024331, + "grad_norm": 0.5826809406280518, + "learning_rate": 1.23921308576481e-05, + "loss": 0.41839481353759767, + "step": 85100 + }, + { + "epoch": 75.33178500331785, + "grad_norm": 0.5703395009040833, + "learning_rate": 1.234792219274978e-05, + "loss": 0.419650993347168, + "step": 85200 + }, + { + "epoch": 75.42026100420262, + "grad_norm": 0.5960374474525452, + "learning_rate": 1.230371352785146e-05, + "loss": 0.41910491943359374, + "step": 85300 + }, + { + "epoch": 75.50873700508737, + "grad_norm": 0.5564795732498169, + "learning_rate": 1.225950486295314e-05, + "loss": 0.42010501861572264, + "step": 85400 + }, + { + "epoch": 75.59721300597214, + "grad_norm": 0.5871827006340027, + "learning_rate": 1.221529619805482e-05, + "loss": 0.41939094543457034, + "step": 85500 + }, + { + "epoch": 75.68568900685689, + "grad_norm": 0.6139041185379028, + "learning_rate": 1.2171087533156498e-05, + "loss": 0.42172611236572266, + "step": 85600 + }, + { + "epoch": 75.77416500774164, + "grad_norm": 0.5693202614784241, + "learning_rate": 1.2126878868258179e-05, + "loss": 0.4217537307739258, + "step": 85700 + }, + { + "epoch": 75.86264100862641, + "grad_norm": 0.5371018648147583, + "learning_rate": 1.208267020335986e-05, + "loss": 0.4220458984375, + "step": 85800 + }, + { + "epoch": 75.95111700951117, + "grad_norm": 0.5617541074752808, + "learning_rate": 1.2038461538461538e-05, + "loss": 0.4248412322998047, + "step": 85900 + }, + { + "epoch": 76.0389294403893, + "grad_norm": 0.5177831649780273, + "learning_rate": 1.1994694960212203e-05, + "loss": 0.41939964294433596, + "step": 86000 + }, + { + "epoch": 76.12740544127405, + "grad_norm": 0.5142802000045776, + "learning_rate": 1.1950486295313883e-05, + "loss": 0.4111063003540039, + "step": 86100 + }, + { + "epoch": 76.21588144215882, + "grad_norm": 0.4861648976802826, + "learning_rate": 1.1906277630415562e-05, + "loss": 0.4148457717895508, + "step": 86200 + }, + { + "epoch": 76.30435744304357, + "grad_norm": 0.5097411870956421, + "learning_rate": 1.1862068965517243e-05, + "loss": 0.4158660125732422, + "step": 86300 + }, + { + "epoch": 76.39283344392834, + "grad_norm": 0.4740864336490631, + "learning_rate": 1.1817860300618921e-05, + "loss": 0.4178118133544922, + "step": 86400 + }, + { + "epoch": 76.48130944481309, + "grad_norm": 0.44249430298805237, + "learning_rate": 1.1773651635720602e-05, + "loss": 0.4165281677246094, + "step": 86500 + }, + { + "epoch": 76.56978544569786, + "grad_norm": 0.5490387082099915, + "learning_rate": 1.172944297082228e-05, + "loss": 0.4198506927490234, + "step": 86600 + }, + { + "epoch": 76.65826144658261, + "grad_norm": 0.5175479650497437, + "learning_rate": 1.1685234305923961e-05, + "loss": 0.4220100402832031, + "step": 86700 + }, + { + "epoch": 76.74673744746737, + "grad_norm": 0.5073688626289368, + "learning_rate": 1.1641025641025642e-05, + "loss": 0.4184294891357422, + "step": 86800 + }, + { + "epoch": 76.83521344835214, + "grad_norm": 0.6137869358062744, + "learning_rate": 1.1596816976127322e-05, + "loss": 0.41919185638427736, + "step": 86900 + }, + { + "epoch": 76.92368944923689, + "grad_norm": 0.5274661183357239, + "learning_rate": 1.1552608311229002e-05, + "loss": 0.4193117141723633, + "step": 87000 + }, + { + "epoch": 77.01150188011502, + "grad_norm": 0.578369677066803, + "learning_rate": 1.1508399646330681e-05, + "loss": 0.4192862701416016, + "step": 87100 + }, + { + "epoch": 77.09997788099977, + "grad_norm": 0.6028936505317688, + "learning_rate": 1.1464190981432362e-05, + "loss": 0.40931896209716795, + "step": 87200 + }, + { + "epoch": 77.18845388188454, + "grad_norm": 0.4915790557861328, + "learning_rate": 1.141998231653404e-05, + "loss": 0.41025619506835936, + "step": 87300 + }, + { + "epoch": 77.2769298827693, + "grad_norm": 0.5164591073989868, + "learning_rate": 1.1375773651635721e-05, + "loss": 0.4112412643432617, + "step": 87400 + }, + { + "epoch": 77.36540588365406, + "grad_norm": 0.48311275243759155, + "learning_rate": 1.1331564986737401e-05, + "loss": 0.4144105911254883, + "step": 87500 + }, + { + "epoch": 77.45388188453882, + "grad_norm": 0.46419015526771545, + "learning_rate": 1.128735632183908e-05, + "loss": 0.41563541412353516, + "step": 87600 + }, + { + "epoch": 77.54235788542358, + "grad_norm": 0.6288944482803345, + "learning_rate": 1.124314765694076e-05, + "loss": 0.41669620513916017, + "step": 87700 + }, + { + "epoch": 77.63083388630834, + "grad_norm": 0.497126966714859, + "learning_rate": 1.1198938992042441e-05, + "loss": 0.41618637084960936, + "step": 87800 + }, + { + "epoch": 77.7193098871931, + "grad_norm": 0.5373407602310181, + "learning_rate": 1.1154730327144122e-05, + "loss": 0.41614810943603514, + "step": 87900 + }, + { + "epoch": 77.80778588807786, + "grad_norm": 0.519382894039154, + "learning_rate": 1.1110521662245802e-05, + "loss": 0.41859901428222657, + "step": 88000 + }, + { + "epoch": 77.89626188896261, + "grad_norm": 0.5001983046531677, + "learning_rate": 1.106631299734748e-05, + "loss": 0.418219108581543, + "step": 88100 + }, + { + "epoch": 77.98473788984738, + "grad_norm": 0.5034019947052002, + "learning_rate": 1.1022104332449161e-05, + "loss": 0.4178015899658203, + "step": 88200 + }, + { + "epoch": 78.0725503207255, + "grad_norm": 0.5158605575561523, + "learning_rate": 1.097789566755084e-05, + "loss": 0.4091143035888672, + "step": 88300 + }, + { + "epoch": 78.16102632161027, + "grad_norm": 0.48502761125564575, + "learning_rate": 1.093368700265252e-05, + "loss": 0.40843994140625, + "step": 88400 + }, + { + "epoch": 78.24950232249502, + "grad_norm": 0.5448765754699707, + "learning_rate": 1.08894783377542e-05, + "loss": 0.4109685516357422, + "step": 88500 + }, + { + "epoch": 78.33797832337979, + "grad_norm": 0.52455735206604, + "learning_rate": 1.084526967285588e-05, + "loss": 0.4108180236816406, + "step": 88600 + }, + { + "epoch": 78.42645432426454, + "grad_norm": 0.49440670013427734, + "learning_rate": 1.080106100795756e-05, + "loss": 0.41148426055908205, + "step": 88700 + }, + { + "epoch": 78.51493032514931, + "grad_norm": 0.5575434565544128, + "learning_rate": 1.075685234305924e-05, + "loss": 0.4121563720703125, + "step": 88800 + }, + { + "epoch": 78.60340632603406, + "grad_norm": 0.5276569724082947, + "learning_rate": 1.0712643678160921e-05, + "loss": 0.41357189178466797, + "step": 88900 + }, + { + "epoch": 78.69188232691883, + "grad_norm": 0.5279592871665955, + "learning_rate": 1.06684350132626e-05, + "loss": 0.4147018814086914, + "step": 89000 + }, + { + "epoch": 78.78035832780358, + "grad_norm": 0.4984647333621979, + "learning_rate": 1.062422634836428e-05, + "loss": 0.41413829803466795, + "step": 89100 + }, + { + "epoch": 78.86883432868834, + "grad_norm": 0.5556148886680603, + "learning_rate": 1.0580017683465959e-05, + "loss": 0.4168708419799805, + "step": 89200 + }, + { + "epoch": 78.9573103295731, + "grad_norm": 0.46219438314437866, + "learning_rate": 1.053580901856764e-05, + "loss": 0.41841983795166016, + "step": 89300 + }, + { + "epoch": 79.04512276045122, + "grad_norm": 0.49136674404144287, + "learning_rate": 1.0492042440318303e-05, + "loss": 0.41013729095458984, + "step": 89400 + }, + { + "epoch": 79.13359876133599, + "grad_norm": 0.5096011161804199, + "learning_rate": 1.0447833775419983e-05, + "loss": 0.4057589340209961, + "step": 89500 + }, + { + "epoch": 79.22207476222074, + "grad_norm": 0.4563368558883667, + "learning_rate": 1.0403625110521663e-05, + "loss": 0.4064152526855469, + "step": 89600 + }, + { + "epoch": 79.31055076310551, + "grad_norm": 0.5743097066879272, + "learning_rate": 1.0359416445623344e-05, + "loss": 0.40998432159423825, + "step": 89700 + }, + { + "epoch": 79.39902676399026, + "grad_norm": 0.46749743819236755, + "learning_rate": 1.0315207780725023e-05, + "loss": 0.40825595855712893, + "step": 89800 + }, + { + "epoch": 79.48750276487503, + "grad_norm": 0.522980272769928, + "learning_rate": 1.0270999115826703e-05, + "loss": 0.4116529083251953, + "step": 89900 + }, + { + "epoch": 79.57597876575979, + "grad_norm": 0.4576069712638855, + "learning_rate": 1.0226790450928382e-05, + "loss": 0.41039798736572264, + "step": 90000 + }, + { + "epoch": 79.66445476664455, + "grad_norm": 0.574553370475769, + "learning_rate": 1.0182581786030062e-05, + "loss": 0.4103997802734375, + "step": 90100 + }, + { + "epoch": 79.7529307675293, + "grad_norm": 0.5592597126960754, + "learning_rate": 1.0138373121131741e-05, + "loss": 0.4123684310913086, + "step": 90200 + }, + { + "epoch": 79.84140676841407, + "grad_norm": 0.5754570364952087, + "learning_rate": 1.0094164456233422e-05, + "loss": 0.4138601684570313, + "step": 90300 + }, + { + "epoch": 79.92988276929883, + "grad_norm": 0.5830336213111877, + "learning_rate": 1.0049955791335102e-05, + "loss": 0.41378173828125, + "step": 90400 + }, + { + "epoch": 80.01769520017695, + "grad_norm": 0.473369836807251, + "learning_rate": 1.0005747126436783e-05, + "loss": 0.41222110748291013, + "step": 90500 + }, + { + "epoch": 80.10617120106171, + "grad_norm": 0.5327860116958618, + "learning_rate": 9.961538461538463e-06, + "loss": 0.4058869934082031, + "step": 90600 + }, + { + "epoch": 80.19464720194647, + "grad_norm": 0.5304612517356873, + "learning_rate": 9.917329796640142e-06, + "loss": 0.4061882781982422, + "step": 90700 + }, + { + "epoch": 80.28312320283123, + "grad_norm": 0.5240916013717651, + "learning_rate": 9.873121131741822e-06, + "loss": 0.40706119537353513, + "step": 90800 + }, + { + "epoch": 80.37159920371599, + "grad_norm": 0.4663858413696289, + "learning_rate": 9.828912466843501e-06, + "loss": 0.4077639389038086, + "step": 90900 + }, + { + "epoch": 80.46007520460076, + "grad_norm": 0.4718465805053711, + "learning_rate": 9.784703801945181e-06, + "loss": 0.4078546905517578, + "step": 91000 + }, + { + "epoch": 80.54855120548551, + "grad_norm": 0.45132529735565186, + "learning_rate": 9.740495137046862e-06, + "loss": 0.40724002838134765, + "step": 91100 + }, + { + "epoch": 80.63702720637028, + "grad_norm": 0.4961422085762024, + "learning_rate": 9.69628647214854e-06, + "loss": 0.4097640609741211, + "step": 91200 + }, + { + "epoch": 80.72550320725503, + "grad_norm": 0.5276188850402832, + "learning_rate": 9.652077807250221e-06, + "loss": 0.41011890411376956, + "step": 91300 + }, + { + "epoch": 80.8139792081398, + "grad_norm": 0.48676180839538574, + "learning_rate": 9.607869142351902e-06, + "loss": 0.41075672149658204, + "step": 91400 + }, + { + "epoch": 80.90245520902455, + "grad_norm": 0.5812916159629822, + "learning_rate": 9.563660477453582e-06, + "loss": 0.4131761932373047, + "step": 91500 + }, + { + "epoch": 80.9909312099093, + "grad_norm": 0.5730577707290649, + "learning_rate": 9.51945181255526e-06, + "loss": 0.41234848022460935, + "step": 91600 + }, + { + "epoch": 81.07874364078744, + "grad_norm": 0.5240619778633118, + "learning_rate": 9.475685234305924e-06, + "loss": 0.40376312255859376, + "step": 91700 + }, + { + "epoch": 81.16721964167219, + "grad_norm": 0.46626827120780945, + "learning_rate": 9.431476569407604e-06, + "loss": 0.40396995544433595, + "step": 91800 + }, + { + "epoch": 81.25569564255696, + "grad_norm": 0.49117109179496765, + "learning_rate": 9.387267904509283e-06, + "loss": 0.4028842544555664, + "step": 91900 + }, + { + "epoch": 81.34417164344171, + "grad_norm": 0.5428334474563599, + "learning_rate": 9.343059239610964e-06, + "loss": 0.4046338653564453, + "step": 92000 + }, + { + "epoch": 81.43264764432648, + "grad_norm": 0.5240166783332825, + "learning_rate": 9.298850574712644e-06, + "loss": 0.4052513885498047, + "step": 92100 + }, + { + "epoch": 81.52112364521123, + "grad_norm": 0.4899362325668335, + "learning_rate": 9.254641909814325e-06, + "loss": 0.4052754974365234, + "step": 92200 + }, + { + "epoch": 81.609599646096, + "grad_norm": 0.46969664096832275, + "learning_rate": 9.210433244916005e-06, + "loss": 0.4072676086425781, + "step": 92300 + }, + { + "epoch": 81.69807564698075, + "grad_norm": 0.4990880489349365, + "learning_rate": 9.166224580017684e-06, + "loss": 0.40702415466308595, + "step": 92400 + }, + { + "epoch": 81.78655164786552, + "grad_norm": 0.5545535087585449, + "learning_rate": 9.122015915119364e-06, + "loss": 0.4103099822998047, + "step": 92500 + }, + { + "epoch": 81.87502764875028, + "grad_norm": 0.5591033101081848, + "learning_rate": 9.077807250221043e-06, + "loss": 0.4087317276000977, + "step": 92600 + }, + { + "epoch": 81.96350364963503, + "grad_norm": 0.5289734601974487, + "learning_rate": 9.033598585322723e-06, + "loss": 0.4112258529663086, + "step": 92700 + }, + { + "epoch": 82.05131608051316, + "grad_norm": 0.59573894739151, + "learning_rate": 8.989389920424404e-06, + "loss": 0.40506195068359374, + "step": 92800 + }, + { + "epoch": 82.13979208139791, + "grad_norm": 0.4581588804721832, + "learning_rate": 8.945181255526083e-06, + "loss": 0.401633186340332, + "step": 92900 + }, + { + "epoch": 82.22826808228268, + "grad_norm": 0.4607727527618408, + "learning_rate": 8.900972590627763e-06, + "loss": 0.4030620193481445, + "step": 93000 + }, + { + "epoch": 82.31674408316744, + "grad_norm": 0.5693869590759277, + "learning_rate": 8.856763925729444e-06, + "loss": 0.4034944152832031, + "step": 93100 + }, + { + "epoch": 82.4052200840522, + "grad_norm": 0.4679562449455261, + "learning_rate": 8.812555260831124e-06, + "loss": 0.40353385925292967, + "step": 93200 + }, + { + "epoch": 82.49369608493696, + "grad_norm": 0.4970017373561859, + "learning_rate": 8.768346595932803e-06, + "loss": 0.4040465545654297, + "step": 93300 + }, + { + "epoch": 82.58217208582172, + "grad_norm": 0.4850037097930908, + "learning_rate": 8.724137931034483e-06, + "loss": 0.40520496368408204, + "step": 93400 + }, + { + "epoch": 82.67064808670648, + "grad_norm": 0.5304952263832092, + "learning_rate": 8.679929266136164e-06, + "loss": 0.4062754440307617, + "step": 93500 + }, + { + "epoch": 82.75912408759125, + "grad_norm": 0.5124515891075134, + "learning_rate": 8.635720601237842e-06, + "loss": 0.4042987442016602, + "step": 93600 + }, + { + "epoch": 82.847600088476, + "grad_norm": 0.5527506470680237, + "learning_rate": 8.591511936339523e-06, + "loss": 0.4051095199584961, + "step": 93700 + }, + { + "epoch": 82.93607608936077, + "grad_norm": 0.4627765119075775, + "learning_rate": 8.547303271441202e-06, + "loss": 0.4065189743041992, + "step": 93800 + }, + { + "epoch": 83.02388852023888, + "grad_norm": 0.47690948843955994, + "learning_rate": 8.503094606542882e-06, + "loss": 0.4059687042236328, + "step": 93900 + }, + { + "epoch": 83.11236452112365, + "grad_norm": 0.543329656124115, + "learning_rate": 8.458885941644563e-06, + "loss": 0.40105613708496096, + "step": 94000 + }, + { + "epoch": 83.2008405220084, + "grad_norm": 0.5308240056037903, + "learning_rate": 8.414677276746243e-06, + "loss": 0.3999287414550781, + "step": 94100 + }, + { + "epoch": 83.28931652289316, + "grad_norm": 0.5098600387573242, + "learning_rate": 8.370468611847924e-06, + "loss": 0.3998809051513672, + "step": 94200 + }, + { + "epoch": 83.37779252377793, + "grad_norm": 0.5461894273757935, + "learning_rate": 8.326259946949602e-06, + "loss": 0.4027032470703125, + "step": 94300 + }, + { + "epoch": 83.46626852466268, + "grad_norm": 0.5599612593650818, + "learning_rate": 8.282051282051283e-06, + "loss": 0.4018612289428711, + "step": 94400 + }, + { + "epoch": 83.55474452554745, + "grad_norm": 0.5953245162963867, + "learning_rate": 8.237842617152961e-06, + "loss": 0.4048320770263672, + "step": 94500 + }, + { + "epoch": 83.6432205264322, + "grad_norm": 0.5232775211334229, + "learning_rate": 8.193633952254642e-06, + "loss": 0.40312889099121096, + "step": 94600 + }, + { + "epoch": 83.73169652731697, + "grad_norm": 0.5057620406150818, + "learning_rate": 8.149425287356322e-06, + "loss": 0.4016009521484375, + "step": 94700 + }, + { + "epoch": 83.82017252820172, + "grad_norm": 0.54839026927948, + "learning_rate": 8.105216622458001e-06, + "loss": 0.40390682220458984, + "step": 94800 + }, + { + "epoch": 83.90864852908649, + "grad_norm": 0.42211759090423584, + "learning_rate": 8.061007957559683e-06, + "loss": 0.4043146514892578, + "step": 94900 + }, + { + "epoch": 83.99712452997125, + "grad_norm": 0.46576666831970215, + "learning_rate": 8.016799292661362e-06, + "loss": 0.4071781539916992, + "step": 95000 + }, + { + "epoch": 84.08493696084938, + "grad_norm": 0.48286134004592896, + "learning_rate": 7.973032714412025e-06, + "loss": 0.3980902862548828, + "step": 95100 + }, + { + "epoch": 84.17341296173413, + "grad_norm": 0.5105409026145935, + "learning_rate": 7.928824049513706e-06, + "loss": 0.39626029968261717, + "step": 95200 + }, + { + "epoch": 84.26188896261888, + "grad_norm": 0.5280846357345581, + "learning_rate": 7.884615384615384e-06, + "loss": 0.39923973083496095, + "step": 95300 + }, + { + "epoch": 84.35036496350365, + "grad_norm": 0.49487778544425964, + "learning_rate": 7.840406719717065e-06, + "loss": 0.39867469787597654, + "step": 95400 + }, + { + "epoch": 84.4388409643884, + "grad_norm": 0.5105910897254944, + "learning_rate": 7.796198054818744e-06, + "loss": 0.4000941467285156, + "step": 95500 + }, + { + "epoch": 84.52731696527317, + "grad_norm": 0.49424290657043457, + "learning_rate": 7.751989389920424e-06, + "loss": 0.4025596618652344, + "step": 95600 + }, + { + "epoch": 84.61579296615793, + "grad_norm": 0.5923288464546204, + "learning_rate": 7.707780725022105e-06, + "loss": 0.40207050323486326, + "step": 95700 + }, + { + "epoch": 84.7042689670427, + "grad_norm": 0.47270065546035767, + "learning_rate": 7.663572060123785e-06, + "loss": 0.40140762329101565, + "step": 95800 + }, + { + "epoch": 84.79274496792745, + "grad_norm": 0.4515872597694397, + "learning_rate": 7.619363395225465e-06, + "loss": 0.4039121627807617, + "step": 95900 + }, + { + "epoch": 84.88122096881222, + "grad_norm": 0.5799027681350708, + "learning_rate": 7.575154730327144e-06, + "loss": 0.40215221405029294, + "step": 96000 + }, + { + "epoch": 84.96969696969697, + "grad_norm": 0.5158770680427551, + "learning_rate": 7.530946065428825e-06, + "loss": 0.40449161529541017, + "step": 96100 + }, + { + "epoch": 85.0575094005751, + "grad_norm": 0.5103220343589783, + "learning_rate": 7.4867374005305035e-06, + "loss": 0.3986453628540039, + "step": 96200 + }, + { + "epoch": 85.14598540145985, + "grad_norm": 0.48847347497940063, + "learning_rate": 7.442528735632184e-06, + "loss": 0.3962085723876953, + "step": 96300 + }, + { + "epoch": 85.2344614023446, + "grad_norm": 0.5786899328231812, + "learning_rate": 7.398320070733865e-06, + "loss": 0.398316535949707, + "step": 96400 + }, + { + "epoch": 85.32293740322937, + "grad_norm": 0.4464615285396576, + "learning_rate": 7.354111405835544e-06, + "loss": 0.39748287200927734, + "step": 96500 + }, + { + "epoch": 85.41141340411413, + "grad_norm": 0.5107320547103882, + "learning_rate": 7.3099027409372245e-06, + "loss": 0.399218864440918, + "step": 96600 + }, + { + "epoch": 85.4998894049989, + "grad_norm": 0.5555247068405151, + "learning_rate": 7.265694076038903e-06, + "loss": 0.40016975402832033, + "step": 96700 + }, + { + "epoch": 85.58836540588365, + "grad_norm": 0.46809983253479004, + "learning_rate": 7.2214854111405845e-06, + "loss": 0.39977962493896485, + "step": 96800 + }, + { + "epoch": 85.67684140676842, + "grad_norm": 0.5176143646240234, + "learning_rate": 7.177276746242263e-06, + "loss": 0.39803340911865237, + "step": 96900 + }, + { + "epoch": 85.76531740765317, + "grad_norm": 0.4717543125152588, + "learning_rate": 7.133068081343944e-06, + "loss": 0.4004299545288086, + "step": 97000 + }, + { + "epoch": 85.85379340853794, + "grad_norm": 0.49673059582710266, + "learning_rate": 7.088859416445624e-06, + "loss": 0.40104530334472654, + "step": 97100 + }, + { + "epoch": 85.94226940942269, + "grad_norm": 0.5706076622009277, + "learning_rate": 7.044650751547304e-06, + "loss": 0.40007728576660156, + "step": 97200 + }, + { + "epoch": 86.03008184030082, + "grad_norm": 0.5170352458953857, + "learning_rate": 7.000884173297967e-06, + "loss": 0.39897975921630857, + "step": 97300 + }, + { + "epoch": 86.11855784118558, + "grad_norm": 0.478630930185318, + "learning_rate": 6.956675508399646e-06, + "loss": 0.3933698272705078, + "step": 97400 + }, + { + "epoch": 86.20703384207035, + "grad_norm": 0.5094186067581177, + "learning_rate": 6.912466843501326e-06, + "loss": 0.39624488830566407, + "step": 97500 + }, + { + "epoch": 86.2955098429551, + "grad_norm": 0.5107275247573853, + "learning_rate": 6.868258178603007e-06, + "loss": 0.39685150146484377, + "step": 97600 + }, + { + "epoch": 86.38398584383985, + "grad_norm": 0.5861279964447021, + "learning_rate": 6.824049513704686e-06, + "loss": 0.3973454284667969, + "step": 97700 + }, + { + "epoch": 86.47246184472462, + "grad_norm": 0.490012526512146, + "learning_rate": 6.779840848806367e-06, + "loss": 0.3982046127319336, + "step": 97800 + }, + { + "epoch": 86.56093784560937, + "grad_norm": 0.47647538781166077, + "learning_rate": 6.7356321839080455e-06, + "loss": 0.39851917266845704, + "step": 97900 + }, + { + "epoch": 86.64941384649414, + "grad_norm": 0.45534029603004456, + "learning_rate": 6.691423519009726e-06, + "loss": 0.39754936218261716, + "step": 98000 + }, + { + "epoch": 86.7378898473789, + "grad_norm": 0.5305948257446289, + "learning_rate": 6.647214854111407e-06, + "loss": 0.39900218963623046, + "step": 98100 + }, + { + "epoch": 86.82636584826366, + "grad_norm": 0.48616868257522583, + "learning_rate": 6.603006189213086e-06, + "loss": 0.39878063201904296, + "step": 98200 + }, + { + "epoch": 86.91484184914842, + "grad_norm": 0.4637695252895355, + "learning_rate": 6.5587975243147665e-06, + "loss": 0.39936519622802735, + "step": 98300 + }, + { + "epoch": 87.00265428002655, + "grad_norm": 0.43915867805480957, + "learning_rate": 6.514588859416445e-06, + "loss": 0.39945316314697266, + "step": 98400 + }, + { + "epoch": 87.0911302809113, + "grad_norm": 0.5064729452133179, + "learning_rate": 6.4703801945181265e-06, + "loss": 0.39295291900634766, + "step": 98500 + }, + { + "epoch": 87.17960628179607, + "grad_norm": 0.41172826290130615, + "learning_rate": 6.426171529619805e-06, + "loss": 0.3956099319458008, + "step": 98600 + }, + { + "epoch": 87.26808228268082, + "grad_norm": 0.5156989693641663, + "learning_rate": 6.381962864721486e-06, + "loss": 0.3927472686767578, + "step": 98700 + }, + { + "epoch": 87.35655828356558, + "grad_norm": 0.4864855706691742, + "learning_rate": 6.337754199823166e-06, + "loss": 0.39533439636230466, + "step": 98800 + }, + { + "epoch": 87.44503428445034, + "grad_norm": 0.5469456911087036, + "learning_rate": 6.293545534924846e-06, + "loss": 0.3970512390136719, + "step": 98900 + }, + { + "epoch": 87.5335102853351, + "grad_norm": 0.4618734121322632, + "learning_rate": 6.249336870026525e-06, + "loss": 0.3967998504638672, + "step": 99000 + }, + { + "epoch": 87.62198628621987, + "grad_norm": 0.41789868474006653, + "learning_rate": 6.205128205128206e-06, + "loss": 0.3979497909545898, + "step": 99100 + }, + { + "epoch": 87.71046228710462, + "grad_norm": 0.5439488887786865, + "learning_rate": 6.1609195402298855e-06, + "loss": 0.3960274887084961, + "step": 99200 + }, + { + "epoch": 87.79893828798939, + "grad_norm": 0.46948105096817017, + "learning_rate": 6.116710875331565e-06, + "loss": 0.39781307220458983, + "step": 99300 + }, + { + "epoch": 87.88741428887414, + "grad_norm": 0.4804007411003113, + "learning_rate": 6.0725022104332456e-06, + "loss": 0.39600673675537107, + "step": 99400 + }, + { + "epoch": 87.97589028975891, + "grad_norm": 0.4494355618953705, + "learning_rate": 6.028293545534925e-06, + "loss": 0.3976548385620117, + "step": 99500 + }, + { + "epoch": 88.06370272063702, + "grad_norm": 0.4300312101840973, + "learning_rate": 5.984526967285588e-06, + "loss": 0.3928862762451172, + "step": 99600 + }, + { + "epoch": 88.15217872152179, + "grad_norm": 0.5155128836631775, + "learning_rate": 5.940318302387268e-06, + "loss": 0.39027740478515627, + "step": 99700 + }, + { + "epoch": 88.24065472240655, + "grad_norm": 0.4635615944862366, + "learning_rate": 5.896109637488948e-06, + "loss": 0.3938739776611328, + "step": 99800 + }, + { + "epoch": 88.32913072329131, + "grad_norm": 0.5408588647842407, + "learning_rate": 5.851900972590628e-06, + "loss": 0.3914863967895508, + "step": 99900 + }, + { + "epoch": 88.41760672417607, + "grad_norm": 0.5169259309768677, + "learning_rate": 5.807692307692308e-06, + "loss": 0.3942420959472656, + "step": 100000 + }, + { + "epoch": 88.50608272506082, + "grad_norm": 0.43603307008743286, + "learning_rate": 5.763483642793987e-06, + "loss": 0.3942053604125977, + "step": 100100 + }, + { + "epoch": 88.59455872594559, + "grad_norm": 0.484275758266449, + "learning_rate": 5.719274977895668e-06, + "loss": 0.3953342056274414, + "step": 100200 + }, + { + "epoch": 88.68303472683034, + "grad_norm": 0.4834429621696472, + "learning_rate": 5.675066312997348e-06, + "loss": 0.39478866577148436, + "step": 100300 + }, + { + "epoch": 88.77151072771511, + "grad_norm": 0.5198318362236023, + "learning_rate": 5.630857648099028e-06, + "loss": 0.3973033905029297, + "step": 100400 + }, + { + "epoch": 88.85998672859986, + "grad_norm": 0.5359114408493042, + "learning_rate": 5.586648983200707e-06, + "loss": 0.3963985824584961, + "step": 100500 + }, + { + "epoch": 88.94846272948463, + "grad_norm": 0.47174566984176636, + "learning_rate": 5.542440318302387e-06, + "loss": 0.39962120056152345, + "step": 100600 + }, + { + "epoch": 89.03627516036275, + "grad_norm": 0.5552394986152649, + "learning_rate": 5.498231653404067e-06, + "loss": 0.3942194747924805, + "step": 100700 + }, + { + "epoch": 89.12475116124752, + "grad_norm": 0.4985731840133667, + "learning_rate": 5.454022988505748e-06, + "loss": 0.39029048919677733, + "step": 100800 + }, + { + "epoch": 89.21322716213227, + "grad_norm": 0.5449782013893127, + "learning_rate": 5.4098143236074275e-06, + "loss": 0.391842155456543, + "step": 100900 + }, + { + "epoch": 89.30170316301704, + "grad_norm": 0.47477561235427856, + "learning_rate": 5.365605658709107e-06, + "loss": 0.39065505981445314, + "step": 101000 + }, + { + "epoch": 89.39017916390179, + "grad_norm": 0.5775418281555176, + "learning_rate": 5.3213969938107875e-06, + "loss": 0.39322795867919924, + "step": 101100 + }, + { + "epoch": 89.47865516478655, + "grad_norm": 0.44463786482810974, + "learning_rate": 5.277188328912467e-06, + "loss": 0.3929602813720703, + "step": 101200 + }, + { + "epoch": 89.56713116567131, + "grad_norm": 0.5217382311820984, + "learning_rate": 5.232979664014147e-06, + "loss": 0.3945352172851562, + "step": 101300 + }, + { + "epoch": 89.65560716655607, + "grad_norm": 0.47336575388908386, + "learning_rate": 5.188770999115826e-06, + "loss": 0.3943867492675781, + "step": 101400 + }, + { + "epoch": 89.74408316744083, + "grad_norm": 0.49890655279159546, + "learning_rate": 5.144562334217507e-06, + "loss": 0.39472442626953125, + "step": 101500 + }, + { + "epoch": 89.83255916832559, + "grad_norm": 0.4528096914291382, + "learning_rate": 5.100353669319187e-06, + "loss": 0.3927711868286133, + "step": 101600 + }, + { + "epoch": 89.92103516921036, + "grad_norm": 0.4498828649520874, + "learning_rate": 5.056145004420867e-06, + "loss": 0.3962491226196289, + "step": 101700 + }, + { + "epoch": 90.00884760008847, + "grad_norm": 0.45861297845840454, + "learning_rate": 5.0119363395225465e-06, + "loss": 0.39339271545410154, + "step": 101800 + }, + { + "epoch": 90.09732360097324, + "grad_norm": 0.5762381553649902, + "learning_rate": 4.967727674624226e-06, + "loss": 0.3896630096435547, + "step": 101900 + }, + { + "epoch": 90.185799601858, + "grad_norm": 0.5530878305435181, + "learning_rate": 4.923519009725907e-06, + "loss": 0.38933868408203126, + "step": 102000 + }, + { + "epoch": 90.27427560274276, + "grad_norm": 0.4769279360771179, + "learning_rate": 4.879310344827587e-06, + "loss": 0.38943870544433595, + "step": 102100 + }, + { + "epoch": 90.36275160362752, + "grad_norm": 0.5254392027854919, + "learning_rate": 4.835101679929267e-06, + "loss": 0.39091030120849607, + "step": 102200 + }, + { + "epoch": 90.45122760451227, + "grad_norm": 0.5098690986633301, + "learning_rate": 4.790893015030946e-06, + "loss": 0.39340557098388673, + "step": 102300 + }, + { + "epoch": 90.53970360539704, + "grad_norm": 0.5299240946769714, + "learning_rate": 4.746684350132626e-06, + "loss": 0.3925971221923828, + "step": 102400 + }, + { + "epoch": 90.62817960628179, + "grad_norm": 0.5023613572120667, + "learning_rate": 4.702475685234306e-06, + "loss": 0.3934814453125, + "step": 102500 + }, + { + "epoch": 90.71665560716656, + "grad_norm": 0.5217054486274719, + "learning_rate": 4.658267020335986e-06, + "loss": 0.39229228973388675, + "step": 102600 + }, + { + "epoch": 90.80513160805131, + "grad_norm": 0.4929801821708679, + "learning_rate": 4.6140583554376656e-06, + "loss": 0.39253700256347657, + "step": 102700 + }, + { + "epoch": 90.89360760893608, + "grad_norm": 0.4281506836414337, + "learning_rate": 4.569849690539346e-06, + "loss": 0.39423236846923826, + "step": 102800 + }, + { + "epoch": 90.98208360982083, + "grad_norm": 0.5606275796890259, + "learning_rate": 4.525641025641026e-06, + "loss": 0.39174613952636717, + "step": 102900 + }, + { + "epoch": 91.06989604069896, + "grad_norm": 0.40593966841697693, + "learning_rate": 4.481874447391689e-06, + "loss": 0.39004261016845704, + "step": 103000 + }, + { + "epoch": 91.15837204158372, + "grad_norm": 0.48218822479248047, + "learning_rate": 4.437665782493368e-06, + "loss": 0.39024349212646486, + "step": 103100 + }, + { + "epoch": 91.24684804246849, + "grad_norm": 0.4803628623485565, + "learning_rate": 4.393457117595049e-06, + "loss": 0.3893236541748047, + "step": 103200 + }, + { + "epoch": 91.33532404335324, + "grad_norm": 0.5424004197120667, + "learning_rate": 4.349248452696729e-06, + "loss": 0.3895704650878906, + "step": 103300 + }, + { + "epoch": 91.423800044238, + "grad_norm": 0.4238603711128235, + "learning_rate": 4.305039787798409e-06, + "loss": 0.3891864776611328, + "step": 103400 + }, + { + "epoch": 91.51227604512276, + "grad_norm": 0.5425596833229065, + "learning_rate": 4.2608311229000885e-06, + "loss": 0.3902478408813477, + "step": 103500 + }, + { + "epoch": 91.60075204600751, + "grad_norm": 0.529647946357727, + "learning_rate": 4.216622458001768e-06, + "loss": 0.39207550048828127, + "step": 103600 + }, + { + "epoch": 91.68922804689228, + "grad_norm": 0.42155396938323975, + "learning_rate": 4.1724137931034486e-06, + "loss": 0.3911063766479492, + "step": 103700 + }, + { + "epoch": 91.77770404777704, + "grad_norm": 0.4809010326862335, + "learning_rate": 4.128205128205129e-06, + "loss": 0.3927000427246094, + "step": 103800 + }, + { + "epoch": 91.8661800486618, + "grad_norm": 0.4598400890827179, + "learning_rate": 4.083996463306809e-06, + "loss": 0.38986122131347656, + "step": 103900 + }, + { + "epoch": 91.95465604954656, + "grad_norm": 0.52349853515625, + "learning_rate": 4.039787798408488e-06, + "loss": 0.3922639465332031, + "step": 104000 + }, + { + "epoch": 92.04246848042469, + "grad_norm": 0.5118280053138733, + "learning_rate": 3.996021220159151e-06, + "loss": 0.388396110534668, + "step": 104100 + }, + { + "epoch": 92.13094448130944, + "grad_norm": 0.49287110567092896, + "learning_rate": 3.951812555260832e-06, + "loss": 0.3882394027709961, + "step": 104200 + }, + { + "epoch": 92.21942048219421, + "grad_norm": 0.5597590804100037, + "learning_rate": 3.9076038903625115e-06, + "loss": 0.38768112182617187, + "step": 104300 + }, + { + "epoch": 92.30789648307896, + "grad_norm": 0.49123573303222656, + "learning_rate": 3.863395225464191e-06, + "loss": 0.38717472076416015, + "step": 104400 + }, + { + "epoch": 92.39637248396373, + "grad_norm": 0.5490599870681763, + "learning_rate": 3.819186560565871e-06, + "loss": 0.38968246459960937, + "step": 104500 + }, + { + "epoch": 92.48484848484848, + "grad_norm": 0.563377857208252, + "learning_rate": 3.7749778956675507e-06, + "loss": 0.3879422760009766, + "step": 104600 + }, + { + "epoch": 92.57332448573324, + "grad_norm": 0.5248238444328308, + "learning_rate": 3.7307692307692308e-06, + "loss": 0.3904239654541016, + "step": 104700 + }, + { + "epoch": 92.661800486618, + "grad_norm": 0.5977566242218018, + "learning_rate": 3.6865605658709104e-06, + "loss": 0.39140804290771486, + "step": 104800 + }, + { + "epoch": 92.75027648750276, + "grad_norm": 0.4992641508579254, + "learning_rate": 3.6423519009725912e-06, + "loss": 0.390025749206543, + "step": 104900 + }, + { + "epoch": 92.83875248838753, + "grad_norm": 0.5491787791252136, + "learning_rate": 3.598143236074271e-06, + "loss": 0.39107063293457034, + "step": 105000 + }, + { + "epoch": 92.92722848927228, + "grad_norm": 0.46409890055656433, + "learning_rate": 3.553934571175951e-06, + "loss": 0.3911115264892578, + "step": 105100 + }, + { + "epoch": 93.01504092015041, + "grad_norm": 0.5469849705696106, + "learning_rate": 3.5097259062776305e-06, + "loss": 0.3916855621337891, + "step": 105200 + }, + { + "epoch": 93.10351692103517, + "grad_norm": 0.496277391910553, + "learning_rate": 3.4655172413793105e-06, + "loss": 0.3867160415649414, + "step": 105300 + }, + { + "epoch": 93.19199292191993, + "grad_norm": 0.42929497361183167, + "learning_rate": 3.42130857648099e-06, + "loss": 0.38718021392822266, + "step": 105400 + }, + { + "epoch": 93.28046892280469, + "grad_norm": 0.406601220369339, + "learning_rate": 3.3770999115826706e-06, + "loss": 0.386837272644043, + "step": 105500 + }, + { + "epoch": 93.36894492368945, + "grad_norm": 0.48087212443351746, + "learning_rate": 3.3328912466843506e-06, + "loss": 0.3877327346801758, + "step": 105600 + }, + { + "epoch": 93.45742092457421, + "grad_norm": 0.5117219090461731, + "learning_rate": 3.2886825817860302e-06, + "loss": 0.38803070068359374, + "step": 105700 + }, + { + "epoch": 93.54589692545898, + "grad_norm": 0.6043857932090759, + "learning_rate": 3.2444739168877103e-06, + "loss": 0.38934085845947264, + "step": 105800 + }, + { + "epoch": 93.63437292634373, + "grad_norm": 0.5303599238395691, + "learning_rate": 3.20026525198939e-06, + "loss": 0.3872317123413086, + "step": 105900 + }, + { + "epoch": 93.72284892722848, + "grad_norm": 0.48868313431739807, + "learning_rate": 3.15605658709107e-06, + "loss": 0.3903642272949219, + "step": 106000 + }, + { + "epoch": 93.81132492811325, + "grad_norm": 0.5126668810844421, + "learning_rate": 3.11184792219275e-06, + "loss": 0.3893658447265625, + "step": 106100 + }, + { + "epoch": 93.899800928998, + "grad_norm": 0.5788067579269409, + "learning_rate": 3.06763925729443e-06, + "loss": 0.3887732315063477, + "step": 106200 + }, + { + "epoch": 93.98827692988277, + "grad_norm": 0.5931738615036011, + "learning_rate": 3.0234305923961096e-06, + "loss": 0.3858309555053711, + "step": 106300 + }, + { + "epoch": 94.07608936076089, + "grad_norm": 0.4667378067970276, + "learning_rate": 2.9792219274977896e-06, + "loss": 0.3882503128051758, + "step": 106400 + }, + { + "epoch": 94.16456536164566, + "grad_norm": 0.4540467858314514, + "learning_rate": 2.9350132625994697e-06, + "loss": 0.3879624557495117, + "step": 106500 + }, + { + "epoch": 94.25304136253041, + "grad_norm": 0.5249928832054138, + "learning_rate": 2.8908045977011493e-06, + "loss": 0.3871700668334961, + "step": 106600 + }, + { + "epoch": 94.34151736341518, + "grad_norm": 0.4902016520500183, + "learning_rate": 2.8465959328028297e-06, + "loss": 0.3865641403198242, + "step": 106700 + }, + { + "epoch": 94.42999336429993, + "grad_norm": 0.4490734934806824, + "learning_rate": 2.8023872679045093e-06, + "loss": 0.3874678039550781, + "step": 106800 + }, + { + "epoch": 94.5184693651847, + "grad_norm": 0.39259180426597595, + "learning_rate": 2.7581786030061894e-06, + "loss": 0.3864010238647461, + "step": 106900 + }, + { + "epoch": 94.60694536606945, + "grad_norm": 0.5160086154937744, + "learning_rate": 2.7139699381078694e-06, + "loss": 0.38762042999267576, + "step": 107000 + }, + { + "epoch": 94.6954213669542, + "grad_norm": 0.5112566947937012, + "learning_rate": 2.669761273209549e-06, + "loss": 0.38802257537841794, + "step": 107100 + }, + { + "epoch": 94.78389736783897, + "grad_norm": 0.48586076498031616, + "learning_rate": 2.625552608311229e-06, + "loss": 0.3883600616455078, + "step": 107200 + }, + { + "epoch": 94.87237336872373, + "grad_norm": 0.5169211626052856, + "learning_rate": 2.581343943412909e-06, + "loss": 0.38775413513183593, + "step": 107300 + }, + { + "epoch": 94.9608493696085, + "grad_norm": 0.4262998700141907, + "learning_rate": 2.537135278514589e-06, + "loss": 0.3891670608520508, + "step": 107400 + }, + { + "epoch": 95.04866180048661, + "grad_norm": 0.4452260434627533, + "learning_rate": 2.4929266136162687e-06, + "loss": 0.38474632263183595, + "step": 107500 + }, + { + "epoch": 95.13713780137138, + "grad_norm": 0.5349674820899963, + "learning_rate": 2.4487179487179488e-06, + "loss": 0.3851365661621094, + "step": 107600 + }, + { + "epoch": 95.22561380225613, + "grad_norm": 0.4277512729167938, + "learning_rate": 2.404509283819629e-06, + "loss": 0.38448490142822267, + "step": 107700 + }, + { + "epoch": 95.3140898031409, + "grad_norm": 0.5199966430664062, + "learning_rate": 2.360300618921309e-06, + "loss": 0.3855178451538086, + "step": 107800 + }, + { + "epoch": 95.40256580402566, + "grad_norm": 0.49931713938713074, + "learning_rate": 2.3160919540229885e-06, + "loss": 0.38597549438476564, + "step": 107900 + }, + { + "epoch": 95.49104180491042, + "grad_norm": 0.44888851046562195, + "learning_rate": 2.2718832891246685e-06, + "loss": 0.38637237548828124, + "step": 108000 + }, + { + "epoch": 95.57951780579518, + "grad_norm": 0.48020413517951965, + "learning_rate": 2.2276746242263485e-06, + "loss": 0.3860820388793945, + "step": 108100 + }, + { + "epoch": 95.66799380667993, + "grad_norm": 0.49320459365844727, + "learning_rate": 2.183465959328028e-06, + "loss": 0.3868730926513672, + "step": 108200 + }, + { + "epoch": 95.7564698075647, + "grad_norm": 0.4776149392127991, + "learning_rate": 2.1392572944297086e-06, + "loss": 0.38699729919433595, + "step": 108300 + }, + { + "epoch": 95.84494580844945, + "grad_norm": 0.4394153356552124, + "learning_rate": 2.095048629531388e-06, + "loss": 0.3858388137817383, + "step": 108400 + }, + { + "epoch": 95.93342180933422, + "grad_norm": 0.40809816122055054, + "learning_rate": 2.0508399646330682e-06, + "loss": 0.3865514373779297, + "step": 108500 + }, + { + "epoch": 96.02123424021234, + "grad_norm": 0.40297845005989075, + "learning_rate": 2.0070733863837314e-06, + "loss": 0.38520877838134765, + "step": 108600 + }, + { + "epoch": 96.1097102410971, + "grad_norm": 0.4992787837982178, + "learning_rate": 1.9628647214854114e-06, + "loss": 0.3824159622192383, + "step": 108700 + }, + { + "epoch": 96.19818624198186, + "grad_norm": 0.4386002719402313, + "learning_rate": 1.918656056587091e-06, + "loss": 0.3828225326538086, + "step": 108800 + }, + { + "epoch": 96.28666224286663, + "grad_norm": 0.4839923679828644, + "learning_rate": 1.874447391688771e-06, + "loss": 0.3837508392333984, + "step": 108900 + }, + { + "epoch": 96.37513824375138, + "grad_norm": 0.5360403656959534, + "learning_rate": 1.830238726790451e-06, + "loss": 0.3868670654296875, + "step": 109000 + }, + { + "epoch": 96.46361424463615, + "grad_norm": 0.5472413897514343, + "learning_rate": 1.786030061892131e-06, + "loss": 0.38740249633789064, + "step": 109100 + }, + { + "epoch": 96.5520902455209, + "grad_norm": 0.4783819019794464, + "learning_rate": 1.7418213969938107e-06, + "loss": 0.3851567459106445, + "step": 109200 + }, + { + "epoch": 96.64056624640567, + "grad_norm": 0.5319016575813293, + "learning_rate": 1.6976127320954906e-06, + "loss": 0.38549720764160156, + "step": 109300 + }, + { + "epoch": 96.72904224729042, + "grad_norm": 0.4579726755619049, + "learning_rate": 1.6534040671971708e-06, + "loss": 0.38684429168701173, + "step": 109400 + }, + { + "epoch": 96.81751824817518, + "grad_norm": 0.4699755012989044, + "learning_rate": 1.6091954022988506e-06, + "loss": 0.3849377822875977, + "step": 109500 + }, + { + "epoch": 96.90599424905994, + "grad_norm": 0.5681434273719788, + "learning_rate": 1.5649867374005304e-06, + "loss": 0.38494167327880857, + "step": 109600 + }, + { + "epoch": 96.9944702499447, + "grad_norm": 0.40921762585639954, + "learning_rate": 1.5207780725022105e-06, + "loss": 0.3864158630371094, + "step": 109700 + }, + { + "epoch": 97.08228268082283, + "grad_norm": 0.5271804928779602, + "learning_rate": 1.4765694076038905e-06, + "loss": 0.3854814529418945, + "step": 109800 + }, + { + "epoch": 97.17075868170758, + "grad_norm": 0.5390716195106506, + "learning_rate": 1.4323607427055703e-06, + "loss": 0.3826302719116211, + "step": 109900 + }, + { + "epoch": 97.25923468259235, + "grad_norm": 0.4738744795322418, + "learning_rate": 1.3881520778072502e-06, + "loss": 0.3834680938720703, + "step": 110000 + }, + { + "epoch": 97.3477106834771, + "grad_norm": 0.47226211428642273, + "learning_rate": 1.3439434129089302e-06, + "loss": 0.383985595703125, + "step": 110100 + }, + { + "epoch": 97.43618668436187, + "grad_norm": 0.44581323862075806, + "learning_rate": 1.29973474801061e-06, + "loss": 0.38392398834228514, + "step": 110200 + }, + { + "epoch": 97.52466268524662, + "grad_norm": 0.505975067615509, + "learning_rate": 1.25552608311229e-06, + "loss": 0.3842586898803711, + "step": 110300 + }, + { + "epoch": 97.61313868613139, + "grad_norm": 0.4737127125263214, + "learning_rate": 1.21131741821397e-06, + "loss": 0.3853626251220703, + "step": 110400 + }, + { + "epoch": 97.70161468701615, + "grad_norm": 0.42337724566459656, + "learning_rate": 1.16710875331565e-06, + "loss": 0.3860707092285156, + "step": 110500 + }, + { + "epoch": 97.7900906879009, + "grad_norm": 0.470935583114624, + "learning_rate": 1.12290008841733e-06, + "loss": 0.3849189758300781, + "step": 110600 + }, + { + "epoch": 97.87856668878567, + "grad_norm": 0.5499629974365234, + "learning_rate": 1.0786914235190098e-06, + "loss": 0.3849348068237305, + "step": 110700 + }, + { + "epoch": 97.96704268967042, + "grad_norm": 0.5295959711074829, + "learning_rate": 1.0344827586206898e-06, + "loss": 0.3844482040405273, + "step": 110800 + }, + { + "epoch": 98.05485512054855, + "grad_norm": 0.510218620300293, + "learning_rate": 9.902740937223696e-07, + "loss": 0.38250988006591796, + "step": 110900 + }, + { + "epoch": 98.1433311214333, + "grad_norm": 0.46240198612213135, + "learning_rate": 9.460654288240495e-07, + "loss": 0.38357555389404296, + "step": 111000 + }, + { + "epoch": 98.23180712231807, + "grad_norm": 0.5413907170295715, + "learning_rate": 9.018567639257295e-07, + "loss": 0.3835936737060547, + "step": 111100 + }, + { + "epoch": 98.32028312320283, + "grad_norm": 0.5282194018363953, + "learning_rate": 8.576480990274095e-07, + "loss": 0.38462539672851564, + "step": 111200 + }, + { + "epoch": 98.4087591240876, + "grad_norm": 0.4430619478225708, + "learning_rate": 8.134394341290893e-07, + "loss": 0.3831254196166992, + "step": 111300 + }, + { + "epoch": 98.49723512497235, + "grad_norm": 0.4520755410194397, + "learning_rate": 7.692307692307694e-07, + "loss": 0.38387767791748045, + "step": 111400 + }, + { + "epoch": 98.58571112585712, + "grad_norm": 0.42326220870018005, + "learning_rate": 7.250221043324492e-07, + "loss": 0.38382118225097656, + "step": 111500 + }, + { + "epoch": 98.67418712674187, + "grad_norm": 0.5536217093467712, + "learning_rate": 6.808134394341291e-07, + "loss": 0.3837322998046875, + "step": 111600 + }, + { + "epoch": 98.76266312762664, + "grad_norm": 0.47729530930519104, + "learning_rate": 6.36604774535809e-07, + "loss": 0.3840275192260742, + "step": 111700 + }, + { + "epoch": 98.85113912851139, + "grad_norm": 0.4712120294570923, + "learning_rate": 5.92396109637489e-07, + "loss": 0.3826910400390625, + "step": 111800 + }, + { + "epoch": 98.93961512939615, + "grad_norm": 0.4533778727054596, + "learning_rate": 5.481874447391689e-07, + "loss": 0.3849251174926758, + "step": 111900 + }, + { + "epoch": 99.02742756027428, + "grad_norm": 0.4762660264968872, + "learning_rate": 5.04420866489832e-07, + "loss": 0.38347198486328127, + "step": 112000 + }, + { + "epoch": 99.11590356115903, + "grad_norm": 0.49900203943252563, + "learning_rate": 4.6021220159151197e-07, + "loss": 0.38361885070800783, + "step": 112100 + }, + { + "epoch": 99.2043795620438, + "grad_norm": 0.5499697923660278, + "learning_rate": 4.1600353669319184e-07, + "loss": 0.38323490142822264, + "step": 112200 + }, + { + "epoch": 99.29285556292855, + "grad_norm": 0.49698564410209656, + "learning_rate": 3.717948717948718e-07, + "loss": 0.38394325256347656, + "step": 112300 + }, + { + "epoch": 99.38133156381332, + "grad_norm": 0.5000177621841431, + "learning_rate": 3.2758620689655175e-07, + "loss": 0.3833367156982422, + "step": 112400 + }, + { + "epoch": 99.46980756469807, + "grad_norm": 0.46179404854774475, + "learning_rate": 2.833775419982317e-07, + "loss": 0.38318233489990233, + "step": 112500 + }, + { + "epoch": 99.55828356558284, + "grad_norm": 0.5522571802139282, + "learning_rate": 2.391688770999116e-07, + "loss": 0.38181392669677733, + "step": 112600 + }, + { + "epoch": 99.6467595664676, + "grad_norm": 0.4453877806663513, + "learning_rate": 1.949602122015915e-07, + "loss": 0.38297233581542967, + "step": 112700 + } + ], + "logging_steps": 100, + "max_steps": 113100, + "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": 3.126803891473613e+16, + "train_batch_size": 8, + "trial_name": null, + "trial_params": null +} diff --git a/timecost/m8/realtabformer/rtf-m8-20260430_214424/rtf_checkpoints/checkpoint-112700/training_args.bin b/timecost/m8/realtabformer/rtf-m8-20260430_214424/rtf_checkpoints/checkpoint-112700/training_args.bin new file mode 100644 index 0000000000000000000000000000000000000000..34d68dc0e0fe1c1f12a2e581dd1b166aa7178a9e --- /dev/null +++ b/timecost/m8/realtabformer/rtf-m8-20260430_214424/rtf_checkpoints/checkpoint-112700/training_args.bin @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:9e2cd88337d1d846c6918d2b3b63fa3e5c93f12fefc082497590da854a564607 +size 5201 diff --git a/timecost/m8/realtabformer/rtf-m8-20260430_214424/rtf_checkpoints/checkpoint-112800/config.json b/timecost/m8/realtabformer/rtf-m8-20260430_214424/rtf_checkpoints/checkpoint-112800/config.json new file mode 100644 index 0000000000000000000000000000000000000000..d98dd02b920679d4da3c8b60a9be119058fb9fe3 --- /dev/null +++ b/timecost/m8/realtabformer/rtf-m8-20260430_214424/rtf_checkpoints/checkpoint-112800/config.json @@ -0,0 +1,34 @@ +{ + "activation_function": "gelu_new", + "add_cross_attention": false, + "architectures": [ + "GPT2LMHeadModel" + ], + "attn_pdrop": 0.1, + "bos_token_id": 5, + "dtype": "float32", + "embd_pdrop": 0.1, + "eos_token_id": 6, + "initializer_range": 0.02, + "layer_norm_epsilon": 1e-05, + "model_type": "gpt2", + "n_embd": 768, + "n_head": 12, + "n_inner": null, + "n_layer": 6, + "n_positions": 1024, + "pad_token_id": null, + "reorder_and_upcast_attn": false, + "resid_pdrop": 0.1, + "scale_attn_by_inverse_layer_idx": false, + "scale_attn_weights": true, + "summary_activation": null, + "summary_first_dropout": 0.1, + "summary_proj_to_labels": true, + "summary_type": "cls_index", + "summary_use_proj": true, + "tie_word_embeddings": true, + "transformers_version": "5.5.3", + "use_cache": false, + "vocab_size": 244 +} diff --git a/timecost/m8/realtabformer/rtf-m8-20260430_214424/rtf_checkpoints/checkpoint-112800/generation_config.json b/timecost/m8/realtabformer/rtf-m8-20260430_214424/rtf_checkpoints/checkpoint-112800/generation_config.json new file mode 100644 index 0000000000000000000000000000000000000000..ffe89567780e75b5c22eade9be971483b9618f39 --- /dev/null +++ b/timecost/m8/realtabformer/rtf-m8-20260430_214424/rtf_checkpoints/checkpoint-112800/generation_config.json @@ -0,0 +1,9 @@ +{ + "_from_model_config": true, + "bos_token_id": 5, + "eos_token_id": 6, + "output_attentions": false, + "output_hidden_states": false, + "transformers_version": "5.5.3", + "use_cache": true +} diff --git a/timecost/m8/realtabformer/rtf-m8-20260430_214424/rtf_checkpoints/checkpoint-112800/model.safetensors b/timecost/m8/realtabformer/rtf-m8-20260430_214424/rtf_checkpoints/checkpoint-112800/model.safetensors new file mode 100644 index 0000000000000000000000000000000000000000..9d20c60c2537fa105a8073522afaf0f2e3666554 --- /dev/null +++ b/timecost/m8/realtabformer/rtf-m8-20260430_214424/rtf_checkpoints/checkpoint-112800/model.safetensors @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:d636bb1cfe63b77c816faa52c3a7c33c7b0911b7baac157bc4ad74b9cae2d142 +size 174017992 diff --git a/timecost/m8/realtabformer/rtf-m8-20260430_214424/rtf_checkpoints/checkpoint-112800/optimizer.pt b/timecost/m8/realtabformer/rtf-m8-20260430_214424/rtf_checkpoints/checkpoint-112800/optimizer.pt new file mode 100644 index 0000000000000000000000000000000000000000..21ffa168113d50d60ad09f53a82336b45c72ff23 --- /dev/null +++ b/timecost/m8/realtabformer/rtf-m8-20260430_214424/rtf_checkpoints/checkpoint-112800/optimizer.pt @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:612b282f2b7c85568fe4ed5b3a55449e7dfcca243ff897bfdfd7718ca85b278a +size 348085067 diff --git a/timecost/m8/realtabformer/rtf-m8-20260430_214424/rtf_checkpoints/checkpoint-112800/rng_state.pth b/timecost/m8/realtabformer/rtf-m8-20260430_214424/rtf_checkpoints/checkpoint-112800/rng_state.pth new file mode 100644 index 0000000000000000000000000000000000000000..37269c50183f3de8e2dd89ecaa76b6e79346289e --- /dev/null +++ b/timecost/m8/realtabformer/rtf-m8-20260430_214424/rtf_checkpoints/checkpoint-112800/rng_state.pth @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:fbd6f6922d9d1e9cd38b109fb9eb3832c3d0e1b75e449738b197968c6757c310 +size 14645 diff --git a/timecost/m8/realtabformer/rtf-m8-20260430_214424/rtf_checkpoints/checkpoint-112800/scaler.pt b/timecost/m8/realtabformer/rtf-m8-20260430_214424/rtf_checkpoints/checkpoint-112800/scaler.pt new file mode 100644 index 0000000000000000000000000000000000000000..abe70877dd89a2dd90995b27e9b7e9e81d51ce2b --- /dev/null +++ b/timecost/m8/realtabformer/rtf-m8-20260430_214424/rtf_checkpoints/checkpoint-112800/scaler.pt @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:cd6edeb9f2fdc35c079ce001cffc7a1cd549e5704b0e28decf55cc2529341689 +size 1383 diff --git a/timecost/m8/realtabformer/rtf-m8-20260430_214424/rtf_checkpoints/checkpoint-112800/scheduler.pt b/timecost/m8/realtabformer/rtf-m8-20260430_214424/rtf_checkpoints/checkpoint-112800/scheduler.pt new file mode 100644 index 0000000000000000000000000000000000000000..40b535aa93da45b1e90f5025e5ca2d15020306e6 --- /dev/null +++ b/timecost/m8/realtabformer/rtf-m8-20260430_214424/rtf_checkpoints/checkpoint-112800/scheduler.pt @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:5f7f3fe1fc7740bfecff80c1180ef4ce830c23467c63514c785789d29d7539ab +size 1465 diff --git a/timecost/m8/realtabformer/rtf-m8-20260430_214424/rtf_checkpoints/checkpoint-112800/trainer_state.json b/timecost/m8/realtabformer/rtf-m8-20260430_214424/rtf_checkpoints/checkpoint-112800/trainer_state.json new file mode 100644 index 0000000000000000000000000000000000000000..0052c41e82901407f3d9f6c9451fe08bbada976c --- /dev/null +++ b/timecost/m8/realtabformer/rtf-m8-20260430_214424/rtf_checkpoints/checkpoint-112800/trainer_state.json @@ -0,0 +1,7930 @@ +{ + "best_global_step": null, + "best_metric": null, + "best_model_checkpoint": null, + "epoch": 99.73523556735236, + "eval_steps": 100, + "global_step": 112800, + "is_hyper_param_search": false, + "is_local_process_zero": true, + "is_world_process_zero": true, + "log_history": [ + { + "epoch": 0.08847600088476001, + "grad_norm": 0.27971890568733215, + "learning_rate": 4.9956233421750666e-05, + "loss": 1.6012767028808594, + "step": 100 + }, + { + "epoch": 0.17695200176952003, + "grad_norm": 0.2532733976840973, + "learning_rate": 4.991202475685234e-05, + "loss": 1.0460629272460937, + "step": 200 + }, + { + "epoch": 0.26542800265428, + "grad_norm": 0.22527219355106354, + "learning_rate": 4.986781609195402e-05, + "loss": 1.0045037841796876, + "step": 300 + }, + { + "epoch": 0.35390400353904006, + "grad_norm": 0.2071678638458252, + "learning_rate": 4.982360742705571e-05, + "loss": 0.9934071350097656, + "step": 400 + }, + { + "epoch": 0.44238000442380004, + "grad_norm": 0.21996082365512848, + "learning_rate": 4.977939876215739e-05, + "loss": 0.9807382965087891, + "step": 500 + }, + { + "epoch": 0.53085600530856, + "grad_norm": 0.20051148533821106, + "learning_rate": 4.9735190097259064e-05, + "loss": 0.9772834014892579, + "step": 600 + }, + { + "epoch": 0.6193320061933201, + "grad_norm": 0.20692776143550873, + "learning_rate": 4.969098143236074e-05, + "loss": 0.9733844757080078, + "step": 700 + }, + { + "epoch": 0.7078080070780801, + "grad_norm": 0.22139734029769897, + "learning_rate": 4.9646772767462425e-05, + "loss": 0.9641999053955078, + "step": 800 + }, + { + "epoch": 0.79628400796284, + "grad_norm": 0.20099565386772156, + "learning_rate": 4.96025641025641e-05, + "loss": 0.9590901947021484, + "step": 900 + }, + { + "epoch": 0.8847600088476001, + "grad_norm": 0.19050444662570953, + "learning_rate": 4.955835543766578e-05, + "loss": 0.9558430480957031, + "step": 1000 + }, + { + "epoch": 0.9732360097323601, + "grad_norm": 0.20780153572559357, + "learning_rate": 4.951414677276747e-05, + "loss": 0.9558073425292969, + "step": 1100 + }, + { + "epoch": 1.0610484406104843, + "grad_norm": 0.20002400875091553, + "learning_rate": 4.946993810786915e-05, + "loss": 0.9575533294677734, + "step": 1200 + }, + { + "epoch": 1.1495244414952444, + "grad_norm": 0.19394151866436005, + "learning_rate": 4.9425729442970824e-05, + "loss": 0.9556401824951172, + "step": 1300 + }, + { + "epoch": 1.2380004423800044, + "grad_norm": 0.19420816004276276, + "learning_rate": 4.93815207780725e-05, + "loss": 0.948358154296875, + "step": 1400 + }, + { + "epoch": 1.3264764432647644, + "grad_norm": 0.2109377682209015, + "learning_rate": 4.9337312113174185e-05, + "loss": 0.9507483673095704, + "step": 1500 + }, + { + "epoch": 1.4149524441495245, + "grad_norm": 0.19577011466026306, + "learning_rate": 4.929310344827586e-05, + "loss": 0.9544251251220703, + "step": 1600 + }, + { + "epoch": 1.5034284450342845, + "grad_norm": 0.17374339699745178, + "learning_rate": 4.924889478337754e-05, + "loss": 0.9495613098144531, + "step": 1700 + }, + { + "epoch": 1.5919044459190443, + "grad_norm": 0.1539471447467804, + "learning_rate": 4.920468611847922e-05, + "loss": 0.946780014038086, + "step": 1800 + }, + { + "epoch": 1.6803804468038046, + "grad_norm": 0.21705853939056396, + "learning_rate": 4.916047745358091e-05, + "loss": 0.9456329345703125, + "step": 1900 + }, + { + "epoch": 1.7688564476885644, + "grad_norm": 0.18109191954135895, + "learning_rate": 4.9116268788682584e-05, + "loss": 0.9452082061767578, + "step": 2000 + }, + { + "epoch": 1.8573324485733245, + "grad_norm": 0.18233413994312286, + "learning_rate": 4.907206012378426e-05, + "loss": 0.9436309051513672, + "step": 2100 + }, + { + "epoch": 1.9458084494580845, + "grad_norm": 0.19978198409080505, + "learning_rate": 4.9027851458885945e-05, + "loss": 0.9466010284423828, + "step": 2200 + }, + { + "epoch": 2.033620880336209, + "grad_norm": 0.19425439834594727, + "learning_rate": 4.898364279398762e-05, + "loss": 0.9419589233398438, + "step": 2300 + }, + { + "epoch": 2.1220968812209686, + "grad_norm": 0.18522261083126068, + "learning_rate": 4.8939434129089306e-05, + "loss": 0.9406929779052734, + "step": 2400 + }, + { + "epoch": 2.210572882105729, + "grad_norm": 0.18092288076877594, + "learning_rate": 4.889522546419098e-05, + "loss": 0.9394661712646485, + "step": 2500 + }, + { + "epoch": 2.2990488829904887, + "grad_norm": 0.16110995411872864, + "learning_rate": 4.885101679929267e-05, + "loss": 0.9415554809570312, + "step": 2600 + }, + { + "epoch": 2.387524883875249, + "grad_norm": 0.1742609441280365, + "learning_rate": 4.8806808134394344e-05, + "loss": 0.9385026550292969, + "step": 2700 + }, + { + "epoch": 2.476000884760009, + "grad_norm": 0.1893293261528015, + "learning_rate": 4.876259946949602e-05, + "loss": 0.9374285125732422, + "step": 2800 + }, + { + "epoch": 2.564476885644769, + "grad_norm": 0.17022491991519928, + "learning_rate": 4.8718390804597705e-05, + "loss": 0.9414189910888672, + "step": 2900 + }, + { + "epoch": 2.652952886529529, + "grad_norm": 0.1820104867219925, + "learning_rate": 4.867418213969938e-05, + "loss": 0.9428114318847656, + "step": 3000 + }, + { + "epoch": 2.7414288874142887, + "grad_norm": 0.1591845154762268, + "learning_rate": 4.8629973474801066e-05, + "loss": 0.9408238220214844, + "step": 3100 + }, + { + "epoch": 2.829904888299049, + "grad_norm": 0.16679565608501434, + "learning_rate": 4.858576480990274e-05, + "loss": 0.9357293701171875, + "step": 3200 + }, + { + "epoch": 2.918380889183809, + "grad_norm": 0.1608530431985855, + "learning_rate": 4.854155614500443e-05, + "loss": 0.9437465667724609, + "step": 3300 + }, + { + "epoch": 3.006193320061933, + "grad_norm": 0.17832520604133606, + "learning_rate": 4.8497347480106104e-05, + "loss": 0.9349425506591796, + "step": 3400 + }, + { + "epoch": 3.0946693209466933, + "grad_norm": 0.18095993995666504, + "learning_rate": 4.845313881520778e-05, + "loss": 0.9341915130615235, + "step": 3500 + }, + { + "epoch": 3.183145321831453, + "grad_norm": 0.15083801746368408, + "learning_rate": 4.8408930150309465e-05, + "loss": 0.9406319427490234, + "step": 3600 + }, + { + "epoch": 3.2716213227162134, + "grad_norm": 0.17318469285964966, + "learning_rate": 4.836472148541114e-05, + "loss": 0.942470703125, + "step": 3700 + }, + { + "epoch": 3.3600973236009732, + "grad_norm": 0.16380801796913147, + "learning_rate": 4.8320512820512826e-05, + "loss": 0.9362622833251953, + "step": 3800 + }, + { + "epoch": 3.448573324485733, + "grad_norm": 0.16394540667533875, + "learning_rate": 4.82763041556145e-05, + "loss": 0.9353338623046875, + "step": 3900 + }, + { + "epoch": 3.5370493253704933, + "grad_norm": 0.15836960077285767, + "learning_rate": 4.8232095490716186e-05, + "loss": 0.9316812896728516, + "step": 4000 + }, + { + "epoch": 3.625525326255253, + "grad_norm": 0.16170428693294525, + "learning_rate": 4.8187886825817864e-05, + "loss": 0.9331712341308593, + "step": 4100 + }, + { + "epoch": 3.7140013271400134, + "grad_norm": 0.16442789137363434, + "learning_rate": 4.814367816091954e-05, + "loss": 0.9366471862792969, + "step": 4200 + }, + { + "epoch": 3.8024773280247732, + "grad_norm": 0.1728108674287796, + "learning_rate": 4.8099469496021224e-05, + "loss": 0.9279624938964843, + "step": 4300 + }, + { + "epoch": 3.890953328909533, + "grad_norm": 0.16846929490566254, + "learning_rate": 4.80552608311229e-05, + "loss": 0.9343041229248047, + "step": 4400 + }, + { + "epoch": 3.9794293297942933, + "grad_norm": 0.15764060616493225, + "learning_rate": 4.8011052166224585e-05, + "loss": 0.9330953979492187, + "step": 4500 + }, + { + "epoch": 4.067241760672418, + "grad_norm": 0.15639521181583405, + "learning_rate": 4.796684350132626e-05, + "loss": 0.92936279296875, + "step": 4600 + }, + { + "epoch": 4.155717761557177, + "grad_norm": 0.1571352481842041, + "learning_rate": 4.7922634836427946e-05, + "loss": 0.928530502319336, + "step": 4700 + }, + { + "epoch": 4.244193762441937, + "grad_norm": 0.1702045202255249, + "learning_rate": 4.787842617152962e-05, + "loss": 0.928214111328125, + "step": 4800 + }, + { + "epoch": 4.332669763326698, + "grad_norm": 0.15860655903816223, + "learning_rate": 4.78342175066313e-05, + "loss": 0.9305215454101563, + "step": 4900 + }, + { + "epoch": 4.421145764211458, + "grad_norm": 0.15470334887504578, + "learning_rate": 4.779000884173298e-05, + "loss": 0.9308832550048828, + "step": 5000 + }, + { + "epoch": 4.509621765096218, + "grad_norm": 0.18338388204574585, + "learning_rate": 4.774580017683466e-05, + "loss": 0.9284812164306641, + "step": 5100 + }, + { + "epoch": 4.598097765980977, + "grad_norm": 0.16396461427211761, + "learning_rate": 4.7701591511936345e-05, + "loss": 0.9331364440917969, + "step": 5200 + }, + { + "epoch": 4.686573766865738, + "grad_norm": 0.15601013600826263, + "learning_rate": 4.765738284703802e-05, + "loss": 0.9345075225830078, + "step": 5300 + }, + { + "epoch": 4.775049767750498, + "grad_norm": 0.15895380079746246, + "learning_rate": 4.76131741821397e-05, + "loss": 0.9342525482177735, + "step": 5400 + }, + { + "epoch": 4.863525768635258, + "grad_norm": 0.17462770640850067, + "learning_rate": 4.756896551724138e-05, + "loss": 0.9322207641601562, + "step": 5500 + }, + { + "epoch": 4.952001769520018, + "grad_norm": 0.15457525849342346, + "learning_rate": 4.752475685234306e-05, + "loss": 0.9310305023193359, + "step": 5600 + }, + { + "epoch": 5.039814200398142, + "grad_norm": 0.13688383996486664, + "learning_rate": 4.748054818744474e-05, + "loss": 0.9262973022460937, + "step": 5700 + }, + { + "epoch": 5.128290201282902, + "grad_norm": 0.15491563081741333, + "learning_rate": 4.743633952254642e-05, + "loss": 0.927138671875, + "step": 5800 + }, + { + "epoch": 5.216766202167662, + "grad_norm": 0.168558269739151, + "learning_rate": 4.7392130857648105e-05, + "loss": 0.9224365234375, + "step": 5900 + }, + { + "epoch": 5.305242203052422, + "grad_norm": 0.1631685495376587, + "learning_rate": 4.734792219274978e-05, + "loss": 0.9300392913818359, + "step": 6000 + }, + { + "epoch": 5.393718203937182, + "grad_norm": 0.1423729509115219, + "learning_rate": 4.730371352785146e-05, + "loss": 0.926734619140625, + "step": 6100 + }, + { + "epoch": 5.482194204821942, + "grad_norm": 0.15391670167446136, + "learning_rate": 4.725950486295314e-05, + "loss": 0.928184814453125, + "step": 6200 + }, + { + "epoch": 5.570670205706702, + "grad_norm": 0.16460080444812775, + "learning_rate": 4.721529619805482e-05, + "loss": 0.9238227844238281, + "step": 6300 + }, + { + "epoch": 5.659146206591462, + "grad_norm": 0.15589170157909393, + "learning_rate": 4.71710875331565e-05, + "loss": 0.9301457214355469, + "step": 6400 + }, + { + "epoch": 5.747622207476222, + "grad_norm": 0.15851308405399323, + "learning_rate": 4.712687886825818e-05, + "loss": 0.9308782196044922, + "step": 6500 + }, + { + "epoch": 5.836098208360982, + "grad_norm": 0.1777440756559372, + "learning_rate": 4.7082670203359865e-05, + "loss": 0.9248320007324219, + "step": 6600 + }, + { + "epoch": 5.924574209245742, + "grad_norm": 0.17118966579437256, + "learning_rate": 4.703846153846154e-05, + "loss": 0.933470458984375, + "step": 6700 + }, + { + "epoch": 6.012386640123866, + "grad_norm": 0.16862431168556213, + "learning_rate": 4.699425287356322e-05, + "loss": 0.9242423248291015, + "step": 6800 + }, + { + "epoch": 6.100862641008627, + "grad_norm": 0.19494886696338654, + "learning_rate": 4.69500442086649e-05, + "loss": 0.9229951477050782, + "step": 6900 + }, + { + "epoch": 6.189338641893387, + "grad_norm": 0.1628340780735016, + "learning_rate": 4.690583554376658e-05, + "loss": 0.9262020111083984, + "step": 7000 + }, + { + "epoch": 6.2778146427781465, + "grad_norm": 0.18057121336460114, + "learning_rate": 4.686162687886826e-05, + "loss": 0.9253005981445312, + "step": 7100 + }, + { + "epoch": 6.366290643662906, + "grad_norm": 0.16090655326843262, + "learning_rate": 4.681741821396994e-05, + "loss": 0.9206966400146485, + "step": 7200 + }, + { + "epoch": 6.454766644547666, + "grad_norm": 0.16115659475326538, + "learning_rate": 4.6773209549071625e-05, + "loss": 0.9219180297851562, + "step": 7300 + }, + { + "epoch": 6.543242645432427, + "grad_norm": 0.1964244246482849, + "learning_rate": 4.67290008841733e-05, + "loss": 0.9238224029541016, + "step": 7400 + }, + { + "epoch": 6.631718646317187, + "grad_norm": 0.1761396825313568, + "learning_rate": 4.668479221927498e-05, + "loss": 0.9244656372070312, + "step": 7500 + }, + { + "epoch": 6.7201946472019465, + "grad_norm": 0.18016010522842407, + "learning_rate": 4.664058355437666e-05, + "loss": 0.9245244598388672, + "step": 7600 + }, + { + "epoch": 6.808670648086706, + "grad_norm": 0.16012924909591675, + "learning_rate": 4.659637488947834e-05, + "loss": 0.9250524139404297, + "step": 7700 + }, + { + "epoch": 6.897146648971466, + "grad_norm": 0.1722676306962967, + "learning_rate": 4.655216622458002e-05, + "loss": 0.9270682525634766, + "step": 7800 + }, + { + "epoch": 6.985622649856227, + "grad_norm": 0.18756897747516632, + "learning_rate": 4.65079575596817e-05, + "loss": 0.9234317779541016, + "step": 7900 + }, + { + "epoch": 7.073435080734351, + "grad_norm": 0.16759978234767914, + "learning_rate": 4.6463748894783384e-05, + "loss": 0.9213732147216797, + "step": 8000 + }, + { + "epoch": 7.1619110816191105, + "grad_norm": 0.15943242609500885, + "learning_rate": 4.641954022988506e-05, + "loss": 0.9243515014648438, + "step": 8100 + }, + { + "epoch": 7.250387082503871, + "grad_norm": 0.15444102883338928, + "learning_rate": 4.637533156498674e-05, + "loss": 0.9177332305908203, + "step": 8200 + }, + { + "epoch": 7.338863083388631, + "grad_norm": 0.17104187607765198, + "learning_rate": 4.633112290008842e-05, + "loss": 0.9199151611328125, + "step": 8300 + }, + { + "epoch": 7.427339084273391, + "grad_norm": 0.152462899684906, + "learning_rate": 4.62869142351901e-05, + "loss": 0.9231443786621094, + "step": 8400 + }, + { + "epoch": 7.515815085158151, + "grad_norm": 0.1663249433040619, + "learning_rate": 4.6242705570291777e-05, + "loss": 0.9231499481201172, + "step": 8500 + }, + { + "epoch": 7.6042910860429105, + "grad_norm": 0.1711215376853943, + "learning_rate": 4.6198496905393454e-05, + "loss": 0.9192819976806641, + "step": 8600 + }, + { + "epoch": 7.692767086927671, + "grad_norm": 0.1620834916830063, + "learning_rate": 4.6154288240495144e-05, + "loss": 0.9260062408447266, + "step": 8700 + }, + { + "epoch": 7.781243087812431, + "grad_norm": 0.16246546804904938, + "learning_rate": 4.611007957559682e-05, + "loss": 0.9250968933105469, + "step": 8800 + }, + { + "epoch": 7.869719088697191, + "grad_norm": 0.15757358074188232, + "learning_rate": 4.60658709106985e-05, + "loss": 0.9235149383544922, + "step": 8900 + }, + { + "epoch": 7.958195089581951, + "grad_norm": 0.15778206288814545, + "learning_rate": 4.602166224580018e-05, + "loss": 0.9173377227783203, + "step": 9000 + }, + { + "epoch": 8.046007520460075, + "grad_norm": 0.17259791493415833, + "learning_rate": 4.597745358090186e-05, + "loss": 0.9134017181396484, + "step": 9100 + }, + { + "epoch": 8.134483521344835, + "grad_norm": 0.1707502007484436, + "learning_rate": 4.5933244916003536e-05, + "loss": 0.9134098052978515, + "step": 9200 + }, + { + "epoch": 8.222959522229596, + "grad_norm": 0.1647530347108841, + "learning_rate": 4.5889036251105213e-05, + "loss": 0.9205097961425781, + "step": 9300 + }, + { + "epoch": 8.311435523114355, + "grad_norm": 0.16971947252750397, + "learning_rate": 4.5844827586206904e-05, + "loss": 0.9217983245849609, + "step": 9400 + }, + { + "epoch": 8.399911523999116, + "grad_norm": 0.15842877328395844, + "learning_rate": 4.580061892130858e-05, + "loss": 0.9172341918945313, + "step": 9500 + }, + { + "epoch": 8.488387524883874, + "grad_norm": 0.15321888029575348, + "learning_rate": 4.575641025641026e-05, + "loss": 0.9222029113769531, + "step": 9600 + }, + { + "epoch": 8.576863525768635, + "grad_norm": 0.17232707142829895, + "learning_rate": 4.5712201591511935e-05, + "loss": 0.9190543365478515, + "step": 9700 + }, + { + "epoch": 8.665339526653396, + "grad_norm": 0.14735591411590576, + "learning_rate": 4.566799292661362e-05, + "loss": 0.9193865203857422, + "step": 9800 + }, + { + "epoch": 8.753815527538155, + "grad_norm": 0.17929628491401672, + "learning_rate": 4.5623784261715296e-05, + "loss": 0.9178209686279297, + "step": 9900 + }, + { + "epoch": 8.842291528422916, + "grad_norm": 0.1546984612941742, + "learning_rate": 4.557957559681697e-05, + "loss": 0.9209825134277344, + "step": 10000 + }, + { + "epoch": 8.930767529307674, + "grad_norm": 0.16275030374526978, + "learning_rate": 4.553536693191866e-05, + "loss": 0.9219312286376953, + "step": 10100 + }, + { + "epoch": 9.0185799601858, + "grad_norm": 0.16977843642234802, + "learning_rate": 4.549115826702034e-05, + "loss": 0.9190888977050782, + "step": 10200 + }, + { + "epoch": 9.107055961070559, + "grad_norm": 0.16722118854522705, + "learning_rate": 4.544694960212202e-05, + "loss": 0.9173007202148438, + "step": 10300 + }, + { + "epoch": 9.19553196195532, + "grad_norm": 0.15637095272541046, + "learning_rate": 4.5402740937223695e-05, + "loss": 0.9152852630615235, + "step": 10400 + }, + { + "epoch": 9.28400796284008, + "grad_norm": 0.15433216094970703, + "learning_rate": 4.535853227232538e-05, + "loss": 0.9151573944091796, + "step": 10500 + }, + { + "epoch": 9.37248396372484, + "grad_norm": 0.15743562579154968, + "learning_rate": 4.5314323607427056e-05, + "loss": 0.9173799896240235, + "step": 10600 + }, + { + "epoch": 9.4609599646096, + "grad_norm": 0.1527981162071228, + "learning_rate": 4.527011494252873e-05, + "loss": 0.911611328125, + "step": 10700 + }, + { + "epoch": 9.549435965494359, + "grad_norm": 0.15745887160301208, + "learning_rate": 4.522590627763042e-05, + "loss": 0.9144339752197266, + "step": 10800 + }, + { + "epoch": 9.63791196637912, + "grad_norm": 0.1523962914943695, + "learning_rate": 4.51816976127321e-05, + "loss": 0.918481216430664, + "step": 10900 + }, + { + "epoch": 9.72638796726388, + "grad_norm": 0.17231452465057373, + "learning_rate": 4.513748894783378e-05, + "loss": 0.9197111511230469, + "step": 11000 + }, + { + "epoch": 9.81486396814864, + "grad_norm": 0.16348381340503693, + "learning_rate": 4.5093280282935455e-05, + "loss": 0.9151203918457032, + "step": 11100 + }, + { + "epoch": 9.9033399690334, + "grad_norm": 0.16555383801460266, + "learning_rate": 4.504907161803714e-05, + "loss": 0.9189680480957031, + "step": 11200 + }, + { + "epoch": 9.991815969918159, + "grad_norm": 0.16531047224998474, + "learning_rate": 4.5004862953138816e-05, + "loss": 0.9149074554443359, + "step": 11300 + }, + { + "epoch": 10.079628400796285, + "grad_norm": 0.1655273735523224, + "learning_rate": 4.496065428824049e-05, + "loss": 0.9143817138671875, + "step": 11400 + }, + { + "epoch": 10.168104401681044, + "grad_norm": 0.1795828938484192, + "learning_rate": 4.491644562334218e-05, + "loss": 0.911801986694336, + "step": 11500 + }, + { + "epoch": 10.256580402565804, + "grad_norm": 0.1684361696243286, + "learning_rate": 4.487223695844386e-05, + "loss": 0.910247802734375, + "step": 11600 + }, + { + "epoch": 10.345056403450563, + "grad_norm": 0.1620638519525528, + "learning_rate": 4.482802829354554e-05, + "loss": 0.9155111694335938, + "step": 11700 + }, + { + "epoch": 10.433532404335324, + "grad_norm": 0.1695495843887329, + "learning_rate": 4.4783819628647215e-05, + "loss": 0.9134779357910157, + "step": 11800 + }, + { + "epoch": 10.522008405220085, + "grad_norm": 0.18226753175258636, + "learning_rate": 4.47396109637489e-05, + "loss": 0.9143638610839844, + "step": 11900 + }, + { + "epoch": 10.610484406104844, + "grad_norm": 0.15289710462093353, + "learning_rate": 4.4695402298850576e-05, + "loss": 0.9122061157226562, + "step": 12000 + }, + { + "epoch": 10.698960406989604, + "grad_norm": 0.15486228466033936, + "learning_rate": 4.465119363395225e-05, + "loss": 0.9148915863037109, + "step": 12100 + }, + { + "epoch": 10.787436407874363, + "grad_norm": 0.17585019767284393, + "learning_rate": 4.4606984969053937e-05, + "loss": 0.9163182830810547, + "step": 12200 + }, + { + "epoch": 10.875912408759124, + "grad_norm": 0.158732071518898, + "learning_rate": 4.456277630415562e-05, + "loss": 0.9148865509033203, + "step": 12300 + }, + { + "epoch": 10.964388409643885, + "grad_norm": 0.15901361405849457, + "learning_rate": 4.45185676392573e-05, + "loss": 0.9184156799316406, + "step": 12400 + }, + { + "epoch": 11.052200840522008, + "grad_norm": 0.15289290249347687, + "learning_rate": 4.4474358974358974e-05, + "loss": 0.910323486328125, + "step": 12500 + }, + { + "epoch": 11.14067684140677, + "grad_norm": 0.14922171831130981, + "learning_rate": 4.443015030946066e-05, + "loss": 0.9092740631103515, + "step": 12600 + }, + { + "epoch": 11.229152842291528, + "grad_norm": 0.1710701584815979, + "learning_rate": 4.4385941644562335e-05, + "loss": 0.909953842163086, + "step": 12700 + }, + { + "epoch": 11.317628843176289, + "grad_norm": 0.16967815160751343, + "learning_rate": 4.434173297966401e-05, + "loss": 0.9069422912597657, + "step": 12800 + }, + { + "epoch": 11.406104844061048, + "grad_norm": 0.16896069049835205, + "learning_rate": 4.4297524314765696e-05, + "loss": 0.9166646575927735, + "step": 12900 + }, + { + "epoch": 11.494580844945808, + "grad_norm": 0.16996079683303833, + "learning_rate": 4.425331564986738e-05, + "loss": 0.9114566040039063, + "step": 13000 + }, + { + "epoch": 11.58305684583057, + "grad_norm": 0.16553319990634918, + "learning_rate": 4.420910698496906e-05, + "loss": 0.9121807098388672, + "step": 13100 + }, + { + "epoch": 11.671532846715328, + "grad_norm": 0.1629258692264557, + "learning_rate": 4.4164898320070734e-05, + "loss": 0.904563217163086, + "step": 13200 + }, + { + "epoch": 11.760008847600089, + "grad_norm": 0.1660201996564865, + "learning_rate": 4.412068965517241e-05, + "loss": 0.9116962432861329, + "step": 13300 + }, + { + "epoch": 11.848484848484848, + "grad_norm": 0.16493095457553864, + "learning_rate": 4.4076480990274095e-05, + "loss": 0.9136554718017578, + "step": 13400 + }, + { + "epoch": 11.936960849369608, + "grad_norm": 0.15279296040534973, + "learning_rate": 4.403227232537578e-05, + "loss": 0.9120658874511719, + "step": 13500 + }, + { + "epoch": 12.024773280247732, + "grad_norm": 0.16151593625545502, + "learning_rate": 4.3988063660477456e-05, + "loss": 0.9155186462402344, + "step": 13600 + }, + { + "epoch": 12.113249281132493, + "grad_norm": 0.16777871549129486, + "learning_rate": 4.394385499557914e-05, + "loss": 0.9070235443115234, + "step": 13700 + }, + { + "epoch": 12.201725282017254, + "grad_norm": 0.15052072703838348, + "learning_rate": 4.389964633068082e-05, + "loss": 0.9057080078125, + "step": 13800 + }, + { + "epoch": 12.290201282902013, + "grad_norm": 0.17466743290424347, + "learning_rate": 4.3855437665782494e-05, + "loss": 0.9058401489257812, + "step": 13900 + }, + { + "epoch": 12.378677283786773, + "grad_norm": 0.17788690328598022, + "learning_rate": 4.381122900088417e-05, + "loss": 0.9058721923828125, + "step": 14000 + }, + { + "epoch": 12.467153284671532, + "grad_norm": 0.17527516186237335, + "learning_rate": 4.3767020335985855e-05, + "loss": 0.908851089477539, + "step": 14100 + }, + { + "epoch": 12.555629285556293, + "grad_norm": 0.17999336123466492, + "learning_rate": 4.372281167108754e-05, + "loss": 0.9110614013671875, + "step": 14200 + }, + { + "epoch": 12.644105286441054, + "grad_norm": 0.1635061800479889, + "learning_rate": 4.3678603006189216e-05, + "loss": 0.9081086730957031, + "step": 14300 + }, + { + "epoch": 12.732581287325813, + "grad_norm": 0.1813993752002716, + "learning_rate": 4.363439434129089e-05, + "loss": 0.9091014862060547, + "step": 14400 + }, + { + "epoch": 12.821057288210573, + "grad_norm": 0.17487457394599915, + "learning_rate": 4.359018567639258e-05, + "loss": 0.9076325988769531, + "step": 14500 + }, + { + "epoch": 12.909533289095332, + "grad_norm": 0.17149627208709717, + "learning_rate": 4.3545977011494254e-05, + "loss": 0.9064749908447266, + "step": 14600 + }, + { + "epoch": 12.998009289980093, + "grad_norm": 0.16990207135677338, + "learning_rate": 4.350176834659593e-05, + "loss": 0.911828384399414, + "step": 14700 + }, + { + "epoch": 13.085821720858217, + "grad_norm": 0.16583888232707977, + "learning_rate": 4.3458001768346594e-05, + "loss": 0.9017422485351563, + "step": 14800 + }, + { + "epoch": 13.174297721742978, + "grad_norm": 0.1644158959388733, + "learning_rate": 4.341379310344828e-05, + "loss": 0.9052355194091797, + "step": 14900 + }, + { + "epoch": 13.262773722627736, + "grad_norm": 0.1759374737739563, + "learning_rate": 4.336958443854996e-05, + "loss": 0.9027067565917969, + "step": 15000 + }, + { + "epoch": 13.351249723512497, + "grad_norm": 0.1623755842447281, + "learning_rate": 4.332537577365164e-05, + "loss": 0.9078491973876953, + "step": 15100 + }, + { + "epoch": 13.439725724397258, + "grad_norm": 0.15563324093818665, + "learning_rate": 4.3281167108753316e-05, + "loss": 0.9046826171875, + "step": 15200 + }, + { + "epoch": 13.528201725282017, + "grad_norm": 0.1762174814939499, + "learning_rate": 4.3236958443855e-05, + "loss": 0.9070060729980469, + "step": 15300 + }, + { + "epoch": 13.616677726166778, + "grad_norm": 0.1598447859287262, + "learning_rate": 4.319274977895668e-05, + "loss": 0.907843017578125, + "step": 15400 + }, + { + "epoch": 13.705153727051536, + "grad_norm": 0.17838729918003082, + "learning_rate": 4.3148541114058354e-05, + "loss": 0.9077598571777343, + "step": 15500 + }, + { + "epoch": 13.793629727936297, + "grad_norm": 0.16615167260169983, + "learning_rate": 4.310433244916004e-05, + "loss": 0.9041740417480468, + "step": 15600 + }, + { + "epoch": 13.882105728821058, + "grad_norm": 0.16463759541511536, + "learning_rate": 4.306012378426172e-05, + "loss": 0.9023047637939453, + "step": 15700 + }, + { + "epoch": 13.970581729705817, + "grad_norm": 0.1562959849834442, + "learning_rate": 4.30159151193634e-05, + "loss": 0.902835693359375, + "step": 15800 + }, + { + "epoch": 14.058394160583942, + "grad_norm": 0.16919565200805664, + "learning_rate": 4.2971706454465076e-05, + "loss": 0.8998876953125, + "step": 15900 + }, + { + "epoch": 14.146870161468701, + "grad_norm": 0.16513022780418396, + "learning_rate": 4.292749778956676e-05, + "loss": 0.9023524475097656, + "step": 16000 + }, + { + "epoch": 14.235346162353462, + "grad_norm": 0.173946812748909, + "learning_rate": 4.288328912466844e-05, + "loss": 0.8980498504638672, + "step": 16100 + }, + { + "epoch": 14.323822163238221, + "grad_norm": 0.16749872267246246, + "learning_rate": 4.2839080459770114e-05, + "loss": 0.9026957702636719, + "step": 16200 + }, + { + "epoch": 14.412298164122982, + "grad_norm": 0.17985551059246063, + "learning_rate": 4.27948717948718e-05, + "loss": 0.9012105560302734, + "step": 16300 + }, + { + "epoch": 14.500774165007742, + "grad_norm": 0.18807820975780487, + "learning_rate": 4.275066312997348e-05, + "loss": 0.9014115905761719, + "step": 16400 + }, + { + "epoch": 14.589250165892501, + "grad_norm": 0.17243777215480804, + "learning_rate": 4.270645446507516e-05, + "loss": 0.9028221893310547, + "step": 16500 + }, + { + "epoch": 14.677726166777262, + "grad_norm": 0.1674414724111557, + "learning_rate": 4.2662245800176836e-05, + "loss": 0.9017185974121094, + "step": 16600 + }, + { + "epoch": 14.766202167662021, + "grad_norm": 0.17522333562374115, + "learning_rate": 4.261803713527851e-05, + "loss": 0.8989543914794922, + "step": 16700 + }, + { + "epoch": 14.854678168546782, + "grad_norm": 0.16300654411315918, + "learning_rate": 4.2573828470380197e-05, + "loss": 0.9001253509521484, + "step": 16800 + }, + { + "epoch": 14.943154169431542, + "grad_norm": 0.1702653169631958, + "learning_rate": 4.2529619805481874e-05, + "loss": 0.9020176696777343, + "step": 16900 + }, + { + "epoch": 15.030966600309666, + "grad_norm": 0.1752340942621231, + "learning_rate": 4.2485853227232544e-05, + "loss": 0.8990335083007812, + "step": 17000 + }, + { + "epoch": 15.119442601194425, + "grad_norm": 0.17765584588050842, + "learning_rate": 4.244164456233422e-05, + "loss": 0.8885309600830078, + "step": 17100 + }, + { + "epoch": 15.207918602079186, + "grad_norm": 0.18404972553253174, + "learning_rate": 4.23974358974359e-05, + "loss": 0.8915805816650391, + "step": 17200 + }, + { + "epoch": 15.296394602963947, + "grad_norm": 0.17206765711307526, + "learning_rate": 4.235322723253758e-05, + "loss": 0.8898361968994141, + "step": 17300 + }, + { + "epoch": 15.384870603848706, + "grad_norm": 0.19998455047607422, + "learning_rate": 4.230901856763926e-05, + "loss": 0.8957837677001953, + "step": 17400 + }, + { + "epoch": 15.473346604733466, + "grad_norm": 0.19454777240753174, + "learning_rate": 4.2264809902740936e-05, + "loss": 0.8990544891357422, + "step": 17500 + }, + { + "epoch": 15.561822605618225, + "grad_norm": 0.17281410098075867, + "learning_rate": 4.222060123784262e-05, + "loss": 0.8996484375, + "step": 17600 + }, + { + "epoch": 15.650298606502986, + "grad_norm": 0.1906009018421173, + "learning_rate": 4.21763925729443e-05, + "loss": 0.9032618713378906, + "step": 17700 + }, + { + "epoch": 15.738774607387747, + "grad_norm": 0.17282316088676453, + "learning_rate": 4.213218390804598e-05, + "loss": 0.8986404418945313, + "step": 17800 + }, + { + "epoch": 15.827250608272506, + "grad_norm": 0.18802666664123535, + "learning_rate": 4.208797524314766e-05, + "loss": 0.8964502716064453, + "step": 17900 + }, + { + "epoch": 15.915726609157266, + "grad_norm": 0.19853872060775757, + "learning_rate": 4.204376657824934e-05, + "loss": 0.9032749938964844, + "step": 18000 + }, + { + "epoch": 16.003539040035392, + "grad_norm": 0.18812181055545807, + "learning_rate": 4.199955791335102e-05, + "loss": 0.8991973876953125, + "step": 18100 + }, + { + "epoch": 16.09201504092015, + "grad_norm": 0.1644710898399353, + "learning_rate": 4.1955349248452695e-05, + "loss": 0.8866680908203125, + "step": 18200 + }, + { + "epoch": 16.18049104180491, + "grad_norm": 0.1884208619594574, + "learning_rate": 4.191114058355438e-05, + "loss": 0.8872537994384766, + "step": 18300 + }, + { + "epoch": 16.26896704268967, + "grad_norm": 0.1828072965145111, + "learning_rate": 4.186693191865606e-05, + "loss": 0.8902882385253906, + "step": 18400 + }, + { + "epoch": 16.35744304357443, + "grad_norm": 0.19119146466255188, + "learning_rate": 4.182272325375774e-05, + "loss": 0.8903806304931641, + "step": 18500 + }, + { + "epoch": 16.445919044459192, + "grad_norm": 0.20727571845054626, + "learning_rate": 4.177851458885942e-05, + "loss": 0.8952965545654297, + "step": 18600 + }, + { + "epoch": 16.53439504534395, + "grad_norm": 0.18735922873020172, + "learning_rate": 4.17343059239611e-05, + "loss": 0.8870563507080078, + "step": 18700 + }, + { + "epoch": 16.62287104622871, + "grad_norm": 0.1973799169063568, + "learning_rate": 4.169009725906278e-05, + "loss": 0.8974028778076172, + "step": 18800 + }, + { + "epoch": 16.71134704711347, + "grad_norm": 0.20604746043682098, + "learning_rate": 4.1645888594164455e-05, + "loss": 0.8937057495117188, + "step": 18900 + }, + { + "epoch": 16.79982304799823, + "grad_norm": 0.18150219321250916, + "learning_rate": 4.160167992926614e-05, + "loss": 0.8935442352294922, + "step": 19000 + }, + { + "epoch": 16.888299048882992, + "grad_norm": 0.18340304493904114, + "learning_rate": 4.155747126436782e-05, + "loss": 0.8885797119140625, + "step": 19100 + }, + { + "epoch": 16.97677504976775, + "grad_norm": 0.2073577493429184, + "learning_rate": 4.15132625994695e-05, + "loss": 0.8951002502441406, + "step": 19200 + }, + { + "epoch": 17.064587480645876, + "grad_norm": 0.17697007954120636, + "learning_rate": 4.146949602122016e-05, + "loss": 0.8879679870605469, + "step": 19300 + }, + { + "epoch": 17.153063481530634, + "grad_norm": 0.20899821817874908, + "learning_rate": 4.142528735632184e-05, + "loss": 0.8794329833984375, + "step": 19400 + }, + { + "epoch": 17.241539482415394, + "grad_norm": 0.18147091567516327, + "learning_rate": 4.138107869142352e-05, + "loss": 0.8802722930908203, + "step": 19500 + }, + { + "epoch": 17.330015483300155, + "grad_norm": 0.20257830619812012, + "learning_rate": 4.13368700265252e-05, + "loss": 0.8870145416259766, + "step": 19600 + }, + { + "epoch": 17.418491484184916, + "grad_norm": 0.20231416821479797, + "learning_rate": 4.1292661361626885e-05, + "loss": 0.8838448333740234, + "step": 19700 + }, + { + "epoch": 17.506967485069676, + "grad_norm": 0.18214623630046844, + "learning_rate": 4.124845269672856e-05, + "loss": 0.8879763793945312, + "step": 19800 + }, + { + "epoch": 17.595443485954434, + "grad_norm": 0.18666088581085205, + "learning_rate": 4.120424403183024e-05, + "loss": 0.8885836029052734, + "step": 19900 + }, + { + "epoch": 17.683919486839194, + "grad_norm": 0.20308583974838257, + "learning_rate": 4.116003536693192e-05, + "loss": 0.8843843078613282, + "step": 20000 + }, + { + "epoch": 17.772395487723955, + "grad_norm": 0.18726830184459686, + "learning_rate": 4.11158267020336e-05, + "loss": 0.8865486145019531, + "step": 20100 + }, + { + "epoch": 17.860871488608716, + "grad_norm": 0.17878851294517517, + "learning_rate": 4.107161803713528e-05, + "loss": 0.8883515930175782, + "step": 20200 + }, + { + "epoch": 17.949347489493476, + "grad_norm": 0.1849307119846344, + "learning_rate": 4.102740937223696e-05, + "loss": 0.8914216613769531, + "step": 20300 + }, + { + "epoch": 18.0371599203716, + "grad_norm": 0.22315239906311035, + "learning_rate": 4.0983200707338645e-05, + "loss": 0.88252197265625, + "step": 20400 + }, + { + "epoch": 18.12563592125636, + "grad_norm": 0.18446321785449982, + "learning_rate": 4.093899204244032e-05, + "loss": 0.8717878723144531, + "step": 20500 + }, + { + "epoch": 18.214111922141118, + "grad_norm": 0.21541251242160797, + "learning_rate": 4.0894783377542e-05, + "loss": 0.8750727844238281, + "step": 20600 + }, + { + "epoch": 18.30258792302588, + "grad_norm": 0.22268827259540558, + "learning_rate": 4.085057471264368e-05, + "loss": 0.8760640716552734, + "step": 20700 + }, + { + "epoch": 18.39106392391064, + "grad_norm": 0.2207673043012619, + "learning_rate": 4.080636604774536e-05, + "loss": 0.876912841796875, + "step": 20800 + }, + { + "epoch": 18.4795399247954, + "grad_norm": 0.21988292038440704, + "learning_rate": 4.076215738284704e-05, + "loss": 0.8794302368164062, + "step": 20900 + }, + { + "epoch": 18.56801592568016, + "grad_norm": 0.2057323008775711, + "learning_rate": 4.0717948717948714e-05, + "loss": 0.8795650482177735, + "step": 21000 + }, + { + "epoch": 18.656491926564918, + "grad_norm": 0.19854794442653656, + "learning_rate": 4.0673740053050405e-05, + "loss": 0.8824103546142578, + "step": 21100 + }, + { + "epoch": 18.74496792744968, + "grad_norm": 0.2183123230934143, + "learning_rate": 4.062953138815208e-05, + "loss": 0.8792383575439453, + "step": 21200 + }, + { + "epoch": 18.83344392833444, + "grad_norm": 0.20326419174671173, + "learning_rate": 4.058532272325376e-05, + "loss": 0.8834226989746093, + "step": 21300 + }, + { + "epoch": 18.9219199292192, + "grad_norm": 0.20735788345336914, + "learning_rate": 4.054111405835544e-05, + "loss": 0.8820342254638672, + "step": 21400 + }, + { + "epoch": 19.009732360097324, + "grad_norm": 0.2023264467716217, + "learning_rate": 4.04973474801061e-05, + "loss": 0.8843944549560547, + "step": 21500 + }, + { + "epoch": 19.098208360982085, + "grad_norm": 0.21148885786533356, + "learning_rate": 4.045313881520778e-05, + "loss": 0.8647132110595703, + "step": 21600 + }, + { + "epoch": 19.186684361866842, + "grad_norm": 0.2251083254814148, + "learning_rate": 4.040893015030947e-05, + "loss": 0.866364974975586, + "step": 21700 + }, + { + "epoch": 19.275160362751603, + "grad_norm": 0.23524972796440125, + "learning_rate": 4.0364721485411144e-05, + "loss": 0.8736127471923828, + "step": 21800 + }, + { + "epoch": 19.363636363636363, + "grad_norm": 0.21772760152816772, + "learning_rate": 4.032051282051282e-05, + "loss": 0.8692568206787109, + "step": 21900 + }, + { + "epoch": 19.452112364521124, + "grad_norm": 0.2125358134508133, + "learning_rate": 4.0276304155614505e-05, + "loss": 0.8706926727294921, + "step": 22000 + }, + { + "epoch": 19.540588365405885, + "grad_norm": 0.22768475115299225, + "learning_rate": 4.023209549071618e-05, + "loss": 0.8674411010742188, + "step": 22100 + }, + { + "epoch": 19.629064366290642, + "grad_norm": 0.2211151272058487, + "learning_rate": 4.018788682581786e-05, + "loss": 0.8749802398681641, + "step": 22200 + }, + { + "epoch": 19.717540367175403, + "grad_norm": 0.21814538538455963, + "learning_rate": 4.014367816091954e-05, + "loss": 0.8754036712646485, + "step": 22300 + }, + { + "epoch": 19.806016368060163, + "grad_norm": 0.2030419558286667, + "learning_rate": 4.0099469496021226e-05, + "loss": 0.8714677429199219, + "step": 22400 + }, + { + "epoch": 19.894492368944924, + "grad_norm": 0.21472303569316864, + "learning_rate": 4.0055260831122904e-05, + "loss": 0.8727165222167969, + "step": 22500 + }, + { + "epoch": 19.982968369829685, + "grad_norm": 0.20911096036434174, + "learning_rate": 4.001105216622458e-05, + "loss": 0.8781427764892578, + "step": 22600 + }, + { + "epoch": 20.07078080070781, + "grad_norm": 0.2304856926202774, + "learning_rate": 3.9966843501326264e-05, + "loss": 0.8589347076416015, + "step": 22700 + }, + { + "epoch": 20.15925680159257, + "grad_norm": 0.23650145530700684, + "learning_rate": 3.992263483642794e-05, + "loss": 0.8598684692382812, + "step": 22800 + }, + { + "epoch": 20.247732802477326, + "grad_norm": 0.21773482859134674, + "learning_rate": 3.987842617152962e-05, + "loss": 0.8605601501464843, + "step": 22900 + }, + { + "epoch": 20.336208803362087, + "grad_norm": 0.2237112671136856, + "learning_rate": 3.98342175066313e-05, + "loss": 0.8617141723632813, + "step": 23000 + }, + { + "epoch": 20.424684804246848, + "grad_norm": 0.24452048540115356, + "learning_rate": 3.9790008841732986e-05, + "loss": 0.8622699737548828, + "step": 23100 + }, + { + "epoch": 20.51316080513161, + "grad_norm": 0.21587280929088593, + "learning_rate": 3.974580017683466e-05, + "loss": 0.8637493896484375, + "step": 23200 + }, + { + "epoch": 20.60163680601637, + "grad_norm": 0.2406671941280365, + "learning_rate": 3.970159151193634e-05, + "loss": 0.859559555053711, + "step": 23300 + }, + { + "epoch": 20.690112806901126, + "grad_norm": 0.22845898568630219, + "learning_rate": 3.9657382847038024e-05, + "loss": 0.8662923431396484, + "step": 23400 + }, + { + "epoch": 20.778588807785887, + "grad_norm": 0.24683597683906555, + "learning_rate": 3.96131741821397e-05, + "loss": 0.8673475646972656, + "step": 23500 + }, + { + "epoch": 20.867064808670648, + "grad_norm": 0.22459226846694946, + "learning_rate": 3.956896551724138e-05, + "loss": 0.8640863037109375, + "step": 23600 + }, + { + "epoch": 20.95554080955541, + "grad_norm": 0.23616963624954224, + "learning_rate": 3.952475685234306e-05, + "loss": 0.8678861236572266, + "step": 23700 + }, + { + "epoch": 21.043353240433532, + "grad_norm": 0.22973845899105072, + "learning_rate": 3.9480990274093725e-05, + "loss": 0.8580598449707031, + "step": 23800 + }, + { + "epoch": 21.131829241318293, + "grad_norm": 0.2424720972776413, + "learning_rate": 3.94367816091954e-05, + "loss": 0.8460955810546875, + "step": 23900 + }, + { + "epoch": 21.220305242203054, + "grad_norm": 0.2528146505355835, + "learning_rate": 3.9392572944297086e-05, + "loss": 0.8499996185302734, + "step": 24000 + }, + { + "epoch": 21.30878124308781, + "grad_norm": 0.2518126666545868, + "learning_rate": 3.9348364279398763e-05, + "loss": 0.8534349060058594, + "step": 24100 + }, + { + "epoch": 21.39725724397257, + "grad_norm": 0.2305818349123001, + "learning_rate": 3.930415561450044e-05, + "loss": 0.84900146484375, + "step": 24200 + }, + { + "epoch": 21.485733244857332, + "grad_norm": 0.25653600692749023, + "learning_rate": 3.9259946949602124e-05, + "loss": 0.8542990875244141, + "step": 24300 + }, + { + "epoch": 21.574209245742093, + "grad_norm": 0.2712801992893219, + "learning_rate": 3.92157382847038e-05, + "loss": 0.8558815002441407, + "step": 24400 + }, + { + "epoch": 21.662685246626854, + "grad_norm": 0.273328959941864, + "learning_rate": 3.9171529619805485e-05, + "loss": 0.8555754089355468, + "step": 24500 + }, + { + "epoch": 21.75116124751161, + "grad_norm": 0.2668614089488983, + "learning_rate": 3.912732095490716e-05, + "loss": 0.8587675476074219, + "step": 24600 + }, + { + "epoch": 21.83963724839637, + "grad_norm": 0.24395836889743805, + "learning_rate": 3.9083112290008846e-05, + "loss": 0.8572028350830078, + "step": 24700 + }, + { + "epoch": 21.928113249281132, + "grad_norm": 0.24808812141418457, + "learning_rate": 3.903890362511052e-05, + "loss": 0.8579219055175781, + "step": 24800 + }, + { + "epoch": 22.015925680159256, + "grad_norm": 0.2587817311286926, + "learning_rate": 3.89946949602122e-05, + "loss": 0.8512050628662109, + "step": 24900 + }, + { + "epoch": 22.104401681044017, + "grad_norm": 0.26175108551979065, + "learning_rate": 3.8950486295313884e-05, + "loss": 0.8361199188232422, + "step": 25000 + }, + { + "epoch": 22.192877681928778, + "grad_norm": 0.2715345025062561, + "learning_rate": 3.890627763041556e-05, + "loss": 0.8399204254150391, + "step": 25100 + }, + { + "epoch": 22.28135368281354, + "grad_norm": 0.27675682306289673, + "learning_rate": 3.8862068965517245e-05, + "loss": 0.8378430938720703, + "step": 25200 + }, + { + "epoch": 22.369829683698295, + "grad_norm": 0.26540565490722656, + "learning_rate": 3.881786030061892e-05, + "loss": 0.8397164916992188, + "step": 25300 + }, + { + "epoch": 22.458305684583056, + "grad_norm": 0.2754775285720825, + "learning_rate": 3.8773651635720606e-05, + "loss": 0.8450184631347656, + "step": 25400 + }, + { + "epoch": 22.546781685467817, + "grad_norm": 0.2393341213464737, + "learning_rate": 3.872944297082228e-05, + "loss": 0.8427618408203125, + "step": 25500 + }, + { + "epoch": 22.635257686352578, + "grad_norm": 0.23895791172981262, + "learning_rate": 3.868523430592396e-05, + "loss": 0.8457352447509766, + "step": 25600 + }, + { + "epoch": 22.72373368723734, + "grad_norm": 0.26955941319465637, + "learning_rate": 3.8641025641025644e-05, + "loss": 0.849469223022461, + "step": 25700 + }, + { + "epoch": 22.812209688122095, + "grad_norm": 0.23746059834957123, + "learning_rate": 3.859681697612732e-05, + "loss": 0.8469708251953125, + "step": 25800 + }, + { + "epoch": 22.900685689006856, + "grad_norm": 0.2649519145488739, + "learning_rate": 3.8552608311229005e-05, + "loss": 0.849559326171875, + "step": 25900 + }, + { + "epoch": 22.989161689891617, + "grad_norm": 0.27285081148147583, + "learning_rate": 3.850839964633068e-05, + "loss": 0.8485184478759765, + "step": 26000 + }, + { + "epoch": 23.07697412076974, + "grad_norm": 0.27895936369895935, + "learning_rate": 3.8464633068081345e-05, + "loss": 0.8252901458740234, + "step": 26100 + }, + { + "epoch": 23.1654501216545, + "grad_norm": 0.2652367055416107, + "learning_rate": 3.842042440318302e-05, + "loss": 0.8263906097412109, + "step": 26200 + }, + { + "epoch": 23.253926122539262, + "grad_norm": 0.2835598886013031, + "learning_rate": 3.8376215738284706e-05, + "loss": 0.8287677001953125, + "step": 26300 + }, + { + "epoch": 23.342402123424023, + "grad_norm": 0.2834433615207672, + "learning_rate": 3.833200707338638e-05, + "loss": 0.8309012603759766, + "step": 26400 + }, + { + "epoch": 23.43087812430878, + "grad_norm": 0.2998100817203522, + "learning_rate": 3.828779840848807e-05, + "loss": 0.8311166381835937, + "step": 26500 + }, + { + "epoch": 23.51935412519354, + "grad_norm": 0.29382187128067017, + "learning_rate": 3.8243589743589744e-05, + "loss": 0.8325238037109375, + "step": 26600 + }, + { + "epoch": 23.6078301260783, + "grad_norm": 0.2950701415538788, + "learning_rate": 3.819938107869143e-05, + "loss": 0.8368535614013672, + "step": 26700 + }, + { + "epoch": 23.696306126963062, + "grad_norm": 0.287801057100296, + "learning_rate": 3.8155172413793105e-05, + "loss": 0.833930435180664, + "step": 26800 + }, + { + "epoch": 23.784782127847823, + "grad_norm": 0.33100536465644836, + "learning_rate": 3.811096374889478e-05, + "loss": 0.8386001586914062, + "step": 26900 + }, + { + "epoch": 23.87325812873258, + "grad_norm": 0.2911369800567627, + "learning_rate": 3.8066755083996466e-05, + "loss": 0.8410533905029297, + "step": 27000 + }, + { + "epoch": 23.96173412961734, + "grad_norm": 0.26980099081993103, + "learning_rate": 3.802254641909814e-05, + "loss": 0.8360975646972656, + "step": 27100 + }, + { + "epoch": 24.049546560495465, + "grad_norm": 0.3001425862312317, + "learning_rate": 3.797833775419983e-05, + "loss": 0.8234864044189453, + "step": 27200 + }, + { + "epoch": 24.138022561380225, + "grad_norm": 0.27798378467559814, + "learning_rate": 3.7934129089301504e-05, + "loss": 0.8135331726074219, + "step": 27300 + }, + { + "epoch": 24.226498562264986, + "grad_norm": 0.2736954689025879, + "learning_rate": 3.788992042440319e-05, + "loss": 0.8113047027587891, + "step": 27400 + }, + { + "epoch": 24.314974563149747, + "grad_norm": 0.29235804080963135, + "learning_rate": 3.7845711759504865e-05, + "loss": 0.8171870422363281, + "step": 27500 + }, + { + "epoch": 24.403450564034507, + "grad_norm": 0.2878233790397644, + "learning_rate": 3.780150309460654e-05, + "loss": 0.8170029449462891, + "step": 27600 + }, + { + "epoch": 24.491926564919265, + "grad_norm": 0.31602925062179565, + "learning_rate": 3.7757294429708226e-05, + "loss": 0.8223928833007812, + "step": 27700 + }, + { + "epoch": 24.580402565804025, + "grad_norm": 0.3145372271537781, + "learning_rate": 3.77130857648099e-05, + "loss": 0.8257860565185546, + "step": 27800 + }, + { + "epoch": 24.668878566688786, + "grad_norm": 0.30716991424560547, + "learning_rate": 3.7668877099911587e-05, + "loss": 0.8240725708007812, + "step": 27900 + }, + { + "epoch": 24.757354567573547, + "grad_norm": 0.28368160128593445, + "learning_rate": 3.7624668435013264e-05, + "loss": 0.825384521484375, + "step": 28000 + }, + { + "epoch": 24.845830568458307, + "grad_norm": 0.2867664694786072, + "learning_rate": 3.758045977011495e-05, + "loss": 0.8270760345458984, + "step": 28100 + }, + { + "epoch": 24.934306569343065, + "grad_norm": 0.28817129135131836, + "learning_rate": 3.7536251105216624e-05, + "loss": 0.8286974334716797, + "step": 28200 + }, + { + "epoch": 25.02211900022119, + "grad_norm": 0.3106354773044586, + "learning_rate": 3.749248452696729e-05, + "loss": 0.82120849609375, + "step": 28300 + }, + { + "epoch": 25.11059500110595, + "grad_norm": 0.3304692506790161, + "learning_rate": 3.7448275862068965e-05, + "loss": 0.8016901397705078, + "step": 28400 + }, + { + "epoch": 25.19907100199071, + "grad_norm": 0.3065616488456726, + "learning_rate": 3.740406719717064e-05, + "loss": 0.8027448272705078, + "step": 28500 + }, + { + "epoch": 25.28754700287547, + "grad_norm": 0.3456852436065674, + "learning_rate": 3.735985853227233e-05, + "loss": 0.8046049499511718, + "step": 28600 + }, + { + "epoch": 25.37602300376023, + "grad_norm": 0.3011663556098938, + "learning_rate": 3.731564986737401e-05, + "loss": 0.8079199981689453, + "step": 28700 + }, + { + "epoch": 25.46449900464499, + "grad_norm": 0.3659413158893585, + "learning_rate": 3.7271441202475687e-05, + "loss": 0.8079922485351563, + "step": 28800 + }, + { + "epoch": 25.55297500552975, + "grad_norm": 0.3281838595867157, + "learning_rate": 3.7227232537577364e-05, + "loss": 0.8134046173095704, + "step": 28900 + }, + { + "epoch": 25.64145100641451, + "grad_norm": 0.3106602132320404, + "learning_rate": 3.718302387267905e-05, + "loss": 0.8104205322265625, + "step": 29000 + }, + { + "epoch": 25.72992700729927, + "grad_norm": 0.3320154845714569, + "learning_rate": 3.7138815207780725e-05, + "loss": 0.8142304992675782, + "step": 29100 + }, + { + "epoch": 25.81840300818403, + "grad_norm": 0.3355977535247803, + "learning_rate": 3.70946065428824e-05, + "loss": 0.8125243377685547, + "step": 29200 + }, + { + "epoch": 25.90687900906879, + "grad_norm": 0.3472290635108948, + "learning_rate": 3.7050397877984085e-05, + "loss": 0.8146660614013672, + "step": 29300 + }, + { + "epoch": 25.99535500995355, + "grad_norm": 0.31780678033828735, + "learning_rate": 3.700618921308577e-05, + "loss": 0.8169705200195313, + "step": 29400 + }, + { + "epoch": 26.083167440831673, + "grad_norm": 0.3046151101589203, + "learning_rate": 3.6961980548187446e-05, + "loss": 0.7894915008544922, + "step": 29500 + }, + { + "epoch": 26.171643441716434, + "grad_norm": 0.3560829162597656, + "learning_rate": 3.6917771883289123e-05, + "loss": 0.7867289733886719, + "step": 29600 + }, + { + "epoch": 26.260119442601194, + "grad_norm": 0.33036884665489197, + "learning_rate": 3.687356321839081e-05, + "loss": 0.7914912414550781, + "step": 29700 + }, + { + "epoch": 26.348595443485955, + "grad_norm": 0.3302215039730072, + "learning_rate": 3.6829354553492484e-05, + "loss": 0.7926998901367187, + "step": 29800 + }, + { + "epoch": 26.437071444370716, + "grad_norm": 0.33766239881515503, + "learning_rate": 3.678514588859416e-05, + "loss": 0.7958551788330078, + "step": 29900 + }, + { + "epoch": 26.525547445255473, + "grad_norm": 0.34900912642478943, + "learning_rate": 3.6740937223695845e-05, + "loss": 0.7958287811279297, + "step": 30000 + }, + { + "epoch": 26.614023446140234, + "grad_norm": 0.3290475010871887, + "learning_rate": 3.669672855879753e-05, + "loss": 0.7994923400878906, + "step": 30100 + }, + { + "epoch": 26.702499447024994, + "grad_norm": 0.3304896950721741, + "learning_rate": 3.6652519893899206e-05, + "loss": 0.8000531005859375, + "step": 30200 + }, + { + "epoch": 26.790975447909755, + "grad_norm": 0.32132837176322937, + "learning_rate": 3.660831122900088e-05, + "loss": 0.8006639862060547, + "step": 30300 + }, + { + "epoch": 26.879451448794516, + "grad_norm": 0.3341081142425537, + "learning_rate": 3.656410256410257e-05, + "loss": 0.8037942504882812, + "step": 30400 + }, + { + "epoch": 26.967927449679273, + "grad_norm": 0.3406025171279907, + "learning_rate": 3.6519893899204244e-05, + "loss": 0.8009793853759766, + "step": 30500 + }, + { + "epoch": 27.0557398805574, + "grad_norm": 0.3396868109703064, + "learning_rate": 3.647568523430592e-05, + "loss": 0.7846424865722657, + "step": 30600 + }, + { + "epoch": 27.144215881442157, + "grad_norm": 0.33319470286369324, + "learning_rate": 3.6431476569407605e-05, + "loss": 0.7724665832519532, + "step": 30700 + }, + { + "epoch": 27.232691882326918, + "grad_norm": 0.38071826100349426, + "learning_rate": 3.638726790450929e-05, + "loss": 0.7791647338867187, + "step": 30800 + }, + { + "epoch": 27.32116788321168, + "grad_norm": 0.3640372157096863, + "learning_rate": 3.6343059239610966e-05, + "loss": 0.778485107421875, + "step": 30900 + }, + { + "epoch": 27.40964388409644, + "grad_norm": 0.34701183438301086, + "learning_rate": 3.629885057471264e-05, + "loss": 0.7812682342529297, + "step": 31000 + }, + { + "epoch": 27.4981198849812, + "grad_norm": 0.34723395109176636, + "learning_rate": 3.625464190981433e-05, + "loss": 0.7816720581054688, + "step": 31100 + }, + { + "epoch": 27.586595885865957, + "grad_norm": 0.3967572748661041, + "learning_rate": 3.6210433244916004e-05, + "loss": 0.7825845336914062, + "step": 31200 + }, + { + "epoch": 27.675071886750718, + "grad_norm": 0.36156365275382996, + "learning_rate": 3.616622458001768e-05, + "loss": 0.7875003814697266, + "step": 31300 + }, + { + "epoch": 27.76354788763548, + "grad_norm": 0.37152451276779175, + "learning_rate": 3.6122015915119365e-05, + "loss": 0.7848563385009766, + "step": 31400 + }, + { + "epoch": 27.85202388852024, + "grad_norm": 0.3751819431781769, + "learning_rate": 3.607780725022105e-05, + "loss": 0.7901625061035156, + "step": 31500 + }, + { + "epoch": 27.940499889405, + "grad_norm": 0.32409200072288513, + "learning_rate": 3.6033598585322726e-05, + "loss": 0.7916508483886718, + "step": 31600 + }, + { + "epoch": 28.028312320283124, + "grad_norm": 0.36621779203414917, + "learning_rate": 3.59893899204244e-05, + "loss": 0.7814656066894531, + "step": 31700 + }, + { + "epoch": 28.116788321167885, + "grad_norm": 0.35782715678215027, + "learning_rate": 3.594518125552609e-05, + "loss": 0.7565266418457032, + "step": 31800 + }, + { + "epoch": 28.205264322052642, + "grad_norm": 0.34983065724372864, + "learning_rate": 3.5900972590627764e-05, + "loss": 0.7589649963378906, + "step": 31900 + }, + { + "epoch": 28.293740322937403, + "grad_norm": 0.36476004123687744, + "learning_rate": 3.585676392572945e-05, + "loss": 0.7618669891357421, + "step": 32000 + }, + { + "epoch": 28.382216323822163, + "grad_norm": 0.3663191795349121, + "learning_rate": 3.5812555260831125e-05, + "loss": 0.768099136352539, + "step": 32100 + }, + { + "epoch": 28.470692324706924, + "grad_norm": 0.3572807312011719, + "learning_rate": 3.576834659593281e-05, + "loss": 0.7697807312011719, + "step": 32200 + }, + { + "epoch": 28.559168325591685, + "grad_norm": 0.39800935983657837, + "learning_rate": 3.5724580017683465e-05, + "loss": 0.7714015960693359, + "step": 32300 + }, + { + "epoch": 28.647644326476442, + "grad_norm": 0.3792218863964081, + "learning_rate": 3.568037135278515e-05, + "loss": 0.7737385559082032, + "step": 32400 + }, + { + "epoch": 28.736120327361203, + "grad_norm": 0.4109075665473938, + "learning_rate": 3.5636162687886826e-05, + "loss": 0.7772123718261719, + "step": 32500 + }, + { + "epoch": 28.824596328245963, + "grad_norm": 0.40446004271507263, + "learning_rate": 3.55919540229885e-05, + "loss": 0.7722319030761718, + "step": 32600 + }, + { + "epoch": 28.913072329130724, + "grad_norm": 0.39553946256637573, + "learning_rate": 3.554774535809019e-05, + "loss": 0.7767266082763672, + "step": 32700 + }, + { + "epoch": 29.000884760008848, + "grad_norm": 0.3675474226474762, + "learning_rate": 3.550397877984085e-05, + "loss": 0.7800326538085938, + "step": 32800 + }, + { + "epoch": 29.08936076089361, + "grad_norm": 0.37354156374931335, + "learning_rate": 3.5459770114942534e-05, + "loss": 0.7407066345214843, + "step": 32900 + }, + { + "epoch": 29.17783676177837, + "grad_norm": 0.3970542550086975, + "learning_rate": 3.541556145004421e-05, + "loss": 0.7467523956298828, + "step": 33000 + }, + { + "epoch": 29.266312762663127, + "grad_norm": 0.3625730872154236, + "learning_rate": 3.537135278514589e-05, + "loss": 0.7477723693847657, + "step": 33100 + }, + { + "epoch": 29.354788763547887, + "grad_norm": 0.37132611870765686, + "learning_rate": 3.532714412024757e-05, + "loss": 0.7502822875976562, + "step": 33200 + }, + { + "epoch": 29.443264764432648, + "grad_norm": 0.3668833374977112, + "learning_rate": 3.528293545534925e-05, + "loss": 0.7570280456542968, + "step": 33300 + }, + { + "epoch": 29.53174076531741, + "grad_norm": 0.404186874628067, + "learning_rate": 3.523872679045093e-05, + "loss": 0.7576876831054687, + "step": 33400 + }, + { + "epoch": 29.62021676620217, + "grad_norm": 0.407461017370224, + "learning_rate": 3.519451812555261e-05, + "loss": 0.7606333923339844, + "step": 33500 + }, + { + "epoch": 29.708692767086927, + "grad_norm": 0.4091641902923584, + "learning_rate": 3.5150309460654294e-05, + "loss": 0.7598370361328125, + "step": 33600 + }, + { + "epoch": 29.797168767971687, + "grad_norm": 0.36642369627952576, + "learning_rate": 3.510610079575597e-05, + "loss": 0.7617308807373047, + "step": 33700 + }, + { + "epoch": 29.885644768856448, + "grad_norm": 0.3767990171909332, + "learning_rate": 3.506189213085765e-05, + "loss": 0.760002670288086, + "step": 33800 + }, + { + "epoch": 29.97412076974121, + "grad_norm": 0.3992450535297394, + "learning_rate": 3.5017683465959325e-05, + "loss": 0.7659886932373047, + "step": 33900 + }, + { + "epoch": 30.061933200619332, + "grad_norm": 0.38657036423683167, + "learning_rate": 3.497347480106101e-05, + "loss": 0.7397030639648438, + "step": 34000 + }, + { + "epoch": 30.150409201504093, + "grad_norm": 0.40928229689598083, + "learning_rate": 3.492926613616269e-05, + "loss": 0.7280159759521484, + "step": 34100 + }, + { + "epoch": 30.23888520238885, + "grad_norm": 0.41609957814216614, + "learning_rate": 3.488505747126437e-05, + "loss": 0.7327291107177735, + "step": 34200 + }, + { + "epoch": 30.32736120327361, + "grad_norm": 0.3990429639816284, + "learning_rate": 3.4840848806366047e-05, + "loss": 0.7359205627441406, + "step": 34300 + }, + { + "epoch": 30.41583720415837, + "grad_norm": 0.40403324365615845, + "learning_rate": 3.479664014146773e-05, + "loss": 0.73650390625, + "step": 34400 + }, + { + "epoch": 30.504313205043132, + "grad_norm": 0.42696642875671387, + "learning_rate": 3.475243147656941e-05, + "loss": 0.7416681671142578, + "step": 34500 + }, + { + "epoch": 30.592789205927893, + "grad_norm": 0.3891199231147766, + "learning_rate": 3.4708222811671085e-05, + "loss": 0.742286605834961, + "step": 34600 + }, + { + "epoch": 30.68126520681265, + "grad_norm": 0.3660706877708435, + "learning_rate": 3.466401414677277e-05, + "loss": 0.7444020080566406, + "step": 34700 + }, + { + "epoch": 30.76974120769741, + "grad_norm": 0.43280747532844543, + "learning_rate": 3.461980548187445e-05, + "loss": 0.7461125183105469, + "step": 34800 + }, + { + "epoch": 30.85821720858217, + "grad_norm": 0.4279727041721344, + "learning_rate": 3.457559681697613e-05, + "loss": 0.7497645568847656, + "step": 34900 + }, + { + "epoch": 30.946693209466932, + "grad_norm": 0.4162921905517578, + "learning_rate": 3.4531388152077806e-05, + "loss": 0.7478341674804687, + "step": 35000 + }, + { + "epoch": 31.034505640345056, + "grad_norm": 0.4011857211589813, + "learning_rate": 3.448762157382847e-05, + "loss": 0.7373168182373047, + "step": 35100 + }, + { + "epoch": 31.122981641229817, + "grad_norm": 0.42476192116737366, + "learning_rate": 3.444341290893015e-05, + "loss": 0.714128646850586, + "step": 35200 + }, + { + "epoch": 31.211457642114578, + "grad_norm": 0.4272063672542572, + "learning_rate": 3.439920424403183e-05, + "loss": 0.717328872680664, + "step": 35300 + }, + { + "epoch": 31.299933642999335, + "grad_norm": 0.39419060945510864, + "learning_rate": 3.4354995579133514e-05, + "loss": 0.7182811737060547, + "step": 35400 + }, + { + "epoch": 31.388409643884096, + "grad_norm": 0.4092519283294678, + "learning_rate": 3.431078691423519e-05, + "loss": 0.7223808288574218, + "step": 35500 + }, + { + "epoch": 31.476885644768856, + "grad_norm": 0.45683449506759644, + "learning_rate": 3.4266578249336875e-05, + "loss": 0.7236460876464844, + "step": 35600 + }, + { + "epoch": 31.565361645653617, + "grad_norm": 0.4914647936820984, + "learning_rate": 3.422236958443855e-05, + "loss": 0.728529052734375, + "step": 35700 + }, + { + "epoch": 31.653837646538378, + "grad_norm": 0.439372718334198, + "learning_rate": 3.417816091954023e-05, + "loss": 0.7269135284423828, + "step": 35800 + }, + { + "epoch": 31.742313647423135, + "grad_norm": 0.488553911447525, + "learning_rate": 3.413395225464191e-05, + "loss": 0.7319352722167969, + "step": 35900 + }, + { + "epoch": 31.830789648307896, + "grad_norm": 0.43236035108566284, + "learning_rate": 3.408974358974359e-05, + "loss": 0.7336878204345703, + "step": 36000 + }, + { + "epoch": 31.919265649192656, + "grad_norm": 0.42669814825057983, + "learning_rate": 3.4045534924845274e-05, + "loss": 0.7357192993164062, + "step": 36100 + }, + { + "epoch": 32.007078080070784, + "grad_norm": 0.40464460849761963, + "learning_rate": 3.400132625994695e-05, + "loss": 0.7324215698242188, + "step": 36200 + }, + { + "epoch": 32.09555408095554, + "grad_norm": 0.4362545311450958, + "learning_rate": 3.3957117595048635e-05, + "loss": 0.6976793670654297, + "step": 36300 + }, + { + "epoch": 32.1840300818403, + "grad_norm": 0.46484723687171936, + "learning_rate": 3.391290893015031e-05, + "loss": 0.6972021484375, + "step": 36400 + }, + { + "epoch": 32.27250608272506, + "grad_norm": 0.43313083052635193, + "learning_rate": 3.386870026525199e-05, + "loss": 0.7049392700195313, + "step": 36500 + }, + { + "epoch": 32.36098208360982, + "grad_norm": 0.437752366065979, + "learning_rate": 3.3824491600353666e-05, + "loss": 0.7091526794433594, + "step": 36600 + }, + { + "epoch": 32.44945808449458, + "grad_norm": 0.44550085067749023, + "learning_rate": 3.378028293545535e-05, + "loss": 0.7121316528320313, + "step": 36700 + }, + { + "epoch": 32.53793408537934, + "grad_norm": 0.46052590012550354, + "learning_rate": 3.3736074270557034e-05, + "loss": 0.7150274658203125, + "step": 36800 + }, + { + "epoch": 32.6264100862641, + "grad_norm": 0.4344913065433502, + "learning_rate": 3.369186560565871e-05, + "loss": 0.7130059814453125, + "step": 36900 + }, + { + "epoch": 32.71488608714886, + "grad_norm": 0.45924630761146545, + "learning_rate": 3.364765694076039e-05, + "loss": 0.7156332397460937, + "step": 37000 + }, + { + "epoch": 32.80336208803362, + "grad_norm": 0.41177231073379517, + "learning_rate": 3.360344827586207e-05, + "loss": 0.7184346008300782, + "step": 37100 + }, + { + "epoch": 32.891838088918384, + "grad_norm": 0.44688835740089417, + "learning_rate": 3.355923961096375e-05, + "loss": 0.7201016235351563, + "step": 37200 + }, + { + "epoch": 32.980314089803144, + "grad_norm": 0.4971197545528412, + "learning_rate": 3.3515030946065426e-05, + "loss": 0.7191078186035156, + "step": 37300 + }, + { + "epoch": 33.06812652068127, + "grad_norm": 0.47201091051101685, + "learning_rate": 3.347126436781609e-05, + "loss": 0.6914530944824219, + "step": 37400 + }, + { + "epoch": 33.15660252156602, + "grad_norm": 0.4473711848258972, + "learning_rate": 3.342705570291777e-05, + "loss": 0.6855306243896484, + "step": 37500 + }, + { + "epoch": 33.24507852245078, + "grad_norm": 0.4745553135871887, + "learning_rate": 3.338284703801946e-05, + "loss": 0.6888325500488282, + "step": 37600 + }, + { + "epoch": 33.33355452333554, + "grad_norm": 0.45796144008636475, + "learning_rate": 3.3338638373121134e-05, + "loss": 0.6924916076660156, + "step": 37700 + }, + { + "epoch": 33.422030524220304, + "grad_norm": 0.47769099473953247, + "learning_rate": 3.329442970822281e-05, + "loss": 0.6937997436523438, + "step": 37800 + }, + { + "epoch": 33.510506525105065, + "grad_norm": 0.4637518525123596, + "learning_rate": 3.3250221043324495e-05, + "loss": 0.6975637817382813, + "step": 37900 + }, + { + "epoch": 33.598982525989825, + "grad_norm": 0.47370946407318115, + "learning_rate": 3.320601237842617e-05, + "loss": 0.6985407257080078, + "step": 38000 + }, + { + "epoch": 33.687458526874586, + "grad_norm": 0.467692106962204, + "learning_rate": 3.316180371352785e-05, + "loss": 0.7032517242431641, + "step": 38100 + }, + { + "epoch": 33.77593452775935, + "grad_norm": 0.4691486060619354, + "learning_rate": 3.311759504862953e-05, + "loss": 0.7019402313232422, + "step": 38200 + }, + { + "epoch": 33.86441052864411, + "grad_norm": 0.465666264295578, + "learning_rate": 3.307338638373122e-05, + "loss": 0.7065095520019531, + "step": 38300 + }, + { + "epoch": 33.95288652952887, + "grad_norm": 0.4870339632034302, + "learning_rate": 3.3029177718832894e-05, + "loss": 0.7060601043701172, + "step": 38400 + }, + { + "epoch": 34.04069896040699, + "grad_norm": 0.46102386713027954, + "learning_rate": 3.298496905393457e-05, + "loss": 0.6895645141601563, + "step": 38500 + }, + { + "epoch": 34.12917496129175, + "grad_norm": 0.4717739522457123, + "learning_rate": 3.2940760389036255e-05, + "loss": 0.6683721160888672, + "step": 38600 + }, + { + "epoch": 34.217650962176506, + "grad_norm": 0.47995516657829285, + "learning_rate": 3.289655172413793e-05, + "loss": 0.67727294921875, + "step": 38700 + }, + { + "epoch": 34.30612696306127, + "grad_norm": 0.4676993191242218, + "learning_rate": 3.2852343059239616e-05, + "loss": 0.6742596435546875, + "step": 38800 + }, + { + "epoch": 34.39460296394603, + "grad_norm": 0.4986591935157776, + "learning_rate": 3.280813439434129e-05, + "loss": 0.6811554718017578, + "step": 38900 + }, + { + "epoch": 34.48307896483079, + "grad_norm": 0.49108394980430603, + "learning_rate": 3.2763925729442977e-05, + "loss": 0.6826177215576172, + "step": 39000 + }, + { + "epoch": 34.57155496571555, + "grad_norm": 0.46544989943504333, + "learning_rate": 3.2719717064544654e-05, + "loss": 0.6843925476074219, + "step": 39100 + }, + { + "epoch": 34.66003096660031, + "grad_norm": 0.4714086055755615, + "learning_rate": 3.267550839964633e-05, + "loss": 0.6843089294433594, + "step": 39200 + }, + { + "epoch": 34.74850696748507, + "grad_norm": 0.4726520776748657, + "learning_rate": 3.263129973474801e-05, + "loss": 0.687828140258789, + "step": 39300 + }, + { + "epoch": 34.83698296836983, + "grad_norm": 0.5056101083755493, + "learning_rate": 3.258709106984969e-05, + "loss": 0.6943804168701172, + "step": 39400 + }, + { + "epoch": 34.92545896925459, + "grad_norm": 0.5143911242485046, + "learning_rate": 3.2542882404951375e-05, + "loss": 0.6947840118408203, + "step": 39500 + }, + { + "epoch": 35.013271400132716, + "grad_norm": 0.4712352752685547, + "learning_rate": 3.249867374005305e-05, + "loss": 0.6877326965332031, + "step": 39600 + }, + { + "epoch": 35.10174740101748, + "grad_norm": 0.5000380873680115, + "learning_rate": 3.2454465075154736e-05, + "loss": 0.6556487274169922, + "step": 39700 + }, + { + "epoch": 35.19022340190224, + "grad_norm": 0.5022478699684143, + "learning_rate": 3.2410256410256413e-05, + "loss": 0.6607290649414063, + "step": 39800 + }, + { + "epoch": 35.27869940278699, + "grad_norm": 0.511082112789154, + "learning_rate": 3.236604774535809e-05, + "loss": 0.6585157775878906, + "step": 39900 + }, + { + "epoch": 35.36717540367175, + "grad_norm": 0.45338326692581177, + "learning_rate": 3.232183908045977e-05, + "loss": 0.6670406341552735, + "step": 40000 + }, + { + "epoch": 35.45565140455651, + "grad_norm": 0.47589078545570374, + "learning_rate": 3.227763041556145e-05, + "loss": 0.6654150390625, + "step": 40100 + }, + { + "epoch": 35.54412740544127, + "grad_norm": 0.5111287236213684, + "learning_rate": 3.2233421750663135e-05, + "loss": 0.6706926727294922, + "step": 40200 + }, + { + "epoch": 35.632603406326034, + "grad_norm": 0.48615771532058716, + "learning_rate": 3.218921308576481e-05, + "loss": 0.6724550628662109, + "step": 40300 + }, + { + "epoch": 35.721079407210794, + "grad_norm": 0.5141739845275879, + "learning_rate": 3.214500442086649e-05, + "loss": 0.674487075805664, + "step": 40400 + }, + { + "epoch": 35.809555408095555, + "grad_norm": 0.512373149394989, + "learning_rate": 3.210079575596817e-05, + "loss": 0.6809010314941406, + "step": 40500 + }, + { + "epoch": 35.898031408980316, + "grad_norm": 0.5156219005584717, + "learning_rate": 3.205658709106985e-05, + "loss": 0.6783308410644531, + "step": 40600 + }, + { + "epoch": 35.98650740986508, + "grad_norm": 0.5266398191452026, + "learning_rate": 3.201237842617153e-05, + "loss": 0.6796981811523437, + "step": 40700 + }, + { + "epoch": 36.0743198407432, + "grad_norm": 0.5198646783828735, + "learning_rate": 3.196861184792219e-05, + "loss": 0.648563232421875, + "step": 40800 + }, + { + "epoch": 36.16279584162796, + "grad_norm": 0.4699224829673767, + "learning_rate": 3.1924403183023874e-05, + "loss": 0.6464600372314453, + "step": 40900 + }, + { + "epoch": 36.25127184251272, + "grad_norm": 0.5014195442199707, + "learning_rate": 3.188019451812556e-05, + "loss": 0.6471477508544922, + "step": 41000 + }, + { + "epoch": 36.339747843397475, + "grad_norm": 0.5231509804725647, + "learning_rate": 3.1835985853227235e-05, + "loss": 0.6519639587402344, + "step": 41100 + }, + { + "epoch": 36.428223844282236, + "grad_norm": 0.4843427538871765, + "learning_rate": 3.179177718832891e-05, + "loss": 0.6523241424560546, + "step": 41200 + }, + { + "epoch": 36.516699845167, + "grad_norm": 0.4956904351711273, + "learning_rate": 3.1747568523430596e-05, + "loss": 0.6547152709960937, + "step": 41300 + }, + { + "epoch": 36.60517584605176, + "grad_norm": 0.5103031396865845, + "learning_rate": 3.170335985853227e-05, + "loss": 0.6602716827392578, + "step": 41400 + }, + { + "epoch": 36.69365184693652, + "grad_norm": 0.5028578042984009, + "learning_rate": 3.165915119363395e-05, + "loss": 0.6617116546630859, + "step": 41500 + }, + { + "epoch": 36.78212784782128, + "grad_norm": 0.4997723698616028, + "learning_rate": 3.1614942528735634e-05, + "loss": 0.6632434844970703, + "step": 41600 + }, + { + "epoch": 36.87060384870604, + "grad_norm": 0.5246814489364624, + "learning_rate": 3.157073386383732e-05, + "loss": 0.6632743835449219, + "step": 41700 + }, + { + "epoch": 36.9590798495908, + "grad_norm": 0.5308569073677063, + "learning_rate": 3.1526525198938995e-05, + "loss": 0.6639631652832031, + "step": 41800 + }, + { + "epoch": 37.046892280468924, + "grad_norm": 0.49218234419822693, + "learning_rate": 3.148231653404067e-05, + "loss": 0.6452173614501953, + "step": 41900 + }, + { + "epoch": 37.135368281353685, + "grad_norm": 0.4680822491645813, + "learning_rate": 3.143810786914235e-05, + "loss": 0.6319191360473633, + "step": 42000 + }, + { + "epoch": 37.223844282238446, + "grad_norm": 0.4810407757759094, + "learning_rate": 3.139389920424403e-05, + "loss": 0.6338667297363281, + "step": 42100 + }, + { + "epoch": 37.3123202831232, + "grad_norm": 0.545889139175415, + "learning_rate": 3.134969053934571e-05, + "loss": 0.6395709228515625, + "step": 42200 + }, + { + "epoch": 37.40079628400796, + "grad_norm": 0.5600217580795288, + "learning_rate": 3.1305481874447394e-05, + "loss": 0.6406965637207032, + "step": 42300 + }, + { + "epoch": 37.48927228489272, + "grad_norm": 0.5517903566360474, + "learning_rate": 3.126127320954908e-05, + "loss": 0.6428462982177734, + "step": 42400 + }, + { + "epoch": 37.57774828577748, + "grad_norm": 0.49925389885902405, + "learning_rate": 3.1217064544650755e-05, + "loss": 0.6470170593261719, + "step": 42500 + }, + { + "epoch": 37.66622428666224, + "grad_norm": 0.4698370397090912, + "learning_rate": 3.117285587975243e-05, + "loss": 0.6477708435058593, + "step": 42600 + }, + { + "epoch": 37.754700287547, + "grad_norm": 0.5349763035774231, + "learning_rate": 3.112864721485411e-05, + "loss": 0.6515216827392578, + "step": 42700 + }, + { + "epoch": 37.84317628843176, + "grad_norm": 0.5066236853599548, + "learning_rate": 3.108443854995579e-05, + "loss": 0.6522242736816406, + "step": 42800 + }, + { + "epoch": 37.931652289316524, + "grad_norm": 0.5211920142173767, + "learning_rate": 3.104022988505747e-05, + "loss": 0.6515906524658203, + "step": 42900 + }, + { + "epoch": 38.01946472019465, + "grad_norm": 0.5003405213356018, + "learning_rate": 3.099646330680814e-05, + "loss": 0.6448411560058593, + "step": 43000 + }, + { + "epoch": 38.10794072107941, + "grad_norm": 0.5215827226638794, + "learning_rate": 3.095225464190982e-05, + "loss": 0.619310417175293, + "step": 43100 + }, + { + "epoch": 38.19641672196417, + "grad_norm": 0.4768511950969696, + "learning_rate": 3.0908045977011494e-05, + "loss": 0.6210311126708984, + "step": 43200 + }, + { + "epoch": 38.28489272284893, + "grad_norm": 0.5353608727455139, + "learning_rate": 3.086383731211318e-05, + "loss": 0.6246475601196289, + "step": 43300 + }, + { + "epoch": 38.373368723733684, + "grad_norm": 0.5182030200958252, + "learning_rate": 3.0819628647214855e-05, + "loss": 0.6273392486572266, + "step": 43400 + }, + { + "epoch": 38.461844724618445, + "grad_norm": 0.500842273235321, + "learning_rate": 3.077541998231653e-05, + "loss": 0.6327916717529297, + "step": 43500 + }, + { + "epoch": 38.550320725503205, + "grad_norm": 0.5168542861938477, + "learning_rate": 3.0731211317418216e-05, + "loss": 0.6323520278930664, + "step": 43600 + }, + { + "epoch": 38.638796726387966, + "grad_norm": 0.5403733253479004, + "learning_rate": 3.06870026525199e-05, + "loss": 0.6338058090209961, + "step": 43700 + }, + { + "epoch": 38.72727272727273, + "grad_norm": 0.5119574666023254, + "learning_rate": 3.064279398762158e-05, + "loss": 0.6391129302978515, + "step": 43800 + }, + { + "epoch": 38.81574872815749, + "grad_norm": 0.5214455127716064, + "learning_rate": 3.0598585322723254e-05, + "loss": 0.6368292999267579, + "step": 43900 + }, + { + "epoch": 38.90422472904225, + "grad_norm": 0.5679435133934021, + "learning_rate": 3.055437665782494e-05, + "loss": 0.6414280700683593, + "step": 44000 + }, + { + "epoch": 38.99270072992701, + "grad_norm": 0.5442212820053101, + "learning_rate": 3.0510167992926615e-05, + "loss": 0.6446417999267579, + "step": 44100 + }, + { + "epoch": 39.08051316080513, + "grad_norm": 0.46873417496681213, + "learning_rate": 3.0465959328028292e-05, + "loss": 0.6127575302124023, + "step": 44200 + }, + { + "epoch": 39.16898916168989, + "grad_norm": 0.5402541756629944, + "learning_rate": 3.042175066312998e-05, + "loss": 0.6059606552124024, + "step": 44300 + }, + { + "epoch": 39.257465162574654, + "grad_norm": 0.5081923007965088, + "learning_rate": 3.0377541998231656e-05, + "loss": 0.6121833038330078, + "step": 44400 + }, + { + "epoch": 39.345941163459415, + "grad_norm": 0.5688677430152893, + "learning_rate": 3.0333333333333337e-05, + "loss": 0.6163175964355468, + "step": 44500 + }, + { + "epoch": 39.43441716434417, + "grad_norm": 0.5273306965827942, + "learning_rate": 3.0289124668435014e-05, + "loss": 0.6198236465454101, + "step": 44600 + }, + { + "epoch": 39.52289316522893, + "grad_norm": 0.5107190608978271, + "learning_rate": 3.0244916003536694e-05, + "loss": 0.6242243576049805, + "step": 44700 + }, + { + "epoch": 39.61136916611369, + "grad_norm": 0.5110412240028381, + "learning_rate": 3.0200707338638375e-05, + "loss": 0.6227451705932617, + "step": 44800 + }, + { + "epoch": 39.69984516699845, + "grad_norm": 0.5370123982429504, + "learning_rate": 3.015649867374005e-05, + "loss": 0.6257634735107422, + "step": 44900 + }, + { + "epoch": 39.78832116788321, + "grad_norm": 0.5311342477798462, + "learning_rate": 3.0112290008841735e-05, + "loss": 0.6246538925170898, + "step": 45000 + }, + { + "epoch": 39.87679716876797, + "grad_norm": 0.5247089862823486, + "learning_rate": 3.0068081343943416e-05, + "loss": 0.6278446578979492, + "step": 45100 + }, + { + "epoch": 39.96527316965273, + "grad_norm": 0.5407604575157166, + "learning_rate": 3.0023872679045096e-05, + "loss": 0.6319368743896484, + "step": 45200 + }, + { + "epoch": 40.053085600530856, + "grad_norm": 0.49125176668167114, + "learning_rate": 2.9980106100795756e-05, + "loss": 0.608686294555664, + "step": 45300 + }, + { + "epoch": 40.14156160141562, + "grad_norm": 0.5193077325820923, + "learning_rate": 2.9935897435897437e-05, + "loss": 0.5979312515258789, + "step": 45400 + }, + { + "epoch": 40.23003760230038, + "grad_norm": 0.5521110892295837, + "learning_rate": 2.9891688770999117e-05, + "loss": 0.6026276016235351, + "step": 45500 + }, + { + "epoch": 40.31851360318514, + "grad_norm": 0.5131237506866455, + "learning_rate": 2.9847480106100794e-05, + "loss": 0.6056368637084961, + "step": 45600 + }, + { + "epoch": 40.4069896040699, + "grad_norm": 0.5547003149986267, + "learning_rate": 2.9803271441202478e-05, + "loss": 0.6073746490478515, + "step": 45700 + }, + { + "epoch": 40.49546560495465, + "grad_norm": 0.5059778690338135, + "learning_rate": 2.975906277630416e-05, + "loss": 0.6093035888671875, + "step": 45800 + }, + { + "epoch": 40.583941605839414, + "grad_norm": 0.5218088030815125, + "learning_rate": 2.971485411140584e-05, + "loss": 0.6098678970336914, + "step": 45900 + }, + { + "epoch": 40.672417606724174, + "grad_norm": 0.5111589431762695, + "learning_rate": 2.9670645446507516e-05, + "loss": 0.6144123458862305, + "step": 46000 + }, + { + "epoch": 40.760893607608935, + "grad_norm": 0.5875983238220215, + "learning_rate": 2.9626436781609196e-05, + "loss": 0.6149031448364258, + "step": 46100 + }, + { + "epoch": 40.849369608493696, + "grad_norm": 0.6077953577041626, + "learning_rate": 2.9582228116710873e-05, + "loss": 0.6200779724121094, + "step": 46200 + }, + { + "epoch": 40.937845609378456, + "grad_norm": 0.5511230230331421, + "learning_rate": 2.9538019451812554e-05, + "loss": 0.6175289916992187, + "step": 46300 + }, + { + "epoch": 41.02565804025658, + "grad_norm": 0.5434758067131042, + "learning_rate": 2.9493810786914238e-05, + "loss": 0.6117794418334961, + "step": 46400 + }, + { + "epoch": 41.11413404114134, + "grad_norm": 0.5463586449623108, + "learning_rate": 2.9449602122015918e-05, + "loss": 0.5865156936645508, + "step": 46500 + }, + { + "epoch": 41.2026100420261, + "grad_norm": 0.516645610332489, + "learning_rate": 2.94053934571176e-05, + "loss": 0.5934408950805664, + "step": 46600 + }, + { + "epoch": 41.29108604291086, + "grad_norm": 0.5041747093200684, + "learning_rate": 2.9361184792219276e-05, + "loss": 0.5907432556152343, + "step": 46700 + }, + { + "epoch": 41.37956204379562, + "grad_norm": 0.5490337014198303, + "learning_rate": 2.9316976127320956e-05, + "loss": 0.597823486328125, + "step": 46800 + }, + { + "epoch": 41.468038044680384, + "grad_norm": 0.5256726741790771, + "learning_rate": 2.9272767462422633e-05, + "loss": 0.5979599380493164, + "step": 46900 + }, + { + "epoch": 41.55651404556514, + "grad_norm": 0.49856510758399963, + "learning_rate": 2.9228558797524314e-05, + "loss": 0.6000013732910157, + "step": 47000 + }, + { + "epoch": 41.6449900464499, + "grad_norm": 0.540030837059021, + "learning_rate": 2.9184350132625998e-05, + "loss": 0.6044590759277344, + "step": 47100 + }, + { + "epoch": 41.73346604733466, + "grad_norm": 0.5599401593208313, + "learning_rate": 2.9140141467727678e-05, + "loss": 0.6050262451171875, + "step": 47200 + }, + { + "epoch": 41.82194204821942, + "grad_norm": 0.5251536965370178, + "learning_rate": 2.9095932802829355e-05, + "loss": 0.6084031677246093, + "step": 47300 + }, + { + "epoch": 41.91041804910418, + "grad_norm": 0.6002141237258911, + "learning_rate": 2.9051724137931036e-05, + "loss": 0.6051164627075195, + "step": 47400 + }, + { + "epoch": 41.99889404998894, + "grad_norm": 0.5603448748588562, + "learning_rate": 2.9007515473032716e-05, + "loss": 0.6085728073120117, + "step": 47500 + }, + { + "epoch": 42.086706480867065, + "grad_norm": 0.5491044521331787, + "learning_rate": 2.8963748894783376e-05, + "loss": 0.576365966796875, + "step": 47600 + }, + { + "epoch": 42.175182481751825, + "grad_norm": 0.5698864459991455, + "learning_rate": 2.8919540229885063e-05, + "loss": 0.5807184219360352, + "step": 47700 + }, + { + "epoch": 42.263658482636586, + "grad_norm": 0.574418306350708, + "learning_rate": 2.887533156498674e-05, + "loss": 0.5844138717651367, + "step": 47800 + }, + { + "epoch": 42.35213448352135, + "grad_norm": 0.5167635083198547, + "learning_rate": 2.883112290008842e-05, + "loss": 0.5845949935913086, + "step": 47900 + }, + { + "epoch": 42.44061048440611, + "grad_norm": 0.5338764786720276, + "learning_rate": 2.8786914235190098e-05, + "loss": 0.5889351272583008, + "step": 48000 + }, + { + "epoch": 42.52908648529087, + "grad_norm": 0.5340341329574585, + "learning_rate": 2.8742705570291778e-05, + "loss": 0.5909807205200195, + "step": 48100 + }, + { + "epoch": 42.61756248617562, + "grad_norm": 0.5493650436401367, + "learning_rate": 2.869849690539346e-05, + "loss": 0.5914651107788086, + "step": 48200 + }, + { + "epoch": 42.70603848706038, + "grad_norm": 0.6116383075714111, + "learning_rate": 2.8654288240495136e-05, + "loss": 0.592667350769043, + "step": 48300 + }, + { + "epoch": 42.79451448794514, + "grad_norm": 0.5631881356239319, + "learning_rate": 2.861007957559682e-05, + "loss": 0.5997231674194335, + "step": 48400 + }, + { + "epoch": 42.882990488829904, + "grad_norm": 0.5806667804718018, + "learning_rate": 2.85658709106985e-05, + "loss": 0.5957838439941406, + "step": 48500 + }, + { + "epoch": 42.971466489714665, + "grad_norm": 0.5075005888938904, + "learning_rate": 2.852166224580018e-05, + "loss": 0.5975283432006836, + "step": 48600 + }, + { + "epoch": 43.05927892059279, + "grad_norm": 0.5606797337532043, + "learning_rate": 2.8477453580901857e-05, + "loss": 0.5800529861450195, + "step": 48700 + }, + { + "epoch": 43.14775492147755, + "grad_norm": 0.5353171229362488, + "learning_rate": 2.8433244916003538e-05, + "loss": 0.5706613540649415, + "step": 48800 + }, + { + "epoch": 43.23623092236231, + "grad_norm": 0.5479321479797363, + "learning_rate": 2.8389036251105215e-05, + "loss": 0.5755366516113282, + "step": 48900 + }, + { + "epoch": 43.32470692324707, + "grad_norm": 0.5302407741546631, + "learning_rate": 2.8344827586206895e-05, + "loss": 0.5780391311645507, + "step": 49000 + }, + { + "epoch": 43.41318292413183, + "grad_norm": 0.5579783320426941, + "learning_rate": 2.830061892130858e-05, + "loss": 0.5774256896972656, + "step": 49100 + }, + { + "epoch": 43.50165892501659, + "grad_norm": 0.5295524597167969, + "learning_rate": 2.825641025641026e-05, + "loss": 0.5812548828125, + "step": 49200 + }, + { + "epoch": 43.59013492590135, + "grad_norm": 0.492058664560318, + "learning_rate": 2.821220159151194e-05, + "loss": 0.5796434783935547, + "step": 49300 + }, + { + "epoch": 43.67861092678611, + "grad_norm": 0.48961371183395386, + "learning_rate": 2.8167992926613617e-05, + "loss": 0.5851696014404297, + "step": 49400 + }, + { + "epoch": 43.76708692767087, + "grad_norm": 0.5714001059532166, + "learning_rate": 2.8123784261715298e-05, + "loss": 0.5890889358520508, + "step": 49500 + }, + { + "epoch": 43.85556292855563, + "grad_norm": 0.537390410900116, + "learning_rate": 2.8079575596816975e-05, + "loss": 0.5881150054931641, + "step": 49600 + }, + { + "epoch": 43.94403892944039, + "grad_norm": 0.5263146758079529, + "learning_rate": 2.8035366931918655e-05, + "loss": 0.5868202209472656, + "step": 49700 + }, + { + "epoch": 44.03185136031851, + "grad_norm": 0.5009394288063049, + "learning_rate": 2.7991600353669322e-05, + "loss": 0.578513412475586, + "step": 49800 + }, + { + "epoch": 44.12032736120327, + "grad_norm": 0.5233928561210632, + "learning_rate": 2.7947391688771002e-05, + "loss": 0.5612442016601562, + "step": 49900 + }, + { + "epoch": 44.208803362088034, + "grad_norm": 0.5212284922599792, + "learning_rate": 2.7903183023872683e-05, + "loss": 0.5634622955322266, + "step": 50000 + }, + { + "epoch": 44.297279362972795, + "grad_norm": 0.5920892357826233, + "learning_rate": 2.785897435897436e-05, + "loss": 0.5646255111694336, + "step": 50100 + }, + { + "epoch": 44.385755363857555, + "grad_norm": 0.5463851690292358, + "learning_rate": 2.781476569407604e-05, + "loss": 0.5711798477172851, + "step": 50200 + }, + { + "epoch": 44.474231364742316, + "grad_norm": 0.513917863368988, + "learning_rate": 2.7770557029177717e-05, + "loss": 0.5757728576660156, + "step": 50300 + }, + { + "epoch": 44.56270736562708, + "grad_norm": 0.5791277289390564, + "learning_rate": 2.7726348364279398e-05, + "loss": 0.5719475173950195, + "step": 50400 + }, + { + "epoch": 44.65118336651183, + "grad_norm": 0.5394783616065979, + "learning_rate": 2.768213969938108e-05, + "loss": 0.5751088714599609, + "step": 50500 + }, + { + "epoch": 44.73965936739659, + "grad_norm": 0.5699083805084229, + "learning_rate": 2.7637931034482762e-05, + "loss": 0.5771770095825195, + "step": 50600 + }, + { + "epoch": 44.82813536828135, + "grad_norm": 0.5610557794570923, + "learning_rate": 2.759372236958444e-05, + "loss": 0.5790963745117188, + "step": 50700 + }, + { + "epoch": 44.91661136916611, + "grad_norm": 0.5751321911811829, + "learning_rate": 2.754951370468612e-05, + "loss": 0.5781265258789062, + "step": 50800 + }, + { + "epoch": 45.004423800044236, + "grad_norm": 0.4831089377403259, + "learning_rate": 2.75053050397878e-05, + "loss": 0.5815114593505859, + "step": 50900 + }, + { + "epoch": 45.092899800929, + "grad_norm": 0.5138679146766663, + "learning_rate": 2.7461096374889477e-05, + "loss": 0.5530588912963867, + "step": 51000 + }, + { + "epoch": 45.18137580181376, + "grad_norm": 0.5327210426330566, + "learning_rate": 2.7416887709991158e-05, + "loss": 0.5549150085449219, + "step": 51100 + }, + { + "epoch": 45.26985180269852, + "grad_norm": 0.5089725255966187, + "learning_rate": 2.737267904509284e-05, + "loss": 0.5587585830688476, + "step": 51200 + }, + { + "epoch": 45.35832780358328, + "grad_norm": 0.5307016372680664, + "learning_rate": 2.7328470380194522e-05, + "loss": 0.5582825851440429, + "step": 51300 + }, + { + "epoch": 45.44680380446804, + "grad_norm": 0.6189883351325989, + "learning_rate": 2.72842617152962e-05, + "loss": 0.561285514831543, + "step": 51400 + }, + { + "epoch": 45.5352798053528, + "grad_norm": 0.5789527893066406, + "learning_rate": 2.724005305039788e-05, + "loss": 0.5647828674316406, + "step": 51500 + }, + { + "epoch": 45.62375580623756, + "grad_norm": 0.553713321685791, + "learning_rate": 2.719584438549956e-05, + "loss": 0.5659704208374023, + "step": 51600 + }, + { + "epoch": 45.712231807122315, + "grad_norm": 0.5502424240112305, + "learning_rate": 2.7151635720601237e-05, + "loss": 0.5685673522949218, + "step": 51700 + }, + { + "epoch": 45.800707808007076, + "grad_norm": 0.6388786435127258, + "learning_rate": 2.7107427055702917e-05, + "loss": 0.569713134765625, + "step": 51800 + }, + { + "epoch": 45.889183808891836, + "grad_norm": 0.5839136242866516, + "learning_rate": 2.70632183908046e-05, + "loss": 0.5713850784301758, + "step": 51900 + }, + { + "epoch": 45.9776598097766, + "grad_norm": 0.5872997641563416, + "learning_rate": 2.701900972590628e-05, + "loss": 0.5713462448120117, + "step": 52000 + }, + { + "epoch": 46.06547224065472, + "grad_norm": 0.5111995339393616, + "learning_rate": 2.697524314765694e-05, + "loss": 0.5514000701904297, + "step": 52100 + }, + { + "epoch": 46.15394824153948, + "grad_norm": 0.5677483677864075, + "learning_rate": 2.6931034482758622e-05, + "loss": 0.5458650207519531, + "step": 52200 + }, + { + "epoch": 46.24242424242424, + "grad_norm": 0.5756211876869202, + "learning_rate": 2.68868258178603e-05, + "loss": 0.5480696868896484, + "step": 52300 + }, + { + "epoch": 46.330900243309, + "grad_norm": 0.6053562164306641, + "learning_rate": 2.684261715296198e-05, + "loss": 0.5525957870483399, + "step": 52400 + }, + { + "epoch": 46.419376244193764, + "grad_norm": 0.5155165791511536, + "learning_rate": 2.6798408488063663e-05, + "loss": 0.5557857513427734, + "step": 52500 + }, + { + "epoch": 46.507852245078524, + "grad_norm": 0.5804229378700256, + "learning_rate": 2.6754199823165344e-05, + "loss": 0.5559201049804687, + "step": 52600 + }, + { + "epoch": 46.596328245963285, + "grad_norm": 0.5536544919013977, + "learning_rate": 2.6709991158267024e-05, + "loss": 0.5591853713989258, + "step": 52700 + }, + { + "epoch": 46.684804246848046, + "grad_norm": 0.603621244430542, + "learning_rate": 2.66657824933687e-05, + "loss": 0.5596856307983399, + "step": 52800 + }, + { + "epoch": 46.7732802477328, + "grad_norm": 0.5604232549667358, + "learning_rate": 2.662157382847038e-05, + "loss": 0.5584945678710938, + "step": 52900 + }, + { + "epoch": 46.86175624861756, + "grad_norm": 0.5974889993667603, + "learning_rate": 2.657736516357206e-05, + "loss": 0.5582848358154296, + "step": 53000 + }, + { + "epoch": 46.95023224950232, + "grad_norm": 0.5440397262573242, + "learning_rate": 2.653315649867374e-05, + "loss": 0.5634394454956054, + "step": 53100 + }, + { + "epoch": 47.038044680380445, + "grad_norm": 0.5610032081604004, + "learning_rate": 2.6488947833775423e-05, + "loss": 0.5574512481689453, + "step": 53200 + }, + { + "epoch": 47.126520681265205, + "grad_norm": 0.607563853263855, + "learning_rate": 2.6444739168877104e-05, + "loss": 0.5387821197509766, + "step": 53300 + }, + { + "epoch": 47.214996682149966, + "grad_norm": 0.5836204290390015, + "learning_rate": 2.640053050397878e-05, + "loss": 0.5401793670654297, + "step": 53400 + }, + { + "epoch": 47.30347268303473, + "grad_norm": 0.5325765013694763, + "learning_rate": 2.635632183908046e-05, + "loss": 0.5437668991088868, + "step": 53500 + }, + { + "epoch": 47.39194868391949, + "grad_norm": 0.5740872621536255, + "learning_rate": 2.631211317418214e-05, + "loss": 0.5443574142456055, + "step": 53600 + }, + { + "epoch": 47.48042468480425, + "grad_norm": 0.5562124848365784, + "learning_rate": 2.626790450928382e-05, + "loss": 0.5469727325439453, + "step": 53700 + }, + { + "epoch": 47.56890068568901, + "grad_norm": 0.5893000960350037, + "learning_rate": 2.62236958443855e-05, + "loss": 0.5502291107177735, + "step": 53800 + }, + { + "epoch": 47.65737668657377, + "grad_norm": 0.6538830995559692, + "learning_rate": 2.6179487179487183e-05, + "loss": 0.552915382385254, + "step": 53900 + }, + { + "epoch": 47.74585268745853, + "grad_norm": 0.5710316300392151, + "learning_rate": 2.6135278514588863e-05, + "loss": 0.5510491943359375, + "step": 54000 + }, + { + "epoch": 47.834328688343284, + "grad_norm": 0.5235297083854675, + "learning_rate": 2.609106984969054e-05, + "loss": 0.5519483184814453, + "step": 54100 + }, + { + "epoch": 47.922804689228045, + "grad_norm": 0.6048061847686768, + "learning_rate": 2.604686118479222e-05, + "loss": 0.5567644882202148, + "step": 54200 + }, + { + "epoch": 48.01061712010617, + "grad_norm": 0.5698108077049255, + "learning_rate": 2.6003094606542884e-05, + "loss": 0.5547234344482422, + "step": 54300 + }, + { + "epoch": 48.09909312099093, + "grad_norm": 0.49287617206573486, + "learning_rate": 2.595888594164456e-05, + "loss": 0.5280181884765625, + "step": 54400 + }, + { + "epoch": 48.18756912187569, + "grad_norm": 0.5525228977203369, + "learning_rate": 2.591467727674624e-05, + "loss": 0.5349401092529297, + "step": 54500 + }, + { + "epoch": 48.27604512276045, + "grad_norm": 0.5026161670684814, + "learning_rate": 2.5870468611847925e-05, + "loss": 0.5378446578979492, + "step": 54600 + }, + { + "epoch": 48.36452112364521, + "grad_norm": 0.5191828608512878, + "learning_rate": 2.5826259946949606e-05, + "loss": 0.5382429122924804, + "step": 54700 + }, + { + "epoch": 48.45299712452997, + "grad_norm": 0.5171953439712524, + "learning_rate": 2.5782051282051283e-05, + "loss": 0.5364204406738281, + "step": 54800 + }, + { + "epoch": 48.54147312541473, + "grad_norm": 0.5302397012710571, + "learning_rate": 2.5737842617152963e-05, + "loss": 0.5405542373657226, + "step": 54900 + }, + { + "epoch": 48.62994912629949, + "grad_norm": 0.5187925100326538, + "learning_rate": 2.569363395225464e-05, + "loss": 0.5436551284790039, + "step": 55000 + }, + { + "epoch": 48.718425127184254, + "grad_norm": 0.5707531571388245, + "learning_rate": 2.564942528735632e-05, + "loss": 0.5467363357543945, + "step": 55100 + }, + { + "epoch": 48.806901128069015, + "grad_norm": 0.5525254607200623, + "learning_rate": 2.5605216622458e-05, + "loss": 0.5466318130493164, + "step": 55200 + }, + { + "epoch": 48.89537712895377, + "grad_norm": 0.5896828174591064, + "learning_rate": 2.5561007957559685e-05, + "loss": 0.5489627075195312, + "step": 55300 + }, + { + "epoch": 48.98385312983853, + "grad_norm": 0.593329131603241, + "learning_rate": 2.5516799292661366e-05, + "loss": 0.5492449569702148, + "step": 55400 + }, + { + "epoch": 49.07166556071665, + "grad_norm": 0.45202845335006714, + "learning_rate": 2.5472590627763043e-05, + "loss": 0.5282985687255859, + "step": 55500 + }, + { + "epoch": 49.160141561601414, + "grad_norm": 0.45874515175819397, + "learning_rate": 2.5428381962864723e-05, + "loss": 0.5267356872558594, + "step": 55600 + }, + { + "epoch": 49.248617562486174, + "grad_norm": 0.5499678254127502, + "learning_rate": 2.53841732979664e-05, + "loss": 0.5255993270874023, + "step": 55700 + }, + { + "epoch": 49.337093563370935, + "grad_norm": 0.5569108724594116, + "learning_rate": 2.533996463306808e-05, + "loss": 0.5299503707885742, + "step": 55800 + }, + { + "epoch": 49.425569564255696, + "grad_norm": 0.5677438974380493, + "learning_rate": 2.529575596816976e-05, + "loss": 0.5316028594970703, + "step": 55900 + }, + { + "epoch": 49.51404556514046, + "grad_norm": 0.5888075828552246, + "learning_rate": 2.5251547303271445e-05, + "loss": 0.5354986953735351, + "step": 56000 + }, + { + "epoch": 49.60252156602522, + "grad_norm": 0.5639616250991821, + "learning_rate": 2.5207338638373122e-05, + "loss": 0.5369997787475586, + "step": 56100 + }, + { + "epoch": 49.69099756690998, + "grad_norm": 0.509158194065094, + "learning_rate": 2.5163129973474803e-05, + "loss": 0.536979866027832, + "step": 56200 + }, + { + "epoch": 49.77947356779474, + "grad_norm": 0.5412595868110657, + "learning_rate": 2.5118921308576483e-05, + "loss": 0.5382201004028321, + "step": 56300 + }, + { + "epoch": 49.86794956867949, + "grad_norm": 0.6052098274230957, + "learning_rate": 2.507471264367816e-05, + "loss": 0.5390504837036133, + "step": 56400 + }, + { + "epoch": 49.95642556956425, + "grad_norm": 0.5019105076789856, + "learning_rate": 2.503050397877984e-05, + "loss": 0.5391928482055665, + "step": 56500 + }, + { + "epoch": 50.04423800044238, + "grad_norm": 0.5133684873580933, + "learning_rate": 2.4986737400530504e-05, + "loss": 0.529360580444336, + "step": 56600 + }, + { + "epoch": 50.13271400132714, + "grad_norm": 0.5742220878601074, + "learning_rate": 2.4942528735632184e-05, + "loss": 0.5150651550292968, + "step": 56700 + }, + { + "epoch": 50.2211900022119, + "grad_norm": 0.5389617681503296, + "learning_rate": 2.4898320070733865e-05, + "loss": 0.5204330444335937, + "step": 56800 + }, + { + "epoch": 50.30966600309666, + "grad_norm": 0.5938611030578613, + "learning_rate": 2.4854111405835545e-05, + "loss": 0.5252494049072266, + "step": 56900 + }, + { + "epoch": 50.39814200398142, + "grad_norm": 0.5617892146110535, + "learning_rate": 2.4809902740937225e-05, + "loss": 0.5260490036010742, + "step": 57000 + }, + { + "epoch": 50.48661800486618, + "grad_norm": 0.6076000332832336, + "learning_rate": 2.4765694076038906e-05, + "loss": 0.5278256607055664, + "step": 57100 + }, + { + "epoch": 50.57509400575094, + "grad_norm": 0.5321983695030212, + "learning_rate": 2.4721485411140586e-05, + "loss": 0.5286510467529297, + "step": 57200 + }, + { + "epoch": 50.6635700066357, + "grad_norm": 0.614532470703125, + "learning_rate": 2.4677276746242263e-05, + "loss": 0.5313225936889648, + "step": 57300 + }, + { + "epoch": 50.75204600752046, + "grad_norm": 0.5830910801887512, + "learning_rate": 2.4633068081343944e-05, + "loss": 0.5300481796264649, + "step": 57400 + }, + { + "epoch": 50.84052200840522, + "grad_norm": 0.5918353199958801, + "learning_rate": 2.4588859416445624e-05, + "loss": 0.5337774276733398, + "step": 57500 + }, + { + "epoch": 50.92899800928998, + "grad_norm": 0.5791705846786499, + "learning_rate": 2.4544650751547305e-05, + "loss": 0.5316382598876953, + "step": 57600 + }, + { + "epoch": 51.01681044016811, + "grad_norm": 0.521299421787262, + "learning_rate": 2.4500442086648985e-05, + "loss": 0.5307102203369141, + "step": 57700 + }, + { + "epoch": 51.10528644105286, + "grad_norm": 0.5163324475288391, + "learning_rate": 2.4456233421750666e-05, + "loss": 0.5103409576416016, + "step": 57800 + }, + { + "epoch": 51.19376244193762, + "grad_norm": 0.5436499714851379, + "learning_rate": 2.4412024756852346e-05, + "loss": 0.5144682693481445, + "step": 57900 + }, + { + "epoch": 51.28223844282238, + "grad_norm": 0.5268517136573792, + "learning_rate": 2.4367816091954023e-05, + "loss": 0.5170879364013672, + "step": 58000 + }, + { + "epoch": 51.37071444370714, + "grad_norm": 0.5523056983947754, + "learning_rate": 2.4323607427055704e-05, + "loss": 0.5176148223876953, + "step": 58100 + }, + { + "epoch": 51.459190444591904, + "grad_norm": 0.5733488202095032, + "learning_rate": 2.4279398762157384e-05, + "loss": 0.5213256454467774, + "step": 58200 + }, + { + "epoch": 51.547666445476665, + "grad_norm": 0.6002511978149414, + "learning_rate": 2.4235190097259065e-05, + "loss": 0.5213332748413086, + "step": 58300 + }, + { + "epoch": 51.636142446361426, + "grad_norm": 0.5866407155990601, + "learning_rate": 2.4190981432360742e-05, + "loss": 0.5219316101074218, + "step": 58400 + }, + { + "epoch": 51.724618447246186, + "grad_norm": 0.620346188545227, + "learning_rate": 2.4146772767462426e-05, + "loss": 0.5251021575927735, + "step": 58500 + }, + { + "epoch": 51.81309444813095, + "grad_norm": 0.5428482294082642, + "learning_rate": 2.4102564102564103e-05, + "loss": 0.5254843521118164, + "step": 58600 + }, + { + "epoch": 51.90157044901571, + "grad_norm": 0.6146367192268372, + "learning_rate": 2.4058355437665783e-05, + "loss": 0.5262796401977539, + "step": 58700 + }, + { + "epoch": 51.99004644990046, + "grad_norm": 0.6002848148345947, + "learning_rate": 2.4014146772767464e-05, + "loss": 0.5279874801635742, + "step": 58800 + }, + { + "epoch": 52.07785888077859, + "grad_norm": 0.5608682036399841, + "learning_rate": 2.3970380194518127e-05, + "loss": 0.5045627975463867, + "step": 58900 + }, + { + "epoch": 52.166334881663346, + "grad_norm": 0.5034646391868591, + "learning_rate": 2.3926171529619807e-05, + "loss": 0.5071027755737305, + "step": 59000 + }, + { + "epoch": 52.25481088254811, + "grad_norm": 0.5443050861358643, + "learning_rate": 2.3881962864721484e-05, + "loss": 0.5105178451538086, + "step": 59100 + }, + { + "epoch": 52.34328688343287, + "grad_norm": 0.5455040335655212, + "learning_rate": 2.3837754199823168e-05, + "loss": 0.5111968612670899, + "step": 59200 + }, + { + "epoch": 52.43176288431763, + "grad_norm": 0.5393562912940979, + "learning_rate": 2.3793545534924845e-05, + "loss": 0.5109628295898437, + "step": 59300 + }, + { + "epoch": 52.52023888520239, + "grad_norm": 0.5572716593742371, + "learning_rate": 2.3749336870026526e-05, + "loss": 0.5128989791870118, + "step": 59400 + }, + { + "epoch": 52.60871488608715, + "grad_norm": 0.5157389640808105, + "learning_rate": 2.3705128205128206e-05, + "loss": 0.5179262924194336, + "step": 59500 + }, + { + "epoch": 52.69719088697191, + "grad_norm": 0.5245424509048462, + "learning_rate": 2.3660919540229886e-05, + "loss": 0.5182614517211914, + "step": 59600 + }, + { + "epoch": 52.78566688785667, + "grad_norm": 0.6405171155929565, + "learning_rate": 2.3616710875331567e-05, + "loss": 0.5196902084350586, + "step": 59700 + }, + { + "epoch": 52.87414288874143, + "grad_norm": 0.5531449317932129, + "learning_rate": 2.3572502210433244e-05, + "loss": 0.5213772583007813, + "step": 59800 + }, + { + "epoch": 52.96261888962619, + "grad_norm": 0.5440499186515808, + "learning_rate": 2.3528293545534928e-05, + "loss": 0.5214180755615234, + "step": 59900 + }, + { + "epoch": 53.050431320504316, + "grad_norm": 0.5454942584037781, + "learning_rate": 2.3484084880636605e-05, + "loss": 0.5082747268676758, + "step": 60000 + }, + { + "epoch": 53.13890732138907, + "grad_norm": 0.6037677526473999, + "learning_rate": 2.3439876215738285e-05, + "loss": 0.4992447662353516, + "step": 60100 + }, + { + "epoch": 53.22738332227383, + "grad_norm": 0.6089978218078613, + "learning_rate": 2.3395667550839966e-05, + "loss": 0.501078987121582, + "step": 60200 + }, + { + "epoch": 53.31585932315859, + "grad_norm": 0.5581852793693542, + "learning_rate": 2.3351458885941646e-05, + "loss": 0.50614990234375, + "step": 60300 + }, + { + "epoch": 53.40433532404335, + "grad_norm": 0.5539824366569519, + "learning_rate": 2.3307250221043327e-05, + "loss": 0.5036640548706055, + "step": 60400 + }, + { + "epoch": 53.49281132492811, + "grad_norm": 0.5434619784355164, + "learning_rate": 2.3263041556145004e-05, + "loss": 0.5078977966308593, + "step": 60500 + }, + { + "epoch": 53.58128732581287, + "grad_norm": 0.5596204400062561, + "learning_rate": 2.3218832891246688e-05, + "loss": 0.5105896377563477, + "step": 60600 + }, + { + "epoch": 53.669763326697634, + "grad_norm": 0.5933516621589661, + "learning_rate": 2.3174624226348365e-05, + "loss": 0.512298583984375, + "step": 60700 + }, + { + "epoch": 53.758239327582395, + "grad_norm": 0.5938782095909119, + "learning_rate": 2.3130415561450045e-05, + "loss": 0.5136246871948242, + "step": 60800 + }, + { + "epoch": 53.846715328467155, + "grad_norm": 0.5711195468902588, + "learning_rate": 2.3086206896551726e-05, + "loss": 0.5137527465820313, + "step": 60900 + }, + { + "epoch": 53.935191329351916, + "grad_norm": 0.5345974564552307, + "learning_rate": 2.3041998231653406e-05, + "loss": 0.5148337173461914, + "step": 61000 + }, + { + "epoch": 54.02300376023004, + "grad_norm": 0.5462290644645691, + "learning_rate": 2.299823165340407e-05, + "loss": 0.5070685577392579, + "step": 61100 + }, + { + "epoch": 54.1114797611148, + "grad_norm": 0.5135403275489807, + "learning_rate": 2.295402298850575e-05, + "loss": 0.49042961120605466, + "step": 61200 + }, + { + "epoch": 54.199955761999554, + "grad_norm": 0.5753411650657654, + "learning_rate": 2.290981432360743e-05, + "loss": 0.49762104034423826, + "step": 61300 + }, + { + "epoch": 54.288431762884315, + "grad_norm": 0.5738378167152405, + "learning_rate": 2.2865605658709107e-05, + "loss": 0.4983011245727539, + "step": 61400 + }, + { + "epoch": 54.376907763769076, + "grad_norm": 0.5234966278076172, + "learning_rate": 2.2821396993810788e-05, + "loss": 0.5005590057373047, + "step": 61500 + }, + { + "epoch": 54.465383764653836, + "grad_norm": 0.5313852429389954, + "learning_rate": 2.2777188328912468e-05, + "loss": 0.503372917175293, + "step": 61600 + }, + { + "epoch": 54.5538597655386, + "grad_norm": 0.49838191270828247, + "learning_rate": 2.273297966401415e-05, + "loss": 0.5020324325561524, + "step": 61700 + }, + { + "epoch": 54.64233576642336, + "grad_norm": 0.5403088927268982, + "learning_rate": 2.2688770999115826e-05, + "loss": 0.5049329376220704, + "step": 61800 + }, + { + "epoch": 54.73081176730812, + "grad_norm": 0.46723249554634094, + "learning_rate": 2.264456233421751e-05, + "loss": 0.5059401321411133, + "step": 61900 + }, + { + "epoch": 54.81928776819288, + "grad_norm": 0.5539482235908508, + "learning_rate": 2.2600353669319187e-05, + "loss": 0.5069823837280274, + "step": 62000 + }, + { + "epoch": 54.90776376907764, + "grad_norm": 0.5377270579338074, + "learning_rate": 2.2556145004420867e-05, + "loss": 0.508377685546875, + "step": 62100 + }, + { + "epoch": 54.9962397699624, + "grad_norm": 0.6182072162628174, + "learning_rate": 2.2511936339522548e-05, + "loss": 0.5095947647094726, + "step": 62200 + }, + { + "epoch": 55.084052200840524, + "grad_norm": 0.5139372944831848, + "learning_rate": 2.2467727674624228e-05, + "loss": 0.4896272277832031, + "step": 62300 + }, + { + "epoch": 55.172528201725285, + "grad_norm": 0.5812121629714966, + "learning_rate": 2.242351900972591e-05, + "loss": 0.49099037170410154, + "step": 62400 + }, + { + "epoch": 55.26100420261004, + "grad_norm": 0.5491729378700256, + "learning_rate": 2.2379310344827586e-05, + "loss": 0.4927267074584961, + "step": 62500 + }, + { + "epoch": 55.3494802034948, + "grad_norm": 0.5951135158538818, + "learning_rate": 2.233510167992927e-05, + "loss": 0.49305023193359376, + "step": 62600 + }, + { + "epoch": 55.43795620437956, + "grad_norm": 0.5938172340393066, + "learning_rate": 2.2290893015030946e-05, + "loss": 0.49482032775878904, + "step": 62700 + }, + { + "epoch": 55.52643220526432, + "grad_norm": 0.5288723111152649, + "learning_rate": 2.2246684350132627e-05, + "loss": 0.4974822998046875, + "step": 62800 + }, + { + "epoch": 55.61490820614908, + "grad_norm": 0.5663400888442993, + "learning_rate": 2.2202475685234307e-05, + "loss": 0.498828239440918, + "step": 62900 + }, + { + "epoch": 55.70338420703384, + "grad_norm": 0.5939375162124634, + "learning_rate": 2.2158267020335988e-05, + "loss": 0.5004440307617187, + "step": 63000 + }, + { + "epoch": 55.7918602079186, + "grad_norm": 0.628774106502533, + "learning_rate": 2.2114058355437668e-05, + "loss": 0.5034025573730468, + "step": 63100 + }, + { + "epoch": 55.880336208803364, + "grad_norm": 0.6160352826118469, + "learning_rate": 2.2069849690539345e-05, + "loss": 0.5042695236206055, + "step": 63200 + }, + { + "epoch": 55.968812209688124, + "grad_norm": 0.5891813635826111, + "learning_rate": 2.202564102564103e-05, + "loss": 0.5021416473388672, + "step": 63300 + }, + { + "epoch": 56.05662464056625, + "grad_norm": 0.5297622680664062, + "learning_rate": 2.198187444739169e-05, + "loss": 0.4904953384399414, + "step": 63400 + }, + { + "epoch": 56.14510064145101, + "grad_norm": 0.5649422407150269, + "learning_rate": 2.193766578249337e-05, + "loss": 0.485706672668457, + "step": 63500 + }, + { + "epoch": 56.23357664233577, + "grad_norm": 0.6352797150611877, + "learning_rate": 2.189345711759505e-05, + "loss": 0.4867672348022461, + "step": 63600 + }, + { + "epoch": 56.32205264322052, + "grad_norm": 0.5789678692817688, + "learning_rate": 2.184924845269673e-05, + "loss": 0.48802379608154295, + "step": 63700 + }, + { + "epoch": 56.410528644105284, + "grad_norm": 0.6075431704521179, + "learning_rate": 2.180503978779841e-05, + "loss": 0.4910835647583008, + "step": 63800 + }, + { + "epoch": 56.499004644990045, + "grad_norm": 0.5858777165412903, + "learning_rate": 2.1760831122900088e-05, + "loss": 0.4906935119628906, + "step": 63900 + }, + { + "epoch": 56.587480645874805, + "grad_norm": 0.5143148899078369, + "learning_rate": 2.171662245800177e-05, + "loss": 0.49202545166015627, + "step": 64000 + }, + { + "epoch": 56.675956646759566, + "grad_norm": 0.5330872535705566, + "learning_rate": 2.167241379310345e-05, + "loss": 0.4929664611816406, + "step": 64100 + }, + { + "epoch": 56.76443264764433, + "grad_norm": 0.5530017018318176, + "learning_rate": 2.162820512820513e-05, + "loss": 0.49355899810791015, + "step": 64200 + }, + { + "epoch": 56.85290864852909, + "grad_norm": 0.5891992449760437, + "learning_rate": 2.158399646330681e-05, + "loss": 0.49566749572753904, + "step": 64300 + }, + { + "epoch": 56.94138464941385, + "grad_norm": 0.5289095044136047, + "learning_rate": 2.153978779840849e-05, + "loss": 0.4987163543701172, + "step": 64400 + }, + { + "epoch": 57.02919708029197, + "grad_norm": 0.5679471492767334, + "learning_rate": 2.1495579133510167e-05, + "loss": 0.49003833770751953, + "step": 64500 + }, + { + "epoch": 57.11767308117673, + "grad_norm": 0.5432245135307312, + "learning_rate": 2.1451370468611848e-05, + "loss": 0.47765895843505857, + "step": 64600 + }, + { + "epoch": 57.20614908206149, + "grad_norm": 0.5474491119384766, + "learning_rate": 2.1407161803713528e-05, + "loss": 0.4797785568237305, + "step": 64700 + }, + { + "epoch": 57.294625082946254, + "grad_norm": 0.537804126739502, + "learning_rate": 2.136295313881521e-05, + "loss": 0.4833247756958008, + "step": 64800 + }, + { + "epoch": 57.38310108383101, + "grad_norm": 0.572169840335846, + "learning_rate": 2.131874447391689e-05, + "loss": 0.4836674118041992, + "step": 64900 + }, + { + "epoch": 57.47157708471577, + "grad_norm": 0.5344268679618835, + "learning_rate": 2.127453580901857e-05, + "loss": 0.48507492065429686, + "step": 65000 + }, + { + "epoch": 57.56005308560053, + "grad_norm": 0.5664619207382202, + "learning_rate": 2.123032714412025e-05, + "loss": 0.488138427734375, + "step": 65100 + }, + { + "epoch": 57.64852908648529, + "grad_norm": 0.5902144312858582, + "learning_rate": 2.1186118479221927e-05, + "loss": 0.48771110534667966, + "step": 65200 + }, + { + "epoch": 57.73700508737005, + "grad_norm": 0.562929630279541, + "learning_rate": 2.1141909814323607e-05, + "loss": 0.4875301742553711, + "step": 65300 + }, + { + "epoch": 57.82548108825481, + "grad_norm": 0.5995573997497559, + "learning_rate": 2.1097701149425288e-05, + "loss": 0.49271678924560547, + "step": 65400 + }, + { + "epoch": 57.91395708913957, + "grad_norm": 0.6624785661697388, + "learning_rate": 2.105349248452697e-05, + "loss": 0.4920695877075195, + "step": 65500 + }, + { + "epoch": 58.001769520017696, + "grad_norm": 0.5402753353118896, + "learning_rate": 2.100928381962865e-05, + "loss": 0.49431739807128905, + "step": 65600 + }, + { + "epoch": 58.09024552090246, + "grad_norm": 0.5145826935768127, + "learning_rate": 2.096507515473033e-05, + "loss": 0.47089763641357424, + "step": 65700 + }, + { + "epoch": 58.17872152178722, + "grad_norm": 0.5931445360183716, + "learning_rate": 2.092086648983201e-05, + "loss": 0.4758612060546875, + "step": 65800 + }, + { + "epoch": 58.26719752267198, + "grad_norm": 0.5388639569282532, + "learning_rate": 2.0876657824933687e-05, + "loss": 0.47640296936035154, + "step": 65900 + }, + { + "epoch": 58.35567352355674, + "grad_norm": 0.5639314651489258, + "learning_rate": 2.0832449160035367e-05, + "loss": 0.482130241394043, + "step": 66000 + }, + { + "epoch": 58.44414952444149, + "grad_norm": 0.5535529851913452, + "learning_rate": 2.0788240495137048e-05, + "loss": 0.47872936248779296, + "step": 66100 + }, + { + "epoch": 58.53262552532625, + "grad_norm": 0.5827674865722656, + "learning_rate": 2.0744031830238728e-05, + "loss": 0.4842064666748047, + "step": 66200 + }, + { + "epoch": 58.621101526211014, + "grad_norm": 0.5696784257888794, + "learning_rate": 2.0699823165340405e-05, + "loss": 0.4816234588623047, + "step": 66300 + }, + { + "epoch": 58.709577527095774, + "grad_norm": 0.5349422097206116, + "learning_rate": 2.065561450044209e-05, + "loss": 0.48554718017578125, + "step": 66400 + }, + { + "epoch": 58.798053527980535, + "grad_norm": 0.636604368686676, + "learning_rate": 2.0611405835543766e-05, + "loss": 0.4876006317138672, + "step": 66500 + }, + { + "epoch": 58.886529528865296, + "grad_norm": 0.6060304045677185, + "learning_rate": 2.0567197170645447e-05, + "loss": 0.4887725830078125, + "step": 66600 + }, + { + "epoch": 58.97500552975006, + "grad_norm": 0.6087244749069214, + "learning_rate": 2.0522988505747127e-05, + "loss": 0.4868877410888672, + "step": 66700 + }, + { + "epoch": 59.06281796062818, + "grad_norm": 0.49913933873176575, + "learning_rate": 2.047922192749779e-05, + "loss": 0.4722119140625, + "step": 66800 + }, + { + "epoch": 59.15129396151294, + "grad_norm": 0.4722621738910675, + "learning_rate": 2.043501326259947e-05, + "loss": 0.47009246826171874, + "step": 66900 + }, + { + "epoch": 59.2397699623977, + "grad_norm": 0.5657719373703003, + "learning_rate": 2.0390804597701148e-05, + "loss": 0.472298583984375, + "step": 67000 + }, + { + "epoch": 59.32824596328246, + "grad_norm": 0.5761541724205017, + "learning_rate": 2.034659593280283e-05, + "loss": 0.4723761749267578, + "step": 67100 + }, + { + "epoch": 59.416721964167216, + "grad_norm": 0.6316192150115967, + "learning_rate": 2.030238726790451e-05, + "loss": 0.47409954071044924, + "step": 67200 + }, + { + "epoch": 59.50519796505198, + "grad_norm": 0.6090986132621765, + "learning_rate": 2.025817860300619e-05, + "loss": 0.4764304351806641, + "step": 67300 + }, + { + "epoch": 59.59367396593674, + "grad_norm": 0.5362303256988525, + "learning_rate": 2.021396993810787e-05, + "loss": 0.4776358795166016, + "step": 67400 + }, + { + "epoch": 59.6821499668215, + "grad_norm": 0.553995668888092, + "learning_rate": 2.016976127320955e-05, + "loss": 0.4807791519165039, + "step": 67500 + }, + { + "epoch": 59.77062596770626, + "grad_norm": 0.5615981221199036, + "learning_rate": 2.012555260831123e-05, + "loss": 0.48062610626220703, + "step": 67600 + }, + { + "epoch": 59.85910196859102, + "grad_norm": 0.5885509252548218, + "learning_rate": 2.0081343943412908e-05, + "loss": 0.48244945526123045, + "step": 67700 + }, + { + "epoch": 59.94757796947578, + "grad_norm": 0.6052979230880737, + "learning_rate": 2.003713527851459e-05, + "loss": 0.4803206634521484, + "step": 67800 + }, + { + "epoch": 60.035390400353904, + "grad_norm": 0.5579769015312195, + "learning_rate": 1.999292661361627e-05, + "loss": 0.4752388000488281, + "step": 67900 + }, + { + "epoch": 60.123866401238665, + "grad_norm": 0.478289395570755, + "learning_rate": 1.994871794871795e-05, + "loss": 0.4645302200317383, + "step": 68000 + }, + { + "epoch": 60.212342402123426, + "grad_norm": 0.5545957088470459, + "learning_rate": 1.990450928381963e-05, + "loss": 0.46837158203125, + "step": 68100 + }, + { + "epoch": 60.300818403008186, + "grad_norm": 0.524662435054779, + "learning_rate": 1.986030061892131e-05, + "loss": 0.4679202651977539, + "step": 68200 + }, + { + "epoch": 60.38929440389295, + "grad_norm": 0.6101793646812439, + "learning_rate": 1.981609195402299e-05, + "loss": 0.46956668853759764, + "step": 68300 + }, + { + "epoch": 60.4777704047777, + "grad_norm": 0.5040204524993896, + "learning_rate": 1.9771883289124667e-05, + "loss": 0.4706681060791016, + "step": 68400 + }, + { + "epoch": 60.56624640566246, + "grad_norm": 0.563679039478302, + "learning_rate": 1.972767462422635e-05, + "loss": 0.471558837890625, + "step": 68500 + }, + { + "epoch": 60.65472240654722, + "grad_norm": 0.5668439865112305, + "learning_rate": 1.9683465959328028e-05, + "loss": 0.4727770233154297, + "step": 68600 + }, + { + "epoch": 60.74319840743198, + "grad_norm": 0.6011987328529358, + "learning_rate": 1.963925729442971e-05, + "loss": 0.47645427703857424, + "step": 68700 + }, + { + "epoch": 60.83167440831674, + "grad_norm": 0.6392132043838501, + "learning_rate": 1.959504862953139e-05, + "loss": 0.4765947341918945, + "step": 68800 + }, + { + "epoch": 60.920150409201504, + "grad_norm": 0.6424957513809204, + "learning_rate": 1.955083996463307e-05, + "loss": 0.4768808746337891, + "step": 68900 + }, + { + "epoch": 61.00796284007963, + "grad_norm": 0.5341200828552246, + "learning_rate": 1.9507073386383733e-05, + "loss": 0.4776120376586914, + "step": 69000 + }, + { + "epoch": 61.09643884096439, + "grad_norm": 0.622922956943512, + "learning_rate": 1.9462864721485413e-05, + "loss": 0.46137203216552736, + "step": 69100 + }, + { + "epoch": 61.18491484184915, + "grad_norm": 0.5679436326026917, + "learning_rate": 1.9418656056587094e-05, + "loss": 0.46096920013427733, + "step": 69200 + }, + { + "epoch": 61.27339084273391, + "grad_norm": 0.5972808003425598, + "learning_rate": 1.937444739168877e-05, + "loss": 0.46090087890625, + "step": 69300 + }, + { + "epoch": 61.36186684361867, + "grad_norm": 0.5825915336608887, + "learning_rate": 1.933023872679045e-05, + "loss": 0.46518352508544925, + "step": 69400 + }, + { + "epoch": 61.45034284450343, + "grad_norm": 0.48754116892814636, + "learning_rate": 1.9286030061892132e-05, + "loss": 0.4664886856079102, + "step": 69500 + }, + { + "epoch": 61.538818845388185, + "grad_norm": 0.5583191514015198, + "learning_rate": 1.9241821396993812e-05, + "loss": 0.46886295318603516, + "step": 69600 + }, + { + "epoch": 61.627294846272946, + "grad_norm": 0.5658340454101562, + "learning_rate": 1.919761273209549e-05, + "loss": 0.4696169662475586, + "step": 69700 + }, + { + "epoch": 61.71577084715771, + "grad_norm": 0.5801714658737183, + "learning_rate": 1.9153404067197173e-05, + "loss": 0.47141036987304685, + "step": 69800 + }, + { + "epoch": 61.80424684804247, + "grad_norm": 0.5643869042396545, + "learning_rate": 1.910919540229885e-05, + "loss": 0.4727308654785156, + "step": 69900 + }, + { + "epoch": 61.89272284892723, + "grad_norm": 0.5937660336494446, + "learning_rate": 1.906498673740053e-05, + "loss": 0.4726886367797852, + "step": 70000 + }, + { + "epoch": 61.98119884981199, + "grad_norm": 0.5228411555290222, + "learning_rate": 1.902077807250221e-05, + "loss": 0.47457176208496094, + "step": 70100 + }, + { + "epoch": 62.06901128069011, + "grad_norm": 0.5100186467170715, + "learning_rate": 1.897656940760389e-05, + "loss": 0.4604149627685547, + "step": 70200 + }, + { + "epoch": 62.15748728157487, + "grad_norm": 0.5119529962539673, + "learning_rate": 1.8932360742705572e-05, + "loss": 0.4561204147338867, + "step": 70300 + }, + { + "epoch": 62.245963282459634, + "grad_norm": 0.5130912065505981, + "learning_rate": 1.888815207780725e-05, + "loss": 0.4596226501464844, + "step": 70400 + }, + { + "epoch": 62.334439283344395, + "grad_norm": 0.5388224720954895, + "learning_rate": 1.8843943412908933e-05, + "loss": 0.4617993927001953, + "step": 70500 + }, + { + "epoch": 62.422915284229155, + "grad_norm": 0.5555194020271301, + "learning_rate": 1.879973474801061e-05, + "loss": 0.46267467498779297, + "step": 70600 + }, + { + "epoch": 62.511391285113916, + "grad_norm": 0.5136281847953796, + "learning_rate": 1.875552608311229e-05, + "loss": 0.4628156280517578, + "step": 70700 + }, + { + "epoch": 62.59986728599867, + "grad_norm": 0.5039867162704468, + "learning_rate": 1.871131741821397e-05, + "loss": 0.4678297805786133, + "step": 70800 + }, + { + "epoch": 62.68834328688343, + "grad_norm": 0.566985547542572, + "learning_rate": 1.866710875331565e-05, + "loss": 0.46522830963134765, + "step": 70900 + }, + { + "epoch": 62.77681928776819, + "grad_norm": 0.5855474472045898, + "learning_rate": 1.8622900088417332e-05, + "loss": 0.46788333892822265, + "step": 71000 + }, + { + "epoch": 62.86529528865295, + "grad_norm": 0.5838083624839783, + "learning_rate": 1.857869142351901e-05, + "loss": 0.4687856292724609, + "step": 71100 + }, + { + "epoch": 62.95377128953771, + "grad_norm": 0.6574355363845825, + "learning_rate": 1.8534482758620693e-05, + "loss": 0.46836143493652344, + "step": 71200 + }, + { + "epoch": 63.04158372041584, + "grad_norm": 0.5751773118972778, + "learning_rate": 1.849027409372237e-05, + "loss": 0.4590755844116211, + "step": 71300 + }, + { + "epoch": 63.1300597213006, + "grad_norm": 0.5056807398796082, + "learning_rate": 1.844606542882405e-05, + "loss": 0.45313865661621094, + "step": 71400 + }, + { + "epoch": 63.21853572218536, + "grad_norm": 0.5403828024864197, + "learning_rate": 1.840185676392573e-05, + "loss": 0.4552134323120117, + "step": 71500 + }, + { + "epoch": 63.30701172307012, + "grad_norm": 0.48244568705558777, + "learning_rate": 1.835764809902741e-05, + "loss": 0.45661014556884766, + "step": 71600 + }, + { + "epoch": 63.39548772395488, + "grad_norm": 0.5753127932548523, + "learning_rate": 1.831343943412909e-05, + "loss": 0.4578168487548828, + "step": 71700 + }, + { + "epoch": 63.48396372483964, + "grad_norm": 0.5782042741775513, + "learning_rate": 1.826923076923077e-05, + "loss": 0.4589107131958008, + "step": 71800 + }, + { + "epoch": 63.5724397257244, + "grad_norm": 0.5895569920539856, + "learning_rate": 1.8225022104332453e-05, + "loss": 0.46304950714111326, + "step": 71900 + }, + { + "epoch": 63.660915726609154, + "grad_norm": 0.6601688265800476, + "learning_rate": 1.818081343943413e-05, + "loss": 0.45953712463378904, + "step": 72000 + }, + { + "epoch": 63.749391727493915, + "grad_norm": 0.5695818066596985, + "learning_rate": 1.813660477453581e-05, + "loss": 0.46058246612548825, + "step": 72100 + }, + { + "epoch": 63.837867728378676, + "grad_norm": 0.5006322264671326, + "learning_rate": 1.809239610963749e-05, + "loss": 0.4630731964111328, + "step": 72200 + }, + { + "epoch": 63.926343729263436, + "grad_norm": 0.5871863961219788, + "learning_rate": 1.804818744473917e-05, + "loss": 0.46295913696289065, + "step": 72300 + }, + { + "epoch": 64.01415616014157, + "grad_norm": 0.5417830348014832, + "learning_rate": 1.8003978779840848e-05, + "loss": 0.4623433303833008, + "step": 72400 + }, + { + "epoch": 64.10263216102632, + "grad_norm": 0.5019242763519287, + "learning_rate": 1.795977011494253e-05, + "loss": 0.44698051452636717, + "step": 72500 + }, + { + "epoch": 64.19110816191107, + "grad_norm": 0.5637330412864685, + "learning_rate": 1.791556145004421e-05, + "loss": 0.4492236328125, + "step": 72600 + }, + { + "epoch": 64.27958416279584, + "grad_norm": 0.5333090424537659, + "learning_rate": 1.787135278514589e-05, + "loss": 0.45192584991455076, + "step": 72700 + }, + { + "epoch": 64.3680601636806, + "grad_norm": 0.5232571363449097, + "learning_rate": 1.782714412024757e-05, + "loss": 0.45244823455810546, + "step": 72800 + }, + { + "epoch": 64.45653616456536, + "grad_norm": 0.4935717284679413, + "learning_rate": 1.778293545534925e-05, + "loss": 0.4529353332519531, + "step": 72900 + }, + { + "epoch": 64.54501216545012, + "grad_norm": 0.5450688600540161, + "learning_rate": 1.7739168877099913e-05, + "loss": 0.4567538833618164, + "step": 73000 + }, + { + "epoch": 64.63348816633489, + "grad_norm": 0.47621846199035645, + "learning_rate": 1.769496021220159e-05, + "loss": 0.4563169097900391, + "step": 73100 + }, + { + "epoch": 64.72196416721964, + "grad_norm": 0.5023945569992065, + "learning_rate": 1.7650751547303274e-05, + "loss": 0.46204959869384765, + "step": 73200 + }, + { + "epoch": 64.8104401681044, + "grad_norm": 0.49148306250572205, + "learning_rate": 1.760654288240495e-05, + "loss": 0.45924064636230466, + "step": 73300 + }, + { + "epoch": 64.89891616898916, + "grad_norm": 0.6161800026893616, + "learning_rate": 1.7562334217506632e-05, + "loss": 0.45994918823242187, + "step": 73400 + }, + { + "epoch": 64.98739216987393, + "grad_norm": 0.5307760238647461, + "learning_rate": 1.7518125552608312e-05, + "loss": 0.461478271484375, + "step": 73500 + }, + { + "epoch": 65.07520460075204, + "grad_norm": 0.588062584400177, + "learning_rate": 1.7474358974358976e-05, + "loss": 0.4461378479003906, + "step": 73600 + }, + { + "epoch": 65.16368060163681, + "grad_norm": 0.5329079627990723, + "learning_rate": 1.7430150309460656e-05, + "loss": 0.4440943145751953, + "step": 73700 + }, + { + "epoch": 65.25215660252157, + "grad_norm": 0.6149891018867493, + "learning_rate": 1.7385941644562333e-05, + "loss": 0.44721881866455077, + "step": 73800 + }, + { + "epoch": 65.34063260340632, + "grad_norm": 0.5438173413276672, + "learning_rate": 1.7341732979664017e-05, + "loss": 0.44954757690429686, + "step": 73900 + }, + { + "epoch": 65.42910860429109, + "grad_norm": 0.5428133606910706, + "learning_rate": 1.7297524314765694e-05, + "loss": 0.45107986450195314, + "step": 74000 + }, + { + "epoch": 65.51758460517584, + "grad_norm": 0.5134186744689941, + "learning_rate": 1.7253315649867374e-05, + "loss": 0.45244071960449217, + "step": 74100 + }, + { + "epoch": 65.60606060606061, + "grad_norm": 0.6233081817626953, + "learning_rate": 1.7209106984969055e-05, + "loss": 0.45329185485839846, + "step": 74200 + }, + { + "epoch": 65.69453660694536, + "grad_norm": 0.5700708627700806, + "learning_rate": 1.7164898320070735e-05, + "loss": 0.4539757537841797, + "step": 74300 + }, + { + "epoch": 65.78301260783013, + "grad_norm": 0.5631476640701294, + "learning_rate": 1.7120689655172416e-05, + "loss": 0.4555579376220703, + "step": 74400 + }, + { + "epoch": 65.87148860871488, + "grad_norm": 0.5964381694793701, + "learning_rate": 1.7076480990274093e-05, + "loss": 0.45496936798095705, + "step": 74500 + }, + { + "epoch": 65.95996460959965, + "grad_norm": 0.5872741341590881, + "learning_rate": 1.7032272325375777e-05, + "loss": 0.45641098022460935, + "step": 74600 + }, + { + "epoch": 66.04777704047777, + "grad_norm": 0.522363543510437, + "learning_rate": 1.6988063660477454e-05, + "loss": 0.4488802337646484, + "step": 74700 + }, + { + "epoch": 66.13625304136254, + "grad_norm": 0.5161113739013672, + "learning_rate": 1.6943854995579134e-05, + "loss": 0.44122817993164065, + "step": 74800 + }, + { + "epoch": 66.22472904224729, + "grad_norm": 0.5127883553504944, + "learning_rate": 1.6899646330680815e-05, + "loss": 0.4447059631347656, + "step": 74900 + }, + { + "epoch": 66.31320504313204, + "grad_norm": 0.5202219486236572, + "learning_rate": 1.6855437665782495e-05, + "loss": 0.4453567123413086, + "step": 75000 + }, + { + "epoch": 66.40168104401681, + "grad_norm": 0.4957808256149292, + "learning_rate": 1.6811229000884172e-05, + "loss": 0.44502986907958986, + "step": 75100 + }, + { + "epoch": 66.49015704490157, + "grad_norm": 0.622518002986908, + "learning_rate": 1.6767020335985853e-05, + "loss": 0.44539188385009765, + "step": 75200 + }, + { + "epoch": 66.57863304578633, + "grad_norm": 0.5333230495452881, + "learning_rate": 1.6722811671087537e-05, + "loss": 0.4479424667358398, + "step": 75300 + }, + { + "epoch": 66.66710904667109, + "grad_norm": 0.536641001701355, + "learning_rate": 1.6678603006189214e-05, + "loss": 0.4486875534057617, + "step": 75400 + }, + { + "epoch": 66.75558504755585, + "grad_norm": 0.6140312552452087, + "learning_rate": 1.6634394341290894e-05, + "loss": 0.45118595123291017, + "step": 75500 + }, + { + "epoch": 66.84406104844061, + "grad_norm": 0.5268392562866211, + "learning_rate": 1.6590185676392574e-05, + "loss": 0.4503518676757812, + "step": 75600 + }, + { + "epoch": 66.93253704932538, + "grad_norm": 0.6316497325897217, + "learning_rate": 1.6545977011494255e-05, + "loss": 0.45311626434326174, + "step": 75700 + }, + { + "epoch": 67.02034948020349, + "grad_norm": 0.4964323937892914, + "learning_rate": 1.6502210433244915e-05, + "loss": 0.44798419952392576, + "step": 75800 + }, + { + "epoch": 67.10882548108826, + "grad_norm": 0.5668012499809265, + "learning_rate": 1.6458001768346595e-05, + "loss": 0.43682758331298827, + "step": 75900 + }, + { + "epoch": 67.19730148197301, + "grad_norm": 0.5451331734657288, + "learning_rate": 1.6413793103448276e-05, + "loss": 0.43744281768798826, + "step": 76000 + }, + { + "epoch": 67.28577748285778, + "grad_norm": 0.5625444650650024, + "learning_rate": 1.6369584438549956e-05, + "loss": 0.44072349548339845, + "step": 76100 + }, + { + "epoch": 67.37425348374254, + "grad_norm": 0.5437332391738892, + "learning_rate": 1.6325375773651637e-05, + "loss": 0.4433360290527344, + "step": 76200 + }, + { + "epoch": 67.46272948462729, + "grad_norm": 0.6005889773368835, + "learning_rate": 1.6281167108753317e-05, + "loss": 0.44355270385742185, + "step": 76300 + }, + { + "epoch": 67.55120548551206, + "grad_norm": 0.6379736065864563, + "learning_rate": 1.6236958443854997e-05, + "loss": 0.4445816421508789, + "step": 76400 + }, + { + "epoch": 67.63968148639681, + "grad_norm": 0.4892788529396057, + "learning_rate": 1.6192749778956675e-05, + "loss": 0.4460066604614258, + "step": 76500 + }, + { + "epoch": 67.72815748728158, + "grad_norm": 0.5238019227981567, + "learning_rate": 1.614854111405836e-05, + "loss": 0.44812583923339844, + "step": 76600 + }, + { + "epoch": 67.81663348816633, + "grad_norm": 0.6448091864585876, + "learning_rate": 1.6104332449160035e-05, + "loss": 0.44679683685302735, + "step": 76700 + }, + { + "epoch": 67.9051094890511, + "grad_norm": 0.501971423625946, + "learning_rate": 1.6060123784261716e-05, + "loss": 0.44675071716308595, + "step": 76800 + }, + { + "epoch": 67.99358548993585, + "grad_norm": 0.5027251243591309, + "learning_rate": 1.6015915119363396e-05, + "loss": 0.450067138671875, + "step": 76900 + }, + { + "epoch": 68.08139792081398, + "grad_norm": 0.5118396878242493, + "learning_rate": 1.5971706454465077e-05, + "loss": 0.4363971710205078, + "step": 77000 + }, + { + "epoch": 68.16987392169874, + "grad_norm": 0.49976325035095215, + "learning_rate": 1.5927497789566757e-05, + "loss": 0.43459579467773435, + "step": 77100 + }, + { + "epoch": 68.2583499225835, + "grad_norm": 0.4591541886329651, + "learning_rate": 1.5883289124668434e-05, + "loss": 0.4374491500854492, + "step": 77200 + }, + { + "epoch": 68.34682592346826, + "grad_norm": 0.5061107277870178, + "learning_rate": 1.5839080459770118e-05, + "loss": 0.4367493438720703, + "step": 77300 + }, + { + "epoch": 68.43530192435301, + "grad_norm": 0.5607414245605469, + "learning_rate": 1.5794871794871795e-05, + "loss": 0.43953250885009765, + "step": 77400 + }, + { + "epoch": 68.52377792523778, + "grad_norm": 0.5758550763130188, + "learning_rate": 1.5750663129973476e-05, + "loss": 0.4412353515625, + "step": 77500 + }, + { + "epoch": 68.61225392612253, + "grad_norm": 0.6092869639396667, + "learning_rate": 1.5706454465075153e-05, + "loss": 0.44133682250976564, + "step": 77600 + }, + { + "epoch": 68.7007299270073, + "grad_norm": 0.6203352808952332, + "learning_rate": 1.5662245800176837e-05, + "loss": 0.4439066696166992, + "step": 77700 + }, + { + "epoch": 68.78920592789206, + "grad_norm": 0.5746839046478271, + "learning_rate": 1.5618037135278517e-05, + "loss": 0.4423197174072266, + "step": 77800 + }, + { + "epoch": 68.87768192877682, + "grad_norm": 0.5136276483535767, + "learning_rate": 1.5573828470380194e-05, + "loss": 0.4460869598388672, + "step": 77900 + }, + { + "epoch": 68.96615792966158, + "grad_norm": 0.4968768358230591, + "learning_rate": 1.5529619805481878e-05, + "loss": 0.4462531280517578, + "step": 78000 + }, + { + "epoch": 69.05397036053971, + "grad_norm": 0.5103012919425964, + "learning_rate": 1.5485411140583555e-05, + "loss": 0.43465484619140626, + "step": 78100 + }, + { + "epoch": 69.14244636142446, + "grad_norm": 0.5626784563064575, + "learning_rate": 1.5441202475685236e-05, + "loss": 0.4333412551879883, + "step": 78200 + }, + { + "epoch": 69.23092236230923, + "grad_norm": 0.5118581652641296, + "learning_rate": 1.5396993810786913e-05, + "loss": 0.4336922836303711, + "step": 78300 + }, + { + "epoch": 69.31939836319398, + "grad_norm": 0.5944911241531372, + "learning_rate": 1.5352785145888596e-05, + "loss": 0.43566287994384767, + "step": 78400 + }, + { + "epoch": 69.40787436407874, + "grad_norm": 0.5433744788169861, + "learning_rate": 1.5308576480990273e-05, + "loss": 0.4361726379394531, + "step": 78500 + }, + { + "epoch": 69.4963503649635, + "grad_norm": 0.614020049571991, + "learning_rate": 1.5264367816091954e-05, + "loss": 0.4380105209350586, + "step": 78600 + }, + { + "epoch": 69.58482636584826, + "grad_norm": 0.5004254579544067, + "learning_rate": 1.5220159151193636e-05, + "loss": 0.4391395950317383, + "step": 78700 + }, + { + "epoch": 69.67330236673303, + "grad_norm": 0.522055983543396, + "learning_rate": 1.5175950486295315e-05, + "loss": 0.4396755599975586, + "step": 78800 + }, + { + "epoch": 69.76177836761778, + "grad_norm": 0.524988055229187, + "learning_rate": 1.5131741821396994e-05, + "loss": 0.4374229431152344, + "step": 78900 + }, + { + "epoch": 69.85025436850255, + "grad_norm": 0.5780676603317261, + "learning_rate": 1.5087533156498674e-05, + "loss": 0.4402974319458008, + "step": 79000 + }, + { + "epoch": 69.9387303693873, + "grad_norm": 0.5651708841323853, + "learning_rate": 1.5043324491600355e-05, + "loss": 0.44202667236328125, + "step": 79100 + }, + { + "epoch": 70.02654280026543, + "grad_norm": 0.48370227217674255, + "learning_rate": 1.4999557913351018e-05, + "loss": 0.4367184829711914, + "step": 79200 + }, + { + "epoch": 70.11501880115019, + "grad_norm": 0.5551156401634216, + "learning_rate": 1.4955349248452696e-05, + "loss": 0.42862590789794924, + "step": 79300 + }, + { + "epoch": 70.20349480203495, + "grad_norm": 0.5126725435256958, + "learning_rate": 1.4911140583554379e-05, + "loss": 0.4319373321533203, + "step": 79400 + }, + { + "epoch": 70.2919708029197, + "grad_norm": 0.5189195871353149, + "learning_rate": 1.4866931918656057e-05, + "loss": 0.4309040832519531, + "step": 79500 + }, + { + "epoch": 70.38044680380447, + "grad_norm": 0.49422213435173035, + "learning_rate": 1.4822723253757736e-05, + "loss": 0.43275665283203124, + "step": 79600 + }, + { + "epoch": 70.46892280468923, + "grad_norm": 0.49081242084503174, + "learning_rate": 1.4778514588859418e-05, + "loss": 0.4326107406616211, + "step": 79700 + }, + { + "epoch": 70.55739880557398, + "grad_norm": 0.5408063530921936, + "learning_rate": 1.4734305923961097e-05, + "loss": 0.4341436004638672, + "step": 79800 + }, + { + "epoch": 70.64587480645875, + "grad_norm": 0.4664778411388397, + "learning_rate": 1.4690097259062778e-05, + "loss": 0.4358782577514648, + "step": 79900 + }, + { + "epoch": 70.7343508073435, + "grad_norm": 0.5463866591453552, + "learning_rate": 1.4645888594164456e-05, + "loss": 0.4348703384399414, + "step": 80000 + }, + { + "epoch": 70.82282680822827, + "grad_norm": 0.5187687873840332, + "learning_rate": 1.4601679929266138e-05, + "loss": 0.43734962463378907, + "step": 80100 + }, + { + "epoch": 70.91130280911302, + "grad_norm": 0.4700576961040497, + "learning_rate": 1.4557471264367817e-05, + "loss": 0.43692012786865236, + "step": 80200 + }, + { + "epoch": 70.99977880999779, + "grad_norm": 0.5413524508476257, + "learning_rate": 1.4513262599469496e-05, + "loss": 0.43848495483398436, + "step": 80300 + }, + { + "epoch": 71.08759124087591, + "grad_norm": 0.5619797110557556, + "learning_rate": 1.4469053934571178e-05, + "loss": 0.4241709899902344, + "step": 80400 + }, + { + "epoch": 71.17606724176068, + "grad_norm": 0.5617126226425171, + "learning_rate": 1.4424845269672857e-05, + "loss": 0.42585777282714843, + "step": 80500 + }, + { + "epoch": 71.26454324264543, + "grad_norm": 0.6131432056427002, + "learning_rate": 1.4380636604774536e-05, + "loss": 0.42857707977294923, + "step": 80600 + }, + { + "epoch": 71.3530192435302, + "grad_norm": 0.5178084969520569, + "learning_rate": 1.4336427939876216e-05, + "loss": 0.4283063507080078, + "step": 80700 + }, + { + "epoch": 71.44149524441495, + "grad_norm": 0.4994112253189087, + "learning_rate": 1.4292219274977897e-05, + "loss": 0.43106334686279296, + "step": 80800 + }, + { + "epoch": 71.5299712452997, + "grad_norm": 0.5411744713783264, + "learning_rate": 1.4248010610079577e-05, + "loss": 0.43190105438232423, + "step": 80900 + }, + { + "epoch": 71.61844724618447, + "grad_norm": 0.5602013468742371, + "learning_rate": 1.4203801945181256e-05, + "loss": 0.4335565185546875, + "step": 81000 + }, + { + "epoch": 71.70692324706923, + "grad_norm": 0.5469107031822205, + "learning_rate": 1.4159593280282938e-05, + "loss": 0.4339017105102539, + "step": 81100 + }, + { + "epoch": 71.795399247954, + "grad_norm": 0.5971689224243164, + "learning_rate": 1.4115384615384617e-05, + "loss": 0.43302181243896487, + "step": 81200 + }, + { + "epoch": 71.88387524883875, + "grad_norm": 0.5518947243690491, + "learning_rate": 1.4071175950486295e-05, + "loss": 0.4339981460571289, + "step": 81300 + }, + { + "epoch": 71.97235124972352, + "grad_norm": 0.46094366908073425, + "learning_rate": 1.4026967285587974e-05, + "loss": 0.4368946075439453, + "step": 81400 + }, + { + "epoch": 72.06016368060163, + "grad_norm": 0.5013940334320068, + "learning_rate": 1.3983200707338639e-05, + "loss": 0.4272830581665039, + "step": 81500 + }, + { + "epoch": 72.1486396814864, + "grad_norm": 0.5779539346694946, + "learning_rate": 1.3938992042440318e-05, + "loss": 0.4237482452392578, + "step": 81600 + }, + { + "epoch": 72.23711568237115, + "grad_norm": 0.5799530744552612, + "learning_rate": 1.3894783377541998e-05, + "loss": 0.4221677398681641, + "step": 81700 + }, + { + "epoch": 72.32559168325592, + "grad_norm": 0.4773975908756256, + "learning_rate": 1.385057471264368e-05, + "loss": 0.4251049041748047, + "step": 81800 + }, + { + "epoch": 72.41406768414068, + "grad_norm": 0.5311180353164673, + "learning_rate": 1.380636604774536e-05, + "loss": 0.42632369995117186, + "step": 81900 + }, + { + "epoch": 72.50254368502544, + "grad_norm": 0.47812601923942566, + "learning_rate": 1.3762157382847038e-05, + "loss": 0.42722888946533205, + "step": 82000 + }, + { + "epoch": 72.5910196859102, + "grad_norm": 0.606674313545227, + "learning_rate": 1.371794871794872e-05, + "loss": 0.4295787811279297, + "step": 82100 + }, + { + "epoch": 72.67949568679495, + "grad_norm": 0.5414536595344543, + "learning_rate": 1.3673740053050399e-05, + "loss": 0.4311911392211914, + "step": 82200 + }, + { + "epoch": 72.76797168767972, + "grad_norm": 0.5214236974716187, + "learning_rate": 1.3629531388152078e-05, + "loss": 0.4323184585571289, + "step": 82300 + }, + { + "epoch": 72.85644768856447, + "grad_norm": 0.531461238861084, + "learning_rate": 1.3585322723253756e-05, + "loss": 0.43523616790771485, + "step": 82400 + }, + { + "epoch": 72.94492368944924, + "grad_norm": 0.550273597240448, + "learning_rate": 1.3541114058355439e-05, + "loss": 0.4310142517089844, + "step": 82500 + }, + { + "epoch": 73.03273612032736, + "grad_norm": 0.47776085138320923, + "learning_rate": 1.3496905393457119e-05, + "loss": 0.4287875747680664, + "step": 82600 + }, + { + "epoch": 73.12121212121212, + "grad_norm": 0.4990812838077545, + "learning_rate": 1.3452696728558798e-05, + "loss": 0.42051288604736325, + "step": 82700 + }, + { + "epoch": 73.20968812209688, + "grad_norm": 0.5124841332435608, + "learning_rate": 1.340848806366048e-05, + "loss": 0.4193102264404297, + "step": 82800 + }, + { + "epoch": 73.29816412298165, + "grad_norm": 0.5289502739906311, + "learning_rate": 1.3364279398762159e-05, + "loss": 0.42208141326904297, + "step": 82900 + }, + { + "epoch": 73.3866401238664, + "grad_norm": 0.4958449602127075, + "learning_rate": 1.3320070733863837e-05, + "loss": 0.42313686370849607, + "step": 83000 + }, + { + "epoch": 73.47511612475117, + "grad_norm": 0.5278774499893188, + "learning_rate": 1.3275862068965516e-05, + "loss": 0.42546688079833983, + "step": 83100 + }, + { + "epoch": 73.56359212563592, + "grad_norm": 0.5365238785743713, + "learning_rate": 1.3231653404067198e-05, + "loss": 0.42514255523681643, + "step": 83200 + }, + { + "epoch": 73.65206812652067, + "grad_norm": 0.5327147841453552, + "learning_rate": 1.3187444739168877e-05, + "loss": 0.42642066955566404, + "step": 83300 + }, + { + "epoch": 73.74054412740544, + "grad_norm": 0.5245737433433533, + "learning_rate": 1.3143236074270558e-05, + "loss": 0.4263890838623047, + "step": 83400 + }, + { + "epoch": 73.8290201282902, + "grad_norm": 0.5159674286842346, + "learning_rate": 1.3099027409372238e-05, + "loss": 0.428508415222168, + "step": 83500 + }, + { + "epoch": 73.91749612917496, + "grad_norm": 0.47965142130851746, + "learning_rate": 1.3054818744473918e-05, + "loss": 0.42886260986328123, + "step": 83600 + }, + { + "epoch": 74.00530856005308, + "grad_norm": 0.573679506778717, + "learning_rate": 1.301105216622458e-05, + "loss": 0.4288605499267578, + "step": 83700 + }, + { + "epoch": 74.09378456093785, + "grad_norm": 0.5544322729110718, + "learning_rate": 1.2966843501326262e-05, + "loss": 0.4174742126464844, + "step": 83800 + }, + { + "epoch": 74.1822605618226, + "grad_norm": 0.4993799030780792, + "learning_rate": 1.2922634836427941e-05, + "loss": 0.4191867828369141, + "step": 83900 + }, + { + "epoch": 74.27073656270737, + "grad_norm": 0.57634037733078, + "learning_rate": 1.287842617152962e-05, + "loss": 0.42080997467041015, + "step": 84000 + }, + { + "epoch": 74.35921256359212, + "grad_norm": 0.5524028539657593, + "learning_rate": 1.2834217506631298e-05, + "loss": 0.41995132446289063, + "step": 84100 + }, + { + "epoch": 74.44768856447689, + "grad_norm": 0.5109556913375854, + "learning_rate": 1.279000884173298e-05, + "loss": 0.4207102584838867, + "step": 84200 + }, + { + "epoch": 74.53616456536164, + "grad_norm": 0.6384374499320984, + "learning_rate": 1.2745800176834661e-05, + "loss": 0.42162609100341797, + "step": 84300 + }, + { + "epoch": 74.6246405662464, + "grad_norm": 0.5029319524765015, + "learning_rate": 1.270159151193634e-05, + "loss": 0.4232307815551758, + "step": 84400 + }, + { + "epoch": 74.71311656713117, + "grad_norm": 0.49697303771972656, + "learning_rate": 1.2657382847038022e-05, + "loss": 0.4233212661743164, + "step": 84500 + }, + { + "epoch": 74.80159256801592, + "grad_norm": 0.5748586058616638, + "learning_rate": 1.26131741821397e-05, + "loss": 0.42522281646728516, + "step": 84600 + }, + { + "epoch": 74.89006856890069, + "grad_norm": 0.5335224866867065, + "learning_rate": 1.256896551724138e-05, + "loss": 0.4264080047607422, + "step": 84700 + }, + { + "epoch": 74.97854456978544, + "grad_norm": 0.5223293900489807, + "learning_rate": 1.2524756852343058e-05, + "loss": 0.4248130416870117, + "step": 84800 + }, + { + "epoch": 75.06635700066357, + "grad_norm": 0.588205099105835, + "learning_rate": 1.2480548187444739e-05, + "loss": 0.41714618682861326, + "step": 84900 + }, + { + "epoch": 75.15483300154833, + "grad_norm": 0.4878210127353668, + "learning_rate": 1.2436339522546419e-05, + "loss": 0.41694087982177735, + "step": 85000 + }, + { + "epoch": 75.2433090024331, + "grad_norm": 0.5826809406280518, + "learning_rate": 1.23921308576481e-05, + "loss": 0.41839481353759767, + "step": 85100 + }, + { + "epoch": 75.33178500331785, + "grad_norm": 0.5703395009040833, + "learning_rate": 1.234792219274978e-05, + "loss": 0.419650993347168, + "step": 85200 + }, + { + "epoch": 75.42026100420262, + "grad_norm": 0.5960374474525452, + "learning_rate": 1.230371352785146e-05, + "loss": 0.41910491943359374, + "step": 85300 + }, + { + "epoch": 75.50873700508737, + "grad_norm": 0.5564795732498169, + "learning_rate": 1.225950486295314e-05, + "loss": 0.42010501861572264, + "step": 85400 + }, + { + "epoch": 75.59721300597214, + "grad_norm": 0.5871827006340027, + "learning_rate": 1.221529619805482e-05, + "loss": 0.41939094543457034, + "step": 85500 + }, + { + "epoch": 75.68568900685689, + "grad_norm": 0.6139041185379028, + "learning_rate": 1.2171087533156498e-05, + "loss": 0.42172611236572266, + "step": 85600 + }, + { + "epoch": 75.77416500774164, + "grad_norm": 0.5693202614784241, + "learning_rate": 1.2126878868258179e-05, + "loss": 0.4217537307739258, + "step": 85700 + }, + { + "epoch": 75.86264100862641, + "grad_norm": 0.5371018648147583, + "learning_rate": 1.208267020335986e-05, + "loss": 0.4220458984375, + "step": 85800 + }, + { + "epoch": 75.95111700951117, + "grad_norm": 0.5617541074752808, + "learning_rate": 1.2038461538461538e-05, + "loss": 0.4248412322998047, + "step": 85900 + }, + { + "epoch": 76.0389294403893, + "grad_norm": 0.5177831649780273, + "learning_rate": 1.1994694960212203e-05, + "loss": 0.41939964294433596, + "step": 86000 + }, + { + "epoch": 76.12740544127405, + "grad_norm": 0.5142802000045776, + "learning_rate": 1.1950486295313883e-05, + "loss": 0.4111063003540039, + "step": 86100 + }, + { + "epoch": 76.21588144215882, + "grad_norm": 0.4861648976802826, + "learning_rate": 1.1906277630415562e-05, + "loss": 0.4148457717895508, + "step": 86200 + }, + { + "epoch": 76.30435744304357, + "grad_norm": 0.5097411870956421, + "learning_rate": 1.1862068965517243e-05, + "loss": 0.4158660125732422, + "step": 86300 + }, + { + "epoch": 76.39283344392834, + "grad_norm": 0.4740864336490631, + "learning_rate": 1.1817860300618921e-05, + "loss": 0.4178118133544922, + "step": 86400 + }, + { + "epoch": 76.48130944481309, + "grad_norm": 0.44249430298805237, + "learning_rate": 1.1773651635720602e-05, + "loss": 0.4165281677246094, + "step": 86500 + }, + { + "epoch": 76.56978544569786, + "grad_norm": 0.5490387082099915, + "learning_rate": 1.172944297082228e-05, + "loss": 0.4198506927490234, + "step": 86600 + }, + { + "epoch": 76.65826144658261, + "grad_norm": 0.5175479650497437, + "learning_rate": 1.1685234305923961e-05, + "loss": 0.4220100402832031, + "step": 86700 + }, + { + "epoch": 76.74673744746737, + "grad_norm": 0.5073688626289368, + "learning_rate": 1.1641025641025642e-05, + "loss": 0.4184294891357422, + "step": 86800 + }, + { + "epoch": 76.83521344835214, + "grad_norm": 0.6137869358062744, + "learning_rate": 1.1596816976127322e-05, + "loss": 0.41919185638427736, + "step": 86900 + }, + { + "epoch": 76.92368944923689, + "grad_norm": 0.5274661183357239, + "learning_rate": 1.1552608311229002e-05, + "loss": 0.4193117141723633, + "step": 87000 + }, + { + "epoch": 77.01150188011502, + "grad_norm": 0.578369677066803, + "learning_rate": 1.1508399646330681e-05, + "loss": 0.4192862701416016, + "step": 87100 + }, + { + "epoch": 77.09997788099977, + "grad_norm": 0.6028936505317688, + "learning_rate": 1.1464190981432362e-05, + "loss": 0.40931896209716795, + "step": 87200 + }, + { + "epoch": 77.18845388188454, + "grad_norm": 0.4915790557861328, + "learning_rate": 1.141998231653404e-05, + "loss": 0.41025619506835936, + "step": 87300 + }, + { + "epoch": 77.2769298827693, + "grad_norm": 0.5164591073989868, + "learning_rate": 1.1375773651635721e-05, + "loss": 0.4112412643432617, + "step": 87400 + }, + { + "epoch": 77.36540588365406, + "grad_norm": 0.48311275243759155, + "learning_rate": 1.1331564986737401e-05, + "loss": 0.4144105911254883, + "step": 87500 + }, + { + "epoch": 77.45388188453882, + "grad_norm": 0.46419015526771545, + "learning_rate": 1.128735632183908e-05, + "loss": 0.41563541412353516, + "step": 87600 + }, + { + "epoch": 77.54235788542358, + "grad_norm": 0.6288944482803345, + "learning_rate": 1.124314765694076e-05, + "loss": 0.41669620513916017, + "step": 87700 + }, + { + "epoch": 77.63083388630834, + "grad_norm": 0.497126966714859, + "learning_rate": 1.1198938992042441e-05, + "loss": 0.41618637084960936, + "step": 87800 + }, + { + "epoch": 77.7193098871931, + "grad_norm": 0.5373407602310181, + "learning_rate": 1.1154730327144122e-05, + "loss": 0.41614810943603514, + "step": 87900 + }, + { + "epoch": 77.80778588807786, + "grad_norm": 0.519382894039154, + "learning_rate": 1.1110521662245802e-05, + "loss": 0.41859901428222657, + "step": 88000 + }, + { + "epoch": 77.89626188896261, + "grad_norm": 0.5001983046531677, + "learning_rate": 1.106631299734748e-05, + "loss": 0.418219108581543, + "step": 88100 + }, + { + "epoch": 77.98473788984738, + "grad_norm": 0.5034019947052002, + "learning_rate": 1.1022104332449161e-05, + "loss": 0.4178015899658203, + "step": 88200 + }, + { + "epoch": 78.0725503207255, + "grad_norm": 0.5158605575561523, + "learning_rate": 1.097789566755084e-05, + "loss": 0.4091143035888672, + "step": 88300 + }, + { + "epoch": 78.16102632161027, + "grad_norm": 0.48502761125564575, + "learning_rate": 1.093368700265252e-05, + "loss": 0.40843994140625, + "step": 88400 + }, + { + "epoch": 78.24950232249502, + "grad_norm": 0.5448765754699707, + "learning_rate": 1.08894783377542e-05, + "loss": 0.4109685516357422, + "step": 88500 + }, + { + "epoch": 78.33797832337979, + "grad_norm": 0.52455735206604, + "learning_rate": 1.084526967285588e-05, + "loss": 0.4108180236816406, + "step": 88600 + }, + { + "epoch": 78.42645432426454, + "grad_norm": 0.49440670013427734, + "learning_rate": 1.080106100795756e-05, + "loss": 0.41148426055908205, + "step": 88700 + }, + { + "epoch": 78.51493032514931, + "grad_norm": 0.5575434565544128, + "learning_rate": 1.075685234305924e-05, + "loss": 0.4121563720703125, + "step": 88800 + }, + { + "epoch": 78.60340632603406, + "grad_norm": 0.5276569724082947, + "learning_rate": 1.0712643678160921e-05, + "loss": 0.41357189178466797, + "step": 88900 + }, + { + "epoch": 78.69188232691883, + "grad_norm": 0.5279592871665955, + "learning_rate": 1.06684350132626e-05, + "loss": 0.4147018814086914, + "step": 89000 + }, + { + "epoch": 78.78035832780358, + "grad_norm": 0.4984647333621979, + "learning_rate": 1.062422634836428e-05, + "loss": 0.41413829803466795, + "step": 89100 + }, + { + "epoch": 78.86883432868834, + "grad_norm": 0.5556148886680603, + "learning_rate": 1.0580017683465959e-05, + "loss": 0.4168708419799805, + "step": 89200 + }, + { + "epoch": 78.9573103295731, + "grad_norm": 0.46219438314437866, + "learning_rate": 1.053580901856764e-05, + "loss": 0.41841983795166016, + "step": 89300 + }, + { + "epoch": 79.04512276045122, + "grad_norm": 0.49136674404144287, + "learning_rate": 1.0492042440318303e-05, + "loss": 0.41013729095458984, + "step": 89400 + }, + { + "epoch": 79.13359876133599, + "grad_norm": 0.5096011161804199, + "learning_rate": 1.0447833775419983e-05, + "loss": 0.4057589340209961, + "step": 89500 + }, + { + "epoch": 79.22207476222074, + "grad_norm": 0.4563368558883667, + "learning_rate": 1.0403625110521663e-05, + "loss": 0.4064152526855469, + "step": 89600 + }, + { + "epoch": 79.31055076310551, + "grad_norm": 0.5743097066879272, + "learning_rate": 1.0359416445623344e-05, + "loss": 0.40998432159423825, + "step": 89700 + }, + { + "epoch": 79.39902676399026, + "grad_norm": 0.46749743819236755, + "learning_rate": 1.0315207780725023e-05, + "loss": 0.40825595855712893, + "step": 89800 + }, + { + "epoch": 79.48750276487503, + "grad_norm": 0.522980272769928, + "learning_rate": 1.0270999115826703e-05, + "loss": 0.4116529083251953, + "step": 89900 + }, + { + "epoch": 79.57597876575979, + "grad_norm": 0.4576069712638855, + "learning_rate": 1.0226790450928382e-05, + "loss": 0.41039798736572264, + "step": 90000 + }, + { + "epoch": 79.66445476664455, + "grad_norm": 0.574553370475769, + "learning_rate": 1.0182581786030062e-05, + "loss": 0.4103997802734375, + "step": 90100 + }, + { + "epoch": 79.7529307675293, + "grad_norm": 0.5592597126960754, + "learning_rate": 1.0138373121131741e-05, + "loss": 0.4123684310913086, + "step": 90200 + }, + { + "epoch": 79.84140676841407, + "grad_norm": 0.5754570364952087, + "learning_rate": 1.0094164456233422e-05, + "loss": 0.4138601684570313, + "step": 90300 + }, + { + "epoch": 79.92988276929883, + "grad_norm": 0.5830336213111877, + "learning_rate": 1.0049955791335102e-05, + "loss": 0.41378173828125, + "step": 90400 + }, + { + "epoch": 80.01769520017695, + "grad_norm": 0.473369836807251, + "learning_rate": 1.0005747126436783e-05, + "loss": 0.41222110748291013, + "step": 90500 + }, + { + "epoch": 80.10617120106171, + "grad_norm": 0.5327860116958618, + "learning_rate": 9.961538461538463e-06, + "loss": 0.4058869934082031, + "step": 90600 + }, + { + "epoch": 80.19464720194647, + "grad_norm": 0.5304612517356873, + "learning_rate": 9.917329796640142e-06, + "loss": 0.4061882781982422, + "step": 90700 + }, + { + "epoch": 80.28312320283123, + "grad_norm": 0.5240916013717651, + "learning_rate": 9.873121131741822e-06, + "loss": 0.40706119537353513, + "step": 90800 + }, + { + "epoch": 80.37159920371599, + "grad_norm": 0.4663858413696289, + "learning_rate": 9.828912466843501e-06, + "loss": 0.4077639389038086, + "step": 90900 + }, + { + "epoch": 80.46007520460076, + "grad_norm": 0.4718465805053711, + "learning_rate": 9.784703801945181e-06, + "loss": 0.4078546905517578, + "step": 91000 + }, + { + "epoch": 80.54855120548551, + "grad_norm": 0.45132529735565186, + "learning_rate": 9.740495137046862e-06, + "loss": 0.40724002838134765, + "step": 91100 + }, + { + "epoch": 80.63702720637028, + "grad_norm": 0.4961422085762024, + "learning_rate": 9.69628647214854e-06, + "loss": 0.4097640609741211, + "step": 91200 + }, + { + "epoch": 80.72550320725503, + "grad_norm": 0.5276188850402832, + "learning_rate": 9.652077807250221e-06, + "loss": 0.41011890411376956, + "step": 91300 + }, + { + "epoch": 80.8139792081398, + "grad_norm": 0.48676180839538574, + "learning_rate": 9.607869142351902e-06, + "loss": 0.41075672149658204, + "step": 91400 + }, + { + "epoch": 80.90245520902455, + "grad_norm": 0.5812916159629822, + "learning_rate": 9.563660477453582e-06, + "loss": 0.4131761932373047, + "step": 91500 + }, + { + "epoch": 80.9909312099093, + "grad_norm": 0.5730577707290649, + "learning_rate": 9.51945181255526e-06, + "loss": 0.41234848022460935, + "step": 91600 + }, + { + "epoch": 81.07874364078744, + "grad_norm": 0.5240619778633118, + "learning_rate": 9.475685234305924e-06, + "loss": 0.40376312255859376, + "step": 91700 + }, + { + "epoch": 81.16721964167219, + "grad_norm": 0.46626827120780945, + "learning_rate": 9.431476569407604e-06, + "loss": 0.40396995544433595, + "step": 91800 + }, + { + "epoch": 81.25569564255696, + "grad_norm": 0.49117109179496765, + "learning_rate": 9.387267904509283e-06, + "loss": 0.4028842544555664, + "step": 91900 + }, + { + "epoch": 81.34417164344171, + "grad_norm": 0.5428334474563599, + "learning_rate": 9.343059239610964e-06, + "loss": 0.4046338653564453, + "step": 92000 + }, + { + "epoch": 81.43264764432648, + "grad_norm": 0.5240166783332825, + "learning_rate": 9.298850574712644e-06, + "loss": 0.4052513885498047, + "step": 92100 + }, + { + "epoch": 81.52112364521123, + "grad_norm": 0.4899362325668335, + "learning_rate": 9.254641909814325e-06, + "loss": 0.4052754974365234, + "step": 92200 + }, + { + "epoch": 81.609599646096, + "grad_norm": 0.46969664096832275, + "learning_rate": 9.210433244916005e-06, + "loss": 0.4072676086425781, + "step": 92300 + }, + { + "epoch": 81.69807564698075, + "grad_norm": 0.4990880489349365, + "learning_rate": 9.166224580017684e-06, + "loss": 0.40702415466308595, + "step": 92400 + }, + { + "epoch": 81.78655164786552, + "grad_norm": 0.5545535087585449, + "learning_rate": 9.122015915119364e-06, + "loss": 0.4103099822998047, + "step": 92500 + }, + { + "epoch": 81.87502764875028, + "grad_norm": 0.5591033101081848, + "learning_rate": 9.077807250221043e-06, + "loss": 0.4087317276000977, + "step": 92600 + }, + { + "epoch": 81.96350364963503, + "grad_norm": 0.5289734601974487, + "learning_rate": 9.033598585322723e-06, + "loss": 0.4112258529663086, + "step": 92700 + }, + { + "epoch": 82.05131608051316, + "grad_norm": 0.59573894739151, + "learning_rate": 8.989389920424404e-06, + "loss": 0.40506195068359374, + "step": 92800 + }, + { + "epoch": 82.13979208139791, + "grad_norm": 0.4581588804721832, + "learning_rate": 8.945181255526083e-06, + "loss": 0.401633186340332, + "step": 92900 + }, + { + "epoch": 82.22826808228268, + "grad_norm": 0.4607727527618408, + "learning_rate": 8.900972590627763e-06, + "loss": 0.4030620193481445, + "step": 93000 + }, + { + "epoch": 82.31674408316744, + "grad_norm": 0.5693869590759277, + "learning_rate": 8.856763925729444e-06, + "loss": 0.4034944152832031, + "step": 93100 + }, + { + "epoch": 82.4052200840522, + "grad_norm": 0.4679562449455261, + "learning_rate": 8.812555260831124e-06, + "loss": 0.40353385925292967, + "step": 93200 + }, + { + "epoch": 82.49369608493696, + "grad_norm": 0.4970017373561859, + "learning_rate": 8.768346595932803e-06, + "loss": 0.4040465545654297, + "step": 93300 + }, + { + "epoch": 82.58217208582172, + "grad_norm": 0.4850037097930908, + "learning_rate": 8.724137931034483e-06, + "loss": 0.40520496368408204, + "step": 93400 + }, + { + "epoch": 82.67064808670648, + "grad_norm": 0.5304952263832092, + "learning_rate": 8.679929266136164e-06, + "loss": 0.4062754440307617, + "step": 93500 + }, + { + "epoch": 82.75912408759125, + "grad_norm": 0.5124515891075134, + "learning_rate": 8.635720601237842e-06, + "loss": 0.4042987442016602, + "step": 93600 + }, + { + "epoch": 82.847600088476, + "grad_norm": 0.5527506470680237, + "learning_rate": 8.591511936339523e-06, + "loss": 0.4051095199584961, + "step": 93700 + }, + { + "epoch": 82.93607608936077, + "grad_norm": 0.4627765119075775, + "learning_rate": 8.547303271441202e-06, + "loss": 0.4065189743041992, + "step": 93800 + }, + { + "epoch": 83.02388852023888, + "grad_norm": 0.47690948843955994, + "learning_rate": 8.503094606542882e-06, + "loss": 0.4059687042236328, + "step": 93900 + }, + { + "epoch": 83.11236452112365, + "grad_norm": 0.543329656124115, + "learning_rate": 8.458885941644563e-06, + "loss": 0.40105613708496096, + "step": 94000 + }, + { + "epoch": 83.2008405220084, + "grad_norm": 0.5308240056037903, + "learning_rate": 8.414677276746243e-06, + "loss": 0.3999287414550781, + "step": 94100 + }, + { + "epoch": 83.28931652289316, + "grad_norm": 0.5098600387573242, + "learning_rate": 8.370468611847924e-06, + "loss": 0.3998809051513672, + "step": 94200 + }, + { + "epoch": 83.37779252377793, + "grad_norm": 0.5461894273757935, + "learning_rate": 8.326259946949602e-06, + "loss": 0.4027032470703125, + "step": 94300 + }, + { + "epoch": 83.46626852466268, + "grad_norm": 0.5599612593650818, + "learning_rate": 8.282051282051283e-06, + "loss": 0.4018612289428711, + "step": 94400 + }, + { + "epoch": 83.55474452554745, + "grad_norm": 0.5953245162963867, + "learning_rate": 8.237842617152961e-06, + "loss": 0.4048320770263672, + "step": 94500 + }, + { + "epoch": 83.6432205264322, + "grad_norm": 0.5232775211334229, + "learning_rate": 8.193633952254642e-06, + "loss": 0.40312889099121096, + "step": 94600 + }, + { + "epoch": 83.73169652731697, + "grad_norm": 0.5057620406150818, + "learning_rate": 8.149425287356322e-06, + "loss": 0.4016009521484375, + "step": 94700 + }, + { + "epoch": 83.82017252820172, + "grad_norm": 0.54839026927948, + "learning_rate": 8.105216622458001e-06, + "loss": 0.40390682220458984, + "step": 94800 + }, + { + "epoch": 83.90864852908649, + "grad_norm": 0.42211759090423584, + "learning_rate": 8.061007957559683e-06, + "loss": 0.4043146514892578, + "step": 94900 + }, + { + "epoch": 83.99712452997125, + "grad_norm": 0.46576666831970215, + "learning_rate": 8.016799292661362e-06, + "loss": 0.4071781539916992, + "step": 95000 + }, + { + "epoch": 84.08493696084938, + "grad_norm": 0.48286134004592896, + "learning_rate": 7.973032714412025e-06, + "loss": 0.3980902862548828, + "step": 95100 + }, + { + "epoch": 84.17341296173413, + "grad_norm": 0.5105409026145935, + "learning_rate": 7.928824049513706e-06, + "loss": 0.39626029968261717, + "step": 95200 + }, + { + "epoch": 84.26188896261888, + "grad_norm": 0.5280846357345581, + "learning_rate": 7.884615384615384e-06, + "loss": 0.39923973083496095, + "step": 95300 + }, + { + "epoch": 84.35036496350365, + "grad_norm": 0.49487778544425964, + "learning_rate": 7.840406719717065e-06, + "loss": 0.39867469787597654, + "step": 95400 + }, + { + "epoch": 84.4388409643884, + "grad_norm": 0.5105910897254944, + "learning_rate": 7.796198054818744e-06, + "loss": 0.4000941467285156, + "step": 95500 + }, + { + "epoch": 84.52731696527317, + "grad_norm": 0.49424290657043457, + "learning_rate": 7.751989389920424e-06, + "loss": 0.4025596618652344, + "step": 95600 + }, + { + "epoch": 84.61579296615793, + "grad_norm": 0.5923288464546204, + "learning_rate": 7.707780725022105e-06, + "loss": 0.40207050323486326, + "step": 95700 + }, + { + "epoch": 84.7042689670427, + "grad_norm": 0.47270065546035767, + "learning_rate": 7.663572060123785e-06, + "loss": 0.40140762329101565, + "step": 95800 + }, + { + "epoch": 84.79274496792745, + "grad_norm": 0.4515872597694397, + "learning_rate": 7.619363395225465e-06, + "loss": 0.4039121627807617, + "step": 95900 + }, + { + "epoch": 84.88122096881222, + "grad_norm": 0.5799027681350708, + "learning_rate": 7.575154730327144e-06, + "loss": 0.40215221405029294, + "step": 96000 + }, + { + "epoch": 84.96969696969697, + "grad_norm": 0.5158770680427551, + "learning_rate": 7.530946065428825e-06, + "loss": 0.40449161529541017, + "step": 96100 + }, + { + "epoch": 85.0575094005751, + "grad_norm": 0.5103220343589783, + "learning_rate": 7.4867374005305035e-06, + "loss": 0.3986453628540039, + "step": 96200 + }, + { + "epoch": 85.14598540145985, + "grad_norm": 0.48847347497940063, + "learning_rate": 7.442528735632184e-06, + "loss": 0.3962085723876953, + "step": 96300 + }, + { + "epoch": 85.2344614023446, + "grad_norm": 0.5786899328231812, + "learning_rate": 7.398320070733865e-06, + "loss": 0.398316535949707, + "step": 96400 + }, + { + "epoch": 85.32293740322937, + "grad_norm": 0.4464615285396576, + "learning_rate": 7.354111405835544e-06, + "loss": 0.39748287200927734, + "step": 96500 + }, + { + "epoch": 85.41141340411413, + "grad_norm": 0.5107320547103882, + "learning_rate": 7.3099027409372245e-06, + "loss": 0.399218864440918, + "step": 96600 + }, + { + "epoch": 85.4998894049989, + "grad_norm": 0.5555247068405151, + "learning_rate": 7.265694076038903e-06, + "loss": 0.40016975402832033, + "step": 96700 + }, + { + "epoch": 85.58836540588365, + "grad_norm": 0.46809983253479004, + "learning_rate": 7.2214854111405845e-06, + "loss": 0.39977962493896485, + "step": 96800 + }, + { + "epoch": 85.67684140676842, + "grad_norm": 0.5176143646240234, + "learning_rate": 7.177276746242263e-06, + "loss": 0.39803340911865237, + "step": 96900 + }, + { + "epoch": 85.76531740765317, + "grad_norm": 0.4717543125152588, + "learning_rate": 7.133068081343944e-06, + "loss": 0.4004299545288086, + "step": 97000 + }, + { + "epoch": 85.85379340853794, + "grad_norm": 0.49673059582710266, + "learning_rate": 7.088859416445624e-06, + "loss": 0.40104530334472654, + "step": 97100 + }, + { + "epoch": 85.94226940942269, + "grad_norm": 0.5706076622009277, + "learning_rate": 7.044650751547304e-06, + "loss": 0.40007728576660156, + "step": 97200 + }, + { + "epoch": 86.03008184030082, + "grad_norm": 0.5170352458953857, + "learning_rate": 7.000884173297967e-06, + "loss": 0.39897975921630857, + "step": 97300 + }, + { + "epoch": 86.11855784118558, + "grad_norm": 0.478630930185318, + "learning_rate": 6.956675508399646e-06, + "loss": 0.3933698272705078, + "step": 97400 + }, + { + "epoch": 86.20703384207035, + "grad_norm": 0.5094186067581177, + "learning_rate": 6.912466843501326e-06, + "loss": 0.39624488830566407, + "step": 97500 + }, + { + "epoch": 86.2955098429551, + "grad_norm": 0.5107275247573853, + "learning_rate": 6.868258178603007e-06, + "loss": 0.39685150146484377, + "step": 97600 + }, + { + "epoch": 86.38398584383985, + "grad_norm": 0.5861279964447021, + "learning_rate": 6.824049513704686e-06, + "loss": 0.3973454284667969, + "step": 97700 + }, + { + "epoch": 86.47246184472462, + "grad_norm": 0.490012526512146, + "learning_rate": 6.779840848806367e-06, + "loss": 0.3982046127319336, + "step": 97800 + }, + { + "epoch": 86.56093784560937, + "grad_norm": 0.47647538781166077, + "learning_rate": 6.7356321839080455e-06, + "loss": 0.39851917266845704, + "step": 97900 + }, + { + "epoch": 86.64941384649414, + "grad_norm": 0.45534029603004456, + "learning_rate": 6.691423519009726e-06, + "loss": 0.39754936218261716, + "step": 98000 + }, + { + "epoch": 86.7378898473789, + "grad_norm": 0.5305948257446289, + "learning_rate": 6.647214854111407e-06, + "loss": 0.39900218963623046, + "step": 98100 + }, + { + "epoch": 86.82636584826366, + "grad_norm": 0.48616868257522583, + "learning_rate": 6.603006189213086e-06, + "loss": 0.39878063201904296, + "step": 98200 + }, + { + "epoch": 86.91484184914842, + "grad_norm": 0.4637695252895355, + "learning_rate": 6.5587975243147665e-06, + "loss": 0.39936519622802735, + "step": 98300 + }, + { + "epoch": 87.00265428002655, + "grad_norm": 0.43915867805480957, + "learning_rate": 6.514588859416445e-06, + "loss": 0.39945316314697266, + "step": 98400 + }, + { + "epoch": 87.0911302809113, + "grad_norm": 0.5064729452133179, + "learning_rate": 6.4703801945181265e-06, + "loss": 0.39295291900634766, + "step": 98500 + }, + { + "epoch": 87.17960628179607, + "grad_norm": 0.41172826290130615, + "learning_rate": 6.426171529619805e-06, + "loss": 0.3956099319458008, + "step": 98600 + }, + { + "epoch": 87.26808228268082, + "grad_norm": 0.5156989693641663, + "learning_rate": 6.381962864721486e-06, + "loss": 0.3927472686767578, + "step": 98700 + }, + { + "epoch": 87.35655828356558, + "grad_norm": 0.4864855706691742, + "learning_rate": 6.337754199823166e-06, + "loss": 0.39533439636230466, + "step": 98800 + }, + { + "epoch": 87.44503428445034, + "grad_norm": 0.5469456911087036, + "learning_rate": 6.293545534924846e-06, + "loss": 0.3970512390136719, + "step": 98900 + }, + { + "epoch": 87.5335102853351, + "grad_norm": 0.4618734121322632, + "learning_rate": 6.249336870026525e-06, + "loss": 0.3967998504638672, + "step": 99000 + }, + { + "epoch": 87.62198628621987, + "grad_norm": 0.41789868474006653, + "learning_rate": 6.205128205128206e-06, + "loss": 0.3979497909545898, + "step": 99100 + }, + { + "epoch": 87.71046228710462, + "grad_norm": 0.5439488887786865, + "learning_rate": 6.1609195402298855e-06, + "loss": 0.3960274887084961, + "step": 99200 + }, + { + "epoch": 87.79893828798939, + "grad_norm": 0.46948105096817017, + "learning_rate": 6.116710875331565e-06, + "loss": 0.39781307220458983, + "step": 99300 + }, + { + "epoch": 87.88741428887414, + "grad_norm": 0.4804007411003113, + "learning_rate": 6.0725022104332456e-06, + "loss": 0.39600673675537107, + "step": 99400 + }, + { + "epoch": 87.97589028975891, + "grad_norm": 0.4494355618953705, + "learning_rate": 6.028293545534925e-06, + "loss": 0.3976548385620117, + "step": 99500 + }, + { + "epoch": 88.06370272063702, + "grad_norm": 0.4300312101840973, + "learning_rate": 5.984526967285588e-06, + "loss": 0.3928862762451172, + "step": 99600 + }, + { + "epoch": 88.15217872152179, + "grad_norm": 0.5155128836631775, + "learning_rate": 5.940318302387268e-06, + "loss": 0.39027740478515627, + "step": 99700 + }, + { + "epoch": 88.24065472240655, + "grad_norm": 0.4635615944862366, + "learning_rate": 5.896109637488948e-06, + "loss": 0.3938739776611328, + "step": 99800 + }, + { + "epoch": 88.32913072329131, + "grad_norm": 0.5408588647842407, + "learning_rate": 5.851900972590628e-06, + "loss": 0.3914863967895508, + "step": 99900 + }, + { + "epoch": 88.41760672417607, + "grad_norm": 0.5169259309768677, + "learning_rate": 5.807692307692308e-06, + "loss": 0.3942420959472656, + "step": 100000 + }, + { + "epoch": 88.50608272506082, + "grad_norm": 0.43603307008743286, + "learning_rate": 5.763483642793987e-06, + "loss": 0.3942053604125977, + "step": 100100 + }, + { + "epoch": 88.59455872594559, + "grad_norm": 0.484275758266449, + "learning_rate": 5.719274977895668e-06, + "loss": 0.3953342056274414, + "step": 100200 + }, + { + "epoch": 88.68303472683034, + "grad_norm": 0.4834429621696472, + "learning_rate": 5.675066312997348e-06, + "loss": 0.39478866577148436, + "step": 100300 + }, + { + "epoch": 88.77151072771511, + "grad_norm": 0.5198318362236023, + "learning_rate": 5.630857648099028e-06, + "loss": 0.3973033905029297, + "step": 100400 + }, + { + "epoch": 88.85998672859986, + "grad_norm": 0.5359114408493042, + "learning_rate": 5.586648983200707e-06, + "loss": 0.3963985824584961, + "step": 100500 + }, + { + "epoch": 88.94846272948463, + "grad_norm": 0.47174566984176636, + "learning_rate": 5.542440318302387e-06, + "loss": 0.39962120056152345, + "step": 100600 + }, + { + "epoch": 89.03627516036275, + "grad_norm": 0.5552394986152649, + "learning_rate": 5.498231653404067e-06, + "loss": 0.3942194747924805, + "step": 100700 + }, + { + "epoch": 89.12475116124752, + "grad_norm": 0.4985731840133667, + "learning_rate": 5.454022988505748e-06, + "loss": 0.39029048919677733, + "step": 100800 + }, + { + "epoch": 89.21322716213227, + "grad_norm": 0.5449782013893127, + "learning_rate": 5.4098143236074275e-06, + "loss": 0.391842155456543, + "step": 100900 + }, + { + "epoch": 89.30170316301704, + "grad_norm": 0.47477561235427856, + "learning_rate": 5.365605658709107e-06, + "loss": 0.39065505981445314, + "step": 101000 + }, + { + "epoch": 89.39017916390179, + "grad_norm": 0.5775418281555176, + "learning_rate": 5.3213969938107875e-06, + "loss": 0.39322795867919924, + "step": 101100 + }, + { + "epoch": 89.47865516478655, + "grad_norm": 0.44463786482810974, + "learning_rate": 5.277188328912467e-06, + "loss": 0.3929602813720703, + "step": 101200 + }, + { + "epoch": 89.56713116567131, + "grad_norm": 0.5217382311820984, + "learning_rate": 5.232979664014147e-06, + "loss": 0.3945352172851562, + "step": 101300 + }, + { + "epoch": 89.65560716655607, + "grad_norm": 0.47336575388908386, + "learning_rate": 5.188770999115826e-06, + "loss": 0.3943867492675781, + "step": 101400 + }, + { + "epoch": 89.74408316744083, + "grad_norm": 0.49890655279159546, + "learning_rate": 5.144562334217507e-06, + "loss": 0.39472442626953125, + "step": 101500 + }, + { + "epoch": 89.83255916832559, + "grad_norm": 0.4528096914291382, + "learning_rate": 5.100353669319187e-06, + "loss": 0.3927711868286133, + "step": 101600 + }, + { + "epoch": 89.92103516921036, + "grad_norm": 0.4498828649520874, + "learning_rate": 5.056145004420867e-06, + "loss": 0.3962491226196289, + "step": 101700 + }, + { + "epoch": 90.00884760008847, + "grad_norm": 0.45861297845840454, + "learning_rate": 5.0119363395225465e-06, + "loss": 0.39339271545410154, + "step": 101800 + }, + { + "epoch": 90.09732360097324, + "grad_norm": 0.5762381553649902, + "learning_rate": 4.967727674624226e-06, + "loss": 0.3896630096435547, + "step": 101900 + }, + { + "epoch": 90.185799601858, + "grad_norm": 0.5530878305435181, + "learning_rate": 4.923519009725907e-06, + "loss": 0.38933868408203126, + "step": 102000 + }, + { + "epoch": 90.27427560274276, + "grad_norm": 0.4769279360771179, + "learning_rate": 4.879310344827587e-06, + "loss": 0.38943870544433595, + "step": 102100 + }, + { + "epoch": 90.36275160362752, + "grad_norm": 0.5254392027854919, + "learning_rate": 4.835101679929267e-06, + "loss": 0.39091030120849607, + "step": 102200 + }, + { + "epoch": 90.45122760451227, + "grad_norm": 0.5098690986633301, + "learning_rate": 4.790893015030946e-06, + "loss": 0.39340557098388673, + "step": 102300 + }, + { + "epoch": 90.53970360539704, + "grad_norm": 0.5299240946769714, + "learning_rate": 4.746684350132626e-06, + "loss": 0.3925971221923828, + "step": 102400 + }, + { + "epoch": 90.62817960628179, + "grad_norm": 0.5023613572120667, + "learning_rate": 4.702475685234306e-06, + "loss": 0.3934814453125, + "step": 102500 + }, + { + "epoch": 90.71665560716656, + "grad_norm": 0.5217054486274719, + "learning_rate": 4.658267020335986e-06, + "loss": 0.39229228973388675, + "step": 102600 + }, + { + "epoch": 90.80513160805131, + "grad_norm": 0.4929801821708679, + "learning_rate": 4.6140583554376656e-06, + "loss": 0.39253700256347657, + "step": 102700 + }, + { + "epoch": 90.89360760893608, + "grad_norm": 0.4281506836414337, + "learning_rate": 4.569849690539346e-06, + "loss": 0.39423236846923826, + "step": 102800 + }, + { + "epoch": 90.98208360982083, + "grad_norm": 0.5606275796890259, + "learning_rate": 4.525641025641026e-06, + "loss": 0.39174613952636717, + "step": 102900 + }, + { + "epoch": 91.06989604069896, + "grad_norm": 0.40593966841697693, + "learning_rate": 4.481874447391689e-06, + "loss": 0.39004261016845704, + "step": 103000 + }, + { + "epoch": 91.15837204158372, + "grad_norm": 0.48218822479248047, + "learning_rate": 4.437665782493368e-06, + "loss": 0.39024349212646486, + "step": 103100 + }, + { + "epoch": 91.24684804246849, + "grad_norm": 0.4803628623485565, + "learning_rate": 4.393457117595049e-06, + "loss": 0.3893236541748047, + "step": 103200 + }, + { + "epoch": 91.33532404335324, + "grad_norm": 0.5424004197120667, + "learning_rate": 4.349248452696729e-06, + "loss": 0.3895704650878906, + "step": 103300 + }, + { + "epoch": 91.423800044238, + "grad_norm": 0.4238603711128235, + "learning_rate": 4.305039787798409e-06, + "loss": 0.3891864776611328, + "step": 103400 + }, + { + "epoch": 91.51227604512276, + "grad_norm": 0.5425596833229065, + "learning_rate": 4.2608311229000885e-06, + "loss": 0.3902478408813477, + "step": 103500 + }, + { + "epoch": 91.60075204600751, + "grad_norm": 0.529647946357727, + "learning_rate": 4.216622458001768e-06, + "loss": 0.39207550048828127, + "step": 103600 + }, + { + "epoch": 91.68922804689228, + "grad_norm": 0.42155396938323975, + "learning_rate": 4.1724137931034486e-06, + "loss": 0.3911063766479492, + "step": 103700 + }, + { + "epoch": 91.77770404777704, + "grad_norm": 0.4809010326862335, + "learning_rate": 4.128205128205129e-06, + "loss": 0.3927000427246094, + "step": 103800 + }, + { + "epoch": 91.8661800486618, + "grad_norm": 0.4598400890827179, + "learning_rate": 4.083996463306809e-06, + "loss": 0.38986122131347656, + "step": 103900 + }, + { + "epoch": 91.95465604954656, + "grad_norm": 0.52349853515625, + "learning_rate": 4.039787798408488e-06, + "loss": 0.3922639465332031, + "step": 104000 + }, + { + "epoch": 92.04246848042469, + "grad_norm": 0.5118280053138733, + "learning_rate": 3.996021220159151e-06, + "loss": 0.388396110534668, + "step": 104100 + }, + { + "epoch": 92.13094448130944, + "grad_norm": 0.49287110567092896, + "learning_rate": 3.951812555260832e-06, + "loss": 0.3882394027709961, + "step": 104200 + }, + { + "epoch": 92.21942048219421, + "grad_norm": 0.5597590804100037, + "learning_rate": 3.9076038903625115e-06, + "loss": 0.38768112182617187, + "step": 104300 + }, + { + "epoch": 92.30789648307896, + "grad_norm": 0.49123573303222656, + "learning_rate": 3.863395225464191e-06, + "loss": 0.38717472076416015, + "step": 104400 + }, + { + "epoch": 92.39637248396373, + "grad_norm": 0.5490599870681763, + "learning_rate": 3.819186560565871e-06, + "loss": 0.38968246459960937, + "step": 104500 + }, + { + "epoch": 92.48484848484848, + "grad_norm": 0.563377857208252, + "learning_rate": 3.7749778956675507e-06, + "loss": 0.3879422760009766, + "step": 104600 + }, + { + "epoch": 92.57332448573324, + "grad_norm": 0.5248238444328308, + "learning_rate": 3.7307692307692308e-06, + "loss": 0.3904239654541016, + "step": 104700 + }, + { + "epoch": 92.661800486618, + "grad_norm": 0.5977566242218018, + "learning_rate": 3.6865605658709104e-06, + "loss": 0.39140804290771486, + "step": 104800 + }, + { + "epoch": 92.75027648750276, + "grad_norm": 0.4992641508579254, + "learning_rate": 3.6423519009725912e-06, + "loss": 0.390025749206543, + "step": 104900 + }, + { + "epoch": 92.83875248838753, + "grad_norm": 0.5491787791252136, + "learning_rate": 3.598143236074271e-06, + "loss": 0.39107063293457034, + "step": 105000 + }, + { + "epoch": 92.92722848927228, + "grad_norm": 0.46409890055656433, + "learning_rate": 3.553934571175951e-06, + "loss": 0.3911115264892578, + "step": 105100 + }, + { + "epoch": 93.01504092015041, + "grad_norm": 0.5469849705696106, + "learning_rate": 3.5097259062776305e-06, + "loss": 0.3916855621337891, + "step": 105200 + }, + { + "epoch": 93.10351692103517, + "grad_norm": 0.496277391910553, + "learning_rate": 3.4655172413793105e-06, + "loss": 0.3867160415649414, + "step": 105300 + }, + { + "epoch": 93.19199292191993, + "grad_norm": 0.42929497361183167, + "learning_rate": 3.42130857648099e-06, + "loss": 0.38718021392822266, + "step": 105400 + }, + { + "epoch": 93.28046892280469, + "grad_norm": 0.406601220369339, + "learning_rate": 3.3770999115826706e-06, + "loss": 0.386837272644043, + "step": 105500 + }, + { + "epoch": 93.36894492368945, + "grad_norm": 0.48087212443351746, + "learning_rate": 3.3328912466843506e-06, + "loss": 0.3877327346801758, + "step": 105600 + }, + { + "epoch": 93.45742092457421, + "grad_norm": 0.5117219090461731, + "learning_rate": 3.2886825817860302e-06, + "loss": 0.38803070068359374, + "step": 105700 + }, + { + "epoch": 93.54589692545898, + "grad_norm": 0.6043857932090759, + "learning_rate": 3.2444739168877103e-06, + "loss": 0.38934085845947264, + "step": 105800 + }, + { + "epoch": 93.63437292634373, + "grad_norm": 0.5303599238395691, + "learning_rate": 3.20026525198939e-06, + "loss": 0.3872317123413086, + "step": 105900 + }, + { + "epoch": 93.72284892722848, + "grad_norm": 0.48868313431739807, + "learning_rate": 3.15605658709107e-06, + "loss": 0.3903642272949219, + "step": 106000 + }, + { + "epoch": 93.81132492811325, + "grad_norm": 0.5126668810844421, + "learning_rate": 3.11184792219275e-06, + "loss": 0.3893658447265625, + "step": 106100 + }, + { + "epoch": 93.899800928998, + "grad_norm": 0.5788067579269409, + "learning_rate": 3.06763925729443e-06, + "loss": 0.3887732315063477, + "step": 106200 + }, + { + "epoch": 93.98827692988277, + "grad_norm": 0.5931738615036011, + "learning_rate": 3.0234305923961096e-06, + "loss": 0.3858309555053711, + "step": 106300 + }, + { + "epoch": 94.07608936076089, + "grad_norm": 0.4667378067970276, + "learning_rate": 2.9792219274977896e-06, + "loss": 0.3882503128051758, + "step": 106400 + }, + { + "epoch": 94.16456536164566, + "grad_norm": 0.4540467858314514, + "learning_rate": 2.9350132625994697e-06, + "loss": 0.3879624557495117, + "step": 106500 + }, + { + "epoch": 94.25304136253041, + "grad_norm": 0.5249928832054138, + "learning_rate": 2.8908045977011493e-06, + "loss": 0.3871700668334961, + "step": 106600 + }, + { + "epoch": 94.34151736341518, + "grad_norm": 0.4902016520500183, + "learning_rate": 2.8465959328028297e-06, + "loss": 0.3865641403198242, + "step": 106700 + }, + { + "epoch": 94.42999336429993, + "grad_norm": 0.4490734934806824, + "learning_rate": 2.8023872679045093e-06, + "loss": 0.3874678039550781, + "step": 106800 + }, + { + "epoch": 94.5184693651847, + "grad_norm": 0.39259180426597595, + "learning_rate": 2.7581786030061894e-06, + "loss": 0.3864010238647461, + "step": 106900 + }, + { + "epoch": 94.60694536606945, + "grad_norm": 0.5160086154937744, + "learning_rate": 2.7139699381078694e-06, + "loss": 0.38762042999267576, + "step": 107000 + }, + { + "epoch": 94.6954213669542, + "grad_norm": 0.5112566947937012, + "learning_rate": 2.669761273209549e-06, + "loss": 0.38802257537841794, + "step": 107100 + }, + { + "epoch": 94.78389736783897, + "grad_norm": 0.48586076498031616, + "learning_rate": 2.625552608311229e-06, + "loss": 0.3883600616455078, + "step": 107200 + }, + { + "epoch": 94.87237336872373, + "grad_norm": 0.5169211626052856, + "learning_rate": 2.581343943412909e-06, + "loss": 0.38775413513183593, + "step": 107300 + }, + { + "epoch": 94.9608493696085, + "grad_norm": 0.4262998700141907, + "learning_rate": 2.537135278514589e-06, + "loss": 0.3891670608520508, + "step": 107400 + }, + { + "epoch": 95.04866180048661, + "grad_norm": 0.4452260434627533, + "learning_rate": 2.4929266136162687e-06, + "loss": 0.38474632263183595, + "step": 107500 + }, + { + "epoch": 95.13713780137138, + "grad_norm": 0.5349674820899963, + "learning_rate": 2.4487179487179488e-06, + "loss": 0.3851365661621094, + "step": 107600 + }, + { + "epoch": 95.22561380225613, + "grad_norm": 0.4277512729167938, + "learning_rate": 2.404509283819629e-06, + "loss": 0.38448490142822267, + "step": 107700 + }, + { + "epoch": 95.3140898031409, + "grad_norm": 0.5199966430664062, + "learning_rate": 2.360300618921309e-06, + "loss": 0.3855178451538086, + "step": 107800 + }, + { + "epoch": 95.40256580402566, + "grad_norm": 0.49931713938713074, + "learning_rate": 2.3160919540229885e-06, + "loss": 0.38597549438476564, + "step": 107900 + }, + { + "epoch": 95.49104180491042, + "grad_norm": 0.44888851046562195, + "learning_rate": 2.2718832891246685e-06, + "loss": 0.38637237548828124, + "step": 108000 + }, + { + "epoch": 95.57951780579518, + "grad_norm": 0.48020413517951965, + "learning_rate": 2.2276746242263485e-06, + "loss": 0.3860820388793945, + "step": 108100 + }, + { + "epoch": 95.66799380667993, + "grad_norm": 0.49320459365844727, + "learning_rate": 2.183465959328028e-06, + "loss": 0.3868730926513672, + "step": 108200 + }, + { + "epoch": 95.7564698075647, + "grad_norm": 0.4776149392127991, + "learning_rate": 2.1392572944297086e-06, + "loss": 0.38699729919433595, + "step": 108300 + }, + { + "epoch": 95.84494580844945, + "grad_norm": 0.4394153356552124, + "learning_rate": 2.095048629531388e-06, + "loss": 0.3858388137817383, + "step": 108400 + }, + { + "epoch": 95.93342180933422, + "grad_norm": 0.40809816122055054, + "learning_rate": 2.0508399646330682e-06, + "loss": 0.3865514373779297, + "step": 108500 + }, + { + "epoch": 96.02123424021234, + "grad_norm": 0.40297845005989075, + "learning_rate": 2.0070733863837314e-06, + "loss": 0.38520877838134765, + "step": 108600 + }, + { + "epoch": 96.1097102410971, + "grad_norm": 0.4992787837982178, + "learning_rate": 1.9628647214854114e-06, + "loss": 0.3824159622192383, + "step": 108700 + }, + { + "epoch": 96.19818624198186, + "grad_norm": 0.4386002719402313, + "learning_rate": 1.918656056587091e-06, + "loss": 0.3828225326538086, + "step": 108800 + }, + { + "epoch": 96.28666224286663, + "grad_norm": 0.4839923679828644, + "learning_rate": 1.874447391688771e-06, + "loss": 0.3837508392333984, + "step": 108900 + }, + { + "epoch": 96.37513824375138, + "grad_norm": 0.5360403656959534, + "learning_rate": 1.830238726790451e-06, + "loss": 0.3868670654296875, + "step": 109000 + }, + { + "epoch": 96.46361424463615, + "grad_norm": 0.5472413897514343, + "learning_rate": 1.786030061892131e-06, + "loss": 0.38740249633789064, + "step": 109100 + }, + { + "epoch": 96.5520902455209, + "grad_norm": 0.4783819019794464, + "learning_rate": 1.7418213969938107e-06, + "loss": 0.3851567459106445, + "step": 109200 + }, + { + "epoch": 96.64056624640567, + "grad_norm": 0.5319016575813293, + "learning_rate": 1.6976127320954906e-06, + "loss": 0.38549720764160156, + "step": 109300 + }, + { + "epoch": 96.72904224729042, + "grad_norm": 0.4579726755619049, + "learning_rate": 1.6534040671971708e-06, + "loss": 0.38684429168701173, + "step": 109400 + }, + { + "epoch": 96.81751824817518, + "grad_norm": 0.4699755012989044, + "learning_rate": 1.6091954022988506e-06, + "loss": 0.3849377822875977, + "step": 109500 + }, + { + "epoch": 96.90599424905994, + "grad_norm": 0.5681434273719788, + "learning_rate": 1.5649867374005304e-06, + "loss": 0.38494167327880857, + "step": 109600 + }, + { + "epoch": 96.9944702499447, + "grad_norm": 0.40921762585639954, + "learning_rate": 1.5207780725022105e-06, + "loss": 0.3864158630371094, + "step": 109700 + }, + { + "epoch": 97.08228268082283, + "grad_norm": 0.5271804928779602, + "learning_rate": 1.4765694076038905e-06, + "loss": 0.3854814529418945, + "step": 109800 + }, + { + "epoch": 97.17075868170758, + "grad_norm": 0.5390716195106506, + "learning_rate": 1.4323607427055703e-06, + "loss": 0.3826302719116211, + "step": 109900 + }, + { + "epoch": 97.25923468259235, + "grad_norm": 0.4738744795322418, + "learning_rate": 1.3881520778072502e-06, + "loss": 0.3834680938720703, + "step": 110000 + }, + { + "epoch": 97.3477106834771, + "grad_norm": 0.47226211428642273, + "learning_rate": 1.3439434129089302e-06, + "loss": 0.383985595703125, + "step": 110100 + }, + { + "epoch": 97.43618668436187, + "grad_norm": 0.44581323862075806, + "learning_rate": 1.29973474801061e-06, + "loss": 0.38392398834228514, + "step": 110200 + }, + { + "epoch": 97.52466268524662, + "grad_norm": 0.505975067615509, + "learning_rate": 1.25552608311229e-06, + "loss": 0.3842586898803711, + "step": 110300 + }, + { + "epoch": 97.61313868613139, + "grad_norm": 0.4737127125263214, + "learning_rate": 1.21131741821397e-06, + "loss": 0.3853626251220703, + "step": 110400 + }, + { + "epoch": 97.70161468701615, + "grad_norm": 0.42337724566459656, + "learning_rate": 1.16710875331565e-06, + "loss": 0.3860707092285156, + "step": 110500 + }, + { + "epoch": 97.7900906879009, + "grad_norm": 0.470935583114624, + "learning_rate": 1.12290008841733e-06, + "loss": 0.3849189758300781, + "step": 110600 + }, + { + "epoch": 97.87856668878567, + "grad_norm": 0.5499629974365234, + "learning_rate": 1.0786914235190098e-06, + "loss": 0.3849348068237305, + "step": 110700 + }, + { + "epoch": 97.96704268967042, + "grad_norm": 0.5295959711074829, + "learning_rate": 1.0344827586206898e-06, + "loss": 0.3844482040405273, + "step": 110800 + }, + { + "epoch": 98.05485512054855, + "grad_norm": 0.510218620300293, + "learning_rate": 9.902740937223696e-07, + "loss": 0.38250988006591796, + "step": 110900 + }, + { + "epoch": 98.1433311214333, + "grad_norm": 0.46240198612213135, + "learning_rate": 9.460654288240495e-07, + "loss": 0.38357555389404296, + "step": 111000 + }, + { + "epoch": 98.23180712231807, + "grad_norm": 0.5413907170295715, + "learning_rate": 9.018567639257295e-07, + "loss": 0.3835936737060547, + "step": 111100 + }, + { + "epoch": 98.32028312320283, + "grad_norm": 0.5282194018363953, + "learning_rate": 8.576480990274095e-07, + "loss": 0.38462539672851564, + "step": 111200 + }, + { + "epoch": 98.4087591240876, + "grad_norm": 0.4430619478225708, + "learning_rate": 8.134394341290893e-07, + "loss": 0.3831254196166992, + "step": 111300 + }, + { + "epoch": 98.49723512497235, + "grad_norm": 0.4520755410194397, + "learning_rate": 7.692307692307694e-07, + "loss": 0.38387767791748045, + "step": 111400 + }, + { + "epoch": 98.58571112585712, + "grad_norm": 0.42326220870018005, + "learning_rate": 7.250221043324492e-07, + "loss": 0.38382118225097656, + "step": 111500 + }, + { + "epoch": 98.67418712674187, + "grad_norm": 0.5536217093467712, + "learning_rate": 6.808134394341291e-07, + "loss": 0.3837322998046875, + "step": 111600 + }, + { + "epoch": 98.76266312762664, + "grad_norm": 0.47729530930519104, + "learning_rate": 6.36604774535809e-07, + "loss": 0.3840275192260742, + "step": 111700 + }, + { + "epoch": 98.85113912851139, + "grad_norm": 0.4712120294570923, + "learning_rate": 5.92396109637489e-07, + "loss": 0.3826910400390625, + "step": 111800 + }, + { + "epoch": 98.93961512939615, + "grad_norm": 0.4533778727054596, + "learning_rate": 5.481874447391689e-07, + "loss": 0.3849251174926758, + "step": 111900 + }, + { + "epoch": 99.02742756027428, + "grad_norm": 0.4762660264968872, + "learning_rate": 5.04420866489832e-07, + "loss": 0.38347198486328127, + "step": 112000 + }, + { + "epoch": 99.11590356115903, + "grad_norm": 0.49900203943252563, + "learning_rate": 4.6021220159151197e-07, + "loss": 0.38361885070800783, + "step": 112100 + }, + { + "epoch": 99.2043795620438, + "grad_norm": 0.5499697923660278, + "learning_rate": 4.1600353669319184e-07, + "loss": 0.38323490142822264, + "step": 112200 + }, + { + "epoch": 99.29285556292855, + "grad_norm": 0.49698564410209656, + "learning_rate": 3.717948717948718e-07, + "loss": 0.38394325256347656, + "step": 112300 + }, + { + "epoch": 99.38133156381332, + "grad_norm": 0.5000177621841431, + "learning_rate": 3.2758620689655175e-07, + "loss": 0.3833367156982422, + "step": 112400 + }, + { + "epoch": 99.46980756469807, + "grad_norm": 0.46179404854774475, + "learning_rate": 2.833775419982317e-07, + "loss": 0.38318233489990233, + "step": 112500 + }, + { + "epoch": 99.55828356558284, + "grad_norm": 0.5522571802139282, + "learning_rate": 2.391688770999116e-07, + "loss": 0.38181392669677733, + "step": 112600 + }, + { + "epoch": 99.6467595664676, + "grad_norm": 0.4453877806663513, + "learning_rate": 1.949602122015915e-07, + "loss": 0.38297233581542967, + "step": 112700 + }, + { + "epoch": 99.73523556735236, + "grad_norm": 0.46210813522338867, + "learning_rate": 1.5075154730327146e-07, + "loss": 0.3855221939086914, + "step": 112800 + } + ], + "logging_steps": 100, + "max_steps": 113100, + "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": 3.129580169448653e+16, + "train_batch_size": 8, + "trial_name": null, + "trial_params": null +} diff --git a/timecost/m8/realtabformer/rtf-m8-20260430_214424/rtf_checkpoints/checkpoint-112800/training_args.bin b/timecost/m8/realtabformer/rtf-m8-20260430_214424/rtf_checkpoints/checkpoint-112800/training_args.bin new file mode 100644 index 0000000000000000000000000000000000000000..34d68dc0e0fe1c1f12a2e581dd1b166aa7178a9e --- /dev/null +++ b/timecost/m8/realtabformer/rtf-m8-20260430_214424/rtf_checkpoints/checkpoint-112800/training_args.bin @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:9e2cd88337d1d846c6918d2b3b63fa3e5c93f12fefc082497590da854a564607 +size 5201 diff --git a/timecost/m8/realtabformer/rtf-m8-20260430_214424/rtf_checkpoints/checkpoint-112900/config.json b/timecost/m8/realtabformer/rtf-m8-20260430_214424/rtf_checkpoints/checkpoint-112900/config.json new file mode 100644 index 0000000000000000000000000000000000000000..d98dd02b920679d4da3c8b60a9be119058fb9fe3 --- /dev/null +++ b/timecost/m8/realtabformer/rtf-m8-20260430_214424/rtf_checkpoints/checkpoint-112900/config.json @@ -0,0 +1,34 @@ +{ + "activation_function": "gelu_new", + "add_cross_attention": false, + "architectures": [ + "GPT2LMHeadModel" + ], + "attn_pdrop": 0.1, + "bos_token_id": 5, + "dtype": "float32", + "embd_pdrop": 0.1, + "eos_token_id": 6, + "initializer_range": 0.02, + "layer_norm_epsilon": 1e-05, + "model_type": "gpt2", + "n_embd": 768, + "n_head": 12, + "n_inner": null, + "n_layer": 6, + "n_positions": 1024, + "pad_token_id": null, + "reorder_and_upcast_attn": false, + "resid_pdrop": 0.1, + "scale_attn_by_inverse_layer_idx": false, + "scale_attn_weights": true, + "summary_activation": null, + "summary_first_dropout": 0.1, + "summary_proj_to_labels": true, + "summary_type": "cls_index", + "summary_use_proj": true, + "tie_word_embeddings": true, + "transformers_version": "5.5.3", + "use_cache": false, + "vocab_size": 244 +} diff --git a/timecost/m8/realtabformer/rtf-m8-20260430_214424/rtf_checkpoints/checkpoint-112900/generation_config.json b/timecost/m8/realtabformer/rtf-m8-20260430_214424/rtf_checkpoints/checkpoint-112900/generation_config.json new file mode 100644 index 0000000000000000000000000000000000000000..ffe89567780e75b5c22eade9be971483b9618f39 --- /dev/null +++ b/timecost/m8/realtabformer/rtf-m8-20260430_214424/rtf_checkpoints/checkpoint-112900/generation_config.json @@ -0,0 +1,9 @@ +{ + "_from_model_config": true, + "bos_token_id": 5, + "eos_token_id": 6, + "output_attentions": false, + "output_hidden_states": false, + "transformers_version": "5.5.3", + "use_cache": true +} diff --git a/timecost/m8/realtabformer/rtf-m8-20260430_214424/rtf_checkpoints/checkpoint-112900/model.safetensors b/timecost/m8/realtabformer/rtf-m8-20260430_214424/rtf_checkpoints/checkpoint-112900/model.safetensors new file mode 100644 index 0000000000000000000000000000000000000000..2f1c103fe3242930b509dda991671b5814b618fa --- /dev/null +++ b/timecost/m8/realtabformer/rtf-m8-20260430_214424/rtf_checkpoints/checkpoint-112900/model.safetensors @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:0f5748a1a89c2e87d6e5f2b1405e073b2305e7c4c3eb8d6262dcd71947c12017 +size 174017992 diff --git a/timecost/m8/realtabformer/rtf-m8-20260430_214424/rtf_checkpoints/checkpoint-112900/optimizer.pt b/timecost/m8/realtabformer/rtf-m8-20260430_214424/rtf_checkpoints/checkpoint-112900/optimizer.pt new file mode 100644 index 0000000000000000000000000000000000000000..845b05ad6aba7d0d9d23d93c7e9d9451a5844c77 --- /dev/null +++ b/timecost/m8/realtabformer/rtf-m8-20260430_214424/rtf_checkpoints/checkpoint-112900/optimizer.pt @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:7026198b49ef09665f225434a5d7340045a51d21d02feb5b4ae452a77d9a2e8c +size 348085067 diff --git a/timecost/m8/realtabformer/rtf-m8-20260430_214424/rtf_checkpoints/checkpoint-112900/rng_state.pth b/timecost/m8/realtabformer/rtf-m8-20260430_214424/rtf_checkpoints/checkpoint-112900/rng_state.pth new file mode 100644 index 0000000000000000000000000000000000000000..7b6b0edcacea3db38c1fe1f06fc1fca96fe2bfcf --- /dev/null +++ b/timecost/m8/realtabformer/rtf-m8-20260430_214424/rtf_checkpoints/checkpoint-112900/rng_state.pth @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:4cb065696e51e04eb03fd38aedc6f41cd40c1dec1d4f5231c697770c892c36af +size 14645 diff --git a/timecost/m8/realtabformer/rtf-m8-20260430_214424/rtf_checkpoints/checkpoint-112900/scaler.pt b/timecost/m8/realtabformer/rtf-m8-20260430_214424/rtf_checkpoints/checkpoint-112900/scaler.pt new file mode 100644 index 0000000000000000000000000000000000000000..650c92d86b3e8f1a5f3ee6f89033e0b5b352f736 --- /dev/null +++ b/timecost/m8/realtabformer/rtf-m8-20260430_214424/rtf_checkpoints/checkpoint-112900/scaler.pt @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:b0bddddaa1b692b5bfd0481d34ed49b5f4639080045ab840de74ecbc6b05c7f5 +size 1383 diff --git a/timecost/m8/realtabformer/rtf-m8-20260430_214424/rtf_checkpoints/checkpoint-112900/scheduler.pt b/timecost/m8/realtabformer/rtf-m8-20260430_214424/rtf_checkpoints/checkpoint-112900/scheduler.pt new file mode 100644 index 0000000000000000000000000000000000000000..44bfd806b6f76a873f4e47ba7a269cedecbe5cba --- /dev/null +++ b/timecost/m8/realtabformer/rtf-m8-20260430_214424/rtf_checkpoints/checkpoint-112900/scheduler.pt @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:adf529e045ac410460a4190cee9beef6081a7ca4943bf3f472fb26ca824b52f9 +size 1465 diff --git a/timecost/m8/realtabformer/rtf-m8-20260430_214424/rtf_checkpoints/checkpoint-112900/trainer_state.json b/timecost/m8/realtabformer/rtf-m8-20260430_214424/rtf_checkpoints/checkpoint-112900/trainer_state.json new file mode 100644 index 0000000000000000000000000000000000000000..43be5f21b9db9a3f85a4a4850c6f8cbfd7f453ab --- /dev/null +++ b/timecost/m8/realtabformer/rtf-m8-20260430_214424/rtf_checkpoints/checkpoint-112900/trainer_state.json @@ -0,0 +1,7937 @@ +{ + "best_global_step": null, + "best_metric": null, + "best_model_checkpoint": null, + "epoch": 99.82371156823712, + "eval_steps": 100, + "global_step": 112900, + "is_hyper_param_search": false, + "is_local_process_zero": true, + "is_world_process_zero": true, + "log_history": [ + { + "epoch": 0.08847600088476001, + "grad_norm": 0.27971890568733215, + "learning_rate": 4.9956233421750666e-05, + "loss": 1.6012767028808594, + "step": 100 + }, + { + "epoch": 0.17695200176952003, + "grad_norm": 0.2532733976840973, + "learning_rate": 4.991202475685234e-05, + "loss": 1.0460629272460937, + "step": 200 + }, + { + "epoch": 0.26542800265428, + "grad_norm": 0.22527219355106354, + "learning_rate": 4.986781609195402e-05, + "loss": 1.0045037841796876, + "step": 300 + }, + { + "epoch": 0.35390400353904006, + "grad_norm": 0.2071678638458252, + "learning_rate": 4.982360742705571e-05, + "loss": 0.9934071350097656, + "step": 400 + }, + { + "epoch": 0.44238000442380004, + "grad_norm": 0.21996082365512848, + "learning_rate": 4.977939876215739e-05, + "loss": 0.9807382965087891, + "step": 500 + }, + { + "epoch": 0.53085600530856, + "grad_norm": 0.20051148533821106, + "learning_rate": 4.9735190097259064e-05, + "loss": 0.9772834014892579, + "step": 600 + }, + { + "epoch": 0.6193320061933201, + "grad_norm": 0.20692776143550873, + "learning_rate": 4.969098143236074e-05, + "loss": 0.9733844757080078, + "step": 700 + }, + { + "epoch": 0.7078080070780801, + "grad_norm": 0.22139734029769897, + "learning_rate": 4.9646772767462425e-05, + "loss": 0.9641999053955078, + "step": 800 + }, + { + "epoch": 0.79628400796284, + "grad_norm": 0.20099565386772156, + "learning_rate": 4.96025641025641e-05, + "loss": 0.9590901947021484, + "step": 900 + }, + { + "epoch": 0.8847600088476001, + "grad_norm": 0.19050444662570953, + "learning_rate": 4.955835543766578e-05, + "loss": 0.9558430480957031, + "step": 1000 + }, + { + "epoch": 0.9732360097323601, + "grad_norm": 0.20780153572559357, + "learning_rate": 4.951414677276747e-05, + "loss": 0.9558073425292969, + "step": 1100 + }, + { + "epoch": 1.0610484406104843, + "grad_norm": 0.20002400875091553, + "learning_rate": 4.946993810786915e-05, + "loss": 0.9575533294677734, + "step": 1200 + }, + { + "epoch": 1.1495244414952444, + "grad_norm": 0.19394151866436005, + "learning_rate": 4.9425729442970824e-05, + "loss": 0.9556401824951172, + "step": 1300 + }, + { + "epoch": 1.2380004423800044, + "grad_norm": 0.19420816004276276, + "learning_rate": 4.93815207780725e-05, + "loss": 0.948358154296875, + "step": 1400 + }, + { + "epoch": 1.3264764432647644, + "grad_norm": 0.2109377682209015, + "learning_rate": 4.9337312113174185e-05, + "loss": 0.9507483673095704, + "step": 1500 + }, + { + "epoch": 1.4149524441495245, + "grad_norm": 0.19577011466026306, + "learning_rate": 4.929310344827586e-05, + "loss": 0.9544251251220703, + "step": 1600 + }, + { + "epoch": 1.5034284450342845, + "grad_norm": 0.17374339699745178, + "learning_rate": 4.924889478337754e-05, + "loss": 0.9495613098144531, + "step": 1700 + }, + { + "epoch": 1.5919044459190443, + "grad_norm": 0.1539471447467804, + "learning_rate": 4.920468611847922e-05, + "loss": 0.946780014038086, + "step": 1800 + }, + { + "epoch": 1.6803804468038046, + "grad_norm": 0.21705853939056396, + "learning_rate": 4.916047745358091e-05, + "loss": 0.9456329345703125, + "step": 1900 + }, + { + "epoch": 1.7688564476885644, + "grad_norm": 0.18109191954135895, + "learning_rate": 4.9116268788682584e-05, + "loss": 0.9452082061767578, + "step": 2000 + }, + { + "epoch": 1.8573324485733245, + "grad_norm": 0.18233413994312286, + "learning_rate": 4.907206012378426e-05, + "loss": 0.9436309051513672, + "step": 2100 + }, + { + "epoch": 1.9458084494580845, + "grad_norm": 0.19978198409080505, + "learning_rate": 4.9027851458885945e-05, + "loss": 0.9466010284423828, + "step": 2200 + }, + { + "epoch": 2.033620880336209, + "grad_norm": 0.19425439834594727, + "learning_rate": 4.898364279398762e-05, + "loss": 0.9419589233398438, + "step": 2300 + }, + { + "epoch": 2.1220968812209686, + "grad_norm": 0.18522261083126068, + "learning_rate": 4.8939434129089306e-05, + "loss": 0.9406929779052734, + "step": 2400 + }, + { + "epoch": 2.210572882105729, + "grad_norm": 0.18092288076877594, + "learning_rate": 4.889522546419098e-05, + "loss": 0.9394661712646485, + "step": 2500 + }, + { + "epoch": 2.2990488829904887, + "grad_norm": 0.16110995411872864, + "learning_rate": 4.885101679929267e-05, + "loss": 0.9415554809570312, + "step": 2600 + }, + { + "epoch": 2.387524883875249, + "grad_norm": 0.1742609441280365, + "learning_rate": 4.8806808134394344e-05, + "loss": 0.9385026550292969, + "step": 2700 + }, + { + "epoch": 2.476000884760009, + "grad_norm": 0.1893293261528015, + "learning_rate": 4.876259946949602e-05, + "loss": 0.9374285125732422, + "step": 2800 + }, + { + "epoch": 2.564476885644769, + "grad_norm": 0.17022491991519928, + "learning_rate": 4.8718390804597705e-05, + "loss": 0.9414189910888672, + "step": 2900 + }, + { + "epoch": 2.652952886529529, + "grad_norm": 0.1820104867219925, + "learning_rate": 4.867418213969938e-05, + "loss": 0.9428114318847656, + "step": 3000 + }, + { + "epoch": 2.7414288874142887, + "grad_norm": 0.1591845154762268, + "learning_rate": 4.8629973474801066e-05, + "loss": 0.9408238220214844, + "step": 3100 + }, + { + "epoch": 2.829904888299049, + "grad_norm": 0.16679565608501434, + "learning_rate": 4.858576480990274e-05, + "loss": 0.9357293701171875, + "step": 3200 + }, + { + "epoch": 2.918380889183809, + "grad_norm": 0.1608530431985855, + "learning_rate": 4.854155614500443e-05, + "loss": 0.9437465667724609, + "step": 3300 + }, + { + "epoch": 3.006193320061933, + "grad_norm": 0.17832520604133606, + "learning_rate": 4.8497347480106104e-05, + "loss": 0.9349425506591796, + "step": 3400 + }, + { + "epoch": 3.0946693209466933, + "grad_norm": 0.18095993995666504, + "learning_rate": 4.845313881520778e-05, + "loss": 0.9341915130615235, + "step": 3500 + }, + { + "epoch": 3.183145321831453, + "grad_norm": 0.15083801746368408, + "learning_rate": 4.8408930150309465e-05, + "loss": 0.9406319427490234, + "step": 3600 + }, + { + "epoch": 3.2716213227162134, + "grad_norm": 0.17318469285964966, + "learning_rate": 4.836472148541114e-05, + "loss": 0.942470703125, + "step": 3700 + }, + { + "epoch": 3.3600973236009732, + "grad_norm": 0.16380801796913147, + "learning_rate": 4.8320512820512826e-05, + "loss": 0.9362622833251953, + "step": 3800 + }, + { + "epoch": 3.448573324485733, + "grad_norm": 0.16394540667533875, + "learning_rate": 4.82763041556145e-05, + "loss": 0.9353338623046875, + "step": 3900 + }, + { + "epoch": 3.5370493253704933, + "grad_norm": 0.15836960077285767, + "learning_rate": 4.8232095490716186e-05, + "loss": 0.9316812896728516, + "step": 4000 + }, + { + "epoch": 3.625525326255253, + "grad_norm": 0.16170428693294525, + "learning_rate": 4.8187886825817864e-05, + "loss": 0.9331712341308593, + "step": 4100 + }, + { + "epoch": 3.7140013271400134, + "grad_norm": 0.16442789137363434, + "learning_rate": 4.814367816091954e-05, + "loss": 0.9366471862792969, + "step": 4200 + }, + { + "epoch": 3.8024773280247732, + "grad_norm": 0.1728108674287796, + "learning_rate": 4.8099469496021224e-05, + "loss": 0.9279624938964843, + "step": 4300 + }, + { + "epoch": 3.890953328909533, + "grad_norm": 0.16846929490566254, + "learning_rate": 4.80552608311229e-05, + "loss": 0.9343041229248047, + "step": 4400 + }, + { + "epoch": 3.9794293297942933, + "grad_norm": 0.15764060616493225, + "learning_rate": 4.8011052166224585e-05, + "loss": 0.9330953979492187, + "step": 4500 + }, + { + "epoch": 4.067241760672418, + "grad_norm": 0.15639521181583405, + "learning_rate": 4.796684350132626e-05, + "loss": 0.92936279296875, + "step": 4600 + }, + { + "epoch": 4.155717761557177, + "grad_norm": 0.1571352481842041, + "learning_rate": 4.7922634836427946e-05, + "loss": 0.928530502319336, + "step": 4700 + }, + { + "epoch": 4.244193762441937, + "grad_norm": 0.1702045202255249, + "learning_rate": 4.787842617152962e-05, + "loss": 0.928214111328125, + "step": 4800 + }, + { + "epoch": 4.332669763326698, + "grad_norm": 0.15860655903816223, + "learning_rate": 4.78342175066313e-05, + "loss": 0.9305215454101563, + "step": 4900 + }, + { + "epoch": 4.421145764211458, + "grad_norm": 0.15470334887504578, + "learning_rate": 4.779000884173298e-05, + "loss": 0.9308832550048828, + "step": 5000 + }, + { + "epoch": 4.509621765096218, + "grad_norm": 0.18338388204574585, + "learning_rate": 4.774580017683466e-05, + "loss": 0.9284812164306641, + "step": 5100 + }, + { + "epoch": 4.598097765980977, + "grad_norm": 0.16396461427211761, + "learning_rate": 4.7701591511936345e-05, + "loss": 0.9331364440917969, + "step": 5200 + }, + { + "epoch": 4.686573766865738, + "grad_norm": 0.15601013600826263, + "learning_rate": 4.765738284703802e-05, + "loss": 0.9345075225830078, + "step": 5300 + }, + { + "epoch": 4.775049767750498, + "grad_norm": 0.15895380079746246, + "learning_rate": 4.76131741821397e-05, + "loss": 0.9342525482177735, + "step": 5400 + }, + { + "epoch": 4.863525768635258, + "grad_norm": 0.17462770640850067, + "learning_rate": 4.756896551724138e-05, + "loss": 0.9322207641601562, + "step": 5500 + }, + { + "epoch": 4.952001769520018, + "grad_norm": 0.15457525849342346, + "learning_rate": 4.752475685234306e-05, + "loss": 0.9310305023193359, + "step": 5600 + }, + { + "epoch": 5.039814200398142, + "grad_norm": 0.13688383996486664, + "learning_rate": 4.748054818744474e-05, + "loss": 0.9262973022460937, + "step": 5700 + }, + { + "epoch": 5.128290201282902, + "grad_norm": 0.15491563081741333, + "learning_rate": 4.743633952254642e-05, + "loss": 0.927138671875, + "step": 5800 + }, + { + "epoch": 5.216766202167662, + "grad_norm": 0.168558269739151, + "learning_rate": 4.7392130857648105e-05, + "loss": 0.9224365234375, + "step": 5900 + }, + { + "epoch": 5.305242203052422, + "grad_norm": 0.1631685495376587, + "learning_rate": 4.734792219274978e-05, + "loss": 0.9300392913818359, + "step": 6000 + }, + { + "epoch": 5.393718203937182, + "grad_norm": 0.1423729509115219, + "learning_rate": 4.730371352785146e-05, + "loss": 0.926734619140625, + "step": 6100 + }, + { + "epoch": 5.482194204821942, + "grad_norm": 0.15391670167446136, + "learning_rate": 4.725950486295314e-05, + "loss": 0.928184814453125, + "step": 6200 + }, + { + "epoch": 5.570670205706702, + "grad_norm": 0.16460080444812775, + "learning_rate": 4.721529619805482e-05, + "loss": 0.9238227844238281, + "step": 6300 + }, + { + "epoch": 5.659146206591462, + "grad_norm": 0.15589170157909393, + "learning_rate": 4.71710875331565e-05, + "loss": 0.9301457214355469, + "step": 6400 + }, + { + "epoch": 5.747622207476222, + "grad_norm": 0.15851308405399323, + "learning_rate": 4.712687886825818e-05, + "loss": 0.9308782196044922, + "step": 6500 + }, + { + "epoch": 5.836098208360982, + "grad_norm": 0.1777440756559372, + "learning_rate": 4.7082670203359865e-05, + "loss": 0.9248320007324219, + "step": 6600 + }, + { + "epoch": 5.924574209245742, + "grad_norm": 0.17118966579437256, + "learning_rate": 4.703846153846154e-05, + "loss": 0.933470458984375, + "step": 6700 + }, + { + "epoch": 6.012386640123866, + "grad_norm": 0.16862431168556213, + "learning_rate": 4.699425287356322e-05, + "loss": 0.9242423248291015, + "step": 6800 + }, + { + "epoch": 6.100862641008627, + "grad_norm": 0.19494886696338654, + "learning_rate": 4.69500442086649e-05, + "loss": 0.9229951477050782, + "step": 6900 + }, + { + "epoch": 6.189338641893387, + "grad_norm": 0.1628340780735016, + "learning_rate": 4.690583554376658e-05, + "loss": 0.9262020111083984, + "step": 7000 + }, + { + "epoch": 6.2778146427781465, + "grad_norm": 0.18057121336460114, + "learning_rate": 4.686162687886826e-05, + "loss": 0.9253005981445312, + "step": 7100 + }, + { + "epoch": 6.366290643662906, + "grad_norm": 0.16090655326843262, + "learning_rate": 4.681741821396994e-05, + "loss": 0.9206966400146485, + "step": 7200 + }, + { + "epoch": 6.454766644547666, + "grad_norm": 0.16115659475326538, + "learning_rate": 4.6773209549071625e-05, + "loss": 0.9219180297851562, + "step": 7300 + }, + { + "epoch": 6.543242645432427, + "grad_norm": 0.1964244246482849, + "learning_rate": 4.67290008841733e-05, + "loss": 0.9238224029541016, + "step": 7400 + }, + { + "epoch": 6.631718646317187, + "grad_norm": 0.1761396825313568, + "learning_rate": 4.668479221927498e-05, + "loss": 0.9244656372070312, + "step": 7500 + }, + { + "epoch": 6.7201946472019465, + "grad_norm": 0.18016010522842407, + "learning_rate": 4.664058355437666e-05, + "loss": 0.9245244598388672, + "step": 7600 + }, + { + "epoch": 6.808670648086706, + "grad_norm": 0.16012924909591675, + "learning_rate": 4.659637488947834e-05, + "loss": 0.9250524139404297, + "step": 7700 + }, + { + "epoch": 6.897146648971466, + "grad_norm": 0.1722676306962967, + "learning_rate": 4.655216622458002e-05, + "loss": 0.9270682525634766, + "step": 7800 + }, + { + "epoch": 6.985622649856227, + "grad_norm": 0.18756897747516632, + "learning_rate": 4.65079575596817e-05, + "loss": 0.9234317779541016, + "step": 7900 + }, + { + "epoch": 7.073435080734351, + "grad_norm": 0.16759978234767914, + "learning_rate": 4.6463748894783384e-05, + "loss": 0.9213732147216797, + "step": 8000 + }, + { + "epoch": 7.1619110816191105, + "grad_norm": 0.15943242609500885, + "learning_rate": 4.641954022988506e-05, + "loss": 0.9243515014648438, + "step": 8100 + }, + { + "epoch": 7.250387082503871, + "grad_norm": 0.15444102883338928, + "learning_rate": 4.637533156498674e-05, + "loss": 0.9177332305908203, + "step": 8200 + }, + { + "epoch": 7.338863083388631, + "grad_norm": 0.17104187607765198, + "learning_rate": 4.633112290008842e-05, + "loss": 0.9199151611328125, + "step": 8300 + }, + { + "epoch": 7.427339084273391, + "grad_norm": 0.152462899684906, + "learning_rate": 4.62869142351901e-05, + "loss": 0.9231443786621094, + "step": 8400 + }, + { + "epoch": 7.515815085158151, + "grad_norm": 0.1663249433040619, + "learning_rate": 4.6242705570291777e-05, + "loss": 0.9231499481201172, + "step": 8500 + }, + { + "epoch": 7.6042910860429105, + "grad_norm": 0.1711215376853943, + "learning_rate": 4.6198496905393454e-05, + "loss": 0.9192819976806641, + "step": 8600 + }, + { + "epoch": 7.692767086927671, + "grad_norm": 0.1620834916830063, + "learning_rate": 4.6154288240495144e-05, + "loss": 0.9260062408447266, + "step": 8700 + }, + { + "epoch": 7.781243087812431, + "grad_norm": 0.16246546804904938, + "learning_rate": 4.611007957559682e-05, + "loss": 0.9250968933105469, + "step": 8800 + }, + { + "epoch": 7.869719088697191, + "grad_norm": 0.15757358074188232, + "learning_rate": 4.60658709106985e-05, + "loss": 0.9235149383544922, + "step": 8900 + }, + { + "epoch": 7.958195089581951, + "grad_norm": 0.15778206288814545, + "learning_rate": 4.602166224580018e-05, + "loss": 0.9173377227783203, + "step": 9000 + }, + { + "epoch": 8.046007520460075, + "grad_norm": 0.17259791493415833, + "learning_rate": 4.597745358090186e-05, + "loss": 0.9134017181396484, + "step": 9100 + }, + { + "epoch": 8.134483521344835, + "grad_norm": 0.1707502007484436, + "learning_rate": 4.5933244916003536e-05, + "loss": 0.9134098052978515, + "step": 9200 + }, + { + "epoch": 8.222959522229596, + "grad_norm": 0.1647530347108841, + "learning_rate": 4.5889036251105213e-05, + "loss": 0.9205097961425781, + "step": 9300 + }, + { + "epoch": 8.311435523114355, + "grad_norm": 0.16971947252750397, + "learning_rate": 4.5844827586206904e-05, + "loss": 0.9217983245849609, + "step": 9400 + }, + { + "epoch": 8.399911523999116, + "grad_norm": 0.15842877328395844, + "learning_rate": 4.580061892130858e-05, + "loss": 0.9172341918945313, + "step": 9500 + }, + { + "epoch": 8.488387524883874, + "grad_norm": 0.15321888029575348, + "learning_rate": 4.575641025641026e-05, + "loss": 0.9222029113769531, + "step": 9600 + }, + { + "epoch": 8.576863525768635, + "grad_norm": 0.17232707142829895, + "learning_rate": 4.5712201591511935e-05, + "loss": 0.9190543365478515, + "step": 9700 + }, + { + "epoch": 8.665339526653396, + "grad_norm": 0.14735591411590576, + "learning_rate": 4.566799292661362e-05, + "loss": 0.9193865203857422, + "step": 9800 + }, + { + "epoch": 8.753815527538155, + "grad_norm": 0.17929628491401672, + "learning_rate": 4.5623784261715296e-05, + "loss": 0.9178209686279297, + "step": 9900 + }, + { + "epoch": 8.842291528422916, + "grad_norm": 0.1546984612941742, + "learning_rate": 4.557957559681697e-05, + "loss": 0.9209825134277344, + "step": 10000 + }, + { + "epoch": 8.930767529307674, + "grad_norm": 0.16275030374526978, + "learning_rate": 4.553536693191866e-05, + "loss": 0.9219312286376953, + "step": 10100 + }, + { + "epoch": 9.0185799601858, + "grad_norm": 0.16977843642234802, + "learning_rate": 4.549115826702034e-05, + "loss": 0.9190888977050782, + "step": 10200 + }, + { + "epoch": 9.107055961070559, + "grad_norm": 0.16722118854522705, + "learning_rate": 4.544694960212202e-05, + "loss": 0.9173007202148438, + "step": 10300 + }, + { + "epoch": 9.19553196195532, + "grad_norm": 0.15637095272541046, + "learning_rate": 4.5402740937223695e-05, + "loss": 0.9152852630615235, + "step": 10400 + }, + { + "epoch": 9.28400796284008, + "grad_norm": 0.15433216094970703, + "learning_rate": 4.535853227232538e-05, + "loss": 0.9151573944091796, + "step": 10500 + }, + { + "epoch": 9.37248396372484, + "grad_norm": 0.15743562579154968, + "learning_rate": 4.5314323607427056e-05, + "loss": 0.9173799896240235, + "step": 10600 + }, + { + "epoch": 9.4609599646096, + "grad_norm": 0.1527981162071228, + "learning_rate": 4.527011494252873e-05, + "loss": 0.911611328125, + "step": 10700 + }, + { + "epoch": 9.549435965494359, + "grad_norm": 0.15745887160301208, + "learning_rate": 4.522590627763042e-05, + "loss": 0.9144339752197266, + "step": 10800 + }, + { + "epoch": 9.63791196637912, + "grad_norm": 0.1523962914943695, + "learning_rate": 4.51816976127321e-05, + "loss": 0.918481216430664, + "step": 10900 + }, + { + "epoch": 9.72638796726388, + "grad_norm": 0.17231452465057373, + "learning_rate": 4.513748894783378e-05, + "loss": 0.9197111511230469, + "step": 11000 + }, + { + "epoch": 9.81486396814864, + "grad_norm": 0.16348381340503693, + "learning_rate": 4.5093280282935455e-05, + "loss": 0.9151203918457032, + "step": 11100 + }, + { + "epoch": 9.9033399690334, + "grad_norm": 0.16555383801460266, + "learning_rate": 4.504907161803714e-05, + "loss": 0.9189680480957031, + "step": 11200 + }, + { + "epoch": 9.991815969918159, + "grad_norm": 0.16531047224998474, + "learning_rate": 4.5004862953138816e-05, + "loss": 0.9149074554443359, + "step": 11300 + }, + { + "epoch": 10.079628400796285, + "grad_norm": 0.1655273735523224, + "learning_rate": 4.496065428824049e-05, + "loss": 0.9143817138671875, + "step": 11400 + }, + { + "epoch": 10.168104401681044, + "grad_norm": 0.1795828938484192, + "learning_rate": 4.491644562334218e-05, + "loss": 0.911801986694336, + "step": 11500 + }, + { + "epoch": 10.256580402565804, + "grad_norm": 0.1684361696243286, + "learning_rate": 4.487223695844386e-05, + "loss": 0.910247802734375, + "step": 11600 + }, + { + "epoch": 10.345056403450563, + "grad_norm": 0.1620638519525528, + "learning_rate": 4.482802829354554e-05, + "loss": 0.9155111694335938, + "step": 11700 + }, + { + "epoch": 10.433532404335324, + "grad_norm": 0.1695495843887329, + "learning_rate": 4.4783819628647215e-05, + "loss": 0.9134779357910157, + "step": 11800 + }, + { + "epoch": 10.522008405220085, + "grad_norm": 0.18226753175258636, + "learning_rate": 4.47396109637489e-05, + "loss": 0.9143638610839844, + "step": 11900 + }, + { + "epoch": 10.610484406104844, + "grad_norm": 0.15289710462093353, + "learning_rate": 4.4695402298850576e-05, + "loss": 0.9122061157226562, + "step": 12000 + }, + { + "epoch": 10.698960406989604, + "grad_norm": 0.15486228466033936, + "learning_rate": 4.465119363395225e-05, + "loss": 0.9148915863037109, + "step": 12100 + }, + { + "epoch": 10.787436407874363, + "grad_norm": 0.17585019767284393, + "learning_rate": 4.4606984969053937e-05, + "loss": 0.9163182830810547, + "step": 12200 + }, + { + "epoch": 10.875912408759124, + "grad_norm": 0.158732071518898, + "learning_rate": 4.456277630415562e-05, + "loss": 0.9148865509033203, + "step": 12300 + }, + { + "epoch": 10.964388409643885, + "grad_norm": 0.15901361405849457, + "learning_rate": 4.45185676392573e-05, + "loss": 0.9184156799316406, + "step": 12400 + }, + { + "epoch": 11.052200840522008, + "grad_norm": 0.15289290249347687, + "learning_rate": 4.4474358974358974e-05, + "loss": 0.910323486328125, + "step": 12500 + }, + { + "epoch": 11.14067684140677, + "grad_norm": 0.14922171831130981, + "learning_rate": 4.443015030946066e-05, + "loss": 0.9092740631103515, + "step": 12600 + }, + { + "epoch": 11.229152842291528, + "grad_norm": 0.1710701584815979, + "learning_rate": 4.4385941644562335e-05, + "loss": 0.909953842163086, + "step": 12700 + }, + { + "epoch": 11.317628843176289, + "grad_norm": 0.16967815160751343, + "learning_rate": 4.434173297966401e-05, + "loss": 0.9069422912597657, + "step": 12800 + }, + { + "epoch": 11.406104844061048, + "grad_norm": 0.16896069049835205, + "learning_rate": 4.4297524314765696e-05, + "loss": 0.9166646575927735, + "step": 12900 + }, + { + "epoch": 11.494580844945808, + "grad_norm": 0.16996079683303833, + "learning_rate": 4.425331564986738e-05, + "loss": 0.9114566040039063, + "step": 13000 + }, + { + "epoch": 11.58305684583057, + "grad_norm": 0.16553319990634918, + "learning_rate": 4.420910698496906e-05, + "loss": 0.9121807098388672, + "step": 13100 + }, + { + "epoch": 11.671532846715328, + "grad_norm": 0.1629258692264557, + "learning_rate": 4.4164898320070734e-05, + "loss": 0.904563217163086, + "step": 13200 + }, + { + "epoch": 11.760008847600089, + "grad_norm": 0.1660201996564865, + "learning_rate": 4.412068965517241e-05, + "loss": 0.9116962432861329, + "step": 13300 + }, + { + "epoch": 11.848484848484848, + "grad_norm": 0.16493095457553864, + "learning_rate": 4.4076480990274095e-05, + "loss": 0.9136554718017578, + "step": 13400 + }, + { + "epoch": 11.936960849369608, + "grad_norm": 0.15279296040534973, + "learning_rate": 4.403227232537578e-05, + "loss": 0.9120658874511719, + "step": 13500 + }, + { + "epoch": 12.024773280247732, + "grad_norm": 0.16151593625545502, + "learning_rate": 4.3988063660477456e-05, + "loss": 0.9155186462402344, + "step": 13600 + }, + { + "epoch": 12.113249281132493, + "grad_norm": 0.16777871549129486, + "learning_rate": 4.394385499557914e-05, + "loss": 0.9070235443115234, + "step": 13700 + }, + { + "epoch": 12.201725282017254, + "grad_norm": 0.15052072703838348, + "learning_rate": 4.389964633068082e-05, + "loss": 0.9057080078125, + "step": 13800 + }, + { + "epoch": 12.290201282902013, + "grad_norm": 0.17466743290424347, + "learning_rate": 4.3855437665782494e-05, + "loss": 0.9058401489257812, + "step": 13900 + }, + { + "epoch": 12.378677283786773, + "grad_norm": 0.17788690328598022, + "learning_rate": 4.381122900088417e-05, + "loss": 0.9058721923828125, + "step": 14000 + }, + { + "epoch": 12.467153284671532, + "grad_norm": 0.17527516186237335, + "learning_rate": 4.3767020335985855e-05, + "loss": 0.908851089477539, + "step": 14100 + }, + { + "epoch": 12.555629285556293, + "grad_norm": 0.17999336123466492, + "learning_rate": 4.372281167108754e-05, + "loss": 0.9110614013671875, + "step": 14200 + }, + { + "epoch": 12.644105286441054, + "grad_norm": 0.1635061800479889, + "learning_rate": 4.3678603006189216e-05, + "loss": 0.9081086730957031, + "step": 14300 + }, + { + "epoch": 12.732581287325813, + "grad_norm": 0.1813993752002716, + "learning_rate": 4.363439434129089e-05, + "loss": 0.9091014862060547, + "step": 14400 + }, + { + "epoch": 12.821057288210573, + "grad_norm": 0.17487457394599915, + "learning_rate": 4.359018567639258e-05, + "loss": 0.9076325988769531, + "step": 14500 + }, + { + "epoch": 12.909533289095332, + "grad_norm": 0.17149627208709717, + "learning_rate": 4.3545977011494254e-05, + "loss": 0.9064749908447266, + "step": 14600 + }, + { + "epoch": 12.998009289980093, + "grad_norm": 0.16990207135677338, + "learning_rate": 4.350176834659593e-05, + "loss": 0.911828384399414, + "step": 14700 + }, + { + "epoch": 13.085821720858217, + "grad_norm": 0.16583888232707977, + "learning_rate": 4.3458001768346594e-05, + "loss": 0.9017422485351563, + "step": 14800 + }, + { + "epoch": 13.174297721742978, + "grad_norm": 0.1644158959388733, + "learning_rate": 4.341379310344828e-05, + "loss": 0.9052355194091797, + "step": 14900 + }, + { + "epoch": 13.262773722627736, + "grad_norm": 0.1759374737739563, + "learning_rate": 4.336958443854996e-05, + "loss": 0.9027067565917969, + "step": 15000 + }, + { + "epoch": 13.351249723512497, + "grad_norm": 0.1623755842447281, + "learning_rate": 4.332537577365164e-05, + "loss": 0.9078491973876953, + "step": 15100 + }, + { + "epoch": 13.439725724397258, + "grad_norm": 0.15563324093818665, + "learning_rate": 4.3281167108753316e-05, + "loss": 0.9046826171875, + "step": 15200 + }, + { + "epoch": 13.528201725282017, + "grad_norm": 0.1762174814939499, + "learning_rate": 4.3236958443855e-05, + "loss": 0.9070060729980469, + "step": 15300 + }, + { + "epoch": 13.616677726166778, + "grad_norm": 0.1598447859287262, + "learning_rate": 4.319274977895668e-05, + "loss": 0.907843017578125, + "step": 15400 + }, + { + "epoch": 13.705153727051536, + "grad_norm": 0.17838729918003082, + "learning_rate": 4.3148541114058354e-05, + "loss": 0.9077598571777343, + "step": 15500 + }, + { + "epoch": 13.793629727936297, + "grad_norm": 0.16615167260169983, + "learning_rate": 4.310433244916004e-05, + "loss": 0.9041740417480468, + "step": 15600 + }, + { + "epoch": 13.882105728821058, + "grad_norm": 0.16463759541511536, + "learning_rate": 4.306012378426172e-05, + "loss": 0.9023047637939453, + "step": 15700 + }, + { + "epoch": 13.970581729705817, + "grad_norm": 0.1562959849834442, + "learning_rate": 4.30159151193634e-05, + "loss": 0.902835693359375, + "step": 15800 + }, + { + "epoch": 14.058394160583942, + "grad_norm": 0.16919565200805664, + "learning_rate": 4.2971706454465076e-05, + "loss": 0.8998876953125, + "step": 15900 + }, + { + "epoch": 14.146870161468701, + "grad_norm": 0.16513022780418396, + "learning_rate": 4.292749778956676e-05, + "loss": 0.9023524475097656, + "step": 16000 + }, + { + "epoch": 14.235346162353462, + "grad_norm": 0.173946812748909, + "learning_rate": 4.288328912466844e-05, + "loss": 0.8980498504638672, + "step": 16100 + }, + { + "epoch": 14.323822163238221, + "grad_norm": 0.16749872267246246, + "learning_rate": 4.2839080459770114e-05, + "loss": 0.9026957702636719, + "step": 16200 + }, + { + "epoch": 14.412298164122982, + "grad_norm": 0.17985551059246063, + "learning_rate": 4.27948717948718e-05, + "loss": 0.9012105560302734, + "step": 16300 + }, + { + "epoch": 14.500774165007742, + "grad_norm": 0.18807820975780487, + "learning_rate": 4.275066312997348e-05, + "loss": 0.9014115905761719, + "step": 16400 + }, + { + "epoch": 14.589250165892501, + "grad_norm": 0.17243777215480804, + "learning_rate": 4.270645446507516e-05, + "loss": 0.9028221893310547, + "step": 16500 + }, + { + "epoch": 14.677726166777262, + "grad_norm": 0.1674414724111557, + "learning_rate": 4.2662245800176836e-05, + "loss": 0.9017185974121094, + "step": 16600 + }, + { + "epoch": 14.766202167662021, + "grad_norm": 0.17522333562374115, + "learning_rate": 4.261803713527851e-05, + "loss": 0.8989543914794922, + "step": 16700 + }, + { + "epoch": 14.854678168546782, + "grad_norm": 0.16300654411315918, + "learning_rate": 4.2573828470380197e-05, + "loss": 0.9001253509521484, + "step": 16800 + }, + { + "epoch": 14.943154169431542, + "grad_norm": 0.1702653169631958, + "learning_rate": 4.2529619805481874e-05, + "loss": 0.9020176696777343, + "step": 16900 + }, + { + "epoch": 15.030966600309666, + "grad_norm": 0.1752340942621231, + "learning_rate": 4.2485853227232544e-05, + "loss": 0.8990335083007812, + "step": 17000 + }, + { + "epoch": 15.119442601194425, + "grad_norm": 0.17765584588050842, + "learning_rate": 4.244164456233422e-05, + "loss": 0.8885309600830078, + "step": 17100 + }, + { + "epoch": 15.207918602079186, + "grad_norm": 0.18404972553253174, + "learning_rate": 4.23974358974359e-05, + "loss": 0.8915805816650391, + "step": 17200 + }, + { + "epoch": 15.296394602963947, + "grad_norm": 0.17206765711307526, + "learning_rate": 4.235322723253758e-05, + "loss": 0.8898361968994141, + "step": 17300 + }, + { + "epoch": 15.384870603848706, + "grad_norm": 0.19998455047607422, + "learning_rate": 4.230901856763926e-05, + "loss": 0.8957837677001953, + "step": 17400 + }, + { + "epoch": 15.473346604733466, + "grad_norm": 0.19454777240753174, + "learning_rate": 4.2264809902740936e-05, + "loss": 0.8990544891357422, + "step": 17500 + }, + { + "epoch": 15.561822605618225, + "grad_norm": 0.17281410098075867, + "learning_rate": 4.222060123784262e-05, + "loss": 0.8996484375, + "step": 17600 + }, + { + "epoch": 15.650298606502986, + "grad_norm": 0.1906009018421173, + "learning_rate": 4.21763925729443e-05, + "loss": 0.9032618713378906, + "step": 17700 + }, + { + "epoch": 15.738774607387747, + "grad_norm": 0.17282316088676453, + "learning_rate": 4.213218390804598e-05, + "loss": 0.8986404418945313, + "step": 17800 + }, + { + "epoch": 15.827250608272506, + "grad_norm": 0.18802666664123535, + "learning_rate": 4.208797524314766e-05, + "loss": 0.8964502716064453, + "step": 17900 + }, + { + "epoch": 15.915726609157266, + "grad_norm": 0.19853872060775757, + "learning_rate": 4.204376657824934e-05, + "loss": 0.9032749938964844, + "step": 18000 + }, + { + "epoch": 16.003539040035392, + "grad_norm": 0.18812181055545807, + "learning_rate": 4.199955791335102e-05, + "loss": 0.8991973876953125, + "step": 18100 + }, + { + "epoch": 16.09201504092015, + "grad_norm": 0.1644710898399353, + "learning_rate": 4.1955349248452695e-05, + "loss": 0.8866680908203125, + "step": 18200 + }, + { + "epoch": 16.18049104180491, + "grad_norm": 0.1884208619594574, + "learning_rate": 4.191114058355438e-05, + "loss": 0.8872537994384766, + "step": 18300 + }, + { + "epoch": 16.26896704268967, + "grad_norm": 0.1828072965145111, + "learning_rate": 4.186693191865606e-05, + "loss": 0.8902882385253906, + "step": 18400 + }, + { + "epoch": 16.35744304357443, + "grad_norm": 0.19119146466255188, + "learning_rate": 4.182272325375774e-05, + "loss": 0.8903806304931641, + "step": 18500 + }, + { + "epoch": 16.445919044459192, + "grad_norm": 0.20727571845054626, + "learning_rate": 4.177851458885942e-05, + "loss": 0.8952965545654297, + "step": 18600 + }, + { + "epoch": 16.53439504534395, + "grad_norm": 0.18735922873020172, + "learning_rate": 4.17343059239611e-05, + "loss": 0.8870563507080078, + "step": 18700 + }, + { + "epoch": 16.62287104622871, + "grad_norm": 0.1973799169063568, + "learning_rate": 4.169009725906278e-05, + "loss": 0.8974028778076172, + "step": 18800 + }, + { + "epoch": 16.71134704711347, + "grad_norm": 0.20604746043682098, + "learning_rate": 4.1645888594164455e-05, + "loss": 0.8937057495117188, + "step": 18900 + }, + { + "epoch": 16.79982304799823, + "grad_norm": 0.18150219321250916, + "learning_rate": 4.160167992926614e-05, + "loss": 0.8935442352294922, + "step": 19000 + }, + { + "epoch": 16.888299048882992, + "grad_norm": 0.18340304493904114, + "learning_rate": 4.155747126436782e-05, + "loss": 0.8885797119140625, + "step": 19100 + }, + { + "epoch": 16.97677504976775, + "grad_norm": 0.2073577493429184, + "learning_rate": 4.15132625994695e-05, + "loss": 0.8951002502441406, + "step": 19200 + }, + { + "epoch": 17.064587480645876, + "grad_norm": 0.17697007954120636, + "learning_rate": 4.146949602122016e-05, + "loss": 0.8879679870605469, + "step": 19300 + }, + { + "epoch": 17.153063481530634, + "grad_norm": 0.20899821817874908, + "learning_rate": 4.142528735632184e-05, + "loss": 0.8794329833984375, + "step": 19400 + }, + { + "epoch": 17.241539482415394, + "grad_norm": 0.18147091567516327, + "learning_rate": 4.138107869142352e-05, + "loss": 0.8802722930908203, + "step": 19500 + }, + { + "epoch": 17.330015483300155, + "grad_norm": 0.20257830619812012, + "learning_rate": 4.13368700265252e-05, + "loss": 0.8870145416259766, + "step": 19600 + }, + { + "epoch": 17.418491484184916, + "grad_norm": 0.20231416821479797, + "learning_rate": 4.1292661361626885e-05, + "loss": 0.8838448333740234, + "step": 19700 + }, + { + "epoch": 17.506967485069676, + "grad_norm": 0.18214623630046844, + "learning_rate": 4.124845269672856e-05, + "loss": 0.8879763793945312, + "step": 19800 + }, + { + "epoch": 17.595443485954434, + "grad_norm": 0.18666088581085205, + "learning_rate": 4.120424403183024e-05, + "loss": 0.8885836029052734, + "step": 19900 + }, + { + "epoch": 17.683919486839194, + "grad_norm": 0.20308583974838257, + "learning_rate": 4.116003536693192e-05, + "loss": 0.8843843078613282, + "step": 20000 + }, + { + "epoch": 17.772395487723955, + "grad_norm": 0.18726830184459686, + "learning_rate": 4.11158267020336e-05, + "loss": 0.8865486145019531, + "step": 20100 + }, + { + "epoch": 17.860871488608716, + "grad_norm": 0.17878851294517517, + "learning_rate": 4.107161803713528e-05, + "loss": 0.8883515930175782, + "step": 20200 + }, + { + "epoch": 17.949347489493476, + "grad_norm": 0.1849307119846344, + "learning_rate": 4.102740937223696e-05, + "loss": 0.8914216613769531, + "step": 20300 + }, + { + "epoch": 18.0371599203716, + "grad_norm": 0.22315239906311035, + "learning_rate": 4.0983200707338645e-05, + "loss": 0.88252197265625, + "step": 20400 + }, + { + "epoch": 18.12563592125636, + "grad_norm": 0.18446321785449982, + "learning_rate": 4.093899204244032e-05, + "loss": 0.8717878723144531, + "step": 20500 + }, + { + "epoch": 18.214111922141118, + "grad_norm": 0.21541251242160797, + "learning_rate": 4.0894783377542e-05, + "loss": 0.8750727844238281, + "step": 20600 + }, + { + "epoch": 18.30258792302588, + "grad_norm": 0.22268827259540558, + "learning_rate": 4.085057471264368e-05, + "loss": 0.8760640716552734, + "step": 20700 + }, + { + "epoch": 18.39106392391064, + "grad_norm": 0.2207673043012619, + "learning_rate": 4.080636604774536e-05, + "loss": 0.876912841796875, + "step": 20800 + }, + { + "epoch": 18.4795399247954, + "grad_norm": 0.21988292038440704, + "learning_rate": 4.076215738284704e-05, + "loss": 0.8794302368164062, + "step": 20900 + }, + { + "epoch": 18.56801592568016, + "grad_norm": 0.2057323008775711, + "learning_rate": 4.0717948717948714e-05, + "loss": 0.8795650482177735, + "step": 21000 + }, + { + "epoch": 18.656491926564918, + "grad_norm": 0.19854794442653656, + "learning_rate": 4.0673740053050405e-05, + "loss": 0.8824103546142578, + "step": 21100 + }, + { + "epoch": 18.74496792744968, + "grad_norm": 0.2183123230934143, + "learning_rate": 4.062953138815208e-05, + "loss": 0.8792383575439453, + "step": 21200 + }, + { + "epoch": 18.83344392833444, + "grad_norm": 0.20326419174671173, + "learning_rate": 4.058532272325376e-05, + "loss": 0.8834226989746093, + "step": 21300 + }, + { + "epoch": 18.9219199292192, + "grad_norm": 0.20735788345336914, + "learning_rate": 4.054111405835544e-05, + "loss": 0.8820342254638672, + "step": 21400 + }, + { + "epoch": 19.009732360097324, + "grad_norm": 0.2023264467716217, + "learning_rate": 4.04973474801061e-05, + "loss": 0.8843944549560547, + "step": 21500 + }, + { + "epoch": 19.098208360982085, + "grad_norm": 0.21148885786533356, + "learning_rate": 4.045313881520778e-05, + "loss": 0.8647132110595703, + "step": 21600 + }, + { + "epoch": 19.186684361866842, + "grad_norm": 0.2251083254814148, + "learning_rate": 4.040893015030947e-05, + "loss": 0.866364974975586, + "step": 21700 + }, + { + "epoch": 19.275160362751603, + "grad_norm": 0.23524972796440125, + "learning_rate": 4.0364721485411144e-05, + "loss": 0.8736127471923828, + "step": 21800 + }, + { + "epoch": 19.363636363636363, + "grad_norm": 0.21772760152816772, + "learning_rate": 4.032051282051282e-05, + "loss": 0.8692568206787109, + "step": 21900 + }, + { + "epoch": 19.452112364521124, + "grad_norm": 0.2125358134508133, + "learning_rate": 4.0276304155614505e-05, + "loss": 0.8706926727294921, + "step": 22000 + }, + { + "epoch": 19.540588365405885, + "grad_norm": 0.22768475115299225, + "learning_rate": 4.023209549071618e-05, + "loss": 0.8674411010742188, + "step": 22100 + }, + { + "epoch": 19.629064366290642, + "grad_norm": 0.2211151272058487, + "learning_rate": 4.018788682581786e-05, + "loss": 0.8749802398681641, + "step": 22200 + }, + { + "epoch": 19.717540367175403, + "grad_norm": 0.21814538538455963, + "learning_rate": 4.014367816091954e-05, + "loss": 0.8754036712646485, + "step": 22300 + }, + { + "epoch": 19.806016368060163, + "grad_norm": 0.2030419558286667, + "learning_rate": 4.0099469496021226e-05, + "loss": 0.8714677429199219, + "step": 22400 + }, + { + "epoch": 19.894492368944924, + "grad_norm": 0.21472303569316864, + "learning_rate": 4.0055260831122904e-05, + "loss": 0.8727165222167969, + "step": 22500 + }, + { + "epoch": 19.982968369829685, + "grad_norm": 0.20911096036434174, + "learning_rate": 4.001105216622458e-05, + "loss": 0.8781427764892578, + "step": 22600 + }, + { + "epoch": 20.07078080070781, + "grad_norm": 0.2304856926202774, + "learning_rate": 3.9966843501326264e-05, + "loss": 0.8589347076416015, + "step": 22700 + }, + { + "epoch": 20.15925680159257, + "grad_norm": 0.23650145530700684, + "learning_rate": 3.992263483642794e-05, + "loss": 0.8598684692382812, + "step": 22800 + }, + { + "epoch": 20.247732802477326, + "grad_norm": 0.21773482859134674, + "learning_rate": 3.987842617152962e-05, + "loss": 0.8605601501464843, + "step": 22900 + }, + { + "epoch": 20.336208803362087, + "grad_norm": 0.2237112671136856, + "learning_rate": 3.98342175066313e-05, + "loss": 0.8617141723632813, + "step": 23000 + }, + { + "epoch": 20.424684804246848, + "grad_norm": 0.24452048540115356, + "learning_rate": 3.9790008841732986e-05, + "loss": 0.8622699737548828, + "step": 23100 + }, + { + "epoch": 20.51316080513161, + "grad_norm": 0.21587280929088593, + "learning_rate": 3.974580017683466e-05, + "loss": 0.8637493896484375, + "step": 23200 + }, + { + "epoch": 20.60163680601637, + "grad_norm": 0.2406671941280365, + "learning_rate": 3.970159151193634e-05, + "loss": 0.859559555053711, + "step": 23300 + }, + { + "epoch": 20.690112806901126, + "grad_norm": 0.22845898568630219, + "learning_rate": 3.9657382847038024e-05, + "loss": 0.8662923431396484, + "step": 23400 + }, + { + "epoch": 20.778588807785887, + "grad_norm": 0.24683597683906555, + "learning_rate": 3.96131741821397e-05, + "loss": 0.8673475646972656, + "step": 23500 + }, + { + "epoch": 20.867064808670648, + "grad_norm": 0.22459226846694946, + "learning_rate": 3.956896551724138e-05, + "loss": 0.8640863037109375, + "step": 23600 + }, + { + "epoch": 20.95554080955541, + "grad_norm": 0.23616963624954224, + "learning_rate": 3.952475685234306e-05, + "loss": 0.8678861236572266, + "step": 23700 + }, + { + "epoch": 21.043353240433532, + "grad_norm": 0.22973845899105072, + "learning_rate": 3.9480990274093725e-05, + "loss": 0.8580598449707031, + "step": 23800 + }, + { + "epoch": 21.131829241318293, + "grad_norm": 0.2424720972776413, + "learning_rate": 3.94367816091954e-05, + "loss": 0.8460955810546875, + "step": 23900 + }, + { + "epoch": 21.220305242203054, + "grad_norm": 0.2528146505355835, + "learning_rate": 3.9392572944297086e-05, + "loss": 0.8499996185302734, + "step": 24000 + }, + { + "epoch": 21.30878124308781, + "grad_norm": 0.2518126666545868, + "learning_rate": 3.9348364279398763e-05, + "loss": 0.8534349060058594, + "step": 24100 + }, + { + "epoch": 21.39725724397257, + "grad_norm": 0.2305818349123001, + "learning_rate": 3.930415561450044e-05, + "loss": 0.84900146484375, + "step": 24200 + }, + { + "epoch": 21.485733244857332, + "grad_norm": 0.25653600692749023, + "learning_rate": 3.9259946949602124e-05, + "loss": 0.8542990875244141, + "step": 24300 + }, + { + "epoch": 21.574209245742093, + "grad_norm": 0.2712801992893219, + "learning_rate": 3.92157382847038e-05, + "loss": 0.8558815002441407, + "step": 24400 + }, + { + "epoch": 21.662685246626854, + "grad_norm": 0.273328959941864, + "learning_rate": 3.9171529619805485e-05, + "loss": 0.8555754089355468, + "step": 24500 + }, + { + "epoch": 21.75116124751161, + "grad_norm": 0.2668614089488983, + "learning_rate": 3.912732095490716e-05, + "loss": 0.8587675476074219, + "step": 24600 + }, + { + "epoch": 21.83963724839637, + "grad_norm": 0.24395836889743805, + "learning_rate": 3.9083112290008846e-05, + "loss": 0.8572028350830078, + "step": 24700 + }, + { + "epoch": 21.928113249281132, + "grad_norm": 0.24808812141418457, + "learning_rate": 3.903890362511052e-05, + "loss": 0.8579219055175781, + "step": 24800 + }, + { + "epoch": 22.015925680159256, + "grad_norm": 0.2587817311286926, + "learning_rate": 3.89946949602122e-05, + "loss": 0.8512050628662109, + "step": 24900 + }, + { + "epoch": 22.104401681044017, + "grad_norm": 0.26175108551979065, + "learning_rate": 3.8950486295313884e-05, + "loss": 0.8361199188232422, + "step": 25000 + }, + { + "epoch": 22.192877681928778, + "grad_norm": 0.2715345025062561, + "learning_rate": 3.890627763041556e-05, + "loss": 0.8399204254150391, + "step": 25100 + }, + { + "epoch": 22.28135368281354, + "grad_norm": 0.27675682306289673, + "learning_rate": 3.8862068965517245e-05, + "loss": 0.8378430938720703, + "step": 25200 + }, + { + "epoch": 22.369829683698295, + "grad_norm": 0.26540565490722656, + "learning_rate": 3.881786030061892e-05, + "loss": 0.8397164916992188, + "step": 25300 + }, + { + "epoch": 22.458305684583056, + "grad_norm": 0.2754775285720825, + "learning_rate": 3.8773651635720606e-05, + "loss": 0.8450184631347656, + "step": 25400 + }, + { + "epoch": 22.546781685467817, + "grad_norm": 0.2393341213464737, + "learning_rate": 3.872944297082228e-05, + "loss": 0.8427618408203125, + "step": 25500 + }, + { + "epoch": 22.635257686352578, + "grad_norm": 0.23895791172981262, + "learning_rate": 3.868523430592396e-05, + "loss": 0.8457352447509766, + "step": 25600 + }, + { + "epoch": 22.72373368723734, + "grad_norm": 0.26955941319465637, + "learning_rate": 3.8641025641025644e-05, + "loss": 0.849469223022461, + "step": 25700 + }, + { + "epoch": 22.812209688122095, + "grad_norm": 0.23746059834957123, + "learning_rate": 3.859681697612732e-05, + "loss": 0.8469708251953125, + "step": 25800 + }, + { + "epoch": 22.900685689006856, + "grad_norm": 0.2649519145488739, + "learning_rate": 3.8552608311229005e-05, + "loss": 0.849559326171875, + "step": 25900 + }, + { + "epoch": 22.989161689891617, + "grad_norm": 0.27285081148147583, + "learning_rate": 3.850839964633068e-05, + "loss": 0.8485184478759765, + "step": 26000 + }, + { + "epoch": 23.07697412076974, + "grad_norm": 0.27895936369895935, + "learning_rate": 3.8464633068081345e-05, + "loss": 0.8252901458740234, + "step": 26100 + }, + { + "epoch": 23.1654501216545, + "grad_norm": 0.2652367055416107, + "learning_rate": 3.842042440318302e-05, + "loss": 0.8263906097412109, + "step": 26200 + }, + { + "epoch": 23.253926122539262, + "grad_norm": 0.2835598886013031, + "learning_rate": 3.8376215738284706e-05, + "loss": 0.8287677001953125, + "step": 26300 + }, + { + "epoch": 23.342402123424023, + "grad_norm": 0.2834433615207672, + "learning_rate": 3.833200707338638e-05, + "loss": 0.8309012603759766, + "step": 26400 + }, + { + "epoch": 23.43087812430878, + "grad_norm": 0.2998100817203522, + "learning_rate": 3.828779840848807e-05, + "loss": 0.8311166381835937, + "step": 26500 + }, + { + "epoch": 23.51935412519354, + "grad_norm": 0.29382187128067017, + "learning_rate": 3.8243589743589744e-05, + "loss": 0.8325238037109375, + "step": 26600 + }, + { + "epoch": 23.6078301260783, + "grad_norm": 0.2950701415538788, + "learning_rate": 3.819938107869143e-05, + "loss": 0.8368535614013672, + "step": 26700 + }, + { + "epoch": 23.696306126963062, + "grad_norm": 0.287801057100296, + "learning_rate": 3.8155172413793105e-05, + "loss": 0.833930435180664, + "step": 26800 + }, + { + "epoch": 23.784782127847823, + "grad_norm": 0.33100536465644836, + "learning_rate": 3.811096374889478e-05, + "loss": 0.8386001586914062, + "step": 26900 + }, + { + "epoch": 23.87325812873258, + "grad_norm": 0.2911369800567627, + "learning_rate": 3.8066755083996466e-05, + "loss": 0.8410533905029297, + "step": 27000 + }, + { + "epoch": 23.96173412961734, + "grad_norm": 0.26980099081993103, + "learning_rate": 3.802254641909814e-05, + "loss": 0.8360975646972656, + "step": 27100 + }, + { + "epoch": 24.049546560495465, + "grad_norm": 0.3001425862312317, + "learning_rate": 3.797833775419983e-05, + "loss": 0.8234864044189453, + "step": 27200 + }, + { + "epoch": 24.138022561380225, + "grad_norm": 0.27798378467559814, + "learning_rate": 3.7934129089301504e-05, + "loss": 0.8135331726074219, + "step": 27300 + }, + { + "epoch": 24.226498562264986, + "grad_norm": 0.2736954689025879, + "learning_rate": 3.788992042440319e-05, + "loss": 0.8113047027587891, + "step": 27400 + }, + { + "epoch": 24.314974563149747, + "grad_norm": 0.29235804080963135, + "learning_rate": 3.7845711759504865e-05, + "loss": 0.8171870422363281, + "step": 27500 + }, + { + "epoch": 24.403450564034507, + "grad_norm": 0.2878233790397644, + "learning_rate": 3.780150309460654e-05, + "loss": 0.8170029449462891, + "step": 27600 + }, + { + "epoch": 24.491926564919265, + "grad_norm": 0.31602925062179565, + "learning_rate": 3.7757294429708226e-05, + "loss": 0.8223928833007812, + "step": 27700 + }, + { + "epoch": 24.580402565804025, + "grad_norm": 0.3145372271537781, + "learning_rate": 3.77130857648099e-05, + "loss": 0.8257860565185546, + "step": 27800 + }, + { + "epoch": 24.668878566688786, + "grad_norm": 0.30716991424560547, + "learning_rate": 3.7668877099911587e-05, + "loss": 0.8240725708007812, + "step": 27900 + }, + { + "epoch": 24.757354567573547, + "grad_norm": 0.28368160128593445, + "learning_rate": 3.7624668435013264e-05, + "loss": 0.825384521484375, + "step": 28000 + }, + { + "epoch": 24.845830568458307, + "grad_norm": 0.2867664694786072, + "learning_rate": 3.758045977011495e-05, + "loss": 0.8270760345458984, + "step": 28100 + }, + { + "epoch": 24.934306569343065, + "grad_norm": 0.28817129135131836, + "learning_rate": 3.7536251105216624e-05, + "loss": 0.8286974334716797, + "step": 28200 + }, + { + "epoch": 25.02211900022119, + "grad_norm": 0.3106354773044586, + "learning_rate": 3.749248452696729e-05, + "loss": 0.82120849609375, + "step": 28300 + }, + { + "epoch": 25.11059500110595, + "grad_norm": 0.3304692506790161, + "learning_rate": 3.7448275862068965e-05, + "loss": 0.8016901397705078, + "step": 28400 + }, + { + "epoch": 25.19907100199071, + "grad_norm": 0.3065616488456726, + "learning_rate": 3.740406719717064e-05, + "loss": 0.8027448272705078, + "step": 28500 + }, + { + "epoch": 25.28754700287547, + "grad_norm": 0.3456852436065674, + "learning_rate": 3.735985853227233e-05, + "loss": 0.8046049499511718, + "step": 28600 + }, + { + "epoch": 25.37602300376023, + "grad_norm": 0.3011663556098938, + "learning_rate": 3.731564986737401e-05, + "loss": 0.8079199981689453, + "step": 28700 + }, + { + "epoch": 25.46449900464499, + "grad_norm": 0.3659413158893585, + "learning_rate": 3.7271441202475687e-05, + "loss": 0.8079922485351563, + "step": 28800 + }, + { + "epoch": 25.55297500552975, + "grad_norm": 0.3281838595867157, + "learning_rate": 3.7227232537577364e-05, + "loss": 0.8134046173095704, + "step": 28900 + }, + { + "epoch": 25.64145100641451, + "grad_norm": 0.3106602132320404, + "learning_rate": 3.718302387267905e-05, + "loss": 0.8104205322265625, + "step": 29000 + }, + { + "epoch": 25.72992700729927, + "grad_norm": 0.3320154845714569, + "learning_rate": 3.7138815207780725e-05, + "loss": 0.8142304992675782, + "step": 29100 + }, + { + "epoch": 25.81840300818403, + "grad_norm": 0.3355977535247803, + "learning_rate": 3.70946065428824e-05, + "loss": 0.8125243377685547, + "step": 29200 + }, + { + "epoch": 25.90687900906879, + "grad_norm": 0.3472290635108948, + "learning_rate": 3.7050397877984085e-05, + "loss": 0.8146660614013672, + "step": 29300 + }, + { + "epoch": 25.99535500995355, + "grad_norm": 0.31780678033828735, + "learning_rate": 3.700618921308577e-05, + "loss": 0.8169705200195313, + "step": 29400 + }, + { + "epoch": 26.083167440831673, + "grad_norm": 0.3046151101589203, + "learning_rate": 3.6961980548187446e-05, + "loss": 0.7894915008544922, + "step": 29500 + }, + { + "epoch": 26.171643441716434, + "grad_norm": 0.3560829162597656, + "learning_rate": 3.6917771883289123e-05, + "loss": 0.7867289733886719, + "step": 29600 + }, + { + "epoch": 26.260119442601194, + "grad_norm": 0.33036884665489197, + "learning_rate": 3.687356321839081e-05, + "loss": 0.7914912414550781, + "step": 29700 + }, + { + "epoch": 26.348595443485955, + "grad_norm": 0.3302215039730072, + "learning_rate": 3.6829354553492484e-05, + "loss": 0.7926998901367187, + "step": 29800 + }, + { + "epoch": 26.437071444370716, + "grad_norm": 0.33766239881515503, + "learning_rate": 3.678514588859416e-05, + "loss": 0.7958551788330078, + "step": 29900 + }, + { + "epoch": 26.525547445255473, + "grad_norm": 0.34900912642478943, + "learning_rate": 3.6740937223695845e-05, + "loss": 0.7958287811279297, + "step": 30000 + }, + { + "epoch": 26.614023446140234, + "grad_norm": 0.3290475010871887, + "learning_rate": 3.669672855879753e-05, + "loss": 0.7994923400878906, + "step": 30100 + }, + { + "epoch": 26.702499447024994, + "grad_norm": 0.3304896950721741, + "learning_rate": 3.6652519893899206e-05, + "loss": 0.8000531005859375, + "step": 30200 + }, + { + "epoch": 26.790975447909755, + "grad_norm": 0.32132837176322937, + "learning_rate": 3.660831122900088e-05, + "loss": 0.8006639862060547, + "step": 30300 + }, + { + "epoch": 26.879451448794516, + "grad_norm": 0.3341081142425537, + "learning_rate": 3.656410256410257e-05, + "loss": 0.8037942504882812, + "step": 30400 + }, + { + "epoch": 26.967927449679273, + "grad_norm": 0.3406025171279907, + "learning_rate": 3.6519893899204244e-05, + "loss": 0.8009793853759766, + "step": 30500 + }, + { + "epoch": 27.0557398805574, + "grad_norm": 0.3396868109703064, + "learning_rate": 3.647568523430592e-05, + "loss": 0.7846424865722657, + "step": 30600 + }, + { + "epoch": 27.144215881442157, + "grad_norm": 0.33319470286369324, + "learning_rate": 3.6431476569407605e-05, + "loss": 0.7724665832519532, + "step": 30700 + }, + { + "epoch": 27.232691882326918, + "grad_norm": 0.38071826100349426, + "learning_rate": 3.638726790450929e-05, + "loss": 0.7791647338867187, + "step": 30800 + }, + { + "epoch": 27.32116788321168, + "grad_norm": 0.3640372157096863, + "learning_rate": 3.6343059239610966e-05, + "loss": 0.778485107421875, + "step": 30900 + }, + { + "epoch": 27.40964388409644, + "grad_norm": 0.34701183438301086, + "learning_rate": 3.629885057471264e-05, + "loss": 0.7812682342529297, + "step": 31000 + }, + { + "epoch": 27.4981198849812, + "grad_norm": 0.34723395109176636, + "learning_rate": 3.625464190981433e-05, + "loss": 0.7816720581054688, + "step": 31100 + }, + { + "epoch": 27.586595885865957, + "grad_norm": 0.3967572748661041, + "learning_rate": 3.6210433244916004e-05, + "loss": 0.7825845336914062, + "step": 31200 + }, + { + "epoch": 27.675071886750718, + "grad_norm": 0.36156365275382996, + "learning_rate": 3.616622458001768e-05, + "loss": 0.7875003814697266, + "step": 31300 + }, + { + "epoch": 27.76354788763548, + "grad_norm": 0.37152451276779175, + "learning_rate": 3.6122015915119365e-05, + "loss": 0.7848563385009766, + "step": 31400 + }, + { + "epoch": 27.85202388852024, + "grad_norm": 0.3751819431781769, + "learning_rate": 3.607780725022105e-05, + "loss": 0.7901625061035156, + "step": 31500 + }, + { + "epoch": 27.940499889405, + "grad_norm": 0.32409200072288513, + "learning_rate": 3.6033598585322726e-05, + "loss": 0.7916508483886718, + "step": 31600 + }, + { + "epoch": 28.028312320283124, + "grad_norm": 0.36621779203414917, + "learning_rate": 3.59893899204244e-05, + "loss": 0.7814656066894531, + "step": 31700 + }, + { + "epoch": 28.116788321167885, + "grad_norm": 0.35782715678215027, + "learning_rate": 3.594518125552609e-05, + "loss": 0.7565266418457032, + "step": 31800 + }, + { + "epoch": 28.205264322052642, + "grad_norm": 0.34983065724372864, + "learning_rate": 3.5900972590627764e-05, + "loss": 0.7589649963378906, + "step": 31900 + }, + { + "epoch": 28.293740322937403, + "grad_norm": 0.36476004123687744, + "learning_rate": 3.585676392572945e-05, + "loss": 0.7618669891357421, + "step": 32000 + }, + { + "epoch": 28.382216323822163, + "grad_norm": 0.3663191795349121, + "learning_rate": 3.5812555260831125e-05, + "loss": 0.768099136352539, + "step": 32100 + }, + { + "epoch": 28.470692324706924, + "grad_norm": 0.3572807312011719, + "learning_rate": 3.576834659593281e-05, + "loss": 0.7697807312011719, + "step": 32200 + }, + { + "epoch": 28.559168325591685, + "grad_norm": 0.39800935983657837, + "learning_rate": 3.5724580017683465e-05, + "loss": 0.7714015960693359, + "step": 32300 + }, + { + "epoch": 28.647644326476442, + "grad_norm": 0.3792218863964081, + "learning_rate": 3.568037135278515e-05, + "loss": 0.7737385559082032, + "step": 32400 + }, + { + "epoch": 28.736120327361203, + "grad_norm": 0.4109075665473938, + "learning_rate": 3.5636162687886826e-05, + "loss": 0.7772123718261719, + "step": 32500 + }, + { + "epoch": 28.824596328245963, + "grad_norm": 0.40446004271507263, + "learning_rate": 3.55919540229885e-05, + "loss": 0.7722319030761718, + "step": 32600 + }, + { + "epoch": 28.913072329130724, + "grad_norm": 0.39553946256637573, + "learning_rate": 3.554774535809019e-05, + "loss": 0.7767266082763672, + "step": 32700 + }, + { + "epoch": 29.000884760008848, + "grad_norm": 0.3675474226474762, + "learning_rate": 3.550397877984085e-05, + "loss": 0.7800326538085938, + "step": 32800 + }, + { + "epoch": 29.08936076089361, + "grad_norm": 0.37354156374931335, + "learning_rate": 3.5459770114942534e-05, + "loss": 0.7407066345214843, + "step": 32900 + }, + { + "epoch": 29.17783676177837, + "grad_norm": 0.3970542550086975, + "learning_rate": 3.541556145004421e-05, + "loss": 0.7467523956298828, + "step": 33000 + }, + { + "epoch": 29.266312762663127, + "grad_norm": 0.3625730872154236, + "learning_rate": 3.537135278514589e-05, + "loss": 0.7477723693847657, + "step": 33100 + }, + { + "epoch": 29.354788763547887, + "grad_norm": 0.37132611870765686, + "learning_rate": 3.532714412024757e-05, + "loss": 0.7502822875976562, + "step": 33200 + }, + { + "epoch": 29.443264764432648, + "grad_norm": 0.3668833374977112, + "learning_rate": 3.528293545534925e-05, + "loss": 0.7570280456542968, + "step": 33300 + }, + { + "epoch": 29.53174076531741, + "grad_norm": 0.404186874628067, + "learning_rate": 3.523872679045093e-05, + "loss": 0.7576876831054687, + "step": 33400 + }, + { + "epoch": 29.62021676620217, + "grad_norm": 0.407461017370224, + "learning_rate": 3.519451812555261e-05, + "loss": 0.7606333923339844, + "step": 33500 + }, + { + "epoch": 29.708692767086927, + "grad_norm": 0.4091641902923584, + "learning_rate": 3.5150309460654294e-05, + "loss": 0.7598370361328125, + "step": 33600 + }, + { + "epoch": 29.797168767971687, + "grad_norm": 0.36642369627952576, + "learning_rate": 3.510610079575597e-05, + "loss": 0.7617308807373047, + "step": 33700 + }, + { + "epoch": 29.885644768856448, + "grad_norm": 0.3767990171909332, + "learning_rate": 3.506189213085765e-05, + "loss": 0.760002670288086, + "step": 33800 + }, + { + "epoch": 29.97412076974121, + "grad_norm": 0.3992450535297394, + "learning_rate": 3.5017683465959325e-05, + "loss": 0.7659886932373047, + "step": 33900 + }, + { + "epoch": 30.061933200619332, + "grad_norm": 0.38657036423683167, + "learning_rate": 3.497347480106101e-05, + "loss": 0.7397030639648438, + "step": 34000 + }, + { + "epoch": 30.150409201504093, + "grad_norm": 0.40928229689598083, + "learning_rate": 3.492926613616269e-05, + "loss": 0.7280159759521484, + "step": 34100 + }, + { + "epoch": 30.23888520238885, + "grad_norm": 0.41609957814216614, + "learning_rate": 3.488505747126437e-05, + "loss": 0.7327291107177735, + "step": 34200 + }, + { + "epoch": 30.32736120327361, + "grad_norm": 0.3990429639816284, + "learning_rate": 3.4840848806366047e-05, + "loss": 0.7359205627441406, + "step": 34300 + }, + { + "epoch": 30.41583720415837, + "grad_norm": 0.40403324365615845, + "learning_rate": 3.479664014146773e-05, + "loss": 0.73650390625, + "step": 34400 + }, + { + "epoch": 30.504313205043132, + "grad_norm": 0.42696642875671387, + "learning_rate": 3.475243147656941e-05, + "loss": 0.7416681671142578, + "step": 34500 + }, + { + "epoch": 30.592789205927893, + "grad_norm": 0.3891199231147766, + "learning_rate": 3.4708222811671085e-05, + "loss": 0.742286605834961, + "step": 34600 + }, + { + "epoch": 30.68126520681265, + "grad_norm": 0.3660706877708435, + "learning_rate": 3.466401414677277e-05, + "loss": 0.7444020080566406, + "step": 34700 + }, + { + "epoch": 30.76974120769741, + "grad_norm": 0.43280747532844543, + "learning_rate": 3.461980548187445e-05, + "loss": 0.7461125183105469, + "step": 34800 + }, + { + "epoch": 30.85821720858217, + "grad_norm": 0.4279727041721344, + "learning_rate": 3.457559681697613e-05, + "loss": 0.7497645568847656, + "step": 34900 + }, + { + "epoch": 30.946693209466932, + "grad_norm": 0.4162921905517578, + "learning_rate": 3.4531388152077806e-05, + "loss": 0.7478341674804687, + "step": 35000 + }, + { + "epoch": 31.034505640345056, + "grad_norm": 0.4011857211589813, + "learning_rate": 3.448762157382847e-05, + "loss": 0.7373168182373047, + "step": 35100 + }, + { + "epoch": 31.122981641229817, + "grad_norm": 0.42476192116737366, + "learning_rate": 3.444341290893015e-05, + "loss": 0.714128646850586, + "step": 35200 + }, + { + "epoch": 31.211457642114578, + "grad_norm": 0.4272063672542572, + "learning_rate": 3.439920424403183e-05, + "loss": 0.717328872680664, + "step": 35300 + }, + { + "epoch": 31.299933642999335, + "grad_norm": 0.39419060945510864, + "learning_rate": 3.4354995579133514e-05, + "loss": 0.7182811737060547, + "step": 35400 + }, + { + "epoch": 31.388409643884096, + "grad_norm": 0.4092519283294678, + "learning_rate": 3.431078691423519e-05, + "loss": 0.7223808288574218, + "step": 35500 + }, + { + "epoch": 31.476885644768856, + "grad_norm": 0.45683449506759644, + "learning_rate": 3.4266578249336875e-05, + "loss": 0.7236460876464844, + "step": 35600 + }, + { + "epoch": 31.565361645653617, + "grad_norm": 0.4914647936820984, + "learning_rate": 3.422236958443855e-05, + "loss": 0.728529052734375, + "step": 35700 + }, + { + "epoch": 31.653837646538378, + "grad_norm": 0.439372718334198, + "learning_rate": 3.417816091954023e-05, + "loss": 0.7269135284423828, + "step": 35800 + }, + { + "epoch": 31.742313647423135, + "grad_norm": 0.488553911447525, + "learning_rate": 3.413395225464191e-05, + "loss": 0.7319352722167969, + "step": 35900 + }, + { + "epoch": 31.830789648307896, + "grad_norm": 0.43236035108566284, + "learning_rate": 3.408974358974359e-05, + "loss": 0.7336878204345703, + "step": 36000 + }, + { + "epoch": 31.919265649192656, + "grad_norm": 0.42669814825057983, + "learning_rate": 3.4045534924845274e-05, + "loss": 0.7357192993164062, + "step": 36100 + }, + { + "epoch": 32.007078080070784, + "grad_norm": 0.40464460849761963, + "learning_rate": 3.400132625994695e-05, + "loss": 0.7324215698242188, + "step": 36200 + }, + { + "epoch": 32.09555408095554, + "grad_norm": 0.4362545311450958, + "learning_rate": 3.3957117595048635e-05, + "loss": 0.6976793670654297, + "step": 36300 + }, + { + "epoch": 32.1840300818403, + "grad_norm": 0.46484723687171936, + "learning_rate": 3.391290893015031e-05, + "loss": 0.6972021484375, + "step": 36400 + }, + { + "epoch": 32.27250608272506, + "grad_norm": 0.43313083052635193, + "learning_rate": 3.386870026525199e-05, + "loss": 0.7049392700195313, + "step": 36500 + }, + { + "epoch": 32.36098208360982, + "grad_norm": 0.437752366065979, + "learning_rate": 3.3824491600353666e-05, + "loss": 0.7091526794433594, + "step": 36600 + }, + { + "epoch": 32.44945808449458, + "grad_norm": 0.44550085067749023, + "learning_rate": 3.378028293545535e-05, + "loss": 0.7121316528320313, + "step": 36700 + }, + { + "epoch": 32.53793408537934, + "grad_norm": 0.46052590012550354, + "learning_rate": 3.3736074270557034e-05, + "loss": 0.7150274658203125, + "step": 36800 + }, + { + "epoch": 32.6264100862641, + "grad_norm": 0.4344913065433502, + "learning_rate": 3.369186560565871e-05, + "loss": 0.7130059814453125, + "step": 36900 + }, + { + "epoch": 32.71488608714886, + "grad_norm": 0.45924630761146545, + "learning_rate": 3.364765694076039e-05, + "loss": 0.7156332397460937, + "step": 37000 + }, + { + "epoch": 32.80336208803362, + "grad_norm": 0.41177231073379517, + "learning_rate": 3.360344827586207e-05, + "loss": 0.7184346008300782, + "step": 37100 + }, + { + "epoch": 32.891838088918384, + "grad_norm": 0.44688835740089417, + "learning_rate": 3.355923961096375e-05, + "loss": 0.7201016235351563, + "step": 37200 + }, + { + "epoch": 32.980314089803144, + "grad_norm": 0.4971197545528412, + "learning_rate": 3.3515030946065426e-05, + "loss": 0.7191078186035156, + "step": 37300 + }, + { + "epoch": 33.06812652068127, + "grad_norm": 0.47201091051101685, + "learning_rate": 3.347126436781609e-05, + "loss": 0.6914530944824219, + "step": 37400 + }, + { + "epoch": 33.15660252156602, + "grad_norm": 0.4473711848258972, + "learning_rate": 3.342705570291777e-05, + "loss": 0.6855306243896484, + "step": 37500 + }, + { + "epoch": 33.24507852245078, + "grad_norm": 0.4745553135871887, + "learning_rate": 3.338284703801946e-05, + "loss": 0.6888325500488282, + "step": 37600 + }, + { + "epoch": 33.33355452333554, + "grad_norm": 0.45796144008636475, + "learning_rate": 3.3338638373121134e-05, + "loss": 0.6924916076660156, + "step": 37700 + }, + { + "epoch": 33.422030524220304, + "grad_norm": 0.47769099473953247, + "learning_rate": 3.329442970822281e-05, + "loss": 0.6937997436523438, + "step": 37800 + }, + { + "epoch": 33.510506525105065, + "grad_norm": 0.4637518525123596, + "learning_rate": 3.3250221043324495e-05, + "loss": 0.6975637817382813, + "step": 37900 + }, + { + "epoch": 33.598982525989825, + "grad_norm": 0.47370946407318115, + "learning_rate": 3.320601237842617e-05, + "loss": 0.6985407257080078, + "step": 38000 + }, + { + "epoch": 33.687458526874586, + "grad_norm": 0.467692106962204, + "learning_rate": 3.316180371352785e-05, + "loss": 0.7032517242431641, + "step": 38100 + }, + { + "epoch": 33.77593452775935, + "grad_norm": 0.4691486060619354, + "learning_rate": 3.311759504862953e-05, + "loss": 0.7019402313232422, + "step": 38200 + }, + { + "epoch": 33.86441052864411, + "grad_norm": 0.465666264295578, + "learning_rate": 3.307338638373122e-05, + "loss": 0.7065095520019531, + "step": 38300 + }, + { + "epoch": 33.95288652952887, + "grad_norm": 0.4870339632034302, + "learning_rate": 3.3029177718832894e-05, + "loss": 0.7060601043701172, + "step": 38400 + }, + { + "epoch": 34.04069896040699, + "grad_norm": 0.46102386713027954, + "learning_rate": 3.298496905393457e-05, + "loss": 0.6895645141601563, + "step": 38500 + }, + { + "epoch": 34.12917496129175, + "grad_norm": 0.4717739522457123, + "learning_rate": 3.2940760389036255e-05, + "loss": 0.6683721160888672, + "step": 38600 + }, + { + "epoch": 34.217650962176506, + "grad_norm": 0.47995516657829285, + "learning_rate": 3.289655172413793e-05, + "loss": 0.67727294921875, + "step": 38700 + }, + { + "epoch": 34.30612696306127, + "grad_norm": 0.4676993191242218, + "learning_rate": 3.2852343059239616e-05, + "loss": 0.6742596435546875, + "step": 38800 + }, + { + "epoch": 34.39460296394603, + "grad_norm": 0.4986591935157776, + "learning_rate": 3.280813439434129e-05, + "loss": 0.6811554718017578, + "step": 38900 + }, + { + "epoch": 34.48307896483079, + "grad_norm": 0.49108394980430603, + "learning_rate": 3.2763925729442977e-05, + "loss": 0.6826177215576172, + "step": 39000 + }, + { + "epoch": 34.57155496571555, + "grad_norm": 0.46544989943504333, + "learning_rate": 3.2719717064544654e-05, + "loss": 0.6843925476074219, + "step": 39100 + }, + { + "epoch": 34.66003096660031, + "grad_norm": 0.4714086055755615, + "learning_rate": 3.267550839964633e-05, + "loss": 0.6843089294433594, + "step": 39200 + }, + { + "epoch": 34.74850696748507, + "grad_norm": 0.4726520776748657, + "learning_rate": 3.263129973474801e-05, + "loss": 0.687828140258789, + "step": 39300 + }, + { + "epoch": 34.83698296836983, + "grad_norm": 0.5056101083755493, + "learning_rate": 3.258709106984969e-05, + "loss": 0.6943804168701172, + "step": 39400 + }, + { + "epoch": 34.92545896925459, + "grad_norm": 0.5143911242485046, + "learning_rate": 3.2542882404951375e-05, + "loss": 0.6947840118408203, + "step": 39500 + }, + { + "epoch": 35.013271400132716, + "grad_norm": 0.4712352752685547, + "learning_rate": 3.249867374005305e-05, + "loss": 0.6877326965332031, + "step": 39600 + }, + { + "epoch": 35.10174740101748, + "grad_norm": 0.5000380873680115, + "learning_rate": 3.2454465075154736e-05, + "loss": 0.6556487274169922, + "step": 39700 + }, + { + "epoch": 35.19022340190224, + "grad_norm": 0.5022478699684143, + "learning_rate": 3.2410256410256413e-05, + "loss": 0.6607290649414063, + "step": 39800 + }, + { + "epoch": 35.27869940278699, + "grad_norm": 0.511082112789154, + "learning_rate": 3.236604774535809e-05, + "loss": 0.6585157775878906, + "step": 39900 + }, + { + "epoch": 35.36717540367175, + "grad_norm": 0.45338326692581177, + "learning_rate": 3.232183908045977e-05, + "loss": 0.6670406341552735, + "step": 40000 + }, + { + "epoch": 35.45565140455651, + "grad_norm": 0.47589078545570374, + "learning_rate": 3.227763041556145e-05, + "loss": 0.6654150390625, + "step": 40100 + }, + { + "epoch": 35.54412740544127, + "grad_norm": 0.5111287236213684, + "learning_rate": 3.2233421750663135e-05, + "loss": 0.6706926727294922, + "step": 40200 + }, + { + "epoch": 35.632603406326034, + "grad_norm": 0.48615771532058716, + "learning_rate": 3.218921308576481e-05, + "loss": 0.6724550628662109, + "step": 40300 + }, + { + "epoch": 35.721079407210794, + "grad_norm": 0.5141739845275879, + "learning_rate": 3.214500442086649e-05, + "loss": 0.674487075805664, + "step": 40400 + }, + { + "epoch": 35.809555408095555, + "grad_norm": 0.512373149394989, + "learning_rate": 3.210079575596817e-05, + "loss": 0.6809010314941406, + "step": 40500 + }, + { + "epoch": 35.898031408980316, + "grad_norm": 0.5156219005584717, + "learning_rate": 3.205658709106985e-05, + "loss": 0.6783308410644531, + "step": 40600 + }, + { + "epoch": 35.98650740986508, + "grad_norm": 0.5266398191452026, + "learning_rate": 3.201237842617153e-05, + "loss": 0.6796981811523437, + "step": 40700 + }, + { + "epoch": 36.0743198407432, + "grad_norm": 0.5198646783828735, + "learning_rate": 3.196861184792219e-05, + "loss": 0.648563232421875, + "step": 40800 + }, + { + "epoch": 36.16279584162796, + "grad_norm": 0.4699224829673767, + "learning_rate": 3.1924403183023874e-05, + "loss": 0.6464600372314453, + "step": 40900 + }, + { + "epoch": 36.25127184251272, + "grad_norm": 0.5014195442199707, + "learning_rate": 3.188019451812556e-05, + "loss": 0.6471477508544922, + "step": 41000 + }, + { + "epoch": 36.339747843397475, + "grad_norm": 0.5231509804725647, + "learning_rate": 3.1835985853227235e-05, + "loss": 0.6519639587402344, + "step": 41100 + }, + { + "epoch": 36.428223844282236, + "grad_norm": 0.4843427538871765, + "learning_rate": 3.179177718832891e-05, + "loss": 0.6523241424560546, + "step": 41200 + }, + { + "epoch": 36.516699845167, + "grad_norm": 0.4956904351711273, + "learning_rate": 3.1747568523430596e-05, + "loss": 0.6547152709960937, + "step": 41300 + }, + { + "epoch": 36.60517584605176, + "grad_norm": 0.5103031396865845, + "learning_rate": 3.170335985853227e-05, + "loss": 0.6602716827392578, + "step": 41400 + }, + { + "epoch": 36.69365184693652, + "grad_norm": 0.5028578042984009, + "learning_rate": 3.165915119363395e-05, + "loss": 0.6617116546630859, + "step": 41500 + }, + { + "epoch": 36.78212784782128, + "grad_norm": 0.4997723698616028, + "learning_rate": 3.1614942528735634e-05, + "loss": 0.6632434844970703, + "step": 41600 + }, + { + "epoch": 36.87060384870604, + "grad_norm": 0.5246814489364624, + "learning_rate": 3.157073386383732e-05, + "loss": 0.6632743835449219, + "step": 41700 + }, + { + "epoch": 36.9590798495908, + "grad_norm": 0.5308569073677063, + "learning_rate": 3.1526525198938995e-05, + "loss": 0.6639631652832031, + "step": 41800 + }, + { + "epoch": 37.046892280468924, + "grad_norm": 0.49218234419822693, + "learning_rate": 3.148231653404067e-05, + "loss": 0.6452173614501953, + "step": 41900 + }, + { + "epoch": 37.135368281353685, + "grad_norm": 0.4680822491645813, + "learning_rate": 3.143810786914235e-05, + "loss": 0.6319191360473633, + "step": 42000 + }, + { + "epoch": 37.223844282238446, + "grad_norm": 0.4810407757759094, + "learning_rate": 3.139389920424403e-05, + "loss": 0.6338667297363281, + "step": 42100 + }, + { + "epoch": 37.3123202831232, + "grad_norm": 0.545889139175415, + "learning_rate": 3.134969053934571e-05, + "loss": 0.6395709228515625, + "step": 42200 + }, + { + "epoch": 37.40079628400796, + "grad_norm": 0.5600217580795288, + "learning_rate": 3.1305481874447394e-05, + "loss": 0.6406965637207032, + "step": 42300 + }, + { + "epoch": 37.48927228489272, + "grad_norm": 0.5517903566360474, + "learning_rate": 3.126127320954908e-05, + "loss": 0.6428462982177734, + "step": 42400 + }, + { + "epoch": 37.57774828577748, + "grad_norm": 0.49925389885902405, + "learning_rate": 3.1217064544650755e-05, + "loss": 0.6470170593261719, + "step": 42500 + }, + { + "epoch": 37.66622428666224, + "grad_norm": 0.4698370397090912, + "learning_rate": 3.117285587975243e-05, + "loss": 0.6477708435058593, + "step": 42600 + }, + { + "epoch": 37.754700287547, + "grad_norm": 0.5349763035774231, + "learning_rate": 3.112864721485411e-05, + "loss": 0.6515216827392578, + "step": 42700 + }, + { + "epoch": 37.84317628843176, + "grad_norm": 0.5066236853599548, + "learning_rate": 3.108443854995579e-05, + "loss": 0.6522242736816406, + "step": 42800 + }, + { + "epoch": 37.931652289316524, + "grad_norm": 0.5211920142173767, + "learning_rate": 3.104022988505747e-05, + "loss": 0.6515906524658203, + "step": 42900 + }, + { + "epoch": 38.01946472019465, + "grad_norm": 0.5003405213356018, + "learning_rate": 3.099646330680814e-05, + "loss": 0.6448411560058593, + "step": 43000 + }, + { + "epoch": 38.10794072107941, + "grad_norm": 0.5215827226638794, + "learning_rate": 3.095225464190982e-05, + "loss": 0.619310417175293, + "step": 43100 + }, + { + "epoch": 38.19641672196417, + "grad_norm": 0.4768511950969696, + "learning_rate": 3.0908045977011494e-05, + "loss": 0.6210311126708984, + "step": 43200 + }, + { + "epoch": 38.28489272284893, + "grad_norm": 0.5353608727455139, + "learning_rate": 3.086383731211318e-05, + "loss": 0.6246475601196289, + "step": 43300 + }, + { + "epoch": 38.373368723733684, + "grad_norm": 0.5182030200958252, + "learning_rate": 3.0819628647214855e-05, + "loss": 0.6273392486572266, + "step": 43400 + }, + { + "epoch": 38.461844724618445, + "grad_norm": 0.500842273235321, + "learning_rate": 3.077541998231653e-05, + "loss": 0.6327916717529297, + "step": 43500 + }, + { + "epoch": 38.550320725503205, + "grad_norm": 0.5168542861938477, + "learning_rate": 3.0731211317418216e-05, + "loss": 0.6323520278930664, + "step": 43600 + }, + { + "epoch": 38.638796726387966, + "grad_norm": 0.5403733253479004, + "learning_rate": 3.06870026525199e-05, + "loss": 0.6338058090209961, + "step": 43700 + }, + { + "epoch": 38.72727272727273, + "grad_norm": 0.5119574666023254, + "learning_rate": 3.064279398762158e-05, + "loss": 0.6391129302978515, + "step": 43800 + }, + { + "epoch": 38.81574872815749, + "grad_norm": 0.5214455127716064, + "learning_rate": 3.0598585322723254e-05, + "loss": 0.6368292999267579, + "step": 43900 + }, + { + "epoch": 38.90422472904225, + "grad_norm": 0.5679435133934021, + "learning_rate": 3.055437665782494e-05, + "loss": 0.6414280700683593, + "step": 44000 + }, + { + "epoch": 38.99270072992701, + "grad_norm": 0.5442212820053101, + "learning_rate": 3.0510167992926615e-05, + "loss": 0.6446417999267579, + "step": 44100 + }, + { + "epoch": 39.08051316080513, + "grad_norm": 0.46873417496681213, + "learning_rate": 3.0465959328028292e-05, + "loss": 0.6127575302124023, + "step": 44200 + }, + { + "epoch": 39.16898916168989, + "grad_norm": 0.5402541756629944, + "learning_rate": 3.042175066312998e-05, + "loss": 0.6059606552124024, + "step": 44300 + }, + { + "epoch": 39.257465162574654, + "grad_norm": 0.5081923007965088, + "learning_rate": 3.0377541998231656e-05, + "loss": 0.6121833038330078, + "step": 44400 + }, + { + "epoch": 39.345941163459415, + "grad_norm": 0.5688677430152893, + "learning_rate": 3.0333333333333337e-05, + "loss": 0.6163175964355468, + "step": 44500 + }, + { + "epoch": 39.43441716434417, + "grad_norm": 0.5273306965827942, + "learning_rate": 3.0289124668435014e-05, + "loss": 0.6198236465454101, + "step": 44600 + }, + { + "epoch": 39.52289316522893, + "grad_norm": 0.5107190608978271, + "learning_rate": 3.0244916003536694e-05, + "loss": 0.6242243576049805, + "step": 44700 + }, + { + "epoch": 39.61136916611369, + "grad_norm": 0.5110412240028381, + "learning_rate": 3.0200707338638375e-05, + "loss": 0.6227451705932617, + "step": 44800 + }, + { + "epoch": 39.69984516699845, + "grad_norm": 0.5370123982429504, + "learning_rate": 3.015649867374005e-05, + "loss": 0.6257634735107422, + "step": 44900 + }, + { + "epoch": 39.78832116788321, + "grad_norm": 0.5311342477798462, + "learning_rate": 3.0112290008841735e-05, + "loss": 0.6246538925170898, + "step": 45000 + }, + { + "epoch": 39.87679716876797, + "grad_norm": 0.5247089862823486, + "learning_rate": 3.0068081343943416e-05, + "loss": 0.6278446578979492, + "step": 45100 + }, + { + "epoch": 39.96527316965273, + "grad_norm": 0.5407604575157166, + "learning_rate": 3.0023872679045096e-05, + "loss": 0.6319368743896484, + "step": 45200 + }, + { + "epoch": 40.053085600530856, + "grad_norm": 0.49125176668167114, + "learning_rate": 2.9980106100795756e-05, + "loss": 0.608686294555664, + "step": 45300 + }, + { + "epoch": 40.14156160141562, + "grad_norm": 0.5193077325820923, + "learning_rate": 2.9935897435897437e-05, + "loss": 0.5979312515258789, + "step": 45400 + }, + { + "epoch": 40.23003760230038, + "grad_norm": 0.5521110892295837, + "learning_rate": 2.9891688770999117e-05, + "loss": 0.6026276016235351, + "step": 45500 + }, + { + "epoch": 40.31851360318514, + "grad_norm": 0.5131237506866455, + "learning_rate": 2.9847480106100794e-05, + "loss": 0.6056368637084961, + "step": 45600 + }, + { + "epoch": 40.4069896040699, + "grad_norm": 0.5547003149986267, + "learning_rate": 2.9803271441202478e-05, + "loss": 0.6073746490478515, + "step": 45700 + }, + { + "epoch": 40.49546560495465, + "grad_norm": 0.5059778690338135, + "learning_rate": 2.975906277630416e-05, + "loss": 0.6093035888671875, + "step": 45800 + }, + { + "epoch": 40.583941605839414, + "grad_norm": 0.5218088030815125, + "learning_rate": 2.971485411140584e-05, + "loss": 0.6098678970336914, + "step": 45900 + }, + { + "epoch": 40.672417606724174, + "grad_norm": 0.5111589431762695, + "learning_rate": 2.9670645446507516e-05, + "loss": 0.6144123458862305, + "step": 46000 + }, + { + "epoch": 40.760893607608935, + "grad_norm": 0.5875983238220215, + "learning_rate": 2.9626436781609196e-05, + "loss": 0.6149031448364258, + "step": 46100 + }, + { + "epoch": 40.849369608493696, + "grad_norm": 0.6077953577041626, + "learning_rate": 2.9582228116710873e-05, + "loss": 0.6200779724121094, + "step": 46200 + }, + { + "epoch": 40.937845609378456, + "grad_norm": 0.5511230230331421, + "learning_rate": 2.9538019451812554e-05, + "loss": 0.6175289916992187, + "step": 46300 + }, + { + "epoch": 41.02565804025658, + "grad_norm": 0.5434758067131042, + "learning_rate": 2.9493810786914238e-05, + "loss": 0.6117794418334961, + "step": 46400 + }, + { + "epoch": 41.11413404114134, + "grad_norm": 0.5463586449623108, + "learning_rate": 2.9449602122015918e-05, + "loss": 0.5865156936645508, + "step": 46500 + }, + { + "epoch": 41.2026100420261, + "grad_norm": 0.516645610332489, + "learning_rate": 2.94053934571176e-05, + "loss": 0.5934408950805664, + "step": 46600 + }, + { + "epoch": 41.29108604291086, + "grad_norm": 0.5041747093200684, + "learning_rate": 2.9361184792219276e-05, + "loss": 0.5907432556152343, + "step": 46700 + }, + { + "epoch": 41.37956204379562, + "grad_norm": 0.5490337014198303, + "learning_rate": 2.9316976127320956e-05, + "loss": 0.597823486328125, + "step": 46800 + }, + { + "epoch": 41.468038044680384, + "grad_norm": 0.5256726741790771, + "learning_rate": 2.9272767462422633e-05, + "loss": 0.5979599380493164, + "step": 46900 + }, + { + "epoch": 41.55651404556514, + "grad_norm": 0.49856510758399963, + "learning_rate": 2.9228558797524314e-05, + "loss": 0.6000013732910157, + "step": 47000 + }, + { + "epoch": 41.6449900464499, + "grad_norm": 0.540030837059021, + "learning_rate": 2.9184350132625998e-05, + "loss": 0.6044590759277344, + "step": 47100 + }, + { + "epoch": 41.73346604733466, + "grad_norm": 0.5599401593208313, + "learning_rate": 2.9140141467727678e-05, + "loss": 0.6050262451171875, + "step": 47200 + }, + { + "epoch": 41.82194204821942, + "grad_norm": 0.5251536965370178, + "learning_rate": 2.9095932802829355e-05, + "loss": 0.6084031677246093, + "step": 47300 + }, + { + "epoch": 41.91041804910418, + "grad_norm": 0.6002141237258911, + "learning_rate": 2.9051724137931036e-05, + "loss": 0.6051164627075195, + "step": 47400 + }, + { + "epoch": 41.99889404998894, + "grad_norm": 0.5603448748588562, + "learning_rate": 2.9007515473032716e-05, + "loss": 0.6085728073120117, + "step": 47500 + }, + { + "epoch": 42.086706480867065, + "grad_norm": 0.5491044521331787, + "learning_rate": 2.8963748894783376e-05, + "loss": 0.576365966796875, + "step": 47600 + }, + { + "epoch": 42.175182481751825, + "grad_norm": 0.5698864459991455, + "learning_rate": 2.8919540229885063e-05, + "loss": 0.5807184219360352, + "step": 47700 + }, + { + "epoch": 42.263658482636586, + "grad_norm": 0.574418306350708, + "learning_rate": 2.887533156498674e-05, + "loss": 0.5844138717651367, + "step": 47800 + }, + { + "epoch": 42.35213448352135, + "grad_norm": 0.5167635083198547, + "learning_rate": 2.883112290008842e-05, + "loss": 0.5845949935913086, + "step": 47900 + }, + { + "epoch": 42.44061048440611, + "grad_norm": 0.5338764786720276, + "learning_rate": 2.8786914235190098e-05, + "loss": 0.5889351272583008, + "step": 48000 + }, + { + "epoch": 42.52908648529087, + "grad_norm": 0.5340341329574585, + "learning_rate": 2.8742705570291778e-05, + "loss": 0.5909807205200195, + "step": 48100 + }, + { + "epoch": 42.61756248617562, + "grad_norm": 0.5493650436401367, + "learning_rate": 2.869849690539346e-05, + "loss": 0.5914651107788086, + "step": 48200 + }, + { + "epoch": 42.70603848706038, + "grad_norm": 0.6116383075714111, + "learning_rate": 2.8654288240495136e-05, + "loss": 0.592667350769043, + "step": 48300 + }, + { + "epoch": 42.79451448794514, + "grad_norm": 0.5631881356239319, + "learning_rate": 2.861007957559682e-05, + "loss": 0.5997231674194335, + "step": 48400 + }, + { + "epoch": 42.882990488829904, + "grad_norm": 0.5806667804718018, + "learning_rate": 2.85658709106985e-05, + "loss": 0.5957838439941406, + "step": 48500 + }, + { + "epoch": 42.971466489714665, + "grad_norm": 0.5075005888938904, + "learning_rate": 2.852166224580018e-05, + "loss": 0.5975283432006836, + "step": 48600 + }, + { + "epoch": 43.05927892059279, + "grad_norm": 0.5606797337532043, + "learning_rate": 2.8477453580901857e-05, + "loss": 0.5800529861450195, + "step": 48700 + }, + { + "epoch": 43.14775492147755, + "grad_norm": 0.5353171229362488, + "learning_rate": 2.8433244916003538e-05, + "loss": 0.5706613540649415, + "step": 48800 + }, + { + "epoch": 43.23623092236231, + "grad_norm": 0.5479321479797363, + "learning_rate": 2.8389036251105215e-05, + "loss": 0.5755366516113282, + "step": 48900 + }, + { + "epoch": 43.32470692324707, + "grad_norm": 0.5302407741546631, + "learning_rate": 2.8344827586206895e-05, + "loss": 0.5780391311645507, + "step": 49000 + }, + { + "epoch": 43.41318292413183, + "grad_norm": 0.5579783320426941, + "learning_rate": 2.830061892130858e-05, + "loss": 0.5774256896972656, + "step": 49100 + }, + { + "epoch": 43.50165892501659, + "grad_norm": 0.5295524597167969, + "learning_rate": 2.825641025641026e-05, + "loss": 0.5812548828125, + "step": 49200 + }, + { + "epoch": 43.59013492590135, + "grad_norm": 0.492058664560318, + "learning_rate": 2.821220159151194e-05, + "loss": 0.5796434783935547, + "step": 49300 + }, + { + "epoch": 43.67861092678611, + "grad_norm": 0.48961371183395386, + "learning_rate": 2.8167992926613617e-05, + "loss": 0.5851696014404297, + "step": 49400 + }, + { + "epoch": 43.76708692767087, + "grad_norm": 0.5714001059532166, + "learning_rate": 2.8123784261715298e-05, + "loss": 0.5890889358520508, + "step": 49500 + }, + { + "epoch": 43.85556292855563, + "grad_norm": 0.537390410900116, + "learning_rate": 2.8079575596816975e-05, + "loss": 0.5881150054931641, + "step": 49600 + }, + { + "epoch": 43.94403892944039, + "grad_norm": 0.5263146758079529, + "learning_rate": 2.8035366931918655e-05, + "loss": 0.5868202209472656, + "step": 49700 + }, + { + "epoch": 44.03185136031851, + "grad_norm": 0.5009394288063049, + "learning_rate": 2.7991600353669322e-05, + "loss": 0.578513412475586, + "step": 49800 + }, + { + "epoch": 44.12032736120327, + "grad_norm": 0.5233928561210632, + "learning_rate": 2.7947391688771002e-05, + "loss": 0.5612442016601562, + "step": 49900 + }, + { + "epoch": 44.208803362088034, + "grad_norm": 0.5212284922599792, + "learning_rate": 2.7903183023872683e-05, + "loss": 0.5634622955322266, + "step": 50000 + }, + { + "epoch": 44.297279362972795, + "grad_norm": 0.5920892357826233, + "learning_rate": 2.785897435897436e-05, + "loss": 0.5646255111694336, + "step": 50100 + }, + { + "epoch": 44.385755363857555, + "grad_norm": 0.5463851690292358, + "learning_rate": 2.781476569407604e-05, + "loss": 0.5711798477172851, + "step": 50200 + }, + { + "epoch": 44.474231364742316, + "grad_norm": 0.513917863368988, + "learning_rate": 2.7770557029177717e-05, + "loss": 0.5757728576660156, + "step": 50300 + }, + { + "epoch": 44.56270736562708, + "grad_norm": 0.5791277289390564, + "learning_rate": 2.7726348364279398e-05, + "loss": 0.5719475173950195, + "step": 50400 + }, + { + "epoch": 44.65118336651183, + "grad_norm": 0.5394783616065979, + "learning_rate": 2.768213969938108e-05, + "loss": 0.5751088714599609, + "step": 50500 + }, + { + "epoch": 44.73965936739659, + "grad_norm": 0.5699083805084229, + "learning_rate": 2.7637931034482762e-05, + "loss": 0.5771770095825195, + "step": 50600 + }, + { + "epoch": 44.82813536828135, + "grad_norm": 0.5610557794570923, + "learning_rate": 2.759372236958444e-05, + "loss": 0.5790963745117188, + "step": 50700 + }, + { + "epoch": 44.91661136916611, + "grad_norm": 0.5751321911811829, + "learning_rate": 2.754951370468612e-05, + "loss": 0.5781265258789062, + "step": 50800 + }, + { + "epoch": 45.004423800044236, + "grad_norm": 0.4831089377403259, + "learning_rate": 2.75053050397878e-05, + "loss": 0.5815114593505859, + "step": 50900 + }, + { + "epoch": 45.092899800929, + "grad_norm": 0.5138679146766663, + "learning_rate": 2.7461096374889477e-05, + "loss": 0.5530588912963867, + "step": 51000 + }, + { + "epoch": 45.18137580181376, + "grad_norm": 0.5327210426330566, + "learning_rate": 2.7416887709991158e-05, + "loss": 0.5549150085449219, + "step": 51100 + }, + { + "epoch": 45.26985180269852, + "grad_norm": 0.5089725255966187, + "learning_rate": 2.737267904509284e-05, + "loss": 0.5587585830688476, + "step": 51200 + }, + { + "epoch": 45.35832780358328, + "grad_norm": 0.5307016372680664, + "learning_rate": 2.7328470380194522e-05, + "loss": 0.5582825851440429, + "step": 51300 + }, + { + "epoch": 45.44680380446804, + "grad_norm": 0.6189883351325989, + "learning_rate": 2.72842617152962e-05, + "loss": 0.561285514831543, + "step": 51400 + }, + { + "epoch": 45.5352798053528, + "grad_norm": 0.5789527893066406, + "learning_rate": 2.724005305039788e-05, + "loss": 0.5647828674316406, + "step": 51500 + }, + { + "epoch": 45.62375580623756, + "grad_norm": 0.553713321685791, + "learning_rate": 2.719584438549956e-05, + "loss": 0.5659704208374023, + "step": 51600 + }, + { + "epoch": 45.712231807122315, + "grad_norm": 0.5502424240112305, + "learning_rate": 2.7151635720601237e-05, + "loss": 0.5685673522949218, + "step": 51700 + }, + { + "epoch": 45.800707808007076, + "grad_norm": 0.6388786435127258, + "learning_rate": 2.7107427055702917e-05, + "loss": 0.569713134765625, + "step": 51800 + }, + { + "epoch": 45.889183808891836, + "grad_norm": 0.5839136242866516, + "learning_rate": 2.70632183908046e-05, + "loss": 0.5713850784301758, + "step": 51900 + }, + { + "epoch": 45.9776598097766, + "grad_norm": 0.5872997641563416, + "learning_rate": 2.701900972590628e-05, + "loss": 0.5713462448120117, + "step": 52000 + }, + { + "epoch": 46.06547224065472, + "grad_norm": 0.5111995339393616, + "learning_rate": 2.697524314765694e-05, + "loss": 0.5514000701904297, + "step": 52100 + }, + { + "epoch": 46.15394824153948, + "grad_norm": 0.5677483677864075, + "learning_rate": 2.6931034482758622e-05, + "loss": 0.5458650207519531, + "step": 52200 + }, + { + "epoch": 46.24242424242424, + "grad_norm": 0.5756211876869202, + "learning_rate": 2.68868258178603e-05, + "loss": 0.5480696868896484, + "step": 52300 + }, + { + "epoch": 46.330900243309, + "grad_norm": 0.6053562164306641, + "learning_rate": 2.684261715296198e-05, + "loss": 0.5525957870483399, + "step": 52400 + }, + { + "epoch": 46.419376244193764, + "grad_norm": 0.5155165791511536, + "learning_rate": 2.6798408488063663e-05, + "loss": 0.5557857513427734, + "step": 52500 + }, + { + "epoch": 46.507852245078524, + "grad_norm": 0.5804229378700256, + "learning_rate": 2.6754199823165344e-05, + "loss": 0.5559201049804687, + "step": 52600 + }, + { + "epoch": 46.596328245963285, + "grad_norm": 0.5536544919013977, + "learning_rate": 2.6709991158267024e-05, + "loss": 0.5591853713989258, + "step": 52700 + }, + { + "epoch": 46.684804246848046, + "grad_norm": 0.603621244430542, + "learning_rate": 2.66657824933687e-05, + "loss": 0.5596856307983399, + "step": 52800 + }, + { + "epoch": 46.7732802477328, + "grad_norm": 0.5604232549667358, + "learning_rate": 2.662157382847038e-05, + "loss": 0.5584945678710938, + "step": 52900 + }, + { + "epoch": 46.86175624861756, + "grad_norm": 0.5974889993667603, + "learning_rate": 2.657736516357206e-05, + "loss": 0.5582848358154296, + "step": 53000 + }, + { + "epoch": 46.95023224950232, + "grad_norm": 0.5440397262573242, + "learning_rate": 2.653315649867374e-05, + "loss": 0.5634394454956054, + "step": 53100 + }, + { + "epoch": 47.038044680380445, + "grad_norm": 0.5610032081604004, + "learning_rate": 2.6488947833775423e-05, + "loss": 0.5574512481689453, + "step": 53200 + }, + { + "epoch": 47.126520681265205, + "grad_norm": 0.607563853263855, + "learning_rate": 2.6444739168877104e-05, + "loss": 0.5387821197509766, + "step": 53300 + }, + { + "epoch": 47.214996682149966, + "grad_norm": 0.5836204290390015, + "learning_rate": 2.640053050397878e-05, + "loss": 0.5401793670654297, + "step": 53400 + }, + { + "epoch": 47.30347268303473, + "grad_norm": 0.5325765013694763, + "learning_rate": 2.635632183908046e-05, + "loss": 0.5437668991088868, + "step": 53500 + }, + { + "epoch": 47.39194868391949, + "grad_norm": 0.5740872621536255, + "learning_rate": 2.631211317418214e-05, + "loss": 0.5443574142456055, + "step": 53600 + }, + { + "epoch": 47.48042468480425, + "grad_norm": 0.5562124848365784, + "learning_rate": 2.626790450928382e-05, + "loss": 0.5469727325439453, + "step": 53700 + }, + { + "epoch": 47.56890068568901, + "grad_norm": 0.5893000960350037, + "learning_rate": 2.62236958443855e-05, + "loss": 0.5502291107177735, + "step": 53800 + }, + { + "epoch": 47.65737668657377, + "grad_norm": 0.6538830995559692, + "learning_rate": 2.6179487179487183e-05, + "loss": 0.552915382385254, + "step": 53900 + }, + { + "epoch": 47.74585268745853, + "grad_norm": 0.5710316300392151, + "learning_rate": 2.6135278514588863e-05, + "loss": 0.5510491943359375, + "step": 54000 + }, + { + "epoch": 47.834328688343284, + "grad_norm": 0.5235297083854675, + "learning_rate": 2.609106984969054e-05, + "loss": 0.5519483184814453, + "step": 54100 + }, + { + "epoch": 47.922804689228045, + "grad_norm": 0.6048061847686768, + "learning_rate": 2.604686118479222e-05, + "loss": 0.5567644882202148, + "step": 54200 + }, + { + "epoch": 48.01061712010617, + "grad_norm": 0.5698108077049255, + "learning_rate": 2.6003094606542884e-05, + "loss": 0.5547234344482422, + "step": 54300 + }, + { + "epoch": 48.09909312099093, + "grad_norm": 0.49287617206573486, + "learning_rate": 2.595888594164456e-05, + "loss": 0.5280181884765625, + "step": 54400 + }, + { + "epoch": 48.18756912187569, + "grad_norm": 0.5525228977203369, + "learning_rate": 2.591467727674624e-05, + "loss": 0.5349401092529297, + "step": 54500 + }, + { + "epoch": 48.27604512276045, + "grad_norm": 0.5026161670684814, + "learning_rate": 2.5870468611847925e-05, + "loss": 0.5378446578979492, + "step": 54600 + }, + { + "epoch": 48.36452112364521, + "grad_norm": 0.5191828608512878, + "learning_rate": 2.5826259946949606e-05, + "loss": 0.5382429122924804, + "step": 54700 + }, + { + "epoch": 48.45299712452997, + "grad_norm": 0.5171953439712524, + "learning_rate": 2.5782051282051283e-05, + "loss": 0.5364204406738281, + "step": 54800 + }, + { + "epoch": 48.54147312541473, + "grad_norm": 0.5302397012710571, + "learning_rate": 2.5737842617152963e-05, + "loss": 0.5405542373657226, + "step": 54900 + }, + { + "epoch": 48.62994912629949, + "grad_norm": 0.5187925100326538, + "learning_rate": 2.569363395225464e-05, + "loss": 0.5436551284790039, + "step": 55000 + }, + { + "epoch": 48.718425127184254, + "grad_norm": 0.5707531571388245, + "learning_rate": 2.564942528735632e-05, + "loss": 0.5467363357543945, + "step": 55100 + }, + { + "epoch": 48.806901128069015, + "grad_norm": 0.5525254607200623, + "learning_rate": 2.5605216622458e-05, + "loss": 0.5466318130493164, + "step": 55200 + }, + { + "epoch": 48.89537712895377, + "grad_norm": 0.5896828174591064, + "learning_rate": 2.5561007957559685e-05, + "loss": 0.5489627075195312, + "step": 55300 + }, + { + "epoch": 48.98385312983853, + "grad_norm": 0.593329131603241, + "learning_rate": 2.5516799292661366e-05, + "loss": 0.5492449569702148, + "step": 55400 + }, + { + "epoch": 49.07166556071665, + "grad_norm": 0.45202845335006714, + "learning_rate": 2.5472590627763043e-05, + "loss": 0.5282985687255859, + "step": 55500 + }, + { + "epoch": 49.160141561601414, + "grad_norm": 0.45874515175819397, + "learning_rate": 2.5428381962864723e-05, + "loss": 0.5267356872558594, + "step": 55600 + }, + { + "epoch": 49.248617562486174, + "grad_norm": 0.5499678254127502, + "learning_rate": 2.53841732979664e-05, + "loss": 0.5255993270874023, + "step": 55700 + }, + { + "epoch": 49.337093563370935, + "grad_norm": 0.5569108724594116, + "learning_rate": 2.533996463306808e-05, + "loss": 0.5299503707885742, + "step": 55800 + }, + { + "epoch": 49.425569564255696, + "grad_norm": 0.5677438974380493, + "learning_rate": 2.529575596816976e-05, + "loss": 0.5316028594970703, + "step": 55900 + }, + { + "epoch": 49.51404556514046, + "grad_norm": 0.5888075828552246, + "learning_rate": 2.5251547303271445e-05, + "loss": 0.5354986953735351, + "step": 56000 + }, + { + "epoch": 49.60252156602522, + "grad_norm": 0.5639616250991821, + "learning_rate": 2.5207338638373122e-05, + "loss": 0.5369997787475586, + "step": 56100 + }, + { + "epoch": 49.69099756690998, + "grad_norm": 0.509158194065094, + "learning_rate": 2.5163129973474803e-05, + "loss": 0.536979866027832, + "step": 56200 + }, + { + "epoch": 49.77947356779474, + "grad_norm": 0.5412595868110657, + "learning_rate": 2.5118921308576483e-05, + "loss": 0.5382201004028321, + "step": 56300 + }, + { + "epoch": 49.86794956867949, + "grad_norm": 0.6052098274230957, + "learning_rate": 2.507471264367816e-05, + "loss": 0.5390504837036133, + "step": 56400 + }, + { + "epoch": 49.95642556956425, + "grad_norm": 0.5019105076789856, + "learning_rate": 2.503050397877984e-05, + "loss": 0.5391928482055665, + "step": 56500 + }, + { + "epoch": 50.04423800044238, + "grad_norm": 0.5133684873580933, + "learning_rate": 2.4986737400530504e-05, + "loss": 0.529360580444336, + "step": 56600 + }, + { + "epoch": 50.13271400132714, + "grad_norm": 0.5742220878601074, + "learning_rate": 2.4942528735632184e-05, + "loss": 0.5150651550292968, + "step": 56700 + }, + { + "epoch": 50.2211900022119, + "grad_norm": 0.5389617681503296, + "learning_rate": 2.4898320070733865e-05, + "loss": 0.5204330444335937, + "step": 56800 + }, + { + "epoch": 50.30966600309666, + "grad_norm": 0.5938611030578613, + "learning_rate": 2.4854111405835545e-05, + "loss": 0.5252494049072266, + "step": 56900 + }, + { + "epoch": 50.39814200398142, + "grad_norm": 0.5617892146110535, + "learning_rate": 2.4809902740937225e-05, + "loss": 0.5260490036010742, + "step": 57000 + }, + { + "epoch": 50.48661800486618, + "grad_norm": 0.6076000332832336, + "learning_rate": 2.4765694076038906e-05, + "loss": 0.5278256607055664, + "step": 57100 + }, + { + "epoch": 50.57509400575094, + "grad_norm": 0.5321983695030212, + "learning_rate": 2.4721485411140586e-05, + "loss": 0.5286510467529297, + "step": 57200 + }, + { + "epoch": 50.6635700066357, + "grad_norm": 0.614532470703125, + "learning_rate": 2.4677276746242263e-05, + "loss": 0.5313225936889648, + "step": 57300 + }, + { + "epoch": 50.75204600752046, + "grad_norm": 0.5830910801887512, + "learning_rate": 2.4633068081343944e-05, + "loss": 0.5300481796264649, + "step": 57400 + }, + { + "epoch": 50.84052200840522, + "grad_norm": 0.5918353199958801, + "learning_rate": 2.4588859416445624e-05, + "loss": 0.5337774276733398, + "step": 57500 + }, + { + "epoch": 50.92899800928998, + "grad_norm": 0.5791705846786499, + "learning_rate": 2.4544650751547305e-05, + "loss": 0.5316382598876953, + "step": 57600 + }, + { + "epoch": 51.01681044016811, + "grad_norm": 0.521299421787262, + "learning_rate": 2.4500442086648985e-05, + "loss": 0.5307102203369141, + "step": 57700 + }, + { + "epoch": 51.10528644105286, + "grad_norm": 0.5163324475288391, + "learning_rate": 2.4456233421750666e-05, + "loss": 0.5103409576416016, + "step": 57800 + }, + { + "epoch": 51.19376244193762, + "grad_norm": 0.5436499714851379, + "learning_rate": 2.4412024756852346e-05, + "loss": 0.5144682693481445, + "step": 57900 + }, + { + "epoch": 51.28223844282238, + "grad_norm": 0.5268517136573792, + "learning_rate": 2.4367816091954023e-05, + "loss": 0.5170879364013672, + "step": 58000 + }, + { + "epoch": 51.37071444370714, + "grad_norm": 0.5523056983947754, + "learning_rate": 2.4323607427055704e-05, + "loss": 0.5176148223876953, + "step": 58100 + }, + { + "epoch": 51.459190444591904, + "grad_norm": 0.5733488202095032, + "learning_rate": 2.4279398762157384e-05, + "loss": 0.5213256454467774, + "step": 58200 + }, + { + "epoch": 51.547666445476665, + "grad_norm": 0.6002511978149414, + "learning_rate": 2.4235190097259065e-05, + "loss": 0.5213332748413086, + "step": 58300 + }, + { + "epoch": 51.636142446361426, + "grad_norm": 0.5866407155990601, + "learning_rate": 2.4190981432360742e-05, + "loss": 0.5219316101074218, + "step": 58400 + }, + { + "epoch": 51.724618447246186, + "grad_norm": 0.620346188545227, + "learning_rate": 2.4146772767462426e-05, + "loss": 0.5251021575927735, + "step": 58500 + }, + { + "epoch": 51.81309444813095, + "grad_norm": 0.5428482294082642, + "learning_rate": 2.4102564102564103e-05, + "loss": 0.5254843521118164, + "step": 58600 + }, + { + "epoch": 51.90157044901571, + "grad_norm": 0.6146367192268372, + "learning_rate": 2.4058355437665783e-05, + "loss": 0.5262796401977539, + "step": 58700 + }, + { + "epoch": 51.99004644990046, + "grad_norm": 0.6002848148345947, + "learning_rate": 2.4014146772767464e-05, + "loss": 0.5279874801635742, + "step": 58800 + }, + { + "epoch": 52.07785888077859, + "grad_norm": 0.5608682036399841, + "learning_rate": 2.3970380194518127e-05, + "loss": 0.5045627975463867, + "step": 58900 + }, + { + "epoch": 52.166334881663346, + "grad_norm": 0.5034646391868591, + "learning_rate": 2.3926171529619807e-05, + "loss": 0.5071027755737305, + "step": 59000 + }, + { + "epoch": 52.25481088254811, + "grad_norm": 0.5443050861358643, + "learning_rate": 2.3881962864721484e-05, + "loss": 0.5105178451538086, + "step": 59100 + }, + { + "epoch": 52.34328688343287, + "grad_norm": 0.5455040335655212, + "learning_rate": 2.3837754199823168e-05, + "loss": 0.5111968612670899, + "step": 59200 + }, + { + "epoch": 52.43176288431763, + "grad_norm": 0.5393562912940979, + "learning_rate": 2.3793545534924845e-05, + "loss": 0.5109628295898437, + "step": 59300 + }, + { + "epoch": 52.52023888520239, + "grad_norm": 0.5572716593742371, + "learning_rate": 2.3749336870026526e-05, + "loss": 0.5128989791870118, + "step": 59400 + }, + { + "epoch": 52.60871488608715, + "grad_norm": 0.5157389640808105, + "learning_rate": 2.3705128205128206e-05, + "loss": 0.5179262924194336, + "step": 59500 + }, + { + "epoch": 52.69719088697191, + "grad_norm": 0.5245424509048462, + "learning_rate": 2.3660919540229886e-05, + "loss": 0.5182614517211914, + "step": 59600 + }, + { + "epoch": 52.78566688785667, + "grad_norm": 0.6405171155929565, + "learning_rate": 2.3616710875331567e-05, + "loss": 0.5196902084350586, + "step": 59700 + }, + { + "epoch": 52.87414288874143, + "grad_norm": 0.5531449317932129, + "learning_rate": 2.3572502210433244e-05, + "loss": 0.5213772583007813, + "step": 59800 + }, + { + "epoch": 52.96261888962619, + "grad_norm": 0.5440499186515808, + "learning_rate": 2.3528293545534928e-05, + "loss": 0.5214180755615234, + "step": 59900 + }, + { + "epoch": 53.050431320504316, + "grad_norm": 0.5454942584037781, + "learning_rate": 2.3484084880636605e-05, + "loss": 0.5082747268676758, + "step": 60000 + }, + { + "epoch": 53.13890732138907, + "grad_norm": 0.6037677526473999, + "learning_rate": 2.3439876215738285e-05, + "loss": 0.4992447662353516, + "step": 60100 + }, + { + "epoch": 53.22738332227383, + "grad_norm": 0.6089978218078613, + "learning_rate": 2.3395667550839966e-05, + "loss": 0.501078987121582, + "step": 60200 + }, + { + "epoch": 53.31585932315859, + "grad_norm": 0.5581852793693542, + "learning_rate": 2.3351458885941646e-05, + "loss": 0.50614990234375, + "step": 60300 + }, + { + "epoch": 53.40433532404335, + "grad_norm": 0.5539824366569519, + "learning_rate": 2.3307250221043327e-05, + "loss": 0.5036640548706055, + "step": 60400 + }, + { + "epoch": 53.49281132492811, + "grad_norm": 0.5434619784355164, + "learning_rate": 2.3263041556145004e-05, + "loss": 0.5078977966308593, + "step": 60500 + }, + { + "epoch": 53.58128732581287, + "grad_norm": 0.5596204400062561, + "learning_rate": 2.3218832891246688e-05, + "loss": 0.5105896377563477, + "step": 60600 + }, + { + "epoch": 53.669763326697634, + "grad_norm": 0.5933516621589661, + "learning_rate": 2.3174624226348365e-05, + "loss": 0.512298583984375, + "step": 60700 + }, + { + "epoch": 53.758239327582395, + "grad_norm": 0.5938782095909119, + "learning_rate": 2.3130415561450045e-05, + "loss": 0.5136246871948242, + "step": 60800 + }, + { + "epoch": 53.846715328467155, + "grad_norm": 0.5711195468902588, + "learning_rate": 2.3086206896551726e-05, + "loss": 0.5137527465820313, + "step": 60900 + }, + { + "epoch": 53.935191329351916, + "grad_norm": 0.5345974564552307, + "learning_rate": 2.3041998231653406e-05, + "loss": 0.5148337173461914, + "step": 61000 + }, + { + "epoch": 54.02300376023004, + "grad_norm": 0.5462290644645691, + "learning_rate": 2.299823165340407e-05, + "loss": 0.5070685577392579, + "step": 61100 + }, + { + "epoch": 54.1114797611148, + "grad_norm": 0.5135403275489807, + "learning_rate": 2.295402298850575e-05, + "loss": 0.49042961120605466, + "step": 61200 + }, + { + "epoch": 54.199955761999554, + "grad_norm": 0.5753411650657654, + "learning_rate": 2.290981432360743e-05, + "loss": 0.49762104034423826, + "step": 61300 + }, + { + "epoch": 54.288431762884315, + "grad_norm": 0.5738378167152405, + "learning_rate": 2.2865605658709107e-05, + "loss": 0.4983011245727539, + "step": 61400 + }, + { + "epoch": 54.376907763769076, + "grad_norm": 0.5234966278076172, + "learning_rate": 2.2821396993810788e-05, + "loss": 0.5005590057373047, + "step": 61500 + }, + { + "epoch": 54.465383764653836, + "grad_norm": 0.5313852429389954, + "learning_rate": 2.2777188328912468e-05, + "loss": 0.503372917175293, + "step": 61600 + }, + { + "epoch": 54.5538597655386, + "grad_norm": 0.49838191270828247, + "learning_rate": 2.273297966401415e-05, + "loss": 0.5020324325561524, + "step": 61700 + }, + { + "epoch": 54.64233576642336, + "grad_norm": 0.5403088927268982, + "learning_rate": 2.2688770999115826e-05, + "loss": 0.5049329376220704, + "step": 61800 + }, + { + "epoch": 54.73081176730812, + "grad_norm": 0.46723249554634094, + "learning_rate": 2.264456233421751e-05, + "loss": 0.5059401321411133, + "step": 61900 + }, + { + "epoch": 54.81928776819288, + "grad_norm": 0.5539482235908508, + "learning_rate": 2.2600353669319187e-05, + "loss": 0.5069823837280274, + "step": 62000 + }, + { + "epoch": 54.90776376907764, + "grad_norm": 0.5377270579338074, + "learning_rate": 2.2556145004420867e-05, + "loss": 0.508377685546875, + "step": 62100 + }, + { + "epoch": 54.9962397699624, + "grad_norm": 0.6182072162628174, + "learning_rate": 2.2511936339522548e-05, + "loss": 0.5095947647094726, + "step": 62200 + }, + { + "epoch": 55.084052200840524, + "grad_norm": 0.5139372944831848, + "learning_rate": 2.2467727674624228e-05, + "loss": 0.4896272277832031, + "step": 62300 + }, + { + "epoch": 55.172528201725285, + "grad_norm": 0.5812121629714966, + "learning_rate": 2.242351900972591e-05, + "loss": 0.49099037170410154, + "step": 62400 + }, + { + "epoch": 55.26100420261004, + "grad_norm": 0.5491729378700256, + "learning_rate": 2.2379310344827586e-05, + "loss": 0.4927267074584961, + "step": 62500 + }, + { + "epoch": 55.3494802034948, + "grad_norm": 0.5951135158538818, + "learning_rate": 2.233510167992927e-05, + "loss": 0.49305023193359376, + "step": 62600 + }, + { + "epoch": 55.43795620437956, + "grad_norm": 0.5938172340393066, + "learning_rate": 2.2290893015030946e-05, + "loss": 0.49482032775878904, + "step": 62700 + }, + { + "epoch": 55.52643220526432, + "grad_norm": 0.5288723111152649, + "learning_rate": 2.2246684350132627e-05, + "loss": 0.4974822998046875, + "step": 62800 + }, + { + "epoch": 55.61490820614908, + "grad_norm": 0.5663400888442993, + "learning_rate": 2.2202475685234307e-05, + "loss": 0.498828239440918, + "step": 62900 + }, + { + "epoch": 55.70338420703384, + "grad_norm": 0.5939375162124634, + "learning_rate": 2.2158267020335988e-05, + "loss": 0.5004440307617187, + "step": 63000 + }, + { + "epoch": 55.7918602079186, + "grad_norm": 0.628774106502533, + "learning_rate": 2.2114058355437668e-05, + "loss": 0.5034025573730468, + "step": 63100 + }, + { + "epoch": 55.880336208803364, + "grad_norm": 0.6160352826118469, + "learning_rate": 2.2069849690539345e-05, + "loss": 0.5042695236206055, + "step": 63200 + }, + { + "epoch": 55.968812209688124, + "grad_norm": 0.5891813635826111, + "learning_rate": 2.202564102564103e-05, + "loss": 0.5021416473388672, + "step": 63300 + }, + { + "epoch": 56.05662464056625, + "grad_norm": 0.5297622680664062, + "learning_rate": 2.198187444739169e-05, + "loss": 0.4904953384399414, + "step": 63400 + }, + { + "epoch": 56.14510064145101, + "grad_norm": 0.5649422407150269, + "learning_rate": 2.193766578249337e-05, + "loss": 0.485706672668457, + "step": 63500 + }, + { + "epoch": 56.23357664233577, + "grad_norm": 0.6352797150611877, + "learning_rate": 2.189345711759505e-05, + "loss": 0.4867672348022461, + "step": 63600 + }, + { + "epoch": 56.32205264322052, + "grad_norm": 0.5789678692817688, + "learning_rate": 2.184924845269673e-05, + "loss": 0.48802379608154295, + "step": 63700 + }, + { + "epoch": 56.410528644105284, + "grad_norm": 0.6075431704521179, + "learning_rate": 2.180503978779841e-05, + "loss": 0.4910835647583008, + "step": 63800 + }, + { + "epoch": 56.499004644990045, + "grad_norm": 0.5858777165412903, + "learning_rate": 2.1760831122900088e-05, + "loss": 0.4906935119628906, + "step": 63900 + }, + { + "epoch": 56.587480645874805, + "grad_norm": 0.5143148899078369, + "learning_rate": 2.171662245800177e-05, + "loss": 0.49202545166015627, + "step": 64000 + }, + { + "epoch": 56.675956646759566, + "grad_norm": 0.5330872535705566, + "learning_rate": 2.167241379310345e-05, + "loss": 0.4929664611816406, + "step": 64100 + }, + { + "epoch": 56.76443264764433, + "grad_norm": 0.5530017018318176, + "learning_rate": 2.162820512820513e-05, + "loss": 0.49355899810791015, + "step": 64200 + }, + { + "epoch": 56.85290864852909, + "grad_norm": 0.5891992449760437, + "learning_rate": 2.158399646330681e-05, + "loss": 0.49566749572753904, + "step": 64300 + }, + { + "epoch": 56.94138464941385, + "grad_norm": 0.5289095044136047, + "learning_rate": 2.153978779840849e-05, + "loss": 0.4987163543701172, + "step": 64400 + }, + { + "epoch": 57.02919708029197, + "grad_norm": 0.5679471492767334, + "learning_rate": 2.1495579133510167e-05, + "loss": 0.49003833770751953, + "step": 64500 + }, + { + "epoch": 57.11767308117673, + "grad_norm": 0.5432245135307312, + "learning_rate": 2.1451370468611848e-05, + "loss": 0.47765895843505857, + "step": 64600 + }, + { + "epoch": 57.20614908206149, + "grad_norm": 0.5474491119384766, + "learning_rate": 2.1407161803713528e-05, + "loss": 0.4797785568237305, + "step": 64700 + }, + { + "epoch": 57.294625082946254, + "grad_norm": 0.537804126739502, + "learning_rate": 2.136295313881521e-05, + "loss": 0.4833247756958008, + "step": 64800 + }, + { + "epoch": 57.38310108383101, + "grad_norm": 0.572169840335846, + "learning_rate": 2.131874447391689e-05, + "loss": 0.4836674118041992, + "step": 64900 + }, + { + "epoch": 57.47157708471577, + "grad_norm": 0.5344268679618835, + "learning_rate": 2.127453580901857e-05, + "loss": 0.48507492065429686, + "step": 65000 + }, + { + "epoch": 57.56005308560053, + "grad_norm": 0.5664619207382202, + "learning_rate": 2.123032714412025e-05, + "loss": 0.488138427734375, + "step": 65100 + }, + { + "epoch": 57.64852908648529, + "grad_norm": 0.5902144312858582, + "learning_rate": 2.1186118479221927e-05, + "loss": 0.48771110534667966, + "step": 65200 + }, + { + "epoch": 57.73700508737005, + "grad_norm": 0.562929630279541, + "learning_rate": 2.1141909814323607e-05, + "loss": 0.4875301742553711, + "step": 65300 + }, + { + "epoch": 57.82548108825481, + "grad_norm": 0.5995573997497559, + "learning_rate": 2.1097701149425288e-05, + "loss": 0.49271678924560547, + "step": 65400 + }, + { + "epoch": 57.91395708913957, + "grad_norm": 0.6624785661697388, + "learning_rate": 2.105349248452697e-05, + "loss": 0.4920695877075195, + "step": 65500 + }, + { + "epoch": 58.001769520017696, + "grad_norm": 0.5402753353118896, + "learning_rate": 2.100928381962865e-05, + "loss": 0.49431739807128905, + "step": 65600 + }, + { + "epoch": 58.09024552090246, + "grad_norm": 0.5145826935768127, + "learning_rate": 2.096507515473033e-05, + "loss": 0.47089763641357424, + "step": 65700 + }, + { + "epoch": 58.17872152178722, + "grad_norm": 0.5931445360183716, + "learning_rate": 2.092086648983201e-05, + "loss": 0.4758612060546875, + "step": 65800 + }, + { + "epoch": 58.26719752267198, + "grad_norm": 0.5388639569282532, + "learning_rate": 2.0876657824933687e-05, + "loss": 0.47640296936035154, + "step": 65900 + }, + { + "epoch": 58.35567352355674, + "grad_norm": 0.5639314651489258, + "learning_rate": 2.0832449160035367e-05, + "loss": 0.482130241394043, + "step": 66000 + }, + { + "epoch": 58.44414952444149, + "grad_norm": 0.5535529851913452, + "learning_rate": 2.0788240495137048e-05, + "loss": 0.47872936248779296, + "step": 66100 + }, + { + "epoch": 58.53262552532625, + "grad_norm": 0.5827674865722656, + "learning_rate": 2.0744031830238728e-05, + "loss": 0.4842064666748047, + "step": 66200 + }, + { + "epoch": 58.621101526211014, + "grad_norm": 0.5696784257888794, + "learning_rate": 2.0699823165340405e-05, + "loss": 0.4816234588623047, + "step": 66300 + }, + { + "epoch": 58.709577527095774, + "grad_norm": 0.5349422097206116, + "learning_rate": 2.065561450044209e-05, + "loss": 0.48554718017578125, + "step": 66400 + }, + { + "epoch": 58.798053527980535, + "grad_norm": 0.636604368686676, + "learning_rate": 2.0611405835543766e-05, + "loss": 0.4876006317138672, + "step": 66500 + }, + { + "epoch": 58.886529528865296, + "grad_norm": 0.6060304045677185, + "learning_rate": 2.0567197170645447e-05, + "loss": 0.4887725830078125, + "step": 66600 + }, + { + "epoch": 58.97500552975006, + "grad_norm": 0.6087244749069214, + "learning_rate": 2.0522988505747127e-05, + "loss": 0.4868877410888672, + "step": 66700 + }, + { + "epoch": 59.06281796062818, + "grad_norm": 0.49913933873176575, + "learning_rate": 2.047922192749779e-05, + "loss": 0.4722119140625, + "step": 66800 + }, + { + "epoch": 59.15129396151294, + "grad_norm": 0.4722621738910675, + "learning_rate": 2.043501326259947e-05, + "loss": 0.47009246826171874, + "step": 66900 + }, + { + "epoch": 59.2397699623977, + "grad_norm": 0.5657719373703003, + "learning_rate": 2.0390804597701148e-05, + "loss": 0.472298583984375, + "step": 67000 + }, + { + "epoch": 59.32824596328246, + "grad_norm": 0.5761541724205017, + "learning_rate": 2.034659593280283e-05, + "loss": 0.4723761749267578, + "step": 67100 + }, + { + "epoch": 59.416721964167216, + "grad_norm": 0.6316192150115967, + "learning_rate": 2.030238726790451e-05, + "loss": 0.47409954071044924, + "step": 67200 + }, + { + "epoch": 59.50519796505198, + "grad_norm": 0.6090986132621765, + "learning_rate": 2.025817860300619e-05, + "loss": 0.4764304351806641, + "step": 67300 + }, + { + "epoch": 59.59367396593674, + "grad_norm": 0.5362303256988525, + "learning_rate": 2.021396993810787e-05, + "loss": 0.4776358795166016, + "step": 67400 + }, + { + "epoch": 59.6821499668215, + "grad_norm": 0.553995668888092, + "learning_rate": 2.016976127320955e-05, + "loss": 0.4807791519165039, + "step": 67500 + }, + { + "epoch": 59.77062596770626, + "grad_norm": 0.5615981221199036, + "learning_rate": 2.012555260831123e-05, + "loss": 0.48062610626220703, + "step": 67600 + }, + { + "epoch": 59.85910196859102, + "grad_norm": 0.5885509252548218, + "learning_rate": 2.0081343943412908e-05, + "loss": 0.48244945526123045, + "step": 67700 + }, + { + "epoch": 59.94757796947578, + "grad_norm": 0.6052979230880737, + "learning_rate": 2.003713527851459e-05, + "loss": 0.4803206634521484, + "step": 67800 + }, + { + "epoch": 60.035390400353904, + "grad_norm": 0.5579769015312195, + "learning_rate": 1.999292661361627e-05, + "loss": 0.4752388000488281, + "step": 67900 + }, + { + "epoch": 60.123866401238665, + "grad_norm": 0.478289395570755, + "learning_rate": 1.994871794871795e-05, + "loss": 0.4645302200317383, + "step": 68000 + }, + { + "epoch": 60.212342402123426, + "grad_norm": 0.5545957088470459, + "learning_rate": 1.990450928381963e-05, + "loss": 0.46837158203125, + "step": 68100 + }, + { + "epoch": 60.300818403008186, + "grad_norm": 0.524662435054779, + "learning_rate": 1.986030061892131e-05, + "loss": 0.4679202651977539, + "step": 68200 + }, + { + "epoch": 60.38929440389295, + "grad_norm": 0.6101793646812439, + "learning_rate": 1.981609195402299e-05, + "loss": 0.46956668853759764, + "step": 68300 + }, + { + "epoch": 60.4777704047777, + "grad_norm": 0.5040204524993896, + "learning_rate": 1.9771883289124667e-05, + "loss": 0.4706681060791016, + "step": 68400 + }, + { + "epoch": 60.56624640566246, + "grad_norm": 0.563679039478302, + "learning_rate": 1.972767462422635e-05, + "loss": 0.471558837890625, + "step": 68500 + }, + { + "epoch": 60.65472240654722, + "grad_norm": 0.5668439865112305, + "learning_rate": 1.9683465959328028e-05, + "loss": 0.4727770233154297, + "step": 68600 + }, + { + "epoch": 60.74319840743198, + "grad_norm": 0.6011987328529358, + "learning_rate": 1.963925729442971e-05, + "loss": 0.47645427703857424, + "step": 68700 + }, + { + "epoch": 60.83167440831674, + "grad_norm": 0.6392132043838501, + "learning_rate": 1.959504862953139e-05, + "loss": 0.4765947341918945, + "step": 68800 + }, + { + "epoch": 60.920150409201504, + "grad_norm": 0.6424957513809204, + "learning_rate": 1.955083996463307e-05, + "loss": 0.4768808746337891, + "step": 68900 + }, + { + "epoch": 61.00796284007963, + "grad_norm": 0.5341200828552246, + "learning_rate": 1.9507073386383733e-05, + "loss": 0.4776120376586914, + "step": 69000 + }, + { + "epoch": 61.09643884096439, + "grad_norm": 0.622922956943512, + "learning_rate": 1.9462864721485413e-05, + "loss": 0.46137203216552736, + "step": 69100 + }, + { + "epoch": 61.18491484184915, + "grad_norm": 0.5679436326026917, + "learning_rate": 1.9418656056587094e-05, + "loss": 0.46096920013427733, + "step": 69200 + }, + { + "epoch": 61.27339084273391, + "grad_norm": 0.5972808003425598, + "learning_rate": 1.937444739168877e-05, + "loss": 0.46090087890625, + "step": 69300 + }, + { + "epoch": 61.36186684361867, + "grad_norm": 0.5825915336608887, + "learning_rate": 1.933023872679045e-05, + "loss": 0.46518352508544925, + "step": 69400 + }, + { + "epoch": 61.45034284450343, + "grad_norm": 0.48754116892814636, + "learning_rate": 1.9286030061892132e-05, + "loss": 0.4664886856079102, + "step": 69500 + }, + { + "epoch": 61.538818845388185, + "grad_norm": 0.5583191514015198, + "learning_rate": 1.9241821396993812e-05, + "loss": 0.46886295318603516, + "step": 69600 + }, + { + "epoch": 61.627294846272946, + "grad_norm": 0.5658340454101562, + "learning_rate": 1.919761273209549e-05, + "loss": 0.4696169662475586, + "step": 69700 + }, + { + "epoch": 61.71577084715771, + "grad_norm": 0.5801714658737183, + "learning_rate": 1.9153404067197173e-05, + "loss": 0.47141036987304685, + "step": 69800 + }, + { + "epoch": 61.80424684804247, + "grad_norm": 0.5643869042396545, + "learning_rate": 1.910919540229885e-05, + "loss": 0.4727308654785156, + "step": 69900 + }, + { + "epoch": 61.89272284892723, + "grad_norm": 0.5937660336494446, + "learning_rate": 1.906498673740053e-05, + "loss": 0.4726886367797852, + "step": 70000 + }, + { + "epoch": 61.98119884981199, + "grad_norm": 0.5228411555290222, + "learning_rate": 1.902077807250221e-05, + "loss": 0.47457176208496094, + "step": 70100 + }, + { + "epoch": 62.06901128069011, + "grad_norm": 0.5100186467170715, + "learning_rate": 1.897656940760389e-05, + "loss": 0.4604149627685547, + "step": 70200 + }, + { + "epoch": 62.15748728157487, + "grad_norm": 0.5119529962539673, + "learning_rate": 1.8932360742705572e-05, + "loss": 0.4561204147338867, + "step": 70300 + }, + { + "epoch": 62.245963282459634, + "grad_norm": 0.5130912065505981, + "learning_rate": 1.888815207780725e-05, + "loss": 0.4596226501464844, + "step": 70400 + }, + { + "epoch": 62.334439283344395, + "grad_norm": 0.5388224720954895, + "learning_rate": 1.8843943412908933e-05, + "loss": 0.4617993927001953, + "step": 70500 + }, + { + "epoch": 62.422915284229155, + "grad_norm": 0.5555194020271301, + "learning_rate": 1.879973474801061e-05, + "loss": 0.46267467498779297, + "step": 70600 + }, + { + "epoch": 62.511391285113916, + "grad_norm": 0.5136281847953796, + "learning_rate": 1.875552608311229e-05, + "loss": 0.4628156280517578, + "step": 70700 + }, + { + "epoch": 62.59986728599867, + "grad_norm": 0.5039867162704468, + "learning_rate": 1.871131741821397e-05, + "loss": 0.4678297805786133, + "step": 70800 + }, + { + "epoch": 62.68834328688343, + "grad_norm": 0.566985547542572, + "learning_rate": 1.866710875331565e-05, + "loss": 0.46522830963134765, + "step": 70900 + }, + { + "epoch": 62.77681928776819, + "grad_norm": 0.5855474472045898, + "learning_rate": 1.8622900088417332e-05, + "loss": 0.46788333892822265, + "step": 71000 + }, + { + "epoch": 62.86529528865295, + "grad_norm": 0.5838083624839783, + "learning_rate": 1.857869142351901e-05, + "loss": 0.4687856292724609, + "step": 71100 + }, + { + "epoch": 62.95377128953771, + "grad_norm": 0.6574355363845825, + "learning_rate": 1.8534482758620693e-05, + "loss": 0.46836143493652344, + "step": 71200 + }, + { + "epoch": 63.04158372041584, + "grad_norm": 0.5751773118972778, + "learning_rate": 1.849027409372237e-05, + "loss": 0.4590755844116211, + "step": 71300 + }, + { + "epoch": 63.1300597213006, + "grad_norm": 0.5056807398796082, + "learning_rate": 1.844606542882405e-05, + "loss": 0.45313865661621094, + "step": 71400 + }, + { + "epoch": 63.21853572218536, + "grad_norm": 0.5403828024864197, + "learning_rate": 1.840185676392573e-05, + "loss": 0.4552134323120117, + "step": 71500 + }, + { + "epoch": 63.30701172307012, + "grad_norm": 0.48244568705558777, + "learning_rate": 1.835764809902741e-05, + "loss": 0.45661014556884766, + "step": 71600 + }, + { + "epoch": 63.39548772395488, + "grad_norm": 0.5753127932548523, + "learning_rate": 1.831343943412909e-05, + "loss": 0.4578168487548828, + "step": 71700 + }, + { + "epoch": 63.48396372483964, + "grad_norm": 0.5782042741775513, + "learning_rate": 1.826923076923077e-05, + "loss": 0.4589107131958008, + "step": 71800 + }, + { + "epoch": 63.5724397257244, + "grad_norm": 0.5895569920539856, + "learning_rate": 1.8225022104332453e-05, + "loss": 0.46304950714111326, + "step": 71900 + }, + { + "epoch": 63.660915726609154, + "grad_norm": 0.6601688265800476, + "learning_rate": 1.818081343943413e-05, + "loss": 0.45953712463378904, + "step": 72000 + }, + { + "epoch": 63.749391727493915, + "grad_norm": 0.5695818066596985, + "learning_rate": 1.813660477453581e-05, + "loss": 0.46058246612548825, + "step": 72100 + }, + { + "epoch": 63.837867728378676, + "grad_norm": 0.5006322264671326, + "learning_rate": 1.809239610963749e-05, + "loss": 0.4630731964111328, + "step": 72200 + }, + { + "epoch": 63.926343729263436, + "grad_norm": 0.5871863961219788, + "learning_rate": 1.804818744473917e-05, + "loss": 0.46295913696289065, + "step": 72300 + }, + { + "epoch": 64.01415616014157, + "grad_norm": 0.5417830348014832, + "learning_rate": 1.8003978779840848e-05, + "loss": 0.4623433303833008, + "step": 72400 + }, + { + "epoch": 64.10263216102632, + "grad_norm": 0.5019242763519287, + "learning_rate": 1.795977011494253e-05, + "loss": 0.44698051452636717, + "step": 72500 + }, + { + "epoch": 64.19110816191107, + "grad_norm": 0.5637330412864685, + "learning_rate": 1.791556145004421e-05, + "loss": 0.4492236328125, + "step": 72600 + }, + { + "epoch": 64.27958416279584, + "grad_norm": 0.5333090424537659, + "learning_rate": 1.787135278514589e-05, + "loss": 0.45192584991455076, + "step": 72700 + }, + { + "epoch": 64.3680601636806, + "grad_norm": 0.5232571363449097, + "learning_rate": 1.782714412024757e-05, + "loss": 0.45244823455810546, + "step": 72800 + }, + { + "epoch": 64.45653616456536, + "grad_norm": 0.4935717284679413, + "learning_rate": 1.778293545534925e-05, + "loss": 0.4529353332519531, + "step": 72900 + }, + { + "epoch": 64.54501216545012, + "grad_norm": 0.5450688600540161, + "learning_rate": 1.7739168877099913e-05, + "loss": 0.4567538833618164, + "step": 73000 + }, + { + "epoch": 64.63348816633489, + "grad_norm": 0.47621846199035645, + "learning_rate": 1.769496021220159e-05, + "loss": 0.4563169097900391, + "step": 73100 + }, + { + "epoch": 64.72196416721964, + "grad_norm": 0.5023945569992065, + "learning_rate": 1.7650751547303274e-05, + "loss": 0.46204959869384765, + "step": 73200 + }, + { + "epoch": 64.8104401681044, + "grad_norm": 0.49148306250572205, + "learning_rate": 1.760654288240495e-05, + "loss": 0.45924064636230466, + "step": 73300 + }, + { + "epoch": 64.89891616898916, + "grad_norm": 0.6161800026893616, + "learning_rate": 1.7562334217506632e-05, + "loss": 0.45994918823242187, + "step": 73400 + }, + { + "epoch": 64.98739216987393, + "grad_norm": 0.5307760238647461, + "learning_rate": 1.7518125552608312e-05, + "loss": 0.461478271484375, + "step": 73500 + }, + { + "epoch": 65.07520460075204, + "grad_norm": 0.588062584400177, + "learning_rate": 1.7474358974358976e-05, + "loss": 0.4461378479003906, + "step": 73600 + }, + { + "epoch": 65.16368060163681, + "grad_norm": 0.5329079627990723, + "learning_rate": 1.7430150309460656e-05, + "loss": 0.4440943145751953, + "step": 73700 + }, + { + "epoch": 65.25215660252157, + "grad_norm": 0.6149891018867493, + "learning_rate": 1.7385941644562333e-05, + "loss": 0.44721881866455077, + "step": 73800 + }, + { + "epoch": 65.34063260340632, + "grad_norm": 0.5438173413276672, + "learning_rate": 1.7341732979664017e-05, + "loss": 0.44954757690429686, + "step": 73900 + }, + { + "epoch": 65.42910860429109, + "grad_norm": 0.5428133606910706, + "learning_rate": 1.7297524314765694e-05, + "loss": 0.45107986450195314, + "step": 74000 + }, + { + "epoch": 65.51758460517584, + "grad_norm": 0.5134186744689941, + "learning_rate": 1.7253315649867374e-05, + "loss": 0.45244071960449217, + "step": 74100 + }, + { + "epoch": 65.60606060606061, + "grad_norm": 0.6233081817626953, + "learning_rate": 1.7209106984969055e-05, + "loss": 0.45329185485839846, + "step": 74200 + }, + { + "epoch": 65.69453660694536, + "grad_norm": 0.5700708627700806, + "learning_rate": 1.7164898320070735e-05, + "loss": 0.4539757537841797, + "step": 74300 + }, + { + "epoch": 65.78301260783013, + "grad_norm": 0.5631476640701294, + "learning_rate": 1.7120689655172416e-05, + "loss": 0.4555579376220703, + "step": 74400 + }, + { + "epoch": 65.87148860871488, + "grad_norm": 0.5964381694793701, + "learning_rate": 1.7076480990274093e-05, + "loss": 0.45496936798095705, + "step": 74500 + }, + { + "epoch": 65.95996460959965, + "grad_norm": 0.5872741341590881, + "learning_rate": 1.7032272325375777e-05, + "loss": 0.45641098022460935, + "step": 74600 + }, + { + "epoch": 66.04777704047777, + "grad_norm": 0.522363543510437, + "learning_rate": 1.6988063660477454e-05, + "loss": 0.4488802337646484, + "step": 74700 + }, + { + "epoch": 66.13625304136254, + "grad_norm": 0.5161113739013672, + "learning_rate": 1.6943854995579134e-05, + "loss": 0.44122817993164065, + "step": 74800 + }, + { + "epoch": 66.22472904224729, + "grad_norm": 0.5127883553504944, + "learning_rate": 1.6899646330680815e-05, + "loss": 0.4447059631347656, + "step": 74900 + }, + { + "epoch": 66.31320504313204, + "grad_norm": 0.5202219486236572, + "learning_rate": 1.6855437665782495e-05, + "loss": 0.4453567123413086, + "step": 75000 + }, + { + "epoch": 66.40168104401681, + "grad_norm": 0.4957808256149292, + "learning_rate": 1.6811229000884172e-05, + "loss": 0.44502986907958986, + "step": 75100 + }, + { + "epoch": 66.49015704490157, + "grad_norm": 0.622518002986908, + "learning_rate": 1.6767020335985853e-05, + "loss": 0.44539188385009765, + "step": 75200 + }, + { + "epoch": 66.57863304578633, + "grad_norm": 0.5333230495452881, + "learning_rate": 1.6722811671087537e-05, + "loss": 0.4479424667358398, + "step": 75300 + }, + { + "epoch": 66.66710904667109, + "grad_norm": 0.536641001701355, + "learning_rate": 1.6678603006189214e-05, + "loss": 0.4486875534057617, + "step": 75400 + }, + { + "epoch": 66.75558504755585, + "grad_norm": 0.6140312552452087, + "learning_rate": 1.6634394341290894e-05, + "loss": 0.45118595123291017, + "step": 75500 + }, + { + "epoch": 66.84406104844061, + "grad_norm": 0.5268392562866211, + "learning_rate": 1.6590185676392574e-05, + "loss": 0.4503518676757812, + "step": 75600 + }, + { + "epoch": 66.93253704932538, + "grad_norm": 0.6316497325897217, + "learning_rate": 1.6545977011494255e-05, + "loss": 0.45311626434326174, + "step": 75700 + }, + { + "epoch": 67.02034948020349, + "grad_norm": 0.4964323937892914, + "learning_rate": 1.6502210433244915e-05, + "loss": 0.44798419952392576, + "step": 75800 + }, + { + "epoch": 67.10882548108826, + "grad_norm": 0.5668012499809265, + "learning_rate": 1.6458001768346595e-05, + "loss": 0.43682758331298827, + "step": 75900 + }, + { + "epoch": 67.19730148197301, + "grad_norm": 0.5451331734657288, + "learning_rate": 1.6413793103448276e-05, + "loss": 0.43744281768798826, + "step": 76000 + }, + { + "epoch": 67.28577748285778, + "grad_norm": 0.5625444650650024, + "learning_rate": 1.6369584438549956e-05, + "loss": 0.44072349548339845, + "step": 76100 + }, + { + "epoch": 67.37425348374254, + "grad_norm": 0.5437332391738892, + "learning_rate": 1.6325375773651637e-05, + "loss": 0.4433360290527344, + "step": 76200 + }, + { + "epoch": 67.46272948462729, + "grad_norm": 0.6005889773368835, + "learning_rate": 1.6281167108753317e-05, + "loss": 0.44355270385742185, + "step": 76300 + }, + { + "epoch": 67.55120548551206, + "grad_norm": 0.6379736065864563, + "learning_rate": 1.6236958443854997e-05, + "loss": 0.4445816421508789, + "step": 76400 + }, + { + "epoch": 67.63968148639681, + "grad_norm": 0.4892788529396057, + "learning_rate": 1.6192749778956675e-05, + "loss": 0.4460066604614258, + "step": 76500 + }, + { + "epoch": 67.72815748728158, + "grad_norm": 0.5238019227981567, + "learning_rate": 1.614854111405836e-05, + "loss": 0.44812583923339844, + "step": 76600 + }, + { + "epoch": 67.81663348816633, + "grad_norm": 0.6448091864585876, + "learning_rate": 1.6104332449160035e-05, + "loss": 0.44679683685302735, + "step": 76700 + }, + { + "epoch": 67.9051094890511, + "grad_norm": 0.501971423625946, + "learning_rate": 1.6060123784261716e-05, + "loss": 0.44675071716308595, + "step": 76800 + }, + { + "epoch": 67.99358548993585, + "grad_norm": 0.5027251243591309, + "learning_rate": 1.6015915119363396e-05, + "loss": 0.450067138671875, + "step": 76900 + }, + { + "epoch": 68.08139792081398, + "grad_norm": 0.5118396878242493, + "learning_rate": 1.5971706454465077e-05, + "loss": 0.4363971710205078, + "step": 77000 + }, + { + "epoch": 68.16987392169874, + "grad_norm": 0.49976325035095215, + "learning_rate": 1.5927497789566757e-05, + "loss": 0.43459579467773435, + "step": 77100 + }, + { + "epoch": 68.2583499225835, + "grad_norm": 0.4591541886329651, + "learning_rate": 1.5883289124668434e-05, + "loss": 0.4374491500854492, + "step": 77200 + }, + { + "epoch": 68.34682592346826, + "grad_norm": 0.5061107277870178, + "learning_rate": 1.5839080459770118e-05, + "loss": 0.4367493438720703, + "step": 77300 + }, + { + "epoch": 68.43530192435301, + "grad_norm": 0.5607414245605469, + "learning_rate": 1.5794871794871795e-05, + "loss": 0.43953250885009765, + "step": 77400 + }, + { + "epoch": 68.52377792523778, + "grad_norm": 0.5758550763130188, + "learning_rate": 1.5750663129973476e-05, + "loss": 0.4412353515625, + "step": 77500 + }, + { + "epoch": 68.61225392612253, + "grad_norm": 0.6092869639396667, + "learning_rate": 1.5706454465075153e-05, + "loss": 0.44133682250976564, + "step": 77600 + }, + { + "epoch": 68.7007299270073, + "grad_norm": 0.6203352808952332, + "learning_rate": 1.5662245800176837e-05, + "loss": 0.4439066696166992, + "step": 77700 + }, + { + "epoch": 68.78920592789206, + "grad_norm": 0.5746839046478271, + "learning_rate": 1.5618037135278517e-05, + "loss": 0.4423197174072266, + "step": 77800 + }, + { + "epoch": 68.87768192877682, + "grad_norm": 0.5136276483535767, + "learning_rate": 1.5573828470380194e-05, + "loss": 0.4460869598388672, + "step": 77900 + }, + { + "epoch": 68.96615792966158, + "grad_norm": 0.4968768358230591, + "learning_rate": 1.5529619805481878e-05, + "loss": 0.4462531280517578, + "step": 78000 + }, + { + "epoch": 69.05397036053971, + "grad_norm": 0.5103012919425964, + "learning_rate": 1.5485411140583555e-05, + "loss": 0.43465484619140626, + "step": 78100 + }, + { + "epoch": 69.14244636142446, + "grad_norm": 0.5626784563064575, + "learning_rate": 1.5441202475685236e-05, + "loss": 0.4333412551879883, + "step": 78200 + }, + { + "epoch": 69.23092236230923, + "grad_norm": 0.5118581652641296, + "learning_rate": 1.5396993810786913e-05, + "loss": 0.4336922836303711, + "step": 78300 + }, + { + "epoch": 69.31939836319398, + "grad_norm": 0.5944911241531372, + "learning_rate": 1.5352785145888596e-05, + "loss": 0.43566287994384767, + "step": 78400 + }, + { + "epoch": 69.40787436407874, + "grad_norm": 0.5433744788169861, + "learning_rate": 1.5308576480990273e-05, + "loss": 0.4361726379394531, + "step": 78500 + }, + { + "epoch": 69.4963503649635, + "grad_norm": 0.614020049571991, + "learning_rate": 1.5264367816091954e-05, + "loss": 0.4380105209350586, + "step": 78600 + }, + { + "epoch": 69.58482636584826, + "grad_norm": 0.5004254579544067, + "learning_rate": 1.5220159151193636e-05, + "loss": 0.4391395950317383, + "step": 78700 + }, + { + "epoch": 69.67330236673303, + "grad_norm": 0.522055983543396, + "learning_rate": 1.5175950486295315e-05, + "loss": 0.4396755599975586, + "step": 78800 + }, + { + "epoch": 69.76177836761778, + "grad_norm": 0.524988055229187, + "learning_rate": 1.5131741821396994e-05, + "loss": 0.4374229431152344, + "step": 78900 + }, + { + "epoch": 69.85025436850255, + "grad_norm": 0.5780676603317261, + "learning_rate": 1.5087533156498674e-05, + "loss": 0.4402974319458008, + "step": 79000 + }, + { + "epoch": 69.9387303693873, + "grad_norm": 0.5651708841323853, + "learning_rate": 1.5043324491600355e-05, + "loss": 0.44202667236328125, + "step": 79100 + }, + { + "epoch": 70.02654280026543, + "grad_norm": 0.48370227217674255, + "learning_rate": 1.4999557913351018e-05, + "loss": 0.4367184829711914, + "step": 79200 + }, + { + "epoch": 70.11501880115019, + "grad_norm": 0.5551156401634216, + "learning_rate": 1.4955349248452696e-05, + "loss": 0.42862590789794924, + "step": 79300 + }, + { + "epoch": 70.20349480203495, + "grad_norm": 0.5126725435256958, + "learning_rate": 1.4911140583554379e-05, + "loss": 0.4319373321533203, + "step": 79400 + }, + { + "epoch": 70.2919708029197, + "grad_norm": 0.5189195871353149, + "learning_rate": 1.4866931918656057e-05, + "loss": 0.4309040832519531, + "step": 79500 + }, + { + "epoch": 70.38044680380447, + "grad_norm": 0.49422213435173035, + "learning_rate": 1.4822723253757736e-05, + "loss": 0.43275665283203124, + "step": 79600 + }, + { + "epoch": 70.46892280468923, + "grad_norm": 0.49081242084503174, + "learning_rate": 1.4778514588859418e-05, + "loss": 0.4326107406616211, + "step": 79700 + }, + { + "epoch": 70.55739880557398, + "grad_norm": 0.5408063530921936, + "learning_rate": 1.4734305923961097e-05, + "loss": 0.4341436004638672, + "step": 79800 + }, + { + "epoch": 70.64587480645875, + "grad_norm": 0.4664778411388397, + "learning_rate": 1.4690097259062778e-05, + "loss": 0.4358782577514648, + "step": 79900 + }, + { + "epoch": 70.7343508073435, + "grad_norm": 0.5463866591453552, + "learning_rate": 1.4645888594164456e-05, + "loss": 0.4348703384399414, + "step": 80000 + }, + { + "epoch": 70.82282680822827, + "grad_norm": 0.5187687873840332, + "learning_rate": 1.4601679929266138e-05, + "loss": 0.43734962463378907, + "step": 80100 + }, + { + "epoch": 70.91130280911302, + "grad_norm": 0.4700576961040497, + "learning_rate": 1.4557471264367817e-05, + "loss": 0.43692012786865236, + "step": 80200 + }, + { + "epoch": 70.99977880999779, + "grad_norm": 0.5413524508476257, + "learning_rate": 1.4513262599469496e-05, + "loss": 0.43848495483398436, + "step": 80300 + }, + { + "epoch": 71.08759124087591, + "grad_norm": 0.5619797110557556, + "learning_rate": 1.4469053934571178e-05, + "loss": 0.4241709899902344, + "step": 80400 + }, + { + "epoch": 71.17606724176068, + "grad_norm": 0.5617126226425171, + "learning_rate": 1.4424845269672857e-05, + "loss": 0.42585777282714843, + "step": 80500 + }, + { + "epoch": 71.26454324264543, + "grad_norm": 0.6131432056427002, + "learning_rate": 1.4380636604774536e-05, + "loss": 0.42857707977294923, + "step": 80600 + }, + { + "epoch": 71.3530192435302, + "grad_norm": 0.5178084969520569, + "learning_rate": 1.4336427939876216e-05, + "loss": 0.4283063507080078, + "step": 80700 + }, + { + "epoch": 71.44149524441495, + "grad_norm": 0.4994112253189087, + "learning_rate": 1.4292219274977897e-05, + "loss": 0.43106334686279296, + "step": 80800 + }, + { + "epoch": 71.5299712452997, + "grad_norm": 0.5411744713783264, + "learning_rate": 1.4248010610079577e-05, + "loss": 0.43190105438232423, + "step": 80900 + }, + { + "epoch": 71.61844724618447, + "grad_norm": 0.5602013468742371, + "learning_rate": 1.4203801945181256e-05, + "loss": 0.4335565185546875, + "step": 81000 + }, + { + "epoch": 71.70692324706923, + "grad_norm": 0.5469107031822205, + "learning_rate": 1.4159593280282938e-05, + "loss": 0.4339017105102539, + "step": 81100 + }, + { + "epoch": 71.795399247954, + "grad_norm": 0.5971689224243164, + "learning_rate": 1.4115384615384617e-05, + "loss": 0.43302181243896487, + "step": 81200 + }, + { + "epoch": 71.88387524883875, + "grad_norm": 0.5518947243690491, + "learning_rate": 1.4071175950486295e-05, + "loss": 0.4339981460571289, + "step": 81300 + }, + { + "epoch": 71.97235124972352, + "grad_norm": 0.46094366908073425, + "learning_rate": 1.4026967285587974e-05, + "loss": 0.4368946075439453, + "step": 81400 + }, + { + "epoch": 72.06016368060163, + "grad_norm": 0.5013940334320068, + "learning_rate": 1.3983200707338639e-05, + "loss": 0.4272830581665039, + "step": 81500 + }, + { + "epoch": 72.1486396814864, + "grad_norm": 0.5779539346694946, + "learning_rate": 1.3938992042440318e-05, + "loss": 0.4237482452392578, + "step": 81600 + }, + { + "epoch": 72.23711568237115, + "grad_norm": 0.5799530744552612, + "learning_rate": 1.3894783377541998e-05, + "loss": 0.4221677398681641, + "step": 81700 + }, + { + "epoch": 72.32559168325592, + "grad_norm": 0.4773975908756256, + "learning_rate": 1.385057471264368e-05, + "loss": 0.4251049041748047, + "step": 81800 + }, + { + "epoch": 72.41406768414068, + "grad_norm": 0.5311180353164673, + "learning_rate": 1.380636604774536e-05, + "loss": 0.42632369995117186, + "step": 81900 + }, + { + "epoch": 72.50254368502544, + "grad_norm": 0.47812601923942566, + "learning_rate": 1.3762157382847038e-05, + "loss": 0.42722888946533205, + "step": 82000 + }, + { + "epoch": 72.5910196859102, + "grad_norm": 0.606674313545227, + "learning_rate": 1.371794871794872e-05, + "loss": 0.4295787811279297, + "step": 82100 + }, + { + "epoch": 72.67949568679495, + "grad_norm": 0.5414536595344543, + "learning_rate": 1.3673740053050399e-05, + "loss": 0.4311911392211914, + "step": 82200 + }, + { + "epoch": 72.76797168767972, + "grad_norm": 0.5214236974716187, + "learning_rate": 1.3629531388152078e-05, + "loss": 0.4323184585571289, + "step": 82300 + }, + { + "epoch": 72.85644768856447, + "grad_norm": 0.531461238861084, + "learning_rate": 1.3585322723253756e-05, + "loss": 0.43523616790771485, + "step": 82400 + }, + { + "epoch": 72.94492368944924, + "grad_norm": 0.550273597240448, + "learning_rate": 1.3541114058355439e-05, + "loss": 0.4310142517089844, + "step": 82500 + }, + { + "epoch": 73.03273612032736, + "grad_norm": 0.47776085138320923, + "learning_rate": 1.3496905393457119e-05, + "loss": 0.4287875747680664, + "step": 82600 + }, + { + "epoch": 73.12121212121212, + "grad_norm": 0.4990812838077545, + "learning_rate": 1.3452696728558798e-05, + "loss": 0.42051288604736325, + "step": 82700 + }, + { + "epoch": 73.20968812209688, + "grad_norm": 0.5124841332435608, + "learning_rate": 1.340848806366048e-05, + "loss": 0.4193102264404297, + "step": 82800 + }, + { + "epoch": 73.29816412298165, + "grad_norm": 0.5289502739906311, + "learning_rate": 1.3364279398762159e-05, + "loss": 0.42208141326904297, + "step": 82900 + }, + { + "epoch": 73.3866401238664, + "grad_norm": 0.4958449602127075, + "learning_rate": 1.3320070733863837e-05, + "loss": 0.42313686370849607, + "step": 83000 + }, + { + "epoch": 73.47511612475117, + "grad_norm": 0.5278774499893188, + "learning_rate": 1.3275862068965516e-05, + "loss": 0.42546688079833983, + "step": 83100 + }, + { + "epoch": 73.56359212563592, + "grad_norm": 0.5365238785743713, + "learning_rate": 1.3231653404067198e-05, + "loss": 0.42514255523681643, + "step": 83200 + }, + { + "epoch": 73.65206812652067, + "grad_norm": 0.5327147841453552, + "learning_rate": 1.3187444739168877e-05, + "loss": 0.42642066955566404, + "step": 83300 + }, + { + "epoch": 73.74054412740544, + "grad_norm": 0.5245737433433533, + "learning_rate": 1.3143236074270558e-05, + "loss": 0.4263890838623047, + "step": 83400 + }, + { + "epoch": 73.8290201282902, + "grad_norm": 0.5159674286842346, + "learning_rate": 1.3099027409372238e-05, + "loss": 0.428508415222168, + "step": 83500 + }, + { + "epoch": 73.91749612917496, + "grad_norm": 0.47965142130851746, + "learning_rate": 1.3054818744473918e-05, + "loss": 0.42886260986328123, + "step": 83600 + }, + { + "epoch": 74.00530856005308, + "grad_norm": 0.573679506778717, + "learning_rate": 1.301105216622458e-05, + "loss": 0.4288605499267578, + "step": 83700 + }, + { + "epoch": 74.09378456093785, + "grad_norm": 0.5544322729110718, + "learning_rate": 1.2966843501326262e-05, + "loss": 0.4174742126464844, + "step": 83800 + }, + { + "epoch": 74.1822605618226, + "grad_norm": 0.4993799030780792, + "learning_rate": 1.2922634836427941e-05, + "loss": 0.4191867828369141, + "step": 83900 + }, + { + "epoch": 74.27073656270737, + "grad_norm": 0.57634037733078, + "learning_rate": 1.287842617152962e-05, + "loss": 0.42080997467041015, + "step": 84000 + }, + { + "epoch": 74.35921256359212, + "grad_norm": 0.5524028539657593, + "learning_rate": 1.2834217506631298e-05, + "loss": 0.41995132446289063, + "step": 84100 + }, + { + "epoch": 74.44768856447689, + "grad_norm": 0.5109556913375854, + "learning_rate": 1.279000884173298e-05, + "loss": 0.4207102584838867, + "step": 84200 + }, + { + "epoch": 74.53616456536164, + "grad_norm": 0.6384374499320984, + "learning_rate": 1.2745800176834661e-05, + "loss": 0.42162609100341797, + "step": 84300 + }, + { + "epoch": 74.6246405662464, + "grad_norm": 0.5029319524765015, + "learning_rate": 1.270159151193634e-05, + "loss": 0.4232307815551758, + "step": 84400 + }, + { + "epoch": 74.71311656713117, + "grad_norm": 0.49697303771972656, + "learning_rate": 1.2657382847038022e-05, + "loss": 0.4233212661743164, + "step": 84500 + }, + { + "epoch": 74.80159256801592, + "grad_norm": 0.5748586058616638, + "learning_rate": 1.26131741821397e-05, + "loss": 0.42522281646728516, + "step": 84600 + }, + { + "epoch": 74.89006856890069, + "grad_norm": 0.5335224866867065, + "learning_rate": 1.256896551724138e-05, + "loss": 0.4264080047607422, + "step": 84700 + }, + { + "epoch": 74.97854456978544, + "grad_norm": 0.5223293900489807, + "learning_rate": 1.2524756852343058e-05, + "loss": 0.4248130416870117, + "step": 84800 + }, + { + "epoch": 75.06635700066357, + "grad_norm": 0.588205099105835, + "learning_rate": 1.2480548187444739e-05, + "loss": 0.41714618682861326, + "step": 84900 + }, + { + "epoch": 75.15483300154833, + "grad_norm": 0.4878210127353668, + "learning_rate": 1.2436339522546419e-05, + "loss": 0.41694087982177735, + "step": 85000 + }, + { + "epoch": 75.2433090024331, + "grad_norm": 0.5826809406280518, + "learning_rate": 1.23921308576481e-05, + "loss": 0.41839481353759767, + "step": 85100 + }, + { + "epoch": 75.33178500331785, + "grad_norm": 0.5703395009040833, + "learning_rate": 1.234792219274978e-05, + "loss": 0.419650993347168, + "step": 85200 + }, + { + "epoch": 75.42026100420262, + "grad_norm": 0.5960374474525452, + "learning_rate": 1.230371352785146e-05, + "loss": 0.41910491943359374, + "step": 85300 + }, + { + "epoch": 75.50873700508737, + "grad_norm": 0.5564795732498169, + "learning_rate": 1.225950486295314e-05, + "loss": 0.42010501861572264, + "step": 85400 + }, + { + "epoch": 75.59721300597214, + "grad_norm": 0.5871827006340027, + "learning_rate": 1.221529619805482e-05, + "loss": 0.41939094543457034, + "step": 85500 + }, + { + "epoch": 75.68568900685689, + "grad_norm": 0.6139041185379028, + "learning_rate": 1.2171087533156498e-05, + "loss": 0.42172611236572266, + "step": 85600 + }, + { + "epoch": 75.77416500774164, + "grad_norm": 0.5693202614784241, + "learning_rate": 1.2126878868258179e-05, + "loss": 0.4217537307739258, + "step": 85700 + }, + { + "epoch": 75.86264100862641, + "grad_norm": 0.5371018648147583, + "learning_rate": 1.208267020335986e-05, + "loss": 0.4220458984375, + "step": 85800 + }, + { + "epoch": 75.95111700951117, + "grad_norm": 0.5617541074752808, + "learning_rate": 1.2038461538461538e-05, + "loss": 0.4248412322998047, + "step": 85900 + }, + { + "epoch": 76.0389294403893, + "grad_norm": 0.5177831649780273, + "learning_rate": 1.1994694960212203e-05, + "loss": 0.41939964294433596, + "step": 86000 + }, + { + "epoch": 76.12740544127405, + "grad_norm": 0.5142802000045776, + "learning_rate": 1.1950486295313883e-05, + "loss": 0.4111063003540039, + "step": 86100 + }, + { + "epoch": 76.21588144215882, + "grad_norm": 0.4861648976802826, + "learning_rate": 1.1906277630415562e-05, + "loss": 0.4148457717895508, + "step": 86200 + }, + { + "epoch": 76.30435744304357, + "grad_norm": 0.5097411870956421, + "learning_rate": 1.1862068965517243e-05, + "loss": 0.4158660125732422, + "step": 86300 + }, + { + "epoch": 76.39283344392834, + "grad_norm": 0.4740864336490631, + "learning_rate": 1.1817860300618921e-05, + "loss": 0.4178118133544922, + "step": 86400 + }, + { + "epoch": 76.48130944481309, + "grad_norm": 0.44249430298805237, + "learning_rate": 1.1773651635720602e-05, + "loss": 0.4165281677246094, + "step": 86500 + }, + { + "epoch": 76.56978544569786, + "grad_norm": 0.5490387082099915, + "learning_rate": 1.172944297082228e-05, + "loss": 0.4198506927490234, + "step": 86600 + }, + { + "epoch": 76.65826144658261, + "grad_norm": 0.5175479650497437, + "learning_rate": 1.1685234305923961e-05, + "loss": 0.4220100402832031, + "step": 86700 + }, + { + "epoch": 76.74673744746737, + "grad_norm": 0.5073688626289368, + "learning_rate": 1.1641025641025642e-05, + "loss": 0.4184294891357422, + "step": 86800 + }, + { + "epoch": 76.83521344835214, + "grad_norm": 0.6137869358062744, + "learning_rate": 1.1596816976127322e-05, + "loss": 0.41919185638427736, + "step": 86900 + }, + { + "epoch": 76.92368944923689, + "grad_norm": 0.5274661183357239, + "learning_rate": 1.1552608311229002e-05, + "loss": 0.4193117141723633, + "step": 87000 + }, + { + "epoch": 77.01150188011502, + "grad_norm": 0.578369677066803, + "learning_rate": 1.1508399646330681e-05, + "loss": 0.4192862701416016, + "step": 87100 + }, + { + "epoch": 77.09997788099977, + "grad_norm": 0.6028936505317688, + "learning_rate": 1.1464190981432362e-05, + "loss": 0.40931896209716795, + "step": 87200 + }, + { + "epoch": 77.18845388188454, + "grad_norm": 0.4915790557861328, + "learning_rate": 1.141998231653404e-05, + "loss": 0.41025619506835936, + "step": 87300 + }, + { + "epoch": 77.2769298827693, + "grad_norm": 0.5164591073989868, + "learning_rate": 1.1375773651635721e-05, + "loss": 0.4112412643432617, + "step": 87400 + }, + { + "epoch": 77.36540588365406, + "grad_norm": 0.48311275243759155, + "learning_rate": 1.1331564986737401e-05, + "loss": 0.4144105911254883, + "step": 87500 + }, + { + "epoch": 77.45388188453882, + "grad_norm": 0.46419015526771545, + "learning_rate": 1.128735632183908e-05, + "loss": 0.41563541412353516, + "step": 87600 + }, + { + "epoch": 77.54235788542358, + "grad_norm": 0.6288944482803345, + "learning_rate": 1.124314765694076e-05, + "loss": 0.41669620513916017, + "step": 87700 + }, + { + "epoch": 77.63083388630834, + "grad_norm": 0.497126966714859, + "learning_rate": 1.1198938992042441e-05, + "loss": 0.41618637084960936, + "step": 87800 + }, + { + "epoch": 77.7193098871931, + "grad_norm": 0.5373407602310181, + "learning_rate": 1.1154730327144122e-05, + "loss": 0.41614810943603514, + "step": 87900 + }, + { + "epoch": 77.80778588807786, + "grad_norm": 0.519382894039154, + "learning_rate": 1.1110521662245802e-05, + "loss": 0.41859901428222657, + "step": 88000 + }, + { + "epoch": 77.89626188896261, + "grad_norm": 0.5001983046531677, + "learning_rate": 1.106631299734748e-05, + "loss": 0.418219108581543, + "step": 88100 + }, + { + "epoch": 77.98473788984738, + "grad_norm": 0.5034019947052002, + "learning_rate": 1.1022104332449161e-05, + "loss": 0.4178015899658203, + "step": 88200 + }, + { + "epoch": 78.0725503207255, + "grad_norm": 0.5158605575561523, + "learning_rate": 1.097789566755084e-05, + "loss": 0.4091143035888672, + "step": 88300 + }, + { + "epoch": 78.16102632161027, + "grad_norm": 0.48502761125564575, + "learning_rate": 1.093368700265252e-05, + "loss": 0.40843994140625, + "step": 88400 + }, + { + "epoch": 78.24950232249502, + "grad_norm": 0.5448765754699707, + "learning_rate": 1.08894783377542e-05, + "loss": 0.4109685516357422, + "step": 88500 + }, + { + "epoch": 78.33797832337979, + "grad_norm": 0.52455735206604, + "learning_rate": 1.084526967285588e-05, + "loss": 0.4108180236816406, + "step": 88600 + }, + { + "epoch": 78.42645432426454, + "grad_norm": 0.49440670013427734, + "learning_rate": 1.080106100795756e-05, + "loss": 0.41148426055908205, + "step": 88700 + }, + { + "epoch": 78.51493032514931, + "grad_norm": 0.5575434565544128, + "learning_rate": 1.075685234305924e-05, + "loss": 0.4121563720703125, + "step": 88800 + }, + { + "epoch": 78.60340632603406, + "grad_norm": 0.5276569724082947, + "learning_rate": 1.0712643678160921e-05, + "loss": 0.41357189178466797, + "step": 88900 + }, + { + "epoch": 78.69188232691883, + "grad_norm": 0.5279592871665955, + "learning_rate": 1.06684350132626e-05, + "loss": 0.4147018814086914, + "step": 89000 + }, + { + "epoch": 78.78035832780358, + "grad_norm": 0.4984647333621979, + "learning_rate": 1.062422634836428e-05, + "loss": 0.41413829803466795, + "step": 89100 + }, + { + "epoch": 78.86883432868834, + "grad_norm": 0.5556148886680603, + "learning_rate": 1.0580017683465959e-05, + "loss": 0.4168708419799805, + "step": 89200 + }, + { + "epoch": 78.9573103295731, + "grad_norm": 0.46219438314437866, + "learning_rate": 1.053580901856764e-05, + "loss": 0.41841983795166016, + "step": 89300 + }, + { + "epoch": 79.04512276045122, + "grad_norm": 0.49136674404144287, + "learning_rate": 1.0492042440318303e-05, + "loss": 0.41013729095458984, + "step": 89400 + }, + { + "epoch": 79.13359876133599, + "grad_norm": 0.5096011161804199, + "learning_rate": 1.0447833775419983e-05, + "loss": 0.4057589340209961, + "step": 89500 + }, + { + "epoch": 79.22207476222074, + "grad_norm": 0.4563368558883667, + "learning_rate": 1.0403625110521663e-05, + "loss": 0.4064152526855469, + "step": 89600 + }, + { + "epoch": 79.31055076310551, + "grad_norm": 0.5743097066879272, + "learning_rate": 1.0359416445623344e-05, + "loss": 0.40998432159423825, + "step": 89700 + }, + { + "epoch": 79.39902676399026, + "grad_norm": 0.46749743819236755, + "learning_rate": 1.0315207780725023e-05, + "loss": 0.40825595855712893, + "step": 89800 + }, + { + "epoch": 79.48750276487503, + "grad_norm": 0.522980272769928, + "learning_rate": 1.0270999115826703e-05, + "loss": 0.4116529083251953, + "step": 89900 + }, + { + "epoch": 79.57597876575979, + "grad_norm": 0.4576069712638855, + "learning_rate": 1.0226790450928382e-05, + "loss": 0.41039798736572264, + "step": 90000 + }, + { + "epoch": 79.66445476664455, + "grad_norm": 0.574553370475769, + "learning_rate": 1.0182581786030062e-05, + "loss": 0.4103997802734375, + "step": 90100 + }, + { + "epoch": 79.7529307675293, + "grad_norm": 0.5592597126960754, + "learning_rate": 1.0138373121131741e-05, + "loss": 0.4123684310913086, + "step": 90200 + }, + { + "epoch": 79.84140676841407, + "grad_norm": 0.5754570364952087, + "learning_rate": 1.0094164456233422e-05, + "loss": 0.4138601684570313, + "step": 90300 + }, + { + "epoch": 79.92988276929883, + "grad_norm": 0.5830336213111877, + "learning_rate": 1.0049955791335102e-05, + "loss": 0.41378173828125, + "step": 90400 + }, + { + "epoch": 80.01769520017695, + "grad_norm": 0.473369836807251, + "learning_rate": 1.0005747126436783e-05, + "loss": 0.41222110748291013, + "step": 90500 + }, + { + "epoch": 80.10617120106171, + "grad_norm": 0.5327860116958618, + "learning_rate": 9.961538461538463e-06, + "loss": 0.4058869934082031, + "step": 90600 + }, + { + "epoch": 80.19464720194647, + "grad_norm": 0.5304612517356873, + "learning_rate": 9.917329796640142e-06, + "loss": 0.4061882781982422, + "step": 90700 + }, + { + "epoch": 80.28312320283123, + "grad_norm": 0.5240916013717651, + "learning_rate": 9.873121131741822e-06, + "loss": 0.40706119537353513, + "step": 90800 + }, + { + "epoch": 80.37159920371599, + "grad_norm": 0.4663858413696289, + "learning_rate": 9.828912466843501e-06, + "loss": 0.4077639389038086, + "step": 90900 + }, + { + "epoch": 80.46007520460076, + "grad_norm": 0.4718465805053711, + "learning_rate": 9.784703801945181e-06, + "loss": 0.4078546905517578, + "step": 91000 + }, + { + "epoch": 80.54855120548551, + "grad_norm": 0.45132529735565186, + "learning_rate": 9.740495137046862e-06, + "loss": 0.40724002838134765, + "step": 91100 + }, + { + "epoch": 80.63702720637028, + "grad_norm": 0.4961422085762024, + "learning_rate": 9.69628647214854e-06, + "loss": 0.4097640609741211, + "step": 91200 + }, + { + "epoch": 80.72550320725503, + "grad_norm": 0.5276188850402832, + "learning_rate": 9.652077807250221e-06, + "loss": 0.41011890411376956, + "step": 91300 + }, + { + "epoch": 80.8139792081398, + "grad_norm": 0.48676180839538574, + "learning_rate": 9.607869142351902e-06, + "loss": 0.41075672149658204, + "step": 91400 + }, + { + "epoch": 80.90245520902455, + "grad_norm": 0.5812916159629822, + "learning_rate": 9.563660477453582e-06, + "loss": 0.4131761932373047, + "step": 91500 + }, + { + "epoch": 80.9909312099093, + "grad_norm": 0.5730577707290649, + "learning_rate": 9.51945181255526e-06, + "loss": 0.41234848022460935, + "step": 91600 + }, + { + "epoch": 81.07874364078744, + "grad_norm": 0.5240619778633118, + "learning_rate": 9.475685234305924e-06, + "loss": 0.40376312255859376, + "step": 91700 + }, + { + "epoch": 81.16721964167219, + "grad_norm": 0.46626827120780945, + "learning_rate": 9.431476569407604e-06, + "loss": 0.40396995544433595, + "step": 91800 + }, + { + "epoch": 81.25569564255696, + "grad_norm": 0.49117109179496765, + "learning_rate": 9.387267904509283e-06, + "loss": 0.4028842544555664, + "step": 91900 + }, + { + "epoch": 81.34417164344171, + "grad_norm": 0.5428334474563599, + "learning_rate": 9.343059239610964e-06, + "loss": 0.4046338653564453, + "step": 92000 + }, + { + "epoch": 81.43264764432648, + "grad_norm": 0.5240166783332825, + "learning_rate": 9.298850574712644e-06, + "loss": 0.4052513885498047, + "step": 92100 + }, + { + "epoch": 81.52112364521123, + "grad_norm": 0.4899362325668335, + "learning_rate": 9.254641909814325e-06, + "loss": 0.4052754974365234, + "step": 92200 + }, + { + "epoch": 81.609599646096, + "grad_norm": 0.46969664096832275, + "learning_rate": 9.210433244916005e-06, + "loss": 0.4072676086425781, + "step": 92300 + }, + { + "epoch": 81.69807564698075, + "grad_norm": 0.4990880489349365, + "learning_rate": 9.166224580017684e-06, + "loss": 0.40702415466308595, + "step": 92400 + }, + { + "epoch": 81.78655164786552, + "grad_norm": 0.5545535087585449, + "learning_rate": 9.122015915119364e-06, + "loss": 0.4103099822998047, + "step": 92500 + }, + { + "epoch": 81.87502764875028, + "grad_norm": 0.5591033101081848, + "learning_rate": 9.077807250221043e-06, + "loss": 0.4087317276000977, + "step": 92600 + }, + { + "epoch": 81.96350364963503, + "grad_norm": 0.5289734601974487, + "learning_rate": 9.033598585322723e-06, + "loss": 0.4112258529663086, + "step": 92700 + }, + { + "epoch": 82.05131608051316, + "grad_norm": 0.59573894739151, + "learning_rate": 8.989389920424404e-06, + "loss": 0.40506195068359374, + "step": 92800 + }, + { + "epoch": 82.13979208139791, + "grad_norm": 0.4581588804721832, + "learning_rate": 8.945181255526083e-06, + "loss": 0.401633186340332, + "step": 92900 + }, + { + "epoch": 82.22826808228268, + "grad_norm": 0.4607727527618408, + "learning_rate": 8.900972590627763e-06, + "loss": 0.4030620193481445, + "step": 93000 + }, + { + "epoch": 82.31674408316744, + "grad_norm": 0.5693869590759277, + "learning_rate": 8.856763925729444e-06, + "loss": 0.4034944152832031, + "step": 93100 + }, + { + "epoch": 82.4052200840522, + "grad_norm": 0.4679562449455261, + "learning_rate": 8.812555260831124e-06, + "loss": 0.40353385925292967, + "step": 93200 + }, + { + "epoch": 82.49369608493696, + "grad_norm": 0.4970017373561859, + "learning_rate": 8.768346595932803e-06, + "loss": 0.4040465545654297, + "step": 93300 + }, + { + "epoch": 82.58217208582172, + "grad_norm": 0.4850037097930908, + "learning_rate": 8.724137931034483e-06, + "loss": 0.40520496368408204, + "step": 93400 + }, + { + "epoch": 82.67064808670648, + "grad_norm": 0.5304952263832092, + "learning_rate": 8.679929266136164e-06, + "loss": 0.4062754440307617, + "step": 93500 + }, + { + "epoch": 82.75912408759125, + "grad_norm": 0.5124515891075134, + "learning_rate": 8.635720601237842e-06, + "loss": 0.4042987442016602, + "step": 93600 + }, + { + "epoch": 82.847600088476, + "grad_norm": 0.5527506470680237, + "learning_rate": 8.591511936339523e-06, + "loss": 0.4051095199584961, + "step": 93700 + }, + { + "epoch": 82.93607608936077, + "grad_norm": 0.4627765119075775, + "learning_rate": 8.547303271441202e-06, + "loss": 0.4065189743041992, + "step": 93800 + }, + { + "epoch": 83.02388852023888, + "grad_norm": 0.47690948843955994, + "learning_rate": 8.503094606542882e-06, + "loss": 0.4059687042236328, + "step": 93900 + }, + { + "epoch": 83.11236452112365, + "grad_norm": 0.543329656124115, + "learning_rate": 8.458885941644563e-06, + "loss": 0.40105613708496096, + "step": 94000 + }, + { + "epoch": 83.2008405220084, + "grad_norm": 0.5308240056037903, + "learning_rate": 8.414677276746243e-06, + "loss": 0.3999287414550781, + "step": 94100 + }, + { + "epoch": 83.28931652289316, + "grad_norm": 0.5098600387573242, + "learning_rate": 8.370468611847924e-06, + "loss": 0.3998809051513672, + "step": 94200 + }, + { + "epoch": 83.37779252377793, + "grad_norm": 0.5461894273757935, + "learning_rate": 8.326259946949602e-06, + "loss": 0.4027032470703125, + "step": 94300 + }, + { + "epoch": 83.46626852466268, + "grad_norm": 0.5599612593650818, + "learning_rate": 8.282051282051283e-06, + "loss": 0.4018612289428711, + "step": 94400 + }, + { + "epoch": 83.55474452554745, + "grad_norm": 0.5953245162963867, + "learning_rate": 8.237842617152961e-06, + "loss": 0.4048320770263672, + "step": 94500 + }, + { + "epoch": 83.6432205264322, + "grad_norm": 0.5232775211334229, + "learning_rate": 8.193633952254642e-06, + "loss": 0.40312889099121096, + "step": 94600 + }, + { + "epoch": 83.73169652731697, + "grad_norm": 0.5057620406150818, + "learning_rate": 8.149425287356322e-06, + "loss": 0.4016009521484375, + "step": 94700 + }, + { + "epoch": 83.82017252820172, + "grad_norm": 0.54839026927948, + "learning_rate": 8.105216622458001e-06, + "loss": 0.40390682220458984, + "step": 94800 + }, + { + "epoch": 83.90864852908649, + "grad_norm": 0.42211759090423584, + "learning_rate": 8.061007957559683e-06, + "loss": 0.4043146514892578, + "step": 94900 + }, + { + "epoch": 83.99712452997125, + "grad_norm": 0.46576666831970215, + "learning_rate": 8.016799292661362e-06, + "loss": 0.4071781539916992, + "step": 95000 + }, + { + "epoch": 84.08493696084938, + "grad_norm": 0.48286134004592896, + "learning_rate": 7.973032714412025e-06, + "loss": 0.3980902862548828, + "step": 95100 + }, + { + "epoch": 84.17341296173413, + "grad_norm": 0.5105409026145935, + "learning_rate": 7.928824049513706e-06, + "loss": 0.39626029968261717, + "step": 95200 + }, + { + "epoch": 84.26188896261888, + "grad_norm": 0.5280846357345581, + "learning_rate": 7.884615384615384e-06, + "loss": 0.39923973083496095, + "step": 95300 + }, + { + "epoch": 84.35036496350365, + "grad_norm": 0.49487778544425964, + "learning_rate": 7.840406719717065e-06, + "loss": 0.39867469787597654, + "step": 95400 + }, + { + "epoch": 84.4388409643884, + "grad_norm": 0.5105910897254944, + "learning_rate": 7.796198054818744e-06, + "loss": 0.4000941467285156, + "step": 95500 + }, + { + "epoch": 84.52731696527317, + "grad_norm": 0.49424290657043457, + "learning_rate": 7.751989389920424e-06, + "loss": 0.4025596618652344, + "step": 95600 + }, + { + "epoch": 84.61579296615793, + "grad_norm": 0.5923288464546204, + "learning_rate": 7.707780725022105e-06, + "loss": 0.40207050323486326, + "step": 95700 + }, + { + "epoch": 84.7042689670427, + "grad_norm": 0.47270065546035767, + "learning_rate": 7.663572060123785e-06, + "loss": 0.40140762329101565, + "step": 95800 + }, + { + "epoch": 84.79274496792745, + "grad_norm": 0.4515872597694397, + "learning_rate": 7.619363395225465e-06, + "loss": 0.4039121627807617, + "step": 95900 + }, + { + "epoch": 84.88122096881222, + "grad_norm": 0.5799027681350708, + "learning_rate": 7.575154730327144e-06, + "loss": 0.40215221405029294, + "step": 96000 + }, + { + "epoch": 84.96969696969697, + "grad_norm": 0.5158770680427551, + "learning_rate": 7.530946065428825e-06, + "loss": 0.40449161529541017, + "step": 96100 + }, + { + "epoch": 85.0575094005751, + "grad_norm": 0.5103220343589783, + "learning_rate": 7.4867374005305035e-06, + "loss": 0.3986453628540039, + "step": 96200 + }, + { + "epoch": 85.14598540145985, + "grad_norm": 0.48847347497940063, + "learning_rate": 7.442528735632184e-06, + "loss": 0.3962085723876953, + "step": 96300 + }, + { + "epoch": 85.2344614023446, + "grad_norm": 0.5786899328231812, + "learning_rate": 7.398320070733865e-06, + "loss": 0.398316535949707, + "step": 96400 + }, + { + "epoch": 85.32293740322937, + "grad_norm": 0.4464615285396576, + "learning_rate": 7.354111405835544e-06, + "loss": 0.39748287200927734, + "step": 96500 + }, + { + "epoch": 85.41141340411413, + "grad_norm": 0.5107320547103882, + "learning_rate": 7.3099027409372245e-06, + "loss": 0.399218864440918, + "step": 96600 + }, + { + "epoch": 85.4998894049989, + "grad_norm": 0.5555247068405151, + "learning_rate": 7.265694076038903e-06, + "loss": 0.40016975402832033, + "step": 96700 + }, + { + "epoch": 85.58836540588365, + "grad_norm": 0.46809983253479004, + "learning_rate": 7.2214854111405845e-06, + "loss": 0.39977962493896485, + "step": 96800 + }, + { + "epoch": 85.67684140676842, + "grad_norm": 0.5176143646240234, + "learning_rate": 7.177276746242263e-06, + "loss": 0.39803340911865237, + "step": 96900 + }, + { + "epoch": 85.76531740765317, + "grad_norm": 0.4717543125152588, + "learning_rate": 7.133068081343944e-06, + "loss": 0.4004299545288086, + "step": 97000 + }, + { + "epoch": 85.85379340853794, + "grad_norm": 0.49673059582710266, + "learning_rate": 7.088859416445624e-06, + "loss": 0.40104530334472654, + "step": 97100 + }, + { + "epoch": 85.94226940942269, + "grad_norm": 0.5706076622009277, + "learning_rate": 7.044650751547304e-06, + "loss": 0.40007728576660156, + "step": 97200 + }, + { + "epoch": 86.03008184030082, + "grad_norm": 0.5170352458953857, + "learning_rate": 7.000884173297967e-06, + "loss": 0.39897975921630857, + "step": 97300 + }, + { + "epoch": 86.11855784118558, + "grad_norm": 0.478630930185318, + "learning_rate": 6.956675508399646e-06, + "loss": 0.3933698272705078, + "step": 97400 + }, + { + "epoch": 86.20703384207035, + "grad_norm": 0.5094186067581177, + "learning_rate": 6.912466843501326e-06, + "loss": 0.39624488830566407, + "step": 97500 + }, + { + "epoch": 86.2955098429551, + "grad_norm": 0.5107275247573853, + "learning_rate": 6.868258178603007e-06, + "loss": 0.39685150146484377, + "step": 97600 + }, + { + "epoch": 86.38398584383985, + "grad_norm": 0.5861279964447021, + "learning_rate": 6.824049513704686e-06, + "loss": 0.3973454284667969, + "step": 97700 + }, + { + "epoch": 86.47246184472462, + "grad_norm": 0.490012526512146, + "learning_rate": 6.779840848806367e-06, + "loss": 0.3982046127319336, + "step": 97800 + }, + { + "epoch": 86.56093784560937, + "grad_norm": 0.47647538781166077, + "learning_rate": 6.7356321839080455e-06, + "loss": 0.39851917266845704, + "step": 97900 + }, + { + "epoch": 86.64941384649414, + "grad_norm": 0.45534029603004456, + "learning_rate": 6.691423519009726e-06, + "loss": 0.39754936218261716, + "step": 98000 + }, + { + "epoch": 86.7378898473789, + "grad_norm": 0.5305948257446289, + "learning_rate": 6.647214854111407e-06, + "loss": 0.39900218963623046, + "step": 98100 + }, + { + "epoch": 86.82636584826366, + "grad_norm": 0.48616868257522583, + "learning_rate": 6.603006189213086e-06, + "loss": 0.39878063201904296, + "step": 98200 + }, + { + "epoch": 86.91484184914842, + "grad_norm": 0.4637695252895355, + "learning_rate": 6.5587975243147665e-06, + "loss": 0.39936519622802735, + "step": 98300 + }, + { + "epoch": 87.00265428002655, + "grad_norm": 0.43915867805480957, + "learning_rate": 6.514588859416445e-06, + "loss": 0.39945316314697266, + "step": 98400 + }, + { + "epoch": 87.0911302809113, + "grad_norm": 0.5064729452133179, + "learning_rate": 6.4703801945181265e-06, + "loss": 0.39295291900634766, + "step": 98500 + }, + { + "epoch": 87.17960628179607, + "grad_norm": 0.41172826290130615, + "learning_rate": 6.426171529619805e-06, + "loss": 0.3956099319458008, + "step": 98600 + }, + { + "epoch": 87.26808228268082, + "grad_norm": 0.5156989693641663, + "learning_rate": 6.381962864721486e-06, + "loss": 0.3927472686767578, + "step": 98700 + }, + { + "epoch": 87.35655828356558, + "grad_norm": 0.4864855706691742, + "learning_rate": 6.337754199823166e-06, + "loss": 0.39533439636230466, + "step": 98800 + }, + { + "epoch": 87.44503428445034, + "grad_norm": 0.5469456911087036, + "learning_rate": 6.293545534924846e-06, + "loss": 0.3970512390136719, + "step": 98900 + }, + { + "epoch": 87.5335102853351, + "grad_norm": 0.4618734121322632, + "learning_rate": 6.249336870026525e-06, + "loss": 0.3967998504638672, + "step": 99000 + }, + { + "epoch": 87.62198628621987, + "grad_norm": 0.41789868474006653, + "learning_rate": 6.205128205128206e-06, + "loss": 0.3979497909545898, + "step": 99100 + }, + { + "epoch": 87.71046228710462, + "grad_norm": 0.5439488887786865, + "learning_rate": 6.1609195402298855e-06, + "loss": 0.3960274887084961, + "step": 99200 + }, + { + "epoch": 87.79893828798939, + "grad_norm": 0.46948105096817017, + "learning_rate": 6.116710875331565e-06, + "loss": 0.39781307220458983, + "step": 99300 + }, + { + "epoch": 87.88741428887414, + "grad_norm": 0.4804007411003113, + "learning_rate": 6.0725022104332456e-06, + "loss": 0.39600673675537107, + "step": 99400 + }, + { + "epoch": 87.97589028975891, + "grad_norm": 0.4494355618953705, + "learning_rate": 6.028293545534925e-06, + "loss": 0.3976548385620117, + "step": 99500 + }, + { + "epoch": 88.06370272063702, + "grad_norm": 0.4300312101840973, + "learning_rate": 5.984526967285588e-06, + "loss": 0.3928862762451172, + "step": 99600 + }, + { + "epoch": 88.15217872152179, + "grad_norm": 0.5155128836631775, + "learning_rate": 5.940318302387268e-06, + "loss": 0.39027740478515627, + "step": 99700 + }, + { + "epoch": 88.24065472240655, + "grad_norm": 0.4635615944862366, + "learning_rate": 5.896109637488948e-06, + "loss": 0.3938739776611328, + "step": 99800 + }, + { + "epoch": 88.32913072329131, + "grad_norm": 0.5408588647842407, + "learning_rate": 5.851900972590628e-06, + "loss": 0.3914863967895508, + "step": 99900 + }, + { + "epoch": 88.41760672417607, + "grad_norm": 0.5169259309768677, + "learning_rate": 5.807692307692308e-06, + "loss": 0.3942420959472656, + "step": 100000 + }, + { + "epoch": 88.50608272506082, + "grad_norm": 0.43603307008743286, + "learning_rate": 5.763483642793987e-06, + "loss": 0.3942053604125977, + "step": 100100 + }, + { + "epoch": 88.59455872594559, + "grad_norm": 0.484275758266449, + "learning_rate": 5.719274977895668e-06, + "loss": 0.3953342056274414, + "step": 100200 + }, + { + "epoch": 88.68303472683034, + "grad_norm": 0.4834429621696472, + "learning_rate": 5.675066312997348e-06, + "loss": 0.39478866577148436, + "step": 100300 + }, + { + "epoch": 88.77151072771511, + "grad_norm": 0.5198318362236023, + "learning_rate": 5.630857648099028e-06, + "loss": 0.3973033905029297, + "step": 100400 + }, + { + "epoch": 88.85998672859986, + "grad_norm": 0.5359114408493042, + "learning_rate": 5.586648983200707e-06, + "loss": 0.3963985824584961, + "step": 100500 + }, + { + "epoch": 88.94846272948463, + "grad_norm": 0.47174566984176636, + "learning_rate": 5.542440318302387e-06, + "loss": 0.39962120056152345, + "step": 100600 + }, + { + "epoch": 89.03627516036275, + "grad_norm": 0.5552394986152649, + "learning_rate": 5.498231653404067e-06, + "loss": 0.3942194747924805, + "step": 100700 + }, + { + "epoch": 89.12475116124752, + "grad_norm": 0.4985731840133667, + "learning_rate": 5.454022988505748e-06, + "loss": 0.39029048919677733, + "step": 100800 + }, + { + "epoch": 89.21322716213227, + "grad_norm": 0.5449782013893127, + "learning_rate": 5.4098143236074275e-06, + "loss": 0.391842155456543, + "step": 100900 + }, + { + "epoch": 89.30170316301704, + "grad_norm": 0.47477561235427856, + "learning_rate": 5.365605658709107e-06, + "loss": 0.39065505981445314, + "step": 101000 + }, + { + "epoch": 89.39017916390179, + "grad_norm": 0.5775418281555176, + "learning_rate": 5.3213969938107875e-06, + "loss": 0.39322795867919924, + "step": 101100 + }, + { + "epoch": 89.47865516478655, + "grad_norm": 0.44463786482810974, + "learning_rate": 5.277188328912467e-06, + "loss": 0.3929602813720703, + "step": 101200 + }, + { + "epoch": 89.56713116567131, + "grad_norm": 0.5217382311820984, + "learning_rate": 5.232979664014147e-06, + "loss": 0.3945352172851562, + "step": 101300 + }, + { + "epoch": 89.65560716655607, + "grad_norm": 0.47336575388908386, + "learning_rate": 5.188770999115826e-06, + "loss": 0.3943867492675781, + "step": 101400 + }, + { + "epoch": 89.74408316744083, + "grad_norm": 0.49890655279159546, + "learning_rate": 5.144562334217507e-06, + "loss": 0.39472442626953125, + "step": 101500 + }, + { + "epoch": 89.83255916832559, + "grad_norm": 0.4528096914291382, + "learning_rate": 5.100353669319187e-06, + "loss": 0.3927711868286133, + "step": 101600 + }, + { + "epoch": 89.92103516921036, + "grad_norm": 0.4498828649520874, + "learning_rate": 5.056145004420867e-06, + "loss": 0.3962491226196289, + "step": 101700 + }, + { + "epoch": 90.00884760008847, + "grad_norm": 0.45861297845840454, + "learning_rate": 5.0119363395225465e-06, + "loss": 0.39339271545410154, + "step": 101800 + }, + { + "epoch": 90.09732360097324, + "grad_norm": 0.5762381553649902, + "learning_rate": 4.967727674624226e-06, + "loss": 0.3896630096435547, + "step": 101900 + }, + { + "epoch": 90.185799601858, + "grad_norm": 0.5530878305435181, + "learning_rate": 4.923519009725907e-06, + "loss": 0.38933868408203126, + "step": 102000 + }, + { + "epoch": 90.27427560274276, + "grad_norm": 0.4769279360771179, + "learning_rate": 4.879310344827587e-06, + "loss": 0.38943870544433595, + "step": 102100 + }, + { + "epoch": 90.36275160362752, + "grad_norm": 0.5254392027854919, + "learning_rate": 4.835101679929267e-06, + "loss": 0.39091030120849607, + "step": 102200 + }, + { + "epoch": 90.45122760451227, + "grad_norm": 0.5098690986633301, + "learning_rate": 4.790893015030946e-06, + "loss": 0.39340557098388673, + "step": 102300 + }, + { + "epoch": 90.53970360539704, + "grad_norm": 0.5299240946769714, + "learning_rate": 4.746684350132626e-06, + "loss": 0.3925971221923828, + "step": 102400 + }, + { + "epoch": 90.62817960628179, + "grad_norm": 0.5023613572120667, + "learning_rate": 4.702475685234306e-06, + "loss": 0.3934814453125, + "step": 102500 + }, + { + "epoch": 90.71665560716656, + "grad_norm": 0.5217054486274719, + "learning_rate": 4.658267020335986e-06, + "loss": 0.39229228973388675, + "step": 102600 + }, + { + "epoch": 90.80513160805131, + "grad_norm": 0.4929801821708679, + "learning_rate": 4.6140583554376656e-06, + "loss": 0.39253700256347657, + "step": 102700 + }, + { + "epoch": 90.89360760893608, + "grad_norm": 0.4281506836414337, + "learning_rate": 4.569849690539346e-06, + "loss": 0.39423236846923826, + "step": 102800 + }, + { + "epoch": 90.98208360982083, + "grad_norm": 0.5606275796890259, + "learning_rate": 4.525641025641026e-06, + "loss": 0.39174613952636717, + "step": 102900 + }, + { + "epoch": 91.06989604069896, + "grad_norm": 0.40593966841697693, + "learning_rate": 4.481874447391689e-06, + "loss": 0.39004261016845704, + "step": 103000 + }, + { + "epoch": 91.15837204158372, + "grad_norm": 0.48218822479248047, + "learning_rate": 4.437665782493368e-06, + "loss": 0.39024349212646486, + "step": 103100 + }, + { + "epoch": 91.24684804246849, + "grad_norm": 0.4803628623485565, + "learning_rate": 4.393457117595049e-06, + "loss": 0.3893236541748047, + "step": 103200 + }, + { + "epoch": 91.33532404335324, + "grad_norm": 0.5424004197120667, + "learning_rate": 4.349248452696729e-06, + "loss": 0.3895704650878906, + "step": 103300 + }, + { + "epoch": 91.423800044238, + "grad_norm": 0.4238603711128235, + "learning_rate": 4.305039787798409e-06, + "loss": 0.3891864776611328, + "step": 103400 + }, + { + "epoch": 91.51227604512276, + "grad_norm": 0.5425596833229065, + "learning_rate": 4.2608311229000885e-06, + "loss": 0.3902478408813477, + "step": 103500 + }, + { + "epoch": 91.60075204600751, + "grad_norm": 0.529647946357727, + "learning_rate": 4.216622458001768e-06, + "loss": 0.39207550048828127, + "step": 103600 + }, + { + "epoch": 91.68922804689228, + "grad_norm": 0.42155396938323975, + "learning_rate": 4.1724137931034486e-06, + "loss": 0.3911063766479492, + "step": 103700 + }, + { + "epoch": 91.77770404777704, + "grad_norm": 0.4809010326862335, + "learning_rate": 4.128205128205129e-06, + "loss": 0.3927000427246094, + "step": 103800 + }, + { + "epoch": 91.8661800486618, + "grad_norm": 0.4598400890827179, + "learning_rate": 4.083996463306809e-06, + "loss": 0.38986122131347656, + "step": 103900 + }, + { + "epoch": 91.95465604954656, + "grad_norm": 0.52349853515625, + "learning_rate": 4.039787798408488e-06, + "loss": 0.3922639465332031, + "step": 104000 + }, + { + "epoch": 92.04246848042469, + "grad_norm": 0.5118280053138733, + "learning_rate": 3.996021220159151e-06, + "loss": 0.388396110534668, + "step": 104100 + }, + { + "epoch": 92.13094448130944, + "grad_norm": 0.49287110567092896, + "learning_rate": 3.951812555260832e-06, + "loss": 0.3882394027709961, + "step": 104200 + }, + { + "epoch": 92.21942048219421, + "grad_norm": 0.5597590804100037, + "learning_rate": 3.9076038903625115e-06, + "loss": 0.38768112182617187, + "step": 104300 + }, + { + "epoch": 92.30789648307896, + "grad_norm": 0.49123573303222656, + "learning_rate": 3.863395225464191e-06, + "loss": 0.38717472076416015, + "step": 104400 + }, + { + "epoch": 92.39637248396373, + "grad_norm": 0.5490599870681763, + "learning_rate": 3.819186560565871e-06, + "loss": 0.38968246459960937, + "step": 104500 + }, + { + "epoch": 92.48484848484848, + "grad_norm": 0.563377857208252, + "learning_rate": 3.7749778956675507e-06, + "loss": 0.3879422760009766, + "step": 104600 + }, + { + "epoch": 92.57332448573324, + "grad_norm": 0.5248238444328308, + "learning_rate": 3.7307692307692308e-06, + "loss": 0.3904239654541016, + "step": 104700 + }, + { + "epoch": 92.661800486618, + "grad_norm": 0.5977566242218018, + "learning_rate": 3.6865605658709104e-06, + "loss": 0.39140804290771486, + "step": 104800 + }, + { + "epoch": 92.75027648750276, + "grad_norm": 0.4992641508579254, + "learning_rate": 3.6423519009725912e-06, + "loss": 0.390025749206543, + "step": 104900 + }, + { + "epoch": 92.83875248838753, + "grad_norm": 0.5491787791252136, + "learning_rate": 3.598143236074271e-06, + "loss": 0.39107063293457034, + "step": 105000 + }, + { + "epoch": 92.92722848927228, + "grad_norm": 0.46409890055656433, + "learning_rate": 3.553934571175951e-06, + "loss": 0.3911115264892578, + "step": 105100 + }, + { + "epoch": 93.01504092015041, + "grad_norm": 0.5469849705696106, + "learning_rate": 3.5097259062776305e-06, + "loss": 0.3916855621337891, + "step": 105200 + }, + { + "epoch": 93.10351692103517, + "grad_norm": 0.496277391910553, + "learning_rate": 3.4655172413793105e-06, + "loss": 0.3867160415649414, + "step": 105300 + }, + { + "epoch": 93.19199292191993, + "grad_norm": 0.42929497361183167, + "learning_rate": 3.42130857648099e-06, + "loss": 0.38718021392822266, + "step": 105400 + }, + { + "epoch": 93.28046892280469, + "grad_norm": 0.406601220369339, + "learning_rate": 3.3770999115826706e-06, + "loss": 0.386837272644043, + "step": 105500 + }, + { + "epoch": 93.36894492368945, + "grad_norm": 0.48087212443351746, + "learning_rate": 3.3328912466843506e-06, + "loss": 0.3877327346801758, + "step": 105600 + }, + { + "epoch": 93.45742092457421, + "grad_norm": 0.5117219090461731, + "learning_rate": 3.2886825817860302e-06, + "loss": 0.38803070068359374, + "step": 105700 + }, + { + "epoch": 93.54589692545898, + "grad_norm": 0.6043857932090759, + "learning_rate": 3.2444739168877103e-06, + "loss": 0.38934085845947264, + "step": 105800 + }, + { + "epoch": 93.63437292634373, + "grad_norm": 0.5303599238395691, + "learning_rate": 3.20026525198939e-06, + "loss": 0.3872317123413086, + "step": 105900 + }, + { + "epoch": 93.72284892722848, + "grad_norm": 0.48868313431739807, + "learning_rate": 3.15605658709107e-06, + "loss": 0.3903642272949219, + "step": 106000 + }, + { + "epoch": 93.81132492811325, + "grad_norm": 0.5126668810844421, + "learning_rate": 3.11184792219275e-06, + "loss": 0.3893658447265625, + "step": 106100 + }, + { + "epoch": 93.899800928998, + "grad_norm": 0.5788067579269409, + "learning_rate": 3.06763925729443e-06, + "loss": 0.3887732315063477, + "step": 106200 + }, + { + "epoch": 93.98827692988277, + "grad_norm": 0.5931738615036011, + "learning_rate": 3.0234305923961096e-06, + "loss": 0.3858309555053711, + "step": 106300 + }, + { + "epoch": 94.07608936076089, + "grad_norm": 0.4667378067970276, + "learning_rate": 2.9792219274977896e-06, + "loss": 0.3882503128051758, + "step": 106400 + }, + { + "epoch": 94.16456536164566, + "grad_norm": 0.4540467858314514, + "learning_rate": 2.9350132625994697e-06, + "loss": 0.3879624557495117, + "step": 106500 + }, + { + "epoch": 94.25304136253041, + "grad_norm": 0.5249928832054138, + "learning_rate": 2.8908045977011493e-06, + "loss": 0.3871700668334961, + "step": 106600 + }, + { + "epoch": 94.34151736341518, + "grad_norm": 0.4902016520500183, + "learning_rate": 2.8465959328028297e-06, + "loss": 0.3865641403198242, + "step": 106700 + }, + { + "epoch": 94.42999336429993, + "grad_norm": 0.4490734934806824, + "learning_rate": 2.8023872679045093e-06, + "loss": 0.3874678039550781, + "step": 106800 + }, + { + "epoch": 94.5184693651847, + "grad_norm": 0.39259180426597595, + "learning_rate": 2.7581786030061894e-06, + "loss": 0.3864010238647461, + "step": 106900 + }, + { + "epoch": 94.60694536606945, + "grad_norm": 0.5160086154937744, + "learning_rate": 2.7139699381078694e-06, + "loss": 0.38762042999267576, + "step": 107000 + }, + { + "epoch": 94.6954213669542, + "grad_norm": 0.5112566947937012, + "learning_rate": 2.669761273209549e-06, + "loss": 0.38802257537841794, + "step": 107100 + }, + { + "epoch": 94.78389736783897, + "grad_norm": 0.48586076498031616, + "learning_rate": 2.625552608311229e-06, + "loss": 0.3883600616455078, + "step": 107200 + }, + { + "epoch": 94.87237336872373, + "grad_norm": 0.5169211626052856, + "learning_rate": 2.581343943412909e-06, + "loss": 0.38775413513183593, + "step": 107300 + }, + { + "epoch": 94.9608493696085, + "grad_norm": 0.4262998700141907, + "learning_rate": 2.537135278514589e-06, + "loss": 0.3891670608520508, + "step": 107400 + }, + { + "epoch": 95.04866180048661, + "grad_norm": 0.4452260434627533, + "learning_rate": 2.4929266136162687e-06, + "loss": 0.38474632263183595, + "step": 107500 + }, + { + "epoch": 95.13713780137138, + "grad_norm": 0.5349674820899963, + "learning_rate": 2.4487179487179488e-06, + "loss": 0.3851365661621094, + "step": 107600 + }, + { + "epoch": 95.22561380225613, + "grad_norm": 0.4277512729167938, + "learning_rate": 2.404509283819629e-06, + "loss": 0.38448490142822267, + "step": 107700 + }, + { + "epoch": 95.3140898031409, + "grad_norm": 0.5199966430664062, + "learning_rate": 2.360300618921309e-06, + "loss": 0.3855178451538086, + "step": 107800 + }, + { + "epoch": 95.40256580402566, + "grad_norm": 0.49931713938713074, + "learning_rate": 2.3160919540229885e-06, + "loss": 0.38597549438476564, + "step": 107900 + }, + { + "epoch": 95.49104180491042, + "grad_norm": 0.44888851046562195, + "learning_rate": 2.2718832891246685e-06, + "loss": 0.38637237548828124, + "step": 108000 + }, + { + "epoch": 95.57951780579518, + "grad_norm": 0.48020413517951965, + "learning_rate": 2.2276746242263485e-06, + "loss": 0.3860820388793945, + "step": 108100 + }, + { + "epoch": 95.66799380667993, + "grad_norm": 0.49320459365844727, + "learning_rate": 2.183465959328028e-06, + "loss": 0.3868730926513672, + "step": 108200 + }, + { + "epoch": 95.7564698075647, + "grad_norm": 0.4776149392127991, + "learning_rate": 2.1392572944297086e-06, + "loss": 0.38699729919433595, + "step": 108300 + }, + { + "epoch": 95.84494580844945, + "grad_norm": 0.4394153356552124, + "learning_rate": 2.095048629531388e-06, + "loss": 0.3858388137817383, + "step": 108400 + }, + { + "epoch": 95.93342180933422, + "grad_norm": 0.40809816122055054, + "learning_rate": 2.0508399646330682e-06, + "loss": 0.3865514373779297, + "step": 108500 + }, + { + "epoch": 96.02123424021234, + "grad_norm": 0.40297845005989075, + "learning_rate": 2.0070733863837314e-06, + "loss": 0.38520877838134765, + "step": 108600 + }, + { + "epoch": 96.1097102410971, + "grad_norm": 0.4992787837982178, + "learning_rate": 1.9628647214854114e-06, + "loss": 0.3824159622192383, + "step": 108700 + }, + { + "epoch": 96.19818624198186, + "grad_norm": 0.4386002719402313, + "learning_rate": 1.918656056587091e-06, + "loss": 0.3828225326538086, + "step": 108800 + }, + { + "epoch": 96.28666224286663, + "grad_norm": 0.4839923679828644, + "learning_rate": 1.874447391688771e-06, + "loss": 0.3837508392333984, + "step": 108900 + }, + { + "epoch": 96.37513824375138, + "grad_norm": 0.5360403656959534, + "learning_rate": 1.830238726790451e-06, + "loss": 0.3868670654296875, + "step": 109000 + }, + { + "epoch": 96.46361424463615, + "grad_norm": 0.5472413897514343, + "learning_rate": 1.786030061892131e-06, + "loss": 0.38740249633789064, + "step": 109100 + }, + { + "epoch": 96.5520902455209, + "grad_norm": 0.4783819019794464, + "learning_rate": 1.7418213969938107e-06, + "loss": 0.3851567459106445, + "step": 109200 + }, + { + "epoch": 96.64056624640567, + "grad_norm": 0.5319016575813293, + "learning_rate": 1.6976127320954906e-06, + "loss": 0.38549720764160156, + "step": 109300 + }, + { + "epoch": 96.72904224729042, + "grad_norm": 0.4579726755619049, + "learning_rate": 1.6534040671971708e-06, + "loss": 0.38684429168701173, + "step": 109400 + }, + { + "epoch": 96.81751824817518, + "grad_norm": 0.4699755012989044, + "learning_rate": 1.6091954022988506e-06, + "loss": 0.3849377822875977, + "step": 109500 + }, + { + "epoch": 96.90599424905994, + "grad_norm": 0.5681434273719788, + "learning_rate": 1.5649867374005304e-06, + "loss": 0.38494167327880857, + "step": 109600 + }, + { + "epoch": 96.9944702499447, + "grad_norm": 0.40921762585639954, + "learning_rate": 1.5207780725022105e-06, + "loss": 0.3864158630371094, + "step": 109700 + }, + { + "epoch": 97.08228268082283, + "grad_norm": 0.5271804928779602, + "learning_rate": 1.4765694076038905e-06, + "loss": 0.3854814529418945, + "step": 109800 + }, + { + "epoch": 97.17075868170758, + "grad_norm": 0.5390716195106506, + "learning_rate": 1.4323607427055703e-06, + "loss": 0.3826302719116211, + "step": 109900 + }, + { + "epoch": 97.25923468259235, + "grad_norm": 0.4738744795322418, + "learning_rate": 1.3881520778072502e-06, + "loss": 0.3834680938720703, + "step": 110000 + }, + { + "epoch": 97.3477106834771, + "grad_norm": 0.47226211428642273, + "learning_rate": 1.3439434129089302e-06, + "loss": 0.383985595703125, + "step": 110100 + }, + { + "epoch": 97.43618668436187, + "grad_norm": 0.44581323862075806, + "learning_rate": 1.29973474801061e-06, + "loss": 0.38392398834228514, + "step": 110200 + }, + { + "epoch": 97.52466268524662, + "grad_norm": 0.505975067615509, + "learning_rate": 1.25552608311229e-06, + "loss": 0.3842586898803711, + "step": 110300 + }, + { + "epoch": 97.61313868613139, + "grad_norm": 0.4737127125263214, + "learning_rate": 1.21131741821397e-06, + "loss": 0.3853626251220703, + "step": 110400 + }, + { + "epoch": 97.70161468701615, + "grad_norm": 0.42337724566459656, + "learning_rate": 1.16710875331565e-06, + "loss": 0.3860707092285156, + "step": 110500 + }, + { + "epoch": 97.7900906879009, + "grad_norm": 0.470935583114624, + "learning_rate": 1.12290008841733e-06, + "loss": 0.3849189758300781, + "step": 110600 + }, + { + "epoch": 97.87856668878567, + "grad_norm": 0.5499629974365234, + "learning_rate": 1.0786914235190098e-06, + "loss": 0.3849348068237305, + "step": 110700 + }, + { + "epoch": 97.96704268967042, + "grad_norm": 0.5295959711074829, + "learning_rate": 1.0344827586206898e-06, + "loss": 0.3844482040405273, + "step": 110800 + }, + { + "epoch": 98.05485512054855, + "grad_norm": 0.510218620300293, + "learning_rate": 9.902740937223696e-07, + "loss": 0.38250988006591796, + "step": 110900 + }, + { + "epoch": 98.1433311214333, + "grad_norm": 0.46240198612213135, + "learning_rate": 9.460654288240495e-07, + "loss": 0.38357555389404296, + "step": 111000 + }, + { + "epoch": 98.23180712231807, + "grad_norm": 0.5413907170295715, + "learning_rate": 9.018567639257295e-07, + "loss": 0.3835936737060547, + "step": 111100 + }, + { + "epoch": 98.32028312320283, + "grad_norm": 0.5282194018363953, + "learning_rate": 8.576480990274095e-07, + "loss": 0.38462539672851564, + "step": 111200 + }, + { + "epoch": 98.4087591240876, + "grad_norm": 0.4430619478225708, + "learning_rate": 8.134394341290893e-07, + "loss": 0.3831254196166992, + "step": 111300 + }, + { + "epoch": 98.49723512497235, + "grad_norm": 0.4520755410194397, + "learning_rate": 7.692307692307694e-07, + "loss": 0.38387767791748045, + "step": 111400 + }, + { + "epoch": 98.58571112585712, + "grad_norm": 0.42326220870018005, + "learning_rate": 7.250221043324492e-07, + "loss": 0.38382118225097656, + "step": 111500 + }, + { + "epoch": 98.67418712674187, + "grad_norm": 0.5536217093467712, + "learning_rate": 6.808134394341291e-07, + "loss": 0.3837322998046875, + "step": 111600 + }, + { + "epoch": 98.76266312762664, + "grad_norm": 0.47729530930519104, + "learning_rate": 6.36604774535809e-07, + "loss": 0.3840275192260742, + "step": 111700 + }, + { + "epoch": 98.85113912851139, + "grad_norm": 0.4712120294570923, + "learning_rate": 5.92396109637489e-07, + "loss": 0.3826910400390625, + "step": 111800 + }, + { + "epoch": 98.93961512939615, + "grad_norm": 0.4533778727054596, + "learning_rate": 5.481874447391689e-07, + "loss": 0.3849251174926758, + "step": 111900 + }, + { + "epoch": 99.02742756027428, + "grad_norm": 0.4762660264968872, + "learning_rate": 5.04420866489832e-07, + "loss": 0.38347198486328127, + "step": 112000 + }, + { + "epoch": 99.11590356115903, + "grad_norm": 0.49900203943252563, + "learning_rate": 4.6021220159151197e-07, + "loss": 0.38361885070800783, + "step": 112100 + }, + { + "epoch": 99.2043795620438, + "grad_norm": 0.5499697923660278, + "learning_rate": 4.1600353669319184e-07, + "loss": 0.38323490142822264, + "step": 112200 + }, + { + "epoch": 99.29285556292855, + "grad_norm": 0.49698564410209656, + "learning_rate": 3.717948717948718e-07, + "loss": 0.38394325256347656, + "step": 112300 + }, + { + "epoch": 99.38133156381332, + "grad_norm": 0.5000177621841431, + "learning_rate": 3.2758620689655175e-07, + "loss": 0.3833367156982422, + "step": 112400 + }, + { + "epoch": 99.46980756469807, + "grad_norm": 0.46179404854774475, + "learning_rate": 2.833775419982317e-07, + "loss": 0.38318233489990233, + "step": 112500 + }, + { + "epoch": 99.55828356558284, + "grad_norm": 0.5522571802139282, + "learning_rate": 2.391688770999116e-07, + "loss": 0.38181392669677733, + "step": 112600 + }, + { + "epoch": 99.6467595664676, + "grad_norm": 0.4453877806663513, + "learning_rate": 1.949602122015915e-07, + "loss": 0.38297233581542967, + "step": 112700 + }, + { + "epoch": 99.73523556735236, + "grad_norm": 0.46210813522338867, + "learning_rate": 1.5075154730327146e-07, + "loss": 0.3855221939086914, + "step": 112800 + }, + { + "epoch": 99.82371156823712, + "grad_norm": 0.5160776972770691, + "learning_rate": 1.0654288240495138e-07, + "loss": 0.38173851013183596, + "step": 112900 + } + ], + "logging_steps": 100, + "max_steps": 113100, + "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": 3.132356447423693e+16, + "train_batch_size": 8, + "trial_name": null, + "trial_params": null +} diff --git a/timecost/m8/realtabformer/rtf-m8-20260430_214424/rtf_checkpoints/checkpoint-112900/training_args.bin b/timecost/m8/realtabformer/rtf-m8-20260430_214424/rtf_checkpoints/checkpoint-112900/training_args.bin new file mode 100644 index 0000000000000000000000000000000000000000..34d68dc0e0fe1c1f12a2e581dd1b166aa7178a9e --- /dev/null +++ b/timecost/m8/realtabformer/rtf-m8-20260430_214424/rtf_checkpoints/checkpoint-112900/training_args.bin @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:9e2cd88337d1d846c6918d2b3b63fa3e5c93f12fefc082497590da854a564607 +size 5201 diff --git a/timecost/m8/realtabformer/rtf-m8-20260430_214424/rtf_checkpoints/checkpoint-113000/config.json b/timecost/m8/realtabformer/rtf-m8-20260430_214424/rtf_checkpoints/checkpoint-113000/config.json new file mode 100644 index 0000000000000000000000000000000000000000..d98dd02b920679d4da3c8b60a9be119058fb9fe3 --- /dev/null +++ b/timecost/m8/realtabformer/rtf-m8-20260430_214424/rtf_checkpoints/checkpoint-113000/config.json @@ -0,0 +1,34 @@ +{ + "activation_function": "gelu_new", + "add_cross_attention": false, + "architectures": [ + "GPT2LMHeadModel" + ], + "attn_pdrop": 0.1, + "bos_token_id": 5, + "dtype": "float32", + "embd_pdrop": 0.1, + "eos_token_id": 6, + "initializer_range": 0.02, + "layer_norm_epsilon": 1e-05, + "model_type": "gpt2", + "n_embd": 768, + "n_head": 12, + "n_inner": null, + "n_layer": 6, + "n_positions": 1024, + "pad_token_id": null, + "reorder_and_upcast_attn": false, + "resid_pdrop": 0.1, + "scale_attn_by_inverse_layer_idx": false, + "scale_attn_weights": true, + "summary_activation": null, + "summary_first_dropout": 0.1, + "summary_proj_to_labels": true, + "summary_type": "cls_index", + "summary_use_proj": true, + "tie_word_embeddings": true, + "transformers_version": "5.5.3", + "use_cache": false, + "vocab_size": 244 +} diff --git a/timecost/m8/realtabformer/rtf-m8-20260430_214424/rtf_checkpoints/checkpoint-113000/generation_config.json b/timecost/m8/realtabformer/rtf-m8-20260430_214424/rtf_checkpoints/checkpoint-113000/generation_config.json new file mode 100644 index 0000000000000000000000000000000000000000..ffe89567780e75b5c22eade9be971483b9618f39 --- /dev/null +++ b/timecost/m8/realtabformer/rtf-m8-20260430_214424/rtf_checkpoints/checkpoint-113000/generation_config.json @@ -0,0 +1,9 @@ +{ + "_from_model_config": true, + "bos_token_id": 5, + "eos_token_id": 6, + "output_attentions": false, + "output_hidden_states": false, + "transformers_version": "5.5.3", + "use_cache": true +} diff --git a/timecost/m8/realtabformer/rtf-m8-20260430_214424/rtf_checkpoints/checkpoint-113000/model.safetensors b/timecost/m8/realtabformer/rtf-m8-20260430_214424/rtf_checkpoints/checkpoint-113000/model.safetensors new file mode 100644 index 0000000000000000000000000000000000000000..e1d55bbfc3a3955543dc9dbae7a6b1ea6442cfb8 --- /dev/null +++ b/timecost/m8/realtabformer/rtf-m8-20260430_214424/rtf_checkpoints/checkpoint-113000/model.safetensors @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:83e84fb69be9b08e52d90335c50d080833b2d7d4c410362eba9face1bd431b09 +size 174017992 diff --git a/timecost/m8/realtabformer/rtf-m8-20260430_214424/rtf_checkpoints/checkpoint-113000/optimizer.pt b/timecost/m8/realtabformer/rtf-m8-20260430_214424/rtf_checkpoints/checkpoint-113000/optimizer.pt new file mode 100644 index 0000000000000000000000000000000000000000..1e802dbc3679061dc8b401f02c11d55688331822 --- /dev/null +++ b/timecost/m8/realtabformer/rtf-m8-20260430_214424/rtf_checkpoints/checkpoint-113000/optimizer.pt @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:4f0c3f17df55381e8bb55df20359e8b161288244c6f755f94440b3c7a0cdeb51 +size 348085067 diff --git a/timecost/m8/realtabformer/rtf-m8-20260430_214424/rtf_checkpoints/checkpoint-113000/rng_state.pth b/timecost/m8/realtabformer/rtf-m8-20260430_214424/rtf_checkpoints/checkpoint-113000/rng_state.pth new file mode 100644 index 0000000000000000000000000000000000000000..1ff6c7e0822ed94c663d3af92b9c1db8fc2202a9 --- /dev/null +++ b/timecost/m8/realtabformer/rtf-m8-20260430_214424/rtf_checkpoints/checkpoint-113000/rng_state.pth @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:21c90abfb68e5f48fbe71d41438276fcae387f4d8cf80bd06cc45e066238ce8b +size 14645 diff --git a/timecost/m8/realtabformer/rtf-m8-20260430_214424/rtf_checkpoints/checkpoint-113000/scaler.pt b/timecost/m8/realtabformer/rtf-m8-20260430_214424/rtf_checkpoints/checkpoint-113000/scaler.pt new file mode 100644 index 0000000000000000000000000000000000000000..a60702875123df275fd491adb424e4b76d52c1cd --- /dev/null +++ b/timecost/m8/realtabformer/rtf-m8-20260430_214424/rtf_checkpoints/checkpoint-113000/scaler.pt @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:d723c800b2d3dacfd9f110742f402c3004741fc24a0b077ce7088dd10f371eec +size 1383 diff --git a/timecost/m8/realtabformer/rtf-m8-20260430_214424/rtf_checkpoints/checkpoint-113000/scheduler.pt b/timecost/m8/realtabformer/rtf-m8-20260430_214424/rtf_checkpoints/checkpoint-113000/scheduler.pt new file mode 100644 index 0000000000000000000000000000000000000000..100a7b069dfb1dfed33e9c23c360cdbc1d7e3510 --- /dev/null +++ b/timecost/m8/realtabformer/rtf-m8-20260430_214424/rtf_checkpoints/checkpoint-113000/scheduler.pt @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:412ce84d0493f4dd91fe82f0b886f493bd68dfd44dfa2e782a678790bc6cd4ad +size 1465 diff --git a/timecost/m8/realtabformer/rtf-m8-20260430_214424/rtf_checkpoints/checkpoint-113000/trainer_state.json b/timecost/m8/realtabformer/rtf-m8-20260430_214424/rtf_checkpoints/checkpoint-113000/trainer_state.json new file mode 100644 index 0000000000000000000000000000000000000000..caa21776ba94dc1ed2a299518da3a7c0fb6ba0a5 --- /dev/null +++ b/timecost/m8/realtabformer/rtf-m8-20260430_214424/rtf_checkpoints/checkpoint-113000/trainer_state.json @@ -0,0 +1,7944 @@ +{ + "best_global_step": null, + "best_metric": null, + "best_model_checkpoint": null, + "epoch": 99.91218756912187, + "eval_steps": 100, + "global_step": 113000, + "is_hyper_param_search": false, + "is_local_process_zero": true, + "is_world_process_zero": true, + "log_history": [ + { + "epoch": 0.08847600088476001, + "grad_norm": 0.27971890568733215, + "learning_rate": 4.9956233421750666e-05, + "loss": 1.6012767028808594, + "step": 100 + }, + { + "epoch": 0.17695200176952003, + "grad_norm": 0.2532733976840973, + "learning_rate": 4.991202475685234e-05, + "loss": 1.0460629272460937, + "step": 200 + }, + { + "epoch": 0.26542800265428, + "grad_norm": 0.22527219355106354, + "learning_rate": 4.986781609195402e-05, + "loss": 1.0045037841796876, + "step": 300 + }, + { + "epoch": 0.35390400353904006, + "grad_norm": 0.2071678638458252, + "learning_rate": 4.982360742705571e-05, + "loss": 0.9934071350097656, + "step": 400 + }, + { + "epoch": 0.44238000442380004, + "grad_norm": 0.21996082365512848, + "learning_rate": 4.977939876215739e-05, + "loss": 0.9807382965087891, + "step": 500 + }, + { + "epoch": 0.53085600530856, + "grad_norm": 0.20051148533821106, + "learning_rate": 4.9735190097259064e-05, + "loss": 0.9772834014892579, + "step": 600 + }, + { + "epoch": 0.6193320061933201, + "grad_norm": 0.20692776143550873, + "learning_rate": 4.969098143236074e-05, + "loss": 0.9733844757080078, + "step": 700 + }, + { + "epoch": 0.7078080070780801, + "grad_norm": 0.22139734029769897, + "learning_rate": 4.9646772767462425e-05, + "loss": 0.9641999053955078, + "step": 800 + }, + { + "epoch": 0.79628400796284, + "grad_norm": 0.20099565386772156, + "learning_rate": 4.96025641025641e-05, + "loss": 0.9590901947021484, + "step": 900 + }, + { + "epoch": 0.8847600088476001, + "grad_norm": 0.19050444662570953, + "learning_rate": 4.955835543766578e-05, + "loss": 0.9558430480957031, + "step": 1000 + }, + { + "epoch": 0.9732360097323601, + "grad_norm": 0.20780153572559357, + "learning_rate": 4.951414677276747e-05, + "loss": 0.9558073425292969, + "step": 1100 + }, + { + "epoch": 1.0610484406104843, + "grad_norm": 0.20002400875091553, + "learning_rate": 4.946993810786915e-05, + "loss": 0.9575533294677734, + "step": 1200 + }, + { + "epoch": 1.1495244414952444, + "grad_norm": 0.19394151866436005, + "learning_rate": 4.9425729442970824e-05, + "loss": 0.9556401824951172, + "step": 1300 + }, + { + "epoch": 1.2380004423800044, + "grad_norm": 0.19420816004276276, + "learning_rate": 4.93815207780725e-05, + "loss": 0.948358154296875, + "step": 1400 + }, + { + "epoch": 1.3264764432647644, + "grad_norm": 0.2109377682209015, + "learning_rate": 4.9337312113174185e-05, + "loss": 0.9507483673095704, + "step": 1500 + }, + { + "epoch": 1.4149524441495245, + "grad_norm": 0.19577011466026306, + "learning_rate": 4.929310344827586e-05, + "loss": 0.9544251251220703, + "step": 1600 + }, + { + "epoch": 1.5034284450342845, + "grad_norm": 0.17374339699745178, + "learning_rate": 4.924889478337754e-05, + "loss": 0.9495613098144531, + "step": 1700 + }, + { + "epoch": 1.5919044459190443, + "grad_norm": 0.1539471447467804, + "learning_rate": 4.920468611847922e-05, + "loss": 0.946780014038086, + "step": 1800 + }, + { + "epoch": 1.6803804468038046, + "grad_norm": 0.21705853939056396, + "learning_rate": 4.916047745358091e-05, + "loss": 0.9456329345703125, + "step": 1900 + }, + { + "epoch": 1.7688564476885644, + "grad_norm": 0.18109191954135895, + "learning_rate": 4.9116268788682584e-05, + "loss": 0.9452082061767578, + "step": 2000 + }, + { + "epoch": 1.8573324485733245, + "grad_norm": 0.18233413994312286, + "learning_rate": 4.907206012378426e-05, + "loss": 0.9436309051513672, + "step": 2100 + }, + { + "epoch": 1.9458084494580845, + "grad_norm": 0.19978198409080505, + "learning_rate": 4.9027851458885945e-05, + "loss": 0.9466010284423828, + "step": 2200 + }, + { + "epoch": 2.033620880336209, + "grad_norm": 0.19425439834594727, + "learning_rate": 4.898364279398762e-05, + "loss": 0.9419589233398438, + "step": 2300 + }, + { + "epoch": 2.1220968812209686, + "grad_norm": 0.18522261083126068, + "learning_rate": 4.8939434129089306e-05, + "loss": 0.9406929779052734, + "step": 2400 + }, + { + "epoch": 2.210572882105729, + "grad_norm": 0.18092288076877594, + "learning_rate": 4.889522546419098e-05, + "loss": 0.9394661712646485, + "step": 2500 + }, + { + "epoch": 2.2990488829904887, + "grad_norm": 0.16110995411872864, + "learning_rate": 4.885101679929267e-05, + "loss": 0.9415554809570312, + "step": 2600 + }, + { + "epoch": 2.387524883875249, + "grad_norm": 0.1742609441280365, + "learning_rate": 4.8806808134394344e-05, + "loss": 0.9385026550292969, + "step": 2700 + }, + { + "epoch": 2.476000884760009, + "grad_norm": 0.1893293261528015, + "learning_rate": 4.876259946949602e-05, + "loss": 0.9374285125732422, + "step": 2800 + }, + { + "epoch": 2.564476885644769, + "grad_norm": 0.17022491991519928, + "learning_rate": 4.8718390804597705e-05, + "loss": 0.9414189910888672, + "step": 2900 + }, + { + "epoch": 2.652952886529529, + "grad_norm": 0.1820104867219925, + "learning_rate": 4.867418213969938e-05, + "loss": 0.9428114318847656, + "step": 3000 + }, + { + "epoch": 2.7414288874142887, + "grad_norm": 0.1591845154762268, + "learning_rate": 4.8629973474801066e-05, + "loss": 0.9408238220214844, + "step": 3100 + }, + { + "epoch": 2.829904888299049, + "grad_norm": 0.16679565608501434, + "learning_rate": 4.858576480990274e-05, + "loss": 0.9357293701171875, + "step": 3200 + }, + { + "epoch": 2.918380889183809, + "grad_norm": 0.1608530431985855, + "learning_rate": 4.854155614500443e-05, + "loss": 0.9437465667724609, + "step": 3300 + }, + { + "epoch": 3.006193320061933, + "grad_norm": 0.17832520604133606, + "learning_rate": 4.8497347480106104e-05, + "loss": 0.9349425506591796, + "step": 3400 + }, + { + "epoch": 3.0946693209466933, + "grad_norm": 0.18095993995666504, + "learning_rate": 4.845313881520778e-05, + "loss": 0.9341915130615235, + "step": 3500 + }, + { + "epoch": 3.183145321831453, + "grad_norm": 0.15083801746368408, + "learning_rate": 4.8408930150309465e-05, + "loss": 0.9406319427490234, + "step": 3600 + }, + { + "epoch": 3.2716213227162134, + "grad_norm": 0.17318469285964966, + "learning_rate": 4.836472148541114e-05, + "loss": 0.942470703125, + "step": 3700 + }, + { + "epoch": 3.3600973236009732, + "grad_norm": 0.16380801796913147, + "learning_rate": 4.8320512820512826e-05, + "loss": 0.9362622833251953, + "step": 3800 + }, + { + "epoch": 3.448573324485733, + "grad_norm": 0.16394540667533875, + "learning_rate": 4.82763041556145e-05, + "loss": 0.9353338623046875, + "step": 3900 + }, + { + "epoch": 3.5370493253704933, + "grad_norm": 0.15836960077285767, + "learning_rate": 4.8232095490716186e-05, + "loss": 0.9316812896728516, + "step": 4000 + }, + { + "epoch": 3.625525326255253, + "grad_norm": 0.16170428693294525, + "learning_rate": 4.8187886825817864e-05, + "loss": 0.9331712341308593, + "step": 4100 + }, + { + "epoch": 3.7140013271400134, + "grad_norm": 0.16442789137363434, + "learning_rate": 4.814367816091954e-05, + "loss": 0.9366471862792969, + "step": 4200 + }, + { + "epoch": 3.8024773280247732, + "grad_norm": 0.1728108674287796, + "learning_rate": 4.8099469496021224e-05, + "loss": 0.9279624938964843, + "step": 4300 + }, + { + "epoch": 3.890953328909533, + "grad_norm": 0.16846929490566254, + "learning_rate": 4.80552608311229e-05, + "loss": 0.9343041229248047, + "step": 4400 + }, + { + "epoch": 3.9794293297942933, + "grad_norm": 0.15764060616493225, + "learning_rate": 4.8011052166224585e-05, + "loss": 0.9330953979492187, + "step": 4500 + }, + { + "epoch": 4.067241760672418, + "grad_norm": 0.15639521181583405, + "learning_rate": 4.796684350132626e-05, + "loss": 0.92936279296875, + "step": 4600 + }, + { + "epoch": 4.155717761557177, + "grad_norm": 0.1571352481842041, + "learning_rate": 4.7922634836427946e-05, + "loss": 0.928530502319336, + "step": 4700 + }, + { + "epoch": 4.244193762441937, + "grad_norm": 0.1702045202255249, + "learning_rate": 4.787842617152962e-05, + "loss": 0.928214111328125, + "step": 4800 + }, + { + "epoch": 4.332669763326698, + "grad_norm": 0.15860655903816223, + "learning_rate": 4.78342175066313e-05, + "loss": 0.9305215454101563, + "step": 4900 + }, + { + "epoch": 4.421145764211458, + "grad_norm": 0.15470334887504578, + "learning_rate": 4.779000884173298e-05, + "loss": 0.9308832550048828, + "step": 5000 + }, + { + "epoch": 4.509621765096218, + "grad_norm": 0.18338388204574585, + "learning_rate": 4.774580017683466e-05, + "loss": 0.9284812164306641, + "step": 5100 + }, + { + "epoch": 4.598097765980977, + "grad_norm": 0.16396461427211761, + "learning_rate": 4.7701591511936345e-05, + "loss": 0.9331364440917969, + "step": 5200 + }, + { + "epoch": 4.686573766865738, + "grad_norm": 0.15601013600826263, + "learning_rate": 4.765738284703802e-05, + "loss": 0.9345075225830078, + "step": 5300 + }, + { + "epoch": 4.775049767750498, + "grad_norm": 0.15895380079746246, + "learning_rate": 4.76131741821397e-05, + "loss": 0.9342525482177735, + "step": 5400 + }, + { + "epoch": 4.863525768635258, + "grad_norm": 0.17462770640850067, + "learning_rate": 4.756896551724138e-05, + "loss": 0.9322207641601562, + "step": 5500 + }, + { + "epoch": 4.952001769520018, + "grad_norm": 0.15457525849342346, + "learning_rate": 4.752475685234306e-05, + "loss": 0.9310305023193359, + "step": 5600 + }, + { + "epoch": 5.039814200398142, + "grad_norm": 0.13688383996486664, + "learning_rate": 4.748054818744474e-05, + "loss": 0.9262973022460937, + "step": 5700 + }, + { + "epoch": 5.128290201282902, + "grad_norm": 0.15491563081741333, + "learning_rate": 4.743633952254642e-05, + "loss": 0.927138671875, + "step": 5800 + }, + { + "epoch": 5.216766202167662, + "grad_norm": 0.168558269739151, + "learning_rate": 4.7392130857648105e-05, + "loss": 0.9224365234375, + "step": 5900 + }, + { + "epoch": 5.305242203052422, + "grad_norm": 0.1631685495376587, + "learning_rate": 4.734792219274978e-05, + "loss": 0.9300392913818359, + "step": 6000 + }, + { + "epoch": 5.393718203937182, + "grad_norm": 0.1423729509115219, + "learning_rate": 4.730371352785146e-05, + "loss": 0.926734619140625, + "step": 6100 + }, + { + "epoch": 5.482194204821942, + "grad_norm": 0.15391670167446136, + "learning_rate": 4.725950486295314e-05, + "loss": 0.928184814453125, + "step": 6200 + }, + { + "epoch": 5.570670205706702, + "grad_norm": 0.16460080444812775, + "learning_rate": 4.721529619805482e-05, + "loss": 0.9238227844238281, + "step": 6300 + }, + { + "epoch": 5.659146206591462, + "grad_norm": 0.15589170157909393, + "learning_rate": 4.71710875331565e-05, + "loss": 0.9301457214355469, + "step": 6400 + }, + { + "epoch": 5.747622207476222, + "grad_norm": 0.15851308405399323, + "learning_rate": 4.712687886825818e-05, + "loss": 0.9308782196044922, + "step": 6500 + }, + { + "epoch": 5.836098208360982, + "grad_norm": 0.1777440756559372, + "learning_rate": 4.7082670203359865e-05, + "loss": 0.9248320007324219, + "step": 6600 + }, + { + "epoch": 5.924574209245742, + "grad_norm": 0.17118966579437256, + "learning_rate": 4.703846153846154e-05, + "loss": 0.933470458984375, + "step": 6700 + }, + { + "epoch": 6.012386640123866, + "grad_norm": 0.16862431168556213, + "learning_rate": 4.699425287356322e-05, + "loss": 0.9242423248291015, + "step": 6800 + }, + { + "epoch": 6.100862641008627, + "grad_norm": 0.19494886696338654, + "learning_rate": 4.69500442086649e-05, + "loss": 0.9229951477050782, + "step": 6900 + }, + { + "epoch": 6.189338641893387, + "grad_norm": 0.1628340780735016, + "learning_rate": 4.690583554376658e-05, + "loss": 0.9262020111083984, + "step": 7000 + }, + { + "epoch": 6.2778146427781465, + "grad_norm": 0.18057121336460114, + "learning_rate": 4.686162687886826e-05, + "loss": 0.9253005981445312, + "step": 7100 + }, + { + "epoch": 6.366290643662906, + "grad_norm": 0.16090655326843262, + "learning_rate": 4.681741821396994e-05, + "loss": 0.9206966400146485, + "step": 7200 + }, + { + "epoch": 6.454766644547666, + "grad_norm": 0.16115659475326538, + "learning_rate": 4.6773209549071625e-05, + "loss": 0.9219180297851562, + "step": 7300 + }, + { + "epoch": 6.543242645432427, + "grad_norm": 0.1964244246482849, + "learning_rate": 4.67290008841733e-05, + "loss": 0.9238224029541016, + "step": 7400 + }, + { + "epoch": 6.631718646317187, + "grad_norm": 0.1761396825313568, + "learning_rate": 4.668479221927498e-05, + "loss": 0.9244656372070312, + "step": 7500 + }, + { + "epoch": 6.7201946472019465, + "grad_norm": 0.18016010522842407, + "learning_rate": 4.664058355437666e-05, + "loss": 0.9245244598388672, + "step": 7600 + }, + { + "epoch": 6.808670648086706, + "grad_norm": 0.16012924909591675, + "learning_rate": 4.659637488947834e-05, + "loss": 0.9250524139404297, + "step": 7700 + }, + { + "epoch": 6.897146648971466, + "grad_norm": 0.1722676306962967, + "learning_rate": 4.655216622458002e-05, + "loss": 0.9270682525634766, + "step": 7800 + }, + { + "epoch": 6.985622649856227, + "grad_norm": 0.18756897747516632, + "learning_rate": 4.65079575596817e-05, + "loss": 0.9234317779541016, + "step": 7900 + }, + { + "epoch": 7.073435080734351, + "grad_norm": 0.16759978234767914, + "learning_rate": 4.6463748894783384e-05, + "loss": 0.9213732147216797, + "step": 8000 + }, + { + "epoch": 7.1619110816191105, + "grad_norm": 0.15943242609500885, + "learning_rate": 4.641954022988506e-05, + "loss": 0.9243515014648438, + "step": 8100 + }, + { + "epoch": 7.250387082503871, + "grad_norm": 0.15444102883338928, + "learning_rate": 4.637533156498674e-05, + "loss": 0.9177332305908203, + "step": 8200 + }, + { + "epoch": 7.338863083388631, + "grad_norm": 0.17104187607765198, + "learning_rate": 4.633112290008842e-05, + "loss": 0.9199151611328125, + "step": 8300 + }, + { + "epoch": 7.427339084273391, + "grad_norm": 0.152462899684906, + "learning_rate": 4.62869142351901e-05, + "loss": 0.9231443786621094, + "step": 8400 + }, + { + "epoch": 7.515815085158151, + "grad_norm": 0.1663249433040619, + "learning_rate": 4.6242705570291777e-05, + "loss": 0.9231499481201172, + "step": 8500 + }, + { + "epoch": 7.6042910860429105, + "grad_norm": 0.1711215376853943, + "learning_rate": 4.6198496905393454e-05, + "loss": 0.9192819976806641, + "step": 8600 + }, + { + "epoch": 7.692767086927671, + "grad_norm": 0.1620834916830063, + "learning_rate": 4.6154288240495144e-05, + "loss": 0.9260062408447266, + "step": 8700 + }, + { + "epoch": 7.781243087812431, + "grad_norm": 0.16246546804904938, + "learning_rate": 4.611007957559682e-05, + "loss": 0.9250968933105469, + "step": 8800 + }, + { + "epoch": 7.869719088697191, + "grad_norm": 0.15757358074188232, + "learning_rate": 4.60658709106985e-05, + "loss": 0.9235149383544922, + "step": 8900 + }, + { + "epoch": 7.958195089581951, + "grad_norm": 0.15778206288814545, + "learning_rate": 4.602166224580018e-05, + "loss": 0.9173377227783203, + "step": 9000 + }, + { + "epoch": 8.046007520460075, + "grad_norm": 0.17259791493415833, + "learning_rate": 4.597745358090186e-05, + "loss": 0.9134017181396484, + "step": 9100 + }, + { + "epoch": 8.134483521344835, + "grad_norm": 0.1707502007484436, + "learning_rate": 4.5933244916003536e-05, + "loss": 0.9134098052978515, + "step": 9200 + }, + { + "epoch": 8.222959522229596, + "grad_norm": 0.1647530347108841, + "learning_rate": 4.5889036251105213e-05, + "loss": 0.9205097961425781, + "step": 9300 + }, + { + "epoch": 8.311435523114355, + "grad_norm": 0.16971947252750397, + "learning_rate": 4.5844827586206904e-05, + "loss": 0.9217983245849609, + "step": 9400 + }, + { + "epoch": 8.399911523999116, + "grad_norm": 0.15842877328395844, + "learning_rate": 4.580061892130858e-05, + "loss": 0.9172341918945313, + "step": 9500 + }, + { + "epoch": 8.488387524883874, + "grad_norm": 0.15321888029575348, + "learning_rate": 4.575641025641026e-05, + "loss": 0.9222029113769531, + "step": 9600 + }, + { + "epoch": 8.576863525768635, + "grad_norm": 0.17232707142829895, + "learning_rate": 4.5712201591511935e-05, + "loss": 0.9190543365478515, + "step": 9700 + }, + { + "epoch": 8.665339526653396, + "grad_norm": 0.14735591411590576, + "learning_rate": 4.566799292661362e-05, + "loss": 0.9193865203857422, + "step": 9800 + }, + { + "epoch": 8.753815527538155, + "grad_norm": 0.17929628491401672, + "learning_rate": 4.5623784261715296e-05, + "loss": 0.9178209686279297, + "step": 9900 + }, + { + "epoch": 8.842291528422916, + "grad_norm": 0.1546984612941742, + "learning_rate": 4.557957559681697e-05, + "loss": 0.9209825134277344, + "step": 10000 + }, + { + "epoch": 8.930767529307674, + "grad_norm": 0.16275030374526978, + "learning_rate": 4.553536693191866e-05, + "loss": 0.9219312286376953, + "step": 10100 + }, + { + "epoch": 9.0185799601858, + "grad_norm": 0.16977843642234802, + "learning_rate": 4.549115826702034e-05, + "loss": 0.9190888977050782, + "step": 10200 + }, + { + "epoch": 9.107055961070559, + "grad_norm": 0.16722118854522705, + "learning_rate": 4.544694960212202e-05, + "loss": 0.9173007202148438, + "step": 10300 + }, + { + "epoch": 9.19553196195532, + "grad_norm": 0.15637095272541046, + "learning_rate": 4.5402740937223695e-05, + "loss": 0.9152852630615235, + "step": 10400 + }, + { + "epoch": 9.28400796284008, + "grad_norm": 0.15433216094970703, + "learning_rate": 4.535853227232538e-05, + "loss": 0.9151573944091796, + "step": 10500 + }, + { + "epoch": 9.37248396372484, + "grad_norm": 0.15743562579154968, + "learning_rate": 4.5314323607427056e-05, + "loss": 0.9173799896240235, + "step": 10600 + }, + { + "epoch": 9.4609599646096, + "grad_norm": 0.1527981162071228, + "learning_rate": 4.527011494252873e-05, + "loss": 0.911611328125, + "step": 10700 + }, + { + "epoch": 9.549435965494359, + "grad_norm": 0.15745887160301208, + "learning_rate": 4.522590627763042e-05, + "loss": 0.9144339752197266, + "step": 10800 + }, + { + "epoch": 9.63791196637912, + "grad_norm": 0.1523962914943695, + "learning_rate": 4.51816976127321e-05, + "loss": 0.918481216430664, + "step": 10900 + }, + { + "epoch": 9.72638796726388, + "grad_norm": 0.17231452465057373, + "learning_rate": 4.513748894783378e-05, + "loss": 0.9197111511230469, + "step": 11000 + }, + { + "epoch": 9.81486396814864, + "grad_norm": 0.16348381340503693, + "learning_rate": 4.5093280282935455e-05, + "loss": 0.9151203918457032, + "step": 11100 + }, + { + "epoch": 9.9033399690334, + "grad_norm": 0.16555383801460266, + "learning_rate": 4.504907161803714e-05, + "loss": 0.9189680480957031, + "step": 11200 + }, + { + "epoch": 9.991815969918159, + "grad_norm": 0.16531047224998474, + "learning_rate": 4.5004862953138816e-05, + "loss": 0.9149074554443359, + "step": 11300 + }, + { + "epoch": 10.079628400796285, + "grad_norm": 0.1655273735523224, + "learning_rate": 4.496065428824049e-05, + "loss": 0.9143817138671875, + "step": 11400 + }, + { + "epoch": 10.168104401681044, + "grad_norm": 0.1795828938484192, + "learning_rate": 4.491644562334218e-05, + "loss": 0.911801986694336, + "step": 11500 + }, + { + "epoch": 10.256580402565804, + "grad_norm": 0.1684361696243286, + "learning_rate": 4.487223695844386e-05, + "loss": 0.910247802734375, + "step": 11600 + }, + { + "epoch": 10.345056403450563, + "grad_norm": 0.1620638519525528, + "learning_rate": 4.482802829354554e-05, + "loss": 0.9155111694335938, + "step": 11700 + }, + { + "epoch": 10.433532404335324, + "grad_norm": 0.1695495843887329, + "learning_rate": 4.4783819628647215e-05, + "loss": 0.9134779357910157, + "step": 11800 + }, + { + "epoch": 10.522008405220085, + "grad_norm": 0.18226753175258636, + "learning_rate": 4.47396109637489e-05, + "loss": 0.9143638610839844, + "step": 11900 + }, + { + "epoch": 10.610484406104844, + "grad_norm": 0.15289710462093353, + "learning_rate": 4.4695402298850576e-05, + "loss": 0.9122061157226562, + "step": 12000 + }, + { + "epoch": 10.698960406989604, + "grad_norm": 0.15486228466033936, + "learning_rate": 4.465119363395225e-05, + "loss": 0.9148915863037109, + "step": 12100 + }, + { + "epoch": 10.787436407874363, + "grad_norm": 0.17585019767284393, + "learning_rate": 4.4606984969053937e-05, + "loss": 0.9163182830810547, + "step": 12200 + }, + { + "epoch": 10.875912408759124, + "grad_norm": 0.158732071518898, + "learning_rate": 4.456277630415562e-05, + "loss": 0.9148865509033203, + "step": 12300 + }, + { + "epoch": 10.964388409643885, + "grad_norm": 0.15901361405849457, + "learning_rate": 4.45185676392573e-05, + "loss": 0.9184156799316406, + "step": 12400 + }, + { + "epoch": 11.052200840522008, + "grad_norm": 0.15289290249347687, + "learning_rate": 4.4474358974358974e-05, + "loss": 0.910323486328125, + "step": 12500 + }, + { + "epoch": 11.14067684140677, + "grad_norm": 0.14922171831130981, + "learning_rate": 4.443015030946066e-05, + "loss": 0.9092740631103515, + "step": 12600 + }, + { + "epoch": 11.229152842291528, + "grad_norm": 0.1710701584815979, + "learning_rate": 4.4385941644562335e-05, + "loss": 0.909953842163086, + "step": 12700 + }, + { + "epoch": 11.317628843176289, + "grad_norm": 0.16967815160751343, + "learning_rate": 4.434173297966401e-05, + "loss": 0.9069422912597657, + "step": 12800 + }, + { + "epoch": 11.406104844061048, + "grad_norm": 0.16896069049835205, + "learning_rate": 4.4297524314765696e-05, + "loss": 0.9166646575927735, + "step": 12900 + }, + { + "epoch": 11.494580844945808, + "grad_norm": 0.16996079683303833, + "learning_rate": 4.425331564986738e-05, + "loss": 0.9114566040039063, + "step": 13000 + }, + { + "epoch": 11.58305684583057, + "grad_norm": 0.16553319990634918, + "learning_rate": 4.420910698496906e-05, + "loss": 0.9121807098388672, + "step": 13100 + }, + { + "epoch": 11.671532846715328, + "grad_norm": 0.1629258692264557, + "learning_rate": 4.4164898320070734e-05, + "loss": 0.904563217163086, + "step": 13200 + }, + { + "epoch": 11.760008847600089, + "grad_norm": 0.1660201996564865, + "learning_rate": 4.412068965517241e-05, + "loss": 0.9116962432861329, + "step": 13300 + }, + { + "epoch": 11.848484848484848, + "grad_norm": 0.16493095457553864, + "learning_rate": 4.4076480990274095e-05, + "loss": 0.9136554718017578, + "step": 13400 + }, + { + "epoch": 11.936960849369608, + "grad_norm": 0.15279296040534973, + "learning_rate": 4.403227232537578e-05, + "loss": 0.9120658874511719, + "step": 13500 + }, + { + "epoch": 12.024773280247732, + "grad_norm": 0.16151593625545502, + "learning_rate": 4.3988063660477456e-05, + "loss": 0.9155186462402344, + "step": 13600 + }, + { + "epoch": 12.113249281132493, + "grad_norm": 0.16777871549129486, + "learning_rate": 4.394385499557914e-05, + "loss": 0.9070235443115234, + "step": 13700 + }, + { + "epoch": 12.201725282017254, + "grad_norm": 0.15052072703838348, + "learning_rate": 4.389964633068082e-05, + "loss": 0.9057080078125, + "step": 13800 + }, + { + "epoch": 12.290201282902013, + "grad_norm": 0.17466743290424347, + "learning_rate": 4.3855437665782494e-05, + "loss": 0.9058401489257812, + "step": 13900 + }, + { + "epoch": 12.378677283786773, + "grad_norm": 0.17788690328598022, + "learning_rate": 4.381122900088417e-05, + "loss": 0.9058721923828125, + "step": 14000 + }, + { + "epoch": 12.467153284671532, + "grad_norm": 0.17527516186237335, + "learning_rate": 4.3767020335985855e-05, + "loss": 0.908851089477539, + "step": 14100 + }, + { + "epoch": 12.555629285556293, + "grad_norm": 0.17999336123466492, + "learning_rate": 4.372281167108754e-05, + "loss": 0.9110614013671875, + "step": 14200 + }, + { + "epoch": 12.644105286441054, + "grad_norm": 0.1635061800479889, + "learning_rate": 4.3678603006189216e-05, + "loss": 0.9081086730957031, + "step": 14300 + }, + { + "epoch": 12.732581287325813, + "grad_norm": 0.1813993752002716, + "learning_rate": 4.363439434129089e-05, + "loss": 0.9091014862060547, + "step": 14400 + }, + { + "epoch": 12.821057288210573, + "grad_norm": 0.17487457394599915, + "learning_rate": 4.359018567639258e-05, + "loss": 0.9076325988769531, + "step": 14500 + }, + { + "epoch": 12.909533289095332, + "grad_norm": 0.17149627208709717, + "learning_rate": 4.3545977011494254e-05, + "loss": 0.9064749908447266, + "step": 14600 + }, + { + "epoch": 12.998009289980093, + "grad_norm": 0.16990207135677338, + "learning_rate": 4.350176834659593e-05, + "loss": 0.911828384399414, + "step": 14700 + }, + { + "epoch": 13.085821720858217, + "grad_norm": 0.16583888232707977, + "learning_rate": 4.3458001768346594e-05, + "loss": 0.9017422485351563, + "step": 14800 + }, + { + "epoch": 13.174297721742978, + "grad_norm": 0.1644158959388733, + "learning_rate": 4.341379310344828e-05, + "loss": 0.9052355194091797, + "step": 14900 + }, + { + "epoch": 13.262773722627736, + "grad_norm": 0.1759374737739563, + "learning_rate": 4.336958443854996e-05, + "loss": 0.9027067565917969, + "step": 15000 + }, + { + "epoch": 13.351249723512497, + "grad_norm": 0.1623755842447281, + "learning_rate": 4.332537577365164e-05, + "loss": 0.9078491973876953, + "step": 15100 + }, + { + "epoch": 13.439725724397258, + "grad_norm": 0.15563324093818665, + "learning_rate": 4.3281167108753316e-05, + "loss": 0.9046826171875, + "step": 15200 + }, + { + "epoch": 13.528201725282017, + "grad_norm": 0.1762174814939499, + "learning_rate": 4.3236958443855e-05, + "loss": 0.9070060729980469, + "step": 15300 + }, + { + "epoch": 13.616677726166778, + "grad_norm": 0.1598447859287262, + "learning_rate": 4.319274977895668e-05, + "loss": 0.907843017578125, + "step": 15400 + }, + { + "epoch": 13.705153727051536, + "grad_norm": 0.17838729918003082, + "learning_rate": 4.3148541114058354e-05, + "loss": 0.9077598571777343, + "step": 15500 + }, + { + "epoch": 13.793629727936297, + "grad_norm": 0.16615167260169983, + "learning_rate": 4.310433244916004e-05, + "loss": 0.9041740417480468, + "step": 15600 + }, + { + "epoch": 13.882105728821058, + "grad_norm": 0.16463759541511536, + "learning_rate": 4.306012378426172e-05, + "loss": 0.9023047637939453, + "step": 15700 + }, + { + "epoch": 13.970581729705817, + "grad_norm": 0.1562959849834442, + "learning_rate": 4.30159151193634e-05, + "loss": 0.902835693359375, + "step": 15800 + }, + { + "epoch": 14.058394160583942, + "grad_norm": 0.16919565200805664, + "learning_rate": 4.2971706454465076e-05, + "loss": 0.8998876953125, + "step": 15900 + }, + { + "epoch": 14.146870161468701, + "grad_norm": 0.16513022780418396, + "learning_rate": 4.292749778956676e-05, + "loss": 0.9023524475097656, + "step": 16000 + }, + { + "epoch": 14.235346162353462, + "grad_norm": 0.173946812748909, + "learning_rate": 4.288328912466844e-05, + "loss": 0.8980498504638672, + "step": 16100 + }, + { + "epoch": 14.323822163238221, + "grad_norm": 0.16749872267246246, + "learning_rate": 4.2839080459770114e-05, + "loss": 0.9026957702636719, + "step": 16200 + }, + { + "epoch": 14.412298164122982, + "grad_norm": 0.17985551059246063, + "learning_rate": 4.27948717948718e-05, + "loss": 0.9012105560302734, + "step": 16300 + }, + { + "epoch": 14.500774165007742, + "grad_norm": 0.18807820975780487, + "learning_rate": 4.275066312997348e-05, + "loss": 0.9014115905761719, + "step": 16400 + }, + { + "epoch": 14.589250165892501, + "grad_norm": 0.17243777215480804, + "learning_rate": 4.270645446507516e-05, + "loss": 0.9028221893310547, + "step": 16500 + }, + { + "epoch": 14.677726166777262, + "grad_norm": 0.1674414724111557, + "learning_rate": 4.2662245800176836e-05, + "loss": 0.9017185974121094, + "step": 16600 + }, + { + "epoch": 14.766202167662021, + "grad_norm": 0.17522333562374115, + "learning_rate": 4.261803713527851e-05, + "loss": 0.8989543914794922, + "step": 16700 + }, + { + "epoch": 14.854678168546782, + "grad_norm": 0.16300654411315918, + "learning_rate": 4.2573828470380197e-05, + "loss": 0.9001253509521484, + "step": 16800 + }, + { + "epoch": 14.943154169431542, + "grad_norm": 0.1702653169631958, + "learning_rate": 4.2529619805481874e-05, + "loss": 0.9020176696777343, + "step": 16900 + }, + { + "epoch": 15.030966600309666, + "grad_norm": 0.1752340942621231, + "learning_rate": 4.2485853227232544e-05, + "loss": 0.8990335083007812, + "step": 17000 + }, + { + "epoch": 15.119442601194425, + "grad_norm": 0.17765584588050842, + "learning_rate": 4.244164456233422e-05, + "loss": 0.8885309600830078, + "step": 17100 + }, + { + "epoch": 15.207918602079186, + "grad_norm": 0.18404972553253174, + "learning_rate": 4.23974358974359e-05, + "loss": 0.8915805816650391, + "step": 17200 + }, + { + "epoch": 15.296394602963947, + "grad_norm": 0.17206765711307526, + "learning_rate": 4.235322723253758e-05, + "loss": 0.8898361968994141, + "step": 17300 + }, + { + "epoch": 15.384870603848706, + "grad_norm": 0.19998455047607422, + "learning_rate": 4.230901856763926e-05, + "loss": 0.8957837677001953, + "step": 17400 + }, + { + "epoch": 15.473346604733466, + "grad_norm": 0.19454777240753174, + "learning_rate": 4.2264809902740936e-05, + "loss": 0.8990544891357422, + "step": 17500 + }, + { + "epoch": 15.561822605618225, + "grad_norm": 0.17281410098075867, + "learning_rate": 4.222060123784262e-05, + "loss": 0.8996484375, + "step": 17600 + }, + { + "epoch": 15.650298606502986, + "grad_norm": 0.1906009018421173, + "learning_rate": 4.21763925729443e-05, + "loss": 0.9032618713378906, + "step": 17700 + }, + { + "epoch": 15.738774607387747, + "grad_norm": 0.17282316088676453, + "learning_rate": 4.213218390804598e-05, + "loss": 0.8986404418945313, + "step": 17800 + }, + { + "epoch": 15.827250608272506, + "grad_norm": 0.18802666664123535, + "learning_rate": 4.208797524314766e-05, + "loss": 0.8964502716064453, + "step": 17900 + }, + { + "epoch": 15.915726609157266, + "grad_norm": 0.19853872060775757, + "learning_rate": 4.204376657824934e-05, + "loss": 0.9032749938964844, + "step": 18000 + }, + { + "epoch": 16.003539040035392, + "grad_norm": 0.18812181055545807, + "learning_rate": 4.199955791335102e-05, + "loss": 0.8991973876953125, + "step": 18100 + }, + { + "epoch": 16.09201504092015, + "grad_norm": 0.1644710898399353, + "learning_rate": 4.1955349248452695e-05, + "loss": 0.8866680908203125, + "step": 18200 + }, + { + "epoch": 16.18049104180491, + "grad_norm": 0.1884208619594574, + "learning_rate": 4.191114058355438e-05, + "loss": 0.8872537994384766, + "step": 18300 + }, + { + "epoch": 16.26896704268967, + "grad_norm": 0.1828072965145111, + "learning_rate": 4.186693191865606e-05, + "loss": 0.8902882385253906, + "step": 18400 + }, + { + "epoch": 16.35744304357443, + "grad_norm": 0.19119146466255188, + "learning_rate": 4.182272325375774e-05, + "loss": 0.8903806304931641, + "step": 18500 + }, + { + "epoch": 16.445919044459192, + "grad_norm": 0.20727571845054626, + "learning_rate": 4.177851458885942e-05, + "loss": 0.8952965545654297, + "step": 18600 + }, + { + "epoch": 16.53439504534395, + "grad_norm": 0.18735922873020172, + "learning_rate": 4.17343059239611e-05, + "loss": 0.8870563507080078, + "step": 18700 + }, + { + "epoch": 16.62287104622871, + "grad_norm": 0.1973799169063568, + "learning_rate": 4.169009725906278e-05, + "loss": 0.8974028778076172, + "step": 18800 + }, + { + "epoch": 16.71134704711347, + "grad_norm": 0.20604746043682098, + "learning_rate": 4.1645888594164455e-05, + "loss": 0.8937057495117188, + "step": 18900 + }, + { + "epoch": 16.79982304799823, + "grad_norm": 0.18150219321250916, + "learning_rate": 4.160167992926614e-05, + "loss": 0.8935442352294922, + "step": 19000 + }, + { + "epoch": 16.888299048882992, + "grad_norm": 0.18340304493904114, + "learning_rate": 4.155747126436782e-05, + "loss": 0.8885797119140625, + "step": 19100 + }, + { + "epoch": 16.97677504976775, + "grad_norm": 0.2073577493429184, + "learning_rate": 4.15132625994695e-05, + "loss": 0.8951002502441406, + "step": 19200 + }, + { + "epoch": 17.064587480645876, + "grad_norm": 0.17697007954120636, + "learning_rate": 4.146949602122016e-05, + "loss": 0.8879679870605469, + "step": 19300 + }, + { + "epoch": 17.153063481530634, + "grad_norm": 0.20899821817874908, + "learning_rate": 4.142528735632184e-05, + "loss": 0.8794329833984375, + "step": 19400 + }, + { + "epoch": 17.241539482415394, + "grad_norm": 0.18147091567516327, + "learning_rate": 4.138107869142352e-05, + "loss": 0.8802722930908203, + "step": 19500 + }, + { + "epoch": 17.330015483300155, + "grad_norm": 0.20257830619812012, + "learning_rate": 4.13368700265252e-05, + "loss": 0.8870145416259766, + "step": 19600 + }, + { + "epoch": 17.418491484184916, + "grad_norm": 0.20231416821479797, + "learning_rate": 4.1292661361626885e-05, + "loss": 0.8838448333740234, + "step": 19700 + }, + { + "epoch": 17.506967485069676, + "grad_norm": 0.18214623630046844, + "learning_rate": 4.124845269672856e-05, + "loss": 0.8879763793945312, + "step": 19800 + }, + { + "epoch": 17.595443485954434, + "grad_norm": 0.18666088581085205, + "learning_rate": 4.120424403183024e-05, + "loss": 0.8885836029052734, + "step": 19900 + }, + { + "epoch": 17.683919486839194, + "grad_norm": 0.20308583974838257, + "learning_rate": 4.116003536693192e-05, + "loss": 0.8843843078613282, + "step": 20000 + }, + { + "epoch": 17.772395487723955, + "grad_norm": 0.18726830184459686, + "learning_rate": 4.11158267020336e-05, + "loss": 0.8865486145019531, + "step": 20100 + }, + { + "epoch": 17.860871488608716, + "grad_norm": 0.17878851294517517, + "learning_rate": 4.107161803713528e-05, + "loss": 0.8883515930175782, + "step": 20200 + }, + { + "epoch": 17.949347489493476, + "grad_norm": 0.1849307119846344, + "learning_rate": 4.102740937223696e-05, + "loss": 0.8914216613769531, + "step": 20300 + }, + { + "epoch": 18.0371599203716, + "grad_norm": 0.22315239906311035, + "learning_rate": 4.0983200707338645e-05, + "loss": 0.88252197265625, + "step": 20400 + }, + { + "epoch": 18.12563592125636, + "grad_norm": 0.18446321785449982, + "learning_rate": 4.093899204244032e-05, + "loss": 0.8717878723144531, + "step": 20500 + }, + { + "epoch": 18.214111922141118, + "grad_norm": 0.21541251242160797, + "learning_rate": 4.0894783377542e-05, + "loss": 0.8750727844238281, + "step": 20600 + }, + { + "epoch": 18.30258792302588, + "grad_norm": 0.22268827259540558, + "learning_rate": 4.085057471264368e-05, + "loss": 0.8760640716552734, + "step": 20700 + }, + { + "epoch": 18.39106392391064, + "grad_norm": 0.2207673043012619, + "learning_rate": 4.080636604774536e-05, + "loss": 0.876912841796875, + "step": 20800 + }, + { + "epoch": 18.4795399247954, + "grad_norm": 0.21988292038440704, + "learning_rate": 4.076215738284704e-05, + "loss": 0.8794302368164062, + "step": 20900 + }, + { + "epoch": 18.56801592568016, + "grad_norm": 0.2057323008775711, + "learning_rate": 4.0717948717948714e-05, + "loss": 0.8795650482177735, + "step": 21000 + }, + { + "epoch": 18.656491926564918, + "grad_norm": 0.19854794442653656, + "learning_rate": 4.0673740053050405e-05, + "loss": 0.8824103546142578, + "step": 21100 + }, + { + "epoch": 18.74496792744968, + "grad_norm": 0.2183123230934143, + "learning_rate": 4.062953138815208e-05, + "loss": 0.8792383575439453, + "step": 21200 + }, + { + "epoch": 18.83344392833444, + "grad_norm": 0.20326419174671173, + "learning_rate": 4.058532272325376e-05, + "loss": 0.8834226989746093, + "step": 21300 + }, + { + "epoch": 18.9219199292192, + "grad_norm": 0.20735788345336914, + "learning_rate": 4.054111405835544e-05, + "loss": 0.8820342254638672, + "step": 21400 + }, + { + "epoch": 19.009732360097324, + "grad_norm": 0.2023264467716217, + "learning_rate": 4.04973474801061e-05, + "loss": 0.8843944549560547, + "step": 21500 + }, + { + "epoch": 19.098208360982085, + "grad_norm": 0.21148885786533356, + "learning_rate": 4.045313881520778e-05, + "loss": 0.8647132110595703, + "step": 21600 + }, + { + "epoch": 19.186684361866842, + "grad_norm": 0.2251083254814148, + "learning_rate": 4.040893015030947e-05, + "loss": 0.866364974975586, + "step": 21700 + }, + { + "epoch": 19.275160362751603, + "grad_norm": 0.23524972796440125, + "learning_rate": 4.0364721485411144e-05, + "loss": 0.8736127471923828, + "step": 21800 + }, + { + "epoch": 19.363636363636363, + "grad_norm": 0.21772760152816772, + "learning_rate": 4.032051282051282e-05, + "loss": 0.8692568206787109, + "step": 21900 + }, + { + "epoch": 19.452112364521124, + "grad_norm": 0.2125358134508133, + "learning_rate": 4.0276304155614505e-05, + "loss": 0.8706926727294921, + "step": 22000 + }, + { + "epoch": 19.540588365405885, + "grad_norm": 0.22768475115299225, + "learning_rate": 4.023209549071618e-05, + "loss": 0.8674411010742188, + "step": 22100 + }, + { + "epoch": 19.629064366290642, + "grad_norm": 0.2211151272058487, + "learning_rate": 4.018788682581786e-05, + "loss": 0.8749802398681641, + "step": 22200 + }, + { + "epoch": 19.717540367175403, + "grad_norm": 0.21814538538455963, + "learning_rate": 4.014367816091954e-05, + "loss": 0.8754036712646485, + "step": 22300 + }, + { + "epoch": 19.806016368060163, + "grad_norm": 0.2030419558286667, + "learning_rate": 4.0099469496021226e-05, + "loss": 0.8714677429199219, + "step": 22400 + }, + { + "epoch": 19.894492368944924, + "grad_norm": 0.21472303569316864, + "learning_rate": 4.0055260831122904e-05, + "loss": 0.8727165222167969, + "step": 22500 + }, + { + "epoch": 19.982968369829685, + "grad_norm": 0.20911096036434174, + "learning_rate": 4.001105216622458e-05, + "loss": 0.8781427764892578, + "step": 22600 + }, + { + "epoch": 20.07078080070781, + "grad_norm": 0.2304856926202774, + "learning_rate": 3.9966843501326264e-05, + "loss": 0.8589347076416015, + "step": 22700 + }, + { + "epoch": 20.15925680159257, + "grad_norm": 0.23650145530700684, + "learning_rate": 3.992263483642794e-05, + "loss": 0.8598684692382812, + "step": 22800 + }, + { + "epoch": 20.247732802477326, + "grad_norm": 0.21773482859134674, + "learning_rate": 3.987842617152962e-05, + "loss": 0.8605601501464843, + "step": 22900 + }, + { + "epoch": 20.336208803362087, + "grad_norm": 0.2237112671136856, + "learning_rate": 3.98342175066313e-05, + "loss": 0.8617141723632813, + "step": 23000 + }, + { + "epoch": 20.424684804246848, + "grad_norm": 0.24452048540115356, + "learning_rate": 3.9790008841732986e-05, + "loss": 0.8622699737548828, + "step": 23100 + }, + { + "epoch": 20.51316080513161, + "grad_norm": 0.21587280929088593, + "learning_rate": 3.974580017683466e-05, + "loss": 0.8637493896484375, + "step": 23200 + }, + { + "epoch": 20.60163680601637, + "grad_norm": 0.2406671941280365, + "learning_rate": 3.970159151193634e-05, + "loss": 0.859559555053711, + "step": 23300 + }, + { + "epoch": 20.690112806901126, + "grad_norm": 0.22845898568630219, + "learning_rate": 3.9657382847038024e-05, + "loss": 0.8662923431396484, + "step": 23400 + }, + { + "epoch": 20.778588807785887, + "grad_norm": 0.24683597683906555, + "learning_rate": 3.96131741821397e-05, + "loss": 0.8673475646972656, + "step": 23500 + }, + { + "epoch": 20.867064808670648, + "grad_norm": 0.22459226846694946, + "learning_rate": 3.956896551724138e-05, + "loss": 0.8640863037109375, + "step": 23600 + }, + { + "epoch": 20.95554080955541, + "grad_norm": 0.23616963624954224, + "learning_rate": 3.952475685234306e-05, + "loss": 0.8678861236572266, + "step": 23700 + }, + { + "epoch": 21.043353240433532, + "grad_norm": 0.22973845899105072, + "learning_rate": 3.9480990274093725e-05, + "loss": 0.8580598449707031, + "step": 23800 + }, + { + "epoch": 21.131829241318293, + "grad_norm": 0.2424720972776413, + "learning_rate": 3.94367816091954e-05, + "loss": 0.8460955810546875, + "step": 23900 + }, + { + "epoch": 21.220305242203054, + "grad_norm": 0.2528146505355835, + "learning_rate": 3.9392572944297086e-05, + "loss": 0.8499996185302734, + "step": 24000 + }, + { + "epoch": 21.30878124308781, + "grad_norm": 0.2518126666545868, + "learning_rate": 3.9348364279398763e-05, + "loss": 0.8534349060058594, + "step": 24100 + }, + { + "epoch": 21.39725724397257, + "grad_norm": 0.2305818349123001, + "learning_rate": 3.930415561450044e-05, + "loss": 0.84900146484375, + "step": 24200 + }, + { + "epoch": 21.485733244857332, + "grad_norm": 0.25653600692749023, + "learning_rate": 3.9259946949602124e-05, + "loss": 0.8542990875244141, + "step": 24300 + }, + { + "epoch": 21.574209245742093, + "grad_norm": 0.2712801992893219, + "learning_rate": 3.92157382847038e-05, + "loss": 0.8558815002441407, + "step": 24400 + }, + { + "epoch": 21.662685246626854, + "grad_norm": 0.273328959941864, + "learning_rate": 3.9171529619805485e-05, + "loss": 0.8555754089355468, + "step": 24500 + }, + { + "epoch": 21.75116124751161, + "grad_norm": 0.2668614089488983, + "learning_rate": 3.912732095490716e-05, + "loss": 0.8587675476074219, + "step": 24600 + }, + { + "epoch": 21.83963724839637, + "grad_norm": 0.24395836889743805, + "learning_rate": 3.9083112290008846e-05, + "loss": 0.8572028350830078, + "step": 24700 + }, + { + "epoch": 21.928113249281132, + "grad_norm": 0.24808812141418457, + "learning_rate": 3.903890362511052e-05, + "loss": 0.8579219055175781, + "step": 24800 + }, + { + "epoch": 22.015925680159256, + "grad_norm": 0.2587817311286926, + "learning_rate": 3.89946949602122e-05, + "loss": 0.8512050628662109, + "step": 24900 + }, + { + "epoch": 22.104401681044017, + "grad_norm": 0.26175108551979065, + "learning_rate": 3.8950486295313884e-05, + "loss": 0.8361199188232422, + "step": 25000 + }, + { + "epoch": 22.192877681928778, + "grad_norm": 0.2715345025062561, + "learning_rate": 3.890627763041556e-05, + "loss": 0.8399204254150391, + "step": 25100 + }, + { + "epoch": 22.28135368281354, + "grad_norm": 0.27675682306289673, + "learning_rate": 3.8862068965517245e-05, + "loss": 0.8378430938720703, + "step": 25200 + }, + { + "epoch": 22.369829683698295, + "grad_norm": 0.26540565490722656, + "learning_rate": 3.881786030061892e-05, + "loss": 0.8397164916992188, + "step": 25300 + }, + { + "epoch": 22.458305684583056, + "grad_norm": 0.2754775285720825, + "learning_rate": 3.8773651635720606e-05, + "loss": 0.8450184631347656, + "step": 25400 + }, + { + "epoch": 22.546781685467817, + "grad_norm": 0.2393341213464737, + "learning_rate": 3.872944297082228e-05, + "loss": 0.8427618408203125, + "step": 25500 + }, + { + "epoch": 22.635257686352578, + "grad_norm": 0.23895791172981262, + "learning_rate": 3.868523430592396e-05, + "loss": 0.8457352447509766, + "step": 25600 + }, + { + "epoch": 22.72373368723734, + "grad_norm": 0.26955941319465637, + "learning_rate": 3.8641025641025644e-05, + "loss": 0.849469223022461, + "step": 25700 + }, + { + "epoch": 22.812209688122095, + "grad_norm": 0.23746059834957123, + "learning_rate": 3.859681697612732e-05, + "loss": 0.8469708251953125, + "step": 25800 + }, + { + "epoch": 22.900685689006856, + "grad_norm": 0.2649519145488739, + "learning_rate": 3.8552608311229005e-05, + "loss": 0.849559326171875, + "step": 25900 + }, + { + "epoch": 22.989161689891617, + "grad_norm": 0.27285081148147583, + "learning_rate": 3.850839964633068e-05, + "loss": 0.8485184478759765, + "step": 26000 + }, + { + "epoch": 23.07697412076974, + "grad_norm": 0.27895936369895935, + "learning_rate": 3.8464633068081345e-05, + "loss": 0.8252901458740234, + "step": 26100 + }, + { + "epoch": 23.1654501216545, + "grad_norm": 0.2652367055416107, + "learning_rate": 3.842042440318302e-05, + "loss": 0.8263906097412109, + "step": 26200 + }, + { + "epoch": 23.253926122539262, + "grad_norm": 0.2835598886013031, + "learning_rate": 3.8376215738284706e-05, + "loss": 0.8287677001953125, + "step": 26300 + }, + { + "epoch": 23.342402123424023, + "grad_norm": 0.2834433615207672, + "learning_rate": 3.833200707338638e-05, + "loss": 0.8309012603759766, + "step": 26400 + }, + { + "epoch": 23.43087812430878, + "grad_norm": 0.2998100817203522, + "learning_rate": 3.828779840848807e-05, + "loss": 0.8311166381835937, + "step": 26500 + }, + { + "epoch": 23.51935412519354, + "grad_norm": 0.29382187128067017, + "learning_rate": 3.8243589743589744e-05, + "loss": 0.8325238037109375, + "step": 26600 + }, + { + "epoch": 23.6078301260783, + "grad_norm": 0.2950701415538788, + "learning_rate": 3.819938107869143e-05, + "loss": 0.8368535614013672, + "step": 26700 + }, + { + "epoch": 23.696306126963062, + "grad_norm": 0.287801057100296, + "learning_rate": 3.8155172413793105e-05, + "loss": 0.833930435180664, + "step": 26800 + }, + { + "epoch": 23.784782127847823, + "grad_norm": 0.33100536465644836, + "learning_rate": 3.811096374889478e-05, + "loss": 0.8386001586914062, + "step": 26900 + }, + { + "epoch": 23.87325812873258, + "grad_norm": 0.2911369800567627, + "learning_rate": 3.8066755083996466e-05, + "loss": 0.8410533905029297, + "step": 27000 + }, + { + "epoch": 23.96173412961734, + "grad_norm": 0.26980099081993103, + "learning_rate": 3.802254641909814e-05, + "loss": 0.8360975646972656, + "step": 27100 + }, + { + "epoch": 24.049546560495465, + "grad_norm": 0.3001425862312317, + "learning_rate": 3.797833775419983e-05, + "loss": 0.8234864044189453, + "step": 27200 + }, + { + "epoch": 24.138022561380225, + "grad_norm": 0.27798378467559814, + "learning_rate": 3.7934129089301504e-05, + "loss": 0.8135331726074219, + "step": 27300 + }, + { + "epoch": 24.226498562264986, + "grad_norm": 0.2736954689025879, + "learning_rate": 3.788992042440319e-05, + "loss": 0.8113047027587891, + "step": 27400 + }, + { + "epoch": 24.314974563149747, + "grad_norm": 0.29235804080963135, + "learning_rate": 3.7845711759504865e-05, + "loss": 0.8171870422363281, + "step": 27500 + }, + { + "epoch": 24.403450564034507, + "grad_norm": 0.2878233790397644, + "learning_rate": 3.780150309460654e-05, + "loss": 0.8170029449462891, + "step": 27600 + }, + { + "epoch": 24.491926564919265, + "grad_norm": 0.31602925062179565, + "learning_rate": 3.7757294429708226e-05, + "loss": 0.8223928833007812, + "step": 27700 + }, + { + "epoch": 24.580402565804025, + "grad_norm": 0.3145372271537781, + "learning_rate": 3.77130857648099e-05, + "loss": 0.8257860565185546, + "step": 27800 + }, + { + "epoch": 24.668878566688786, + "grad_norm": 0.30716991424560547, + "learning_rate": 3.7668877099911587e-05, + "loss": 0.8240725708007812, + "step": 27900 + }, + { + "epoch": 24.757354567573547, + "grad_norm": 0.28368160128593445, + "learning_rate": 3.7624668435013264e-05, + "loss": 0.825384521484375, + "step": 28000 + }, + { + "epoch": 24.845830568458307, + "grad_norm": 0.2867664694786072, + "learning_rate": 3.758045977011495e-05, + "loss": 0.8270760345458984, + "step": 28100 + }, + { + "epoch": 24.934306569343065, + "grad_norm": 0.28817129135131836, + "learning_rate": 3.7536251105216624e-05, + "loss": 0.8286974334716797, + "step": 28200 + }, + { + "epoch": 25.02211900022119, + "grad_norm": 0.3106354773044586, + "learning_rate": 3.749248452696729e-05, + "loss": 0.82120849609375, + "step": 28300 + }, + { + "epoch": 25.11059500110595, + "grad_norm": 0.3304692506790161, + "learning_rate": 3.7448275862068965e-05, + "loss": 0.8016901397705078, + "step": 28400 + }, + { + "epoch": 25.19907100199071, + "grad_norm": 0.3065616488456726, + "learning_rate": 3.740406719717064e-05, + "loss": 0.8027448272705078, + "step": 28500 + }, + { + "epoch": 25.28754700287547, + "grad_norm": 0.3456852436065674, + "learning_rate": 3.735985853227233e-05, + "loss": 0.8046049499511718, + "step": 28600 + }, + { + "epoch": 25.37602300376023, + "grad_norm": 0.3011663556098938, + "learning_rate": 3.731564986737401e-05, + "loss": 0.8079199981689453, + "step": 28700 + }, + { + "epoch": 25.46449900464499, + "grad_norm": 0.3659413158893585, + "learning_rate": 3.7271441202475687e-05, + "loss": 0.8079922485351563, + "step": 28800 + }, + { + "epoch": 25.55297500552975, + "grad_norm": 0.3281838595867157, + "learning_rate": 3.7227232537577364e-05, + "loss": 0.8134046173095704, + "step": 28900 + }, + { + "epoch": 25.64145100641451, + "grad_norm": 0.3106602132320404, + "learning_rate": 3.718302387267905e-05, + "loss": 0.8104205322265625, + "step": 29000 + }, + { + "epoch": 25.72992700729927, + "grad_norm": 0.3320154845714569, + "learning_rate": 3.7138815207780725e-05, + "loss": 0.8142304992675782, + "step": 29100 + }, + { + "epoch": 25.81840300818403, + "grad_norm": 0.3355977535247803, + "learning_rate": 3.70946065428824e-05, + "loss": 0.8125243377685547, + "step": 29200 + }, + { + "epoch": 25.90687900906879, + "grad_norm": 0.3472290635108948, + "learning_rate": 3.7050397877984085e-05, + "loss": 0.8146660614013672, + "step": 29300 + }, + { + "epoch": 25.99535500995355, + "grad_norm": 0.31780678033828735, + "learning_rate": 3.700618921308577e-05, + "loss": 0.8169705200195313, + "step": 29400 + }, + { + "epoch": 26.083167440831673, + "grad_norm": 0.3046151101589203, + "learning_rate": 3.6961980548187446e-05, + "loss": 0.7894915008544922, + "step": 29500 + }, + { + "epoch": 26.171643441716434, + "grad_norm": 0.3560829162597656, + "learning_rate": 3.6917771883289123e-05, + "loss": 0.7867289733886719, + "step": 29600 + }, + { + "epoch": 26.260119442601194, + "grad_norm": 0.33036884665489197, + "learning_rate": 3.687356321839081e-05, + "loss": 0.7914912414550781, + "step": 29700 + }, + { + "epoch": 26.348595443485955, + "grad_norm": 0.3302215039730072, + "learning_rate": 3.6829354553492484e-05, + "loss": 0.7926998901367187, + "step": 29800 + }, + { + "epoch": 26.437071444370716, + "grad_norm": 0.33766239881515503, + "learning_rate": 3.678514588859416e-05, + "loss": 0.7958551788330078, + "step": 29900 + }, + { + "epoch": 26.525547445255473, + "grad_norm": 0.34900912642478943, + "learning_rate": 3.6740937223695845e-05, + "loss": 0.7958287811279297, + "step": 30000 + }, + { + "epoch": 26.614023446140234, + "grad_norm": 0.3290475010871887, + "learning_rate": 3.669672855879753e-05, + "loss": 0.7994923400878906, + "step": 30100 + }, + { + "epoch": 26.702499447024994, + "grad_norm": 0.3304896950721741, + "learning_rate": 3.6652519893899206e-05, + "loss": 0.8000531005859375, + "step": 30200 + }, + { + "epoch": 26.790975447909755, + "grad_norm": 0.32132837176322937, + "learning_rate": 3.660831122900088e-05, + "loss": 0.8006639862060547, + "step": 30300 + }, + { + "epoch": 26.879451448794516, + "grad_norm": 0.3341081142425537, + "learning_rate": 3.656410256410257e-05, + "loss": 0.8037942504882812, + "step": 30400 + }, + { + "epoch": 26.967927449679273, + "grad_norm": 0.3406025171279907, + "learning_rate": 3.6519893899204244e-05, + "loss": 0.8009793853759766, + "step": 30500 + }, + { + "epoch": 27.0557398805574, + "grad_norm": 0.3396868109703064, + "learning_rate": 3.647568523430592e-05, + "loss": 0.7846424865722657, + "step": 30600 + }, + { + "epoch": 27.144215881442157, + "grad_norm": 0.33319470286369324, + "learning_rate": 3.6431476569407605e-05, + "loss": 0.7724665832519532, + "step": 30700 + }, + { + "epoch": 27.232691882326918, + "grad_norm": 0.38071826100349426, + "learning_rate": 3.638726790450929e-05, + "loss": 0.7791647338867187, + "step": 30800 + }, + { + "epoch": 27.32116788321168, + "grad_norm": 0.3640372157096863, + "learning_rate": 3.6343059239610966e-05, + "loss": 0.778485107421875, + "step": 30900 + }, + { + "epoch": 27.40964388409644, + "grad_norm": 0.34701183438301086, + "learning_rate": 3.629885057471264e-05, + "loss": 0.7812682342529297, + "step": 31000 + }, + { + "epoch": 27.4981198849812, + "grad_norm": 0.34723395109176636, + "learning_rate": 3.625464190981433e-05, + "loss": 0.7816720581054688, + "step": 31100 + }, + { + "epoch": 27.586595885865957, + "grad_norm": 0.3967572748661041, + "learning_rate": 3.6210433244916004e-05, + "loss": 0.7825845336914062, + "step": 31200 + }, + { + "epoch": 27.675071886750718, + "grad_norm": 0.36156365275382996, + "learning_rate": 3.616622458001768e-05, + "loss": 0.7875003814697266, + "step": 31300 + }, + { + "epoch": 27.76354788763548, + "grad_norm": 0.37152451276779175, + "learning_rate": 3.6122015915119365e-05, + "loss": 0.7848563385009766, + "step": 31400 + }, + { + "epoch": 27.85202388852024, + "grad_norm": 0.3751819431781769, + "learning_rate": 3.607780725022105e-05, + "loss": 0.7901625061035156, + "step": 31500 + }, + { + "epoch": 27.940499889405, + "grad_norm": 0.32409200072288513, + "learning_rate": 3.6033598585322726e-05, + "loss": 0.7916508483886718, + "step": 31600 + }, + { + "epoch": 28.028312320283124, + "grad_norm": 0.36621779203414917, + "learning_rate": 3.59893899204244e-05, + "loss": 0.7814656066894531, + "step": 31700 + }, + { + "epoch": 28.116788321167885, + "grad_norm": 0.35782715678215027, + "learning_rate": 3.594518125552609e-05, + "loss": 0.7565266418457032, + "step": 31800 + }, + { + "epoch": 28.205264322052642, + "grad_norm": 0.34983065724372864, + "learning_rate": 3.5900972590627764e-05, + "loss": 0.7589649963378906, + "step": 31900 + }, + { + "epoch": 28.293740322937403, + "grad_norm": 0.36476004123687744, + "learning_rate": 3.585676392572945e-05, + "loss": 0.7618669891357421, + "step": 32000 + }, + { + "epoch": 28.382216323822163, + "grad_norm": 0.3663191795349121, + "learning_rate": 3.5812555260831125e-05, + "loss": 0.768099136352539, + "step": 32100 + }, + { + "epoch": 28.470692324706924, + "grad_norm": 0.3572807312011719, + "learning_rate": 3.576834659593281e-05, + "loss": 0.7697807312011719, + "step": 32200 + }, + { + "epoch": 28.559168325591685, + "grad_norm": 0.39800935983657837, + "learning_rate": 3.5724580017683465e-05, + "loss": 0.7714015960693359, + "step": 32300 + }, + { + "epoch": 28.647644326476442, + "grad_norm": 0.3792218863964081, + "learning_rate": 3.568037135278515e-05, + "loss": 0.7737385559082032, + "step": 32400 + }, + { + "epoch": 28.736120327361203, + "grad_norm": 0.4109075665473938, + "learning_rate": 3.5636162687886826e-05, + "loss": 0.7772123718261719, + "step": 32500 + }, + { + "epoch": 28.824596328245963, + "grad_norm": 0.40446004271507263, + "learning_rate": 3.55919540229885e-05, + "loss": 0.7722319030761718, + "step": 32600 + }, + { + "epoch": 28.913072329130724, + "grad_norm": 0.39553946256637573, + "learning_rate": 3.554774535809019e-05, + "loss": 0.7767266082763672, + "step": 32700 + }, + { + "epoch": 29.000884760008848, + "grad_norm": 0.3675474226474762, + "learning_rate": 3.550397877984085e-05, + "loss": 0.7800326538085938, + "step": 32800 + }, + { + "epoch": 29.08936076089361, + "grad_norm": 0.37354156374931335, + "learning_rate": 3.5459770114942534e-05, + "loss": 0.7407066345214843, + "step": 32900 + }, + { + "epoch": 29.17783676177837, + "grad_norm": 0.3970542550086975, + "learning_rate": 3.541556145004421e-05, + "loss": 0.7467523956298828, + "step": 33000 + }, + { + "epoch": 29.266312762663127, + "grad_norm": 0.3625730872154236, + "learning_rate": 3.537135278514589e-05, + "loss": 0.7477723693847657, + "step": 33100 + }, + { + "epoch": 29.354788763547887, + "grad_norm": 0.37132611870765686, + "learning_rate": 3.532714412024757e-05, + "loss": 0.7502822875976562, + "step": 33200 + }, + { + "epoch": 29.443264764432648, + "grad_norm": 0.3668833374977112, + "learning_rate": 3.528293545534925e-05, + "loss": 0.7570280456542968, + "step": 33300 + }, + { + "epoch": 29.53174076531741, + "grad_norm": 0.404186874628067, + "learning_rate": 3.523872679045093e-05, + "loss": 0.7576876831054687, + "step": 33400 + }, + { + "epoch": 29.62021676620217, + "grad_norm": 0.407461017370224, + "learning_rate": 3.519451812555261e-05, + "loss": 0.7606333923339844, + "step": 33500 + }, + { + "epoch": 29.708692767086927, + "grad_norm": 0.4091641902923584, + "learning_rate": 3.5150309460654294e-05, + "loss": 0.7598370361328125, + "step": 33600 + }, + { + "epoch": 29.797168767971687, + "grad_norm": 0.36642369627952576, + "learning_rate": 3.510610079575597e-05, + "loss": 0.7617308807373047, + "step": 33700 + }, + { + "epoch": 29.885644768856448, + "grad_norm": 0.3767990171909332, + "learning_rate": 3.506189213085765e-05, + "loss": 0.760002670288086, + "step": 33800 + }, + { + "epoch": 29.97412076974121, + "grad_norm": 0.3992450535297394, + "learning_rate": 3.5017683465959325e-05, + "loss": 0.7659886932373047, + "step": 33900 + }, + { + "epoch": 30.061933200619332, + "grad_norm": 0.38657036423683167, + "learning_rate": 3.497347480106101e-05, + "loss": 0.7397030639648438, + "step": 34000 + }, + { + "epoch": 30.150409201504093, + "grad_norm": 0.40928229689598083, + "learning_rate": 3.492926613616269e-05, + "loss": 0.7280159759521484, + "step": 34100 + }, + { + "epoch": 30.23888520238885, + "grad_norm": 0.41609957814216614, + "learning_rate": 3.488505747126437e-05, + "loss": 0.7327291107177735, + "step": 34200 + }, + { + "epoch": 30.32736120327361, + "grad_norm": 0.3990429639816284, + "learning_rate": 3.4840848806366047e-05, + "loss": 0.7359205627441406, + "step": 34300 + }, + { + "epoch": 30.41583720415837, + "grad_norm": 0.40403324365615845, + "learning_rate": 3.479664014146773e-05, + "loss": 0.73650390625, + "step": 34400 + }, + { + "epoch": 30.504313205043132, + "grad_norm": 0.42696642875671387, + "learning_rate": 3.475243147656941e-05, + "loss": 0.7416681671142578, + "step": 34500 + }, + { + "epoch": 30.592789205927893, + "grad_norm": 0.3891199231147766, + "learning_rate": 3.4708222811671085e-05, + "loss": 0.742286605834961, + "step": 34600 + }, + { + "epoch": 30.68126520681265, + "grad_norm": 0.3660706877708435, + "learning_rate": 3.466401414677277e-05, + "loss": 0.7444020080566406, + "step": 34700 + }, + { + "epoch": 30.76974120769741, + "grad_norm": 0.43280747532844543, + "learning_rate": 3.461980548187445e-05, + "loss": 0.7461125183105469, + "step": 34800 + }, + { + "epoch": 30.85821720858217, + "grad_norm": 0.4279727041721344, + "learning_rate": 3.457559681697613e-05, + "loss": 0.7497645568847656, + "step": 34900 + }, + { + "epoch": 30.946693209466932, + "grad_norm": 0.4162921905517578, + "learning_rate": 3.4531388152077806e-05, + "loss": 0.7478341674804687, + "step": 35000 + }, + { + "epoch": 31.034505640345056, + "grad_norm": 0.4011857211589813, + "learning_rate": 3.448762157382847e-05, + "loss": 0.7373168182373047, + "step": 35100 + }, + { + "epoch": 31.122981641229817, + "grad_norm": 0.42476192116737366, + "learning_rate": 3.444341290893015e-05, + "loss": 0.714128646850586, + "step": 35200 + }, + { + "epoch": 31.211457642114578, + "grad_norm": 0.4272063672542572, + "learning_rate": 3.439920424403183e-05, + "loss": 0.717328872680664, + "step": 35300 + }, + { + "epoch": 31.299933642999335, + "grad_norm": 0.39419060945510864, + "learning_rate": 3.4354995579133514e-05, + "loss": 0.7182811737060547, + "step": 35400 + }, + { + "epoch": 31.388409643884096, + "grad_norm": 0.4092519283294678, + "learning_rate": 3.431078691423519e-05, + "loss": 0.7223808288574218, + "step": 35500 + }, + { + "epoch": 31.476885644768856, + "grad_norm": 0.45683449506759644, + "learning_rate": 3.4266578249336875e-05, + "loss": 0.7236460876464844, + "step": 35600 + }, + { + "epoch": 31.565361645653617, + "grad_norm": 0.4914647936820984, + "learning_rate": 3.422236958443855e-05, + "loss": 0.728529052734375, + "step": 35700 + }, + { + "epoch": 31.653837646538378, + "grad_norm": 0.439372718334198, + "learning_rate": 3.417816091954023e-05, + "loss": 0.7269135284423828, + "step": 35800 + }, + { + "epoch": 31.742313647423135, + "grad_norm": 0.488553911447525, + "learning_rate": 3.413395225464191e-05, + "loss": 0.7319352722167969, + "step": 35900 + }, + { + "epoch": 31.830789648307896, + "grad_norm": 0.43236035108566284, + "learning_rate": 3.408974358974359e-05, + "loss": 0.7336878204345703, + "step": 36000 + }, + { + "epoch": 31.919265649192656, + "grad_norm": 0.42669814825057983, + "learning_rate": 3.4045534924845274e-05, + "loss": 0.7357192993164062, + "step": 36100 + }, + { + "epoch": 32.007078080070784, + "grad_norm": 0.40464460849761963, + "learning_rate": 3.400132625994695e-05, + "loss": 0.7324215698242188, + "step": 36200 + }, + { + "epoch": 32.09555408095554, + "grad_norm": 0.4362545311450958, + "learning_rate": 3.3957117595048635e-05, + "loss": 0.6976793670654297, + "step": 36300 + }, + { + "epoch": 32.1840300818403, + "grad_norm": 0.46484723687171936, + "learning_rate": 3.391290893015031e-05, + "loss": 0.6972021484375, + "step": 36400 + }, + { + "epoch": 32.27250608272506, + "grad_norm": 0.43313083052635193, + "learning_rate": 3.386870026525199e-05, + "loss": 0.7049392700195313, + "step": 36500 + }, + { + "epoch": 32.36098208360982, + "grad_norm": 0.437752366065979, + "learning_rate": 3.3824491600353666e-05, + "loss": 0.7091526794433594, + "step": 36600 + }, + { + "epoch": 32.44945808449458, + "grad_norm": 0.44550085067749023, + "learning_rate": 3.378028293545535e-05, + "loss": 0.7121316528320313, + "step": 36700 + }, + { + "epoch": 32.53793408537934, + "grad_norm": 0.46052590012550354, + "learning_rate": 3.3736074270557034e-05, + "loss": 0.7150274658203125, + "step": 36800 + }, + { + "epoch": 32.6264100862641, + "grad_norm": 0.4344913065433502, + "learning_rate": 3.369186560565871e-05, + "loss": 0.7130059814453125, + "step": 36900 + }, + { + "epoch": 32.71488608714886, + "grad_norm": 0.45924630761146545, + "learning_rate": 3.364765694076039e-05, + "loss": 0.7156332397460937, + "step": 37000 + }, + { + "epoch": 32.80336208803362, + "grad_norm": 0.41177231073379517, + "learning_rate": 3.360344827586207e-05, + "loss": 0.7184346008300782, + "step": 37100 + }, + { + "epoch": 32.891838088918384, + "grad_norm": 0.44688835740089417, + "learning_rate": 3.355923961096375e-05, + "loss": 0.7201016235351563, + "step": 37200 + }, + { + "epoch": 32.980314089803144, + "grad_norm": 0.4971197545528412, + "learning_rate": 3.3515030946065426e-05, + "loss": 0.7191078186035156, + "step": 37300 + }, + { + "epoch": 33.06812652068127, + "grad_norm": 0.47201091051101685, + "learning_rate": 3.347126436781609e-05, + "loss": 0.6914530944824219, + "step": 37400 + }, + { + "epoch": 33.15660252156602, + "grad_norm": 0.4473711848258972, + "learning_rate": 3.342705570291777e-05, + "loss": 0.6855306243896484, + "step": 37500 + }, + { + "epoch": 33.24507852245078, + "grad_norm": 0.4745553135871887, + "learning_rate": 3.338284703801946e-05, + "loss": 0.6888325500488282, + "step": 37600 + }, + { + "epoch": 33.33355452333554, + "grad_norm": 0.45796144008636475, + "learning_rate": 3.3338638373121134e-05, + "loss": 0.6924916076660156, + "step": 37700 + }, + { + "epoch": 33.422030524220304, + "grad_norm": 0.47769099473953247, + "learning_rate": 3.329442970822281e-05, + "loss": 0.6937997436523438, + "step": 37800 + }, + { + "epoch": 33.510506525105065, + "grad_norm": 0.4637518525123596, + "learning_rate": 3.3250221043324495e-05, + "loss": 0.6975637817382813, + "step": 37900 + }, + { + "epoch": 33.598982525989825, + "grad_norm": 0.47370946407318115, + "learning_rate": 3.320601237842617e-05, + "loss": 0.6985407257080078, + "step": 38000 + }, + { + "epoch": 33.687458526874586, + "grad_norm": 0.467692106962204, + "learning_rate": 3.316180371352785e-05, + "loss": 0.7032517242431641, + "step": 38100 + }, + { + "epoch": 33.77593452775935, + "grad_norm": 0.4691486060619354, + "learning_rate": 3.311759504862953e-05, + "loss": 0.7019402313232422, + "step": 38200 + }, + { + "epoch": 33.86441052864411, + "grad_norm": 0.465666264295578, + "learning_rate": 3.307338638373122e-05, + "loss": 0.7065095520019531, + "step": 38300 + }, + { + "epoch": 33.95288652952887, + "grad_norm": 0.4870339632034302, + "learning_rate": 3.3029177718832894e-05, + "loss": 0.7060601043701172, + "step": 38400 + }, + { + "epoch": 34.04069896040699, + "grad_norm": 0.46102386713027954, + "learning_rate": 3.298496905393457e-05, + "loss": 0.6895645141601563, + "step": 38500 + }, + { + "epoch": 34.12917496129175, + "grad_norm": 0.4717739522457123, + "learning_rate": 3.2940760389036255e-05, + "loss": 0.6683721160888672, + "step": 38600 + }, + { + "epoch": 34.217650962176506, + "grad_norm": 0.47995516657829285, + "learning_rate": 3.289655172413793e-05, + "loss": 0.67727294921875, + "step": 38700 + }, + { + "epoch": 34.30612696306127, + "grad_norm": 0.4676993191242218, + "learning_rate": 3.2852343059239616e-05, + "loss": 0.6742596435546875, + "step": 38800 + }, + { + "epoch": 34.39460296394603, + "grad_norm": 0.4986591935157776, + "learning_rate": 3.280813439434129e-05, + "loss": 0.6811554718017578, + "step": 38900 + }, + { + "epoch": 34.48307896483079, + "grad_norm": 0.49108394980430603, + "learning_rate": 3.2763925729442977e-05, + "loss": 0.6826177215576172, + "step": 39000 + }, + { + "epoch": 34.57155496571555, + "grad_norm": 0.46544989943504333, + "learning_rate": 3.2719717064544654e-05, + "loss": 0.6843925476074219, + "step": 39100 + }, + { + "epoch": 34.66003096660031, + "grad_norm": 0.4714086055755615, + "learning_rate": 3.267550839964633e-05, + "loss": 0.6843089294433594, + "step": 39200 + }, + { + "epoch": 34.74850696748507, + "grad_norm": 0.4726520776748657, + "learning_rate": 3.263129973474801e-05, + "loss": 0.687828140258789, + "step": 39300 + }, + { + "epoch": 34.83698296836983, + "grad_norm": 0.5056101083755493, + "learning_rate": 3.258709106984969e-05, + "loss": 0.6943804168701172, + "step": 39400 + }, + { + "epoch": 34.92545896925459, + "grad_norm": 0.5143911242485046, + "learning_rate": 3.2542882404951375e-05, + "loss": 0.6947840118408203, + "step": 39500 + }, + { + "epoch": 35.013271400132716, + "grad_norm": 0.4712352752685547, + "learning_rate": 3.249867374005305e-05, + "loss": 0.6877326965332031, + "step": 39600 + }, + { + "epoch": 35.10174740101748, + "grad_norm": 0.5000380873680115, + "learning_rate": 3.2454465075154736e-05, + "loss": 0.6556487274169922, + "step": 39700 + }, + { + "epoch": 35.19022340190224, + "grad_norm": 0.5022478699684143, + "learning_rate": 3.2410256410256413e-05, + "loss": 0.6607290649414063, + "step": 39800 + }, + { + "epoch": 35.27869940278699, + "grad_norm": 0.511082112789154, + "learning_rate": 3.236604774535809e-05, + "loss": 0.6585157775878906, + "step": 39900 + }, + { + "epoch": 35.36717540367175, + "grad_norm": 0.45338326692581177, + "learning_rate": 3.232183908045977e-05, + "loss": 0.6670406341552735, + "step": 40000 + }, + { + "epoch": 35.45565140455651, + "grad_norm": 0.47589078545570374, + "learning_rate": 3.227763041556145e-05, + "loss": 0.6654150390625, + "step": 40100 + }, + { + "epoch": 35.54412740544127, + "grad_norm": 0.5111287236213684, + "learning_rate": 3.2233421750663135e-05, + "loss": 0.6706926727294922, + "step": 40200 + }, + { + "epoch": 35.632603406326034, + "grad_norm": 0.48615771532058716, + "learning_rate": 3.218921308576481e-05, + "loss": 0.6724550628662109, + "step": 40300 + }, + { + "epoch": 35.721079407210794, + "grad_norm": 0.5141739845275879, + "learning_rate": 3.214500442086649e-05, + "loss": 0.674487075805664, + "step": 40400 + }, + { + "epoch": 35.809555408095555, + "grad_norm": 0.512373149394989, + "learning_rate": 3.210079575596817e-05, + "loss": 0.6809010314941406, + "step": 40500 + }, + { + "epoch": 35.898031408980316, + "grad_norm": 0.5156219005584717, + "learning_rate": 3.205658709106985e-05, + "loss": 0.6783308410644531, + "step": 40600 + }, + { + "epoch": 35.98650740986508, + "grad_norm": 0.5266398191452026, + "learning_rate": 3.201237842617153e-05, + "loss": 0.6796981811523437, + "step": 40700 + }, + { + "epoch": 36.0743198407432, + "grad_norm": 0.5198646783828735, + "learning_rate": 3.196861184792219e-05, + "loss": 0.648563232421875, + "step": 40800 + }, + { + "epoch": 36.16279584162796, + "grad_norm": 0.4699224829673767, + "learning_rate": 3.1924403183023874e-05, + "loss": 0.6464600372314453, + "step": 40900 + }, + { + "epoch": 36.25127184251272, + "grad_norm": 0.5014195442199707, + "learning_rate": 3.188019451812556e-05, + "loss": 0.6471477508544922, + "step": 41000 + }, + { + "epoch": 36.339747843397475, + "grad_norm": 0.5231509804725647, + "learning_rate": 3.1835985853227235e-05, + "loss": 0.6519639587402344, + "step": 41100 + }, + { + "epoch": 36.428223844282236, + "grad_norm": 0.4843427538871765, + "learning_rate": 3.179177718832891e-05, + "loss": 0.6523241424560546, + "step": 41200 + }, + { + "epoch": 36.516699845167, + "grad_norm": 0.4956904351711273, + "learning_rate": 3.1747568523430596e-05, + "loss": 0.6547152709960937, + "step": 41300 + }, + { + "epoch": 36.60517584605176, + "grad_norm": 0.5103031396865845, + "learning_rate": 3.170335985853227e-05, + "loss": 0.6602716827392578, + "step": 41400 + }, + { + "epoch": 36.69365184693652, + "grad_norm": 0.5028578042984009, + "learning_rate": 3.165915119363395e-05, + "loss": 0.6617116546630859, + "step": 41500 + }, + { + "epoch": 36.78212784782128, + "grad_norm": 0.4997723698616028, + "learning_rate": 3.1614942528735634e-05, + "loss": 0.6632434844970703, + "step": 41600 + }, + { + "epoch": 36.87060384870604, + "grad_norm": 0.5246814489364624, + "learning_rate": 3.157073386383732e-05, + "loss": 0.6632743835449219, + "step": 41700 + }, + { + "epoch": 36.9590798495908, + "grad_norm": 0.5308569073677063, + "learning_rate": 3.1526525198938995e-05, + "loss": 0.6639631652832031, + "step": 41800 + }, + { + "epoch": 37.046892280468924, + "grad_norm": 0.49218234419822693, + "learning_rate": 3.148231653404067e-05, + "loss": 0.6452173614501953, + "step": 41900 + }, + { + "epoch": 37.135368281353685, + "grad_norm": 0.4680822491645813, + "learning_rate": 3.143810786914235e-05, + "loss": 0.6319191360473633, + "step": 42000 + }, + { + "epoch": 37.223844282238446, + "grad_norm": 0.4810407757759094, + "learning_rate": 3.139389920424403e-05, + "loss": 0.6338667297363281, + "step": 42100 + }, + { + "epoch": 37.3123202831232, + "grad_norm": 0.545889139175415, + "learning_rate": 3.134969053934571e-05, + "loss": 0.6395709228515625, + "step": 42200 + }, + { + "epoch": 37.40079628400796, + "grad_norm": 0.5600217580795288, + "learning_rate": 3.1305481874447394e-05, + "loss": 0.6406965637207032, + "step": 42300 + }, + { + "epoch": 37.48927228489272, + "grad_norm": 0.5517903566360474, + "learning_rate": 3.126127320954908e-05, + "loss": 0.6428462982177734, + "step": 42400 + }, + { + "epoch": 37.57774828577748, + "grad_norm": 0.49925389885902405, + "learning_rate": 3.1217064544650755e-05, + "loss": 0.6470170593261719, + "step": 42500 + }, + { + "epoch": 37.66622428666224, + "grad_norm": 0.4698370397090912, + "learning_rate": 3.117285587975243e-05, + "loss": 0.6477708435058593, + "step": 42600 + }, + { + "epoch": 37.754700287547, + "grad_norm": 0.5349763035774231, + "learning_rate": 3.112864721485411e-05, + "loss": 0.6515216827392578, + "step": 42700 + }, + { + "epoch": 37.84317628843176, + "grad_norm": 0.5066236853599548, + "learning_rate": 3.108443854995579e-05, + "loss": 0.6522242736816406, + "step": 42800 + }, + { + "epoch": 37.931652289316524, + "grad_norm": 0.5211920142173767, + "learning_rate": 3.104022988505747e-05, + "loss": 0.6515906524658203, + "step": 42900 + }, + { + "epoch": 38.01946472019465, + "grad_norm": 0.5003405213356018, + "learning_rate": 3.099646330680814e-05, + "loss": 0.6448411560058593, + "step": 43000 + }, + { + "epoch": 38.10794072107941, + "grad_norm": 0.5215827226638794, + "learning_rate": 3.095225464190982e-05, + "loss": 0.619310417175293, + "step": 43100 + }, + { + "epoch": 38.19641672196417, + "grad_norm": 0.4768511950969696, + "learning_rate": 3.0908045977011494e-05, + "loss": 0.6210311126708984, + "step": 43200 + }, + { + "epoch": 38.28489272284893, + "grad_norm": 0.5353608727455139, + "learning_rate": 3.086383731211318e-05, + "loss": 0.6246475601196289, + "step": 43300 + }, + { + "epoch": 38.373368723733684, + "grad_norm": 0.5182030200958252, + "learning_rate": 3.0819628647214855e-05, + "loss": 0.6273392486572266, + "step": 43400 + }, + { + "epoch": 38.461844724618445, + "grad_norm": 0.500842273235321, + "learning_rate": 3.077541998231653e-05, + "loss": 0.6327916717529297, + "step": 43500 + }, + { + "epoch": 38.550320725503205, + "grad_norm": 0.5168542861938477, + "learning_rate": 3.0731211317418216e-05, + "loss": 0.6323520278930664, + "step": 43600 + }, + { + "epoch": 38.638796726387966, + "grad_norm": 0.5403733253479004, + "learning_rate": 3.06870026525199e-05, + "loss": 0.6338058090209961, + "step": 43700 + }, + { + "epoch": 38.72727272727273, + "grad_norm": 0.5119574666023254, + "learning_rate": 3.064279398762158e-05, + "loss": 0.6391129302978515, + "step": 43800 + }, + { + "epoch": 38.81574872815749, + "grad_norm": 0.5214455127716064, + "learning_rate": 3.0598585322723254e-05, + "loss": 0.6368292999267579, + "step": 43900 + }, + { + "epoch": 38.90422472904225, + "grad_norm": 0.5679435133934021, + "learning_rate": 3.055437665782494e-05, + "loss": 0.6414280700683593, + "step": 44000 + }, + { + "epoch": 38.99270072992701, + "grad_norm": 0.5442212820053101, + "learning_rate": 3.0510167992926615e-05, + "loss": 0.6446417999267579, + "step": 44100 + }, + { + "epoch": 39.08051316080513, + "grad_norm": 0.46873417496681213, + "learning_rate": 3.0465959328028292e-05, + "loss": 0.6127575302124023, + "step": 44200 + }, + { + "epoch": 39.16898916168989, + "grad_norm": 0.5402541756629944, + "learning_rate": 3.042175066312998e-05, + "loss": 0.6059606552124024, + "step": 44300 + }, + { + "epoch": 39.257465162574654, + "grad_norm": 0.5081923007965088, + "learning_rate": 3.0377541998231656e-05, + "loss": 0.6121833038330078, + "step": 44400 + }, + { + "epoch": 39.345941163459415, + "grad_norm": 0.5688677430152893, + "learning_rate": 3.0333333333333337e-05, + "loss": 0.6163175964355468, + "step": 44500 + }, + { + "epoch": 39.43441716434417, + "grad_norm": 0.5273306965827942, + "learning_rate": 3.0289124668435014e-05, + "loss": 0.6198236465454101, + "step": 44600 + }, + { + "epoch": 39.52289316522893, + "grad_norm": 0.5107190608978271, + "learning_rate": 3.0244916003536694e-05, + "loss": 0.6242243576049805, + "step": 44700 + }, + { + "epoch": 39.61136916611369, + "grad_norm": 0.5110412240028381, + "learning_rate": 3.0200707338638375e-05, + "loss": 0.6227451705932617, + "step": 44800 + }, + { + "epoch": 39.69984516699845, + "grad_norm": 0.5370123982429504, + "learning_rate": 3.015649867374005e-05, + "loss": 0.6257634735107422, + "step": 44900 + }, + { + "epoch": 39.78832116788321, + "grad_norm": 0.5311342477798462, + "learning_rate": 3.0112290008841735e-05, + "loss": 0.6246538925170898, + "step": 45000 + }, + { + "epoch": 39.87679716876797, + "grad_norm": 0.5247089862823486, + "learning_rate": 3.0068081343943416e-05, + "loss": 0.6278446578979492, + "step": 45100 + }, + { + "epoch": 39.96527316965273, + "grad_norm": 0.5407604575157166, + "learning_rate": 3.0023872679045096e-05, + "loss": 0.6319368743896484, + "step": 45200 + }, + { + "epoch": 40.053085600530856, + "grad_norm": 0.49125176668167114, + "learning_rate": 2.9980106100795756e-05, + "loss": 0.608686294555664, + "step": 45300 + }, + { + "epoch": 40.14156160141562, + "grad_norm": 0.5193077325820923, + "learning_rate": 2.9935897435897437e-05, + "loss": 0.5979312515258789, + "step": 45400 + }, + { + "epoch": 40.23003760230038, + "grad_norm": 0.5521110892295837, + "learning_rate": 2.9891688770999117e-05, + "loss": 0.6026276016235351, + "step": 45500 + }, + { + "epoch": 40.31851360318514, + "grad_norm": 0.5131237506866455, + "learning_rate": 2.9847480106100794e-05, + "loss": 0.6056368637084961, + "step": 45600 + }, + { + "epoch": 40.4069896040699, + "grad_norm": 0.5547003149986267, + "learning_rate": 2.9803271441202478e-05, + "loss": 0.6073746490478515, + "step": 45700 + }, + { + "epoch": 40.49546560495465, + "grad_norm": 0.5059778690338135, + "learning_rate": 2.975906277630416e-05, + "loss": 0.6093035888671875, + "step": 45800 + }, + { + "epoch": 40.583941605839414, + "grad_norm": 0.5218088030815125, + "learning_rate": 2.971485411140584e-05, + "loss": 0.6098678970336914, + "step": 45900 + }, + { + "epoch": 40.672417606724174, + "grad_norm": 0.5111589431762695, + "learning_rate": 2.9670645446507516e-05, + "loss": 0.6144123458862305, + "step": 46000 + }, + { + "epoch": 40.760893607608935, + "grad_norm": 0.5875983238220215, + "learning_rate": 2.9626436781609196e-05, + "loss": 0.6149031448364258, + "step": 46100 + }, + { + "epoch": 40.849369608493696, + "grad_norm": 0.6077953577041626, + "learning_rate": 2.9582228116710873e-05, + "loss": 0.6200779724121094, + "step": 46200 + }, + { + "epoch": 40.937845609378456, + "grad_norm": 0.5511230230331421, + "learning_rate": 2.9538019451812554e-05, + "loss": 0.6175289916992187, + "step": 46300 + }, + { + "epoch": 41.02565804025658, + "grad_norm": 0.5434758067131042, + "learning_rate": 2.9493810786914238e-05, + "loss": 0.6117794418334961, + "step": 46400 + }, + { + "epoch": 41.11413404114134, + "grad_norm": 0.5463586449623108, + "learning_rate": 2.9449602122015918e-05, + "loss": 0.5865156936645508, + "step": 46500 + }, + { + "epoch": 41.2026100420261, + "grad_norm": 0.516645610332489, + "learning_rate": 2.94053934571176e-05, + "loss": 0.5934408950805664, + "step": 46600 + }, + { + "epoch": 41.29108604291086, + "grad_norm": 0.5041747093200684, + "learning_rate": 2.9361184792219276e-05, + "loss": 0.5907432556152343, + "step": 46700 + }, + { + "epoch": 41.37956204379562, + "grad_norm": 0.5490337014198303, + "learning_rate": 2.9316976127320956e-05, + "loss": 0.597823486328125, + "step": 46800 + }, + { + "epoch": 41.468038044680384, + "grad_norm": 0.5256726741790771, + "learning_rate": 2.9272767462422633e-05, + "loss": 0.5979599380493164, + "step": 46900 + }, + { + "epoch": 41.55651404556514, + "grad_norm": 0.49856510758399963, + "learning_rate": 2.9228558797524314e-05, + "loss": 0.6000013732910157, + "step": 47000 + }, + { + "epoch": 41.6449900464499, + "grad_norm": 0.540030837059021, + "learning_rate": 2.9184350132625998e-05, + "loss": 0.6044590759277344, + "step": 47100 + }, + { + "epoch": 41.73346604733466, + "grad_norm": 0.5599401593208313, + "learning_rate": 2.9140141467727678e-05, + "loss": 0.6050262451171875, + "step": 47200 + }, + { + "epoch": 41.82194204821942, + "grad_norm": 0.5251536965370178, + "learning_rate": 2.9095932802829355e-05, + "loss": 0.6084031677246093, + "step": 47300 + }, + { + "epoch": 41.91041804910418, + "grad_norm": 0.6002141237258911, + "learning_rate": 2.9051724137931036e-05, + "loss": 0.6051164627075195, + "step": 47400 + }, + { + "epoch": 41.99889404998894, + "grad_norm": 0.5603448748588562, + "learning_rate": 2.9007515473032716e-05, + "loss": 0.6085728073120117, + "step": 47500 + }, + { + "epoch": 42.086706480867065, + "grad_norm": 0.5491044521331787, + "learning_rate": 2.8963748894783376e-05, + "loss": 0.576365966796875, + "step": 47600 + }, + { + "epoch": 42.175182481751825, + "grad_norm": 0.5698864459991455, + "learning_rate": 2.8919540229885063e-05, + "loss": 0.5807184219360352, + "step": 47700 + }, + { + "epoch": 42.263658482636586, + "grad_norm": 0.574418306350708, + "learning_rate": 2.887533156498674e-05, + "loss": 0.5844138717651367, + "step": 47800 + }, + { + "epoch": 42.35213448352135, + "grad_norm": 0.5167635083198547, + "learning_rate": 2.883112290008842e-05, + "loss": 0.5845949935913086, + "step": 47900 + }, + { + "epoch": 42.44061048440611, + "grad_norm": 0.5338764786720276, + "learning_rate": 2.8786914235190098e-05, + "loss": 0.5889351272583008, + "step": 48000 + }, + { + "epoch": 42.52908648529087, + "grad_norm": 0.5340341329574585, + "learning_rate": 2.8742705570291778e-05, + "loss": 0.5909807205200195, + "step": 48100 + }, + { + "epoch": 42.61756248617562, + "grad_norm": 0.5493650436401367, + "learning_rate": 2.869849690539346e-05, + "loss": 0.5914651107788086, + "step": 48200 + }, + { + "epoch": 42.70603848706038, + "grad_norm": 0.6116383075714111, + "learning_rate": 2.8654288240495136e-05, + "loss": 0.592667350769043, + "step": 48300 + }, + { + "epoch": 42.79451448794514, + "grad_norm": 0.5631881356239319, + "learning_rate": 2.861007957559682e-05, + "loss": 0.5997231674194335, + "step": 48400 + }, + { + "epoch": 42.882990488829904, + "grad_norm": 0.5806667804718018, + "learning_rate": 2.85658709106985e-05, + "loss": 0.5957838439941406, + "step": 48500 + }, + { + "epoch": 42.971466489714665, + "grad_norm": 0.5075005888938904, + "learning_rate": 2.852166224580018e-05, + "loss": 0.5975283432006836, + "step": 48600 + }, + { + "epoch": 43.05927892059279, + "grad_norm": 0.5606797337532043, + "learning_rate": 2.8477453580901857e-05, + "loss": 0.5800529861450195, + "step": 48700 + }, + { + "epoch": 43.14775492147755, + "grad_norm": 0.5353171229362488, + "learning_rate": 2.8433244916003538e-05, + "loss": 0.5706613540649415, + "step": 48800 + }, + { + "epoch": 43.23623092236231, + "grad_norm": 0.5479321479797363, + "learning_rate": 2.8389036251105215e-05, + "loss": 0.5755366516113282, + "step": 48900 + }, + { + "epoch": 43.32470692324707, + "grad_norm": 0.5302407741546631, + "learning_rate": 2.8344827586206895e-05, + "loss": 0.5780391311645507, + "step": 49000 + }, + { + "epoch": 43.41318292413183, + "grad_norm": 0.5579783320426941, + "learning_rate": 2.830061892130858e-05, + "loss": 0.5774256896972656, + "step": 49100 + }, + { + "epoch": 43.50165892501659, + "grad_norm": 0.5295524597167969, + "learning_rate": 2.825641025641026e-05, + "loss": 0.5812548828125, + "step": 49200 + }, + { + "epoch": 43.59013492590135, + "grad_norm": 0.492058664560318, + "learning_rate": 2.821220159151194e-05, + "loss": 0.5796434783935547, + "step": 49300 + }, + { + "epoch": 43.67861092678611, + "grad_norm": 0.48961371183395386, + "learning_rate": 2.8167992926613617e-05, + "loss": 0.5851696014404297, + "step": 49400 + }, + { + "epoch": 43.76708692767087, + "grad_norm": 0.5714001059532166, + "learning_rate": 2.8123784261715298e-05, + "loss": 0.5890889358520508, + "step": 49500 + }, + { + "epoch": 43.85556292855563, + "grad_norm": 0.537390410900116, + "learning_rate": 2.8079575596816975e-05, + "loss": 0.5881150054931641, + "step": 49600 + }, + { + "epoch": 43.94403892944039, + "grad_norm": 0.5263146758079529, + "learning_rate": 2.8035366931918655e-05, + "loss": 0.5868202209472656, + "step": 49700 + }, + { + "epoch": 44.03185136031851, + "grad_norm": 0.5009394288063049, + "learning_rate": 2.7991600353669322e-05, + "loss": 0.578513412475586, + "step": 49800 + }, + { + "epoch": 44.12032736120327, + "grad_norm": 0.5233928561210632, + "learning_rate": 2.7947391688771002e-05, + "loss": 0.5612442016601562, + "step": 49900 + }, + { + "epoch": 44.208803362088034, + "grad_norm": 0.5212284922599792, + "learning_rate": 2.7903183023872683e-05, + "loss": 0.5634622955322266, + "step": 50000 + }, + { + "epoch": 44.297279362972795, + "grad_norm": 0.5920892357826233, + "learning_rate": 2.785897435897436e-05, + "loss": 0.5646255111694336, + "step": 50100 + }, + { + "epoch": 44.385755363857555, + "grad_norm": 0.5463851690292358, + "learning_rate": 2.781476569407604e-05, + "loss": 0.5711798477172851, + "step": 50200 + }, + { + "epoch": 44.474231364742316, + "grad_norm": 0.513917863368988, + "learning_rate": 2.7770557029177717e-05, + "loss": 0.5757728576660156, + "step": 50300 + }, + { + "epoch": 44.56270736562708, + "grad_norm": 0.5791277289390564, + "learning_rate": 2.7726348364279398e-05, + "loss": 0.5719475173950195, + "step": 50400 + }, + { + "epoch": 44.65118336651183, + "grad_norm": 0.5394783616065979, + "learning_rate": 2.768213969938108e-05, + "loss": 0.5751088714599609, + "step": 50500 + }, + { + "epoch": 44.73965936739659, + "grad_norm": 0.5699083805084229, + "learning_rate": 2.7637931034482762e-05, + "loss": 0.5771770095825195, + "step": 50600 + }, + { + "epoch": 44.82813536828135, + "grad_norm": 0.5610557794570923, + "learning_rate": 2.759372236958444e-05, + "loss": 0.5790963745117188, + "step": 50700 + }, + { + "epoch": 44.91661136916611, + "grad_norm": 0.5751321911811829, + "learning_rate": 2.754951370468612e-05, + "loss": 0.5781265258789062, + "step": 50800 + }, + { + "epoch": 45.004423800044236, + "grad_norm": 0.4831089377403259, + "learning_rate": 2.75053050397878e-05, + "loss": 0.5815114593505859, + "step": 50900 + }, + { + "epoch": 45.092899800929, + "grad_norm": 0.5138679146766663, + "learning_rate": 2.7461096374889477e-05, + "loss": 0.5530588912963867, + "step": 51000 + }, + { + "epoch": 45.18137580181376, + "grad_norm": 0.5327210426330566, + "learning_rate": 2.7416887709991158e-05, + "loss": 0.5549150085449219, + "step": 51100 + }, + { + "epoch": 45.26985180269852, + "grad_norm": 0.5089725255966187, + "learning_rate": 2.737267904509284e-05, + "loss": 0.5587585830688476, + "step": 51200 + }, + { + "epoch": 45.35832780358328, + "grad_norm": 0.5307016372680664, + "learning_rate": 2.7328470380194522e-05, + "loss": 0.5582825851440429, + "step": 51300 + }, + { + "epoch": 45.44680380446804, + "grad_norm": 0.6189883351325989, + "learning_rate": 2.72842617152962e-05, + "loss": 0.561285514831543, + "step": 51400 + }, + { + "epoch": 45.5352798053528, + "grad_norm": 0.5789527893066406, + "learning_rate": 2.724005305039788e-05, + "loss": 0.5647828674316406, + "step": 51500 + }, + { + "epoch": 45.62375580623756, + "grad_norm": 0.553713321685791, + "learning_rate": 2.719584438549956e-05, + "loss": 0.5659704208374023, + "step": 51600 + }, + { + "epoch": 45.712231807122315, + "grad_norm": 0.5502424240112305, + "learning_rate": 2.7151635720601237e-05, + "loss": 0.5685673522949218, + "step": 51700 + }, + { + "epoch": 45.800707808007076, + "grad_norm": 0.6388786435127258, + "learning_rate": 2.7107427055702917e-05, + "loss": 0.569713134765625, + "step": 51800 + }, + { + "epoch": 45.889183808891836, + "grad_norm": 0.5839136242866516, + "learning_rate": 2.70632183908046e-05, + "loss": 0.5713850784301758, + "step": 51900 + }, + { + "epoch": 45.9776598097766, + "grad_norm": 0.5872997641563416, + "learning_rate": 2.701900972590628e-05, + "loss": 0.5713462448120117, + "step": 52000 + }, + { + "epoch": 46.06547224065472, + "grad_norm": 0.5111995339393616, + "learning_rate": 2.697524314765694e-05, + "loss": 0.5514000701904297, + "step": 52100 + }, + { + "epoch": 46.15394824153948, + "grad_norm": 0.5677483677864075, + "learning_rate": 2.6931034482758622e-05, + "loss": 0.5458650207519531, + "step": 52200 + }, + { + "epoch": 46.24242424242424, + "grad_norm": 0.5756211876869202, + "learning_rate": 2.68868258178603e-05, + "loss": 0.5480696868896484, + "step": 52300 + }, + { + "epoch": 46.330900243309, + "grad_norm": 0.6053562164306641, + "learning_rate": 2.684261715296198e-05, + "loss": 0.5525957870483399, + "step": 52400 + }, + { + "epoch": 46.419376244193764, + "grad_norm": 0.5155165791511536, + "learning_rate": 2.6798408488063663e-05, + "loss": 0.5557857513427734, + "step": 52500 + }, + { + "epoch": 46.507852245078524, + "grad_norm": 0.5804229378700256, + "learning_rate": 2.6754199823165344e-05, + "loss": 0.5559201049804687, + "step": 52600 + }, + { + "epoch": 46.596328245963285, + "grad_norm": 0.5536544919013977, + "learning_rate": 2.6709991158267024e-05, + "loss": 0.5591853713989258, + "step": 52700 + }, + { + "epoch": 46.684804246848046, + "grad_norm": 0.603621244430542, + "learning_rate": 2.66657824933687e-05, + "loss": 0.5596856307983399, + "step": 52800 + }, + { + "epoch": 46.7732802477328, + "grad_norm": 0.5604232549667358, + "learning_rate": 2.662157382847038e-05, + "loss": 0.5584945678710938, + "step": 52900 + }, + { + "epoch": 46.86175624861756, + "grad_norm": 0.5974889993667603, + "learning_rate": 2.657736516357206e-05, + "loss": 0.5582848358154296, + "step": 53000 + }, + { + "epoch": 46.95023224950232, + "grad_norm": 0.5440397262573242, + "learning_rate": 2.653315649867374e-05, + "loss": 0.5634394454956054, + "step": 53100 + }, + { + "epoch": 47.038044680380445, + "grad_norm": 0.5610032081604004, + "learning_rate": 2.6488947833775423e-05, + "loss": 0.5574512481689453, + "step": 53200 + }, + { + "epoch": 47.126520681265205, + "grad_norm": 0.607563853263855, + "learning_rate": 2.6444739168877104e-05, + "loss": 0.5387821197509766, + "step": 53300 + }, + { + "epoch": 47.214996682149966, + "grad_norm": 0.5836204290390015, + "learning_rate": 2.640053050397878e-05, + "loss": 0.5401793670654297, + "step": 53400 + }, + { + "epoch": 47.30347268303473, + "grad_norm": 0.5325765013694763, + "learning_rate": 2.635632183908046e-05, + "loss": 0.5437668991088868, + "step": 53500 + }, + { + "epoch": 47.39194868391949, + "grad_norm": 0.5740872621536255, + "learning_rate": 2.631211317418214e-05, + "loss": 0.5443574142456055, + "step": 53600 + }, + { + "epoch": 47.48042468480425, + "grad_norm": 0.5562124848365784, + "learning_rate": 2.626790450928382e-05, + "loss": 0.5469727325439453, + "step": 53700 + }, + { + "epoch": 47.56890068568901, + "grad_norm": 0.5893000960350037, + "learning_rate": 2.62236958443855e-05, + "loss": 0.5502291107177735, + "step": 53800 + }, + { + "epoch": 47.65737668657377, + "grad_norm": 0.6538830995559692, + "learning_rate": 2.6179487179487183e-05, + "loss": 0.552915382385254, + "step": 53900 + }, + { + "epoch": 47.74585268745853, + "grad_norm": 0.5710316300392151, + "learning_rate": 2.6135278514588863e-05, + "loss": 0.5510491943359375, + "step": 54000 + }, + { + "epoch": 47.834328688343284, + "grad_norm": 0.5235297083854675, + "learning_rate": 2.609106984969054e-05, + "loss": 0.5519483184814453, + "step": 54100 + }, + { + "epoch": 47.922804689228045, + "grad_norm": 0.6048061847686768, + "learning_rate": 2.604686118479222e-05, + "loss": 0.5567644882202148, + "step": 54200 + }, + { + "epoch": 48.01061712010617, + "grad_norm": 0.5698108077049255, + "learning_rate": 2.6003094606542884e-05, + "loss": 0.5547234344482422, + "step": 54300 + }, + { + "epoch": 48.09909312099093, + "grad_norm": 0.49287617206573486, + "learning_rate": 2.595888594164456e-05, + "loss": 0.5280181884765625, + "step": 54400 + }, + { + "epoch": 48.18756912187569, + "grad_norm": 0.5525228977203369, + "learning_rate": 2.591467727674624e-05, + "loss": 0.5349401092529297, + "step": 54500 + }, + { + "epoch": 48.27604512276045, + "grad_norm": 0.5026161670684814, + "learning_rate": 2.5870468611847925e-05, + "loss": 0.5378446578979492, + "step": 54600 + }, + { + "epoch": 48.36452112364521, + "grad_norm": 0.5191828608512878, + "learning_rate": 2.5826259946949606e-05, + "loss": 0.5382429122924804, + "step": 54700 + }, + { + "epoch": 48.45299712452997, + "grad_norm": 0.5171953439712524, + "learning_rate": 2.5782051282051283e-05, + "loss": 0.5364204406738281, + "step": 54800 + }, + { + "epoch": 48.54147312541473, + "grad_norm": 0.5302397012710571, + "learning_rate": 2.5737842617152963e-05, + "loss": 0.5405542373657226, + "step": 54900 + }, + { + "epoch": 48.62994912629949, + "grad_norm": 0.5187925100326538, + "learning_rate": 2.569363395225464e-05, + "loss": 0.5436551284790039, + "step": 55000 + }, + { + "epoch": 48.718425127184254, + "grad_norm": 0.5707531571388245, + "learning_rate": 2.564942528735632e-05, + "loss": 0.5467363357543945, + "step": 55100 + }, + { + "epoch": 48.806901128069015, + "grad_norm": 0.5525254607200623, + "learning_rate": 2.5605216622458e-05, + "loss": 0.5466318130493164, + "step": 55200 + }, + { + "epoch": 48.89537712895377, + "grad_norm": 0.5896828174591064, + "learning_rate": 2.5561007957559685e-05, + "loss": 0.5489627075195312, + "step": 55300 + }, + { + "epoch": 48.98385312983853, + "grad_norm": 0.593329131603241, + "learning_rate": 2.5516799292661366e-05, + "loss": 0.5492449569702148, + "step": 55400 + }, + { + "epoch": 49.07166556071665, + "grad_norm": 0.45202845335006714, + "learning_rate": 2.5472590627763043e-05, + "loss": 0.5282985687255859, + "step": 55500 + }, + { + "epoch": 49.160141561601414, + "grad_norm": 0.45874515175819397, + "learning_rate": 2.5428381962864723e-05, + "loss": 0.5267356872558594, + "step": 55600 + }, + { + "epoch": 49.248617562486174, + "grad_norm": 0.5499678254127502, + "learning_rate": 2.53841732979664e-05, + "loss": 0.5255993270874023, + "step": 55700 + }, + { + "epoch": 49.337093563370935, + "grad_norm": 0.5569108724594116, + "learning_rate": 2.533996463306808e-05, + "loss": 0.5299503707885742, + "step": 55800 + }, + { + "epoch": 49.425569564255696, + "grad_norm": 0.5677438974380493, + "learning_rate": 2.529575596816976e-05, + "loss": 0.5316028594970703, + "step": 55900 + }, + { + "epoch": 49.51404556514046, + "grad_norm": 0.5888075828552246, + "learning_rate": 2.5251547303271445e-05, + "loss": 0.5354986953735351, + "step": 56000 + }, + { + "epoch": 49.60252156602522, + "grad_norm": 0.5639616250991821, + "learning_rate": 2.5207338638373122e-05, + "loss": 0.5369997787475586, + "step": 56100 + }, + { + "epoch": 49.69099756690998, + "grad_norm": 0.509158194065094, + "learning_rate": 2.5163129973474803e-05, + "loss": 0.536979866027832, + "step": 56200 + }, + { + "epoch": 49.77947356779474, + "grad_norm": 0.5412595868110657, + "learning_rate": 2.5118921308576483e-05, + "loss": 0.5382201004028321, + "step": 56300 + }, + { + "epoch": 49.86794956867949, + "grad_norm": 0.6052098274230957, + "learning_rate": 2.507471264367816e-05, + "loss": 0.5390504837036133, + "step": 56400 + }, + { + "epoch": 49.95642556956425, + "grad_norm": 0.5019105076789856, + "learning_rate": 2.503050397877984e-05, + "loss": 0.5391928482055665, + "step": 56500 + }, + { + "epoch": 50.04423800044238, + "grad_norm": 0.5133684873580933, + "learning_rate": 2.4986737400530504e-05, + "loss": 0.529360580444336, + "step": 56600 + }, + { + "epoch": 50.13271400132714, + "grad_norm": 0.5742220878601074, + "learning_rate": 2.4942528735632184e-05, + "loss": 0.5150651550292968, + "step": 56700 + }, + { + "epoch": 50.2211900022119, + "grad_norm": 0.5389617681503296, + "learning_rate": 2.4898320070733865e-05, + "loss": 0.5204330444335937, + "step": 56800 + }, + { + "epoch": 50.30966600309666, + "grad_norm": 0.5938611030578613, + "learning_rate": 2.4854111405835545e-05, + "loss": 0.5252494049072266, + "step": 56900 + }, + { + "epoch": 50.39814200398142, + "grad_norm": 0.5617892146110535, + "learning_rate": 2.4809902740937225e-05, + "loss": 0.5260490036010742, + "step": 57000 + }, + { + "epoch": 50.48661800486618, + "grad_norm": 0.6076000332832336, + "learning_rate": 2.4765694076038906e-05, + "loss": 0.5278256607055664, + "step": 57100 + }, + { + "epoch": 50.57509400575094, + "grad_norm": 0.5321983695030212, + "learning_rate": 2.4721485411140586e-05, + "loss": 0.5286510467529297, + "step": 57200 + }, + { + "epoch": 50.6635700066357, + "grad_norm": 0.614532470703125, + "learning_rate": 2.4677276746242263e-05, + "loss": 0.5313225936889648, + "step": 57300 + }, + { + "epoch": 50.75204600752046, + "grad_norm": 0.5830910801887512, + "learning_rate": 2.4633068081343944e-05, + "loss": 0.5300481796264649, + "step": 57400 + }, + { + "epoch": 50.84052200840522, + "grad_norm": 0.5918353199958801, + "learning_rate": 2.4588859416445624e-05, + "loss": 0.5337774276733398, + "step": 57500 + }, + { + "epoch": 50.92899800928998, + "grad_norm": 0.5791705846786499, + "learning_rate": 2.4544650751547305e-05, + "loss": 0.5316382598876953, + "step": 57600 + }, + { + "epoch": 51.01681044016811, + "grad_norm": 0.521299421787262, + "learning_rate": 2.4500442086648985e-05, + "loss": 0.5307102203369141, + "step": 57700 + }, + { + "epoch": 51.10528644105286, + "grad_norm": 0.5163324475288391, + "learning_rate": 2.4456233421750666e-05, + "loss": 0.5103409576416016, + "step": 57800 + }, + { + "epoch": 51.19376244193762, + "grad_norm": 0.5436499714851379, + "learning_rate": 2.4412024756852346e-05, + "loss": 0.5144682693481445, + "step": 57900 + }, + { + "epoch": 51.28223844282238, + "grad_norm": 0.5268517136573792, + "learning_rate": 2.4367816091954023e-05, + "loss": 0.5170879364013672, + "step": 58000 + }, + { + "epoch": 51.37071444370714, + "grad_norm": 0.5523056983947754, + "learning_rate": 2.4323607427055704e-05, + "loss": 0.5176148223876953, + "step": 58100 + }, + { + "epoch": 51.459190444591904, + "grad_norm": 0.5733488202095032, + "learning_rate": 2.4279398762157384e-05, + "loss": 0.5213256454467774, + "step": 58200 + }, + { + "epoch": 51.547666445476665, + "grad_norm": 0.6002511978149414, + "learning_rate": 2.4235190097259065e-05, + "loss": 0.5213332748413086, + "step": 58300 + }, + { + "epoch": 51.636142446361426, + "grad_norm": 0.5866407155990601, + "learning_rate": 2.4190981432360742e-05, + "loss": 0.5219316101074218, + "step": 58400 + }, + { + "epoch": 51.724618447246186, + "grad_norm": 0.620346188545227, + "learning_rate": 2.4146772767462426e-05, + "loss": 0.5251021575927735, + "step": 58500 + }, + { + "epoch": 51.81309444813095, + "grad_norm": 0.5428482294082642, + "learning_rate": 2.4102564102564103e-05, + "loss": 0.5254843521118164, + "step": 58600 + }, + { + "epoch": 51.90157044901571, + "grad_norm": 0.6146367192268372, + "learning_rate": 2.4058355437665783e-05, + "loss": 0.5262796401977539, + "step": 58700 + }, + { + "epoch": 51.99004644990046, + "grad_norm": 0.6002848148345947, + "learning_rate": 2.4014146772767464e-05, + "loss": 0.5279874801635742, + "step": 58800 + }, + { + "epoch": 52.07785888077859, + "grad_norm": 0.5608682036399841, + "learning_rate": 2.3970380194518127e-05, + "loss": 0.5045627975463867, + "step": 58900 + }, + { + "epoch": 52.166334881663346, + "grad_norm": 0.5034646391868591, + "learning_rate": 2.3926171529619807e-05, + "loss": 0.5071027755737305, + "step": 59000 + }, + { + "epoch": 52.25481088254811, + "grad_norm": 0.5443050861358643, + "learning_rate": 2.3881962864721484e-05, + "loss": 0.5105178451538086, + "step": 59100 + }, + { + "epoch": 52.34328688343287, + "grad_norm": 0.5455040335655212, + "learning_rate": 2.3837754199823168e-05, + "loss": 0.5111968612670899, + "step": 59200 + }, + { + "epoch": 52.43176288431763, + "grad_norm": 0.5393562912940979, + "learning_rate": 2.3793545534924845e-05, + "loss": 0.5109628295898437, + "step": 59300 + }, + { + "epoch": 52.52023888520239, + "grad_norm": 0.5572716593742371, + "learning_rate": 2.3749336870026526e-05, + "loss": 0.5128989791870118, + "step": 59400 + }, + { + "epoch": 52.60871488608715, + "grad_norm": 0.5157389640808105, + "learning_rate": 2.3705128205128206e-05, + "loss": 0.5179262924194336, + "step": 59500 + }, + { + "epoch": 52.69719088697191, + "grad_norm": 0.5245424509048462, + "learning_rate": 2.3660919540229886e-05, + "loss": 0.5182614517211914, + "step": 59600 + }, + { + "epoch": 52.78566688785667, + "grad_norm": 0.6405171155929565, + "learning_rate": 2.3616710875331567e-05, + "loss": 0.5196902084350586, + "step": 59700 + }, + { + "epoch": 52.87414288874143, + "grad_norm": 0.5531449317932129, + "learning_rate": 2.3572502210433244e-05, + "loss": 0.5213772583007813, + "step": 59800 + }, + { + "epoch": 52.96261888962619, + "grad_norm": 0.5440499186515808, + "learning_rate": 2.3528293545534928e-05, + "loss": 0.5214180755615234, + "step": 59900 + }, + { + "epoch": 53.050431320504316, + "grad_norm": 0.5454942584037781, + "learning_rate": 2.3484084880636605e-05, + "loss": 0.5082747268676758, + "step": 60000 + }, + { + "epoch": 53.13890732138907, + "grad_norm": 0.6037677526473999, + "learning_rate": 2.3439876215738285e-05, + "loss": 0.4992447662353516, + "step": 60100 + }, + { + "epoch": 53.22738332227383, + "grad_norm": 0.6089978218078613, + "learning_rate": 2.3395667550839966e-05, + "loss": 0.501078987121582, + "step": 60200 + }, + { + "epoch": 53.31585932315859, + "grad_norm": 0.5581852793693542, + "learning_rate": 2.3351458885941646e-05, + "loss": 0.50614990234375, + "step": 60300 + }, + { + "epoch": 53.40433532404335, + "grad_norm": 0.5539824366569519, + "learning_rate": 2.3307250221043327e-05, + "loss": 0.5036640548706055, + "step": 60400 + }, + { + "epoch": 53.49281132492811, + "grad_norm": 0.5434619784355164, + "learning_rate": 2.3263041556145004e-05, + "loss": 0.5078977966308593, + "step": 60500 + }, + { + "epoch": 53.58128732581287, + "grad_norm": 0.5596204400062561, + "learning_rate": 2.3218832891246688e-05, + "loss": 0.5105896377563477, + "step": 60600 + }, + { + "epoch": 53.669763326697634, + "grad_norm": 0.5933516621589661, + "learning_rate": 2.3174624226348365e-05, + "loss": 0.512298583984375, + "step": 60700 + }, + { + "epoch": 53.758239327582395, + "grad_norm": 0.5938782095909119, + "learning_rate": 2.3130415561450045e-05, + "loss": 0.5136246871948242, + "step": 60800 + }, + { + "epoch": 53.846715328467155, + "grad_norm": 0.5711195468902588, + "learning_rate": 2.3086206896551726e-05, + "loss": 0.5137527465820313, + "step": 60900 + }, + { + "epoch": 53.935191329351916, + "grad_norm": 0.5345974564552307, + "learning_rate": 2.3041998231653406e-05, + "loss": 0.5148337173461914, + "step": 61000 + }, + { + "epoch": 54.02300376023004, + "grad_norm": 0.5462290644645691, + "learning_rate": 2.299823165340407e-05, + "loss": 0.5070685577392579, + "step": 61100 + }, + { + "epoch": 54.1114797611148, + "grad_norm": 0.5135403275489807, + "learning_rate": 2.295402298850575e-05, + "loss": 0.49042961120605466, + "step": 61200 + }, + { + "epoch": 54.199955761999554, + "grad_norm": 0.5753411650657654, + "learning_rate": 2.290981432360743e-05, + "loss": 0.49762104034423826, + "step": 61300 + }, + { + "epoch": 54.288431762884315, + "grad_norm": 0.5738378167152405, + "learning_rate": 2.2865605658709107e-05, + "loss": 0.4983011245727539, + "step": 61400 + }, + { + "epoch": 54.376907763769076, + "grad_norm": 0.5234966278076172, + "learning_rate": 2.2821396993810788e-05, + "loss": 0.5005590057373047, + "step": 61500 + }, + { + "epoch": 54.465383764653836, + "grad_norm": 0.5313852429389954, + "learning_rate": 2.2777188328912468e-05, + "loss": 0.503372917175293, + "step": 61600 + }, + { + "epoch": 54.5538597655386, + "grad_norm": 0.49838191270828247, + "learning_rate": 2.273297966401415e-05, + "loss": 0.5020324325561524, + "step": 61700 + }, + { + "epoch": 54.64233576642336, + "grad_norm": 0.5403088927268982, + "learning_rate": 2.2688770999115826e-05, + "loss": 0.5049329376220704, + "step": 61800 + }, + { + "epoch": 54.73081176730812, + "grad_norm": 0.46723249554634094, + "learning_rate": 2.264456233421751e-05, + "loss": 0.5059401321411133, + "step": 61900 + }, + { + "epoch": 54.81928776819288, + "grad_norm": 0.5539482235908508, + "learning_rate": 2.2600353669319187e-05, + "loss": 0.5069823837280274, + "step": 62000 + }, + { + "epoch": 54.90776376907764, + "grad_norm": 0.5377270579338074, + "learning_rate": 2.2556145004420867e-05, + "loss": 0.508377685546875, + "step": 62100 + }, + { + "epoch": 54.9962397699624, + "grad_norm": 0.6182072162628174, + "learning_rate": 2.2511936339522548e-05, + "loss": 0.5095947647094726, + "step": 62200 + }, + { + "epoch": 55.084052200840524, + "grad_norm": 0.5139372944831848, + "learning_rate": 2.2467727674624228e-05, + "loss": 0.4896272277832031, + "step": 62300 + }, + { + "epoch": 55.172528201725285, + "grad_norm": 0.5812121629714966, + "learning_rate": 2.242351900972591e-05, + "loss": 0.49099037170410154, + "step": 62400 + }, + { + "epoch": 55.26100420261004, + "grad_norm": 0.5491729378700256, + "learning_rate": 2.2379310344827586e-05, + "loss": 0.4927267074584961, + "step": 62500 + }, + { + "epoch": 55.3494802034948, + "grad_norm": 0.5951135158538818, + "learning_rate": 2.233510167992927e-05, + "loss": 0.49305023193359376, + "step": 62600 + }, + { + "epoch": 55.43795620437956, + "grad_norm": 0.5938172340393066, + "learning_rate": 2.2290893015030946e-05, + "loss": 0.49482032775878904, + "step": 62700 + }, + { + "epoch": 55.52643220526432, + "grad_norm": 0.5288723111152649, + "learning_rate": 2.2246684350132627e-05, + "loss": 0.4974822998046875, + "step": 62800 + }, + { + "epoch": 55.61490820614908, + "grad_norm": 0.5663400888442993, + "learning_rate": 2.2202475685234307e-05, + "loss": 0.498828239440918, + "step": 62900 + }, + { + "epoch": 55.70338420703384, + "grad_norm": 0.5939375162124634, + "learning_rate": 2.2158267020335988e-05, + "loss": 0.5004440307617187, + "step": 63000 + }, + { + "epoch": 55.7918602079186, + "grad_norm": 0.628774106502533, + "learning_rate": 2.2114058355437668e-05, + "loss": 0.5034025573730468, + "step": 63100 + }, + { + "epoch": 55.880336208803364, + "grad_norm": 0.6160352826118469, + "learning_rate": 2.2069849690539345e-05, + "loss": 0.5042695236206055, + "step": 63200 + }, + { + "epoch": 55.968812209688124, + "grad_norm": 0.5891813635826111, + "learning_rate": 2.202564102564103e-05, + "loss": 0.5021416473388672, + "step": 63300 + }, + { + "epoch": 56.05662464056625, + "grad_norm": 0.5297622680664062, + "learning_rate": 2.198187444739169e-05, + "loss": 0.4904953384399414, + "step": 63400 + }, + { + "epoch": 56.14510064145101, + "grad_norm": 0.5649422407150269, + "learning_rate": 2.193766578249337e-05, + "loss": 0.485706672668457, + "step": 63500 + }, + { + "epoch": 56.23357664233577, + "grad_norm": 0.6352797150611877, + "learning_rate": 2.189345711759505e-05, + "loss": 0.4867672348022461, + "step": 63600 + }, + { + "epoch": 56.32205264322052, + "grad_norm": 0.5789678692817688, + "learning_rate": 2.184924845269673e-05, + "loss": 0.48802379608154295, + "step": 63700 + }, + { + "epoch": 56.410528644105284, + "grad_norm": 0.6075431704521179, + "learning_rate": 2.180503978779841e-05, + "loss": 0.4910835647583008, + "step": 63800 + }, + { + "epoch": 56.499004644990045, + "grad_norm": 0.5858777165412903, + "learning_rate": 2.1760831122900088e-05, + "loss": 0.4906935119628906, + "step": 63900 + }, + { + "epoch": 56.587480645874805, + "grad_norm": 0.5143148899078369, + "learning_rate": 2.171662245800177e-05, + "loss": 0.49202545166015627, + "step": 64000 + }, + { + "epoch": 56.675956646759566, + "grad_norm": 0.5330872535705566, + "learning_rate": 2.167241379310345e-05, + "loss": 0.4929664611816406, + "step": 64100 + }, + { + "epoch": 56.76443264764433, + "grad_norm": 0.5530017018318176, + "learning_rate": 2.162820512820513e-05, + "loss": 0.49355899810791015, + "step": 64200 + }, + { + "epoch": 56.85290864852909, + "grad_norm": 0.5891992449760437, + "learning_rate": 2.158399646330681e-05, + "loss": 0.49566749572753904, + "step": 64300 + }, + { + "epoch": 56.94138464941385, + "grad_norm": 0.5289095044136047, + "learning_rate": 2.153978779840849e-05, + "loss": 0.4987163543701172, + "step": 64400 + }, + { + "epoch": 57.02919708029197, + "grad_norm": 0.5679471492767334, + "learning_rate": 2.1495579133510167e-05, + "loss": 0.49003833770751953, + "step": 64500 + }, + { + "epoch": 57.11767308117673, + "grad_norm": 0.5432245135307312, + "learning_rate": 2.1451370468611848e-05, + "loss": 0.47765895843505857, + "step": 64600 + }, + { + "epoch": 57.20614908206149, + "grad_norm": 0.5474491119384766, + "learning_rate": 2.1407161803713528e-05, + "loss": 0.4797785568237305, + "step": 64700 + }, + { + "epoch": 57.294625082946254, + "grad_norm": 0.537804126739502, + "learning_rate": 2.136295313881521e-05, + "loss": 0.4833247756958008, + "step": 64800 + }, + { + "epoch": 57.38310108383101, + "grad_norm": 0.572169840335846, + "learning_rate": 2.131874447391689e-05, + "loss": 0.4836674118041992, + "step": 64900 + }, + { + "epoch": 57.47157708471577, + "grad_norm": 0.5344268679618835, + "learning_rate": 2.127453580901857e-05, + "loss": 0.48507492065429686, + "step": 65000 + }, + { + "epoch": 57.56005308560053, + "grad_norm": 0.5664619207382202, + "learning_rate": 2.123032714412025e-05, + "loss": 0.488138427734375, + "step": 65100 + }, + { + "epoch": 57.64852908648529, + "grad_norm": 0.5902144312858582, + "learning_rate": 2.1186118479221927e-05, + "loss": 0.48771110534667966, + "step": 65200 + }, + { + "epoch": 57.73700508737005, + "grad_norm": 0.562929630279541, + "learning_rate": 2.1141909814323607e-05, + "loss": 0.4875301742553711, + "step": 65300 + }, + { + "epoch": 57.82548108825481, + "grad_norm": 0.5995573997497559, + "learning_rate": 2.1097701149425288e-05, + "loss": 0.49271678924560547, + "step": 65400 + }, + { + "epoch": 57.91395708913957, + "grad_norm": 0.6624785661697388, + "learning_rate": 2.105349248452697e-05, + "loss": 0.4920695877075195, + "step": 65500 + }, + { + "epoch": 58.001769520017696, + "grad_norm": 0.5402753353118896, + "learning_rate": 2.100928381962865e-05, + "loss": 0.49431739807128905, + "step": 65600 + }, + { + "epoch": 58.09024552090246, + "grad_norm": 0.5145826935768127, + "learning_rate": 2.096507515473033e-05, + "loss": 0.47089763641357424, + "step": 65700 + }, + { + "epoch": 58.17872152178722, + "grad_norm": 0.5931445360183716, + "learning_rate": 2.092086648983201e-05, + "loss": 0.4758612060546875, + "step": 65800 + }, + { + "epoch": 58.26719752267198, + "grad_norm": 0.5388639569282532, + "learning_rate": 2.0876657824933687e-05, + "loss": 0.47640296936035154, + "step": 65900 + }, + { + "epoch": 58.35567352355674, + "grad_norm": 0.5639314651489258, + "learning_rate": 2.0832449160035367e-05, + "loss": 0.482130241394043, + "step": 66000 + }, + { + "epoch": 58.44414952444149, + "grad_norm": 0.5535529851913452, + "learning_rate": 2.0788240495137048e-05, + "loss": 0.47872936248779296, + "step": 66100 + }, + { + "epoch": 58.53262552532625, + "grad_norm": 0.5827674865722656, + "learning_rate": 2.0744031830238728e-05, + "loss": 0.4842064666748047, + "step": 66200 + }, + { + "epoch": 58.621101526211014, + "grad_norm": 0.5696784257888794, + "learning_rate": 2.0699823165340405e-05, + "loss": 0.4816234588623047, + "step": 66300 + }, + { + "epoch": 58.709577527095774, + "grad_norm": 0.5349422097206116, + "learning_rate": 2.065561450044209e-05, + "loss": 0.48554718017578125, + "step": 66400 + }, + { + "epoch": 58.798053527980535, + "grad_norm": 0.636604368686676, + "learning_rate": 2.0611405835543766e-05, + "loss": 0.4876006317138672, + "step": 66500 + }, + { + "epoch": 58.886529528865296, + "grad_norm": 0.6060304045677185, + "learning_rate": 2.0567197170645447e-05, + "loss": 0.4887725830078125, + "step": 66600 + }, + { + "epoch": 58.97500552975006, + "grad_norm": 0.6087244749069214, + "learning_rate": 2.0522988505747127e-05, + "loss": 0.4868877410888672, + "step": 66700 + }, + { + "epoch": 59.06281796062818, + "grad_norm": 0.49913933873176575, + "learning_rate": 2.047922192749779e-05, + "loss": 0.4722119140625, + "step": 66800 + }, + { + "epoch": 59.15129396151294, + "grad_norm": 0.4722621738910675, + "learning_rate": 2.043501326259947e-05, + "loss": 0.47009246826171874, + "step": 66900 + }, + { + "epoch": 59.2397699623977, + "grad_norm": 0.5657719373703003, + "learning_rate": 2.0390804597701148e-05, + "loss": 0.472298583984375, + "step": 67000 + }, + { + "epoch": 59.32824596328246, + "grad_norm": 0.5761541724205017, + "learning_rate": 2.034659593280283e-05, + "loss": 0.4723761749267578, + "step": 67100 + }, + { + "epoch": 59.416721964167216, + "grad_norm": 0.6316192150115967, + "learning_rate": 2.030238726790451e-05, + "loss": 0.47409954071044924, + "step": 67200 + }, + { + "epoch": 59.50519796505198, + "grad_norm": 0.6090986132621765, + "learning_rate": 2.025817860300619e-05, + "loss": 0.4764304351806641, + "step": 67300 + }, + { + "epoch": 59.59367396593674, + "grad_norm": 0.5362303256988525, + "learning_rate": 2.021396993810787e-05, + "loss": 0.4776358795166016, + "step": 67400 + }, + { + "epoch": 59.6821499668215, + "grad_norm": 0.553995668888092, + "learning_rate": 2.016976127320955e-05, + "loss": 0.4807791519165039, + "step": 67500 + }, + { + "epoch": 59.77062596770626, + "grad_norm": 0.5615981221199036, + "learning_rate": 2.012555260831123e-05, + "loss": 0.48062610626220703, + "step": 67600 + }, + { + "epoch": 59.85910196859102, + "grad_norm": 0.5885509252548218, + "learning_rate": 2.0081343943412908e-05, + "loss": 0.48244945526123045, + "step": 67700 + }, + { + "epoch": 59.94757796947578, + "grad_norm": 0.6052979230880737, + "learning_rate": 2.003713527851459e-05, + "loss": 0.4803206634521484, + "step": 67800 + }, + { + "epoch": 60.035390400353904, + "grad_norm": 0.5579769015312195, + "learning_rate": 1.999292661361627e-05, + "loss": 0.4752388000488281, + "step": 67900 + }, + { + "epoch": 60.123866401238665, + "grad_norm": 0.478289395570755, + "learning_rate": 1.994871794871795e-05, + "loss": 0.4645302200317383, + "step": 68000 + }, + { + "epoch": 60.212342402123426, + "grad_norm": 0.5545957088470459, + "learning_rate": 1.990450928381963e-05, + "loss": 0.46837158203125, + "step": 68100 + }, + { + "epoch": 60.300818403008186, + "grad_norm": 0.524662435054779, + "learning_rate": 1.986030061892131e-05, + "loss": 0.4679202651977539, + "step": 68200 + }, + { + "epoch": 60.38929440389295, + "grad_norm": 0.6101793646812439, + "learning_rate": 1.981609195402299e-05, + "loss": 0.46956668853759764, + "step": 68300 + }, + { + "epoch": 60.4777704047777, + "grad_norm": 0.5040204524993896, + "learning_rate": 1.9771883289124667e-05, + "loss": 0.4706681060791016, + "step": 68400 + }, + { + "epoch": 60.56624640566246, + "grad_norm": 0.563679039478302, + "learning_rate": 1.972767462422635e-05, + "loss": 0.471558837890625, + "step": 68500 + }, + { + "epoch": 60.65472240654722, + "grad_norm": 0.5668439865112305, + "learning_rate": 1.9683465959328028e-05, + "loss": 0.4727770233154297, + "step": 68600 + }, + { + "epoch": 60.74319840743198, + "grad_norm": 0.6011987328529358, + "learning_rate": 1.963925729442971e-05, + "loss": 0.47645427703857424, + "step": 68700 + }, + { + "epoch": 60.83167440831674, + "grad_norm": 0.6392132043838501, + "learning_rate": 1.959504862953139e-05, + "loss": 0.4765947341918945, + "step": 68800 + }, + { + "epoch": 60.920150409201504, + "grad_norm": 0.6424957513809204, + "learning_rate": 1.955083996463307e-05, + "loss": 0.4768808746337891, + "step": 68900 + }, + { + "epoch": 61.00796284007963, + "grad_norm": 0.5341200828552246, + "learning_rate": 1.9507073386383733e-05, + "loss": 0.4776120376586914, + "step": 69000 + }, + { + "epoch": 61.09643884096439, + "grad_norm": 0.622922956943512, + "learning_rate": 1.9462864721485413e-05, + "loss": 0.46137203216552736, + "step": 69100 + }, + { + "epoch": 61.18491484184915, + "grad_norm": 0.5679436326026917, + "learning_rate": 1.9418656056587094e-05, + "loss": 0.46096920013427733, + "step": 69200 + }, + { + "epoch": 61.27339084273391, + "grad_norm": 0.5972808003425598, + "learning_rate": 1.937444739168877e-05, + "loss": 0.46090087890625, + "step": 69300 + }, + { + "epoch": 61.36186684361867, + "grad_norm": 0.5825915336608887, + "learning_rate": 1.933023872679045e-05, + "loss": 0.46518352508544925, + "step": 69400 + }, + { + "epoch": 61.45034284450343, + "grad_norm": 0.48754116892814636, + "learning_rate": 1.9286030061892132e-05, + "loss": 0.4664886856079102, + "step": 69500 + }, + { + "epoch": 61.538818845388185, + "grad_norm": 0.5583191514015198, + "learning_rate": 1.9241821396993812e-05, + "loss": 0.46886295318603516, + "step": 69600 + }, + { + "epoch": 61.627294846272946, + "grad_norm": 0.5658340454101562, + "learning_rate": 1.919761273209549e-05, + "loss": 0.4696169662475586, + "step": 69700 + }, + { + "epoch": 61.71577084715771, + "grad_norm": 0.5801714658737183, + "learning_rate": 1.9153404067197173e-05, + "loss": 0.47141036987304685, + "step": 69800 + }, + { + "epoch": 61.80424684804247, + "grad_norm": 0.5643869042396545, + "learning_rate": 1.910919540229885e-05, + "loss": 0.4727308654785156, + "step": 69900 + }, + { + "epoch": 61.89272284892723, + "grad_norm": 0.5937660336494446, + "learning_rate": 1.906498673740053e-05, + "loss": 0.4726886367797852, + "step": 70000 + }, + { + "epoch": 61.98119884981199, + "grad_norm": 0.5228411555290222, + "learning_rate": 1.902077807250221e-05, + "loss": 0.47457176208496094, + "step": 70100 + }, + { + "epoch": 62.06901128069011, + "grad_norm": 0.5100186467170715, + "learning_rate": 1.897656940760389e-05, + "loss": 0.4604149627685547, + "step": 70200 + }, + { + "epoch": 62.15748728157487, + "grad_norm": 0.5119529962539673, + "learning_rate": 1.8932360742705572e-05, + "loss": 0.4561204147338867, + "step": 70300 + }, + { + "epoch": 62.245963282459634, + "grad_norm": 0.5130912065505981, + "learning_rate": 1.888815207780725e-05, + "loss": 0.4596226501464844, + "step": 70400 + }, + { + "epoch": 62.334439283344395, + "grad_norm": 0.5388224720954895, + "learning_rate": 1.8843943412908933e-05, + "loss": 0.4617993927001953, + "step": 70500 + }, + { + "epoch": 62.422915284229155, + "grad_norm": 0.5555194020271301, + "learning_rate": 1.879973474801061e-05, + "loss": 0.46267467498779297, + "step": 70600 + }, + { + "epoch": 62.511391285113916, + "grad_norm": 0.5136281847953796, + "learning_rate": 1.875552608311229e-05, + "loss": 0.4628156280517578, + "step": 70700 + }, + { + "epoch": 62.59986728599867, + "grad_norm": 0.5039867162704468, + "learning_rate": 1.871131741821397e-05, + "loss": 0.4678297805786133, + "step": 70800 + }, + { + "epoch": 62.68834328688343, + "grad_norm": 0.566985547542572, + "learning_rate": 1.866710875331565e-05, + "loss": 0.46522830963134765, + "step": 70900 + }, + { + "epoch": 62.77681928776819, + "grad_norm": 0.5855474472045898, + "learning_rate": 1.8622900088417332e-05, + "loss": 0.46788333892822265, + "step": 71000 + }, + { + "epoch": 62.86529528865295, + "grad_norm": 0.5838083624839783, + "learning_rate": 1.857869142351901e-05, + "loss": 0.4687856292724609, + "step": 71100 + }, + { + "epoch": 62.95377128953771, + "grad_norm": 0.6574355363845825, + "learning_rate": 1.8534482758620693e-05, + "loss": 0.46836143493652344, + "step": 71200 + }, + { + "epoch": 63.04158372041584, + "grad_norm": 0.5751773118972778, + "learning_rate": 1.849027409372237e-05, + "loss": 0.4590755844116211, + "step": 71300 + }, + { + "epoch": 63.1300597213006, + "grad_norm": 0.5056807398796082, + "learning_rate": 1.844606542882405e-05, + "loss": 0.45313865661621094, + "step": 71400 + }, + { + "epoch": 63.21853572218536, + "grad_norm": 0.5403828024864197, + "learning_rate": 1.840185676392573e-05, + "loss": 0.4552134323120117, + "step": 71500 + }, + { + "epoch": 63.30701172307012, + "grad_norm": 0.48244568705558777, + "learning_rate": 1.835764809902741e-05, + "loss": 0.45661014556884766, + "step": 71600 + }, + { + "epoch": 63.39548772395488, + "grad_norm": 0.5753127932548523, + "learning_rate": 1.831343943412909e-05, + "loss": 0.4578168487548828, + "step": 71700 + }, + { + "epoch": 63.48396372483964, + "grad_norm": 0.5782042741775513, + "learning_rate": 1.826923076923077e-05, + "loss": 0.4589107131958008, + "step": 71800 + }, + { + "epoch": 63.5724397257244, + "grad_norm": 0.5895569920539856, + "learning_rate": 1.8225022104332453e-05, + "loss": 0.46304950714111326, + "step": 71900 + }, + { + "epoch": 63.660915726609154, + "grad_norm": 0.6601688265800476, + "learning_rate": 1.818081343943413e-05, + "loss": 0.45953712463378904, + "step": 72000 + }, + { + "epoch": 63.749391727493915, + "grad_norm": 0.5695818066596985, + "learning_rate": 1.813660477453581e-05, + "loss": 0.46058246612548825, + "step": 72100 + }, + { + "epoch": 63.837867728378676, + "grad_norm": 0.5006322264671326, + "learning_rate": 1.809239610963749e-05, + "loss": 0.4630731964111328, + "step": 72200 + }, + { + "epoch": 63.926343729263436, + "grad_norm": 0.5871863961219788, + "learning_rate": 1.804818744473917e-05, + "loss": 0.46295913696289065, + "step": 72300 + }, + { + "epoch": 64.01415616014157, + "grad_norm": 0.5417830348014832, + "learning_rate": 1.8003978779840848e-05, + "loss": 0.4623433303833008, + "step": 72400 + }, + { + "epoch": 64.10263216102632, + "grad_norm": 0.5019242763519287, + "learning_rate": 1.795977011494253e-05, + "loss": 0.44698051452636717, + "step": 72500 + }, + { + "epoch": 64.19110816191107, + "grad_norm": 0.5637330412864685, + "learning_rate": 1.791556145004421e-05, + "loss": 0.4492236328125, + "step": 72600 + }, + { + "epoch": 64.27958416279584, + "grad_norm": 0.5333090424537659, + "learning_rate": 1.787135278514589e-05, + "loss": 0.45192584991455076, + "step": 72700 + }, + { + "epoch": 64.3680601636806, + "grad_norm": 0.5232571363449097, + "learning_rate": 1.782714412024757e-05, + "loss": 0.45244823455810546, + "step": 72800 + }, + { + "epoch": 64.45653616456536, + "grad_norm": 0.4935717284679413, + "learning_rate": 1.778293545534925e-05, + "loss": 0.4529353332519531, + "step": 72900 + }, + { + "epoch": 64.54501216545012, + "grad_norm": 0.5450688600540161, + "learning_rate": 1.7739168877099913e-05, + "loss": 0.4567538833618164, + "step": 73000 + }, + { + "epoch": 64.63348816633489, + "grad_norm": 0.47621846199035645, + "learning_rate": 1.769496021220159e-05, + "loss": 0.4563169097900391, + "step": 73100 + }, + { + "epoch": 64.72196416721964, + "grad_norm": 0.5023945569992065, + "learning_rate": 1.7650751547303274e-05, + "loss": 0.46204959869384765, + "step": 73200 + }, + { + "epoch": 64.8104401681044, + "grad_norm": 0.49148306250572205, + "learning_rate": 1.760654288240495e-05, + "loss": 0.45924064636230466, + "step": 73300 + }, + { + "epoch": 64.89891616898916, + "grad_norm": 0.6161800026893616, + "learning_rate": 1.7562334217506632e-05, + "loss": 0.45994918823242187, + "step": 73400 + }, + { + "epoch": 64.98739216987393, + "grad_norm": 0.5307760238647461, + "learning_rate": 1.7518125552608312e-05, + "loss": 0.461478271484375, + "step": 73500 + }, + { + "epoch": 65.07520460075204, + "grad_norm": 0.588062584400177, + "learning_rate": 1.7474358974358976e-05, + "loss": 0.4461378479003906, + "step": 73600 + }, + { + "epoch": 65.16368060163681, + "grad_norm": 0.5329079627990723, + "learning_rate": 1.7430150309460656e-05, + "loss": 0.4440943145751953, + "step": 73700 + }, + { + "epoch": 65.25215660252157, + "grad_norm": 0.6149891018867493, + "learning_rate": 1.7385941644562333e-05, + "loss": 0.44721881866455077, + "step": 73800 + }, + { + "epoch": 65.34063260340632, + "grad_norm": 0.5438173413276672, + "learning_rate": 1.7341732979664017e-05, + "loss": 0.44954757690429686, + "step": 73900 + }, + { + "epoch": 65.42910860429109, + "grad_norm": 0.5428133606910706, + "learning_rate": 1.7297524314765694e-05, + "loss": 0.45107986450195314, + "step": 74000 + }, + { + "epoch": 65.51758460517584, + "grad_norm": 0.5134186744689941, + "learning_rate": 1.7253315649867374e-05, + "loss": 0.45244071960449217, + "step": 74100 + }, + { + "epoch": 65.60606060606061, + "grad_norm": 0.6233081817626953, + "learning_rate": 1.7209106984969055e-05, + "loss": 0.45329185485839846, + "step": 74200 + }, + { + "epoch": 65.69453660694536, + "grad_norm": 0.5700708627700806, + "learning_rate": 1.7164898320070735e-05, + "loss": 0.4539757537841797, + "step": 74300 + }, + { + "epoch": 65.78301260783013, + "grad_norm": 0.5631476640701294, + "learning_rate": 1.7120689655172416e-05, + "loss": 0.4555579376220703, + "step": 74400 + }, + { + "epoch": 65.87148860871488, + "grad_norm": 0.5964381694793701, + "learning_rate": 1.7076480990274093e-05, + "loss": 0.45496936798095705, + "step": 74500 + }, + { + "epoch": 65.95996460959965, + "grad_norm": 0.5872741341590881, + "learning_rate": 1.7032272325375777e-05, + "loss": 0.45641098022460935, + "step": 74600 + }, + { + "epoch": 66.04777704047777, + "grad_norm": 0.522363543510437, + "learning_rate": 1.6988063660477454e-05, + "loss": 0.4488802337646484, + "step": 74700 + }, + { + "epoch": 66.13625304136254, + "grad_norm": 0.5161113739013672, + "learning_rate": 1.6943854995579134e-05, + "loss": 0.44122817993164065, + "step": 74800 + }, + { + "epoch": 66.22472904224729, + "grad_norm": 0.5127883553504944, + "learning_rate": 1.6899646330680815e-05, + "loss": 0.4447059631347656, + "step": 74900 + }, + { + "epoch": 66.31320504313204, + "grad_norm": 0.5202219486236572, + "learning_rate": 1.6855437665782495e-05, + "loss": 0.4453567123413086, + "step": 75000 + }, + { + "epoch": 66.40168104401681, + "grad_norm": 0.4957808256149292, + "learning_rate": 1.6811229000884172e-05, + "loss": 0.44502986907958986, + "step": 75100 + }, + { + "epoch": 66.49015704490157, + "grad_norm": 0.622518002986908, + "learning_rate": 1.6767020335985853e-05, + "loss": 0.44539188385009765, + "step": 75200 + }, + { + "epoch": 66.57863304578633, + "grad_norm": 0.5333230495452881, + "learning_rate": 1.6722811671087537e-05, + "loss": 0.4479424667358398, + "step": 75300 + }, + { + "epoch": 66.66710904667109, + "grad_norm": 0.536641001701355, + "learning_rate": 1.6678603006189214e-05, + "loss": 0.4486875534057617, + "step": 75400 + }, + { + "epoch": 66.75558504755585, + "grad_norm": 0.6140312552452087, + "learning_rate": 1.6634394341290894e-05, + "loss": 0.45118595123291017, + "step": 75500 + }, + { + "epoch": 66.84406104844061, + "grad_norm": 0.5268392562866211, + "learning_rate": 1.6590185676392574e-05, + "loss": 0.4503518676757812, + "step": 75600 + }, + { + "epoch": 66.93253704932538, + "grad_norm": 0.6316497325897217, + "learning_rate": 1.6545977011494255e-05, + "loss": 0.45311626434326174, + "step": 75700 + }, + { + "epoch": 67.02034948020349, + "grad_norm": 0.4964323937892914, + "learning_rate": 1.6502210433244915e-05, + "loss": 0.44798419952392576, + "step": 75800 + }, + { + "epoch": 67.10882548108826, + "grad_norm": 0.5668012499809265, + "learning_rate": 1.6458001768346595e-05, + "loss": 0.43682758331298827, + "step": 75900 + }, + { + "epoch": 67.19730148197301, + "grad_norm": 0.5451331734657288, + "learning_rate": 1.6413793103448276e-05, + "loss": 0.43744281768798826, + "step": 76000 + }, + { + "epoch": 67.28577748285778, + "grad_norm": 0.5625444650650024, + "learning_rate": 1.6369584438549956e-05, + "loss": 0.44072349548339845, + "step": 76100 + }, + { + "epoch": 67.37425348374254, + "grad_norm": 0.5437332391738892, + "learning_rate": 1.6325375773651637e-05, + "loss": 0.4433360290527344, + "step": 76200 + }, + { + "epoch": 67.46272948462729, + "grad_norm": 0.6005889773368835, + "learning_rate": 1.6281167108753317e-05, + "loss": 0.44355270385742185, + "step": 76300 + }, + { + "epoch": 67.55120548551206, + "grad_norm": 0.6379736065864563, + "learning_rate": 1.6236958443854997e-05, + "loss": 0.4445816421508789, + "step": 76400 + }, + { + "epoch": 67.63968148639681, + "grad_norm": 0.4892788529396057, + "learning_rate": 1.6192749778956675e-05, + "loss": 0.4460066604614258, + "step": 76500 + }, + { + "epoch": 67.72815748728158, + "grad_norm": 0.5238019227981567, + "learning_rate": 1.614854111405836e-05, + "loss": 0.44812583923339844, + "step": 76600 + }, + { + "epoch": 67.81663348816633, + "grad_norm": 0.6448091864585876, + "learning_rate": 1.6104332449160035e-05, + "loss": 0.44679683685302735, + "step": 76700 + }, + { + "epoch": 67.9051094890511, + "grad_norm": 0.501971423625946, + "learning_rate": 1.6060123784261716e-05, + "loss": 0.44675071716308595, + "step": 76800 + }, + { + "epoch": 67.99358548993585, + "grad_norm": 0.5027251243591309, + "learning_rate": 1.6015915119363396e-05, + "loss": 0.450067138671875, + "step": 76900 + }, + { + "epoch": 68.08139792081398, + "grad_norm": 0.5118396878242493, + "learning_rate": 1.5971706454465077e-05, + "loss": 0.4363971710205078, + "step": 77000 + }, + { + "epoch": 68.16987392169874, + "grad_norm": 0.49976325035095215, + "learning_rate": 1.5927497789566757e-05, + "loss": 0.43459579467773435, + "step": 77100 + }, + { + "epoch": 68.2583499225835, + "grad_norm": 0.4591541886329651, + "learning_rate": 1.5883289124668434e-05, + "loss": 0.4374491500854492, + "step": 77200 + }, + { + "epoch": 68.34682592346826, + "grad_norm": 0.5061107277870178, + "learning_rate": 1.5839080459770118e-05, + "loss": 0.4367493438720703, + "step": 77300 + }, + { + "epoch": 68.43530192435301, + "grad_norm": 0.5607414245605469, + "learning_rate": 1.5794871794871795e-05, + "loss": 0.43953250885009765, + "step": 77400 + }, + { + "epoch": 68.52377792523778, + "grad_norm": 0.5758550763130188, + "learning_rate": 1.5750663129973476e-05, + "loss": 0.4412353515625, + "step": 77500 + }, + { + "epoch": 68.61225392612253, + "grad_norm": 0.6092869639396667, + "learning_rate": 1.5706454465075153e-05, + "loss": 0.44133682250976564, + "step": 77600 + }, + { + "epoch": 68.7007299270073, + "grad_norm": 0.6203352808952332, + "learning_rate": 1.5662245800176837e-05, + "loss": 0.4439066696166992, + "step": 77700 + }, + { + "epoch": 68.78920592789206, + "grad_norm": 0.5746839046478271, + "learning_rate": 1.5618037135278517e-05, + "loss": 0.4423197174072266, + "step": 77800 + }, + { + "epoch": 68.87768192877682, + "grad_norm": 0.5136276483535767, + "learning_rate": 1.5573828470380194e-05, + "loss": 0.4460869598388672, + "step": 77900 + }, + { + "epoch": 68.96615792966158, + "grad_norm": 0.4968768358230591, + "learning_rate": 1.5529619805481878e-05, + "loss": 0.4462531280517578, + "step": 78000 + }, + { + "epoch": 69.05397036053971, + "grad_norm": 0.5103012919425964, + "learning_rate": 1.5485411140583555e-05, + "loss": 0.43465484619140626, + "step": 78100 + }, + { + "epoch": 69.14244636142446, + "grad_norm": 0.5626784563064575, + "learning_rate": 1.5441202475685236e-05, + "loss": 0.4333412551879883, + "step": 78200 + }, + { + "epoch": 69.23092236230923, + "grad_norm": 0.5118581652641296, + "learning_rate": 1.5396993810786913e-05, + "loss": 0.4336922836303711, + "step": 78300 + }, + { + "epoch": 69.31939836319398, + "grad_norm": 0.5944911241531372, + "learning_rate": 1.5352785145888596e-05, + "loss": 0.43566287994384767, + "step": 78400 + }, + { + "epoch": 69.40787436407874, + "grad_norm": 0.5433744788169861, + "learning_rate": 1.5308576480990273e-05, + "loss": 0.4361726379394531, + "step": 78500 + }, + { + "epoch": 69.4963503649635, + "grad_norm": 0.614020049571991, + "learning_rate": 1.5264367816091954e-05, + "loss": 0.4380105209350586, + "step": 78600 + }, + { + "epoch": 69.58482636584826, + "grad_norm": 0.5004254579544067, + "learning_rate": 1.5220159151193636e-05, + "loss": 0.4391395950317383, + "step": 78700 + }, + { + "epoch": 69.67330236673303, + "grad_norm": 0.522055983543396, + "learning_rate": 1.5175950486295315e-05, + "loss": 0.4396755599975586, + "step": 78800 + }, + { + "epoch": 69.76177836761778, + "grad_norm": 0.524988055229187, + "learning_rate": 1.5131741821396994e-05, + "loss": 0.4374229431152344, + "step": 78900 + }, + { + "epoch": 69.85025436850255, + "grad_norm": 0.5780676603317261, + "learning_rate": 1.5087533156498674e-05, + "loss": 0.4402974319458008, + "step": 79000 + }, + { + "epoch": 69.9387303693873, + "grad_norm": 0.5651708841323853, + "learning_rate": 1.5043324491600355e-05, + "loss": 0.44202667236328125, + "step": 79100 + }, + { + "epoch": 70.02654280026543, + "grad_norm": 0.48370227217674255, + "learning_rate": 1.4999557913351018e-05, + "loss": 0.4367184829711914, + "step": 79200 + }, + { + "epoch": 70.11501880115019, + "grad_norm": 0.5551156401634216, + "learning_rate": 1.4955349248452696e-05, + "loss": 0.42862590789794924, + "step": 79300 + }, + { + "epoch": 70.20349480203495, + "grad_norm": 0.5126725435256958, + "learning_rate": 1.4911140583554379e-05, + "loss": 0.4319373321533203, + "step": 79400 + }, + { + "epoch": 70.2919708029197, + "grad_norm": 0.5189195871353149, + "learning_rate": 1.4866931918656057e-05, + "loss": 0.4309040832519531, + "step": 79500 + }, + { + "epoch": 70.38044680380447, + "grad_norm": 0.49422213435173035, + "learning_rate": 1.4822723253757736e-05, + "loss": 0.43275665283203124, + "step": 79600 + }, + { + "epoch": 70.46892280468923, + "grad_norm": 0.49081242084503174, + "learning_rate": 1.4778514588859418e-05, + "loss": 0.4326107406616211, + "step": 79700 + }, + { + "epoch": 70.55739880557398, + "grad_norm": 0.5408063530921936, + "learning_rate": 1.4734305923961097e-05, + "loss": 0.4341436004638672, + "step": 79800 + }, + { + "epoch": 70.64587480645875, + "grad_norm": 0.4664778411388397, + "learning_rate": 1.4690097259062778e-05, + "loss": 0.4358782577514648, + "step": 79900 + }, + { + "epoch": 70.7343508073435, + "grad_norm": 0.5463866591453552, + "learning_rate": 1.4645888594164456e-05, + "loss": 0.4348703384399414, + "step": 80000 + }, + { + "epoch": 70.82282680822827, + "grad_norm": 0.5187687873840332, + "learning_rate": 1.4601679929266138e-05, + "loss": 0.43734962463378907, + "step": 80100 + }, + { + "epoch": 70.91130280911302, + "grad_norm": 0.4700576961040497, + "learning_rate": 1.4557471264367817e-05, + "loss": 0.43692012786865236, + "step": 80200 + }, + { + "epoch": 70.99977880999779, + "grad_norm": 0.5413524508476257, + "learning_rate": 1.4513262599469496e-05, + "loss": 0.43848495483398436, + "step": 80300 + }, + { + "epoch": 71.08759124087591, + "grad_norm": 0.5619797110557556, + "learning_rate": 1.4469053934571178e-05, + "loss": 0.4241709899902344, + "step": 80400 + }, + { + "epoch": 71.17606724176068, + "grad_norm": 0.5617126226425171, + "learning_rate": 1.4424845269672857e-05, + "loss": 0.42585777282714843, + "step": 80500 + }, + { + "epoch": 71.26454324264543, + "grad_norm": 0.6131432056427002, + "learning_rate": 1.4380636604774536e-05, + "loss": 0.42857707977294923, + "step": 80600 + }, + { + "epoch": 71.3530192435302, + "grad_norm": 0.5178084969520569, + "learning_rate": 1.4336427939876216e-05, + "loss": 0.4283063507080078, + "step": 80700 + }, + { + "epoch": 71.44149524441495, + "grad_norm": 0.4994112253189087, + "learning_rate": 1.4292219274977897e-05, + "loss": 0.43106334686279296, + "step": 80800 + }, + { + "epoch": 71.5299712452997, + "grad_norm": 0.5411744713783264, + "learning_rate": 1.4248010610079577e-05, + "loss": 0.43190105438232423, + "step": 80900 + }, + { + "epoch": 71.61844724618447, + "grad_norm": 0.5602013468742371, + "learning_rate": 1.4203801945181256e-05, + "loss": 0.4335565185546875, + "step": 81000 + }, + { + "epoch": 71.70692324706923, + "grad_norm": 0.5469107031822205, + "learning_rate": 1.4159593280282938e-05, + "loss": 0.4339017105102539, + "step": 81100 + }, + { + "epoch": 71.795399247954, + "grad_norm": 0.5971689224243164, + "learning_rate": 1.4115384615384617e-05, + "loss": 0.43302181243896487, + "step": 81200 + }, + { + "epoch": 71.88387524883875, + "grad_norm": 0.5518947243690491, + "learning_rate": 1.4071175950486295e-05, + "loss": 0.4339981460571289, + "step": 81300 + }, + { + "epoch": 71.97235124972352, + "grad_norm": 0.46094366908073425, + "learning_rate": 1.4026967285587974e-05, + "loss": 0.4368946075439453, + "step": 81400 + }, + { + "epoch": 72.06016368060163, + "grad_norm": 0.5013940334320068, + "learning_rate": 1.3983200707338639e-05, + "loss": 0.4272830581665039, + "step": 81500 + }, + { + "epoch": 72.1486396814864, + "grad_norm": 0.5779539346694946, + "learning_rate": 1.3938992042440318e-05, + "loss": 0.4237482452392578, + "step": 81600 + }, + { + "epoch": 72.23711568237115, + "grad_norm": 0.5799530744552612, + "learning_rate": 1.3894783377541998e-05, + "loss": 0.4221677398681641, + "step": 81700 + }, + { + "epoch": 72.32559168325592, + "grad_norm": 0.4773975908756256, + "learning_rate": 1.385057471264368e-05, + "loss": 0.4251049041748047, + "step": 81800 + }, + { + "epoch": 72.41406768414068, + "grad_norm": 0.5311180353164673, + "learning_rate": 1.380636604774536e-05, + "loss": 0.42632369995117186, + "step": 81900 + }, + { + "epoch": 72.50254368502544, + "grad_norm": 0.47812601923942566, + "learning_rate": 1.3762157382847038e-05, + "loss": 0.42722888946533205, + "step": 82000 + }, + { + "epoch": 72.5910196859102, + "grad_norm": 0.606674313545227, + "learning_rate": 1.371794871794872e-05, + "loss": 0.4295787811279297, + "step": 82100 + }, + { + "epoch": 72.67949568679495, + "grad_norm": 0.5414536595344543, + "learning_rate": 1.3673740053050399e-05, + "loss": 0.4311911392211914, + "step": 82200 + }, + { + "epoch": 72.76797168767972, + "grad_norm": 0.5214236974716187, + "learning_rate": 1.3629531388152078e-05, + "loss": 0.4323184585571289, + "step": 82300 + }, + { + "epoch": 72.85644768856447, + "grad_norm": 0.531461238861084, + "learning_rate": 1.3585322723253756e-05, + "loss": 0.43523616790771485, + "step": 82400 + }, + { + "epoch": 72.94492368944924, + "grad_norm": 0.550273597240448, + "learning_rate": 1.3541114058355439e-05, + "loss": 0.4310142517089844, + "step": 82500 + }, + { + "epoch": 73.03273612032736, + "grad_norm": 0.47776085138320923, + "learning_rate": 1.3496905393457119e-05, + "loss": 0.4287875747680664, + "step": 82600 + }, + { + "epoch": 73.12121212121212, + "grad_norm": 0.4990812838077545, + "learning_rate": 1.3452696728558798e-05, + "loss": 0.42051288604736325, + "step": 82700 + }, + { + "epoch": 73.20968812209688, + "grad_norm": 0.5124841332435608, + "learning_rate": 1.340848806366048e-05, + "loss": 0.4193102264404297, + "step": 82800 + }, + { + "epoch": 73.29816412298165, + "grad_norm": 0.5289502739906311, + "learning_rate": 1.3364279398762159e-05, + "loss": 0.42208141326904297, + "step": 82900 + }, + { + "epoch": 73.3866401238664, + "grad_norm": 0.4958449602127075, + "learning_rate": 1.3320070733863837e-05, + "loss": 0.42313686370849607, + "step": 83000 + }, + { + "epoch": 73.47511612475117, + "grad_norm": 0.5278774499893188, + "learning_rate": 1.3275862068965516e-05, + "loss": 0.42546688079833983, + "step": 83100 + }, + { + "epoch": 73.56359212563592, + "grad_norm": 0.5365238785743713, + "learning_rate": 1.3231653404067198e-05, + "loss": 0.42514255523681643, + "step": 83200 + }, + { + "epoch": 73.65206812652067, + "grad_norm": 0.5327147841453552, + "learning_rate": 1.3187444739168877e-05, + "loss": 0.42642066955566404, + "step": 83300 + }, + { + "epoch": 73.74054412740544, + "grad_norm": 0.5245737433433533, + "learning_rate": 1.3143236074270558e-05, + "loss": 0.4263890838623047, + "step": 83400 + }, + { + "epoch": 73.8290201282902, + "grad_norm": 0.5159674286842346, + "learning_rate": 1.3099027409372238e-05, + "loss": 0.428508415222168, + "step": 83500 + }, + { + "epoch": 73.91749612917496, + "grad_norm": 0.47965142130851746, + "learning_rate": 1.3054818744473918e-05, + "loss": 0.42886260986328123, + "step": 83600 + }, + { + "epoch": 74.00530856005308, + "grad_norm": 0.573679506778717, + "learning_rate": 1.301105216622458e-05, + "loss": 0.4288605499267578, + "step": 83700 + }, + { + "epoch": 74.09378456093785, + "grad_norm": 0.5544322729110718, + "learning_rate": 1.2966843501326262e-05, + "loss": 0.4174742126464844, + "step": 83800 + }, + { + "epoch": 74.1822605618226, + "grad_norm": 0.4993799030780792, + "learning_rate": 1.2922634836427941e-05, + "loss": 0.4191867828369141, + "step": 83900 + }, + { + "epoch": 74.27073656270737, + "grad_norm": 0.57634037733078, + "learning_rate": 1.287842617152962e-05, + "loss": 0.42080997467041015, + "step": 84000 + }, + { + "epoch": 74.35921256359212, + "grad_norm": 0.5524028539657593, + "learning_rate": 1.2834217506631298e-05, + "loss": 0.41995132446289063, + "step": 84100 + }, + { + "epoch": 74.44768856447689, + "grad_norm": 0.5109556913375854, + "learning_rate": 1.279000884173298e-05, + "loss": 0.4207102584838867, + "step": 84200 + }, + { + "epoch": 74.53616456536164, + "grad_norm": 0.6384374499320984, + "learning_rate": 1.2745800176834661e-05, + "loss": 0.42162609100341797, + "step": 84300 + }, + { + "epoch": 74.6246405662464, + "grad_norm": 0.5029319524765015, + "learning_rate": 1.270159151193634e-05, + "loss": 0.4232307815551758, + "step": 84400 + }, + { + "epoch": 74.71311656713117, + "grad_norm": 0.49697303771972656, + "learning_rate": 1.2657382847038022e-05, + "loss": 0.4233212661743164, + "step": 84500 + }, + { + "epoch": 74.80159256801592, + "grad_norm": 0.5748586058616638, + "learning_rate": 1.26131741821397e-05, + "loss": 0.42522281646728516, + "step": 84600 + }, + { + "epoch": 74.89006856890069, + "grad_norm": 0.5335224866867065, + "learning_rate": 1.256896551724138e-05, + "loss": 0.4264080047607422, + "step": 84700 + }, + { + "epoch": 74.97854456978544, + "grad_norm": 0.5223293900489807, + "learning_rate": 1.2524756852343058e-05, + "loss": 0.4248130416870117, + "step": 84800 + }, + { + "epoch": 75.06635700066357, + "grad_norm": 0.588205099105835, + "learning_rate": 1.2480548187444739e-05, + "loss": 0.41714618682861326, + "step": 84900 + }, + { + "epoch": 75.15483300154833, + "grad_norm": 0.4878210127353668, + "learning_rate": 1.2436339522546419e-05, + "loss": 0.41694087982177735, + "step": 85000 + }, + { + "epoch": 75.2433090024331, + "grad_norm": 0.5826809406280518, + "learning_rate": 1.23921308576481e-05, + "loss": 0.41839481353759767, + "step": 85100 + }, + { + "epoch": 75.33178500331785, + "grad_norm": 0.5703395009040833, + "learning_rate": 1.234792219274978e-05, + "loss": 0.419650993347168, + "step": 85200 + }, + { + "epoch": 75.42026100420262, + "grad_norm": 0.5960374474525452, + "learning_rate": 1.230371352785146e-05, + "loss": 0.41910491943359374, + "step": 85300 + }, + { + "epoch": 75.50873700508737, + "grad_norm": 0.5564795732498169, + "learning_rate": 1.225950486295314e-05, + "loss": 0.42010501861572264, + "step": 85400 + }, + { + "epoch": 75.59721300597214, + "grad_norm": 0.5871827006340027, + "learning_rate": 1.221529619805482e-05, + "loss": 0.41939094543457034, + "step": 85500 + }, + { + "epoch": 75.68568900685689, + "grad_norm": 0.6139041185379028, + "learning_rate": 1.2171087533156498e-05, + "loss": 0.42172611236572266, + "step": 85600 + }, + { + "epoch": 75.77416500774164, + "grad_norm": 0.5693202614784241, + "learning_rate": 1.2126878868258179e-05, + "loss": 0.4217537307739258, + "step": 85700 + }, + { + "epoch": 75.86264100862641, + "grad_norm": 0.5371018648147583, + "learning_rate": 1.208267020335986e-05, + "loss": 0.4220458984375, + "step": 85800 + }, + { + "epoch": 75.95111700951117, + "grad_norm": 0.5617541074752808, + "learning_rate": 1.2038461538461538e-05, + "loss": 0.4248412322998047, + "step": 85900 + }, + { + "epoch": 76.0389294403893, + "grad_norm": 0.5177831649780273, + "learning_rate": 1.1994694960212203e-05, + "loss": 0.41939964294433596, + "step": 86000 + }, + { + "epoch": 76.12740544127405, + "grad_norm": 0.5142802000045776, + "learning_rate": 1.1950486295313883e-05, + "loss": 0.4111063003540039, + "step": 86100 + }, + { + "epoch": 76.21588144215882, + "grad_norm": 0.4861648976802826, + "learning_rate": 1.1906277630415562e-05, + "loss": 0.4148457717895508, + "step": 86200 + }, + { + "epoch": 76.30435744304357, + "grad_norm": 0.5097411870956421, + "learning_rate": 1.1862068965517243e-05, + "loss": 0.4158660125732422, + "step": 86300 + }, + { + "epoch": 76.39283344392834, + "grad_norm": 0.4740864336490631, + "learning_rate": 1.1817860300618921e-05, + "loss": 0.4178118133544922, + "step": 86400 + }, + { + "epoch": 76.48130944481309, + "grad_norm": 0.44249430298805237, + "learning_rate": 1.1773651635720602e-05, + "loss": 0.4165281677246094, + "step": 86500 + }, + { + "epoch": 76.56978544569786, + "grad_norm": 0.5490387082099915, + "learning_rate": 1.172944297082228e-05, + "loss": 0.4198506927490234, + "step": 86600 + }, + { + "epoch": 76.65826144658261, + "grad_norm": 0.5175479650497437, + "learning_rate": 1.1685234305923961e-05, + "loss": 0.4220100402832031, + "step": 86700 + }, + { + "epoch": 76.74673744746737, + "grad_norm": 0.5073688626289368, + "learning_rate": 1.1641025641025642e-05, + "loss": 0.4184294891357422, + "step": 86800 + }, + { + "epoch": 76.83521344835214, + "grad_norm": 0.6137869358062744, + "learning_rate": 1.1596816976127322e-05, + "loss": 0.41919185638427736, + "step": 86900 + }, + { + "epoch": 76.92368944923689, + "grad_norm": 0.5274661183357239, + "learning_rate": 1.1552608311229002e-05, + "loss": 0.4193117141723633, + "step": 87000 + }, + { + "epoch": 77.01150188011502, + "grad_norm": 0.578369677066803, + "learning_rate": 1.1508399646330681e-05, + "loss": 0.4192862701416016, + "step": 87100 + }, + { + "epoch": 77.09997788099977, + "grad_norm": 0.6028936505317688, + "learning_rate": 1.1464190981432362e-05, + "loss": 0.40931896209716795, + "step": 87200 + }, + { + "epoch": 77.18845388188454, + "grad_norm": 0.4915790557861328, + "learning_rate": 1.141998231653404e-05, + "loss": 0.41025619506835936, + "step": 87300 + }, + { + "epoch": 77.2769298827693, + "grad_norm": 0.5164591073989868, + "learning_rate": 1.1375773651635721e-05, + "loss": 0.4112412643432617, + "step": 87400 + }, + { + "epoch": 77.36540588365406, + "grad_norm": 0.48311275243759155, + "learning_rate": 1.1331564986737401e-05, + "loss": 0.4144105911254883, + "step": 87500 + }, + { + "epoch": 77.45388188453882, + "grad_norm": 0.46419015526771545, + "learning_rate": 1.128735632183908e-05, + "loss": 0.41563541412353516, + "step": 87600 + }, + { + "epoch": 77.54235788542358, + "grad_norm": 0.6288944482803345, + "learning_rate": 1.124314765694076e-05, + "loss": 0.41669620513916017, + "step": 87700 + }, + { + "epoch": 77.63083388630834, + "grad_norm": 0.497126966714859, + "learning_rate": 1.1198938992042441e-05, + "loss": 0.41618637084960936, + "step": 87800 + }, + { + "epoch": 77.7193098871931, + "grad_norm": 0.5373407602310181, + "learning_rate": 1.1154730327144122e-05, + "loss": 0.41614810943603514, + "step": 87900 + }, + { + "epoch": 77.80778588807786, + "grad_norm": 0.519382894039154, + "learning_rate": 1.1110521662245802e-05, + "loss": 0.41859901428222657, + "step": 88000 + }, + { + "epoch": 77.89626188896261, + "grad_norm": 0.5001983046531677, + "learning_rate": 1.106631299734748e-05, + "loss": 0.418219108581543, + "step": 88100 + }, + { + "epoch": 77.98473788984738, + "grad_norm": 0.5034019947052002, + "learning_rate": 1.1022104332449161e-05, + "loss": 0.4178015899658203, + "step": 88200 + }, + { + "epoch": 78.0725503207255, + "grad_norm": 0.5158605575561523, + "learning_rate": 1.097789566755084e-05, + "loss": 0.4091143035888672, + "step": 88300 + }, + { + "epoch": 78.16102632161027, + "grad_norm": 0.48502761125564575, + "learning_rate": 1.093368700265252e-05, + "loss": 0.40843994140625, + "step": 88400 + }, + { + "epoch": 78.24950232249502, + "grad_norm": 0.5448765754699707, + "learning_rate": 1.08894783377542e-05, + "loss": 0.4109685516357422, + "step": 88500 + }, + { + "epoch": 78.33797832337979, + "grad_norm": 0.52455735206604, + "learning_rate": 1.084526967285588e-05, + "loss": 0.4108180236816406, + "step": 88600 + }, + { + "epoch": 78.42645432426454, + "grad_norm": 0.49440670013427734, + "learning_rate": 1.080106100795756e-05, + "loss": 0.41148426055908205, + "step": 88700 + }, + { + "epoch": 78.51493032514931, + "grad_norm": 0.5575434565544128, + "learning_rate": 1.075685234305924e-05, + "loss": 0.4121563720703125, + "step": 88800 + }, + { + "epoch": 78.60340632603406, + "grad_norm": 0.5276569724082947, + "learning_rate": 1.0712643678160921e-05, + "loss": 0.41357189178466797, + "step": 88900 + }, + { + "epoch": 78.69188232691883, + "grad_norm": 0.5279592871665955, + "learning_rate": 1.06684350132626e-05, + "loss": 0.4147018814086914, + "step": 89000 + }, + { + "epoch": 78.78035832780358, + "grad_norm": 0.4984647333621979, + "learning_rate": 1.062422634836428e-05, + "loss": 0.41413829803466795, + "step": 89100 + }, + { + "epoch": 78.86883432868834, + "grad_norm": 0.5556148886680603, + "learning_rate": 1.0580017683465959e-05, + "loss": 0.4168708419799805, + "step": 89200 + }, + { + "epoch": 78.9573103295731, + "grad_norm": 0.46219438314437866, + "learning_rate": 1.053580901856764e-05, + "loss": 0.41841983795166016, + "step": 89300 + }, + { + "epoch": 79.04512276045122, + "grad_norm": 0.49136674404144287, + "learning_rate": 1.0492042440318303e-05, + "loss": 0.41013729095458984, + "step": 89400 + }, + { + "epoch": 79.13359876133599, + "grad_norm": 0.5096011161804199, + "learning_rate": 1.0447833775419983e-05, + "loss": 0.4057589340209961, + "step": 89500 + }, + { + "epoch": 79.22207476222074, + "grad_norm": 0.4563368558883667, + "learning_rate": 1.0403625110521663e-05, + "loss": 0.4064152526855469, + "step": 89600 + }, + { + "epoch": 79.31055076310551, + "grad_norm": 0.5743097066879272, + "learning_rate": 1.0359416445623344e-05, + "loss": 0.40998432159423825, + "step": 89700 + }, + { + "epoch": 79.39902676399026, + "grad_norm": 0.46749743819236755, + "learning_rate": 1.0315207780725023e-05, + "loss": 0.40825595855712893, + "step": 89800 + }, + { + "epoch": 79.48750276487503, + "grad_norm": 0.522980272769928, + "learning_rate": 1.0270999115826703e-05, + "loss": 0.4116529083251953, + "step": 89900 + }, + { + "epoch": 79.57597876575979, + "grad_norm": 0.4576069712638855, + "learning_rate": 1.0226790450928382e-05, + "loss": 0.41039798736572264, + "step": 90000 + }, + { + "epoch": 79.66445476664455, + "grad_norm": 0.574553370475769, + "learning_rate": 1.0182581786030062e-05, + "loss": 0.4103997802734375, + "step": 90100 + }, + { + "epoch": 79.7529307675293, + "grad_norm": 0.5592597126960754, + "learning_rate": 1.0138373121131741e-05, + "loss": 0.4123684310913086, + "step": 90200 + }, + { + "epoch": 79.84140676841407, + "grad_norm": 0.5754570364952087, + "learning_rate": 1.0094164456233422e-05, + "loss": 0.4138601684570313, + "step": 90300 + }, + { + "epoch": 79.92988276929883, + "grad_norm": 0.5830336213111877, + "learning_rate": 1.0049955791335102e-05, + "loss": 0.41378173828125, + "step": 90400 + }, + { + "epoch": 80.01769520017695, + "grad_norm": 0.473369836807251, + "learning_rate": 1.0005747126436783e-05, + "loss": 0.41222110748291013, + "step": 90500 + }, + { + "epoch": 80.10617120106171, + "grad_norm": 0.5327860116958618, + "learning_rate": 9.961538461538463e-06, + "loss": 0.4058869934082031, + "step": 90600 + }, + { + "epoch": 80.19464720194647, + "grad_norm": 0.5304612517356873, + "learning_rate": 9.917329796640142e-06, + "loss": 0.4061882781982422, + "step": 90700 + }, + { + "epoch": 80.28312320283123, + "grad_norm": 0.5240916013717651, + "learning_rate": 9.873121131741822e-06, + "loss": 0.40706119537353513, + "step": 90800 + }, + { + "epoch": 80.37159920371599, + "grad_norm": 0.4663858413696289, + "learning_rate": 9.828912466843501e-06, + "loss": 0.4077639389038086, + "step": 90900 + }, + { + "epoch": 80.46007520460076, + "grad_norm": 0.4718465805053711, + "learning_rate": 9.784703801945181e-06, + "loss": 0.4078546905517578, + "step": 91000 + }, + { + "epoch": 80.54855120548551, + "grad_norm": 0.45132529735565186, + "learning_rate": 9.740495137046862e-06, + "loss": 0.40724002838134765, + "step": 91100 + }, + { + "epoch": 80.63702720637028, + "grad_norm": 0.4961422085762024, + "learning_rate": 9.69628647214854e-06, + "loss": 0.4097640609741211, + "step": 91200 + }, + { + "epoch": 80.72550320725503, + "grad_norm": 0.5276188850402832, + "learning_rate": 9.652077807250221e-06, + "loss": 0.41011890411376956, + "step": 91300 + }, + { + "epoch": 80.8139792081398, + "grad_norm": 0.48676180839538574, + "learning_rate": 9.607869142351902e-06, + "loss": 0.41075672149658204, + "step": 91400 + }, + { + "epoch": 80.90245520902455, + "grad_norm": 0.5812916159629822, + "learning_rate": 9.563660477453582e-06, + "loss": 0.4131761932373047, + "step": 91500 + }, + { + "epoch": 80.9909312099093, + "grad_norm": 0.5730577707290649, + "learning_rate": 9.51945181255526e-06, + "loss": 0.41234848022460935, + "step": 91600 + }, + { + "epoch": 81.07874364078744, + "grad_norm": 0.5240619778633118, + "learning_rate": 9.475685234305924e-06, + "loss": 0.40376312255859376, + "step": 91700 + }, + { + "epoch": 81.16721964167219, + "grad_norm": 0.46626827120780945, + "learning_rate": 9.431476569407604e-06, + "loss": 0.40396995544433595, + "step": 91800 + }, + { + "epoch": 81.25569564255696, + "grad_norm": 0.49117109179496765, + "learning_rate": 9.387267904509283e-06, + "loss": 0.4028842544555664, + "step": 91900 + }, + { + "epoch": 81.34417164344171, + "grad_norm": 0.5428334474563599, + "learning_rate": 9.343059239610964e-06, + "loss": 0.4046338653564453, + "step": 92000 + }, + { + "epoch": 81.43264764432648, + "grad_norm": 0.5240166783332825, + "learning_rate": 9.298850574712644e-06, + "loss": 0.4052513885498047, + "step": 92100 + }, + { + "epoch": 81.52112364521123, + "grad_norm": 0.4899362325668335, + "learning_rate": 9.254641909814325e-06, + "loss": 0.4052754974365234, + "step": 92200 + }, + { + "epoch": 81.609599646096, + "grad_norm": 0.46969664096832275, + "learning_rate": 9.210433244916005e-06, + "loss": 0.4072676086425781, + "step": 92300 + }, + { + "epoch": 81.69807564698075, + "grad_norm": 0.4990880489349365, + "learning_rate": 9.166224580017684e-06, + "loss": 0.40702415466308595, + "step": 92400 + }, + { + "epoch": 81.78655164786552, + "grad_norm": 0.5545535087585449, + "learning_rate": 9.122015915119364e-06, + "loss": 0.4103099822998047, + "step": 92500 + }, + { + "epoch": 81.87502764875028, + "grad_norm": 0.5591033101081848, + "learning_rate": 9.077807250221043e-06, + "loss": 0.4087317276000977, + "step": 92600 + }, + { + "epoch": 81.96350364963503, + "grad_norm": 0.5289734601974487, + "learning_rate": 9.033598585322723e-06, + "loss": 0.4112258529663086, + "step": 92700 + }, + { + "epoch": 82.05131608051316, + "grad_norm": 0.59573894739151, + "learning_rate": 8.989389920424404e-06, + "loss": 0.40506195068359374, + "step": 92800 + }, + { + "epoch": 82.13979208139791, + "grad_norm": 0.4581588804721832, + "learning_rate": 8.945181255526083e-06, + "loss": 0.401633186340332, + "step": 92900 + }, + { + "epoch": 82.22826808228268, + "grad_norm": 0.4607727527618408, + "learning_rate": 8.900972590627763e-06, + "loss": 0.4030620193481445, + "step": 93000 + }, + { + "epoch": 82.31674408316744, + "grad_norm": 0.5693869590759277, + "learning_rate": 8.856763925729444e-06, + "loss": 0.4034944152832031, + "step": 93100 + }, + { + "epoch": 82.4052200840522, + "grad_norm": 0.4679562449455261, + "learning_rate": 8.812555260831124e-06, + "loss": 0.40353385925292967, + "step": 93200 + }, + { + "epoch": 82.49369608493696, + "grad_norm": 0.4970017373561859, + "learning_rate": 8.768346595932803e-06, + "loss": 0.4040465545654297, + "step": 93300 + }, + { + "epoch": 82.58217208582172, + "grad_norm": 0.4850037097930908, + "learning_rate": 8.724137931034483e-06, + "loss": 0.40520496368408204, + "step": 93400 + }, + { + "epoch": 82.67064808670648, + "grad_norm": 0.5304952263832092, + "learning_rate": 8.679929266136164e-06, + "loss": 0.4062754440307617, + "step": 93500 + }, + { + "epoch": 82.75912408759125, + "grad_norm": 0.5124515891075134, + "learning_rate": 8.635720601237842e-06, + "loss": 0.4042987442016602, + "step": 93600 + }, + { + "epoch": 82.847600088476, + "grad_norm": 0.5527506470680237, + "learning_rate": 8.591511936339523e-06, + "loss": 0.4051095199584961, + "step": 93700 + }, + { + "epoch": 82.93607608936077, + "grad_norm": 0.4627765119075775, + "learning_rate": 8.547303271441202e-06, + "loss": 0.4065189743041992, + "step": 93800 + }, + { + "epoch": 83.02388852023888, + "grad_norm": 0.47690948843955994, + "learning_rate": 8.503094606542882e-06, + "loss": 0.4059687042236328, + "step": 93900 + }, + { + "epoch": 83.11236452112365, + "grad_norm": 0.543329656124115, + "learning_rate": 8.458885941644563e-06, + "loss": 0.40105613708496096, + "step": 94000 + }, + { + "epoch": 83.2008405220084, + "grad_norm": 0.5308240056037903, + "learning_rate": 8.414677276746243e-06, + "loss": 0.3999287414550781, + "step": 94100 + }, + { + "epoch": 83.28931652289316, + "grad_norm": 0.5098600387573242, + "learning_rate": 8.370468611847924e-06, + "loss": 0.3998809051513672, + "step": 94200 + }, + { + "epoch": 83.37779252377793, + "grad_norm": 0.5461894273757935, + "learning_rate": 8.326259946949602e-06, + "loss": 0.4027032470703125, + "step": 94300 + }, + { + "epoch": 83.46626852466268, + "grad_norm": 0.5599612593650818, + "learning_rate": 8.282051282051283e-06, + "loss": 0.4018612289428711, + "step": 94400 + }, + { + "epoch": 83.55474452554745, + "grad_norm": 0.5953245162963867, + "learning_rate": 8.237842617152961e-06, + "loss": 0.4048320770263672, + "step": 94500 + }, + { + "epoch": 83.6432205264322, + "grad_norm": 0.5232775211334229, + "learning_rate": 8.193633952254642e-06, + "loss": 0.40312889099121096, + "step": 94600 + }, + { + "epoch": 83.73169652731697, + "grad_norm": 0.5057620406150818, + "learning_rate": 8.149425287356322e-06, + "loss": 0.4016009521484375, + "step": 94700 + }, + { + "epoch": 83.82017252820172, + "grad_norm": 0.54839026927948, + "learning_rate": 8.105216622458001e-06, + "loss": 0.40390682220458984, + "step": 94800 + }, + { + "epoch": 83.90864852908649, + "grad_norm": 0.42211759090423584, + "learning_rate": 8.061007957559683e-06, + "loss": 0.4043146514892578, + "step": 94900 + }, + { + "epoch": 83.99712452997125, + "grad_norm": 0.46576666831970215, + "learning_rate": 8.016799292661362e-06, + "loss": 0.4071781539916992, + "step": 95000 + }, + { + "epoch": 84.08493696084938, + "grad_norm": 0.48286134004592896, + "learning_rate": 7.973032714412025e-06, + "loss": 0.3980902862548828, + "step": 95100 + }, + { + "epoch": 84.17341296173413, + "grad_norm": 0.5105409026145935, + "learning_rate": 7.928824049513706e-06, + "loss": 0.39626029968261717, + "step": 95200 + }, + { + "epoch": 84.26188896261888, + "grad_norm": 0.5280846357345581, + "learning_rate": 7.884615384615384e-06, + "loss": 0.39923973083496095, + "step": 95300 + }, + { + "epoch": 84.35036496350365, + "grad_norm": 0.49487778544425964, + "learning_rate": 7.840406719717065e-06, + "loss": 0.39867469787597654, + "step": 95400 + }, + { + "epoch": 84.4388409643884, + "grad_norm": 0.5105910897254944, + "learning_rate": 7.796198054818744e-06, + "loss": 0.4000941467285156, + "step": 95500 + }, + { + "epoch": 84.52731696527317, + "grad_norm": 0.49424290657043457, + "learning_rate": 7.751989389920424e-06, + "loss": 0.4025596618652344, + "step": 95600 + }, + { + "epoch": 84.61579296615793, + "grad_norm": 0.5923288464546204, + "learning_rate": 7.707780725022105e-06, + "loss": 0.40207050323486326, + "step": 95700 + }, + { + "epoch": 84.7042689670427, + "grad_norm": 0.47270065546035767, + "learning_rate": 7.663572060123785e-06, + "loss": 0.40140762329101565, + "step": 95800 + }, + { + "epoch": 84.79274496792745, + "grad_norm": 0.4515872597694397, + "learning_rate": 7.619363395225465e-06, + "loss": 0.4039121627807617, + "step": 95900 + }, + { + "epoch": 84.88122096881222, + "grad_norm": 0.5799027681350708, + "learning_rate": 7.575154730327144e-06, + "loss": 0.40215221405029294, + "step": 96000 + }, + { + "epoch": 84.96969696969697, + "grad_norm": 0.5158770680427551, + "learning_rate": 7.530946065428825e-06, + "loss": 0.40449161529541017, + "step": 96100 + }, + { + "epoch": 85.0575094005751, + "grad_norm": 0.5103220343589783, + "learning_rate": 7.4867374005305035e-06, + "loss": 0.3986453628540039, + "step": 96200 + }, + { + "epoch": 85.14598540145985, + "grad_norm": 0.48847347497940063, + "learning_rate": 7.442528735632184e-06, + "loss": 0.3962085723876953, + "step": 96300 + }, + { + "epoch": 85.2344614023446, + "grad_norm": 0.5786899328231812, + "learning_rate": 7.398320070733865e-06, + "loss": 0.398316535949707, + "step": 96400 + }, + { + "epoch": 85.32293740322937, + "grad_norm": 0.4464615285396576, + "learning_rate": 7.354111405835544e-06, + "loss": 0.39748287200927734, + "step": 96500 + }, + { + "epoch": 85.41141340411413, + "grad_norm": 0.5107320547103882, + "learning_rate": 7.3099027409372245e-06, + "loss": 0.399218864440918, + "step": 96600 + }, + { + "epoch": 85.4998894049989, + "grad_norm": 0.5555247068405151, + "learning_rate": 7.265694076038903e-06, + "loss": 0.40016975402832033, + "step": 96700 + }, + { + "epoch": 85.58836540588365, + "grad_norm": 0.46809983253479004, + "learning_rate": 7.2214854111405845e-06, + "loss": 0.39977962493896485, + "step": 96800 + }, + { + "epoch": 85.67684140676842, + "grad_norm": 0.5176143646240234, + "learning_rate": 7.177276746242263e-06, + "loss": 0.39803340911865237, + "step": 96900 + }, + { + "epoch": 85.76531740765317, + "grad_norm": 0.4717543125152588, + "learning_rate": 7.133068081343944e-06, + "loss": 0.4004299545288086, + "step": 97000 + }, + { + "epoch": 85.85379340853794, + "grad_norm": 0.49673059582710266, + "learning_rate": 7.088859416445624e-06, + "loss": 0.40104530334472654, + "step": 97100 + }, + { + "epoch": 85.94226940942269, + "grad_norm": 0.5706076622009277, + "learning_rate": 7.044650751547304e-06, + "loss": 0.40007728576660156, + "step": 97200 + }, + { + "epoch": 86.03008184030082, + "grad_norm": 0.5170352458953857, + "learning_rate": 7.000884173297967e-06, + "loss": 0.39897975921630857, + "step": 97300 + }, + { + "epoch": 86.11855784118558, + "grad_norm": 0.478630930185318, + "learning_rate": 6.956675508399646e-06, + "loss": 0.3933698272705078, + "step": 97400 + }, + { + "epoch": 86.20703384207035, + "grad_norm": 0.5094186067581177, + "learning_rate": 6.912466843501326e-06, + "loss": 0.39624488830566407, + "step": 97500 + }, + { + "epoch": 86.2955098429551, + "grad_norm": 0.5107275247573853, + "learning_rate": 6.868258178603007e-06, + "loss": 0.39685150146484377, + "step": 97600 + }, + { + "epoch": 86.38398584383985, + "grad_norm": 0.5861279964447021, + "learning_rate": 6.824049513704686e-06, + "loss": 0.3973454284667969, + "step": 97700 + }, + { + "epoch": 86.47246184472462, + "grad_norm": 0.490012526512146, + "learning_rate": 6.779840848806367e-06, + "loss": 0.3982046127319336, + "step": 97800 + }, + { + "epoch": 86.56093784560937, + "grad_norm": 0.47647538781166077, + "learning_rate": 6.7356321839080455e-06, + "loss": 0.39851917266845704, + "step": 97900 + }, + { + "epoch": 86.64941384649414, + "grad_norm": 0.45534029603004456, + "learning_rate": 6.691423519009726e-06, + "loss": 0.39754936218261716, + "step": 98000 + }, + { + "epoch": 86.7378898473789, + "grad_norm": 0.5305948257446289, + "learning_rate": 6.647214854111407e-06, + "loss": 0.39900218963623046, + "step": 98100 + }, + { + "epoch": 86.82636584826366, + "grad_norm": 0.48616868257522583, + "learning_rate": 6.603006189213086e-06, + "loss": 0.39878063201904296, + "step": 98200 + }, + { + "epoch": 86.91484184914842, + "grad_norm": 0.4637695252895355, + "learning_rate": 6.5587975243147665e-06, + "loss": 0.39936519622802735, + "step": 98300 + }, + { + "epoch": 87.00265428002655, + "grad_norm": 0.43915867805480957, + "learning_rate": 6.514588859416445e-06, + "loss": 0.39945316314697266, + "step": 98400 + }, + { + "epoch": 87.0911302809113, + "grad_norm": 0.5064729452133179, + "learning_rate": 6.4703801945181265e-06, + "loss": 0.39295291900634766, + "step": 98500 + }, + { + "epoch": 87.17960628179607, + "grad_norm": 0.41172826290130615, + "learning_rate": 6.426171529619805e-06, + "loss": 0.3956099319458008, + "step": 98600 + }, + { + "epoch": 87.26808228268082, + "grad_norm": 0.5156989693641663, + "learning_rate": 6.381962864721486e-06, + "loss": 0.3927472686767578, + "step": 98700 + }, + { + "epoch": 87.35655828356558, + "grad_norm": 0.4864855706691742, + "learning_rate": 6.337754199823166e-06, + "loss": 0.39533439636230466, + "step": 98800 + }, + { + "epoch": 87.44503428445034, + "grad_norm": 0.5469456911087036, + "learning_rate": 6.293545534924846e-06, + "loss": 0.3970512390136719, + "step": 98900 + }, + { + "epoch": 87.5335102853351, + "grad_norm": 0.4618734121322632, + "learning_rate": 6.249336870026525e-06, + "loss": 0.3967998504638672, + "step": 99000 + }, + { + "epoch": 87.62198628621987, + "grad_norm": 0.41789868474006653, + "learning_rate": 6.205128205128206e-06, + "loss": 0.3979497909545898, + "step": 99100 + }, + { + "epoch": 87.71046228710462, + "grad_norm": 0.5439488887786865, + "learning_rate": 6.1609195402298855e-06, + "loss": 0.3960274887084961, + "step": 99200 + }, + { + "epoch": 87.79893828798939, + "grad_norm": 0.46948105096817017, + "learning_rate": 6.116710875331565e-06, + "loss": 0.39781307220458983, + "step": 99300 + }, + { + "epoch": 87.88741428887414, + "grad_norm": 0.4804007411003113, + "learning_rate": 6.0725022104332456e-06, + "loss": 0.39600673675537107, + "step": 99400 + }, + { + "epoch": 87.97589028975891, + "grad_norm": 0.4494355618953705, + "learning_rate": 6.028293545534925e-06, + "loss": 0.3976548385620117, + "step": 99500 + }, + { + "epoch": 88.06370272063702, + "grad_norm": 0.4300312101840973, + "learning_rate": 5.984526967285588e-06, + "loss": 0.3928862762451172, + "step": 99600 + }, + { + "epoch": 88.15217872152179, + "grad_norm": 0.5155128836631775, + "learning_rate": 5.940318302387268e-06, + "loss": 0.39027740478515627, + "step": 99700 + }, + { + "epoch": 88.24065472240655, + "grad_norm": 0.4635615944862366, + "learning_rate": 5.896109637488948e-06, + "loss": 0.3938739776611328, + "step": 99800 + }, + { + "epoch": 88.32913072329131, + "grad_norm": 0.5408588647842407, + "learning_rate": 5.851900972590628e-06, + "loss": 0.3914863967895508, + "step": 99900 + }, + { + "epoch": 88.41760672417607, + "grad_norm": 0.5169259309768677, + "learning_rate": 5.807692307692308e-06, + "loss": 0.3942420959472656, + "step": 100000 + }, + { + "epoch": 88.50608272506082, + "grad_norm": 0.43603307008743286, + "learning_rate": 5.763483642793987e-06, + "loss": 0.3942053604125977, + "step": 100100 + }, + { + "epoch": 88.59455872594559, + "grad_norm": 0.484275758266449, + "learning_rate": 5.719274977895668e-06, + "loss": 0.3953342056274414, + "step": 100200 + }, + { + "epoch": 88.68303472683034, + "grad_norm": 0.4834429621696472, + "learning_rate": 5.675066312997348e-06, + "loss": 0.39478866577148436, + "step": 100300 + }, + { + "epoch": 88.77151072771511, + "grad_norm": 0.5198318362236023, + "learning_rate": 5.630857648099028e-06, + "loss": 0.3973033905029297, + "step": 100400 + }, + { + "epoch": 88.85998672859986, + "grad_norm": 0.5359114408493042, + "learning_rate": 5.586648983200707e-06, + "loss": 0.3963985824584961, + "step": 100500 + }, + { + "epoch": 88.94846272948463, + "grad_norm": 0.47174566984176636, + "learning_rate": 5.542440318302387e-06, + "loss": 0.39962120056152345, + "step": 100600 + }, + { + "epoch": 89.03627516036275, + "grad_norm": 0.5552394986152649, + "learning_rate": 5.498231653404067e-06, + "loss": 0.3942194747924805, + "step": 100700 + }, + { + "epoch": 89.12475116124752, + "grad_norm": 0.4985731840133667, + "learning_rate": 5.454022988505748e-06, + "loss": 0.39029048919677733, + "step": 100800 + }, + { + "epoch": 89.21322716213227, + "grad_norm": 0.5449782013893127, + "learning_rate": 5.4098143236074275e-06, + "loss": 0.391842155456543, + "step": 100900 + }, + { + "epoch": 89.30170316301704, + "grad_norm": 0.47477561235427856, + "learning_rate": 5.365605658709107e-06, + "loss": 0.39065505981445314, + "step": 101000 + }, + { + "epoch": 89.39017916390179, + "grad_norm": 0.5775418281555176, + "learning_rate": 5.3213969938107875e-06, + "loss": 0.39322795867919924, + "step": 101100 + }, + { + "epoch": 89.47865516478655, + "grad_norm": 0.44463786482810974, + "learning_rate": 5.277188328912467e-06, + "loss": 0.3929602813720703, + "step": 101200 + }, + { + "epoch": 89.56713116567131, + "grad_norm": 0.5217382311820984, + "learning_rate": 5.232979664014147e-06, + "loss": 0.3945352172851562, + "step": 101300 + }, + { + "epoch": 89.65560716655607, + "grad_norm": 0.47336575388908386, + "learning_rate": 5.188770999115826e-06, + "loss": 0.3943867492675781, + "step": 101400 + }, + { + "epoch": 89.74408316744083, + "grad_norm": 0.49890655279159546, + "learning_rate": 5.144562334217507e-06, + "loss": 0.39472442626953125, + "step": 101500 + }, + { + "epoch": 89.83255916832559, + "grad_norm": 0.4528096914291382, + "learning_rate": 5.100353669319187e-06, + "loss": 0.3927711868286133, + "step": 101600 + }, + { + "epoch": 89.92103516921036, + "grad_norm": 0.4498828649520874, + "learning_rate": 5.056145004420867e-06, + "loss": 0.3962491226196289, + "step": 101700 + }, + { + "epoch": 90.00884760008847, + "grad_norm": 0.45861297845840454, + "learning_rate": 5.0119363395225465e-06, + "loss": 0.39339271545410154, + "step": 101800 + }, + { + "epoch": 90.09732360097324, + "grad_norm": 0.5762381553649902, + "learning_rate": 4.967727674624226e-06, + "loss": 0.3896630096435547, + "step": 101900 + }, + { + "epoch": 90.185799601858, + "grad_norm": 0.5530878305435181, + "learning_rate": 4.923519009725907e-06, + "loss": 0.38933868408203126, + "step": 102000 + }, + { + "epoch": 90.27427560274276, + "grad_norm": 0.4769279360771179, + "learning_rate": 4.879310344827587e-06, + "loss": 0.38943870544433595, + "step": 102100 + }, + { + "epoch": 90.36275160362752, + "grad_norm": 0.5254392027854919, + "learning_rate": 4.835101679929267e-06, + "loss": 0.39091030120849607, + "step": 102200 + }, + { + "epoch": 90.45122760451227, + "grad_norm": 0.5098690986633301, + "learning_rate": 4.790893015030946e-06, + "loss": 0.39340557098388673, + "step": 102300 + }, + { + "epoch": 90.53970360539704, + "grad_norm": 0.5299240946769714, + "learning_rate": 4.746684350132626e-06, + "loss": 0.3925971221923828, + "step": 102400 + }, + { + "epoch": 90.62817960628179, + "grad_norm": 0.5023613572120667, + "learning_rate": 4.702475685234306e-06, + "loss": 0.3934814453125, + "step": 102500 + }, + { + "epoch": 90.71665560716656, + "grad_norm": 0.5217054486274719, + "learning_rate": 4.658267020335986e-06, + "loss": 0.39229228973388675, + "step": 102600 + }, + { + "epoch": 90.80513160805131, + "grad_norm": 0.4929801821708679, + "learning_rate": 4.6140583554376656e-06, + "loss": 0.39253700256347657, + "step": 102700 + }, + { + "epoch": 90.89360760893608, + "grad_norm": 0.4281506836414337, + "learning_rate": 4.569849690539346e-06, + "loss": 0.39423236846923826, + "step": 102800 + }, + { + "epoch": 90.98208360982083, + "grad_norm": 0.5606275796890259, + "learning_rate": 4.525641025641026e-06, + "loss": 0.39174613952636717, + "step": 102900 + }, + { + "epoch": 91.06989604069896, + "grad_norm": 0.40593966841697693, + "learning_rate": 4.481874447391689e-06, + "loss": 0.39004261016845704, + "step": 103000 + }, + { + "epoch": 91.15837204158372, + "grad_norm": 0.48218822479248047, + "learning_rate": 4.437665782493368e-06, + "loss": 0.39024349212646486, + "step": 103100 + }, + { + "epoch": 91.24684804246849, + "grad_norm": 0.4803628623485565, + "learning_rate": 4.393457117595049e-06, + "loss": 0.3893236541748047, + "step": 103200 + }, + { + "epoch": 91.33532404335324, + "grad_norm": 0.5424004197120667, + "learning_rate": 4.349248452696729e-06, + "loss": 0.3895704650878906, + "step": 103300 + }, + { + "epoch": 91.423800044238, + "grad_norm": 0.4238603711128235, + "learning_rate": 4.305039787798409e-06, + "loss": 0.3891864776611328, + "step": 103400 + }, + { + "epoch": 91.51227604512276, + "grad_norm": 0.5425596833229065, + "learning_rate": 4.2608311229000885e-06, + "loss": 0.3902478408813477, + "step": 103500 + }, + { + "epoch": 91.60075204600751, + "grad_norm": 0.529647946357727, + "learning_rate": 4.216622458001768e-06, + "loss": 0.39207550048828127, + "step": 103600 + }, + { + "epoch": 91.68922804689228, + "grad_norm": 0.42155396938323975, + "learning_rate": 4.1724137931034486e-06, + "loss": 0.3911063766479492, + "step": 103700 + }, + { + "epoch": 91.77770404777704, + "grad_norm": 0.4809010326862335, + "learning_rate": 4.128205128205129e-06, + "loss": 0.3927000427246094, + "step": 103800 + }, + { + "epoch": 91.8661800486618, + "grad_norm": 0.4598400890827179, + "learning_rate": 4.083996463306809e-06, + "loss": 0.38986122131347656, + "step": 103900 + }, + { + "epoch": 91.95465604954656, + "grad_norm": 0.52349853515625, + "learning_rate": 4.039787798408488e-06, + "loss": 0.3922639465332031, + "step": 104000 + }, + { + "epoch": 92.04246848042469, + "grad_norm": 0.5118280053138733, + "learning_rate": 3.996021220159151e-06, + "loss": 0.388396110534668, + "step": 104100 + }, + { + "epoch": 92.13094448130944, + "grad_norm": 0.49287110567092896, + "learning_rate": 3.951812555260832e-06, + "loss": 0.3882394027709961, + "step": 104200 + }, + { + "epoch": 92.21942048219421, + "grad_norm": 0.5597590804100037, + "learning_rate": 3.9076038903625115e-06, + "loss": 0.38768112182617187, + "step": 104300 + }, + { + "epoch": 92.30789648307896, + "grad_norm": 0.49123573303222656, + "learning_rate": 3.863395225464191e-06, + "loss": 0.38717472076416015, + "step": 104400 + }, + { + "epoch": 92.39637248396373, + "grad_norm": 0.5490599870681763, + "learning_rate": 3.819186560565871e-06, + "loss": 0.38968246459960937, + "step": 104500 + }, + { + "epoch": 92.48484848484848, + "grad_norm": 0.563377857208252, + "learning_rate": 3.7749778956675507e-06, + "loss": 0.3879422760009766, + "step": 104600 + }, + { + "epoch": 92.57332448573324, + "grad_norm": 0.5248238444328308, + "learning_rate": 3.7307692307692308e-06, + "loss": 0.3904239654541016, + "step": 104700 + }, + { + "epoch": 92.661800486618, + "grad_norm": 0.5977566242218018, + "learning_rate": 3.6865605658709104e-06, + "loss": 0.39140804290771486, + "step": 104800 + }, + { + "epoch": 92.75027648750276, + "grad_norm": 0.4992641508579254, + "learning_rate": 3.6423519009725912e-06, + "loss": 0.390025749206543, + "step": 104900 + }, + { + "epoch": 92.83875248838753, + "grad_norm": 0.5491787791252136, + "learning_rate": 3.598143236074271e-06, + "loss": 0.39107063293457034, + "step": 105000 + }, + { + "epoch": 92.92722848927228, + "grad_norm": 0.46409890055656433, + "learning_rate": 3.553934571175951e-06, + "loss": 0.3911115264892578, + "step": 105100 + }, + { + "epoch": 93.01504092015041, + "grad_norm": 0.5469849705696106, + "learning_rate": 3.5097259062776305e-06, + "loss": 0.3916855621337891, + "step": 105200 + }, + { + "epoch": 93.10351692103517, + "grad_norm": 0.496277391910553, + "learning_rate": 3.4655172413793105e-06, + "loss": 0.3867160415649414, + "step": 105300 + }, + { + "epoch": 93.19199292191993, + "grad_norm": 0.42929497361183167, + "learning_rate": 3.42130857648099e-06, + "loss": 0.38718021392822266, + "step": 105400 + }, + { + "epoch": 93.28046892280469, + "grad_norm": 0.406601220369339, + "learning_rate": 3.3770999115826706e-06, + "loss": 0.386837272644043, + "step": 105500 + }, + { + "epoch": 93.36894492368945, + "grad_norm": 0.48087212443351746, + "learning_rate": 3.3328912466843506e-06, + "loss": 0.3877327346801758, + "step": 105600 + }, + { + "epoch": 93.45742092457421, + "grad_norm": 0.5117219090461731, + "learning_rate": 3.2886825817860302e-06, + "loss": 0.38803070068359374, + "step": 105700 + }, + { + "epoch": 93.54589692545898, + "grad_norm": 0.6043857932090759, + "learning_rate": 3.2444739168877103e-06, + "loss": 0.38934085845947264, + "step": 105800 + }, + { + "epoch": 93.63437292634373, + "grad_norm": 0.5303599238395691, + "learning_rate": 3.20026525198939e-06, + "loss": 0.3872317123413086, + "step": 105900 + }, + { + "epoch": 93.72284892722848, + "grad_norm": 0.48868313431739807, + "learning_rate": 3.15605658709107e-06, + "loss": 0.3903642272949219, + "step": 106000 + }, + { + "epoch": 93.81132492811325, + "grad_norm": 0.5126668810844421, + "learning_rate": 3.11184792219275e-06, + "loss": 0.3893658447265625, + "step": 106100 + }, + { + "epoch": 93.899800928998, + "grad_norm": 0.5788067579269409, + "learning_rate": 3.06763925729443e-06, + "loss": 0.3887732315063477, + "step": 106200 + }, + { + "epoch": 93.98827692988277, + "grad_norm": 0.5931738615036011, + "learning_rate": 3.0234305923961096e-06, + "loss": 0.3858309555053711, + "step": 106300 + }, + { + "epoch": 94.07608936076089, + "grad_norm": 0.4667378067970276, + "learning_rate": 2.9792219274977896e-06, + "loss": 0.3882503128051758, + "step": 106400 + }, + { + "epoch": 94.16456536164566, + "grad_norm": 0.4540467858314514, + "learning_rate": 2.9350132625994697e-06, + "loss": 0.3879624557495117, + "step": 106500 + }, + { + "epoch": 94.25304136253041, + "grad_norm": 0.5249928832054138, + "learning_rate": 2.8908045977011493e-06, + "loss": 0.3871700668334961, + "step": 106600 + }, + { + "epoch": 94.34151736341518, + "grad_norm": 0.4902016520500183, + "learning_rate": 2.8465959328028297e-06, + "loss": 0.3865641403198242, + "step": 106700 + }, + { + "epoch": 94.42999336429993, + "grad_norm": 0.4490734934806824, + "learning_rate": 2.8023872679045093e-06, + "loss": 0.3874678039550781, + "step": 106800 + }, + { + "epoch": 94.5184693651847, + "grad_norm": 0.39259180426597595, + "learning_rate": 2.7581786030061894e-06, + "loss": 0.3864010238647461, + "step": 106900 + }, + { + "epoch": 94.60694536606945, + "grad_norm": 0.5160086154937744, + "learning_rate": 2.7139699381078694e-06, + "loss": 0.38762042999267576, + "step": 107000 + }, + { + "epoch": 94.6954213669542, + "grad_norm": 0.5112566947937012, + "learning_rate": 2.669761273209549e-06, + "loss": 0.38802257537841794, + "step": 107100 + }, + { + "epoch": 94.78389736783897, + "grad_norm": 0.48586076498031616, + "learning_rate": 2.625552608311229e-06, + "loss": 0.3883600616455078, + "step": 107200 + }, + { + "epoch": 94.87237336872373, + "grad_norm": 0.5169211626052856, + "learning_rate": 2.581343943412909e-06, + "loss": 0.38775413513183593, + "step": 107300 + }, + { + "epoch": 94.9608493696085, + "grad_norm": 0.4262998700141907, + "learning_rate": 2.537135278514589e-06, + "loss": 0.3891670608520508, + "step": 107400 + }, + { + "epoch": 95.04866180048661, + "grad_norm": 0.4452260434627533, + "learning_rate": 2.4929266136162687e-06, + "loss": 0.38474632263183595, + "step": 107500 + }, + { + "epoch": 95.13713780137138, + "grad_norm": 0.5349674820899963, + "learning_rate": 2.4487179487179488e-06, + "loss": 0.3851365661621094, + "step": 107600 + }, + { + "epoch": 95.22561380225613, + "grad_norm": 0.4277512729167938, + "learning_rate": 2.404509283819629e-06, + "loss": 0.38448490142822267, + "step": 107700 + }, + { + "epoch": 95.3140898031409, + "grad_norm": 0.5199966430664062, + "learning_rate": 2.360300618921309e-06, + "loss": 0.3855178451538086, + "step": 107800 + }, + { + "epoch": 95.40256580402566, + "grad_norm": 0.49931713938713074, + "learning_rate": 2.3160919540229885e-06, + "loss": 0.38597549438476564, + "step": 107900 + }, + { + "epoch": 95.49104180491042, + "grad_norm": 0.44888851046562195, + "learning_rate": 2.2718832891246685e-06, + "loss": 0.38637237548828124, + "step": 108000 + }, + { + "epoch": 95.57951780579518, + "grad_norm": 0.48020413517951965, + "learning_rate": 2.2276746242263485e-06, + "loss": 0.3860820388793945, + "step": 108100 + }, + { + "epoch": 95.66799380667993, + "grad_norm": 0.49320459365844727, + "learning_rate": 2.183465959328028e-06, + "loss": 0.3868730926513672, + "step": 108200 + }, + { + "epoch": 95.7564698075647, + "grad_norm": 0.4776149392127991, + "learning_rate": 2.1392572944297086e-06, + "loss": 0.38699729919433595, + "step": 108300 + }, + { + "epoch": 95.84494580844945, + "grad_norm": 0.4394153356552124, + "learning_rate": 2.095048629531388e-06, + "loss": 0.3858388137817383, + "step": 108400 + }, + { + "epoch": 95.93342180933422, + "grad_norm": 0.40809816122055054, + "learning_rate": 2.0508399646330682e-06, + "loss": 0.3865514373779297, + "step": 108500 + }, + { + "epoch": 96.02123424021234, + "grad_norm": 0.40297845005989075, + "learning_rate": 2.0070733863837314e-06, + "loss": 0.38520877838134765, + "step": 108600 + }, + { + "epoch": 96.1097102410971, + "grad_norm": 0.4992787837982178, + "learning_rate": 1.9628647214854114e-06, + "loss": 0.3824159622192383, + "step": 108700 + }, + { + "epoch": 96.19818624198186, + "grad_norm": 0.4386002719402313, + "learning_rate": 1.918656056587091e-06, + "loss": 0.3828225326538086, + "step": 108800 + }, + { + "epoch": 96.28666224286663, + "grad_norm": 0.4839923679828644, + "learning_rate": 1.874447391688771e-06, + "loss": 0.3837508392333984, + "step": 108900 + }, + { + "epoch": 96.37513824375138, + "grad_norm": 0.5360403656959534, + "learning_rate": 1.830238726790451e-06, + "loss": 0.3868670654296875, + "step": 109000 + }, + { + "epoch": 96.46361424463615, + "grad_norm": 0.5472413897514343, + "learning_rate": 1.786030061892131e-06, + "loss": 0.38740249633789064, + "step": 109100 + }, + { + "epoch": 96.5520902455209, + "grad_norm": 0.4783819019794464, + "learning_rate": 1.7418213969938107e-06, + "loss": 0.3851567459106445, + "step": 109200 + }, + { + "epoch": 96.64056624640567, + "grad_norm": 0.5319016575813293, + "learning_rate": 1.6976127320954906e-06, + "loss": 0.38549720764160156, + "step": 109300 + }, + { + "epoch": 96.72904224729042, + "grad_norm": 0.4579726755619049, + "learning_rate": 1.6534040671971708e-06, + "loss": 0.38684429168701173, + "step": 109400 + }, + { + "epoch": 96.81751824817518, + "grad_norm": 0.4699755012989044, + "learning_rate": 1.6091954022988506e-06, + "loss": 0.3849377822875977, + "step": 109500 + }, + { + "epoch": 96.90599424905994, + "grad_norm": 0.5681434273719788, + "learning_rate": 1.5649867374005304e-06, + "loss": 0.38494167327880857, + "step": 109600 + }, + { + "epoch": 96.9944702499447, + "grad_norm": 0.40921762585639954, + "learning_rate": 1.5207780725022105e-06, + "loss": 0.3864158630371094, + "step": 109700 + }, + { + "epoch": 97.08228268082283, + "grad_norm": 0.5271804928779602, + "learning_rate": 1.4765694076038905e-06, + "loss": 0.3854814529418945, + "step": 109800 + }, + { + "epoch": 97.17075868170758, + "grad_norm": 0.5390716195106506, + "learning_rate": 1.4323607427055703e-06, + "loss": 0.3826302719116211, + "step": 109900 + }, + { + "epoch": 97.25923468259235, + "grad_norm": 0.4738744795322418, + "learning_rate": 1.3881520778072502e-06, + "loss": 0.3834680938720703, + "step": 110000 + }, + { + "epoch": 97.3477106834771, + "grad_norm": 0.47226211428642273, + "learning_rate": 1.3439434129089302e-06, + "loss": 0.383985595703125, + "step": 110100 + }, + { + "epoch": 97.43618668436187, + "grad_norm": 0.44581323862075806, + "learning_rate": 1.29973474801061e-06, + "loss": 0.38392398834228514, + "step": 110200 + }, + { + "epoch": 97.52466268524662, + "grad_norm": 0.505975067615509, + "learning_rate": 1.25552608311229e-06, + "loss": 0.3842586898803711, + "step": 110300 + }, + { + "epoch": 97.61313868613139, + "grad_norm": 0.4737127125263214, + "learning_rate": 1.21131741821397e-06, + "loss": 0.3853626251220703, + "step": 110400 + }, + { + "epoch": 97.70161468701615, + "grad_norm": 0.42337724566459656, + "learning_rate": 1.16710875331565e-06, + "loss": 0.3860707092285156, + "step": 110500 + }, + { + "epoch": 97.7900906879009, + "grad_norm": 0.470935583114624, + "learning_rate": 1.12290008841733e-06, + "loss": 0.3849189758300781, + "step": 110600 + }, + { + "epoch": 97.87856668878567, + "grad_norm": 0.5499629974365234, + "learning_rate": 1.0786914235190098e-06, + "loss": 0.3849348068237305, + "step": 110700 + }, + { + "epoch": 97.96704268967042, + "grad_norm": 0.5295959711074829, + "learning_rate": 1.0344827586206898e-06, + "loss": 0.3844482040405273, + "step": 110800 + }, + { + "epoch": 98.05485512054855, + "grad_norm": 0.510218620300293, + "learning_rate": 9.902740937223696e-07, + "loss": 0.38250988006591796, + "step": 110900 + }, + { + "epoch": 98.1433311214333, + "grad_norm": 0.46240198612213135, + "learning_rate": 9.460654288240495e-07, + "loss": 0.38357555389404296, + "step": 111000 + }, + { + "epoch": 98.23180712231807, + "grad_norm": 0.5413907170295715, + "learning_rate": 9.018567639257295e-07, + "loss": 0.3835936737060547, + "step": 111100 + }, + { + "epoch": 98.32028312320283, + "grad_norm": 0.5282194018363953, + "learning_rate": 8.576480990274095e-07, + "loss": 0.38462539672851564, + "step": 111200 + }, + { + "epoch": 98.4087591240876, + "grad_norm": 0.4430619478225708, + "learning_rate": 8.134394341290893e-07, + "loss": 0.3831254196166992, + "step": 111300 + }, + { + "epoch": 98.49723512497235, + "grad_norm": 0.4520755410194397, + "learning_rate": 7.692307692307694e-07, + "loss": 0.38387767791748045, + "step": 111400 + }, + { + "epoch": 98.58571112585712, + "grad_norm": 0.42326220870018005, + "learning_rate": 7.250221043324492e-07, + "loss": 0.38382118225097656, + "step": 111500 + }, + { + "epoch": 98.67418712674187, + "grad_norm": 0.5536217093467712, + "learning_rate": 6.808134394341291e-07, + "loss": 0.3837322998046875, + "step": 111600 + }, + { + "epoch": 98.76266312762664, + "grad_norm": 0.47729530930519104, + "learning_rate": 6.36604774535809e-07, + "loss": 0.3840275192260742, + "step": 111700 + }, + { + "epoch": 98.85113912851139, + "grad_norm": 0.4712120294570923, + "learning_rate": 5.92396109637489e-07, + "loss": 0.3826910400390625, + "step": 111800 + }, + { + "epoch": 98.93961512939615, + "grad_norm": 0.4533778727054596, + "learning_rate": 5.481874447391689e-07, + "loss": 0.3849251174926758, + "step": 111900 + }, + { + "epoch": 99.02742756027428, + "grad_norm": 0.4762660264968872, + "learning_rate": 5.04420866489832e-07, + "loss": 0.38347198486328127, + "step": 112000 + }, + { + "epoch": 99.11590356115903, + "grad_norm": 0.49900203943252563, + "learning_rate": 4.6021220159151197e-07, + "loss": 0.38361885070800783, + "step": 112100 + }, + { + "epoch": 99.2043795620438, + "grad_norm": 0.5499697923660278, + "learning_rate": 4.1600353669319184e-07, + "loss": 0.38323490142822264, + "step": 112200 + }, + { + "epoch": 99.29285556292855, + "grad_norm": 0.49698564410209656, + "learning_rate": 3.717948717948718e-07, + "loss": 0.38394325256347656, + "step": 112300 + }, + { + "epoch": 99.38133156381332, + "grad_norm": 0.5000177621841431, + "learning_rate": 3.2758620689655175e-07, + "loss": 0.3833367156982422, + "step": 112400 + }, + { + "epoch": 99.46980756469807, + "grad_norm": 0.46179404854774475, + "learning_rate": 2.833775419982317e-07, + "loss": 0.38318233489990233, + "step": 112500 + }, + { + "epoch": 99.55828356558284, + "grad_norm": 0.5522571802139282, + "learning_rate": 2.391688770999116e-07, + "loss": 0.38181392669677733, + "step": 112600 + }, + { + "epoch": 99.6467595664676, + "grad_norm": 0.4453877806663513, + "learning_rate": 1.949602122015915e-07, + "loss": 0.38297233581542967, + "step": 112700 + }, + { + "epoch": 99.73523556735236, + "grad_norm": 0.46210813522338867, + "learning_rate": 1.5075154730327146e-07, + "loss": 0.3855221939086914, + "step": 112800 + }, + { + "epoch": 99.82371156823712, + "grad_norm": 0.5160776972770691, + "learning_rate": 1.0654288240495138e-07, + "loss": 0.38173851013183596, + "step": 112900 + }, + { + "epoch": 99.91218756912187, + "grad_norm": 0.5537967681884766, + "learning_rate": 6.23342175066313e-08, + "loss": 0.38249988555908204, + "step": 113000 + } + ], + "logging_steps": 100, + "max_steps": 113100, + "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": 3.135132725398733e+16, + "train_batch_size": 8, + "trial_name": null, + "trial_params": null +} diff --git a/timecost/m8/realtabformer/rtf-m8-20260430_214424/rtf_checkpoints/checkpoint-113000/training_args.bin b/timecost/m8/realtabformer/rtf-m8-20260430_214424/rtf_checkpoints/checkpoint-113000/training_args.bin new file mode 100644 index 0000000000000000000000000000000000000000..34d68dc0e0fe1c1f12a2e581dd1b166aa7178a9e --- /dev/null +++ b/timecost/m8/realtabformer/rtf-m8-20260430_214424/rtf_checkpoints/checkpoint-113000/training_args.bin @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:9e2cd88337d1d846c6918d2b3b63fa3e5c93f12fefc082497590da854a564607 +size 5201 diff --git a/timecost/m8/realtabformer/rtf-m8-20260430_214424/rtf_checkpoints/checkpoint-113100/config.json b/timecost/m8/realtabformer/rtf-m8-20260430_214424/rtf_checkpoints/checkpoint-113100/config.json new file mode 100644 index 0000000000000000000000000000000000000000..d98dd02b920679d4da3c8b60a9be119058fb9fe3 --- /dev/null +++ b/timecost/m8/realtabformer/rtf-m8-20260430_214424/rtf_checkpoints/checkpoint-113100/config.json @@ -0,0 +1,34 @@ +{ + "activation_function": "gelu_new", + "add_cross_attention": false, + "architectures": [ + "GPT2LMHeadModel" + ], + "attn_pdrop": 0.1, + "bos_token_id": 5, + "dtype": "float32", + "embd_pdrop": 0.1, + "eos_token_id": 6, + "initializer_range": 0.02, + "layer_norm_epsilon": 1e-05, + "model_type": "gpt2", + "n_embd": 768, + "n_head": 12, + "n_inner": null, + "n_layer": 6, + "n_positions": 1024, + "pad_token_id": null, + "reorder_and_upcast_attn": false, + "resid_pdrop": 0.1, + "scale_attn_by_inverse_layer_idx": false, + "scale_attn_weights": true, + "summary_activation": null, + "summary_first_dropout": 0.1, + "summary_proj_to_labels": true, + "summary_type": "cls_index", + "summary_use_proj": true, + "tie_word_embeddings": true, + "transformers_version": "5.5.3", + "use_cache": false, + "vocab_size": 244 +} diff --git a/timecost/m8/realtabformer/rtf-m8-20260430_214424/rtf_checkpoints/checkpoint-113100/generation_config.json b/timecost/m8/realtabformer/rtf-m8-20260430_214424/rtf_checkpoints/checkpoint-113100/generation_config.json new file mode 100644 index 0000000000000000000000000000000000000000..ffe89567780e75b5c22eade9be971483b9618f39 --- /dev/null +++ b/timecost/m8/realtabformer/rtf-m8-20260430_214424/rtf_checkpoints/checkpoint-113100/generation_config.json @@ -0,0 +1,9 @@ +{ + "_from_model_config": true, + "bos_token_id": 5, + "eos_token_id": 6, + "output_attentions": false, + "output_hidden_states": false, + "transformers_version": "5.5.3", + "use_cache": true +} diff --git a/timecost/m8/realtabformer/rtf-m8-20260430_214424/rtf_checkpoints/checkpoint-113100/model.safetensors b/timecost/m8/realtabformer/rtf-m8-20260430_214424/rtf_checkpoints/checkpoint-113100/model.safetensors new file mode 100644 index 0000000000000000000000000000000000000000..5f8a5159f97793da6e54ff47c1b028332d2be87a --- /dev/null +++ b/timecost/m8/realtabformer/rtf-m8-20260430_214424/rtf_checkpoints/checkpoint-113100/model.safetensors @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:3872ac07d0c25822773ddb206cfc0886cbdf864078824c4b734f3e7bef4fdb5e +size 174017992 diff --git a/timecost/m8/realtabformer/rtf-m8-20260430_214424/rtf_checkpoints/checkpoint-113100/optimizer.pt b/timecost/m8/realtabformer/rtf-m8-20260430_214424/rtf_checkpoints/checkpoint-113100/optimizer.pt new file mode 100644 index 0000000000000000000000000000000000000000..d759a406856ec9a077a3f9d5bf475c1cbce6a5b7 --- /dev/null +++ b/timecost/m8/realtabformer/rtf-m8-20260430_214424/rtf_checkpoints/checkpoint-113100/optimizer.pt @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:2c86ccd1e8db52a1700bfcf68861faf0639931172f2cd38224ff72c5e1cc976e +size 348085067 diff --git a/timecost/m8/realtabformer/rtf-m8-20260430_214424/rtf_checkpoints/checkpoint-113100/rng_state.pth b/timecost/m8/realtabformer/rtf-m8-20260430_214424/rtf_checkpoints/checkpoint-113100/rng_state.pth new file mode 100644 index 0000000000000000000000000000000000000000..0cd1bdb9b43f2cb17e0bd40183ac20c386a55b14 --- /dev/null +++ b/timecost/m8/realtabformer/rtf-m8-20260430_214424/rtf_checkpoints/checkpoint-113100/rng_state.pth @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:484200c5563634f6f1003d4efefac8751bfe0c8b478af4ff5a2dacec8597b6f2 +size 14645 diff --git a/timecost/m8/realtabformer/rtf-m8-20260430_214424/rtf_checkpoints/checkpoint-113100/scaler.pt b/timecost/m8/realtabformer/rtf-m8-20260430_214424/rtf_checkpoints/checkpoint-113100/scaler.pt new file mode 100644 index 0000000000000000000000000000000000000000..6c158062882bf9342a2f69a51c2fa6d3a8d857cb --- /dev/null +++ b/timecost/m8/realtabformer/rtf-m8-20260430_214424/rtf_checkpoints/checkpoint-113100/scaler.pt @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:6add548c35b86c48dbf30e6427d694a51610792bc6cbf8f797957c90ae4db164 +size 1383 diff --git a/timecost/m8/realtabformer/rtf-m8-20260430_214424/rtf_checkpoints/checkpoint-113100/scheduler.pt b/timecost/m8/realtabformer/rtf-m8-20260430_214424/rtf_checkpoints/checkpoint-113100/scheduler.pt new file mode 100644 index 0000000000000000000000000000000000000000..6d093588886c83161f014be526f0dfd15e5b2fde --- /dev/null +++ b/timecost/m8/realtabformer/rtf-m8-20260430_214424/rtf_checkpoints/checkpoint-113100/scheduler.pt @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:7ebded45dc6836d15d9d0a1f505a54423df0a24fbb44d77e0a494bebcfe8176d +size 1465 diff --git a/timecost/m8/realtabformer/rtf-m8-20260430_214424/rtf_checkpoints/checkpoint-113100/trainer_state.json b/timecost/m8/realtabformer/rtf-m8-20260430_214424/rtf_checkpoints/checkpoint-113100/trainer_state.json new file mode 100644 index 0000000000000000000000000000000000000000..5ae1d350c8e08ff4dbdb710594dae2b378612cb8 --- /dev/null +++ b/timecost/m8/realtabformer/rtf-m8-20260430_214424/rtf_checkpoints/checkpoint-113100/trainer_state.json @@ -0,0 +1,7951 @@ +{ + "best_global_step": null, + "best_metric": null, + "best_model_checkpoint": null, + "epoch": 100.0, + "eval_steps": 100, + "global_step": 113100, + "is_hyper_param_search": false, + "is_local_process_zero": true, + "is_world_process_zero": true, + "log_history": [ + { + "epoch": 0.08847600088476001, + "grad_norm": 0.27971890568733215, + "learning_rate": 4.9956233421750666e-05, + "loss": 1.6012767028808594, + "step": 100 + }, + { + "epoch": 0.17695200176952003, + "grad_norm": 0.2532733976840973, + "learning_rate": 4.991202475685234e-05, + "loss": 1.0460629272460937, + "step": 200 + }, + { + "epoch": 0.26542800265428, + "grad_norm": 0.22527219355106354, + "learning_rate": 4.986781609195402e-05, + "loss": 1.0045037841796876, + "step": 300 + }, + { + "epoch": 0.35390400353904006, + "grad_norm": 0.2071678638458252, + "learning_rate": 4.982360742705571e-05, + "loss": 0.9934071350097656, + "step": 400 + }, + { + "epoch": 0.44238000442380004, + "grad_norm": 0.21996082365512848, + "learning_rate": 4.977939876215739e-05, + "loss": 0.9807382965087891, + "step": 500 + }, + { + "epoch": 0.53085600530856, + "grad_norm": 0.20051148533821106, + "learning_rate": 4.9735190097259064e-05, + "loss": 0.9772834014892579, + "step": 600 + }, + { + "epoch": 0.6193320061933201, + "grad_norm": 0.20692776143550873, + "learning_rate": 4.969098143236074e-05, + "loss": 0.9733844757080078, + "step": 700 + }, + { + "epoch": 0.7078080070780801, + "grad_norm": 0.22139734029769897, + "learning_rate": 4.9646772767462425e-05, + "loss": 0.9641999053955078, + "step": 800 + }, + { + "epoch": 0.79628400796284, + "grad_norm": 0.20099565386772156, + "learning_rate": 4.96025641025641e-05, + "loss": 0.9590901947021484, + "step": 900 + }, + { + "epoch": 0.8847600088476001, + "grad_norm": 0.19050444662570953, + "learning_rate": 4.955835543766578e-05, + "loss": 0.9558430480957031, + "step": 1000 + }, + { + "epoch": 0.9732360097323601, + "grad_norm": 0.20780153572559357, + "learning_rate": 4.951414677276747e-05, + "loss": 0.9558073425292969, + "step": 1100 + }, + { + "epoch": 1.0610484406104843, + "grad_norm": 0.20002400875091553, + "learning_rate": 4.946993810786915e-05, + "loss": 0.9575533294677734, + "step": 1200 + }, + { + "epoch": 1.1495244414952444, + "grad_norm": 0.19394151866436005, + "learning_rate": 4.9425729442970824e-05, + "loss": 0.9556401824951172, + "step": 1300 + }, + { + "epoch": 1.2380004423800044, + "grad_norm": 0.19420816004276276, + "learning_rate": 4.93815207780725e-05, + "loss": 0.948358154296875, + "step": 1400 + }, + { + "epoch": 1.3264764432647644, + "grad_norm": 0.2109377682209015, + "learning_rate": 4.9337312113174185e-05, + "loss": 0.9507483673095704, + "step": 1500 + }, + { + "epoch": 1.4149524441495245, + "grad_norm": 0.19577011466026306, + "learning_rate": 4.929310344827586e-05, + "loss": 0.9544251251220703, + "step": 1600 + }, + { + "epoch": 1.5034284450342845, + "grad_norm": 0.17374339699745178, + "learning_rate": 4.924889478337754e-05, + "loss": 0.9495613098144531, + "step": 1700 + }, + { + "epoch": 1.5919044459190443, + "grad_norm": 0.1539471447467804, + "learning_rate": 4.920468611847922e-05, + "loss": 0.946780014038086, + "step": 1800 + }, + { + "epoch": 1.6803804468038046, + "grad_norm": 0.21705853939056396, + "learning_rate": 4.916047745358091e-05, + "loss": 0.9456329345703125, + "step": 1900 + }, + { + "epoch": 1.7688564476885644, + "grad_norm": 0.18109191954135895, + "learning_rate": 4.9116268788682584e-05, + "loss": 0.9452082061767578, + "step": 2000 + }, + { + "epoch": 1.8573324485733245, + "grad_norm": 0.18233413994312286, + "learning_rate": 4.907206012378426e-05, + "loss": 0.9436309051513672, + "step": 2100 + }, + { + "epoch": 1.9458084494580845, + "grad_norm": 0.19978198409080505, + "learning_rate": 4.9027851458885945e-05, + "loss": 0.9466010284423828, + "step": 2200 + }, + { + "epoch": 2.033620880336209, + "grad_norm": 0.19425439834594727, + "learning_rate": 4.898364279398762e-05, + "loss": 0.9419589233398438, + "step": 2300 + }, + { + "epoch": 2.1220968812209686, + "grad_norm": 0.18522261083126068, + "learning_rate": 4.8939434129089306e-05, + "loss": 0.9406929779052734, + "step": 2400 + }, + { + "epoch": 2.210572882105729, + "grad_norm": 0.18092288076877594, + "learning_rate": 4.889522546419098e-05, + "loss": 0.9394661712646485, + "step": 2500 + }, + { + "epoch": 2.2990488829904887, + "grad_norm": 0.16110995411872864, + "learning_rate": 4.885101679929267e-05, + "loss": 0.9415554809570312, + "step": 2600 + }, + { + "epoch": 2.387524883875249, + "grad_norm": 0.1742609441280365, + "learning_rate": 4.8806808134394344e-05, + "loss": 0.9385026550292969, + "step": 2700 + }, + { + "epoch": 2.476000884760009, + "grad_norm": 0.1893293261528015, + "learning_rate": 4.876259946949602e-05, + "loss": 0.9374285125732422, + "step": 2800 + }, + { + "epoch": 2.564476885644769, + "grad_norm": 0.17022491991519928, + "learning_rate": 4.8718390804597705e-05, + "loss": 0.9414189910888672, + "step": 2900 + }, + { + "epoch": 2.652952886529529, + "grad_norm": 0.1820104867219925, + "learning_rate": 4.867418213969938e-05, + "loss": 0.9428114318847656, + "step": 3000 + }, + { + "epoch": 2.7414288874142887, + "grad_norm": 0.1591845154762268, + "learning_rate": 4.8629973474801066e-05, + "loss": 0.9408238220214844, + "step": 3100 + }, + { + "epoch": 2.829904888299049, + "grad_norm": 0.16679565608501434, + "learning_rate": 4.858576480990274e-05, + "loss": 0.9357293701171875, + "step": 3200 + }, + { + "epoch": 2.918380889183809, + "grad_norm": 0.1608530431985855, + "learning_rate": 4.854155614500443e-05, + "loss": 0.9437465667724609, + "step": 3300 + }, + { + "epoch": 3.006193320061933, + "grad_norm": 0.17832520604133606, + "learning_rate": 4.8497347480106104e-05, + "loss": 0.9349425506591796, + "step": 3400 + }, + { + "epoch": 3.0946693209466933, + "grad_norm": 0.18095993995666504, + "learning_rate": 4.845313881520778e-05, + "loss": 0.9341915130615235, + "step": 3500 + }, + { + "epoch": 3.183145321831453, + "grad_norm": 0.15083801746368408, + "learning_rate": 4.8408930150309465e-05, + "loss": 0.9406319427490234, + "step": 3600 + }, + { + "epoch": 3.2716213227162134, + "grad_norm": 0.17318469285964966, + "learning_rate": 4.836472148541114e-05, + "loss": 0.942470703125, + "step": 3700 + }, + { + "epoch": 3.3600973236009732, + "grad_norm": 0.16380801796913147, + "learning_rate": 4.8320512820512826e-05, + "loss": 0.9362622833251953, + "step": 3800 + }, + { + "epoch": 3.448573324485733, + "grad_norm": 0.16394540667533875, + "learning_rate": 4.82763041556145e-05, + "loss": 0.9353338623046875, + "step": 3900 + }, + { + "epoch": 3.5370493253704933, + "grad_norm": 0.15836960077285767, + "learning_rate": 4.8232095490716186e-05, + "loss": 0.9316812896728516, + "step": 4000 + }, + { + "epoch": 3.625525326255253, + "grad_norm": 0.16170428693294525, + "learning_rate": 4.8187886825817864e-05, + "loss": 0.9331712341308593, + "step": 4100 + }, + { + "epoch": 3.7140013271400134, + "grad_norm": 0.16442789137363434, + "learning_rate": 4.814367816091954e-05, + "loss": 0.9366471862792969, + "step": 4200 + }, + { + "epoch": 3.8024773280247732, + "grad_norm": 0.1728108674287796, + "learning_rate": 4.8099469496021224e-05, + "loss": 0.9279624938964843, + "step": 4300 + }, + { + "epoch": 3.890953328909533, + "grad_norm": 0.16846929490566254, + "learning_rate": 4.80552608311229e-05, + "loss": 0.9343041229248047, + "step": 4400 + }, + { + "epoch": 3.9794293297942933, + "grad_norm": 0.15764060616493225, + "learning_rate": 4.8011052166224585e-05, + "loss": 0.9330953979492187, + "step": 4500 + }, + { + "epoch": 4.067241760672418, + "grad_norm": 0.15639521181583405, + "learning_rate": 4.796684350132626e-05, + "loss": 0.92936279296875, + "step": 4600 + }, + { + "epoch": 4.155717761557177, + "grad_norm": 0.1571352481842041, + "learning_rate": 4.7922634836427946e-05, + "loss": 0.928530502319336, + "step": 4700 + }, + { + "epoch": 4.244193762441937, + "grad_norm": 0.1702045202255249, + "learning_rate": 4.787842617152962e-05, + "loss": 0.928214111328125, + "step": 4800 + }, + { + "epoch": 4.332669763326698, + "grad_norm": 0.15860655903816223, + "learning_rate": 4.78342175066313e-05, + "loss": 0.9305215454101563, + "step": 4900 + }, + { + "epoch": 4.421145764211458, + "grad_norm": 0.15470334887504578, + "learning_rate": 4.779000884173298e-05, + "loss": 0.9308832550048828, + "step": 5000 + }, + { + "epoch": 4.509621765096218, + "grad_norm": 0.18338388204574585, + "learning_rate": 4.774580017683466e-05, + "loss": 0.9284812164306641, + "step": 5100 + }, + { + "epoch": 4.598097765980977, + "grad_norm": 0.16396461427211761, + "learning_rate": 4.7701591511936345e-05, + "loss": 0.9331364440917969, + "step": 5200 + }, + { + "epoch": 4.686573766865738, + "grad_norm": 0.15601013600826263, + "learning_rate": 4.765738284703802e-05, + "loss": 0.9345075225830078, + "step": 5300 + }, + { + "epoch": 4.775049767750498, + "grad_norm": 0.15895380079746246, + "learning_rate": 4.76131741821397e-05, + "loss": 0.9342525482177735, + "step": 5400 + }, + { + "epoch": 4.863525768635258, + "grad_norm": 0.17462770640850067, + "learning_rate": 4.756896551724138e-05, + "loss": 0.9322207641601562, + "step": 5500 + }, + { + "epoch": 4.952001769520018, + "grad_norm": 0.15457525849342346, + "learning_rate": 4.752475685234306e-05, + "loss": 0.9310305023193359, + "step": 5600 + }, + { + "epoch": 5.039814200398142, + "grad_norm": 0.13688383996486664, + "learning_rate": 4.748054818744474e-05, + "loss": 0.9262973022460937, + "step": 5700 + }, + { + "epoch": 5.128290201282902, + "grad_norm": 0.15491563081741333, + "learning_rate": 4.743633952254642e-05, + "loss": 0.927138671875, + "step": 5800 + }, + { + "epoch": 5.216766202167662, + "grad_norm": 0.168558269739151, + "learning_rate": 4.7392130857648105e-05, + "loss": 0.9224365234375, + "step": 5900 + }, + { + "epoch": 5.305242203052422, + "grad_norm": 0.1631685495376587, + "learning_rate": 4.734792219274978e-05, + "loss": 0.9300392913818359, + "step": 6000 + }, + { + "epoch": 5.393718203937182, + "grad_norm": 0.1423729509115219, + "learning_rate": 4.730371352785146e-05, + "loss": 0.926734619140625, + "step": 6100 + }, + { + "epoch": 5.482194204821942, + "grad_norm": 0.15391670167446136, + "learning_rate": 4.725950486295314e-05, + "loss": 0.928184814453125, + "step": 6200 + }, + { + "epoch": 5.570670205706702, + "grad_norm": 0.16460080444812775, + "learning_rate": 4.721529619805482e-05, + "loss": 0.9238227844238281, + "step": 6300 + }, + { + "epoch": 5.659146206591462, + "grad_norm": 0.15589170157909393, + "learning_rate": 4.71710875331565e-05, + "loss": 0.9301457214355469, + "step": 6400 + }, + { + "epoch": 5.747622207476222, + "grad_norm": 0.15851308405399323, + "learning_rate": 4.712687886825818e-05, + "loss": 0.9308782196044922, + "step": 6500 + }, + { + "epoch": 5.836098208360982, + "grad_norm": 0.1777440756559372, + "learning_rate": 4.7082670203359865e-05, + "loss": 0.9248320007324219, + "step": 6600 + }, + { + "epoch": 5.924574209245742, + "grad_norm": 0.17118966579437256, + "learning_rate": 4.703846153846154e-05, + "loss": 0.933470458984375, + "step": 6700 + }, + { + "epoch": 6.012386640123866, + "grad_norm": 0.16862431168556213, + "learning_rate": 4.699425287356322e-05, + "loss": 0.9242423248291015, + "step": 6800 + }, + { + "epoch": 6.100862641008627, + "grad_norm": 0.19494886696338654, + "learning_rate": 4.69500442086649e-05, + "loss": 0.9229951477050782, + "step": 6900 + }, + { + "epoch": 6.189338641893387, + "grad_norm": 0.1628340780735016, + "learning_rate": 4.690583554376658e-05, + "loss": 0.9262020111083984, + "step": 7000 + }, + { + "epoch": 6.2778146427781465, + "grad_norm": 0.18057121336460114, + "learning_rate": 4.686162687886826e-05, + "loss": 0.9253005981445312, + "step": 7100 + }, + { + "epoch": 6.366290643662906, + "grad_norm": 0.16090655326843262, + "learning_rate": 4.681741821396994e-05, + "loss": 0.9206966400146485, + "step": 7200 + }, + { + "epoch": 6.454766644547666, + "grad_norm": 0.16115659475326538, + "learning_rate": 4.6773209549071625e-05, + "loss": 0.9219180297851562, + "step": 7300 + }, + { + "epoch": 6.543242645432427, + "grad_norm": 0.1964244246482849, + "learning_rate": 4.67290008841733e-05, + "loss": 0.9238224029541016, + "step": 7400 + }, + { + "epoch": 6.631718646317187, + "grad_norm": 0.1761396825313568, + "learning_rate": 4.668479221927498e-05, + "loss": 0.9244656372070312, + "step": 7500 + }, + { + "epoch": 6.7201946472019465, + "grad_norm": 0.18016010522842407, + "learning_rate": 4.664058355437666e-05, + "loss": 0.9245244598388672, + "step": 7600 + }, + { + "epoch": 6.808670648086706, + "grad_norm": 0.16012924909591675, + "learning_rate": 4.659637488947834e-05, + "loss": 0.9250524139404297, + "step": 7700 + }, + { + "epoch": 6.897146648971466, + "grad_norm": 0.1722676306962967, + "learning_rate": 4.655216622458002e-05, + "loss": 0.9270682525634766, + "step": 7800 + }, + { + "epoch": 6.985622649856227, + "grad_norm": 0.18756897747516632, + "learning_rate": 4.65079575596817e-05, + "loss": 0.9234317779541016, + "step": 7900 + }, + { + "epoch": 7.073435080734351, + "grad_norm": 0.16759978234767914, + "learning_rate": 4.6463748894783384e-05, + "loss": 0.9213732147216797, + "step": 8000 + }, + { + "epoch": 7.1619110816191105, + "grad_norm": 0.15943242609500885, + "learning_rate": 4.641954022988506e-05, + "loss": 0.9243515014648438, + "step": 8100 + }, + { + "epoch": 7.250387082503871, + "grad_norm": 0.15444102883338928, + "learning_rate": 4.637533156498674e-05, + "loss": 0.9177332305908203, + "step": 8200 + }, + { + "epoch": 7.338863083388631, + "grad_norm": 0.17104187607765198, + "learning_rate": 4.633112290008842e-05, + "loss": 0.9199151611328125, + "step": 8300 + }, + { + "epoch": 7.427339084273391, + "grad_norm": 0.152462899684906, + "learning_rate": 4.62869142351901e-05, + "loss": 0.9231443786621094, + "step": 8400 + }, + { + "epoch": 7.515815085158151, + "grad_norm": 0.1663249433040619, + "learning_rate": 4.6242705570291777e-05, + "loss": 0.9231499481201172, + "step": 8500 + }, + { + "epoch": 7.6042910860429105, + "grad_norm": 0.1711215376853943, + "learning_rate": 4.6198496905393454e-05, + "loss": 0.9192819976806641, + "step": 8600 + }, + { + "epoch": 7.692767086927671, + "grad_norm": 0.1620834916830063, + "learning_rate": 4.6154288240495144e-05, + "loss": 0.9260062408447266, + "step": 8700 + }, + { + "epoch": 7.781243087812431, + "grad_norm": 0.16246546804904938, + "learning_rate": 4.611007957559682e-05, + "loss": 0.9250968933105469, + "step": 8800 + }, + { + "epoch": 7.869719088697191, + "grad_norm": 0.15757358074188232, + "learning_rate": 4.60658709106985e-05, + "loss": 0.9235149383544922, + "step": 8900 + }, + { + "epoch": 7.958195089581951, + "grad_norm": 0.15778206288814545, + "learning_rate": 4.602166224580018e-05, + "loss": 0.9173377227783203, + "step": 9000 + }, + { + "epoch": 8.046007520460075, + "grad_norm": 0.17259791493415833, + "learning_rate": 4.597745358090186e-05, + "loss": 0.9134017181396484, + "step": 9100 + }, + { + "epoch": 8.134483521344835, + "grad_norm": 0.1707502007484436, + "learning_rate": 4.5933244916003536e-05, + "loss": 0.9134098052978515, + "step": 9200 + }, + { + "epoch": 8.222959522229596, + "grad_norm": 0.1647530347108841, + "learning_rate": 4.5889036251105213e-05, + "loss": 0.9205097961425781, + "step": 9300 + }, + { + "epoch": 8.311435523114355, + "grad_norm": 0.16971947252750397, + "learning_rate": 4.5844827586206904e-05, + "loss": 0.9217983245849609, + "step": 9400 + }, + { + "epoch": 8.399911523999116, + "grad_norm": 0.15842877328395844, + "learning_rate": 4.580061892130858e-05, + "loss": 0.9172341918945313, + "step": 9500 + }, + { + "epoch": 8.488387524883874, + "grad_norm": 0.15321888029575348, + "learning_rate": 4.575641025641026e-05, + "loss": 0.9222029113769531, + "step": 9600 + }, + { + "epoch": 8.576863525768635, + "grad_norm": 0.17232707142829895, + "learning_rate": 4.5712201591511935e-05, + "loss": 0.9190543365478515, + "step": 9700 + }, + { + "epoch": 8.665339526653396, + "grad_norm": 0.14735591411590576, + "learning_rate": 4.566799292661362e-05, + "loss": 0.9193865203857422, + "step": 9800 + }, + { + "epoch": 8.753815527538155, + "grad_norm": 0.17929628491401672, + "learning_rate": 4.5623784261715296e-05, + "loss": 0.9178209686279297, + "step": 9900 + }, + { + "epoch": 8.842291528422916, + "grad_norm": 0.1546984612941742, + "learning_rate": 4.557957559681697e-05, + "loss": 0.9209825134277344, + "step": 10000 + }, + { + "epoch": 8.930767529307674, + "grad_norm": 0.16275030374526978, + "learning_rate": 4.553536693191866e-05, + "loss": 0.9219312286376953, + "step": 10100 + }, + { + "epoch": 9.0185799601858, + "grad_norm": 0.16977843642234802, + "learning_rate": 4.549115826702034e-05, + "loss": 0.9190888977050782, + "step": 10200 + }, + { + "epoch": 9.107055961070559, + "grad_norm": 0.16722118854522705, + "learning_rate": 4.544694960212202e-05, + "loss": 0.9173007202148438, + "step": 10300 + }, + { + "epoch": 9.19553196195532, + "grad_norm": 0.15637095272541046, + "learning_rate": 4.5402740937223695e-05, + "loss": 0.9152852630615235, + "step": 10400 + }, + { + "epoch": 9.28400796284008, + "grad_norm": 0.15433216094970703, + "learning_rate": 4.535853227232538e-05, + "loss": 0.9151573944091796, + "step": 10500 + }, + { + "epoch": 9.37248396372484, + "grad_norm": 0.15743562579154968, + "learning_rate": 4.5314323607427056e-05, + "loss": 0.9173799896240235, + "step": 10600 + }, + { + "epoch": 9.4609599646096, + "grad_norm": 0.1527981162071228, + "learning_rate": 4.527011494252873e-05, + "loss": 0.911611328125, + "step": 10700 + }, + { + "epoch": 9.549435965494359, + "grad_norm": 0.15745887160301208, + "learning_rate": 4.522590627763042e-05, + "loss": 0.9144339752197266, + "step": 10800 + }, + { + "epoch": 9.63791196637912, + "grad_norm": 0.1523962914943695, + "learning_rate": 4.51816976127321e-05, + "loss": 0.918481216430664, + "step": 10900 + }, + { + "epoch": 9.72638796726388, + "grad_norm": 0.17231452465057373, + "learning_rate": 4.513748894783378e-05, + "loss": 0.9197111511230469, + "step": 11000 + }, + { + "epoch": 9.81486396814864, + "grad_norm": 0.16348381340503693, + "learning_rate": 4.5093280282935455e-05, + "loss": 0.9151203918457032, + "step": 11100 + }, + { + "epoch": 9.9033399690334, + "grad_norm": 0.16555383801460266, + "learning_rate": 4.504907161803714e-05, + "loss": 0.9189680480957031, + "step": 11200 + }, + { + "epoch": 9.991815969918159, + "grad_norm": 0.16531047224998474, + "learning_rate": 4.5004862953138816e-05, + "loss": 0.9149074554443359, + "step": 11300 + }, + { + "epoch": 10.079628400796285, + "grad_norm": 0.1655273735523224, + "learning_rate": 4.496065428824049e-05, + "loss": 0.9143817138671875, + "step": 11400 + }, + { + "epoch": 10.168104401681044, + "grad_norm": 0.1795828938484192, + "learning_rate": 4.491644562334218e-05, + "loss": 0.911801986694336, + "step": 11500 + }, + { + "epoch": 10.256580402565804, + "grad_norm": 0.1684361696243286, + "learning_rate": 4.487223695844386e-05, + "loss": 0.910247802734375, + "step": 11600 + }, + { + "epoch": 10.345056403450563, + "grad_norm": 0.1620638519525528, + "learning_rate": 4.482802829354554e-05, + "loss": 0.9155111694335938, + "step": 11700 + }, + { + "epoch": 10.433532404335324, + "grad_norm": 0.1695495843887329, + "learning_rate": 4.4783819628647215e-05, + "loss": 0.9134779357910157, + "step": 11800 + }, + { + "epoch": 10.522008405220085, + "grad_norm": 0.18226753175258636, + "learning_rate": 4.47396109637489e-05, + "loss": 0.9143638610839844, + "step": 11900 + }, + { + "epoch": 10.610484406104844, + "grad_norm": 0.15289710462093353, + "learning_rate": 4.4695402298850576e-05, + "loss": 0.9122061157226562, + "step": 12000 + }, + { + "epoch": 10.698960406989604, + "grad_norm": 0.15486228466033936, + "learning_rate": 4.465119363395225e-05, + "loss": 0.9148915863037109, + "step": 12100 + }, + { + "epoch": 10.787436407874363, + "grad_norm": 0.17585019767284393, + "learning_rate": 4.4606984969053937e-05, + "loss": 0.9163182830810547, + "step": 12200 + }, + { + "epoch": 10.875912408759124, + "grad_norm": 0.158732071518898, + "learning_rate": 4.456277630415562e-05, + "loss": 0.9148865509033203, + "step": 12300 + }, + { + "epoch": 10.964388409643885, + "grad_norm": 0.15901361405849457, + "learning_rate": 4.45185676392573e-05, + "loss": 0.9184156799316406, + "step": 12400 + }, + { + "epoch": 11.052200840522008, + "grad_norm": 0.15289290249347687, + "learning_rate": 4.4474358974358974e-05, + "loss": 0.910323486328125, + "step": 12500 + }, + { + "epoch": 11.14067684140677, + "grad_norm": 0.14922171831130981, + "learning_rate": 4.443015030946066e-05, + "loss": 0.9092740631103515, + "step": 12600 + }, + { + "epoch": 11.229152842291528, + "grad_norm": 0.1710701584815979, + "learning_rate": 4.4385941644562335e-05, + "loss": 0.909953842163086, + "step": 12700 + }, + { + "epoch": 11.317628843176289, + "grad_norm": 0.16967815160751343, + "learning_rate": 4.434173297966401e-05, + "loss": 0.9069422912597657, + "step": 12800 + }, + { + "epoch": 11.406104844061048, + "grad_norm": 0.16896069049835205, + "learning_rate": 4.4297524314765696e-05, + "loss": 0.9166646575927735, + "step": 12900 + }, + { + "epoch": 11.494580844945808, + "grad_norm": 0.16996079683303833, + "learning_rate": 4.425331564986738e-05, + "loss": 0.9114566040039063, + "step": 13000 + }, + { + "epoch": 11.58305684583057, + "grad_norm": 0.16553319990634918, + "learning_rate": 4.420910698496906e-05, + "loss": 0.9121807098388672, + "step": 13100 + }, + { + "epoch": 11.671532846715328, + "grad_norm": 0.1629258692264557, + "learning_rate": 4.4164898320070734e-05, + "loss": 0.904563217163086, + "step": 13200 + }, + { + "epoch": 11.760008847600089, + "grad_norm": 0.1660201996564865, + "learning_rate": 4.412068965517241e-05, + "loss": 0.9116962432861329, + "step": 13300 + }, + { + "epoch": 11.848484848484848, + "grad_norm": 0.16493095457553864, + "learning_rate": 4.4076480990274095e-05, + "loss": 0.9136554718017578, + "step": 13400 + }, + { + "epoch": 11.936960849369608, + "grad_norm": 0.15279296040534973, + "learning_rate": 4.403227232537578e-05, + "loss": 0.9120658874511719, + "step": 13500 + }, + { + "epoch": 12.024773280247732, + "grad_norm": 0.16151593625545502, + "learning_rate": 4.3988063660477456e-05, + "loss": 0.9155186462402344, + "step": 13600 + }, + { + "epoch": 12.113249281132493, + "grad_norm": 0.16777871549129486, + "learning_rate": 4.394385499557914e-05, + "loss": 0.9070235443115234, + "step": 13700 + }, + { + "epoch": 12.201725282017254, + "grad_norm": 0.15052072703838348, + "learning_rate": 4.389964633068082e-05, + "loss": 0.9057080078125, + "step": 13800 + }, + { + "epoch": 12.290201282902013, + "grad_norm": 0.17466743290424347, + "learning_rate": 4.3855437665782494e-05, + "loss": 0.9058401489257812, + "step": 13900 + }, + { + "epoch": 12.378677283786773, + "grad_norm": 0.17788690328598022, + "learning_rate": 4.381122900088417e-05, + "loss": 0.9058721923828125, + "step": 14000 + }, + { + "epoch": 12.467153284671532, + "grad_norm": 0.17527516186237335, + "learning_rate": 4.3767020335985855e-05, + "loss": 0.908851089477539, + "step": 14100 + }, + { + "epoch": 12.555629285556293, + "grad_norm": 0.17999336123466492, + "learning_rate": 4.372281167108754e-05, + "loss": 0.9110614013671875, + "step": 14200 + }, + { + "epoch": 12.644105286441054, + "grad_norm": 0.1635061800479889, + "learning_rate": 4.3678603006189216e-05, + "loss": 0.9081086730957031, + "step": 14300 + }, + { + "epoch": 12.732581287325813, + "grad_norm": 0.1813993752002716, + "learning_rate": 4.363439434129089e-05, + "loss": 0.9091014862060547, + "step": 14400 + }, + { + "epoch": 12.821057288210573, + "grad_norm": 0.17487457394599915, + "learning_rate": 4.359018567639258e-05, + "loss": 0.9076325988769531, + "step": 14500 + }, + { + "epoch": 12.909533289095332, + "grad_norm": 0.17149627208709717, + "learning_rate": 4.3545977011494254e-05, + "loss": 0.9064749908447266, + "step": 14600 + }, + { + "epoch": 12.998009289980093, + "grad_norm": 0.16990207135677338, + "learning_rate": 4.350176834659593e-05, + "loss": 0.911828384399414, + "step": 14700 + }, + { + "epoch": 13.085821720858217, + "grad_norm": 0.16583888232707977, + "learning_rate": 4.3458001768346594e-05, + "loss": 0.9017422485351563, + "step": 14800 + }, + { + "epoch": 13.174297721742978, + "grad_norm": 0.1644158959388733, + "learning_rate": 4.341379310344828e-05, + "loss": 0.9052355194091797, + "step": 14900 + }, + { + "epoch": 13.262773722627736, + "grad_norm": 0.1759374737739563, + "learning_rate": 4.336958443854996e-05, + "loss": 0.9027067565917969, + "step": 15000 + }, + { + "epoch": 13.351249723512497, + "grad_norm": 0.1623755842447281, + "learning_rate": 4.332537577365164e-05, + "loss": 0.9078491973876953, + "step": 15100 + }, + { + "epoch": 13.439725724397258, + "grad_norm": 0.15563324093818665, + "learning_rate": 4.3281167108753316e-05, + "loss": 0.9046826171875, + "step": 15200 + }, + { + "epoch": 13.528201725282017, + "grad_norm": 0.1762174814939499, + "learning_rate": 4.3236958443855e-05, + "loss": 0.9070060729980469, + "step": 15300 + }, + { + "epoch": 13.616677726166778, + "grad_norm": 0.1598447859287262, + "learning_rate": 4.319274977895668e-05, + "loss": 0.907843017578125, + "step": 15400 + }, + { + "epoch": 13.705153727051536, + "grad_norm": 0.17838729918003082, + "learning_rate": 4.3148541114058354e-05, + "loss": 0.9077598571777343, + "step": 15500 + }, + { + "epoch": 13.793629727936297, + "grad_norm": 0.16615167260169983, + "learning_rate": 4.310433244916004e-05, + "loss": 0.9041740417480468, + "step": 15600 + }, + { + "epoch": 13.882105728821058, + "grad_norm": 0.16463759541511536, + "learning_rate": 4.306012378426172e-05, + "loss": 0.9023047637939453, + "step": 15700 + }, + { + "epoch": 13.970581729705817, + "grad_norm": 0.1562959849834442, + "learning_rate": 4.30159151193634e-05, + "loss": 0.902835693359375, + "step": 15800 + }, + { + "epoch": 14.058394160583942, + "grad_norm": 0.16919565200805664, + "learning_rate": 4.2971706454465076e-05, + "loss": 0.8998876953125, + "step": 15900 + }, + { + "epoch": 14.146870161468701, + "grad_norm": 0.16513022780418396, + "learning_rate": 4.292749778956676e-05, + "loss": 0.9023524475097656, + "step": 16000 + }, + { + "epoch": 14.235346162353462, + "grad_norm": 0.173946812748909, + "learning_rate": 4.288328912466844e-05, + "loss": 0.8980498504638672, + "step": 16100 + }, + { + "epoch": 14.323822163238221, + "grad_norm": 0.16749872267246246, + "learning_rate": 4.2839080459770114e-05, + "loss": 0.9026957702636719, + "step": 16200 + }, + { + "epoch": 14.412298164122982, + "grad_norm": 0.17985551059246063, + "learning_rate": 4.27948717948718e-05, + "loss": 0.9012105560302734, + "step": 16300 + }, + { + "epoch": 14.500774165007742, + "grad_norm": 0.18807820975780487, + "learning_rate": 4.275066312997348e-05, + "loss": 0.9014115905761719, + "step": 16400 + }, + { + "epoch": 14.589250165892501, + "grad_norm": 0.17243777215480804, + "learning_rate": 4.270645446507516e-05, + "loss": 0.9028221893310547, + "step": 16500 + }, + { + "epoch": 14.677726166777262, + "grad_norm": 0.1674414724111557, + "learning_rate": 4.2662245800176836e-05, + "loss": 0.9017185974121094, + "step": 16600 + }, + { + "epoch": 14.766202167662021, + "grad_norm": 0.17522333562374115, + "learning_rate": 4.261803713527851e-05, + "loss": 0.8989543914794922, + "step": 16700 + }, + { + "epoch": 14.854678168546782, + "grad_norm": 0.16300654411315918, + "learning_rate": 4.2573828470380197e-05, + "loss": 0.9001253509521484, + "step": 16800 + }, + { + "epoch": 14.943154169431542, + "grad_norm": 0.1702653169631958, + "learning_rate": 4.2529619805481874e-05, + "loss": 0.9020176696777343, + "step": 16900 + }, + { + "epoch": 15.030966600309666, + "grad_norm": 0.1752340942621231, + "learning_rate": 4.2485853227232544e-05, + "loss": 0.8990335083007812, + "step": 17000 + }, + { + "epoch": 15.119442601194425, + "grad_norm": 0.17765584588050842, + "learning_rate": 4.244164456233422e-05, + "loss": 0.8885309600830078, + "step": 17100 + }, + { + "epoch": 15.207918602079186, + "grad_norm": 0.18404972553253174, + "learning_rate": 4.23974358974359e-05, + "loss": 0.8915805816650391, + "step": 17200 + }, + { + "epoch": 15.296394602963947, + "grad_norm": 0.17206765711307526, + "learning_rate": 4.235322723253758e-05, + "loss": 0.8898361968994141, + "step": 17300 + }, + { + "epoch": 15.384870603848706, + "grad_norm": 0.19998455047607422, + "learning_rate": 4.230901856763926e-05, + "loss": 0.8957837677001953, + "step": 17400 + }, + { + "epoch": 15.473346604733466, + "grad_norm": 0.19454777240753174, + "learning_rate": 4.2264809902740936e-05, + "loss": 0.8990544891357422, + "step": 17500 + }, + { + "epoch": 15.561822605618225, + "grad_norm": 0.17281410098075867, + "learning_rate": 4.222060123784262e-05, + "loss": 0.8996484375, + "step": 17600 + }, + { + "epoch": 15.650298606502986, + "grad_norm": 0.1906009018421173, + "learning_rate": 4.21763925729443e-05, + "loss": 0.9032618713378906, + "step": 17700 + }, + { + "epoch": 15.738774607387747, + "grad_norm": 0.17282316088676453, + "learning_rate": 4.213218390804598e-05, + "loss": 0.8986404418945313, + "step": 17800 + }, + { + "epoch": 15.827250608272506, + "grad_norm": 0.18802666664123535, + "learning_rate": 4.208797524314766e-05, + "loss": 0.8964502716064453, + "step": 17900 + }, + { + "epoch": 15.915726609157266, + "grad_norm": 0.19853872060775757, + "learning_rate": 4.204376657824934e-05, + "loss": 0.9032749938964844, + "step": 18000 + }, + { + "epoch": 16.003539040035392, + "grad_norm": 0.18812181055545807, + "learning_rate": 4.199955791335102e-05, + "loss": 0.8991973876953125, + "step": 18100 + }, + { + "epoch": 16.09201504092015, + "grad_norm": 0.1644710898399353, + "learning_rate": 4.1955349248452695e-05, + "loss": 0.8866680908203125, + "step": 18200 + }, + { + "epoch": 16.18049104180491, + "grad_norm": 0.1884208619594574, + "learning_rate": 4.191114058355438e-05, + "loss": 0.8872537994384766, + "step": 18300 + }, + { + "epoch": 16.26896704268967, + "grad_norm": 0.1828072965145111, + "learning_rate": 4.186693191865606e-05, + "loss": 0.8902882385253906, + "step": 18400 + }, + { + "epoch": 16.35744304357443, + "grad_norm": 0.19119146466255188, + "learning_rate": 4.182272325375774e-05, + "loss": 0.8903806304931641, + "step": 18500 + }, + { + "epoch": 16.445919044459192, + "grad_norm": 0.20727571845054626, + "learning_rate": 4.177851458885942e-05, + "loss": 0.8952965545654297, + "step": 18600 + }, + { + "epoch": 16.53439504534395, + "grad_norm": 0.18735922873020172, + "learning_rate": 4.17343059239611e-05, + "loss": 0.8870563507080078, + "step": 18700 + }, + { + "epoch": 16.62287104622871, + "grad_norm": 0.1973799169063568, + "learning_rate": 4.169009725906278e-05, + "loss": 0.8974028778076172, + "step": 18800 + }, + { + "epoch": 16.71134704711347, + "grad_norm": 0.20604746043682098, + "learning_rate": 4.1645888594164455e-05, + "loss": 0.8937057495117188, + "step": 18900 + }, + { + "epoch": 16.79982304799823, + "grad_norm": 0.18150219321250916, + "learning_rate": 4.160167992926614e-05, + "loss": 0.8935442352294922, + "step": 19000 + }, + { + "epoch": 16.888299048882992, + "grad_norm": 0.18340304493904114, + "learning_rate": 4.155747126436782e-05, + "loss": 0.8885797119140625, + "step": 19100 + }, + { + "epoch": 16.97677504976775, + "grad_norm": 0.2073577493429184, + "learning_rate": 4.15132625994695e-05, + "loss": 0.8951002502441406, + "step": 19200 + }, + { + "epoch": 17.064587480645876, + "grad_norm": 0.17697007954120636, + "learning_rate": 4.146949602122016e-05, + "loss": 0.8879679870605469, + "step": 19300 + }, + { + "epoch": 17.153063481530634, + "grad_norm": 0.20899821817874908, + "learning_rate": 4.142528735632184e-05, + "loss": 0.8794329833984375, + "step": 19400 + }, + { + "epoch": 17.241539482415394, + "grad_norm": 0.18147091567516327, + "learning_rate": 4.138107869142352e-05, + "loss": 0.8802722930908203, + "step": 19500 + }, + { + "epoch": 17.330015483300155, + "grad_norm": 0.20257830619812012, + "learning_rate": 4.13368700265252e-05, + "loss": 0.8870145416259766, + "step": 19600 + }, + { + "epoch": 17.418491484184916, + "grad_norm": 0.20231416821479797, + "learning_rate": 4.1292661361626885e-05, + "loss": 0.8838448333740234, + "step": 19700 + }, + { + "epoch": 17.506967485069676, + "grad_norm": 0.18214623630046844, + "learning_rate": 4.124845269672856e-05, + "loss": 0.8879763793945312, + "step": 19800 + }, + { + "epoch": 17.595443485954434, + "grad_norm": 0.18666088581085205, + "learning_rate": 4.120424403183024e-05, + "loss": 0.8885836029052734, + "step": 19900 + }, + { + "epoch": 17.683919486839194, + "grad_norm": 0.20308583974838257, + "learning_rate": 4.116003536693192e-05, + "loss": 0.8843843078613282, + "step": 20000 + }, + { + "epoch": 17.772395487723955, + "grad_norm": 0.18726830184459686, + "learning_rate": 4.11158267020336e-05, + "loss": 0.8865486145019531, + "step": 20100 + }, + { + "epoch": 17.860871488608716, + "grad_norm": 0.17878851294517517, + "learning_rate": 4.107161803713528e-05, + "loss": 0.8883515930175782, + "step": 20200 + }, + { + "epoch": 17.949347489493476, + "grad_norm": 0.1849307119846344, + "learning_rate": 4.102740937223696e-05, + "loss": 0.8914216613769531, + "step": 20300 + }, + { + "epoch": 18.0371599203716, + "grad_norm": 0.22315239906311035, + "learning_rate": 4.0983200707338645e-05, + "loss": 0.88252197265625, + "step": 20400 + }, + { + "epoch": 18.12563592125636, + "grad_norm": 0.18446321785449982, + "learning_rate": 4.093899204244032e-05, + "loss": 0.8717878723144531, + "step": 20500 + }, + { + "epoch": 18.214111922141118, + "grad_norm": 0.21541251242160797, + "learning_rate": 4.0894783377542e-05, + "loss": 0.8750727844238281, + "step": 20600 + }, + { + "epoch": 18.30258792302588, + "grad_norm": 0.22268827259540558, + "learning_rate": 4.085057471264368e-05, + "loss": 0.8760640716552734, + "step": 20700 + }, + { + "epoch": 18.39106392391064, + "grad_norm": 0.2207673043012619, + "learning_rate": 4.080636604774536e-05, + "loss": 0.876912841796875, + "step": 20800 + }, + { + "epoch": 18.4795399247954, + "grad_norm": 0.21988292038440704, + "learning_rate": 4.076215738284704e-05, + "loss": 0.8794302368164062, + "step": 20900 + }, + { + "epoch": 18.56801592568016, + "grad_norm": 0.2057323008775711, + "learning_rate": 4.0717948717948714e-05, + "loss": 0.8795650482177735, + "step": 21000 + }, + { + "epoch": 18.656491926564918, + "grad_norm": 0.19854794442653656, + "learning_rate": 4.0673740053050405e-05, + "loss": 0.8824103546142578, + "step": 21100 + }, + { + "epoch": 18.74496792744968, + "grad_norm": 0.2183123230934143, + "learning_rate": 4.062953138815208e-05, + "loss": 0.8792383575439453, + "step": 21200 + }, + { + "epoch": 18.83344392833444, + "grad_norm": 0.20326419174671173, + "learning_rate": 4.058532272325376e-05, + "loss": 0.8834226989746093, + "step": 21300 + }, + { + "epoch": 18.9219199292192, + "grad_norm": 0.20735788345336914, + "learning_rate": 4.054111405835544e-05, + "loss": 0.8820342254638672, + "step": 21400 + }, + { + "epoch": 19.009732360097324, + "grad_norm": 0.2023264467716217, + "learning_rate": 4.04973474801061e-05, + "loss": 0.8843944549560547, + "step": 21500 + }, + { + "epoch": 19.098208360982085, + "grad_norm": 0.21148885786533356, + "learning_rate": 4.045313881520778e-05, + "loss": 0.8647132110595703, + "step": 21600 + }, + { + "epoch": 19.186684361866842, + "grad_norm": 0.2251083254814148, + "learning_rate": 4.040893015030947e-05, + "loss": 0.866364974975586, + "step": 21700 + }, + { + "epoch": 19.275160362751603, + "grad_norm": 0.23524972796440125, + "learning_rate": 4.0364721485411144e-05, + "loss": 0.8736127471923828, + "step": 21800 + }, + { + "epoch": 19.363636363636363, + "grad_norm": 0.21772760152816772, + "learning_rate": 4.032051282051282e-05, + "loss": 0.8692568206787109, + "step": 21900 + }, + { + "epoch": 19.452112364521124, + "grad_norm": 0.2125358134508133, + "learning_rate": 4.0276304155614505e-05, + "loss": 0.8706926727294921, + "step": 22000 + }, + { + "epoch": 19.540588365405885, + "grad_norm": 0.22768475115299225, + "learning_rate": 4.023209549071618e-05, + "loss": 0.8674411010742188, + "step": 22100 + }, + { + "epoch": 19.629064366290642, + "grad_norm": 0.2211151272058487, + "learning_rate": 4.018788682581786e-05, + "loss": 0.8749802398681641, + "step": 22200 + }, + { + "epoch": 19.717540367175403, + "grad_norm": 0.21814538538455963, + "learning_rate": 4.014367816091954e-05, + "loss": 0.8754036712646485, + "step": 22300 + }, + { + "epoch": 19.806016368060163, + "grad_norm": 0.2030419558286667, + "learning_rate": 4.0099469496021226e-05, + "loss": 0.8714677429199219, + "step": 22400 + }, + { + "epoch": 19.894492368944924, + "grad_norm": 0.21472303569316864, + "learning_rate": 4.0055260831122904e-05, + "loss": 0.8727165222167969, + "step": 22500 + }, + { + "epoch": 19.982968369829685, + "grad_norm": 0.20911096036434174, + "learning_rate": 4.001105216622458e-05, + "loss": 0.8781427764892578, + "step": 22600 + }, + { + "epoch": 20.07078080070781, + "grad_norm": 0.2304856926202774, + "learning_rate": 3.9966843501326264e-05, + "loss": 0.8589347076416015, + "step": 22700 + }, + { + "epoch": 20.15925680159257, + "grad_norm": 0.23650145530700684, + "learning_rate": 3.992263483642794e-05, + "loss": 0.8598684692382812, + "step": 22800 + }, + { + "epoch": 20.247732802477326, + "grad_norm": 0.21773482859134674, + "learning_rate": 3.987842617152962e-05, + "loss": 0.8605601501464843, + "step": 22900 + }, + { + "epoch": 20.336208803362087, + "grad_norm": 0.2237112671136856, + "learning_rate": 3.98342175066313e-05, + "loss": 0.8617141723632813, + "step": 23000 + }, + { + "epoch": 20.424684804246848, + "grad_norm": 0.24452048540115356, + "learning_rate": 3.9790008841732986e-05, + "loss": 0.8622699737548828, + "step": 23100 + }, + { + "epoch": 20.51316080513161, + "grad_norm": 0.21587280929088593, + "learning_rate": 3.974580017683466e-05, + "loss": 0.8637493896484375, + "step": 23200 + }, + { + "epoch": 20.60163680601637, + "grad_norm": 0.2406671941280365, + "learning_rate": 3.970159151193634e-05, + "loss": 0.859559555053711, + "step": 23300 + }, + { + "epoch": 20.690112806901126, + "grad_norm": 0.22845898568630219, + "learning_rate": 3.9657382847038024e-05, + "loss": 0.8662923431396484, + "step": 23400 + }, + { + "epoch": 20.778588807785887, + "grad_norm": 0.24683597683906555, + "learning_rate": 3.96131741821397e-05, + "loss": 0.8673475646972656, + "step": 23500 + }, + { + "epoch": 20.867064808670648, + "grad_norm": 0.22459226846694946, + "learning_rate": 3.956896551724138e-05, + "loss": 0.8640863037109375, + "step": 23600 + }, + { + "epoch": 20.95554080955541, + "grad_norm": 0.23616963624954224, + "learning_rate": 3.952475685234306e-05, + "loss": 0.8678861236572266, + "step": 23700 + }, + { + "epoch": 21.043353240433532, + "grad_norm": 0.22973845899105072, + "learning_rate": 3.9480990274093725e-05, + "loss": 0.8580598449707031, + "step": 23800 + }, + { + "epoch": 21.131829241318293, + "grad_norm": 0.2424720972776413, + "learning_rate": 3.94367816091954e-05, + "loss": 0.8460955810546875, + "step": 23900 + }, + { + "epoch": 21.220305242203054, + "grad_norm": 0.2528146505355835, + "learning_rate": 3.9392572944297086e-05, + "loss": 0.8499996185302734, + "step": 24000 + }, + { + "epoch": 21.30878124308781, + "grad_norm": 0.2518126666545868, + "learning_rate": 3.9348364279398763e-05, + "loss": 0.8534349060058594, + "step": 24100 + }, + { + "epoch": 21.39725724397257, + "grad_norm": 0.2305818349123001, + "learning_rate": 3.930415561450044e-05, + "loss": 0.84900146484375, + "step": 24200 + }, + { + "epoch": 21.485733244857332, + "grad_norm": 0.25653600692749023, + "learning_rate": 3.9259946949602124e-05, + "loss": 0.8542990875244141, + "step": 24300 + }, + { + "epoch": 21.574209245742093, + "grad_norm": 0.2712801992893219, + "learning_rate": 3.92157382847038e-05, + "loss": 0.8558815002441407, + "step": 24400 + }, + { + "epoch": 21.662685246626854, + "grad_norm": 0.273328959941864, + "learning_rate": 3.9171529619805485e-05, + "loss": 0.8555754089355468, + "step": 24500 + }, + { + "epoch": 21.75116124751161, + "grad_norm": 0.2668614089488983, + "learning_rate": 3.912732095490716e-05, + "loss": 0.8587675476074219, + "step": 24600 + }, + { + "epoch": 21.83963724839637, + "grad_norm": 0.24395836889743805, + "learning_rate": 3.9083112290008846e-05, + "loss": 0.8572028350830078, + "step": 24700 + }, + { + "epoch": 21.928113249281132, + "grad_norm": 0.24808812141418457, + "learning_rate": 3.903890362511052e-05, + "loss": 0.8579219055175781, + "step": 24800 + }, + { + "epoch": 22.015925680159256, + "grad_norm": 0.2587817311286926, + "learning_rate": 3.89946949602122e-05, + "loss": 0.8512050628662109, + "step": 24900 + }, + { + "epoch": 22.104401681044017, + "grad_norm": 0.26175108551979065, + "learning_rate": 3.8950486295313884e-05, + "loss": 0.8361199188232422, + "step": 25000 + }, + { + "epoch": 22.192877681928778, + "grad_norm": 0.2715345025062561, + "learning_rate": 3.890627763041556e-05, + "loss": 0.8399204254150391, + "step": 25100 + }, + { + "epoch": 22.28135368281354, + "grad_norm": 0.27675682306289673, + "learning_rate": 3.8862068965517245e-05, + "loss": 0.8378430938720703, + "step": 25200 + }, + { + "epoch": 22.369829683698295, + "grad_norm": 0.26540565490722656, + "learning_rate": 3.881786030061892e-05, + "loss": 0.8397164916992188, + "step": 25300 + }, + { + "epoch": 22.458305684583056, + "grad_norm": 0.2754775285720825, + "learning_rate": 3.8773651635720606e-05, + "loss": 0.8450184631347656, + "step": 25400 + }, + { + "epoch": 22.546781685467817, + "grad_norm": 0.2393341213464737, + "learning_rate": 3.872944297082228e-05, + "loss": 0.8427618408203125, + "step": 25500 + }, + { + "epoch": 22.635257686352578, + "grad_norm": 0.23895791172981262, + "learning_rate": 3.868523430592396e-05, + "loss": 0.8457352447509766, + "step": 25600 + }, + { + "epoch": 22.72373368723734, + "grad_norm": 0.26955941319465637, + "learning_rate": 3.8641025641025644e-05, + "loss": 0.849469223022461, + "step": 25700 + }, + { + "epoch": 22.812209688122095, + "grad_norm": 0.23746059834957123, + "learning_rate": 3.859681697612732e-05, + "loss": 0.8469708251953125, + "step": 25800 + }, + { + "epoch": 22.900685689006856, + "grad_norm": 0.2649519145488739, + "learning_rate": 3.8552608311229005e-05, + "loss": 0.849559326171875, + "step": 25900 + }, + { + "epoch": 22.989161689891617, + "grad_norm": 0.27285081148147583, + "learning_rate": 3.850839964633068e-05, + "loss": 0.8485184478759765, + "step": 26000 + }, + { + "epoch": 23.07697412076974, + "grad_norm": 0.27895936369895935, + "learning_rate": 3.8464633068081345e-05, + "loss": 0.8252901458740234, + "step": 26100 + }, + { + "epoch": 23.1654501216545, + "grad_norm": 0.2652367055416107, + "learning_rate": 3.842042440318302e-05, + "loss": 0.8263906097412109, + "step": 26200 + }, + { + "epoch": 23.253926122539262, + "grad_norm": 0.2835598886013031, + "learning_rate": 3.8376215738284706e-05, + "loss": 0.8287677001953125, + "step": 26300 + }, + { + "epoch": 23.342402123424023, + "grad_norm": 0.2834433615207672, + "learning_rate": 3.833200707338638e-05, + "loss": 0.8309012603759766, + "step": 26400 + }, + { + "epoch": 23.43087812430878, + "grad_norm": 0.2998100817203522, + "learning_rate": 3.828779840848807e-05, + "loss": 0.8311166381835937, + "step": 26500 + }, + { + "epoch": 23.51935412519354, + "grad_norm": 0.29382187128067017, + "learning_rate": 3.8243589743589744e-05, + "loss": 0.8325238037109375, + "step": 26600 + }, + { + "epoch": 23.6078301260783, + "grad_norm": 0.2950701415538788, + "learning_rate": 3.819938107869143e-05, + "loss": 0.8368535614013672, + "step": 26700 + }, + { + "epoch": 23.696306126963062, + "grad_norm": 0.287801057100296, + "learning_rate": 3.8155172413793105e-05, + "loss": 0.833930435180664, + "step": 26800 + }, + { + "epoch": 23.784782127847823, + "grad_norm": 0.33100536465644836, + "learning_rate": 3.811096374889478e-05, + "loss": 0.8386001586914062, + "step": 26900 + }, + { + "epoch": 23.87325812873258, + "grad_norm": 0.2911369800567627, + "learning_rate": 3.8066755083996466e-05, + "loss": 0.8410533905029297, + "step": 27000 + }, + { + "epoch": 23.96173412961734, + "grad_norm": 0.26980099081993103, + "learning_rate": 3.802254641909814e-05, + "loss": 0.8360975646972656, + "step": 27100 + }, + { + "epoch": 24.049546560495465, + "grad_norm": 0.3001425862312317, + "learning_rate": 3.797833775419983e-05, + "loss": 0.8234864044189453, + "step": 27200 + }, + { + "epoch": 24.138022561380225, + "grad_norm": 0.27798378467559814, + "learning_rate": 3.7934129089301504e-05, + "loss": 0.8135331726074219, + "step": 27300 + }, + { + "epoch": 24.226498562264986, + "grad_norm": 0.2736954689025879, + "learning_rate": 3.788992042440319e-05, + "loss": 0.8113047027587891, + "step": 27400 + }, + { + "epoch": 24.314974563149747, + "grad_norm": 0.29235804080963135, + "learning_rate": 3.7845711759504865e-05, + "loss": 0.8171870422363281, + "step": 27500 + }, + { + "epoch": 24.403450564034507, + "grad_norm": 0.2878233790397644, + "learning_rate": 3.780150309460654e-05, + "loss": 0.8170029449462891, + "step": 27600 + }, + { + "epoch": 24.491926564919265, + "grad_norm": 0.31602925062179565, + "learning_rate": 3.7757294429708226e-05, + "loss": 0.8223928833007812, + "step": 27700 + }, + { + "epoch": 24.580402565804025, + "grad_norm": 0.3145372271537781, + "learning_rate": 3.77130857648099e-05, + "loss": 0.8257860565185546, + "step": 27800 + }, + { + "epoch": 24.668878566688786, + "grad_norm": 0.30716991424560547, + "learning_rate": 3.7668877099911587e-05, + "loss": 0.8240725708007812, + "step": 27900 + }, + { + "epoch": 24.757354567573547, + "grad_norm": 0.28368160128593445, + "learning_rate": 3.7624668435013264e-05, + "loss": 0.825384521484375, + "step": 28000 + }, + { + "epoch": 24.845830568458307, + "grad_norm": 0.2867664694786072, + "learning_rate": 3.758045977011495e-05, + "loss": 0.8270760345458984, + "step": 28100 + }, + { + "epoch": 24.934306569343065, + "grad_norm": 0.28817129135131836, + "learning_rate": 3.7536251105216624e-05, + "loss": 0.8286974334716797, + "step": 28200 + }, + { + "epoch": 25.02211900022119, + "grad_norm": 0.3106354773044586, + "learning_rate": 3.749248452696729e-05, + "loss": 0.82120849609375, + "step": 28300 + }, + { + "epoch": 25.11059500110595, + "grad_norm": 0.3304692506790161, + "learning_rate": 3.7448275862068965e-05, + "loss": 0.8016901397705078, + "step": 28400 + }, + { + "epoch": 25.19907100199071, + "grad_norm": 0.3065616488456726, + "learning_rate": 3.740406719717064e-05, + "loss": 0.8027448272705078, + "step": 28500 + }, + { + "epoch": 25.28754700287547, + "grad_norm": 0.3456852436065674, + "learning_rate": 3.735985853227233e-05, + "loss": 0.8046049499511718, + "step": 28600 + }, + { + "epoch": 25.37602300376023, + "grad_norm": 0.3011663556098938, + "learning_rate": 3.731564986737401e-05, + "loss": 0.8079199981689453, + "step": 28700 + }, + { + "epoch": 25.46449900464499, + "grad_norm": 0.3659413158893585, + "learning_rate": 3.7271441202475687e-05, + "loss": 0.8079922485351563, + "step": 28800 + }, + { + "epoch": 25.55297500552975, + "grad_norm": 0.3281838595867157, + "learning_rate": 3.7227232537577364e-05, + "loss": 0.8134046173095704, + "step": 28900 + }, + { + "epoch": 25.64145100641451, + "grad_norm": 0.3106602132320404, + "learning_rate": 3.718302387267905e-05, + "loss": 0.8104205322265625, + "step": 29000 + }, + { + "epoch": 25.72992700729927, + "grad_norm": 0.3320154845714569, + "learning_rate": 3.7138815207780725e-05, + "loss": 0.8142304992675782, + "step": 29100 + }, + { + "epoch": 25.81840300818403, + "grad_norm": 0.3355977535247803, + "learning_rate": 3.70946065428824e-05, + "loss": 0.8125243377685547, + "step": 29200 + }, + { + "epoch": 25.90687900906879, + "grad_norm": 0.3472290635108948, + "learning_rate": 3.7050397877984085e-05, + "loss": 0.8146660614013672, + "step": 29300 + }, + { + "epoch": 25.99535500995355, + "grad_norm": 0.31780678033828735, + "learning_rate": 3.700618921308577e-05, + "loss": 0.8169705200195313, + "step": 29400 + }, + { + "epoch": 26.083167440831673, + "grad_norm": 0.3046151101589203, + "learning_rate": 3.6961980548187446e-05, + "loss": 0.7894915008544922, + "step": 29500 + }, + { + "epoch": 26.171643441716434, + "grad_norm": 0.3560829162597656, + "learning_rate": 3.6917771883289123e-05, + "loss": 0.7867289733886719, + "step": 29600 + }, + { + "epoch": 26.260119442601194, + "grad_norm": 0.33036884665489197, + "learning_rate": 3.687356321839081e-05, + "loss": 0.7914912414550781, + "step": 29700 + }, + { + "epoch": 26.348595443485955, + "grad_norm": 0.3302215039730072, + "learning_rate": 3.6829354553492484e-05, + "loss": 0.7926998901367187, + "step": 29800 + }, + { + "epoch": 26.437071444370716, + "grad_norm": 0.33766239881515503, + "learning_rate": 3.678514588859416e-05, + "loss": 0.7958551788330078, + "step": 29900 + }, + { + "epoch": 26.525547445255473, + "grad_norm": 0.34900912642478943, + "learning_rate": 3.6740937223695845e-05, + "loss": 0.7958287811279297, + "step": 30000 + }, + { + "epoch": 26.614023446140234, + "grad_norm": 0.3290475010871887, + "learning_rate": 3.669672855879753e-05, + "loss": 0.7994923400878906, + "step": 30100 + }, + { + "epoch": 26.702499447024994, + "grad_norm": 0.3304896950721741, + "learning_rate": 3.6652519893899206e-05, + "loss": 0.8000531005859375, + "step": 30200 + }, + { + "epoch": 26.790975447909755, + "grad_norm": 0.32132837176322937, + "learning_rate": 3.660831122900088e-05, + "loss": 0.8006639862060547, + "step": 30300 + }, + { + "epoch": 26.879451448794516, + "grad_norm": 0.3341081142425537, + "learning_rate": 3.656410256410257e-05, + "loss": 0.8037942504882812, + "step": 30400 + }, + { + "epoch": 26.967927449679273, + "grad_norm": 0.3406025171279907, + "learning_rate": 3.6519893899204244e-05, + "loss": 0.8009793853759766, + "step": 30500 + }, + { + "epoch": 27.0557398805574, + "grad_norm": 0.3396868109703064, + "learning_rate": 3.647568523430592e-05, + "loss": 0.7846424865722657, + "step": 30600 + }, + { + "epoch": 27.144215881442157, + "grad_norm": 0.33319470286369324, + "learning_rate": 3.6431476569407605e-05, + "loss": 0.7724665832519532, + "step": 30700 + }, + { + "epoch": 27.232691882326918, + "grad_norm": 0.38071826100349426, + "learning_rate": 3.638726790450929e-05, + "loss": 0.7791647338867187, + "step": 30800 + }, + { + "epoch": 27.32116788321168, + "grad_norm": 0.3640372157096863, + "learning_rate": 3.6343059239610966e-05, + "loss": 0.778485107421875, + "step": 30900 + }, + { + "epoch": 27.40964388409644, + "grad_norm": 0.34701183438301086, + "learning_rate": 3.629885057471264e-05, + "loss": 0.7812682342529297, + "step": 31000 + }, + { + "epoch": 27.4981198849812, + "grad_norm": 0.34723395109176636, + "learning_rate": 3.625464190981433e-05, + "loss": 0.7816720581054688, + "step": 31100 + }, + { + "epoch": 27.586595885865957, + "grad_norm": 0.3967572748661041, + "learning_rate": 3.6210433244916004e-05, + "loss": 0.7825845336914062, + "step": 31200 + }, + { + "epoch": 27.675071886750718, + "grad_norm": 0.36156365275382996, + "learning_rate": 3.616622458001768e-05, + "loss": 0.7875003814697266, + "step": 31300 + }, + { + "epoch": 27.76354788763548, + "grad_norm": 0.37152451276779175, + "learning_rate": 3.6122015915119365e-05, + "loss": 0.7848563385009766, + "step": 31400 + }, + { + "epoch": 27.85202388852024, + "grad_norm": 0.3751819431781769, + "learning_rate": 3.607780725022105e-05, + "loss": 0.7901625061035156, + "step": 31500 + }, + { + "epoch": 27.940499889405, + "grad_norm": 0.32409200072288513, + "learning_rate": 3.6033598585322726e-05, + "loss": 0.7916508483886718, + "step": 31600 + }, + { + "epoch": 28.028312320283124, + "grad_norm": 0.36621779203414917, + "learning_rate": 3.59893899204244e-05, + "loss": 0.7814656066894531, + "step": 31700 + }, + { + "epoch": 28.116788321167885, + "grad_norm": 0.35782715678215027, + "learning_rate": 3.594518125552609e-05, + "loss": 0.7565266418457032, + "step": 31800 + }, + { + "epoch": 28.205264322052642, + "grad_norm": 0.34983065724372864, + "learning_rate": 3.5900972590627764e-05, + "loss": 0.7589649963378906, + "step": 31900 + }, + { + "epoch": 28.293740322937403, + "grad_norm": 0.36476004123687744, + "learning_rate": 3.585676392572945e-05, + "loss": 0.7618669891357421, + "step": 32000 + }, + { + "epoch": 28.382216323822163, + "grad_norm": 0.3663191795349121, + "learning_rate": 3.5812555260831125e-05, + "loss": 0.768099136352539, + "step": 32100 + }, + { + "epoch": 28.470692324706924, + "grad_norm": 0.3572807312011719, + "learning_rate": 3.576834659593281e-05, + "loss": 0.7697807312011719, + "step": 32200 + }, + { + "epoch": 28.559168325591685, + "grad_norm": 0.39800935983657837, + "learning_rate": 3.5724580017683465e-05, + "loss": 0.7714015960693359, + "step": 32300 + }, + { + "epoch": 28.647644326476442, + "grad_norm": 0.3792218863964081, + "learning_rate": 3.568037135278515e-05, + "loss": 0.7737385559082032, + "step": 32400 + }, + { + "epoch": 28.736120327361203, + "grad_norm": 0.4109075665473938, + "learning_rate": 3.5636162687886826e-05, + "loss": 0.7772123718261719, + "step": 32500 + }, + { + "epoch": 28.824596328245963, + "grad_norm": 0.40446004271507263, + "learning_rate": 3.55919540229885e-05, + "loss": 0.7722319030761718, + "step": 32600 + }, + { + "epoch": 28.913072329130724, + "grad_norm": 0.39553946256637573, + "learning_rate": 3.554774535809019e-05, + "loss": 0.7767266082763672, + "step": 32700 + }, + { + "epoch": 29.000884760008848, + "grad_norm": 0.3675474226474762, + "learning_rate": 3.550397877984085e-05, + "loss": 0.7800326538085938, + "step": 32800 + }, + { + "epoch": 29.08936076089361, + "grad_norm": 0.37354156374931335, + "learning_rate": 3.5459770114942534e-05, + "loss": 0.7407066345214843, + "step": 32900 + }, + { + "epoch": 29.17783676177837, + "grad_norm": 0.3970542550086975, + "learning_rate": 3.541556145004421e-05, + "loss": 0.7467523956298828, + "step": 33000 + }, + { + "epoch": 29.266312762663127, + "grad_norm": 0.3625730872154236, + "learning_rate": 3.537135278514589e-05, + "loss": 0.7477723693847657, + "step": 33100 + }, + { + "epoch": 29.354788763547887, + "grad_norm": 0.37132611870765686, + "learning_rate": 3.532714412024757e-05, + "loss": 0.7502822875976562, + "step": 33200 + }, + { + "epoch": 29.443264764432648, + "grad_norm": 0.3668833374977112, + "learning_rate": 3.528293545534925e-05, + "loss": 0.7570280456542968, + "step": 33300 + }, + { + "epoch": 29.53174076531741, + "grad_norm": 0.404186874628067, + "learning_rate": 3.523872679045093e-05, + "loss": 0.7576876831054687, + "step": 33400 + }, + { + "epoch": 29.62021676620217, + "grad_norm": 0.407461017370224, + "learning_rate": 3.519451812555261e-05, + "loss": 0.7606333923339844, + "step": 33500 + }, + { + "epoch": 29.708692767086927, + "grad_norm": 0.4091641902923584, + "learning_rate": 3.5150309460654294e-05, + "loss": 0.7598370361328125, + "step": 33600 + }, + { + "epoch": 29.797168767971687, + "grad_norm": 0.36642369627952576, + "learning_rate": 3.510610079575597e-05, + "loss": 0.7617308807373047, + "step": 33700 + }, + { + "epoch": 29.885644768856448, + "grad_norm": 0.3767990171909332, + "learning_rate": 3.506189213085765e-05, + "loss": 0.760002670288086, + "step": 33800 + }, + { + "epoch": 29.97412076974121, + "grad_norm": 0.3992450535297394, + "learning_rate": 3.5017683465959325e-05, + "loss": 0.7659886932373047, + "step": 33900 + }, + { + "epoch": 30.061933200619332, + "grad_norm": 0.38657036423683167, + "learning_rate": 3.497347480106101e-05, + "loss": 0.7397030639648438, + "step": 34000 + }, + { + "epoch": 30.150409201504093, + "grad_norm": 0.40928229689598083, + "learning_rate": 3.492926613616269e-05, + "loss": 0.7280159759521484, + "step": 34100 + }, + { + "epoch": 30.23888520238885, + "grad_norm": 0.41609957814216614, + "learning_rate": 3.488505747126437e-05, + "loss": 0.7327291107177735, + "step": 34200 + }, + { + "epoch": 30.32736120327361, + "grad_norm": 0.3990429639816284, + "learning_rate": 3.4840848806366047e-05, + "loss": 0.7359205627441406, + "step": 34300 + }, + { + "epoch": 30.41583720415837, + "grad_norm": 0.40403324365615845, + "learning_rate": 3.479664014146773e-05, + "loss": 0.73650390625, + "step": 34400 + }, + { + "epoch": 30.504313205043132, + "grad_norm": 0.42696642875671387, + "learning_rate": 3.475243147656941e-05, + "loss": 0.7416681671142578, + "step": 34500 + }, + { + "epoch": 30.592789205927893, + "grad_norm": 0.3891199231147766, + "learning_rate": 3.4708222811671085e-05, + "loss": 0.742286605834961, + "step": 34600 + }, + { + "epoch": 30.68126520681265, + "grad_norm": 0.3660706877708435, + "learning_rate": 3.466401414677277e-05, + "loss": 0.7444020080566406, + "step": 34700 + }, + { + "epoch": 30.76974120769741, + "grad_norm": 0.43280747532844543, + "learning_rate": 3.461980548187445e-05, + "loss": 0.7461125183105469, + "step": 34800 + }, + { + "epoch": 30.85821720858217, + "grad_norm": 0.4279727041721344, + "learning_rate": 3.457559681697613e-05, + "loss": 0.7497645568847656, + "step": 34900 + }, + { + "epoch": 30.946693209466932, + "grad_norm": 0.4162921905517578, + "learning_rate": 3.4531388152077806e-05, + "loss": 0.7478341674804687, + "step": 35000 + }, + { + "epoch": 31.034505640345056, + "grad_norm": 0.4011857211589813, + "learning_rate": 3.448762157382847e-05, + "loss": 0.7373168182373047, + "step": 35100 + }, + { + "epoch": 31.122981641229817, + "grad_norm": 0.42476192116737366, + "learning_rate": 3.444341290893015e-05, + "loss": 0.714128646850586, + "step": 35200 + }, + { + "epoch": 31.211457642114578, + "grad_norm": 0.4272063672542572, + "learning_rate": 3.439920424403183e-05, + "loss": 0.717328872680664, + "step": 35300 + }, + { + "epoch": 31.299933642999335, + "grad_norm": 0.39419060945510864, + "learning_rate": 3.4354995579133514e-05, + "loss": 0.7182811737060547, + "step": 35400 + }, + { + "epoch": 31.388409643884096, + "grad_norm": 0.4092519283294678, + "learning_rate": 3.431078691423519e-05, + "loss": 0.7223808288574218, + "step": 35500 + }, + { + "epoch": 31.476885644768856, + "grad_norm": 0.45683449506759644, + "learning_rate": 3.4266578249336875e-05, + "loss": 0.7236460876464844, + "step": 35600 + }, + { + "epoch": 31.565361645653617, + "grad_norm": 0.4914647936820984, + "learning_rate": 3.422236958443855e-05, + "loss": 0.728529052734375, + "step": 35700 + }, + { + "epoch": 31.653837646538378, + "grad_norm": 0.439372718334198, + "learning_rate": 3.417816091954023e-05, + "loss": 0.7269135284423828, + "step": 35800 + }, + { + "epoch": 31.742313647423135, + "grad_norm": 0.488553911447525, + "learning_rate": 3.413395225464191e-05, + "loss": 0.7319352722167969, + "step": 35900 + }, + { + "epoch": 31.830789648307896, + "grad_norm": 0.43236035108566284, + "learning_rate": 3.408974358974359e-05, + "loss": 0.7336878204345703, + "step": 36000 + }, + { + "epoch": 31.919265649192656, + "grad_norm": 0.42669814825057983, + "learning_rate": 3.4045534924845274e-05, + "loss": 0.7357192993164062, + "step": 36100 + }, + { + "epoch": 32.007078080070784, + "grad_norm": 0.40464460849761963, + "learning_rate": 3.400132625994695e-05, + "loss": 0.7324215698242188, + "step": 36200 + }, + { + "epoch": 32.09555408095554, + "grad_norm": 0.4362545311450958, + "learning_rate": 3.3957117595048635e-05, + "loss": 0.6976793670654297, + "step": 36300 + }, + { + "epoch": 32.1840300818403, + "grad_norm": 0.46484723687171936, + "learning_rate": 3.391290893015031e-05, + "loss": 0.6972021484375, + "step": 36400 + }, + { + "epoch": 32.27250608272506, + "grad_norm": 0.43313083052635193, + "learning_rate": 3.386870026525199e-05, + "loss": 0.7049392700195313, + "step": 36500 + }, + { + "epoch": 32.36098208360982, + "grad_norm": 0.437752366065979, + "learning_rate": 3.3824491600353666e-05, + "loss": 0.7091526794433594, + "step": 36600 + }, + { + "epoch": 32.44945808449458, + "grad_norm": 0.44550085067749023, + "learning_rate": 3.378028293545535e-05, + "loss": 0.7121316528320313, + "step": 36700 + }, + { + "epoch": 32.53793408537934, + "grad_norm": 0.46052590012550354, + "learning_rate": 3.3736074270557034e-05, + "loss": 0.7150274658203125, + "step": 36800 + }, + { + "epoch": 32.6264100862641, + "grad_norm": 0.4344913065433502, + "learning_rate": 3.369186560565871e-05, + "loss": 0.7130059814453125, + "step": 36900 + }, + { + "epoch": 32.71488608714886, + "grad_norm": 0.45924630761146545, + "learning_rate": 3.364765694076039e-05, + "loss": 0.7156332397460937, + "step": 37000 + }, + { + "epoch": 32.80336208803362, + "grad_norm": 0.41177231073379517, + "learning_rate": 3.360344827586207e-05, + "loss": 0.7184346008300782, + "step": 37100 + }, + { + "epoch": 32.891838088918384, + "grad_norm": 0.44688835740089417, + "learning_rate": 3.355923961096375e-05, + "loss": 0.7201016235351563, + "step": 37200 + }, + { + "epoch": 32.980314089803144, + "grad_norm": 0.4971197545528412, + "learning_rate": 3.3515030946065426e-05, + "loss": 0.7191078186035156, + "step": 37300 + }, + { + "epoch": 33.06812652068127, + "grad_norm": 0.47201091051101685, + "learning_rate": 3.347126436781609e-05, + "loss": 0.6914530944824219, + "step": 37400 + }, + { + "epoch": 33.15660252156602, + "grad_norm": 0.4473711848258972, + "learning_rate": 3.342705570291777e-05, + "loss": 0.6855306243896484, + "step": 37500 + }, + { + "epoch": 33.24507852245078, + "grad_norm": 0.4745553135871887, + "learning_rate": 3.338284703801946e-05, + "loss": 0.6888325500488282, + "step": 37600 + }, + { + "epoch": 33.33355452333554, + "grad_norm": 0.45796144008636475, + "learning_rate": 3.3338638373121134e-05, + "loss": 0.6924916076660156, + "step": 37700 + }, + { + "epoch": 33.422030524220304, + "grad_norm": 0.47769099473953247, + "learning_rate": 3.329442970822281e-05, + "loss": 0.6937997436523438, + "step": 37800 + }, + { + "epoch": 33.510506525105065, + "grad_norm": 0.4637518525123596, + "learning_rate": 3.3250221043324495e-05, + "loss": 0.6975637817382813, + "step": 37900 + }, + { + "epoch": 33.598982525989825, + "grad_norm": 0.47370946407318115, + "learning_rate": 3.320601237842617e-05, + "loss": 0.6985407257080078, + "step": 38000 + }, + { + "epoch": 33.687458526874586, + "grad_norm": 0.467692106962204, + "learning_rate": 3.316180371352785e-05, + "loss": 0.7032517242431641, + "step": 38100 + }, + { + "epoch": 33.77593452775935, + "grad_norm": 0.4691486060619354, + "learning_rate": 3.311759504862953e-05, + "loss": 0.7019402313232422, + "step": 38200 + }, + { + "epoch": 33.86441052864411, + "grad_norm": 0.465666264295578, + "learning_rate": 3.307338638373122e-05, + "loss": 0.7065095520019531, + "step": 38300 + }, + { + "epoch": 33.95288652952887, + "grad_norm": 0.4870339632034302, + "learning_rate": 3.3029177718832894e-05, + "loss": 0.7060601043701172, + "step": 38400 + }, + { + "epoch": 34.04069896040699, + "grad_norm": 0.46102386713027954, + "learning_rate": 3.298496905393457e-05, + "loss": 0.6895645141601563, + "step": 38500 + }, + { + "epoch": 34.12917496129175, + "grad_norm": 0.4717739522457123, + "learning_rate": 3.2940760389036255e-05, + "loss": 0.6683721160888672, + "step": 38600 + }, + { + "epoch": 34.217650962176506, + "grad_norm": 0.47995516657829285, + "learning_rate": 3.289655172413793e-05, + "loss": 0.67727294921875, + "step": 38700 + }, + { + "epoch": 34.30612696306127, + "grad_norm": 0.4676993191242218, + "learning_rate": 3.2852343059239616e-05, + "loss": 0.6742596435546875, + "step": 38800 + }, + { + "epoch": 34.39460296394603, + "grad_norm": 0.4986591935157776, + "learning_rate": 3.280813439434129e-05, + "loss": 0.6811554718017578, + "step": 38900 + }, + { + "epoch": 34.48307896483079, + "grad_norm": 0.49108394980430603, + "learning_rate": 3.2763925729442977e-05, + "loss": 0.6826177215576172, + "step": 39000 + }, + { + "epoch": 34.57155496571555, + "grad_norm": 0.46544989943504333, + "learning_rate": 3.2719717064544654e-05, + "loss": 0.6843925476074219, + "step": 39100 + }, + { + "epoch": 34.66003096660031, + "grad_norm": 0.4714086055755615, + "learning_rate": 3.267550839964633e-05, + "loss": 0.6843089294433594, + "step": 39200 + }, + { + "epoch": 34.74850696748507, + "grad_norm": 0.4726520776748657, + "learning_rate": 3.263129973474801e-05, + "loss": 0.687828140258789, + "step": 39300 + }, + { + "epoch": 34.83698296836983, + "grad_norm": 0.5056101083755493, + "learning_rate": 3.258709106984969e-05, + "loss": 0.6943804168701172, + "step": 39400 + }, + { + "epoch": 34.92545896925459, + "grad_norm": 0.5143911242485046, + "learning_rate": 3.2542882404951375e-05, + "loss": 0.6947840118408203, + "step": 39500 + }, + { + "epoch": 35.013271400132716, + "grad_norm": 0.4712352752685547, + "learning_rate": 3.249867374005305e-05, + "loss": 0.6877326965332031, + "step": 39600 + }, + { + "epoch": 35.10174740101748, + "grad_norm": 0.5000380873680115, + "learning_rate": 3.2454465075154736e-05, + "loss": 0.6556487274169922, + "step": 39700 + }, + { + "epoch": 35.19022340190224, + "grad_norm": 0.5022478699684143, + "learning_rate": 3.2410256410256413e-05, + "loss": 0.6607290649414063, + "step": 39800 + }, + { + "epoch": 35.27869940278699, + "grad_norm": 0.511082112789154, + "learning_rate": 3.236604774535809e-05, + "loss": 0.6585157775878906, + "step": 39900 + }, + { + "epoch": 35.36717540367175, + "grad_norm": 0.45338326692581177, + "learning_rate": 3.232183908045977e-05, + "loss": 0.6670406341552735, + "step": 40000 + }, + { + "epoch": 35.45565140455651, + "grad_norm": 0.47589078545570374, + "learning_rate": 3.227763041556145e-05, + "loss": 0.6654150390625, + "step": 40100 + }, + { + "epoch": 35.54412740544127, + "grad_norm": 0.5111287236213684, + "learning_rate": 3.2233421750663135e-05, + "loss": 0.6706926727294922, + "step": 40200 + }, + { + "epoch": 35.632603406326034, + "grad_norm": 0.48615771532058716, + "learning_rate": 3.218921308576481e-05, + "loss": 0.6724550628662109, + "step": 40300 + }, + { + "epoch": 35.721079407210794, + "grad_norm": 0.5141739845275879, + "learning_rate": 3.214500442086649e-05, + "loss": 0.674487075805664, + "step": 40400 + }, + { + "epoch": 35.809555408095555, + "grad_norm": 0.512373149394989, + "learning_rate": 3.210079575596817e-05, + "loss": 0.6809010314941406, + "step": 40500 + }, + { + "epoch": 35.898031408980316, + "grad_norm": 0.5156219005584717, + "learning_rate": 3.205658709106985e-05, + "loss": 0.6783308410644531, + "step": 40600 + }, + { + "epoch": 35.98650740986508, + "grad_norm": 0.5266398191452026, + "learning_rate": 3.201237842617153e-05, + "loss": 0.6796981811523437, + "step": 40700 + }, + { + "epoch": 36.0743198407432, + "grad_norm": 0.5198646783828735, + "learning_rate": 3.196861184792219e-05, + "loss": 0.648563232421875, + "step": 40800 + }, + { + "epoch": 36.16279584162796, + "grad_norm": 0.4699224829673767, + "learning_rate": 3.1924403183023874e-05, + "loss": 0.6464600372314453, + "step": 40900 + }, + { + "epoch": 36.25127184251272, + "grad_norm": 0.5014195442199707, + "learning_rate": 3.188019451812556e-05, + "loss": 0.6471477508544922, + "step": 41000 + }, + { + "epoch": 36.339747843397475, + "grad_norm": 0.5231509804725647, + "learning_rate": 3.1835985853227235e-05, + "loss": 0.6519639587402344, + "step": 41100 + }, + { + "epoch": 36.428223844282236, + "grad_norm": 0.4843427538871765, + "learning_rate": 3.179177718832891e-05, + "loss": 0.6523241424560546, + "step": 41200 + }, + { + "epoch": 36.516699845167, + "grad_norm": 0.4956904351711273, + "learning_rate": 3.1747568523430596e-05, + "loss": 0.6547152709960937, + "step": 41300 + }, + { + "epoch": 36.60517584605176, + "grad_norm": 0.5103031396865845, + "learning_rate": 3.170335985853227e-05, + "loss": 0.6602716827392578, + "step": 41400 + }, + { + "epoch": 36.69365184693652, + "grad_norm": 0.5028578042984009, + "learning_rate": 3.165915119363395e-05, + "loss": 0.6617116546630859, + "step": 41500 + }, + { + "epoch": 36.78212784782128, + "grad_norm": 0.4997723698616028, + "learning_rate": 3.1614942528735634e-05, + "loss": 0.6632434844970703, + "step": 41600 + }, + { + "epoch": 36.87060384870604, + "grad_norm": 0.5246814489364624, + "learning_rate": 3.157073386383732e-05, + "loss": 0.6632743835449219, + "step": 41700 + }, + { + "epoch": 36.9590798495908, + "grad_norm": 0.5308569073677063, + "learning_rate": 3.1526525198938995e-05, + "loss": 0.6639631652832031, + "step": 41800 + }, + { + "epoch": 37.046892280468924, + "grad_norm": 0.49218234419822693, + "learning_rate": 3.148231653404067e-05, + "loss": 0.6452173614501953, + "step": 41900 + }, + { + "epoch": 37.135368281353685, + "grad_norm": 0.4680822491645813, + "learning_rate": 3.143810786914235e-05, + "loss": 0.6319191360473633, + "step": 42000 + }, + { + "epoch": 37.223844282238446, + "grad_norm": 0.4810407757759094, + "learning_rate": 3.139389920424403e-05, + "loss": 0.6338667297363281, + "step": 42100 + }, + { + "epoch": 37.3123202831232, + "grad_norm": 0.545889139175415, + "learning_rate": 3.134969053934571e-05, + "loss": 0.6395709228515625, + "step": 42200 + }, + { + "epoch": 37.40079628400796, + "grad_norm": 0.5600217580795288, + "learning_rate": 3.1305481874447394e-05, + "loss": 0.6406965637207032, + "step": 42300 + }, + { + "epoch": 37.48927228489272, + "grad_norm": 0.5517903566360474, + "learning_rate": 3.126127320954908e-05, + "loss": 0.6428462982177734, + "step": 42400 + }, + { + "epoch": 37.57774828577748, + "grad_norm": 0.49925389885902405, + "learning_rate": 3.1217064544650755e-05, + "loss": 0.6470170593261719, + "step": 42500 + }, + { + "epoch": 37.66622428666224, + "grad_norm": 0.4698370397090912, + "learning_rate": 3.117285587975243e-05, + "loss": 0.6477708435058593, + "step": 42600 + }, + { + "epoch": 37.754700287547, + "grad_norm": 0.5349763035774231, + "learning_rate": 3.112864721485411e-05, + "loss": 0.6515216827392578, + "step": 42700 + }, + { + "epoch": 37.84317628843176, + "grad_norm": 0.5066236853599548, + "learning_rate": 3.108443854995579e-05, + "loss": 0.6522242736816406, + "step": 42800 + }, + { + "epoch": 37.931652289316524, + "grad_norm": 0.5211920142173767, + "learning_rate": 3.104022988505747e-05, + "loss": 0.6515906524658203, + "step": 42900 + }, + { + "epoch": 38.01946472019465, + "grad_norm": 0.5003405213356018, + "learning_rate": 3.099646330680814e-05, + "loss": 0.6448411560058593, + "step": 43000 + }, + { + "epoch": 38.10794072107941, + "grad_norm": 0.5215827226638794, + "learning_rate": 3.095225464190982e-05, + "loss": 0.619310417175293, + "step": 43100 + }, + { + "epoch": 38.19641672196417, + "grad_norm": 0.4768511950969696, + "learning_rate": 3.0908045977011494e-05, + "loss": 0.6210311126708984, + "step": 43200 + }, + { + "epoch": 38.28489272284893, + "grad_norm": 0.5353608727455139, + "learning_rate": 3.086383731211318e-05, + "loss": 0.6246475601196289, + "step": 43300 + }, + { + "epoch": 38.373368723733684, + "grad_norm": 0.5182030200958252, + "learning_rate": 3.0819628647214855e-05, + "loss": 0.6273392486572266, + "step": 43400 + }, + { + "epoch": 38.461844724618445, + "grad_norm": 0.500842273235321, + "learning_rate": 3.077541998231653e-05, + "loss": 0.6327916717529297, + "step": 43500 + }, + { + "epoch": 38.550320725503205, + "grad_norm": 0.5168542861938477, + "learning_rate": 3.0731211317418216e-05, + "loss": 0.6323520278930664, + "step": 43600 + }, + { + "epoch": 38.638796726387966, + "grad_norm": 0.5403733253479004, + "learning_rate": 3.06870026525199e-05, + "loss": 0.6338058090209961, + "step": 43700 + }, + { + "epoch": 38.72727272727273, + "grad_norm": 0.5119574666023254, + "learning_rate": 3.064279398762158e-05, + "loss": 0.6391129302978515, + "step": 43800 + }, + { + "epoch": 38.81574872815749, + "grad_norm": 0.5214455127716064, + "learning_rate": 3.0598585322723254e-05, + "loss": 0.6368292999267579, + "step": 43900 + }, + { + "epoch": 38.90422472904225, + "grad_norm": 0.5679435133934021, + "learning_rate": 3.055437665782494e-05, + "loss": 0.6414280700683593, + "step": 44000 + }, + { + "epoch": 38.99270072992701, + "grad_norm": 0.5442212820053101, + "learning_rate": 3.0510167992926615e-05, + "loss": 0.6446417999267579, + "step": 44100 + }, + { + "epoch": 39.08051316080513, + "grad_norm": 0.46873417496681213, + "learning_rate": 3.0465959328028292e-05, + "loss": 0.6127575302124023, + "step": 44200 + }, + { + "epoch": 39.16898916168989, + "grad_norm": 0.5402541756629944, + "learning_rate": 3.042175066312998e-05, + "loss": 0.6059606552124024, + "step": 44300 + }, + { + "epoch": 39.257465162574654, + "grad_norm": 0.5081923007965088, + "learning_rate": 3.0377541998231656e-05, + "loss": 0.6121833038330078, + "step": 44400 + }, + { + "epoch": 39.345941163459415, + "grad_norm": 0.5688677430152893, + "learning_rate": 3.0333333333333337e-05, + "loss": 0.6163175964355468, + "step": 44500 + }, + { + "epoch": 39.43441716434417, + "grad_norm": 0.5273306965827942, + "learning_rate": 3.0289124668435014e-05, + "loss": 0.6198236465454101, + "step": 44600 + }, + { + "epoch": 39.52289316522893, + "grad_norm": 0.5107190608978271, + "learning_rate": 3.0244916003536694e-05, + "loss": 0.6242243576049805, + "step": 44700 + }, + { + "epoch": 39.61136916611369, + "grad_norm": 0.5110412240028381, + "learning_rate": 3.0200707338638375e-05, + "loss": 0.6227451705932617, + "step": 44800 + }, + { + "epoch": 39.69984516699845, + "grad_norm": 0.5370123982429504, + "learning_rate": 3.015649867374005e-05, + "loss": 0.6257634735107422, + "step": 44900 + }, + { + "epoch": 39.78832116788321, + "grad_norm": 0.5311342477798462, + "learning_rate": 3.0112290008841735e-05, + "loss": 0.6246538925170898, + "step": 45000 + }, + { + "epoch": 39.87679716876797, + "grad_norm": 0.5247089862823486, + "learning_rate": 3.0068081343943416e-05, + "loss": 0.6278446578979492, + "step": 45100 + }, + { + "epoch": 39.96527316965273, + "grad_norm": 0.5407604575157166, + "learning_rate": 3.0023872679045096e-05, + "loss": 0.6319368743896484, + "step": 45200 + }, + { + "epoch": 40.053085600530856, + "grad_norm": 0.49125176668167114, + "learning_rate": 2.9980106100795756e-05, + "loss": 0.608686294555664, + "step": 45300 + }, + { + "epoch": 40.14156160141562, + "grad_norm": 0.5193077325820923, + "learning_rate": 2.9935897435897437e-05, + "loss": 0.5979312515258789, + "step": 45400 + }, + { + "epoch": 40.23003760230038, + "grad_norm": 0.5521110892295837, + "learning_rate": 2.9891688770999117e-05, + "loss": 0.6026276016235351, + "step": 45500 + }, + { + "epoch": 40.31851360318514, + "grad_norm": 0.5131237506866455, + "learning_rate": 2.9847480106100794e-05, + "loss": 0.6056368637084961, + "step": 45600 + }, + { + "epoch": 40.4069896040699, + "grad_norm": 0.5547003149986267, + "learning_rate": 2.9803271441202478e-05, + "loss": 0.6073746490478515, + "step": 45700 + }, + { + "epoch": 40.49546560495465, + "grad_norm": 0.5059778690338135, + "learning_rate": 2.975906277630416e-05, + "loss": 0.6093035888671875, + "step": 45800 + }, + { + "epoch": 40.583941605839414, + "grad_norm": 0.5218088030815125, + "learning_rate": 2.971485411140584e-05, + "loss": 0.6098678970336914, + "step": 45900 + }, + { + "epoch": 40.672417606724174, + "grad_norm": 0.5111589431762695, + "learning_rate": 2.9670645446507516e-05, + "loss": 0.6144123458862305, + "step": 46000 + }, + { + "epoch": 40.760893607608935, + "grad_norm": 0.5875983238220215, + "learning_rate": 2.9626436781609196e-05, + "loss": 0.6149031448364258, + "step": 46100 + }, + { + "epoch": 40.849369608493696, + "grad_norm": 0.6077953577041626, + "learning_rate": 2.9582228116710873e-05, + "loss": 0.6200779724121094, + "step": 46200 + }, + { + "epoch": 40.937845609378456, + "grad_norm": 0.5511230230331421, + "learning_rate": 2.9538019451812554e-05, + "loss": 0.6175289916992187, + "step": 46300 + }, + { + "epoch": 41.02565804025658, + "grad_norm": 0.5434758067131042, + "learning_rate": 2.9493810786914238e-05, + "loss": 0.6117794418334961, + "step": 46400 + }, + { + "epoch": 41.11413404114134, + "grad_norm": 0.5463586449623108, + "learning_rate": 2.9449602122015918e-05, + "loss": 0.5865156936645508, + "step": 46500 + }, + { + "epoch": 41.2026100420261, + "grad_norm": 0.516645610332489, + "learning_rate": 2.94053934571176e-05, + "loss": 0.5934408950805664, + "step": 46600 + }, + { + "epoch": 41.29108604291086, + "grad_norm": 0.5041747093200684, + "learning_rate": 2.9361184792219276e-05, + "loss": 0.5907432556152343, + "step": 46700 + }, + { + "epoch": 41.37956204379562, + "grad_norm": 0.5490337014198303, + "learning_rate": 2.9316976127320956e-05, + "loss": 0.597823486328125, + "step": 46800 + }, + { + "epoch": 41.468038044680384, + "grad_norm": 0.5256726741790771, + "learning_rate": 2.9272767462422633e-05, + "loss": 0.5979599380493164, + "step": 46900 + }, + { + "epoch": 41.55651404556514, + "grad_norm": 0.49856510758399963, + "learning_rate": 2.9228558797524314e-05, + "loss": 0.6000013732910157, + "step": 47000 + }, + { + "epoch": 41.6449900464499, + "grad_norm": 0.540030837059021, + "learning_rate": 2.9184350132625998e-05, + "loss": 0.6044590759277344, + "step": 47100 + }, + { + "epoch": 41.73346604733466, + "grad_norm": 0.5599401593208313, + "learning_rate": 2.9140141467727678e-05, + "loss": 0.6050262451171875, + "step": 47200 + }, + { + "epoch": 41.82194204821942, + "grad_norm": 0.5251536965370178, + "learning_rate": 2.9095932802829355e-05, + "loss": 0.6084031677246093, + "step": 47300 + }, + { + "epoch": 41.91041804910418, + "grad_norm": 0.6002141237258911, + "learning_rate": 2.9051724137931036e-05, + "loss": 0.6051164627075195, + "step": 47400 + }, + { + "epoch": 41.99889404998894, + "grad_norm": 0.5603448748588562, + "learning_rate": 2.9007515473032716e-05, + "loss": 0.6085728073120117, + "step": 47500 + }, + { + "epoch": 42.086706480867065, + "grad_norm": 0.5491044521331787, + "learning_rate": 2.8963748894783376e-05, + "loss": 0.576365966796875, + "step": 47600 + }, + { + "epoch": 42.175182481751825, + "grad_norm": 0.5698864459991455, + "learning_rate": 2.8919540229885063e-05, + "loss": 0.5807184219360352, + "step": 47700 + }, + { + "epoch": 42.263658482636586, + "grad_norm": 0.574418306350708, + "learning_rate": 2.887533156498674e-05, + "loss": 0.5844138717651367, + "step": 47800 + }, + { + "epoch": 42.35213448352135, + "grad_norm": 0.5167635083198547, + "learning_rate": 2.883112290008842e-05, + "loss": 0.5845949935913086, + "step": 47900 + }, + { + "epoch": 42.44061048440611, + "grad_norm": 0.5338764786720276, + "learning_rate": 2.8786914235190098e-05, + "loss": 0.5889351272583008, + "step": 48000 + }, + { + "epoch": 42.52908648529087, + "grad_norm": 0.5340341329574585, + "learning_rate": 2.8742705570291778e-05, + "loss": 0.5909807205200195, + "step": 48100 + }, + { + "epoch": 42.61756248617562, + "grad_norm": 0.5493650436401367, + "learning_rate": 2.869849690539346e-05, + "loss": 0.5914651107788086, + "step": 48200 + }, + { + "epoch": 42.70603848706038, + "grad_norm": 0.6116383075714111, + "learning_rate": 2.8654288240495136e-05, + "loss": 0.592667350769043, + "step": 48300 + }, + { + "epoch": 42.79451448794514, + "grad_norm": 0.5631881356239319, + "learning_rate": 2.861007957559682e-05, + "loss": 0.5997231674194335, + "step": 48400 + }, + { + "epoch": 42.882990488829904, + "grad_norm": 0.5806667804718018, + "learning_rate": 2.85658709106985e-05, + "loss": 0.5957838439941406, + "step": 48500 + }, + { + "epoch": 42.971466489714665, + "grad_norm": 0.5075005888938904, + "learning_rate": 2.852166224580018e-05, + "loss": 0.5975283432006836, + "step": 48600 + }, + { + "epoch": 43.05927892059279, + "grad_norm": 0.5606797337532043, + "learning_rate": 2.8477453580901857e-05, + "loss": 0.5800529861450195, + "step": 48700 + }, + { + "epoch": 43.14775492147755, + "grad_norm": 0.5353171229362488, + "learning_rate": 2.8433244916003538e-05, + "loss": 0.5706613540649415, + "step": 48800 + }, + { + "epoch": 43.23623092236231, + "grad_norm": 0.5479321479797363, + "learning_rate": 2.8389036251105215e-05, + "loss": 0.5755366516113282, + "step": 48900 + }, + { + "epoch": 43.32470692324707, + "grad_norm": 0.5302407741546631, + "learning_rate": 2.8344827586206895e-05, + "loss": 0.5780391311645507, + "step": 49000 + }, + { + "epoch": 43.41318292413183, + "grad_norm": 0.5579783320426941, + "learning_rate": 2.830061892130858e-05, + "loss": 0.5774256896972656, + "step": 49100 + }, + { + "epoch": 43.50165892501659, + "grad_norm": 0.5295524597167969, + "learning_rate": 2.825641025641026e-05, + "loss": 0.5812548828125, + "step": 49200 + }, + { + "epoch": 43.59013492590135, + "grad_norm": 0.492058664560318, + "learning_rate": 2.821220159151194e-05, + "loss": 0.5796434783935547, + "step": 49300 + }, + { + "epoch": 43.67861092678611, + "grad_norm": 0.48961371183395386, + "learning_rate": 2.8167992926613617e-05, + "loss": 0.5851696014404297, + "step": 49400 + }, + { + "epoch": 43.76708692767087, + "grad_norm": 0.5714001059532166, + "learning_rate": 2.8123784261715298e-05, + "loss": 0.5890889358520508, + "step": 49500 + }, + { + "epoch": 43.85556292855563, + "grad_norm": 0.537390410900116, + "learning_rate": 2.8079575596816975e-05, + "loss": 0.5881150054931641, + "step": 49600 + }, + { + "epoch": 43.94403892944039, + "grad_norm": 0.5263146758079529, + "learning_rate": 2.8035366931918655e-05, + "loss": 0.5868202209472656, + "step": 49700 + }, + { + "epoch": 44.03185136031851, + "grad_norm": 0.5009394288063049, + "learning_rate": 2.7991600353669322e-05, + "loss": 0.578513412475586, + "step": 49800 + }, + { + "epoch": 44.12032736120327, + "grad_norm": 0.5233928561210632, + "learning_rate": 2.7947391688771002e-05, + "loss": 0.5612442016601562, + "step": 49900 + }, + { + "epoch": 44.208803362088034, + "grad_norm": 0.5212284922599792, + "learning_rate": 2.7903183023872683e-05, + "loss": 0.5634622955322266, + "step": 50000 + }, + { + "epoch": 44.297279362972795, + "grad_norm": 0.5920892357826233, + "learning_rate": 2.785897435897436e-05, + "loss": 0.5646255111694336, + "step": 50100 + }, + { + "epoch": 44.385755363857555, + "grad_norm": 0.5463851690292358, + "learning_rate": 2.781476569407604e-05, + "loss": 0.5711798477172851, + "step": 50200 + }, + { + "epoch": 44.474231364742316, + "grad_norm": 0.513917863368988, + "learning_rate": 2.7770557029177717e-05, + "loss": 0.5757728576660156, + "step": 50300 + }, + { + "epoch": 44.56270736562708, + "grad_norm": 0.5791277289390564, + "learning_rate": 2.7726348364279398e-05, + "loss": 0.5719475173950195, + "step": 50400 + }, + { + "epoch": 44.65118336651183, + "grad_norm": 0.5394783616065979, + "learning_rate": 2.768213969938108e-05, + "loss": 0.5751088714599609, + "step": 50500 + }, + { + "epoch": 44.73965936739659, + "grad_norm": 0.5699083805084229, + "learning_rate": 2.7637931034482762e-05, + "loss": 0.5771770095825195, + "step": 50600 + }, + { + "epoch": 44.82813536828135, + "grad_norm": 0.5610557794570923, + "learning_rate": 2.759372236958444e-05, + "loss": 0.5790963745117188, + "step": 50700 + }, + { + "epoch": 44.91661136916611, + "grad_norm": 0.5751321911811829, + "learning_rate": 2.754951370468612e-05, + "loss": 0.5781265258789062, + "step": 50800 + }, + { + "epoch": 45.004423800044236, + "grad_norm": 0.4831089377403259, + "learning_rate": 2.75053050397878e-05, + "loss": 0.5815114593505859, + "step": 50900 + }, + { + "epoch": 45.092899800929, + "grad_norm": 0.5138679146766663, + "learning_rate": 2.7461096374889477e-05, + "loss": 0.5530588912963867, + "step": 51000 + }, + { + "epoch": 45.18137580181376, + "grad_norm": 0.5327210426330566, + "learning_rate": 2.7416887709991158e-05, + "loss": 0.5549150085449219, + "step": 51100 + }, + { + "epoch": 45.26985180269852, + "grad_norm": 0.5089725255966187, + "learning_rate": 2.737267904509284e-05, + "loss": 0.5587585830688476, + "step": 51200 + }, + { + "epoch": 45.35832780358328, + "grad_norm": 0.5307016372680664, + "learning_rate": 2.7328470380194522e-05, + "loss": 0.5582825851440429, + "step": 51300 + }, + { + "epoch": 45.44680380446804, + "grad_norm": 0.6189883351325989, + "learning_rate": 2.72842617152962e-05, + "loss": 0.561285514831543, + "step": 51400 + }, + { + "epoch": 45.5352798053528, + "grad_norm": 0.5789527893066406, + "learning_rate": 2.724005305039788e-05, + "loss": 0.5647828674316406, + "step": 51500 + }, + { + "epoch": 45.62375580623756, + "grad_norm": 0.553713321685791, + "learning_rate": 2.719584438549956e-05, + "loss": 0.5659704208374023, + "step": 51600 + }, + { + "epoch": 45.712231807122315, + "grad_norm": 0.5502424240112305, + "learning_rate": 2.7151635720601237e-05, + "loss": 0.5685673522949218, + "step": 51700 + }, + { + "epoch": 45.800707808007076, + "grad_norm": 0.6388786435127258, + "learning_rate": 2.7107427055702917e-05, + "loss": 0.569713134765625, + "step": 51800 + }, + { + "epoch": 45.889183808891836, + "grad_norm": 0.5839136242866516, + "learning_rate": 2.70632183908046e-05, + "loss": 0.5713850784301758, + "step": 51900 + }, + { + "epoch": 45.9776598097766, + "grad_norm": 0.5872997641563416, + "learning_rate": 2.701900972590628e-05, + "loss": 0.5713462448120117, + "step": 52000 + }, + { + "epoch": 46.06547224065472, + "grad_norm": 0.5111995339393616, + "learning_rate": 2.697524314765694e-05, + "loss": 0.5514000701904297, + "step": 52100 + }, + { + "epoch": 46.15394824153948, + "grad_norm": 0.5677483677864075, + "learning_rate": 2.6931034482758622e-05, + "loss": 0.5458650207519531, + "step": 52200 + }, + { + "epoch": 46.24242424242424, + "grad_norm": 0.5756211876869202, + "learning_rate": 2.68868258178603e-05, + "loss": 0.5480696868896484, + "step": 52300 + }, + { + "epoch": 46.330900243309, + "grad_norm": 0.6053562164306641, + "learning_rate": 2.684261715296198e-05, + "loss": 0.5525957870483399, + "step": 52400 + }, + { + "epoch": 46.419376244193764, + "grad_norm": 0.5155165791511536, + "learning_rate": 2.6798408488063663e-05, + "loss": 0.5557857513427734, + "step": 52500 + }, + { + "epoch": 46.507852245078524, + "grad_norm": 0.5804229378700256, + "learning_rate": 2.6754199823165344e-05, + "loss": 0.5559201049804687, + "step": 52600 + }, + { + "epoch": 46.596328245963285, + "grad_norm": 0.5536544919013977, + "learning_rate": 2.6709991158267024e-05, + "loss": 0.5591853713989258, + "step": 52700 + }, + { + "epoch": 46.684804246848046, + "grad_norm": 0.603621244430542, + "learning_rate": 2.66657824933687e-05, + "loss": 0.5596856307983399, + "step": 52800 + }, + { + "epoch": 46.7732802477328, + "grad_norm": 0.5604232549667358, + "learning_rate": 2.662157382847038e-05, + "loss": 0.5584945678710938, + "step": 52900 + }, + { + "epoch": 46.86175624861756, + "grad_norm": 0.5974889993667603, + "learning_rate": 2.657736516357206e-05, + "loss": 0.5582848358154296, + "step": 53000 + }, + { + "epoch": 46.95023224950232, + "grad_norm": 0.5440397262573242, + "learning_rate": 2.653315649867374e-05, + "loss": 0.5634394454956054, + "step": 53100 + }, + { + "epoch": 47.038044680380445, + "grad_norm": 0.5610032081604004, + "learning_rate": 2.6488947833775423e-05, + "loss": 0.5574512481689453, + "step": 53200 + }, + { + "epoch": 47.126520681265205, + "grad_norm": 0.607563853263855, + "learning_rate": 2.6444739168877104e-05, + "loss": 0.5387821197509766, + "step": 53300 + }, + { + "epoch": 47.214996682149966, + "grad_norm": 0.5836204290390015, + "learning_rate": 2.640053050397878e-05, + "loss": 0.5401793670654297, + "step": 53400 + }, + { + "epoch": 47.30347268303473, + "grad_norm": 0.5325765013694763, + "learning_rate": 2.635632183908046e-05, + "loss": 0.5437668991088868, + "step": 53500 + }, + { + "epoch": 47.39194868391949, + "grad_norm": 0.5740872621536255, + "learning_rate": 2.631211317418214e-05, + "loss": 0.5443574142456055, + "step": 53600 + }, + { + "epoch": 47.48042468480425, + "grad_norm": 0.5562124848365784, + "learning_rate": 2.626790450928382e-05, + "loss": 0.5469727325439453, + "step": 53700 + }, + { + "epoch": 47.56890068568901, + "grad_norm": 0.5893000960350037, + "learning_rate": 2.62236958443855e-05, + "loss": 0.5502291107177735, + "step": 53800 + }, + { + "epoch": 47.65737668657377, + "grad_norm": 0.6538830995559692, + "learning_rate": 2.6179487179487183e-05, + "loss": 0.552915382385254, + "step": 53900 + }, + { + "epoch": 47.74585268745853, + "grad_norm": 0.5710316300392151, + "learning_rate": 2.6135278514588863e-05, + "loss": 0.5510491943359375, + "step": 54000 + }, + { + "epoch": 47.834328688343284, + "grad_norm": 0.5235297083854675, + "learning_rate": 2.609106984969054e-05, + "loss": 0.5519483184814453, + "step": 54100 + }, + { + "epoch": 47.922804689228045, + "grad_norm": 0.6048061847686768, + "learning_rate": 2.604686118479222e-05, + "loss": 0.5567644882202148, + "step": 54200 + }, + { + "epoch": 48.01061712010617, + "grad_norm": 0.5698108077049255, + "learning_rate": 2.6003094606542884e-05, + "loss": 0.5547234344482422, + "step": 54300 + }, + { + "epoch": 48.09909312099093, + "grad_norm": 0.49287617206573486, + "learning_rate": 2.595888594164456e-05, + "loss": 0.5280181884765625, + "step": 54400 + }, + { + "epoch": 48.18756912187569, + "grad_norm": 0.5525228977203369, + "learning_rate": 2.591467727674624e-05, + "loss": 0.5349401092529297, + "step": 54500 + }, + { + "epoch": 48.27604512276045, + "grad_norm": 0.5026161670684814, + "learning_rate": 2.5870468611847925e-05, + "loss": 0.5378446578979492, + "step": 54600 + }, + { + "epoch": 48.36452112364521, + "grad_norm": 0.5191828608512878, + "learning_rate": 2.5826259946949606e-05, + "loss": 0.5382429122924804, + "step": 54700 + }, + { + "epoch": 48.45299712452997, + "grad_norm": 0.5171953439712524, + "learning_rate": 2.5782051282051283e-05, + "loss": 0.5364204406738281, + "step": 54800 + }, + { + "epoch": 48.54147312541473, + "grad_norm": 0.5302397012710571, + "learning_rate": 2.5737842617152963e-05, + "loss": 0.5405542373657226, + "step": 54900 + }, + { + "epoch": 48.62994912629949, + "grad_norm": 0.5187925100326538, + "learning_rate": 2.569363395225464e-05, + "loss": 0.5436551284790039, + "step": 55000 + }, + { + "epoch": 48.718425127184254, + "grad_norm": 0.5707531571388245, + "learning_rate": 2.564942528735632e-05, + "loss": 0.5467363357543945, + "step": 55100 + }, + { + "epoch": 48.806901128069015, + "grad_norm": 0.5525254607200623, + "learning_rate": 2.5605216622458e-05, + "loss": 0.5466318130493164, + "step": 55200 + }, + { + "epoch": 48.89537712895377, + "grad_norm": 0.5896828174591064, + "learning_rate": 2.5561007957559685e-05, + "loss": 0.5489627075195312, + "step": 55300 + }, + { + "epoch": 48.98385312983853, + "grad_norm": 0.593329131603241, + "learning_rate": 2.5516799292661366e-05, + "loss": 0.5492449569702148, + "step": 55400 + }, + { + "epoch": 49.07166556071665, + "grad_norm": 0.45202845335006714, + "learning_rate": 2.5472590627763043e-05, + "loss": 0.5282985687255859, + "step": 55500 + }, + { + "epoch": 49.160141561601414, + "grad_norm": 0.45874515175819397, + "learning_rate": 2.5428381962864723e-05, + "loss": 0.5267356872558594, + "step": 55600 + }, + { + "epoch": 49.248617562486174, + "grad_norm": 0.5499678254127502, + "learning_rate": 2.53841732979664e-05, + "loss": 0.5255993270874023, + "step": 55700 + }, + { + "epoch": 49.337093563370935, + "grad_norm": 0.5569108724594116, + "learning_rate": 2.533996463306808e-05, + "loss": 0.5299503707885742, + "step": 55800 + }, + { + "epoch": 49.425569564255696, + "grad_norm": 0.5677438974380493, + "learning_rate": 2.529575596816976e-05, + "loss": 0.5316028594970703, + "step": 55900 + }, + { + "epoch": 49.51404556514046, + "grad_norm": 0.5888075828552246, + "learning_rate": 2.5251547303271445e-05, + "loss": 0.5354986953735351, + "step": 56000 + }, + { + "epoch": 49.60252156602522, + "grad_norm": 0.5639616250991821, + "learning_rate": 2.5207338638373122e-05, + "loss": 0.5369997787475586, + "step": 56100 + }, + { + "epoch": 49.69099756690998, + "grad_norm": 0.509158194065094, + "learning_rate": 2.5163129973474803e-05, + "loss": 0.536979866027832, + "step": 56200 + }, + { + "epoch": 49.77947356779474, + "grad_norm": 0.5412595868110657, + "learning_rate": 2.5118921308576483e-05, + "loss": 0.5382201004028321, + "step": 56300 + }, + { + "epoch": 49.86794956867949, + "grad_norm": 0.6052098274230957, + "learning_rate": 2.507471264367816e-05, + "loss": 0.5390504837036133, + "step": 56400 + }, + { + "epoch": 49.95642556956425, + "grad_norm": 0.5019105076789856, + "learning_rate": 2.503050397877984e-05, + "loss": 0.5391928482055665, + "step": 56500 + }, + { + "epoch": 50.04423800044238, + "grad_norm": 0.5133684873580933, + "learning_rate": 2.4986737400530504e-05, + "loss": 0.529360580444336, + "step": 56600 + }, + { + "epoch": 50.13271400132714, + "grad_norm": 0.5742220878601074, + "learning_rate": 2.4942528735632184e-05, + "loss": 0.5150651550292968, + "step": 56700 + }, + { + "epoch": 50.2211900022119, + "grad_norm": 0.5389617681503296, + "learning_rate": 2.4898320070733865e-05, + "loss": 0.5204330444335937, + "step": 56800 + }, + { + "epoch": 50.30966600309666, + "grad_norm": 0.5938611030578613, + "learning_rate": 2.4854111405835545e-05, + "loss": 0.5252494049072266, + "step": 56900 + }, + { + "epoch": 50.39814200398142, + "grad_norm": 0.5617892146110535, + "learning_rate": 2.4809902740937225e-05, + "loss": 0.5260490036010742, + "step": 57000 + }, + { + "epoch": 50.48661800486618, + "grad_norm": 0.6076000332832336, + "learning_rate": 2.4765694076038906e-05, + "loss": 0.5278256607055664, + "step": 57100 + }, + { + "epoch": 50.57509400575094, + "grad_norm": 0.5321983695030212, + "learning_rate": 2.4721485411140586e-05, + "loss": 0.5286510467529297, + "step": 57200 + }, + { + "epoch": 50.6635700066357, + "grad_norm": 0.614532470703125, + "learning_rate": 2.4677276746242263e-05, + "loss": 0.5313225936889648, + "step": 57300 + }, + { + "epoch": 50.75204600752046, + "grad_norm": 0.5830910801887512, + "learning_rate": 2.4633068081343944e-05, + "loss": 0.5300481796264649, + "step": 57400 + }, + { + "epoch": 50.84052200840522, + "grad_norm": 0.5918353199958801, + "learning_rate": 2.4588859416445624e-05, + "loss": 0.5337774276733398, + "step": 57500 + }, + { + "epoch": 50.92899800928998, + "grad_norm": 0.5791705846786499, + "learning_rate": 2.4544650751547305e-05, + "loss": 0.5316382598876953, + "step": 57600 + }, + { + "epoch": 51.01681044016811, + "grad_norm": 0.521299421787262, + "learning_rate": 2.4500442086648985e-05, + "loss": 0.5307102203369141, + "step": 57700 + }, + { + "epoch": 51.10528644105286, + "grad_norm": 0.5163324475288391, + "learning_rate": 2.4456233421750666e-05, + "loss": 0.5103409576416016, + "step": 57800 + }, + { + "epoch": 51.19376244193762, + "grad_norm": 0.5436499714851379, + "learning_rate": 2.4412024756852346e-05, + "loss": 0.5144682693481445, + "step": 57900 + }, + { + "epoch": 51.28223844282238, + "grad_norm": 0.5268517136573792, + "learning_rate": 2.4367816091954023e-05, + "loss": 0.5170879364013672, + "step": 58000 + }, + { + "epoch": 51.37071444370714, + "grad_norm": 0.5523056983947754, + "learning_rate": 2.4323607427055704e-05, + "loss": 0.5176148223876953, + "step": 58100 + }, + { + "epoch": 51.459190444591904, + "grad_norm": 0.5733488202095032, + "learning_rate": 2.4279398762157384e-05, + "loss": 0.5213256454467774, + "step": 58200 + }, + { + "epoch": 51.547666445476665, + "grad_norm": 0.6002511978149414, + "learning_rate": 2.4235190097259065e-05, + "loss": 0.5213332748413086, + "step": 58300 + }, + { + "epoch": 51.636142446361426, + "grad_norm": 0.5866407155990601, + "learning_rate": 2.4190981432360742e-05, + "loss": 0.5219316101074218, + "step": 58400 + }, + { + "epoch": 51.724618447246186, + "grad_norm": 0.620346188545227, + "learning_rate": 2.4146772767462426e-05, + "loss": 0.5251021575927735, + "step": 58500 + }, + { + "epoch": 51.81309444813095, + "grad_norm": 0.5428482294082642, + "learning_rate": 2.4102564102564103e-05, + "loss": 0.5254843521118164, + "step": 58600 + }, + { + "epoch": 51.90157044901571, + "grad_norm": 0.6146367192268372, + "learning_rate": 2.4058355437665783e-05, + "loss": 0.5262796401977539, + "step": 58700 + }, + { + "epoch": 51.99004644990046, + "grad_norm": 0.6002848148345947, + "learning_rate": 2.4014146772767464e-05, + "loss": 0.5279874801635742, + "step": 58800 + }, + { + "epoch": 52.07785888077859, + "grad_norm": 0.5608682036399841, + "learning_rate": 2.3970380194518127e-05, + "loss": 0.5045627975463867, + "step": 58900 + }, + { + "epoch": 52.166334881663346, + "grad_norm": 0.5034646391868591, + "learning_rate": 2.3926171529619807e-05, + "loss": 0.5071027755737305, + "step": 59000 + }, + { + "epoch": 52.25481088254811, + "grad_norm": 0.5443050861358643, + "learning_rate": 2.3881962864721484e-05, + "loss": 0.5105178451538086, + "step": 59100 + }, + { + "epoch": 52.34328688343287, + "grad_norm": 0.5455040335655212, + "learning_rate": 2.3837754199823168e-05, + "loss": 0.5111968612670899, + "step": 59200 + }, + { + "epoch": 52.43176288431763, + "grad_norm": 0.5393562912940979, + "learning_rate": 2.3793545534924845e-05, + "loss": 0.5109628295898437, + "step": 59300 + }, + { + "epoch": 52.52023888520239, + "grad_norm": 0.5572716593742371, + "learning_rate": 2.3749336870026526e-05, + "loss": 0.5128989791870118, + "step": 59400 + }, + { + "epoch": 52.60871488608715, + "grad_norm": 0.5157389640808105, + "learning_rate": 2.3705128205128206e-05, + "loss": 0.5179262924194336, + "step": 59500 + }, + { + "epoch": 52.69719088697191, + "grad_norm": 0.5245424509048462, + "learning_rate": 2.3660919540229886e-05, + "loss": 0.5182614517211914, + "step": 59600 + }, + { + "epoch": 52.78566688785667, + "grad_norm": 0.6405171155929565, + "learning_rate": 2.3616710875331567e-05, + "loss": 0.5196902084350586, + "step": 59700 + }, + { + "epoch": 52.87414288874143, + "grad_norm": 0.5531449317932129, + "learning_rate": 2.3572502210433244e-05, + "loss": 0.5213772583007813, + "step": 59800 + }, + { + "epoch": 52.96261888962619, + "grad_norm": 0.5440499186515808, + "learning_rate": 2.3528293545534928e-05, + "loss": 0.5214180755615234, + "step": 59900 + }, + { + "epoch": 53.050431320504316, + "grad_norm": 0.5454942584037781, + "learning_rate": 2.3484084880636605e-05, + "loss": 0.5082747268676758, + "step": 60000 + }, + { + "epoch": 53.13890732138907, + "grad_norm": 0.6037677526473999, + "learning_rate": 2.3439876215738285e-05, + "loss": 0.4992447662353516, + "step": 60100 + }, + { + "epoch": 53.22738332227383, + "grad_norm": 0.6089978218078613, + "learning_rate": 2.3395667550839966e-05, + "loss": 0.501078987121582, + "step": 60200 + }, + { + "epoch": 53.31585932315859, + "grad_norm": 0.5581852793693542, + "learning_rate": 2.3351458885941646e-05, + "loss": 0.50614990234375, + "step": 60300 + }, + { + "epoch": 53.40433532404335, + "grad_norm": 0.5539824366569519, + "learning_rate": 2.3307250221043327e-05, + "loss": 0.5036640548706055, + "step": 60400 + }, + { + "epoch": 53.49281132492811, + "grad_norm": 0.5434619784355164, + "learning_rate": 2.3263041556145004e-05, + "loss": 0.5078977966308593, + "step": 60500 + }, + { + "epoch": 53.58128732581287, + "grad_norm": 0.5596204400062561, + "learning_rate": 2.3218832891246688e-05, + "loss": 0.5105896377563477, + "step": 60600 + }, + { + "epoch": 53.669763326697634, + "grad_norm": 0.5933516621589661, + "learning_rate": 2.3174624226348365e-05, + "loss": 0.512298583984375, + "step": 60700 + }, + { + "epoch": 53.758239327582395, + "grad_norm": 0.5938782095909119, + "learning_rate": 2.3130415561450045e-05, + "loss": 0.5136246871948242, + "step": 60800 + }, + { + "epoch": 53.846715328467155, + "grad_norm": 0.5711195468902588, + "learning_rate": 2.3086206896551726e-05, + "loss": 0.5137527465820313, + "step": 60900 + }, + { + "epoch": 53.935191329351916, + "grad_norm": 0.5345974564552307, + "learning_rate": 2.3041998231653406e-05, + "loss": 0.5148337173461914, + "step": 61000 + }, + { + "epoch": 54.02300376023004, + "grad_norm": 0.5462290644645691, + "learning_rate": 2.299823165340407e-05, + "loss": 0.5070685577392579, + "step": 61100 + }, + { + "epoch": 54.1114797611148, + "grad_norm": 0.5135403275489807, + "learning_rate": 2.295402298850575e-05, + "loss": 0.49042961120605466, + "step": 61200 + }, + { + "epoch": 54.199955761999554, + "grad_norm": 0.5753411650657654, + "learning_rate": 2.290981432360743e-05, + "loss": 0.49762104034423826, + "step": 61300 + }, + { + "epoch": 54.288431762884315, + "grad_norm": 0.5738378167152405, + "learning_rate": 2.2865605658709107e-05, + "loss": 0.4983011245727539, + "step": 61400 + }, + { + "epoch": 54.376907763769076, + "grad_norm": 0.5234966278076172, + "learning_rate": 2.2821396993810788e-05, + "loss": 0.5005590057373047, + "step": 61500 + }, + { + "epoch": 54.465383764653836, + "grad_norm": 0.5313852429389954, + "learning_rate": 2.2777188328912468e-05, + "loss": 0.503372917175293, + "step": 61600 + }, + { + "epoch": 54.5538597655386, + "grad_norm": 0.49838191270828247, + "learning_rate": 2.273297966401415e-05, + "loss": 0.5020324325561524, + "step": 61700 + }, + { + "epoch": 54.64233576642336, + "grad_norm": 0.5403088927268982, + "learning_rate": 2.2688770999115826e-05, + "loss": 0.5049329376220704, + "step": 61800 + }, + { + "epoch": 54.73081176730812, + "grad_norm": 0.46723249554634094, + "learning_rate": 2.264456233421751e-05, + "loss": 0.5059401321411133, + "step": 61900 + }, + { + "epoch": 54.81928776819288, + "grad_norm": 0.5539482235908508, + "learning_rate": 2.2600353669319187e-05, + "loss": 0.5069823837280274, + "step": 62000 + }, + { + "epoch": 54.90776376907764, + "grad_norm": 0.5377270579338074, + "learning_rate": 2.2556145004420867e-05, + "loss": 0.508377685546875, + "step": 62100 + }, + { + "epoch": 54.9962397699624, + "grad_norm": 0.6182072162628174, + "learning_rate": 2.2511936339522548e-05, + "loss": 0.5095947647094726, + "step": 62200 + }, + { + "epoch": 55.084052200840524, + "grad_norm": 0.5139372944831848, + "learning_rate": 2.2467727674624228e-05, + "loss": 0.4896272277832031, + "step": 62300 + }, + { + "epoch": 55.172528201725285, + "grad_norm": 0.5812121629714966, + "learning_rate": 2.242351900972591e-05, + "loss": 0.49099037170410154, + "step": 62400 + }, + { + "epoch": 55.26100420261004, + "grad_norm": 0.5491729378700256, + "learning_rate": 2.2379310344827586e-05, + "loss": 0.4927267074584961, + "step": 62500 + }, + { + "epoch": 55.3494802034948, + "grad_norm": 0.5951135158538818, + "learning_rate": 2.233510167992927e-05, + "loss": 0.49305023193359376, + "step": 62600 + }, + { + "epoch": 55.43795620437956, + "grad_norm": 0.5938172340393066, + "learning_rate": 2.2290893015030946e-05, + "loss": 0.49482032775878904, + "step": 62700 + }, + { + "epoch": 55.52643220526432, + "grad_norm": 0.5288723111152649, + "learning_rate": 2.2246684350132627e-05, + "loss": 0.4974822998046875, + "step": 62800 + }, + { + "epoch": 55.61490820614908, + "grad_norm": 0.5663400888442993, + "learning_rate": 2.2202475685234307e-05, + "loss": 0.498828239440918, + "step": 62900 + }, + { + "epoch": 55.70338420703384, + "grad_norm": 0.5939375162124634, + "learning_rate": 2.2158267020335988e-05, + "loss": 0.5004440307617187, + "step": 63000 + }, + { + "epoch": 55.7918602079186, + "grad_norm": 0.628774106502533, + "learning_rate": 2.2114058355437668e-05, + "loss": 0.5034025573730468, + "step": 63100 + }, + { + "epoch": 55.880336208803364, + "grad_norm": 0.6160352826118469, + "learning_rate": 2.2069849690539345e-05, + "loss": 0.5042695236206055, + "step": 63200 + }, + { + "epoch": 55.968812209688124, + "grad_norm": 0.5891813635826111, + "learning_rate": 2.202564102564103e-05, + "loss": 0.5021416473388672, + "step": 63300 + }, + { + "epoch": 56.05662464056625, + "grad_norm": 0.5297622680664062, + "learning_rate": 2.198187444739169e-05, + "loss": 0.4904953384399414, + "step": 63400 + }, + { + "epoch": 56.14510064145101, + "grad_norm": 0.5649422407150269, + "learning_rate": 2.193766578249337e-05, + "loss": 0.485706672668457, + "step": 63500 + }, + { + "epoch": 56.23357664233577, + "grad_norm": 0.6352797150611877, + "learning_rate": 2.189345711759505e-05, + "loss": 0.4867672348022461, + "step": 63600 + }, + { + "epoch": 56.32205264322052, + "grad_norm": 0.5789678692817688, + "learning_rate": 2.184924845269673e-05, + "loss": 0.48802379608154295, + "step": 63700 + }, + { + "epoch": 56.410528644105284, + "grad_norm": 0.6075431704521179, + "learning_rate": 2.180503978779841e-05, + "loss": 0.4910835647583008, + "step": 63800 + }, + { + "epoch": 56.499004644990045, + "grad_norm": 0.5858777165412903, + "learning_rate": 2.1760831122900088e-05, + "loss": 0.4906935119628906, + "step": 63900 + }, + { + "epoch": 56.587480645874805, + "grad_norm": 0.5143148899078369, + "learning_rate": 2.171662245800177e-05, + "loss": 0.49202545166015627, + "step": 64000 + }, + { + "epoch": 56.675956646759566, + "grad_norm": 0.5330872535705566, + "learning_rate": 2.167241379310345e-05, + "loss": 0.4929664611816406, + "step": 64100 + }, + { + "epoch": 56.76443264764433, + "grad_norm": 0.5530017018318176, + "learning_rate": 2.162820512820513e-05, + "loss": 0.49355899810791015, + "step": 64200 + }, + { + "epoch": 56.85290864852909, + "grad_norm": 0.5891992449760437, + "learning_rate": 2.158399646330681e-05, + "loss": 0.49566749572753904, + "step": 64300 + }, + { + "epoch": 56.94138464941385, + "grad_norm": 0.5289095044136047, + "learning_rate": 2.153978779840849e-05, + "loss": 0.4987163543701172, + "step": 64400 + }, + { + "epoch": 57.02919708029197, + "grad_norm": 0.5679471492767334, + "learning_rate": 2.1495579133510167e-05, + "loss": 0.49003833770751953, + "step": 64500 + }, + { + "epoch": 57.11767308117673, + "grad_norm": 0.5432245135307312, + "learning_rate": 2.1451370468611848e-05, + "loss": 0.47765895843505857, + "step": 64600 + }, + { + "epoch": 57.20614908206149, + "grad_norm": 0.5474491119384766, + "learning_rate": 2.1407161803713528e-05, + "loss": 0.4797785568237305, + "step": 64700 + }, + { + "epoch": 57.294625082946254, + "grad_norm": 0.537804126739502, + "learning_rate": 2.136295313881521e-05, + "loss": 0.4833247756958008, + "step": 64800 + }, + { + "epoch": 57.38310108383101, + "grad_norm": 0.572169840335846, + "learning_rate": 2.131874447391689e-05, + "loss": 0.4836674118041992, + "step": 64900 + }, + { + "epoch": 57.47157708471577, + "grad_norm": 0.5344268679618835, + "learning_rate": 2.127453580901857e-05, + "loss": 0.48507492065429686, + "step": 65000 + }, + { + "epoch": 57.56005308560053, + "grad_norm": 0.5664619207382202, + "learning_rate": 2.123032714412025e-05, + "loss": 0.488138427734375, + "step": 65100 + }, + { + "epoch": 57.64852908648529, + "grad_norm": 0.5902144312858582, + "learning_rate": 2.1186118479221927e-05, + "loss": 0.48771110534667966, + "step": 65200 + }, + { + "epoch": 57.73700508737005, + "grad_norm": 0.562929630279541, + "learning_rate": 2.1141909814323607e-05, + "loss": 0.4875301742553711, + "step": 65300 + }, + { + "epoch": 57.82548108825481, + "grad_norm": 0.5995573997497559, + "learning_rate": 2.1097701149425288e-05, + "loss": 0.49271678924560547, + "step": 65400 + }, + { + "epoch": 57.91395708913957, + "grad_norm": 0.6624785661697388, + "learning_rate": 2.105349248452697e-05, + "loss": 0.4920695877075195, + "step": 65500 + }, + { + "epoch": 58.001769520017696, + "grad_norm": 0.5402753353118896, + "learning_rate": 2.100928381962865e-05, + "loss": 0.49431739807128905, + "step": 65600 + }, + { + "epoch": 58.09024552090246, + "grad_norm": 0.5145826935768127, + "learning_rate": 2.096507515473033e-05, + "loss": 0.47089763641357424, + "step": 65700 + }, + { + "epoch": 58.17872152178722, + "grad_norm": 0.5931445360183716, + "learning_rate": 2.092086648983201e-05, + "loss": 0.4758612060546875, + "step": 65800 + }, + { + "epoch": 58.26719752267198, + "grad_norm": 0.5388639569282532, + "learning_rate": 2.0876657824933687e-05, + "loss": 0.47640296936035154, + "step": 65900 + }, + { + "epoch": 58.35567352355674, + "grad_norm": 0.5639314651489258, + "learning_rate": 2.0832449160035367e-05, + "loss": 0.482130241394043, + "step": 66000 + }, + { + "epoch": 58.44414952444149, + "grad_norm": 0.5535529851913452, + "learning_rate": 2.0788240495137048e-05, + "loss": 0.47872936248779296, + "step": 66100 + }, + { + "epoch": 58.53262552532625, + "grad_norm": 0.5827674865722656, + "learning_rate": 2.0744031830238728e-05, + "loss": 0.4842064666748047, + "step": 66200 + }, + { + "epoch": 58.621101526211014, + "grad_norm": 0.5696784257888794, + "learning_rate": 2.0699823165340405e-05, + "loss": 0.4816234588623047, + "step": 66300 + }, + { + "epoch": 58.709577527095774, + "grad_norm": 0.5349422097206116, + "learning_rate": 2.065561450044209e-05, + "loss": 0.48554718017578125, + "step": 66400 + }, + { + "epoch": 58.798053527980535, + "grad_norm": 0.636604368686676, + "learning_rate": 2.0611405835543766e-05, + "loss": 0.4876006317138672, + "step": 66500 + }, + { + "epoch": 58.886529528865296, + "grad_norm": 0.6060304045677185, + "learning_rate": 2.0567197170645447e-05, + "loss": 0.4887725830078125, + "step": 66600 + }, + { + "epoch": 58.97500552975006, + "grad_norm": 0.6087244749069214, + "learning_rate": 2.0522988505747127e-05, + "loss": 0.4868877410888672, + "step": 66700 + }, + { + "epoch": 59.06281796062818, + "grad_norm": 0.49913933873176575, + "learning_rate": 2.047922192749779e-05, + "loss": 0.4722119140625, + "step": 66800 + }, + { + "epoch": 59.15129396151294, + "grad_norm": 0.4722621738910675, + "learning_rate": 2.043501326259947e-05, + "loss": 0.47009246826171874, + "step": 66900 + }, + { + "epoch": 59.2397699623977, + "grad_norm": 0.5657719373703003, + "learning_rate": 2.0390804597701148e-05, + "loss": 0.472298583984375, + "step": 67000 + }, + { + "epoch": 59.32824596328246, + "grad_norm": 0.5761541724205017, + "learning_rate": 2.034659593280283e-05, + "loss": 0.4723761749267578, + "step": 67100 + }, + { + "epoch": 59.416721964167216, + "grad_norm": 0.6316192150115967, + "learning_rate": 2.030238726790451e-05, + "loss": 0.47409954071044924, + "step": 67200 + }, + { + "epoch": 59.50519796505198, + "grad_norm": 0.6090986132621765, + "learning_rate": 2.025817860300619e-05, + "loss": 0.4764304351806641, + "step": 67300 + }, + { + "epoch": 59.59367396593674, + "grad_norm": 0.5362303256988525, + "learning_rate": 2.021396993810787e-05, + "loss": 0.4776358795166016, + "step": 67400 + }, + { + "epoch": 59.6821499668215, + "grad_norm": 0.553995668888092, + "learning_rate": 2.016976127320955e-05, + "loss": 0.4807791519165039, + "step": 67500 + }, + { + "epoch": 59.77062596770626, + "grad_norm": 0.5615981221199036, + "learning_rate": 2.012555260831123e-05, + "loss": 0.48062610626220703, + "step": 67600 + }, + { + "epoch": 59.85910196859102, + "grad_norm": 0.5885509252548218, + "learning_rate": 2.0081343943412908e-05, + "loss": 0.48244945526123045, + "step": 67700 + }, + { + "epoch": 59.94757796947578, + "grad_norm": 0.6052979230880737, + "learning_rate": 2.003713527851459e-05, + "loss": 0.4803206634521484, + "step": 67800 + }, + { + "epoch": 60.035390400353904, + "grad_norm": 0.5579769015312195, + "learning_rate": 1.999292661361627e-05, + "loss": 0.4752388000488281, + "step": 67900 + }, + { + "epoch": 60.123866401238665, + "grad_norm": 0.478289395570755, + "learning_rate": 1.994871794871795e-05, + "loss": 0.4645302200317383, + "step": 68000 + }, + { + "epoch": 60.212342402123426, + "grad_norm": 0.5545957088470459, + "learning_rate": 1.990450928381963e-05, + "loss": 0.46837158203125, + "step": 68100 + }, + { + "epoch": 60.300818403008186, + "grad_norm": 0.524662435054779, + "learning_rate": 1.986030061892131e-05, + "loss": 0.4679202651977539, + "step": 68200 + }, + { + "epoch": 60.38929440389295, + "grad_norm": 0.6101793646812439, + "learning_rate": 1.981609195402299e-05, + "loss": 0.46956668853759764, + "step": 68300 + }, + { + "epoch": 60.4777704047777, + "grad_norm": 0.5040204524993896, + "learning_rate": 1.9771883289124667e-05, + "loss": 0.4706681060791016, + "step": 68400 + }, + { + "epoch": 60.56624640566246, + "grad_norm": 0.563679039478302, + "learning_rate": 1.972767462422635e-05, + "loss": 0.471558837890625, + "step": 68500 + }, + { + "epoch": 60.65472240654722, + "grad_norm": 0.5668439865112305, + "learning_rate": 1.9683465959328028e-05, + "loss": 0.4727770233154297, + "step": 68600 + }, + { + "epoch": 60.74319840743198, + "grad_norm": 0.6011987328529358, + "learning_rate": 1.963925729442971e-05, + "loss": 0.47645427703857424, + "step": 68700 + }, + { + "epoch": 60.83167440831674, + "grad_norm": 0.6392132043838501, + "learning_rate": 1.959504862953139e-05, + "loss": 0.4765947341918945, + "step": 68800 + }, + { + "epoch": 60.920150409201504, + "grad_norm": 0.6424957513809204, + "learning_rate": 1.955083996463307e-05, + "loss": 0.4768808746337891, + "step": 68900 + }, + { + "epoch": 61.00796284007963, + "grad_norm": 0.5341200828552246, + "learning_rate": 1.9507073386383733e-05, + "loss": 0.4776120376586914, + "step": 69000 + }, + { + "epoch": 61.09643884096439, + "grad_norm": 0.622922956943512, + "learning_rate": 1.9462864721485413e-05, + "loss": 0.46137203216552736, + "step": 69100 + }, + { + "epoch": 61.18491484184915, + "grad_norm": 0.5679436326026917, + "learning_rate": 1.9418656056587094e-05, + "loss": 0.46096920013427733, + "step": 69200 + }, + { + "epoch": 61.27339084273391, + "grad_norm": 0.5972808003425598, + "learning_rate": 1.937444739168877e-05, + "loss": 0.46090087890625, + "step": 69300 + }, + { + "epoch": 61.36186684361867, + "grad_norm": 0.5825915336608887, + "learning_rate": 1.933023872679045e-05, + "loss": 0.46518352508544925, + "step": 69400 + }, + { + "epoch": 61.45034284450343, + "grad_norm": 0.48754116892814636, + "learning_rate": 1.9286030061892132e-05, + "loss": 0.4664886856079102, + "step": 69500 + }, + { + "epoch": 61.538818845388185, + "grad_norm": 0.5583191514015198, + "learning_rate": 1.9241821396993812e-05, + "loss": 0.46886295318603516, + "step": 69600 + }, + { + "epoch": 61.627294846272946, + "grad_norm": 0.5658340454101562, + "learning_rate": 1.919761273209549e-05, + "loss": 0.4696169662475586, + "step": 69700 + }, + { + "epoch": 61.71577084715771, + "grad_norm": 0.5801714658737183, + "learning_rate": 1.9153404067197173e-05, + "loss": 0.47141036987304685, + "step": 69800 + }, + { + "epoch": 61.80424684804247, + "grad_norm": 0.5643869042396545, + "learning_rate": 1.910919540229885e-05, + "loss": 0.4727308654785156, + "step": 69900 + }, + { + "epoch": 61.89272284892723, + "grad_norm": 0.5937660336494446, + "learning_rate": 1.906498673740053e-05, + "loss": 0.4726886367797852, + "step": 70000 + }, + { + "epoch": 61.98119884981199, + "grad_norm": 0.5228411555290222, + "learning_rate": 1.902077807250221e-05, + "loss": 0.47457176208496094, + "step": 70100 + }, + { + "epoch": 62.06901128069011, + "grad_norm": 0.5100186467170715, + "learning_rate": 1.897656940760389e-05, + "loss": 0.4604149627685547, + "step": 70200 + }, + { + "epoch": 62.15748728157487, + "grad_norm": 0.5119529962539673, + "learning_rate": 1.8932360742705572e-05, + "loss": 0.4561204147338867, + "step": 70300 + }, + { + "epoch": 62.245963282459634, + "grad_norm": 0.5130912065505981, + "learning_rate": 1.888815207780725e-05, + "loss": 0.4596226501464844, + "step": 70400 + }, + { + "epoch": 62.334439283344395, + "grad_norm": 0.5388224720954895, + "learning_rate": 1.8843943412908933e-05, + "loss": 0.4617993927001953, + "step": 70500 + }, + { + "epoch": 62.422915284229155, + "grad_norm": 0.5555194020271301, + "learning_rate": 1.879973474801061e-05, + "loss": 0.46267467498779297, + "step": 70600 + }, + { + "epoch": 62.511391285113916, + "grad_norm": 0.5136281847953796, + "learning_rate": 1.875552608311229e-05, + "loss": 0.4628156280517578, + "step": 70700 + }, + { + "epoch": 62.59986728599867, + "grad_norm": 0.5039867162704468, + "learning_rate": 1.871131741821397e-05, + "loss": 0.4678297805786133, + "step": 70800 + }, + { + "epoch": 62.68834328688343, + "grad_norm": 0.566985547542572, + "learning_rate": 1.866710875331565e-05, + "loss": 0.46522830963134765, + "step": 70900 + }, + { + "epoch": 62.77681928776819, + "grad_norm": 0.5855474472045898, + "learning_rate": 1.8622900088417332e-05, + "loss": 0.46788333892822265, + "step": 71000 + }, + { + "epoch": 62.86529528865295, + "grad_norm": 0.5838083624839783, + "learning_rate": 1.857869142351901e-05, + "loss": 0.4687856292724609, + "step": 71100 + }, + { + "epoch": 62.95377128953771, + "grad_norm": 0.6574355363845825, + "learning_rate": 1.8534482758620693e-05, + "loss": 0.46836143493652344, + "step": 71200 + }, + { + "epoch": 63.04158372041584, + "grad_norm": 0.5751773118972778, + "learning_rate": 1.849027409372237e-05, + "loss": 0.4590755844116211, + "step": 71300 + }, + { + "epoch": 63.1300597213006, + "grad_norm": 0.5056807398796082, + "learning_rate": 1.844606542882405e-05, + "loss": 0.45313865661621094, + "step": 71400 + }, + { + "epoch": 63.21853572218536, + "grad_norm": 0.5403828024864197, + "learning_rate": 1.840185676392573e-05, + "loss": 0.4552134323120117, + "step": 71500 + }, + { + "epoch": 63.30701172307012, + "grad_norm": 0.48244568705558777, + "learning_rate": 1.835764809902741e-05, + "loss": 0.45661014556884766, + "step": 71600 + }, + { + "epoch": 63.39548772395488, + "grad_norm": 0.5753127932548523, + "learning_rate": 1.831343943412909e-05, + "loss": 0.4578168487548828, + "step": 71700 + }, + { + "epoch": 63.48396372483964, + "grad_norm": 0.5782042741775513, + "learning_rate": 1.826923076923077e-05, + "loss": 0.4589107131958008, + "step": 71800 + }, + { + "epoch": 63.5724397257244, + "grad_norm": 0.5895569920539856, + "learning_rate": 1.8225022104332453e-05, + "loss": 0.46304950714111326, + "step": 71900 + }, + { + "epoch": 63.660915726609154, + "grad_norm": 0.6601688265800476, + "learning_rate": 1.818081343943413e-05, + "loss": 0.45953712463378904, + "step": 72000 + }, + { + "epoch": 63.749391727493915, + "grad_norm": 0.5695818066596985, + "learning_rate": 1.813660477453581e-05, + "loss": 0.46058246612548825, + "step": 72100 + }, + { + "epoch": 63.837867728378676, + "grad_norm": 0.5006322264671326, + "learning_rate": 1.809239610963749e-05, + "loss": 0.4630731964111328, + "step": 72200 + }, + { + "epoch": 63.926343729263436, + "grad_norm": 0.5871863961219788, + "learning_rate": 1.804818744473917e-05, + "loss": 0.46295913696289065, + "step": 72300 + }, + { + "epoch": 64.01415616014157, + "grad_norm": 0.5417830348014832, + "learning_rate": 1.8003978779840848e-05, + "loss": 0.4623433303833008, + "step": 72400 + }, + { + "epoch": 64.10263216102632, + "grad_norm": 0.5019242763519287, + "learning_rate": 1.795977011494253e-05, + "loss": 0.44698051452636717, + "step": 72500 + }, + { + "epoch": 64.19110816191107, + "grad_norm": 0.5637330412864685, + "learning_rate": 1.791556145004421e-05, + "loss": 0.4492236328125, + "step": 72600 + }, + { + "epoch": 64.27958416279584, + "grad_norm": 0.5333090424537659, + "learning_rate": 1.787135278514589e-05, + "loss": 0.45192584991455076, + "step": 72700 + }, + { + "epoch": 64.3680601636806, + "grad_norm": 0.5232571363449097, + "learning_rate": 1.782714412024757e-05, + "loss": 0.45244823455810546, + "step": 72800 + }, + { + "epoch": 64.45653616456536, + "grad_norm": 0.4935717284679413, + "learning_rate": 1.778293545534925e-05, + "loss": 0.4529353332519531, + "step": 72900 + }, + { + "epoch": 64.54501216545012, + "grad_norm": 0.5450688600540161, + "learning_rate": 1.7739168877099913e-05, + "loss": 0.4567538833618164, + "step": 73000 + }, + { + "epoch": 64.63348816633489, + "grad_norm": 0.47621846199035645, + "learning_rate": 1.769496021220159e-05, + "loss": 0.4563169097900391, + "step": 73100 + }, + { + "epoch": 64.72196416721964, + "grad_norm": 0.5023945569992065, + "learning_rate": 1.7650751547303274e-05, + "loss": 0.46204959869384765, + "step": 73200 + }, + { + "epoch": 64.8104401681044, + "grad_norm": 0.49148306250572205, + "learning_rate": 1.760654288240495e-05, + "loss": 0.45924064636230466, + "step": 73300 + }, + { + "epoch": 64.89891616898916, + "grad_norm": 0.6161800026893616, + "learning_rate": 1.7562334217506632e-05, + "loss": 0.45994918823242187, + "step": 73400 + }, + { + "epoch": 64.98739216987393, + "grad_norm": 0.5307760238647461, + "learning_rate": 1.7518125552608312e-05, + "loss": 0.461478271484375, + "step": 73500 + }, + { + "epoch": 65.07520460075204, + "grad_norm": 0.588062584400177, + "learning_rate": 1.7474358974358976e-05, + "loss": 0.4461378479003906, + "step": 73600 + }, + { + "epoch": 65.16368060163681, + "grad_norm": 0.5329079627990723, + "learning_rate": 1.7430150309460656e-05, + "loss": 0.4440943145751953, + "step": 73700 + }, + { + "epoch": 65.25215660252157, + "grad_norm": 0.6149891018867493, + "learning_rate": 1.7385941644562333e-05, + "loss": 0.44721881866455077, + "step": 73800 + }, + { + "epoch": 65.34063260340632, + "grad_norm": 0.5438173413276672, + "learning_rate": 1.7341732979664017e-05, + "loss": 0.44954757690429686, + "step": 73900 + }, + { + "epoch": 65.42910860429109, + "grad_norm": 0.5428133606910706, + "learning_rate": 1.7297524314765694e-05, + "loss": 0.45107986450195314, + "step": 74000 + }, + { + "epoch": 65.51758460517584, + "grad_norm": 0.5134186744689941, + "learning_rate": 1.7253315649867374e-05, + "loss": 0.45244071960449217, + "step": 74100 + }, + { + "epoch": 65.60606060606061, + "grad_norm": 0.6233081817626953, + "learning_rate": 1.7209106984969055e-05, + "loss": 0.45329185485839846, + "step": 74200 + }, + { + "epoch": 65.69453660694536, + "grad_norm": 0.5700708627700806, + "learning_rate": 1.7164898320070735e-05, + "loss": 0.4539757537841797, + "step": 74300 + }, + { + "epoch": 65.78301260783013, + "grad_norm": 0.5631476640701294, + "learning_rate": 1.7120689655172416e-05, + "loss": 0.4555579376220703, + "step": 74400 + }, + { + "epoch": 65.87148860871488, + "grad_norm": 0.5964381694793701, + "learning_rate": 1.7076480990274093e-05, + "loss": 0.45496936798095705, + "step": 74500 + }, + { + "epoch": 65.95996460959965, + "grad_norm": 0.5872741341590881, + "learning_rate": 1.7032272325375777e-05, + "loss": 0.45641098022460935, + "step": 74600 + }, + { + "epoch": 66.04777704047777, + "grad_norm": 0.522363543510437, + "learning_rate": 1.6988063660477454e-05, + "loss": 0.4488802337646484, + "step": 74700 + }, + { + "epoch": 66.13625304136254, + "grad_norm": 0.5161113739013672, + "learning_rate": 1.6943854995579134e-05, + "loss": 0.44122817993164065, + "step": 74800 + }, + { + "epoch": 66.22472904224729, + "grad_norm": 0.5127883553504944, + "learning_rate": 1.6899646330680815e-05, + "loss": 0.4447059631347656, + "step": 74900 + }, + { + "epoch": 66.31320504313204, + "grad_norm": 0.5202219486236572, + "learning_rate": 1.6855437665782495e-05, + "loss": 0.4453567123413086, + "step": 75000 + }, + { + "epoch": 66.40168104401681, + "grad_norm": 0.4957808256149292, + "learning_rate": 1.6811229000884172e-05, + "loss": 0.44502986907958986, + "step": 75100 + }, + { + "epoch": 66.49015704490157, + "grad_norm": 0.622518002986908, + "learning_rate": 1.6767020335985853e-05, + "loss": 0.44539188385009765, + "step": 75200 + }, + { + "epoch": 66.57863304578633, + "grad_norm": 0.5333230495452881, + "learning_rate": 1.6722811671087537e-05, + "loss": 0.4479424667358398, + "step": 75300 + }, + { + "epoch": 66.66710904667109, + "grad_norm": 0.536641001701355, + "learning_rate": 1.6678603006189214e-05, + "loss": 0.4486875534057617, + "step": 75400 + }, + { + "epoch": 66.75558504755585, + "grad_norm": 0.6140312552452087, + "learning_rate": 1.6634394341290894e-05, + "loss": 0.45118595123291017, + "step": 75500 + }, + { + "epoch": 66.84406104844061, + "grad_norm": 0.5268392562866211, + "learning_rate": 1.6590185676392574e-05, + "loss": 0.4503518676757812, + "step": 75600 + }, + { + "epoch": 66.93253704932538, + "grad_norm": 0.6316497325897217, + "learning_rate": 1.6545977011494255e-05, + "loss": 0.45311626434326174, + "step": 75700 + }, + { + "epoch": 67.02034948020349, + "grad_norm": 0.4964323937892914, + "learning_rate": 1.6502210433244915e-05, + "loss": 0.44798419952392576, + "step": 75800 + }, + { + "epoch": 67.10882548108826, + "grad_norm": 0.5668012499809265, + "learning_rate": 1.6458001768346595e-05, + "loss": 0.43682758331298827, + "step": 75900 + }, + { + "epoch": 67.19730148197301, + "grad_norm": 0.5451331734657288, + "learning_rate": 1.6413793103448276e-05, + "loss": 0.43744281768798826, + "step": 76000 + }, + { + "epoch": 67.28577748285778, + "grad_norm": 0.5625444650650024, + "learning_rate": 1.6369584438549956e-05, + "loss": 0.44072349548339845, + "step": 76100 + }, + { + "epoch": 67.37425348374254, + "grad_norm": 0.5437332391738892, + "learning_rate": 1.6325375773651637e-05, + "loss": 0.4433360290527344, + "step": 76200 + }, + { + "epoch": 67.46272948462729, + "grad_norm": 0.6005889773368835, + "learning_rate": 1.6281167108753317e-05, + "loss": 0.44355270385742185, + "step": 76300 + }, + { + "epoch": 67.55120548551206, + "grad_norm": 0.6379736065864563, + "learning_rate": 1.6236958443854997e-05, + "loss": 0.4445816421508789, + "step": 76400 + }, + { + "epoch": 67.63968148639681, + "grad_norm": 0.4892788529396057, + "learning_rate": 1.6192749778956675e-05, + "loss": 0.4460066604614258, + "step": 76500 + }, + { + "epoch": 67.72815748728158, + "grad_norm": 0.5238019227981567, + "learning_rate": 1.614854111405836e-05, + "loss": 0.44812583923339844, + "step": 76600 + }, + { + "epoch": 67.81663348816633, + "grad_norm": 0.6448091864585876, + "learning_rate": 1.6104332449160035e-05, + "loss": 0.44679683685302735, + "step": 76700 + }, + { + "epoch": 67.9051094890511, + "grad_norm": 0.501971423625946, + "learning_rate": 1.6060123784261716e-05, + "loss": 0.44675071716308595, + "step": 76800 + }, + { + "epoch": 67.99358548993585, + "grad_norm": 0.5027251243591309, + "learning_rate": 1.6015915119363396e-05, + "loss": 0.450067138671875, + "step": 76900 + }, + { + "epoch": 68.08139792081398, + "grad_norm": 0.5118396878242493, + "learning_rate": 1.5971706454465077e-05, + "loss": 0.4363971710205078, + "step": 77000 + }, + { + "epoch": 68.16987392169874, + "grad_norm": 0.49976325035095215, + "learning_rate": 1.5927497789566757e-05, + "loss": 0.43459579467773435, + "step": 77100 + }, + { + "epoch": 68.2583499225835, + "grad_norm": 0.4591541886329651, + "learning_rate": 1.5883289124668434e-05, + "loss": 0.4374491500854492, + "step": 77200 + }, + { + "epoch": 68.34682592346826, + "grad_norm": 0.5061107277870178, + "learning_rate": 1.5839080459770118e-05, + "loss": 0.4367493438720703, + "step": 77300 + }, + { + "epoch": 68.43530192435301, + "grad_norm": 0.5607414245605469, + "learning_rate": 1.5794871794871795e-05, + "loss": 0.43953250885009765, + "step": 77400 + }, + { + "epoch": 68.52377792523778, + "grad_norm": 0.5758550763130188, + "learning_rate": 1.5750663129973476e-05, + "loss": 0.4412353515625, + "step": 77500 + }, + { + "epoch": 68.61225392612253, + "grad_norm": 0.6092869639396667, + "learning_rate": 1.5706454465075153e-05, + "loss": 0.44133682250976564, + "step": 77600 + }, + { + "epoch": 68.7007299270073, + "grad_norm": 0.6203352808952332, + "learning_rate": 1.5662245800176837e-05, + "loss": 0.4439066696166992, + "step": 77700 + }, + { + "epoch": 68.78920592789206, + "grad_norm": 0.5746839046478271, + "learning_rate": 1.5618037135278517e-05, + "loss": 0.4423197174072266, + "step": 77800 + }, + { + "epoch": 68.87768192877682, + "grad_norm": 0.5136276483535767, + "learning_rate": 1.5573828470380194e-05, + "loss": 0.4460869598388672, + "step": 77900 + }, + { + "epoch": 68.96615792966158, + "grad_norm": 0.4968768358230591, + "learning_rate": 1.5529619805481878e-05, + "loss": 0.4462531280517578, + "step": 78000 + }, + { + "epoch": 69.05397036053971, + "grad_norm": 0.5103012919425964, + "learning_rate": 1.5485411140583555e-05, + "loss": 0.43465484619140626, + "step": 78100 + }, + { + "epoch": 69.14244636142446, + "grad_norm": 0.5626784563064575, + "learning_rate": 1.5441202475685236e-05, + "loss": 0.4333412551879883, + "step": 78200 + }, + { + "epoch": 69.23092236230923, + "grad_norm": 0.5118581652641296, + "learning_rate": 1.5396993810786913e-05, + "loss": 0.4336922836303711, + "step": 78300 + }, + { + "epoch": 69.31939836319398, + "grad_norm": 0.5944911241531372, + "learning_rate": 1.5352785145888596e-05, + "loss": 0.43566287994384767, + "step": 78400 + }, + { + "epoch": 69.40787436407874, + "grad_norm": 0.5433744788169861, + "learning_rate": 1.5308576480990273e-05, + "loss": 0.4361726379394531, + "step": 78500 + }, + { + "epoch": 69.4963503649635, + "grad_norm": 0.614020049571991, + "learning_rate": 1.5264367816091954e-05, + "loss": 0.4380105209350586, + "step": 78600 + }, + { + "epoch": 69.58482636584826, + "grad_norm": 0.5004254579544067, + "learning_rate": 1.5220159151193636e-05, + "loss": 0.4391395950317383, + "step": 78700 + }, + { + "epoch": 69.67330236673303, + "grad_norm": 0.522055983543396, + "learning_rate": 1.5175950486295315e-05, + "loss": 0.4396755599975586, + "step": 78800 + }, + { + "epoch": 69.76177836761778, + "grad_norm": 0.524988055229187, + "learning_rate": 1.5131741821396994e-05, + "loss": 0.4374229431152344, + "step": 78900 + }, + { + "epoch": 69.85025436850255, + "grad_norm": 0.5780676603317261, + "learning_rate": 1.5087533156498674e-05, + "loss": 0.4402974319458008, + "step": 79000 + }, + { + "epoch": 69.9387303693873, + "grad_norm": 0.5651708841323853, + "learning_rate": 1.5043324491600355e-05, + "loss": 0.44202667236328125, + "step": 79100 + }, + { + "epoch": 70.02654280026543, + "grad_norm": 0.48370227217674255, + "learning_rate": 1.4999557913351018e-05, + "loss": 0.4367184829711914, + "step": 79200 + }, + { + "epoch": 70.11501880115019, + "grad_norm": 0.5551156401634216, + "learning_rate": 1.4955349248452696e-05, + "loss": 0.42862590789794924, + "step": 79300 + }, + { + "epoch": 70.20349480203495, + "grad_norm": 0.5126725435256958, + "learning_rate": 1.4911140583554379e-05, + "loss": 0.4319373321533203, + "step": 79400 + }, + { + "epoch": 70.2919708029197, + "grad_norm": 0.5189195871353149, + "learning_rate": 1.4866931918656057e-05, + "loss": 0.4309040832519531, + "step": 79500 + }, + { + "epoch": 70.38044680380447, + "grad_norm": 0.49422213435173035, + "learning_rate": 1.4822723253757736e-05, + "loss": 0.43275665283203124, + "step": 79600 + }, + { + "epoch": 70.46892280468923, + "grad_norm": 0.49081242084503174, + "learning_rate": 1.4778514588859418e-05, + "loss": 0.4326107406616211, + "step": 79700 + }, + { + "epoch": 70.55739880557398, + "grad_norm": 0.5408063530921936, + "learning_rate": 1.4734305923961097e-05, + "loss": 0.4341436004638672, + "step": 79800 + }, + { + "epoch": 70.64587480645875, + "grad_norm": 0.4664778411388397, + "learning_rate": 1.4690097259062778e-05, + "loss": 0.4358782577514648, + "step": 79900 + }, + { + "epoch": 70.7343508073435, + "grad_norm": 0.5463866591453552, + "learning_rate": 1.4645888594164456e-05, + "loss": 0.4348703384399414, + "step": 80000 + }, + { + "epoch": 70.82282680822827, + "grad_norm": 0.5187687873840332, + "learning_rate": 1.4601679929266138e-05, + "loss": 0.43734962463378907, + "step": 80100 + }, + { + "epoch": 70.91130280911302, + "grad_norm": 0.4700576961040497, + "learning_rate": 1.4557471264367817e-05, + "loss": 0.43692012786865236, + "step": 80200 + }, + { + "epoch": 70.99977880999779, + "grad_norm": 0.5413524508476257, + "learning_rate": 1.4513262599469496e-05, + "loss": 0.43848495483398436, + "step": 80300 + }, + { + "epoch": 71.08759124087591, + "grad_norm": 0.5619797110557556, + "learning_rate": 1.4469053934571178e-05, + "loss": 0.4241709899902344, + "step": 80400 + }, + { + "epoch": 71.17606724176068, + "grad_norm": 0.5617126226425171, + "learning_rate": 1.4424845269672857e-05, + "loss": 0.42585777282714843, + "step": 80500 + }, + { + "epoch": 71.26454324264543, + "grad_norm": 0.6131432056427002, + "learning_rate": 1.4380636604774536e-05, + "loss": 0.42857707977294923, + "step": 80600 + }, + { + "epoch": 71.3530192435302, + "grad_norm": 0.5178084969520569, + "learning_rate": 1.4336427939876216e-05, + "loss": 0.4283063507080078, + "step": 80700 + }, + { + "epoch": 71.44149524441495, + "grad_norm": 0.4994112253189087, + "learning_rate": 1.4292219274977897e-05, + "loss": 0.43106334686279296, + "step": 80800 + }, + { + "epoch": 71.5299712452997, + "grad_norm": 0.5411744713783264, + "learning_rate": 1.4248010610079577e-05, + "loss": 0.43190105438232423, + "step": 80900 + }, + { + "epoch": 71.61844724618447, + "grad_norm": 0.5602013468742371, + "learning_rate": 1.4203801945181256e-05, + "loss": 0.4335565185546875, + "step": 81000 + }, + { + "epoch": 71.70692324706923, + "grad_norm": 0.5469107031822205, + "learning_rate": 1.4159593280282938e-05, + "loss": 0.4339017105102539, + "step": 81100 + }, + { + "epoch": 71.795399247954, + "grad_norm": 0.5971689224243164, + "learning_rate": 1.4115384615384617e-05, + "loss": 0.43302181243896487, + "step": 81200 + }, + { + "epoch": 71.88387524883875, + "grad_norm": 0.5518947243690491, + "learning_rate": 1.4071175950486295e-05, + "loss": 0.4339981460571289, + "step": 81300 + }, + { + "epoch": 71.97235124972352, + "grad_norm": 0.46094366908073425, + "learning_rate": 1.4026967285587974e-05, + "loss": 0.4368946075439453, + "step": 81400 + }, + { + "epoch": 72.06016368060163, + "grad_norm": 0.5013940334320068, + "learning_rate": 1.3983200707338639e-05, + "loss": 0.4272830581665039, + "step": 81500 + }, + { + "epoch": 72.1486396814864, + "grad_norm": 0.5779539346694946, + "learning_rate": 1.3938992042440318e-05, + "loss": 0.4237482452392578, + "step": 81600 + }, + { + "epoch": 72.23711568237115, + "grad_norm": 0.5799530744552612, + "learning_rate": 1.3894783377541998e-05, + "loss": 0.4221677398681641, + "step": 81700 + }, + { + "epoch": 72.32559168325592, + "grad_norm": 0.4773975908756256, + "learning_rate": 1.385057471264368e-05, + "loss": 0.4251049041748047, + "step": 81800 + }, + { + "epoch": 72.41406768414068, + "grad_norm": 0.5311180353164673, + "learning_rate": 1.380636604774536e-05, + "loss": 0.42632369995117186, + "step": 81900 + }, + { + "epoch": 72.50254368502544, + "grad_norm": 0.47812601923942566, + "learning_rate": 1.3762157382847038e-05, + "loss": 0.42722888946533205, + "step": 82000 + }, + { + "epoch": 72.5910196859102, + "grad_norm": 0.606674313545227, + "learning_rate": 1.371794871794872e-05, + "loss": 0.4295787811279297, + "step": 82100 + }, + { + "epoch": 72.67949568679495, + "grad_norm": 0.5414536595344543, + "learning_rate": 1.3673740053050399e-05, + "loss": 0.4311911392211914, + "step": 82200 + }, + { + "epoch": 72.76797168767972, + "grad_norm": 0.5214236974716187, + "learning_rate": 1.3629531388152078e-05, + "loss": 0.4323184585571289, + "step": 82300 + }, + { + "epoch": 72.85644768856447, + "grad_norm": 0.531461238861084, + "learning_rate": 1.3585322723253756e-05, + "loss": 0.43523616790771485, + "step": 82400 + }, + { + "epoch": 72.94492368944924, + "grad_norm": 0.550273597240448, + "learning_rate": 1.3541114058355439e-05, + "loss": 0.4310142517089844, + "step": 82500 + }, + { + "epoch": 73.03273612032736, + "grad_norm": 0.47776085138320923, + "learning_rate": 1.3496905393457119e-05, + "loss": 0.4287875747680664, + "step": 82600 + }, + { + "epoch": 73.12121212121212, + "grad_norm": 0.4990812838077545, + "learning_rate": 1.3452696728558798e-05, + "loss": 0.42051288604736325, + "step": 82700 + }, + { + "epoch": 73.20968812209688, + "grad_norm": 0.5124841332435608, + "learning_rate": 1.340848806366048e-05, + "loss": 0.4193102264404297, + "step": 82800 + }, + { + "epoch": 73.29816412298165, + "grad_norm": 0.5289502739906311, + "learning_rate": 1.3364279398762159e-05, + "loss": 0.42208141326904297, + "step": 82900 + }, + { + "epoch": 73.3866401238664, + "grad_norm": 0.4958449602127075, + "learning_rate": 1.3320070733863837e-05, + "loss": 0.42313686370849607, + "step": 83000 + }, + { + "epoch": 73.47511612475117, + "grad_norm": 0.5278774499893188, + "learning_rate": 1.3275862068965516e-05, + "loss": 0.42546688079833983, + "step": 83100 + }, + { + "epoch": 73.56359212563592, + "grad_norm": 0.5365238785743713, + "learning_rate": 1.3231653404067198e-05, + "loss": 0.42514255523681643, + "step": 83200 + }, + { + "epoch": 73.65206812652067, + "grad_norm": 0.5327147841453552, + "learning_rate": 1.3187444739168877e-05, + "loss": 0.42642066955566404, + "step": 83300 + }, + { + "epoch": 73.74054412740544, + "grad_norm": 0.5245737433433533, + "learning_rate": 1.3143236074270558e-05, + "loss": 0.4263890838623047, + "step": 83400 + }, + { + "epoch": 73.8290201282902, + "grad_norm": 0.5159674286842346, + "learning_rate": 1.3099027409372238e-05, + "loss": 0.428508415222168, + "step": 83500 + }, + { + "epoch": 73.91749612917496, + "grad_norm": 0.47965142130851746, + "learning_rate": 1.3054818744473918e-05, + "loss": 0.42886260986328123, + "step": 83600 + }, + { + "epoch": 74.00530856005308, + "grad_norm": 0.573679506778717, + "learning_rate": 1.301105216622458e-05, + "loss": 0.4288605499267578, + "step": 83700 + }, + { + "epoch": 74.09378456093785, + "grad_norm": 0.5544322729110718, + "learning_rate": 1.2966843501326262e-05, + "loss": 0.4174742126464844, + "step": 83800 + }, + { + "epoch": 74.1822605618226, + "grad_norm": 0.4993799030780792, + "learning_rate": 1.2922634836427941e-05, + "loss": 0.4191867828369141, + "step": 83900 + }, + { + "epoch": 74.27073656270737, + "grad_norm": 0.57634037733078, + "learning_rate": 1.287842617152962e-05, + "loss": 0.42080997467041015, + "step": 84000 + }, + { + "epoch": 74.35921256359212, + "grad_norm": 0.5524028539657593, + "learning_rate": 1.2834217506631298e-05, + "loss": 0.41995132446289063, + "step": 84100 + }, + { + "epoch": 74.44768856447689, + "grad_norm": 0.5109556913375854, + "learning_rate": 1.279000884173298e-05, + "loss": 0.4207102584838867, + "step": 84200 + }, + { + "epoch": 74.53616456536164, + "grad_norm": 0.6384374499320984, + "learning_rate": 1.2745800176834661e-05, + "loss": 0.42162609100341797, + "step": 84300 + }, + { + "epoch": 74.6246405662464, + "grad_norm": 0.5029319524765015, + "learning_rate": 1.270159151193634e-05, + "loss": 0.4232307815551758, + "step": 84400 + }, + { + "epoch": 74.71311656713117, + "grad_norm": 0.49697303771972656, + "learning_rate": 1.2657382847038022e-05, + "loss": 0.4233212661743164, + "step": 84500 + }, + { + "epoch": 74.80159256801592, + "grad_norm": 0.5748586058616638, + "learning_rate": 1.26131741821397e-05, + "loss": 0.42522281646728516, + "step": 84600 + }, + { + "epoch": 74.89006856890069, + "grad_norm": 0.5335224866867065, + "learning_rate": 1.256896551724138e-05, + "loss": 0.4264080047607422, + "step": 84700 + }, + { + "epoch": 74.97854456978544, + "grad_norm": 0.5223293900489807, + "learning_rate": 1.2524756852343058e-05, + "loss": 0.4248130416870117, + "step": 84800 + }, + { + "epoch": 75.06635700066357, + "grad_norm": 0.588205099105835, + "learning_rate": 1.2480548187444739e-05, + "loss": 0.41714618682861326, + "step": 84900 + }, + { + "epoch": 75.15483300154833, + "grad_norm": 0.4878210127353668, + "learning_rate": 1.2436339522546419e-05, + "loss": 0.41694087982177735, + "step": 85000 + }, + { + "epoch": 75.2433090024331, + "grad_norm": 0.5826809406280518, + "learning_rate": 1.23921308576481e-05, + "loss": 0.41839481353759767, + "step": 85100 + }, + { + "epoch": 75.33178500331785, + "grad_norm": 0.5703395009040833, + "learning_rate": 1.234792219274978e-05, + "loss": 0.419650993347168, + "step": 85200 + }, + { + "epoch": 75.42026100420262, + "grad_norm": 0.5960374474525452, + "learning_rate": 1.230371352785146e-05, + "loss": 0.41910491943359374, + "step": 85300 + }, + { + "epoch": 75.50873700508737, + "grad_norm": 0.5564795732498169, + "learning_rate": 1.225950486295314e-05, + "loss": 0.42010501861572264, + "step": 85400 + }, + { + "epoch": 75.59721300597214, + "grad_norm": 0.5871827006340027, + "learning_rate": 1.221529619805482e-05, + "loss": 0.41939094543457034, + "step": 85500 + }, + { + "epoch": 75.68568900685689, + "grad_norm": 0.6139041185379028, + "learning_rate": 1.2171087533156498e-05, + "loss": 0.42172611236572266, + "step": 85600 + }, + { + "epoch": 75.77416500774164, + "grad_norm": 0.5693202614784241, + "learning_rate": 1.2126878868258179e-05, + "loss": 0.4217537307739258, + "step": 85700 + }, + { + "epoch": 75.86264100862641, + "grad_norm": 0.5371018648147583, + "learning_rate": 1.208267020335986e-05, + "loss": 0.4220458984375, + "step": 85800 + }, + { + "epoch": 75.95111700951117, + "grad_norm": 0.5617541074752808, + "learning_rate": 1.2038461538461538e-05, + "loss": 0.4248412322998047, + "step": 85900 + }, + { + "epoch": 76.0389294403893, + "grad_norm": 0.5177831649780273, + "learning_rate": 1.1994694960212203e-05, + "loss": 0.41939964294433596, + "step": 86000 + }, + { + "epoch": 76.12740544127405, + "grad_norm": 0.5142802000045776, + "learning_rate": 1.1950486295313883e-05, + "loss": 0.4111063003540039, + "step": 86100 + }, + { + "epoch": 76.21588144215882, + "grad_norm": 0.4861648976802826, + "learning_rate": 1.1906277630415562e-05, + "loss": 0.4148457717895508, + "step": 86200 + }, + { + "epoch": 76.30435744304357, + "grad_norm": 0.5097411870956421, + "learning_rate": 1.1862068965517243e-05, + "loss": 0.4158660125732422, + "step": 86300 + }, + { + "epoch": 76.39283344392834, + "grad_norm": 0.4740864336490631, + "learning_rate": 1.1817860300618921e-05, + "loss": 0.4178118133544922, + "step": 86400 + }, + { + "epoch": 76.48130944481309, + "grad_norm": 0.44249430298805237, + "learning_rate": 1.1773651635720602e-05, + "loss": 0.4165281677246094, + "step": 86500 + }, + { + "epoch": 76.56978544569786, + "grad_norm": 0.5490387082099915, + "learning_rate": 1.172944297082228e-05, + "loss": 0.4198506927490234, + "step": 86600 + }, + { + "epoch": 76.65826144658261, + "grad_norm": 0.5175479650497437, + "learning_rate": 1.1685234305923961e-05, + "loss": 0.4220100402832031, + "step": 86700 + }, + { + "epoch": 76.74673744746737, + "grad_norm": 0.5073688626289368, + "learning_rate": 1.1641025641025642e-05, + "loss": 0.4184294891357422, + "step": 86800 + }, + { + "epoch": 76.83521344835214, + "grad_norm": 0.6137869358062744, + "learning_rate": 1.1596816976127322e-05, + "loss": 0.41919185638427736, + "step": 86900 + }, + { + "epoch": 76.92368944923689, + "grad_norm": 0.5274661183357239, + "learning_rate": 1.1552608311229002e-05, + "loss": 0.4193117141723633, + "step": 87000 + }, + { + "epoch": 77.01150188011502, + "grad_norm": 0.578369677066803, + "learning_rate": 1.1508399646330681e-05, + "loss": 0.4192862701416016, + "step": 87100 + }, + { + "epoch": 77.09997788099977, + "grad_norm": 0.6028936505317688, + "learning_rate": 1.1464190981432362e-05, + "loss": 0.40931896209716795, + "step": 87200 + }, + { + "epoch": 77.18845388188454, + "grad_norm": 0.4915790557861328, + "learning_rate": 1.141998231653404e-05, + "loss": 0.41025619506835936, + "step": 87300 + }, + { + "epoch": 77.2769298827693, + "grad_norm": 0.5164591073989868, + "learning_rate": 1.1375773651635721e-05, + "loss": 0.4112412643432617, + "step": 87400 + }, + { + "epoch": 77.36540588365406, + "grad_norm": 0.48311275243759155, + "learning_rate": 1.1331564986737401e-05, + "loss": 0.4144105911254883, + "step": 87500 + }, + { + "epoch": 77.45388188453882, + "grad_norm": 0.46419015526771545, + "learning_rate": 1.128735632183908e-05, + "loss": 0.41563541412353516, + "step": 87600 + }, + { + "epoch": 77.54235788542358, + "grad_norm": 0.6288944482803345, + "learning_rate": 1.124314765694076e-05, + "loss": 0.41669620513916017, + "step": 87700 + }, + { + "epoch": 77.63083388630834, + "grad_norm": 0.497126966714859, + "learning_rate": 1.1198938992042441e-05, + "loss": 0.41618637084960936, + "step": 87800 + }, + { + "epoch": 77.7193098871931, + "grad_norm": 0.5373407602310181, + "learning_rate": 1.1154730327144122e-05, + "loss": 0.41614810943603514, + "step": 87900 + }, + { + "epoch": 77.80778588807786, + "grad_norm": 0.519382894039154, + "learning_rate": 1.1110521662245802e-05, + "loss": 0.41859901428222657, + "step": 88000 + }, + { + "epoch": 77.89626188896261, + "grad_norm": 0.5001983046531677, + "learning_rate": 1.106631299734748e-05, + "loss": 0.418219108581543, + "step": 88100 + }, + { + "epoch": 77.98473788984738, + "grad_norm": 0.5034019947052002, + "learning_rate": 1.1022104332449161e-05, + "loss": 0.4178015899658203, + "step": 88200 + }, + { + "epoch": 78.0725503207255, + "grad_norm": 0.5158605575561523, + "learning_rate": 1.097789566755084e-05, + "loss": 0.4091143035888672, + "step": 88300 + }, + { + "epoch": 78.16102632161027, + "grad_norm": 0.48502761125564575, + "learning_rate": 1.093368700265252e-05, + "loss": 0.40843994140625, + "step": 88400 + }, + { + "epoch": 78.24950232249502, + "grad_norm": 0.5448765754699707, + "learning_rate": 1.08894783377542e-05, + "loss": 0.4109685516357422, + "step": 88500 + }, + { + "epoch": 78.33797832337979, + "grad_norm": 0.52455735206604, + "learning_rate": 1.084526967285588e-05, + "loss": 0.4108180236816406, + "step": 88600 + }, + { + "epoch": 78.42645432426454, + "grad_norm": 0.49440670013427734, + "learning_rate": 1.080106100795756e-05, + "loss": 0.41148426055908205, + "step": 88700 + }, + { + "epoch": 78.51493032514931, + "grad_norm": 0.5575434565544128, + "learning_rate": 1.075685234305924e-05, + "loss": 0.4121563720703125, + "step": 88800 + }, + { + "epoch": 78.60340632603406, + "grad_norm": 0.5276569724082947, + "learning_rate": 1.0712643678160921e-05, + "loss": 0.41357189178466797, + "step": 88900 + }, + { + "epoch": 78.69188232691883, + "grad_norm": 0.5279592871665955, + "learning_rate": 1.06684350132626e-05, + "loss": 0.4147018814086914, + "step": 89000 + }, + { + "epoch": 78.78035832780358, + "grad_norm": 0.4984647333621979, + "learning_rate": 1.062422634836428e-05, + "loss": 0.41413829803466795, + "step": 89100 + }, + { + "epoch": 78.86883432868834, + "grad_norm": 0.5556148886680603, + "learning_rate": 1.0580017683465959e-05, + "loss": 0.4168708419799805, + "step": 89200 + }, + { + "epoch": 78.9573103295731, + "grad_norm": 0.46219438314437866, + "learning_rate": 1.053580901856764e-05, + "loss": 0.41841983795166016, + "step": 89300 + }, + { + "epoch": 79.04512276045122, + "grad_norm": 0.49136674404144287, + "learning_rate": 1.0492042440318303e-05, + "loss": 0.41013729095458984, + "step": 89400 + }, + { + "epoch": 79.13359876133599, + "grad_norm": 0.5096011161804199, + "learning_rate": 1.0447833775419983e-05, + "loss": 0.4057589340209961, + "step": 89500 + }, + { + "epoch": 79.22207476222074, + "grad_norm": 0.4563368558883667, + "learning_rate": 1.0403625110521663e-05, + "loss": 0.4064152526855469, + "step": 89600 + }, + { + "epoch": 79.31055076310551, + "grad_norm": 0.5743097066879272, + "learning_rate": 1.0359416445623344e-05, + "loss": 0.40998432159423825, + "step": 89700 + }, + { + "epoch": 79.39902676399026, + "grad_norm": 0.46749743819236755, + "learning_rate": 1.0315207780725023e-05, + "loss": 0.40825595855712893, + "step": 89800 + }, + { + "epoch": 79.48750276487503, + "grad_norm": 0.522980272769928, + "learning_rate": 1.0270999115826703e-05, + "loss": 0.4116529083251953, + "step": 89900 + }, + { + "epoch": 79.57597876575979, + "grad_norm": 0.4576069712638855, + "learning_rate": 1.0226790450928382e-05, + "loss": 0.41039798736572264, + "step": 90000 + }, + { + "epoch": 79.66445476664455, + "grad_norm": 0.574553370475769, + "learning_rate": 1.0182581786030062e-05, + "loss": 0.4103997802734375, + "step": 90100 + }, + { + "epoch": 79.7529307675293, + "grad_norm": 0.5592597126960754, + "learning_rate": 1.0138373121131741e-05, + "loss": 0.4123684310913086, + "step": 90200 + }, + { + "epoch": 79.84140676841407, + "grad_norm": 0.5754570364952087, + "learning_rate": 1.0094164456233422e-05, + "loss": 0.4138601684570313, + "step": 90300 + }, + { + "epoch": 79.92988276929883, + "grad_norm": 0.5830336213111877, + "learning_rate": 1.0049955791335102e-05, + "loss": 0.41378173828125, + "step": 90400 + }, + { + "epoch": 80.01769520017695, + "grad_norm": 0.473369836807251, + "learning_rate": 1.0005747126436783e-05, + "loss": 0.41222110748291013, + "step": 90500 + }, + { + "epoch": 80.10617120106171, + "grad_norm": 0.5327860116958618, + "learning_rate": 9.961538461538463e-06, + "loss": 0.4058869934082031, + "step": 90600 + }, + { + "epoch": 80.19464720194647, + "grad_norm": 0.5304612517356873, + "learning_rate": 9.917329796640142e-06, + "loss": 0.4061882781982422, + "step": 90700 + }, + { + "epoch": 80.28312320283123, + "grad_norm": 0.5240916013717651, + "learning_rate": 9.873121131741822e-06, + "loss": 0.40706119537353513, + "step": 90800 + }, + { + "epoch": 80.37159920371599, + "grad_norm": 0.4663858413696289, + "learning_rate": 9.828912466843501e-06, + "loss": 0.4077639389038086, + "step": 90900 + }, + { + "epoch": 80.46007520460076, + "grad_norm": 0.4718465805053711, + "learning_rate": 9.784703801945181e-06, + "loss": 0.4078546905517578, + "step": 91000 + }, + { + "epoch": 80.54855120548551, + "grad_norm": 0.45132529735565186, + "learning_rate": 9.740495137046862e-06, + "loss": 0.40724002838134765, + "step": 91100 + }, + { + "epoch": 80.63702720637028, + "grad_norm": 0.4961422085762024, + "learning_rate": 9.69628647214854e-06, + "loss": 0.4097640609741211, + "step": 91200 + }, + { + "epoch": 80.72550320725503, + "grad_norm": 0.5276188850402832, + "learning_rate": 9.652077807250221e-06, + "loss": 0.41011890411376956, + "step": 91300 + }, + { + "epoch": 80.8139792081398, + "grad_norm": 0.48676180839538574, + "learning_rate": 9.607869142351902e-06, + "loss": 0.41075672149658204, + "step": 91400 + }, + { + "epoch": 80.90245520902455, + "grad_norm": 0.5812916159629822, + "learning_rate": 9.563660477453582e-06, + "loss": 0.4131761932373047, + "step": 91500 + }, + { + "epoch": 80.9909312099093, + "grad_norm": 0.5730577707290649, + "learning_rate": 9.51945181255526e-06, + "loss": 0.41234848022460935, + "step": 91600 + }, + { + "epoch": 81.07874364078744, + "grad_norm": 0.5240619778633118, + "learning_rate": 9.475685234305924e-06, + "loss": 0.40376312255859376, + "step": 91700 + }, + { + "epoch": 81.16721964167219, + "grad_norm": 0.46626827120780945, + "learning_rate": 9.431476569407604e-06, + "loss": 0.40396995544433595, + "step": 91800 + }, + { + "epoch": 81.25569564255696, + "grad_norm": 0.49117109179496765, + "learning_rate": 9.387267904509283e-06, + "loss": 0.4028842544555664, + "step": 91900 + }, + { + "epoch": 81.34417164344171, + "grad_norm": 0.5428334474563599, + "learning_rate": 9.343059239610964e-06, + "loss": 0.4046338653564453, + "step": 92000 + }, + { + "epoch": 81.43264764432648, + "grad_norm": 0.5240166783332825, + "learning_rate": 9.298850574712644e-06, + "loss": 0.4052513885498047, + "step": 92100 + }, + { + "epoch": 81.52112364521123, + "grad_norm": 0.4899362325668335, + "learning_rate": 9.254641909814325e-06, + "loss": 0.4052754974365234, + "step": 92200 + }, + { + "epoch": 81.609599646096, + "grad_norm": 0.46969664096832275, + "learning_rate": 9.210433244916005e-06, + "loss": 0.4072676086425781, + "step": 92300 + }, + { + "epoch": 81.69807564698075, + "grad_norm": 0.4990880489349365, + "learning_rate": 9.166224580017684e-06, + "loss": 0.40702415466308595, + "step": 92400 + }, + { + "epoch": 81.78655164786552, + "grad_norm": 0.5545535087585449, + "learning_rate": 9.122015915119364e-06, + "loss": 0.4103099822998047, + "step": 92500 + }, + { + "epoch": 81.87502764875028, + "grad_norm": 0.5591033101081848, + "learning_rate": 9.077807250221043e-06, + "loss": 0.4087317276000977, + "step": 92600 + }, + { + "epoch": 81.96350364963503, + "grad_norm": 0.5289734601974487, + "learning_rate": 9.033598585322723e-06, + "loss": 0.4112258529663086, + "step": 92700 + }, + { + "epoch": 82.05131608051316, + "grad_norm": 0.59573894739151, + "learning_rate": 8.989389920424404e-06, + "loss": 0.40506195068359374, + "step": 92800 + }, + { + "epoch": 82.13979208139791, + "grad_norm": 0.4581588804721832, + "learning_rate": 8.945181255526083e-06, + "loss": 0.401633186340332, + "step": 92900 + }, + { + "epoch": 82.22826808228268, + "grad_norm": 0.4607727527618408, + "learning_rate": 8.900972590627763e-06, + "loss": 0.4030620193481445, + "step": 93000 + }, + { + "epoch": 82.31674408316744, + "grad_norm": 0.5693869590759277, + "learning_rate": 8.856763925729444e-06, + "loss": 0.4034944152832031, + "step": 93100 + }, + { + "epoch": 82.4052200840522, + "grad_norm": 0.4679562449455261, + "learning_rate": 8.812555260831124e-06, + "loss": 0.40353385925292967, + "step": 93200 + }, + { + "epoch": 82.49369608493696, + "grad_norm": 0.4970017373561859, + "learning_rate": 8.768346595932803e-06, + "loss": 0.4040465545654297, + "step": 93300 + }, + { + "epoch": 82.58217208582172, + "grad_norm": 0.4850037097930908, + "learning_rate": 8.724137931034483e-06, + "loss": 0.40520496368408204, + "step": 93400 + }, + { + "epoch": 82.67064808670648, + "grad_norm": 0.5304952263832092, + "learning_rate": 8.679929266136164e-06, + "loss": 0.4062754440307617, + "step": 93500 + }, + { + "epoch": 82.75912408759125, + "grad_norm": 0.5124515891075134, + "learning_rate": 8.635720601237842e-06, + "loss": 0.4042987442016602, + "step": 93600 + }, + { + "epoch": 82.847600088476, + "grad_norm": 0.5527506470680237, + "learning_rate": 8.591511936339523e-06, + "loss": 0.4051095199584961, + "step": 93700 + }, + { + "epoch": 82.93607608936077, + "grad_norm": 0.4627765119075775, + "learning_rate": 8.547303271441202e-06, + "loss": 0.4065189743041992, + "step": 93800 + }, + { + "epoch": 83.02388852023888, + "grad_norm": 0.47690948843955994, + "learning_rate": 8.503094606542882e-06, + "loss": 0.4059687042236328, + "step": 93900 + }, + { + "epoch": 83.11236452112365, + "grad_norm": 0.543329656124115, + "learning_rate": 8.458885941644563e-06, + "loss": 0.40105613708496096, + "step": 94000 + }, + { + "epoch": 83.2008405220084, + "grad_norm": 0.5308240056037903, + "learning_rate": 8.414677276746243e-06, + "loss": 0.3999287414550781, + "step": 94100 + }, + { + "epoch": 83.28931652289316, + "grad_norm": 0.5098600387573242, + "learning_rate": 8.370468611847924e-06, + "loss": 0.3998809051513672, + "step": 94200 + }, + { + "epoch": 83.37779252377793, + "grad_norm": 0.5461894273757935, + "learning_rate": 8.326259946949602e-06, + "loss": 0.4027032470703125, + "step": 94300 + }, + { + "epoch": 83.46626852466268, + "grad_norm": 0.5599612593650818, + "learning_rate": 8.282051282051283e-06, + "loss": 0.4018612289428711, + "step": 94400 + }, + { + "epoch": 83.55474452554745, + "grad_norm": 0.5953245162963867, + "learning_rate": 8.237842617152961e-06, + "loss": 0.4048320770263672, + "step": 94500 + }, + { + "epoch": 83.6432205264322, + "grad_norm": 0.5232775211334229, + "learning_rate": 8.193633952254642e-06, + "loss": 0.40312889099121096, + "step": 94600 + }, + { + "epoch": 83.73169652731697, + "grad_norm": 0.5057620406150818, + "learning_rate": 8.149425287356322e-06, + "loss": 0.4016009521484375, + "step": 94700 + }, + { + "epoch": 83.82017252820172, + "grad_norm": 0.54839026927948, + "learning_rate": 8.105216622458001e-06, + "loss": 0.40390682220458984, + "step": 94800 + }, + { + "epoch": 83.90864852908649, + "grad_norm": 0.42211759090423584, + "learning_rate": 8.061007957559683e-06, + "loss": 0.4043146514892578, + "step": 94900 + }, + { + "epoch": 83.99712452997125, + "grad_norm": 0.46576666831970215, + "learning_rate": 8.016799292661362e-06, + "loss": 0.4071781539916992, + "step": 95000 + }, + { + "epoch": 84.08493696084938, + "grad_norm": 0.48286134004592896, + "learning_rate": 7.973032714412025e-06, + "loss": 0.3980902862548828, + "step": 95100 + }, + { + "epoch": 84.17341296173413, + "grad_norm": 0.5105409026145935, + "learning_rate": 7.928824049513706e-06, + "loss": 0.39626029968261717, + "step": 95200 + }, + { + "epoch": 84.26188896261888, + "grad_norm": 0.5280846357345581, + "learning_rate": 7.884615384615384e-06, + "loss": 0.39923973083496095, + "step": 95300 + }, + { + "epoch": 84.35036496350365, + "grad_norm": 0.49487778544425964, + "learning_rate": 7.840406719717065e-06, + "loss": 0.39867469787597654, + "step": 95400 + }, + { + "epoch": 84.4388409643884, + "grad_norm": 0.5105910897254944, + "learning_rate": 7.796198054818744e-06, + "loss": 0.4000941467285156, + "step": 95500 + }, + { + "epoch": 84.52731696527317, + "grad_norm": 0.49424290657043457, + "learning_rate": 7.751989389920424e-06, + "loss": 0.4025596618652344, + "step": 95600 + }, + { + "epoch": 84.61579296615793, + "grad_norm": 0.5923288464546204, + "learning_rate": 7.707780725022105e-06, + "loss": 0.40207050323486326, + "step": 95700 + }, + { + "epoch": 84.7042689670427, + "grad_norm": 0.47270065546035767, + "learning_rate": 7.663572060123785e-06, + "loss": 0.40140762329101565, + "step": 95800 + }, + { + "epoch": 84.79274496792745, + "grad_norm": 0.4515872597694397, + "learning_rate": 7.619363395225465e-06, + "loss": 0.4039121627807617, + "step": 95900 + }, + { + "epoch": 84.88122096881222, + "grad_norm": 0.5799027681350708, + "learning_rate": 7.575154730327144e-06, + "loss": 0.40215221405029294, + "step": 96000 + }, + { + "epoch": 84.96969696969697, + "grad_norm": 0.5158770680427551, + "learning_rate": 7.530946065428825e-06, + "loss": 0.40449161529541017, + "step": 96100 + }, + { + "epoch": 85.0575094005751, + "grad_norm": 0.5103220343589783, + "learning_rate": 7.4867374005305035e-06, + "loss": 0.3986453628540039, + "step": 96200 + }, + { + "epoch": 85.14598540145985, + "grad_norm": 0.48847347497940063, + "learning_rate": 7.442528735632184e-06, + "loss": 0.3962085723876953, + "step": 96300 + }, + { + "epoch": 85.2344614023446, + "grad_norm": 0.5786899328231812, + "learning_rate": 7.398320070733865e-06, + "loss": 0.398316535949707, + "step": 96400 + }, + { + "epoch": 85.32293740322937, + "grad_norm": 0.4464615285396576, + "learning_rate": 7.354111405835544e-06, + "loss": 0.39748287200927734, + "step": 96500 + }, + { + "epoch": 85.41141340411413, + "grad_norm": 0.5107320547103882, + "learning_rate": 7.3099027409372245e-06, + "loss": 0.399218864440918, + "step": 96600 + }, + { + "epoch": 85.4998894049989, + "grad_norm": 0.5555247068405151, + "learning_rate": 7.265694076038903e-06, + "loss": 0.40016975402832033, + "step": 96700 + }, + { + "epoch": 85.58836540588365, + "grad_norm": 0.46809983253479004, + "learning_rate": 7.2214854111405845e-06, + "loss": 0.39977962493896485, + "step": 96800 + }, + { + "epoch": 85.67684140676842, + "grad_norm": 0.5176143646240234, + "learning_rate": 7.177276746242263e-06, + "loss": 0.39803340911865237, + "step": 96900 + }, + { + "epoch": 85.76531740765317, + "grad_norm": 0.4717543125152588, + "learning_rate": 7.133068081343944e-06, + "loss": 0.4004299545288086, + "step": 97000 + }, + { + "epoch": 85.85379340853794, + "grad_norm": 0.49673059582710266, + "learning_rate": 7.088859416445624e-06, + "loss": 0.40104530334472654, + "step": 97100 + }, + { + "epoch": 85.94226940942269, + "grad_norm": 0.5706076622009277, + "learning_rate": 7.044650751547304e-06, + "loss": 0.40007728576660156, + "step": 97200 + }, + { + "epoch": 86.03008184030082, + "grad_norm": 0.5170352458953857, + "learning_rate": 7.000884173297967e-06, + "loss": 0.39897975921630857, + "step": 97300 + }, + { + "epoch": 86.11855784118558, + "grad_norm": 0.478630930185318, + "learning_rate": 6.956675508399646e-06, + "loss": 0.3933698272705078, + "step": 97400 + }, + { + "epoch": 86.20703384207035, + "grad_norm": 0.5094186067581177, + "learning_rate": 6.912466843501326e-06, + "loss": 0.39624488830566407, + "step": 97500 + }, + { + "epoch": 86.2955098429551, + "grad_norm": 0.5107275247573853, + "learning_rate": 6.868258178603007e-06, + "loss": 0.39685150146484377, + "step": 97600 + }, + { + "epoch": 86.38398584383985, + "grad_norm": 0.5861279964447021, + "learning_rate": 6.824049513704686e-06, + "loss": 0.3973454284667969, + "step": 97700 + }, + { + "epoch": 86.47246184472462, + "grad_norm": 0.490012526512146, + "learning_rate": 6.779840848806367e-06, + "loss": 0.3982046127319336, + "step": 97800 + }, + { + "epoch": 86.56093784560937, + "grad_norm": 0.47647538781166077, + "learning_rate": 6.7356321839080455e-06, + "loss": 0.39851917266845704, + "step": 97900 + }, + { + "epoch": 86.64941384649414, + "grad_norm": 0.45534029603004456, + "learning_rate": 6.691423519009726e-06, + "loss": 0.39754936218261716, + "step": 98000 + }, + { + "epoch": 86.7378898473789, + "grad_norm": 0.5305948257446289, + "learning_rate": 6.647214854111407e-06, + "loss": 0.39900218963623046, + "step": 98100 + }, + { + "epoch": 86.82636584826366, + "grad_norm": 0.48616868257522583, + "learning_rate": 6.603006189213086e-06, + "loss": 0.39878063201904296, + "step": 98200 + }, + { + "epoch": 86.91484184914842, + "grad_norm": 0.4637695252895355, + "learning_rate": 6.5587975243147665e-06, + "loss": 0.39936519622802735, + "step": 98300 + }, + { + "epoch": 87.00265428002655, + "grad_norm": 0.43915867805480957, + "learning_rate": 6.514588859416445e-06, + "loss": 0.39945316314697266, + "step": 98400 + }, + { + "epoch": 87.0911302809113, + "grad_norm": 0.5064729452133179, + "learning_rate": 6.4703801945181265e-06, + "loss": 0.39295291900634766, + "step": 98500 + }, + { + "epoch": 87.17960628179607, + "grad_norm": 0.41172826290130615, + "learning_rate": 6.426171529619805e-06, + "loss": 0.3956099319458008, + "step": 98600 + }, + { + "epoch": 87.26808228268082, + "grad_norm": 0.5156989693641663, + "learning_rate": 6.381962864721486e-06, + "loss": 0.3927472686767578, + "step": 98700 + }, + { + "epoch": 87.35655828356558, + "grad_norm": 0.4864855706691742, + "learning_rate": 6.337754199823166e-06, + "loss": 0.39533439636230466, + "step": 98800 + }, + { + "epoch": 87.44503428445034, + "grad_norm": 0.5469456911087036, + "learning_rate": 6.293545534924846e-06, + "loss": 0.3970512390136719, + "step": 98900 + }, + { + "epoch": 87.5335102853351, + "grad_norm": 0.4618734121322632, + "learning_rate": 6.249336870026525e-06, + "loss": 0.3967998504638672, + "step": 99000 + }, + { + "epoch": 87.62198628621987, + "grad_norm": 0.41789868474006653, + "learning_rate": 6.205128205128206e-06, + "loss": 0.3979497909545898, + "step": 99100 + }, + { + "epoch": 87.71046228710462, + "grad_norm": 0.5439488887786865, + "learning_rate": 6.1609195402298855e-06, + "loss": 0.3960274887084961, + "step": 99200 + }, + { + "epoch": 87.79893828798939, + "grad_norm": 0.46948105096817017, + "learning_rate": 6.116710875331565e-06, + "loss": 0.39781307220458983, + "step": 99300 + }, + { + "epoch": 87.88741428887414, + "grad_norm": 0.4804007411003113, + "learning_rate": 6.0725022104332456e-06, + "loss": 0.39600673675537107, + "step": 99400 + }, + { + "epoch": 87.97589028975891, + "grad_norm": 0.4494355618953705, + "learning_rate": 6.028293545534925e-06, + "loss": 0.3976548385620117, + "step": 99500 + }, + { + "epoch": 88.06370272063702, + "grad_norm": 0.4300312101840973, + "learning_rate": 5.984526967285588e-06, + "loss": 0.3928862762451172, + "step": 99600 + }, + { + "epoch": 88.15217872152179, + "grad_norm": 0.5155128836631775, + "learning_rate": 5.940318302387268e-06, + "loss": 0.39027740478515627, + "step": 99700 + }, + { + "epoch": 88.24065472240655, + "grad_norm": 0.4635615944862366, + "learning_rate": 5.896109637488948e-06, + "loss": 0.3938739776611328, + "step": 99800 + }, + { + "epoch": 88.32913072329131, + "grad_norm": 0.5408588647842407, + "learning_rate": 5.851900972590628e-06, + "loss": 0.3914863967895508, + "step": 99900 + }, + { + "epoch": 88.41760672417607, + "grad_norm": 0.5169259309768677, + "learning_rate": 5.807692307692308e-06, + "loss": 0.3942420959472656, + "step": 100000 + }, + { + "epoch": 88.50608272506082, + "grad_norm": 0.43603307008743286, + "learning_rate": 5.763483642793987e-06, + "loss": 0.3942053604125977, + "step": 100100 + }, + { + "epoch": 88.59455872594559, + "grad_norm": 0.484275758266449, + "learning_rate": 5.719274977895668e-06, + "loss": 0.3953342056274414, + "step": 100200 + }, + { + "epoch": 88.68303472683034, + "grad_norm": 0.4834429621696472, + "learning_rate": 5.675066312997348e-06, + "loss": 0.39478866577148436, + "step": 100300 + }, + { + "epoch": 88.77151072771511, + "grad_norm": 0.5198318362236023, + "learning_rate": 5.630857648099028e-06, + "loss": 0.3973033905029297, + "step": 100400 + }, + { + "epoch": 88.85998672859986, + "grad_norm": 0.5359114408493042, + "learning_rate": 5.586648983200707e-06, + "loss": 0.3963985824584961, + "step": 100500 + }, + { + "epoch": 88.94846272948463, + "grad_norm": 0.47174566984176636, + "learning_rate": 5.542440318302387e-06, + "loss": 0.39962120056152345, + "step": 100600 + }, + { + "epoch": 89.03627516036275, + "grad_norm": 0.5552394986152649, + "learning_rate": 5.498231653404067e-06, + "loss": 0.3942194747924805, + "step": 100700 + }, + { + "epoch": 89.12475116124752, + "grad_norm": 0.4985731840133667, + "learning_rate": 5.454022988505748e-06, + "loss": 0.39029048919677733, + "step": 100800 + }, + { + "epoch": 89.21322716213227, + "grad_norm": 0.5449782013893127, + "learning_rate": 5.4098143236074275e-06, + "loss": 0.391842155456543, + "step": 100900 + }, + { + "epoch": 89.30170316301704, + "grad_norm": 0.47477561235427856, + "learning_rate": 5.365605658709107e-06, + "loss": 0.39065505981445314, + "step": 101000 + }, + { + "epoch": 89.39017916390179, + "grad_norm": 0.5775418281555176, + "learning_rate": 5.3213969938107875e-06, + "loss": 0.39322795867919924, + "step": 101100 + }, + { + "epoch": 89.47865516478655, + "grad_norm": 0.44463786482810974, + "learning_rate": 5.277188328912467e-06, + "loss": 0.3929602813720703, + "step": 101200 + }, + { + "epoch": 89.56713116567131, + "grad_norm": 0.5217382311820984, + "learning_rate": 5.232979664014147e-06, + "loss": 0.3945352172851562, + "step": 101300 + }, + { + "epoch": 89.65560716655607, + "grad_norm": 0.47336575388908386, + "learning_rate": 5.188770999115826e-06, + "loss": 0.3943867492675781, + "step": 101400 + }, + { + "epoch": 89.74408316744083, + "grad_norm": 0.49890655279159546, + "learning_rate": 5.144562334217507e-06, + "loss": 0.39472442626953125, + "step": 101500 + }, + { + "epoch": 89.83255916832559, + "grad_norm": 0.4528096914291382, + "learning_rate": 5.100353669319187e-06, + "loss": 0.3927711868286133, + "step": 101600 + }, + { + "epoch": 89.92103516921036, + "grad_norm": 0.4498828649520874, + "learning_rate": 5.056145004420867e-06, + "loss": 0.3962491226196289, + "step": 101700 + }, + { + "epoch": 90.00884760008847, + "grad_norm": 0.45861297845840454, + "learning_rate": 5.0119363395225465e-06, + "loss": 0.39339271545410154, + "step": 101800 + }, + { + "epoch": 90.09732360097324, + "grad_norm": 0.5762381553649902, + "learning_rate": 4.967727674624226e-06, + "loss": 0.3896630096435547, + "step": 101900 + }, + { + "epoch": 90.185799601858, + "grad_norm": 0.5530878305435181, + "learning_rate": 4.923519009725907e-06, + "loss": 0.38933868408203126, + "step": 102000 + }, + { + "epoch": 90.27427560274276, + "grad_norm": 0.4769279360771179, + "learning_rate": 4.879310344827587e-06, + "loss": 0.38943870544433595, + "step": 102100 + }, + { + "epoch": 90.36275160362752, + "grad_norm": 0.5254392027854919, + "learning_rate": 4.835101679929267e-06, + "loss": 0.39091030120849607, + "step": 102200 + }, + { + "epoch": 90.45122760451227, + "grad_norm": 0.5098690986633301, + "learning_rate": 4.790893015030946e-06, + "loss": 0.39340557098388673, + "step": 102300 + }, + { + "epoch": 90.53970360539704, + "grad_norm": 0.5299240946769714, + "learning_rate": 4.746684350132626e-06, + "loss": 0.3925971221923828, + "step": 102400 + }, + { + "epoch": 90.62817960628179, + "grad_norm": 0.5023613572120667, + "learning_rate": 4.702475685234306e-06, + "loss": 0.3934814453125, + "step": 102500 + }, + { + "epoch": 90.71665560716656, + "grad_norm": 0.5217054486274719, + "learning_rate": 4.658267020335986e-06, + "loss": 0.39229228973388675, + "step": 102600 + }, + { + "epoch": 90.80513160805131, + "grad_norm": 0.4929801821708679, + "learning_rate": 4.6140583554376656e-06, + "loss": 0.39253700256347657, + "step": 102700 + }, + { + "epoch": 90.89360760893608, + "grad_norm": 0.4281506836414337, + "learning_rate": 4.569849690539346e-06, + "loss": 0.39423236846923826, + "step": 102800 + }, + { + "epoch": 90.98208360982083, + "grad_norm": 0.5606275796890259, + "learning_rate": 4.525641025641026e-06, + "loss": 0.39174613952636717, + "step": 102900 + }, + { + "epoch": 91.06989604069896, + "grad_norm": 0.40593966841697693, + "learning_rate": 4.481874447391689e-06, + "loss": 0.39004261016845704, + "step": 103000 + }, + { + "epoch": 91.15837204158372, + "grad_norm": 0.48218822479248047, + "learning_rate": 4.437665782493368e-06, + "loss": 0.39024349212646486, + "step": 103100 + }, + { + "epoch": 91.24684804246849, + "grad_norm": 0.4803628623485565, + "learning_rate": 4.393457117595049e-06, + "loss": 0.3893236541748047, + "step": 103200 + }, + { + "epoch": 91.33532404335324, + "grad_norm": 0.5424004197120667, + "learning_rate": 4.349248452696729e-06, + "loss": 0.3895704650878906, + "step": 103300 + }, + { + "epoch": 91.423800044238, + "grad_norm": 0.4238603711128235, + "learning_rate": 4.305039787798409e-06, + "loss": 0.3891864776611328, + "step": 103400 + }, + { + "epoch": 91.51227604512276, + "grad_norm": 0.5425596833229065, + "learning_rate": 4.2608311229000885e-06, + "loss": 0.3902478408813477, + "step": 103500 + }, + { + "epoch": 91.60075204600751, + "grad_norm": 0.529647946357727, + "learning_rate": 4.216622458001768e-06, + "loss": 0.39207550048828127, + "step": 103600 + }, + { + "epoch": 91.68922804689228, + "grad_norm": 0.42155396938323975, + "learning_rate": 4.1724137931034486e-06, + "loss": 0.3911063766479492, + "step": 103700 + }, + { + "epoch": 91.77770404777704, + "grad_norm": 0.4809010326862335, + "learning_rate": 4.128205128205129e-06, + "loss": 0.3927000427246094, + "step": 103800 + }, + { + "epoch": 91.8661800486618, + "grad_norm": 0.4598400890827179, + "learning_rate": 4.083996463306809e-06, + "loss": 0.38986122131347656, + "step": 103900 + }, + { + "epoch": 91.95465604954656, + "grad_norm": 0.52349853515625, + "learning_rate": 4.039787798408488e-06, + "loss": 0.3922639465332031, + "step": 104000 + }, + { + "epoch": 92.04246848042469, + "grad_norm": 0.5118280053138733, + "learning_rate": 3.996021220159151e-06, + "loss": 0.388396110534668, + "step": 104100 + }, + { + "epoch": 92.13094448130944, + "grad_norm": 0.49287110567092896, + "learning_rate": 3.951812555260832e-06, + "loss": 0.3882394027709961, + "step": 104200 + }, + { + "epoch": 92.21942048219421, + "grad_norm": 0.5597590804100037, + "learning_rate": 3.9076038903625115e-06, + "loss": 0.38768112182617187, + "step": 104300 + }, + { + "epoch": 92.30789648307896, + "grad_norm": 0.49123573303222656, + "learning_rate": 3.863395225464191e-06, + "loss": 0.38717472076416015, + "step": 104400 + }, + { + "epoch": 92.39637248396373, + "grad_norm": 0.5490599870681763, + "learning_rate": 3.819186560565871e-06, + "loss": 0.38968246459960937, + "step": 104500 + }, + { + "epoch": 92.48484848484848, + "grad_norm": 0.563377857208252, + "learning_rate": 3.7749778956675507e-06, + "loss": 0.3879422760009766, + "step": 104600 + }, + { + "epoch": 92.57332448573324, + "grad_norm": 0.5248238444328308, + "learning_rate": 3.7307692307692308e-06, + "loss": 0.3904239654541016, + "step": 104700 + }, + { + "epoch": 92.661800486618, + "grad_norm": 0.5977566242218018, + "learning_rate": 3.6865605658709104e-06, + "loss": 0.39140804290771486, + "step": 104800 + }, + { + "epoch": 92.75027648750276, + "grad_norm": 0.4992641508579254, + "learning_rate": 3.6423519009725912e-06, + "loss": 0.390025749206543, + "step": 104900 + }, + { + "epoch": 92.83875248838753, + "grad_norm": 0.5491787791252136, + "learning_rate": 3.598143236074271e-06, + "loss": 0.39107063293457034, + "step": 105000 + }, + { + "epoch": 92.92722848927228, + "grad_norm": 0.46409890055656433, + "learning_rate": 3.553934571175951e-06, + "loss": 0.3911115264892578, + "step": 105100 + }, + { + "epoch": 93.01504092015041, + "grad_norm": 0.5469849705696106, + "learning_rate": 3.5097259062776305e-06, + "loss": 0.3916855621337891, + "step": 105200 + }, + { + "epoch": 93.10351692103517, + "grad_norm": 0.496277391910553, + "learning_rate": 3.4655172413793105e-06, + "loss": 0.3867160415649414, + "step": 105300 + }, + { + "epoch": 93.19199292191993, + "grad_norm": 0.42929497361183167, + "learning_rate": 3.42130857648099e-06, + "loss": 0.38718021392822266, + "step": 105400 + }, + { + "epoch": 93.28046892280469, + "grad_norm": 0.406601220369339, + "learning_rate": 3.3770999115826706e-06, + "loss": 0.386837272644043, + "step": 105500 + }, + { + "epoch": 93.36894492368945, + "grad_norm": 0.48087212443351746, + "learning_rate": 3.3328912466843506e-06, + "loss": 0.3877327346801758, + "step": 105600 + }, + { + "epoch": 93.45742092457421, + "grad_norm": 0.5117219090461731, + "learning_rate": 3.2886825817860302e-06, + "loss": 0.38803070068359374, + "step": 105700 + }, + { + "epoch": 93.54589692545898, + "grad_norm": 0.6043857932090759, + "learning_rate": 3.2444739168877103e-06, + "loss": 0.38934085845947264, + "step": 105800 + }, + { + "epoch": 93.63437292634373, + "grad_norm": 0.5303599238395691, + "learning_rate": 3.20026525198939e-06, + "loss": 0.3872317123413086, + "step": 105900 + }, + { + "epoch": 93.72284892722848, + "grad_norm": 0.48868313431739807, + "learning_rate": 3.15605658709107e-06, + "loss": 0.3903642272949219, + "step": 106000 + }, + { + "epoch": 93.81132492811325, + "grad_norm": 0.5126668810844421, + "learning_rate": 3.11184792219275e-06, + "loss": 0.3893658447265625, + "step": 106100 + }, + { + "epoch": 93.899800928998, + "grad_norm": 0.5788067579269409, + "learning_rate": 3.06763925729443e-06, + "loss": 0.3887732315063477, + "step": 106200 + }, + { + "epoch": 93.98827692988277, + "grad_norm": 0.5931738615036011, + "learning_rate": 3.0234305923961096e-06, + "loss": 0.3858309555053711, + "step": 106300 + }, + { + "epoch": 94.07608936076089, + "grad_norm": 0.4667378067970276, + "learning_rate": 2.9792219274977896e-06, + "loss": 0.3882503128051758, + "step": 106400 + }, + { + "epoch": 94.16456536164566, + "grad_norm": 0.4540467858314514, + "learning_rate": 2.9350132625994697e-06, + "loss": 0.3879624557495117, + "step": 106500 + }, + { + "epoch": 94.25304136253041, + "grad_norm": 0.5249928832054138, + "learning_rate": 2.8908045977011493e-06, + "loss": 0.3871700668334961, + "step": 106600 + }, + { + "epoch": 94.34151736341518, + "grad_norm": 0.4902016520500183, + "learning_rate": 2.8465959328028297e-06, + "loss": 0.3865641403198242, + "step": 106700 + }, + { + "epoch": 94.42999336429993, + "grad_norm": 0.4490734934806824, + "learning_rate": 2.8023872679045093e-06, + "loss": 0.3874678039550781, + "step": 106800 + }, + { + "epoch": 94.5184693651847, + "grad_norm": 0.39259180426597595, + "learning_rate": 2.7581786030061894e-06, + "loss": 0.3864010238647461, + "step": 106900 + }, + { + "epoch": 94.60694536606945, + "grad_norm": 0.5160086154937744, + "learning_rate": 2.7139699381078694e-06, + "loss": 0.38762042999267576, + "step": 107000 + }, + { + "epoch": 94.6954213669542, + "grad_norm": 0.5112566947937012, + "learning_rate": 2.669761273209549e-06, + "loss": 0.38802257537841794, + "step": 107100 + }, + { + "epoch": 94.78389736783897, + "grad_norm": 0.48586076498031616, + "learning_rate": 2.625552608311229e-06, + "loss": 0.3883600616455078, + "step": 107200 + }, + { + "epoch": 94.87237336872373, + "grad_norm": 0.5169211626052856, + "learning_rate": 2.581343943412909e-06, + "loss": 0.38775413513183593, + "step": 107300 + }, + { + "epoch": 94.9608493696085, + "grad_norm": 0.4262998700141907, + "learning_rate": 2.537135278514589e-06, + "loss": 0.3891670608520508, + "step": 107400 + }, + { + "epoch": 95.04866180048661, + "grad_norm": 0.4452260434627533, + "learning_rate": 2.4929266136162687e-06, + "loss": 0.38474632263183595, + "step": 107500 + }, + { + "epoch": 95.13713780137138, + "grad_norm": 0.5349674820899963, + "learning_rate": 2.4487179487179488e-06, + "loss": 0.3851365661621094, + "step": 107600 + }, + { + "epoch": 95.22561380225613, + "grad_norm": 0.4277512729167938, + "learning_rate": 2.404509283819629e-06, + "loss": 0.38448490142822267, + "step": 107700 + }, + { + "epoch": 95.3140898031409, + "grad_norm": 0.5199966430664062, + "learning_rate": 2.360300618921309e-06, + "loss": 0.3855178451538086, + "step": 107800 + }, + { + "epoch": 95.40256580402566, + "grad_norm": 0.49931713938713074, + "learning_rate": 2.3160919540229885e-06, + "loss": 0.38597549438476564, + "step": 107900 + }, + { + "epoch": 95.49104180491042, + "grad_norm": 0.44888851046562195, + "learning_rate": 2.2718832891246685e-06, + "loss": 0.38637237548828124, + "step": 108000 + }, + { + "epoch": 95.57951780579518, + "grad_norm": 0.48020413517951965, + "learning_rate": 2.2276746242263485e-06, + "loss": 0.3860820388793945, + "step": 108100 + }, + { + "epoch": 95.66799380667993, + "grad_norm": 0.49320459365844727, + "learning_rate": 2.183465959328028e-06, + "loss": 0.3868730926513672, + "step": 108200 + }, + { + "epoch": 95.7564698075647, + "grad_norm": 0.4776149392127991, + "learning_rate": 2.1392572944297086e-06, + "loss": 0.38699729919433595, + "step": 108300 + }, + { + "epoch": 95.84494580844945, + "grad_norm": 0.4394153356552124, + "learning_rate": 2.095048629531388e-06, + "loss": 0.3858388137817383, + "step": 108400 + }, + { + "epoch": 95.93342180933422, + "grad_norm": 0.40809816122055054, + "learning_rate": 2.0508399646330682e-06, + "loss": 0.3865514373779297, + "step": 108500 + }, + { + "epoch": 96.02123424021234, + "grad_norm": 0.40297845005989075, + "learning_rate": 2.0070733863837314e-06, + "loss": 0.38520877838134765, + "step": 108600 + }, + { + "epoch": 96.1097102410971, + "grad_norm": 0.4992787837982178, + "learning_rate": 1.9628647214854114e-06, + "loss": 0.3824159622192383, + "step": 108700 + }, + { + "epoch": 96.19818624198186, + "grad_norm": 0.4386002719402313, + "learning_rate": 1.918656056587091e-06, + "loss": 0.3828225326538086, + "step": 108800 + }, + { + "epoch": 96.28666224286663, + "grad_norm": 0.4839923679828644, + "learning_rate": 1.874447391688771e-06, + "loss": 0.3837508392333984, + "step": 108900 + }, + { + "epoch": 96.37513824375138, + "grad_norm": 0.5360403656959534, + "learning_rate": 1.830238726790451e-06, + "loss": 0.3868670654296875, + "step": 109000 + }, + { + "epoch": 96.46361424463615, + "grad_norm": 0.5472413897514343, + "learning_rate": 1.786030061892131e-06, + "loss": 0.38740249633789064, + "step": 109100 + }, + { + "epoch": 96.5520902455209, + "grad_norm": 0.4783819019794464, + "learning_rate": 1.7418213969938107e-06, + "loss": 0.3851567459106445, + "step": 109200 + }, + { + "epoch": 96.64056624640567, + "grad_norm": 0.5319016575813293, + "learning_rate": 1.6976127320954906e-06, + "loss": 0.38549720764160156, + "step": 109300 + }, + { + "epoch": 96.72904224729042, + "grad_norm": 0.4579726755619049, + "learning_rate": 1.6534040671971708e-06, + "loss": 0.38684429168701173, + "step": 109400 + }, + { + "epoch": 96.81751824817518, + "grad_norm": 0.4699755012989044, + "learning_rate": 1.6091954022988506e-06, + "loss": 0.3849377822875977, + "step": 109500 + }, + { + "epoch": 96.90599424905994, + "grad_norm": 0.5681434273719788, + "learning_rate": 1.5649867374005304e-06, + "loss": 0.38494167327880857, + "step": 109600 + }, + { + "epoch": 96.9944702499447, + "grad_norm": 0.40921762585639954, + "learning_rate": 1.5207780725022105e-06, + "loss": 0.3864158630371094, + "step": 109700 + }, + { + "epoch": 97.08228268082283, + "grad_norm": 0.5271804928779602, + "learning_rate": 1.4765694076038905e-06, + "loss": 0.3854814529418945, + "step": 109800 + }, + { + "epoch": 97.17075868170758, + "grad_norm": 0.5390716195106506, + "learning_rate": 1.4323607427055703e-06, + "loss": 0.3826302719116211, + "step": 109900 + }, + { + "epoch": 97.25923468259235, + "grad_norm": 0.4738744795322418, + "learning_rate": 1.3881520778072502e-06, + "loss": 0.3834680938720703, + "step": 110000 + }, + { + "epoch": 97.3477106834771, + "grad_norm": 0.47226211428642273, + "learning_rate": 1.3439434129089302e-06, + "loss": 0.383985595703125, + "step": 110100 + }, + { + "epoch": 97.43618668436187, + "grad_norm": 0.44581323862075806, + "learning_rate": 1.29973474801061e-06, + "loss": 0.38392398834228514, + "step": 110200 + }, + { + "epoch": 97.52466268524662, + "grad_norm": 0.505975067615509, + "learning_rate": 1.25552608311229e-06, + "loss": 0.3842586898803711, + "step": 110300 + }, + { + "epoch": 97.61313868613139, + "grad_norm": 0.4737127125263214, + "learning_rate": 1.21131741821397e-06, + "loss": 0.3853626251220703, + "step": 110400 + }, + { + "epoch": 97.70161468701615, + "grad_norm": 0.42337724566459656, + "learning_rate": 1.16710875331565e-06, + "loss": 0.3860707092285156, + "step": 110500 + }, + { + "epoch": 97.7900906879009, + "grad_norm": 0.470935583114624, + "learning_rate": 1.12290008841733e-06, + "loss": 0.3849189758300781, + "step": 110600 + }, + { + "epoch": 97.87856668878567, + "grad_norm": 0.5499629974365234, + "learning_rate": 1.0786914235190098e-06, + "loss": 0.3849348068237305, + "step": 110700 + }, + { + "epoch": 97.96704268967042, + "grad_norm": 0.5295959711074829, + "learning_rate": 1.0344827586206898e-06, + "loss": 0.3844482040405273, + "step": 110800 + }, + { + "epoch": 98.05485512054855, + "grad_norm": 0.510218620300293, + "learning_rate": 9.902740937223696e-07, + "loss": 0.38250988006591796, + "step": 110900 + }, + { + "epoch": 98.1433311214333, + "grad_norm": 0.46240198612213135, + "learning_rate": 9.460654288240495e-07, + "loss": 0.38357555389404296, + "step": 111000 + }, + { + "epoch": 98.23180712231807, + "grad_norm": 0.5413907170295715, + "learning_rate": 9.018567639257295e-07, + "loss": 0.3835936737060547, + "step": 111100 + }, + { + "epoch": 98.32028312320283, + "grad_norm": 0.5282194018363953, + "learning_rate": 8.576480990274095e-07, + "loss": 0.38462539672851564, + "step": 111200 + }, + { + "epoch": 98.4087591240876, + "grad_norm": 0.4430619478225708, + "learning_rate": 8.134394341290893e-07, + "loss": 0.3831254196166992, + "step": 111300 + }, + { + "epoch": 98.49723512497235, + "grad_norm": 0.4520755410194397, + "learning_rate": 7.692307692307694e-07, + "loss": 0.38387767791748045, + "step": 111400 + }, + { + "epoch": 98.58571112585712, + "grad_norm": 0.42326220870018005, + "learning_rate": 7.250221043324492e-07, + "loss": 0.38382118225097656, + "step": 111500 + }, + { + "epoch": 98.67418712674187, + "grad_norm": 0.5536217093467712, + "learning_rate": 6.808134394341291e-07, + "loss": 0.3837322998046875, + "step": 111600 + }, + { + "epoch": 98.76266312762664, + "grad_norm": 0.47729530930519104, + "learning_rate": 6.36604774535809e-07, + "loss": 0.3840275192260742, + "step": 111700 + }, + { + "epoch": 98.85113912851139, + "grad_norm": 0.4712120294570923, + "learning_rate": 5.92396109637489e-07, + "loss": 0.3826910400390625, + "step": 111800 + }, + { + "epoch": 98.93961512939615, + "grad_norm": 0.4533778727054596, + "learning_rate": 5.481874447391689e-07, + "loss": 0.3849251174926758, + "step": 111900 + }, + { + "epoch": 99.02742756027428, + "grad_norm": 0.4762660264968872, + "learning_rate": 5.04420866489832e-07, + "loss": 0.38347198486328127, + "step": 112000 + }, + { + "epoch": 99.11590356115903, + "grad_norm": 0.49900203943252563, + "learning_rate": 4.6021220159151197e-07, + "loss": 0.38361885070800783, + "step": 112100 + }, + { + "epoch": 99.2043795620438, + "grad_norm": 0.5499697923660278, + "learning_rate": 4.1600353669319184e-07, + "loss": 0.38323490142822264, + "step": 112200 + }, + { + "epoch": 99.29285556292855, + "grad_norm": 0.49698564410209656, + "learning_rate": 3.717948717948718e-07, + "loss": 0.38394325256347656, + "step": 112300 + }, + { + "epoch": 99.38133156381332, + "grad_norm": 0.5000177621841431, + "learning_rate": 3.2758620689655175e-07, + "loss": 0.3833367156982422, + "step": 112400 + }, + { + "epoch": 99.46980756469807, + "grad_norm": 0.46179404854774475, + "learning_rate": 2.833775419982317e-07, + "loss": 0.38318233489990233, + "step": 112500 + }, + { + "epoch": 99.55828356558284, + "grad_norm": 0.5522571802139282, + "learning_rate": 2.391688770999116e-07, + "loss": 0.38181392669677733, + "step": 112600 + }, + { + "epoch": 99.6467595664676, + "grad_norm": 0.4453877806663513, + "learning_rate": 1.949602122015915e-07, + "loss": 0.38297233581542967, + "step": 112700 + }, + { + "epoch": 99.73523556735236, + "grad_norm": 0.46210813522338867, + "learning_rate": 1.5075154730327146e-07, + "loss": 0.3855221939086914, + "step": 112800 + }, + { + "epoch": 99.82371156823712, + "grad_norm": 0.5160776972770691, + "learning_rate": 1.0654288240495138e-07, + "loss": 0.38173851013183596, + "step": 112900 + }, + { + "epoch": 99.91218756912187, + "grad_norm": 0.5537967681884766, + "learning_rate": 6.23342175066313e-08, + "loss": 0.38249988555908204, + "step": 113000 + }, + { + "epoch": 100.0, + "grad_norm": 1.0702033042907715, + "learning_rate": 1.812555260831123e-08, + "loss": 0.3844903945922852, + "step": 113100 + } + ], + "logging_steps": 100, + "max_steps": 113100, + "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": 3.13788818128896e+16, + "train_batch_size": 8, + "trial_name": null, + "trial_params": null +} diff --git a/timecost/m8/realtabformer/rtf-m8-20260430_214424/rtf_checkpoints/checkpoint-113100/training_args.bin b/timecost/m8/realtabformer/rtf-m8-20260430_214424/rtf_checkpoints/checkpoint-113100/training_args.bin new file mode 100644 index 0000000000000000000000000000000000000000..34d68dc0e0fe1c1f12a2e581dd1b166aa7178a9e --- /dev/null +++ b/timecost/m8/realtabformer/rtf-m8-20260430_214424/rtf_checkpoints/checkpoint-113100/training_args.bin @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:9e2cd88337d1d846c6918d2b3b63fa3e5c93f12fefc082497590da854a564607 +size 5201 diff --git a/timecost/m8/realtabformer/rtf-m8-20260430_214424/runtime_result.json b/timecost/m8/realtabformer/rtf-m8-20260430_214424/runtime_result.json new file mode 100644 index 0000000000000000000000000000000000000000..b6420d843b8e8bad69523d1e8b053946552328b3 --- /dev/null +++ b/timecost/m8/realtabformer/rtf-m8-20260430_214424/runtime_result.json @@ -0,0 +1,27 @@ +{ + "dataset_id": "m8", + "model": "realtabformer", + "run_id": "rtf-m8-20260430_214424", + "public_gate_status": "pass", + "adapter_ready_status": "pass", + "train_status": "success", + "generate_status": "success", + "reason_code": null, + "reason_detail": null, + "artifacts": { + "synthetic_csv": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/m8/realtabformer/rtf-m8-20260430_214424/rtf-m8-36168-20260430_235333.csv", + "model_path": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/m8/realtabformer/rtf-m8-20260430_214424/models_100epochs" + }, + "timings": { + "train": { + "started_at": "2026-04-30T21:44:24", + "ended_at": "2026-04-30T23:53:33", + "duration_sec": 7748.406 + }, + "generate": { + "started_at": "2026-04-30T23:53:33", + "ended_at": "2026-04-30T23:55:41", + "duration_sec": 128.326 + } + } +} \ No newline at end of file diff --git a/timecost/m8/realtabformer/rtf-m8-20260430_214424/staged/public/staged_features.json b/timecost/m8/realtabformer/rtf-m8-20260430_214424/staged/public/staged_features.json new file mode 100644 index 0000000000000000000000000000000000000000..11323e8dc5c8a2eaafa8e404e60d3db7e244452a --- /dev/null +++ b/timecost/m8/realtabformer/rtf-m8-20260430_214424/staged/public/staged_features.json @@ -0,0 +1,87 @@ +[ + { + "feature_name": "age", + "data_type": "continuous", + "is_target": false + }, + { + "feature_name": "job", + "data_type": "categorical", + "is_target": false + }, + { + "feature_name": "marital", + "data_type": "categorical", + "is_target": false + }, + { + "feature_name": "education", + "data_type": "categorical", + "is_target": false + }, + { + "feature_name": "default", + "data_type": "binary", + "is_target": false + }, + { + "feature_name": "balance", + "data_type": "continuous", + "is_target": false + }, + { + "feature_name": "housing", + "data_type": "binary", + "is_target": false + }, + { + "feature_name": "loan", + "data_type": "binary", + "is_target": false + }, + { + "feature_name": "contact", + "data_type": "categorical", + "is_target": false + }, + { + "feature_name": "day", + "data_type": "continuous", + "is_target": false + }, + { + "feature_name": "month", + "data_type": "categorical", + "is_target": false + }, + { + "feature_name": "duration", + "data_type": "continuous", + "is_target": false + }, + { + "feature_name": "campaign", + "data_type": "continuous", + "is_target": false + }, + { + "feature_name": "pdays", + "data_type": "continuous", + "is_target": false + }, + { + "feature_name": "previous", + "data_type": "continuous", + "is_target": false + }, + { + "feature_name": "poutcome", + "data_type": "categorical", + "is_target": false + }, + { + "feature_name": "y", + "data_type": "binary", + "is_target": true + } +] \ No newline at end of file diff --git a/timecost/m8/realtabformer/rtf-m8-20260430_214424/staged/public/test.csv b/timecost/m8/realtabformer/rtf-m8-20260430_214424/staged/public/test.csv new file mode 100644 index 0000000000000000000000000000000000000000..e1c4866e541b88f8bcd3b88381c7e56d4df06443 --- /dev/null +++ b/timecost/m8/realtabformer/rtf-m8-20260430_214424/staged/public/test.csv @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:6221943e422e75c8317b79b7ef93e9cd01f61fdd8de6ce42909a8e4610966310 +size 370991 diff --git a/timecost/m8/realtabformer/rtf-m8-20260430_214424/staged/public/train.csv b/timecost/m8/realtabformer/rtf-m8-20260430_214424/staged/public/train.csv new file mode 100644 index 0000000000000000000000000000000000000000..fd7d8791840b6811b098820db4ed9e74cf5d627a --- /dev/null +++ b/timecost/m8/realtabformer/rtf-m8-20260430_214424/staged/public/train.csv @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:f9cbb71aa793de19869a138d41aea5808f772b31082741b185ffb8ca7b821833 +size 2964802 diff --git a/timecost/m8/realtabformer/rtf-m8-20260430_214424/staged/public/val.csv b/timecost/m8/realtabformer/rtf-m8-20260430_214424/staged/public/val.csv new file mode 100644 index 0000000000000000000000000000000000000000..09f0041420455c56eb1f79c62940d135e8bc6ea3 --- /dev/null +++ b/timecost/m8/realtabformer/rtf-m8-20260430_214424/staged/public/val.csv @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:5ee8612128aae92155906abc0fdc752ac24fd04d63c78c080c89e3900efe6525 +size 370535 diff --git a/timecost/m8/realtabformer/rtf-m8-20260430_214424/staged/realtabformer/adapter_report.json b/timecost/m8/realtabformer/rtf-m8-20260430_214424/staged/realtabformer/adapter_report.json new file mode 100644 index 0000000000000000000000000000000000000000..c0e2b05de4a9969c23e0c1f259e3e9d4db51d0bd --- /dev/null +++ b/timecost/m8/realtabformer/rtf-m8-20260430_214424/staged/realtabformer/adapter_report.json @@ -0,0 +1,7 @@ +{ + "adapter_ready_status": "pass", + "adapter_fail_reason_code": null, + "adapter_fail_detail": null, + "adapter_transforms_applied": [], + "model_input_manifest": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/m8/realtabformer/rtf-m8-20260430_214424/staged/realtabformer/model_input_manifest.json" +} \ No newline at end of file diff --git a/timecost/m8/realtabformer/rtf-m8-20260430_214424/staged/realtabformer/adapter_transforms_applied.json b/timecost/m8/realtabformer/rtf-m8-20260430_214424/staged/realtabformer/adapter_transforms_applied.json new file mode 100644 index 0000000000000000000000000000000000000000..0637a088a01e8ddab3bf3fa98dbe804cbde1a0dc --- /dev/null +++ b/timecost/m8/realtabformer/rtf-m8-20260430_214424/staged/realtabformer/adapter_transforms_applied.json @@ -0,0 +1 @@ +[] \ No newline at end of file diff --git a/timecost/m8/realtabformer/rtf-m8-20260430_214424/staged/realtabformer/model_input_manifest.json b/timecost/m8/realtabformer/rtf-m8-20260430_214424/staged/realtabformer/model_input_manifest.json new file mode 100644 index 0000000000000000000000000000000000000000..366d91d55c1f3ad01cba72c32fe4fb40eea9dbd1 --- /dev/null +++ b/timecost/m8/realtabformer/rtf-m8-20260430_214424/staged/realtabformer/model_input_manifest.json @@ -0,0 +1,353 @@ +{ + "dataset_id": "m8", + "model": "realtabformer", + "target_column": "y", + "task_type": "classification", + "column_schema": [ + { + "name": "age", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 76, + "unique_ratio": 0.002101, + "example_values": [ + "40", + "52", + "31", + "51", + "44" + ] + } + }, + { + "name": "job", + "role": "feature", + "semantic_type": "categorical", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 12, + "unique_ratio": 0.000332, + "example_values": [ + "admin.", + "technician", + "entrepreneur", + "blue-collar", + "services" + ] + } + }, + { + "name": "marital", + "role": "feature", + "semantic_type": "categorical", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 3, + "unique_ratio": 8.3e-05, + "example_values": [ + "single", + "married", + "divorced" + ] + } + }, + { + "name": "education", + "role": "feature", + "semantic_type": "categorical", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 4, + "unique_ratio": 0.000111, + "example_values": [ + "secondary", + "tertiary", + "primary", + "unknown" + ] + } + }, + { + "name": "default", + "role": "feature", + "semantic_type": "boolean", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 2, + "unique_ratio": 5.5e-05, + "example_values": [ + "no", + "yes" + ] + } + }, + { + "name": "balance", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 6604, + "unique_ratio": 0.182592, + "example_values": [ + "419", + "31", + "7567", + "315", + "737" + ] + } + }, + { + "name": "housing", + "role": "feature", + "semantic_type": "boolean", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 2, + "unique_ratio": 5.5e-05, + "example_values": [ + "no", + "yes" + ] + } + }, + { + "name": "loan", + "role": "feature", + "semantic_type": "boolean", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 2, + "unique_ratio": 5.5e-05, + "example_values": [ + "yes", + "no" + ] + } + }, + { + "name": "contact", + "role": "feature", + "semantic_type": "categorical", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 3, + "unique_ratio": 8.3e-05, + "example_values": [ + "cellular", + "unknown", + "telephone" + ] + } + }, + { + "name": "day", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 31, + "unique_ratio": 0.000857, + "example_values": [ + "28", + "7", + "11", + "12", + "14" + ] + } + }, + { + "name": "month", + "role": "feature", + "semantic_type": "categorical", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 12, + "unique_ratio": 0.000332, + "example_values": [ + "jul", + "may", + "aug", + "oct", + "feb" + ] + } + }, + { + "name": "duration", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 1507, + "unique_ratio": 0.041667, + "example_values": [ + "100", + "120", + "70", + "291", + "102" + ] + } + }, + { + "name": "campaign", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 47, + "unique_ratio": 0.001299, + "example_values": [ + "16", + "1", + "2", + "5", + "4" + ] + } + }, + { + "name": "pdays", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 524, + "unique_ratio": 0.014488, + "example_values": [ + "-1", + "91", + "365", + "189", + "117" + ] + } + }, + { + "name": "previous", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 38, + "unique_ratio": 0.001051, + "example_values": [ + "0", + "4", + "1", + "2", + "3" + ] + } + }, + { + "name": "poutcome", + "role": "feature", + "semantic_type": "categorical", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 4, + "unique_ratio": 0.000111, + "example_values": [ + "unknown", + "failure", + "other", + "success" + ] + } + }, + { + "name": "y", + "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": 5.5e-05, + "example_values": [ + "no", + "yes" + ] + } + } + ], + "public_manifest": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/m8/realtabformer/rtf-m8-20260430_214424/public_gate/staged_input_manifest.json", + "train_csv": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/m8/realtabformer/rtf-m8-20260430_214424/staged/public/train.csv", + "val_csv": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/m8/realtabformer/rtf-m8-20260430_214424/staged/public/val.csv", + "test_csv": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/m8/realtabformer/rtf-m8-20260430_214424/staged/public/test.csv", + "features_json": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/m8/realtabformer/rtf-m8-20260430_214424/staged/public/staged_features.json", + "public_gate_report": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/m8/realtabformer/rtf-m8-20260430_214424/public_gate/public_gate_report.json" +} \ No newline at end of file diff --git a/timecost/m8/realtabformer/rtf-m8-20260430_214424/train_20260430_214424.log b/timecost/m8/realtabformer/rtf-m8-20260430_214424/train_20260430_214424.log new file mode 100644 index 0000000000000000000000000000000000000000..a84ca73ddb2d8d3315e45bb1c09e0677b6479760 --- /dev/null +++ b/timecost/m8/realtabformer/rtf-m8-20260430_214424/train_20260430_214424.log @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:a0ce0fd89f4616cf3f156b56521e543c2854dc2c86fca655c83f08af48ae56b6 +size 4389038 diff --git a/timecost/m8/realtabformer/rtf-m8-20260501_010220/gen_20260501_031538.log b/timecost/m8/realtabformer/rtf-m8-20260501_010220/gen_20260501_031538.log new file mode 100644 index 0000000000000000000000000000000000000000..cfa69e1486441925684030bea218b0d0469fcdeb --- /dev/null +++ b/timecost/m8/realtabformer/rtf-m8-20260501_010220/gen_20260501_031538.log @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:a725338258b9c7468e9c685e01b40d53c391c5610d2ecfb8ec52bd2d1f0e2bb6 +size 19117 diff --git a/timecost/m8/realtabformer/rtf-m8-20260501_010220/input_snapshot.json b/timecost/m8/realtabformer/rtf-m8-20260501_010220/input_snapshot.json new file mode 100644 index 0000000000000000000000000000000000000000..62eb69ea7a43b0a66c2b347eafa65101a98ffaf0 --- /dev/null +++ b/timecost/m8/realtabformer/rtf-m8-20260501_010220/input_snapshot.json @@ -0,0 +1,36 @@ +{ + "dataset_id": "m8", + "model": "realtabformer", + "inputs": { + "train_csv": { + "path": "/data/jialinzhang/SynthesizePipeline-server/DatasetNew/m8/m8-train.csv", + "exists": true, + "size": 2964802, + "sha256": "f9cbb71aa793de19869a138d41aea5808f772b31082741b185ffb8ca7b821833" + }, + "val_csv": { + "path": "/data/jialinzhang/SynthesizePipeline-server/DatasetNew/m8/m8-val.csv", + "exists": true, + "size": 370535, + "sha256": "5ee8612128aae92155906abc0fdc752ac24fd04d63c78c080c89e3900efe6525" + }, + "test_csv": { + "path": "/data/jialinzhang/SynthesizePipeline-server/DatasetNew/m8/m8-test.csv", + "exists": true, + "size": 370991, + "sha256": "6221943e422e75c8317b79b7ef93e9cd01f61fdd8de6ce42909a8e4610966310" + }, + "profile_json": { + "path": "/data/jialinzhang/SynthesizePipeline-server/DatasetNew/artifacts/data_core/tabular/m8/m8-dataset_profile.json", + "exists": true, + "size": 6553, + "sha256": "44f883858641584035a0a8859cb95dbcd3a023c03cbc76931aadfc4c70ef871f" + }, + "contract_json": { + "path": "/data/jialinzhang/SynthesizePipeline-server/DatasetNew/artifacts/data_core/tabular/m8/m8-dataset_contract_v1.json", + "exists": true, + "size": 8214, + "sha256": "e76df134780ec9b6c6c625a54e5d0c1935e9f4a7d09320ad19279a0492438d92" + } + } +} \ No newline at end of file diff --git a/timecost/m8/realtabformer/rtf-m8-20260501_010220/models_100epochs/id000017775765359558275072/rtf_config.json b/timecost/m8/realtabformer/rtf-m8-20260501_010220/models_100epochs/id000017775765359558275072/rtf_config.json new file mode 100644 index 0000000000000000000000000000000000000000..0f4b436b6b350449a1d310457045f17eb19d17ba --- /dev/null +++ b/timecost/m8/realtabformer/rtf-m8-20260501_010220/models_100epochs/id000017775765359558275072/rtf_config.json @@ -0,0 +1 @@ +{"model_type": "tabular", "tabular_config": {"transformers_version": "5.5.3", "architectures": ["GPT2LMHeadModel"], "output_hidden_states": false, "return_dict": true, "dtype": "float32", "chunk_size_feed_forward": 0, "is_encoder_decoder": false, "id2label": {"0": "LABEL_0", "1": "LABEL_1"}, "label2id": {"LABEL_0": 0, "LABEL_1": 1}, "problem_type": null, "vocab_size": 244, "n_positions": 1024, "n_embd": 768, "n_layer": 6, "n_head": 12, "n_inner": null, "activation_function": "gelu_new", "resid_pdrop": 0.1, "embd_pdrop": 0.1, "attn_pdrop": 0.1, "layer_norm_epsilon": 1e-05, "initializer_range": 0.02, "summary_type": "cls_index", "summary_use_proj": true, "summary_activation": null, "summary_proj_to_labels": true, "summary_first_dropout": 0.1, "scale_attn_weights": true, "use_cache": false, "bos_token_id": 5, "eos_token_id": 6, "pad_token_id": null, "scale_attn_by_inverse_layer_idx": false, "reorder_and_upcast_attn": false, "add_cross_attention": false, "tie_word_embeddings": true, "_name_or_path": "", "model_type": "gpt2", "output_attentions": false}, "checkpoints_dir": "rtf_checkpoints", "samples_save_dir": "rtf_samples", "full_save_dir": "rtf_full_save", "epochs": 100, "batch_size": 8, "early_stopping_patience": 5, "early_stopping_threshold": 0, "training_args_kwargs": {"eval_strategy": "no", "output_dir": "rtf_checkpoints", "metric_for_best_model": "loss", "num_train_epochs": 100, "per_device_train_batch_size": 8, "per_device_eval_batch_size": 8, "gradient_accumulation_steps": 4, "remove_unused_columns": true, "logging_steps": 100, "save_steps": 100, "eval_steps": 100, "load_best_model_at_end": false, "save_total_limit": 6, "optim": "adamw_torch"}, "train_size": 1, "mask_rate": 0, "columns": ["age", "job", "marital", "education", "default", "balance", "housing", "loan", "contact", "day", "month", "duration", "campaign", "pdays", "previous", "poutcome", "y"], "column_dtypes": {"age": "int64", "job": "object", "marital": "object", "education": "object", "default": "object", "balance": "int64", "housing": "object", "loan": "object", "contact": "object", "day": "int64", "month": "object", "duration": "int64", "campaign": "int64", "pdays": "int64", "previous": "int64", "poutcome": "object", "y": "object"}, "column_has_missing": {"age": false, "job": false, "marital": false, "education": false, "default": false, "balance": false, "housing": false, "loan": false, "contact": false, "day": false, "month": false, "duration": false, "campaign": false, "pdays": false, "previous": false, "poutcome": false, "y": false}, "drop_na_cols": ["age", "job", "marital", "education", "default", "balance", "housing", "loan", "contact", "day", "month", "duration", "campaign", "pdays", "previous", "poutcome", "y"], "processed_columns": ["00___NUMERIC___age_00", "00___NUMERIC___age_01", "01___CATEGORICAL___job", "02___CATEGORICAL___marital", "03___CATEGORICAL___education", "04___CATEGORICAL___default", "05___NUMERIC___balance_00", "05___NUMERIC___balance_01", "05___NUMERIC___balance_02", "05___NUMERIC___balance_03", "05___NUMERIC___balance_04", "05___NUMERIC___balance_05", "06___CATEGORICAL___housing", "07___CATEGORICAL___loan", "08___CATEGORICAL___contact", "09___NUMERIC___day_00", "09___NUMERIC___day_01", "10___CATEGORICAL___month", "11___NUMERIC___duration_00", "11___NUMERIC___duration_01", "11___NUMERIC___duration_02", "11___NUMERIC___duration_03", "12___NUMERIC___campaign_00", "12___NUMERIC___campaign_01", "13___NUMERIC___pdays_00", "13___NUMERIC___pdays_01", "13___NUMERIC___pdays_02", "14___NUMERIC___previous_00", "14___NUMERIC___previous_01", "14___NUMERIC___previous_02", "15___CATEGORICAL___poutcome", "16___CATEGORICAL___y"], "numeric_columns": ["age", "balance", "day", "duration", "campaign", "pdays", "previous"], "datetime_columns": [], "vocab": {"id2token": {"0": "[UNK]", "1": "[SEP]", "2": "[PAD]", "3": "[CLS]", "4": "[MASK]", "5": "[BOS]", "6": "[EOS]", "7": "[BMEM]", "8": "[EMEM]", "9": "[RMASK]", "10": "[SPTYPE]", "11": "00___NUMERIC___age_00___1", "12": "00___NUMERIC___age_00___2", "13": "00___NUMERIC___age_00___3", "14": "00___NUMERIC___age_00___4", "15": "00___NUMERIC___age_00___5", "16": "00___NUMERIC___age_00___6", "17": "00___NUMERIC___age_00___7", "18": "00___NUMERIC___age_00___8", "19": "00___NUMERIC___age_00___9", "20": "00___NUMERIC___age_01___0", "21": "00___NUMERIC___age_01___1", "22": "00___NUMERIC___age_01___2", "23": "00___NUMERIC___age_01___3", "24": "00___NUMERIC___age_01___4", "25": "00___NUMERIC___age_01___5", "26": "00___NUMERIC___age_01___6", "27": "00___NUMERIC___age_01___7", "28": "00___NUMERIC___age_01___8", "29": "00___NUMERIC___age_01___9", "30": "01___CATEGORICAL___job___admin.", "31": "01___CATEGORICAL___job___blue-collar", "32": "01___CATEGORICAL___job___entrepreneur", "33": "01___CATEGORICAL___job___housemaid", "34": "01___CATEGORICAL___job___management", "35": "01___CATEGORICAL___job___retired", "36": "01___CATEGORICAL___job___self-employed", "37": "01___CATEGORICAL___job___services", "38": "01___CATEGORICAL___job___student", "39": "01___CATEGORICAL___job___technician", "40": "01___CATEGORICAL___job___unemployed", "41": "01___CATEGORICAL___job___unknown", "42": "02___CATEGORICAL___marital___divorced", "43": "02___CATEGORICAL___marital___married", "44": "02___CATEGORICAL___marital___single", "45": "03___CATEGORICAL___education___primary", "46": "03___CATEGORICAL___education___secondary", "47": "03___CATEGORICAL___education___tertiary", "48": "03___CATEGORICAL___education___unknown", "49": "04___CATEGORICAL___default___no", "50": "04___CATEGORICAL___default___yes", "51": "05___NUMERIC___balance_00___-", "52": "05___NUMERIC___balance_00___0", "53": "05___NUMERIC___balance_00___1", "54": "05___NUMERIC___balance_01___0", "55": "05___NUMERIC___balance_01___1", "56": "05___NUMERIC___balance_01___2", "57": "05___NUMERIC___balance_01___3", "58": "05___NUMERIC___balance_01___4", "59": "05___NUMERIC___balance_01___5", "60": "05___NUMERIC___balance_01___6", "61": "05___NUMERIC___balance_01___7", "62": "05___NUMERIC___balance_01___8", "63": "05___NUMERIC___balance_01___9", "64": "05___NUMERIC___balance_02___0", "65": "05___NUMERIC___balance_02___1", "66": "05___NUMERIC___balance_02___2", "67": "05___NUMERIC___balance_02___3", "68": "05___NUMERIC___balance_02___4", "69": "05___NUMERIC___balance_02___5", "70": "05___NUMERIC___balance_02___6", "71": "05___NUMERIC___balance_02___7", "72": "05___NUMERIC___balance_02___8", "73": "05___NUMERIC___balance_02___9", "74": "05___NUMERIC___balance_03___0", "75": "05___NUMERIC___balance_03___1", "76": "05___NUMERIC___balance_03___2", "77": "05___NUMERIC___balance_03___3", "78": "05___NUMERIC___balance_03___4", "79": "05___NUMERIC___balance_03___5", "80": "05___NUMERIC___balance_03___6", "81": "05___NUMERIC___balance_03___7", "82": "05___NUMERIC___balance_03___8", "83": "05___NUMERIC___balance_03___9", "84": "05___NUMERIC___balance_04___0", "85": "05___NUMERIC___balance_04___1", "86": "05___NUMERIC___balance_04___2", "87": "05___NUMERIC___balance_04___3", "88": "05___NUMERIC___balance_04___4", "89": "05___NUMERIC___balance_04___5", "90": "05___NUMERIC___balance_04___6", "91": "05___NUMERIC___balance_04___7", "92": "05___NUMERIC___balance_04___8", "93": "05___NUMERIC___balance_04___9", "94": "05___NUMERIC___balance_05___0", "95": "05___NUMERIC___balance_05___1", "96": "05___NUMERIC___balance_05___2", "97": "05___NUMERIC___balance_05___3", "98": "05___NUMERIC___balance_05___4", "99": "05___NUMERIC___balance_05___5", "100": "05___NUMERIC___balance_05___6", "101": "05___NUMERIC___balance_05___7", "102": "05___NUMERIC___balance_05___8", "103": "05___NUMERIC___balance_05___9", "104": "06___CATEGORICAL___housing___no", "105": "06___CATEGORICAL___housing___yes", "106": "07___CATEGORICAL___loan___no", "107": "07___CATEGORICAL___loan___yes", "108": "08___CATEGORICAL___contact___cellular", "109": "08___CATEGORICAL___contact___telephone", "110": "08___CATEGORICAL___contact___unknown", "111": "09___NUMERIC___day_00___0", "112": "09___NUMERIC___day_00___1", "113": "09___NUMERIC___day_00___2", "114": "09___NUMERIC___day_00___3", "115": "09___NUMERIC___day_01___0", "116": "09___NUMERIC___day_01___1", "117": "09___NUMERIC___day_01___2", "118": "09___NUMERIC___day_01___3", "119": "09___NUMERIC___day_01___4", "120": "09___NUMERIC___day_01___5", "121": "09___NUMERIC___day_01___6", "122": "09___NUMERIC___day_01___7", "123": "09___NUMERIC___day_01___8", "124": "09___NUMERIC___day_01___9", "125": "10___CATEGORICAL___month___apr", "126": "10___CATEGORICAL___month___aug", "127": "10___CATEGORICAL___month___dec", "128": "10___CATEGORICAL___month___feb", "129": "10___CATEGORICAL___month___jan", "130": "10___CATEGORICAL___month___jul", "131": "10___CATEGORICAL___month___jun", "132": "10___CATEGORICAL___month___mar", "133": "10___CATEGORICAL___month___may", "134": "10___CATEGORICAL___month___nov", "135": "10___CATEGORICAL___month___oct", "136": "10___CATEGORICAL___month___sep", "137": "11___NUMERIC___duration_00___0", "138": "11___NUMERIC___duration_00___1", "139": "11___NUMERIC___duration_00___2", "140": "11___NUMERIC___duration_00___3", "141": "11___NUMERIC___duration_00___4", "142": "11___NUMERIC___duration_01___0", "143": "11___NUMERIC___duration_01___1", "144": "11___NUMERIC___duration_01___2", "145": "11___NUMERIC___duration_01___3", "146": "11___NUMERIC___duration_01___4", "147": "11___NUMERIC___duration_01___5", "148": "11___NUMERIC___duration_01___6", "149": "11___NUMERIC___duration_01___7", "150": "11___NUMERIC___duration_01___8", "151": "11___NUMERIC___duration_01___9", "152": "11___NUMERIC___duration_02___0", "153": "11___NUMERIC___duration_02___1", "154": "11___NUMERIC___duration_02___2", "155": "11___NUMERIC___duration_02___3", "156": "11___NUMERIC___duration_02___4", "157": "11___NUMERIC___duration_02___5", "158": "11___NUMERIC___duration_02___6", "159": "11___NUMERIC___duration_02___7", "160": "11___NUMERIC___duration_02___8", "161": "11___NUMERIC___duration_02___9", "162": "11___NUMERIC___duration_03___0", "163": "11___NUMERIC___duration_03___1", "164": "11___NUMERIC___duration_03___2", "165": "11___NUMERIC___duration_03___3", "166": "11___NUMERIC___duration_03___4", "167": "11___NUMERIC___duration_03___5", "168": "11___NUMERIC___duration_03___6", "169": "11___NUMERIC___duration_03___7", "170": "11___NUMERIC___duration_03___8", "171": "11___NUMERIC___duration_03___9", "172": "12___NUMERIC___campaign_00___0", "173": "12___NUMERIC___campaign_00___1", "174": "12___NUMERIC___campaign_00___2", "175": "12___NUMERIC___campaign_00___3", "176": "12___NUMERIC___campaign_00___4", "177": "12___NUMERIC___campaign_00___5", "178": "12___NUMERIC___campaign_00___6", "179": "12___NUMERIC___campaign_01___0", "180": "12___NUMERIC___campaign_01___1", "181": "12___NUMERIC___campaign_01___2", "182": "12___NUMERIC___campaign_01___3", "183": "12___NUMERIC___campaign_01___4", "184": "12___NUMERIC___campaign_01___5", "185": "12___NUMERIC___campaign_01___6", "186": "12___NUMERIC___campaign_01___7", "187": "12___NUMERIC___campaign_01___8", "188": "12___NUMERIC___campaign_01___9", "189": "13___NUMERIC___pdays_00___-", "190": "13___NUMERIC___pdays_00___0", "191": "13___NUMERIC___pdays_00___1", "192": "13___NUMERIC___pdays_00___2", "193": "13___NUMERIC___pdays_00___3", "194": "13___NUMERIC___pdays_00___4", "195": "13___NUMERIC___pdays_00___5", "196": "13___NUMERIC___pdays_00___6", "197": "13___NUMERIC___pdays_00___7", "198": "13___NUMERIC___pdays_00___8", "199": "13___NUMERIC___pdays_01___0", "200": "13___NUMERIC___pdays_01___1", "201": "13___NUMERIC___pdays_01___2", "202": "13___NUMERIC___pdays_01___3", "203": "13___NUMERIC___pdays_01___4", "204": "13___NUMERIC___pdays_01___5", "205": "13___NUMERIC___pdays_01___6", "206": "13___NUMERIC___pdays_01___7", "207": "13___NUMERIC___pdays_01___8", "208": "13___NUMERIC___pdays_01___9", "209": "13___NUMERIC___pdays_02___0", "210": "13___NUMERIC___pdays_02___1", "211": "13___NUMERIC___pdays_02___2", "212": "13___NUMERIC___pdays_02___3", "213": "13___NUMERIC___pdays_02___4", "214": "13___NUMERIC___pdays_02___5", "215": "13___NUMERIC___pdays_02___6", "216": "13___NUMERIC___pdays_02___7", "217": "13___NUMERIC___pdays_02___8", "218": "13___NUMERIC___pdays_02___9", "219": "14___NUMERIC___previous_00___0", "220": "14___NUMERIC___previous_00___2", "221": "14___NUMERIC___previous_01___0", "222": "14___NUMERIC___previous_01___1", "223": "14___NUMERIC___previous_01___2", "224": "14___NUMERIC___previous_01___3", "225": "14___NUMERIC___previous_01___4", "226": "14___NUMERIC___previous_01___5", "227": "14___NUMERIC___previous_01___7", "228": "14___NUMERIC___previous_02___0", "229": "14___NUMERIC___previous_02___1", "230": "14___NUMERIC___previous_02___2", "231": "14___NUMERIC___previous_02___3", "232": "14___NUMERIC___previous_02___4", "233": "14___NUMERIC___previous_02___5", "234": "14___NUMERIC___previous_02___6", "235": "14___NUMERIC___previous_02___7", "236": "14___NUMERIC___previous_02___8", "237": "14___NUMERIC___previous_02___9", "238": "15___CATEGORICAL___poutcome___failure", "239": "15___CATEGORICAL___poutcome___other", "240": "15___CATEGORICAL___poutcome___success", "241": "15___CATEGORICAL___poutcome___unknown", "242": "16___CATEGORICAL___y___no", "243": "16___CATEGORICAL___y___yes"}, "token2id": {"[UNK]": 0, "[SEP]": 1, "[PAD]": 2, "[CLS]": 3, "[MASK]": 4, "[BOS]": 5, "[EOS]": 6, "[BMEM]": 7, "[EMEM]": 8, "[RMASK]": 9, "[SPTYPE]": 10, "00___NUMERIC___age_00___1": 11, "00___NUMERIC___age_00___2": 12, "00___NUMERIC___age_00___3": 13, "00___NUMERIC___age_00___4": 14, "00___NUMERIC___age_00___5": 15, "00___NUMERIC___age_00___6": 16, "00___NUMERIC___age_00___7": 17, "00___NUMERIC___age_00___8": 18, "00___NUMERIC___age_00___9": 19, "00___NUMERIC___age_01___0": 20, "00___NUMERIC___age_01___1": 21, "00___NUMERIC___age_01___2": 22, "00___NUMERIC___age_01___3": 23, "00___NUMERIC___age_01___4": 24, "00___NUMERIC___age_01___5": 25, "00___NUMERIC___age_01___6": 26, "00___NUMERIC___age_01___7": 27, "00___NUMERIC___age_01___8": 28, "00___NUMERIC___age_01___9": 29, "01___CATEGORICAL___job___admin.": 30, "01___CATEGORICAL___job___blue-collar": 31, "01___CATEGORICAL___job___entrepreneur": 32, "01___CATEGORICAL___job___housemaid": 33, "01___CATEGORICAL___job___management": 34, "01___CATEGORICAL___job___retired": 35, "01___CATEGORICAL___job___self-employed": 36, "01___CATEGORICAL___job___services": 37, "01___CATEGORICAL___job___student": 38, "01___CATEGORICAL___job___technician": 39, "01___CATEGORICAL___job___unemployed": 40, "01___CATEGORICAL___job___unknown": 41, "02___CATEGORICAL___marital___divorced": 42, "02___CATEGORICAL___marital___married": 43, "02___CATEGORICAL___marital___single": 44, "03___CATEGORICAL___education___primary": 45, "03___CATEGORICAL___education___secondary": 46, "03___CATEGORICAL___education___tertiary": 47, "03___CATEGORICAL___education___unknown": 48, "04___CATEGORICAL___default___no": 49, "04___CATEGORICAL___default___yes": 50, "05___NUMERIC___balance_00___-": 51, "05___NUMERIC___balance_00___0": 52, "05___NUMERIC___balance_00___1": 53, "05___NUMERIC___balance_01___0": 54, "05___NUMERIC___balance_01___1": 55, "05___NUMERIC___balance_01___2": 56, "05___NUMERIC___balance_01___3": 57, "05___NUMERIC___balance_01___4": 58, "05___NUMERIC___balance_01___5": 59, "05___NUMERIC___balance_01___6": 60, "05___NUMERIC___balance_01___7": 61, "05___NUMERIC___balance_01___8": 62, "05___NUMERIC___balance_01___9": 63, "05___NUMERIC___balance_02___0": 64, "05___NUMERIC___balance_02___1": 65, "05___NUMERIC___balance_02___2": 66, "05___NUMERIC___balance_02___3": 67, "05___NUMERIC___balance_02___4": 68, "05___NUMERIC___balance_02___5": 69, "05___NUMERIC___balance_02___6": 70, "05___NUMERIC___balance_02___7": 71, "05___NUMERIC___balance_02___8": 72, "05___NUMERIC___balance_02___9": 73, "05___NUMERIC___balance_03___0": 74, "05___NUMERIC___balance_03___1": 75, "05___NUMERIC___balance_03___2": 76, "05___NUMERIC___balance_03___3": 77, "05___NUMERIC___balance_03___4": 78, "05___NUMERIC___balance_03___5": 79, "05___NUMERIC___balance_03___6": 80, "05___NUMERIC___balance_03___7": 81, "05___NUMERIC___balance_03___8": 82, "05___NUMERIC___balance_03___9": 83, "05___NUMERIC___balance_04___0": 84, "05___NUMERIC___balance_04___1": 85, "05___NUMERIC___balance_04___2": 86, "05___NUMERIC___balance_04___3": 87, "05___NUMERIC___balance_04___4": 88, "05___NUMERIC___balance_04___5": 89, "05___NUMERIC___balance_04___6": 90, "05___NUMERIC___balance_04___7": 91, "05___NUMERIC___balance_04___8": 92, "05___NUMERIC___balance_04___9": 93, "05___NUMERIC___balance_05___0": 94, "05___NUMERIC___balance_05___1": 95, "05___NUMERIC___balance_05___2": 96, "05___NUMERIC___balance_05___3": 97, "05___NUMERIC___balance_05___4": 98, "05___NUMERIC___balance_05___5": 99, "05___NUMERIC___balance_05___6": 100, "05___NUMERIC___balance_05___7": 101, "05___NUMERIC___balance_05___8": 102, "05___NUMERIC___balance_05___9": 103, "06___CATEGORICAL___housing___no": 104, "06___CATEGORICAL___housing___yes": 105, "07___CATEGORICAL___loan___no": 106, "07___CATEGORICAL___loan___yes": 107, "08___CATEGORICAL___contact___cellular": 108, "08___CATEGORICAL___contact___telephone": 109, "08___CATEGORICAL___contact___unknown": 110, "09___NUMERIC___day_00___0": 111, "09___NUMERIC___day_00___1": 112, "09___NUMERIC___day_00___2": 113, "09___NUMERIC___day_00___3": 114, "09___NUMERIC___day_01___0": 115, "09___NUMERIC___day_01___1": 116, "09___NUMERIC___day_01___2": 117, "09___NUMERIC___day_01___3": 118, "09___NUMERIC___day_01___4": 119, "09___NUMERIC___day_01___5": 120, "09___NUMERIC___day_01___6": 121, "09___NUMERIC___day_01___7": 122, "09___NUMERIC___day_01___8": 123, "09___NUMERIC___day_01___9": 124, "10___CATEGORICAL___month___apr": 125, "10___CATEGORICAL___month___aug": 126, "10___CATEGORICAL___month___dec": 127, "10___CATEGORICAL___month___feb": 128, "10___CATEGORICAL___month___jan": 129, "10___CATEGORICAL___month___jul": 130, "10___CATEGORICAL___month___jun": 131, "10___CATEGORICAL___month___mar": 132, "10___CATEGORICAL___month___may": 133, "10___CATEGORICAL___month___nov": 134, "10___CATEGORICAL___month___oct": 135, "10___CATEGORICAL___month___sep": 136, "11___NUMERIC___duration_00___0": 137, "11___NUMERIC___duration_00___1": 138, "11___NUMERIC___duration_00___2": 139, "11___NUMERIC___duration_00___3": 140, "11___NUMERIC___duration_00___4": 141, "11___NUMERIC___duration_01___0": 142, "11___NUMERIC___duration_01___1": 143, "11___NUMERIC___duration_01___2": 144, "11___NUMERIC___duration_01___3": 145, "11___NUMERIC___duration_01___4": 146, "11___NUMERIC___duration_01___5": 147, "11___NUMERIC___duration_01___6": 148, "11___NUMERIC___duration_01___7": 149, "11___NUMERIC___duration_01___8": 150, "11___NUMERIC___duration_01___9": 151, "11___NUMERIC___duration_02___0": 152, "11___NUMERIC___duration_02___1": 153, "11___NUMERIC___duration_02___2": 154, "11___NUMERIC___duration_02___3": 155, "11___NUMERIC___duration_02___4": 156, "11___NUMERIC___duration_02___5": 157, "11___NUMERIC___duration_02___6": 158, "11___NUMERIC___duration_02___7": 159, "11___NUMERIC___duration_02___8": 160, "11___NUMERIC___duration_02___9": 161, "11___NUMERIC___duration_03___0": 162, "11___NUMERIC___duration_03___1": 163, "11___NUMERIC___duration_03___2": 164, "11___NUMERIC___duration_03___3": 165, "11___NUMERIC___duration_03___4": 166, "11___NUMERIC___duration_03___5": 167, "11___NUMERIC___duration_03___6": 168, "11___NUMERIC___duration_03___7": 169, "11___NUMERIC___duration_03___8": 170, "11___NUMERIC___duration_03___9": 171, "12___NUMERIC___campaign_00___0": 172, "12___NUMERIC___campaign_00___1": 173, "12___NUMERIC___campaign_00___2": 174, "12___NUMERIC___campaign_00___3": 175, "12___NUMERIC___campaign_00___4": 176, "12___NUMERIC___campaign_00___5": 177, "12___NUMERIC___campaign_00___6": 178, "12___NUMERIC___campaign_01___0": 179, "12___NUMERIC___campaign_01___1": 180, "12___NUMERIC___campaign_01___2": 181, "12___NUMERIC___campaign_01___3": 182, "12___NUMERIC___campaign_01___4": 183, "12___NUMERIC___campaign_01___5": 184, "12___NUMERIC___campaign_01___6": 185, "12___NUMERIC___campaign_01___7": 186, "12___NUMERIC___campaign_01___8": 187, "12___NUMERIC___campaign_01___9": 188, "13___NUMERIC___pdays_00___-": 189, "13___NUMERIC___pdays_00___0": 190, "13___NUMERIC___pdays_00___1": 191, "13___NUMERIC___pdays_00___2": 192, "13___NUMERIC___pdays_00___3": 193, "13___NUMERIC___pdays_00___4": 194, "13___NUMERIC___pdays_00___5": 195, "13___NUMERIC___pdays_00___6": 196, "13___NUMERIC___pdays_00___7": 197, "13___NUMERIC___pdays_00___8": 198, "13___NUMERIC___pdays_01___0": 199, "13___NUMERIC___pdays_01___1": 200, "13___NUMERIC___pdays_01___2": 201, "13___NUMERIC___pdays_01___3": 202, "13___NUMERIC___pdays_01___4": 203, "13___NUMERIC___pdays_01___5": 204, "13___NUMERIC___pdays_01___6": 205, "13___NUMERIC___pdays_01___7": 206, "13___NUMERIC___pdays_01___8": 207, "13___NUMERIC___pdays_01___9": 208, "13___NUMERIC___pdays_02___0": 209, "13___NUMERIC___pdays_02___1": 210, "13___NUMERIC___pdays_02___2": 211, "13___NUMERIC___pdays_02___3": 212, "13___NUMERIC___pdays_02___4": 213, "13___NUMERIC___pdays_02___5": 214, "13___NUMERIC___pdays_02___6": 215, "13___NUMERIC___pdays_02___7": 216, "13___NUMERIC___pdays_02___8": 217, "13___NUMERIC___pdays_02___9": 218, "14___NUMERIC___previous_00___0": 219, "14___NUMERIC___previous_00___2": 220, "14___NUMERIC___previous_01___0": 221, "14___NUMERIC___previous_01___1": 222, "14___NUMERIC___previous_01___2": 223, "14___NUMERIC___previous_01___3": 224, "14___NUMERIC___previous_01___4": 225, "14___NUMERIC___previous_01___5": 226, "14___NUMERIC___previous_01___7": 227, "14___NUMERIC___previous_02___0": 228, "14___NUMERIC___previous_02___1": 229, "14___NUMERIC___previous_02___2": 230, "14___NUMERIC___previous_02___3": 231, "14___NUMERIC___previous_02___4": 232, "14___NUMERIC___previous_02___5": 233, "14___NUMERIC___previous_02___6": 234, "14___NUMERIC___previous_02___7": 235, "14___NUMERIC___previous_02___8": 236, "14___NUMERIC___previous_02___9": 237, "15___CATEGORICAL___poutcome___failure": 238, "15___CATEGORICAL___poutcome___other": 239, "15___CATEGORICAL___poutcome___success": 240, "15___CATEGORICAL___poutcome___unknown": 241, "16___CATEGORICAL___y___no": 242, "16___CATEGORICAL___y___yes": 243}, "column_token_ids": {"00___NUMERIC___age_00": [11, 12, 13, 14, 15, 16, 17, 18, 19], "00___NUMERIC___age_01": [20, 21, 22, 23, 24, 25, 26, 27, 28, 29], "01___CATEGORICAL___job": [30, 31, 32, 33, 34, 35, 36, 37, 38, 39, 40, 41], "02___CATEGORICAL___marital": [42, 43, 44], "03___CATEGORICAL___education": [45, 46, 47, 48], "04___CATEGORICAL___default": [49, 50], "05___NUMERIC___balance_00": [51, 52, 53], "05___NUMERIC___balance_01": [54, 55, 56, 57, 58, 59, 60, 61, 62, 63], "05___NUMERIC___balance_02": [64, 65, 66, 67, 68, 69, 70, 71, 72, 73], "05___NUMERIC___balance_03": [74, 75, 76, 77, 78, 79, 80, 81, 82, 83], "05___NUMERIC___balance_04": [84, 85, 86, 87, 88, 89, 90, 91, 92, 93], "05___NUMERIC___balance_05": [94, 95, 96, 97, 98, 99, 100, 101, 102, 103], "06___CATEGORICAL___housing": [104, 105], "07___CATEGORICAL___loan": [106, 107], "08___CATEGORICAL___contact": [108, 109, 110], "09___NUMERIC___day_00": [111, 112, 113, 114], "09___NUMERIC___day_01": [115, 116, 117, 118, 119, 120, 121, 122, 123, 124], "10___CATEGORICAL___month": [125, 126, 127, 128, 129, 130, 131, 132, 133, 134, 135, 136], "11___NUMERIC___duration_00": [137, 138, 139, 140, 141], "11___NUMERIC___duration_01": [142, 143, 144, 145, 146, 147, 148, 149, 150, 151], "11___NUMERIC___duration_02": [152, 153, 154, 155, 156, 157, 158, 159, 160, 161], "11___NUMERIC___duration_03": [162, 163, 164, 165, 166, 167, 168, 169, 170, 171], "12___NUMERIC___campaign_00": [172, 173, 174, 175, 176, 177, 178], "12___NUMERIC___campaign_01": [179, 180, 181, 182, 183, 184, 185, 186, 187, 188], "13___NUMERIC___pdays_00": [189, 190, 191, 192, 193, 194, 195, 196, 197, 198], "13___NUMERIC___pdays_01": [199, 200, 201, 202, 203, 204, 205, 206, 207, 208], "13___NUMERIC___pdays_02": [209, 210, 211, 212, 213, 214, 215, 216, 217, 218], "14___NUMERIC___previous_00": [219, 220], "14___NUMERIC___previous_01": [221, 222, 223, 224, 225, 226, 227], "14___NUMERIC___previous_02": [228, 229, 230, 231, 232, 233, 234, 235, 236, 237], "15___CATEGORICAL___poutcome": [238, 239, 240, 241], "16___CATEGORICAL___y": [242, 243]}}, "tabular_max_length": 34, "relational_max_length": null, "tabular_col_size": 36168, "relational_col_size": null, "col_transform_data": {"age": {"max_len": 10, "numeric_precision": 4, "mx_sig": -1, "zfill": 2, "numeric_nparts": 1}, "balance": {"max_len": 10, "numeric_precision": 4, "mx_sig": -1, "zfill": 6, "numeric_nparts": 1}, "day": {"max_len": 10, "numeric_precision": 4, "mx_sig": -1, "zfill": 2, "numeric_nparts": 1}, "duration": {"max_len": 10, "numeric_precision": 4, "mx_sig": -1, "zfill": 4, "numeric_nparts": 1}, "campaign": {"max_len": 10, "numeric_precision": 4, "mx_sig": -1, "zfill": 2, "numeric_nparts": 1}, "pdays": {"max_len": 10, "numeric_precision": 4, "mx_sig": -1, "zfill": 3, "numeric_nparts": 1}, "previous": {"max_len": 10, "numeric_precision": 4, "mx_sig": -1, "zfill": 3, "numeric_nparts": 1}}, "in_col_transform_data": null, "col_idx_ids": {"0": [11, 12, 13, 14, 15, 16, 17, 18, 19], "1": [20, 21, 22, 23, 24, 25, 26, 27, 28, 29], "2": [30, 31, 32, 33, 34, 35, 36, 37, 38, 39, 40, 41], "3": [42, 43, 44], "4": [45, 46, 47, 48], "5": [49, 50], "6": [51, 52, 53], "7": [54, 55, 56, 57, 58, 59, 60, 61, 62, 63], "8": [64, 65, 66, 67, 68, 69, 70, 71, 72, 73], "9": [74, 75, 76, 77, 78, 79, 80, 81, 82, 83], "10": [84, 85, 86, 87, 88, 89, 90, 91, 92, 93], "11": [94, 95, 96, 97, 98, 99, 100, 101, 102, 103], "12": [104, 105], "13": [106, 107], "14": [108, 109, 110], "15": [111, 112, 113, 114], "16": [115, 116, 117, 118, 119, 120, 121, 122, 123, 124], "17": [125, 126, 127, 128, 129, 130, 131, 132, 133, 134, 135, 136], "18": [137, 138, 139, 140, 141], "19": [142, 143, 144, 145, 146, 147, 148, 149, 150, 151], "20": [152, 153, 154, 155, 156, 157, 158, 159, 160, 161], "21": [162, 163, 164, 165, 166, 167, 168, 169, 170, 171], "22": [172, 173, 174, 175, 176, 177, 178], "23": [179, 180, 181, 182, 183, 184, 185, 186, 187, 188], "24": [189, 190, 191, 192, 193, 194, 195, 196, 197, 198], "25": [199, 200, 201, 202, 203, 204, 205, 206, 207, 208], "26": [209, 210, 211, 212, 213, 214, 215, 216, 217, 218], "27": [219, 220], "28": [221, 222, 223, 224, 225, 226, 227], "29": [228, 229, 230, 231, 232, 233, 234, 235, 236, 237], "30": [238, 239, 240, 241], "31": [242, 243]}, "random_state": 1029, "numeric_nparts": 1, "numeric_precision": 4, "numeric_max_len": 10, "experiment_id": "id000017775765359558275072", "trainer_state": null, "target_col": null, "realtabformer_version": "0.2.4"} \ No newline at end of file diff --git a/timecost/m8/realtabformer/rtf-m8-20260501_010220/models_100epochs/id000017775765359558275072/rtf_model.pt b/timecost/m8/realtabformer/rtf-m8-20260501_010220/models_100epochs/id000017775765359558275072/rtf_model.pt new file mode 100644 index 0000000000000000000000000000000000000000..7d332746ef55eff95540e087edac0d4ae635da5a --- /dev/null +++ b/timecost/m8/realtabformer/rtf-m8-20260501_010220/models_100epochs/id000017775765359558275072/rtf_model.pt @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:75b9c6203d3620c952c6d029ba39c2087ab5f7cdd1a94a8c4eaefbd8024c0d92 +size 174039523 diff --git a/timecost/m8/realtabformer/rtf-m8-20260501_010220/public_gate/normalized_schema_snapshot.json b/timecost/m8/realtabformer/rtf-m8-20260501_010220/public_gate/normalized_schema_snapshot.json new file mode 100644 index 0000000000000000000000000000000000000000..5e616edd2b7924c5e07f02ccbbb842529655f52a --- /dev/null +++ b/timecost/m8/realtabformer/rtf-m8-20260501_010220/public_gate/normalized_schema_snapshot.json @@ -0,0 +1,346 @@ +{ + "dataset_id": "m8", + "target_column": "y", + "task_type": "classification", + "columns": [ + { + "name": "age", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 76, + "unique_ratio": 0.002101, + "example_values": [ + "40", + "52", + "31", + "51", + "44" + ] + } + }, + { + "name": "job", + "role": "feature", + "semantic_type": "categorical", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 12, + "unique_ratio": 0.000332, + "example_values": [ + "admin.", + "technician", + "entrepreneur", + "blue-collar", + "services" + ] + } + }, + { + "name": "marital", + "role": "feature", + "semantic_type": "categorical", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 3, + "unique_ratio": 8.3e-05, + "example_values": [ + "single", + "married", + "divorced" + ] + } + }, + { + "name": "education", + "role": "feature", + "semantic_type": "categorical", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 4, + "unique_ratio": 0.000111, + "example_values": [ + "secondary", + "tertiary", + "primary", + "unknown" + ] + } + }, + { + "name": "default", + "role": "feature", + "semantic_type": "boolean", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 2, + "unique_ratio": 5.5e-05, + "example_values": [ + "no", + "yes" + ] + } + }, + { + "name": "balance", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 6604, + "unique_ratio": 0.182592, + "example_values": [ + "419", + "31", + "7567", + "315", + "737" + ] + } + }, + { + "name": "housing", + "role": "feature", + "semantic_type": "boolean", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 2, + "unique_ratio": 5.5e-05, + "example_values": [ + "no", + "yes" + ] + } + }, + { + "name": "loan", + "role": "feature", + "semantic_type": "boolean", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 2, + "unique_ratio": 5.5e-05, + "example_values": [ + "yes", + "no" + ] + } + }, + { + "name": "contact", + "role": "feature", + "semantic_type": "categorical", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 3, + "unique_ratio": 8.3e-05, + "example_values": [ + "cellular", + "unknown", + "telephone" + ] + } + }, + { + "name": "day", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 31, + "unique_ratio": 0.000857, + "example_values": [ + "28", + "7", + "11", + "12", + "14" + ] + } + }, + { + "name": "month", + "role": "feature", + "semantic_type": "categorical", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 12, + "unique_ratio": 0.000332, + "example_values": [ + "jul", + "may", + "aug", + "oct", + "feb" + ] + } + }, + { + "name": "duration", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 1507, + "unique_ratio": 0.041667, + "example_values": [ + "100", + "120", + "70", + "291", + "102" + ] + } + }, + { + "name": "campaign", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 47, + "unique_ratio": 0.001299, + "example_values": [ + "16", + "1", + "2", + "5", + "4" + ] + } + }, + { + "name": "pdays", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 524, + "unique_ratio": 0.014488, + "example_values": [ + "-1", + "91", + "365", + "189", + "117" + ] + } + }, + { + "name": "previous", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 38, + "unique_ratio": 0.001051, + "example_values": [ + "0", + "4", + "1", + "2", + "3" + ] + } + }, + { + "name": "poutcome", + "role": "feature", + "semantic_type": "categorical", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 4, + "unique_ratio": 0.000111, + "example_values": [ + "unknown", + "failure", + "other", + "success" + ] + } + }, + { + "name": "y", + "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": 5.5e-05, + "example_values": [ + "no", + "yes" + ] + } + } + ] +} \ No newline at end of file diff --git a/timecost/m8/realtabformer/rtf-m8-20260501_010220/public_gate/public_gate_report.json b/timecost/m8/realtabformer/rtf-m8-20260501_010220/public_gate/public_gate_report.json new file mode 100644 index 0000000000000000000000000000000000000000..318ead0018618096d718d3ec1140561db7e0a70f --- /dev/null +++ b/timecost/m8/realtabformer/rtf-m8-20260501_010220/public_gate/public_gate_report.json @@ -0,0 +1,37 @@ +{ + "dataset_id": "m8", + "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": "y", + "task_type": "classification", + "input_splits": { + "train": "/data/jialinzhang/SynthesizePipeline-server/DatasetNew/m8/m8-train.csv", + "val": "/data/jialinzhang/SynthesizePipeline-server/DatasetNew/m8/m8-val.csv", + "test": "/data/jialinzhang/SynthesizePipeline-server/DatasetNew/m8/m8-test.csv" + } +} \ No newline at end of file diff --git a/timecost/m8/realtabformer/rtf-m8-20260501_010220/public_gate/staged_input_manifest.json b/timecost/m8/realtabformer/rtf-m8-20260501_010220/public_gate/staged_input_manifest.json new file mode 100644 index 0000000000000000000000000000000000000000..3f8437f2222c3d22ad3afa9ac74f4760b8bf6658 --- /dev/null +++ b/timecost/m8/realtabformer/rtf-m8-20260501_010220/public_gate/staged_input_manifest.json @@ -0,0 +1,351 @@ +{ + "dataset_id": "m8", + "target_column": "y", + "task_type": "classification", + "train_csv": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/m8/realtabformer/rtf-m8-20260501_010220/staged/public/train.csv", + "val_csv": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/m8/realtabformer/rtf-m8-20260501_010220/staged/public/val.csv", + "test_csv": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/m8/realtabformer/rtf-m8-20260501_010220/staged/public/test.csv", + "features_json": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/m8/realtabformer/rtf-m8-20260501_010220/staged/public/staged_features.json", + "public_gate_report": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/m8/realtabformer/rtf-m8-20260501_010220/public_gate/public_gate_report.json", + "column_schema": [ + { + "name": "age", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 76, + "unique_ratio": 0.002101, + "example_values": [ + "40", + "52", + "31", + "51", + "44" + ] + } + }, + { + "name": "job", + "role": "feature", + "semantic_type": "categorical", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 12, + "unique_ratio": 0.000332, + "example_values": [ + "admin.", + "technician", + "entrepreneur", + "blue-collar", + "services" + ] + } + }, + { + "name": "marital", + "role": "feature", + "semantic_type": "categorical", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 3, + "unique_ratio": 8.3e-05, + "example_values": [ + "single", + "married", + "divorced" + ] + } + }, + { + "name": "education", + "role": "feature", + "semantic_type": "categorical", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 4, + "unique_ratio": 0.000111, + "example_values": [ + "secondary", + "tertiary", + "primary", + "unknown" + ] + } + }, + { + "name": "default", + "role": "feature", + "semantic_type": "boolean", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 2, + "unique_ratio": 5.5e-05, + "example_values": [ + "no", + "yes" + ] + } + }, + { + "name": "balance", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 6604, + "unique_ratio": 0.182592, + "example_values": [ + "419", + "31", + "7567", + "315", + "737" + ] + } + }, + { + "name": "housing", + "role": "feature", + "semantic_type": "boolean", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 2, + "unique_ratio": 5.5e-05, + "example_values": [ + "no", + "yes" + ] + } + }, + { + "name": "loan", + "role": "feature", + "semantic_type": "boolean", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 2, + "unique_ratio": 5.5e-05, + "example_values": [ + "yes", + "no" + ] + } + }, + { + "name": "contact", + "role": "feature", + "semantic_type": "categorical", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 3, + "unique_ratio": 8.3e-05, + "example_values": [ + "cellular", + "unknown", + "telephone" + ] + } + }, + { + "name": "day", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 31, + "unique_ratio": 0.000857, + "example_values": [ + "28", + "7", + "11", + "12", + "14" + ] + } + }, + { + "name": "month", + "role": "feature", + "semantic_type": "categorical", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 12, + "unique_ratio": 0.000332, + "example_values": [ + "jul", + "may", + "aug", + "oct", + "feb" + ] + } + }, + { + "name": "duration", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 1507, + "unique_ratio": 0.041667, + "example_values": [ + "100", + "120", + "70", + "291", + "102" + ] + } + }, + { + "name": "campaign", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 47, + "unique_ratio": 0.001299, + "example_values": [ + "16", + "1", + "2", + "5", + "4" + ] + } + }, + { + "name": "pdays", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 524, + "unique_ratio": 0.014488, + "example_values": [ + "-1", + "91", + "365", + "189", + "117" + ] + } + }, + { + "name": "previous", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 38, + "unique_ratio": 0.001051, + "example_values": [ + "0", + "4", + "1", + "2", + "3" + ] + } + }, + { + "name": "poutcome", + "role": "feature", + "semantic_type": "categorical", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 4, + "unique_ratio": 0.000111, + "example_values": [ + "unknown", + "failure", + "other", + "success" + ] + } + }, + { + "name": "y", + "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": 5.5e-05, + "example_values": [ + "no", + "yes" + ] + } + } + ] +} \ No newline at end of file diff --git a/timecost/m8/realtabformer/rtf-m8-20260501_010220/realtabformer_features.json b/timecost/m8/realtabformer/rtf-m8-20260501_010220/realtabformer_features.json new file mode 100644 index 0000000000000000000000000000000000000000..11323e8dc5c8a2eaafa8e404e60d3db7e244452a --- /dev/null +++ b/timecost/m8/realtabformer/rtf-m8-20260501_010220/realtabformer_features.json @@ -0,0 +1,87 @@ +[ + { + "feature_name": "age", + "data_type": "continuous", + "is_target": false + }, + { + "feature_name": "job", + "data_type": "categorical", + "is_target": false + }, + { + "feature_name": "marital", + "data_type": "categorical", + "is_target": false + }, + { + "feature_name": "education", + "data_type": "categorical", + "is_target": false + }, + { + "feature_name": "default", + "data_type": "binary", + "is_target": false + }, + { + "feature_name": "balance", + "data_type": "continuous", + "is_target": false + }, + { + "feature_name": "housing", + "data_type": "binary", + "is_target": false + }, + { + "feature_name": "loan", + "data_type": "binary", + "is_target": false + }, + { + "feature_name": "contact", + "data_type": "categorical", + "is_target": false + }, + { + "feature_name": "day", + "data_type": "continuous", + "is_target": false + }, + { + "feature_name": "month", + "data_type": "categorical", + "is_target": false + }, + { + "feature_name": "duration", + "data_type": "continuous", + "is_target": false + }, + { + "feature_name": "campaign", + "data_type": "continuous", + "is_target": false + }, + { + "feature_name": "pdays", + "data_type": "continuous", + "is_target": false + }, + { + "feature_name": "previous", + "data_type": "continuous", + "is_target": false + }, + { + "feature_name": "poutcome", + "data_type": "categorical", + "is_target": false + }, + { + "feature_name": "y", + "data_type": "binary", + "is_target": true + } +] \ No newline at end of file diff --git a/timecost/m8/realtabformer/rtf-m8-20260501_010220/rtf-m8-36168-20260501_031538.csv b/timecost/m8/realtabformer/rtf-m8-20260501_010220/rtf-m8-36168-20260501_031538.csv new file mode 100644 index 0000000000000000000000000000000000000000..e24841cb0c61ab3d7d6b84f148d4026e837cbe10 --- /dev/null +++ b/timecost/m8/realtabformer/rtf-m8-20260501_010220/rtf-m8-36168-20260501_031538.csv @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:cd83645b126d9d1d02a0e318878d4745ef752660afbd7252ab0f79e5bacd9242 +size 2963922 diff --git a/timecost/m8/realtabformer/rtf-m8-20260501_010220/rtf_checkpoints/checkpoint-112600/config.json b/timecost/m8/realtabformer/rtf-m8-20260501_010220/rtf_checkpoints/checkpoint-112600/config.json new file mode 100644 index 0000000000000000000000000000000000000000..d98dd02b920679d4da3c8b60a9be119058fb9fe3 --- /dev/null +++ b/timecost/m8/realtabformer/rtf-m8-20260501_010220/rtf_checkpoints/checkpoint-112600/config.json @@ -0,0 +1,34 @@ +{ + "activation_function": "gelu_new", + "add_cross_attention": false, + "architectures": [ + "GPT2LMHeadModel" + ], + "attn_pdrop": 0.1, + "bos_token_id": 5, + "dtype": "float32", + "embd_pdrop": 0.1, + "eos_token_id": 6, + "initializer_range": 0.02, + "layer_norm_epsilon": 1e-05, + "model_type": "gpt2", + "n_embd": 768, + "n_head": 12, + "n_inner": null, + "n_layer": 6, + "n_positions": 1024, + "pad_token_id": null, + "reorder_and_upcast_attn": false, + "resid_pdrop": 0.1, + "scale_attn_by_inverse_layer_idx": false, + "scale_attn_weights": true, + "summary_activation": null, + "summary_first_dropout": 0.1, + "summary_proj_to_labels": true, + "summary_type": "cls_index", + "summary_use_proj": true, + "tie_word_embeddings": true, + "transformers_version": "5.5.3", + "use_cache": false, + "vocab_size": 244 +} diff --git a/timecost/m8/realtabformer/rtf-m8-20260501_010220/rtf_checkpoints/checkpoint-112600/generation_config.json b/timecost/m8/realtabformer/rtf-m8-20260501_010220/rtf_checkpoints/checkpoint-112600/generation_config.json new file mode 100644 index 0000000000000000000000000000000000000000..ffe89567780e75b5c22eade9be971483b9618f39 --- /dev/null +++ b/timecost/m8/realtabformer/rtf-m8-20260501_010220/rtf_checkpoints/checkpoint-112600/generation_config.json @@ -0,0 +1,9 @@ +{ + "_from_model_config": true, + "bos_token_id": 5, + "eos_token_id": 6, + "output_attentions": false, + "output_hidden_states": false, + "transformers_version": "5.5.3", + "use_cache": true +} diff --git a/timecost/m8/realtabformer/rtf-m8-20260501_010220/rtf_checkpoints/checkpoint-112600/model.safetensors b/timecost/m8/realtabformer/rtf-m8-20260501_010220/rtf_checkpoints/checkpoint-112600/model.safetensors new file mode 100644 index 0000000000000000000000000000000000000000..818cb9a42b25c622f5682c8fc6180b83be720aab --- /dev/null +++ b/timecost/m8/realtabformer/rtf-m8-20260501_010220/rtf_checkpoints/checkpoint-112600/model.safetensors @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:7245a046468976758590b25616b02257c9446729b8be816d2d3b0c963104f00c +size 174017992 diff --git a/timecost/m8/realtabformer/rtf-m8-20260501_010220/rtf_checkpoints/checkpoint-112600/optimizer.pt b/timecost/m8/realtabformer/rtf-m8-20260501_010220/rtf_checkpoints/checkpoint-112600/optimizer.pt new file mode 100644 index 0000000000000000000000000000000000000000..0fbb87fb4c4ded57c8ece25bf3bc63dd4b0b808a --- /dev/null +++ b/timecost/m8/realtabformer/rtf-m8-20260501_010220/rtf_checkpoints/checkpoint-112600/optimizer.pt @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:ed74ed5cd79cfde2c1472f03b96b1bc52f35c11fa702201b1a4fc020ca868872 +size 348085067 diff --git a/timecost/m8/realtabformer/rtf-m8-20260501_010220/rtf_checkpoints/checkpoint-112600/rng_state.pth b/timecost/m8/realtabformer/rtf-m8-20260501_010220/rtf_checkpoints/checkpoint-112600/rng_state.pth new file mode 100644 index 0000000000000000000000000000000000000000..1bdbcc871cdf6dd3f99871b6c402fa8a948b1baf --- /dev/null +++ b/timecost/m8/realtabformer/rtf-m8-20260501_010220/rtf_checkpoints/checkpoint-112600/rng_state.pth @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:2ac7bb7cb7b96c22a2c729a8e4ee257f4e7e462d2d6083b43c8c23f5402f801a +size 14645 diff --git a/timecost/m8/realtabformer/rtf-m8-20260501_010220/rtf_checkpoints/checkpoint-112600/scaler.pt b/timecost/m8/realtabformer/rtf-m8-20260501_010220/rtf_checkpoints/checkpoint-112600/scaler.pt new file mode 100644 index 0000000000000000000000000000000000000000..15c7aa9f9f6c01e1369aff87b87d0eb2a95f6864 --- /dev/null +++ b/timecost/m8/realtabformer/rtf-m8-20260501_010220/rtf_checkpoints/checkpoint-112600/scaler.pt @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:578e2754ebb2620cd7bb5705f92341c34ca69c812a34662dd1b9e41b27241ce5 +size 1383 diff --git a/timecost/m8/realtabformer/rtf-m8-20260501_010220/rtf_checkpoints/checkpoint-112600/scheduler.pt b/timecost/m8/realtabformer/rtf-m8-20260501_010220/rtf_checkpoints/checkpoint-112600/scheduler.pt new file mode 100644 index 0000000000000000000000000000000000000000..2e29b7c4a04cd4a958964d995c0db1eb38ea7cc9 --- /dev/null +++ b/timecost/m8/realtabformer/rtf-m8-20260501_010220/rtf_checkpoints/checkpoint-112600/scheduler.pt @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:ec3f81068f6c72f4ae1fe59a9e287b10ed9e20129a930bdd13be05cd53f38e7d +size 1465 diff --git a/timecost/m8/realtabformer/rtf-m8-20260501_010220/rtf_checkpoints/checkpoint-112600/trainer_state.json b/timecost/m8/realtabformer/rtf-m8-20260501_010220/rtf_checkpoints/checkpoint-112600/trainer_state.json new file mode 100644 index 0000000000000000000000000000000000000000..66dc591a56667b47752f8887f18802abb7439e06 --- /dev/null +++ b/timecost/m8/realtabformer/rtf-m8-20260501_010220/rtf_checkpoints/checkpoint-112600/trainer_state.json @@ -0,0 +1,7916 @@ +{ + "best_global_step": null, + "best_metric": null, + "best_model_checkpoint": null, + "epoch": 99.55828356558284, + "eval_steps": 100, + "global_step": 112600, + "is_hyper_param_search": false, + "is_local_process_zero": true, + "is_world_process_zero": true, + "log_history": [ + { + "epoch": 0.08847600088476001, + "grad_norm": 0.27971890568733215, + "learning_rate": 4.9956233421750666e-05, + "loss": 1.6012767028808594, + "step": 100 + }, + { + "epoch": 0.17695200176952003, + "grad_norm": 0.2532733976840973, + "learning_rate": 4.991202475685234e-05, + "loss": 1.0460629272460937, + "step": 200 + }, + { + "epoch": 0.26542800265428, + "grad_norm": 0.22527219355106354, + "learning_rate": 4.986781609195402e-05, + "loss": 1.0045037841796876, + "step": 300 + }, + { + "epoch": 0.35390400353904006, + "grad_norm": 0.2071678638458252, + "learning_rate": 4.982360742705571e-05, + "loss": 0.9934071350097656, + "step": 400 + }, + { + "epoch": 0.44238000442380004, + "grad_norm": 0.21996082365512848, + "learning_rate": 4.977939876215739e-05, + "loss": 0.9807382965087891, + "step": 500 + }, + { + "epoch": 0.53085600530856, + "grad_norm": 0.20051148533821106, + "learning_rate": 4.9735190097259064e-05, + "loss": 0.9772834014892579, + "step": 600 + }, + { + "epoch": 0.6193320061933201, + "grad_norm": 0.20692776143550873, + "learning_rate": 4.969098143236074e-05, + "loss": 0.9733844757080078, + "step": 700 + }, + { + "epoch": 0.7078080070780801, + "grad_norm": 0.22139734029769897, + "learning_rate": 4.9646772767462425e-05, + "loss": 0.9641999053955078, + "step": 800 + }, + { + "epoch": 0.79628400796284, + "grad_norm": 0.20099565386772156, + "learning_rate": 4.96025641025641e-05, + "loss": 0.9590901947021484, + "step": 900 + }, + { + "epoch": 0.8847600088476001, + "grad_norm": 0.19050444662570953, + "learning_rate": 4.955835543766578e-05, + "loss": 0.9558430480957031, + "step": 1000 + }, + { + "epoch": 0.9732360097323601, + "grad_norm": 0.20780153572559357, + "learning_rate": 4.951414677276747e-05, + "loss": 0.9558073425292969, + "step": 1100 + }, + { + "epoch": 1.0610484406104843, + "grad_norm": 0.20002400875091553, + "learning_rate": 4.946993810786915e-05, + "loss": 0.9575533294677734, + "step": 1200 + }, + { + "epoch": 1.1495244414952444, + "grad_norm": 0.19394151866436005, + "learning_rate": 4.9425729442970824e-05, + "loss": 0.9556401824951172, + "step": 1300 + }, + { + "epoch": 1.2380004423800044, + "grad_norm": 0.19420816004276276, + "learning_rate": 4.93815207780725e-05, + "loss": 0.948358154296875, + "step": 1400 + }, + { + "epoch": 1.3264764432647644, + "grad_norm": 0.2109377682209015, + "learning_rate": 4.9337312113174185e-05, + "loss": 0.9507483673095704, + "step": 1500 + }, + { + "epoch": 1.4149524441495245, + "grad_norm": 0.19577011466026306, + "learning_rate": 4.929310344827586e-05, + "loss": 0.9544251251220703, + "step": 1600 + }, + { + "epoch": 1.5034284450342845, + "grad_norm": 0.17374339699745178, + "learning_rate": 4.924889478337754e-05, + "loss": 0.9495613098144531, + "step": 1700 + }, + { + "epoch": 1.5919044459190443, + "grad_norm": 0.1539471447467804, + "learning_rate": 4.920468611847922e-05, + "loss": 0.946780014038086, + "step": 1800 + }, + { + "epoch": 1.6803804468038046, + "grad_norm": 0.21705853939056396, + "learning_rate": 4.916047745358091e-05, + "loss": 0.9456329345703125, + "step": 1900 + }, + { + "epoch": 1.7688564476885644, + "grad_norm": 0.18109191954135895, + "learning_rate": 4.9116268788682584e-05, + "loss": 0.9452082061767578, + "step": 2000 + }, + { + "epoch": 1.8573324485733245, + "grad_norm": 0.18233413994312286, + "learning_rate": 4.907206012378426e-05, + "loss": 0.9436309051513672, + "step": 2100 + }, + { + "epoch": 1.9458084494580845, + "grad_norm": 0.19978198409080505, + "learning_rate": 4.9027851458885945e-05, + "loss": 0.9466010284423828, + "step": 2200 + }, + { + "epoch": 2.033620880336209, + "grad_norm": 0.19425439834594727, + "learning_rate": 4.898364279398762e-05, + "loss": 0.9419589233398438, + "step": 2300 + }, + { + "epoch": 2.1220968812209686, + "grad_norm": 0.18522261083126068, + "learning_rate": 4.8939434129089306e-05, + "loss": 0.9406929779052734, + "step": 2400 + }, + { + "epoch": 2.210572882105729, + "grad_norm": 0.18092288076877594, + "learning_rate": 4.889522546419098e-05, + "loss": 0.9394661712646485, + "step": 2500 + }, + { + "epoch": 2.2990488829904887, + "grad_norm": 0.16110995411872864, + "learning_rate": 4.885101679929267e-05, + "loss": 0.9415554809570312, + "step": 2600 + }, + { + "epoch": 2.387524883875249, + "grad_norm": 0.1742609441280365, + "learning_rate": 4.8806808134394344e-05, + "loss": 0.9385026550292969, + "step": 2700 + }, + { + "epoch": 2.476000884760009, + "grad_norm": 0.1893293261528015, + "learning_rate": 4.876259946949602e-05, + "loss": 0.9374285125732422, + "step": 2800 + }, + { + "epoch": 2.564476885644769, + "grad_norm": 0.17022491991519928, + "learning_rate": 4.8718390804597705e-05, + "loss": 0.9414189910888672, + "step": 2900 + }, + { + "epoch": 2.652952886529529, + "grad_norm": 0.1820104867219925, + "learning_rate": 4.867418213969938e-05, + "loss": 0.9428114318847656, + "step": 3000 + }, + { + "epoch": 2.7414288874142887, + "grad_norm": 0.1591845154762268, + "learning_rate": 4.8629973474801066e-05, + "loss": 0.9408238220214844, + "step": 3100 + }, + { + "epoch": 2.829904888299049, + "grad_norm": 0.16679565608501434, + "learning_rate": 4.858576480990274e-05, + "loss": 0.9357293701171875, + "step": 3200 + }, + { + "epoch": 2.918380889183809, + "grad_norm": 0.1608530431985855, + "learning_rate": 4.854155614500443e-05, + "loss": 0.9437465667724609, + "step": 3300 + }, + { + "epoch": 3.006193320061933, + "grad_norm": 0.17832520604133606, + "learning_rate": 4.8497347480106104e-05, + "loss": 0.9349425506591796, + "step": 3400 + }, + { + "epoch": 3.0946693209466933, + "grad_norm": 0.18095993995666504, + "learning_rate": 4.845313881520778e-05, + "loss": 0.9341915130615235, + "step": 3500 + }, + { + "epoch": 3.183145321831453, + "grad_norm": 0.15083801746368408, + "learning_rate": 4.8408930150309465e-05, + "loss": 0.9406319427490234, + "step": 3600 + }, + { + "epoch": 3.2716213227162134, + "grad_norm": 0.17318469285964966, + "learning_rate": 4.836472148541114e-05, + "loss": 0.942470703125, + "step": 3700 + }, + { + "epoch": 3.3600973236009732, + "grad_norm": 0.16380801796913147, + "learning_rate": 4.8320512820512826e-05, + "loss": 0.9362622833251953, + "step": 3800 + }, + { + "epoch": 3.448573324485733, + "grad_norm": 0.16394540667533875, + "learning_rate": 4.82763041556145e-05, + "loss": 0.9353338623046875, + "step": 3900 + }, + { + "epoch": 3.5370493253704933, + "grad_norm": 0.15836960077285767, + "learning_rate": 4.8232095490716186e-05, + "loss": 0.9316812896728516, + "step": 4000 + }, + { + "epoch": 3.625525326255253, + "grad_norm": 0.16170428693294525, + "learning_rate": 4.8187886825817864e-05, + "loss": 0.9331712341308593, + "step": 4100 + }, + { + "epoch": 3.7140013271400134, + "grad_norm": 0.16442789137363434, + "learning_rate": 4.814367816091954e-05, + "loss": 0.9366471862792969, + "step": 4200 + }, + { + "epoch": 3.8024773280247732, + "grad_norm": 0.1728108674287796, + "learning_rate": 4.8099469496021224e-05, + "loss": 0.9279624938964843, + "step": 4300 + }, + { + "epoch": 3.890953328909533, + "grad_norm": 0.16846929490566254, + "learning_rate": 4.80552608311229e-05, + "loss": 0.9343041229248047, + "step": 4400 + }, + { + "epoch": 3.9794293297942933, + "grad_norm": 0.15764060616493225, + "learning_rate": 4.8011052166224585e-05, + "loss": 0.9330953979492187, + "step": 4500 + }, + { + "epoch": 4.067241760672418, + "grad_norm": 0.15639521181583405, + "learning_rate": 4.796684350132626e-05, + "loss": 0.92936279296875, + "step": 4600 + }, + { + "epoch": 4.155717761557177, + "grad_norm": 0.1571352481842041, + "learning_rate": 4.7922634836427946e-05, + "loss": 0.928530502319336, + "step": 4700 + }, + { + "epoch": 4.244193762441937, + "grad_norm": 0.1702045202255249, + "learning_rate": 4.787842617152962e-05, + "loss": 0.928214111328125, + "step": 4800 + }, + { + "epoch": 4.332669763326698, + "grad_norm": 0.15860655903816223, + "learning_rate": 4.78342175066313e-05, + "loss": 0.9305215454101563, + "step": 4900 + }, + { + "epoch": 4.421145764211458, + "grad_norm": 0.15470334887504578, + "learning_rate": 4.779000884173298e-05, + "loss": 0.9308832550048828, + "step": 5000 + }, + { + "epoch": 4.509621765096218, + "grad_norm": 0.18338388204574585, + "learning_rate": 4.774580017683466e-05, + "loss": 0.9284812164306641, + "step": 5100 + }, + { + "epoch": 4.598097765980977, + "grad_norm": 0.16396461427211761, + "learning_rate": 4.7701591511936345e-05, + "loss": 0.9331364440917969, + "step": 5200 + }, + { + "epoch": 4.686573766865738, + "grad_norm": 0.15601013600826263, + "learning_rate": 4.765738284703802e-05, + "loss": 0.9345075225830078, + "step": 5300 + }, + { + "epoch": 4.775049767750498, + "grad_norm": 0.15895380079746246, + "learning_rate": 4.76131741821397e-05, + "loss": 0.9342525482177735, + "step": 5400 + }, + { + "epoch": 4.863525768635258, + "grad_norm": 0.17462770640850067, + "learning_rate": 4.756896551724138e-05, + "loss": 0.9322207641601562, + "step": 5500 + }, + { + "epoch": 4.952001769520018, + "grad_norm": 0.15457525849342346, + "learning_rate": 4.752475685234306e-05, + "loss": 0.9310305023193359, + "step": 5600 + }, + { + "epoch": 5.039814200398142, + "grad_norm": 0.13688383996486664, + "learning_rate": 4.748054818744474e-05, + "loss": 0.9262973022460937, + "step": 5700 + }, + { + "epoch": 5.128290201282902, + "grad_norm": 0.15491563081741333, + "learning_rate": 4.743633952254642e-05, + "loss": 0.927138671875, + "step": 5800 + }, + { + "epoch": 5.216766202167662, + "grad_norm": 0.168558269739151, + "learning_rate": 4.7392130857648105e-05, + "loss": 0.9224365234375, + "step": 5900 + }, + { + "epoch": 5.305242203052422, + "grad_norm": 0.1631685495376587, + "learning_rate": 4.734792219274978e-05, + "loss": 0.9300392913818359, + "step": 6000 + }, + { + "epoch": 5.393718203937182, + "grad_norm": 0.1423729509115219, + "learning_rate": 4.730371352785146e-05, + "loss": 0.926734619140625, + "step": 6100 + }, + { + "epoch": 5.482194204821942, + "grad_norm": 0.15391670167446136, + "learning_rate": 4.725950486295314e-05, + "loss": 0.928184814453125, + "step": 6200 + }, + { + "epoch": 5.570670205706702, + "grad_norm": 0.16460080444812775, + "learning_rate": 4.721529619805482e-05, + "loss": 0.9238227844238281, + "step": 6300 + }, + { + "epoch": 5.659146206591462, + "grad_norm": 0.15589170157909393, + "learning_rate": 4.71710875331565e-05, + "loss": 0.9301457214355469, + "step": 6400 + }, + { + "epoch": 5.747622207476222, + "grad_norm": 0.15851308405399323, + "learning_rate": 4.712687886825818e-05, + "loss": 0.9308782196044922, + "step": 6500 + }, + { + "epoch": 5.836098208360982, + "grad_norm": 0.1777440756559372, + "learning_rate": 4.7082670203359865e-05, + "loss": 0.9248320007324219, + "step": 6600 + }, + { + "epoch": 5.924574209245742, + "grad_norm": 0.17118966579437256, + "learning_rate": 4.703846153846154e-05, + "loss": 0.933470458984375, + "step": 6700 + }, + { + "epoch": 6.012386640123866, + "grad_norm": 0.16862431168556213, + "learning_rate": 4.699425287356322e-05, + "loss": 0.9242423248291015, + "step": 6800 + }, + { + "epoch": 6.100862641008627, + "grad_norm": 0.19494886696338654, + "learning_rate": 4.69500442086649e-05, + "loss": 0.9229951477050782, + "step": 6900 + }, + { + "epoch": 6.189338641893387, + "grad_norm": 0.1628340780735016, + "learning_rate": 4.690583554376658e-05, + "loss": 0.9262020111083984, + "step": 7000 + }, + { + "epoch": 6.2778146427781465, + "grad_norm": 0.18057121336460114, + "learning_rate": 4.686162687886826e-05, + "loss": 0.9253005981445312, + "step": 7100 + }, + { + "epoch": 6.366290643662906, + "grad_norm": 0.16090655326843262, + "learning_rate": 4.681741821396994e-05, + "loss": 0.9206966400146485, + "step": 7200 + }, + { + "epoch": 6.454766644547666, + "grad_norm": 0.16115659475326538, + "learning_rate": 4.6773209549071625e-05, + "loss": 0.9219180297851562, + "step": 7300 + }, + { + "epoch": 6.543242645432427, + "grad_norm": 0.1964244246482849, + "learning_rate": 4.67290008841733e-05, + "loss": 0.9238224029541016, + "step": 7400 + }, + { + "epoch": 6.631718646317187, + "grad_norm": 0.1761396825313568, + "learning_rate": 4.668479221927498e-05, + "loss": 0.9244656372070312, + "step": 7500 + }, + { + "epoch": 6.7201946472019465, + "grad_norm": 0.18016010522842407, + "learning_rate": 4.664058355437666e-05, + "loss": 0.9245244598388672, + "step": 7600 + }, + { + "epoch": 6.808670648086706, + "grad_norm": 0.16012924909591675, + "learning_rate": 4.659637488947834e-05, + "loss": 0.9250524139404297, + "step": 7700 + }, + { + "epoch": 6.897146648971466, + "grad_norm": 0.1722676306962967, + "learning_rate": 4.655216622458002e-05, + "loss": 0.9270682525634766, + "step": 7800 + }, + { + "epoch": 6.985622649856227, + "grad_norm": 0.18756897747516632, + "learning_rate": 4.65079575596817e-05, + "loss": 0.9234317779541016, + "step": 7900 + }, + { + "epoch": 7.073435080734351, + "grad_norm": 0.16759978234767914, + "learning_rate": 4.6463748894783384e-05, + "loss": 0.9213732147216797, + "step": 8000 + }, + { + "epoch": 7.1619110816191105, + "grad_norm": 0.15943242609500885, + "learning_rate": 4.641954022988506e-05, + "loss": 0.9243515014648438, + "step": 8100 + }, + { + "epoch": 7.250387082503871, + "grad_norm": 0.15444102883338928, + "learning_rate": 4.637533156498674e-05, + "loss": 0.9177332305908203, + "step": 8200 + }, + { + "epoch": 7.338863083388631, + "grad_norm": 0.17104187607765198, + "learning_rate": 4.633112290008842e-05, + "loss": 0.9199151611328125, + "step": 8300 + }, + { + "epoch": 7.427339084273391, + "grad_norm": 0.152462899684906, + "learning_rate": 4.62869142351901e-05, + "loss": 0.9231443786621094, + "step": 8400 + }, + { + "epoch": 7.515815085158151, + "grad_norm": 0.1663249433040619, + "learning_rate": 4.6242705570291777e-05, + "loss": 0.9231499481201172, + "step": 8500 + }, + { + "epoch": 7.6042910860429105, + "grad_norm": 0.1711215376853943, + "learning_rate": 4.6198496905393454e-05, + "loss": 0.9192819976806641, + "step": 8600 + }, + { + "epoch": 7.692767086927671, + "grad_norm": 0.1620834916830063, + "learning_rate": 4.6154288240495144e-05, + "loss": 0.9260062408447266, + "step": 8700 + }, + { + "epoch": 7.781243087812431, + "grad_norm": 0.16246546804904938, + "learning_rate": 4.611007957559682e-05, + "loss": 0.9250968933105469, + "step": 8800 + }, + { + "epoch": 7.869719088697191, + "grad_norm": 0.15757358074188232, + "learning_rate": 4.60658709106985e-05, + "loss": 0.9235149383544922, + "step": 8900 + }, + { + "epoch": 7.958195089581951, + "grad_norm": 0.15778206288814545, + "learning_rate": 4.602166224580018e-05, + "loss": 0.9173377227783203, + "step": 9000 + }, + { + "epoch": 8.046007520460075, + "grad_norm": 0.17259791493415833, + "learning_rate": 4.597745358090186e-05, + "loss": 0.9134017181396484, + "step": 9100 + }, + { + "epoch": 8.134483521344835, + "grad_norm": 0.1707502007484436, + "learning_rate": 4.5933244916003536e-05, + "loss": 0.9134098052978515, + "step": 9200 + }, + { + "epoch": 8.222959522229596, + "grad_norm": 0.1647530347108841, + "learning_rate": 4.5889036251105213e-05, + "loss": 0.9205097961425781, + "step": 9300 + }, + { + "epoch": 8.311435523114355, + "grad_norm": 0.16971947252750397, + "learning_rate": 4.5844827586206904e-05, + "loss": 0.9217983245849609, + "step": 9400 + }, + { + "epoch": 8.399911523999116, + "grad_norm": 0.15842877328395844, + "learning_rate": 4.580061892130858e-05, + "loss": 0.9172341918945313, + "step": 9500 + }, + { + "epoch": 8.488387524883874, + "grad_norm": 0.15321888029575348, + "learning_rate": 4.575641025641026e-05, + "loss": 0.9222029113769531, + "step": 9600 + }, + { + "epoch": 8.576863525768635, + "grad_norm": 0.17232707142829895, + "learning_rate": 4.5712201591511935e-05, + "loss": 0.9190543365478515, + "step": 9700 + }, + { + "epoch": 8.665339526653396, + "grad_norm": 0.14735591411590576, + "learning_rate": 4.566799292661362e-05, + "loss": 0.9193865203857422, + "step": 9800 + }, + { + "epoch": 8.753815527538155, + "grad_norm": 0.17929628491401672, + "learning_rate": 4.5623784261715296e-05, + "loss": 0.9178209686279297, + "step": 9900 + }, + { + "epoch": 8.842291528422916, + "grad_norm": 0.1546984612941742, + "learning_rate": 4.557957559681697e-05, + "loss": 0.9209825134277344, + "step": 10000 + }, + { + "epoch": 8.930767529307674, + "grad_norm": 0.16275030374526978, + "learning_rate": 4.553536693191866e-05, + "loss": 0.9219312286376953, + "step": 10100 + }, + { + "epoch": 9.0185799601858, + "grad_norm": 0.16977843642234802, + "learning_rate": 4.549115826702034e-05, + "loss": 0.9190888977050782, + "step": 10200 + }, + { + "epoch": 9.107055961070559, + "grad_norm": 0.16722118854522705, + "learning_rate": 4.544694960212202e-05, + "loss": 0.9173007202148438, + "step": 10300 + }, + { + "epoch": 9.19553196195532, + "grad_norm": 0.15637095272541046, + "learning_rate": 4.5402740937223695e-05, + "loss": 0.9152852630615235, + "step": 10400 + }, + { + "epoch": 9.28400796284008, + "grad_norm": 0.15433216094970703, + "learning_rate": 4.535853227232538e-05, + "loss": 0.9151573944091796, + "step": 10500 + }, + { + "epoch": 9.37248396372484, + "grad_norm": 0.15743562579154968, + "learning_rate": 4.5314323607427056e-05, + "loss": 0.9173799896240235, + "step": 10600 + }, + { + "epoch": 9.4609599646096, + "grad_norm": 0.1527981162071228, + "learning_rate": 4.527011494252873e-05, + "loss": 0.911611328125, + "step": 10700 + }, + { + "epoch": 9.549435965494359, + "grad_norm": 0.15745887160301208, + "learning_rate": 4.522590627763042e-05, + "loss": 0.9144339752197266, + "step": 10800 + }, + { + "epoch": 9.63791196637912, + "grad_norm": 0.1523962914943695, + "learning_rate": 4.51816976127321e-05, + "loss": 0.918481216430664, + "step": 10900 + }, + { + "epoch": 9.72638796726388, + "grad_norm": 0.17231452465057373, + "learning_rate": 4.513748894783378e-05, + "loss": 0.9197111511230469, + "step": 11000 + }, + { + "epoch": 9.81486396814864, + "grad_norm": 0.16348381340503693, + "learning_rate": 4.5093280282935455e-05, + "loss": 0.9151203918457032, + "step": 11100 + }, + { + "epoch": 9.9033399690334, + "grad_norm": 0.16555383801460266, + "learning_rate": 4.504907161803714e-05, + "loss": 0.9189680480957031, + "step": 11200 + }, + { + "epoch": 9.991815969918159, + "grad_norm": 0.16531047224998474, + "learning_rate": 4.5004862953138816e-05, + "loss": 0.9149074554443359, + "step": 11300 + }, + { + "epoch": 10.079628400796285, + "grad_norm": 0.1655273735523224, + "learning_rate": 4.496065428824049e-05, + "loss": 0.9143817138671875, + "step": 11400 + }, + { + "epoch": 10.168104401681044, + "grad_norm": 0.1795828938484192, + "learning_rate": 4.491644562334218e-05, + "loss": 0.911801986694336, + "step": 11500 + }, + { + "epoch": 10.256580402565804, + "grad_norm": 0.1684361696243286, + "learning_rate": 4.487223695844386e-05, + "loss": 0.910247802734375, + "step": 11600 + }, + { + "epoch": 10.345056403450563, + "grad_norm": 0.1620638519525528, + "learning_rate": 4.482802829354554e-05, + "loss": 0.9155111694335938, + "step": 11700 + }, + { + "epoch": 10.433532404335324, + "grad_norm": 0.1695495843887329, + "learning_rate": 4.4783819628647215e-05, + "loss": 0.9134779357910157, + "step": 11800 + }, + { + "epoch": 10.522008405220085, + "grad_norm": 0.18226753175258636, + "learning_rate": 4.47396109637489e-05, + "loss": 0.9143638610839844, + "step": 11900 + }, + { + "epoch": 10.610484406104844, + "grad_norm": 0.15289710462093353, + "learning_rate": 4.4695402298850576e-05, + "loss": 0.9122061157226562, + "step": 12000 + }, + { + "epoch": 10.698960406989604, + "grad_norm": 0.15486228466033936, + "learning_rate": 4.465119363395225e-05, + "loss": 0.9148915863037109, + "step": 12100 + }, + { + "epoch": 10.787436407874363, + "grad_norm": 0.17585019767284393, + "learning_rate": 4.4606984969053937e-05, + "loss": 0.9163182830810547, + "step": 12200 + }, + { + "epoch": 10.875912408759124, + "grad_norm": 0.158732071518898, + "learning_rate": 4.456277630415562e-05, + "loss": 0.9148865509033203, + "step": 12300 + }, + { + "epoch": 10.964388409643885, + "grad_norm": 0.15901361405849457, + "learning_rate": 4.45185676392573e-05, + "loss": 0.9184156799316406, + "step": 12400 + }, + { + "epoch": 11.052200840522008, + "grad_norm": 0.15289290249347687, + "learning_rate": 4.4474358974358974e-05, + "loss": 0.910323486328125, + "step": 12500 + }, + { + "epoch": 11.14067684140677, + "grad_norm": 0.14922171831130981, + "learning_rate": 4.443015030946066e-05, + "loss": 0.9092740631103515, + "step": 12600 + }, + { + "epoch": 11.229152842291528, + "grad_norm": 0.1710701584815979, + "learning_rate": 4.4385941644562335e-05, + "loss": 0.909953842163086, + "step": 12700 + }, + { + "epoch": 11.317628843176289, + "grad_norm": 0.16967815160751343, + "learning_rate": 4.434173297966401e-05, + "loss": 0.9069422912597657, + "step": 12800 + }, + { + "epoch": 11.406104844061048, + "grad_norm": 0.16896069049835205, + "learning_rate": 4.4297524314765696e-05, + "loss": 0.9166646575927735, + "step": 12900 + }, + { + "epoch": 11.494580844945808, + "grad_norm": 0.16996079683303833, + "learning_rate": 4.425331564986738e-05, + "loss": 0.9114566040039063, + "step": 13000 + }, + { + "epoch": 11.58305684583057, + "grad_norm": 0.16553319990634918, + "learning_rate": 4.420910698496906e-05, + "loss": 0.9121807098388672, + "step": 13100 + }, + { + "epoch": 11.671532846715328, + "grad_norm": 0.1629258692264557, + "learning_rate": 4.4164898320070734e-05, + "loss": 0.904563217163086, + "step": 13200 + }, + { + "epoch": 11.760008847600089, + "grad_norm": 0.1660201996564865, + "learning_rate": 4.412068965517241e-05, + "loss": 0.9116962432861329, + "step": 13300 + }, + { + "epoch": 11.848484848484848, + "grad_norm": 0.16493095457553864, + "learning_rate": 4.4076480990274095e-05, + "loss": 0.9136554718017578, + "step": 13400 + }, + { + "epoch": 11.936960849369608, + "grad_norm": 0.15279296040534973, + "learning_rate": 4.403227232537578e-05, + "loss": 0.9120658874511719, + "step": 13500 + }, + { + "epoch": 12.024773280247732, + "grad_norm": 0.16151593625545502, + "learning_rate": 4.3988063660477456e-05, + "loss": 0.9155186462402344, + "step": 13600 + }, + { + "epoch": 12.113249281132493, + "grad_norm": 0.16777871549129486, + "learning_rate": 4.394385499557914e-05, + "loss": 0.9070235443115234, + "step": 13700 + }, + { + "epoch": 12.201725282017254, + "grad_norm": 0.15052072703838348, + "learning_rate": 4.389964633068082e-05, + "loss": 0.9057080078125, + "step": 13800 + }, + { + "epoch": 12.290201282902013, + "grad_norm": 0.17466743290424347, + "learning_rate": 4.3855437665782494e-05, + "loss": 0.9058401489257812, + "step": 13900 + }, + { + "epoch": 12.378677283786773, + "grad_norm": 0.17788690328598022, + "learning_rate": 4.381122900088417e-05, + "loss": 0.9058721923828125, + "step": 14000 + }, + { + "epoch": 12.467153284671532, + "grad_norm": 0.17527516186237335, + "learning_rate": 4.3767020335985855e-05, + "loss": 0.908851089477539, + "step": 14100 + }, + { + "epoch": 12.555629285556293, + "grad_norm": 0.17999336123466492, + "learning_rate": 4.372281167108754e-05, + "loss": 0.9110614013671875, + "step": 14200 + }, + { + "epoch": 12.644105286441054, + "grad_norm": 0.1635061800479889, + "learning_rate": 4.3678603006189216e-05, + "loss": 0.9081086730957031, + "step": 14300 + }, + { + "epoch": 12.732581287325813, + "grad_norm": 0.1813993752002716, + "learning_rate": 4.363439434129089e-05, + "loss": 0.9091014862060547, + "step": 14400 + }, + { + "epoch": 12.821057288210573, + "grad_norm": 0.17487457394599915, + "learning_rate": 4.359018567639258e-05, + "loss": 0.9076325988769531, + "step": 14500 + }, + { + "epoch": 12.909533289095332, + "grad_norm": 0.17149627208709717, + "learning_rate": 4.3545977011494254e-05, + "loss": 0.9064749908447266, + "step": 14600 + }, + { + "epoch": 12.998009289980093, + "grad_norm": 0.16990207135677338, + "learning_rate": 4.350176834659593e-05, + "loss": 0.911828384399414, + "step": 14700 + }, + { + "epoch": 13.085821720858217, + "grad_norm": 0.16583888232707977, + "learning_rate": 4.3458001768346594e-05, + "loss": 0.9017422485351563, + "step": 14800 + }, + { + "epoch": 13.174297721742978, + "grad_norm": 0.1644158959388733, + "learning_rate": 4.341379310344828e-05, + "loss": 0.9052355194091797, + "step": 14900 + }, + { + "epoch": 13.262773722627736, + "grad_norm": 0.1759374737739563, + "learning_rate": 4.336958443854996e-05, + "loss": 0.9027067565917969, + "step": 15000 + }, + { + "epoch": 13.351249723512497, + "grad_norm": 0.1623755842447281, + "learning_rate": 4.332537577365164e-05, + "loss": 0.9078491973876953, + "step": 15100 + }, + { + "epoch": 13.439725724397258, + "grad_norm": 0.15563324093818665, + "learning_rate": 4.3281167108753316e-05, + "loss": 0.9046826171875, + "step": 15200 + }, + { + "epoch": 13.528201725282017, + "grad_norm": 0.1762174814939499, + "learning_rate": 4.3236958443855e-05, + "loss": 0.9070060729980469, + "step": 15300 + }, + { + "epoch": 13.616677726166778, + "grad_norm": 0.1598447859287262, + "learning_rate": 4.319274977895668e-05, + "loss": 0.907843017578125, + "step": 15400 + }, + { + "epoch": 13.705153727051536, + "grad_norm": 0.17838729918003082, + "learning_rate": 4.3148541114058354e-05, + "loss": 0.9077598571777343, + "step": 15500 + }, + { + "epoch": 13.793629727936297, + "grad_norm": 0.16615167260169983, + "learning_rate": 4.310433244916004e-05, + "loss": 0.9041740417480468, + "step": 15600 + }, + { + "epoch": 13.882105728821058, + "grad_norm": 0.16463759541511536, + "learning_rate": 4.306012378426172e-05, + "loss": 0.9023047637939453, + "step": 15700 + }, + { + "epoch": 13.970581729705817, + "grad_norm": 0.1562959849834442, + "learning_rate": 4.30159151193634e-05, + "loss": 0.902835693359375, + "step": 15800 + }, + { + "epoch": 14.058394160583942, + "grad_norm": 0.16919565200805664, + "learning_rate": 4.2971706454465076e-05, + "loss": 0.8998876953125, + "step": 15900 + }, + { + "epoch": 14.146870161468701, + "grad_norm": 0.16513022780418396, + "learning_rate": 4.292749778956676e-05, + "loss": 0.9023524475097656, + "step": 16000 + }, + { + "epoch": 14.235346162353462, + "grad_norm": 0.173946812748909, + "learning_rate": 4.288328912466844e-05, + "loss": 0.8980498504638672, + "step": 16100 + }, + { + "epoch": 14.323822163238221, + "grad_norm": 0.16749872267246246, + "learning_rate": 4.2839080459770114e-05, + "loss": 0.9026957702636719, + "step": 16200 + }, + { + "epoch": 14.412298164122982, + "grad_norm": 0.17985551059246063, + "learning_rate": 4.27948717948718e-05, + "loss": 0.9012105560302734, + "step": 16300 + }, + { + "epoch": 14.500774165007742, + "grad_norm": 0.18807820975780487, + "learning_rate": 4.275066312997348e-05, + "loss": 0.9014115905761719, + "step": 16400 + }, + { + "epoch": 14.589250165892501, + "grad_norm": 0.17243777215480804, + "learning_rate": 4.270645446507516e-05, + "loss": 0.9028221893310547, + "step": 16500 + }, + { + "epoch": 14.677726166777262, + "grad_norm": 0.1674414724111557, + "learning_rate": 4.2662245800176836e-05, + "loss": 0.9017185974121094, + "step": 16600 + }, + { + "epoch": 14.766202167662021, + "grad_norm": 0.17522333562374115, + "learning_rate": 4.261803713527851e-05, + "loss": 0.8989543914794922, + "step": 16700 + }, + { + "epoch": 14.854678168546782, + "grad_norm": 0.16300654411315918, + "learning_rate": 4.2573828470380197e-05, + "loss": 0.9001253509521484, + "step": 16800 + }, + { + "epoch": 14.943154169431542, + "grad_norm": 0.1702653169631958, + "learning_rate": 4.2529619805481874e-05, + "loss": 0.9020176696777343, + "step": 16900 + }, + { + "epoch": 15.030966600309666, + "grad_norm": 0.1752340942621231, + "learning_rate": 4.2485853227232544e-05, + "loss": 0.8990335083007812, + "step": 17000 + }, + { + "epoch": 15.119442601194425, + "grad_norm": 0.17765584588050842, + "learning_rate": 4.244164456233422e-05, + "loss": 0.8885309600830078, + "step": 17100 + }, + { + "epoch": 15.207918602079186, + "grad_norm": 0.18404972553253174, + "learning_rate": 4.23974358974359e-05, + "loss": 0.8915805816650391, + "step": 17200 + }, + { + "epoch": 15.296394602963947, + "grad_norm": 0.17206765711307526, + "learning_rate": 4.235322723253758e-05, + "loss": 0.8898361968994141, + "step": 17300 + }, + { + "epoch": 15.384870603848706, + "grad_norm": 0.19998455047607422, + "learning_rate": 4.230901856763926e-05, + "loss": 0.8957837677001953, + "step": 17400 + }, + { + "epoch": 15.473346604733466, + "grad_norm": 0.19454777240753174, + "learning_rate": 4.2264809902740936e-05, + "loss": 0.8990544891357422, + "step": 17500 + }, + { + "epoch": 15.561822605618225, + "grad_norm": 0.17281410098075867, + "learning_rate": 4.222060123784262e-05, + "loss": 0.8996484375, + "step": 17600 + }, + { + "epoch": 15.650298606502986, + "grad_norm": 0.1906009018421173, + "learning_rate": 4.21763925729443e-05, + "loss": 0.9032618713378906, + "step": 17700 + }, + { + "epoch": 15.738774607387747, + "grad_norm": 0.17282316088676453, + "learning_rate": 4.213218390804598e-05, + "loss": 0.8986404418945313, + "step": 17800 + }, + { + "epoch": 15.827250608272506, + "grad_norm": 0.18802666664123535, + "learning_rate": 4.208797524314766e-05, + "loss": 0.8964502716064453, + "step": 17900 + }, + { + "epoch": 15.915726609157266, + "grad_norm": 0.19853872060775757, + "learning_rate": 4.204376657824934e-05, + "loss": 0.9032749938964844, + "step": 18000 + }, + { + "epoch": 16.003539040035392, + "grad_norm": 0.18812181055545807, + "learning_rate": 4.199955791335102e-05, + "loss": 0.8991973876953125, + "step": 18100 + }, + { + "epoch": 16.09201504092015, + "grad_norm": 0.1644710898399353, + "learning_rate": 4.1955349248452695e-05, + "loss": 0.8866680908203125, + "step": 18200 + }, + { + "epoch": 16.18049104180491, + "grad_norm": 0.1884208619594574, + "learning_rate": 4.191114058355438e-05, + "loss": 0.8872537994384766, + "step": 18300 + }, + { + "epoch": 16.26896704268967, + "grad_norm": 0.1828072965145111, + "learning_rate": 4.186693191865606e-05, + "loss": 0.8902882385253906, + "step": 18400 + }, + { + "epoch": 16.35744304357443, + "grad_norm": 0.19119146466255188, + "learning_rate": 4.182272325375774e-05, + "loss": 0.8903806304931641, + "step": 18500 + }, + { + "epoch": 16.445919044459192, + "grad_norm": 0.20727571845054626, + "learning_rate": 4.177851458885942e-05, + "loss": 0.8952965545654297, + "step": 18600 + }, + { + "epoch": 16.53439504534395, + "grad_norm": 0.18735922873020172, + "learning_rate": 4.17343059239611e-05, + "loss": 0.8870563507080078, + "step": 18700 + }, + { + "epoch": 16.62287104622871, + "grad_norm": 0.1973799169063568, + "learning_rate": 4.169009725906278e-05, + "loss": 0.8974028778076172, + "step": 18800 + }, + { + "epoch": 16.71134704711347, + "grad_norm": 0.20604746043682098, + "learning_rate": 4.1645888594164455e-05, + "loss": 0.8937057495117188, + "step": 18900 + }, + { + "epoch": 16.79982304799823, + "grad_norm": 0.18150219321250916, + "learning_rate": 4.160167992926614e-05, + "loss": 0.8935442352294922, + "step": 19000 + }, + { + "epoch": 16.888299048882992, + "grad_norm": 0.18340304493904114, + "learning_rate": 4.155747126436782e-05, + "loss": 0.8885797119140625, + "step": 19100 + }, + { + "epoch": 16.97677504976775, + "grad_norm": 0.2073577493429184, + "learning_rate": 4.15132625994695e-05, + "loss": 0.8951002502441406, + "step": 19200 + }, + { + "epoch": 17.064587480645876, + "grad_norm": 0.17697007954120636, + "learning_rate": 4.146949602122016e-05, + "loss": 0.8879679870605469, + "step": 19300 + }, + { + "epoch": 17.153063481530634, + "grad_norm": 0.20899821817874908, + "learning_rate": 4.142528735632184e-05, + "loss": 0.8794329833984375, + "step": 19400 + }, + { + "epoch": 17.241539482415394, + "grad_norm": 0.18147091567516327, + "learning_rate": 4.138107869142352e-05, + "loss": 0.8802722930908203, + "step": 19500 + }, + { + "epoch": 17.330015483300155, + "grad_norm": 0.20257830619812012, + "learning_rate": 4.13368700265252e-05, + "loss": 0.8870145416259766, + "step": 19600 + }, + { + "epoch": 17.418491484184916, + "grad_norm": 0.20231416821479797, + "learning_rate": 4.1292661361626885e-05, + "loss": 0.8838448333740234, + "step": 19700 + }, + { + "epoch": 17.506967485069676, + "grad_norm": 0.18214623630046844, + "learning_rate": 4.124845269672856e-05, + "loss": 0.8879763793945312, + "step": 19800 + }, + { + "epoch": 17.595443485954434, + "grad_norm": 0.18666088581085205, + "learning_rate": 4.120424403183024e-05, + "loss": 0.8885836029052734, + "step": 19900 + }, + { + "epoch": 17.683919486839194, + "grad_norm": 0.20308583974838257, + "learning_rate": 4.116003536693192e-05, + "loss": 0.8843843078613282, + "step": 20000 + }, + { + "epoch": 17.772395487723955, + "grad_norm": 0.18726830184459686, + "learning_rate": 4.11158267020336e-05, + "loss": 0.8865486145019531, + "step": 20100 + }, + { + "epoch": 17.860871488608716, + "grad_norm": 0.17878851294517517, + "learning_rate": 4.107161803713528e-05, + "loss": 0.8883515930175782, + "step": 20200 + }, + { + "epoch": 17.949347489493476, + "grad_norm": 0.1849307119846344, + "learning_rate": 4.102740937223696e-05, + "loss": 0.8914216613769531, + "step": 20300 + }, + { + "epoch": 18.0371599203716, + "grad_norm": 0.22315239906311035, + "learning_rate": 4.0983200707338645e-05, + "loss": 0.88252197265625, + "step": 20400 + }, + { + "epoch": 18.12563592125636, + "grad_norm": 0.18446321785449982, + "learning_rate": 4.093899204244032e-05, + "loss": 0.8717878723144531, + "step": 20500 + }, + { + "epoch": 18.214111922141118, + "grad_norm": 0.21541251242160797, + "learning_rate": 4.0894783377542e-05, + "loss": 0.8750727844238281, + "step": 20600 + }, + { + "epoch": 18.30258792302588, + "grad_norm": 0.22268827259540558, + "learning_rate": 4.085057471264368e-05, + "loss": 0.8760640716552734, + "step": 20700 + }, + { + "epoch": 18.39106392391064, + "grad_norm": 0.2207673043012619, + "learning_rate": 4.080636604774536e-05, + "loss": 0.876912841796875, + "step": 20800 + }, + { + "epoch": 18.4795399247954, + "grad_norm": 0.21988292038440704, + "learning_rate": 4.076215738284704e-05, + "loss": 0.8794302368164062, + "step": 20900 + }, + { + "epoch": 18.56801592568016, + "grad_norm": 0.2057323008775711, + "learning_rate": 4.0717948717948714e-05, + "loss": 0.8795650482177735, + "step": 21000 + }, + { + "epoch": 18.656491926564918, + "grad_norm": 0.19854794442653656, + "learning_rate": 4.0673740053050405e-05, + "loss": 0.8824103546142578, + "step": 21100 + }, + { + "epoch": 18.74496792744968, + "grad_norm": 0.2183123230934143, + "learning_rate": 4.062953138815208e-05, + "loss": 0.8792383575439453, + "step": 21200 + }, + { + "epoch": 18.83344392833444, + "grad_norm": 0.20326419174671173, + "learning_rate": 4.058532272325376e-05, + "loss": 0.8834226989746093, + "step": 21300 + }, + { + "epoch": 18.9219199292192, + "grad_norm": 0.20735788345336914, + "learning_rate": 4.054111405835544e-05, + "loss": 0.8820342254638672, + "step": 21400 + }, + { + "epoch": 19.009732360097324, + "grad_norm": 0.2023264467716217, + "learning_rate": 4.04973474801061e-05, + "loss": 0.8843944549560547, + "step": 21500 + }, + { + "epoch": 19.098208360982085, + "grad_norm": 0.21148885786533356, + "learning_rate": 4.045313881520778e-05, + "loss": 0.8647132110595703, + "step": 21600 + }, + { + "epoch": 19.186684361866842, + "grad_norm": 0.2251083254814148, + "learning_rate": 4.040893015030947e-05, + "loss": 0.866364974975586, + "step": 21700 + }, + { + "epoch": 19.275160362751603, + "grad_norm": 0.23524972796440125, + "learning_rate": 4.0364721485411144e-05, + "loss": 0.8736127471923828, + "step": 21800 + }, + { + "epoch": 19.363636363636363, + "grad_norm": 0.21772760152816772, + "learning_rate": 4.032051282051282e-05, + "loss": 0.8692568206787109, + "step": 21900 + }, + { + "epoch": 19.452112364521124, + "grad_norm": 0.2125358134508133, + "learning_rate": 4.0276304155614505e-05, + "loss": 0.8706926727294921, + "step": 22000 + }, + { + "epoch": 19.540588365405885, + "grad_norm": 0.22768475115299225, + "learning_rate": 4.023209549071618e-05, + "loss": 0.8674411010742188, + "step": 22100 + }, + { + "epoch": 19.629064366290642, + "grad_norm": 0.2211151272058487, + "learning_rate": 4.018788682581786e-05, + "loss": 0.8749802398681641, + "step": 22200 + }, + { + "epoch": 19.717540367175403, + "grad_norm": 0.21814538538455963, + "learning_rate": 4.014367816091954e-05, + "loss": 0.8754036712646485, + "step": 22300 + }, + { + "epoch": 19.806016368060163, + "grad_norm": 0.2030419558286667, + "learning_rate": 4.0099469496021226e-05, + "loss": 0.8714677429199219, + "step": 22400 + }, + { + "epoch": 19.894492368944924, + "grad_norm": 0.21472303569316864, + "learning_rate": 4.0055260831122904e-05, + "loss": 0.8727165222167969, + "step": 22500 + }, + { + "epoch": 19.982968369829685, + "grad_norm": 0.20911096036434174, + "learning_rate": 4.001105216622458e-05, + "loss": 0.8781427764892578, + "step": 22600 + }, + { + "epoch": 20.07078080070781, + "grad_norm": 0.2304856926202774, + "learning_rate": 3.9966843501326264e-05, + "loss": 0.8589347076416015, + "step": 22700 + }, + { + "epoch": 20.15925680159257, + "grad_norm": 0.23650145530700684, + "learning_rate": 3.992263483642794e-05, + "loss": 0.8598684692382812, + "step": 22800 + }, + { + "epoch": 20.247732802477326, + "grad_norm": 0.21773482859134674, + "learning_rate": 3.987842617152962e-05, + "loss": 0.8605601501464843, + "step": 22900 + }, + { + "epoch": 20.336208803362087, + "grad_norm": 0.2237112671136856, + "learning_rate": 3.98342175066313e-05, + "loss": 0.8617141723632813, + "step": 23000 + }, + { + "epoch": 20.424684804246848, + "grad_norm": 0.24452048540115356, + "learning_rate": 3.9790008841732986e-05, + "loss": 0.8622699737548828, + "step": 23100 + }, + { + "epoch": 20.51316080513161, + "grad_norm": 0.21587280929088593, + "learning_rate": 3.974580017683466e-05, + "loss": 0.8637493896484375, + "step": 23200 + }, + { + "epoch": 20.60163680601637, + "grad_norm": 0.2406671941280365, + "learning_rate": 3.970159151193634e-05, + "loss": 0.859559555053711, + "step": 23300 + }, + { + "epoch": 20.690112806901126, + "grad_norm": 0.22845898568630219, + "learning_rate": 3.9657382847038024e-05, + "loss": 0.8662923431396484, + "step": 23400 + }, + { + "epoch": 20.778588807785887, + "grad_norm": 0.24683597683906555, + "learning_rate": 3.96131741821397e-05, + "loss": 0.8673475646972656, + "step": 23500 + }, + { + "epoch": 20.867064808670648, + "grad_norm": 0.22459226846694946, + "learning_rate": 3.956896551724138e-05, + "loss": 0.8640863037109375, + "step": 23600 + }, + { + "epoch": 20.95554080955541, + "grad_norm": 0.23616963624954224, + "learning_rate": 3.952475685234306e-05, + "loss": 0.8678861236572266, + "step": 23700 + }, + { + "epoch": 21.043353240433532, + "grad_norm": 0.22973845899105072, + "learning_rate": 3.9480990274093725e-05, + "loss": 0.8580598449707031, + "step": 23800 + }, + { + "epoch": 21.131829241318293, + "grad_norm": 0.2424720972776413, + "learning_rate": 3.94367816091954e-05, + "loss": 0.8460955810546875, + "step": 23900 + }, + { + "epoch": 21.220305242203054, + "grad_norm": 0.2528146505355835, + "learning_rate": 3.9392572944297086e-05, + "loss": 0.8499996185302734, + "step": 24000 + }, + { + "epoch": 21.30878124308781, + "grad_norm": 0.2518126666545868, + "learning_rate": 3.9348364279398763e-05, + "loss": 0.8534349060058594, + "step": 24100 + }, + { + "epoch": 21.39725724397257, + "grad_norm": 0.2305818349123001, + "learning_rate": 3.930415561450044e-05, + "loss": 0.84900146484375, + "step": 24200 + }, + { + "epoch": 21.485733244857332, + "grad_norm": 0.25653600692749023, + "learning_rate": 3.9259946949602124e-05, + "loss": 0.8542990875244141, + "step": 24300 + }, + { + "epoch": 21.574209245742093, + "grad_norm": 0.2712801992893219, + "learning_rate": 3.92157382847038e-05, + "loss": 0.8558815002441407, + "step": 24400 + }, + { + "epoch": 21.662685246626854, + "grad_norm": 0.273328959941864, + "learning_rate": 3.9171529619805485e-05, + "loss": 0.8555754089355468, + "step": 24500 + }, + { + "epoch": 21.75116124751161, + "grad_norm": 0.2668614089488983, + "learning_rate": 3.912732095490716e-05, + "loss": 0.8587675476074219, + "step": 24600 + }, + { + "epoch": 21.83963724839637, + "grad_norm": 0.24395836889743805, + "learning_rate": 3.9083112290008846e-05, + "loss": 0.8572028350830078, + "step": 24700 + }, + { + "epoch": 21.928113249281132, + "grad_norm": 0.24808812141418457, + "learning_rate": 3.903890362511052e-05, + "loss": 0.8579219055175781, + "step": 24800 + }, + { + "epoch": 22.015925680159256, + "grad_norm": 0.2587817311286926, + "learning_rate": 3.89946949602122e-05, + "loss": 0.8512050628662109, + "step": 24900 + }, + { + "epoch": 22.104401681044017, + "grad_norm": 0.26175108551979065, + "learning_rate": 3.8950486295313884e-05, + "loss": 0.8361199188232422, + "step": 25000 + }, + { + "epoch": 22.192877681928778, + "grad_norm": 0.2715345025062561, + "learning_rate": 3.890627763041556e-05, + "loss": 0.8399204254150391, + "step": 25100 + }, + { + "epoch": 22.28135368281354, + "grad_norm": 0.27675682306289673, + "learning_rate": 3.8862068965517245e-05, + "loss": 0.8378430938720703, + "step": 25200 + }, + { + "epoch": 22.369829683698295, + "grad_norm": 0.26540565490722656, + "learning_rate": 3.881786030061892e-05, + "loss": 0.8397164916992188, + "step": 25300 + }, + { + "epoch": 22.458305684583056, + "grad_norm": 0.2754775285720825, + "learning_rate": 3.8773651635720606e-05, + "loss": 0.8450184631347656, + "step": 25400 + }, + { + "epoch": 22.546781685467817, + "grad_norm": 0.2393341213464737, + "learning_rate": 3.872944297082228e-05, + "loss": 0.8427618408203125, + "step": 25500 + }, + { + "epoch": 22.635257686352578, + "grad_norm": 0.23895791172981262, + "learning_rate": 3.868523430592396e-05, + "loss": 0.8457352447509766, + "step": 25600 + }, + { + "epoch": 22.72373368723734, + "grad_norm": 0.26955941319465637, + "learning_rate": 3.8641025641025644e-05, + "loss": 0.849469223022461, + "step": 25700 + }, + { + "epoch": 22.812209688122095, + "grad_norm": 0.23746059834957123, + "learning_rate": 3.859681697612732e-05, + "loss": 0.8469708251953125, + "step": 25800 + }, + { + "epoch": 22.900685689006856, + "grad_norm": 0.2649519145488739, + "learning_rate": 3.8552608311229005e-05, + "loss": 0.849559326171875, + "step": 25900 + }, + { + "epoch": 22.989161689891617, + "grad_norm": 0.27285081148147583, + "learning_rate": 3.850839964633068e-05, + "loss": 0.8485184478759765, + "step": 26000 + }, + { + "epoch": 23.07697412076974, + "grad_norm": 0.27895936369895935, + "learning_rate": 3.8464633068081345e-05, + "loss": 0.8252901458740234, + "step": 26100 + }, + { + "epoch": 23.1654501216545, + "grad_norm": 0.2652367055416107, + "learning_rate": 3.842042440318302e-05, + "loss": 0.8263906097412109, + "step": 26200 + }, + { + "epoch": 23.253926122539262, + "grad_norm": 0.2835598886013031, + "learning_rate": 3.8376215738284706e-05, + "loss": 0.8287677001953125, + "step": 26300 + }, + { + "epoch": 23.342402123424023, + "grad_norm": 0.2834433615207672, + "learning_rate": 3.833200707338638e-05, + "loss": 0.8309012603759766, + "step": 26400 + }, + { + "epoch": 23.43087812430878, + "grad_norm": 0.2998100817203522, + "learning_rate": 3.828779840848807e-05, + "loss": 0.8311166381835937, + "step": 26500 + }, + { + "epoch": 23.51935412519354, + "grad_norm": 0.29382187128067017, + "learning_rate": 3.8243589743589744e-05, + "loss": 0.8325238037109375, + "step": 26600 + }, + { + "epoch": 23.6078301260783, + "grad_norm": 0.2950701415538788, + "learning_rate": 3.819938107869143e-05, + "loss": 0.8368535614013672, + "step": 26700 + }, + { + "epoch": 23.696306126963062, + "grad_norm": 0.287801057100296, + "learning_rate": 3.8155172413793105e-05, + "loss": 0.833930435180664, + "step": 26800 + }, + { + "epoch": 23.784782127847823, + "grad_norm": 0.33100536465644836, + "learning_rate": 3.811096374889478e-05, + "loss": 0.8386001586914062, + "step": 26900 + }, + { + "epoch": 23.87325812873258, + "grad_norm": 0.2911369800567627, + "learning_rate": 3.8066755083996466e-05, + "loss": 0.8410533905029297, + "step": 27000 + }, + { + "epoch": 23.96173412961734, + "grad_norm": 0.26980099081993103, + "learning_rate": 3.802254641909814e-05, + "loss": 0.8360975646972656, + "step": 27100 + }, + { + "epoch": 24.049546560495465, + "grad_norm": 0.3001425862312317, + "learning_rate": 3.797833775419983e-05, + "loss": 0.8234864044189453, + "step": 27200 + }, + { + "epoch": 24.138022561380225, + "grad_norm": 0.27798378467559814, + "learning_rate": 3.7934129089301504e-05, + "loss": 0.8135331726074219, + "step": 27300 + }, + { + "epoch": 24.226498562264986, + "grad_norm": 0.2736954689025879, + "learning_rate": 3.788992042440319e-05, + "loss": 0.8113047027587891, + "step": 27400 + }, + { + "epoch": 24.314974563149747, + "grad_norm": 0.29235804080963135, + "learning_rate": 3.7845711759504865e-05, + "loss": 0.8171870422363281, + "step": 27500 + }, + { + "epoch": 24.403450564034507, + "grad_norm": 0.2878233790397644, + "learning_rate": 3.780150309460654e-05, + "loss": 0.8170029449462891, + "step": 27600 + }, + { + "epoch": 24.491926564919265, + "grad_norm": 0.31602925062179565, + "learning_rate": 3.7757294429708226e-05, + "loss": 0.8223928833007812, + "step": 27700 + }, + { + "epoch": 24.580402565804025, + "grad_norm": 0.3145372271537781, + "learning_rate": 3.77130857648099e-05, + "loss": 0.8257860565185546, + "step": 27800 + }, + { + "epoch": 24.668878566688786, + "grad_norm": 0.30716991424560547, + "learning_rate": 3.7668877099911587e-05, + "loss": 0.8240725708007812, + "step": 27900 + }, + { + "epoch": 24.757354567573547, + "grad_norm": 0.28368160128593445, + "learning_rate": 3.7624668435013264e-05, + "loss": 0.825384521484375, + "step": 28000 + }, + { + "epoch": 24.845830568458307, + "grad_norm": 0.2867664694786072, + "learning_rate": 3.758045977011495e-05, + "loss": 0.8270760345458984, + "step": 28100 + }, + { + "epoch": 24.934306569343065, + "grad_norm": 0.28817129135131836, + "learning_rate": 3.7536251105216624e-05, + "loss": 0.8286974334716797, + "step": 28200 + }, + { + "epoch": 25.02211900022119, + "grad_norm": 0.3106354773044586, + "learning_rate": 3.749248452696729e-05, + "loss": 0.82120849609375, + "step": 28300 + }, + { + "epoch": 25.11059500110595, + "grad_norm": 0.3304692506790161, + "learning_rate": 3.7448275862068965e-05, + "loss": 0.8016901397705078, + "step": 28400 + }, + { + "epoch": 25.19907100199071, + "grad_norm": 0.3065616488456726, + "learning_rate": 3.740406719717064e-05, + "loss": 0.8027448272705078, + "step": 28500 + }, + { + "epoch": 25.28754700287547, + "grad_norm": 0.3456852436065674, + "learning_rate": 3.735985853227233e-05, + "loss": 0.8046049499511718, + "step": 28600 + }, + { + "epoch": 25.37602300376023, + "grad_norm": 0.3011663556098938, + "learning_rate": 3.731564986737401e-05, + "loss": 0.8079199981689453, + "step": 28700 + }, + { + "epoch": 25.46449900464499, + "grad_norm": 0.3659413158893585, + "learning_rate": 3.7271441202475687e-05, + "loss": 0.8079922485351563, + "step": 28800 + }, + { + "epoch": 25.55297500552975, + "grad_norm": 0.3281838595867157, + "learning_rate": 3.7227232537577364e-05, + "loss": 0.8134046173095704, + "step": 28900 + }, + { + "epoch": 25.64145100641451, + "grad_norm": 0.3106602132320404, + "learning_rate": 3.718302387267905e-05, + "loss": 0.8104205322265625, + "step": 29000 + }, + { + "epoch": 25.72992700729927, + "grad_norm": 0.3320154845714569, + "learning_rate": 3.7138815207780725e-05, + "loss": 0.8142304992675782, + "step": 29100 + }, + { + "epoch": 25.81840300818403, + "grad_norm": 0.3355977535247803, + "learning_rate": 3.70946065428824e-05, + "loss": 0.8125243377685547, + "step": 29200 + }, + { + "epoch": 25.90687900906879, + "grad_norm": 0.3472290635108948, + "learning_rate": 3.7050397877984085e-05, + "loss": 0.8146660614013672, + "step": 29300 + }, + { + "epoch": 25.99535500995355, + "grad_norm": 0.31780678033828735, + "learning_rate": 3.700618921308577e-05, + "loss": 0.8169705200195313, + "step": 29400 + }, + { + "epoch": 26.083167440831673, + "grad_norm": 0.3046151101589203, + "learning_rate": 3.6961980548187446e-05, + "loss": 0.7894915008544922, + "step": 29500 + }, + { + "epoch": 26.171643441716434, + "grad_norm": 0.3560829162597656, + "learning_rate": 3.6917771883289123e-05, + "loss": 0.7867289733886719, + "step": 29600 + }, + { + "epoch": 26.260119442601194, + "grad_norm": 0.33036884665489197, + "learning_rate": 3.687356321839081e-05, + "loss": 0.7914912414550781, + "step": 29700 + }, + { + "epoch": 26.348595443485955, + "grad_norm": 0.3302215039730072, + "learning_rate": 3.6829354553492484e-05, + "loss": 0.7926998901367187, + "step": 29800 + }, + { + "epoch": 26.437071444370716, + "grad_norm": 0.33766239881515503, + "learning_rate": 3.678514588859416e-05, + "loss": 0.7958551788330078, + "step": 29900 + }, + { + "epoch": 26.525547445255473, + "grad_norm": 0.34900912642478943, + "learning_rate": 3.6740937223695845e-05, + "loss": 0.7958287811279297, + "step": 30000 + }, + { + "epoch": 26.614023446140234, + "grad_norm": 0.3290475010871887, + "learning_rate": 3.669672855879753e-05, + "loss": 0.7994923400878906, + "step": 30100 + }, + { + "epoch": 26.702499447024994, + "grad_norm": 0.3304896950721741, + "learning_rate": 3.6652519893899206e-05, + "loss": 0.8000531005859375, + "step": 30200 + }, + { + "epoch": 26.790975447909755, + "grad_norm": 0.32132837176322937, + "learning_rate": 3.660831122900088e-05, + "loss": 0.8006639862060547, + "step": 30300 + }, + { + "epoch": 26.879451448794516, + "grad_norm": 0.3341081142425537, + "learning_rate": 3.656410256410257e-05, + "loss": 0.8037942504882812, + "step": 30400 + }, + { + "epoch": 26.967927449679273, + "grad_norm": 0.3406025171279907, + "learning_rate": 3.6519893899204244e-05, + "loss": 0.8009793853759766, + "step": 30500 + }, + { + "epoch": 27.0557398805574, + "grad_norm": 0.3396868109703064, + "learning_rate": 3.647568523430592e-05, + "loss": 0.7846424865722657, + "step": 30600 + }, + { + "epoch": 27.144215881442157, + "grad_norm": 0.33319470286369324, + "learning_rate": 3.6431476569407605e-05, + "loss": 0.7724665832519532, + "step": 30700 + }, + { + "epoch": 27.232691882326918, + "grad_norm": 0.38071826100349426, + "learning_rate": 3.638726790450929e-05, + "loss": 0.7791647338867187, + "step": 30800 + }, + { + "epoch": 27.32116788321168, + "grad_norm": 0.3640372157096863, + "learning_rate": 3.6343059239610966e-05, + "loss": 0.778485107421875, + "step": 30900 + }, + { + "epoch": 27.40964388409644, + "grad_norm": 0.34701183438301086, + "learning_rate": 3.629885057471264e-05, + "loss": 0.7812682342529297, + "step": 31000 + }, + { + "epoch": 27.4981198849812, + "grad_norm": 0.34723395109176636, + "learning_rate": 3.625464190981433e-05, + "loss": 0.7816720581054688, + "step": 31100 + }, + { + "epoch": 27.586595885865957, + "grad_norm": 0.3967572748661041, + "learning_rate": 3.6210433244916004e-05, + "loss": 0.7825845336914062, + "step": 31200 + }, + { + "epoch": 27.675071886750718, + "grad_norm": 0.36156365275382996, + "learning_rate": 3.616622458001768e-05, + "loss": 0.7875003814697266, + "step": 31300 + }, + { + "epoch": 27.76354788763548, + "grad_norm": 0.37152451276779175, + "learning_rate": 3.6122015915119365e-05, + "loss": 0.7848563385009766, + "step": 31400 + }, + { + "epoch": 27.85202388852024, + "grad_norm": 0.3751819431781769, + "learning_rate": 3.607780725022105e-05, + "loss": 0.7901625061035156, + "step": 31500 + }, + { + "epoch": 27.940499889405, + "grad_norm": 0.32409200072288513, + "learning_rate": 3.6033598585322726e-05, + "loss": 0.7916508483886718, + "step": 31600 + }, + { + "epoch": 28.028312320283124, + "grad_norm": 0.36621779203414917, + "learning_rate": 3.59893899204244e-05, + "loss": 0.7814656066894531, + "step": 31700 + }, + { + "epoch": 28.116788321167885, + "grad_norm": 0.35782715678215027, + "learning_rate": 3.594518125552609e-05, + "loss": 0.7565266418457032, + "step": 31800 + }, + { + "epoch": 28.205264322052642, + "grad_norm": 0.34983065724372864, + "learning_rate": 3.5900972590627764e-05, + "loss": 0.7589649963378906, + "step": 31900 + }, + { + "epoch": 28.293740322937403, + "grad_norm": 0.36476004123687744, + "learning_rate": 3.585676392572945e-05, + "loss": 0.7618669891357421, + "step": 32000 + }, + { + "epoch": 28.382216323822163, + "grad_norm": 0.3663191795349121, + "learning_rate": 3.5812555260831125e-05, + "loss": 0.768099136352539, + "step": 32100 + }, + { + "epoch": 28.470692324706924, + "grad_norm": 0.3572807312011719, + "learning_rate": 3.576834659593281e-05, + "loss": 0.7697807312011719, + "step": 32200 + }, + { + "epoch": 28.559168325591685, + "grad_norm": 0.39800935983657837, + "learning_rate": 3.5724580017683465e-05, + "loss": 0.7714015960693359, + "step": 32300 + }, + { + "epoch": 28.647644326476442, + "grad_norm": 0.3792218863964081, + "learning_rate": 3.568037135278515e-05, + "loss": 0.7737385559082032, + "step": 32400 + }, + { + "epoch": 28.736120327361203, + "grad_norm": 0.4109075665473938, + "learning_rate": 3.5636162687886826e-05, + "loss": 0.7772123718261719, + "step": 32500 + }, + { + "epoch": 28.824596328245963, + "grad_norm": 0.40446004271507263, + "learning_rate": 3.55919540229885e-05, + "loss": 0.7722319030761718, + "step": 32600 + }, + { + "epoch": 28.913072329130724, + "grad_norm": 0.39553946256637573, + "learning_rate": 3.554774535809019e-05, + "loss": 0.7767266082763672, + "step": 32700 + }, + { + "epoch": 29.000884760008848, + "grad_norm": 0.3675474226474762, + "learning_rate": 3.550397877984085e-05, + "loss": 0.7800326538085938, + "step": 32800 + }, + { + "epoch": 29.08936076089361, + "grad_norm": 0.37354156374931335, + "learning_rate": 3.5459770114942534e-05, + "loss": 0.7407066345214843, + "step": 32900 + }, + { + "epoch": 29.17783676177837, + "grad_norm": 0.3970542550086975, + "learning_rate": 3.541556145004421e-05, + "loss": 0.7467523956298828, + "step": 33000 + }, + { + "epoch": 29.266312762663127, + "grad_norm": 0.3625730872154236, + "learning_rate": 3.537135278514589e-05, + "loss": 0.7477723693847657, + "step": 33100 + }, + { + "epoch": 29.354788763547887, + "grad_norm": 0.37132611870765686, + "learning_rate": 3.532714412024757e-05, + "loss": 0.7502822875976562, + "step": 33200 + }, + { + "epoch": 29.443264764432648, + "grad_norm": 0.3668833374977112, + "learning_rate": 3.528293545534925e-05, + "loss": 0.7570280456542968, + "step": 33300 + }, + { + "epoch": 29.53174076531741, + "grad_norm": 0.404186874628067, + "learning_rate": 3.523872679045093e-05, + "loss": 0.7576876831054687, + "step": 33400 + }, + { + "epoch": 29.62021676620217, + "grad_norm": 0.407461017370224, + "learning_rate": 3.519451812555261e-05, + "loss": 0.7606333923339844, + "step": 33500 + }, + { + "epoch": 29.708692767086927, + "grad_norm": 0.4091641902923584, + "learning_rate": 3.5150309460654294e-05, + "loss": 0.7598370361328125, + "step": 33600 + }, + { + "epoch": 29.797168767971687, + "grad_norm": 0.36642369627952576, + "learning_rate": 3.510610079575597e-05, + "loss": 0.7617308807373047, + "step": 33700 + }, + { + "epoch": 29.885644768856448, + "grad_norm": 0.3767990171909332, + "learning_rate": 3.506189213085765e-05, + "loss": 0.760002670288086, + "step": 33800 + }, + { + "epoch": 29.97412076974121, + "grad_norm": 0.3992450535297394, + "learning_rate": 3.5017683465959325e-05, + "loss": 0.7659886932373047, + "step": 33900 + }, + { + "epoch": 30.061933200619332, + "grad_norm": 0.38657036423683167, + "learning_rate": 3.497347480106101e-05, + "loss": 0.7397030639648438, + "step": 34000 + }, + { + "epoch": 30.150409201504093, + "grad_norm": 0.40928229689598083, + "learning_rate": 3.492926613616269e-05, + "loss": 0.7280159759521484, + "step": 34100 + }, + { + "epoch": 30.23888520238885, + "grad_norm": 0.41609957814216614, + "learning_rate": 3.488505747126437e-05, + "loss": 0.7327291107177735, + "step": 34200 + }, + { + "epoch": 30.32736120327361, + "grad_norm": 0.3990429639816284, + "learning_rate": 3.4840848806366047e-05, + "loss": 0.7359205627441406, + "step": 34300 + }, + { + "epoch": 30.41583720415837, + "grad_norm": 0.40403324365615845, + "learning_rate": 3.479664014146773e-05, + "loss": 0.73650390625, + "step": 34400 + }, + { + "epoch": 30.504313205043132, + "grad_norm": 0.42696642875671387, + "learning_rate": 3.475243147656941e-05, + "loss": 0.7416681671142578, + "step": 34500 + }, + { + "epoch": 30.592789205927893, + "grad_norm": 0.3891199231147766, + "learning_rate": 3.4708222811671085e-05, + "loss": 0.742286605834961, + "step": 34600 + }, + { + "epoch": 30.68126520681265, + "grad_norm": 0.3660706877708435, + "learning_rate": 3.466401414677277e-05, + "loss": 0.7444020080566406, + "step": 34700 + }, + { + "epoch": 30.76974120769741, + "grad_norm": 0.43280747532844543, + "learning_rate": 3.461980548187445e-05, + "loss": 0.7461125183105469, + "step": 34800 + }, + { + "epoch": 30.85821720858217, + "grad_norm": 0.4279727041721344, + "learning_rate": 3.457559681697613e-05, + "loss": 0.7497645568847656, + "step": 34900 + }, + { + "epoch": 30.946693209466932, + "grad_norm": 0.4162921905517578, + "learning_rate": 3.4531388152077806e-05, + "loss": 0.7478341674804687, + "step": 35000 + }, + { + "epoch": 31.034505640345056, + "grad_norm": 0.4011857211589813, + "learning_rate": 3.448762157382847e-05, + "loss": 0.7373168182373047, + "step": 35100 + }, + { + "epoch": 31.122981641229817, + "grad_norm": 0.42476192116737366, + "learning_rate": 3.444341290893015e-05, + "loss": 0.714128646850586, + "step": 35200 + }, + { + "epoch": 31.211457642114578, + "grad_norm": 0.4272063672542572, + "learning_rate": 3.439920424403183e-05, + "loss": 0.717328872680664, + "step": 35300 + }, + { + "epoch": 31.299933642999335, + "grad_norm": 0.39419060945510864, + "learning_rate": 3.4354995579133514e-05, + "loss": 0.7182811737060547, + "step": 35400 + }, + { + "epoch": 31.388409643884096, + "grad_norm": 0.4092519283294678, + "learning_rate": 3.431078691423519e-05, + "loss": 0.7223808288574218, + "step": 35500 + }, + { + "epoch": 31.476885644768856, + "grad_norm": 0.45683449506759644, + "learning_rate": 3.4266578249336875e-05, + "loss": 0.7236460876464844, + "step": 35600 + }, + { + "epoch": 31.565361645653617, + "grad_norm": 0.4914647936820984, + "learning_rate": 3.422236958443855e-05, + "loss": 0.728529052734375, + "step": 35700 + }, + { + "epoch": 31.653837646538378, + "grad_norm": 0.439372718334198, + "learning_rate": 3.417816091954023e-05, + "loss": 0.7269135284423828, + "step": 35800 + }, + { + "epoch": 31.742313647423135, + "grad_norm": 0.488553911447525, + "learning_rate": 3.413395225464191e-05, + "loss": 0.7319352722167969, + "step": 35900 + }, + { + "epoch": 31.830789648307896, + "grad_norm": 0.43236035108566284, + "learning_rate": 3.408974358974359e-05, + "loss": 0.7336878204345703, + "step": 36000 + }, + { + "epoch": 31.919265649192656, + "grad_norm": 0.42669814825057983, + "learning_rate": 3.4045534924845274e-05, + "loss": 0.7357192993164062, + "step": 36100 + }, + { + "epoch": 32.007078080070784, + "grad_norm": 0.40464460849761963, + "learning_rate": 3.400132625994695e-05, + "loss": 0.7324215698242188, + "step": 36200 + }, + { + "epoch": 32.09555408095554, + "grad_norm": 0.4362545311450958, + "learning_rate": 3.3957117595048635e-05, + "loss": 0.6976793670654297, + "step": 36300 + }, + { + "epoch": 32.1840300818403, + "grad_norm": 0.46484723687171936, + "learning_rate": 3.391290893015031e-05, + "loss": 0.6972021484375, + "step": 36400 + }, + { + "epoch": 32.27250608272506, + "grad_norm": 0.43313083052635193, + "learning_rate": 3.386870026525199e-05, + "loss": 0.7049392700195313, + "step": 36500 + }, + { + "epoch": 32.36098208360982, + "grad_norm": 0.437752366065979, + "learning_rate": 3.3824491600353666e-05, + "loss": 0.7091526794433594, + "step": 36600 + }, + { + "epoch": 32.44945808449458, + "grad_norm": 0.44550085067749023, + "learning_rate": 3.378028293545535e-05, + "loss": 0.7121316528320313, + "step": 36700 + }, + { + "epoch": 32.53793408537934, + "grad_norm": 0.46052590012550354, + "learning_rate": 3.3736074270557034e-05, + "loss": 0.7150274658203125, + "step": 36800 + }, + { + "epoch": 32.6264100862641, + "grad_norm": 0.4344913065433502, + "learning_rate": 3.369186560565871e-05, + "loss": 0.7130059814453125, + "step": 36900 + }, + { + "epoch": 32.71488608714886, + "grad_norm": 0.45924630761146545, + "learning_rate": 3.364765694076039e-05, + "loss": 0.7156332397460937, + "step": 37000 + }, + { + "epoch": 32.80336208803362, + "grad_norm": 0.41177231073379517, + "learning_rate": 3.360344827586207e-05, + "loss": 0.7184346008300782, + "step": 37100 + }, + { + "epoch": 32.891838088918384, + "grad_norm": 0.44688835740089417, + "learning_rate": 3.355923961096375e-05, + "loss": 0.7201016235351563, + "step": 37200 + }, + { + "epoch": 32.980314089803144, + "grad_norm": 0.4971197545528412, + "learning_rate": 3.3515030946065426e-05, + "loss": 0.7191078186035156, + "step": 37300 + }, + { + "epoch": 33.06812652068127, + "grad_norm": 0.47201091051101685, + "learning_rate": 3.347126436781609e-05, + "loss": 0.6914530944824219, + "step": 37400 + }, + { + "epoch": 33.15660252156602, + "grad_norm": 0.4473711848258972, + "learning_rate": 3.342705570291777e-05, + "loss": 0.6855306243896484, + "step": 37500 + }, + { + "epoch": 33.24507852245078, + "grad_norm": 0.4745553135871887, + "learning_rate": 3.338284703801946e-05, + "loss": 0.6888325500488282, + "step": 37600 + }, + { + "epoch": 33.33355452333554, + "grad_norm": 0.45796144008636475, + "learning_rate": 3.3338638373121134e-05, + "loss": 0.6924916076660156, + "step": 37700 + }, + { + "epoch": 33.422030524220304, + "grad_norm": 0.47769099473953247, + "learning_rate": 3.329442970822281e-05, + "loss": 0.6937997436523438, + "step": 37800 + }, + { + "epoch": 33.510506525105065, + "grad_norm": 0.4637518525123596, + "learning_rate": 3.3250221043324495e-05, + "loss": 0.6975637817382813, + "step": 37900 + }, + { + "epoch": 33.598982525989825, + "grad_norm": 0.47370946407318115, + "learning_rate": 3.320601237842617e-05, + "loss": 0.6985407257080078, + "step": 38000 + }, + { + "epoch": 33.687458526874586, + "grad_norm": 0.467692106962204, + "learning_rate": 3.316180371352785e-05, + "loss": 0.7032517242431641, + "step": 38100 + }, + { + "epoch": 33.77593452775935, + "grad_norm": 0.4691486060619354, + "learning_rate": 3.311759504862953e-05, + "loss": 0.7019402313232422, + "step": 38200 + }, + { + "epoch": 33.86441052864411, + "grad_norm": 0.465666264295578, + "learning_rate": 3.307338638373122e-05, + "loss": 0.7065095520019531, + "step": 38300 + }, + { + "epoch": 33.95288652952887, + "grad_norm": 0.4870339632034302, + "learning_rate": 3.3029177718832894e-05, + "loss": 0.7060601043701172, + "step": 38400 + }, + { + "epoch": 34.04069896040699, + "grad_norm": 0.46102386713027954, + "learning_rate": 3.298496905393457e-05, + "loss": 0.6895645141601563, + "step": 38500 + }, + { + "epoch": 34.12917496129175, + "grad_norm": 0.4717739522457123, + "learning_rate": 3.2940760389036255e-05, + "loss": 0.6683721160888672, + "step": 38600 + }, + { + "epoch": 34.217650962176506, + "grad_norm": 0.47995516657829285, + "learning_rate": 3.289655172413793e-05, + "loss": 0.67727294921875, + "step": 38700 + }, + { + "epoch": 34.30612696306127, + "grad_norm": 0.4676993191242218, + "learning_rate": 3.2852343059239616e-05, + "loss": 0.6742596435546875, + "step": 38800 + }, + { + "epoch": 34.39460296394603, + "grad_norm": 0.4986591935157776, + "learning_rate": 3.280813439434129e-05, + "loss": 0.6811554718017578, + "step": 38900 + }, + { + "epoch": 34.48307896483079, + "grad_norm": 0.49108394980430603, + "learning_rate": 3.2763925729442977e-05, + "loss": 0.6826177215576172, + "step": 39000 + }, + { + "epoch": 34.57155496571555, + "grad_norm": 0.46544989943504333, + "learning_rate": 3.2719717064544654e-05, + "loss": 0.6843925476074219, + "step": 39100 + }, + { + "epoch": 34.66003096660031, + "grad_norm": 0.4714086055755615, + "learning_rate": 3.267550839964633e-05, + "loss": 0.6843089294433594, + "step": 39200 + }, + { + "epoch": 34.74850696748507, + "grad_norm": 0.4726520776748657, + "learning_rate": 3.263129973474801e-05, + "loss": 0.687828140258789, + "step": 39300 + }, + { + "epoch": 34.83698296836983, + "grad_norm": 0.5056101083755493, + "learning_rate": 3.258709106984969e-05, + "loss": 0.6943804168701172, + "step": 39400 + }, + { + "epoch": 34.92545896925459, + "grad_norm": 0.5143911242485046, + "learning_rate": 3.2542882404951375e-05, + "loss": 0.6947840118408203, + "step": 39500 + }, + { + "epoch": 35.013271400132716, + "grad_norm": 0.4712352752685547, + "learning_rate": 3.249867374005305e-05, + "loss": 0.6877326965332031, + "step": 39600 + }, + { + "epoch": 35.10174740101748, + "grad_norm": 0.5000380873680115, + "learning_rate": 3.2454465075154736e-05, + "loss": 0.6556487274169922, + "step": 39700 + }, + { + "epoch": 35.19022340190224, + "grad_norm": 0.5022478699684143, + "learning_rate": 3.2410256410256413e-05, + "loss": 0.6607290649414063, + "step": 39800 + }, + { + "epoch": 35.27869940278699, + "grad_norm": 0.511082112789154, + "learning_rate": 3.236604774535809e-05, + "loss": 0.6585157775878906, + "step": 39900 + }, + { + "epoch": 35.36717540367175, + "grad_norm": 0.45338326692581177, + "learning_rate": 3.232183908045977e-05, + "loss": 0.6670406341552735, + "step": 40000 + }, + { + "epoch": 35.45565140455651, + "grad_norm": 0.47589078545570374, + "learning_rate": 3.227763041556145e-05, + "loss": 0.6654150390625, + "step": 40100 + }, + { + "epoch": 35.54412740544127, + "grad_norm": 0.5111287236213684, + "learning_rate": 3.2233421750663135e-05, + "loss": 0.6706926727294922, + "step": 40200 + }, + { + "epoch": 35.632603406326034, + "grad_norm": 0.48615771532058716, + "learning_rate": 3.218921308576481e-05, + "loss": 0.6724550628662109, + "step": 40300 + }, + { + "epoch": 35.721079407210794, + "grad_norm": 0.5141739845275879, + "learning_rate": 3.214500442086649e-05, + "loss": 0.674487075805664, + "step": 40400 + }, + { + "epoch": 35.809555408095555, + "grad_norm": 0.512373149394989, + "learning_rate": 3.210079575596817e-05, + "loss": 0.6809010314941406, + "step": 40500 + }, + { + "epoch": 35.898031408980316, + "grad_norm": 0.5156219005584717, + "learning_rate": 3.205658709106985e-05, + "loss": 0.6783308410644531, + "step": 40600 + }, + { + "epoch": 35.98650740986508, + "grad_norm": 0.5266398191452026, + "learning_rate": 3.201237842617153e-05, + "loss": 0.6796981811523437, + "step": 40700 + }, + { + "epoch": 36.0743198407432, + "grad_norm": 0.5198646783828735, + "learning_rate": 3.196861184792219e-05, + "loss": 0.648563232421875, + "step": 40800 + }, + { + "epoch": 36.16279584162796, + "grad_norm": 0.4699224829673767, + "learning_rate": 3.1924403183023874e-05, + "loss": 0.6464600372314453, + "step": 40900 + }, + { + "epoch": 36.25127184251272, + "grad_norm": 0.5014195442199707, + "learning_rate": 3.188019451812556e-05, + "loss": 0.6471477508544922, + "step": 41000 + }, + { + "epoch": 36.339747843397475, + "grad_norm": 0.5231509804725647, + "learning_rate": 3.1835985853227235e-05, + "loss": 0.6519639587402344, + "step": 41100 + }, + { + "epoch": 36.428223844282236, + "grad_norm": 0.4843427538871765, + "learning_rate": 3.179177718832891e-05, + "loss": 0.6523241424560546, + "step": 41200 + }, + { + "epoch": 36.516699845167, + "grad_norm": 0.4956904351711273, + "learning_rate": 3.1747568523430596e-05, + "loss": 0.6547152709960937, + "step": 41300 + }, + { + "epoch": 36.60517584605176, + "grad_norm": 0.5103031396865845, + "learning_rate": 3.170335985853227e-05, + "loss": 0.6602716827392578, + "step": 41400 + }, + { + "epoch": 36.69365184693652, + "grad_norm": 0.5028578042984009, + "learning_rate": 3.165915119363395e-05, + "loss": 0.6617116546630859, + "step": 41500 + }, + { + "epoch": 36.78212784782128, + "grad_norm": 0.4997723698616028, + "learning_rate": 3.1614942528735634e-05, + "loss": 0.6632434844970703, + "step": 41600 + }, + { + "epoch": 36.87060384870604, + "grad_norm": 0.5246814489364624, + "learning_rate": 3.157073386383732e-05, + "loss": 0.6632743835449219, + "step": 41700 + }, + { + "epoch": 36.9590798495908, + "grad_norm": 0.5308569073677063, + "learning_rate": 3.1526525198938995e-05, + "loss": 0.6639631652832031, + "step": 41800 + }, + { + "epoch": 37.046892280468924, + "grad_norm": 0.49218234419822693, + "learning_rate": 3.148231653404067e-05, + "loss": 0.6452173614501953, + "step": 41900 + }, + { + "epoch": 37.135368281353685, + "grad_norm": 0.4680822491645813, + "learning_rate": 3.143810786914235e-05, + "loss": 0.6319191360473633, + "step": 42000 + }, + { + "epoch": 37.223844282238446, + "grad_norm": 0.4810407757759094, + "learning_rate": 3.139389920424403e-05, + "loss": 0.6338667297363281, + "step": 42100 + }, + { + "epoch": 37.3123202831232, + "grad_norm": 0.545889139175415, + "learning_rate": 3.134969053934571e-05, + "loss": 0.6395709228515625, + "step": 42200 + }, + { + "epoch": 37.40079628400796, + "grad_norm": 0.5600217580795288, + "learning_rate": 3.1305481874447394e-05, + "loss": 0.6406965637207032, + "step": 42300 + }, + { + "epoch": 37.48927228489272, + "grad_norm": 0.5517903566360474, + "learning_rate": 3.126127320954908e-05, + "loss": 0.6428462982177734, + "step": 42400 + }, + { + "epoch": 37.57774828577748, + "grad_norm": 0.49925389885902405, + "learning_rate": 3.1217064544650755e-05, + "loss": 0.6470170593261719, + "step": 42500 + }, + { + "epoch": 37.66622428666224, + "grad_norm": 0.4698370397090912, + "learning_rate": 3.117285587975243e-05, + "loss": 0.6477708435058593, + "step": 42600 + }, + { + "epoch": 37.754700287547, + "grad_norm": 0.5349763035774231, + "learning_rate": 3.112864721485411e-05, + "loss": 0.6515216827392578, + "step": 42700 + }, + { + "epoch": 37.84317628843176, + "grad_norm": 0.5066236853599548, + "learning_rate": 3.108443854995579e-05, + "loss": 0.6522242736816406, + "step": 42800 + }, + { + "epoch": 37.931652289316524, + "grad_norm": 0.5211920142173767, + "learning_rate": 3.104022988505747e-05, + "loss": 0.6515906524658203, + "step": 42900 + }, + { + "epoch": 38.01946472019465, + "grad_norm": 0.5003405213356018, + "learning_rate": 3.099646330680814e-05, + "loss": 0.6448411560058593, + "step": 43000 + }, + { + "epoch": 38.10794072107941, + "grad_norm": 0.5215827226638794, + "learning_rate": 3.095225464190982e-05, + "loss": 0.619310417175293, + "step": 43100 + }, + { + "epoch": 38.19641672196417, + "grad_norm": 0.4768511950969696, + "learning_rate": 3.0908045977011494e-05, + "loss": 0.6210311126708984, + "step": 43200 + }, + { + "epoch": 38.28489272284893, + "grad_norm": 0.5353608727455139, + "learning_rate": 3.086383731211318e-05, + "loss": 0.6246475601196289, + "step": 43300 + }, + { + "epoch": 38.373368723733684, + "grad_norm": 0.5182030200958252, + "learning_rate": 3.0819628647214855e-05, + "loss": 0.6273392486572266, + "step": 43400 + }, + { + "epoch": 38.461844724618445, + "grad_norm": 0.500842273235321, + "learning_rate": 3.077541998231653e-05, + "loss": 0.6327916717529297, + "step": 43500 + }, + { + "epoch": 38.550320725503205, + "grad_norm": 0.5168542861938477, + "learning_rate": 3.0731211317418216e-05, + "loss": 0.6323520278930664, + "step": 43600 + }, + { + "epoch": 38.638796726387966, + "grad_norm": 0.5403733253479004, + "learning_rate": 3.06870026525199e-05, + "loss": 0.6338058090209961, + "step": 43700 + }, + { + "epoch": 38.72727272727273, + "grad_norm": 0.5119574666023254, + "learning_rate": 3.064279398762158e-05, + "loss": 0.6391129302978515, + "step": 43800 + }, + { + "epoch": 38.81574872815749, + "grad_norm": 0.5214455127716064, + "learning_rate": 3.0598585322723254e-05, + "loss": 0.6368292999267579, + "step": 43900 + }, + { + "epoch": 38.90422472904225, + "grad_norm": 0.5679435133934021, + "learning_rate": 3.055437665782494e-05, + "loss": 0.6414280700683593, + "step": 44000 + }, + { + "epoch": 38.99270072992701, + "grad_norm": 0.5442212820053101, + "learning_rate": 3.0510167992926615e-05, + "loss": 0.6446417999267579, + "step": 44100 + }, + { + "epoch": 39.08051316080513, + "grad_norm": 0.46873417496681213, + "learning_rate": 3.0465959328028292e-05, + "loss": 0.6127575302124023, + "step": 44200 + }, + { + "epoch": 39.16898916168989, + "grad_norm": 0.5402541756629944, + "learning_rate": 3.042175066312998e-05, + "loss": 0.6059606552124024, + "step": 44300 + }, + { + "epoch": 39.257465162574654, + "grad_norm": 0.5081923007965088, + "learning_rate": 3.0377541998231656e-05, + "loss": 0.6121833038330078, + "step": 44400 + }, + { + "epoch": 39.345941163459415, + "grad_norm": 0.5688677430152893, + "learning_rate": 3.0333333333333337e-05, + "loss": 0.6163175964355468, + "step": 44500 + }, + { + "epoch": 39.43441716434417, + "grad_norm": 0.5273306965827942, + "learning_rate": 3.0289124668435014e-05, + "loss": 0.6198236465454101, + "step": 44600 + }, + { + "epoch": 39.52289316522893, + "grad_norm": 0.5107190608978271, + "learning_rate": 3.0244916003536694e-05, + "loss": 0.6242243576049805, + "step": 44700 + }, + { + "epoch": 39.61136916611369, + "grad_norm": 0.5110412240028381, + "learning_rate": 3.0200707338638375e-05, + "loss": 0.6227451705932617, + "step": 44800 + }, + { + "epoch": 39.69984516699845, + "grad_norm": 0.5370123982429504, + "learning_rate": 3.015649867374005e-05, + "loss": 0.6257634735107422, + "step": 44900 + }, + { + "epoch": 39.78832116788321, + "grad_norm": 0.5311342477798462, + "learning_rate": 3.0112290008841735e-05, + "loss": 0.6246538925170898, + "step": 45000 + }, + { + "epoch": 39.87679716876797, + "grad_norm": 0.5247089862823486, + "learning_rate": 3.0068081343943416e-05, + "loss": 0.6278446578979492, + "step": 45100 + }, + { + "epoch": 39.96527316965273, + "grad_norm": 0.5407604575157166, + "learning_rate": 3.0023872679045096e-05, + "loss": 0.6319368743896484, + "step": 45200 + }, + { + "epoch": 40.053085600530856, + "grad_norm": 0.49125176668167114, + "learning_rate": 2.9980106100795756e-05, + "loss": 0.608686294555664, + "step": 45300 + }, + { + "epoch": 40.14156160141562, + "grad_norm": 0.5193077325820923, + "learning_rate": 2.9935897435897437e-05, + "loss": 0.5979312515258789, + "step": 45400 + }, + { + "epoch": 40.23003760230038, + "grad_norm": 0.5521110892295837, + "learning_rate": 2.9891688770999117e-05, + "loss": 0.6026276016235351, + "step": 45500 + }, + { + "epoch": 40.31851360318514, + "grad_norm": 0.5131237506866455, + "learning_rate": 2.9847480106100794e-05, + "loss": 0.6056368637084961, + "step": 45600 + }, + { + "epoch": 40.4069896040699, + "grad_norm": 0.5547003149986267, + "learning_rate": 2.9803271441202478e-05, + "loss": 0.6073746490478515, + "step": 45700 + }, + { + "epoch": 40.49546560495465, + "grad_norm": 0.5059778690338135, + "learning_rate": 2.975906277630416e-05, + "loss": 0.6093035888671875, + "step": 45800 + }, + { + "epoch": 40.583941605839414, + "grad_norm": 0.5218088030815125, + "learning_rate": 2.971485411140584e-05, + "loss": 0.6098678970336914, + "step": 45900 + }, + { + "epoch": 40.672417606724174, + "grad_norm": 0.5111589431762695, + "learning_rate": 2.9670645446507516e-05, + "loss": 0.6144123458862305, + "step": 46000 + }, + { + "epoch": 40.760893607608935, + "grad_norm": 0.5875983238220215, + "learning_rate": 2.9626436781609196e-05, + "loss": 0.6149031448364258, + "step": 46100 + }, + { + "epoch": 40.849369608493696, + "grad_norm": 0.6077953577041626, + "learning_rate": 2.9582228116710873e-05, + "loss": 0.6200779724121094, + "step": 46200 + }, + { + "epoch": 40.937845609378456, + "grad_norm": 0.5511230230331421, + "learning_rate": 2.9538019451812554e-05, + "loss": 0.6175289916992187, + "step": 46300 + }, + { + "epoch": 41.02565804025658, + "grad_norm": 0.5434758067131042, + "learning_rate": 2.9493810786914238e-05, + "loss": 0.6117794418334961, + "step": 46400 + }, + { + "epoch": 41.11413404114134, + "grad_norm": 0.5463586449623108, + "learning_rate": 2.9449602122015918e-05, + "loss": 0.5865156936645508, + "step": 46500 + }, + { + "epoch": 41.2026100420261, + "grad_norm": 0.516645610332489, + "learning_rate": 2.94053934571176e-05, + "loss": 0.5934408950805664, + "step": 46600 + }, + { + "epoch": 41.29108604291086, + "grad_norm": 0.5041747093200684, + "learning_rate": 2.9361184792219276e-05, + "loss": 0.5907432556152343, + "step": 46700 + }, + { + "epoch": 41.37956204379562, + "grad_norm": 0.5490337014198303, + "learning_rate": 2.9316976127320956e-05, + "loss": 0.597823486328125, + "step": 46800 + }, + { + "epoch": 41.468038044680384, + "grad_norm": 0.5256726741790771, + "learning_rate": 2.9272767462422633e-05, + "loss": 0.5979599380493164, + "step": 46900 + }, + { + "epoch": 41.55651404556514, + "grad_norm": 0.49856510758399963, + "learning_rate": 2.9228558797524314e-05, + "loss": 0.6000013732910157, + "step": 47000 + }, + { + "epoch": 41.6449900464499, + "grad_norm": 0.540030837059021, + "learning_rate": 2.9184350132625998e-05, + "loss": 0.6044590759277344, + "step": 47100 + }, + { + "epoch": 41.73346604733466, + "grad_norm": 0.5599401593208313, + "learning_rate": 2.9140141467727678e-05, + "loss": 0.6050262451171875, + "step": 47200 + }, + { + "epoch": 41.82194204821942, + "grad_norm": 0.5251536965370178, + "learning_rate": 2.9095932802829355e-05, + "loss": 0.6084031677246093, + "step": 47300 + }, + { + "epoch": 41.91041804910418, + "grad_norm": 0.6002141237258911, + "learning_rate": 2.9051724137931036e-05, + "loss": 0.6051164627075195, + "step": 47400 + }, + { + "epoch": 41.99889404998894, + "grad_norm": 0.5603448748588562, + "learning_rate": 2.9007515473032716e-05, + "loss": 0.6085728073120117, + "step": 47500 + }, + { + "epoch": 42.086706480867065, + "grad_norm": 0.5491044521331787, + "learning_rate": 2.8963748894783376e-05, + "loss": 0.576365966796875, + "step": 47600 + }, + { + "epoch": 42.175182481751825, + "grad_norm": 0.5698864459991455, + "learning_rate": 2.8919540229885063e-05, + "loss": 0.5807184219360352, + "step": 47700 + }, + { + "epoch": 42.263658482636586, + "grad_norm": 0.574418306350708, + "learning_rate": 2.887533156498674e-05, + "loss": 0.5844138717651367, + "step": 47800 + }, + { + "epoch": 42.35213448352135, + "grad_norm": 0.5167635083198547, + "learning_rate": 2.883112290008842e-05, + "loss": 0.5845949935913086, + "step": 47900 + }, + { + "epoch": 42.44061048440611, + "grad_norm": 0.5338764786720276, + "learning_rate": 2.8786914235190098e-05, + "loss": 0.5889351272583008, + "step": 48000 + }, + { + "epoch": 42.52908648529087, + "grad_norm": 0.5340341329574585, + "learning_rate": 2.8742705570291778e-05, + "loss": 0.5909807205200195, + "step": 48100 + }, + { + "epoch": 42.61756248617562, + "grad_norm": 0.5493650436401367, + "learning_rate": 2.869849690539346e-05, + "loss": 0.5914651107788086, + "step": 48200 + }, + { + "epoch": 42.70603848706038, + "grad_norm": 0.6116383075714111, + "learning_rate": 2.8654288240495136e-05, + "loss": 0.592667350769043, + "step": 48300 + }, + { + "epoch": 42.79451448794514, + "grad_norm": 0.5631881356239319, + "learning_rate": 2.861007957559682e-05, + "loss": 0.5997231674194335, + "step": 48400 + }, + { + "epoch": 42.882990488829904, + "grad_norm": 0.5806667804718018, + "learning_rate": 2.85658709106985e-05, + "loss": 0.5957838439941406, + "step": 48500 + }, + { + "epoch": 42.971466489714665, + "grad_norm": 0.5075005888938904, + "learning_rate": 2.852166224580018e-05, + "loss": 0.5975283432006836, + "step": 48600 + }, + { + "epoch": 43.05927892059279, + "grad_norm": 0.5606797337532043, + "learning_rate": 2.8477453580901857e-05, + "loss": 0.5800529861450195, + "step": 48700 + }, + { + "epoch": 43.14775492147755, + "grad_norm": 0.5353171229362488, + "learning_rate": 2.8433244916003538e-05, + "loss": 0.5706613540649415, + "step": 48800 + }, + { + "epoch": 43.23623092236231, + "grad_norm": 0.5479321479797363, + "learning_rate": 2.8389036251105215e-05, + "loss": 0.5755366516113282, + "step": 48900 + }, + { + "epoch": 43.32470692324707, + "grad_norm": 0.5302407741546631, + "learning_rate": 2.8344827586206895e-05, + "loss": 0.5780391311645507, + "step": 49000 + }, + { + "epoch": 43.41318292413183, + "grad_norm": 0.5579783320426941, + "learning_rate": 2.830061892130858e-05, + "loss": 0.5774256896972656, + "step": 49100 + }, + { + "epoch": 43.50165892501659, + "grad_norm": 0.5295524597167969, + "learning_rate": 2.825641025641026e-05, + "loss": 0.5812548828125, + "step": 49200 + }, + { + "epoch": 43.59013492590135, + "grad_norm": 0.492058664560318, + "learning_rate": 2.821220159151194e-05, + "loss": 0.5796434783935547, + "step": 49300 + }, + { + "epoch": 43.67861092678611, + "grad_norm": 0.48961371183395386, + "learning_rate": 2.8167992926613617e-05, + "loss": 0.5851696014404297, + "step": 49400 + }, + { + "epoch": 43.76708692767087, + "grad_norm": 0.5714001059532166, + "learning_rate": 2.8123784261715298e-05, + "loss": 0.5890889358520508, + "step": 49500 + }, + { + "epoch": 43.85556292855563, + "grad_norm": 0.537390410900116, + "learning_rate": 2.8079575596816975e-05, + "loss": 0.5881150054931641, + "step": 49600 + }, + { + "epoch": 43.94403892944039, + "grad_norm": 0.5263146758079529, + "learning_rate": 2.8035366931918655e-05, + "loss": 0.5868202209472656, + "step": 49700 + }, + { + "epoch": 44.03185136031851, + "grad_norm": 0.5009394288063049, + "learning_rate": 2.7991600353669322e-05, + "loss": 0.578513412475586, + "step": 49800 + }, + { + "epoch": 44.12032736120327, + "grad_norm": 0.5233928561210632, + "learning_rate": 2.7947391688771002e-05, + "loss": 0.5612442016601562, + "step": 49900 + }, + { + "epoch": 44.208803362088034, + "grad_norm": 0.5212284922599792, + "learning_rate": 2.7903183023872683e-05, + "loss": 0.5634622955322266, + "step": 50000 + }, + { + "epoch": 44.297279362972795, + "grad_norm": 0.5920892357826233, + "learning_rate": 2.785897435897436e-05, + "loss": 0.5646255111694336, + "step": 50100 + }, + { + "epoch": 44.385755363857555, + "grad_norm": 0.5463851690292358, + "learning_rate": 2.781476569407604e-05, + "loss": 0.5711798477172851, + "step": 50200 + }, + { + "epoch": 44.474231364742316, + "grad_norm": 0.513917863368988, + "learning_rate": 2.7770557029177717e-05, + "loss": 0.5757728576660156, + "step": 50300 + }, + { + "epoch": 44.56270736562708, + "grad_norm": 0.5791277289390564, + "learning_rate": 2.7726348364279398e-05, + "loss": 0.5719475173950195, + "step": 50400 + }, + { + "epoch": 44.65118336651183, + "grad_norm": 0.5394783616065979, + "learning_rate": 2.768213969938108e-05, + "loss": 0.5751088714599609, + "step": 50500 + }, + { + "epoch": 44.73965936739659, + "grad_norm": 0.5699083805084229, + "learning_rate": 2.7637931034482762e-05, + "loss": 0.5771770095825195, + "step": 50600 + }, + { + "epoch": 44.82813536828135, + "grad_norm": 0.5610557794570923, + "learning_rate": 2.759372236958444e-05, + "loss": 0.5790963745117188, + "step": 50700 + }, + { + "epoch": 44.91661136916611, + "grad_norm": 0.5751321911811829, + "learning_rate": 2.754951370468612e-05, + "loss": 0.5781265258789062, + "step": 50800 + }, + { + "epoch": 45.004423800044236, + "grad_norm": 0.4831089377403259, + "learning_rate": 2.75053050397878e-05, + "loss": 0.5815114593505859, + "step": 50900 + }, + { + "epoch": 45.092899800929, + "grad_norm": 0.5138679146766663, + "learning_rate": 2.7461096374889477e-05, + "loss": 0.5530588912963867, + "step": 51000 + }, + { + "epoch": 45.18137580181376, + "grad_norm": 0.5327210426330566, + "learning_rate": 2.7416887709991158e-05, + "loss": 0.5549150085449219, + "step": 51100 + }, + { + "epoch": 45.26985180269852, + "grad_norm": 0.5089725255966187, + "learning_rate": 2.737267904509284e-05, + "loss": 0.5587585830688476, + "step": 51200 + }, + { + "epoch": 45.35832780358328, + "grad_norm": 0.5307016372680664, + "learning_rate": 2.7328470380194522e-05, + "loss": 0.5582825851440429, + "step": 51300 + }, + { + "epoch": 45.44680380446804, + "grad_norm": 0.6189883351325989, + "learning_rate": 2.72842617152962e-05, + "loss": 0.561285514831543, + "step": 51400 + }, + { + "epoch": 45.5352798053528, + "grad_norm": 0.5789527893066406, + "learning_rate": 2.724005305039788e-05, + "loss": 0.5647828674316406, + "step": 51500 + }, + { + "epoch": 45.62375580623756, + "grad_norm": 0.553713321685791, + "learning_rate": 2.719584438549956e-05, + "loss": 0.5659704208374023, + "step": 51600 + }, + { + "epoch": 45.712231807122315, + "grad_norm": 0.5502424240112305, + "learning_rate": 2.7151635720601237e-05, + "loss": 0.5685673522949218, + "step": 51700 + }, + { + "epoch": 45.800707808007076, + "grad_norm": 0.6388786435127258, + "learning_rate": 2.7107427055702917e-05, + "loss": 0.569713134765625, + "step": 51800 + }, + { + "epoch": 45.889183808891836, + "grad_norm": 0.5839136242866516, + "learning_rate": 2.70632183908046e-05, + "loss": 0.5713850784301758, + "step": 51900 + }, + { + "epoch": 45.9776598097766, + "grad_norm": 0.5872997641563416, + "learning_rate": 2.701900972590628e-05, + "loss": 0.5713462448120117, + "step": 52000 + }, + { + "epoch": 46.06547224065472, + "grad_norm": 0.5111995339393616, + "learning_rate": 2.697524314765694e-05, + "loss": 0.5514000701904297, + "step": 52100 + }, + { + "epoch": 46.15394824153948, + "grad_norm": 0.5677483677864075, + "learning_rate": 2.6931034482758622e-05, + "loss": 0.5458650207519531, + "step": 52200 + }, + { + "epoch": 46.24242424242424, + "grad_norm": 0.5756211876869202, + "learning_rate": 2.68868258178603e-05, + "loss": 0.5480696868896484, + "step": 52300 + }, + { + "epoch": 46.330900243309, + "grad_norm": 0.6053562164306641, + "learning_rate": 2.684261715296198e-05, + "loss": 0.5525957870483399, + "step": 52400 + }, + { + "epoch": 46.419376244193764, + "grad_norm": 0.5155165791511536, + "learning_rate": 2.6798408488063663e-05, + "loss": 0.5557857513427734, + "step": 52500 + }, + { + "epoch": 46.507852245078524, + "grad_norm": 0.5804229378700256, + "learning_rate": 2.6754199823165344e-05, + "loss": 0.5559201049804687, + "step": 52600 + }, + { + "epoch": 46.596328245963285, + "grad_norm": 0.5536544919013977, + "learning_rate": 2.6709991158267024e-05, + "loss": 0.5591853713989258, + "step": 52700 + }, + { + "epoch": 46.684804246848046, + "grad_norm": 0.603621244430542, + "learning_rate": 2.66657824933687e-05, + "loss": 0.5596856307983399, + "step": 52800 + }, + { + "epoch": 46.7732802477328, + "grad_norm": 0.5604232549667358, + "learning_rate": 2.662157382847038e-05, + "loss": 0.5584945678710938, + "step": 52900 + }, + { + "epoch": 46.86175624861756, + "grad_norm": 0.5974889993667603, + "learning_rate": 2.657736516357206e-05, + "loss": 0.5582848358154296, + "step": 53000 + }, + { + "epoch": 46.95023224950232, + "grad_norm": 0.5440397262573242, + "learning_rate": 2.653315649867374e-05, + "loss": 0.5634394454956054, + "step": 53100 + }, + { + "epoch": 47.038044680380445, + "grad_norm": 0.5610032081604004, + "learning_rate": 2.6488947833775423e-05, + "loss": 0.5574512481689453, + "step": 53200 + }, + { + "epoch": 47.126520681265205, + "grad_norm": 0.607563853263855, + "learning_rate": 2.6444739168877104e-05, + "loss": 0.5387821197509766, + "step": 53300 + }, + { + "epoch": 47.214996682149966, + "grad_norm": 0.5836204290390015, + "learning_rate": 2.640053050397878e-05, + "loss": 0.5401793670654297, + "step": 53400 + }, + { + "epoch": 47.30347268303473, + "grad_norm": 0.5325765013694763, + "learning_rate": 2.635632183908046e-05, + "loss": 0.5437668991088868, + "step": 53500 + }, + { + "epoch": 47.39194868391949, + "grad_norm": 0.5740872621536255, + "learning_rate": 2.631211317418214e-05, + "loss": 0.5443574142456055, + "step": 53600 + }, + { + "epoch": 47.48042468480425, + "grad_norm": 0.5562124848365784, + "learning_rate": 2.626790450928382e-05, + "loss": 0.5469727325439453, + "step": 53700 + }, + { + "epoch": 47.56890068568901, + "grad_norm": 0.5893000960350037, + "learning_rate": 2.62236958443855e-05, + "loss": 0.5502291107177735, + "step": 53800 + }, + { + "epoch": 47.65737668657377, + "grad_norm": 0.6538830995559692, + "learning_rate": 2.6179487179487183e-05, + "loss": 0.552915382385254, + "step": 53900 + }, + { + "epoch": 47.74585268745853, + "grad_norm": 0.5710316300392151, + "learning_rate": 2.6135278514588863e-05, + "loss": 0.5510491943359375, + "step": 54000 + }, + { + "epoch": 47.834328688343284, + "grad_norm": 0.5235297083854675, + "learning_rate": 2.609106984969054e-05, + "loss": 0.5519483184814453, + "step": 54100 + }, + { + "epoch": 47.922804689228045, + "grad_norm": 0.6048061847686768, + "learning_rate": 2.604686118479222e-05, + "loss": 0.5567644882202148, + "step": 54200 + }, + { + "epoch": 48.01061712010617, + "grad_norm": 0.5698108077049255, + "learning_rate": 2.6003094606542884e-05, + "loss": 0.5547234344482422, + "step": 54300 + }, + { + "epoch": 48.09909312099093, + "grad_norm": 0.49287617206573486, + "learning_rate": 2.595888594164456e-05, + "loss": 0.5280181884765625, + "step": 54400 + }, + { + "epoch": 48.18756912187569, + "grad_norm": 0.5525228977203369, + "learning_rate": 2.591467727674624e-05, + "loss": 0.5349401092529297, + "step": 54500 + }, + { + "epoch": 48.27604512276045, + "grad_norm": 0.5026161670684814, + "learning_rate": 2.5870468611847925e-05, + "loss": 0.5378446578979492, + "step": 54600 + }, + { + "epoch": 48.36452112364521, + "grad_norm": 0.5191828608512878, + "learning_rate": 2.5826259946949606e-05, + "loss": 0.5382429122924804, + "step": 54700 + }, + { + "epoch": 48.45299712452997, + "grad_norm": 0.5171953439712524, + "learning_rate": 2.5782051282051283e-05, + "loss": 0.5364204406738281, + "step": 54800 + }, + { + "epoch": 48.54147312541473, + "grad_norm": 0.5302397012710571, + "learning_rate": 2.5737842617152963e-05, + "loss": 0.5405542373657226, + "step": 54900 + }, + { + "epoch": 48.62994912629949, + "grad_norm": 0.5187925100326538, + "learning_rate": 2.569363395225464e-05, + "loss": 0.5436551284790039, + "step": 55000 + }, + { + "epoch": 48.718425127184254, + "grad_norm": 0.5707531571388245, + "learning_rate": 2.564942528735632e-05, + "loss": 0.5467363357543945, + "step": 55100 + }, + { + "epoch": 48.806901128069015, + "grad_norm": 0.5525254607200623, + "learning_rate": 2.5605216622458e-05, + "loss": 0.5466318130493164, + "step": 55200 + }, + { + "epoch": 48.89537712895377, + "grad_norm": 0.5896828174591064, + "learning_rate": 2.5561007957559685e-05, + "loss": 0.5489627075195312, + "step": 55300 + }, + { + "epoch": 48.98385312983853, + "grad_norm": 0.593329131603241, + "learning_rate": 2.5516799292661366e-05, + "loss": 0.5492449569702148, + "step": 55400 + }, + { + "epoch": 49.07166556071665, + "grad_norm": 0.45202845335006714, + "learning_rate": 2.5472590627763043e-05, + "loss": 0.5282985687255859, + "step": 55500 + }, + { + "epoch": 49.160141561601414, + "grad_norm": 0.45874515175819397, + "learning_rate": 2.5428381962864723e-05, + "loss": 0.5267356872558594, + "step": 55600 + }, + { + "epoch": 49.248617562486174, + "grad_norm": 0.5499678254127502, + "learning_rate": 2.53841732979664e-05, + "loss": 0.5255993270874023, + "step": 55700 + }, + { + "epoch": 49.337093563370935, + "grad_norm": 0.5569108724594116, + "learning_rate": 2.533996463306808e-05, + "loss": 0.5299503707885742, + "step": 55800 + }, + { + "epoch": 49.425569564255696, + "grad_norm": 0.5677438974380493, + "learning_rate": 2.529575596816976e-05, + "loss": 0.5316028594970703, + "step": 55900 + }, + { + "epoch": 49.51404556514046, + "grad_norm": 0.5888075828552246, + "learning_rate": 2.5251547303271445e-05, + "loss": 0.5354986953735351, + "step": 56000 + }, + { + "epoch": 49.60252156602522, + "grad_norm": 0.5639616250991821, + "learning_rate": 2.5207338638373122e-05, + "loss": 0.5369997787475586, + "step": 56100 + }, + { + "epoch": 49.69099756690998, + "grad_norm": 0.509158194065094, + "learning_rate": 2.5163129973474803e-05, + "loss": 0.536979866027832, + "step": 56200 + }, + { + "epoch": 49.77947356779474, + "grad_norm": 0.5412595868110657, + "learning_rate": 2.5118921308576483e-05, + "loss": 0.5382201004028321, + "step": 56300 + }, + { + "epoch": 49.86794956867949, + "grad_norm": 0.6052098274230957, + "learning_rate": 2.507471264367816e-05, + "loss": 0.5390504837036133, + "step": 56400 + }, + { + "epoch": 49.95642556956425, + "grad_norm": 0.5019105076789856, + "learning_rate": 2.503050397877984e-05, + "loss": 0.5391928482055665, + "step": 56500 + }, + { + "epoch": 50.04423800044238, + "grad_norm": 0.5133684873580933, + "learning_rate": 2.4986737400530504e-05, + "loss": 0.529360580444336, + "step": 56600 + }, + { + "epoch": 50.13271400132714, + "grad_norm": 0.5742220878601074, + "learning_rate": 2.4942528735632184e-05, + "loss": 0.5150651550292968, + "step": 56700 + }, + { + "epoch": 50.2211900022119, + "grad_norm": 0.5389617681503296, + "learning_rate": 2.4898320070733865e-05, + "loss": 0.5204330444335937, + "step": 56800 + }, + { + "epoch": 50.30966600309666, + "grad_norm": 0.5938611030578613, + "learning_rate": 2.4854111405835545e-05, + "loss": 0.5252494049072266, + "step": 56900 + }, + { + "epoch": 50.39814200398142, + "grad_norm": 0.5617892146110535, + "learning_rate": 2.4809902740937225e-05, + "loss": 0.5260490036010742, + "step": 57000 + }, + { + "epoch": 50.48661800486618, + "grad_norm": 0.6076000332832336, + "learning_rate": 2.4765694076038906e-05, + "loss": 0.5278256607055664, + "step": 57100 + }, + { + "epoch": 50.57509400575094, + "grad_norm": 0.5321983695030212, + "learning_rate": 2.4721485411140586e-05, + "loss": 0.5286510467529297, + "step": 57200 + }, + { + "epoch": 50.6635700066357, + "grad_norm": 0.614532470703125, + "learning_rate": 2.4677276746242263e-05, + "loss": 0.5313225936889648, + "step": 57300 + }, + { + "epoch": 50.75204600752046, + "grad_norm": 0.5830910801887512, + "learning_rate": 2.4633068081343944e-05, + "loss": 0.5300481796264649, + "step": 57400 + }, + { + "epoch": 50.84052200840522, + "grad_norm": 0.5918353199958801, + "learning_rate": 2.4588859416445624e-05, + "loss": 0.5337774276733398, + "step": 57500 + }, + { + "epoch": 50.92899800928998, + "grad_norm": 0.5791705846786499, + "learning_rate": 2.4544650751547305e-05, + "loss": 0.5316382598876953, + "step": 57600 + }, + { + "epoch": 51.01681044016811, + "grad_norm": 0.521299421787262, + "learning_rate": 2.4500442086648985e-05, + "loss": 0.5307102203369141, + "step": 57700 + }, + { + "epoch": 51.10528644105286, + "grad_norm": 0.5163324475288391, + "learning_rate": 2.4456233421750666e-05, + "loss": 0.5103409576416016, + "step": 57800 + }, + { + "epoch": 51.19376244193762, + "grad_norm": 0.5436499714851379, + "learning_rate": 2.4412024756852346e-05, + "loss": 0.5144682693481445, + "step": 57900 + }, + { + "epoch": 51.28223844282238, + "grad_norm": 0.5268517136573792, + "learning_rate": 2.4367816091954023e-05, + "loss": 0.5170879364013672, + "step": 58000 + }, + { + "epoch": 51.37071444370714, + "grad_norm": 0.5523056983947754, + "learning_rate": 2.4323607427055704e-05, + "loss": 0.5176148223876953, + "step": 58100 + }, + { + "epoch": 51.459190444591904, + "grad_norm": 0.5733488202095032, + "learning_rate": 2.4279398762157384e-05, + "loss": 0.5213256454467774, + "step": 58200 + }, + { + "epoch": 51.547666445476665, + "grad_norm": 0.6002511978149414, + "learning_rate": 2.4235190097259065e-05, + "loss": 0.5213332748413086, + "step": 58300 + }, + { + "epoch": 51.636142446361426, + "grad_norm": 0.5866407155990601, + "learning_rate": 2.4190981432360742e-05, + "loss": 0.5219316101074218, + "step": 58400 + }, + { + "epoch": 51.724618447246186, + "grad_norm": 0.620346188545227, + "learning_rate": 2.4146772767462426e-05, + "loss": 0.5251021575927735, + "step": 58500 + }, + { + "epoch": 51.81309444813095, + "grad_norm": 0.5428482294082642, + "learning_rate": 2.4102564102564103e-05, + "loss": 0.5254843521118164, + "step": 58600 + }, + { + "epoch": 51.90157044901571, + "grad_norm": 0.6146367192268372, + "learning_rate": 2.4058355437665783e-05, + "loss": 0.5262796401977539, + "step": 58700 + }, + { + "epoch": 51.99004644990046, + "grad_norm": 0.6002848148345947, + "learning_rate": 2.4014146772767464e-05, + "loss": 0.5279874801635742, + "step": 58800 + }, + { + "epoch": 52.07785888077859, + "grad_norm": 0.5608682036399841, + "learning_rate": 2.3970380194518127e-05, + "loss": 0.5045627975463867, + "step": 58900 + }, + { + "epoch": 52.166334881663346, + "grad_norm": 0.5034646391868591, + "learning_rate": 2.3926171529619807e-05, + "loss": 0.5071027755737305, + "step": 59000 + }, + { + "epoch": 52.25481088254811, + "grad_norm": 0.5443050861358643, + "learning_rate": 2.3881962864721484e-05, + "loss": 0.5105178451538086, + "step": 59100 + }, + { + "epoch": 52.34328688343287, + "grad_norm": 0.5455040335655212, + "learning_rate": 2.3837754199823168e-05, + "loss": 0.5111968612670899, + "step": 59200 + }, + { + "epoch": 52.43176288431763, + "grad_norm": 0.5393562912940979, + "learning_rate": 2.3793545534924845e-05, + "loss": 0.5109628295898437, + "step": 59300 + }, + { + "epoch": 52.52023888520239, + "grad_norm": 0.5572716593742371, + "learning_rate": 2.3749336870026526e-05, + "loss": 0.5128989791870118, + "step": 59400 + }, + { + "epoch": 52.60871488608715, + "grad_norm": 0.5157389640808105, + "learning_rate": 2.3705128205128206e-05, + "loss": 0.5179262924194336, + "step": 59500 + }, + { + "epoch": 52.69719088697191, + "grad_norm": 0.5245424509048462, + "learning_rate": 2.3660919540229886e-05, + "loss": 0.5182614517211914, + "step": 59600 + }, + { + "epoch": 52.78566688785667, + "grad_norm": 0.6405171155929565, + "learning_rate": 2.3616710875331567e-05, + "loss": 0.5196902084350586, + "step": 59700 + }, + { + "epoch": 52.87414288874143, + "grad_norm": 0.5531449317932129, + "learning_rate": 2.3572502210433244e-05, + "loss": 0.5213772583007813, + "step": 59800 + }, + { + "epoch": 52.96261888962619, + "grad_norm": 0.5440499186515808, + "learning_rate": 2.3528293545534928e-05, + "loss": 0.5214180755615234, + "step": 59900 + }, + { + "epoch": 53.050431320504316, + "grad_norm": 0.5454942584037781, + "learning_rate": 2.3484084880636605e-05, + "loss": 0.5082747268676758, + "step": 60000 + }, + { + "epoch": 53.13890732138907, + "grad_norm": 0.6037677526473999, + "learning_rate": 2.3439876215738285e-05, + "loss": 0.4992447662353516, + "step": 60100 + }, + { + "epoch": 53.22738332227383, + "grad_norm": 0.6089978218078613, + "learning_rate": 2.3395667550839966e-05, + "loss": 0.501078987121582, + "step": 60200 + }, + { + "epoch": 53.31585932315859, + "grad_norm": 0.5581852793693542, + "learning_rate": 2.3351458885941646e-05, + "loss": 0.50614990234375, + "step": 60300 + }, + { + "epoch": 53.40433532404335, + "grad_norm": 0.5539824366569519, + "learning_rate": 2.3307250221043327e-05, + "loss": 0.5036640548706055, + "step": 60400 + }, + { + "epoch": 53.49281132492811, + "grad_norm": 0.5434619784355164, + "learning_rate": 2.3263041556145004e-05, + "loss": 0.5078977966308593, + "step": 60500 + }, + { + "epoch": 53.58128732581287, + "grad_norm": 0.5596204400062561, + "learning_rate": 2.3218832891246688e-05, + "loss": 0.5105896377563477, + "step": 60600 + }, + { + "epoch": 53.669763326697634, + "grad_norm": 0.5933516621589661, + "learning_rate": 2.3174624226348365e-05, + "loss": 0.512298583984375, + "step": 60700 + }, + { + "epoch": 53.758239327582395, + "grad_norm": 0.5938782095909119, + "learning_rate": 2.3130415561450045e-05, + "loss": 0.5136246871948242, + "step": 60800 + }, + { + "epoch": 53.846715328467155, + "grad_norm": 0.5711195468902588, + "learning_rate": 2.3086206896551726e-05, + "loss": 0.5137527465820313, + "step": 60900 + }, + { + "epoch": 53.935191329351916, + "grad_norm": 0.5345974564552307, + "learning_rate": 2.3041998231653406e-05, + "loss": 0.5148337173461914, + "step": 61000 + }, + { + "epoch": 54.02300376023004, + "grad_norm": 0.5462290644645691, + "learning_rate": 2.299823165340407e-05, + "loss": 0.5070685577392579, + "step": 61100 + }, + { + "epoch": 54.1114797611148, + "grad_norm": 0.5135403275489807, + "learning_rate": 2.295402298850575e-05, + "loss": 0.49042961120605466, + "step": 61200 + }, + { + "epoch": 54.199955761999554, + "grad_norm": 0.5753411650657654, + "learning_rate": 2.290981432360743e-05, + "loss": 0.49762104034423826, + "step": 61300 + }, + { + "epoch": 54.288431762884315, + "grad_norm": 0.5738378167152405, + "learning_rate": 2.2865605658709107e-05, + "loss": 0.4983011245727539, + "step": 61400 + }, + { + "epoch": 54.376907763769076, + "grad_norm": 0.5234966278076172, + "learning_rate": 2.2821396993810788e-05, + "loss": 0.5005590057373047, + "step": 61500 + }, + { + "epoch": 54.465383764653836, + "grad_norm": 0.5313852429389954, + "learning_rate": 2.2777188328912468e-05, + "loss": 0.503372917175293, + "step": 61600 + }, + { + "epoch": 54.5538597655386, + "grad_norm": 0.49838191270828247, + "learning_rate": 2.273297966401415e-05, + "loss": 0.5020324325561524, + "step": 61700 + }, + { + "epoch": 54.64233576642336, + "grad_norm": 0.5403088927268982, + "learning_rate": 2.2688770999115826e-05, + "loss": 0.5049329376220704, + "step": 61800 + }, + { + "epoch": 54.73081176730812, + "grad_norm": 0.46723249554634094, + "learning_rate": 2.264456233421751e-05, + "loss": 0.5059401321411133, + "step": 61900 + }, + { + "epoch": 54.81928776819288, + "grad_norm": 0.5539482235908508, + "learning_rate": 2.2600353669319187e-05, + "loss": 0.5069823837280274, + "step": 62000 + }, + { + "epoch": 54.90776376907764, + "grad_norm": 0.5377270579338074, + "learning_rate": 2.2556145004420867e-05, + "loss": 0.508377685546875, + "step": 62100 + }, + { + "epoch": 54.9962397699624, + "grad_norm": 0.6182072162628174, + "learning_rate": 2.2511936339522548e-05, + "loss": 0.5095947647094726, + "step": 62200 + }, + { + "epoch": 55.084052200840524, + "grad_norm": 0.5139372944831848, + "learning_rate": 2.2467727674624228e-05, + "loss": 0.4896272277832031, + "step": 62300 + }, + { + "epoch": 55.172528201725285, + "grad_norm": 0.5812121629714966, + "learning_rate": 2.242351900972591e-05, + "loss": 0.49099037170410154, + "step": 62400 + }, + { + "epoch": 55.26100420261004, + "grad_norm": 0.5491729378700256, + "learning_rate": 2.2379310344827586e-05, + "loss": 0.4927267074584961, + "step": 62500 + }, + { + "epoch": 55.3494802034948, + "grad_norm": 0.5951135158538818, + "learning_rate": 2.233510167992927e-05, + "loss": 0.49305023193359376, + "step": 62600 + }, + { + "epoch": 55.43795620437956, + "grad_norm": 0.5938172340393066, + "learning_rate": 2.2290893015030946e-05, + "loss": 0.49482032775878904, + "step": 62700 + }, + { + "epoch": 55.52643220526432, + "grad_norm": 0.5288723111152649, + "learning_rate": 2.2246684350132627e-05, + "loss": 0.4974822998046875, + "step": 62800 + }, + { + "epoch": 55.61490820614908, + "grad_norm": 0.5663400888442993, + "learning_rate": 2.2202475685234307e-05, + "loss": 0.498828239440918, + "step": 62900 + }, + { + "epoch": 55.70338420703384, + "grad_norm": 0.5939375162124634, + "learning_rate": 2.2158267020335988e-05, + "loss": 0.5004440307617187, + "step": 63000 + }, + { + "epoch": 55.7918602079186, + "grad_norm": 0.628774106502533, + "learning_rate": 2.2114058355437668e-05, + "loss": 0.5034025573730468, + "step": 63100 + }, + { + "epoch": 55.880336208803364, + "grad_norm": 0.6160352826118469, + "learning_rate": 2.2069849690539345e-05, + "loss": 0.5042695236206055, + "step": 63200 + }, + { + "epoch": 55.968812209688124, + "grad_norm": 0.5891813635826111, + "learning_rate": 2.202564102564103e-05, + "loss": 0.5021416473388672, + "step": 63300 + }, + { + "epoch": 56.05662464056625, + "grad_norm": 0.5297622680664062, + "learning_rate": 2.198187444739169e-05, + "loss": 0.4904953384399414, + "step": 63400 + }, + { + "epoch": 56.14510064145101, + "grad_norm": 0.5649422407150269, + "learning_rate": 2.193766578249337e-05, + "loss": 0.485706672668457, + "step": 63500 + }, + { + "epoch": 56.23357664233577, + "grad_norm": 0.6352797150611877, + "learning_rate": 2.189345711759505e-05, + "loss": 0.4867672348022461, + "step": 63600 + }, + { + "epoch": 56.32205264322052, + "grad_norm": 0.5789678692817688, + "learning_rate": 2.184924845269673e-05, + "loss": 0.48802379608154295, + "step": 63700 + }, + { + "epoch": 56.410528644105284, + "grad_norm": 0.6075431704521179, + "learning_rate": 2.180503978779841e-05, + "loss": 0.4910835647583008, + "step": 63800 + }, + { + "epoch": 56.499004644990045, + "grad_norm": 0.5858777165412903, + "learning_rate": 2.1760831122900088e-05, + "loss": 0.4906935119628906, + "step": 63900 + }, + { + "epoch": 56.587480645874805, + "grad_norm": 0.5143148899078369, + "learning_rate": 2.171662245800177e-05, + "loss": 0.49202545166015627, + "step": 64000 + }, + { + "epoch": 56.675956646759566, + "grad_norm": 0.5330872535705566, + "learning_rate": 2.167241379310345e-05, + "loss": 0.4929664611816406, + "step": 64100 + }, + { + "epoch": 56.76443264764433, + "grad_norm": 0.5530017018318176, + "learning_rate": 2.162820512820513e-05, + "loss": 0.49355899810791015, + "step": 64200 + }, + { + "epoch": 56.85290864852909, + "grad_norm": 0.5891992449760437, + "learning_rate": 2.158399646330681e-05, + "loss": 0.49566749572753904, + "step": 64300 + }, + { + "epoch": 56.94138464941385, + "grad_norm": 0.5289095044136047, + "learning_rate": 2.153978779840849e-05, + "loss": 0.4987163543701172, + "step": 64400 + }, + { + "epoch": 57.02919708029197, + "grad_norm": 0.5679471492767334, + "learning_rate": 2.1495579133510167e-05, + "loss": 0.49003833770751953, + "step": 64500 + }, + { + "epoch": 57.11767308117673, + "grad_norm": 0.5432245135307312, + "learning_rate": 2.1451370468611848e-05, + "loss": 0.47765895843505857, + "step": 64600 + }, + { + "epoch": 57.20614908206149, + "grad_norm": 0.5474491119384766, + "learning_rate": 2.1407161803713528e-05, + "loss": 0.4797785568237305, + "step": 64700 + }, + { + "epoch": 57.294625082946254, + "grad_norm": 0.537804126739502, + "learning_rate": 2.136295313881521e-05, + "loss": 0.4833247756958008, + "step": 64800 + }, + { + "epoch": 57.38310108383101, + "grad_norm": 0.572169840335846, + "learning_rate": 2.131874447391689e-05, + "loss": 0.4836674118041992, + "step": 64900 + }, + { + "epoch": 57.47157708471577, + "grad_norm": 0.5344268679618835, + "learning_rate": 2.127453580901857e-05, + "loss": 0.48507492065429686, + "step": 65000 + }, + { + "epoch": 57.56005308560053, + "grad_norm": 0.5664619207382202, + "learning_rate": 2.123032714412025e-05, + "loss": 0.488138427734375, + "step": 65100 + }, + { + "epoch": 57.64852908648529, + "grad_norm": 0.5902144312858582, + "learning_rate": 2.1186118479221927e-05, + "loss": 0.48771110534667966, + "step": 65200 + }, + { + "epoch": 57.73700508737005, + "grad_norm": 0.562929630279541, + "learning_rate": 2.1141909814323607e-05, + "loss": 0.4875301742553711, + "step": 65300 + }, + { + "epoch": 57.82548108825481, + "grad_norm": 0.5995573997497559, + "learning_rate": 2.1097701149425288e-05, + "loss": 0.49271678924560547, + "step": 65400 + }, + { + "epoch": 57.91395708913957, + "grad_norm": 0.6624785661697388, + "learning_rate": 2.105349248452697e-05, + "loss": 0.4920695877075195, + "step": 65500 + }, + { + "epoch": 58.001769520017696, + "grad_norm": 0.5402753353118896, + "learning_rate": 2.100928381962865e-05, + "loss": 0.49431739807128905, + "step": 65600 + }, + { + "epoch": 58.09024552090246, + "grad_norm": 0.5145826935768127, + "learning_rate": 2.096507515473033e-05, + "loss": 0.47089763641357424, + "step": 65700 + }, + { + "epoch": 58.17872152178722, + "grad_norm": 0.5931445360183716, + "learning_rate": 2.092086648983201e-05, + "loss": 0.4758612060546875, + "step": 65800 + }, + { + "epoch": 58.26719752267198, + "grad_norm": 0.5388639569282532, + "learning_rate": 2.0876657824933687e-05, + "loss": 0.47640296936035154, + "step": 65900 + }, + { + "epoch": 58.35567352355674, + "grad_norm": 0.5639314651489258, + "learning_rate": 2.0832449160035367e-05, + "loss": 0.482130241394043, + "step": 66000 + }, + { + "epoch": 58.44414952444149, + "grad_norm": 0.5535529851913452, + "learning_rate": 2.0788240495137048e-05, + "loss": 0.47872936248779296, + "step": 66100 + }, + { + "epoch": 58.53262552532625, + "grad_norm": 0.5827674865722656, + "learning_rate": 2.0744031830238728e-05, + "loss": 0.4842064666748047, + "step": 66200 + }, + { + "epoch": 58.621101526211014, + "grad_norm": 0.5696784257888794, + "learning_rate": 2.0699823165340405e-05, + "loss": 0.4816234588623047, + "step": 66300 + }, + { + "epoch": 58.709577527095774, + "grad_norm": 0.5349422097206116, + "learning_rate": 2.065561450044209e-05, + "loss": 0.48554718017578125, + "step": 66400 + }, + { + "epoch": 58.798053527980535, + "grad_norm": 0.636604368686676, + "learning_rate": 2.0611405835543766e-05, + "loss": 0.4876006317138672, + "step": 66500 + }, + { + "epoch": 58.886529528865296, + "grad_norm": 0.6060304045677185, + "learning_rate": 2.0567197170645447e-05, + "loss": 0.4887725830078125, + "step": 66600 + }, + { + "epoch": 58.97500552975006, + "grad_norm": 0.6087244749069214, + "learning_rate": 2.0522988505747127e-05, + "loss": 0.4868877410888672, + "step": 66700 + }, + { + "epoch": 59.06281796062818, + "grad_norm": 0.49913933873176575, + "learning_rate": 2.047922192749779e-05, + "loss": 0.4722119140625, + "step": 66800 + }, + { + "epoch": 59.15129396151294, + "grad_norm": 0.4722621738910675, + "learning_rate": 2.043501326259947e-05, + "loss": 0.47009246826171874, + "step": 66900 + }, + { + "epoch": 59.2397699623977, + "grad_norm": 0.5657719373703003, + "learning_rate": 2.0390804597701148e-05, + "loss": 0.472298583984375, + "step": 67000 + }, + { + "epoch": 59.32824596328246, + "grad_norm": 0.5761541724205017, + "learning_rate": 2.034659593280283e-05, + "loss": 0.4723761749267578, + "step": 67100 + }, + { + "epoch": 59.416721964167216, + "grad_norm": 0.6316192150115967, + "learning_rate": 2.030238726790451e-05, + "loss": 0.47409954071044924, + "step": 67200 + }, + { + "epoch": 59.50519796505198, + "grad_norm": 0.6090986132621765, + "learning_rate": 2.025817860300619e-05, + "loss": 0.4764304351806641, + "step": 67300 + }, + { + "epoch": 59.59367396593674, + "grad_norm": 0.5362303256988525, + "learning_rate": 2.021396993810787e-05, + "loss": 0.4776358795166016, + "step": 67400 + }, + { + "epoch": 59.6821499668215, + "grad_norm": 0.553995668888092, + "learning_rate": 2.016976127320955e-05, + "loss": 0.4807791519165039, + "step": 67500 + }, + { + "epoch": 59.77062596770626, + "grad_norm": 0.5615981221199036, + "learning_rate": 2.012555260831123e-05, + "loss": 0.48062610626220703, + "step": 67600 + }, + { + "epoch": 59.85910196859102, + "grad_norm": 0.5885509252548218, + "learning_rate": 2.0081343943412908e-05, + "loss": 0.48244945526123045, + "step": 67700 + }, + { + "epoch": 59.94757796947578, + "grad_norm": 0.6052979230880737, + "learning_rate": 2.003713527851459e-05, + "loss": 0.4803206634521484, + "step": 67800 + }, + { + "epoch": 60.035390400353904, + "grad_norm": 0.5579769015312195, + "learning_rate": 1.999292661361627e-05, + "loss": 0.4752388000488281, + "step": 67900 + }, + { + "epoch": 60.123866401238665, + "grad_norm": 0.478289395570755, + "learning_rate": 1.994871794871795e-05, + "loss": 0.4645302200317383, + "step": 68000 + }, + { + "epoch": 60.212342402123426, + "grad_norm": 0.5545957088470459, + "learning_rate": 1.990450928381963e-05, + "loss": 0.46837158203125, + "step": 68100 + }, + { + "epoch": 60.300818403008186, + "grad_norm": 0.524662435054779, + "learning_rate": 1.986030061892131e-05, + "loss": 0.4679202651977539, + "step": 68200 + }, + { + "epoch": 60.38929440389295, + "grad_norm": 0.6101793646812439, + "learning_rate": 1.981609195402299e-05, + "loss": 0.46956668853759764, + "step": 68300 + }, + { + "epoch": 60.4777704047777, + "grad_norm": 0.5040204524993896, + "learning_rate": 1.9771883289124667e-05, + "loss": 0.4706681060791016, + "step": 68400 + }, + { + "epoch": 60.56624640566246, + "grad_norm": 0.563679039478302, + "learning_rate": 1.972767462422635e-05, + "loss": 0.471558837890625, + "step": 68500 + }, + { + "epoch": 60.65472240654722, + "grad_norm": 0.5668439865112305, + "learning_rate": 1.9683465959328028e-05, + "loss": 0.4727770233154297, + "step": 68600 + }, + { + "epoch": 60.74319840743198, + "grad_norm": 0.6011987328529358, + "learning_rate": 1.963925729442971e-05, + "loss": 0.47645427703857424, + "step": 68700 + }, + { + "epoch": 60.83167440831674, + "grad_norm": 0.6392132043838501, + "learning_rate": 1.959504862953139e-05, + "loss": 0.4765947341918945, + "step": 68800 + }, + { + "epoch": 60.920150409201504, + "grad_norm": 0.6424957513809204, + "learning_rate": 1.955083996463307e-05, + "loss": 0.4768808746337891, + "step": 68900 + }, + { + "epoch": 61.00796284007963, + "grad_norm": 0.5341200828552246, + "learning_rate": 1.9507073386383733e-05, + "loss": 0.4776120376586914, + "step": 69000 + }, + { + "epoch": 61.09643884096439, + "grad_norm": 0.622922956943512, + "learning_rate": 1.9462864721485413e-05, + "loss": 0.46137203216552736, + "step": 69100 + }, + { + "epoch": 61.18491484184915, + "grad_norm": 0.5679436326026917, + "learning_rate": 1.9418656056587094e-05, + "loss": 0.46096920013427733, + "step": 69200 + }, + { + "epoch": 61.27339084273391, + "grad_norm": 0.5972808003425598, + "learning_rate": 1.937444739168877e-05, + "loss": 0.46090087890625, + "step": 69300 + }, + { + "epoch": 61.36186684361867, + "grad_norm": 0.5825915336608887, + "learning_rate": 1.933023872679045e-05, + "loss": 0.46518352508544925, + "step": 69400 + }, + { + "epoch": 61.45034284450343, + "grad_norm": 0.48754116892814636, + "learning_rate": 1.9286030061892132e-05, + "loss": 0.4664886856079102, + "step": 69500 + }, + { + "epoch": 61.538818845388185, + "grad_norm": 0.5583191514015198, + "learning_rate": 1.9241821396993812e-05, + "loss": 0.46886295318603516, + "step": 69600 + }, + { + "epoch": 61.627294846272946, + "grad_norm": 0.5658340454101562, + "learning_rate": 1.919761273209549e-05, + "loss": 0.4696169662475586, + "step": 69700 + }, + { + "epoch": 61.71577084715771, + "grad_norm": 0.5801714658737183, + "learning_rate": 1.9153404067197173e-05, + "loss": 0.47141036987304685, + "step": 69800 + }, + { + "epoch": 61.80424684804247, + "grad_norm": 0.5643869042396545, + "learning_rate": 1.910919540229885e-05, + "loss": 0.4727308654785156, + "step": 69900 + }, + { + "epoch": 61.89272284892723, + "grad_norm": 0.5937660336494446, + "learning_rate": 1.906498673740053e-05, + "loss": 0.4726886367797852, + "step": 70000 + }, + { + "epoch": 61.98119884981199, + "grad_norm": 0.5228411555290222, + "learning_rate": 1.902077807250221e-05, + "loss": 0.47457176208496094, + "step": 70100 + }, + { + "epoch": 62.06901128069011, + "grad_norm": 0.5100186467170715, + "learning_rate": 1.897656940760389e-05, + "loss": 0.4604149627685547, + "step": 70200 + }, + { + "epoch": 62.15748728157487, + "grad_norm": 0.5119529962539673, + "learning_rate": 1.8932360742705572e-05, + "loss": 0.4561204147338867, + "step": 70300 + }, + { + "epoch": 62.245963282459634, + "grad_norm": 0.5130912065505981, + "learning_rate": 1.888815207780725e-05, + "loss": 0.4596226501464844, + "step": 70400 + }, + { + "epoch": 62.334439283344395, + "grad_norm": 0.5388224720954895, + "learning_rate": 1.8843943412908933e-05, + "loss": 0.4617993927001953, + "step": 70500 + }, + { + "epoch": 62.422915284229155, + "grad_norm": 0.5555194020271301, + "learning_rate": 1.879973474801061e-05, + "loss": 0.46267467498779297, + "step": 70600 + }, + { + "epoch": 62.511391285113916, + "grad_norm": 0.5136281847953796, + "learning_rate": 1.875552608311229e-05, + "loss": 0.4628156280517578, + "step": 70700 + }, + { + "epoch": 62.59986728599867, + "grad_norm": 0.5039867162704468, + "learning_rate": 1.871131741821397e-05, + "loss": 0.4678297805786133, + "step": 70800 + }, + { + "epoch": 62.68834328688343, + "grad_norm": 0.566985547542572, + "learning_rate": 1.866710875331565e-05, + "loss": 0.46522830963134765, + "step": 70900 + }, + { + "epoch": 62.77681928776819, + "grad_norm": 0.5855474472045898, + "learning_rate": 1.8622900088417332e-05, + "loss": 0.46788333892822265, + "step": 71000 + }, + { + "epoch": 62.86529528865295, + "grad_norm": 0.5838083624839783, + "learning_rate": 1.857869142351901e-05, + "loss": 0.4687856292724609, + "step": 71100 + }, + { + "epoch": 62.95377128953771, + "grad_norm": 0.6574355363845825, + "learning_rate": 1.8534482758620693e-05, + "loss": 0.46836143493652344, + "step": 71200 + }, + { + "epoch": 63.04158372041584, + "grad_norm": 0.5751773118972778, + "learning_rate": 1.849027409372237e-05, + "loss": 0.4590755844116211, + "step": 71300 + }, + { + "epoch": 63.1300597213006, + "grad_norm": 0.5056807398796082, + "learning_rate": 1.844606542882405e-05, + "loss": 0.45313865661621094, + "step": 71400 + }, + { + "epoch": 63.21853572218536, + "grad_norm": 0.5403828024864197, + "learning_rate": 1.840185676392573e-05, + "loss": 0.4552134323120117, + "step": 71500 + }, + { + "epoch": 63.30701172307012, + "grad_norm": 0.48244568705558777, + "learning_rate": 1.835764809902741e-05, + "loss": 0.45661014556884766, + "step": 71600 + }, + { + "epoch": 63.39548772395488, + "grad_norm": 0.5753127932548523, + "learning_rate": 1.831343943412909e-05, + "loss": 0.4578168487548828, + "step": 71700 + }, + { + "epoch": 63.48396372483964, + "grad_norm": 0.5782042741775513, + "learning_rate": 1.826923076923077e-05, + "loss": 0.4589107131958008, + "step": 71800 + }, + { + "epoch": 63.5724397257244, + "grad_norm": 0.5895569920539856, + "learning_rate": 1.8225022104332453e-05, + "loss": 0.46304950714111326, + "step": 71900 + }, + { + "epoch": 63.660915726609154, + "grad_norm": 0.6601688265800476, + "learning_rate": 1.818081343943413e-05, + "loss": 0.45953712463378904, + "step": 72000 + }, + { + "epoch": 63.749391727493915, + "grad_norm": 0.5695818066596985, + "learning_rate": 1.813660477453581e-05, + "loss": 0.46058246612548825, + "step": 72100 + }, + { + "epoch": 63.837867728378676, + "grad_norm": 0.5006322264671326, + "learning_rate": 1.809239610963749e-05, + "loss": 0.4630731964111328, + "step": 72200 + }, + { + "epoch": 63.926343729263436, + "grad_norm": 0.5871863961219788, + "learning_rate": 1.804818744473917e-05, + "loss": 0.46295913696289065, + "step": 72300 + }, + { + "epoch": 64.01415616014157, + "grad_norm": 0.5417830348014832, + "learning_rate": 1.8003978779840848e-05, + "loss": 0.4623433303833008, + "step": 72400 + }, + { + "epoch": 64.10263216102632, + "grad_norm": 0.5019242763519287, + "learning_rate": 1.795977011494253e-05, + "loss": 0.44698051452636717, + "step": 72500 + }, + { + "epoch": 64.19110816191107, + "grad_norm": 0.5637330412864685, + "learning_rate": 1.791556145004421e-05, + "loss": 0.4492236328125, + "step": 72600 + }, + { + "epoch": 64.27958416279584, + "grad_norm": 0.5333090424537659, + "learning_rate": 1.787135278514589e-05, + "loss": 0.45192584991455076, + "step": 72700 + }, + { + "epoch": 64.3680601636806, + "grad_norm": 0.5232571363449097, + "learning_rate": 1.782714412024757e-05, + "loss": 0.45244823455810546, + "step": 72800 + }, + { + "epoch": 64.45653616456536, + "grad_norm": 0.4935717284679413, + "learning_rate": 1.778293545534925e-05, + "loss": 0.4529353332519531, + "step": 72900 + }, + { + "epoch": 64.54501216545012, + "grad_norm": 0.5450688600540161, + "learning_rate": 1.7739168877099913e-05, + "loss": 0.4567538833618164, + "step": 73000 + }, + { + "epoch": 64.63348816633489, + "grad_norm": 0.47621846199035645, + "learning_rate": 1.769496021220159e-05, + "loss": 0.4563169097900391, + "step": 73100 + }, + { + "epoch": 64.72196416721964, + "grad_norm": 0.5023945569992065, + "learning_rate": 1.7650751547303274e-05, + "loss": 0.46204959869384765, + "step": 73200 + }, + { + "epoch": 64.8104401681044, + "grad_norm": 0.49148306250572205, + "learning_rate": 1.760654288240495e-05, + "loss": 0.45924064636230466, + "step": 73300 + }, + { + "epoch": 64.89891616898916, + "grad_norm": 0.6161800026893616, + "learning_rate": 1.7562334217506632e-05, + "loss": 0.45994918823242187, + "step": 73400 + }, + { + "epoch": 64.98739216987393, + "grad_norm": 0.5307760238647461, + "learning_rate": 1.7518125552608312e-05, + "loss": 0.461478271484375, + "step": 73500 + }, + { + "epoch": 65.07520460075204, + "grad_norm": 0.588062584400177, + "learning_rate": 1.7474358974358976e-05, + "loss": 0.4461378479003906, + "step": 73600 + }, + { + "epoch": 65.16368060163681, + "grad_norm": 0.5329079627990723, + "learning_rate": 1.7430150309460656e-05, + "loss": 0.4440943145751953, + "step": 73700 + }, + { + "epoch": 65.25215660252157, + "grad_norm": 0.6149891018867493, + "learning_rate": 1.7385941644562333e-05, + "loss": 0.44721881866455077, + "step": 73800 + }, + { + "epoch": 65.34063260340632, + "grad_norm": 0.5438173413276672, + "learning_rate": 1.7341732979664017e-05, + "loss": 0.44954757690429686, + "step": 73900 + }, + { + "epoch": 65.42910860429109, + "grad_norm": 0.5428133606910706, + "learning_rate": 1.7297524314765694e-05, + "loss": 0.45107986450195314, + "step": 74000 + }, + { + "epoch": 65.51758460517584, + "grad_norm": 0.5134186744689941, + "learning_rate": 1.7253315649867374e-05, + "loss": 0.45244071960449217, + "step": 74100 + }, + { + "epoch": 65.60606060606061, + "grad_norm": 0.6233081817626953, + "learning_rate": 1.7209106984969055e-05, + "loss": 0.45329185485839846, + "step": 74200 + }, + { + "epoch": 65.69453660694536, + "grad_norm": 0.5700708627700806, + "learning_rate": 1.7164898320070735e-05, + "loss": 0.4539757537841797, + "step": 74300 + }, + { + "epoch": 65.78301260783013, + "grad_norm": 0.5631476640701294, + "learning_rate": 1.7120689655172416e-05, + "loss": 0.4555579376220703, + "step": 74400 + }, + { + "epoch": 65.87148860871488, + "grad_norm": 0.5964381694793701, + "learning_rate": 1.7076480990274093e-05, + "loss": 0.45496936798095705, + "step": 74500 + }, + { + "epoch": 65.95996460959965, + "grad_norm": 0.5872741341590881, + "learning_rate": 1.7032272325375777e-05, + "loss": 0.45641098022460935, + "step": 74600 + }, + { + "epoch": 66.04777704047777, + "grad_norm": 0.522363543510437, + "learning_rate": 1.6988063660477454e-05, + "loss": 0.4488802337646484, + "step": 74700 + }, + { + "epoch": 66.13625304136254, + "grad_norm": 0.5161113739013672, + "learning_rate": 1.6943854995579134e-05, + "loss": 0.44122817993164065, + "step": 74800 + }, + { + "epoch": 66.22472904224729, + "grad_norm": 0.5127883553504944, + "learning_rate": 1.6899646330680815e-05, + "loss": 0.4447059631347656, + "step": 74900 + }, + { + "epoch": 66.31320504313204, + "grad_norm": 0.5202219486236572, + "learning_rate": 1.6855437665782495e-05, + "loss": 0.4453567123413086, + "step": 75000 + }, + { + "epoch": 66.40168104401681, + "grad_norm": 0.4957808256149292, + "learning_rate": 1.6811229000884172e-05, + "loss": 0.44502986907958986, + "step": 75100 + }, + { + "epoch": 66.49015704490157, + "grad_norm": 0.622518002986908, + "learning_rate": 1.6767020335985853e-05, + "loss": 0.44539188385009765, + "step": 75200 + }, + { + "epoch": 66.57863304578633, + "grad_norm": 0.5333230495452881, + "learning_rate": 1.6722811671087537e-05, + "loss": 0.4479424667358398, + "step": 75300 + }, + { + "epoch": 66.66710904667109, + "grad_norm": 0.536641001701355, + "learning_rate": 1.6678603006189214e-05, + "loss": 0.4486875534057617, + "step": 75400 + }, + { + "epoch": 66.75558504755585, + "grad_norm": 0.6140312552452087, + "learning_rate": 1.6634394341290894e-05, + "loss": 0.45118595123291017, + "step": 75500 + }, + { + "epoch": 66.84406104844061, + "grad_norm": 0.5268392562866211, + "learning_rate": 1.6590185676392574e-05, + "loss": 0.4503518676757812, + "step": 75600 + }, + { + "epoch": 66.93253704932538, + "grad_norm": 0.6316497325897217, + "learning_rate": 1.6545977011494255e-05, + "loss": 0.45311626434326174, + "step": 75700 + }, + { + "epoch": 67.02034948020349, + "grad_norm": 0.4964323937892914, + "learning_rate": 1.6502210433244915e-05, + "loss": 0.44798419952392576, + "step": 75800 + }, + { + "epoch": 67.10882548108826, + "grad_norm": 0.5668012499809265, + "learning_rate": 1.6458001768346595e-05, + "loss": 0.43682758331298827, + "step": 75900 + }, + { + "epoch": 67.19730148197301, + "grad_norm": 0.5451331734657288, + "learning_rate": 1.6413793103448276e-05, + "loss": 0.43744281768798826, + "step": 76000 + }, + { + "epoch": 67.28577748285778, + "grad_norm": 0.5625444650650024, + "learning_rate": 1.6369584438549956e-05, + "loss": 0.44072349548339845, + "step": 76100 + }, + { + "epoch": 67.37425348374254, + "grad_norm": 0.5437332391738892, + "learning_rate": 1.6325375773651637e-05, + "loss": 0.4433360290527344, + "step": 76200 + }, + { + "epoch": 67.46272948462729, + "grad_norm": 0.6005889773368835, + "learning_rate": 1.6281167108753317e-05, + "loss": 0.44355270385742185, + "step": 76300 + }, + { + "epoch": 67.55120548551206, + "grad_norm": 0.6379736065864563, + "learning_rate": 1.6236958443854997e-05, + "loss": 0.4445816421508789, + "step": 76400 + }, + { + "epoch": 67.63968148639681, + "grad_norm": 0.4892788529396057, + "learning_rate": 1.6192749778956675e-05, + "loss": 0.4460066604614258, + "step": 76500 + }, + { + "epoch": 67.72815748728158, + "grad_norm": 0.5238019227981567, + "learning_rate": 1.614854111405836e-05, + "loss": 0.44812583923339844, + "step": 76600 + }, + { + "epoch": 67.81663348816633, + "grad_norm": 0.6448091864585876, + "learning_rate": 1.6104332449160035e-05, + "loss": 0.44679683685302735, + "step": 76700 + }, + { + "epoch": 67.9051094890511, + "grad_norm": 0.501971423625946, + "learning_rate": 1.6060123784261716e-05, + "loss": 0.44675071716308595, + "step": 76800 + }, + { + "epoch": 67.99358548993585, + "grad_norm": 0.5027251243591309, + "learning_rate": 1.6015915119363396e-05, + "loss": 0.450067138671875, + "step": 76900 + }, + { + "epoch": 68.08139792081398, + "grad_norm": 0.5118396878242493, + "learning_rate": 1.5971706454465077e-05, + "loss": 0.4363971710205078, + "step": 77000 + }, + { + "epoch": 68.16987392169874, + "grad_norm": 0.49976325035095215, + "learning_rate": 1.5927497789566757e-05, + "loss": 0.43459579467773435, + "step": 77100 + }, + { + "epoch": 68.2583499225835, + "grad_norm": 0.4591541886329651, + "learning_rate": 1.5883289124668434e-05, + "loss": 0.4374491500854492, + "step": 77200 + }, + { + "epoch": 68.34682592346826, + "grad_norm": 0.5061107277870178, + "learning_rate": 1.5839080459770118e-05, + "loss": 0.4367493438720703, + "step": 77300 + }, + { + "epoch": 68.43530192435301, + "grad_norm": 0.5607414245605469, + "learning_rate": 1.5794871794871795e-05, + "loss": 0.43953250885009765, + "step": 77400 + }, + { + "epoch": 68.52377792523778, + "grad_norm": 0.5758550763130188, + "learning_rate": 1.5750663129973476e-05, + "loss": 0.4412353515625, + "step": 77500 + }, + { + "epoch": 68.61225392612253, + "grad_norm": 0.6092869639396667, + "learning_rate": 1.5706454465075153e-05, + "loss": 0.44133682250976564, + "step": 77600 + }, + { + "epoch": 68.7007299270073, + "grad_norm": 0.6203352808952332, + "learning_rate": 1.5662245800176837e-05, + "loss": 0.4439066696166992, + "step": 77700 + }, + { + "epoch": 68.78920592789206, + "grad_norm": 0.5746839046478271, + "learning_rate": 1.5618037135278517e-05, + "loss": 0.4423197174072266, + "step": 77800 + }, + { + "epoch": 68.87768192877682, + "grad_norm": 0.5136276483535767, + "learning_rate": 1.5573828470380194e-05, + "loss": 0.4460869598388672, + "step": 77900 + }, + { + "epoch": 68.96615792966158, + "grad_norm": 0.4968768358230591, + "learning_rate": 1.5529619805481878e-05, + "loss": 0.4462531280517578, + "step": 78000 + }, + { + "epoch": 69.05397036053971, + "grad_norm": 0.5103012919425964, + "learning_rate": 1.5485411140583555e-05, + "loss": 0.43465484619140626, + "step": 78100 + }, + { + "epoch": 69.14244636142446, + "grad_norm": 0.5626784563064575, + "learning_rate": 1.5441202475685236e-05, + "loss": 0.4333412551879883, + "step": 78200 + }, + { + "epoch": 69.23092236230923, + "grad_norm": 0.5118581652641296, + "learning_rate": 1.5396993810786913e-05, + "loss": 0.4336922836303711, + "step": 78300 + }, + { + "epoch": 69.31939836319398, + "grad_norm": 0.5944911241531372, + "learning_rate": 1.5352785145888596e-05, + "loss": 0.43566287994384767, + "step": 78400 + }, + { + "epoch": 69.40787436407874, + "grad_norm": 0.5433744788169861, + "learning_rate": 1.5308576480990273e-05, + "loss": 0.4361726379394531, + "step": 78500 + }, + { + "epoch": 69.4963503649635, + "grad_norm": 0.614020049571991, + "learning_rate": 1.5264367816091954e-05, + "loss": 0.4380105209350586, + "step": 78600 + }, + { + "epoch": 69.58482636584826, + "grad_norm": 0.5004254579544067, + "learning_rate": 1.5220159151193636e-05, + "loss": 0.4391395950317383, + "step": 78700 + }, + { + "epoch": 69.67330236673303, + "grad_norm": 0.522055983543396, + "learning_rate": 1.5175950486295315e-05, + "loss": 0.4396755599975586, + "step": 78800 + }, + { + "epoch": 69.76177836761778, + "grad_norm": 0.524988055229187, + "learning_rate": 1.5131741821396994e-05, + "loss": 0.4374229431152344, + "step": 78900 + }, + { + "epoch": 69.85025436850255, + "grad_norm": 0.5780676603317261, + "learning_rate": 1.5087533156498674e-05, + "loss": 0.4402974319458008, + "step": 79000 + }, + { + "epoch": 69.9387303693873, + "grad_norm": 0.5651708841323853, + "learning_rate": 1.5043324491600355e-05, + "loss": 0.44202667236328125, + "step": 79100 + }, + { + "epoch": 70.02654280026543, + "grad_norm": 0.48370227217674255, + "learning_rate": 1.4999557913351018e-05, + "loss": 0.4367184829711914, + "step": 79200 + }, + { + "epoch": 70.11501880115019, + "grad_norm": 0.5551156401634216, + "learning_rate": 1.4955349248452696e-05, + "loss": 0.42862590789794924, + "step": 79300 + }, + { + "epoch": 70.20349480203495, + "grad_norm": 0.5126725435256958, + "learning_rate": 1.4911140583554379e-05, + "loss": 0.4319373321533203, + "step": 79400 + }, + { + "epoch": 70.2919708029197, + "grad_norm": 0.5189195871353149, + "learning_rate": 1.4866931918656057e-05, + "loss": 0.4309040832519531, + "step": 79500 + }, + { + "epoch": 70.38044680380447, + "grad_norm": 0.49422213435173035, + "learning_rate": 1.4822723253757736e-05, + "loss": 0.43275665283203124, + "step": 79600 + }, + { + "epoch": 70.46892280468923, + "grad_norm": 0.49081242084503174, + "learning_rate": 1.4778514588859418e-05, + "loss": 0.4326107406616211, + "step": 79700 + }, + { + "epoch": 70.55739880557398, + "grad_norm": 0.5408063530921936, + "learning_rate": 1.4734305923961097e-05, + "loss": 0.4341436004638672, + "step": 79800 + }, + { + "epoch": 70.64587480645875, + "grad_norm": 0.4664778411388397, + "learning_rate": 1.4690097259062778e-05, + "loss": 0.4358782577514648, + "step": 79900 + }, + { + "epoch": 70.7343508073435, + "grad_norm": 0.5463866591453552, + "learning_rate": 1.4645888594164456e-05, + "loss": 0.4348703384399414, + "step": 80000 + }, + { + "epoch": 70.82282680822827, + "grad_norm": 0.5187687873840332, + "learning_rate": 1.4601679929266138e-05, + "loss": 0.43734962463378907, + "step": 80100 + }, + { + "epoch": 70.91130280911302, + "grad_norm": 0.4700576961040497, + "learning_rate": 1.4557471264367817e-05, + "loss": 0.43692012786865236, + "step": 80200 + }, + { + "epoch": 70.99977880999779, + "grad_norm": 0.5413524508476257, + "learning_rate": 1.4513262599469496e-05, + "loss": 0.43848495483398436, + "step": 80300 + }, + { + "epoch": 71.08759124087591, + "grad_norm": 0.5619797110557556, + "learning_rate": 1.4469053934571178e-05, + "loss": 0.4241709899902344, + "step": 80400 + }, + { + "epoch": 71.17606724176068, + "grad_norm": 0.5617126226425171, + "learning_rate": 1.4424845269672857e-05, + "loss": 0.42585777282714843, + "step": 80500 + }, + { + "epoch": 71.26454324264543, + "grad_norm": 0.6131432056427002, + "learning_rate": 1.4380636604774536e-05, + "loss": 0.42857707977294923, + "step": 80600 + }, + { + "epoch": 71.3530192435302, + "grad_norm": 0.5178084969520569, + "learning_rate": 1.4336427939876216e-05, + "loss": 0.4283063507080078, + "step": 80700 + }, + { + "epoch": 71.44149524441495, + "grad_norm": 0.4994112253189087, + "learning_rate": 1.4292219274977897e-05, + "loss": 0.43106334686279296, + "step": 80800 + }, + { + "epoch": 71.5299712452997, + "grad_norm": 0.5411744713783264, + "learning_rate": 1.4248010610079577e-05, + "loss": 0.43190105438232423, + "step": 80900 + }, + { + "epoch": 71.61844724618447, + "grad_norm": 0.5602013468742371, + "learning_rate": 1.4203801945181256e-05, + "loss": 0.4335565185546875, + "step": 81000 + }, + { + "epoch": 71.70692324706923, + "grad_norm": 0.5469107031822205, + "learning_rate": 1.4159593280282938e-05, + "loss": 0.4339017105102539, + "step": 81100 + }, + { + "epoch": 71.795399247954, + "grad_norm": 0.5971689224243164, + "learning_rate": 1.4115384615384617e-05, + "loss": 0.43302181243896487, + "step": 81200 + }, + { + "epoch": 71.88387524883875, + "grad_norm": 0.5518947243690491, + "learning_rate": 1.4071175950486295e-05, + "loss": 0.4339981460571289, + "step": 81300 + }, + { + "epoch": 71.97235124972352, + "grad_norm": 0.46094366908073425, + "learning_rate": 1.4026967285587974e-05, + "loss": 0.4368946075439453, + "step": 81400 + }, + { + "epoch": 72.06016368060163, + "grad_norm": 0.5013940334320068, + "learning_rate": 1.3983200707338639e-05, + "loss": 0.4272830581665039, + "step": 81500 + }, + { + "epoch": 72.1486396814864, + "grad_norm": 0.5779539346694946, + "learning_rate": 1.3938992042440318e-05, + "loss": 0.4237482452392578, + "step": 81600 + }, + { + "epoch": 72.23711568237115, + "grad_norm": 0.5799530744552612, + "learning_rate": 1.3894783377541998e-05, + "loss": 0.4221677398681641, + "step": 81700 + }, + { + "epoch": 72.32559168325592, + "grad_norm": 0.4773975908756256, + "learning_rate": 1.385057471264368e-05, + "loss": 0.4251049041748047, + "step": 81800 + }, + { + "epoch": 72.41406768414068, + "grad_norm": 0.5311180353164673, + "learning_rate": 1.380636604774536e-05, + "loss": 0.42632369995117186, + "step": 81900 + }, + { + "epoch": 72.50254368502544, + "grad_norm": 0.47812601923942566, + "learning_rate": 1.3762157382847038e-05, + "loss": 0.42722888946533205, + "step": 82000 + }, + { + "epoch": 72.5910196859102, + "grad_norm": 0.606674313545227, + "learning_rate": 1.371794871794872e-05, + "loss": 0.4295787811279297, + "step": 82100 + }, + { + "epoch": 72.67949568679495, + "grad_norm": 0.5414536595344543, + "learning_rate": 1.3673740053050399e-05, + "loss": 0.4311911392211914, + "step": 82200 + }, + { + "epoch": 72.76797168767972, + "grad_norm": 0.5214236974716187, + "learning_rate": 1.3629531388152078e-05, + "loss": 0.4323184585571289, + "step": 82300 + }, + { + "epoch": 72.85644768856447, + "grad_norm": 0.531461238861084, + "learning_rate": 1.3585322723253756e-05, + "loss": 0.43523616790771485, + "step": 82400 + }, + { + "epoch": 72.94492368944924, + "grad_norm": 0.550273597240448, + "learning_rate": 1.3541114058355439e-05, + "loss": 0.4310142517089844, + "step": 82500 + }, + { + "epoch": 73.03273612032736, + "grad_norm": 0.47776085138320923, + "learning_rate": 1.3496905393457119e-05, + "loss": 0.4287875747680664, + "step": 82600 + }, + { + "epoch": 73.12121212121212, + "grad_norm": 0.4990812838077545, + "learning_rate": 1.3452696728558798e-05, + "loss": 0.42051288604736325, + "step": 82700 + }, + { + "epoch": 73.20968812209688, + "grad_norm": 0.5124841332435608, + "learning_rate": 1.340848806366048e-05, + "loss": 0.4193102264404297, + "step": 82800 + }, + { + "epoch": 73.29816412298165, + "grad_norm": 0.5289502739906311, + "learning_rate": 1.3364279398762159e-05, + "loss": 0.42208141326904297, + "step": 82900 + }, + { + "epoch": 73.3866401238664, + "grad_norm": 0.4958449602127075, + "learning_rate": 1.3320070733863837e-05, + "loss": 0.42313686370849607, + "step": 83000 + }, + { + "epoch": 73.47511612475117, + "grad_norm": 0.5278774499893188, + "learning_rate": 1.3275862068965516e-05, + "loss": 0.42546688079833983, + "step": 83100 + }, + { + "epoch": 73.56359212563592, + "grad_norm": 0.5365238785743713, + "learning_rate": 1.3231653404067198e-05, + "loss": 0.42514255523681643, + "step": 83200 + }, + { + "epoch": 73.65206812652067, + "grad_norm": 0.5327147841453552, + "learning_rate": 1.3187444739168877e-05, + "loss": 0.42642066955566404, + "step": 83300 + }, + { + "epoch": 73.74054412740544, + "grad_norm": 0.5245737433433533, + "learning_rate": 1.3143236074270558e-05, + "loss": 0.4263890838623047, + "step": 83400 + }, + { + "epoch": 73.8290201282902, + "grad_norm": 0.5159674286842346, + "learning_rate": 1.3099027409372238e-05, + "loss": 0.428508415222168, + "step": 83500 + }, + { + "epoch": 73.91749612917496, + "grad_norm": 0.47965142130851746, + "learning_rate": 1.3054818744473918e-05, + "loss": 0.42886260986328123, + "step": 83600 + }, + { + "epoch": 74.00530856005308, + "grad_norm": 0.573679506778717, + "learning_rate": 1.301105216622458e-05, + "loss": 0.4288605499267578, + "step": 83700 + }, + { + "epoch": 74.09378456093785, + "grad_norm": 0.5544322729110718, + "learning_rate": 1.2966843501326262e-05, + "loss": 0.4174742126464844, + "step": 83800 + }, + { + "epoch": 74.1822605618226, + "grad_norm": 0.4993799030780792, + "learning_rate": 1.2922634836427941e-05, + "loss": 0.4191867828369141, + "step": 83900 + }, + { + "epoch": 74.27073656270737, + "grad_norm": 0.57634037733078, + "learning_rate": 1.287842617152962e-05, + "loss": 0.42080997467041015, + "step": 84000 + }, + { + "epoch": 74.35921256359212, + "grad_norm": 0.5524028539657593, + "learning_rate": 1.2834217506631298e-05, + "loss": 0.41995132446289063, + "step": 84100 + }, + { + "epoch": 74.44768856447689, + "grad_norm": 0.5109556913375854, + "learning_rate": 1.279000884173298e-05, + "loss": 0.4207102584838867, + "step": 84200 + }, + { + "epoch": 74.53616456536164, + "grad_norm": 0.6384374499320984, + "learning_rate": 1.2745800176834661e-05, + "loss": 0.42162609100341797, + "step": 84300 + }, + { + "epoch": 74.6246405662464, + "grad_norm": 0.5029319524765015, + "learning_rate": 1.270159151193634e-05, + "loss": 0.4232307815551758, + "step": 84400 + }, + { + "epoch": 74.71311656713117, + "grad_norm": 0.49697303771972656, + "learning_rate": 1.2657382847038022e-05, + "loss": 0.4233212661743164, + "step": 84500 + }, + { + "epoch": 74.80159256801592, + "grad_norm": 0.5748586058616638, + "learning_rate": 1.26131741821397e-05, + "loss": 0.42522281646728516, + "step": 84600 + }, + { + "epoch": 74.89006856890069, + "grad_norm": 0.5335224866867065, + "learning_rate": 1.256896551724138e-05, + "loss": 0.4264080047607422, + "step": 84700 + }, + { + "epoch": 74.97854456978544, + "grad_norm": 0.5223293900489807, + "learning_rate": 1.2524756852343058e-05, + "loss": 0.4248130416870117, + "step": 84800 + }, + { + "epoch": 75.06635700066357, + "grad_norm": 0.588205099105835, + "learning_rate": 1.2480548187444739e-05, + "loss": 0.41714618682861326, + "step": 84900 + }, + { + "epoch": 75.15483300154833, + "grad_norm": 0.4878210127353668, + "learning_rate": 1.2436339522546419e-05, + "loss": 0.41694087982177735, + "step": 85000 + }, + { + "epoch": 75.2433090024331, + "grad_norm": 0.5826809406280518, + "learning_rate": 1.23921308576481e-05, + "loss": 0.41839481353759767, + "step": 85100 + }, + { + "epoch": 75.33178500331785, + "grad_norm": 0.5703395009040833, + "learning_rate": 1.234792219274978e-05, + "loss": 0.419650993347168, + "step": 85200 + }, + { + "epoch": 75.42026100420262, + "grad_norm": 0.5960374474525452, + "learning_rate": 1.230371352785146e-05, + "loss": 0.41910491943359374, + "step": 85300 + }, + { + "epoch": 75.50873700508737, + "grad_norm": 0.5564795732498169, + "learning_rate": 1.225950486295314e-05, + "loss": 0.42010501861572264, + "step": 85400 + }, + { + "epoch": 75.59721300597214, + "grad_norm": 0.5871827006340027, + "learning_rate": 1.221529619805482e-05, + "loss": 0.41939094543457034, + "step": 85500 + }, + { + "epoch": 75.68568900685689, + "grad_norm": 0.6139041185379028, + "learning_rate": 1.2171087533156498e-05, + "loss": 0.42172611236572266, + "step": 85600 + }, + { + "epoch": 75.77416500774164, + "grad_norm": 0.5693202614784241, + "learning_rate": 1.2126878868258179e-05, + "loss": 0.4217537307739258, + "step": 85700 + }, + { + "epoch": 75.86264100862641, + "grad_norm": 0.5371018648147583, + "learning_rate": 1.208267020335986e-05, + "loss": 0.4220458984375, + "step": 85800 + }, + { + "epoch": 75.95111700951117, + "grad_norm": 0.5617541074752808, + "learning_rate": 1.2038461538461538e-05, + "loss": 0.4248412322998047, + "step": 85900 + }, + { + "epoch": 76.0389294403893, + "grad_norm": 0.5177831649780273, + "learning_rate": 1.1994694960212203e-05, + "loss": 0.41939964294433596, + "step": 86000 + }, + { + "epoch": 76.12740544127405, + "grad_norm": 0.5142802000045776, + "learning_rate": 1.1950486295313883e-05, + "loss": 0.4111063003540039, + "step": 86100 + }, + { + "epoch": 76.21588144215882, + "grad_norm": 0.4861648976802826, + "learning_rate": 1.1906277630415562e-05, + "loss": 0.4148457717895508, + "step": 86200 + }, + { + "epoch": 76.30435744304357, + "grad_norm": 0.5097411870956421, + "learning_rate": 1.1862068965517243e-05, + "loss": 0.4158660125732422, + "step": 86300 + }, + { + "epoch": 76.39283344392834, + "grad_norm": 0.4740864336490631, + "learning_rate": 1.1817860300618921e-05, + "loss": 0.4178118133544922, + "step": 86400 + }, + { + "epoch": 76.48130944481309, + "grad_norm": 0.44249430298805237, + "learning_rate": 1.1773651635720602e-05, + "loss": 0.4165281677246094, + "step": 86500 + }, + { + "epoch": 76.56978544569786, + "grad_norm": 0.5490387082099915, + "learning_rate": 1.172944297082228e-05, + "loss": 0.4198506927490234, + "step": 86600 + }, + { + "epoch": 76.65826144658261, + "grad_norm": 0.5175479650497437, + "learning_rate": 1.1685234305923961e-05, + "loss": 0.4220100402832031, + "step": 86700 + }, + { + "epoch": 76.74673744746737, + "grad_norm": 0.5073688626289368, + "learning_rate": 1.1641025641025642e-05, + "loss": 0.4184294891357422, + "step": 86800 + }, + { + "epoch": 76.83521344835214, + "grad_norm": 0.6137869358062744, + "learning_rate": 1.1596816976127322e-05, + "loss": 0.41919185638427736, + "step": 86900 + }, + { + "epoch": 76.92368944923689, + "grad_norm": 0.5274661183357239, + "learning_rate": 1.1552608311229002e-05, + "loss": 0.4193117141723633, + "step": 87000 + }, + { + "epoch": 77.01150188011502, + "grad_norm": 0.578369677066803, + "learning_rate": 1.1508399646330681e-05, + "loss": 0.4192862701416016, + "step": 87100 + }, + { + "epoch": 77.09997788099977, + "grad_norm": 0.6028936505317688, + "learning_rate": 1.1464190981432362e-05, + "loss": 0.40931896209716795, + "step": 87200 + }, + { + "epoch": 77.18845388188454, + "grad_norm": 0.4915790557861328, + "learning_rate": 1.141998231653404e-05, + "loss": 0.41025619506835936, + "step": 87300 + }, + { + "epoch": 77.2769298827693, + "grad_norm": 0.5164591073989868, + "learning_rate": 1.1375773651635721e-05, + "loss": 0.4112412643432617, + "step": 87400 + }, + { + "epoch": 77.36540588365406, + "grad_norm": 0.48311275243759155, + "learning_rate": 1.1331564986737401e-05, + "loss": 0.4144105911254883, + "step": 87500 + }, + { + "epoch": 77.45388188453882, + "grad_norm": 0.46419015526771545, + "learning_rate": 1.128735632183908e-05, + "loss": 0.41563541412353516, + "step": 87600 + }, + { + "epoch": 77.54235788542358, + "grad_norm": 0.6288944482803345, + "learning_rate": 1.124314765694076e-05, + "loss": 0.41669620513916017, + "step": 87700 + }, + { + "epoch": 77.63083388630834, + "grad_norm": 0.497126966714859, + "learning_rate": 1.1198938992042441e-05, + "loss": 0.41618637084960936, + "step": 87800 + }, + { + "epoch": 77.7193098871931, + "grad_norm": 0.5373407602310181, + "learning_rate": 1.1154730327144122e-05, + "loss": 0.41614810943603514, + "step": 87900 + }, + { + "epoch": 77.80778588807786, + "grad_norm": 0.519382894039154, + "learning_rate": 1.1110521662245802e-05, + "loss": 0.41859901428222657, + "step": 88000 + }, + { + "epoch": 77.89626188896261, + "grad_norm": 0.5001983046531677, + "learning_rate": 1.106631299734748e-05, + "loss": 0.418219108581543, + "step": 88100 + }, + { + "epoch": 77.98473788984738, + "grad_norm": 0.5034019947052002, + "learning_rate": 1.1022104332449161e-05, + "loss": 0.4178015899658203, + "step": 88200 + }, + { + "epoch": 78.0725503207255, + "grad_norm": 0.5158605575561523, + "learning_rate": 1.097789566755084e-05, + "loss": 0.4091143035888672, + "step": 88300 + }, + { + "epoch": 78.16102632161027, + "grad_norm": 0.48502761125564575, + "learning_rate": 1.093368700265252e-05, + "loss": 0.40843994140625, + "step": 88400 + }, + { + "epoch": 78.24950232249502, + "grad_norm": 0.5448765754699707, + "learning_rate": 1.08894783377542e-05, + "loss": 0.4109685516357422, + "step": 88500 + }, + { + "epoch": 78.33797832337979, + "grad_norm": 0.52455735206604, + "learning_rate": 1.084526967285588e-05, + "loss": 0.4108180236816406, + "step": 88600 + }, + { + "epoch": 78.42645432426454, + "grad_norm": 0.49440670013427734, + "learning_rate": 1.080106100795756e-05, + "loss": 0.41148426055908205, + "step": 88700 + }, + { + "epoch": 78.51493032514931, + "grad_norm": 0.5575434565544128, + "learning_rate": 1.075685234305924e-05, + "loss": 0.4121563720703125, + "step": 88800 + }, + { + "epoch": 78.60340632603406, + "grad_norm": 0.5276569724082947, + "learning_rate": 1.0712643678160921e-05, + "loss": 0.41357189178466797, + "step": 88900 + }, + { + "epoch": 78.69188232691883, + "grad_norm": 0.5279592871665955, + "learning_rate": 1.06684350132626e-05, + "loss": 0.4147018814086914, + "step": 89000 + }, + { + "epoch": 78.78035832780358, + "grad_norm": 0.4984647333621979, + "learning_rate": 1.062422634836428e-05, + "loss": 0.41413829803466795, + "step": 89100 + }, + { + "epoch": 78.86883432868834, + "grad_norm": 0.5556148886680603, + "learning_rate": 1.0580017683465959e-05, + "loss": 0.4168708419799805, + "step": 89200 + }, + { + "epoch": 78.9573103295731, + "grad_norm": 0.46219438314437866, + "learning_rate": 1.053580901856764e-05, + "loss": 0.41841983795166016, + "step": 89300 + }, + { + "epoch": 79.04512276045122, + "grad_norm": 0.49136674404144287, + "learning_rate": 1.0492042440318303e-05, + "loss": 0.41013729095458984, + "step": 89400 + }, + { + "epoch": 79.13359876133599, + "grad_norm": 0.5096011161804199, + "learning_rate": 1.0447833775419983e-05, + "loss": 0.4057589340209961, + "step": 89500 + }, + { + "epoch": 79.22207476222074, + "grad_norm": 0.4563368558883667, + "learning_rate": 1.0403625110521663e-05, + "loss": 0.4064152526855469, + "step": 89600 + }, + { + "epoch": 79.31055076310551, + "grad_norm": 0.5743097066879272, + "learning_rate": 1.0359416445623344e-05, + "loss": 0.40998432159423825, + "step": 89700 + }, + { + "epoch": 79.39902676399026, + "grad_norm": 0.46749743819236755, + "learning_rate": 1.0315207780725023e-05, + "loss": 0.40825595855712893, + "step": 89800 + }, + { + "epoch": 79.48750276487503, + "grad_norm": 0.522980272769928, + "learning_rate": 1.0270999115826703e-05, + "loss": 0.4116529083251953, + "step": 89900 + }, + { + "epoch": 79.57597876575979, + "grad_norm": 0.4576069712638855, + "learning_rate": 1.0226790450928382e-05, + "loss": 0.41039798736572264, + "step": 90000 + }, + { + "epoch": 79.66445476664455, + "grad_norm": 0.574553370475769, + "learning_rate": 1.0182581786030062e-05, + "loss": 0.4103997802734375, + "step": 90100 + }, + { + "epoch": 79.7529307675293, + "grad_norm": 0.5592597126960754, + "learning_rate": 1.0138373121131741e-05, + "loss": 0.4123684310913086, + "step": 90200 + }, + { + "epoch": 79.84140676841407, + "grad_norm": 0.5754570364952087, + "learning_rate": 1.0094164456233422e-05, + "loss": 0.4138601684570313, + "step": 90300 + }, + { + "epoch": 79.92988276929883, + "grad_norm": 0.5830336213111877, + "learning_rate": 1.0049955791335102e-05, + "loss": 0.41378173828125, + "step": 90400 + }, + { + "epoch": 80.01769520017695, + "grad_norm": 0.473369836807251, + "learning_rate": 1.0005747126436783e-05, + "loss": 0.41222110748291013, + "step": 90500 + }, + { + "epoch": 80.10617120106171, + "grad_norm": 0.5327860116958618, + "learning_rate": 9.961538461538463e-06, + "loss": 0.4058869934082031, + "step": 90600 + }, + { + "epoch": 80.19464720194647, + "grad_norm": 0.5304612517356873, + "learning_rate": 9.917329796640142e-06, + "loss": 0.4061882781982422, + "step": 90700 + }, + { + "epoch": 80.28312320283123, + "grad_norm": 0.5240916013717651, + "learning_rate": 9.873121131741822e-06, + "loss": 0.40706119537353513, + "step": 90800 + }, + { + "epoch": 80.37159920371599, + "grad_norm": 0.4663858413696289, + "learning_rate": 9.828912466843501e-06, + "loss": 0.4077639389038086, + "step": 90900 + }, + { + "epoch": 80.46007520460076, + "grad_norm": 0.4718465805053711, + "learning_rate": 9.784703801945181e-06, + "loss": 0.4078546905517578, + "step": 91000 + }, + { + "epoch": 80.54855120548551, + "grad_norm": 0.45132529735565186, + "learning_rate": 9.740495137046862e-06, + "loss": 0.40724002838134765, + "step": 91100 + }, + { + "epoch": 80.63702720637028, + "grad_norm": 0.4961422085762024, + "learning_rate": 9.69628647214854e-06, + "loss": 0.4097640609741211, + "step": 91200 + }, + { + "epoch": 80.72550320725503, + "grad_norm": 0.5276188850402832, + "learning_rate": 9.652077807250221e-06, + "loss": 0.41011890411376956, + "step": 91300 + }, + { + "epoch": 80.8139792081398, + "grad_norm": 0.48676180839538574, + "learning_rate": 9.607869142351902e-06, + "loss": 0.41075672149658204, + "step": 91400 + }, + { + "epoch": 80.90245520902455, + "grad_norm": 0.5812916159629822, + "learning_rate": 9.563660477453582e-06, + "loss": 0.4131761932373047, + "step": 91500 + }, + { + "epoch": 80.9909312099093, + "grad_norm": 0.5730577707290649, + "learning_rate": 9.51945181255526e-06, + "loss": 0.41234848022460935, + "step": 91600 + }, + { + "epoch": 81.07874364078744, + "grad_norm": 0.5240619778633118, + "learning_rate": 9.475685234305924e-06, + "loss": 0.40376312255859376, + "step": 91700 + }, + { + "epoch": 81.16721964167219, + "grad_norm": 0.46626827120780945, + "learning_rate": 9.431476569407604e-06, + "loss": 0.40396995544433595, + "step": 91800 + }, + { + "epoch": 81.25569564255696, + "grad_norm": 0.49117109179496765, + "learning_rate": 9.387267904509283e-06, + "loss": 0.4028842544555664, + "step": 91900 + }, + { + "epoch": 81.34417164344171, + "grad_norm": 0.5428334474563599, + "learning_rate": 9.343059239610964e-06, + "loss": 0.4046338653564453, + "step": 92000 + }, + { + "epoch": 81.43264764432648, + "grad_norm": 0.5240166783332825, + "learning_rate": 9.298850574712644e-06, + "loss": 0.4052513885498047, + "step": 92100 + }, + { + "epoch": 81.52112364521123, + "grad_norm": 0.4899362325668335, + "learning_rate": 9.254641909814325e-06, + "loss": 0.4052754974365234, + "step": 92200 + }, + { + "epoch": 81.609599646096, + "grad_norm": 0.46969664096832275, + "learning_rate": 9.210433244916005e-06, + "loss": 0.4072676086425781, + "step": 92300 + }, + { + "epoch": 81.69807564698075, + "grad_norm": 0.4990880489349365, + "learning_rate": 9.166224580017684e-06, + "loss": 0.40702415466308595, + "step": 92400 + }, + { + "epoch": 81.78655164786552, + "grad_norm": 0.5545535087585449, + "learning_rate": 9.122015915119364e-06, + "loss": 0.4103099822998047, + "step": 92500 + }, + { + "epoch": 81.87502764875028, + "grad_norm": 0.5591033101081848, + "learning_rate": 9.077807250221043e-06, + "loss": 0.4087317276000977, + "step": 92600 + }, + { + "epoch": 81.96350364963503, + "grad_norm": 0.5289734601974487, + "learning_rate": 9.033598585322723e-06, + "loss": 0.4112258529663086, + "step": 92700 + }, + { + "epoch": 82.05131608051316, + "grad_norm": 0.59573894739151, + "learning_rate": 8.989389920424404e-06, + "loss": 0.40506195068359374, + "step": 92800 + }, + { + "epoch": 82.13979208139791, + "grad_norm": 0.4581588804721832, + "learning_rate": 8.945181255526083e-06, + "loss": 0.401633186340332, + "step": 92900 + }, + { + "epoch": 82.22826808228268, + "grad_norm": 0.4607727527618408, + "learning_rate": 8.900972590627763e-06, + "loss": 0.4030620193481445, + "step": 93000 + }, + { + "epoch": 82.31674408316744, + "grad_norm": 0.5693869590759277, + "learning_rate": 8.856763925729444e-06, + "loss": 0.4034944152832031, + "step": 93100 + }, + { + "epoch": 82.4052200840522, + "grad_norm": 0.4679562449455261, + "learning_rate": 8.812555260831124e-06, + "loss": 0.40353385925292967, + "step": 93200 + }, + { + "epoch": 82.49369608493696, + "grad_norm": 0.4970017373561859, + "learning_rate": 8.768346595932803e-06, + "loss": 0.4040465545654297, + "step": 93300 + }, + { + "epoch": 82.58217208582172, + "grad_norm": 0.4850037097930908, + "learning_rate": 8.724137931034483e-06, + "loss": 0.40520496368408204, + "step": 93400 + }, + { + "epoch": 82.67064808670648, + "grad_norm": 0.5304952263832092, + "learning_rate": 8.679929266136164e-06, + "loss": 0.4062754440307617, + "step": 93500 + }, + { + "epoch": 82.75912408759125, + "grad_norm": 0.5124515891075134, + "learning_rate": 8.635720601237842e-06, + "loss": 0.4042987442016602, + "step": 93600 + }, + { + "epoch": 82.847600088476, + "grad_norm": 0.5527506470680237, + "learning_rate": 8.591511936339523e-06, + "loss": 0.4051095199584961, + "step": 93700 + }, + { + "epoch": 82.93607608936077, + "grad_norm": 0.4627765119075775, + "learning_rate": 8.547303271441202e-06, + "loss": 0.4065189743041992, + "step": 93800 + }, + { + "epoch": 83.02388852023888, + "grad_norm": 0.47690948843955994, + "learning_rate": 8.503094606542882e-06, + "loss": 0.4059687042236328, + "step": 93900 + }, + { + "epoch": 83.11236452112365, + "grad_norm": 0.543329656124115, + "learning_rate": 8.458885941644563e-06, + "loss": 0.40105613708496096, + "step": 94000 + }, + { + "epoch": 83.2008405220084, + "grad_norm": 0.5308240056037903, + "learning_rate": 8.414677276746243e-06, + "loss": 0.3999287414550781, + "step": 94100 + }, + { + "epoch": 83.28931652289316, + "grad_norm": 0.5098600387573242, + "learning_rate": 8.370468611847924e-06, + "loss": 0.3998809051513672, + "step": 94200 + }, + { + "epoch": 83.37779252377793, + "grad_norm": 0.5461894273757935, + "learning_rate": 8.326259946949602e-06, + "loss": 0.4027032470703125, + "step": 94300 + }, + { + "epoch": 83.46626852466268, + "grad_norm": 0.5599612593650818, + "learning_rate": 8.282051282051283e-06, + "loss": 0.4018612289428711, + "step": 94400 + }, + { + "epoch": 83.55474452554745, + "grad_norm": 0.5953245162963867, + "learning_rate": 8.237842617152961e-06, + "loss": 0.4048320770263672, + "step": 94500 + }, + { + "epoch": 83.6432205264322, + "grad_norm": 0.5232775211334229, + "learning_rate": 8.193633952254642e-06, + "loss": 0.40312889099121096, + "step": 94600 + }, + { + "epoch": 83.73169652731697, + "grad_norm": 0.5057620406150818, + "learning_rate": 8.149425287356322e-06, + "loss": 0.4016009521484375, + "step": 94700 + }, + { + "epoch": 83.82017252820172, + "grad_norm": 0.54839026927948, + "learning_rate": 8.105216622458001e-06, + "loss": 0.40390682220458984, + "step": 94800 + }, + { + "epoch": 83.90864852908649, + "grad_norm": 0.42211759090423584, + "learning_rate": 8.061007957559683e-06, + "loss": 0.4043146514892578, + "step": 94900 + }, + { + "epoch": 83.99712452997125, + "grad_norm": 0.46576666831970215, + "learning_rate": 8.016799292661362e-06, + "loss": 0.4071781539916992, + "step": 95000 + }, + { + "epoch": 84.08493696084938, + "grad_norm": 0.48286134004592896, + "learning_rate": 7.973032714412025e-06, + "loss": 0.3980902862548828, + "step": 95100 + }, + { + "epoch": 84.17341296173413, + "grad_norm": 0.5105409026145935, + "learning_rate": 7.928824049513706e-06, + "loss": 0.39626029968261717, + "step": 95200 + }, + { + "epoch": 84.26188896261888, + "grad_norm": 0.5280846357345581, + "learning_rate": 7.884615384615384e-06, + "loss": 0.39923973083496095, + "step": 95300 + }, + { + "epoch": 84.35036496350365, + "grad_norm": 0.49487778544425964, + "learning_rate": 7.840406719717065e-06, + "loss": 0.39867469787597654, + "step": 95400 + }, + { + "epoch": 84.4388409643884, + "grad_norm": 0.5105910897254944, + "learning_rate": 7.796198054818744e-06, + "loss": 0.4000941467285156, + "step": 95500 + }, + { + "epoch": 84.52731696527317, + "grad_norm": 0.49424290657043457, + "learning_rate": 7.751989389920424e-06, + "loss": 0.4025596618652344, + "step": 95600 + }, + { + "epoch": 84.61579296615793, + "grad_norm": 0.5923288464546204, + "learning_rate": 7.707780725022105e-06, + "loss": 0.40207050323486326, + "step": 95700 + }, + { + "epoch": 84.7042689670427, + "grad_norm": 0.47270065546035767, + "learning_rate": 7.663572060123785e-06, + "loss": 0.40140762329101565, + "step": 95800 + }, + { + "epoch": 84.79274496792745, + "grad_norm": 0.4515872597694397, + "learning_rate": 7.619363395225465e-06, + "loss": 0.4039121627807617, + "step": 95900 + }, + { + "epoch": 84.88122096881222, + "grad_norm": 0.5799027681350708, + "learning_rate": 7.575154730327144e-06, + "loss": 0.40215221405029294, + "step": 96000 + }, + { + "epoch": 84.96969696969697, + "grad_norm": 0.5158770680427551, + "learning_rate": 7.530946065428825e-06, + "loss": 0.40449161529541017, + "step": 96100 + }, + { + "epoch": 85.0575094005751, + "grad_norm": 0.5103220343589783, + "learning_rate": 7.4867374005305035e-06, + "loss": 0.3986453628540039, + "step": 96200 + }, + { + "epoch": 85.14598540145985, + "grad_norm": 0.48847347497940063, + "learning_rate": 7.442528735632184e-06, + "loss": 0.3962085723876953, + "step": 96300 + }, + { + "epoch": 85.2344614023446, + "grad_norm": 0.5786899328231812, + "learning_rate": 7.398320070733865e-06, + "loss": 0.398316535949707, + "step": 96400 + }, + { + "epoch": 85.32293740322937, + "grad_norm": 0.4464615285396576, + "learning_rate": 7.354111405835544e-06, + "loss": 0.39748287200927734, + "step": 96500 + }, + { + "epoch": 85.41141340411413, + "grad_norm": 0.5107320547103882, + "learning_rate": 7.3099027409372245e-06, + "loss": 0.399218864440918, + "step": 96600 + }, + { + "epoch": 85.4998894049989, + "grad_norm": 0.5555247068405151, + "learning_rate": 7.265694076038903e-06, + "loss": 0.40016975402832033, + "step": 96700 + }, + { + "epoch": 85.58836540588365, + "grad_norm": 0.46809983253479004, + "learning_rate": 7.2214854111405845e-06, + "loss": 0.39977962493896485, + "step": 96800 + }, + { + "epoch": 85.67684140676842, + "grad_norm": 0.5176143646240234, + "learning_rate": 7.177276746242263e-06, + "loss": 0.39803340911865237, + "step": 96900 + }, + { + "epoch": 85.76531740765317, + "grad_norm": 0.4717543125152588, + "learning_rate": 7.133068081343944e-06, + "loss": 0.4004299545288086, + "step": 97000 + }, + { + "epoch": 85.85379340853794, + "grad_norm": 0.49673059582710266, + "learning_rate": 7.088859416445624e-06, + "loss": 0.40104530334472654, + "step": 97100 + }, + { + "epoch": 85.94226940942269, + "grad_norm": 0.5706076622009277, + "learning_rate": 7.044650751547304e-06, + "loss": 0.40007728576660156, + "step": 97200 + }, + { + "epoch": 86.03008184030082, + "grad_norm": 0.5170352458953857, + "learning_rate": 7.000884173297967e-06, + "loss": 0.39897975921630857, + "step": 97300 + }, + { + "epoch": 86.11855784118558, + "grad_norm": 0.478630930185318, + "learning_rate": 6.956675508399646e-06, + "loss": 0.3933698272705078, + "step": 97400 + }, + { + "epoch": 86.20703384207035, + "grad_norm": 0.5094186067581177, + "learning_rate": 6.912466843501326e-06, + "loss": 0.39624488830566407, + "step": 97500 + }, + { + "epoch": 86.2955098429551, + "grad_norm": 0.5107275247573853, + "learning_rate": 6.868258178603007e-06, + "loss": 0.39685150146484377, + "step": 97600 + }, + { + "epoch": 86.38398584383985, + "grad_norm": 0.5861279964447021, + "learning_rate": 6.824049513704686e-06, + "loss": 0.3973454284667969, + "step": 97700 + }, + { + "epoch": 86.47246184472462, + "grad_norm": 0.490012526512146, + "learning_rate": 6.779840848806367e-06, + "loss": 0.3982046127319336, + "step": 97800 + }, + { + "epoch": 86.56093784560937, + "grad_norm": 0.47647538781166077, + "learning_rate": 6.7356321839080455e-06, + "loss": 0.39851917266845704, + "step": 97900 + }, + { + "epoch": 86.64941384649414, + "grad_norm": 0.45534029603004456, + "learning_rate": 6.691423519009726e-06, + "loss": 0.39754936218261716, + "step": 98000 + }, + { + "epoch": 86.7378898473789, + "grad_norm": 0.5305948257446289, + "learning_rate": 6.647214854111407e-06, + "loss": 0.39900218963623046, + "step": 98100 + }, + { + "epoch": 86.82636584826366, + "grad_norm": 0.48616868257522583, + "learning_rate": 6.603006189213086e-06, + "loss": 0.39878063201904296, + "step": 98200 + }, + { + "epoch": 86.91484184914842, + "grad_norm": 0.4637695252895355, + "learning_rate": 6.5587975243147665e-06, + "loss": 0.39936519622802735, + "step": 98300 + }, + { + "epoch": 87.00265428002655, + "grad_norm": 0.43915867805480957, + "learning_rate": 6.514588859416445e-06, + "loss": 0.39945316314697266, + "step": 98400 + }, + { + "epoch": 87.0911302809113, + "grad_norm": 0.5064729452133179, + "learning_rate": 6.4703801945181265e-06, + "loss": 0.39295291900634766, + "step": 98500 + }, + { + "epoch": 87.17960628179607, + "grad_norm": 0.41172826290130615, + "learning_rate": 6.426171529619805e-06, + "loss": 0.3956099319458008, + "step": 98600 + }, + { + "epoch": 87.26808228268082, + "grad_norm": 0.5156989693641663, + "learning_rate": 6.381962864721486e-06, + "loss": 0.3927472686767578, + "step": 98700 + }, + { + "epoch": 87.35655828356558, + "grad_norm": 0.4864855706691742, + "learning_rate": 6.337754199823166e-06, + "loss": 0.39533439636230466, + "step": 98800 + }, + { + "epoch": 87.44503428445034, + "grad_norm": 0.5469456911087036, + "learning_rate": 6.293545534924846e-06, + "loss": 0.3970512390136719, + "step": 98900 + }, + { + "epoch": 87.5335102853351, + "grad_norm": 0.4618734121322632, + "learning_rate": 6.249336870026525e-06, + "loss": 0.3967998504638672, + "step": 99000 + }, + { + "epoch": 87.62198628621987, + "grad_norm": 0.41789868474006653, + "learning_rate": 6.205128205128206e-06, + "loss": 0.3979497909545898, + "step": 99100 + }, + { + "epoch": 87.71046228710462, + "grad_norm": 0.5439488887786865, + "learning_rate": 6.1609195402298855e-06, + "loss": 0.3960274887084961, + "step": 99200 + }, + { + "epoch": 87.79893828798939, + "grad_norm": 0.46948105096817017, + "learning_rate": 6.116710875331565e-06, + "loss": 0.39781307220458983, + "step": 99300 + }, + { + "epoch": 87.88741428887414, + "grad_norm": 0.4804007411003113, + "learning_rate": 6.0725022104332456e-06, + "loss": 0.39600673675537107, + "step": 99400 + }, + { + "epoch": 87.97589028975891, + "grad_norm": 0.4494355618953705, + "learning_rate": 6.028293545534925e-06, + "loss": 0.3976548385620117, + "step": 99500 + }, + { + "epoch": 88.06370272063702, + "grad_norm": 0.4300312101840973, + "learning_rate": 5.984526967285588e-06, + "loss": 0.3928862762451172, + "step": 99600 + }, + { + "epoch": 88.15217872152179, + "grad_norm": 0.5155128836631775, + "learning_rate": 5.940318302387268e-06, + "loss": 0.39027740478515627, + "step": 99700 + }, + { + "epoch": 88.24065472240655, + "grad_norm": 0.4635615944862366, + "learning_rate": 5.896109637488948e-06, + "loss": 0.3938739776611328, + "step": 99800 + }, + { + "epoch": 88.32913072329131, + "grad_norm": 0.5408588647842407, + "learning_rate": 5.851900972590628e-06, + "loss": 0.3914863967895508, + "step": 99900 + }, + { + "epoch": 88.41760672417607, + "grad_norm": 0.5169259309768677, + "learning_rate": 5.807692307692308e-06, + "loss": 0.3942420959472656, + "step": 100000 + }, + { + "epoch": 88.50608272506082, + "grad_norm": 0.43603307008743286, + "learning_rate": 5.763483642793987e-06, + "loss": 0.3942053604125977, + "step": 100100 + }, + { + "epoch": 88.59455872594559, + "grad_norm": 0.484275758266449, + "learning_rate": 5.719274977895668e-06, + "loss": 0.3953342056274414, + "step": 100200 + }, + { + "epoch": 88.68303472683034, + "grad_norm": 0.4834429621696472, + "learning_rate": 5.675066312997348e-06, + "loss": 0.39478866577148436, + "step": 100300 + }, + { + "epoch": 88.77151072771511, + "grad_norm": 0.5198318362236023, + "learning_rate": 5.630857648099028e-06, + "loss": 0.3973033905029297, + "step": 100400 + }, + { + "epoch": 88.85998672859986, + "grad_norm": 0.5359114408493042, + "learning_rate": 5.586648983200707e-06, + "loss": 0.3963985824584961, + "step": 100500 + }, + { + "epoch": 88.94846272948463, + "grad_norm": 0.47174566984176636, + "learning_rate": 5.542440318302387e-06, + "loss": 0.39962120056152345, + "step": 100600 + }, + { + "epoch": 89.03627516036275, + "grad_norm": 0.5552394986152649, + "learning_rate": 5.498231653404067e-06, + "loss": 0.3942194747924805, + "step": 100700 + }, + { + "epoch": 89.12475116124752, + "grad_norm": 0.4985731840133667, + "learning_rate": 5.454022988505748e-06, + "loss": 0.39029048919677733, + "step": 100800 + }, + { + "epoch": 89.21322716213227, + "grad_norm": 0.5449782013893127, + "learning_rate": 5.4098143236074275e-06, + "loss": 0.391842155456543, + "step": 100900 + }, + { + "epoch": 89.30170316301704, + "grad_norm": 0.47477561235427856, + "learning_rate": 5.365605658709107e-06, + "loss": 0.39065505981445314, + "step": 101000 + }, + { + "epoch": 89.39017916390179, + "grad_norm": 0.5775418281555176, + "learning_rate": 5.3213969938107875e-06, + "loss": 0.39322795867919924, + "step": 101100 + }, + { + "epoch": 89.47865516478655, + "grad_norm": 0.44463786482810974, + "learning_rate": 5.277188328912467e-06, + "loss": 0.3929602813720703, + "step": 101200 + }, + { + "epoch": 89.56713116567131, + "grad_norm": 0.5217382311820984, + "learning_rate": 5.232979664014147e-06, + "loss": 0.3945352172851562, + "step": 101300 + }, + { + "epoch": 89.65560716655607, + "grad_norm": 0.47336575388908386, + "learning_rate": 5.188770999115826e-06, + "loss": 0.3943867492675781, + "step": 101400 + }, + { + "epoch": 89.74408316744083, + "grad_norm": 0.49890655279159546, + "learning_rate": 5.144562334217507e-06, + "loss": 0.39472442626953125, + "step": 101500 + }, + { + "epoch": 89.83255916832559, + "grad_norm": 0.4528096914291382, + "learning_rate": 5.100353669319187e-06, + "loss": 0.3927711868286133, + "step": 101600 + }, + { + "epoch": 89.92103516921036, + "grad_norm": 0.4498828649520874, + "learning_rate": 5.056145004420867e-06, + "loss": 0.3962491226196289, + "step": 101700 + }, + { + "epoch": 90.00884760008847, + "grad_norm": 0.45861297845840454, + "learning_rate": 5.0119363395225465e-06, + "loss": 0.39339271545410154, + "step": 101800 + }, + { + "epoch": 90.09732360097324, + "grad_norm": 0.5762381553649902, + "learning_rate": 4.967727674624226e-06, + "loss": 0.3896630096435547, + "step": 101900 + }, + { + "epoch": 90.185799601858, + "grad_norm": 0.5530878305435181, + "learning_rate": 4.923519009725907e-06, + "loss": 0.38933868408203126, + "step": 102000 + }, + { + "epoch": 90.27427560274276, + "grad_norm": 0.4769279360771179, + "learning_rate": 4.879310344827587e-06, + "loss": 0.38943870544433595, + "step": 102100 + }, + { + "epoch": 90.36275160362752, + "grad_norm": 0.5254392027854919, + "learning_rate": 4.835101679929267e-06, + "loss": 0.39091030120849607, + "step": 102200 + }, + { + "epoch": 90.45122760451227, + "grad_norm": 0.5098690986633301, + "learning_rate": 4.790893015030946e-06, + "loss": 0.39340557098388673, + "step": 102300 + }, + { + "epoch": 90.53970360539704, + "grad_norm": 0.5299240946769714, + "learning_rate": 4.746684350132626e-06, + "loss": 0.3925971221923828, + "step": 102400 + }, + { + "epoch": 90.62817960628179, + "grad_norm": 0.5023613572120667, + "learning_rate": 4.702475685234306e-06, + "loss": 0.3934814453125, + "step": 102500 + }, + { + "epoch": 90.71665560716656, + "grad_norm": 0.5217054486274719, + "learning_rate": 4.658267020335986e-06, + "loss": 0.39229228973388675, + "step": 102600 + }, + { + "epoch": 90.80513160805131, + "grad_norm": 0.4929801821708679, + "learning_rate": 4.6140583554376656e-06, + "loss": 0.39253700256347657, + "step": 102700 + }, + { + "epoch": 90.89360760893608, + "grad_norm": 0.4281506836414337, + "learning_rate": 4.569849690539346e-06, + "loss": 0.39423236846923826, + "step": 102800 + }, + { + "epoch": 90.98208360982083, + "grad_norm": 0.5606275796890259, + "learning_rate": 4.525641025641026e-06, + "loss": 0.39174613952636717, + "step": 102900 + }, + { + "epoch": 91.06989604069896, + "grad_norm": 0.40593966841697693, + "learning_rate": 4.481874447391689e-06, + "loss": 0.39004261016845704, + "step": 103000 + }, + { + "epoch": 91.15837204158372, + "grad_norm": 0.48218822479248047, + "learning_rate": 4.437665782493368e-06, + "loss": 0.39024349212646486, + "step": 103100 + }, + { + "epoch": 91.24684804246849, + "grad_norm": 0.4803628623485565, + "learning_rate": 4.393457117595049e-06, + "loss": 0.3893236541748047, + "step": 103200 + }, + { + "epoch": 91.33532404335324, + "grad_norm": 0.5424004197120667, + "learning_rate": 4.349248452696729e-06, + "loss": 0.3895704650878906, + "step": 103300 + }, + { + "epoch": 91.423800044238, + "grad_norm": 0.4238603711128235, + "learning_rate": 4.305039787798409e-06, + "loss": 0.3891864776611328, + "step": 103400 + }, + { + "epoch": 91.51227604512276, + "grad_norm": 0.5425596833229065, + "learning_rate": 4.2608311229000885e-06, + "loss": 0.3902478408813477, + "step": 103500 + }, + { + "epoch": 91.60075204600751, + "grad_norm": 0.529647946357727, + "learning_rate": 4.216622458001768e-06, + "loss": 0.39207550048828127, + "step": 103600 + }, + { + "epoch": 91.68922804689228, + "grad_norm": 0.42155396938323975, + "learning_rate": 4.1724137931034486e-06, + "loss": 0.3911063766479492, + "step": 103700 + }, + { + "epoch": 91.77770404777704, + "grad_norm": 0.4809010326862335, + "learning_rate": 4.128205128205129e-06, + "loss": 0.3927000427246094, + "step": 103800 + }, + { + "epoch": 91.8661800486618, + "grad_norm": 0.4598400890827179, + "learning_rate": 4.083996463306809e-06, + "loss": 0.38986122131347656, + "step": 103900 + }, + { + "epoch": 91.95465604954656, + "grad_norm": 0.52349853515625, + "learning_rate": 4.039787798408488e-06, + "loss": 0.3922639465332031, + "step": 104000 + }, + { + "epoch": 92.04246848042469, + "grad_norm": 0.5118280053138733, + "learning_rate": 3.996021220159151e-06, + "loss": 0.388396110534668, + "step": 104100 + }, + { + "epoch": 92.13094448130944, + "grad_norm": 0.49287110567092896, + "learning_rate": 3.951812555260832e-06, + "loss": 0.3882394027709961, + "step": 104200 + }, + { + "epoch": 92.21942048219421, + "grad_norm": 0.5597590804100037, + "learning_rate": 3.9076038903625115e-06, + "loss": 0.38768112182617187, + "step": 104300 + }, + { + "epoch": 92.30789648307896, + "grad_norm": 0.49123573303222656, + "learning_rate": 3.863395225464191e-06, + "loss": 0.38717472076416015, + "step": 104400 + }, + { + "epoch": 92.39637248396373, + "grad_norm": 0.5490599870681763, + "learning_rate": 3.819186560565871e-06, + "loss": 0.38968246459960937, + "step": 104500 + }, + { + "epoch": 92.48484848484848, + "grad_norm": 0.563377857208252, + "learning_rate": 3.7749778956675507e-06, + "loss": 0.3879422760009766, + "step": 104600 + }, + { + "epoch": 92.57332448573324, + "grad_norm": 0.5248238444328308, + "learning_rate": 3.7307692307692308e-06, + "loss": 0.3904239654541016, + "step": 104700 + }, + { + "epoch": 92.661800486618, + "grad_norm": 0.5977566242218018, + "learning_rate": 3.6865605658709104e-06, + "loss": 0.39140804290771486, + "step": 104800 + }, + { + "epoch": 92.75027648750276, + "grad_norm": 0.4992641508579254, + "learning_rate": 3.6423519009725912e-06, + "loss": 0.390025749206543, + "step": 104900 + }, + { + "epoch": 92.83875248838753, + "grad_norm": 0.5491787791252136, + "learning_rate": 3.598143236074271e-06, + "loss": 0.39107063293457034, + "step": 105000 + }, + { + "epoch": 92.92722848927228, + "grad_norm": 0.46409890055656433, + "learning_rate": 3.553934571175951e-06, + "loss": 0.3911115264892578, + "step": 105100 + }, + { + "epoch": 93.01504092015041, + "grad_norm": 0.5469849705696106, + "learning_rate": 3.5097259062776305e-06, + "loss": 0.3916855621337891, + "step": 105200 + }, + { + "epoch": 93.10351692103517, + "grad_norm": 0.496277391910553, + "learning_rate": 3.4655172413793105e-06, + "loss": 0.3867160415649414, + "step": 105300 + }, + { + "epoch": 93.19199292191993, + "grad_norm": 0.42929497361183167, + "learning_rate": 3.42130857648099e-06, + "loss": 0.38718021392822266, + "step": 105400 + }, + { + "epoch": 93.28046892280469, + "grad_norm": 0.406601220369339, + "learning_rate": 3.3770999115826706e-06, + "loss": 0.386837272644043, + "step": 105500 + }, + { + "epoch": 93.36894492368945, + "grad_norm": 0.48087212443351746, + "learning_rate": 3.3328912466843506e-06, + "loss": 0.3877327346801758, + "step": 105600 + }, + { + "epoch": 93.45742092457421, + "grad_norm": 0.5117219090461731, + "learning_rate": 3.2886825817860302e-06, + "loss": 0.38803070068359374, + "step": 105700 + }, + { + "epoch": 93.54589692545898, + "grad_norm": 0.6043857932090759, + "learning_rate": 3.2444739168877103e-06, + "loss": 0.38934085845947264, + "step": 105800 + }, + { + "epoch": 93.63437292634373, + "grad_norm": 0.5303599238395691, + "learning_rate": 3.20026525198939e-06, + "loss": 0.3872317123413086, + "step": 105900 + }, + { + "epoch": 93.72284892722848, + "grad_norm": 0.48868313431739807, + "learning_rate": 3.15605658709107e-06, + "loss": 0.3903642272949219, + "step": 106000 + }, + { + "epoch": 93.81132492811325, + "grad_norm": 0.5126668810844421, + "learning_rate": 3.11184792219275e-06, + "loss": 0.3893658447265625, + "step": 106100 + }, + { + "epoch": 93.899800928998, + "grad_norm": 0.5788067579269409, + "learning_rate": 3.06763925729443e-06, + "loss": 0.3887732315063477, + "step": 106200 + }, + { + "epoch": 93.98827692988277, + "grad_norm": 0.5931738615036011, + "learning_rate": 3.0234305923961096e-06, + "loss": 0.3858309555053711, + "step": 106300 + }, + { + "epoch": 94.07608936076089, + "grad_norm": 0.4667378067970276, + "learning_rate": 2.9792219274977896e-06, + "loss": 0.3882503128051758, + "step": 106400 + }, + { + "epoch": 94.16456536164566, + "grad_norm": 0.4540467858314514, + "learning_rate": 2.9350132625994697e-06, + "loss": 0.3879624557495117, + "step": 106500 + }, + { + "epoch": 94.25304136253041, + "grad_norm": 0.5249928832054138, + "learning_rate": 2.8908045977011493e-06, + "loss": 0.3871700668334961, + "step": 106600 + }, + { + "epoch": 94.34151736341518, + "grad_norm": 0.4902016520500183, + "learning_rate": 2.8465959328028297e-06, + "loss": 0.3865641403198242, + "step": 106700 + }, + { + "epoch": 94.42999336429993, + "grad_norm": 0.4490734934806824, + "learning_rate": 2.8023872679045093e-06, + "loss": 0.3874678039550781, + "step": 106800 + }, + { + "epoch": 94.5184693651847, + "grad_norm": 0.39259180426597595, + "learning_rate": 2.7581786030061894e-06, + "loss": 0.3864010238647461, + "step": 106900 + }, + { + "epoch": 94.60694536606945, + "grad_norm": 0.5160086154937744, + "learning_rate": 2.7139699381078694e-06, + "loss": 0.38762042999267576, + "step": 107000 + }, + { + "epoch": 94.6954213669542, + "grad_norm": 0.5112566947937012, + "learning_rate": 2.669761273209549e-06, + "loss": 0.38802257537841794, + "step": 107100 + }, + { + "epoch": 94.78389736783897, + "grad_norm": 0.48586076498031616, + "learning_rate": 2.625552608311229e-06, + "loss": 0.3883600616455078, + "step": 107200 + }, + { + "epoch": 94.87237336872373, + "grad_norm": 0.5169211626052856, + "learning_rate": 2.581343943412909e-06, + "loss": 0.38775413513183593, + "step": 107300 + }, + { + "epoch": 94.9608493696085, + "grad_norm": 0.4262998700141907, + "learning_rate": 2.537135278514589e-06, + "loss": 0.3891670608520508, + "step": 107400 + }, + { + "epoch": 95.04866180048661, + "grad_norm": 0.4452260434627533, + "learning_rate": 2.4929266136162687e-06, + "loss": 0.38474632263183595, + "step": 107500 + }, + { + "epoch": 95.13713780137138, + "grad_norm": 0.5349674820899963, + "learning_rate": 2.4487179487179488e-06, + "loss": 0.3851365661621094, + "step": 107600 + }, + { + "epoch": 95.22561380225613, + "grad_norm": 0.4277512729167938, + "learning_rate": 2.404509283819629e-06, + "loss": 0.38448490142822267, + "step": 107700 + }, + { + "epoch": 95.3140898031409, + "grad_norm": 0.5199966430664062, + "learning_rate": 2.360300618921309e-06, + "loss": 0.3855178451538086, + "step": 107800 + }, + { + "epoch": 95.40256580402566, + "grad_norm": 0.49931713938713074, + "learning_rate": 2.3160919540229885e-06, + "loss": 0.38597549438476564, + "step": 107900 + }, + { + "epoch": 95.49104180491042, + "grad_norm": 0.44888851046562195, + "learning_rate": 2.2718832891246685e-06, + "loss": 0.38637237548828124, + "step": 108000 + }, + { + "epoch": 95.57951780579518, + "grad_norm": 0.48020413517951965, + "learning_rate": 2.2276746242263485e-06, + "loss": 0.3860820388793945, + "step": 108100 + }, + { + "epoch": 95.66799380667993, + "grad_norm": 0.49320459365844727, + "learning_rate": 2.183465959328028e-06, + "loss": 0.3868730926513672, + "step": 108200 + }, + { + "epoch": 95.7564698075647, + "grad_norm": 0.4776149392127991, + "learning_rate": 2.1392572944297086e-06, + "loss": 0.38699729919433595, + "step": 108300 + }, + { + "epoch": 95.84494580844945, + "grad_norm": 0.4394153356552124, + "learning_rate": 2.095048629531388e-06, + "loss": 0.3858388137817383, + "step": 108400 + }, + { + "epoch": 95.93342180933422, + "grad_norm": 0.40809816122055054, + "learning_rate": 2.0508399646330682e-06, + "loss": 0.3865514373779297, + "step": 108500 + }, + { + "epoch": 96.02123424021234, + "grad_norm": 0.40297845005989075, + "learning_rate": 2.0070733863837314e-06, + "loss": 0.38520877838134765, + "step": 108600 + }, + { + "epoch": 96.1097102410971, + "grad_norm": 0.4992787837982178, + "learning_rate": 1.9628647214854114e-06, + "loss": 0.3824159622192383, + "step": 108700 + }, + { + "epoch": 96.19818624198186, + "grad_norm": 0.4386002719402313, + "learning_rate": 1.918656056587091e-06, + "loss": 0.3828225326538086, + "step": 108800 + }, + { + "epoch": 96.28666224286663, + "grad_norm": 0.4839923679828644, + "learning_rate": 1.874447391688771e-06, + "loss": 0.3837508392333984, + "step": 108900 + }, + { + "epoch": 96.37513824375138, + "grad_norm": 0.5360403656959534, + "learning_rate": 1.830238726790451e-06, + "loss": 0.3868670654296875, + "step": 109000 + }, + { + "epoch": 96.46361424463615, + "grad_norm": 0.5472413897514343, + "learning_rate": 1.786030061892131e-06, + "loss": 0.38740249633789064, + "step": 109100 + }, + { + "epoch": 96.5520902455209, + "grad_norm": 0.4783819019794464, + "learning_rate": 1.7418213969938107e-06, + "loss": 0.3851567459106445, + "step": 109200 + }, + { + "epoch": 96.64056624640567, + "grad_norm": 0.5319016575813293, + "learning_rate": 1.6976127320954906e-06, + "loss": 0.38549720764160156, + "step": 109300 + }, + { + "epoch": 96.72904224729042, + "grad_norm": 0.4579726755619049, + "learning_rate": 1.6534040671971708e-06, + "loss": 0.38684429168701173, + "step": 109400 + }, + { + "epoch": 96.81751824817518, + "grad_norm": 0.4699755012989044, + "learning_rate": 1.6091954022988506e-06, + "loss": 0.3849377822875977, + "step": 109500 + }, + { + "epoch": 96.90599424905994, + "grad_norm": 0.5681434273719788, + "learning_rate": 1.5649867374005304e-06, + "loss": 0.38494167327880857, + "step": 109600 + }, + { + "epoch": 96.9944702499447, + "grad_norm": 0.40921762585639954, + "learning_rate": 1.5207780725022105e-06, + "loss": 0.3864158630371094, + "step": 109700 + }, + { + "epoch": 97.08228268082283, + "grad_norm": 0.5271804928779602, + "learning_rate": 1.4765694076038905e-06, + "loss": 0.3854814529418945, + "step": 109800 + }, + { + "epoch": 97.17075868170758, + "grad_norm": 0.5390716195106506, + "learning_rate": 1.4323607427055703e-06, + "loss": 0.3826302719116211, + "step": 109900 + }, + { + "epoch": 97.25923468259235, + "grad_norm": 0.4738744795322418, + "learning_rate": 1.3881520778072502e-06, + "loss": 0.3834680938720703, + "step": 110000 + }, + { + "epoch": 97.3477106834771, + "grad_norm": 0.47226211428642273, + "learning_rate": 1.3439434129089302e-06, + "loss": 0.383985595703125, + "step": 110100 + }, + { + "epoch": 97.43618668436187, + "grad_norm": 0.44581323862075806, + "learning_rate": 1.29973474801061e-06, + "loss": 0.38392398834228514, + "step": 110200 + }, + { + "epoch": 97.52466268524662, + "grad_norm": 0.505975067615509, + "learning_rate": 1.25552608311229e-06, + "loss": 0.3842586898803711, + "step": 110300 + }, + { + "epoch": 97.61313868613139, + "grad_norm": 0.4737127125263214, + "learning_rate": 1.21131741821397e-06, + "loss": 0.3853626251220703, + "step": 110400 + }, + { + "epoch": 97.70161468701615, + "grad_norm": 0.42337724566459656, + "learning_rate": 1.16710875331565e-06, + "loss": 0.3860707092285156, + "step": 110500 + }, + { + "epoch": 97.7900906879009, + "grad_norm": 0.470935583114624, + "learning_rate": 1.12290008841733e-06, + "loss": 0.3849189758300781, + "step": 110600 + }, + { + "epoch": 97.87856668878567, + "grad_norm": 0.5499629974365234, + "learning_rate": 1.0786914235190098e-06, + "loss": 0.3849348068237305, + "step": 110700 + }, + { + "epoch": 97.96704268967042, + "grad_norm": 0.5295959711074829, + "learning_rate": 1.0344827586206898e-06, + "loss": 0.3844482040405273, + "step": 110800 + }, + { + "epoch": 98.05485512054855, + "grad_norm": 0.510218620300293, + "learning_rate": 9.902740937223696e-07, + "loss": 0.38250988006591796, + "step": 110900 + }, + { + "epoch": 98.1433311214333, + "grad_norm": 0.46240198612213135, + "learning_rate": 9.460654288240495e-07, + "loss": 0.38357555389404296, + "step": 111000 + }, + { + "epoch": 98.23180712231807, + "grad_norm": 0.5413907170295715, + "learning_rate": 9.018567639257295e-07, + "loss": 0.3835936737060547, + "step": 111100 + }, + { + "epoch": 98.32028312320283, + "grad_norm": 0.5282194018363953, + "learning_rate": 8.576480990274095e-07, + "loss": 0.38462539672851564, + "step": 111200 + }, + { + "epoch": 98.4087591240876, + "grad_norm": 0.4430619478225708, + "learning_rate": 8.134394341290893e-07, + "loss": 0.3831254196166992, + "step": 111300 + }, + { + "epoch": 98.49723512497235, + "grad_norm": 0.4520755410194397, + "learning_rate": 7.692307692307694e-07, + "loss": 0.38387767791748045, + "step": 111400 + }, + { + "epoch": 98.58571112585712, + "grad_norm": 0.42326220870018005, + "learning_rate": 7.250221043324492e-07, + "loss": 0.38382118225097656, + "step": 111500 + }, + { + "epoch": 98.67418712674187, + "grad_norm": 0.5536217093467712, + "learning_rate": 6.808134394341291e-07, + "loss": 0.3837322998046875, + "step": 111600 + }, + { + "epoch": 98.76266312762664, + "grad_norm": 0.47729530930519104, + "learning_rate": 6.36604774535809e-07, + "loss": 0.3840275192260742, + "step": 111700 + }, + { + "epoch": 98.85113912851139, + "grad_norm": 0.4712120294570923, + "learning_rate": 5.92396109637489e-07, + "loss": 0.3826910400390625, + "step": 111800 + }, + { + "epoch": 98.93961512939615, + "grad_norm": 0.4533778727054596, + "learning_rate": 5.481874447391689e-07, + "loss": 0.3849251174926758, + "step": 111900 + }, + { + "epoch": 99.02742756027428, + "grad_norm": 0.4762660264968872, + "learning_rate": 5.04420866489832e-07, + "loss": 0.38347198486328127, + "step": 112000 + }, + { + "epoch": 99.11590356115903, + "grad_norm": 0.49900203943252563, + "learning_rate": 4.6021220159151197e-07, + "loss": 0.38361885070800783, + "step": 112100 + }, + { + "epoch": 99.2043795620438, + "grad_norm": 0.5499697923660278, + "learning_rate": 4.1600353669319184e-07, + "loss": 0.38323490142822264, + "step": 112200 + }, + { + "epoch": 99.29285556292855, + "grad_norm": 0.49698564410209656, + "learning_rate": 3.717948717948718e-07, + "loss": 0.38394325256347656, + "step": 112300 + }, + { + "epoch": 99.38133156381332, + "grad_norm": 0.5000177621841431, + "learning_rate": 3.2758620689655175e-07, + "loss": 0.3833367156982422, + "step": 112400 + }, + { + "epoch": 99.46980756469807, + "grad_norm": 0.46179404854774475, + "learning_rate": 2.833775419982317e-07, + "loss": 0.38318233489990233, + "step": 112500 + }, + { + "epoch": 99.55828356558284, + "grad_norm": 0.5522571802139282, + "learning_rate": 2.391688770999116e-07, + "loss": 0.38181392669677733, + "step": 112600 + } + ], + "logging_steps": 100, + "max_steps": 113100, + "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": 3.124027613498573e+16, + "train_batch_size": 8, + "trial_name": null, + "trial_params": null +} diff --git a/timecost/m8/realtabformer/rtf-m8-20260501_010220/rtf_checkpoints/checkpoint-112600/training_args.bin b/timecost/m8/realtabformer/rtf-m8-20260501_010220/rtf_checkpoints/checkpoint-112600/training_args.bin new file mode 100644 index 0000000000000000000000000000000000000000..34d68dc0e0fe1c1f12a2e581dd1b166aa7178a9e --- /dev/null +++ b/timecost/m8/realtabformer/rtf-m8-20260501_010220/rtf_checkpoints/checkpoint-112600/training_args.bin @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:9e2cd88337d1d846c6918d2b3b63fa3e5c93f12fefc082497590da854a564607 +size 5201 diff --git a/timecost/m8/realtabformer/rtf-m8-20260501_010220/rtf_checkpoints/checkpoint-112700/config.json b/timecost/m8/realtabformer/rtf-m8-20260501_010220/rtf_checkpoints/checkpoint-112700/config.json new file mode 100644 index 0000000000000000000000000000000000000000..d98dd02b920679d4da3c8b60a9be119058fb9fe3 --- /dev/null +++ b/timecost/m8/realtabformer/rtf-m8-20260501_010220/rtf_checkpoints/checkpoint-112700/config.json @@ -0,0 +1,34 @@ +{ + "activation_function": "gelu_new", + "add_cross_attention": false, + "architectures": [ + "GPT2LMHeadModel" + ], + "attn_pdrop": 0.1, + "bos_token_id": 5, + "dtype": "float32", + "embd_pdrop": 0.1, + "eos_token_id": 6, + "initializer_range": 0.02, + "layer_norm_epsilon": 1e-05, + "model_type": "gpt2", + "n_embd": 768, + "n_head": 12, + "n_inner": null, + "n_layer": 6, + "n_positions": 1024, + "pad_token_id": null, + "reorder_and_upcast_attn": false, + "resid_pdrop": 0.1, + "scale_attn_by_inverse_layer_idx": false, + "scale_attn_weights": true, + "summary_activation": null, + "summary_first_dropout": 0.1, + "summary_proj_to_labels": true, + "summary_type": "cls_index", + "summary_use_proj": true, + "tie_word_embeddings": true, + "transformers_version": "5.5.3", + "use_cache": false, + "vocab_size": 244 +} diff --git a/timecost/m8/realtabformer/rtf-m8-20260501_010220/rtf_checkpoints/checkpoint-112700/generation_config.json b/timecost/m8/realtabformer/rtf-m8-20260501_010220/rtf_checkpoints/checkpoint-112700/generation_config.json new file mode 100644 index 0000000000000000000000000000000000000000..ffe89567780e75b5c22eade9be971483b9618f39 --- /dev/null +++ b/timecost/m8/realtabformer/rtf-m8-20260501_010220/rtf_checkpoints/checkpoint-112700/generation_config.json @@ -0,0 +1,9 @@ +{ + "_from_model_config": true, + "bos_token_id": 5, + "eos_token_id": 6, + "output_attentions": false, + "output_hidden_states": false, + "transformers_version": "5.5.3", + "use_cache": true +} diff --git a/timecost/m8/realtabformer/rtf-m8-20260501_010220/rtf_checkpoints/checkpoint-112700/model.safetensors b/timecost/m8/realtabformer/rtf-m8-20260501_010220/rtf_checkpoints/checkpoint-112700/model.safetensors new file mode 100644 index 0000000000000000000000000000000000000000..4961704e9d5979dcefcde923906ce1447989e7fd --- /dev/null +++ b/timecost/m8/realtabformer/rtf-m8-20260501_010220/rtf_checkpoints/checkpoint-112700/model.safetensors @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:eabd57ab0e7557953194dcbd5c3ef3ddeb7459fd8eee340cfcffad1390d3c541 +size 174017992 diff --git a/timecost/m8/realtabformer/rtf-m8-20260501_010220/rtf_checkpoints/checkpoint-112700/optimizer.pt b/timecost/m8/realtabformer/rtf-m8-20260501_010220/rtf_checkpoints/checkpoint-112700/optimizer.pt new file mode 100644 index 0000000000000000000000000000000000000000..df0936932c9924fb3635289e2fdb84e9e9e1f5d4 --- /dev/null +++ b/timecost/m8/realtabformer/rtf-m8-20260501_010220/rtf_checkpoints/checkpoint-112700/optimizer.pt @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:c8c661ac8c4f4f5c99182175f908317d5288a4a04260848fdcad48ea999db7cc +size 348085067 diff --git a/timecost/m8/realtabformer/rtf-m8-20260501_010220/rtf_checkpoints/checkpoint-112700/rng_state.pth b/timecost/m8/realtabformer/rtf-m8-20260501_010220/rtf_checkpoints/checkpoint-112700/rng_state.pth new file mode 100644 index 0000000000000000000000000000000000000000..b9857e43a51da29430dd9236aa147fa2bc048c4b --- /dev/null +++ b/timecost/m8/realtabformer/rtf-m8-20260501_010220/rtf_checkpoints/checkpoint-112700/rng_state.pth @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:d3ca4b0361431a19edb93d29f1a0fda4547c2eca0e58a820597621f9a04340cc +size 14645 diff --git a/timecost/m8/realtabformer/rtf-m8-20260501_010220/rtf_checkpoints/checkpoint-112700/scaler.pt b/timecost/m8/realtabformer/rtf-m8-20260501_010220/rtf_checkpoints/checkpoint-112700/scaler.pt new file mode 100644 index 0000000000000000000000000000000000000000..d37a21d468825319b07f6b19a016cfc6135c0596 --- /dev/null +++ b/timecost/m8/realtabformer/rtf-m8-20260501_010220/rtf_checkpoints/checkpoint-112700/scaler.pt @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:f5f7ade3794ef26d4050470e12006bb4f348c58ce1cd249f326e44a58c399612 +size 1383 diff --git a/timecost/m8/realtabformer/rtf-m8-20260501_010220/rtf_checkpoints/checkpoint-112700/scheduler.pt b/timecost/m8/realtabformer/rtf-m8-20260501_010220/rtf_checkpoints/checkpoint-112700/scheduler.pt new file mode 100644 index 0000000000000000000000000000000000000000..2b2df66351c06375d23384659c568105d754836c --- /dev/null +++ b/timecost/m8/realtabformer/rtf-m8-20260501_010220/rtf_checkpoints/checkpoint-112700/scheduler.pt @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:d00a427de58655fdc957cda89ee5995d2e9c409609843d1ea1e784dd94b8bc76 +size 1465 diff --git a/timecost/m8/realtabformer/rtf-m8-20260501_010220/rtf_checkpoints/checkpoint-112700/trainer_state.json b/timecost/m8/realtabformer/rtf-m8-20260501_010220/rtf_checkpoints/checkpoint-112700/trainer_state.json new file mode 100644 index 0000000000000000000000000000000000000000..90b30756b4b43177daaec55d57e8e84baa11eeac --- /dev/null +++ b/timecost/m8/realtabformer/rtf-m8-20260501_010220/rtf_checkpoints/checkpoint-112700/trainer_state.json @@ -0,0 +1,7923 @@ +{ + "best_global_step": null, + "best_metric": null, + "best_model_checkpoint": null, + "epoch": 99.6467595664676, + "eval_steps": 100, + "global_step": 112700, + "is_hyper_param_search": false, + "is_local_process_zero": true, + "is_world_process_zero": true, + "log_history": [ + { + "epoch": 0.08847600088476001, + "grad_norm": 0.27971890568733215, + "learning_rate": 4.9956233421750666e-05, + "loss": 1.6012767028808594, + "step": 100 + }, + { + "epoch": 0.17695200176952003, + "grad_norm": 0.2532733976840973, + "learning_rate": 4.991202475685234e-05, + "loss": 1.0460629272460937, + "step": 200 + }, + { + "epoch": 0.26542800265428, + "grad_norm": 0.22527219355106354, + "learning_rate": 4.986781609195402e-05, + "loss": 1.0045037841796876, + "step": 300 + }, + { + "epoch": 0.35390400353904006, + "grad_norm": 0.2071678638458252, + "learning_rate": 4.982360742705571e-05, + "loss": 0.9934071350097656, + "step": 400 + }, + { + "epoch": 0.44238000442380004, + "grad_norm": 0.21996082365512848, + "learning_rate": 4.977939876215739e-05, + "loss": 0.9807382965087891, + "step": 500 + }, + { + "epoch": 0.53085600530856, + "grad_norm": 0.20051148533821106, + "learning_rate": 4.9735190097259064e-05, + "loss": 0.9772834014892579, + "step": 600 + }, + { + "epoch": 0.6193320061933201, + "grad_norm": 0.20692776143550873, + "learning_rate": 4.969098143236074e-05, + "loss": 0.9733844757080078, + "step": 700 + }, + { + "epoch": 0.7078080070780801, + "grad_norm": 0.22139734029769897, + "learning_rate": 4.9646772767462425e-05, + "loss": 0.9641999053955078, + "step": 800 + }, + { + "epoch": 0.79628400796284, + "grad_norm": 0.20099565386772156, + "learning_rate": 4.96025641025641e-05, + "loss": 0.9590901947021484, + "step": 900 + }, + { + "epoch": 0.8847600088476001, + "grad_norm": 0.19050444662570953, + "learning_rate": 4.955835543766578e-05, + "loss": 0.9558430480957031, + "step": 1000 + }, + { + "epoch": 0.9732360097323601, + "grad_norm": 0.20780153572559357, + "learning_rate": 4.951414677276747e-05, + "loss": 0.9558073425292969, + "step": 1100 + }, + { + "epoch": 1.0610484406104843, + "grad_norm": 0.20002400875091553, + "learning_rate": 4.946993810786915e-05, + "loss": 0.9575533294677734, + "step": 1200 + }, + { + "epoch": 1.1495244414952444, + "grad_norm": 0.19394151866436005, + "learning_rate": 4.9425729442970824e-05, + "loss": 0.9556401824951172, + "step": 1300 + }, + { + "epoch": 1.2380004423800044, + "grad_norm": 0.19420816004276276, + "learning_rate": 4.93815207780725e-05, + "loss": 0.948358154296875, + "step": 1400 + }, + { + "epoch": 1.3264764432647644, + "grad_norm": 0.2109377682209015, + "learning_rate": 4.9337312113174185e-05, + "loss": 0.9507483673095704, + "step": 1500 + }, + { + "epoch": 1.4149524441495245, + "grad_norm": 0.19577011466026306, + "learning_rate": 4.929310344827586e-05, + "loss": 0.9544251251220703, + "step": 1600 + }, + { + "epoch": 1.5034284450342845, + "grad_norm": 0.17374339699745178, + "learning_rate": 4.924889478337754e-05, + "loss": 0.9495613098144531, + "step": 1700 + }, + { + "epoch": 1.5919044459190443, + "grad_norm": 0.1539471447467804, + "learning_rate": 4.920468611847922e-05, + "loss": 0.946780014038086, + "step": 1800 + }, + { + "epoch": 1.6803804468038046, + "grad_norm": 0.21705853939056396, + "learning_rate": 4.916047745358091e-05, + "loss": 0.9456329345703125, + "step": 1900 + }, + { + "epoch": 1.7688564476885644, + "grad_norm": 0.18109191954135895, + "learning_rate": 4.9116268788682584e-05, + "loss": 0.9452082061767578, + "step": 2000 + }, + { + "epoch": 1.8573324485733245, + "grad_norm": 0.18233413994312286, + "learning_rate": 4.907206012378426e-05, + "loss": 0.9436309051513672, + "step": 2100 + }, + { + "epoch": 1.9458084494580845, + "grad_norm": 0.19978198409080505, + "learning_rate": 4.9027851458885945e-05, + "loss": 0.9466010284423828, + "step": 2200 + }, + { + "epoch": 2.033620880336209, + "grad_norm": 0.19425439834594727, + "learning_rate": 4.898364279398762e-05, + "loss": 0.9419589233398438, + "step": 2300 + }, + { + "epoch": 2.1220968812209686, + "grad_norm": 0.18522261083126068, + "learning_rate": 4.8939434129089306e-05, + "loss": 0.9406929779052734, + "step": 2400 + }, + { + "epoch": 2.210572882105729, + "grad_norm": 0.18092288076877594, + "learning_rate": 4.889522546419098e-05, + "loss": 0.9394661712646485, + "step": 2500 + }, + { + "epoch": 2.2990488829904887, + "grad_norm": 0.16110995411872864, + "learning_rate": 4.885101679929267e-05, + "loss": 0.9415554809570312, + "step": 2600 + }, + { + "epoch": 2.387524883875249, + "grad_norm": 0.1742609441280365, + "learning_rate": 4.8806808134394344e-05, + "loss": 0.9385026550292969, + "step": 2700 + }, + { + "epoch": 2.476000884760009, + "grad_norm": 0.1893293261528015, + "learning_rate": 4.876259946949602e-05, + "loss": 0.9374285125732422, + "step": 2800 + }, + { + "epoch": 2.564476885644769, + "grad_norm": 0.17022491991519928, + "learning_rate": 4.8718390804597705e-05, + "loss": 0.9414189910888672, + "step": 2900 + }, + { + "epoch": 2.652952886529529, + "grad_norm": 0.1820104867219925, + "learning_rate": 4.867418213969938e-05, + "loss": 0.9428114318847656, + "step": 3000 + }, + { + "epoch": 2.7414288874142887, + "grad_norm": 0.1591845154762268, + "learning_rate": 4.8629973474801066e-05, + "loss": 0.9408238220214844, + "step": 3100 + }, + { + "epoch": 2.829904888299049, + "grad_norm": 0.16679565608501434, + "learning_rate": 4.858576480990274e-05, + "loss": 0.9357293701171875, + "step": 3200 + }, + { + "epoch": 2.918380889183809, + "grad_norm": 0.1608530431985855, + "learning_rate": 4.854155614500443e-05, + "loss": 0.9437465667724609, + "step": 3300 + }, + { + "epoch": 3.006193320061933, + "grad_norm": 0.17832520604133606, + "learning_rate": 4.8497347480106104e-05, + "loss": 0.9349425506591796, + "step": 3400 + }, + { + "epoch": 3.0946693209466933, + "grad_norm": 0.18095993995666504, + "learning_rate": 4.845313881520778e-05, + "loss": 0.9341915130615235, + "step": 3500 + }, + { + "epoch": 3.183145321831453, + "grad_norm": 0.15083801746368408, + "learning_rate": 4.8408930150309465e-05, + "loss": 0.9406319427490234, + "step": 3600 + }, + { + "epoch": 3.2716213227162134, + "grad_norm": 0.17318469285964966, + "learning_rate": 4.836472148541114e-05, + "loss": 0.942470703125, + "step": 3700 + }, + { + "epoch": 3.3600973236009732, + "grad_norm": 0.16380801796913147, + "learning_rate": 4.8320512820512826e-05, + "loss": 0.9362622833251953, + "step": 3800 + }, + { + "epoch": 3.448573324485733, + "grad_norm": 0.16394540667533875, + "learning_rate": 4.82763041556145e-05, + "loss": 0.9353338623046875, + "step": 3900 + }, + { + "epoch": 3.5370493253704933, + "grad_norm": 0.15836960077285767, + "learning_rate": 4.8232095490716186e-05, + "loss": 0.9316812896728516, + "step": 4000 + }, + { + "epoch": 3.625525326255253, + "grad_norm": 0.16170428693294525, + "learning_rate": 4.8187886825817864e-05, + "loss": 0.9331712341308593, + "step": 4100 + }, + { + "epoch": 3.7140013271400134, + "grad_norm": 0.16442789137363434, + "learning_rate": 4.814367816091954e-05, + "loss": 0.9366471862792969, + "step": 4200 + }, + { + "epoch": 3.8024773280247732, + "grad_norm": 0.1728108674287796, + "learning_rate": 4.8099469496021224e-05, + "loss": 0.9279624938964843, + "step": 4300 + }, + { + "epoch": 3.890953328909533, + "grad_norm": 0.16846929490566254, + "learning_rate": 4.80552608311229e-05, + "loss": 0.9343041229248047, + "step": 4400 + }, + { + "epoch": 3.9794293297942933, + "grad_norm": 0.15764060616493225, + "learning_rate": 4.8011052166224585e-05, + "loss": 0.9330953979492187, + "step": 4500 + }, + { + "epoch": 4.067241760672418, + "grad_norm": 0.15639521181583405, + "learning_rate": 4.796684350132626e-05, + "loss": 0.92936279296875, + "step": 4600 + }, + { + "epoch": 4.155717761557177, + "grad_norm": 0.1571352481842041, + "learning_rate": 4.7922634836427946e-05, + "loss": 0.928530502319336, + "step": 4700 + }, + { + "epoch": 4.244193762441937, + "grad_norm": 0.1702045202255249, + "learning_rate": 4.787842617152962e-05, + "loss": 0.928214111328125, + "step": 4800 + }, + { + "epoch": 4.332669763326698, + "grad_norm": 0.15860655903816223, + "learning_rate": 4.78342175066313e-05, + "loss": 0.9305215454101563, + "step": 4900 + }, + { + "epoch": 4.421145764211458, + "grad_norm": 0.15470334887504578, + "learning_rate": 4.779000884173298e-05, + "loss": 0.9308832550048828, + "step": 5000 + }, + { + "epoch": 4.509621765096218, + "grad_norm": 0.18338388204574585, + "learning_rate": 4.774580017683466e-05, + "loss": 0.9284812164306641, + "step": 5100 + }, + { + "epoch": 4.598097765980977, + "grad_norm": 0.16396461427211761, + "learning_rate": 4.7701591511936345e-05, + "loss": 0.9331364440917969, + "step": 5200 + }, + { + "epoch": 4.686573766865738, + "grad_norm": 0.15601013600826263, + "learning_rate": 4.765738284703802e-05, + "loss": 0.9345075225830078, + "step": 5300 + }, + { + "epoch": 4.775049767750498, + "grad_norm": 0.15895380079746246, + "learning_rate": 4.76131741821397e-05, + "loss": 0.9342525482177735, + "step": 5400 + }, + { + "epoch": 4.863525768635258, + "grad_norm": 0.17462770640850067, + "learning_rate": 4.756896551724138e-05, + "loss": 0.9322207641601562, + "step": 5500 + }, + { + "epoch": 4.952001769520018, + "grad_norm": 0.15457525849342346, + "learning_rate": 4.752475685234306e-05, + "loss": 0.9310305023193359, + "step": 5600 + }, + { + "epoch": 5.039814200398142, + "grad_norm": 0.13688383996486664, + "learning_rate": 4.748054818744474e-05, + "loss": 0.9262973022460937, + "step": 5700 + }, + { + "epoch": 5.128290201282902, + "grad_norm": 0.15491563081741333, + "learning_rate": 4.743633952254642e-05, + "loss": 0.927138671875, + "step": 5800 + }, + { + "epoch": 5.216766202167662, + "grad_norm": 0.168558269739151, + "learning_rate": 4.7392130857648105e-05, + "loss": 0.9224365234375, + "step": 5900 + }, + { + "epoch": 5.305242203052422, + "grad_norm": 0.1631685495376587, + "learning_rate": 4.734792219274978e-05, + "loss": 0.9300392913818359, + "step": 6000 + }, + { + "epoch": 5.393718203937182, + "grad_norm": 0.1423729509115219, + "learning_rate": 4.730371352785146e-05, + "loss": 0.926734619140625, + "step": 6100 + }, + { + "epoch": 5.482194204821942, + "grad_norm": 0.15391670167446136, + "learning_rate": 4.725950486295314e-05, + "loss": 0.928184814453125, + "step": 6200 + }, + { + "epoch": 5.570670205706702, + "grad_norm": 0.16460080444812775, + "learning_rate": 4.721529619805482e-05, + "loss": 0.9238227844238281, + "step": 6300 + }, + { + "epoch": 5.659146206591462, + "grad_norm": 0.15589170157909393, + "learning_rate": 4.71710875331565e-05, + "loss": 0.9301457214355469, + "step": 6400 + }, + { + "epoch": 5.747622207476222, + "grad_norm": 0.15851308405399323, + "learning_rate": 4.712687886825818e-05, + "loss": 0.9308782196044922, + "step": 6500 + }, + { + "epoch": 5.836098208360982, + "grad_norm": 0.1777440756559372, + "learning_rate": 4.7082670203359865e-05, + "loss": 0.9248320007324219, + "step": 6600 + }, + { + "epoch": 5.924574209245742, + "grad_norm": 0.17118966579437256, + "learning_rate": 4.703846153846154e-05, + "loss": 0.933470458984375, + "step": 6700 + }, + { + "epoch": 6.012386640123866, + "grad_norm": 0.16862431168556213, + "learning_rate": 4.699425287356322e-05, + "loss": 0.9242423248291015, + "step": 6800 + }, + { + "epoch": 6.100862641008627, + "grad_norm": 0.19494886696338654, + "learning_rate": 4.69500442086649e-05, + "loss": 0.9229951477050782, + "step": 6900 + }, + { + "epoch": 6.189338641893387, + "grad_norm": 0.1628340780735016, + "learning_rate": 4.690583554376658e-05, + "loss": 0.9262020111083984, + "step": 7000 + }, + { + "epoch": 6.2778146427781465, + "grad_norm": 0.18057121336460114, + "learning_rate": 4.686162687886826e-05, + "loss": 0.9253005981445312, + "step": 7100 + }, + { + "epoch": 6.366290643662906, + "grad_norm": 0.16090655326843262, + "learning_rate": 4.681741821396994e-05, + "loss": 0.9206966400146485, + "step": 7200 + }, + { + "epoch": 6.454766644547666, + "grad_norm": 0.16115659475326538, + "learning_rate": 4.6773209549071625e-05, + "loss": 0.9219180297851562, + "step": 7300 + }, + { + "epoch": 6.543242645432427, + "grad_norm": 0.1964244246482849, + "learning_rate": 4.67290008841733e-05, + "loss": 0.9238224029541016, + "step": 7400 + }, + { + "epoch": 6.631718646317187, + "grad_norm": 0.1761396825313568, + "learning_rate": 4.668479221927498e-05, + "loss": 0.9244656372070312, + "step": 7500 + }, + { + "epoch": 6.7201946472019465, + "grad_norm": 0.18016010522842407, + "learning_rate": 4.664058355437666e-05, + "loss": 0.9245244598388672, + "step": 7600 + }, + { + "epoch": 6.808670648086706, + "grad_norm": 0.16012924909591675, + "learning_rate": 4.659637488947834e-05, + "loss": 0.9250524139404297, + "step": 7700 + }, + { + "epoch": 6.897146648971466, + "grad_norm": 0.1722676306962967, + "learning_rate": 4.655216622458002e-05, + "loss": 0.9270682525634766, + "step": 7800 + }, + { + "epoch": 6.985622649856227, + "grad_norm": 0.18756897747516632, + "learning_rate": 4.65079575596817e-05, + "loss": 0.9234317779541016, + "step": 7900 + }, + { + "epoch": 7.073435080734351, + "grad_norm": 0.16759978234767914, + "learning_rate": 4.6463748894783384e-05, + "loss": 0.9213732147216797, + "step": 8000 + }, + { + "epoch": 7.1619110816191105, + "grad_norm": 0.15943242609500885, + "learning_rate": 4.641954022988506e-05, + "loss": 0.9243515014648438, + "step": 8100 + }, + { + "epoch": 7.250387082503871, + "grad_norm": 0.15444102883338928, + "learning_rate": 4.637533156498674e-05, + "loss": 0.9177332305908203, + "step": 8200 + }, + { + "epoch": 7.338863083388631, + "grad_norm": 0.17104187607765198, + "learning_rate": 4.633112290008842e-05, + "loss": 0.9199151611328125, + "step": 8300 + }, + { + "epoch": 7.427339084273391, + "grad_norm": 0.152462899684906, + "learning_rate": 4.62869142351901e-05, + "loss": 0.9231443786621094, + "step": 8400 + }, + { + "epoch": 7.515815085158151, + "grad_norm": 0.1663249433040619, + "learning_rate": 4.6242705570291777e-05, + "loss": 0.9231499481201172, + "step": 8500 + }, + { + "epoch": 7.6042910860429105, + "grad_norm": 0.1711215376853943, + "learning_rate": 4.6198496905393454e-05, + "loss": 0.9192819976806641, + "step": 8600 + }, + { + "epoch": 7.692767086927671, + "grad_norm": 0.1620834916830063, + "learning_rate": 4.6154288240495144e-05, + "loss": 0.9260062408447266, + "step": 8700 + }, + { + "epoch": 7.781243087812431, + "grad_norm": 0.16246546804904938, + "learning_rate": 4.611007957559682e-05, + "loss": 0.9250968933105469, + "step": 8800 + }, + { + "epoch": 7.869719088697191, + "grad_norm": 0.15757358074188232, + "learning_rate": 4.60658709106985e-05, + "loss": 0.9235149383544922, + "step": 8900 + }, + { + "epoch": 7.958195089581951, + "grad_norm": 0.15778206288814545, + "learning_rate": 4.602166224580018e-05, + "loss": 0.9173377227783203, + "step": 9000 + }, + { + "epoch": 8.046007520460075, + "grad_norm": 0.17259791493415833, + "learning_rate": 4.597745358090186e-05, + "loss": 0.9134017181396484, + "step": 9100 + }, + { + "epoch": 8.134483521344835, + "grad_norm": 0.1707502007484436, + "learning_rate": 4.5933244916003536e-05, + "loss": 0.9134098052978515, + "step": 9200 + }, + { + "epoch": 8.222959522229596, + "grad_norm": 0.1647530347108841, + "learning_rate": 4.5889036251105213e-05, + "loss": 0.9205097961425781, + "step": 9300 + }, + { + "epoch": 8.311435523114355, + "grad_norm": 0.16971947252750397, + "learning_rate": 4.5844827586206904e-05, + "loss": 0.9217983245849609, + "step": 9400 + }, + { + "epoch": 8.399911523999116, + "grad_norm": 0.15842877328395844, + "learning_rate": 4.580061892130858e-05, + "loss": 0.9172341918945313, + "step": 9500 + }, + { + "epoch": 8.488387524883874, + "grad_norm": 0.15321888029575348, + "learning_rate": 4.575641025641026e-05, + "loss": 0.9222029113769531, + "step": 9600 + }, + { + "epoch": 8.576863525768635, + "grad_norm": 0.17232707142829895, + "learning_rate": 4.5712201591511935e-05, + "loss": 0.9190543365478515, + "step": 9700 + }, + { + "epoch": 8.665339526653396, + "grad_norm": 0.14735591411590576, + "learning_rate": 4.566799292661362e-05, + "loss": 0.9193865203857422, + "step": 9800 + }, + { + "epoch": 8.753815527538155, + "grad_norm": 0.17929628491401672, + "learning_rate": 4.5623784261715296e-05, + "loss": 0.9178209686279297, + "step": 9900 + }, + { + "epoch": 8.842291528422916, + "grad_norm": 0.1546984612941742, + "learning_rate": 4.557957559681697e-05, + "loss": 0.9209825134277344, + "step": 10000 + }, + { + "epoch": 8.930767529307674, + "grad_norm": 0.16275030374526978, + "learning_rate": 4.553536693191866e-05, + "loss": 0.9219312286376953, + "step": 10100 + }, + { + "epoch": 9.0185799601858, + "grad_norm": 0.16977843642234802, + "learning_rate": 4.549115826702034e-05, + "loss": 0.9190888977050782, + "step": 10200 + }, + { + "epoch": 9.107055961070559, + "grad_norm": 0.16722118854522705, + "learning_rate": 4.544694960212202e-05, + "loss": 0.9173007202148438, + "step": 10300 + }, + { + "epoch": 9.19553196195532, + "grad_norm": 0.15637095272541046, + "learning_rate": 4.5402740937223695e-05, + "loss": 0.9152852630615235, + "step": 10400 + }, + { + "epoch": 9.28400796284008, + "grad_norm": 0.15433216094970703, + "learning_rate": 4.535853227232538e-05, + "loss": 0.9151573944091796, + "step": 10500 + }, + { + "epoch": 9.37248396372484, + "grad_norm": 0.15743562579154968, + "learning_rate": 4.5314323607427056e-05, + "loss": 0.9173799896240235, + "step": 10600 + }, + { + "epoch": 9.4609599646096, + "grad_norm": 0.1527981162071228, + "learning_rate": 4.527011494252873e-05, + "loss": 0.911611328125, + "step": 10700 + }, + { + "epoch": 9.549435965494359, + "grad_norm": 0.15745887160301208, + "learning_rate": 4.522590627763042e-05, + "loss": 0.9144339752197266, + "step": 10800 + }, + { + "epoch": 9.63791196637912, + "grad_norm": 0.1523962914943695, + "learning_rate": 4.51816976127321e-05, + "loss": 0.918481216430664, + "step": 10900 + }, + { + "epoch": 9.72638796726388, + "grad_norm": 0.17231452465057373, + "learning_rate": 4.513748894783378e-05, + "loss": 0.9197111511230469, + "step": 11000 + }, + { + "epoch": 9.81486396814864, + "grad_norm": 0.16348381340503693, + "learning_rate": 4.5093280282935455e-05, + "loss": 0.9151203918457032, + "step": 11100 + }, + { + "epoch": 9.9033399690334, + "grad_norm": 0.16555383801460266, + "learning_rate": 4.504907161803714e-05, + "loss": 0.9189680480957031, + "step": 11200 + }, + { + "epoch": 9.991815969918159, + "grad_norm": 0.16531047224998474, + "learning_rate": 4.5004862953138816e-05, + "loss": 0.9149074554443359, + "step": 11300 + }, + { + "epoch": 10.079628400796285, + "grad_norm": 0.1655273735523224, + "learning_rate": 4.496065428824049e-05, + "loss": 0.9143817138671875, + "step": 11400 + }, + { + "epoch": 10.168104401681044, + "grad_norm": 0.1795828938484192, + "learning_rate": 4.491644562334218e-05, + "loss": 0.911801986694336, + "step": 11500 + }, + { + "epoch": 10.256580402565804, + "grad_norm": 0.1684361696243286, + "learning_rate": 4.487223695844386e-05, + "loss": 0.910247802734375, + "step": 11600 + }, + { + "epoch": 10.345056403450563, + "grad_norm": 0.1620638519525528, + "learning_rate": 4.482802829354554e-05, + "loss": 0.9155111694335938, + "step": 11700 + }, + { + "epoch": 10.433532404335324, + "grad_norm": 0.1695495843887329, + "learning_rate": 4.4783819628647215e-05, + "loss": 0.9134779357910157, + "step": 11800 + }, + { + "epoch": 10.522008405220085, + "grad_norm": 0.18226753175258636, + "learning_rate": 4.47396109637489e-05, + "loss": 0.9143638610839844, + "step": 11900 + }, + { + "epoch": 10.610484406104844, + "grad_norm": 0.15289710462093353, + "learning_rate": 4.4695402298850576e-05, + "loss": 0.9122061157226562, + "step": 12000 + }, + { + "epoch": 10.698960406989604, + "grad_norm": 0.15486228466033936, + "learning_rate": 4.465119363395225e-05, + "loss": 0.9148915863037109, + "step": 12100 + }, + { + "epoch": 10.787436407874363, + "grad_norm": 0.17585019767284393, + "learning_rate": 4.4606984969053937e-05, + "loss": 0.9163182830810547, + "step": 12200 + }, + { + "epoch": 10.875912408759124, + "grad_norm": 0.158732071518898, + "learning_rate": 4.456277630415562e-05, + "loss": 0.9148865509033203, + "step": 12300 + }, + { + "epoch": 10.964388409643885, + "grad_norm": 0.15901361405849457, + "learning_rate": 4.45185676392573e-05, + "loss": 0.9184156799316406, + "step": 12400 + }, + { + "epoch": 11.052200840522008, + "grad_norm": 0.15289290249347687, + "learning_rate": 4.4474358974358974e-05, + "loss": 0.910323486328125, + "step": 12500 + }, + { + "epoch": 11.14067684140677, + "grad_norm": 0.14922171831130981, + "learning_rate": 4.443015030946066e-05, + "loss": 0.9092740631103515, + "step": 12600 + }, + { + "epoch": 11.229152842291528, + "grad_norm": 0.1710701584815979, + "learning_rate": 4.4385941644562335e-05, + "loss": 0.909953842163086, + "step": 12700 + }, + { + "epoch": 11.317628843176289, + "grad_norm": 0.16967815160751343, + "learning_rate": 4.434173297966401e-05, + "loss": 0.9069422912597657, + "step": 12800 + }, + { + "epoch": 11.406104844061048, + "grad_norm": 0.16896069049835205, + "learning_rate": 4.4297524314765696e-05, + "loss": 0.9166646575927735, + "step": 12900 + }, + { + "epoch": 11.494580844945808, + "grad_norm": 0.16996079683303833, + "learning_rate": 4.425331564986738e-05, + "loss": 0.9114566040039063, + "step": 13000 + }, + { + "epoch": 11.58305684583057, + "grad_norm": 0.16553319990634918, + "learning_rate": 4.420910698496906e-05, + "loss": 0.9121807098388672, + "step": 13100 + }, + { + "epoch": 11.671532846715328, + "grad_norm": 0.1629258692264557, + "learning_rate": 4.4164898320070734e-05, + "loss": 0.904563217163086, + "step": 13200 + }, + { + "epoch": 11.760008847600089, + "grad_norm": 0.1660201996564865, + "learning_rate": 4.412068965517241e-05, + "loss": 0.9116962432861329, + "step": 13300 + }, + { + "epoch": 11.848484848484848, + "grad_norm": 0.16493095457553864, + "learning_rate": 4.4076480990274095e-05, + "loss": 0.9136554718017578, + "step": 13400 + }, + { + "epoch": 11.936960849369608, + "grad_norm": 0.15279296040534973, + "learning_rate": 4.403227232537578e-05, + "loss": 0.9120658874511719, + "step": 13500 + }, + { + "epoch": 12.024773280247732, + "grad_norm": 0.16151593625545502, + "learning_rate": 4.3988063660477456e-05, + "loss": 0.9155186462402344, + "step": 13600 + }, + { + "epoch": 12.113249281132493, + "grad_norm": 0.16777871549129486, + "learning_rate": 4.394385499557914e-05, + "loss": 0.9070235443115234, + "step": 13700 + }, + { + "epoch": 12.201725282017254, + "grad_norm": 0.15052072703838348, + "learning_rate": 4.389964633068082e-05, + "loss": 0.9057080078125, + "step": 13800 + }, + { + "epoch": 12.290201282902013, + "grad_norm": 0.17466743290424347, + "learning_rate": 4.3855437665782494e-05, + "loss": 0.9058401489257812, + "step": 13900 + }, + { + "epoch": 12.378677283786773, + "grad_norm": 0.17788690328598022, + "learning_rate": 4.381122900088417e-05, + "loss": 0.9058721923828125, + "step": 14000 + }, + { + "epoch": 12.467153284671532, + "grad_norm": 0.17527516186237335, + "learning_rate": 4.3767020335985855e-05, + "loss": 0.908851089477539, + "step": 14100 + }, + { + "epoch": 12.555629285556293, + "grad_norm": 0.17999336123466492, + "learning_rate": 4.372281167108754e-05, + "loss": 0.9110614013671875, + "step": 14200 + }, + { + "epoch": 12.644105286441054, + "grad_norm": 0.1635061800479889, + "learning_rate": 4.3678603006189216e-05, + "loss": 0.9081086730957031, + "step": 14300 + }, + { + "epoch": 12.732581287325813, + "grad_norm": 0.1813993752002716, + "learning_rate": 4.363439434129089e-05, + "loss": 0.9091014862060547, + "step": 14400 + }, + { + "epoch": 12.821057288210573, + "grad_norm": 0.17487457394599915, + "learning_rate": 4.359018567639258e-05, + "loss": 0.9076325988769531, + "step": 14500 + }, + { + "epoch": 12.909533289095332, + "grad_norm": 0.17149627208709717, + "learning_rate": 4.3545977011494254e-05, + "loss": 0.9064749908447266, + "step": 14600 + }, + { + "epoch": 12.998009289980093, + "grad_norm": 0.16990207135677338, + "learning_rate": 4.350176834659593e-05, + "loss": 0.911828384399414, + "step": 14700 + }, + { + "epoch": 13.085821720858217, + "grad_norm": 0.16583888232707977, + "learning_rate": 4.3458001768346594e-05, + "loss": 0.9017422485351563, + "step": 14800 + }, + { + "epoch": 13.174297721742978, + "grad_norm": 0.1644158959388733, + "learning_rate": 4.341379310344828e-05, + "loss": 0.9052355194091797, + "step": 14900 + }, + { + "epoch": 13.262773722627736, + "grad_norm": 0.1759374737739563, + "learning_rate": 4.336958443854996e-05, + "loss": 0.9027067565917969, + "step": 15000 + }, + { + "epoch": 13.351249723512497, + "grad_norm": 0.1623755842447281, + "learning_rate": 4.332537577365164e-05, + "loss": 0.9078491973876953, + "step": 15100 + }, + { + "epoch": 13.439725724397258, + "grad_norm": 0.15563324093818665, + "learning_rate": 4.3281167108753316e-05, + "loss": 0.9046826171875, + "step": 15200 + }, + { + "epoch": 13.528201725282017, + "grad_norm": 0.1762174814939499, + "learning_rate": 4.3236958443855e-05, + "loss": 0.9070060729980469, + "step": 15300 + }, + { + "epoch": 13.616677726166778, + "grad_norm": 0.1598447859287262, + "learning_rate": 4.319274977895668e-05, + "loss": 0.907843017578125, + "step": 15400 + }, + { + "epoch": 13.705153727051536, + "grad_norm": 0.17838729918003082, + "learning_rate": 4.3148541114058354e-05, + "loss": 0.9077598571777343, + "step": 15500 + }, + { + "epoch": 13.793629727936297, + "grad_norm": 0.16615167260169983, + "learning_rate": 4.310433244916004e-05, + "loss": 0.9041740417480468, + "step": 15600 + }, + { + "epoch": 13.882105728821058, + "grad_norm": 0.16463759541511536, + "learning_rate": 4.306012378426172e-05, + "loss": 0.9023047637939453, + "step": 15700 + }, + { + "epoch": 13.970581729705817, + "grad_norm": 0.1562959849834442, + "learning_rate": 4.30159151193634e-05, + "loss": 0.902835693359375, + "step": 15800 + }, + { + "epoch": 14.058394160583942, + "grad_norm": 0.16919565200805664, + "learning_rate": 4.2971706454465076e-05, + "loss": 0.8998876953125, + "step": 15900 + }, + { + "epoch": 14.146870161468701, + "grad_norm": 0.16513022780418396, + "learning_rate": 4.292749778956676e-05, + "loss": 0.9023524475097656, + "step": 16000 + }, + { + "epoch": 14.235346162353462, + "grad_norm": 0.173946812748909, + "learning_rate": 4.288328912466844e-05, + "loss": 0.8980498504638672, + "step": 16100 + }, + { + "epoch": 14.323822163238221, + "grad_norm": 0.16749872267246246, + "learning_rate": 4.2839080459770114e-05, + "loss": 0.9026957702636719, + "step": 16200 + }, + { + "epoch": 14.412298164122982, + "grad_norm": 0.17985551059246063, + "learning_rate": 4.27948717948718e-05, + "loss": 0.9012105560302734, + "step": 16300 + }, + { + "epoch": 14.500774165007742, + "grad_norm": 0.18807820975780487, + "learning_rate": 4.275066312997348e-05, + "loss": 0.9014115905761719, + "step": 16400 + }, + { + "epoch": 14.589250165892501, + "grad_norm": 0.17243777215480804, + "learning_rate": 4.270645446507516e-05, + "loss": 0.9028221893310547, + "step": 16500 + }, + { + "epoch": 14.677726166777262, + "grad_norm": 0.1674414724111557, + "learning_rate": 4.2662245800176836e-05, + "loss": 0.9017185974121094, + "step": 16600 + }, + { + "epoch": 14.766202167662021, + "grad_norm": 0.17522333562374115, + "learning_rate": 4.261803713527851e-05, + "loss": 0.8989543914794922, + "step": 16700 + }, + { + "epoch": 14.854678168546782, + "grad_norm": 0.16300654411315918, + "learning_rate": 4.2573828470380197e-05, + "loss": 0.9001253509521484, + "step": 16800 + }, + { + "epoch": 14.943154169431542, + "grad_norm": 0.1702653169631958, + "learning_rate": 4.2529619805481874e-05, + "loss": 0.9020176696777343, + "step": 16900 + }, + { + "epoch": 15.030966600309666, + "grad_norm": 0.1752340942621231, + "learning_rate": 4.2485853227232544e-05, + "loss": 0.8990335083007812, + "step": 17000 + }, + { + "epoch": 15.119442601194425, + "grad_norm": 0.17765584588050842, + "learning_rate": 4.244164456233422e-05, + "loss": 0.8885309600830078, + "step": 17100 + }, + { + "epoch": 15.207918602079186, + "grad_norm": 0.18404972553253174, + "learning_rate": 4.23974358974359e-05, + "loss": 0.8915805816650391, + "step": 17200 + }, + { + "epoch": 15.296394602963947, + "grad_norm": 0.17206765711307526, + "learning_rate": 4.235322723253758e-05, + "loss": 0.8898361968994141, + "step": 17300 + }, + { + "epoch": 15.384870603848706, + "grad_norm": 0.19998455047607422, + "learning_rate": 4.230901856763926e-05, + "loss": 0.8957837677001953, + "step": 17400 + }, + { + "epoch": 15.473346604733466, + "grad_norm": 0.19454777240753174, + "learning_rate": 4.2264809902740936e-05, + "loss": 0.8990544891357422, + "step": 17500 + }, + { + "epoch": 15.561822605618225, + "grad_norm": 0.17281410098075867, + "learning_rate": 4.222060123784262e-05, + "loss": 0.8996484375, + "step": 17600 + }, + { + "epoch": 15.650298606502986, + "grad_norm": 0.1906009018421173, + "learning_rate": 4.21763925729443e-05, + "loss": 0.9032618713378906, + "step": 17700 + }, + { + "epoch": 15.738774607387747, + "grad_norm": 0.17282316088676453, + "learning_rate": 4.213218390804598e-05, + "loss": 0.8986404418945313, + "step": 17800 + }, + { + "epoch": 15.827250608272506, + "grad_norm": 0.18802666664123535, + "learning_rate": 4.208797524314766e-05, + "loss": 0.8964502716064453, + "step": 17900 + }, + { + "epoch": 15.915726609157266, + "grad_norm": 0.19853872060775757, + "learning_rate": 4.204376657824934e-05, + "loss": 0.9032749938964844, + "step": 18000 + }, + { + "epoch": 16.003539040035392, + "grad_norm": 0.18812181055545807, + "learning_rate": 4.199955791335102e-05, + "loss": 0.8991973876953125, + "step": 18100 + }, + { + "epoch": 16.09201504092015, + "grad_norm": 0.1644710898399353, + "learning_rate": 4.1955349248452695e-05, + "loss": 0.8866680908203125, + "step": 18200 + }, + { + "epoch": 16.18049104180491, + "grad_norm": 0.1884208619594574, + "learning_rate": 4.191114058355438e-05, + "loss": 0.8872537994384766, + "step": 18300 + }, + { + "epoch": 16.26896704268967, + "grad_norm": 0.1828072965145111, + "learning_rate": 4.186693191865606e-05, + "loss": 0.8902882385253906, + "step": 18400 + }, + { + "epoch": 16.35744304357443, + "grad_norm": 0.19119146466255188, + "learning_rate": 4.182272325375774e-05, + "loss": 0.8903806304931641, + "step": 18500 + }, + { + "epoch": 16.445919044459192, + "grad_norm": 0.20727571845054626, + "learning_rate": 4.177851458885942e-05, + "loss": 0.8952965545654297, + "step": 18600 + }, + { + "epoch": 16.53439504534395, + "grad_norm": 0.18735922873020172, + "learning_rate": 4.17343059239611e-05, + "loss": 0.8870563507080078, + "step": 18700 + }, + { + "epoch": 16.62287104622871, + "grad_norm": 0.1973799169063568, + "learning_rate": 4.169009725906278e-05, + "loss": 0.8974028778076172, + "step": 18800 + }, + { + "epoch": 16.71134704711347, + "grad_norm": 0.20604746043682098, + "learning_rate": 4.1645888594164455e-05, + "loss": 0.8937057495117188, + "step": 18900 + }, + { + "epoch": 16.79982304799823, + "grad_norm": 0.18150219321250916, + "learning_rate": 4.160167992926614e-05, + "loss": 0.8935442352294922, + "step": 19000 + }, + { + "epoch": 16.888299048882992, + "grad_norm": 0.18340304493904114, + "learning_rate": 4.155747126436782e-05, + "loss": 0.8885797119140625, + "step": 19100 + }, + { + "epoch": 16.97677504976775, + "grad_norm": 0.2073577493429184, + "learning_rate": 4.15132625994695e-05, + "loss": 0.8951002502441406, + "step": 19200 + }, + { + "epoch": 17.064587480645876, + "grad_norm": 0.17697007954120636, + "learning_rate": 4.146949602122016e-05, + "loss": 0.8879679870605469, + "step": 19300 + }, + { + "epoch": 17.153063481530634, + "grad_norm": 0.20899821817874908, + "learning_rate": 4.142528735632184e-05, + "loss": 0.8794329833984375, + "step": 19400 + }, + { + "epoch": 17.241539482415394, + "grad_norm": 0.18147091567516327, + "learning_rate": 4.138107869142352e-05, + "loss": 0.8802722930908203, + "step": 19500 + }, + { + "epoch": 17.330015483300155, + "grad_norm": 0.20257830619812012, + "learning_rate": 4.13368700265252e-05, + "loss": 0.8870145416259766, + "step": 19600 + }, + { + "epoch": 17.418491484184916, + "grad_norm": 0.20231416821479797, + "learning_rate": 4.1292661361626885e-05, + "loss": 0.8838448333740234, + "step": 19700 + }, + { + "epoch": 17.506967485069676, + "grad_norm": 0.18214623630046844, + "learning_rate": 4.124845269672856e-05, + "loss": 0.8879763793945312, + "step": 19800 + }, + { + "epoch": 17.595443485954434, + "grad_norm": 0.18666088581085205, + "learning_rate": 4.120424403183024e-05, + "loss": 0.8885836029052734, + "step": 19900 + }, + { + "epoch": 17.683919486839194, + "grad_norm": 0.20308583974838257, + "learning_rate": 4.116003536693192e-05, + "loss": 0.8843843078613282, + "step": 20000 + }, + { + "epoch": 17.772395487723955, + "grad_norm": 0.18726830184459686, + "learning_rate": 4.11158267020336e-05, + "loss": 0.8865486145019531, + "step": 20100 + }, + { + "epoch": 17.860871488608716, + "grad_norm": 0.17878851294517517, + "learning_rate": 4.107161803713528e-05, + "loss": 0.8883515930175782, + "step": 20200 + }, + { + "epoch": 17.949347489493476, + "grad_norm": 0.1849307119846344, + "learning_rate": 4.102740937223696e-05, + "loss": 0.8914216613769531, + "step": 20300 + }, + { + "epoch": 18.0371599203716, + "grad_norm": 0.22315239906311035, + "learning_rate": 4.0983200707338645e-05, + "loss": 0.88252197265625, + "step": 20400 + }, + { + "epoch": 18.12563592125636, + "grad_norm": 0.18446321785449982, + "learning_rate": 4.093899204244032e-05, + "loss": 0.8717878723144531, + "step": 20500 + }, + { + "epoch": 18.214111922141118, + "grad_norm": 0.21541251242160797, + "learning_rate": 4.0894783377542e-05, + "loss": 0.8750727844238281, + "step": 20600 + }, + { + "epoch": 18.30258792302588, + "grad_norm": 0.22268827259540558, + "learning_rate": 4.085057471264368e-05, + "loss": 0.8760640716552734, + "step": 20700 + }, + { + "epoch": 18.39106392391064, + "grad_norm": 0.2207673043012619, + "learning_rate": 4.080636604774536e-05, + "loss": 0.876912841796875, + "step": 20800 + }, + { + "epoch": 18.4795399247954, + "grad_norm": 0.21988292038440704, + "learning_rate": 4.076215738284704e-05, + "loss": 0.8794302368164062, + "step": 20900 + }, + { + "epoch": 18.56801592568016, + "grad_norm": 0.2057323008775711, + "learning_rate": 4.0717948717948714e-05, + "loss": 0.8795650482177735, + "step": 21000 + }, + { + "epoch": 18.656491926564918, + "grad_norm": 0.19854794442653656, + "learning_rate": 4.0673740053050405e-05, + "loss": 0.8824103546142578, + "step": 21100 + }, + { + "epoch": 18.74496792744968, + "grad_norm": 0.2183123230934143, + "learning_rate": 4.062953138815208e-05, + "loss": 0.8792383575439453, + "step": 21200 + }, + { + "epoch": 18.83344392833444, + "grad_norm": 0.20326419174671173, + "learning_rate": 4.058532272325376e-05, + "loss": 0.8834226989746093, + "step": 21300 + }, + { + "epoch": 18.9219199292192, + "grad_norm": 0.20735788345336914, + "learning_rate": 4.054111405835544e-05, + "loss": 0.8820342254638672, + "step": 21400 + }, + { + "epoch": 19.009732360097324, + "grad_norm": 0.2023264467716217, + "learning_rate": 4.04973474801061e-05, + "loss": 0.8843944549560547, + "step": 21500 + }, + { + "epoch": 19.098208360982085, + "grad_norm": 0.21148885786533356, + "learning_rate": 4.045313881520778e-05, + "loss": 0.8647132110595703, + "step": 21600 + }, + { + "epoch": 19.186684361866842, + "grad_norm": 0.2251083254814148, + "learning_rate": 4.040893015030947e-05, + "loss": 0.866364974975586, + "step": 21700 + }, + { + "epoch": 19.275160362751603, + "grad_norm": 0.23524972796440125, + "learning_rate": 4.0364721485411144e-05, + "loss": 0.8736127471923828, + "step": 21800 + }, + { + "epoch": 19.363636363636363, + "grad_norm": 0.21772760152816772, + "learning_rate": 4.032051282051282e-05, + "loss": 0.8692568206787109, + "step": 21900 + }, + { + "epoch": 19.452112364521124, + "grad_norm": 0.2125358134508133, + "learning_rate": 4.0276304155614505e-05, + "loss": 0.8706926727294921, + "step": 22000 + }, + { + "epoch": 19.540588365405885, + "grad_norm": 0.22768475115299225, + "learning_rate": 4.023209549071618e-05, + "loss": 0.8674411010742188, + "step": 22100 + }, + { + "epoch": 19.629064366290642, + "grad_norm": 0.2211151272058487, + "learning_rate": 4.018788682581786e-05, + "loss": 0.8749802398681641, + "step": 22200 + }, + { + "epoch": 19.717540367175403, + "grad_norm": 0.21814538538455963, + "learning_rate": 4.014367816091954e-05, + "loss": 0.8754036712646485, + "step": 22300 + }, + { + "epoch": 19.806016368060163, + "grad_norm": 0.2030419558286667, + "learning_rate": 4.0099469496021226e-05, + "loss": 0.8714677429199219, + "step": 22400 + }, + { + "epoch": 19.894492368944924, + "grad_norm": 0.21472303569316864, + "learning_rate": 4.0055260831122904e-05, + "loss": 0.8727165222167969, + "step": 22500 + }, + { + "epoch": 19.982968369829685, + "grad_norm": 0.20911096036434174, + "learning_rate": 4.001105216622458e-05, + "loss": 0.8781427764892578, + "step": 22600 + }, + { + "epoch": 20.07078080070781, + "grad_norm": 0.2304856926202774, + "learning_rate": 3.9966843501326264e-05, + "loss": 0.8589347076416015, + "step": 22700 + }, + { + "epoch": 20.15925680159257, + "grad_norm": 0.23650145530700684, + "learning_rate": 3.992263483642794e-05, + "loss": 0.8598684692382812, + "step": 22800 + }, + { + "epoch": 20.247732802477326, + "grad_norm": 0.21773482859134674, + "learning_rate": 3.987842617152962e-05, + "loss": 0.8605601501464843, + "step": 22900 + }, + { + "epoch": 20.336208803362087, + "grad_norm": 0.2237112671136856, + "learning_rate": 3.98342175066313e-05, + "loss": 0.8617141723632813, + "step": 23000 + }, + { + "epoch": 20.424684804246848, + "grad_norm": 0.24452048540115356, + "learning_rate": 3.9790008841732986e-05, + "loss": 0.8622699737548828, + "step": 23100 + }, + { + "epoch": 20.51316080513161, + "grad_norm": 0.21587280929088593, + "learning_rate": 3.974580017683466e-05, + "loss": 0.8637493896484375, + "step": 23200 + }, + { + "epoch": 20.60163680601637, + "grad_norm": 0.2406671941280365, + "learning_rate": 3.970159151193634e-05, + "loss": 0.859559555053711, + "step": 23300 + }, + { + "epoch": 20.690112806901126, + "grad_norm": 0.22845898568630219, + "learning_rate": 3.9657382847038024e-05, + "loss": 0.8662923431396484, + "step": 23400 + }, + { + "epoch": 20.778588807785887, + "grad_norm": 0.24683597683906555, + "learning_rate": 3.96131741821397e-05, + "loss": 0.8673475646972656, + "step": 23500 + }, + { + "epoch": 20.867064808670648, + "grad_norm": 0.22459226846694946, + "learning_rate": 3.956896551724138e-05, + "loss": 0.8640863037109375, + "step": 23600 + }, + { + "epoch": 20.95554080955541, + "grad_norm": 0.23616963624954224, + "learning_rate": 3.952475685234306e-05, + "loss": 0.8678861236572266, + "step": 23700 + }, + { + "epoch": 21.043353240433532, + "grad_norm": 0.22973845899105072, + "learning_rate": 3.9480990274093725e-05, + "loss": 0.8580598449707031, + "step": 23800 + }, + { + "epoch": 21.131829241318293, + "grad_norm": 0.2424720972776413, + "learning_rate": 3.94367816091954e-05, + "loss": 0.8460955810546875, + "step": 23900 + }, + { + "epoch": 21.220305242203054, + "grad_norm": 0.2528146505355835, + "learning_rate": 3.9392572944297086e-05, + "loss": 0.8499996185302734, + "step": 24000 + }, + { + "epoch": 21.30878124308781, + "grad_norm": 0.2518126666545868, + "learning_rate": 3.9348364279398763e-05, + "loss": 0.8534349060058594, + "step": 24100 + }, + { + "epoch": 21.39725724397257, + "grad_norm": 0.2305818349123001, + "learning_rate": 3.930415561450044e-05, + "loss": 0.84900146484375, + "step": 24200 + }, + { + "epoch": 21.485733244857332, + "grad_norm": 0.25653600692749023, + "learning_rate": 3.9259946949602124e-05, + "loss": 0.8542990875244141, + "step": 24300 + }, + { + "epoch": 21.574209245742093, + "grad_norm": 0.2712801992893219, + "learning_rate": 3.92157382847038e-05, + "loss": 0.8558815002441407, + "step": 24400 + }, + { + "epoch": 21.662685246626854, + "grad_norm": 0.273328959941864, + "learning_rate": 3.9171529619805485e-05, + "loss": 0.8555754089355468, + "step": 24500 + }, + { + "epoch": 21.75116124751161, + "grad_norm": 0.2668614089488983, + "learning_rate": 3.912732095490716e-05, + "loss": 0.8587675476074219, + "step": 24600 + }, + { + "epoch": 21.83963724839637, + "grad_norm": 0.24395836889743805, + "learning_rate": 3.9083112290008846e-05, + "loss": 0.8572028350830078, + "step": 24700 + }, + { + "epoch": 21.928113249281132, + "grad_norm": 0.24808812141418457, + "learning_rate": 3.903890362511052e-05, + "loss": 0.8579219055175781, + "step": 24800 + }, + { + "epoch": 22.015925680159256, + "grad_norm": 0.2587817311286926, + "learning_rate": 3.89946949602122e-05, + "loss": 0.8512050628662109, + "step": 24900 + }, + { + "epoch": 22.104401681044017, + "grad_norm": 0.26175108551979065, + "learning_rate": 3.8950486295313884e-05, + "loss": 0.8361199188232422, + "step": 25000 + }, + { + "epoch": 22.192877681928778, + "grad_norm": 0.2715345025062561, + "learning_rate": 3.890627763041556e-05, + "loss": 0.8399204254150391, + "step": 25100 + }, + { + "epoch": 22.28135368281354, + "grad_norm": 0.27675682306289673, + "learning_rate": 3.8862068965517245e-05, + "loss": 0.8378430938720703, + "step": 25200 + }, + { + "epoch": 22.369829683698295, + "grad_norm": 0.26540565490722656, + "learning_rate": 3.881786030061892e-05, + "loss": 0.8397164916992188, + "step": 25300 + }, + { + "epoch": 22.458305684583056, + "grad_norm": 0.2754775285720825, + "learning_rate": 3.8773651635720606e-05, + "loss": 0.8450184631347656, + "step": 25400 + }, + { + "epoch": 22.546781685467817, + "grad_norm": 0.2393341213464737, + "learning_rate": 3.872944297082228e-05, + "loss": 0.8427618408203125, + "step": 25500 + }, + { + "epoch": 22.635257686352578, + "grad_norm": 0.23895791172981262, + "learning_rate": 3.868523430592396e-05, + "loss": 0.8457352447509766, + "step": 25600 + }, + { + "epoch": 22.72373368723734, + "grad_norm": 0.26955941319465637, + "learning_rate": 3.8641025641025644e-05, + "loss": 0.849469223022461, + "step": 25700 + }, + { + "epoch": 22.812209688122095, + "grad_norm": 0.23746059834957123, + "learning_rate": 3.859681697612732e-05, + "loss": 0.8469708251953125, + "step": 25800 + }, + { + "epoch": 22.900685689006856, + "grad_norm": 0.2649519145488739, + "learning_rate": 3.8552608311229005e-05, + "loss": 0.849559326171875, + "step": 25900 + }, + { + "epoch": 22.989161689891617, + "grad_norm": 0.27285081148147583, + "learning_rate": 3.850839964633068e-05, + "loss": 0.8485184478759765, + "step": 26000 + }, + { + "epoch": 23.07697412076974, + "grad_norm": 0.27895936369895935, + "learning_rate": 3.8464633068081345e-05, + "loss": 0.8252901458740234, + "step": 26100 + }, + { + "epoch": 23.1654501216545, + "grad_norm": 0.2652367055416107, + "learning_rate": 3.842042440318302e-05, + "loss": 0.8263906097412109, + "step": 26200 + }, + { + "epoch": 23.253926122539262, + "grad_norm": 0.2835598886013031, + "learning_rate": 3.8376215738284706e-05, + "loss": 0.8287677001953125, + "step": 26300 + }, + { + "epoch": 23.342402123424023, + "grad_norm": 0.2834433615207672, + "learning_rate": 3.833200707338638e-05, + "loss": 0.8309012603759766, + "step": 26400 + }, + { + "epoch": 23.43087812430878, + "grad_norm": 0.2998100817203522, + "learning_rate": 3.828779840848807e-05, + "loss": 0.8311166381835937, + "step": 26500 + }, + { + "epoch": 23.51935412519354, + "grad_norm": 0.29382187128067017, + "learning_rate": 3.8243589743589744e-05, + "loss": 0.8325238037109375, + "step": 26600 + }, + { + "epoch": 23.6078301260783, + "grad_norm": 0.2950701415538788, + "learning_rate": 3.819938107869143e-05, + "loss": 0.8368535614013672, + "step": 26700 + }, + { + "epoch": 23.696306126963062, + "grad_norm": 0.287801057100296, + "learning_rate": 3.8155172413793105e-05, + "loss": 0.833930435180664, + "step": 26800 + }, + { + "epoch": 23.784782127847823, + "grad_norm": 0.33100536465644836, + "learning_rate": 3.811096374889478e-05, + "loss": 0.8386001586914062, + "step": 26900 + }, + { + "epoch": 23.87325812873258, + "grad_norm": 0.2911369800567627, + "learning_rate": 3.8066755083996466e-05, + "loss": 0.8410533905029297, + "step": 27000 + }, + { + "epoch": 23.96173412961734, + "grad_norm": 0.26980099081993103, + "learning_rate": 3.802254641909814e-05, + "loss": 0.8360975646972656, + "step": 27100 + }, + { + "epoch": 24.049546560495465, + "grad_norm": 0.3001425862312317, + "learning_rate": 3.797833775419983e-05, + "loss": 0.8234864044189453, + "step": 27200 + }, + { + "epoch": 24.138022561380225, + "grad_norm": 0.27798378467559814, + "learning_rate": 3.7934129089301504e-05, + "loss": 0.8135331726074219, + "step": 27300 + }, + { + "epoch": 24.226498562264986, + "grad_norm": 0.2736954689025879, + "learning_rate": 3.788992042440319e-05, + "loss": 0.8113047027587891, + "step": 27400 + }, + { + "epoch": 24.314974563149747, + "grad_norm": 0.29235804080963135, + "learning_rate": 3.7845711759504865e-05, + "loss": 0.8171870422363281, + "step": 27500 + }, + { + "epoch": 24.403450564034507, + "grad_norm": 0.2878233790397644, + "learning_rate": 3.780150309460654e-05, + "loss": 0.8170029449462891, + "step": 27600 + }, + { + "epoch": 24.491926564919265, + "grad_norm": 0.31602925062179565, + "learning_rate": 3.7757294429708226e-05, + "loss": 0.8223928833007812, + "step": 27700 + }, + { + "epoch": 24.580402565804025, + "grad_norm": 0.3145372271537781, + "learning_rate": 3.77130857648099e-05, + "loss": 0.8257860565185546, + "step": 27800 + }, + { + "epoch": 24.668878566688786, + "grad_norm": 0.30716991424560547, + "learning_rate": 3.7668877099911587e-05, + "loss": 0.8240725708007812, + "step": 27900 + }, + { + "epoch": 24.757354567573547, + "grad_norm": 0.28368160128593445, + "learning_rate": 3.7624668435013264e-05, + "loss": 0.825384521484375, + "step": 28000 + }, + { + "epoch": 24.845830568458307, + "grad_norm": 0.2867664694786072, + "learning_rate": 3.758045977011495e-05, + "loss": 0.8270760345458984, + "step": 28100 + }, + { + "epoch": 24.934306569343065, + "grad_norm": 0.28817129135131836, + "learning_rate": 3.7536251105216624e-05, + "loss": 0.8286974334716797, + "step": 28200 + }, + { + "epoch": 25.02211900022119, + "grad_norm": 0.3106354773044586, + "learning_rate": 3.749248452696729e-05, + "loss": 0.82120849609375, + "step": 28300 + }, + { + "epoch": 25.11059500110595, + "grad_norm": 0.3304692506790161, + "learning_rate": 3.7448275862068965e-05, + "loss": 0.8016901397705078, + "step": 28400 + }, + { + "epoch": 25.19907100199071, + "grad_norm": 0.3065616488456726, + "learning_rate": 3.740406719717064e-05, + "loss": 0.8027448272705078, + "step": 28500 + }, + { + "epoch": 25.28754700287547, + "grad_norm": 0.3456852436065674, + "learning_rate": 3.735985853227233e-05, + "loss": 0.8046049499511718, + "step": 28600 + }, + { + "epoch": 25.37602300376023, + "grad_norm": 0.3011663556098938, + "learning_rate": 3.731564986737401e-05, + "loss": 0.8079199981689453, + "step": 28700 + }, + { + "epoch": 25.46449900464499, + "grad_norm": 0.3659413158893585, + "learning_rate": 3.7271441202475687e-05, + "loss": 0.8079922485351563, + "step": 28800 + }, + { + "epoch": 25.55297500552975, + "grad_norm": 0.3281838595867157, + "learning_rate": 3.7227232537577364e-05, + "loss": 0.8134046173095704, + "step": 28900 + }, + { + "epoch": 25.64145100641451, + "grad_norm": 0.3106602132320404, + "learning_rate": 3.718302387267905e-05, + "loss": 0.8104205322265625, + "step": 29000 + }, + { + "epoch": 25.72992700729927, + "grad_norm": 0.3320154845714569, + "learning_rate": 3.7138815207780725e-05, + "loss": 0.8142304992675782, + "step": 29100 + }, + { + "epoch": 25.81840300818403, + "grad_norm": 0.3355977535247803, + "learning_rate": 3.70946065428824e-05, + "loss": 0.8125243377685547, + "step": 29200 + }, + { + "epoch": 25.90687900906879, + "grad_norm": 0.3472290635108948, + "learning_rate": 3.7050397877984085e-05, + "loss": 0.8146660614013672, + "step": 29300 + }, + { + "epoch": 25.99535500995355, + "grad_norm": 0.31780678033828735, + "learning_rate": 3.700618921308577e-05, + "loss": 0.8169705200195313, + "step": 29400 + }, + { + "epoch": 26.083167440831673, + "grad_norm": 0.3046151101589203, + "learning_rate": 3.6961980548187446e-05, + "loss": 0.7894915008544922, + "step": 29500 + }, + { + "epoch": 26.171643441716434, + "grad_norm": 0.3560829162597656, + "learning_rate": 3.6917771883289123e-05, + "loss": 0.7867289733886719, + "step": 29600 + }, + { + "epoch": 26.260119442601194, + "grad_norm": 0.33036884665489197, + "learning_rate": 3.687356321839081e-05, + "loss": 0.7914912414550781, + "step": 29700 + }, + { + "epoch": 26.348595443485955, + "grad_norm": 0.3302215039730072, + "learning_rate": 3.6829354553492484e-05, + "loss": 0.7926998901367187, + "step": 29800 + }, + { + "epoch": 26.437071444370716, + "grad_norm": 0.33766239881515503, + "learning_rate": 3.678514588859416e-05, + "loss": 0.7958551788330078, + "step": 29900 + }, + { + "epoch": 26.525547445255473, + "grad_norm": 0.34900912642478943, + "learning_rate": 3.6740937223695845e-05, + "loss": 0.7958287811279297, + "step": 30000 + }, + { + "epoch": 26.614023446140234, + "grad_norm": 0.3290475010871887, + "learning_rate": 3.669672855879753e-05, + "loss": 0.7994923400878906, + "step": 30100 + }, + { + "epoch": 26.702499447024994, + "grad_norm": 0.3304896950721741, + "learning_rate": 3.6652519893899206e-05, + "loss": 0.8000531005859375, + "step": 30200 + }, + { + "epoch": 26.790975447909755, + "grad_norm": 0.32132837176322937, + "learning_rate": 3.660831122900088e-05, + "loss": 0.8006639862060547, + "step": 30300 + }, + { + "epoch": 26.879451448794516, + "grad_norm": 0.3341081142425537, + "learning_rate": 3.656410256410257e-05, + "loss": 0.8037942504882812, + "step": 30400 + }, + { + "epoch": 26.967927449679273, + "grad_norm": 0.3406025171279907, + "learning_rate": 3.6519893899204244e-05, + "loss": 0.8009793853759766, + "step": 30500 + }, + { + "epoch": 27.0557398805574, + "grad_norm": 0.3396868109703064, + "learning_rate": 3.647568523430592e-05, + "loss": 0.7846424865722657, + "step": 30600 + }, + { + "epoch": 27.144215881442157, + "grad_norm": 0.33319470286369324, + "learning_rate": 3.6431476569407605e-05, + "loss": 0.7724665832519532, + "step": 30700 + }, + { + "epoch": 27.232691882326918, + "grad_norm": 0.38071826100349426, + "learning_rate": 3.638726790450929e-05, + "loss": 0.7791647338867187, + "step": 30800 + }, + { + "epoch": 27.32116788321168, + "grad_norm": 0.3640372157096863, + "learning_rate": 3.6343059239610966e-05, + "loss": 0.778485107421875, + "step": 30900 + }, + { + "epoch": 27.40964388409644, + "grad_norm": 0.34701183438301086, + "learning_rate": 3.629885057471264e-05, + "loss": 0.7812682342529297, + "step": 31000 + }, + { + "epoch": 27.4981198849812, + "grad_norm": 0.34723395109176636, + "learning_rate": 3.625464190981433e-05, + "loss": 0.7816720581054688, + "step": 31100 + }, + { + "epoch": 27.586595885865957, + "grad_norm": 0.3967572748661041, + "learning_rate": 3.6210433244916004e-05, + "loss": 0.7825845336914062, + "step": 31200 + }, + { + "epoch": 27.675071886750718, + "grad_norm": 0.36156365275382996, + "learning_rate": 3.616622458001768e-05, + "loss": 0.7875003814697266, + "step": 31300 + }, + { + "epoch": 27.76354788763548, + "grad_norm": 0.37152451276779175, + "learning_rate": 3.6122015915119365e-05, + "loss": 0.7848563385009766, + "step": 31400 + }, + { + "epoch": 27.85202388852024, + "grad_norm": 0.3751819431781769, + "learning_rate": 3.607780725022105e-05, + "loss": 0.7901625061035156, + "step": 31500 + }, + { + "epoch": 27.940499889405, + "grad_norm": 0.32409200072288513, + "learning_rate": 3.6033598585322726e-05, + "loss": 0.7916508483886718, + "step": 31600 + }, + { + "epoch": 28.028312320283124, + "grad_norm": 0.36621779203414917, + "learning_rate": 3.59893899204244e-05, + "loss": 0.7814656066894531, + "step": 31700 + }, + { + "epoch": 28.116788321167885, + "grad_norm": 0.35782715678215027, + "learning_rate": 3.594518125552609e-05, + "loss": 0.7565266418457032, + "step": 31800 + }, + { + "epoch": 28.205264322052642, + "grad_norm": 0.34983065724372864, + "learning_rate": 3.5900972590627764e-05, + "loss": 0.7589649963378906, + "step": 31900 + }, + { + "epoch": 28.293740322937403, + "grad_norm": 0.36476004123687744, + "learning_rate": 3.585676392572945e-05, + "loss": 0.7618669891357421, + "step": 32000 + }, + { + "epoch": 28.382216323822163, + "grad_norm": 0.3663191795349121, + "learning_rate": 3.5812555260831125e-05, + "loss": 0.768099136352539, + "step": 32100 + }, + { + "epoch": 28.470692324706924, + "grad_norm": 0.3572807312011719, + "learning_rate": 3.576834659593281e-05, + "loss": 0.7697807312011719, + "step": 32200 + }, + { + "epoch": 28.559168325591685, + "grad_norm": 0.39800935983657837, + "learning_rate": 3.5724580017683465e-05, + "loss": 0.7714015960693359, + "step": 32300 + }, + { + "epoch": 28.647644326476442, + "grad_norm": 0.3792218863964081, + "learning_rate": 3.568037135278515e-05, + "loss": 0.7737385559082032, + "step": 32400 + }, + { + "epoch": 28.736120327361203, + "grad_norm": 0.4109075665473938, + "learning_rate": 3.5636162687886826e-05, + "loss": 0.7772123718261719, + "step": 32500 + }, + { + "epoch": 28.824596328245963, + "grad_norm": 0.40446004271507263, + "learning_rate": 3.55919540229885e-05, + "loss": 0.7722319030761718, + "step": 32600 + }, + { + "epoch": 28.913072329130724, + "grad_norm": 0.39553946256637573, + "learning_rate": 3.554774535809019e-05, + "loss": 0.7767266082763672, + "step": 32700 + }, + { + "epoch": 29.000884760008848, + "grad_norm": 0.3675474226474762, + "learning_rate": 3.550397877984085e-05, + "loss": 0.7800326538085938, + "step": 32800 + }, + { + "epoch": 29.08936076089361, + "grad_norm": 0.37354156374931335, + "learning_rate": 3.5459770114942534e-05, + "loss": 0.7407066345214843, + "step": 32900 + }, + { + "epoch": 29.17783676177837, + "grad_norm": 0.3970542550086975, + "learning_rate": 3.541556145004421e-05, + "loss": 0.7467523956298828, + "step": 33000 + }, + { + "epoch": 29.266312762663127, + "grad_norm": 0.3625730872154236, + "learning_rate": 3.537135278514589e-05, + "loss": 0.7477723693847657, + "step": 33100 + }, + { + "epoch": 29.354788763547887, + "grad_norm": 0.37132611870765686, + "learning_rate": 3.532714412024757e-05, + "loss": 0.7502822875976562, + "step": 33200 + }, + { + "epoch": 29.443264764432648, + "grad_norm": 0.3668833374977112, + "learning_rate": 3.528293545534925e-05, + "loss": 0.7570280456542968, + "step": 33300 + }, + { + "epoch": 29.53174076531741, + "grad_norm": 0.404186874628067, + "learning_rate": 3.523872679045093e-05, + "loss": 0.7576876831054687, + "step": 33400 + }, + { + "epoch": 29.62021676620217, + "grad_norm": 0.407461017370224, + "learning_rate": 3.519451812555261e-05, + "loss": 0.7606333923339844, + "step": 33500 + }, + { + "epoch": 29.708692767086927, + "grad_norm": 0.4091641902923584, + "learning_rate": 3.5150309460654294e-05, + "loss": 0.7598370361328125, + "step": 33600 + }, + { + "epoch": 29.797168767971687, + "grad_norm": 0.36642369627952576, + "learning_rate": 3.510610079575597e-05, + "loss": 0.7617308807373047, + "step": 33700 + }, + { + "epoch": 29.885644768856448, + "grad_norm": 0.3767990171909332, + "learning_rate": 3.506189213085765e-05, + "loss": 0.760002670288086, + "step": 33800 + }, + { + "epoch": 29.97412076974121, + "grad_norm": 0.3992450535297394, + "learning_rate": 3.5017683465959325e-05, + "loss": 0.7659886932373047, + "step": 33900 + }, + { + "epoch": 30.061933200619332, + "grad_norm": 0.38657036423683167, + "learning_rate": 3.497347480106101e-05, + "loss": 0.7397030639648438, + "step": 34000 + }, + { + "epoch": 30.150409201504093, + "grad_norm": 0.40928229689598083, + "learning_rate": 3.492926613616269e-05, + "loss": 0.7280159759521484, + "step": 34100 + }, + { + "epoch": 30.23888520238885, + "grad_norm": 0.41609957814216614, + "learning_rate": 3.488505747126437e-05, + "loss": 0.7327291107177735, + "step": 34200 + }, + { + "epoch": 30.32736120327361, + "grad_norm": 0.3990429639816284, + "learning_rate": 3.4840848806366047e-05, + "loss": 0.7359205627441406, + "step": 34300 + }, + { + "epoch": 30.41583720415837, + "grad_norm": 0.40403324365615845, + "learning_rate": 3.479664014146773e-05, + "loss": 0.73650390625, + "step": 34400 + }, + { + "epoch": 30.504313205043132, + "grad_norm": 0.42696642875671387, + "learning_rate": 3.475243147656941e-05, + "loss": 0.7416681671142578, + "step": 34500 + }, + { + "epoch": 30.592789205927893, + "grad_norm": 0.3891199231147766, + "learning_rate": 3.4708222811671085e-05, + "loss": 0.742286605834961, + "step": 34600 + }, + { + "epoch": 30.68126520681265, + "grad_norm": 0.3660706877708435, + "learning_rate": 3.466401414677277e-05, + "loss": 0.7444020080566406, + "step": 34700 + }, + { + "epoch": 30.76974120769741, + "grad_norm": 0.43280747532844543, + "learning_rate": 3.461980548187445e-05, + "loss": 0.7461125183105469, + "step": 34800 + }, + { + "epoch": 30.85821720858217, + "grad_norm": 0.4279727041721344, + "learning_rate": 3.457559681697613e-05, + "loss": 0.7497645568847656, + "step": 34900 + }, + { + "epoch": 30.946693209466932, + "grad_norm": 0.4162921905517578, + "learning_rate": 3.4531388152077806e-05, + "loss": 0.7478341674804687, + "step": 35000 + }, + { + "epoch": 31.034505640345056, + "grad_norm": 0.4011857211589813, + "learning_rate": 3.448762157382847e-05, + "loss": 0.7373168182373047, + "step": 35100 + }, + { + "epoch": 31.122981641229817, + "grad_norm": 0.42476192116737366, + "learning_rate": 3.444341290893015e-05, + "loss": 0.714128646850586, + "step": 35200 + }, + { + "epoch": 31.211457642114578, + "grad_norm": 0.4272063672542572, + "learning_rate": 3.439920424403183e-05, + "loss": 0.717328872680664, + "step": 35300 + }, + { + "epoch": 31.299933642999335, + "grad_norm": 0.39419060945510864, + "learning_rate": 3.4354995579133514e-05, + "loss": 0.7182811737060547, + "step": 35400 + }, + { + "epoch": 31.388409643884096, + "grad_norm": 0.4092519283294678, + "learning_rate": 3.431078691423519e-05, + "loss": 0.7223808288574218, + "step": 35500 + }, + { + "epoch": 31.476885644768856, + "grad_norm": 0.45683449506759644, + "learning_rate": 3.4266578249336875e-05, + "loss": 0.7236460876464844, + "step": 35600 + }, + { + "epoch": 31.565361645653617, + "grad_norm": 0.4914647936820984, + "learning_rate": 3.422236958443855e-05, + "loss": 0.728529052734375, + "step": 35700 + }, + { + "epoch": 31.653837646538378, + "grad_norm": 0.439372718334198, + "learning_rate": 3.417816091954023e-05, + "loss": 0.7269135284423828, + "step": 35800 + }, + { + "epoch": 31.742313647423135, + "grad_norm": 0.488553911447525, + "learning_rate": 3.413395225464191e-05, + "loss": 0.7319352722167969, + "step": 35900 + }, + { + "epoch": 31.830789648307896, + "grad_norm": 0.43236035108566284, + "learning_rate": 3.408974358974359e-05, + "loss": 0.7336878204345703, + "step": 36000 + }, + { + "epoch": 31.919265649192656, + "grad_norm": 0.42669814825057983, + "learning_rate": 3.4045534924845274e-05, + "loss": 0.7357192993164062, + "step": 36100 + }, + { + "epoch": 32.007078080070784, + "grad_norm": 0.40464460849761963, + "learning_rate": 3.400132625994695e-05, + "loss": 0.7324215698242188, + "step": 36200 + }, + { + "epoch": 32.09555408095554, + "grad_norm": 0.4362545311450958, + "learning_rate": 3.3957117595048635e-05, + "loss": 0.6976793670654297, + "step": 36300 + }, + { + "epoch": 32.1840300818403, + "grad_norm": 0.46484723687171936, + "learning_rate": 3.391290893015031e-05, + "loss": 0.6972021484375, + "step": 36400 + }, + { + "epoch": 32.27250608272506, + "grad_norm": 0.43313083052635193, + "learning_rate": 3.386870026525199e-05, + "loss": 0.7049392700195313, + "step": 36500 + }, + { + "epoch": 32.36098208360982, + "grad_norm": 0.437752366065979, + "learning_rate": 3.3824491600353666e-05, + "loss": 0.7091526794433594, + "step": 36600 + }, + { + "epoch": 32.44945808449458, + "grad_norm": 0.44550085067749023, + "learning_rate": 3.378028293545535e-05, + "loss": 0.7121316528320313, + "step": 36700 + }, + { + "epoch": 32.53793408537934, + "grad_norm": 0.46052590012550354, + "learning_rate": 3.3736074270557034e-05, + "loss": 0.7150274658203125, + "step": 36800 + }, + { + "epoch": 32.6264100862641, + "grad_norm": 0.4344913065433502, + "learning_rate": 3.369186560565871e-05, + "loss": 0.7130059814453125, + "step": 36900 + }, + { + "epoch": 32.71488608714886, + "grad_norm": 0.45924630761146545, + "learning_rate": 3.364765694076039e-05, + "loss": 0.7156332397460937, + "step": 37000 + }, + { + "epoch": 32.80336208803362, + "grad_norm": 0.41177231073379517, + "learning_rate": 3.360344827586207e-05, + "loss": 0.7184346008300782, + "step": 37100 + }, + { + "epoch": 32.891838088918384, + "grad_norm": 0.44688835740089417, + "learning_rate": 3.355923961096375e-05, + "loss": 0.7201016235351563, + "step": 37200 + }, + { + "epoch": 32.980314089803144, + "grad_norm": 0.4971197545528412, + "learning_rate": 3.3515030946065426e-05, + "loss": 0.7191078186035156, + "step": 37300 + }, + { + "epoch": 33.06812652068127, + "grad_norm": 0.47201091051101685, + "learning_rate": 3.347126436781609e-05, + "loss": 0.6914530944824219, + "step": 37400 + }, + { + "epoch": 33.15660252156602, + "grad_norm": 0.4473711848258972, + "learning_rate": 3.342705570291777e-05, + "loss": 0.6855306243896484, + "step": 37500 + }, + { + "epoch": 33.24507852245078, + "grad_norm": 0.4745553135871887, + "learning_rate": 3.338284703801946e-05, + "loss": 0.6888325500488282, + "step": 37600 + }, + { + "epoch": 33.33355452333554, + "grad_norm": 0.45796144008636475, + "learning_rate": 3.3338638373121134e-05, + "loss": 0.6924916076660156, + "step": 37700 + }, + { + "epoch": 33.422030524220304, + "grad_norm": 0.47769099473953247, + "learning_rate": 3.329442970822281e-05, + "loss": 0.6937997436523438, + "step": 37800 + }, + { + "epoch": 33.510506525105065, + "grad_norm": 0.4637518525123596, + "learning_rate": 3.3250221043324495e-05, + "loss": 0.6975637817382813, + "step": 37900 + }, + { + "epoch": 33.598982525989825, + "grad_norm": 0.47370946407318115, + "learning_rate": 3.320601237842617e-05, + "loss": 0.6985407257080078, + "step": 38000 + }, + { + "epoch": 33.687458526874586, + "grad_norm": 0.467692106962204, + "learning_rate": 3.316180371352785e-05, + "loss": 0.7032517242431641, + "step": 38100 + }, + { + "epoch": 33.77593452775935, + "grad_norm": 0.4691486060619354, + "learning_rate": 3.311759504862953e-05, + "loss": 0.7019402313232422, + "step": 38200 + }, + { + "epoch": 33.86441052864411, + "grad_norm": 0.465666264295578, + "learning_rate": 3.307338638373122e-05, + "loss": 0.7065095520019531, + "step": 38300 + }, + { + "epoch": 33.95288652952887, + "grad_norm": 0.4870339632034302, + "learning_rate": 3.3029177718832894e-05, + "loss": 0.7060601043701172, + "step": 38400 + }, + { + "epoch": 34.04069896040699, + "grad_norm": 0.46102386713027954, + "learning_rate": 3.298496905393457e-05, + "loss": 0.6895645141601563, + "step": 38500 + }, + { + "epoch": 34.12917496129175, + "grad_norm": 0.4717739522457123, + "learning_rate": 3.2940760389036255e-05, + "loss": 0.6683721160888672, + "step": 38600 + }, + { + "epoch": 34.217650962176506, + "grad_norm": 0.47995516657829285, + "learning_rate": 3.289655172413793e-05, + "loss": 0.67727294921875, + "step": 38700 + }, + { + "epoch": 34.30612696306127, + "grad_norm": 0.4676993191242218, + "learning_rate": 3.2852343059239616e-05, + "loss": 0.6742596435546875, + "step": 38800 + }, + { + "epoch": 34.39460296394603, + "grad_norm": 0.4986591935157776, + "learning_rate": 3.280813439434129e-05, + "loss": 0.6811554718017578, + "step": 38900 + }, + { + "epoch": 34.48307896483079, + "grad_norm": 0.49108394980430603, + "learning_rate": 3.2763925729442977e-05, + "loss": 0.6826177215576172, + "step": 39000 + }, + { + "epoch": 34.57155496571555, + "grad_norm": 0.46544989943504333, + "learning_rate": 3.2719717064544654e-05, + "loss": 0.6843925476074219, + "step": 39100 + }, + { + "epoch": 34.66003096660031, + "grad_norm": 0.4714086055755615, + "learning_rate": 3.267550839964633e-05, + "loss": 0.6843089294433594, + "step": 39200 + }, + { + "epoch": 34.74850696748507, + "grad_norm": 0.4726520776748657, + "learning_rate": 3.263129973474801e-05, + "loss": 0.687828140258789, + "step": 39300 + }, + { + "epoch": 34.83698296836983, + "grad_norm": 0.5056101083755493, + "learning_rate": 3.258709106984969e-05, + "loss": 0.6943804168701172, + "step": 39400 + }, + { + "epoch": 34.92545896925459, + "grad_norm": 0.5143911242485046, + "learning_rate": 3.2542882404951375e-05, + "loss": 0.6947840118408203, + "step": 39500 + }, + { + "epoch": 35.013271400132716, + "grad_norm": 0.4712352752685547, + "learning_rate": 3.249867374005305e-05, + "loss": 0.6877326965332031, + "step": 39600 + }, + { + "epoch": 35.10174740101748, + "grad_norm": 0.5000380873680115, + "learning_rate": 3.2454465075154736e-05, + "loss": 0.6556487274169922, + "step": 39700 + }, + { + "epoch": 35.19022340190224, + "grad_norm": 0.5022478699684143, + "learning_rate": 3.2410256410256413e-05, + "loss": 0.6607290649414063, + "step": 39800 + }, + { + "epoch": 35.27869940278699, + "grad_norm": 0.511082112789154, + "learning_rate": 3.236604774535809e-05, + "loss": 0.6585157775878906, + "step": 39900 + }, + { + "epoch": 35.36717540367175, + "grad_norm": 0.45338326692581177, + "learning_rate": 3.232183908045977e-05, + "loss": 0.6670406341552735, + "step": 40000 + }, + { + "epoch": 35.45565140455651, + "grad_norm": 0.47589078545570374, + "learning_rate": 3.227763041556145e-05, + "loss": 0.6654150390625, + "step": 40100 + }, + { + "epoch": 35.54412740544127, + "grad_norm": 0.5111287236213684, + "learning_rate": 3.2233421750663135e-05, + "loss": 0.6706926727294922, + "step": 40200 + }, + { + "epoch": 35.632603406326034, + "grad_norm": 0.48615771532058716, + "learning_rate": 3.218921308576481e-05, + "loss": 0.6724550628662109, + "step": 40300 + }, + { + "epoch": 35.721079407210794, + "grad_norm": 0.5141739845275879, + "learning_rate": 3.214500442086649e-05, + "loss": 0.674487075805664, + "step": 40400 + }, + { + "epoch": 35.809555408095555, + "grad_norm": 0.512373149394989, + "learning_rate": 3.210079575596817e-05, + "loss": 0.6809010314941406, + "step": 40500 + }, + { + "epoch": 35.898031408980316, + "grad_norm": 0.5156219005584717, + "learning_rate": 3.205658709106985e-05, + "loss": 0.6783308410644531, + "step": 40600 + }, + { + "epoch": 35.98650740986508, + "grad_norm": 0.5266398191452026, + "learning_rate": 3.201237842617153e-05, + "loss": 0.6796981811523437, + "step": 40700 + }, + { + "epoch": 36.0743198407432, + "grad_norm": 0.5198646783828735, + "learning_rate": 3.196861184792219e-05, + "loss": 0.648563232421875, + "step": 40800 + }, + { + "epoch": 36.16279584162796, + "grad_norm": 0.4699224829673767, + "learning_rate": 3.1924403183023874e-05, + "loss": 0.6464600372314453, + "step": 40900 + }, + { + "epoch": 36.25127184251272, + "grad_norm": 0.5014195442199707, + "learning_rate": 3.188019451812556e-05, + "loss": 0.6471477508544922, + "step": 41000 + }, + { + "epoch": 36.339747843397475, + "grad_norm": 0.5231509804725647, + "learning_rate": 3.1835985853227235e-05, + "loss": 0.6519639587402344, + "step": 41100 + }, + { + "epoch": 36.428223844282236, + "grad_norm": 0.4843427538871765, + "learning_rate": 3.179177718832891e-05, + "loss": 0.6523241424560546, + "step": 41200 + }, + { + "epoch": 36.516699845167, + "grad_norm": 0.4956904351711273, + "learning_rate": 3.1747568523430596e-05, + "loss": 0.6547152709960937, + "step": 41300 + }, + { + "epoch": 36.60517584605176, + "grad_norm": 0.5103031396865845, + "learning_rate": 3.170335985853227e-05, + "loss": 0.6602716827392578, + "step": 41400 + }, + { + "epoch": 36.69365184693652, + "grad_norm": 0.5028578042984009, + "learning_rate": 3.165915119363395e-05, + "loss": 0.6617116546630859, + "step": 41500 + }, + { + "epoch": 36.78212784782128, + "grad_norm": 0.4997723698616028, + "learning_rate": 3.1614942528735634e-05, + "loss": 0.6632434844970703, + "step": 41600 + }, + { + "epoch": 36.87060384870604, + "grad_norm": 0.5246814489364624, + "learning_rate": 3.157073386383732e-05, + "loss": 0.6632743835449219, + "step": 41700 + }, + { + "epoch": 36.9590798495908, + "grad_norm": 0.5308569073677063, + "learning_rate": 3.1526525198938995e-05, + "loss": 0.6639631652832031, + "step": 41800 + }, + { + "epoch": 37.046892280468924, + "grad_norm": 0.49218234419822693, + "learning_rate": 3.148231653404067e-05, + "loss": 0.6452173614501953, + "step": 41900 + }, + { + "epoch": 37.135368281353685, + "grad_norm": 0.4680822491645813, + "learning_rate": 3.143810786914235e-05, + "loss": 0.6319191360473633, + "step": 42000 + }, + { + "epoch": 37.223844282238446, + "grad_norm": 0.4810407757759094, + "learning_rate": 3.139389920424403e-05, + "loss": 0.6338667297363281, + "step": 42100 + }, + { + "epoch": 37.3123202831232, + "grad_norm": 0.545889139175415, + "learning_rate": 3.134969053934571e-05, + "loss": 0.6395709228515625, + "step": 42200 + }, + { + "epoch": 37.40079628400796, + "grad_norm": 0.5600217580795288, + "learning_rate": 3.1305481874447394e-05, + "loss": 0.6406965637207032, + "step": 42300 + }, + { + "epoch": 37.48927228489272, + "grad_norm": 0.5517903566360474, + "learning_rate": 3.126127320954908e-05, + "loss": 0.6428462982177734, + "step": 42400 + }, + { + "epoch": 37.57774828577748, + "grad_norm": 0.49925389885902405, + "learning_rate": 3.1217064544650755e-05, + "loss": 0.6470170593261719, + "step": 42500 + }, + { + "epoch": 37.66622428666224, + "grad_norm": 0.4698370397090912, + "learning_rate": 3.117285587975243e-05, + "loss": 0.6477708435058593, + "step": 42600 + }, + { + "epoch": 37.754700287547, + "grad_norm": 0.5349763035774231, + "learning_rate": 3.112864721485411e-05, + "loss": 0.6515216827392578, + "step": 42700 + }, + { + "epoch": 37.84317628843176, + "grad_norm": 0.5066236853599548, + "learning_rate": 3.108443854995579e-05, + "loss": 0.6522242736816406, + "step": 42800 + }, + { + "epoch": 37.931652289316524, + "grad_norm": 0.5211920142173767, + "learning_rate": 3.104022988505747e-05, + "loss": 0.6515906524658203, + "step": 42900 + }, + { + "epoch": 38.01946472019465, + "grad_norm": 0.5003405213356018, + "learning_rate": 3.099646330680814e-05, + "loss": 0.6448411560058593, + "step": 43000 + }, + { + "epoch": 38.10794072107941, + "grad_norm": 0.5215827226638794, + "learning_rate": 3.095225464190982e-05, + "loss": 0.619310417175293, + "step": 43100 + }, + { + "epoch": 38.19641672196417, + "grad_norm": 0.4768511950969696, + "learning_rate": 3.0908045977011494e-05, + "loss": 0.6210311126708984, + "step": 43200 + }, + { + "epoch": 38.28489272284893, + "grad_norm": 0.5353608727455139, + "learning_rate": 3.086383731211318e-05, + "loss": 0.6246475601196289, + "step": 43300 + }, + { + "epoch": 38.373368723733684, + "grad_norm": 0.5182030200958252, + "learning_rate": 3.0819628647214855e-05, + "loss": 0.6273392486572266, + "step": 43400 + }, + { + "epoch": 38.461844724618445, + "grad_norm": 0.500842273235321, + "learning_rate": 3.077541998231653e-05, + "loss": 0.6327916717529297, + "step": 43500 + }, + { + "epoch": 38.550320725503205, + "grad_norm": 0.5168542861938477, + "learning_rate": 3.0731211317418216e-05, + "loss": 0.6323520278930664, + "step": 43600 + }, + { + "epoch": 38.638796726387966, + "grad_norm": 0.5403733253479004, + "learning_rate": 3.06870026525199e-05, + "loss": 0.6338058090209961, + "step": 43700 + }, + { + "epoch": 38.72727272727273, + "grad_norm": 0.5119574666023254, + "learning_rate": 3.064279398762158e-05, + "loss": 0.6391129302978515, + "step": 43800 + }, + { + "epoch": 38.81574872815749, + "grad_norm": 0.5214455127716064, + "learning_rate": 3.0598585322723254e-05, + "loss": 0.6368292999267579, + "step": 43900 + }, + { + "epoch": 38.90422472904225, + "grad_norm": 0.5679435133934021, + "learning_rate": 3.055437665782494e-05, + "loss": 0.6414280700683593, + "step": 44000 + }, + { + "epoch": 38.99270072992701, + "grad_norm": 0.5442212820053101, + "learning_rate": 3.0510167992926615e-05, + "loss": 0.6446417999267579, + "step": 44100 + }, + { + "epoch": 39.08051316080513, + "grad_norm": 0.46873417496681213, + "learning_rate": 3.0465959328028292e-05, + "loss": 0.6127575302124023, + "step": 44200 + }, + { + "epoch": 39.16898916168989, + "grad_norm": 0.5402541756629944, + "learning_rate": 3.042175066312998e-05, + "loss": 0.6059606552124024, + "step": 44300 + }, + { + "epoch": 39.257465162574654, + "grad_norm": 0.5081923007965088, + "learning_rate": 3.0377541998231656e-05, + "loss": 0.6121833038330078, + "step": 44400 + }, + { + "epoch": 39.345941163459415, + "grad_norm": 0.5688677430152893, + "learning_rate": 3.0333333333333337e-05, + "loss": 0.6163175964355468, + "step": 44500 + }, + { + "epoch": 39.43441716434417, + "grad_norm": 0.5273306965827942, + "learning_rate": 3.0289124668435014e-05, + "loss": 0.6198236465454101, + "step": 44600 + }, + { + "epoch": 39.52289316522893, + "grad_norm": 0.5107190608978271, + "learning_rate": 3.0244916003536694e-05, + "loss": 0.6242243576049805, + "step": 44700 + }, + { + "epoch": 39.61136916611369, + "grad_norm": 0.5110412240028381, + "learning_rate": 3.0200707338638375e-05, + "loss": 0.6227451705932617, + "step": 44800 + }, + { + "epoch": 39.69984516699845, + "grad_norm": 0.5370123982429504, + "learning_rate": 3.015649867374005e-05, + "loss": 0.6257634735107422, + "step": 44900 + }, + { + "epoch": 39.78832116788321, + "grad_norm": 0.5311342477798462, + "learning_rate": 3.0112290008841735e-05, + "loss": 0.6246538925170898, + "step": 45000 + }, + { + "epoch": 39.87679716876797, + "grad_norm": 0.5247089862823486, + "learning_rate": 3.0068081343943416e-05, + "loss": 0.6278446578979492, + "step": 45100 + }, + { + "epoch": 39.96527316965273, + "grad_norm": 0.5407604575157166, + "learning_rate": 3.0023872679045096e-05, + "loss": 0.6319368743896484, + "step": 45200 + }, + { + "epoch": 40.053085600530856, + "grad_norm": 0.49125176668167114, + "learning_rate": 2.9980106100795756e-05, + "loss": 0.608686294555664, + "step": 45300 + }, + { + "epoch": 40.14156160141562, + "grad_norm": 0.5193077325820923, + "learning_rate": 2.9935897435897437e-05, + "loss": 0.5979312515258789, + "step": 45400 + }, + { + "epoch": 40.23003760230038, + "grad_norm": 0.5521110892295837, + "learning_rate": 2.9891688770999117e-05, + "loss": 0.6026276016235351, + "step": 45500 + }, + { + "epoch": 40.31851360318514, + "grad_norm": 0.5131237506866455, + "learning_rate": 2.9847480106100794e-05, + "loss": 0.6056368637084961, + "step": 45600 + }, + { + "epoch": 40.4069896040699, + "grad_norm": 0.5547003149986267, + "learning_rate": 2.9803271441202478e-05, + "loss": 0.6073746490478515, + "step": 45700 + }, + { + "epoch": 40.49546560495465, + "grad_norm": 0.5059778690338135, + "learning_rate": 2.975906277630416e-05, + "loss": 0.6093035888671875, + "step": 45800 + }, + { + "epoch": 40.583941605839414, + "grad_norm": 0.5218088030815125, + "learning_rate": 2.971485411140584e-05, + "loss": 0.6098678970336914, + "step": 45900 + }, + { + "epoch": 40.672417606724174, + "grad_norm": 0.5111589431762695, + "learning_rate": 2.9670645446507516e-05, + "loss": 0.6144123458862305, + "step": 46000 + }, + { + "epoch": 40.760893607608935, + "grad_norm": 0.5875983238220215, + "learning_rate": 2.9626436781609196e-05, + "loss": 0.6149031448364258, + "step": 46100 + }, + { + "epoch": 40.849369608493696, + "grad_norm": 0.6077953577041626, + "learning_rate": 2.9582228116710873e-05, + "loss": 0.6200779724121094, + "step": 46200 + }, + { + "epoch": 40.937845609378456, + "grad_norm": 0.5511230230331421, + "learning_rate": 2.9538019451812554e-05, + "loss": 0.6175289916992187, + "step": 46300 + }, + { + "epoch": 41.02565804025658, + "grad_norm": 0.5434758067131042, + "learning_rate": 2.9493810786914238e-05, + "loss": 0.6117794418334961, + "step": 46400 + }, + { + "epoch": 41.11413404114134, + "grad_norm": 0.5463586449623108, + "learning_rate": 2.9449602122015918e-05, + "loss": 0.5865156936645508, + "step": 46500 + }, + { + "epoch": 41.2026100420261, + "grad_norm": 0.516645610332489, + "learning_rate": 2.94053934571176e-05, + "loss": 0.5934408950805664, + "step": 46600 + }, + { + "epoch": 41.29108604291086, + "grad_norm": 0.5041747093200684, + "learning_rate": 2.9361184792219276e-05, + "loss": 0.5907432556152343, + "step": 46700 + }, + { + "epoch": 41.37956204379562, + "grad_norm": 0.5490337014198303, + "learning_rate": 2.9316976127320956e-05, + "loss": 0.597823486328125, + "step": 46800 + }, + { + "epoch": 41.468038044680384, + "grad_norm": 0.5256726741790771, + "learning_rate": 2.9272767462422633e-05, + "loss": 0.5979599380493164, + "step": 46900 + }, + { + "epoch": 41.55651404556514, + "grad_norm": 0.49856510758399963, + "learning_rate": 2.9228558797524314e-05, + "loss": 0.6000013732910157, + "step": 47000 + }, + { + "epoch": 41.6449900464499, + "grad_norm": 0.540030837059021, + "learning_rate": 2.9184350132625998e-05, + "loss": 0.6044590759277344, + "step": 47100 + }, + { + "epoch": 41.73346604733466, + "grad_norm": 0.5599401593208313, + "learning_rate": 2.9140141467727678e-05, + "loss": 0.6050262451171875, + "step": 47200 + }, + { + "epoch": 41.82194204821942, + "grad_norm": 0.5251536965370178, + "learning_rate": 2.9095932802829355e-05, + "loss": 0.6084031677246093, + "step": 47300 + }, + { + "epoch": 41.91041804910418, + "grad_norm": 0.6002141237258911, + "learning_rate": 2.9051724137931036e-05, + "loss": 0.6051164627075195, + "step": 47400 + }, + { + "epoch": 41.99889404998894, + "grad_norm": 0.5603448748588562, + "learning_rate": 2.9007515473032716e-05, + "loss": 0.6085728073120117, + "step": 47500 + }, + { + "epoch": 42.086706480867065, + "grad_norm": 0.5491044521331787, + "learning_rate": 2.8963748894783376e-05, + "loss": 0.576365966796875, + "step": 47600 + }, + { + "epoch": 42.175182481751825, + "grad_norm": 0.5698864459991455, + "learning_rate": 2.8919540229885063e-05, + "loss": 0.5807184219360352, + "step": 47700 + }, + { + "epoch": 42.263658482636586, + "grad_norm": 0.574418306350708, + "learning_rate": 2.887533156498674e-05, + "loss": 0.5844138717651367, + "step": 47800 + }, + { + "epoch": 42.35213448352135, + "grad_norm": 0.5167635083198547, + "learning_rate": 2.883112290008842e-05, + "loss": 0.5845949935913086, + "step": 47900 + }, + { + "epoch": 42.44061048440611, + "grad_norm": 0.5338764786720276, + "learning_rate": 2.8786914235190098e-05, + "loss": 0.5889351272583008, + "step": 48000 + }, + { + "epoch": 42.52908648529087, + "grad_norm": 0.5340341329574585, + "learning_rate": 2.8742705570291778e-05, + "loss": 0.5909807205200195, + "step": 48100 + }, + { + "epoch": 42.61756248617562, + "grad_norm": 0.5493650436401367, + "learning_rate": 2.869849690539346e-05, + "loss": 0.5914651107788086, + "step": 48200 + }, + { + "epoch": 42.70603848706038, + "grad_norm": 0.6116383075714111, + "learning_rate": 2.8654288240495136e-05, + "loss": 0.592667350769043, + "step": 48300 + }, + { + "epoch": 42.79451448794514, + "grad_norm": 0.5631881356239319, + "learning_rate": 2.861007957559682e-05, + "loss": 0.5997231674194335, + "step": 48400 + }, + { + "epoch": 42.882990488829904, + "grad_norm": 0.5806667804718018, + "learning_rate": 2.85658709106985e-05, + "loss": 0.5957838439941406, + "step": 48500 + }, + { + "epoch": 42.971466489714665, + "grad_norm": 0.5075005888938904, + "learning_rate": 2.852166224580018e-05, + "loss": 0.5975283432006836, + "step": 48600 + }, + { + "epoch": 43.05927892059279, + "grad_norm": 0.5606797337532043, + "learning_rate": 2.8477453580901857e-05, + "loss": 0.5800529861450195, + "step": 48700 + }, + { + "epoch": 43.14775492147755, + "grad_norm": 0.5353171229362488, + "learning_rate": 2.8433244916003538e-05, + "loss": 0.5706613540649415, + "step": 48800 + }, + { + "epoch": 43.23623092236231, + "grad_norm": 0.5479321479797363, + "learning_rate": 2.8389036251105215e-05, + "loss": 0.5755366516113282, + "step": 48900 + }, + { + "epoch": 43.32470692324707, + "grad_norm": 0.5302407741546631, + "learning_rate": 2.8344827586206895e-05, + "loss": 0.5780391311645507, + "step": 49000 + }, + { + "epoch": 43.41318292413183, + "grad_norm": 0.5579783320426941, + "learning_rate": 2.830061892130858e-05, + "loss": 0.5774256896972656, + "step": 49100 + }, + { + "epoch": 43.50165892501659, + "grad_norm": 0.5295524597167969, + "learning_rate": 2.825641025641026e-05, + "loss": 0.5812548828125, + "step": 49200 + }, + { + "epoch": 43.59013492590135, + "grad_norm": 0.492058664560318, + "learning_rate": 2.821220159151194e-05, + "loss": 0.5796434783935547, + "step": 49300 + }, + { + "epoch": 43.67861092678611, + "grad_norm": 0.48961371183395386, + "learning_rate": 2.8167992926613617e-05, + "loss": 0.5851696014404297, + "step": 49400 + }, + { + "epoch": 43.76708692767087, + "grad_norm": 0.5714001059532166, + "learning_rate": 2.8123784261715298e-05, + "loss": 0.5890889358520508, + "step": 49500 + }, + { + "epoch": 43.85556292855563, + "grad_norm": 0.537390410900116, + "learning_rate": 2.8079575596816975e-05, + "loss": 0.5881150054931641, + "step": 49600 + }, + { + "epoch": 43.94403892944039, + "grad_norm": 0.5263146758079529, + "learning_rate": 2.8035366931918655e-05, + "loss": 0.5868202209472656, + "step": 49700 + }, + { + "epoch": 44.03185136031851, + "grad_norm": 0.5009394288063049, + "learning_rate": 2.7991600353669322e-05, + "loss": 0.578513412475586, + "step": 49800 + }, + { + "epoch": 44.12032736120327, + "grad_norm": 0.5233928561210632, + "learning_rate": 2.7947391688771002e-05, + "loss": 0.5612442016601562, + "step": 49900 + }, + { + "epoch": 44.208803362088034, + "grad_norm": 0.5212284922599792, + "learning_rate": 2.7903183023872683e-05, + "loss": 0.5634622955322266, + "step": 50000 + }, + { + "epoch": 44.297279362972795, + "grad_norm": 0.5920892357826233, + "learning_rate": 2.785897435897436e-05, + "loss": 0.5646255111694336, + "step": 50100 + }, + { + "epoch": 44.385755363857555, + "grad_norm": 0.5463851690292358, + "learning_rate": 2.781476569407604e-05, + "loss": 0.5711798477172851, + "step": 50200 + }, + { + "epoch": 44.474231364742316, + "grad_norm": 0.513917863368988, + "learning_rate": 2.7770557029177717e-05, + "loss": 0.5757728576660156, + "step": 50300 + }, + { + "epoch": 44.56270736562708, + "grad_norm": 0.5791277289390564, + "learning_rate": 2.7726348364279398e-05, + "loss": 0.5719475173950195, + "step": 50400 + }, + { + "epoch": 44.65118336651183, + "grad_norm": 0.5394783616065979, + "learning_rate": 2.768213969938108e-05, + "loss": 0.5751088714599609, + "step": 50500 + }, + { + "epoch": 44.73965936739659, + "grad_norm": 0.5699083805084229, + "learning_rate": 2.7637931034482762e-05, + "loss": 0.5771770095825195, + "step": 50600 + }, + { + "epoch": 44.82813536828135, + "grad_norm": 0.5610557794570923, + "learning_rate": 2.759372236958444e-05, + "loss": 0.5790963745117188, + "step": 50700 + }, + { + "epoch": 44.91661136916611, + "grad_norm": 0.5751321911811829, + "learning_rate": 2.754951370468612e-05, + "loss": 0.5781265258789062, + "step": 50800 + }, + { + "epoch": 45.004423800044236, + "grad_norm": 0.4831089377403259, + "learning_rate": 2.75053050397878e-05, + "loss": 0.5815114593505859, + "step": 50900 + }, + { + "epoch": 45.092899800929, + "grad_norm": 0.5138679146766663, + "learning_rate": 2.7461096374889477e-05, + "loss": 0.5530588912963867, + "step": 51000 + }, + { + "epoch": 45.18137580181376, + "grad_norm": 0.5327210426330566, + "learning_rate": 2.7416887709991158e-05, + "loss": 0.5549150085449219, + "step": 51100 + }, + { + "epoch": 45.26985180269852, + "grad_norm": 0.5089725255966187, + "learning_rate": 2.737267904509284e-05, + "loss": 0.5587585830688476, + "step": 51200 + }, + { + "epoch": 45.35832780358328, + "grad_norm": 0.5307016372680664, + "learning_rate": 2.7328470380194522e-05, + "loss": 0.5582825851440429, + "step": 51300 + }, + { + "epoch": 45.44680380446804, + "grad_norm": 0.6189883351325989, + "learning_rate": 2.72842617152962e-05, + "loss": 0.561285514831543, + "step": 51400 + }, + { + "epoch": 45.5352798053528, + "grad_norm": 0.5789527893066406, + "learning_rate": 2.724005305039788e-05, + "loss": 0.5647828674316406, + "step": 51500 + }, + { + "epoch": 45.62375580623756, + "grad_norm": 0.553713321685791, + "learning_rate": 2.719584438549956e-05, + "loss": 0.5659704208374023, + "step": 51600 + }, + { + "epoch": 45.712231807122315, + "grad_norm": 0.5502424240112305, + "learning_rate": 2.7151635720601237e-05, + "loss": 0.5685673522949218, + "step": 51700 + }, + { + "epoch": 45.800707808007076, + "grad_norm": 0.6388786435127258, + "learning_rate": 2.7107427055702917e-05, + "loss": 0.569713134765625, + "step": 51800 + }, + { + "epoch": 45.889183808891836, + "grad_norm": 0.5839136242866516, + "learning_rate": 2.70632183908046e-05, + "loss": 0.5713850784301758, + "step": 51900 + }, + { + "epoch": 45.9776598097766, + "grad_norm": 0.5872997641563416, + "learning_rate": 2.701900972590628e-05, + "loss": 0.5713462448120117, + "step": 52000 + }, + { + "epoch": 46.06547224065472, + "grad_norm": 0.5111995339393616, + "learning_rate": 2.697524314765694e-05, + "loss": 0.5514000701904297, + "step": 52100 + }, + { + "epoch": 46.15394824153948, + "grad_norm": 0.5677483677864075, + "learning_rate": 2.6931034482758622e-05, + "loss": 0.5458650207519531, + "step": 52200 + }, + { + "epoch": 46.24242424242424, + "grad_norm": 0.5756211876869202, + "learning_rate": 2.68868258178603e-05, + "loss": 0.5480696868896484, + "step": 52300 + }, + { + "epoch": 46.330900243309, + "grad_norm": 0.6053562164306641, + "learning_rate": 2.684261715296198e-05, + "loss": 0.5525957870483399, + "step": 52400 + }, + { + "epoch": 46.419376244193764, + "grad_norm": 0.5155165791511536, + "learning_rate": 2.6798408488063663e-05, + "loss": 0.5557857513427734, + "step": 52500 + }, + { + "epoch": 46.507852245078524, + "grad_norm": 0.5804229378700256, + "learning_rate": 2.6754199823165344e-05, + "loss": 0.5559201049804687, + "step": 52600 + }, + { + "epoch": 46.596328245963285, + "grad_norm": 0.5536544919013977, + "learning_rate": 2.6709991158267024e-05, + "loss": 0.5591853713989258, + "step": 52700 + }, + { + "epoch": 46.684804246848046, + "grad_norm": 0.603621244430542, + "learning_rate": 2.66657824933687e-05, + "loss": 0.5596856307983399, + "step": 52800 + }, + { + "epoch": 46.7732802477328, + "grad_norm": 0.5604232549667358, + "learning_rate": 2.662157382847038e-05, + "loss": 0.5584945678710938, + "step": 52900 + }, + { + "epoch": 46.86175624861756, + "grad_norm": 0.5974889993667603, + "learning_rate": 2.657736516357206e-05, + "loss": 0.5582848358154296, + "step": 53000 + }, + { + "epoch": 46.95023224950232, + "grad_norm": 0.5440397262573242, + "learning_rate": 2.653315649867374e-05, + "loss": 0.5634394454956054, + "step": 53100 + }, + { + "epoch": 47.038044680380445, + "grad_norm": 0.5610032081604004, + "learning_rate": 2.6488947833775423e-05, + "loss": 0.5574512481689453, + "step": 53200 + }, + { + "epoch": 47.126520681265205, + "grad_norm": 0.607563853263855, + "learning_rate": 2.6444739168877104e-05, + "loss": 0.5387821197509766, + "step": 53300 + }, + { + "epoch": 47.214996682149966, + "grad_norm": 0.5836204290390015, + "learning_rate": 2.640053050397878e-05, + "loss": 0.5401793670654297, + "step": 53400 + }, + { + "epoch": 47.30347268303473, + "grad_norm": 0.5325765013694763, + "learning_rate": 2.635632183908046e-05, + "loss": 0.5437668991088868, + "step": 53500 + }, + { + "epoch": 47.39194868391949, + "grad_norm": 0.5740872621536255, + "learning_rate": 2.631211317418214e-05, + "loss": 0.5443574142456055, + "step": 53600 + }, + { + "epoch": 47.48042468480425, + "grad_norm": 0.5562124848365784, + "learning_rate": 2.626790450928382e-05, + "loss": 0.5469727325439453, + "step": 53700 + }, + { + "epoch": 47.56890068568901, + "grad_norm": 0.5893000960350037, + "learning_rate": 2.62236958443855e-05, + "loss": 0.5502291107177735, + "step": 53800 + }, + { + "epoch": 47.65737668657377, + "grad_norm": 0.6538830995559692, + "learning_rate": 2.6179487179487183e-05, + "loss": 0.552915382385254, + "step": 53900 + }, + { + "epoch": 47.74585268745853, + "grad_norm": 0.5710316300392151, + "learning_rate": 2.6135278514588863e-05, + "loss": 0.5510491943359375, + "step": 54000 + }, + { + "epoch": 47.834328688343284, + "grad_norm": 0.5235297083854675, + "learning_rate": 2.609106984969054e-05, + "loss": 0.5519483184814453, + "step": 54100 + }, + { + "epoch": 47.922804689228045, + "grad_norm": 0.6048061847686768, + "learning_rate": 2.604686118479222e-05, + "loss": 0.5567644882202148, + "step": 54200 + }, + { + "epoch": 48.01061712010617, + "grad_norm": 0.5698108077049255, + "learning_rate": 2.6003094606542884e-05, + "loss": 0.5547234344482422, + "step": 54300 + }, + { + "epoch": 48.09909312099093, + "grad_norm": 0.49287617206573486, + "learning_rate": 2.595888594164456e-05, + "loss": 0.5280181884765625, + "step": 54400 + }, + { + "epoch": 48.18756912187569, + "grad_norm": 0.5525228977203369, + "learning_rate": 2.591467727674624e-05, + "loss": 0.5349401092529297, + "step": 54500 + }, + { + "epoch": 48.27604512276045, + "grad_norm": 0.5026161670684814, + "learning_rate": 2.5870468611847925e-05, + "loss": 0.5378446578979492, + "step": 54600 + }, + { + "epoch": 48.36452112364521, + "grad_norm": 0.5191828608512878, + "learning_rate": 2.5826259946949606e-05, + "loss": 0.5382429122924804, + "step": 54700 + }, + { + "epoch": 48.45299712452997, + "grad_norm": 0.5171953439712524, + "learning_rate": 2.5782051282051283e-05, + "loss": 0.5364204406738281, + "step": 54800 + }, + { + "epoch": 48.54147312541473, + "grad_norm": 0.5302397012710571, + "learning_rate": 2.5737842617152963e-05, + "loss": 0.5405542373657226, + "step": 54900 + }, + { + "epoch": 48.62994912629949, + "grad_norm": 0.5187925100326538, + "learning_rate": 2.569363395225464e-05, + "loss": 0.5436551284790039, + "step": 55000 + }, + { + "epoch": 48.718425127184254, + "grad_norm": 0.5707531571388245, + "learning_rate": 2.564942528735632e-05, + "loss": 0.5467363357543945, + "step": 55100 + }, + { + "epoch": 48.806901128069015, + "grad_norm": 0.5525254607200623, + "learning_rate": 2.5605216622458e-05, + "loss": 0.5466318130493164, + "step": 55200 + }, + { + "epoch": 48.89537712895377, + "grad_norm": 0.5896828174591064, + "learning_rate": 2.5561007957559685e-05, + "loss": 0.5489627075195312, + "step": 55300 + }, + { + "epoch": 48.98385312983853, + "grad_norm": 0.593329131603241, + "learning_rate": 2.5516799292661366e-05, + "loss": 0.5492449569702148, + "step": 55400 + }, + { + "epoch": 49.07166556071665, + "grad_norm": 0.45202845335006714, + "learning_rate": 2.5472590627763043e-05, + "loss": 0.5282985687255859, + "step": 55500 + }, + { + "epoch": 49.160141561601414, + "grad_norm": 0.45874515175819397, + "learning_rate": 2.5428381962864723e-05, + "loss": 0.5267356872558594, + "step": 55600 + }, + { + "epoch": 49.248617562486174, + "grad_norm": 0.5499678254127502, + "learning_rate": 2.53841732979664e-05, + "loss": 0.5255993270874023, + "step": 55700 + }, + { + "epoch": 49.337093563370935, + "grad_norm": 0.5569108724594116, + "learning_rate": 2.533996463306808e-05, + "loss": 0.5299503707885742, + "step": 55800 + }, + { + "epoch": 49.425569564255696, + "grad_norm": 0.5677438974380493, + "learning_rate": 2.529575596816976e-05, + "loss": 0.5316028594970703, + "step": 55900 + }, + { + "epoch": 49.51404556514046, + "grad_norm": 0.5888075828552246, + "learning_rate": 2.5251547303271445e-05, + "loss": 0.5354986953735351, + "step": 56000 + }, + { + "epoch": 49.60252156602522, + "grad_norm": 0.5639616250991821, + "learning_rate": 2.5207338638373122e-05, + "loss": 0.5369997787475586, + "step": 56100 + }, + { + "epoch": 49.69099756690998, + "grad_norm": 0.509158194065094, + "learning_rate": 2.5163129973474803e-05, + "loss": 0.536979866027832, + "step": 56200 + }, + { + "epoch": 49.77947356779474, + "grad_norm": 0.5412595868110657, + "learning_rate": 2.5118921308576483e-05, + "loss": 0.5382201004028321, + "step": 56300 + }, + { + "epoch": 49.86794956867949, + "grad_norm": 0.6052098274230957, + "learning_rate": 2.507471264367816e-05, + "loss": 0.5390504837036133, + "step": 56400 + }, + { + "epoch": 49.95642556956425, + "grad_norm": 0.5019105076789856, + "learning_rate": 2.503050397877984e-05, + "loss": 0.5391928482055665, + "step": 56500 + }, + { + "epoch": 50.04423800044238, + "grad_norm": 0.5133684873580933, + "learning_rate": 2.4986737400530504e-05, + "loss": 0.529360580444336, + "step": 56600 + }, + { + "epoch": 50.13271400132714, + "grad_norm": 0.5742220878601074, + "learning_rate": 2.4942528735632184e-05, + "loss": 0.5150651550292968, + "step": 56700 + }, + { + "epoch": 50.2211900022119, + "grad_norm": 0.5389617681503296, + "learning_rate": 2.4898320070733865e-05, + "loss": 0.5204330444335937, + "step": 56800 + }, + { + "epoch": 50.30966600309666, + "grad_norm": 0.5938611030578613, + "learning_rate": 2.4854111405835545e-05, + "loss": 0.5252494049072266, + "step": 56900 + }, + { + "epoch": 50.39814200398142, + "grad_norm": 0.5617892146110535, + "learning_rate": 2.4809902740937225e-05, + "loss": 0.5260490036010742, + "step": 57000 + }, + { + "epoch": 50.48661800486618, + "grad_norm": 0.6076000332832336, + "learning_rate": 2.4765694076038906e-05, + "loss": 0.5278256607055664, + "step": 57100 + }, + { + "epoch": 50.57509400575094, + "grad_norm": 0.5321983695030212, + "learning_rate": 2.4721485411140586e-05, + "loss": 0.5286510467529297, + "step": 57200 + }, + { + "epoch": 50.6635700066357, + "grad_norm": 0.614532470703125, + "learning_rate": 2.4677276746242263e-05, + "loss": 0.5313225936889648, + "step": 57300 + }, + { + "epoch": 50.75204600752046, + "grad_norm": 0.5830910801887512, + "learning_rate": 2.4633068081343944e-05, + "loss": 0.5300481796264649, + "step": 57400 + }, + { + "epoch": 50.84052200840522, + "grad_norm": 0.5918353199958801, + "learning_rate": 2.4588859416445624e-05, + "loss": 0.5337774276733398, + "step": 57500 + }, + { + "epoch": 50.92899800928998, + "grad_norm": 0.5791705846786499, + "learning_rate": 2.4544650751547305e-05, + "loss": 0.5316382598876953, + "step": 57600 + }, + { + "epoch": 51.01681044016811, + "grad_norm": 0.521299421787262, + "learning_rate": 2.4500442086648985e-05, + "loss": 0.5307102203369141, + "step": 57700 + }, + { + "epoch": 51.10528644105286, + "grad_norm": 0.5163324475288391, + "learning_rate": 2.4456233421750666e-05, + "loss": 0.5103409576416016, + "step": 57800 + }, + { + "epoch": 51.19376244193762, + "grad_norm": 0.5436499714851379, + "learning_rate": 2.4412024756852346e-05, + "loss": 0.5144682693481445, + "step": 57900 + }, + { + "epoch": 51.28223844282238, + "grad_norm": 0.5268517136573792, + "learning_rate": 2.4367816091954023e-05, + "loss": 0.5170879364013672, + "step": 58000 + }, + { + "epoch": 51.37071444370714, + "grad_norm": 0.5523056983947754, + "learning_rate": 2.4323607427055704e-05, + "loss": 0.5176148223876953, + "step": 58100 + }, + { + "epoch": 51.459190444591904, + "grad_norm": 0.5733488202095032, + "learning_rate": 2.4279398762157384e-05, + "loss": 0.5213256454467774, + "step": 58200 + }, + { + "epoch": 51.547666445476665, + "grad_norm": 0.6002511978149414, + "learning_rate": 2.4235190097259065e-05, + "loss": 0.5213332748413086, + "step": 58300 + }, + { + "epoch": 51.636142446361426, + "grad_norm": 0.5866407155990601, + "learning_rate": 2.4190981432360742e-05, + "loss": 0.5219316101074218, + "step": 58400 + }, + { + "epoch": 51.724618447246186, + "grad_norm": 0.620346188545227, + "learning_rate": 2.4146772767462426e-05, + "loss": 0.5251021575927735, + "step": 58500 + }, + { + "epoch": 51.81309444813095, + "grad_norm": 0.5428482294082642, + "learning_rate": 2.4102564102564103e-05, + "loss": 0.5254843521118164, + "step": 58600 + }, + { + "epoch": 51.90157044901571, + "grad_norm": 0.6146367192268372, + "learning_rate": 2.4058355437665783e-05, + "loss": 0.5262796401977539, + "step": 58700 + }, + { + "epoch": 51.99004644990046, + "grad_norm": 0.6002848148345947, + "learning_rate": 2.4014146772767464e-05, + "loss": 0.5279874801635742, + "step": 58800 + }, + { + "epoch": 52.07785888077859, + "grad_norm": 0.5608682036399841, + "learning_rate": 2.3970380194518127e-05, + "loss": 0.5045627975463867, + "step": 58900 + }, + { + "epoch": 52.166334881663346, + "grad_norm": 0.5034646391868591, + "learning_rate": 2.3926171529619807e-05, + "loss": 0.5071027755737305, + "step": 59000 + }, + { + "epoch": 52.25481088254811, + "grad_norm": 0.5443050861358643, + "learning_rate": 2.3881962864721484e-05, + "loss": 0.5105178451538086, + "step": 59100 + }, + { + "epoch": 52.34328688343287, + "grad_norm": 0.5455040335655212, + "learning_rate": 2.3837754199823168e-05, + "loss": 0.5111968612670899, + "step": 59200 + }, + { + "epoch": 52.43176288431763, + "grad_norm": 0.5393562912940979, + "learning_rate": 2.3793545534924845e-05, + "loss": 0.5109628295898437, + "step": 59300 + }, + { + "epoch": 52.52023888520239, + "grad_norm": 0.5572716593742371, + "learning_rate": 2.3749336870026526e-05, + "loss": 0.5128989791870118, + "step": 59400 + }, + { + "epoch": 52.60871488608715, + "grad_norm": 0.5157389640808105, + "learning_rate": 2.3705128205128206e-05, + "loss": 0.5179262924194336, + "step": 59500 + }, + { + "epoch": 52.69719088697191, + "grad_norm": 0.5245424509048462, + "learning_rate": 2.3660919540229886e-05, + "loss": 0.5182614517211914, + "step": 59600 + }, + { + "epoch": 52.78566688785667, + "grad_norm": 0.6405171155929565, + "learning_rate": 2.3616710875331567e-05, + "loss": 0.5196902084350586, + "step": 59700 + }, + { + "epoch": 52.87414288874143, + "grad_norm": 0.5531449317932129, + "learning_rate": 2.3572502210433244e-05, + "loss": 0.5213772583007813, + "step": 59800 + }, + { + "epoch": 52.96261888962619, + "grad_norm": 0.5440499186515808, + "learning_rate": 2.3528293545534928e-05, + "loss": 0.5214180755615234, + "step": 59900 + }, + { + "epoch": 53.050431320504316, + "grad_norm": 0.5454942584037781, + "learning_rate": 2.3484084880636605e-05, + "loss": 0.5082747268676758, + "step": 60000 + }, + { + "epoch": 53.13890732138907, + "grad_norm": 0.6037677526473999, + "learning_rate": 2.3439876215738285e-05, + "loss": 0.4992447662353516, + "step": 60100 + }, + { + "epoch": 53.22738332227383, + "grad_norm": 0.6089978218078613, + "learning_rate": 2.3395667550839966e-05, + "loss": 0.501078987121582, + "step": 60200 + }, + { + "epoch": 53.31585932315859, + "grad_norm": 0.5581852793693542, + "learning_rate": 2.3351458885941646e-05, + "loss": 0.50614990234375, + "step": 60300 + }, + { + "epoch": 53.40433532404335, + "grad_norm": 0.5539824366569519, + "learning_rate": 2.3307250221043327e-05, + "loss": 0.5036640548706055, + "step": 60400 + }, + { + "epoch": 53.49281132492811, + "grad_norm": 0.5434619784355164, + "learning_rate": 2.3263041556145004e-05, + "loss": 0.5078977966308593, + "step": 60500 + }, + { + "epoch": 53.58128732581287, + "grad_norm": 0.5596204400062561, + "learning_rate": 2.3218832891246688e-05, + "loss": 0.5105896377563477, + "step": 60600 + }, + { + "epoch": 53.669763326697634, + "grad_norm": 0.5933516621589661, + "learning_rate": 2.3174624226348365e-05, + "loss": 0.512298583984375, + "step": 60700 + }, + { + "epoch": 53.758239327582395, + "grad_norm": 0.5938782095909119, + "learning_rate": 2.3130415561450045e-05, + "loss": 0.5136246871948242, + "step": 60800 + }, + { + "epoch": 53.846715328467155, + "grad_norm": 0.5711195468902588, + "learning_rate": 2.3086206896551726e-05, + "loss": 0.5137527465820313, + "step": 60900 + }, + { + "epoch": 53.935191329351916, + "grad_norm": 0.5345974564552307, + "learning_rate": 2.3041998231653406e-05, + "loss": 0.5148337173461914, + "step": 61000 + }, + { + "epoch": 54.02300376023004, + "grad_norm": 0.5462290644645691, + "learning_rate": 2.299823165340407e-05, + "loss": 0.5070685577392579, + "step": 61100 + }, + { + "epoch": 54.1114797611148, + "grad_norm": 0.5135403275489807, + "learning_rate": 2.295402298850575e-05, + "loss": 0.49042961120605466, + "step": 61200 + }, + { + "epoch": 54.199955761999554, + "grad_norm": 0.5753411650657654, + "learning_rate": 2.290981432360743e-05, + "loss": 0.49762104034423826, + "step": 61300 + }, + { + "epoch": 54.288431762884315, + "grad_norm": 0.5738378167152405, + "learning_rate": 2.2865605658709107e-05, + "loss": 0.4983011245727539, + "step": 61400 + }, + { + "epoch": 54.376907763769076, + "grad_norm": 0.5234966278076172, + "learning_rate": 2.2821396993810788e-05, + "loss": 0.5005590057373047, + "step": 61500 + }, + { + "epoch": 54.465383764653836, + "grad_norm": 0.5313852429389954, + "learning_rate": 2.2777188328912468e-05, + "loss": 0.503372917175293, + "step": 61600 + }, + { + "epoch": 54.5538597655386, + "grad_norm": 0.49838191270828247, + "learning_rate": 2.273297966401415e-05, + "loss": 0.5020324325561524, + "step": 61700 + }, + { + "epoch": 54.64233576642336, + "grad_norm": 0.5403088927268982, + "learning_rate": 2.2688770999115826e-05, + "loss": 0.5049329376220704, + "step": 61800 + }, + { + "epoch": 54.73081176730812, + "grad_norm": 0.46723249554634094, + "learning_rate": 2.264456233421751e-05, + "loss": 0.5059401321411133, + "step": 61900 + }, + { + "epoch": 54.81928776819288, + "grad_norm": 0.5539482235908508, + "learning_rate": 2.2600353669319187e-05, + "loss": 0.5069823837280274, + "step": 62000 + }, + { + "epoch": 54.90776376907764, + "grad_norm": 0.5377270579338074, + "learning_rate": 2.2556145004420867e-05, + "loss": 0.508377685546875, + "step": 62100 + }, + { + "epoch": 54.9962397699624, + "grad_norm": 0.6182072162628174, + "learning_rate": 2.2511936339522548e-05, + "loss": 0.5095947647094726, + "step": 62200 + }, + { + "epoch": 55.084052200840524, + "grad_norm": 0.5139372944831848, + "learning_rate": 2.2467727674624228e-05, + "loss": 0.4896272277832031, + "step": 62300 + }, + { + "epoch": 55.172528201725285, + "grad_norm": 0.5812121629714966, + "learning_rate": 2.242351900972591e-05, + "loss": 0.49099037170410154, + "step": 62400 + }, + { + "epoch": 55.26100420261004, + "grad_norm": 0.5491729378700256, + "learning_rate": 2.2379310344827586e-05, + "loss": 0.4927267074584961, + "step": 62500 + }, + { + "epoch": 55.3494802034948, + "grad_norm": 0.5951135158538818, + "learning_rate": 2.233510167992927e-05, + "loss": 0.49305023193359376, + "step": 62600 + }, + { + "epoch": 55.43795620437956, + "grad_norm": 0.5938172340393066, + "learning_rate": 2.2290893015030946e-05, + "loss": 0.49482032775878904, + "step": 62700 + }, + { + "epoch": 55.52643220526432, + "grad_norm": 0.5288723111152649, + "learning_rate": 2.2246684350132627e-05, + "loss": 0.4974822998046875, + "step": 62800 + }, + { + "epoch": 55.61490820614908, + "grad_norm": 0.5663400888442993, + "learning_rate": 2.2202475685234307e-05, + "loss": 0.498828239440918, + "step": 62900 + }, + { + "epoch": 55.70338420703384, + "grad_norm": 0.5939375162124634, + "learning_rate": 2.2158267020335988e-05, + "loss": 0.5004440307617187, + "step": 63000 + }, + { + "epoch": 55.7918602079186, + "grad_norm": 0.628774106502533, + "learning_rate": 2.2114058355437668e-05, + "loss": 0.5034025573730468, + "step": 63100 + }, + { + "epoch": 55.880336208803364, + "grad_norm": 0.6160352826118469, + "learning_rate": 2.2069849690539345e-05, + "loss": 0.5042695236206055, + "step": 63200 + }, + { + "epoch": 55.968812209688124, + "grad_norm": 0.5891813635826111, + "learning_rate": 2.202564102564103e-05, + "loss": 0.5021416473388672, + "step": 63300 + }, + { + "epoch": 56.05662464056625, + "grad_norm": 0.5297622680664062, + "learning_rate": 2.198187444739169e-05, + "loss": 0.4904953384399414, + "step": 63400 + }, + { + "epoch": 56.14510064145101, + "grad_norm": 0.5649422407150269, + "learning_rate": 2.193766578249337e-05, + "loss": 0.485706672668457, + "step": 63500 + }, + { + "epoch": 56.23357664233577, + "grad_norm": 0.6352797150611877, + "learning_rate": 2.189345711759505e-05, + "loss": 0.4867672348022461, + "step": 63600 + }, + { + "epoch": 56.32205264322052, + "grad_norm": 0.5789678692817688, + "learning_rate": 2.184924845269673e-05, + "loss": 0.48802379608154295, + "step": 63700 + }, + { + "epoch": 56.410528644105284, + "grad_norm": 0.6075431704521179, + "learning_rate": 2.180503978779841e-05, + "loss": 0.4910835647583008, + "step": 63800 + }, + { + "epoch": 56.499004644990045, + "grad_norm": 0.5858777165412903, + "learning_rate": 2.1760831122900088e-05, + "loss": 0.4906935119628906, + "step": 63900 + }, + { + "epoch": 56.587480645874805, + "grad_norm": 0.5143148899078369, + "learning_rate": 2.171662245800177e-05, + "loss": 0.49202545166015627, + "step": 64000 + }, + { + "epoch": 56.675956646759566, + "grad_norm": 0.5330872535705566, + "learning_rate": 2.167241379310345e-05, + "loss": 0.4929664611816406, + "step": 64100 + }, + { + "epoch": 56.76443264764433, + "grad_norm": 0.5530017018318176, + "learning_rate": 2.162820512820513e-05, + "loss": 0.49355899810791015, + "step": 64200 + }, + { + "epoch": 56.85290864852909, + "grad_norm": 0.5891992449760437, + "learning_rate": 2.158399646330681e-05, + "loss": 0.49566749572753904, + "step": 64300 + }, + { + "epoch": 56.94138464941385, + "grad_norm": 0.5289095044136047, + "learning_rate": 2.153978779840849e-05, + "loss": 0.4987163543701172, + "step": 64400 + }, + { + "epoch": 57.02919708029197, + "grad_norm": 0.5679471492767334, + "learning_rate": 2.1495579133510167e-05, + "loss": 0.49003833770751953, + "step": 64500 + }, + { + "epoch": 57.11767308117673, + "grad_norm": 0.5432245135307312, + "learning_rate": 2.1451370468611848e-05, + "loss": 0.47765895843505857, + "step": 64600 + }, + { + "epoch": 57.20614908206149, + "grad_norm": 0.5474491119384766, + "learning_rate": 2.1407161803713528e-05, + "loss": 0.4797785568237305, + "step": 64700 + }, + { + "epoch": 57.294625082946254, + "grad_norm": 0.537804126739502, + "learning_rate": 2.136295313881521e-05, + "loss": 0.4833247756958008, + "step": 64800 + }, + { + "epoch": 57.38310108383101, + "grad_norm": 0.572169840335846, + "learning_rate": 2.131874447391689e-05, + "loss": 0.4836674118041992, + "step": 64900 + }, + { + "epoch": 57.47157708471577, + "grad_norm": 0.5344268679618835, + "learning_rate": 2.127453580901857e-05, + "loss": 0.48507492065429686, + "step": 65000 + }, + { + "epoch": 57.56005308560053, + "grad_norm": 0.5664619207382202, + "learning_rate": 2.123032714412025e-05, + "loss": 0.488138427734375, + "step": 65100 + }, + { + "epoch": 57.64852908648529, + "grad_norm": 0.5902144312858582, + "learning_rate": 2.1186118479221927e-05, + "loss": 0.48771110534667966, + "step": 65200 + }, + { + "epoch": 57.73700508737005, + "grad_norm": 0.562929630279541, + "learning_rate": 2.1141909814323607e-05, + "loss": 0.4875301742553711, + "step": 65300 + }, + { + "epoch": 57.82548108825481, + "grad_norm": 0.5995573997497559, + "learning_rate": 2.1097701149425288e-05, + "loss": 0.49271678924560547, + "step": 65400 + }, + { + "epoch": 57.91395708913957, + "grad_norm": 0.6624785661697388, + "learning_rate": 2.105349248452697e-05, + "loss": 0.4920695877075195, + "step": 65500 + }, + { + "epoch": 58.001769520017696, + "grad_norm": 0.5402753353118896, + "learning_rate": 2.100928381962865e-05, + "loss": 0.49431739807128905, + "step": 65600 + }, + { + "epoch": 58.09024552090246, + "grad_norm": 0.5145826935768127, + "learning_rate": 2.096507515473033e-05, + "loss": 0.47089763641357424, + "step": 65700 + }, + { + "epoch": 58.17872152178722, + "grad_norm": 0.5931445360183716, + "learning_rate": 2.092086648983201e-05, + "loss": 0.4758612060546875, + "step": 65800 + }, + { + "epoch": 58.26719752267198, + "grad_norm": 0.5388639569282532, + "learning_rate": 2.0876657824933687e-05, + "loss": 0.47640296936035154, + "step": 65900 + }, + { + "epoch": 58.35567352355674, + "grad_norm": 0.5639314651489258, + "learning_rate": 2.0832449160035367e-05, + "loss": 0.482130241394043, + "step": 66000 + }, + { + "epoch": 58.44414952444149, + "grad_norm": 0.5535529851913452, + "learning_rate": 2.0788240495137048e-05, + "loss": 0.47872936248779296, + "step": 66100 + }, + { + "epoch": 58.53262552532625, + "grad_norm": 0.5827674865722656, + "learning_rate": 2.0744031830238728e-05, + "loss": 0.4842064666748047, + "step": 66200 + }, + { + "epoch": 58.621101526211014, + "grad_norm": 0.5696784257888794, + "learning_rate": 2.0699823165340405e-05, + "loss": 0.4816234588623047, + "step": 66300 + }, + { + "epoch": 58.709577527095774, + "grad_norm": 0.5349422097206116, + "learning_rate": 2.065561450044209e-05, + "loss": 0.48554718017578125, + "step": 66400 + }, + { + "epoch": 58.798053527980535, + "grad_norm": 0.636604368686676, + "learning_rate": 2.0611405835543766e-05, + "loss": 0.4876006317138672, + "step": 66500 + }, + { + "epoch": 58.886529528865296, + "grad_norm": 0.6060304045677185, + "learning_rate": 2.0567197170645447e-05, + "loss": 0.4887725830078125, + "step": 66600 + }, + { + "epoch": 58.97500552975006, + "grad_norm": 0.6087244749069214, + "learning_rate": 2.0522988505747127e-05, + "loss": 0.4868877410888672, + "step": 66700 + }, + { + "epoch": 59.06281796062818, + "grad_norm": 0.49913933873176575, + "learning_rate": 2.047922192749779e-05, + "loss": 0.4722119140625, + "step": 66800 + }, + { + "epoch": 59.15129396151294, + "grad_norm": 0.4722621738910675, + "learning_rate": 2.043501326259947e-05, + "loss": 0.47009246826171874, + "step": 66900 + }, + { + "epoch": 59.2397699623977, + "grad_norm": 0.5657719373703003, + "learning_rate": 2.0390804597701148e-05, + "loss": 0.472298583984375, + "step": 67000 + }, + { + "epoch": 59.32824596328246, + "grad_norm": 0.5761541724205017, + "learning_rate": 2.034659593280283e-05, + "loss": 0.4723761749267578, + "step": 67100 + }, + { + "epoch": 59.416721964167216, + "grad_norm": 0.6316192150115967, + "learning_rate": 2.030238726790451e-05, + "loss": 0.47409954071044924, + "step": 67200 + }, + { + "epoch": 59.50519796505198, + "grad_norm": 0.6090986132621765, + "learning_rate": 2.025817860300619e-05, + "loss": 0.4764304351806641, + "step": 67300 + }, + { + "epoch": 59.59367396593674, + "grad_norm": 0.5362303256988525, + "learning_rate": 2.021396993810787e-05, + "loss": 0.4776358795166016, + "step": 67400 + }, + { + "epoch": 59.6821499668215, + "grad_norm": 0.553995668888092, + "learning_rate": 2.016976127320955e-05, + "loss": 0.4807791519165039, + "step": 67500 + }, + { + "epoch": 59.77062596770626, + "grad_norm": 0.5615981221199036, + "learning_rate": 2.012555260831123e-05, + "loss": 0.48062610626220703, + "step": 67600 + }, + { + "epoch": 59.85910196859102, + "grad_norm": 0.5885509252548218, + "learning_rate": 2.0081343943412908e-05, + "loss": 0.48244945526123045, + "step": 67700 + }, + { + "epoch": 59.94757796947578, + "grad_norm": 0.6052979230880737, + "learning_rate": 2.003713527851459e-05, + "loss": 0.4803206634521484, + "step": 67800 + }, + { + "epoch": 60.035390400353904, + "grad_norm": 0.5579769015312195, + "learning_rate": 1.999292661361627e-05, + "loss": 0.4752388000488281, + "step": 67900 + }, + { + "epoch": 60.123866401238665, + "grad_norm": 0.478289395570755, + "learning_rate": 1.994871794871795e-05, + "loss": 0.4645302200317383, + "step": 68000 + }, + { + "epoch": 60.212342402123426, + "grad_norm": 0.5545957088470459, + "learning_rate": 1.990450928381963e-05, + "loss": 0.46837158203125, + "step": 68100 + }, + { + "epoch": 60.300818403008186, + "grad_norm": 0.524662435054779, + "learning_rate": 1.986030061892131e-05, + "loss": 0.4679202651977539, + "step": 68200 + }, + { + "epoch": 60.38929440389295, + "grad_norm": 0.6101793646812439, + "learning_rate": 1.981609195402299e-05, + "loss": 0.46956668853759764, + "step": 68300 + }, + { + "epoch": 60.4777704047777, + "grad_norm": 0.5040204524993896, + "learning_rate": 1.9771883289124667e-05, + "loss": 0.4706681060791016, + "step": 68400 + }, + { + "epoch": 60.56624640566246, + "grad_norm": 0.563679039478302, + "learning_rate": 1.972767462422635e-05, + "loss": 0.471558837890625, + "step": 68500 + }, + { + "epoch": 60.65472240654722, + "grad_norm": 0.5668439865112305, + "learning_rate": 1.9683465959328028e-05, + "loss": 0.4727770233154297, + "step": 68600 + }, + { + "epoch": 60.74319840743198, + "grad_norm": 0.6011987328529358, + "learning_rate": 1.963925729442971e-05, + "loss": 0.47645427703857424, + "step": 68700 + }, + { + "epoch": 60.83167440831674, + "grad_norm": 0.6392132043838501, + "learning_rate": 1.959504862953139e-05, + "loss": 0.4765947341918945, + "step": 68800 + }, + { + "epoch": 60.920150409201504, + "grad_norm": 0.6424957513809204, + "learning_rate": 1.955083996463307e-05, + "loss": 0.4768808746337891, + "step": 68900 + }, + { + "epoch": 61.00796284007963, + "grad_norm": 0.5341200828552246, + "learning_rate": 1.9507073386383733e-05, + "loss": 0.4776120376586914, + "step": 69000 + }, + { + "epoch": 61.09643884096439, + "grad_norm": 0.622922956943512, + "learning_rate": 1.9462864721485413e-05, + "loss": 0.46137203216552736, + "step": 69100 + }, + { + "epoch": 61.18491484184915, + "grad_norm": 0.5679436326026917, + "learning_rate": 1.9418656056587094e-05, + "loss": 0.46096920013427733, + "step": 69200 + }, + { + "epoch": 61.27339084273391, + "grad_norm": 0.5972808003425598, + "learning_rate": 1.937444739168877e-05, + "loss": 0.46090087890625, + "step": 69300 + }, + { + "epoch": 61.36186684361867, + "grad_norm": 0.5825915336608887, + "learning_rate": 1.933023872679045e-05, + "loss": 0.46518352508544925, + "step": 69400 + }, + { + "epoch": 61.45034284450343, + "grad_norm": 0.48754116892814636, + "learning_rate": 1.9286030061892132e-05, + "loss": 0.4664886856079102, + "step": 69500 + }, + { + "epoch": 61.538818845388185, + "grad_norm": 0.5583191514015198, + "learning_rate": 1.9241821396993812e-05, + "loss": 0.46886295318603516, + "step": 69600 + }, + { + "epoch": 61.627294846272946, + "grad_norm": 0.5658340454101562, + "learning_rate": 1.919761273209549e-05, + "loss": 0.4696169662475586, + "step": 69700 + }, + { + "epoch": 61.71577084715771, + "grad_norm": 0.5801714658737183, + "learning_rate": 1.9153404067197173e-05, + "loss": 0.47141036987304685, + "step": 69800 + }, + { + "epoch": 61.80424684804247, + "grad_norm": 0.5643869042396545, + "learning_rate": 1.910919540229885e-05, + "loss": 0.4727308654785156, + "step": 69900 + }, + { + "epoch": 61.89272284892723, + "grad_norm": 0.5937660336494446, + "learning_rate": 1.906498673740053e-05, + "loss": 0.4726886367797852, + "step": 70000 + }, + { + "epoch": 61.98119884981199, + "grad_norm": 0.5228411555290222, + "learning_rate": 1.902077807250221e-05, + "loss": 0.47457176208496094, + "step": 70100 + }, + { + "epoch": 62.06901128069011, + "grad_norm": 0.5100186467170715, + "learning_rate": 1.897656940760389e-05, + "loss": 0.4604149627685547, + "step": 70200 + }, + { + "epoch": 62.15748728157487, + "grad_norm": 0.5119529962539673, + "learning_rate": 1.8932360742705572e-05, + "loss": 0.4561204147338867, + "step": 70300 + }, + { + "epoch": 62.245963282459634, + "grad_norm": 0.5130912065505981, + "learning_rate": 1.888815207780725e-05, + "loss": 0.4596226501464844, + "step": 70400 + }, + { + "epoch": 62.334439283344395, + "grad_norm": 0.5388224720954895, + "learning_rate": 1.8843943412908933e-05, + "loss": 0.4617993927001953, + "step": 70500 + }, + { + "epoch": 62.422915284229155, + "grad_norm": 0.5555194020271301, + "learning_rate": 1.879973474801061e-05, + "loss": 0.46267467498779297, + "step": 70600 + }, + { + "epoch": 62.511391285113916, + "grad_norm": 0.5136281847953796, + "learning_rate": 1.875552608311229e-05, + "loss": 0.4628156280517578, + "step": 70700 + }, + { + "epoch": 62.59986728599867, + "grad_norm": 0.5039867162704468, + "learning_rate": 1.871131741821397e-05, + "loss": 0.4678297805786133, + "step": 70800 + }, + { + "epoch": 62.68834328688343, + "grad_norm": 0.566985547542572, + "learning_rate": 1.866710875331565e-05, + "loss": 0.46522830963134765, + "step": 70900 + }, + { + "epoch": 62.77681928776819, + "grad_norm": 0.5855474472045898, + "learning_rate": 1.8622900088417332e-05, + "loss": 0.46788333892822265, + "step": 71000 + }, + { + "epoch": 62.86529528865295, + "grad_norm": 0.5838083624839783, + "learning_rate": 1.857869142351901e-05, + "loss": 0.4687856292724609, + "step": 71100 + }, + { + "epoch": 62.95377128953771, + "grad_norm": 0.6574355363845825, + "learning_rate": 1.8534482758620693e-05, + "loss": 0.46836143493652344, + "step": 71200 + }, + { + "epoch": 63.04158372041584, + "grad_norm": 0.5751773118972778, + "learning_rate": 1.849027409372237e-05, + "loss": 0.4590755844116211, + "step": 71300 + }, + { + "epoch": 63.1300597213006, + "grad_norm": 0.5056807398796082, + "learning_rate": 1.844606542882405e-05, + "loss": 0.45313865661621094, + "step": 71400 + }, + { + "epoch": 63.21853572218536, + "grad_norm": 0.5403828024864197, + "learning_rate": 1.840185676392573e-05, + "loss": 0.4552134323120117, + "step": 71500 + }, + { + "epoch": 63.30701172307012, + "grad_norm": 0.48244568705558777, + "learning_rate": 1.835764809902741e-05, + "loss": 0.45661014556884766, + "step": 71600 + }, + { + "epoch": 63.39548772395488, + "grad_norm": 0.5753127932548523, + "learning_rate": 1.831343943412909e-05, + "loss": 0.4578168487548828, + "step": 71700 + }, + { + "epoch": 63.48396372483964, + "grad_norm": 0.5782042741775513, + "learning_rate": 1.826923076923077e-05, + "loss": 0.4589107131958008, + "step": 71800 + }, + { + "epoch": 63.5724397257244, + "grad_norm": 0.5895569920539856, + "learning_rate": 1.8225022104332453e-05, + "loss": 0.46304950714111326, + "step": 71900 + }, + { + "epoch": 63.660915726609154, + "grad_norm": 0.6601688265800476, + "learning_rate": 1.818081343943413e-05, + "loss": 0.45953712463378904, + "step": 72000 + }, + { + "epoch": 63.749391727493915, + "grad_norm": 0.5695818066596985, + "learning_rate": 1.813660477453581e-05, + "loss": 0.46058246612548825, + "step": 72100 + }, + { + "epoch": 63.837867728378676, + "grad_norm": 0.5006322264671326, + "learning_rate": 1.809239610963749e-05, + "loss": 0.4630731964111328, + "step": 72200 + }, + { + "epoch": 63.926343729263436, + "grad_norm": 0.5871863961219788, + "learning_rate": 1.804818744473917e-05, + "loss": 0.46295913696289065, + "step": 72300 + }, + { + "epoch": 64.01415616014157, + "grad_norm": 0.5417830348014832, + "learning_rate": 1.8003978779840848e-05, + "loss": 0.4623433303833008, + "step": 72400 + }, + { + "epoch": 64.10263216102632, + "grad_norm": 0.5019242763519287, + "learning_rate": 1.795977011494253e-05, + "loss": 0.44698051452636717, + "step": 72500 + }, + { + "epoch": 64.19110816191107, + "grad_norm": 0.5637330412864685, + "learning_rate": 1.791556145004421e-05, + "loss": 0.4492236328125, + "step": 72600 + }, + { + "epoch": 64.27958416279584, + "grad_norm": 0.5333090424537659, + "learning_rate": 1.787135278514589e-05, + "loss": 0.45192584991455076, + "step": 72700 + }, + { + "epoch": 64.3680601636806, + "grad_norm": 0.5232571363449097, + "learning_rate": 1.782714412024757e-05, + "loss": 0.45244823455810546, + "step": 72800 + }, + { + "epoch": 64.45653616456536, + "grad_norm": 0.4935717284679413, + "learning_rate": 1.778293545534925e-05, + "loss": 0.4529353332519531, + "step": 72900 + }, + { + "epoch": 64.54501216545012, + "grad_norm": 0.5450688600540161, + "learning_rate": 1.7739168877099913e-05, + "loss": 0.4567538833618164, + "step": 73000 + }, + { + "epoch": 64.63348816633489, + "grad_norm": 0.47621846199035645, + "learning_rate": 1.769496021220159e-05, + "loss": 0.4563169097900391, + "step": 73100 + }, + { + "epoch": 64.72196416721964, + "grad_norm": 0.5023945569992065, + "learning_rate": 1.7650751547303274e-05, + "loss": 0.46204959869384765, + "step": 73200 + }, + { + "epoch": 64.8104401681044, + "grad_norm": 0.49148306250572205, + "learning_rate": 1.760654288240495e-05, + "loss": 0.45924064636230466, + "step": 73300 + }, + { + "epoch": 64.89891616898916, + "grad_norm": 0.6161800026893616, + "learning_rate": 1.7562334217506632e-05, + "loss": 0.45994918823242187, + "step": 73400 + }, + { + "epoch": 64.98739216987393, + "grad_norm": 0.5307760238647461, + "learning_rate": 1.7518125552608312e-05, + "loss": 0.461478271484375, + "step": 73500 + }, + { + "epoch": 65.07520460075204, + "grad_norm": 0.588062584400177, + "learning_rate": 1.7474358974358976e-05, + "loss": 0.4461378479003906, + "step": 73600 + }, + { + "epoch": 65.16368060163681, + "grad_norm": 0.5329079627990723, + "learning_rate": 1.7430150309460656e-05, + "loss": 0.4440943145751953, + "step": 73700 + }, + { + "epoch": 65.25215660252157, + "grad_norm": 0.6149891018867493, + "learning_rate": 1.7385941644562333e-05, + "loss": 0.44721881866455077, + "step": 73800 + }, + { + "epoch": 65.34063260340632, + "grad_norm": 0.5438173413276672, + "learning_rate": 1.7341732979664017e-05, + "loss": 0.44954757690429686, + "step": 73900 + }, + { + "epoch": 65.42910860429109, + "grad_norm": 0.5428133606910706, + "learning_rate": 1.7297524314765694e-05, + "loss": 0.45107986450195314, + "step": 74000 + }, + { + "epoch": 65.51758460517584, + "grad_norm": 0.5134186744689941, + "learning_rate": 1.7253315649867374e-05, + "loss": 0.45244071960449217, + "step": 74100 + }, + { + "epoch": 65.60606060606061, + "grad_norm": 0.6233081817626953, + "learning_rate": 1.7209106984969055e-05, + "loss": 0.45329185485839846, + "step": 74200 + }, + { + "epoch": 65.69453660694536, + "grad_norm": 0.5700708627700806, + "learning_rate": 1.7164898320070735e-05, + "loss": 0.4539757537841797, + "step": 74300 + }, + { + "epoch": 65.78301260783013, + "grad_norm": 0.5631476640701294, + "learning_rate": 1.7120689655172416e-05, + "loss": 0.4555579376220703, + "step": 74400 + }, + { + "epoch": 65.87148860871488, + "grad_norm": 0.5964381694793701, + "learning_rate": 1.7076480990274093e-05, + "loss": 0.45496936798095705, + "step": 74500 + }, + { + "epoch": 65.95996460959965, + "grad_norm": 0.5872741341590881, + "learning_rate": 1.7032272325375777e-05, + "loss": 0.45641098022460935, + "step": 74600 + }, + { + "epoch": 66.04777704047777, + "grad_norm": 0.522363543510437, + "learning_rate": 1.6988063660477454e-05, + "loss": 0.4488802337646484, + "step": 74700 + }, + { + "epoch": 66.13625304136254, + "grad_norm": 0.5161113739013672, + "learning_rate": 1.6943854995579134e-05, + "loss": 0.44122817993164065, + "step": 74800 + }, + { + "epoch": 66.22472904224729, + "grad_norm": 0.5127883553504944, + "learning_rate": 1.6899646330680815e-05, + "loss": 0.4447059631347656, + "step": 74900 + }, + { + "epoch": 66.31320504313204, + "grad_norm": 0.5202219486236572, + "learning_rate": 1.6855437665782495e-05, + "loss": 0.4453567123413086, + "step": 75000 + }, + { + "epoch": 66.40168104401681, + "grad_norm": 0.4957808256149292, + "learning_rate": 1.6811229000884172e-05, + "loss": 0.44502986907958986, + "step": 75100 + }, + { + "epoch": 66.49015704490157, + "grad_norm": 0.622518002986908, + "learning_rate": 1.6767020335985853e-05, + "loss": 0.44539188385009765, + "step": 75200 + }, + { + "epoch": 66.57863304578633, + "grad_norm": 0.5333230495452881, + "learning_rate": 1.6722811671087537e-05, + "loss": 0.4479424667358398, + "step": 75300 + }, + { + "epoch": 66.66710904667109, + "grad_norm": 0.536641001701355, + "learning_rate": 1.6678603006189214e-05, + "loss": 0.4486875534057617, + "step": 75400 + }, + { + "epoch": 66.75558504755585, + "grad_norm": 0.6140312552452087, + "learning_rate": 1.6634394341290894e-05, + "loss": 0.45118595123291017, + "step": 75500 + }, + { + "epoch": 66.84406104844061, + "grad_norm": 0.5268392562866211, + "learning_rate": 1.6590185676392574e-05, + "loss": 0.4503518676757812, + "step": 75600 + }, + { + "epoch": 66.93253704932538, + "grad_norm": 0.6316497325897217, + "learning_rate": 1.6545977011494255e-05, + "loss": 0.45311626434326174, + "step": 75700 + }, + { + "epoch": 67.02034948020349, + "grad_norm": 0.4964323937892914, + "learning_rate": 1.6502210433244915e-05, + "loss": 0.44798419952392576, + "step": 75800 + }, + { + "epoch": 67.10882548108826, + "grad_norm": 0.5668012499809265, + "learning_rate": 1.6458001768346595e-05, + "loss": 0.43682758331298827, + "step": 75900 + }, + { + "epoch": 67.19730148197301, + "grad_norm": 0.5451331734657288, + "learning_rate": 1.6413793103448276e-05, + "loss": 0.43744281768798826, + "step": 76000 + }, + { + "epoch": 67.28577748285778, + "grad_norm": 0.5625444650650024, + "learning_rate": 1.6369584438549956e-05, + "loss": 0.44072349548339845, + "step": 76100 + }, + { + "epoch": 67.37425348374254, + "grad_norm": 0.5437332391738892, + "learning_rate": 1.6325375773651637e-05, + "loss": 0.4433360290527344, + "step": 76200 + }, + { + "epoch": 67.46272948462729, + "grad_norm": 0.6005889773368835, + "learning_rate": 1.6281167108753317e-05, + "loss": 0.44355270385742185, + "step": 76300 + }, + { + "epoch": 67.55120548551206, + "grad_norm": 0.6379736065864563, + "learning_rate": 1.6236958443854997e-05, + "loss": 0.4445816421508789, + "step": 76400 + }, + { + "epoch": 67.63968148639681, + "grad_norm": 0.4892788529396057, + "learning_rate": 1.6192749778956675e-05, + "loss": 0.4460066604614258, + "step": 76500 + }, + { + "epoch": 67.72815748728158, + "grad_norm": 0.5238019227981567, + "learning_rate": 1.614854111405836e-05, + "loss": 0.44812583923339844, + "step": 76600 + }, + { + "epoch": 67.81663348816633, + "grad_norm": 0.6448091864585876, + "learning_rate": 1.6104332449160035e-05, + "loss": 0.44679683685302735, + "step": 76700 + }, + { + "epoch": 67.9051094890511, + "grad_norm": 0.501971423625946, + "learning_rate": 1.6060123784261716e-05, + "loss": 0.44675071716308595, + "step": 76800 + }, + { + "epoch": 67.99358548993585, + "grad_norm": 0.5027251243591309, + "learning_rate": 1.6015915119363396e-05, + "loss": 0.450067138671875, + "step": 76900 + }, + { + "epoch": 68.08139792081398, + "grad_norm": 0.5118396878242493, + "learning_rate": 1.5971706454465077e-05, + "loss": 0.4363971710205078, + "step": 77000 + }, + { + "epoch": 68.16987392169874, + "grad_norm": 0.49976325035095215, + "learning_rate": 1.5927497789566757e-05, + "loss": 0.43459579467773435, + "step": 77100 + }, + { + "epoch": 68.2583499225835, + "grad_norm": 0.4591541886329651, + "learning_rate": 1.5883289124668434e-05, + "loss": 0.4374491500854492, + "step": 77200 + }, + { + "epoch": 68.34682592346826, + "grad_norm": 0.5061107277870178, + "learning_rate": 1.5839080459770118e-05, + "loss": 0.4367493438720703, + "step": 77300 + }, + { + "epoch": 68.43530192435301, + "grad_norm": 0.5607414245605469, + "learning_rate": 1.5794871794871795e-05, + "loss": 0.43953250885009765, + "step": 77400 + }, + { + "epoch": 68.52377792523778, + "grad_norm": 0.5758550763130188, + "learning_rate": 1.5750663129973476e-05, + "loss": 0.4412353515625, + "step": 77500 + }, + { + "epoch": 68.61225392612253, + "grad_norm": 0.6092869639396667, + "learning_rate": 1.5706454465075153e-05, + "loss": 0.44133682250976564, + "step": 77600 + }, + { + "epoch": 68.7007299270073, + "grad_norm": 0.6203352808952332, + "learning_rate": 1.5662245800176837e-05, + "loss": 0.4439066696166992, + "step": 77700 + }, + { + "epoch": 68.78920592789206, + "grad_norm": 0.5746839046478271, + "learning_rate": 1.5618037135278517e-05, + "loss": 0.4423197174072266, + "step": 77800 + }, + { + "epoch": 68.87768192877682, + "grad_norm": 0.5136276483535767, + "learning_rate": 1.5573828470380194e-05, + "loss": 0.4460869598388672, + "step": 77900 + }, + { + "epoch": 68.96615792966158, + "grad_norm": 0.4968768358230591, + "learning_rate": 1.5529619805481878e-05, + "loss": 0.4462531280517578, + "step": 78000 + }, + { + "epoch": 69.05397036053971, + "grad_norm": 0.5103012919425964, + "learning_rate": 1.5485411140583555e-05, + "loss": 0.43465484619140626, + "step": 78100 + }, + { + "epoch": 69.14244636142446, + "grad_norm": 0.5626784563064575, + "learning_rate": 1.5441202475685236e-05, + "loss": 0.4333412551879883, + "step": 78200 + }, + { + "epoch": 69.23092236230923, + "grad_norm": 0.5118581652641296, + "learning_rate": 1.5396993810786913e-05, + "loss": 0.4336922836303711, + "step": 78300 + }, + { + "epoch": 69.31939836319398, + "grad_norm": 0.5944911241531372, + "learning_rate": 1.5352785145888596e-05, + "loss": 0.43566287994384767, + "step": 78400 + }, + { + "epoch": 69.40787436407874, + "grad_norm": 0.5433744788169861, + "learning_rate": 1.5308576480990273e-05, + "loss": 0.4361726379394531, + "step": 78500 + }, + { + "epoch": 69.4963503649635, + "grad_norm": 0.614020049571991, + "learning_rate": 1.5264367816091954e-05, + "loss": 0.4380105209350586, + "step": 78600 + }, + { + "epoch": 69.58482636584826, + "grad_norm": 0.5004254579544067, + "learning_rate": 1.5220159151193636e-05, + "loss": 0.4391395950317383, + "step": 78700 + }, + { + "epoch": 69.67330236673303, + "grad_norm": 0.522055983543396, + "learning_rate": 1.5175950486295315e-05, + "loss": 0.4396755599975586, + "step": 78800 + }, + { + "epoch": 69.76177836761778, + "grad_norm": 0.524988055229187, + "learning_rate": 1.5131741821396994e-05, + "loss": 0.4374229431152344, + "step": 78900 + }, + { + "epoch": 69.85025436850255, + "grad_norm": 0.5780676603317261, + "learning_rate": 1.5087533156498674e-05, + "loss": 0.4402974319458008, + "step": 79000 + }, + { + "epoch": 69.9387303693873, + "grad_norm": 0.5651708841323853, + "learning_rate": 1.5043324491600355e-05, + "loss": 0.44202667236328125, + "step": 79100 + }, + { + "epoch": 70.02654280026543, + "grad_norm": 0.48370227217674255, + "learning_rate": 1.4999557913351018e-05, + "loss": 0.4367184829711914, + "step": 79200 + }, + { + "epoch": 70.11501880115019, + "grad_norm": 0.5551156401634216, + "learning_rate": 1.4955349248452696e-05, + "loss": 0.42862590789794924, + "step": 79300 + }, + { + "epoch": 70.20349480203495, + "grad_norm": 0.5126725435256958, + "learning_rate": 1.4911140583554379e-05, + "loss": 0.4319373321533203, + "step": 79400 + }, + { + "epoch": 70.2919708029197, + "grad_norm": 0.5189195871353149, + "learning_rate": 1.4866931918656057e-05, + "loss": 0.4309040832519531, + "step": 79500 + }, + { + "epoch": 70.38044680380447, + "grad_norm": 0.49422213435173035, + "learning_rate": 1.4822723253757736e-05, + "loss": 0.43275665283203124, + "step": 79600 + }, + { + "epoch": 70.46892280468923, + "grad_norm": 0.49081242084503174, + "learning_rate": 1.4778514588859418e-05, + "loss": 0.4326107406616211, + "step": 79700 + }, + { + "epoch": 70.55739880557398, + "grad_norm": 0.5408063530921936, + "learning_rate": 1.4734305923961097e-05, + "loss": 0.4341436004638672, + "step": 79800 + }, + { + "epoch": 70.64587480645875, + "grad_norm": 0.4664778411388397, + "learning_rate": 1.4690097259062778e-05, + "loss": 0.4358782577514648, + "step": 79900 + }, + { + "epoch": 70.7343508073435, + "grad_norm": 0.5463866591453552, + "learning_rate": 1.4645888594164456e-05, + "loss": 0.4348703384399414, + "step": 80000 + }, + { + "epoch": 70.82282680822827, + "grad_norm": 0.5187687873840332, + "learning_rate": 1.4601679929266138e-05, + "loss": 0.43734962463378907, + "step": 80100 + }, + { + "epoch": 70.91130280911302, + "grad_norm": 0.4700576961040497, + "learning_rate": 1.4557471264367817e-05, + "loss": 0.43692012786865236, + "step": 80200 + }, + { + "epoch": 70.99977880999779, + "grad_norm": 0.5413524508476257, + "learning_rate": 1.4513262599469496e-05, + "loss": 0.43848495483398436, + "step": 80300 + }, + { + "epoch": 71.08759124087591, + "grad_norm": 0.5619797110557556, + "learning_rate": 1.4469053934571178e-05, + "loss": 0.4241709899902344, + "step": 80400 + }, + { + "epoch": 71.17606724176068, + "grad_norm": 0.5617126226425171, + "learning_rate": 1.4424845269672857e-05, + "loss": 0.42585777282714843, + "step": 80500 + }, + { + "epoch": 71.26454324264543, + "grad_norm": 0.6131432056427002, + "learning_rate": 1.4380636604774536e-05, + "loss": 0.42857707977294923, + "step": 80600 + }, + { + "epoch": 71.3530192435302, + "grad_norm": 0.5178084969520569, + "learning_rate": 1.4336427939876216e-05, + "loss": 0.4283063507080078, + "step": 80700 + }, + { + "epoch": 71.44149524441495, + "grad_norm": 0.4994112253189087, + "learning_rate": 1.4292219274977897e-05, + "loss": 0.43106334686279296, + "step": 80800 + }, + { + "epoch": 71.5299712452997, + "grad_norm": 0.5411744713783264, + "learning_rate": 1.4248010610079577e-05, + "loss": 0.43190105438232423, + "step": 80900 + }, + { + "epoch": 71.61844724618447, + "grad_norm": 0.5602013468742371, + "learning_rate": 1.4203801945181256e-05, + "loss": 0.4335565185546875, + "step": 81000 + }, + { + "epoch": 71.70692324706923, + "grad_norm": 0.5469107031822205, + "learning_rate": 1.4159593280282938e-05, + "loss": 0.4339017105102539, + "step": 81100 + }, + { + "epoch": 71.795399247954, + "grad_norm": 0.5971689224243164, + "learning_rate": 1.4115384615384617e-05, + "loss": 0.43302181243896487, + "step": 81200 + }, + { + "epoch": 71.88387524883875, + "grad_norm": 0.5518947243690491, + "learning_rate": 1.4071175950486295e-05, + "loss": 0.4339981460571289, + "step": 81300 + }, + { + "epoch": 71.97235124972352, + "grad_norm": 0.46094366908073425, + "learning_rate": 1.4026967285587974e-05, + "loss": 0.4368946075439453, + "step": 81400 + }, + { + "epoch": 72.06016368060163, + "grad_norm": 0.5013940334320068, + "learning_rate": 1.3983200707338639e-05, + "loss": 0.4272830581665039, + "step": 81500 + }, + { + "epoch": 72.1486396814864, + "grad_norm": 0.5779539346694946, + "learning_rate": 1.3938992042440318e-05, + "loss": 0.4237482452392578, + "step": 81600 + }, + { + "epoch": 72.23711568237115, + "grad_norm": 0.5799530744552612, + "learning_rate": 1.3894783377541998e-05, + "loss": 0.4221677398681641, + "step": 81700 + }, + { + "epoch": 72.32559168325592, + "grad_norm": 0.4773975908756256, + "learning_rate": 1.385057471264368e-05, + "loss": 0.4251049041748047, + "step": 81800 + }, + { + "epoch": 72.41406768414068, + "grad_norm": 0.5311180353164673, + "learning_rate": 1.380636604774536e-05, + "loss": 0.42632369995117186, + "step": 81900 + }, + { + "epoch": 72.50254368502544, + "grad_norm": 0.47812601923942566, + "learning_rate": 1.3762157382847038e-05, + "loss": 0.42722888946533205, + "step": 82000 + }, + { + "epoch": 72.5910196859102, + "grad_norm": 0.606674313545227, + "learning_rate": 1.371794871794872e-05, + "loss": 0.4295787811279297, + "step": 82100 + }, + { + "epoch": 72.67949568679495, + "grad_norm": 0.5414536595344543, + "learning_rate": 1.3673740053050399e-05, + "loss": 0.4311911392211914, + "step": 82200 + }, + { + "epoch": 72.76797168767972, + "grad_norm": 0.5214236974716187, + "learning_rate": 1.3629531388152078e-05, + "loss": 0.4323184585571289, + "step": 82300 + }, + { + "epoch": 72.85644768856447, + "grad_norm": 0.531461238861084, + "learning_rate": 1.3585322723253756e-05, + "loss": 0.43523616790771485, + "step": 82400 + }, + { + "epoch": 72.94492368944924, + "grad_norm": 0.550273597240448, + "learning_rate": 1.3541114058355439e-05, + "loss": 0.4310142517089844, + "step": 82500 + }, + { + "epoch": 73.03273612032736, + "grad_norm": 0.47776085138320923, + "learning_rate": 1.3496905393457119e-05, + "loss": 0.4287875747680664, + "step": 82600 + }, + { + "epoch": 73.12121212121212, + "grad_norm": 0.4990812838077545, + "learning_rate": 1.3452696728558798e-05, + "loss": 0.42051288604736325, + "step": 82700 + }, + { + "epoch": 73.20968812209688, + "grad_norm": 0.5124841332435608, + "learning_rate": 1.340848806366048e-05, + "loss": 0.4193102264404297, + "step": 82800 + }, + { + "epoch": 73.29816412298165, + "grad_norm": 0.5289502739906311, + "learning_rate": 1.3364279398762159e-05, + "loss": 0.42208141326904297, + "step": 82900 + }, + { + "epoch": 73.3866401238664, + "grad_norm": 0.4958449602127075, + "learning_rate": 1.3320070733863837e-05, + "loss": 0.42313686370849607, + "step": 83000 + }, + { + "epoch": 73.47511612475117, + "grad_norm": 0.5278774499893188, + "learning_rate": 1.3275862068965516e-05, + "loss": 0.42546688079833983, + "step": 83100 + }, + { + "epoch": 73.56359212563592, + "grad_norm": 0.5365238785743713, + "learning_rate": 1.3231653404067198e-05, + "loss": 0.42514255523681643, + "step": 83200 + }, + { + "epoch": 73.65206812652067, + "grad_norm": 0.5327147841453552, + "learning_rate": 1.3187444739168877e-05, + "loss": 0.42642066955566404, + "step": 83300 + }, + { + "epoch": 73.74054412740544, + "grad_norm": 0.5245737433433533, + "learning_rate": 1.3143236074270558e-05, + "loss": 0.4263890838623047, + "step": 83400 + }, + { + "epoch": 73.8290201282902, + "grad_norm": 0.5159674286842346, + "learning_rate": 1.3099027409372238e-05, + "loss": 0.428508415222168, + "step": 83500 + }, + { + "epoch": 73.91749612917496, + "grad_norm": 0.47965142130851746, + "learning_rate": 1.3054818744473918e-05, + "loss": 0.42886260986328123, + "step": 83600 + }, + { + "epoch": 74.00530856005308, + "grad_norm": 0.573679506778717, + "learning_rate": 1.301105216622458e-05, + "loss": 0.4288605499267578, + "step": 83700 + }, + { + "epoch": 74.09378456093785, + "grad_norm": 0.5544322729110718, + "learning_rate": 1.2966843501326262e-05, + "loss": 0.4174742126464844, + "step": 83800 + }, + { + "epoch": 74.1822605618226, + "grad_norm": 0.4993799030780792, + "learning_rate": 1.2922634836427941e-05, + "loss": 0.4191867828369141, + "step": 83900 + }, + { + "epoch": 74.27073656270737, + "grad_norm": 0.57634037733078, + "learning_rate": 1.287842617152962e-05, + "loss": 0.42080997467041015, + "step": 84000 + }, + { + "epoch": 74.35921256359212, + "grad_norm": 0.5524028539657593, + "learning_rate": 1.2834217506631298e-05, + "loss": 0.41995132446289063, + "step": 84100 + }, + { + "epoch": 74.44768856447689, + "grad_norm": 0.5109556913375854, + "learning_rate": 1.279000884173298e-05, + "loss": 0.4207102584838867, + "step": 84200 + }, + { + "epoch": 74.53616456536164, + "grad_norm": 0.6384374499320984, + "learning_rate": 1.2745800176834661e-05, + "loss": 0.42162609100341797, + "step": 84300 + }, + { + "epoch": 74.6246405662464, + "grad_norm": 0.5029319524765015, + "learning_rate": 1.270159151193634e-05, + "loss": 0.4232307815551758, + "step": 84400 + }, + { + "epoch": 74.71311656713117, + "grad_norm": 0.49697303771972656, + "learning_rate": 1.2657382847038022e-05, + "loss": 0.4233212661743164, + "step": 84500 + }, + { + "epoch": 74.80159256801592, + "grad_norm": 0.5748586058616638, + "learning_rate": 1.26131741821397e-05, + "loss": 0.42522281646728516, + "step": 84600 + }, + { + "epoch": 74.89006856890069, + "grad_norm": 0.5335224866867065, + "learning_rate": 1.256896551724138e-05, + "loss": 0.4264080047607422, + "step": 84700 + }, + { + "epoch": 74.97854456978544, + "grad_norm": 0.5223293900489807, + "learning_rate": 1.2524756852343058e-05, + "loss": 0.4248130416870117, + "step": 84800 + }, + { + "epoch": 75.06635700066357, + "grad_norm": 0.588205099105835, + "learning_rate": 1.2480548187444739e-05, + "loss": 0.41714618682861326, + "step": 84900 + }, + { + "epoch": 75.15483300154833, + "grad_norm": 0.4878210127353668, + "learning_rate": 1.2436339522546419e-05, + "loss": 0.41694087982177735, + "step": 85000 + }, + { + "epoch": 75.2433090024331, + "grad_norm": 0.5826809406280518, + "learning_rate": 1.23921308576481e-05, + "loss": 0.41839481353759767, + "step": 85100 + }, + { + "epoch": 75.33178500331785, + "grad_norm": 0.5703395009040833, + "learning_rate": 1.234792219274978e-05, + "loss": 0.419650993347168, + "step": 85200 + }, + { + "epoch": 75.42026100420262, + "grad_norm": 0.5960374474525452, + "learning_rate": 1.230371352785146e-05, + "loss": 0.41910491943359374, + "step": 85300 + }, + { + "epoch": 75.50873700508737, + "grad_norm": 0.5564795732498169, + "learning_rate": 1.225950486295314e-05, + "loss": 0.42010501861572264, + "step": 85400 + }, + { + "epoch": 75.59721300597214, + "grad_norm": 0.5871827006340027, + "learning_rate": 1.221529619805482e-05, + "loss": 0.41939094543457034, + "step": 85500 + }, + { + "epoch": 75.68568900685689, + "grad_norm": 0.6139041185379028, + "learning_rate": 1.2171087533156498e-05, + "loss": 0.42172611236572266, + "step": 85600 + }, + { + "epoch": 75.77416500774164, + "grad_norm": 0.5693202614784241, + "learning_rate": 1.2126878868258179e-05, + "loss": 0.4217537307739258, + "step": 85700 + }, + { + "epoch": 75.86264100862641, + "grad_norm": 0.5371018648147583, + "learning_rate": 1.208267020335986e-05, + "loss": 0.4220458984375, + "step": 85800 + }, + { + "epoch": 75.95111700951117, + "grad_norm": 0.5617541074752808, + "learning_rate": 1.2038461538461538e-05, + "loss": 0.4248412322998047, + "step": 85900 + }, + { + "epoch": 76.0389294403893, + "grad_norm": 0.5177831649780273, + "learning_rate": 1.1994694960212203e-05, + "loss": 0.41939964294433596, + "step": 86000 + }, + { + "epoch": 76.12740544127405, + "grad_norm": 0.5142802000045776, + "learning_rate": 1.1950486295313883e-05, + "loss": 0.4111063003540039, + "step": 86100 + }, + { + "epoch": 76.21588144215882, + "grad_norm": 0.4861648976802826, + "learning_rate": 1.1906277630415562e-05, + "loss": 0.4148457717895508, + "step": 86200 + }, + { + "epoch": 76.30435744304357, + "grad_norm": 0.5097411870956421, + "learning_rate": 1.1862068965517243e-05, + "loss": 0.4158660125732422, + "step": 86300 + }, + { + "epoch": 76.39283344392834, + "grad_norm": 0.4740864336490631, + "learning_rate": 1.1817860300618921e-05, + "loss": 0.4178118133544922, + "step": 86400 + }, + { + "epoch": 76.48130944481309, + "grad_norm": 0.44249430298805237, + "learning_rate": 1.1773651635720602e-05, + "loss": 0.4165281677246094, + "step": 86500 + }, + { + "epoch": 76.56978544569786, + "grad_norm": 0.5490387082099915, + "learning_rate": 1.172944297082228e-05, + "loss": 0.4198506927490234, + "step": 86600 + }, + { + "epoch": 76.65826144658261, + "grad_norm": 0.5175479650497437, + "learning_rate": 1.1685234305923961e-05, + "loss": 0.4220100402832031, + "step": 86700 + }, + { + "epoch": 76.74673744746737, + "grad_norm": 0.5073688626289368, + "learning_rate": 1.1641025641025642e-05, + "loss": 0.4184294891357422, + "step": 86800 + }, + { + "epoch": 76.83521344835214, + "grad_norm": 0.6137869358062744, + "learning_rate": 1.1596816976127322e-05, + "loss": 0.41919185638427736, + "step": 86900 + }, + { + "epoch": 76.92368944923689, + "grad_norm": 0.5274661183357239, + "learning_rate": 1.1552608311229002e-05, + "loss": 0.4193117141723633, + "step": 87000 + }, + { + "epoch": 77.01150188011502, + "grad_norm": 0.578369677066803, + "learning_rate": 1.1508399646330681e-05, + "loss": 0.4192862701416016, + "step": 87100 + }, + { + "epoch": 77.09997788099977, + "grad_norm": 0.6028936505317688, + "learning_rate": 1.1464190981432362e-05, + "loss": 0.40931896209716795, + "step": 87200 + }, + { + "epoch": 77.18845388188454, + "grad_norm": 0.4915790557861328, + "learning_rate": 1.141998231653404e-05, + "loss": 0.41025619506835936, + "step": 87300 + }, + { + "epoch": 77.2769298827693, + "grad_norm": 0.5164591073989868, + "learning_rate": 1.1375773651635721e-05, + "loss": 0.4112412643432617, + "step": 87400 + }, + { + "epoch": 77.36540588365406, + "grad_norm": 0.48311275243759155, + "learning_rate": 1.1331564986737401e-05, + "loss": 0.4144105911254883, + "step": 87500 + }, + { + "epoch": 77.45388188453882, + "grad_norm": 0.46419015526771545, + "learning_rate": 1.128735632183908e-05, + "loss": 0.41563541412353516, + "step": 87600 + }, + { + "epoch": 77.54235788542358, + "grad_norm": 0.6288944482803345, + "learning_rate": 1.124314765694076e-05, + "loss": 0.41669620513916017, + "step": 87700 + }, + { + "epoch": 77.63083388630834, + "grad_norm": 0.497126966714859, + "learning_rate": 1.1198938992042441e-05, + "loss": 0.41618637084960936, + "step": 87800 + }, + { + "epoch": 77.7193098871931, + "grad_norm": 0.5373407602310181, + "learning_rate": 1.1154730327144122e-05, + "loss": 0.41614810943603514, + "step": 87900 + }, + { + "epoch": 77.80778588807786, + "grad_norm": 0.519382894039154, + "learning_rate": 1.1110521662245802e-05, + "loss": 0.41859901428222657, + "step": 88000 + }, + { + "epoch": 77.89626188896261, + "grad_norm": 0.5001983046531677, + "learning_rate": 1.106631299734748e-05, + "loss": 0.418219108581543, + "step": 88100 + }, + { + "epoch": 77.98473788984738, + "grad_norm": 0.5034019947052002, + "learning_rate": 1.1022104332449161e-05, + "loss": 0.4178015899658203, + "step": 88200 + }, + { + "epoch": 78.0725503207255, + "grad_norm": 0.5158605575561523, + "learning_rate": 1.097789566755084e-05, + "loss": 0.4091143035888672, + "step": 88300 + }, + { + "epoch": 78.16102632161027, + "grad_norm": 0.48502761125564575, + "learning_rate": 1.093368700265252e-05, + "loss": 0.40843994140625, + "step": 88400 + }, + { + "epoch": 78.24950232249502, + "grad_norm": 0.5448765754699707, + "learning_rate": 1.08894783377542e-05, + "loss": 0.4109685516357422, + "step": 88500 + }, + { + "epoch": 78.33797832337979, + "grad_norm": 0.52455735206604, + "learning_rate": 1.084526967285588e-05, + "loss": 0.4108180236816406, + "step": 88600 + }, + { + "epoch": 78.42645432426454, + "grad_norm": 0.49440670013427734, + "learning_rate": 1.080106100795756e-05, + "loss": 0.41148426055908205, + "step": 88700 + }, + { + "epoch": 78.51493032514931, + "grad_norm": 0.5575434565544128, + "learning_rate": 1.075685234305924e-05, + "loss": 0.4121563720703125, + "step": 88800 + }, + { + "epoch": 78.60340632603406, + "grad_norm": 0.5276569724082947, + "learning_rate": 1.0712643678160921e-05, + "loss": 0.41357189178466797, + "step": 88900 + }, + { + "epoch": 78.69188232691883, + "grad_norm": 0.5279592871665955, + "learning_rate": 1.06684350132626e-05, + "loss": 0.4147018814086914, + "step": 89000 + }, + { + "epoch": 78.78035832780358, + "grad_norm": 0.4984647333621979, + "learning_rate": 1.062422634836428e-05, + "loss": 0.41413829803466795, + "step": 89100 + }, + { + "epoch": 78.86883432868834, + "grad_norm": 0.5556148886680603, + "learning_rate": 1.0580017683465959e-05, + "loss": 0.4168708419799805, + "step": 89200 + }, + { + "epoch": 78.9573103295731, + "grad_norm": 0.46219438314437866, + "learning_rate": 1.053580901856764e-05, + "loss": 0.41841983795166016, + "step": 89300 + }, + { + "epoch": 79.04512276045122, + "grad_norm": 0.49136674404144287, + "learning_rate": 1.0492042440318303e-05, + "loss": 0.41013729095458984, + "step": 89400 + }, + { + "epoch": 79.13359876133599, + "grad_norm": 0.5096011161804199, + "learning_rate": 1.0447833775419983e-05, + "loss": 0.4057589340209961, + "step": 89500 + }, + { + "epoch": 79.22207476222074, + "grad_norm": 0.4563368558883667, + "learning_rate": 1.0403625110521663e-05, + "loss": 0.4064152526855469, + "step": 89600 + }, + { + "epoch": 79.31055076310551, + "grad_norm": 0.5743097066879272, + "learning_rate": 1.0359416445623344e-05, + "loss": 0.40998432159423825, + "step": 89700 + }, + { + "epoch": 79.39902676399026, + "grad_norm": 0.46749743819236755, + "learning_rate": 1.0315207780725023e-05, + "loss": 0.40825595855712893, + "step": 89800 + }, + { + "epoch": 79.48750276487503, + "grad_norm": 0.522980272769928, + "learning_rate": 1.0270999115826703e-05, + "loss": 0.4116529083251953, + "step": 89900 + }, + { + "epoch": 79.57597876575979, + "grad_norm": 0.4576069712638855, + "learning_rate": 1.0226790450928382e-05, + "loss": 0.41039798736572264, + "step": 90000 + }, + { + "epoch": 79.66445476664455, + "grad_norm": 0.574553370475769, + "learning_rate": 1.0182581786030062e-05, + "loss": 0.4103997802734375, + "step": 90100 + }, + { + "epoch": 79.7529307675293, + "grad_norm": 0.5592597126960754, + "learning_rate": 1.0138373121131741e-05, + "loss": 0.4123684310913086, + "step": 90200 + }, + { + "epoch": 79.84140676841407, + "grad_norm": 0.5754570364952087, + "learning_rate": 1.0094164456233422e-05, + "loss": 0.4138601684570313, + "step": 90300 + }, + { + "epoch": 79.92988276929883, + "grad_norm": 0.5830336213111877, + "learning_rate": 1.0049955791335102e-05, + "loss": 0.41378173828125, + "step": 90400 + }, + { + "epoch": 80.01769520017695, + "grad_norm": 0.473369836807251, + "learning_rate": 1.0005747126436783e-05, + "loss": 0.41222110748291013, + "step": 90500 + }, + { + "epoch": 80.10617120106171, + "grad_norm": 0.5327860116958618, + "learning_rate": 9.961538461538463e-06, + "loss": 0.4058869934082031, + "step": 90600 + }, + { + "epoch": 80.19464720194647, + "grad_norm": 0.5304612517356873, + "learning_rate": 9.917329796640142e-06, + "loss": 0.4061882781982422, + "step": 90700 + }, + { + "epoch": 80.28312320283123, + "grad_norm": 0.5240916013717651, + "learning_rate": 9.873121131741822e-06, + "loss": 0.40706119537353513, + "step": 90800 + }, + { + "epoch": 80.37159920371599, + "grad_norm": 0.4663858413696289, + "learning_rate": 9.828912466843501e-06, + "loss": 0.4077639389038086, + "step": 90900 + }, + { + "epoch": 80.46007520460076, + "grad_norm": 0.4718465805053711, + "learning_rate": 9.784703801945181e-06, + "loss": 0.4078546905517578, + "step": 91000 + }, + { + "epoch": 80.54855120548551, + "grad_norm": 0.45132529735565186, + "learning_rate": 9.740495137046862e-06, + "loss": 0.40724002838134765, + "step": 91100 + }, + { + "epoch": 80.63702720637028, + "grad_norm": 0.4961422085762024, + "learning_rate": 9.69628647214854e-06, + "loss": 0.4097640609741211, + "step": 91200 + }, + { + "epoch": 80.72550320725503, + "grad_norm": 0.5276188850402832, + "learning_rate": 9.652077807250221e-06, + "loss": 0.41011890411376956, + "step": 91300 + }, + { + "epoch": 80.8139792081398, + "grad_norm": 0.48676180839538574, + "learning_rate": 9.607869142351902e-06, + "loss": 0.41075672149658204, + "step": 91400 + }, + { + "epoch": 80.90245520902455, + "grad_norm": 0.5812916159629822, + "learning_rate": 9.563660477453582e-06, + "loss": 0.4131761932373047, + "step": 91500 + }, + { + "epoch": 80.9909312099093, + "grad_norm": 0.5730577707290649, + "learning_rate": 9.51945181255526e-06, + "loss": 0.41234848022460935, + "step": 91600 + }, + { + "epoch": 81.07874364078744, + "grad_norm": 0.5240619778633118, + "learning_rate": 9.475685234305924e-06, + "loss": 0.40376312255859376, + "step": 91700 + }, + { + "epoch": 81.16721964167219, + "grad_norm": 0.46626827120780945, + "learning_rate": 9.431476569407604e-06, + "loss": 0.40396995544433595, + "step": 91800 + }, + { + "epoch": 81.25569564255696, + "grad_norm": 0.49117109179496765, + "learning_rate": 9.387267904509283e-06, + "loss": 0.4028842544555664, + "step": 91900 + }, + { + "epoch": 81.34417164344171, + "grad_norm": 0.5428334474563599, + "learning_rate": 9.343059239610964e-06, + "loss": 0.4046338653564453, + "step": 92000 + }, + { + "epoch": 81.43264764432648, + "grad_norm": 0.5240166783332825, + "learning_rate": 9.298850574712644e-06, + "loss": 0.4052513885498047, + "step": 92100 + }, + { + "epoch": 81.52112364521123, + "grad_norm": 0.4899362325668335, + "learning_rate": 9.254641909814325e-06, + "loss": 0.4052754974365234, + "step": 92200 + }, + { + "epoch": 81.609599646096, + "grad_norm": 0.46969664096832275, + "learning_rate": 9.210433244916005e-06, + "loss": 0.4072676086425781, + "step": 92300 + }, + { + "epoch": 81.69807564698075, + "grad_norm": 0.4990880489349365, + "learning_rate": 9.166224580017684e-06, + "loss": 0.40702415466308595, + "step": 92400 + }, + { + "epoch": 81.78655164786552, + "grad_norm": 0.5545535087585449, + "learning_rate": 9.122015915119364e-06, + "loss": 0.4103099822998047, + "step": 92500 + }, + { + "epoch": 81.87502764875028, + "grad_norm": 0.5591033101081848, + "learning_rate": 9.077807250221043e-06, + "loss": 0.4087317276000977, + "step": 92600 + }, + { + "epoch": 81.96350364963503, + "grad_norm": 0.5289734601974487, + "learning_rate": 9.033598585322723e-06, + "loss": 0.4112258529663086, + "step": 92700 + }, + { + "epoch": 82.05131608051316, + "grad_norm": 0.59573894739151, + "learning_rate": 8.989389920424404e-06, + "loss": 0.40506195068359374, + "step": 92800 + }, + { + "epoch": 82.13979208139791, + "grad_norm": 0.4581588804721832, + "learning_rate": 8.945181255526083e-06, + "loss": 0.401633186340332, + "step": 92900 + }, + { + "epoch": 82.22826808228268, + "grad_norm": 0.4607727527618408, + "learning_rate": 8.900972590627763e-06, + "loss": 0.4030620193481445, + "step": 93000 + }, + { + "epoch": 82.31674408316744, + "grad_norm": 0.5693869590759277, + "learning_rate": 8.856763925729444e-06, + "loss": 0.4034944152832031, + "step": 93100 + }, + { + "epoch": 82.4052200840522, + "grad_norm": 0.4679562449455261, + "learning_rate": 8.812555260831124e-06, + "loss": 0.40353385925292967, + "step": 93200 + }, + { + "epoch": 82.49369608493696, + "grad_norm": 0.4970017373561859, + "learning_rate": 8.768346595932803e-06, + "loss": 0.4040465545654297, + "step": 93300 + }, + { + "epoch": 82.58217208582172, + "grad_norm": 0.4850037097930908, + "learning_rate": 8.724137931034483e-06, + "loss": 0.40520496368408204, + "step": 93400 + }, + { + "epoch": 82.67064808670648, + "grad_norm": 0.5304952263832092, + "learning_rate": 8.679929266136164e-06, + "loss": 0.4062754440307617, + "step": 93500 + }, + { + "epoch": 82.75912408759125, + "grad_norm": 0.5124515891075134, + "learning_rate": 8.635720601237842e-06, + "loss": 0.4042987442016602, + "step": 93600 + }, + { + "epoch": 82.847600088476, + "grad_norm": 0.5527506470680237, + "learning_rate": 8.591511936339523e-06, + "loss": 0.4051095199584961, + "step": 93700 + }, + { + "epoch": 82.93607608936077, + "grad_norm": 0.4627765119075775, + "learning_rate": 8.547303271441202e-06, + "loss": 0.4065189743041992, + "step": 93800 + }, + { + "epoch": 83.02388852023888, + "grad_norm": 0.47690948843955994, + "learning_rate": 8.503094606542882e-06, + "loss": 0.4059687042236328, + "step": 93900 + }, + { + "epoch": 83.11236452112365, + "grad_norm": 0.543329656124115, + "learning_rate": 8.458885941644563e-06, + "loss": 0.40105613708496096, + "step": 94000 + }, + { + "epoch": 83.2008405220084, + "grad_norm": 0.5308240056037903, + "learning_rate": 8.414677276746243e-06, + "loss": 0.3999287414550781, + "step": 94100 + }, + { + "epoch": 83.28931652289316, + "grad_norm": 0.5098600387573242, + "learning_rate": 8.370468611847924e-06, + "loss": 0.3998809051513672, + "step": 94200 + }, + { + "epoch": 83.37779252377793, + "grad_norm": 0.5461894273757935, + "learning_rate": 8.326259946949602e-06, + "loss": 0.4027032470703125, + "step": 94300 + }, + { + "epoch": 83.46626852466268, + "grad_norm": 0.5599612593650818, + "learning_rate": 8.282051282051283e-06, + "loss": 0.4018612289428711, + "step": 94400 + }, + { + "epoch": 83.55474452554745, + "grad_norm": 0.5953245162963867, + "learning_rate": 8.237842617152961e-06, + "loss": 0.4048320770263672, + "step": 94500 + }, + { + "epoch": 83.6432205264322, + "grad_norm": 0.5232775211334229, + "learning_rate": 8.193633952254642e-06, + "loss": 0.40312889099121096, + "step": 94600 + }, + { + "epoch": 83.73169652731697, + "grad_norm": 0.5057620406150818, + "learning_rate": 8.149425287356322e-06, + "loss": 0.4016009521484375, + "step": 94700 + }, + { + "epoch": 83.82017252820172, + "grad_norm": 0.54839026927948, + "learning_rate": 8.105216622458001e-06, + "loss": 0.40390682220458984, + "step": 94800 + }, + { + "epoch": 83.90864852908649, + "grad_norm": 0.42211759090423584, + "learning_rate": 8.061007957559683e-06, + "loss": 0.4043146514892578, + "step": 94900 + }, + { + "epoch": 83.99712452997125, + "grad_norm": 0.46576666831970215, + "learning_rate": 8.016799292661362e-06, + "loss": 0.4071781539916992, + "step": 95000 + }, + { + "epoch": 84.08493696084938, + "grad_norm": 0.48286134004592896, + "learning_rate": 7.973032714412025e-06, + "loss": 0.3980902862548828, + "step": 95100 + }, + { + "epoch": 84.17341296173413, + "grad_norm": 0.5105409026145935, + "learning_rate": 7.928824049513706e-06, + "loss": 0.39626029968261717, + "step": 95200 + }, + { + "epoch": 84.26188896261888, + "grad_norm": 0.5280846357345581, + "learning_rate": 7.884615384615384e-06, + "loss": 0.39923973083496095, + "step": 95300 + }, + { + "epoch": 84.35036496350365, + "grad_norm": 0.49487778544425964, + "learning_rate": 7.840406719717065e-06, + "loss": 0.39867469787597654, + "step": 95400 + }, + { + "epoch": 84.4388409643884, + "grad_norm": 0.5105910897254944, + "learning_rate": 7.796198054818744e-06, + "loss": 0.4000941467285156, + "step": 95500 + }, + { + "epoch": 84.52731696527317, + "grad_norm": 0.49424290657043457, + "learning_rate": 7.751989389920424e-06, + "loss": 0.4025596618652344, + "step": 95600 + }, + { + "epoch": 84.61579296615793, + "grad_norm": 0.5923288464546204, + "learning_rate": 7.707780725022105e-06, + "loss": 0.40207050323486326, + "step": 95700 + }, + { + "epoch": 84.7042689670427, + "grad_norm": 0.47270065546035767, + "learning_rate": 7.663572060123785e-06, + "loss": 0.40140762329101565, + "step": 95800 + }, + { + "epoch": 84.79274496792745, + "grad_norm": 0.4515872597694397, + "learning_rate": 7.619363395225465e-06, + "loss": 0.4039121627807617, + "step": 95900 + }, + { + "epoch": 84.88122096881222, + "grad_norm": 0.5799027681350708, + "learning_rate": 7.575154730327144e-06, + "loss": 0.40215221405029294, + "step": 96000 + }, + { + "epoch": 84.96969696969697, + "grad_norm": 0.5158770680427551, + "learning_rate": 7.530946065428825e-06, + "loss": 0.40449161529541017, + "step": 96100 + }, + { + "epoch": 85.0575094005751, + "grad_norm": 0.5103220343589783, + "learning_rate": 7.4867374005305035e-06, + "loss": 0.3986453628540039, + "step": 96200 + }, + { + "epoch": 85.14598540145985, + "grad_norm": 0.48847347497940063, + "learning_rate": 7.442528735632184e-06, + "loss": 0.3962085723876953, + "step": 96300 + }, + { + "epoch": 85.2344614023446, + "grad_norm": 0.5786899328231812, + "learning_rate": 7.398320070733865e-06, + "loss": 0.398316535949707, + "step": 96400 + }, + { + "epoch": 85.32293740322937, + "grad_norm": 0.4464615285396576, + "learning_rate": 7.354111405835544e-06, + "loss": 0.39748287200927734, + "step": 96500 + }, + { + "epoch": 85.41141340411413, + "grad_norm": 0.5107320547103882, + "learning_rate": 7.3099027409372245e-06, + "loss": 0.399218864440918, + "step": 96600 + }, + { + "epoch": 85.4998894049989, + "grad_norm": 0.5555247068405151, + "learning_rate": 7.265694076038903e-06, + "loss": 0.40016975402832033, + "step": 96700 + }, + { + "epoch": 85.58836540588365, + "grad_norm": 0.46809983253479004, + "learning_rate": 7.2214854111405845e-06, + "loss": 0.39977962493896485, + "step": 96800 + }, + { + "epoch": 85.67684140676842, + "grad_norm": 0.5176143646240234, + "learning_rate": 7.177276746242263e-06, + "loss": 0.39803340911865237, + "step": 96900 + }, + { + "epoch": 85.76531740765317, + "grad_norm": 0.4717543125152588, + "learning_rate": 7.133068081343944e-06, + "loss": 0.4004299545288086, + "step": 97000 + }, + { + "epoch": 85.85379340853794, + "grad_norm": 0.49673059582710266, + "learning_rate": 7.088859416445624e-06, + "loss": 0.40104530334472654, + "step": 97100 + }, + { + "epoch": 85.94226940942269, + "grad_norm": 0.5706076622009277, + "learning_rate": 7.044650751547304e-06, + "loss": 0.40007728576660156, + "step": 97200 + }, + { + "epoch": 86.03008184030082, + "grad_norm": 0.5170352458953857, + "learning_rate": 7.000884173297967e-06, + "loss": 0.39897975921630857, + "step": 97300 + }, + { + "epoch": 86.11855784118558, + "grad_norm": 0.478630930185318, + "learning_rate": 6.956675508399646e-06, + "loss": 0.3933698272705078, + "step": 97400 + }, + { + "epoch": 86.20703384207035, + "grad_norm": 0.5094186067581177, + "learning_rate": 6.912466843501326e-06, + "loss": 0.39624488830566407, + "step": 97500 + }, + { + "epoch": 86.2955098429551, + "grad_norm": 0.5107275247573853, + "learning_rate": 6.868258178603007e-06, + "loss": 0.39685150146484377, + "step": 97600 + }, + { + "epoch": 86.38398584383985, + "grad_norm": 0.5861279964447021, + "learning_rate": 6.824049513704686e-06, + "loss": 0.3973454284667969, + "step": 97700 + }, + { + "epoch": 86.47246184472462, + "grad_norm": 0.490012526512146, + "learning_rate": 6.779840848806367e-06, + "loss": 0.3982046127319336, + "step": 97800 + }, + { + "epoch": 86.56093784560937, + "grad_norm": 0.47647538781166077, + "learning_rate": 6.7356321839080455e-06, + "loss": 0.39851917266845704, + "step": 97900 + }, + { + "epoch": 86.64941384649414, + "grad_norm": 0.45534029603004456, + "learning_rate": 6.691423519009726e-06, + "loss": 0.39754936218261716, + "step": 98000 + }, + { + "epoch": 86.7378898473789, + "grad_norm": 0.5305948257446289, + "learning_rate": 6.647214854111407e-06, + "loss": 0.39900218963623046, + "step": 98100 + }, + { + "epoch": 86.82636584826366, + "grad_norm": 0.48616868257522583, + "learning_rate": 6.603006189213086e-06, + "loss": 0.39878063201904296, + "step": 98200 + }, + { + "epoch": 86.91484184914842, + "grad_norm": 0.4637695252895355, + "learning_rate": 6.5587975243147665e-06, + "loss": 0.39936519622802735, + "step": 98300 + }, + { + "epoch": 87.00265428002655, + "grad_norm": 0.43915867805480957, + "learning_rate": 6.514588859416445e-06, + "loss": 0.39945316314697266, + "step": 98400 + }, + { + "epoch": 87.0911302809113, + "grad_norm": 0.5064729452133179, + "learning_rate": 6.4703801945181265e-06, + "loss": 0.39295291900634766, + "step": 98500 + }, + { + "epoch": 87.17960628179607, + "grad_norm": 0.41172826290130615, + "learning_rate": 6.426171529619805e-06, + "loss": 0.3956099319458008, + "step": 98600 + }, + { + "epoch": 87.26808228268082, + "grad_norm": 0.5156989693641663, + "learning_rate": 6.381962864721486e-06, + "loss": 0.3927472686767578, + "step": 98700 + }, + { + "epoch": 87.35655828356558, + "grad_norm": 0.4864855706691742, + "learning_rate": 6.337754199823166e-06, + "loss": 0.39533439636230466, + "step": 98800 + }, + { + "epoch": 87.44503428445034, + "grad_norm": 0.5469456911087036, + "learning_rate": 6.293545534924846e-06, + "loss": 0.3970512390136719, + "step": 98900 + }, + { + "epoch": 87.5335102853351, + "grad_norm": 0.4618734121322632, + "learning_rate": 6.249336870026525e-06, + "loss": 0.3967998504638672, + "step": 99000 + }, + { + "epoch": 87.62198628621987, + "grad_norm": 0.41789868474006653, + "learning_rate": 6.205128205128206e-06, + "loss": 0.3979497909545898, + "step": 99100 + }, + { + "epoch": 87.71046228710462, + "grad_norm": 0.5439488887786865, + "learning_rate": 6.1609195402298855e-06, + "loss": 0.3960274887084961, + "step": 99200 + }, + { + "epoch": 87.79893828798939, + "grad_norm": 0.46948105096817017, + "learning_rate": 6.116710875331565e-06, + "loss": 0.39781307220458983, + "step": 99300 + }, + { + "epoch": 87.88741428887414, + "grad_norm": 0.4804007411003113, + "learning_rate": 6.0725022104332456e-06, + "loss": 0.39600673675537107, + "step": 99400 + }, + { + "epoch": 87.97589028975891, + "grad_norm": 0.4494355618953705, + "learning_rate": 6.028293545534925e-06, + "loss": 0.3976548385620117, + "step": 99500 + }, + { + "epoch": 88.06370272063702, + "grad_norm": 0.4300312101840973, + "learning_rate": 5.984526967285588e-06, + "loss": 0.3928862762451172, + "step": 99600 + }, + { + "epoch": 88.15217872152179, + "grad_norm": 0.5155128836631775, + "learning_rate": 5.940318302387268e-06, + "loss": 0.39027740478515627, + "step": 99700 + }, + { + "epoch": 88.24065472240655, + "grad_norm": 0.4635615944862366, + "learning_rate": 5.896109637488948e-06, + "loss": 0.3938739776611328, + "step": 99800 + }, + { + "epoch": 88.32913072329131, + "grad_norm": 0.5408588647842407, + "learning_rate": 5.851900972590628e-06, + "loss": 0.3914863967895508, + "step": 99900 + }, + { + "epoch": 88.41760672417607, + "grad_norm": 0.5169259309768677, + "learning_rate": 5.807692307692308e-06, + "loss": 0.3942420959472656, + "step": 100000 + }, + { + "epoch": 88.50608272506082, + "grad_norm": 0.43603307008743286, + "learning_rate": 5.763483642793987e-06, + "loss": 0.3942053604125977, + "step": 100100 + }, + { + "epoch": 88.59455872594559, + "grad_norm": 0.484275758266449, + "learning_rate": 5.719274977895668e-06, + "loss": 0.3953342056274414, + "step": 100200 + }, + { + "epoch": 88.68303472683034, + "grad_norm": 0.4834429621696472, + "learning_rate": 5.675066312997348e-06, + "loss": 0.39478866577148436, + "step": 100300 + }, + { + "epoch": 88.77151072771511, + "grad_norm": 0.5198318362236023, + "learning_rate": 5.630857648099028e-06, + "loss": 0.3973033905029297, + "step": 100400 + }, + { + "epoch": 88.85998672859986, + "grad_norm": 0.5359114408493042, + "learning_rate": 5.586648983200707e-06, + "loss": 0.3963985824584961, + "step": 100500 + }, + { + "epoch": 88.94846272948463, + "grad_norm": 0.47174566984176636, + "learning_rate": 5.542440318302387e-06, + "loss": 0.39962120056152345, + "step": 100600 + }, + { + "epoch": 89.03627516036275, + "grad_norm": 0.5552394986152649, + "learning_rate": 5.498231653404067e-06, + "loss": 0.3942194747924805, + "step": 100700 + }, + { + "epoch": 89.12475116124752, + "grad_norm": 0.4985731840133667, + "learning_rate": 5.454022988505748e-06, + "loss": 0.39029048919677733, + "step": 100800 + }, + { + "epoch": 89.21322716213227, + "grad_norm": 0.5449782013893127, + "learning_rate": 5.4098143236074275e-06, + "loss": 0.391842155456543, + "step": 100900 + }, + { + "epoch": 89.30170316301704, + "grad_norm": 0.47477561235427856, + "learning_rate": 5.365605658709107e-06, + "loss": 0.39065505981445314, + "step": 101000 + }, + { + "epoch": 89.39017916390179, + "grad_norm": 0.5775418281555176, + "learning_rate": 5.3213969938107875e-06, + "loss": 0.39322795867919924, + "step": 101100 + }, + { + "epoch": 89.47865516478655, + "grad_norm": 0.44463786482810974, + "learning_rate": 5.277188328912467e-06, + "loss": 0.3929602813720703, + "step": 101200 + }, + { + "epoch": 89.56713116567131, + "grad_norm": 0.5217382311820984, + "learning_rate": 5.232979664014147e-06, + "loss": 0.3945352172851562, + "step": 101300 + }, + { + "epoch": 89.65560716655607, + "grad_norm": 0.47336575388908386, + "learning_rate": 5.188770999115826e-06, + "loss": 0.3943867492675781, + "step": 101400 + }, + { + "epoch": 89.74408316744083, + "grad_norm": 0.49890655279159546, + "learning_rate": 5.144562334217507e-06, + "loss": 0.39472442626953125, + "step": 101500 + }, + { + "epoch": 89.83255916832559, + "grad_norm": 0.4528096914291382, + "learning_rate": 5.100353669319187e-06, + "loss": 0.3927711868286133, + "step": 101600 + }, + { + "epoch": 89.92103516921036, + "grad_norm": 0.4498828649520874, + "learning_rate": 5.056145004420867e-06, + "loss": 0.3962491226196289, + "step": 101700 + }, + { + "epoch": 90.00884760008847, + "grad_norm": 0.45861297845840454, + "learning_rate": 5.0119363395225465e-06, + "loss": 0.39339271545410154, + "step": 101800 + }, + { + "epoch": 90.09732360097324, + "grad_norm": 0.5762381553649902, + "learning_rate": 4.967727674624226e-06, + "loss": 0.3896630096435547, + "step": 101900 + }, + { + "epoch": 90.185799601858, + "grad_norm": 0.5530878305435181, + "learning_rate": 4.923519009725907e-06, + "loss": 0.38933868408203126, + "step": 102000 + }, + { + "epoch": 90.27427560274276, + "grad_norm": 0.4769279360771179, + "learning_rate": 4.879310344827587e-06, + "loss": 0.38943870544433595, + "step": 102100 + }, + { + "epoch": 90.36275160362752, + "grad_norm": 0.5254392027854919, + "learning_rate": 4.835101679929267e-06, + "loss": 0.39091030120849607, + "step": 102200 + }, + { + "epoch": 90.45122760451227, + "grad_norm": 0.5098690986633301, + "learning_rate": 4.790893015030946e-06, + "loss": 0.39340557098388673, + "step": 102300 + }, + { + "epoch": 90.53970360539704, + "grad_norm": 0.5299240946769714, + "learning_rate": 4.746684350132626e-06, + "loss": 0.3925971221923828, + "step": 102400 + }, + { + "epoch": 90.62817960628179, + "grad_norm": 0.5023613572120667, + "learning_rate": 4.702475685234306e-06, + "loss": 0.3934814453125, + "step": 102500 + }, + { + "epoch": 90.71665560716656, + "grad_norm": 0.5217054486274719, + "learning_rate": 4.658267020335986e-06, + "loss": 0.39229228973388675, + "step": 102600 + }, + { + "epoch": 90.80513160805131, + "grad_norm": 0.4929801821708679, + "learning_rate": 4.6140583554376656e-06, + "loss": 0.39253700256347657, + "step": 102700 + }, + { + "epoch": 90.89360760893608, + "grad_norm": 0.4281506836414337, + "learning_rate": 4.569849690539346e-06, + "loss": 0.39423236846923826, + "step": 102800 + }, + { + "epoch": 90.98208360982083, + "grad_norm": 0.5606275796890259, + "learning_rate": 4.525641025641026e-06, + "loss": 0.39174613952636717, + "step": 102900 + }, + { + "epoch": 91.06989604069896, + "grad_norm": 0.40593966841697693, + "learning_rate": 4.481874447391689e-06, + "loss": 0.39004261016845704, + "step": 103000 + }, + { + "epoch": 91.15837204158372, + "grad_norm": 0.48218822479248047, + "learning_rate": 4.437665782493368e-06, + "loss": 0.39024349212646486, + "step": 103100 + }, + { + "epoch": 91.24684804246849, + "grad_norm": 0.4803628623485565, + "learning_rate": 4.393457117595049e-06, + "loss": 0.3893236541748047, + "step": 103200 + }, + { + "epoch": 91.33532404335324, + "grad_norm": 0.5424004197120667, + "learning_rate": 4.349248452696729e-06, + "loss": 0.3895704650878906, + "step": 103300 + }, + { + "epoch": 91.423800044238, + "grad_norm": 0.4238603711128235, + "learning_rate": 4.305039787798409e-06, + "loss": 0.3891864776611328, + "step": 103400 + }, + { + "epoch": 91.51227604512276, + "grad_norm": 0.5425596833229065, + "learning_rate": 4.2608311229000885e-06, + "loss": 0.3902478408813477, + "step": 103500 + }, + { + "epoch": 91.60075204600751, + "grad_norm": 0.529647946357727, + "learning_rate": 4.216622458001768e-06, + "loss": 0.39207550048828127, + "step": 103600 + }, + { + "epoch": 91.68922804689228, + "grad_norm": 0.42155396938323975, + "learning_rate": 4.1724137931034486e-06, + "loss": 0.3911063766479492, + "step": 103700 + }, + { + "epoch": 91.77770404777704, + "grad_norm": 0.4809010326862335, + "learning_rate": 4.128205128205129e-06, + "loss": 0.3927000427246094, + "step": 103800 + }, + { + "epoch": 91.8661800486618, + "grad_norm": 0.4598400890827179, + "learning_rate": 4.083996463306809e-06, + "loss": 0.38986122131347656, + "step": 103900 + }, + { + "epoch": 91.95465604954656, + "grad_norm": 0.52349853515625, + "learning_rate": 4.039787798408488e-06, + "loss": 0.3922639465332031, + "step": 104000 + }, + { + "epoch": 92.04246848042469, + "grad_norm": 0.5118280053138733, + "learning_rate": 3.996021220159151e-06, + "loss": 0.388396110534668, + "step": 104100 + }, + { + "epoch": 92.13094448130944, + "grad_norm": 0.49287110567092896, + "learning_rate": 3.951812555260832e-06, + "loss": 0.3882394027709961, + "step": 104200 + }, + { + "epoch": 92.21942048219421, + "grad_norm": 0.5597590804100037, + "learning_rate": 3.9076038903625115e-06, + "loss": 0.38768112182617187, + "step": 104300 + }, + { + "epoch": 92.30789648307896, + "grad_norm": 0.49123573303222656, + "learning_rate": 3.863395225464191e-06, + "loss": 0.38717472076416015, + "step": 104400 + }, + { + "epoch": 92.39637248396373, + "grad_norm": 0.5490599870681763, + "learning_rate": 3.819186560565871e-06, + "loss": 0.38968246459960937, + "step": 104500 + }, + { + "epoch": 92.48484848484848, + "grad_norm": 0.563377857208252, + "learning_rate": 3.7749778956675507e-06, + "loss": 0.3879422760009766, + "step": 104600 + }, + { + "epoch": 92.57332448573324, + "grad_norm": 0.5248238444328308, + "learning_rate": 3.7307692307692308e-06, + "loss": 0.3904239654541016, + "step": 104700 + }, + { + "epoch": 92.661800486618, + "grad_norm": 0.5977566242218018, + "learning_rate": 3.6865605658709104e-06, + "loss": 0.39140804290771486, + "step": 104800 + }, + { + "epoch": 92.75027648750276, + "grad_norm": 0.4992641508579254, + "learning_rate": 3.6423519009725912e-06, + "loss": 0.390025749206543, + "step": 104900 + }, + { + "epoch": 92.83875248838753, + "grad_norm": 0.5491787791252136, + "learning_rate": 3.598143236074271e-06, + "loss": 0.39107063293457034, + "step": 105000 + }, + { + "epoch": 92.92722848927228, + "grad_norm": 0.46409890055656433, + "learning_rate": 3.553934571175951e-06, + "loss": 0.3911115264892578, + "step": 105100 + }, + { + "epoch": 93.01504092015041, + "grad_norm": 0.5469849705696106, + "learning_rate": 3.5097259062776305e-06, + "loss": 0.3916855621337891, + "step": 105200 + }, + { + "epoch": 93.10351692103517, + "grad_norm": 0.496277391910553, + "learning_rate": 3.4655172413793105e-06, + "loss": 0.3867160415649414, + "step": 105300 + }, + { + "epoch": 93.19199292191993, + "grad_norm": 0.42929497361183167, + "learning_rate": 3.42130857648099e-06, + "loss": 0.38718021392822266, + "step": 105400 + }, + { + "epoch": 93.28046892280469, + "grad_norm": 0.406601220369339, + "learning_rate": 3.3770999115826706e-06, + "loss": 0.386837272644043, + "step": 105500 + }, + { + "epoch": 93.36894492368945, + "grad_norm": 0.48087212443351746, + "learning_rate": 3.3328912466843506e-06, + "loss": 0.3877327346801758, + "step": 105600 + }, + { + "epoch": 93.45742092457421, + "grad_norm": 0.5117219090461731, + "learning_rate": 3.2886825817860302e-06, + "loss": 0.38803070068359374, + "step": 105700 + }, + { + "epoch": 93.54589692545898, + "grad_norm": 0.6043857932090759, + "learning_rate": 3.2444739168877103e-06, + "loss": 0.38934085845947264, + "step": 105800 + }, + { + "epoch": 93.63437292634373, + "grad_norm": 0.5303599238395691, + "learning_rate": 3.20026525198939e-06, + "loss": 0.3872317123413086, + "step": 105900 + }, + { + "epoch": 93.72284892722848, + "grad_norm": 0.48868313431739807, + "learning_rate": 3.15605658709107e-06, + "loss": 0.3903642272949219, + "step": 106000 + }, + { + "epoch": 93.81132492811325, + "grad_norm": 0.5126668810844421, + "learning_rate": 3.11184792219275e-06, + "loss": 0.3893658447265625, + "step": 106100 + }, + { + "epoch": 93.899800928998, + "grad_norm": 0.5788067579269409, + "learning_rate": 3.06763925729443e-06, + "loss": 0.3887732315063477, + "step": 106200 + }, + { + "epoch": 93.98827692988277, + "grad_norm": 0.5931738615036011, + "learning_rate": 3.0234305923961096e-06, + "loss": 0.3858309555053711, + "step": 106300 + }, + { + "epoch": 94.07608936076089, + "grad_norm": 0.4667378067970276, + "learning_rate": 2.9792219274977896e-06, + "loss": 0.3882503128051758, + "step": 106400 + }, + { + "epoch": 94.16456536164566, + "grad_norm": 0.4540467858314514, + "learning_rate": 2.9350132625994697e-06, + "loss": 0.3879624557495117, + "step": 106500 + }, + { + "epoch": 94.25304136253041, + "grad_norm": 0.5249928832054138, + "learning_rate": 2.8908045977011493e-06, + "loss": 0.3871700668334961, + "step": 106600 + }, + { + "epoch": 94.34151736341518, + "grad_norm": 0.4902016520500183, + "learning_rate": 2.8465959328028297e-06, + "loss": 0.3865641403198242, + "step": 106700 + }, + { + "epoch": 94.42999336429993, + "grad_norm": 0.4490734934806824, + "learning_rate": 2.8023872679045093e-06, + "loss": 0.3874678039550781, + "step": 106800 + }, + { + "epoch": 94.5184693651847, + "grad_norm": 0.39259180426597595, + "learning_rate": 2.7581786030061894e-06, + "loss": 0.3864010238647461, + "step": 106900 + }, + { + "epoch": 94.60694536606945, + "grad_norm": 0.5160086154937744, + "learning_rate": 2.7139699381078694e-06, + "loss": 0.38762042999267576, + "step": 107000 + }, + { + "epoch": 94.6954213669542, + "grad_norm": 0.5112566947937012, + "learning_rate": 2.669761273209549e-06, + "loss": 0.38802257537841794, + "step": 107100 + }, + { + "epoch": 94.78389736783897, + "grad_norm": 0.48586076498031616, + "learning_rate": 2.625552608311229e-06, + "loss": 0.3883600616455078, + "step": 107200 + }, + { + "epoch": 94.87237336872373, + "grad_norm": 0.5169211626052856, + "learning_rate": 2.581343943412909e-06, + "loss": 0.38775413513183593, + "step": 107300 + }, + { + "epoch": 94.9608493696085, + "grad_norm": 0.4262998700141907, + "learning_rate": 2.537135278514589e-06, + "loss": 0.3891670608520508, + "step": 107400 + }, + { + "epoch": 95.04866180048661, + "grad_norm": 0.4452260434627533, + "learning_rate": 2.4929266136162687e-06, + "loss": 0.38474632263183595, + "step": 107500 + }, + { + "epoch": 95.13713780137138, + "grad_norm": 0.5349674820899963, + "learning_rate": 2.4487179487179488e-06, + "loss": 0.3851365661621094, + "step": 107600 + }, + { + "epoch": 95.22561380225613, + "grad_norm": 0.4277512729167938, + "learning_rate": 2.404509283819629e-06, + "loss": 0.38448490142822267, + "step": 107700 + }, + { + "epoch": 95.3140898031409, + "grad_norm": 0.5199966430664062, + "learning_rate": 2.360300618921309e-06, + "loss": 0.3855178451538086, + "step": 107800 + }, + { + "epoch": 95.40256580402566, + "grad_norm": 0.49931713938713074, + "learning_rate": 2.3160919540229885e-06, + "loss": 0.38597549438476564, + "step": 107900 + }, + { + "epoch": 95.49104180491042, + "grad_norm": 0.44888851046562195, + "learning_rate": 2.2718832891246685e-06, + "loss": 0.38637237548828124, + "step": 108000 + }, + { + "epoch": 95.57951780579518, + "grad_norm": 0.48020413517951965, + "learning_rate": 2.2276746242263485e-06, + "loss": 0.3860820388793945, + "step": 108100 + }, + { + "epoch": 95.66799380667993, + "grad_norm": 0.49320459365844727, + "learning_rate": 2.183465959328028e-06, + "loss": 0.3868730926513672, + "step": 108200 + }, + { + "epoch": 95.7564698075647, + "grad_norm": 0.4776149392127991, + "learning_rate": 2.1392572944297086e-06, + "loss": 0.38699729919433595, + "step": 108300 + }, + { + "epoch": 95.84494580844945, + "grad_norm": 0.4394153356552124, + "learning_rate": 2.095048629531388e-06, + "loss": 0.3858388137817383, + "step": 108400 + }, + { + "epoch": 95.93342180933422, + "grad_norm": 0.40809816122055054, + "learning_rate": 2.0508399646330682e-06, + "loss": 0.3865514373779297, + "step": 108500 + }, + { + "epoch": 96.02123424021234, + "grad_norm": 0.40297845005989075, + "learning_rate": 2.0070733863837314e-06, + "loss": 0.38520877838134765, + "step": 108600 + }, + { + "epoch": 96.1097102410971, + "grad_norm": 0.4992787837982178, + "learning_rate": 1.9628647214854114e-06, + "loss": 0.3824159622192383, + "step": 108700 + }, + { + "epoch": 96.19818624198186, + "grad_norm": 0.4386002719402313, + "learning_rate": 1.918656056587091e-06, + "loss": 0.3828225326538086, + "step": 108800 + }, + { + "epoch": 96.28666224286663, + "grad_norm": 0.4839923679828644, + "learning_rate": 1.874447391688771e-06, + "loss": 0.3837508392333984, + "step": 108900 + }, + { + "epoch": 96.37513824375138, + "grad_norm": 0.5360403656959534, + "learning_rate": 1.830238726790451e-06, + "loss": 0.3868670654296875, + "step": 109000 + }, + { + "epoch": 96.46361424463615, + "grad_norm": 0.5472413897514343, + "learning_rate": 1.786030061892131e-06, + "loss": 0.38740249633789064, + "step": 109100 + }, + { + "epoch": 96.5520902455209, + "grad_norm": 0.4783819019794464, + "learning_rate": 1.7418213969938107e-06, + "loss": 0.3851567459106445, + "step": 109200 + }, + { + "epoch": 96.64056624640567, + "grad_norm": 0.5319016575813293, + "learning_rate": 1.6976127320954906e-06, + "loss": 0.38549720764160156, + "step": 109300 + }, + { + "epoch": 96.72904224729042, + "grad_norm": 0.4579726755619049, + "learning_rate": 1.6534040671971708e-06, + "loss": 0.38684429168701173, + "step": 109400 + }, + { + "epoch": 96.81751824817518, + "grad_norm": 0.4699755012989044, + "learning_rate": 1.6091954022988506e-06, + "loss": 0.3849377822875977, + "step": 109500 + }, + { + "epoch": 96.90599424905994, + "grad_norm": 0.5681434273719788, + "learning_rate": 1.5649867374005304e-06, + "loss": 0.38494167327880857, + "step": 109600 + }, + { + "epoch": 96.9944702499447, + "grad_norm": 0.40921762585639954, + "learning_rate": 1.5207780725022105e-06, + "loss": 0.3864158630371094, + "step": 109700 + }, + { + "epoch": 97.08228268082283, + "grad_norm": 0.5271804928779602, + "learning_rate": 1.4765694076038905e-06, + "loss": 0.3854814529418945, + "step": 109800 + }, + { + "epoch": 97.17075868170758, + "grad_norm": 0.5390716195106506, + "learning_rate": 1.4323607427055703e-06, + "loss": 0.3826302719116211, + "step": 109900 + }, + { + "epoch": 97.25923468259235, + "grad_norm": 0.4738744795322418, + "learning_rate": 1.3881520778072502e-06, + "loss": 0.3834680938720703, + "step": 110000 + }, + { + "epoch": 97.3477106834771, + "grad_norm": 0.47226211428642273, + "learning_rate": 1.3439434129089302e-06, + "loss": 0.383985595703125, + "step": 110100 + }, + { + "epoch": 97.43618668436187, + "grad_norm": 0.44581323862075806, + "learning_rate": 1.29973474801061e-06, + "loss": 0.38392398834228514, + "step": 110200 + }, + { + "epoch": 97.52466268524662, + "grad_norm": 0.505975067615509, + "learning_rate": 1.25552608311229e-06, + "loss": 0.3842586898803711, + "step": 110300 + }, + { + "epoch": 97.61313868613139, + "grad_norm": 0.4737127125263214, + "learning_rate": 1.21131741821397e-06, + "loss": 0.3853626251220703, + "step": 110400 + }, + { + "epoch": 97.70161468701615, + "grad_norm": 0.42337724566459656, + "learning_rate": 1.16710875331565e-06, + "loss": 0.3860707092285156, + "step": 110500 + }, + { + "epoch": 97.7900906879009, + "grad_norm": 0.470935583114624, + "learning_rate": 1.12290008841733e-06, + "loss": 0.3849189758300781, + "step": 110600 + }, + { + "epoch": 97.87856668878567, + "grad_norm": 0.5499629974365234, + "learning_rate": 1.0786914235190098e-06, + "loss": 0.3849348068237305, + "step": 110700 + }, + { + "epoch": 97.96704268967042, + "grad_norm": 0.5295959711074829, + "learning_rate": 1.0344827586206898e-06, + "loss": 0.3844482040405273, + "step": 110800 + }, + { + "epoch": 98.05485512054855, + "grad_norm": 0.510218620300293, + "learning_rate": 9.902740937223696e-07, + "loss": 0.38250988006591796, + "step": 110900 + }, + { + "epoch": 98.1433311214333, + "grad_norm": 0.46240198612213135, + "learning_rate": 9.460654288240495e-07, + "loss": 0.38357555389404296, + "step": 111000 + }, + { + "epoch": 98.23180712231807, + "grad_norm": 0.5413907170295715, + "learning_rate": 9.018567639257295e-07, + "loss": 0.3835936737060547, + "step": 111100 + }, + { + "epoch": 98.32028312320283, + "grad_norm": 0.5282194018363953, + "learning_rate": 8.576480990274095e-07, + "loss": 0.38462539672851564, + "step": 111200 + }, + { + "epoch": 98.4087591240876, + "grad_norm": 0.4430619478225708, + "learning_rate": 8.134394341290893e-07, + "loss": 0.3831254196166992, + "step": 111300 + }, + { + "epoch": 98.49723512497235, + "grad_norm": 0.4520755410194397, + "learning_rate": 7.692307692307694e-07, + "loss": 0.38387767791748045, + "step": 111400 + }, + { + "epoch": 98.58571112585712, + "grad_norm": 0.42326220870018005, + "learning_rate": 7.250221043324492e-07, + "loss": 0.38382118225097656, + "step": 111500 + }, + { + "epoch": 98.67418712674187, + "grad_norm": 0.5536217093467712, + "learning_rate": 6.808134394341291e-07, + "loss": 0.3837322998046875, + "step": 111600 + }, + { + "epoch": 98.76266312762664, + "grad_norm": 0.47729530930519104, + "learning_rate": 6.36604774535809e-07, + "loss": 0.3840275192260742, + "step": 111700 + }, + { + "epoch": 98.85113912851139, + "grad_norm": 0.4712120294570923, + "learning_rate": 5.92396109637489e-07, + "loss": 0.3826910400390625, + "step": 111800 + }, + { + "epoch": 98.93961512939615, + "grad_norm": 0.4533778727054596, + "learning_rate": 5.481874447391689e-07, + "loss": 0.3849251174926758, + "step": 111900 + }, + { + "epoch": 99.02742756027428, + "grad_norm": 0.4762660264968872, + "learning_rate": 5.04420866489832e-07, + "loss": 0.38347198486328127, + "step": 112000 + }, + { + "epoch": 99.11590356115903, + "grad_norm": 0.49900203943252563, + "learning_rate": 4.6021220159151197e-07, + "loss": 0.38361885070800783, + "step": 112100 + }, + { + "epoch": 99.2043795620438, + "grad_norm": 0.5499697923660278, + "learning_rate": 4.1600353669319184e-07, + "loss": 0.38323490142822264, + "step": 112200 + }, + { + "epoch": 99.29285556292855, + "grad_norm": 0.49698564410209656, + "learning_rate": 3.717948717948718e-07, + "loss": 0.38394325256347656, + "step": 112300 + }, + { + "epoch": 99.38133156381332, + "grad_norm": 0.5000177621841431, + "learning_rate": 3.2758620689655175e-07, + "loss": 0.3833367156982422, + "step": 112400 + }, + { + "epoch": 99.46980756469807, + "grad_norm": 0.46179404854774475, + "learning_rate": 2.833775419982317e-07, + "loss": 0.38318233489990233, + "step": 112500 + }, + { + "epoch": 99.55828356558284, + "grad_norm": 0.5522571802139282, + "learning_rate": 2.391688770999116e-07, + "loss": 0.38181392669677733, + "step": 112600 + }, + { + "epoch": 99.6467595664676, + "grad_norm": 0.4453877806663513, + "learning_rate": 1.949602122015915e-07, + "loss": 0.38297233581542967, + "step": 112700 + } + ], + "logging_steps": 100, + "max_steps": 113100, + "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": 3.126803891473613e+16, + "train_batch_size": 8, + "trial_name": null, + "trial_params": null +} diff --git a/timecost/m8/realtabformer/rtf-m8-20260501_010220/rtf_checkpoints/checkpoint-112700/training_args.bin b/timecost/m8/realtabformer/rtf-m8-20260501_010220/rtf_checkpoints/checkpoint-112700/training_args.bin new file mode 100644 index 0000000000000000000000000000000000000000..34d68dc0e0fe1c1f12a2e581dd1b166aa7178a9e --- /dev/null +++ b/timecost/m8/realtabformer/rtf-m8-20260501_010220/rtf_checkpoints/checkpoint-112700/training_args.bin @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:9e2cd88337d1d846c6918d2b3b63fa3e5c93f12fefc082497590da854a564607 +size 5201 diff --git a/timecost/m8/realtabformer/rtf-m8-20260501_010220/rtf_checkpoints/checkpoint-112800/config.json b/timecost/m8/realtabformer/rtf-m8-20260501_010220/rtf_checkpoints/checkpoint-112800/config.json new file mode 100644 index 0000000000000000000000000000000000000000..d98dd02b920679d4da3c8b60a9be119058fb9fe3 --- /dev/null +++ b/timecost/m8/realtabformer/rtf-m8-20260501_010220/rtf_checkpoints/checkpoint-112800/config.json @@ -0,0 +1,34 @@ +{ + "activation_function": "gelu_new", + "add_cross_attention": false, + "architectures": [ + "GPT2LMHeadModel" + ], + "attn_pdrop": 0.1, + "bos_token_id": 5, + "dtype": "float32", + "embd_pdrop": 0.1, + "eos_token_id": 6, + "initializer_range": 0.02, + "layer_norm_epsilon": 1e-05, + "model_type": "gpt2", + "n_embd": 768, + "n_head": 12, + "n_inner": null, + "n_layer": 6, + "n_positions": 1024, + "pad_token_id": null, + "reorder_and_upcast_attn": false, + "resid_pdrop": 0.1, + "scale_attn_by_inverse_layer_idx": false, + "scale_attn_weights": true, + "summary_activation": null, + "summary_first_dropout": 0.1, + "summary_proj_to_labels": true, + "summary_type": "cls_index", + "summary_use_proj": true, + "tie_word_embeddings": true, + "transformers_version": "5.5.3", + "use_cache": false, + "vocab_size": 244 +} diff --git a/timecost/m8/realtabformer/rtf-m8-20260501_010220/rtf_checkpoints/checkpoint-112800/generation_config.json b/timecost/m8/realtabformer/rtf-m8-20260501_010220/rtf_checkpoints/checkpoint-112800/generation_config.json new file mode 100644 index 0000000000000000000000000000000000000000..ffe89567780e75b5c22eade9be971483b9618f39 --- /dev/null +++ b/timecost/m8/realtabformer/rtf-m8-20260501_010220/rtf_checkpoints/checkpoint-112800/generation_config.json @@ -0,0 +1,9 @@ +{ + "_from_model_config": true, + "bos_token_id": 5, + "eos_token_id": 6, + "output_attentions": false, + "output_hidden_states": false, + "transformers_version": "5.5.3", + "use_cache": true +} diff --git a/timecost/m8/realtabformer/rtf-m8-20260501_010220/rtf_checkpoints/checkpoint-112800/model.safetensors b/timecost/m8/realtabformer/rtf-m8-20260501_010220/rtf_checkpoints/checkpoint-112800/model.safetensors new file mode 100644 index 0000000000000000000000000000000000000000..9d20c60c2537fa105a8073522afaf0f2e3666554 --- /dev/null +++ b/timecost/m8/realtabformer/rtf-m8-20260501_010220/rtf_checkpoints/checkpoint-112800/model.safetensors @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:d636bb1cfe63b77c816faa52c3a7c33c7b0911b7baac157bc4ad74b9cae2d142 +size 174017992 diff --git a/timecost/m8/realtabformer/rtf-m8-20260501_010220/rtf_checkpoints/checkpoint-112800/optimizer.pt b/timecost/m8/realtabformer/rtf-m8-20260501_010220/rtf_checkpoints/checkpoint-112800/optimizer.pt new file mode 100644 index 0000000000000000000000000000000000000000..21ffa168113d50d60ad09f53a82336b45c72ff23 --- /dev/null +++ b/timecost/m8/realtabformer/rtf-m8-20260501_010220/rtf_checkpoints/checkpoint-112800/optimizer.pt @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:612b282f2b7c85568fe4ed5b3a55449e7dfcca243ff897bfdfd7718ca85b278a +size 348085067 diff --git a/timecost/m8/realtabformer/rtf-m8-20260501_010220/rtf_checkpoints/checkpoint-112800/rng_state.pth b/timecost/m8/realtabformer/rtf-m8-20260501_010220/rtf_checkpoints/checkpoint-112800/rng_state.pth new file mode 100644 index 0000000000000000000000000000000000000000..37269c50183f3de8e2dd89ecaa76b6e79346289e --- /dev/null +++ b/timecost/m8/realtabformer/rtf-m8-20260501_010220/rtf_checkpoints/checkpoint-112800/rng_state.pth @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:fbd6f6922d9d1e9cd38b109fb9eb3832c3d0e1b75e449738b197968c6757c310 +size 14645 diff --git a/timecost/m8/realtabformer/rtf-m8-20260501_010220/rtf_checkpoints/checkpoint-112800/scaler.pt b/timecost/m8/realtabformer/rtf-m8-20260501_010220/rtf_checkpoints/checkpoint-112800/scaler.pt new file mode 100644 index 0000000000000000000000000000000000000000..abe70877dd89a2dd90995b27e9b7e9e81d51ce2b --- /dev/null +++ b/timecost/m8/realtabformer/rtf-m8-20260501_010220/rtf_checkpoints/checkpoint-112800/scaler.pt @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:cd6edeb9f2fdc35c079ce001cffc7a1cd549e5704b0e28decf55cc2529341689 +size 1383 diff --git a/timecost/m8/realtabformer/rtf-m8-20260501_010220/rtf_checkpoints/checkpoint-112800/scheduler.pt b/timecost/m8/realtabformer/rtf-m8-20260501_010220/rtf_checkpoints/checkpoint-112800/scheduler.pt new file mode 100644 index 0000000000000000000000000000000000000000..40b535aa93da45b1e90f5025e5ca2d15020306e6 --- /dev/null +++ b/timecost/m8/realtabformer/rtf-m8-20260501_010220/rtf_checkpoints/checkpoint-112800/scheduler.pt @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:5f7f3fe1fc7740bfecff80c1180ef4ce830c23467c63514c785789d29d7539ab +size 1465 diff --git a/timecost/m8/realtabformer/rtf-m8-20260501_010220/rtf_checkpoints/checkpoint-112800/trainer_state.json b/timecost/m8/realtabformer/rtf-m8-20260501_010220/rtf_checkpoints/checkpoint-112800/trainer_state.json new file mode 100644 index 0000000000000000000000000000000000000000..0052c41e82901407f3d9f6c9451fe08bbada976c --- /dev/null +++ b/timecost/m8/realtabformer/rtf-m8-20260501_010220/rtf_checkpoints/checkpoint-112800/trainer_state.json @@ -0,0 +1,7930 @@ +{ + "best_global_step": null, + "best_metric": null, + "best_model_checkpoint": null, + "epoch": 99.73523556735236, + "eval_steps": 100, + "global_step": 112800, + "is_hyper_param_search": false, + "is_local_process_zero": true, + "is_world_process_zero": true, + "log_history": [ + { + "epoch": 0.08847600088476001, + "grad_norm": 0.27971890568733215, + "learning_rate": 4.9956233421750666e-05, + "loss": 1.6012767028808594, + "step": 100 + }, + { + "epoch": 0.17695200176952003, + "grad_norm": 0.2532733976840973, + "learning_rate": 4.991202475685234e-05, + "loss": 1.0460629272460937, + "step": 200 + }, + { + "epoch": 0.26542800265428, + "grad_norm": 0.22527219355106354, + "learning_rate": 4.986781609195402e-05, + "loss": 1.0045037841796876, + "step": 300 + }, + { + "epoch": 0.35390400353904006, + "grad_norm": 0.2071678638458252, + "learning_rate": 4.982360742705571e-05, + "loss": 0.9934071350097656, + "step": 400 + }, + { + "epoch": 0.44238000442380004, + "grad_norm": 0.21996082365512848, + "learning_rate": 4.977939876215739e-05, + "loss": 0.9807382965087891, + "step": 500 + }, + { + "epoch": 0.53085600530856, + "grad_norm": 0.20051148533821106, + "learning_rate": 4.9735190097259064e-05, + "loss": 0.9772834014892579, + "step": 600 + }, + { + "epoch": 0.6193320061933201, + "grad_norm": 0.20692776143550873, + "learning_rate": 4.969098143236074e-05, + "loss": 0.9733844757080078, + "step": 700 + }, + { + "epoch": 0.7078080070780801, + "grad_norm": 0.22139734029769897, + "learning_rate": 4.9646772767462425e-05, + "loss": 0.9641999053955078, + "step": 800 + }, + { + "epoch": 0.79628400796284, + "grad_norm": 0.20099565386772156, + "learning_rate": 4.96025641025641e-05, + "loss": 0.9590901947021484, + "step": 900 + }, + { + "epoch": 0.8847600088476001, + "grad_norm": 0.19050444662570953, + "learning_rate": 4.955835543766578e-05, + "loss": 0.9558430480957031, + "step": 1000 + }, + { + "epoch": 0.9732360097323601, + "grad_norm": 0.20780153572559357, + "learning_rate": 4.951414677276747e-05, + "loss": 0.9558073425292969, + "step": 1100 + }, + { + "epoch": 1.0610484406104843, + "grad_norm": 0.20002400875091553, + "learning_rate": 4.946993810786915e-05, + "loss": 0.9575533294677734, + "step": 1200 + }, + { + "epoch": 1.1495244414952444, + "grad_norm": 0.19394151866436005, + "learning_rate": 4.9425729442970824e-05, + "loss": 0.9556401824951172, + "step": 1300 + }, + { + "epoch": 1.2380004423800044, + "grad_norm": 0.19420816004276276, + "learning_rate": 4.93815207780725e-05, + "loss": 0.948358154296875, + "step": 1400 + }, + { + "epoch": 1.3264764432647644, + "grad_norm": 0.2109377682209015, + "learning_rate": 4.9337312113174185e-05, + "loss": 0.9507483673095704, + "step": 1500 + }, + { + "epoch": 1.4149524441495245, + "grad_norm": 0.19577011466026306, + "learning_rate": 4.929310344827586e-05, + "loss": 0.9544251251220703, + "step": 1600 + }, + { + "epoch": 1.5034284450342845, + "grad_norm": 0.17374339699745178, + "learning_rate": 4.924889478337754e-05, + "loss": 0.9495613098144531, + "step": 1700 + }, + { + "epoch": 1.5919044459190443, + "grad_norm": 0.1539471447467804, + "learning_rate": 4.920468611847922e-05, + "loss": 0.946780014038086, + "step": 1800 + }, + { + "epoch": 1.6803804468038046, + "grad_norm": 0.21705853939056396, + "learning_rate": 4.916047745358091e-05, + "loss": 0.9456329345703125, + "step": 1900 + }, + { + "epoch": 1.7688564476885644, + "grad_norm": 0.18109191954135895, + "learning_rate": 4.9116268788682584e-05, + "loss": 0.9452082061767578, + "step": 2000 + }, + { + "epoch": 1.8573324485733245, + "grad_norm": 0.18233413994312286, + "learning_rate": 4.907206012378426e-05, + "loss": 0.9436309051513672, + "step": 2100 + }, + { + "epoch": 1.9458084494580845, + "grad_norm": 0.19978198409080505, + "learning_rate": 4.9027851458885945e-05, + "loss": 0.9466010284423828, + "step": 2200 + }, + { + "epoch": 2.033620880336209, + "grad_norm": 0.19425439834594727, + "learning_rate": 4.898364279398762e-05, + "loss": 0.9419589233398438, + "step": 2300 + }, + { + "epoch": 2.1220968812209686, + "grad_norm": 0.18522261083126068, + "learning_rate": 4.8939434129089306e-05, + "loss": 0.9406929779052734, + "step": 2400 + }, + { + "epoch": 2.210572882105729, + "grad_norm": 0.18092288076877594, + "learning_rate": 4.889522546419098e-05, + "loss": 0.9394661712646485, + "step": 2500 + }, + { + "epoch": 2.2990488829904887, + "grad_norm": 0.16110995411872864, + "learning_rate": 4.885101679929267e-05, + "loss": 0.9415554809570312, + "step": 2600 + }, + { + "epoch": 2.387524883875249, + "grad_norm": 0.1742609441280365, + "learning_rate": 4.8806808134394344e-05, + "loss": 0.9385026550292969, + "step": 2700 + }, + { + "epoch": 2.476000884760009, + "grad_norm": 0.1893293261528015, + "learning_rate": 4.876259946949602e-05, + "loss": 0.9374285125732422, + "step": 2800 + }, + { + "epoch": 2.564476885644769, + "grad_norm": 0.17022491991519928, + "learning_rate": 4.8718390804597705e-05, + "loss": 0.9414189910888672, + "step": 2900 + }, + { + "epoch": 2.652952886529529, + "grad_norm": 0.1820104867219925, + "learning_rate": 4.867418213969938e-05, + "loss": 0.9428114318847656, + "step": 3000 + }, + { + "epoch": 2.7414288874142887, + "grad_norm": 0.1591845154762268, + "learning_rate": 4.8629973474801066e-05, + "loss": 0.9408238220214844, + "step": 3100 + }, + { + "epoch": 2.829904888299049, + "grad_norm": 0.16679565608501434, + "learning_rate": 4.858576480990274e-05, + "loss": 0.9357293701171875, + "step": 3200 + }, + { + "epoch": 2.918380889183809, + "grad_norm": 0.1608530431985855, + "learning_rate": 4.854155614500443e-05, + "loss": 0.9437465667724609, + "step": 3300 + }, + { + "epoch": 3.006193320061933, + "grad_norm": 0.17832520604133606, + "learning_rate": 4.8497347480106104e-05, + "loss": 0.9349425506591796, + "step": 3400 + }, + { + "epoch": 3.0946693209466933, + "grad_norm": 0.18095993995666504, + "learning_rate": 4.845313881520778e-05, + "loss": 0.9341915130615235, + "step": 3500 + }, + { + "epoch": 3.183145321831453, + "grad_norm": 0.15083801746368408, + "learning_rate": 4.8408930150309465e-05, + "loss": 0.9406319427490234, + "step": 3600 + }, + { + "epoch": 3.2716213227162134, + "grad_norm": 0.17318469285964966, + "learning_rate": 4.836472148541114e-05, + "loss": 0.942470703125, + "step": 3700 + }, + { + "epoch": 3.3600973236009732, + "grad_norm": 0.16380801796913147, + "learning_rate": 4.8320512820512826e-05, + "loss": 0.9362622833251953, + "step": 3800 + }, + { + "epoch": 3.448573324485733, + "grad_norm": 0.16394540667533875, + "learning_rate": 4.82763041556145e-05, + "loss": 0.9353338623046875, + "step": 3900 + }, + { + "epoch": 3.5370493253704933, + "grad_norm": 0.15836960077285767, + "learning_rate": 4.8232095490716186e-05, + "loss": 0.9316812896728516, + "step": 4000 + }, + { + "epoch": 3.625525326255253, + "grad_norm": 0.16170428693294525, + "learning_rate": 4.8187886825817864e-05, + "loss": 0.9331712341308593, + "step": 4100 + }, + { + "epoch": 3.7140013271400134, + "grad_norm": 0.16442789137363434, + "learning_rate": 4.814367816091954e-05, + "loss": 0.9366471862792969, + "step": 4200 + }, + { + "epoch": 3.8024773280247732, + "grad_norm": 0.1728108674287796, + "learning_rate": 4.8099469496021224e-05, + "loss": 0.9279624938964843, + "step": 4300 + }, + { + "epoch": 3.890953328909533, + "grad_norm": 0.16846929490566254, + "learning_rate": 4.80552608311229e-05, + "loss": 0.9343041229248047, + "step": 4400 + }, + { + "epoch": 3.9794293297942933, + "grad_norm": 0.15764060616493225, + "learning_rate": 4.8011052166224585e-05, + "loss": 0.9330953979492187, + "step": 4500 + }, + { + "epoch": 4.067241760672418, + "grad_norm": 0.15639521181583405, + "learning_rate": 4.796684350132626e-05, + "loss": 0.92936279296875, + "step": 4600 + }, + { + "epoch": 4.155717761557177, + "grad_norm": 0.1571352481842041, + "learning_rate": 4.7922634836427946e-05, + "loss": 0.928530502319336, + "step": 4700 + }, + { + "epoch": 4.244193762441937, + "grad_norm": 0.1702045202255249, + "learning_rate": 4.787842617152962e-05, + "loss": 0.928214111328125, + "step": 4800 + }, + { + "epoch": 4.332669763326698, + "grad_norm": 0.15860655903816223, + "learning_rate": 4.78342175066313e-05, + "loss": 0.9305215454101563, + "step": 4900 + }, + { + "epoch": 4.421145764211458, + "grad_norm": 0.15470334887504578, + "learning_rate": 4.779000884173298e-05, + "loss": 0.9308832550048828, + "step": 5000 + }, + { + "epoch": 4.509621765096218, + "grad_norm": 0.18338388204574585, + "learning_rate": 4.774580017683466e-05, + "loss": 0.9284812164306641, + "step": 5100 + }, + { + "epoch": 4.598097765980977, + "grad_norm": 0.16396461427211761, + "learning_rate": 4.7701591511936345e-05, + "loss": 0.9331364440917969, + "step": 5200 + }, + { + "epoch": 4.686573766865738, + "grad_norm": 0.15601013600826263, + "learning_rate": 4.765738284703802e-05, + "loss": 0.9345075225830078, + "step": 5300 + }, + { + "epoch": 4.775049767750498, + "grad_norm": 0.15895380079746246, + "learning_rate": 4.76131741821397e-05, + "loss": 0.9342525482177735, + "step": 5400 + }, + { + "epoch": 4.863525768635258, + "grad_norm": 0.17462770640850067, + "learning_rate": 4.756896551724138e-05, + "loss": 0.9322207641601562, + "step": 5500 + }, + { + "epoch": 4.952001769520018, + "grad_norm": 0.15457525849342346, + "learning_rate": 4.752475685234306e-05, + "loss": 0.9310305023193359, + "step": 5600 + }, + { + "epoch": 5.039814200398142, + "grad_norm": 0.13688383996486664, + "learning_rate": 4.748054818744474e-05, + "loss": 0.9262973022460937, + "step": 5700 + }, + { + "epoch": 5.128290201282902, + "grad_norm": 0.15491563081741333, + "learning_rate": 4.743633952254642e-05, + "loss": 0.927138671875, + "step": 5800 + }, + { + "epoch": 5.216766202167662, + "grad_norm": 0.168558269739151, + "learning_rate": 4.7392130857648105e-05, + "loss": 0.9224365234375, + "step": 5900 + }, + { + "epoch": 5.305242203052422, + "grad_norm": 0.1631685495376587, + "learning_rate": 4.734792219274978e-05, + "loss": 0.9300392913818359, + "step": 6000 + }, + { + "epoch": 5.393718203937182, + "grad_norm": 0.1423729509115219, + "learning_rate": 4.730371352785146e-05, + "loss": 0.926734619140625, + "step": 6100 + }, + { + "epoch": 5.482194204821942, + "grad_norm": 0.15391670167446136, + "learning_rate": 4.725950486295314e-05, + "loss": 0.928184814453125, + "step": 6200 + }, + { + "epoch": 5.570670205706702, + "grad_norm": 0.16460080444812775, + "learning_rate": 4.721529619805482e-05, + "loss": 0.9238227844238281, + "step": 6300 + }, + { + "epoch": 5.659146206591462, + "grad_norm": 0.15589170157909393, + "learning_rate": 4.71710875331565e-05, + "loss": 0.9301457214355469, + "step": 6400 + }, + { + "epoch": 5.747622207476222, + "grad_norm": 0.15851308405399323, + "learning_rate": 4.712687886825818e-05, + "loss": 0.9308782196044922, + "step": 6500 + }, + { + "epoch": 5.836098208360982, + "grad_norm": 0.1777440756559372, + "learning_rate": 4.7082670203359865e-05, + "loss": 0.9248320007324219, + "step": 6600 + }, + { + "epoch": 5.924574209245742, + "grad_norm": 0.17118966579437256, + "learning_rate": 4.703846153846154e-05, + "loss": 0.933470458984375, + "step": 6700 + }, + { + "epoch": 6.012386640123866, + "grad_norm": 0.16862431168556213, + "learning_rate": 4.699425287356322e-05, + "loss": 0.9242423248291015, + "step": 6800 + }, + { + "epoch": 6.100862641008627, + "grad_norm": 0.19494886696338654, + "learning_rate": 4.69500442086649e-05, + "loss": 0.9229951477050782, + "step": 6900 + }, + { + "epoch": 6.189338641893387, + "grad_norm": 0.1628340780735016, + "learning_rate": 4.690583554376658e-05, + "loss": 0.9262020111083984, + "step": 7000 + }, + { + "epoch": 6.2778146427781465, + "grad_norm": 0.18057121336460114, + "learning_rate": 4.686162687886826e-05, + "loss": 0.9253005981445312, + "step": 7100 + }, + { + "epoch": 6.366290643662906, + "grad_norm": 0.16090655326843262, + "learning_rate": 4.681741821396994e-05, + "loss": 0.9206966400146485, + "step": 7200 + }, + { + "epoch": 6.454766644547666, + "grad_norm": 0.16115659475326538, + "learning_rate": 4.6773209549071625e-05, + "loss": 0.9219180297851562, + "step": 7300 + }, + { + "epoch": 6.543242645432427, + "grad_norm": 0.1964244246482849, + "learning_rate": 4.67290008841733e-05, + "loss": 0.9238224029541016, + "step": 7400 + }, + { + "epoch": 6.631718646317187, + "grad_norm": 0.1761396825313568, + "learning_rate": 4.668479221927498e-05, + "loss": 0.9244656372070312, + "step": 7500 + }, + { + "epoch": 6.7201946472019465, + "grad_norm": 0.18016010522842407, + "learning_rate": 4.664058355437666e-05, + "loss": 0.9245244598388672, + "step": 7600 + }, + { + "epoch": 6.808670648086706, + "grad_norm": 0.16012924909591675, + "learning_rate": 4.659637488947834e-05, + "loss": 0.9250524139404297, + "step": 7700 + }, + { + "epoch": 6.897146648971466, + "grad_norm": 0.1722676306962967, + "learning_rate": 4.655216622458002e-05, + "loss": 0.9270682525634766, + "step": 7800 + }, + { + "epoch": 6.985622649856227, + "grad_norm": 0.18756897747516632, + "learning_rate": 4.65079575596817e-05, + "loss": 0.9234317779541016, + "step": 7900 + }, + { + "epoch": 7.073435080734351, + "grad_norm": 0.16759978234767914, + "learning_rate": 4.6463748894783384e-05, + "loss": 0.9213732147216797, + "step": 8000 + }, + { + "epoch": 7.1619110816191105, + "grad_norm": 0.15943242609500885, + "learning_rate": 4.641954022988506e-05, + "loss": 0.9243515014648438, + "step": 8100 + }, + { + "epoch": 7.250387082503871, + "grad_norm": 0.15444102883338928, + "learning_rate": 4.637533156498674e-05, + "loss": 0.9177332305908203, + "step": 8200 + }, + { + "epoch": 7.338863083388631, + "grad_norm": 0.17104187607765198, + "learning_rate": 4.633112290008842e-05, + "loss": 0.9199151611328125, + "step": 8300 + }, + { + "epoch": 7.427339084273391, + "grad_norm": 0.152462899684906, + "learning_rate": 4.62869142351901e-05, + "loss": 0.9231443786621094, + "step": 8400 + }, + { + "epoch": 7.515815085158151, + "grad_norm": 0.1663249433040619, + "learning_rate": 4.6242705570291777e-05, + "loss": 0.9231499481201172, + "step": 8500 + }, + { + "epoch": 7.6042910860429105, + "grad_norm": 0.1711215376853943, + "learning_rate": 4.6198496905393454e-05, + "loss": 0.9192819976806641, + "step": 8600 + }, + { + "epoch": 7.692767086927671, + "grad_norm": 0.1620834916830063, + "learning_rate": 4.6154288240495144e-05, + "loss": 0.9260062408447266, + "step": 8700 + }, + { + "epoch": 7.781243087812431, + "grad_norm": 0.16246546804904938, + "learning_rate": 4.611007957559682e-05, + "loss": 0.9250968933105469, + "step": 8800 + }, + { + "epoch": 7.869719088697191, + "grad_norm": 0.15757358074188232, + "learning_rate": 4.60658709106985e-05, + "loss": 0.9235149383544922, + "step": 8900 + }, + { + "epoch": 7.958195089581951, + "grad_norm": 0.15778206288814545, + "learning_rate": 4.602166224580018e-05, + "loss": 0.9173377227783203, + "step": 9000 + }, + { + "epoch": 8.046007520460075, + "grad_norm": 0.17259791493415833, + "learning_rate": 4.597745358090186e-05, + "loss": 0.9134017181396484, + "step": 9100 + }, + { + "epoch": 8.134483521344835, + "grad_norm": 0.1707502007484436, + "learning_rate": 4.5933244916003536e-05, + "loss": 0.9134098052978515, + "step": 9200 + }, + { + "epoch": 8.222959522229596, + "grad_norm": 0.1647530347108841, + "learning_rate": 4.5889036251105213e-05, + "loss": 0.9205097961425781, + "step": 9300 + }, + { + "epoch": 8.311435523114355, + "grad_norm": 0.16971947252750397, + "learning_rate": 4.5844827586206904e-05, + "loss": 0.9217983245849609, + "step": 9400 + }, + { + "epoch": 8.399911523999116, + "grad_norm": 0.15842877328395844, + "learning_rate": 4.580061892130858e-05, + "loss": 0.9172341918945313, + "step": 9500 + }, + { + "epoch": 8.488387524883874, + "grad_norm": 0.15321888029575348, + "learning_rate": 4.575641025641026e-05, + "loss": 0.9222029113769531, + "step": 9600 + }, + { + "epoch": 8.576863525768635, + "grad_norm": 0.17232707142829895, + "learning_rate": 4.5712201591511935e-05, + "loss": 0.9190543365478515, + "step": 9700 + }, + { + "epoch": 8.665339526653396, + "grad_norm": 0.14735591411590576, + "learning_rate": 4.566799292661362e-05, + "loss": 0.9193865203857422, + "step": 9800 + }, + { + "epoch": 8.753815527538155, + "grad_norm": 0.17929628491401672, + "learning_rate": 4.5623784261715296e-05, + "loss": 0.9178209686279297, + "step": 9900 + }, + { + "epoch": 8.842291528422916, + "grad_norm": 0.1546984612941742, + "learning_rate": 4.557957559681697e-05, + "loss": 0.9209825134277344, + "step": 10000 + }, + { + "epoch": 8.930767529307674, + "grad_norm": 0.16275030374526978, + "learning_rate": 4.553536693191866e-05, + "loss": 0.9219312286376953, + "step": 10100 + }, + { + "epoch": 9.0185799601858, + "grad_norm": 0.16977843642234802, + "learning_rate": 4.549115826702034e-05, + "loss": 0.9190888977050782, + "step": 10200 + }, + { + "epoch": 9.107055961070559, + "grad_norm": 0.16722118854522705, + "learning_rate": 4.544694960212202e-05, + "loss": 0.9173007202148438, + "step": 10300 + }, + { + "epoch": 9.19553196195532, + "grad_norm": 0.15637095272541046, + "learning_rate": 4.5402740937223695e-05, + "loss": 0.9152852630615235, + "step": 10400 + }, + { + "epoch": 9.28400796284008, + "grad_norm": 0.15433216094970703, + "learning_rate": 4.535853227232538e-05, + "loss": 0.9151573944091796, + "step": 10500 + }, + { + "epoch": 9.37248396372484, + "grad_norm": 0.15743562579154968, + "learning_rate": 4.5314323607427056e-05, + "loss": 0.9173799896240235, + "step": 10600 + }, + { + "epoch": 9.4609599646096, + "grad_norm": 0.1527981162071228, + "learning_rate": 4.527011494252873e-05, + "loss": 0.911611328125, + "step": 10700 + }, + { + "epoch": 9.549435965494359, + "grad_norm": 0.15745887160301208, + "learning_rate": 4.522590627763042e-05, + "loss": 0.9144339752197266, + "step": 10800 + }, + { + "epoch": 9.63791196637912, + "grad_norm": 0.1523962914943695, + "learning_rate": 4.51816976127321e-05, + "loss": 0.918481216430664, + "step": 10900 + }, + { + "epoch": 9.72638796726388, + "grad_norm": 0.17231452465057373, + "learning_rate": 4.513748894783378e-05, + "loss": 0.9197111511230469, + "step": 11000 + }, + { + "epoch": 9.81486396814864, + "grad_norm": 0.16348381340503693, + "learning_rate": 4.5093280282935455e-05, + "loss": 0.9151203918457032, + "step": 11100 + }, + { + "epoch": 9.9033399690334, + "grad_norm": 0.16555383801460266, + "learning_rate": 4.504907161803714e-05, + "loss": 0.9189680480957031, + "step": 11200 + }, + { + "epoch": 9.991815969918159, + "grad_norm": 0.16531047224998474, + "learning_rate": 4.5004862953138816e-05, + "loss": 0.9149074554443359, + "step": 11300 + }, + { + "epoch": 10.079628400796285, + "grad_norm": 0.1655273735523224, + "learning_rate": 4.496065428824049e-05, + "loss": 0.9143817138671875, + "step": 11400 + }, + { + "epoch": 10.168104401681044, + "grad_norm": 0.1795828938484192, + "learning_rate": 4.491644562334218e-05, + "loss": 0.911801986694336, + "step": 11500 + }, + { + "epoch": 10.256580402565804, + "grad_norm": 0.1684361696243286, + "learning_rate": 4.487223695844386e-05, + "loss": 0.910247802734375, + "step": 11600 + }, + { + "epoch": 10.345056403450563, + "grad_norm": 0.1620638519525528, + "learning_rate": 4.482802829354554e-05, + "loss": 0.9155111694335938, + "step": 11700 + }, + { + "epoch": 10.433532404335324, + "grad_norm": 0.1695495843887329, + "learning_rate": 4.4783819628647215e-05, + "loss": 0.9134779357910157, + "step": 11800 + }, + { + "epoch": 10.522008405220085, + "grad_norm": 0.18226753175258636, + "learning_rate": 4.47396109637489e-05, + "loss": 0.9143638610839844, + "step": 11900 + }, + { + "epoch": 10.610484406104844, + "grad_norm": 0.15289710462093353, + "learning_rate": 4.4695402298850576e-05, + "loss": 0.9122061157226562, + "step": 12000 + }, + { + "epoch": 10.698960406989604, + "grad_norm": 0.15486228466033936, + "learning_rate": 4.465119363395225e-05, + "loss": 0.9148915863037109, + "step": 12100 + }, + { + "epoch": 10.787436407874363, + "grad_norm": 0.17585019767284393, + "learning_rate": 4.4606984969053937e-05, + "loss": 0.9163182830810547, + "step": 12200 + }, + { + "epoch": 10.875912408759124, + "grad_norm": 0.158732071518898, + "learning_rate": 4.456277630415562e-05, + "loss": 0.9148865509033203, + "step": 12300 + }, + { + "epoch": 10.964388409643885, + "grad_norm": 0.15901361405849457, + "learning_rate": 4.45185676392573e-05, + "loss": 0.9184156799316406, + "step": 12400 + }, + { + "epoch": 11.052200840522008, + "grad_norm": 0.15289290249347687, + "learning_rate": 4.4474358974358974e-05, + "loss": 0.910323486328125, + "step": 12500 + }, + { + "epoch": 11.14067684140677, + "grad_norm": 0.14922171831130981, + "learning_rate": 4.443015030946066e-05, + "loss": 0.9092740631103515, + "step": 12600 + }, + { + "epoch": 11.229152842291528, + "grad_norm": 0.1710701584815979, + "learning_rate": 4.4385941644562335e-05, + "loss": 0.909953842163086, + "step": 12700 + }, + { + "epoch": 11.317628843176289, + "grad_norm": 0.16967815160751343, + "learning_rate": 4.434173297966401e-05, + "loss": 0.9069422912597657, + "step": 12800 + }, + { + "epoch": 11.406104844061048, + "grad_norm": 0.16896069049835205, + "learning_rate": 4.4297524314765696e-05, + "loss": 0.9166646575927735, + "step": 12900 + }, + { + "epoch": 11.494580844945808, + "grad_norm": 0.16996079683303833, + "learning_rate": 4.425331564986738e-05, + "loss": 0.9114566040039063, + "step": 13000 + }, + { + "epoch": 11.58305684583057, + "grad_norm": 0.16553319990634918, + "learning_rate": 4.420910698496906e-05, + "loss": 0.9121807098388672, + "step": 13100 + }, + { + "epoch": 11.671532846715328, + "grad_norm": 0.1629258692264557, + "learning_rate": 4.4164898320070734e-05, + "loss": 0.904563217163086, + "step": 13200 + }, + { + "epoch": 11.760008847600089, + "grad_norm": 0.1660201996564865, + "learning_rate": 4.412068965517241e-05, + "loss": 0.9116962432861329, + "step": 13300 + }, + { + "epoch": 11.848484848484848, + "grad_norm": 0.16493095457553864, + "learning_rate": 4.4076480990274095e-05, + "loss": 0.9136554718017578, + "step": 13400 + }, + { + "epoch": 11.936960849369608, + "grad_norm": 0.15279296040534973, + "learning_rate": 4.403227232537578e-05, + "loss": 0.9120658874511719, + "step": 13500 + }, + { + "epoch": 12.024773280247732, + "grad_norm": 0.16151593625545502, + "learning_rate": 4.3988063660477456e-05, + "loss": 0.9155186462402344, + "step": 13600 + }, + { + "epoch": 12.113249281132493, + "grad_norm": 0.16777871549129486, + "learning_rate": 4.394385499557914e-05, + "loss": 0.9070235443115234, + "step": 13700 + }, + { + "epoch": 12.201725282017254, + "grad_norm": 0.15052072703838348, + "learning_rate": 4.389964633068082e-05, + "loss": 0.9057080078125, + "step": 13800 + }, + { + "epoch": 12.290201282902013, + "grad_norm": 0.17466743290424347, + "learning_rate": 4.3855437665782494e-05, + "loss": 0.9058401489257812, + "step": 13900 + }, + { + "epoch": 12.378677283786773, + "grad_norm": 0.17788690328598022, + "learning_rate": 4.381122900088417e-05, + "loss": 0.9058721923828125, + "step": 14000 + }, + { + "epoch": 12.467153284671532, + "grad_norm": 0.17527516186237335, + "learning_rate": 4.3767020335985855e-05, + "loss": 0.908851089477539, + "step": 14100 + }, + { + "epoch": 12.555629285556293, + "grad_norm": 0.17999336123466492, + "learning_rate": 4.372281167108754e-05, + "loss": 0.9110614013671875, + "step": 14200 + }, + { + "epoch": 12.644105286441054, + "grad_norm": 0.1635061800479889, + "learning_rate": 4.3678603006189216e-05, + "loss": 0.9081086730957031, + "step": 14300 + }, + { + "epoch": 12.732581287325813, + "grad_norm": 0.1813993752002716, + "learning_rate": 4.363439434129089e-05, + "loss": 0.9091014862060547, + "step": 14400 + }, + { + "epoch": 12.821057288210573, + "grad_norm": 0.17487457394599915, + "learning_rate": 4.359018567639258e-05, + "loss": 0.9076325988769531, + "step": 14500 + }, + { + "epoch": 12.909533289095332, + "grad_norm": 0.17149627208709717, + "learning_rate": 4.3545977011494254e-05, + "loss": 0.9064749908447266, + "step": 14600 + }, + { + "epoch": 12.998009289980093, + "grad_norm": 0.16990207135677338, + "learning_rate": 4.350176834659593e-05, + "loss": 0.911828384399414, + "step": 14700 + }, + { + "epoch": 13.085821720858217, + "grad_norm": 0.16583888232707977, + "learning_rate": 4.3458001768346594e-05, + "loss": 0.9017422485351563, + "step": 14800 + }, + { + "epoch": 13.174297721742978, + "grad_norm": 0.1644158959388733, + "learning_rate": 4.341379310344828e-05, + "loss": 0.9052355194091797, + "step": 14900 + }, + { + "epoch": 13.262773722627736, + "grad_norm": 0.1759374737739563, + "learning_rate": 4.336958443854996e-05, + "loss": 0.9027067565917969, + "step": 15000 + }, + { + "epoch": 13.351249723512497, + "grad_norm": 0.1623755842447281, + "learning_rate": 4.332537577365164e-05, + "loss": 0.9078491973876953, + "step": 15100 + }, + { + "epoch": 13.439725724397258, + "grad_norm": 0.15563324093818665, + "learning_rate": 4.3281167108753316e-05, + "loss": 0.9046826171875, + "step": 15200 + }, + { + "epoch": 13.528201725282017, + "grad_norm": 0.1762174814939499, + "learning_rate": 4.3236958443855e-05, + "loss": 0.9070060729980469, + "step": 15300 + }, + { + "epoch": 13.616677726166778, + "grad_norm": 0.1598447859287262, + "learning_rate": 4.319274977895668e-05, + "loss": 0.907843017578125, + "step": 15400 + }, + { + "epoch": 13.705153727051536, + "grad_norm": 0.17838729918003082, + "learning_rate": 4.3148541114058354e-05, + "loss": 0.9077598571777343, + "step": 15500 + }, + { + "epoch": 13.793629727936297, + "grad_norm": 0.16615167260169983, + "learning_rate": 4.310433244916004e-05, + "loss": 0.9041740417480468, + "step": 15600 + }, + { + "epoch": 13.882105728821058, + "grad_norm": 0.16463759541511536, + "learning_rate": 4.306012378426172e-05, + "loss": 0.9023047637939453, + "step": 15700 + }, + { + "epoch": 13.970581729705817, + "grad_norm": 0.1562959849834442, + "learning_rate": 4.30159151193634e-05, + "loss": 0.902835693359375, + "step": 15800 + }, + { + "epoch": 14.058394160583942, + "grad_norm": 0.16919565200805664, + "learning_rate": 4.2971706454465076e-05, + "loss": 0.8998876953125, + "step": 15900 + }, + { + "epoch": 14.146870161468701, + "grad_norm": 0.16513022780418396, + "learning_rate": 4.292749778956676e-05, + "loss": 0.9023524475097656, + "step": 16000 + }, + { + "epoch": 14.235346162353462, + "grad_norm": 0.173946812748909, + "learning_rate": 4.288328912466844e-05, + "loss": 0.8980498504638672, + "step": 16100 + }, + { + "epoch": 14.323822163238221, + "grad_norm": 0.16749872267246246, + "learning_rate": 4.2839080459770114e-05, + "loss": 0.9026957702636719, + "step": 16200 + }, + { + "epoch": 14.412298164122982, + "grad_norm": 0.17985551059246063, + "learning_rate": 4.27948717948718e-05, + "loss": 0.9012105560302734, + "step": 16300 + }, + { + "epoch": 14.500774165007742, + "grad_norm": 0.18807820975780487, + "learning_rate": 4.275066312997348e-05, + "loss": 0.9014115905761719, + "step": 16400 + }, + { + "epoch": 14.589250165892501, + "grad_norm": 0.17243777215480804, + "learning_rate": 4.270645446507516e-05, + "loss": 0.9028221893310547, + "step": 16500 + }, + { + "epoch": 14.677726166777262, + "grad_norm": 0.1674414724111557, + "learning_rate": 4.2662245800176836e-05, + "loss": 0.9017185974121094, + "step": 16600 + }, + { + "epoch": 14.766202167662021, + "grad_norm": 0.17522333562374115, + "learning_rate": 4.261803713527851e-05, + "loss": 0.8989543914794922, + "step": 16700 + }, + { + "epoch": 14.854678168546782, + "grad_norm": 0.16300654411315918, + "learning_rate": 4.2573828470380197e-05, + "loss": 0.9001253509521484, + "step": 16800 + }, + { + "epoch": 14.943154169431542, + "grad_norm": 0.1702653169631958, + "learning_rate": 4.2529619805481874e-05, + "loss": 0.9020176696777343, + "step": 16900 + }, + { + "epoch": 15.030966600309666, + "grad_norm": 0.1752340942621231, + "learning_rate": 4.2485853227232544e-05, + "loss": 0.8990335083007812, + "step": 17000 + }, + { + "epoch": 15.119442601194425, + "grad_norm": 0.17765584588050842, + "learning_rate": 4.244164456233422e-05, + "loss": 0.8885309600830078, + "step": 17100 + }, + { + "epoch": 15.207918602079186, + "grad_norm": 0.18404972553253174, + "learning_rate": 4.23974358974359e-05, + "loss": 0.8915805816650391, + "step": 17200 + }, + { + "epoch": 15.296394602963947, + "grad_norm": 0.17206765711307526, + "learning_rate": 4.235322723253758e-05, + "loss": 0.8898361968994141, + "step": 17300 + }, + { + "epoch": 15.384870603848706, + "grad_norm": 0.19998455047607422, + "learning_rate": 4.230901856763926e-05, + "loss": 0.8957837677001953, + "step": 17400 + }, + { + "epoch": 15.473346604733466, + "grad_norm": 0.19454777240753174, + "learning_rate": 4.2264809902740936e-05, + "loss": 0.8990544891357422, + "step": 17500 + }, + { + "epoch": 15.561822605618225, + "grad_norm": 0.17281410098075867, + "learning_rate": 4.222060123784262e-05, + "loss": 0.8996484375, + "step": 17600 + }, + { + "epoch": 15.650298606502986, + "grad_norm": 0.1906009018421173, + "learning_rate": 4.21763925729443e-05, + "loss": 0.9032618713378906, + "step": 17700 + }, + { + "epoch": 15.738774607387747, + "grad_norm": 0.17282316088676453, + "learning_rate": 4.213218390804598e-05, + "loss": 0.8986404418945313, + "step": 17800 + }, + { + "epoch": 15.827250608272506, + "grad_norm": 0.18802666664123535, + "learning_rate": 4.208797524314766e-05, + "loss": 0.8964502716064453, + "step": 17900 + }, + { + "epoch": 15.915726609157266, + "grad_norm": 0.19853872060775757, + "learning_rate": 4.204376657824934e-05, + "loss": 0.9032749938964844, + "step": 18000 + }, + { + "epoch": 16.003539040035392, + "grad_norm": 0.18812181055545807, + "learning_rate": 4.199955791335102e-05, + "loss": 0.8991973876953125, + "step": 18100 + }, + { + "epoch": 16.09201504092015, + "grad_norm": 0.1644710898399353, + "learning_rate": 4.1955349248452695e-05, + "loss": 0.8866680908203125, + "step": 18200 + }, + { + "epoch": 16.18049104180491, + "grad_norm": 0.1884208619594574, + "learning_rate": 4.191114058355438e-05, + "loss": 0.8872537994384766, + "step": 18300 + }, + { + "epoch": 16.26896704268967, + "grad_norm": 0.1828072965145111, + "learning_rate": 4.186693191865606e-05, + "loss": 0.8902882385253906, + "step": 18400 + }, + { + "epoch": 16.35744304357443, + "grad_norm": 0.19119146466255188, + "learning_rate": 4.182272325375774e-05, + "loss": 0.8903806304931641, + "step": 18500 + }, + { + "epoch": 16.445919044459192, + "grad_norm": 0.20727571845054626, + "learning_rate": 4.177851458885942e-05, + "loss": 0.8952965545654297, + "step": 18600 + }, + { + "epoch": 16.53439504534395, + "grad_norm": 0.18735922873020172, + "learning_rate": 4.17343059239611e-05, + "loss": 0.8870563507080078, + "step": 18700 + }, + { + "epoch": 16.62287104622871, + "grad_norm": 0.1973799169063568, + "learning_rate": 4.169009725906278e-05, + "loss": 0.8974028778076172, + "step": 18800 + }, + { + "epoch": 16.71134704711347, + "grad_norm": 0.20604746043682098, + "learning_rate": 4.1645888594164455e-05, + "loss": 0.8937057495117188, + "step": 18900 + }, + { + "epoch": 16.79982304799823, + "grad_norm": 0.18150219321250916, + "learning_rate": 4.160167992926614e-05, + "loss": 0.8935442352294922, + "step": 19000 + }, + { + "epoch": 16.888299048882992, + "grad_norm": 0.18340304493904114, + "learning_rate": 4.155747126436782e-05, + "loss": 0.8885797119140625, + "step": 19100 + }, + { + "epoch": 16.97677504976775, + "grad_norm": 0.2073577493429184, + "learning_rate": 4.15132625994695e-05, + "loss": 0.8951002502441406, + "step": 19200 + }, + { + "epoch": 17.064587480645876, + "grad_norm": 0.17697007954120636, + "learning_rate": 4.146949602122016e-05, + "loss": 0.8879679870605469, + "step": 19300 + }, + { + "epoch": 17.153063481530634, + "grad_norm": 0.20899821817874908, + "learning_rate": 4.142528735632184e-05, + "loss": 0.8794329833984375, + "step": 19400 + }, + { + "epoch": 17.241539482415394, + "grad_norm": 0.18147091567516327, + "learning_rate": 4.138107869142352e-05, + "loss": 0.8802722930908203, + "step": 19500 + }, + { + "epoch": 17.330015483300155, + "grad_norm": 0.20257830619812012, + "learning_rate": 4.13368700265252e-05, + "loss": 0.8870145416259766, + "step": 19600 + }, + { + "epoch": 17.418491484184916, + "grad_norm": 0.20231416821479797, + "learning_rate": 4.1292661361626885e-05, + "loss": 0.8838448333740234, + "step": 19700 + }, + { + "epoch": 17.506967485069676, + "grad_norm": 0.18214623630046844, + "learning_rate": 4.124845269672856e-05, + "loss": 0.8879763793945312, + "step": 19800 + }, + { + "epoch": 17.595443485954434, + "grad_norm": 0.18666088581085205, + "learning_rate": 4.120424403183024e-05, + "loss": 0.8885836029052734, + "step": 19900 + }, + { + "epoch": 17.683919486839194, + "grad_norm": 0.20308583974838257, + "learning_rate": 4.116003536693192e-05, + "loss": 0.8843843078613282, + "step": 20000 + }, + { + "epoch": 17.772395487723955, + "grad_norm": 0.18726830184459686, + "learning_rate": 4.11158267020336e-05, + "loss": 0.8865486145019531, + "step": 20100 + }, + { + "epoch": 17.860871488608716, + "grad_norm": 0.17878851294517517, + "learning_rate": 4.107161803713528e-05, + "loss": 0.8883515930175782, + "step": 20200 + }, + { + "epoch": 17.949347489493476, + "grad_norm": 0.1849307119846344, + "learning_rate": 4.102740937223696e-05, + "loss": 0.8914216613769531, + "step": 20300 + }, + { + "epoch": 18.0371599203716, + "grad_norm": 0.22315239906311035, + "learning_rate": 4.0983200707338645e-05, + "loss": 0.88252197265625, + "step": 20400 + }, + { + "epoch": 18.12563592125636, + "grad_norm": 0.18446321785449982, + "learning_rate": 4.093899204244032e-05, + "loss": 0.8717878723144531, + "step": 20500 + }, + { + "epoch": 18.214111922141118, + "grad_norm": 0.21541251242160797, + "learning_rate": 4.0894783377542e-05, + "loss": 0.8750727844238281, + "step": 20600 + }, + { + "epoch": 18.30258792302588, + "grad_norm": 0.22268827259540558, + "learning_rate": 4.085057471264368e-05, + "loss": 0.8760640716552734, + "step": 20700 + }, + { + "epoch": 18.39106392391064, + "grad_norm": 0.2207673043012619, + "learning_rate": 4.080636604774536e-05, + "loss": 0.876912841796875, + "step": 20800 + }, + { + "epoch": 18.4795399247954, + "grad_norm": 0.21988292038440704, + "learning_rate": 4.076215738284704e-05, + "loss": 0.8794302368164062, + "step": 20900 + }, + { + "epoch": 18.56801592568016, + "grad_norm": 0.2057323008775711, + "learning_rate": 4.0717948717948714e-05, + "loss": 0.8795650482177735, + "step": 21000 + }, + { + "epoch": 18.656491926564918, + "grad_norm": 0.19854794442653656, + "learning_rate": 4.0673740053050405e-05, + "loss": 0.8824103546142578, + "step": 21100 + }, + { + "epoch": 18.74496792744968, + "grad_norm": 0.2183123230934143, + "learning_rate": 4.062953138815208e-05, + "loss": 0.8792383575439453, + "step": 21200 + }, + { + "epoch": 18.83344392833444, + "grad_norm": 0.20326419174671173, + "learning_rate": 4.058532272325376e-05, + "loss": 0.8834226989746093, + "step": 21300 + }, + { + "epoch": 18.9219199292192, + "grad_norm": 0.20735788345336914, + "learning_rate": 4.054111405835544e-05, + "loss": 0.8820342254638672, + "step": 21400 + }, + { + "epoch": 19.009732360097324, + "grad_norm": 0.2023264467716217, + "learning_rate": 4.04973474801061e-05, + "loss": 0.8843944549560547, + "step": 21500 + }, + { + "epoch": 19.098208360982085, + "grad_norm": 0.21148885786533356, + "learning_rate": 4.045313881520778e-05, + "loss": 0.8647132110595703, + "step": 21600 + }, + { + "epoch": 19.186684361866842, + "grad_norm": 0.2251083254814148, + "learning_rate": 4.040893015030947e-05, + "loss": 0.866364974975586, + "step": 21700 + }, + { + "epoch": 19.275160362751603, + "grad_norm": 0.23524972796440125, + "learning_rate": 4.0364721485411144e-05, + "loss": 0.8736127471923828, + "step": 21800 + }, + { + "epoch": 19.363636363636363, + "grad_norm": 0.21772760152816772, + "learning_rate": 4.032051282051282e-05, + "loss": 0.8692568206787109, + "step": 21900 + }, + { + "epoch": 19.452112364521124, + "grad_norm": 0.2125358134508133, + "learning_rate": 4.0276304155614505e-05, + "loss": 0.8706926727294921, + "step": 22000 + }, + { + "epoch": 19.540588365405885, + "grad_norm": 0.22768475115299225, + "learning_rate": 4.023209549071618e-05, + "loss": 0.8674411010742188, + "step": 22100 + }, + { + "epoch": 19.629064366290642, + "grad_norm": 0.2211151272058487, + "learning_rate": 4.018788682581786e-05, + "loss": 0.8749802398681641, + "step": 22200 + }, + { + "epoch": 19.717540367175403, + "grad_norm": 0.21814538538455963, + "learning_rate": 4.014367816091954e-05, + "loss": 0.8754036712646485, + "step": 22300 + }, + { + "epoch": 19.806016368060163, + "grad_norm": 0.2030419558286667, + "learning_rate": 4.0099469496021226e-05, + "loss": 0.8714677429199219, + "step": 22400 + }, + { + "epoch": 19.894492368944924, + "grad_norm": 0.21472303569316864, + "learning_rate": 4.0055260831122904e-05, + "loss": 0.8727165222167969, + "step": 22500 + }, + { + "epoch": 19.982968369829685, + "grad_norm": 0.20911096036434174, + "learning_rate": 4.001105216622458e-05, + "loss": 0.8781427764892578, + "step": 22600 + }, + { + "epoch": 20.07078080070781, + "grad_norm": 0.2304856926202774, + "learning_rate": 3.9966843501326264e-05, + "loss": 0.8589347076416015, + "step": 22700 + }, + { + "epoch": 20.15925680159257, + "grad_norm": 0.23650145530700684, + "learning_rate": 3.992263483642794e-05, + "loss": 0.8598684692382812, + "step": 22800 + }, + { + "epoch": 20.247732802477326, + "grad_norm": 0.21773482859134674, + "learning_rate": 3.987842617152962e-05, + "loss": 0.8605601501464843, + "step": 22900 + }, + { + "epoch": 20.336208803362087, + "grad_norm": 0.2237112671136856, + "learning_rate": 3.98342175066313e-05, + "loss": 0.8617141723632813, + "step": 23000 + }, + { + "epoch": 20.424684804246848, + "grad_norm": 0.24452048540115356, + "learning_rate": 3.9790008841732986e-05, + "loss": 0.8622699737548828, + "step": 23100 + }, + { + "epoch": 20.51316080513161, + "grad_norm": 0.21587280929088593, + "learning_rate": 3.974580017683466e-05, + "loss": 0.8637493896484375, + "step": 23200 + }, + { + "epoch": 20.60163680601637, + "grad_norm": 0.2406671941280365, + "learning_rate": 3.970159151193634e-05, + "loss": 0.859559555053711, + "step": 23300 + }, + { + "epoch": 20.690112806901126, + "grad_norm": 0.22845898568630219, + "learning_rate": 3.9657382847038024e-05, + "loss": 0.8662923431396484, + "step": 23400 + }, + { + "epoch": 20.778588807785887, + "grad_norm": 0.24683597683906555, + "learning_rate": 3.96131741821397e-05, + "loss": 0.8673475646972656, + "step": 23500 + }, + { + "epoch": 20.867064808670648, + "grad_norm": 0.22459226846694946, + "learning_rate": 3.956896551724138e-05, + "loss": 0.8640863037109375, + "step": 23600 + }, + { + "epoch": 20.95554080955541, + "grad_norm": 0.23616963624954224, + "learning_rate": 3.952475685234306e-05, + "loss": 0.8678861236572266, + "step": 23700 + }, + { + "epoch": 21.043353240433532, + "grad_norm": 0.22973845899105072, + "learning_rate": 3.9480990274093725e-05, + "loss": 0.8580598449707031, + "step": 23800 + }, + { + "epoch": 21.131829241318293, + "grad_norm": 0.2424720972776413, + "learning_rate": 3.94367816091954e-05, + "loss": 0.8460955810546875, + "step": 23900 + }, + { + "epoch": 21.220305242203054, + "grad_norm": 0.2528146505355835, + "learning_rate": 3.9392572944297086e-05, + "loss": 0.8499996185302734, + "step": 24000 + }, + { + "epoch": 21.30878124308781, + "grad_norm": 0.2518126666545868, + "learning_rate": 3.9348364279398763e-05, + "loss": 0.8534349060058594, + "step": 24100 + }, + { + "epoch": 21.39725724397257, + "grad_norm": 0.2305818349123001, + "learning_rate": 3.930415561450044e-05, + "loss": 0.84900146484375, + "step": 24200 + }, + { + "epoch": 21.485733244857332, + "grad_norm": 0.25653600692749023, + "learning_rate": 3.9259946949602124e-05, + "loss": 0.8542990875244141, + "step": 24300 + }, + { + "epoch": 21.574209245742093, + "grad_norm": 0.2712801992893219, + "learning_rate": 3.92157382847038e-05, + "loss": 0.8558815002441407, + "step": 24400 + }, + { + "epoch": 21.662685246626854, + "grad_norm": 0.273328959941864, + "learning_rate": 3.9171529619805485e-05, + "loss": 0.8555754089355468, + "step": 24500 + }, + { + "epoch": 21.75116124751161, + "grad_norm": 0.2668614089488983, + "learning_rate": 3.912732095490716e-05, + "loss": 0.8587675476074219, + "step": 24600 + }, + { + "epoch": 21.83963724839637, + "grad_norm": 0.24395836889743805, + "learning_rate": 3.9083112290008846e-05, + "loss": 0.8572028350830078, + "step": 24700 + }, + { + "epoch": 21.928113249281132, + "grad_norm": 0.24808812141418457, + "learning_rate": 3.903890362511052e-05, + "loss": 0.8579219055175781, + "step": 24800 + }, + { + "epoch": 22.015925680159256, + "grad_norm": 0.2587817311286926, + "learning_rate": 3.89946949602122e-05, + "loss": 0.8512050628662109, + "step": 24900 + }, + { + "epoch": 22.104401681044017, + "grad_norm": 0.26175108551979065, + "learning_rate": 3.8950486295313884e-05, + "loss": 0.8361199188232422, + "step": 25000 + }, + { + "epoch": 22.192877681928778, + "grad_norm": 0.2715345025062561, + "learning_rate": 3.890627763041556e-05, + "loss": 0.8399204254150391, + "step": 25100 + }, + { + "epoch": 22.28135368281354, + "grad_norm": 0.27675682306289673, + "learning_rate": 3.8862068965517245e-05, + "loss": 0.8378430938720703, + "step": 25200 + }, + { + "epoch": 22.369829683698295, + "grad_norm": 0.26540565490722656, + "learning_rate": 3.881786030061892e-05, + "loss": 0.8397164916992188, + "step": 25300 + }, + { + "epoch": 22.458305684583056, + "grad_norm": 0.2754775285720825, + "learning_rate": 3.8773651635720606e-05, + "loss": 0.8450184631347656, + "step": 25400 + }, + { + "epoch": 22.546781685467817, + "grad_norm": 0.2393341213464737, + "learning_rate": 3.872944297082228e-05, + "loss": 0.8427618408203125, + "step": 25500 + }, + { + "epoch": 22.635257686352578, + "grad_norm": 0.23895791172981262, + "learning_rate": 3.868523430592396e-05, + "loss": 0.8457352447509766, + "step": 25600 + }, + { + "epoch": 22.72373368723734, + "grad_norm": 0.26955941319465637, + "learning_rate": 3.8641025641025644e-05, + "loss": 0.849469223022461, + "step": 25700 + }, + { + "epoch": 22.812209688122095, + "grad_norm": 0.23746059834957123, + "learning_rate": 3.859681697612732e-05, + "loss": 0.8469708251953125, + "step": 25800 + }, + { + "epoch": 22.900685689006856, + "grad_norm": 0.2649519145488739, + "learning_rate": 3.8552608311229005e-05, + "loss": 0.849559326171875, + "step": 25900 + }, + { + "epoch": 22.989161689891617, + "grad_norm": 0.27285081148147583, + "learning_rate": 3.850839964633068e-05, + "loss": 0.8485184478759765, + "step": 26000 + }, + { + "epoch": 23.07697412076974, + "grad_norm": 0.27895936369895935, + "learning_rate": 3.8464633068081345e-05, + "loss": 0.8252901458740234, + "step": 26100 + }, + { + "epoch": 23.1654501216545, + "grad_norm": 0.2652367055416107, + "learning_rate": 3.842042440318302e-05, + "loss": 0.8263906097412109, + "step": 26200 + }, + { + "epoch": 23.253926122539262, + "grad_norm": 0.2835598886013031, + "learning_rate": 3.8376215738284706e-05, + "loss": 0.8287677001953125, + "step": 26300 + }, + { + "epoch": 23.342402123424023, + "grad_norm": 0.2834433615207672, + "learning_rate": 3.833200707338638e-05, + "loss": 0.8309012603759766, + "step": 26400 + }, + { + "epoch": 23.43087812430878, + "grad_norm": 0.2998100817203522, + "learning_rate": 3.828779840848807e-05, + "loss": 0.8311166381835937, + "step": 26500 + }, + { + "epoch": 23.51935412519354, + "grad_norm": 0.29382187128067017, + "learning_rate": 3.8243589743589744e-05, + "loss": 0.8325238037109375, + "step": 26600 + }, + { + "epoch": 23.6078301260783, + "grad_norm": 0.2950701415538788, + "learning_rate": 3.819938107869143e-05, + "loss": 0.8368535614013672, + "step": 26700 + }, + { + "epoch": 23.696306126963062, + "grad_norm": 0.287801057100296, + "learning_rate": 3.8155172413793105e-05, + "loss": 0.833930435180664, + "step": 26800 + }, + { + "epoch": 23.784782127847823, + "grad_norm": 0.33100536465644836, + "learning_rate": 3.811096374889478e-05, + "loss": 0.8386001586914062, + "step": 26900 + }, + { + "epoch": 23.87325812873258, + "grad_norm": 0.2911369800567627, + "learning_rate": 3.8066755083996466e-05, + "loss": 0.8410533905029297, + "step": 27000 + }, + { + "epoch": 23.96173412961734, + "grad_norm": 0.26980099081993103, + "learning_rate": 3.802254641909814e-05, + "loss": 0.8360975646972656, + "step": 27100 + }, + { + "epoch": 24.049546560495465, + "grad_norm": 0.3001425862312317, + "learning_rate": 3.797833775419983e-05, + "loss": 0.8234864044189453, + "step": 27200 + }, + { + "epoch": 24.138022561380225, + "grad_norm": 0.27798378467559814, + "learning_rate": 3.7934129089301504e-05, + "loss": 0.8135331726074219, + "step": 27300 + }, + { + "epoch": 24.226498562264986, + "grad_norm": 0.2736954689025879, + "learning_rate": 3.788992042440319e-05, + "loss": 0.8113047027587891, + "step": 27400 + }, + { + "epoch": 24.314974563149747, + "grad_norm": 0.29235804080963135, + "learning_rate": 3.7845711759504865e-05, + "loss": 0.8171870422363281, + "step": 27500 + }, + { + "epoch": 24.403450564034507, + "grad_norm": 0.2878233790397644, + "learning_rate": 3.780150309460654e-05, + "loss": 0.8170029449462891, + "step": 27600 + }, + { + "epoch": 24.491926564919265, + "grad_norm": 0.31602925062179565, + "learning_rate": 3.7757294429708226e-05, + "loss": 0.8223928833007812, + "step": 27700 + }, + { + "epoch": 24.580402565804025, + "grad_norm": 0.3145372271537781, + "learning_rate": 3.77130857648099e-05, + "loss": 0.8257860565185546, + "step": 27800 + }, + { + "epoch": 24.668878566688786, + "grad_norm": 0.30716991424560547, + "learning_rate": 3.7668877099911587e-05, + "loss": 0.8240725708007812, + "step": 27900 + }, + { + "epoch": 24.757354567573547, + "grad_norm": 0.28368160128593445, + "learning_rate": 3.7624668435013264e-05, + "loss": 0.825384521484375, + "step": 28000 + }, + { + "epoch": 24.845830568458307, + "grad_norm": 0.2867664694786072, + "learning_rate": 3.758045977011495e-05, + "loss": 0.8270760345458984, + "step": 28100 + }, + { + "epoch": 24.934306569343065, + "grad_norm": 0.28817129135131836, + "learning_rate": 3.7536251105216624e-05, + "loss": 0.8286974334716797, + "step": 28200 + }, + { + "epoch": 25.02211900022119, + "grad_norm": 0.3106354773044586, + "learning_rate": 3.749248452696729e-05, + "loss": 0.82120849609375, + "step": 28300 + }, + { + "epoch": 25.11059500110595, + "grad_norm": 0.3304692506790161, + "learning_rate": 3.7448275862068965e-05, + "loss": 0.8016901397705078, + "step": 28400 + }, + { + "epoch": 25.19907100199071, + "grad_norm": 0.3065616488456726, + "learning_rate": 3.740406719717064e-05, + "loss": 0.8027448272705078, + "step": 28500 + }, + { + "epoch": 25.28754700287547, + "grad_norm": 0.3456852436065674, + "learning_rate": 3.735985853227233e-05, + "loss": 0.8046049499511718, + "step": 28600 + }, + { + "epoch": 25.37602300376023, + "grad_norm": 0.3011663556098938, + "learning_rate": 3.731564986737401e-05, + "loss": 0.8079199981689453, + "step": 28700 + }, + { + "epoch": 25.46449900464499, + "grad_norm": 0.3659413158893585, + "learning_rate": 3.7271441202475687e-05, + "loss": 0.8079922485351563, + "step": 28800 + }, + { + "epoch": 25.55297500552975, + "grad_norm": 0.3281838595867157, + "learning_rate": 3.7227232537577364e-05, + "loss": 0.8134046173095704, + "step": 28900 + }, + { + "epoch": 25.64145100641451, + "grad_norm": 0.3106602132320404, + "learning_rate": 3.718302387267905e-05, + "loss": 0.8104205322265625, + "step": 29000 + }, + { + "epoch": 25.72992700729927, + "grad_norm": 0.3320154845714569, + "learning_rate": 3.7138815207780725e-05, + "loss": 0.8142304992675782, + "step": 29100 + }, + { + "epoch": 25.81840300818403, + "grad_norm": 0.3355977535247803, + "learning_rate": 3.70946065428824e-05, + "loss": 0.8125243377685547, + "step": 29200 + }, + { + "epoch": 25.90687900906879, + "grad_norm": 0.3472290635108948, + "learning_rate": 3.7050397877984085e-05, + "loss": 0.8146660614013672, + "step": 29300 + }, + { + "epoch": 25.99535500995355, + "grad_norm": 0.31780678033828735, + "learning_rate": 3.700618921308577e-05, + "loss": 0.8169705200195313, + "step": 29400 + }, + { + "epoch": 26.083167440831673, + "grad_norm": 0.3046151101589203, + "learning_rate": 3.6961980548187446e-05, + "loss": 0.7894915008544922, + "step": 29500 + }, + { + "epoch": 26.171643441716434, + "grad_norm": 0.3560829162597656, + "learning_rate": 3.6917771883289123e-05, + "loss": 0.7867289733886719, + "step": 29600 + }, + { + "epoch": 26.260119442601194, + "grad_norm": 0.33036884665489197, + "learning_rate": 3.687356321839081e-05, + "loss": 0.7914912414550781, + "step": 29700 + }, + { + "epoch": 26.348595443485955, + "grad_norm": 0.3302215039730072, + "learning_rate": 3.6829354553492484e-05, + "loss": 0.7926998901367187, + "step": 29800 + }, + { + "epoch": 26.437071444370716, + "grad_norm": 0.33766239881515503, + "learning_rate": 3.678514588859416e-05, + "loss": 0.7958551788330078, + "step": 29900 + }, + { + "epoch": 26.525547445255473, + "grad_norm": 0.34900912642478943, + "learning_rate": 3.6740937223695845e-05, + "loss": 0.7958287811279297, + "step": 30000 + }, + { + "epoch": 26.614023446140234, + "grad_norm": 0.3290475010871887, + "learning_rate": 3.669672855879753e-05, + "loss": 0.7994923400878906, + "step": 30100 + }, + { + "epoch": 26.702499447024994, + "grad_norm": 0.3304896950721741, + "learning_rate": 3.6652519893899206e-05, + "loss": 0.8000531005859375, + "step": 30200 + }, + { + "epoch": 26.790975447909755, + "grad_norm": 0.32132837176322937, + "learning_rate": 3.660831122900088e-05, + "loss": 0.8006639862060547, + "step": 30300 + }, + { + "epoch": 26.879451448794516, + "grad_norm": 0.3341081142425537, + "learning_rate": 3.656410256410257e-05, + "loss": 0.8037942504882812, + "step": 30400 + }, + { + "epoch": 26.967927449679273, + "grad_norm": 0.3406025171279907, + "learning_rate": 3.6519893899204244e-05, + "loss": 0.8009793853759766, + "step": 30500 + }, + { + "epoch": 27.0557398805574, + "grad_norm": 0.3396868109703064, + "learning_rate": 3.647568523430592e-05, + "loss": 0.7846424865722657, + "step": 30600 + }, + { + "epoch": 27.144215881442157, + "grad_norm": 0.33319470286369324, + "learning_rate": 3.6431476569407605e-05, + "loss": 0.7724665832519532, + "step": 30700 + }, + { + "epoch": 27.232691882326918, + "grad_norm": 0.38071826100349426, + "learning_rate": 3.638726790450929e-05, + "loss": 0.7791647338867187, + "step": 30800 + }, + { + "epoch": 27.32116788321168, + "grad_norm": 0.3640372157096863, + "learning_rate": 3.6343059239610966e-05, + "loss": 0.778485107421875, + "step": 30900 + }, + { + "epoch": 27.40964388409644, + "grad_norm": 0.34701183438301086, + "learning_rate": 3.629885057471264e-05, + "loss": 0.7812682342529297, + "step": 31000 + }, + { + "epoch": 27.4981198849812, + "grad_norm": 0.34723395109176636, + "learning_rate": 3.625464190981433e-05, + "loss": 0.7816720581054688, + "step": 31100 + }, + { + "epoch": 27.586595885865957, + "grad_norm": 0.3967572748661041, + "learning_rate": 3.6210433244916004e-05, + "loss": 0.7825845336914062, + "step": 31200 + }, + { + "epoch": 27.675071886750718, + "grad_norm": 0.36156365275382996, + "learning_rate": 3.616622458001768e-05, + "loss": 0.7875003814697266, + "step": 31300 + }, + { + "epoch": 27.76354788763548, + "grad_norm": 0.37152451276779175, + "learning_rate": 3.6122015915119365e-05, + "loss": 0.7848563385009766, + "step": 31400 + }, + { + "epoch": 27.85202388852024, + "grad_norm": 0.3751819431781769, + "learning_rate": 3.607780725022105e-05, + "loss": 0.7901625061035156, + "step": 31500 + }, + { + "epoch": 27.940499889405, + "grad_norm": 0.32409200072288513, + "learning_rate": 3.6033598585322726e-05, + "loss": 0.7916508483886718, + "step": 31600 + }, + { + "epoch": 28.028312320283124, + "grad_norm": 0.36621779203414917, + "learning_rate": 3.59893899204244e-05, + "loss": 0.7814656066894531, + "step": 31700 + }, + { + "epoch": 28.116788321167885, + "grad_norm": 0.35782715678215027, + "learning_rate": 3.594518125552609e-05, + "loss": 0.7565266418457032, + "step": 31800 + }, + { + "epoch": 28.205264322052642, + "grad_norm": 0.34983065724372864, + "learning_rate": 3.5900972590627764e-05, + "loss": 0.7589649963378906, + "step": 31900 + }, + { + "epoch": 28.293740322937403, + "grad_norm": 0.36476004123687744, + "learning_rate": 3.585676392572945e-05, + "loss": 0.7618669891357421, + "step": 32000 + }, + { + "epoch": 28.382216323822163, + "grad_norm": 0.3663191795349121, + "learning_rate": 3.5812555260831125e-05, + "loss": 0.768099136352539, + "step": 32100 + }, + { + "epoch": 28.470692324706924, + "grad_norm": 0.3572807312011719, + "learning_rate": 3.576834659593281e-05, + "loss": 0.7697807312011719, + "step": 32200 + }, + { + "epoch": 28.559168325591685, + "grad_norm": 0.39800935983657837, + "learning_rate": 3.5724580017683465e-05, + "loss": 0.7714015960693359, + "step": 32300 + }, + { + "epoch": 28.647644326476442, + "grad_norm": 0.3792218863964081, + "learning_rate": 3.568037135278515e-05, + "loss": 0.7737385559082032, + "step": 32400 + }, + { + "epoch": 28.736120327361203, + "grad_norm": 0.4109075665473938, + "learning_rate": 3.5636162687886826e-05, + "loss": 0.7772123718261719, + "step": 32500 + }, + { + "epoch": 28.824596328245963, + "grad_norm": 0.40446004271507263, + "learning_rate": 3.55919540229885e-05, + "loss": 0.7722319030761718, + "step": 32600 + }, + { + "epoch": 28.913072329130724, + "grad_norm": 0.39553946256637573, + "learning_rate": 3.554774535809019e-05, + "loss": 0.7767266082763672, + "step": 32700 + }, + { + "epoch": 29.000884760008848, + "grad_norm": 0.3675474226474762, + "learning_rate": 3.550397877984085e-05, + "loss": 0.7800326538085938, + "step": 32800 + }, + { + "epoch": 29.08936076089361, + "grad_norm": 0.37354156374931335, + "learning_rate": 3.5459770114942534e-05, + "loss": 0.7407066345214843, + "step": 32900 + }, + { + "epoch": 29.17783676177837, + "grad_norm": 0.3970542550086975, + "learning_rate": 3.541556145004421e-05, + "loss": 0.7467523956298828, + "step": 33000 + }, + { + "epoch": 29.266312762663127, + "grad_norm": 0.3625730872154236, + "learning_rate": 3.537135278514589e-05, + "loss": 0.7477723693847657, + "step": 33100 + }, + { + "epoch": 29.354788763547887, + "grad_norm": 0.37132611870765686, + "learning_rate": 3.532714412024757e-05, + "loss": 0.7502822875976562, + "step": 33200 + }, + { + "epoch": 29.443264764432648, + "grad_norm": 0.3668833374977112, + "learning_rate": 3.528293545534925e-05, + "loss": 0.7570280456542968, + "step": 33300 + }, + { + "epoch": 29.53174076531741, + "grad_norm": 0.404186874628067, + "learning_rate": 3.523872679045093e-05, + "loss": 0.7576876831054687, + "step": 33400 + }, + { + "epoch": 29.62021676620217, + "grad_norm": 0.407461017370224, + "learning_rate": 3.519451812555261e-05, + "loss": 0.7606333923339844, + "step": 33500 + }, + { + "epoch": 29.708692767086927, + "grad_norm": 0.4091641902923584, + "learning_rate": 3.5150309460654294e-05, + "loss": 0.7598370361328125, + "step": 33600 + }, + { + "epoch": 29.797168767971687, + "grad_norm": 0.36642369627952576, + "learning_rate": 3.510610079575597e-05, + "loss": 0.7617308807373047, + "step": 33700 + }, + { + "epoch": 29.885644768856448, + "grad_norm": 0.3767990171909332, + "learning_rate": 3.506189213085765e-05, + "loss": 0.760002670288086, + "step": 33800 + }, + { + "epoch": 29.97412076974121, + "grad_norm": 0.3992450535297394, + "learning_rate": 3.5017683465959325e-05, + "loss": 0.7659886932373047, + "step": 33900 + }, + { + "epoch": 30.061933200619332, + "grad_norm": 0.38657036423683167, + "learning_rate": 3.497347480106101e-05, + "loss": 0.7397030639648438, + "step": 34000 + }, + { + "epoch": 30.150409201504093, + "grad_norm": 0.40928229689598083, + "learning_rate": 3.492926613616269e-05, + "loss": 0.7280159759521484, + "step": 34100 + }, + { + "epoch": 30.23888520238885, + "grad_norm": 0.41609957814216614, + "learning_rate": 3.488505747126437e-05, + "loss": 0.7327291107177735, + "step": 34200 + }, + { + "epoch": 30.32736120327361, + "grad_norm": 0.3990429639816284, + "learning_rate": 3.4840848806366047e-05, + "loss": 0.7359205627441406, + "step": 34300 + }, + { + "epoch": 30.41583720415837, + "grad_norm": 0.40403324365615845, + "learning_rate": 3.479664014146773e-05, + "loss": 0.73650390625, + "step": 34400 + }, + { + "epoch": 30.504313205043132, + "grad_norm": 0.42696642875671387, + "learning_rate": 3.475243147656941e-05, + "loss": 0.7416681671142578, + "step": 34500 + }, + { + "epoch": 30.592789205927893, + "grad_norm": 0.3891199231147766, + "learning_rate": 3.4708222811671085e-05, + "loss": 0.742286605834961, + "step": 34600 + }, + { + "epoch": 30.68126520681265, + "grad_norm": 0.3660706877708435, + "learning_rate": 3.466401414677277e-05, + "loss": 0.7444020080566406, + "step": 34700 + }, + { + "epoch": 30.76974120769741, + "grad_norm": 0.43280747532844543, + "learning_rate": 3.461980548187445e-05, + "loss": 0.7461125183105469, + "step": 34800 + }, + { + "epoch": 30.85821720858217, + "grad_norm": 0.4279727041721344, + "learning_rate": 3.457559681697613e-05, + "loss": 0.7497645568847656, + "step": 34900 + }, + { + "epoch": 30.946693209466932, + "grad_norm": 0.4162921905517578, + "learning_rate": 3.4531388152077806e-05, + "loss": 0.7478341674804687, + "step": 35000 + }, + { + "epoch": 31.034505640345056, + "grad_norm": 0.4011857211589813, + "learning_rate": 3.448762157382847e-05, + "loss": 0.7373168182373047, + "step": 35100 + }, + { + "epoch": 31.122981641229817, + "grad_norm": 0.42476192116737366, + "learning_rate": 3.444341290893015e-05, + "loss": 0.714128646850586, + "step": 35200 + }, + { + "epoch": 31.211457642114578, + "grad_norm": 0.4272063672542572, + "learning_rate": 3.439920424403183e-05, + "loss": 0.717328872680664, + "step": 35300 + }, + { + "epoch": 31.299933642999335, + "grad_norm": 0.39419060945510864, + "learning_rate": 3.4354995579133514e-05, + "loss": 0.7182811737060547, + "step": 35400 + }, + { + "epoch": 31.388409643884096, + "grad_norm": 0.4092519283294678, + "learning_rate": 3.431078691423519e-05, + "loss": 0.7223808288574218, + "step": 35500 + }, + { + "epoch": 31.476885644768856, + "grad_norm": 0.45683449506759644, + "learning_rate": 3.4266578249336875e-05, + "loss": 0.7236460876464844, + "step": 35600 + }, + { + "epoch": 31.565361645653617, + "grad_norm": 0.4914647936820984, + "learning_rate": 3.422236958443855e-05, + "loss": 0.728529052734375, + "step": 35700 + }, + { + "epoch": 31.653837646538378, + "grad_norm": 0.439372718334198, + "learning_rate": 3.417816091954023e-05, + "loss": 0.7269135284423828, + "step": 35800 + }, + { + "epoch": 31.742313647423135, + "grad_norm": 0.488553911447525, + "learning_rate": 3.413395225464191e-05, + "loss": 0.7319352722167969, + "step": 35900 + }, + { + "epoch": 31.830789648307896, + "grad_norm": 0.43236035108566284, + "learning_rate": 3.408974358974359e-05, + "loss": 0.7336878204345703, + "step": 36000 + }, + { + "epoch": 31.919265649192656, + "grad_norm": 0.42669814825057983, + "learning_rate": 3.4045534924845274e-05, + "loss": 0.7357192993164062, + "step": 36100 + }, + { + "epoch": 32.007078080070784, + "grad_norm": 0.40464460849761963, + "learning_rate": 3.400132625994695e-05, + "loss": 0.7324215698242188, + "step": 36200 + }, + { + "epoch": 32.09555408095554, + "grad_norm": 0.4362545311450958, + "learning_rate": 3.3957117595048635e-05, + "loss": 0.6976793670654297, + "step": 36300 + }, + { + "epoch": 32.1840300818403, + "grad_norm": 0.46484723687171936, + "learning_rate": 3.391290893015031e-05, + "loss": 0.6972021484375, + "step": 36400 + }, + { + "epoch": 32.27250608272506, + "grad_norm": 0.43313083052635193, + "learning_rate": 3.386870026525199e-05, + "loss": 0.7049392700195313, + "step": 36500 + }, + { + "epoch": 32.36098208360982, + "grad_norm": 0.437752366065979, + "learning_rate": 3.3824491600353666e-05, + "loss": 0.7091526794433594, + "step": 36600 + }, + { + "epoch": 32.44945808449458, + "grad_norm": 0.44550085067749023, + "learning_rate": 3.378028293545535e-05, + "loss": 0.7121316528320313, + "step": 36700 + }, + { + "epoch": 32.53793408537934, + "grad_norm": 0.46052590012550354, + "learning_rate": 3.3736074270557034e-05, + "loss": 0.7150274658203125, + "step": 36800 + }, + { + "epoch": 32.6264100862641, + "grad_norm": 0.4344913065433502, + "learning_rate": 3.369186560565871e-05, + "loss": 0.7130059814453125, + "step": 36900 + }, + { + "epoch": 32.71488608714886, + "grad_norm": 0.45924630761146545, + "learning_rate": 3.364765694076039e-05, + "loss": 0.7156332397460937, + "step": 37000 + }, + { + "epoch": 32.80336208803362, + "grad_norm": 0.41177231073379517, + "learning_rate": 3.360344827586207e-05, + "loss": 0.7184346008300782, + "step": 37100 + }, + { + "epoch": 32.891838088918384, + "grad_norm": 0.44688835740089417, + "learning_rate": 3.355923961096375e-05, + "loss": 0.7201016235351563, + "step": 37200 + }, + { + "epoch": 32.980314089803144, + "grad_norm": 0.4971197545528412, + "learning_rate": 3.3515030946065426e-05, + "loss": 0.7191078186035156, + "step": 37300 + }, + { + "epoch": 33.06812652068127, + "grad_norm": 0.47201091051101685, + "learning_rate": 3.347126436781609e-05, + "loss": 0.6914530944824219, + "step": 37400 + }, + { + "epoch": 33.15660252156602, + "grad_norm": 0.4473711848258972, + "learning_rate": 3.342705570291777e-05, + "loss": 0.6855306243896484, + "step": 37500 + }, + { + "epoch": 33.24507852245078, + "grad_norm": 0.4745553135871887, + "learning_rate": 3.338284703801946e-05, + "loss": 0.6888325500488282, + "step": 37600 + }, + { + "epoch": 33.33355452333554, + "grad_norm": 0.45796144008636475, + "learning_rate": 3.3338638373121134e-05, + "loss": 0.6924916076660156, + "step": 37700 + }, + { + "epoch": 33.422030524220304, + "grad_norm": 0.47769099473953247, + "learning_rate": 3.329442970822281e-05, + "loss": 0.6937997436523438, + "step": 37800 + }, + { + "epoch": 33.510506525105065, + "grad_norm": 0.4637518525123596, + "learning_rate": 3.3250221043324495e-05, + "loss": 0.6975637817382813, + "step": 37900 + }, + { + "epoch": 33.598982525989825, + "grad_norm": 0.47370946407318115, + "learning_rate": 3.320601237842617e-05, + "loss": 0.6985407257080078, + "step": 38000 + }, + { + "epoch": 33.687458526874586, + "grad_norm": 0.467692106962204, + "learning_rate": 3.316180371352785e-05, + "loss": 0.7032517242431641, + "step": 38100 + }, + { + "epoch": 33.77593452775935, + "grad_norm": 0.4691486060619354, + "learning_rate": 3.311759504862953e-05, + "loss": 0.7019402313232422, + "step": 38200 + }, + { + "epoch": 33.86441052864411, + "grad_norm": 0.465666264295578, + "learning_rate": 3.307338638373122e-05, + "loss": 0.7065095520019531, + "step": 38300 + }, + { + "epoch": 33.95288652952887, + "grad_norm": 0.4870339632034302, + "learning_rate": 3.3029177718832894e-05, + "loss": 0.7060601043701172, + "step": 38400 + }, + { + "epoch": 34.04069896040699, + "grad_norm": 0.46102386713027954, + "learning_rate": 3.298496905393457e-05, + "loss": 0.6895645141601563, + "step": 38500 + }, + { + "epoch": 34.12917496129175, + "grad_norm": 0.4717739522457123, + "learning_rate": 3.2940760389036255e-05, + "loss": 0.6683721160888672, + "step": 38600 + }, + { + "epoch": 34.217650962176506, + "grad_norm": 0.47995516657829285, + "learning_rate": 3.289655172413793e-05, + "loss": 0.67727294921875, + "step": 38700 + }, + { + "epoch": 34.30612696306127, + "grad_norm": 0.4676993191242218, + "learning_rate": 3.2852343059239616e-05, + "loss": 0.6742596435546875, + "step": 38800 + }, + { + "epoch": 34.39460296394603, + "grad_norm": 0.4986591935157776, + "learning_rate": 3.280813439434129e-05, + "loss": 0.6811554718017578, + "step": 38900 + }, + { + "epoch": 34.48307896483079, + "grad_norm": 0.49108394980430603, + "learning_rate": 3.2763925729442977e-05, + "loss": 0.6826177215576172, + "step": 39000 + }, + { + "epoch": 34.57155496571555, + "grad_norm": 0.46544989943504333, + "learning_rate": 3.2719717064544654e-05, + "loss": 0.6843925476074219, + "step": 39100 + }, + { + "epoch": 34.66003096660031, + "grad_norm": 0.4714086055755615, + "learning_rate": 3.267550839964633e-05, + "loss": 0.6843089294433594, + "step": 39200 + }, + { + "epoch": 34.74850696748507, + "grad_norm": 0.4726520776748657, + "learning_rate": 3.263129973474801e-05, + "loss": 0.687828140258789, + "step": 39300 + }, + { + "epoch": 34.83698296836983, + "grad_norm": 0.5056101083755493, + "learning_rate": 3.258709106984969e-05, + "loss": 0.6943804168701172, + "step": 39400 + }, + { + "epoch": 34.92545896925459, + "grad_norm": 0.5143911242485046, + "learning_rate": 3.2542882404951375e-05, + "loss": 0.6947840118408203, + "step": 39500 + }, + { + "epoch": 35.013271400132716, + "grad_norm": 0.4712352752685547, + "learning_rate": 3.249867374005305e-05, + "loss": 0.6877326965332031, + "step": 39600 + }, + { + "epoch": 35.10174740101748, + "grad_norm": 0.5000380873680115, + "learning_rate": 3.2454465075154736e-05, + "loss": 0.6556487274169922, + "step": 39700 + }, + { + "epoch": 35.19022340190224, + "grad_norm": 0.5022478699684143, + "learning_rate": 3.2410256410256413e-05, + "loss": 0.6607290649414063, + "step": 39800 + }, + { + "epoch": 35.27869940278699, + "grad_norm": 0.511082112789154, + "learning_rate": 3.236604774535809e-05, + "loss": 0.6585157775878906, + "step": 39900 + }, + { + "epoch": 35.36717540367175, + "grad_norm": 0.45338326692581177, + "learning_rate": 3.232183908045977e-05, + "loss": 0.6670406341552735, + "step": 40000 + }, + { + "epoch": 35.45565140455651, + "grad_norm": 0.47589078545570374, + "learning_rate": 3.227763041556145e-05, + "loss": 0.6654150390625, + "step": 40100 + }, + { + "epoch": 35.54412740544127, + "grad_norm": 0.5111287236213684, + "learning_rate": 3.2233421750663135e-05, + "loss": 0.6706926727294922, + "step": 40200 + }, + { + "epoch": 35.632603406326034, + "grad_norm": 0.48615771532058716, + "learning_rate": 3.218921308576481e-05, + "loss": 0.6724550628662109, + "step": 40300 + }, + { + "epoch": 35.721079407210794, + "grad_norm": 0.5141739845275879, + "learning_rate": 3.214500442086649e-05, + "loss": 0.674487075805664, + "step": 40400 + }, + { + "epoch": 35.809555408095555, + "grad_norm": 0.512373149394989, + "learning_rate": 3.210079575596817e-05, + "loss": 0.6809010314941406, + "step": 40500 + }, + { + "epoch": 35.898031408980316, + "grad_norm": 0.5156219005584717, + "learning_rate": 3.205658709106985e-05, + "loss": 0.6783308410644531, + "step": 40600 + }, + { + "epoch": 35.98650740986508, + "grad_norm": 0.5266398191452026, + "learning_rate": 3.201237842617153e-05, + "loss": 0.6796981811523437, + "step": 40700 + }, + { + "epoch": 36.0743198407432, + "grad_norm": 0.5198646783828735, + "learning_rate": 3.196861184792219e-05, + "loss": 0.648563232421875, + "step": 40800 + }, + { + "epoch": 36.16279584162796, + "grad_norm": 0.4699224829673767, + "learning_rate": 3.1924403183023874e-05, + "loss": 0.6464600372314453, + "step": 40900 + }, + { + "epoch": 36.25127184251272, + "grad_norm": 0.5014195442199707, + "learning_rate": 3.188019451812556e-05, + "loss": 0.6471477508544922, + "step": 41000 + }, + { + "epoch": 36.339747843397475, + "grad_norm": 0.5231509804725647, + "learning_rate": 3.1835985853227235e-05, + "loss": 0.6519639587402344, + "step": 41100 + }, + { + "epoch": 36.428223844282236, + "grad_norm": 0.4843427538871765, + "learning_rate": 3.179177718832891e-05, + "loss": 0.6523241424560546, + "step": 41200 + }, + { + "epoch": 36.516699845167, + "grad_norm": 0.4956904351711273, + "learning_rate": 3.1747568523430596e-05, + "loss": 0.6547152709960937, + "step": 41300 + }, + { + "epoch": 36.60517584605176, + "grad_norm": 0.5103031396865845, + "learning_rate": 3.170335985853227e-05, + "loss": 0.6602716827392578, + "step": 41400 + }, + { + "epoch": 36.69365184693652, + "grad_norm": 0.5028578042984009, + "learning_rate": 3.165915119363395e-05, + "loss": 0.6617116546630859, + "step": 41500 + }, + { + "epoch": 36.78212784782128, + "grad_norm": 0.4997723698616028, + "learning_rate": 3.1614942528735634e-05, + "loss": 0.6632434844970703, + "step": 41600 + }, + { + "epoch": 36.87060384870604, + "grad_norm": 0.5246814489364624, + "learning_rate": 3.157073386383732e-05, + "loss": 0.6632743835449219, + "step": 41700 + }, + { + "epoch": 36.9590798495908, + "grad_norm": 0.5308569073677063, + "learning_rate": 3.1526525198938995e-05, + "loss": 0.6639631652832031, + "step": 41800 + }, + { + "epoch": 37.046892280468924, + "grad_norm": 0.49218234419822693, + "learning_rate": 3.148231653404067e-05, + "loss": 0.6452173614501953, + "step": 41900 + }, + { + "epoch": 37.135368281353685, + "grad_norm": 0.4680822491645813, + "learning_rate": 3.143810786914235e-05, + "loss": 0.6319191360473633, + "step": 42000 + }, + { + "epoch": 37.223844282238446, + "grad_norm": 0.4810407757759094, + "learning_rate": 3.139389920424403e-05, + "loss": 0.6338667297363281, + "step": 42100 + }, + { + "epoch": 37.3123202831232, + "grad_norm": 0.545889139175415, + "learning_rate": 3.134969053934571e-05, + "loss": 0.6395709228515625, + "step": 42200 + }, + { + "epoch": 37.40079628400796, + "grad_norm": 0.5600217580795288, + "learning_rate": 3.1305481874447394e-05, + "loss": 0.6406965637207032, + "step": 42300 + }, + { + "epoch": 37.48927228489272, + "grad_norm": 0.5517903566360474, + "learning_rate": 3.126127320954908e-05, + "loss": 0.6428462982177734, + "step": 42400 + }, + { + "epoch": 37.57774828577748, + "grad_norm": 0.49925389885902405, + "learning_rate": 3.1217064544650755e-05, + "loss": 0.6470170593261719, + "step": 42500 + }, + { + "epoch": 37.66622428666224, + "grad_norm": 0.4698370397090912, + "learning_rate": 3.117285587975243e-05, + "loss": 0.6477708435058593, + "step": 42600 + }, + { + "epoch": 37.754700287547, + "grad_norm": 0.5349763035774231, + "learning_rate": 3.112864721485411e-05, + "loss": 0.6515216827392578, + "step": 42700 + }, + { + "epoch": 37.84317628843176, + "grad_norm": 0.5066236853599548, + "learning_rate": 3.108443854995579e-05, + "loss": 0.6522242736816406, + "step": 42800 + }, + { + "epoch": 37.931652289316524, + "grad_norm": 0.5211920142173767, + "learning_rate": 3.104022988505747e-05, + "loss": 0.6515906524658203, + "step": 42900 + }, + { + "epoch": 38.01946472019465, + "grad_norm": 0.5003405213356018, + "learning_rate": 3.099646330680814e-05, + "loss": 0.6448411560058593, + "step": 43000 + }, + { + "epoch": 38.10794072107941, + "grad_norm": 0.5215827226638794, + "learning_rate": 3.095225464190982e-05, + "loss": 0.619310417175293, + "step": 43100 + }, + { + "epoch": 38.19641672196417, + "grad_norm": 0.4768511950969696, + "learning_rate": 3.0908045977011494e-05, + "loss": 0.6210311126708984, + "step": 43200 + }, + { + "epoch": 38.28489272284893, + "grad_norm": 0.5353608727455139, + "learning_rate": 3.086383731211318e-05, + "loss": 0.6246475601196289, + "step": 43300 + }, + { + "epoch": 38.373368723733684, + "grad_norm": 0.5182030200958252, + "learning_rate": 3.0819628647214855e-05, + "loss": 0.6273392486572266, + "step": 43400 + }, + { + "epoch": 38.461844724618445, + "grad_norm": 0.500842273235321, + "learning_rate": 3.077541998231653e-05, + "loss": 0.6327916717529297, + "step": 43500 + }, + { + "epoch": 38.550320725503205, + "grad_norm": 0.5168542861938477, + "learning_rate": 3.0731211317418216e-05, + "loss": 0.6323520278930664, + "step": 43600 + }, + { + "epoch": 38.638796726387966, + "grad_norm": 0.5403733253479004, + "learning_rate": 3.06870026525199e-05, + "loss": 0.6338058090209961, + "step": 43700 + }, + { + "epoch": 38.72727272727273, + "grad_norm": 0.5119574666023254, + "learning_rate": 3.064279398762158e-05, + "loss": 0.6391129302978515, + "step": 43800 + }, + { + "epoch": 38.81574872815749, + "grad_norm": 0.5214455127716064, + "learning_rate": 3.0598585322723254e-05, + "loss": 0.6368292999267579, + "step": 43900 + }, + { + "epoch": 38.90422472904225, + "grad_norm": 0.5679435133934021, + "learning_rate": 3.055437665782494e-05, + "loss": 0.6414280700683593, + "step": 44000 + }, + { + "epoch": 38.99270072992701, + "grad_norm": 0.5442212820053101, + "learning_rate": 3.0510167992926615e-05, + "loss": 0.6446417999267579, + "step": 44100 + }, + { + "epoch": 39.08051316080513, + "grad_norm": 0.46873417496681213, + "learning_rate": 3.0465959328028292e-05, + "loss": 0.6127575302124023, + "step": 44200 + }, + { + "epoch": 39.16898916168989, + "grad_norm": 0.5402541756629944, + "learning_rate": 3.042175066312998e-05, + "loss": 0.6059606552124024, + "step": 44300 + }, + { + "epoch": 39.257465162574654, + "grad_norm": 0.5081923007965088, + "learning_rate": 3.0377541998231656e-05, + "loss": 0.6121833038330078, + "step": 44400 + }, + { + "epoch": 39.345941163459415, + "grad_norm": 0.5688677430152893, + "learning_rate": 3.0333333333333337e-05, + "loss": 0.6163175964355468, + "step": 44500 + }, + { + "epoch": 39.43441716434417, + "grad_norm": 0.5273306965827942, + "learning_rate": 3.0289124668435014e-05, + "loss": 0.6198236465454101, + "step": 44600 + }, + { + "epoch": 39.52289316522893, + "grad_norm": 0.5107190608978271, + "learning_rate": 3.0244916003536694e-05, + "loss": 0.6242243576049805, + "step": 44700 + }, + { + "epoch": 39.61136916611369, + "grad_norm": 0.5110412240028381, + "learning_rate": 3.0200707338638375e-05, + "loss": 0.6227451705932617, + "step": 44800 + }, + { + "epoch": 39.69984516699845, + "grad_norm": 0.5370123982429504, + "learning_rate": 3.015649867374005e-05, + "loss": 0.6257634735107422, + "step": 44900 + }, + { + "epoch": 39.78832116788321, + "grad_norm": 0.5311342477798462, + "learning_rate": 3.0112290008841735e-05, + "loss": 0.6246538925170898, + "step": 45000 + }, + { + "epoch": 39.87679716876797, + "grad_norm": 0.5247089862823486, + "learning_rate": 3.0068081343943416e-05, + "loss": 0.6278446578979492, + "step": 45100 + }, + { + "epoch": 39.96527316965273, + "grad_norm": 0.5407604575157166, + "learning_rate": 3.0023872679045096e-05, + "loss": 0.6319368743896484, + "step": 45200 + }, + { + "epoch": 40.053085600530856, + "grad_norm": 0.49125176668167114, + "learning_rate": 2.9980106100795756e-05, + "loss": 0.608686294555664, + "step": 45300 + }, + { + "epoch": 40.14156160141562, + "grad_norm": 0.5193077325820923, + "learning_rate": 2.9935897435897437e-05, + "loss": 0.5979312515258789, + "step": 45400 + }, + { + "epoch": 40.23003760230038, + "grad_norm": 0.5521110892295837, + "learning_rate": 2.9891688770999117e-05, + "loss": 0.6026276016235351, + "step": 45500 + }, + { + "epoch": 40.31851360318514, + "grad_norm": 0.5131237506866455, + "learning_rate": 2.9847480106100794e-05, + "loss": 0.6056368637084961, + "step": 45600 + }, + { + "epoch": 40.4069896040699, + "grad_norm": 0.5547003149986267, + "learning_rate": 2.9803271441202478e-05, + "loss": 0.6073746490478515, + "step": 45700 + }, + { + "epoch": 40.49546560495465, + "grad_norm": 0.5059778690338135, + "learning_rate": 2.975906277630416e-05, + "loss": 0.6093035888671875, + "step": 45800 + }, + { + "epoch": 40.583941605839414, + "grad_norm": 0.5218088030815125, + "learning_rate": 2.971485411140584e-05, + "loss": 0.6098678970336914, + "step": 45900 + }, + { + "epoch": 40.672417606724174, + "grad_norm": 0.5111589431762695, + "learning_rate": 2.9670645446507516e-05, + "loss": 0.6144123458862305, + "step": 46000 + }, + { + "epoch": 40.760893607608935, + "grad_norm": 0.5875983238220215, + "learning_rate": 2.9626436781609196e-05, + "loss": 0.6149031448364258, + "step": 46100 + }, + { + "epoch": 40.849369608493696, + "grad_norm": 0.6077953577041626, + "learning_rate": 2.9582228116710873e-05, + "loss": 0.6200779724121094, + "step": 46200 + }, + { + "epoch": 40.937845609378456, + "grad_norm": 0.5511230230331421, + "learning_rate": 2.9538019451812554e-05, + "loss": 0.6175289916992187, + "step": 46300 + }, + { + "epoch": 41.02565804025658, + "grad_norm": 0.5434758067131042, + "learning_rate": 2.9493810786914238e-05, + "loss": 0.6117794418334961, + "step": 46400 + }, + { + "epoch": 41.11413404114134, + "grad_norm": 0.5463586449623108, + "learning_rate": 2.9449602122015918e-05, + "loss": 0.5865156936645508, + "step": 46500 + }, + { + "epoch": 41.2026100420261, + "grad_norm": 0.516645610332489, + "learning_rate": 2.94053934571176e-05, + "loss": 0.5934408950805664, + "step": 46600 + }, + { + "epoch": 41.29108604291086, + "grad_norm": 0.5041747093200684, + "learning_rate": 2.9361184792219276e-05, + "loss": 0.5907432556152343, + "step": 46700 + }, + { + "epoch": 41.37956204379562, + "grad_norm": 0.5490337014198303, + "learning_rate": 2.9316976127320956e-05, + "loss": 0.597823486328125, + "step": 46800 + }, + { + "epoch": 41.468038044680384, + "grad_norm": 0.5256726741790771, + "learning_rate": 2.9272767462422633e-05, + "loss": 0.5979599380493164, + "step": 46900 + }, + { + "epoch": 41.55651404556514, + "grad_norm": 0.49856510758399963, + "learning_rate": 2.9228558797524314e-05, + "loss": 0.6000013732910157, + "step": 47000 + }, + { + "epoch": 41.6449900464499, + "grad_norm": 0.540030837059021, + "learning_rate": 2.9184350132625998e-05, + "loss": 0.6044590759277344, + "step": 47100 + }, + { + "epoch": 41.73346604733466, + "grad_norm": 0.5599401593208313, + "learning_rate": 2.9140141467727678e-05, + "loss": 0.6050262451171875, + "step": 47200 + }, + { + "epoch": 41.82194204821942, + "grad_norm": 0.5251536965370178, + "learning_rate": 2.9095932802829355e-05, + "loss": 0.6084031677246093, + "step": 47300 + }, + { + "epoch": 41.91041804910418, + "grad_norm": 0.6002141237258911, + "learning_rate": 2.9051724137931036e-05, + "loss": 0.6051164627075195, + "step": 47400 + }, + { + "epoch": 41.99889404998894, + "grad_norm": 0.5603448748588562, + "learning_rate": 2.9007515473032716e-05, + "loss": 0.6085728073120117, + "step": 47500 + }, + { + "epoch": 42.086706480867065, + "grad_norm": 0.5491044521331787, + "learning_rate": 2.8963748894783376e-05, + "loss": 0.576365966796875, + "step": 47600 + }, + { + "epoch": 42.175182481751825, + "grad_norm": 0.5698864459991455, + "learning_rate": 2.8919540229885063e-05, + "loss": 0.5807184219360352, + "step": 47700 + }, + { + "epoch": 42.263658482636586, + "grad_norm": 0.574418306350708, + "learning_rate": 2.887533156498674e-05, + "loss": 0.5844138717651367, + "step": 47800 + }, + { + "epoch": 42.35213448352135, + "grad_norm": 0.5167635083198547, + "learning_rate": 2.883112290008842e-05, + "loss": 0.5845949935913086, + "step": 47900 + }, + { + "epoch": 42.44061048440611, + "grad_norm": 0.5338764786720276, + "learning_rate": 2.8786914235190098e-05, + "loss": 0.5889351272583008, + "step": 48000 + }, + { + "epoch": 42.52908648529087, + "grad_norm": 0.5340341329574585, + "learning_rate": 2.8742705570291778e-05, + "loss": 0.5909807205200195, + "step": 48100 + }, + { + "epoch": 42.61756248617562, + "grad_norm": 0.5493650436401367, + "learning_rate": 2.869849690539346e-05, + "loss": 0.5914651107788086, + "step": 48200 + }, + { + "epoch": 42.70603848706038, + "grad_norm": 0.6116383075714111, + "learning_rate": 2.8654288240495136e-05, + "loss": 0.592667350769043, + "step": 48300 + }, + { + "epoch": 42.79451448794514, + "grad_norm": 0.5631881356239319, + "learning_rate": 2.861007957559682e-05, + "loss": 0.5997231674194335, + "step": 48400 + }, + { + "epoch": 42.882990488829904, + "grad_norm": 0.5806667804718018, + "learning_rate": 2.85658709106985e-05, + "loss": 0.5957838439941406, + "step": 48500 + }, + { + "epoch": 42.971466489714665, + "grad_norm": 0.5075005888938904, + "learning_rate": 2.852166224580018e-05, + "loss": 0.5975283432006836, + "step": 48600 + }, + { + "epoch": 43.05927892059279, + "grad_norm": 0.5606797337532043, + "learning_rate": 2.8477453580901857e-05, + "loss": 0.5800529861450195, + "step": 48700 + }, + { + "epoch": 43.14775492147755, + "grad_norm": 0.5353171229362488, + "learning_rate": 2.8433244916003538e-05, + "loss": 0.5706613540649415, + "step": 48800 + }, + { + "epoch": 43.23623092236231, + "grad_norm": 0.5479321479797363, + "learning_rate": 2.8389036251105215e-05, + "loss": 0.5755366516113282, + "step": 48900 + }, + { + "epoch": 43.32470692324707, + "grad_norm": 0.5302407741546631, + "learning_rate": 2.8344827586206895e-05, + "loss": 0.5780391311645507, + "step": 49000 + }, + { + "epoch": 43.41318292413183, + "grad_norm": 0.5579783320426941, + "learning_rate": 2.830061892130858e-05, + "loss": 0.5774256896972656, + "step": 49100 + }, + { + "epoch": 43.50165892501659, + "grad_norm": 0.5295524597167969, + "learning_rate": 2.825641025641026e-05, + "loss": 0.5812548828125, + "step": 49200 + }, + { + "epoch": 43.59013492590135, + "grad_norm": 0.492058664560318, + "learning_rate": 2.821220159151194e-05, + "loss": 0.5796434783935547, + "step": 49300 + }, + { + "epoch": 43.67861092678611, + "grad_norm": 0.48961371183395386, + "learning_rate": 2.8167992926613617e-05, + "loss": 0.5851696014404297, + "step": 49400 + }, + { + "epoch": 43.76708692767087, + "grad_norm": 0.5714001059532166, + "learning_rate": 2.8123784261715298e-05, + "loss": 0.5890889358520508, + "step": 49500 + }, + { + "epoch": 43.85556292855563, + "grad_norm": 0.537390410900116, + "learning_rate": 2.8079575596816975e-05, + "loss": 0.5881150054931641, + "step": 49600 + }, + { + "epoch": 43.94403892944039, + "grad_norm": 0.5263146758079529, + "learning_rate": 2.8035366931918655e-05, + "loss": 0.5868202209472656, + "step": 49700 + }, + { + "epoch": 44.03185136031851, + "grad_norm": 0.5009394288063049, + "learning_rate": 2.7991600353669322e-05, + "loss": 0.578513412475586, + "step": 49800 + }, + { + "epoch": 44.12032736120327, + "grad_norm": 0.5233928561210632, + "learning_rate": 2.7947391688771002e-05, + "loss": 0.5612442016601562, + "step": 49900 + }, + { + "epoch": 44.208803362088034, + "grad_norm": 0.5212284922599792, + "learning_rate": 2.7903183023872683e-05, + "loss": 0.5634622955322266, + "step": 50000 + }, + { + "epoch": 44.297279362972795, + "grad_norm": 0.5920892357826233, + "learning_rate": 2.785897435897436e-05, + "loss": 0.5646255111694336, + "step": 50100 + }, + { + "epoch": 44.385755363857555, + "grad_norm": 0.5463851690292358, + "learning_rate": 2.781476569407604e-05, + "loss": 0.5711798477172851, + "step": 50200 + }, + { + "epoch": 44.474231364742316, + "grad_norm": 0.513917863368988, + "learning_rate": 2.7770557029177717e-05, + "loss": 0.5757728576660156, + "step": 50300 + }, + { + "epoch": 44.56270736562708, + "grad_norm": 0.5791277289390564, + "learning_rate": 2.7726348364279398e-05, + "loss": 0.5719475173950195, + "step": 50400 + }, + { + "epoch": 44.65118336651183, + "grad_norm": 0.5394783616065979, + "learning_rate": 2.768213969938108e-05, + "loss": 0.5751088714599609, + "step": 50500 + }, + { + "epoch": 44.73965936739659, + "grad_norm": 0.5699083805084229, + "learning_rate": 2.7637931034482762e-05, + "loss": 0.5771770095825195, + "step": 50600 + }, + { + "epoch": 44.82813536828135, + "grad_norm": 0.5610557794570923, + "learning_rate": 2.759372236958444e-05, + "loss": 0.5790963745117188, + "step": 50700 + }, + { + "epoch": 44.91661136916611, + "grad_norm": 0.5751321911811829, + "learning_rate": 2.754951370468612e-05, + "loss": 0.5781265258789062, + "step": 50800 + }, + { + "epoch": 45.004423800044236, + "grad_norm": 0.4831089377403259, + "learning_rate": 2.75053050397878e-05, + "loss": 0.5815114593505859, + "step": 50900 + }, + { + "epoch": 45.092899800929, + "grad_norm": 0.5138679146766663, + "learning_rate": 2.7461096374889477e-05, + "loss": 0.5530588912963867, + "step": 51000 + }, + { + "epoch": 45.18137580181376, + "grad_norm": 0.5327210426330566, + "learning_rate": 2.7416887709991158e-05, + "loss": 0.5549150085449219, + "step": 51100 + }, + { + "epoch": 45.26985180269852, + "grad_norm": 0.5089725255966187, + "learning_rate": 2.737267904509284e-05, + "loss": 0.5587585830688476, + "step": 51200 + }, + { + "epoch": 45.35832780358328, + "grad_norm": 0.5307016372680664, + "learning_rate": 2.7328470380194522e-05, + "loss": 0.5582825851440429, + "step": 51300 + }, + { + "epoch": 45.44680380446804, + "grad_norm": 0.6189883351325989, + "learning_rate": 2.72842617152962e-05, + "loss": 0.561285514831543, + "step": 51400 + }, + { + "epoch": 45.5352798053528, + "grad_norm": 0.5789527893066406, + "learning_rate": 2.724005305039788e-05, + "loss": 0.5647828674316406, + "step": 51500 + }, + { + "epoch": 45.62375580623756, + "grad_norm": 0.553713321685791, + "learning_rate": 2.719584438549956e-05, + "loss": 0.5659704208374023, + "step": 51600 + }, + { + "epoch": 45.712231807122315, + "grad_norm": 0.5502424240112305, + "learning_rate": 2.7151635720601237e-05, + "loss": 0.5685673522949218, + "step": 51700 + }, + { + "epoch": 45.800707808007076, + "grad_norm": 0.6388786435127258, + "learning_rate": 2.7107427055702917e-05, + "loss": 0.569713134765625, + "step": 51800 + }, + { + "epoch": 45.889183808891836, + "grad_norm": 0.5839136242866516, + "learning_rate": 2.70632183908046e-05, + "loss": 0.5713850784301758, + "step": 51900 + }, + { + "epoch": 45.9776598097766, + "grad_norm": 0.5872997641563416, + "learning_rate": 2.701900972590628e-05, + "loss": 0.5713462448120117, + "step": 52000 + }, + { + "epoch": 46.06547224065472, + "grad_norm": 0.5111995339393616, + "learning_rate": 2.697524314765694e-05, + "loss": 0.5514000701904297, + "step": 52100 + }, + { + "epoch": 46.15394824153948, + "grad_norm": 0.5677483677864075, + "learning_rate": 2.6931034482758622e-05, + "loss": 0.5458650207519531, + "step": 52200 + }, + { + "epoch": 46.24242424242424, + "grad_norm": 0.5756211876869202, + "learning_rate": 2.68868258178603e-05, + "loss": 0.5480696868896484, + "step": 52300 + }, + { + "epoch": 46.330900243309, + "grad_norm": 0.6053562164306641, + "learning_rate": 2.684261715296198e-05, + "loss": 0.5525957870483399, + "step": 52400 + }, + { + "epoch": 46.419376244193764, + "grad_norm": 0.5155165791511536, + "learning_rate": 2.6798408488063663e-05, + "loss": 0.5557857513427734, + "step": 52500 + }, + { + "epoch": 46.507852245078524, + "grad_norm": 0.5804229378700256, + "learning_rate": 2.6754199823165344e-05, + "loss": 0.5559201049804687, + "step": 52600 + }, + { + "epoch": 46.596328245963285, + "grad_norm": 0.5536544919013977, + "learning_rate": 2.6709991158267024e-05, + "loss": 0.5591853713989258, + "step": 52700 + }, + { + "epoch": 46.684804246848046, + "grad_norm": 0.603621244430542, + "learning_rate": 2.66657824933687e-05, + "loss": 0.5596856307983399, + "step": 52800 + }, + { + "epoch": 46.7732802477328, + "grad_norm": 0.5604232549667358, + "learning_rate": 2.662157382847038e-05, + "loss": 0.5584945678710938, + "step": 52900 + }, + { + "epoch": 46.86175624861756, + "grad_norm": 0.5974889993667603, + "learning_rate": 2.657736516357206e-05, + "loss": 0.5582848358154296, + "step": 53000 + }, + { + "epoch": 46.95023224950232, + "grad_norm": 0.5440397262573242, + "learning_rate": 2.653315649867374e-05, + "loss": 0.5634394454956054, + "step": 53100 + }, + { + "epoch": 47.038044680380445, + "grad_norm": 0.5610032081604004, + "learning_rate": 2.6488947833775423e-05, + "loss": 0.5574512481689453, + "step": 53200 + }, + { + "epoch": 47.126520681265205, + "grad_norm": 0.607563853263855, + "learning_rate": 2.6444739168877104e-05, + "loss": 0.5387821197509766, + "step": 53300 + }, + { + "epoch": 47.214996682149966, + "grad_norm": 0.5836204290390015, + "learning_rate": 2.640053050397878e-05, + "loss": 0.5401793670654297, + "step": 53400 + }, + { + "epoch": 47.30347268303473, + "grad_norm": 0.5325765013694763, + "learning_rate": 2.635632183908046e-05, + "loss": 0.5437668991088868, + "step": 53500 + }, + { + "epoch": 47.39194868391949, + "grad_norm": 0.5740872621536255, + "learning_rate": 2.631211317418214e-05, + "loss": 0.5443574142456055, + "step": 53600 + }, + { + "epoch": 47.48042468480425, + "grad_norm": 0.5562124848365784, + "learning_rate": 2.626790450928382e-05, + "loss": 0.5469727325439453, + "step": 53700 + }, + { + "epoch": 47.56890068568901, + "grad_norm": 0.5893000960350037, + "learning_rate": 2.62236958443855e-05, + "loss": 0.5502291107177735, + "step": 53800 + }, + { + "epoch": 47.65737668657377, + "grad_norm": 0.6538830995559692, + "learning_rate": 2.6179487179487183e-05, + "loss": 0.552915382385254, + "step": 53900 + }, + { + "epoch": 47.74585268745853, + "grad_norm": 0.5710316300392151, + "learning_rate": 2.6135278514588863e-05, + "loss": 0.5510491943359375, + "step": 54000 + }, + { + "epoch": 47.834328688343284, + "grad_norm": 0.5235297083854675, + "learning_rate": 2.609106984969054e-05, + "loss": 0.5519483184814453, + "step": 54100 + }, + { + "epoch": 47.922804689228045, + "grad_norm": 0.6048061847686768, + "learning_rate": 2.604686118479222e-05, + "loss": 0.5567644882202148, + "step": 54200 + }, + { + "epoch": 48.01061712010617, + "grad_norm": 0.5698108077049255, + "learning_rate": 2.6003094606542884e-05, + "loss": 0.5547234344482422, + "step": 54300 + }, + { + "epoch": 48.09909312099093, + "grad_norm": 0.49287617206573486, + "learning_rate": 2.595888594164456e-05, + "loss": 0.5280181884765625, + "step": 54400 + }, + { + "epoch": 48.18756912187569, + "grad_norm": 0.5525228977203369, + "learning_rate": 2.591467727674624e-05, + "loss": 0.5349401092529297, + "step": 54500 + }, + { + "epoch": 48.27604512276045, + "grad_norm": 0.5026161670684814, + "learning_rate": 2.5870468611847925e-05, + "loss": 0.5378446578979492, + "step": 54600 + }, + { + "epoch": 48.36452112364521, + "grad_norm": 0.5191828608512878, + "learning_rate": 2.5826259946949606e-05, + "loss": 0.5382429122924804, + "step": 54700 + }, + { + "epoch": 48.45299712452997, + "grad_norm": 0.5171953439712524, + "learning_rate": 2.5782051282051283e-05, + "loss": 0.5364204406738281, + "step": 54800 + }, + { + "epoch": 48.54147312541473, + "grad_norm": 0.5302397012710571, + "learning_rate": 2.5737842617152963e-05, + "loss": 0.5405542373657226, + "step": 54900 + }, + { + "epoch": 48.62994912629949, + "grad_norm": 0.5187925100326538, + "learning_rate": 2.569363395225464e-05, + "loss": 0.5436551284790039, + "step": 55000 + }, + { + "epoch": 48.718425127184254, + "grad_norm": 0.5707531571388245, + "learning_rate": 2.564942528735632e-05, + "loss": 0.5467363357543945, + "step": 55100 + }, + { + "epoch": 48.806901128069015, + "grad_norm": 0.5525254607200623, + "learning_rate": 2.5605216622458e-05, + "loss": 0.5466318130493164, + "step": 55200 + }, + { + "epoch": 48.89537712895377, + "grad_norm": 0.5896828174591064, + "learning_rate": 2.5561007957559685e-05, + "loss": 0.5489627075195312, + "step": 55300 + }, + { + "epoch": 48.98385312983853, + "grad_norm": 0.593329131603241, + "learning_rate": 2.5516799292661366e-05, + "loss": 0.5492449569702148, + "step": 55400 + }, + { + "epoch": 49.07166556071665, + "grad_norm": 0.45202845335006714, + "learning_rate": 2.5472590627763043e-05, + "loss": 0.5282985687255859, + "step": 55500 + }, + { + "epoch": 49.160141561601414, + "grad_norm": 0.45874515175819397, + "learning_rate": 2.5428381962864723e-05, + "loss": 0.5267356872558594, + "step": 55600 + }, + { + "epoch": 49.248617562486174, + "grad_norm": 0.5499678254127502, + "learning_rate": 2.53841732979664e-05, + "loss": 0.5255993270874023, + "step": 55700 + }, + { + "epoch": 49.337093563370935, + "grad_norm": 0.5569108724594116, + "learning_rate": 2.533996463306808e-05, + "loss": 0.5299503707885742, + "step": 55800 + }, + { + "epoch": 49.425569564255696, + "grad_norm": 0.5677438974380493, + "learning_rate": 2.529575596816976e-05, + "loss": 0.5316028594970703, + "step": 55900 + }, + { + "epoch": 49.51404556514046, + "grad_norm": 0.5888075828552246, + "learning_rate": 2.5251547303271445e-05, + "loss": 0.5354986953735351, + "step": 56000 + }, + { + "epoch": 49.60252156602522, + "grad_norm": 0.5639616250991821, + "learning_rate": 2.5207338638373122e-05, + "loss": 0.5369997787475586, + "step": 56100 + }, + { + "epoch": 49.69099756690998, + "grad_norm": 0.509158194065094, + "learning_rate": 2.5163129973474803e-05, + "loss": 0.536979866027832, + "step": 56200 + }, + { + "epoch": 49.77947356779474, + "grad_norm": 0.5412595868110657, + "learning_rate": 2.5118921308576483e-05, + "loss": 0.5382201004028321, + "step": 56300 + }, + { + "epoch": 49.86794956867949, + "grad_norm": 0.6052098274230957, + "learning_rate": 2.507471264367816e-05, + "loss": 0.5390504837036133, + "step": 56400 + }, + { + "epoch": 49.95642556956425, + "grad_norm": 0.5019105076789856, + "learning_rate": 2.503050397877984e-05, + "loss": 0.5391928482055665, + "step": 56500 + }, + { + "epoch": 50.04423800044238, + "grad_norm": 0.5133684873580933, + "learning_rate": 2.4986737400530504e-05, + "loss": 0.529360580444336, + "step": 56600 + }, + { + "epoch": 50.13271400132714, + "grad_norm": 0.5742220878601074, + "learning_rate": 2.4942528735632184e-05, + "loss": 0.5150651550292968, + "step": 56700 + }, + { + "epoch": 50.2211900022119, + "grad_norm": 0.5389617681503296, + "learning_rate": 2.4898320070733865e-05, + "loss": 0.5204330444335937, + "step": 56800 + }, + { + "epoch": 50.30966600309666, + "grad_norm": 0.5938611030578613, + "learning_rate": 2.4854111405835545e-05, + "loss": 0.5252494049072266, + "step": 56900 + }, + { + "epoch": 50.39814200398142, + "grad_norm": 0.5617892146110535, + "learning_rate": 2.4809902740937225e-05, + "loss": 0.5260490036010742, + "step": 57000 + }, + { + "epoch": 50.48661800486618, + "grad_norm": 0.6076000332832336, + "learning_rate": 2.4765694076038906e-05, + "loss": 0.5278256607055664, + "step": 57100 + }, + { + "epoch": 50.57509400575094, + "grad_norm": 0.5321983695030212, + "learning_rate": 2.4721485411140586e-05, + "loss": 0.5286510467529297, + "step": 57200 + }, + { + "epoch": 50.6635700066357, + "grad_norm": 0.614532470703125, + "learning_rate": 2.4677276746242263e-05, + "loss": 0.5313225936889648, + "step": 57300 + }, + { + "epoch": 50.75204600752046, + "grad_norm": 0.5830910801887512, + "learning_rate": 2.4633068081343944e-05, + "loss": 0.5300481796264649, + "step": 57400 + }, + { + "epoch": 50.84052200840522, + "grad_norm": 0.5918353199958801, + "learning_rate": 2.4588859416445624e-05, + "loss": 0.5337774276733398, + "step": 57500 + }, + { + "epoch": 50.92899800928998, + "grad_norm": 0.5791705846786499, + "learning_rate": 2.4544650751547305e-05, + "loss": 0.5316382598876953, + "step": 57600 + }, + { + "epoch": 51.01681044016811, + "grad_norm": 0.521299421787262, + "learning_rate": 2.4500442086648985e-05, + "loss": 0.5307102203369141, + "step": 57700 + }, + { + "epoch": 51.10528644105286, + "grad_norm": 0.5163324475288391, + "learning_rate": 2.4456233421750666e-05, + "loss": 0.5103409576416016, + "step": 57800 + }, + { + "epoch": 51.19376244193762, + "grad_norm": 0.5436499714851379, + "learning_rate": 2.4412024756852346e-05, + "loss": 0.5144682693481445, + "step": 57900 + }, + { + "epoch": 51.28223844282238, + "grad_norm": 0.5268517136573792, + "learning_rate": 2.4367816091954023e-05, + "loss": 0.5170879364013672, + "step": 58000 + }, + { + "epoch": 51.37071444370714, + "grad_norm": 0.5523056983947754, + "learning_rate": 2.4323607427055704e-05, + "loss": 0.5176148223876953, + "step": 58100 + }, + { + "epoch": 51.459190444591904, + "grad_norm": 0.5733488202095032, + "learning_rate": 2.4279398762157384e-05, + "loss": 0.5213256454467774, + "step": 58200 + }, + { + "epoch": 51.547666445476665, + "grad_norm": 0.6002511978149414, + "learning_rate": 2.4235190097259065e-05, + "loss": 0.5213332748413086, + "step": 58300 + }, + { + "epoch": 51.636142446361426, + "grad_norm": 0.5866407155990601, + "learning_rate": 2.4190981432360742e-05, + "loss": 0.5219316101074218, + "step": 58400 + }, + { + "epoch": 51.724618447246186, + "grad_norm": 0.620346188545227, + "learning_rate": 2.4146772767462426e-05, + "loss": 0.5251021575927735, + "step": 58500 + }, + { + "epoch": 51.81309444813095, + "grad_norm": 0.5428482294082642, + "learning_rate": 2.4102564102564103e-05, + "loss": 0.5254843521118164, + "step": 58600 + }, + { + "epoch": 51.90157044901571, + "grad_norm": 0.6146367192268372, + "learning_rate": 2.4058355437665783e-05, + "loss": 0.5262796401977539, + "step": 58700 + }, + { + "epoch": 51.99004644990046, + "grad_norm": 0.6002848148345947, + "learning_rate": 2.4014146772767464e-05, + "loss": 0.5279874801635742, + "step": 58800 + }, + { + "epoch": 52.07785888077859, + "grad_norm": 0.5608682036399841, + "learning_rate": 2.3970380194518127e-05, + "loss": 0.5045627975463867, + "step": 58900 + }, + { + "epoch": 52.166334881663346, + "grad_norm": 0.5034646391868591, + "learning_rate": 2.3926171529619807e-05, + "loss": 0.5071027755737305, + "step": 59000 + }, + { + "epoch": 52.25481088254811, + "grad_norm": 0.5443050861358643, + "learning_rate": 2.3881962864721484e-05, + "loss": 0.5105178451538086, + "step": 59100 + }, + { + "epoch": 52.34328688343287, + "grad_norm": 0.5455040335655212, + "learning_rate": 2.3837754199823168e-05, + "loss": 0.5111968612670899, + "step": 59200 + }, + { + "epoch": 52.43176288431763, + "grad_norm": 0.5393562912940979, + "learning_rate": 2.3793545534924845e-05, + "loss": 0.5109628295898437, + "step": 59300 + }, + { + "epoch": 52.52023888520239, + "grad_norm": 0.5572716593742371, + "learning_rate": 2.3749336870026526e-05, + "loss": 0.5128989791870118, + "step": 59400 + }, + { + "epoch": 52.60871488608715, + "grad_norm": 0.5157389640808105, + "learning_rate": 2.3705128205128206e-05, + "loss": 0.5179262924194336, + "step": 59500 + }, + { + "epoch": 52.69719088697191, + "grad_norm": 0.5245424509048462, + "learning_rate": 2.3660919540229886e-05, + "loss": 0.5182614517211914, + "step": 59600 + }, + { + "epoch": 52.78566688785667, + "grad_norm": 0.6405171155929565, + "learning_rate": 2.3616710875331567e-05, + "loss": 0.5196902084350586, + "step": 59700 + }, + { + "epoch": 52.87414288874143, + "grad_norm": 0.5531449317932129, + "learning_rate": 2.3572502210433244e-05, + "loss": 0.5213772583007813, + "step": 59800 + }, + { + "epoch": 52.96261888962619, + "grad_norm": 0.5440499186515808, + "learning_rate": 2.3528293545534928e-05, + "loss": 0.5214180755615234, + "step": 59900 + }, + { + "epoch": 53.050431320504316, + "grad_norm": 0.5454942584037781, + "learning_rate": 2.3484084880636605e-05, + "loss": 0.5082747268676758, + "step": 60000 + }, + { + "epoch": 53.13890732138907, + "grad_norm": 0.6037677526473999, + "learning_rate": 2.3439876215738285e-05, + "loss": 0.4992447662353516, + "step": 60100 + }, + { + "epoch": 53.22738332227383, + "grad_norm": 0.6089978218078613, + "learning_rate": 2.3395667550839966e-05, + "loss": 0.501078987121582, + "step": 60200 + }, + { + "epoch": 53.31585932315859, + "grad_norm": 0.5581852793693542, + "learning_rate": 2.3351458885941646e-05, + "loss": 0.50614990234375, + "step": 60300 + }, + { + "epoch": 53.40433532404335, + "grad_norm": 0.5539824366569519, + "learning_rate": 2.3307250221043327e-05, + "loss": 0.5036640548706055, + "step": 60400 + }, + { + "epoch": 53.49281132492811, + "grad_norm": 0.5434619784355164, + "learning_rate": 2.3263041556145004e-05, + "loss": 0.5078977966308593, + "step": 60500 + }, + { + "epoch": 53.58128732581287, + "grad_norm": 0.5596204400062561, + "learning_rate": 2.3218832891246688e-05, + "loss": 0.5105896377563477, + "step": 60600 + }, + { + "epoch": 53.669763326697634, + "grad_norm": 0.5933516621589661, + "learning_rate": 2.3174624226348365e-05, + "loss": 0.512298583984375, + "step": 60700 + }, + { + "epoch": 53.758239327582395, + "grad_norm": 0.5938782095909119, + "learning_rate": 2.3130415561450045e-05, + "loss": 0.5136246871948242, + "step": 60800 + }, + { + "epoch": 53.846715328467155, + "grad_norm": 0.5711195468902588, + "learning_rate": 2.3086206896551726e-05, + "loss": 0.5137527465820313, + "step": 60900 + }, + { + "epoch": 53.935191329351916, + "grad_norm": 0.5345974564552307, + "learning_rate": 2.3041998231653406e-05, + "loss": 0.5148337173461914, + "step": 61000 + }, + { + "epoch": 54.02300376023004, + "grad_norm": 0.5462290644645691, + "learning_rate": 2.299823165340407e-05, + "loss": 0.5070685577392579, + "step": 61100 + }, + { + "epoch": 54.1114797611148, + "grad_norm": 0.5135403275489807, + "learning_rate": 2.295402298850575e-05, + "loss": 0.49042961120605466, + "step": 61200 + }, + { + "epoch": 54.199955761999554, + "grad_norm": 0.5753411650657654, + "learning_rate": 2.290981432360743e-05, + "loss": 0.49762104034423826, + "step": 61300 + }, + { + "epoch": 54.288431762884315, + "grad_norm": 0.5738378167152405, + "learning_rate": 2.2865605658709107e-05, + "loss": 0.4983011245727539, + "step": 61400 + }, + { + "epoch": 54.376907763769076, + "grad_norm": 0.5234966278076172, + "learning_rate": 2.2821396993810788e-05, + "loss": 0.5005590057373047, + "step": 61500 + }, + { + "epoch": 54.465383764653836, + "grad_norm": 0.5313852429389954, + "learning_rate": 2.2777188328912468e-05, + "loss": 0.503372917175293, + "step": 61600 + }, + { + "epoch": 54.5538597655386, + "grad_norm": 0.49838191270828247, + "learning_rate": 2.273297966401415e-05, + "loss": 0.5020324325561524, + "step": 61700 + }, + { + "epoch": 54.64233576642336, + "grad_norm": 0.5403088927268982, + "learning_rate": 2.2688770999115826e-05, + "loss": 0.5049329376220704, + "step": 61800 + }, + { + "epoch": 54.73081176730812, + "grad_norm": 0.46723249554634094, + "learning_rate": 2.264456233421751e-05, + "loss": 0.5059401321411133, + "step": 61900 + }, + { + "epoch": 54.81928776819288, + "grad_norm": 0.5539482235908508, + "learning_rate": 2.2600353669319187e-05, + "loss": 0.5069823837280274, + "step": 62000 + }, + { + "epoch": 54.90776376907764, + "grad_norm": 0.5377270579338074, + "learning_rate": 2.2556145004420867e-05, + "loss": 0.508377685546875, + "step": 62100 + }, + { + "epoch": 54.9962397699624, + "grad_norm": 0.6182072162628174, + "learning_rate": 2.2511936339522548e-05, + "loss": 0.5095947647094726, + "step": 62200 + }, + { + "epoch": 55.084052200840524, + "grad_norm": 0.5139372944831848, + "learning_rate": 2.2467727674624228e-05, + "loss": 0.4896272277832031, + "step": 62300 + }, + { + "epoch": 55.172528201725285, + "grad_norm": 0.5812121629714966, + "learning_rate": 2.242351900972591e-05, + "loss": 0.49099037170410154, + "step": 62400 + }, + { + "epoch": 55.26100420261004, + "grad_norm": 0.5491729378700256, + "learning_rate": 2.2379310344827586e-05, + "loss": 0.4927267074584961, + "step": 62500 + }, + { + "epoch": 55.3494802034948, + "grad_norm": 0.5951135158538818, + "learning_rate": 2.233510167992927e-05, + "loss": 0.49305023193359376, + "step": 62600 + }, + { + "epoch": 55.43795620437956, + "grad_norm": 0.5938172340393066, + "learning_rate": 2.2290893015030946e-05, + "loss": 0.49482032775878904, + "step": 62700 + }, + { + "epoch": 55.52643220526432, + "grad_norm": 0.5288723111152649, + "learning_rate": 2.2246684350132627e-05, + "loss": 0.4974822998046875, + "step": 62800 + }, + { + "epoch": 55.61490820614908, + "grad_norm": 0.5663400888442993, + "learning_rate": 2.2202475685234307e-05, + "loss": 0.498828239440918, + "step": 62900 + }, + { + "epoch": 55.70338420703384, + "grad_norm": 0.5939375162124634, + "learning_rate": 2.2158267020335988e-05, + "loss": 0.5004440307617187, + "step": 63000 + }, + { + "epoch": 55.7918602079186, + "grad_norm": 0.628774106502533, + "learning_rate": 2.2114058355437668e-05, + "loss": 0.5034025573730468, + "step": 63100 + }, + { + "epoch": 55.880336208803364, + "grad_norm": 0.6160352826118469, + "learning_rate": 2.2069849690539345e-05, + "loss": 0.5042695236206055, + "step": 63200 + }, + { + "epoch": 55.968812209688124, + "grad_norm": 0.5891813635826111, + "learning_rate": 2.202564102564103e-05, + "loss": 0.5021416473388672, + "step": 63300 + }, + { + "epoch": 56.05662464056625, + "grad_norm": 0.5297622680664062, + "learning_rate": 2.198187444739169e-05, + "loss": 0.4904953384399414, + "step": 63400 + }, + { + "epoch": 56.14510064145101, + "grad_norm": 0.5649422407150269, + "learning_rate": 2.193766578249337e-05, + "loss": 0.485706672668457, + "step": 63500 + }, + { + "epoch": 56.23357664233577, + "grad_norm": 0.6352797150611877, + "learning_rate": 2.189345711759505e-05, + "loss": 0.4867672348022461, + "step": 63600 + }, + { + "epoch": 56.32205264322052, + "grad_norm": 0.5789678692817688, + "learning_rate": 2.184924845269673e-05, + "loss": 0.48802379608154295, + "step": 63700 + }, + { + "epoch": 56.410528644105284, + "grad_norm": 0.6075431704521179, + "learning_rate": 2.180503978779841e-05, + "loss": 0.4910835647583008, + "step": 63800 + }, + { + "epoch": 56.499004644990045, + "grad_norm": 0.5858777165412903, + "learning_rate": 2.1760831122900088e-05, + "loss": 0.4906935119628906, + "step": 63900 + }, + { + "epoch": 56.587480645874805, + "grad_norm": 0.5143148899078369, + "learning_rate": 2.171662245800177e-05, + "loss": 0.49202545166015627, + "step": 64000 + }, + { + "epoch": 56.675956646759566, + "grad_norm": 0.5330872535705566, + "learning_rate": 2.167241379310345e-05, + "loss": 0.4929664611816406, + "step": 64100 + }, + { + "epoch": 56.76443264764433, + "grad_norm": 0.5530017018318176, + "learning_rate": 2.162820512820513e-05, + "loss": 0.49355899810791015, + "step": 64200 + }, + { + "epoch": 56.85290864852909, + "grad_norm": 0.5891992449760437, + "learning_rate": 2.158399646330681e-05, + "loss": 0.49566749572753904, + "step": 64300 + }, + { + "epoch": 56.94138464941385, + "grad_norm": 0.5289095044136047, + "learning_rate": 2.153978779840849e-05, + "loss": 0.4987163543701172, + "step": 64400 + }, + { + "epoch": 57.02919708029197, + "grad_norm": 0.5679471492767334, + "learning_rate": 2.1495579133510167e-05, + "loss": 0.49003833770751953, + "step": 64500 + }, + { + "epoch": 57.11767308117673, + "grad_norm": 0.5432245135307312, + "learning_rate": 2.1451370468611848e-05, + "loss": 0.47765895843505857, + "step": 64600 + }, + { + "epoch": 57.20614908206149, + "grad_norm": 0.5474491119384766, + "learning_rate": 2.1407161803713528e-05, + "loss": 0.4797785568237305, + "step": 64700 + }, + { + "epoch": 57.294625082946254, + "grad_norm": 0.537804126739502, + "learning_rate": 2.136295313881521e-05, + "loss": 0.4833247756958008, + "step": 64800 + }, + { + "epoch": 57.38310108383101, + "grad_norm": 0.572169840335846, + "learning_rate": 2.131874447391689e-05, + "loss": 0.4836674118041992, + "step": 64900 + }, + { + "epoch": 57.47157708471577, + "grad_norm": 0.5344268679618835, + "learning_rate": 2.127453580901857e-05, + "loss": 0.48507492065429686, + "step": 65000 + }, + { + "epoch": 57.56005308560053, + "grad_norm": 0.5664619207382202, + "learning_rate": 2.123032714412025e-05, + "loss": 0.488138427734375, + "step": 65100 + }, + { + "epoch": 57.64852908648529, + "grad_norm": 0.5902144312858582, + "learning_rate": 2.1186118479221927e-05, + "loss": 0.48771110534667966, + "step": 65200 + }, + { + "epoch": 57.73700508737005, + "grad_norm": 0.562929630279541, + "learning_rate": 2.1141909814323607e-05, + "loss": 0.4875301742553711, + "step": 65300 + }, + { + "epoch": 57.82548108825481, + "grad_norm": 0.5995573997497559, + "learning_rate": 2.1097701149425288e-05, + "loss": 0.49271678924560547, + "step": 65400 + }, + { + "epoch": 57.91395708913957, + "grad_norm": 0.6624785661697388, + "learning_rate": 2.105349248452697e-05, + "loss": 0.4920695877075195, + "step": 65500 + }, + { + "epoch": 58.001769520017696, + "grad_norm": 0.5402753353118896, + "learning_rate": 2.100928381962865e-05, + "loss": 0.49431739807128905, + "step": 65600 + }, + { + "epoch": 58.09024552090246, + "grad_norm": 0.5145826935768127, + "learning_rate": 2.096507515473033e-05, + "loss": 0.47089763641357424, + "step": 65700 + }, + { + "epoch": 58.17872152178722, + "grad_norm": 0.5931445360183716, + "learning_rate": 2.092086648983201e-05, + "loss": 0.4758612060546875, + "step": 65800 + }, + { + "epoch": 58.26719752267198, + "grad_norm": 0.5388639569282532, + "learning_rate": 2.0876657824933687e-05, + "loss": 0.47640296936035154, + "step": 65900 + }, + { + "epoch": 58.35567352355674, + "grad_norm": 0.5639314651489258, + "learning_rate": 2.0832449160035367e-05, + "loss": 0.482130241394043, + "step": 66000 + }, + { + "epoch": 58.44414952444149, + "grad_norm": 0.5535529851913452, + "learning_rate": 2.0788240495137048e-05, + "loss": 0.47872936248779296, + "step": 66100 + }, + { + "epoch": 58.53262552532625, + "grad_norm": 0.5827674865722656, + "learning_rate": 2.0744031830238728e-05, + "loss": 0.4842064666748047, + "step": 66200 + }, + { + "epoch": 58.621101526211014, + "grad_norm": 0.5696784257888794, + "learning_rate": 2.0699823165340405e-05, + "loss": 0.4816234588623047, + "step": 66300 + }, + { + "epoch": 58.709577527095774, + "grad_norm": 0.5349422097206116, + "learning_rate": 2.065561450044209e-05, + "loss": 0.48554718017578125, + "step": 66400 + }, + { + "epoch": 58.798053527980535, + "grad_norm": 0.636604368686676, + "learning_rate": 2.0611405835543766e-05, + "loss": 0.4876006317138672, + "step": 66500 + }, + { + "epoch": 58.886529528865296, + "grad_norm": 0.6060304045677185, + "learning_rate": 2.0567197170645447e-05, + "loss": 0.4887725830078125, + "step": 66600 + }, + { + "epoch": 58.97500552975006, + "grad_norm": 0.6087244749069214, + "learning_rate": 2.0522988505747127e-05, + "loss": 0.4868877410888672, + "step": 66700 + }, + { + "epoch": 59.06281796062818, + "grad_norm": 0.49913933873176575, + "learning_rate": 2.047922192749779e-05, + "loss": 0.4722119140625, + "step": 66800 + }, + { + "epoch": 59.15129396151294, + "grad_norm": 0.4722621738910675, + "learning_rate": 2.043501326259947e-05, + "loss": 0.47009246826171874, + "step": 66900 + }, + { + "epoch": 59.2397699623977, + "grad_norm": 0.5657719373703003, + "learning_rate": 2.0390804597701148e-05, + "loss": 0.472298583984375, + "step": 67000 + }, + { + "epoch": 59.32824596328246, + "grad_norm": 0.5761541724205017, + "learning_rate": 2.034659593280283e-05, + "loss": 0.4723761749267578, + "step": 67100 + }, + { + "epoch": 59.416721964167216, + "grad_norm": 0.6316192150115967, + "learning_rate": 2.030238726790451e-05, + "loss": 0.47409954071044924, + "step": 67200 + }, + { + "epoch": 59.50519796505198, + "grad_norm": 0.6090986132621765, + "learning_rate": 2.025817860300619e-05, + "loss": 0.4764304351806641, + "step": 67300 + }, + { + "epoch": 59.59367396593674, + "grad_norm": 0.5362303256988525, + "learning_rate": 2.021396993810787e-05, + "loss": 0.4776358795166016, + "step": 67400 + }, + { + "epoch": 59.6821499668215, + "grad_norm": 0.553995668888092, + "learning_rate": 2.016976127320955e-05, + "loss": 0.4807791519165039, + "step": 67500 + }, + { + "epoch": 59.77062596770626, + "grad_norm": 0.5615981221199036, + "learning_rate": 2.012555260831123e-05, + "loss": 0.48062610626220703, + "step": 67600 + }, + { + "epoch": 59.85910196859102, + "grad_norm": 0.5885509252548218, + "learning_rate": 2.0081343943412908e-05, + "loss": 0.48244945526123045, + "step": 67700 + }, + { + "epoch": 59.94757796947578, + "grad_norm": 0.6052979230880737, + "learning_rate": 2.003713527851459e-05, + "loss": 0.4803206634521484, + "step": 67800 + }, + { + "epoch": 60.035390400353904, + "grad_norm": 0.5579769015312195, + "learning_rate": 1.999292661361627e-05, + "loss": 0.4752388000488281, + "step": 67900 + }, + { + "epoch": 60.123866401238665, + "grad_norm": 0.478289395570755, + "learning_rate": 1.994871794871795e-05, + "loss": 0.4645302200317383, + "step": 68000 + }, + { + "epoch": 60.212342402123426, + "grad_norm": 0.5545957088470459, + "learning_rate": 1.990450928381963e-05, + "loss": 0.46837158203125, + "step": 68100 + }, + { + "epoch": 60.300818403008186, + "grad_norm": 0.524662435054779, + "learning_rate": 1.986030061892131e-05, + "loss": 0.4679202651977539, + "step": 68200 + }, + { + "epoch": 60.38929440389295, + "grad_norm": 0.6101793646812439, + "learning_rate": 1.981609195402299e-05, + "loss": 0.46956668853759764, + "step": 68300 + }, + { + "epoch": 60.4777704047777, + "grad_norm": 0.5040204524993896, + "learning_rate": 1.9771883289124667e-05, + "loss": 0.4706681060791016, + "step": 68400 + }, + { + "epoch": 60.56624640566246, + "grad_norm": 0.563679039478302, + "learning_rate": 1.972767462422635e-05, + "loss": 0.471558837890625, + "step": 68500 + }, + { + "epoch": 60.65472240654722, + "grad_norm": 0.5668439865112305, + "learning_rate": 1.9683465959328028e-05, + "loss": 0.4727770233154297, + "step": 68600 + }, + { + "epoch": 60.74319840743198, + "grad_norm": 0.6011987328529358, + "learning_rate": 1.963925729442971e-05, + "loss": 0.47645427703857424, + "step": 68700 + }, + { + "epoch": 60.83167440831674, + "grad_norm": 0.6392132043838501, + "learning_rate": 1.959504862953139e-05, + "loss": 0.4765947341918945, + "step": 68800 + }, + { + "epoch": 60.920150409201504, + "grad_norm": 0.6424957513809204, + "learning_rate": 1.955083996463307e-05, + "loss": 0.4768808746337891, + "step": 68900 + }, + { + "epoch": 61.00796284007963, + "grad_norm": 0.5341200828552246, + "learning_rate": 1.9507073386383733e-05, + "loss": 0.4776120376586914, + "step": 69000 + }, + { + "epoch": 61.09643884096439, + "grad_norm": 0.622922956943512, + "learning_rate": 1.9462864721485413e-05, + "loss": 0.46137203216552736, + "step": 69100 + }, + { + "epoch": 61.18491484184915, + "grad_norm": 0.5679436326026917, + "learning_rate": 1.9418656056587094e-05, + "loss": 0.46096920013427733, + "step": 69200 + }, + { + "epoch": 61.27339084273391, + "grad_norm": 0.5972808003425598, + "learning_rate": 1.937444739168877e-05, + "loss": 0.46090087890625, + "step": 69300 + }, + { + "epoch": 61.36186684361867, + "grad_norm": 0.5825915336608887, + "learning_rate": 1.933023872679045e-05, + "loss": 0.46518352508544925, + "step": 69400 + }, + { + "epoch": 61.45034284450343, + "grad_norm": 0.48754116892814636, + "learning_rate": 1.9286030061892132e-05, + "loss": 0.4664886856079102, + "step": 69500 + }, + { + "epoch": 61.538818845388185, + "grad_norm": 0.5583191514015198, + "learning_rate": 1.9241821396993812e-05, + "loss": 0.46886295318603516, + "step": 69600 + }, + { + "epoch": 61.627294846272946, + "grad_norm": 0.5658340454101562, + "learning_rate": 1.919761273209549e-05, + "loss": 0.4696169662475586, + "step": 69700 + }, + { + "epoch": 61.71577084715771, + "grad_norm": 0.5801714658737183, + "learning_rate": 1.9153404067197173e-05, + "loss": 0.47141036987304685, + "step": 69800 + }, + { + "epoch": 61.80424684804247, + "grad_norm": 0.5643869042396545, + "learning_rate": 1.910919540229885e-05, + "loss": 0.4727308654785156, + "step": 69900 + }, + { + "epoch": 61.89272284892723, + "grad_norm": 0.5937660336494446, + "learning_rate": 1.906498673740053e-05, + "loss": 0.4726886367797852, + "step": 70000 + }, + { + "epoch": 61.98119884981199, + "grad_norm": 0.5228411555290222, + "learning_rate": 1.902077807250221e-05, + "loss": 0.47457176208496094, + "step": 70100 + }, + { + "epoch": 62.06901128069011, + "grad_norm": 0.5100186467170715, + "learning_rate": 1.897656940760389e-05, + "loss": 0.4604149627685547, + "step": 70200 + }, + { + "epoch": 62.15748728157487, + "grad_norm": 0.5119529962539673, + "learning_rate": 1.8932360742705572e-05, + "loss": 0.4561204147338867, + "step": 70300 + }, + { + "epoch": 62.245963282459634, + "grad_norm": 0.5130912065505981, + "learning_rate": 1.888815207780725e-05, + "loss": 0.4596226501464844, + "step": 70400 + }, + { + "epoch": 62.334439283344395, + "grad_norm": 0.5388224720954895, + "learning_rate": 1.8843943412908933e-05, + "loss": 0.4617993927001953, + "step": 70500 + }, + { + "epoch": 62.422915284229155, + "grad_norm": 0.5555194020271301, + "learning_rate": 1.879973474801061e-05, + "loss": 0.46267467498779297, + "step": 70600 + }, + { + "epoch": 62.511391285113916, + "grad_norm": 0.5136281847953796, + "learning_rate": 1.875552608311229e-05, + "loss": 0.4628156280517578, + "step": 70700 + }, + { + "epoch": 62.59986728599867, + "grad_norm": 0.5039867162704468, + "learning_rate": 1.871131741821397e-05, + "loss": 0.4678297805786133, + "step": 70800 + }, + { + "epoch": 62.68834328688343, + "grad_norm": 0.566985547542572, + "learning_rate": 1.866710875331565e-05, + "loss": 0.46522830963134765, + "step": 70900 + }, + { + "epoch": 62.77681928776819, + "grad_norm": 0.5855474472045898, + "learning_rate": 1.8622900088417332e-05, + "loss": 0.46788333892822265, + "step": 71000 + }, + { + "epoch": 62.86529528865295, + "grad_norm": 0.5838083624839783, + "learning_rate": 1.857869142351901e-05, + "loss": 0.4687856292724609, + "step": 71100 + }, + { + "epoch": 62.95377128953771, + "grad_norm": 0.6574355363845825, + "learning_rate": 1.8534482758620693e-05, + "loss": 0.46836143493652344, + "step": 71200 + }, + { + "epoch": 63.04158372041584, + "grad_norm": 0.5751773118972778, + "learning_rate": 1.849027409372237e-05, + "loss": 0.4590755844116211, + "step": 71300 + }, + { + "epoch": 63.1300597213006, + "grad_norm": 0.5056807398796082, + "learning_rate": 1.844606542882405e-05, + "loss": 0.45313865661621094, + "step": 71400 + }, + { + "epoch": 63.21853572218536, + "grad_norm": 0.5403828024864197, + "learning_rate": 1.840185676392573e-05, + "loss": 0.4552134323120117, + "step": 71500 + }, + { + "epoch": 63.30701172307012, + "grad_norm": 0.48244568705558777, + "learning_rate": 1.835764809902741e-05, + "loss": 0.45661014556884766, + "step": 71600 + }, + { + "epoch": 63.39548772395488, + "grad_norm": 0.5753127932548523, + "learning_rate": 1.831343943412909e-05, + "loss": 0.4578168487548828, + "step": 71700 + }, + { + "epoch": 63.48396372483964, + "grad_norm": 0.5782042741775513, + "learning_rate": 1.826923076923077e-05, + "loss": 0.4589107131958008, + "step": 71800 + }, + { + "epoch": 63.5724397257244, + "grad_norm": 0.5895569920539856, + "learning_rate": 1.8225022104332453e-05, + "loss": 0.46304950714111326, + "step": 71900 + }, + { + "epoch": 63.660915726609154, + "grad_norm": 0.6601688265800476, + "learning_rate": 1.818081343943413e-05, + "loss": 0.45953712463378904, + "step": 72000 + }, + { + "epoch": 63.749391727493915, + "grad_norm": 0.5695818066596985, + "learning_rate": 1.813660477453581e-05, + "loss": 0.46058246612548825, + "step": 72100 + }, + { + "epoch": 63.837867728378676, + "grad_norm": 0.5006322264671326, + "learning_rate": 1.809239610963749e-05, + "loss": 0.4630731964111328, + "step": 72200 + }, + { + "epoch": 63.926343729263436, + "grad_norm": 0.5871863961219788, + "learning_rate": 1.804818744473917e-05, + "loss": 0.46295913696289065, + "step": 72300 + }, + { + "epoch": 64.01415616014157, + "grad_norm": 0.5417830348014832, + "learning_rate": 1.8003978779840848e-05, + "loss": 0.4623433303833008, + "step": 72400 + }, + { + "epoch": 64.10263216102632, + "grad_norm": 0.5019242763519287, + "learning_rate": 1.795977011494253e-05, + "loss": 0.44698051452636717, + "step": 72500 + }, + { + "epoch": 64.19110816191107, + "grad_norm": 0.5637330412864685, + "learning_rate": 1.791556145004421e-05, + "loss": 0.4492236328125, + "step": 72600 + }, + { + "epoch": 64.27958416279584, + "grad_norm": 0.5333090424537659, + "learning_rate": 1.787135278514589e-05, + "loss": 0.45192584991455076, + "step": 72700 + }, + { + "epoch": 64.3680601636806, + "grad_norm": 0.5232571363449097, + "learning_rate": 1.782714412024757e-05, + "loss": 0.45244823455810546, + "step": 72800 + }, + { + "epoch": 64.45653616456536, + "grad_norm": 0.4935717284679413, + "learning_rate": 1.778293545534925e-05, + "loss": 0.4529353332519531, + "step": 72900 + }, + { + "epoch": 64.54501216545012, + "grad_norm": 0.5450688600540161, + "learning_rate": 1.7739168877099913e-05, + "loss": 0.4567538833618164, + "step": 73000 + }, + { + "epoch": 64.63348816633489, + "grad_norm": 0.47621846199035645, + "learning_rate": 1.769496021220159e-05, + "loss": 0.4563169097900391, + "step": 73100 + }, + { + "epoch": 64.72196416721964, + "grad_norm": 0.5023945569992065, + "learning_rate": 1.7650751547303274e-05, + "loss": 0.46204959869384765, + "step": 73200 + }, + { + "epoch": 64.8104401681044, + "grad_norm": 0.49148306250572205, + "learning_rate": 1.760654288240495e-05, + "loss": 0.45924064636230466, + "step": 73300 + }, + { + "epoch": 64.89891616898916, + "grad_norm": 0.6161800026893616, + "learning_rate": 1.7562334217506632e-05, + "loss": 0.45994918823242187, + "step": 73400 + }, + { + "epoch": 64.98739216987393, + "grad_norm": 0.5307760238647461, + "learning_rate": 1.7518125552608312e-05, + "loss": 0.461478271484375, + "step": 73500 + }, + { + "epoch": 65.07520460075204, + "grad_norm": 0.588062584400177, + "learning_rate": 1.7474358974358976e-05, + "loss": 0.4461378479003906, + "step": 73600 + }, + { + "epoch": 65.16368060163681, + "grad_norm": 0.5329079627990723, + "learning_rate": 1.7430150309460656e-05, + "loss": 0.4440943145751953, + "step": 73700 + }, + { + "epoch": 65.25215660252157, + "grad_norm": 0.6149891018867493, + "learning_rate": 1.7385941644562333e-05, + "loss": 0.44721881866455077, + "step": 73800 + }, + { + "epoch": 65.34063260340632, + "grad_norm": 0.5438173413276672, + "learning_rate": 1.7341732979664017e-05, + "loss": 0.44954757690429686, + "step": 73900 + }, + { + "epoch": 65.42910860429109, + "grad_norm": 0.5428133606910706, + "learning_rate": 1.7297524314765694e-05, + "loss": 0.45107986450195314, + "step": 74000 + }, + { + "epoch": 65.51758460517584, + "grad_norm": 0.5134186744689941, + "learning_rate": 1.7253315649867374e-05, + "loss": 0.45244071960449217, + "step": 74100 + }, + { + "epoch": 65.60606060606061, + "grad_norm": 0.6233081817626953, + "learning_rate": 1.7209106984969055e-05, + "loss": 0.45329185485839846, + "step": 74200 + }, + { + "epoch": 65.69453660694536, + "grad_norm": 0.5700708627700806, + "learning_rate": 1.7164898320070735e-05, + "loss": 0.4539757537841797, + "step": 74300 + }, + { + "epoch": 65.78301260783013, + "grad_norm": 0.5631476640701294, + "learning_rate": 1.7120689655172416e-05, + "loss": 0.4555579376220703, + "step": 74400 + }, + { + "epoch": 65.87148860871488, + "grad_norm": 0.5964381694793701, + "learning_rate": 1.7076480990274093e-05, + "loss": 0.45496936798095705, + "step": 74500 + }, + { + "epoch": 65.95996460959965, + "grad_norm": 0.5872741341590881, + "learning_rate": 1.7032272325375777e-05, + "loss": 0.45641098022460935, + "step": 74600 + }, + { + "epoch": 66.04777704047777, + "grad_norm": 0.522363543510437, + "learning_rate": 1.6988063660477454e-05, + "loss": 0.4488802337646484, + "step": 74700 + }, + { + "epoch": 66.13625304136254, + "grad_norm": 0.5161113739013672, + "learning_rate": 1.6943854995579134e-05, + "loss": 0.44122817993164065, + "step": 74800 + }, + { + "epoch": 66.22472904224729, + "grad_norm": 0.5127883553504944, + "learning_rate": 1.6899646330680815e-05, + "loss": 0.4447059631347656, + "step": 74900 + }, + { + "epoch": 66.31320504313204, + "grad_norm": 0.5202219486236572, + "learning_rate": 1.6855437665782495e-05, + "loss": 0.4453567123413086, + "step": 75000 + }, + { + "epoch": 66.40168104401681, + "grad_norm": 0.4957808256149292, + "learning_rate": 1.6811229000884172e-05, + "loss": 0.44502986907958986, + "step": 75100 + }, + { + "epoch": 66.49015704490157, + "grad_norm": 0.622518002986908, + "learning_rate": 1.6767020335985853e-05, + "loss": 0.44539188385009765, + "step": 75200 + }, + { + "epoch": 66.57863304578633, + "grad_norm": 0.5333230495452881, + "learning_rate": 1.6722811671087537e-05, + "loss": 0.4479424667358398, + "step": 75300 + }, + { + "epoch": 66.66710904667109, + "grad_norm": 0.536641001701355, + "learning_rate": 1.6678603006189214e-05, + "loss": 0.4486875534057617, + "step": 75400 + }, + { + "epoch": 66.75558504755585, + "grad_norm": 0.6140312552452087, + "learning_rate": 1.6634394341290894e-05, + "loss": 0.45118595123291017, + "step": 75500 + }, + { + "epoch": 66.84406104844061, + "grad_norm": 0.5268392562866211, + "learning_rate": 1.6590185676392574e-05, + "loss": 0.4503518676757812, + "step": 75600 + }, + { + "epoch": 66.93253704932538, + "grad_norm": 0.6316497325897217, + "learning_rate": 1.6545977011494255e-05, + "loss": 0.45311626434326174, + "step": 75700 + }, + { + "epoch": 67.02034948020349, + "grad_norm": 0.4964323937892914, + "learning_rate": 1.6502210433244915e-05, + "loss": 0.44798419952392576, + "step": 75800 + }, + { + "epoch": 67.10882548108826, + "grad_norm": 0.5668012499809265, + "learning_rate": 1.6458001768346595e-05, + "loss": 0.43682758331298827, + "step": 75900 + }, + { + "epoch": 67.19730148197301, + "grad_norm": 0.5451331734657288, + "learning_rate": 1.6413793103448276e-05, + "loss": 0.43744281768798826, + "step": 76000 + }, + { + "epoch": 67.28577748285778, + "grad_norm": 0.5625444650650024, + "learning_rate": 1.6369584438549956e-05, + "loss": 0.44072349548339845, + "step": 76100 + }, + { + "epoch": 67.37425348374254, + "grad_norm": 0.5437332391738892, + "learning_rate": 1.6325375773651637e-05, + "loss": 0.4433360290527344, + "step": 76200 + }, + { + "epoch": 67.46272948462729, + "grad_norm": 0.6005889773368835, + "learning_rate": 1.6281167108753317e-05, + "loss": 0.44355270385742185, + "step": 76300 + }, + { + "epoch": 67.55120548551206, + "grad_norm": 0.6379736065864563, + "learning_rate": 1.6236958443854997e-05, + "loss": 0.4445816421508789, + "step": 76400 + }, + { + "epoch": 67.63968148639681, + "grad_norm": 0.4892788529396057, + "learning_rate": 1.6192749778956675e-05, + "loss": 0.4460066604614258, + "step": 76500 + }, + { + "epoch": 67.72815748728158, + "grad_norm": 0.5238019227981567, + "learning_rate": 1.614854111405836e-05, + "loss": 0.44812583923339844, + "step": 76600 + }, + { + "epoch": 67.81663348816633, + "grad_norm": 0.6448091864585876, + "learning_rate": 1.6104332449160035e-05, + "loss": 0.44679683685302735, + "step": 76700 + }, + { + "epoch": 67.9051094890511, + "grad_norm": 0.501971423625946, + "learning_rate": 1.6060123784261716e-05, + "loss": 0.44675071716308595, + "step": 76800 + }, + { + "epoch": 67.99358548993585, + "grad_norm": 0.5027251243591309, + "learning_rate": 1.6015915119363396e-05, + "loss": 0.450067138671875, + "step": 76900 + }, + { + "epoch": 68.08139792081398, + "grad_norm": 0.5118396878242493, + "learning_rate": 1.5971706454465077e-05, + "loss": 0.4363971710205078, + "step": 77000 + }, + { + "epoch": 68.16987392169874, + "grad_norm": 0.49976325035095215, + "learning_rate": 1.5927497789566757e-05, + "loss": 0.43459579467773435, + "step": 77100 + }, + { + "epoch": 68.2583499225835, + "grad_norm": 0.4591541886329651, + "learning_rate": 1.5883289124668434e-05, + "loss": 0.4374491500854492, + "step": 77200 + }, + { + "epoch": 68.34682592346826, + "grad_norm": 0.5061107277870178, + "learning_rate": 1.5839080459770118e-05, + "loss": 0.4367493438720703, + "step": 77300 + }, + { + "epoch": 68.43530192435301, + "grad_norm": 0.5607414245605469, + "learning_rate": 1.5794871794871795e-05, + "loss": 0.43953250885009765, + "step": 77400 + }, + { + "epoch": 68.52377792523778, + "grad_norm": 0.5758550763130188, + "learning_rate": 1.5750663129973476e-05, + "loss": 0.4412353515625, + "step": 77500 + }, + { + "epoch": 68.61225392612253, + "grad_norm": 0.6092869639396667, + "learning_rate": 1.5706454465075153e-05, + "loss": 0.44133682250976564, + "step": 77600 + }, + { + "epoch": 68.7007299270073, + "grad_norm": 0.6203352808952332, + "learning_rate": 1.5662245800176837e-05, + "loss": 0.4439066696166992, + "step": 77700 + }, + { + "epoch": 68.78920592789206, + "grad_norm": 0.5746839046478271, + "learning_rate": 1.5618037135278517e-05, + "loss": 0.4423197174072266, + "step": 77800 + }, + { + "epoch": 68.87768192877682, + "grad_norm": 0.5136276483535767, + "learning_rate": 1.5573828470380194e-05, + "loss": 0.4460869598388672, + "step": 77900 + }, + { + "epoch": 68.96615792966158, + "grad_norm": 0.4968768358230591, + "learning_rate": 1.5529619805481878e-05, + "loss": 0.4462531280517578, + "step": 78000 + }, + { + "epoch": 69.05397036053971, + "grad_norm": 0.5103012919425964, + "learning_rate": 1.5485411140583555e-05, + "loss": 0.43465484619140626, + "step": 78100 + }, + { + "epoch": 69.14244636142446, + "grad_norm": 0.5626784563064575, + "learning_rate": 1.5441202475685236e-05, + "loss": 0.4333412551879883, + "step": 78200 + }, + { + "epoch": 69.23092236230923, + "grad_norm": 0.5118581652641296, + "learning_rate": 1.5396993810786913e-05, + "loss": 0.4336922836303711, + "step": 78300 + }, + { + "epoch": 69.31939836319398, + "grad_norm": 0.5944911241531372, + "learning_rate": 1.5352785145888596e-05, + "loss": 0.43566287994384767, + "step": 78400 + }, + { + "epoch": 69.40787436407874, + "grad_norm": 0.5433744788169861, + "learning_rate": 1.5308576480990273e-05, + "loss": 0.4361726379394531, + "step": 78500 + }, + { + "epoch": 69.4963503649635, + "grad_norm": 0.614020049571991, + "learning_rate": 1.5264367816091954e-05, + "loss": 0.4380105209350586, + "step": 78600 + }, + { + "epoch": 69.58482636584826, + "grad_norm": 0.5004254579544067, + "learning_rate": 1.5220159151193636e-05, + "loss": 0.4391395950317383, + "step": 78700 + }, + { + "epoch": 69.67330236673303, + "grad_norm": 0.522055983543396, + "learning_rate": 1.5175950486295315e-05, + "loss": 0.4396755599975586, + "step": 78800 + }, + { + "epoch": 69.76177836761778, + "grad_norm": 0.524988055229187, + "learning_rate": 1.5131741821396994e-05, + "loss": 0.4374229431152344, + "step": 78900 + }, + { + "epoch": 69.85025436850255, + "grad_norm": 0.5780676603317261, + "learning_rate": 1.5087533156498674e-05, + "loss": 0.4402974319458008, + "step": 79000 + }, + { + "epoch": 69.9387303693873, + "grad_norm": 0.5651708841323853, + "learning_rate": 1.5043324491600355e-05, + "loss": 0.44202667236328125, + "step": 79100 + }, + { + "epoch": 70.02654280026543, + "grad_norm": 0.48370227217674255, + "learning_rate": 1.4999557913351018e-05, + "loss": 0.4367184829711914, + "step": 79200 + }, + { + "epoch": 70.11501880115019, + "grad_norm": 0.5551156401634216, + "learning_rate": 1.4955349248452696e-05, + "loss": 0.42862590789794924, + "step": 79300 + }, + { + "epoch": 70.20349480203495, + "grad_norm": 0.5126725435256958, + "learning_rate": 1.4911140583554379e-05, + "loss": 0.4319373321533203, + "step": 79400 + }, + { + "epoch": 70.2919708029197, + "grad_norm": 0.5189195871353149, + "learning_rate": 1.4866931918656057e-05, + "loss": 0.4309040832519531, + "step": 79500 + }, + { + "epoch": 70.38044680380447, + "grad_norm": 0.49422213435173035, + "learning_rate": 1.4822723253757736e-05, + "loss": 0.43275665283203124, + "step": 79600 + }, + { + "epoch": 70.46892280468923, + "grad_norm": 0.49081242084503174, + "learning_rate": 1.4778514588859418e-05, + "loss": 0.4326107406616211, + "step": 79700 + }, + { + "epoch": 70.55739880557398, + "grad_norm": 0.5408063530921936, + "learning_rate": 1.4734305923961097e-05, + "loss": 0.4341436004638672, + "step": 79800 + }, + { + "epoch": 70.64587480645875, + "grad_norm": 0.4664778411388397, + "learning_rate": 1.4690097259062778e-05, + "loss": 0.4358782577514648, + "step": 79900 + }, + { + "epoch": 70.7343508073435, + "grad_norm": 0.5463866591453552, + "learning_rate": 1.4645888594164456e-05, + "loss": 0.4348703384399414, + "step": 80000 + }, + { + "epoch": 70.82282680822827, + "grad_norm": 0.5187687873840332, + "learning_rate": 1.4601679929266138e-05, + "loss": 0.43734962463378907, + "step": 80100 + }, + { + "epoch": 70.91130280911302, + "grad_norm": 0.4700576961040497, + "learning_rate": 1.4557471264367817e-05, + "loss": 0.43692012786865236, + "step": 80200 + }, + { + "epoch": 70.99977880999779, + "grad_norm": 0.5413524508476257, + "learning_rate": 1.4513262599469496e-05, + "loss": 0.43848495483398436, + "step": 80300 + }, + { + "epoch": 71.08759124087591, + "grad_norm": 0.5619797110557556, + "learning_rate": 1.4469053934571178e-05, + "loss": 0.4241709899902344, + "step": 80400 + }, + { + "epoch": 71.17606724176068, + "grad_norm": 0.5617126226425171, + "learning_rate": 1.4424845269672857e-05, + "loss": 0.42585777282714843, + "step": 80500 + }, + { + "epoch": 71.26454324264543, + "grad_norm": 0.6131432056427002, + "learning_rate": 1.4380636604774536e-05, + "loss": 0.42857707977294923, + "step": 80600 + }, + { + "epoch": 71.3530192435302, + "grad_norm": 0.5178084969520569, + "learning_rate": 1.4336427939876216e-05, + "loss": 0.4283063507080078, + "step": 80700 + }, + { + "epoch": 71.44149524441495, + "grad_norm": 0.4994112253189087, + "learning_rate": 1.4292219274977897e-05, + "loss": 0.43106334686279296, + "step": 80800 + }, + { + "epoch": 71.5299712452997, + "grad_norm": 0.5411744713783264, + "learning_rate": 1.4248010610079577e-05, + "loss": 0.43190105438232423, + "step": 80900 + }, + { + "epoch": 71.61844724618447, + "grad_norm": 0.5602013468742371, + "learning_rate": 1.4203801945181256e-05, + "loss": 0.4335565185546875, + "step": 81000 + }, + { + "epoch": 71.70692324706923, + "grad_norm": 0.5469107031822205, + "learning_rate": 1.4159593280282938e-05, + "loss": 0.4339017105102539, + "step": 81100 + }, + { + "epoch": 71.795399247954, + "grad_norm": 0.5971689224243164, + "learning_rate": 1.4115384615384617e-05, + "loss": 0.43302181243896487, + "step": 81200 + }, + { + "epoch": 71.88387524883875, + "grad_norm": 0.5518947243690491, + "learning_rate": 1.4071175950486295e-05, + "loss": 0.4339981460571289, + "step": 81300 + }, + { + "epoch": 71.97235124972352, + "grad_norm": 0.46094366908073425, + "learning_rate": 1.4026967285587974e-05, + "loss": 0.4368946075439453, + "step": 81400 + }, + { + "epoch": 72.06016368060163, + "grad_norm": 0.5013940334320068, + "learning_rate": 1.3983200707338639e-05, + "loss": 0.4272830581665039, + "step": 81500 + }, + { + "epoch": 72.1486396814864, + "grad_norm": 0.5779539346694946, + "learning_rate": 1.3938992042440318e-05, + "loss": 0.4237482452392578, + "step": 81600 + }, + { + "epoch": 72.23711568237115, + "grad_norm": 0.5799530744552612, + "learning_rate": 1.3894783377541998e-05, + "loss": 0.4221677398681641, + "step": 81700 + }, + { + "epoch": 72.32559168325592, + "grad_norm": 0.4773975908756256, + "learning_rate": 1.385057471264368e-05, + "loss": 0.4251049041748047, + "step": 81800 + }, + { + "epoch": 72.41406768414068, + "grad_norm": 0.5311180353164673, + "learning_rate": 1.380636604774536e-05, + "loss": 0.42632369995117186, + "step": 81900 + }, + { + "epoch": 72.50254368502544, + "grad_norm": 0.47812601923942566, + "learning_rate": 1.3762157382847038e-05, + "loss": 0.42722888946533205, + "step": 82000 + }, + { + "epoch": 72.5910196859102, + "grad_norm": 0.606674313545227, + "learning_rate": 1.371794871794872e-05, + "loss": 0.4295787811279297, + "step": 82100 + }, + { + "epoch": 72.67949568679495, + "grad_norm": 0.5414536595344543, + "learning_rate": 1.3673740053050399e-05, + "loss": 0.4311911392211914, + "step": 82200 + }, + { + "epoch": 72.76797168767972, + "grad_norm": 0.5214236974716187, + "learning_rate": 1.3629531388152078e-05, + "loss": 0.4323184585571289, + "step": 82300 + }, + { + "epoch": 72.85644768856447, + "grad_norm": 0.531461238861084, + "learning_rate": 1.3585322723253756e-05, + "loss": 0.43523616790771485, + "step": 82400 + }, + { + "epoch": 72.94492368944924, + "grad_norm": 0.550273597240448, + "learning_rate": 1.3541114058355439e-05, + "loss": 0.4310142517089844, + "step": 82500 + }, + { + "epoch": 73.03273612032736, + "grad_norm": 0.47776085138320923, + "learning_rate": 1.3496905393457119e-05, + "loss": 0.4287875747680664, + "step": 82600 + }, + { + "epoch": 73.12121212121212, + "grad_norm": 0.4990812838077545, + "learning_rate": 1.3452696728558798e-05, + "loss": 0.42051288604736325, + "step": 82700 + }, + { + "epoch": 73.20968812209688, + "grad_norm": 0.5124841332435608, + "learning_rate": 1.340848806366048e-05, + "loss": 0.4193102264404297, + "step": 82800 + }, + { + "epoch": 73.29816412298165, + "grad_norm": 0.5289502739906311, + "learning_rate": 1.3364279398762159e-05, + "loss": 0.42208141326904297, + "step": 82900 + }, + { + "epoch": 73.3866401238664, + "grad_norm": 0.4958449602127075, + "learning_rate": 1.3320070733863837e-05, + "loss": 0.42313686370849607, + "step": 83000 + }, + { + "epoch": 73.47511612475117, + "grad_norm": 0.5278774499893188, + "learning_rate": 1.3275862068965516e-05, + "loss": 0.42546688079833983, + "step": 83100 + }, + { + "epoch": 73.56359212563592, + "grad_norm": 0.5365238785743713, + "learning_rate": 1.3231653404067198e-05, + "loss": 0.42514255523681643, + "step": 83200 + }, + { + "epoch": 73.65206812652067, + "grad_norm": 0.5327147841453552, + "learning_rate": 1.3187444739168877e-05, + "loss": 0.42642066955566404, + "step": 83300 + }, + { + "epoch": 73.74054412740544, + "grad_norm": 0.5245737433433533, + "learning_rate": 1.3143236074270558e-05, + "loss": 0.4263890838623047, + "step": 83400 + }, + { + "epoch": 73.8290201282902, + "grad_norm": 0.5159674286842346, + "learning_rate": 1.3099027409372238e-05, + "loss": 0.428508415222168, + "step": 83500 + }, + { + "epoch": 73.91749612917496, + "grad_norm": 0.47965142130851746, + "learning_rate": 1.3054818744473918e-05, + "loss": 0.42886260986328123, + "step": 83600 + }, + { + "epoch": 74.00530856005308, + "grad_norm": 0.573679506778717, + "learning_rate": 1.301105216622458e-05, + "loss": 0.4288605499267578, + "step": 83700 + }, + { + "epoch": 74.09378456093785, + "grad_norm": 0.5544322729110718, + "learning_rate": 1.2966843501326262e-05, + "loss": 0.4174742126464844, + "step": 83800 + }, + { + "epoch": 74.1822605618226, + "grad_norm": 0.4993799030780792, + "learning_rate": 1.2922634836427941e-05, + "loss": 0.4191867828369141, + "step": 83900 + }, + { + "epoch": 74.27073656270737, + "grad_norm": 0.57634037733078, + "learning_rate": 1.287842617152962e-05, + "loss": 0.42080997467041015, + "step": 84000 + }, + { + "epoch": 74.35921256359212, + "grad_norm": 0.5524028539657593, + "learning_rate": 1.2834217506631298e-05, + "loss": 0.41995132446289063, + "step": 84100 + }, + { + "epoch": 74.44768856447689, + "grad_norm": 0.5109556913375854, + "learning_rate": 1.279000884173298e-05, + "loss": 0.4207102584838867, + "step": 84200 + }, + { + "epoch": 74.53616456536164, + "grad_norm": 0.6384374499320984, + "learning_rate": 1.2745800176834661e-05, + "loss": 0.42162609100341797, + "step": 84300 + }, + { + "epoch": 74.6246405662464, + "grad_norm": 0.5029319524765015, + "learning_rate": 1.270159151193634e-05, + "loss": 0.4232307815551758, + "step": 84400 + }, + { + "epoch": 74.71311656713117, + "grad_norm": 0.49697303771972656, + "learning_rate": 1.2657382847038022e-05, + "loss": 0.4233212661743164, + "step": 84500 + }, + { + "epoch": 74.80159256801592, + "grad_norm": 0.5748586058616638, + "learning_rate": 1.26131741821397e-05, + "loss": 0.42522281646728516, + "step": 84600 + }, + { + "epoch": 74.89006856890069, + "grad_norm": 0.5335224866867065, + "learning_rate": 1.256896551724138e-05, + "loss": 0.4264080047607422, + "step": 84700 + }, + { + "epoch": 74.97854456978544, + "grad_norm": 0.5223293900489807, + "learning_rate": 1.2524756852343058e-05, + "loss": 0.4248130416870117, + "step": 84800 + }, + { + "epoch": 75.06635700066357, + "grad_norm": 0.588205099105835, + "learning_rate": 1.2480548187444739e-05, + "loss": 0.41714618682861326, + "step": 84900 + }, + { + "epoch": 75.15483300154833, + "grad_norm": 0.4878210127353668, + "learning_rate": 1.2436339522546419e-05, + "loss": 0.41694087982177735, + "step": 85000 + }, + { + "epoch": 75.2433090024331, + "grad_norm": 0.5826809406280518, + "learning_rate": 1.23921308576481e-05, + "loss": 0.41839481353759767, + "step": 85100 + }, + { + "epoch": 75.33178500331785, + "grad_norm": 0.5703395009040833, + "learning_rate": 1.234792219274978e-05, + "loss": 0.419650993347168, + "step": 85200 + }, + { + "epoch": 75.42026100420262, + "grad_norm": 0.5960374474525452, + "learning_rate": 1.230371352785146e-05, + "loss": 0.41910491943359374, + "step": 85300 + }, + { + "epoch": 75.50873700508737, + "grad_norm": 0.5564795732498169, + "learning_rate": 1.225950486295314e-05, + "loss": 0.42010501861572264, + "step": 85400 + }, + { + "epoch": 75.59721300597214, + "grad_norm": 0.5871827006340027, + "learning_rate": 1.221529619805482e-05, + "loss": 0.41939094543457034, + "step": 85500 + }, + { + "epoch": 75.68568900685689, + "grad_norm": 0.6139041185379028, + "learning_rate": 1.2171087533156498e-05, + "loss": 0.42172611236572266, + "step": 85600 + }, + { + "epoch": 75.77416500774164, + "grad_norm": 0.5693202614784241, + "learning_rate": 1.2126878868258179e-05, + "loss": 0.4217537307739258, + "step": 85700 + }, + { + "epoch": 75.86264100862641, + "grad_norm": 0.5371018648147583, + "learning_rate": 1.208267020335986e-05, + "loss": 0.4220458984375, + "step": 85800 + }, + { + "epoch": 75.95111700951117, + "grad_norm": 0.5617541074752808, + "learning_rate": 1.2038461538461538e-05, + "loss": 0.4248412322998047, + "step": 85900 + }, + { + "epoch": 76.0389294403893, + "grad_norm": 0.5177831649780273, + "learning_rate": 1.1994694960212203e-05, + "loss": 0.41939964294433596, + "step": 86000 + }, + { + "epoch": 76.12740544127405, + "grad_norm": 0.5142802000045776, + "learning_rate": 1.1950486295313883e-05, + "loss": 0.4111063003540039, + "step": 86100 + }, + { + "epoch": 76.21588144215882, + "grad_norm": 0.4861648976802826, + "learning_rate": 1.1906277630415562e-05, + "loss": 0.4148457717895508, + "step": 86200 + }, + { + "epoch": 76.30435744304357, + "grad_norm": 0.5097411870956421, + "learning_rate": 1.1862068965517243e-05, + "loss": 0.4158660125732422, + "step": 86300 + }, + { + "epoch": 76.39283344392834, + "grad_norm": 0.4740864336490631, + "learning_rate": 1.1817860300618921e-05, + "loss": 0.4178118133544922, + "step": 86400 + }, + { + "epoch": 76.48130944481309, + "grad_norm": 0.44249430298805237, + "learning_rate": 1.1773651635720602e-05, + "loss": 0.4165281677246094, + "step": 86500 + }, + { + "epoch": 76.56978544569786, + "grad_norm": 0.5490387082099915, + "learning_rate": 1.172944297082228e-05, + "loss": 0.4198506927490234, + "step": 86600 + }, + { + "epoch": 76.65826144658261, + "grad_norm": 0.5175479650497437, + "learning_rate": 1.1685234305923961e-05, + "loss": 0.4220100402832031, + "step": 86700 + }, + { + "epoch": 76.74673744746737, + "grad_norm": 0.5073688626289368, + "learning_rate": 1.1641025641025642e-05, + "loss": 0.4184294891357422, + "step": 86800 + }, + { + "epoch": 76.83521344835214, + "grad_norm": 0.6137869358062744, + "learning_rate": 1.1596816976127322e-05, + "loss": 0.41919185638427736, + "step": 86900 + }, + { + "epoch": 76.92368944923689, + "grad_norm": 0.5274661183357239, + "learning_rate": 1.1552608311229002e-05, + "loss": 0.4193117141723633, + "step": 87000 + }, + { + "epoch": 77.01150188011502, + "grad_norm": 0.578369677066803, + "learning_rate": 1.1508399646330681e-05, + "loss": 0.4192862701416016, + "step": 87100 + }, + { + "epoch": 77.09997788099977, + "grad_norm": 0.6028936505317688, + "learning_rate": 1.1464190981432362e-05, + "loss": 0.40931896209716795, + "step": 87200 + }, + { + "epoch": 77.18845388188454, + "grad_norm": 0.4915790557861328, + "learning_rate": 1.141998231653404e-05, + "loss": 0.41025619506835936, + "step": 87300 + }, + { + "epoch": 77.2769298827693, + "grad_norm": 0.5164591073989868, + "learning_rate": 1.1375773651635721e-05, + "loss": 0.4112412643432617, + "step": 87400 + }, + { + "epoch": 77.36540588365406, + "grad_norm": 0.48311275243759155, + "learning_rate": 1.1331564986737401e-05, + "loss": 0.4144105911254883, + "step": 87500 + }, + { + "epoch": 77.45388188453882, + "grad_norm": 0.46419015526771545, + "learning_rate": 1.128735632183908e-05, + "loss": 0.41563541412353516, + "step": 87600 + }, + { + "epoch": 77.54235788542358, + "grad_norm": 0.6288944482803345, + "learning_rate": 1.124314765694076e-05, + "loss": 0.41669620513916017, + "step": 87700 + }, + { + "epoch": 77.63083388630834, + "grad_norm": 0.497126966714859, + "learning_rate": 1.1198938992042441e-05, + "loss": 0.41618637084960936, + "step": 87800 + }, + { + "epoch": 77.7193098871931, + "grad_norm": 0.5373407602310181, + "learning_rate": 1.1154730327144122e-05, + "loss": 0.41614810943603514, + "step": 87900 + }, + { + "epoch": 77.80778588807786, + "grad_norm": 0.519382894039154, + "learning_rate": 1.1110521662245802e-05, + "loss": 0.41859901428222657, + "step": 88000 + }, + { + "epoch": 77.89626188896261, + "grad_norm": 0.5001983046531677, + "learning_rate": 1.106631299734748e-05, + "loss": 0.418219108581543, + "step": 88100 + }, + { + "epoch": 77.98473788984738, + "grad_norm": 0.5034019947052002, + "learning_rate": 1.1022104332449161e-05, + "loss": 0.4178015899658203, + "step": 88200 + }, + { + "epoch": 78.0725503207255, + "grad_norm": 0.5158605575561523, + "learning_rate": 1.097789566755084e-05, + "loss": 0.4091143035888672, + "step": 88300 + }, + { + "epoch": 78.16102632161027, + "grad_norm": 0.48502761125564575, + "learning_rate": 1.093368700265252e-05, + "loss": 0.40843994140625, + "step": 88400 + }, + { + "epoch": 78.24950232249502, + "grad_norm": 0.5448765754699707, + "learning_rate": 1.08894783377542e-05, + "loss": 0.4109685516357422, + "step": 88500 + }, + { + "epoch": 78.33797832337979, + "grad_norm": 0.52455735206604, + "learning_rate": 1.084526967285588e-05, + "loss": 0.4108180236816406, + "step": 88600 + }, + { + "epoch": 78.42645432426454, + "grad_norm": 0.49440670013427734, + "learning_rate": 1.080106100795756e-05, + "loss": 0.41148426055908205, + "step": 88700 + }, + { + "epoch": 78.51493032514931, + "grad_norm": 0.5575434565544128, + "learning_rate": 1.075685234305924e-05, + "loss": 0.4121563720703125, + "step": 88800 + }, + { + "epoch": 78.60340632603406, + "grad_norm": 0.5276569724082947, + "learning_rate": 1.0712643678160921e-05, + "loss": 0.41357189178466797, + "step": 88900 + }, + { + "epoch": 78.69188232691883, + "grad_norm": 0.5279592871665955, + "learning_rate": 1.06684350132626e-05, + "loss": 0.4147018814086914, + "step": 89000 + }, + { + "epoch": 78.78035832780358, + "grad_norm": 0.4984647333621979, + "learning_rate": 1.062422634836428e-05, + "loss": 0.41413829803466795, + "step": 89100 + }, + { + "epoch": 78.86883432868834, + "grad_norm": 0.5556148886680603, + "learning_rate": 1.0580017683465959e-05, + "loss": 0.4168708419799805, + "step": 89200 + }, + { + "epoch": 78.9573103295731, + "grad_norm": 0.46219438314437866, + "learning_rate": 1.053580901856764e-05, + "loss": 0.41841983795166016, + "step": 89300 + }, + { + "epoch": 79.04512276045122, + "grad_norm": 0.49136674404144287, + "learning_rate": 1.0492042440318303e-05, + "loss": 0.41013729095458984, + "step": 89400 + }, + { + "epoch": 79.13359876133599, + "grad_norm": 0.5096011161804199, + "learning_rate": 1.0447833775419983e-05, + "loss": 0.4057589340209961, + "step": 89500 + }, + { + "epoch": 79.22207476222074, + "grad_norm": 0.4563368558883667, + "learning_rate": 1.0403625110521663e-05, + "loss": 0.4064152526855469, + "step": 89600 + }, + { + "epoch": 79.31055076310551, + "grad_norm": 0.5743097066879272, + "learning_rate": 1.0359416445623344e-05, + "loss": 0.40998432159423825, + "step": 89700 + }, + { + "epoch": 79.39902676399026, + "grad_norm": 0.46749743819236755, + "learning_rate": 1.0315207780725023e-05, + "loss": 0.40825595855712893, + "step": 89800 + }, + { + "epoch": 79.48750276487503, + "grad_norm": 0.522980272769928, + "learning_rate": 1.0270999115826703e-05, + "loss": 0.4116529083251953, + "step": 89900 + }, + { + "epoch": 79.57597876575979, + "grad_norm": 0.4576069712638855, + "learning_rate": 1.0226790450928382e-05, + "loss": 0.41039798736572264, + "step": 90000 + }, + { + "epoch": 79.66445476664455, + "grad_norm": 0.574553370475769, + "learning_rate": 1.0182581786030062e-05, + "loss": 0.4103997802734375, + "step": 90100 + }, + { + "epoch": 79.7529307675293, + "grad_norm": 0.5592597126960754, + "learning_rate": 1.0138373121131741e-05, + "loss": 0.4123684310913086, + "step": 90200 + }, + { + "epoch": 79.84140676841407, + "grad_norm": 0.5754570364952087, + "learning_rate": 1.0094164456233422e-05, + "loss": 0.4138601684570313, + "step": 90300 + }, + { + "epoch": 79.92988276929883, + "grad_norm": 0.5830336213111877, + "learning_rate": 1.0049955791335102e-05, + "loss": 0.41378173828125, + "step": 90400 + }, + { + "epoch": 80.01769520017695, + "grad_norm": 0.473369836807251, + "learning_rate": 1.0005747126436783e-05, + "loss": 0.41222110748291013, + "step": 90500 + }, + { + "epoch": 80.10617120106171, + "grad_norm": 0.5327860116958618, + "learning_rate": 9.961538461538463e-06, + "loss": 0.4058869934082031, + "step": 90600 + }, + { + "epoch": 80.19464720194647, + "grad_norm": 0.5304612517356873, + "learning_rate": 9.917329796640142e-06, + "loss": 0.4061882781982422, + "step": 90700 + }, + { + "epoch": 80.28312320283123, + "grad_norm": 0.5240916013717651, + "learning_rate": 9.873121131741822e-06, + "loss": 0.40706119537353513, + "step": 90800 + }, + { + "epoch": 80.37159920371599, + "grad_norm": 0.4663858413696289, + "learning_rate": 9.828912466843501e-06, + "loss": 0.4077639389038086, + "step": 90900 + }, + { + "epoch": 80.46007520460076, + "grad_norm": 0.4718465805053711, + "learning_rate": 9.784703801945181e-06, + "loss": 0.4078546905517578, + "step": 91000 + }, + { + "epoch": 80.54855120548551, + "grad_norm": 0.45132529735565186, + "learning_rate": 9.740495137046862e-06, + "loss": 0.40724002838134765, + "step": 91100 + }, + { + "epoch": 80.63702720637028, + "grad_norm": 0.4961422085762024, + "learning_rate": 9.69628647214854e-06, + "loss": 0.4097640609741211, + "step": 91200 + }, + { + "epoch": 80.72550320725503, + "grad_norm": 0.5276188850402832, + "learning_rate": 9.652077807250221e-06, + "loss": 0.41011890411376956, + "step": 91300 + }, + { + "epoch": 80.8139792081398, + "grad_norm": 0.48676180839538574, + "learning_rate": 9.607869142351902e-06, + "loss": 0.41075672149658204, + "step": 91400 + }, + { + "epoch": 80.90245520902455, + "grad_norm": 0.5812916159629822, + "learning_rate": 9.563660477453582e-06, + "loss": 0.4131761932373047, + "step": 91500 + }, + { + "epoch": 80.9909312099093, + "grad_norm": 0.5730577707290649, + "learning_rate": 9.51945181255526e-06, + "loss": 0.41234848022460935, + "step": 91600 + }, + { + "epoch": 81.07874364078744, + "grad_norm": 0.5240619778633118, + "learning_rate": 9.475685234305924e-06, + "loss": 0.40376312255859376, + "step": 91700 + }, + { + "epoch": 81.16721964167219, + "grad_norm": 0.46626827120780945, + "learning_rate": 9.431476569407604e-06, + "loss": 0.40396995544433595, + "step": 91800 + }, + { + "epoch": 81.25569564255696, + "grad_norm": 0.49117109179496765, + "learning_rate": 9.387267904509283e-06, + "loss": 0.4028842544555664, + "step": 91900 + }, + { + "epoch": 81.34417164344171, + "grad_norm": 0.5428334474563599, + "learning_rate": 9.343059239610964e-06, + "loss": 0.4046338653564453, + "step": 92000 + }, + { + "epoch": 81.43264764432648, + "grad_norm": 0.5240166783332825, + "learning_rate": 9.298850574712644e-06, + "loss": 0.4052513885498047, + "step": 92100 + }, + { + "epoch": 81.52112364521123, + "grad_norm": 0.4899362325668335, + "learning_rate": 9.254641909814325e-06, + "loss": 0.4052754974365234, + "step": 92200 + }, + { + "epoch": 81.609599646096, + "grad_norm": 0.46969664096832275, + "learning_rate": 9.210433244916005e-06, + "loss": 0.4072676086425781, + "step": 92300 + }, + { + "epoch": 81.69807564698075, + "grad_norm": 0.4990880489349365, + "learning_rate": 9.166224580017684e-06, + "loss": 0.40702415466308595, + "step": 92400 + }, + { + "epoch": 81.78655164786552, + "grad_norm": 0.5545535087585449, + "learning_rate": 9.122015915119364e-06, + "loss": 0.4103099822998047, + "step": 92500 + }, + { + "epoch": 81.87502764875028, + "grad_norm": 0.5591033101081848, + "learning_rate": 9.077807250221043e-06, + "loss": 0.4087317276000977, + "step": 92600 + }, + { + "epoch": 81.96350364963503, + "grad_norm": 0.5289734601974487, + "learning_rate": 9.033598585322723e-06, + "loss": 0.4112258529663086, + "step": 92700 + }, + { + "epoch": 82.05131608051316, + "grad_norm": 0.59573894739151, + "learning_rate": 8.989389920424404e-06, + "loss": 0.40506195068359374, + "step": 92800 + }, + { + "epoch": 82.13979208139791, + "grad_norm": 0.4581588804721832, + "learning_rate": 8.945181255526083e-06, + "loss": 0.401633186340332, + "step": 92900 + }, + { + "epoch": 82.22826808228268, + "grad_norm": 0.4607727527618408, + "learning_rate": 8.900972590627763e-06, + "loss": 0.4030620193481445, + "step": 93000 + }, + { + "epoch": 82.31674408316744, + "grad_norm": 0.5693869590759277, + "learning_rate": 8.856763925729444e-06, + "loss": 0.4034944152832031, + "step": 93100 + }, + { + "epoch": 82.4052200840522, + "grad_norm": 0.4679562449455261, + "learning_rate": 8.812555260831124e-06, + "loss": 0.40353385925292967, + "step": 93200 + }, + { + "epoch": 82.49369608493696, + "grad_norm": 0.4970017373561859, + "learning_rate": 8.768346595932803e-06, + "loss": 0.4040465545654297, + "step": 93300 + }, + { + "epoch": 82.58217208582172, + "grad_norm": 0.4850037097930908, + "learning_rate": 8.724137931034483e-06, + "loss": 0.40520496368408204, + "step": 93400 + }, + { + "epoch": 82.67064808670648, + "grad_norm": 0.5304952263832092, + "learning_rate": 8.679929266136164e-06, + "loss": 0.4062754440307617, + "step": 93500 + }, + { + "epoch": 82.75912408759125, + "grad_norm": 0.5124515891075134, + "learning_rate": 8.635720601237842e-06, + "loss": 0.4042987442016602, + "step": 93600 + }, + { + "epoch": 82.847600088476, + "grad_norm": 0.5527506470680237, + "learning_rate": 8.591511936339523e-06, + "loss": 0.4051095199584961, + "step": 93700 + }, + { + "epoch": 82.93607608936077, + "grad_norm": 0.4627765119075775, + "learning_rate": 8.547303271441202e-06, + "loss": 0.4065189743041992, + "step": 93800 + }, + { + "epoch": 83.02388852023888, + "grad_norm": 0.47690948843955994, + "learning_rate": 8.503094606542882e-06, + "loss": 0.4059687042236328, + "step": 93900 + }, + { + "epoch": 83.11236452112365, + "grad_norm": 0.543329656124115, + "learning_rate": 8.458885941644563e-06, + "loss": 0.40105613708496096, + "step": 94000 + }, + { + "epoch": 83.2008405220084, + "grad_norm": 0.5308240056037903, + "learning_rate": 8.414677276746243e-06, + "loss": 0.3999287414550781, + "step": 94100 + }, + { + "epoch": 83.28931652289316, + "grad_norm": 0.5098600387573242, + "learning_rate": 8.370468611847924e-06, + "loss": 0.3998809051513672, + "step": 94200 + }, + { + "epoch": 83.37779252377793, + "grad_norm": 0.5461894273757935, + "learning_rate": 8.326259946949602e-06, + "loss": 0.4027032470703125, + "step": 94300 + }, + { + "epoch": 83.46626852466268, + "grad_norm": 0.5599612593650818, + "learning_rate": 8.282051282051283e-06, + "loss": 0.4018612289428711, + "step": 94400 + }, + { + "epoch": 83.55474452554745, + "grad_norm": 0.5953245162963867, + "learning_rate": 8.237842617152961e-06, + "loss": 0.4048320770263672, + "step": 94500 + }, + { + "epoch": 83.6432205264322, + "grad_norm": 0.5232775211334229, + "learning_rate": 8.193633952254642e-06, + "loss": 0.40312889099121096, + "step": 94600 + }, + { + "epoch": 83.73169652731697, + "grad_norm": 0.5057620406150818, + "learning_rate": 8.149425287356322e-06, + "loss": 0.4016009521484375, + "step": 94700 + }, + { + "epoch": 83.82017252820172, + "grad_norm": 0.54839026927948, + "learning_rate": 8.105216622458001e-06, + "loss": 0.40390682220458984, + "step": 94800 + }, + { + "epoch": 83.90864852908649, + "grad_norm": 0.42211759090423584, + "learning_rate": 8.061007957559683e-06, + "loss": 0.4043146514892578, + "step": 94900 + }, + { + "epoch": 83.99712452997125, + "grad_norm": 0.46576666831970215, + "learning_rate": 8.016799292661362e-06, + "loss": 0.4071781539916992, + "step": 95000 + }, + { + "epoch": 84.08493696084938, + "grad_norm": 0.48286134004592896, + "learning_rate": 7.973032714412025e-06, + "loss": 0.3980902862548828, + "step": 95100 + }, + { + "epoch": 84.17341296173413, + "grad_norm": 0.5105409026145935, + "learning_rate": 7.928824049513706e-06, + "loss": 0.39626029968261717, + "step": 95200 + }, + { + "epoch": 84.26188896261888, + "grad_norm": 0.5280846357345581, + "learning_rate": 7.884615384615384e-06, + "loss": 0.39923973083496095, + "step": 95300 + }, + { + "epoch": 84.35036496350365, + "grad_norm": 0.49487778544425964, + "learning_rate": 7.840406719717065e-06, + "loss": 0.39867469787597654, + "step": 95400 + }, + { + "epoch": 84.4388409643884, + "grad_norm": 0.5105910897254944, + "learning_rate": 7.796198054818744e-06, + "loss": 0.4000941467285156, + "step": 95500 + }, + { + "epoch": 84.52731696527317, + "grad_norm": 0.49424290657043457, + "learning_rate": 7.751989389920424e-06, + "loss": 0.4025596618652344, + "step": 95600 + }, + { + "epoch": 84.61579296615793, + "grad_norm": 0.5923288464546204, + "learning_rate": 7.707780725022105e-06, + "loss": 0.40207050323486326, + "step": 95700 + }, + { + "epoch": 84.7042689670427, + "grad_norm": 0.47270065546035767, + "learning_rate": 7.663572060123785e-06, + "loss": 0.40140762329101565, + "step": 95800 + }, + { + "epoch": 84.79274496792745, + "grad_norm": 0.4515872597694397, + "learning_rate": 7.619363395225465e-06, + "loss": 0.4039121627807617, + "step": 95900 + }, + { + "epoch": 84.88122096881222, + "grad_norm": 0.5799027681350708, + "learning_rate": 7.575154730327144e-06, + "loss": 0.40215221405029294, + "step": 96000 + }, + { + "epoch": 84.96969696969697, + "grad_norm": 0.5158770680427551, + "learning_rate": 7.530946065428825e-06, + "loss": 0.40449161529541017, + "step": 96100 + }, + { + "epoch": 85.0575094005751, + "grad_norm": 0.5103220343589783, + "learning_rate": 7.4867374005305035e-06, + "loss": 0.3986453628540039, + "step": 96200 + }, + { + "epoch": 85.14598540145985, + "grad_norm": 0.48847347497940063, + "learning_rate": 7.442528735632184e-06, + "loss": 0.3962085723876953, + "step": 96300 + }, + { + "epoch": 85.2344614023446, + "grad_norm": 0.5786899328231812, + "learning_rate": 7.398320070733865e-06, + "loss": 0.398316535949707, + "step": 96400 + }, + { + "epoch": 85.32293740322937, + "grad_norm": 0.4464615285396576, + "learning_rate": 7.354111405835544e-06, + "loss": 0.39748287200927734, + "step": 96500 + }, + { + "epoch": 85.41141340411413, + "grad_norm": 0.5107320547103882, + "learning_rate": 7.3099027409372245e-06, + "loss": 0.399218864440918, + "step": 96600 + }, + { + "epoch": 85.4998894049989, + "grad_norm": 0.5555247068405151, + "learning_rate": 7.265694076038903e-06, + "loss": 0.40016975402832033, + "step": 96700 + }, + { + "epoch": 85.58836540588365, + "grad_norm": 0.46809983253479004, + "learning_rate": 7.2214854111405845e-06, + "loss": 0.39977962493896485, + "step": 96800 + }, + { + "epoch": 85.67684140676842, + "grad_norm": 0.5176143646240234, + "learning_rate": 7.177276746242263e-06, + "loss": 0.39803340911865237, + "step": 96900 + }, + { + "epoch": 85.76531740765317, + "grad_norm": 0.4717543125152588, + "learning_rate": 7.133068081343944e-06, + "loss": 0.4004299545288086, + "step": 97000 + }, + { + "epoch": 85.85379340853794, + "grad_norm": 0.49673059582710266, + "learning_rate": 7.088859416445624e-06, + "loss": 0.40104530334472654, + "step": 97100 + }, + { + "epoch": 85.94226940942269, + "grad_norm": 0.5706076622009277, + "learning_rate": 7.044650751547304e-06, + "loss": 0.40007728576660156, + "step": 97200 + }, + { + "epoch": 86.03008184030082, + "grad_norm": 0.5170352458953857, + "learning_rate": 7.000884173297967e-06, + "loss": 0.39897975921630857, + "step": 97300 + }, + { + "epoch": 86.11855784118558, + "grad_norm": 0.478630930185318, + "learning_rate": 6.956675508399646e-06, + "loss": 0.3933698272705078, + "step": 97400 + }, + { + "epoch": 86.20703384207035, + "grad_norm": 0.5094186067581177, + "learning_rate": 6.912466843501326e-06, + "loss": 0.39624488830566407, + "step": 97500 + }, + { + "epoch": 86.2955098429551, + "grad_norm": 0.5107275247573853, + "learning_rate": 6.868258178603007e-06, + "loss": 0.39685150146484377, + "step": 97600 + }, + { + "epoch": 86.38398584383985, + "grad_norm": 0.5861279964447021, + "learning_rate": 6.824049513704686e-06, + "loss": 0.3973454284667969, + "step": 97700 + }, + { + "epoch": 86.47246184472462, + "grad_norm": 0.490012526512146, + "learning_rate": 6.779840848806367e-06, + "loss": 0.3982046127319336, + "step": 97800 + }, + { + "epoch": 86.56093784560937, + "grad_norm": 0.47647538781166077, + "learning_rate": 6.7356321839080455e-06, + "loss": 0.39851917266845704, + "step": 97900 + }, + { + "epoch": 86.64941384649414, + "grad_norm": 0.45534029603004456, + "learning_rate": 6.691423519009726e-06, + "loss": 0.39754936218261716, + "step": 98000 + }, + { + "epoch": 86.7378898473789, + "grad_norm": 0.5305948257446289, + "learning_rate": 6.647214854111407e-06, + "loss": 0.39900218963623046, + "step": 98100 + }, + { + "epoch": 86.82636584826366, + "grad_norm": 0.48616868257522583, + "learning_rate": 6.603006189213086e-06, + "loss": 0.39878063201904296, + "step": 98200 + }, + { + "epoch": 86.91484184914842, + "grad_norm": 0.4637695252895355, + "learning_rate": 6.5587975243147665e-06, + "loss": 0.39936519622802735, + "step": 98300 + }, + { + "epoch": 87.00265428002655, + "grad_norm": 0.43915867805480957, + "learning_rate": 6.514588859416445e-06, + "loss": 0.39945316314697266, + "step": 98400 + }, + { + "epoch": 87.0911302809113, + "grad_norm": 0.5064729452133179, + "learning_rate": 6.4703801945181265e-06, + "loss": 0.39295291900634766, + "step": 98500 + }, + { + "epoch": 87.17960628179607, + "grad_norm": 0.41172826290130615, + "learning_rate": 6.426171529619805e-06, + "loss": 0.3956099319458008, + "step": 98600 + }, + { + "epoch": 87.26808228268082, + "grad_norm": 0.5156989693641663, + "learning_rate": 6.381962864721486e-06, + "loss": 0.3927472686767578, + "step": 98700 + }, + { + "epoch": 87.35655828356558, + "grad_norm": 0.4864855706691742, + "learning_rate": 6.337754199823166e-06, + "loss": 0.39533439636230466, + "step": 98800 + }, + { + "epoch": 87.44503428445034, + "grad_norm": 0.5469456911087036, + "learning_rate": 6.293545534924846e-06, + "loss": 0.3970512390136719, + "step": 98900 + }, + { + "epoch": 87.5335102853351, + "grad_norm": 0.4618734121322632, + "learning_rate": 6.249336870026525e-06, + "loss": 0.3967998504638672, + "step": 99000 + }, + { + "epoch": 87.62198628621987, + "grad_norm": 0.41789868474006653, + "learning_rate": 6.205128205128206e-06, + "loss": 0.3979497909545898, + "step": 99100 + }, + { + "epoch": 87.71046228710462, + "grad_norm": 0.5439488887786865, + "learning_rate": 6.1609195402298855e-06, + "loss": 0.3960274887084961, + "step": 99200 + }, + { + "epoch": 87.79893828798939, + "grad_norm": 0.46948105096817017, + "learning_rate": 6.116710875331565e-06, + "loss": 0.39781307220458983, + "step": 99300 + }, + { + "epoch": 87.88741428887414, + "grad_norm": 0.4804007411003113, + "learning_rate": 6.0725022104332456e-06, + "loss": 0.39600673675537107, + "step": 99400 + }, + { + "epoch": 87.97589028975891, + "grad_norm": 0.4494355618953705, + "learning_rate": 6.028293545534925e-06, + "loss": 0.3976548385620117, + "step": 99500 + }, + { + "epoch": 88.06370272063702, + "grad_norm": 0.4300312101840973, + "learning_rate": 5.984526967285588e-06, + "loss": 0.3928862762451172, + "step": 99600 + }, + { + "epoch": 88.15217872152179, + "grad_norm": 0.5155128836631775, + "learning_rate": 5.940318302387268e-06, + "loss": 0.39027740478515627, + "step": 99700 + }, + { + "epoch": 88.24065472240655, + "grad_norm": 0.4635615944862366, + "learning_rate": 5.896109637488948e-06, + "loss": 0.3938739776611328, + "step": 99800 + }, + { + "epoch": 88.32913072329131, + "grad_norm": 0.5408588647842407, + "learning_rate": 5.851900972590628e-06, + "loss": 0.3914863967895508, + "step": 99900 + }, + { + "epoch": 88.41760672417607, + "grad_norm": 0.5169259309768677, + "learning_rate": 5.807692307692308e-06, + "loss": 0.3942420959472656, + "step": 100000 + }, + { + "epoch": 88.50608272506082, + "grad_norm": 0.43603307008743286, + "learning_rate": 5.763483642793987e-06, + "loss": 0.3942053604125977, + "step": 100100 + }, + { + "epoch": 88.59455872594559, + "grad_norm": 0.484275758266449, + "learning_rate": 5.719274977895668e-06, + "loss": 0.3953342056274414, + "step": 100200 + }, + { + "epoch": 88.68303472683034, + "grad_norm": 0.4834429621696472, + "learning_rate": 5.675066312997348e-06, + "loss": 0.39478866577148436, + "step": 100300 + }, + { + "epoch": 88.77151072771511, + "grad_norm": 0.5198318362236023, + "learning_rate": 5.630857648099028e-06, + "loss": 0.3973033905029297, + "step": 100400 + }, + { + "epoch": 88.85998672859986, + "grad_norm": 0.5359114408493042, + "learning_rate": 5.586648983200707e-06, + "loss": 0.3963985824584961, + "step": 100500 + }, + { + "epoch": 88.94846272948463, + "grad_norm": 0.47174566984176636, + "learning_rate": 5.542440318302387e-06, + "loss": 0.39962120056152345, + "step": 100600 + }, + { + "epoch": 89.03627516036275, + "grad_norm": 0.5552394986152649, + "learning_rate": 5.498231653404067e-06, + "loss": 0.3942194747924805, + "step": 100700 + }, + { + "epoch": 89.12475116124752, + "grad_norm": 0.4985731840133667, + "learning_rate": 5.454022988505748e-06, + "loss": 0.39029048919677733, + "step": 100800 + }, + { + "epoch": 89.21322716213227, + "grad_norm": 0.5449782013893127, + "learning_rate": 5.4098143236074275e-06, + "loss": 0.391842155456543, + "step": 100900 + }, + { + "epoch": 89.30170316301704, + "grad_norm": 0.47477561235427856, + "learning_rate": 5.365605658709107e-06, + "loss": 0.39065505981445314, + "step": 101000 + }, + { + "epoch": 89.39017916390179, + "grad_norm": 0.5775418281555176, + "learning_rate": 5.3213969938107875e-06, + "loss": 0.39322795867919924, + "step": 101100 + }, + { + "epoch": 89.47865516478655, + "grad_norm": 0.44463786482810974, + "learning_rate": 5.277188328912467e-06, + "loss": 0.3929602813720703, + "step": 101200 + }, + { + "epoch": 89.56713116567131, + "grad_norm": 0.5217382311820984, + "learning_rate": 5.232979664014147e-06, + "loss": 0.3945352172851562, + "step": 101300 + }, + { + "epoch": 89.65560716655607, + "grad_norm": 0.47336575388908386, + "learning_rate": 5.188770999115826e-06, + "loss": 0.3943867492675781, + "step": 101400 + }, + { + "epoch": 89.74408316744083, + "grad_norm": 0.49890655279159546, + "learning_rate": 5.144562334217507e-06, + "loss": 0.39472442626953125, + "step": 101500 + }, + { + "epoch": 89.83255916832559, + "grad_norm": 0.4528096914291382, + "learning_rate": 5.100353669319187e-06, + "loss": 0.3927711868286133, + "step": 101600 + }, + { + "epoch": 89.92103516921036, + "grad_norm": 0.4498828649520874, + "learning_rate": 5.056145004420867e-06, + "loss": 0.3962491226196289, + "step": 101700 + }, + { + "epoch": 90.00884760008847, + "grad_norm": 0.45861297845840454, + "learning_rate": 5.0119363395225465e-06, + "loss": 0.39339271545410154, + "step": 101800 + }, + { + "epoch": 90.09732360097324, + "grad_norm": 0.5762381553649902, + "learning_rate": 4.967727674624226e-06, + "loss": 0.3896630096435547, + "step": 101900 + }, + { + "epoch": 90.185799601858, + "grad_norm": 0.5530878305435181, + "learning_rate": 4.923519009725907e-06, + "loss": 0.38933868408203126, + "step": 102000 + }, + { + "epoch": 90.27427560274276, + "grad_norm": 0.4769279360771179, + "learning_rate": 4.879310344827587e-06, + "loss": 0.38943870544433595, + "step": 102100 + }, + { + "epoch": 90.36275160362752, + "grad_norm": 0.5254392027854919, + "learning_rate": 4.835101679929267e-06, + "loss": 0.39091030120849607, + "step": 102200 + }, + { + "epoch": 90.45122760451227, + "grad_norm": 0.5098690986633301, + "learning_rate": 4.790893015030946e-06, + "loss": 0.39340557098388673, + "step": 102300 + }, + { + "epoch": 90.53970360539704, + "grad_norm": 0.5299240946769714, + "learning_rate": 4.746684350132626e-06, + "loss": 0.3925971221923828, + "step": 102400 + }, + { + "epoch": 90.62817960628179, + "grad_norm": 0.5023613572120667, + "learning_rate": 4.702475685234306e-06, + "loss": 0.3934814453125, + "step": 102500 + }, + { + "epoch": 90.71665560716656, + "grad_norm": 0.5217054486274719, + "learning_rate": 4.658267020335986e-06, + "loss": 0.39229228973388675, + "step": 102600 + }, + { + "epoch": 90.80513160805131, + "grad_norm": 0.4929801821708679, + "learning_rate": 4.6140583554376656e-06, + "loss": 0.39253700256347657, + "step": 102700 + }, + { + "epoch": 90.89360760893608, + "grad_norm": 0.4281506836414337, + "learning_rate": 4.569849690539346e-06, + "loss": 0.39423236846923826, + "step": 102800 + }, + { + "epoch": 90.98208360982083, + "grad_norm": 0.5606275796890259, + "learning_rate": 4.525641025641026e-06, + "loss": 0.39174613952636717, + "step": 102900 + }, + { + "epoch": 91.06989604069896, + "grad_norm": 0.40593966841697693, + "learning_rate": 4.481874447391689e-06, + "loss": 0.39004261016845704, + "step": 103000 + }, + { + "epoch": 91.15837204158372, + "grad_norm": 0.48218822479248047, + "learning_rate": 4.437665782493368e-06, + "loss": 0.39024349212646486, + "step": 103100 + }, + { + "epoch": 91.24684804246849, + "grad_norm": 0.4803628623485565, + "learning_rate": 4.393457117595049e-06, + "loss": 0.3893236541748047, + "step": 103200 + }, + { + "epoch": 91.33532404335324, + "grad_norm": 0.5424004197120667, + "learning_rate": 4.349248452696729e-06, + "loss": 0.3895704650878906, + "step": 103300 + }, + { + "epoch": 91.423800044238, + "grad_norm": 0.4238603711128235, + "learning_rate": 4.305039787798409e-06, + "loss": 0.3891864776611328, + "step": 103400 + }, + { + "epoch": 91.51227604512276, + "grad_norm": 0.5425596833229065, + "learning_rate": 4.2608311229000885e-06, + "loss": 0.3902478408813477, + "step": 103500 + }, + { + "epoch": 91.60075204600751, + "grad_norm": 0.529647946357727, + "learning_rate": 4.216622458001768e-06, + "loss": 0.39207550048828127, + "step": 103600 + }, + { + "epoch": 91.68922804689228, + "grad_norm": 0.42155396938323975, + "learning_rate": 4.1724137931034486e-06, + "loss": 0.3911063766479492, + "step": 103700 + }, + { + "epoch": 91.77770404777704, + "grad_norm": 0.4809010326862335, + "learning_rate": 4.128205128205129e-06, + "loss": 0.3927000427246094, + "step": 103800 + }, + { + "epoch": 91.8661800486618, + "grad_norm": 0.4598400890827179, + "learning_rate": 4.083996463306809e-06, + "loss": 0.38986122131347656, + "step": 103900 + }, + { + "epoch": 91.95465604954656, + "grad_norm": 0.52349853515625, + "learning_rate": 4.039787798408488e-06, + "loss": 0.3922639465332031, + "step": 104000 + }, + { + "epoch": 92.04246848042469, + "grad_norm": 0.5118280053138733, + "learning_rate": 3.996021220159151e-06, + "loss": 0.388396110534668, + "step": 104100 + }, + { + "epoch": 92.13094448130944, + "grad_norm": 0.49287110567092896, + "learning_rate": 3.951812555260832e-06, + "loss": 0.3882394027709961, + "step": 104200 + }, + { + "epoch": 92.21942048219421, + "grad_norm": 0.5597590804100037, + "learning_rate": 3.9076038903625115e-06, + "loss": 0.38768112182617187, + "step": 104300 + }, + { + "epoch": 92.30789648307896, + "grad_norm": 0.49123573303222656, + "learning_rate": 3.863395225464191e-06, + "loss": 0.38717472076416015, + "step": 104400 + }, + { + "epoch": 92.39637248396373, + "grad_norm": 0.5490599870681763, + "learning_rate": 3.819186560565871e-06, + "loss": 0.38968246459960937, + "step": 104500 + }, + { + "epoch": 92.48484848484848, + "grad_norm": 0.563377857208252, + "learning_rate": 3.7749778956675507e-06, + "loss": 0.3879422760009766, + "step": 104600 + }, + { + "epoch": 92.57332448573324, + "grad_norm": 0.5248238444328308, + "learning_rate": 3.7307692307692308e-06, + "loss": 0.3904239654541016, + "step": 104700 + }, + { + "epoch": 92.661800486618, + "grad_norm": 0.5977566242218018, + "learning_rate": 3.6865605658709104e-06, + "loss": 0.39140804290771486, + "step": 104800 + }, + { + "epoch": 92.75027648750276, + "grad_norm": 0.4992641508579254, + "learning_rate": 3.6423519009725912e-06, + "loss": 0.390025749206543, + "step": 104900 + }, + { + "epoch": 92.83875248838753, + "grad_norm": 0.5491787791252136, + "learning_rate": 3.598143236074271e-06, + "loss": 0.39107063293457034, + "step": 105000 + }, + { + "epoch": 92.92722848927228, + "grad_norm": 0.46409890055656433, + "learning_rate": 3.553934571175951e-06, + "loss": 0.3911115264892578, + "step": 105100 + }, + { + "epoch": 93.01504092015041, + "grad_norm": 0.5469849705696106, + "learning_rate": 3.5097259062776305e-06, + "loss": 0.3916855621337891, + "step": 105200 + }, + { + "epoch": 93.10351692103517, + "grad_norm": 0.496277391910553, + "learning_rate": 3.4655172413793105e-06, + "loss": 0.3867160415649414, + "step": 105300 + }, + { + "epoch": 93.19199292191993, + "grad_norm": 0.42929497361183167, + "learning_rate": 3.42130857648099e-06, + "loss": 0.38718021392822266, + "step": 105400 + }, + { + "epoch": 93.28046892280469, + "grad_norm": 0.406601220369339, + "learning_rate": 3.3770999115826706e-06, + "loss": 0.386837272644043, + "step": 105500 + }, + { + "epoch": 93.36894492368945, + "grad_norm": 0.48087212443351746, + "learning_rate": 3.3328912466843506e-06, + "loss": 0.3877327346801758, + "step": 105600 + }, + { + "epoch": 93.45742092457421, + "grad_norm": 0.5117219090461731, + "learning_rate": 3.2886825817860302e-06, + "loss": 0.38803070068359374, + "step": 105700 + }, + { + "epoch": 93.54589692545898, + "grad_norm": 0.6043857932090759, + "learning_rate": 3.2444739168877103e-06, + "loss": 0.38934085845947264, + "step": 105800 + }, + { + "epoch": 93.63437292634373, + "grad_norm": 0.5303599238395691, + "learning_rate": 3.20026525198939e-06, + "loss": 0.3872317123413086, + "step": 105900 + }, + { + "epoch": 93.72284892722848, + "grad_norm": 0.48868313431739807, + "learning_rate": 3.15605658709107e-06, + "loss": 0.3903642272949219, + "step": 106000 + }, + { + "epoch": 93.81132492811325, + "grad_norm": 0.5126668810844421, + "learning_rate": 3.11184792219275e-06, + "loss": 0.3893658447265625, + "step": 106100 + }, + { + "epoch": 93.899800928998, + "grad_norm": 0.5788067579269409, + "learning_rate": 3.06763925729443e-06, + "loss": 0.3887732315063477, + "step": 106200 + }, + { + "epoch": 93.98827692988277, + "grad_norm": 0.5931738615036011, + "learning_rate": 3.0234305923961096e-06, + "loss": 0.3858309555053711, + "step": 106300 + }, + { + "epoch": 94.07608936076089, + "grad_norm": 0.4667378067970276, + "learning_rate": 2.9792219274977896e-06, + "loss": 0.3882503128051758, + "step": 106400 + }, + { + "epoch": 94.16456536164566, + "grad_norm": 0.4540467858314514, + "learning_rate": 2.9350132625994697e-06, + "loss": 0.3879624557495117, + "step": 106500 + }, + { + "epoch": 94.25304136253041, + "grad_norm": 0.5249928832054138, + "learning_rate": 2.8908045977011493e-06, + "loss": 0.3871700668334961, + "step": 106600 + }, + { + "epoch": 94.34151736341518, + "grad_norm": 0.4902016520500183, + "learning_rate": 2.8465959328028297e-06, + "loss": 0.3865641403198242, + "step": 106700 + }, + { + "epoch": 94.42999336429993, + "grad_norm": 0.4490734934806824, + "learning_rate": 2.8023872679045093e-06, + "loss": 0.3874678039550781, + "step": 106800 + }, + { + "epoch": 94.5184693651847, + "grad_norm": 0.39259180426597595, + "learning_rate": 2.7581786030061894e-06, + "loss": 0.3864010238647461, + "step": 106900 + }, + { + "epoch": 94.60694536606945, + "grad_norm": 0.5160086154937744, + "learning_rate": 2.7139699381078694e-06, + "loss": 0.38762042999267576, + "step": 107000 + }, + { + "epoch": 94.6954213669542, + "grad_norm": 0.5112566947937012, + "learning_rate": 2.669761273209549e-06, + "loss": 0.38802257537841794, + "step": 107100 + }, + { + "epoch": 94.78389736783897, + "grad_norm": 0.48586076498031616, + "learning_rate": 2.625552608311229e-06, + "loss": 0.3883600616455078, + "step": 107200 + }, + { + "epoch": 94.87237336872373, + "grad_norm": 0.5169211626052856, + "learning_rate": 2.581343943412909e-06, + "loss": 0.38775413513183593, + "step": 107300 + }, + { + "epoch": 94.9608493696085, + "grad_norm": 0.4262998700141907, + "learning_rate": 2.537135278514589e-06, + "loss": 0.3891670608520508, + "step": 107400 + }, + { + "epoch": 95.04866180048661, + "grad_norm": 0.4452260434627533, + "learning_rate": 2.4929266136162687e-06, + "loss": 0.38474632263183595, + "step": 107500 + }, + { + "epoch": 95.13713780137138, + "grad_norm": 0.5349674820899963, + "learning_rate": 2.4487179487179488e-06, + "loss": 0.3851365661621094, + "step": 107600 + }, + { + "epoch": 95.22561380225613, + "grad_norm": 0.4277512729167938, + "learning_rate": 2.404509283819629e-06, + "loss": 0.38448490142822267, + "step": 107700 + }, + { + "epoch": 95.3140898031409, + "grad_norm": 0.5199966430664062, + "learning_rate": 2.360300618921309e-06, + "loss": 0.3855178451538086, + "step": 107800 + }, + { + "epoch": 95.40256580402566, + "grad_norm": 0.49931713938713074, + "learning_rate": 2.3160919540229885e-06, + "loss": 0.38597549438476564, + "step": 107900 + }, + { + "epoch": 95.49104180491042, + "grad_norm": 0.44888851046562195, + "learning_rate": 2.2718832891246685e-06, + "loss": 0.38637237548828124, + "step": 108000 + }, + { + "epoch": 95.57951780579518, + "grad_norm": 0.48020413517951965, + "learning_rate": 2.2276746242263485e-06, + "loss": 0.3860820388793945, + "step": 108100 + }, + { + "epoch": 95.66799380667993, + "grad_norm": 0.49320459365844727, + "learning_rate": 2.183465959328028e-06, + "loss": 0.3868730926513672, + "step": 108200 + }, + { + "epoch": 95.7564698075647, + "grad_norm": 0.4776149392127991, + "learning_rate": 2.1392572944297086e-06, + "loss": 0.38699729919433595, + "step": 108300 + }, + { + "epoch": 95.84494580844945, + "grad_norm": 0.4394153356552124, + "learning_rate": 2.095048629531388e-06, + "loss": 0.3858388137817383, + "step": 108400 + }, + { + "epoch": 95.93342180933422, + "grad_norm": 0.40809816122055054, + "learning_rate": 2.0508399646330682e-06, + "loss": 0.3865514373779297, + "step": 108500 + }, + { + "epoch": 96.02123424021234, + "grad_norm": 0.40297845005989075, + "learning_rate": 2.0070733863837314e-06, + "loss": 0.38520877838134765, + "step": 108600 + }, + { + "epoch": 96.1097102410971, + "grad_norm": 0.4992787837982178, + "learning_rate": 1.9628647214854114e-06, + "loss": 0.3824159622192383, + "step": 108700 + }, + { + "epoch": 96.19818624198186, + "grad_norm": 0.4386002719402313, + "learning_rate": 1.918656056587091e-06, + "loss": 0.3828225326538086, + "step": 108800 + }, + { + "epoch": 96.28666224286663, + "grad_norm": 0.4839923679828644, + "learning_rate": 1.874447391688771e-06, + "loss": 0.3837508392333984, + "step": 108900 + }, + { + "epoch": 96.37513824375138, + "grad_norm": 0.5360403656959534, + "learning_rate": 1.830238726790451e-06, + "loss": 0.3868670654296875, + "step": 109000 + }, + { + "epoch": 96.46361424463615, + "grad_norm": 0.5472413897514343, + "learning_rate": 1.786030061892131e-06, + "loss": 0.38740249633789064, + "step": 109100 + }, + { + "epoch": 96.5520902455209, + "grad_norm": 0.4783819019794464, + "learning_rate": 1.7418213969938107e-06, + "loss": 0.3851567459106445, + "step": 109200 + }, + { + "epoch": 96.64056624640567, + "grad_norm": 0.5319016575813293, + "learning_rate": 1.6976127320954906e-06, + "loss": 0.38549720764160156, + "step": 109300 + }, + { + "epoch": 96.72904224729042, + "grad_norm": 0.4579726755619049, + "learning_rate": 1.6534040671971708e-06, + "loss": 0.38684429168701173, + "step": 109400 + }, + { + "epoch": 96.81751824817518, + "grad_norm": 0.4699755012989044, + "learning_rate": 1.6091954022988506e-06, + "loss": 0.3849377822875977, + "step": 109500 + }, + { + "epoch": 96.90599424905994, + "grad_norm": 0.5681434273719788, + "learning_rate": 1.5649867374005304e-06, + "loss": 0.38494167327880857, + "step": 109600 + }, + { + "epoch": 96.9944702499447, + "grad_norm": 0.40921762585639954, + "learning_rate": 1.5207780725022105e-06, + "loss": 0.3864158630371094, + "step": 109700 + }, + { + "epoch": 97.08228268082283, + "grad_norm": 0.5271804928779602, + "learning_rate": 1.4765694076038905e-06, + "loss": 0.3854814529418945, + "step": 109800 + }, + { + "epoch": 97.17075868170758, + "grad_norm": 0.5390716195106506, + "learning_rate": 1.4323607427055703e-06, + "loss": 0.3826302719116211, + "step": 109900 + }, + { + "epoch": 97.25923468259235, + "grad_norm": 0.4738744795322418, + "learning_rate": 1.3881520778072502e-06, + "loss": 0.3834680938720703, + "step": 110000 + }, + { + "epoch": 97.3477106834771, + "grad_norm": 0.47226211428642273, + "learning_rate": 1.3439434129089302e-06, + "loss": 0.383985595703125, + "step": 110100 + }, + { + "epoch": 97.43618668436187, + "grad_norm": 0.44581323862075806, + "learning_rate": 1.29973474801061e-06, + "loss": 0.38392398834228514, + "step": 110200 + }, + { + "epoch": 97.52466268524662, + "grad_norm": 0.505975067615509, + "learning_rate": 1.25552608311229e-06, + "loss": 0.3842586898803711, + "step": 110300 + }, + { + "epoch": 97.61313868613139, + "grad_norm": 0.4737127125263214, + "learning_rate": 1.21131741821397e-06, + "loss": 0.3853626251220703, + "step": 110400 + }, + { + "epoch": 97.70161468701615, + "grad_norm": 0.42337724566459656, + "learning_rate": 1.16710875331565e-06, + "loss": 0.3860707092285156, + "step": 110500 + }, + { + "epoch": 97.7900906879009, + "grad_norm": 0.470935583114624, + "learning_rate": 1.12290008841733e-06, + "loss": 0.3849189758300781, + "step": 110600 + }, + { + "epoch": 97.87856668878567, + "grad_norm": 0.5499629974365234, + "learning_rate": 1.0786914235190098e-06, + "loss": 0.3849348068237305, + "step": 110700 + }, + { + "epoch": 97.96704268967042, + "grad_norm": 0.5295959711074829, + "learning_rate": 1.0344827586206898e-06, + "loss": 0.3844482040405273, + "step": 110800 + }, + { + "epoch": 98.05485512054855, + "grad_norm": 0.510218620300293, + "learning_rate": 9.902740937223696e-07, + "loss": 0.38250988006591796, + "step": 110900 + }, + { + "epoch": 98.1433311214333, + "grad_norm": 0.46240198612213135, + "learning_rate": 9.460654288240495e-07, + "loss": 0.38357555389404296, + "step": 111000 + }, + { + "epoch": 98.23180712231807, + "grad_norm": 0.5413907170295715, + "learning_rate": 9.018567639257295e-07, + "loss": 0.3835936737060547, + "step": 111100 + }, + { + "epoch": 98.32028312320283, + "grad_norm": 0.5282194018363953, + "learning_rate": 8.576480990274095e-07, + "loss": 0.38462539672851564, + "step": 111200 + }, + { + "epoch": 98.4087591240876, + "grad_norm": 0.4430619478225708, + "learning_rate": 8.134394341290893e-07, + "loss": 0.3831254196166992, + "step": 111300 + }, + { + "epoch": 98.49723512497235, + "grad_norm": 0.4520755410194397, + "learning_rate": 7.692307692307694e-07, + "loss": 0.38387767791748045, + "step": 111400 + }, + { + "epoch": 98.58571112585712, + "grad_norm": 0.42326220870018005, + "learning_rate": 7.250221043324492e-07, + "loss": 0.38382118225097656, + "step": 111500 + }, + { + "epoch": 98.67418712674187, + "grad_norm": 0.5536217093467712, + "learning_rate": 6.808134394341291e-07, + "loss": 0.3837322998046875, + "step": 111600 + }, + { + "epoch": 98.76266312762664, + "grad_norm": 0.47729530930519104, + "learning_rate": 6.36604774535809e-07, + "loss": 0.3840275192260742, + "step": 111700 + }, + { + "epoch": 98.85113912851139, + "grad_norm": 0.4712120294570923, + "learning_rate": 5.92396109637489e-07, + "loss": 0.3826910400390625, + "step": 111800 + }, + { + "epoch": 98.93961512939615, + "grad_norm": 0.4533778727054596, + "learning_rate": 5.481874447391689e-07, + "loss": 0.3849251174926758, + "step": 111900 + }, + { + "epoch": 99.02742756027428, + "grad_norm": 0.4762660264968872, + "learning_rate": 5.04420866489832e-07, + "loss": 0.38347198486328127, + "step": 112000 + }, + { + "epoch": 99.11590356115903, + "grad_norm": 0.49900203943252563, + "learning_rate": 4.6021220159151197e-07, + "loss": 0.38361885070800783, + "step": 112100 + }, + { + "epoch": 99.2043795620438, + "grad_norm": 0.5499697923660278, + "learning_rate": 4.1600353669319184e-07, + "loss": 0.38323490142822264, + "step": 112200 + }, + { + "epoch": 99.29285556292855, + "grad_norm": 0.49698564410209656, + "learning_rate": 3.717948717948718e-07, + "loss": 0.38394325256347656, + "step": 112300 + }, + { + "epoch": 99.38133156381332, + "grad_norm": 0.5000177621841431, + "learning_rate": 3.2758620689655175e-07, + "loss": 0.3833367156982422, + "step": 112400 + }, + { + "epoch": 99.46980756469807, + "grad_norm": 0.46179404854774475, + "learning_rate": 2.833775419982317e-07, + "loss": 0.38318233489990233, + "step": 112500 + }, + { + "epoch": 99.55828356558284, + "grad_norm": 0.5522571802139282, + "learning_rate": 2.391688770999116e-07, + "loss": 0.38181392669677733, + "step": 112600 + }, + { + "epoch": 99.6467595664676, + "grad_norm": 0.4453877806663513, + "learning_rate": 1.949602122015915e-07, + "loss": 0.38297233581542967, + "step": 112700 + }, + { + "epoch": 99.73523556735236, + "grad_norm": 0.46210813522338867, + "learning_rate": 1.5075154730327146e-07, + "loss": 0.3855221939086914, + "step": 112800 + } + ], + "logging_steps": 100, + "max_steps": 113100, + "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": 3.129580169448653e+16, + "train_batch_size": 8, + "trial_name": null, + "trial_params": null +} diff --git a/timecost/m8/realtabformer/rtf-m8-20260501_010220/rtf_checkpoints/checkpoint-112800/training_args.bin b/timecost/m8/realtabformer/rtf-m8-20260501_010220/rtf_checkpoints/checkpoint-112800/training_args.bin new file mode 100644 index 0000000000000000000000000000000000000000..34d68dc0e0fe1c1f12a2e581dd1b166aa7178a9e --- /dev/null +++ b/timecost/m8/realtabformer/rtf-m8-20260501_010220/rtf_checkpoints/checkpoint-112800/training_args.bin @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:9e2cd88337d1d846c6918d2b3b63fa3e5c93f12fefc082497590da854a564607 +size 5201 diff --git a/timecost/m8/realtabformer/rtf-m8-20260501_010220/rtf_checkpoints/checkpoint-112900/config.json b/timecost/m8/realtabformer/rtf-m8-20260501_010220/rtf_checkpoints/checkpoint-112900/config.json new file mode 100644 index 0000000000000000000000000000000000000000..d98dd02b920679d4da3c8b60a9be119058fb9fe3 --- /dev/null +++ b/timecost/m8/realtabformer/rtf-m8-20260501_010220/rtf_checkpoints/checkpoint-112900/config.json @@ -0,0 +1,34 @@ +{ + "activation_function": "gelu_new", + "add_cross_attention": false, + "architectures": [ + "GPT2LMHeadModel" + ], + "attn_pdrop": 0.1, + "bos_token_id": 5, + "dtype": "float32", + "embd_pdrop": 0.1, + "eos_token_id": 6, + "initializer_range": 0.02, + "layer_norm_epsilon": 1e-05, + "model_type": "gpt2", + "n_embd": 768, + "n_head": 12, + "n_inner": null, + "n_layer": 6, + "n_positions": 1024, + "pad_token_id": null, + "reorder_and_upcast_attn": false, + "resid_pdrop": 0.1, + "scale_attn_by_inverse_layer_idx": false, + "scale_attn_weights": true, + "summary_activation": null, + "summary_first_dropout": 0.1, + "summary_proj_to_labels": true, + "summary_type": "cls_index", + "summary_use_proj": true, + "tie_word_embeddings": true, + "transformers_version": "5.5.3", + "use_cache": false, + "vocab_size": 244 +} diff --git a/timecost/m8/realtabformer/rtf-m8-20260501_010220/rtf_checkpoints/checkpoint-112900/generation_config.json b/timecost/m8/realtabformer/rtf-m8-20260501_010220/rtf_checkpoints/checkpoint-112900/generation_config.json new file mode 100644 index 0000000000000000000000000000000000000000..ffe89567780e75b5c22eade9be971483b9618f39 --- /dev/null +++ b/timecost/m8/realtabformer/rtf-m8-20260501_010220/rtf_checkpoints/checkpoint-112900/generation_config.json @@ -0,0 +1,9 @@ +{ + "_from_model_config": true, + "bos_token_id": 5, + "eos_token_id": 6, + "output_attentions": false, + "output_hidden_states": false, + "transformers_version": "5.5.3", + "use_cache": true +} diff --git a/timecost/m8/realtabformer/rtf-m8-20260501_010220/rtf_checkpoints/checkpoint-112900/model.safetensors b/timecost/m8/realtabformer/rtf-m8-20260501_010220/rtf_checkpoints/checkpoint-112900/model.safetensors new file mode 100644 index 0000000000000000000000000000000000000000..2f1c103fe3242930b509dda991671b5814b618fa --- /dev/null +++ b/timecost/m8/realtabformer/rtf-m8-20260501_010220/rtf_checkpoints/checkpoint-112900/model.safetensors @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:0f5748a1a89c2e87d6e5f2b1405e073b2305e7c4c3eb8d6262dcd71947c12017 +size 174017992 diff --git a/timecost/m8/realtabformer/rtf-m8-20260501_010220/rtf_checkpoints/checkpoint-112900/optimizer.pt b/timecost/m8/realtabformer/rtf-m8-20260501_010220/rtf_checkpoints/checkpoint-112900/optimizer.pt new file mode 100644 index 0000000000000000000000000000000000000000..845b05ad6aba7d0d9d23d93c7e9d9451a5844c77 --- /dev/null +++ b/timecost/m8/realtabformer/rtf-m8-20260501_010220/rtf_checkpoints/checkpoint-112900/optimizer.pt @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:7026198b49ef09665f225434a5d7340045a51d21d02feb5b4ae452a77d9a2e8c +size 348085067 diff --git a/timecost/m8/realtabformer/rtf-m8-20260501_010220/rtf_checkpoints/checkpoint-112900/rng_state.pth b/timecost/m8/realtabformer/rtf-m8-20260501_010220/rtf_checkpoints/checkpoint-112900/rng_state.pth new file mode 100644 index 0000000000000000000000000000000000000000..7b6b0edcacea3db38c1fe1f06fc1fca96fe2bfcf --- /dev/null +++ b/timecost/m8/realtabformer/rtf-m8-20260501_010220/rtf_checkpoints/checkpoint-112900/rng_state.pth @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:4cb065696e51e04eb03fd38aedc6f41cd40c1dec1d4f5231c697770c892c36af +size 14645 diff --git a/timecost/m8/realtabformer/rtf-m8-20260501_010220/rtf_checkpoints/checkpoint-112900/scaler.pt b/timecost/m8/realtabformer/rtf-m8-20260501_010220/rtf_checkpoints/checkpoint-112900/scaler.pt new file mode 100644 index 0000000000000000000000000000000000000000..650c92d86b3e8f1a5f3ee6f89033e0b5b352f736 --- /dev/null +++ b/timecost/m8/realtabformer/rtf-m8-20260501_010220/rtf_checkpoints/checkpoint-112900/scaler.pt @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:b0bddddaa1b692b5bfd0481d34ed49b5f4639080045ab840de74ecbc6b05c7f5 +size 1383 diff --git a/timecost/m8/realtabformer/rtf-m8-20260501_010220/rtf_checkpoints/checkpoint-112900/scheduler.pt b/timecost/m8/realtabformer/rtf-m8-20260501_010220/rtf_checkpoints/checkpoint-112900/scheduler.pt new file mode 100644 index 0000000000000000000000000000000000000000..44bfd806b6f76a873f4e47ba7a269cedecbe5cba --- /dev/null +++ b/timecost/m8/realtabformer/rtf-m8-20260501_010220/rtf_checkpoints/checkpoint-112900/scheduler.pt @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:adf529e045ac410460a4190cee9beef6081a7ca4943bf3f472fb26ca824b52f9 +size 1465 diff --git a/timecost/m8/realtabformer/rtf-m8-20260501_010220/rtf_checkpoints/checkpoint-112900/trainer_state.json b/timecost/m8/realtabformer/rtf-m8-20260501_010220/rtf_checkpoints/checkpoint-112900/trainer_state.json new file mode 100644 index 0000000000000000000000000000000000000000..43be5f21b9db9a3f85a4a4850c6f8cbfd7f453ab --- /dev/null +++ b/timecost/m8/realtabformer/rtf-m8-20260501_010220/rtf_checkpoints/checkpoint-112900/trainer_state.json @@ -0,0 +1,7937 @@ +{ + "best_global_step": null, + "best_metric": null, + "best_model_checkpoint": null, + "epoch": 99.82371156823712, + "eval_steps": 100, + "global_step": 112900, + "is_hyper_param_search": false, + "is_local_process_zero": true, + "is_world_process_zero": true, + "log_history": [ + { + "epoch": 0.08847600088476001, + "grad_norm": 0.27971890568733215, + "learning_rate": 4.9956233421750666e-05, + "loss": 1.6012767028808594, + "step": 100 + }, + { + "epoch": 0.17695200176952003, + "grad_norm": 0.2532733976840973, + "learning_rate": 4.991202475685234e-05, + "loss": 1.0460629272460937, + "step": 200 + }, + { + "epoch": 0.26542800265428, + "grad_norm": 0.22527219355106354, + "learning_rate": 4.986781609195402e-05, + "loss": 1.0045037841796876, + "step": 300 + }, + { + "epoch": 0.35390400353904006, + "grad_norm": 0.2071678638458252, + "learning_rate": 4.982360742705571e-05, + "loss": 0.9934071350097656, + "step": 400 + }, + { + "epoch": 0.44238000442380004, + "grad_norm": 0.21996082365512848, + "learning_rate": 4.977939876215739e-05, + "loss": 0.9807382965087891, + "step": 500 + }, + { + "epoch": 0.53085600530856, + "grad_norm": 0.20051148533821106, + "learning_rate": 4.9735190097259064e-05, + "loss": 0.9772834014892579, + "step": 600 + }, + { + "epoch": 0.6193320061933201, + "grad_norm": 0.20692776143550873, + "learning_rate": 4.969098143236074e-05, + "loss": 0.9733844757080078, + "step": 700 + }, + { + "epoch": 0.7078080070780801, + "grad_norm": 0.22139734029769897, + "learning_rate": 4.9646772767462425e-05, + "loss": 0.9641999053955078, + "step": 800 + }, + { + "epoch": 0.79628400796284, + "grad_norm": 0.20099565386772156, + "learning_rate": 4.96025641025641e-05, + "loss": 0.9590901947021484, + "step": 900 + }, + { + "epoch": 0.8847600088476001, + "grad_norm": 0.19050444662570953, + "learning_rate": 4.955835543766578e-05, + "loss": 0.9558430480957031, + "step": 1000 + }, + { + "epoch": 0.9732360097323601, + "grad_norm": 0.20780153572559357, + "learning_rate": 4.951414677276747e-05, + "loss": 0.9558073425292969, + "step": 1100 + }, + { + "epoch": 1.0610484406104843, + "grad_norm": 0.20002400875091553, + "learning_rate": 4.946993810786915e-05, + "loss": 0.9575533294677734, + "step": 1200 + }, + { + "epoch": 1.1495244414952444, + "grad_norm": 0.19394151866436005, + "learning_rate": 4.9425729442970824e-05, + "loss": 0.9556401824951172, + "step": 1300 + }, + { + "epoch": 1.2380004423800044, + "grad_norm": 0.19420816004276276, + "learning_rate": 4.93815207780725e-05, + "loss": 0.948358154296875, + "step": 1400 + }, + { + "epoch": 1.3264764432647644, + "grad_norm": 0.2109377682209015, + "learning_rate": 4.9337312113174185e-05, + "loss": 0.9507483673095704, + "step": 1500 + }, + { + "epoch": 1.4149524441495245, + "grad_norm": 0.19577011466026306, + "learning_rate": 4.929310344827586e-05, + "loss": 0.9544251251220703, + "step": 1600 + }, + { + "epoch": 1.5034284450342845, + "grad_norm": 0.17374339699745178, + "learning_rate": 4.924889478337754e-05, + "loss": 0.9495613098144531, + "step": 1700 + }, + { + "epoch": 1.5919044459190443, + "grad_norm": 0.1539471447467804, + "learning_rate": 4.920468611847922e-05, + "loss": 0.946780014038086, + "step": 1800 + }, + { + "epoch": 1.6803804468038046, + "grad_norm": 0.21705853939056396, + "learning_rate": 4.916047745358091e-05, + "loss": 0.9456329345703125, + "step": 1900 + }, + { + "epoch": 1.7688564476885644, + "grad_norm": 0.18109191954135895, + "learning_rate": 4.9116268788682584e-05, + "loss": 0.9452082061767578, + "step": 2000 + }, + { + "epoch": 1.8573324485733245, + "grad_norm": 0.18233413994312286, + "learning_rate": 4.907206012378426e-05, + "loss": 0.9436309051513672, + "step": 2100 + }, + { + "epoch": 1.9458084494580845, + "grad_norm": 0.19978198409080505, + "learning_rate": 4.9027851458885945e-05, + "loss": 0.9466010284423828, + "step": 2200 + }, + { + "epoch": 2.033620880336209, + "grad_norm": 0.19425439834594727, + "learning_rate": 4.898364279398762e-05, + "loss": 0.9419589233398438, + "step": 2300 + }, + { + "epoch": 2.1220968812209686, + "grad_norm": 0.18522261083126068, + "learning_rate": 4.8939434129089306e-05, + "loss": 0.9406929779052734, + "step": 2400 + }, + { + "epoch": 2.210572882105729, + "grad_norm": 0.18092288076877594, + "learning_rate": 4.889522546419098e-05, + "loss": 0.9394661712646485, + "step": 2500 + }, + { + "epoch": 2.2990488829904887, + "grad_norm": 0.16110995411872864, + "learning_rate": 4.885101679929267e-05, + "loss": 0.9415554809570312, + "step": 2600 + }, + { + "epoch": 2.387524883875249, + "grad_norm": 0.1742609441280365, + "learning_rate": 4.8806808134394344e-05, + "loss": 0.9385026550292969, + "step": 2700 + }, + { + "epoch": 2.476000884760009, + "grad_norm": 0.1893293261528015, + "learning_rate": 4.876259946949602e-05, + "loss": 0.9374285125732422, + "step": 2800 + }, + { + "epoch": 2.564476885644769, + "grad_norm": 0.17022491991519928, + "learning_rate": 4.8718390804597705e-05, + "loss": 0.9414189910888672, + "step": 2900 + }, + { + "epoch": 2.652952886529529, + "grad_norm": 0.1820104867219925, + "learning_rate": 4.867418213969938e-05, + "loss": 0.9428114318847656, + "step": 3000 + }, + { + "epoch": 2.7414288874142887, + "grad_norm": 0.1591845154762268, + "learning_rate": 4.8629973474801066e-05, + "loss": 0.9408238220214844, + "step": 3100 + }, + { + "epoch": 2.829904888299049, + "grad_norm": 0.16679565608501434, + "learning_rate": 4.858576480990274e-05, + "loss": 0.9357293701171875, + "step": 3200 + }, + { + "epoch": 2.918380889183809, + "grad_norm": 0.1608530431985855, + "learning_rate": 4.854155614500443e-05, + "loss": 0.9437465667724609, + "step": 3300 + }, + { + "epoch": 3.006193320061933, + "grad_norm": 0.17832520604133606, + "learning_rate": 4.8497347480106104e-05, + "loss": 0.9349425506591796, + "step": 3400 + }, + { + "epoch": 3.0946693209466933, + "grad_norm": 0.18095993995666504, + "learning_rate": 4.845313881520778e-05, + "loss": 0.9341915130615235, + "step": 3500 + }, + { + "epoch": 3.183145321831453, + "grad_norm": 0.15083801746368408, + "learning_rate": 4.8408930150309465e-05, + "loss": 0.9406319427490234, + "step": 3600 + }, + { + "epoch": 3.2716213227162134, + "grad_norm": 0.17318469285964966, + "learning_rate": 4.836472148541114e-05, + "loss": 0.942470703125, + "step": 3700 + }, + { + "epoch": 3.3600973236009732, + "grad_norm": 0.16380801796913147, + "learning_rate": 4.8320512820512826e-05, + "loss": 0.9362622833251953, + "step": 3800 + }, + { + "epoch": 3.448573324485733, + "grad_norm": 0.16394540667533875, + "learning_rate": 4.82763041556145e-05, + "loss": 0.9353338623046875, + "step": 3900 + }, + { + "epoch": 3.5370493253704933, + "grad_norm": 0.15836960077285767, + "learning_rate": 4.8232095490716186e-05, + "loss": 0.9316812896728516, + "step": 4000 + }, + { + "epoch": 3.625525326255253, + "grad_norm": 0.16170428693294525, + "learning_rate": 4.8187886825817864e-05, + "loss": 0.9331712341308593, + "step": 4100 + }, + { + "epoch": 3.7140013271400134, + "grad_norm": 0.16442789137363434, + "learning_rate": 4.814367816091954e-05, + "loss": 0.9366471862792969, + "step": 4200 + }, + { + "epoch": 3.8024773280247732, + "grad_norm": 0.1728108674287796, + "learning_rate": 4.8099469496021224e-05, + "loss": 0.9279624938964843, + "step": 4300 + }, + { + "epoch": 3.890953328909533, + "grad_norm": 0.16846929490566254, + "learning_rate": 4.80552608311229e-05, + "loss": 0.9343041229248047, + "step": 4400 + }, + { + "epoch": 3.9794293297942933, + "grad_norm": 0.15764060616493225, + "learning_rate": 4.8011052166224585e-05, + "loss": 0.9330953979492187, + "step": 4500 + }, + { + "epoch": 4.067241760672418, + "grad_norm": 0.15639521181583405, + "learning_rate": 4.796684350132626e-05, + "loss": 0.92936279296875, + "step": 4600 + }, + { + "epoch": 4.155717761557177, + "grad_norm": 0.1571352481842041, + "learning_rate": 4.7922634836427946e-05, + "loss": 0.928530502319336, + "step": 4700 + }, + { + "epoch": 4.244193762441937, + "grad_norm": 0.1702045202255249, + "learning_rate": 4.787842617152962e-05, + "loss": 0.928214111328125, + "step": 4800 + }, + { + "epoch": 4.332669763326698, + "grad_norm": 0.15860655903816223, + "learning_rate": 4.78342175066313e-05, + "loss": 0.9305215454101563, + "step": 4900 + }, + { + "epoch": 4.421145764211458, + "grad_norm": 0.15470334887504578, + "learning_rate": 4.779000884173298e-05, + "loss": 0.9308832550048828, + "step": 5000 + }, + { + "epoch": 4.509621765096218, + "grad_norm": 0.18338388204574585, + "learning_rate": 4.774580017683466e-05, + "loss": 0.9284812164306641, + "step": 5100 + }, + { + "epoch": 4.598097765980977, + "grad_norm": 0.16396461427211761, + "learning_rate": 4.7701591511936345e-05, + "loss": 0.9331364440917969, + "step": 5200 + }, + { + "epoch": 4.686573766865738, + "grad_norm": 0.15601013600826263, + "learning_rate": 4.765738284703802e-05, + "loss": 0.9345075225830078, + "step": 5300 + }, + { + "epoch": 4.775049767750498, + "grad_norm": 0.15895380079746246, + "learning_rate": 4.76131741821397e-05, + "loss": 0.9342525482177735, + "step": 5400 + }, + { + "epoch": 4.863525768635258, + "grad_norm": 0.17462770640850067, + "learning_rate": 4.756896551724138e-05, + "loss": 0.9322207641601562, + "step": 5500 + }, + { + "epoch": 4.952001769520018, + "grad_norm": 0.15457525849342346, + "learning_rate": 4.752475685234306e-05, + "loss": 0.9310305023193359, + "step": 5600 + }, + { + "epoch": 5.039814200398142, + "grad_norm": 0.13688383996486664, + "learning_rate": 4.748054818744474e-05, + "loss": 0.9262973022460937, + "step": 5700 + }, + { + "epoch": 5.128290201282902, + "grad_norm": 0.15491563081741333, + "learning_rate": 4.743633952254642e-05, + "loss": 0.927138671875, + "step": 5800 + }, + { + "epoch": 5.216766202167662, + "grad_norm": 0.168558269739151, + "learning_rate": 4.7392130857648105e-05, + "loss": 0.9224365234375, + "step": 5900 + }, + { + "epoch": 5.305242203052422, + "grad_norm": 0.1631685495376587, + "learning_rate": 4.734792219274978e-05, + "loss": 0.9300392913818359, + "step": 6000 + }, + { + "epoch": 5.393718203937182, + "grad_norm": 0.1423729509115219, + "learning_rate": 4.730371352785146e-05, + "loss": 0.926734619140625, + "step": 6100 + }, + { + "epoch": 5.482194204821942, + "grad_norm": 0.15391670167446136, + "learning_rate": 4.725950486295314e-05, + "loss": 0.928184814453125, + "step": 6200 + }, + { + "epoch": 5.570670205706702, + "grad_norm": 0.16460080444812775, + "learning_rate": 4.721529619805482e-05, + "loss": 0.9238227844238281, + "step": 6300 + }, + { + "epoch": 5.659146206591462, + "grad_norm": 0.15589170157909393, + "learning_rate": 4.71710875331565e-05, + "loss": 0.9301457214355469, + "step": 6400 + }, + { + "epoch": 5.747622207476222, + "grad_norm": 0.15851308405399323, + "learning_rate": 4.712687886825818e-05, + "loss": 0.9308782196044922, + "step": 6500 + }, + { + "epoch": 5.836098208360982, + "grad_norm": 0.1777440756559372, + "learning_rate": 4.7082670203359865e-05, + "loss": 0.9248320007324219, + "step": 6600 + }, + { + "epoch": 5.924574209245742, + "grad_norm": 0.17118966579437256, + "learning_rate": 4.703846153846154e-05, + "loss": 0.933470458984375, + "step": 6700 + }, + { + "epoch": 6.012386640123866, + "grad_norm": 0.16862431168556213, + "learning_rate": 4.699425287356322e-05, + "loss": 0.9242423248291015, + "step": 6800 + }, + { + "epoch": 6.100862641008627, + "grad_norm": 0.19494886696338654, + "learning_rate": 4.69500442086649e-05, + "loss": 0.9229951477050782, + "step": 6900 + }, + { + "epoch": 6.189338641893387, + "grad_norm": 0.1628340780735016, + "learning_rate": 4.690583554376658e-05, + "loss": 0.9262020111083984, + "step": 7000 + }, + { + "epoch": 6.2778146427781465, + "grad_norm": 0.18057121336460114, + "learning_rate": 4.686162687886826e-05, + "loss": 0.9253005981445312, + "step": 7100 + }, + { + "epoch": 6.366290643662906, + "grad_norm": 0.16090655326843262, + "learning_rate": 4.681741821396994e-05, + "loss": 0.9206966400146485, + "step": 7200 + }, + { + "epoch": 6.454766644547666, + "grad_norm": 0.16115659475326538, + "learning_rate": 4.6773209549071625e-05, + "loss": 0.9219180297851562, + "step": 7300 + }, + { + "epoch": 6.543242645432427, + "grad_norm": 0.1964244246482849, + "learning_rate": 4.67290008841733e-05, + "loss": 0.9238224029541016, + "step": 7400 + }, + { + "epoch": 6.631718646317187, + "grad_norm": 0.1761396825313568, + "learning_rate": 4.668479221927498e-05, + "loss": 0.9244656372070312, + "step": 7500 + }, + { + "epoch": 6.7201946472019465, + "grad_norm": 0.18016010522842407, + "learning_rate": 4.664058355437666e-05, + "loss": 0.9245244598388672, + "step": 7600 + }, + { + "epoch": 6.808670648086706, + "grad_norm": 0.16012924909591675, + "learning_rate": 4.659637488947834e-05, + "loss": 0.9250524139404297, + "step": 7700 + }, + { + "epoch": 6.897146648971466, + "grad_norm": 0.1722676306962967, + "learning_rate": 4.655216622458002e-05, + "loss": 0.9270682525634766, + "step": 7800 + }, + { + "epoch": 6.985622649856227, + "grad_norm": 0.18756897747516632, + "learning_rate": 4.65079575596817e-05, + "loss": 0.9234317779541016, + "step": 7900 + }, + { + "epoch": 7.073435080734351, + "grad_norm": 0.16759978234767914, + "learning_rate": 4.6463748894783384e-05, + "loss": 0.9213732147216797, + "step": 8000 + }, + { + "epoch": 7.1619110816191105, + "grad_norm": 0.15943242609500885, + "learning_rate": 4.641954022988506e-05, + "loss": 0.9243515014648438, + "step": 8100 + }, + { + "epoch": 7.250387082503871, + "grad_norm": 0.15444102883338928, + "learning_rate": 4.637533156498674e-05, + "loss": 0.9177332305908203, + "step": 8200 + }, + { + "epoch": 7.338863083388631, + "grad_norm": 0.17104187607765198, + "learning_rate": 4.633112290008842e-05, + "loss": 0.9199151611328125, + "step": 8300 + }, + { + "epoch": 7.427339084273391, + "grad_norm": 0.152462899684906, + "learning_rate": 4.62869142351901e-05, + "loss": 0.9231443786621094, + "step": 8400 + }, + { + "epoch": 7.515815085158151, + "grad_norm": 0.1663249433040619, + "learning_rate": 4.6242705570291777e-05, + "loss": 0.9231499481201172, + "step": 8500 + }, + { + "epoch": 7.6042910860429105, + "grad_norm": 0.1711215376853943, + "learning_rate": 4.6198496905393454e-05, + "loss": 0.9192819976806641, + "step": 8600 + }, + { + "epoch": 7.692767086927671, + "grad_norm": 0.1620834916830063, + "learning_rate": 4.6154288240495144e-05, + "loss": 0.9260062408447266, + "step": 8700 + }, + { + "epoch": 7.781243087812431, + "grad_norm": 0.16246546804904938, + "learning_rate": 4.611007957559682e-05, + "loss": 0.9250968933105469, + "step": 8800 + }, + { + "epoch": 7.869719088697191, + "grad_norm": 0.15757358074188232, + "learning_rate": 4.60658709106985e-05, + "loss": 0.9235149383544922, + "step": 8900 + }, + { + "epoch": 7.958195089581951, + "grad_norm": 0.15778206288814545, + "learning_rate": 4.602166224580018e-05, + "loss": 0.9173377227783203, + "step": 9000 + }, + { + "epoch": 8.046007520460075, + "grad_norm": 0.17259791493415833, + "learning_rate": 4.597745358090186e-05, + "loss": 0.9134017181396484, + "step": 9100 + }, + { + "epoch": 8.134483521344835, + "grad_norm": 0.1707502007484436, + "learning_rate": 4.5933244916003536e-05, + "loss": 0.9134098052978515, + "step": 9200 + }, + { + "epoch": 8.222959522229596, + "grad_norm": 0.1647530347108841, + "learning_rate": 4.5889036251105213e-05, + "loss": 0.9205097961425781, + "step": 9300 + }, + { + "epoch": 8.311435523114355, + "grad_norm": 0.16971947252750397, + "learning_rate": 4.5844827586206904e-05, + "loss": 0.9217983245849609, + "step": 9400 + }, + { + "epoch": 8.399911523999116, + "grad_norm": 0.15842877328395844, + "learning_rate": 4.580061892130858e-05, + "loss": 0.9172341918945313, + "step": 9500 + }, + { + "epoch": 8.488387524883874, + "grad_norm": 0.15321888029575348, + "learning_rate": 4.575641025641026e-05, + "loss": 0.9222029113769531, + "step": 9600 + }, + { + "epoch": 8.576863525768635, + "grad_norm": 0.17232707142829895, + "learning_rate": 4.5712201591511935e-05, + "loss": 0.9190543365478515, + "step": 9700 + }, + { + "epoch": 8.665339526653396, + "grad_norm": 0.14735591411590576, + "learning_rate": 4.566799292661362e-05, + "loss": 0.9193865203857422, + "step": 9800 + }, + { + "epoch": 8.753815527538155, + "grad_norm": 0.17929628491401672, + "learning_rate": 4.5623784261715296e-05, + "loss": 0.9178209686279297, + "step": 9900 + }, + { + "epoch": 8.842291528422916, + "grad_norm": 0.1546984612941742, + "learning_rate": 4.557957559681697e-05, + "loss": 0.9209825134277344, + "step": 10000 + }, + { + "epoch": 8.930767529307674, + "grad_norm": 0.16275030374526978, + "learning_rate": 4.553536693191866e-05, + "loss": 0.9219312286376953, + "step": 10100 + }, + { + "epoch": 9.0185799601858, + "grad_norm": 0.16977843642234802, + "learning_rate": 4.549115826702034e-05, + "loss": 0.9190888977050782, + "step": 10200 + }, + { + "epoch": 9.107055961070559, + "grad_norm": 0.16722118854522705, + "learning_rate": 4.544694960212202e-05, + "loss": 0.9173007202148438, + "step": 10300 + }, + { + "epoch": 9.19553196195532, + "grad_norm": 0.15637095272541046, + "learning_rate": 4.5402740937223695e-05, + "loss": 0.9152852630615235, + "step": 10400 + }, + { + "epoch": 9.28400796284008, + "grad_norm": 0.15433216094970703, + "learning_rate": 4.535853227232538e-05, + "loss": 0.9151573944091796, + "step": 10500 + }, + { + "epoch": 9.37248396372484, + "grad_norm": 0.15743562579154968, + "learning_rate": 4.5314323607427056e-05, + "loss": 0.9173799896240235, + "step": 10600 + }, + { + "epoch": 9.4609599646096, + "grad_norm": 0.1527981162071228, + "learning_rate": 4.527011494252873e-05, + "loss": 0.911611328125, + "step": 10700 + }, + { + "epoch": 9.549435965494359, + "grad_norm": 0.15745887160301208, + "learning_rate": 4.522590627763042e-05, + "loss": 0.9144339752197266, + "step": 10800 + }, + { + "epoch": 9.63791196637912, + "grad_norm": 0.1523962914943695, + "learning_rate": 4.51816976127321e-05, + "loss": 0.918481216430664, + "step": 10900 + }, + { + "epoch": 9.72638796726388, + "grad_norm": 0.17231452465057373, + "learning_rate": 4.513748894783378e-05, + "loss": 0.9197111511230469, + "step": 11000 + }, + { + "epoch": 9.81486396814864, + "grad_norm": 0.16348381340503693, + "learning_rate": 4.5093280282935455e-05, + "loss": 0.9151203918457032, + "step": 11100 + }, + { + "epoch": 9.9033399690334, + "grad_norm": 0.16555383801460266, + "learning_rate": 4.504907161803714e-05, + "loss": 0.9189680480957031, + "step": 11200 + }, + { + "epoch": 9.991815969918159, + "grad_norm": 0.16531047224998474, + "learning_rate": 4.5004862953138816e-05, + "loss": 0.9149074554443359, + "step": 11300 + }, + { + "epoch": 10.079628400796285, + "grad_norm": 0.1655273735523224, + "learning_rate": 4.496065428824049e-05, + "loss": 0.9143817138671875, + "step": 11400 + }, + { + "epoch": 10.168104401681044, + "grad_norm": 0.1795828938484192, + "learning_rate": 4.491644562334218e-05, + "loss": 0.911801986694336, + "step": 11500 + }, + { + "epoch": 10.256580402565804, + "grad_norm": 0.1684361696243286, + "learning_rate": 4.487223695844386e-05, + "loss": 0.910247802734375, + "step": 11600 + }, + { + "epoch": 10.345056403450563, + "grad_norm": 0.1620638519525528, + "learning_rate": 4.482802829354554e-05, + "loss": 0.9155111694335938, + "step": 11700 + }, + { + "epoch": 10.433532404335324, + "grad_norm": 0.1695495843887329, + "learning_rate": 4.4783819628647215e-05, + "loss": 0.9134779357910157, + "step": 11800 + }, + { + "epoch": 10.522008405220085, + "grad_norm": 0.18226753175258636, + "learning_rate": 4.47396109637489e-05, + "loss": 0.9143638610839844, + "step": 11900 + }, + { + "epoch": 10.610484406104844, + "grad_norm": 0.15289710462093353, + "learning_rate": 4.4695402298850576e-05, + "loss": 0.9122061157226562, + "step": 12000 + }, + { + "epoch": 10.698960406989604, + "grad_norm": 0.15486228466033936, + "learning_rate": 4.465119363395225e-05, + "loss": 0.9148915863037109, + "step": 12100 + }, + { + "epoch": 10.787436407874363, + "grad_norm": 0.17585019767284393, + "learning_rate": 4.4606984969053937e-05, + "loss": 0.9163182830810547, + "step": 12200 + }, + { + "epoch": 10.875912408759124, + "grad_norm": 0.158732071518898, + "learning_rate": 4.456277630415562e-05, + "loss": 0.9148865509033203, + "step": 12300 + }, + { + "epoch": 10.964388409643885, + "grad_norm": 0.15901361405849457, + "learning_rate": 4.45185676392573e-05, + "loss": 0.9184156799316406, + "step": 12400 + }, + { + "epoch": 11.052200840522008, + "grad_norm": 0.15289290249347687, + "learning_rate": 4.4474358974358974e-05, + "loss": 0.910323486328125, + "step": 12500 + }, + { + "epoch": 11.14067684140677, + "grad_norm": 0.14922171831130981, + "learning_rate": 4.443015030946066e-05, + "loss": 0.9092740631103515, + "step": 12600 + }, + { + "epoch": 11.229152842291528, + "grad_norm": 0.1710701584815979, + "learning_rate": 4.4385941644562335e-05, + "loss": 0.909953842163086, + "step": 12700 + }, + { + "epoch": 11.317628843176289, + "grad_norm": 0.16967815160751343, + "learning_rate": 4.434173297966401e-05, + "loss": 0.9069422912597657, + "step": 12800 + }, + { + "epoch": 11.406104844061048, + "grad_norm": 0.16896069049835205, + "learning_rate": 4.4297524314765696e-05, + "loss": 0.9166646575927735, + "step": 12900 + }, + { + "epoch": 11.494580844945808, + "grad_norm": 0.16996079683303833, + "learning_rate": 4.425331564986738e-05, + "loss": 0.9114566040039063, + "step": 13000 + }, + { + "epoch": 11.58305684583057, + "grad_norm": 0.16553319990634918, + "learning_rate": 4.420910698496906e-05, + "loss": 0.9121807098388672, + "step": 13100 + }, + { + "epoch": 11.671532846715328, + "grad_norm": 0.1629258692264557, + "learning_rate": 4.4164898320070734e-05, + "loss": 0.904563217163086, + "step": 13200 + }, + { + "epoch": 11.760008847600089, + "grad_norm": 0.1660201996564865, + "learning_rate": 4.412068965517241e-05, + "loss": 0.9116962432861329, + "step": 13300 + }, + { + "epoch": 11.848484848484848, + "grad_norm": 0.16493095457553864, + "learning_rate": 4.4076480990274095e-05, + "loss": 0.9136554718017578, + "step": 13400 + }, + { + "epoch": 11.936960849369608, + "grad_norm": 0.15279296040534973, + "learning_rate": 4.403227232537578e-05, + "loss": 0.9120658874511719, + "step": 13500 + }, + { + "epoch": 12.024773280247732, + "grad_norm": 0.16151593625545502, + "learning_rate": 4.3988063660477456e-05, + "loss": 0.9155186462402344, + "step": 13600 + }, + { + "epoch": 12.113249281132493, + "grad_norm": 0.16777871549129486, + "learning_rate": 4.394385499557914e-05, + "loss": 0.9070235443115234, + "step": 13700 + }, + { + "epoch": 12.201725282017254, + "grad_norm": 0.15052072703838348, + "learning_rate": 4.389964633068082e-05, + "loss": 0.9057080078125, + "step": 13800 + }, + { + "epoch": 12.290201282902013, + "grad_norm": 0.17466743290424347, + "learning_rate": 4.3855437665782494e-05, + "loss": 0.9058401489257812, + "step": 13900 + }, + { + "epoch": 12.378677283786773, + "grad_norm": 0.17788690328598022, + "learning_rate": 4.381122900088417e-05, + "loss": 0.9058721923828125, + "step": 14000 + }, + { + "epoch": 12.467153284671532, + "grad_norm": 0.17527516186237335, + "learning_rate": 4.3767020335985855e-05, + "loss": 0.908851089477539, + "step": 14100 + }, + { + "epoch": 12.555629285556293, + "grad_norm": 0.17999336123466492, + "learning_rate": 4.372281167108754e-05, + "loss": 0.9110614013671875, + "step": 14200 + }, + { + "epoch": 12.644105286441054, + "grad_norm": 0.1635061800479889, + "learning_rate": 4.3678603006189216e-05, + "loss": 0.9081086730957031, + "step": 14300 + }, + { + "epoch": 12.732581287325813, + "grad_norm": 0.1813993752002716, + "learning_rate": 4.363439434129089e-05, + "loss": 0.9091014862060547, + "step": 14400 + }, + { + "epoch": 12.821057288210573, + "grad_norm": 0.17487457394599915, + "learning_rate": 4.359018567639258e-05, + "loss": 0.9076325988769531, + "step": 14500 + }, + { + "epoch": 12.909533289095332, + "grad_norm": 0.17149627208709717, + "learning_rate": 4.3545977011494254e-05, + "loss": 0.9064749908447266, + "step": 14600 + }, + { + "epoch": 12.998009289980093, + "grad_norm": 0.16990207135677338, + "learning_rate": 4.350176834659593e-05, + "loss": 0.911828384399414, + "step": 14700 + }, + { + "epoch": 13.085821720858217, + "grad_norm": 0.16583888232707977, + "learning_rate": 4.3458001768346594e-05, + "loss": 0.9017422485351563, + "step": 14800 + }, + { + "epoch": 13.174297721742978, + "grad_norm": 0.1644158959388733, + "learning_rate": 4.341379310344828e-05, + "loss": 0.9052355194091797, + "step": 14900 + }, + { + "epoch": 13.262773722627736, + "grad_norm": 0.1759374737739563, + "learning_rate": 4.336958443854996e-05, + "loss": 0.9027067565917969, + "step": 15000 + }, + { + "epoch": 13.351249723512497, + "grad_norm": 0.1623755842447281, + "learning_rate": 4.332537577365164e-05, + "loss": 0.9078491973876953, + "step": 15100 + }, + { + "epoch": 13.439725724397258, + "grad_norm": 0.15563324093818665, + "learning_rate": 4.3281167108753316e-05, + "loss": 0.9046826171875, + "step": 15200 + }, + { + "epoch": 13.528201725282017, + "grad_norm": 0.1762174814939499, + "learning_rate": 4.3236958443855e-05, + "loss": 0.9070060729980469, + "step": 15300 + }, + { + "epoch": 13.616677726166778, + "grad_norm": 0.1598447859287262, + "learning_rate": 4.319274977895668e-05, + "loss": 0.907843017578125, + "step": 15400 + }, + { + "epoch": 13.705153727051536, + "grad_norm": 0.17838729918003082, + "learning_rate": 4.3148541114058354e-05, + "loss": 0.9077598571777343, + "step": 15500 + }, + { + "epoch": 13.793629727936297, + "grad_norm": 0.16615167260169983, + "learning_rate": 4.310433244916004e-05, + "loss": 0.9041740417480468, + "step": 15600 + }, + { + "epoch": 13.882105728821058, + "grad_norm": 0.16463759541511536, + "learning_rate": 4.306012378426172e-05, + "loss": 0.9023047637939453, + "step": 15700 + }, + { + "epoch": 13.970581729705817, + "grad_norm": 0.1562959849834442, + "learning_rate": 4.30159151193634e-05, + "loss": 0.902835693359375, + "step": 15800 + }, + { + "epoch": 14.058394160583942, + "grad_norm": 0.16919565200805664, + "learning_rate": 4.2971706454465076e-05, + "loss": 0.8998876953125, + "step": 15900 + }, + { + "epoch": 14.146870161468701, + "grad_norm": 0.16513022780418396, + "learning_rate": 4.292749778956676e-05, + "loss": 0.9023524475097656, + "step": 16000 + }, + { + "epoch": 14.235346162353462, + "grad_norm": 0.173946812748909, + "learning_rate": 4.288328912466844e-05, + "loss": 0.8980498504638672, + "step": 16100 + }, + { + "epoch": 14.323822163238221, + "grad_norm": 0.16749872267246246, + "learning_rate": 4.2839080459770114e-05, + "loss": 0.9026957702636719, + "step": 16200 + }, + { + "epoch": 14.412298164122982, + "grad_norm": 0.17985551059246063, + "learning_rate": 4.27948717948718e-05, + "loss": 0.9012105560302734, + "step": 16300 + }, + { + "epoch": 14.500774165007742, + "grad_norm": 0.18807820975780487, + "learning_rate": 4.275066312997348e-05, + "loss": 0.9014115905761719, + "step": 16400 + }, + { + "epoch": 14.589250165892501, + "grad_norm": 0.17243777215480804, + "learning_rate": 4.270645446507516e-05, + "loss": 0.9028221893310547, + "step": 16500 + }, + { + "epoch": 14.677726166777262, + "grad_norm": 0.1674414724111557, + "learning_rate": 4.2662245800176836e-05, + "loss": 0.9017185974121094, + "step": 16600 + }, + { + "epoch": 14.766202167662021, + "grad_norm": 0.17522333562374115, + "learning_rate": 4.261803713527851e-05, + "loss": 0.8989543914794922, + "step": 16700 + }, + { + "epoch": 14.854678168546782, + "grad_norm": 0.16300654411315918, + "learning_rate": 4.2573828470380197e-05, + "loss": 0.9001253509521484, + "step": 16800 + }, + { + "epoch": 14.943154169431542, + "grad_norm": 0.1702653169631958, + "learning_rate": 4.2529619805481874e-05, + "loss": 0.9020176696777343, + "step": 16900 + }, + { + "epoch": 15.030966600309666, + "grad_norm": 0.1752340942621231, + "learning_rate": 4.2485853227232544e-05, + "loss": 0.8990335083007812, + "step": 17000 + }, + { + "epoch": 15.119442601194425, + "grad_norm": 0.17765584588050842, + "learning_rate": 4.244164456233422e-05, + "loss": 0.8885309600830078, + "step": 17100 + }, + { + "epoch": 15.207918602079186, + "grad_norm": 0.18404972553253174, + "learning_rate": 4.23974358974359e-05, + "loss": 0.8915805816650391, + "step": 17200 + }, + { + "epoch": 15.296394602963947, + "grad_norm": 0.17206765711307526, + "learning_rate": 4.235322723253758e-05, + "loss": 0.8898361968994141, + "step": 17300 + }, + { + "epoch": 15.384870603848706, + "grad_norm": 0.19998455047607422, + "learning_rate": 4.230901856763926e-05, + "loss": 0.8957837677001953, + "step": 17400 + }, + { + "epoch": 15.473346604733466, + "grad_norm": 0.19454777240753174, + "learning_rate": 4.2264809902740936e-05, + "loss": 0.8990544891357422, + "step": 17500 + }, + { + "epoch": 15.561822605618225, + "grad_norm": 0.17281410098075867, + "learning_rate": 4.222060123784262e-05, + "loss": 0.8996484375, + "step": 17600 + }, + { + "epoch": 15.650298606502986, + "grad_norm": 0.1906009018421173, + "learning_rate": 4.21763925729443e-05, + "loss": 0.9032618713378906, + "step": 17700 + }, + { + "epoch": 15.738774607387747, + "grad_norm": 0.17282316088676453, + "learning_rate": 4.213218390804598e-05, + "loss": 0.8986404418945313, + "step": 17800 + }, + { + "epoch": 15.827250608272506, + "grad_norm": 0.18802666664123535, + "learning_rate": 4.208797524314766e-05, + "loss": 0.8964502716064453, + "step": 17900 + }, + { + "epoch": 15.915726609157266, + "grad_norm": 0.19853872060775757, + "learning_rate": 4.204376657824934e-05, + "loss": 0.9032749938964844, + "step": 18000 + }, + { + "epoch": 16.003539040035392, + "grad_norm": 0.18812181055545807, + "learning_rate": 4.199955791335102e-05, + "loss": 0.8991973876953125, + "step": 18100 + }, + { + "epoch": 16.09201504092015, + "grad_norm": 0.1644710898399353, + "learning_rate": 4.1955349248452695e-05, + "loss": 0.8866680908203125, + "step": 18200 + }, + { + "epoch": 16.18049104180491, + "grad_norm": 0.1884208619594574, + "learning_rate": 4.191114058355438e-05, + "loss": 0.8872537994384766, + "step": 18300 + }, + { + "epoch": 16.26896704268967, + "grad_norm": 0.1828072965145111, + "learning_rate": 4.186693191865606e-05, + "loss": 0.8902882385253906, + "step": 18400 + }, + { + "epoch": 16.35744304357443, + "grad_norm": 0.19119146466255188, + "learning_rate": 4.182272325375774e-05, + "loss": 0.8903806304931641, + "step": 18500 + }, + { + "epoch": 16.445919044459192, + "grad_norm": 0.20727571845054626, + "learning_rate": 4.177851458885942e-05, + "loss": 0.8952965545654297, + "step": 18600 + }, + { + "epoch": 16.53439504534395, + "grad_norm": 0.18735922873020172, + "learning_rate": 4.17343059239611e-05, + "loss": 0.8870563507080078, + "step": 18700 + }, + { + "epoch": 16.62287104622871, + "grad_norm": 0.1973799169063568, + "learning_rate": 4.169009725906278e-05, + "loss": 0.8974028778076172, + "step": 18800 + }, + { + "epoch": 16.71134704711347, + "grad_norm": 0.20604746043682098, + "learning_rate": 4.1645888594164455e-05, + "loss": 0.8937057495117188, + "step": 18900 + }, + { + "epoch": 16.79982304799823, + "grad_norm": 0.18150219321250916, + "learning_rate": 4.160167992926614e-05, + "loss": 0.8935442352294922, + "step": 19000 + }, + { + "epoch": 16.888299048882992, + "grad_norm": 0.18340304493904114, + "learning_rate": 4.155747126436782e-05, + "loss": 0.8885797119140625, + "step": 19100 + }, + { + "epoch": 16.97677504976775, + "grad_norm": 0.2073577493429184, + "learning_rate": 4.15132625994695e-05, + "loss": 0.8951002502441406, + "step": 19200 + }, + { + "epoch": 17.064587480645876, + "grad_norm": 0.17697007954120636, + "learning_rate": 4.146949602122016e-05, + "loss": 0.8879679870605469, + "step": 19300 + }, + { + "epoch": 17.153063481530634, + "grad_norm": 0.20899821817874908, + "learning_rate": 4.142528735632184e-05, + "loss": 0.8794329833984375, + "step": 19400 + }, + { + "epoch": 17.241539482415394, + "grad_norm": 0.18147091567516327, + "learning_rate": 4.138107869142352e-05, + "loss": 0.8802722930908203, + "step": 19500 + }, + { + "epoch": 17.330015483300155, + "grad_norm": 0.20257830619812012, + "learning_rate": 4.13368700265252e-05, + "loss": 0.8870145416259766, + "step": 19600 + }, + { + "epoch": 17.418491484184916, + "grad_norm": 0.20231416821479797, + "learning_rate": 4.1292661361626885e-05, + "loss": 0.8838448333740234, + "step": 19700 + }, + { + "epoch": 17.506967485069676, + "grad_norm": 0.18214623630046844, + "learning_rate": 4.124845269672856e-05, + "loss": 0.8879763793945312, + "step": 19800 + }, + { + "epoch": 17.595443485954434, + "grad_norm": 0.18666088581085205, + "learning_rate": 4.120424403183024e-05, + "loss": 0.8885836029052734, + "step": 19900 + }, + { + "epoch": 17.683919486839194, + "grad_norm": 0.20308583974838257, + "learning_rate": 4.116003536693192e-05, + "loss": 0.8843843078613282, + "step": 20000 + }, + { + "epoch": 17.772395487723955, + "grad_norm": 0.18726830184459686, + "learning_rate": 4.11158267020336e-05, + "loss": 0.8865486145019531, + "step": 20100 + }, + { + "epoch": 17.860871488608716, + "grad_norm": 0.17878851294517517, + "learning_rate": 4.107161803713528e-05, + "loss": 0.8883515930175782, + "step": 20200 + }, + { + "epoch": 17.949347489493476, + "grad_norm": 0.1849307119846344, + "learning_rate": 4.102740937223696e-05, + "loss": 0.8914216613769531, + "step": 20300 + }, + { + "epoch": 18.0371599203716, + "grad_norm": 0.22315239906311035, + "learning_rate": 4.0983200707338645e-05, + "loss": 0.88252197265625, + "step": 20400 + }, + { + "epoch": 18.12563592125636, + "grad_norm": 0.18446321785449982, + "learning_rate": 4.093899204244032e-05, + "loss": 0.8717878723144531, + "step": 20500 + }, + { + "epoch": 18.214111922141118, + "grad_norm": 0.21541251242160797, + "learning_rate": 4.0894783377542e-05, + "loss": 0.8750727844238281, + "step": 20600 + }, + { + "epoch": 18.30258792302588, + "grad_norm": 0.22268827259540558, + "learning_rate": 4.085057471264368e-05, + "loss": 0.8760640716552734, + "step": 20700 + }, + { + "epoch": 18.39106392391064, + "grad_norm": 0.2207673043012619, + "learning_rate": 4.080636604774536e-05, + "loss": 0.876912841796875, + "step": 20800 + }, + { + "epoch": 18.4795399247954, + "grad_norm": 0.21988292038440704, + "learning_rate": 4.076215738284704e-05, + "loss": 0.8794302368164062, + "step": 20900 + }, + { + "epoch": 18.56801592568016, + "grad_norm": 0.2057323008775711, + "learning_rate": 4.0717948717948714e-05, + "loss": 0.8795650482177735, + "step": 21000 + }, + { + "epoch": 18.656491926564918, + "grad_norm": 0.19854794442653656, + "learning_rate": 4.0673740053050405e-05, + "loss": 0.8824103546142578, + "step": 21100 + }, + { + "epoch": 18.74496792744968, + "grad_norm": 0.2183123230934143, + "learning_rate": 4.062953138815208e-05, + "loss": 0.8792383575439453, + "step": 21200 + }, + { + "epoch": 18.83344392833444, + "grad_norm": 0.20326419174671173, + "learning_rate": 4.058532272325376e-05, + "loss": 0.8834226989746093, + "step": 21300 + }, + { + "epoch": 18.9219199292192, + "grad_norm": 0.20735788345336914, + "learning_rate": 4.054111405835544e-05, + "loss": 0.8820342254638672, + "step": 21400 + }, + { + "epoch": 19.009732360097324, + "grad_norm": 0.2023264467716217, + "learning_rate": 4.04973474801061e-05, + "loss": 0.8843944549560547, + "step": 21500 + }, + { + "epoch": 19.098208360982085, + "grad_norm": 0.21148885786533356, + "learning_rate": 4.045313881520778e-05, + "loss": 0.8647132110595703, + "step": 21600 + }, + { + "epoch": 19.186684361866842, + "grad_norm": 0.2251083254814148, + "learning_rate": 4.040893015030947e-05, + "loss": 0.866364974975586, + "step": 21700 + }, + { + "epoch": 19.275160362751603, + "grad_norm": 0.23524972796440125, + "learning_rate": 4.0364721485411144e-05, + "loss": 0.8736127471923828, + "step": 21800 + }, + { + "epoch": 19.363636363636363, + "grad_norm": 0.21772760152816772, + "learning_rate": 4.032051282051282e-05, + "loss": 0.8692568206787109, + "step": 21900 + }, + { + "epoch": 19.452112364521124, + "grad_norm": 0.2125358134508133, + "learning_rate": 4.0276304155614505e-05, + "loss": 0.8706926727294921, + "step": 22000 + }, + { + "epoch": 19.540588365405885, + "grad_norm": 0.22768475115299225, + "learning_rate": 4.023209549071618e-05, + "loss": 0.8674411010742188, + "step": 22100 + }, + { + "epoch": 19.629064366290642, + "grad_norm": 0.2211151272058487, + "learning_rate": 4.018788682581786e-05, + "loss": 0.8749802398681641, + "step": 22200 + }, + { + "epoch": 19.717540367175403, + "grad_norm": 0.21814538538455963, + "learning_rate": 4.014367816091954e-05, + "loss": 0.8754036712646485, + "step": 22300 + }, + { + "epoch": 19.806016368060163, + "grad_norm": 0.2030419558286667, + "learning_rate": 4.0099469496021226e-05, + "loss": 0.8714677429199219, + "step": 22400 + }, + { + "epoch": 19.894492368944924, + "grad_norm": 0.21472303569316864, + "learning_rate": 4.0055260831122904e-05, + "loss": 0.8727165222167969, + "step": 22500 + }, + { + "epoch": 19.982968369829685, + "grad_norm": 0.20911096036434174, + "learning_rate": 4.001105216622458e-05, + "loss": 0.8781427764892578, + "step": 22600 + }, + { + "epoch": 20.07078080070781, + "grad_norm": 0.2304856926202774, + "learning_rate": 3.9966843501326264e-05, + "loss": 0.8589347076416015, + "step": 22700 + }, + { + "epoch": 20.15925680159257, + "grad_norm": 0.23650145530700684, + "learning_rate": 3.992263483642794e-05, + "loss": 0.8598684692382812, + "step": 22800 + }, + { + "epoch": 20.247732802477326, + "grad_norm": 0.21773482859134674, + "learning_rate": 3.987842617152962e-05, + "loss": 0.8605601501464843, + "step": 22900 + }, + { + "epoch": 20.336208803362087, + "grad_norm": 0.2237112671136856, + "learning_rate": 3.98342175066313e-05, + "loss": 0.8617141723632813, + "step": 23000 + }, + { + "epoch": 20.424684804246848, + "grad_norm": 0.24452048540115356, + "learning_rate": 3.9790008841732986e-05, + "loss": 0.8622699737548828, + "step": 23100 + }, + { + "epoch": 20.51316080513161, + "grad_norm": 0.21587280929088593, + "learning_rate": 3.974580017683466e-05, + "loss": 0.8637493896484375, + "step": 23200 + }, + { + "epoch": 20.60163680601637, + "grad_norm": 0.2406671941280365, + "learning_rate": 3.970159151193634e-05, + "loss": 0.859559555053711, + "step": 23300 + }, + { + "epoch": 20.690112806901126, + "grad_norm": 0.22845898568630219, + "learning_rate": 3.9657382847038024e-05, + "loss": 0.8662923431396484, + "step": 23400 + }, + { + "epoch": 20.778588807785887, + "grad_norm": 0.24683597683906555, + "learning_rate": 3.96131741821397e-05, + "loss": 0.8673475646972656, + "step": 23500 + }, + { + "epoch": 20.867064808670648, + "grad_norm": 0.22459226846694946, + "learning_rate": 3.956896551724138e-05, + "loss": 0.8640863037109375, + "step": 23600 + }, + { + "epoch": 20.95554080955541, + "grad_norm": 0.23616963624954224, + "learning_rate": 3.952475685234306e-05, + "loss": 0.8678861236572266, + "step": 23700 + }, + { + "epoch": 21.043353240433532, + "grad_norm": 0.22973845899105072, + "learning_rate": 3.9480990274093725e-05, + "loss": 0.8580598449707031, + "step": 23800 + }, + { + "epoch": 21.131829241318293, + "grad_norm": 0.2424720972776413, + "learning_rate": 3.94367816091954e-05, + "loss": 0.8460955810546875, + "step": 23900 + }, + { + "epoch": 21.220305242203054, + "grad_norm": 0.2528146505355835, + "learning_rate": 3.9392572944297086e-05, + "loss": 0.8499996185302734, + "step": 24000 + }, + { + "epoch": 21.30878124308781, + "grad_norm": 0.2518126666545868, + "learning_rate": 3.9348364279398763e-05, + "loss": 0.8534349060058594, + "step": 24100 + }, + { + "epoch": 21.39725724397257, + "grad_norm": 0.2305818349123001, + "learning_rate": 3.930415561450044e-05, + "loss": 0.84900146484375, + "step": 24200 + }, + { + "epoch": 21.485733244857332, + "grad_norm": 0.25653600692749023, + "learning_rate": 3.9259946949602124e-05, + "loss": 0.8542990875244141, + "step": 24300 + }, + { + "epoch": 21.574209245742093, + "grad_norm": 0.2712801992893219, + "learning_rate": 3.92157382847038e-05, + "loss": 0.8558815002441407, + "step": 24400 + }, + { + "epoch": 21.662685246626854, + "grad_norm": 0.273328959941864, + "learning_rate": 3.9171529619805485e-05, + "loss": 0.8555754089355468, + "step": 24500 + }, + { + "epoch": 21.75116124751161, + "grad_norm": 0.2668614089488983, + "learning_rate": 3.912732095490716e-05, + "loss": 0.8587675476074219, + "step": 24600 + }, + { + "epoch": 21.83963724839637, + "grad_norm": 0.24395836889743805, + "learning_rate": 3.9083112290008846e-05, + "loss": 0.8572028350830078, + "step": 24700 + }, + { + "epoch": 21.928113249281132, + "grad_norm": 0.24808812141418457, + "learning_rate": 3.903890362511052e-05, + "loss": 0.8579219055175781, + "step": 24800 + }, + { + "epoch": 22.015925680159256, + "grad_norm": 0.2587817311286926, + "learning_rate": 3.89946949602122e-05, + "loss": 0.8512050628662109, + "step": 24900 + }, + { + "epoch": 22.104401681044017, + "grad_norm": 0.26175108551979065, + "learning_rate": 3.8950486295313884e-05, + "loss": 0.8361199188232422, + "step": 25000 + }, + { + "epoch": 22.192877681928778, + "grad_norm": 0.2715345025062561, + "learning_rate": 3.890627763041556e-05, + "loss": 0.8399204254150391, + "step": 25100 + }, + { + "epoch": 22.28135368281354, + "grad_norm": 0.27675682306289673, + "learning_rate": 3.8862068965517245e-05, + "loss": 0.8378430938720703, + "step": 25200 + }, + { + "epoch": 22.369829683698295, + "grad_norm": 0.26540565490722656, + "learning_rate": 3.881786030061892e-05, + "loss": 0.8397164916992188, + "step": 25300 + }, + { + "epoch": 22.458305684583056, + "grad_norm": 0.2754775285720825, + "learning_rate": 3.8773651635720606e-05, + "loss": 0.8450184631347656, + "step": 25400 + }, + { + "epoch": 22.546781685467817, + "grad_norm": 0.2393341213464737, + "learning_rate": 3.872944297082228e-05, + "loss": 0.8427618408203125, + "step": 25500 + }, + { + "epoch": 22.635257686352578, + "grad_norm": 0.23895791172981262, + "learning_rate": 3.868523430592396e-05, + "loss": 0.8457352447509766, + "step": 25600 + }, + { + "epoch": 22.72373368723734, + "grad_norm": 0.26955941319465637, + "learning_rate": 3.8641025641025644e-05, + "loss": 0.849469223022461, + "step": 25700 + }, + { + "epoch": 22.812209688122095, + "grad_norm": 0.23746059834957123, + "learning_rate": 3.859681697612732e-05, + "loss": 0.8469708251953125, + "step": 25800 + }, + { + "epoch": 22.900685689006856, + "grad_norm": 0.2649519145488739, + "learning_rate": 3.8552608311229005e-05, + "loss": 0.849559326171875, + "step": 25900 + }, + { + "epoch": 22.989161689891617, + "grad_norm": 0.27285081148147583, + "learning_rate": 3.850839964633068e-05, + "loss": 0.8485184478759765, + "step": 26000 + }, + { + "epoch": 23.07697412076974, + "grad_norm": 0.27895936369895935, + "learning_rate": 3.8464633068081345e-05, + "loss": 0.8252901458740234, + "step": 26100 + }, + { + "epoch": 23.1654501216545, + "grad_norm": 0.2652367055416107, + "learning_rate": 3.842042440318302e-05, + "loss": 0.8263906097412109, + "step": 26200 + }, + { + "epoch": 23.253926122539262, + "grad_norm": 0.2835598886013031, + "learning_rate": 3.8376215738284706e-05, + "loss": 0.8287677001953125, + "step": 26300 + }, + { + "epoch": 23.342402123424023, + "grad_norm": 0.2834433615207672, + "learning_rate": 3.833200707338638e-05, + "loss": 0.8309012603759766, + "step": 26400 + }, + { + "epoch": 23.43087812430878, + "grad_norm": 0.2998100817203522, + "learning_rate": 3.828779840848807e-05, + "loss": 0.8311166381835937, + "step": 26500 + }, + { + "epoch": 23.51935412519354, + "grad_norm": 0.29382187128067017, + "learning_rate": 3.8243589743589744e-05, + "loss": 0.8325238037109375, + "step": 26600 + }, + { + "epoch": 23.6078301260783, + "grad_norm": 0.2950701415538788, + "learning_rate": 3.819938107869143e-05, + "loss": 0.8368535614013672, + "step": 26700 + }, + { + "epoch": 23.696306126963062, + "grad_norm": 0.287801057100296, + "learning_rate": 3.8155172413793105e-05, + "loss": 0.833930435180664, + "step": 26800 + }, + { + "epoch": 23.784782127847823, + "grad_norm": 0.33100536465644836, + "learning_rate": 3.811096374889478e-05, + "loss": 0.8386001586914062, + "step": 26900 + }, + { + "epoch": 23.87325812873258, + "grad_norm": 0.2911369800567627, + "learning_rate": 3.8066755083996466e-05, + "loss": 0.8410533905029297, + "step": 27000 + }, + { + "epoch": 23.96173412961734, + "grad_norm": 0.26980099081993103, + "learning_rate": 3.802254641909814e-05, + "loss": 0.8360975646972656, + "step": 27100 + }, + { + "epoch": 24.049546560495465, + "grad_norm": 0.3001425862312317, + "learning_rate": 3.797833775419983e-05, + "loss": 0.8234864044189453, + "step": 27200 + }, + { + "epoch": 24.138022561380225, + "grad_norm": 0.27798378467559814, + "learning_rate": 3.7934129089301504e-05, + "loss": 0.8135331726074219, + "step": 27300 + }, + { + "epoch": 24.226498562264986, + "grad_norm": 0.2736954689025879, + "learning_rate": 3.788992042440319e-05, + "loss": 0.8113047027587891, + "step": 27400 + }, + { + "epoch": 24.314974563149747, + "grad_norm": 0.29235804080963135, + "learning_rate": 3.7845711759504865e-05, + "loss": 0.8171870422363281, + "step": 27500 + }, + { + "epoch": 24.403450564034507, + "grad_norm": 0.2878233790397644, + "learning_rate": 3.780150309460654e-05, + "loss": 0.8170029449462891, + "step": 27600 + }, + { + "epoch": 24.491926564919265, + "grad_norm": 0.31602925062179565, + "learning_rate": 3.7757294429708226e-05, + "loss": 0.8223928833007812, + "step": 27700 + }, + { + "epoch": 24.580402565804025, + "grad_norm": 0.3145372271537781, + "learning_rate": 3.77130857648099e-05, + "loss": 0.8257860565185546, + "step": 27800 + }, + { + "epoch": 24.668878566688786, + "grad_norm": 0.30716991424560547, + "learning_rate": 3.7668877099911587e-05, + "loss": 0.8240725708007812, + "step": 27900 + }, + { + "epoch": 24.757354567573547, + "grad_norm": 0.28368160128593445, + "learning_rate": 3.7624668435013264e-05, + "loss": 0.825384521484375, + "step": 28000 + }, + { + "epoch": 24.845830568458307, + "grad_norm": 0.2867664694786072, + "learning_rate": 3.758045977011495e-05, + "loss": 0.8270760345458984, + "step": 28100 + }, + { + "epoch": 24.934306569343065, + "grad_norm": 0.28817129135131836, + "learning_rate": 3.7536251105216624e-05, + "loss": 0.8286974334716797, + "step": 28200 + }, + { + "epoch": 25.02211900022119, + "grad_norm": 0.3106354773044586, + "learning_rate": 3.749248452696729e-05, + "loss": 0.82120849609375, + "step": 28300 + }, + { + "epoch": 25.11059500110595, + "grad_norm": 0.3304692506790161, + "learning_rate": 3.7448275862068965e-05, + "loss": 0.8016901397705078, + "step": 28400 + }, + { + "epoch": 25.19907100199071, + "grad_norm": 0.3065616488456726, + "learning_rate": 3.740406719717064e-05, + "loss": 0.8027448272705078, + "step": 28500 + }, + { + "epoch": 25.28754700287547, + "grad_norm": 0.3456852436065674, + "learning_rate": 3.735985853227233e-05, + "loss": 0.8046049499511718, + "step": 28600 + }, + { + "epoch": 25.37602300376023, + "grad_norm": 0.3011663556098938, + "learning_rate": 3.731564986737401e-05, + "loss": 0.8079199981689453, + "step": 28700 + }, + { + "epoch": 25.46449900464499, + "grad_norm": 0.3659413158893585, + "learning_rate": 3.7271441202475687e-05, + "loss": 0.8079922485351563, + "step": 28800 + }, + { + "epoch": 25.55297500552975, + "grad_norm": 0.3281838595867157, + "learning_rate": 3.7227232537577364e-05, + "loss": 0.8134046173095704, + "step": 28900 + }, + { + "epoch": 25.64145100641451, + "grad_norm": 0.3106602132320404, + "learning_rate": 3.718302387267905e-05, + "loss": 0.8104205322265625, + "step": 29000 + }, + { + "epoch": 25.72992700729927, + "grad_norm": 0.3320154845714569, + "learning_rate": 3.7138815207780725e-05, + "loss": 0.8142304992675782, + "step": 29100 + }, + { + "epoch": 25.81840300818403, + "grad_norm": 0.3355977535247803, + "learning_rate": 3.70946065428824e-05, + "loss": 0.8125243377685547, + "step": 29200 + }, + { + "epoch": 25.90687900906879, + "grad_norm": 0.3472290635108948, + "learning_rate": 3.7050397877984085e-05, + "loss": 0.8146660614013672, + "step": 29300 + }, + { + "epoch": 25.99535500995355, + "grad_norm": 0.31780678033828735, + "learning_rate": 3.700618921308577e-05, + "loss": 0.8169705200195313, + "step": 29400 + }, + { + "epoch": 26.083167440831673, + "grad_norm": 0.3046151101589203, + "learning_rate": 3.6961980548187446e-05, + "loss": 0.7894915008544922, + "step": 29500 + }, + { + "epoch": 26.171643441716434, + "grad_norm": 0.3560829162597656, + "learning_rate": 3.6917771883289123e-05, + "loss": 0.7867289733886719, + "step": 29600 + }, + { + "epoch": 26.260119442601194, + "grad_norm": 0.33036884665489197, + "learning_rate": 3.687356321839081e-05, + "loss": 0.7914912414550781, + "step": 29700 + }, + { + "epoch": 26.348595443485955, + "grad_norm": 0.3302215039730072, + "learning_rate": 3.6829354553492484e-05, + "loss": 0.7926998901367187, + "step": 29800 + }, + { + "epoch": 26.437071444370716, + "grad_norm": 0.33766239881515503, + "learning_rate": 3.678514588859416e-05, + "loss": 0.7958551788330078, + "step": 29900 + }, + { + "epoch": 26.525547445255473, + "grad_norm": 0.34900912642478943, + "learning_rate": 3.6740937223695845e-05, + "loss": 0.7958287811279297, + "step": 30000 + }, + { + "epoch": 26.614023446140234, + "grad_norm": 0.3290475010871887, + "learning_rate": 3.669672855879753e-05, + "loss": 0.7994923400878906, + "step": 30100 + }, + { + "epoch": 26.702499447024994, + "grad_norm": 0.3304896950721741, + "learning_rate": 3.6652519893899206e-05, + "loss": 0.8000531005859375, + "step": 30200 + }, + { + "epoch": 26.790975447909755, + "grad_norm": 0.32132837176322937, + "learning_rate": 3.660831122900088e-05, + "loss": 0.8006639862060547, + "step": 30300 + }, + { + "epoch": 26.879451448794516, + "grad_norm": 0.3341081142425537, + "learning_rate": 3.656410256410257e-05, + "loss": 0.8037942504882812, + "step": 30400 + }, + { + "epoch": 26.967927449679273, + "grad_norm": 0.3406025171279907, + "learning_rate": 3.6519893899204244e-05, + "loss": 0.8009793853759766, + "step": 30500 + }, + { + "epoch": 27.0557398805574, + "grad_norm": 0.3396868109703064, + "learning_rate": 3.647568523430592e-05, + "loss": 0.7846424865722657, + "step": 30600 + }, + { + "epoch": 27.144215881442157, + "grad_norm": 0.33319470286369324, + "learning_rate": 3.6431476569407605e-05, + "loss": 0.7724665832519532, + "step": 30700 + }, + { + "epoch": 27.232691882326918, + "grad_norm": 0.38071826100349426, + "learning_rate": 3.638726790450929e-05, + "loss": 0.7791647338867187, + "step": 30800 + }, + { + "epoch": 27.32116788321168, + "grad_norm": 0.3640372157096863, + "learning_rate": 3.6343059239610966e-05, + "loss": 0.778485107421875, + "step": 30900 + }, + { + "epoch": 27.40964388409644, + "grad_norm": 0.34701183438301086, + "learning_rate": 3.629885057471264e-05, + "loss": 0.7812682342529297, + "step": 31000 + }, + { + "epoch": 27.4981198849812, + "grad_norm": 0.34723395109176636, + "learning_rate": 3.625464190981433e-05, + "loss": 0.7816720581054688, + "step": 31100 + }, + { + "epoch": 27.586595885865957, + "grad_norm": 0.3967572748661041, + "learning_rate": 3.6210433244916004e-05, + "loss": 0.7825845336914062, + "step": 31200 + }, + { + "epoch": 27.675071886750718, + "grad_norm": 0.36156365275382996, + "learning_rate": 3.616622458001768e-05, + "loss": 0.7875003814697266, + "step": 31300 + }, + { + "epoch": 27.76354788763548, + "grad_norm": 0.37152451276779175, + "learning_rate": 3.6122015915119365e-05, + "loss": 0.7848563385009766, + "step": 31400 + }, + { + "epoch": 27.85202388852024, + "grad_norm": 0.3751819431781769, + "learning_rate": 3.607780725022105e-05, + "loss": 0.7901625061035156, + "step": 31500 + }, + { + "epoch": 27.940499889405, + "grad_norm": 0.32409200072288513, + "learning_rate": 3.6033598585322726e-05, + "loss": 0.7916508483886718, + "step": 31600 + }, + { + "epoch": 28.028312320283124, + "grad_norm": 0.36621779203414917, + "learning_rate": 3.59893899204244e-05, + "loss": 0.7814656066894531, + "step": 31700 + }, + { + "epoch": 28.116788321167885, + "grad_norm": 0.35782715678215027, + "learning_rate": 3.594518125552609e-05, + "loss": 0.7565266418457032, + "step": 31800 + }, + { + "epoch": 28.205264322052642, + "grad_norm": 0.34983065724372864, + "learning_rate": 3.5900972590627764e-05, + "loss": 0.7589649963378906, + "step": 31900 + }, + { + "epoch": 28.293740322937403, + "grad_norm": 0.36476004123687744, + "learning_rate": 3.585676392572945e-05, + "loss": 0.7618669891357421, + "step": 32000 + }, + { + "epoch": 28.382216323822163, + "grad_norm": 0.3663191795349121, + "learning_rate": 3.5812555260831125e-05, + "loss": 0.768099136352539, + "step": 32100 + }, + { + "epoch": 28.470692324706924, + "grad_norm": 0.3572807312011719, + "learning_rate": 3.576834659593281e-05, + "loss": 0.7697807312011719, + "step": 32200 + }, + { + "epoch": 28.559168325591685, + "grad_norm": 0.39800935983657837, + "learning_rate": 3.5724580017683465e-05, + "loss": 0.7714015960693359, + "step": 32300 + }, + { + "epoch": 28.647644326476442, + "grad_norm": 0.3792218863964081, + "learning_rate": 3.568037135278515e-05, + "loss": 0.7737385559082032, + "step": 32400 + }, + { + "epoch": 28.736120327361203, + "grad_norm": 0.4109075665473938, + "learning_rate": 3.5636162687886826e-05, + "loss": 0.7772123718261719, + "step": 32500 + }, + { + "epoch": 28.824596328245963, + "grad_norm": 0.40446004271507263, + "learning_rate": 3.55919540229885e-05, + "loss": 0.7722319030761718, + "step": 32600 + }, + { + "epoch": 28.913072329130724, + "grad_norm": 0.39553946256637573, + "learning_rate": 3.554774535809019e-05, + "loss": 0.7767266082763672, + "step": 32700 + }, + { + "epoch": 29.000884760008848, + "grad_norm": 0.3675474226474762, + "learning_rate": 3.550397877984085e-05, + "loss": 0.7800326538085938, + "step": 32800 + }, + { + "epoch": 29.08936076089361, + "grad_norm": 0.37354156374931335, + "learning_rate": 3.5459770114942534e-05, + "loss": 0.7407066345214843, + "step": 32900 + }, + { + "epoch": 29.17783676177837, + "grad_norm": 0.3970542550086975, + "learning_rate": 3.541556145004421e-05, + "loss": 0.7467523956298828, + "step": 33000 + }, + { + "epoch": 29.266312762663127, + "grad_norm": 0.3625730872154236, + "learning_rate": 3.537135278514589e-05, + "loss": 0.7477723693847657, + "step": 33100 + }, + { + "epoch": 29.354788763547887, + "grad_norm": 0.37132611870765686, + "learning_rate": 3.532714412024757e-05, + "loss": 0.7502822875976562, + "step": 33200 + }, + { + "epoch": 29.443264764432648, + "grad_norm": 0.3668833374977112, + "learning_rate": 3.528293545534925e-05, + "loss": 0.7570280456542968, + "step": 33300 + }, + { + "epoch": 29.53174076531741, + "grad_norm": 0.404186874628067, + "learning_rate": 3.523872679045093e-05, + "loss": 0.7576876831054687, + "step": 33400 + }, + { + "epoch": 29.62021676620217, + "grad_norm": 0.407461017370224, + "learning_rate": 3.519451812555261e-05, + "loss": 0.7606333923339844, + "step": 33500 + }, + { + "epoch": 29.708692767086927, + "grad_norm": 0.4091641902923584, + "learning_rate": 3.5150309460654294e-05, + "loss": 0.7598370361328125, + "step": 33600 + }, + { + "epoch": 29.797168767971687, + "grad_norm": 0.36642369627952576, + "learning_rate": 3.510610079575597e-05, + "loss": 0.7617308807373047, + "step": 33700 + }, + { + "epoch": 29.885644768856448, + "grad_norm": 0.3767990171909332, + "learning_rate": 3.506189213085765e-05, + "loss": 0.760002670288086, + "step": 33800 + }, + { + "epoch": 29.97412076974121, + "grad_norm": 0.3992450535297394, + "learning_rate": 3.5017683465959325e-05, + "loss": 0.7659886932373047, + "step": 33900 + }, + { + "epoch": 30.061933200619332, + "grad_norm": 0.38657036423683167, + "learning_rate": 3.497347480106101e-05, + "loss": 0.7397030639648438, + "step": 34000 + }, + { + "epoch": 30.150409201504093, + "grad_norm": 0.40928229689598083, + "learning_rate": 3.492926613616269e-05, + "loss": 0.7280159759521484, + "step": 34100 + }, + { + "epoch": 30.23888520238885, + "grad_norm": 0.41609957814216614, + "learning_rate": 3.488505747126437e-05, + "loss": 0.7327291107177735, + "step": 34200 + }, + { + "epoch": 30.32736120327361, + "grad_norm": 0.3990429639816284, + "learning_rate": 3.4840848806366047e-05, + "loss": 0.7359205627441406, + "step": 34300 + }, + { + "epoch": 30.41583720415837, + "grad_norm": 0.40403324365615845, + "learning_rate": 3.479664014146773e-05, + "loss": 0.73650390625, + "step": 34400 + }, + { + "epoch": 30.504313205043132, + "grad_norm": 0.42696642875671387, + "learning_rate": 3.475243147656941e-05, + "loss": 0.7416681671142578, + "step": 34500 + }, + { + "epoch": 30.592789205927893, + "grad_norm": 0.3891199231147766, + "learning_rate": 3.4708222811671085e-05, + "loss": 0.742286605834961, + "step": 34600 + }, + { + "epoch": 30.68126520681265, + "grad_norm": 0.3660706877708435, + "learning_rate": 3.466401414677277e-05, + "loss": 0.7444020080566406, + "step": 34700 + }, + { + "epoch": 30.76974120769741, + "grad_norm": 0.43280747532844543, + "learning_rate": 3.461980548187445e-05, + "loss": 0.7461125183105469, + "step": 34800 + }, + { + "epoch": 30.85821720858217, + "grad_norm": 0.4279727041721344, + "learning_rate": 3.457559681697613e-05, + "loss": 0.7497645568847656, + "step": 34900 + }, + { + "epoch": 30.946693209466932, + "grad_norm": 0.4162921905517578, + "learning_rate": 3.4531388152077806e-05, + "loss": 0.7478341674804687, + "step": 35000 + }, + { + "epoch": 31.034505640345056, + "grad_norm": 0.4011857211589813, + "learning_rate": 3.448762157382847e-05, + "loss": 0.7373168182373047, + "step": 35100 + }, + { + "epoch": 31.122981641229817, + "grad_norm": 0.42476192116737366, + "learning_rate": 3.444341290893015e-05, + "loss": 0.714128646850586, + "step": 35200 + }, + { + "epoch": 31.211457642114578, + "grad_norm": 0.4272063672542572, + "learning_rate": 3.439920424403183e-05, + "loss": 0.717328872680664, + "step": 35300 + }, + { + "epoch": 31.299933642999335, + "grad_norm": 0.39419060945510864, + "learning_rate": 3.4354995579133514e-05, + "loss": 0.7182811737060547, + "step": 35400 + }, + { + "epoch": 31.388409643884096, + "grad_norm": 0.4092519283294678, + "learning_rate": 3.431078691423519e-05, + "loss": 0.7223808288574218, + "step": 35500 + }, + { + "epoch": 31.476885644768856, + "grad_norm": 0.45683449506759644, + "learning_rate": 3.4266578249336875e-05, + "loss": 0.7236460876464844, + "step": 35600 + }, + { + "epoch": 31.565361645653617, + "grad_norm": 0.4914647936820984, + "learning_rate": 3.422236958443855e-05, + "loss": 0.728529052734375, + "step": 35700 + }, + { + "epoch": 31.653837646538378, + "grad_norm": 0.439372718334198, + "learning_rate": 3.417816091954023e-05, + "loss": 0.7269135284423828, + "step": 35800 + }, + { + "epoch": 31.742313647423135, + "grad_norm": 0.488553911447525, + "learning_rate": 3.413395225464191e-05, + "loss": 0.7319352722167969, + "step": 35900 + }, + { + "epoch": 31.830789648307896, + "grad_norm": 0.43236035108566284, + "learning_rate": 3.408974358974359e-05, + "loss": 0.7336878204345703, + "step": 36000 + }, + { + "epoch": 31.919265649192656, + "grad_norm": 0.42669814825057983, + "learning_rate": 3.4045534924845274e-05, + "loss": 0.7357192993164062, + "step": 36100 + }, + { + "epoch": 32.007078080070784, + "grad_norm": 0.40464460849761963, + "learning_rate": 3.400132625994695e-05, + "loss": 0.7324215698242188, + "step": 36200 + }, + { + "epoch": 32.09555408095554, + "grad_norm": 0.4362545311450958, + "learning_rate": 3.3957117595048635e-05, + "loss": 0.6976793670654297, + "step": 36300 + }, + { + "epoch": 32.1840300818403, + "grad_norm": 0.46484723687171936, + "learning_rate": 3.391290893015031e-05, + "loss": 0.6972021484375, + "step": 36400 + }, + { + "epoch": 32.27250608272506, + "grad_norm": 0.43313083052635193, + "learning_rate": 3.386870026525199e-05, + "loss": 0.7049392700195313, + "step": 36500 + }, + { + "epoch": 32.36098208360982, + "grad_norm": 0.437752366065979, + "learning_rate": 3.3824491600353666e-05, + "loss": 0.7091526794433594, + "step": 36600 + }, + { + "epoch": 32.44945808449458, + "grad_norm": 0.44550085067749023, + "learning_rate": 3.378028293545535e-05, + "loss": 0.7121316528320313, + "step": 36700 + }, + { + "epoch": 32.53793408537934, + "grad_norm": 0.46052590012550354, + "learning_rate": 3.3736074270557034e-05, + "loss": 0.7150274658203125, + "step": 36800 + }, + { + "epoch": 32.6264100862641, + "grad_norm": 0.4344913065433502, + "learning_rate": 3.369186560565871e-05, + "loss": 0.7130059814453125, + "step": 36900 + }, + { + "epoch": 32.71488608714886, + "grad_norm": 0.45924630761146545, + "learning_rate": 3.364765694076039e-05, + "loss": 0.7156332397460937, + "step": 37000 + }, + { + "epoch": 32.80336208803362, + "grad_norm": 0.41177231073379517, + "learning_rate": 3.360344827586207e-05, + "loss": 0.7184346008300782, + "step": 37100 + }, + { + "epoch": 32.891838088918384, + "grad_norm": 0.44688835740089417, + "learning_rate": 3.355923961096375e-05, + "loss": 0.7201016235351563, + "step": 37200 + }, + { + "epoch": 32.980314089803144, + "grad_norm": 0.4971197545528412, + "learning_rate": 3.3515030946065426e-05, + "loss": 0.7191078186035156, + "step": 37300 + }, + { + "epoch": 33.06812652068127, + "grad_norm": 0.47201091051101685, + "learning_rate": 3.347126436781609e-05, + "loss": 0.6914530944824219, + "step": 37400 + }, + { + "epoch": 33.15660252156602, + "grad_norm": 0.4473711848258972, + "learning_rate": 3.342705570291777e-05, + "loss": 0.6855306243896484, + "step": 37500 + }, + { + "epoch": 33.24507852245078, + "grad_norm": 0.4745553135871887, + "learning_rate": 3.338284703801946e-05, + "loss": 0.6888325500488282, + "step": 37600 + }, + { + "epoch": 33.33355452333554, + "grad_norm": 0.45796144008636475, + "learning_rate": 3.3338638373121134e-05, + "loss": 0.6924916076660156, + "step": 37700 + }, + { + "epoch": 33.422030524220304, + "grad_norm": 0.47769099473953247, + "learning_rate": 3.329442970822281e-05, + "loss": 0.6937997436523438, + "step": 37800 + }, + { + "epoch": 33.510506525105065, + "grad_norm": 0.4637518525123596, + "learning_rate": 3.3250221043324495e-05, + "loss": 0.6975637817382813, + "step": 37900 + }, + { + "epoch": 33.598982525989825, + "grad_norm": 0.47370946407318115, + "learning_rate": 3.320601237842617e-05, + "loss": 0.6985407257080078, + "step": 38000 + }, + { + "epoch": 33.687458526874586, + "grad_norm": 0.467692106962204, + "learning_rate": 3.316180371352785e-05, + "loss": 0.7032517242431641, + "step": 38100 + }, + { + "epoch": 33.77593452775935, + "grad_norm": 0.4691486060619354, + "learning_rate": 3.311759504862953e-05, + "loss": 0.7019402313232422, + "step": 38200 + }, + { + "epoch": 33.86441052864411, + "grad_norm": 0.465666264295578, + "learning_rate": 3.307338638373122e-05, + "loss": 0.7065095520019531, + "step": 38300 + }, + { + "epoch": 33.95288652952887, + "grad_norm": 0.4870339632034302, + "learning_rate": 3.3029177718832894e-05, + "loss": 0.7060601043701172, + "step": 38400 + }, + { + "epoch": 34.04069896040699, + "grad_norm": 0.46102386713027954, + "learning_rate": 3.298496905393457e-05, + "loss": 0.6895645141601563, + "step": 38500 + }, + { + "epoch": 34.12917496129175, + "grad_norm": 0.4717739522457123, + "learning_rate": 3.2940760389036255e-05, + "loss": 0.6683721160888672, + "step": 38600 + }, + { + "epoch": 34.217650962176506, + "grad_norm": 0.47995516657829285, + "learning_rate": 3.289655172413793e-05, + "loss": 0.67727294921875, + "step": 38700 + }, + { + "epoch": 34.30612696306127, + "grad_norm": 0.4676993191242218, + "learning_rate": 3.2852343059239616e-05, + "loss": 0.6742596435546875, + "step": 38800 + }, + { + "epoch": 34.39460296394603, + "grad_norm": 0.4986591935157776, + "learning_rate": 3.280813439434129e-05, + "loss": 0.6811554718017578, + "step": 38900 + }, + { + "epoch": 34.48307896483079, + "grad_norm": 0.49108394980430603, + "learning_rate": 3.2763925729442977e-05, + "loss": 0.6826177215576172, + "step": 39000 + }, + { + "epoch": 34.57155496571555, + "grad_norm": 0.46544989943504333, + "learning_rate": 3.2719717064544654e-05, + "loss": 0.6843925476074219, + "step": 39100 + }, + { + "epoch": 34.66003096660031, + "grad_norm": 0.4714086055755615, + "learning_rate": 3.267550839964633e-05, + "loss": 0.6843089294433594, + "step": 39200 + }, + { + "epoch": 34.74850696748507, + "grad_norm": 0.4726520776748657, + "learning_rate": 3.263129973474801e-05, + "loss": 0.687828140258789, + "step": 39300 + }, + { + "epoch": 34.83698296836983, + "grad_norm": 0.5056101083755493, + "learning_rate": 3.258709106984969e-05, + "loss": 0.6943804168701172, + "step": 39400 + }, + { + "epoch": 34.92545896925459, + "grad_norm": 0.5143911242485046, + "learning_rate": 3.2542882404951375e-05, + "loss": 0.6947840118408203, + "step": 39500 + }, + { + "epoch": 35.013271400132716, + "grad_norm": 0.4712352752685547, + "learning_rate": 3.249867374005305e-05, + "loss": 0.6877326965332031, + "step": 39600 + }, + { + "epoch": 35.10174740101748, + "grad_norm": 0.5000380873680115, + "learning_rate": 3.2454465075154736e-05, + "loss": 0.6556487274169922, + "step": 39700 + }, + { + "epoch": 35.19022340190224, + "grad_norm": 0.5022478699684143, + "learning_rate": 3.2410256410256413e-05, + "loss": 0.6607290649414063, + "step": 39800 + }, + { + "epoch": 35.27869940278699, + "grad_norm": 0.511082112789154, + "learning_rate": 3.236604774535809e-05, + "loss": 0.6585157775878906, + "step": 39900 + }, + { + "epoch": 35.36717540367175, + "grad_norm": 0.45338326692581177, + "learning_rate": 3.232183908045977e-05, + "loss": 0.6670406341552735, + "step": 40000 + }, + { + "epoch": 35.45565140455651, + "grad_norm": 0.47589078545570374, + "learning_rate": 3.227763041556145e-05, + "loss": 0.6654150390625, + "step": 40100 + }, + { + "epoch": 35.54412740544127, + "grad_norm": 0.5111287236213684, + "learning_rate": 3.2233421750663135e-05, + "loss": 0.6706926727294922, + "step": 40200 + }, + { + "epoch": 35.632603406326034, + "grad_norm": 0.48615771532058716, + "learning_rate": 3.218921308576481e-05, + "loss": 0.6724550628662109, + "step": 40300 + }, + { + "epoch": 35.721079407210794, + "grad_norm": 0.5141739845275879, + "learning_rate": 3.214500442086649e-05, + "loss": 0.674487075805664, + "step": 40400 + }, + { + "epoch": 35.809555408095555, + "grad_norm": 0.512373149394989, + "learning_rate": 3.210079575596817e-05, + "loss": 0.6809010314941406, + "step": 40500 + }, + { + "epoch": 35.898031408980316, + "grad_norm": 0.5156219005584717, + "learning_rate": 3.205658709106985e-05, + "loss": 0.6783308410644531, + "step": 40600 + }, + { + "epoch": 35.98650740986508, + "grad_norm": 0.5266398191452026, + "learning_rate": 3.201237842617153e-05, + "loss": 0.6796981811523437, + "step": 40700 + }, + { + "epoch": 36.0743198407432, + "grad_norm": 0.5198646783828735, + "learning_rate": 3.196861184792219e-05, + "loss": 0.648563232421875, + "step": 40800 + }, + { + "epoch": 36.16279584162796, + "grad_norm": 0.4699224829673767, + "learning_rate": 3.1924403183023874e-05, + "loss": 0.6464600372314453, + "step": 40900 + }, + { + "epoch": 36.25127184251272, + "grad_norm": 0.5014195442199707, + "learning_rate": 3.188019451812556e-05, + "loss": 0.6471477508544922, + "step": 41000 + }, + { + "epoch": 36.339747843397475, + "grad_norm": 0.5231509804725647, + "learning_rate": 3.1835985853227235e-05, + "loss": 0.6519639587402344, + "step": 41100 + }, + { + "epoch": 36.428223844282236, + "grad_norm": 0.4843427538871765, + "learning_rate": 3.179177718832891e-05, + "loss": 0.6523241424560546, + "step": 41200 + }, + { + "epoch": 36.516699845167, + "grad_norm": 0.4956904351711273, + "learning_rate": 3.1747568523430596e-05, + "loss": 0.6547152709960937, + "step": 41300 + }, + { + "epoch": 36.60517584605176, + "grad_norm": 0.5103031396865845, + "learning_rate": 3.170335985853227e-05, + "loss": 0.6602716827392578, + "step": 41400 + }, + { + "epoch": 36.69365184693652, + "grad_norm": 0.5028578042984009, + "learning_rate": 3.165915119363395e-05, + "loss": 0.6617116546630859, + "step": 41500 + }, + { + "epoch": 36.78212784782128, + "grad_norm": 0.4997723698616028, + "learning_rate": 3.1614942528735634e-05, + "loss": 0.6632434844970703, + "step": 41600 + }, + { + "epoch": 36.87060384870604, + "grad_norm": 0.5246814489364624, + "learning_rate": 3.157073386383732e-05, + "loss": 0.6632743835449219, + "step": 41700 + }, + { + "epoch": 36.9590798495908, + "grad_norm": 0.5308569073677063, + "learning_rate": 3.1526525198938995e-05, + "loss": 0.6639631652832031, + "step": 41800 + }, + { + "epoch": 37.046892280468924, + "grad_norm": 0.49218234419822693, + "learning_rate": 3.148231653404067e-05, + "loss": 0.6452173614501953, + "step": 41900 + }, + { + "epoch": 37.135368281353685, + "grad_norm": 0.4680822491645813, + "learning_rate": 3.143810786914235e-05, + "loss": 0.6319191360473633, + "step": 42000 + }, + { + "epoch": 37.223844282238446, + "grad_norm": 0.4810407757759094, + "learning_rate": 3.139389920424403e-05, + "loss": 0.6338667297363281, + "step": 42100 + }, + { + "epoch": 37.3123202831232, + "grad_norm": 0.545889139175415, + "learning_rate": 3.134969053934571e-05, + "loss": 0.6395709228515625, + "step": 42200 + }, + { + "epoch": 37.40079628400796, + "grad_norm": 0.5600217580795288, + "learning_rate": 3.1305481874447394e-05, + "loss": 0.6406965637207032, + "step": 42300 + }, + { + "epoch": 37.48927228489272, + "grad_norm": 0.5517903566360474, + "learning_rate": 3.126127320954908e-05, + "loss": 0.6428462982177734, + "step": 42400 + }, + { + "epoch": 37.57774828577748, + "grad_norm": 0.49925389885902405, + "learning_rate": 3.1217064544650755e-05, + "loss": 0.6470170593261719, + "step": 42500 + }, + { + "epoch": 37.66622428666224, + "grad_norm": 0.4698370397090912, + "learning_rate": 3.117285587975243e-05, + "loss": 0.6477708435058593, + "step": 42600 + }, + { + "epoch": 37.754700287547, + "grad_norm": 0.5349763035774231, + "learning_rate": 3.112864721485411e-05, + "loss": 0.6515216827392578, + "step": 42700 + }, + { + "epoch": 37.84317628843176, + "grad_norm": 0.5066236853599548, + "learning_rate": 3.108443854995579e-05, + "loss": 0.6522242736816406, + "step": 42800 + }, + { + "epoch": 37.931652289316524, + "grad_norm": 0.5211920142173767, + "learning_rate": 3.104022988505747e-05, + "loss": 0.6515906524658203, + "step": 42900 + }, + { + "epoch": 38.01946472019465, + "grad_norm": 0.5003405213356018, + "learning_rate": 3.099646330680814e-05, + "loss": 0.6448411560058593, + "step": 43000 + }, + { + "epoch": 38.10794072107941, + "grad_norm": 0.5215827226638794, + "learning_rate": 3.095225464190982e-05, + "loss": 0.619310417175293, + "step": 43100 + }, + { + "epoch": 38.19641672196417, + "grad_norm": 0.4768511950969696, + "learning_rate": 3.0908045977011494e-05, + "loss": 0.6210311126708984, + "step": 43200 + }, + { + "epoch": 38.28489272284893, + "grad_norm": 0.5353608727455139, + "learning_rate": 3.086383731211318e-05, + "loss": 0.6246475601196289, + "step": 43300 + }, + { + "epoch": 38.373368723733684, + "grad_norm": 0.5182030200958252, + "learning_rate": 3.0819628647214855e-05, + "loss": 0.6273392486572266, + "step": 43400 + }, + { + "epoch": 38.461844724618445, + "grad_norm": 0.500842273235321, + "learning_rate": 3.077541998231653e-05, + "loss": 0.6327916717529297, + "step": 43500 + }, + { + "epoch": 38.550320725503205, + "grad_norm": 0.5168542861938477, + "learning_rate": 3.0731211317418216e-05, + "loss": 0.6323520278930664, + "step": 43600 + }, + { + "epoch": 38.638796726387966, + "grad_norm": 0.5403733253479004, + "learning_rate": 3.06870026525199e-05, + "loss": 0.6338058090209961, + "step": 43700 + }, + { + "epoch": 38.72727272727273, + "grad_norm": 0.5119574666023254, + "learning_rate": 3.064279398762158e-05, + "loss": 0.6391129302978515, + "step": 43800 + }, + { + "epoch": 38.81574872815749, + "grad_norm": 0.5214455127716064, + "learning_rate": 3.0598585322723254e-05, + "loss": 0.6368292999267579, + "step": 43900 + }, + { + "epoch": 38.90422472904225, + "grad_norm": 0.5679435133934021, + "learning_rate": 3.055437665782494e-05, + "loss": 0.6414280700683593, + "step": 44000 + }, + { + "epoch": 38.99270072992701, + "grad_norm": 0.5442212820053101, + "learning_rate": 3.0510167992926615e-05, + "loss": 0.6446417999267579, + "step": 44100 + }, + { + "epoch": 39.08051316080513, + "grad_norm": 0.46873417496681213, + "learning_rate": 3.0465959328028292e-05, + "loss": 0.6127575302124023, + "step": 44200 + }, + { + "epoch": 39.16898916168989, + "grad_norm": 0.5402541756629944, + "learning_rate": 3.042175066312998e-05, + "loss": 0.6059606552124024, + "step": 44300 + }, + { + "epoch": 39.257465162574654, + "grad_norm": 0.5081923007965088, + "learning_rate": 3.0377541998231656e-05, + "loss": 0.6121833038330078, + "step": 44400 + }, + { + "epoch": 39.345941163459415, + "grad_norm": 0.5688677430152893, + "learning_rate": 3.0333333333333337e-05, + "loss": 0.6163175964355468, + "step": 44500 + }, + { + "epoch": 39.43441716434417, + "grad_norm": 0.5273306965827942, + "learning_rate": 3.0289124668435014e-05, + "loss": 0.6198236465454101, + "step": 44600 + }, + { + "epoch": 39.52289316522893, + "grad_norm": 0.5107190608978271, + "learning_rate": 3.0244916003536694e-05, + "loss": 0.6242243576049805, + "step": 44700 + }, + { + "epoch": 39.61136916611369, + "grad_norm": 0.5110412240028381, + "learning_rate": 3.0200707338638375e-05, + "loss": 0.6227451705932617, + "step": 44800 + }, + { + "epoch": 39.69984516699845, + "grad_norm": 0.5370123982429504, + "learning_rate": 3.015649867374005e-05, + "loss": 0.6257634735107422, + "step": 44900 + }, + { + "epoch": 39.78832116788321, + "grad_norm": 0.5311342477798462, + "learning_rate": 3.0112290008841735e-05, + "loss": 0.6246538925170898, + "step": 45000 + }, + { + "epoch": 39.87679716876797, + "grad_norm": 0.5247089862823486, + "learning_rate": 3.0068081343943416e-05, + "loss": 0.6278446578979492, + "step": 45100 + }, + { + "epoch": 39.96527316965273, + "grad_norm": 0.5407604575157166, + "learning_rate": 3.0023872679045096e-05, + "loss": 0.6319368743896484, + "step": 45200 + }, + { + "epoch": 40.053085600530856, + "grad_norm": 0.49125176668167114, + "learning_rate": 2.9980106100795756e-05, + "loss": 0.608686294555664, + "step": 45300 + }, + { + "epoch": 40.14156160141562, + "grad_norm": 0.5193077325820923, + "learning_rate": 2.9935897435897437e-05, + "loss": 0.5979312515258789, + "step": 45400 + }, + { + "epoch": 40.23003760230038, + "grad_norm": 0.5521110892295837, + "learning_rate": 2.9891688770999117e-05, + "loss": 0.6026276016235351, + "step": 45500 + }, + { + "epoch": 40.31851360318514, + "grad_norm": 0.5131237506866455, + "learning_rate": 2.9847480106100794e-05, + "loss": 0.6056368637084961, + "step": 45600 + }, + { + "epoch": 40.4069896040699, + "grad_norm": 0.5547003149986267, + "learning_rate": 2.9803271441202478e-05, + "loss": 0.6073746490478515, + "step": 45700 + }, + { + "epoch": 40.49546560495465, + "grad_norm": 0.5059778690338135, + "learning_rate": 2.975906277630416e-05, + "loss": 0.6093035888671875, + "step": 45800 + }, + { + "epoch": 40.583941605839414, + "grad_norm": 0.5218088030815125, + "learning_rate": 2.971485411140584e-05, + "loss": 0.6098678970336914, + "step": 45900 + }, + { + "epoch": 40.672417606724174, + "grad_norm": 0.5111589431762695, + "learning_rate": 2.9670645446507516e-05, + "loss": 0.6144123458862305, + "step": 46000 + }, + { + "epoch": 40.760893607608935, + "grad_norm": 0.5875983238220215, + "learning_rate": 2.9626436781609196e-05, + "loss": 0.6149031448364258, + "step": 46100 + }, + { + "epoch": 40.849369608493696, + "grad_norm": 0.6077953577041626, + "learning_rate": 2.9582228116710873e-05, + "loss": 0.6200779724121094, + "step": 46200 + }, + { + "epoch": 40.937845609378456, + "grad_norm": 0.5511230230331421, + "learning_rate": 2.9538019451812554e-05, + "loss": 0.6175289916992187, + "step": 46300 + }, + { + "epoch": 41.02565804025658, + "grad_norm": 0.5434758067131042, + "learning_rate": 2.9493810786914238e-05, + "loss": 0.6117794418334961, + "step": 46400 + }, + { + "epoch": 41.11413404114134, + "grad_norm": 0.5463586449623108, + "learning_rate": 2.9449602122015918e-05, + "loss": 0.5865156936645508, + "step": 46500 + }, + { + "epoch": 41.2026100420261, + "grad_norm": 0.516645610332489, + "learning_rate": 2.94053934571176e-05, + "loss": 0.5934408950805664, + "step": 46600 + }, + { + "epoch": 41.29108604291086, + "grad_norm": 0.5041747093200684, + "learning_rate": 2.9361184792219276e-05, + "loss": 0.5907432556152343, + "step": 46700 + }, + { + "epoch": 41.37956204379562, + "grad_norm": 0.5490337014198303, + "learning_rate": 2.9316976127320956e-05, + "loss": 0.597823486328125, + "step": 46800 + }, + { + "epoch": 41.468038044680384, + "grad_norm": 0.5256726741790771, + "learning_rate": 2.9272767462422633e-05, + "loss": 0.5979599380493164, + "step": 46900 + }, + { + "epoch": 41.55651404556514, + "grad_norm": 0.49856510758399963, + "learning_rate": 2.9228558797524314e-05, + "loss": 0.6000013732910157, + "step": 47000 + }, + { + "epoch": 41.6449900464499, + "grad_norm": 0.540030837059021, + "learning_rate": 2.9184350132625998e-05, + "loss": 0.6044590759277344, + "step": 47100 + }, + { + "epoch": 41.73346604733466, + "grad_norm": 0.5599401593208313, + "learning_rate": 2.9140141467727678e-05, + "loss": 0.6050262451171875, + "step": 47200 + }, + { + "epoch": 41.82194204821942, + "grad_norm": 0.5251536965370178, + "learning_rate": 2.9095932802829355e-05, + "loss": 0.6084031677246093, + "step": 47300 + }, + { + "epoch": 41.91041804910418, + "grad_norm": 0.6002141237258911, + "learning_rate": 2.9051724137931036e-05, + "loss": 0.6051164627075195, + "step": 47400 + }, + { + "epoch": 41.99889404998894, + "grad_norm": 0.5603448748588562, + "learning_rate": 2.9007515473032716e-05, + "loss": 0.6085728073120117, + "step": 47500 + }, + { + "epoch": 42.086706480867065, + "grad_norm": 0.5491044521331787, + "learning_rate": 2.8963748894783376e-05, + "loss": 0.576365966796875, + "step": 47600 + }, + { + "epoch": 42.175182481751825, + "grad_norm": 0.5698864459991455, + "learning_rate": 2.8919540229885063e-05, + "loss": 0.5807184219360352, + "step": 47700 + }, + { + "epoch": 42.263658482636586, + "grad_norm": 0.574418306350708, + "learning_rate": 2.887533156498674e-05, + "loss": 0.5844138717651367, + "step": 47800 + }, + { + "epoch": 42.35213448352135, + "grad_norm": 0.5167635083198547, + "learning_rate": 2.883112290008842e-05, + "loss": 0.5845949935913086, + "step": 47900 + }, + { + "epoch": 42.44061048440611, + "grad_norm": 0.5338764786720276, + "learning_rate": 2.8786914235190098e-05, + "loss": 0.5889351272583008, + "step": 48000 + }, + { + "epoch": 42.52908648529087, + "grad_norm": 0.5340341329574585, + "learning_rate": 2.8742705570291778e-05, + "loss": 0.5909807205200195, + "step": 48100 + }, + { + "epoch": 42.61756248617562, + "grad_norm": 0.5493650436401367, + "learning_rate": 2.869849690539346e-05, + "loss": 0.5914651107788086, + "step": 48200 + }, + { + "epoch": 42.70603848706038, + "grad_norm": 0.6116383075714111, + "learning_rate": 2.8654288240495136e-05, + "loss": 0.592667350769043, + "step": 48300 + }, + { + "epoch": 42.79451448794514, + "grad_norm": 0.5631881356239319, + "learning_rate": 2.861007957559682e-05, + "loss": 0.5997231674194335, + "step": 48400 + }, + { + "epoch": 42.882990488829904, + "grad_norm": 0.5806667804718018, + "learning_rate": 2.85658709106985e-05, + "loss": 0.5957838439941406, + "step": 48500 + }, + { + "epoch": 42.971466489714665, + "grad_norm": 0.5075005888938904, + "learning_rate": 2.852166224580018e-05, + "loss": 0.5975283432006836, + "step": 48600 + }, + { + "epoch": 43.05927892059279, + "grad_norm": 0.5606797337532043, + "learning_rate": 2.8477453580901857e-05, + "loss": 0.5800529861450195, + "step": 48700 + }, + { + "epoch": 43.14775492147755, + "grad_norm": 0.5353171229362488, + "learning_rate": 2.8433244916003538e-05, + "loss": 0.5706613540649415, + "step": 48800 + }, + { + "epoch": 43.23623092236231, + "grad_norm": 0.5479321479797363, + "learning_rate": 2.8389036251105215e-05, + "loss": 0.5755366516113282, + "step": 48900 + }, + { + "epoch": 43.32470692324707, + "grad_norm": 0.5302407741546631, + "learning_rate": 2.8344827586206895e-05, + "loss": 0.5780391311645507, + "step": 49000 + }, + { + "epoch": 43.41318292413183, + "grad_norm": 0.5579783320426941, + "learning_rate": 2.830061892130858e-05, + "loss": 0.5774256896972656, + "step": 49100 + }, + { + "epoch": 43.50165892501659, + "grad_norm": 0.5295524597167969, + "learning_rate": 2.825641025641026e-05, + "loss": 0.5812548828125, + "step": 49200 + }, + { + "epoch": 43.59013492590135, + "grad_norm": 0.492058664560318, + "learning_rate": 2.821220159151194e-05, + "loss": 0.5796434783935547, + "step": 49300 + }, + { + "epoch": 43.67861092678611, + "grad_norm": 0.48961371183395386, + "learning_rate": 2.8167992926613617e-05, + "loss": 0.5851696014404297, + "step": 49400 + }, + { + "epoch": 43.76708692767087, + "grad_norm": 0.5714001059532166, + "learning_rate": 2.8123784261715298e-05, + "loss": 0.5890889358520508, + "step": 49500 + }, + { + "epoch": 43.85556292855563, + "grad_norm": 0.537390410900116, + "learning_rate": 2.8079575596816975e-05, + "loss": 0.5881150054931641, + "step": 49600 + }, + { + "epoch": 43.94403892944039, + "grad_norm": 0.5263146758079529, + "learning_rate": 2.8035366931918655e-05, + "loss": 0.5868202209472656, + "step": 49700 + }, + { + "epoch": 44.03185136031851, + "grad_norm": 0.5009394288063049, + "learning_rate": 2.7991600353669322e-05, + "loss": 0.578513412475586, + "step": 49800 + }, + { + "epoch": 44.12032736120327, + "grad_norm": 0.5233928561210632, + "learning_rate": 2.7947391688771002e-05, + "loss": 0.5612442016601562, + "step": 49900 + }, + { + "epoch": 44.208803362088034, + "grad_norm": 0.5212284922599792, + "learning_rate": 2.7903183023872683e-05, + "loss": 0.5634622955322266, + "step": 50000 + }, + { + "epoch": 44.297279362972795, + "grad_norm": 0.5920892357826233, + "learning_rate": 2.785897435897436e-05, + "loss": 0.5646255111694336, + "step": 50100 + }, + { + "epoch": 44.385755363857555, + "grad_norm": 0.5463851690292358, + "learning_rate": 2.781476569407604e-05, + "loss": 0.5711798477172851, + "step": 50200 + }, + { + "epoch": 44.474231364742316, + "grad_norm": 0.513917863368988, + "learning_rate": 2.7770557029177717e-05, + "loss": 0.5757728576660156, + "step": 50300 + }, + { + "epoch": 44.56270736562708, + "grad_norm": 0.5791277289390564, + "learning_rate": 2.7726348364279398e-05, + "loss": 0.5719475173950195, + "step": 50400 + }, + { + "epoch": 44.65118336651183, + "grad_norm": 0.5394783616065979, + "learning_rate": 2.768213969938108e-05, + "loss": 0.5751088714599609, + "step": 50500 + }, + { + "epoch": 44.73965936739659, + "grad_norm": 0.5699083805084229, + "learning_rate": 2.7637931034482762e-05, + "loss": 0.5771770095825195, + "step": 50600 + }, + { + "epoch": 44.82813536828135, + "grad_norm": 0.5610557794570923, + "learning_rate": 2.759372236958444e-05, + "loss": 0.5790963745117188, + "step": 50700 + }, + { + "epoch": 44.91661136916611, + "grad_norm": 0.5751321911811829, + "learning_rate": 2.754951370468612e-05, + "loss": 0.5781265258789062, + "step": 50800 + }, + { + "epoch": 45.004423800044236, + "grad_norm": 0.4831089377403259, + "learning_rate": 2.75053050397878e-05, + "loss": 0.5815114593505859, + "step": 50900 + }, + { + "epoch": 45.092899800929, + "grad_norm": 0.5138679146766663, + "learning_rate": 2.7461096374889477e-05, + "loss": 0.5530588912963867, + "step": 51000 + }, + { + "epoch": 45.18137580181376, + "grad_norm": 0.5327210426330566, + "learning_rate": 2.7416887709991158e-05, + "loss": 0.5549150085449219, + "step": 51100 + }, + { + "epoch": 45.26985180269852, + "grad_norm": 0.5089725255966187, + "learning_rate": 2.737267904509284e-05, + "loss": 0.5587585830688476, + "step": 51200 + }, + { + "epoch": 45.35832780358328, + "grad_norm": 0.5307016372680664, + "learning_rate": 2.7328470380194522e-05, + "loss": 0.5582825851440429, + "step": 51300 + }, + { + "epoch": 45.44680380446804, + "grad_norm": 0.6189883351325989, + "learning_rate": 2.72842617152962e-05, + "loss": 0.561285514831543, + "step": 51400 + }, + { + "epoch": 45.5352798053528, + "grad_norm": 0.5789527893066406, + "learning_rate": 2.724005305039788e-05, + "loss": 0.5647828674316406, + "step": 51500 + }, + { + "epoch": 45.62375580623756, + "grad_norm": 0.553713321685791, + "learning_rate": 2.719584438549956e-05, + "loss": 0.5659704208374023, + "step": 51600 + }, + { + "epoch": 45.712231807122315, + "grad_norm": 0.5502424240112305, + "learning_rate": 2.7151635720601237e-05, + "loss": 0.5685673522949218, + "step": 51700 + }, + { + "epoch": 45.800707808007076, + "grad_norm": 0.6388786435127258, + "learning_rate": 2.7107427055702917e-05, + "loss": 0.569713134765625, + "step": 51800 + }, + { + "epoch": 45.889183808891836, + "grad_norm": 0.5839136242866516, + "learning_rate": 2.70632183908046e-05, + "loss": 0.5713850784301758, + "step": 51900 + }, + { + "epoch": 45.9776598097766, + "grad_norm": 0.5872997641563416, + "learning_rate": 2.701900972590628e-05, + "loss": 0.5713462448120117, + "step": 52000 + }, + { + "epoch": 46.06547224065472, + "grad_norm": 0.5111995339393616, + "learning_rate": 2.697524314765694e-05, + "loss": 0.5514000701904297, + "step": 52100 + }, + { + "epoch": 46.15394824153948, + "grad_norm": 0.5677483677864075, + "learning_rate": 2.6931034482758622e-05, + "loss": 0.5458650207519531, + "step": 52200 + }, + { + "epoch": 46.24242424242424, + "grad_norm": 0.5756211876869202, + "learning_rate": 2.68868258178603e-05, + "loss": 0.5480696868896484, + "step": 52300 + }, + { + "epoch": 46.330900243309, + "grad_norm": 0.6053562164306641, + "learning_rate": 2.684261715296198e-05, + "loss": 0.5525957870483399, + "step": 52400 + }, + { + "epoch": 46.419376244193764, + "grad_norm": 0.5155165791511536, + "learning_rate": 2.6798408488063663e-05, + "loss": 0.5557857513427734, + "step": 52500 + }, + { + "epoch": 46.507852245078524, + "grad_norm": 0.5804229378700256, + "learning_rate": 2.6754199823165344e-05, + "loss": 0.5559201049804687, + "step": 52600 + }, + { + "epoch": 46.596328245963285, + "grad_norm": 0.5536544919013977, + "learning_rate": 2.6709991158267024e-05, + "loss": 0.5591853713989258, + "step": 52700 + }, + { + "epoch": 46.684804246848046, + "grad_norm": 0.603621244430542, + "learning_rate": 2.66657824933687e-05, + "loss": 0.5596856307983399, + "step": 52800 + }, + { + "epoch": 46.7732802477328, + "grad_norm": 0.5604232549667358, + "learning_rate": 2.662157382847038e-05, + "loss": 0.5584945678710938, + "step": 52900 + }, + { + "epoch": 46.86175624861756, + "grad_norm": 0.5974889993667603, + "learning_rate": 2.657736516357206e-05, + "loss": 0.5582848358154296, + "step": 53000 + }, + { + "epoch": 46.95023224950232, + "grad_norm": 0.5440397262573242, + "learning_rate": 2.653315649867374e-05, + "loss": 0.5634394454956054, + "step": 53100 + }, + { + "epoch": 47.038044680380445, + "grad_norm": 0.5610032081604004, + "learning_rate": 2.6488947833775423e-05, + "loss": 0.5574512481689453, + "step": 53200 + }, + { + "epoch": 47.126520681265205, + "grad_norm": 0.607563853263855, + "learning_rate": 2.6444739168877104e-05, + "loss": 0.5387821197509766, + "step": 53300 + }, + { + "epoch": 47.214996682149966, + "grad_norm": 0.5836204290390015, + "learning_rate": 2.640053050397878e-05, + "loss": 0.5401793670654297, + "step": 53400 + }, + { + "epoch": 47.30347268303473, + "grad_norm": 0.5325765013694763, + "learning_rate": 2.635632183908046e-05, + "loss": 0.5437668991088868, + "step": 53500 + }, + { + "epoch": 47.39194868391949, + "grad_norm": 0.5740872621536255, + "learning_rate": 2.631211317418214e-05, + "loss": 0.5443574142456055, + "step": 53600 + }, + { + "epoch": 47.48042468480425, + "grad_norm": 0.5562124848365784, + "learning_rate": 2.626790450928382e-05, + "loss": 0.5469727325439453, + "step": 53700 + }, + { + "epoch": 47.56890068568901, + "grad_norm": 0.5893000960350037, + "learning_rate": 2.62236958443855e-05, + "loss": 0.5502291107177735, + "step": 53800 + }, + { + "epoch": 47.65737668657377, + "grad_norm": 0.6538830995559692, + "learning_rate": 2.6179487179487183e-05, + "loss": 0.552915382385254, + "step": 53900 + }, + { + "epoch": 47.74585268745853, + "grad_norm": 0.5710316300392151, + "learning_rate": 2.6135278514588863e-05, + "loss": 0.5510491943359375, + "step": 54000 + }, + { + "epoch": 47.834328688343284, + "grad_norm": 0.5235297083854675, + "learning_rate": 2.609106984969054e-05, + "loss": 0.5519483184814453, + "step": 54100 + }, + { + "epoch": 47.922804689228045, + "grad_norm": 0.6048061847686768, + "learning_rate": 2.604686118479222e-05, + "loss": 0.5567644882202148, + "step": 54200 + }, + { + "epoch": 48.01061712010617, + "grad_norm": 0.5698108077049255, + "learning_rate": 2.6003094606542884e-05, + "loss": 0.5547234344482422, + "step": 54300 + }, + { + "epoch": 48.09909312099093, + "grad_norm": 0.49287617206573486, + "learning_rate": 2.595888594164456e-05, + "loss": 0.5280181884765625, + "step": 54400 + }, + { + "epoch": 48.18756912187569, + "grad_norm": 0.5525228977203369, + "learning_rate": 2.591467727674624e-05, + "loss": 0.5349401092529297, + "step": 54500 + }, + { + "epoch": 48.27604512276045, + "grad_norm": 0.5026161670684814, + "learning_rate": 2.5870468611847925e-05, + "loss": 0.5378446578979492, + "step": 54600 + }, + { + "epoch": 48.36452112364521, + "grad_norm": 0.5191828608512878, + "learning_rate": 2.5826259946949606e-05, + "loss": 0.5382429122924804, + "step": 54700 + }, + { + "epoch": 48.45299712452997, + "grad_norm": 0.5171953439712524, + "learning_rate": 2.5782051282051283e-05, + "loss": 0.5364204406738281, + "step": 54800 + }, + { + "epoch": 48.54147312541473, + "grad_norm": 0.5302397012710571, + "learning_rate": 2.5737842617152963e-05, + "loss": 0.5405542373657226, + "step": 54900 + }, + { + "epoch": 48.62994912629949, + "grad_norm": 0.5187925100326538, + "learning_rate": 2.569363395225464e-05, + "loss": 0.5436551284790039, + "step": 55000 + }, + { + "epoch": 48.718425127184254, + "grad_norm": 0.5707531571388245, + "learning_rate": 2.564942528735632e-05, + "loss": 0.5467363357543945, + "step": 55100 + }, + { + "epoch": 48.806901128069015, + "grad_norm": 0.5525254607200623, + "learning_rate": 2.5605216622458e-05, + "loss": 0.5466318130493164, + "step": 55200 + }, + { + "epoch": 48.89537712895377, + "grad_norm": 0.5896828174591064, + "learning_rate": 2.5561007957559685e-05, + "loss": 0.5489627075195312, + "step": 55300 + }, + { + "epoch": 48.98385312983853, + "grad_norm": 0.593329131603241, + "learning_rate": 2.5516799292661366e-05, + "loss": 0.5492449569702148, + "step": 55400 + }, + { + "epoch": 49.07166556071665, + "grad_norm": 0.45202845335006714, + "learning_rate": 2.5472590627763043e-05, + "loss": 0.5282985687255859, + "step": 55500 + }, + { + "epoch": 49.160141561601414, + "grad_norm": 0.45874515175819397, + "learning_rate": 2.5428381962864723e-05, + "loss": 0.5267356872558594, + "step": 55600 + }, + { + "epoch": 49.248617562486174, + "grad_norm": 0.5499678254127502, + "learning_rate": 2.53841732979664e-05, + "loss": 0.5255993270874023, + "step": 55700 + }, + { + "epoch": 49.337093563370935, + "grad_norm": 0.5569108724594116, + "learning_rate": 2.533996463306808e-05, + "loss": 0.5299503707885742, + "step": 55800 + }, + { + "epoch": 49.425569564255696, + "grad_norm": 0.5677438974380493, + "learning_rate": 2.529575596816976e-05, + "loss": 0.5316028594970703, + "step": 55900 + }, + { + "epoch": 49.51404556514046, + "grad_norm": 0.5888075828552246, + "learning_rate": 2.5251547303271445e-05, + "loss": 0.5354986953735351, + "step": 56000 + }, + { + "epoch": 49.60252156602522, + "grad_norm": 0.5639616250991821, + "learning_rate": 2.5207338638373122e-05, + "loss": 0.5369997787475586, + "step": 56100 + }, + { + "epoch": 49.69099756690998, + "grad_norm": 0.509158194065094, + "learning_rate": 2.5163129973474803e-05, + "loss": 0.536979866027832, + "step": 56200 + }, + { + "epoch": 49.77947356779474, + "grad_norm": 0.5412595868110657, + "learning_rate": 2.5118921308576483e-05, + "loss": 0.5382201004028321, + "step": 56300 + }, + { + "epoch": 49.86794956867949, + "grad_norm": 0.6052098274230957, + "learning_rate": 2.507471264367816e-05, + "loss": 0.5390504837036133, + "step": 56400 + }, + { + "epoch": 49.95642556956425, + "grad_norm": 0.5019105076789856, + "learning_rate": 2.503050397877984e-05, + "loss": 0.5391928482055665, + "step": 56500 + }, + { + "epoch": 50.04423800044238, + "grad_norm": 0.5133684873580933, + "learning_rate": 2.4986737400530504e-05, + "loss": 0.529360580444336, + "step": 56600 + }, + { + "epoch": 50.13271400132714, + "grad_norm": 0.5742220878601074, + "learning_rate": 2.4942528735632184e-05, + "loss": 0.5150651550292968, + "step": 56700 + }, + { + "epoch": 50.2211900022119, + "grad_norm": 0.5389617681503296, + "learning_rate": 2.4898320070733865e-05, + "loss": 0.5204330444335937, + "step": 56800 + }, + { + "epoch": 50.30966600309666, + "grad_norm": 0.5938611030578613, + "learning_rate": 2.4854111405835545e-05, + "loss": 0.5252494049072266, + "step": 56900 + }, + { + "epoch": 50.39814200398142, + "grad_norm": 0.5617892146110535, + "learning_rate": 2.4809902740937225e-05, + "loss": 0.5260490036010742, + "step": 57000 + }, + { + "epoch": 50.48661800486618, + "grad_norm": 0.6076000332832336, + "learning_rate": 2.4765694076038906e-05, + "loss": 0.5278256607055664, + "step": 57100 + }, + { + "epoch": 50.57509400575094, + "grad_norm": 0.5321983695030212, + "learning_rate": 2.4721485411140586e-05, + "loss": 0.5286510467529297, + "step": 57200 + }, + { + "epoch": 50.6635700066357, + "grad_norm": 0.614532470703125, + "learning_rate": 2.4677276746242263e-05, + "loss": 0.5313225936889648, + "step": 57300 + }, + { + "epoch": 50.75204600752046, + "grad_norm": 0.5830910801887512, + "learning_rate": 2.4633068081343944e-05, + "loss": 0.5300481796264649, + "step": 57400 + }, + { + "epoch": 50.84052200840522, + "grad_norm": 0.5918353199958801, + "learning_rate": 2.4588859416445624e-05, + "loss": 0.5337774276733398, + "step": 57500 + }, + { + "epoch": 50.92899800928998, + "grad_norm": 0.5791705846786499, + "learning_rate": 2.4544650751547305e-05, + "loss": 0.5316382598876953, + "step": 57600 + }, + { + "epoch": 51.01681044016811, + "grad_norm": 0.521299421787262, + "learning_rate": 2.4500442086648985e-05, + "loss": 0.5307102203369141, + "step": 57700 + }, + { + "epoch": 51.10528644105286, + "grad_norm": 0.5163324475288391, + "learning_rate": 2.4456233421750666e-05, + "loss": 0.5103409576416016, + "step": 57800 + }, + { + "epoch": 51.19376244193762, + "grad_norm": 0.5436499714851379, + "learning_rate": 2.4412024756852346e-05, + "loss": 0.5144682693481445, + "step": 57900 + }, + { + "epoch": 51.28223844282238, + "grad_norm": 0.5268517136573792, + "learning_rate": 2.4367816091954023e-05, + "loss": 0.5170879364013672, + "step": 58000 + }, + { + "epoch": 51.37071444370714, + "grad_norm": 0.5523056983947754, + "learning_rate": 2.4323607427055704e-05, + "loss": 0.5176148223876953, + "step": 58100 + }, + { + "epoch": 51.459190444591904, + "grad_norm": 0.5733488202095032, + "learning_rate": 2.4279398762157384e-05, + "loss": 0.5213256454467774, + "step": 58200 + }, + { + "epoch": 51.547666445476665, + "grad_norm": 0.6002511978149414, + "learning_rate": 2.4235190097259065e-05, + "loss": 0.5213332748413086, + "step": 58300 + }, + { + "epoch": 51.636142446361426, + "grad_norm": 0.5866407155990601, + "learning_rate": 2.4190981432360742e-05, + "loss": 0.5219316101074218, + "step": 58400 + }, + { + "epoch": 51.724618447246186, + "grad_norm": 0.620346188545227, + "learning_rate": 2.4146772767462426e-05, + "loss": 0.5251021575927735, + "step": 58500 + }, + { + "epoch": 51.81309444813095, + "grad_norm": 0.5428482294082642, + "learning_rate": 2.4102564102564103e-05, + "loss": 0.5254843521118164, + "step": 58600 + }, + { + "epoch": 51.90157044901571, + "grad_norm": 0.6146367192268372, + "learning_rate": 2.4058355437665783e-05, + "loss": 0.5262796401977539, + "step": 58700 + }, + { + "epoch": 51.99004644990046, + "grad_norm": 0.6002848148345947, + "learning_rate": 2.4014146772767464e-05, + "loss": 0.5279874801635742, + "step": 58800 + }, + { + "epoch": 52.07785888077859, + "grad_norm": 0.5608682036399841, + "learning_rate": 2.3970380194518127e-05, + "loss": 0.5045627975463867, + "step": 58900 + }, + { + "epoch": 52.166334881663346, + "grad_norm": 0.5034646391868591, + "learning_rate": 2.3926171529619807e-05, + "loss": 0.5071027755737305, + "step": 59000 + }, + { + "epoch": 52.25481088254811, + "grad_norm": 0.5443050861358643, + "learning_rate": 2.3881962864721484e-05, + "loss": 0.5105178451538086, + "step": 59100 + }, + { + "epoch": 52.34328688343287, + "grad_norm": 0.5455040335655212, + "learning_rate": 2.3837754199823168e-05, + "loss": 0.5111968612670899, + "step": 59200 + }, + { + "epoch": 52.43176288431763, + "grad_norm": 0.5393562912940979, + "learning_rate": 2.3793545534924845e-05, + "loss": 0.5109628295898437, + "step": 59300 + }, + { + "epoch": 52.52023888520239, + "grad_norm": 0.5572716593742371, + "learning_rate": 2.3749336870026526e-05, + "loss": 0.5128989791870118, + "step": 59400 + }, + { + "epoch": 52.60871488608715, + "grad_norm": 0.5157389640808105, + "learning_rate": 2.3705128205128206e-05, + "loss": 0.5179262924194336, + "step": 59500 + }, + { + "epoch": 52.69719088697191, + "grad_norm": 0.5245424509048462, + "learning_rate": 2.3660919540229886e-05, + "loss": 0.5182614517211914, + "step": 59600 + }, + { + "epoch": 52.78566688785667, + "grad_norm": 0.6405171155929565, + "learning_rate": 2.3616710875331567e-05, + "loss": 0.5196902084350586, + "step": 59700 + }, + { + "epoch": 52.87414288874143, + "grad_norm": 0.5531449317932129, + "learning_rate": 2.3572502210433244e-05, + "loss": 0.5213772583007813, + "step": 59800 + }, + { + "epoch": 52.96261888962619, + "grad_norm": 0.5440499186515808, + "learning_rate": 2.3528293545534928e-05, + "loss": 0.5214180755615234, + "step": 59900 + }, + { + "epoch": 53.050431320504316, + "grad_norm": 0.5454942584037781, + "learning_rate": 2.3484084880636605e-05, + "loss": 0.5082747268676758, + "step": 60000 + }, + { + "epoch": 53.13890732138907, + "grad_norm": 0.6037677526473999, + "learning_rate": 2.3439876215738285e-05, + "loss": 0.4992447662353516, + "step": 60100 + }, + { + "epoch": 53.22738332227383, + "grad_norm": 0.6089978218078613, + "learning_rate": 2.3395667550839966e-05, + "loss": 0.501078987121582, + "step": 60200 + }, + { + "epoch": 53.31585932315859, + "grad_norm": 0.5581852793693542, + "learning_rate": 2.3351458885941646e-05, + "loss": 0.50614990234375, + "step": 60300 + }, + { + "epoch": 53.40433532404335, + "grad_norm": 0.5539824366569519, + "learning_rate": 2.3307250221043327e-05, + "loss": 0.5036640548706055, + "step": 60400 + }, + { + "epoch": 53.49281132492811, + "grad_norm": 0.5434619784355164, + "learning_rate": 2.3263041556145004e-05, + "loss": 0.5078977966308593, + "step": 60500 + }, + { + "epoch": 53.58128732581287, + "grad_norm": 0.5596204400062561, + "learning_rate": 2.3218832891246688e-05, + "loss": 0.5105896377563477, + "step": 60600 + }, + { + "epoch": 53.669763326697634, + "grad_norm": 0.5933516621589661, + "learning_rate": 2.3174624226348365e-05, + "loss": 0.512298583984375, + "step": 60700 + }, + { + "epoch": 53.758239327582395, + "grad_norm": 0.5938782095909119, + "learning_rate": 2.3130415561450045e-05, + "loss": 0.5136246871948242, + "step": 60800 + }, + { + "epoch": 53.846715328467155, + "grad_norm": 0.5711195468902588, + "learning_rate": 2.3086206896551726e-05, + "loss": 0.5137527465820313, + "step": 60900 + }, + { + "epoch": 53.935191329351916, + "grad_norm": 0.5345974564552307, + "learning_rate": 2.3041998231653406e-05, + "loss": 0.5148337173461914, + "step": 61000 + }, + { + "epoch": 54.02300376023004, + "grad_norm": 0.5462290644645691, + "learning_rate": 2.299823165340407e-05, + "loss": 0.5070685577392579, + "step": 61100 + }, + { + "epoch": 54.1114797611148, + "grad_norm": 0.5135403275489807, + "learning_rate": 2.295402298850575e-05, + "loss": 0.49042961120605466, + "step": 61200 + }, + { + "epoch": 54.199955761999554, + "grad_norm": 0.5753411650657654, + "learning_rate": 2.290981432360743e-05, + "loss": 0.49762104034423826, + "step": 61300 + }, + { + "epoch": 54.288431762884315, + "grad_norm": 0.5738378167152405, + "learning_rate": 2.2865605658709107e-05, + "loss": 0.4983011245727539, + "step": 61400 + }, + { + "epoch": 54.376907763769076, + "grad_norm": 0.5234966278076172, + "learning_rate": 2.2821396993810788e-05, + "loss": 0.5005590057373047, + "step": 61500 + }, + { + "epoch": 54.465383764653836, + "grad_norm": 0.5313852429389954, + "learning_rate": 2.2777188328912468e-05, + "loss": 0.503372917175293, + "step": 61600 + }, + { + "epoch": 54.5538597655386, + "grad_norm": 0.49838191270828247, + "learning_rate": 2.273297966401415e-05, + "loss": 0.5020324325561524, + "step": 61700 + }, + { + "epoch": 54.64233576642336, + "grad_norm": 0.5403088927268982, + "learning_rate": 2.2688770999115826e-05, + "loss": 0.5049329376220704, + "step": 61800 + }, + { + "epoch": 54.73081176730812, + "grad_norm": 0.46723249554634094, + "learning_rate": 2.264456233421751e-05, + "loss": 0.5059401321411133, + "step": 61900 + }, + { + "epoch": 54.81928776819288, + "grad_norm": 0.5539482235908508, + "learning_rate": 2.2600353669319187e-05, + "loss": 0.5069823837280274, + "step": 62000 + }, + { + "epoch": 54.90776376907764, + "grad_norm": 0.5377270579338074, + "learning_rate": 2.2556145004420867e-05, + "loss": 0.508377685546875, + "step": 62100 + }, + { + "epoch": 54.9962397699624, + "grad_norm": 0.6182072162628174, + "learning_rate": 2.2511936339522548e-05, + "loss": 0.5095947647094726, + "step": 62200 + }, + { + "epoch": 55.084052200840524, + "grad_norm": 0.5139372944831848, + "learning_rate": 2.2467727674624228e-05, + "loss": 0.4896272277832031, + "step": 62300 + }, + { + "epoch": 55.172528201725285, + "grad_norm": 0.5812121629714966, + "learning_rate": 2.242351900972591e-05, + "loss": 0.49099037170410154, + "step": 62400 + }, + { + "epoch": 55.26100420261004, + "grad_norm": 0.5491729378700256, + "learning_rate": 2.2379310344827586e-05, + "loss": 0.4927267074584961, + "step": 62500 + }, + { + "epoch": 55.3494802034948, + "grad_norm": 0.5951135158538818, + "learning_rate": 2.233510167992927e-05, + "loss": 0.49305023193359376, + "step": 62600 + }, + { + "epoch": 55.43795620437956, + "grad_norm": 0.5938172340393066, + "learning_rate": 2.2290893015030946e-05, + "loss": 0.49482032775878904, + "step": 62700 + }, + { + "epoch": 55.52643220526432, + "grad_norm": 0.5288723111152649, + "learning_rate": 2.2246684350132627e-05, + "loss": 0.4974822998046875, + "step": 62800 + }, + { + "epoch": 55.61490820614908, + "grad_norm": 0.5663400888442993, + "learning_rate": 2.2202475685234307e-05, + "loss": 0.498828239440918, + "step": 62900 + }, + { + "epoch": 55.70338420703384, + "grad_norm": 0.5939375162124634, + "learning_rate": 2.2158267020335988e-05, + "loss": 0.5004440307617187, + "step": 63000 + }, + { + "epoch": 55.7918602079186, + "grad_norm": 0.628774106502533, + "learning_rate": 2.2114058355437668e-05, + "loss": 0.5034025573730468, + "step": 63100 + }, + { + "epoch": 55.880336208803364, + "grad_norm": 0.6160352826118469, + "learning_rate": 2.2069849690539345e-05, + "loss": 0.5042695236206055, + "step": 63200 + }, + { + "epoch": 55.968812209688124, + "grad_norm": 0.5891813635826111, + "learning_rate": 2.202564102564103e-05, + "loss": 0.5021416473388672, + "step": 63300 + }, + { + "epoch": 56.05662464056625, + "grad_norm": 0.5297622680664062, + "learning_rate": 2.198187444739169e-05, + "loss": 0.4904953384399414, + "step": 63400 + }, + { + "epoch": 56.14510064145101, + "grad_norm": 0.5649422407150269, + "learning_rate": 2.193766578249337e-05, + "loss": 0.485706672668457, + "step": 63500 + }, + { + "epoch": 56.23357664233577, + "grad_norm": 0.6352797150611877, + "learning_rate": 2.189345711759505e-05, + "loss": 0.4867672348022461, + "step": 63600 + }, + { + "epoch": 56.32205264322052, + "grad_norm": 0.5789678692817688, + "learning_rate": 2.184924845269673e-05, + "loss": 0.48802379608154295, + "step": 63700 + }, + { + "epoch": 56.410528644105284, + "grad_norm": 0.6075431704521179, + "learning_rate": 2.180503978779841e-05, + "loss": 0.4910835647583008, + "step": 63800 + }, + { + "epoch": 56.499004644990045, + "grad_norm": 0.5858777165412903, + "learning_rate": 2.1760831122900088e-05, + "loss": 0.4906935119628906, + "step": 63900 + }, + { + "epoch": 56.587480645874805, + "grad_norm": 0.5143148899078369, + "learning_rate": 2.171662245800177e-05, + "loss": 0.49202545166015627, + "step": 64000 + }, + { + "epoch": 56.675956646759566, + "grad_norm": 0.5330872535705566, + "learning_rate": 2.167241379310345e-05, + "loss": 0.4929664611816406, + "step": 64100 + }, + { + "epoch": 56.76443264764433, + "grad_norm": 0.5530017018318176, + "learning_rate": 2.162820512820513e-05, + "loss": 0.49355899810791015, + "step": 64200 + }, + { + "epoch": 56.85290864852909, + "grad_norm": 0.5891992449760437, + "learning_rate": 2.158399646330681e-05, + "loss": 0.49566749572753904, + "step": 64300 + }, + { + "epoch": 56.94138464941385, + "grad_norm": 0.5289095044136047, + "learning_rate": 2.153978779840849e-05, + "loss": 0.4987163543701172, + "step": 64400 + }, + { + "epoch": 57.02919708029197, + "grad_norm": 0.5679471492767334, + "learning_rate": 2.1495579133510167e-05, + "loss": 0.49003833770751953, + "step": 64500 + }, + { + "epoch": 57.11767308117673, + "grad_norm": 0.5432245135307312, + "learning_rate": 2.1451370468611848e-05, + "loss": 0.47765895843505857, + "step": 64600 + }, + { + "epoch": 57.20614908206149, + "grad_norm": 0.5474491119384766, + "learning_rate": 2.1407161803713528e-05, + "loss": 0.4797785568237305, + "step": 64700 + }, + { + "epoch": 57.294625082946254, + "grad_norm": 0.537804126739502, + "learning_rate": 2.136295313881521e-05, + "loss": 0.4833247756958008, + "step": 64800 + }, + { + "epoch": 57.38310108383101, + "grad_norm": 0.572169840335846, + "learning_rate": 2.131874447391689e-05, + "loss": 0.4836674118041992, + "step": 64900 + }, + { + "epoch": 57.47157708471577, + "grad_norm": 0.5344268679618835, + "learning_rate": 2.127453580901857e-05, + "loss": 0.48507492065429686, + "step": 65000 + }, + { + "epoch": 57.56005308560053, + "grad_norm": 0.5664619207382202, + "learning_rate": 2.123032714412025e-05, + "loss": 0.488138427734375, + "step": 65100 + }, + { + "epoch": 57.64852908648529, + "grad_norm": 0.5902144312858582, + "learning_rate": 2.1186118479221927e-05, + "loss": 0.48771110534667966, + "step": 65200 + }, + { + "epoch": 57.73700508737005, + "grad_norm": 0.562929630279541, + "learning_rate": 2.1141909814323607e-05, + "loss": 0.4875301742553711, + "step": 65300 + }, + { + "epoch": 57.82548108825481, + "grad_norm": 0.5995573997497559, + "learning_rate": 2.1097701149425288e-05, + "loss": 0.49271678924560547, + "step": 65400 + }, + { + "epoch": 57.91395708913957, + "grad_norm": 0.6624785661697388, + "learning_rate": 2.105349248452697e-05, + "loss": 0.4920695877075195, + "step": 65500 + }, + { + "epoch": 58.001769520017696, + "grad_norm": 0.5402753353118896, + "learning_rate": 2.100928381962865e-05, + "loss": 0.49431739807128905, + "step": 65600 + }, + { + "epoch": 58.09024552090246, + "grad_norm": 0.5145826935768127, + "learning_rate": 2.096507515473033e-05, + "loss": 0.47089763641357424, + "step": 65700 + }, + { + "epoch": 58.17872152178722, + "grad_norm": 0.5931445360183716, + "learning_rate": 2.092086648983201e-05, + "loss": 0.4758612060546875, + "step": 65800 + }, + { + "epoch": 58.26719752267198, + "grad_norm": 0.5388639569282532, + "learning_rate": 2.0876657824933687e-05, + "loss": 0.47640296936035154, + "step": 65900 + }, + { + "epoch": 58.35567352355674, + "grad_norm": 0.5639314651489258, + "learning_rate": 2.0832449160035367e-05, + "loss": 0.482130241394043, + "step": 66000 + }, + { + "epoch": 58.44414952444149, + "grad_norm": 0.5535529851913452, + "learning_rate": 2.0788240495137048e-05, + "loss": 0.47872936248779296, + "step": 66100 + }, + { + "epoch": 58.53262552532625, + "grad_norm": 0.5827674865722656, + "learning_rate": 2.0744031830238728e-05, + "loss": 0.4842064666748047, + "step": 66200 + }, + { + "epoch": 58.621101526211014, + "grad_norm": 0.5696784257888794, + "learning_rate": 2.0699823165340405e-05, + "loss": 0.4816234588623047, + "step": 66300 + }, + { + "epoch": 58.709577527095774, + "grad_norm": 0.5349422097206116, + "learning_rate": 2.065561450044209e-05, + "loss": 0.48554718017578125, + "step": 66400 + }, + { + "epoch": 58.798053527980535, + "grad_norm": 0.636604368686676, + "learning_rate": 2.0611405835543766e-05, + "loss": 0.4876006317138672, + "step": 66500 + }, + { + "epoch": 58.886529528865296, + "grad_norm": 0.6060304045677185, + "learning_rate": 2.0567197170645447e-05, + "loss": 0.4887725830078125, + "step": 66600 + }, + { + "epoch": 58.97500552975006, + "grad_norm": 0.6087244749069214, + "learning_rate": 2.0522988505747127e-05, + "loss": 0.4868877410888672, + "step": 66700 + }, + { + "epoch": 59.06281796062818, + "grad_norm": 0.49913933873176575, + "learning_rate": 2.047922192749779e-05, + "loss": 0.4722119140625, + "step": 66800 + }, + { + "epoch": 59.15129396151294, + "grad_norm": 0.4722621738910675, + "learning_rate": 2.043501326259947e-05, + "loss": 0.47009246826171874, + "step": 66900 + }, + { + "epoch": 59.2397699623977, + "grad_norm": 0.5657719373703003, + "learning_rate": 2.0390804597701148e-05, + "loss": 0.472298583984375, + "step": 67000 + }, + { + "epoch": 59.32824596328246, + "grad_norm": 0.5761541724205017, + "learning_rate": 2.034659593280283e-05, + "loss": 0.4723761749267578, + "step": 67100 + }, + { + "epoch": 59.416721964167216, + "grad_norm": 0.6316192150115967, + "learning_rate": 2.030238726790451e-05, + "loss": 0.47409954071044924, + "step": 67200 + }, + { + "epoch": 59.50519796505198, + "grad_norm": 0.6090986132621765, + "learning_rate": 2.025817860300619e-05, + "loss": 0.4764304351806641, + "step": 67300 + }, + { + "epoch": 59.59367396593674, + "grad_norm": 0.5362303256988525, + "learning_rate": 2.021396993810787e-05, + "loss": 0.4776358795166016, + "step": 67400 + }, + { + "epoch": 59.6821499668215, + "grad_norm": 0.553995668888092, + "learning_rate": 2.016976127320955e-05, + "loss": 0.4807791519165039, + "step": 67500 + }, + { + "epoch": 59.77062596770626, + "grad_norm": 0.5615981221199036, + "learning_rate": 2.012555260831123e-05, + "loss": 0.48062610626220703, + "step": 67600 + }, + { + "epoch": 59.85910196859102, + "grad_norm": 0.5885509252548218, + "learning_rate": 2.0081343943412908e-05, + "loss": 0.48244945526123045, + "step": 67700 + }, + { + "epoch": 59.94757796947578, + "grad_norm": 0.6052979230880737, + "learning_rate": 2.003713527851459e-05, + "loss": 0.4803206634521484, + "step": 67800 + }, + { + "epoch": 60.035390400353904, + "grad_norm": 0.5579769015312195, + "learning_rate": 1.999292661361627e-05, + "loss": 0.4752388000488281, + "step": 67900 + }, + { + "epoch": 60.123866401238665, + "grad_norm": 0.478289395570755, + "learning_rate": 1.994871794871795e-05, + "loss": 0.4645302200317383, + "step": 68000 + }, + { + "epoch": 60.212342402123426, + "grad_norm": 0.5545957088470459, + "learning_rate": 1.990450928381963e-05, + "loss": 0.46837158203125, + "step": 68100 + }, + { + "epoch": 60.300818403008186, + "grad_norm": 0.524662435054779, + "learning_rate": 1.986030061892131e-05, + "loss": 0.4679202651977539, + "step": 68200 + }, + { + "epoch": 60.38929440389295, + "grad_norm": 0.6101793646812439, + "learning_rate": 1.981609195402299e-05, + "loss": 0.46956668853759764, + "step": 68300 + }, + { + "epoch": 60.4777704047777, + "grad_norm": 0.5040204524993896, + "learning_rate": 1.9771883289124667e-05, + "loss": 0.4706681060791016, + "step": 68400 + }, + { + "epoch": 60.56624640566246, + "grad_norm": 0.563679039478302, + "learning_rate": 1.972767462422635e-05, + "loss": 0.471558837890625, + "step": 68500 + }, + { + "epoch": 60.65472240654722, + "grad_norm": 0.5668439865112305, + "learning_rate": 1.9683465959328028e-05, + "loss": 0.4727770233154297, + "step": 68600 + }, + { + "epoch": 60.74319840743198, + "grad_norm": 0.6011987328529358, + "learning_rate": 1.963925729442971e-05, + "loss": 0.47645427703857424, + "step": 68700 + }, + { + "epoch": 60.83167440831674, + "grad_norm": 0.6392132043838501, + "learning_rate": 1.959504862953139e-05, + "loss": 0.4765947341918945, + "step": 68800 + }, + { + "epoch": 60.920150409201504, + "grad_norm": 0.6424957513809204, + "learning_rate": 1.955083996463307e-05, + "loss": 0.4768808746337891, + "step": 68900 + }, + { + "epoch": 61.00796284007963, + "grad_norm": 0.5341200828552246, + "learning_rate": 1.9507073386383733e-05, + "loss": 0.4776120376586914, + "step": 69000 + }, + { + "epoch": 61.09643884096439, + "grad_norm": 0.622922956943512, + "learning_rate": 1.9462864721485413e-05, + "loss": 0.46137203216552736, + "step": 69100 + }, + { + "epoch": 61.18491484184915, + "grad_norm": 0.5679436326026917, + "learning_rate": 1.9418656056587094e-05, + "loss": 0.46096920013427733, + "step": 69200 + }, + { + "epoch": 61.27339084273391, + "grad_norm": 0.5972808003425598, + "learning_rate": 1.937444739168877e-05, + "loss": 0.46090087890625, + "step": 69300 + }, + { + "epoch": 61.36186684361867, + "grad_norm": 0.5825915336608887, + "learning_rate": 1.933023872679045e-05, + "loss": 0.46518352508544925, + "step": 69400 + }, + { + "epoch": 61.45034284450343, + "grad_norm": 0.48754116892814636, + "learning_rate": 1.9286030061892132e-05, + "loss": 0.4664886856079102, + "step": 69500 + }, + { + "epoch": 61.538818845388185, + "grad_norm": 0.5583191514015198, + "learning_rate": 1.9241821396993812e-05, + "loss": 0.46886295318603516, + "step": 69600 + }, + { + "epoch": 61.627294846272946, + "grad_norm": 0.5658340454101562, + "learning_rate": 1.919761273209549e-05, + "loss": 0.4696169662475586, + "step": 69700 + }, + { + "epoch": 61.71577084715771, + "grad_norm": 0.5801714658737183, + "learning_rate": 1.9153404067197173e-05, + "loss": 0.47141036987304685, + "step": 69800 + }, + { + "epoch": 61.80424684804247, + "grad_norm": 0.5643869042396545, + "learning_rate": 1.910919540229885e-05, + "loss": 0.4727308654785156, + "step": 69900 + }, + { + "epoch": 61.89272284892723, + "grad_norm": 0.5937660336494446, + "learning_rate": 1.906498673740053e-05, + "loss": 0.4726886367797852, + "step": 70000 + }, + { + "epoch": 61.98119884981199, + "grad_norm": 0.5228411555290222, + "learning_rate": 1.902077807250221e-05, + "loss": 0.47457176208496094, + "step": 70100 + }, + { + "epoch": 62.06901128069011, + "grad_norm": 0.5100186467170715, + "learning_rate": 1.897656940760389e-05, + "loss": 0.4604149627685547, + "step": 70200 + }, + { + "epoch": 62.15748728157487, + "grad_norm": 0.5119529962539673, + "learning_rate": 1.8932360742705572e-05, + "loss": 0.4561204147338867, + "step": 70300 + }, + { + "epoch": 62.245963282459634, + "grad_norm": 0.5130912065505981, + "learning_rate": 1.888815207780725e-05, + "loss": 0.4596226501464844, + "step": 70400 + }, + { + "epoch": 62.334439283344395, + "grad_norm": 0.5388224720954895, + "learning_rate": 1.8843943412908933e-05, + "loss": 0.4617993927001953, + "step": 70500 + }, + { + "epoch": 62.422915284229155, + "grad_norm": 0.5555194020271301, + "learning_rate": 1.879973474801061e-05, + "loss": 0.46267467498779297, + "step": 70600 + }, + { + "epoch": 62.511391285113916, + "grad_norm": 0.5136281847953796, + "learning_rate": 1.875552608311229e-05, + "loss": 0.4628156280517578, + "step": 70700 + }, + { + "epoch": 62.59986728599867, + "grad_norm": 0.5039867162704468, + "learning_rate": 1.871131741821397e-05, + "loss": 0.4678297805786133, + "step": 70800 + }, + { + "epoch": 62.68834328688343, + "grad_norm": 0.566985547542572, + "learning_rate": 1.866710875331565e-05, + "loss": 0.46522830963134765, + "step": 70900 + }, + { + "epoch": 62.77681928776819, + "grad_norm": 0.5855474472045898, + "learning_rate": 1.8622900088417332e-05, + "loss": 0.46788333892822265, + "step": 71000 + }, + { + "epoch": 62.86529528865295, + "grad_norm": 0.5838083624839783, + "learning_rate": 1.857869142351901e-05, + "loss": 0.4687856292724609, + "step": 71100 + }, + { + "epoch": 62.95377128953771, + "grad_norm": 0.6574355363845825, + "learning_rate": 1.8534482758620693e-05, + "loss": 0.46836143493652344, + "step": 71200 + }, + { + "epoch": 63.04158372041584, + "grad_norm": 0.5751773118972778, + "learning_rate": 1.849027409372237e-05, + "loss": 0.4590755844116211, + "step": 71300 + }, + { + "epoch": 63.1300597213006, + "grad_norm": 0.5056807398796082, + "learning_rate": 1.844606542882405e-05, + "loss": 0.45313865661621094, + "step": 71400 + }, + { + "epoch": 63.21853572218536, + "grad_norm": 0.5403828024864197, + "learning_rate": 1.840185676392573e-05, + "loss": 0.4552134323120117, + "step": 71500 + }, + { + "epoch": 63.30701172307012, + "grad_norm": 0.48244568705558777, + "learning_rate": 1.835764809902741e-05, + "loss": 0.45661014556884766, + "step": 71600 + }, + { + "epoch": 63.39548772395488, + "grad_norm": 0.5753127932548523, + "learning_rate": 1.831343943412909e-05, + "loss": 0.4578168487548828, + "step": 71700 + }, + { + "epoch": 63.48396372483964, + "grad_norm": 0.5782042741775513, + "learning_rate": 1.826923076923077e-05, + "loss": 0.4589107131958008, + "step": 71800 + }, + { + "epoch": 63.5724397257244, + "grad_norm": 0.5895569920539856, + "learning_rate": 1.8225022104332453e-05, + "loss": 0.46304950714111326, + "step": 71900 + }, + { + "epoch": 63.660915726609154, + "grad_norm": 0.6601688265800476, + "learning_rate": 1.818081343943413e-05, + "loss": 0.45953712463378904, + "step": 72000 + }, + { + "epoch": 63.749391727493915, + "grad_norm": 0.5695818066596985, + "learning_rate": 1.813660477453581e-05, + "loss": 0.46058246612548825, + "step": 72100 + }, + { + "epoch": 63.837867728378676, + "grad_norm": 0.5006322264671326, + "learning_rate": 1.809239610963749e-05, + "loss": 0.4630731964111328, + "step": 72200 + }, + { + "epoch": 63.926343729263436, + "grad_norm": 0.5871863961219788, + "learning_rate": 1.804818744473917e-05, + "loss": 0.46295913696289065, + "step": 72300 + }, + { + "epoch": 64.01415616014157, + "grad_norm": 0.5417830348014832, + "learning_rate": 1.8003978779840848e-05, + "loss": 0.4623433303833008, + "step": 72400 + }, + { + "epoch": 64.10263216102632, + "grad_norm": 0.5019242763519287, + "learning_rate": 1.795977011494253e-05, + "loss": 0.44698051452636717, + "step": 72500 + }, + { + "epoch": 64.19110816191107, + "grad_norm": 0.5637330412864685, + "learning_rate": 1.791556145004421e-05, + "loss": 0.4492236328125, + "step": 72600 + }, + { + "epoch": 64.27958416279584, + "grad_norm": 0.5333090424537659, + "learning_rate": 1.787135278514589e-05, + "loss": 0.45192584991455076, + "step": 72700 + }, + { + "epoch": 64.3680601636806, + "grad_norm": 0.5232571363449097, + "learning_rate": 1.782714412024757e-05, + "loss": 0.45244823455810546, + "step": 72800 + }, + { + "epoch": 64.45653616456536, + "grad_norm": 0.4935717284679413, + "learning_rate": 1.778293545534925e-05, + "loss": 0.4529353332519531, + "step": 72900 + }, + { + "epoch": 64.54501216545012, + "grad_norm": 0.5450688600540161, + "learning_rate": 1.7739168877099913e-05, + "loss": 0.4567538833618164, + "step": 73000 + }, + { + "epoch": 64.63348816633489, + "grad_norm": 0.47621846199035645, + "learning_rate": 1.769496021220159e-05, + "loss": 0.4563169097900391, + "step": 73100 + }, + { + "epoch": 64.72196416721964, + "grad_norm": 0.5023945569992065, + "learning_rate": 1.7650751547303274e-05, + "loss": 0.46204959869384765, + "step": 73200 + }, + { + "epoch": 64.8104401681044, + "grad_norm": 0.49148306250572205, + "learning_rate": 1.760654288240495e-05, + "loss": 0.45924064636230466, + "step": 73300 + }, + { + "epoch": 64.89891616898916, + "grad_norm": 0.6161800026893616, + "learning_rate": 1.7562334217506632e-05, + "loss": 0.45994918823242187, + "step": 73400 + }, + { + "epoch": 64.98739216987393, + "grad_norm": 0.5307760238647461, + "learning_rate": 1.7518125552608312e-05, + "loss": 0.461478271484375, + "step": 73500 + }, + { + "epoch": 65.07520460075204, + "grad_norm": 0.588062584400177, + "learning_rate": 1.7474358974358976e-05, + "loss": 0.4461378479003906, + "step": 73600 + }, + { + "epoch": 65.16368060163681, + "grad_norm": 0.5329079627990723, + "learning_rate": 1.7430150309460656e-05, + "loss": 0.4440943145751953, + "step": 73700 + }, + { + "epoch": 65.25215660252157, + "grad_norm": 0.6149891018867493, + "learning_rate": 1.7385941644562333e-05, + "loss": 0.44721881866455077, + "step": 73800 + }, + { + "epoch": 65.34063260340632, + "grad_norm": 0.5438173413276672, + "learning_rate": 1.7341732979664017e-05, + "loss": 0.44954757690429686, + "step": 73900 + }, + { + "epoch": 65.42910860429109, + "grad_norm": 0.5428133606910706, + "learning_rate": 1.7297524314765694e-05, + "loss": 0.45107986450195314, + "step": 74000 + }, + { + "epoch": 65.51758460517584, + "grad_norm": 0.5134186744689941, + "learning_rate": 1.7253315649867374e-05, + "loss": 0.45244071960449217, + "step": 74100 + }, + { + "epoch": 65.60606060606061, + "grad_norm": 0.6233081817626953, + "learning_rate": 1.7209106984969055e-05, + "loss": 0.45329185485839846, + "step": 74200 + }, + { + "epoch": 65.69453660694536, + "grad_norm": 0.5700708627700806, + "learning_rate": 1.7164898320070735e-05, + "loss": 0.4539757537841797, + "step": 74300 + }, + { + "epoch": 65.78301260783013, + "grad_norm": 0.5631476640701294, + "learning_rate": 1.7120689655172416e-05, + "loss": 0.4555579376220703, + "step": 74400 + }, + { + "epoch": 65.87148860871488, + "grad_norm": 0.5964381694793701, + "learning_rate": 1.7076480990274093e-05, + "loss": 0.45496936798095705, + "step": 74500 + }, + { + "epoch": 65.95996460959965, + "grad_norm": 0.5872741341590881, + "learning_rate": 1.7032272325375777e-05, + "loss": 0.45641098022460935, + "step": 74600 + }, + { + "epoch": 66.04777704047777, + "grad_norm": 0.522363543510437, + "learning_rate": 1.6988063660477454e-05, + "loss": 0.4488802337646484, + "step": 74700 + }, + { + "epoch": 66.13625304136254, + "grad_norm": 0.5161113739013672, + "learning_rate": 1.6943854995579134e-05, + "loss": 0.44122817993164065, + "step": 74800 + }, + { + "epoch": 66.22472904224729, + "grad_norm": 0.5127883553504944, + "learning_rate": 1.6899646330680815e-05, + "loss": 0.4447059631347656, + "step": 74900 + }, + { + "epoch": 66.31320504313204, + "grad_norm": 0.5202219486236572, + "learning_rate": 1.6855437665782495e-05, + "loss": 0.4453567123413086, + "step": 75000 + }, + { + "epoch": 66.40168104401681, + "grad_norm": 0.4957808256149292, + "learning_rate": 1.6811229000884172e-05, + "loss": 0.44502986907958986, + "step": 75100 + }, + { + "epoch": 66.49015704490157, + "grad_norm": 0.622518002986908, + "learning_rate": 1.6767020335985853e-05, + "loss": 0.44539188385009765, + "step": 75200 + }, + { + "epoch": 66.57863304578633, + "grad_norm": 0.5333230495452881, + "learning_rate": 1.6722811671087537e-05, + "loss": 0.4479424667358398, + "step": 75300 + }, + { + "epoch": 66.66710904667109, + "grad_norm": 0.536641001701355, + "learning_rate": 1.6678603006189214e-05, + "loss": 0.4486875534057617, + "step": 75400 + }, + { + "epoch": 66.75558504755585, + "grad_norm": 0.6140312552452087, + "learning_rate": 1.6634394341290894e-05, + "loss": 0.45118595123291017, + "step": 75500 + }, + { + "epoch": 66.84406104844061, + "grad_norm": 0.5268392562866211, + "learning_rate": 1.6590185676392574e-05, + "loss": 0.4503518676757812, + "step": 75600 + }, + { + "epoch": 66.93253704932538, + "grad_norm": 0.6316497325897217, + "learning_rate": 1.6545977011494255e-05, + "loss": 0.45311626434326174, + "step": 75700 + }, + { + "epoch": 67.02034948020349, + "grad_norm": 0.4964323937892914, + "learning_rate": 1.6502210433244915e-05, + "loss": 0.44798419952392576, + "step": 75800 + }, + { + "epoch": 67.10882548108826, + "grad_norm": 0.5668012499809265, + "learning_rate": 1.6458001768346595e-05, + "loss": 0.43682758331298827, + "step": 75900 + }, + { + "epoch": 67.19730148197301, + "grad_norm": 0.5451331734657288, + "learning_rate": 1.6413793103448276e-05, + "loss": 0.43744281768798826, + "step": 76000 + }, + { + "epoch": 67.28577748285778, + "grad_norm": 0.5625444650650024, + "learning_rate": 1.6369584438549956e-05, + "loss": 0.44072349548339845, + "step": 76100 + }, + { + "epoch": 67.37425348374254, + "grad_norm": 0.5437332391738892, + "learning_rate": 1.6325375773651637e-05, + "loss": 0.4433360290527344, + "step": 76200 + }, + { + "epoch": 67.46272948462729, + "grad_norm": 0.6005889773368835, + "learning_rate": 1.6281167108753317e-05, + "loss": 0.44355270385742185, + "step": 76300 + }, + { + "epoch": 67.55120548551206, + "grad_norm": 0.6379736065864563, + "learning_rate": 1.6236958443854997e-05, + "loss": 0.4445816421508789, + "step": 76400 + }, + { + "epoch": 67.63968148639681, + "grad_norm": 0.4892788529396057, + "learning_rate": 1.6192749778956675e-05, + "loss": 0.4460066604614258, + "step": 76500 + }, + { + "epoch": 67.72815748728158, + "grad_norm": 0.5238019227981567, + "learning_rate": 1.614854111405836e-05, + "loss": 0.44812583923339844, + "step": 76600 + }, + { + "epoch": 67.81663348816633, + "grad_norm": 0.6448091864585876, + "learning_rate": 1.6104332449160035e-05, + "loss": 0.44679683685302735, + "step": 76700 + }, + { + "epoch": 67.9051094890511, + "grad_norm": 0.501971423625946, + "learning_rate": 1.6060123784261716e-05, + "loss": 0.44675071716308595, + "step": 76800 + }, + { + "epoch": 67.99358548993585, + "grad_norm": 0.5027251243591309, + "learning_rate": 1.6015915119363396e-05, + "loss": 0.450067138671875, + "step": 76900 + }, + { + "epoch": 68.08139792081398, + "grad_norm": 0.5118396878242493, + "learning_rate": 1.5971706454465077e-05, + "loss": 0.4363971710205078, + "step": 77000 + }, + { + "epoch": 68.16987392169874, + "grad_norm": 0.49976325035095215, + "learning_rate": 1.5927497789566757e-05, + "loss": 0.43459579467773435, + "step": 77100 + }, + { + "epoch": 68.2583499225835, + "grad_norm": 0.4591541886329651, + "learning_rate": 1.5883289124668434e-05, + "loss": 0.4374491500854492, + "step": 77200 + }, + { + "epoch": 68.34682592346826, + "grad_norm": 0.5061107277870178, + "learning_rate": 1.5839080459770118e-05, + "loss": 0.4367493438720703, + "step": 77300 + }, + { + "epoch": 68.43530192435301, + "grad_norm": 0.5607414245605469, + "learning_rate": 1.5794871794871795e-05, + "loss": 0.43953250885009765, + "step": 77400 + }, + { + "epoch": 68.52377792523778, + "grad_norm": 0.5758550763130188, + "learning_rate": 1.5750663129973476e-05, + "loss": 0.4412353515625, + "step": 77500 + }, + { + "epoch": 68.61225392612253, + "grad_norm": 0.6092869639396667, + "learning_rate": 1.5706454465075153e-05, + "loss": 0.44133682250976564, + "step": 77600 + }, + { + "epoch": 68.7007299270073, + "grad_norm": 0.6203352808952332, + "learning_rate": 1.5662245800176837e-05, + "loss": 0.4439066696166992, + "step": 77700 + }, + { + "epoch": 68.78920592789206, + "grad_norm": 0.5746839046478271, + "learning_rate": 1.5618037135278517e-05, + "loss": 0.4423197174072266, + "step": 77800 + }, + { + "epoch": 68.87768192877682, + "grad_norm": 0.5136276483535767, + "learning_rate": 1.5573828470380194e-05, + "loss": 0.4460869598388672, + "step": 77900 + }, + { + "epoch": 68.96615792966158, + "grad_norm": 0.4968768358230591, + "learning_rate": 1.5529619805481878e-05, + "loss": 0.4462531280517578, + "step": 78000 + }, + { + "epoch": 69.05397036053971, + "grad_norm": 0.5103012919425964, + "learning_rate": 1.5485411140583555e-05, + "loss": 0.43465484619140626, + "step": 78100 + }, + { + "epoch": 69.14244636142446, + "grad_norm": 0.5626784563064575, + "learning_rate": 1.5441202475685236e-05, + "loss": 0.4333412551879883, + "step": 78200 + }, + { + "epoch": 69.23092236230923, + "grad_norm": 0.5118581652641296, + "learning_rate": 1.5396993810786913e-05, + "loss": 0.4336922836303711, + "step": 78300 + }, + { + "epoch": 69.31939836319398, + "grad_norm": 0.5944911241531372, + "learning_rate": 1.5352785145888596e-05, + "loss": 0.43566287994384767, + "step": 78400 + }, + { + "epoch": 69.40787436407874, + "grad_norm": 0.5433744788169861, + "learning_rate": 1.5308576480990273e-05, + "loss": 0.4361726379394531, + "step": 78500 + }, + { + "epoch": 69.4963503649635, + "grad_norm": 0.614020049571991, + "learning_rate": 1.5264367816091954e-05, + "loss": 0.4380105209350586, + "step": 78600 + }, + { + "epoch": 69.58482636584826, + "grad_norm": 0.5004254579544067, + "learning_rate": 1.5220159151193636e-05, + "loss": 0.4391395950317383, + "step": 78700 + }, + { + "epoch": 69.67330236673303, + "grad_norm": 0.522055983543396, + "learning_rate": 1.5175950486295315e-05, + "loss": 0.4396755599975586, + "step": 78800 + }, + { + "epoch": 69.76177836761778, + "grad_norm": 0.524988055229187, + "learning_rate": 1.5131741821396994e-05, + "loss": 0.4374229431152344, + "step": 78900 + }, + { + "epoch": 69.85025436850255, + "grad_norm": 0.5780676603317261, + "learning_rate": 1.5087533156498674e-05, + "loss": 0.4402974319458008, + "step": 79000 + }, + { + "epoch": 69.9387303693873, + "grad_norm": 0.5651708841323853, + "learning_rate": 1.5043324491600355e-05, + "loss": 0.44202667236328125, + "step": 79100 + }, + { + "epoch": 70.02654280026543, + "grad_norm": 0.48370227217674255, + "learning_rate": 1.4999557913351018e-05, + "loss": 0.4367184829711914, + "step": 79200 + }, + { + "epoch": 70.11501880115019, + "grad_norm": 0.5551156401634216, + "learning_rate": 1.4955349248452696e-05, + "loss": 0.42862590789794924, + "step": 79300 + }, + { + "epoch": 70.20349480203495, + "grad_norm": 0.5126725435256958, + "learning_rate": 1.4911140583554379e-05, + "loss": 0.4319373321533203, + "step": 79400 + }, + { + "epoch": 70.2919708029197, + "grad_norm": 0.5189195871353149, + "learning_rate": 1.4866931918656057e-05, + "loss": 0.4309040832519531, + "step": 79500 + }, + { + "epoch": 70.38044680380447, + "grad_norm": 0.49422213435173035, + "learning_rate": 1.4822723253757736e-05, + "loss": 0.43275665283203124, + "step": 79600 + }, + { + "epoch": 70.46892280468923, + "grad_norm": 0.49081242084503174, + "learning_rate": 1.4778514588859418e-05, + "loss": 0.4326107406616211, + "step": 79700 + }, + { + "epoch": 70.55739880557398, + "grad_norm": 0.5408063530921936, + "learning_rate": 1.4734305923961097e-05, + "loss": 0.4341436004638672, + "step": 79800 + }, + { + "epoch": 70.64587480645875, + "grad_norm": 0.4664778411388397, + "learning_rate": 1.4690097259062778e-05, + "loss": 0.4358782577514648, + "step": 79900 + }, + { + "epoch": 70.7343508073435, + "grad_norm": 0.5463866591453552, + "learning_rate": 1.4645888594164456e-05, + "loss": 0.4348703384399414, + "step": 80000 + }, + { + "epoch": 70.82282680822827, + "grad_norm": 0.5187687873840332, + "learning_rate": 1.4601679929266138e-05, + "loss": 0.43734962463378907, + "step": 80100 + }, + { + "epoch": 70.91130280911302, + "grad_norm": 0.4700576961040497, + "learning_rate": 1.4557471264367817e-05, + "loss": 0.43692012786865236, + "step": 80200 + }, + { + "epoch": 70.99977880999779, + "grad_norm": 0.5413524508476257, + "learning_rate": 1.4513262599469496e-05, + "loss": 0.43848495483398436, + "step": 80300 + }, + { + "epoch": 71.08759124087591, + "grad_norm": 0.5619797110557556, + "learning_rate": 1.4469053934571178e-05, + "loss": 0.4241709899902344, + "step": 80400 + }, + { + "epoch": 71.17606724176068, + "grad_norm": 0.5617126226425171, + "learning_rate": 1.4424845269672857e-05, + "loss": 0.42585777282714843, + "step": 80500 + }, + { + "epoch": 71.26454324264543, + "grad_norm": 0.6131432056427002, + "learning_rate": 1.4380636604774536e-05, + "loss": 0.42857707977294923, + "step": 80600 + }, + { + "epoch": 71.3530192435302, + "grad_norm": 0.5178084969520569, + "learning_rate": 1.4336427939876216e-05, + "loss": 0.4283063507080078, + "step": 80700 + }, + { + "epoch": 71.44149524441495, + "grad_norm": 0.4994112253189087, + "learning_rate": 1.4292219274977897e-05, + "loss": 0.43106334686279296, + "step": 80800 + }, + { + "epoch": 71.5299712452997, + "grad_norm": 0.5411744713783264, + "learning_rate": 1.4248010610079577e-05, + "loss": 0.43190105438232423, + "step": 80900 + }, + { + "epoch": 71.61844724618447, + "grad_norm": 0.5602013468742371, + "learning_rate": 1.4203801945181256e-05, + "loss": 0.4335565185546875, + "step": 81000 + }, + { + "epoch": 71.70692324706923, + "grad_norm": 0.5469107031822205, + "learning_rate": 1.4159593280282938e-05, + "loss": 0.4339017105102539, + "step": 81100 + }, + { + "epoch": 71.795399247954, + "grad_norm": 0.5971689224243164, + "learning_rate": 1.4115384615384617e-05, + "loss": 0.43302181243896487, + "step": 81200 + }, + { + "epoch": 71.88387524883875, + "grad_norm": 0.5518947243690491, + "learning_rate": 1.4071175950486295e-05, + "loss": 0.4339981460571289, + "step": 81300 + }, + { + "epoch": 71.97235124972352, + "grad_norm": 0.46094366908073425, + "learning_rate": 1.4026967285587974e-05, + "loss": 0.4368946075439453, + "step": 81400 + }, + { + "epoch": 72.06016368060163, + "grad_norm": 0.5013940334320068, + "learning_rate": 1.3983200707338639e-05, + "loss": 0.4272830581665039, + "step": 81500 + }, + { + "epoch": 72.1486396814864, + "grad_norm": 0.5779539346694946, + "learning_rate": 1.3938992042440318e-05, + "loss": 0.4237482452392578, + "step": 81600 + }, + { + "epoch": 72.23711568237115, + "grad_norm": 0.5799530744552612, + "learning_rate": 1.3894783377541998e-05, + "loss": 0.4221677398681641, + "step": 81700 + }, + { + "epoch": 72.32559168325592, + "grad_norm": 0.4773975908756256, + "learning_rate": 1.385057471264368e-05, + "loss": 0.4251049041748047, + "step": 81800 + }, + { + "epoch": 72.41406768414068, + "grad_norm": 0.5311180353164673, + "learning_rate": 1.380636604774536e-05, + "loss": 0.42632369995117186, + "step": 81900 + }, + { + "epoch": 72.50254368502544, + "grad_norm": 0.47812601923942566, + "learning_rate": 1.3762157382847038e-05, + "loss": 0.42722888946533205, + "step": 82000 + }, + { + "epoch": 72.5910196859102, + "grad_norm": 0.606674313545227, + "learning_rate": 1.371794871794872e-05, + "loss": 0.4295787811279297, + "step": 82100 + }, + { + "epoch": 72.67949568679495, + "grad_norm": 0.5414536595344543, + "learning_rate": 1.3673740053050399e-05, + "loss": 0.4311911392211914, + "step": 82200 + }, + { + "epoch": 72.76797168767972, + "grad_norm": 0.5214236974716187, + "learning_rate": 1.3629531388152078e-05, + "loss": 0.4323184585571289, + "step": 82300 + }, + { + "epoch": 72.85644768856447, + "grad_norm": 0.531461238861084, + "learning_rate": 1.3585322723253756e-05, + "loss": 0.43523616790771485, + "step": 82400 + }, + { + "epoch": 72.94492368944924, + "grad_norm": 0.550273597240448, + "learning_rate": 1.3541114058355439e-05, + "loss": 0.4310142517089844, + "step": 82500 + }, + { + "epoch": 73.03273612032736, + "grad_norm": 0.47776085138320923, + "learning_rate": 1.3496905393457119e-05, + "loss": 0.4287875747680664, + "step": 82600 + }, + { + "epoch": 73.12121212121212, + "grad_norm": 0.4990812838077545, + "learning_rate": 1.3452696728558798e-05, + "loss": 0.42051288604736325, + "step": 82700 + }, + { + "epoch": 73.20968812209688, + "grad_norm": 0.5124841332435608, + "learning_rate": 1.340848806366048e-05, + "loss": 0.4193102264404297, + "step": 82800 + }, + { + "epoch": 73.29816412298165, + "grad_norm": 0.5289502739906311, + "learning_rate": 1.3364279398762159e-05, + "loss": 0.42208141326904297, + "step": 82900 + }, + { + "epoch": 73.3866401238664, + "grad_norm": 0.4958449602127075, + "learning_rate": 1.3320070733863837e-05, + "loss": 0.42313686370849607, + "step": 83000 + }, + { + "epoch": 73.47511612475117, + "grad_norm": 0.5278774499893188, + "learning_rate": 1.3275862068965516e-05, + "loss": 0.42546688079833983, + "step": 83100 + }, + { + "epoch": 73.56359212563592, + "grad_norm": 0.5365238785743713, + "learning_rate": 1.3231653404067198e-05, + "loss": 0.42514255523681643, + "step": 83200 + }, + { + "epoch": 73.65206812652067, + "grad_norm": 0.5327147841453552, + "learning_rate": 1.3187444739168877e-05, + "loss": 0.42642066955566404, + "step": 83300 + }, + { + "epoch": 73.74054412740544, + "grad_norm": 0.5245737433433533, + "learning_rate": 1.3143236074270558e-05, + "loss": 0.4263890838623047, + "step": 83400 + }, + { + "epoch": 73.8290201282902, + "grad_norm": 0.5159674286842346, + "learning_rate": 1.3099027409372238e-05, + "loss": 0.428508415222168, + "step": 83500 + }, + { + "epoch": 73.91749612917496, + "grad_norm": 0.47965142130851746, + "learning_rate": 1.3054818744473918e-05, + "loss": 0.42886260986328123, + "step": 83600 + }, + { + "epoch": 74.00530856005308, + "grad_norm": 0.573679506778717, + "learning_rate": 1.301105216622458e-05, + "loss": 0.4288605499267578, + "step": 83700 + }, + { + "epoch": 74.09378456093785, + "grad_norm": 0.5544322729110718, + "learning_rate": 1.2966843501326262e-05, + "loss": 0.4174742126464844, + "step": 83800 + }, + { + "epoch": 74.1822605618226, + "grad_norm": 0.4993799030780792, + "learning_rate": 1.2922634836427941e-05, + "loss": 0.4191867828369141, + "step": 83900 + }, + { + "epoch": 74.27073656270737, + "grad_norm": 0.57634037733078, + "learning_rate": 1.287842617152962e-05, + "loss": 0.42080997467041015, + "step": 84000 + }, + { + "epoch": 74.35921256359212, + "grad_norm": 0.5524028539657593, + "learning_rate": 1.2834217506631298e-05, + "loss": 0.41995132446289063, + "step": 84100 + }, + { + "epoch": 74.44768856447689, + "grad_norm": 0.5109556913375854, + "learning_rate": 1.279000884173298e-05, + "loss": 0.4207102584838867, + "step": 84200 + }, + { + "epoch": 74.53616456536164, + "grad_norm": 0.6384374499320984, + "learning_rate": 1.2745800176834661e-05, + "loss": 0.42162609100341797, + "step": 84300 + }, + { + "epoch": 74.6246405662464, + "grad_norm": 0.5029319524765015, + "learning_rate": 1.270159151193634e-05, + "loss": 0.4232307815551758, + "step": 84400 + }, + { + "epoch": 74.71311656713117, + "grad_norm": 0.49697303771972656, + "learning_rate": 1.2657382847038022e-05, + "loss": 0.4233212661743164, + "step": 84500 + }, + { + "epoch": 74.80159256801592, + "grad_norm": 0.5748586058616638, + "learning_rate": 1.26131741821397e-05, + "loss": 0.42522281646728516, + "step": 84600 + }, + { + "epoch": 74.89006856890069, + "grad_norm": 0.5335224866867065, + "learning_rate": 1.256896551724138e-05, + "loss": 0.4264080047607422, + "step": 84700 + }, + { + "epoch": 74.97854456978544, + "grad_norm": 0.5223293900489807, + "learning_rate": 1.2524756852343058e-05, + "loss": 0.4248130416870117, + "step": 84800 + }, + { + "epoch": 75.06635700066357, + "grad_norm": 0.588205099105835, + "learning_rate": 1.2480548187444739e-05, + "loss": 0.41714618682861326, + "step": 84900 + }, + { + "epoch": 75.15483300154833, + "grad_norm": 0.4878210127353668, + "learning_rate": 1.2436339522546419e-05, + "loss": 0.41694087982177735, + "step": 85000 + }, + { + "epoch": 75.2433090024331, + "grad_norm": 0.5826809406280518, + "learning_rate": 1.23921308576481e-05, + "loss": 0.41839481353759767, + "step": 85100 + }, + { + "epoch": 75.33178500331785, + "grad_norm": 0.5703395009040833, + "learning_rate": 1.234792219274978e-05, + "loss": 0.419650993347168, + "step": 85200 + }, + { + "epoch": 75.42026100420262, + "grad_norm": 0.5960374474525452, + "learning_rate": 1.230371352785146e-05, + "loss": 0.41910491943359374, + "step": 85300 + }, + { + "epoch": 75.50873700508737, + "grad_norm": 0.5564795732498169, + "learning_rate": 1.225950486295314e-05, + "loss": 0.42010501861572264, + "step": 85400 + }, + { + "epoch": 75.59721300597214, + "grad_norm": 0.5871827006340027, + "learning_rate": 1.221529619805482e-05, + "loss": 0.41939094543457034, + "step": 85500 + }, + { + "epoch": 75.68568900685689, + "grad_norm": 0.6139041185379028, + "learning_rate": 1.2171087533156498e-05, + "loss": 0.42172611236572266, + "step": 85600 + }, + { + "epoch": 75.77416500774164, + "grad_norm": 0.5693202614784241, + "learning_rate": 1.2126878868258179e-05, + "loss": 0.4217537307739258, + "step": 85700 + }, + { + "epoch": 75.86264100862641, + "grad_norm": 0.5371018648147583, + "learning_rate": 1.208267020335986e-05, + "loss": 0.4220458984375, + "step": 85800 + }, + { + "epoch": 75.95111700951117, + "grad_norm": 0.5617541074752808, + "learning_rate": 1.2038461538461538e-05, + "loss": 0.4248412322998047, + "step": 85900 + }, + { + "epoch": 76.0389294403893, + "grad_norm": 0.5177831649780273, + "learning_rate": 1.1994694960212203e-05, + "loss": 0.41939964294433596, + "step": 86000 + }, + { + "epoch": 76.12740544127405, + "grad_norm": 0.5142802000045776, + "learning_rate": 1.1950486295313883e-05, + "loss": 0.4111063003540039, + "step": 86100 + }, + { + "epoch": 76.21588144215882, + "grad_norm": 0.4861648976802826, + "learning_rate": 1.1906277630415562e-05, + "loss": 0.4148457717895508, + "step": 86200 + }, + { + "epoch": 76.30435744304357, + "grad_norm": 0.5097411870956421, + "learning_rate": 1.1862068965517243e-05, + "loss": 0.4158660125732422, + "step": 86300 + }, + { + "epoch": 76.39283344392834, + "grad_norm": 0.4740864336490631, + "learning_rate": 1.1817860300618921e-05, + "loss": 0.4178118133544922, + "step": 86400 + }, + { + "epoch": 76.48130944481309, + "grad_norm": 0.44249430298805237, + "learning_rate": 1.1773651635720602e-05, + "loss": 0.4165281677246094, + "step": 86500 + }, + { + "epoch": 76.56978544569786, + "grad_norm": 0.5490387082099915, + "learning_rate": 1.172944297082228e-05, + "loss": 0.4198506927490234, + "step": 86600 + }, + { + "epoch": 76.65826144658261, + "grad_norm": 0.5175479650497437, + "learning_rate": 1.1685234305923961e-05, + "loss": 0.4220100402832031, + "step": 86700 + }, + { + "epoch": 76.74673744746737, + "grad_norm": 0.5073688626289368, + "learning_rate": 1.1641025641025642e-05, + "loss": 0.4184294891357422, + "step": 86800 + }, + { + "epoch": 76.83521344835214, + "grad_norm": 0.6137869358062744, + "learning_rate": 1.1596816976127322e-05, + "loss": 0.41919185638427736, + "step": 86900 + }, + { + "epoch": 76.92368944923689, + "grad_norm": 0.5274661183357239, + "learning_rate": 1.1552608311229002e-05, + "loss": 0.4193117141723633, + "step": 87000 + }, + { + "epoch": 77.01150188011502, + "grad_norm": 0.578369677066803, + "learning_rate": 1.1508399646330681e-05, + "loss": 0.4192862701416016, + "step": 87100 + }, + { + "epoch": 77.09997788099977, + "grad_norm": 0.6028936505317688, + "learning_rate": 1.1464190981432362e-05, + "loss": 0.40931896209716795, + "step": 87200 + }, + { + "epoch": 77.18845388188454, + "grad_norm": 0.4915790557861328, + "learning_rate": 1.141998231653404e-05, + "loss": 0.41025619506835936, + "step": 87300 + }, + { + "epoch": 77.2769298827693, + "grad_norm": 0.5164591073989868, + "learning_rate": 1.1375773651635721e-05, + "loss": 0.4112412643432617, + "step": 87400 + }, + { + "epoch": 77.36540588365406, + "grad_norm": 0.48311275243759155, + "learning_rate": 1.1331564986737401e-05, + "loss": 0.4144105911254883, + "step": 87500 + }, + { + "epoch": 77.45388188453882, + "grad_norm": 0.46419015526771545, + "learning_rate": 1.128735632183908e-05, + "loss": 0.41563541412353516, + "step": 87600 + }, + { + "epoch": 77.54235788542358, + "grad_norm": 0.6288944482803345, + "learning_rate": 1.124314765694076e-05, + "loss": 0.41669620513916017, + "step": 87700 + }, + { + "epoch": 77.63083388630834, + "grad_norm": 0.497126966714859, + "learning_rate": 1.1198938992042441e-05, + "loss": 0.41618637084960936, + "step": 87800 + }, + { + "epoch": 77.7193098871931, + "grad_norm": 0.5373407602310181, + "learning_rate": 1.1154730327144122e-05, + "loss": 0.41614810943603514, + "step": 87900 + }, + { + "epoch": 77.80778588807786, + "grad_norm": 0.519382894039154, + "learning_rate": 1.1110521662245802e-05, + "loss": 0.41859901428222657, + "step": 88000 + }, + { + "epoch": 77.89626188896261, + "grad_norm": 0.5001983046531677, + "learning_rate": 1.106631299734748e-05, + "loss": 0.418219108581543, + "step": 88100 + }, + { + "epoch": 77.98473788984738, + "grad_norm": 0.5034019947052002, + "learning_rate": 1.1022104332449161e-05, + "loss": 0.4178015899658203, + "step": 88200 + }, + { + "epoch": 78.0725503207255, + "grad_norm": 0.5158605575561523, + "learning_rate": 1.097789566755084e-05, + "loss": 0.4091143035888672, + "step": 88300 + }, + { + "epoch": 78.16102632161027, + "grad_norm": 0.48502761125564575, + "learning_rate": 1.093368700265252e-05, + "loss": 0.40843994140625, + "step": 88400 + }, + { + "epoch": 78.24950232249502, + "grad_norm": 0.5448765754699707, + "learning_rate": 1.08894783377542e-05, + "loss": 0.4109685516357422, + "step": 88500 + }, + { + "epoch": 78.33797832337979, + "grad_norm": 0.52455735206604, + "learning_rate": 1.084526967285588e-05, + "loss": 0.4108180236816406, + "step": 88600 + }, + { + "epoch": 78.42645432426454, + "grad_norm": 0.49440670013427734, + "learning_rate": 1.080106100795756e-05, + "loss": 0.41148426055908205, + "step": 88700 + }, + { + "epoch": 78.51493032514931, + "grad_norm": 0.5575434565544128, + "learning_rate": 1.075685234305924e-05, + "loss": 0.4121563720703125, + "step": 88800 + }, + { + "epoch": 78.60340632603406, + "grad_norm": 0.5276569724082947, + "learning_rate": 1.0712643678160921e-05, + "loss": 0.41357189178466797, + "step": 88900 + }, + { + "epoch": 78.69188232691883, + "grad_norm": 0.5279592871665955, + "learning_rate": 1.06684350132626e-05, + "loss": 0.4147018814086914, + "step": 89000 + }, + { + "epoch": 78.78035832780358, + "grad_norm": 0.4984647333621979, + "learning_rate": 1.062422634836428e-05, + "loss": 0.41413829803466795, + "step": 89100 + }, + { + "epoch": 78.86883432868834, + "grad_norm": 0.5556148886680603, + "learning_rate": 1.0580017683465959e-05, + "loss": 0.4168708419799805, + "step": 89200 + }, + { + "epoch": 78.9573103295731, + "grad_norm": 0.46219438314437866, + "learning_rate": 1.053580901856764e-05, + "loss": 0.41841983795166016, + "step": 89300 + }, + { + "epoch": 79.04512276045122, + "grad_norm": 0.49136674404144287, + "learning_rate": 1.0492042440318303e-05, + "loss": 0.41013729095458984, + "step": 89400 + }, + { + "epoch": 79.13359876133599, + "grad_norm": 0.5096011161804199, + "learning_rate": 1.0447833775419983e-05, + "loss": 0.4057589340209961, + "step": 89500 + }, + { + "epoch": 79.22207476222074, + "grad_norm": 0.4563368558883667, + "learning_rate": 1.0403625110521663e-05, + "loss": 0.4064152526855469, + "step": 89600 + }, + { + "epoch": 79.31055076310551, + "grad_norm": 0.5743097066879272, + "learning_rate": 1.0359416445623344e-05, + "loss": 0.40998432159423825, + "step": 89700 + }, + { + "epoch": 79.39902676399026, + "grad_norm": 0.46749743819236755, + "learning_rate": 1.0315207780725023e-05, + "loss": 0.40825595855712893, + "step": 89800 + }, + { + "epoch": 79.48750276487503, + "grad_norm": 0.522980272769928, + "learning_rate": 1.0270999115826703e-05, + "loss": 0.4116529083251953, + "step": 89900 + }, + { + "epoch": 79.57597876575979, + "grad_norm": 0.4576069712638855, + "learning_rate": 1.0226790450928382e-05, + "loss": 0.41039798736572264, + "step": 90000 + }, + { + "epoch": 79.66445476664455, + "grad_norm": 0.574553370475769, + "learning_rate": 1.0182581786030062e-05, + "loss": 0.4103997802734375, + "step": 90100 + }, + { + "epoch": 79.7529307675293, + "grad_norm": 0.5592597126960754, + "learning_rate": 1.0138373121131741e-05, + "loss": 0.4123684310913086, + "step": 90200 + }, + { + "epoch": 79.84140676841407, + "grad_norm": 0.5754570364952087, + "learning_rate": 1.0094164456233422e-05, + "loss": 0.4138601684570313, + "step": 90300 + }, + { + "epoch": 79.92988276929883, + "grad_norm": 0.5830336213111877, + "learning_rate": 1.0049955791335102e-05, + "loss": 0.41378173828125, + "step": 90400 + }, + { + "epoch": 80.01769520017695, + "grad_norm": 0.473369836807251, + "learning_rate": 1.0005747126436783e-05, + "loss": 0.41222110748291013, + "step": 90500 + }, + { + "epoch": 80.10617120106171, + "grad_norm": 0.5327860116958618, + "learning_rate": 9.961538461538463e-06, + "loss": 0.4058869934082031, + "step": 90600 + }, + { + "epoch": 80.19464720194647, + "grad_norm": 0.5304612517356873, + "learning_rate": 9.917329796640142e-06, + "loss": 0.4061882781982422, + "step": 90700 + }, + { + "epoch": 80.28312320283123, + "grad_norm": 0.5240916013717651, + "learning_rate": 9.873121131741822e-06, + "loss": 0.40706119537353513, + "step": 90800 + }, + { + "epoch": 80.37159920371599, + "grad_norm": 0.4663858413696289, + "learning_rate": 9.828912466843501e-06, + "loss": 0.4077639389038086, + "step": 90900 + }, + { + "epoch": 80.46007520460076, + "grad_norm": 0.4718465805053711, + "learning_rate": 9.784703801945181e-06, + "loss": 0.4078546905517578, + "step": 91000 + }, + { + "epoch": 80.54855120548551, + "grad_norm": 0.45132529735565186, + "learning_rate": 9.740495137046862e-06, + "loss": 0.40724002838134765, + "step": 91100 + }, + { + "epoch": 80.63702720637028, + "grad_norm": 0.4961422085762024, + "learning_rate": 9.69628647214854e-06, + "loss": 0.4097640609741211, + "step": 91200 + }, + { + "epoch": 80.72550320725503, + "grad_norm": 0.5276188850402832, + "learning_rate": 9.652077807250221e-06, + "loss": 0.41011890411376956, + "step": 91300 + }, + { + "epoch": 80.8139792081398, + "grad_norm": 0.48676180839538574, + "learning_rate": 9.607869142351902e-06, + "loss": 0.41075672149658204, + "step": 91400 + }, + { + "epoch": 80.90245520902455, + "grad_norm": 0.5812916159629822, + "learning_rate": 9.563660477453582e-06, + "loss": 0.4131761932373047, + "step": 91500 + }, + { + "epoch": 80.9909312099093, + "grad_norm": 0.5730577707290649, + "learning_rate": 9.51945181255526e-06, + "loss": 0.41234848022460935, + "step": 91600 + }, + { + "epoch": 81.07874364078744, + "grad_norm": 0.5240619778633118, + "learning_rate": 9.475685234305924e-06, + "loss": 0.40376312255859376, + "step": 91700 + }, + { + "epoch": 81.16721964167219, + "grad_norm": 0.46626827120780945, + "learning_rate": 9.431476569407604e-06, + "loss": 0.40396995544433595, + "step": 91800 + }, + { + "epoch": 81.25569564255696, + "grad_norm": 0.49117109179496765, + "learning_rate": 9.387267904509283e-06, + "loss": 0.4028842544555664, + "step": 91900 + }, + { + "epoch": 81.34417164344171, + "grad_norm": 0.5428334474563599, + "learning_rate": 9.343059239610964e-06, + "loss": 0.4046338653564453, + "step": 92000 + }, + { + "epoch": 81.43264764432648, + "grad_norm": 0.5240166783332825, + "learning_rate": 9.298850574712644e-06, + "loss": 0.4052513885498047, + "step": 92100 + }, + { + "epoch": 81.52112364521123, + "grad_norm": 0.4899362325668335, + "learning_rate": 9.254641909814325e-06, + "loss": 0.4052754974365234, + "step": 92200 + }, + { + "epoch": 81.609599646096, + "grad_norm": 0.46969664096832275, + "learning_rate": 9.210433244916005e-06, + "loss": 0.4072676086425781, + "step": 92300 + }, + { + "epoch": 81.69807564698075, + "grad_norm": 0.4990880489349365, + "learning_rate": 9.166224580017684e-06, + "loss": 0.40702415466308595, + "step": 92400 + }, + { + "epoch": 81.78655164786552, + "grad_norm": 0.5545535087585449, + "learning_rate": 9.122015915119364e-06, + "loss": 0.4103099822998047, + "step": 92500 + }, + { + "epoch": 81.87502764875028, + "grad_norm": 0.5591033101081848, + "learning_rate": 9.077807250221043e-06, + "loss": 0.4087317276000977, + "step": 92600 + }, + { + "epoch": 81.96350364963503, + "grad_norm": 0.5289734601974487, + "learning_rate": 9.033598585322723e-06, + "loss": 0.4112258529663086, + "step": 92700 + }, + { + "epoch": 82.05131608051316, + "grad_norm": 0.59573894739151, + "learning_rate": 8.989389920424404e-06, + "loss": 0.40506195068359374, + "step": 92800 + }, + { + "epoch": 82.13979208139791, + "grad_norm": 0.4581588804721832, + "learning_rate": 8.945181255526083e-06, + "loss": 0.401633186340332, + "step": 92900 + }, + { + "epoch": 82.22826808228268, + "grad_norm": 0.4607727527618408, + "learning_rate": 8.900972590627763e-06, + "loss": 0.4030620193481445, + "step": 93000 + }, + { + "epoch": 82.31674408316744, + "grad_norm": 0.5693869590759277, + "learning_rate": 8.856763925729444e-06, + "loss": 0.4034944152832031, + "step": 93100 + }, + { + "epoch": 82.4052200840522, + "grad_norm": 0.4679562449455261, + "learning_rate": 8.812555260831124e-06, + "loss": 0.40353385925292967, + "step": 93200 + }, + { + "epoch": 82.49369608493696, + "grad_norm": 0.4970017373561859, + "learning_rate": 8.768346595932803e-06, + "loss": 0.4040465545654297, + "step": 93300 + }, + { + "epoch": 82.58217208582172, + "grad_norm": 0.4850037097930908, + "learning_rate": 8.724137931034483e-06, + "loss": 0.40520496368408204, + "step": 93400 + }, + { + "epoch": 82.67064808670648, + "grad_norm": 0.5304952263832092, + "learning_rate": 8.679929266136164e-06, + "loss": 0.4062754440307617, + "step": 93500 + }, + { + "epoch": 82.75912408759125, + "grad_norm": 0.5124515891075134, + "learning_rate": 8.635720601237842e-06, + "loss": 0.4042987442016602, + "step": 93600 + }, + { + "epoch": 82.847600088476, + "grad_norm": 0.5527506470680237, + "learning_rate": 8.591511936339523e-06, + "loss": 0.4051095199584961, + "step": 93700 + }, + { + "epoch": 82.93607608936077, + "grad_norm": 0.4627765119075775, + "learning_rate": 8.547303271441202e-06, + "loss": 0.4065189743041992, + "step": 93800 + }, + { + "epoch": 83.02388852023888, + "grad_norm": 0.47690948843955994, + "learning_rate": 8.503094606542882e-06, + "loss": 0.4059687042236328, + "step": 93900 + }, + { + "epoch": 83.11236452112365, + "grad_norm": 0.543329656124115, + "learning_rate": 8.458885941644563e-06, + "loss": 0.40105613708496096, + "step": 94000 + }, + { + "epoch": 83.2008405220084, + "grad_norm": 0.5308240056037903, + "learning_rate": 8.414677276746243e-06, + "loss": 0.3999287414550781, + "step": 94100 + }, + { + "epoch": 83.28931652289316, + "grad_norm": 0.5098600387573242, + "learning_rate": 8.370468611847924e-06, + "loss": 0.3998809051513672, + "step": 94200 + }, + { + "epoch": 83.37779252377793, + "grad_norm": 0.5461894273757935, + "learning_rate": 8.326259946949602e-06, + "loss": 0.4027032470703125, + "step": 94300 + }, + { + "epoch": 83.46626852466268, + "grad_norm": 0.5599612593650818, + "learning_rate": 8.282051282051283e-06, + "loss": 0.4018612289428711, + "step": 94400 + }, + { + "epoch": 83.55474452554745, + "grad_norm": 0.5953245162963867, + "learning_rate": 8.237842617152961e-06, + "loss": 0.4048320770263672, + "step": 94500 + }, + { + "epoch": 83.6432205264322, + "grad_norm": 0.5232775211334229, + "learning_rate": 8.193633952254642e-06, + "loss": 0.40312889099121096, + "step": 94600 + }, + { + "epoch": 83.73169652731697, + "grad_norm": 0.5057620406150818, + "learning_rate": 8.149425287356322e-06, + "loss": 0.4016009521484375, + "step": 94700 + }, + { + "epoch": 83.82017252820172, + "grad_norm": 0.54839026927948, + "learning_rate": 8.105216622458001e-06, + "loss": 0.40390682220458984, + "step": 94800 + }, + { + "epoch": 83.90864852908649, + "grad_norm": 0.42211759090423584, + "learning_rate": 8.061007957559683e-06, + "loss": 0.4043146514892578, + "step": 94900 + }, + { + "epoch": 83.99712452997125, + "grad_norm": 0.46576666831970215, + "learning_rate": 8.016799292661362e-06, + "loss": 0.4071781539916992, + "step": 95000 + }, + { + "epoch": 84.08493696084938, + "grad_norm": 0.48286134004592896, + "learning_rate": 7.973032714412025e-06, + "loss": 0.3980902862548828, + "step": 95100 + }, + { + "epoch": 84.17341296173413, + "grad_norm": 0.5105409026145935, + "learning_rate": 7.928824049513706e-06, + "loss": 0.39626029968261717, + "step": 95200 + }, + { + "epoch": 84.26188896261888, + "grad_norm": 0.5280846357345581, + "learning_rate": 7.884615384615384e-06, + "loss": 0.39923973083496095, + "step": 95300 + }, + { + "epoch": 84.35036496350365, + "grad_norm": 0.49487778544425964, + "learning_rate": 7.840406719717065e-06, + "loss": 0.39867469787597654, + "step": 95400 + }, + { + "epoch": 84.4388409643884, + "grad_norm": 0.5105910897254944, + "learning_rate": 7.796198054818744e-06, + "loss": 0.4000941467285156, + "step": 95500 + }, + { + "epoch": 84.52731696527317, + "grad_norm": 0.49424290657043457, + "learning_rate": 7.751989389920424e-06, + "loss": 0.4025596618652344, + "step": 95600 + }, + { + "epoch": 84.61579296615793, + "grad_norm": 0.5923288464546204, + "learning_rate": 7.707780725022105e-06, + "loss": 0.40207050323486326, + "step": 95700 + }, + { + "epoch": 84.7042689670427, + "grad_norm": 0.47270065546035767, + "learning_rate": 7.663572060123785e-06, + "loss": 0.40140762329101565, + "step": 95800 + }, + { + "epoch": 84.79274496792745, + "grad_norm": 0.4515872597694397, + "learning_rate": 7.619363395225465e-06, + "loss": 0.4039121627807617, + "step": 95900 + }, + { + "epoch": 84.88122096881222, + "grad_norm": 0.5799027681350708, + "learning_rate": 7.575154730327144e-06, + "loss": 0.40215221405029294, + "step": 96000 + }, + { + "epoch": 84.96969696969697, + "grad_norm": 0.5158770680427551, + "learning_rate": 7.530946065428825e-06, + "loss": 0.40449161529541017, + "step": 96100 + }, + { + "epoch": 85.0575094005751, + "grad_norm": 0.5103220343589783, + "learning_rate": 7.4867374005305035e-06, + "loss": 0.3986453628540039, + "step": 96200 + }, + { + "epoch": 85.14598540145985, + "grad_norm": 0.48847347497940063, + "learning_rate": 7.442528735632184e-06, + "loss": 0.3962085723876953, + "step": 96300 + }, + { + "epoch": 85.2344614023446, + "grad_norm": 0.5786899328231812, + "learning_rate": 7.398320070733865e-06, + "loss": 0.398316535949707, + "step": 96400 + }, + { + "epoch": 85.32293740322937, + "grad_norm": 0.4464615285396576, + "learning_rate": 7.354111405835544e-06, + "loss": 0.39748287200927734, + "step": 96500 + }, + { + "epoch": 85.41141340411413, + "grad_norm": 0.5107320547103882, + "learning_rate": 7.3099027409372245e-06, + "loss": 0.399218864440918, + "step": 96600 + }, + { + "epoch": 85.4998894049989, + "grad_norm": 0.5555247068405151, + "learning_rate": 7.265694076038903e-06, + "loss": 0.40016975402832033, + "step": 96700 + }, + { + "epoch": 85.58836540588365, + "grad_norm": 0.46809983253479004, + "learning_rate": 7.2214854111405845e-06, + "loss": 0.39977962493896485, + "step": 96800 + }, + { + "epoch": 85.67684140676842, + "grad_norm": 0.5176143646240234, + "learning_rate": 7.177276746242263e-06, + "loss": 0.39803340911865237, + "step": 96900 + }, + { + "epoch": 85.76531740765317, + "grad_norm": 0.4717543125152588, + "learning_rate": 7.133068081343944e-06, + "loss": 0.4004299545288086, + "step": 97000 + }, + { + "epoch": 85.85379340853794, + "grad_norm": 0.49673059582710266, + "learning_rate": 7.088859416445624e-06, + "loss": 0.40104530334472654, + "step": 97100 + }, + { + "epoch": 85.94226940942269, + "grad_norm": 0.5706076622009277, + "learning_rate": 7.044650751547304e-06, + "loss": 0.40007728576660156, + "step": 97200 + }, + { + "epoch": 86.03008184030082, + "grad_norm": 0.5170352458953857, + "learning_rate": 7.000884173297967e-06, + "loss": 0.39897975921630857, + "step": 97300 + }, + { + "epoch": 86.11855784118558, + "grad_norm": 0.478630930185318, + "learning_rate": 6.956675508399646e-06, + "loss": 0.3933698272705078, + "step": 97400 + }, + { + "epoch": 86.20703384207035, + "grad_norm": 0.5094186067581177, + "learning_rate": 6.912466843501326e-06, + "loss": 0.39624488830566407, + "step": 97500 + }, + { + "epoch": 86.2955098429551, + "grad_norm": 0.5107275247573853, + "learning_rate": 6.868258178603007e-06, + "loss": 0.39685150146484377, + "step": 97600 + }, + { + "epoch": 86.38398584383985, + "grad_norm": 0.5861279964447021, + "learning_rate": 6.824049513704686e-06, + "loss": 0.3973454284667969, + "step": 97700 + }, + { + "epoch": 86.47246184472462, + "grad_norm": 0.490012526512146, + "learning_rate": 6.779840848806367e-06, + "loss": 0.3982046127319336, + "step": 97800 + }, + { + "epoch": 86.56093784560937, + "grad_norm": 0.47647538781166077, + "learning_rate": 6.7356321839080455e-06, + "loss": 0.39851917266845704, + "step": 97900 + }, + { + "epoch": 86.64941384649414, + "grad_norm": 0.45534029603004456, + "learning_rate": 6.691423519009726e-06, + "loss": 0.39754936218261716, + "step": 98000 + }, + { + "epoch": 86.7378898473789, + "grad_norm": 0.5305948257446289, + "learning_rate": 6.647214854111407e-06, + "loss": 0.39900218963623046, + "step": 98100 + }, + { + "epoch": 86.82636584826366, + "grad_norm": 0.48616868257522583, + "learning_rate": 6.603006189213086e-06, + "loss": 0.39878063201904296, + "step": 98200 + }, + { + "epoch": 86.91484184914842, + "grad_norm": 0.4637695252895355, + "learning_rate": 6.5587975243147665e-06, + "loss": 0.39936519622802735, + "step": 98300 + }, + { + "epoch": 87.00265428002655, + "grad_norm": 0.43915867805480957, + "learning_rate": 6.514588859416445e-06, + "loss": 0.39945316314697266, + "step": 98400 + }, + { + "epoch": 87.0911302809113, + "grad_norm": 0.5064729452133179, + "learning_rate": 6.4703801945181265e-06, + "loss": 0.39295291900634766, + "step": 98500 + }, + { + "epoch": 87.17960628179607, + "grad_norm": 0.41172826290130615, + "learning_rate": 6.426171529619805e-06, + "loss": 0.3956099319458008, + "step": 98600 + }, + { + "epoch": 87.26808228268082, + "grad_norm": 0.5156989693641663, + "learning_rate": 6.381962864721486e-06, + "loss": 0.3927472686767578, + "step": 98700 + }, + { + "epoch": 87.35655828356558, + "grad_norm": 0.4864855706691742, + "learning_rate": 6.337754199823166e-06, + "loss": 0.39533439636230466, + "step": 98800 + }, + { + "epoch": 87.44503428445034, + "grad_norm": 0.5469456911087036, + "learning_rate": 6.293545534924846e-06, + "loss": 0.3970512390136719, + "step": 98900 + }, + { + "epoch": 87.5335102853351, + "grad_norm": 0.4618734121322632, + "learning_rate": 6.249336870026525e-06, + "loss": 0.3967998504638672, + "step": 99000 + }, + { + "epoch": 87.62198628621987, + "grad_norm": 0.41789868474006653, + "learning_rate": 6.205128205128206e-06, + "loss": 0.3979497909545898, + "step": 99100 + }, + { + "epoch": 87.71046228710462, + "grad_norm": 0.5439488887786865, + "learning_rate": 6.1609195402298855e-06, + "loss": 0.3960274887084961, + "step": 99200 + }, + { + "epoch": 87.79893828798939, + "grad_norm": 0.46948105096817017, + "learning_rate": 6.116710875331565e-06, + "loss": 0.39781307220458983, + "step": 99300 + }, + { + "epoch": 87.88741428887414, + "grad_norm": 0.4804007411003113, + "learning_rate": 6.0725022104332456e-06, + "loss": 0.39600673675537107, + "step": 99400 + }, + { + "epoch": 87.97589028975891, + "grad_norm": 0.4494355618953705, + "learning_rate": 6.028293545534925e-06, + "loss": 0.3976548385620117, + "step": 99500 + }, + { + "epoch": 88.06370272063702, + "grad_norm": 0.4300312101840973, + "learning_rate": 5.984526967285588e-06, + "loss": 0.3928862762451172, + "step": 99600 + }, + { + "epoch": 88.15217872152179, + "grad_norm": 0.5155128836631775, + "learning_rate": 5.940318302387268e-06, + "loss": 0.39027740478515627, + "step": 99700 + }, + { + "epoch": 88.24065472240655, + "grad_norm": 0.4635615944862366, + "learning_rate": 5.896109637488948e-06, + "loss": 0.3938739776611328, + "step": 99800 + }, + { + "epoch": 88.32913072329131, + "grad_norm": 0.5408588647842407, + "learning_rate": 5.851900972590628e-06, + "loss": 0.3914863967895508, + "step": 99900 + }, + { + "epoch": 88.41760672417607, + "grad_norm": 0.5169259309768677, + "learning_rate": 5.807692307692308e-06, + "loss": 0.3942420959472656, + "step": 100000 + }, + { + "epoch": 88.50608272506082, + "grad_norm": 0.43603307008743286, + "learning_rate": 5.763483642793987e-06, + "loss": 0.3942053604125977, + "step": 100100 + }, + { + "epoch": 88.59455872594559, + "grad_norm": 0.484275758266449, + "learning_rate": 5.719274977895668e-06, + "loss": 0.3953342056274414, + "step": 100200 + }, + { + "epoch": 88.68303472683034, + "grad_norm": 0.4834429621696472, + "learning_rate": 5.675066312997348e-06, + "loss": 0.39478866577148436, + "step": 100300 + }, + { + "epoch": 88.77151072771511, + "grad_norm": 0.5198318362236023, + "learning_rate": 5.630857648099028e-06, + "loss": 0.3973033905029297, + "step": 100400 + }, + { + "epoch": 88.85998672859986, + "grad_norm": 0.5359114408493042, + "learning_rate": 5.586648983200707e-06, + "loss": 0.3963985824584961, + "step": 100500 + }, + { + "epoch": 88.94846272948463, + "grad_norm": 0.47174566984176636, + "learning_rate": 5.542440318302387e-06, + "loss": 0.39962120056152345, + "step": 100600 + }, + { + "epoch": 89.03627516036275, + "grad_norm": 0.5552394986152649, + "learning_rate": 5.498231653404067e-06, + "loss": 0.3942194747924805, + "step": 100700 + }, + { + "epoch": 89.12475116124752, + "grad_norm": 0.4985731840133667, + "learning_rate": 5.454022988505748e-06, + "loss": 0.39029048919677733, + "step": 100800 + }, + { + "epoch": 89.21322716213227, + "grad_norm": 0.5449782013893127, + "learning_rate": 5.4098143236074275e-06, + "loss": 0.391842155456543, + "step": 100900 + }, + { + "epoch": 89.30170316301704, + "grad_norm": 0.47477561235427856, + "learning_rate": 5.365605658709107e-06, + "loss": 0.39065505981445314, + "step": 101000 + }, + { + "epoch": 89.39017916390179, + "grad_norm": 0.5775418281555176, + "learning_rate": 5.3213969938107875e-06, + "loss": 0.39322795867919924, + "step": 101100 + }, + { + "epoch": 89.47865516478655, + "grad_norm": 0.44463786482810974, + "learning_rate": 5.277188328912467e-06, + "loss": 0.3929602813720703, + "step": 101200 + }, + { + "epoch": 89.56713116567131, + "grad_norm": 0.5217382311820984, + "learning_rate": 5.232979664014147e-06, + "loss": 0.3945352172851562, + "step": 101300 + }, + { + "epoch": 89.65560716655607, + "grad_norm": 0.47336575388908386, + "learning_rate": 5.188770999115826e-06, + "loss": 0.3943867492675781, + "step": 101400 + }, + { + "epoch": 89.74408316744083, + "grad_norm": 0.49890655279159546, + "learning_rate": 5.144562334217507e-06, + "loss": 0.39472442626953125, + "step": 101500 + }, + { + "epoch": 89.83255916832559, + "grad_norm": 0.4528096914291382, + "learning_rate": 5.100353669319187e-06, + "loss": 0.3927711868286133, + "step": 101600 + }, + { + "epoch": 89.92103516921036, + "grad_norm": 0.4498828649520874, + "learning_rate": 5.056145004420867e-06, + "loss": 0.3962491226196289, + "step": 101700 + }, + { + "epoch": 90.00884760008847, + "grad_norm": 0.45861297845840454, + "learning_rate": 5.0119363395225465e-06, + "loss": 0.39339271545410154, + "step": 101800 + }, + { + "epoch": 90.09732360097324, + "grad_norm": 0.5762381553649902, + "learning_rate": 4.967727674624226e-06, + "loss": 0.3896630096435547, + "step": 101900 + }, + { + "epoch": 90.185799601858, + "grad_norm": 0.5530878305435181, + "learning_rate": 4.923519009725907e-06, + "loss": 0.38933868408203126, + "step": 102000 + }, + { + "epoch": 90.27427560274276, + "grad_norm": 0.4769279360771179, + "learning_rate": 4.879310344827587e-06, + "loss": 0.38943870544433595, + "step": 102100 + }, + { + "epoch": 90.36275160362752, + "grad_norm": 0.5254392027854919, + "learning_rate": 4.835101679929267e-06, + "loss": 0.39091030120849607, + "step": 102200 + }, + { + "epoch": 90.45122760451227, + "grad_norm": 0.5098690986633301, + "learning_rate": 4.790893015030946e-06, + "loss": 0.39340557098388673, + "step": 102300 + }, + { + "epoch": 90.53970360539704, + "grad_norm": 0.5299240946769714, + "learning_rate": 4.746684350132626e-06, + "loss": 0.3925971221923828, + "step": 102400 + }, + { + "epoch": 90.62817960628179, + "grad_norm": 0.5023613572120667, + "learning_rate": 4.702475685234306e-06, + "loss": 0.3934814453125, + "step": 102500 + }, + { + "epoch": 90.71665560716656, + "grad_norm": 0.5217054486274719, + "learning_rate": 4.658267020335986e-06, + "loss": 0.39229228973388675, + "step": 102600 + }, + { + "epoch": 90.80513160805131, + "grad_norm": 0.4929801821708679, + "learning_rate": 4.6140583554376656e-06, + "loss": 0.39253700256347657, + "step": 102700 + }, + { + "epoch": 90.89360760893608, + "grad_norm": 0.4281506836414337, + "learning_rate": 4.569849690539346e-06, + "loss": 0.39423236846923826, + "step": 102800 + }, + { + "epoch": 90.98208360982083, + "grad_norm": 0.5606275796890259, + "learning_rate": 4.525641025641026e-06, + "loss": 0.39174613952636717, + "step": 102900 + }, + { + "epoch": 91.06989604069896, + "grad_norm": 0.40593966841697693, + "learning_rate": 4.481874447391689e-06, + "loss": 0.39004261016845704, + "step": 103000 + }, + { + "epoch": 91.15837204158372, + "grad_norm": 0.48218822479248047, + "learning_rate": 4.437665782493368e-06, + "loss": 0.39024349212646486, + "step": 103100 + }, + { + "epoch": 91.24684804246849, + "grad_norm": 0.4803628623485565, + "learning_rate": 4.393457117595049e-06, + "loss": 0.3893236541748047, + "step": 103200 + }, + { + "epoch": 91.33532404335324, + "grad_norm": 0.5424004197120667, + "learning_rate": 4.349248452696729e-06, + "loss": 0.3895704650878906, + "step": 103300 + }, + { + "epoch": 91.423800044238, + "grad_norm": 0.4238603711128235, + "learning_rate": 4.305039787798409e-06, + "loss": 0.3891864776611328, + "step": 103400 + }, + { + "epoch": 91.51227604512276, + "grad_norm": 0.5425596833229065, + "learning_rate": 4.2608311229000885e-06, + "loss": 0.3902478408813477, + "step": 103500 + }, + { + "epoch": 91.60075204600751, + "grad_norm": 0.529647946357727, + "learning_rate": 4.216622458001768e-06, + "loss": 0.39207550048828127, + "step": 103600 + }, + { + "epoch": 91.68922804689228, + "grad_norm": 0.42155396938323975, + "learning_rate": 4.1724137931034486e-06, + "loss": 0.3911063766479492, + "step": 103700 + }, + { + "epoch": 91.77770404777704, + "grad_norm": 0.4809010326862335, + "learning_rate": 4.128205128205129e-06, + "loss": 0.3927000427246094, + "step": 103800 + }, + { + "epoch": 91.8661800486618, + "grad_norm": 0.4598400890827179, + "learning_rate": 4.083996463306809e-06, + "loss": 0.38986122131347656, + "step": 103900 + }, + { + "epoch": 91.95465604954656, + "grad_norm": 0.52349853515625, + "learning_rate": 4.039787798408488e-06, + "loss": 0.3922639465332031, + "step": 104000 + }, + { + "epoch": 92.04246848042469, + "grad_norm": 0.5118280053138733, + "learning_rate": 3.996021220159151e-06, + "loss": 0.388396110534668, + "step": 104100 + }, + { + "epoch": 92.13094448130944, + "grad_norm": 0.49287110567092896, + "learning_rate": 3.951812555260832e-06, + "loss": 0.3882394027709961, + "step": 104200 + }, + { + "epoch": 92.21942048219421, + "grad_norm": 0.5597590804100037, + "learning_rate": 3.9076038903625115e-06, + "loss": 0.38768112182617187, + "step": 104300 + }, + { + "epoch": 92.30789648307896, + "grad_norm": 0.49123573303222656, + "learning_rate": 3.863395225464191e-06, + "loss": 0.38717472076416015, + "step": 104400 + }, + { + "epoch": 92.39637248396373, + "grad_norm": 0.5490599870681763, + "learning_rate": 3.819186560565871e-06, + "loss": 0.38968246459960937, + "step": 104500 + }, + { + "epoch": 92.48484848484848, + "grad_norm": 0.563377857208252, + "learning_rate": 3.7749778956675507e-06, + "loss": 0.3879422760009766, + "step": 104600 + }, + { + "epoch": 92.57332448573324, + "grad_norm": 0.5248238444328308, + "learning_rate": 3.7307692307692308e-06, + "loss": 0.3904239654541016, + "step": 104700 + }, + { + "epoch": 92.661800486618, + "grad_norm": 0.5977566242218018, + "learning_rate": 3.6865605658709104e-06, + "loss": 0.39140804290771486, + "step": 104800 + }, + { + "epoch": 92.75027648750276, + "grad_norm": 0.4992641508579254, + "learning_rate": 3.6423519009725912e-06, + "loss": 0.390025749206543, + "step": 104900 + }, + { + "epoch": 92.83875248838753, + "grad_norm": 0.5491787791252136, + "learning_rate": 3.598143236074271e-06, + "loss": 0.39107063293457034, + "step": 105000 + }, + { + "epoch": 92.92722848927228, + "grad_norm": 0.46409890055656433, + "learning_rate": 3.553934571175951e-06, + "loss": 0.3911115264892578, + "step": 105100 + }, + { + "epoch": 93.01504092015041, + "grad_norm": 0.5469849705696106, + "learning_rate": 3.5097259062776305e-06, + "loss": 0.3916855621337891, + "step": 105200 + }, + { + "epoch": 93.10351692103517, + "grad_norm": 0.496277391910553, + "learning_rate": 3.4655172413793105e-06, + "loss": 0.3867160415649414, + "step": 105300 + }, + { + "epoch": 93.19199292191993, + "grad_norm": 0.42929497361183167, + "learning_rate": 3.42130857648099e-06, + "loss": 0.38718021392822266, + "step": 105400 + }, + { + "epoch": 93.28046892280469, + "grad_norm": 0.406601220369339, + "learning_rate": 3.3770999115826706e-06, + "loss": 0.386837272644043, + "step": 105500 + }, + { + "epoch": 93.36894492368945, + "grad_norm": 0.48087212443351746, + "learning_rate": 3.3328912466843506e-06, + "loss": 0.3877327346801758, + "step": 105600 + }, + { + "epoch": 93.45742092457421, + "grad_norm": 0.5117219090461731, + "learning_rate": 3.2886825817860302e-06, + "loss": 0.38803070068359374, + "step": 105700 + }, + { + "epoch": 93.54589692545898, + "grad_norm": 0.6043857932090759, + "learning_rate": 3.2444739168877103e-06, + "loss": 0.38934085845947264, + "step": 105800 + }, + { + "epoch": 93.63437292634373, + "grad_norm": 0.5303599238395691, + "learning_rate": 3.20026525198939e-06, + "loss": 0.3872317123413086, + "step": 105900 + }, + { + "epoch": 93.72284892722848, + "grad_norm": 0.48868313431739807, + "learning_rate": 3.15605658709107e-06, + "loss": 0.3903642272949219, + "step": 106000 + }, + { + "epoch": 93.81132492811325, + "grad_norm": 0.5126668810844421, + "learning_rate": 3.11184792219275e-06, + "loss": 0.3893658447265625, + "step": 106100 + }, + { + "epoch": 93.899800928998, + "grad_norm": 0.5788067579269409, + "learning_rate": 3.06763925729443e-06, + "loss": 0.3887732315063477, + "step": 106200 + }, + { + "epoch": 93.98827692988277, + "grad_norm": 0.5931738615036011, + "learning_rate": 3.0234305923961096e-06, + "loss": 0.3858309555053711, + "step": 106300 + }, + { + "epoch": 94.07608936076089, + "grad_norm": 0.4667378067970276, + "learning_rate": 2.9792219274977896e-06, + "loss": 0.3882503128051758, + "step": 106400 + }, + { + "epoch": 94.16456536164566, + "grad_norm": 0.4540467858314514, + "learning_rate": 2.9350132625994697e-06, + "loss": 0.3879624557495117, + "step": 106500 + }, + { + "epoch": 94.25304136253041, + "grad_norm": 0.5249928832054138, + "learning_rate": 2.8908045977011493e-06, + "loss": 0.3871700668334961, + "step": 106600 + }, + { + "epoch": 94.34151736341518, + "grad_norm": 0.4902016520500183, + "learning_rate": 2.8465959328028297e-06, + "loss": 0.3865641403198242, + "step": 106700 + }, + { + "epoch": 94.42999336429993, + "grad_norm": 0.4490734934806824, + "learning_rate": 2.8023872679045093e-06, + "loss": 0.3874678039550781, + "step": 106800 + }, + { + "epoch": 94.5184693651847, + "grad_norm": 0.39259180426597595, + "learning_rate": 2.7581786030061894e-06, + "loss": 0.3864010238647461, + "step": 106900 + }, + { + "epoch": 94.60694536606945, + "grad_norm": 0.5160086154937744, + "learning_rate": 2.7139699381078694e-06, + "loss": 0.38762042999267576, + "step": 107000 + }, + { + "epoch": 94.6954213669542, + "grad_norm": 0.5112566947937012, + "learning_rate": 2.669761273209549e-06, + "loss": 0.38802257537841794, + "step": 107100 + }, + { + "epoch": 94.78389736783897, + "grad_norm": 0.48586076498031616, + "learning_rate": 2.625552608311229e-06, + "loss": 0.3883600616455078, + "step": 107200 + }, + { + "epoch": 94.87237336872373, + "grad_norm": 0.5169211626052856, + "learning_rate": 2.581343943412909e-06, + "loss": 0.38775413513183593, + "step": 107300 + }, + { + "epoch": 94.9608493696085, + "grad_norm": 0.4262998700141907, + "learning_rate": 2.537135278514589e-06, + "loss": 0.3891670608520508, + "step": 107400 + }, + { + "epoch": 95.04866180048661, + "grad_norm": 0.4452260434627533, + "learning_rate": 2.4929266136162687e-06, + "loss": 0.38474632263183595, + "step": 107500 + }, + { + "epoch": 95.13713780137138, + "grad_norm": 0.5349674820899963, + "learning_rate": 2.4487179487179488e-06, + "loss": 0.3851365661621094, + "step": 107600 + }, + { + "epoch": 95.22561380225613, + "grad_norm": 0.4277512729167938, + "learning_rate": 2.404509283819629e-06, + "loss": 0.38448490142822267, + "step": 107700 + }, + { + "epoch": 95.3140898031409, + "grad_norm": 0.5199966430664062, + "learning_rate": 2.360300618921309e-06, + "loss": 0.3855178451538086, + "step": 107800 + }, + { + "epoch": 95.40256580402566, + "grad_norm": 0.49931713938713074, + "learning_rate": 2.3160919540229885e-06, + "loss": 0.38597549438476564, + "step": 107900 + }, + { + "epoch": 95.49104180491042, + "grad_norm": 0.44888851046562195, + "learning_rate": 2.2718832891246685e-06, + "loss": 0.38637237548828124, + "step": 108000 + }, + { + "epoch": 95.57951780579518, + "grad_norm": 0.48020413517951965, + "learning_rate": 2.2276746242263485e-06, + "loss": 0.3860820388793945, + "step": 108100 + }, + { + "epoch": 95.66799380667993, + "grad_norm": 0.49320459365844727, + "learning_rate": 2.183465959328028e-06, + "loss": 0.3868730926513672, + "step": 108200 + }, + { + "epoch": 95.7564698075647, + "grad_norm": 0.4776149392127991, + "learning_rate": 2.1392572944297086e-06, + "loss": 0.38699729919433595, + "step": 108300 + }, + { + "epoch": 95.84494580844945, + "grad_norm": 0.4394153356552124, + "learning_rate": 2.095048629531388e-06, + "loss": 0.3858388137817383, + "step": 108400 + }, + { + "epoch": 95.93342180933422, + "grad_norm": 0.40809816122055054, + "learning_rate": 2.0508399646330682e-06, + "loss": 0.3865514373779297, + "step": 108500 + }, + { + "epoch": 96.02123424021234, + "grad_norm": 0.40297845005989075, + "learning_rate": 2.0070733863837314e-06, + "loss": 0.38520877838134765, + "step": 108600 + }, + { + "epoch": 96.1097102410971, + "grad_norm": 0.4992787837982178, + "learning_rate": 1.9628647214854114e-06, + "loss": 0.3824159622192383, + "step": 108700 + }, + { + "epoch": 96.19818624198186, + "grad_norm": 0.4386002719402313, + "learning_rate": 1.918656056587091e-06, + "loss": 0.3828225326538086, + "step": 108800 + }, + { + "epoch": 96.28666224286663, + "grad_norm": 0.4839923679828644, + "learning_rate": 1.874447391688771e-06, + "loss": 0.3837508392333984, + "step": 108900 + }, + { + "epoch": 96.37513824375138, + "grad_norm": 0.5360403656959534, + "learning_rate": 1.830238726790451e-06, + "loss": 0.3868670654296875, + "step": 109000 + }, + { + "epoch": 96.46361424463615, + "grad_norm": 0.5472413897514343, + "learning_rate": 1.786030061892131e-06, + "loss": 0.38740249633789064, + "step": 109100 + }, + { + "epoch": 96.5520902455209, + "grad_norm": 0.4783819019794464, + "learning_rate": 1.7418213969938107e-06, + "loss": 0.3851567459106445, + "step": 109200 + }, + { + "epoch": 96.64056624640567, + "grad_norm": 0.5319016575813293, + "learning_rate": 1.6976127320954906e-06, + "loss": 0.38549720764160156, + "step": 109300 + }, + { + "epoch": 96.72904224729042, + "grad_norm": 0.4579726755619049, + "learning_rate": 1.6534040671971708e-06, + "loss": 0.38684429168701173, + "step": 109400 + }, + { + "epoch": 96.81751824817518, + "grad_norm": 0.4699755012989044, + "learning_rate": 1.6091954022988506e-06, + "loss": 0.3849377822875977, + "step": 109500 + }, + { + "epoch": 96.90599424905994, + "grad_norm": 0.5681434273719788, + "learning_rate": 1.5649867374005304e-06, + "loss": 0.38494167327880857, + "step": 109600 + }, + { + "epoch": 96.9944702499447, + "grad_norm": 0.40921762585639954, + "learning_rate": 1.5207780725022105e-06, + "loss": 0.3864158630371094, + "step": 109700 + }, + { + "epoch": 97.08228268082283, + "grad_norm": 0.5271804928779602, + "learning_rate": 1.4765694076038905e-06, + "loss": 0.3854814529418945, + "step": 109800 + }, + { + "epoch": 97.17075868170758, + "grad_norm": 0.5390716195106506, + "learning_rate": 1.4323607427055703e-06, + "loss": 0.3826302719116211, + "step": 109900 + }, + { + "epoch": 97.25923468259235, + "grad_norm": 0.4738744795322418, + "learning_rate": 1.3881520778072502e-06, + "loss": 0.3834680938720703, + "step": 110000 + }, + { + "epoch": 97.3477106834771, + "grad_norm": 0.47226211428642273, + "learning_rate": 1.3439434129089302e-06, + "loss": 0.383985595703125, + "step": 110100 + }, + { + "epoch": 97.43618668436187, + "grad_norm": 0.44581323862075806, + "learning_rate": 1.29973474801061e-06, + "loss": 0.38392398834228514, + "step": 110200 + }, + { + "epoch": 97.52466268524662, + "grad_norm": 0.505975067615509, + "learning_rate": 1.25552608311229e-06, + "loss": 0.3842586898803711, + "step": 110300 + }, + { + "epoch": 97.61313868613139, + "grad_norm": 0.4737127125263214, + "learning_rate": 1.21131741821397e-06, + "loss": 0.3853626251220703, + "step": 110400 + }, + { + "epoch": 97.70161468701615, + "grad_norm": 0.42337724566459656, + "learning_rate": 1.16710875331565e-06, + "loss": 0.3860707092285156, + "step": 110500 + }, + { + "epoch": 97.7900906879009, + "grad_norm": 0.470935583114624, + "learning_rate": 1.12290008841733e-06, + "loss": 0.3849189758300781, + "step": 110600 + }, + { + "epoch": 97.87856668878567, + "grad_norm": 0.5499629974365234, + "learning_rate": 1.0786914235190098e-06, + "loss": 0.3849348068237305, + "step": 110700 + }, + { + "epoch": 97.96704268967042, + "grad_norm": 0.5295959711074829, + "learning_rate": 1.0344827586206898e-06, + "loss": 0.3844482040405273, + "step": 110800 + }, + { + "epoch": 98.05485512054855, + "grad_norm": 0.510218620300293, + "learning_rate": 9.902740937223696e-07, + "loss": 0.38250988006591796, + "step": 110900 + }, + { + "epoch": 98.1433311214333, + "grad_norm": 0.46240198612213135, + "learning_rate": 9.460654288240495e-07, + "loss": 0.38357555389404296, + "step": 111000 + }, + { + "epoch": 98.23180712231807, + "grad_norm": 0.5413907170295715, + "learning_rate": 9.018567639257295e-07, + "loss": 0.3835936737060547, + "step": 111100 + }, + { + "epoch": 98.32028312320283, + "grad_norm": 0.5282194018363953, + "learning_rate": 8.576480990274095e-07, + "loss": 0.38462539672851564, + "step": 111200 + }, + { + "epoch": 98.4087591240876, + "grad_norm": 0.4430619478225708, + "learning_rate": 8.134394341290893e-07, + "loss": 0.3831254196166992, + "step": 111300 + }, + { + "epoch": 98.49723512497235, + "grad_norm": 0.4520755410194397, + "learning_rate": 7.692307692307694e-07, + "loss": 0.38387767791748045, + "step": 111400 + }, + { + "epoch": 98.58571112585712, + "grad_norm": 0.42326220870018005, + "learning_rate": 7.250221043324492e-07, + "loss": 0.38382118225097656, + "step": 111500 + }, + { + "epoch": 98.67418712674187, + "grad_norm": 0.5536217093467712, + "learning_rate": 6.808134394341291e-07, + "loss": 0.3837322998046875, + "step": 111600 + }, + { + "epoch": 98.76266312762664, + "grad_norm": 0.47729530930519104, + "learning_rate": 6.36604774535809e-07, + "loss": 0.3840275192260742, + "step": 111700 + }, + { + "epoch": 98.85113912851139, + "grad_norm": 0.4712120294570923, + "learning_rate": 5.92396109637489e-07, + "loss": 0.3826910400390625, + "step": 111800 + }, + { + "epoch": 98.93961512939615, + "grad_norm": 0.4533778727054596, + "learning_rate": 5.481874447391689e-07, + "loss": 0.3849251174926758, + "step": 111900 + }, + { + "epoch": 99.02742756027428, + "grad_norm": 0.4762660264968872, + "learning_rate": 5.04420866489832e-07, + "loss": 0.38347198486328127, + "step": 112000 + }, + { + "epoch": 99.11590356115903, + "grad_norm": 0.49900203943252563, + "learning_rate": 4.6021220159151197e-07, + "loss": 0.38361885070800783, + "step": 112100 + }, + { + "epoch": 99.2043795620438, + "grad_norm": 0.5499697923660278, + "learning_rate": 4.1600353669319184e-07, + "loss": 0.38323490142822264, + "step": 112200 + }, + { + "epoch": 99.29285556292855, + "grad_norm": 0.49698564410209656, + "learning_rate": 3.717948717948718e-07, + "loss": 0.38394325256347656, + "step": 112300 + }, + { + "epoch": 99.38133156381332, + "grad_norm": 0.5000177621841431, + "learning_rate": 3.2758620689655175e-07, + "loss": 0.3833367156982422, + "step": 112400 + }, + { + "epoch": 99.46980756469807, + "grad_norm": 0.46179404854774475, + "learning_rate": 2.833775419982317e-07, + "loss": 0.38318233489990233, + "step": 112500 + }, + { + "epoch": 99.55828356558284, + "grad_norm": 0.5522571802139282, + "learning_rate": 2.391688770999116e-07, + "loss": 0.38181392669677733, + "step": 112600 + }, + { + "epoch": 99.6467595664676, + "grad_norm": 0.4453877806663513, + "learning_rate": 1.949602122015915e-07, + "loss": 0.38297233581542967, + "step": 112700 + }, + { + "epoch": 99.73523556735236, + "grad_norm": 0.46210813522338867, + "learning_rate": 1.5075154730327146e-07, + "loss": 0.3855221939086914, + "step": 112800 + }, + { + "epoch": 99.82371156823712, + "grad_norm": 0.5160776972770691, + "learning_rate": 1.0654288240495138e-07, + "loss": 0.38173851013183596, + "step": 112900 + } + ], + "logging_steps": 100, + "max_steps": 113100, + "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": 3.132356447423693e+16, + "train_batch_size": 8, + "trial_name": null, + "trial_params": null +} diff --git a/timecost/m8/realtabformer/rtf-m8-20260501_010220/rtf_checkpoints/checkpoint-112900/training_args.bin b/timecost/m8/realtabformer/rtf-m8-20260501_010220/rtf_checkpoints/checkpoint-112900/training_args.bin new file mode 100644 index 0000000000000000000000000000000000000000..34d68dc0e0fe1c1f12a2e581dd1b166aa7178a9e --- /dev/null +++ b/timecost/m8/realtabformer/rtf-m8-20260501_010220/rtf_checkpoints/checkpoint-112900/training_args.bin @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:9e2cd88337d1d846c6918d2b3b63fa3e5c93f12fefc082497590da854a564607 +size 5201 diff --git a/timecost/m8/realtabformer/rtf-m8-20260501_010220/rtf_checkpoints/checkpoint-113000/config.json b/timecost/m8/realtabformer/rtf-m8-20260501_010220/rtf_checkpoints/checkpoint-113000/config.json new file mode 100644 index 0000000000000000000000000000000000000000..d98dd02b920679d4da3c8b60a9be119058fb9fe3 --- /dev/null +++ b/timecost/m8/realtabformer/rtf-m8-20260501_010220/rtf_checkpoints/checkpoint-113000/config.json @@ -0,0 +1,34 @@ +{ + "activation_function": "gelu_new", + "add_cross_attention": false, + "architectures": [ + "GPT2LMHeadModel" + ], + "attn_pdrop": 0.1, + "bos_token_id": 5, + "dtype": "float32", + "embd_pdrop": 0.1, + "eos_token_id": 6, + "initializer_range": 0.02, + "layer_norm_epsilon": 1e-05, + "model_type": "gpt2", + "n_embd": 768, + "n_head": 12, + "n_inner": null, + "n_layer": 6, + "n_positions": 1024, + "pad_token_id": null, + "reorder_and_upcast_attn": false, + "resid_pdrop": 0.1, + "scale_attn_by_inverse_layer_idx": false, + "scale_attn_weights": true, + "summary_activation": null, + "summary_first_dropout": 0.1, + "summary_proj_to_labels": true, + "summary_type": "cls_index", + "summary_use_proj": true, + "tie_word_embeddings": true, + "transformers_version": "5.5.3", + "use_cache": false, + "vocab_size": 244 +} diff --git a/timecost/m8/realtabformer/rtf-m8-20260501_010220/rtf_checkpoints/checkpoint-113000/generation_config.json b/timecost/m8/realtabformer/rtf-m8-20260501_010220/rtf_checkpoints/checkpoint-113000/generation_config.json new file mode 100644 index 0000000000000000000000000000000000000000..ffe89567780e75b5c22eade9be971483b9618f39 --- /dev/null +++ b/timecost/m8/realtabformer/rtf-m8-20260501_010220/rtf_checkpoints/checkpoint-113000/generation_config.json @@ -0,0 +1,9 @@ +{ + "_from_model_config": true, + "bos_token_id": 5, + "eos_token_id": 6, + "output_attentions": false, + "output_hidden_states": false, + "transformers_version": "5.5.3", + "use_cache": true +} diff --git a/timecost/m8/realtabformer/rtf-m8-20260501_010220/rtf_checkpoints/checkpoint-113000/model.safetensors b/timecost/m8/realtabformer/rtf-m8-20260501_010220/rtf_checkpoints/checkpoint-113000/model.safetensors new file mode 100644 index 0000000000000000000000000000000000000000..e1d55bbfc3a3955543dc9dbae7a6b1ea6442cfb8 --- /dev/null +++ b/timecost/m8/realtabformer/rtf-m8-20260501_010220/rtf_checkpoints/checkpoint-113000/model.safetensors @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:83e84fb69be9b08e52d90335c50d080833b2d7d4c410362eba9face1bd431b09 +size 174017992 diff --git a/timecost/m8/realtabformer/rtf-m8-20260501_010220/rtf_checkpoints/checkpoint-113000/optimizer.pt b/timecost/m8/realtabformer/rtf-m8-20260501_010220/rtf_checkpoints/checkpoint-113000/optimizer.pt new file mode 100644 index 0000000000000000000000000000000000000000..1e802dbc3679061dc8b401f02c11d55688331822 --- /dev/null +++ b/timecost/m8/realtabformer/rtf-m8-20260501_010220/rtf_checkpoints/checkpoint-113000/optimizer.pt @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:4f0c3f17df55381e8bb55df20359e8b161288244c6f755f94440b3c7a0cdeb51 +size 348085067 diff --git a/timecost/m8/realtabformer/rtf-m8-20260501_010220/rtf_checkpoints/checkpoint-113000/rng_state.pth b/timecost/m8/realtabformer/rtf-m8-20260501_010220/rtf_checkpoints/checkpoint-113000/rng_state.pth new file mode 100644 index 0000000000000000000000000000000000000000..1ff6c7e0822ed94c663d3af92b9c1db8fc2202a9 --- /dev/null +++ b/timecost/m8/realtabformer/rtf-m8-20260501_010220/rtf_checkpoints/checkpoint-113000/rng_state.pth @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:21c90abfb68e5f48fbe71d41438276fcae387f4d8cf80bd06cc45e066238ce8b +size 14645 diff --git a/timecost/m8/realtabformer/rtf-m8-20260501_010220/rtf_checkpoints/checkpoint-113000/scaler.pt b/timecost/m8/realtabformer/rtf-m8-20260501_010220/rtf_checkpoints/checkpoint-113000/scaler.pt new file mode 100644 index 0000000000000000000000000000000000000000..a60702875123df275fd491adb424e4b76d52c1cd --- /dev/null +++ b/timecost/m8/realtabformer/rtf-m8-20260501_010220/rtf_checkpoints/checkpoint-113000/scaler.pt @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:d723c800b2d3dacfd9f110742f402c3004741fc24a0b077ce7088dd10f371eec +size 1383 diff --git a/timecost/m8/realtabformer/rtf-m8-20260501_010220/rtf_checkpoints/checkpoint-113000/scheduler.pt b/timecost/m8/realtabformer/rtf-m8-20260501_010220/rtf_checkpoints/checkpoint-113000/scheduler.pt new file mode 100644 index 0000000000000000000000000000000000000000..100a7b069dfb1dfed33e9c23c360cdbc1d7e3510 --- /dev/null +++ b/timecost/m8/realtabformer/rtf-m8-20260501_010220/rtf_checkpoints/checkpoint-113000/scheduler.pt @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:412ce84d0493f4dd91fe82f0b886f493bd68dfd44dfa2e782a678790bc6cd4ad +size 1465 diff --git a/timecost/m8/realtabformer/rtf-m8-20260501_010220/rtf_checkpoints/checkpoint-113000/trainer_state.json b/timecost/m8/realtabformer/rtf-m8-20260501_010220/rtf_checkpoints/checkpoint-113000/trainer_state.json new file mode 100644 index 0000000000000000000000000000000000000000..caa21776ba94dc1ed2a299518da3a7c0fb6ba0a5 --- /dev/null +++ b/timecost/m8/realtabformer/rtf-m8-20260501_010220/rtf_checkpoints/checkpoint-113000/trainer_state.json @@ -0,0 +1,7944 @@ +{ + "best_global_step": null, + "best_metric": null, + "best_model_checkpoint": null, + "epoch": 99.91218756912187, + "eval_steps": 100, + "global_step": 113000, + "is_hyper_param_search": false, + "is_local_process_zero": true, + "is_world_process_zero": true, + "log_history": [ + { + "epoch": 0.08847600088476001, + "grad_norm": 0.27971890568733215, + "learning_rate": 4.9956233421750666e-05, + "loss": 1.6012767028808594, + "step": 100 + }, + { + "epoch": 0.17695200176952003, + "grad_norm": 0.2532733976840973, + "learning_rate": 4.991202475685234e-05, + "loss": 1.0460629272460937, + "step": 200 + }, + { + "epoch": 0.26542800265428, + "grad_norm": 0.22527219355106354, + "learning_rate": 4.986781609195402e-05, + "loss": 1.0045037841796876, + "step": 300 + }, + { + "epoch": 0.35390400353904006, + "grad_norm": 0.2071678638458252, + "learning_rate": 4.982360742705571e-05, + "loss": 0.9934071350097656, + "step": 400 + }, + { + "epoch": 0.44238000442380004, + "grad_norm": 0.21996082365512848, + "learning_rate": 4.977939876215739e-05, + "loss": 0.9807382965087891, + "step": 500 + }, + { + "epoch": 0.53085600530856, + "grad_norm": 0.20051148533821106, + "learning_rate": 4.9735190097259064e-05, + "loss": 0.9772834014892579, + "step": 600 + }, + { + "epoch": 0.6193320061933201, + "grad_norm": 0.20692776143550873, + "learning_rate": 4.969098143236074e-05, + "loss": 0.9733844757080078, + "step": 700 + }, + { + "epoch": 0.7078080070780801, + "grad_norm": 0.22139734029769897, + "learning_rate": 4.9646772767462425e-05, + "loss": 0.9641999053955078, + "step": 800 + }, + { + "epoch": 0.79628400796284, + "grad_norm": 0.20099565386772156, + "learning_rate": 4.96025641025641e-05, + "loss": 0.9590901947021484, + "step": 900 + }, + { + "epoch": 0.8847600088476001, + "grad_norm": 0.19050444662570953, + "learning_rate": 4.955835543766578e-05, + "loss": 0.9558430480957031, + "step": 1000 + }, + { + "epoch": 0.9732360097323601, + "grad_norm": 0.20780153572559357, + "learning_rate": 4.951414677276747e-05, + "loss": 0.9558073425292969, + "step": 1100 + }, + { + "epoch": 1.0610484406104843, + "grad_norm": 0.20002400875091553, + "learning_rate": 4.946993810786915e-05, + "loss": 0.9575533294677734, + "step": 1200 + }, + { + "epoch": 1.1495244414952444, + "grad_norm": 0.19394151866436005, + "learning_rate": 4.9425729442970824e-05, + "loss": 0.9556401824951172, + "step": 1300 + }, + { + "epoch": 1.2380004423800044, + "grad_norm": 0.19420816004276276, + "learning_rate": 4.93815207780725e-05, + "loss": 0.948358154296875, + "step": 1400 + }, + { + "epoch": 1.3264764432647644, + "grad_norm": 0.2109377682209015, + "learning_rate": 4.9337312113174185e-05, + "loss": 0.9507483673095704, + "step": 1500 + }, + { + "epoch": 1.4149524441495245, + "grad_norm": 0.19577011466026306, + "learning_rate": 4.929310344827586e-05, + "loss": 0.9544251251220703, + "step": 1600 + }, + { + "epoch": 1.5034284450342845, + "grad_norm": 0.17374339699745178, + "learning_rate": 4.924889478337754e-05, + "loss": 0.9495613098144531, + "step": 1700 + }, + { + "epoch": 1.5919044459190443, + "grad_norm": 0.1539471447467804, + "learning_rate": 4.920468611847922e-05, + "loss": 0.946780014038086, + "step": 1800 + }, + { + "epoch": 1.6803804468038046, + "grad_norm": 0.21705853939056396, + "learning_rate": 4.916047745358091e-05, + "loss": 0.9456329345703125, + "step": 1900 + }, + { + "epoch": 1.7688564476885644, + "grad_norm": 0.18109191954135895, + "learning_rate": 4.9116268788682584e-05, + "loss": 0.9452082061767578, + "step": 2000 + }, + { + "epoch": 1.8573324485733245, + "grad_norm": 0.18233413994312286, + "learning_rate": 4.907206012378426e-05, + "loss": 0.9436309051513672, + "step": 2100 + }, + { + "epoch": 1.9458084494580845, + "grad_norm": 0.19978198409080505, + "learning_rate": 4.9027851458885945e-05, + "loss": 0.9466010284423828, + "step": 2200 + }, + { + "epoch": 2.033620880336209, + "grad_norm": 0.19425439834594727, + "learning_rate": 4.898364279398762e-05, + "loss": 0.9419589233398438, + "step": 2300 + }, + { + "epoch": 2.1220968812209686, + "grad_norm": 0.18522261083126068, + "learning_rate": 4.8939434129089306e-05, + "loss": 0.9406929779052734, + "step": 2400 + }, + { + "epoch": 2.210572882105729, + "grad_norm": 0.18092288076877594, + "learning_rate": 4.889522546419098e-05, + "loss": 0.9394661712646485, + "step": 2500 + }, + { + "epoch": 2.2990488829904887, + "grad_norm": 0.16110995411872864, + "learning_rate": 4.885101679929267e-05, + "loss": 0.9415554809570312, + "step": 2600 + }, + { + "epoch": 2.387524883875249, + "grad_norm": 0.1742609441280365, + "learning_rate": 4.8806808134394344e-05, + "loss": 0.9385026550292969, + "step": 2700 + }, + { + "epoch": 2.476000884760009, + "grad_norm": 0.1893293261528015, + "learning_rate": 4.876259946949602e-05, + "loss": 0.9374285125732422, + "step": 2800 + }, + { + "epoch": 2.564476885644769, + "grad_norm": 0.17022491991519928, + "learning_rate": 4.8718390804597705e-05, + "loss": 0.9414189910888672, + "step": 2900 + }, + { + "epoch": 2.652952886529529, + "grad_norm": 0.1820104867219925, + "learning_rate": 4.867418213969938e-05, + "loss": 0.9428114318847656, + "step": 3000 + }, + { + "epoch": 2.7414288874142887, + "grad_norm": 0.1591845154762268, + "learning_rate": 4.8629973474801066e-05, + "loss": 0.9408238220214844, + "step": 3100 + }, + { + "epoch": 2.829904888299049, + "grad_norm": 0.16679565608501434, + "learning_rate": 4.858576480990274e-05, + "loss": 0.9357293701171875, + "step": 3200 + }, + { + "epoch": 2.918380889183809, + "grad_norm": 0.1608530431985855, + "learning_rate": 4.854155614500443e-05, + "loss": 0.9437465667724609, + "step": 3300 + }, + { + "epoch": 3.006193320061933, + "grad_norm": 0.17832520604133606, + "learning_rate": 4.8497347480106104e-05, + "loss": 0.9349425506591796, + "step": 3400 + }, + { + "epoch": 3.0946693209466933, + "grad_norm": 0.18095993995666504, + "learning_rate": 4.845313881520778e-05, + "loss": 0.9341915130615235, + "step": 3500 + }, + { + "epoch": 3.183145321831453, + "grad_norm": 0.15083801746368408, + "learning_rate": 4.8408930150309465e-05, + "loss": 0.9406319427490234, + "step": 3600 + }, + { + "epoch": 3.2716213227162134, + "grad_norm": 0.17318469285964966, + "learning_rate": 4.836472148541114e-05, + "loss": 0.942470703125, + "step": 3700 + }, + { + "epoch": 3.3600973236009732, + "grad_norm": 0.16380801796913147, + "learning_rate": 4.8320512820512826e-05, + "loss": 0.9362622833251953, + "step": 3800 + }, + { + "epoch": 3.448573324485733, + "grad_norm": 0.16394540667533875, + "learning_rate": 4.82763041556145e-05, + "loss": 0.9353338623046875, + "step": 3900 + }, + { + "epoch": 3.5370493253704933, + "grad_norm": 0.15836960077285767, + "learning_rate": 4.8232095490716186e-05, + "loss": 0.9316812896728516, + "step": 4000 + }, + { + "epoch": 3.625525326255253, + "grad_norm": 0.16170428693294525, + "learning_rate": 4.8187886825817864e-05, + "loss": 0.9331712341308593, + "step": 4100 + }, + { + "epoch": 3.7140013271400134, + "grad_norm": 0.16442789137363434, + "learning_rate": 4.814367816091954e-05, + "loss": 0.9366471862792969, + "step": 4200 + }, + { + "epoch": 3.8024773280247732, + "grad_norm": 0.1728108674287796, + "learning_rate": 4.8099469496021224e-05, + "loss": 0.9279624938964843, + "step": 4300 + }, + { + "epoch": 3.890953328909533, + "grad_norm": 0.16846929490566254, + "learning_rate": 4.80552608311229e-05, + "loss": 0.9343041229248047, + "step": 4400 + }, + { + "epoch": 3.9794293297942933, + "grad_norm": 0.15764060616493225, + "learning_rate": 4.8011052166224585e-05, + "loss": 0.9330953979492187, + "step": 4500 + }, + { + "epoch": 4.067241760672418, + "grad_norm": 0.15639521181583405, + "learning_rate": 4.796684350132626e-05, + "loss": 0.92936279296875, + "step": 4600 + }, + { + "epoch": 4.155717761557177, + "grad_norm": 0.1571352481842041, + "learning_rate": 4.7922634836427946e-05, + "loss": 0.928530502319336, + "step": 4700 + }, + { + "epoch": 4.244193762441937, + "grad_norm": 0.1702045202255249, + "learning_rate": 4.787842617152962e-05, + "loss": 0.928214111328125, + "step": 4800 + }, + { + "epoch": 4.332669763326698, + "grad_norm": 0.15860655903816223, + "learning_rate": 4.78342175066313e-05, + "loss": 0.9305215454101563, + "step": 4900 + }, + { + "epoch": 4.421145764211458, + "grad_norm": 0.15470334887504578, + "learning_rate": 4.779000884173298e-05, + "loss": 0.9308832550048828, + "step": 5000 + }, + { + "epoch": 4.509621765096218, + "grad_norm": 0.18338388204574585, + "learning_rate": 4.774580017683466e-05, + "loss": 0.9284812164306641, + "step": 5100 + }, + { + "epoch": 4.598097765980977, + "grad_norm": 0.16396461427211761, + "learning_rate": 4.7701591511936345e-05, + "loss": 0.9331364440917969, + "step": 5200 + }, + { + "epoch": 4.686573766865738, + "grad_norm": 0.15601013600826263, + "learning_rate": 4.765738284703802e-05, + "loss": 0.9345075225830078, + "step": 5300 + }, + { + "epoch": 4.775049767750498, + "grad_norm": 0.15895380079746246, + "learning_rate": 4.76131741821397e-05, + "loss": 0.9342525482177735, + "step": 5400 + }, + { + "epoch": 4.863525768635258, + "grad_norm": 0.17462770640850067, + "learning_rate": 4.756896551724138e-05, + "loss": 0.9322207641601562, + "step": 5500 + }, + { + "epoch": 4.952001769520018, + "grad_norm": 0.15457525849342346, + "learning_rate": 4.752475685234306e-05, + "loss": 0.9310305023193359, + "step": 5600 + }, + { + "epoch": 5.039814200398142, + "grad_norm": 0.13688383996486664, + "learning_rate": 4.748054818744474e-05, + "loss": 0.9262973022460937, + "step": 5700 + }, + { + "epoch": 5.128290201282902, + "grad_norm": 0.15491563081741333, + "learning_rate": 4.743633952254642e-05, + "loss": 0.927138671875, + "step": 5800 + }, + { + "epoch": 5.216766202167662, + "grad_norm": 0.168558269739151, + "learning_rate": 4.7392130857648105e-05, + "loss": 0.9224365234375, + "step": 5900 + }, + { + "epoch": 5.305242203052422, + "grad_norm": 0.1631685495376587, + "learning_rate": 4.734792219274978e-05, + "loss": 0.9300392913818359, + "step": 6000 + }, + { + "epoch": 5.393718203937182, + "grad_norm": 0.1423729509115219, + "learning_rate": 4.730371352785146e-05, + "loss": 0.926734619140625, + "step": 6100 + }, + { + "epoch": 5.482194204821942, + "grad_norm": 0.15391670167446136, + "learning_rate": 4.725950486295314e-05, + "loss": 0.928184814453125, + "step": 6200 + }, + { + "epoch": 5.570670205706702, + "grad_norm": 0.16460080444812775, + "learning_rate": 4.721529619805482e-05, + "loss": 0.9238227844238281, + "step": 6300 + }, + { + "epoch": 5.659146206591462, + "grad_norm": 0.15589170157909393, + "learning_rate": 4.71710875331565e-05, + "loss": 0.9301457214355469, + "step": 6400 + }, + { + "epoch": 5.747622207476222, + "grad_norm": 0.15851308405399323, + "learning_rate": 4.712687886825818e-05, + "loss": 0.9308782196044922, + "step": 6500 + }, + { + "epoch": 5.836098208360982, + "grad_norm": 0.1777440756559372, + "learning_rate": 4.7082670203359865e-05, + "loss": 0.9248320007324219, + "step": 6600 + }, + { + "epoch": 5.924574209245742, + "grad_norm": 0.17118966579437256, + "learning_rate": 4.703846153846154e-05, + "loss": 0.933470458984375, + "step": 6700 + }, + { + "epoch": 6.012386640123866, + "grad_norm": 0.16862431168556213, + "learning_rate": 4.699425287356322e-05, + "loss": 0.9242423248291015, + "step": 6800 + }, + { + "epoch": 6.100862641008627, + "grad_norm": 0.19494886696338654, + "learning_rate": 4.69500442086649e-05, + "loss": 0.9229951477050782, + "step": 6900 + }, + { + "epoch": 6.189338641893387, + "grad_norm": 0.1628340780735016, + "learning_rate": 4.690583554376658e-05, + "loss": 0.9262020111083984, + "step": 7000 + }, + { + "epoch": 6.2778146427781465, + "grad_norm": 0.18057121336460114, + "learning_rate": 4.686162687886826e-05, + "loss": 0.9253005981445312, + "step": 7100 + }, + { + "epoch": 6.366290643662906, + "grad_norm": 0.16090655326843262, + "learning_rate": 4.681741821396994e-05, + "loss": 0.9206966400146485, + "step": 7200 + }, + { + "epoch": 6.454766644547666, + "grad_norm": 0.16115659475326538, + "learning_rate": 4.6773209549071625e-05, + "loss": 0.9219180297851562, + "step": 7300 + }, + { + "epoch": 6.543242645432427, + "grad_norm": 0.1964244246482849, + "learning_rate": 4.67290008841733e-05, + "loss": 0.9238224029541016, + "step": 7400 + }, + { + "epoch": 6.631718646317187, + "grad_norm": 0.1761396825313568, + "learning_rate": 4.668479221927498e-05, + "loss": 0.9244656372070312, + "step": 7500 + }, + { + "epoch": 6.7201946472019465, + "grad_norm": 0.18016010522842407, + "learning_rate": 4.664058355437666e-05, + "loss": 0.9245244598388672, + "step": 7600 + }, + { + "epoch": 6.808670648086706, + "grad_norm": 0.16012924909591675, + "learning_rate": 4.659637488947834e-05, + "loss": 0.9250524139404297, + "step": 7700 + }, + { + "epoch": 6.897146648971466, + "grad_norm": 0.1722676306962967, + "learning_rate": 4.655216622458002e-05, + "loss": 0.9270682525634766, + "step": 7800 + }, + { + "epoch": 6.985622649856227, + "grad_norm": 0.18756897747516632, + "learning_rate": 4.65079575596817e-05, + "loss": 0.9234317779541016, + "step": 7900 + }, + { + "epoch": 7.073435080734351, + "grad_norm": 0.16759978234767914, + "learning_rate": 4.6463748894783384e-05, + "loss": 0.9213732147216797, + "step": 8000 + }, + { + "epoch": 7.1619110816191105, + "grad_norm": 0.15943242609500885, + "learning_rate": 4.641954022988506e-05, + "loss": 0.9243515014648438, + "step": 8100 + }, + { + "epoch": 7.250387082503871, + "grad_norm": 0.15444102883338928, + "learning_rate": 4.637533156498674e-05, + "loss": 0.9177332305908203, + "step": 8200 + }, + { + "epoch": 7.338863083388631, + "grad_norm": 0.17104187607765198, + "learning_rate": 4.633112290008842e-05, + "loss": 0.9199151611328125, + "step": 8300 + }, + { + "epoch": 7.427339084273391, + "grad_norm": 0.152462899684906, + "learning_rate": 4.62869142351901e-05, + "loss": 0.9231443786621094, + "step": 8400 + }, + { + "epoch": 7.515815085158151, + "grad_norm": 0.1663249433040619, + "learning_rate": 4.6242705570291777e-05, + "loss": 0.9231499481201172, + "step": 8500 + }, + { + "epoch": 7.6042910860429105, + "grad_norm": 0.1711215376853943, + "learning_rate": 4.6198496905393454e-05, + "loss": 0.9192819976806641, + "step": 8600 + }, + { + "epoch": 7.692767086927671, + "grad_norm": 0.1620834916830063, + "learning_rate": 4.6154288240495144e-05, + "loss": 0.9260062408447266, + "step": 8700 + }, + { + "epoch": 7.781243087812431, + "grad_norm": 0.16246546804904938, + "learning_rate": 4.611007957559682e-05, + "loss": 0.9250968933105469, + "step": 8800 + }, + { + "epoch": 7.869719088697191, + "grad_norm": 0.15757358074188232, + "learning_rate": 4.60658709106985e-05, + "loss": 0.9235149383544922, + "step": 8900 + }, + { + "epoch": 7.958195089581951, + "grad_norm": 0.15778206288814545, + "learning_rate": 4.602166224580018e-05, + "loss": 0.9173377227783203, + "step": 9000 + }, + { + "epoch": 8.046007520460075, + "grad_norm": 0.17259791493415833, + "learning_rate": 4.597745358090186e-05, + "loss": 0.9134017181396484, + "step": 9100 + }, + { + "epoch": 8.134483521344835, + "grad_norm": 0.1707502007484436, + "learning_rate": 4.5933244916003536e-05, + "loss": 0.9134098052978515, + "step": 9200 + }, + { + "epoch": 8.222959522229596, + "grad_norm": 0.1647530347108841, + "learning_rate": 4.5889036251105213e-05, + "loss": 0.9205097961425781, + "step": 9300 + }, + { + "epoch": 8.311435523114355, + "grad_norm": 0.16971947252750397, + "learning_rate": 4.5844827586206904e-05, + "loss": 0.9217983245849609, + "step": 9400 + }, + { + "epoch": 8.399911523999116, + "grad_norm": 0.15842877328395844, + "learning_rate": 4.580061892130858e-05, + "loss": 0.9172341918945313, + "step": 9500 + }, + { + "epoch": 8.488387524883874, + "grad_norm": 0.15321888029575348, + "learning_rate": 4.575641025641026e-05, + "loss": 0.9222029113769531, + "step": 9600 + }, + { + "epoch": 8.576863525768635, + "grad_norm": 0.17232707142829895, + "learning_rate": 4.5712201591511935e-05, + "loss": 0.9190543365478515, + "step": 9700 + }, + { + "epoch": 8.665339526653396, + "grad_norm": 0.14735591411590576, + "learning_rate": 4.566799292661362e-05, + "loss": 0.9193865203857422, + "step": 9800 + }, + { + "epoch": 8.753815527538155, + "grad_norm": 0.17929628491401672, + "learning_rate": 4.5623784261715296e-05, + "loss": 0.9178209686279297, + "step": 9900 + }, + { + "epoch": 8.842291528422916, + "grad_norm": 0.1546984612941742, + "learning_rate": 4.557957559681697e-05, + "loss": 0.9209825134277344, + "step": 10000 + }, + { + "epoch": 8.930767529307674, + "grad_norm": 0.16275030374526978, + "learning_rate": 4.553536693191866e-05, + "loss": 0.9219312286376953, + "step": 10100 + }, + { + "epoch": 9.0185799601858, + "grad_norm": 0.16977843642234802, + "learning_rate": 4.549115826702034e-05, + "loss": 0.9190888977050782, + "step": 10200 + }, + { + "epoch": 9.107055961070559, + "grad_norm": 0.16722118854522705, + "learning_rate": 4.544694960212202e-05, + "loss": 0.9173007202148438, + "step": 10300 + }, + { + "epoch": 9.19553196195532, + "grad_norm": 0.15637095272541046, + "learning_rate": 4.5402740937223695e-05, + "loss": 0.9152852630615235, + "step": 10400 + }, + { + "epoch": 9.28400796284008, + "grad_norm": 0.15433216094970703, + "learning_rate": 4.535853227232538e-05, + "loss": 0.9151573944091796, + "step": 10500 + }, + { + "epoch": 9.37248396372484, + "grad_norm": 0.15743562579154968, + "learning_rate": 4.5314323607427056e-05, + "loss": 0.9173799896240235, + "step": 10600 + }, + { + "epoch": 9.4609599646096, + "grad_norm": 0.1527981162071228, + "learning_rate": 4.527011494252873e-05, + "loss": 0.911611328125, + "step": 10700 + }, + { + "epoch": 9.549435965494359, + "grad_norm": 0.15745887160301208, + "learning_rate": 4.522590627763042e-05, + "loss": 0.9144339752197266, + "step": 10800 + }, + { + "epoch": 9.63791196637912, + "grad_norm": 0.1523962914943695, + "learning_rate": 4.51816976127321e-05, + "loss": 0.918481216430664, + "step": 10900 + }, + { + "epoch": 9.72638796726388, + "grad_norm": 0.17231452465057373, + "learning_rate": 4.513748894783378e-05, + "loss": 0.9197111511230469, + "step": 11000 + }, + { + "epoch": 9.81486396814864, + "grad_norm": 0.16348381340503693, + "learning_rate": 4.5093280282935455e-05, + "loss": 0.9151203918457032, + "step": 11100 + }, + { + "epoch": 9.9033399690334, + "grad_norm": 0.16555383801460266, + "learning_rate": 4.504907161803714e-05, + "loss": 0.9189680480957031, + "step": 11200 + }, + { + "epoch": 9.991815969918159, + "grad_norm": 0.16531047224998474, + "learning_rate": 4.5004862953138816e-05, + "loss": 0.9149074554443359, + "step": 11300 + }, + { + "epoch": 10.079628400796285, + "grad_norm": 0.1655273735523224, + "learning_rate": 4.496065428824049e-05, + "loss": 0.9143817138671875, + "step": 11400 + }, + { + "epoch": 10.168104401681044, + "grad_norm": 0.1795828938484192, + "learning_rate": 4.491644562334218e-05, + "loss": 0.911801986694336, + "step": 11500 + }, + { + "epoch": 10.256580402565804, + "grad_norm": 0.1684361696243286, + "learning_rate": 4.487223695844386e-05, + "loss": 0.910247802734375, + "step": 11600 + }, + { + "epoch": 10.345056403450563, + "grad_norm": 0.1620638519525528, + "learning_rate": 4.482802829354554e-05, + "loss": 0.9155111694335938, + "step": 11700 + }, + { + "epoch": 10.433532404335324, + "grad_norm": 0.1695495843887329, + "learning_rate": 4.4783819628647215e-05, + "loss": 0.9134779357910157, + "step": 11800 + }, + { + "epoch": 10.522008405220085, + "grad_norm": 0.18226753175258636, + "learning_rate": 4.47396109637489e-05, + "loss": 0.9143638610839844, + "step": 11900 + }, + { + "epoch": 10.610484406104844, + "grad_norm": 0.15289710462093353, + "learning_rate": 4.4695402298850576e-05, + "loss": 0.9122061157226562, + "step": 12000 + }, + { + "epoch": 10.698960406989604, + "grad_norm": 0.15486228466033936, + "learning_rate": 4.465119363395225e-05, + "loss": 0.9148915863037109, + "step": 12100 + }, + { + "epoch": 10.787436407874363, + "grad_norm": 0.17585019767284393, + "learning_rate": 4.4606984969053937e-05, + "loss": 0.9163182830810547, + "step": 12200 + }, + { + "epoch": 10.875912408759124, + "grad_norm": 0.158732071518898, + "learning_rate": 4.456277630415562e-05, + "loss": 0.9148865509033203, + "step": 12300 + }, + { + "epoch": 10.964388409643885, + "grad_norm": 0.15901361405849457, + "learning_rate": 4.45185676392573e-05, + "loss": 0.9184156799316406, + "step": 12400 + }, + { + "epoch": 11.052200840522008, + "grad_norm": 0.15289290249347687, + "learning_rate": 4.4474358974358974e-05, + "loss": 0.910323486328125, + "step": 12500 + }, + { + "epoch": 11.14067684140677, + "grad_norm": 0.14922171831130981, + "learning_rate": 4.443015030946066e-05, + "loss": 0.9092740631103515, + "step": 12600 + }, + { + "epoch": 11.229152842291528, + "grad_norm": 0.1710701584815979, + "learning_rate": 4.4385941644562335e-05, + "loss": 0.909953842163086, + "step": 12700 + }, + { + "epoch": 11.317628843176289, + "grad_norm": 0.16967815160751343, + "learning_rate": 4.434173297966401e-05, + "loss": 0.9069422912597657, + "step": 12800 + }, + { + "epoch": 11.406104844061048, + "grad_norm": 0.16896069049835205, + "learning_rate": 4.4297524314765696e-05, + "loss": 0.9166646575927735, + "step": 12900 + }, + { + "epoch": 11.494580844945808, + "grad_norm": 0.16996079683303833, + "learning_rate": 4.425331564986738e-05, + "loss": 0.9114566040039063, + "step": 13000 + }, + { + "epoch": 11.58305684583057, + "grad_norm": 0.16553319990634918, + "learning_rate": 4.420910698496906e-05, + "loss": 0.9121807098388672, + "step": 13100 + }, + { + "epoch": 11.671532846715328, + "grad_norm": 0.1629258692264557, + "learning_rate": 4.4164898320070734e-05, + "loss": 0.904563217163086, + "step": 13200 + }, + { + "epoch": 11.760008847600089, + "grad_norm": 0.1660201996564865, + "learning_rate": 4.412068965517241e-05, + "loss": 0.9116962432861329, + "step": 13300 + }, + { + "epoch": 11.848484848484848, + "grad_norm": 0.16493095457553864, + "learning_rate": 4.4076480990274095e-05, + "loss": 0.9136554718017578, + "step": 13400 + }, + { + "epoch": 11.936960849369608, + "grad_norm": 0.15279296040534973, + "learning_rate": 4.403227232537578e-05, + "loss": 0.9120658874511719, + "step": 13500 + }, + { + "epoch": 12.024773280247732, + "grad_norm": 0.16151593625545502, + "learning_rate": 4.3988063660477456e-05, + "loss": 0.9155186462402344, + "step": 13600 + }, + { + "epoch": 12.113249281132493, + "grad_norm": 0.16777871549129486, + "learning_rate": 4.394385499557914e-05, + "loss": 0.9070235443115234, + "step": 13700 + }, + { + "epoch": 12.201725282017254, + "grad_norm": 0.15052072703838348, + "learning_rate": 4.389964633068082e-05, + "loss": 0.9057080078125, + "step": 13800 + }, + { + "epoch": 12.290201282902013, + "grad_norm": 0.17466743290424347, + "learning_rate": 4.3855437665782494e-05, + "loss": 0.9058401489257812, + "step": 13900 + }, + { + "epoch": 12.378677283786773, + "grad_norm": 0.17788690328598022, + "learning_rate": 4.381122900088417e-05, + "loss": 0.9058721923828125, + "step": 14000 + }, + { + "epoch": 12.467153284671532, + "grad_norm": 0.17527516186237335, + "learning_rate": 4.3767020335985855e-05, + "loss": 0.908851089477539, + "step": 14100 + }, + { + "epoch": 12.555629285556293, + "grad_norm": 0.17999336123466492, + "learning_rate": 4.372281167108754e-05, + "loss": 0.9110614013671875, + "step": 14200 + }, + { + "epoch": 12.644105286441054, + "grad_norm": 0.1635061800479889, + "learning_rate": 4.3678603006189216e-05, + "loss": 0.9081086730957031, + "step": 14300 + }, + { + "epoch": 12.732581287325813, + "grad_norm": 0.1813993752002716, + "learning_rate": 4.363439434129089e-05, + "loss": 0.9091014862060547, + "step": 14400 + }, + { + "epoch": 12.821057288210573, + "grad_norm": 0.17487457394599915, + "learning_rate": 4.359018567639258e-05, + "loss": 0.9076325988769531, + "step": 14500 + }, + { + "epoch": 12.909533289095332, + "grad_norm": 0.17149627208709717, + "learning_rate": 4.3545977011494254e-05, + "loss": 0.9064749908447266, + "step": 14600 + }, + { + "epoch": 12.998009289980093, + "grad_norm": 0.16990207135677338, + "learning_rate": 4.350176834659593e-05, + "loss": 0.911828384399414, + "step": 14700 + }, + { + "epoch": 13.085821720858217, + "grad_norm": 0.16583888232707977, + "learning_rate": 4.3458001768346594e-05, + "loss": 0.9017422485351563, + "step": 14800 + }, + { + "epoch": 13.174297721742978, + "grad_norm": 0.1644158959388733, + "learning_rate": 4.341379310344828e-05, + "loss": 0.9052355194091797, + "step": 14900 + }, + { + "epoch": 13.262773722627736, + "grad_norm": 0.1759374737739563, + "learning_rate": 4.336958443854996e-05, + "loss": 0.9027067565917969, + "step": 15000 + }, + { + "epoch": 13.351249723512497, + "grad_norm": 0.1623755842447281, + "learning_rate": 4.332537577365164e-05, + "loss": 0.9078491973876953, + "step": 15100 + }, + { + "epoch": 13.439725724397258, + "grad_norm": 0.15563324093818665, + "learning_rate": 4.3281167108753316e-05, + "loss": 0.9046826171875, + "step": 15200 + }, + { + "epoch": 13.528201725282017, + "grad_norm": 0.1762174814939499, + "learning_rate": 4.3236958443855e-05, + "loss": 0.9070060729980469, + "step": 15300 + }, + { + "epoch": 13.616677726166778, + "grad_norm": 0.1598447859287262, + "learning_rate": 4.319274977895668e-05, + "loss": 0.907843017578125, + "step": 15400 + }, + { + "epoch": 13.705153727051536, + "grad_norm": 0.17838729918003082, + "learning_rate": 4.3148541114058354e-05, + "loss": 0.9077598571777343, + "step": 15500 + }, + { + "epoch": 13.793629727936297, + "grad_norm": 0.16615167260169983, + "learning_rate": 4.310433244916004e-05, + "loss": 0.9041740417480468, + "step": 15600 + }, + { + "epoch": 13.882105728821058, + "grad_norm": 0.16463759541511536, + "learning_rate": 4.306012378426172e-05, + "loss": 0.9023047637939453, + "step": 15700 + }, + { + "epoch": 13.970581729705817, + "grad_norm": 0.1562959849834442, + "learning_rate": 4.30159151193634e-05, + "loss": 0.902835693359375, + "step": 15800 + }, + { + "epoch": 14.058394160583942, + "grad_norm": 0.16919565200805664, + "learning_rate": 4.2971706454465076e-05, + "loss": 0.8998876953125, + "step": 15900 + }, + { + "epoch": 14.146870161468701, + "grad_norm": 0.16513022780418396, + "learning_rate": 4.292749778956676e-05, + "loss": 0.9023524475097656, + "step": 16000 + }, + { + "epoch": 14.235346162353462, + "grad_norm": 0.173946812748909, + "learning_rate": 4.288328912466844e-05, + "loss": 0.8980498504638672, + "step": 16100 + }, + { + "epoch": 14.323822163238221, + "grad_norm": 0.16749872267246246, + "learning_rate": 4.2839080459770114e-05, + "loss": 0.9026957702636719, + "step": 16200 + }, + { + "epoch": 14.412298164122982, + "grad_norm": 0.17985551059246063, + "learning_rate": 4.27948717948718e-05, + "loss": 0.9012105560302734, + "step": 16300 + }, + { + "epoch": 14.500774165007742, + "grad_norm": 0.18807820975780487, + "learning_rate": 4.275066312997348e-05, + "loss": 0.9014115905761719, + "step": 16400 + }, + { + "epoch": 14.589250165892501, + "grad_norm": 0.17243777215480804, + "learning_rate": 4.270645446507516e-05, + "loss": 0.9028221893310547, + "step": 16500 + }, + { + "epoch": 14.677726166777262, + "grad_norm": 0.1674414724111557, + "learning_rate": 4.2662245800176836e-05, + "loss": 0.9017185974121094, + "step": 16600 + }, + { + "epoch": 14.766202167662021, + "grad_norm": 0.17522333562374115, + "learning_rate": 4.261803713527851e-05, + "loss": 0.8989543914794922, + "step": 16700 + }, + { + "epoch": 14.854678168546782, + "grad_norm": 0.16300654411315918, + "learning_rate": 4.2573828470380197e-05, + "loss": 0.9001253509521484, + "step": 16800 + }, + { + "epoch": 14.943154169431542, + "grad_norm": 0.1702653169631958, + "learning_rate": 4.2529619805481874e-05, + "loss": 0.9020176696777343, + "step": 16900 + }, + { + "epoch": 15.030966600309666, + "grad_norm": 0.1752340942621231, + "learning_rate": 4.2485853227232544e-05, + "loss": 0.8990335083007812, + "step": 17000 + }, + { + "epoch": 15.119442601194425, + "grad_norm": 0.17765584588050842, + "learning_rate": 4.244164456233422e-05, + "loss": 0.8885309600830078, + "step": 17100 + }, + { + "epoch": 15.207918602079186, + "grad_norm": 0.18404972553253174, + "learning_rate": 4.23974358974359e-05, + "loss": 0.8915805816650391, + "step": 17200 + }, + { + "epoch": 15.296394602963947, + "grad_norm": 0.17206765711307526, + "learning_rate": 4.235322723253758e-05, + "loss": 0.8898361968994141, + "step": 17300 + }, + { + "epoch": 15.384870603848706, + "grad_norm": 0.19998455047607422, + "learning_rate": 4.230901856763926e-05, + "loss": 0.8957837677001953, + "step": 17400 + }, + { + "epoch": 15.473346604733466, + "grad_norm": 0.19454777240753174, + "learning_rate": 4.2264809902740936e-05, + "loss": 0.8990544891357422, + "step": 17500 + }, + { + "epoch": 15.561822605618225, + "grad_norm": 0.17281410098075867, + "learning_rate": 4.222060123784262e-05, + "loss": 0.8996484375, + "step": 17600 + }, + { + "epoch": 15.650298606502986, + "grad_norm": 0.1906009018421173, + "learning_rate": 4.21763925729443e-05, + "loss": 0.9032618713378906, + "step": 17700 + }, + { + "epoch": 15.738774607387747, + "grad_norm": 0.17282316088676453, + "learning_rate": 4.213218390804598e-05, + "loss": 0.8986404418945313, + "step": 17800 + }, + { + "epoch": 15.827250608272506, + "grad_norm": 0.18802666664123535, + "learning_rate": 4.208797524314766e-05, + "loss": 0.8964502716064453, + "step": 17900 + }, + { + "epoch": 15.915726609157266, + "grad_norm": 0.19853872060775757, + "learning_rate": 4.204376657824934e-05, + "loss": 0.9032749938964844, + "step": 18000 + }, + { + "epoch": 16.003539040035392, + "grad_norm": 0.18812181055545807, + "learning_rate": 4.199955791335102e-05, + "loss": 0.8991973876953125, + "step": 18100 + }, + { + "epoch": 16.09201504092015, + "grad_norm": 0.1644710898399353, + "learning_rate": 4.1955349248452695e-05, + "loss": 0.8866680908203125, + "step": 18200 + }, + { + "epoch": 16.18049104180491, + "grad_norm": 0.1884208619594574, + "learning_rate": 4.191114058355438e-05, + "loss": 0.8872537994384766, + "step": 18300 + }, + { + "epoch": 16.26896704268967, + "grad_norm": 0.1828072965145111, + "learning_rate": 4.186693191865606e-05, + "loss": 0.8902882385253906, + "step": 18400 + }, + { + "epoch": 16.35744304357443, + "grad_norm": 0.19119146466255188, + "learning_rate": 4.182272325375774e-05, + "loss": 0.8903806304931641, + "step": 18500 + }, + { + "epoch": 16.445919044459192, + "grad_norm": 0.20727571845054626, + "learning_rate": 4.177851458885942e-05, + "loss": 0.8952965545654297, + "step": 18600 + }, + { + "epoch": 16.53439504534395, + "grad_norm": 0.18735922873020172, + "learning_rate": 4.17343059239611e-05, + "loss": 0.8870563507080078, + "step": 18700 + }, + { + "epoch": 16.62287104622871, + "grad_norm": 0.1973799169063568, + "learning_rate": 4.169009725906278e-05, + "loss": 0.8974028778076172, + "step": 18800 + }, + { + "epoch": 16.71134704711347, + "grad_norm": 0.20604746043682098, + "learning_rate": 4.1645888594164455e-05, + "loss": 0.8937057495117188, + "step": 18900 + }, + { + "epoch": 16.79982304799823, + "grad_norm": 0.18150219321250916, + "learning_rate": 4.160167992926614e-05, + "loss": 0.8935442352294922, + "step": 19000 + }, + { + "epoch": 16.888299048882992, + "grad_norm": 0.18340304493904114, + "learning_rate": 4.155747126436782e-05, + "loss": 0.8885797119140625, + "step": 19100 + }, + { + "epoch": 16.97677504976775, + "grad_norm": 0.2073577493429184, + "learning_rate": 4.15132625994695e-05, + "loss": 0.8951002502441406, + "step": 19200 + }, + { + "epoch": 17.064587480645876, + "grad_norm": 0.17697007954120636, + "learning_rate": 4.146949602122016e-05, + "loss": 0.8879679870605469, + "step": 19300 + }, + { + "epoch": 17.153063481530634, + "grad_norm": 0.20899821817874908, + "learning_rate": 4.142528735632184e-05, + "loss": 0.8794329833984375, + "step": 19400 + }, + { + "epoch": 17.241539482415394, + "grad_norm": 0.18147091567516327, + "learning_rate": 4.138107869142352e-05, + "loss": 0.8802722930908203, + "step": 19500 + }, + { + "epoch": 17.330015483300155, + "grad_norm": 0.20257830619812012, + "learning_rate": 4.13368700265252e-05, + "loss": 0.8870145416259766, + "step": 19600 + }, + { + "epoch": 17.418491484184916, + "grad_norm": 0.20231416821479797, + "learning_rate": 4.1292661361626885e-05, + "loss": 0.8838448333740234, + "step": 19700 + }, + { + "epoch": 17.506967485069676, + "grad_norm": 0.18214623630046844, + "learning_rate": 4.124845269672856e-05, + "loss": 0.8879763793945312, + "step": 19800 + }, + { + "epoch": 17.595443485954434, + "grad_norm": 0.18666088581085205, + "learning_rate": 4.120424403183024e-05, + "loss": 0.8885836029052734, + "step": 19900 + }, + { + "epoch": 17.683919486839194, + "grad_norm": 0.20308583974838257, + "learning_rate": 4.116003536693192e-05, + "loss": 0.8843843078613282, + "step": 20000 + }, + { + "epoch": 17.772395487723955, + "grad_norm": 0.18726830184459686, + "learning_rate": 4.11158267020336e-05, + "loss": 0.8865486145019531, + "step": 20100 + }, + { + "epoch": 17.860871488608716, + "grad_norm": 0.17878851294517517, + "learning_rate": 4.107161803713528e-05, + "loss": 0.8883515930175782, + "step": 20200 + }, + { + "epoch": 17.949347489493476, + "grad_norm": 0.1849307119846344, + "learning_rate": 4.102740937223696e-05, + "loss": 0.8914216613769531, + "step": 20300 + }, + { + "epoch": 18.0371599203716, + "grad_norm": 0.22315239906311035, + "learning_rate": 4.0983200707338645e-05, + "loss": 0.88252197265625, + "step": 20400 + }, + { + "epoch": 18.12563592125636, + "grad_norm": 0.18446321785449982, + "learning_rate": 4.093899204244032e-05, + "loss": 0.8717878723144531, + "step": 20500 + }, + { + "epoch": 18.214111922141118, + "grad_norm": 0.21541251242160797, + "learning_rate": 4.0894783377542e-05, + "loss": 0.8750727844238281, + "step": 20600 + }, + { + "epoch": 18.30258792302588, + "grad_norm": 0.22268827259540558, + "learning_rate": 4.085057471264368e-05, + "loss": 0.8760640716552734, + "step": 20700 + }, + { + "epoch": 18.39106392391064, + "grad_norm": 0.2207673043012619, + "learning_rate": 4.080636604774536e-05, + "loss": 0.876912841796875, + "step": 20800 + }, + { + "epoch": 18.4795399247954, + "grad_norm": 0.21988292038440704, + "learning_rate": 4.076215738284704e-05, + "loss": 0.8794302368164062, + "step": 20900 + }, + { + "epoch": 18.56801592568016, + "grad_norm": 0.2057323008775711, + "learning_rate": 4.0717948717948714e-05, + "loss": 0.8795650482177735, + "step": 21000 + }, + { + "epoch": 18.656491926564918, + "grad_norm": 0.19854794442653656, + "learning_rate": 4.0673740053050405e-05, + "loss": 0.8824103546142578, + "step": 21100 + }, + { + "epoch": 18.74496792744968, + "grad_norm": 0.2183123230934143, + "learning_rate": 4.062953138815208e-05, + "loss": 0.8792383575439453, + "step": 21200 + }, + { + "epoch": 18.83344392833444, + "grad_norm": 0.20326419174671173, + "learning_rate": 4.058532272325376e-05, + "loss": 0.8834226989746093, + "step": 21300 + }, + { + "epoch": 18.9219199292192, + "grad_norm": 0.20735788345336914, + "learning_rate": 4.054111405835544e-05, + "loss": 0.8820342254638672, + "step": 21400 + }, + { + "epoch": 19.009732360097324, + "grad_norm": 0.2023264467716217, + "learning_rate": 4.04973474801061e-05, + "loss": 0.8843944549560547, + "step": 21500 + }, + { + "epoch": 19.098208360982085, + "grad_norm": 0.21148885786533356, + "learning_rate": 4.045313881520778e-05, + "loss": 0.8647132110595703, + "step": 21600 + }, + { + "epoch": 19.186684361866842, + "grad_norm": 0.2251083254814148, + "learning_rate": 4.040893015030947e-05, + "loss": 0.866364974975586, + "step": 21700 + }, + { + "epoch": 19.275160362751603, + "grad_norm": 0.23524972796440125, + "learning_rate": 4.0364721485411144e-05, + "loss": 0.8736127471923828, + "step": 21800 + }, + { + "epoch": 19.363636363636363, + "grad_norm": 0.21772760152816772, + "learning_rate": 4.032051282051282e-05, + "loss": 0.8692568206787109, + "step": 21900 + }, + { + "epoch": 19.452112364521124, + "grad_norm": 0.2125358134508133, + "learning_rate": 4.0276304155614505e-05, + "loss": 0.8706926727294921, + "step": 22000 + }, + { + "epoch": 19.540588365405885, + "grad_norm": 0.22768475115299225, + "learning_rate": 4.023209549071618e-05, + "loss": 0.8674411010742188, + "step": 22100 + }, + { + "epoch": 19.629064366290642, + "grad_norm": 0.2211151272058487, + "learning_rate": 4.018788682581786e-05, + "loss": 0.8749802398681641, + "step": 22200 + }, + { + "epoch": 19.717540367175403, + "grad_norm": 0.21814538538455963, + "learning_rate": 4.014367816091954e-05, + "loss": 0.8754036712646485, + "step": 22300 + }, + { + "epoch": 19.806016368060163, + "grad_norm": 0.2030419558286667, + "learning_rate": 4.0099469496021226e-05, + "loss": 0.8714677429199219, + "step": 22400 + }, + { + "epoch": 19.894492368944924, + "grad_norm": 0.21472303569316864, + "learning_rate": 4.0055260831122904e-05, + "loss": 0.8727165222167969, + "step": 22500 + }, + { + "epoch": 19.982968369829685, + "grad_norm": 0.20911096036434174, + "learning_rate": 4.001105216622458e-05, + "loss": 0.8781427764892578, + "step": 22600 + }, + { + "epoch": 20.07078080070781, + "grad_norm": 0.2304856926202774, + "learning_rate": 3.9966843501326264e-05, + "loss": 0.8589347076416015, + "step": 22700 + }, + { + "epoch": 20.15925680159257, + "grad_norm": 0.23650145530700684, + "learning_rate": 3.992263483642794e-05, + "loss": 0.8598684692382812, + "step": 22800 + }, + { + "epoch": 20.247732802477326, + "grad_norm": 0.21773482859134674, + "learning_rate": 3.987842617152962e-05, + "loss": 0.8605601501464843, + "step": 22900 + }, + { + "epoch": 20.336208803362087, + "grad_norm": 0.2237112671136856, + "learning_rate": 3.98342175066313e-05, + "loss": 0.8617141723632813, + "step": 23000 + }, + { + "epoch": 20.424684804246848, + "grad_norm": 0.24452048540115356, + "learning_rate": 3.9790008841732986e-05, + "loss": 0.8622699737548828, + "step": 23100 + }, + { + "epoch": 20.51316080513161, + "grad_norm": 0.21587280929088593, + "learning_rate": 3.974580017683466e-05, + "loss": 0.8637493896484375, + "step": 23200 + }, + { + "epoch": 20.60163680601637, + "grad_norm": 0.2406671941280365, + "learning_rate": 3.970159151193634e-05, + "loss": 0.859559555053711, + "step": 23300 + }, + { + "epoch": 20.690112806901126, + "grad_norm": 0.22845898568630219, + "learning_rate": 3.9657382847038024e-05, + "loss": 0.8662923431396484, + "step": 23400 + }, + { + "epoch": 20.778588807785887, + "grad_norm": 0.24683597683906555, + "learning_rate": 3.96131741821397e-05, + "loss": 0.8673475646972656, + "step": 23500 + }, + { + "epoch": 20.867064808670648, + "grad_norm": 0.22459226846694946, + "learning_rate": 3.956896551724138e-05, + "loss": 0.8640863037109375, + "step": 23600 + }, + { + "epoch": 20.95554080955541, + "grad_norm": 0.23616963624954224, + "learning_rate": 3.952475685234306e-05, + "loss": 0.8678861236572266, + "step": 23700 + }, + { + "epoch": 21.043353240433532, + "grad_norm": 0.22973845899105072, + "learning_rate": 3.9480990274093725e-05, + "loss": 0.8580598449707031, + "step": 23800 + }, + { + "epoch": 21.131829241318293, + "grad_norm": 0.2424720972776413, + "learning_rate": 3.94367816091954e-05, + "loss": 0.8460955810546875, + "step": 23900 + }, + { + "epoch": 21.220305242203054, + "grad_norm": 0.2528146505355835, + "learning_rate": 3.9392572944297086e-05, + "loss": 0.8499996185302734, + "step": 24000 + }, + { + "epoch": 21.30878124308781, + "grad_norm": 0.2518126666545868, + "learning_rate": 3.9348364279398763e-05, + "loss": 0.8534349060058594, + "step": 24100 + }, + { + "epoch": 21.39725724397257, + "grad_norm": 0.2305818349123001, + "learning_rate": 3.930415561450044e-05, + "loss": 0.84900146484375, + "step": 24200 + }, + { + "epoch": 21.485733244857332, + "grad_norm": 0.25653600692749023, + "learning_rate": 3.9259946949602124e-05, + "loss": 0.8542990875244141, + "step": 24300 + }, + { + "epoch": 21.574209245742093, + "grad_norm": 0.2712801992893219, + "learning_rate": 3.92157382847038e-05, + "loss": 0.8558815002441407, + "step": 24400 + }, + { + "epoch": 21.662685246626854, + "grad_norm": 0.273328959941864, + "learning_rate": 3.9171529619805485e-05, + "loss": 0.8555754089355468, + "step": 24500 + }, + { + "epoch": 21.75116124751161, + "grad_norm": 0.2668614089488983, + "learning_rate": 3.912732095490716e-05, + "loss": 0.8587675476074219, + "step": 24600 + }, + { + "epoch": 21.83963724839637, + "grad_norm": 0.24395836889743805, + "learning_rate": 3.9083112290008846e-05, + "loss": 0.8572028350830078, + "step": 24700 + }, + { + "epoch": 21.928113249281132, + "grad_norm": 0.24808812141418457, + "learning_rate": 3.903890362511052e-05, + "loss": 0.8579219055175781, + "step": 24800 + }, + { + "epoch": 22.015925680159256, + "grad_norm": 0.2587817311286926, + "learning_rate": 3.89946949602122e-05, + "loss": 0.8512050628662109, + "step": 24900 + }, + { + "epoch": 22.104401681044017, + "grad_norm": 0.26175108551979065, + "learning_rate": 3.8950486295313884e-05, + "loss": 0.8361199188232422, + "step": 25000 + }, + { + "epoch": 22.192877681928778, + "grad_norm": 0.2715345025062561, + "learning_rate": 3.890627763041556e-05, + "loss": 0.8399204254150391, + "step": 25100 + }, + { + "epoch": 22.28135368281354, + "grad_norm": 0.27675682306289673, + "learning_rate": 3.8862068965517245e-05, + "loss": 0.8378430938720703, + "step": 25200 + }, + { + "epoch": 22.369829683698295, + "grad_norm": 0.26540565490722656, + "learning_rate": 3.881786030061892e-05, + "loss": 0.8397164916992188, + "step": 25300 + }, + { + "epoch": 22.458305684583056, + "grad_norm": 0.2754775285720825, + "learning_rate": 3.8773651635720606e-05, + "loss": 0.8450184631347656, + "step": 25400 + }, + { + "epoch": 22.546781685467817, + "grad_norm": 0.2393341213464737, + "learning_rate": 3.872944297082228e-05, + "loss": 0.8427618408203125, + "step": 25500 + }, + { + "epoch": 22.635257686352578, + "grad_norm": 0.23895791172981262, + "learning_rate": 3.868523430592396e-05, + "loss": 0.8457352447509766, + "step": 25600 + }, + { + "epoch": 22.72373368723734, + "grad_norm": 0.26955941319465637, + "learning_rate": 3.8641025641025644e-05, + "loss": 0.849469223022461, + "step": 25700 + }, + { + "epoch": 22.812209688122095, + "grad_norm": 0.23746059834957123, + "learning_rate": 3.859681697612732e-05, + "loss": 0.8469708251953125, + "step": 25800 + }, + { + "epoch": 22.900685689006856, + "grad_norm": 0.2649519145488739, + "learning_rate": 3.8552608311229005e-05, + "loss": 0.849559326171875, + "step": 25900 + }, + { + "epoch": 22.989161689891617, + "grad_norm": 0.27285081148147583, + "learning_rate": 3.850839964633068e-05, + "loss": 0.8485184478759765, + "step": 26000 + }, + { + "epoch": 23.07697412076974, + "grad_norm": 0.27895936369895935, + "learning_rate": 3.8464633068081345e-05, + "loss": 0.8252901458740234, + "step": 26100 + }, + { + "epoch": 23.1654501216545, + "grad_norm": 0.2652367055416107, + "learning_rate": 3.842042440318302e-05, + "loss": 0.8263906097412109, + "step": 26200 + }, + { + "epoch": 23.253926122539262, + "grad_norm": 0.2835598886013031, + "learning_rate": 3.8376215738284706e-05, + "loss": 0.8287677001953125, + "step": 26300 + }, + { + "epoch": 23.342402123424023, + "grad_norm": 0.2834433615207672, + "learning_rate": 3.833200707338638e-05, + "loss": 0.8309012603759766, + "step": 26400 + }, + { + "epoch": 23.43087812430878, + "grad_norm": 0.2998100817203522, + "learning_rate": 3.828779840848807e-05, + "loss": 0.8311166381835937, + "step": 26500 + }, + { + "epoch": 23.51935412519354, + "grad_norm": 0.29382187128067017, + "learning_rate": 3.8243589743589744e-05, + "loss": 0.8325238037109375, + "step": 26600 + }, + { + "epoch": 23.6078301260783, + "grad_norm": 0.2950701415538788, + "learning_rate": 3.819938107869143e-05, + "loss": 0.8368535614013672, + "step": 26700 + }, + { + "epoch": 23.696306126963062, + "grad_norm": 0.287801057100296, + "learning_rate": 3.8155172413793105e-05, + "loss": 0.833930435180664, + "step": 26800 + }, + { + "epoch": 23.784782127847823, + "grad_norm": 0.33100536465644836, + "learning_rate": 3.811096374889478e-05, + "loss": 0.8386001586914062, + "step": 26900 + }, + { + "epoch": 23.87325812873258, + "grad_norm": 0.2911369800567627, + "learning_rate": 3.8066755083996466e-05, + "loss": 0.8410533905029297, + "step": 27000 + }, + { + "epoch": 23.96173412961734, + "grad_norm": 0.26980099081993103, + "learning_rate": 3.802254641909814e-05, + "loss": 0.8360975646972656, + "step": 27100 + }, + { + "epoch": 24.049546560495465, + "grad_norm": 0.3001425862312317, + "learning_rate": 3.797833775419983e-05, + "loss": 0.8234864044189453, + "step": 27200 + }, + { + "epoch": 24.138022561380225, + "grad_norm": 0.27798378467559814, + "learning_rate": 3.7934129089301504e-05, + "loss": 0.8135331726074219, + "step": 27300 + }, + { + "epoch": 24.226498562264986, + "grad_norm": 0.2736954689025879, + "learning_rate": 3.788992042440319e-05, + "loss": 0.8113047027587891, + "step": 27400 + }, + { + "epoch": 24.314974563149747, + "grad_norm": 0.29235804080963135, + "learning_rate": 3.7845711759504865e-05, + "loss": 0.8171870422363281, + "step": 27500 + }, + { + "epoch": 24.403450564034507, + "grad_norm": 0.2878233790397644, + "learning_rate": 3.780150309460654e-05, + "loss": 0.8170029449462891, + "step": 27600 + }, + { + "epoch": 24.491926564919265, + "grad_norm": 0.31602925062179565, + "learning_rate": 3.7757294429708226e-05, + "loss": 0.8223928833007812, + "step": 27700 + }, + { + "epoch": 24.580402565804025, + "grad_norm": 0.3145372271537781, + "learning_rate": 3.77130857648099e-05, + "loss": 0.8257860565185546, + "step": 27800 + }, + { + "epoch": 24.668878566688786, + "grad_norm": 0.30716991424560547, + "learning_rate": 3.7668877099911587e-05, + "loss": 0.8240725708007812, + "step": 27900 + }, + { + "epoch": 24.757354567573547, + "grad_norm": 0.28368160128593445, + "learning_rate": 3.7624668435013264e-05, + "loss": 0.825384521484375, + "step": 28000 + }, + { + "epoch": 24.845830568458307, + "grad_norm": 0.2867664694786072, + "learning_rate": 3.758045977011495e-05, + "loss": 0.8270760345458984, + "step": 28100 + }, + { + "epoch": 24.934306569343065, + "grad_norm": 0.28817129135131836, + "learning_rate": 3.7536251105216624e-05, + "loss": 0.8286974334716797, + "step": 28200 + }, + { + "epoch": 25.02211900022119, + "grad_norm": 0.3106354773044586, + "learning_rate": 3.749248452696729e-05, + "loss": 0.82120849609375, + "step": 28300 + }, + { + "epoch": 25.11059500110595, + "grad_norm": 0.3304692506790161, + "learning_rate": 3.7448275862068965e-05, + "loss": 0.8016901397705078, + "step": 28400 + }, + { + "epoch": 25.19907100199071, + "grad_norm": 0.3065616488456726, + "learning_rate": 3.740406719717064e-05, + "loss": 0.8027448272705078, + "step": 28500 + }, + { + "epoch": 25.28754700287547, + "grad_norm": 0.3456852436065674, + "learning_rate": 3.735985853227233e-05, + "loss": 0.8046049499511718, + "step": 28600 + }, + { + "epoch": 25.37602300376023, + "grad_norm": 0.3011663556098938, + "learning_rate": 3.731564986737401e-05, + "loss": 0.8079199981689453, + "step": 28700 + }, + { + "epoch": 25.46449900464499, + "grad_norm": 0.3659413158893585, + "learning_rate": 3.7271441202475687e-05, + "loss": 0.8079922485351563, + "step": 28800 + }, + { + "epoch": 25.55297500552975, + "grad_norm": 0.3281838595867157, + "learning_rate": 3.7227232537577364e-05, + "loss": 0.8134046173095704, + "step": 28900 + }, + { + "epoch": 25.64145100641451, + "grad_norm": 0.3106602132320404, + "learning_rate": 3.718302387267905e-05, + "loss": 0.8104205322265625, + "step": 29000 + }, + { + "epoch": 25.72992700729927, + "grad_norm": 0.3320154845714569, + "learning_rate": 3.7138815207780725e-05, + "loss": 0.8142304992675782, + "step": 29100 + }, + { + "epoch": 25.81840300818403, + "grad_norm": 0.3355977535247803, + "learning_rate": 3.70946065428824e-05, + "loss": 0.8125243377685547, + "step": 29200 + }, + { + "epoch": 25.90687900906879, + "grad_norm": 0.3472290635108948, + "learning_rate": 3.7050397877984085e-05, + "loss": 0.8146660614013672, + "step": 29300 + }, + { + "epoch": 25.99535500995355, + "grad_norm": 0.31780678033828735, + "learning_rate": 3.700618921308577e-05, + "loss": 0.8169705200195313, + "step": 29400 + }, + { + "epoch": 26.083167440831673, + "grad_norm": 0.3046151101589203, + "learning_rate": 3.6961980548187446e-05, + "loss": 0.7894915008544922, + "step": 29500 + }, + { + "epoch": 26.171643441716434, + "grad_norm": 0.3560829162597656, + "learning_rate": 3.6917771883289123e-05, + "loss": 0.7867289733886719, + "step": 29600 + }, + { + "epoch": 26.260119442601194, + "grad_norm": 0.33036884665489197, + "learning_rate": 3.687356321839081e-05, + "loss": 0.7914912414550781, + "step": 29700 + }, + { + "epoch": 26.348595443485955, + "grad_norm": 0.3302215039730072, + "learning_rate": 3.6829354553492484e-05, + "loss": 0.7926998901367187, + "step": 29800 + }, + { + "epoch": 26.437071444370716, + "grad_norm": 0.33766239881515503, + "learning_rate": 3.678514588859416e-05, + "loss": 0.7958551788330078, + "step": 29900 + }, + { + "epoch": 26.525547445255473, + "grad_norm": 0.34900912642478943, + "learning_rate": 3.6740937223695845e-05, + "loss": 0.7958287811279297, + "step": 30000 + }, + { + "epoch": 26.614023446140234, + "grad_norm": 0.3290475010871887, + "learning_rate": 3.669672855879753e-05, + "loss": 0.7994923400878906, + "step": 30100 + }, + { + "epoch": 26.702499447024994, + "grad_norm": 0.3304896950721741, + "learning_rate": 3.6652519893899206e-05, + "loss": 0.8000531005859375, + "step": 30200 + }, + { + "epoch": 26.790975447909755, + "grad_norm": 0.32132837176322937, + "learning_rate": 3.660831122900088e-05, + "loss": 0.8006639862060547, + "step": 30300 + }, + { + "epoch": 26.879451448794516, + "grad_norm": 0.3341081142425537, + "learning_rate": 3.656410256410257e-05, + "loss": 0.8037942504882812, + "step": 30400 + }, + { + "epoch": 26.967927449679273, + "grad_norm": 0.3406025171279907, + "learning_rate": 3.6519893899204244e-05, + "loss": 0.8009793853759766, + "step": 30500 + }, + { + "epoch": 27.0557398805574, + "grad_norm": 0.3396868109703064, + "learning_rate": 3.647568523430592e-05, + "loss": 0.7846424865722657, + "step": 30600 + }, + { + "epoch": 27.144215881442157, + "grad_norm": 0.33319470286369324, + "learning_rate": 3.6431476569407605e-05, + "loss": 0.7724665832519532, + "step": 30700 + }, + { + "epoch": 27.232691882326918, + "grad_norm": 0.38071826100349426, + "learning_rate": 3.638726790450929e-05, + "loss": 0.7791647338867187, + "step": 30800 + }, + { + "epoch": 27.32116788321168, + "grad_norm": 0.3640372157096863, + "learning_rate": 3.6343059239610966e-05, + "loss": 0.778485107421875, + "step": 30900 + }, + { + "epoch": 27.40964388409644, + "grad_norm": 0.34701183438301086, + "learning_rate": 3.629885057471264e-05, + "loss": 0.7812682342529297, + "step": 31000 + }, + { + "epoch": 27.4981198849812, + "grad_norm": 0.34723395109176636, + "learning_rate": 3.625464190981433e-05, + "loss": 0.7816720581054688, + "step": 31100 + }, + { + "epoch": 27.586595885865957, + "grad_norm": 0.3967572748661041, + "learning_rate": 3.6210433244916004e-05, + "loss": 0.7825845336914062, + "step": 31200 + }, + { + "epoch": 27.675071886750718, + "grad_norm": 0.36156365275382996, + "learning_rate": 3.616622458001768e-05, + "loss": 0.7875003814697266, + "step": 31300 + }, + { + "epoch": 27.76354788763548, + "grad_norm": 0.37152451276779175, + "learning_rate": 3.6122015915119365e-05, + "loss": 0.7848563385009766, + "step": 31400 + }, + { + "epoch": 27.85202388852024, + "grad_norm": 0.3751819431781769, + "learning_rate": 3.607780725022105e-05, + "loss": 0.7901625061035156, + "step": 31500 + }, + { + "epoch": 27.940499889405, + "grad_norm": 0.32409200072288513, + "learning_rate": 3.6033598585322726e-05, + "loss": 0.7916508483886718, + "step": 31600 + }, + { + "epoch": 28.028312320283124, + "grad_norm": 0.36621779203414917, + "learning_rate": 3.59893899204244e-05, + "loss": 0.7814656066894531, + "step": 31700 + }, + { + "epoch": 28.116788321167885, + "grad_norm": 0.35782715678215027, + "learning_rate": 3.594518125552609e-05, + "loss": 0.7565266418457032, + "step": 31800 + }, + { + "epoch": 28.205264322052642, + "grad_norm": 0.34983065724372864, + "learning_rate": 3.5900972590627764e-05, + "loss": 0.7589649963378906, + "step": 31900 + }, + { + "epoch": 28.293740322937403, + "grad_norm": 0.36476004123687744, + "learning_rate": 3.585676392572945e-05, + "loss": 0.7618669891357421, + "step": 32000 + }, + { + "epoch": 28.382216323822163, + "grad_norm": 0.3663191795349121, + "learning_rate": 3.5812555260831125e-05, + "loss": 0.768099136352539, + "step": 32100 + }, + { + "epoch": 28.470692324706924, + "grad_norm": 0.3572807312011719, + "learning_rate": 3.576834659593281e-05, + "loss": 0.7697807312011719, + "step": 32200 + }, + { + "epoch": 28.559168325591685, + "grad_norm": 0.39800935983657837, + "learning_rate": 3.5724580017683465e-05, + "loss": 0.7714015960693359, + "step": 32300 + }, + { + "epoch": 28.647644326476442, + "grad_norm": 0.3792218863964081, + "learning_rate": 3.568037135278515e-05, + "loss": 0.7737385559082032, + "step": 32400 + }, + { + "epoch": 28.736120327361203, + "grad_norm": 0.4109075665473938, + "learning_rate": 3.5636162687886826e-05, + "loss": 0.7772123718261719, + "step": 32500 + }, + { + "epoch": 28.824596328245963, + "grad_norm": 0.40446004271507263, + "learning_rate": 3.55919540229885e-05, + "loss": 0.7722319030761718, + "step": 32600 + }, + { + "epoch": 28.913072329130724, + "grad_norm": 0.39553946256637573, + "learning_rate": 3.554774535809019e-05, + "loss": 0.7767266082763672, + "step": 32700 + }, + { + "epoch": 29.000884760008848, + "grad_norm": 0.3675474226474762, + "learning_rate": 3.550397877984085e-05, + "loss": 0.7800326538085938, + "step": 32800 + }, + { + "epoch": 29.08936076089361, + "grad_norm": 0.37354156374931335, + "learning_rate": 3.5459770114942534e-05, + "loss": 0.7407066345214843, + "step": 32900 + }, + { + "epoch": 29.17783676177837, + "grad_norm": 0.3970542550086975, + "learning_rate": 3.541556145004421e-05, + "loss": 0.7467523956298828, + "step": 33000 + }, + { + "epoch": 29.266312762663127, + "grad_norm": 0.3625730872154236, + "learning_rate": 3.537135278514589e-05, + "loss": 0.7477723693847657, + "step": 33100 + }, + { + "epoch": 29.354788763547887, + "grad_norm": 0.37132611870765686, + "learning_rate": 3.532714412024757e-05, + "loss": 0.7502822875976562, + "step": 33200 + }, + { + "epoch": 29.443264764432648, + "grad_norm": 0.3668833374977112, + "learning_rate": 3.528293545534925e-05, + "loss": 0.7570280456542968, + "step": 33300 + }, + { + "epoch": 29.53174076531741, + "grad_norm": 0.404186874628067, + "learning_rate": 3.523872679045093e-05, + "loss": 0.7576876831054687, + "step": 33400 + }, + { + "epoch": 29.62021676620217, + "grad_norm": 0.407461017370224, + "learning_rate": 3.519451812555261e-05, + "loss": 0.7606333923339844, + "step": 33500 + }, + { + "epoch": 29.708692767086927, + "grad_norm": 0.4091641902923584, + "learning_rate": 3.5150309460654294e-05, + "loss": 0.7598370361328125, + "step": 33600 + }, + { + "epoch": 29.797168767971687, + "grad_norm": 0.36642369627952576, + "learning_rate": 3.510610079575597e-05, + "loss": 0.7617308807373047, + "step": 33700 + }, + { + "epoch": 29.885644768856448, + "grad_norm": 0.3767990171909332, + "learning_rate": 3.506189213085765e-05, + "loss": 0.760002670288086, + "step": 33800 + }, + { + "epoch": 29.97412076974121, + "grad_norm": 0.3992450535297394, + "learning_rate": 3.5017683465959325e-05, + "loss": 0.7659886932373047, + "step": 33900 + }, + { + "epoch": 30.061933200619332, + "grad_norm": 0.38657036423683167, + "learning_rate": 3.497347480106101e-05, + "loss": 0.7397030639648438, + "step": 34000 + }, + { + "epoch": 30.150409201504093, + "grad_norm": 0.40928229689598083, + "learning_rate": 3.492926613616269e-05, + "loss": 0.7280159759521484, + "step": 34100 + }, + { + "epoch": 30.23888520238885, + "grad_norm": 0.41609957814216614, + "learning_rate": 3.488505747126437e-05, + "loss": 0.7327291107177735, + "step": 34200 + }, + { + "epoch": 30.32736120327361, + "grad_norm": 0.3990429639816284, + "learning_rate": 3.4840848806366047e-05, + "loss": 0.7359205627441406, + "step": 34300 + }, + { + "epoch": 30.41583720415837, + "grad_norm": 0.40403324365615845, + "learning_rate": 3.479664014146773e-05, + "loss": 0.73650390625, + "step": 34400 + }, + { + "epoch": 30.504313205043132, + "grad_norm": 0.42696642875671387, + "learning_rate": 3.475243147656941e-05, + "loss": 0.7416681671142578, + "step": 34500 + }, + { + "epoch": 30.592789205927893, + "grad_norm": 0.3891199231147766, + "learning_rate": 3.4708222811671085e-05, + "loss": 0.742286605834961, + "step": 34600 + }, + { + "epoch": 30.68126520681265, + "grad_norm": 0.3660706877708435, + "learning_rate": 3.466401414677277e-05, + "loss": 0.7444020080566406, + "step": 34700 + }, + { + "epoch": 30.76974120769741, + "grad_norm": 0.43280747532844543, + "learning_rate": 3.461980548187445e-05, + "loss": 0.7461125183105469, + "step": 34800 + }, + { + "epoch": 30.85821720858217, + "grad_norm": 0.4279727041721344, + "learning_rate": 3.457559681697613e-05, + "loss": 0.7497645568847656, + "step": 34900 + }, + { + "epoch": 30.946693209466932, + "grad_norm": 0.4162921905517578, + "learning_rate": 3.4531388152077806e-05, + "loss": 0.7478341674804687, + "step": 35000 + }, + { + "epoch": 31.034505640345056, + "grad_norm": 0.4011857211589813, + "learning_rate": 3.448762157382847e-05, + "loss": 0.7373168182373047, + "step": 35100 + }, + { + "epoch": 31.122981641229817, + "grad_norm": 0.42476192116737366, + "learning_rate": 3.444341290893015e-05, + "loss": 0.714128646850586, + "step": 35200 + }, + { + "epoch": 31.211457642114578, + "grad_norm": 0.4272063672542572, + "learning_rate": 3.439920424403183e-05, + "loss": 0.717328872680664, + "step": 35300 + }, + { + "epoch": 31.299933642999335, + "grad_norm": 0.39419060945510864, + "learning_rate": 3.4354995579133514e-05, + "loss": 0.7182811737060547, + "step": 35400 + }, + { + "epoch": 31.388409643884096, + "grad_norm": 0.4092519283294678, + "learning_rate": 3.431078691423519e-05, + "loss": 0.7223808288574218, + "step": 35500 + }, + { + "epoch": 31.476885644768856, + "grad_norm": 0.45683449506759644, + "learning_rate": 3.4266578249336875e-05, + "loss": 0.7236460876464844, + "step": 35600 + }, + { + "epoch": 31.565361645653617, + "grad_norm": 0.4914647936820984, + "learning_rate": 3.422236958443855e-05, + "loss": 0.728529052734375, + "step": 35700 + }, + { + "epoch": 31.653837646538378, + "grad_norm": 0.439372718334198, + "learning_rate": 3.417816091954023e-05, + "loss": 0.7269135284423828, + "step": 35800 + }, + { + "epoch": 31.742313647423135, + "grad_norm": 0.488553911447525, + "learning_rate": 3.413395225464191e-05, + "loss": 0.7319352722167969, + "step": 35900 + }, + { + "epoch": 31.830789648307896, + "grad_norm": 0.43236035108566284, + "learning_rate": 3.408974358974359e-05, + "loss": 0.7336878204345703, + "step": 36000 + }, + { + "epoch": 31.919265649192656, + "grad_norm": 0.42669814825057983, + "learning_rate": 3.4045534924845274e-05, + "loss": 0.7357192993164062, + "step": 36100 + }, + { + "epoch": 32.007078080070784, + "grad_norm": 0.40464460849761963, + "learning_rate": 3.400132625994695e-05, + "loss": 0.7324215698242188, + "step": 36200 + }, + { + "epoch": 32.09555408095554, + "grad_norm": 0.4362545311450958, + "learning_rate": 3.3957117595048635e-05, + "loss": 0.6976793670654297, + "step": 36300 + }, + { + "epoch": 32.1840300818403, + "grad_norm": 0.46484723687171936, + "learning_rate": 3.391290893015031e-05, + "loss": 0.6972021484375, + "step": 36400 + }, + { + "epoch": 32.27250608272506, + "grad_norm": 0.43313083052635193, + "learning_rate": 3.386870026525199e-05, + "loss": 0.7049392700195313, + "step": 36500 + }, + { + "epoch": 32.36098208360982, + "grad_norm": 0.437752366065979, + "learning_rate": 3.3824491600353666e-05, + "loss": 0.7091526794433594, + "step": 36600 + }, + { + "epoch": 32.44945808449458, + "grad_norm": 0.44550085067749023, + "learning_rate": 3.378028293545535e-05, + "loss": 0.7121316528320313, + "step": 36700 + }, + { + "epoch": 32.53793408537934, + "grad_norm": 0.46052590012550354, + "learning_rate": 3.3736074270557034e-05, + "loss": 0.7150274658203125, + "step": 36800 + }, + { + "epoch": 32.6264100862641, + "grad_norm": 0.4344913065433502, + "learning_rate": 3.369186560565871e-05, + "loss": 0.7130059814453125, + "step": 36900 + }, + { + "epoch": 32.71488608714886, + "grad_norm": 0.45924630761146545, + "learning_rate": 3.364765694076039e-05, + "loss": 0.7156332397460937, + "step": 37000 + }, + { + "epoch": 32.80336208803362, + "grad_norm": 0.41177231073379517, + "learning_rate": 3.360344827586207e-05, + "loss": 0.7184346008300782, + "step": 37100 + }, + { + "epoch": 32.891838088918384, + "grad_norm": 0.44688835740089417, + "learning_rate": 3.355923961096375e-05, + "loss": 0.7201016235351563, + "step": 37200 + }, + { + "epoch": 32.980314089803144, + "grad_norm": 0.4971197545528412, + "learning_rate": 3.3515030946065426e-05, + "loss": 0.7191078186035156, + "step": 37300 + }, + { + "epoch": 33.06812652068127, + "grad_norm": 0.47201091051101685, + "learning_rate": 3.347126436781609e-05, + "loss": 0.6914530944824219, + "step": 37400 + }, + { + "epoch": 33.15660252156602, + "grad_norm": 0.4473711848258972, + "learning_rate": 3.342705570291777e-05, + "loss": 0.6855306243896484, + "step": 37500 + }, + { + "epoch": 33.24507852245078, + "grad_norm": 0.4745553135871887, + "learning_rate": 3.338284703801946e-05, + "loss": 0.6888325500488282, + "step": 37600 + }, + { + "epoch": 33.33355452333554, + "grad_norm": 0.45796144008636475, + "learning_rate": 3.3338638373121134e-05, + "loss": 0.6924916076660156, + "step": 37700 + }, + { + "epoch": 33.422030524220304, + "grad_norm": 0.47769099473953247, + "learning_rate": 3.329442970822281e-05, + "loss": 0.6937997436523438, + "step": 37800 + }, + { + "epoch": 33.510506525105065, + "grad_norm": 0.4637518525123596, + "learning_rate": 3.3250221043324495e-05, + "loss": 0.6975637817382813, + "step": 37900 + }, + { + "epoch": 33.598982525989825, + "grad_norm": 0.47370946407318115, + "learning_rate": 3.320601237842617e-05, + "loss": 0.6985407257080078, + "step": 38000 + }, + { + "epoch": 33.687458526874586, + "grad_norm": 0.467692106962204, + "learning_rate": 3.316180371352785e-05, + "loss": 0.7032517242431641, + "step": 38100 + }, + { + "epoch": 33.77593452775935, + "grad_norm": 0.4691486060619354, + "learning_rate": 3.311759504862953e-05, + "loss": 0.7019402313232422, + "step": 38200 + }, + { + "epoch": 33.86441052864411, + "grad_norm": 0.465666264295578, + "learning_rate": 3.307338638373122e-05, + "loss": 0.7065095520019531, + "step": 38300 + }, + { + "epoch": 33.95288652952887, + "grad_norm": 0.4870339632034302, + "learning_rate": 3.3029177718832894e-05, + "loss": 0.7060601043701172, + "step": 38400 + }, + { + "epoch": 34.04069896040699, + "grad_norm": 0.46102386713027954, + "learning_rate": 3.298496905393457e-05, + "loss": 0.6895645141601563, + "step": 38500 + }, + { + "epoch": 34.12917496129175, + "grad_norm": 0.4717739522457123, + "learning_rate": 3.2940760389036255e-05, + "loss": 0.6683721160888672, + "step": 38600 + }, + { + "epoch": 34.217650962176506, + "grad_norm": 0.47995516657829285, + "learning_rate": 3.289655172413793e-05, + "loss": 0.67727294921875, + "step": 38700 + }, + { + "epoch": 34.30612696306127, + "grad_norm": 0.4676993191242218, + "learning_rate": 3.2852343059239616e-05, + "loss": 0.6742596435546875, + "step": 38800 + }, + { + "epoch": 34.39460296394603, + "grad_norm": 0.4986591935157776, + "learning_rate": 3.280813439434129e-05, + "loss": 0.6811554718017578, + "step": 38900 + }, + { + "epoch": 34.48307896483079, + "grad_norm": 0.49108394980430603, + "learning_rate": 3.2763925729442977e-05, + "loss": 0.6826177215576172, + "step": 39000 + }, + { + "epoch": 34.57155496571555, + "grad_norm": 0.46544989943504333, + "learning_rate": 3.2719717064544654e-05, + "loss": 0.6843925476074219, + "step": 39100 + }, + { + "epoch": 34.66003096660031, + "grad_norm": 0.4714086055755615, + "learning_rate": 3.267550839964633e-05, + "loss": 0.6843089294433594, + "step": 39200 + }, + { + "epoch": 34.74850696748507, + "grad_norm": 0.4726520776748657, + "learning_rate": 3.263129973474801e-05, + "loss": 0.687828140258789, + "step": 39300 + }, + { + "epoch": 34.83698296836983, + "grad_norm": 0.5056101083755493, + "learning_rate": 3.258709106984969e-05, + "loss": 0.6943804168701172, + "step": 39400 + }, + { + "epoch": 34.92545896925459, + "grad_norm": 0.5143911242485046, + "learning_rate": 3.2542882404951375e-05, + "loss": 0.6947840118408203, + "step": 39500 + }, + { + "epoch": 35.013271400132716, + "grad_norm": 0.4712352752685547, + "learning_rate": 3.249867374005305e-05, + "loss": 0.6877326965332031, + "step": 39600 + }, + { + "epoch": 35.10174740101748, + "grad_norm": 0.5000380873680115, + "learning_rate": 3.2454465075154736e-05, + "loss": 0.6556487274169922, + "step": 39700 + }, + { + "epoch": 35.19022340190224, + "grad_norm": 0.5022478699684143, + "learning_rate": 3.2410256410256413e-05, + "loss": 0.6607290649414063, + "step": 39800 + }, + { + "epoch": 35.27869940278699, + "grad_norm": 0.511082112789154, + "learning_rate": 3.236604774535809e-05, + "loss": 0.6585157775878906, + "step": 39900 + }, + { + "epoch": 35.36717540367175, + "grad_norm": 0.45338326692581177, + "learning_rate": 3.232183908045977e-05, + "loss": 0.6670406341552735, + "step": 40000 + }, + { + "epoch": 35.45565140455651, + "grad_norm": 0.47589078545570374, + "learning_rate": 3.227763041556145e-05, + "loss": 0.6654150390625, + "step": 40100 + }, + { + "epoch": 35.54412740544127, + "grad_norm": 0.5111287236213684, + "learning_rate": 3.2233421750663135e-05, + "loss": 0.6706926727294922, + "step": 40200 + }, + { + "epoch": 35.632603406326034, + "grad_norm": 0.48615771532058716, + "learning_rate": 3.218921308576481e-05, + "loss": 0.6724550628662109, + "step": 40300 + }, + { + "epoch": 35.721079407210794, + "grad_norm": 0.5141739845275879, + "learning_rate": 3.214500442086649e-05, + "loss": 0.674487075805664, + "step": 40400 + }, + { + "epoch": 35.809555408095555, + "grad_norm": 0.512373149394989, + "learning_rate": 3.210079575596817e-05, + "loss": 0.6809010314941406, + "step": 40500 + }, + { + "epoch": 35.898031408980316, + "grad_norm": 0.5156219005584717, + "learning_rate": 3.205658709106985e-05, + "loss": 0.6783308410644531, + "step": 40600 + }, + { + "epoch": 35.98650740986508, + "grad_norm": 0.5266398191452026, + "learning_rate": 3.201237842617153e-05, + "loss": 0.6796981811523437, + "step": 40700 + }, + { + "epoch": 36.0743198407432, + "grad_norm": 0.5198646783828735, + "learning_rate": 3.196861184792219e-05, + "loss": 0.648563232421875, + "step": 40800 + }, + { + "epoch": 36.16279584162796, + "grad_norm": 0.4699224829673767, + "learning_rate": 3.1924403183023874e-05, + "loss": 0.6464600372314453, + "step": 40900 + }, + { + "epoch": 36.25127184251272, + "grad_norm": 0.5014195442199707, + "learning_rate": 3.188019451812556e-05, + "loss": 0.6471477508544922, + "step": 41000 + }, + { + "epoch": 36.339747843397475, + "grad_norm": 0.5231509804725647, + "learning_rate": 3.1835985853227235e-05, + "loss": 0.6519639587402344, + "step": 41100 + }, + { + "epoch": 36.428223844282236, + "grad_norm": 0.4843427538871765, + "learning_rate": 3.179177718832891e-05, + "loss": 0.6523241424560546, + "step": 41200 + }, + { + "epoch": 36.516699845167, + "grad_norm": 0.4956904351711273, + "learning_rate": 3.1747568523430596e-05, + "loss": 0.6547152709960937, + "step": 41300 + }, + { + "epoch": 36.60517584605176, + "grad_norm": 0.5103031396865845, + "learning_rate": 3.170335985853227e-05, + "loss": 0.6602716827392578, + "step": 41400 + }, + { + "epoch": 36.69365184693652, + "grad_norm": 0.5028578042984009, + "learning_rate": 3.165915119363395e-05, + "loss": 0.6617116546630859, + "step": 41500 + }, + { + "epoch": 36.78212784782128, + "grad_norm": 0.4997723698616028, + "learning_rate": 3.1614942528735634e-05, + "loss": 0.6632434844970703, + "step": 41600 + }, + { + "epoch": 36.87060384870604, + "grad_norm": 0.5246814489364624, + "learning_rate": 3.157073386383732e-05, + "loss": 0.6632743835449219, + "step": 41700 + }, + { + "epoch": 36.9590798495908, + "grad_norm": 0.5308569073677063, + "learning_rate": 3.1526525198938995e-05, + "loss": 0.6639631652832031, + "step": 41800 + }, + { + "epoch": 37.046892280468924, + "grad_norm": 0.49218234419822693, + "learning_rate": 3.148231653404067e-05, + "loss": 0.6452173614501953, + "step": 41900 + }, + { + "epoch": 37.135368281353685, + "grad_norm": 0.4680822491645813, + "learning_rate": 3.143810786914235e-05, + "loss": 0.6319191360473633, + "step": 42000 + }, + { + "epoch": 37.223844282238446, + "grad_norm": 0.4810407757759094, + "learning_rate": 3.139389920424403e-05, + "loss": 0.6338667297363281, + "step": 42100 + }, + { + "epoch": 37.3123202831232, + "grad_norm": 0.545889139175415, + "learning_rate": 3.134969053934571e-05, + "loss": 0.6395709228515625, + "step": 42200 + }, + { + "epoch": 37.40079628400796, + "grad_norm": 0.5600217580795288, + "learning_rate": 3.1305481874447394e-05, + "loss": 0.6406965637207032, + "step": 42300 + }, + { + "epoch": 37.48927228489272, + "grad_norm": 0.5517903566360474, + "learning_rate": 3.126127320954908e-05, + "loss": 0.6428462982177734, + "step": 42400 + }, + { + "epoch": 37.57774828577748, + "grad_norm": 0.49925389885902405, + "learning_rate": 3.1217064544650755e-05, + "loss": 0.6470170593261719, + "step": 42500 + }, + { + "epoch": 37.66622428666224, + "grad_norm": 0.4698370397090912, + "learning_rate": 3.117285587975243e-05, + "loss": 0.6477708435058593, + "step": 42600 + }, + { + "epoch": 37.754700287547, + "grad_norm": 0.5349763035774231, + "learning_rate": 3.112864721485411e-05, + "loss": 0.6515216827392578, + "step": 42700 + }, + { + "epoch": 37.84317628843176, + "grad_norm": 0.5066236853599548, + "learning_rate": 3.108443854995579e-05, + "loss": 0.6522242736816406, + "step": 42800 + }, + { + "epoch": 37.931652289316524, + "grad_norm": 0.5211920142173767, + "learning_rate": 3.104022988505747e-05, + "loss": 0.6515906524658203, + "step": 42900 + }, + { + "epoch": 38.01946472019465, + "grad_norm": 0.5003405213356018, + "learning_rate": 3.099646330680814e-05, + "loss": 0.6448411560058593, + "step": 43000 + }, + { + "epoch": 38.10794072107941, + "grad_norm": 0.5215827226638794, + "learning_rate": 3.095225464190982e-05, + "loss": 0.619310417175293, + "step": 43100 + }, + { + "epoch": 38.19641672196417, + "grad_norm": 0.4768511950969696, + "learning_rate": 3.0908045977011494e-05, + "loss": 0.6210311126708984, + "step": 43200 + }, + { + "epoch": 38.28489272284893, + "grad_norm": 0.5353608727455139, + "learning_rate": 3.086383731211318e-05, + "loss": 0.6246475601196289, + "step": 43300 + }, + { + "epoch": 38.373368723733684, + "grad_norm": 0.5182030200958252, + "learning_rate": 3.0819628647214855e-05, + "loss": 0.6273392486572266, + "step": 43400 + }, + { + "epoch": 38.461844724618445, + "grad_norm": 0.500842273235321, + "learning_rate": 3.077541998231653e-05, + "loss": 0.6327916717529297, + "step": 43500 + }, + { + "epoch": 38.550320725503205, + "grad_norm": 0.5168542861938477, + "learning_rate": 3.0731211317418216e-05, + "loss": 0.6323520278930664, + "step": 43600 + }, + { + "epoch": 38.638796726387966, + "grad_norm": 0.5403733253479004, + "learning_rate": 3.06870026525199e-05, + "loss": 0.6338058090209961, + "step": 43700 + }, + { + "epoch": 38.72727272727273, + "grad_norm": 0.5119574666023254, + "learning_rate": 3.064279398762158e-05, + "loss": 0.6391129302978515, + "step": 43800 + }, + { + "epoch": 38.81574872815749, + "grad_norm": 0.5214455127716064, + "learning_rate": 3.0598585322723254e-05, + "loss": 0.6368292999267579, + "step": 43900 + }, + { + "epoch": 38.90422472904225, + "grad_norm": 0.5679435133934021, + "learning_rate": 3.055437665782494e-05, + "loss": 0.6414280700683593, + "step": 44000 + }, + { + "epoch": 38.99270072992701, + "grad_norm": 0.5442212820053101, + "learning_rate": 3.0510167992926615e-05, + "loss": 0.6446417999267579, + "step": 44100 + }, + { + "epoch": 39.08051316080513, + "grad_norm": 0.46873417496681213, + "learning_rate": 3.0465959328028292e-05, + "loss": 0.6127575302124023, + "step": 44200 + }, + { + "epoch": 39.16898916168989, + "grad_norm": 0.5402541756629944, + "learning_rate": 3.042175066312998e-05, + "loss": 0.6059606552124024, + "step": 44300 + }, + { + "epoch": 39.257465162574654, + "grad_norm": 0.5081923007965088, + "learning_rate": 3.0377541998231656e-05, + "loss": 0.6121833038330078, + "step": 44400 + }, + { + "epoch": 39.345941163459415, + "grad_norm": 0.5688677430152893, + "learning_rate": 3.0333333333333337e-05, + "loss": 0.6163175964355468, + "step": 44500 + }, + { + "epoch": 39.43441716434417, + "grad_norm": 0.5273306965827942, + "learning_rate": 3.0289124668435014e-05, + "loss": 0.6198236465454101, + "step": 44600 + }, + { + "epoch": 39.52289316522893, + "grad_norm": 0.5107190608978271, + "learning_rate": 3.0244916003536694e-05, + "loss": 0.6242243576049805, + "step": 44700 + }, + { + "epoch": 39.61136916611369, + "grad_norm": 0.5110412240028381, + "learning_rate": 3.0200707338638375e-05, + "loss": 0.6227451705932617, + "step": 44800 + }, + { + "epoch": 39.69984516699845, + "grad_norm": 0.5370123982429504, + "learning_rate": 3.015649867374005e-05, + "loss": 0.6257634735107422, + "step": 44900 + }, + { + "epoch": 39.78832116788321, + "grad_norm": 0.5311342477798462, + "learning_rate": 3.0112290008841735e-05, + "loss": 0.6246538925170898, + "step": 45000 + }, + { + "epoch": 39.87679716876797, + "grad_norm": 0.5247089862823486, + "learning_rate": 3.0068081343943416e-05, + "loss": 0.6278446578979492, + "step": 45100 + }, + { + "epoch": 39.96527316965273, + "grad_norm": 0.5407604575157166, + "learning_rate": 3.0023872679045096e-05, + "loss": 0.6319368743896484, + "step": 45200 + }, + { + "epoch": 40.053085600530856, + "grad_norm": 0.49125176668167114, + "learning_rate": 2.9980106100795756e-05, + "loss": 0.608686294555664, + "step": 45300 + }, + { + "epoch": 40.14156160141562, + "grad_norm": 0.5193077325820923, + "learning_rate": 2.9935897435897437e-05, + "loss": 0.5979312515258789, + "step": 45400 + }, + { + "epoch": 40.23003760230038, + "grad_norm": 0.5521110892295837, + "learning_rate": 2.9891688770999117e-05, + "loss": 0.6026276016235351, + "step": 45500 + }, + { + "epoch": 40.31851360318514, + "grad_norm": 0.5131237506866455, + "learning_rate": 2.9847480106100794e-05, + "loss": 0.6056368637084961, + "step": 45600 + }, + { + "epoch": 40.4069896040699, + "grad_norm": 0.5547003149986267, + "learning_rate": 2.9803271441202478e-05, + "loss": 0.6073746490478515, + "step": 45700 + }, + { + "epoch": 40.49546560495465, + "grad_norm": 0.5059778690338135, + "learning_rate": 2.975906277630416e-05, + "loss": 0.6093035888671875, + "step": 45800 + }, + { + "epoch": 40.583941605839414, + "grad_norm": 0.5218088030815125, + "learning_rate": 2.971485411140584e-05, + "loss": 0.6098678970336914, + "step": 45900 + }, + { + "epoch": 40.672417606724174, + "grad_norm": 0.5111589431762695, + "learning_rate": 2.9670645446507516e-05, + "loss": 0.6144123458862305, + "step": 46000 + }, + { + "epoch": 40.760893607608935, + "grad_norm": 0.5875983238220215, + "learning_rate": 2.9626436781609196e-05, + "loss": 0.6149031448364258, + "step": 46100 + }, + { + "epoch": 40.849369608493696, + "grad_norm": 0.6077953577041626, + "learning_rate": 2.9582228116710873e-05, + "loss": 0.6200779724121094, + "step": 46200 + }, + { + "epoch": 40.937845609378456, + "grad_norm": 0.5511230230331421, + "learning_rate": 2.9538019451812554e-05, + "loss": 0.6175289916992187, + "step": 46300 + }, + { + "epoch": 41.02565804025658, + "grad_norm": 0.5434758067131042, + "learning_rate": 2.9493810786914238e-05, + "loss": 0.6117794418334961, + "step": 46400 + }, + { + "epoch": 41.11413404114134, + "grad_norm": 0.5463586449623108, + "learning_rate": 2.9449602122015918e-05, + "loss": 0.5865156936645508, + "step": 46500 + }, + { + "epoch": 41.2026100420261, + "grad_norm": 0.516645610332489, + "learning_rate": 2.94053934571176e-05, + "loss": 0.5934408950805664, + "step": 46600 + }, + { + "epoch": 41.29108604291086, + "grad_norm": 0.5041747093200684, + "learning_rate": 2.9361184792219276e-05, + "loss": 0.5907432556152343, + "step": 46700 + }, + { + "epoch": 41.37956204379562, + "grad_norm": 0.5490337014198303, + "learning_rate": 2.9316976127320956e-05, + "loss": 0.597823486328125, + "step": 46800 + }, + { + "epoch": 41.468038044680384, + "grad_norm": 0.5256726741790771, + "learning_rate": 2.9272767462422633e-05, + "loss": 0.5979599380493164, + "step": 46900 + }, + { + "epoch": 41.55651404556514, + "grad_norm": 0.49856510758399963, + "learning_rate": 2.9228558797524314e-05, + "loss": 0.6000013732910157, + "step": 47000 + }, + { + "epoch": 41.6449900464499, + "grad_norm": 0.540030837059021, + "learning_rate": 2.9184350132625998e-05, + "loss": 0.6044590759277344, + "step": 47100 + }, + { + "epoch": 41.73346604733466, + "grad_norm": 0.5599401593208313, + "learning_rate": 2.9140141467727678e-05, + "loss": 0.6050262451171875, + "step": 47200 + }, + { + "epoch": 41.82194204821942, + "grad_norm": 0.5251536965370178, + "learning_rate": 2.9095932802829355e-05, + "loss": 0.6084031677246093, + "step": 47300 + }, + { + "epoch": 41.91041804910418, + "grad_norm": 0.6002141237258911, + "learning_rate": 2.9051724137931036e-05, + "loss": 0.6051164627075195, + "step": 47400 + }, + { + "epoch": 41.99889404998894, + "grad_norm": 0.5603448748588562, + "learning_rate": 2.9007515473032716e-05, + "loss": 0.6085728073120117, + "step": 47500 + }, + { + "epoch": 42.086706480867065, + "grad_norm": 0.5491044521331787, + "learning_rate": 2.8963748894783376e-05, + "loss": 0.576365966796875, + "step": 47600 + }, + { + "epoch": 42.175182481751825, + "grad_norm": 0.5698864459991455, + "learning_rate": 2.8919540229885063e-05, + "loss": 0.5807184219360352, + "step": 47700 + }, + { + "epoch": 42.263658482636586, + "grad_norm": 0.574418306350708, + "learning_rate": 2.887533156498674e-05, + "loss": 0.5844138717651367, + "step": 47800 + }, + { + "epoch": 42.35213448352135, + "grad_norm": 0.5167635083198547, + "learning_rate": 2.883112290008842e-05, + "loss": 0.5845949935913086, + "step": 47900 + }, + { + "epoch": 42.44061048440611, + "grad_norm": 0.5338764786720276, + "learning_rate": 2.8786914235190098e-05, + "loss": 0.5889351272583008, + "step": 48000 + }, + { + "epoch": 42.52908648529087, + "grad_norm": 0.5340341329574585, + "learning_rate": 2.8742705570291778e-05, + "loss": 0.5909807205200195, + "step": 48100 + }, + { + "epoch": 42.61756248617562, + "grad_norm": 0.5493650436401367, + "learning_rate": 2.869849690539346e-05, + "loss": 0.5914651107788086, + "step": 48200 + }, + { + "epoch": 42.70603848706038, + "grad_norm": 0.6116383075714111, + "learning_rate": 2.8654288240495136e-05, + "loss": 0.592667350769043, + "step": 48300 + }, + { + "epoch": 42.79451448794514, + "grad_norm": 0.5631881356239319, + "learning_rate": 2.861007957559682e-05, + "loss": 0.5997231674194335, + "step": 48400 + }, + { + "epoch": 42.882990488829904, + "grad_norm": 0.5806667804718018, + "learning_rate": 2.85658709106985e-05, + "loss": 0.5957838439941406, + "step": 48500 + }, + { + "epoch": 42.971466489714665, + "grad_norm": 0.5075005888938904, + "learning_rate": 2.852166224580018e-05, + "loss": 0.5975283432006836, + "step": 48600 + }, + { + "epoch": 43.05927892059279, + "grad_norm": 0.5606797337532043, + "learning_rate": 2.8477453580901857e-05, + "loss": 0.5800529861450195, + "step": 48700 + }, + { + "epoch": 43.14775492147755, + "grad_norm": 0.5353171229362488, + "learning_rate": 2.8433244916003538e-05, + "loss": 0.5706613540649415, + "step": 48800 + }, + { + "epoch": 43.23623092236231, + "grad_norm": 0.5479321479797363, + "learning_rate": 2.8389036251105215e-05, + "loss": 0.5755366516113282, + "step": 48900 + }, + { + "epoch": 43.32470692324707, + "grad_norm": 0.5302407741546631, + "learning_rate": 2.8344827586206895e-05, + "loss": 0.5780391311645507, + "step": 49000 + }, + { + "epoch": 43.41318292413183, + "grad_norm": 0.5579783320426941, + "learning_rate": 2.830061892130858e-05, + "loss": 0.5774256896972656, + "step": 49100 + }, + { + "epoch": 43.50165892501659, + "grad_norm": 0.5295524597167969, + "learning_rate": 2.825641025641026e-05, + "loss": 0.5812548828125, + "step": 49200 + }, + { + "epoch": 43.59013492590135, + "grad_norm": 0.492058664560318, + "learning_rate": 2.821220159151194e-05, + "loss": 0.5796434783935547, + "step": 49300 + }, + { + "epoch": 43.67861092678611, + "grad_norm": 0.48961371183395386, + "learning_rate": 2.8167992926613617e-05, + "loss": 0.5851696014404297, + "step": 49400 + }, + { + "epoch": 43.76708692767087, + "grad_norm": 0.5714001059532166, + "learning_rate": 2.8123784261715298e-05, + "loss": 0.5890889358520508, + "step": 49500 + }, + { + "epoch": 43.85556292855563, + "grad_norm": 0.537390410900116, + "learning_rate": 2.8079575596816975e-05, + "loss": 0.5881150054931641, + "step": 49600 + }, + { + "epoch": 43.94403892944039, + "grad_norm": 0.5263146758079529, + "learning_rate": 2.8035366931918655e-05, + "loss": 0.5868202209472656, + "step": 49700 + }, + { + "epoch": 44.03185136031851, + "grad_norm": 0.5009394288063049, + "learning_rate": 2.7991600353669322e-05, + "loss": 0.578513412475586, + "step": 49800 + }, + { + "epoch": 44.12032736120327, + "grad_norm": 0.5233928561210632, + "learning_rate": 2.7947391688771002e-05, + "loss": 0.5612442016601562, + "step": 49900 + }, + { + "epoch": 44.208803362088034, + "grad_norm": 0.5212284922599792, + "learning_rate": 2.7903183023872683e-05, + "loss": 0.5634622955322266, + "step": 50000 + }, + { + "epoch": 44.297279362972795, + "grad_norm": 0.5920892357826233, + "learning_rate": 2.785897435897436e-05, + "loss": 0.5646255111694336, + "step": 50100 + }, + { + "epoch": 44.385755363857555, + "grad_norm": 0.5463851690292358, + "learning_rate": 2.781476569407604e-05, + "loss": 0.5711798477172851, + "step": 50200 + }, + { + "epoch": 44.474231364742316, + "grad_norm": 0.513917863368988, + "learning_rate": 2.7770557029177717e-05, + "loss": 0.5757728576660156, + "step": 50300 + }, + { + "epoch": 44.56270736562708, + "grad_norm": 0.5791277289390564, + "learning_rate": 2.7726348364279398e-05, + "loss": 0.5719475173950195, + "step": 50400 + }, + { + "epoch": 44.65118336651183, + "grad_norm": 0.5394783616065979, + "learning_rate": 2.768213969938108e-05, + "loss": 0.5751088714599609, + "step": 50500 + }, + { + "epoch": 44.73965936739659, + "grad_norm": 0.5699083805084229, + "learning_rate": 2.7637931034482762e-05, + "loss": 0.5771770095825195, + "step": 50600 + }, + { + "epoch": 44.82813536828135, + "grad_norm": 0.5610557794570923, + "learning_rate": 2.759372236958444e-05, + "loss": 0.5790963745117188, + "step": 50700 + }, + { + "epoch": 44.91661136916611, + "grad_norm": 0.5751321911811829, + "learning_rate": 2.754951370468612e-05, + "loss": 0.5781265258789062, + "step": 50800 + }, + { + "epoch": 45.004423800044236, + "grad_norm": 0.4831089377403259, + "learning_rate": 2.75053050397878e-05, + "loss": 0.5815114593505859, + "step": 50900 + }, + { + "epoch": 45.092899800929, + "grad_norm": 0.5138679146766663, + "learning_rate": 2.7461096374889477e-05, + "loss": 0.5530588912963867, + "step": 51000 + }, + { + "epoch": 45.18137580181376, + "grad_norm": 0.5327210426330566, + "learning_rate": 2.7416887709991158e-05, + "loss": 0.5549150085449219, + "step": 51100 + }, + { + "epoch": 45.26985180269852, + "grad_norm": 0.5089725255966187, + "learning_rate": 2.737267904509284e-05, + "loss": 0.5587585830688476, + "step": 51200 + }, + { + "epoch": 45.35832780358328, + "grad_norm": 0.5307016372680664, + "learning_rate": 2.7328470380194522e-05, + "loss": 0.5582825851440429, + "step": 51300 + }, + { + "epoch": 45.44680380446804, + "grad_norm": 0.6189883351325989, + "learning_rate": 2.72842617152962e-05, + "loss": 0.561285514831543, + "step": 51400 + }, + { + "epoch": 45.5352798053528, + "grad_norm": 0.5789527893066406, + "learning_rate": 2.724005305039788e-05, + "loss": 0.5647828674316406, + "step": 51500 + }, + { + "epoch": 45.62375580623756, + "grad_norm": 0.553713321685791, + "learning_rate": 2.719584438549956e-05, + "loss": 0.5659704208374023, + "step": 51600 + }, + { + "epoch": 45.712231807122315, + "grad_norm": 0.5502424240112305, + "learning_rate": 2.7151635720601237e-05, + "loss": 0.5685673522949218, + "step": 51700 + }, + { + "epoch": 45.800707808007076, + "grad_norm": 0.6388786435127258, + "learning_rate": 2.7107427055702917e-05, + "loss": 0.569713134765625, + "step": 51800 + }, + { + "epoch": 45.889183808891836, + "grad_norm": 0.5839136242866516, + "learning_rate": 2.70632183908046e-05, + "loss": 0.5713850784301758, + "step": 51900 + }, + { + "epoch": 45.9776598097766, + "grad_norm": 0.5872997641563416, + "learning_rate": 2.701900972590628e-05, + "loss": 0.5713462448120117, + "step": 52000 + }, + { + "epoch": 46.06547224065472, + "grad_norm": 0.5111995339393616, + "learning_rate": 2.697524314765694e-05, + "loss": 0.5514000701904297, + "step": 52100 + }, + { + "epoch": 46.15394824153948, + "grad_norm": 0.5677483677864075, + "learning_rate": 2.6931034482758622e-05, + "loss": 0.5458650207519531, + "step": 52200 + }, + { + "epoch": 46.24242424242424, + "grad_norm": 0.5756211876869202, + "learning_rate": 2.68868258178603e-05, + "loss": 0.5480696868896484, + "step": 52300 + }, + { + "epoch": 46.330900243309, + "grad_norm": 0.6053562164306641, + "learning_rate": 2.684261715296198e-05, + "loss": 0.5525957870483399, + "step": 52400 + }, + { + "epoch": 46.419376244193764, + "grad_norm": 0.5155165791511536, + "learning_rate": 2.6798408488063663e-05, + "loss": 0.5557857513427734, + "step": 52500 + }, + { + "epoch": 46.507852245078524, + "grad_norm": 0.5804229378700256, + "learning_rate": 2.6754199823165344e-05, + "loss": 0.5559201049804687, + "step": 52600 + }, + { + "epoch": 46.596328245963285, + "grad_norm": 0.5536544919013977, + "learning_rate": 2.6709991158267024e-05, + "loss": 0.5591853713989258, + "step": 52700 + }, + { + "epoch": 46.684804246848046, + "grad_norm": 0.603621244430542, + "learning_rate": 2.66657824933687e-05, + "loss": 0.5596856307983399, + "step": 52800 + }, + { + "epoch": 46.7732802477328, + "grad_norm": 0.5604232549667358, + "learning_rate": 2.662157382847038e-05, + "loss": 0.5584945678710938, + "step": 52900 + }, + { + "epoch": 46.86175624861756, + "grad_norm": 0.5974889993667603, + "learning_rate": 2.657736516357206e-05, + "loss": 0.5582848358154296, + "step": 53000 + }, + { + "epoch": 46.95023224950232, + "grad_norm": 0.5440397262573242, + "learning_rate": 2.653315649867374e-05, + "loss": 0.5634394454956054, + "step": 53100 + }, + { + "epoch": 47.038044680380445, + "grad_norm": 0.5610032081604004, + "learning_rate": 2.6488947833775423e-05, + "loss": 0.5574512481689453, + "step": 53200 + }, + { + "epoch": 47.126520681265205, + "grad_norm": 0.607563853263855, + "learning_rate": 2.6444739168877104e-05, + "loss": 0.5387821197509766, + "step": 53300 + }, + { + "epoch": 47.214996682149966, + "grad_norm": 0.5836204290390015, + "learning_rate": 2.640053050397878e-05, + "loss": 0.5401793670654297, + "step": 53400 + }, + { + "epoch": 47.30347268303473, + "grad_norm": 0.5325765013694763, + "learning_rate": 2.635632183908046e-05, + "loss": 0.5437668991088868, + "step": 53500 + }, + { + "epoch": 47.39194868391949, + "grad_norm": 0.5740872621536255, + "learning_rate": 2.631211317418214e-05, + "loss": 0.5443574142456055, + "step": 53600 + }, + { + "epoch": 47.48042468480425, + "grad_norm": 0.5562124848365784, + "learning_rate": 2.626790450928382e-05, + "loss": 0.5469727325439453, + "step": 53700 + }, + { + "epoch": 47.56890068568901, + "grad_norm": 0.5893000960350037, + "learning_rate": 2.62236958443855e-05, + "loss": 0.5502291107177735, + "step": 53800 + }, + { + "epoch": 47.65737668657377, + "grad_norm": 0.6538830995559692, + "learning_rate": 2.6179487179487183e-05, + "loss": 0.552915382385254, + "step": 53900 + }, + { + "epoch": 47.74585268745853, + "grad_norm": 0.5710316300392151, + "learning_rate": 2.6135278514588863e-05, + "loss": 0.5510491943359375, + "step": 54000 + }, + { + "epoch": 47.834328688343284, + "grad_norm": 0.5235297083854675, + "learning_rate": 2.609106984969054e-05, + "loss": 0.5519483184814453, + "step": 54100 + }, + { + "epoch": 47.922804689228045, + "grad_norm": 0.6048061847686768, + "learning_rate": 2.604686118479222e-05, + "loss": 0.5567644882202148, + "step": 54200 + }, + { + "epoch": 48.01061712010617, + "grad_norm": 0.5698108077049255, + "learning_rate": 2.6003094606542884e-05, + "loss": 0.5547234344482422, + "step": 54300 + }, + { + "epoch": 48.09909312099093, + "grad_norm": 0.49287617206573486, + "learning_rate": 2.595888594164456e-05, + "loss": 0.5280181884765625, + "step": 54400 + }, + { + "epoch": 48.18756912187569, + "grad_norm": 0.5525228977203369, + "learning_rate": 2.591467727674624e-05, + "loss": 0.5349401092529297, + "step": 54500 + }, + { + "epoch": 48.27604512276045, + "grad_norm": 0.5026161670684814, + "learning_rate": 2.5870468611847925e-05, + "loss": 0.5378446578979492, + "step": 54600 + }, + { + "epoch": 48.36452112364521, + "grad_norm": 0.5191828608512878, + "learning_rate": 2.5826259946949606e-05, + "loss": 0.5382429122924804, + "step": 54700 + }, + { + "epoch": 48.45299712452997, + "grad_norm": 0.5171953439712524, + "learning_rate": 2.5782051282051283e-05, + "loss": 0.5364204406738281, + "step": 54800 + }, + { + "epoch": 48.54147312541473, + "grad_norm": 0.5302397012710571, + "learning_rate": 2.5737842617152963e-05, + "loss": 0.5405542373657226, + "step": 54900 + }, + { + "epoch": 48.62994912629949, + "grad_norm": 0.5187925100326538, + "learning_rate": 2.569363395225464e-05, + "loss": 0.5436551284790039, + "step": 55000 + }, + { + "epoch": 48.718425127184254, + "grad_norm": 0.5707531571388245, + "learning_rate": 2.564942528735632e-05, + "loss": 0.5467363357543945, + "step": 55100 + }, + { + "epoch": 48.806901128069015, + "grad_norm": 0.5525254607200623, + "learning_rate": 2.5605216622458e-05, + "loss": 0.5466318130493164, + "step": 55200 + }, + { + "epoch": 48.89537712895377, + "grad_norm": 0.5896828174591064, + "learning_rate": 2.5561007957559685e-05, + "loss": 0.5489627075195312, + "step": 55300 + }, + { + "epoch": 48.98385312983853, + "grad_norm": 0.593329131603241, + "learning_rate": 2.5516799292661366e-05, + "loss": 0.5492449569702148, + "step": 55400 + }, + { + "epoch": 49.07166556071665, + "grad_norm": 0.45202845335006714, + "learning_rate": 2.5472590627763043e-05, + "loss": 0.5282985687255859, + "step": 55500 + }, + { + "epoch": 49.160141561601414, + "grad_norm": 0.45874515175819397, + "learning_rate": 2.5428381962864723e-05, + "loss": 0.5267356872558594, + "step": 55600 + }, + { + "epoch": 49.248617562486174, + "grad_norm": 0.5499678254127502, + "learning_rate": 2.53841732979664e-05, + "loss": 0.5255993270874023, + "step": 55700 + }, + { + "epoch": 49.337093563370935, + "grad_norm": 0.5569108724594116, + "learning_rate": 2.533996463306808e-05, + "loss": 0.5299503707885742, + "step": 55800 + }, + { + "epoch": 49.425569564255696, + "grad_norm": 0.5677438974380493, + "learning_rate": 2.529575596816976e-05, + "loss": 0.5316028594970703, + "step": 55900 + }, + { + "epoch": 49.51404556514046, + "grad_norm": 0.5888075828552246, + "learning_rate": 2.5251547303271445e-05, + "loss": 0.5354986953735351, + "step": 56000 + }, + { + "epoch": 49.60252156602522, + "grad_norm": 0.5639616250991821, + "learning_rate": 2.5207338638373122e-05, + "loss": 0.5369997787475586, + "step": 56100 + }, + { + "epoch": 49.69099756690998, + "grad_norm": 0.509158194065094, + "learning_rate": 2.5163129973474803e-05, + "loss": 0.536979866027832, + "step": 56200 + }, + { + "epoch": 49.77947356779474, + "grad_norm": 0.5412595868110657, + "learning_rate": 2.5118921308576483e-05, + "loss": 0.5382201004028321, + "step": 56300 + }, + { + "epoch": 49.86794956867949, + "grad_norm": 0.6052098274230957, + "learning_rate": 2.507471264367816e-05, + "loss": 0.5390504837036133, + "step": 56400 + }, + { + "epoch": 49.95642556956425, + "grad_norm": 0.5019105076789856, + "learning_rate": 2.503050397877984e-05, + "loss": 0.5391928482055665, + "step": 56500 + }, + { + "epoch": 50.04423800044238, + "grad_norm": 0.5133684873580933, + "learning_rate": 2.4986737400530504e-05, + "loss": 0.529360580444336, + "step": 56600 + }, + { + "epoch": 50.13271400132714, + "grad_norm": 0.5742220878601074, + "learning_rate": 2.4942528735632184e-05, + "loss": 0.5150651550292968, + "step": 56700 + }, + { + "epoch": 50.2211900022119, + "grad_norm": 0.5389617681503296, + "learning_rate": 2.4898320070733865e-05, + "loss": 0.5204330444335937, + "step": 56800 + }, + { + "epoch": 50.30966600309666, + "grad_norm": 0.5938611030578613, + "learning_rate": 2.4854111405835545e-05, + "loss": 0.5252494049072266, + "step": 56900 + }, + { + "epoch": 50.39814200398142, + "grad_norm": 0.5617892146110535, + "learning_rate": 2.4809902740937225e-05, + "loss": 0.5260490036010742, + "step": 57000 + }, + { + "epoch": 50.48661800486618, + "grad_norm": 0.6076000332832336, + "learning_rate": 2.4765694076038906e-05, + "loss": 0.5278256607055664, + "step": 57100 + }, + { + "epoch": 50.57509400575094, + "grad_norm": 0.5321983695030212, + "learning_rate": 2.4721485411140586e-05, + "loss": 0.5286510467529297, + "step": 57200 + }, + { + "epoch": 50.6635700066357, + "grad_norm": 0.614532470703125, + "learning_rate": 2.4677276746242263e-05, + "loss": 0.5313225936889648, + "step": 57300 + }, + { + "epoch": 50.75204600752046, + "grad_norm": 0.5830910801887512, + "learning_rate": 2.4633068081343944e-05, + "loss": 0.5300481796264649, + "step": 57400 + }, + { + "epoch": 50.84052200840522, + "grad_norm": 0.5918353199958801, + "learning_rate": 2.4588859416445624e-05, + "loss": 0.5337774276733398, + "step": 57500 + }, + { + "epoch": 50.92899800928998, + "grad_norm": 0.5791705846786499, + "learning_rate": 2.4544650751547305e-05, + "loss": 0.5316382598876953, + "step": 57600 + }, + { + "epoch": 51.01681044016811, + "grad_norm": 0.521299421787262, + "learning_rate": 2.4500442086648985e-05, + "loss": 0.5307102203369141, + "step": 57700 + }, + { + "epoch": 51.10528644105286, + "grad_norm": 0.5163324475288391, + "learning_rate": 2.4456233421750666e-05, + "loss": 0.5103409576416016, + "step": 57800 + }, + { + "epoch": 51.19376244193762, + "grad_norm": 0.5436499714851379, + "learning_rate": 2.4412024756852346e-05, + "loss": 0.5144682693481445, + "step": 57900 + }, + { + "epoch": 51.28223844282238, + "grad_norm": 0.5268517136573792, + "learning_rate": 2.4367816091954023e-05, + "loss": 0.5170879364013672, + "step": 58000 + }, + { + "epoch": 51.37071444370714, + "grad_norm": 0.5523056983947754, + "learning_rate": 2.4323607427055704e-05, + "loss": 0.5176148223876953, + "step": 58100 + }, + { + "epoch": 51.459190444591904, + "grad_norm": 0.5733488202095032, + "learning_rate": 2.4279398762157384e-05, + "loss": 0.5213256454467774, + "step": 58200 + }, + { + "epoch": 51.547666445476665, + "grad_norm": 0.6002511978149414, + "learning_rate": 2.4235190097259065e-05, + "loss": 0.5213332748413086, + "step": 58300 + }, + { + "epoch": 51.636142446361426, + "grad_norm": 0.5866407155990601, + "learning_rate": 2.4190981432360742e-05, + "loss": 0.5219316101074218, + "step": 58400 + }, + { + "epoch": 51.724618447246186, + "grad_norm": 0.620346188545227, + "learning_rate": 2.4146772767462426e-05, + "loss": 0.5251021575927735, + "step": 58500 + }, + { + "epoch": 51.81309444813095, + "grad_norm": 0.5428482294082642, + "learning_rate": 2.4102564102564103e-05, + "loss": 0.5254843521118164, + "step": 58600 + }, + { + "epoch": 51.90157044901571, + "grad_norm": 0.6146367192268372, + "learning_rate": 2.4058355437665783e-05, + "loss": 0.5262796401977539, + "step": 58700 + }, + { + "epoch": 51.99004644990046, + "grad_norm": 0.6002848148345947, + "learning_rate": 2.4014146772767464e-05, + "loss": 0.5279874801635742, + "step": 58800 + }, + { + "epoch": 52.07785888077859, + "grad_norm": 0.5608682036399841, + "learning_rate": 2.3970380194518127e-05, + "loss": 0.5045627975463867, + "step": 58900 + }, + { + "epoch": 52.166334881663346, + "grad_norm": 0.5034646391868591, + "learning_rate": 2.3926171529619807e-05, + "loss": 0.5071027755737305, + "step": 59000 + }, + { + "epoch": 52.25481088254811, + "grad_norm": 0.5443050861358643, + "learning_rate": 2.3881962864721484e-05, + "loss": 0.5105178451538086, + "step": 59100 + }, + { + "epoch": 52.34328688343287, + "grad_norm": 0.5455040335655212, + "learning_rate": 2.3837754199823168e-05, + "loss": 0.5111968612670899, + "step": 59200 + }, + { + "epoch": 52.43176288431763, + "grad_norm": 0.5393562912940979, + "learning_rate": 2.3793545534924845e-05, + "loss": 0.5109628295898437, + "step": 59300 + }, + { + "epoch": 52.52023888520239, + "grad_norm": 0.5572716593742371, + "learning_rate": 2.3749336870026526e-05, + "loss": 0.5128989791870118, + "step": 59400 + }, + { + "epoch": 52.60871488608715, + "grad_norm": 0.5157389640808105, + "learning_rate": 2.3705128205128206e-05, + "loss": 0.5179262924194336, + "step": 59500 + }, + { + "epoch": 52.69719088697191, + "grad_norm": 0.5245424509048462, + "learning_rate": 2.3660919540229886e-05, + "loss": 0.5182614517211914, + "step": 59600 + }, + { + "epoch": 52.78566688785667, + "grad_norm": 0.6405171155929565, + "learning_rate": 2.3616710875331567e-05, + "loss": 0.5196902084350586, + "step": 59700 + }, + { + "epoch": 52.87414288874143, + "grad_norm": 0.5531449317932129, + "learning_rate": 2.3572502210433244e-05, + "loss": 0.5213772583007813, + "step": 59800 + }, + { + "epoch": 52.96261888962619, + "grad_norm": 0.5440499186515808, + "learning_rate": 2.3528293545534928e-05, + "loss": 0.5214180755615234, + "step": 59900 + }, + { + "epoch": 53.050431320504316, + "grad_norm": 0.5454942584037781, + "learning_rate": 2.3484084880636605e-05, + "loss": 0.5082747268676758, + "step": 60000 + }, + { + "epoch": 53.13890732138907, + "grad_norm": 0.6037677526473999, + "learning_rate": 2.3439876215738285e-05, + "loss": 0.4992447662353516, + "step": 60100 + }, + { + "epoch": 53.22738332227383, + "grad_norm": 0.6089978218078613, + "learning_rate": 2.3395667550839966e-05, + "loss": 0.501078987121582, + "step": 60200 + }, + { + "epoch": 53.31585932315859, + "grad_norm": 0.5581852793693542, + "learning_rate": 2.3351458885941646e-05, + "loss": 0.50614990234375, + "step": 60300 + }, + { + "epoch": 53.40433532404335, + "grad_norm": 0.5539824366569519, + "learning_rate": 2.3307250221043327e-05, + "loss": 0.5036640548706055, + "step": 60400 + }, + { + "epoch": 53.49281132492811, + "grad_norm": 0.5434619784355164, + "learning_rate": 2.3263041556145004e-05, + "loss": 0.5078977966308593, + "step": 60500 + }, + { + "epoch": 53.58128732581287, + "grad_norm": 0.5596204400062561, + "learning_rate": 2.3218832891246688e-05, + "loss": 0.5105896377563477, + "step": 60600 + }, + { + "epoch": 53.669763326697634, + "grad_norm": 0.5933516621589661, + "learning_rate": 2.3174624226348365e-05, + "loss": 0.512298583984375, + "step": 60700 + }, + { + "epoch": 53.758239327582395, + "grad_norm": 0.5938782095909119, + "learning_rate": 2.3130415561450045e-05, + "loss": 0.5136246871948242, + "step": 60800 + }, + { + "epoch": 53.846715328467155, + "grad_norm": 0.5711195468902588, + "learning_rate": 2.3086206896551726e-05, + "loss": 0.5137527465820313, + "step": 60900 + }, + { + "epoch": 53.935191329351916, + "grad_norm": 0.5345974564552307, + "learning_rate": 2.3041998231653406e-05, + "loss": 0.5148337173461914, + "step": 61000 + }, + { + "epoch": 54.02300376023004, + "grad_norm": 0.5462290644645691, + "learning_rate": 2.299823165340407e-05, + "loss": 0.5070685577392579, + "step": 61100 + }, + { + "epoch": 54.1114797611148, + "grad_norm": 0.5135403275489807, + "learning_rate": 2.295402298850575e-05, + "loss": 0.49042961120605466, + "step": 61200 + }, + { + "epoch": 54.199955761999554, + "grad_norm": 0.5753411650657654, + "learning_rate": 2.290981432360743e-05, + "loss": 0.49762104034423826, + "step": 61300 + }, + { + "epoch": 54.288431762884315, + "grad_norm": 0.5738378167152405, + "learning_rate": 2.2865605658709107e-05, + "loss": 0.4983011245727539, + "step": 61400 + }, + { + "epoch": 54.376907763769076, + "grad_norm": 0.5234966278076172, + "learning_rate": 2.2821396993810788e-05, + "loss": 0.5005590057373047, + "step": 61500 + }, + { + "epoch": 54.465383764653836, + "grad_norm": 0.5313852429389954, + "learning_rate": 2.2777188328912468e-05, + "loss": 0.503372917175293, + "step": 61600 + }, + { + "epoch": 54.5538597655386, + "grad_norm": 0.49838191270828247, + "learning_rate": 2.273297966401415e-05, + "loss": 0.5020324325561524, + "step": 61700 + }, + { + "epoch": 54.64233576642336, + "grad_norm": 0.5403088927268982, + "learning_rate": 2.2688770999115826e-05, + "loss": 0.5049329376220704, + "step": 61800 + }, + { + "epoch": 54.73081176730812, + "grad_norm": 0.46723249554634094, + "learning_rate": 2.264456233421751e-05, + "loss": 0.5059401321411133, + "step": 61900 + }, + { + "epoch": 54.81928776819288, + "grad_norm": 0.5539482235908508, + "learning_rate": 2.2600353669319187e-05, + "loss": 0.5069823837280274, + "step": 62000 + }, + { + "epoch": 54.90776376907764, + "grad_norm": 0.5377270579338074, + "learning_rate": 2.2556145004420867e-05, + "loss": 0.508377685546875, + "step": 62100 + }, + { + "epoch": 54.9962397699624, + "grad_norm": 0.6182072162628174, + "learning_rate": 2.2511936339522548e-05, + "loss": 0.5095947647094726, + "step": 62200 + }, + { + "epoch": 55.084052200840524, + "grad_norm": 0.5139372944831848, + "learning_rate": 2.2467727674624228e-05, + "loss": 0.4896272277832031, + "step": 62300 + }, + { + "epoch": 55.172528201725285, + "grad_norm": 0.5812121629714966, + "learning_rate": 2.242351900972591e-05, + "loss": 0.49099037170410154, + "step": 62400 + }, + { + "epoch": 55.26100420261004, + "grad_norm": 0.5491729378700256, + "learning_rate": 2.2379310344827586e-05, + "loss": 0.4927267074584961, + "step": 62500 + }, + { + "epoch": 55.3494802034948, + "grad_norm": 0.5951135158538818, + "learning_rate": 2.233510167992927e-05, + "loss": 0.49305023193359376, + "step": 62600 + }, + { + "epoch": 55.43795620437956, + "grad_norm": 0.5938172340393066, + "learning_rate": 2.2290893015030946e-05, + "loss": 0.49482032775878904, + "step": 62700 + }, + { + "epoch": 55.52643220526432, + "grad_norm": 0.5288723111152649, + "learning_rate": 2.2246684350132627e-05, + "loss": 0.4974822998046875, + "step": 62800 + }, + { + "epoch": 55.61490820614908, + "grad_norm": 0.5663400888442993, + "learning_rate": 2.2202475685234307e-05, + "loss": 0.498828239440918, + "step": 62900 + }, + { + "epoch": 55.70338420703384, + "grad_norm": 0.5939375162124634, + "learning_rate": 2.2158267020335988e-05, + "loss": 0.5004440307617187, + "step": 63000 + }, + { + "epoch": 55.7918602079186, + "grad_norm": 0.628774106502533, + "learning_rate": 2.2114058355437668e-05, + "loss": 0.5034025573730468, + "step": 63100 + }, + { + "epoch": 55.880336208803364, + "grad_norm": 0.6160352826118469, + "learning_rate": 2.2069849690539345e-05, + "loss": 0.5042695236206055, + "step": 63200 + }, + { + "epoch": 55.968812209688124, + "grad_norm": 0.5891813635826111, + "learning_rate": 2.202564102564103e-05, + "loss": 0.5021416473388672, + "step": 63300 + }, + { + "epoch": 56.05662464056625, + "grad_norm": 0.5297622680664062, + "learning_rate": 2.198187444739169e-05, + "loss": 0.4904953384399414, + "step": 63400 + }, + { + "epoch": 56.14510064145101, + "grad_norm": 0.5649422407150269, + "learning_rate": 2.193766578249337e-05, + "loss": 0.485706672668457, + "step": 63500 + }, + { + "epoch": 56.23357664233577, + "grad_norm": 0.6352797150611877, + "learning_rate": 2.189345711759505e-05, + "loss": 0.4867672348022461, + "step": 63600 + }, + { + "epoch": 56.32205264322052, + "grad_norm": 0.5789678692817688, + "learning_rate": 2.184924845269673e-05, + "loss": 0.48802379608154295, + "step": 63700 + }, + { + "epoch": 56.410528644105284, + "grad_norm": 0.6075431704521179, + "learning_rate": 2.180503978779841e-05, + "loss": 0.4910835647583008, + "step": 63800 + }, + { + "epoch": 56.499004644990045, + "grad_norm": 0.5858777165412903, + "learning_rate": 2.1760831122900088e-05, + "loss": 0.4906935119628906, + "step": 63900 + }, + { + "epoch": 56.587480645874805, + "grad_norm": 0.5143148899078369, + "learning_rate": 2.171662245800177e-05, + "loss": 0.49202545166015627, + "step": 64000 + }, + { + "epoch": 56.675956646759566, + "grad_norm": 0.5330872535705566, + "learning_rate": 2.167241379310345e-05, + "loss": 0.4929664611816406, + "step": 64100 + }, + { + "epoch": 56.76443264764433, + "grad_norm": 0.5530017018318176, + "learning_rate": 2.162820512820513e-05, + "loss": 0.49355899810791015, + "step": 64200 + }, + { + "epoch": 56.85290864852909, + "grad_norm": 0.5891992449760437, + "learning_rate": 2.158399646330681e-05, + "loss": 0.49566749572753904, + "step": 64300 + }, + { + "epoch": 56.94138464941385, + "grad_norm": 0.5289095044136047, + "learning_rate": 2.153978779840849e-05, + "loss": 0.4987163543701172, + "step": 64400 + }, + { + "epoch": 57.02919708029197, + "grad_norm": 0.5679471492767334, + "learning_rate": 2.1495579133510167e-05, + "loss": 0.49003833770751953, + "step": 64500 + }, + { + "epoch": 57.11767308117673, + "grad_norm": 0.5432245135307312, + "learning_rate": 2.1451370468611848e-05, + "loss": 0.47765895843505857, + "step": 64600 + }, + { + "epoch": 57.20614908206149, + "grad_norm": 0.5474491119384766, + "learning_rate": 2.1407161803713528e-05, + "loss": 0.4797785568237305, + "step": 64700 + }, + { + "epoch": 57.294625082946254, + "grad_norm": 0.537804126739502, + "learning_rate": 2.136295313881521e-05, + "loss": 0.4833247756958008, + "step": 64800 + }, + { + "epoch": 57.38310108383101, + "grad_norm": 0.572169840335846, + "learning_rate": 2.131874447391689e-05, + "loss": 0.4836674118041992, + "step": 64900 + }, + { + "epoch": 57.47157708471577, + "grad_norm": 0.5344268679618835, + "learning_rate": 2.127453580901857e-05, + "loss": 0.48507492065429686, + "step": 65000 + }, + { + "epoch": 57.56005308560053, + "grad_norm": 0.5664619207382202, + "learning_rate": 2.123032714412025e-05, + "loss": 0.488138427734375, + "step": 65100 + }, + { + "epoch": 57.64852908648529, + "grad_norm": 0.5902144312858582, + "learning_rate": 2.1186118479221927e-05, + "loss": 0.48771110534667966, + "step": 65200 + }, + { + "epoch": 57.73700508737005, + "grad_norm": 0.562929630279541, + "learning_rate": 2.1141909814323607e-05, + "loss": 0.4875301742553711, + "step": 65300 + }, + { + "epoch": 57.82548108825481, + "grad_norm": 0.5995573997497559, + "learning_rate": 2.1097701149425288e-05, + "loss": 0.49271678924560547, + "step": 65400 + }, + { + "epoch": 57.91395708913957, + "grad_norm": 0.6624785661697388, + "learning_rate": 2.105349248452697e-05, + "loss": 0.4920695877075195, + "step": 65500 + }, + { + "epoch": 58.001769520017696, + "grad_norm": 0.5402753353118896, + "learning_rate": 2.100928381962865e-05, + "loss": 0.49431739807128905, + "step": 65600 + }, + { + "epoch": 58.09024552090246, + "grad_norm": 0.5145826935768127, + "learning_rate": 2.096507515473033e-05, + "loss": 0.47089763641357424, + "step": 65700 + }, + { + "epoch": 58.17872152178722, + "grad_norm": 0.5931445360183716, + "learning_rate": 2.092086648983201e-05, + "loss": 0.4758612060546875, + "step": 65800 + }, + { + "epoch": 58.26719752267198, + "grad_norm": 0.5388639569282532, + "learning_rate": 2.0876657824933687e-05, + "loss": 0.47640296936035154, + "step": 65900 + }, + { + "epoch": 58.35567352355674, + "grad_norm": 0.5639314651489258, + "learning_rate": 2.0832449160035367e-05, + "loss": 0.482130241394043, + "step": 66000 + }, + { + "epoch": 58.44414952444149, + "grad_norm": 0.5535529851913452, + "learning_rate": 2.0788240495137048e-05, + "loss": 0.47872936248779296, + "step": 66100 + }, + { + "epoch": 58.53262552532625, + "grad_norm": 0.5827674865722656, + "learning_rate": 2.0744031830238728e-05, + "loss": 0.4842064666748047, + "step": 66200 + }, + { + "epoch": 58.621101526211014, + "grad_norm": 0.5696784257888794, + "learning_rate": 2.0699823165340405e-05, + "loss": 0.4816234588623047, + "step": 66300 + }, + { + "epoch": 58.709577527095774, + "grad_norm": 0.5349422097206116, + "learning_rate": 2.065561450044209e-05, + "loss": 0.48554718017578125, + "step": 66400 + }, + { + "epoch": 58.798053527980535, + "grad_norm": 0.636604368686676, + "learning_rate": 2.0611405835543766e-05, + "loss": 0.4876006317138672, + "step": 66500 + }, + { + "epoch": 58.886529528865296, + "grad_norm": 0.6060304045677185, + "learning_rate": 2.0567197170645447e-05, + "loss": 0.4887725830078125, + "step": 66600 + }, + { + "epoch": 58.97500552975006, + "grad_norm": 0.6087244749069214, + "learning_rate": 2.0522988505747127e-05, + "loss": 0.4868877410888672, + "step": 66700 + }, + { + "epoch": 59.06281796062818, + "grad_norm": 0.49913933873176575, + "learning_rate": 2.047922192749779e-05, + "loss": 0.4722119140625, + "step": 66800 + }, + { + "epoch": 59.15129396151294, + "grad_norm": 0.4722621738910675, + "learning_rate": 2.043501326259947e-05, + "loss": 0.47009246826171874, + "step": 66900 + }, + { + "epoch": 59.2397699623977, + "grad_norm": 0.5657719373703003, + "learning_rate": 2.0390804597701148e-05, + "loss": 0.472298583984375, + "step": 67000 + }, + { + "epoch": 59.32824596328246, + "grad_norm": 0.5761541724205017, + "learning_rate": 2.034659593280283e-05, + "loss": 0.4723761749267578, + "step": 67100 + }, + { + "epoch": 59.416721964167216, + "grad_norm": 0.6316192150115967, + "learning_rate": 2.030238726790451e-05, + "loss": 0.47409954071044924, + "step": 67200 + }, + { + "epoch": 59.50519796505198, + "grad_norm": 0.6090986132621765, + "learning_rate": 2.025817860300619e-05, + "loss": 0.4764304351806641, + "step": 67300 + }, + { + "epoch": 59.59367396593674, + "grad_norm": 0.5362303256988525, + "learning_rate": 2.021396993810787e-05, + "loss": 0.4776358795166016, + "step": 67400 + }, + { + "epoch": 59.6821499668215, + "grad_norm": 0.553995668888092, + "learning_rate": 2.016976127320955e-05, + "loss": 0.4807791519165039, + "step": 67500 + }, + { + "epoch": 59.77062596770626, + "grad_norm": 0.5615981221199036, + "learning_rate": 2.012555260831123e-05, + "loss": 0.48062610626220703, + "step": 67600 + }, + { + "epoch": 59.85910196859102, + "grad_norm": 0.5885509252548218, + "learning_rate": 2.0081343943412908e-05, + "loss": 0.48244945526123045, + "step": 67700 + }, + { + "epoch": 59.94757796947578, + "grad_norm": 0.6052979230880737, + "learning_rate": 2.003713527851459e-05, + "loss": 0.4803206634521484, + "step": 67800 + }, + { + "epoch": 60.035390400353904, + "grad_norm": 0.5579769015312195, + "learning_rate": 1.999292661361627e-05, + "loss": 0.4752388000488281, + "step": 67900 + }, + { + "epoch": 60.123866401238665, + "grad_norm": 0.478289395570755, + "learning_rate": 1.994871794871795e-05, + "loss": 0.4645302200317383, + "step": 68000 + }, + { + "epoch": 60.212342402123426, + "grad_norm": 0.5545957088470459, + "learning_rate": 1.990450928381963e-05, + "loss": 0.46837158203125, + "step": 68100 + }, + { + "epoch": 60.300818403008186, + "grad_norm": 0.524662435054779, + "learning_rate": 1.986030061892131e-05, + "loss": 0.4679202651977539, + "step": 68200 + }, + { + "epoch": 60.38929440389295, + "grad_norm": 0.6101793646812439, + "learning_rate": 1.981609195402299e-05, + "loss": 0.46956668853759764, + "step": 68300 + }, + { + "epoch": 60.4777704047777, + "grad_norm": 0.5040204524993896, + "learning_rate": 1.9771883289124667e-05, + "loss": 0.4706681060791016, + "step": 68400 + }, + { + "epoch": 60.56624640566246, + "grad_norm": 0.563679039478302, + "learning_rate": 1.972767462422635e-05, + "loss": 0.471558837890625, + "step": 68500 + }, + { + "epoch": 60.65472240654722, + "grad_norm": 0.5668439865112305, + "learning_rate": 1.9683465959328028e-05, + "loss": 0.4727770233154297, + "step": 68600 + }, + { + "epoch": 60.74319840743198, + "grad_norm": 0.6011987328529358, + "learning_rate": 1.963925729442971e-05, + "loss": 0.47645427703857424, + "step": 68700 + }, + { + "epoch": 60.83167440831674, + "grad_norm": 0.6392132043838501, + "learning_rate": 1.959504862953139e-05, + "loss": 0.4765947341918945, + "step": 68800 + }, + { + "epoch": 60.920150409201504, + "grad_norm": 0.6424957513809204, + "learning_rate": 1.955083996463307e-05, + "loss": 0.4768808746337891, + "step": 68900 + }, + { + "epoch": 61.00796284007963, + "grad_norm": 0.5341200828552246, + "learning_rate": 1.9507073386383733e-05, + "loss": 0.4776120376586914, + "step": 69000 + }, + { + "epoch": 61.09643884096439, + "grad_norm": 0.622922956943512, + "learning_rate": 1.9462864721485413e-05, + "loss": 0.46137203216552736, + "step": 69100 + }, + { + "epoch": 61.18491484184915, + "grad_norm": 0.5679436326026917, + "learning_rate": 1.9418656056587094e-05, + "loss": 0.46096920013427733, + "step": 69200 + }, + { + "epoch": 61.27339084273391, + "grad_norm": 0.5972808003425598, + "learning_rate": 1.937444739168877e-05, + "loss": 0.46090087890625, + "step": 69300 + }, + { + "epoch": 61.36186684361867, + "grad_norm": 0.5825915336608887, + "learning_rate": 1.933023872679045e-05, + "loss": 0.46518352508544925, + "step": 69400 + }, + { + "epoch": 61.45034284450343, + "grad_norm": 0.48754116892814636, + "learning_rate": 1.9286030061892132e-05, + "loss": 0.4664886856079102, + "step": 69500 + }, + { + "epoch": 61.538818845388185, + "grad_norm": 0.5583191514015198, + "learning_rate": 1.9241821396993812e-05, + "loss": 0.46886295318603516, + "step": 69600 + }, + { + "epoch": 61.627294846272946, + "grad_norm": 0.5658340454101562, + "learning_rate": 1.919761273209549e-05, + "loss": 0.4696169662475586, + "step": 69700 + }, + { + "epoch": 61.71577084715771, + "grad_norm": 0.5801714658737183, + "learning_rate": 1.9153404067197173e-05, + "loss": 0.47141036987304685, + "step": 69800 + }, + { + "epoch": 61.80424684804247, + "grad_norm": 0.5643869042396545, + "learning_rate": 1.910919540229885e-05, + "loss": 0.4727308654785156, + "step": 69900 + }, + { + "epoch": 61.89272284892723, + "grad_norm": 0.5937660336494446, + "learning_rate": 1.906498673740053e-05, + "loss": 0.4726886367797852, + "step": 70000 + }, + { + "epoch": 61.98119884981199, + "grad_norm": 0.5228411555290222, + "learning_rate": 1.902077807250221e-05, + "loss": 0.47457176208496094, + "step": 70100 + }, + { + "epoch": 62.06901128069011, + "grad_norm": 0.5100186467170715, + "learning_rate": 1.897656940760389e-05, + "loss": 0.4604149627685547, + "step": 70200 + }, + { + "epoch": 62.15748728157487, + "grad_norm": 0.5119529962539673, + "learning_rate": 1.8932360742705572e-05, + "loss": 0.4561204147338867, + "step": 70300 + }, + { + "epoch": 62.245963282459634, + "grad_norm": 0.5130912065505981, + "learning_rate": 1.888815207780725e-05, + "loss": 0.4596226501464844, + "step": 70400 + }, + { + "epoch": 62.334439283344395, + "grad_norm": 0.5388224720954895, + "learning_rate": 1.8843943412908933e-05, + "loss": 0.4617993927001953, + "step": 70500 + }, + { + "epoch": 62.422915284229155, + "grad_norm": 0.5555194020271301, + "learning_rate": 1.879973474801061e-05, + "loss": 0.46267467498779297, + "step": 70600 + }, + { + "epoch": 62.511391285113916, + "grad_norm": 0.5136281847953796, + "learning_rate": 1.875552608311229e-05, + "loss": 0.4628156280517578, + "step": 70700 + }, + { + "epoch": 62.59986728599867, + "grad_norm": 0.5039867162704468, + "learning_rate": 1.871131741821397e-05, + "loss": 0.4678297805786133, + "step": 70800 + }, + { + "epoch": 62.68834328688343, + "grad_norm": 0.566985547542572, + "learning_rate": 1.866710875331565e-05, + "loss": 0.46522830963134765, + "step": 70900 + }, + { + "epoch": 62.77681928776819, + "grad_norm": 0.5855474472045898, + "learning_rate": 1.8622900088417332e-05, + "loss": 0.46788333892822265, + "step": 71000 + }, + { + "epoch": 62.86529528865295, + "grad_norm": 0.5838083624839783, + "learning_rate": 1.857869142351901e-05, + "loss": 0.4687856292724609, + "step": 71100 + }, + { + "epoch": 62.95377128953771, + "grad_norm": 0.6574355363845825, + "learning_rate": 1.8534482758620693e-05, + "loss": 0.46836143493652344, + "step": 71200 + }, + { + "epoch": 63.04158372041584, + "grad_norm": 0.5751773118972778, + "learning_rate": 1.849027409372237e-05, + "loss": 0.4590755844116211, + "step": 71300 + }, + { + "epoch": 63.1300597213006, + "grad_norm": 0.5056807398796082, + "learning_rate": 1.844606542882405e-05, + "loss": 0.45313865661621094, + "step": 71400 + }, + { + "epoch": 63.21853572218536, + "grad_norm": 0.5403828024864197, + "learning_rate": 1.840185676392573e-05, + "loss": 0.4552134323120117, + "step": 71500 + }, + { + "epoch": 63.30701172307012, + "grad_norm": 0.48244568705558777, + "learning_rate": 1.835764809902741e-05, + "loss": 0.45661014556884766, + "step": 71600 + }, + { + "epoch": 63.39548772395488, + "grad_norm": 0.5753127932548523, + "learning_rate": 1.831343943412909e-05, + "loss": 0.4578168487548828, + "step": 71700 + }, + { + "epoch": 63.48396372483964, + "grad_norm": 0.5782042741775513, + "learning_rate": 1.826923076923077e-05, + "loss": 0.4589107131958008, + "step": 71800 + }, + { + "epoch": 63.5724397257244, + "grad_norm": 0.5895569920539856, + "learning_rate": 1.8225022104332453e-05, + "loss": 0.46304950714111326, + "step": 71900 + }, + { + "epoch": 63.660915726609154, + "grad_norm": 0.6601688265800476, + "learning_rate": 1.818081343943413e-05, + "loss": 0.45953712463378904, + "step": 72000 + }, + { + "epoch": 63.749391727493915, + "grad_norm": 0.5695818066596985, + "learning_rate": 1.813660477453581e-05, + "loss": 0.46058246612548825, + "step": 72100 + }, + { + "epoch": 63.837867728378676, + "grad_norm": 0.5006322264671326, + "learning_rate": 1.809239610963749e-05, + "loss": 0.4630731964111328, + "step": 72200 + }, + { + "epoch": 63.926343729263436, + "grad_norm": 0.5871863961219788, + "learning_rate": 1.804818744473917e-05, + "loss": 0.46295913696289065, + "step": 72300 + }, + { + "epoch": 64.01415616014157, + "grad_norm": 0.5417830348014832, + "learning_rate": 1.8003978779840848e-05, + "loss": 0.4623433303833008, + "step": 72400 + }, + { + "epoch": 64.10263216102632, + "grad_norm": 0.5019242763519287, + "learning_rate": 1.795977011494253e-05, + "loss": 0.44698051452636717, + "step": 72500 + }, + { + "epoch": 64.19110816191107, + "grad_norm": 0.5637330412864685, + "learning_rate": 1.791556145004421e-05, + "loss": 0.4492236328125, + "step": 72600 + }, + { + "epoch": 64.27958416279584, + "grad_norm": 0.5333090424537659, + "learning_rate": 1.787135278514589e-05, + "loss": 0.45192584991455076, + "step": 72700 + }, + { + "epoch": 64.3680601636806, + "grad_norm": 0.5232571363449097, + "learning_rate": 1.782714412024757e-05, + "loss": 0.45244823455810546, + "step": 72800 + }, + { + "epoch": 64.45653616456536, + "grad_norm": 0.4935717284679413, + "learning_rate": 1.778293545534925e-05, + "loss": 0.4529353332519531, + "step": 72900 + }, + { + "epoch": 64.54501216545012, + "grad_norm": 0.5450688600540161, + "learning_rate": 1.7739168877099913e-05, + "loss": 0.4567538833618164, + "step": 73000 + }, + { + "epoch": 64.63348816633489, + "grad_norm": 0.47621846199035645, + "learning_rate": 1.769496021220159e-05, + "loss": 0.4563169097900391, + "step": 73100 + }, + { + "epoch": 64.72196416721964, + "grad_norm": 0.5023945569992065, + "learning_rate": 1.7650751547303274e-05, + "loss": 0.46204959869384765, + "step": 73200 + }, + { + "epoch": 64.8104401681044, + "grad_norm": 0.49148306250572205, + "learning_rate": 1.760654288240495e-05, + "loss": 0.45924064636230466, + "step": 73300 + }, + { + "epoch": 64.89891616898916, + "grad_norm": 0.6161800026893616, + "learning_rate": 1.7562334217506632e-05, + "loss": 0.45994918823242187, + "step": 73400 + }, + { + "epoch": 64.98739216987393, + "grad_norm": 0.5307760238647461, + "learning_rate": 1.7518125552608312e-05, + "loss": 0.461478271484375, + "step": 73500 + }, + { + "epoch": 65.07520460075204, + "grad_norm": 0.588062584400177, + "learning_rate": 1.7474358974358976e-05, + "loss": 0.4461378479003906, + "step": 73600 + }, + { + "epoch": 65.16368060163681, + "grad_norm": 0.5329079627990723, + "learning_rate": 1.7430150309460656e-05, + "loss": 0.4440943145751953, + "step": 73700 + }, + { + "epoch": 65.25215660252157, + "grad_norm": 0.6149891018867493, + "learning_rate": 1.7385941644562333e-05, + "loss": 0.44721881866455077, + "step": 73800 + }, + { + "epoch": 65.34063260340632, + "grad_norm": 0.5438173413276672, + "learning_rate": 1.7341732979664017e-05, + "loss": 0.44954757690429686, + "step": 73900 + }, + { + "epoch": 65.42910860429109, + "grad_norm": 0.5428133606910706, + "learning_rate": 1.7297524314765694e-05, + "loss": 0.45107986450195314, + "step": 74000 + }, + { + "epoch": 65.51758460517584, + "grad_norm": 0.5134186744689941, + "learning_rate": 1.7253315649867374e-05, + "loss": 0.45244071960449217, + "step": 74100 + }, + { + "epoch": 65.60606060606061, + "grad_norm": 0.6233081817626953, + "learning_rate": 1.7209106984969055e-05, + "loss": 0.45329185485839846, + "step": 74200 + }, + { + "epoch": 65.69453660694536, + "grad_norm": 0.5700708627700806, + "learning_rate": 1.7164898320070735e-05, + "loss": 0.4539757537841797, + "step": 74300 + }, + { + "epoch": 65.78301260783013, + "grad_norm": 0.5631476640701294, + "learning_rate": 1.7120689655172416e-05, + "loss": 0.4555579376220703, + "step": 74400 + }, + { + "epoch": 65.87148860871488, + "grad_norm": 0.5964381694793701, + "learning_rate": 1.7076480990274093e-05, + "loss": 0.45496936798095705, + "step": 74500 + }, + { + "epoch": 65.95996460959965, + "grad_norm": 0.5872741341590881, + "learning_rate": 1.7032272325375777e-05, + "loss": 0.45641098022460935, + "step": 74600 + }, + { + "epoch": 66.04777704047777, + "grad_norm": 0.522363543510437, + "learning_rate": 1.6988063660477454e-05, + "loss": 0.4488802337646484, + "step": 74700 + }, + { + "epoch": 66.13625304136254, + "grad_norm": 0.5161113739013672, + "learning_rate": 1.6943854995579134e-05, + "loss": 0.44122817993164065, + "step": 74800 + }, + { + "epoch": 66.22472904224729, + "grad_norm": 0.5127883553504944, + "learning_rate": 1.6899646330680815e-05, + "loss": 0.4447059631347656, + "step": 74900 + }, + { + "epoch": 66.31320504313204, + "grad_norm": 0.5202219486236572, + "learning_rate": 1.6855437665782495e-05, + "loss": 0.4453567123413086, + "step": 75000 + }, + { + "epoch": 66.40168104401681, + "grad_norm": 0.4957808256149292, + "learning_rate": 1.6811229000884172e-05, + "loss": 0.44502986907958986, + "step": 75100 + }, + { + "epoch": 66.49015704490157, + "grad_norm": 0.622518002986908, + "learning_rate": 1.6767020335985853e-05, + "loss": 0.44539188385009765, + "step": 75200 + }, + { + "epoch": 66.57863304578633, + "grad_norm": 0.5333230495452881, + "learning_rate": 1.6722811671087537e-05, + "loss": 0.4479424667358398, + "step": 75300 + }, + { + "epoch": 66.66710904667109, + "grad_norm": 0.536641001701355, + "learning_rate": 1.6678603006189214e-05, + "loss": 0.4486875534057617, + "step": 75400 + }, + { + "epoch": 66.75558504755585, + "grad_norm": 0.6140312552452087, + "learning_rate": 1.6634394341290894e-05, + "loss": 0.45118595123291017, + "step": 75500 + }, + { + "epoch": 66.84406104844061, + "grad_norm": 0.5268392562866211, + "learning_rate": 1.6590185676392574e-05, + "loss": 0.4503518676757812, + "step": 75600 + }, + { + "epoch": 66.93253704932538, + "grad_norm": 0.6316497325897217, + "learning_rate": 1.6545977011494255e-05, + "loss": 0.45311626434326174, + "step": 75700 + }, + { + "epoch": 67.02034948020349, + "grad_norm": 0.4964323937892914, + "learning_rate": 1.6502210433244915e-05, + "loss": 0.44798419952392576, + "step": 75800 + }, + { + "epoch": 67.10882548108826, + "grad_norm": 0.5668012499809265, + "learning_rate": 1.6458001768346595e-05, + "loss": 0.43682758331298827, + "step": 75900 + }, + { + "epoch": 67.19730148197301, + "grad_norm": 0.5451331734657288, + "learning_rate": 1.6413793103448276e-05, + "loss": 0.43744281768798826, + "step": 76000 + }, + { + "epoch": 67.28577748285778, + "grad_norm": 0.5625444650650024, + "learning_rate": 1.6369584438549956e-05, + "loss": 0.44072349548339845, + "step": 76100 + }, + { + "epoch": 67.37425348374254, + "grad_norm": 0.5437332391738892, + "learning_rate": 1.6325375773651637e-05, + "loss": 0.4433360290527344, + "step": 76200 + }, + { + "epoch": 67.46272948462729, + "grad_norm": 0.6005889773368835, + "learning_rate": 1.6281167108753317e-05, + "loss": 0.44355270385742185, + "step": 76300 + }, + { + "epoch": 67.55120548551206, + "grad_norm": 0.6379736065864563, + "learning_rate": 1.6236958443854997e-05, + "loss": 0.4445816421508789, + "step": 76400 + }, + { + "epoch": 67.63968148639681, + "grad_norm": 0.4892788529396057, + "learning_rate": 1.6192749778956675e-05, + "loss": 0.4460066604614258, + "step": 76500 + }, + { + "epoch": 67.72815748728158, + "grad_norm": 0.5238019227981567, + "learning_rate": 1.614854111405836e-05, + "loss": 0.44812583923339844, + "step": 76600 + }, + { + "epoch": 67.81663348816633, + "grad_norm": 0.6448091864585876, + "learning_rate": 1.6104332449160035e-05, + "loss": 0.44679683685302735, + "step": 76700 + }, + { + "epoch": 67.9051094890511, + "grad_norm": 0.501971423625946, + "learning_rate": 1.6060123784261716e-05, + "loss": 0.44675071716308595, + "step": 76800 + }, + { + "epoch": 67.99358548993585, + "grad_norm": 0.5027251243591309, + "learning_rate": 1.6015915119363396e-05, + "loss": 0.450067138671875, + "step": 76900 + }, + { + "epoch": 68.08139792081398, + "grad_norm": 0.5118396878242493, + "learning_rate": 1.5971706454465077e-05, + "loss": 0.4363971710205078, + "step": 77000 + }, + { + "epoch": 68.16987392169874, + "grad_norm": 0.49976325035095215, + "learning_rate": 1.5927497789566757e-05, + "loss": 0.43459579467773435, + "step": 77100 + }, + { + "epoch": 68.2583499225835, + "grad_norm": 0.4591541886329651, + "learning_rate": 1.5883289124668434e-05, + "loss": 0.4374491500854492, + "step": 77200 + }, + { + "epoch": 68.34682592346826, + "grad_norm": 0.5061107277870178, + "learning_rate": 1.5839080459770118e-05, + "loss": 0.4367493438720703, + "step": 77300 + }, + { + "epoch": 68.43530192435301, + "grad_norm": 0.5607414245605469, + "learning_rate": 1.5794871794871795e-05, + "loss": 0.43953250885009765, + "step": 77400 + }, + { + "epoch": 68.52377792523778, + "grad_norm": 0.5758550763130188, + "learning_rate": 1.5750663129973476e-05, + "loss": 0.4412353515625, + "step": 77500 + }, + { + "epoch": 68.61225392612253, + "grad_norm": 0.6092869639396667, + "learning_rate": 1.5706454465075153e-05, + "loss": 0.44133682250976564, + "step": 77600 + }, + { + "epoch": 68.7007299270073, + "grad_norm": 0.6203352808952332, + "learning_rate": 1.5662245800176837e-05, + "loss": 0.4439066696166992, + "step": 77700 + }, + { + "epoch": 68.78920592789206, + "grad_norm": 0.5746839046478271, + "learning_rate": 1.5618037135278517e-05, + "loss": 0.4423197174072266, + "step": 77800 + }, + { + "epoch": 68.87768192877682, + "grad_norm": 0.5136276483535767, + "learning_rate": 1.5573828470380194e-05, + "loss": 0.4460869598388672, + "step": 77900 + }, + { + "epoch": 68.96615792966158, + "grad_norm": 0.4968768358230591, + "learning_rate": 1.5529619805481878e-05, + "loss": 0.4462531280517578, + "step": 78000 + }, + { + "epoch": 69.05397036053971, + "grad_norm": 0.5103012919425964, + "learning_rate": 1.5485411140583555e-05, + "loss": 0.43465484619140626, + "step": 78100 + }, + { + "epoch": 69.14244636142446, + "grad_norm": 0.5626784563064575, + "learning_rate": 1.5441202475685236e-05, + "loss": 0.4333412551879883, + "step": 78200 + }, + { + "epoch": 69.23092236230923, + "grad_norm": 0.5118581652641296, + "learning_rate": 1.5396993810786913e-05, + "loss": 0.4336922836303711, + "step": 78300 + }, + { + "epoch": 69.31939836319398, + "grad_norm": 0.5944911241531372, + "learning_rate": 1.5352785145888596e-05, + "loss": 0.43566287994384767, + "step": 78400 + }, + { + "epoch": 69.40787436407874, + "grad_norm": 0.5433744788169861, + "learning_rate": 1.5308576480990273e-05, + "loss": 0.4361726379394531, + "step": 78500 + }, + { + "epoch": 69.4963503649635, + "grad_norm": 0.614020049571991, + "learning_rate": 1.5264367816091954e-05, + "loss": 0.4380105209350586, + "step": 78600 + }, + { + "epoch": 69.58482636584826, + "grad_norm": 0.5004254579544067, + "learning_rate": 1.5220159151193636e-05, + "loss": 0.4391395950317383, + "step": 78700 + }, + { + "epoch": 69.67330236673303, + "grad_norm": 0.522055983543396, + "learning_rate": 1.5175950486295315e-05, + "loss": 0.4396755599975586, + "step": 78800 + }, + { + "epoch": 69.76177836761778, + "grad_norm": 0.524988055229187, + "learning_rate": 1.5131741821396994e-05, + "loss": 0.4374229431152344, + "step": 78900 + }, + { + "epoch": 69.85025436850255, + "grad_norm": 0.5780676603317261, + "learning_rate": 1.5087533156498674e-05, + "loss": 0.4402974319458008, + "step": 79000 + }, + { + "epoch": 69.9387303693873, + "grad_norm": 0.5651708841323853, + "learning_rate": 1.5043324491600355e-05, + "loss": 0.44202667236328125, + "step": 79100 + }, + { + "epoch": 70.02654280026543, + "grad_norm": 0.48370227217674255, + "learning_rate": 1.4999557913351018e-05, + "loss": 0.4367184829711914, + "step": 79200 + }, + { + "epoch": 70.11501880115019, + "grad_norm": 0.5551156401634216, + "learning_rate": 1.4955349248452696e-05, + "loss": 0.42862590789794924, + "step": 79300 + }, + { + "epoch": 70.20349480203495, + "grad_norm": 0.5126725435256958, + "learning_rate": 1.4911140583554379e-05, + "loss": 0.4319373321533203, + "step": 79400 + }, + { + "epoch": 70.2919708029197, + "grad_norm": 0.5189195871353149, + "learning_rate": 1.4866931918656057e-05, + "loss": 0.4309040832519531, + "step": 79500 + }, + { + "epoch": 70.38044680380447, + "grad_norm": 0.49422213435173035, + "learning_rate": 1.4822723253757736e-05, + "loss": 0.43275665283203124, + "step": 79600 + }, + { + "epoch": 70.46892280468923, + "grad_norm": 0.49081242084503174, + "learning_rate": 1.4778514588859418e-05, + "loss": 0.4326107406616211, + "step": 79700 + }, + { + "epoch": 70.55739880557398, + "grad_norm": 0.5408063530921936, + "learning_rate": 1.4734305923961097e-05, + "loss": 0.4341436004638672, + "step": 79800 + }, + { + "epoch": 70.64587480645875, + "grad_norm": 0.4664778411388397, + "learning_rate": 1.4690097259062778e-05, + "loss": 0.4358782577514648, + "step": 79900 + }, + { + "epoch": 70.7343508073435, + "grad_norm": 0.5463866591453552, + "learning_rate": 1.4645888594164456e-05, + "loss": 0.4348703384399414, + "step": 80000 + }, + { + "epoch": 70.82282680822827, + "grad_norm": 0.5187687873840332, + "learning_rate": 1.4601679929266138e-05, + "loss": 0.43734962463378907, + "step": 80100 + }, + { + "epoch": 70.91130280911302, + "grad_norm": 0.4700576961040497, + "learning_rate": 1.4557471264367817e-05, + "loss": 0.43692012786865236, + "step": 80200 + }, + { + "epoch": 70.99977880999779, + "grad_norm": 0.5413524508476257, + "learning_rate": 1.4513262599469496e-05, + "loss": 0.43848495483398436, + "step": 80300 + }, + { + "epoch": 71.08759124087591, + "grad_norm": 0.5619797110557556, + "learning_rate": 1.4469053934571178e-05, + "loss": 0.4241709899902344, + "step": 80400 + }, + { + "epoch": 71.17606724176068, + "grad_norm": 0.5617126226425171, + "learning_rate": 1.4424845269672857e-05, + "loss": 0.42585777282714843, + "step": 80500 + }, + { + "epoch": 71.26454324264543, + "grad_norm": 0.6131432056427002, + "learning_rate": 1.4380636604774536e-05, + "loss": 0.42857707977294923, + "step": 80600 + }, + { + "epoch": 71.3530192435302, + "grad_norm": 0.5178084969520569, + "learning_rate": 1.4336427939876216e-05, + "loss": 0.4283063507080078, + "step": 80700 + }, + { + "epoch": 71.44149524441495, + "grad_norm": 0.4994112253189087, + "learning_rate": 1.4292219274977897e-05, + "loss": 0.43106334686279296, + "step": 80800 + }, + { + "epoch": 71.5299712452997, + "grad_norm": 0.5411744713783264, + "learning_rate": 1.4248010610079577e-05, + "loss": 0.43190105438232423, + "step": 80900 + }, + { + "epoch": 71.61844724618447, + "grad_norm": 0.5602013468742371, + "learning_rate": 1.4203801945181256e-05, + "loss": 0.4335565185546875, + "step": 81000 + }, + { + "epoch": 71.70692324706923, + "grad_norm": 0.5469107031822205, + "learning_rate": 1.4159593280282938e-05, + "loss": 0.4339017105102539, + "step": 81100 + }, + { + "epoch": 71.795399247954, + "grad_norm": 0.5971689224243164, + "learning_rate": 1.4115384615384617e-05, + "loss": 0.43302181243896487, + "step": 81200 + }, + { + "epoch": 71.88387524883875, + "grad_norm": 0.5518947243690491, + "learning_rate": 1.4071175950486295e-05, + "loss": 0.4339981460571289, + "step": 81300 + }, + { + "epoch": 71.97235124972352, + "grad_norm": 0.46094366908073425, + "learning_rate": 1.4026967285587974e-05, + "loss": 0.4368946075439453, + "step": 81400 + }, + { + "epoch": 72.06016368060163, + "grad_norm": 0.5013940334320068, + "learning_rate": 1.3983200707338639e-05, + "loss": 0.4272830581665039, + "step": 81500 + }, + { + "epoch": 72.1486396814864, + "grad_norm": 0.5779539346694946, + "learning_rate": 1.3938992042440318e-05, + "loss": 0.4237482452392578, + "step": 81600 + }, + { + "epoch": 72.23711568237115, + "grad_norm": 0.5799530744552612, + "learning_rate": 1.3894783377541998e-05, + "loss": 0.4221677398681641, + "step": 81700 + }, + { + "epoch": 72.32559168325592, + "grad_norm": 0.4773975908756256, + "learning_rate": 1.385057471264368e-05, + "loss": 0.4251049041748047, + "step": 81800 + }, + { + "epoch": 72.41406768414068, + "grad_norm": 0.5311180353164673, + "learning_rate": 1.380636604774536e-05, + "loss": 0.42632369995117186, + "step": 81900 + }, + { + "epoch": 72.50254368502544, + "grad_norm": 0.47812601923942566, + "learning_rate": 1.3762157382847038e-05, + "loss": 0.42722888946533205, + "step": 82000 + }, + { + "epoch": 72.5910196859102, + "grad_norm": 0.606674313545227, + "learning_rate": 1.371794871794872e-05, + "loss": 0.4295787811279297, + "step": 82100 + }, + { + "epoch": 72.67949568679495, + "grad_norm": 0.5414536595344543, + "learning_rate": 1.3673740053050399e-05, + "loss": 0.4311911392211914, + "step": 82200 + }, + { + "epoch": 72.76797168767972, + "grad_norm": 0.5214236974716187, + "learning_rate": 1.3629531388152078e-05, + "loss": 0.4323184585571289, + "step": 82300 + }, + { + "epoch": 72.85644768856447, + "grad_norm": 0.531461238861084, + "learning_rate": 1.3585322723253756e-05, + "loss": 0.43523616790771485, + "step": 82400 + }, + { + "epoch": 72.94492368944924, + "grad_norm": 0.550273597240448, + "learning_rate": 1.3541114058355439e-05, + "loss": 0.4310142517089844, + "step": 82500 + }, + { + "epoch": 73.03273612032736, + "grad_norm": 0.47776085138320923, + "learning_rate": 1.3496905393457119e-05, + "loss": 0.4287875747680664, + "step": 82600 + }, + { + "epoch": 73.12121212121212, + "grad_norm": 0.4990812838077545, + "learning_rate": 1.3452696728558798e-05, + "loss": 0.42051288604736325, + "step": 82700 + }, + { + "epoch": 73.20968812209688, + "grad_norm": 0.5124841332435608, + "learning_rate": 1.340848806366048e-05, + "loss": 0.4193102264404297, + "step": 82800 + }, + { + "epoch": 73.29816412298165, + "grad_norm": 0.5289502739906311, + "learning_rate": 1.3364279398762159e-05, + "loss": 0.42208141326904297, + "step": 82900 + }, + { + "epoch": 73.3866401238664, + "grad_norm": 0.4958449602127075, + "learning_rate": 1.3320070733863837e-05, + "loss": 0.42313686370849607, + "step": 83000 + }, + { + "epoch": 73.47511612475117, + "grad_norm": 0.5278774499893188, + "learning_rate": 1.3275862068965516e-05, + "loss": 0.42546688079833983, + "step": 83100 + }, + { + "epoch": 73.56359212563592, + "grad_norm": 0.5365238785743713, + "learning_rate": 1.3231653404067198e-05, + "loss": 0.42514255523681643, + "step": 83200 + }, + { + "epoch": 73.65206812652067, + "grad_norm": 0.5327147841453552, + "learning_rate": 1.3187444739168877e-05, + "loss": 0.42642066955566404, + "step": 83300 + }, + { + "epoch": 73.74054412740544, + "grad_norm": 0.5245737433433533, + "learning_rate": 1.3143236074270558e-05, + "loss": 0.4263890838623047, + "step": 83400 + }, + { + "epoch": 73.8290201282902, + "grad_norm": 0.5159674286842346, + "learning_rate": 1.3099027409372238e-05, + "loss": 0.428508415222168, + "step": 83500 + }, + { + "epoch": 73.91749612917496, + "grad_norm": 0.47965142130851746, + "learning_rate": 1.3054818744473918e-05, + "loss": 0.42886260986328123, + "step": 83600 + }, + { + "epoch": 74.00530856005308, + "grad_norm": 0.573679506778717, + "learning_rate": 1.301105216622458e-05, + "loss": 0.4288605499267578, + "step": 83700 + }, + { + "epoch": 74.09378456093785, + "grad_norm": 0.5544322729110718, + "learning_rate": 1.2966843501326262e-05, + "loss": 0.4174742126464844, + "step": 83800 + }, + { + "epoch": 74.1822605618226, + "grad_norm": 0.4993799030780792, + "learning_rate": 1.2922634836427941e-05, + "loss": 0.4191867828369141, + "step": 83900 + }, + { + "epoch": 74.27073656270737, + "grad_norm": 0.57634037733078, + "learning_rate": 1.287842617152962e-05, + "loss": 0.42080997467041015, + "step": 84000 + }, + { + "epoch": 74.35921256359212, + "grad_norm": 0.5524028539657593, + "learning_rate": 1.2834217506631298e-05, + "loss": 0.41995132446289063, + "step": 84100 + }, + { + "epoch": 74.44768856447689, + "grad_norm": 0.5109556913375854, + "learning_rate": 1.279000884173298e-05, + "loss": 0.4207102584838867, + "step": 84200 + }, + { + "epoch": 74.53616456536164, + "grad_norm": 0.6384374499320984, + "learning_rate": 1.2745800176834661e-05, + "loss": 0.42162609100341797, + "step": 84300 + }, + { + "epoch": 74.6246405662464, + "grad_norm": 0.5029319524765015, + "learning_rate": 1.270159151193634e-05, + "loss": 0.4232307815551758, + "step": 84400 + }, + { + "epoch": 74.71311656713117, + "grad_norm": 0.49697303771972656, + "learning_rate": 1.2657382847038022e-05, + "loss": 0.4233212661743164, + "step": 84500 + }, + { + "epoch": 74.80159256801592, + "grad_norm": 0.5748586058616638, + "learning_rate": 1.26131741821397e-05, + "loss": 0.42522281646728516, + "step": 84600 + }, + { + "epoch": 74.89006856890069, + "grad_norm": 0.5335224866867065, + "learning_rate": 1.256896551724138e-05, + "loss": 0.4264080047607422, + "step": 84700 + }, + { + "epoch": 74.97854456978544, + "grad_norm": 0.5223293900489807, + "learning_rate": 1.2524756852343058e-05, + "loss": 0.4248130416870117, + "step": 84800 + }, + { + "epoch": 75.06635700066357, + "grad_norm": 0.588205099105835, + "learning_rate": 1.2480548187444739e-05, + "loss": 0.41714618682861326, + "step": 84900 + }, + { + "epoch": 75.15483300154833, + "grad_norm": 0.4878210127353668, + "learning_rate": 1.2436339522546419e-05, + "loss": 0.41694087982177735, + "step": 85000 + }, + { + "epoch": 75.2433090024331, + "grad_norm": 0.5826809406280518, + "learning_rate": 1.23921308576481e-05, + "loss": 0.41839481353759767, + "step": 85100 + }, + { + "epoch": 75.33178500331785, + "grad_norm": 0.5703395009040833, + "learning_rate": 1.234792219274978e-05, + "loss": 0.419650993347168, + "step": 85200 + }, + { + "epoch": 75.42026100420262, + "grad_norm": 0.5960374474525452, + "learning_rate": 1.230371352785146e-05, + "loss": 0.41910491943359374, + "step": 85300 + }, + { + "epoch": 75.50873700508737, + "grad_norm": 0.5564795732498169, + "learning_rate": 1.225950486295314e-05, + "loss": 0.42010501861572264, + "step": 85400 + }, + { + "epoch": 75.59721300597214, + "grad_norm": 0.5871827006340027, + "learning_rate": 1.221529619805482e-05, + "loss": 0.41939094543457034, + "step": 85500 + }, + { + "epoch": 75.68568900685689, + "grad_norm": 0.6139041185379028, + "learning_rate": 1.2171087533156498e-05, + "loss": 0.42172611236572266, + "step": 85600 + }, + { + "epoch": 75.77416500774164, + "grad_norm": 0.5693202614784241, + "learning_rate": 1.2126878868258179e-05, + "loss": 0.4217537307739258, + "step": 85700 + }, + { + "epoch": 75.86264100862641, + "grad_norm": 0.5371018648147583, + "learning_rate": 1.208267020335986e-05, + "loss": 0.4220458984375, + "step": 85800 + }, + { + "epoch": 75.95111700951117, + "grad_norm": 0.5617541074752808, + "learning_rate": 1.2038461538461538e-05, + "loss": 0.4248412322998047, + "step": 85900 + }, + { + "epoch": 76.0389294403893, + "grad_norm": 0.5177831649780273, + "learning_rate": 1.1994694960212203e-05, + "loss": 0.41939964294433596, + "step": 86000 + }, + { + "epoch": 76.12740544127405, + "grad_norm": 0.5142802000045776, + "learning_rate": 1.1950486295313883e-05, + "loss": 0.4111063003540039, + "step": 86100 + }, + { + "epoch": 76.21588144215882, + "grad_norm": 0.4861648976802826, + "learning_rate": 1.1906277630415562e-05, + "loss": 0.4148457717895508, + "step": 86200 + }, + { + "epoch": 76.30435744304357, + "grad_norm": 0.5097411870956421, + "learning_rate": 1.1862068965517243e-05, + "loss": 0.4158660125732422, + "step": 86300 + }, + { + "epoch": 76.39283344392834, + "grad_norm": 0.4740864336490631, + "learning_rate": 1.1817860300618921e-05, + "loss": 0.4178118133544922, + "step": 86400 + }, + { + "epoch": 76.48130944481309, + "grad_norm": 0.44249430298805237, + "learning_rate": 1.1773651635720602e-05, + "loss": 0.4165281677246094, + "step": 86500 + }, + { + "epoch": 76.56978544569786, + "grad_norm": 0.5490387082099915, + "learning_rate": 1.172944297082228e-05, + "loss": 0.4198506927490234, + "step": 86600 + }, + { + "epoch": 76.65826144658261, + "grad_norm": 0.5175479650497437, + "learning_rate": 1.1685234305923961e-05, + "loss": 0.4220100402832031, + "step": 86700 + }, + { + "epoch": 76.74673744746737, + "grad_norm": 0.5073688626289368, + "learning_rate": 1.1641025641025642e-05, + "loss": 0.4184294891357422, + "step": 86800 + }, + { + "epoch": 76.83521344835214, + "grad_norm": 0.6137869358062744, + "learning_rate": 1.1596816976127322e-05, + "loss": 0.41919185638427736, + "step": 86900 + }, + { + "epoch": 76.92368944923689, + "grad_norm": 0.5274661183357239, + "learning_rate": 1.1552608311229002e-05, + "loss": 0.4193117141723633, + "step": 87000 + }, + { + "epoch": 77.01150188011502, + "grad_norm": 0.578369677066803, + "learning_rate": 1.1508399646330681e-05, + "loss": 0.4192862701416016, + "step": 87100 + }, + { + "epoch": 77.09997788099977, + "grad_norm": 0.6028936505317688, + "learning_rate": 1.1464190981432362e-05, + "loss": 0.40931896209716795, + "step": 87200 + }, + { + "epoch": 77.18845388188454, + "grad_norm": 0.4915790557861328, + "learning_rate": 1.141998231653404e-05, + "loss": 0.41025619506835936, + "step": 87300 + }, + { + "epoch": 77.2769298827693, + "grad_norm": 0.5164591073989868, + "learning_rate": 1.1375773651635721e-05, + "loss": 0.4112412643432617, + "step": 87400 + }, + { + "epoch": 77.36540588365406, + "grad_norm": 0.48311275243759155, + "learning_rate": 1.1331564986737401e-05, + "loss": 0.4144105911254883, + "step": 87500 + }, + { + "epoch": 77.45388188453882, + "grad_norm": 0.46419015526771545, + "learning_rate": 1.128735632183908e-05, + "loss": 0.41563541412353516, + "step": 87600 + }, + { + "epoch": 77.54235788542358, + "grad_norm": 0.6288944482803345, + "learning_rate": 1.124314765694076e-05, + "loss": 0.41669620513916017, + "step": 87700 + }, + { + "epoch": 77.63083388630834, + "grad_norm": 0.497126966714859, + "learning_rate": 1.1198938992042441e-05, + "loss": 0.41618637084960936, + "step": 87800 + }, + { + "epoch": 77.7193098871931, + "grad_norm": 0.5373407602310181, + "learning_rate": 1.1154730327144122e-05, + "loss": 0.41614810943603514, + "step": 87900 + }, + { + "epoch": 77.80778588807786, + "grad_norm": 0.519382894039154, + "learning_rate": 1.1110521662245802e-05, + "loss": 0.41859901428222657, + "step": 88000 + }, + { + "epoch": 77.89626188896261, + "grad_norm": 0.5001983046531677, + "learning_rate": 1.106631299734748e-05, + "loss": 0.418219108581543, + "step": 88100 + }, + { + "epoch": 77.98473788984738, + "grad_norm": 0.5034019947052002, + "learning_rate": 1.1022104332449161e-05, + "loss": 0.4178015899658203, + "step": 88200 + }, + { + "epoch": 78.0725503207255, + "grad_norm": 0.5158605575561523, + "learning_rate": 1.097789566755084e-05, + "loss": 0.4091143035888672, + "step": 88300 + }, + { + "epoch": 78.16102632161027, + "grad_norm": 0.48502761125564575, + "learning_rate": 1.093368700265252e-05, + "loss": 0.40843994140625, + "step": 88400 + }, + { + "epoch": 78.24950232249502, + "grad_norm": 0.5448765754699707, + "learning_rate": 1.08894783377542e-05, + "loss": 0.4109685516357422, + "step": 88500 + }, + { + "epoch": 78.33797832337979, + "grad_norm": 0.52455735206604, + "learning_rate": 1.084526967285588e-05, + "loss": 0.4108180236816406, + "step": 88600 + }, + { + "epoch": 78.42645432426454, + "grad_norm": 0.49440670013427734, + "learning_rate": 1.080106100795756e-05, + "loss": 0.41148426055908205, + "step": 88700 + }, + { + "epoch": 78.51493032514931, + "grad_norm": 0.5575434565544128, + "learning_rate": 1.075685234305924e-05, + "loss": 0.4121563720703125, + "step": 88800 + }, + { + "epoch": 78.60340632603406, + "grad_norm": 0.5276569724082947, + "learning_rate": 1.0712643678160921e-05, + "loss": 0.41357189178466797, + "step": 88900 + }, + { + "epoch": 78.69188232691883, + "grad_norm": 0.5279592871665955, + "learning_rate": 1.06684350132626e-05, + "loss": 0.4147018814086914, + "step": 89000 + }, + { + "epoch": 78.78035832780358, + "grad_norm": 0.4984647333621979, + "learning_rate": 1.062422634836428e-05, + "loss": 0.41413829803466795, + "step": 89100 + }, + { + "epoch": 78.86883432868834, + "grad_norm": 0.5556148886680603, + "learning_rate": 1.0580017683465959e-05, + "loss": 0.4168708419799805, + "step": 89200 + }, + { + "epoch": 78.9573103295731, + "grad_norm": 0.46219438314437866, + "learning_rate": 1.053580901856764e-05, + "loss": 0.41841983795166016, + "step": 89300 + }, + { + "epoch": 79.04512276045122, + "grad_norm": 0.49136674404144287, + "learning_rate": 1.0492042440318303e-05, + "loss": 0.41013729095458984, + "step": 89400 + }, + { + "epoch": 79.13359876133599, + "grad_norm": 0.5096011161804199, + "learning_rate": 1.0447833775419983e-05, + "loss": 0.4057589340209961, + "step": 89500 + }, + { + "epoch": 79.22207476222074, + "grad_norm": 0.4563368558883667, + "learning_rate": 1.0403625110521663e-05, + "loss": 0.4064152526855469, + "step": 89600 + }, + { + "epoch": 79.31055076310551, + "grad_norm": 0.5743097066879272, + "learning_rate": 1.0359416445623344e-05, + "loss": 0.40998432159423825, + "step": 89700 + }, + { + "epoch": 79.39902676399026, + "grad_norm": 0.46749743819236755, + "learning_rate": 1.0315207780725023e-05, + "loss": 0.40825595855712893, + "step": 89800 + }, + { + "epoch": 79.48750276487503, + "grad_norm": 0.522980272769928, + "learning_rate": 1.0270999115826703e-05, + "loss": 0.4116529083251953, + "step": 89900 + }, + { + "epoch": 79.57597876575979, + "grad_norm": 0.4576069712638855, + "learning_rate": 1.0226790450928382e-05, + "loss": 0.41039798736572264, + "step": 90000 + }, + { + "epoch": 79.66445476664455, + "grad_norm": 0.574553370475769, + "learning_rate": 1.0182581786030062e-05, + "loss": 0.4103997802734375, + "step": 90100 + }, + { + "epoch": 79.7529307675293, + "grad_norm": 0.5592597126960754, + "learning_rate": 1.0138373121131741e-05, + "loss": 0.4123684310913086, + "step": 90200 + }, + { + "epoch": 79.84140676841407, + "grad_norm": 0.5754570364952087, + "learning_rate": 1.0094164456233422e-05, + "loss": 0.4138601684570313, + "step": 90300 + }, + { + "epoch": 79.92988276929883, + "grad_norm": 0.5830336213111877, + "learning_rate": 1.0049955791335102e-05, + "loss": 0.41378173828125, + "step": 90400 + }, + { + "epoch": 80.01769520017695, + "grad_norm": 0.473369836807251, + "learning_rate": 1.0005747126436783e-05, + "loss": 0.41222110748291013, + "step": 90500 + }, + { + "epoch": 80.10617120106171, + "grad_norm": 0.5327860116958618, + "learning_rate": 9.961538461538463e-06, + "loss": 0.4058869934082031, + "step": 90600 + }, + { + "epoch": 80.19464720194647, + "grad_norm": 0.5304612517356873, + "learning_rate": 9.917329796640142e-06, + "loss": 0.4061882781982422, + "step": 90700 + }, + { + "epoch": 80.28312320283123, + "grad_norm": 0.5240916013717651, + "learning_rate": 9.873121131741822e-06, + "loss": 0.40706119537353513, + "step": 90800 + }, + { + "epoch": 80.37159920371599, + "grad_norm": 0.4663858413696289, + "learning_rate": 9.828912466843501e-06, + "loss": 0.4077639389038086, + "step": 90900 + }, + { + "epoch": 80.46007520460076, + "grad_norm": 0.4718465805053711, + "learning_rate": 9.784703801945181e-06, + "loss": 0.4078546905517578, + "step": 91000 + }, + { + "epoch": 80.54855120548551, + "grad_norm": 0.45132529735565186, + "learning_rate": 9.740495137046862e-06, + "loss": 0.40724002838134765, + "step": 91100 + }, + { + "epoch": 80.63702720637028, + "grad_norm": 0.4961422085762024, + "learning_rate": 9.69628647214854e-06, + "loss": 0.4097640609741211, + "step": 91200 + }, + { + "epoch": 80.72550320725503, + "grad_norm": 0.5276188850402832, + "learning_rate": 9.652077807250221e-06, + "loss": 0.41011890411376956, + "step": 91300 + }, + { + "epoch": 80.8139792081398, + "grad_norm": 0.48676180839538574, + "learning_rate": 9.607869142351902e-06, + "loss": 0.41075672149658204, + "step": 91400 + }, + { + "epoch": 80.90245520902455, + "grad_norm": 0.5812916159629822, + "learning_rate": 9.563660477453582e-06, + "loss": 0.4131761932373047, + "step": 91500 + }, + { + "epoch": 80.9909312099093, + "grad_norm": 0.5730577707290649, + "learning_rate": 9.51945181255526e-06, + "loss": 0.41234848022460935, + "step": 91600 + }, + { + "epoch": 81.07874364078744, + "grad_norm": 0.5240619778633118, + "learning_rate": 9.475685234305924e-06, + "loss": 0.40376312255859376, + "step": 91700 + }, + { + "epoch": 81.16721964167219, + "grad_norm": 0.46626827120780945, + "learning_rate": 9.431476569407604e-06, + "loss": 0.40396995544433595, + "step": 91800 + }, + { + "epoch": 81.25569564255696, + "grad_norm": 0.49117109179496765, + "learning_rate": 9.387267904509283e-06, + "loss": 0.4028842544555664, + "step": 91900 + }, + { + "epoch": 81.34417164344171, + "grad_norm": 0.5428334474563599, + "learning_rate": 9.343059239610964e-06, + "loss": 0.4046338653564453, + "step": 92000 + }, + { + "epoch": 81.43264764432648, + "grad_norm": 0.5240166783332825, + "learning_rate": 9.298850574712644e-06, + "loss": 0.4052513885498047, + "step": 92100 + }, + { + "epoch": 81.52112364521123, + "grad_norm": 0.4899362325668335, + "learning_rate": 9.254641909814325e-06, + "loss": 0.4052754974365234, + "step": 92200 + }, + { + "epoch": 81.609599646096, + "grad_norm": 0.46969664096832275, + "learning_rate": 9.210433244916005e-06, + "loss": 0.4072676086425781, + "step": 92300 + }, + { + "epoch": 81.69807564698075, + "grad_norm": 0.4990880489349365, + "learning_rate": 9.166224580017684e-06, + "loss": 0.40702415466308595, + "step": 92400 + }, + { + "epoch": 81.78655164786552, + "grad_norm": 0.5545535087585449, + "learning_rate": 9.122015915119364e-06, + "loss": 0.4103099822998047, + "step": 92500 + }, + { + "epoch": 81.87502764875028, + "grad_norm": 0.5591033101081848, + "learning_rate": 9.077807250221043e-06, + "loss": 0.4087317276000977, + "step": 92600 + }, + { + "epoch": 81.96350364963503, + "grad_norm": 0.5289734601974487, + "learning_rate": 9.033598585322723e-06, + "loss": 0.4112258529663086, + "step": 92700 + }, + { + "epoch": 82.05131608051316, + "grad_norm": 0.59573894739151, + "learning_rate": 8.989389920424404e-06, + "loss": 0.40506195068359374, + "step": 92800 + }, + { + "epoch": 82.13979208139791, + "grad_norm": 0.4581588804721832, + "learning_rate": 8.945181255526083e-06, + "loss": 0.401633186340332, + "step": 92900 + }, + { + "epoch": 82.22826808228268, + "grad_norm": 0.4607727527618408, + "learning_rate": 8.900972590627763e-06, + "loss": 0.4030620193481445, + "step": 93000 + }, + { + "epoch": 82.31674408316744, + "grad_norm": 0.5693869590759277, + "learning_rate": 8.856763925729444e-06, + "loss": 0.4034944152832031, + "step": 93100 + }, + { + "epoch": 82.4052200840522, + "grad_norm": 0.4679562449455261, + "learning_rate": 8.812555260831124e-06, + "loss": 0.40353385925292967, + "step": 93200 + }, + { + "epoch": 82.49369608493696, + "grad_norm": 0.4970017373561859, + "learning_rate": 8.768346595932803e-06, + "loss": 0.4040465545654297, + "step": 93300 + }, + { + "epoch": 82.58217208582172, + "grad_norm": 0.4850037097930908, + "learning_rate": 8.724137931034483e-06, + "loss": 0.40520496368408204, + "step": 93400 + }, + { + "epoch": 82.67064808670648, + "grad_norm": 0.5304952263832092, + "learning_rate": 8.679929266136164e-06, + "loss": 0.4062754440307617, + "step": 93500 + }, + { + "epoch": 82.75912408759125, + "grad_norm": 0.5124515891075134, + "learning_rate": 8.635720601237842e-06, + "loss": 0.4042987442016602, + "step": 93600 + }, + { + "epoch": 82.847600088476, + "grad_norm": 0.5527506470680237, + "learning_rate": 8.591511936339523e-06, + "loss": 0.4051095199584961, + "step": 93700 + }, + { + "epoch": 82.93607608936077, + "grad_norm": 0.4627765119075775, + "learning_rate": 8.547303271441202e-06, + "loss": 0.4065189743041992, + "step": 93800 + }, + { + "epoch": 83.02388852023888, + "grad_norm": 0.47690948843955994, + "learning_rate": 8.503094606542882e-06, + "loss": 0.4059687042236328, + "step": 93900 + }, + { + "epoch": 83.11236452112365, + "grad_norm": 0.543329656124115, + "learning_rate": 8.458885941644563e-06, + "loss": 0.40105613708496096, + "step": 94000 + }, + { + "epoch": 83.2008405220084, + "grad_norm": 0.5308240056037903, + "learning_rate": 8.414677276746243e-06, + "loss": 0.3999287414550781, + "step": 94100 + }, + { + "epoch": 83.28931652289316, + "grad_norm": 0.5098600387573242, + "learning_rate": 8.370468611847924e-06, + "loss": 0.3998809051513672, + "step": 94200 + }, + { + "epoch": 83.37779252377793, + "grad_norm": 0.5461894273757935, + "learning_rate": 8.326259946949602e-06, + "loss": 0.4027032470703125, + "step": 94300 + }, + { + "epoch": 83.46626852466268, + "grad_norm": 0.5599612593650818, + "learning_rate": 8.282051282051283e-06, + "loss": 0.4018612289428711, + "step": 94400 + }, + { + "epoch": 83.55474452554745, + "grad_norm": 0.5953245162963867, + "learning_rate": 8.237842617152961e-06, + "loss": 0.4048320770263672, + "step": 94500 + }, + { + "epoch": 83.6432205264322, + "grad_norm": 0.5232775211334229, + "learning_rate": 8.193633952254642e-06, + "loss": 0.40312889099121096, + "step": 94600 + }, + { + "epoch": 83.73169652731697, + "grad_norm": 0.5057620406150818, + "learning_rate": 8.149425287356322e-06, + "loss": 0.4016009521484375, + "step": 94700 + }, + { + "epoch": 83.82017252820172, + "grad_norm": 0.54839026927948, + "learning_rate": 8.105216622458001e-06, + "loss": 0.40390682220458984, + "step": 94800 + }, + { + "epoch": 83.90864852908649, + "grad_norm": 0.42211759090423584, + "learning_rate": 8.061007957559683e-06, + "loss": 0.4043146514892578, + "step": 94900 + }, + { + "epoch": 83.99712452997125, + "grad_norm": 0.46576666831970215, + "learning_rate": 8.016799292661362e-06, + "loss": 0.4071781539916992, + "step": 95000 + }, + { + "epoch": 84.08493696084938, + "grad_norm": 0.48286134004592896, + "learning_rate": 7.973032714412025e-06, + "loss": 0.3980902862548828, + "step": 95100 + }, + { + "epoch": 84.17341296173413, + "grad_norm": 0.5105409026145935, + "learning_rate": 7.928824049513706e-06, + "loss": 0.39626029968261717, + "step": 95200 + }, + { + "epoch": 84.26188896261888, + "grad_norm": 0.5280846357345581, + "learning_rate": 7.884615384615384e-06, + "loss": 0.39923973083496095, + "step": 95300 + }, + { + "epoch": 84.35036496350365, + "grad_norm": 0.49487778544425964, + "learning_rate": 7.840406719717065e-06, + "loss": 0.39867469787597654, + "step": 95400 + }, + { + "epoch": 84.4388409643884, + "grad_norm": 0.5105910897254944, + "learning_rate": 7.796198054818744e-06, + "loss": 0.4000941467285156, + "step": 95500 + }, + { + "epoch": 84.52731696527317, + "grad_norm": 0.49424290657043457, + "learning_rate": 7.751989389920424e-06, + "loss": 0.4025596618652344, + "step": 95600 + }, + { + "epoch": 84.61579296615793, + "grad_norm": 0.5923288464546204, + "learning_rate": 7.707780725022105e-06, + "loss": 0.40207050323486326, + "step": 95700 + }, + { + "epoch": 84.7042689670427, + "grad_norm": 0.47270065546035767, + "learning_rate": 7.663572060123785e-06, + "loss": 0.40140762329101565, + "step": 95800 + }, + { + "epoch": 84.79274496792745, + "grad_norm": 0.4515872597694397, + "learning_rate": 7.619363395225465e-06, + "loss": 0.4039121627807617, + "step": 95900 + }, + { + "epoch": 84.88122096881222, + "grad_norm": 0.5799027681350708, + "learning_rate": 7.575154730327144e-06, + "loss": 0.40215221405029294, + "step": 96000 + }, + { + "epoch": 84.96969696969697, + "grad_norm": 0.5158770680427551, + "learning_rate": 7.530946065428825e-06, + "loss": 0.40449161529541017, + "step": 96100 + }, + { + "epoch": 85.0575094005751, + "grad_norm": 0.5103220343589783, + "learning_rate": 7.4867374005305035e-06, + "loss": 0.3986453628540039, + "step": 96200 + }, + { + "epoch": 85.14598540145985, + "grad_norm": 0.48847347497940063, + "learning_rate": 7.442528735632184e-06, + "loss": 0.3962085723876953, + "step": 96300 + }, + { + "epoch": 85.2344614023446, + "grad_norm": 0.5786899328231812, + "learning_rate": 7.398320070733865e-06, + "loss": 0.398316535949707, + "step": 96400 + }, + { + "epoch": 85.32293740322937, + "grad_norm": 0.4464615285396576, + "learning_rate": 7.354111405835544e-06, + "loss": 0.39748287200927734, + "step": 96500 + }, + { + "epoch": 85.41141340411413, + "grad_norm": 0.5107320547103882, + "learning_rate": 7.3099027409372245e-06, + "loss": 0.399218864440918, + "step": 96600 + }, + { + "epoch": 85.4998894049989, + "grad_norm": 0.5555247068405151, + "learning_rate": 7.265694076038903e-06, + "loss": 0.40016975402832033, + "step": 96700 + }, + { + "epoch": 85.58836540588365, + "grad_norm": 0.46809983253479004, + "learning_rate": 7.2214854111405845e-06, + "loss": 0.39977962493896485, + "step": 96800 + }, + { + "epoch": 85.67684140676842, + "grad_norm": 0.5176143646240234, + "learning_rate": 7.177276746242263e-06, + "loss": 0.39803340911865237, + "step": 96900 + }, + { + "epoch": 85.76531740765317, + "grad_norm": 0.4717543125152588, + "learning_rate": 7.133068081343944e-06, + "loss": 0.4004299545288086, + "step": 97000 + }, + { + "epoch": 85.85379340853794, + "grad_norm": 0.49673059582710266, + "learning_rate": 7.088859416445624e-06, + "loss": 0.40104530334472654, + "step": 97100 + }, + { + "epoch": 85.94226940942269, + "grad_norm": 0.5706076622009277, + "learning_rate": 7.044650751547304e-06, + "loss": 0.40007728576660156, + "step": 97200 + }, + { + "epoch": 86.03008184030082, + "grad_norm": 0.5170352458953857, + "learning_rate": 7.000884173297967e-06, + "loss": 0.39897975921630857, + "step": 97300 + }, + { + "epoch": 86.11855784118558, + "grad_norm": 0.478630930185318, + "learning_rate": 6.956675508399646e-06, + "loss": 0.3933698272705078, + "step": 97400 + }, + { + "epoch": 86.20703384207035, + "grad_norm": 0.5094186067581177, + "learning_rate": 6.912466843501326e-06, + "loss": 0.39624488830566407, + "step": 97500 + }, + { + "epoch": 86.2955098429551, + "grad_norm": 0.5107275247573853, + "learning_rate": 6.868258178603007e-06, + "loss": 0.39685150146484377, + "step": 97600 + }, + { + "epoch": 86.38398584383985, + "grad_norm": 0.5861279964447021, + "learning_rate": 6.824049513704686e-06, + "loss": 0.3973454284667969, + "step": 97700 + }, + { + "epoch": 86.47246184472462, + "grad_norm": 0.490012526512146, + "learning_rate": 6.779840848806367e-06, + "loss": 0.3982046127319336, + "step": 97800 + }, + { + "epoch": 86.56093784560937, + "grad_norm": 0.47647538781166077, + "learning_rate": 6.7356321839080455e-06, + "loss": 0.39851917266845704, + "step": 97900 + }, + { + "epoch": 86.64941384649414, + "grad_norm": 0.45534029603004456, + "learning_rate": 6.691423519009726e-06, + "loss": 0.39754936218261716, + "step": 98000 + }, + { + "epoch": 86.7378898473789, + "grad_norm": 0.5305948257446289, + "learning_rate": 6.647214854111407e-06, + "loss": 0.39900218963623046, + "step": 98100 + }, + { + "epoch": 86.82636584826366, + "grad_norm": 0.48616868257522583, + "learning_rate": 6.603006189213086e-06, + "loss": 0.39878063201904296, + "step": 98200 + }, + { + "epoch": 86.91484184914842, + "grad_norm": 0.4637695252895355, + "learning_rate": 6.5587975243147665e-06, + "loss": 0.39936519622802735, + "step": 98300 + }, + { + "epoch": 87.00265428002655, + "grad_norm": 0.43915867805480957, + "learning_rate": 6.514588859416445e-06, + "loss": 0.39945316314697266, + "step": 98400 + }, + { + "epoch": 87.0911302809113, + "grad_norm": 0.5064729452133179, + "learning_rate": 6.4703801945181265e-06, + "loss": 0.39295291900634766, + "step": 98500 + }, + { + "epoch": 87.17960628179607, + "grad_norm": 0.41172826290130615, + "learning_rate": 6.426171529619805e-06, + "loss": 0.3956099319458008, + "step": 98600 + }, + { + "epoch": 87.26808228268082, + "grad_norm": 0.5156989693641663, + "learning_rate": 6.381962864721486e-06, + "loss": 0.3927472686767578, + "step": 98700 + }, + { + "epoch": 87.35655828356558, + "grad_norm": 0.4864855706691742, + "learning_rate": 6.337754199823166e-06, + "loss": 0.39533439636230466, + "step": 98800 + }, + { + "epoch": 87.44503428445034, + "grad_norm": 0.5469456911087036, + "learning_rate": 6.293545534924846e-06, + "loss": 0.3970512390136719, + "step": 98900 + }, + { + "epoch": 87.5335102853351, + "grad_norm": 0.4618734121322632, + "learning_rate": 6.249336870026525e-06, + "loss": 0.3967998504638672, + "step": 99000 + }, + { + "epoch": 87.62198628621987, + "grad_norm": 0.41789868474006653, + "learning_rate": 6.205128205128206e-06, + "loss": 0.3979497909545898, + "step": 99100 + }, + { + "epoch": 87.71046228710462, + "grad_norm": 0.5439488887786865, + "learning_rate": 6.1609195402298855e-06, + "loss": 0.3960274887084961, + "step": 99200 + }, + { + "epoch": 87.79893828798939, + "grad_norm": 0.46948105096817017, + "learning_rate": 6.116710875331565e-06, + "loss": 0.39781307220458983, + "step": 99300 + }, + { + "epoch": 87.88741428887414, + "grad_norm": 0.4804007411003113, + "learning_rate": 6.0725022104332456e-06, + "loss": 0.39600673675537107, + "step": 99400 + }, + { + "epoch": 87.97589028975891, + "grad_norm": 0.4494355618953705, + "learning_rate": 6.028293545534925e-06, + "loss": 0.3976548385620117, + "step": 99500 + }, + { + "epoch": 88.06370272063702, + "grad_norm": 0.4300312101840973, + "learning_rate": 5.984526967285588e-06, + "loss": 0.3928862762451172, + "step": 99600 + }, + { + "epoch": 88.15217872152179, + "grad_norm": 0.5155128836631775, + "learning_rate": 5.940318302387268e-06, + "loss": 0.39027740478515627, + "step": 99700 + }, + { + "epoch": 88.24065472240655, + "grad_norm": 0.4635615944862366, + "learning_rate": 5.896109637488948e-06, + "loss": 0.3938739776611328, + "step": 99800 + }, + { + "epoch": 88.32913072329131, + "grad_norm": 0.5408588647842407, + "learning_rate": 5.851900972590628e-06, + "loss": 0.3914863967895508, + "step": 99900 + }, + { + "epoch": 88.41760672417607, + "grad_norm": 0.5169259309768677, + "learning_rate": 5.807692307692308e-06, + "loss": 0.3942420959472656, + "step": 100000 + }, + { + "epoch": 88.50608272506082, + "grad_norm": 0.43603307008743286, + "learning_rate": 5.763483642793987e-06, + "loss": 0.3942053604125977, + "step": 100100 + }, + { + "epoch": 88.59455872594559, + "grad_norm": 0.484275758266449, + "learning_rate": 5.719274977895668e-06, + "loss": 0.3953342056274414, + "step": 100200 + }, + { + "epoch": 88.68303472683034, + "grad_norm": 0.4834429621696472, + "learning_rate": 5.675066312997348e-06, + "loss": 0.39478866577148436, + "step": 100300 + }, + { + "epoch": 88.77151072771511, + "grad_norm": 0.5198318362236023, + "learning_rate": 5.630857648099028e-06, + "loss": 0.3973033905029297, + "step": 100400 + }, + { + "epoch": 88.85998672859986, + "grad_norm": 0.5359114408493042, + "learning_rate": 5.586648983200707e-06, + "loss": 0.3963985824584961, + "step": 100500 + }, + { + "epoch": 88.94846272948463, + "grad_norm": 0.47174566984176636, + "learning_rate": 5.542440318302387e-06, + "loss": 0.39962120056152345, + "step": 100600 + }, + { + "epoch": 89.03627516036275, + "grad_norm": 0.5552394986152649, + "learning_rate": 5.498231653404067e-06, + "loss": 0.3942194747924805, + "step": 100700 + }, + { + "epoch": 89.12475116124752, + "grad_norm": 0.4985731840133667, + "learning_rate": 5.454022988505748e-06, + "loss": 0.39029048919677733, + "step": 100800 + }, + { + "epoch": 89.21322716213227, + "grad_norm": 0.5449782013893127, + "learning_rate": 5.4098143236074275e-06, + "loss": 0.391842155456543, + "step": 100900 + }, + { + "epoch": 89.30170316301704, + "grad_norm": 0.47477561235427856, + "learning_rate": 5.365605658709107e-06, + "loss": 0.39065505981445314, + "step": 101000 + }, + { + "epoch": 89.39017916390179, + "grad_norm": 0.5775418281555176, + "learning_rate": 5.3213969938107875e-06, + "loss": 0.39322795867919924, + "step": 101100 + }, + { + "epoch": 89.47865516478655, + "grad_norm": 0.44463786482810974, + "learning_rate": 5.277188328912467e-06, + "loss": 0.3929602813720703, + "step": 101200 + }, + { + "epoch": 89.56713116567131, + "grad_norm": 0.5217382311820984, + "learning_rate": 5.232979664014147e-06, + "loss": 0.3945352172851562, + "step": 101300 + }, + { + "epoch": 89.65560716655607, + "grad_norm": 0.47336575388908386, + "learning_rate": 5.188770999115826e-06, + "loss": 0.3943867492675781, + "step": 101400 + }, + { + "epoch": 89.74408316744083, + "grad_norm": 0.49890655279159546, + "learning_rate": 5.144562334217507e-06, + "loss": 0.39472442626953125, + "step": 101500 + }, + { + "epoch": 89.83255916832559, + "grad_norm": 0.4528096914291382, + "learning_rate": 5.100353669319187e-06, + "loss": 0.3927711868286133, + "step": 101600 + }, + { + "epoch": 89.92103516921036, + "grad_norm": 0.4498828649520874, + "learning_rate": 5.056145004420867e-06, + "loss": 0.3962491226196289, + "step": 101700 + }, + { + "epoch": 90.00884760008847, + "grad_norm": 0.45861297845840454, + "learning_rate": 5.0119363395225465e-06, + "loss": 0.39339271545410154, + "step": 101800 + }, + { + "epoch": 90.09732360097324, + "grad_norm": 0.5762381553649902, + "learning_rate": 4.967727674624226e-06, + "loss": 0.3896630096435547, + "step": 101900 + }, + { + "epoch": 90.185799601858, + "grad_norm": 0.5530878305435181, + "learning_rate": 4.923519009725907e-06, + "loss": 0.38933868408203126, + "step": 102000 + }, + { + "epoch": 90.27427560274276, + "grad_norm": 0.4769279360771179, + "learning_rate": 4.879310344827587e-06, + "loss": 0.38943870544433595, + "step": 102100 + }, + { + "epoch": 90.36275160362752, + "grad_norm": 0.5254392027854919, + "learning_rate": 4.835101679929267e-06, + "loss": 0.39091030120849607, + "step": 102200 + }, + { + "epoch": 90.45122760451227, + "grad_norm": 0.5098690986633301, + "learning_rate": 4.790893015030946e-06, + "loss": 0.39340557098388673, + "step": 102300 + }, + { + "epoch": 90.53970360539704, + "grad_norm": 0.5299240946769714, + "learning_rate": 4.746684350132626e-06, + "loss": 0.3925971221923828, + "step": 102400 + }, + { + "epoch": 90.62817960628179, + "grad_norm": 0.5023613572120667, + "learning_rate": 4.702475685234306e-06, + "loss": 0.3934814453125, + "step": 102500 + }, + { + "epoch": 90.71665560716656, + "grad_norm": 0.5217054486274719, + "learning_rate": 4.658267020335986e-06, + "loss": 0.39229228973388675, + "step": 102600 + }, + { + "epoch": 90.80513160805131, + "grad_norm": 0.4929801821708679, + "learning_rate": 4.6140583554376656e-06, + "loss": 0.39253700256347657, + "step": 102700 + }, + { + "epoch": 90.89360760893608, + "grad_norm": 0.4281506836414337, + "learning_rate": 4.569849690539346e-06, + "loss": 0.39423236846923826, + "step": 102800 + }, + { + "epoch": 90.98208360982083, + "grad_norm": 0.5606275796890259, + "learning_rate": 4.525641025641026e-06, + "loss": 0.39174613952636717, + "step": 102900 + }, + { + "epoch": 91.06989604069896, + "grad_norm": 0.40593966841697693, + "learning_rate": 4.481874447391689e-06, + "loss": 0.39004261016845704, + "step": 103000 + }, + { + "epoch": 91.15837204158372, + "grad_norm": 0.48218822479248047, + "learning_rate": 4.437665782493368e-06, + "loss": 0.39024349212646486, + "step": 103100 + }, + { + "epoch": 91.24684804246849, + "grad_norm": 0.4803628623485565, + "learning_rate": 4.393457117595049e-06, + "loss": 0.3893236541748047, + "step": 103200 + }, + { + "epoch": 91.33532404335324, + "grad_norm": 0.5424004197120667, + "learning_rate": 4.349248452696729e-06, + "loss": 0.3895704650878906, + "step": 103300 + }, + { + "epoch": 91.423800044238, + "grad_norm": 0.4238603711128235, + "learning_rate": 4.305039787798409e-06, + "loss": 0.3891864776611328, + "step": 103400 + }, + { + "epoch": 91.51227604512276, + "grad_norm": 0.5425596833229065, + "learning_rate": 4.2608311229000885e-06, + "loss": 0.3902478408813477, + "step": 103500 + }, + { + "epoch": 91.60075204600751, + "grad_norm": 0.529647946357727, + "learning_rate": 4.216622458001768e-06, + "loss": 0.39207550048828127, + "step": 103600 + }, + { + "epoch": 91.68922804689228, + "grad_norm": 0.42155396938323975, + "learning_rate": 4.1724137931034486e-06, + "loss": 0.3911063766479492, + "step": 103700 + }, + { + "epoch": 91.77770404777704, + "grad_norm": 0.4809010326862335, + "learning_rate": 4.128205128205129e-06, + "loss": 0.3927000427246094, + "step": 103800 + }, + { + "epoch": 91.8661800486618, + "grad_norm": 0.4598400890827179, + "learning_rate": 4.083996463306809e-06, + "loss": 0.38986122131347656, + "step": 103900 + }, + { + "epoch": 91.95465604954656, + "grad_norm": 0.52349853515625, + "learning_rate": 4.039787798408488e-06, + "loss": 0.3922639465332031, + "step": 104000 + }, + { + "epoch": 92.04246848042469, + "grad_norm": 0.5118280053138733, + "learning_rate": 3.996021220159151e-06, + "loss": 0.388396110534668, + "step": 104100 + }, + { + "epoch": 92.13094448130944, + "grad_norm": 0.49287110567092896, + "learning_rate": 3.951812555260832e-06, + "loss": 0.3882394027709961, + "step": 104200 + }, + { + "epoch": 92.21942048219421, + "grad_norm": 0.5597590804100037, + "learning_rate": 3.9076038903625115e-06, + "loss": 0.38768112182617187, + "step": 104300 + }, + { + "epoch": 92.30789648307896, + "grad_norm": 0.49123573303222656, + "learning_rate": 3.863395225464191e-06, + "loss": 0.38717472076416015, + "step": 104400 + }, + { + "epoch": 92.39637248396373, + "grad_norm": 0.5490599870681763, + "learning_rate": 3.819186560565871e-06, + "loss": 0.38968246459960937, + "step": 104500 + }, + { + "epoch": 92.48484848484848, + "grad_norm": 0.563377857208252, + "learning_rate": 3.7749778956675507e-06, + "loss": 0.3879422760009766, + "step": 104600 + }, + { + "epoch": 92.57332448573324, + "grad_norm": 0.5248238444328308, + "learning_rate": 3.7307692307692308e-06, + "loss": 0.3904239654541016, + "step": 104700 + }, + { + "epoch": 92.661800486618, + "grad_norm": 0.5977566242218018, + "learning_rate": 3.6865605658709104e-06, + "loss": 0.39140804290771486, + "step": 104800 + }, + { + "epoch": 92.75027648750276, + "grad_norm": 0.4992641508579254, + "learning_rate": 3.6423519009725912e-06, + "loss": 0.390025749206543, + "step": 104900 + }, + { + "epoch": 92.83875248838753, + "grad_norm": 0.5491787791252136, + "learning_rate": 3.598143236074271e-06, + "loss": 0.39107063293457034, + "step": 105000 + }, + { + "epoch": 92.92722848927228, + "grad_norm": 0.46409890055656433, + "learning_rate": 3.553934571175951e-06, + "loss": 0.3911115264892578, + "step": 105100 + }, + { + "epoch": 93.01504092015041, + "grad_norm": 0.5469849705696106, + "learning_rate": 3.5097259062776305e-06, + "loss": 0.3916855621337891, + "step": 105200 + }, + { + "epoch": 93.10351692103517, + "grad_norm": 0.496277391910553, + "learning_rate": 3.4655172413793105e-06, + "loss": 0.3867160415649414, + "step": 105300 + }, + { + "epoch": 93.19199292191993, + "grad_norm": 0.42929497361183167, + "learning_rate": 3.42130857648099e-06, + "loss": 0.38718021392822266, + "step": 105400 + }, + { + "epoch": 93.28046892280469, + "grad_norm": 0.406601220369339, + "learning_rate": 3.3770999115826706e-06, + "loss": 0.386837272644043, + "step": 105500 + }, + { + "epoch": 93.36894492368945, + "grad_norm": 0.48087212443351746, + "learning_rate": 3.3328912466843506e-06, + "loss": 0.3877327346801758, + "step": 105600 + }, + { + "epoch": 93.45742092457421, + "grad_norm": 0.5117219090461731, + "learning_rate": 3.2886825817860302e-06, + "loss": 0.38803070068359374, + "step": 105700 + }, + { + "epoch": 93.54589692545898, + "grad_norm": 0.6043857932090759, + "learning_rate": 3.2444739168877103e-06, + "loss": 0.38934085845947264, + "step": 105800 + }, + { + "epoch": 93.63437292634373, + "grad_norm": 0.5303599238395691, + "learning_rate": 3.20026525198939e-06, + "loss": 0.3872317123413086, + "step": 105900 + }, + { + "epoch": 93.72284892722848, + "grad_norm": 0.48868313431739807, + "learning_rate": 3.15605658709107e-06, + "loss": 0.3903642272949219, + "step": 106000 + }, + { + "epoch": 93.81132492811325, + "grad_norm": 0.5126668810844421, + "learning_rate": 3.11184792219275e-06, + "loss": 0.3893658447265625, + "step": 106100 + }, + { + "epoch": 93.899800928998, + "grad_norm": 0.5788067579269409, + "learning_rate": 3.06763925729443e-06, + "loss": 0.3887732315063477, + "step": 106200 + }, + { + "epoch": 93.98827692988277, + "grad_norm": 0.5931738615036011, + "learning_rate": 3.0234305923961096e-06, + "loss": 0.3858309555053711, + "step": 106300 + }, + { + "epoch": 94.07608936076089, + "grad_norm": 0.4667378067970276, + "learning_rate": 2.9792219274977896e-06, + "loss": 0.3882503128051758, + "step": 106400 + }, + { + "epoch": 94.16456536164566, + "grad_norm": 0.4540467858314514, + "learning_rate": 2.9350132625994697e-06, + "loss": 0.3879624557495117, + "step": 106500 + }, + { + "epoch": 94.25304136253041, + "grad_norm": 0.5249928832054138, + "learning_rate": 2.8908045977011493e-06, + "loss": 0.3871700668334961, + "step": 106600 + }, + { + "epoch": 94.34151736341518, + "grad_norm": 0.4902016520500183, + "learning_rate": 2.8465959328028297e-06, + "loss": 0.3865641403198242, + "step": 106700 + }, + { + "epoch": 94.42999336429993, + "grad_norm": 0.4490734934806824, + "learning_rate": 2.8023872679045093e-06, + "loss": 0.3874678039550781, + "step": 106800 + }, + { + "epoch": 94.5184693651847, + "grad_norm": 0.39259180426597595, + "learning_rate": 2.7581786030061894e-06, + "loss": 0.3864010238647461, + "step": 106900 + }, + { + "epoch": 94.60694536606945, + "grad_norm": 0.5160086154937744, + "learning_rate": 2.7139699381078694e-06, + "loss": 0.38762042999267576, + "step": 107000 + }, + { + "epoch": 94.6954213669542, + "grad_norm": 0.5112566947937012, + "learning_rate": 2.669761273209549e-06, + "loss": 0.38802257537841794, + "step": 107100 + }, + { + "epoch": 94.78389736783897, + "grad_norm": 0.48586076498031616, + "learning_rate": 2.625552608311229e-06, + "loss": 0.3883600616455078, + "step": 107200 + }, + { + "epoch": 94.87237336872373, + "grad_norm": 0.5169211626052856, + "learning_rate": 2.581343943412909e-06, + "loss": 0.38775413513183593, + "step": 107300 + }, + { + "epoch": 94.9608493696085, + "grad_norm": 0.4262998700141907, + "learning_rate": 2.537135278514589e-06, + "loss": 0.3891670608520508, + "step": 107400 + }, + { + "epoch": 95.04866180048661, + "grad_norm": 0.4452260434627533, + "learning_rate": 2.4929266136162687e-06, + "loss": 0.38474632263183595, + "step": 107500 + }, + { + "epoch": 95.13713780137138, + "grad_norm": 0.5349674820899963, + "learning_rate": 2.4487179487179488e-06, + "loss": 0.3851365661621094, + "step": 107600 + }, + { + "epoch": 95.22561380225613, + "grad_norm": 0.4277512729167938, + "learning_rate": 2.404509283819629e-06, + "loss": 0.38448490142822267, + "step": 107700 + }, + { + "epoch": 95.3140898031409, + "grad_norm": 0.5199966430664062, + "learning_rate": 2.360300618921309e-06, + "loss": 0.3855178451538086, + "step": 107800 + }, + { + "epoch": 95.40256580402566, + "grad_norm": 0.49931713938713074, + "learning_rate": 2.3160919540229885e-06, + "loss": 0.38597549438476564, + "step": 107900 + }, + { + "epoch": 95.49104180491042, + "grad_norm": 0.44888851046562195, + "learning_rate": 2.2718832891246685e-06, + "loss": 0.38637237548828124, + "step": 108000 + }, + { + "epoch": 95.57951780579518, + "grad_norm": 0.48020413517951965, + "learning_rate": 2.2276746242263485e-06, + "loss": 0.3860820388793945, + "step": 108100 + }, + { + "epoch": 95.66799380667993, + "grad_norm": 0.49320459365844727, + "learning_rate": 2.183465959328028e-06, + "loss": 0.3868730926513672, + "step": 108200 + }, + { + "epoch": 95.7564698075647, + "grad_norm": 0.4776149392127991, + "learning_rate": 2.1392572944297086e-06, + "loss": 0.38699729919433595, + "step": 108300 + }, + { + "epoch": 95.84494580844945, + "grad_norm": 0.4394153356552124, + "learning_rate": 2.095048629531388e-06, + "loss": 0.3858388137817383, + "step": 108400 + }, + { + "epoch": 95.93342180933422, + "grad_norm": 0.40809816122055054, + "learning_rate": 2.0508399646330682e-06, + "loss": 0.3865514373779297, + "step": 108500 + }, + { + "epoch": 96.02123424021234, + "grad_norm": 0.40297845005989075, + "learning_rate": 2.0070733863837314e-06, + "loss": 0.38520877838134765, + "step": 108600 + }, + { + "epoch": 96.1097102410971, + "grad_norm": 0.4992787837982178, + "learning_rate": 1.9628647214854114e-06, + "loss": 0.3824159622192383, + "step": 108700 + }, + { + "epoch": 96.19818624198186, + "grad_norm": 0.4386002719402313, + "learning_rate": 1.918656056587091e-06, + "loss": 0.3828225326538086, + "step": 108800 + }, + { + "epoch": 96.28666224286663, + "grad_norm": 0.4839923679828644, + "learning_rate": 1.874447391688771e-06, + "loss": 0.3837508392333984, + "step": 108900 + }, + { + "epoch": 96.37513824375138, + "grad_norm": 0.5360403656959534, + "learning_rate": 1.830238726790451e-06, + "loss": 0.3868670654296875, + "step": 109000 + }, + { + "epoch": 96.46361424463615, + "grad_norm": 0.5472413897514343, + "learning_rate": 1.786030061892131e-06, + "loss": 0.38740249633789064, + "step": 109100 + }, + { + "epoch": 96.5520902455209, + "grad_norm": 0.4783819019794464, + "learning_rate": 1.7418213969938107e-06, + "loss": 0.3851567459106445, + "step": 109200 + }, + { + "epoch": 96.64056624640567, + "grad_norm": 0.5319016575813293, + "learning_rate": 1.6976127320954906e-06, + "loss": 0.38549720764160156, + "step": 109300 + }, + { + "epoch": 96.72904224729042, + "grad_norm": 0.4579726755619049, + "learning_rate": 1.6534040671971708e-06, + "loss": 0.38684429168701173, + "step": 109400 + }, + { + "epoch": 96.81751824817518, + "grad_norm": 0.4699755012989044, + "learning_rate": 1.6091954022988506e-06, + "loss": 0.3849377822875977, + "step": 109500 + }, + { + "epoch": 96.90599424905994, + "grad_norm": 0.5681434273719788, + "learning_rate": 1.5649867374005304e-06, + "loss": 0.38494167327880857, + "step": 109600 + }, + { + "epoch": 96.9944702499447, + "grad_norm": 0.40921762585639954, + "learning_rate": 1.5207780725022105e-06, + "loss": 0.3864158630371094, + "step": 109700 + }, + { + "epoch": 97.08228268082283, + "grad_norm": 0.5271804928779602, + "learning_rate": 1.4765694076038905e-06, + "loss": 0.3854814529418945, + "step": 109800 + }, + { + "epoch": 97.17075868170758, + "grad_norm": 0.5390716195106506, + "learning_rate": 1.4323607427055703e-06, + "loss": 0.3826302719116211, + "step": 109900 + }, + { + "epoch": 97.25923468259235, + "grad_norm": 0.4738744795322418, + "learning_rate": 1.3881520778072502e-06, + "loss": 0.3834680938720703, + "step": 110000 + }, + { + "epoch": 97.3477106834771, + "grad_norm": 0.47226211428642273, + "learning_rate": 1.3439434129089302e-06, + "loss": 0.383985595703125, + "step": 110100 + }, + { + "epoch": 97.43618668436187, + "grad_norm": 0.44581323862075806, + "learning_rate": 1.29973474801061e-06, + "loss": 0.38392398834228514, + "step": 110200 + }, + { + "epoch": 97.52466268524662, + "grad_norm": 0.505975067615509, + "learning_rate": 1.25552608311229e-06, + "loss": 0.3842586898803711, + "step": 110300 + }, + { + "epoch": 97.61313868613139, + "grad_norm": 0.4737127125263214, + "learning_rate": 1.21131741821397e-06, + "loss": 0.3853626251220703, + "step": 110400 + }, + { + "epoch": 97.70161468701615, + "grad_norm": 0.42337724566459656, + "learning_rate": 1.16710875331565e-06, + "loss": 0.3860707092285156, + "step": 110500 + }, + { + "epoch": 97.7900906879009, + "grad_norm": 0.470935583114624, + "learning_rate": 1.12290008841733e-06, + "loss": 0.3849189758300781, + "step": 110600 + }, + { + "epoch": 97.87856668878567, + "grad_norm": 0.5499629974365234, + "learning_rate": 1.0786914235190098e-06, + "loss": 0.3849348068237305, + "step": 110700 + }, + { + "epoch": 97.96704268967042, + "grad_norm": 0.5295959711074829, + "learning_rate": 1.0344827586206898e-06, + "loss": 0.3844482040405273, + "step": 110800 + }, + { + "epoch": 98.05485512054855, + "grad_norm": 0.510218620300293, + "learning_rate": 9.902740937223696e-07, + "loss": 0.38250988006591796, + "step": 110900 + }, + { + "epoch": 98.1433311214333, + "grad_norm": 0.46240198612213135, + "learning_rate": 9.460654288240495e-07, + "loss": 0.38357555389404296, + "step": 111000 + }, + { + "epoch": 98.23180712231807, + "grad_norm": 0.5413907170295715, + "learning_rate": 9.018567639257295e-07, + "loss": 0.3835936737060547, + "step": 111100 + }, + { + "epoch": 98.32028312320283, + "grad_norm": 0.5282194018363953, + "learning_rate": 8.576480990274095e-07, + "loss": 0.38462539672851564, + "step": 111200 + }, + { + "epoch": 98.4087591240876, + "grad_norm": 0.4430619478225708, + "learning_rate": 8.134394341290893e-07, + "loss": 0.3831254196166992, + "step": 111300 + }, + { + "epoch": 98.49723512497235, + "grad_norm": 0.4520755410194397, + "learning_rate": 7.692307692307694e-07, + "loss": 0.38387767791748045, + "step": 111400 + }, + { + "epoch": 98.58571112585712, + "grad_norm": 0.42326220870018005, + "learning_rate": 7.250221043324492e-07, + "loss": 0.38382118225097656, + "step": 111500 + }, + { + "epoch": 98.67418712674187, + "grad_norm": 0.5536217093467712, + "learning_rate": 6.808134394341291e-07, + "loss": 0.3837322998046875, + "step": 111600 + }, + { + "epoch": 98.76266312762664, + "grad_norm": 0.47729530930519104, + "learning_rate": 6.36604774535809e-07, + "loss": 0.3840275192260742, + "step": 111700 + }, + { + "epoch": 98.85113912851139, + "grad_norm": 0.4712120294570923, + "learning_rate": 5.92396109637489e-07, + "loss": 0.3826910400390625, + "step": 111800 + }, + { + "epoch": 98.93961512939615, + "grad_norm": 0.4533778727054596, + "learning_rate": 5.481874447391689e-07, + "loss": 0.3849251174926758, + "step": 111900 + }, + { + "epoch": 99.02742756027428, + "grad_norm": 0.4762660264968872, + "learning_rate": 5.04420866489832e-07, + "loss": 0.38347198486328127, + "step": 112000 + }, + { + "epoch": 99.11590356115903, + "grad_norm": 0.49900203943252563, + "learning_rate": 4.6021220159151197e-07, + "loss": 0.38361885070800783, + "step": 112100 + }, + { + "epoch": 99.2043795620438, + "grad_norm": 0.5499697923660278, + "learning_rate": 4.1600353669319184e-07, + "loss": 0.38323490142822264, + "step": 112200 + }, + { + "epoch": 99.29285556292855, + "grad_norm": 0.49698564410209656, + "learning_rate": 3.717948717948718e-07, + "loss": 0.38394325256347656, + "step": 112300 + }, + { + "epoch": 99.38133156381332, + "grad_norm": 0.5000177621841431, + "learning_rate": 3.2758620689655175e-07, + "loss": 0.3833367156982422, + "step": 112400 + }, + { + "epoch": 99.46980756469807, + "grad_norm": 0.46179404854774475, + "learning_rate": 2.833775419982317e-07, + "loss": 0.38318233489990233, + "step": 112500 + }, + { + "epoch": 99.55828356558284, + "grad_norm": 0.5522571802139282, + "learning_rate": 2.391688770999116e-07, + "loss": 0.38181392669677733, + "step": 112600 + }, + { + "epoch": 99.6467595664676, + "grad_norm": 0.4453877806663513, + "learning_rate": 1.949602122015915e-07, + "loss": 0.38297233581542967, + "step": 112700 + }, + { + "epoch": 99.73523556735236, + "grad_norm": 0.46210813522338867, + "learning_rate": 1.5075154730327146e-07, + "loss": 0.3855221939086914, + "step": 112800 + }, + { + "epoch": 99.82371156823712, + "grad_norm": 0.5160776972770691, + "learning_rate": 1.0654288240495138e-07, + "loss": 0.38173851013183596, + "step": 112900 + }, + { + "epoch": 99.91218756912187, + "grad_norm": 0.5537967681884766, + "learning_rate": 6.23342175066313e-08, + "loss": 0.38249988555908204, + "step": 113000 + } + ], + "logging_steps": 100, + "max_steps": 113100, + "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": 3.135132725398733e+16, + "train_batch_size": 8, + "trial_name": null, + "trial_params": null +} diff --git a/timecost/m8/realtabformer/rtf-m8-20260501_010220/rtf_checkpoints/checkpoint-113000/training_args.bin b/timecost/m8/realtabformer/rtf-m8-20260501_010220/rtf_checkpoints/checkpoint-113000/training_args.bin new file mode 100644 index 0000000000000000000000000000000000000000..34d68dc0e0fe1c1f12a2e581dd1b166aa7178a9e --- /dev/null +++ b/timecost/m8/realtabformer/rtf-m8-20260501_010220/rtf_checkpoints/checkpoint-113000/training_args.bin @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:9e2cd88337d1d846c6918d2b3b63fa3e5c93f12fefc082497590da854a564607 +size 5201 diff --git a/timecost/m8/realtabformer/rtf-m8-20260501_010220/rtf_checkpoints/checkpoint-113100/config.json b/timecost/m8/realtabformer/rtf-m8-20260501_010220/rtf_checkpoints/checkpoint-113100/config.json new file mode 100644 index 0000000000000000000000000000000000000000..d98dd02b920679d4da3c8b60a9be119058fb9fe3 --- /dev/null +++ b/timecost/m8/realtabformer/rtf-m8-20260501_010220/rtf_checkpoints/checkpoint-113100/config.json @@ -0,0 +1,34 @@ +{ + "activation_function": "gelu_new", + "add_cross_attention": false, + "architectures": [ + "GPT2LMHeadModel" + ], + "attn_pdrop": 0.1, + "bos_token_id": 5, + "dtype": "float32", + "embd_pdrop": 0.1, + "eos_token_id": 6, + "initializer_range": 0.02, + "layer_norm_epsilon": 1e-05, + "model_type": "gpt2", + "n_embd": 768, + "n_head": 12, + "n_inner": null, + "n_layer": 6, + "n_positions": 1024, + "pad_token_id": null, + "reorder_and_upcast_attn": false, + "resid_pdrop": 0.1, + "scale_attn_by_inverse_layer_idx": false, + "scale_attn_weights": true, + "summary_activation": null, + "summary_first_dropout": 0.1, + "summary_proj_to_labels": true, + "summary_type": "cls_index", + "summary_use_proj": true, + "tie_word_embeddings": true, + "transformers_version": "5.5.3", + "use_cache": false, + "vocab_size": 244 +} diff --git a/timecost/m8/realtabformer/rtf-m8-20260501_010220/rtf_checkpoints/checkpoint-113100/generation_config.json b/timecost/m8/realtabformer/rtf-m8-20260501_010220/rtf_checkpoints/checkpoint-113100/generation_config.json new file mode 100644 index 0000000000000000000000000000000000000000..ffe89567780e75b5c22eade9be971483b9618f39 --- /dev/null +++ b/timecost/m8/realtabformer/rtf-m8-20260501_010220/rtf_checkpoints/checkpoint-113100/generation_config.json @@ -0,0 +1,9 @@ +{ + "_from_model_config": true, + "bos_token_id": 5, + "eos_token_id": 6, + "output_attentions": false, + "output_hidden_states": false, + "transformers_version": "5.5.3", + "use_cache": true +} diff --git a/timecost/m8/realtabformer/rtf-m8-20260501_010220/rtf_checkpoints/checkpoint-113100/model.safetensors b/timecost/m8/realtabformer/rtf-m8-20260501_010220/rtf_checkpoints/checkpoint-113100/model.safetensors new file mode 100644 index 0000000000000000000000000000000000000000..5f8a5159f97793da6e54ff47c1b028332d2be87a --- /dev/null +++ b/timecost/m8/realtabformer/rtf-m8-20260501_010220/rtf_checkpoints/checkpoint-113100/model.safetensors @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:3872ac07d0c25822773ddb206cfc0886cbdf864078824c4b734f3e7bef4fdb5e +size 174017992 diff --git a/timecost/m8/realtabformer/rtf-m8-20260501_010220/rtf_checkpoints/checkpoint-113100/optimizer.pt b/timecost/m8/realtabformer/rtf-m8-20260501_010220/rtf_checkpoints/checkpoint-113100/optimizer.pt new file mode 100644 index 0000000000000000000000000000000000000000..d759a406856ec9a077a3f9d5bf475c1cbce6a5b7 --- /dev/null +++ b/timecost/m8/realtabformer/rtf-m8-20260501_010220/rtf_checkpoints/checkpoint-113100/optimizer.pt @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:2c86ccd1e8db52a1700bfcf68861faf0639931172f2cd38224ff72c5e1cc976e +size 348085067 diff --git a/timecost/m8/realtabformer/rtf-m8-20260501_010220/rtf_checkpoints/checkpoint-113100/rng_state.pth b/timecost/m8/realtabformer/rtf-m8-20260501_010220/rtf_checkpoints/checkpoint-113100/rng_state.pth new file mode 100644 index 0000000000000000000000000000000000000000..0cd1bdb9b43f2cb17e0bd40183ac20c386a55b14 --- /dev/null +++ b/timecost/m8/realtabformer/rtf-m8-20260501_010220/rtf_checkpoints/checkpoint-113100/rng_state.pth @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:484200c5563634f6f1003d4efefac8751bfe0c8b478af4ff5a2dacec8597b6f2 +size 14645 diff --git a/timecost/m8/realtabformer/rtf-m8-20260501_010220/rtf_checkpoints/checkpoint-113100/scaler.pt b/timecost/m8/realtabformer/rtf-m8-20260501_010220/rtf_checkpoints/checkpoint-113100/scaler.pt new file mode 100644 index 0000000000000000000000000000000000000000..6c158062882bf9342a2f69a51c2fa6d3a8d857cb --- /dev/null +++ b/timecost/m8/realtabformer/rtf-m8-20260501_010220/rtf_checkpoints/checkpoint-113100/scaler.pt @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:6add548c35b86c48dbf30e6427d694a51610792bc6cbf8f797957c90ae4db164 +size 1383 diff --git a/timecost/m8/realtabformer/rtf-m8-20260501_010220/rtf_checkpoints/checkpoint-113100/scheduler.pt b/timecost/m8/realtabformer/rtf-m8-20260501_010220/rtf_checkpoints/checkpoint-113100/scheduler.pt new file mode 100644 index 0000000000000000000000000000000000000000..6d093588886c83161f014be526f0dfd15e5b2fde --- /dev/null +++ b/timecost/m8/realtabformer/rtf-m8-20260501_010220/rtf_checkpoints/checkpoint-113100/scheduler.pt @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:7ebded45dc6836d15d9d0a1f505a54423df0a24fbb44d77e0a494bebcfe8176d +size 1465 diff --git a/timecost/m8/realtabformer/rtf-m8-20260501_010220/rtf_checkpoints/checkpoint-113100/trainer_state.json b/timecost/m8/realtabformer/rtf-m8-20260501_010220/rtf_checkpoints/checkpoint-113100/trainer_state.json new file mode 100644 index 0000000000000000000000000000000000000000..5ae1d350c8e08ff4dbdb710594dae2b378612cb8 --- /dev/null +++ b/timecost/m8/realtabformer/rtf-m8-20260501_010220/rtf_checkpoints/checkpoint-113100/trainer_state.json @@ -0,0 +1,7951 @@ +{ + "best_global_step": null, + "best_metric": null, + "best_model_checkpoint": null, + "epoch": 100.0, + "eval_steps": 100, + "global_step": 113100, + "is_hyper_param_search": false, + "is_local_process_zero": true, + "is_world_process_zero": true, + "log_history": [ + { + "epoch": 0.08847600088476001, + "grad_norm": 0.27971890568733215, + "learning_rate": 4.9956233421750666e-05, + "loss": 1.6012767028808594, + "step": 100 + }, + { + "epoch": 0.17695200176952003, + "grad_norm": 0.2532733976840973, + "learning_rate": 4.991202475685234e-05, + "loss": 1.0460629272460937, + "step": 200 + }, + { + "epoch": 0.26542800265428, + "grad_norm": 0.22527219355106354, + "learning_rate": 4.986781609195402e-05, + "loss": 1.0045037841796876, + "step": 300 + }, + { + "epoch": 0.35390400353904006, + "grad_norm": 0.2071678638458252, + "learning_rate": 4.982360742705571e-05, + "loss": 0.9934071350097656, + "step": 400 + }, + { + "epoch": 0.44238000442380004, + "grad_norm": 0.21996082365512848, + "learning_rate": 4.977939876215739e-05, + "loss": 0.9807382965087891, + "step": 500 + }, + { + "epoch": 0.53085600530856, + "grad_norm": 0.20051148533821106, + "learning_rate": 4.9735190097259064e-05, + "loss": 0.9772834014892579, + "step": 600 + }, + { + "epoch": 0.6193320061933201, + "grad_norm": 0.20692776143550873, + "learning_rate": 4.969098143236074e-05, + "loss": 0.9733844757080078, + "step": 700 + }, + { + "epoch": 0.7078080070780801, + "grad_norm": 0.22139734029769897, + "learning_rate": 4.9646772767462425e-05, + "loss": 0.9641999053955078, + "step": 800 + }, + { + "epoch": 0.79628400796284, + "grad_norm": 0.20099565386772156, + "learning_rate": 4.96025641025641e-05, + "loss": 0.9590901947021484, + "step": 900 + }, + { + "epoch": 0.8847600088476001, + "grad_norm": 0.19050444662570953, + "learning_rate": 4.955835543766578e-05, + "loss": 0.9558430480957031, + "step": 1000 + }, + { + "epoch": 0.9732360097323601, + "grad_norm": 0.20780153572559357, + "learning_rate": 4.951414677276747e-05, + "loss": 0.9558073425292969, + "step": 1100 + }, + { + "epoch": 1.0610484406104843, + "grad_norm": 0.20002400875091553, + "learning_rate": 4.946993810786915e-05, + "loss": 0.9575533294677734, + "step": 1200 + }, + { + "epoch": 1.1495244414952444, + "grad_norm": 0.19394151866436005, + "learning_rate": 4.9425729442970824e-05, + "loss": 0.9556401824951172, + "step": 1300 + }, + { + "epoch": 1.2380004423800044, + "grad_norm": 0.19420816004276276, + "learning_rate": 4.93815207780725e-05, + "loss": 0.948358154296875, + "step": 1400 + }, + { + "epoch": 1.3264764432647644, + "grad_norm": 0.2109377682209015, + "learning_rate": 4.9337312113174185e-05, + "loss": 0.9507483673095704, + "step": 1500 + }, + { + "epoch": 1.4149524441495245, + "grad_norm": 0.19577011466026306, + "learning_rate": 4.929310344827586e-05, + "loss": 0.9544251251220703, + "step": 1600 + }, + { + "epoch": 1.5034284450342845, + "grad_norm": 0.17374339699745178, + "learning_rate": 4.924889478337754e-05, + "loss": 0.9495613098144531, + "step": 1700 + }, + { + "epoch": 1.5919044459190443, + "grad_norm": 0.1539471447467804, + "learning_rate": 4.920468611847922e-05, + "loss": 0.946780014038086, + "step": 1800 + }, + { + "epoch": 1.6803804468038046, + "grad_norm": 0.21705853939056396, + "learning_rate": 4.916047745358091e-05, + "loss": 0.9456329345703125, + "step": 1900 + }, + { + "epoch": 1.7688564476885644, + "grad_norm": 0.18109191954135895, + "learning_rate": 4.9116268788682584e-05, + "loss": 0.9452082061767578, + "step": 2000 + }, + { + "epoch": 1.8573324485733245, + "grad_norm": 0.18233413994312286, + "learning_rate": 4.907206012378426e-05, + "loss": 0.9436309051513672, + "step": 2100 + }, + { + "epoch": 1.9458084494580845, + "grad_norm": 0.19978198409080505, + "learning_rate": 4.9027851458885945e-05, + "loss": 0.9466010284423828, + "step": 2200 + }, + { + "epoch": 2.033620880336209, + "grad_norm": 0.19425439834594727, + "learning_rate": 4.898364279398762e-05, + "loss": 0.9419589233398438, + "step": 2300 + }, + { + "epoch": 2.1220968812209686, + "grad_norm": 0.18522261083126068, + "learning_rate": 4.8939434129089306e-05, + "loss": 0.9406929779052734, + "step": 2400 + }, + { + "epoch": 2.210572882105729, + "grad_norm": 0.18092288076877594, + "learning_rate": 4.889522546419098e-05, + "loss": 0.9394661712646485, + "step": 2500 + }, + { + "epoch": 2.2990488829904887, + "grad_norm": 0.16110995411872864, + "learning_rate": 4.885101679929267e-05, + "loss": 0.9415554809570312, + "step": 2600 + }, + { + "epoch": 2.387524883875249, + "grad_norm": 0.1742609441280365, + "learning_rate": 4.8806808134394344e-05, + "loss": 0.9385026550292969, + "step": 2700 + }, + { + "epoch": 2.476000884760009, + "grad_norm": 0.1893293261528015, + "learning_rate": 4.876259946949602e-05, + "loss": 0.9374285125732422, + "step": 2800 + }, + { + "epoch": 2.564476885644769, + "grad_norm": 0.17022491991519928, + "learning_rate": 4.8718390804597705e-05, + "loss": 0.9414189910888672, + "step": 2900 + }, + { + "epoch": 2.652952886529529, + "grad_norm": 0.1820104867219925, + "learning_rate": 4.867418213969938e-05, + "loss": 0.9428114318847656, + "step": 3000 + }, + { + "epoch": 2.7414288874142887, + "grad_norm": 0.1591845154762268, + "learning_rate": 4.8629973474801066e-05, + "loss": 0.9408238220214844, + "step": 3100 + }, + { + "epoch": 2.829904888299049, + "grad_norm": 0.16679565608501434, + "learning_rate": 4.858576480990274e-05, + "loss": 0.9357293701171875, + "step": 3200 + }, + { + "epoch": 2.918380889183809, + "grad_norm": 0.1608530431985855, + "learning_rate": 4.854155614500443e-05, + "loss": 0.9437465667724609, + "step": 3300 + }, + { + "epoch": 3.006193320061933, + "grad_norm": 0.17832520604133606, + "learning_rate": 4.8497347480106104e-05, + "loss": 0.9349425506591796, + "step": 3400 + }, + { + "epoch": 3.0946693209466933, + "grad_norm": 0.18095993995666504, + "learning_rate": 4.845313881520778e-05, + "loss": 0.9341915130615235, + "step": 3500 + }, + { + "epoch": 3.183145321831453, + "grad_norm": 0.15083801746368408, + "learning_rate": 4.8408930150309465e-05, + "loss": 0.9406319427490234, + "step": 3600 + }, + { + "epoch": 3.2716213227162134, + "grad_norm": 0.17318469285964966, + "learning_rate": 4.836472148541114e-05, + "loss": 0.942470703125, + "step": 3700 + }, + { + "epoch": 3.3600973236009732, + "grad_norm": 0.16380801796913147, + "learning_rate": 4.8320512820512826e-05, + "loss": 0.9362622833251953, + "step": 3800 + }, + { + "epoch": 3.448573324485733, + "grad_norm": 0.16394540667533875, + "learning_rate": 4.82763041556145e-05, + "loss": 0.9353338623046875, + "step": 3900 + }, + { + "epoch": 3.5370493253704933, + "grad_norm": 0.15836960077285767, + "learning_rate": 4.8232095490716186e-05, + "loss": 0.9316812896728516, + "step": 4000 + }, + { + "epoch": 3.625525326255253, + "grad_norm": 0.16170428693294525, + "learning_rate": 4.8187886825817864e-05, + "loss": 0.9331712341308593, + "step": 4100 + }, + { + "epoch": 3.7140013271400134, + "grad_norm": 0.16442789137363434, + "learning_rate": 4.814367816091954e-05, + "loss": 0.9366471862792969, + "step": 4200 + }, + { + "epoch": 3.8024773280247732, + "grad_norm": 0.1728108674287796, + "learning_rate": 4.8099469496021224e-05, + "loss": 0.9279624938964843, + "step": 4300 + }, + { + "epoch": 3.890953328909533, + "grad_norm": 0.16846929490566254, + "learning_rate": 4.80552608311229e-05, + "loss": 0.9343041229248047, + "step": 4400 + }, + { + "epoch": 3.9794293297942933, + "grad_norm": 0.15764060616493225, + "learning_rate": 4.8011052166224585e-05, + "loss": 0.9330953979492187, + "step": 4500 + }, + { + "epoch": 4.067241760672418, + "grad_norm": 0.15639521181583405, + "learning_rate": 4.796684350132626e-05, + "loss": 0.92936279296875, + "step": 4600 + }, + { + "epoch": 4.155717761557177, + "grad_norm": 0.1571352481842041, + "learning_rate": 4.7922634836427946e-05, + "loss": 0.928530502319336, + "step": 4700 + }, + { + "epoch": 4.244193762441937, + "grad_norm": 0.1702045202255249, + "learning_rate": 4.787842617152962e-05, + "loss": 0.928214111328125, + "step": 4800 + }, + { + "epoch": 4.332669763326698, + "grad_norm": 0.15860655903816223, + "learning_rate": 4.78342175066313e-05, + "loss": 0.9305215454101563, + "step": 4900 + }, + { + "epoch": 4.421145764211458, + "grad_norm": 0.15470334887504578, + "learning_rate": 4.779000884173298e-05, + "loss": 0.9308832550048828, + "step": 5000 + }, + { + "epoch": 4.509621765096218, + "grad_norm": 0.18338388204574585, + "learning_rate": 4.774580017683466e-05, + "loss": 0.9284812164306641, + "step": 5100 + }, + { + "epoch": 4.598097765980977, + "grad_norm": 0.16396461427211761, + "learning_rate": 4.7701591511936345e-05, + "loss": 0.9331364440917969, + "step": 5200 + }, + { + "epoch": 4.686573766865738, + "grad_norm": 0.15601013600826263, + "learning_rate": 4.765738284703802e-05, + "loss": 0.9345075225830078, + "step": 5300 + }, + { + "epoch": 4.775049767750498, + "grad_norm": 0.15895380079746246, + "learning_rate": 4.76131741821397e-05, + "loss": 0.9342525482177735, + "step": 5400 + }, + { + "epoch": 4.863525768635258, + "grad_norm": 0.17462770640850067, + "learning_rate": 4.756896551724138e-05, + "loss": 0.9322207641601562, + "step": 5500 + }, + { + "epoch": 4.952001769520018, + "grad_norm": 0.15457525849342346, + "learning_rate": 4.752475685234306e-05, + "loss": 0.9310305023193359, + "step": 5600 + }, + { + "epoch": 5.039814200398142, + "grad_norm": 0.13688383996486664, + "learning_rate": 4.748054818744474e-05, + "loss": 0.9262973022460937, + "step": 5700 + }, + { + "epoch": 5.128290201282902, + "grad_norm": 0.15491563081741333, + "learning_rate": 4.743633952254642e-05, + "loss": 0.927138671875, + "step": 5800 + }, + { + "epoch": 5.216766202167662, + "grad_norm": 0.168558269739151, + "learning_rate": 4.7392130857648105e-05, + "loss": 0.9224365234375, + "step": 5900 + }, + { + "epoch": 5.305242203052422, + "grad_norm": 0.1631685495376587, + "learning_rate": 4.734792219274978e-05, + "loss": 0.9300392913818359, + "step": 6000 + }, + { + "epoch": 5.393718203937182, + "grad_norm": 0.1423729509115219, + "learning_rate": 4.730371352785146e-05, + "loss": 0.926734619140625, + "step": 6100 + }, + { + "epoch": 5.482194204821942, + "grad_norm": 0.15391670167446136, + "learning_rate": 4.725950486295314e-05, + "loss": 0.928184814453125, + "step": 6200 + }, + { + "epoch": 5.570670205706702, + "grad_norm": 0.16460080444812775, + "learning_rate": 4.721529619805482e-05, + "loss": 0.9238227844238281, + "step": 6300 + }, + { + "epoch": 5.659146206591462, + "grad_norm": 0.15589170157909393, + "learning_rate": 4.71710875331565e-05, + "loss": 0.9301457214355469, + "step": 6400 + }, + { + "epoch": 5.747622207476222, + "grad_norm": 0.15851308405399323, + "learning_rate": 4.712687886825818e-05, + "loss": 0.9308782196044922, + "step": 6500 + }, + { + "epoch": 5.836098208360982, + "grad_norm": 0.1777440756559372, + "learning_rate": 4.7082670203359865e-05, + "loss": 0.9248320007324219, + "step": 6600 + }, + { + "epoch": 5.924574209245742, + "grad_norm": 0.17118966579437256, + "learning_rate": 4.703846153846154e-05, + "loss": 0.933470458984375, + "step": 6700 + }, + { + "epoch": 6.012386640123866, + "grad_norm": 0.16862431168556213, + "learning_rate": 4.699425287356322e-05, + "loss": 0.9242423248291015, + "step": 6800 + }, + { + "epoch": 6.100862641008627, + "grad_norm": 0.19494886696338654, + "learning_rate": 4.69500442086649e-05, + "loss": 0.9229951477050782, + "step": 6900 + }, + { + "epoch": 6.189338641893387, + "grad_norm": 0.1628340780735016, + "learning_rate": 4.690583554376658e-05, + "loss": 0.9262020111083984, + "step": 7000 + }, + { + "epoch": 6.2778146427781465, + "grad_norm": 0.18057121336460114, + "learning_rate": 4.686162687886826e-05, + "loss": 0.9253005981445312, + "step": 7100 + }, + { + "epoch": 6.366290643662906, + "grad_norm": 0.16090655326843262, + "learning_rate": 4.681741821396994e-05, + "loss": 0.9206966400146485, + "step": 7200 + }, + { + "epoch": 6.454766644547666, + "grad_norm": 0.16115659475326538, + "learning_rate": 4.6773209549071625e-05, + "loss": 0.9219180297851562, + "step": 7300 + }, + { + "epoch": 6.543242645432427, + "grad_norm": 0.1964244246482849, + "learning_rate": 4.67290008841733e-05, + "loss": 0.9238224029541016, + "step": 7400 + }, + { + "epoch": 6.631718646317187, + "grad_norm": 0.1761396825313568, + "learning_rate": 4.668479221927498e-05, + "loss": 0.9244656372070312, + "step": 7500 + }, + { + "epoch": 6.7201946472019465, + "grad_norm": 0.18016010522842407, + "learning_rate": 4.664058355437666e-05, + "loss": 0.9245244598388672, + "step": 7600 + }, + { + "epoch": 6.808670648086706, + "grad_norm": 0.16012924909591675, + "learning_rate": 4.659637488947834e-05, + "loss": 0.9250524139404297, + "step": 7700 + }, + { + "epoch": 6.897146648971466, + "grad_norm": 0.1722676306962967, + "learning_rate": 4.655216622458002e-05, + "loss": 0.9270682525634766, + "step": 7800 + }, + { + "epoch": 6.985622649856227, + "grad_norm": 0.18756897747516632, + "learning_rate": 4.65079575596817e-05, + "loss": 0.9234317779541016, + "step": 7900 + }, + { + "epoch": 7.073435080734351, + "grad_norm": 0.16759978234767914, + "learning_rate": 4.6463748894783384e-05, + "loss": 0.9213732147216797, + "step": 8000 + }, + { + "epoch": 7.1619110816191105, + "grad_norm": 0.15943242609500885, + "learning_rate": 4.641954022988506e-05, + "loss": 0.9243515014648438, + "step": 8100 + }, + { + "epoch": 7.250387082503871, + "grad_norm": 0.15444102883338928, + "learning_rate": 4.637533156498674e-05, + "loss": 0.9177332305908203, + "step": 8200 + }, + { + "epoch": 7.338863083388631, + "grad_norm": 0.17104187607765198, + "learning_rate": 4.633112290008842e-05, + "loss": 0.9199151611328125, + "step": 8300 + }, + { + "epoch": 7.427339084273391, + "grad_norm": 0.152462899684906, + "learning_rate": 4.62869142351901e-05, + "loss": 0.9231443786621094, + "step": 8400 + }, + { + "epoch": 7.515815085158151, + "grad_norm": 0.1663249433040619, + "learning_rate": 4.6242705570291777e-05, + "loss": 0.9231499481201172, + "step": 8500 + }, + { + "epoch": 7.6042910860429105, + "grad_norm": 0.1711215376853943, + "learning_rate": 4.6198496905393454e-05, + "loss": 0.9192819976806641, + "step": 8600 + }, + { + "epoch": 7.692767086927671, + "grad_norm": 0.1620834916830063, + "learning_rate": 4.6154288240495144e-05, + "loss": 0.9260062408447266, + "step": 8700 + }, + { + "epoch": 7.781243087812431, + "grad_norm": 0.16246546804904938, + "learning_rate": 4.611007957559682e-05, + "loss": 0.9250968933105469, + "step": 8800 + }, + { + "epoch": 7.869719088697191, + "grad_norm": 0.15757358074188232, + "learning_rate": 4.60658709106985e-05, + "loss": 0.9235149383544922, + "step": 8900 + }, + { + "epoch": 7.958195089581951, + "grad_norm": 0.15778206288814545, + "learning_rate": 4.602166224580018e-05, + "loss": 0.9173377227783203, + "step": 9000 + }, + { + "epoch": 8.046007520460075, + "grad_norm": 0.17259791493415833, + "learning_rate": 4.597745358090186e-05, + "loss": 0.9134017181396484, + "step": 9100 + }, + { + "epoch": 8.134483521344835, + "grad_norm": 0.1707502007484436, + "learning_rate": 4.5933244916003536e-05, + "loss": 0.9134098052978515, + "step": 9200 + }, + { + "epoch": 8.222959522229596, + "grad_norm": 0.1647530347108841, + "learning_rate": 4.5889036251105213e-05, + "loss": 0.9205097961425781, + "step": 9300 + }, + { + "epoch": 8.311435523114355, + "grad_norm": 0.16971947252750397, + "learning_rate": 4.5844827586206904e-05, + "loss": 0.9217983245849609, + "step": 9400 + }, + { + "epoch": 8.399911523999116, + "grad_norm": 0.15842877328395844, + "learning_rate": 4.580061892130858e-05, + "loss": 0.9172341918945313, + "step": 9500 + }, + { + "epoch": 8.488387524883874, + "grad_norm": 0.15321888029575348, + "learning_rate": 4.575641025641026e-05, + "loss": 0.9222029113769531, + "step": 9600 + }, + { + "epoch": 8.576863525768635, + "grad_norm": 0.17232707142829895, + "learning_rate": 4.5712201591511935e-05, + "loss": 0.9190543365478515, + "step": 9700 + }, + { + "epoch": 8.665339526653396, + "grad_norm": 0.14735591411590576, + "learning_rate": 4.566799292661362e-05, + "loss": 0.9193865203857422, + "step": 9800 + }, + { + "epoch": 8.753815527538155, + "grad_norm": 0.17929628491401672, + "learning_rate": 4.5623784261715296e-05, + "loss": 0.9178209686279297, + "step": 9900 + }, + { + "epoch": 8.842291528422916, + "grad_norm": 0.1546984612941742, + "learning_rate": 4.557957559681697e-05, + "loss": 0.9209825134277344, + "step": 10000 + }, + { + "epoch": 8.930767529307674, + "grad_norm": 0.16275030374526978, + "learning_rate": 4.553536693191866e-05, + "loss": 0.9219312286376953, + "step": 10100 + }, + { + "epoch": 9.0185799601858, + "grad_norm": 0.16977843642234802, + "learning_rate": 4.549115826702034e-05, + "loss": 0.9190888977050782, + "step": 10200 + }, + { + "epoch": 9.107055961070559, + "grad_norm": 0.16722118854522705, + "learning_rate": 4.544694960212202e-05, + "loss": 0.9173007202148438, + "step": 10300 + }, + { + "epoch": 9.19553196195532, + "grad_norm": 0.15637095272541046, + "learning_rate": 4.5402740937223695e-05, + "loss": 0.9152852630615235, + "step": 10400 + }, + { + "epoch": 9.28400796284008, + "grad_norm": 0.15433216094970703, + "learning_rate": 4.535853227232538e-05, + "loss": 0.9151573944091796, + "step": 10500 + }, + { + "epoch": 9.37248396372484, + "grad_norm": 0.15743562579154968, + "learning_rate": 4.5314323607427056e-05, + "loss": 0.9173799896240235, + "step": 10600 + }, + { + "epoch": 9.4609599646096, + "grad_norm": 0.1527981162071228, + "learning_rate": 4.527011494252873e-05, + "loss": 0.911611328125, + "step": 10700 + }, + { + "epoch": 9.549435965494359, + "grad_norm": 0.15745887160301208, + "learning_rate": 4.522590627763042e-05, + "loss": 0.9144339752197266, + "step": 10800 + }, + { + "epoch": 9.63791196637912, + "grad_norm": 0.1523962914943695, + "learning_rate": 4.51816976127321e-05, + "loss": 0.918481216430664, + "step": 10900 + }, + { + "epoch": 9.72638796726388, + "grad_norm": 0.17231452465057373, + "learning_rate": 4.513748894783378e-05, + "loss": 0.9197111511230469, + "step": 11000 + }, + { + "epoch": 9.81486396814864, + "grad_norm": 0.16348381340503693, + "learning_rate": 4.5093280282935455e-05, + "loss": 0.9151203918457032, + "step": 11100 + }, + { + "epoch": 9.9033399690334, + "grad_norm": 0.16555383801460266, + "learning_rate": 4.504907161803714e-05, + "loss": 0.9189680480957031, + "step": 11200 + }, + { + "epoch": 9.991815969918159, + "grad_norm": 0.16531047224998474, + "learning_rate": 4.5004862953138816e-05, + "loss": 0.9149074554443359, + "step": 11300 + }, + { + "epoch": 10.079628400796285, + "grad_norm": 0.1655273735523224, + "learning_rate": 4.496065428824049e-05, + "loss": 0.9143817138671875, + "step": 11400 + }, + { + "epoch": 10.168104401681044, + "grad_norm": 0.1795828938484192, + "learning_rate": 4.491644562334218e-05, + "loss": 0.911801986694336, + "step": 11500 + }, + { + "epoch": 10.256580402565804, + "grad_norm": 0.1684361696243286, + "learning_rate": 4.487223695844386e-05, + "loss": 0.910247802734375, + "step": 11600 + }, + { + "epoch": 10.345056403450563, + "grad_norm": 0.1620638519525528, + "learning_rate": 4.482802829354554e-05, + "loss": 0.9155111694335938, + "step": 11700 + }, + { + "epoch": 10.433532404335324, + "grad_norm": 0.1695495843887329, + "learning_rate": 4.4783819628647215e-05, + "loss": 0.9134779357910157, + "step": 11800 + }, + { + "epoch": 10.522008405220085, + "grad_norm": 0.18226753175258636, + "learning_rate": 4.47396109637489e-05, + "loss": 0.9143638610839844, + "step": 11900 + }, + { + "epoch": 10.610484406104844, + "grad_norm": 0.15289710462093353, + "learning_rate": 4.4695402298850576e-05, + "loss": 0.9122061157226562, + "step": 12000 + }, + { + "epoch": 10.698960406989604, + "grad_norm": 0.15486228466033936, + "learning_rate": 4.465119363395225e-05, + "loss": 0.9148915863037109, + "step": 12100 + }, + { + "epoch": 10.787436407874363, + "grad_norm": 0.17585019767284393, + "learning_rate": 4.4606984969053937e-05, + "loss": 0.9163182830810547, + "step": 12200 + }, + { + "epoch": 10.875912408759124, + "grad_norm": 0.158732071518898, + "learning_rate": 4.456277630415562e-05, + "loss": 0.9148865509033203, + "step": 12300 + }, + { + "epoch": 10.964388409643885, + "grad_norm": 0.15901361405849457, + "learning_rate": 4.45185676392573e-05, + "loss": 0.9184156799316406, + "step": 12400 + }, + { + "epoch": 11.052200840522008, + "grad_norm": 0.15289290249347687, + "learning_rate": 4.4474358974358974e-05, + "loss": 0.910323486328125, + "step": 12500 + }, + { + "epoch": 11.14067684140677, + "grad_norm": 0.14922171831130981, + "learning_rate": 4.443015030946066e-05, + "loss": 0.9092740631103515, + "step": 12600 + }, + { + "epoch": 11.229152842291528, + "grad_norm": 0.1710701584815979, + "learning_rate": 4.4385941644562335e-05, + "loss": 0.909953842163086, + "step": 12700 + }, + { + "epoch": 11.317628843176289, + "grad_norm": 0.16967815160751343, + "learning_rate": 4.434173297966401e-05, + "loss": 0.9069422912597657, + "step": 12800 + }, + { + "epoch": 11.406104844061048, + "grad_norm": 0.16896069049835205, + "learning_rate": 4.4297524314765696e-05, + "loss": 0.9166646575927735, + "step": 12900 + }, + { + "epoch": 11.494580844945808, + "grad_norm": 0.16996079683303833, + "learning_rate": 4.425331564986738e-05, + "loss": 0.9114566040039063, + "step": 13000 + }, + { + "epoch": 11.58305684583057, + "grad_norm": 0.16553319990634918, + "learning_rate": 4.420910698496906e-05, + "loss": 0.9121807098388672, + "step": 13100 + }, + { + "epoch": 11.671532846715328, + "grad_norm": 0.1629258692264557, + "learning_rate": 4.4164898320070734e-05, + "loss": 0.904563217163086, + "step": 13200 + }, + { + "epoch": 11.760008847600089, + "grad_norm": 0.1660201996564865, + "learning_rate": 4.412068965517241e-05, + "loss": 0.9116962432861329, + "step": 13300 + }, + { + "epoch": 11.848484848484848, + "grad_norm": 0.16493095457553864, + "learning_rate": 4.4076480990274095e-05, + "loss": 0.9136554718017578, + "step": 13400 + }, + { + "epoch": 11.936960849369608, + "grad_norm": 0.15279296040534973, + "learning_rate": 4.403227232537578e-05, + "loss": 0.9120658874511719, + "step": 13500 + }, + { + "epoch": 12.024773280247732, + "grad_norm": 0.16151593625545502, + "learning_rate": 4.3988063660477456e-05, + "loss": 0.9155186462402344, + "step": 13600 + }, + { + "epoch": 12.113249281132493, + "grad_norm": 0.16777871549129486, + "learning_rate": 4.394385499557914e-05, + "loss": 0.9070235443115234, + "step": 13700 + }, + { + "epoch": 12.201725282017254, + "grad_norm": 0.15052072703838348, + "learning_rate": 4.389964633068082e-05, + "loss": 0.9057080078125, + "step": 13800 + }, + { + "epoch": 12.290201282902013, + "grad_norm": 0.17466743290424347, + "learning_rate": 4.3855437665782494e-05, + "loss": 0.9058401489257812, + "step": 13900 + }, + { + "epoch": 12.378677283786773, + "grad_norm": 0.17788690328598022, + "learning_rate": 4.381122900088417e-05, + "loss": 0.9058721923828125, + "step": 14000 + }, + { + "epoch": 12.467153284671532, + "grad_norm": 0.17527516186237335, + "learning_rate": 4.3767020335985855e-05, + "loss": 0.908851089477539, + "step": 14100 + }, + { + "epoch": 12.555629285556293, + "grad_norm": 0.17999336123466492, + "learning_rate": 4.372281167108754e-05, + "loss": 0.9110614013671875, + "step": 14200 + }, + { + "epoch": 12.644105286441054, + "grad_norm": 0.1635061800479889, + "learning_rate": 4.3678603006189216e-05, + "loss": 0.9081086730957031, + "step": 14300 + }, + { + "epoch": 12.732581287325813, + "grad_norm": 0.1813993752002716, + "learning_rate": 4.363439434129089e-05, + "loss": 0.9091014862060547, + "step": 14400 + }, + { + "epoch": 12.821057288210573, + "grad_norm": 0.17487457394599915, + "learning_rate": 4.359018567639258e-05, + "loss": 0.9076325988769531, + "step": 14500 + }, + { + "epoch": 12.909533289095332, + "grad_norm": 0.17149627208709717, + "learning_rate": 4.3545977011494254e-05, + "loss": 0.9064749908447266, + "step": 14600 + }, + { + "epoch": 12.998009289980093, + "grad_norm": 0.16990207135677338, + "learning_rate": 4.350176834659593e-05, + "loss": 0.911828384399414, + "step": 14700 + }, + { + "epoch": 13.085821720858217, + "grad_norm": 0.16583888232707977, + "learning_rate": 4.3458001768346594e-05, + "loss": 0.9017422485351563, + "step": 14800 + }, + { + "epoch": 13.174297721742978, + "grad_norm": 0.1644158959388733, + "learning_rate": 4.341379310344828e-05, + "loss": 0.9052355194091797, + "step": 14900 + }, + { + "epoch": 13.262773722627736, + "grad_norm": 0.1759374737739563, + "learning_rate": 4.336958443854996e-05, + "loss": 0.9027067565917969, + "step": 15000 + }, + { + "epoch": 13.351249723512497, + "grad_norm": 0.1623755842447281, + "learning_rate": 4.332537577365164e-05, + "loss": 0.9078491973876953, + "step": 15100 + }, + { + "epoch": 13.439725724397258, + "grad_norm": 0.15563324093818665, + "learning_rate": 4.3281167108753316e-05, + "loss": 0.9046826171875, + "step": 15200 + }, + { + "epoch": 13.528201725282017, + "grad_norm": 0.1762174814939499, + "learning_rate": 4.3236958443855e-05, + "loss": 0.9070060729980469, + "step": 15300 + }, + { + "epoch": 13.616677726166778, + "grad_norm": 0.1598447859287262, + "learning_rate": 4.319274977895668e-05, + "loss": 0.907843017578125, + "step": 15400 + }, + { + "epoch": 13.705153727051536, + "grad_norm": 0.17838729918003082, + "learning_rate": 4.3148541114058354e-05, + "loss": 0.9077598571777343, + "step": 15500 + }, + { + "epoch": 13.793629727936297, + "grad_norm": 0.16615167260169983, + "learning_rate": 4.310433244916004e-05, + "loss": 0.9041740417480468, + "step": 15600 + }, + { + "epoch": 13.882105728821058, + "grad_norm": 0.16463759541511536, + "learning_rate": 4.306012378426172e-05, + "loss": 0.9023047637939453, + "step": 15700 + }, + { + "epoch": 13.970581729705817, + "grad_norm": 0.1562959849834442, + "learning_rate": 4.30159151193634e-05, + "loss": 0.902835693359375, + "step": 15800 + }, + { + "epoch": 14.058394160583942, + "grad_norm": 0.16919565200805664, + "learning_rate": 4.2971706454465076e-05, + "loss": 0.8998876953125, + "step": 15900 + }, + { + "epoch": 14.146870161468701, + "grad_norm": 0.16513022780418396, + "learning_rate": 4.292749778956676e-05, + "loss": 0.9023524475097656, + "step": 16000 + }, + { + "epoch": 14.235346162353462, + "grad_norm": 0.173946812748909, + "learning_rate": 4.288328912466844e-05, + "loss": 0.8980498504638672, + "step": 16100 + }, + { + "epoch": 14.323822163238221, + "grad_norm": 0.16749872267246246, + "learning_rate": 4.2839080459770114e-05, + "loss": 0.9026957702636719, + "step": 16200 + }, + { + "epoch": 14.412298164122982, + "grad_norm": 0.17985551059246063, + "learning_rate": 4.27948717948718e-05, + "loss": 0.9012105560302734, + "step": 16300 + }, + { + "epoch": 14.500774165007742, + "grad_norm": 0.18807820975780487, + "learning_rate": 4.275066312997348e-05, + "loss": 0.9014115905761719, + "step": 16400 + }, + { + "epoch": 14.589250165892501, + "grad_norm": 0.17243777215480804, + "learning_rate": 4.270645446507516e-05, + "loss": 0.9028221893310547, + "step": 16500 + }, + { + "epoch": 14.677726166777262, + "grad_norm": 0.1674414724111557, + "learning_rate": 4.2662245800176836e-05, + "loss": 0.9017185974121094, + "step": 16600 + }, + { + "epoch": 14.766202167662021, + "grad_norm": 0.17522333562374115, + "learning_rate": 4.261803713527851e-05, + "loss": 0.8989543914794922, + "step": 16700 + }, + { + "epoch": 14.854678168546782, + "grad_norm": 0.16300654411315918, + "learning_rate": 4.2573828470380197e-05, + "loss": 0.9001253509521484, + "step": 16800 + }, + { + "epoch": 14.943154169431542, + "grad_norm": 0.1702653169631958, + "learning_rate": 4.2529619805481874e-05, + "loss": 0.9020176696777343, + "step": 16900 + }, + { + "epoch": 15.030966600309666, + "grad_norm": 0.1752340942621231, + "learning_rate": 4.2485853227232544e-05, + "loss": 0.8990335083007812, + "step": 17000 + }, + { + "epoch": 15.119442601194425, + "grad_norm": 0.17765584588050842, + "learning_rate": 4.244164456233422e-05, + "loss": 0.8885309600830078, + "step": 17100 + }, + { + "epoch": 15.207918602079186, + "grad_norm": 0.18404972553253174, + "learning_rate": 4.23974358974359e-05, + "loss": 0.8915805816650391, + "step": 17200 + }, + { + "epoch": 15.296394602963947, + "grad_norm": 0.17206765711307526, + "learning_rate": 4.235322723253758e-05, + "loss": 0.8898361968994141, + "step": 17300 + }, + { + "epoch": 15.384870603848706, + "grad_norm": 0.19998455047607422, + "learning_rate": 4.230901856763926e-05, + "loss": 0.8957837677001953, + "step": 17400 + }, + { + "epoch": 15.473346604733466, + "grad_norm": 0.19454777240753174, + "learning_rate": 4.2264809902740936e-05, + "loss": 0.8990544891357422, + "step": 17500 + }, + { + "epoch": 15.561822605618225, + "grad_norm": 0.17281410098075867, + "learning_rate": 4.222060123784262e-05, + "loss": 0.8996484375, + "step": 17600 + }, + { + "epoch": 15.650298606502986, + "grad_norm": 0.1906009018421173, + "learning_rate": 4.21763925729443e-05, + "loss": 0.9032618713378906, + "step": 17700 + }, + { + "epoch": 15.738774607387747, + "grad_norm": 0.17282316088676453, + "learning_rate": 4.213218390804598e-05, + "loss": 0.8986404418945313, + "step": 17800 + }, + { + "epoch": 15.827250608272506, + "grad_norm": 0.18802666664123535, + "learning_rate": 4.208797524314766e-05, + "loss": 0.8964502716064453, + "step": 17900 + }, + { + "epoch": 15.915726609157266, + "grad_norm": 0.19853872060775757, + "learning_rate": 4.204376657824934e-05, + "loss": 0.9032749938964844, + "step": 18000 + }, + { + "epoch": 16.003539040035392, + "grad_norm": 0.18812181055545807, + "learning_rate": 4.199955791335102e-05, + "loss": 0.8991973876953125, + "step": 18100 + }, + { + "epoch": 16.09201504092015, + "grad_norm": 0.1644710898399353, + "learning_rate": 4.1955349248452695e-05, + "loss": 0.8866680908203125, + "step": 18200 + }, + { + "epoch": 16.18049104180491, + "grad_norm": 0.1884208619594574, + "learning_rate": 4.191114058355438e-05, + "loss": 0.8872537994384766, + "step": 18300 + }, + { + "epoch": 16.26896704268967, + "grad_norm": 0.1828072965145111, + "learning_rate": 4.186693191865606e-05, + "loss": 0.8902882385253906, + "step": 18400 + }, + { + "epoch": 16.35744304357443, + "grad_norm": 0.19119146466255188, + "learning_rate": 4.182272325375774e-05, + "loss": 0.8903806304931641, + "step": 18500 + }, + { + "epoch": 16.445919044459192, + "grad_norm": 0.20727571845054626, + "learning_rate": 4.177851458885942e-05, + "loss": 0.8952965545654297, + "step": 18600 + }, + { + "epoch": 16.53439504534395, + "grad_norm": 0.18735922873020172, + "learning_rate": 4.17343059239611e-05, + "loss": 0.8870563507080078, + "step": 18700 + }, + { + "epoch": 16.62287104622871, + "grad_norm": 0.1973799169063568, + "learning_rate": 4.169009725906278e-05, + "loss": 0.8974028778076172, + "step": 18800 + }, + { + "epoch": 16.71134704711347, + "grad_norm": 0.20604746043682098, + "learning_rate": 4.1645888594164455e-05, + "loss": 0.8937057495117188, + "step": 18900 + }, + { + "epoch": 16.79982304799823, + "grad_norm": 0.18150219321250916, + "learning_rate": 4.160167992926614e-05, + "loss": 0.8935442352294922, + "step": 19000 + }, + { + "epoch": 16.888299048882992, + "grad_norm": 0.18340304493904114, + "learning_rate": 4.155747126436782e-05, + "loss": 0.8885797119140625, + "step": 19100 + }, + { + "epoch": 16.97677504976775, + "grad_norm": 0.2073577493429184, + "learning_rate": 4.15132625994695e-05, + "loss": 0.8951002502441406, + "step": 19200 + }, + { + "epoch": 17.064587480645876, + "grad_norm": 0.17697007954120636, + "learning_rate": 4.146949602122016e-05, + "loss": 0.8879679870605469, + "step": 19300 + }, + { + "epoch": 17.153063481530634, + "grad_norm": 0.20899821817874908, + "learning_rate": 4.142528735632184e-05, + "loss": 0.8794329833984375, + "step": 19400 + }, + { + "epoch": 17.241539482415394, + "grad_norm": 0.18147091567516327, + "learning_rate": 4.138107869142352e-05, + "loss": 0.8802722930908203, + "step": 19500 + }, + { + "epoch": 17.330015483300155, + "grad_norm": 0.20257830619812012, + "learning_rate": 4.13368700265252e-05, + "loss": 0.8870145416259766, + "step": 19600 + }, + { + "epoch": 17.418491484184916, + "grad_norm": 0.20231416821479797, + "learning_rate": 4.1292661361626885e-05, + "loss": 0.8838448333740234, + "step": 19700 + }, + { + "epoch": 17.506967485069676, + "grad_norm": 0.18214623630046844, + "learning_rate": 4.124845269672856e-05, + "loss": 0.8879763793945312, + "step": 19800 + }, + { + "epoch": 17.595443485954434, + "grad_norm": 0.18666088581085205, + "learning_rate": 4.120424403183024e-05, + "loss": 0.8885836029052734, + "step": 19900 + }, + { + "epoch": 17.683919486839194, + "grad_norm": 0.20308583974838257, + "learning_rate": 4.116003536693192e-05, + "loss": 0.8843843078613282, + "step": 20000 + }, + { + "epoch": 17.772395487723955, + "grad_norm": 0.18726830184459686, + "learning_rate": 4.11158267020336e-05, + "loss": 0.8865486145019531, + "step": 20100 + }, + { + "epoch": 17.860871488608716, + "grad_norm": 0.17878851294517517, + "learning_rate": 4.107161803713528e-05, + "loss": 0.8883515930175782, + "step": 20200 + }, + { + "epoch": 17.949347489493476, + "grad_norm": 0.1849307119846344, + "learning_rate": 4.102740937223696e-05, + "loss": 0.8914216613769531, + "step": 20300 + }, + { + "epoch": 18.0371599203716, + "grad_norm": 0.22315239906311035, + "learning_rate": 4.0983200707338645e-05, + "loss": 0.88252197265625, + "step": 20400 + }, + { + "epoch": 18.12563592125636, + "grad_norm": 0.18446321785449982, + "learning_rate": 4.093899204244032e-05, + "loss": 0.8717878723144531, + "step": 20500 + }, + { + "epoch": 18.214111922141118, + "grad_norm": 0.21541251242160797, + "learning_rate": 4.0894783377542e-05, + "loss": 0.8750727844238281, + "step": 20600 + }, + { + "epoch": 18.30258792302588, + "grad_norm": 0.22268827259540558, + "learning_rate": 4.085057471264368e-05, + "loss": 0.8760640716552734, + "step": 20700 + }, + { + "epoch": 18.39106392391064, + "grad_norm": 0.2207673043012619, + "learning_rate": 4.080636604774536e-05, + "loss": 0.876912841796875, + "step": 20800 + }, + { + "epoch": 18.4795399247954, + "grad_norm": 0.21988292038440704, + "learning_rate": 4.076215738284704e-05, + "loss": 0.8794302368164062, + "step": 20900 + }, + { + "epoch": 18.56801592568016, + "grad_norm": 0.2057323008775711, + "learning_rate": 4.0717948717948714e-05, + "loss": 0.8795650482177735, + "step": 21000 + }, + { + "epoch": 18.656491926564918, + "grad_norm": 0.19854794442653656, + "learning_rate": 4.0673740053050405e-05, + "loss": 0.8824103546142578, + "step": 21100 + }, + { + "epoch": 18.74496792744968, + "grad_norm": 0.2183123230934143, + "learning_rate": 4.062953138815208e-05, + "loss": 0.8792383575439453, + "step": 21200 + }, + { + "epoch": 18.83344392833444, + "grad_norm": 0.20326419174671173, + "learning_rate": 4.058532272325376e-05, + "loss": 0.8834226989746093, + "step": 21300 + }, + { + "epoch": 18.9219199292192, + "grad_norm": 0.20735788345336914, + "learning_rate": 4.054111405835544e-05, + "loss": 0.8820342254638672, + "step": 21400 + }, + { + "epoch": 19.009732360097324, + "grad_norm": 0.2023264467716217, + "learning_rate": 4.04973474801061e-05, + "loss": 0.8843944549560547, + "step": 21500 + }, + { + "epoch": 19.098208360982085, + "grad_norm": 0.21148885786533356, + "learning_rate": 4.045313881520778e-05, + "loss": 0.8647132110595703, + "step": 21600 + }, + { + "epoch": 19.186684361866842, + "grad_norm": 0.2251083254814148, + "learning_rate": 4.040893015030947e-05, + "loss": 0.866364974975586, + "step": 21700 + }, + { + "epoch": 19.275160362751603, + "grad_norm": 0.23524972796440125, + "learning_rate": 4.0364721485411144e-05, + "loss": 0.8736127471923828, + "step": 21800 + }, + { + "epoch": 19.363636363636363, + "grad_norm": 0.21772760152816772, + "learning_rate": 4.032051282051282e-05, + "loss": 0.8692568206787109, + "step": 21900 + }, + { + "epoch": 19.452112364521124, + "grad_norm": 0.2125358134508133, + "learning_rate": 4.0276304155614505e-05, + "loss": 0.8706926727294921, + "step": 22000 + }, + { + "epoch": 19.540588365405885, + "grad_norm": 0.22768475115299225, + "learning_rate": 4.023209549071618e-05, + "loss": 0.8674411010742188, + "step": 22100 + }, + { + "epoch": 19.629064366290642, + "grad_norm": 0.2211151272058487, + "learning_rate": 4.018788682581786e-05, + "loss": 0.8749802398681641, + "step": 22200 + }, + { + "epoch": 19.717540367175403, + "grad_norm": 0.21814538538455963, + "learning_rate": 4.014367816091954e-05, + "loss": 0.8754036712646485, + "step": 22300 + }, + { + "epoch": 19.806016368060163, + "grad_norm": 0.2030419558286667, + "learning_rate": 4.0099469496021226e-05, + "loss": 0.8714677429199219, + "step": 22400 + }, + { + "epoch": 19.894492368944924, + "grad_norm": 0.21472303569316864, + "learning_rate": 4.0055260831122904e-05, + "loss": 0.8727165222167969, + "step": 22500 + }, + { + "epoch": 19.982968369829685, + "grad_norm": 0.20911096036434174, + "learning_rate": 4.001105216622458e-05, + "loss": 0.8781427764892578, + "step": 22600 + }, + { + "epoch": 20.07078080070781, + "grad_norm": 0.2304856926202774, + "learning_rate": 3.9966843501326264e-05, + "loss": 0.8589347076416015, + "step": 22700 + }, + { + "epoch": 20.15925680159257, + "grad_norm": 0.23650145530700684, + "learning_rate": 3.992263483642794e-05, + "loss": 0.8598684692382812, + "step": 22800 + }, + { + "epoch": 20.247732802477326, + "grad_norm": 0.21773482859134674, + "learning_rate": 3.987842617152962e-05, + "loss": 0.8605601501464843, + "step": 22900 + }, + { + "epoch": 20.336208803362087, + "grad_norm": 0.2237112671136856, + "learning_rate": 3.98342175066313e-05, + "loss": 0.8617141723632813, + "step": 23000 + }, + { + "epoch": 20.424684804246848, + "grad_norm": 0.24452048540115356, + "learning_rate": 3.9790008841732986e-05, + "loss": 0.8622699737548828, + "step": 23100 + }, + { + "epoch": 20.51316080513161, + "grad_norm": 0.21587280929088593, + "learning_rate": 3.974580017683466e-05, + "loss": 0.8637493896484375, + "step": 23200 + }, + { + "epoch": 20.60163680601637, + "grad_norm": 0.2406671941280365, + "learning_rate": 3.970159151193634e-05, + "loss": 0.859559555053711, + "step": 23300 + }, + { + "epoch": 20.690112806901126, + "grad_norm": 0.22845898568630219, + "learning_rate": 3.9657382847038024e-05, + "loss": 0.8662923431396484, + "step": 23400 + }, + { + "epoch": 20.778588807785887, + "grad_norm": 0.24683597683906555, + "learning_rate": 3.96131741821397e-05, + "loss": 0.8673475646972656, + "step": 23500 + }, + { + "epoch": 20.867064808670648, + "grad_norm": 0.22459226846694946, + "learning_rate": 3.956896551724138e-05, + "loss": 0.8640863037109375, + "step": 23600 + }, + { + "epoch": 20.95554080955541, + "grad_norm": 0.23616963624954224, + "learning_rate": 3.952475685234306e-05, + "loss": 0.8678861236572266, + "step": 23700 + }, + { + "epoch": 21.043353240433532, + "grad_norm": 0.22973845899105072, + "learning_rate": 3.9480990274093725e-05, + "loss": 0.8580598449707031, + "step": 23800 + }, + { + "epoch": 21.131829241318293, + "grad_norm": 0.2424720972776413, + "learning_rate": 3.94367816091954e-05, + "loss": 0.8460955810546875, + "step": 23900 + }, + { + "epoch": 21.220305242203054, + "grad_norm": 0.2528146505355835, + "learning_rate": 3.9392572944297086e-05, + "loss": 0.8499996185302734, + "step": 24000 + }, + { + "epoch": 21.30878124308781, + "grad_norm": 0.2518126666545868, + "learning_rate": 3.9348364279398763e-05, + "loss": 0.8534349060058594, + "step": 24100 + }, + { + "epoch": 21.39725724397257, + "grad_norm": 0.2305818349123001, + "learning_rate": 3.930415561450044e-05, + "loss": 0.84900146484375, + "step": 24200 + }, + { + "epoch": 21.485733244857332, + "grad_norm": 0.25653600692749023, + "learning_rate": 3.9259946949602124e-05, + "loss": 0.8542990875244141, + "step": 24300 + }, + { + "epoch": 21.574209245742093, + "grad_norm": 0.2712801992893219, + "learning_rate": 3.92157382847038e-05, + "loss": 0.8558815002441407, + "step": 24400 + }, + { + "epoch": 21.662685246626854, + "grad_norm": 0.273328959941864, + "learning_rate": 3.9171529619805485e-05, + "loss": 0.8555754089355468, + "step": 24500 + }, + { + "epoch": 21.75116124751161, + "grad_norm": 0.2668614089488983, + "learning_rate": 3.912732095490716e-05, + "loss": 0.8587675476074219, + "step": 24600 + }, + { + "epoch": 21.83963724839637, + "grad_norm": 0.24395836889743805, + "learning_rate": 3.9083112290008846e-05, + "loss": 0.8572028350830078, + "step": 24700 + }, + { + "epoch": 21.928113249281132, + "grad_norm": 0.24808812141418457, + "learning_rate": 3.903890362511052e-05, + "loss": 0.8579219055175781, + "step": 24800 + }, + { + "epoch": 22.015925680159256, + "grad_norm": 0.2587817311286926, + "learning_rate": 3.89946949602122e-05, + "loss": 0.8512050628662109, + "step": 24900 + }, + { + "epoch": 22.104401681044017, + "grad_norm": 0.26175108551979065, + "learning_rate": 3.8950486295313884e-05, + "loss": 0.8361199188232422, + "step": 25000 + }, + { + "epoch": 22.192877681928778, + "grad_norm": 0.2715345025062561, + "learning_rate": 3.890627763041556e-05, + "loss": 0.8399204254150391, + "step": 25100 + }, + { + "epoch": 22.28135368281354, + "grad_norm": 0.27675682306289673, + "learning_rate": 3.8862068965517245e-05, + "loss": 0.8378430938720703, + "step": 25200 + }, + { + "epoch": 22.369829683698295, + "grad_norm": 0.26540565490722656, + "learning_rate": 3.881786030061892e-05, + "loss": 0.8397164916992188, + "step": 25300 + }, + { + "epoch": 22.458305684583056, + "grad_norm": 0.2754775285720825, + "learning_rate": 3.8773651635720606e-05, + "loss": 0.8450184631347656, + "step": 25400 + }, + { + "epoch": 22.546781685467817, + "grad_norm": 0.2393341213464737, + "learning_rate": 3.872944297082228e-05, + "loss": 0.8427618408203125, + "step": 25500 + }, + { + "epoch": 22.635257686352578, + "grad_norm": 0.23895791172981262, + "learning_rate": 3.868523430592396e-05, + "loss": 0.8457352447509766, + "step": 25600 + }, + { + "epoch": 22.72373368723734, + "grad_norm": 0.26955941319465637, + "learning_rate": 3.8641025641025644e-05, + "loss": 0.849469223022461, + "step": 25700 + }, + { + "epoch": 22.812209688122095, + "grad_norm": 0.23746059834957123, + "learning_rate": 3.859681697612732e-05, + "loss": 0.8469708251953125, + "step": 25800 + }, + { + "epoch": 22.900685689006856, + "grad_norm": 0.2649519145488739, + "learning_rate": 3.8552608311229005e-05, + "loss": 0.849559326171875, + "step": 25900 + }, + { + "epoch": 22.989161689891617, + "grad_norm": 0.27285081148147583, + "learning_rate": 3.850839964633068e-05, + "loss": 0.8485184478759765, + "step": 26000 + }, + { + "epoch": 23.07697412076974, + "grad_norm": 0.27895936369895935, + "learning_rate": 3.8464633068081345e-05, + "loss": 0.8252901458740234, + "step": 26100 + }, + { + "epoch": 23.1654501216545, + "grad_norm": 0.2652367055416107, + "learning_rate": 3.842042440318302e-05, + "loss": 0.8263906097412109, + "step": 26200 + }, + { + "epoch": 23.253926122539262, + "grad_norm": 0.2835598886013031, + "learning_rate": 3.8376215738284706e-05, + "loss": 0.8287677001953125, + "step": 26300 + }, + { + "epoch": 23.342402123424023, + "grad_norm": 0.2834433615207672, + "learning_rate": 3.833200707338638e-05, + "loss": 0.8309012603759766, + "step": 26400 + }, + { + "epoch": 23.43087812430878, + "grad_norm": 0.2998100817203522, + "learning_rate": 3.828779840848807e-05, + "loss": 0.8311166381835937, + "step": 26500 + }, + { + "epoch": 23.51935412519354, + "grad_norm": 0.29382187128067017, + "learning_rate": 3.8243589743589744e-05, + "loss": 0.8325238037109375, + "step": 26600 + }, + { + "epoch": 23.6078301260783, + "grad_norm": 0.2950701415538788, + "learning_rate": 3.819938107869143e-05, + "loss": 0.8368535614013672, + "step": 26700 + }, + { + "epoch": 23.696306126963062, + "grad_norm": 0.287801057100296, + "learning_rate": 3.8155172413793105e-05, + "loss": 0.833930435180664, + "step": 26800 + }, + { + "epoch": 23.784782127847823, + "grad_norm": 0.33100536465644836, + "learning_rate": 3.811096374889478e-05, + "loss": 0.8386001586914062, + "step": 26900 + }, + { + "epoch": 23.87325812873258, + "grad_norm": 0.2911369800567627, + "learning_rate": 3.8066755083996466e-05, + "loss": 0.8410533905029297, + "step": 27000 + }, + { + "epoch": 23.96173412961734, + "grad_norm": 0.26980099081993103, + "learning_rate": 3.802254641909814e-05, + "loss": 0.8360975646972656, + "step": 27100 + }, + { + "epoch": 24.049546560495465, + "grad_norm": 0.3001425862312317, + "learning_rate": 3.797833775419983e-05, + "loss": 0.8234864044189453, + "step": 27200 + }, + { + "epoch": 24.138022561380225, + "grad_norm": 0.27798378467559814, + "learning_rate": 3.7934129089301504e-05, + "loss": 0.8135331726074219, + "step": 27300 + }, + { + "epoch": 24.226498562264986, + "grad_norm": 0.2736954689025879, + "learning_rate": 3.788992042440319e-05, + "loss": 0.8113047027587891, + "step": 27400 + }, + { + "epoch": 24.314974563149747, + "grad_norm": 0.29235804080963135, + "learning_rate": 3.7845711759504865e-05, + "loss": 0.8171870422363281, + "step": 27500 + }, + { + "epoch": 24.403450564034507, + "grad_norm": 0.2878233790397644, + "learning_rate": 3.780150309460654e-05, + "loss": 0.8170029449462891, + "step": 27600 + }, + { + "epoch": 24.491926564919265, + "grad_norm": 0.31602925062179565, + "learning_rate": 3.7757294429708226e-05, + "loss": 0.8223928833007812, + "step": 27700 + }, + { + "epoch": 24.580402565804025, + "grad_norm": 0.3145372271537781, + "learning_rate": 3.77130857648099e-05, + "loss": 0.8257860565185546, + "step": 27800 + }, + { + "epoch": 24.668878566688786, + "grad_norm": 0.30716991424560547, + "learning_rate": 3.7668877099911587e-05, + "loss": 0.8240725708007812, + "step": 27900 + }, + { + "epoch": 24.757354567573547, + "grad_norm": 0.28368160128593445, + "learning_rate": 3.7624668435013264e-05, + "loss": 0.825384521484375, + "step": 28000 + }, + { + "epoch": 24.845830568458307, + "grad_norm": 0.2867664694786072, + "learning_rate": 3.758045977011495e-05, + "loss": 0.8270760345458984, + "step": 28100 + }, + { + "epoch": 24.934306569343065, + "grad_norm": 0.28817129135131836, + "learning_rate": 3.7536251105216624e-05, + "loss": 0.8286974334716797, + "step": 28200 + }, + { + "epoch": 25.02211900022119, + "grad_norm": 0.3106354773044586, + "learning_rate": 3.749248452696729e-05, + "loss": 0.82120849609375, + "step": 28300 + }, + { + "epoch": 25.11059500110595, + "grad_norm": 0.3304692506790161, + "learning_rate": 3.7448275862068965e-05, + "loss": 0.8016901397705078, + "step": 28400 + }, + { + "epoch": 25.19907100199071, + "grad_norm": 0.3065616488456726, + "learning_rate": 3.740406719717064e-05, + "loss": 0.8027448272705078, + "step": 28500 + }, + { + "epoch": 25.28754700287547, + "grad_norm": 0.3456852436065674, + "learning_rate": 3.735985853227233e-05, + "loss": 0.8046049499511718, + "step": 28600 + }, + { + "epoch": 25.37602300376023, + "grad_norm": 0.3011663556098938, + "learning_rate": 3.731564986737401e-05, + "loss": 0.8079199981689453, + "step": 28700 + }, + { + "epoch": 25.46449900464499, + "grad_norm": 0.3659413158893585, + "learning_rate": 3.7271441202475687e-05, + "loss": 0.8079922485351563, + "step": 28800 + }, + { + "epoch": 25.55297500552975, + "grad_norm": 0.3281838595867157, + "learning_rate": 3.7227232537577364e-05, + "loss": 0.8134046173095704, + "step": 28900 + }, + { + "epoch": 25.64145100641451, + "grad_norm": 0.3106602132320404, + "learning_rate": 3.718302387267905e-05, + "loss": 0.8104205322265625, + "step": 29000 + }, + { + "epoch": 25.72992700729927, + "grad_norm": 0.3320154845714569, + "learning_rate": 3.7138815207780725e-05, + "loss": 0.8142304992675782, + "step": 29100 + }, + { + "epoch": 25.81840300818403, + "grad_norm": 0.3355977535247803, + "learning_rate": 3.70946065428824e-05, + "loss": 0.8125243377685547, + "step": 29200 + }, + { + "epoch": 25.90687900906879, + "grad_norm": 0.3472290635108948, + "learning_rate": 3.7050397877984085e-05, + "loss": 0.8146660614013672, + "step": 29300 + }, + { + "epoch": 25.99535500995355, + "grad_norm": 0.31780678033828735, + "learning_rate": 3.700618921308577e-05, + "loss": 0.8169705200195313, + "step": 29400 + }, + { + "epoch": 26.083167440831673, + "grad_norm": 0.3046151101589203, + "learning_rate": 3.6961980548187446e-05, + "loss": 0.7894915008544922, + "step": 29500 + }, + { + "epoch": 26.171643441716434, + "grad_norm": 0.3560829162597656, + "learning_rate": 3.6917771883289123e-05, + "loss": 0.7867289733886719, + "step": 29600 + }, + { + "epoch": 26.260119442601194, + "grad_norm": 0.33036884665489197, + "learning_rate": 3.687356321839081e-05, + "loss": 0.7914912414550781, + "step": 29700 + }, + { + "epoch": 26.348595443485955, + "grad_norm": 0.3302215039730072, + "learning_rate": 3.6829354553492484e-05, + "loss": 0.7926998901367187, + "step": 29800 + }, + { + "epoch": 26.437071444370716, + "grad_norm": 0.33766239881515503, + "learning_rate": 3.678514588859416e-05, + "loss": 0.7958551788330078, + "step": 29900 + }, + { + "epoch": 26.525547445255473, + "grad_norm": 0.34900912642478943, + "learning_rate": 3.6740937223695845e-05, + "loss": 0.7958287811279297, + "step": 30000 + }, + { + "epoch": 26.614023446140234, + "grad_norm": 0.3290475010871887, + "learning_rate": 3.669672855879753e-05, + "loss": 0.7994923400878906, + "step": 30100 + }, + { + "epoch": 26.702499447024994, + "grad_norm": 0.3304896950721741, + "learning_rate": 3.6652519893899206e-05, + "loss": 0.8000531005859375, + "step": 30200 + }, + { + "epoch": 26.790975447909755, + "grad_norm": 0.32132837176322937, + "learning_rate": 3.660831122900088e-05, + "loss": 0.8006639862060547, + "step": 30300 + }, + { + "epoch": 26.879451448794516, + "grad_norm": 0.3341081142425537, + "learning_rate": 3.656410256410257e-05, + "loss": 0.8037942504882812, + "step": 30400 + }, + { + "epoch": 26.967927449679273, + "grad_norm": 0.3406025171279907, + "learning_rate": 3.6519893899204244e-05, + "loss": 0.8009793853759766, + "step": 30500 + }, + { + "epoch": 27.0557398805574, + "grad_norm": 0.3396868109703064, + "learning_rate": 3.647568523430592e-05, + "loss": 0.7846424865722657, + "step": 30600 + }, + { + "epoch": 27.144215881442157, + "grad_norm": 0.33319470286369324, + "learning_rate": 3.6431476569407605e-05, + "loss": 0.7724665832519532, + "step": 30700 + }, + { + "epoch": 27.232691882326918, + "grad_norm": 0.38071826100349426, + "learning_rate": 3.638726790450929e-05, + "loss": 0.7791647338867187, + "step": 30800 + }, + { + "epoch": 27.32116788321168, + "grad_norm": 0.3640372157096863, + "learning_rate": 3.6343059239610966e-05, + "loss": 0.778485107421875, + "step": 30900 + }, + { + "epoch": 27.40964388409644, + "grad_norm": 0.34701183438301086, + "learning_rate": 3.629885057471264e-05, + "loss": 0.7812682342529297, + "step": 31000 + }, + { + "epoch": 27.4981198849812, + "grad_norm": 0.34723395109176636, + "learning_rate": 3.625464190981433e-05, + "loss": 0.7816720581054688, + "step": 31100 + }, + { + "epoch": 27.586595885865957, + "grad_norm": 0.3967572748661041, + "learning_rate": 3.6210433244916004e-05, + "loss": 0.7825845336914062, + "step": 31200 + }, + { + "epoch": 27.675071886750718, + "grad_norm": 0.36156365275382996, + "learning_rate": 3.616622458001768e-05, + "loss": 0.7875003814697266, + "step": 31300 + }, + { + "epoch": 27.76354788763548, + "grad_norm": 0.37152451276779175, + "learning_rate": 3.6122015915119365e-05, + "loss": 0.7848563385009766, + "step": 31400 + }, + { + "epoch": 27.85202388852024, + "grad_norm": 0.3751819431781769, + "learning_rate": 3.607780725022105e-05, + "loss": 0.7901625061035156, + "step": 31500 + }, + { + "epoch": 27.940499889405, + "grad_norm": 0.32409200072288513, + "learning_rate": 3.6033598585322726e-05, + "loss": 0.7916508483886718, + "step": 31600 + }, + { + "epoch": 28.028312320283124, + "grad_norm": 0.36621779203414917, + "learning_rate": 3.59893899204244e-05, + "loss": 0.7814656066894531, + "step": 31700 + }, + { + "epoch": 28.116788321167885, + "grad_norm": 0.35782715678215027, + "learning_rate": 3.594518125552609e-05, + "loss": 0.7565266418457032, + "step": 31800 + }, + { + "epoch": 28.205264322052642, + "grad_norm": 0.34983065724372864, + "learning_rate": 3.5900972590627764e-05, + "loss": 0.7589649963378906, + "step": 31900 + }, + { + "epoch": 28.293740322937403, + "grad_norm": 0.36476004123687744, + "learning_rate": 3.585676392572945e-05, + "loss": 0.7618669891357421, + "step": 32000 + }, + { + "epoch": 28.382216323822163, + "grad_norm": 0.3663191795349121, + "learning_rate": 3.5812555260831125e-05, + "loss": 0.768099136352539, + "step": 32100 + }, + { + "epoch": 28.470692324706924, + "grad_norm": 0.3572807312011719, + "learning_rate": 3.576834659593281e-05, + "loss": 0.7697807312011719, + "step": 32200 + }, + { + "epoch": 28.559168325591685, + "grad_norm": 0.39800935983657837, + "learning_rate": 3.5724580017683465e-05, + "loss": 0.7714015960693359, + "step": 32300 + }, + { + "epoch": 28.647644326476442, + "grad_norm": 0.3792218863964081, + "learning_rate": 3.568037135278515e-05, + "loss": 0.7737385559082032, + "step": 32400 + }, + { + "epoch": 28.736120327361203, + "grad_norm": 0.4109075665473938, + "learning_rate": 3.5636162687886826e-05, + "loss": 0.7772123718261719, + "step": 32500 + }, + { + "epoch": 28.824596328245963, + "grad_norm": 0.40446004271507263, + "learning_rate": 3.55919540229885e-05, + "loss": 0.7722319030761718, + "step": 32600 + }, + { + "epoch": 28.913072329130724, + "grad_norm": 0.39553946256637573, + "learning_rate": 3.554774535809019e-05, + "loss": 0.7767266082763672, + "step": 32700 + }, + { + "epoch": 29.000884760008848, + "grad_norm": 0.3675474226474762, + "learning_rate": 3.550397877984085e-05, + "loss": 0.7800326538085938, + "step": 32800 + }, + { + "epoch": 29.08936076089361, + "grad_norm": 0.37354156374931335, + "learning_rate": 3.5459770114942534e-05, + "loss": 0.7407066345214843, + "step": 32900 + }, + { + "epoch": 29.17783676177837, + "grad_norm": 0.3970542550086975, + "learning_rate": 3.541556145004421e-05, + "loss": 0.7467523956298828, + "step": 33000 + }, + { + "epoch": 29.266312762663127, + "grad_norm": 0.3625730872154236, + "learning_rate": 3.537135278514589e-05, + "loss": 0.7477723693847657, + "step": 33100 + }, + { + "epoch": 29.354788763547887, + "grad_norm": 0.37132611870765686, + "learning_rate": 3.532714412024757e-05, + "loss": 0.7502822875976562, + "step": 33200 + }, + { + "epoch": 29.443264764432648, + "grad_norm": 0.3668833374977112, + "learning_rate": 3.528293545534925e-05, + "loss": 0.7570280456542968, + "step": 33300 + }, + { + "epoch": 29.53174076531741, + "grad_norm": 0.404186874628067, + "learning_rate": 3.523872679045093e-05, + "loss": 0.7576876831054687, + "step": 33400 + }, + { + "epoch": 29.62021676620217, + "grad_norm": 0.407461017370224, + "learning_rate": 3.519451812555261e-05, + "loss": 0.7606333923339844, + "step": 33500 + }, + { + "epoch": 29.708692767086927, + "grad_norm": 0.4091641902923584, + "learning_rate": 3.5150309460654294e-05, + "loss": 0.7598370361328125, + "step": 33600 + }, + { + "epoch": 29.797168767971687, + "grad_norm": 0.36642369627952576, + "learning_rate": 3.510610079575597e-05, + "loss": 0.7617308807373047, + "step": 33700 + }, + { + "epoch": 29.885644768856448, + "grad_norm": 0.3767990171909332, + "learning_rate": 3.506189213085765e-05, + "loss": 0.760002670288086, + "step": 33800 + }, + { + "epoch": 29.97412076974121, + "grad_norm": 0.3992450535297394, + "learning_rate": 3.5017683465959325e-05, + "loss": 0.7659886932373047, + "step": 33900 + }, + { + "epoch": 30.061933200619332, + "grad_norm": 0.38657036423683167, + "learning_rate": 3.497347480106101e-05, + "loss": 0.7397030639648438, + "step": 34000 + }, + { + "epoch": 30.150409201504093, + "grad_norm": 0.40928229689598083, + "learning_rate": 3.492926613616269e-05, + "loss": 0.7280159759521484, + "step": 34100 + }, + { + "epoch": 30.23888520238885, + "grad_norm": 0.41609957814216614, + "learning_rate": 3.488505747126437e-05, + "loss": 0.7327291107177735, + "step": 34200 + }, + { + "epoch": 30.32736120327361, + "grad_norm": 0.3990429639816284, + "learning_rate": 3.4840848806366047e-05, + "loss": 0.7359205627441406, + "step": 34300 + }, + { + "epoch": 30.41583720415837, + "grad_norm": 0.40403324365615845, + "learning_rate": 3.479664014146773e-05, + "loss": 0.73650390625, + "step": 34400 + }, + { + "epoch": 30.504313205043132, + "grad_norm": 0.42696642875671387, + "learning_rate": 3.475243147656941e-05, + "loss": 0.7416681671142578, + "step": 34500 + }, + { + "epoch": 30.592789205927893, + "grad_norm": 0.3891199231147766, + "learning_rate": 3.4708222811671085e-05, + "loss": 0.742286605834961, + "step": 34600 + }, + { + "epoch": 30.68126520681265, + "grad_norm": 0.3660706877708435, + "learning_rate": 3.466401414677277e-05, + "loss": 0.7444020080566406, + "step": 34700 + }, + { + "epoch": 30.76974120769741, + "grad_norm": 0.43280747532844543, + "learning_rate": 3.461980548187445e-05, + "loss": 0.7461125183105469, + "step": 34800 + }, + { + "epoch": 30.85821720858217, + "grad_norm": 0.4279727041721344, + "learning_rate": 3.457559681697613e-05, + "loss": 0.7497645568847656, + "step": 34900 + }, + { + "epoch": 30.946693209466932, + "grad_norm": 0.4162921905517578, + "learning_rate": 3.4531388152077806e-05, + "loss": 0.7478341674804687, + "step": 35000 + }, + { + "epoch": 31.034505640345056, + "grad_norm": 0.4011857211589813, + "learning_rate": 3.448762157382847e-05, + "loss": 0.7373168182373047, + "step": 35100 + }, + { + "epoch": 31.122981641229817, + "grad_norm": 0.42476192116737366, + "learning_rate": 3.444341290893015e-05, + "loss": 0.714128646850586, + "step": 35200 + }, + { + "epoch": 31.211457642114578, + "grad_norm": 0.4272063672542572, + "learning_rate": 3.439920424403183e-05, + "loss": 0.717328872680664, + "step": 35300 + }, + { + "epoch": 31.299933642999335, + "grad_norm": 0.39419060945510864, + "learning_rate": 3.4354995579133514e-05, + "loss": 0.7182811737060547, + "step": 35400 + }, + { + "epoch": 31.388409643884096, + "grad_norm": 0.4092519283294678, + "learning_rate": 3.431078691423519e-05, + "loss": 0.7223808288574218, + "step": 35500 + }, + { + "epoch": 31.476885644768856, + "grad_norm": 0.45683449506759644, + "learning_rate": 3.4266578249336875e-05, + "loss": 0.7236460876464844, + "step": 35600 + }, + { + "epoch": 31.565361645653617, + "grad_norm": 0.4914647936820984, + "learning_rate": 3.422236958443855e-05, + "loss": 0.728529052734375, + "step": 35700 + }, + { + "epoch": 31.653837646538378, + "grad_norm": 0.439372718334198, + "learning_rate": 3.417816091954023e-05, + "loss": 0.7269135284423828, + "step": 35800 + }, + { + "epoch": 31.742313647423135, + "grad_norm": 0.488553911447525, + "learning_rate": 3.413395225464191e-05, + "loss": 0.7319352722167969, + "step": 35900 + }, + { + "epoch": 31.830789648307896, + "grad_norm": 0.43236035108566284, + "learning_rate": 3.408974358974359e-05, + "loss": 0.7336878204345703, + "step": 36000 + }, + { + "epoch": 31.919265649192656, + "grad_norm": 0.42669814825057983, + "learning_rate": 3.4045534924845274e-05, + "loss": 0.7357192993164062, + "step": 36100 + }, + { + "epoch": 32.007078080070784, + "grad_norm": 0.40464460849761963, + "learning_rate": 3.400132625994695e-05, + "loss": 0.7324215698242188, + "step": 36200 + }, + { + "epoch": 32.09555408095554, + "grad_norm": 0.4362545311450958, + "learning_rate": 3.3957117595048635e-05, + "loss": 0.6976793670654297, + "step": 36300 + }, + { + "epoch": 32.1840300818403, + "grad_norm": 0.46484723687171936, + "learning_rate": 3.391290893015031e-05, + "loss": 0.6972021484375, + "step": 36400 + }, + { + "epoch": 32.27250608272506, + "grad_norm": 0.43313083052635193, + "learning_rate": 3.386870026525199e-05, + "loss": 0.7049392700195313, + "step": 36500 + }, + { + "epoch": 32.36098208360982, + "grad_norm": 0.437752366065979, + "learning_rate": 3.3824491600353666e-05, + "loss": 0.7091526794433594, + "step": 36600 + }, + { + "epoch": 32.44945808449458, + "grad_norm": 0.44550085067749023, + "learning_rate": 3.378028293545535e-05, + "loss": 0.7121316528320313, + "step": 36700 + }, + { + "epoch": 32.53793408537934, + "grad_norm": 0.46052590012550354, + "learning_rate": 3.3736074270557034e-05, + "loss": 0.7150274658203125, + "step": 36800 + }, + { + "epoch": 32.6264100862641, + "grad_norm": 0.4344913065433502, + "learning_rate": 3.369186560565871e-05, + "loss": 0.7130059814453125, + "step": 36900 + }, + { + "epoch": 32.71488608714886, + "grad_norm": 0.45924630761146545, + "learning_rate": 3.364765694076039e-05, + "loss": 0.7156332397460937, + "step": 37000 + }, + { + "epoch": 32.80336208803362, + "grad_norm": 0.41177231073379517, + "learning_rate": 3.360344827586207e-05, + "loss": 0.7184346008300782, + "step": 37100 + }, + { + "epoch": 32.891838088918384, + "grad_norm": 0.44688835740089417, + "learning_rate": 3.355923961096375e-05, + "loss": 0.7201016235351563, + "step": 37200 + }, + { + "epoch": 32.980314089803144, + "grad_norm": 0.4971197545528412, + "learning_rate": 3.3515030946065426e-05, + "loss": 0.7191078186035156, + "step": 37300 + }, + { + "epoch": 33.06812652068127, + "grad_norm": 0.47201091051101685, + "learning_rate": 3.347126436781609e-05, + "loss": 0.6914530944824219, + "step": 37400 + }, + { + "epoch": 33.15660252156602, + "grad_norm": 0.4473711848258972, + "learning_rate": 3.342705570291777e-05, + "loss": 0.6855306243896484, + "step": 37500 + }, + { + "epoch": 33.24507852245078, + "grad_norm": 0.4745553135871887, + "learning_rate": 3.338284703801946e-05, + "loss": 0.6888325500488282, + "step": 37600 + }, + { + "epoch": 33.33355452333554, + "grad_norm": 0.45796144008636475, + "learning_rate": 3.3338638373121134e-05, + "loss": 0.6924916076660156, + "step": 37700 + }, + { + "epoch": 33.422030524220304, + "grad_norm": 0.47769099473953247, + "learning_rate": 3.329442970822281e-05, + "loss": 0.6937997436523438, + "step": 37800 + }, + { + "epoch": 33.510506525105065, + "grad_norm": 0.4637518525123596, + "learning_rate": 3.3250221043324495e-05, + "loss": 0.6975637817382813, + "step": 37900 + }, + { + "epoch": 33.598982525989825, + "grad_norm": 0.47370946407318115, + "learning_rate": 3.320601237842617e-05, + "loss": 0.6985407257080078, + "step": 38000 + }, + { + "epoch": 33.687458526874586, + "grad_norm": 0.467692106962204, + "learning_rate": 3.316180371352785e-05, + "loss": 0.7032517242431641, + "step": 38100 + }, + { + "epoch": 33.77593452775935, + "grad_norm": 0.4691486060619354, + "learning_rate": 3.311759504862953e-05, + "loss": 0.7019402313232422, + "step": 38200 + }, + { + "epoch": 33.86441052864411, + "grad_norm": 0.465666264295578, + "learning_rate": 3.307338638373122e-05, + "loss": 0.7065095520019531, + "step": 38300 + }, + { + "epoch": 33.95288652952887, + "grad_norm": 0.4870339632034302, + "learning_rate": 3.3029177718832894e-05, + "loss": 0.7060601043701172, + "step": 38400 + }, + { + "epoch": 34.04069896040699, + "grad_norm": 0.46102386713027954, + "learning_rate": 3.298496905393457e-05, + "loss": 0.6895645141601563, + "step": 38500 + }, + { + "epoch": 34.12917496129175, + "grad_norm": 0.4717739522457123, + "learning_rate": 3.2940760389036255e-05, + "loss": 0.6683721160888672, + "step": 38600 + }, + { + "epoch": 34.217650962176506, + "grad_norm": 0.47995516657829285, + "learning_rate": 3.289655172413793e-05, + "loss": 0.67727294921875, + "step": 38700 + }, + { + "epoch": 34.30612696306127, + "grad_norm": 0.4676993191242218, + "learning_rate": 3.2852343059239616e-05, + "loss": 0.6742596435546875, + "step": 38800 + }, + { + "epoch": 34.39460296394603, + "grad_norm": 0.4986591935157776, + "learning_rate": 3.280813439434129e-05, + "loss": 0.6811554718017578, + "step": 38900 + }, + { + "epoch": 34.48307896483079, + "grad_norm": 0.49108394980430603, + "learning_rate": 3.2763925729442977e-05, + "loss": 0.6826177215576172, + "step": 39000 + }, + { + "epoch": 34.57155496571555, + "grad_norm": 0.46544989943504333, + "learning_rate": 3.2719717064544654e-05, + "loss": 0.6843925476074219, + "step": 39100 + }, + { + "epoch": 34.66003096660031, + "grad_norm": 0.4714086055755615, + "learning_rate": 3.267550839964633e-05, + "loss": 0.6843089294433594, + "step": 39200 + }, + { + "epoch": 34.74850696748507, + "grad_norm": 0.4726520776748657, + "learning_rate": 3.263129973474801e-05, + "loss": 0.687828140258789, + "step": 39300 + }, + { + "epoch": 34.83698296836983, + "grad_norm": 0.5056101083755493, + "learning_rate": 3.258709106984969e-05, + "loss": 0.6943804168701172, + "step": 39400 + }, + { + "epoch": 34.92545896925459, + "grad_norm": 0.5143911242485046, + "learning_rate": 3.2542882404951375e-05, + "loss": 0.6947840118408203, + "step": 39500 + }, + { + "epoch": 35.013271400132716, + "grad_norm": 0.4712352752685547, + "learning_rate": 3.249867374005305e-05, + "loss": 0.6877326965332031, + "step": 39600 + }, + { + "epoch": 35.10174740101748, + "grad_norm": 0.5000380873680115, + "learning_rate": 3.2454465075154736e-05, + "loss": 0.6556487274169922, + "step": 39700 + }, + { + "epoch": 35.19022340190224, + "grad_norm": 0.5022478699684143, + "learning_rate": 3.2410256410256413e-05, + "loss": 0.6607290649414063, + "step": 39800 + }, + { + "epoch": 35.27869940278699, + "grad_norm": 0.511082112789154, + "learning_rate": 3.236604774535809e-05, + "loss": 0.6585157775878906, + "step": 39900 + }, + { + "epoch": 35.36717540367175, + "grad_norm": 0.45338326692581177, + "learning_rate": 3.232183908045977e-05, + "loss": 0.6670406341552735, + "step": 40000 + }, + { + "epoch": 35.45565140455651, + "grad_norm": 0.47589078545570374, + "learning_rate": 3.227763041556145e-05, + "loss": 0.6654150390625, + "step": 40100 + }, + { + "epoch": 35.54412740544127, + "grad_norm": 0.5111287236213684, + "learning_rate": 3.2233421750663135e-05, + "loss": 0.6706926727294922, + "step": 40200 + }, + { + "epoch": 35.632603406326034, + "grad_norm": 0.48615771532058716, + "learning_rate": 3.218921308576481e-05, + "loss": 0.6724550628662109, + "step": 40300 + }, + { + "epoch": 35.721079407210794, + "grad_norm": 0.5141739845275879, + "learning_rate": 3.214500442086649e-05, + "loss": 0.674487075805664, + "step": 40400 + }, + { + "epoch": 35.809555408095555, + "grad_norm": 0.512373149394989, + "learning_rate": 3.210079575596817e-05, + "loss": 0.6809010314941406, + "step": 40500 + }, + { + "epoch": 35.898031408980316, + "grad_norm": 0.5156219005584717, + "learning_rate": 3.205658709106985e-05, + "loss": 0.6783308410644531, + "step": 40600 + }, + { + "epoch": 35.98650740986508, + "grad_norm": 0.5266398191452026, + "learning_rate": 3.201237842617153e-05, + "loss": 0.6796981811523437, + "step": 40700 + }, + { + "epoch": 36.0743198407432, + "grad_norm": 0.5198646783828735, + "learning_rate": 3.196861184792219e-05, + "loss": 0.648563232421875, + "step": 40800 + }, + { + "epoch": 36.16279584162796, + "grad_norm": 0.4699224829673767, + "learning_rate": 3.1924403183023874e-05, + "loss": 0.6464600372314453, + "step": 40900 + }, + { + "epoch": 36.25127184251272, + "grad_norm": 0.5014195442199707, + "learning_rate": 3.188019451812556e-05, + "loss": 0.6471477508544922, + "step": 41000 + }, + { + "epoch": 36.339747843397475, + "grad_norm": 0.5231509804725647, + "learning_rate": 3.1835985853227235e-05, + "loss": 0.6519639587402344, + "step": 41100 + }, + { + "epoch": 36.428223844282236, + "grad_norm": 0.4843427538871765, + "learning_rate": 3.179177718832891e-05, + "loss": 0.6523241424560546, + "step": 41200 + }, + { + "epoch": 36.516699845167, + "grad_norm": 0.4956904351711273, + "learning_rate": 3.1747568523430596e-05, + "loss": 0.6547152709960937, + "step": 41300 + }, + { + "epoch": 36.60517584605176, + "grad_norm": 0.5103031396865845, + "learning_rate": 3.170335985853227e-05, + "loss": 0.6602716827392578, + "step": 41400 + }, + { + "epoch": 36.69365184693652, + "grad_norm": 0.5028578042984009, + "learning_rate": 3.165915119363395e-05, + "loss": 0.6617116546630859, + "step": 41500 + }, + { + "epoch": 36.78212784782128, + "grad_norm": 0.4997723698616028, + "learning_rate": 3.1614942528735634e-05, + "loss": 0.6632434844970703, + "step": 41600 + }, + { + "epoch": 36.87060384870604, + "grad_norm": 0.5246814489364624, + "learning_rate": 3.157073386383732e-05, + "loss": 0.6632743835449219, + "step": 41700 + }, + { + "epoch": 36.9590798495908, + "grad_norm": 0.5308569073677063, + "learning_rate": 3.1526525198938995e-05, + "loss": 0.6639631652832031, + "step": 41800 + }, + { + "epoch": 37.046892280468924, + "grad_norm": 0.49218234419822693, + "learning_rate": 3.148231653404067e-05, + "loss": 0.6452173614501953, + "step": 41900 + }, + { + "epoch": 37.135368281353685, + "grad_norm": 0.4680822491645813, + "learning_rate": 3.143810786914235e-05, + "loss": 0.6319191360473633, + "step": 42000 + }, + { + "epoch": 37.223844282238446, + "grad_norm": 0.4810407757759094, + "learning_rate": 3.139389920424403e-05, + "loss": 0.6338667297363281, + "step": 42100 + }, + { + "epoch": 37.3123202831232, + "grad_norm": 0.545889139175415, + "learning_rate": 3.134969053934571e-05, + "loss": 0.6395709228515625, + "step": 42200 + }, + { + "epoch": 37.40079628400796, + "grad_norm": 0.5600217580795288, + "learning_rate": 3.1305481874447394e-05, + "loss": 0.6406965637207032, + "step": 42300 + }, + { + "epoch": 37.48927228489272, + "grad_norm": 0.5517903566360474, + "learning_rate": 3.126127320954908e-05, + "loss": 0.6428462982177734, + "step": 42400 + }, + { + "epoch": 37.57774828577748, + "grad_norm": 0.49925389885902405, + "learning_rate": 3.1217064544650755e-05, + "loss": 0.6470170593261719, + "step": 42500 + }, + { + "epoch": 37.66622428666224, + "grad_norm": 0.4698370397090912, + "learning_rate": 3.117285587975243e-05, + "loss": 0.6477708435058593, + "step": 42600 + }, + { + "epoch": 37.754700287547, + "grad_norm": 0.5349763035774231, + "learning_rate": 3.112864721485411e-05, + "loss": 0.6515216827392578, + "step": 42700 + }, + { + "epoch": 37.84317628843176, + "grad_norm": 0.5066236853599548, + "learning_rate": 3.108443854995579e-05, + "loss": 0.6522242736816406, + "step": 42800 + }, + { + "epoch": 37.931652289316524, + "grad_norm": 0.5211920142173767, + "learning_rate": 3.104022988505747e-05, + "loss": 0.6515906524658203, + "step": 42900 + }, + { + "epoch": 38.01946472019465, + "grad_norm": 0.5003405213356018, + "learning_rate": 3.099646330680814e-05, + "loss": 0.6448411560058593, + "step": 43000 + }, + { + "epoch": 38.10794072107941, + "grad_norm": 0.5215827226638794, + "learning_rate": 3.095225464190982e-05, + "loss": 0.619310417175293, + "step": 43100 + }, + { + "epoch": 38.19641672196417, + "grad_norm": 0.4768511950969696, + "learning_rate": 3.0908045977011494e-05, + "loss": 0.6210311126708984, + "step": 43200 + }, + { + "epoch": 38.28489272284893, + "grad_norm": 0.5353608727455139, + "learning_rate": 3.086383731211318e-05, + "loss": 0.6246475601196289, + "step": 43300 + }, + { + "epoch": 38.373368723733684, + "grad_norm": 0.5182030200958252, + "learning_rate": 3.0819628647214855e-05, + "loss": 0.6273392486572266, + "step": 43400 + }, + { + "epoch": 38.461844724618445, + "grad_norm": 0.500842273235321, + "learning_rate": 3.077541998231653e-05, + "loss": 0.6327916717529297, + "step": 43500 + }, + { + "epoch": 38.550320725503205, + "grad_norm": 0.5168542861938477, + "learning_rate": 3.0731211317418216e-05, + "loss": 0.6323520278930664, + "step": 43600 + }, + { + "epoch": 38.638796726387966, + "grad_norm": 0.5403733253479004, + "learning_rate": 3.06870026525199e-05, + "loss": 0.6338058090209961, + "step": 43700 + }, + { + "epoch": 38.72727272727273, + "grad_norm": 0.5119574666023254, + "learning_rate": 3.064279398762158e-05, + "loss": 0.6391129302978515, + "step": 43800 + }, + { + "epoch": 38.81574872815749, + "grad_norm": 0.5214455127716064, + "learning_rate": 3.0598585322723254e-05, + "loss": 0.6368292999267579, + "step": 43900 + }, + { + "epoch": 38.90422472904225, + "grad_norm": 0.5679435133934021, + "learning_rate": 3.055437665782494e-05, + "loss": 0.6414280700683593, + "step": 44000 + }, + { + "epoch": 38.99270072992701, + "grad_norm": 0.5442212820053101, + "learning_rate": 3.0510167992926615e-05, + "loss": 0.6446417999267579, + "step": 44100 + }, + { + "epoch": 39.08051316080513, + "grad_norm": 0.46873417496681213, + "learning_rate": 3.0465959328028292e-05, + "loss": 0.6127575302124023, + "step": 44200 + }, + { + "epoch": 39.16898916168989, + "grad_norm": 0.5402541756629944, + "learning_rate": 3.042175066312998e-05, + "loss": 0.6059606552124024, + "step": 44300 + }, + { + "epoch": 39.257465162574654, + "grad_norm": 0.5081923007965088, + "learning_rate": 3.0377541998231656e-05, + "loss": 0.6121833038330078, + "step": 44400 + }, + { + "epoch": 39.345941163459415, + "grad_norm": 0.5688677430152893, + "learning_rate": 3.0333333333333337e-05, + "loss": 0.6163175964355468, + "step": 44500 + }, + { + "epoch": 39.43441716434417, + "grad_norm": 0.5273306965827942, + "learning_rate": 3.0289124668435014e-05, + "loss": 0.6198236465454101, + "step": 44600 + }, + { + "epoch": 39.52289316522893, + "grad_norm": 0.5107190608978271, + "learning_rate": 3.0244916003536694e-05, + "loss": 0.6242243576049805, + "step": 44700 + }, + { + "epoch": 39.61136916611369, + "grad_norm": 0.5110412240028381, + "learning_rate": 3.0200707338638375e-05, + "loss": 0.6227451705932617, + "step": 44800 + }, + { + "epoch": 39.69984516699845, + "grad_norm": 0.5370123982429504, + "learning_rate": 3.015649867374005e-05, + "loss": 0.6257634735107422, + "step": 44900 + }, + { + "epoch": 39.78832116788321, + "grad_norm": 0.5311342477798462, + "learning_rate": 3.0112290008841735e-05, + "loss": 0.6246538925170898, + "step": 45000 + }, + { + "epoch": 39.87679716876797, + "grad_norm": 0.5247089862823486, + "learning_rate": 3.0068081343943416e-05, + "loss": 0.6278446578979492, + "step": 45100 + }, + { + "epoch": 39.96527316965273, + "grad_norm": 0.5407604575157166, + "learning_rate": 3.0023872679045096e-05, + "loss": 0.6319368743896484, + "step": 45200 + }, + { + "epoch": 40.053085600530856, + "grad_norm": 0.49125176668167114, + "learning_rate": 2.9980106100795756e-05, + "loss": 0.608686294555664, + "step": 45300 + }, + { + "epoch": 40.14156160141562, + "grad_norm": 0.5193077325820923, + "learning_rate": 2.9935897435897437e-05, + "loss": 0.5979312515258789, + "step": 45400 + }, + { + "epoch": 40.23003760230038, + "grad_norm": 0.5521110892295837, + "learning_rate": 2.9891688770999117e-05, + "loss": 0.6026276016235351, + "step": 45500 + }, + { + "epoch": 40.31851360318514, + "grad_norm": 0.5131237506866455, + "learning_rate": 2.9847480106100794e-05, + "loss": 0.6056368637084961, + "step": 45600 + }, + { + "epoch": 40.4069896040699, + "grad_norm": 0.5547003149986267, + "learning_rate": 2.9803271441202478e-05, + "loss": 0.6073746490478515, + "step": 45700 + }, + { + "epoch": 40.49546560495465, + "grad_norm": 0.5059778690338135, + "learning_rate": 2.975906277630416e-05, + "loss": 0.6093035888671875, + "step": 45800 + }, + { + "epoch": 40.583941605839414, + "grad_norm": 0.5218088030815125, + "learning_rate": 2.971485411140584e-05, + "loss": 0.6098678970336914, + "step": 45900 + }, + { + "epoch": 40.672417606724174, + "grad_norm": 0.5111589431762695, + "learning_rate": 2.9670645446507516e-05, + "loss": 0.6144123458862305, + "step": 46000 + }, + { + "epoch": 40.760893607608935, + "grad_norm": 0.5875983238220215, + "learning_rate": 2.9626436781609196e-05, + "loss": 0.6149031448364258, + "step": 46100 + }, + { + "epoch": 40.849369608493696, + "grad_norm": 0.6077953577041626, + "learning_rate": 2.9582228116710873e-05, + "loss": 0.6200779724121094, + "step": 46200 + }, + { + "epoch": 40.937845609378456, + "grad_norm": 0.5511230230331421, + "learning_rate": 2.9538019451812554e-05, + "loss": 0.6175289916992187, + "step": 46300 + }, + { + "epoch": 41.02565804025658, + "grad_norm": 0.5434758067131042, + "learning_rate": 2.9493810786914238e-05, + "loss": 0.6117794418334961, + "step": 46400 + }, + { + "epoch": 41.11413404114134, + "grad_norm": 0.5463586449623108, + "learning_rate": 2.9449602122015918e-05, + "loss": 0.5865156936645508, + "step": 46500 + }, + { + "epoch": 41.2026100420261, + "grad_norm": 0.516645610332489, + "learning_rate": 2.94053934571176e-05, + "loss": 0.5934408950805664, + "step": 46600 + }, + { + "epoch": 41.29108604291086, + "grad_norm": 0.5041747093200684, + "learning_rate": 2.9361184792219276e-05, + "loss": 0.5907432556152343, + "step": 46700 + }, + { + "epoch": 41.37956204379562, + "grad_norm": 0.5490337014198303, + "learning_rate": 2.9316976127320956e-05, + "loss": 0.597823486328125, + "step": 46800 + }, + { + "epoch": 41.468038044680384, + "grad_norm": 0.5256726741790771, + "learning_rate": 2.9272767462422633e-05, + "loss": 0.5979599380493164, + "step": 46900 + }, + { + "epoch": 41.55651404556514, + "grad_norm": 0.49856510758399963, + "learning_rate": 2.9228558797524314e-05, + "loss": 0.6000013732910157, + "step": 47000 + }, + { + "epoch": 41.6449900464499, + "grad_norm": 0.540030837059021, + "learning_rate": 2.9184350132625998e-05, + "loss": 0.6044590759277344, + "step": 47100 + }, + { + "epoch": 41.73346604733466, + "grad_norm": 0.5599401593208313, + "learning_rate": 2.9140141467727678e-05, + "loss": 0.6050262451171875, + "step": 47200 + }, + { + "epoch": 41.82194204821942, + "grad_norm": 0.5251536965370178, + "learning_rate": 2.9095932802829355e-05, + "loss": 0.6084031677246093, + "step": 47300 + }, + { + "epoch": 41.91041804910418, + "grad_norm": 0.6002141237258911, + "learning_rate": 2.9051724137931036e-05, + "loss": 0.6051164627075195, + "step": 47400 + }, + { + "epoch": 41.99889404998894, + "grad_norm": 0.5603448748588562, + "learning_rate": 2.9007515473032716e-05, + "loss": 0.6085728073120117, + "step": 47500 + }, + { + "epoch": 42.086706480867065, + "grad_norm": 0.5491044521331787, + "learning_rate": 2.8963748894783376e-05, + "loss": 0.576365966796875, + "step": 47600 + }, + { + "epoch": 42.175182481751825, + "grad_norm": 0.5698864459991455, + "learning_rate": 2.8919540229885063e-05, + "loss": 0.5807184219360352, + "step": 47700 + }, + { + "epoch": 42.263658482636586, + "grad_norm": 0.574418306350708, + "learning_rate": 2.887533156498674e-05, + "loss": 0.5844138717651367, + "step": 47800 + }, + { + "epoch": 42.35213448352135, + "grad_norm": 0.5167635083198547, + "learning_rate": 2.883112290008842e-05, + "loss": 0.5845949935913086, + "step": 47900 + }, + { + "epoch": 42.44061048440611, + "grad_norm": 0.5338764786720276, + "learning_rate": 2.8786914235190098e-05, + "loss": 0.5889351272583008, + "step": 48000 + }, + { + "epoch": 42.52908648529087, + "grad_norm": 0.5340341329574585, + "learning_rate": 2.8742705570291778e-05, + "loss": 0.5909807205200195, + "step": 48100 + }, + { + "epoch": 42.61756248617562, + "grad_norm": 0.5493650436401367, + "learning_rate": 2.869849690539346e-05, + "loss": 0.5914651107788086, + "step": 48200 + }, + { + "epoch": 42.70603848706038, + "grad_norm": 0.6116383075714111, + "learning_rate": 2.8654288240495136e-05, + "loss": 0.592667350769043, + "step": 48300 + }, + { + "epoch": 42.79451448794514, + "grad_norm": 0.5631881356239319, + "learning_rate": 2.861007957559682e-05, + "loss": 0.5997231674194335, + "step": 48400 + }, + { + "epoch": 42.882990488829904, + "grad_norm": 0.5806667804718018, + "learning_rate": 2.85658709106985e-05, + "loss": 0.5957838439941406, + "step": 48500 + }, + { + "epoch": 42.971466489714665, + "grad_norm": 0.5075005888938904, + "learning_rate": 2.852166224580018e-05, + "loss": 0.5975283432006836, + "step": 48600 + }, + { + "epoch": 43.05927892059279, + "grad_norm": 0.5606797337532043, + "learning_rate": 2.8477453580901857e-05, + "loss": 0.5800529861450195, + "step": 48700 + }, + { + "epoch": 43.14775492147755, + "grad_norm": 0.5353171229362488, + "learning_rate": 2.8433244916003538e-05, + "loss": 0.5706613540649415, + "step": 48800 + }, + { + "epoch": 43.23623092236231, + "grad_norm": 0.5479321479797363, + "learning_rate": 2.8389036251105215e-05, + "loss": 0.5755366516113282, + "step": 48900 + }, + { + "epoch": 43.32470692324707, + "grad_norm": 0.5302407741546631, + "learning_rate": 2.8344827586206895e-05, + "loss": 0.5780391311645507, + "step": 49000 + }, + { + "epoch": 43.41318292413183, + "grad_norm": 0.5579783320426941, + "learning_rate": 2.830061892130858e-05, + "loss": 0.5774256896972656, + "step": 49100 + }, + { + "epoch": 43.50165892501659, + "grad_norm": 0.5295524597167969, + "learning_rate": 2.825641025641026e-05, + "loss": 0.5812548828125, + "step": 49200 + }, + { + "epoch": 43.59013492590135, + "grad_norm": 0.492058664560318, + "learning_rate": 2.821220159151194e-05, + "loss": 0.5796434783935547, + "step": 49300 + }, + { + "epoch": 43.67861092678611, + "grad_norm": 0.48961371183395386, + "learning_rate": 2.8167992926613617e-05, + "loss": 0.5851696014404297, + "step": 49400 + }, + { + "epoch": 43.76708692767087, + "grad_norm": 0.5714001059532166, + "learning_rate": 2.8123784261715298e-05, + "loss": 0.5890889358520508, + "step": 49500 + }, + { + "epoch": 43.85556292855563, + "grad_norm": 0.537390410900116, + "learning_rate": 2.8079575596816975e-05, + "loss": 0.5881150054931641, + "step": 49600 + }, + { + "epoch": 43.94403892944039, + "grad_norm": 0.5263146758079529, + "learning_rate": 2.8035366931918655e-05, + "loss": 0.5868202209472656, + "step": 49700 + }, + { + "epoch": 44.03185136031851, + "grad_norm": 0.5009394288063049, + "learning_rate": 2.7991600353669322e-05, + "loss": 0.578513412475586, + "step": 49800 + }, + { + "epoch": 44.12032736120327, + "grad_norm": 0.5233928561210632, + "learning_rate": 2.7947391688771002e-05, + "loss": 0.5612442016601562, + "step": 49900 + }, + { + "epoch": 44.208803362088034, + "grad_norm": 0.5212284922599792, + "learning_rate": 2.7903183023872683e-05, + "loss": 0.5634622955322266, + "step": 50000 + }, + { + "epoch": 44.297279362972795, + "grad_norm": 0.5920892357826233, + "learning_rate": 2.785897435897436e-05, + "loss": 0.5646255111694336, + "step": 50100 + }, + { + "epoch": 44.385755363857555, + "grad_norm": 0.5463851690292358, + "learning_rate": 2.781476569407604e-05, + "loss": 0.5711798477172851, + "step": 50200 + }, + { + "epoch": 44.474231364742316, + "grad_norm": 0.513917863368988, + "learning_rate": 2.7770557029177717e-05, + "loss": 0.5757728576660156, + "step": 50300 + }, + { + "epoch": 44.56270736562708, + "grad_norm": 0.5791277289390564, + "learning_rate": 2.7726348364279398e-05, + "loss": 0.5719475173950195, + "step": 50400 + }, + { + "epoch": 44.65118336651183, + "grad_norm": 0.5394783616065979, + "learning_rate": 2.768213969938108e-05, + "loss": 0.5751088714599609, + "step": 50500 + }, + { + "epoch": 44.73965936739659, + "grad_norm": 0.5699083805084229, + "learning_rate": 2.7637931034482762e-05, + "loss": 0.5771770095825195, + "step": 50600 + }, + { + "epoch": 44.82813536828135, + "grad_norm": 0.5610557794570923, + "learning_rate": 2.759372236958444e-05, + "loss": 0.5790963745117188, + "step": 50700 + }, + { + "epoch": 44.91661136916611, + "grad_norm": 0.5751321911811829, + "learning_rate": 2.754951370468612e-05, + "loss": 0.5781265258789062, + "step": 50800 + }, + { + "epoch": 45.004423800044236, + "grad_norm": 0.4831089377403259, + "learning_rate": 2.75053050397878e-05, + "loss": 0.5815114593505859, + "step": 50900 + }, + { + "epoch": 45.092899800929, + "grad_norm": 0.5138679146766663, + "learning_rate": 2.7461096374889477e-05, + "loss": 0.5530588912963867, + "step": 51000 + }, + { + "epoch": 45.18137580181376, + "grad_norm": 0.5327210426330566, + "learning_rate": 2.7416887709991158e-05, + "loss": 0.5549150085449219, + "step": 51100 + }, + { + "epoch": 45.26985180269852, + "grad_norm": 0.5089725255966187, + "learning_rate": 2.737267904509284e-05, + "loss": 0.5587585830688476, + "step": 51200 + }, + { + "epoch": 45.35832780358328, + "grad_norm": 0.5307016372680664, + "learning_rate": 2.7328470380194522e-05, + "loss": 0.5582825851440429, + "step": 51300 + }, + { + "epoch": 45.44680380446804, + "grad_norm": 0.6189883351325989, + "learning_rate": 2.72842617152962e-05, + "loss": 0.561285514831543, + "step": 51400 + }, + { + "epoch": 45.5352798053528, + "grad_norm": 0.5789527893066406, + "learning_rate": 2.724005305039788e-05, + "loss": 0.5647828674316406, + "step": 51500 + }, + { + "epoch": 45.62375580623756, + "grad_norm": 0.553713321685791, + "learning_rate": 2.719584438549956e-05, + "loss": 0.5659704208374023, + "step": 51600 + }, + { + "epoch": 45.712231807122315, + "grad_norm": 0.5502424240112305, + "learning_rate": 2.7151635720601237e-05, + "loss": 0.5685673522949218, + "step": 51700 + }, + { + "epoch": 45.800707808007076, + "grad_norm": 0.6388786435127258, + "learning_rate": 2.7107427055702917e-05, + "loss": 0.569713134765625, + "step": 51800 + }, + { + "epoch": 45.889183808891836, + "grad_norm": 0.5839136242866516, + "learning_rate": 2.70632183908046e-05, + "loss": 0.5713850784301758, + "step": 51900 + }, + { + "epoch": 45.9776598097766, + "grad_norm": 0.5872997641563416, + "learning_rate": 2.701900972590628e-05, + "loss": 0.5713462448120117, + "step": 52000 + }, + { + "epoch": 46.06547224065472, + "grad_norm": 0.5111995339393616, + "learning_rate": 2.697524314765694e-05, + "loss": 0.5514000701904297, + "step": 52100 + }, + { + "epoch": 46.15394824153948, + "grad_norm": 0.5677483677864075, + "learning_rate": 2.6931034482758622e-05, + "loss": 0.5458650207519531, + "step": 52200 + }, + { + "epoch": 46.24242424242424, + "grad_norm": 0.5756211876869202, + "learning_rate": 2.68868258178603e-05, + "loss": 0.5480696868896484, + "step": 52300 + }, + { + "epoch": 46.330900243309, + "grad_norm": 0.6053562164306641, + "learning_rate": 2.684261715296198e-05, + "loss": 0.5525957870483399, + "step": 52400 + }, + { + "epoch": 46.419376244193764, + "grad_norm": 0.5155165791511536, + "learning_rate": 2.6798408488063663e-05, + "loss": 0.5557857513427734, + "step": 52500 + }, + { + "epoch": 46.507852245078524, + "grad_norm": 0.5804229378700256, + "learning_rate": 2.6754199823165344e-05, + "loss": 0.5559201049804687, + "step": 52600 + }, + { + "epoch": 46.596328245963285, + "grad_norm": 0.5536544919013977, + "learning_rate": 2.6709991158267024e-05, + "loss": 0.5591853713989258, + "step": 52700 + }, + { + "epoch": 46.684804246848046, + "grad_norm": 0.603621244430542, + "learning_rate": 2.66657824933687e-05, + "loss": 0.5596856307983399, + "step": 52800 + }, + { + "epoch": 46.7732802477328, + "grad_norm": 0.5604232549667358, + "learning_rate": 2.662157382847038e-05, + "loss": 0.5584945678710938, + "step": 52900 + }, + { + "epoch": 46.86175624861756, + "grad_norm": 0.5974889993667603, + "learning_rate": 2.657736516357206e-05, + "loss": 0.5582848358154296, + "step": 53000 + }, + { + "epoch": 46.95023224950232, + "grad_norm": 0.5440397262573242, + "learning_rate": 2.653315649867374e-05, + "loss": 0.5634394454956054, + "step": 53100 + }, + { + "epoch": 47.038044680380445, + "grad_norm": 0.5610032081604004, + "learning_rate": 2.6488947833775423e-05, + "loss": 0.5574512481689453, + "step": 53200 + }, + { + "epoch": 47.126520681265205, + "grad_norm": 0.607563853263855, + "learning_rate": 2.6444739168877104e-05, + "loss": 0.5387821197509766, + "step": 53300 + }, + { + "epoch": 47.214996682149966, + "grad_norm": 0.5836204290390015, + "learning_rate": 2.640053050397878e-05, + "loss": 0.5401793670654297, + "step": 53400 + }, + { + "epoch": 47.30347268303473, + "grad_norm": 0.5325765013694763, + "learning_rate": 2.635632183908046e-05, + "loss": 0.5437668991088868, + "step": 53500 + }, + { + "epoch": 47.39194868391949, + "grad_norm": 0.5740872621536255, + "learning_rate": 2.631211317418214e-05, + "loss": 0.5443574142456055, + "step": 53600 + }, + { + "epoch": 47.48042468480425, + "grad_norm": 0.5562124848365784, + "learning_rate": 2.626790450928382e-05, + "loss": 0.5469727325439453, + "step": 53700 + }, + { + "epoch": 47.56890068568901, + "grad_norm": 0.5893000960350037, + "learning_rate": 2.62236958443855e-05, + "loss": 0.5502291107177735, + "step": 53800 + }, + { + "epoch": 47.65737668657377, + "grad_norm": 0.6538830995559692, + "learning_rate": 2.6179487179487183e-05, + "loss": 0.552915382385254, + "step": 53900 + }, + { + "epoch": 47.74585268745853, + "grad_norm": 0.5710316300392151, + "learning_rate": 2.6135278514588863e-05, + "loss": 0.5510491943359375, + "step": 54000 + }, + { + "epoch": 47.834328688343284, + "grad_norm": 0.5235297083854675, + "learning_rate": 2.609106984969054e-05, + "loss": 0.5519483184814453, + "step": 54100 + }, + { + "epoch": 47.922804689228045, + "grad_norm": 0.6048061847686768, + "learning_rate": 2.604686118479222e-05, + "loss": 0.5567644882202148, + "step": 54200 + }, + { + "epoch": 48.01061712010617, + "grad_norm": 0.5698108077049255, + "learning_rate": 2.6003094606542884e-05, + "loss": 0.5547234344482422, + "step": 54300 + }, + { + "epoch": 48.09909312099093, + "grad_norm": 0.49287617206573486, + "learning_rate": 2.595888594164456e-05, + "loss": 0.5280181884765625, + "step": 54400 + }, + { + "epoch": 48.18756912187569, + "grad_norm": 0.5525228977203369, + "learning_rate": 2.591467727674624e-05, + "loss": 0.5349401092529297, + "step": 54500 + }, + { + "epoch": 48.27604512276045, + "grad_norm": 0.5026161670684814, + "learning_rate": 2.5870468611847925e-05, + "loss": 0.5378446578979492, + "step": 54600 + }, + { + "epoch": 48.36452112364521, + "grad_norm": 0.5191828608512878, + "learning_rate": 2.5826259946949606e-05, + "loss": 0.5382429122924804, + "step": 54700 + }, + { + "epoch": 48.45299712452997, + "grad_norm": 0.5171953439712524, + "learning_rate": 2.5782051282051283e-05, + "loss": 0.5364204406738281, + "step": 54800 + }, + { + "epoch": 48.54147312541473, + "grad_norm": 0.5302397012710571, + "learning_rate": 2.5737842617152963e-05, + "loss": 0.5405542373657226, + "step": 54900 + }, + { + "epoch": 48.62994912629949, + "grad_norm": 0.5187925100326538, + "learning_rate": 2.569363395225464e-05, + "loss": 0.5436551284790039, + "step": 55000 + }, + { + "epoch": 48.718425127184254, + "grad_norm": 0.5707531571388245, + "learning_rate": 2.564942528735632e-05, + "loss": 0.5467363357543945, + "step": 55100 + }, + { + "epoch": 48.806901128069015, + "grad_norm": 0.5525254607200623, + "learning_rate": 2.5605216622458e-05, + "loss": 0.5466318130493164, + "step": 55200 + }, + { + "epoch": 48.89537712895377, + "grad_norm": 0.5896828174591064, + "learning_rate": 2.5561007957559685e-05, + "loss": 0.5489627075195312, + "step": 55300 + }, + { + "epoch": 48.98385312983853, + "grad_norm": 0.593329131603241, + "learning_rate": 2.5516799292661366e-05, + "loss": 0.5492449569702148, + "step": 55400 + }, + { + "epoch": 49.07166556071665, + "grad_norm": 0.45202845335006714, + "learning_rate": 2.5472590627763043e-05, + "loss": 0.5282985687255859, + "step": 55500 + }, + { + "epoch": 49.160141561601414, + "grad_norm": 0.45874515175819397, + "learning_rate": 2.5428381962864723e-05, + "loss": 0.5267356872558594, + "step": 55600 + }, + { + "epoch": 49.248617562486174, + "grad_norm": 0.5499678254127502, + "learning_rate": 2.53841732979664e-05, + "loss": 0.5255993270874023, + "step": 55700 + }, + { + "epoch": 49.337093563370935, + "grad_norm": 0.5569108724594116, + "learning_rate": 2.533996463306808e-05, + "loss": 0.5299503707885742, + "step": 55800 + }, + { + "epoch": 49.425569564255696, + "grad_norm": 0.5677438974380493, + "learning_rate": 2.529575596816976e-05, + "loss": 0.5316028594970703, + "step": 55900 + }, + { + "epoch": 49.51404556514046, + "grad_norm": 0.5888075828552246, + "learning_rate": 2.5251547303271445e-05, + "loss": 0.5354986953735351, + "step": 56000 + }, + { + "epoch": 49.60252156602522, + "grad_norm": 0.5639616250991821, + "learning_rate": 2.5207338638373122e-05, + "loss": 0.5369997787475586, + "step": 56100 + }, + { + "epoch": 49.69099756690998, + "grad_norm": 0.509158194065094, + "learning_rate": 2.5163129973474803e-05, + "loss": 0.536979866027832, + "step": 56200 + }, + { + "epoch": 49.77947356779474, + "grad_norm": 0.5412595868110657, + "learning_rate": 2.5118921308576483e-05, + "loss": 0.5382201004028321, + "step": 56300 + }, + { + "epoch": 49.86794956867949, + "grad_norm": 0.6052098274230957, + "learning_rate": 2.507471264367816e-05, + "loss": 0.5390504837036133, + "step": 56400 + }, + { + "epoch": 49.95642556956425, + "grad_norm": 0.5019105076789856, + "learning_rate": 2.503050397877984e-05, + "loss": 0.5391928482055665, + "step": 56500 + }, + { + "epoch": 50.04423800044238, + "grad_norm": 0.5133684873580933, + "learning_rate": 2.4986737400530504e-05, + "loss": 0.529360580444336, + "step": 56600 + }, + { + "epoch": 50.13271400132714, + "grad_norm": 0.5742220878601074, + "learning_rate": 2.4942528735632184e-05, + "loss": 0.5150651550292968, + "step": 56700 + }, + { + "epoch": 50.2211900022119, + "grad_norm": 0.5389617681503296, + "learning_rate": 2.4898320070733865e-05, + "loss": 0.5204330444335937, + "step": 56800 + }, + { + "epoch": 50.30966600309666, + "grad_norm": 0.5938611030578613, + "learning_rate": 2.4854111405835545e-05, + "loss": 0.5252494049072266, + "step": 56900 + }, + { + "epoch": 50.39814200398142, + "grad_norm": 0.5617892146110535, + "learning_rate": 2.4809902740937225e-05, + "loss": 0.5260490036010742, + "step": 57000 + }, + { + "epoch": 50.48661800486618, + "grad_norm": 0.6076000332832336, + "learning_rate": 2.4765694076038906e-05, + "loss": 0.5278256607055664, + "step": 57100 + }, + { + "epoch": 50.57509400575094, + "grad_norm": 0.5321983695030212, + "learning_rate": 2.4721485411140586e-05, + "loss": 0.5286510467529297, + "step": 57200 + }, + { + "epoch": 50.6635700066357, + "grad_norm": 0.614532470703125, + "learning_rate": 2.4677276746242263e-05, + "loss": 0.5313225936889648, + "step": 57300 + }, + { + "epoch": 50.75204600752046, + "grad_norm": 0.5830910801887512, + "learning_rate": 2.4633068081343944e-05, + "loss": 0.5300481796264649, + "step": 57400 + }, + { + "epoch": 50.84052200840522, + "grad_norm": 0.5918353199958801, + "learning_rate": 2.4588859416445624e-05, + "loss": 0.5337774276733398, + "step": 57500 + }, + { + "epoch": 50.92899800928998, + "grad_norm": 0.5791705846786499, + "learning_rate": 2.4544650751547305e-05, + "loss": 0.5316382598876953, + "step": 57600 + }, + { + "epoch": 51.01681044016811, + "grad_norm": 0.521299421787262, + "learning_rate": 2.4500442086648985e-05, + "loss": 0.5307102203369141, + "step": 57700 + }, + { + "epoch": 51.10528644105286, + "grad_norm": 0.5163324475288391, + "learning_rate": 2.4456233421750666e-05, + "loss": 0.5103409576416016, + "step": 57800 + }, + { + "epoch": 51.19376244193762, + "grad_norm": 0.5436499714851379, + "learning_rate": 2.4412024756852346e-05, + "loss": 0.5144682693481445, + "step": 57900 + }, + { + "epoch": 51.28223844282238, + "grad_norm": 0.5268517136573792, + "learning_rate": 2.4367816091954023e-05, + "loss": 0.5170879364013672, + "step": 58000 + }, + { + "epoch": 51.37071444370714, + "grad_norm": 0.5523056983947754, + "learning_rate": 2.4323607427055704e-05, + "loss": 0.5176148223876953, + "step": 58100 + }, + { + "epoch": 51.459190444591904, + "grad_norm": 0.5733488202095032, + "learning_rate": 2.4279398762157384e-05, + "loss": 0.5213256454467774, + "step": 58200 + }, + { + "epoch": 51.547666445476665, + "grad_norm": 0.6002511978149414, + "learning_rate": 2.4235190097259065e-05, + "loss": 0.5213332748413086, + "step": 58300 + }, + { + "epoch": 51.636142446361426, + "grad_norm": 0.5866407155990601, + "learning_rate": 2.4190981432360742e-05, + "loss": 0.5219316101074218, + "step": 58400 + }, + { + "epoch": 51.724618447246186, + "grad_norm": 0.620346188545227, + "learning_rate": 2.4146772767462426e-05, + "loss": 0.5251021575927735, + "step": 58500 + }, + { + "epoch": 51.81309444813095, + "grad_norm": 0.5428482294082642, + "learning_rate": 2.4102564102564103e-05, + "loss": 0.5254843521118164, + "step": 58600 + }, + { + "epoch": 51.90157044901571, + "grad_norm": 0.6146367192268372, + "learning_rate": 2.4058355437665783e-05, + "loss": 0.5262796401977539, + "step": 58700 + }, + { + "epoch": 51.99004644990046, + "grad_norm": 0.6002848148345947, + "learning_rate": 2.4014146772767464e-05, + "loss": 0.5279874801635742, + "step": 58800 + }, + { + "epoch": 52.07785888077859, + "grad_norm": 0.5608682036399841, + "learning_rate": 2.3970380194518127e-05, + "loss": 0.5045627975463867, + "step": 58900 + }, + { + "epoch": 52.166334881663346, + "grad_norm": 0.5034646391868591, + "learning_rate": 2.3926171529619807e-05, + "loss": 0.5071027755737305, + "step": 59000 + }, + { + "epoch": 52.25481088254811, + "grad_norm": 0.5443050861358643, + "learning_rate": 2.3881962864721484e-05, + "loss": 0.5105178451538086, + "step": 59100 + }, + { + "epoch": 52.34328688343287, + "grad_norm": 0.5455040335655212, + "learning_rate": 2.3837754199823168e-05, + "loss": 0.5111968612670899, + "step": 59200 + }, + { + "epoch": 52.43176288431763, + "grad_norm": 0.5393562912940979, + "learning_rate": 2.3793545534924845e-05, + "loss": 0.5109628295898437, + "step": 59300 + }, + { + "epoch": 52.52023888520239, + "grad_norm": 0.5572716593742371, + "learning_rate": 2.3749336870026526e-05, + "loss": 0.5128989791870118, + "step": 59400 + }, + { + "epoch": 52.60871488608715, + "grad_norm": 0.5157389640808105, + "learning_rate": 2.3705128205128206e-05, + "loss": 0.5179262924194336, + "step": 59500 + }, + { + "epoch": 52.69719088697191, + "grad_norm": 0.5245424509048462, + "learning_rate": 2.3660919540229886e-05, + "loss": 0.5182614517211914, + "step": 59600 + }, + { + "epoch": 52.78566688785667, + "grad_norm": 0.6405171155929565, + "learning_rate": 2.3616710875331567e-05, + "loss": 0.5196902084350586, + "step": 59700 + }, + { + "epoch": 52.87414288874143, + "grad_norm": 0.5531449317932129, + "learning_rate": 2.3572502210433244e-05, + "loss": 0.5213772583007813, + "step": 59800 + }, + { + "epoch": 52.96261888962619, + "grad_norm": 0.5440499186515808, + "learning_rate": 2.3528293545534928e-05, + "loss": 0.5214180755615234, + "step": 59900 + }, + { + "epoch": 53.050431320504316, + "grad_norm": 0.5454942584037781, + "learning_rate": 2.3484084880636605e-05, + "loss": 0.5082747268676758, + "step": 60000 + }, + { + "epoch": 53.13890732138907, + "grad_norm": 0.6037677526473999, + "learning_rate": 2.3439876215738285e-05, + "loss": 0.4992447662353516, + "step": 60100 + }, + { + "epoch": 53.22738332227383, + "grad_norm": 0.6089978218078613, + "learning_rate": 2.3395667550839966e-05, + "loss": 0.501078987121582, + "step": 60200 + }, + { + "epoch": 53.31585932315859, + "grad_norm": 0.5581852793693542, + "learning_rate": 2.3351458885941646e-05, + "loss": 0.50614990234375, + "step": 60300 + }, + { + "epoch": 53.40433532404335, + "grad_norm": 0.5539824366569519, + "learning_rate": 2.3307250221043327e-05, + "loss": 0.5036640548706055, + "step": 60400 + }, + { + "epoch": 53.49281132492811, + "grad_norm": 0.5434619784355164, + "learning_rate": 2.3263041556145004e-05, + "loss": 0.5078977966308593, + "step": 60500 + }, + { + "epoch": 53.58128732581287, + "grad_norm": 0.5596204400062561, + "learning_rate": 2.3218832891246688e-05, + "loss": 0.5105896377563477, + "step": 60600 + }, + { + "epoch": 53.669763326697634, + "grad_norm": 0.5933516621589661, + "learning_rate": 2.3174624226348365e-05, + "loss": 0.512298583984375, + "step": 60700 + }, + { + "epoch": 53.758239327582395, + "grad_norm": 0.5938782095909119, + "learning_rate": 2.3130415561450045e-05, + "loss": 0.5136246871948242, + "step": 60800 + }, + { + "epoch": 53.846715328467155, + "grad_norm": 0.5711195468902588, + "learning_rate": 2.3086206896551726e-05, + "loss": 0.5137527465820313, + "step": 60900 + }, + { + "epoch": 53.935191329351916, + "grad_norm": 0.5345974564552307, + "learning_rate": 2.3041998231653406e-05, + "loss": 0.5148337173461914, + "step": 61000 + }, + { + "epoch": 54.02300376023004, + "grad_norm": 0.5462290644645691, + "learning_rate": 2.299823165340407e-05, + "loss": 0.5070685577392579, + "step": 61100 + }, + { + "epoch": 54.1114797611148, + "grad_norm": 0.5135403275489807, + "learning_rate": 2.295402298850575e-05, + "loss": 0.49042961120605466, + "step": 61200 + }, + { + "epoch": 54.199955761999554, + "grad_norm": 0.5753411650657654, + "learning_rate": 2.290981432360743e-05, + "loss": 0.49762104034423826, + "step": 61300 + }, + { + "epoch": 54.288431762884315, + "grad_norm": 0.5738378167152405, + "learning_rate": 2.2865605658709107e-05, + "loss": 0.4983011245727539, + "step": 61400 + }, + { + "epoch": 54.376907763769076, + "grad_norm": 0.5234966278076172, + "learning_rate": 2.2821396993810788e-05, + "loss": 0.5005590057373047, + "step": 61500 + }, + { + "epoch": 54.465383764653836, + "grad_norm": 0.5313852429389954, + "learning_rate": 2.2777188328912468e-05, + "loss": 0.503372917175293, + "step": 61600 + }, + { + "epoch": 54.5538597655386, + "grad_norm": 0.49838191270828247, + "learning_rate": 2.273297966401415e-05, + "loss": 0.5020324325561524, + "step": 61700 + }, + { + "epoch": 54.64233576642336, + "grad_norm": 0.5403088927268982, + "learning_rate": 2.2688770999115826e-05, + "loss": 0.5049329376220704, + "step": 61800 + }, + { + "epoch": 54.73081176730812, + "grad_norm": 0.46723249554634094, + "learning_rate": 2.264456233421751e-05, + "loss": 0.5059401321411133, + "step": 61900 + }, + { + "epoch": 54.81928776819288, + "grad_norm": 0.5539482235908508, + "learning_rate": 2.2600353669319187e-05, + "loss": 0.5069823837280274, + "step": 62000 + }, + { + "epoch": 54.90776376907764, + "grad_norm": 0.5377270579338074, + "learning_rate": 2.2556145004420867e-05, + "loss": 0.508377685546875, + "step": 62100 + }, + { + "epoch": 54.9962397699624, + "grad_norm": 0.6182072162628174, + "learning_rate": 2.2511936339522548e-05, + "loss": 0.5095947647094726, + "step": 62200 + }, + { + "epoch": 55.084052200840524, + "grad_norm": 0.5139372944831848, + "learning_rate": 2.2467727674624228e-05, + "loss": 0.4896272277832031, + "step": 62300 + }, + { + "epoch": 55.172528201725285, + "grad_norm": 0.5812121629714966, + "learning_rate": 2.242351900972591e-05, + "loss": 0.49099037170410154, + "step": 62400 + }, + { + "epoch": 55.26100420261004, + "grad_norm": 0.5491729378700256, + "learning_rate": 2.2379310344827586e-05, + "loss": 0.4927267074584961, + "step": 62500 + }, + { + "epoch": 55.3494802034948, + "grad_norm": 0.5951135158538818, + "learning_rate": 2.233510167992927e-05, + "loss": 0.49305023193359376, + "step": 62600 + }, + { + "epoch": 55.43795620437956, + "grad_norm": 0.5938172340393066, + "learning_rate": 2.2290893015030946e-05, + "loss": 0.49482032775878904, + "step": 62700 + }, + { + "epoch": 55.52643220526432, + "grad_norm": 0.5288723111152649, + "learning_rate": 2.2246684350132627e-05, + "loss": 0.4974822998046875, + "step": 62800 + }, + { + "epoch": 55.61490820614908, + "grad_norm": 0.5663400888442993, + "learning_rate": 2.2202475685234307e-05, + "loss": 0.498828239440918, + "step": 62900 + }, + { + "epoch": 55.70338420703384, + "grad_norm": 0.5939375162124634, + "learning_rate": 2.2158267020335988e-05, + "loss": 0.5004440307617187, + "step": 63000 + }, + { + "epoch": 55.7918602079186, + "grad_norm": 0.628774106502533, + "learning_rate": 2.2114058355437668e-05, + "loss": 0.5034025573730468, + "step": 63100 + }, + { + "epoch": 55.880336208803364, + "grad_norm": 0.6160352826118469, + "learning_rate": 2.2069849690539345e-05, + "loss": 0.5042695236206055, + "step": 63200 + }, + { + "epoch": 55.968812209688124, + "grad_norm": 0.5891813635826111, + "learning_rate": 2.202564102564103e-05, + "loss": 0.5021416473388672, + "step": 63300 + }, + { + "epoch": 56.05662464056625, + "grad_norm": 0.5297622680664062, + "learning_rate": 2.198187444739169e-05, + "loss": 0.4904953384399414, + "step": 63400 + }, + { + "epoch": 56.14510064145101, + "grad_norm": 0.5649422407150269, + "learning_rate": 2.193766578249337e-05, + "loss": 0.485706672668457, + "step": 63500 + }, + { + "epoch": 56.23357664233577, + "grad_norm": 0.6352797150611877, + "learning_rate": 2.189345711759505e-05, + "loss": 0.4867672348022461, + "step": 63600 + }, + { + "epoch": 56.32205264322052, + "grad_norm": 0.5789678692817688, + "learning_rate": 2.184924845269673e-05, + "loss": 0.48802379608154295, + "step": 63700 + }, + { + "epoch": 56.410528644105284, + "grad_norm": 0.6075431704521179, + "learning_rate": 2.180503978779841e-05, + "loss": 0.4910835647583008, + "step": 63800 + }, + { + "epoch": 56.499004644990045, + "grad_norm": 0.5858777165412903, + "learning_rate": 2.1760831122900088e-05, + "loss": 0.4906935119628906, + "step": 63900 + }, + { + "epoch": 56.587480645874805, + "grad_norm": 0.5143148899078369, + "learning_rate": 2.171662245800177e-05, + "loss": 0.49202545166015627, + "step": 64000 + }, + { + "epoch": 56.675956646759566, + "grad_norm": 0.5330872535705566, + "learning_rate": 2.167241379310345e-05, + "loss": 0.4929664611816406, + "step": 64100 + }, + { + "epoch": 56.76443264764433, + "grad_norm": 0.5530017018318176, + "learning_rate": 2.162820512820513e-05, + "loss": 0.49355899810791015, + "step": 64200 + }, + { + "epoch": 56.85290864852909, + "grad_norm": 0.5891992449760437, + "learning_rate": 2.158399646330681e-05, + "loss": 0.49566749572753904, + "step": 64300 + }, + { + "epoch": 56.94138464941385, + "grad_norm": 0.5289095044136047, + "learning_rate": 2.153978779840849e-05, + "loss": 0.4987163543701172, + "step": 64400 + }, + { + "epoch": 57.02919708029197, + "grad_norm": 0.5679471492767334, + "learning_rate": 2.1495579133510167e-05, + "loss": 0.49003833770751953, + "step": 64500 + }, + { + "epoch": 57.11767308117673, + "grad_norm": 0.5432245135307312, + "learning_rate": 2.1451370468611848e-05, + "loss": 0.47765895843505857, + "step": 64600 + }, + { + "epoch": 57.20614908206149, + "grad_norm": 0.5474491119384766, + "learning_rate": 2.1407161803713528e-05, + "loss": 0.4797785568237305, + "step": 64700 + }, + { + "epoch": 57.294625082946254, + "grad_norm": 0.537804126739502, + "learning_rate": 2.136295313881521e-05, + "loss": 0.4833247756958008, + "step": 64800 + }, + { + "epoch": 57.38310108383101, + "grad_norm": 0.572169840335846, + "learning_rate": 2.131874447391689e-05, + "loss": 0.4836674118041992, + "step": 64900 + }, + { + "epoch": 57.47157708471577, + "grad_norm": 0.5344268679618835, + "learning_rate": 2.127453580901857e-05, + "loss": 0.48507492065429686, + "step": 65000 + }, + { + "epoch": 57.56005308560053, + "grad_norm": 0.5664619207382202, + "learning_rate": 2.123032714412025e-05, + "loss": 0.488138427734375, + "step": 65100 + }, + { + "epoch": 57.64852908648529, + "grad_norm": 0.5902144312858582, + "learning_rate": 2.1186118479221927e-05, + "loss": 0.48771110534667966, + "step": 65200 + }, + { + "epoch": 57.73700508737005, + "grad_norm": 0.562929630279541, + "learning_rate": 2.1141909814323607e-05, + "loss": 0.4875301742553711, + "step": 65300 + }, + { + "epoch": 57.82548108825481, + "grad_norm": 0.5995573997497559, + "learning_rate": 2.1097701149425288e-05, + "loss": 0.49271678924560547, + "step": 65400 + }, + { + "epoch": 57.91395708913957, + "grad_norm": 0.6624785661697388, + "learning_rate": 2.105349248452697e-05, + "loss": 0.4920695877075195, + "step": 65500 + }, + { + "epoch": 58.001769520017696, + "grad_norm": 0.5402753353118896, + "learning_rate": 2.100928381962865e-05, + "loss": 0.49431739807128905, + "step": 65600 + }, + { + "epoch": 58.09024552090246, + "grad_norm": 0.5145826935768127, + "learning_rate": 2.096507515473033e-05, + "loss": 0.47089763641357424, + "step": 65700 + }, + { + "epoch": 58.17872152178722, + "grad_norm": 0.5931445360183716, + "learning_rate": 2.092086648983201e-05, + "loss": 0.4758612060546875, + "step": 65800 + }, + { + "epoch": 58.26719752267198, + "grad_norm": 0.5388639569282532, + "learning_rate": 2.0876657824933687e-05, + "loss": 0.47640296936035154, + "step": 65900 + }, + { + "epoch": 58.35567352355674, + "grad_norm": 0.5639314651489258, + "learning_rate": 2.0832449160035367e-05, + "loss": 0.482130241394043, + "step": 66000 + }, + { + "epoch": 58.44414952444149, + "grad_norm": 0.5535529851913452, + "learning_rate": 2.0788240495137048e-05, + "loss": 0.47872936248779296, + "step": 66100 + }, + { + "epoch": 58.53262552532625, + "grad_norm": 0.5827674865722656, + "learning_rate": 2.0744031830238728e-05, + "loss": 0.4842064666748047, + "step": 66200 + }, + { + "epoch": 58.621101526211014, + "grad_norm": 0.5696784257888794, + "learning_rate": 2.0699823165340405e-05, + "loss": 0.4816234588623047, + "step": 66300 + }, + { + "epoch": 58.709577527095774, + "grad_norm": 0.5349422097206116, + "learning_rate": 2.065561450044209e-05, + "loss": 0.48554718017578125, + "step": 66400 + }, + { + "epoch": 58.798053527980535, + "grad_norm": 0.636604368686676, + "learning_rate": 2.0611405835543766e-05, + "loss": 0.4876006317138672, + "step": 66500 + }, + { + "epoch": 58.886529528865296, + "grad_norm": 0.6060304045677185, + "learning_rate": 2.0567197170645447e-05, + "loss": 0.4887725830078125, + "step": 66600 + }, + { + "epoch": 58.97500552975006, + "grad_norm": 0.6087244749069214, + "learning_rate": 2.0522988505747127e-05, + "loss": 0.4868877410888672, + "step": 66700 + }, + { + "epoch": 59.06281796062818, + "grad_norm": 0.49913933873176575, + "learning_rate": 2.047922192749779e-05, + "loss": 0.4722119140625, + "step": 66800 + }, + { + "epoch": 59.15129396151294, + "grad_norm": 0.4722621738910675, + "learning_rate": 2.043501326259947e-05, + "loss": 0.47009246826171874, + "step": 66900 + }, + { + "epoch": 59.2397699623977, + "grad_norm": 0.5657719373703003, + "learning_rate": 2.0390804597701148e-05, + "loss": 0.472298583984375, + "step": 67000 + }, + { + "epoch": 59.32824596328246, + "grad_norm": 0.5761541724205017, + "learning_rate": 2.034659593280283e-05, + "loss": 0.4723761749267578, + "step": 67100 + }, + { + "epoch": 59.416721964167216, + "grad_norm": 0.6316192150115967, + "learning_rate": 2.030238726790451e-05, + "loss": 0.47409954071044924, + "step": 67200 + }, + { + "epoch": 59.50519796505198, + "grad_norm": 0.6090986132621765, + "learning_rate": 2.025817860300619e-05, + "loss": 0.4764304351806641, + "step": 67300 + }, + { + "epoch": 59.59367396593674, + "grad_norm": 0.5362303256988525, + "learning_rate": 2.021396993810787e-05, + "loss": 0.4776358795166016, + "step": 67400 + }, + { + "epoch": 59.6821499668215, + "grad_norm": 0.553995668888092, + "learning_rate": 2.016976127320955e-05, + "loss": 0.4807791519165039, + "step": 67500 + }, + { + "epoch": 59.77062596770626, + "grad_norm": 0.5615981221199036, + "learning_rate": 2.012555260831123e-05, + "loss": 0.48062610626220703, + "step": 67600 + }, + { + "epoch": 59.85910196859102, + "grad_norm": 0.5885509252548218, + "learning_rate": 2.0081343943412908e-05, + "loss": 0.48244945526123045, + "step": 67700 + }, + { + "epoch": 59.94757796947578, + "grad_norm": 0.6052979230880737, + "learning_rate": 2.003713527851459e-05, + "loss": 0.4803206634521484, + "step": 67800 + }, + { + "epoch": 60.035390400353904, + "grad_norm": 0.5579769015312195, + "learning_rate": 1.999292661361627e-05, + "loss": 0.4752388000488281, + "step": 67900 + }, + { + "epoch": 60.123866401238665, + "grad_norm": 0.478289395570755, + "learning_rate": 1.994871794871795e-05, + "loss": 0.4645302200317383, + "step": 68000 + }, + { + "epoch": 60.212342402123426, + "grad_norm": 0.5545957088470459, + "learning_rate": 1.990450928381963e-05, + "loss": 0.46837158203125, + "step": 68100 + }, + { + "epoch": 60.300818403008186, + "grad_norm": 0.524662435054779, + "learning_rate": 1.986030061892131e-05, + "loss": 0.4679202651977539, + "step": 68200 + }, + { + "epoch": 60.38929440389295, + "grad_norm": 0.6101793646812439, + "learning_rate": 1.981609195402299e-05, + "loss": 0.46956668853759764, + "step": 68300 + }, + { + "epoch": 60.4777704047777, + "grad_norm": 0.5040204524993896, + "learning_rate": 1.9771883289124667e-05, + "loss": 0.4706681060791016, + "step": 68400 + }, + { + "epoch": 60.56624640566246, + "grad_norm": 0.563679039478302, + "learning_rate": 1.972767462422635e-05, + "loss": 0.471558837890625, + "step": 68500 + }, + { + "epoch": 60.65472240654722, + "grad_norm": 0.5668439865112305, + "learning_rate": 1.9683465959328028e-05, + "loss": 0.4727770233154297, + "step": 68600 + }, + { + "epoch": 60.74319840743198, + "grad_norm": 0.6011987328529358, + "learning_rate": 1.963925729442971e-05, + "loss": 0.47645427703857424, + "step": 68700 + }, + { + "epoch": 60.83167440831674, + "grad_norm": 0.6392132043838501, + "learning_rate": 1.959504862953139e-05, + "loss": 0.4765947341918945, + "step": 68800 + }, + { + "epoch": 60.920150409201504, + "grad_norm": 0.6424957513809204, + "learning_rate": 1.955083996463307e-05, + "loss": 0.4768808746337891, + "step": 68900 + }, + { + "epoch": 61.00796284007963, + "grad_norm": 0.5341200828552246, + "learning_rate": 1.9507073386383733e-05, + "loss": 0.4776120376586914, + "step": 69000 + }, + { + "epoch": 61.09643884096439, + "grad_norm": 0.622922956943512, + "learning_rate": 1.9462864721485413e-05, + "loss": 0.46137203216552736, + "step": 69100 + }, + { + "epoch": 61.18491484184915, + "grad_norm": 0.5679436326026917, + "learning_rate": 1.9418656056587094e-05, + "loss": 0.46096920013427733, + "step": 69200 + }, + { + "epoch": 61.27339084273391, + "grad_norm": 0.5972808003425598, + "learning_rate": 1.937444739168877e-05, + "loss": 0.46090087890625, + "step": 69300 + }, + { + "epoch": 61.36186684361867, + "grad_norm": 0.5825915336608887, + "learning_rate": 1.933023872679045e-05, + "loss": 0.46518352508544925, + "step": 69400 + }, + { + "epoch": 61.45034284450343, + "grad_norm": 0.48754116892814636, + "learning_rate": 1.9286030061892132e-05, + "loss": 0.4664886856079102, + "step": 69500 + }, + { + "epoch": 61.538818845388185, + "grad_norm": 0.5583191514015198, + "learning_rate": 1.9241821396993812e-05, + "loss": 0.46886295318603516, + "step": 69600 + }, + { + "epoch": 61.627294846272946, + "grad_norm": 0.5658340454101562, + "learning_rate": 1.919761273209549e-05, + "loss": 0.4696169662475586, + "step": 69700 + }, + { + "epoch": 61.71577084715771, + "grad_norm": 0.5801714658737183, + "learning_rate": 1.9153404067197173e-05, + "loss": 0.47141036987304685, + "step": 69800 + }, + { + "epoch": 61.80424684804247, + "grad_norm": 0.5643869042396545, + "learning_rate": 1.910919540229885e-05, + "loss": 0.4727308654785156, + "step": 69900 + }, + { + "epoch": 61.89272284892723, + "grad_norm": 0.5937660336494446, + "learning_rate": 1.906498673740053e-05, + "loss": 0.4726886367797852, + "step": 70000 + }, + { + "epoch": 61.98119884981199, + "grad_norm": 0.5228411555290222, + "learning_rate": 1.902077807250221e-05, + "loss": 0.47457176208496094, + "step": 70100 + }, + { + "epoch": 62.06901128069011, + "grad_norm": 0.5100186467170715, + "learning_rate": 1.897656940760389e-05, + "loss": 0.4604149627685547, + "step": 70200 + }, + { + "epoch": 62.15748728157487, + "grad_norm": 0.5119529962539673, + "learning_rate": 1.8932360742705572e-05, + "loss": 0.4561204147338867, + "step": 70300 + }, + { + "epoch": 62.245963282459634, + "grad_norm": 0.5130912065505981, + "learning_rate": 1.888815207780725e-05, + "loss": 0.4596226501464844, + "step": 70400 + }, + { + "epoch": 62.334439283344395, + "grad_norm": 0.5388224720954895, + "learning_rate": 1.8843943412908933e-05, + "loss": 0.4617993927001953, + "step": 70500 + }, + { + "epoch": 62.422915284229155, + "grad_norm": 0.5555194020271301, + "learning_rate": 1.879973474801061e-05, + "loss": 0.46267467498779297, + "step": 70600 + }, + { + "epoch": 62.511391285113916, + "grad_norm": 0.5136281847953796, + "learning_rate": 1.875552608311229e-05, + "loss": 0.4628156280517578, + "step": 70700 + }, + { + "epoch": 62.59986728599867, + "grad_norm": 0.5039867162704468, + "learning_rate": 1.871131741821397e-05, + "loss": 0.4678297805786133, + "step": 70800 + }, + { + "epoch": 62.68834328688343, + "grad_norm": 0.566985547542572, + "learning_rate": 1.866710875331565e-05, + "loss": 0.46522830963134765, + "step": 70900 + }, + { + "epoch": 62.77681928776819, + "grad_norm": 0.5855474472045898, + "learning_rate": 1.8622900088417332e-05, + "loss": 0.46788333892822265, + "step": 71000 + }, + { + "epoch": 62.86529528865295, + "grad_norm": 0.5838083624839783, + "learning_rate": 1.857869142351901e-05, + "loss": 0.4687856292724609, + "step": 71100 + }, + { + "epoch": 62.95377128953771, + "grad_norm": 0.6574355363845825, + "learning_rate": 1.8534482758620693e-05, + "loss": 0.46836143493652344, + "step": 71200 + }, + { + "epoch": 63.04158372041584, + "grad_norm": 0.5751773118972778, + "learning_rate": 1.849027409372237e-05, + "loss": 0.4590755844116211, + "step": 71300 + }, + { + "epoch": 63.1300597213006, + "grad_norm": 0.5056807398796082, + "learning_rate": 1.844606542882405e-05, + "loss": 0.45313865661621094, + "step": 71400 + }, + { + "epoch": 63.21853572218536, + "grad_norm": 0.5403828024864197, + "learning_rate": 1.840185676392573e-05, + "loss": 0.4552134323120117, + "step": 71500 + }, + { + "epoch": 63.30701172307012, + "grad_norm": 0.48244568705558777, + "learning_rate": 1.835764809902741e-05, + "loss": 0.45661014556884766, + "step": 71600 + }, + { + "epoch": 63.39548772395488, + "grad_norm": 0.5753127932548523, + "learning_rate": 1.831343943412909e-05, + "loss": 0.4578168487548828, + "step": 71700 + }, + { + "epoch": 63.48396372483964, + "grad_norm": 0.5782042741775513, + "learning_rate": 1.826923076923077e-05, + "loss": 0.4589107131958008, + "step": 71800 + }, + { + "epoch": 63.5724397257244, + "grad_norm": 0.5895569920539856, + "learning_rate": 1.8225022104332453e-05, + "loss": 0.46304950714111326, + "step": 71900 + }, + { + "epoch": 63.660915726609154, + "grad_norm": 0.6601688265800476, + "learning_rate": 1.818081343943413e-05, + "loss": 0.45953712463378904, + "step": 72000 + }, + { + "epoch": 63.749391727493915, + "grad_norm": 0.5695818066596985, + "learning_rate": 1.813660477453581e-05, + "loss": 0.46058246612548825, + "step": 72100 + }, + { + "epoch": 63.837867728378676, + "grad_norm": 0.5006322264671326, + "learning_rate": 1.809239610963749e-05, + "loss": 0.4630731964111328, + "step": 72200 + }, + { + "epoch": 63.926343729263436, + "grad_norm": 0.5871863961219788, + "learning_rate": 1.804818744473917e-05, + "loss": 0.46295913696289065, + "step": 72300 + }, + { + "epoch": 64.01415616014157, + "grad_norm": 0.5417830348014832, + "learning_rate": 1.8003978779840848e-05, + "loss": 0.4623433303833008, + "step": 72400 + }, + { + "epoch": 64.10263216102632, + "grad_norm": 0.5019242763519287, + "learning_rate": 1.795977011494253e-05, + "loss": 0.44698051452636717, + "step": 72500 + }, + { + "epoch": 64.19110816191107, + "grad_norm": 0.5637330412864685, + "learning_rate": 1.791556145004421e-05, + "loss": 0.4492236328125, + "step": 72600 + }, + { + "epoch": 64.27958416279584, + "grad_norm": 0.5333090424537659, + "learning_rate": 1.787135278514589e-05, + "loss": 0.45192584991455076, + "step": 72700 + }, + { + "epoch": 64.3680601636806, + "grad_norm": 0.5232571363449097, + "learning_rate": 1.782714412024757e-05, + "loss": 0.45244823455810546, + "step": 72800 + }, + { + "epoch": 64.45653616456536, + "grad_norm": 0.4935717284679413, + "learning_rate": 1.778293545534925e-05, + "loss": 0.4529353332519531, + "step": 72900 + }, + { + "epoch": 64.54501216545012, + "grad_norm": 0.5450688600540161, + "learning_rate": 1.7739168877099913e-05, + "loss": 0.4567538833618164, + "step": 73000 + }, + { + "epoch": 64.63348816633489, + "grad_norm": 0.47621846199035645, + "learning_rate": 1.769496021220159e-05, + "loss": 0.4563169097900391, + "step": 73100 + }, + { + "epoch": 64.72196416721964, + "grad_norm": 0.5023945569992065, + "learning_rate": 1.7650751547303274e-05, + "loss": 0.46204959869384765, + "step": 73200 + }, + { + "epoch": 64.8104401681044, + "grad_norm": 0.49148306250572205, + "learning_rate": 1.760654288240495e-05, + "loss": 0.45924064636230466, + "step": 73300 + }, + { + "epoch": 64.89891616898916, + "grad_norm": 0.6161800026893616, + "learning_rate": 1.7562334217506632e-05, + "loss": 0.45994918823242187, + "step": 73400 + }, + { + "epoch": 64.98739216987393, + "grad_norm": 0.5307760238647461, + "learning_rate": 1.7518125552608312e-05, + "loss": 0.461478271484375, + "step": 73500 + }, + { + "epoch": 65.07520460075204, + "grad_norm": 0.588062584400177, + "learning_rate": 1.7474358974358976e-05, + "loss": 0.4461378479003906, + "step": 73600 + }, + { + "epoch": 65.16368060163681, + "grad_norm": 0.5329079627990723, + "learning_rate": 1.7430150309460656e-05, + "loss": 0.4440943145751953, + "step": 73700 + }, + { + "epoch": 65.25215660252157, + "grad_norm": 0.6149891018867493, + "learning_rate": 1.7385941644562333e-05, + "loss": 0.44721881866455077, + "step": 73800 + }, + { + "epoch": 65.34063260340632, + "grad_norm": 0.5438173413276672, + "learning_rate": 1.7341732979664017e-05, + "loss": 0.44954757690429686, + "step": 73900 + }, + { + "epoch": 65.42910860429109, + "grad_norm": 0.5428133606910706, + "learning_rate": 1.7297524314765694e-05, + "loss": 0.45107986450195314, + "step": 74000 + }, + { + "epoch": 65.51758460517584, + "grad_norm": 0.5134186744689941, + "learning_rate": 1.7253315649867374e-05, + "loss": 0.45244071960449217, + "step": 74100 + }, + { + "epoch": 65.60606060606061, + "grad_norm": 0.6233081817626953, + "learning_rate": 1.7209106984969055e-05, + "loss": 0.45329185485839846, + "step": 74200 + }, + { + "epoch": 65.69453660694536, + "grad_norm": 0.5700708627700806, + "learning_rate": 1.7164898320070735e-05, + "loss": 0.4539757537841797, + "step": 74300 + }, + { + "epoch": 65.78301260783013, + "grad_norm": 0.5631476640701294, + "learning_rate": 1.7120689655172416e-05, + "loss": 0.4555579376220703, + "step": 74400 + }, + { + "epoch": 65.87148860871488, + "grad_norm": 0.5964381694793701, + "learning_rate": 1.7076480990274093e-05, + "loss": 0.45496936798095705, + "step": 74500 + }, + { + "epoch": 65.95996460959965, + "grad_norm": 0.5872741341590881, + "learning_rate": 1.7032272325375777e-05, + "loss": 0.45641098022460935, + "step": 74600 + }, + { + "epoch": 66.04777704047777, + "grad_norm": 0.522363543510437, + "learning_rate": 1.6988063660477454e-05, + "loss": 0.4488802337646484, + "step": 74700 + }, + { + "epoch": 66.13625304136254, + "grad_norm": 0.5161113739013672, + "learning_rate": 1.6943854995579134e-05, + "loss": 0.44122817993164065, + "step": 74800 + }, + { + "epoch": 66.22472904224729, + "grad_norm": 0.5127883553504944, + "learning_rate": 1.6899646330680815e-05, + "loss": 0.4447059631347656, + "step": 74900 + }, + { + "epoch": 66.31320504313204, + "grad_norm": 0.5202219486236572, + "learning_rate": 1.6855437665782495e-05, + "loss": 0.4453567123413086, + "step": 75000 + }, + { + "epoch": 66.40168104401681, + "grad_norm": 0.4957808256149292, + "learning_rate": 1.6811229000884172e-05, + "loss": 0.44502986907958986, + "step": 75100 + }, + { + "epoch": 66.49015704490157, + "grad_norm": 0.622518002986908, + "learning_rate": 1.6767020335985853e-05, + "loss": 0.44539188385009765, + "step": 75200 + }, + { + "epoch": 66.57863304578633, + "grad_norm": 0.5333230495452881, + "learning_rate": 1.6722811671087537e-05, + "loss": 0.4479424667358398, + "step": 75300 + }, + { + "epoch": 66.66710904667109, + "grad_norm": 0.536641001701355, + "learning_rate": 1.6678603006189214e-05, + "loss": 0.4486875534057617, + "step": 75400 + }, + { + "epoch": 66.75558504755585, + "grad_norm": 0.6140312552452087, + "learning_rate": 1.6634394341290894e-05, + "loss": 0.45118595123291017, + "step": 75500 + }, + { + "epoch": 66.84406104844061, + "grad_norm": 0.5268392562866211, + "learning_rate": 1.6590185676392574e-05, + "loss": 0.4503518676757812, + "step": 75600 + }, + { + "epoch": 66.93253704932538, + "grad_norm": 0.6316497325897217, + "learning_rate": 1.6545977011494255e-05, + "loss": 0.45311626434326174, + "step": 75700 + }, + { + "epoch": 67.02034948020349, + "grad_norm": 0.4964323937892914, + "learning_rate": 1.6502210433244915e-05, + "loss": 0.44798419952392576, + "step": 75800 + }, + { + "epoch": 67.10882548108826, + "grad_norm": 0.5668012499809265, + "learning_rate": 1.6458001768346595e-05, + "loss": 0.43682758331298827, + "step": 75900 + }, + { + "epoch": 67.19730148197301, + "grad_norm": 0.5451331734657288, + "learning_rate": 1.6413793103448276e-05, + "loss": 0.43744281768798826, + "step": 76000 + }, + { + "epoch": 67.28577748285778, + "grad_norm": 0.5625444650650024, + "learning_rate": 1.6369584438549956e-05, + "loss": 0.44072349548339845, + "step": 76100 + }, + { + "epoch": 67.37425348374254, + "grad_norm": 0.5437332391738892, + "learning_rate": 1.6325375773651637e-05, + "loss": 0.4433360290527344, + "step": 76200 + }, + { + "epoch": 67.46272948462729, + "grad_norm": 0.6005889773368835, + "learning_rate": 1.6281167108753317e-05, + "loss": 0.44355270385742185, + "step": 76300 + }, + { + "epoch": 67.55120548551206, + "grad_norm": 0.6379736065864563, + "learning_rate": 1.6236958443854997e-05, + "loss": 0.4445816421508789, + "step": 76400 + }, + { + "epoch": 67.63968148639681, + "grad_norm": 0.4892788529396057, + "learning_rate": 1.6192749778956675e-05, + "loss": 0.4460066604614258, + "step": 76500 + }, + { + "epoch": 67.72815748728158, + "grad_norm": 0.5238019227981567, + "learning_rate": 1.614854111405836e-05, + "loss": 0.44812583923339844, + "step": 76600 + }, + { + "epoch": 67.81663348816633, + "grad_norm": 0.6448091864585876, + "learning_rate": 1.6104332449160035e-05, + "loss": 0.44679683685302735, + "step": 76700 + }, + { + "epoch": 67.9051094890511, + "grad_norm": 0.501971423625946, + "learning_rate": 1.6060123784261716e-05, + "loss": 0.44675071716308595, + "step": 76800 + }, + { + "epoch": 67.99358548993585, + "grad_norm": 0.5027251243591309, + "learning_rate": 1.6015915119363396e-05, + "loss": 0.450067138671875, + "step": 76900 + }, + { + "epoch": 68.08139792081398, + "grad_norm": 0.5118396878242493, + "learning_rate": 1.5971706454465077e-05, + "loss": 0.4363971710205078, + "step": 77000 + }, + { + "epoch": 68.16987392169874, + "grad_norm": 0.49976325035095215, + "learning_rate": 1.5927497789566757e-05, + "loss": 0.43459579467773435, + "step": 77100 + }, + { + "epoch": 68.2583499225835, + "grad_norm": 0.4591541886329651, + "learning_rate": 1.5883289124668434e-05, + "loss": 0.4374491500854492, + "step": 77200 + }, + { + "epoch": 68.34682592346826, + "grad_norm": 0.5061107277870178, + "learning_rate": 1.5839080459770118e-05, + "loss": 0.4367493438720703, + "step": 77300 + }, + { + "epoch": 68.43530192435301, + "grad_norm": 0.5607414245605469, + "learning_rate": 1.5794871794871795e-05, + "loss": 0.43953250885009765, + "step": 77400 + }, + { + "epoch": 68.52377792523778, + "grad_norm": 0.5758550763130188, + "learning_rate": 1.5750663129973476e-05, + "loss": 0.4412353515625, + "step": 77500 + }, + { + "epoch": 68.61225392612253, + "grad_norm": 0.6092869639396667, + "learning_rate": 1.5706454465075153e-05, + "loss": 0.44133682250976564, + "step": 77600 + }, + { + "epoch": 68.7007299270073, + "grad_norm": 0.6203352808952332, + "learning_rate": 1.5662245800176837e-05, + "loss": 0.4439066696166992, + "step": 77700 + }, + { + "epoch": 68.78920592789206, + "grad_norm": 0.5746839046478271, + "learning_rate": 1.5618037135278517e-05, + "loss": 0.4423197174072266, + "step": 77800 + }, + { + "epoch": 68.87768192877682, + "grad_norm": 0.5136276483535767, + "learning_rate": 1.5573828470380194e-05, + "loss": 0.4460869598388672, + "step": 77900 + }, + { + "epoch": 68.96615792966158, + "grad_norm": 0.4968768358230591, + "learning_rate": 1.5529619805481878e-05, + "loss": 0.4462531280517578, + "step": 78000 + }, + { + "epoch": 69.05397036053971, + "grad_norm": 0.5103012919425964, + "learning_rate": 1.5485411140583555e-05, + "loss": 0.43465484619140626, + "step": 78100 + }, + { + "epoch": 69.14244636142446, + "grad_norm": 0.5626784563064575, + "learning_rate": 1.5441202475685236e-05, + "loss": 0.4333412551879883, + "step": 78200 + }, + { + "epoch": 69.23092236230923, + "grad_norm": 0.5118581652641296, + "learning_rate": 1.5396993810786913e-05, + "loss": 0.4336922836303711, + "step": 78300 + }, + { + "epoch": 69.31939836319398, + "grad_norm": 0.5944911241531372, + "learning_rate": 1.5352785145888596e-05, + "loss": 0.43566287994384767, + "step": 78400 + }, + { + "epoch": 69.40787436407874, + "grad_norm": 0.5433744788169861, + "learning_rate": 1.5308576480990273e-05, + "loss": 0.4361726379394531, + "step": 78500 + }, + { + "epoch": 69.4963503649635, + "grad_norm": 0.614020049571991, + "learning_rate": 1.5264367816091954e-05, + "loss": 0.4380105209350586, + "step": 78600 + }, + { + "epoch": 69.58482636584826, + "grad_norm": 0.5004254579544067, + "learning_rate": 1.5220159151193636e-05, + "loss": 0.4391395950317383, + "step": 78700 + }, + { + "epoch": 69.67330236673303, + "grad_norm": 0.522055983543396, + "learning_rate": 1.5175950486295315e-05, + "loss": 0.4396755599975586, + "step": 78800 + }, + { + "epoch": 69.76177836761778, + "grad_norm": 0.524988055229187, + "learning_rate": 1.5131741821396994e-05, + "loss": 0.4374229431152344, + "step": 78900 + }, + { + "epoch": 69.85025436850255, + "grad_norm": 0.5780676603317261, + "learning_rate": 1.5087533156498674e-05, + "loss": 0.4402974319458008, + "step": 79000 + }, + { + "epoch": 69.9387303693873, + "grad_norm": 0.5651708841323853, + "learning_rate": 1.5043324491600355e-05, + "loss": 0.44202667236328125, + "step": 79100 + }, + { + "epoch": 70.02654280026543, + "grad_norm": 0.48370227217674255, + "learning_rate": 1.4999557913351018e-05, + "loss": 0.4367184829711914, + "step": 79200 + }, + { + "epoch": 70.11501880115019, + "grad_norm": 0.5551156401634216, + "learning_rate": 1.4955349248452696e-05, + "loss": 0.42862590789794924, + "step": 79300 + }, + { + "epoch": 70.20349480203495, + "grad_norm": 0.5126725435256958, + "learning_rate": 1.4911140583554379e-05, + "loss": 0.4319373321533203, + "step": 79400 + }, + { + "epoch": 70.2919708029197, + "grad_norm": 0.5189195871353149, + "learning_rate": 1.4866931918656057e-05, + "loss": 0.4309040832519531, + "step": 79500 + }, + { + "epoch": 70.38044680380447, + "grad_norm": 0.49422213435173035, + "learning_rate": 1.4822723253757736e-05, + "loss": 0.43275665283203124, + "step": 79600 + }, + { + "epoch": 70.46892280468923, + "grad_norm": 0.49081242084503174, + "learning_rate": 1.4778514588859418e-05, + "loss": 0.4326107406616211, + "step": 79700 + }, + { + "epoch": 70.55739880557398, + "grad_norm": 0.5408063530921936, + "learning_rate": 1.4734305923961097e-05, + "loss": 0.4341436004638672, + "step": 79800 + }, + { + "epoch": 70.64587480645875, + "grad_norm": 0.4664778411388397, + "learning_rate": 1.4690097259062778e-05, + "loss": 0.4358782577514648, + "step": 79900 + }, + { + "epoch": 70.7343508073435, + "grad_norm": 0.5463866591453552, + "learning_rate": 1.4645888594164456e-05, + "loss": 0.4348703384399414, + "step": 80000 + }, + { + "epoch": 70.82282680822827, + "grad_norm": 0.5187687873840332, + "learning_rate": 1.4601679929266138e-05, + "loss": 0.43734962463378907, + "step": 80100 + }, + { + "epoch": 70.91130280911302, + "grad_norm": 0.4700576961040497, + "learning_rate": 1.4557471264367817e-05, + "loss": 0.43692012786865236, + "step": 80200 + }, + { + "epoch": 70.99977880999779, + "grad_norm": 0.5413524508476257, + "learning_rate": 1.4513262599469496e-05, + "loss": 0.43848495483398436, + "step": 80300 + }, + { + "epoch": 71.08759124087591, + "grad_norm": 0.5619797110557556, + "learning_rate": 1.4469053934571178e-05, + "loss": 0.4241709899902344, + "step": 80400 + }, + { + "epoch": 71.17606724176068, + "grad_norm": 0.5617126226425171, + "learning_rate": 1.4424845269672857e-05, + "loss": 0.42585777282714843, + "step": 80500 + }, + { + "epoch": 71.26454324264543, + "grad_norm": 0.6131432056427002, + "learning_rate": 1.4380636604774536e-05, + "loss": 0.42857707977294923, + "step": 80600 + }, + { + "epoch": 71.3530192435302, + "grad_norm": 0.5178084969520569, + "learning_rate": 1.4336427939876216e-05, + "loss": 0.4283063507080078, + "step": 80700 + }, + { + "epoch": 71.44149524441495, + "grad_norm": 0.4994112253189087, + "learning_rate": 1.4292219274977897e-05, + "loss": 0.43106334686279296, + "step": 80800 + }, + { + "epoch": 71.5299712452997, + "grad_norm": 0.5411744713783264, + "learning_rate": 1.4248010610079577e-05, + "loss": 0.43190105438232423, + "step": 80900 + }, + { + "epoch": 71.61844724618447, + "grad_norm": 0.5602013468742371, + "learning_rate": 1.4203801945181256e-05, + "loss": 0.4335565185546875, + "step": 81000 + }, + { + "epoch": 71.70692324706923, + "grad_norm": 0.5469107031822205, + "learning_rate": 1.4159593280282938e-05, + "loss": 0.4339017105102539, + "step": 81100 + }, + { + "epoch": 71.795399247954, + "grad_norm": 0.5971689224243164, + "learning_rate": 1.4115384615384617e-05, + "loss": 0.43302181243896487, + "step": 81200 + }, + { + "epoch": 71.88387524883875, + "grad_norm": 0.5518947243690491, + "learning_rate": 1.4071175950486295e-05, + "loss": 0.4339981460571289, + "step": 81300 + }, + { + "epoch": 71.97235124972352, + "grad_norm": 0.46094366908073425, + "learning_rate": 1.4026967285587974e-05, + "loss": 0.4368946075439453, + "step": 81400 + }, + { + "epoch": 72.06016368060163, + "grad_norm": 0.5013940334320068, + "learning_rate": 1.3983200707338639e-05, + "loss": 0.4272830581665039, + "step": 81500 + }, + { + "epoch": 72.1486396814864, + "grad_norm": 0.5779539346694946, + "learning_rate": 1.3938992042440318e-05, + "loss": 0.4237482452392578, + "step": 81600 + }, + { + "epoch": 72.23711568237115, + "grad_norm": 0.5799530744552612, + "learning_rate": 1.3894783377541998e-05, + "loss": 0.4221677398681641, + "step": 81700 + }, + { + "epoch": 72.32559168325592, + "grad_norm": 0.4773975908756256, + "learning_rate": 1.385057471264368e-05, + "loss": 0.4251049041748047, + "step": 81800 + }, + { + "epoch": 72.41406768414068, + "grad_norm": 0.5311180353164673, + "learning_rate": 1.380636604774536e-05, + "loss": 0.42632369995117186, + "step": 81900 + }, + { + "epoch": 72.50254368502544, + "grad_norm": 0.47812601923942566, + "learning_rate": 1.3762157382847038e-05, + "loss": 0.42722888946533205, + "step": 82000 + }, + { + "epoch": 72.5910196859102, + "grad_norm": 0.606674313545227, + "learning_rate": 1.371794871794872e-05, + "loss": 0.4295787811279297, + "step": 82100 + }, + { + "epoch": 72.67949568679495, + "grad_norm": 0.5414536595344543, + "learning_rate": 1.3673740053050399e-05, + "loss": 0.4311911392211914, + "step": 82200 + }, + { + "epoch": 72.76797168767972, + "grad_norm": 0.5214236974716187, + "learning_rate": 1.3629531388152078e-05, + "loss": 0.4323184585571289, + "step": 82300 + }, + { + "epoch": 72.85644768856447, + "grad_norm": 0.531461238861084, + "learning_rate": 1.3585322723253756e-05, + "loss": 0.43523616790771485, + "step": 82400 + }, + { + "epoch": 72.94492368944924, + "grad_norm": 0.550273597240448, + "learning_rate": 1.3541114058355439e-05, + "loss": 0.4310142517089844, + "step": 82500 + }, + { + "epoch": 73.03273612032736, + "grad_norm": 0.47776085138320923, + "learning_rate": 1.3496905393457119e-05, + "loss": 0.4287875747680664, + "step": 82600 + }, + { + "epoch": 73.12121212121212, + "grad_norm": 0.4990812838077545, + "learning_rate": 1.3452696728558798e-05, + "loss": 0.42051288604736325, + "step": 82700 + }, + { + "epoch": 73.20968812209688, + "grad_norm": 0.5124841332435608, + "learning_rate": 1.340848806366048e-05, + "loss": 0.4193102264404297, + "step": 82800 + }, + { + "epoch": 73.29816412298165, + "grad_norm": 0.5289502739906311, + "learning_rate": 1.3364279398762159e-05, + "loss": 0.42208141326904297, + "step": 82900 + }, + { + "epoch": 73.3866401238664, + "grad_norm": 0.4958449602127075, + "learning_rate": 1.3320070733863837e-05, + "loss": 0.42313686370849607, + "step": 83000 + }, + { + "epoch": 73.47511612475117, + "grad_norm": 0.5278774499893188, + "learning_rate": 1.3275862068965516e-05, + "loss": 0.42546688079833983, + "step": 83100 + }, + { + "epoch": 73.56359212563592, + "grad_norm": 0.5365238785743713, + "learning_rate": 1.3231653404067198e-05, + "loss": 0.42514255523681643, + "step": 83200 + }, + { + "epoch": 73.65206812652067, + "grad_norm": 0.5327147841453552, + "learning_rate": 1.3187444739168877e-05, + "loss": 0.42642066955566404, + "step": 83300 + }, + { + "epoch": 73.74054412740544, + "grad_norm": 0.5245737433433533, + "learning_rate": 1.3143236074270558e-05, + "loss": 0.4263890838623047, + "step": 83400 + }, + { + "epoch": 73.8290201282902, + "grad_norm": 0.5159674286842346, + "learning_rate": 1.3099027409372238e-05, + "loss": 0.428508415222168, + "step": 83500 + }, + { + "epoch": 73.91749612917496, + "grad_norm": 0.47965142130851746, + "learning_rate": 1.3054818744473918e-05, + "loss": 0.42886260986328123, + "step": 83600 + }, + { + "epoch": 74.00530856005308, + "grad_norm": 0.573679506778717, + "learning_rate": 1.301105216622458e-05, + "loss": 0.4288605499267578, + "step": 83700 + }, + { + "epoch": 74.09378456093785, + "grad_norm": 0.5544322729110718, + "learning_rate": 1.2966843501326262e-05, + "loss": 0.4174742126464844, + "step": 83800 + }, + { + "epoch": 74.1822605618226, + "grad_norm": 0.4993799030780792, + "learning_rate": 1.2922634836427941e-05, + "loss": 0.4191867828369141, + "step": 83900 + }, + { + "epoch": 74.27073656270737, + "grad_norm": 0.57634037733078, + "learning_rate": 1.287842617152962e-05, + "loss": 0.42080997467041015, + "step": 84000 + }, + { + "epoch": 74.35921256359212, + "grad_norm": 0.5524028539657593, + "learning_rate": 1.2834217506631298e-05, + "loss": 0.41995132446289063, + "step": 84100 + }, + { + "epoch": 74.44768856447689, + "grad_norm": 0.5109556913375854, + "learning_rate": 1.279000884173298e-05, + "loss": 0.4207102584838867, + "step": 84200 + }, + { + "epoch": 74.53616456536164, + "grad_norm": 0.6384374499320984, + "learning_rate": 1.2745800176834661e-05, + "loss": 0.42162609100341797, + "step": 84300 + }, + { + "epoch": 74.6246405662464, + "grad_norm": 0.5029319524765015, + "learning_rate": 1.270159151193634e-05, + "loss": 0.4232307815551758, + "step": 84400 + }, + { + "epoch": 74.71311656713117, + "grad_norm": 0.49697303771972656, + "learning_rate": 1.2657382847038022e-05, + "loss": 0.4233212661743164, + "step": 84500 + }, + { + "epoch": 74.80159256801592, + "grad_norm": 0.5748586058616638, + "learning_rate": 1.26131741821397e-05, + "loss": 0.42522281646728516, + "step": 84600 + }, + { + "epoch": 74.89006856890069, + "grad_norm": 0.5335224866867065, + "learning_rate": 1.256896551724138e-05, + "loss": 0.4264080047607422, + "step": 84700 + }, + { + "epoch": 74.97854456978544, + "grad_norm": 0.5223293900489807, + "learning_rate": 1.2524756852343058e-05, + "loss": 0.4248130416870117, + "step": 84800 + }, + { + "epoch": 75.06635700066357, + "grad_norm": 0.588205099105835, + "learning_rate": 1.2480548187444739e-05, + "loss": 0.41714618682861326, + "step": 84900 + }, + { + "epoch": 75.15483300154833, + "grad_norm": 0.4878210127353668, + "learning_rate": 1.2436339522546419e-05, + "loss": 0.41694087982177735, + "step": 85000 + }, + { + "epoch": 75.2433090024331, + "grad_norm": 0.5826809406280518, + "learning_rate": 1.23921308576481e-05, + "loss": 0.41839481353759767, + "step": 85100 + }, + { + "epoch": 75.33178500331785, + "grad_norm": 0.5703395009040833, + "learning_rate": 1.234792219274978e-05, + "loss": 0.419650993347168, + "step": 85200 + }, + { + "epoch": 75.42026100420262, + "grad_norm": 0.5960374474525452, + "learning_rate": 1.230371352785146e-05, + "loss": 0.41910491943359374, + "step": 85300 + }, + { + "epoch": 75.50873700508737, + "grad_norm": 0.5564795732498169, + "learning_rate": 1.225950486295314e-05, + "loss": 0.42010501861572264, + "step": 85400 + }, + { + "epoch": 75.59721300597214, + "grad_norm": 0.5871827006340027, + "learning_rate": 1.221529619805482e-05, + "loss": 0.41939094543457034, + "step": 85500 + }, + { + "epoch": 75.68568900685689, + "grad_norm": 0.6139041185379028, + "learning_rate": 1.2171087533156498e-05, + "loss": 0.42172611236572266, + "step": 85600 + }, + { + "epoch": 75.77416500774164, + "grad_norm": 0.5693202614784241, + "learning_rate": 1.2126878868258179e-05, + "loss": 0.4217537307739258, + "step": 85700 + }, + { + "epoch": 75.86264100862641, + "grad_norm": 0.5371018648147583, + "learning_rate": 1.208267020335986e-05, + "loss": 0.4220458984375, + "step": 85800 + }, + { + "epoch": 75.95111700951117, + "grad_norm": 0.5617541074752808, + "learning_rate": 1.2038461538461538e-05, + "loss": 0.4248412322998047, + "step": 85900 + }, + { + "epoch": 76.0389294403893, + "grad_norm": 0.5177831649780273, + "learning_rate": 1.1994694960212203e-05, + "loss": 0.41939964294433596, + "step": 86000 + }, + { + "epoch": 76.12740544127405, + "grad_norm": 0.5142802000045776, + "learning_rate": 1.1950486295313883e-05, + "loss": 0.4111063003540039, + "step": 86100 + }, + { + "epoch": 76.21588144215882, + "grad_norm": 0.4861648976802826, + "learning_rate": 1.1906277630415562e-05, + "loss": 0.4148457717895508, + "step": 86200 + }, + { + "epoch": 76.30435744304357, + "grad_norm": 0.5097411870956421, + "learning_rate": 1.1862068965517243e-05, + "loss": 0.4158660125732422, + "step": 86300 + }, + { + "epoch": 76.39283344392834, + "grad_norm": 0.4740864336490631, + "learning_rate": 1.1817860300618921e-05, + "loss": 0.4178118133544922, + "step": 86400 + }, + { + "epoch": 76.48130944481309, + "grad_norm": 0.44249430298805237, + "learning_rate": 1.1773651635720602e-05, + "loss": 0.4165281677246094, + "step": 86500 + }, + { + "epoch": 76.56978544569786, + "grad_norm": 0.5490387082099915, + "learning_rate": 1.172944297082228e-05, + "loss": 0.4198506927490234, + "step": 86600 + }, + { + "epoch": 76.65826144658261, + "grad_norm": 0.5175479650497437, + "learning_rate": 1.1685234305923961e-05, + "loss": 0.4220100402832031, + "step": 86700 + }, + { + "epoch": 76.74673744746737, + "grad_norm": 0.5073688626289368, + "learning_rate": 1.1641025641025642e-05, + "loss": 0.4184294891357422, + "step": 86800 + }, + { + "epoch": 76.83521344835214, + "grad_norm": 0.6137869358062744, + "learning_rate": 1.1596816976127322e-05, + "loss": 0.41919185638427736, + "step": 86900 + }, + { + "epoch": 76.92368944923689, + "grad_norm": 0.5274661183357239, + "learning_rate": 1.1552608311229002e-05, + "loss": 0.4193117141723633, + "step": 87000 + }, + { + "epoch": 77.01150188011502, + "grad_norm": 0.578369677066803, + "learning_rate": 1.1508399646330681e-05, + "loss": 0.4192862701416016, + "step": 87100 + }, + { + "epoch": 77.09997788099977, + "grad_norm": 0.6028936505317688, + "learning_rate": 1.1464190981432362e-05, + "loss": 0.40931896209716795, + "step": 87200 + }, + { + "epoch": 77.18845388188454, + "grad_norm": 0.4915790557861328, + "learning_rate": 1.141998231653404e-05, + "loss": 0.41025619506835936, + "step": 87300 + }, + { + "epoch": 77.2769298827693, + "grad_norm": 0.5164591073989868, + "learning_rate": 1.1375773651635721e-05, + "loss": 0.4112412643432617, + "step": 87400 + }, + { + "epoch": 77.36540588365406, + "grad_norm": 0.48311275243759155, + "learning_rate": 1.1331564986737401e-05, + "loss": 0.4144105911254883, + "step": 87500 + }, + { + "epoch": 77.45388188453882, + "grad_norm": 0.46419015526771545, + "learning_rate": 1.128735632183908e-05, + "loss": 0.41563541412353516, + "step": 87600 + }, + { + "epoch": 77.54235788542358, + "grad_norm": 0.6288944482803345, + "learning_rate": 1.124314765694076e-05, + "loss": 0.41669620513916017, + "step": 87700 + }, + { + "epoch": 77.63083388630834, + "grad_norm": 0.497126966714859, + "learning_rate": 1.1198938992042441e-05, + "loss": 0.41618637084960936, + "step": 87800 + }, + { + "epoch": 77.7193098871931, + "grad_norm": 0.5373407602310181, + "learning_rate": 1.1154730327144122e-05, + "loss": 0.41614810943603514, + "step": 87900 + }, + { + "epoch": 77.80778588807786, + "grad_norm": 0.519382894039154, + "learning_rate": 1.1110521662245802e-05, + "loss": 0.41859901428222657, + "step": 88000 + }, + { + "epoch": 77.89626188896261, + "grad_norm": 0.5001983046531677, + "learning_rate": 1.106631299734748e-05, + "loss": 0.418219108581543, + "step": 88100 + }, + { + "epoch": 77.98473788984738, + "grad_norm": 0.5034019947052002, + "learning_rate": 1.1022104332449161e-05, + "loss": 0.4178015899658203, + "step": 88200 + }, + { + "epoch": 78.0725503207255, + "grad_norm": 0.5158605575561523, + "learning_rate": 1.097789566755084e-05, + "loss": 0.4091143035888672, + "step": 88300 + }, + { + "epoch": 78.16102632161027, + "grad_norm": 0.48502761125564575, + "learning_rate": 1.093368700265252e-05, + "loss": 0.40843994140625, + "step": 88400 + }, + { + "epoch": 78.24950232249502, + "grad_norm": 0.5448765754699707, + "learning_rate": 1.08894783377542e-05, + "loss": 0.4109685516357422, + "step": 88500 + }, + { + "epoch": 78.33797832337979, + "grad_norm": 0.52455735206604, + "learning_rate": 1.084526967285588e-05, + "loss": 0.4108180236816406, + "step": 88600 + }, + { + "epoch": 78.42645432426454, + "grad_norm": 0.49440670013427734, + "learning_rate": 1.080106100795756e-05, + "loss": 0.41148426055908205, + "step": 88700 + }, + { + "epoch": 78.51493032514931, + "grad_norm": 0.5575434565544128, + "learning_rate": 1.075685234305924e-05, + "loss": 0.4121563720703125, + "step": 88800 + }, + { + "epoch": 78.60340632603406, + "grad_norm": 0.5276569724082947, + "learning_rate": 1.0712643678160921e-05, + "loss": 0.41357189178466797, + "step": 88900 + }, + { + "epoch": 78.69188232691883, + "grad_norm": 0.5279592871665955, + "learning_rate": 1.06684350132626e-05, + "loss": 0.4147018814086914, + "step": 89000 + }, + { + "epoch": 78.78035832780358, + "grad_norm": 0.4984647333621979, + "learning_rate": 1.062422634836428e-05, + "loss": 0.41413829803466795, + "step": 89100 + }, + { + "epoch": 78.86883432868834, + "grad_norm": 0.5556148886680603, + "learning_rate": 1.0580017683465959e-05, + "loss": 0.4168708419799805, + "step": 89200 + }, + { + "epoch": 78.9573103295731, + "grad_norm": 0.46219438314437866, + "learning_rate": 1.053580901856764e-05, + "loss": 0.41841983795166016, + "step": 89300 + }, + { + "epoch": 79.04512276045122, + "grad_norm": 0.49136674404144287, + "learning_rate": 1.0492042440318303e-05, + "loss": 0.41013729095458984, + "step": 89400 + }, + { + "epoch": 79.13359876133599, + "grad_norm": 0.5096011161804199, + "learning_rate": 1.0447833775419983e-05, + "loss": 0.4057589340209961, + "step": 89500 + }, + { + "epoch": 79.22207476222074, + "grad_norm": 0.4563368558883667, + "learning_rate": 1.0403625110521663e-05, + "loss": 0.4064152526855469, + "step": 89600 + }, + { + "epoch": 79.31055076310551, + "grad_norm": 0.5743097066879272, + "learning_rate": 1.0359416445623344e-05, + "loss": 0.40998432159423825, + "step": 89700 + }, + { + "epoch": 79.39902676399026, + "grad_norm": 0.46749743819236755, + "learning_rate": 1.0315207780725023e-05, + "loss": 0.40825595855712893, + "step": 89800 + }, + { + "epoch": 79.48750276487503, + "grad_norm": 0.522980272769928, + "learning_rate": 1.0270999115826703e-05, + "loss": 0.4116529083251953, + "step": 89900 + }, + { + "epoch": 79.57597876575979, + "grad_norm": 0.4576069712638855, + "learning_rate": 1.0226790450928382e-05, + "loss": 0.41039798736572264, + "step": 90000 + }, + { + "epoch": 79.66445476664455, + "grad_norm": 0.574553370475769, + "learning_rate": 1.0182581786030062e-05, + "loss": 0.4103997802734375, + "step": 90100 + }, + { + "epoch": 79.7529307675293, + "grad_norm": 0.5592597126960754, + "learning_rate": 1.0138373121131741e-05, + "loss": 0.4123684310913086, + "step": 90200 + }, + { + "epoch": 79.84140676841407, + "grad_norm": 0.5754570364952087, + "learning_rate": 1.0094164456233422e-05, + "loss": 0.4138601684570313, + "step": 90300 + }, + { + "epoch": 79.92988276929883, + "grad_norm": 0.5830336213111877, + "learning_rate": 1.0049955791335102e-05, + "loss": 0.41378173828125, + "step": 90400 + }, + { + "epoch": 80.01769520017695, + "grad_norm": 0.473369836807251, + "learning_rate": 1.0005747126436783e-05, + "loss": 0.41222110748291013, + "step": 90500 + }, + { + "epoch": 80.10617120106171, + "grad_norm": 0.5327860116958618, + "learning_rate": 9.961538461538463e-06, + "loss": 0.4058869934082031, + "step": 90600 + }, + { + "epoch": 80.19464720194647, + "grad_norm": 0.5304612517356873, + "learning_rate": 9.917329796640142e-06, + "loss": 0.4061882781982422, + "step": 90700 + }, + { + "epoch": 80.28312320283123, + "grad_norm": 0.5240916013717651, + "learning_rate": 9.873121131741822e-06, + "loss": 0.40706119537353513, + "step": 90800 + }, + { + "epoch": 80.37159920371599, + "grad_norm": 0.4663858413696289, + "learning_rate": 9.828912466843501e-06, + "loss": 0.4077639389038086, + "step": 90900 + }, + { + "epoch": 80.46007520460076, + "grad_norm": 0.4718465805053711, + "learning_rate": 9.784703801945181e-06, + "loss": 0.4078546905517578, + "step": 91000 + }, + { + "epoch": 80.54855120548551, + "grad_norm": 0.45132529735565186, + "learning_rate": 9.740495137046862e-06, + "loss": 0.40724002838134765, + "step": 91100 + }, + { + "epoch": 80.63702720637028, + "grad_norm": 0.4961422085762024, + "learning_rate": 9.69628647214854e-06, + "loss": 0.4097640609741211, + "step": 91200 + }, + { + "epoch": 80.72550320725503, + "grad_norm": 0.5276188850402832, + "learning_rate": 9.652077807250221e-06, + "loss": 0.41011890411376956, + "step": 91300 + }, + { + "epoch": 80.8139792081398, + "grad_norm": 0.48676180839538574, + "learning_rate": 9.607869142351902e-06, + "loss": 0.41075672149658204, + "step": 91400 + }, + { + "epoch": 80.90245520902455, + "grad_norm": 0.5812916159629822, + "learning_rate": 9.563660477453582e-06, + "loss": 0.4131761932373047, + "step": 91500 + }, + { + "epoch": 80.9909312099093, + "grad_norm": 0.5730577707290649, + "learning_rate": 9.51945181255526e-06, + "loss": 0.41234848022460935, + "step": 91600 + }, + { + "epoch": 81.07874364078744, + "grad_norm": 0.5240619778633118, + "learning_rate": 9.475685234305924e-06, + "loss": 0.40376312255859376, + "step": 91700 + }, + { + "epoch": 81.16721964167219, + "grad_norm": 0.46626827120780945, + "learning_rate": 9.431476569407604e-06, + "loss": 0.40396995544433595, + "step": 91800 + }, + { + "epoch": 81.25569564255696, + "grad_norm": 0.49117109179496765, + "learning_rate": 9.387267904509283e-06, + "loss": 0.4028842544555664, + "step": 91900 + }, + { + "epoch": 81.34417164344171, + "grad_norm": 0.5428334474563599, + "learning_rate": 9.343059239610964e-06, + "loss": 0.4046338653564453, + "step": 92000 + }, + { + "epoch": 81.43264764432648, + "grad_norm": 0.5240166783332825, + "learning_rate": 9.298850574712644e-06, + "loss": 0.4052513885498047, + "step": 92100 + }, + { + "epoch": 81.52112364521123, + "grad_norm": 0.4899362325668335, + "learning_rate": 9.254641909814325e-06, + "loss": 0.4052754974365234, + "step": 92200 + }, + { + "epoch": 81.609599646096, + "grad_norm": 0.46969664096832275, + "learning_rate": 9.210433244916005e-06, + "loss": 0.4072676086425781, + "step": 92300 + }, + { + "epoch": 81.69807564698075, + "grad_norm": 0.4990880489349365, + "learning_rate": 9.166224580017684e-06, + "loss": 0.40702415466308595, + "step": 92400 + }, + { + "epoch": 81.78655164786552, + "grad_norm": 0.5545535087585449, + "learning_rate": 9.122015915119364e-06, + "loss": 0.4103099822998047, + "step": 92500 + }, + { + "epoch": 81.87502764875028, + "grad_norm": 0.5591033101081848, + "learning_rate": 9.077807250221043e-06, + "loss": 0.4087317276000977, + "step": 92600 + }, + { + "epoch": 81.96350364963503, + "grad_norm": 0.5289734601974487, + "learning_rate": 9.033598585322723e-06, + "loss": 0.4112258529663086, + "step": 92700 + }, + { + "epoch": 82.05131608051316, + "grad_norm": 0.59573894739151, + "learning_rate": 8.989389920424404e-06, + "loss": 0.40506195068359374, + "step": 92800 + }, + { + "epoch": 82.13979208139791, + "grad_norm": 0.4581588804721832, + "learning_rate": 8.945181255526083e-06, + "loss": 0.401633186340332, + "step": 92900 + }, + { + "epoch": 82.22826808228268, + "grad_norm": 0.4607727527618408, + "learning_rate": 8.900972590627763e-06, + "loss": 0.4030620193481445, + "step": 93000 + }, + { + "epoch": 82.31674408316744, + "grad_norm": 0.5693869590759277, + "learning_rate": 8.856763925729444e-06, + "loss": 0.4034944152832031, + "step": 93100 + }, + { + "epoch": 82.4052200840522, + "grad_norm": 0.4679562449455261, + "learning_rate": 8.812555260831124e-06, + "loss": 0.40353385925292967, + "step": 93200 + }, + { + "epoch": 82.49369608493696, + "grad_norm": 0.4970017373561859, + "learning_rate": 8.768346595932803e-06, + "loss": 0.4040465545654297, + "step": 93300 + }, + { + "epoch": 82.58217208582172, + "grad_norm": 0.4850037097930908, + "learning_rate": 8.724137931034483e-06, + "loss": 0.40520496368408204, + "step": 93400 + }, + { + "epoch": 82.67064808670648, + "grad_norm": 0.5304952263832092, + "learning_rate": 8.679929266136164e-06, + "loss": 0.4062754440307617, + "step": 93500 + }, + { + "epoch": 82.75912408759125, + "grad_norm": 0.5124515891075134, + "learning_rate": 8.635720601237842e-06, + "loss": 0.4042987442016602, + "step": 93600 + }, + { + "epoch": 82.847600088476, + "grad_norm": 0.5527506470680237, + "learning_rate": 8.591511936339523e-06, + "loss": 0.4051095199584961, + "step": 93700 + }, + { + "epoch": 82.93607608936077, + "grad_norm": 0.4627765119075775, + "learning_rate": 8.547303271441202e-06, + "loss": 0.4065189743041992, + "step": 93800 + }, + { + "epoch": 83.02388852023888, + "grad_norm": 0.47690948843955994, + "learning_rate": 8.503094606542882e-06, + "loss": 0.4059687042236328, + "step": 93900 + }, + { + "epoch": 83.11236452112365, + "grad_norm": 0.543329656124115, + "learning_rate": 8.458885941644563e-06, + "loss": 0.40105613708496096, + "step": 94000 + }, + { + "epoch": 83.2008405220084, + "grad_norm": 0.5308240056037903, + "learning_rate": 8.414677276746243e-06, + "loss": 0.3999287414550781, + "step": 94100 + }, + { + "epoch": 83.28931652289316, + "grad_norm": 0.5098600387573242, + "learning_rate": 8.370468611847924e-06, + "loss": 0.3998809051513672, + "step": 94200 + }, + { + "epoch": 83.37779252377793, + "grad_norm": 0.5461894273757935, + "learning_rate": 8.326259946949602e-06, + "loss": 0.4027032470703125, + "step": 94300 + }, + { + "epoch": 83.46626852466268, + "grad_norm": 0.5599612593650818, + "learning_rate": 8.282051282051283e-06, + "loss": 0.4018612289428711, + "step": 94400 + }, + { + "epoch": 83.55474452554745, + "grad_norm": 0.5953245162963867, + "learning_rate": 8.237842617152961e-06, + "loss": 0.4048320770263672, + "step": 94500 + }, + { + "epoch": 83.6432205264322, + "grad_norm": 0.5232775211334229, + "learning_rate": 8.193633952254642e-06, + "loss": 0.40312889099121096, + "step": 94600 + }, + { + "epoch": 83.73169652731697, + "grad_norm": 0.5057620406150818, + "learning_rate": 8.149425287356322e-06, + "loss": 0.4016009521484375, + "step": 94700 + }, + { + "epoch": 83.82017252820172, + "grad_norm": 0.54839026927948, + "learning_rate": 8.105216622458001e-06, + "loss": 0.40390682220458984, + "step": 94800 + }, + { + "epoch": 83.90864852908649, + "grad_norm": 0.42211759090423584, + "learning_rate": 8.061007957559683e-06, + "loss": 0.4043146514892578, + "step": 94900 + }, + { + "epoch": 83.99712452997125, + "grad_norm": 0.46576666831970215, + "learning_rate": 8.016799292661362e-06, + "loss": 0.4071781539916992, + "step": 95000 + }, + { + "epoch": 84.08493696084938, + "grad_norm": 0.48286134004592896, + "learning_rate": 7.973032714412025e-06, + "loss": 0.3980902862548828, + "step": 95100 + }, + { + "epoch": 84.17341296173413, + "grad_norm": 0.5105409026145935, + "learning_rate": 7.928824049513706e-06, + "loss": 0.39626029968261717, + "step": 95200 + }, + { + "epoch": 84.26188896261888, + "grad_norm": 0.5280846357345581, + "learning_rate": 7.884615384615384e-06, + "loss": 0.39923973083496095, + "step": 95300 + }, + { + "epoch": 84.35036496350365, + "grad_norm": 0.49487778544425964, + "learning_rate": 7.840406719717065e-06, + "loss": 0.39867469787597654, + "step": 95400 + }, + { + "epoch": 84.4388409643884, + "grad_norm": 0.5105910897254944, + "learning_rate": 7.796198054818744e-06, + "loss": 0.4000941467285156, + "step": 95500 + }, + { + "epoch": 84.52731696527317, + "grad_norm": 0.49424290657043457, + "learning_rate": 7.751989389920424e-06, + "loss": 0.4025596618652344, + "step": 95600 + }, + { + "epoch": 84.61579296615793, + "grad_norm": 0.5923288464546204, + "learning_rate": 7.707780725022105e-06, + "loss": 0.40207050323486326, + "step": 95700 + }, + { + "epoch": 84.7042689670427, + "grad_norm": 0.47270065546035767, + "learning_rate": 7.663572060123785e-06, + "loss": 0.40140762329101565, + "step": 95800 + }, + { + "epoch": 84.79274496792745, + "grad_norm": 0.4515872597694397, + "learning_rate": 7.619363395225465e-06, + "loss": 0.4039121627807617, + "step": 95900 + }, + { + "epoch": 84.88122096881222, + "grad_norm": 0.5799027681350708, + "learning_rate": 7.575154730327144e-06, + "loss": 0.40215221405029294, + "step": 96000 + }, + { + "epoch": 84.96969696969697, + "grad_norm": 0.5158770680427551, + "learning_rate": 7.530946065428825e-06, + "loss": 0.40449161529541017, + "step": 96100 + }, + { + "epoch": 85.0575094005751, + "grad_norm": 0.5103220343589783, + "learning_rate": 7.4867374005305035e-06, + "loss": 0.3986453628540039, + "step": 96200 + }, + { + "epoch": 85.14598540145985, + "grad_norm": 0.48847347497940063, + "learning_rate": 7.442528735632184e-06, + "loss": 0.3962085723876953, + "step": 96300 + }, + { + "epoch": 85.2344614023446, + "grad_norm": 0.5786899328231812, + "learning_rate": 7.398320070733865e-06, + "loss": 0.398316535949707, + "step": 96400 + }, + { + "epoch": 85.32293740322937, + "grad_norm": 0.4464615285396576, + "learning_rate": 7.354111405835544e-06, + "loss": 0.39748287200927734, + "step": 96500 + }, + { + "epoch": 85.41141340411413, + "grad_norm": 0.5107320547103882, + "learning_rate": 7.3099027409372245e-06, + "loss": 0.399218864440918, + "step": 96600 + }, + { + "epoch": 85.4998894049989, + "grad_norm": 0.5555247068405151, + "learning_rate": 7.265694076038903e-06, + "loss": 0.40016975402832033, + "step": 96700 + }, + { + "epoch": 85.58836540588365, + "grad_norm": 0.46809983253479004, + "learning_rate": 7.2214854111405845e-06, + "loss": 0.39977962493896485, + "step": 96800 + }, + { + "epoch": 85.67684140676842, + "grad_norm": 0.5176143646240234, + "learning_rate": 7.177276746242263e-06, + "loss": 0.39803340911865237, + "step": 96900 + }, + { + "epoch": 85.76531740765317, + "grad_norm": 0.4717543125152588, + "learning_rate": 7.133068081343944e-06, + "loss": 0.4004299545288086, + "step": 97000 + }, + { + "epoch": 85.85379340853794, + "grad_norm": 0.49673059582710266, + "learning_rate": 7.088859416445624e-06, + "loss": 0.40104530334472654, + "step": 97100 + }, + { + "epoch": 85.94226940942269, + "grad_norm": 0.5706076622009277, + "learning_rate": 7.044650751547304e-06, + "loss": 0.40007728576660156, + "step": 97200 + }, + { + "epoch": 86.03008184030082, + "grad_norm": 0.5170352458953857, + "learning_rate": 7.000884173297967e-06, + "loss": 0.39897975921630857, + "step": 97300 + }, + { + "epoch": 86.11855784118558, + "grad_norm": 0.478630930185318, + "learning_rate": 6.956675508399646e-06, + "loss": 0.3933698272705078, + "step": 97400 + }, + { + "epoch": 86.20703384207035, + "grad_norm": 0.5094186067581177, + "learning_rate": 6.912466843501326e-06, + "loss": 0.39624488830566407, + "step": 97500 + }, + { + "epoch": 86.2955098429551, + "grad_norm": 0.5107275247573853, + "learning_rate": 6.868258178603007e-06, + "loss": 0.39685150146484377, + "step": 97600 + }, + { + "epoch": 86.38398584383985, + "grad_norm": 0.5861279964447021, + "learning_rate": 6.824049513704686e-06, + "loss": 0.3973454284667969, + "step": 97700 + }, + { + "epoch": 86.47246184472462, + "grad_norm": 0.490012526512146, + "learning_rate": 6.779840848806367e-06, + "loss": 0.3982046127319336, + "step": 97800 + }, + { + "epoch": 86.56093784560937, + "grad_norm": 0.47647538781166077, + "learning_rate": 6.7356321839080455e-06, + "loss": 0.39851917266845704, + "step": 97900 + }, + { + "epoch": 86.64941384649414, + "grad_norm": 0.45534029603004456, + "learning_rate": 6.691423519009726e-06, + "loss": 0.39754936218261716, + "step": 98000 + }, + { + "epoch": 86.7378898473789, + "grad_norm": 0.5305948257446289, + "learning_rate": 6.647214854111407e-06, + "loss": 0.39900218963623046, + "step": 98100 + }, + { + "epoch": 86.82636584826366, + "grad_norm": 0.48616868257522583, + "learning_rate": 6.603006189213086e-06, + "loss": 0.39878063201904296, + "step": 98200 + }, + { + "epoch": 86.91484184914842, + "grad_norm": 0.4637695252895355, + "learning_rate": 6.5587975243147665e-06, + "loss": 0.39936519622802735, + "step": 98300 + }, + { + "epoch": 87.00265428002655, + "grad_norm": 0.43915867805480957, + "learning_rate": 6.514588859416445e-06, + "loss": 0.39945316314697266, + "step": 98400 + }, + { + "epoch": 87.0911302809113, + "grad_norm": 0.5064729452133179, + "learning_rate": 6.4703801945181265e-06, + "loss": 0.39295291900634766, + "step": 98500 + }, + { + "epoch": 87.17960628179607, + "grad_norm": 0.41172826290130615, + "learning_rate": 6.426171529619805e-06, + "loss": 0.3956099319458008, + "step": 98600 + }, + { + "epoch": 87.26808228268082, + "grad_norm": 0.5156989693641663, + "learning_rate": 6.381962864721486e-06, + "loss": 0.3927472686767578, + "step": 98700 + }, + { + "epoch": 87.35655828356558, + "grad_norm": 0.4864855706691742, + "learning_rate": 6.337754199823166e-06, + "loss": 0.39533439636230466, + "step": 98800 + }, + { + "epoch": 87.44503428445034, + "grad_norm": 0.5469456911087036, + "learning_rate": 6.293545534924846e-06, + "loss": 0.3970512390136719, + "step": 98900 + }, + { + "epoch": 87.5335102853351, + "grad_norm": 0.4618734121322632, + "learning_rate": 6.249336870026525e-06, + "loss": 0.3967998504638672, + "step": 99000 + }, + { + "epoch": 87.62198628621987, + "grad_norm": 0.41789868474006653, + "learning_rate": 6.205128205128206e-06, + "loss": 0.3979497909545898, + "step": 99100 + }, + { + "epoch": 87.71046228710462, + "grad_norm": 0.5439488887786865, + "learning_rate": 6.1609195402298855e-06, + "loss": 0.3960274887084961, + "step": 99200 + }, + { + "epoch": 87.79893828798939, + "grad_norm": 0.46948105096817017, + "learning_rate": 6.116710875331565e-06, + "loss": 0.39781307220458983, + "step": 99300 + }, + { + "epoch": 87.88741428887414, + "grad_norm": 0.4804007411003113, + "learning_rate": 6.0725022104332456e-06, + "loss": 0.39600673675537107, + "step": 99400 + }, + { + "epoch": 87.97589028975891, + "grad_norm": 0.4494355618953705, + "learning_rate": 6.028293545534925e-06, + "loss": 0.3976548385620117, + "step": 99500 + }, + { + "epoch": 88.06370272063702, + "grad_norm": 0.4300312101840973, + "learning_rate": 5.984526967285588e-06, + "loss": 0.3928862762451172, + "step": 99600 + }, + { + "epoch": 88.15217872152179, + "grad_norm": 0.5155128836631775, + "learning_rate": 5.940318302387268e-06, + "loss": 0.39027740478515627, + "step": 99700 + }, + { + "epoch": 88.24065472240655, + "grad_norm": 0.4635615944862366, + "learning_rate": 5.896109637488948e-06, + "loss": 0.3938739776611328, + "step": 99800 + }, + { + "epoch": 88.32913072329131, + "grad_norm": 0.5408588647842407, + "learning_rate": 5.851900972590628e-06, + "loss": 0.3914863967895508, + "step": 99900 + }, + { + "epoch": 88.41760672417607, + "grad_norm": 0.5169259309768677, + "learning_rate": 5.807692307692308e-06, + "loss": 0.3942420959472656, + "step": 100000 + }, + { + "epoch": 88.50608272506082, + "grad_norm": 0.43603307008743286, + "learning_rate": 5.763483642793987e-06, + "loss": 0.3942053604125977, + "step": 100100 + }, + { + "epoch": 88.59455872594559, + "grad_norm": 0.484275758266449, + "learning_rate": 5.719274977895668e-06, + "loss": 0.3953342056274414, + "step": 100200 + }, + { + "epoch": 88.68303472683034, + "grad_norm": 0.4834429621696472, + "learning_rate": 5.675066312997348e-06, + "loss": 0.39478866577148436, + "step": 100300 + }, + { + "epoch": 88.77151072771511, + "grad_norm": 0.5198318362236023, + "learning_rate": 5.630857648099028e-06, + "loss": 0.3973033905029297, + "step": 100400 + }, + { + "epoch": 88.85998672859986, + "grad_norm": 0.5359114408493042, + "learning_rate": 5.586648983200707e-06, + "loss": 0.3963985824584961, + "step": 100500 + }, + { + "epoch": 88.94846272948463, + "grad_norm": 0.47174566984176636, + "learning_rate": 5.542440318302387e-06, + "loss": 0.39962120056152345, + "step": 100600 + }, + { + "epoch": 89.03627516036275, + "grad_norm": 0.5552394986152649, + "learning_rate": 5.498231653404067e-06, + "loss": 0.3942194747924805, + "step": 100700 + }, + { + "epoch": 89.12475116124752, + "grad_norm": 0.4985731840133667, + "learning_rate": 5.454022988505748e-06, + "loss": 0.39029048919677733, + "step": 100800 + }, + { + "epoch": 89.21322716213227, + "grad_norm": 0.5449782013893127, + "learning_rate": 5.4098143236074275e-06, + "loss": 0.391842155456543, + "step": 100900 + }, + { + "epoch": 89.30170316301704, + "grad_norm": 0.47477561235427856, + "learning_rate": 5.365605658709107e-06, + "loss": 0.39065505981445314, + "step": 101000 + }, + { + "epoch": 89.39017916390179, + "grad_norm": 0.5775418281555176, + "learning_rate": 5.3213969938107875e-06, + "loss": 0.39322795867919924, + "step": 101100 + }, + { + "epoch": 89.47865516478655, + "grad_norm": 0.44463786482810974, + "learning_rate": 5.277188328912467e-06, + "loss": 0.3929602813720703, + "step": 101200 + }, + { + "epoch": 89.56713116567131, + "grad_norm": 0.5217382311820984, + "learning_rate": 5.232979664014147e-06, + "loss": 0.3945352172851562, + "step": 101300 + }, + { + "epoch": 89.65560716655607, + "grad_norm": 0.47336575388908386, + "learning_rate": 5.188770999115826e-06, + "loss": 0.3943867492675781, + "step": 101400 + }, + { + "epoch": 89.74408316744083, + "grad_norm": 0.49890655279159546, + "learning_rate": 5.144562334217507e-06, + "loss": 0.39472442626953125, + "step": 101500 + }, + { + "epoch": 89.83255916832559, + "grad_norm": 0.4528096914291382, + "learning_rate": 5.100353669319187e-06, + "loss": 0.3927711868286133, + "step": 101600 + }, + { + "epoch": 89.92103516921036, + "grad_norm": 0.4498828649520874, + "learning_rate": 5.056145004420867e-06, + "loss": 0.3962491226196289, + "step": 101700 + }, + { + "epoch": 90.00884760008847, + "grad_norm": 0.45861297845840454, + "learning_rate": 5.0119363395225465e-06, + "loss": 0.39339271545410154, + "step": 101800 + }, + { + "epoch": 90.09732360097324, + "grad_norm": 0.5762381553649902, + "learning_rate": 4.967727674624226e-06, + "loss": 0.3896630096435547, + "step": 101900 + }, + { + "epoch": 90.185799601858, + "grad_norm": 0.5530878305435181, + "learning_rate": 4.923519009725907e-06, + "loss": 0.38933868408203126, + "step": 102000 + }, + { + "epoch": 90.27427560274276, + "grad_norm": 0.4769279360771179, + "learning_rate": 4.879310344827587e-06, + "loss": 0.38943870544433595, + "step": 102100 + }, + { + "epoch": 90.36275160362752, + "grad_norm": 0.5254392027854919, + "learning_rate": 4.835101679929267e-06, + "loss": 0.39091030120849607, + "step": 102200 + }, + { + "epoch": 90.45122760451227, + "grad_norm": 0.5098690986633301, + "learning_rate": 4.790893015030946e-06, + "loss": 0.39340557098388673, + "step": 102300 + }, + { + "epoch": 90.53970360539704, + "grad_norm": 0.5299240946769714, + "learning_rate": 4.746684350132626e-06, + "loss": 0.3925971221923828, + "step": 102400 + }, + { + "epoch": 90.62817960628179, + "grad_norm": 0.5023613572120667, + "learning_rate": 4.702475685234306e-06, + "loss": 0.3934814453125, + "step": 102500 + }, + { + "epoch": 90.71665560716656, + "grad_norm": 0.5217054486274719, + "learning_rate": 4.658267020335986e-06, + "loss": 0.39229228973388675, + "step": 102600 + }, + { + "epoch": 90.80513160805131, + "grad_norm": 0.4929801821708679, + "learning_rate": 4.6140583554376656e-06, + "loss": 0.39253700256347657, + "step": 102700 + }, + { + "epoch": 90.89360760893608, + "grad_norm": 0.4281506836414337, + "learning_rate": 4.569849690539346e-06, + "loss": 0.39423236846923826, + "step": 102800 + }, + { + "epoch": 90.98208360982083, + "grad_norm": 0.5606275796890259, + "learning_rate": 4.525641025641026e-06, + "loss": 0.39174613952636717, + "step": 102900 + }, + { + "epoch": 91.06989604069896, + "grad_norm": 0.40593966841697693, + "learning_rate": 4.481874447391689e-06, + "loss": 0.39004261016845704, + "step": 103000 + }, + { + "epoch": 91.15837204158372, + "grad_norm": 0.48218822479248047, + "learning_rate": 4.437665782493368e-06, + "loss": 0.39024349212646486, + "step": 103100 + }, + { + "epoch": 91.24684804246849, + "grad_norm": 0.4803628623485565, + "learning_rate": 4.393457117595049e-06, + "loss": 0.3893236541748047, + "step": 103200 + }, + { + "epoch": 91.33532404335324, + "grad_norm": 0.5424004197120667, + "learning_rate": 4.349248452696729e-06, + "loss": 0.3895704650878906, + "step": 103300 + }, + { + "epoch": 91.423800044238, + "grad_norm": 0.4238603711128235, + "learning_rate": 4.305039787798409e-06, + "loss": 0.3891864776611328, + "step": 103400 + }, + { + "epoch": 91.51227604512276, + "grad_norm": 0.5425596833229065, + "learning_rate": 4.2608311229000885e-06, + "loss": 0.3902478408813477, + "step": 103500 + }, + { + "epoch": 91.60075204600751, + "grad_norm": 0.529647946357727, + "learning_rate": 4.216622458001768e-06, + "loss": 0.39207550048828127, + "step": 103600 + }, + { + "epoch": 91.68922804689228, + "grad_norm": 0.42155396938323975, + "learning_rate": 4.1724137931034486e-06, + "loss": 0.3911063766479492, + "step": 103700 + }, + { + "epoch": 91.77770404777704, + "grad_norm": 0.4809010326862335, + "learning_rate": 4.128205128205129e-06, + "loss": 0.3927000427246094, + "step": 103800 + }, + { + "epoch": 91.8661800486618, + "grad_norm": 0.4598400890827179, + "learning_rate": 4.083996463306809e-06, + "loss": 0.38986122131347656, + "step": 103900 + }, + { + "epoch": 91.95465604954656, + "grad_norm": 0.52349853515625, + "learning_rate": 4.039787798408488e-06, + "loss": 0.3922639465332031, + "step": 104000 + }, + { + "epoch": 92.04246848042469, + "grad_norm": 0.5118280053138733, + "learning_rate": 3.996021220159151e-06, + "loss": 0.388396110534668, + "step": 104100 + }, + { + "epoch": 92.13094448130944, + "grad_norm": 0.49287110567092896, + "learning_rate": 3.951812555260832e-06, + "loss": 0.3882394027709961, + "step": 104200 + }, + { + "epoch": 92.21942048219421, + "grad_norm": 0.5597590804100037, + "learning_rate": 3.9076038903625115e-06, + "loss": 0.38768112182617187, + "step": 104300 + }, + { + "epoch": 92.30789648307896, + "grad_norm": 0.49123573303222656, + "learning_rate": 3.863395225464191e-06, + "loss": 0.38717472076416015, + "step": 104400 + }, + { + "epoch": 92.39637248396373, + "grad_norm": 0.5490599870681763, + "learning_rate": 3.819186560565871e-06, + "loss": 0.38968246459960937, + "step": 104500 + }, + { + "epoch": 92.48484848484848, + "grad_norm": 0.563377857208252, + "learning_rate": 3.7749778956675507e-06, + "loss": 0.3879422760009766, + "step": 104600 + }, + { + "epoch": 92.57332448573324, + "grad_norm": 0.5248238444328308, + "learning_rate": 3.7307692307692308e-06, + "loss": 0.3904239654541016, + "step": 104700 + }, + { + "epoch": 92.661800486618, + "grad_norm": 0.5977566242218018, + "learning_rate": 3.6865605658709104e-06, + "loss": 0.39140804290771486, + "step": 104800 + }, + { + "epoch": 92.75027648750276, + "grad_norm": 0.4992641508579254, + "learning_rate": 3.6423519009725912e-06, + "loss": 0.390025749206543, + "step": 104900 + }, + { + "epoch": 92.83875248838753, + "grad_norm": 0.5491787791252136, + "learning_rate": 3.598143236074271e-06, + "loss": 0.39107063293457034, + "step": 105000 + }, + { + "epoch": 92.92722848927228, + "grad_norm": 0.46409890055656433, + "learning_rate": 3.553934571175951e-06, + "loss": 0.3911115264892578, + "step": 105100 + }, + { + "epoch": 93.01504092015041, + "grad_norm": 0.5469849705696106, + "learning_rate": 3.5097259062776305e-06, + "loss": 0.3916855621337891, + "step": 105200 + }, + { + "epoch": 93.10351692103517, + "grad_norm": 0.496277391910553, + "learning_rate": 3.4655172413793105e-06, + "loss": 0.3867160415649414, + "step": 105300 + }, + { + "epoch": 93.19199292191993, + "grad_norm": 0.42929497361183167, + "learning_rate": 3.42130857648099e-06, + "loss": 0.38718021392822266, + "step": 105400 + }, + { + "epoch": 93.28046892280469, + "grad_norm": 0.406601220369339, + "learning_rate": 3.3770999115826706e-06, + "loss": 0.386837272644043, + "step": 105500 + }, + { + "epoch": 93.36894492368945, + "grad_norm": 0.48087212443351746, + "learning_rate": 3.3328912466843506e-06, + "loss": 0.3877327346801758, + "step": 105600 + }, + { + "epoch": 93.45742092457421, + "grad_norm": 0.5117219090461731, + "learning_rate": 3.2886825817860302e-06, + "loss": 0.38803070068359374, + "step": 105700 + }, + { + "epoch": 93.54589692545898, + "grad_norm": 0.6043857932090759, + "learning_rate": 3.2444739168877103e-06, + "loss": 0.38934085845947264, + "step": 105800 + }, + { + "epoch": 93.63437292634373, + "grad_norm": 0.5303599238395691, + "learning_rate": 3.20026525198939e-06, + "loss": 0.3872317123413086, + "step": 105900 + }, + { + "epoch": 93.72284892722848, + "grad_norm": 0.48868313431739807, + "learning_rate": 3.15605658709107e-06, + "loss": 0.3903642272949219, + "step": 106000 + }, + { + "epoch": 93.81132492811325, + "grad_norm": 0.5126668810844421, + "learning_rate": 3.11184792219275e-06, + "loss": 0.3893658447265625, + "step": 106100 + }, + { + "epoch": 93.899800928998, + "grad_norm": 0.5788067579269409, + "learning_rate": 3.06763925729443e-06, + "loss": 0.3887732315063477, + "step": 106200 + }, + { + "epoch": 93.98827692988277, + "grad_norm": 0.5931738615036011, + "learning_rate": 3.0234305923961096e-06, + "loss": 0.3858309555053711, + "step": 106300 + }, + { + "epoch": 94.07608936076089, + "grad_norm": 0.4667378067970276, + "learning_rate": 2.9792219274977896e-06, + "loss": 0.3882503128051758, + "step": 106400 + }, + { + "epoch": 94.16456536164566, + "grad_norm": 0.4540467858314514, + "learning_rate": 2.9350132625994697e-06, + "loss": 0.3879624557495117, + "step": 106500 + }, + { + "epoch": 94.25304136253041, + "grad_norm": 0.5249928832054138, + "learning_rate": 2.8908045977011493e-06, + "loss": 0.3871700668334961, + "step": 106600 + }, + { + "epoch": 94.34151736341518, + "grad_norm": 0.4902016520500183, + "learning_rate": 2.8465959328028297e-06, + "loss": 0.3865641403198242, + "step": 106700 + }, + { + "epoch": 94.42999336429993, + "grad_norm": 0.4490734934806824, + "learning_rate": 2.8023872679045093e-06, + "loss": 0.3874678039550781, + "step": 106800 + }, + { + "epoch": 94.5184693651847, + "grad_norm": 0.39259180426597595, + "learning_rate": 2.7581786030061894e-06, + "loss": 0.3864010238647461, + "step": 106900 + }, + { + "epoch": 94.60694536606945, + "grad_norm": 0.5160086154937744, + "learning_rate": 2.7139699381078694e-06, + "loss": 0.38762042999267576, + "step": 107000 + }, + { + "epoch": 94.6954213669542, + "grad_norm": 0.5112566947937012, + "learning_rate": 2.669761273209549e-06, + "loss": 0.38802257537841794, + "step": 107100 + }, + { + "epoch": 94.78389736783897, + "grad_norm": 0.48586076498031616, + "learning_rate": 2.625552608311229e-06, + "loss": 0.3883600616455078, + "step": 107200 + }, + { + "epoch": 94.87237336872373, + "grad_norm": 0.5169211626052856, + "learning_rate": 2.581343943412909e-06, + "loss": 0.38775413513183593, + "step": 107300 + }, + { + "epoch": 94.9608493696085, + "grad_norm": 0.4262998700141907, + "learning_rate": 2.537135278514589e-06, + "loss": 0.3891670608520508, + "step": 107400 + }, + { + "epoch": 95.04866180048661, + "grad_norm": 0.4452260434627533, + "learning_rate": 2.4929266136162687e-06, + "loss": 0.38474632263183595, + "step": 107500 + }, + { + "epoch": 95.13713780137138, + "grad_norm": 0.5349674820899963, + "learning_rate": 2.4487179487179488e-06, + "loss": 0.3851365661621094, + "step": 107600 + }, + { + "epoch": 95.22561380225613, + "grad_norm": 0.4277512729167938, + "learning_rate": 2.404509283819629e-06, + "loss": 0.38448490142822267, + "step": 107700 + }, + { + "epoch": 95.3140898031409, + "grad_norm": 0.5199966430664062, + "learning_rate": 2.360300618921309e-06, + "loss": 0.3855178451538086, + "step": 107800 + }, + { + "epoch": 95.40256580402566, + "grad_norm": 0.49931713938713074, + "learning_rate": 2.3160919540229885e-06, + "loss": 0.38597549438476564, + "step": 107900 + }, + { + "epoch": 95.49104180491042, + "grad_norm": 0.44888851046562195, + "learning_rate": 2.2718832891246685e-06, + "loss": 0.38637237548828124, + "step": 108000 + }, + { + "epoch": 95.57951780579518, + "grad_norm": 0.48020413517951965, + "learning_rate": 2.2276746242263485e-06, + "loss": 0.3860820388793945, + "step": 108100 + }, + { + "epoch": 95.66799380667993, + "grad_norm": 0.49320459365844727, + "learning_rate": 2.183465959328028e-06, + "loss": 0.3868730926513672, + "step": 108200 + }, + { + "epoch": 95.7564698075647, + "grad_norm": 0.4776149392127991, + "learning_rate": 2.1392572944297086e-06, + "loss": 0.38699729919433595, + "step": 108300 + }, + { + "epoch": 95.84494580844945, + "grad_norm": 0.4394153356552124, + "learning_rate": 2.095048629531388e-06, + "loss": 0.3858388137817383, + "step": 108400 + }, + { + "epoch": 95.93342180933422, + "grad_norm": 0.40809816122055054, + "learning_rate": 2.0508399646330682e-06, + "loss": 0.3865514373779297, + "step": 108500 + }, + { + "epoch": 96.02123424021234, + "grad_norm": 0.40297845005989075, + "learning_rate": 2.0070733863837314e-06, + "loss": 0.38520877838134765, + "step": 108600 + }, + { + "epoch": 96.1097102410971, + "grad_norm": 0.4992787837982178, + "learning_rate": 1.9628647214854114e-06, + "loss": 0.3824159622192383, + "step": 108700 + }, + { + "epoch": 96.19818624198186, + "grad_norm": 0.4386002719402313, + "learning_rate": 1.918656056587091e-06, + "loss": 0.3828225326538086, + "step": 108800 + }, + { + "epoch": 96.28666224286663, + "grad_norm": 0.4839923679828644, + "learning_rate": 1.874447391688771e-06, + "loss": 0.3837508392333984, + "step": 108900 + }, + { + "epoch": 96.37513824375138, + "grad_norm": 0.5360403656959534, + "learning_rate": 1.830238726790451e-06, + "loss": 0.3868670654296875, + "step": 109000 + }, + { + "epoch": 96.46361424463615, + "grad_norm": 0.5472413897514343, + "learning_rate": 1.786030061892131e-06, + "loss": 0.38740249633789064, + "step": 109100 + }, + { + "epoch": 96.5520902455209, + "grad_norm": 0.4783819019794464, + "learning_rate": 1.7418213969938107e-06, + "loss": 0.3851567459106445, + "step": 109200 + }, + { + "epoch": 96.64056624640567, + "grad_norm": 0.5319016575813293, + "learning_rate": 1.6976127320954906e-06, + "loss": 0.38549720764160156, + "step": 109300 + }, + { + "epoch": 96.72904224729042, + "grad_norm": 0.4579726755619049, + "learning_rate": 1.6534040671971708e-06, + "loss": 0.38684429168701173, + "step": 109400 + }, + { + "epoch": 96.81751824817518, + "grad_norm": 0.4699755012989044, + "learning_rate": 1.6091954022988506e-06, + "loss": 0.3849377822875977, + "step": 109500 + }, + { + "epoch": 96.90599424905994, + "grad_norm": 0.5681434273719788, + "learning_rate": 1.5649867374005304e-06, + "loss": 0.38494167327880857, + "step": 109600 + }, + { + "epoch": 96.9944702499447, + "grad_norm": 0.40921762585639954, + "learning_rate": 1.5207780725022105e-06, + "loss": 0.3864158630371094, + "step": 109700 + }, + { + "epoch": 97.08228268082283, + "grad_norm": 0.5271804928779602, + "learning_rate": 1.4765694076038905e-06, + "loss": 0.3854814529418945, + "step": 109800 + }, + { + "epoch": 97.17075868170758, + "grad_norm": 0.5390716195106506, + "learning_rate": 1.4323607427055703e-06, + "loss": 0.3826302719116211, + "step": 109900 + }, + { + "epoch": 97.25923468259235, + "grad_norm": 0.4738744795322418, + "learning_rate": 1.3881520778072502e-06, + "loss": 0.3834680938720703, + "step": 110000 + }, + { + "epoch": 97.3477106834771, + "grad_norm": 0.47226211428642273, + "learning_rate": 1.3439434129089302e-06, + "loss": 0.383985595703125, + "step": 110100 + }, + { + "epoch": 97.43618668436187, + "grad_norm": 0.44581323862075806, + "learning_rate": 1.29973474801061e-06, + "loss": 0.38392398834228514, + "step": 110200 + }, + { + "epoch": 97.52466268524662, + "grad_norm": 0.505975067615509, + "learning_rate": 1.25552608311229e-06, + "loss": 0.3842586898803711, + "step": 110300 + }, + { + "epoch": 97.61313868613139, + "grad_norm": 0.4737127125263214, + "learning_rate": 1.21131741821397e-06, + "loss": 0.3853626251220703, + "step": 110400 + }, + { + "epoch": 97.70161468701615, + "grad_norm": 0.42337724566459656, + "learning_rate": 1.16710875331565e-06, + "loss": 0.3860707092285156, + "step": 110500 + }, + { + "epoch": 97.7900906879009, + "grad_norm": 0.470935583114624, + "learning_rate": 1.12290008841733e-06, + "loss": 0.3849189758300781, + "step": 110600 + }, + { + "epoch": 97.87856668878567, + "grad_norm": 0.5499629974365234, + "learning_rate": 1.0786914235190098e-06, + "loss": 0.3849348068237305, + "step": 110700 + }, + { + "epoch": 97.96704268967042, + "grad_norm": 0.5295959711074829, + "learning_rate": 1.0344827586206898e-06, + "loss": 0.3844482040405273, + "step": 110800 + }, + { + "epoch": 98.05485512054855, + "grad_norm": 0.510218620300293, + "learning_rate": 9.902740937223696e-07, + "loss": 0.38250988006591796, + "step": 110900 + }, + { + "epoch": 98.1433311214333, + "grad_norm": 0.46240198612213135, + "learning_rate": 9.460654288240495e-07, + "loss": 0.38357555389404296, + "step": 111000 + }, + { + "epoch": 98.23180712231807, + "grad_norm": 0.5413907170295715, + "learning_rate": 9.018567639257295e-07, + "loss": 0.3835936737060547, + "step": 111100 + }, + { + "epoch": 98.32028312320283, + "grad_norm": 0.5282194018363953, + "learning_rate": 8.576480990274095e-07, + "loss": 0.38462539672851564, + "step": 111200 + }, + { + "epoch": 98.4087591240876, + "grad_norm": 0.4430619478225708, + "learning_rate": 8.134394341290893e-07, + "loss": 0.3831254196166992, + "step": 111300 + }, + { + "epoch": 98.49723512497235, + "grad_norm": 0.4520755410194397, + "learning_rate": 7.692307692307694e-07, + "loss": 0.38387767791748045, + "step": 111400 + }, + { + "epoch": 98.58571112585712, + "grad_norm": 0.42326220870018005, + "learning_rate": 7.250221043324492e-07, + "loss": 0.38382118225097656, + "step": 111500 + }, + { + "epoch": 98.67418712674187, + "grad_norm": 0.5536217093467712, + "learning_rate": 6.808134394341291e-07, + "loss": 0.3837322998046875, + "step": 111600 + }, + { + "epoch": 98.76266312762664, + "grad_norm": 0.47729530930519104, + "learning_rate": 6.36604774535809e-07, + "loss": 0.3840275192260742, + "step": 111700 + }, + { + "epoch": 98.85113912851139, + "grad_norm": 0.4712120294570923, + "learning_rate": 5.92396109637489e-07, + "loss": 0.3826910400390625, + "step": 111800 + }, + { + "epoch": 98.93961512939615, + "grad_norm": 0.4533778727054596, + "learning_rate": 5.481874447391689e-07, + "loss": 0.3849251174926758, + "step": 111900 + }, + { + "epoch": 99.02742756027428, + "grad_norm": 0.4762660264968872, + "learning_rate": 5.04420866489832e-07, + "loss": 0.38347198486328127, + "step": 112000 + }, + { + "epoch": 99.11590356115903, + "grad_norm": 0.49900203943252563, + "learning_rate": 4.6021220159151197e-07, + "loss": 0.38361885070800783, + "step": 112100 + }, + { + "epoch": 99.2043795620438, + "grad_norm": 0.5499697923660278, + "learning_rate": 4.1600353669319184e-07, + "loss": 0.38323490142822264, + "step": 112200 + }, + { + "epoch": 99.29285556292855, + "grad_norm": 0.49698564410209656, + "learning_rate": 3.717948717948718e-07, + "loss": 0.38394325256347656, + "step": 112300 + }, + { + "epoch": 99.38133156381332, + "grad_norm": 0.5000177621841431, + "learning_rate": 3.2758620689655175e-07, + "loss": 0.3833367156982422, + "step": 112400 + }, + { + "epoch": 99.46980756469807, + "grad_norm": 0.46179404854774475, + "learning_rate": 2.833775419982317e-07, + "loss": 0.38318233489990233, + "step": 112500 + }, + { + "epoch": 99.55828356558284, + "grad_norm": 0.5522571802139282, + "learning_rate": 2.391688770999116e-07, + "loss": 0.38181392669677733, + "step": 112600 + }, + { + "epoch": 99.6467595664676, + "grad_norm": 0.4453877806663513, + "learning_rate": 1.949602122015915e-07, + "loss": 0.38297233581542967, + "step": 112700 + }, + { + "epoch": 99.73523556735236, + "grad_norm": 0.46210813522338867, + "learning_rate": 1.5075154730327146e-07, + "loss": 0.3855221939086914, + "step": 112800 + }, + { + "epoch": 99.82371156823712, + "grad_norm": 0.5160776972770691, + "learning_rate": 1.0654288240495138e-07, + "loss": 0.38173851013183596, + "step": 112900 + }, + { + "epoch": 99.91218756912187, + "grad_norm": 0.5537967681884766, + "learning_rate": 6.23342175066313e-08, + "loss": 0.38249988555908204, + "step": 113000 + }, + { + "epoch": 100.0, + "grad_norm": 1.0702033042907715, + "learning_rate": 1.812555260831123e-08, + "loss": 0.3844903945922852, + "step": 113100 + } + ], + "logging_steps": 100, + "max_steps": 113100, + "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": 3.13788818128896e+16, + "train_batch_size": 8, + "trial_name": null, + "trial_params": null +} diff --git a/timecost/m8/realtabformer/rtf-m8-20260501_010220/rtf_checkpoints/checkpoint-113100/training_args.bin b/timecost/m8/realtabformer/rtf-m8-20260501_010220/rtf_checkpoints/checkpoint-113100/training_args.bin new file mode 100644 index 0000000000000000000000000000000000000000..34d68dc0e0fe1c1f12a2e581dd1b166aa7178a9e --- /dev/null +++ b/timecost/m8/realtabformer/rtf-m8-20260501_010220/rtf_checkpoints/checkpoint-113100/training_args.bin @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:9e2cd88337d1d846c6918d2b3b63fa3e5c93f12fefc082497590da854a564607 +size 5201 diff --git a/timecost/m8/realtabformer/rtf-m8-20260501_010220/runtime_result.json b/timecost/m8/realtabformer/rtf-m8-20260501_010220/runtime_result.json new file mode 100644 index 0000000000000000000000000000000000000000..7eb942e9a40f89f064dae0fda6c6934707132356 --- /dev/null +++ b/timecost/m8/realtabformer/rtf-m8-20260501_010220/runtime_result.json @@ -0,0 +1,27 @@ +{ + "dataset_id": "m8", + "model": "realtabformer", + "run_id": "rtf-m8-20260501_010220", + "public_gate_status": "pass", + "adapter_ready_status": "pass", + "train_status": "success", + "generate_status": "success", + "reason_code": null, + "reason_detail": null, + "artifacts": { + "synthetic_csv": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/m8/realtabformer/rtf-m8-20260501_010220/rtf-m8-36168-20260501_031538.csv", + "model_path": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/m8/realtabformer/rtf-m8-20260501_010220/models_100epochs" + }, + "timings": { + "train": { + "started_at": "2026-05-01T01:02:20", + "ended_at": "2026-05-01T03:15:38", + "duration_sec": 7997.818 + }, + "generate": { + "started_at": "2026-05-01T03:15:38", + "ended_at": "2026-05-01T03:17:52", + "duration_sec": 133.756 + } + } +} \ No newline at end of file diff --git a/timecost/m8/realtabformer/rtf-m8-20260501_010220/staged/public/staged_features.json b/timecost/m8/realtabformer/rtf-m8-20260501_010220/staged/public/staged_features.json new file mode 100644 index 0000000000000000000000000000000000000000..11323e8dc5c8a2eaafa8e404e60d3db7e244452a --- /dev/null +++ b/timecost/m8/realtabformer/rtf-m8-20260501_010220/staged/public/staged_features.json @@ -0,0 +1,87 @@ +[ + { + "feature_name": "age", + "data_type": "continuous", + "is_target": false + }, + { + "feature_name": "job", + "data_type": "categorical", + "is_target": false + }, + { + "feature_name": "marital", + "data_type": "categorical", + "is_target": false + }, + { + "feature_name": "education", + "data_type": "categorical", + "is_target": false + }, + { + "feature_name": "default", + "data_type": "binary", + "is_target": false + }, + { + "feature_name": "balance", + "data_type": "continuous", + "is_target": false + }, + { + "feature_name": "housing", + "data_type": "binary", + "is_target": false + }, + { + "feature_name": "loan", + "data_type": "binary", + "is_target": false + }, + { + "feature_name": "contact", + "data_type": "categorical", + "is_target": false + }, + { + "feature_name": "day", + "data_type": "continuous", + "is_target": false + }, + { + "feature_name": "month", + "data_type": "categorical", + "is_target": false + }, + { + "feature_name": "duration", + "data_type": "continuous", + "is_target": false + }, + { + "feature_name": "campaign", + "data_type": "continuous", + "is_target": false + }, + { + "feature_name": "pdays", + "data_type": "continuous", + "is_target": false + }, + { + "feature_name": "previous", + "data_type": "continuous", + "is_target": false + }, + { + "feature_name": "poutcome", + "data_type": "categorical", + "is_target": false + }, + { + "feature_name": "y", + "data_type": "binary", + "is_target": true + } +] \ No newline at end of file diff --git a/timecost/m8/realtabformer/rtf-m8-20260501_010220/staged/public/test.csv b/timecost/m8/realtabformer/rtf-m8-20260501_010220/staged/public/test.csv new file mode 100644 index 0000000000000000000000000000000000000000..e1c4866e541b88f8bcd3b88381c7e56d4df06443 --- /dev/null +++ b/timecost/m8/realtabformer/rtf-m8-20260501_010220/staged/public/test.csv @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:6221943e422e75c8317b79b7ef93e9cd01f61fdd8de6ce42909a8e4610966310 +size 370991 diff --git a/timecost/m8/realtabformer/rtf-m8-20260501_010220/staged/public/train.csv b/timecost/m8/realtabformer/rtf-m8-20260501_010220/staged/public/train.csv new file mode 100644 index 0000000000000000000000000000000000000000..fd7d8791840b6811b098820db4ed9e74cf5d627a --- /dev/null +++ b/timecost/m8/realtabformer/rtf-m8-20260501_010220/staged/public/train.csv @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:f9cbb71aa793de19869a138d41aea5808f772b31082741b185ffb8ca7b821833 +size 2964802 diff --git a/timecost/m8/realtabformer/rtf-m8-20260501_010220/staged/public/val.csv b/timecost/m8/realtabformer/rtf-m8-20260501_010220/staged/public/val.csv new file mode 100644 index 0000000000000000000000000000000000000000..09f0041420455c56eb1f79c62940d135e8bc6ea3 --- /dev/null +++ b/timecost/m8/realtabformer/rtf-m8-20260501_010220/staged/public/val.csv @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:5ee8612128aae92155906abc0fdc752ac24fd04d63c78c080c89e3900efe6525 +size 370535 diff --git a/timecost/m8/realtabformer/rtf-m8-20260501_010220/staged/realtabformer/adapter_report.json b/timecost/m8/realtabformer/rtf-m8-20260501_010220/staged/realtabformer/adapter_report.json new file mode 100644 index 0000000000000000000000000000000000000000..c65ce36e8ef5594b5c4fd3d9c129582ca3c59d82 --- /dev/null +++ b/timecost/m8/realtabformer/rtf-m8-20260501_010220/staged/realtabformer/adapter_report.json @@ -0,0 +1,7 @@ +{ + "adapter_ready_status": "pass", + "adapter_fail_reason_code": null, + "adapter_fail_detail": null, + "adapter_transforms_applied": [], + "model_input_manifest": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/m8/realtabformer/rtf-m8-20260501_010220/staged/realtabformer/model_input_manifest.json" +} \ No newline at end of file diff --git a/timecost/m8/realtabformer/rtf-m8-20260501_010220/staged/realtabformer/adapter_transforms_applied.json b/timecost/m8/realtabformer/rtf-m8-20260501_010220/staged/realtabformer/adapter_transforms_applied.json new file mode 100644 index 0000000000000000000000000000000000000000..0637a088a01e8ddab3bf3fa98dbe804cbde1a0dc --- /dev/null +++ b/timecost/m8/realtabformer/rtf-m8-20260501_010220/staged/realtabformer/adapter_transforms_applied.json @@ -0,0 +1 @@ +[] \ No newline at end of file diff --git a/timecost/m8/realtabformer/rtf-m8-20260501_010220/staged/realtabformer/model_input_manifest.json b/timecost/m8/realtabformer/rtf-m8-20260501_010220/staged/realtabformer/model_input_manifest.json new file mode 100644 index 0000000000000000000000000000000000000000..ce8dd615f76a7fcfba9df45bff111bb26b6253d8 --- /dev/null +++ b/timecost/m8/realtabformer/rtf-m8-20260501_010220/staged/realtabformer/model_input_manifest.json @@ -0,0 +1,353 @@ +{ + "dataset_id": "m8", + "model": "realtabformer", + "target_column": "y", + "task_type": "classification", + "column_schema": [ + { + "name": "age", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 76, + "unique_ratio": 0.002101, + "example_values": [ + "40", + "52", + "31", + "51", + "44" + ] + } + }, + { + "name": "job", + "role": "feature", + "semantic_type": "categorical", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 12, + "unique_ratio": 0.000332, + "example_values": [ + "admin.", + "technician", + "entrepreneur", + "blue-collar", + "services" + ] + } + }, + { + "name": "marital", + "role": "feature", + "semantic_type": "categorical", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 3, + "unique_ratio": 8.3e-05, + "example_values": [ + "single", + "married", + "divorced" + ] + } + }, + { + "name": "education", + "role": "feature", + "semantic_type": "categorical", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 4, + "unique_ratio": 0.000111, + "example_values": [ + "secondary", + "tertiary", + "primary", + "unknown" + ] + } + }, + { + "name": "default", + "role": "feature", + "semantic_type": "boolean", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 2, + "unique_ratio": 5.5e-05, + "example_values": [ + "no", + "yes" + ] + } + }, + { + "name": "balance", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 6604, + "unique_ratio": 0.182592, + "example_values": [ + "419", + "31", + "7567", + "315", + "737" + ] + } + }, + { + "name": "housing", + "role": "feature", + "semantic_type": "boolean", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 2, + "unique_ratio": 5.5e-05, + "example_values": [ + "no", + "yes" + ] + } + }, + { + "name": "loan", + "role": "feature", + "semantic_type": "boolean", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 2, + "unique_ratio": 5.5e-05, + "example_values": [ + "yes", + "no" + ] + } + }, + { + "name": "contact", + "role": "feature", + "semantic_type": "categorical", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 3, + "unique_ratio": 8.3e-05, + "example_values": [ + "cellular", + "unknown", + "telephone" + ] + } + }, + { + "name": "day", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 31, + "unique_ratio": 0.000857, + "example_values": [ + "28", + "7", + "11", + "12", + "14" + ] + } + }, + { + "name": "month", + "role": "feature", + "semantic_type": "categorical", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 12, + "unique_ratio": 0.000332, + "example_values": [ + "jul", + "may", + "aug", + "oct", + "feb" + ] + } + }, + { + "name": "duration", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 1507, + "unique_ratio": 0.041667, + "example_values": [ + "100", + "120", + "70", + "291", + "102" + ] + } + }, + { + "name": "campaign", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 47, + "unique_ratio": 0.001299, + "example_values": [ + "16", + "1", + "2", + "5", + "4" + ] + } + }, + { + "name": "pdays", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 524, + "unique_ratio": 0.014488, + "example_values": [ + "-1", + "91", + "365", + "189", + "117" + ] + } + }, + { + "name": "previous", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 38, + "unique_ratio": 0.001051, + "example_values": [ + "0", + "4", + "1", + "2", + "3" + ] + } + }, + { + "name": "poutcome", + "role": "feature", + "semantic_type": "categorical", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 4, + "unique_ratio": 0.000111, + "example_values": [ + "unknown", + "failure", + "other", + "success" + ] + } + }, + { + "name": "y", + "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": 5.5e-05, + "example_values": [ + "no", + "yes" + ] + } + } + ], + "public_manifest": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/m8/realtabformer/rtf-m8-20260501_010220/public_gate/staged_input_manifest.json", + "train_csv": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/m8/realtabformer/rtf-m8-20260501_010220/staged/public/train.csv", + "val_csv": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/m8/realtabformer/rtf-m8-20260501_010220/staged/public/val.csv", + "test_csv": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/m8/realtabformer/rtf-m8-20260501_010220/staged/public/test.csv", + "features_json": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/m8/realtabformer/rtf-m8-20260501_010220/staged/public/staged_features.json", + "public_gate_report": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/m8/realtabformer/rtf-m8-20260501_010220/public_gate/public_gate_report.json" +} \ No newline at end of file diff --git a/timecost/m8/realtabformer/rtf-m8-20260501_010220/train_20260501_010220.log b/timecost/m8/realtabformer/rtf-m8-20260501_010220/train_20260501_010220.log new file mode 100644 index 0000000000000000000000000000000000000000..6ab6b59905a502408838f57cdd0b254b2fa9193b --- /dev/null +++ b/timecost/m8/realtabformer/rtf-m8-20260501_010220/train_20260501_010220.log @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:0427314165c5bae27586175d44179266ad56e7e28645b17f64e35dea3a1cc580 +size 4395012 diff --git a/timecost/m8/tabbyflow/tabbyflow-m8-20260501_012923/_tabbyflow_gen.py b/timecost/m8/tabbyflow/tabbyflow-m8-20260501_012923/_tabbyflow_gen.py new file mode 100644 index 0000000000000000000000000000000000000000..316d01cb18e4758a8b93290e2a38fae0f79ca8a9 --- /dev/null +++ b/timecost/m8/tabbyflow/tabbyflow-m8-20260501_012923/_tabbyflow_gen.py @@ -0,0 +1,33 @@ + +import os, shutil, subprocess, sys +root = r"/workspace/ef-vfm" +name = r"pipeline_m8" +src = r"/work/output-Benchmark-trainonly-v1/m8/tabbyflow/tabbyflow-m8-20260501_012923/tabular_bundle/pipeline_m8" +dst_data = os.path.join(root, "data", name) +shutil.rmtree(dst_data, ignore_errors=True) +shutil.copytree(src, dst_data) +dst_syn = os.path.join(root, "synthetic", name) +os.makedirs(dst_syn, exist_ok=True) +for fn in ("real.csv", "test.csv", "val.csv"): + shutil.copy(os.path.join(src, fn), os.path.join(dst_syn, fn)) +os.chdir(root) +os.environ["PYTHONPATH"] = root + os.pathsep + os.environ.get("PYTHONPATH", "") +subprocess.check_call([ + sys.executable, "main.py", + "--dataname", name, "--mode", "test", "--gpu", "0", + "--no_wandb", "--exp_name", r"adapter_efvfm", + "--ckpt_path", r"/workspace/ef-vfm/ef_vfm/ckpt/pipeline_m8/adapter_efvfm/model_500.pt", + "--num_samples_to_generate", str(int(36168)), +]) +base = os.path.join(root, "ef_vfm", "result", name, r"adapter_efvfm") +best = None +best_t = -1.0 +for r, _, files in os.walk(base): + if "samples.csv" in files: + p = os.path.join(r, "samples.csv") + t = os.path.getmtime(p) + if t > best_t: + best_t, best = t, p +if not best: + raise SystemExit("tabbyflow: no samples.csv in " + base) +shutil.copy(best, r"/work/output-Benchmark-trainonly-v1/m8/tabbyflow/tabbyflow-m8-20260501_012923/tabbyflow-m8-36168-20260501_014108.csv") diff --git a/timecost/m8/tabbyflow/tabbyflow-m8-20260501_012923/_tabbyflow_train.py b/timecost/m8/tabbyflow/tabbyflow-m8-20260501_012923/_tabbyflow_train.py new file mode 100644 index 0000000000000000000000000000000000000000..53dd60fba1a50953b40ceef15d6023e266f8dc3f --- /dev/null +++ b/timecost/m8/tabbyflow/tabbyflow-m8-20260501_012923/_tabbyflow_train.py @@ -0,0 +1,22 @@ + +import os, shutil, subprocess, sys +root = r"/workspace/ef-vfm" +name = r"pipeline_m8" +src = r"/work/output-Benchmark-trainonly-v1/m8/tabbyflow/tabbyflow-m8-20260501_012923/tabular_bundle/pipeline_m8" +os.makedirs(os.path.join(root, "data", name), exist_ok=True) +dst_data = os.path.join(root, "data", name) +dst_syn = os.path.join(root, "synthetic", name) +shutil.rmtree(dst_data, ignore_errors=True) +shutil.copytree(src, dst_data) +os.makedirs(dst_syn, exist_ok=True) +for fn in ("real.csv", "test.csv", "val.csv"): + shutil.copy(os.path.join(src, fn), os.path.join(dst_syn, fn)) +os.chdir(root) +os.environ["PYTHONPATH"] = root + os.pathsep + os.environ.get("PYTHONPATH", "") +os.environ["EFVFM_SMOKE_STEPS"] = "500" +os.environ["EFVFM_ADAPTER_TRAIN"] = "1" +subprocess.check_call([ + sys.executable, "main.py", + "--dataname", name, "--mode", "train", "--gpu", "0", + "--no_wandb", "--exp_name", r"adapter_efvfm", +]) diff --git a/timecost/m8/tabbyflow/tabbyflow-m8-20260501_012923/gen_20260501_014108.log b/timecost/m8/tabbyflow/tabbyflow-m8-20260501_012923/gen_20260501_014108.log new file mode 100644 index 0000000000000000000000000000000000000000..b7fcf91837f2bae294a952a1c85a4b1f6ed0a9b8 --- /dev/null +++ b/timecost/m8/tabbyflow/tabbyflow-m8-20260501_012923/gen_20260501_014108.log @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:ab8c7881ad26283d568e50fd80c89761f6eb97ac08e569b0037fad3cd5950af1 +size 3260 diff --git a/timecost/m8/tabbyflow/tabbyflow-m8-20260501_012923/input_snapshot.json b/timecost/m8/tabbyflow/tabbyflow-m8-20260501_012923/input_snapshot.json new file mode 100644 index 0000000000000000000000000000000000000000..ec8817ae110b75f5e8cfe292d9e14b531a4a23e5 --- /dev/null +++ b/timecost/m8/tabbyflow/tabbyflow-m8-20260501_012923/input_snapshot.json @@ -0,0 +1,36 @@ +{ + "dataset_id": "m8", + "model": "tabbyflow", + "inputs": { + "train_csv": { + "path": "/data/jialinzhang/SynthesizePipeline-server/DatasetNew/m8/m8-train.csv", + "exists": true, + "size": 2964802, + "sha256": "f9cbb71aa793de19869a138d41aea5808f772b31082741b185ffb8ca7b821833" + }, + "val_csv": { + "path": "/data/jialinzhang/SynthesizePipeline-server/DatasetNew/m8/m8-val.csv", + "exists": true, + "size": 370535, + "sha256": "5ee8612128aae92155906abc0fdc752ac24fd04d63c78c080c89e3900efe6525" + }, + "test_csv": { + "path": "/data/jialinzhang/SynthesizePipeline-server/DatasetNew/m8/m8-test.csv", + "exists": true, + "size": 370991, + "sha256": "6221943e422e75c8317b79b7ef93e9cd01f61fdd8de6ce42909a8e4610966310" + }, + "profile_json": { + "path": "/data/jialinzhang/SynthesizePipeline-server/DatasetNew/artifacts/data_core/tabular/m8/m8-dataset_profile.json", + "exists": true, + "size": 6553, + "sha256": "44f883858641584035a0a8859cb95dbcd3a023c03cbc76931aadfc4c70ef871f" + }, + "contract_json": { + "path": "/data/jialinzhang/SynthesizePipeline-server/DatasetNew/artifacts/data_core/tabular/m8/m8-dataset_contract_v1.json", + "exists": true, + "size": 8214, + "sha256": "e76df134780ec9b6c6c625a54e5d0c1935e9f4a7d09320ad19279a0492438d92" + } + } +} \ No newline at end of file diff --git a/timecost/m8/tabbyflow/tabbyflow-m8-20260501_012923/models_tabbyflow/trained.pt b/timecost/m8/tabbyflow/tabbyflow-m8-20260501_012923/models_tabbyflow/trained.pt new file mode 100644 index 0000000000000000000000000000000000000000..f063a878c470d9d40f79db79881596e1e497dffd --- /dev/null +++ b/timecost/m8/tabbyflow/tabbyflow-m8-20260501_012923/models_tabbyflow/trained.pt @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:adb734fec12f2251befd371dca69e481b19464aded2a6823105a01b4be6ddbe5 +size 40 diff --git a/timecost/m8/tabbyflow/tabbyflow-m8-20260501_012923/public_gate/normalized_schema_snapshot.json b/timecost/m8/tabbyflow/tabbyflow-m8-20260501_012923/public_gate/normalized_schema_snapshot.json new file mode 100644 index 0000000000000000000000000000000000000000..5e616edd2b7924c5e07f02ccbbb842529655f52a --- /dev/null +++ b/timecost/m8/tabbyflow/tabbyflow-m8-20260501_012923/public_gate/normalized_schema_snapshot.json @@ -0,0 +1,346 @@ +{ + "dataset_id": "m8", + "target_column": "y", + "task_type": "classification", + "columns": [ + { + "name": "age", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 76, + "unique_ratio": 0.002101, + "example_values": [ + "40", + "52", + "31", + "51", + "44" + ] + } + }, + { + "name": "job", + "role": "feature", + "semantic_type": "categorical", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 12, + "unique_ratio": 0.000332, + "example_values": [ + "admin.", + "technician", + "entrepreneur", + "blue-collar", + "services" + ] + } + }, + { + "name": "marital", + "role": "feature", + "semantic_type": "categorical", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 3, + "unique_ratio": 8.3e-05, + "example_values": [ + "single", + "married", + "divorced" + ] + } + }, + { + "name": "education", + "role": "feature", + "semantic_type": "categorical", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 4, + "unique_ratio": 0.000111, + "example_values": [ + "secondary", + "tertiary", + "primary", + "unknown" + ] + } + }, + { + "name": "default", + "role": "feature", + "semantic_type": "boolean", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 2, + "unique_ratio": 5.5e-05, + "example_values": [ + "no", + "yes" + ] + } + }, + { + "name": "balance", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 6604, + "unique_ratio": 0.182592, + "example_values": [ + "419", + "31", + "7567", + "315", + "737" + ] + } + }, + { + "name": "housing", + "role": "feature", + "semantic_type": "boolean", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 2, + "unique_ratio": 5.5e-05, + "example_values": [ + "no", + "yes" + ] + } + }, + { + "name": "loan", + "role": "feature", + "semantic_type": "boolean", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 2, + "unique_ratio": 5.5e-05, + "example_values": [ + "yes", + "no" + ] + } + }, + { + "name": "contact", + "role": "feature", + "semantic_type": "categorical", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 3, + "unique_ratio": 8.3e-05, + "example_values": [ + "cellular", + "unknown", + "telephone" + ] + } + }, + { + "name": "day", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 31, + "unique_ratio": 0.000857, + "example_values": [ + "28", + "7", + "11", + "12", + "14" + ] + } + }, + { + "name": "month", + "role": "feature", + "semantic_type": "categorical", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 12, + "unique_ratio": 0.000332, + "example_values": [ + "jul", + "may", + "aug", + "oct", + "feb" + ] + } + }, + { + "name": "duration", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 1507, + "unique_ratio": 0.041667, + "example_values": [ + "100", + "120", + "70", + "291", + "102" + ] + } + }, + { + "name": "campaign", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 47, + "unique_ratio": 0.001299, + "example_values": [ + "16", + "1", + "2", + "5", + "4" + ] + } + }, + { + "name": "pdays", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 524, + "unique_ratio": 0.014488, + "example_values": [ + "-1", + "91", + "365", + "189", + "117" + ] + } + }, + { + "name": "previous", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 38, + "unique_ratio": 0.001051, + "example_values": [ + "0", + "4", + "1", + "2", + "3" + ] + } + }, + { + "name": "poutcome", + "role": "feature", + "semantic_type": "categorical", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 4, + "unique_ratio": 0.000111, + "example_values": [ + "unknown", + "failure", + "other", + "success" + ] + } + }, + { + "name": "y", + "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": 5.5e-05, + "example_values": [ + "no", + "yes" + ] + } + } + ] +} \ No newline at end of file diff --git a/timecost/m8/tabbyflow/tabbyflow-m8-20260501_012923/public_gate/public_gate_report.json b/timecost/m8/tabbyflow/tabbyflow-m8-20260501_012923/public_gate/public_gate_report.json new file mode 100644 index 0000000000000000000000000000000000000000..318ead0018618096d718d3ec1140561db7e0a70f --- /dev/null +++ b/timecost/m8/tabbyflow/tabbyflow-m8-20260501_012923/public_gate/public_gate_report.json @@ -0,0 +1,37 @@ +{ + "dataset_id": "m8", + "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": "y", + "task_type": "classification", + "input_splits": { + "train": "/data/jialinzhang/SynthesizePipeline-server/DatasetNew/m8/m8-train.csv", + "val": "/data/jialinzhang/SynthesizePipeline-server/DatasetNew/m8/m8-val.csv", + "test": "/data/jialinzhang/SynthesizePipeline-server/DatasetNew/m8/m8-test.csv" + } +} \ No newline at end of file diff --git a/timecost/m8/tabbyflow/tabbyflow-m8-20260501_012923/public_gate/staged_input_manifest.json b/timecost/m8/tabbyflow/tabbyflow-m8-20260501_012923/public_gate/staged_input_manifest.json new file mode 100644 index 0000000000000000000000000000000000000000..6af55fb410bec84a384d2a3729a460452e1a80ed --- /dev/null +++ b/timecost/m8/tabbyflow/tabbyflow-m8-20260501_012923/public_gate/staged_input_manifest.json @@ -0,0 +1,351 @@ +{ + "dataset_id": "m8", + "target_column": "y", + "task_type": "classification", + "train_csv": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/m8/tabbyflow/tabbyflow-m8-20260501_012923/staged/public/train.csv", + "val_csv": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/m8/tabbyflow/tabbyflow-m8-20260501_012923/staged/public/val.csv", + "test_csv": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/m8/tabbyflow/tabbyflow-m8-20260501_012923/staged/public/test.csv", + "features_json": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/m8/tabbyflow/tabbyflow-m8-20260501_012923/staged/public/staged_features.json", + "public_gate_report": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/m8/tabbyflow/tabbyflow-m8-20260501_012923/public_gate/public_gate_report.json", + "column_schema": [ + { + "name": "age", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 76, + "unique_ratio": 0.002101, + "example_values": [ + "40", + "52", + "31", + "51", + "44" + ] + } + }, + { + "name": "job", + "role": "feature", + "semantic_type": "categorical", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 12, + "unique_ratio": 0.000332, + "example_values": [ + "admin.", + "technician", + "entrepreneur", + "blue-collar", + "services" + ] + } + }, + { + "name": "marital", + "role": "feature", + "semantic_type": "categorical", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 3, + "unique_ratio": 8.3e-05, + "example_values": [ + "single", + "married", + "divorced" + ] + } + }, + { + "name": "education", + "role": "feature", + "semantic_type": "categorical", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 4, + "unique_ratio": 0.000111, + "example_values": [ + "secondary", + "tertiary", + "primary", + "unknown" + ] + } + }, + { + "name": "default", + "role": "feature", + "semantic_type": "boolean", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 2, + "unique_ratio": 5.5e-05, + "example_values": [ + "no", + "yes" + ] + } + }, + { + "name": "balance", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 6604, + "unique_ratio": 0.182592, + "example_values": [ + "419", + "31", + "7567", + "315", + "737" + ] + } + }, + { + "name": "housing", + "role": "feature", + "semantic_type": "boolean", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 2, + "unique_ratio": 5.5e-05, + "example_values": [ + "no", + "yes" + ] + } + }, + { + "name": "loan", + "role": "feature", + "semantic_type": "boolean", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 2, + "unique_ratio": 5.5e-05, + "example_values": [ + "yes", + "no" + ] + } + }, + { + "name": "contact", + "role": "feature", + "semantic_type": "categorical", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 3, + "unique_ratio": 8.3e-05, + "example_values": [ + "cellular", + "unknown", + "telephone" + ] + } + }, + { + "name": "day", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 31, + "unique_ratio": 0.000857, + "example_values": [ + "28", + "7", + "11", + "12", + "14" + ] + } + }, + { + "name": "month", + "role": "feature", + "semantic_type": "categorical", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 12, + "unique_ratio": 0.000332, + "example_values": [ + "jul", + "may", + "aug", + "oct", + "feb" + ] + } + }, + { + "name": "duration", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 1507, + "unique_ratio": 0.041667, + "example_values": [ + "100", + "120", + "70", + "291", + "102" + ] + } + }, + { + "name": "campaign", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 47, + "unique_ratio": 0.001299, + "example_values": [ + "16", + "1", + "2", + "5", + "4" + ] + } + }, + { + "name": "pdays", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 524, + "unique_ratio": 0.014488, + "example_values": [ + "-1", + "91", + "365", + "189", + "117" + ] + } + }, + { + "name": "previous", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 38, + "unique_ratio": 0.001051, + "example_values": [ + "0", + "4", + "1", + "2", + "3" + ] + } + }, + { + "name": "poutcome", + "role": "feature", + "semantic_type": "categorical", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 4, + "unique_ratio": 0.000111, + "example_values": [ + "unknown", + "failure", + "other", + "success" + ] + } + }, + { + "name": "y", + "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": 5.5e-05, + "example_values": [ + "no", + "yes" + ] + } + } + ] +} \ No newline at end of file diff --git a/timecost/m8/tabbyflow/tabbyflow-m8-20260501_012923/runtime_result.json b/timecost/m8/tabbyflow/tabbyflow-m8-20260501_012923/runtime_result.json new file mode 100644 index 0000000000000000000000000000000000000000..9dafc71bfa9740d79e98150493d90d62f88755ef --- /dev/null +++ b/timecost/m8/tabbyflow/tabbyflow-m8-20260501_012923/runtime_result.json @@ -0,0 +1,27 @@ +{ + "dataset_id": "m8", + "model": "tabbyflow", + "run_id": "tabbyflow-m8-20260501_012923", + "public_gate_status": "pass", + "adapter_ready_status": "pass", + "train_status": "success", + "generate_status": "success", + "reason_code": null, + "reason_detail": null, + "artifacts": { + "synthetic_csv": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/m8/tabbyflow/tabbyflow-m8-20260501_012923/tabbyflow-m8-36168-20260501_014108.csv", + "model_path": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/m8/tabbyflow/tabbyflow-m8-20260501_012923/models_tabbyflow/trained.pt" + }, + "timings": { + "train": { + "started_at": "2026-05-01T01:29:23", + "ended_at": "2026-05-01T01:41:08", + "duration_sec": 704.581 + }, + "generate": { + "started_at": "2026-05-01T01:41:08", + "ended_at": "2026-05-01T01:41:26", + "duration_sec": 17.834 + } + } +} \ No newline at end of file diff --git a/timecost/m8/tabbyflow/tabbyflow-m8-20260501_012923/staged/public/staged_features.json b/timecost/m8/tabbyflow/tabbyflow-m8-20260501_012923/staged/public/staged_features.json new file mode 100644 index 0000000000000000000000000000000000000000..11323e8dc5c8a2eaafa8e404e60d3db7e244452a --- /dev/null +++ b/timecost/m8/tabbyflow/tabbyflow-m8-20260501_012923/staged/public/staged_features.json @@ -0,0 +1,87 @@ +[ + { + "feature_name": "age", + "data_type": "continuous", + "is_target": false + }, + { + "feature_name": "job", + "data_type": "categorical", + "is_target": false + }, + { + "feature_name": "marital", + "data_type": "categorical", + "is_target": false + }, + { + "feature_name": "education", + "data_type": "categorical", + "is_target": false + }, + { + "feature_name": "default", + "data_type": "binary", + "is_target": false + }, + { + "feature_name": "balance", + "data_type": "continuous", + "is_target": false + }, + { + "feature_name": "housing", + "data_type": "binary", + "is_target": false + }, + { + "feature_name": "loan", + "data_type": "binary", + "is_target": false + }, + { + "feature_name": "contact", + "data_type": "categorical", + "is_target": false + }, + { + "feature_name": "day", + "data_type": "continuous", + "is_target": false + }, + { + "feature_name": "month", + "data_type": "categorical", + "is_target": false + }, + { + "feature_name": "duration", + "data_type": "continuous", + "is_target": false + }, + { + "feature_name": "campaign", + "data_type": "continuous", + "is_target": false + }, + { + "feature_name": "pdays", + "data_type": "continuous", + "is_target": false + }, + { + "feature_name": "previous", + "data_type": "continuous", + "is_target": false + }, + { + "feature_name": "poutcome", + "data_type": "categorical", + "is_target": false + }, + { + "feature_name": "y", + "data_type": "binary", + "is_target": true + } +] \ No newline at end of file diff --git a/timecost/m8/tabbyflow/tabbyflow-m8-20260501_012923/staged/public/test.csv b/timecost/m8/tabbyflow/tabbyflow-m8-20260501_012923/staged/public/test.csv new file mode 100644 index 0000000000000000000000000000000000000000..e1c4866e541b88f8bcd3b88381c7e56d4df06443 --- /dev/null +++ b/timecost/m8/tabbyflow/tabbyflow-m8-20260501_012923/staged/public/test.csv @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:6221943e422e75c8317b79b7ef93e9cd01f61fdd8de6ce42909a8e4610966310 +size 370991 diff --git a/timecost/m8/tabbyflow/tabbyflow-m8-20260501_012923/staged/public/train.csv b/timecost/m8/tabbyflow/tabbyflow-m8-20260501_012923/staged/public/train.csv new file mode 100644 index 0000000000000000000000000000000000000000..fd7d8791840b6811b098820db4ed9e74cf5d627a --- /dev/null +++ b/timecost/m8/tabbyflow/tabbyflow-m8-20260501_012923/staged/public/train.csv @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:f9cbb71aa793de19869a138d41aea5808f772b31082741b185ffb8ca7b821833 +size 2964802 diff --git a/timecost/m8/tabbyflow/tabbyflow-m8-20260501_012923/staged/public/val.csv b/timecost/m8/tabbyflow/tabbyflow-m8-20260501_012923/staged/public/val.csv new file mode 100644 index 0000000000000000000000000000000000000000..09f0041420455c56eb1f79c62940d135e8bc6ea3 --- /dev/null +++ b/timecost/m8/tabbyflow/tabbyflow-m8-20260501_012923/staged/public/val.csv @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:5ee8612128aae92155906abc0fdc752ac24fd04d63c78c080c89e3900efe6525 +size 370535 diff --git a/timecost/m8/tabbyflow/tabbyflow-m8-20260501_012923/staged/tabbyflow/adapter_report.json b/timecost/m8/tabbyflow/tabbyflow-m8-20260501_012923/staged/tabbyflow/adapter_report.json new file mode 100644 index 0000000000000000000000000000000000000000..00f55adc0ada0cf42e538627c095b875f0289b8d --- /dev/null +++ b/timecost/m8/tabbyflow/tabbyflow-m8-20260501_012923/staged/tabbyflow/adapter_report.json @@ -0,0 +1,7 @@ +{ + "adapter_ready_status": "pass", + "adapter_fail_reason_code": null, + "adapter_fail_detail": null, + "adapter_transforms_applied": [], + "model_input_manifest": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/m8/tabbyflow/tabbyflow-m8-20260501_012923/staged/tabbyflow/model_input_manifest.json" +} \ No newline at end of file diff --git a/timecost/m8/tabbyflow/tabbyflow-m8-20260501_012923/staged/tabbyflow/adapter_transforms_applied.json b/timecost/m8/tabbyflow/tabbyflow-m8-20260501_012923/staged/tabbyflow/adapter_transforms_applied.json new file mode 100644 index 0000000000000000000000000000000000000000..0637a088a01e8ddab3bf3fa98dbe804cbde1a0dc --- /dev/null +++ b/timecost/m8/tabbyflow/tabbyflow-m8-20260501_012923/staged/tabbyflow/adapter_transforms_applied.json @@ -0,0 +1 @@ +[] \ No newline at end of file diff --git a/timecost/m8/tabbyflow/tabbyflow-m8-20260501_012923/staged/tabbyflow/model_input_manifest.json b/timecost/m8/tabbyflow/tabbyflow-m8-20260501_012923/staged/tabbyflow/model_input_manifest.json new file mode 100644 index 0000000000000000000000000000000000000000..2fa7f1ba7a06c85ed019cf4320c70008a85c6bb4 --- /dev/null +++ b/timecost/m8/tabbyflow/tabbyflow-m8-20260501_012923/staged/tabbyflow/model_input_manifest.json @@ -0,0 +1,353 @@ +{ + "dataset_id": "m8", + "model": "tabbyflow", + "target_column": "y", + "task_type": "classification", + "column_schema": [ + { + "name": "age", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 76, + "unique_ratio": 0.002101, + "example_values": [ + "40", + "52", + "31", + "51", + "44" + ] + } + }, + { + "name": "job", + "role": "feature", + "semantic_type": "categorical", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 12, + "unique_ratio": 0.000332, + "example_values": [ + "admin.", + "technician", + "entrepreneur", + "blue-collar", + "services" + ] + } + }, + { + "name": "marital", + "role": "feature", + "semantic_type": "categorical", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 3, + "unique_ratio": 8.3e-05, + "example_values": [ + "single", + "married", + "divorced" + ] + } + }, + { + "name": "education", + "role": "feature", + "semantic_type": "categorical", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 4, + "unique_ratio": 0.000111, + "example_values": [ + "secondary", + "tertiary", + "primary", + "unknown" + ] + } + }, + { + "name": "default", + "role": "feature", + "semantic_type": "boolean", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 2, + "unique_ratio": 5.5e-05, + "example_values": [ + "no", + "yes" + ] + } + }, + { + "name": "balance", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 6604, + "unique_ratio": 0.182592, + "example_values": [ + "419", + "31", + "7567", + "315", + "737" + ] + } + }, + { + "name": "housing", + "role": "feature", + "semantic_type": "boolean", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 2, + "unique_ratio": 5.5e-05, + "example_values": [ + "no", + "yes" + ] + } + }, + { + "name": "loan", + "role": "feature", + "semantic_type": "boolean", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 2, + "unique_ratio": 5.5e-05, + "example_values": [ + "yes", + "no" + ] + } + }, + { + "name": "contact", + "role": "feature", + "semantic_type": "categorical", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 3, + "unique_ratio": 8.3e-05, + "example_values": [ + "cellular", + "unknown", + "telephone" + ] + } + }, + { + "name": "day", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 31, + "unique_ratio": 0.000857, + "example_values": [ + "28", + "7", + "11", + "12", + "14" + ] + } + }, + { + "name": "month", + "role": "feature", + "semantic_type": "categorical", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 12, + "unique_ratio": 0.000332, + "example_values": [ + "jul", + "may", + "aug", + "oct", + "feb" + ] + } + }, + { + "name": "duration", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 1507, + "unique_ratio": 0.041667, + "example_values": [ + "100", + "120", + "70", + "291", + "102" + ] + } + }, + { + "name": "campaign", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 47, + "unique_ratio": 0.001299, + "example_values": [ + "16", + "1", + "2", + "5", + "4" + ] + } + }, + { + "name": "pdays", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 524, + "unique_ratio": 0.014488, + "example_values": [ + "-1", + "91", + "365", + "189", + "117" + ] + } + }, + { + "name": "previous", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 38, + "unique_ratio": 0.001051, + "example_values": [ + "0", + "4", + "1", + "2", + "3" + ] + } + }, + { + "name": "poutcome", + "role": "feature", + "semantic_type": "categorical", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 4, + "unique_ratio": 0.000111, + "example_values": [ + "unknown", + "failure", + "other", + "success" + ] + } + }, + { + "name": "y", + "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": 5.5e-05, + "example_values": [ + "no", + "yes" + ] + } + } + ], + "public_manifest": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/m8/tabbyflow/tabbyflow-m8-20260501_012923/public_gate/staged_input_manifest.json", + "train_csv": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/m8/tabbyflow/tabbyflow-m8-20260501_012923/staged/public/train.csv", + "val_csv": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/m8/tabbyflow/tabbyflow-m8-20260501_012923/staged/public/val.csv", + "test_csv": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/m8/tabbyflow/tabbyflow-m8-20260501_012923/staged/public/test.csv", + "features_json": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/m8/tabbyflow/tabbyflow-m8-20260501_012923/staged/public/staged_features.json", + "public_gate_report": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/m8/tabbyflow/tabbyflow-m8-20260501_012923/public_gate/public_gate_report.json" +} \ No newline at end of file diff --git a/timecost/m8/tabbyflow/tabbyflow-m8-20260501_012923/tabbyflow-m8-36168-20260501_014108.csv b/timecost/m8/tabbyflow/tabbyflow-m8-20260501_012923/tabbyflow-m8-36168-20260501_014108.csv new file mode 100644 index 0000000000000000000000000000000000000000..6c7fc225e17372b111540e19b0512096a7c2146e --- /dev/null +++ b/timecost/m8/tabbyflow/tabbyflow-m8-20260501_012923/tabbyflow-m8-36168-20260501_014108.csv @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:8a4037c1a7d3b83a9502bd4d841f0a2b9800095e08fbabd14b351d53b942a2be +size 2221555 diff --git a/timecost/m8/tabbyflow/tabbyflow-m8-20260501_012923/tabbyflow_train_meta.json b/timecost/m8/tabbyflow/tabbyflow-m8-20260501_012923/tabbyflow_train_meta.json new file mode 100644 index 0000000000000000000000000000000000000000..37d0ed3f38769d6e43b60fbcff64001e555f8c64 --- /dev/null +++ b/timecost/m8/tabbyflow/tabbyflow-m8-20260501_012923/tabbyflow_train_meta.json @@ -0,0 +1,5 @@ +{ + "exp_name": "adapter_efvfm", + "dataname": "pipeline_m8", + "steps": 500 +} \ No newline at end of file diff --git a/timecost/m8/tabbyflow/tabbyflow-m8-20260501_012923/tabular_bundle/pipeline_m8/X_cat_test.npy b/timecost/m8/tabbyflow/tabbyflow-m8-20260501_012923/tabular_bundle/pipeline_m8/X_cat_test.npy new file mode 100644 index 0000000000000000000000000000000000000000..593b28d49c204d0e1075baeb8750f38436a36e50 --- /dev/null +++ b/timecost/m8/tabbyflow/tabbyflow-m8-20260501_012923/tabular_bundle/pipeline_m8/X_cat_test.npy @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:b7a7263704577346e726c9bbb028fcff4c26bb80a5b0bb53ba51f837bb032fc3 +size 2604224 diff --git a/timecost/m8/tabbyflow/tabbyflow-m8-20260501_012923/tabular_bundle/pipeline_m8/X_cat_train.npy b/timecost/m8/tabbyflow/tabbyflow-m8-20260501_012923/tabular_bundle/pipeline_m8/X_cat_train.npy new file mode 100644 index 0000000000000000000000000000000000000000..593b28d49c204d0e1075baeb8750f38436a36e50 --- /dev/null +++ b/timecost/m8/tabbyflow/tabbyflow-m8-20260501_012923/tabular_bundle/pipeline_m8/X_cat_train.npy @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:b7a7263704577346e726c9bbb028fcff4c26bb80a5b0bb53ba51f837bb032fc3 +size 2604224 diff --git a/timecost/m8/tabbyflow/tabbyflow-m8-20260501_012923/tabular_bundle/pipeline_m8/X_cat_val.npy b/timecost/m8/tabbyflow/tabbyflow-m8-20260501_012923/tabular_bundle/pipeline_m8/X_cat_val.npy new file mode 100644 index 0000000000000000000000000000000000000000..593b28d49c204d0e1075baeb8750f38436a36e50 --- /dev/null +++ b/timecost/m8/tabbyflow/tabbyflow-m8-20260501_012923/tabular_bundle/pipeline_m8/X_cat_val.npy @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:b7a7263704577346e726c9bbb028fcff4c26bb80a5b0bb53ba51f837bb032fc3 +size 2604224 diff --git a/timecost/m8/tabbyflow/tabbyflow-m8-20260501_012923/tabular_bundle/pipeline_m8/X_num_test.npy b/timecost/m8/tabbyflow/tabbyflow-m8-20260501_012923/tabular_bundle/pipeline_m8/X_num_test.npy new file mode 100644 index 0000000000000000000000000000000000000000..07e2a13424a0435006d25dfc6527e9c7d0d87f40 --- /dev/null +++ b/timecost/m8/tabbyflow/tabbyflow-m8-20260501_012923/tabular_bundle/pipeline_m8/X_num_test.npy @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:ae3f0ae4e117a2087b337ccec94a15b29288bb82a257e7e365f10bae858de8ec +size 1012832 diff --git a/timecost/m8/tabbyflow/tabbyflow-m8-20260501_012923/tabular_bundle/pipeline_m8/X_num_train.npy b/timecost/m8/tabbyflow/tabbyflow-m8-20260501_012923/tabular_bundle/pipeline_m8/X_num_train.npy new file mode 100644 index 0000000000000000000000000000000000000000..07e2a13424a0435006d25dfc6527e9c7d0d87f40 --- /dev/null +++ b/timecost/m8/tabbyflow/tabbyflow-m8-20260501_012923/tabular_bundle/pipeline_m8/X_num_train.npy @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:ae3f0ae4e117a2087b337ccec94a15b29288bb82a257e7e365f10bae858de8ec +size 1012832 diff --git a/timecost/m8/tabbyflow/tabbyflow-m8-20260501_012923/tabular_bundle/pipeline_m8/X_num_val.npy b/timecost/m8/tabbyflow/tabbyflow-m8-20260501_012923/tabular_bundle/pipeline_m8/X_num_val.npy new file mode 100644 index 0000000000000000000000000000000000000000..07e2a13424a0435006d25dfc6527e9c7d0d87f40 --- /dev/null +++ b/timecost/m8/tabbyflow/tabbyflow-m8-20260501_012923/tabular_bundle/pipeline_m8/X_num_val.npy @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:ae3f0ae4e117a2087b337ccec94a15b29288bb82a257e7e365f10bae858de8ec +size 1012832 diff --git a/timecost/m8/tabbyflow/tabbyflow-m8-20260501_012923/tabular_bundle/pipeline_m8/info.json b/timecost/m8/tabbyflow/tabbyflow-m8-20260501_012923/tabular_bundle/pipeline_m8/info.json new file mode 100644 index 0000000000000000000000000000000000000000..779aa13573a20a8c073a142023a2900dfbcade7c --- /dev/null +++ b/timecost/m8/tabbyflow/tabbyflow-m8-20260501_012923/tabular_bundle/pipeline_m8/info.json @@ -0,0 +1,176 @@ +{ + "name": "pipeline_m8", + "task_type": "binclass", + "n_num_features": 7, + "n_cat_features": 9, + "train_size": 36168, + "test_num": 36168, + "val_num": 36168, + "train_num": 36168, + "bundle_note": "val/test matrices are train copies (train-only policy; no real held-out rows).", + "num_col_idx": [ + 0, + 1, + 2, + 3, + 4, + 5, + 6 + ], + "cat_col_idx": [ + 7, + 8, + 9, + 10, + 11, + 12, + 13, + 14, + 15 + ], + "target_col_idx": [ + 16 + ], + "column_names": [ + "age", + "balance", + "day", + "duration", + "campaign", + "pdays", + "previous", + "job", + "marital", + "education", + "default", + "housing", + "loan", + "contact", + "month", + "poutcome", + "y" + ], + "int_col_idx": [], + "int_columns": [], + "int_col_idx_wrt_num": [], + "metadata": { + "columns": { + "0": { + "sdtype": "numerical", + "computer_representation": "Float" + }, + "1": { + "sdtype": "numerical", + "computer_representation": "Float" + }, + "2": { + "sdtype": "numerical", + "computer_representation": "Float" + }, + "3": { + "sdtype": "numerical", + "computer_representation": "Float" + }, + "4": { + "sdtype": "numerical", + "computer_representation": "Float" + }, + "5": { + "sdtype": "numerical", + "computer_representation": "Float" + }, + "6": { + "sdtype": "numerical", + "computer_representation": "Float" + }, + "7": { + "sdtype": "categorical" + }, + "8": { + "sdtype": "categorical" + }, + "9": { + "sdtype": "categorical" + }, + "10": { + "sdtype": "categorical" + }, + "11": { + "sdtype": "categorical" + }, + "12": { + "sdtype": "categorical" + }, + "13": { + "sdtype": "categorical" + }, + "14": { + "sdtype": "categorical" + }, + "15": { + "sdtype": "categorical" + }, + "16": { + "sdtype": "categorical" + } + } + }, + "idx_mapping": { + "0": 0, + "1": 1, + "2": 2, + "3": 3, + "4": 4, + "5": 5, + "6": 6, + "7": 7, + "8": 8, + "9": 9, + "10": 10, + "11": 11, + "12": 12, + "13": 13, + "14": 14, + "15": 15, + "16": 16 + }, + "inverse_idx_mapping": { + "0": 0, + "1": 1, + "2": 2, + "3": 3, + "4": 4, + "5": 5, + "6": 6, + "7": 7, + "8": 8, + "9": 9, + "10": 10, + "11": 11, + "12": 12, + "13": 13, + "14": 14, + "15": 15, + "16": 16 + }, + "idx_name_mapping": { + "0": "age", + "1": "balance", + "2": "day", + "3": "duration", + "4": "campaign", + "5": "pdays", + "6": "previous", + "7": "job", + "8": "marital", + "9": "education", + "10": "default", + "11": "housing", + "12": "loan", + "13": "contact", + "14": "month", + "15": "poutcome", + "16": "y" + }, + "n_classes": 2 +} \ No newline at end of file diff --git a/timecost/m8/tabbyflow/tabbyflow-m8-20260501_012923/tabular_bundle/pipeline_m8/real.csv b/timecost/m8/tabbyflow/tabbyflow-m8-20260501_012923/tabular_bundle/pipeline_m8/real.csv new file mode 100644 index 0000000000000000000000000000000000000000..89f045df89f474d0b98875260fa3dadcbead70a1 --- /dev/null +++ b/timecost/m8/tabbyflow/tabbyflow-m8-20260501_012923/tabular_bundle/pipeline_m8/real.csv @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:c901e8058d778b30427b02e99359688644f7ea1cad9d3d04a55fdf3881158d60 +size 1517968 diff --git a/timecost/m8/tabbyflow/tabbyflow-m8-20260501_012923/tabular_bundle/pipeline_m8/test.csv b/timecost/m8/tabbyflow/tabbyflow-m8-20260501_012923/tabular_bundle/pipeline_m8/test.csv new file mode 100644 index 0000000000000000000000000000000000000000..89f045df89f474d0b98875260fa3dadcbead70a1 --- /dev/null +++ b/timecost/m8/tabbyflow/tabbyflow-m8-20260501_012923/tabular_bundle/pipeline_m8/test.csv @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:c901e8058d778b30427b02e99359688644f7ea1cad9d3d04a55fdf3881158d60 +size 1517968 diff --git a/timecost/m8/tabbyflow/tabbyflow-m8-20260501_012923/tabular_bundle/pipeline_m8/val.csv b/timecost/m8/tabbyflow/tabbyflow-m8-20260501_012923/tabular_bundle/pipeline_m8/val.csv new file mode 100644 index 0000000000000000000000000000000000000000..89f045df89f474d0b98875260fa3dadcbead70a1 --- /dev/null +++ b/timecost/m8/tabbyflow/tabbyflow-m8-20260501_012923/tabular_bundle/pipeline_m8/val.csv @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:c901e8058d778b30427b02e99359688644f7ea1cad9d3d04a55fdf3881158d60 +size 1517968 diff --git a/timecost/m8/tabbyflow/tabbyflow-m8-20260501_012923/tabular_bundle/pipeline_m8/y_test.npy b/timecost/m8/tabbyflow/tabbyflow-m8-20260501_012923/tabular_bundle/pipeline_m8/y_test.npy new file mode 100644 index 0000000000000000000000000000000000000000..6de42d9b9d2e98ac13fbeb62391fe185ffdd6210 --- /dev/null +++ b/timecost/m8/tabbyflow/tabbyflow-m8-20260501_012923/tabular_bundle/pipeline_m8/y_test.npy @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:3fe448bbe15f46b1714e7d0ebca94f3df952a9ef5364159dda69ccefcdce02c6 +size 289472 diff --git a/timecost/m8/tabbyflow/tabbyflow-m8-20260501_012923/tabular_bundle/pipeline_m8/y_train.npy b/timecost/m8/tabbyflow/tabbyflow-m8-20260501_012923/tabular_bundle/pipeline_m8/y_train.npy new file mode 100644 index 0000000000000000000000000000000000000000..6de42d9b9d2e98ac13fbeb62391fe185ffdd6210 --- /dev/null +++ b/timecost/m8/tabbyflow/tabbyflow-m8-20260501_012923/tabular_bundle/pipeline_m8/y_train.npy @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:3fe448bbe15f46b1714e7d0ebca94f3df952a9ef5364159dda69ccefcdce02c6 +size 289472 diff --git a/timecost/m8/tabbyflow/tabbyflow-m8-20260501_012923/tabular_bundle/pipeline_m8/y_val.npy b/timecost/m8/tabbyflow/tabbyflow-m8-20260501_012923/tabular_bundle/pipeline_m8/y_val.npy new file mode 100644 index 0000000000000000000000000000000000000000..6de42d9b9d2e98ac13fbeb62391fe185ffdd6210 --- /dev/null +++ b/timecost/m8/tabbyflow/tabbyflow-m8-20260501_012923/tabular_bundle/pipeline_m8/y_val.npy @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:3fe448bbe15f46b1714e7d0ebca94f3df952a9ef5364159dda69ccefcdce02c6 +size 289472 diff --git a/timecost/m8/tabbyflow/tabbyflow-m8-20260501_012923/train_20260501_012924.log b/timecost/m8/tabbyflow/tabbyflow-m8-20260501_012923/train_20260501_012924.log new file mode 100644 index 0000000000000000000000000000000000000000..a08b04e0ea0996790305ff3c2031cc9b614d31a8 --- /dev/null +++ b/timecost/m8/tabbyflow/tabbyflow-m8-20260501_012923/train_20260501_012924.log @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:5ec8d3e122ce392c7b91f99d55bdb1fd29b29ac29fed015559f9f7317940f608 +size 1062721 diff --git a/timecost/m8/tabbyflow/tabbyflow-m8-20260501_034536/_tabbyflow_gen.py b/timecost/m8/tabbyflow/tabbyflow-m8-20260501_034536/_tabbyflow_gen.py new file mode 100644 index 0000000000000000000000000000000000000000..b7666c6ae07cf2a6cade6eb1938ca3d36ea06c79 --- /dev/null +++ b/timecost/m8/tabbyflow/tabbyflow-m8-20260501_034536/_tabbyflow_gen.py @@ -0,0 +1,33 @@ + +import os, shutil, subprocess, sys +root = r"/workspace/ef-vfm" +name = r"pipeline_m8" +src = r"/work/output-Benchmark-trainonly-v1/m8/tabbyflow/tabbyflow-m8-20260501_034536/tabular_bundle/pipeline_m8" +dst_data = os.path.join(root, "data", name) +shutil.rmtree(dst_data, ignore_errors=True) +shutil.copytree(src, dst_data) +dst_syn = os.path.join(root, "synthetic", name) +os.makedirs(dst_syn, exist_ok=True) +for fn in ("real.csv", "test.csv", "val.csv"): + shutil.copy(os.path.join(src, fn), os.path.join(dst_syn, fn)) +os.chdir(root) +os.environ["PYTHONPATH"] = root + os.pathsep + os.environ.get("PYTHONPATH", "") +subprocess.check_call([ + sys.executable, "main.py", + "--dataname", name, "--mode", "test", "--gpu", "0", + "--no_wandb", "--exp_name", r"adapter_efvfm", + "--ckpt_path", r"/workspace/ef-vfm/ef_vfm/ckpt/pipeline_m8/adapter_efvfm/model_500.pt", + "--num_samples_to_generate", str(int(36168)), +]) +base = os.path.join(root, "ef_vfm", "result", name, r"adapter_efvfm") +best = None +best_t = -1.0 +for r, _, files in os.walk(base): + if "samples.csv" in files: + p = os.path.join(r, "samples.csv") + t = os.path.getmtime(p) + if t > best_t: + best_t, best = t, p +if not best: + raise SystemExit("tabbyflow: no samples.csv in " + base) +shutil.copy(best, r"/work/output-Benchmark-trainonly-v1/m8/tabbyflow/tabbyflow-m8-20260501_034536/tabbyflow-m8-36168-20260501_035503.csv") diff --git a/timecost/m8/tabbyflow/tabbyflow-m8-20260501_034536/_tabbyflow_train.py b/timecost/m8/tabbyflow/tabbyflow-m8-20260501_034536/_tabbyflow_train.py new file mode 100644 index 0000000000000000000000000000000000000000..3433fc95ca11c236c7b7cf5d6ccaed92f627c183 --- /dev/null +++ b/timecost/m8/tabbyflow/tabbyflow-m8-20260501_034536/_tabbyflow_train.py @@ -0,0 +1,22 @@ + +import os, shutil, subprocess, sys +root = r"/workspace/ef-vfm" +name = r"pipeline_m8" +src = r"/work/output-Benchmark-trainonly-v1/m8/tabbyflow/tabbyflow-m8-20260501_034536/tabular_bundle/pipeline_m8" +os.makedirs(os.path.join(root, "data", name), exist_ok=True) +dst_data = os.path.join(root, "data", name) +dst_syn = os.path.join(root, "synthetic", name) +shutil.rmtree(dst_data, ignore_errors=True) +shutil.copytree(src, dst_data) +os.makedirs(dst_syn, exist_ok=True) +for fn in ("real.csv", "test.csv", "val.csv"): + shutil.copy(os.path.join(src, fn), os.path.join(dst_syn, fn)) +os.chdir(root) +os.environ["PYTHONPATH"] = root + os.pathsep + os.environ.get("PYTHONPATH", "") +os.environ["EFVFM_SMOKE_STEPS"] = "500" +os.environ["EFVFM_ADAPTER_TRAIN"] = "1" +subprocess.check_call([ + sys.executable, "main.py", + "--dataname", name, "--mode", "train", "--gpu", "0", + "--no_wandb", "--exp_name", r"adapter_efvfm", +]) diff --git a/timecost/m8/tabbyflow/tabbyflow-m8-20260501_034536/gen_20260501_035503.log b/timecost/m8/tabbyflow/tabbyflow-m8-20260501_034536/gen_20260501_035503.log new file mode 100644 index 0000000000000000000000000000000000000000..af88885f17db5995175d5e8e6d5010fe2232ce9e --- /dev/null +++ b/timecost/m8/tabbyflow/tabbyflow-m8-20260501_034536/gen_20260501_035503.log @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:e88c176fc55b44d975796711371a0f8d70596d2bfc8fc6d3eb960234f15fb18a +size 3261 diff --git a/timecost/m8/tabbyflow/tabbyflow-m8-20260501_034536/input_snapshot.json b/timecost/m8/tabbyflow/tabbyflow-m8-20260501_034536/input_snapshot.json new file mode 100644 index 0000000000000000000000000000000000000000..ec8817ae110b75f5e8cfe292d9e14b531a4a23e5 --- /dev/null +++ b/timecost/m8/tabbyflow/tabbyflow-m8-20260501_034536/input_snapshot.json @@ -0,0 +1,36 @@ +{ + "dataset_id": "m8", + "model": "tabbyflow", + "inputs": { + "train_csv": { + "path": "/data/jialinzhang/SynthesizePipeline-server/DatasetNew/m8/m8-train.csv", + "exists": true, + "size": 2964802, + "sha256": "f9cbb71aa793de19869a138d41aea5808f772b31082741b185ffb8ca7b821833" + }, + "val_csv": { + "path": "/data/jialinzhang/SynthesizePipeline-server/DatasetNew/m8/m8-val.csv", + "exists": true, + "size": 370535, + "sha256": "5ee8612128aae92155906abc0fdc752ac24fd04d63c78c080c89e3900efe6525" + }, + "test_csv": { + "path": "/data/jialinzhang/SynthesizePipeline-server/DatasetNew/m8/m8-test.csv", + "exists": true, + "size": 370991, + "sha256": "6221943e422e75c8317b79b7ef93e9cd01f61fdd8de6ce42909a8e4610966310" + }, + "profile_json": { + "path": "/data/jialinzhang/SynthesizePipeline-server/DatasetNew/artifacts/data_core/tabular/m8/m8-dataset_profile.json", + "exists": true, + "size": 6553, + "sha256": "44f883858641584035a0a8859cb95dbcd3a023c03cbc76931aadfc4c70ef871f" + }, + "contract_json": { + "path": "/data/jialinzhang/SynthesizePipeline-server/DatasetNew/artifacts/data_core/tabular/m8/m8-dataset_contract_v1.json", + "exists": true, + "size": 8214, + "sha256": "e76df134780ec9b6c6c625a54e5d0c1935e9f4a7d09320ad19279a0492438d92" + } + } +} \ No newline at end of file diff --git a/timecost/m8/tabbyflow/tabbyflow-m8-20260501_034536/models_tabbyflow/trained.pt b/timecost/m8/tabbyflow/tabbyflow-m8-20260501_034536/models_tabbyflow/trained.pt new file mode 100644 index 0000000000000000000000000000000000000000..f063a878c470d9d40f79db79881596e1e497dffd --- /dev/null +++ b/timecost/m8/tabbyflow/tabbyflow-m8-20260501_034536/models_tabbyflow/trained.pt @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:adb734fec12f2251befd371dca69e481b19464aded2a6823105a01b4be6ddbe5 +size 40 diff --git a/timecost/m8/tabbyflow/tabbyflow-m8-20260501_034536/public_gate/normalized_schema_snapshot.json b/timecost/m8/tabbyflow/tabbyflow-m8-20260501_034536/public_gate/normalized_schema_snapshot.json new file mode 100644 index 0000000000000000000000000000000000000000..5e616edd2b7924c5e07f02ccbbb842529655f52a --- /dev/null +++ b/timecost/m8/tabbyflow/tabbyflow-m8-20260501_034536/public_gate/normalized_schema_snapshot.json @@ -0,0 +1,346 @@ +{ + "dataset_id": "m8", + "target_column": "y", + "task_type": "classification", + "columns": [ + { + "name": "age", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 76, + "unique_ratio": 0.002101, + "example_values": [ + "40", + "52", + "31", + "51", + "44" + ] + } + }, + { + "name": "job", + "role": "feature", + "semantic_type": "categorical", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 12, + "unique_ratio": 0.000332, + "example_values": [ + "admin.", + "technician", + "entrepreneur", + "blue-collar", + "services" + ] + } + }, + { + "name": "marital", + "role": "feature", + "semantic_type": "categorical", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 3, + "unique_ratio": 8.3e-05, + "example_values": [ + "single", + "married", + "divorced" + ] + } + }, + { + "name": "education", + "role": "feature", + "semantic_type": "categorical", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 4, + "unique_ratio": 0.000111, + "example_values": [ + "secondary", + "tertiary", + "primary", + "unknown" + ] + } + }, + { + "name": "default", + "role": "feature", + "semantic_type": "boolean", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 2, + "unique_ratio": 5.5e-05, + "example_values": [ + "no", + "yes" + ] + } + }, + { + "name": "balance", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 6604, + "unique_ratio": 0.182592, + "example_values": [ + "419", + "31", + "7567", + "315", + "737" + ] + } + }, + { + "name": "housing", + "role": "feature", + "semantic_type": "boolean", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 2, + "unique_ratio": 5.5e-05, + "example_values": [ + "no", + "yes" + ] + } + }, + { + "name": "loan", + "role": "feature", + "semantic_type": "boolean", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 2, + "unique_ratio": 5.5e-05, + "example_values": [ + "yes", + "no" + ] + } + }, + { + "name": "contact", + "role": "feature", + "semantic_type": "categorical", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 3, + "unique_ratio": 8.3e-05, + "example_values": [ + "cellular", + "unknown", + "telephone" + ] + } + }, + { + "name": "day", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 31, + "unique_ratio": 0.000857, + "example_values": [ + "28", + "7", + "11", + "12", + "14" + ] + } + }, + { + "name": "month", + "role": "feature", + "semantic_type": "categorical", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 12, + "unique_ratio": 0.000332, + "example_values": [ + "jul", + "may", + "aug", + "oct", + "feb" + ] + } + }, + { + "name": "duration", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 1507, + "unique_ratio": 0.041667, + "example_values": [ + "100", + "120", + "70", + "291", + "102" + ] + } + }, + { + "name": "campaign", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 47, + "unique_ratio": 0.001299, + "example_values": [ + "16", + "1", + "2", + "5", + "4" + ] + } + }, + { + "name": "pdays", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 524, + "unique_ratio": 0.014488, + "example_values": [ + "-1", + "91", + "365", + "189", + "117" + ] + } + }, + { + "name": "previous", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 38, + "unique_ratio": 0.001051, + "example_values": [ + "0", + "4", + "1", + "2", + "3" + ] + } + }, + { + "name": "poutcome", + "role": "feature", + "semantic_type": "categorical", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 4, + "unique_ratio": 0.000111, + "example_values": [ + "unknown", + "failure", + "other", + "success" + ] + } + }, + { + "name": "y", + "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": 5.5e-05, + "example_values": [ + "no", + "yes" + ] + } + } + ] +} \ No newline at end of file diff --git a/timecost/m8/tabbyflow/tabbyflow-m8-20260501_034536/public_gate/public_gate_report.json b/timecost/m8/tabbyflow/tabbyflow-m8-20260501_034536/public_gate/public_gate_report.json new file mode 100644 index 0000000000000000000000000000000000000000..318ead0018618096d718d3ec1140561db7e0a70f --- /dev/null +++ b/timecost/m8/tabbyflow/tabbyflow-m8-20260501_034536/public_gate/public_gate_report.json @@ -0,0 +1,37 @@ +{ + "dataset_id": "m8", + "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": "y", + "task_type": "classification", + "input_splits": { + "train": "/data/jialinzhang/SynthesizePipeline-server/DatasetNew/m8/m8-train.csv", + "val": "/data/jialinzhang/SynthesizePipeline-server/DatasetNew/m8/m8-val.csv", + "test": "/data/jialinzhang/SynthesizePipeline-server/DatasetNew/m8/m8-test.csv" + } +} \ No newline at end of file diff --git a/timecost/m8/tabbyflow/tabbyflow-m8-20260501_034536/public_gate/staged_input_manifest.json b/timecost/m8/tabbyflow/tabbyflow-m8-20260501_034536/public_gate/staged_input_manifest.json new file mode 100644 index 0000000000000000000000000000000000000000..30238e00ccf0568d7dd000785f3cf18e6ccffadd --- /dev/null +++ b/timecost/m8/tabbyflow/tabbyflow-m8-20260501_034536/public_gate/staged_input_manifest.json @@ -0,0 +1,351 @@ +{ + "dataset_id": "m8", + "target_column": "y", + "task_type": "classification", + "train_csv": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/m8/tabbyflow/tabbyflow-m8-20260501_034536/staged/public/train.csv", + "val_csv": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/m8/tabbyflow/tabbyflow-m8-20260501_034536/staged/public/val.csv", + "test_csv": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/m8/tabbyflow/tabbyflow-m8-20260501_034536/staged/public/test.csv", + "features_json": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/m8/tabbyflow/tabbyflow-m8-20260501_034536/staged/public/staged_features.json", + "public_gate_report": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/m8/tabbyflow/tabbyflow-m8-20260501_034536/public_gate/public_gate_report.json", + "column_schema": [ + { + "name": "age", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 76, + "unique_ratio": 0.002101, + "example_values": [ + "40", + "52", + "31", + "51", + "44" + ] + } + }, + { + "name": "job", + "role": "feature", + "semantic_type": "categorical", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 12, + "unique_ratio": 0.000332, + "example_values": [ + "admin.", + "technician", + "entrepreneur", + "blue-collar", + "services" + ] + } + }, + { + "name": "marital", + "role": "feature", + "semantic_type": "categorical", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 3, + "unique_ratio": 8.3e-05, + "example_values": [ + "single", + "married", + "divorced" + ] + } + }, + { + "name": "education", + "role": "feature", + "semantic_type": "categorical", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 4, + "unique_ratio": 0.000111, + "example_values": [ + "secondary", + "tertiary", + "primary", + "unknown" + ] + } + }, + { + "name": "default", + "role": "feature", + "semantic_type": "boolean", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 2, + "unique_ratio": 5.5e-05, + "example_values": [ + "no", + "yes" + ] + } + }, + { + "name": "balance", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 6604, + "unique_ratio": 0.182592, + "example_values": [ + "419", + "31", + "7567", + "315", + "737" + ] + } + }, + { + "name": "housing", + "role": "feature", + "semantic_type": "boolean", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 2, + "unique_ratio": 5.5e-05, + "example_values": [ + "no", + "yes" + ] + } + }, + { + "name": "loan", + "role": "feature", + "semantic_type": "boolean", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 2, + "unique_ratio": 5.5e-05, + "example_values": [ + "yes", + "no" + ] + } + }, + { + "name": "contact", + "role": "feature", + "semantic_type": "categorical", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 3, + "unique_ratio": 8.3e-05, + "example_values": [ + "cellular", + "unknown", + "telephone" + ] + } + }, + { + "name": "day", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 31, + "unique_ratio": 0.000857, + "example_values": [ + "28", + "7", + "11", + "12", + "14" + ] + } + }, + { + "name": "month", + "role": "feature", + "semantic_type": "categorical", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 12, + "unique_ratio": 0.000332, + "example_values": [ + "jul", + "may", + "aug", + "oct", + "feb" + ] + } + }, + { + "name": "duration", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 1507, + "unique_ratio": 0.041667, + "example_values": [ + "100", + "120", + "70", + "291", + "102" + ] + } + }, + { + "name": "campaign", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 47, + "unique_ratio": 0.001299, + "example_values": [ + "16", + "1", + "2", + "5", + "4" + ] + } + }, + { + "name": "pdays", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 524, + "unique_ratio": 0.014488, + "example_values": [ + "-1", + "91", + "365", + "189", + "117" + ] + } + }, + { + "name": "previous", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 38, + "unique_ratio": 0.001051, + "example_values": [ + "0", + "4", + "1", + "2", + "3" + ] + } + }, + { + "name": "poutcome", + "role": "feature", + "semantic_type": "categorical", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 4, + "unique_ratio": 0.000111, + "example_values": [ + "unknown", + "failure", + "other", + "success" + ] + } + }, + { + "name": "y", + "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": 5.5e-05, + "example_values": [ + "no", + "yes" + ] + } + } + ] +} \ No newline at end of file diff --git a/timecost/m8/tabbyflow/tabbyflow-m8-20260501_034536/runtime_result.json b/timecost/m8/tabbyflow/tabbyflow-m8-20260501_034536/runtime_result.json new file mode 100644 index 0000000000000000000000000000000000000000..e53cc9bf7845b2e615c6e766505e9813fe926652 --- /dev/null +++ b/timecost/m8/tabbyflow/tabbyflow-m8-20260501_034536/runtime_result.json @@ -0,0 +1,27 @@ +{ + "dataset_id": "m8", + "model": "tabbyflow", + "run_id": "tabbyflow-m8-20260501_034536", + "public_gate_status": "pass", + "adapter_ready_status": "pass", + "train_status": "success", + "generate_status": "success", + "reason_code": null, + "reason_detail": null, + "artifacts": { + "synthetic_csv": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/m8/tabbyflow/tabbyflow-m8-20260501_034536/tabbyflow-m8-36168-20260501_035503.csv", + "model_path": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/m8/tabbyflow/tabbyflow-m8-20260501_034536/models_tabbyflow/trained.pt" + }, + "timings": { + "train": { + "started_at": "2026-05-01T03:45:36", + "ended_at": "2026-05-01T03:55:03", + "duration_sec": 566.722 + }, + "generate": { + "started_at": "2026-05-01T03:55:03", + "ended_at": "2026-05-01T03:55:24", + "duration_sec": 20.651 + } + } +} \ No newline at end of file diff --git a/timecost/m8/tabbyflow/tabbyflow-m8-20260501_034536/staged/public/staged_features.json b/timecost/m8/tabbyflow/tabbyflow-m8-20260501_034536/staged/public/staged_features.json new file mode 100644 index 0000000000000000000000000000000000000000..11323e8dc5c8a2eaafa8e404e60d3db7e244452a --- /dev/null +++ b/timecost/m8/tabbyflow/tabbyflow-m8-20260501_034536/staged/public/staged_features.json @@ -0,0 +1,87 @@ +[ + { + "feature_name": "age", + "data_type": "continuous", + "is_target": false + }, + { + "feature_name": "job", + "data_type": "categorical", + "is_target": false + }, + { + "feature_name": "marital", + "data_type": "categorical", + "is_target": false + }, + { + "feature_name": "education", + "data_type": "categorical", + "is_target": false + }, + { + "feature_name": "default", + "data_type": "binary", + "is_target": false + }, + { + "feature_name": "balance", + "data_type": "continuous", + "is_target": false + }, + { + "feature_name": "housing", + "data_type": "binary", + "is_target": false + }, + { + "feature_name": "loan", + "data_type": "binary", + "is_target": false + }, + { + "feature_name": "contact", + "data_type": "categorical", + "is_target": false + }, + { + "feature_name": "day", + "data_type": "continuous", + "is_target": false + }, + { + "feature_name": "month", + "data_type": "categorical", + "is_target": false + }, + { + "feature_name": "duration", + "data_type": "continuous", + "is_target": false + }, + { + "feature_name": "campaign", + "data_type": "continuous", + "is_target": false + }, + { + "feature_name": "pdays", + "data_type": "continuous", + "is_target": false + }, + { + "feature_name": "previous", + "data_type": "continuous", + "is_target": false + }, + { + "feature_name": "poutcome", + "data_type": "categorical", + "is_target": false + }, + { + "feature_name": "y", + "data_type": "binary", + "is_target": true + } +] \ No newline at end of file diff --git a/timecost/m8/tabbyflow/tabbyflow-m8-20260501_034536/staged/public/test.csv b/timecost/m8/tabbyflow/tabbyflow-m8-20260501_034536/staged/public/test.csv new file mode 100644 index 0000000000000000000000000000000000000000..e1c4866e541b88f8bcd3b88381c7e56d4df06443 --- /dev/null +++ b/timecost/m8/tabbyflow/tabbyflow-m8-20260501_034536/staged/public/test.csv @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:6221943e422e75c8317b79b7ef93e9cd01f61fdd8de6ce42909a8e4610966310 +size 370991 diff --git a/timecost/m8/tabbyflow/tabbyflow-m8-20260501_034536/staged/public/train.csv b/timecost/m8/tabbyflow/tabbyflow-m8-20260501_034536/staged/public/train.csv new file mode 100644 index 0000000000000000000000000000000000000000..fd7d8791840b6811b098820db4ed9e74cf5d627a --- /dev/null +++ b/timecost/m8/tabbyflow/tabbyflow-m8-20260501_034536/staged/public/train.csv @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:f9cbb71aa793de19869a138d41aea5808f772b31082741b185ffb8ca7b821833 +size 2964802 diff --git a/timecost/m8/tabbyflow/tabbyflow-m8-20260501_034536/staged/public/val.csv b/timecost/m8/tabbyflow/tabbyflow-m8-20260501_034536/staged/public/val.csv new file mode 100644 index 0000000000000000000000000000000000000000..09f0041420455c56eb1f79c62940d135e8bc6ea3 --- /dev/null +++ b/timecost/m8/tabbyflow/tabbyflow-m8-20260501_034536/staged/public/val.csv @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:5ee8612128aae92155906abc0fdc752ac24fd04d63c78c080c89e3900efe6525 +size 370535 diff --git a/timecost/m8/tabbyflow/tabbyflow-m8-20260501_034536/staged/tabbyflow/adapter_report.json b/timecost/m8/tabbyflow/tabbyflow-m8-20260501_034536/staged/tabbyflow/adapter_report.json new file mode 100644 index 0000000000000000000000000000000000000000..013ed5cc6840ad56bbd8b973cf4428ed6677bf3b --- /dev/null +++ b/timecost/m8/tabbyflow/tabbyflow-m8-20260501_034536/staged/tabbyflow/adapter_report.json @@ -0,0 +1,7 @@ +{ + "adapter_ready_status": "pass", + "adapter_fail_reason_code": null, + "adapter_fail_detail": null, + "adapter_transforms_applied": [], + "model_input_manifest": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/m8/tabbyflow/tabbyflow-m8-20260501_034536/staged/tabbyflow/model_input_manifest.json" +} \ No newline at end of file diff --git a/timecost/m8/tabbyflow/tabbyflow-m8-20260501_034536/staged/tabbyflow/adapter_transforms_applied.json b/timecost/m8/tabbyflow/tabbyflow-m8-20260501_034536/staged/tabbyflow/adapter_transforms_applied.json new file mode 100644 index 0000000000000000000000000000000000000000..0637a088a01e8ddab3bf3fa98dbe804cbde1a0dc --- /dev/null +++ b/timecost/m8/tabbyflow/tabbyflow-m8-20260501_034536/staged/tabbyflow/adapter_transforms_applied.json @@ -0,0 +1 @@ +[] \ No newline at end of file diff --git a/timecost/m8/tabbyflow/tabbyflow-m8-20260501_034536/staged/tabbyflow/model_input_manifest.json b/timecost/m8/tabbyflow/tabbyflow-m8-20260501_034536/staged/tabbyflow/model_input_manifest.json new file mode 100644 index 0000000000000000000000000000000000000000..f4cd56d8eab7aebc46523c130fb1a03256f52ab4 --- /dev/null +++ b/timecost/m8/tabbyflow/tabbyflow-m8-20260501_034536/staged/tabbyflow/model_input_manifest.json @@ -0,0 +1,353 @@ +{ + "dataset_id": "m8", + "model": "tabbyflow", + "target_column": "y", + "task_type": "classification", + "column_schema": [ + { + "name": "age", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 76, + "unique_ratio": 0.002101, + "example_values": [ + "40", + "52", + "31", + "51", + "44" + ] + } + }, + { + "name": "job", + "role": "feature", + "semantic_type": "categorical", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 12, + "unique_ratio": 0.000332, + "example_values": [ + "admin.", + "technician", + "entrepreneur", + "blue-collar", + "services" + ] + } + }, + { + "name": "marital", + "role": "feature", + "semantic_type": "categorical", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 3, + "unique_ratio": 8.3e-05, + "example_values": [ + "single", + "married", + "divorced" + ] + } + }, + { + "name": "education", + "role": "feature", + "semantic_type": "categorical", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 4, + "unique_ratio": 0.000111, + "example_values": [ + "secondary", + "tertiary", + "primary", + "unknown" + ] + } + }, + { + "name": "default", + "role": "feature", + "semantic_type": "boolean", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 2, + "unique_ratio": 5.5e-05, + "example_values": [ + "no", + "yes" + ] + } + }, + { + "name": "balance", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 6604, + "unique_ratio": 0.182592, + "example_values": [ + "419", + "31", + "7567", + "315", + "737" + ] + } + }, + { + "name": "housing", + "role": "feature", + "semantic_type": "boolean", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 2, + "unique_ratio": 5.5e-05, + "example_values": [ + "no", + "yes" + ] + } + }, + { + "name": "loan", + "role": "feature", + "semantic_type": "boolean", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 2, + "unique_ratio": 5.5e-05, + "example_values": [ + "yes", + "no" + ] + } + }, + { + "name": "contact", + "role": "feature", + "semantic_type": "categorical", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 3, + "unique_ratio": 8.3e-05, + "example_values": [ + "cellular", + "unknown", + "telephone" + ] + } + }, + { + "name": "day", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 31, + "unique_ratio": 0.000857, + "example_values": [ + "28", + "7", + "11", + "12", + "14" + ] + } + }, + { + "name": "month", + "role": "feature", + "semantic_type": "categorical", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 12, + "unique_ratio": 0.000332, + "example_values": [ + "jul", + "may", + "aug", + "oct", + "feb" + ] + } + }, + { + "name": "duration", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 1507, + "unique_ratio": 0.041667, + "example_values": [ + "100", + "120", + "70", + "291", + "102" + ] + } + }, + { + "name": "campaign", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 47, + "unique_ratio": 0.001299, + "example_values": [ + "16", + "1", + "2", + "5", + "4" + ] + } + }, + { + "name": "pdays", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 524, + "unique_ratio": 0.014488, + "example_values": [ + "-1", + "91", + "365", + "189", + "117" + ] + } + }, + { + "name": "previous", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 38, + "unique_ratio": 0.001051, + "example_values": [ + "0", + "4", + "1", + "2", + "3" + ] + } + }, + { + "name": "poutcome", + "role": "feature", + "semantic_type": "categorical", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 4, + "unique_ratio": 0.000111, + "example_values": [ + "unknown", + "failure", + "other", + "success" + ] + } + }, + { + "name": "y", + "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": 5.5e-05, + "example_values": [ + "no", + "yes" + ] + } + } + ], + "public_manifest": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/m8/tabbyflow/tabbyflow-m8-20260501_034536/public_gate/staged_input_manifest.json", + "train_csv": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/m8/tabbyflow/tabbyflow-m8-20260501_034536/staged/public/train.csv", + "val_csv": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/m8/tabbyflow/tabbyflow-m8-20260501_034536/staged/public/val.csv", + "test_csv": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/m8/tabbyflow/tabbyflow-m8-20260501_034536/staged/public/test.csv", + "features_json": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/m8/tabbyflow/tabbyflow-m8-20260501_034536/staged/public/staged_features.json", + "public_gate_report": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/m8/tabbyflow/tabbyflow-m8-20260501_034536/public_gate/public_gate_report.json" +} \ No newline at end of file diff --git a/timecost/m8/tabbyflow/tabbyflow-m8-20260501_034536/tabbyflow-m8-36168-20260501_035503.csv b/timecost/m8/tabbyflow/tabbyflow-m8-20260501_034536/tabbyflow-m8-36168-20260501_035503.csv new file mode 100644 index 0000000000000000000000000000000000000000..3cd94f4fb379675e335dd043c1f61a9ca7686779 --- /dev/null +++ b/timecost/m8/tabbyflow/tabbyflow-m8-20260501_034536/tabbyflow-m8-36168-20260501_035503.csv @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:9ebf11f1d0048555977a9f9a452c668ea43b9b65799939f6030712f62b1108d9 +size 2231148 diff --git a/timecost/m8/tabbyflow/tabbyflow-m8-20260501_034536/tabbyflow_train_meta.json b/timecost/m8/tabbyflow/tabbyflow-m8-20260501_034536/tabbyflow_train_meta.json new file mode 100644 index 0000000000000000000000000000000000000000..37d0ed3f38769d6e43b60fbcff64001e555f8c64 --- /dev/null +++ b/timecost/m8/tabbyflow/tabbyflow-m8-20260501_034536/tabbyflow_train_meta.json @@ -0,0 +1,5 @@ +{ + "exp_name": "adapter_efvfm", + "dataname": "pipeline_m8", + "steps": 500 +} \ No newline at end of file diff --git a/timecost/m8/tabbyflow/tabbyflow-m8-20260501_034536/tabular_bundle/pipeline_m8/X_cat_test.npy b/timecost/m8/tabbyflow/tabbyflow-m8-20260501_034536/tabular_bundle/pipeline_m8/X_cat_test.npy new file mode 100644 index 0000000000000000000000000000000000000000..593b28d49c204d0e1075baeb8750f38436a36e50 --- /dev/null +++ b/timecost/m8/tabbyflow/tabbyflow-m8-20260501_034536/tabular_bundle/pipeline_m8/X_cat_test.npy @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:b7a7263704577346e726c9bbb028fcff4c26bb80a5b0bb53ba51f837bb032fc3 +size 2604224 diff --git a/timecost/m8/tabbyflow/tabbyflow-m8-20260501_034536/tabular_bundle/pipeline_m8/X_cat_train.npy b/timecost/m8/tabbyflow/tabbyflow-m8-20260501_034536/tabular_bundle/pipeline_m8/X_cat_train.npy new file mode 100644 index 0000000000000000000000000000000000000000..593b28d49c204d0e1075baeb8750f38436a36e50 --- /dev/null +++ b/timecost/m8/tabbyflow/tabbyflow-m8-20260501_034536/tabular_bundle/pipeline_m8/X_cat_train.npy @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:b7a7263704577346e726c9bbb028fcff4c26bb80a5b0bb53ba51f837bb032fc3 +size 2604224 diff --git a/timecost/m8/tabbyflow/tabbyflow-m8-20260501_034536/tabular_bundle/pipeline_m8/X_cat_val.npy b/timecost/m8/tabbyflow/tabbyflow-m8-20260501_034536/tabular_bundle/pipeline_m8/X_cat_val.npy new file mode 100644 index 0000000000000000000000000000000000000000..593b28d49c204d0e1075baeb8750f38436a36e50 --- /dev/null +++ b/timecost/m8/tabbyflow/tabbyflow-m8-20260501_034536/tabular_bundle/pipeline_m8/X_cat_val.npy @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:b7a7263704577346e726c9bbb028fcff4c26bb80a5b0bb53ba51f837bb032fc3 +size 2604224 diff --git a/timecost/m8/tabbyflow/tabbyflow-m8-20260501_034536/tabular_bundle/pipeline_m8/X_num_test.npy b/timecost/m8/tabbyflow/tabbyflow-m8-20260501_034536/tabular_bundle/pipeline_m8/X_num_test.npy new file mode 100644 index 0000000000000000000000000000000000000000..07e2a13424a0435006d25dfc6527e9c7d0d87f40 --- /dev/null +++ b/timecost/m8/tabbyflow/tabbyflow-m8-20260501_034536/tabular_bundle/pipeline_m8/X_num_test.npy @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:ae3f0ae4e117a2087b337ccec94a15b29288bb82a257e7e365f10bae858de8ec +size 1012832 diff --git a/timecost/m8/tabbyflow/tabbyflow-m8-20260501_034536/tabular_bundle/pipeline_m8/X_num_train.npy b/timecost/m8/tabbyflow/tabbyflow-m8-20260501_034536/tabular_bundle/pipeline_m8/X_num_train.npy new file mode 100644 index 0000000000000000000000000000000000000000..07e2a13424a0435006d25dfc6527e9c7d0d87f40 --- /dev/null +++ b/timecost/m8/tabbyflow/tabbyflow-m8-20260501_034536/tabular_bundle/pipeline_m8/X_num_train.npy @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:ae3f0ae4e117a2087b337ccec94a15b29288bb82a257e7e365f10bae858de8ec +size 1012832 diff --git a/timecost/m8/tabbyflow/tabbyflow-m8-20260501_034536/tabular_bundle/pipeline_m8/X_num_val.npy b/timecost/m8/tabbyflow/tabbyflow-m8-20260501_034536/tabular_bundle/pipeline_m8/X_num_val.npy new file mode 100644 index 0000000000000000000000000000000000000000..07e2a13424a0435006d25dfc6527e9c7d0d87f40 --- /dev/null +++ b/timecost/m8/tabbyflow/tabbyflow-m8-20260501_034536/tabular_bundle/pipeline_m8/X_num_val.npy @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:ae3f0ae4e117a2087b337ccec94a15b29288bb82a257e7e365f10bae858de8ec +size 1012832 diff --git a/timecost/m8/tabbyflow/tabbyflow-m8-20260501_034536/tabular_bundle/pipeline_m8/info.json b/timecost/m8/tabbyflow/tabbyflow-m8-20260501_034536/tabular_bundle/pipeline_m8/info.json new file mode 100644 index 0000000000000000000000000000000000000000..779aa13573a20a8c073a142023a2900dfbcade7c --- /dev/null +++ b/timecost/m8/tabbyflow/tabbyflow-m8-20260501_034536/tabular_bundle/pipeline_m8/info.json @@ -0,0 +1,176 @@ +{ + "name": "pipeline_m8", + "task_type": "binclass", + "n_num_features": 7, + "n_cat_features": 9, + "train_size": 36168, + "test_num": 36168, + "val_num": 36168, + "train_num": 36168, + "bundle_note": "val/test matrices are train copies (train-only policy; no real held-out rows).", + "num_col_idx": [ + 0, + 1, + 2, + 3, + 4, + 5, + 6 + ], + "cat_col_idx": [ + 7, + 8, + 9, + 10, + 11, + 12, + 13, + 14, + 15 + ], + "target_col_idx": [ + 16 + ], + "column_names": [ + "age", + "balance", + "day", + "duration", + "campaign", + "pdays", + "previous", + "job", + "marital", + "education", + "default", + "housing", + "loan", + "contact", + "month", + "poutcome", + "y" + ], + "int_col_idx": [], + "int_columns": [], + "int_col_idx_wrt_num": [], + "metadata": { + "columns": { + "0": { + "sdtype": "numerical", + "computer_representation": "Float" + }, + "1": { + "sdtype": "numerical", + "computer_representation": "Float" + }, + "2": { + "sdtype": "numerical", + "computer_representation": "Float" + }, + "3": { + "sdtype": "numerical", + "computer_representation": "Float" + }, + "4": { + "sdtype": "numerical", + "computer_representation": "Float" + }, + "5": { + "sdtype": "numerical", + "computer_representation": "Float" + }, + "6": { + "sdtype": "numerical", + "computer_representation": "Float" + }, + "7": { + "sdtype": "categorical" + }, + "8": { + "sdtype": "categorical" + }, + "9": { + "sdtype": "categorical" + }, + "10": { + "sdtype": "categorical" + }, + "11": { + "sdtype": "categorical" + }, + "12": { + "sdtype": "categorical" + }, + "13": { + "sdtype": "categorical" + }, + "14": { + "sdtype": "categorical" + }, + "15": { + "sdtype": "categorical" + }, + "16": { + "sdtype": "categorical" + } + } + }, + "idx_mapping": { + "0": 0, + "1": 1, + "2": 2, + "3": 3, + "4": 4, + "5": 5, + "6": 6, + "7": 7, + "8": 8, + "9": 9, + "10": 10, + "11": 11, + "12": 12, + "13": 13, + "14": 14, + "15": 15, + "16": 16 + }, + "inverse_idx_mapping": { + "0": 0, + "1": 1, + "2": 2, + "3": 3, + "4": 4, + "5": 5, + "6": 6, + "7": 7, + "8": 8, + "9": 9, + "10": 10, + "11": 11, + "12": 12, + "13": 13, + "14": 14, + "15": 15, + "16": 16 + }, + "idx_name_mapping": { + "0": "age", + "1": "balance", + "2": "day", + "3": "duration", + "4": "campaign", + "5": "pdays", + "6": "previous", + "7": "job", + "8": "marital", + "9": "education", + "10": "default", + "11": "housing", + "12": "loan", + "13": "contact", + "14": "month", + "15": "poutcome", + "16": "y" + }, + "n_classes": 2 +} \ No newline at end of file diff --git a/timecost/m8/tabbyflow/tabbyflow-m8-20260501_034536/tabular_bundle/pipeline_m8/real.csv b/timecost/m8/tabbyflow/tabbyflow-m8-20260501_034536/tabular_bundle/pipeline_m8/real.csv new file mode 100644 index 0000000000000000000000000000000000000000..89f045df89f474d0b98875260fa3dadcbead70a1 --- /dev/null +++ b/timecost/m8/tabbyflow/tabbyflow-m8-20260501_034536/tabular_bundle/pipeline_m8/real.csv @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:c901e8058d778b30427b02e99359688644f7ea1cad9d3d04a55fdf3881158d60 +size 1517968 diff --git a/timecost/m8/tabbyflow/tabbyflow-m8-20260501_034536/tabular_bundle/pipeline_m8/test.csv b/timecost/m8/tabbyflow/tabbyflow-m8-20260501_034536/tabular_bundle/pipeline_m8/test.csv new file mode 100644 index 0000000000000000000000000000000000000000..89f045df89f474d0b98875260fa3dadcbead70a1 --- /dev/null +++ b/timecost/m8/tabbyflow/tabbyflow-m8-20260501_034536/tabular_bundle/pipeline_m8/test.csv @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:c901e8058d778b30427b02e99359688644f7ea1cad9d3d04a55fdf3881158d60 +size 1517968 diff --git a/timecost/m8/tabbyflow/tabbyflow-m8-20260501_034536/tabular_bundle/pipeline_m8/val.csv b/timecost/m8/tabbyflow/tabbyflow-m8-20260501_034536/tabular_bundle/pipeline_m8/val.csv new file mode 100644 index 0000000000000000000000000000000000000000..89f045df89f474d0b98875260fa3dadcbead70a1 --- /dev/null +++ b/timecost/m8/tabbyflow/tabbyflow-m8-20260501_034536/tabular_bundle/pipeline_m8/val.csv @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:c901e8058d778b30427b02e99359688644f7ea1cad9d3d04a55fdf3881158d60 +size 1517968 diff --git a/timecost/m8/tabbyflow/tabbyflow-m8-20260501_034536/tabular_bundle/pipeline_m8/y_test.npy b/timecost/m8/tabbyflow/tabbyflow-m8-20260501_034536/tabular_bundle/pipeline_m8/y_test.npy new file mode 100644 index 0000000000000000000000000000000000000000..6de42d9b9d2e98ac13fbeb62391fe185ffdd6210 --- /dev/null +++ b/timecost/m8/tabbyflow/tabbyflow-m8-20260501_034536/tabular_bundle/pipeline_m8/y_test.npy @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:3fe448bbe15f46b1714e7d0ebca94f3df952a9ef5364159dda69ccefcdce02c6 +size 289472 diff --git a/timecost/m8/tabbyflow/tabbyflow-m8-20260501_034536/tabular_bundle/pipeline_m8/y_train.npy b/timecost/m8/tabbyflow/tabbyflow-m8-20260501_034536/tabular_bundle/pipeline_m8/y_train.npy new file mode 100644 index 0000000000000000000000000000000000000000..6de42d9b9d2e98ac13fbeb62391fe185ffdd6210 --- /dev/null +++ b/timecost/m8/tabbyflow/tabbyflow-m8-20260501_034536/tabular_bundle/pipeline_m8/y_train.npy @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:3fe448bbe15f46b1714e7d0ebca94f3df952a9ef5364159dda69ccefcdce02c6 +size 289472 diff --git a/timecost/m8/tabbyflow/tabbyflow-m8-20260501_034536/tabular_bundle/pipeline_m8/y_val.npy b/timecost/m8/tabbyflow/tabbyflow-m8-20260501_034536/tabular_bundle/pipeline_m8/y_val.npy new file mode 100644 index 0000000000000000000000000000000000000000..6de42d9b9d2e98ac13fbeb62391fe185ffdd6210 --- /dev/null +++ b/timecost/m8/tabbyflow/tabbyflow-m8-20260501_034536/tabular_bundle/pipeline_m8/y_val.npy @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:3fe448bbe15f46b1714e7d0ebca94f3df952a9ef5364159dda69ccefcdce02c6 +size 289472 diff --git a/timecost/m8/tabbyflow/tabbyflow-m8-20260501_034536/train_20260501_034537.log b/timecost/m8/tabbyflow/tabbyflow-m8-20260501_034536/train_20260501_034537.log new file mode 100644 index 0000000000000000000000000000000000000000..1a54e09fb8b828056967a234a466af6801368206 --- /dev/null +++ b/timecost/m8/tabbyflow/tabbyflow-m8-20260501_034536/train_20260501_034537.log @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:91d5fc185b9bcd99cf2c5a0cd9dd917fb0374178061eed8797dcb047400ec818 +size 1005474 diff --git a/timecost/m8/tabddpm/tabddpm-m8-20260501_000003/_tabddpm_sample_r0.py b/timecost/m8/tabddpm/tabddpm-m8-20260501_000003/_tabddpm_sample_r0.py new file mode 100644 index 0000000000000000000000000000000000000000..1bd717269bf6985a22ab81027f21e9239655f40a --- /dev/null +++ b/timecost/m8/tabddpm/tabddpm-m8-20260501_000003/_tabddpm_sample_r0.py @@ -0,0 +1,66 @@ +import os, sys, subprocess, json +import numpy as np +import pandas as pd + +tabddpm_root = "/workspace/tabddpm/code" +assert os.path.isdir(tabddpm_root), f"TabDDPM source not mounted: {tabddpm_root}" +env = os.environ.copy() +env["PYTHONPATH"] = tabddpm_root + (os.pathsep + env.get("PYTHONPATH", "")) + +# Reuse the compat wrapper (patches collections.Sequence for skorch) +wrapper = os.path.join(tabddpm_root, "_compat_run.py") +if not os.path.exists(wrapper): + with open(wrapper, "w") as f: + f.write( + "import collections, collections.abc\n" + "for _a in ('Sequence','MutableSequence','MutableMapping','Mapping'," + "'MutableSet','Set','Callable','Iterable','Iterator'):\n" + " if not hasattr(collections, _a): setattr(collections, _a, getattr(collections.abc, _a, None))\n" + "import sys, runpy\n" + "sys.argv = sys.argv[1:]\n" + "runpy.run_path(sys.argv[0], run_name='__main__')\n" + ) + +print(f"[TabDDPM] Sampling 36168 rows") +ret = subprocess.run( + [sys.executable, wrapper, "scripts/pipeline.py", + "--config", "/work/output-Benchmark-trainonly-v1/m8/tabddpm/tabddpm-m8-20260501_000003/config_sample_20260501_000111_r0.toml", + "--sample"], + cwd=tabddpm_root, + env=env +) +if ret.returncode != 0: + sys.exit(ret.returncode) + +# 将 .npy 输出转为 CSV(npy 在 TabDDPM 的 parent_dir,即 npy_dir) +info_path = "/work/output-Benchmark-trainonly-v1/m8/tabddpm/tabddpm-m8-20260501_000003/data/info.json" +with open(info_path) as f: + info = json.load(f) + +output_dir = "/work/output-Benchmark-trainonly-v1/m8/tabddpm/tabddpm-m8-20260501_000003/output" +col_names = info.get("column_names", []) + +parts = [] +x_num_path = os.path.join(output_dir, "X_num_train.npy") +x_cat_path = os.path.join(output_dir, "X_cat_train.npy") +y_path = os.path.join(output_dir, "y_train.npy") + +if os.path.exists(x_num_path): + parts.append(np.load(x_num_path, allow_pickle=True)) +if os.path.exists(x_cat_path): + parts.append(np.load(x_cat_path, allow_pickle=True).astype(float)) +if os.path.exists(y_path): + y = np.load(y_path, allow_pickle=True) + parts.append(y.reshape(-1, 1) if y.ndim == 1 else y) + +if parts: + combined = np.concatenate(parts, axis=1) + if col_names and len(col_names) == combined.shape[1]: + df = pd.DataFrame(combined, columns=col_names) + else: + df = pd.DataFrame(combined) + df.to_csv("/work/output-Benchmark-trainonly-v1/m8/tabddpm/tabddpm-m8-20260501_000003/tabddpm-m8-36168-20260501_000111.csv", index=False) + print(f"[TabDDPM] Saved {len(df)} rows -> /work/output-Benchmark-trainonly-v1/m8/tabddpm/tabddpm-m8-20260501_000003/tabddpm-m8-36168-20260501_000111.csv") +else: + print("[TabDDPM] WARNING: No output .npy files found") + sys.exit(1) diff --git a/timecost/m8/tabddpm/tabddpm-m8-20260501_000003/_tabddpm_train.py b/timecost/m8/tabddpm/tabddpm-m8-20260501_000003/_tabddpm_train.py new file mode 100644 index 0000000000000000000000000000000000000000..5b98669dc3848f2c9d39f3862ac6d02a94a19806 --- /dev/null +++ b/timecost/m8/tabddpm/tabddpm-m8-20260501_000003/_tabddpm_train.py @@ -0,0 +1,32 @@ +import os, sys, subprocess + +tabddpm_root = "/workspace/tabddpm/code" +assert os.path.isdir(tabddpm_root), f"TabDDPM source not mounted: {tabddpm_root}" +env = os.environ.copy() +env["PYTHONPATH"] = tabddpm_root + (os.pathsep + env.get("PYTHONPATH", "")) + +# Write a wrapper that patches collections.Sequence (removed in Python 3.10+) +# before running pipeline.py - needed because skorch uses old API +wrapper = os.path.join(tabddpm_root, "_compat_run.py") +with open(wrapper, "w") as f: + f.write( + "import collections, collections.abc\n" + "for _a in ('Sequence','MutableSequence','MutableMapping','Mapping'," + "'MutableSet','Set','Callable','Iterable','Iterator'):\n" + " if not hasattr(collections, _a): setattr(collections, _a, getattr(collections.abc, _a, None))\n" + "import sys, runpy\n" + "sys.argv = sys.argv[1:]\n" + "runpy.run_path(sys.argv[0], run_name='__main__')\n" + ) + +print(f"[TabDDPM] Training, config=/work/output-Benchmark-trainonly-v1/m8/tabddpm/tabddpm-m8-20260501_000003/config.toml") +ret = subprocess.run( + [sys.executable, wrapper, "scripts/pipeline.py", + "--config", "/work/output-Benchmark-trainonly-v1/m8/tabddpm/tabddpm-m8-20260501_000003/config.toml", + "--train"], + cwd=tabddpm_root, + env=env +) +if ret.returncode != 0: + sys.exit(ret.returncode) +print("[TabDDPM] Training complete") diff --git a/timecost/m8/tabddpm/tabddpm-m8-20260501_000003/config.toml b/timecost/m8/tabddpm/tabddpm-m8-20260501_000003/config.toml new file mode 100644 index 0000000000000000000000000000000000000000..cc2a001fa80e7432aef0b648366e77c1f07445e4 --- /dev/null +++ b/timecost/m8/tabddpm/tabddpm-m8-20260501_000003/config.toml @@ -0,0 +1,39 @@ +seed = 0 +parent_dir = "/work/output-Benchmark-trainonly-v1/m8/tabddpm/tabddpm-m8-20260501_000003/output" +real_data_path = "/work/output-Benchmark-trainonly-v1/m8/tabddpm/tabddpm-m8-20260501_000003/data" +model_type = "mlp" +num_numerical_features = 7 +device = "cuda:0" + +[model_params] +d_in = 16 +num_classes = 2 +is_y_cond = true + +[model_params.rtdl_params] +d_layers = [256, 256] +dropout = 0.0 + +[diffusion_params] +num_timesteps = 1000 +gaussian_loss_type = "mse" + +[train.main] +steps = 5000 +lr = 0.001 +weight_decay = 0.0 +batch_size = 256 + +[train.T] +seed = 0 +normalization = "quantile" +num_nan_policy = "__none__" +cat_nan_policy = "__none__" +cat_min_frequency = "__none__" +cat_encoding = "__none__" +y_policy = "default" + +[sample] +num_samples = 1000 +batch_size = 1000 +seed = 0 diff --git a/timecost/m8/tabddpm/tabddpm-m8-20260501_000003/config_sample_20260501_000111_r0.toml b/timecost/m8/tabddpm/tabddpm-m8-20260501_000003/config_sample_20260501_000111_r0.toml new file mode 100644 index 0000000000000000000000000000000000000000..fd6486b26d126844611145f94060a2a9200bebf8 --- /dev/null +++ b/timecost/m8/tabddpm/tabddpm-m8-20260501_000003/config_sample_20260501_000111_r0.toml @@ -0,0 +1,39 @@ +seed = 0 +parent_dir = "/work/output-Benchmark-trainonly-v1/m8/tabddpm/tabddpm-m8-20260501_000003/output" +real_data_path = "/work/output-Benchmark-trainonly-v1/m8/tabddpm/tabddpm-m8-20260501_000003/data" +model_type = "mlp" +num_numerical_features = 7 +device = "cuda:0" + +[model_params] +d_in = 16 +num_classes = 2 +is_y_cond = true + +[model_params.rtdl_params] +d_layers = [256, 256] +dropout = 0.0 + +[diffusion_params] +num_timesteps = 1000 +gaussian_loss_type = "mse" + +[train.main] +steps = 5000 +lr = 0.001 +weight_decay = 0.0 +batch_size = 256 + +[train.T] +seed = 0 +normalization = "quantile" +num_nan_policy = "__none__" +cat_nan_policy = "__none__" +cat_min_frequency = "__none__" +cat_encoding = "__none__" +y_policy = "default" + +[sample] +num_samples = 36168 +batch_size = 1000 +seed = 0 diff --git a/timecost/m8/tabddpm/tabddpm-m8-20260501_000003/data/X_cat_train.npy b/timecost/m8/tabddpm/tabddpm-m8-20260501_000003/data/X_cat_train.npy new file mode 100644 index 0000000000000000000000000000000000000000..593b28d49c204d0e1075baeb8750f38436a36e50 --- /dev/null +++ b/timecost/m8/tabddpm/tabddpm-m8-20260501_000003/data/X_cat_train.npy @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:b7a7263704577346e726c9bbb028fcff4c26bb80a5b0bb53ba51f837bb032fc3 +size 2604224 diff --git a/timecost/m8/tabddpm/tabddpm-m8-20260501_000003/data/X_num_train.npy b/timecost/m8/tabddpm/tabddpm-m8-20260501_000003/data/X_num_train.npy new file mode 100644 index 0000000000000000000000000000000000000000..07e2a13424a0435006d25dfc6527e9c7d0d87f40 --- /dev/null +++ b/timecost/m8/tabddpm/tabddpm-m8-20260501_000003/data/X_num_train.npy @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:ae3f0ae4e117a2087b337ccec94a15b29288bb82a257e7e365f10bae858de8ec +size 1012832 diff --git a/timecost/m8/tabddpm/tabddpm-m8-20260501_000003/data/info.json b/timecost/m8/tabddpm/tabddpm-m8-20260501_000003/data/info.json new file mode 100644 index 0000000000000000000000000000000000000000..0c2916af96017606ff0f750eacc05dd5fa103ae0 --- /dev/null +++ b/timecost/m8/tabddpm/tabddpm-m8-20260501_000003/data/info.json @@ -0,0 +1,50 @@ +{ + "name": "benchmark_dataset", + "task_type": "multiclass", + "n_num_features": 7, + "n_cat_features": 9, + "train_size": 36168, + "num_col_idx": [ + 0, + 1, + 2, + 3, + 4, + 5, + 6 + ], + "cat_col_idx": [ + 7, + 8, + 9, + 10, + 11, + 12, + 13, + 14, + 15 + ], + "target_col_idx": [ + 16 + ], + "column_names": [ + "age", + "balance", + "day", + "duration", + "campaign", + "pdays", + "previous", + "job", + "marital", + "education", + "default", + "housing", + "loan", + "contact", + "month", + "poutcome", + "y" + ], + "num_classes": 2 +} \ No newline at end of file diff --git a/timecost/m8/tabddpm/tabddpm-m8-20260501_000003/data/y_train.npy b/timecost/m8/tabddpm/tabddpm-m8-20260501_000003/data/y_train.npy new file mode 100644 index 0000000000000000000000000000000000000000..6de42d9b9d2e98ac13fbeb62391fe185ffdd6210 --- /dev/null +++ b/timecost/m8/tabddpm/tabddpm-m8-20260501_000003/data/y_train.npy @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:3fe448bbe15f46b1714e7d0ebca94f3df952a9ef5364159dda69ccefcdce02c6 +size 289472 diff --git a/timecost/m8/tabddpm/tabddpm-m8-20260501_000003/gen_20260501_000111_r0.log b/timecost/m8/tabddpm/tabddpm-m8-20260501_000003/gen_20260501_000111_r0.log new file mode 100644 index 0000000000000000000000000000000000000000..ead56422da8f378f16812caa35c16a3c6e053d6c --- /dev/null +++ b/timecost/m8/tabddpm/tabddpm-m8-20260501_000003/gen_20260501_000111_r0.log @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:6663081cf0f710f515e0bf2f1d559d4245a0130a46b0ce13f45a693adc7c568a +size 777508 diff --git a/timecost/m8/tabddpm/tabddpm-m8-20260501_000003/input_snapshot.json b/timecost/m8/tabddpm/tabddpm-m8-20260501_000003/input_snapshot.json new file mode 100644 index 0000000000000000000000000000000000000000..eabdf74e07206e255d84fe9f8f9499d5948c5373 --- /dev/null +++ b/timecost/m8/tabddpm/tabddpm-m8-20260501_000003/input_snapshot.json @@ -0,0 +1,36 @@ +{ + "dataset_id": "m8", + "model": "tabddpm", + "inputs": { + "train_csv": { + "path": "/data/jialinzhang/SynthesizePipeline-server/DatasetNew/m8/m8-train.csv", + "exists": true, + "size": 2964802, + "sha256": "f9cbb71aa793de19869a138d41aea5808f772b31082741b185ffb8ca7b821833" + }, + "val_csv": { + "path": "/data/jialinzhang/SynthesizePipeline-server/DatasetNew/m8/m8-val.csv", + "exists": true, + "size": 370535, + "sha256": "5ee8612128aae92155906abc0fdc752ac24fd04d63c78c080c89e3900efe6525" + }, + "test_csv": { + "path": "/data/jialinzhang/SynthesizePipeline-server/DatasetNew/m8/m8-test.csv", + "exists": true, + "size": 370991, + "sha256": "6221943e422e75c8317b79b7ef93e9cd01f61fdd8de6ce42909a8e4610966310" + }, + "profile_json": { + "path": "/data/jialinzhang/SynthesizePipeline-server/DatasetNew/artifacts/data_core/tabular/m8/m8-dataset_profile.json", + "exists": true, + "size": 6553, + "sha256": "44f883858641584035a0a8859cb95dbcd3a023c03cbc76931aadfc4c70ef871f" + }, + "contract_json": { + "path": "/data/jialinzhang/SynthesizePipeline-server/DatasetNew/artifacts/data_core/tabular/m8/m8-dataset_contract_v1.json", + "exists": true, + "size": 8214, + "sha256": "e76df134780ec9b6c6c625a54e5d0c1935e9f4a7d09320ad19279a0492438d92" + } + } +} \ No newline at end of file diff --git a/timecost/m8/tabddpm/tabddpm-m8-20260501_000003/output/X_cat_train.npy b/timecost/m8/tabddpm/tabddpm-m8-20260501_000003/output/X_cat_train.npy new file mode 100644 index 0000000000000000000000000000000000000000..9e038421e31cc7578f763b4a31624d14545d5824 --- /dev/null +++ b/timecost/m8/tabddpm/tabddpm-m8-20260501_000003/output/X_cat_train.npy @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:b7daf5c1133e756ddd23a2f8bd5a80879d26a3b233d451966f4e41a75675d6da +size 651959 diff --git a/timecost/m8/tabddpm/tabddpm-m8-20260501_000003/output/X_cat_unnorm.npy b/timecost/m8/tabddpm/tabddpm-m8-20260501_000003/output/X_cat_unnorm.npy new file mode 100644 index 0000000000000000000000000000000000000000..d942c800ab3406667801b70b6ecf0d6772c5402e --- /dev/null +++ b/timecost/m8/tabddpm/tabddpm-m8-20260501_000003/output/X_cat_unnorm.npy @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:58fafc7743264b25a4d34199896da3bae102609146142c4308b1038df0ac67e5 +size 2604224 diff --git a/timecost/m8/tabddpm/tabddpm-m8-20260501_000003/output/X_num_train.npy b/timecost/m8/tabddpm/tabddpm-m8-20260501_000003/output/X_num_train.npy new file mode 100644 index 0000000000000000000000000000000000000000..76f9720f1fdebda09338ff3b003d2acff92718b3 --- /dev/null +++ b/timecost/m8/tabddpm/tabddpm-m8-20260501_000003/output/X_num_train.npy @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:e276fc18311862ca2f3b570a6e9ae35c223f0641e853f11859d0b12ded7febc3 +size 2025536 diff --git a/timecost/m8/tabddpm/tabddpm-m8-20260501_000003/output/X_num_unnorm.npy b/timecost/m8/tabddpm/tabddpm-m8-20260501_000003/output/X_num_unnorm.npy new file mode 100644 index 0000000000000000000000000000000000000000..ee005ea1e05b824cd9312e7edffc66c4696ab962 --- /dev/null +++ b/timecost/m8/tabddpm/tabddpm-m8-20260501_000003/output/X_num_unnorm.npy @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:4823edccc223dd21a3a0e7d9b1331d458cf4c6db10cca4fe043869cc7ecc767b +size 2025536 diff --git a/timecost/m8/tabddpm/tabddpm-m8-20260501_000003/output/config.toml b/timecost/m8/tabddpm/tabddpm-m8-20260501_000003/output/config.toml new file mode 100644 index 0000000000000000000000000000000000000000..fd6486b26d126844611145f94060a2a9200bebf8 --- /dev/null +++ b/timecost/m8/tabddpm/tabddpm-m8-20260501_000003/output/config.toml @@ -0,0 +1,39 @@ +seed = 0 +parent_dir = "/work/output-Benchmark-trainonly-v1/m8/tabddpm/tabddpm-m8-20260501_000003/output" +real_data_path = "/work/output-Benchmark-trainonly-v1/m8/tabddpm/tabddpm-m8-20260501_000003/data" +model_type = "mlp" +num_numerical_features = 7 +device = "cuda:0" + +[model_params] +d_in = 16 +num_classes = 2 +is_y_cond = true + +[model_params.rtdl_params] +d_layers = [256, 256] +dropout = 0.0 + +[diffusion_params] +num_timesteps = 1000 +gaussian_loss_type = "mse" + +[train.main] +steps = 5000 +lr = 0.001 +weight_decay = 0.0 +batch_size = 256 + +[train.T] +seed = 0 +normalization = "quantile" +num_nan_policy = "__none__" +cat_nan_policy = "__none__" +cat_min_frequency = "__none__" +cat_encoding = "__none__" +y_policy = "default" + +[sample] +num_samples = 36168 +batch_size = 1000 +seed = 0 diff --git a/timecost/m8/tabddpm/tabddpm-m8-20260501_000003/output/info.json b/timecost/m8/tabddpm/tabddpm-m8-20260501_000003/output/info.json new file mode 100644 index 0000000000000000000000000000000000000000..0c2916af96017606ff0f750eacc05dd5fa103ae0 --- /dev/null +++ b/timecost/m8/tabddpm/tabddpm-m8-20260501_000003/output/info.json @@ -0,0 +1,50 @@ +{ + "name": "benchmark_dataset", + "task_type": "multiclass", + "n_num_features": 7, + "n_cat_features": 9, + "train_size": 36168, + "num_col_idx": [ + 0, + 1, + 2, + 3, + 4, + 5, + 6 + ], + "cat_col_idx": [ + 7, + 8, + 9, + 10, + 11, + 12, + 13, + 14, + 15 + ], + "target_col_idx": [ + 16 + ], + "column_names": [ + "age", + "balance", + "day", + "duration", + "campaign", + "pdays", + "previous", + "job", + "marital", + "education", + "default", + "housing", + "loan", + "contact", + "month", + "poutcome", + "y" + ], + "num_classes": 2 +} \ No newline at end of file diff --git a/timecost/m8/tabddpm/tabddpm-m8-20260501_000003/output/loss.csv b/timecost/m8/tabddpm/tabddpm-m8-20260501_000003/output/loss.csv new file mode 100644 index 0000000000000000000000000000000000000000..3606864170be1669894afd151cdc239d2e14006c --- /dev/null +++ b/timecost/m8/tabddpm/tabddpm-m8-20260501_000003/output/loss.csv @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:f01e2d85e85ebcde8f74357c0b07247d85fafa9aa6b717cf9ec58c1014189fe0 +size 1513 diff --git a/timecost/m8/tabddpm/tabddpm-m8-20260501_000003/output/model.pt b/timecost/m8/tabddpm/tabddpm-m8-20260501_000003/output/model.pt new file mode 100644 index 0000000000000000000000000000000000000000..349ddf7817b004d0369e0ab0b9902c93c090ca3c --- /dev/null +++ b/timecost/m8/tabddpm/tabddpm-m8-20260501_000003/output/model.pt @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:cbcb0a7241c7986be41e0e6ad4d2dbcb965c428d1c240bf04b100818ec9ca9dc +size 612118 diff --git a/timecost/m8/tabddpm/tabddpm-m8-20260501_000003/output/model_ema.pt b/timecost/m8/tabddpm/tabddpm-m8-20260501_000003/output/model_ema.pt new file mode 100644 index 0000000000000000000000000000000000000000..3ae0a66c0b4eb86c0814826f3b187fbeaade8780 --- /dev/null +++ b/timecost/m8/tabddpm/tabddpm-m8-20260501_000003/output/model_ema.pt @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:9bfa9f11969e18016d0342329c9b2e8d596f872573c85c8bd0830a3494ee4502 +size 612962 diff --git a/timecost/m8/tabddpm/tabddpm-m8-20260501_000003/output/y_train.npy b/timecost/m8/tabddpm/tabddpm-m8-20260501_000003/output/y_train.npy new file mode 100644 index 0000000000000000000000000000000000000000..3c82fec5fe4a8fa2aefa063413fc048fc102578f --- /dev/null +++ b/timecost/m8/tabddpm/tabddpm-m8-20260501_000003/output/y_train.npy @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:bc810ce6901cd82910d5c81c75be6c2e74e2e75a81d06dff43af23619b6c8cc1 +size 289472 diff --git a/timecost/m8/tabddpm/tabddpm-m8-20260501_000003/public_gate/normalized_schema_snapshot.json b/timecost/m8/tabddpm/tabddpm-m8-20260501_000003/public_gate/normalized_schema_snapshot.json new file mode 100644 index 0000000000000000000000000000000000000000..5e616edd2b7924c5e07f02ccbbb842529655f52a --- /dev/null +++ b/timecost/m8/tabddpm/tabddpm-m8-20260501_000003/public_gate/normalized_schema_snapshot.json @@ -0,0 +1,346 @@ +{ + "dataset_id": "m8", + "target_column": "y", + "task_type": "classification", + "columns": [ + { + "name": "age", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 76, + "unique_ratio": 0.002101, + "example_values": [ + "40", + "52", + "31", + "51", + "44" + ] + } + }, + { + "name": "job", + "role": "feature", + "semantic_type": "categorical", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 12, + "unique_ratio": 0.000332, + "example_values": [ + "admin.", + "technician", + "entrepreneur", + "blue-collar", + "services" + ] + } + }, + { + "name": "marital", + "role": "feature", + "semantic_type": "categorical", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 3, + "unique_ratio": 8.3e-05, + "example_values": [ + "single", + "married", + "divorced" + ] + } + }, + { + "name": "education", + "role": "feature", + "semantic_type": "categorical", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 4, + "unique_ratio": 0.000111, + "example_values": [ + "secondary", + "tertiary", + "primary", + "unknown" + ] + } + }, + { + "name": "default", + "role": "feature", + "semantic_type": "boolean", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 2, + "unique_ratio": 5.5e-05, + "example_values": [ + "no", + "yes" + ] + } + }, + { + "name": "balance", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 6604, + "unique_ratio": 0.182592, + "example_values": [ + "419", + "31", + "7567", + "315", + "737" + ] + } + }, + { + "name": "housing", + "role": "feature", + "semantic_type": "boolean", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 2, + "unique_ratio": 5.5e-05, + "example_values": [ + "no", + "yes" + ] + } + }, + { + "name": "loan", + "role": "feature", + "semantic_type": "boolean", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 2, + "unique_ratio": 5.5e-05, + "example_values": [ + "yes", + "no" + ] + } + }, + { + "name": "contact", + "role": "feature", + "semantic_type": "categorical", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 3, + "unique_ratio": 8.3e-05, + "example_values": [ + "cellular", + "unknown", + "telephone" + ] + } + }, + { + "name": "day", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 31, + "unique_ratio": 0.000857, + "example_values": [ + "28", + "7", + "11", + "12", + "14" + ] + } + }, + { + "name": "month", + "role": "feature", + "semantic_type": "categorical", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 12, + "unique_ratio": 0.000332, + "example_values": [ + "jul", + "may", + "aug", + "oct", + "feb" + ] + } + }, + { + "name": "duration", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 1507, + "unique_ratio": 0.041667, + "example_values": [ + "100", + "120", + "70", + "291", + "102" + ] + } + }, + { + "name": "campaign", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 47, + "unique_ratio": 0.001299, + "example_values": [ + "16", + "1", + "2", + "5", + "4" + ] + } + }, + { + "name": "pdays", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 524, + "unique_ratio": 0.014488, + "example_values": [ + "-1", + "91", + "365", + "189", + "117" + ] + } + }, + { + "name": "previous", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 38, + "unique_ratio": 0.001051, + "example_values": [ + "0", + "4", + "1", + "2", + "3" + ] + } + }, + { + "name": "poutcome", + "role": "feature", + "semantic_type": "categorical", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 4, + "unique_ratio": 0.000111, + "example_values": [ + "unknown", + "failure", + "other", + "success" + ] + } + }, + { + "name": "y", + "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": 5.5e-05, + "example_values": [ + "no", + "yes" + ] + } + } + ] +} \ No newline at end of file diff --git a/timecost/m8/tabddpm/tabddpm-m8-20260501_000003/public_gate/public_gate_report.json b/timecost/m8/tabddpm/tabddpm-m8-20260501_000003/public_gate/public_gate_report.json new file mode 100644 index 0000000000000000000000000000000000000000..318ead0018618096d718d3ec1140561db7e0a70f --- /dev/null +++ b/timecost/m8/tabddpm/tabddpm-m8-20260501_000003/public_gate/public_gate_report.json @@ -0,0 +1,37 @@ +{ + "dataset_id": "m8", + "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": "y", + "task_type": "classification", + "input_splits": { + "train": "/data/jialinzhang/SynthesizePipeline-server/DatasetNew/m8/m8-train.csv", + "val": "/data/jialinzhang/SynthesizePipeline-server/DatasetNew/m8/m8-val.csv", + "test": "/data/jialinzhang/SynthesizePipeline-server/DatasetNew/m8/m8-test.csv" + } +} \ No newline at end of file diff --git a/timecost/m8/tabddpm/tabddpm-m8-20260501_000003/public_gate/staged_input_manifest.json b/timecost/m8/tabddpm/tabddpm-m8-20260501_000003/public_gate/staged_input_manifest.json new file mode 100644 index 0000000000000000000000000000000000000000..9c265f56e95b2dabf35e81db937564a3a7986ea6 --- /dev/null +++ b/timecost/m8/tabddpm/tabddpm-m8-20260501_000003/public_gate/staged_input_manifest.json @@ -0,0 +1,351 @@ +{ + "dataset_id": "m8", + "target_column": "y", + "task_type": "classification", + "train_csv": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/m8/tabddpm/tabddpm-m8-20260501_000003/staged/public/train.csv", + "val_csv": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/m8/tabddpm/tabddpm-m8-20260501_000003/staged/public/val.csv", + "test_csv": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/m8/tabddpm/tabddpm-m8-20260501_000003/staged/public/test.csv", + "features_json": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/m8/tabddpm/tabddpm-m8-20260501_000003/staged/public/staged_features.json", + "public_gate_report": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/m8/tabddpm/tabddpm-m8-20260501_000003/public_gate/public_gate_report.json", + "column_schema": [ + { + "name": "age", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 76, + "unique_ratio": 0.002101, + "example_values": [ + "40", + "52", + "31", + "51", + "44" + ] + } + }, + { + "name": "job", + "role": "feature", + "semantic_type": "categorical", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 12, + "unique_ratio": 0.000332, + "example_values": [ + "admin.", + "technician", + "entrepreneur", + "blue-collar", + "services" + ] + } + }, + { + "name": "marital", + "role": "feature", + "semantic_type": "categorical", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 3, + "unique_ratio": 8.3e-05, + "example_values": [ + "single", + "married", + "divorced" + ] + } + }, + { + "name": "education", + "role": "feature", + "semantic_type": "categorical", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 4, + "unique_ratio": 0.000111, + "example_values": [ + "secondary", + "tertiary", + "primary", + "unknown" + ] + } + }, + { + "name": "default", + "role": "feature", + "semantic_type": "boolean", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 2, + "unique_ratio": 5.5e-05, + "example_values": [ + "no", + "yes" + ] + } + }, + { + "name": "balance", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 6604, + "unique_ratio": 0.182592, + "example_values": [ + "419", + "31", + "7567", + "315", + "737" + ] + } + }, + { + "name": "housing", + "role": "feature", + "semantic_type": "boolean", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 2, + "unique_ratio": 5.5e-05, + "example_values": [ + "no", + "yes" + ] + } + }, + { + "name": "loan", + "role": "feature", + "semantic_type": "boolean", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 2, + "unique_ratio": 5.5e-05, + "example_values": [ + "yes", + "no" + ] + } + }, + { + "name": "contact", + "role": "feature", + "semantic_type": "categorical", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 3, + "unique_ratio": 8.3e-05, + "example_values": [ + "cellular", + "unknown", + "telephone" + ] + } + }, + { + "name": "day", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 31, + "unique_ratio": 0.000857, + "example_values": [ + "28", + "7", + "11", + "12", + "14" + ] + } + }, + { + "name": "month", + "role": "feature", + "semantic_type": "categorical", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 12, + "unique_ratio": 0.000332, + "example_values": [ + "jul", + "may", + "aug", + "oct", + "feb" + ] + } + }, + { + "name": "duration", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 1507, + "unique_ratio": 0.041667, + "example_values": [ + "100", + "120", + "70", + "291", + "102" + ] + } + }, + { + "name": "campaign", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 47, + "unique_ratio": 0.001299, + "example_values": [ + "16", + "1", + "2", + "5", + "4" + ] + } + }, + { + "name": "pdays", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 524, + "unique_ratio": 0.014488, + "example_values": [ + "-1", + "91", + "365", + "189", + "117" + ] + } + }, + { + "name": "previous", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 38, + "unique_ratio": 0.001051, + "example_values": [ + "0", + "4", + "1", + "2", + "3" + ] + } + }, + { + "name": "poutcome", + "role": "feature", + "semantic_type": "categorical", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 4, + "unique_ratio": 0.000111, + "example_values": [ + "unknown", + "failure", + "other", + "success" + ] + } + }, + { + "name": "y", + "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": 5.5e-05, + "example_values": [ + "no", + "yes" + ] + } + } + ] +} \ No newline at end of file diff --git a/timecost/m8/tabddpm/tabddpm-m8-20260501_000003/runtime_result.json b/timecost/m8/tabddpm/tabddpm-m8-20260501_000003/runtime_result.json new file mode 100644 index 0000000000000000000000000000000000000000..fe16e242627352afda5d6acdb1f4a668aa00f9a5 --- /dev/null +++ b/timecost/m8/tabddpm/tabddpm-m8-20260501_000003/runtime_result.json @@ -0,0 +1,27 @@ +{ + "dataset_id": "m8", + "model": "tabddpm", + "run_id": "tabddpm-m8-20260501_000003", + "public_gate_status": "pass", + "adapter_ready_status": "pass", + "train_status": "success", + "generate_status": "success", + "reason_code": null, + "reason_detail": null, + "artifacts": { + "synthetic_csv": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/m8/tabddpm/tabddpm-m8-20260501_000003/tabddpm-m8-36168-20260501_000111.csv", + "model_path": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/m8/tabddpm/tabddpm-m8-20260501_000003" + }, + "timings": { + "train": { + "started_at": "2026-05-01T00:00:03", + "ended_at": "2026-05-01T00:01:11", + "duration_sec": 67.82 + }, + "generate": { + "started_at": "2026-05-01T00:01:11", + "ended_at": "2026-05-01T00:03:42", + "duration_sec": 151.064 + } + } +} \ No newline at end of file diff --git a/timecost/m8/tabddpm/tabddpm-m8-20260501_000003/staged/public/staged_features.json b/timecost/m8/tabddpm/tabddpm-m8-20260501_000003/staged/public/staged_features.json new file mode 100644 index 0000000000000000000000000000000000000000..11323e8dc5c8a2eaafa8e404e60d3db7e244452a --- /dev/null +++ b/timecost/m8/tabddpm/tabddpm-m8-20260501_000003/staged/public/staged_features.json @@ -0,0 +1,87 @@ +[ + { + "feature_name": "age", + "data_type": "continuous", + "is_target": false + }, + { + "feature_name": "job", + "data_type": "categorical", + "is_target": false + }, + { + "feature_name": "marital", + "data_type": "categorical", + "is_target": false + }, + { + "feature_name": "education", + "data_type": "categorical", + "is_target": false + }, + { + "feature_name": "default", + "data_type": "binary", + "is_target": false + }, + { + "feature_name": "balance", + "data_type": "continuous", + "is_target": false + }, + { + "feature_name": "housing", + "data_type": "binary", + "is_target": false + }, + { + "feature_name": "loan", + "data_type": "binary", + "is_target": false + }, + { + "feature_name": "contact", + "data_type": "categorical", + "is_target": false + }, + { + "feature_name": "day", + "data_type": "continuous", + "is_target": false + }, + { + "feature_name": "month", + "data_type": "categorical", + "is_target": false + }, + { + "feature_name": "duration", + "data_type": "continuous", + "is_target": false + }, + { + "feature_name": "campaign", + "data_type": "continuous", + "is_target": false + }, + { + "feature_name": "pdays", + "data_type": "continuous", + "is_target": false + }, + { + "feature_name": "previous", + "data_type": "continuous", + "is_target": false + }, + { + "feature_name": "poutcome", + "data_type": "categorical", + "is_target": false + }, + { + "feature_name": "y", + "data_type": "binary", + "is_target": true + } +] \ No newline at end of file diff --git a/timecost/m8/tabddpm/tabddpm-m8-20260501_000003/staged/public/test.csv b/timecost/m8/tabddpm/tabddpm-m8-20260501_000003/staged/public/test.csv new file mode 100644 index 0000000000000000000000000000000000000000..e1c4866e541b88f8bcd3b88381c7e56d4df06443 --- /dev/null +++ b/timecost/m8/tabddpm/tabddpm-m8-20260501_000003/staged/public/test.csv @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:6221943e422e75c8317b79b7ef93e9cd01f61fdd8de6ce42909a8e4610966310 +size 370991 diff --git a/timecost/m8/tabddpm/tabddpm-m8-20260501_000003/staged/public/train.csv b/timecost/m8/tabddpm/tabddpm-m8-20260501_000003/staged/public/train.csv new file mode 100644 index 0000000000000000000000000000000000000000..fd7d8791840b6811b098820db4ed9e74cf5d627a --- /dev/null +++ b/timecost/m8/tabddpm/tabddpm-m8-20260501_000003/staged/public/train.csv @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:f9cbb71aa793de19869a138d41aea5808f772b31082741b185ffb8ca7b821833 +size 2964802 diff --git a/timecost/m8/tabddpm/tabddpm-m8-20260501_000003/staged/public/val.csv b/timecost/m8/tabddpm/tabddpm-m8-20260501_000003/staged/public/val.csv new file mode 100644 index 0000000000000000000000000000000000000000..09f0041420455c56eb1f79c62940d135e8bc6ea3 --- /dev/null +++ b/timecost/m8/tabddpm/tabddpm-m8-20260501_000003/staged/public/val.csv @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:5ee8612128aae92155906abc0fdc752ac24fd04d63c78c080c89e3900efe6525 +size 370535 diff --git a/timecost/m8/tabddpm/tabddpm-m8-20260501_000003/staged/tabddpm/adapter_report.json b/timecost/m8/tabddpm/tabddpm-m8-20260501_000003/staged/tabddpm/adapter_report.json new file mode 100644 index 0000000000000000000000000000000000000000..324ffb1c97d72157d57c9d475fa984e47d37b4ac --- /dev/null +++ b/timecost/m8/tabddpm/tabddpm-m8-20260501_000003/staged/tabddpm/adapter_report.json @@ -0,0 +1,7 @@ +{ + "adapter_ready_status": "pass", + "adapter_fail_reason_code": null, + "adapter_fail_detail": null, + "adapter_transforms_applied": [], + "model_input_manifest": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/m8/tabddpm/tabddpm-m8-20260501_000003/staged/tabddpm/model_input_manifest.json" +} \ No newline at end of file diff --git a/timecost/m8/tabddpm/tabddpm-m8-20260501_000003/staged/tabddpm/adapter_transforms_applied.json b/timecost/m8/tabddpm/tabddpm-m8-20260501_000003/staged/tabddpm/adapter_transforms_applied.json new file mode 100644 index 0000000000000000000000000000000000000000..0637a088a01e8ddab3bf3fa98dbe804cbde1a0dc --- /dev/null +++ b/timecost/m8/tabddpm/tabddpm-m8-20260501_000003/staged/tabddpm/adapter_transforms_applied.json @@ -0,0 +1 @@ +[] \ No newline at end of file diff --git a/timecost/m8/tabddpm/tabddpm-m8-20260501_000003/staged/tabddpm/model_input_manifest.json b/timecost/m8/tabddpm/tabddpm-m8-20260501_000003/staged/tabddpm/model_input_manifest.json new file mode 100644 index 0000000000000000000000000000000000000000..9362d34c1a67479e7847ab596138e00e83ae53d7 --- /dev/null +++ b/timecost/m8/tabddpm/tabddpm-m8-20260501_000003/staged/tabddpm/model_input_manifest.json @@ -0,0 +1,353 @@ +{ + "dataset_id": "m8", + "model": "tabddpm", + "target_column": "y", + "task_type": "classification", + "column_schema": [ + { + "name": "age", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 76, + "unique_ratio": 0.002101, + "example_values": [ + "40", + "52", + "31", + "51", + "44" + ] + } + }, + { + "name": "job", + "role": "feature", + "semantic_type": "categorical", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 12, + "unique_ratio": 0.000332, + "example_values": [ + "admin.", + "technician", + "entrepreneur", + "blue-collar", + "services" + ] + } + }, + { + "name": "marital", + "role": "feature", + "semantic_type": "categorical", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 3, + "unique_ratio": 8.3e-05, + "example_values": [ + "single", + "married", + "divorced" + ] + } + }, + { + "name": "education", + "role": "feature", + "semantic_type": "categorical", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 4, + "unique_ratio": 0.000111, + "example_values": [ + "secondary", + "tertiary", + "primary", + "unknown" + ] + } + }, + { + "name": "default", + "role": "feature", + "semantic_type": "boolean", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 2, + "unique_ratio": 5.5e-05, + "example_values": [ + "no", + "yes" + ] + } + }, + { + "name": "balance", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 6604, + "unique_ratio": 0.182592, + "example_values": [ + "419", + "31", + "7567", + "315", + "737" + ] + } + }, + { + "name": "housing", + "role": "feature", + "semantic_type": "boolean", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 2, + "unique_ratio": 5.5e-05, + "example_values": [ + "no", + "yes" + ] + } + }, + { + "name": "loan", + "role": "feature", + "semantic_type": "boolean", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 2, + "unique_ratio": 5.5e-05, + "example_values": [ + "yes", + "no" + ] + } + }, + { + "name": "contact", + "role": "feature", + "semantic_type": "categorical", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 3, + "unique_ratio": 8.3e-05, + "example_values": [ + "cellular", + "unknown", + "telephone" + ] + } + }, + { + "name": "day", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 31, + "unique_ratio": 0.000857, + "example_values": [ + "28", + "7", + "11", + "12", + "14" + ] + } + }, + { + "name": "month", + "role": "feature", + "semantic_type": "categorical", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 12, + "unique_ratio": 0.000332, + "example_values": [ + "jul", + "may", + "aug", + "oct", + "feb" + ] + } + }, + { + "name": "duration", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 1507, + "unique_ratio": 0.041667, + "example_values": [ + "100", + "120", + "70", + "291", + "102" + ] + } + }, + { + "name": "campaign", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 47, + "unique_ratio": 0.001299, + "example_values": [ + "16", + "1", + "2", + "5", + "4" + ] + } + }, + { + "name": "pdays", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 524, + "unique_ratio": 0.014488, + "example_values": [ + "-1", + "91", + "365", + "189", + "117" + ] + } + }, + { + "name": "previous", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 38, + "unique_ratio": 0.001051, + "example_values": [ + "0", + "4", + "1", + "2", + "3" + ] + } + }, + { + "name": "poutcome", + "role": "feature", + "semantic_type": "categorical", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 4, + "unique_ratio": 0.000111, + "example_values": [ + "unknown", + "failure", + "other", + "success" + ] + } + }, + { + "name": "y", + "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": 5.5e-05, + "example_values": [ + "no", + "yes" + ] + } + } + ], + "public_manifest": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/m8/tabddpm/tabddpm-m8-20260501_000003/public_gate/staged_input_manifest.json", + "train_csv": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/m8/tabddpm/tabddpm-m8-20260501_000003/staged/public/train.csv", + "val_csv": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/m8/tabddpm/tabddpm-m8-20260501_000003/staged/public/val.csv", + "test_csv": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/m8/tabddpm/tabddpm-m8-20260501_000003/staged/public/test.csv", + "features_json": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/m8/tabddpm/tabddpm-m8-20260501_000003/staged/public/staged_features.json", + "public_gate_report": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/m8/tabddpm/tabddpm-m8-20260501_000003/public_gate/public_gate_report.json" +} \ No newline at end of file diff --git a/timecost/m8/tabddpm/tabddpm-m8-20260501_000003/tabddpm-m8-36168-20260501_000111.csv b/timecost/m8/tabddpm/tabddpm-m8-20260501_000003/tabddpm-m8-36168-20260501_000111.csv new file mode 100644 index 0000000000000000000000000000000000000000..d0b8f1c6310fb7fb59e3d4e4ec2c07396d8057b5 --- /dev/null +++ b/timecost/m8/tabddpm/tabddpm-m8-20260501_000003/tabddpm-m8-36168-20260501_000111.csv @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:57978967723b64f563dc16662d2376d2dc77da339469f894c6b923d573ed48b9 +size 3435575 diff --git a/timecost/m8/tabddpm/tabddpm-m8-20260501_000003/train_20260501_000003.log b/timecost/m8/tabddpm/tabddpm-m8-20260501_000003/train_20260501_000003.log new file mode 100644 index 0000000000000000000000000000000000000000..93d534ac48cb3eaf0eb24d3dca1794750555ce42 --- /dev/null +++ b/timecost/m8/tabddpm/tabddpm-m8-20260501_000003/train_20260501_000003.log @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:080263f158d37c7293f67d5dd43b99e65af6da72a35fb06f5ea1c65d20554b2d +size 1157 diff --git a/timecost/m8/tabddpm/tabddpm-m8-20260501_035531/_tabddpm_sample_r0.py b/timecost/m8/tabddpm/tabddpm-m8-20260501_035531/_tabddpm_sample_r0.py new file mode 100644 index 0000000000000000000000000000000000000000..4c0174996b0c9b9cca57dc568b6502824dd0d4bb --- /dev/null +++ b/timecost/m8/tabddpm/tabddpm-m8-20260501_035531/_tabddpm_sample_r0.py @@ -0,0 +1,66 @@ +import os, sys, subprocess, json +import numpy as np +import pandas as pd + +tabddpm_root = "/workspace/tabddpm/code" +assert os.path.isdir(tabddpm_root), f"TabDDPM source not mounted: {tabddpm_root}" +env = os.environ.copy() +env["PYTHONPATH"] = tabddpm_root + (os.pathsep + env.get("PYTHONPATH", "")) + +# Reuse the compat wrapper (patches collections.Sequence for skorch) +wrapper = os.path.join(tabddpm_root, "_compat_run.py") +if not os.path.exists(wrapper): + with open(wrapper, "w") as f: + f.write( + "import collections, collections.abc\n" + "for _a in ('Sequence','MutableSequence','MutableMapping','Mapping'," + "'MutableSet','Set','Callable','Iterable','Iterator'):\n" + " if not hasattr(collections, _a): setattr(collections, _a, getattr(collections.abc, _a, None))\n" + "import sys, runpy\n" + "sys.argv = sys.argv[1:]\n" + "runpy.run_path(sys.argv[0], run_name='__main__')\n" + ) + +print(f"[TabDDPM] Sampling 36168 rows") +ret = subprocess.run( + [sys.executable, wrapper, "scripts/pipeline.py", + "--config", "/work/output-Benchmark-trainonly-v1/m8/tabddpm/tabddpm-m8-20260501_035531/config_sample_20260501_035632_r0.toml", + "--sample"], + cwd=tabddpm_root, + env=env +) +if ret.returncode != 0: + sys.exit(ret.returncode) + +# 将 .npy 输出转为 CSV(npy 在 TabDDPM 的 parent_dir,即 npy_dir) +info_path = "/work/output-Benchmark-trainonly-v1/m8/tabddpm/tabddpm-m8-20260501_035531/data/info.json" +with open(info_path) as f: + info = json.load(f) + +output_dir = "/work/output-Benchmark-trainonly-v1/m8/tabddpm/tabddpm-m8-20260501_035531/output" +col_names = info.get("column_names", []) + +parts = [] +x_num_path = os.path.join(output_dir, "X_num_train.npy") +x_cat_path = os.path.join(output_dir, "X_cat_train.npy") +y_path = os.path.join(output_dir, "y_train.npy") + +if os.path.exists(x_num_path): + parts.append(np.load(x_num_path, allow_pickle=True)) +if os.path.exists(x_cat_path): + parts.append(np.load(x_cat_path, allow_pickle=True).astype(float)) +if os.path.exists(y_path): + y = np.load(y_path, allow_pickle=True) + parts.append(y.reshape(-1, 1) if y.ndim == 1 else y) + +if parts: + combined = np.concatenate(parts, axis=1) + if col_names and len(col_names) == combined.shape[1]: + df = pd.DataFrame(combined, columns=col_names) + else: + df = pd.DataFrame(combined) + df.to_csv("/work/output-Benchmark-trainonly-v1/m8/tabddpm/tabddpm-m8-20260501_035531/tabddpm-m8-36168-20260501_035632.csv", index=False) + print(f"[TabDDPM] Saved {len(df)} rows -> /work/output-Benchmark-trainonly-v1/m8/tabddpm/tabddpm-m8-20260501_035531/tabddpm-m8-36168-20260501_035632.csv") +else: + print("[TabDDPM] WARNING: No output .npy files found") + sys.exit(1) diff --git a/timecost/m8/tabddpm/tabddpm-m8-20260501_035531/_tabddpm_train.py b/timecost/m8/tabddpm/tabddpm-m8-20260501_035531/_tabddpm_train.py new file mode 100644 index 0000000000000000000000000000000000000000..c2a062abf0c95d17cc50cffc19e3299faaa292db --- /dev/null +++ b/timecost/m8/tabddpm/tabddpm-m8-20260501_035531/_tabddpm_train.py @@ -0,0 +1,32 @@ +import os, sys, subprocess + +tabddpm_root = "/workspace/tabddpm/code" +assert os.path.isdir(tabddpm_root), f"TabDDPM source not mounted: {tabddpm_root}" +env = os.environ.copy() +env["PYTHONPATH"] = tabddpm_root + (os.pathsep + env.get("PYTHONPATH", "")) + +# Write a wrapper that patches collections.Sequence (removed in Python 3.10+) +# before running pipeline.py - needed because skorch uses old API +wrapper = os.path.join(tabddpm_root, "_compat_run.py") +with open(wrapper, "w") as f: + f.write( + "import collections, collections.abc\n" + "for _a in ('Sequence','MutableSequence','MutableMapping','Mapping'," + "'MutableSet','Set','Callable','Iterable','Iterator'):\n" + " if not hasattr(collections, _a): setattr(collections, _a, getattr(collections.abc, _a, None))\n" + "import sys, runpy\n" + "sys.argv = sys.argv[1:]\n" + "runpy.run_path(sys.argv[0], run_name='__main__')\n" + ) + +print(f"[TabDDPM] Training, config=/work/output-Benchmark-trainonly-v1/m8/tabddpm/tabddpm-m8-20260501_035531/config.toml") +ret = subprocess.run( + [sys.executable, wrapper, "scripts/pipeline.py", + "--config", "/work/output-Benchmark-trainonly-v1/m8/tabddpm/tabddpm-m8-20260501_035531/config.toml", + "--train"], + cwd=tabddpm_root, + env=env +) +if ret.returncode != 0: + sys.exit(ret.returncode) +print("[TabDDPM] Training complete") diff --git a/timecost/m8/tabddpm/tabddpm-m8-20260501_035531/config.toml b/timecost/m8/tabddpm/tabddpm-m8-20260501_035531/config.toml new file mode 100644 index 0000000000000000000000000000000000000000..592394c25eb16729219034995a9cf4362670d247 --- /dev/null +++ b/timecost/m8/tabddpm/tabddpm-m8-20260501_035531/config.toml @@ -0,0 +1,39 @@ +seed = 0 +parent_dir = "/work/output-Benchmark-trainonly-v1/m8/tabddpm/tabddpm-m8-20260501_035531/output" +real_data_path = "/work/output-Benchmark-trainonly-v1/m8/tabddpm/tabddpm-m8-20260501_035531/data" +model_type = "mlp" +num_numerical_features = 7 +device = "cuda:0" + +[model_params] +d_in = 16 +num_classes = 2 +is_y_cond = true + +[model_params.rtdl_params] +d_layers = [256, 256] +dropout = 0.0 + +[diffusion_params] +num_timesteps = 1000 +gaussian_loss_type = "mse" + +[train.main] +steps = 5000 +lr = 0.001 +weight_decay = 0.0 +batch_size = 256 + +[train.T] +seed = 0 +normalization = "quantile" +num_nan_policy = "__none__" +cat_nan_policy = "__none__" +cat_min_frequency = "__none__" +cat_encoding = "__none__" +y_policy = "default" + +[sample] +num_samples = 1000 +batch_size = 1000 +seed = 0 diff --git a/timecost/m8/tabddpm/tabddpm-m8-20260501_035531/config_sample_20260501_035632_r0.toml b/timecost/m8/tabddpm/tabddpm-m8-20260501_035531/config_sample_20260501_035632_r0.toml new file mode 100644 index 0000000000000000000000000000000000000000..05ae1029cd98311b38fb41a47d8e80a280f9f1ed --- /dev/null +++ b/timecost/m8/tabddpm/tabddpm-m8-20260501_035531/config_sample_20260501_035632_r0.toml @@ -0,0 +1,39 @@ +seed = 0 +parent_dir = "/work/output-Benchmark-trainonly-v1/m8/tabddpm/tabddpm-m8-20260501_035531/output" +real_data_path = "/work/output-Benchmark-trainonly-v1/m8/tabddpm/tabddpm-m8-20260501_035531/data" +model_type = "mlp" +num_numerical_features = 7 +device = "cuda:0" + +[model_params] +d_in = 16 +num_classes = 2 +is_y_cond = true + +[model_params.rtdl_params] +d_layers = [256, 256] +dropout = 0.0 + +[diffusion_params] +num_timesteps = 1000 +gaussian_loss_type = "mse" + +[train.main] +steps = 5000 +lr = 0.001 +weight_decay = 0.0 +batch_size = 256 + +[train.T] +seed = 0 +normalization = "quantile" +num_nan_policy = "__none__" +cat_nan_policy = "__none__" +cat_min_frequency = "__none__" +cat_encoding = "__none__" +y_policy = "default" + +[sample] +num_samples = 36168 +batch_size = 1000 +seed = 0 diff --git a/timecost/m8/tabddpm/tabddpm-m8-20260501_035531/data/X_cat_train.npy b/timecost/m8/tabddpm/tabddpm-m8-20260501_035531/data/X_cat_train.npy new file mode 100644 index 0000000000000000000000000000000000000000..593b28d49c204d0e1075baeb8750f38436a36e50 --- /dev/null +++ b/timecost/m8/tabddpm/tabddpm-m8-20260501_035531/data/X_cat_train.npy @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:b7a7263704577346e726c9bbb028fcff4c26bb80a5b0bb53ba51f837bb032fc3 +size 2604224 diff --git a/timecost/m8/tabddpm/tabddpm-m8-20260501_035531/data/X_num_train.npy b/timecost/m8/tabddpm/tabddpm-m8-20260501_035531/data/X_num_train.npy new file mode 100644 index 0000000000000000000000000000000000000000..07e2a13424a0435006d25dfc6527e9c7d0d87f40 --- /dev/null +++ b/timecost/m8/tabddpm/tabddpm-m8-20260501_035531/data/X_num_train.npy @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:ae3f0ae4e117a2087b337ccec94a15b29288bb82a257e7e365f10bae858de8ec +size 1012832 diff --git a/timecost/m8/tabddpm/tabddpm-m8-20260501_035531/data/info.json b/timecost/m8/tabddpm/tabddpm-m8-20260501_035531/data/info.json new file mode 100644 index 0000000000000000000000000000000000000000..0c2916af96017606ff0f750eacc05dd5fa103ae0 --- /dev/null +++ b/timecost/m8/tabddpm/tabddpm-m8-20260501_035531/data/info.json @@ -0,0 +1,50 @@ +{ + "name": "benchmark_dataset", + "task_type": "multiclass", + "n_num_features": 7, + "n_cat_features": 9, + "train_size": 36168, + "num_col_idx": [ + 0, + 1, + 2, + 3, + 4, + 5, + 6 + ], + "cat_col_idx": [ + 7, + 8, + 9, + 10, + 11, + 12, + 13, + 14, + 15 + ], + "target_col_idx": [ + 16 + ], + "column_names": [ + "age", + "balance", + "day", + "duration", + "campaign", + "pdays", + "previous", + "job", + "marital", + "education", + "default", + "housing", + "loan", + "contact", + "month", + "poutcome", + "y" + ], + "num_classes": 2 +} \ No newline at end of file diff --git a/timecost/m8/tabddpm/tabddpm-m8-20260501_035531/data/y_train.npy b/timecost/m8/tabddpm/tabddpm-m8-20260501_035531/data/y_train.npy new file mode 100644 index 0000000000000000000000000000000000000000..6de42d9b9d2e98ac13fbeb62391fe185ffdd6210 --- /dev/null +++ b/timecost/m8/tabddpm/tabddpm-m8-20260501_035531/data/y_train.npy @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:3fe448bbe15f46b1714e7d0ebca94f3df952a9ef5364159dda69ccefcdce02c6 +size 289472 diff --git a/timecost/m8/tabddpm/tabddpm-m8-20260501_035531/gen_20260501_035632_r0.log b/timecost/m8/tabddpm/tabddpm-m8-20260501_035531/gen_20260501_035632_r0.log new file mode 100644 index 0000000000000000000000000000000000000000..99bdf188650b024b979c7b3053609643602911a8 --- /dev/null +++ b/timecost/m8/tabddpm/tabddpm-m8-20260501_035531/gen_20260501_035632_r0.log @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:39f96985219441faea18522fce7ec5eda5331e02bc674cb6855f68350d88e0ae +size 777507 diff --git a/timecost/m8/tabddpm/tabddpm-m8-20260501_035531/input_snapshot.json b/timecost/m8/tabddpm/tabddpm-m8-20260501_035531/input_snapshot.json new file mode 100644 index 0000000000000000000000000000000000000000..eabdf74e07206e255d84fe9f8f9499d5948c5373 --- /dev/null +++ b/timecost/m8/tabddpm/tabddpm-m8-20260501_035531/input_snapshot.json @@ -0,0 +1,36 @@ +{ + "dataset_id": "m8", + "model": "tabddpm", + "inputs": { + "train_csv": { + "path": "/data/jialinzhang/SynthesizePipeline-server/DatasetNew/m8/m8-train.csv", + "exists": true, + "size": 2964802, + "sha256": "f9cbb71aa793de19869a138d41aea5808f772b31082741b185ffb8ca7b821833" + }, + "val_csv": { + "path": "/data/jialinzhang/SynthesizePipeline-server/DatasetNew/m8/m8-val.csv", + "exists": true, + "size": 370535, + "sha256": "5ee8612128aae92155906abc0fdc752ac24fd04d63c78c080c89e3900efe6525" + }, + "test_csv": { + "path": "/data/jialinzhang/SynthesizePipeline-server/DatasetNew/m8/m8-test.csv", + "exists": true, + "size": 370991, + "sha256": "6221943e422e75c8317b79b7ef93e9cd01f61fdd8de6ce42909a8e4610966310" + }, + "profile_json": { + "path": "/data/jialinzhang/SynthesizePipeline-server/DatasetNew/artifacts/data_core/tabular/m8/m8-dataset_profile.json", + "exists": true, + "size": 6553, + "sha256": "44f883858641584035a0a8859cb95dbcd3a023c03cbc76931aadfc4c70ef871f" + }, + "contract_json": { + "path": "/data/jialinzhang/SynthesizePipeline-server/DatasetNew/artifacts/data_core/tabular/m8/m8-dataset_contract_v1.json", + "exists": true, + "size": 8214, + "sha256": "e76df134780ec9b6c6c625a54e5d0c1935e9f4a7d09320ad19279a0492438d92" + } + } +} \ No newline at end of file diff --git a/timecost/m8/tabddpm/tabddpm-m8-20260501_035531/output/X_cat_train.npy b/timecost/m8/tabddpm/tabddpm-m8-20260501_035531/output/X_cat_train.npy new file mode 100644 index 0000000000000000000000000000000000000000..c9c55287cf0b79a010654724b9dc5348b78bfc69 --- /dev/null +++ b/timecost/m8/tabddpm/tabddpm-m8-20260501_035531/output/X_cat_train.npy @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:a8b8ec8162a6587447114e257972d04200523cd6221d40c5731488d9d3163d73 +size 651959 diff --git a/timecost/m8/tabddpm/tabddpm-m8-20260501_035531/output/X_cat_unnorm.npy b/timecost/m8/tabddpm/tabddpm-m8-20260501_035531/output/X_cat_unnorm.npy new file mode 100644 index 0000000000000000000000000000000000000000..635cd0b378a65e7f251464fd6d73cc1f7c724414 --- /dev/null +++ b/timecost/m8/tabddpm/tabddpm-m8-20260501_035531/output/X_cat_unnorm.npy @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:fb91c104e69e662e8cff10a7f10fc0c94854dc6428113bbdcd25255fa54ca721 +size 2604224 diff --git a/timecost/m8/tabddpm/tabddpm-m8-20260501_035531/output/X_num_train.npy b/timecost/m8/tabddpm/tabddpm-m8-20260501_035531/output/X_num_train.npy new file mode 100644 index 0000000000000000000000000000000000000000..40937f3f16921349a250a96b1a98932561de7c71 --- /dev/null +++ b/timecost/m8/tabddpm/tabddpm-m8-20260501_035531/output/X_num_train.npy @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:ea698ad2e2a8101da7f4c35edc4ba5b5b2d2a631207d2df53d46c50df6233e57 +size 2025536 diff --git a/timecost/m8/tabddpm/tabddpm-m8-20260501_035531/output/X_num_unnorm.npy b/timecost/m8/tabddpm/tabddpm-m8-20260501_035531/output/X_num_unnorm.npy new file mode 100644 index 0000000000000000000000000000000000000000..b69759c7a2eba1aa47dcf9297e0d1c01cb28c8e5 --- /dev/null +++ b/timecost/m8/tabddpm/tabddpm-m8-20260501_035531/output/X_num_unnorm.npy @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:e899ca0d6c06c44a31c501a62a64646c2f6a57118d7fa8dff6bf82eff3aea4b4 +size 2025536 diff --git a/timecost/m8/tabddpm/tabddpm-m8-20260501_035531/output/config.toml b/timecost/m8/tabddpm/tabddpm-m8-20260501_035531/output/config.toml new file mode 100644 index 0000000000000000000000000000000000000000..05ae1029cd98311b38fb41a47d8e80a280f9f1ed --- /dev/null +++ b/timecost/m8/tabddpm/tabddpm-m8-20260501_035531/output/config.toml @@ -0,0 +1,39 @@ +seed = 0 +parent_dir = "/work/output-Benchmark-trainonly-v1/m8/tabddpm/tabddpm-m8-20260501_035531/output" +real_data_path = "/work/output-Benchmark-trainonly-v1/m8/tabddpm/tabddpm-m8-20260501_035531/data" +model_type = "mlp" +num_numerical_features = 7 +device = "cuda:0" + +[model_params] +d_in = 16 +num_classes = 2 +is_y_cond = true + +[model_params.rtdl_params] +d_layers = [256, 256] +dropout = 0.0 + +[diffusion_params] +num_timesteps = 1000 +gaussian_loss_type = "mse" + +[train.main] +steps = 5000 +lr = 0.001 +weight_decay = 0.0 +batch_size = 256 + +[train.T] +seed = 0 +normalization = "quantile" +num_nan_policy = "__none__" +cat_nan_policy = "__none__" +cat_min_frequency = "__none__" +cat_encoding = "__none__" +y_policy = "default" + +[sample] +num_samples = 36168 +batch_size = 1000 +seed = 0 diff --git a/timecost/m8/tabddpm/tabddpm-m8-20260501_035531/output/info.json b/timecost/m8/tabddpm/tabddpm-m8-20260501_035531/output/info.json new file mode 100644 index 0000000000000000000000000000000000000000..0c2916af96017606ff0f750eacc05dd5fa103ae0 --- /dev/null +++ b/timecost/m8/tabddpm/tabddpm-m8-20260501_035531/output/info.json @@ -0,0 +1,50 @@ +{ + "name": "benchmark_dataset", + "task_type": "multiclass", + "n_num_features": 7, + "n_cat_features": 9, + "train_size": 36168, + "num_col_idx": [ + 0, + 1, + 2, + 3, + 4, + 5, + 6 + ], + "cat_col_idx": [ + 7, + 8, + 9, + 10, + 11, + 12, + 13, + 14, + 15 + ], + "target_col_idx": [ + 16 + ], + "column_names": [ + "age", + "balance", + "day", + "duration", + "campaign", + "pdays", + "previous", + "job", + "marital", + "education", + "default", + "housing", + "loan", + "contact", + "month", + "poutcome", + "y" + ], + "num_classes": 2 +} \ No newline at end of file diff --git a/timecost/m8/tabddpm/tabddpm-m8-20260501_035531/output/loss.csv b/timecost/m8/tabddpm/tabddpm-m8-20260501_035531/output/loss.csv new file mode 100644 index 0000000000000000000000000000000000000000..5929372b893601812bfd06eb12978fd738d4aeb7 --- /dev/null +++ b/timecost/m8/tabddpm/tabddpm-m8-20260501_035531/output/loss.csv @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:1cddbe136f00f3c53eb83481dfe8387237d13d89e9bff2244f2afb4f4330ed24 +size 1521 diff --git a/timecost/m8/tabddpm/tabddpm-m8-20260501_035531/output/model.pt b/timecost/m8/tabddpm/tabddpm-m8-20260501_035531/output/model.pt new file mode 100644 index 0000000000000000000000000000000000000000..a7a031d73cbcc82b1fb1812b3fb916bfdade8949 --- /dev/null +++ b/timecost/m8/tabddpm/tabddpm-m8-20260501_035531/output/model.pt @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:9b7b06539b3d9a6dc06487c2a86541eee16865889be060d6743b324ebcd24c46 +size 612118 diff --git a/timecost/m8/tabddpm/tabddpm-m8-20260501_035531/output/model_ema.pt b/timecost/m8/tabddpm/tabddpm-m8-20260501_035531/output/model_ema.pt new file mode 100644 index 0000000000000000000000000000000000000000..10f38bcd310de8c152e2682bce85d767570530c8 --- /dev/null +++ b/timecost/m8/tabddpm/tabddpm-m8-20260501_035531/output/model_ema.pt @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:2e40d44deb7a1286a10a131ffbddb124c8bf68975c2931d569f076c6d5bde41f +size 612962 diff --git a/timecost/m8/tabddpm/tabddpm-m8-20260501_035531/output/y_train.npy b/timecost/m8/tabddpm/tabddpm-m8-20260501_035531/output/y_train.npy new file mode 100644 index 0000000000000000000000000000000000000000..3c82fec5fe4a8fa2aefa063413fc048fc102578f --- /dev/null +++ b/timecost/m8/tabddpm/tabddpm-m8-20260501_035531/output/y_train.npy @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:bc810ce6901cd82910d5c81c75be6c2e74e2e75a81d06dff43af23619b6c8cc1 +size 289472 diff --git a/timecost/m8/tabddpm/tabddpm-m8-20260501_035531/public_gate/normalized_schema_snapshot.json b/timecost/m8/tabddpm/tabddpm-m8-20260501_035531/public_gate/normalized_schema_snapshot.json new file mode 100644 index 0000000000000000000000000000000000000000..5e616edd2b7924c5e07f02ccbbb842529655f52a --- /dev/null +++ b/timecost/m8/tabddpm/tabddpm-m8-20260501_035531/public_gate/normalized_schema_snapshot.json @@ -0,0 +1,346 @@ +{ + "dataset_id": "m8", + "target_column": "y", + "task_type": "classification", + "columns": [ + { + "name": "age", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 76, + "unique_ratio": 0.002101, + "example_values": [ + "40", + "52", + "31", + "51", + "44" + ] + } + }, + { + "name": "job", + "role": "feature", + "semantic_type": "categorical", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 12, + "unique_ratio": 0.000332, + "example_values": [ + "admin.", + "technician", + "entrepreneur", + "blue-collar", + "services" + ] + } + }, + { + "name": "marital", + "role": "feature", + "semantic_type": "categorical", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 3, + "unique_ratio": 8.3e-05, + "example_values": [ + "single", + "married", + "divorced" + ] + } + }, + { + "name": "education", + "role": "feature", + "semantic_type": "categorical", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 4, + "unique_ratio": 0.000111, + "example_values": [ + "secondary", + "tertiary", + "primary", + "unknown" + ] + } + }, + { + "name": "default", + "role": "feature", + "semantic_type": "boolean", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 2, + "unique_ratio": 5.5e-05, + "example_values": [ + "no", + "yes" + ] + } + }, + { + "name": "balance", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 6604, + "unique_ratio": 0.182592, + "example_values": [ + "419", + "31", + "7567", + "315", + "737" + ] + } + }, + { + "name": "housing", + "role": "feature", + "semantic_type": "boolean", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 2, + "unique_ratio": 5.5e-05, + "example_values": [ + "no", + "yes" + ] + } + }, + { + "name": "loan", + "role": "feature", + "semantic_type": "boolean", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 2, + "unique_ratio": 5.5e-05, + "example_values": [ + "yes", + "no" + ] + } + }, + { + "name": "contact", + "role": "feature", + "semantic_type": "categorical", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 3, + "unique_ratio": 8.3e-05, + "example_values": [ + "cellular", + "unknown", + "telephone" + ] + } + }, + { + "name": "day", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 31, + "unique_ratio": 0.000857, + "example_values": [ + "28", + "7", + "11", + "12", + "14" + ] + } + }, + { + "name": "month", + "role": "feature", + "semantic_type": "categorical", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 12, + "unique_ratio": 0.000332, + "example_values": [ + "jul", + "may", + "aug", + "oct", + "feb" + ] + } + }, + { + "name": "duration", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 1507, + "unique_ratio": 0.041667, + "example_values": [ + "100", + "120", + "70", + "291", + "102" + ] + } + }, + { + "name": "campaign", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 47, + "unique_ratio": 0.001299, + "example_values": [ + "16", + "1", + "2", + "5", + "4" + ] + } + }, + { + "name": "pdays", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 524, + "unique_ratio": 0.014488, + "example_values": [ + "-1", + "91", + "365", + "189", + "117" + ] + } + }, + { + "name": "previous", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 38, + "unique_ratio": 0.001051, + "example_values": [ + "0", + "4", + "1", + "2", + "3" + ] + } + }, + { + "name": "poutcome", + "role": "feature", + "semantic_type": "categorical", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 4, + "unique_ratio": 0.000111, + "example_values": [ + "unknown", + "failure", + "other", + "success" + ] + } + }, + { + "name": "y", + "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": 5.5e-05, + "example_values": [ + "no", + "yes" + ] + } + } + ] +} \ No newline at end of file diff --git a/timecost/m8/tabddpm/tabddpm-m8-20260501_035531/public_gate/public_gate_report.json b/timecost/m8/tabddpm/tabddpm-m8-20260501_035531/public_gate/public_gate_report.json new file mode 100644 index 0000000000000000000000000000000000000000..318ead0018618096d718d3ec1140561db7e0a70f --- /dev/null +++ b/timecost/m8/tabddpm/tabddpm-m8-20260501_035531/public_gate/public_gate_report.json @@ -0,0 +1,37 @@ +{ + "dataset_id": "m8", + "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": "y", + "task_type": "classification", + "input_splits": { + "train": "/data/jialinzhang/SynthesizePipeline-server/DatasetNew/m8/m8-train.csv", + "val": "/data/jialinzhang/SynthesizePipeline-server/DatasetNew/m8/m8-val.csv", + "test": "/data/jialinzhang/SynthesizePipeline-server/DatasetNew/m8/m8-test.csv" + } +} \ No newline at end of file diff --git a/timecost/m8/tabddpm/tabddpm-m8-20260501_035531/public_gate/staged_input_manifest.json b/timecost/m8/tabddpm/tabddpm-m8-20260501_035531/public_gate/staged_input_manifest.json new file mode 100644 index 0000000000000000000000000000000000000000..33fc852f136199de736b6b058e299bdee68be637 --- /dev/null +++ b/timecost/m8/tabddpm/tabddpm-m8-20260501_035531/public_gate/staged_input_manifest.json @@ -0,0 +1,351 @@ +{ + "dataset_id": "m8", + "target_column": "y", + "task_type": "classification", + "train_csv": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/m8/tabddpm/tabddpm-m8-20260501_035531/staged/public/train.csv", + "val_csv": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/m8/tabddpm/tabddpm-m8-20260501_035531/staged/public/val.csv", + "test_csv": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/m8/tabddpm/tabddpm-m8-20260501_035531/staged/public/test.csv", + "features_json": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/m8/tabddpm/tabddpm-m8-20260501_035531/staged/public/staged_features.json", + "public_gate_report": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/m8/tabddpm/tabddpm-m8-20260501_035531/public_gate/public_gate_report.json", + "column_schema": [ + { + "name": "age", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 76, + "unique_ratio": 0.002101, + "example_values": [ + "40", + "52", + "31", + "51", + "44" + ] + } + }, + { + "name": "job", + "role": "feature", + "semantic_type": "categorical", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 12, + "unique_ratio": 0.000332, + "example_values": [ + "admin.", + "technician", + "entrepreneur", + "blue-collar", + "services" + ] + } + }, + { + "name": "marital", + "role": "feature", + "semantic_type": "categorical", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 3, + "unique_ratio": 8.3e-05, + "example_values": [ + "single", + "married", + "divorced" + ] + } + }, + { + "name": "education", + "role": "feature", + "semantic_type": "categorical", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 4, + "unique_ratio": 0.000111, + "example_values": [ + "secondary", + "tertiary", + "primary", + "unknown" + ] + } + }, + { + "name": "default", + "role": "feature", + "semantic_type": "boolean", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 2, + "unique_ratio": 5.5e-05, + "example_values": [ + "no", + "yes" + ] + } + }, + { + "name": "balance", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 6604, + "unique_ratio": 0.182592, + "example_values": [ + "419", + "31", + "7567", + "315", + "737" + ] + } + }, + { + "name": "housing", + "role": "feature", + "semantic_type": "boolean", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 2, + "unique_ratio": 5.5e-05, + "example_values": [ + "no", + "yes" + ] + } + }, + { + "name": "loan", + "role": "feature", + "semantic_type": "boolean", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 2, + "unique_ratio": 5.5e-05, + "example_values": [ + "yes", + "no" + ] + } + }, + { + "name": "contact", + "role": "feature", + "semantic_type": "categorical", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 3, + "unique_ratio": 8.3e-05, + "example_values": [ + "cellular", + "unknown", + "telephone" + ] + } + }, + { + "name": "day", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 31, + "unique_ratio": 0.000857, + "example_values": [ + "28", + "7", + "11", + "12", + "14" + ] + } + }, + { + "name": "month", + "role": "feature", + "semantic_type": "categorical", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 12, + "unique_ratio": 0.000332, + "example_values": [ + "jul", + "may", + "aug", + "oct", + "feb" + ] + } + }, + { + "name": "duration", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 1507, + "unique_ratio": 0.041667, + "example_values": [ + "100", + "120", + "70", + "291", + "102" + ] + } + }, + { + "name": "campaign", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 47, + "unique_ratio": 0.001299, + "example_values": [ + "16", + "1", + "2", + "5", + "4" + ] + } + }, + { + "name": "pdays", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 524, + "unique_ratio": 0.014488, + "example_values": [ + "-1", + "91", + "365", + "189", + "117" + ] + } + }, + { + "name": "previous", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 38, + "unique_ratio": 0.001051, + "example_values": [ + "0", + "4", + "1", + "2", + "3" + ] + } + }, + { + "name": "poutcome", + "role": "feature", + "semantic_type": "categorical", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 4, + "unique_ratio": 0.000111, + "example_values": [ + "unknown", + "failure", + "other", + "success" + ] + } + }, + { + "name": "y", + "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": 5.5e-05, + "example_values": [ + "no", + "yes" + ] + } + } + ] +} \ No newline at end of file diff --git a/timecost/m8/tabddpm/tabddpm-m8-20260501_035531/runtime_result.json b/timecost/m8/tabddpm/tabddpm-m8-20260501_035531/runtime_result.json new file mode 100644 index 0000000000000000000000000000000000000000..271bda349b957d4abd767539d2d6d2102dcb98ab --- /dev/null +++ b/timecost/m8/tabddpm/tabddpm-m8-20260501_035531/runtime_result.json @@ -0,0 +1,27 @@ +{ + "dataset_id": "m8", + "model": "tabddpm", + "run_id": "tabddpm-m8-20260501_035531", + "public_gate_status": "pass", + "adapter_ready_status": "pass", + "train_status": "success", + "generate_status": "success", + "reason_code": null, + "reason_detail": null, + "artifacts": { + "synthetic_csv": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/m8/tabddpm/tabddpm-m8-20260501_035531/tabddpm-m8-36168-20260501_035632.csv", + "model_path": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/m8/tabddpm/tabddpm-m8-20260501_035531" + }, + "timings": { + "train": { + "started_at": "2026-05-01T03:55:31", + "ended_at": "2026-05-01T03:56:32", + "duration_sec": 61.091 + }, + "generate": { + "started_at": "2026-05-01T03:56:32", + "ended_at": "2026-05-01T03:58:57", + "duration_sec": 144.259 + } + } +} \ No newline at end of file diff --git a/timecost/m8/tabddpm/tabddpm-m8-20260501_035531/staged/public/staged_features.json b/timecost/m8/tabddpm/tabddpm-m8-20260501_035531/staged/public/staged_features.json new file mode 100644 index 0000000000000000000000000000000000000000..11323e8dc5c8a2eaafa8e404e60d3db7e244452a --- /dev/null +++ b/timecost/m8/tabddpm/tabddpm-m8-20260501_035531/staged/public/staged_features.json @@ -0,0 +1,87 @@ +[ + { + "feature_name": "age", + "data_type": "continuous", + "is_target": false + }, + { + "feature_name": "job", + "data_type": "categorical", + "is_target": false + }, + { + "feature_name": "marital", + "data_type": "categorical", + "is_target": false + }, + { + "feature_name": "education", + "data_type": "categorical", + "is_target": false + }, + { + "feature_name": "default", + "data_type": "binary", + "is_target": false + }, + { + "feature_name": "balance", + "data_type": "continuous", + "is_target": false + }, + { + "feature_name": "housing", + "data_type": "binary", + "is_target": false + }, + { + "feature_name": "loan", + "data_type": "binary", + "is_target": false + }, + { + "feature_name": "contact", + "data_type": "categorical", + "is_target": false + }, + { + "feature_name": "day", + "data_type": "continuous", + "is_target": false + }, + { + "feature_name": "month", + "data_type": "categorical", + "is_target": false + }, + { + "feature_name": "duration", + "data_type": "continuous", + "is_target": false + }, + { + "feature_name": "campaign", + "data_type": "continuous", + "is_target": false + }, + { + "feature_name": "pdays", + "data_type": "continuous", + "is_target": false + }, + { + "feature_name": "previous", + "data_type": "continuous", + "is_target": false + }, + { + "feature_name": "poutcome", + "data_type": "categorical", + "is_target": false + }, + { + "feature_name": "y", + "data_type": "binary", + "is_target": true + } +] \ No newline at end of file diff --git a/timecost/m8/tabddpm/tabddpm-m8-20260501_035531/staged/public/test.csv b/timecost/m8/tabddpm/tabddpm-m8-20260501_035531/staged/public/test.csv new file mode 100644 index 0000000000000000000000000000000000000000..e1c4866e541b88f8bcd3b88381c7e56d4df06443 --- /dev/null +++ b/timecost/m8/tabddpm/tabddpm-m8-20260501_035531/staged/public/test.csv @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:6221943e422e75c8317b79b7ef93e9cd01f61fdd8de6ce42909a8e4610966310 +size 370991 diff --git a/timecost/m8/tabddpm/tabddpm-m8-20260501_035531/staged/public/train.csv b/timecost/m8/tabddpm/tabddpm-m8-20260501_035531/staged/public/train.csv new file mode 100644 index 0000000000000000000000000000000000000000..fd7d8791840b6811b098820db4ed9e74cf5d627a --- /dev/null +++ b/timecost/m8/tabddpm/tabddpm-m8-20260501_035531/staged/public/train.csv @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:f9cbb71aa793de19869a138d41aea5808f772b31082741b185ffb8ca7b821833 +size 2964802 diff --git a/timecost/m8/tabddpm/tabddpm-m8-20260501_035531/staged/public/val.csv b/timecost/m8/tabddpm/tabddpm-m8-20260501_035531/staged/public/val.csv new file mode 100644 index 0000000000000000000000000000000000000000..09f0041420455c56eb1f79c62940d135e8bc6ea3 --- /dev/null +++ b/timecost/m8/tabddpm/tabddpm-m8-20260501_035531/staged/public/val.csv @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:5ee8612128aae92155906abc0fdc752ac24fd04d63c78c080c89e3900efe6525 +size 370535 diff --git a/timecost/m8/tabddpm/tabddpm-m8-20260501_035531/staged/tabddpm/adapter_report.json b/timecost/m8/tabddpm/tabddpm-m8-20260501_035531/staged/tabddpm/adapter_report.json new file mode 100644 index 0000000000000000000000000000000000000000..e96b4f94ab5b7777bd67568d638739d425b50620 --- /dev/null +++ b/timecost/m8/tabddpm/tabddpm-m8-20260501_035531/staged/tabddpm/adapter_report.json @@ -0,0 +1,7 @@ +{ + "adapter_ready_status": "pass", + "adapter_fail_reason_code": null, + "adapter_fail_detail": null, + "adapter_transforms_applied": [], + "model_input_manifest": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/m8/tabddpm/tabddpm-m8-20260501_035531/staged/tabddpm/model_input_manifest.json" +} \ No newline at end of file diff --git a/timecost/m8/tabddpm/tabddpm-m8-20260501_035531/staged/tabddpm/adapter_transforms_applied.json b/timecost/m8/tabddpm/tabddpm-m8-20260501_035531/staged/tabddpm/adapter_transforms_applied.json new file mode 100644 index 0000000000000000000000000000000000000000..0637a088a01e8ddab3bf3fa98dbe804cbde1a0dc --- /dev/null +++ b/timecost/m8/tabddpm/tabddpm-m8-20260501_035531/staged/tabddpm/adapter_transforms_applied.json @@ -0,0 +1 @@ +[] \ No newline at end of file diff --git a/timecost/m8/tabddpm/tabddpm-m8-20260501_035531/staged/tabddpm/model_input_manifest.json b/timecost/m8/tabddpm/tabddpm-m8-20260501_035531/staged/tabddpm/model_input_manifest.json new file mode 100644 index 0000000000000000000000000000000000000000..7b5c11f5c8fca882467a708ccaa65f4f04313632 --- /dev/null +++ b/timecost/m8/tabddpm/tabddpm-m8-20260501_035531/staged/tabddpm/model_input_manifest.json @@ -0,0 +1,353 @@ +{ + "dataset_id": "m8", + "model": "tabddpm", + "target_column": "y", + "task_type": "classification", + "column_schema": [ + { + "name": "age", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 76, + "unique_ratio": 0.002101, + "example_values": [ + "40", + "52", + "31", + "51", + "44" + ] + } + }, + { + "name": "job", + "role": "feature", + "semantic_type": "categorical", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 12, + "unique_ratio": 0.000332, + "example_values": [ + "admin.", + "technician", + "entrepreneur", + "blue-collar", + "services" + ] + } + }, + { + "name": "marital", + "role": "feature", + "semantic_type": "categorical", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 3, + "unique_ratio": 8.3e-05, + "example_values": [ + "single", + "married", + "divorced" + ] + } + }, + { + "name": "education", + "role": "feature", + "semantic_type": "categorical", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 4, + "unique_ratio": 0.000111, + "example_values": [ + "secondary", + "tertiary", + "primary", + "unknown" + ] + } + }, + { + "name": "default", + "role": "feature", + "semantic_type": "boolean", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 2, + "unique_ratio": 5.5e-05, + "example_values": [ + "no", + "yes" + ] + } + }, + { + "name": "balance", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 6604, + "unique_ratio": 0.182592, + "example_values": [ + "419", + "31", + "7567", + "315", + "737" + ] + } + }, + { + "name": "housing", + "role": "feature", + "semantic_type": "boolean", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 2, + "unique_ratio": 5.5e-05, + "example_values": [ + "no", + "yes" + ] + } + }, + { + "name": "loan", + "role": "feature", + "semantic_type": "boolean", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 2, + "unique_ratio": 5.5e-05, + "example_values": [ + "yes", + "no" + ] + } + }, + { + "name": "contact", + "role": "feature", + "semantic_type": "categorical", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 3, + "unique_ratio": 8.3e-05, + "example_values": [ + "cellular", + "unknown", + "telephone" + ] + } + }, + { + "name": "day", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 31, + "unique_ratio": 0.000857, + "example_values": [ + "28", + "7", + "11", + "12", + "14" + ] + } + }, + { + "name": "month", + "role": "feature", + "semantic_type": "categorical", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 12, + "unique_ratio": 0.000332, + "example_values": [ + "jul", + "may", + "aug", + "oct", + "feb" + ] + } + }, + { + "name": "duration", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 1507, + "unique_ratio": 0.041667, + "example_values": [ + "100", + "120", + "70", + "291", + "102" + ] + } + }, + { + "name": "campaign", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 47, + "unique_ratio": 0.001299, + "example_values": [ + "16", + "1", + "2", + "5", + "4" + ] + } + }, + { + "name": "pdays", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 524, + "unique_ratio": 0.014488, + "example_values": [ + "-1", + "91", + "365", + "189", + "117" + ] + } + }, + { + "name": "previous", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 38, + "unique_ratio": 0.001051, + "example_values": [ + "0", + "4", + "1", + "2", + "3" + ] + } + }, + { + "name": "poutcome", + "role": "feature", + "semantic_type": "categorical", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 4, + "unique_ratio": 0.000111, + "example_values": [ + "unknown", + "failure", + "other", + "success" + ] + } + }, + { + "name": "y", + "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": 5.5e-05, + "example_values": [ + "no", + "yes" + ] + } + } + ], + "public_manifest": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/m8/tabddpm/tabddpm-m8-20260501_035531/public_gate/staged_input_manifest.json", + "train_csv": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/m8/tabddpm/tabddpm-m8-20260501_035531/staged/public/train.csv", + "val_csv": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/m8/tabddpm/tabddpm-m8-20260501_035531/staged/public/val.csv", + "test_csv": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/m8/tabddpm/tabddpm-m8-20260501_035531/staged/public/test.csv", + "features_json": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/m8/tabddpm/tabddpm-m8-20260501_035531/staged/public/staged_features.json", + "public_gate_report": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/m8/tabddpm/tabddpm-m8-20260501_035531/public_gate/public_gate_report.json" +} \ No newline at end of file diff --git a/timecost/m8/tabddpm/tabddpm-m8-20260501_035531/tabddpm-m8-36168-20260501_035632.csv b/timecost/m8/tabddpm/tabddpm-m8-20260501_035531/tabddpm-m8-36168-20260501_035632.csv new file mode 100644 index 0000000000000000000000000000000000000000..12bf7f4ecf4e17e3db4d9f60bb405a3a6d64f0ac --- /dev/null +++ b/timecost/m8/tabddpm/tabddpm-m8-20260501_035531/tabddpm-m8-36168-20260501_035632.csv @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:d8775c053ec70d2e26ca6814c110d9a91eb180246f2420a51e84780f0bd2c5a2 +size 3449494 diff --git a/timecost/m8/tabddpm/tabddpm-m8-20260501_035531/train_20260501_035532.log b/timecost/m8/tabddpm/tabddpm-m8-20260501_035531/train_20260501_035532.log new file mode 100644 index 0000000000000000000000000000000000000000..ea6bc30d04054f854d50203409ed863cdf37a648 --- /dev/null +++ b/timecost/m8/tabddpm/tabddpm-m8-20260501_035531/train_20260501_035532.log @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:8e077e14a66395c6d1d7c9dfc49530844988502ff1867f11c0e1ec4091a7bfa2 +size 1158 diff --git a/timecost/m8/tabdiff/tabdiff-m8-20260501_010036/_tabdiff_gen.py b/timecost/m8/tabdiff/tabdiff-m8-20260501_010036/_tabdiff_gen.py new file mode 100644 index 0000000000000000000000000000000000000000..1836e1538bd9e65918bbc093b04185589df1f4b4 --- /dev/null +++ b/timecost/m8/tabdiff/tabdiff-m8-20260501_010036/_tabdiff_gen.py @@ -0,0 +1,36 @@ + +import os, shutil, subprocess, sys +td = r"/workspace/TabDiff" +name = r"pipeline_m8" +src = r"/work/output-Benchmark-trainonly-v1/m8/tabdiff/tabdiff-m8-20260501_010036/tabular_bundle/pipeline_m8" +dst_data = os.path.join(td, "data", name) +dst_syn = os.path.join(td, "synthetic", name) +shutil.rmtree(dst_data, ignore_errors=True) +shutil.copytree(src, dst_data) +os.makedirs(dst_syn, exist_ok=True) +for fn in ("real.csv", "test.csv", "val.csv"): + shutil.copy(os.path.join(src, fn), os.path.join(dst_syn, fn)) +os.chdir(td) +os.environ["PYTHONPATH"] = td + os.pathsep + os.environ.get("PYTHONPATH", "") +subprocess.check_call([ + sys.executable, "-m", "tabdiff.main", + "--dataname", name, "--mode", "test", "--gpu", "0", + "--no_wandb", "--exp_name", r"adapter_learnable", + "--ckpt_path", r"/workspace/TabDiff/tabdiff/ckpt/pipeline_m8/adapter_learnable/model_500.pt", + "--num_samples_to_generate", str(int(36168)), +]) +# test() 写入 tabdiff/result////samples.csv +import glob as g +base = os.path.join(td, "tabdiff", "result", name, r"adapter_learnable") +best = None +best_t = -1.0 +for root, _, files in os.walk(base): + if "samples.csv" in files: + p = os.path.join(root, "samples.csv") + t = os.path.getmtime(p) + if t > best_t: + best_t = t + best = p +if not best: + raise SystemExit("tabdiff: no samples.csv under " + base) +shutil.copy(best, r"/work/output-Benchmark-trainonly-v1/m8/tabdiff/tabdiff-m8-20260501_010036/tabdiff-m8-36168-20260501_011423.csv") diff --git a/timecost/m8/tabdiff/tabdiff-m8-20260501_010036/_tabdiff_train.py b/timecost/m8/tabdiff/tabdiff-m8-20260501_010036/_tabdiff_train.py new file mode 100644 index 0000000000000000000000000000000000000000..508e8e7e8b3bd48863c0b417c32ffe35a3748e93 --- /dev/null +++ b/timecost/m8/tabdiff/tabdiff-m8-20260501_010036/_tabdiff_train.py @@ -0,0 +1,21 @@ + +import os, shutil, subprocess, sys +td = r"/workspace/TabDiff" +name = r"pipeline_m8" +src = r"/work/output-Benchmark-trainonly-v1/m8/tabdiff/tabdiff-m8-20260501_010036/tabular_bundle/pipeline_m8" +dst_data = os.path.join(td, "data", name) +dst_syn = os.path.join(td, "synthetic", name) +shutil.rmtree(dst_data, ignore_errors=True) +shutil.copytree(src, dst_data) +os.makedirs(dst_syn, exist_ok=True) +for fn in ("real.csv", "test.csv", "val.csv"): + shutil.copy(os.path.join(src, fn), os.path.join(dst_syn, fn)) +os.chdir(td) +os.environ["PYTHONPATH"] = td + os.pathsep + os.environ.get("PYTHONPATH", "") +os.environ["TABDIFF_SMOKE_STEPS"] = "500" +os.environ["TABDIFF_ADAPTER_TRAIN"] = "1" +subprocess.check_call([ + sys.executable, "-m", "tabdiff.main", + "--dataname", name, "--mode", "train", "--gpu", "0", + "--no_wandb", "--exp_name", r"adapter_learnable", +]) diff --git a/timecost/m8/tabdiff/tabdiff-m8-20260501_010036/gen_20260501_011423.log b/timecost/m8/tabdiff/tabdiff-m8-20260501_010036/gen_20260501_011423.log new file mode 100644 index 0000000000000000000000000000000000000000..928e31cd242f18b98a01584a254e965b3e727e85 --- /dev/null +++ b/timecost/m8/tabdiff/tabdiff-m8-20260501_010036/gen_20260501_011423.log @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:c750198858df23f4b23371a37ee3bb1eab3e59c7f7db237a06f85f863e736e53 +size 9620 diff --git a/timecost/m8/tabdiff/tabdiff-m8-20260501_010036/input_snapshot.json b/timecost/m8/tabdiff/tabdiff-m8-20260501_010036/input_snapshot.json new file mode 100644 index 0000000000000000000000000000000000000000..e95698a9aba414b9dc6c3c8093e5c9611db69565 --- /dev/null +++ b/timecost/m8/tabdiff/tabdiff-m8-20260501_010036/input_snapshot.json @@ -0,0 +1,36 @@ +{ + "dataset_id": "m8", + "model": "tabdiff", + "inputs": { + "train_csv": { + "path": "/data/jialinzhang/SynthesizePipeline-server/DatasetNew/m8/m8-train.csv", + "exists": true, + "size": 2964802, + "sha256": "f9cbb71aa793de19869a138d41aea5808f772b31082741b185ffb8ca7b821833" + }, + "val_csv": { + "path": "/data/jialinzhang/SynthesizePipeline-server/DatasetNew/m8/m8-val.csv", + "exists": true, + "size": 370535, + "sha256": "5ee8612128aae92155906abc0fdc752ac24fd04d63c78c080c89e3900efe6525" + }, + "test_csv": { + "path": "/data/jialinzhang/SynthesizePipeline-server/DatasetNew/m8/m8-test.csv", + "exists": true, + "size": 370991, + "sha256": "6221943e422e75c8317b79b7ef93e9cd01f61fdd8de6ce42909a8e4610966310" + }, + "profile_json": { + "path": "/data/jialinzhang/SynthesizePipeline-server/DatasetNew/artifacts/data_core/tabular/m8/m8-dataset_profile.json", + "exists": true, + "size": 6553, + "sha256": "44f883858641584035a0a8859cb95dbcd3a023c03cbc76931aadfc4c70ef871f" + }, + "contract_json": { + "path": "/data/jialinzhang/SynthesizePipeline-server/DatasetNew/artifacts/data_core/tabular/m8/m8-dataset_contract_v1.json", + "exists": true, + "size": 8214, + "sha256": "e76df134780ec9b6c6c625a54e5d0c1935e9f4a7d09320ad19279a0492438d92" + } + } +} \ No newline at end of file diff --git a/timecost/m8/tabdiff/tabdiff-m8-20260501_010036/models_tabdiff/trained.pt b/timecost/m8/tabdiff/tabdiff-m8-20260501_010036/models_tabdiff/trained.pt new file mode 100644 index 0000000000000000000000000000000000000000..bc319a55a9c7152a1137f968b6fa1c735125ad11 --- /dev/null +++ b/timecost/m8/tabdiff/tabdiff-m8-20260501_010036/models_tabdiff/trained.pt @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:306660b8aad4549267c68390b017e15ddb9bc06a02c80515eb72a97ae31a81eb +size 74 diff --git a/timecost/m8/tabdiff/tabdiff-m8-20260501_010036/public_gate/normalized_schema_snapshot.json b/timecost/m8/tabdiff/tabdiff-m8-20260501_010036/public_gate/normalized_schema_snapshot.json new file mode 100644 index 0000000000000000000000000000000000000000..5e616edd2b7924c5e07f02ccbbb842529655f52a --- /dev/null +++ b/timecost/m8/tabdiff/tabdiff-m8-20260501_010036/public_gate/normalized_schema_snapshot.json @@ -0,0 +1,346 @@ +{ + "dataset_id": "m8", + "target_column": "y", + "task_type": "classification", + "columns": [ + { + "name": "age", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 76, + "unique_ratio": 0.002101, + "example_values": [ + "40", + "52", + "31", + "51", + "44" + ] + } + }, + { + "name": "job", + "role": "feature", + "semantic_type": "categorical", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 12, + "unique_ratio": 0.000332, + "example_values": [ + "admin.", + "technician", + "entrepreneur", + "blue-collar", + "services" + ] + } + }, + { + "name": "marital", + "role": "feature", + "semantic_type": "categorical", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 3, + "unique_ratio": 8.3e-05, + "example_values": [ + "single", + "married", + "divorced" + ] + } + }, + { + "name": "education", + "role": "feature", + "semantic_type": "categorical", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 4, + "unique_ratio": 0.000111, + "example_values": [ + "secondary", + "tertiary", + "primary", + "unknown" + ] + } + }, + { + "name": "default", + "role": "feature", + "semantic_type": "boolean", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 2, + "unique_ratio": 5.5e-05, + "example_values": [ + "no", + "yes" + ] + } + }, + { + "name": "balance", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 6604, + "unique_ratio": 0.182592, + "example_values": [ + "419", + "31", + "7567", + "315", + "737" + ] + } + }, + { + "name": "housing", + "role": "feature", + "semantic_type": "boolean", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 2, + "unique_ratio": 5.5e-05, + "example_values": [ + "no", + "yes" + ] + } + }, + { + "name": "loan", + "role": "feature", + "semantic_type": "boolean", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 2, + "unique_ratio": 5.5e-05, + "example_values": [ + "yes", + "no" + ] + } + }, + { + "name": "contact", + "role": "feature", + "semantic_type": "categorical", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 3, + "unique_ratio": 8.3e-05, + "example_values": [ + "cellular", + "unknown", + "telephone" + ] + } + }, + { + "name": "day", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 31, + "unique_ratio": 0.000857, + "example_values": [ + "28", + "7", + "11", + "12", + "14" + ] + } + }, + { + "name": "month", + "role": "feature", + "semantic_type": "categorical", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 12, + "unique_ratio": 0.000332, + "example_values": [ + "jul", + "may", + "aug", + "oct", + "feb" + ] + } + }, + { + "name": "duration", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 1507, + "unique_ratio": 0.041667, + "example_values": [ + "100", + "120", + "70", + "291", + "102" + ] + } + }, + { + "name": "campaign", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 47, + "unique_ratio": 0.001299, + "example_values": [ + "16", + "1", + "2", + "5", + "4" + ] + } + }, + { + "name": "pdays", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 524, + "unique_ratio": 0.014488, + "example_values": [ + "-1", + "91", + "365", + "189", + "117" + ] + } + }, + { + "name": "previous", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 38, + "unique_ratio": 0.001051, + "example_values": [ + "0", + "4", + "1", + "2", + "3" + ] + } + }, + { + "name": "poutcome", + "role": "feature", + "semantic_type": "categorical", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 4, + "unique_ratio": 0.000111, + "example_values": [ + "unknown", + "failure", + "other", + "success" + ] + } + }, + { + "name": "y", + "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": 5.5e-05, + "example_values": [ + "no", + "yes" + ] + } + } + ] +} \ No newline at end of file diff --git a/timecost/m8/tabdiff/tabdiff-m8-20260501_010036/public_gate/public_gate_report.json b/timecost/m8/tabdiff/tabdiff-m8-20260501_010036/public_gate/public_gate_report.json new file mode 100644 index 0000000000000000000000000000000000000000..318ead0018618096d718d3ec1140561db7e0a70f --- /dev/null +++ b/timecost/m8/tabdiff/tabdiff-m8-20260501_010036/public_gate/public_gate_report.json @@ -0,0 +1,37 @@ +{ + "dataset_id": "m8", + "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": "y", + "task_type": "classification", + "input_splits": { + "train": "/data/jialinzhang/SynthesizePipeline-server/DatasetNew/m8/m8-train.csv", + "val": "/data/jialinzhang/SynthesizePipeline-server/DatasetNew/m8/m8-val.csv", + "test": "/data/jialinzhang/SynthesizePipeline-server/DatasetNew/m8/m8-test.csv" + } +} \ No newline at end of file diff --git a/timecost/m8/tabdiff/tabdiff-m8-20260501_010036/public_gate/staged_input_manifest.json b/timecost/m8/tabdiff/tabdiff-m8-20260501_010036/public_gate/staged_input_manifest.json new file mode 100644 index 0000000000000000000000000000000000000000..a993ea39de8c9d4bdf342c8902adcc73ddcf5aa2 --- /dev/null +++ b/timecost/m8/tabdiff/tabdiff-m8-20260501_010036/public_gate/staged_input_manifest.json @@ -0,0 +1,351 @@ +{ + "dataset_id": "m8", + "target_column": "y", + "task_type": "classification", + "train_csv": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/m8/tabdiff/tabdiff-m8-20260501_010036/staged/public/train.csv", + "val_csv": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/m8/tabdiff/tabdiff-m8-20260501_010036/staged/public/val.csv", + "test_csv": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/m8/tabdiff/tabdiff-m8-20260501_010036/staged/public/test.csv", + "features_json": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/m8/tabdiff/tabdiff-m8-20260501_010036/staged/public/staged_features.json", + "public_gate_report": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/m8/tabdiff/tabdiff-m8-20260501_010036/public_gate/public_gate_report.json", + "column_schema": [ + { + "name": "age", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 76, + "unique_ratio": 0.002101, + "example_values": [ + "40", + "52", + "31", + "51", + "44" + ] + } + }, + { + "name": "job", + "role": "feature", + "semantic_type": "categorical", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 12, + "unique_ratio": 0.000332, + "example_values": [ + "admin.", + "technician", + "entrepreneur", + "blue-collar", + "services" + ] + } + }, + { + "name": "marital", + "role": "feature", + "semantic_type": "categorical", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 3, + "unique_ratio": 8.3e-05, + "example_values": [ + "single", + "married", + "divorced" + ] + } + }, + { + "name": "education", + "role": "feature", + "semantic_type": "categorical", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 4, + "unique_ratio": 0.000111, + "example_values": [ + "secondary", + "tertiary", + "primary", + "unknown" + ] + } + }, + { + "name": "default", + "role": "feature", + "semantic_type": "boolean", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 2, + "unique_ratio": 5.5e-05, + "example_values": [ + "no", + "yes" + ] + } + }, + { + "name": "balance", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 6604, + "unique_ratio": 0.182592, + "example_values": [ + "419", + "31", + "7567", + "315", + "737" + ] + } + }, + { + "name": "housing", + "role": "feature", + "semantic_type": "boolean", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 2, + "unique_ratio": 5.5e-05, + "example_values": [ + "no", + "yes" + ] + } + }, + { + "name": "loan", + "role": "feature", + "semantic_type": "boolean", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 2, + "unique_ratio": 5.5e-05, + "example_values": [ + "yes", + "no" + ] + } + }, + { + "name": "contact", + "role": "feature", + "semantic_type": "categorical", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 3, + "unique_ratio": 8.3e-05, + "example_values": [ + "cellular", + "unknown", + "telephone" + ] + } + }, + { + "name": "day", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 31, + "unique_ratio": 0.000857, + "example_values": [ + "28", + "7", + "11", + "12", + "14" + ] + } + }, + { + "name": "month", + "role": "feature", + "semantic_type": "categorical", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 12, + "unique_ratio": 0.000332, + "example_values": [ + "jul", + "may", + "aug", + "oct", + "feb" + ] + } + }, + { + "name": "duration", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 1507, + "unique_ratio": 0.041667, + "example_values": [ + "100", + "120", + "70", + "291", + "102" + ] + } + }, + { + "name": "campaign", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 47, + "unique_ratio": 0.001299, + "example_values": [ + "16", + "1", + "2", + "5", + "4" + ] + } + }, + { + "name": "pdays", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 524, + "unique_ratio": 0.014488, + "example_values": [ + "-1", + "91", + "365", + "189", + "117" + ] + } + }, + { + "name": "previous", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 38, + "unique_ratio": 0.001051, + "example_values": [ + "0", + "4", + "1", + "2", + "3" + ] + } + }, + { + "name": "poutcome", + "role": "feature", + "semantic_type": "categorical", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 4, + "unique_ratio": 0.000111, + "example_values": [ + "unknown", + "failure", + "other", + "success" + ] + } + }, + { + "name": "y", + "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": 5.5e-05, + "example_values": [ + "no", + "yes" + ] + } + } + ] +} \ No newline at end of file diff --git a/timecost/m8/tabdiff/tabdiff-m8-20260501_010036/runtime_result.json b/timecost/m8/tabdiff/tabdiff-m8-20260501_010036/runtime_result.json new file mode 100644 index 0000000000000000000000000000000000000000..fde17858d652d83f85ccaf408f29e590ffe5add5 --- /dev/null +++ b/timecost/m8/tabdiff/tabdiff-m8-20260501_010036/runtime_result.json @@ -0,0 +1,27 @@ +{ + "dataset_id": "m8", + "model": "tabdiff", + "run_id": "tabdiff-m8-20260501_010036", + "public_gate_status": "pass", + "adapter_ready_status": "pass", + "train_status": "success", + "generate_status": "success", + "reason_code": null, + "reason_detail": null, + "artifacts": { + "synthetic_csv": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/m8/tabdiff/tabdiff-m8-20260501_010036/tabdiff-m8-36168-20260501_011423.csv", + "model_path": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/m8/tabdiff/tabdiff-m8-20260501_010036/models_tabdiff/trained.pt" + }, + "timings": { + "train": { + "started_at": "2026-05-01T01:00:36", + "ended_at": "2026-05-01T01:14:23", + "duration_sec": 826.707 + }, + "generate": { + "started_at": "2026-05-01T01:14:23", + "ended_at": "2026-05-01T01:14:41", + "duration_sec": 17.876 + } + } +} \ No newline at end of file diff --git a/timecost/m8/tabdiff/tabdiff-m8-20260501_010036/staged/public/staged_features.json b/timecost/m8/tabdiff/tabdiff-m8-20260501_010036/staged/public/staged_features.json new file mode 100644 index 0000000000000000000000000000000000000000..11323e8dc5c8a2eaafa8e404e60d3db7e244452a --- /dev/null +++ b/timecost/m8/tabdiff/tabdiff-m8-20260501_010036/staged/public/staged_features.json @@ -0,0 +1,87 @@ +[ + { + "feature_name": "age", + "data_type": "continuous", + "is_target": false + }, + { + "feature_name": "job", + "data_type": "categorical", + "is_target": false + }, + { + "feature_name": "marital", + "data_type": "categorical", + "is_target": false + }, + { + "feature_name": "education", + "data_type": "categorical", + "is_target": false + }, + { + "feature_name": "default", + "data_type": "binary", + "is_target": false + }, + { + "feature_name": "balance", + "data_type": "continuous", + "is_target": false + }, + { + "feature_name": "housing", + "data_type": "binary", + "is_target": false + }, + { + "feature_name": "loan", + "data_type": "binary", + "is_target": false + }, + { + "feature_name": "contact", + "data_type": "categorical", + "is_target": false + }, + { + "feature_name": "day", + "data_type": "continuous", + "is_target": false + }, + { + "feature_name": "month", + "data_type": "categorical", + "is_target": false + }, + { + "feature_name": "duration", + "data_type": "continuous", + "is_target": false + }, + { + "feature_name": "campaign", + "data_type": "continuous", + "is_target": false + }, + { + "feature_name": "pdays", + "data_type": "continuous", + "is_target": false + }, + { + "feature_name": "previous", + "data_type": "continuous", + "is_target": false + }, + { + "feature_name": "poutcome", + "data_type": "categorical", + "is_target": false + }, + { + "feature_name": "y", + "data_type": "binary", + "is_target": true + } +] \ No newline at end of file diff --git a/timecost/m8/tabdiff/tabdiff-m8-20260501_010036/staged/public/test.csv b/timecost/m8/tabdiff/tabdiff-m8-20260501_010036/staged/public/test.csv new file mode 100644 index 0000000000000000000000000000000000000000..e1c4866e541b88f8bcd3b88381c7e56d4df06443 --- /dev/null +++ b/timecost/m8/tabdiff/tabdiff-m8-20260501_010036/staged/public/test.csv @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:6221943e422e75c8317b79b7ef93e9cd01f61fdd8de6ce42909a8e4610966310 +size 370991 diff --git a/timecost/m8/tabdiff/tabdiff-m8-20260501_010036/staged/public/train.csv b/timecost/m8/tabdiff/tabdiff-m8-20260501_010036/staged/public/train.csv new file mode 100644 index 0000000000000000000000000000000000000000..fd7d8791840b6811b098820db4ed9e74cf5d627a --- /dev/null +++ b/timecost/m8/tabdiff/tabdiff-m8-20260501_010036/staged/public/train.csv @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:f9cbb71aa793de19869a138d41aea5808f772b31082741b185ffb8ca7b821833 +size 2964802 diff --git a/timecost/m8/tabdiff/tabdiff-m8-20260501_010036/staged/public/val.csv b/timecost/m8/tabdiff/tabdiff-m8-20260501_010036/staged/public/val.csv new file mode 100644 index 0000000000000000000000000000000000000000..09f0041420455c56eb1f79c62940d135e8bc6ea3 --- /dev/null +++ b/timecost/m8/tabdiff/tabdiff-m8-20260501_010036/staged/public/val.csv @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:5ee8612128aae92155906abc0fdc752ac24fd04d63c78c080c89e3900efe6525 +size 370535 diff --git a/timecost/m8/tabdiff/tabdiff-m8-20260501_010036/staged/tabdiff/adapter_report.json b/timecost/m8/tabdiff/tabdiff-m8-20260501_010036/staged/tabdiff/adapter_report.json new file mode 100644 index 0000000000000000000000000000000000000000..2f3d8f514b5e5d8f18fc598b4046a0e386dfa0a1 --- /dev/null +++ b/timecost/m8/tabdiff/tabdiff-m8-20260501_010036/staged/tabdiff/adapter_report.json @@ -0,0 +1,7 @@ +{ + "adapter_ready_status": "pass", + "adapter_fail_reason_code": null, + "adapter_fail_detail": null, + "adapter_transforms_applied": [], + "model_input_manifest": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/m8/tabdiff/tabdiff-m8-20260501_010036/staged/tabdiff/model_input_manifest.json" +} \ No newline at end of file diff --git a/timecost/m8/tabdiff/tabdiff-m8-20260501_010036/staged/tabdiff/adapter_transforms_applied.json b/timecost/m8/tabdiff/tabdiff-m8-20260501_010036/staged/tabdiff/adapter_transforms_applied.json new file mode 100644 index 0000000000000000000000000000000000000000..0637a088a01e8ddab3bf3fa98dbe804cbde1a0dc --- /dev/null +++ b/timecost/m8/tabdiff/tabdiff-m8-20260501_010036/staged/tabdiff/adapter_transforms_applied.json @@ -0,0 +1 @@ +[] \ No newline at end of file diff --git a/timecost/m8/tabdiff/tabdiff-m8-20260501_010036/staged/tabdiff/model_input_manifest.json b/timecost/m8/tabdiff/tabdiff-m8-20260501_010036/staged/tabdiff/model_input_manifest.json new file mode 100644 index 0000000000000000000000000000000000000000..ebace4b33745daededcf5f677cd0f2e172cc642c --- /dev/null +++ b/timecost/m8/tabdiff/tabdiff-m8-20260501_010036/staged/tabdiff/model_input_manifest.json @@ -0,0 +1,353 @@ +{ + "dataset_id": "m8", + "model": "tabdiff", + "target_column": "y", + "task_type": "classification", + "column_schema": [ + { + "name": "age", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 76, + "unique_ratio": 0.002101, + "example_values": [ + "40", + "52", + "31", + "51", + "44" + ] + } + }, + { + "name": "job", + "role": "feature", + "semantic_type": "categorical", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 12, + "unique_ratio": 0.000332, + "example_values": [ + "admin.", + "technician", + "entrepreneur", + "blue-collar", + "services" + ] + } + }, + { + "name": "marital", + "role": "feature", + "semantic_type": "categorical", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 3, + "unique_ratio": 8.3e-05, + "example_values": [ + "single", + "married", + "divorced" + ] + } + }, + { + "name": "education", + "role": "feature", + "semantic_type": "categorical", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 4, + "unique_ratio": 0.000111, + "example_values": [ + "secondary", + "tertiary", + "primary", + "unknown" + ] + } + }, + { + "name": "default", + "role": "feature", + "semantic_type": "boolean", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 2, + "unique_ratio": 5.5e-05, + "example_values": [ + "no", + "yes" + ] + } + }, + { + "name": "balance", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 6604, + "unique_ratio": 0.182592, + "example_values": [ + "419", + "31", + "7567", + "315", + "737" + ] + } + }, + { + "name": "housing", + "role": "feature", + "semantic_type": "boolean", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 2, + "unique_ratio": 5.5e-05, + "example_values": [ + "no", + "yes" + ] + } + }, + { + "name": "loan", + "role": "feature", + "semantic_type": "boolean", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 2, + "unique_ratio": 5.5e-05, + "example_values": [ + "yes", + "no" + ] + } + }, + { + "name": "contact", + "role": "feature", + "semantic_type": "categorical", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 3, + "unique_ratio": 8.3e-05, + "example_values": [ + "cellular", + "unknown", + "telephone" + ] + } + }, + { + "name": "day", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 31, + "unique_ratio": 0.000857, + "example_values": [ + "28", + "7", + "11", + "12", + "14" + ] + } + }, + { + "name": "month", + "role": "feature", + "semantic_type": "categorical", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 12, + "unique_ratio": 0.000332, + "example_values": [ + "jul", + "may", + "aug", + "oct", + "feb" + ] + } + }, + { + "name": "duration", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 1507, + "unique_ratio": 0.041667, + "example_values": [ + "100", + "120", + "70", + "291", + "102" + ] + } + }, + { + "name": "campaign", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 47, + "unique_ratio": 0.001299, + "example_values": [ + "16", + "1", + "2", + "5", + "4" + ] + } + }, + { + "name": "pdays", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 524, + "unique_ratio": 0.014488, + "example_values": [ + "-1", + "91", + "365", + "189", + "117" + ] + } + }, + { + "name": "previous", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 38, + "unique_ratio": 0.001051, + "example_values": [ + "0", + "4", + "1", + "2", + "3" + ] + } + }, + { + "name": "poutcome", + "role": "feature", + "semantic_type": "categorical", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 4, + "unique_ratio": 0.000111, + "example_values": [ + "unknown", + "failure", + "other", + "success" + ] + } + }, + { + "name": "y", + "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": 5.5e-05, + "example_values": [ + "no", + "yes" + ] + } + } + ], + "public_manifest": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/m8/tabdiff/tabdiff-m8-20260501_010036/public_gate/staged_input_manifest.json", + "train_csv": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/m8/tabdiff/tabdiff-m8-20260501_010036/staged/public/train.csv", + "val_csv": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/m8/tabdiff/tabdiff-m8-20260501_010036/staged/public/val.csv", + "test_csv": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/m8/tabdiff/tabdiff-m8-20260501_010036/staged/public/test.csv", + "features_json": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/m8/tabdiff/tabdiff-m8-20260501_010036/staged/public/staged_features.json", + "public_gate_report": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/m8/tabdiff/tabdiff-m8-20260501_010036/public_gate/public_gate_report.json" +} \ No newline at end of file diff --git a/timecost/m8/tabdiff/tabdiff-m8-20260501_010036/tabdiff-m8-36168-20260501_011423.csv b/timecost/m8/tabdiff/tabdiff-m8-20260501_010036/tabdiff-m8-36168-20260501_011423.csv new file mode 100644 index 0000000000000000000000000000000000000000..afb31d8b4a3a60a62427a3d256fd4b8ae3788bda --- /dev/null +++ b/timecost/m8/tabdiff/tabdiff-m8-20260501_010036/tabdiff-m8-36168-20260501_011423.csv @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:9d841bd0719e620e32d1dfd6742c298a12394f3a1ea4451dc8ab7c9c2f4ef6e3 +size 2215693 diff --git a/timecost/m8/tabdiff/tabdiff-m8-20260501_010036/tabdiff_train_meta.json b/timecost/m8/tabdiff/tabdiff-m8-20260501_010036/tabdiff_train_meta.json new file mode 100644 index 0000000000000000000000000000000000000000..7988f9d49f44ecbdec0d5acb123d9facaf4c6b03 --- /dev/null +++ b/timecost/m8/tabdiff/tabdiff-m8-20260501_010036/tabdiff_train_meta.json @@ -0,0 +1,5 @@ +{ + "exp_name": "adapter_learnable", + "dataname": "pipeline_m8", + "steps": 500 +} \ No newline at end of file diff --git a/timecost/m8/tabdiff/tabdiff-m8-20260501_010036/tabular_bundle/pipeline_m8/X_cat_test.npy b/timecost/m8/tabdiff/tabdiff-m8-20260501_010036/tabular_bundle/pipeline_m8/X_cat_test.npy new file mode 100644 index 0000000000000000000000000000000000000000..593b28d49c204d0e1075baeb8750f38436a36e50 --- /dev/null +++ b/timecost/m8/tabdiff/tabdiff-m8-20260501_010036/tabular_bundle/pipeline_m8/X_cat_test.npy @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:b7a7263704577346e726c9bbb028fcff4c26bb80a5b0bb53ba51f837bb032fc3 +size 2604224 diff --git a/timecost/m8/tabdiff/tabdiff-m8-20260501_010036/tabular_bundle/pipeline_m8/X_cat_train.npy b/timecost/m8/tabdiff/tabdiff-m8-20260501_010036/tabular_bundle/pipeline_m8/X_cat_train.npy new file mode 100644 index 0000000000000000000000000000000000000000..593b28d49c204d0e1075baeb8750f38436a36e50 --- /dev/null +++ b/timecost/m8/tabdiff/tabdiff-m8-20260501_010036/tabular_bundle/pipeline_m8/X_cat_train.npy @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:b7a7263704577346e726c9bbb028fcff4c26bb80a5b0bb53ba51f837bb032fc3 +size 2604224 diff --git a/timecost/m8/tabdiff/tabdiff-m8-20260501_010036/tabular_bundle/pipeline_m8/X_cat_val.npy b/timecost/m8/tabdiff/tabdiff-m8-20260501_010036/tabular_bundle/pipeline_m8/X_cat_val.npy new file mode 100644 index 0000000000000000000000000000000000000000..593b28d49c204d0e1075baeb8750f38436a36e50 --- /dev/null +++ b/timecost/m8/tabdiff/tabdiff-m8-20260501_010036/tabular_bundle/pipeline_m8/X_cat_val.npy @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:b7a7263704577346e726c9bbb028fcff4c26bb80a5b0bb53ba51f837bb032fc3 +size 2604224 diff --git a/timecost/m8/tabdiff/tabdiff-m8-20260501_010036/tabular_bundle/pipeline_m8/X_num_test.npy b/timecost/m8/tabdiff/tabdiff-m8-20260501_010036/tabular_bundle/pipeline_m8/X_num_test.npy new file mode 100644 index 0000000000000000000000000000000000000000..07e2a13424a0435006d25dfc6527e9c7d0d87f40 --- /dev/null +++ b/timecost/m8/tabdiff/tabdiff-m8-20260501_010036/tabular_bundle/pipeline_m8/X_num_test.npy @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:ae3f0ae4e117a2087b337ccec94a15b29288bb82a257e7e365f10bae858de8ec +size 1012832 diff --git a/timecost/m8/tabdiff/tabdiff-m8-20260501_010036/tabular_bundle/pipeline_m8/X_num_train.npy b/timecost/m8/tabdiff/tabdiff-m8-20260501_010036/tabular_bundle/pipeline_m8/X_num_train.npy new file mode 100644 index 0000000000000000000000000000000000000000..07e2a13424a0435006d25dfc6527e9c7d0d87f40 --- /dev/null +++ b/timecost/m8/tabdiff/tabdiff-m8-20260501_010036/tabular_bundle/pipeline_m8/X_num_train.npy @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:ae3f0ae4e117a2087b337ccec94a15b29288bb82a257e7e365f10bae858de8ec +size 1012832 diff --git a/timecost/m8/tabdiff/tabdiff-m8-20260501_010036/tabular_bundle/pipeline_m8/X_num_val.npy b/timecost/m8/tabdiff/tabdiff-m8-20260501_010036/tabular_bundle/pipeline_m8/X_num_val.npy new file mode 100644 index 0000000000000000000000000000000000000000..07e2a13424a0435006d25dfc6527e9c7d0d87f40 --- /dev/null +++ b/timecost/m8/tabdiff/tabdiff-m8-20260501_010036/tabular_bundle/pipeline_m8/X_num_val.npy @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:ae3f0ae4e117a2087b337ccec94a15b29288bb82a257e7e365f10bae858de8ec +size 1012832 diff --git a/timecost/m8/tabdiff/tabdiff-m8-20260501_010036/tabular_bundle/pipeline_m8/info.json b/timecost/m8/tabdiff/tabdiff-m8-20260501_010036/tabular_bundle/pipeline_m8/info.json new file mode 100644 index 0000000000000000000000000000000000000000..779aa13573a20a8c073a142023a2900dfbcade7c --- /dev/null +++ b/timecost/m8/tabdiff/tabdiff-m8-20260501_010036/tabular_bundle/pipeline_m8/info.json @@ -0,0 +1,176 @@ +{ + "name": "pipeline_m8", + "task_type": "binclass", + "n_num_features": 7, + "n_cat_features": 9, + "train_size": 36168, + "test_num": 36168, + "val_num": 36168, + "train_num": 36168, + "bundle_note": "val/test matrices are train copies (train-only policy; no real held-out rows).", + "num_col_idx": [ + 0, + 1, + 2, + 3, + 4, + 5, + 6 + ], + "cat_col_idx": [ + 7, + 8, + 9, + 10, + 11, + 12, + 13, + 14, + 15 + ], + "target_col_idx": [ + 16 + ], + "column_names": [ + "age", + "balance", + "day", + "duration", + "campaign", + "pdays", + "previous", + "job", + "marital", + "education", + "default", + "housing", + "loan", + "contact", + "month", + "poutcome", + "y" + ], + "int_col_idx": [], + "int_columns": [], + "int_col_idx_wrt_num": [], + "metadata": { + "columns": { + "0": { + "sdtype": "numerical", + "computer_representation": "Float" + }, + "1": { + "sdtype": "numerical", + "computer_representation": "Float" + }, + "2": { + "sdtype": "numerical", + "computer_representation": "Float" + }, + "3": { + "sdtype": "numerical", + "computer_representation": "Float" + }, + "4": { + "sdtype": "numerical", + "computer_representation": "Float" + }, + "5": { + "sdtype": "numerical", + "computer_representation": "Float" + }, + "6": { + "sdtype": "numerical", + "computer_representation": "Float" + }, + "7": { + "sdtype": "categorical" + }, + "8": { + "sdtype": "categorical" + }, + "9": { + "sdtype": "categorical" + }, + "10": { + "sdtype": "categorical" + }, + "11": { + "sdtype": "categorical" + }, + "12": { + "sdtype": "categorical" + }, + "13": { + "sdtype": "categorical" + }, + "14": { + "sdtype": "categorical" + }, + "15": { + "sdtype": "categorical" + }, + "16": { + "sdtype": "categorical" + } + } + }, + "idx_mapping": { + "0": 0, + "1": 1, + "2": 2, + "3": 3, + "4": 4, + "5": 5, + "6": 6, + "7": 7, + "8": 8, + "9": 9, + "10": 10, + "11": 11, + "12": 12, + "13": 13, + "14": 14, + "15": 15, + "16": 16 + }, + "inverse_idx_mapping": { + "0": 0, + "1": 1, + "2": 2, + "3": 3, + "4": 4, + "5": 5, + "6": 6, + "7": 7, + "8": 8, + "9": 9, + "10": 10, + "11": 11, + "12": 12, + "13": 13, + "14": 14, + "15": 15, + "16": 16 + }, + "idx_name_mapping": { + "0": "age", + "1": "balance", + "2": "day", + "3": "duration", + "4": "campaign", + "5": "pdays", + "6": "previous", + "7": "job", + "8": "marital", + "9": "education", + "10": "default", + "11": "housing", + "12": "loan", + "13": "contact", + "14": "month", + "15": "poutcome", + "16": "y" + }, + "n_classes": 2 +} \ No newline at end of file diff --git a/timecost/m8/tabdiff/tabdiff-m8-20260501_010036/tabular_bundle/pipeline_m8/real.csv b/timecost/m8/tabdiff/tabdiff-m8-20260501_010036/tabular_bundle/pipeline_m8/real.csv new file mode 100644 index 0000000000000000000000000000000000000000..89f045df89f474d0b98875260fa3dadcbead70a1 --- /dev/null +++ b/timecost/m8/tabdiff/tabdiff-m8-20260501_010036/tabular_bundle/pipeline_m8/real.csv @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:c901e8058d778b30427b02e99359688644f7ea1cad9d3d04a55fdf3881158d60 +size 1517968 diff --git a/timecost/m8/tabdiff/tabdiff-m8-20260501_010036/tabular_bundle/pipeline_m8/test.csv b/timecost/m8/tabdiff/tabdiff-m8-20260501_010036/tabular_bundle/pipeline_m8/test.csv new file mode 100644 index 0000000000000000000000000000000000000000..89f045df89f474d0b98875260fa3dadcbead70a1 --- /dev/null +++ b/timecost/m8/tabdiff/tabdiff-m8-20260501_010036/tabular_bundle/pipeline_m8/test.csv @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:c901e8058d778b30427b02e99359688644f7ea1cad9d3d04a55fdf3881158d60 +size 1517968 diff --git a/timecost/m8/tabdiff/tabdiff-m8-20260501_010036/tabular_bundle/pipeline_m8/val.csv b/timecost/m8/tabdiff/tabdiff-m8-20260501_010036/tabular_bundle/pipeline_m8/val.csv new file mode 100644 index 0000000000000000000000000000000000000000..89f045df89f474d0b98875260fa3dadcbead70a1 --- /dev/null +++ b/timecost/m8/tabdiff/tabdiff-m8-20260501_010036/tabular_bundle/pipeline_m8/val.csv @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:c901e8058d778b30427b02e99359688644f7ea1cad9d3d04a55fdf3881158d60 +size 1517968 diff --git a/timecost/m8/tabdiff/tabdiff-m8-20260501_010036/tabular_bundle/pipeline_m8/y_test.npy b/timecost/m8/tabdiff/tabdiff-m8-20260501_010036/tabular_bundle/pipeline_m8/y_test.npy new file mode 100644 index 0000000000000000000000000000000000000000..6de42d9b9d2e98ac13fbeb62391fe185ffdd6210 --- /dev/null +++ b/timecost/m8/tabdiff/tabdiff-m8-20260501_010036/tabular_bundle/pipeline_m8/y_test.npy @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:3fe448bbe15f46b1714e7d0ebca94f3df952a9ef5364159dda69ccefcdce02c6 +size 289472 diff --git a/timecost/m8/tabdiff/tabdiff-m8-20260501_010036/tabular_bundle/pipeline_m8/y_train.npy b/timecost/m8/tabdiff/tabdiff-m8-20260501_010036/tabular_bundle/pipeline_m8/y_train.npy new file mode 100644 index 0000000000000000000000000000000000000000..6de42d9b9d2e98ac13fbeb62391fe185ffdd6210 --- /dev/null +++ b/timecost/m8/tabdiff/tabdiff-m8-20260501_010036/tabular_bundle/pipeline_m8/y_train.npy @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:3fe448bbe15f46b1714e7d0ebca94f3df952a9ef5364159dda69ccefcdce02c6 +size 289472 diff --git a/timecost/m8/tabdiff/tabdiff-m8-20260501_010036/tabular_bundle/pipeline_m8/y_val.npy b/timecost/m8/tabdiff/tabdiff-m8-20260501_010036/tabular_bundle/pipeline_m8/y_val.npy new file mode 100644 index 0000000000000000000000000000000000000000..6de42d9b9d2e98ac13fbeb62391fe185ffdd6210 --- /dev/null +++ b/timecost/m8/tabdiff/tabdiff-m8-20260501_010036/tabular_bundle/pipeline_m8/y_val.npy @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:3fe448bbe15f46b1714e7d0ebca94f3df952a9ef5364159dda69ccefcdce02c6 +size 289472 diff --git a/timecost/m8/tabdiff/tabdiff-m8-20260501_010036/train_20260501_010037.log b/timecost/m8/tabdiff/tabdiff-m8-20260501_010036/train_20260501_010037.log new file mode 100644 index 0000000000000000000000000000000000000000..03480d906e8cfe17e1bf5af5e8641eaa208eca4e --- /dev/null +++ b/timecost/m8/tabdiff/tabdiff-m8-20260501_010036/train_20260501_010037.log @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:6725e0d8a189e38fcae9a0944c90d93381668aac8a507352115ce526fff6a314 +size 1094773 diff --git a/timecost/m8/tabdiff/tabdiff-m8-20260501_035904/_tabdiff_gen.py b/timecost/m8/tabdiff/tabdiff-m8-20260501_035904/_tabdiff_gen.py new file mode 100644 index 0000000000000000000000000000000000000000..03ae207e8fe16b4dea0c42509f67b0e1f9d1c89d --- /dev/null +++ b/timecost/m8/tabdiff/tabdiff-m8-20260501_035904/_tabdiff_gen.py @@ -0,0 +1,36 @@ + +import os, shutil, subprocess, sys +td = r"/workspace/TabDiff" +name = r"pipeline_m8" +src = r"/work/output-Benchmark-trainonly-v1/m8/tabdiff/tabdiff-m8-20260501_035904/tabular_bundle/pipeline_m8" +dst_data = os.path.join(td, "data", name) +dst_syn = os.path.join(td, "synthetic", name) +shutil.rmtree(dst_data, ignore_errors=True) +shutil.copytree(src, dst_data) +os.makedirs(dst_syn, exist_ok=True) +for fn in ("real.csv", "test.csv", "val.csv"): + shutil.copy(os.path.join(src, fn), os.path.join(dst_syn, fn)) +os.chdir(td) +os.environ["PYTHONPATH"] = td + os.pathsep + os.environ.get("PYTHONPATH", "") +subprocess.check_call([ + sys.executable, "-m", "tabdiff.main", + "--dataname", name, "--mode", "test", "--gpu", "0", + "--no_wandb", "--exp_name", r"adapter_learnable", + "--ckpt_path", r"/workspace/TabDiff/tabdiff/ckpt/pipeline_m8/adapter_learnable/model_500.pt", + "--num_samples_to_generate", str(int(36168)), +]) +# test() 写入 tabdiff/result////samples.csv +import glob as g +base = os.path.join(td, "tabdiff", "result", name, r"adapter_learnable") +best = None +best_t = -1.0 +for root, _, files in os.walk(base): + if "samples.csv" in files: + p = os.path.join(root, "samples.csv") + t = os.path.getmtime(p) + if t > best_t: + best_t = t + best = p +if not best: + raise SystemExit("tabdiff: no samples.csv under " + base) +shutil.copy(best, r"/work/output-Benchmark-trainonly-v1/m8/tabdiff/tabdiff-m8-20260501_035904/tabdiff-m8-36168-20260501_040953.csv") diff --git a/timecost/m8/tabdiff/tabdiff-m8-20260501_035904/_tabdiff_train.py b/timecost/m8/tabdiff/tabdiff-m8-20260501_035904/_tabdiff_train.py new file mode 100644 index 0000000000000000000000000000000000000000..ed0bf514e6bb98c8a5c9b95c11bba4e13150eb22 --- /dev/null +++ b/timecost/m8/tabdiff/tabdiff-m8-20260501_035904/_tabdiff_train.py @@ -0,0 +1,21 @@ + +import os, shutil, subprocess, sys +td = r"/workspace/TabDiff" +name = r"pipeline_m8" +src = r"/work/output-Benchmark-trainonly-v1/m8/tabdiff/tabdiff-m8-20260501_035904/tabular_bundle/pipeline_m8" +dst_data = os.path.join(td, "data", name) +dst_syn = os.path.join(td, "synthetic", name) +shutil.rmtree(dst_data, ignore_errors=True) +shutil.copytree(src, dst_data) +os.makedirs(dst_syn, exist_ok=True) +for fn in ("real.csv", "test.csv", "val.csv"): + shutil.copy(os.path.join(src, fn), os.path.join(dst_syn, fn)) +os.chdir(td) +os.environ["PYTHONPATH"] = td + os.pathsep + os.environ.get("PYTHONPATH", "") +os.environ["TABDIFF_SMOKE_STEPS"] = "500" +os.environ["TABDIFF_ADAPTER_TRAIN"] = "1" +subprocess.check_call([ + sys.executable, "-m", "tabdiff.main", + "--dataname", name, "--mode", "train", "--gpu", "0", + "--no_wandb", "--exp_name", r"adapter_learnable", +]) diff --git a/timecost/m8/tabdiff/tabdiff-m8-20260501_035904/gen_20260501_040953.log b/timecost/m8/tabdiff/tabdiff-m8-20260501_035904/gen_20260501_040953.log new file mode 100644 index 0000000000000000000000000000000000000000..d11024e9b42a2de1e6318684aca20f5c09e02700 --- /dev/null +++ b/timecost/m8/tabdiff/tabdiff-m8-20260501_035904/gen_20260501_040953.log @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:bbec1f7cf441711463762d9e69c5edd6ad21954f5eab830d543e58e617313f0e +size 7904 diff --git a/timecost/m8/tabdiff/tabdiff-m8-20260501_035904/input_snapshot.json b/timecost/m8/tabdiff/tabdiff-m8-20260501_035904/input_snapshot.json new file mode 100644 index 0000000000000000000000000000000000000000..e95698a9aba414b9dc6c3c8093e5c9611db69565 --- /dev/null +++ b/timecost/m8/tabdiff/tabdiff-m8-20260501_035904/input_snapshot.json @@ -0,0 +1,36 @@ +{ + "dataset_id": "m8", + "model": "tabdiff", + "inputs": { + "train_csv": { + "path": "/data/jialinzhang/SynthesizePipeline-server/DatasetNew/m8/m8-train.csv", + "exists": true, + "size": 2964802, + "sha256": "f9cbb71aa793de19869a138d41aea5808f772b31082741b185ffb8ca7b821833" + }, + "val_csv": { + "path": "/data/jialinzhang/SynthesizePipeline-server/DatasetNew/m8/m8-val.csv", + "exists": true, + "size": 370535, + "sha256": "5ee8612128aae92155906abc0fdc752ac24fd04d63c78c080c89e3900efe6525" + }, + "test_csv": { + "path": "/data/jialinzhang/SynthesizePipeline-server/DatasetNew/m8/m8-test.csv", + "exists": true, + "size": 370991, + "sha256": "6221943e422e75c8317b79b7ef93e9cd01f61fdd8de6ce42909a8e4610966310" + }, + "profile_json": { + "path": "/data/jialinzhang/SynthesizePipeline-server/DatasetNew/artifacts/data_core/tabular/m8/m8-dataset_profile.json", + "exists": true, + "size": 6553, + "sha256": "44f883858641584035a0a8859cb95dbcd3a023c03cbc76931aadfc4c70ef871f" + }, + "contract_json": { + "path": "/data/jialinzhang/SynthesizePipeline-server/DatasetNew/artifacts/data_core/tabular/m8/m8-dataset_contract_v1.json", + "exists": true, + "size": 8214, + "sha256": "e76df134780ec9b6c6c625a54e5d0c1935e9f4a7d09320ad19279a0492438d92" + } + } +} \ No newline at end of file diff --git a/timecost/m8/tabdiff/tabdiff-m8-20260501_035904/models_tabdiff/trained.pt b/timecost/m8/tabdiff/tabdiff-m8-20260501_035904/models_tabdiff/trained.pt new file mode 100644 index 0000000000000000000000000000000000000000..bc319a55a9c7152a1137f968b6fa1c735125ad11 --- /dev/null +++ b/timecost/m8/tabdiff/tabdiff-m8-20260501_035904/models_tabdiff/trained.pt @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:306660b8aad4549267c68390b017e15ddb9bc06a02c80515eb72a97ae31a81eb +size 74 diff --git a/timecost/m8/tabdiff/tabdiff-m8-20260501_035904/public_gate/normalized_schema_snapshot.json b/timecost/m8/tabdiff/tabdiff-m8-20260501_035904/public_gate/normalized_schema_snapshot.json new file mode 100644 index 0000000000000000000000000000000000000000..5e616edd2b7924c5e07f02ccbbb842529655f52a --- /dev/null +++ b/timecost/m8/tabdiff/tabdiff-m8-20260501_035904/public_gate/normalized_schema_snapshot.json @@ -0,0 +1,346 @@ +{ + "dataset_id": "m8", + "target_column": "y", + "task_type": "classification", + "columns": [ + { + "name": "age", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 76, + "unique_ratio": 0.002101, + "example_values": [ + "40", + "52", + "31", + "51", + "44" + ] + } + }, + { + "name": "job", + "role": "feature", + "semantic_type": "categorical", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 12, + "unique_ratio": 0.000332, + "example_values": [ + "admin.", + "technician", + "entrepreneur", + "blue-collar", + "services" + ] + } + }, + { + "name": "marital", + "role": "feature", + "semantic_type": "categorical", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 3, + "unique_ratio": 8.3e-05, + "example_values": [ + "single", + "married", + "divorced" + ] + } + }, + { + "name": "education", + "role": "feature", + "semantic_type": "categorical", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 4, + "unique_ratio": 0.000111, + "example_values": [ + "secondary", + "tertiary", + "primary", + "unknown" + ] + } + }, + { + "name": "default", + "role": "feature", + "semantic_type": "boolean", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 2, + "unique_ratio": 5.5e-05, + "example_values": [ + "no", + "yes" + ] + } + }, + { + "name": "balance", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 6604, + "unique_ratio": 0.182592, + "example_values": [ + "419", + "31", + "7567", + "315", + "737" + ] + } + }, + { + "name": "housing", + "role": "feature", + "semantic_type": "boolean", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 2, + "unique_ratio": 5.5e-05, + "example_values": [ + "no", + "yes" + ] + } + }, + { + "name": "loan", + "role": "feature", + "semantic_type": "boolean", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 2, + "unique_ratio": 5.5e-05, + "example_values": [ + "yes", + "no" + ] + } + }, + { + "name": "contact", + "role": "feature", + "semantic_type": "categorical", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 3, + "unique_ratio": 8.3e-05, + "example_values": [ + "cellular", + "unknown", + "telephone" + ] + } + }, + { + "name": "day", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 31, + "unique_ratio": 0.000857, + "example_values": [ + "28", + "7", + "11", + "12", + "14" + ] + } + }, + { + "name": "month", + "role": "feature", + "semantic_type": "categorical", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 12, + "unique_ratio": 0.000332, + "example_values": [ + "jul", + "may", + "aug", + "oct", + "feb" + ] + } + }, + { + "name": "duration", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 1507, + "unique_ratio": 0.041667, + "example_values": [ + "100", + "120", + "70", + "291", + "102" + ] + } + }, + { + "name": "campaign", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 47, + "unique_ratio": 0.001299, + "example_values": [ + "16", + "1", + "2", + "5", + "4" + ] + } + }, + { + "name": "pdays", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 524, + "unique_ratio": 0.014488, + "example_values": [ + "-1", + "91", + "365", + "189", + "117" + ] + } + }, + { + "name": "previous", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 38, + "unique_ratio": 0.001051, + "example_values": [ + "0", + "4", + "1", + "2", + "3" + ] + } + }, + { + "name": "poutcome", + "role": "feature", + "semantic_type": "categorical", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 4, + "unique_ratio": 0.000111, + "example_values": [ + "unknown", + "failure", + "other", + "success" + ] + } + }, + { + "name": "y", + "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": 5.5e-05, + "example_values": [ + "no", + "yes" + ] + } + } + ] +} \ No newline at end of file diff --git a/timecost/m8/tabdiff/tabdiff-m8-20260501_035904/public_gate/public_gate_report.json b/timecost/m8/tabdiff/tabdiff-m8-20260501_035904/public_gate/public_gate_report.json new file mode 100644 index 0000000000000000000000000000000000000000..318ead0018618096d718d3ec1140561db7e0a70f --- /dev/null +++ b/timecost/m8/tabdiff/tabdiff-m8-20260501_035904/public_gate/public_gate_report.json @@ -0,0 +1,37 @@ +{ + "dataset_id": "m8", + "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": "y", + "task_type": "classification", + "input_splits": { + "train": "/data/jialinzhang/SynthesizePipeline-server/DatasetNew/m8/m8-train.csv", + "val": "/data/jialinzhang/SynthesizePipeline-server/DatasetNew/m8/m8-val.csv", + "test": "/data/jialinzhang/SynthesizePipeline-server/DatasetNew/m8/m8-test.csv" + } +} \ No newline at end of file diff --git a/timecost/m8/tabdiff/tabdiff-m8-20260501_035904/public_gate/staged_input_manifest.json b/timecost/m8/tabdiff/tabdiff-m8-20260501_035904/public_gate/staged_input_manifest.json new file mode 100644 index 0000000000000000000000000000000000000000..20651a483f7d68d4bcfd0bfe55b067e7a9728bae --- /dev/null +++ b/timecost/m8/tabdiff/tabdiff-m8-20260501_035904/public_gate/staged_input_manifest.json @@ -0,0 +1,351 @@ +{ + "dataset_id": "m8", + "target_column": "y", + "task_type": "classification", + "train_csv": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/m8/tabdiff/tabdiff-m8-20260501_035904/staged/public/train.csv", + "val_csv": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/m8/tabdiff/tabdiff-m8-20260501_035904/staged/public/val.csv", + "test_csv": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/m8/tabdiff/tabdiff-m8-20260501_035904/staged/public/test.csv", + "features_json": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/m8/tabdiff/tabdiff-m8-20260501_035904/staged/public/staged_features.json", + "public_gate_report": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/m8/tabdiff/tabdiff-m8-20260501_035904/public_gate/public_gate_report.json", + "column_schema": [ + { + "name": "age", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 76, + "unique_ratio": 0.002101, + "example_values": [ + "40", + "52", + "31", + "51", + "44" + ] + } + }, + { + "name": "job", + "role": "feature", + "semantic_type": "categorical", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 12, + "unique_ratio": 0.000332, + "example_values": [ + "admin.", + "technician", + "entrepreneur", + "blue-collar", + "services" + ] + } + }, + { + "name": "marital", + "role": "feature", + "semantic_type": "categorical", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 3, + "unique_ratio": 8.3e-05, + "example_values": [ + "single", + "married", + "divorced" + ] + } + }, + { + "name": "education", + "role": "feature", + "semantic_type": "categorical", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 4, + "unique_ratio": 0.000111, + "example_values": [ + "secondary", + "tertiary", + "primary", + "unknown" + ] + } + }, + { + "name": "default", + "role": "feature", + "semantic_type": "boolean", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 2, + "unique_ratio": 5.5e-05, + "example_values": [ + "no", + "yes" + ] + } + }, + { + "name": "balance", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 6604, + "unique_ratio": 0.182592, + "example_values": [ + "419", + "31", + "7567", + "315", + "737" + ] + } + }, + { + "name": "housing", + "role": "feature", + "semantic_type": "boolean", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 2, + "unique_ratio": 5.5e-05, + "example_values": [ + "no", + "yes" + ] + } + }, + { + "name": "loan", + "role": "feature", + "semantic_type": "boolean", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 2, + "unique_ratio": 5.5e-05, + "example_values": [ + "yes", + "no" + ] + } + }, + { + "name": "contact", + "role": "feature", + "semantic_type": "categorical", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 3, + "unique_ratio": 8.3e-05, + "example_values": [ + "cellular", + "unknown", + "telephone" + ] + } + }, + { + "name": "day", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 31, + "unique_ratio": 0.000857, + "example_values": [ + "28", + "7", + "11", + "12", + "14" + ] + } + }, + { + "name": "month", + "role": "feature", + "semantic_type": "categorical", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 12, + "unique_ratio": 0.000332, + "example_values": [ + "jul", + "may", + "aug", + "oct", + "feb" + ] + } + }, + { + "name": "duration", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 1507, + "unique_ratio": 0.041667, + "example_values": [ + "100", + "120", + "70", + "291", + "102" + ] + } + }, + { + "name": "campaign", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 47, + "unique_ratio": 0.001299, + "example_values": [ + "16", + "1", + "2", + "5", + "4" + ] + } + }, + { + "name": "pdays", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 524, + "unique_ratio": 0.014488, + "example_values": [ + "-1", + "91", + "365", + "189", + "117" + ] + } + }, + { + "name": "previous", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 38, + "unique_ratio": 0.001051, + "example_values": [ + "0", + "4", + "1", + "2", + "3" + ] + } + }, + { + "name": "poutcome", + "role": "feature", + "semantic_type": "categorical", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 4, + "unique_ratio": 0.000111, + "example_values": [ + "unknown", + "failure", + "other", + "success" + ] + } + }, + { + "name": "y", + "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": 5.5e-05, + "example_values": [ + "no", + "yes" + ] + } + } + ] +} \ No newline at end of file diff --git a/timecost/m8/tabdiff/tabdiff-m8-20260501_035904/runtime_result.json b/timecost/m8/tabdiff/tabdiff-m8-20260501_035904/runtime_result.json new file mode 100644 index 0000000000000000000000000000000000000000..7a1bbd74998b01cb62ae58ca9666a6f900088a74 --- /dev/null +++ b/timecost/m8/tabdiff/tabdiff-m8-20260501_035904/runtime_result.json @@ -0,0 +1,27 @@ +{ + "dataset_id": "m8", + "model": "tabdiff", + "run_id": "tabdiff-m8-20260501_035904", + "public_gate_status": "pass", + "adapter_ready_status": "pass", + "train_status": "success", + "generate_status": "success", + "reason_code": null, + "reason_detail": null, + "artifacts": { + "synthetic_csv": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/m8/tabdiff/tabdiff-m8-20260501_035904/tabdiff-m8-36168-20260501_040953.csv", + "model_path": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/m8/tabdiff/tabdiff-m8-20260501_035904/models_tabdiff/trained.pt" + }, + "timings": { + "train": { + "started_at": "2026-05-01T03:59:04", + "ended_at": "2026-05-01T04:09:53", + "duration_sec": 648.836 + }, + "generate": { + "started_at": "2026-05-01T04:09:53", + "ended_at": "2026-05-01T04:10:07", + "duration_sec": 13.824 + } + } +} \ No newline at end of file diff --git a/timecost/m8/tabdiff/tabdiff-m8-20260501_035904/staged/public/staged_features.json b/timecost/m8/tabdiff/tabdiff-m8-20260501_035904/staged/public/staged_features.json new file mode 100644 index 0000000000000000000000000000000000000000..11323e8dc5c8a2eaafa8e404e60d3db7e244452a --- /dev/null +++ b/timecost/m8/tabdiff/tabdiff-m8-20260501_035904/staged/public/staged_features.json @@ -0,0 +1,87 @@ +[ + { + "feature_name": "age", + "data_type": "continuous", + "is_target": false + }, + { + "feature_name": "job", + "data_type": "categorical", + "is_target": false + }, + { + "feature_name": "marital", + "data_type": "categorical", + "is_target": false + }, + { + "feature_name": "education", + "data_type": "categorical", + "is_target": false + }, + { + "feature_name": "default", + "data_type": "binary", + "is_target": false + }, + { + "feature_name": "balance", + "data_type": "continuous", + "is_target": false + }, + { + "feature_name": "housing", + "data_type": "binary", + "is_target": false + }, + { + "feature_name": "loan", + "data_type": "binary", + "is_target": false + }, + { + "feature_name": "contact", + "data_type": "categorical", + "is_target": false + }, + { + "feature_name": "day", + "data_type": "continuous", + "is_target": false + }, + { + "feature_name": "month", + "data_type": "categorical", + "is_target": false + }, + { + "feature_name": "duration", + "data_type": "continuous", + "is_target": false + }, + { + "feature_name": "campaign", + "data_type": "continuous", + "is_target": false + }, + { + "feature_name": "pdays", + "data_type": "continuous", + "is_target": false + }, + { + "feature_name": "previous", + "data_type": "continuous", + "is_target": false + }, + { + "feature_name": "poutcome", + "data_type": "categorical", + "is_target": false + }, + { + "feature_name": "y", + "data_type": "binary", + "is_target": true + } +] \ No newline at end of file diff --git a/timecost/m8/tabdiff/tabdiff-m8-20260501_035904/staged/public/test.csv b/timecost/m8/tabdiff/tabdiff-m8-20260501_035904/staged/public/test.csv new file mode 100644 index 0000000000000000000000000000000000000000..e1c4866e541b88f8bcd3b88381c7e56d4df06443 --- /dev/null +++ b/timecost/m8/tabdiff/tabdiff-m8-20260501_035904/staged/public/test.csv @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:6221943e422e75c8317b79b7ef93e9cd01f61fdd8de6ce42909a8e4610966310 +size 370991 diff --git a/timecost/m8/tabdiff/tabdiff-m8-20260501_035904/staged/public/train.csv b/timecost/m8/tabdiff/tabdiff-m8-20260501_035904/staged/public/train.csv new file mode 100644 index 0000000000000000000000000000000000000000..fd7d8791840b6811b098820db4ed9e74cf5d627a --- /dev/null +++ b/timecost/m8/tabdiff/tabdiff-m8-20260501_035904/staged/public/train.csv @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:f9cbb71aa793de19869a138d41aea5808f772b31082741b185ffb8ca7b821833 +size 2964802 diff --git a/timecost/m8/tabdiff/tabdiff-m8-20260501_035904/staged/public/val.csv b/timecost/m8/tabdiff/tabdiff-m8-20260501_035904/staged/public/val.csv new file mode 100644 index 0000000000000000000000000000000000000000..09f0041420455c56eb1f79c62940d135e8bc6ea3 --- /dev/null +++ b/timecost/m8/tabdiff/tabdiff-m8-20260501_035904/staged/public/val.csv @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:5ee8612128aae92155906abc0fdc752ac24fd04d63c78c080c89e3900efe6525 +size 370535 diff --git a/timecost/m8/tabdiff/tabdiff-m8-20260501_035904/staged/tabdiff/adapter_report.json b/timecost/m8/tabdiff/tabdiff-m8-20260501_035904/staged/tabdiff/adapter_report.json new file mode 100644 index 0000000000000000000000000000000000000000..ceba58c4a243cdb0958d5d7e80a4dbf34f17969d --- /dev/null +++ b/timecost/m8/tabdiff/tabdiff-m8-20260501_035904/staged/tabdiff/adapter_report.json @@ -0,0 +1,7 @@ +{ + "adapter_ready_status": "pass", + "adapter_fail_reason_code": null, + "adapter_fail_detail": null, + "adapter_transforms_applied": [], + "model_input_manifest": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/m8/tabdiff/tabdiff-m8-20260501_035904/staged/tabdiff/model_input_manifest.json" +} \ No newline at end of file diff --git a/timecost/m8/tabdiff/tabdiff-m8-20260501_035904/staged/tabdiff/adapter_transforms_applied.json b/timecost/m8/tabdiff/tabdiff-m8-20260501_035904/staged/tabdiff/adapter_transforms_applied.json new file mode 100644 index 0000000000000000000000000000000000000000..0637a088a01e8ddab3bf3fa98dbe804cbde1a0dc --- /dev/null +++ b/timecost/m8/tabdiff/tabdiff-m8-20260501_035904/staged/tabdiff/adapter_transforms_applied.json @@ -0,0 +1 @@ +[] \ No newline at end of file diff --git a/timecost/m8/tabdiff/tabdiff-m8-20260501_035904/staged/tabdiff/model_input_manifest.json b/timecost/m8/tabdiff/tabdiff-m8-20260501_035904/staged/tabdiff/model_input_manifest.json new file mode 100644 index 0000000000000000000000000000000000000000..c8460e15b0250588736a83b00cea16a8b6f930b8 --- /dev/null +++ b/timecost/m8/tabdiff/tabdiff-m8-20260501_035904/staged/tabdiff/model_input_manifest.json @@ -0,0 +1,353 @@ +{ + "dataset_id": "m8", + "model": "tabdiff", + "target_column": "y", + "task_type": "classification", + "column_schema": [ + { + "name": "age", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 76, + "unique_ratio": 0.002101, + "example_values": [ + "40", + "52", + "31", + "51", + "44" + ] + } + }, + { + "name": "job", + "role": "feature", + "semantic_type": "categorical", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 12, + "unique_ratio": 0.000332, + "example_values": [ + "admin.", + "technician", + "entrepreneur", + "blue-collar", + "services" + ] + } + }, + { + "name": "marital", + "role": "feature", + "semantic_type": "categorical", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 3, + "unique_ratio": 8.3e-05, + "example_values": [ + "single", + "married", + "divorced" + ] + } + }, + { + "name": "education", + "role": "feature", + "semantic_type": "categorical", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 4, + "unique_ratio": 0.000111, + "example_values": [ + "secondary", + "tertiary", + "primary", + "unknown" + ] + } + }, + { + "name": "default", + "role": "feature", + "semantic_type": "boolean", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 2, + "unique_ratio": 5.5e-05, + "example_values": [ + "no", + "yes" + ] + } + }, + { + "name": "balance", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 6604, + "unique_ratio": 0.182592, + "example_values": [ + "419", + "31", + "7567", + "315", + "737" + ] + } + }, + { + "name": "housing", + "role": "feature", + "semantic_type": "boolean", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 2, + "unique_ratio": 5.5e-05, + "example_values": [ + "no", + "yes" + ] + } + }, + { + "name": "loan", + "role": "feature", + "semantic_type": "boolean", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 2, + "unique_ratio": 5.5e-05, + "example_values": [ + "yes", + "no" + ] + } + }, + { + "name": "contact", + "role": "feature", + "semantic_type": "categorical", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 3, + "unique_ratio": 8.3e-05, + "example_values": [ + "cellular", + "unknown", + "telephone" + ] + } + }, + { + "name": "day", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 31, + "unique_ratio": 0.000857, + "example_values": [ + "28", + "7", + "11", + "12", + "14" + ] + } + }, + { + "name": "month", + "role": "feature", + "semantic_type": "categorical", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 12, + "unique_ratio": 0.000332, + "example_values": [ + "jul", + "may", + "aug", + "oct", + "feb" + ] + } + }, + { + "name": "duration", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 1507, + "unique_ratio": 0.041667, + "example_values": [ + "100", + "120", + "70", + "291", + "102" + ] + } + }, + { + "name": "campaign", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 47, + "unique_ratio": 0.001299, + "example_values": [ + "16", + "1", + "2", + "5", + "4" + ] + } + }, + { + "name": "pdays", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 524, + "unique_ratio": 0.014488, + "example_values": [ + "-1", + "91", + "365", + "189", + "117" + ] + } + }, + { + "name": "previous", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 38, + "unique_ratio": 0.001051, + "example_values": [ + "0", + "4", + "1", + "2", + "3" + ] + } + }, + { + "name": "poutcome", + "role": "feature", + "semantic_type": "categorical", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 4, + "unique_ratio": 0.000111, + "example_values": [ + "unknown", + "failure", + "other", + "success" + ] + } + }, + { + "name": "y", + "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": 5.5e-05, + "example_values": [ + "no", + "yes" + ] + } + } + ], + "public_manifest": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/m8/tabdiff/tabdiff-m8-20260501_035904/public_gate/staged_input_manifest.json", + "train_csv": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/m8/tabdiff/tabdiff-m8-20260501_035904/staged/public/train.csv", + "val_csv": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/m8/tabdiff/tabdiff-m8-20260501_035904/staged/public/val.csv", + "test_csv": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/m8/tabdiff/tabdiff-m8-20260501_035904/staged/public/test.csv", + "features_json": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/m8/tabdiff/tabdiff-m8-20260501_035904/staged/public/staged_features.json", + "public_gate_report": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/m8/tabdiff/tabdiff-m8-20260501_035904/public_gate/public_gate_report.json" +} \ No newline at end of file diff --git a/timecost/m8/tabdiff/tabdiff-m8-20260501_035904/tabdiff-m8-36168-20260501_040953.csv b/timecost/m8/tabdiff/tabdiff-m8-20260501_035904/tabdiff-m8-36168-20260501_040953.csv new file mode 100644 index 0000000000000000000000000000000000000000..cae3e9974ab0447146b8c484e38b466a30d832f0 --- /dev/null +++ b/timecost/m8/tabdiff/tabdiff-m8-20260501_035904/tabdiff-m8-36168-20260501_040953.csv @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:e09bfe041b2eed7d10fbd14ae7842d874b354e3e52a2ccd40ace8c9a510f52e3 +size 2214168 diff --git a/timecost/m8/tabdiff/tabdiff-m8-20260501_035904/tabdiff_train_meta.json b/timecost/m8/tabdiff/tabdiff-m8-20260501_035904/tabdiff_train_meta.json new file mode 100644 index 0000000000000000000000000000000000000000..7988f9d49f44ecbdec0d5acb123d9facaf4c6b03 --- /dev/null +++ b/timecost/m8/tabdiff/tabdiff-m8-20260501_035904/tabdiff_train_meta.json @@ -0,0 +1,5 @@ +{ + "exp_name": "adapter_learnable", + "dataname": "pipeline_m8", + "steps": 500 +} \ No newline at end of file diff --git a/timecost/m8/tabdiff/tabdiff-m8-20260501_035904/tabular_bundle/pipeline_m8/X_cat_test.npy b/timecost/m8/tabdiff/tabdiff-m8-20260501_035904/tabular_bundle/pipeline_m8/X_cat_test.npy new file mode 100644 index 0000000000000000000000000000000000000000..593b28d49c204d0e1075baeb8750f38436a36e50 --- /dev/null +++ b/timecost/m8/tabdiff/tabdiff-m8-20260501_035904/tabular_bundle/pipeline_m8/X_cat_test.npy @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:b7a7263704577346e726c9bbb028fcff4c26bb80a5b0bb53ba51f837bb032fc3 +size 2604224 diff --git a/timecost/m8/tabdiff/tabdiff-m8-20260501_035904/tabular_bundle/pipeline_m8/X_cat_train.npy b/timecost/m8/tabdiff/tabdiff-m8-20260501_035904/tabular_bundle/pipeline_m8/X_cat_train.npy new file mode 100644 index 0000000000000000000000000000000000000000..593b28d49c204d0e1075baeb8750f38436a36e50 --- /dev/null +++ b/timecost/m8/tabdiff/tabdiff-m8-20260501_035904/tabular_bundle/pipeline_m8/X_cat_train.npy @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:b7a7263704577346e726c9bbb028fcff4c26bb80a5b0bb53ba51f837bb032fc3 +size 2604224 diff --git a/timecost/m8/tabdiff/tabdiff-m8-20260501_035904/tabular_bundle/pipeline_m8/X_cat_val.npy b/timecost/m8/tabdiff/tabdiff-m8-20260501_035904/tabular_bundle/pipeline_m8/X_cat_val.npy new file mode 100644 index 0000000000000000000000000000000000000000..593b28d49c204d0e1075baeb8750f38436a36e50 --- /dev/null +++ b/timecost/m8/tabdiff/tabdiff-m8-20260501_035904/tabular_bundle/pipeline_m8/X_cat_val.npy @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:b7a7263704577346e726c9bbb028fcff4c26bb80a5b0bb53ba51f837bb032fc3 +size 2604224 diff --git a/timecost/m8/tabdiff/tabdiff-m8-20260501_035904/tabular_bundle/pipeline_m8/X_num_test.npy b/timecost/m8/tabdiff/tabdiff-m8-20260501_035904/tabular_bundle/pipeline_m8/X_num_test.npy new file mode 100644 index 0000000000000000000000000000000000000000..07e2a13424a0435006d25dfc6527e9c7d0d87f40 --- /dev/null +++ b/timecost/m8/tabdiff/tabdiff-m8-20260501_035904/tabular_bundle/pipeline_m8/X_num_test.npy @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:ae3f0ae4e117a2087b337ccec94a15b29288bb82a257e7e365f10bae858de8ec +size 1012832 diff --git a/timecost/m8/tabdiff/tabdiff-m8-20260501_035904/tabular_bundle/pipeline_m8/X_num_train.npy b/timecost/m8/tabdiff/tabdiff-m8-20260501_035904/tabular_bundle/pipeline_m8/X_num_train.npy new file mode 100644 index 0000000000000000000000000000000000000000..07e2a13424a0435006d25dfc6527e9c7d0d87f40 --- /dev/null +++ b/timecost/m8/tabdiff/tabdiff-m8-20260501_035904/tabular_bundle/pipeline_m8/X_num_train.npy @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:ae3f0ae4e117a2087b337ccec94a15b29288bb82a257e7e365f10bae858de8ec +size 1012832 diff --git a/timecost/m8/tabdiff/tabdiff-m8-20260501_035904/tabular_bundle/pipeline_m8/X_num_val.npy b/timecost/m8/tabdiff/tabdiff-m8-20260501_035904/tabular_bundle/pipeline_m8/X_num_val.npy new file mode 100644 index 0000000000000000000000000000000000000000..07e2a13424a0435006d25dfc6527e9c7d0d87f40 --- /dev/null +++ b/timecost/m8/tabdiff/tabdiff-m8-20260501_035904/tabular_bundle/pipeline_m8/X_num_val.npy @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:ae3f0ae4e117a2087b337ccec94a15b29288bb82a257e7e365f10bae858de8ec +size 1012832 diff --git a/timecost/m8/tabdiff/tabdiff-m8-20260501_035904/tabular_bundle/pipeline_m8/info.json b/timecost/m8/tabdiff/tabdiff-m8-20260501_035904/tabular_bundle/pipeline_m8/info.json new file mode 100644 index 0000000000000000000000000000000000000000..779aa13573a20a8c073a142023a2900dfbcade7c --- /dev/null +++ b/timecost/m8/tabdiff/tabdiff-m8-20260501_035904/tabular_bundle/pipeline_m8/info.json @@ -0,0 +1,176 @@ +{ + "name": "pipeline_m8", + "task_type": "binclass", + "n_num_features": 7, + "n_cat_features": 9, + "train_size": 36168, + "test_num": 36168, + "val_num": 36168, + "train_num": 36168, + "bundle_note": "val/test matrices are train copies (train-only policy; no real held-out rows).", + "num_col_idx": [ + 0, + 1, + 2, + 3, + 4, + 5, + 6 + ], + "cat_col_idx": [ + 7, + 8, + 9, + 10, + 11, + 12, + 13, + 14, + 15 + ], + "target_col_idx": [ + 16 + ], + "column_names": [ + "age", + "balance", + "day", + "duration", + "campaign", + "pdays", + "previous", + "job", + "marital", + "education", + "default", + "housing", + "loan", + "contact", + "month", + "poutcome", + "y" + ], + "int_col_idx": [], + "int_columns": [], + "int_col_idx_wrt_num": [], + "metadata": { + "columns": { + "0": { + "sdtype": "numerical", + "computer_representation": "Float" + }, + "1": { + "sdtype": "numerical", + "computer_representation": "Float" + }, + "2": { + "sdtype": "numerical", + "computer_representation": "Float" + }, + "3": { + "sdtype": "numerical", + "computer_representation": "Float" + }, + "4": { + "sdtype": "numerical", + "computer_representation": "Float" + }, + "5": { + "sdtype": "numerical", + "computer_representation": "Float" + }, + "6": { + "sdtype": "numerical", + "computer_representation": "Float" + }, + "7": { + "sdtype": "categorical" + }, + "8": { + "sdtype": "categorical" + }, + "9": { + "sdtype": "categorical" + }, + "10": { + "sdtype": "categorical" + }, + "11": { + "sdtype": "categorical" + }, + "12": { + "sdtype": "categorical" + }, + "13": { + "sdtype": "categorical" + }, + "14": { + "sdtype": "categorical" + }, + "15": { + "sdtype": "categorical" + }, + "16": { + "sdtype": "categorical" + } + } + }, + "idx_mapping": { + "0": 0, + "1": 1, + "2": 2, + "3": 3, + "4": 4, + "5": 5, + "6": 6, + "7": 7, + "8": 8, + "9": 9, + "10": 10, + "11": 11, + "12": 12, + "13": 13, + "14": 14, + "15": 15, + "16": 16 + }, + "inverse_idx_mapping": { + "0": 0, + "1": 1, + "2": 2, + "3": 3, + "4": 4, + "5": 5, + "6": 6, + "7": 7, + "8": 8, + "9": 9, + "10": 10, + "11": 11, + "12": 12, + "13": 13, + "14": 14, + "15": 15, + "16": 16 + }, + "idx_name_mapping": { + "0": "age", + "1": "balance", + "2": "day", + "3": "duration", + "4": "campaign", + "5": "pdays", + "6": "previous", + "7": "job", + "8": "marital", + "9": "education", + "10": "default", + "11": "housing", + "12": "loan", + "13": "contact", + "14": "month", + "15": "poutcome", + "16": "y" + }, + "n_classes": 2 +} \ No newline at end of file diff --git a/timecost/m8/tabdiff/tabdiff-m8-20260501_035904/tabular_bundle/pipeline_m8/real.csv b/timecost/m8/tabdiff/tabdiff-m8-20260501_035904/tabular_bundle/pipeline_m8/real.csv new file mode 100644 index 0000000000000000000000000000000000000000..89f045df89f474d0b98875260fa3dadcbead70a1 --- /dev/null +++ b/timecost/m8/tabdiff/tabdiff-m8-20260501_035904/tabular_bundle/pipeline_m8/real.csv @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:c901e8058d778b30427b02e99359688644f7ea1cad9d3d04a55fdf3881158d60 +size 1517968 diff --git a/timecost/m8/tabdiff/tabdiff-m8-20260501_035904/tabular_bundle/pipeline_m8/test.csv b/timecost/m8/tabdiff/tabdiff-m8-20260501_035904/tabular_bundle/pipeline_m8/test.csv new file mode 100644 index 0000000000000000000000000000000000000000..89f045df89f474d0b98875260fa3dadcbead70a1 --- /dev/null +++ b/timecost/m8/tabdiff/tabdiff-m8-20260501_035904/tabular_bundle/pipeline_m8/test.csv @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:c901e8058d778b30427b02e99359688644f7ea1cad9d3d04a55fdf3881158d60 +size 1517968 diff --git a/timecost/m8/tabdiff/tabdiff-m8-20260501_035904/tabular_bundle/pipeline_m8/val.csv b/timecost/m8/tabdiff/tabdiff-m8-20260501_035904/tabular_bundle/pipeline_m8/val.csv new file mode 100644 index 0000000000000000000000000000000000000000..89f045df89f474d0b98875260fa3dadcbead70a1 --- /dev/null +++ b/timecost/m8/tabdiff/tabdiff-m8-20260501_035904/tabular_bundle/pipeline_m8/val.csv @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:c901e8058d778b30427b02e99359688644f7ea1cad9d3d04a55fdf3881158d60 +size 1517968 diff --git a/timecost/m8/tabdiff/tabdiff-m8-20260501_035904/tabular_bundle/pipeline_m8/y_test.npy b/timecost/m8/tabdiff/tabdiff-m8-20260501_035904/tabular_bundle/pipeline_m8/y_test.npy new file mode 100644 index 0000000000000000000000000000000000000000..6de42d9b9d2e98ac13fbeb62391fe185ffdd6210 --- /dev/null +++ b/timecost/m8/tabdiff/tabdiff-m8-20260501_035904/tabular_bundle/pipeline_m8/y_test.npy @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:3fe448bbe15f46b1714e7d0ebca94f3df952a9ef5364159dda69ccefcdce02c6 +size 289472 diff --git a/timecost/m8/tabdiff/tabdiff-m8-20260501_035904/tabular_bundle/pipeline_m8/y_train.npy b/timecost/m8/tabdiff/tabdiff-m8-20260501_035904/tabular_bundle/pipeline_m8/y_train.npy new file mode 100644 index 0000000000000000000000000000000000000000..6de42d9b9d2e98ac13fbeb62391fe185ffdd6210 --- /dev/null +++ b/timecost/m8/tabdiff/tabdiff-m8-20260501_035904/tabular_bundle/pipeline_m8/y_train.npy @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:3fe448bbe15f46b1714e7d0ebca94f3df952a9ef5364159dda69ccefcdce02c6 +size 289472 diff --git a/timecost/m8/tabdiff/tabdiff-m8-20260501_035904/tabular_bundle/pipeline_m8/y_val.npy b/timecost/m8/tabdiff/tabdiff-m8-20260501_035904/tabular_bundle/pipeline_m8/y_val.npy new file mode 100644 index 0000000000000000000000000000000000000000..6de42d9b9d2e98ac13fbeb62391fe185ffdd6210 --- /dev/null +++ b/timecost/m8/tabdiff/tabdiff-m8-20260501_035904/tabular_bundle/pipeline_m8/y_val.npy @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:3fe448bbe15f46b1714e7d0ebca94f3df952a9ef5364159dda69ccefcdce02c6 +size 289472 diff --git a/timecost/m8/tabdiff/tabdiff-m8-20260501_035904/train_20260501_035905.log b/timecost/m8/tabdiff/tabdiff-m8-20260501_035904/train_20260501_035905.log new file mode 100644 index 0000000000000000000000000000000000000000..0cb7247bfb789e3deef6aab7198b1770d6b42cfc --- /dev/null +++ b/timecost/m8/tabdiff/tabdiff-m8-20260501_035904/train_20260501_035905.log @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:bc2d3ec932d73ac9b7bf6f6c42dddda146dc6291ab972c1ef9c1d9904b3c0d25 +size 1075205 diff --git a/timecost/m8/tabpfgen/tabpfgen-m8-20260501_012611/_tabpfgen_generate.py b/timecost/m8/tabpfgen/tabpfgen-m8-20260501_012611/_tabpfgen_generate.py new file mode 100644 index 0000000000000000000000000000000000000000..dff1a68b0f83f3aba8492758878992e74e83ef9d --- /dev/null +++ b/timecost/m8/tabpfgen/tabpfgen-m8-20260501_012611/_tabpfgen_generate.py @@ -0,0 +1,100 @@ +import os +import numpy as np +import pandas as pd +import json +from tabpfgen import TabPFGen + +df = pd.read_csv("/work/output-Benchmark-trainonly-v1/m8/tabpfgen/tabpfgen-m8-20260501_012611/staged/public/train.csv") +target_col = "y" + +target_missing = df[target_col].isna() +if target_missing.any(): + dropped = int(target_missing.sum()) + df = df.loc[~target_missing].copy() + print( + f"[TabPFGen] Dropped {dropped} rows with missing target '{target_col}'" + ) +if df.empty: + raise ValueError( + f"[TabPFGen] No rows remain after dropping missing target '{target_col}'" + ) + +feature_cols = [c for c in df.columns if c != target_col] + +cat_encodings = {} +for col in feature_cols: + if df[col].dtype == object or str(df[col].dtype) == 'category': + cats = sorted(df[col].dropna().unique().tolist(), key=str) + cat_map = {v: i for i, v in enumerate(cats)} + df[col] = df[col].map(cat_map).astype(float) + cat_encodings[col] = cats + print(f"[TabPFGen] Label-encoded '{col}' ({len(cats)} categories)") + +target_cats = None +if df[target_col].dtype == object or str(df[target_col].dtype) == 'category': + cats = sorted(df[target_col].dropna().unique().tolist(), key=str) + t_map = {v: i for i, v in enumerate(cats)} + df[target_col] = df[target_col].map(t_map).astype(float) + target_cats = cats + print(f"[TabPFGen] Label-encoded target '{target_col}' ({len(cats)} categories)") + +X = df[feature_cols].values.astype(np.float32) +y = df[target_col].values +target_n = int(36168) + +for i in range(X.shape[1]): + col_vals = X[:, i] + mask = np.isnan(col_vals) + if mask.any(): + mean_val = np.nanmean(col_vals) + X[mask, i] = mean_val if not np.isnan(mean_val) else 0.0 + +# TabPFGen v0.1.x API:仅支持 n_sgld_steps / sgld_* / device。 +# (旧版脚本中的 energy_*_chunk 与上游 TabPFGen 不一致,会导致 TypeError。) +gen = TabPFGen( + n_sgld_steps=1000, + sgld_step_size=0.01, + sgld_noise_scale=0.01, + device="auto", +) + +print(f"[TabPFGen] Generating {target_n} rows via generate_classification") +X_syn, y_syn = gen.generate_classification(X, y, n_samples=target_n) + +syn_df = pd.DataFrame(X_syn, columns=feature_cols) +syn_df[target_col] = y_syn + +for col, cats in cat_encodings.items(): + codes = np.round(syn_df[col].values).astype(int) + codes = np.clip(codes, 0, len(cats) - 1) + syn_df[col] = [cats[c] for c in codes] + +if target_cats is not None: + codes = np.round(syn_df[target_col].values).astype(int) + codes = np.clip(codes, 0, len(target_cats) - 1) + syn_df[target_col] = [target_cats[c] for c in codes] + +if len(syn_df) > target_n: + print(f"[TabPFGen] Trimming rows: {len(syn_df)} -> {target_n}") + syn_df = syn_df.iloc[:target_n].copy() +elif len(syn_df) < target_n: + deficit = target_n - len(syn_df) + print(f"[TabPFGen] Padding rows: {len(syn_df)} -> {target_n} (deficit={deficit})") + if len(syn_df) > 0: + extra = syn_df.sample(n=deficit, replace=True, random_state=42) + syn_df = pd.concat( + [syn_df.reset_index(drop=True), extra.reset_index(drop=True)], + ignore_index=True, + ) + else: + syn_df = df[feature_cols + [target_col]].sample( + n=target_n, replace=True, random_state=42 + ).reset_index(drop=True) + +syn_df = syn_df[list(df.columns)] +if len(syn_df) != target_n: + raise RuntimeError( + f"[TabPFGen] Row alignment failed: got {len(syn_df)}, expected {target_n}" + ) +syn_df.to_csv("/work/output-Benchmark-trainonly-v1/m8/tabpfgen/tabpfgen-m8-20260501_012611/tabpfgen-m8-36168-20260501_012611.csv", index=False) +print(f"[TabPFGen] Saved {len(syn_df)} rows -> /work/output-Benchmark-trainonly-v1/m8/tabpfgen/tabpfgen-m8-20260501_012611/tabpfgen-m8-36168-20260501_012611.csv") diff --git a/timecost/m8/tabpfgen/tabpfgen-m8-20260501_012611/gen_20260501_012611.log b/timecost/m8/tabpfgen/tabpfgen-m8-20260501_012611/gen_20260501_012611.log new file mode 100644 index 0000000000000000000000000000000000000000..d8ca6ccd4e81aec53ac27272777e22fe6465dd6a --- /dev/null +++ b/timecost/m8/tabpfgen/tabpfgen-m8-20260501_012611/gen_20260501_012611.log @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:42f3e87ada5a412f0cf341c625689d022a95d40db325a9ce4d047ad17a770897 +size 1400 diff --git a/timecost/m8/tabpfgen/tabpfgen-m8-20260501_012611/input_snapshot.json b/timecost/m8/tabpfgen/tabpfgen-m8-20260501_012611/input_snapshot.json new file mode 100644 index 0000000000000000000000000000000000000000..706e186dd620e811847f323a3b2b5b3f3f949eca --- /dev/null +++ b/timecost/m8/tabpfgen/tabpfgen-m8-20260501_012611/input_snapshot.json @@ -0,0 +1,36 @@ +{ + "dataset_id": "m8", + "model": "tabpfgen", + "inputs": { + "train_csv": { + "path": "/data/jialinzhang/SynthesizePipeline-server/DatasetNew/m8/m8-train.csv", + "exists": true, + "size": 2964802, + "sha256": "f9cbb71aa793de19869a138d41aea5808f772b31082741b185ffb8ca7b821833" + }, + "val_csv": { + "path": "/data/jialinzhang/SynthesizePipeline-server/DatasetNew/m8/m8-val.csv", + "exists": true, + "size": 370535, + "sha256": "5ee8612128aae92155906abc0fdc752ac24fd04d63c78c080c89e3900efe6525" + }, + "test_csv": { + "path": "/data/jialinzhang/SynthesizePipeline-server/DatasetNew/m8/m8-test.csv", + "exists": true, + "size": 370991, + "sha256": "6221943e422e75c8317b79b7ef93e9cd01f61fdd8de6ce42909a8e4610966310" + }, + "profile_json": { + "path": "/data/jialinzhang/SynthesizePipeline-server/DatasetNew/artifacts/data_core/tabular/m8/m8-dataset_profile.json", + "exists": true, + "size": 6553, + "sha256": "44f883858641584035a0a8859cb95dbcd3a023c03cbc76931aadfc4c70ef871f" + }, + "contract_json": { + "path": "/data/jialinzhang/SynthesizePipeline-server/DatasetNew/artifacts/data_core/tabular/m8/m8-dataset_contract_v1.json", + "exists": true, + "size": 8214, + "sha256": "e76df134780ec9b6c6c625a54e5d0c1935e9f4a7d09320ad19279a0492438d92" + } + } +} \ No newline at end of file diff --git a/timecost/m8/tabpfgen/tabpfgen-m8-20260501_012611/public_gate/normalized_schema_snapshot.json b/timecost/m8/tabpfgen/tabpfgen-m8-20260501_012611/public_gate/normalized_schema_snapshot.json new file mode 100644 index 0000000000000000000000000000000000000000..5e616edd2b7924c5e07f02ccbbb842529655f52a --- /dev/null +++ b/timecost/m8/tabpfgen/tabpfgen-m8-20260501_012611/public_gate/normalized_schema_snapshot.json @@ -0,0 +1,346 @@ +{ + "dataset_id": "m8", + "target_column": "y", + "task_type": "classification", + "columns": [ + { + "name": "age", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 76, + "unique_ratio": 0.002101, + "example_values": [ + "40", + "52", + "31", + "51", + "44" + ] + } + }, + { + "name": "job", + "role": "feature", + "semantic_type": "categorical", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 12, + "unique_ratio": 0.000332, + "example_values": [ + "admin.", + "technician", + "entrepreneur", + "blue-collar", + "services" + ] + } + }, + { + "name": "marital", + "role": "feature", + "semantic_type": "categorical", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 3, + "unique_ratio": 8.3e-05, + "example_values": [ + "single", + "married", + "divorced" + ] + } + }, + { + "name": "education", + "role": "feature", + "semantic_type": "categorical", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 4, + "unique_ratio": 0.000111, + "example_values": [ + "secondary", + "tertiary", + "primary", + "unknown" + ] + } + }, + { + "name": "default", + "role": "feature", + "semantic_type": "boolean", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 2, + "unique_ratio": 5.5e-05, + "example_values": [ + "no", + "yes" + ] + } + }, + { + "name": "balance", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 6604, + "unique_ratio": 0.182592, + "example_values": [ + "419", + "31", + "7567", + "315", + "737" + ] + } + }, + { + "name": "housing", + "role": "feature", + "semantic_type": "boolean", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 2, + "unique_ratio": 5.5e-05, + "example_values": [ + "no", + "yes" + ] + } + }, + { + "name": "loan", + "role": "feature", + "semantic_type": "boolean", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 2, + "unique_ratio": 5.5e-05, + "example_values": [ + "yes", + "no" + ] + } + }, + { + "name": "contact", + "role": "feature", + "semantic_type": "categorical", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 3, + "unique_ratio": 8.3e-05, + "example_values": [ + "cellular", + "unknown", + "telephone" + ] + } + }, + { + "name": "day", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 31, + "unique_ratio": 0.000857, + "example_values": [ + "28", + "7", + "11", + "12", + "14" + ] + } + }, + { + "name": "month", + "role": "feature", + "semantic_type": "categorical", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 12, + "unique_ratio": 0.000332, + "example_values": [ + "jul", + "may", + "aug", + "oct", + "feb" + ] + } + }, + { + "name": "duration", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 1507, + "unique_ratio": 0.041667, + "example_values": [ + "100", + "120", + "70", + "291", + "102" + ] + } + }, + { + "name": "campaign", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 47, + "unique_ratio": 0.001299, + "example_values": [ + "16", + "1", + "2", + "5", + "4" + ] + } + }, + { + "name": "pdays", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 524, + "unique_ratio": 0.014488, + "example_values": [ + "-1", + "91", + "365", + "189", + "117" + ] + } + }, + { + "name": "previous", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 38, + "unique_ratio": 0.001051, + "example_values": [ + "0", + "4", + "1", + "2", + "3" + ] + } + }, + { + "name": "poutcome", + "role": "feature", + "semantic_type": "categorical", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 4, + "unique_ratio": 0.000111, + "example_values": [ + "unknown", + "failure", + "other", + "success" + ] + } + }, + { + "name": "y", + "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": 5.5e-05, + "example_values": [ + "no", + "yes" + ] + } + } + ] +} \ No newline at end of file diff --git a/timecost/m8/tabpfgen/tabpfgen-m8-20260501_012611/public_gate/public_gate_report.json b/timecost/m8/tabpfgen/tabpfgen-m8-20260501_012611/public_gate/public_gate_report.json new file mode 100644 index 0000000000000000000000000000000000000000..318ead0018618096d718d3ec1140561db7e0a70f --- /dev/null +++ b/timecost/m8/tabpfgen/tabpfgen-m8-20260501_012611/public_gate/public_gate_report.json @@ -0,0 +1,37 @@ +{ + "dataset_id": "m8", + "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": "y", + "task_type": "classification", + "input_splits": { + "train": "/data/jialinzhang/SynthesizePipeline-server/DatasetNew/m8/m8-train.csv", + "val": "/data/jialinzhang/SynthesizePipeline-server/DatasetNew/m8/m8-val.csv", + "test": "/data/jialinzhang/SynthesizePipeline-server/DatasetNew/m8/m8-test.csv" + } +} \ No newline at end of file diff --git a/timecost/m8/tabpfgen/tabpfgen-m8-20260501_012611/public_gate/staged_input_manifest.json b/timecost/m8/tabpfgen/tabpfgen-m8-20260501_012611/public_gate/staged_input_manifest.json new file mode 100644 index 0000000000000000000000000000000000000000..36b6c6c75128c562e3f0addfd728dc50fb40fdd5 --- /dev/null +++ b/timecost/m8/tabpfgen/tabpfgen-m8-20260501_012611/public_gate/staged_input_manifest.json @@ -0,0 +1,351 @@ +{ + "dataset_id": "m8", + "target_column": "y", + "task_type": "classification", + "train_csv": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/m8/tabpfgen/tabpfgen-m8-20260501_012611/staged/public/train.csv", + "val_csv": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/m8/tabpfgen/tabpfgen-m8-20260501_012611/staged/public/val.csv", + "test_csv": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/m8/tabpfgen/tabpfgen-m8-20260501_012611/staged/public/test.csv", + "features_json": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/m8/tabpfgen/tabpfgen-m8-20260501_012611/staged/public/staged_features.json", + "public_gate_report": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/m8/tabpfgen/tabpfgen-m8-20260501_012611/public_gate/public_gate_report.json", + "column_schema": [ + { + "name": "age", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 76, + "unique_ratio": 0.002101, + "example_values": [ + "40", + "52", + "31", + "51", + "44" + ] + } + }, + { + "name": "job", + "role": "feature", + "semantic_type": "categorical", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 12, + "unique_ratio": 0.000332, + "example_values": [ + "admin.", + "technician", + "entrepreneur", + "blue-collar", + "services" + ] + } + }, + { + "name": "marital", + "role": "feature", + "semantic_type": "categorical", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 3, + "unique_ratio": 8.3e-05, + "example_values": [ + "single", + "married", + "divorced" + ] + } + }, + { + "name": "education", + "role": "feature", + "semantic_type": "categorical", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 4, + "unique_ratio": 0.000111, + "example_values": [ + "secondary", + "tertiary", + "primary", + "unknown" + ] + } + }, + { + "name": "default", + "role": "feature", + "semantic_type": "boolean", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 2, + "unique_ratio": 5.5e-05, + "example_values": [ + "no", + "yes" + ] + } + }, + { + "name": "balance", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 6604, + "unique_ratio": 0.182592, + "example_values": [ + "419", + "31", + "7567", + "315", + "737" + ] + } + }, + { + "name": "housing", + "role": "feature", + "semantic_type": "boolean", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 2, + "unique_ratio": 5.5e-05, + "example_values": [ + "no", + "yes" + ] + } + }, + { + "name": "loan", + "role": "feature", + "semantic_type": "boolean", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 2, + "unique_ratio": 5.5e-05, + "example_values": [ + "yes", + "no" + ] + } + }, + { + "name": "contact", + "role": "feature", + "semantic_type": "categorical", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 3, + "unique_ratio": 8.3e-05, + "example_values": [ + "cellular", + "unknown", + "telephone" + ] + } + }, + { + "name": "day", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 31, + "unique_ratio": 0.000857, + "example_values": [ + "28", + "7", + "11", + "12", + "14" + ] + } + }, + { + "name": "month", + "role": "feature", + "semantic_type": "categorical", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 12, + "unique_ratio": 0.000332, + "example_values": [ + "jul", + "may", + "aug", + "oct", + "feb" + ] + } + }, + { + "name": "duration", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 1507, + "unique_ratio": 0.041667, + "example_values": [ + "100", + "120", + "70", + "291", + "102" + ] + } + }, + { + "name": "campaign", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 47, + "unique_ratio": 0.001299, + "example_values": [ + "16", + "1", + "2", + "5", + "4" + ] + } + }, + { + "name": "pdays", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 524, + "unique_ratio": 0.014488, + "example_values": [ + "-1", + "91", + "365", + "189", + "117" + ] + } + }, + { + "name": "previous", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 38, + "unique_ratio": 0.001051, + "example_values": [ + "0", + "4", + "1", + "2", + "3" + ] + } + }, + { + "name": "poutcome", + "role": "feature", + "semantic_type": "categorical", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 4, + "unique_ratio": 0.000111, + "example_values": [ + "unknown", + "failure", + "other", + "success" + ] + } + }, + { + "name": "y", + "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": 5.5e-05, + "example_values": [ + "no", + "yes" + ] + } + } + ] +} \ No newline at end of file diff --git a/timecost/m8/tabpfgen/tabpfgen-m8-20260501_012611/runtime_result.json b/timecost/m8/tabpfgen/tabpfgen-m8-20260501_012611/runtime_result.json new file mode 100644 index 0000000000000000000000000000000000000000..5b6c662e62bae0e5447600b0c662105dc7ea883c --- /dev/null +++ b/timecost/m8/tabpfgen/tabpfgen-m8-20260501_012611/runtime_result.json @@ -0,0 +1,27 @@ +{ + "dataset_id": "m8", + "model": "tabpfgen", + "run_id": "tabpfgen-m8-20260501_012611", + "public_gate_status": "pass", + "adapter_ready_status": "pass", + "train_status": "success", + "generate_status": "success", + "reason_code": null, + "reason_detail": null, + "artifacts": { + "synthetic_csv": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/m8/tabpfgen/tabpfgen-m8-20260501_012611/tabpfgen-m8-36168-20260501_012611.csv", + "model_path": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/m8/tabpfgen/tabpfgen-m8-20260501_012611" + }, + "timings": { + "train": { + "started_at": "2026-05-01T01:26:11", + "ended_at": "2026-05-01T01:26:11", + "duration_sec": 0.137 + }, + "generate": { + "started_at": "2026-05-01T01:26:11", + "ended_at": "2026-05-01T01:29:18", + "duration_sec": 187.338 + } + } +} \ No newline at end of file diff --git a/timecost/m8/tabpfgen/tabpfgen-m8-20260501_012611/staged/public/staged_features.json b/timecost/m8/tabpfgen/tabpfgen-m8-20260501_012611/staged/public/staged_features.json new file mode 100644 index 0000000000000000000000000000000000000000..11323e8dc5c8a2eaafa8e404e60d3db7e244452a --- /dev/null +++ b/timecost/m8/tabpfgen/tabpfgen-m8-20260501_012611/staged/public/staged_features.json @@ -0,0 +1,87 @@ +[ + { + "feature_name": "age", + "data_type": "continuous", + "is_target": false + }, + { + "feature_name": "job", + "data_type": "categorical", + "is_target": false + }, + { + "feature_name": "marital", + "data_type": "categorical", + "is_target": false + }, + { + "feature_name": "education", + "data_type": "categorical", + "is_target": false + }, + { + "feature_name": "default", + "data_type": "binary", + "is_target": false + }, + { + "feature_name": "balance", + "data_type": "continuous", + "is_target": false + }, + { + "feature_name": "housing", + "data_type": "binary", + "is_target": false + }, + { + "feature_name": "loan", + "data_type": "binary", + "is_target": false + }, + { + "feature_name": "contact", + "data_type": "categorical", + "is_target": false + }, + { + "feature_name": "day", + "data_type": "continuous", + "is_target": false + }, + { + "feature_name": "month", + "data_type": "categorical", + "is_target": false + }, + { + "feature_name": "duration", + "data_type": "continuous", + "is_target": false + }, + { + "feature_name": "campaign", + "data_type": "continuous", + "is_target": false + }, + { + "feature_name": "pdays", + "data_type": "continuous", + "is_target": false + }, + { + "feature_name": "previous", + "data_type": "continuous", + "is_target": false + }, + { + "feature_name": "poutcome", + "data_type": "categorical", + "is_target": false + }, + { + "feature_name": "y", + "data_type": "binary", + "is_target": true + } +] \ No newline at end of file diff --git a/timecost/m8/tabpfgen/tabpfgen-m8-20260501_012611/staged/public/test.csv b/timecost/m8/tabpfgen/tabpfgen-m8-20260501_012611/staged/public/test.csv new file mode 100644 index 0000000000000000000000000000000000000000..e1c4866e541b88f8bcd3b88381c7e56d4df06443 --- /dev/null +++ b/timecost/m8/tabpfgen/tabpfgen-m8-20260501_012611/staged/public/test.csv @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:6221943e422e75c8317b79b7ef93e9cd01f61fdd8de6ce42909a8e4610966310 +size 370991 diff --git a/timecost/m8/tabpfgen/tabpfgen-m8-20260501_012611/staged/public/train.csv b/timecost/m8/tabpfgen/tabpfgen-m8-20260501_012611/staged/public/train.csv new file mode 100644 index 0000000000000000000000000000000000000000..fd7d8791840b6811b098820db4ed9e74cf5d627a --- /dev/null +++ b/timecost/m8/tabpfgen/tabpfgen-m8-20260501_012611/staged/public/train.csv @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:f9cbb71aa793de19869a138d41aea5808f772b31082741b185ffb8ca7b821833 +size 2964802 diff --git a/timecost/m8/tabpfgen/tabpfgen-m8-20260501_012611/staged/public/val.csv b/timecost/m8/tabpfgen/tabpfgen-m8-20260501_012611/staged/public/val.csv new file mode 100644 index 0000000000000000000000000000000000000000..09f0041420455c56eb1f79c62940d135e8bc6ea3 --- /dev/null +++ b/timecost/m8/tabpfgen/tabpfgen-m8-20260501_012611/staged/public/val.csv @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:5ee8612128aae92155906abc0fdc752ac24fd04d63c78c080c89e3900efe6525 +size 370535 diff --git a/timecost/m8/tabpfgen/tabpfgen-m8-20260501_012611/staged/tabpfgen/adapter_report.json b/timecost/m8/tabpfgen/tabpfgen-m8-20260501_012611/staged/tabpfgen/adapter_report.json new file mode 100644 index 0000000000000000000000000000000000000000..a735d8c3423ec3540b065e0f659e7b22a43b8129 --- /dev/null +++ b/timecost/m8/tabpfgen/tabpfgen-m8-20260501_012611/staged/tabpfgen/adapter_report.json @@ -0,0 +1,7 @@ +{ + "adapter_ready_status": "pass", + "adapter_fail_reason_code": null, + "adapter_fail_detail": null, + "adapter_transforms_applied": [], + "model_input_manifest": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/m8/tabpfgen/tabpfgen-m8-20260501_012611/staged/tabpfgen/model_input_manifest.json" +} \ No newline at end of file diff --git a/timecost/m8/tabpfgen/tabpfgen-m8-20260501_012611/staged/tabpfgen/adapter_transforms_applied.json b/timecost/m8/tabpfgen/tabpfgen-m8-20260501_012611/staged/tabpfgen/adapter_transforms_applied.json new file mode 100644 index 0000000000000000000000000000000000000000..0637a088a01e8ddab3bf3fa98dbe804cbde1a0dc --- /dev/null +++ b/timecost/m8/tabpfgen/tabpfgen-m8-20260501_012611/staged/tabpfgen/adapter_transforms_applied.json @@ -0,0 +1 @@ +[] \ No newline at end of file diff --git a/timecost/m8/tabpfgen/tabpfgen-m8-20260501_012611/staged/tabpfgen/model_input_manifest.json b/timecost/m8/tabpfgen/tabpfgen-m8-20260501_012611/staged/tabpfgen/model_input_manifest.json new file mode 100644 index 0000000000000000000000000000000000000000..3fbbe2034a0553b34767ff698b8d8fc13d9dcfde --- /dev/null +++ b/timecost/m8/tabpfgen/tabpfgen-m8-20260501_012611/staged/tabpfgen/model_input_manifest.json @@ -0,0 +1,353 @@ +{ + "dataset_id": "m8", + "model": "tabpfgen", + "target_column": "y", + "task_type": "classification", + "column_schema": [ + { + "name": "age", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 76, + "unique_ratio": 0.002101, + "example_values": [ + "40", + "52", + "31", + "51", + "44" + ] + } + }, + { + "name": "job", + "role": "feature", + "semantic_type": "categorical", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 12, + "unique_ratio": 0.000332, + "example_values": [ + "admin.", + "technician", + "entrepreneur", + "blue-collar", + "services" + ] + } + }, + { + "name": "marital", + "role": "feature", + "semantic_type": "categorical", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 3, + "unique_ratio": 8.3e-05, + "example_values": [ + "single", + "married", + "divorced" + ] + } + }, + { + "name": "education", + "role": "feature", + "semantic_type": "categorical", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 4, + "unique_ratio": 0.000111, + "example_values": [ + "secondary", + "tertiary", + "primary", + "unknown" + ] + } + }, + { + "name": "default", + "role": "feature", + "semantic_type": "boolean", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 2, + "unique_ratio": 5.5e-05, + "example_values": [ + "no", + "yes" + ] + } + }, + { + "name": "balance", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 6604, + "unique_ratio": 0.182592, + "example_values": [ + "419", + "31", + "7567", + "315", + "737" + ] + } + }, + { + "name": "housing", + "role": "feature", + "semantic_type": "boolean", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 2, + "unique_ratio": 5.5e-05, + "example_values": [ + "no", + "yes" + ] + } + }, + { + "name": "loan", + "role": "feature", + "semantic_type": "boolean", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 2, + "unique_ratio": 5.5e-05, + "example_values": [ + "yes", + "no" + ] + } + }, + { + "name": "contact", + "role": "feature", + "semantic_type": "categorical", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 3, + "unique_ratio": 8.3e-05, + "example_values": [ + "cellular", + "unknown", + "telephone" + ] + } + }, + { + "name": "day", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 31, + "unique_ratio": 0.000857, + "example_values": [ + "28", + "7", + "11", + "12", + "14" + ] + } + }, + { + "name": "month", + "role": "feature", + "semantic_type": "categorical", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 12, + "unique_ratio": 0.000332, + "example_values": [ + "jul", + "may", + "aug", + "oct", + "feb" + ] + } + }, + { + "name": "duration", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 1507, + "unique_ratio": 0.041667, + "example_values": [ + "100", + "120", + "70", + "291", + "102" + ] + } + }, + { + "name": "campaign", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 47, + "unique_ratio": 0.001299, + "example_values": [ + "16", + "1", + "2", + "5", + "4" + ] + } + }, + { + "name": "pdays", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 524, + "unique_ratio": 0.014488, + "example_values": [ + "-1", + "91", + "365", + "189", + "117" + ] + } + }, + { + "name": "previous", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 38, + "unique_ratio": 0.001051, + "example_values": [ + "0", + "4", + "1", + "2", + "3" + ] + } + }, + { + "name": "poutcome", + "role": "feature", + "semantic_type": "categorical", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 4, + "unique_ratio": 0.000111, + "example_values": [ + "unknown", + "failure", + "other", + "success" + ] + } + }, + { + "name": "y", + "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": 5.5e-05, + "example_values": [ + "no", + "yes" + ] + } + } + ], + "public_manifest": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/m8/tabpfgen/tabpfgen-m8-20260501_012611/public_gate/staged_input_manifest.json", + "train_csv": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/m8/tabpfgen/tabpfgen-m8-20260501_012611/staged/public/train.csv", + "val_csv": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/m8/tabpfgen/tabpfgen-m8-20260501_012611/staged/public/val.csv", + "test_csv": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/m8/tabpfgen/tabpfgen-m8-20260501_012611/staged/public/test.csv", + "features_json": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/m8/tabpfgen/tabpfgen-m8-20260501_012611/staged/public/staged_features.json", + "public_gate_report": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/m8/tabpfgen/tabpfgen-m8-20260501_012611/public_gate/public_gate_report.json" +} \ No newline at end of file diff --git a/timecost/m8/tabpfgen/tabpfgen-m8-20260501_012611/tabpfgen-m8-36168-20260501_012611.csv b/timecost/m8/tabpfgen/tabpfgen-m8-20260501_012611/tabpfgen-m8-36168-20260501_012611.csv new file mode 100644 index 0000000000000000000000000000000000000000..0a0b0e09dbb7f554c8873d5fe0036e06c5ccdda7 --- /dev/null +++ b/timecost/m8/tabpfgen/tabpfgen-m8-20260501_012611/tabpfgen-m8-36168-20260501_012611.csv @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:f172221760be02b18035f31f3467249ff5a3a13ebd395d865bc545e3ef3190af +size 4801373 diff --git a/timecost/m8/tabpfgen/tabpfgen-m8-20260501_012611/tabpfgen_meta.json b/timecost/m8/tabpfgen/tabpfgen-m8-20260501_012611/tabpfgen_meta.json new file mode 100644 index 0000000000000000000000000000000000000000..914c7266339fe818144f4654caf7ab243a09873b --- /dev/null +++ b/timecost/m8/tabpfgen/tabpfgen-m8-20260501_012611/tabpfgen_meta.json @@ -0,0 +1,9 @@ +{ + "csv_path": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/m8/tabpfgen/tabpfgen-m8-20260501_012611/staged/public/train.csv", + "json_path": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/m8/tabpfgen/tabpfgen-m8-20260501_012611/staged/public/staged_features.json", + "target_col": "y", + "is_classification": true, + "task_type": "classification", + "n_rows": 36168, + "n_cols": 17 +} \ No newline at end of file diff --git a/timecost/m8/tabpfgen/tabpfgen-m8-20260501_012611/train_20260501_012611.log b/timecost/m8/tabpfgen/tabpfgen-m8-20260501_012611/train_20260501_012611.log new file mode 100644 index 0000000000000000000000000000000000000000..88537154202a98ca178f9870e6e4d428164dc669 --- /dev/null +++ b/timecost/m8/tabpfgen/tabpfgen-m8-20260501_012611/train_20260501_012611.log @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:b5927a1d9e97d405c0bf308d01bca24b77253fa8c84043d31cd0ca2d7c624af5 +size 597 diff --git a/timecost/m8/tabpfgen/tabpfgen-m8-20260501_041014/_tabpfgen_generate.py b/timecost/m8/tabpfgen/tabpfgen-m8-20260501_041014/_tabpfgen_generate.py new file mode 100644 index 0000000000000000000000000000000000000000..65c854c132d9f6d26fbe156c838c0083a2072849 --- /dev/null +++ b/timecost/m8/tabpfgen/tabpfgen-m8-20260501_041014/_tabpfgen_generate.py @@ -0,0 +1,100 @@ +import os +import numpy as np +import pandas as pd +import json +from tabpfgen import TabPFGen + +df = pd.read_csv("/work/output-Benchmark-trainonly-v1/m8/tabpfgen/tabpfgen-m8-20260501_041014/staged/public/train.csv") +target_col = "y" + +target_missing = df[target_col].isna() +if target_missing.any(): + dropped = int(target_missing.sum()) + df = df.loc[~target_missing].copy() + print( + f"[TabPFGen] Dropped {dropped} rows with missing target '{target_col}'" + ) +if df.empty: + raise ValueError( + f"[TabPFGen] No rows remain after dropping missing target '{target_col}'" + ) + +feature_cols = [c for c in df.columns if c != target_col] + +cat_encodings = {} +for col in feature_cols: + if df[col].dtype == object or str(df[col].dtype) == 'category': + cats = sorted(df[col].dropna().unique().tolist(), key=str) + cat_map = {v: i for i, v in enumerate(cats)} + df[col] = df[col].map(cat_map).astype(float) + cat_encodings[col] = cats + print(f"[TabPFGen] Label-encoded '{col}' ({len(cats)} categories)") + +target_cats = None +if df[target_col].dtype == object or str(df[target_col].dtype) == 'category': + cats = sorted(df[target_col].dropna().unique().tolist(), key=str) + t_map = {v: i for i, v in enumerate(cats)} + df[target_col] = df[target_col].map(t_map).astype(float) + target_cats = cats + print(f"[TabPFGen] Label-encoded target '{target_col}' ({len(cats)} categories)") + +X = df[feature_cols].values.astype(np.float32) +y = df[target_col].values +target_n = int(36168) + +for i in range(X.shape[1]): + col_vals = X[:, i] + mask = np.isnan(col_vals) + if mask.any(): + mean_val = np.nanmean(col_vals) + X[mask, i] = mean_val if not np.isnan(mean_val) else 0.0 + +# TabPFGen v0.1.x API:仅支持 n_sgld_steps / sgld_* / device。 +# (旧版脚本中的 energy_*_chunk 与上游 TabPFGen 不一致,会导致 TypeError。) +gen = TabPFGen( + n_sgld_steps=1000, + sgld_step_size=0.01, + sgld_noise_scale=0.01, + device="auto", +) + +print(f"[TabPFGen] Generating {target_n} rows via generate_classification") +X_syn, y_syn = gen.generate_classification(X, y, n_samples=target_n) + +syn_df = pd.DataFrame(X_syn, columns=feature_cols) +syn_df[target_col] = y_syn + +for col, cats in cat_encodings.items(): + codes = np.round(syn_df[col].values).astype(int) + codes = np.clip(codes, 0, len(cats) - 1) + syn_df[col] = [cats[c] for c in codes] + +if target_cats is not None: + codes = np.round(syn_df[target_col].values).astype(int) + codes = np.clip(codes, 0, len(target_cats) - 1) + syn_df[target_col] = [target_cats[c] for c in codes] + +if len(syn_df) > target_n: + print(f"[TabPFGen] Trimming rows: {len(syn_df)} -> {target_n}") + syn_df = syn_df.iloc[:target_n].copy() +elif len(syn_df) < target_n: + deficit = target_n - len(syn_df) + print(f"[TabPFGen] Padding rows: {len(syn_df)} -> {target_n} (deficit={deficit})") + if len(syn_df) > 0: + extra = syn_df.sample(n=deficit, replace=True, random_state=42) + syn_df = pd.concat( + [syn_df.reset_index(drop=True), extra.reset_index(drop=True)], + ignore_index=True, + ) + else: + syn_df = df[feature_cols + [target_col]].sample( + n=target_n, replace=True, random_state=42 + ).reset_index(drop=True) + +syn_df = syn_df[list(df.columns)] +if len(syn_df) != target_n: + raise RuntimeError( + f"[TabPFGen] Row alignment failed: got {len(syn_df)}, expected {target_n}" + ) +syn_df.to_csv("/work/output-Benchmark-trainonly-v1/m8/tabpfgen/tabpfgen-m8-20260501_041014/tabpfgen-m8-36168-20260501_041015.csv", index=False) +print(f"[TabPFGen] Saved {len(syn_df)} rows -> /work/output-Benchmark-trainonly-v1/m8/tabpfgen/tabpfgen-m8-20260501_041014/tabpfgen-m8-36168-20260501_041015.csv") diff --git a/timecost/m8/tabpfgen/tabpfgen-m8-20260501_041014/gen_20260501_041015.log b/timecost/m8/tabpfgen/tabpfgen-m8-20260501_041014/gen_20260501_041015.log new file mode 100644 index 0000000000000000000000000000000000000000..e0ff3cc8bc275f735f328411a6a5d9aaa188a00c --- /dev/null +++ b/timecost/m8/tabpfgen/tabpfgen-m8-20260501_041014/gen_20260501_041015.log @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:8d5413dbeb0bc7c758aa9f5619c6d0c579940c9af26ad88a327bc5279a246dfe +size 1400 diff --git a/timecost/m8/tabpfgen/tabpfgen-m8-20260501_041014/input_snapshot.json b/timecost/m8/tabpfgen/tabpfgen-m8-20260501_041014/input_snapshot.json new file mode 100644 index 0000000000000000000000000000000000000000..706e186dd620e811847f323a3b2b5b3f3f949eca --- /dev/null +++ b/timecost/m8/tabpfgen/tabpfgen-m8-20260501_041014/input_snapshot.json @@ -0,0 +1,36 @@ +{ + "dataset_id": "m8", + "model": "tabpfgen", + "inputs": { + "train_csv": { + "path": "/data/jialinzhang/SynthesizePipeline-server/DatasetNew/m8/m8-train.csv", + "exists": true, + "size": 2964802, + "sha256": "f9cbb71aa793de19869a138d41aea5808f772b31082741b185ffb8ca7b821833" + }, + "val_csv": { + "path": "/data/jialinzhang/SynthesizePipeline-server/DatasetNew/m8/m8-val.csv", + "exists": true, + "size": 370535, + "sha256": "5ee8612128aae92155906abc0fdc752ac24fd04d63c78c080c89e3900efe6525" + }, + "test_csv": { + "path": "/data/jialinzhang/SynthesizePipeline-server/DatasetNew/m8/m8-test.csv", + "exists": true, + "size": 370991, + "sha256": "6221943e422e75c8317b79b7ef93e9cd01f61fdd8de6ce42909a8e4610966310" + }, + "profile_json": { + "path": "/data/jialinzhang/SynthesizePipeline-server/DatasetNew/artifacts/data_core/tabular/m8/m8-dataset_profile.json", + "exists": true, + "size": 6553, + "sha256": "44f883858641584035a0a8859cb95dbcd3a023c03cbc76931aadfc4c70ef871f" + }, + "contract_json": { + "path": "/data/jialinzhang/SynthesizePipeline-server/DatasetNew/artifacts/data_core/tabular/m8/m8-dataset_contract_v1.json", + "exists": true, + "size": 8214, + "sha256": "e76df134780ec9b6c6c625a54e5d0c1935e9f4a7d09320ad19279a0492438d92" + } + } +} \ No newline at end of file diff --git a/timecost/m8/tabpfgen/tabpfgen-m8-20260501_041014/public_gate/normalized_schema_snapshot.json b/timecost/m8/tabpfgen/tabpfgen-m8-20260501_041014/public_gate/normalized_schema_snapshot.json new file mode 100644 index 0000000000000000000000000000000000000000..5e616edd2b7924c5e07f02ccbbb842529655f52a --- /dev/null +++ b/timecost/m8/tabpfgen/tabpfgen-m8-20260501_041014/public_gate/normalized_schema_snapshot.json @@ -0,0 +1,346 @@ +{ + "dataset_id": "m8", + "target_column": "y", + "task_type": "classification", + "columns": [ + { + "name": "age", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 76, + "unique_ratio": 0.002101, + "example_values": [ + "40", + "52", + "31", + "51", + "44" + ] + } + }, + { + "name": "job", + "role": "feature", + "semantic_type": "categorical", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 12, + "unique_ratio": 0.000332, + "example_values": [ + "admin.", + "technician", + "entrepreneur", + "blue-collar", + "services" + ] + } + }, + { + "name": "marital", + "role": "feature", + "semantic_type": "categorical", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 3, + "unique_ratio": 8.3e-05, + "example_values": [ + "single", + "married", + "divorced" + ] + } + }, + { + "name": "education", + "role": "feature", + "semantic_type": "categorical", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 4, + "unique_ratio": 0.000111, + "example_values": [ + "secondary", + "tertiary", + "primary", + "unknown" + ] + } + }, + { + "name": "default", + "role": "feature", + "semantic_type": "boolean", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 2, + "unique_ratio": 5.5e-05, + "example_values": [ + "no", + "yes" + ] + } + }, + { + "name": "balance", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 6604, + "unique_ratio": 0.182592, + "example_values": [ + "419", + "31", + "7567", + "315", + "737" + ] + } + }, + { + "name": "housing", + "role": "feature", + "semantic_type": "boolean", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 2, + "unique_ratio": 5.5e-05, + "example_values": [ + "no", + "yes" + ] + } + }, + { + "name": "loan", + "role": "feature", + "semantic_type": "boolean", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 2, + "unique_ratio": 5.5e-05, + "example_values": [ + "yes", + "no" + ] + } + }, + { + "name": "contact", + "role": "feature", + "semantic_type": "categorical", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 3, + "unique_ratio": 8.3e-05, + "example_values": [ + "cellular", + "unknown", + "telephone" + ] + } + }, + { + "name": "day", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 31, + "unique_ratio": 0.000857, + "example_values": [ + "28", + "7", + "11", + "12", + "14" + ] + } + }, + { + "name": "month", + "role": "feature", + "semantic_type": "categorical", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 12, + "unique_ratio": 0.000332, + "example_values": [ + "jul", + "may", + "aug", + "oct", + "feb" + ] + } + }, + { + "name": "duration", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 1507, + "unique_ratio": 0.041667, + "example_values": [ + "100", + "120", + "70", + "291", + "102" + ] + } + }, + { + "name": "campaign", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 47, + "unique_ratio": 0.001299, + "example_values": [ + "16", + "1", + "2", + "5", + "4" + ] + } + }, + { + "name": "pdays", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 524, + "unique_ratio": 0.014488, + "example_values": [ + "-1", + "91", + "365", + "189", + "117" + ] + } + }, + { + "name": "previous", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 38, + "unique_ratio": 0.001051, + "example_values": [ + "0", + "4", + "1", + "2", + "3" + ] + } + }, + { + "name": "poutcome", + "role": "feature", + "semantic_type": "categorical", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 4, + "unique_ratio": 0.000111, + "example_values": [ + "unknown", + "failure", + "other", + "success" + ] + } + }, + { + "name": "y", + "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": 5.5e-05, + "example_values": [ + "no", + "yes" + ] + } + } + ] +} \ No newline at end of file diff --git a/timecost/m8/tabpfgen/tabpfgen-m8-20260501_041014/public_gate/public_gate_report.json b/timecost/m8/tabpfgen/tabpfgen-m8-20260501_041014/public_gate/public_gate_report.json new file mode 100644 index 0000000000000000000000000000000000000000..318ead0018618096d718d3ec1140561db7e0a70f --- /dev/null +++ b/timecost/m8/tabpfgen/tabpfgen-m8-20260501_041014/public_gate/public_gate_report.json @@ -0,0 +1,37 @@ +{ + "dataset_id": "m8", + "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": "y", + "task_type": "classification", + "input_splits": { + "train": "/data/jialinzhang/SynthesizePipeline-server/DatasetNew/m8/m8-train.csv", + "val": "/data/jialinzhang/SynthesizePipeline-server/DatasetNew/m8/m8-val.csv", + "test": "/data/jialinzhang/SynthesizePipeline-server/DatasetNew/m8/m8-test.csv" + } +} \ No newline at end of file diff --git a/timecost/m8/tabpfgen/tabpfgen-m8-20260501_041014/public_gate/staged_input_manifest.json b/timecost/m8/tabpfgen/tabpfgen-m8-20260501_041014/public_gate/staged_input_manifest.json new file mode 100644 index 0000000000000000000000000000000000000000..92d0941285038c621d0e86c3ccb1852651d16f68 --- /dev/null +++ b/timecost/m8/tabpfgen/tabpfgen-m8-20260501_041014/public_gate/staged_input_manifest.json @@ -0,0 +1,351 @@ +{ + "dataset_id": "m8", + "target_column": "y", + "task_type": "classification", + "train_csv": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/m8/tabpfgen/tabpfgen-m8-20260501_041014/staged/public/train.csv", + "val_csv": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/m8/tabpfgen/tabpfgen-m8-20260501_041014/staged/public/val.csv", + "test_csv": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/m8/tabpfgen/tabpfgen-m8-20260501_041014/staged/public/test.csv", + "features_json": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/m8/tabpfgen/tabpfgen-m8-20260501_041014/staged/public/staged_features.json", + "public_gate_report": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/m8/tabpfgen/tabpfgen-m8-20260501_041014/public_gate/public_gate_report.json", + "column_schema": [ + { + "name": "age", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 76, + "unique_ratio": 0.002101, + "example_values": [ + "40", + "52", + "31", + "51", + "44" + ] + } + }, + { + "name": "job", + "role": "feature", + "semantic_type": "categorical", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 12, + "unique_ratio": 0.000332, + "example_values": [ + "admin.", + "technician", + "entrepreneur", + "blue-collar", + "services" + ] + } + }, + { + "name": "marital", + "role": "feature", + "semantic_type": "categorical", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 3, + "unique_ratio": 8.3e-05, + "example_values": [ + "single", + "married", + "divorced" + ] + } + }, + { + "name": "education", + "role": "feature", + "semantic_type": "categorical", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 4, + "unique_ratio": 0.000111, + "example_values": [ + "secondary", + "tertiary", + "primary", + "unknown" + ] + } + }, + { + "name": "default", + "role": "feature", + "semantic_type": "boolean", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 2, + "unique_ratio": 5.5e-05, + "example_values": [ + "no", + "yes" + ] + } + }, + { + "name": "balance", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 6604, + "unique_ratio": 0.182592, + "example_values": [ + "419", + "31", + "7567", + "315", + "737" + ] + } + }, + { + "name": "housing", + "role": "feature", + "semantic_type": "boolean", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 2, + "unique_ratio": 5.5e-05, + "example_values": [ + "no", + "yes" + ] + } + }, + { + "name": "loan", + "role": "feature", + "semantic_type": "boolean", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 2, + "unique_ratio": 5.5e-05, + "example_values": [ + "yes", + "no" + ] + } + }, + { + "name": "contact", + "role": "feature", + "semantic_type": "categorical", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 3, + "unique_ratio": 8.3e-05, + "example_values": [ + "cellular", + "unknown", + "telephone" + ] + } + }, + { + "name": "day", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 31, + "unique_ratio": 0.000857, + "example_values": [ + "28", + "7", + "11", + "12", + "14" + ] + } + }, + { + "name": "month", + "role": "feature", + "semantic_type": "categorical", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 12, + "unique_ratio": 0.000332, + "example_values": [ + "jul", + "may", + "aug", + "oct", + "feb" + ] + } + }, + { + "name": "duration", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 1507, + "unique_ratio": 0.041667, + "example_values": [ + "100", + "120", + "70", + "291", + "102" + ] + } + }, + { + "name": "campaign", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 47, + "unique_ratio": 0.001299, + "example_values": [ + "16", + "1", + "2", + "5", + "4" + ] + } + }, + { + "name": "pdays", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 524, + "unique_ratio": 0.014488, + "example_values": [ + "-1", + "91", + "365", + "189", + "117" + ] + } + }, + { + "name": "previous", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 38, + "unique_ratio": 0.001051, + "example_values": [ + "0", + "4", + "1", + "2", + "3" + ] + } + }, + { + "name": "poutcome", + "role": "feature", + "semantic_type": "categorical", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 4, + "unique_ratio": 0.000111, + "example_values": [ + "unknown", + "failure", + "other", + "success" + ] + } + }, + { + "name": "y", + "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": 5.5e-05, + "example_values": [ + "no", + "yes" + ] + } + } + ] +} \ No newline at end of file diff --git a/timecost/m8/tabpfgen/tabpfgen-m8-20260501_041014/runtime_result.json b/timecost/m8/tabpfgen/tabpfgen-m8-20260501_041014/runtime_result.json new file mode 100644 index 0000000000000000000000000000000000000000..2c4fed73ed16146aed2d0bb21187918e2f3bdd08 --- /dev/null +++ b/timecost/m8/tabpfgen/tabpfgen-m8-20260501_041014/runtime_result.json @@ -0,0 +1,27 @@ +{ + "dataset_id": "m8", + "model": "tabpfgen", + "run_id": "tabpfgen-m8-20260501_041014", + "public_gate_status": "pass", + "adapter_ready_status": "pass", + "train_status": "success", + "generate_status": "success", + "reason_code": null, + "reason_detail": null, + "artifacts": { + "synthetic_csv": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/m8/tabpfgen/tabpfgen-m8-20260501_041014/tabpfgen-m8-36168-20260501_041015.csv", + "model_path": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/m8/tabpfgen/tabpfgen-m8-20260501_041014" + }, + "timings": { + "train": { + "started_at": "2026-05-01T04:10:14", + "ended_at": "2026-05-01T04:10:15", + "duration_sec": 0.137 + }, + "generate": { + "started_at": "2026-05-01T04:10:15", + "ended_at": "2026-05-01T04:12:43", + "duration_sec": 147.995 + } + } +} \ No newline at end of file diff --git a/timecost/m8/tabpfgen/tabpfgen-m8-20260501_041014/staged/public/staged_features.json b/timecost/m8/tabpfgen/tabpfgen-m8-20260501_041014/staged/public/staged_features.json new file mode 100644 index 0000000000000000000000000000000000000000..11323e8dc5c8a2eaafa8e404e60d3db7e244452a --- /dev/null +++ b/timecost/m8/tabpfgen/tabpfgen-m8-20260501_041014/staged/public/staged_features.json @@ -0,0 +1,87 @@ +[ + { + "feature_name": "age", + "data_type": "continuous", + "is_target": false + }, + { + "feature_name": "job", + "data_type": "categorical", + "is_target": false + }, + { + "feature_name": "marital", + "data_type": "categorical", + "is_target": false + }, + { + "feature_name": "education", + "data_type": "categorical", + "is_target": false + }, + { + "feature_name": "default", + "data_type": "binary", + "is_target": false + }, + { + "feature_name": "balance", + "data_type": "continuous", + "is_target": false + }, + { + "feature_name": "housing", + "data_type": "binary", + "is_target": false + }, + { + "feature_name": "loan", + "data_type": "binary", + "is_target": false + }, + { + "feature_name": "contact", + "data_type": "categorical", + "is_target": false + }, + { + "feature_name": "day", + "data_type": "continuous", + "is_target": false + }, + { + "feature_name": "month", + "data_type": "categorical", + "is_target": false + }, + { + "feature_name": "duration", + "data_type": "continuous", + "is_target": false + }, + { + "feature_name": "campaign", + "data_type": "continuous", + "is_target": false + }, + { + "feature_name": "pdays", + "data_type": "continuous", + "is_target": false + }, + { + "feature_name": "previous", + "data_type": "continuous", + "is_target": false + }, + { + "feature_name": "poutcome", + "data_type": "categorical", + "is_target": false + }, + { + "feature_name": "y", + "data_type": "binary", + "is_target": true + } +] \ No newline at end of file diff --git a/timecost/m8/tabpfgen/tabpfgen-m8-20260501_041014/staged/public/test.csv b/timecost/m8/tabpfgen/tabpfgen-m8-20260501_041014/staged/public/test.csv new file mode 100644 index 0000000000000000000000000000000000000000..e1c4866e541b88f8bcd3b88381c7e56d4df06443 --- /dev/null +++ b/timecost/m8/tabpfgen/tabpfgen-m8-20260501_041014/staged/public/test.csv @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:6221943e422e75c8317b79b7ef93e9cd01f61fdd8de6ce42909a8e4610966310 +size 370991 diff --git a/timecost/m8/tabpfgen/tabpfgen-m8-20260501_041014/staged/public/train.csv b/timecost/m8/tabpfgen/tabpfgen-m8-20260501_041014/staged/public/train.csv new file mode 100644 index 0000000000000000000000000000000000000000..fd7d8791840b6811b098820db4ed9e74cf5d627a --- /dev/null +++ b/timecost/m8/tabpfgen/tabpfgen-m8-20260501_041014/staged/public/train.csv @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:f9cbb71aa793de19869a138d41aea5808f772b31082741b185ffb8ca7b821833 +size 2964802 diff --git a/timecost/m8/tabpfgen/tabpfgen-m8-20260501_041014/staged/public/val.csv b/timecost/m8/tabpfgen/tabpfgen-m8-20260501_041014/staged/public/val.csv new file mode 100644 index 0000000000000000000000000000000000000000..09f0041420455c56eb1f79c62940d135e8bc6ea3 --- /dev/null +++ b/timecost/m8/tabpfgen/tabpfgen-m8-20260501_041014/staged/public/val.csv @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:5ee8612128aae92155906abc0fdc752ac24fd04d63c78c080c89e3900efe6525 +size 370535 diff --git a/timecost/m8/tabpfgen/tabpfgen-m8-20260501_041014/staged/tabpfgen/adapter_report.json b/timecost/m8/tabpfgen/tabpfgen-m8-20260501_041014/staged/tabpfgen/adapter_report.json new file mode 100644 index 0000000000000000000000000000000000000000..cabd490c4895fe84a7218b22129f4d94bcf9e472 --- /dev/null +++ b/timecost/m8/tabpfgen/tabpfgen-m8-20260501_041014/staged/tabpfgen/adapter_report.json @@ -0,0 +1,7 @@ +{ + "adapter_ready_status": "pass", + "adapter_fail_reason_code": null, + "adapter_fail_detail": null, + "adapter_transforms_applied": [], + "model_input_manifest": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/m8/tabpfgen/tabpfgen-m8-20260501_041014/staged/tabpfgen/model_input_manifest.json" +} \ No newline at end of file diff --git a/timecost/m8/tabpfgen/tabpfgen-m8-20260501_041014/staged/tabpfgen/adapter_transforms_applied.json b/timecost/m8/tabpfgen/tabpfgen-m8-20260501_041014/staged/tabpfgen/adapter_transforms_applied.json new file mode 100644 index 0000000000000000000000000000000000000000..0637a088a01e8ddab3bf3fa98dbe804cbde1a0dc --- /dev/null +++ b/timecost/m8/tabpfgen/tabpfgen-m8-20260501_041014/staged/tabpfgen/adapter_transforms_applied.json @@ -0,0 +1 @@ +[] \ No newline at end of file diff --git a/timecost/m8/tabpfgen/tabpfgen-m8-20260501_041014/staged/tabpfgen/model_input_manifest.json b/timecost/m8/tabpfgen/tabpfgen-m8-20260501_041014/staged/tabpfgen/model_input_manifest.json new file mode 100644 index 0000000000000000000000000000000000000000..a63b30f4e25b26c1ff8e5522b397102c9129e4b0 --- /dev/null +++ b/timecost/m8/tabpfgen/tabpfgen-m8-20260501_041014/staged/tabpfgen/model_input_manifest.json @@ -0,0 +1,353 @@ +{ + "dataset_id": "m8", + "model": "tabpfgen", + "target_column": "y", + "task_type": "classification", + "column_schema": [ + { + "name": "age", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 76, + "unique_ratio": 0.002101, + "example_values": [ + "40", + "52", + "31", + "51", + "44" + ] + } + }, + { + "name": "job", + "role": "feature", + "semantic_type": "categorical", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 12, + "unique_ratio": 0.000332, + "example_values": [ + "admin.", + "technician", + "entrepreneur", + "blue-collar", + "services" + ] + } + }, + { + "name": "marital", + "role": "feature", + "semantic_type": "categorical", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 3, + "unique_ratio": 8.3e-05, + "example_values": [ + "single", + "married", + "divorced" + ] + } + }, + { + "name": "education", + "role": "feature", + "semantic_type": "categorical", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 4, + "unique_ratio": 0.000111, + "example_values": [ + "secondary", + "tertiary", + "primary", + "unknown" + ] + } + }, + { + "name": "default", + "role": "feature", + "semantic_type": "boolean", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 2, + "unique_ratio": 5.5e-05, + "example_values": [ + "no", + "yes" + ] + } + }, + { + "name": "balance", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 6604, + "unique_ratio": 0.182592, + "example_values": [ + "419", + "31", + "7567", + "315", + "737" + ] + } + }, + { + "name": "housing", + "role": "feature", + "semantic_type": "boolean", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 2, + "unique_ratio": 5.5e-05, + "example_values": [ + "no", + "yes" + ] + } + }, + { + "name": "loan", + "role": "feature", + "semantic_type": "boolean", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 2, + "unique_ratio": 5.5e-05, + "example_values": [ + "yes", + "no" + ] + } + }, + { + "name": "contact", + "role": "feature", + "semantic_type": "categorical", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 3, + "unique_ratio": 8.3e-05, + "example_values": [ + "cellular", + "unknown", + "telephone" + ] + } + }, + { + "name": "day", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 31, + "unique_ratio": 0.000857, + "example_values": [ + "28", + "7", + "11", + "12", + "14" + ] + } + }, + { + "name": "month", + "role": "feature", + "semantic_type": "categorical", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 12, + "unique_ratio": 0.000332, + "example_values": [ + "jul", + "may", + "aug", + "oct", + "feb" + ] + } + }, + { + "name": "duration", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 1507, + "unique_ratio": 0.041667, + "example_values": [ + "100", + "120", + "70", + "291", + "102" + ] + } + }, + { + "name": "campaign", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 47, + "unique_ratio": 0.001299, + "example_values": [ + "16", + "1", + "2", + "5", + "4" + ] + } + }, + { + "name": "pdays", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 524, + "unique_ratio": 0.014488, + "example_values": [ + "-1", + "91", + "365", + "189", + "117" + ] + } + }, + { + "name": "previous", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 38, + "unique_ratio": 0.001051, + "example_values": [ + "0", + "4", + "1", + "2", + "3" + ] + } + }, + { + "name": "poutcome", + "role": "feature", + "semantic_type": "categorical", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 4, + "unique_ratio": 0.000111, + "example_values": [ + "unknown", + "failure", + "other", + "success" + ] + } + }, + { + "name": "y", + "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": 5.5e-05, + "example_values": [ + "no", + "yes" + ] + } + } + ], + "public_manifest": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/m8/tabpfgen/tabpfgen-m8-20260501_041014/public_gate/staged_input_manifest.json", + "train_csv": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/m8/tabpfgen/tabpfgen-m8-20260501_041014/staged/public/train.csv", + "val_csv": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/m8/tabpfgen/tabpfgen-m8-20260501_041014/staged/public/val.csv", + "test_csv": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/m8/tabpfgen/tabpfgen-m8-20260501_041014/staged/public/test.csv", + "features_json": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/m8/tabpfgen/tabpfgen-m8-20260501_041014/staged/public/staged_features.json", + "public_gate_report": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/m8/tabpfgen/tabpfgen-m8-20260501_041014/public_gate/public_gate_report.json" +} \ No newline at end of file diff --git a/timecost/m8/tabpfgen/tabpfgen-m8-20260501_041014/tabpfgen-m8-36168-20260501_041015.csv b/timecost/m8/tabpfgen/tabpfgen-m8-20260501_041014/tabpfgen-m8-36168-20260501_041015.csv new file mode 100644 index 0000000000000000000000000000000000000000..de325374928fe0c690a7467d3ba43824dbec2c60 --- /dev/null +++ b/timecost/m8/tabpfgen/tabpfgen-m8-20260501_041014/tabpfgen-m8-36168-20260501_041015.csv @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:73544a68ce12d9a3954ea8187523cfb72ebfda7d909e0678bc9c594b6c1f249d +size 4800851 diff --git a/timecost/m8/tabpfgen/tabpfgen-m8-20260501_041014/tabpfgen_meta.json b/timecost/m8/tabpfgen/tabpfgen-m8-20260501_041014/tabpfgen_meta.json new file mode 100644 index 0000000000000000000000000000000000000000..5d2d274c29f58951749fc387b61f9ceae0b38c4f --- /dev/null +++ b/timecost/m8/tabpfgen/tabpfgen-m8-20260501_041014/tabpfgen_meta.json @@ -0,0 +1,9 @@ +{ + "csv_path": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/m8/tabpfgen/tabpfgen-m8-20260501_041014/staged/public/train.csv", + "json_path": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/m8/tabpfgen/tabpfgen-m8-20260501_041014/staged/public/staged_features.json", + "target_col": "y", + "is_classification": true, + "task_type": "classification", + "n_rows": 36168, + "n_cols": 17 +} \ No newline at end of file diff --git a/timecost/m8/tabpfgen/tabpfgen-m8-20260501_041014/train_20260501_041015.log b/timecost/m8/tabpfgen/tabpfgen-m8-20260501_041014/train_20260501_041015.log new file mode 100644 index 0000000000000000000000000000000000000000..75dfdf806a4337531097c304ca46843f3c2ef6f7 --- /dev/null +++ b/timecost/m8/tabpfgen/tabpfgen-m8-20260501_041014/train_20260501_041015.log @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:adf60cf4bb06aa19e6e6234ca72b24e46110e57714d374ed37dff34ceb1a38d8 +size 595 diff --git a/timecost/m8/tabsyn/tabsyn-m8-20260501_041249/_tabsyn_sample.py b/timecost/m8/tabsyn/tabsyn-m8-20260501_041249/_tabsyn_sample.py new file mode 100644 index 0000000000000000000000000000000000000000..72470aa2de30fbca27af07b6ccf097b3a05f1aaa --- /dev/null +++ b/timecost/m8/tabsyn/tabsyn-m8-20260501_041249/_tabsyn_sample.py @@ -0,0 +1,39 @@ +import os, sys, subprocess + +work_dir = "/work/output-Benchmark-trainonly-v1/m8/tabsyn/tabsyn-m8-20260501_041249" +dataname = "tabsyn_m8" +output_csv = "/work/output-Benchmark-trainonly-v1/m8/tabsyn/tabsyn-m8-20260501_041249/tabsyn-m8-36168-20260501_052934.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 36168 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/timecost/m8/tabsyn/tabsyn-m8-20260501_041249/_tabsyn_train.py b/timecost/m8/tabsyn/tabsyn-m8-20260501_041249/_tabsyn_train.py new file mode 100644 index 0000000000000000000000000000000000000000..1d9ba5dc060c64f0a613f74a493785f1ec730055 --- /dev/null +++ b/timecost/m8/tabsyn/tabsyn-m8-20260501_041249/_tabsyn_train.py @@ -0,0 +1,65 @@ +import os, sys, subprocess + +work_dir = "/work/output-Benchmark-trainonly-v1/m8/tabsyn/tabsyn-m8-20260501_041249" +dataname = "tabsyn_m8" +tabsyn_root = "/workspace/tabsyn" + +assert os.path.exists(tabsyn_root), f"TabSyn source not mounted: {tabsyn_root}" + +old = os.environ.get("PYTHONPATH", "") +os.environ["PYTHONPATH"] = tabsyn_root + (os.pathsep + old if old else "") +sys.path.insert(0, tabsyn_root) + +os.chdir(tabsyn_root) + +# Symlink data dir into TabSyn data/ +data_link = os.path.join(tabsyn_root, "data", dataname) +data_src = os.path.join(work_dir, "data", dataname) +os.makedirs(os.path.join(tabsyn_root, "data"), exist_ok=True) +if os.path.exists(data_link): + os.remove(data_link) +os.symlink(data_src, data_link) + +env = os.environ.copy() +env.setdefault("TABSYN_RESUME", "1") +env.setdefault("TABSYN_VAE_BATCH_SIZE", "1024") +# Safer defaults for wide tables on Docker: reduce shared-memory pressure in diffusion DataLoader. +env.setdefault("TABSYN_DIFFUSION_NUM_WORKERS", "0") +_te = None +if _te is not None: + env["TABSYN_VAE_EPOCHS"] = str(_te) + env["TABSYN_DIFFUSION_MAX_EPOCHS"] = str(max(_te + 1, 2)) + +# Data preprocessing is done on the host side (_prepare_data_dir) +# which creates .npy files, train/test CSVs, and info.json + +# Step 1: Train VAE (produces latent embeddings) +print(f"[TabSyn] Step 1/2: Training VAE in {tabsyn_root}, dataname={dataname}") +ret = subprocess.run( + [sys.executable, "main.py", + "--dataname", dataname, + "--mode", "train", + "--method", "vae", + "--gpu", "0"], + cwd=tabsyn_root, + env=env +) +if ret.returncode != 0: + print("[TabSyn] VAE training failed") + sys.exit(ret.returncode) + +# Step 2: Train diffusion model on latent space +print(f"[TabSyn] Step 2/2: Training diffusion model") +ret = subprocess.run( + [sys.executable, "main.py", + "--dataname", dataname, + "--mode", "train", + "--method", "tabsyn", + "--gpu", "0"], + cwd=tabsyn_root, + env=env +) +if ret.returncode != 0: + print("[TabSyn] Diffusion training failed") + sys.exit(ret.returncode) +print("[TabSyn] Training complete (VAE + Diffusion)") diff --git a/timecost/m8/tabsyn/tabsyn-m8-20260501_041249/data/tabsyn_m8/X_cat_test.npy b/timecost/m8/tabsyn/tabsyn-m8-20260501_041249/data/tabsyn_m8/X_cat_test.npy new file mode 100644 index 0000000000000000000000000000000000000000..dfaa4e2bc4a57a6eb51233a33b8a5fd7f2f93a4a --- /dev/null +++ b/timecost/m8/tabsyn/tabsyn-m8-20260501_041249/data/tabsyn_m8/X_cat_test.npy @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:0d99902744d834e11e1488b296a6cbdc2c1f9ea547184c42c2e8e7ce08364d8f +size 2604224 diff --git a/timecost/m8/tabsyn/tabsyn-m8-20260501_041249/data/tabsyn_m8/X_cat_train.npy b/timecost/m8/tabsyn/tabsyn-m8-20260501_041249/data/tabsyn_m8/X_cat_train.npy new file mode 100644 index 0000000000000000000000000000000000000000..dfaa4e2bc4a57a6eb51233a33b8a5fd7f2f93a4a --- /dev/null +++ b/timecost/m8/tabsyn/tabsyn-m8-20260501_041249/data/tabsyn_m8/X_cat_train.npy @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:0d99902744d834e11e1488b296a6cbdc2c1f9ea547184c42c2e8e7ce08364d8f +size 2604224 diff --git a/timecost/m8/tabsyn/tabsyn-m8-20260501_041249/data/tabsyn_m8/X_num_test.npy b/timecost/m8/tabsyn/tabsyn-m8-20260501_041249/data/tabsyn_m8/X_num_test.npy new file mode 100644 index 0000000000000000000000000000000000000000..07e2a13424a0435006d25dfc6527e9c7d0d87f40 --- /dev/null +++ b/timecost/m8/tabsyn/tabsyn-m8-20260501_041249/data/tabsyn_m8/X_num_test.npy @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:ae3f0ae4e117a2087b337ccec94a15b29288bb82a257e7e365f10bae858de8ec +size 1012832 diff --git a/timecost/m8/tabsyn/tabsyn-m8-20260501_041249/data/tabsyn_m8/X_num_train.npy b/timecost/m8/tabsyn/tabsyn-m8-20260501_041249/data/tabsyn_m8/X_num_train.npy new file mode 100644 index 0000000000000000000000000000000000000000..07e2a13424a0435006d25dfc6527e9c7d0d87f40 --- /dev/null +++ b/timecost/m8/tabsyn/tabsyn-m8-20260501_041249/data/tabsyn_m8/X_num_train.npy @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:ae3f0ae4e117a2087b337ccec94a15b29288bb82a257e7e365f10bae858de8ec +size 1012832 diff --git a/timecost/m8/tabsyn/tabsyn-m8-20260501_041249/data/tabsyn_m8/info.json b/timecost/m8/tabsyn/tabsyn-m8-20260501_041249/data/tabsyn_m8/info.json new file mode 100644 index 0000000000000000000000000000000000000000..c3f2d14d0d22fdf92b24a93eefa5c9e3b85ffabe --- /dev/null +++ b/timecost/m8/tabsyn/tabsyn-m8-20260501_041249/data/tabsyn_m8/info.json @@ -0,0 +1,175 @@ +{ + "name": "tabsyn_m8", + "task_type": "multiclass", + "n_num_features": 7, + "n_cat_features": 9, + "train_size": 36168, + "num_col_idx": [ + 0, + 5, + 9, + 11, + 12, + 13, + 14 + ], + "cat_col_idx": [ + 1, + 2, + 3, + 4, + 6, + 7, + 8, + 10, + 15 + ], + "target_col_idx": [ + 16 + ], + "column_names": [ + "age", + "job", + "marital", + "education", + "default", + "balance", + "housing", + "loan", + "contact", + "day", + "month", + "duration", + "campaign", + "pdays", + "previous", + "poutcome", + "y" + ], + "train_num": 36168, + "test_num": 36168, + "header": 0, + "file_type": "csv", + "data_path": "data/tabsyn_m8/train.csv", + "test_path": null, + "idx_mapping": { + "0": 0, + "1": 7, + "2": 8, + "3": 9, + "4": 10, + "5": 1, + "6": 11, + "7": 12, + "8": 13, + "9": 2, + "10": 14, + "11": 3, + "12": 4, + "13": 5, + "14": 6, + "15": 15, + "16": 16 + }, + "inverse_idx_mapping": { + "0": 0, + "7": 1, + "8": 2, + "9": 3, + "10": 4, + "1": 5, + "11": 6, + "12": 7, + "13": 8, + "2": 9, + "14": 10, + "3": 11, + "4": 12, + "5": 13, + "6": 14, + "15": 15, + "16": 16 + }, + "idx_name_mapping": { + "0": "age", + "1": "job", + "2": "marital", + "3": "education", + "4": "default", + "5": "balance", + "6": "housing", + "7": "loan", + "8": "contact", + "9": "day", + "10": "month", + "11": "duration", + "12": "campaign", + "13": "pdays", + "14": "previous", + "15": "poutcome", + "16": "y" + }, + "n_classes": 2, + "metadata": { + "columns": { + "0": { + "sdtype": "numerical", + "computer_representation": "Float" + }, + "5": { + "sdtype": "numerical", + "computer_representation": "Float" + }, + "9": { + "sdtype": "numerical", + "computer_representation": "Float" + }, + "11": { + "sdtype": "numerical", + "computer_representation": "Float" + }, + "12": { + "sdtype": "numerical", + "computer_representation": "Float" + }, + "13": { + "sdtype": "numerical", + "computer_representation": "Float" + }, + "14": { + "sdtype": "numerical", + "computer_representation": "Float" + }, + "1": { + "sdtype": "categorical" + }, + "2": { + "sdtype": "categorical" + }, + "3": { + "sdtype": "categorical" + }, + "4": { + "sdtype": "categorical" + }, + "6": { + "sdtype": "categorical" + }, + "7": { + "sdtype": "categorical" + }, + "8": { + "sdtype": "categorical" + }, + "10": { + "sdtype": "categorical" + }, + "15": { + "sdtype": "categorical" + }, + "16": { + "sdtype": "categorical" + } + } + } +} \ No newline at end of file diff --git a/timecost/m8/tabsyn/tabsyn-m8-20260501_041249/data/tabsyn_m8/test.csv b/timecost/m8/tabsyn/tabsyn-m8-20260501_041249/data/tabsyn_m8/test.csv new file mode 100644 index 0000000000000000000000000000000000000000..44cd29cdd5c0e75c20ba36c44bfed638f201bd80 --- /dev/null +++ b/timecost/m8/tabsyn/tabsyn-m8-20260501_041249/data/tabsyn_m8/test.csv @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:cdc5149d307f77856b6f8cbae97f18207710c0064c46e5739daa1c43f90c5520 +size 1477989 diff --git a/timecost/m8/tabsyn/tabsyn-m8-20260501_041249/data/tabsyn_m8/train.csv b/timecost/m8/tabsyn/tabsyn-m8-20260501_041249/data/tabsyn_m8/train.csv new file mode 100644 index 0000000000000000000000000000000000000000..44cd29cdd5c0e75c20ba36c44bfed638f201bd80 --- /dev/null +++ b/timecost/m8/tabsyn/tabsyn-m8-20260501_041249/data/tabsyn_m8/train.csv @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:cdc5149d307f77856b6f8cbae97f18207710c0064c46e5739daa1c43f90c5520 +size 1477989 diff --git a/timecost/m8/tabsyn/tabsyn-m8-20260501_041249/data/tabsyn_m8/y_test.npy b/timecost/m8/tabsyn/tabsyn-m8-20260501_041249/data/tabsyn_m8/y_test.npy new file mode 100644 index 0000000000000000000000000000000000000000..bedcf4a6160c15821102e035cbae3cbfa745079f --- /dev/null +++ b/timecost/m8/tabsyn/tabsyn-m8-20260501_041249/data/tabsyn_m8/y_test.npy @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:74f6246e11cd7ba7516e86bf76417238742606a96289051c28a232e999d4a04f +size 289472 diff --git a/timecost/m8/tabsyn/tabsyn-m8-20260501_041249/data/tabsyn_m8/y_train.npy b/timecost/m8/tabsyn/tabsyn-m8-20260501_041249/data/tabsyn_m8/y_train.npy new file mode 100644 index 0000000000000000000000000000000000000000..bedcf4a6160c15821102e035cbae3cbfa745079f --- /dev/null +++ b/timecost/m8/tabsyn/tabsyn-m8-20260501_041249/data/tabsyn_m8/y_train.npy @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:74f6246e11cd7ba7516e86bf76417238742606a96289051c28a232e999d4a04f +size 289472 diff --git a/timecost/m8/tabsyn/tabsyn-m8-20260501_041249/gen_20260501_052934.log b/timecost/m8/tabsyn/tabsyn-m8-20260501_041249/gen_20260501_052934.log new file mode 100644 index 0000000000000000000000000000000000000000..3509bc02d5d32d7c9d4059ff524319bd568d867d --- /dev/null +++ b/timecost/m8/tabsyn/tabsyn-m8-20260501_041249/gen_20260501_052934.log @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:993a411b32764a0c562dd7b86a30cdabacd40d364efdffd8d8e646c0cd54dac8 +size 944 diff --git a/timecost/m8/tabsyn/tabsyn-m8-20260501_041249/input_snapshot.json b/timecost/m8/tabsyn/tabsyn-m8-20260501_041249/input_snapshot.json new file mode 100644 index 0000000000000000000000000000000000000000..fb0c42e475e34706a8a778875e8cd9fd19e6839c --- /dev/null +++ b/timecost/m8/tabsyn/tabsyn-m8-20260501_041249/input_snapshot.json @@ -0,0 +1,36 @@ +{ + "dataset_id": "m8", + "model": "tabsyn", + "inputs": { + "train_csv": { + "path": "/data/jialinzhang/SynthesizePipeline-server/DatasetNew/m8/m8-train.csv", + "exists": true, + "size": 2964802, + "sha256": "f9cbb71aa793de19869a138d41aea5808f772b31082741b185ffb8ca7b821833" + }, + "val_csv": { + "path": "/data/jialinzhang/SynthesizePipeline-server/DatasetNew/m8/m8-val.csv", + "exists": true, + "size": 370535, + "sha256": "5ee8612128aae92155906abc0fdc752ac24fd04d63c78c080c89e3900efe6525" + }, + "test_csv": { + "path": "/data/jialinzhang/SynthesizePipeline-server/DatasetNew/m8/m8-test.csv", + "exists": true, + "size": 370991, + "sha256": "6221943e422e75c8317b79b7ef93e9cd01f61fdd8de6ce42909a8e4610966310" + }, + "profile_json": { + "path": "/data/jialinzhang/SynthesizePipeline-server/DatasetNew/artifacts/data_core/tabular/m8/m8-dataset_profile.json", + "exists": true, + "size": 6553, + "sha256": "44f883858641584035a0a8859cb95dbcd3a023c03cbc76931aadfc4c70ef871f" + }, + "contract_json": { + "path": "/data/jialinzhang/SynthesizePipeline-server/DatasetNew/artifacts/data_core/tabular/m8/m8-dataset_contract_v1.json", + "exists": true, + "size": 8214, + "sha256": "e76df134780ec9b6c6c625a54e5d0c1935e9f4a7d09320ad19279a0492438d92" + } + } +} \ No newline at end of file diff --git a/timecost/m8/tabsyn/tabsyn-m8-20260501_041249/public_gate/normalized_schema_snapshot.json b/timecost/m8/tabsyn/tabsyn-m8-20260501_041249/public_gate/normalized_schema_snapshot.json new file mode 100644 index 0000000000000000000000000000000000000000..5e616edd2b7924c5e07f02ccbbb842529655f52a --- /dev/null +++ b/timecost/m8/tabsyn/tabsyn-m8-20260501_041249/public_gate/normalized_schema_snapshot.json @@ -0,0 +1,346 @@ +{ + "dataset_id": "m8", + "target_column": "y", + "task_type": "classification", + "columns": [ + { + "name": "age", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 76, + "unique_ratio": 0.002101, + "example_values": [ + "40", + "52", + "31", + "51", + "44" + ] + } + }, + { + "name": "job", + "role": "feature", + "semantic_type": "categorical", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 12, + "unique_ratio": 0.000332, + "example_values": [ + "admin.", + "technician", + "entrepreneur", + "blue-collar", + "services" + ] + } + }, + { + "name": "marital", + "role": "feature", + "semantic_type": "categorical", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 3, + "unique_ratio": 8.3e-05, + "example_values": [ + "single", + "married", + "divorced" + ] + } + }, + { + "name": "education", + "role": "feature", + "semantic_type": "categorical", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 4, + "unique_ratio": 0.000111, + "example_values": [ + "secondary", + "tertiary", + "primary", + "unknown" + ] + } + }, + { + "name": "default", + "role": "feature", + "semantic_type": "boolean", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 2, + "unique_ratio": 5.5e-05, + "example_values": [ + "no", + "yes" + ] + } + }, + { + "name": "balance", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 6604, + "unique_ratio": 0.182592, + "example_values": [ + "419", + "31", + "7567", + "315", + "737" + ] + } + }, + { + "name": "housing", + "role": "feature", + "semantic_type": "boolean", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 2, + "unique_ratio": 5.5e-05, + "example_values": [ + "no", + "yes" + ] + } + }, + { + "name": "loan", + "role": "feature", + "semantic_type": "boolean", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 2, + "unique_ratio": 5.5e-05, + "example_values": [ + "yes", + "no" + ] + } + }, + { + "name": "contact", + "role": "feature", + "semantic_type": "categorical", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 3, + "unique_ratio": 8.3e-05, + "example_values": [ + "cellular", + "unknown", + "telephone" + ] + } + }, + { + "name": "day", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 31, + "unique_ratio": 0.000857, + "example_values": [ + "28", + "7", + "11", + "12", + "14" + ] + } + }, + { + "name": "month", + "role": "feature", + "semantic_type": "categorical", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 12, + "unique_ratio": 0.000332, + "example_values": [ + "jul", + "may", + "aug", + "oct", + "feb" + ] + } + }, + { + "name": "duration", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 1507, + "unique_ratio": 0.041667, + "example_values": [ + "100", + "120", + "70", + "291", + "102" + ] + } + }, + { + "name": "campaign", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 47, + "unique_ratio": 0.001299, + "example_values": [ + "16", + "1", + "2", + "5", + "4" + ] + } + }, + { + "name": "pdays", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 524, + "unique_ratio": 0.014488, + "example_values": [ + "-1", + "91", + "365", + "189", + "117" + ] + } + }, + { + "name": "previous", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 38, + "unique_ratio": 0.001051, + "example_values": [ + "0", + "4", + "1", + "2", + "3" + ] + } + }, + { + "name": "poutcome", + "role": "feature", + "semantic_type": "categorical", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 4, + "unique_ratio": 0.000111, + "example_values": [ + "unknown", + "failure", + "other", + "success" + ] + } + }, + { + "name": "y", + "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": 5.5e-05, + "example_values": [ + "no", + "yes" + ] + } + } + ] +} \ No newline at end of file diff --git a/timecost/m8/tabsyn/tabsyn-m8-20260501_041249/public_gate/public_gate_report.json b/timecost/m8/tabsyn/tabsyn-m8-20260501_041249/public_gate/public_gate_report.json new file mode 100644 index 0000000000000000000000000000000000000000..318ead0018618096d718d3ec1140561db7e0a70f --- /dev/null +++ b/timecost/m8/tabsyn/tabsyn-m8-20260501_041249/public_gate/public_gate_report.json @@ -0,0 +1,37 @@ +{ + "dataset_id": "m8", + "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": "y", + "task_type": "classification", + "input_splits": { + "train": "/data/jialinzhang/SynthesizePipeline-server/DatasetNew/m8/m8-train.csv", + "val": "/data/jialinzhang/SynthesizePipeline-server/DatasetNew/m8/m8-val.csv", + "test": "/data/jialinzhang/SynthesizePipeline-server/DatasetNew/m8/m8-test.csv" + } +} \ No newline at end of file diff --git a/timecost/m8/tabsyn/tabsyn-m8-20260501_041249/public_gate/staged_input_manifest.json b/timecost/m8/tabsyn/tabsyn-m8-20260501_041249/public_gate/staged_input_manifest.json new file mode 100644 index 0000000000000000000000000000000000000000..4685f874fc7ce8566c063fa9ee23e3cc6ec55b17 --- /dev/null +++ b/timecost/m8/tabsyn/tabsyn-m8-20260501_041249/public_gate/staged_input_manifest.json @@ -0,0 +1,351 @@ +{ + "dataset_id": "m8", + "target_column": "y", + "task_type": "classification", + "train_csv": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/m8/tabsyn/tabsyn-m8-20260501_041249/staged/public/train.csv", + "val_csv": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/m8/tabsyn/tabsyn-m8-20260501_041249/staged/public/val.csv", + "test_csv": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/m8/tabsyn/tabsyn-m8-20260501_041249/staged/public/test.csv", + "features_json": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/m8/tabsyn/tabsyn-m8-20260501_041249/staged/public/staged_features.json", + "public_gate_report": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/m8/tabsyn/tabsyn-m8-20260501_041249/public_gate/public_gate_report.json", + "column_schema": [ + { + "name": "age", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 76, + "unique_ratio": 0.002101, + "example_values": [ + "40", + "52", + "31", + "51", + "44" + ] + } + }, + { + "name": "job", + "role": "feature", + "semantic_type": "categorical", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 12, + "unique_ratio": 0.000332, + "example_values": [ + "admin.", + "technician", + "entrepreneur", + "blue-collar", + "services" + ] + } + }, + { + "name": "marital", + "role": "feature", + "semantic_type": "categorical", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 3, + "unique_ratio": 8.3e-05, + "example_values": [ + "single", + "married", + "divorced" + ] + } + }, + { + "name": "education", + "role": "feature", + "semantic_type": "categorical", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 4, + "unique_ratio": 0.000111, + "example_values": [ + "secondary", + "tertiary", + "primary", + "unknown" + ] + } + }, + { + "name": "default", + "role": "feature", + "semantic_type": "boolean", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 2, + "unique_ratio": 5.5e-05, + "example_values": [ + "no", + "yes" + ] + } + }, + { + "name": "balance", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 6604, + "unique_ratio": 0.182592, + "example_values": [ + "419", + "31", + "7567", + "315", + "737" + ] + } + }, + { + "name": "housing", + "role": "feature", + "semantic_type": "boolean", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 2, + "unique_ratio": 5.5e-05, + "example_values": [ + "no", + "yes" + ] + } + }, + { + "name": "loan", + "role": "feature", + "semantic_type": "boolean", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 2, + "unique_ratio": 5.5e-05, + "example_values": [ + "yes", + "no" + ] + } + }, + { + "name": "contact", + "role": "feature", + "semantic_type": "categorical", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 3, + "unique_ratio": 8.3e-05, + "example_values": [ + "cellular", + "unknown", + "telephone" + ] + } + }, + { + "name": "day", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 31, + "unique_ratio": 0.000857, + "example_values": [ + "28", + "7", + "11", + "12", + "14" + ] + } + }, + { + "name": "month", + "role": "feature", + "semantic_type": "categorical", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 12, + "unique_ratio": 0.000332, + "example_values": [ + "jul", + "may", + "aug", + "oct", + "feb" + ] + } + }, + { + "name": "duration", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 1507, + "unique_ratio": 0.041667, + "example_values": [ + "100", + "120", + "70", + "291", + "102" + ] + } + }, + { + "name": "campaign", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 47, + "unique_ratio": 0.001299, + "example_values": [ + "16", + "1", + "2", + "5", + "4" + ] + } + }, + { + "name": "pdays", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 524, + "unique_ratio": 0.014488, + "example_values": [ + "-1", + "91", + "365", + "189", + "117" + ] + } + }, + { + "name": "previous", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 38, + "unique_ratio": 0.001051, + "example_values": [ + "0", + "4", + "1", + "2", + "3" + ] + } + }, + { + "name": "poutcome", + "role": "feature", + "semantic_type": "categorical", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 4, + "unique_ratio": 0.000111, + "example_values": [ + "unknown", + "failure", + "other", + "success" + ] + } + }, + { + "name": "y", + "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": 5.5e-05, + "example_values": [ + "no", + "yes" + ] + } + } + ] +} \ No newline at end of file diff --git a/timecost/m8/tabsyn/tabsyn-m8-20260501_041249/runtime_result.json b/timecost/m8/tabsyn/tabsyn-m8-20260501_041249/runtime_result.json new file mode 100644 index 0000000000000000000000000000000000000000..9ec3c2ebaac17498f1d788780deaf8638058dc0c --- /dev/null +++ b/timecost/m8/tabsyn/tabsyn-m8-20260501_041249/runtime_result.json @@ -0,0 +1,27 @@ +{ + "dataset_id": "m8", + "model": "tabsyn", + "run_id": "tabsyn-m8-20260501_041249", + "public_gate_status": "pass", + "adapter_ready_status": "pass", + "train_status": "success", + "generate_status": "success", + "reason_code": null, + "reason_detail": null, + "artifacts": { + "synthetic_csv": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/m8/tabsyn/tabsyn-m8-20260501_041249/tabsyn-m8-36168-20260501_052934.csv", + "model_path": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/m8/tabsyn/tabsyn-m8-20260501_041249" + }, + "timings": { + "train": { + "started_at": "2026-05-01T04:12:49", + "ended_at": "2026-05-01T05:29:34", + "duration_sec": 4604.757 + }, + "generate": { + "started_at": "2026-05-01T05:29:34", + "ended_at": "2026-05-01T05:29:42", + "duration_sec": 8.454 + } + } +} \ No newline at end of file diff --git a/timecost/m8/tabsyn/tabsyn-m8-20260501_041249/staged/public/staged_features.json b/timecost/m8/tabsyn/tabsyn-m8-20260501_041249/staged/public/staged_features.json new file mode 100644 index 0000000000000000000000000000000000000000..11323e8dc5c8a2eaafa8e404e60d3db7e244452a --- /dev/null +++ b/timecost/m8/tabsyn/tabsyn-m8-20260501_041249/staged/public/staged_features.json @@ -0,0 +1,87 @@ +[ + { + "feature_name": "age", + "data_type": "continuous", + "is_target": false + }, + { + "feature_name": "job", + "data_type": "categorical", + "is_target": false + }, + { + "feature_name": "marital", + "data_type": "categorical", + "is_target": false + }, + { + "feature_name": "education", + "data_type": "categorical", + "is_target": false + }, + { + "feature_name": "default", + "data_type": "binary", + "is_target": false + }, + { + "feature_name": "balance", + "data_type": "continuous", + "is_target": false + }, + { + "feature_name": "housing", + "data_type": "binary", + "is_target": false + }, + { + "feature_name": "loan", + "data_type": "binary", + "is_target": false + }, + { + "feature_name": "contact", + "data_type": "categorical", + "is_target": false + }, + { + "feature_name": "day", + "data_type": "continuous", + "is_target": false + }, + { + "feature_name": "month", + "data_type": "categorical", + "is_target": false + }, + { + "feature_name": "duration", + "data_type": "continuous", + "is_target": false + }, + { + "feature_name": "campaign", + "data_type": "continuous", + "is_target": false + }, + { + "feature_name": "pdays", + "data_type": "continuous", + "is_target": false + }, + { + "feature_name": "previous", + "data_type": "continuous", + "is_target": false + }, + { + "feature_name": "poutcome", + "data_type": "categorical", + "is_target": false + }, + { + "feature_name": "y", + "data_type": "binary", + "is_target": true + } +] \ No newline at end of file diff --git a/timecost/m8/tabsyn/tabsyn-m8-20260501_041249/staged/public/test.csv b/timecost/m8/tabsyn/tabsyn-m8-20260501_041249/staged/public/test.csv new file mode 100644 index 0000000000000000000000000000000000000000..e1c4866e541b88f8bcd3b88381c7e56d4df06443 --- /dev/null +++ b/timecost/m8/tabsyn/tabsyn-m8-20260501_041249/staged/public/test.csv @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:6221943e422e75c8317b79b7ef93e9cd01f61fdd8de6ce42909a8e4610966310 +size 370991 diff --git a/timecost/m8/tabsyn/tabsyn-m8-20260501_041249/staged/public/train.csv b/timecost/m8/tabsyn/tabsyn-m8-20260501_041249/staged/public/train.csv new file mode 100644 index 0000000000000000000000000000000000000000..fd7d8791840b6811b098820db4ed9e74cf5d627a --- /dev/null +++ b/timecost/m8/tabsyn/tabsyn-m8-20260501_041249/staged/public/train.csv @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:f9cbb71aa793de19869a138d41aea5808f772b31082741b185ffb8ca7b821833 +size 2964802 diff --git a/timecost/m8/tabsyn/tabsyn-m8-20260501_041249/staged/public/val.csv b/timecost/m8/tabsyn/tabsyn-m8-20260501_041249/staged/public/val.csv new file mode 100644 index 0000000000000000000000000000000000000000..09f0041420455c56eb1f79c62940d135e8bc6ea3 --- /dev/null +++ b/timecost/m8/tabsyn/tabsyn-m8-20260501_041249/staged/public/val.csv @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:5ee8612128aae92155906abc0fdc752ac24fd04d63c78c080c89e3900efe6525 +size 370535 diff --git a/timecost/m8/tabsyn/tabsyn-m8-20260501_041249/staged/tabsyn/adapter_report.json b/timecost/m8/tabsyn/tabsyn-m8-20260501_041249/staged/tabsyn/adapter_report.json new file mode 100644 index 0000000000000000000000000000000000000000..388a40bccee1fb715d6f5af653b7781693873fe2 --- /dev/null +++ b/timecost/m8/tabsyn/tabsyn-m8-20260501_041249/staged/tabsyn/adapter_report.json @@ -0,0 +1,7 @@ +{ + "adapter_ready_status": "pass", + "adapter_fail_reason_code": null, + "adapter_fail_detail": null, + "adapter_transforms_applied": [], + "model_input_manifest": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/m8/tabsyn/tabsyn-m8-20260501_041249/staged/tabsyn/model_input_manifest.json" +} \ No newline at end of file diff --git a/timecost/m8/tabsyn/tabsyn-m8-20260501_041249/staged/tabsyn/adapter_transforms_applied.json b/timecost/m8/tabsyn/tabsyn-m8-20260501_041249/staged/tabsyn/adapter_transforms_applied.json new file mode 100644 index 0000000000000000000000000000000000000000..0637a088a01e8ddab3bf3fa98dbe804cbde1a0dc --- /dev/null +++ b/timecost/m8/tabsyn/tabsyn-m8-20260501_041249/staged/tabsyn/adapter_transforms_applied.json @@ -0,0 +1 @@ +[] \ No newline at end of file diff --git a/timecost/m8/tabsyn/tabsyn-m8-20260501_041249/staged/tabsyn/model_input_manifest.json b/timecost/m8/tabsyn/tabsyn-m8-20260501_041249/staged/tabsyn/model_input_manifest.json new file mode 100644 index 0000000000000000000000000000000000000000..7535b03cacafe12dc508e0aebd135f9fadc44a80 --- /dev/null +++ b/timecost/m8/tabsyn/tabsyn-m8-20260501_041249/staged/tabsyn/model_input_manifest.json @@ -0,0 +1,353 @@ +{ + "dataset_id": "m8", + "model": "tabsyn", + "target_column": "y", + "task_type": "classification", + "column_schema": [ + { + "name": "age", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 76, + "unique_ratio": 0.002101, + "example_values": [ + "40", + "52", + "31", + "51", + "44" + ] + } + }, + { + "name": "job", + "role": "feature", + "semantic_type": "categorical", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 12, + "unique_ratio": 0.000332, + "example_values": [ + "admin.", + "technician", + "entrepreneur", + "blue-collar", + "services" + ] + } + }, + { + "name": "marital", + "role": "feature", + "semantic_type": "categorical", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 3, + "unique_ratio": 8.3e-05, + "example_values": [ + "single", + "married", + "divorced" + ] + } + }, + { + "name": "education", + "role": "feature", + "semantic_type": "categorical", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 4, + "unique_ratio": 0.000111, + "example_values": [ + "secondary", + "tertiary", + "primary", + "unknown" + ] + } + }, + { + "name": "default", + "role": "feature", + "semantic_type": "boolean", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 2, + "unique_ratio": 5.5e-05, + "example_values": [ + "no", + "yes" + ] + } + }, + { + "name": "balance", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 6604, + "unique_ratio": 0.182592, + "example_values": [ + "419", + "31", + "7567", + "315", + "737" + ] + } + }, + { + "name": "housing", + "role": "feature", + "semantic_type": "boolean", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 2, + "unique_ratio": 5.5e-05, + "example_values": [ + "no", + "yes" + ] + } + }, + { + "name": "loan", + "role": "feature", + "semantic_type": "boolean", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 2, + "unique_ratio": 5.5e-05, + "example_values": [ + "yes", + "no" + ] + } + }, + { + "name": "contact", + "role": "feature", + "semantic_type": "categorical", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 3, + "unique_ratio": 8.3e-05, + "example_values": [ + "cellular", + "unknown", + "telephone" + ] + } + }, + { + "name": "day", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 31, + "unique_ratio": 0.000857, + "example_values": [ + "28", + "7", + "11", + "12", + "14" + ] + } + }, + { + "name": "month", + "role": "feature", + "semantic_type": "categorical", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 12, + "unique_ratio": 0.000332, + "example_values": [ + "jul", + "may", + "aug", + "oct", + "feb" + ] + } + }, + { + "name": "duration", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 1507, + "unique_ratio": 0.041667, + "example_values": [ + "100", + "120", + "70", + "291", + "102" + ] + } + }, + { + "name": "campaign", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 47, + "unique_ratio": 0.001299, + "example_values": [ + "16", + "1", + "2", + "5", + "4" + ] + } + }, + { + "name": "pdays", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 524, + "unique_ratio": 0.014488, + "example_values": [ + "-1", + "91", + "365", + "189", + "117" + ] + } + }, + { + "name": "previous", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 38, + "unique_ratio": 0.001051, + "example_values": [ + "0", + "4", + "1", + "2", + "3" + ] + } + }, + { + "name": "poutcome", + "role": "feature", + "semantic_type": "categorical", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 4, + "unique_ratio": 0.000111, + "example_values": [ + "unknown", + "failure", + "other", + "success" + ] + } + }, + { + "name": "y", + "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": 5.5e-05, + "example_values": [ + "no", + "yes" + ] + } + } + ], + "public_manifest": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/m8/tabsyn/tabsyn-m8-20260501_041249/public_gate/staged_input_manifest.json", + "train_csv": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/m8/tabsyn/tabsyn-m8-20260501_041249/staged/public/train.csv", + "val_csv": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/m8/tabsyn/tabsyn-m8-20260501_041249/staged/public/val.csv", + "test_csv": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/m8/tabsyn/tabsyn-m8-20260501_041249/staged/public/test.csv", + "features_json": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/m8/tabsyn/tabsyn-m8-20260501_041249/staged/public/staged_features.json", + "public_gate_report": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/m8/tabsyn/tabsyn-m8-20260501_041249/public_gate/public_gate_report.json" +} \ No newline at end of file diff --git a/timecost/m8/tabsyn/tabsyn-m8-20260501_041249/synthetic/tabsyn_m8/real.csv b/timecost/m8/tabsyn/tabsyn-m8-20260501_041249/synthetic/tabsyn_m8/real.csv new file mode 100644 index 0000000000000000000000000000000000000000..44cd29cdd5c0e75c20ba36c44bfed638f201bd80 --- /dev/null +++ b/timecost/m8/tabsyn/tabsyn-m8-20260501_041249/synthetic/tabsyn_m8/real.csv @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:cdc5149d307f77856b6f8cbae97f18207710c0064c46e5739daa1c43f90c5520 +size 1477989 diff --git a/timecost/m8/tabsyn/tabsyn-m8-20260501_041249/synthetic/tabsyn_m8/test.csv b/timecost/m8/tabsyn/tabsyn-m8-20260501_041249/synthetic/tabsyn_m8/test.csv new file mode 100644 index 0000000000000000000000000000000000000000..44cd29cdd5c0e75c20ba36c44bfed638f201bd80 --- /dev/null +++ b/timecost/m8/tabsyn/tabsyn-m8-20260501_041249/synthetic/tabsyn_m8/test.csv @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:cdc5149d307f77856b6f8cbae97f18207710c0064c46e5739daa1c43f90c5520 +size 1477989 diff --git a/timecost/m8/tabsyn/tabsyn-m8-20260501_041249/tabsyn-m8-36168-20260501_052934.csv b/timecost/m8/tabsyn/tabsyn-m8-20260501_041249/tabsyn-m8-36168-20260501_052934.csv new file mode 100644 index 0000000000000000000000000000000000000000..d00b58fd41221ed73c8caa5b17819223e06bb4b8 --- /dev/null +++ b/timecost/m8/tabsyn/tabsyn-m8-20260501_041249/tabsyn-m8-36168-20260501_052934.csv @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:062fb3b5291c3be1fbab46c6272ff4fb6a4bafd526df1c6986d5e1436a644848 +size 2214719 diff --git a/timecost/m8/tabsyn/tabsyn-m8-20260501_041249/train_20260501_041250.log b/timecost/m8/tabsyn/tabsyn-m8-20260501_041249/train_20260501_041250.log new file mode 100644 index 0000000000000000000000000000000000000000..2616afb916a485273206f1e68a181d57d1bdc4b0 --- /dev/null +++ b/timecost/m8/tabsyn/tabsyn-m8-20260501_041249/train_20260501_041250.log @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:bca6471647633c03de726a570dd88454c7ca77e42c73cc12c9cc51c1cf6049eb +size 5116388 diff --git a/timecost/m8/tvae/tvae-m8-20260501_055847/_tvae_generate.py b/timecost/m8/tvae/tvae-m8-20260501_055847/_tvae_generate.py new file mode 100644 index 0000000000000000000000000000000000000000..f47b334efe1734d573bbf45d3fafae0128d146c6 --- /dev/null +++ b/timecost/m8/tvae/tvae-m8-20260501_055847/_tvae_generate.py @@ -0,0 +1,23 @@ +import os, sys +sys.path.insert(0, "/work") +from src.SpecificModels.ctgan_joblib_parallel_cap import apply_parallel_cap_from_env +apply_parallel_cap_from_env() +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 +os.environ.setdefault("LOKY_MAX_CPU_COUNT", "8") +os.environ.setdefault("OPENBLAS_NUM_THREADS", "8") +os.environ.setdefault("MKL_NUM_THREADS", "8") +model = TVAE.load("/work/output-Benchmark-trainonly-v1/m8/tvae/tvae-m8-20260501_055847/models_300epochs/tvae_300epochs.pt") +total = 36168 +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-Benchmark-trainonly-v1/m8/tvae/tvae-m8-20260501_055847/tvae-m8-36168-20260501_060307.csv", index=False) +print(f"[TVAE] Generated {total} rows (chunks={len(parts)}) -> /work/output-Benchmark-trainonly-v1/m8/tvae/tvae-m8-20260501_055847/tvae-m8-36168-20260501_060307.csv") diff --git a/timecost/m8/tvae/tvae-m8-20260501_055847/_tvae_train.py b/timecost/m8/tvae/tvae-m8-20260501_055847/_tvae_train.py new file mode 100644 index 0000000000000000000000000000000000000000..69eef92bbb44aaab7bb99b98a6d725b1f7f45645 --- /dev/null +++ b/timecost/m8/tvae/tvae-m8-20260501_055847/_tvae_train.py @@ -0,0 +1,30 @@ +import json, os, sys +sys.path.insert(0, "/work") +from src.SpecificModels.ctgan_joblib_parallel_cap import apply_parallel_cap_from_env +apply_parallel_cap_from_env() +import pandas as pd +from ctgan.data import read_csv +from ctgan.synthesizers.tvae import TVAE + +# Keep transform stage parallelism bounded for stability on shared host. +os.environ.setdefault("LOKY_MAX_CPU_COUNT", "8") +os.environ.setdefault("OPENBLAS_NUM_THREADS", "8") +os.environ.setdefault("MKL_NUM_THREADS", "8") +_nj = (os.environ.get("TVAE_CTGAN_JOBTRANS_N_JOBS") or "").strip() +if _nj: + print("[TVAE] joblib Parallel cap ON, TVAE_CTGAN_JOBTRANS_N_JOBS=" + _nj) +else: + print("[TVAE] joblib Parallel cap OFF (unset TVAE_CTGAN_JOBTRANS_N_JOBS)") +print("[TVAE] LOKY_MAX_CPU_COUNT=" + str(os.environ.get("LOKY_MAX_CPU_COUNT", ""))) + +csv_path = "/work/output-Benchmark-trainonly-v1/m8/tvae/tvae-m8-20260501_055847/staged/public/train.csv" +meta_path = "/work/output-Benchmark-trainonly-v1/m8/tvae/tvae-m8-20260501_055847/tvae_metadata.json" +save_path = "/work/output-Benchmark-trainonly-v1/m8/tvae/tvae-m8-20260501_055847/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/timecost/m8/tvae/tvae-m8-20260501_055847/gen_20260501_060307.log b/timecost/m8/tvae/tvae-m8-20260501_055847/gen_20260501_060307.log new file mode 100644 index 0000000000000000000000000000000000000000..07b374bf268db958ab89fd4172f989abee2f50c8 --- /dev/null +++ b/timecost/m8/tvae/tvae-m8-20260501_055847/gen_20260501_060307.log @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:178a801c5e38643c3ac46d8b92c798424648b05e57d99eb37979e38c392b3331 +size 406 diff --git a/timecost/m8/tvae/tvae-m8-20260501_055847/input_snapshot.json b/timecost/m8/tvae/tvae-m8-20260501_055847/input_snapshot.json new file mode 100644 index 0000000000000000000000000000000000000000..bcb7e1b12eb711001b34b13d667b25bea1fd4143 --- /dev/null +++ b/timecost/m8/tvae/tvae-m8-20260501_055847/input_snapshot.json @@ -0,0 +1,36 @@ +{ + "dataset_id": "m8", + "model": "tvae", + "inputs": { + "train_csv": { + "path": "/data/jialinzhang/SynthesizePipeline-server/DatasetNew/m8/m8-train.csv", + "exists": true, + "size": 2964802, + "sha256": "f9cbb71aa793de19869a138d41aea5808f772b31082741b185ffb8ca7b821833" + }, + "val_csv": { + "path": "/data/jialinzhang/SynthesizePipeline-server/DatasetNew/m8/m8-val.csv", + "exists": true, + "size": 370535, + "sha256": "5ee8612128aae92155906abc0fdc752ac24fd04d63c78c080c89e3900efe6525" + }, + "test_csv": { + "path": "/data/jialinzhang/SynthesizePipeline-server/DatasetNew/m8/m8-test.csv", + "exists": true, + "size": 370991, + "sha256": "6221943e422e75c8317b79b7ef93e9cd01f61fdd8de6ce42909a8e4610966310" + }, + "profile_json": { + "path": "/data/jialinzhang/SynthesizePipeline-server/DatasetNew/artifacts/data_core/tabular/m8/m8-dataset_profile.json", + "exists": true, + "size": 6553, + "sha256": "44f883858641584035a0a8859cb95dbcd3a023c03cbc76931aadfc4c70ef871f" + }, + "contract_json": { + "path": "/data/jialinzhang/SynthesizePipeline-server/DatasetNew/artifacts/data_core/tabular/m8/m8-dataset_contract_v1.json", + "exists": true, + "size": 8214, + "sha256": "e76df134780ec9b6c6c625a54e5d0c1935e9f4a7d09320ad19279a0492438d92" + } + } +} \ No newline at end of file diff --git a/timecost/m8/tvae/tvae-m8-20260501_055847/models_300epochs/train_20260501_055847.log b/timecost/m8/tvae/tvae-m8-20260501_055847/models_300epochs/train_20260501_055847.log new file mode 100644 index 0000000000000000000000000000000000000000..6133ad7d7ab48e6f6d2b2d7e4e87cbacf5b4b91c --- /dev/null +++ b/timecost/m8/tvae/tvae-m8-20260501_055847/models_300epochs/train_20260501_055847.log @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:4ab01e5b026033ca675c354883d94ba705e6ebdda5e7468552ed5c712e682803 +size 534 diff --git a/timecost/m8/tvae/tvae-m8-20260501_055847/models_300epochs/tvae_300epochs.pt b/timecost/m8/tvae/tvae-m8-20260501_055847/models_300epochs/tvae_300epochs.pt new file mode 100644 index 0000000000000000000000000000000000000000..c224eed937039daa1b52090a44f65b1ae9ffea59 --- /dev/null +++ b/timecost/m8/tvae/tvae-m8-20260501_055847/models_300epochs/tvae_300epochs.pt @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:40d98c4f727dab4f20ea419a7cf2e9a4803b1cf08526b24dab806ad1984d5afc +size 1252844 diff --git a/timecost/m8/tvae/tvae-m8-20260501_055847/public_gate/normalized_schema_snapshot.json b/timecost/m8/tvae/tvae-m8-20260501_055847/public_gate/normalized_schema_snapshot.json new file mode 100644 index 0000000000000000000000000000000000000000..5e616edd2b7924c5e07f02ccbbb842529655f52a --- /dev/null +++ b/timecost/m8/tvae/tvae-m8-20260501_055847/public_gate/normalized_schema_snapshot.json @@ -0,0 +1,346 @@ +{ + "dataset_id": "m8", + "target_column": "y", + "task_type": "classification", + "columns": [ + { + "name": "age", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 76, + "unique_ratio": 0.002101, + "example_values": [ + "40", + "52", + "31", + "51", + "44" + ] + } + }, + { + "name": "job", + "role": "feature", + "semantic_type": "categorical", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 12, + "unique_ratio": 0.000332, + "example_values": [ + "admin.", + "technician", + "entrepreneur", + "blue-collar", + "services" + ] + } + }, + { + "name": "marital", + "role": "feature", + "semantic_type": "categorical", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 3, + "unique_ratio": 8.3e-05, + "example_values": [ + "single", + "married", + "divorced" + ] + } + }, + { + "name": "education", + "role": "feature", + "semantic_type": "categorical", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 4, + "unique_ratio": 0.000111, + "example_values": [ + "secondary", + "tertiary", + "primary", + "unknown" + ] + } + }, + { + "name": "default", + "role": "feature", + "semantic_type": "boolean", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 2, + "unique_ratio": 5.5e-05, + "example_values": [ + "no", + "yes" + ] + } + }, + { + "name": "balance", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 6604, + "unique_ratio": 0.182592, + "example_values": [ + "419", + "31", + "7567", + "315", + "737" + ] + } + }, + { + "name": "housing", + "role": "feature", + "semantic_type": "boolean", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 2, + "unique_ratio": 5.5e-05, + "example_values": [ + "no", + "yes" + ] + } + }, + { + "name": "loan", + "role": "feature", + "semantic_type": "boolean", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 2, + "unique_ratio": 5.5e-05, + "example_values": [ + "yes", + "no" + ] + } + }, + { + "name": "contact", + "role": "feature", + "semantic_type": "categorical", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 3, + "unique_ratio": 8.3e-05, + "example_values": [ + "cellular", + "unknown", + "telephone" + ] + } + }, + { + "name": "day", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 31, + "unique_ratio": 0.000857, + "example_values": [ + "28", + "7", + "11", + "12", + "14" + ] + } + }, + { + "name": "month", + "role": "feature", + "semantic_type": "categorical", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 12, + "unique_ratio": 0.000332, + "example_values": [ + "jul", + "may", + "aug", + "oct", + "feb" + ] + } + }, + { + "name": "duration", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 1507, + "unique_ratio": 0.041667, + "example_values": [ + "100", + "120", + "70", + "291", + "102" + ] + } + }, + { + "name": "campaign", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 47, + "unique_ratio": 0.001299, + "example_values": [ + "16", + "1", + "2", + "5", + "4" + ] + } + }, + { + "name": "pdays", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 524, + "unique_ratio": 0.014488, + "example_values": [ + "-1", + "91", + "365", + "189", + "117" + ] + } + }, + { + "name": "previous", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 38, + "unique_ratio": 0.001051, + "example_values": [ + "0", + "4", + "1", + "2", + "3" + ] + } + }, + { + "name": "poutcome", + "role": "feature", + "semantic_type": "categorical", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 4, + "unique_ratio": 0.000111, + "example_values": [ + "unknown", + "failure", + "other", + "success" + ] + } + }, + { + "name": "y", + "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": 5.5e-05, + "example_values": [ + "no", + "yes" + ] + } + } + ] +} \ No newline at end of file diff --git a/timecost/m8/tvae/tvae-m8-20260501_055847/public_gate/public_gate_report.json b/timecost/m8/tvae/tvae-m8-20260501_055847/public_gate/public_gate_report.json new file mode 100644 index 0000000000000000000000000000000000000000..318ead0018618096d718d3ec1140561db7e0a70f --- /dev/null +++ b/timecost/m8/tvae/tvae-m8-20260501_055847/public_gate/public_gate_report.json @@ -0,0 +1,37 @@ +{ + "dataset_id": "m8", + "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": "y", + "task_type": "classification", + "input_splits": { + "train": "/data/jialinzhang/SynthesizePipeline-server/DatasetNew/m8/m8-train.csv", + "val": "/data/jialinzhang/SynthesizePipeline-server/DatasetNew/m8/m8-val.csv", + "test": "/data/jialinzhang/SynthesizePipeline-server/DatasetNew/m8/m8-test.csv" + } +} \ No newline at end of file diff --git a/timecost/m8/tvae/tvae-m8-20260501_055847/public_gate/staged_input_manifest.json b/timecost/m8/tvae/tvae-m8-20260501_055847/public_gate/staged_input_manifest.json new file mode 100644 index 0000000000000000000000000000000000000000..c7b268a4769d9364444095855ca9f3ba8d57a54b --- /dev/null +++ b/timecost/m8/tvae/tvae-m8-20260501_055847/public_gate/staged_input_manifest.json @@ -0,0 +1,351 @@ +{ + "dataset_id": "m8", + "target_column": "y", + "task_type": "classification", + "train_csv": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/m8/tvae/tvae-m8-20260501_055847/staged/public/train.csv", + "val_csv": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/m8/tvae/tvae-m8-20260501_055847/staged/public/val.csv", + "test_csv": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/m8/tvae/tvae-m8-20260501_055847/staged/public/test.csv", + "features_json": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/m8/tvae/tvae-m8-20260501_055847/staged/public/staged_features.json", + "public_gate_report": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/m8/tvae/tvae-m8-20260501_055847/public_gate/public_gate_report.json", + "column_schema": [ + { + "name": "age", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 76, + "unique_ratio": 0.002101, + "example_values": [ + "40", + "52", + "31", + "51", + "44" + ] + } + }, + { + "name": "job", + "role": "feature", + "semantic_type": "categorical", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 12, + "unique_ratio": 0.000332, + "example_values": [ + "admin.", + "technician", + "entrepreneur", + "blue-collar", + "services" + ] + } + }, + { + "name": "marital", + "role": "feature", + "semantic_type": "categorical", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 3, + "unique_ratio": 8.3e-05, + "example_values": [ + "single", + "married", + "divorced" + ] + } + }, + { + "name": "education", + "role": "feature", + "semantic_type": "categorical", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 4, + "unique_ratio": 0.000111, + "example_values": [ + "secondary", + "tertiary", + "primary", + "unknown" + ] + } + }, + { + "name": "default", + "role": "feature", + "semantic_type": "boolean", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 2, + "unique_ratio": 5.5e-05, + "example_values": [ + "no", + "yes" + ] + } + }, + { + "name": "balance", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 6604, + "unique_ratio": 0.182592, + "example_values": [ + "419", + "31", + "7567", + "315", + "737" + ] + } + }, + { + "name": "housing", + "role": "feature", + "semantic_type": "boolean", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 2, + "unique_ratio": 5.5e-05, + "example_values": [ + "no", + "yes" + ] + } + }, + { + "name": "loan", + "role": "feature", + "semantic_type": "boolean", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 2, + "unique_ratio": 5.5e-05, + "example_values": [ + "yes", + "no" + ] + } + }, + { + "name": "contact", + "role": "feature", + "semantic_type": "categorical", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 3, + "unique_ratio": 8.3e-05, + "example_values": [ + "cellular", + "unknown", + "telephone" + ] + } + }, + { + "name": "day", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 31, + "unique_ratio": 0.000857, + "example_values": [ + "28", + "7", + "11", + "12", + "14" + ] + } + }, + { + "name": "month", + "role": "feature", + "semantic_type": "categorical", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 12, + "unique_ratio": 0.000332, + "example_values": [ + "jul", + "may", + "aug", + "oct", + "feb" + ] + } + }, + { + "name": "duration", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 1507, + "unique_ratio": 0.041667, + "example_values": [ + "100", + "120", + "70", + "291", + "102" + ] + } + }, + { + "name": "campaign", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 47, + "unique_ratio": 0.001299, + "example_values": [ + "16", + "1", + "2", + "5", + "4" + ] + } + }, + { + "name": "pdays", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 524, + "unique_ratio": 0.014488, + "example_values": [ + "-1", + "91", + "365", + "189", + "117" + ] + } + }, + { + "name": "previous", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 38, + "unique_ratio": 0.001051, + "example_values": [ + "0", + "4", + "1", + "2", + "3" + ] + } + }, + { + "name": "poutcome", + "role": "feature", + "semantic_type": "categorical", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 4, + "unique_ratio": 0.000111, + "example_values": [ + "unknown", + "failure", + "other", + "success" + ] + } + }, + { + "name": "y", + "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": 5.5e-05, + "example_values": [ + "no", + "yes" + ] + } + } + ] +} \ No newline at end of file diff --git a/timecost/m8/tvae/tvae-m8-20260501_055847/runtime_result.json b/timecost/m8/tvae/tvae-m8-20260501_055847/runtime_result.json new file mode 100644 index 0000000000000000000000000000000000000000..8dae9af0060c768d08509c85e4daac247b13da9d --- /dev/null +++ b/timecost/m8/tvae/tvae-m8-20260501_055847/runtime_result.json @@ -0,0 +1,27 @@ +{ + "dataset_id": "m8", + "model": "tvae", + "run_id": "tvae-m8-20260501_055847", + "public_gate_status": "pass", + "adapter_ready_status": "pass", + "train_status": "success", + "generate_status": "success", + "reason_code": null, + "reason_detail": null, + "artifacts": { + "synthetic_csv": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/m8/tvae/tvae-m8-20260501_055847/tvae-m8-36168-20260501_060307.csv", + "model_path": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/m8/tvae/tvae-m8-20260501_055847/models_300epochs/tvae_300epochs.pt" + }, + "timings": { + "train": { + "started_at": "2026-05-01T05:58:47", + "ended_at": "2026-05-01T06:03:07", + "duration_sec": 259.887 + }, + "generate": { + "started_at": "2026-05-01T06:03:07", + "ended_at": "2026-05-01T06:03:13", + "duration_sec": 5.677 + } + } +} \ No newline at end of file diff --git a/timecost/m8/tvae/tvae-m8-20260501_055847/staged/public/staged_features.json b/timecost/m8/tvae/tvae-m8-20260501_055847/staged/public/staged_features.json new file mode 100644 index 0000000000000000000000000000000000000000..11323e8dc5c8a2eaafa8e404e60d3db7e244452a --- /dev/null +++ b/timecost/m8/tvae/tvae-m8-20260501_055847/staged/public/staged_features.json @@ -0,0 +1,87 @@ +[ + { + "feature_name": "age", + "data_type": "continuous", + "is_target": false + }, + { + "feature_name": "job", + "data_type": "categorical", + "is_target": false + }, + { + "feature_name": "marital", + "data_type": "categorical", + "is_target": false + }, + { + "feature_name": "education", + "data_type": "categorical", + "is_target": false + }, + { + "feature_name": "default", + "data_type": "binary", + "is_target": false + }, + { + "feature_name": "balance", + "data_type": "continuous", + "is_target": false + }, + { + "feature_name": "housing", + "data_type": "binary", + "is_target": false + }, + { + "feature_name": "loan", + "data_type": "binary", + "is_target": false + }, + { + "feature_name": "contact", + "data_type": "categorical", + "is_target": false + }, + { + "feature_name": "day", + "data_type": "continuous", + "is_target": false + }, + { + "feature_name": "month", + "data_type": "categorical", + "is_target": false + }, + { + "feature_name": "duration", + "data_type": "continuous", + "is_target": false + }, + { + "feature_name": "campaign", + "data_type": "continuous", + "is_target": false + }, + { + "feature_name": "pdays", + "data_type": "continuous", + "is_target": false + }, + { + "feature_name": "previous", + "data_type": "continuous", + "is_target": false + }, + { + "feature_name": "poutcome", + "data_type": "categorical", + "is_target": false + }, + { + "feature_name": "y", + "data_type": "binary", + "is_target": true + } +] \ No newline at end of file diff --git a/timecost/m8/tvae/tvae-m8-20260501_055847/staged/public/test.csv b/timecost/m8/tvae/tvae-m8-20260501_055847/staged/public/test.csv new file mode 100644 index 0000000000000000000000000000000000000000..e1c4866e541b88f8bcd3b88381c7e56d4df06443 --- /dev/null +++ b/timecost/m8/tvae/tvae-m8-20260501_055847/staged/public/test.csv @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:6221943e422e75c8317b79b7ef93e9cd01f61fdd8de6ce42909a8e4610966310 +size 370991 diff --git a/timecost/m8/tvae/tvae-m8-20260501_055847/staged/public/train.csv b/timecost/m8/tvae/tvae-m8-20260501_055847/staged/public/train.csv new file mode 100644 index 0000000000000000000000000000000000000000..fd7d8791840b6811b098820db4ed9e74cf5d627a --- /dev/null +++ b/timecost/m8/tvae/tvae-m8-20260501_055847/staged/public/train.csv @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:f9cbb71aa793de19869a138d41aea5808f772b31082741b185ffb8ca7b821833 +size 2964802 diff --git a/timecost/m8/tvae/tvae-m8-20260501_055847/staged/public/val.csv b/timecost/m8/tvae/tvae-m8-20260501_055847/staged/public/val.csv new file mode 100644 index 0000000000000000000000000000000000000000..09f0041420455c56eb1f79c62940d135e8bc6ea3 --- /dev/null +++ b/timecost/m8/tvae/tvae-m8-20260501_055847/staged/public/val.csv @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:5ee8612128aae92155906abc0fdc752ac24fd04d63c78c080c89e3900efe6525 +size 370535 diff --git a/timecost/m8/tvae/tvae-m8-20260501_055847/staged/tvae/adapter_report.json b/timecost/m8/tvae/tvae-m8-20260501_055847/staged/tvae/adapter_report.json new file mode 100644 index 0000000000000000000000000000000000000000..9bfa1486837e2ab4c27490d06e509ef09a4f3d61 --- /dev/null +++ b/timecost/m8/tvae/tvae-m8-20260501_055847/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-Benchmark-trainonly-v1/m8/tvae/tvae-m8-20260501_055847/staged/tvae/model_input_manifest.json" +} \ No newline at end of file diff --git a/timecost/m8/tvae/tvae-m8-20260501_055847/staged/tvae/adapter_transforms_applied.json b/timecost/m8/tvae/tvae-m8-20260501_055847/staged/tvae/adapter_transforms_applied.json new file mode 100644 index 0000000000000000000000000000000000000000..0637a088a01e8ddab3bf3fa98dbe804cbde1a0dc --- /dev/null +++ b/timecost/m8/tvae/tvae-m8-20260501_055847/staged/tvae/adapter_transforms_applied.json @@ -0,0 +1 @@ +[] \ No newline at end of file diff --git a/timecost/m8/tvae/tvae-m8-20260501_055847/staged/tvae/model_input_manifest.json b/timecost/m8/tvae/tvae-m8-20260501_055847/staged/tvae/model_input_manifest.json new file mode 100644 index 0000000000000000000000000000000000000000..e7e68a0d6a36d45f3245f6d5729f394a42182605 --- /dev/null +++ b/timecost/m8/tvae/tvae-m8-20260501_055847/staged/tvae/model_input_manifest.json @@ -0,0 +1,353 @@ +{ + "dataset_id": "m8", + "model": "tvae", + "target_column": "y", + "task_type": "classification", + "column_schema": [ + { + "name": "age", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 76, + "unique_ratio": 0.002101, + "example_values": [ + "40", + "52", + "31", + "51", + "44" + ] + } + }, + { + "name": "job", + "role": "feature", + "semantic_type": "categorical", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 12, + "unique_ratio": 0.000332, + "example_values": [ + "admin.", + "technician", + "entrepreneur", + "blue-collar", + "services" + ] + } + }, + { + "name": "marital", + "role": "feature", + "semantic_type": "categorical", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 3, + "unique_ratio": 8.3e-05, + "example_values": [ + "single", + "married", + "divorced" + ] + } + }, + { + "name": "education", + "role": "feature", + "semantic_type": "categorical", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 4, + "unique_ratio": 0.000111, + "example_values": [ + "secondary", + "tertiary", + "primary", + "unknown" + ] + } + }, + { + "name": "default", + "role": "feature", + "semantic_type": "boolean", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 2, + "unique_ratio": 5.5e-05, + "example_values": [ + "no", + "yes" + ] + } + }, + { + "name": "balance", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 6604, + "unique_ratio": 0.182592, + "example_values": [ + "419", + "31", + "7567", + "315", + "737" + ] + } + }, + { + "name": "housing", + "role": "feature", + "semantic_type": "boolean", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 2, + "unique_ratio": 5.5e-05, + "example_values": [ + "no", + "yes" + ] + } + }, + { + "name": "loan", + "role": "feature", + "semantic_type": "boolean", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 2, + "unique_ratio": 5.5e-05, + "example_values": [ + "yes", + "no" + ] + } + }, + { + "name": "contact", + "role": "feature", + "semantic_type": "categorical", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 3, + "unique_ratio": 8.3e-05, + "example_values": [ + "cellular", + "unknown", + "telephone" + ] + } + }, + { + "name": "day", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 31, + "unique_ratio": 0.000857, + "example_values": [ + "28", + "7", + "11", + "12", + "14" + ] + } + }, + { + "name": "month", + "role": "feature", + "semantic_type": "categorical", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 12, + "unique_ratio": 0.000332, + "example_values": [ + "jul", + "may", + "aug", + "oct", + "feb" + ] + } + }, + { + "name": "duration", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 1507, + "unique_ratio": 0.041667, + "example_values": [ + "100", + "120", + "70", + "291", + "102" + ] + } + }, + { + "name": "campaign", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 47, + "unique_ratio": 0.001299, + "example_values": [ + "16", + "1", + "2", + "5", + "4" + ] + } + }, + { + "name": "pdays", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 524, + "unique_ratio": 0.014488, + "example_values": [ + "-1", + "91", + "365", + "189", + "117" + ] + } + }, + { + "name": "previous", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 38, + "unique_ratio": 0.001051, + "example_values": [ + "0", + "4", + "1", + "2", + "3" + ] + } + }, + { + "name": "poutcome", + "role": "feature", + "semantic_type": "categorical", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 4, + "unique_ratio": 0.000111, + "example_values": [ + "unknown", + "failure", + "other", + "success" + ] + } + }, + { + "name": "y", + "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": 5.5e-05, + "example_values": [ + "no", + "yes" + ] + } + } + ], + "public_manifest": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/m8/tvae/tvae-m8-20260501_055847/public_gate/staged_input_manifest.json", + "train_csv": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/m8/tvae/tvae-m8-20260501_055847/staged/public/train.csv", + "val_csv": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/m8/tvae/tvae-m8-20260501_055847/staged/public/val.csv", + "test_csv": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/m8/tvae/tvae-m8-20260501_055847/staged/public/test.csv", + "features_json": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/m8/tvae/tvae-m8-20260501_055847/staged/public/staged_features.json", + "public_gate_report": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/m8/tvae/tvae-m8-20260501_055847/public_gate/public_gate_report.json" +} \ No newline at end of file diff --git a/timecost/m8/tvae/tvae-m8-20260501_055847/tvae-m8-36168-20260501_060307.csv b/timecost/m8/tvae/tvae-m8-20260501_055847/tvae-m8-36168-20260501_060307.csv new file mode 100644 index 0000000000000000000000000000000000000000..4422d820129b6b93b3577a64a491b0c292147d85 --- /dev/null +++ b/timecost/m8/tvae/tvae-m8-20260501_055847/tvae-m8-36168-20260501_060307.csv @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:1be33166c49052e30e889ab3de9ff5ec66ede958370ae415961cab1d7affff5e +size 2920050 diff --git a/timecost/m8/tvae/tvae-m8-20260501_055847/tvae_metadata.json b/timecost/m8/tvae/tvae-m8-20260501_055847/tvae_metadata.json new file mode 100644 index 0000000000000000000000000000000000000000..e4311b6e09b701b44e2d352b6d6f50ef5702793a --- /dev/null +++ b/timecost/m8/tvae/tvae-m8-20260501_055847/tvae_metadata.json @@ -0,0 +1,72 @@ +{ + "columns": [ + { + "name": "age", + "type": "continuous" + }, + { + "name": "job", + "type": "categorical" + }, + { + "name": "marital", + "type": "categorical" + }, + { + "name": "education", + "type": "categorical" + }, + { + "name": "default", + "type": "categorical" + }, + { + "name": "balance", + "type": "continuous" + }, + { + "name": "housing", + "type": "categorical" + }, + { + "name": "loan", + "type": "categorical" + }, + { + "name": "contact", + "type": "categorical" + }, + { + "name": "day", + "type": "continuous" + }, + { + "name": "month", + "type": "categorical" + }, + { + "name": "duration", + "type": "continuous" + }, + { + "name": "campaign", + "type": "continuous" + }, + { + "name": "pdays", + "type": "continuous" + }, + { + "name": "previous", + "type": "continuous" + }, + { + "name": "poutcome", + "type": "categorical" + }, + { + "name": "y", + "type": "categorical" + } + ] +} \ No newline at end of file diff --git a/timecost/n11/arf/arf-n11-20260502_020245/_arf_generate.py b/timecost/n11/arf/arf-n11-20260502_020245/_arf_generate.py new file mode 100644 index 0000000000000000000000000000000000000000..2b1904fec133cb0f932f407a49bf7752a57cb918 --- /dev/null +++ b/timecost/n11/arf/arf-n11-20260502_020245/_arf_generate.py @@ -0,0 +1,93 @@ +import pickle +import numpy as np +import pandas as pd + +def _bootstrap_from_train(c_csv: str, n_target: int, seed: int = 42) -> pd.DataFrame: + """当 arfpy.forge 完全不可用时,从训练 CSV 有放回抽样,保证行数与列对齐。""" + src = pd.read_csv(c_csv, encoding="utf-8-sig", low_memory=False) + src = src.replace([np.inf, -np.inf], np.nan).dropna(axis=1, how="all") + src = src.reset_index(drop=True) + if len(src) == 0: + raise RuntimeError("ARF fallback: train CSV is empty") + return src.sample(n=n_target, replace=True, random_state=seed).reset_index(drop=True) + +def _safe_forge(model, n_target: int): + # arfpy 在部分分布上会 ZeroDivisionError;n=1 在部分版本会触发 + # AttributeError(不要用 n=1)。失败返回 None,由外层走 bootstrap。 + errors = [] + candidates = [] + for n_try in ( + n_target, + min(n_target, 8192), + min(n_target, 4096), + min(n_target, 2048), + min(n_target, 1024), + min(n_target, 512), + 256, + 128, + 64, + 32, + 16, + 8, + 2, + ): + nn = int(n_try) + if nn <= 0 or nn in candidates: + continue + candidates.append(nn) + for n_try in candidates: + try: + out = model.forge(n=n_try).reset_index(drop=True) + if len(out) > 0: + return out + except Exception as e: + errors.append(f"n={n_try}: {type(e).__name__}: {e}") + print("[ARF] forge failed after retries; last errors:", " | ".join(errors[-4:])) + return None + +n_target = int(15215) +c_csv = "/work/output-Benchmark-trainonly-v1/n11/arf/arf-n11-20260502_020245/staged/public/train.csv" +with open("/work/output-Benchmark-trainonly-v1/n11/arf/arf-n11-20260502_020245/arf_model.pkl", "rb") as f: + model = pickle.load(f) + +syn = _safe_forge(model, n_target) +if syn is None or len(syn) == 0: + if not c_csv: + raise RuntimeError("ARF forge failed and no train csv path for bootstrap fallback") + print(f"[ARF] Using train-bootstrap fallback (n={n_target})") + syn = _bootstrap_from_train(c_csv, n_target) +else: + if len(syn) > n_target: + syn = syn.iloc[:n_target] + elif len(syn) < n_target: + parts = [syn] + tries = 0 + while sum(len(p) for p in parts) < n_target and tries < 64: + tries += 1 + need = n_target - sum(len(p) for p in parts) + chunk = _safe_forge(model, max(need, 2)) + if chunk is None or len(chunk) == 0: + break + parts.append(chunk) + syn = pd.concat(parts, ignore_index=True).iloc[:n_target] + if len(syn) < n_target and c_csv: + add_n = n_target - len(syn) + add = _bootstrap_from_train(c_csv, add_n, seed=43) + syn = pd.concat([syn, add], ignore_index=True).iloc[:n_target] + +_ds_id = 'n11' +if _ds_id == "c19": + # 仅 c19:object 列内裸换行会使 pivot 用 csv.reader 统计到的「记录数」大于 DataFrame 行数 → Sw。 + for _col in syn.columns: + if syn[_col].dtype == object: + syn[_col] = ( + syn[_col] + .astype(str) + .str.replace("\r\n", " ", regex=False) + .str.replace("\n", " ", regex=False) + .str.replace("\r", " ", regex=False) + ) + syn = syn.iloc[:n_target].reset_index(drop=True) + +syn.to_csv("/work/output-Benchmark-trainonly-v1/n11/arf/arf-n11-20260502_020245/arf-n11-15215-20260502_020453.csv", index=False) +print(f"[ARF] Generated {len(syn)} rows (requested {n_target}) -> /work/output-Benchmark-trainonly-v1/n11/arf/arf-n11-20260502_020245/arf-n11-15215-20260502_020453.csv") diff --git a/timecost/n11/arf/arf-n11-20260502_020245/_arf_train.py b/timecost/n11/arf/arf-n11-20260502_020245/_arf_train.py new file mode 100644 index 0000000000000000000000000000000000000000..4ce16cabc4f6c1831eaa33eac8f957443c73ba48 --- /dev/null +++ b/timecost/n11/arf/arf-n11-20260502_020245/_arf_train.py @@ -0,0 +1,37 @@ +import pickle +import numpy as np +import pandas as pd +from arfpy import arf + +def _sanitize_for_arf(df: pd.DataFrame) -> pd.DataFrame: + """缓解 forge 阶段 scipy.stats.truncnorm / 除零:处理 inf、NaN 与极端尾部。""" + df = df.replace([np.inf, -np.inf], np.nan) + df = df.dropna(axis=1, how="all") + for col in df.select_dtypes(include=[np.number]).columns: + med = df[col].median() + if pd.isna(med): + med = 0.0 + df[col] = df[col].fillna(med) + nu = int(df[col].nunique(dropna=True)) + if nu <= 1: + continue + lo, hi = df[col].quantile(0.001), df[col].quantile(0.999) + if pd.notna(lo) and pd.notna(hi) and lo < hi: + df[col] = df[col].clip(lo, hi) + return df + +df = pd.read_csv("/work/output-Benchmark-trainonly-v1/n11/arf/arf-n11-20260502_020245/staged/public/train.csv") +df = _sanitize_for_arf(df) +print(f"[ARF] Training on {len(df)} rows, {len(df.columns)} cols") + +model = arf.arf(x=df) +if hasattr(model, "fit"): + model.fit() +elif hasattr(model, "forde"): + model.forde() +else: + raise RuntimeError("arfpy API: no fit() / forde()") + +with open("/work/output-Benchmark-trainonly-v1/n11/arf/arf-n11-20260502_020245/arf_model.pkl", "wb") as f: + pickle.dump(model, f) +print(f"[ARF] Model saved -> /work/output-Benchmark-trainonly-v1/n11/arf/arf-n11-20260502_020245/arf_model.pkl") diff --git a/timecost/n11/arf/arf-n11-20260502_020245/arf-n11-15215-20260502_020453.csv b/timecost/n11/arf/arf-n11-20260502_020245/arf-n11-15215-20260502_020453.csv new file mode 100644 index 0000000000000000000000000000000000000000..90463a037b8a46ff98d58427157c3414f92c7ac2 --- /dev/null +++ b/timecost/n11/arf/arf-n11-20260502_020245/arf-n11-15215-20260502_020453.csv @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:76d0cfea51042bc9cd99095c47750a816024ecbbcdb76202611fdd96da8693b9 +size 2889646 diff --git a/timecost/n11/arf/arf-n11-20260502_020245/arf_model.pkl b/timecost/n11/arf/arf-n11-20260502_020245/arf_model.pkl new file mode 100644 index 0000000000000000000000000000000000000000..74e633e4811b68e0fa02873d37867f4bd607dfde --- /dev/null +++ b/timecost/n11/arf/arf-n11-20260502_020245/arf_model.pkl @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:bfc763f614d8a9f81206ff66aa4671d26df40569390d33dfa150637eb402e69d +size 74492762 diff --git a/timecost/n11/arf/arf-n11-20260502_020245/gen_20260502_020453.log b/timecost/n11/arf/arf-n11-20260502_020245/gen_20260502_020453.log new file mode 100644 index 0000000000000000000000000000000000000000..82470da41a4f6cbc475565f3d81e8a2823a050cd --- /dev/null +++ b/timecost/n11/arf/arf-n11-20260502_020245/gen_20260502_020453.log @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:62bd2bf1d1b4134d255e99beb78e729c6c47643064317cba2cf2b25bb1fff6f8 +size 725 diff --git a/timecost/n11/arf/arf-n11-20260502_020245/input_snapshot.json b/timecost/n11/arf/arf-n11-20260502_020245/input_snapshot.json new file mode 100644 index 0000000000000000000000000000000000000000..530a240bfd09b26c795a214be47addfdbaa196a9 --- /dev/null +++ b/timecost/n11/arf/arf-n11-20260502_020245/input_snapshot.json @@ -0,0 +1,36 @@ +{ + "dataset_id": "n11", + "model": "arf", + "inputs": { + "train_csv": { + "path": "/data/jialinzhang/SynthesizePipeline-server/DatasetNew/n11/n11-train.csv", + "exists": true, + "size": 1197106, + "sha256": "f8253c0573a8f028c0b1e17752d214fbad956d0ace350d0dee3947f3dfafbc75" + }, + "val_csv": { + "path": "/data/jialinzhang/SynthesizePipeline-server/DatasetNew/n11/n11-val.csv", + "exists": true, + "size": 149602, + "sha256": "7bde20178eb7de9523d4df719a3b461656f5704e3a03187c8289b2299dc8e458" + }, + "test_csv": { + "path": "/data/jialinzhang/SynthesizePipeline-server/DatasetNew/n11/n11-test.csv", + "exists": true, + "size": 149859, + "sha256": "855b55969de2da1341d428edef6dedfdf0c60f016b9fa08efaf8a883af6a2c53" + }, + "profile_json": { + "path": "/data/jialinzhang/SynthesizePipeline-server/DatasetNew/artifacts/data_core/tabular/n11/n11-dataset_profile.json", + "exists": true, + "size": 5104, + "sha256": "0bd368d22598246defd33bda12c9872165f26e798cc462ec472d193f322fba07" + }, + "contract_json": { + "path": "/data/jialinzhang/SynthesizePipeline-server/DatasetNew/artifacts/data_core/tabular/n11/n11-dataset_contract_v1.json", + "exists": true, + "size": 5874, + "sha256": "ad3f01eafe9fb37754eed9be9bd058390fd3a4f54d8be4ceb4b5326a9901da9d" + } + } +} \ No newline at end of file diff --git a/timecost/n11/arf/arf-n11-20260502_020245/public_gate/normalized_schema_snapshot.json b/timecost/n11/arf/arf-n11-20260502_020245/public_gate/normalized_schema_snapshot.json new file mode 100644 index 0000000000000000000000000000000000000000..96904695eb041844b615aa285fda674f1da87108 --- /dev/null +++ b/timecost/n11/arf/arf-n11-20260502_020245/public_gate/normalized_schema_snapshot.json @@ -0,0 +1,235 @@ +{ + "dataset_id": "n11", + "target_column": "g", + "task_type": "classification", + "columns": [ + { + "name": "28.7967", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 14962, + "unique_ratio": 0.983372, + "example_values": [ + "33.9347", + "118.601", + "19.83", + "33.2691", + "13.1404" + ] + } + }, + { + "name": "16.0021", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 14662, + "unique_ratio": 0.963654, + "example_values": [ + "10.8862", + "44.2479", + "7.3303", + "9.1269", + "10.8527" + ] + } + }, + { + "name": "2.6449", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 6336, + "unique_ratio": 0.416431, + "example_values": [ + "2.5328", + "3.5558", + "2.2541", + "2.6728", + "2.1775" + ] + } + }, + { + "name": "0.3918", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 6002, + "unique_ratio": 0.394479, + "example_values": [ + "0.4047", + "0.1769", + "0.7521", + "0.4437", + "0.7708" + ] + } + }, + { + "name": "0.1982", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 4230, + "unique_ratio": 0.278015, + "example_values": [ + "0.2155", + "0.1003", + "0.4095", + "0.2553", + "0.4352" + ] + } + }, + { + "name": "27.7004", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 14996, + "unique_ratio": 0.985606, + "example_values": [ + "-25.0369", + "-95.8266", + "2.8528", + "12.3981", + "14.3006" + ] + } + }, + { + "name": "22.011", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 14984, + "unique_ratio": 0.984818, + "example_values": [ + "-23.1659", + "14.9809", + "-9.7666", + "19.9081", + "-3.6418" + ] + } + }, + { + "name": "-8.2027", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 14795, + "unique_ratio": 0.972396, + "example_values": [ + "3.492", + "29.3812", + "5.0346", + "-5.3204", + "-11.3646" + ] + } + }, + { + "name": "40.092", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 14518, + "unique_ratio": 0.95419, + "example_values": [ + "0.334", + "4.134", + "13.794", + "20.78", + "20.124" + ] + } + }, + { + "name": "81.8828", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 14824, + "unique_ratio": 0.974302, + "example_values": [ + "132.907", + "286.69", + "108.464", + "180.4168", + "222.525" + ] + } + }, + { + "name": "g", + "role": "target", + "semantic_type": "categorical", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 2, + "unique_ratio": 0.000131, + "example_values": [ + "g", + "h" + ] + } + } + ] +} \ No newline at end of file diff --git a/timecost/n11/arf/arf-n11-20260502_020245/public_gate/public_gate_report.json b/timecost/n11/arf/arf-n11-20260502_020245/public_gate/public_gate_report.json new file mode 100644 index 0000000000000000000000000000000000000000..4864c3fc29664a3b44991534165974fed3741dfa --- /dev/null +++ b/timecost/n11/arf/arf-n11-20260502_020245/public_gate/public_gate_report.json @@ -0,0 +1,37 @@ +{ + "dataset_id": "n11", + "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": "g", + "task_type": "classification", + "input_splits": { + "train": "/data/jialinzhang/SynthesizePipeline-server/DatasetNew/n11/n11-train.csv", + "val": "/data/jialinzhang/SynthesizePipeline-server/DatasetNew/n11/n11-val.csv", + "test": "/data/jialinzhang/SynthesizePipeline-server/DatasetNew/n11/n11-test.csv" + } +} \ No newline at end of file diff --git a/timecost/n11/arf/arf-n11-20260502_020245/public_gate/staged_input_manifest.json b/timecost/n11/arf/arf-n11-20260502_020245/public_gate/staged_input_manifest.json new file mode 100644 index 0000000000000000000000000000000000000000..3b8f42ac651b6e1d1ad4d623ec93675c6cac2966 --- /dev/null +++ b/timecost/n11/arf/arf-n11-20260502_020245/public_gate/staged_input_manifest.json @@ -0,0 +1,240 @@ +{ + "dataset_id": "n11", + "target_column": "g", + "task_type": "classification", + "train_csv": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/n11/arf/arf-n11-20260502_020245/staged/public/train.csv", + "val_csv": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/n11/arf/arf-n11-20260502_020245/staged/public/val.csv", + "test_csv": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/n11/arf/arf-n11-20260502_020245/staged/public/test.csv", + "features_json": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/n11/arf/arf-n11-20260502_020245/staged/public/staged_features.json", + "public_gate_report": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/n11/arf/arf-n11-20260502_020245/public_gate/public_gate_report.json", + "column_schema": [ + { + "name": "28.7967", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 14962, + "unique_ratio": 0.983372, + "example_values": [ + "33.9347", + "118.601", + "19.83", + "33.2691", + "13.1404" + ] + } + }, + { + "name": "16.0021", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 14662, + "unique_ratio": 0.963654, + "example_values": [ + "10.8862", + "44.2479", + "7.3303", + "9.1269", + "10.8527" + ] + } + }, + { + "name": "2.6449", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 6336, + "unique_ratio": 0.416431, + "example_values": [ + "2.5328", + "3.5558", + "2.2541", + "2.6728", + "2.1775" + ] + } + }, + { + "name": "0.3918", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 6002, + "unique_ratio": 0.394479, + "example_values": [ + "0.4047", + "0.1769", + "0.7521", + "0.4437", + "0.7708" + ] + } + }, + { + "name": "0.1982", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 4230, + "unique_ratio": 0.278015, + "example_values": [ + "0.2155", + "0.1003", + "0.4095", + "0.2553", + "0.4352" + ] + } + }, + { + "name": "27.7004", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 14996, + "unique_ratio": 0.985606, + "example_values": [ + "-25.0369", + "-95.8266", + "2.8528", + "12.3981", + "14.3006" + ] + } + }, + { + "name": "22.011", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 14984, + "unique_ratio": 0.984818, + "example_values": [ + "-23.1659", + "14.9809", + "-9.7666", + "19.9081", + "-3.6418" + ] + } + }, + { + "name": "-8.2027", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 14795, + "unique_ratio": 0.972396, + "example_values": [ + "3.492", + "29.3812", + "5.0346", + "-5.3204", + "-11.3646" + ] + } + }, + { + "name": "40.092", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 14518, + "unique_ratio": 0.95419, + "example_values": [ + "0.334", + "4.134", + "13.794", + "20.78", + "20.124" + ] + } + }, + { + "name": "81.8828", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 14824, + "unique_ratio": 0.974302, + "example_values": [ + "132.907", + "286.69", + "108.464", + "180.4168", + "222.525" + ] + } + }, + { + "name": "g", + "role": "target", + "semantic_type": "categorical", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 2, + "unique_ratio": 0.000131, + "example_values": [ + "g", + "h" + ] + } + } + ] +} \ No newline at end of file diff --git a/timecost/n11/arf/arf-n11-20260502_020245/runtime_result.json b/timecost/n11/arf/arf-n11-20260502_020245/runtime_result.json new file mode 100644 index 0000000000000000000000000000000000000000..677c44569b0b838b3926081427d8ddfd0f4fb5f2 --- /dev/null +++ b/timecost/n11/arf/arf-n11-20260502_020245/runtime_result.json @@ -0,0 +1,27 @@ +{ + "dataset_id": "n11", + "model": "arf", + "run_id": "arf-n11-20260502_020245", + "public_gate_status": "pass", + "adapter_ready_status": "pass", + "train_status": "success", + "generate_status": "success", + "reason_code": null, + "reason_detail": null, + "artifacts": { + "synthetic_csv": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/n11/arf/arf-n11-20260502_020245/arf-n11-15215-20260502_020453.csv", + "model_path": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/n11/arf/arf-n11-20260502_020245/arf_model.pkl" + }, + "timings": { + "train": { + "started_at": "2026-05-02T02:02:45", + "ended_at": "2026-05-02T02:04:53", + "duration_sec": 128.106 + }, + "generate": { + "started_at": "2026-05-02T02:04:53", + "ended_at": "2026-05-02T02:04:56", + "duration_sec": 2.774 + } + } +} \ No newline at end of file diff --git a/timecost/n11/arf/arf-n11-20260502_020245/staged/arf/adapter_report.json b/timecost/n11/arf/arf-n11-20260502_020245/staged/arf/adapter_report.json new file mode 100644 index 0000000000000000000000000000000000000000..c2cd1ba9e2b84c528e3e9a5030a485e7823cde15 --- /dev/null +++ b/timecost/n11/arf/arf-n11-20260502_020245/staged/arf/adapter_report.json @@ -0,0 +1,7 @@ +{ + "adapter_ready_status": "pass", + "adapter_fail_reason_code": null, + "adapter_fail_detail": null, + "adapter_transforms_applied": [], + "model_input_manifest": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/n11/arf/arf-n11-20260502_020245/staged/arf/model_input_manifest.json" +} \ No newline at end of file diff --git a/timecost/n11/arf/arf-n11-20260502_020245/staged/arf/adapter_transforms_applied.json b/timecost/n11/arf/arf-n11-20260502_020245/staged/arf/adapter_transforms_applied.json new file mode 100644 index 0000000000000000000000000000000000000000..0637a088a01e8ddab3bf3fa98dbe804cbde1a0dc --- /dev/null +++ b/timecost/n11/arf/arf-n11-20260502_020245/staged/arf/adapter_transforms_applied.json @@ -0,0 +1 @@ +[] \ No newline at end of file diff --git a/timecost/n11/arf/arf-n11-20260502_020245/staged/arf/model_input_manifest.json b/timecost/n11/arf/arf-n11-20260502_020245/staged/arf/model_input_manifest.json new file mode 100644 index 0000000000000000000000000000000000000000..dbcc1009227b47cd46ee6211a1604d80bf3f0cb7 --- /dev/null +++ b/timecost/n11/arf/arf-n11-20260502_020245/staged/arf/model_input_manifest.json @@ -0,0 +1,242 @@ +{ + "dataset_id": "n11", + "model": "arf", + "target_column": "g", + "task_type": "classification", + "column_schema": [ + { + "name": "28.7967", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 14962, + "unique_ratio": 0.983372, + "example_values": [ + "33.9347", + "118.601", + "19.83", + "33.2691", + "13.1404" + ] + } + }, + { + "name": "16.0021", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 14662, + "unique_ratio": 0.963654, + "example_values": [ + "10.8862", + "44.2479", + "7.3303", + "9.1269", + "10.8527" + ] + } + }, + { + "name": "2.6449", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 6336, + "unique_ratio": 0.416431, + "example_values": [ + "2.5328", + "3.5558", + "2.2541", + "2.6728", + "2.1775" + ] + } + }, + { + "name": "0.3918", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 6002, + "unique_ratio": 0.394479, + "example_values": [ + "0.4047", + "0.1769", + "0.7521", + "0.4437", + "0.7708" + ] + } + }, + { + "name": "0.1982", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 4230, + "unique_ratio": 0.278015, + "example_values": [ + "0.2155", + "0.1003", + "0.4095", + "0.2553", + "0.4352" + ] + } + }, + { + "name": "27.7004", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 14996, + "unique_ratio": 0.985606, + "example_values": [ + "-25.0369", + "-95.8266", + "2.8528", + "12.3981", + "14.3006" + ] + } + }, + { + "name": "22.011", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 14984, + "unique_ratio": 0.984818, + "example_values": [ + "-23.1659", + "14.9809", + "-9.7666", + "19.9081", + "-3.6418" + ] + } + }, + { + "name": "-8.2027", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 14795, + "unique_ratio": 0.972396, + "example_values": [ + "3.492", + "29.3812", + "5.0346", + "-5.3204", + "-11.3646" + ] + } + }, + { + "name": "40.092", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 14518, + "unique_ratio": 0.95419, + "example_values": [ + "0.334", + "4.134", + "13.794", + "20.78", + "20.124" + ] + } + }, + { + "name": "81.8828", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 14824, + "unique_ratio": 0.974302, + "example_values": [ + "132.907", + "286.69", + "108.464", + "180.4168", + "222.525" + ] + } + }, + { + "name": "g", + "role": "target", + "semantic_type": "categorical", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 2, + "unique_ratio": 0.000131, + "example_values": [ + "g", + "h" + ] + } + } + ], + "public_manifest": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/n11/arf/arf-n11-20260502_020245/public_gate/staged_input_manifest.json", + "train_csv": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/n11/arf/arf-n11-20260502_020245/staged/public/train.csv", + "val_csv": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/n11/arf/arf-n11-20260502_020245/staged/public/val.csv", + "test_csv": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/n11/arf/arf-n11-20260502_020245/staged/public/test.csv", + "features_json": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/n11/arf/arf-n11-20260502_020245/staged/public/staged_features.json", + "public_gate_report": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/n11/arf/arf-n11-20260502_020245/public_gate/public_gate_report.json" +} \ No newline at end of file diff --git a/timecost/n11/arf/arf-n11-20260502_020245/staged/public/staged_features.json b/timecost/n11/arf/arf-n11-20260502_020245/staged/public/staged_features.json new file mode 100644 index 0000000000000000000000000000000000000000..bdb9c28b9d52f06368851a08caadc305035fc1b7 --- /dev/null +++ b/timecost/n11/arf/arf-n11-20260502_020245/staged/public/staged_features.json @@ -0,0 +1,57 @@ +[ + { + "feature_name": "28.7967", + "data_type": "continuous", + "is_target": false + }, + { + "feature_name": "16.0021", + "data_type": "continuous", + "is_target": false + }, + { + "feature_name": "2.6449", + "data_type": "continuous", + "is_target": false + }, + { + "feature_name": "0.3918", + "data_type": "continuous", + "is_target": false + }, + { + "feature_name": "0.1982", + "data_type": "continuous", + "is_target": false + }, + { + "feature_name": "27.7004", + "data_type": "continuous", + "is_target": false + }, + { + "feature_name": "22.011", + "data_type": "continuous", + "is_target": false + }, + { + "feature_name": "-8.2027", + "data_type": "continuous", + "is_target": false + }, + { + "feature_name": "40.092", + "data_type": "continuous", + "is_target": false + }, + { + "feature_name": "81.8828", + "data_type": "continuous", + "is_target": false + }, + { + "feature_name": "g", + "data_type": "categorical", + "is_target": true + } +] \ No newline at end of file diff --git a/timecost/n11/arf/arf-n11-20260502_020245/staged/public/test.csv b/timecost/n11/arf/arf-n11-20260502_020245/staged/public/test.csv new file mode 100644 index 0000000000000000000000000000000000000000..59e413eb15b50a2ac49cd95bbe57b0d0018ccf95 --- /dev/null +++ b/timecost/n11/arf/arf-n11-20260502_020245/staged/public/test.csv @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:bf4e935f84569b849b662718eaa19be605037d46a5f7391f164728d6d9c3bb50 +size 148017 diff --git a/timecost/n11/arf/arf-n11-20260502_020245/staged/public/train.csv b/timecost/n11/arf/arf-n11-20260502_020245/staged/public/train.csv new file mode 100644 index 0000000000000000000000000000000000000000..cc5acd9fe00e8a233592b4da9797300adc83744b --- /dev/null +++ b/timecost/n11/arf/arf-n11-20260502_020245/staged/public/train.csv @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:3ab621ac8239797506ce800c1409422452b8127da93add91dd9e6d63ddeec6f7 +size 1182326 diff --git a/timecost/n11/arf/arf-n11-20260502_020245/staged/public/val.csv b/timecost/n11/arf/arf-n11-20260502_020245/staged/public/val.csv new file mode 100644 index 0000000000000000000000000000000000000000..e0a3b6ab9c53a7f8d97dff3290e643431f9ad023 --- /dev/null +++ b/timecost/n11/arf/arf-n11-20260502_020245/staged/public/val.csv @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:374e44edf25e58ca37eabbef0485c98cecdbdfa9d24da738937f404840bfad44 +size 147784 diff --git a/timecost/n11/arf/arf-n11-20260502_020245/train_20260502_020245.log b/timecost/n11/arf/arf-n11-20260502_020245/train_20260502_020245.log new file mode 100644 index 0000000000000000000000000000000000000000..cc07d45b1109f8f7c892c5223486ecc30ea38b2d --- /dev/null +++ b/timecost/n11/arf/arf-n11-20260502_020245/train_20260502_020245.log @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:65460cc3273fa2b8e89f71a0740c13753c2bd5e22a94257aa11dbad09143eb96 +size 676 diff --git a/timecost/n11/bayesnet/bayesnet-n11-20260502_020508/_bayesnet_generate.py b/timecost/n11/bayesnet/bayesnet-n11-20260502_020508/_bayesnet_generate.py new file mode 100644 index 0000000000000000000000000000000000000000..27cc0bdc5166ab0bf1b358cd3fa54c477cf8727e --- /dev/null +++ b/timecost/n11/bayesnet/bayesnet-n11-20260502_020508/_bayesnet_generate.py @@ -0,0 +1,105 @@ + +import pickle +import subprocess +import sys +import warnings + +import numpy as np +import pandas as pd +from pgmpy.sampling import BayesianModelSampling + +warnings.filterwarnings("ignore", category=FutureWarning) + +def _ensure_cloudpickle(): + try: + import cloudpickle # noqa: F401 + except ModuleNotFoundError: + subprocess.check_call( + [sys.executable, "-m", "pip", "install", "--quiet", "cloudpickle"], + ) + +_ensure_cloudpickle() + +with open("/work/output-Benchmark-trainonly-v1/n11/bayesnet/bayesnet-n11-20260502_020508/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(15215) +sampler = BayesianModelSampling(network) +raw = sampler.forward_sample(size=num_rows, show_progress=False) +raw = raw.reset_index(drop=True) +if len(raw) > num_rows: + raw = raw.iloc[:num_rows] +_tries = 0 +while len(raw) < num_rows and _tries < 64: + _tries += 1 + nextra = min(10000, num_rows - len(raw)) + more = sampler.forward_sample(size=max(nextra, 1), show_progress=False) + more = more.reset_index(drop=True) + if len(more) == 0: + break + raw = pd.concat([raw, more], ignore_index=True) + if len(raw) > num_rows: + raw = raw.iloc[:num_rows] + +out = pd.DataFrame(index=raw.index) +rng = np.random.default_rng() + +for c in cols: + if c in inverse["categorical"]: + levels = inverse["categorical"][c] + idx = raw[c].astype(int).to_numpy() + idx = np.clip(idx, 0, max(0, len(levels) - 1)) + out[c] = [levels[i] for i in idx] + else: + edges = np.asarray(inverse["continuous"][c], dtype=float) + if edges.size < 2: + out[c] = 0.0 + else: + nbin = edges.size - 1 + res = [] + for k in raw[c].astype(int).to_numpy(): + k = int(k) + if k < 0: + k = 0 + if k >= nbin: + k = nbin - 1 + lo, hi = float(edges[k]), float(edges[k + 1]) + if hi < lo: + lo, hi = hi, lo + v = rng.uniform(lo, hi) + if c in integer_columns: + v = int(round(v)) + res.append(v) + out[c] = res + +final = pd.DataFrame(index=out.index) +for c in full_order: + if c in const_cols: + final[c] = const_cols[c] + elif c in out.columns: + final[c] = out[c] + +dtypes = bundle.get("original_dtypes") or {} +for c, dts in dtypes.items(): + if c not in final.columns: + continue + try: + if "int" in dts: + final[c] = pd.to_numeric(final[c], errors="coerce").astype("Int64") + elif "float" in dts: + final[c] = pd.to_numeric(final[c], errors="coerce") + except Exception: + pass + +if len(final) != num_rows: + final = final.iloc[:num_rows].copy() +final = final.reset_index(drop=True) +final.to_csv("/work/output-Benchmark-trainonly-v1/n11/bayesnet/bayesnet-n11-20260502_020508/bayesnet-n11-15215-20260502_020516.csv", index=False) +print(f"[BayesNet] Generated {len(final)} rows (requested {num_rows}) -> /work/output-Benchmark-trainonly-v1/n11/bayesnet/bayesnet-n11-20260502_020508/bayesnet-n11-15215-20260502_020516.csv") diff --git a/timecost/n11/bayesnet/bayesnet-n11-20260502_020508/_bayesnet_train.py b/timecost/n11/bayesnet/bayesnet-n11-20260502_020508/_bayesnet_train.py new file mode 100644 index 0000000000000000000000000000000000000000..e2b4dc1751fbd47c8b722ca403c82a24ad9c972d --- /dev/null +++ b/timecost/n11/bayesnet/bayesnet-n11-20260502_020508/_bayesnet_train.py @@ -0,0 +1,133 @@ + +import json +import pickle +import subprocess +import sys +import warnings + +import numpy as np +import pandas as pd +from pgmpy.estimators import TreeSearch +from pgmpy.models import DiscreteBayesianNetwork +warnings.filterwarnings("ignore", category=FutureWarning) + +def _ensure_cloudpickle(): + try: + import cloudpickle # noqa: F401 + except ModuleNotFoundError: + subprocess.check_call( + [sys.executable, "-m", "pip", "install", "--quiet", "cloudpickle"], + ) + +_ensure_cloudpickle() + +with open("/work/output-Benchmark-trainonly-v1/n11/bayesnet/bayesnet-n11-20260502_020508/bayesnet_coltypes.json", "r", encoding="utf-8") as _f: + colmeta = json.load(_f) +integer_columns = set(colmeta.get("integer_columns") or []) + +df = pd.read_csv("/work/output-Benchmark-trainonly-v1/n11/bayesnet/bayesnet-n11-20260502_020508/staged/public/train.csv") +df = df.dropna(axis=1, how="all") +full_column_order = list(df.columns) + +const_cols = {} +for col in list(df.columns): + if df[col].nunique(dropna=True) <= 1: + const_cols[col] = df[col].iloc[0] if len(df) > 0 else None + df = df.drop(columns=[col]) + print(f"[BayesNet] Dropped zero-variance column '{col}'") + +const_path = "/work/output-Benchmark-trainonly-v1/n11/bayesnet/bayesnet-n11-20260502_020508/bayesnet_model.pkl".replace("bayesnet_model.pkl", "const_cols.json") +with open(const_path, "w", encoding="utf-8") as _f: + json.dump({k: str(v) for k, v in const_cols.items()}, _f) + +inverse = {"categorical": {}, "continuous": {}} +enc = pd.DataFrame(index=df.index) +_n_samples = len(df) +_n_plan = sum( + 1 for e in colmeta["columns"] if str(e.get("name", "")) in df.columns +) +max_bins = 10 +max_cat_levels = 256 +if _n_plan > 35 or _n_samples > 200000: + max_bins = 5 + max_cat_levels = 64 +if _n_plan > 55: + max_bins = 4 + max_cat_levels = 32 +print( + f"[BayesNet] max_bins={max_bins}, max_cat_levels={max_cat_levels} " + f"(cols_in_df={_n_plan}, rows={_n_samples})" +) + +for entry in colmeta["columns"]: + name = entry["name"] + if name not in df.columns: + continue + kind = entry["type"] + s = df[name] + if kind == "categorical": + s2 = s.astype(str).fillna("__NA__") + counts = s2.value_counts(dropna=False) + if len(counts) > max_cat_levels: + keep = set(counts.index[: max_cat_levels - 1].tolist()) + s2 = s2.map(lambda x: x if x in keep else "__OTHER__") + uniques = sorted(s2.dropna().unique(), key=lambda x: str(x)) + mapping = {str(v): i for i, v in enumerate(uniques)} + inverse["categorical"][name] = [uniques[i] for i in range(len(uniques))] + enc[name] = s2.map(lambda x, m=mapping: m.get(str(x), 0)).astype(int) + else: + s_num = pd.to_numeric(s, errors="coerce") + nu = int(s_num.nunique(dropna=True)) + q = min(max_bins, max(2, nu)) + if nu < 2: + enc[name] = np.zeros(len(s_num), dtype=int) + lo, hi = float(s_num.min()), float(s_num.max()) + inverse["continuous"][name] = [lo, hi] + else: + try: + _, bins = pd.qcut( + s_num, q=q, retbins=True, duplicates="drop" + ) + except Exception: + med = float(s_num.median()) + s2 = s_num.fillna(med) + _, bins = pd.qcut( + s2, q=min(q, 3), retbins=True, duplicates="drop" + ) + bins = np.asarray(bins, dtype=float) + lab = pd.cut( + s_num, bins=bins, labels=False, include_lowest=True + ) + enc[name] = lab.fillna(0).astype(int) + inverse["continuous"][name] = bins.tolist() + +print(f"[BayesNet] Training on {len(enc)} rows, {len(enc.columns)} cols (encoded)") + +enc_struct = enc +if len(enc) > 25000: + enc_struct = enc.sample(n=25000, random_state=0, replace=False) + print(f"[BayesNet] TreeSearch on {len(enc_struct)} rows (subsample; full n={len(enc)})") +dag = TreeSearch(enc_struct).estimate(show_progress=False) +for col in enc.columns: + if col not in dag.nodes(): + dag.add_node(col) + print(f"[BayesNet] Added isolated node to DAG: {col}") +network = DiscreteBayesianNetwork(dag) +enc_fit = enc +if len(enc) > 120000: + enc_fit = enc.sample(n=120000, random_state=1, replace=False) + print(f"[BayesNet] fit() on {len(enc_fit)} rows (full n={len(enc)})") +network.fit(enc_fit) + +bundle = { + "network": network, + "inverse": inverse, + "column_order": list(enc.columns), + "full_column_order": full_column_order, + "integer_columns": list(integer_columns), + "original_dtypes": {c: str(df[c].dtype) for c in enc.columns}, + "const_cols": const_cols, +} +with open("/work/output-Benchmark-trainonly-v1/n11/bayesnet/bayesnet-n11-20260502_020508/bayesnet_model.pkl", "wb") as _f: + pickle.dump(bundle, _f) +print(f"[BayesNet] Model saved -> /work/output-Benchmark-trainonly-v1/n11/bayesnet/bayesnet-n11-20260502_020508/bayesnet_model.pkl") diff --git a/timecost/n11/bayesnet/bayesnet-n11-20260502_020508/bayesnet-n11-15215-20260502_020516.csv b/timecost/n11/bayesnet/bayesnet-n11-20260502_020508/bayesnet-n11-15215-20260502_020516.csv new file mode 100644 index 0000000000000000000000000000000000000000..024b5ad871eeb40512f65550fa9180aff4dd0791 --- /dev/null +++ b/timecost/n11/bayesnet/bayesnet-n11-20260502_020508/bayesnet-n11-15215-20260502_020516.csv @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:8189810af01e33b01a0d7559e3200509fb97faa34883804976557a7886f97e2f +size 2890271 diff --git a/timecost/n11/bayesnet/bayesnet-n11-20260502_020508/bayesnet_coltypes.json b/timecost/n11/bayesnet/bayesnet-n11-20260502_020508/bayesnet_coltypes.json new file mode 100644 index 0000000000000000000000000000000000000000..1f68e1be0664db5728ebf818fa12eda7734b2123 --- /dev/null +++ b/timecost/n11/bayesnet/bayesnet-n11-20260502_020508/bayesnet_coltypes.json @@ -0,0 +1,49 @@ +{ + "columns": [ + { + "name": "28.7967", + "type": "continuous" + }, + { + "name": "16.0021", + "type": "continuous" + }, + { + "name": "2.6449", + "type": "continuous" + }, + { + "name": "0.3918", + "type": "continuous" + }, + { + "name": "0.1982", + "type": "continuous" + }, + { + "name": "27.7004", + "type": "continuous" + }, + { + "name": "22.011", + "type": "continuous" + }, + { + "name": "-8.2027", + "type": "continuous" + }, + { + "name": "40.092", + "type": "continuous" + }, + { + "name": "81.8828", + "type": "continuous" + }, + { + "name": "g", + "type": "categorical" + } + ], + "integer_columns": [] +} \ No newline at end of file diff --git a/timecost/n11/bayesnet/bayesnet-n11-20260502_020508/bayesnet_model.pkl b/timecost/n11/bayesnet/bayesnet-n11-20260502_020508/bayesnet_model.pkl new file mode 100644 index 0000000000000000000000000000000000000000..9332ce67709735e278568ddac3870249501546d2 --- /dev/null +++ b/timecost/n11/bayesnet/bayesnet-n11-20260502_020508/bayesnet_model.pkl @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:050fa3bcc02565b14df866cf21d597cff7378c4cb55de988e3794df3e69009c0 +size 16290 diff --git a/timecost/n11/bayesnet/bayesnet-n11-20260502_020508/const_cols.json b/timecost/n11/bayesnet/bayesnet-n11-20260502_020508/const_cols.json new file mode 100644 index 0000000000000000000000000000000000000000..9e26dfeeb6e641a33dae4961196235bdb965b21b --- /dev/null +++ b/timecost/n11/bayesnet/bayesnet-n11-20260502_020508/const_cols.json @@ -0,0 +1 @@ +{} \ No newline at end of file diff --git a/timecost/n11/bayesnet/bayesnet-n11-20260502_020508/gen_20260502_020516.log b/timecost/n11/bayesnet/bayesnet-n11-20260502_020508/gen_20260502_020516.log new file mode 100644 index 0000000000000000000000000000000000000000..7c45026800004f0a216c8d242a3a7ac1c53994ea --- /dev/null +++ b/timecost/n11/bayesnet/bayesnet-n11-20260502_020508/gen_20260502_020516.log @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:f26ae7860dd458ca9b24b01f89037da4ab13d68f5c2a5264c7392ccdb8e34056 +size 3667 diff --git a/timecost/n11/bayesnet/bayesnet-n11-20260502_020508/input_snapshot.json b/timecost/n11/bayesnet/bayesnet-n11-20260502_020508/input_snapshot.json new file mode 100644 index 0000000000000000000000000000000000000000..6c359aa8e271fbf6fdec18331c2f91421b80cc91 --- /dev/null +++ b/timecost/n11/bayesnet/bayesnet-n11-20260502_020508/input_snapshot.json @@ -0,0 +1,36 @@ +{ + "dataset_id": "n11", + "model": "bayesnet", + "inputs": { + "train_csv": { + "path": "/data/jialinzhang/SynthesizePipeline-server/DatasetNew/n11/n11-train.csv", + "exists": true, + "size": 1197106, + "sha256": "f8253c0573a8f028c0b1e17752d214fbad956d0ace350d0dee3947f3dfafbc75" + }, + "val_csv": { + "path": "/data/jialinzhang/SynthesizePipeline-server/DatasetNew/n11/n11-val.csv", + "exists": true, + "size": 149602, + "sha256": "7bde20178eb7de9523d4df719a3b461656f5704e3a03187c8289b2299dc8e458" + }, + "test_csv": { + "path": "/data/jialinzhang/SynthesizePipeline-server/DatasetNew/n11/n11-test.csv", + "exists": true, + "size": 149859, + "sha256": "855b55969de2da1341d428edef6dedfdf0c60f016b9fa08efaf8a883af6a2c53" + }, + "profile_json": { + "path": "/data/jialinzhang/SynthesizePipeline-server/DatasetNew/artifacts/data_core/tabular/n11/n11-dataset_profile.json", + "exists": true, + "size": 5104, + "sha256": "0bd368d22598246defd33bda12c9872165f26e798cc462ec472d193f322fba07" + }, + "contract_json": { + "path": "/data/jialinzhang/SynthesizePipeline-server/DatasetNew/artifacts/data_core/tabular/n11/n11-dataset_contract_v1.json", + "exists": true, + "size": 5874, + "sha256": "ad3f01eafe9fb37754eed9be9bd058390fd3a4f54d8be4ceb4b5326a9901da9d" + } + } +} \ No newline at end of file diff --git a/timecost/n11/bayesnet/bayesnet-n11-20260502_020508/public_gate/normalized_schema_snapshot.json b/timecost/n11/bayesnet/bayesnet-n11-20260502_020508/public_gate/normalized_schema_snapshot.json new file mode 100644 index 0000000000000000000000000000000000000000..96904695eb041844b615aa285fda674f1da87108 --- /dev/null +++ b/timecost/n11/bayesnet/bayesnet-n11-20260502_020508/public_gate/normalized_schema_snapshot.json @@ -0,0 +1,235 @@ +{ + "dataset_id": "n11", + "target_column": "g", + "task_type": "classification", + "columns": [ + { + "name": "28.7967", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 14962, + "unique_ratio": 0.983372, + "example_values": [ + "33.9347", + "118.601", + "19.83", + "33.2691", + "13.1404" + ] + } + }, + { + "name": "16.0021", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 14662, + "unique_ratio": 0.963654, + "example_values": [ + "10.8862", + "44.2479", + "7.3303", + "9.1269", + "10.8527" + ] + } + }, + { + "name": "2.6449", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 6336, + "unique_ratio": 0.416431, + "example_values": [ + "2.5328", + "3.5558", + "2.2541", + "2.6728", + "2.1775" + ] + } + }, + { + "name": "0.3918", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 6002, + "unique_ratio": 0.394479, + "example_values": [ + "0.4047", + "0.1769", + "0.7521", + "0.4437", + "0.7708" + ] + } + }, + { + "name": "0.1982", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 4230, + "unique_ratio": 0.278015, + "example_values": [ + "0.2155", + "0.1003", + "0.4095", + "0.2553", + "0.4352" + ] + } + }, + { + "name": "27.7004", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 14996, + "unique_ratio": 0.985606, + "example_values": [ + "-25.0369", + "-95.8266", + "2.8528", + "12.3981", + "14.3006" + ] + } + }, + { + "name": "22.011", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 14984, + "unique_ratio": 0.984818, + "example_values": [ + "-23.1659", + "14.9809", + "-9.7666", + "19.9081", + "-3.6418" + ] + } + }, + { + "name": "-8.2027", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 14795, + "unique_ratio": 0.972396, + "example_values": [ + "3.492", + "29.3812", + "5.0346", + "-5.3204", + "-11.3646" + ] + } + }, + { + "name": "40.092", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 14518, + "unique_ratio": 0.95419, + "example_values": [ + "0.334", + "4.134", + "13.794", + "20.78", + "20.124" + ] + } + }, + { + "name": "81.8828", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 14824, + "unique_ratio": 0.974302, + "example_values": [ + "132.907", + "286.69", + "108.464", + "180.4168", + "222.525" + ] + } + }, + { + "name": "g", + "role": "target", + "semantic_type": "categorical", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 2, + "unique_ratio": 0.000131, + "example_values": [ + "g", + "h" + ] + } + } + ] +} \ No newline at end of file diff --git a/timecost/n11/bayesnet/bayesnet-n11-20260502_020508/public_gate/public_gate_report.json b/timecost/n11/bayesnet/bayesnet-n11-20260502_020508/public_gate/public_gate_report.json new file mode 100644 index 0000000000000000000000000000000000000000..4864c3fc29664a3b44991534165974fed3741dfa --- /dev/null +++ b/timecost/n11/bayesnet/bayesnet-n11-20260502_020508/public_gate/public_gate_report.json @@ -0,0 +1,37 @@ +{ + "dataset_id": "n11", + "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": "g", + "task_type": "classification", + "input_splits": { + "train": "/data/jialinzhang/SynthesizePipeline-server/DatasetNew/n11/n11-train.csv", + "val": "/data/jialinzhang/SynthesizePipeline-server/DatasetNew/n11/n11-val.csv", + "test": "/data/jialinzhang/SynthesizePipeline-server/DatasetNew/n11/n11-test.csv" + } +} \ No newline at end of file diff --git a/timecost/n11/bayesnet/bayesnet-n11-20260502_020508/public_gate/staged_input_manifest.json b/timecost/n11/bayesnet/bayesnet-n11-20260502_020508/public_gate/staged_input_manifest.json new file mode 100644 index 0000000000000000000000000000000000000000..2eaa2fdf8806f6e1cc14627e18af20070f72d304 --- /dev/null +++ b/timecost/n11/bayesnet/bayesnet-n11-20260502_020508/public_gate/staged_input_manifest.json @@ -0,0 +1,240 @@ +{ + "dataset_id": "n11", + "target_column": "g", + "task_type": "classification", + "train_csv": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/n11/bayesnet/bayesnet-n11-20260502_020508/staged/public/train.csv", + "val_csv": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/n11/bayesnet/bayesnet-n11-20260502_020508/staged/public/val.csv", + "test_csv": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/n11/bayesnet/bayesnet-n11-20260502_020508/staged/public/test.csv", + "features_json": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/n11/bayesnet/bayesnet-n11-20260502_020508/staged/public/staged_features.json", + "public_gate_report": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/n11/bayesnet/bayesnet-n11-20260502_020508/public_gate/public_gate_report.json", + "column_schema": [ + { + "name": "28.7967", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 14962, + "unique_ratio": 0.983372, + "example_values": [ + "33.9347", + "118.601", + "19.83", + "33.2691", + "13.1404" + ] + } + }, + { + "name": "16.0021", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 14662, + "unique_ratio": 0.963654, + "example_values": [ + "10.8862", + "44.2479", + "7.3303", + "9.1269", + "10.8527" + ] + } + }, + { + "name": "2.6449", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 6336, + "unique_ratio": 0.416431, + "example_values": [ + "2.5328", + "3.5558", + "2.2541", + "2.6728", + "2.1775" + ] + } + }, + { + "name": "0.3918", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 6002, + "unique_ratio": 0.394479, + "example_values": [ + "0.4047", + "0.1769", + "0.7521", + "0.4437", + "0.7708" + ] + } + }, + { + "name": "0.1982", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 4230, + "unique_ratio": 0.278015, + "example_values": [ + "0.2155", + "0.1003", + "0.4095", + "0.2553", + "0.4352" + ] + } + }, + { + "name": "27.7004", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 14996, + "unique_ratio": 0.985606, + "example_values": [ + "-25.0369", + "-95.8266", + "2.8528", + "12.3981", + "14.3006" + ] + } + }, + { + "name": "22.011", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 14984, + "unique_ratio": 0.984818, + "example_values": [ + "-23.1659", + "14.9809", + "-9.7666", + "19.9081", + "-3.6418" + ] + } + }, + { + "name": "-8.2027", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 14795, + "unique_ratio": 0.972396, + "example_values": [ + "3.492", + "29.3812", + "5.0346", + "-5.3204", + "-11.3646" + ] + } + }, + { + "name": "40.092", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 14518, + "unique_ratio": 0.95419, + "example_values": [ + "0.334", + "4.134", + "13.794", + "20.78", + "20.124" + ] + } + }, + { + "name": "81.8828", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 14824, + "unique_ratio": 0.974302, + "example_values": [ + "132.907", + "286.69", + "108.464", + "180.4168", + "222.525" + ] + } + }, + { + "name": "g", + "role": "target", + "semantic_type": "categorical", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 2, + "unique_ratio": 0.000131, + "example_values": [ + "g", + "h" + ] + } + } + ] +} \ No newline at end of file diff --git a/timecost/n11/bayesnet/bayesnet-n11-20260502_020508/runtime_result.json b/timecost/n11/bayesnet/bayesnet-n11-20260502_020508/runtime_result.json new file mode 100644 index 0000000000000000000000000000000000000000..7231f024b36c5f849d443ba4930464c605f6cad6 --- /dev/null +++ b/timecost/n11/bayesnet/bayesnet-n11-20260502_020508/runtime_result.json @@ -0,0 +1,27 @@ +{ + "dataset_id": "n11", + "model": "bayesnet", + "run_id": "bayesnet-n11-20260502_020508", + "public_gate_status": "pass", + "adapter_ready_status": "pass", + "train_status": "success", + "generate_status": "success", + "reason_code": null, + "reason_detail": null, + "artifacts": { + "synthetic_csv": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/n11/bayesnet/bayesnet-n11-20260502_020508/bayesnet-n11-15215-20260502_020516.csv", + "model_path": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/n11/bayesnet/bayesnet-n11-20260502_020508/bayesnet_model.pkl" + }, + "timings": { + "train": { + "started_at": "2026-05-02T02:05:08", + "ended_at": "2026-05-02T02:05:16", + "duration_sec": 7.871 + }, + "generate": { + "started_at": "2026-05-02T02:05:16", + "ended_at": "2026-05-02T02:05:21", + "duration_sec": 5.949 + } + } +} \ No newline at end of file diff --git a/timecost/n11/bayesnet/bayesnet-n11-20260502_020508/staged/bayesnet/adapter_report.json b/timecost/n11/bayesnet/bayesnet-n11-20260502_020508/staged/bayesnet/adapter_report.json new file mode 100644 index 0000000000000000000000000000000000000000..e48785bf889adc46fa51d93f15a6689b504338bf --- /dev/null +++ b/timecost/n11/bayesnet/bayesnet-n11-20260502_020508/staged/bayesnet/adapter_report.json @@ -0,0 +1,7 @@ +{ + "adapter_ready_status": "pass", + "adapter_fail_reason_code": null, + "adapter_fail_detail": null, + "adapter_transforms_applied": [], + "model_input_manifest": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/n11/bayesnet/bayesnet-n11-20260502_020508/staged/bayesnet/model_input_manifest.json" +} \ No newline at end of file diff --git a/timecost/n11/bayesnet/bayesnet-n11-20260502_020508/staged/bayesnet/adapter_transforms_applied.json b/timecost/n11/bayesnet/bayesnet-n11-20260502_020508/staged/bayesnet/adapter_transforms_applied.json new file mode 100644 index 0000000000000000000000000000000000000000..0637a088a01e8ddab3bf3fa98dbe804cbde1a0dc --- /dev/null +++ b/timecost/n11/bayesnet/bayesnet-n11-20260502_020508/staged/bayesnet/adapter_transforms_applied.json @@ -0,0 +1 @@ +[] \ No newline at end of file diff --git a/timecost/n11/bayesnet/bayesnet-n11-20260502_020508/staged/bayesnet/model_input_manifest.json b/timecost/n11/bayesnet/bayesnet-n11-20260502_020508/staged/bayesnet/model_input_manifest.json new file mode 100644 index 0000000000000000000000000000000000000000..3e42f8ec576f0c4846e2cd8ea0250be7ee0c682b --- /dev/null +++ b/timecost/n11/bayesnet/bayesnet-n11-20260502_020508/staged/bayesnet/model_input_manifest.json @@ -0,0 +1,242 @@ +{ + "dataset_id": "n11", + "model": "bayesnet", + "target_column": "g", + "task_type": "classification", + "column_schema": [ + { + "name": "28.7967", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 14962, + "unique_ratio": 0.983372, + "example_values": [ + "33.9347", + "118.601", + "19.83", + "33.2691", + "13.1404" + ] + } + }, + { + "name": "16.0021", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 14662, + "unique_ratio": 0.963654, + "example_values": [ + "10.8862", + "44.2479", + "7.3303", + "9.1269", + "10.8527" + ] + } + }, + { + "name": "2.6449", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 6336, + "unique_ratio": 0.416431, + "example_values": [ + "2.5328", + "3.5558", + "2.2541", + "2.6728", + "2.1775" + ] + } + }, + { + "name": "0.3918", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 6002, + "unique_ratio": 0.394479, + "example_values": [ + "0.4047", + "0.1769", + "0.7521", + "0.4437", + "0.7708" + ] + } + }, + { + "name": "0.1982", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 4230, + "unique_ratio": 0.278015, + "example_values": [ + "0.2155", + "0.1003", + "0.4095", + "0.2553", + "0.4352" + ] + } + }, + { + "name": "27.7004", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 14996, + "unique_ratio": 0.985606, + "example_values": [ + "-25.0369", + "-95.8266", + "2.8528", + "12.3981", + "14.3006" + ] + } + }, + { + "name": "22.011", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 14984, + "unique_ratio": 0.984818, + "example_values": [ + "-23.1659", + "14.9809", + "-9.7666", + "19.9081", + "-3.6418" + ] + } + }, + { + "name": "-8.2027", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 14795, + "unique_ratio": 0.972396, + "example_values": [ + "3.492", + "29.3812", + "5.0346", + "-5.3204", + "-11.3646" + ] + } + }, + { + "name": "40.092", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 14518, + "unique_ratio": 0.95419, + "example_values": [ + "0.334", + "4.134", + "13.794", + "20.78", + "20.124" + ] + } + }, + { + "name": "81.8828", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 14824, + "unique_ratio": 0.974302, + "example_values": [ + "132.907", + "286.69", + "108.464", + "180.4168", + "222.525" + ] + } + }, + { + "name": "g", + "role": "target", + "semantic_type": "categorical", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 2, + "unique_ratio": 0.000131, + "example_values": [ + "g", + "h" + ] + } + } + ], + "public_manifest": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/n11/bayesnet/bayesnet-n11-20260502_020508/public_gate/staged_input_manifest.json", + "train_csv": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/n11/bayesnet/bayesnet-n11-20260502_020508/staged/public/train.csv", + "val_csv": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/n11/bayesnet/bayesnet-n11-20260502_020508/staged/public/val.csv", + "test_csv": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/n11/bayesnet/bayesnet-n11-20260502_020508/staged/public/test.csv", + "features_json": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/n11/bayesnet/bayesnet-n11-20260502_020508/staged/public/staged_features.json", + "public_gate_report": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/n11/bayesnet/bayesnet-n11-20260502_020508/public_gate/public_gate_report.json" +} \ No newline at end of file diff --git a/timecost/n11/bayesnet/bayesnet-n11-20260502_020508/staged/public/staged_features.json b/timecost/n11/bayesnet/bayesnet-n11-20260502_020508/staged/public/staged_features.json new file mode 100644 index 0000000000000000000000000000000000000000..bdb9c28b9d52f06368851a08caadc305035fc1b7 --- /dev/null +++ b/timecost/n11/bayesnet/bayesnet-n11-20260502_020508/staged/public/staged_features.json @@ -0,0 +1,57 @@ +[ + { + "feature_name": "28.7967", + "data_type": "continuous", + "is_target": false + }, + { + "feature_name": "16.0021", + "data_type": "continuous", + "is_target": false + }, + { + "feature_name": "2.6449", + "data_type": "continuous", + "is_target": false + }, + { + "feature_name": "0.3918", + "data_type": "continuous", + "is_target": false + }, + { + "feature_name": "0.1982", + "data_type": "continuous", + "is_target": false + }, + { + "feature_name": "27.7004", + "data_type": "continuous", + "is_target": false + }, + { + "feature_name": "22.011", + "data_type": "continuous", + "is_target": false + }, + { + "feature_name": "-8.2027", + "data_type": "continuous", + "is_target": false + }, + { + "feature_name": "40.092", + "data_type": "continuous", + "is_target": false + }, + { + "feature_name": "81.8828", + "data_type": "continuous", + "is_target": false + }, + { + "feature_name": "g", + "data_type": "categorical", + "is_target": true + } +] \ No newline at end of file diff --git a/timecost/n11/bayesnet/bayesnet-n11-20260502_020508/staged/public/test.csv b/timecost/n11/bayesnet/bayesnet-n11-20260502_020508/staged/public/test.csv new file mode 100644 index 0000000000000000000000000000000000000000..59e413eb15b50a2ac49cd95bbe57b0d0018ccf95 --- /dev/null +++ b/timecost/n11/bayesnet/bayesnet-n11-20260502_020508/staged/public/test.csv @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:bf4e935f84569b849b662718eaa19be605037d46a5f7391f164728d6d9c3bb50 +size 148017 diff --git a/timecost/n11/bayesnet/bayesnet-n11-20260502_020508/staged/public/train.csv b/timecost/n11/bayesnet/bayesnet-n11-20260502_020508/staged/public/train.csv new file mode 100644 index 0000000000000000000000000000000000000000..cc5acd9fe00e8a233592b4da9797300adc83744b --- /dev/null +++ b/timecost/n11/bayesnet/bayesnet-n11-20260502_020508/staged/public/train.csv @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:3ab621ac8239797506ce800c1409422452b8127da93add91dd9e6d63ddeec6f7 +size 1182326 diff --git a/timecost/n11/bayesnet/bayesnet-n11-20260502_020508/staged/public/val.csv b/timecost/n11/bayesnet/bayesnet-n11-20260502_020508/staged/public/val.csv new file mode 100644 index 0000000000000000000000000000000000000000..e0a3b6ab9c53a7f8d97dff3290e643431f9ad023 --- /dev/null +++ b/timecost/n11/bayesnet/bayesnet-n11-20260502_020508/staged/public/val.csv @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:374e44edf25e58ca37eabbef0485c98cecdbdfa9d24da738937f404840bfad44 +size 147784 diff --git a/timecost/n11/bayesnet/bayesnet-n11-20260502_020508/train_20260502_020508.log b/timecost/n11/bayesnet/bayesnet-n11-20260502_020508/train_20260502_020508.log new file mode 100644 index 0000000000000000000000000000000000000000..0d5867c68a9ca6d995c91252a9ec1e33b8591825 --- /dev/null +++ b/timecost/n11/bayesnet/bayesnet-n11-20260502_020508/train_20260502_020508.log @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:44f315797a0a5bdcbc9f9bac9dbd4b6524fe22b7c1beaf97d8ebafa9868afea1 +size 3744 diff --git a/timecost/n11/ctgan/ctgan-n11-20260430_235732/_ctgan_generate.py b/timecost/n11/ctgan/ctgan-n11-20260430_235732/_ctgan_generate.py new file mode 100644 index 0000000000000000000000000000000000000000..82700d451beb5cd941aac600c02778e846bfb546 --- /dev/null +++ b/timecost/n11/ctgan/ctgan-n11-20260430_235732/_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-Benchmark-trainonly-v1/n11/ctgan/ctgan-n11-20260430_235732/models_300epochs/ctgan_300epochs.pt") +total = 15215 +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-Benchmark-trainonly-v1/n11/ctgan/ctgan-n11-20260430_235732/ctgan-n11-15215-20260501_000111.csv", index=False) +print("[CTGAN] Generated", total, "rows in", len(parts), "chunks ->", "/work/output-Benchmark-trainonly-v1/n11/ctgan/ctgan-n11-20260430_235732/ctgan-n11-15215-20260501_000111.csv") \ No newline at end of file diff --git a/timecost/n11/ctgan/ctgan-n11-20260430_235732/ctgan-n11-15215-20260501_000111.csv b/timecost/n11/ctgan/ctgan-n11-20260430_235732/ctgan-n11-15215-20260501_000111.csv new file mode 100644 index 0000000000000000000000000000000000000000..498a2fac48e3bcf352aee174d135a3474271f6bc --- /dev/null +++ b/timecost/n11/ctgan/ctgan-n11-20260430_235732/ctgan-n11-15215-20260501_000111.csv @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:ac8fe60ab2beab737319060ed95f1d397e18cbadd382fb6552c7d6cb6e16f487 +size 2885629 diff --git a/timecost/n11/ctgan/ctgan-n11-20260430_235732/ctgan_metadata.json b/timecost/n11/ctgan/ctgan-n11-20260430_235732/ctgan_metadata.json new file mode 100644 index 0000000000000000000000000000000000000000..cb19699b85fe49965d86e54abd3c67a8ec6163a8 --- /dev/null +++ b/timecost/n11/ctgan/ctgan-n11-20260430_235732/ctgan_metadata.json @@ -0,0 +1,48 @@ +{ + "columns": [ + { + "name": "28.7967", + "type": "continuous" + }, + { + "name": "16.0021", + "type": "continuous" + }, + { + "name": "2.6449", + "type": "continuous" + }, + { + "name": "0.3918", + "type": "continuous" + }, + { + "name": "0.1982", + "type": "continuous" + }, + { + "name": "27.7004", + "type": "continuous" + }, + { + "name": "22.011", + "type": "continuous" + }, + { + "name": "-8.2027", + "type": "continuous" + }, + { + "name": "40.092", + "type": "continuous" + }, + { + "name": "81.8828", + "type": "continuous" + }, + { + "name": "g", + "type": "categorical" + } + ] +} \ No newline at end of file diff --git a/timecost/n11/ctgan/ctgan-n11-20260430_235732/gen_20260501_000111.log b/timecost/n11/ctgan/ctgan-n11-20260430_235732/gen_20260501_000111.log new file mode 100644 index 0000000000000000000000000000000000000000..c2e4de1b169963f41dee908af3b0f6ad710b14a0 --- /dev/null +++ b/timecost/n11/ctgan/ctgan-n11-20260430_235732/gen_20260501_000111.log @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:008febb552773f18eee9bca44dd9c372995b1d303111f6dd8777bb5fe92c68a3 +size 565 diff --git a/timecost/n11/ctgan/ctgan-n11-20260430_235732/input_snapshot.json b/timecost/n11/ctgan/ctgan-n11-20260430_235732/input_snapshot.json new file mode 100644 index 0000000000000000000000000000000000000000..d0df46d6279ceed752adf467715dbe95c309efe1 --- /dev/null +++ b/timecost/n11/ctgan/ctgan-n11-20260430_235732/input_snapshot.json @@ -0,0 +1,36 @@ +{ + "dataset_id": "n11", + "model": "ctgan", + "inputs": { + "train_csv": { + "path": "/data/jialinzhang/SynthesizePipeline-server/DatasetNew/n11/n11-train.csv", + "exists": true, + "size": 1197106, + "sha256": "f8253c0573a8f028c0b1e17752d214fbad956d0ace350d0dee3947f3dfafbc75" + }, + "val_csv": { + "path": "/data/jialinzhang/SynthesizePipeline-server/DatasetNew/n11/n11-val.csv", + "exists": true, + "size": 149602, + "sha256": "7bde20178eb7de9523d4df719a3b461656f5704e3a03187c8289b2299dc8e458" + }, + "test_csv": { + "path": "/data/jialinzhang/SynthesizePipeline-server/DatasetNew/n11/n11-test.csv", + "exists": true, + "size": 149859, + "sha256": "855b55969de2da1341d428edef6dedfdf0c60f016b9fa08efaf8a883af6a2c53" + }, + "profile_json": { + "path": "/data/jialinzhang/SynthesizePipeline-server/DatasetNew/artifacts/data_core/tabular/n11/n11-dataset_profile.json", + "exists": true, + "size": 5104, + "sha256": "0bd368d22598246defd33bda12c9872165f26e798cc462ec472d193f322fba07" + }, + "contract_json": { + "path": "/data/jialinzhang/SynthesizePipeline-server/DatasetNew/artifacts/data_core/tabular/n11/n11-dataset_contract_v1.json", + "exists": true, + "size": 5874, + "sha256": "ad3f01eafe9fb37754eed9be9bd058390fd3a4f54d8be4ceb4b5326a9901da9d" + } + } +} \ No newline at end of file diff --git a/timecost/n11/ctgan/ctgan-n11-20260430_235732/models_300epochs/ctgan_300epochs.pt b/timecost/n11/ctgan/ctgan-n11-20260430_235732/models_300epochs/ctgan_300epochs.pt new file mode 100644 index 0000000000000000000000000000000000000000..c72139967513b77bb9ccc5f9ca8bbf6e4c49b304 --- /dev/null +++ b/timecost/n11/ctgan/ctgan-n11-20260430_235732/models_300epochs/ctgan_300epochs.pt @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:480b967cee90ef2aa7250e1882487b647f3de0a0c5898dc8d80bdc00e8507ce6 +size 1315811 diff --git a/timecost/n11/ctgan/ctgan-n11-20260430_235732/models_300epochs/train_20260430_235732.log b/timecost/n11/ctgan/ctgan-n11-20260430_235732/models_300epochs/train_20260430_235732.log new file mode 100644 index 0000000000000000000000000000000000000000..a43e82075950efd7956a81dd7161ea18a7edfb4c --- /dev/null +++ b/timecost/n11/ctgan/ctgan-n11-20260430_235732/models_300epochs/train_20260430_235732.log @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:40e4b80d17fef80282ae68ef3d824acbc611e6b7c8a4d7c052f37bf632e88d03 +size 2437 diff --git a/timecost/n11/ctgan/ctgan-n11-20260430_235732/public_gate/normalized_schema_snapshot.json b/timecost/n11/ctgan/ctgan-n11-20260430_235732/public_gate/normalized_schema_snapshot.json new file mode 100644 index 0000000000000000000000000000000000000000..96904695eb041844b615aa285fda674f1da87108 --- /dev/null +++ b/timecost/n11/ctgan/ctgan-n11-20260430_235732/public_gate/normalized_schema_snapshot.json @@ -0,0 +1,235 @@ +{ + "dataset_id": "n11", + "target_column": "g", + "task_type": "classification", + "columns": [ + { + "name": "28.7967", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 14962, + "unique_ratio": 0.983372, + "example_values": [ + "33.9347", + "118.601", + "19.83", + "33.2691", + "13.1404" + ] + } + }, + { + "name": "16.0021", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 14662, + "unique_ratio": 0.963654, + "example_values": [ + "10.8862", + "44.2479", + "7.3303", + "9.1269", + "10.8527" + ] + } + }, + { + "name": "2.6449", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 6336, + "unique_ratio": 0.416431, + "example_values": [ + "2.5328", + "3.5558", + "2.2541", + "2.6728", + "2.1775" + ] + } + }, + { + "name": "0.3918", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 6002, + "unique_ratio": 0.394479, + "example_values": [ + "0.4047", + "0.1769", + "0.7521", + "0.4437", + "0.7708" + ] + } + }, + { + "name": "0.1982", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 4230, + "unique_ratio": 0.278015, + "example_values": [ + "0.2155", + "0.1003", + "0.4095", + "0.2553", + "0.4352" + ] + } + }, + { + "name": "27.7004", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 14996, + "unique_ratio": 0.985606, + "example_values": [ + "-25.0369", + "-95.8266", + "2.8528", + "12.3981", + "14.3006" + ] + } + }, + { + "name": "22.011", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 14984, + "unique_ratio": 0.984818, + "example_values": [ + "-23.1659", + "14.9809", + "-9.7666", + "19.9081", + "-3.6418" + ] + } + }, + { + "name": "-8.2027", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 14795, + "unique_ratio": 0.972396, + "example_values": [ + "3.492", + "29.3812", + "5.0346", + "-5.3204", + "-11.3646" + ] + } + }, + { + "name": "40.092", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 14518, + "unique_ratio": 0.95419, + "example_values": [ + "0.334", + "4.134", + "13.794", + "20.78", + "20.124" + ] + } + }, + { + "name": "81.8828", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 14824, + "unique_ratio": 0.974302, + "example_values": [ + "132.907", + "286.69", + "108.464", + "180.4168", + "222.525" + ] + } + }, + { + "name": "g", + "role": "target", + "semantic_type": "categorical", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 2, + "unique_ratio": 0.000131, + "example_values": [ + "g", + "h" + ] + } + } + ] +} \ No newline at end of file diff --git a/timecost/n11/ctgan/ctgan-n11-20260430_235732/public_gate/public_gate_report.json b/timecost/n11/ctgan/ctgan-n11-20260430_235732/public_gate/public_gate_report.json new file mode 100644 index 0000000000000000000000000000000000000000..4864c3fc29664a3b44991534165974fed3741dfa --- /dev/null +++ b/timecost/n11/ctgan/ctgan-n11-20260430_235732/public_gate/public_gate_report.json @@ -0,0 +1,37 @@ +{ + "dataset_id": "n11", + "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": "g", + "task_type": "classification", + "input_splits": { + "train": "/data/jialinzhang/SynthesizePipeline-server/DatasetNew/n11/n11-train.csv", + "val": "/data/jialinzhang/SynthesizePipeline-server/DatasetNew/n11/n11-val.csv", + "test": "/data/jialinzhang/SynthesizePipeline-server/DatasetNew/n11/n11-test.csv" + } +} \ No newline at end of file diff --git a/timecost/n11/ctgan/ctgan-n11-20260430_235732/public_gate/staged_input_manifest.json b/timecost/n11/ctgan/ctgan-n11-20260430_235732/public_gate/staged_input_manifest.json new file mode 100644 index 0000000000000000000000000000000000000000..4587b5859d26cb3073ebfcdf8cb80622c88f5e05 --- /dev/null +++ b/timecost/n11/ctgan/ctgan-n11-20260430_235732/public_gate/staged_input_manifest.json @@ -0,0 +1,240 @@ +{ + "dataset_id": "n11", + "target_column": "g", + "task_type": "classification", + "train_csv": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/n11/ctgan/ctgan-n11-20260430_235732/staged/public/train.csv", + "val_csv": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/n11/ctgan/ctgan-n11-20260430_235732/staged/public/val.csv", + "test_csv": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/n11/ctgan/ctgan-n11-20260430_235732/staged/public/test.csv", + "features_json": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/n11/ctgan/ctgan-n11-20260430_235732/staged/public/staged_features.json", + "public_gate_report": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/n11/ctgan/ctgan-n11-20260430_235732/public_gate/public_gate_report.json", + "column_schema": [ + { + "name": "28.7967", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 14962, + "unique_ratio": 0.983372, + "example_values": [ + "33.9347", + "118.601", + "19.83", + "33.2691", + "13.1404" + ] + } + }, + { + "name": "16.0021", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 14662, + "unique_ratio": 0.963654, + "example_values": [ + "10.8862", + "44.2479", + "7.3303", + "9.1269", + "10.8527" + ] + } + }, + { + "name": "2.6449", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 6336, + "unique_ratio": 0.416431, + "example_values": [ + "2.5328", + "3.5558", + "2.2541", + "2.6728", + "2.1775" + ] + } + }, + { + "name": "0.3918", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 6002, + "unique_ratio": 0.394479, + "example_values": [ + "0.4047", + "0.1769", + "0.7521", + "0.4437", + "0.7708" + ] + } + }, + { + "name": "0.1982", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 4230, + "unique_ratio": 0.278015, + "example_values": [ + "0.2155", + "0.1003", + "0.4095", + "0.2553", + "0.4352" + ] + } + }, + { + "name": "27.7004", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 14996, + "unique_ratio": 0.985606, + "example_values": [ + "-25.0369", + "-95.8266", + "2.8528", + "12.3981", + "14.3006" + ] + } + }, + { + "name": "22.011", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 14984, + "unique_ratio": 0.984818, + "example_values": [ + "-23.1659", + "14.9809", + "-9.7666", + "19.9081", + "-3.6418" + ] + } + }, + { + "name": "-8.2027", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 14795, + "unique_ratio": 0.972396, + "example_values": [ + "3.492", + "29.3812", + "5.0346", + "-5.3204", + "-11.3646" + ] + } + }, + { + "name": "40.092", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 14518, + "unique_ratio": 0.95419, + "example_values": [ + "0.334", + "4.134", + "13.794", + "20.78", + "20.124" + ] + } + }, + { + "name": "81.8828", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 14824, + "unique_ratio": 0.974302, + "example_values": [ + "132.907", + "286.69", + "108.464", + "180.4168", + "222.525" + ] + } + }, + { + "name": "g", + "role": "target", + "semantic_type": "categorical", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 2, + "unique_ratio": 0.000131, + "example_values": [ + "g", + "h" + ] + } + } + ] +} \ No newline at end of file diff --git a/timecost/n11/ctgan/ctgan-n11-20260430_235732/runtime_result.json b/timecost/n11/ctgan/ctgan-n11-20260430_235732/runtime_result.json new file mode 100644 index 0000000000000000000000000000000000000000..779c747ffd2cc385e31b4fd0ee34224a702d9246 --- /dev/null +++ b/timecost/n11/ctgan/ctgan-n11-20260430_235732/runtime_result.json @@ -0,0 +1,27 @@ +{ + "dataset_id": "n11", + "model": "ctgan", + "run_id": "ctgan-n11-20260430_235732", + "public_gate_status": "pass", + "adapter_ready_status": "pass", + "train_status": "success", + "generate_status": "success", + "reason_code": null, + "reason_detail": null, + "artifacts": { + "synthetic_csv": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/n11/ctgan/ctgan-n11-20260430_235732/ctgan-n11-15215-20260501_000111.csv", + "model_path": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/n11/ctgan/ctgan-n11-20260430_235732/models_300epochs/ctgan_300epochs.pt" + }, + "timings": { + "train": { + "started_at": "2026-04-30T23:57:32", + "ended_at": "2026-05-01T00:01:11", + "duration_sec": 219.094 + }, + "generate": { + "started_at": "2026-05-01T00:01:11", + "ended_at": "2026-05-01T00:01:17", + "duration_sec": 5.672 + } + } +} \ No newline at end of file diff --git a/timecost/n11/ctgan/ctgan-n11-20260430_235732/staged/ctgan/adapter_report.json b/timecost/n11/ctgan/ctgan-n11-20260430_235732/staged/ctgan/adapter_report.json new file mode 100644 index 0000000000000000000000000000000000000000..ea205e0a308bffe4d079aafa7ad7705dc7669b60 --- /dev/null +++ b/timecost/n11/ctgan/ctgan-n11-20260430_235732/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-Benchmark-trainonly-v1/n11/ctgan/ctgan-n11-20260430_235732/staged/ctgan/model_input_manifest.json" +} \ No newline at end of file diff --git a/timecost/n11/ctgan/ctgan-n11-20260430_235732/staged/ctgan/adapter_transforms_applied.json b/timecost/n11/ctgan/ctgan-n11-20260430_235732/staged/ctgan/adapter_transforms_applied.json new file mode 100644 index 0000000000000000000000000000000000000000..0637a088a01e8ddab3bf3fa98dbe804cbde1a0dc --- /dev/null +++ b/timecost/n11/ctgan/ctgan-n11-20260430_235732/staged/ctgan/adapter_transforms_applied.json @@ -0,0 +1 @@ +[] \ No newline at end of file diff --git a/timecost/n11/ctgan/ctgan-n11-20260430_235732/staged/ctgan/model_input_manifest.json b/timecost/n11/ctgan/ctgan-n11-20260430_235732/staged/ctgan/model_input_manifest.json new file mode 100644 index 0000000000000000000000000000000000000000..e053db6c0b1607f76f0075b4fb4c2294656d15d4 --- /dev/null +++ b/timecost/n11/ctgan/ctgan-n11-20260430_235732/staged/ctgan/model_input_manifest.json @@ -0,0 +1,242 @@ +{ + "dataset_id": "n11", + "model": "ctgan", + "target_column": "g", + "task_type": "classification", + "column_schema": [ + { + "name": "28.7967", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 14962, + "unique_ratio": 0.983372, + "example_values": [ + "33.9347", + "118.601", + "19.83", + "33.2691", + "13.1404" + ] + } + }, + { + "name": "16.0021", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 14662, + "unique_ratio": 0.963654, + "example_values": [ + "10.8862", + "44.2479", + "7.3303", + "9.1269", + "10.8527" + ] + } + }, + { + "name": "2.6449", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 6336, + "unique_ratio": 0.416431, + "example_values": [ + "2.5328", + "3.5558", + "2.2541", + "2.6728", + "2.1775" + ] + } + }, + { + "name": "0.3918", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 6002, + "unique_ratio": 0.394479, + "example_values": [ + "0.4047", + "0.1769", + "0.7521", + "0.4437", + "0.7708" + ] + } + }, + { + "name": "0.1982", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 4230, + "unique_ratio": 0.278015, + "example_values": [ + "0.2155", + "0.1003", + "0.4095", + "0.2553", + "0.4352" + ] + } + }, + { + "name": "27.7004", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 14996, + "unique_ratio": 0.985606, + "example_values": [ + "-25.0369", + "-95.8266", + "2.8528", + "12.3981", + "14.3006" + ] + } + }, + { + "name": "22.011", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 14984, + "unique_ratio": 0.984818, + "example_values": [ + "-23.1659", + "14.9809", + "-9.7666", + "19.9081", + "-3.6418" + ] + } + }, + { + "name": "-8.2027", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 14795, + "unique_ratio": 0.972396, + "example_values": [ + "3.492", + "29.3812", + "5.0346", + "-5.3204", + "-11.3646" + ] + } + }, + { + "name": "40.092", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 14518, + "unique_ratio": 0.95419, + "example_values": [ + "0.334", + "4.134", + "13.794", + "20.78", + "20.124" + ] + } + }, + { + "name": "81.8828", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 14824, + "unique_ratio": 0.974302, + "example_values": [ + "132.907", + "286.69", + "108.464", + "180.4168", + "222.525" + ] + } + }, + { + "name": "g", + "role": "target", + "semantic_type": "categorical", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 2, + "unique_ratio": 0.000131, + "example_values": [ + "g", + "h" + ] + } + } + ], + "public_manifest": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/n11/ctgan/ctgan-n11-20260430_235732/public_gate/staged_input_manifest.json", + "train_csv": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/n11/ctgan/ctgan-n11-20260430_235732/staged/public/train.csv", + "val_csv": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/n11/ctgan/ctgan-n11-20260430_235732/staged/public/val.csv", + "test_csv": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/n11/ctgan/ctgan-n11-20260430_235732/staged/public/test.csv", + "features_json": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/n11/ctgan/ctgan-n11-20260430_235732/staged/public/staged_features.json", + "public_gate_report": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/n11/ctgan/ctgan-n11-20260430_235732/public_gate/public_gate_report.json" +} \ No newline at end of file diff --git a/timecost/n11/ctgan/ctgan-n11-20260430_235732/staged/public/staged_features.json b/timecost/n11/ctgan/ctgan-n11-20260430_235732/staged/public/staged_features.json new file mode 100644 index 0000000000000000000000000000000000000000..bdb9c28b9d52f06368851a08caadc305035fc1b7 --- /dev/null +++ b/timecost/n11/ctgan/ctgan-n11-20260430_235732/staged/public/staged_features.json @@ -0,0 +1,57 @@ +[ + { + "feature_name": "28.7967", + "data_type": "continuous", + "is_target": false + }, + { + "feature_name": "16.0021", + "data_type": "continuous", + "is_target": false + }, + { + "feature_name": "2.6449", + "data_type": "continuous", + "is_target": false + }, + { + "feature_name": "0.3918", + "data_type": "continuous", + "is_target": false + }, + { + "feature_name": "0.1982", + "data_type": "continuous", + "is_target": false + }, + { + "feature_name": "27.7004", + "data_type": "continuous", + "is_target": false + }, + { + "feature_name": "22.011", + "data_type": "continuous", + "is_target": false + }, + { + "feature_name": "-8.2027", + "data_type": "continuous", + "is_target": false + }, + { + "feature_name": "40.092", + "data_type": "continuous", + "is_target": false + }, + { + "feature_name": "81.8828", + "data_type": "continuous", + "is_target": false + }, + { + "feature_name": "g", + "data_type": "categorical", + "is_target": true + } +] \ No newline at end of file diff --git a/timecost/n11/ctgan/ctgan-n11-20260430_235732/staged/public/test.csv b/timecost/n11/ctgan/ctgan-n11-20260430_235732/staged/public/test.csv new file mode 100644 index 0000000000000000000000000000000000000000..59e413eb15b50a2ac49cd95bbe57b0d0018ccf95 --- /dev/null +++ b/timecost/n11/ctgan/ctgan-n11-20260430_235732/staged/public/test.csv @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:bf4e935f84569b849b662718eaa19be605037d46a5f7391f164728d6d9c3bb50 +size 148017 diff --git a/timecost/n11/ctgan/ctgan-n11-20260430_235732/staged/public/train.csv b/timecost/n11/ctgan/ctgan-n11-20260430_235732/staged/public/train.csv new file mode 100644 index 0000000000000000000000000000000000000000..cc5acd9fe00e8a233592b4da9797300adc83744b --- /dev/null +++ b/timecost/n11/ctgan/ctgan-n11-20260430_235732/staged/public/train.csv @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:3ab621ac8239797506ce800c1409422452b8127da93add91dd9e6d63ddeec6f7 +size 1182326 diff --git a/timecost/n11/ctgan/ctgan-n11-20260430_235732/staged/public/val.csv b/timecost/n11/ctgan/ctgan-n11-20260430_235732/staged/public/val.csv new file mode 100644 index 0000000000000000000000000000000000000000..e0a3b6ab9c53a7f8d97dff3290e643431f9ad023 --- /dev/null +++ b/timecost/n11/ctgan/ctgan-n11-20260430_235732/staged/public/val.csv @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:374e44edf25e58ca37eabbef0485c98cecdbdfa9d24da738937f404840bfad44 +size 147784 diff --git a/timecost/n11/forestdiffusion/forest-n11-20260503_195211/_fd_X_host.npy b/timecost/n11/forestdiffusion/forest-n11-20260503_195211/_fd_X_host.npy new file mode 100644 index 0000000000000000000000000000000000000000..271241f78130b5517767b66686f871e64bdd15ee --- /dev/null +++ b/timecost/n11/forestdiffusion/forest-n11-20260503_195211/_fd_X_host.npy @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:0346bf8583b64028d74f6afb3d6f48466083db517af967cfb868f8f8fcced3ee +size 669588 diff --git a/timecost/n11/forestdiffusion/forest-n11-20260503_195211/_fd_gen.py b/timecost/n11/forestdiffusion/forest-n11-20260503_195211/_fd_gen.py new file mode 100644 index 0000000000000000000000000000000000000000..6d1c50a612ab03c3591050beb2931c7d8715e3f9 --- /dev/null +++ b/timecost/n11/forestdiffusion/forest-n11-20260503_195211/_fd_gen.py @@ -0,0 +1,8 @@ + +import joblib, pandas as pd +m, meta = joblib.load(r'/work/output-Benchmark-trainonly-v1/n11/forestdiffusion/forest-n11-20260503_195211/forestdiffusion_model.joblib') +# generate:batch_size 为样本数 +arr = m.generate(batch_size=int(15215)) +df = pd.DataFrame(arr, columns=meta["column_names"]) +df.to_csv(r'/work/output-Benchmark-trainonly-v1/n11/forestdiffusion/forest-n11-20260503_195211/forest-n11-15215-20260503_211948.csv', index=False) +print("saved", len(df)) diff --git a/timecost/n11/forestdiffusion/forest-n11-20260503_195211/_fd_meta_host.json b/timecost/n11/forestdiffusion/forest-n11-20260503_195211/_fd_meta_host.json new file mode 100644 index 0000000000000000000000000000000000000000..80c3c7cdd1edd7a8bff257ae8e3d367944ff3e82 --- /dev/null +++ b/timecost/n11/forestdiffusion/forest-n11-20260503_195211/_fd_meta_host.json @@ -0,0 +1 @@ +{"column_names": ["28.7967", "16.0021", "2.6449", "0.3918", "0.1982", "27.7004", "22.011", "-8.2027", "40.092", "81.8828", "g"], "cat_indexes": []} \ No newline at end of file diff --git a/timecost/n11/forestdiffusion/forest-n11-20260503_195211/_fd_train.py b/timecost/n11/forestdiffusion/forest-n11-20260503_195211/_fd_train.py new file mode 100644 index 0000000000000000000000000000000000000000..59fe16770473595dcd58ca3d086209df5fbe1200 --- /dev/null +++ b/timecost/n11/forestdiffusion/forest-n11-20260503_195211/_fd_train.py @@ -0,0 +1,28 @@ + +import shutil, json +shutil.copy(r'/work/output-Benchmark-trainonly-v1/n11/forestdiffusion/forest-n11-20260503_195211/_fd_X_host.npy', '/tmp/fd_X.npy') +with open(r'/work/output-Benchmark-trainonly-v1/n11/forestdiffusion/forest-n11-20260503_195211/_fd_meta_host.json') as f: + open('/tmp/fd_meta.json','w').write(f.read()) + +import numpy as np, joblib, json, os +from ForestDiffusion import ForestDiffusionModel +X = np.load("/tmp/fd_X.npy") +with open("/tmp/fd_meta.json") as f: + meta = json.load(f) +cat_indexes = meta["cat_indexes"] +print( + "[ForestDiffusion] train config: " + f"rows={X.shape[0]} cols={X.shape[1]} n_t=20 " + f"n_estimators=100 duplicate_K=20 n_jobs=2 " + f"xgb_verbosity=1", + flush=True, +) +m = ForestDiffusionModel( + X, n_t=20, n_estimators=100, duplicate_K=20, n_jobs=2, + model="xgboost", max_depth=6, tree_method="hist", cat_indexes=cat_indexes, + verbosity=1, +) +joblib.dump((m, meta), "/tmp/fd_model.joblib") +print("ForestDiffusion train OK") + +shutil.copy('/tmp/fd_model.joblib', r'/work/output-Benchmark-trainonly-v1/n11/forestdiffusion/forest-n11-20260503_195211/forestdiffusion_model.joblib') diff --git a/timecost/n11/forestdiffusion/forest-n11-20260503_195211/forest-n11-15215-20260503_211948.csv b/timecost/n11/forestdiffusion/forest-n11-20260503_195211/forest-n11-15215-20260503_211948.csv new file mode 100644 index 0000000000000000000000000000000000000000..e7c10a97d90ef0195cca483aa8606a57f686c600 --- /dev/null +++ b/timecost/n11/forestdiffusion/forest-n11-20260503_195211/forest-n11-15215-20260503_211948.csv @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:5306a03af445c940f39afbb0ad66801284fb99a411f176ad2ca86dd929ff521d +size 3039046 diff --git a/timecost/n11/forestdiffusion/forest-n11-20260503_195211/forestdiffusion_model.joblib b/timecost/n11/forestdiffusion/forest-n11-20260503_195211/forestdiffusion_model.joblib new file mode 100644 index 0000000000000000000000000000000000000000..4ff5dd8e8ddc62339d8237de64cd2dfb466d0ece --- /dev/null +++ b/timecost/n11/forestdiffusion/forest-n11-20260503_195211/forestdiffusion_model.joblib @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:64ed3d5b788c1bb35e9ef48e190ca2772289cd323416654aaea8eb04a7bf4769 +size 106363897 diff --git a/timecost/n11/forestdiffusion/forest-n11-20260503_195211/gen_20260503_211948.log b/timecost/n11/forestdiffusion/forest-n11-20260503_195211/gen_20260503_211948.log new file mode 100644 index 0000000000000000000000000000000000000000..13ec48336bd7b9a741fe2fe60bf60e87f5b73dab --- /dev/null +++ b/timecost/n11/forestdiffusion/forest-n11-20260503_195211/gen_20260503_211948.log @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:afa2bb5f293a8017c1dda4f3ca09d89b144ed1888a6a42bfc81262a9d88a6069 +size 295 diff --git a/timecost/n11/forestdiffusion/forest-n11-20260503_195211/input_snapshot.json b/timecost/n11/forestdiffusion/forest-n11-20260503_195211/input_snapshot.json new file mode 100644 index 0000000000000000000000000000000000000000..14deafd1b956a29b2b05d4ff950ddc729d90103c --- /dev/null +++ b/timecost/n11/forestdiffusion/forest-n11-20260503_195211/input_snapshot.json @@ -0,0 +1,36 @@ +{ + "dataset_id": "n11", + "model": "forestdiffusion", + "inputs": { + "train_csv": { + "path": "/data/jialinzhang/SynthesizePipeline-server/DatasetNew/n11/n11-train.csv", + "exists": true, + "size": 1197106, + "sha256": "f8253c0573a8f028c0b1e17752d214fbad956d0ace350d0dee3947f3dfafbc75" + }, + "val_csv": { + "path": "/data/jialinzhang/SynthesizePipeline-server/DatasetNew/n11/n11-val.csv", + "exists": true, + "size": 149602, + "sha256": "7bde20178eb7de9523d4df719a3b461656f5704e3a03187c8289b2299dc8e458" + }, + "test_csv": { + "path": "/data/jialinzhang/SynthesizePipeline-server/DatasetNew/n11/n11-test.csv", + "exists": true, + "size": 149859, + "sha256": "855b55969de2da1341d428edef6dedfdf0c60f016b9fa08efaf8a883af6a2c53" + }, + "profile_json": { + "path": "/data/jialinzhang/SynthesizePipeline-server/DatasetNew/artifacts/data_core/tabular/n11/n11-dataset_profile.json", + "exists": true, + "size": 5104, + "sha256": "0bd368d22598246defd33bda12c9872165f26e798cc462ec472d193f322fba07" + }, + "contract_json": { + "path": "/data/jialinzhang/SynthesizePipeline-server/DatasetNew/artifacts/data_core/tabular/n11/n11-dataset_contract_v1.json", + "exists": true, + "size": 5874, + "sha256": "ad3f01eafe9fb37754eed9be9bd058390fd3a4f54d8be4ceb4b5326a9901da9d" + } + } +} \ No newline at end of file diff --git a/timecost/n11/forestdiffusion/forest-n11-20260503_195211/models_fd/model.joblib b/timecost/n11/forestdiffusion/forest-n11-20260503_195211/models_fd/model.joblib new file mode 100644 index 0000000000000000000000000000000000000000..4ff5dd8e8ddc62339d8237de64cd2dfb466d0ece --- /dev/null +++ b/timecost/n11/forestdiffusion/forest-n11-20260503_195211/models_fd/model.joblib @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:64ed3d5b788c1bb35e9ef48e190ca2772289cd323416654aaea8eb04a7bf4769 +size 106363897 diff --git a/timecost/n11/forestdiffusion/forest-n11-20260503_195211/public_gate/normalized_schema_snapshot.json b/timecost/n11/forestdiffusion/forest-n11-20260503_195211/public_gate/normalized_schema_snapshot.json new file mode 100644 index 0000000000000000000000000000000000000000..96904695eb041844b615aa285fda674f1da87108 --- /dev/null +++ b/timecost/n11/forestdiffusion/forest-n11-20260503_195211/public_gate/normalized_schema_snapshot.json @@ -0,0 +1,235 @@ +{ + "dataset_id": "n11", + "target_column": "g", + "task_type": "classification", + "columns": [ + { + "name": "28.7967", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 14962, + "unique_ratio": 0.983372, + "example_values": [ + "33.9347", + "118.601", + "19.83", + "33.2691", + "13.1404" + ] + } + }, + { + "name": "16.0021", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 14662, + "unique_ratio": 0.963654, + "example_values": [ + "10.8862", + "44.2479", + "7.3303", + "9.1269", + "10.8527" + ] + } + }, + { + "name": "2.6449", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 6336, + "unique_ratio": 0.416431, + "example_values": [ + "2.5328", + "3.5558", + "2.2541", + "2.6728", + "2.1775" + ] + } + }, + { + "name": "0.3918", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 6002, + "unique_ratio": 0.394479, + "example_values": [ + "0.4047", + "0.1769", + "0.7521", + "0.4437", + "0.7708" + ] + } + }, + { + "name": "0.1982", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 4230, + "unique_ratio": 0.278015, + "example_values": [ + "0.2155", + "0.1003", + "0.4095", + "0.2553", + "0.4352" + ] + } + }, + { + "name": "27.7004", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 14996, + "unique_ratio": 0.985606, + "example_values": [ + "-25.0369", + "-95.8266", + "2.8528", + "12.3981", + "14.3006" + ] + } + }, + { + "name": "22.011", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 14984, + "unique_ratio": 0.984818, + "example_values": [ + "-23.1659", + "14.9809", + "-9.7666", + "19.9081", + "-3.6418" + ] + } + }, + { + "name": "-8.2027", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 14795, + "unique_ratio": 0.972396, + "example_values": [ + "3.492", + "29.3812", + "5.0346", + "-5.3204", + "-11.3646" + ] + } + }, + { + "name": "40.092", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 14518, + "unique_ratio": 0.95419, + "example_values": [ + "0.334", + "4.134", + "13.794", + "20.78", + "20.124" + ] + } + }, + { + "name": "81.8828", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 14824, + "unique_ratio": 0.974302, + "example_values": [ + "132.907", + "286.69", + "108.464", + "180.4168", + "222.525" + ] + } + }, + { + "name": "g", + "role": "target", + "semantic_type": "categorical", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 2, + "unique_ratio": 0.000131, + "example_values": [ + "g", + "h" + ] + } + } + ] +} \ No newline at end of file diff --git a/timecost/n11/forestdiffusion/forest-n11-20260503_195211/public_gate/public_gate_report.json b/timecost/n11/forestdiffusion/forest-n11-20260503_195211/public_gate/public_gate_report.json new file mode 100644 index 0000000000000000000000000000000000000000..4864c3fc29664a3b44991534165974fed3741dfa --- /dev/null +++ b/timecost/n11/forestdiffusion/forest-n11-20260503_195211/public_gate/public_gate_report.json @@ -0,0 +1,37 @@ +{ + "dataset_id": "n11", + "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": "g", + "task_type": "classification", + "input_splits": { + "train": "/data/jialinzhang/SynthesizePipeline-server/DatasetNew/n11/n11-train.csv", + "val": "/data/jialinzhang/SynthesizePipeline-server/DatasetNew/n11/n11-val.csv", + "test": "/data/jialinzhang/SynthesizePipeline-server/DatasetNew/n11/n11-test.csv" + } +} \ No newline at end of file diff --git a/timecost/n11/forestdiffusion/forest-n11-20260503_195211/public_gate/staged_input_manifest.json b/timecost/n11/forestdiffusion/forest-n11-20260503_195211/public_gate/staged_input_manifest.json new file mode 100644 index 0000000000000000000000000000000000000000..ed329950c6b9df0f3359a4c9555ad8c2ceca98ad --- /dev/null +++ b/timecost/n11/forestdiffusion/forest-n11-20260503_195211/public_gate/staged_input_manifest.json @@ -0,0 +1,240 @@ +{ + "dataset_id": "n11", + "target_column": "g", + "task_type": "classification", + "train_csv": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/n11/forestdiffusion/forest-n11-20260503_195211/staged/public/train.csv", + "val_csv": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/n11/forestdiffusion/forest-n11-20260503_195211/staged/public/val.csv", + "test_csv": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/n11/forestdiffusion/forest-n11-20260503_195211/staged/public/test.csv", + "features_json": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/n11/forestdiffusion/forest-n11-20260503_195211/staged/public/staged_features.json", + "public_gate_report": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/n11/forestdiffusion/forest-n11-20260503_195211/public_gate/public_gate_report.json", + "column_schema": [ + { + "name": "28.7967", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 14962, + "unique_ratio": 0.983372, + "example_values": [ + "33.9347", + "118.601", + "19.83", + "33.2691", + "13.1404" + ] + } + }, + { + "name": "16.0021", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 14662, + "unique_ratio": 0.963654, + "example_values": [ + "10.8862", + "44.2479", + "7.3303", + "9.1269", + "10.8527" + ] + } + }, + { + "name": "2.6449", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 6336, + "unique_ratio": 0.416431, + "example_values": [ + "2.5328", + "3.5558", + "2.2541", + "2.6728", + "2.1775" + ] + } + }, + { + "name": "0.3918", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 6002, + "unique_ratio": 0.394479, + "example_values": [ + "0.4047", + "0.1769", + "0.7521", + "0.4437", + "0.7708" + ] + } + }, + { + "name": "0.1982", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 4230, + "unique_ratio": 0.278015, + "example_values": [ + "0.2155", + "0.1003", + "0.4095", + "0.2553", + "0.4352" + ] + } + }, + { + "name": "27.7004", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 14996, + "unique_ratio": 0.985606, + "example_values": [ + "-25.0369", + "-95.8266", + "2.8528", + "12.3981", + "14.3006" + ] + } + }, + { + "name": "22.011", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 14984, + "unique_ratio": 0.984818, + "example_values": [ + "-23.1659", + "14.9809", + "-9.7666", + "19.9081", + "-3.6418" + ] + } + }, + { + "name": "-8.2027", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 14795, + "unique_ratio": 0.972396, + "example_values": [ + "3.492", + "29.3812", + "5.0346", + "-5.3204", + "-11.3646" + ] + } + }, + { + "name": "40.092", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 14518, + "unique_ratio": 0.95419, + "example_values": [ + "0.334", + "4.134", + "13.794", + "20.78", + "20.124" + ] + } + }, + { + "name": "81.8828", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 14824, + "unique_ratio": 0.974302, + "example_values": [ + "132.907", + "286.69", + "108.464", + "180.4168", + "222.525" + ] + } + }, + { + "name": "g", + "role": "target", + "semantic_type": "categorical", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 2, + "unique_ratio": 0.000131, + "example_values": [ + "g", + "h" + ] + } + } + ] +} \ No newline at end of file diff --git a/timecost/n11/forestdiffusion/forest-n11-20260503_195211/runtime_result.json b/timecost/n11/forestdiffusion/forest-n11-20260503_195211/runtime_result.json new file mode 100644 index 0000000000000000000000000000000000000000..e906555e4df84d692e6e6ca94d3cb79cae1d7a4b --- /dev/null +++ b/timecost/n11/forestdiffusion/forest-n11-20260503_195211/runtime_result.json @@ -0,0 +1,27 @@ +{ + "dataset_id": "n11", + "model": "forestdiffusion", + "run_id": "forest-n11-20260503_195211", + "public_gate_status": "pass", + "adapter_ready_status": "pass", + "train_status": "success", + "generate_status": "success", + "reason_code": null, + "reason_detail": null, + "artifacts": { + "synthetic_csv": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/n11/forestdiffusion/forest-n11-20260503_195211/forest-n11-15215-20260503_211948.csv", + "model_path": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/n11/forestdiffusion/forest-n11-20260503_195211/models_fd/model.joblib" + }, + "timings": { + "train": { + "started_at": "2026-05-03T19:52:12", + "ended_at": "2026-05-03T21:19:48", + "duration_sec": 5256.107 + }, + "generate": { + "started_at": "2026-05-03T21:19:48", + "ended_at": "2026-05-03T21:19:55", + "duration_sec": 7.04 + } + } +} \ No newline at end of file diff --git a/timecost/n11/forestdiffusion/forest-n11-20260503_195211/staged/forestdiffusion/adapter_report.json b/timecost/n11/forestdiffusion/forest-n11-20260503_195211/staged/forestdiffusion/adapter_report.json new file mode 100644 index 0000000000000000000000000000000000000000..1f9bd988dd3f2a95aa75b292eeb7c42c0fd192d7 --- /dev/null +++ b/timecost/n11/forestdiffusion/forest-n11-20260503_195211/staged/forestdiffusion/adapter_report.json @@ -0,0 +1,7 @@ +{ + "adapter_ready_status": "pass", + "adapter_fail_reason_code": null, + "adapter_fail_detail": null, + "adapter_transforms_applied": [], + "model_input_manifest": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/n11/forestdiffusion/forest-n11-20260503_195211/staged/forestdiffusion/model_input_manifest.json" +} \ No newline at end of file diff --git a/timecost/n11/forestdiffusion/forest-n11-20260503_195211/staged/forestdiffusion/adapter_transforms_applied.json b/timecost/n11/forestdiffusion/forest-n11-20260503_195211/staged/forestdiffusion/adapter_transforms_applied.json new file mode 100644 index 0000000000000000000000000000000000000000..0637a088a01e8ddab3bf3fa98dbe804cbde1a0dc --- /dev/null +++ b/timecost/n11/forestdiffusion/forest-n11-20260503_195211/staged/forestdiffusion/adapter_transforms_applied.json @@ -0,0 +1 @@ +[] \ No newline at end of file diff --git a/timecost/n11/forestdiffusion/forest-n11-20260503_195211/staged/forestdiffusion/model_input_manifest.json b/timecost/n11/forestdiffusion/forest-n11-20260503_195211/staged/forestdiffusion/model_input_manifest.json new file mode 100644 index 0000000000000000000000000000000000000000..4368f0bfa2cada620700ffa2764512757ada7fd3 --- /dev/null +++ b/timecost/n11/forestdiffusion/forest-n11-20260503_195211/staged/forestdiffusion/model_input_manifest.json @@ -0,0 +1,242 @@ +{ + "dataset_id": "n11", + "model": "forestdiffusion", + "target_column": "g", + "task_type": "classification", + "column_schema": [ + { + "name": "28.7967", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 14962, + "unique_ratio": 0.983372, + "example_values": [ + "33.9347", + "118.601", + "19.83", + "33.2691", + "13.1404" + ] + } + }, + { + "name": "16.0021", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 14662, + "unique_ratio": 0.963654, + "example_values": [ + "10.8862", + "44.2479", + "7.3303", + "9.1269", + "10.8527" + ] + } + }, + { + "name": "2.6449", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 6336, + "unique_ratio": 0.416431, + "example_values": [ + "2.5328", + "3.5558", + "2.2541", + "2.6728", + "2.1775" + ] + } + }, + { + "name": "0.3918", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 6002, + "unique_ratio": 0.394479, + "example_values": [ + "0.4047", + "0.1769", + "0.7521", + "0.4437", + "0.7708" + ] + } + }, + { + "name": "0.1982", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 4230, + "unique_ratio": 0.278015, + "example_values": [ + "0.2155", + "0.1003", + "0.4095", + "0.2553", + "0.4352" + ] + } + }, + { + "name": "27.7004", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 14996, + "unique_ratio": 0.985606, + "example_values": [ + "-25.0369", + "-95.8266", + "2.8528", + "12.3981", + "14.3006" + ] + } + }, + { + "name": "22.011", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 14984, + "unique_ratio": 0.984818, + "example_values": [ + "-23.1659", + "14.9809", + "-9.7666", + "19.9081", + "-3.6418" + ] + } + }, + { + "name": "-8.2027", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 14795, + "unique_ratio": 0.972396, + "example_values": [ + "3.492", + "29.3812", + "5.0346", + "-5.3204", + "-11.3646" + ] + } + }, + { + "name": "40.092", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 14518, + "unique_ratio": 0.95419, + "example_values": [ + "0.334", + "4.134", + "13.794", + "20.78", + "20.124" + ] + } + }, + { + "name": "81.8828", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 14824, + "unique_ratio": 0.974302, + "example_values": [ + "132.907", + "286.69", + "108.464", + "180.4168", + "222.525" + ] + } + }, + { + "name": "g", + "role": "target", + "semantic_type": "categorical", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 2, + "unique_ratio": 0.000131, + "example_values": [ + "g", + "h" + ] + } + } + ], + "public_manifest": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/n11/forestdiffusion/forest-n11-20260503_195211/public_gate/staged_input_manifest.json", + "train_csv": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/n11/forestdiffusion/forest-n11-20260503_195211/staged/public/train.csv", + "val_csv": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/n11/forestdiffusion/forest-n11-20260503_195211/staged/public/val.csv", + "test_csv": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/n11/forestdiffusion/forest-n11-20260503_195211/staged/public/test.csv", + "features_json": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/n11/forestdiffusion/forest-n11-20260503_195211/staged/public/staged_features.json", + "public_gate_report": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/n11/forestdiffusion/forest-n11-20260503_195211/public_gate/public_gate_report.json" +} \ No newline at end of file diff --git a/timecost/n11/forestdiffusion/forest-n11-20260503_195211/staged/public/staged_features.json b/timecost/n11/forestdiffusion/forest-n11-20260503_195211/staged/public/staged_features.json new file mode 100644 index 0000000000000000000000000000000000000000..bdb9c28b9d52f06368851a08caadc305035fc1b7 --- /dev/null +++ b/timecost/n11/forestdiffusion/forest-n11-20260503_195211/staged/public/staged_features.json @@ -0,0 +1,57 @@ +[ + { + "feature_name": "28.7967", + "data_type": "continuous", + "is_target": false + }, + { + "feature_name": "16.0021", + "data_type": "continuous", + "is_target": false + }, + { + "feature_name": "2.6449", + "data_type": "continuous", + "is_target": false + }, + { + "feature_name": "0.3918", + "data_type": "continuous", + "is_target": false + }, + { + "feature_name": "0.1982", + "data_type": "continuous", + "is_target": false + }, + { + "feature_name": "27.7004", + "data_type": "continuous", + "is_target": false + }, + { + "feature_name": "22.011", + "data_type": "continuous", + "is_target": false + }, + { + "feature_name": "-8.2027", + "data_type": "continuous", + "is_target": false + }, + { + "feature_name": "40.092", + "data_type": "continuous", + "is_target": false + }, + { + "feature_name": "81.8828", + "data_type": "continuous", + "is_target": false + }, + { + "feature_name": "g", + "data_type": "categorical", + "is_target": true + } +] \ No newline at end of file diff --git a/timecost/n11/forestdiffusion/forest-n11-20260503_195211/staged/public/test.csv b/timecost/n11/forestdiffusion/forest-n11-20260503_195211/staged/public/test.csv new file mode 100644 index 0000000000000000000000000000000000000000..59e413eb15b50a2ac49cd95bbe57b0d0018ccf95 --- /dev/null +++ b/timecost/n11/forestdiffusion/forest-n11-20260503_195211/staged/public/test.csv @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:bf4e935f84569b849b662718eaa19be605037d46a5f7391f164728d6d9c3bb50 +size 148017 diff --git a/timecost/n11/forestdiffusion/forest-n11-20260503_195211/staged/public/train.csv b/timecost/n11/forestdiffusion/forest-n11-20260503_195211/staged/public/train.csv new file mode 100644 index 0000000000000000000000000000000000000000..cc5acd9fe00e8a233592b4da9797300adc83744b --- /dev/null +++ b/timecost/n11/forestdiffusion/forest-n11-20260503_195211/staged/public/train.csv @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:3ab621ac8239797506ce800c1409422452b8127da93add91dd9e6d63ddeec6f7 +size 1182326 diff --git a/timecost/n11/forestdiffusion/forest-n11-20260503_195211/staged/public/val.csv b/timecost/n11/forestdiffusion/forest-n11-20260503_195211/staged/public/val.csv new file mode 100644 index 0000000000000000000000000000000000000000..e0a3b6ab9c53a7f8d97dff3290e643431f9ad023 --- /dev/null +++ b/timecost/n11/forestdiffusion/forest-n11-20260503_195211/staged/public/val.csv @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:374e44edf25e58ca37eabbef0485c98cecdbdfa9d24da738937f404840bfad44 +size 147784 diff --git a/timecost/n11/forestdiffusion/forest-n11-20260503_195211/train_20260503_195212.log b/timecost/n11/forestdiffusion/forest-n11-20260503_195211/train_20260503_195212.log new file mode 100644 index 0000000000000000000000000000000000000000..bbbd0acb9e488ba459a9087233aae88ad2889729 --- /dev/null +++ b/timecost/n11/forestdiffusion/forest-n11-20260503_195211/train_20260503_195212.log @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:eff762f0b42f4238855e40193571a54b74e22f4dcc360ee060539d33669e8636 +size 426 diff --git a/timecost/n11/realtabformer/rtf-n11-20260430_214424/gen_20260430_224120.log b/timecost/n11/realtabformer/rtf-n11-20260430_214424/gen_20260430_224120.log new file mode 100644 index 0000000000000000000000000000000000000000..3a34d9670360609b0abc1aaf51020298f1e54a96 --- /dev/null +++ b/timecost/n11/realtabformer/rtf-n11-20260430_214424/gen_20260430_224120.log @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:855e23358b941fc4e4fe551d22b2054a79bf3fc2349fc5260ff8dd69cf311589 +size 8214 diff --git a/timecost/n11/realtabformer/rtf-n11-20260430_214424/input_snapshot.json b/timecost/n11/realtabformer/rtf-n11-20260430_214424/input_snapshot.json new file mode 100644 index 0000000000000000000000000000000000000000..0db67527cc7642721f50da4bb0cc251c8b0301fc --- /dev/null +++ b/timecost/n11/realtabformer/rtf-n11-20260430_214424/input_snapshot.json @@ -0,0 +1,36 @@ +{ + "dataset_id": "n11", + "model": "realtabformer", + "inputs": { + "train_csv": { + "path": "/data/jialinzhang/SynthesizePipeline-server/DatasetNew/n11/n11-train.csv", + "exists": true, + "size": 1197106, + "sha256": "f8253c0573a8f028c0b1e17752d214fbad956d0ace350d0dee3947f3dfafbc75" + }, + "val_csv": { + "path": "/data/jialinzhang/SynthesizePipeline-server/DatasetNew/n11/n11-val.csv", + "exists": true, + "size": 149602, + "sha256": "7bde20178eb7de9523d4df719a3b461656f5704e3a03187c8289b2299dc8e458" + }, + "test_csv": { + "path": "/data/jialinzhang/SynthesizePipeline-server/DatasetNew/n11/n11-test.csv", + "exists": true, + "size": 149859, + "sha256": "855b55969de2da1341d428edef6dedfdf0c60f016b9fa08efaf8a883af6a2c53" + }, + "profile_json": { + "path": "/data/jialinzhang/SynthesizePipeline-server/DatasetNew/artifacts/data_core/tabular/n11/n11-dataset_profile.json", + "exists": true, + "size": 5104, + "sha256": "0bd368d22598246defd33bda12c9872165f26e798cc462ec472d193f322fba07" + }, + "contract_json": { + "path": "/data/jialinzhang/SynthesizePipeline-server/DatasetNew/artifacts/data_core/tabular/n11/n11-dataset_contract_v1.json", + "exists": true, + "size": 5874, + "sha256": "ad3f01eafe9fb37754eed9be9bd058390fd3a4f54d8be4ceb4b5326a9901da9d" + } + } +} \ No newline at end of file diff --git a/timecost/n11/realtabformer/rtf-n11-20260430_214424/models_100epochs/id000017775600783780347904/rtf_config.json b/timecost/n11/realtabformer/rtf-n11-20260430_214424/models_100epochs/id000017775600783780347904/rtf_config.json new file mode 100644 index 0000000000000000000000000000000000000000..941fe95154349ddd75d3b033ed884b544f58c573 --- /dev/null +++ b/timecost/n11/realtabformer/rtf-n11-20260430_214424/models_100epochs/id000017775600783780347904/rtf_config.json @@ -0,0 +1 @@ +{"model_type": "tabular", "tabular_config": {"transformers_version": "5.5.3", "architectures": ["GPT2LMHeadModel"], "output_hidden_states": false, "return_dict": true, "dtype": "float32", "chunk_size_feed_forward": 0, "is_encoder_decoder": false, "id2label": {"0": "LABEL_0", "1": "LABEL_1"}, "label2id": {"LABEL_0": 0, "LABEL_1": 1}, "problem_type": null, "vocab_size": 597, "n_positions": 1024, "n_embd": 768, "n_layer": 6, "n_head": 12, "n_inner": null, "activation_function": "gelu_new", "resid_pdrop": 0.1, "embd_pdrop": 0.1, "attn_pdrop": 0.1, "layer_norm_epsilon": 1e-05, "initializer_range": 0.02, "summary_type": "cls_index", "summary_use_proj": true, "summary_activation": null, "summary_proj_to_labels": true, "summary_first_dropout": 0.1, "scale_attn_weights": true, "use_cache": false, "bos_token_id": 5, "eos_token_id": 6, "pad_token_id": null, "scale_attn_by_inverse_layer_idx": false, "reorder_and_upcast_attn": false, "add_cross_attention": false, "tie_word_embeddings": true, "_name_or_path": "", "model_type": "gpt2", "output_attentions": false}, "checkpoints_dir": "rtf_checkpoints", "samples_save_dir": "rtf_samples", "full_save_dir": "rtf_full_save", "epochs": 100, "batch_size": 8, "early_stopping_patience": 5, "early_stopping_threshold": 0, "training_args_kwargs": {"eval_strategy": "no", "output_dir": "rtf_checkpoints", "metric_for_best_model": "loss", "num_train_epochs": 100, "per_device_train_batch_size": 8, "per_device_eval_batch_size": 8, "gradient_accumulation_steps": 4, "remove_unused_columns": true, "logging_steps": 100, "save_steps": 100, "eval_steps": 100, "load_best_model_at_end": false, "save_total_limit": 6, "optim": "adamw_torch"}, "train_size": 1, "mask_rate": 0, "columns": ["28.7967", "16.0021", "2.6449", "0.3918", "0.1982", "27.7004", "22.011", "-8.2027", "40.092", "81.8828", "g"], "column_dtypes": {"28.7967": "float64", "16.0021": "float64", "2.6449": "float64", "0.3918": "float64", "0.1982": "float64", "27.7004": "float64", "22.011": "float64", "-8.2027": "float64", "40.092": "float64", "81.8828": "float64", "g": "object"}, "column_has_missing": {"28.7967": false, "16.0021": false, "2.6449": false, "0.3918": false, "0.1982": false, "27.7004": false, "22.011": false, "-8.2027": false, "40.092": false, "81.8828": false, "g": false}, "drop_na_cols": ["28.7967", "16.0021", "2.6449", "0.3918", "0.1982", "27.7004", "22.011", "-8.2027", "40.092", "81.8828", "g"], "processed_columns": ["00___NUMERIC___28.7967_00", "00___NUMERIC___28.7967_01", "00___NUMERIC___28.7967_02", "00___NUMERIC___28.7967_03", "00___NUMERIC___28.7967_04", "00___NUMERIC___28.7967_05", "00___NUMERIC___28.7967_06", "00___NUMERIC___28.7967_07", "01___NUMERIC___16.0021_00", "01___NUMERIC___16.0021_01", "01___NUMERIC___16.0021_02", "01___NUMERIC___16.0021_03", "01___NUMERIC___16.0021_04", "01___NUMERIC___16.0021_05", "01___NUMERIC___16.0021_06", "01___NUMERIC___16.0021_07", "02___NUMERIC___2.6449_00", "02___NUMERIC___2.6449_01", "02___NUMERIC___2.6449_02", "02___NUMERIC___2.6449_03", "02___NUMERIC___2.6449_04", "02___NUMERIC___2.6449_05", "03___NUMERIC___0.3918_00", "03___NUMERIC___0.3918_01", "03___NUMERIC___0.3918_02", "03___NUMERIC___0.3918_03", "03___NUMERIC___0.3918_04", "03___NUMERIC___0.3918_05", "04___NUMERIC___0.1982_00", "04___NUMERIC___0.1982_01", "04___NUMERIC___0.1982_02", "04___NUMERIC___0.1982_03", "04___NUMERIC___0.1982_04", "04___NUMERIC___0.1982_05", "05___NUMERIC___27.7004_00", "05___NUMERIC___27.7004_01", "05___NUMERIC___27.7004_02", "05___NUMERIC___27.7004_03", "05___NUMERIC___27.7004_04", "05___NUMERIC___27.7004_05", "05___NUMERIC___27.7004_06", "05___NUMERIC___27.7004_07", "05___NUMERIC___27.7004_08", "06___NUMERIC___22.011_00", "06___NUMERIC___22.011_01", "06___NUMERIC___22.011_02", "06___NUMERIC___22.011_03", "06___NUMERIC___22.011_04", "06___NUMERIC___22.011_05", "06___NUMERIC___22.011_06", "06___NUMERIC___22.011_07", "06___NUMERIC___22.011_08", "07___NUMERIC___-8.2027_00", "07___NUMERIC___-8.2027_01", "07___NUMERIC___-8.2027_02", "07___NUMERIC___-8.2027_03", "07___NUMERIC___-8.2027_04", "07___NUMERIC___-8.2027_05", "07___NUMERIC___-8.2027_06", "07___NUMERIC___-8.2027_07", "07___NUMERIC___-8.2027_08", "08___NUMERIC___40.092_00", "08___NUMERIC___40.092_01", "08___NUMERIC___40.092_02", "08___NUMERIC___40.092_03", "08___NUMERIC___40.092_04", "08___NUMERIC___40.092_05", "08___NUMERIC___40.092_06", "09___NUMERIC___81.8828_00", "09___NUMERIC___81.8828_01", "09___NUMERIC___81.8828_02", "09___NUMERIC___81.8828_03", "09___NUMERIC___81.8828_04", "09___NUMERIC___81.8828_05", "09___NUMERIC___81.8828_06", "09___NUMERIC___81.8828_07", "10___CATEGORICAL___g"], "numeric_columns": ["28.7967", "16.0021", "2.6449", "0.3918", "0.1982", "27.7004", "22.011", "-8.2027", "40.092", "81.8828"], "datetime_columns": [], "vocab": {"id2token": {"0": "[UNK]", "1": "[SEP]", "2": "[PAD]", "3": "[CLS]", "4": "[MASK]", "5": "[BOS]", "6": "[EOS]", "7": "[BMEM]", "8": "[EMEM]", "9": "[RMASK]", "10": "[SPTYPE]", "11": "00___NUMERIC___28.7967_00___0", "12": "00___NUMERIC___28.7967_00___1", "13": "00___NUMERIC___28.7967_00___2", "14": "00___NUMERIC___28.7967_00___3", "15": "00___NUMERIC___28.7967_01___0", "16": "00___NUMERIC___28.7967_01___1", "17": "00___NUMERIC___28.7967_01___2", "18": "00___NUMERIC___28.7967_01___3", "19": "00___NUMERIC___28.7967_01___4", "20": "00___NUMERIC___28.7967_01___5", "21": "00___NUMERIC___28.7967_01___6", "22": "00___NUMERIC___28.7967_01___7", "23": "00___NUMERIC___28.7967_01___8", "24": "00___NUMERIC___28.7967_01___9", "25": "00___NUMERIC___28.7967_02___0", "26": "00___NUMERIC___28.7967_02___1", "27": "00___NUMERIC___28.7967_02___2", "28": "00___NUMERIC___28.7967_02___3", "29": "00___NUMERIC___28.7967_02___4", "30": "00___NUMERIC___28.7967_02___5", "31": "00___NUMERIC___28.7967_02___6", "32": "00___NUMERIC___28.7967_02___7", "33": "00___NUMERIC___28.7967_02___8", "34": "00___NUMERIC___28.7967_02___9", "35": "00___NUMERIC___28.7967_03___.", "36": "00___NUMERIC___28.7967_04___0", "37": "00___NUMERIC___28.7967_04___1", "38": "00___NUMERIC___28.7967_04___2", "39": "00___NUMERIC___28.7967_04___3", "40": "00___NUMERIC___28.7967_04___4", "41": "00___NUMERIC___28.7967_04___5", "42": "00___NUMERIC___28.7967_04___6", "43": "00___NUMERIC___28.7967_04___7", "44": "00___NUMERIC___28.7967_04___8", "45": "00___NUMERIC___28.7967_04___9", "46": "00___NUMERIC___28.7967_05___0", "47": "00___NUMERIC___28.7967_05___1", "48": "00___NUMERIC___28.7967_05___2", "49": "00___NUMERIC___28.7967_05___3", "50": "00___NUMERIC___28.7967_05___4", "51": "00___NUMERIC___28.7967_05___5", "52": "00___NUMERIC___28.7967_05___6", "53": "00___NUMERIC___28.7967_05___7", "54": "00___NUMERIC___28.7967_05___8", "55": "00___NUMERIC___28.7967_05___9", "56": "00___NUMERIC___28.7967_06___0", "57": "00___NUMERIC___28.7967_06___1", "58": "00___NUMERIC___28.7967_06___2", "59": "00___NUMERIC___28.7967_06___3", "60": "00___NUMERIC___28.7967_06___4", "61": "00___NUMERIC___28.7967_06___5", "62": "00___NUMERIC___28.7967_06___6", "63": "00___NUMERIC___28.7967_06___7", "64": "00___NUMERIC___28.7967_06___8", "65": "00___NUMERIC___28.7967_06___9", "66": "00___NUMERIC___28.7967_07___0", "67": "00___NUMERIC___28.7967_07___1", "68": "00___NUMERIC___28.7967_07___2", "69": "00___NUMERIC___28.7967_07___3", "70": "00___NUMERIC___28.7967_07___4", "71": "00___NUMERIC___28.7967_07___5", "72": "00___NUMERIC___28.7967_07___6", "73": "00___NUMERIC___28.7967_07___7", "74": "00___NUMERIC___28.7967_07___8", "75": "00___NUMERIC___28.7967_07___9", "76": "01___NUMERIC___16.0021_00___0", "77": "01___NUMERIC___16.0021_00___1", "78": "01___NUMERIC___16.0021_00___2", "79": "01___NUMERIC___16.0021_01___0", "80": "01___NUMERIC___16.0021_01___1", "81": "01___NUMERIC___16.0021_01___2", "82": "01___NUMERIC___16.0021_01___3", "83": "01___NUMERIC___16.0021_01___4", "84": "01___NUMERIC___16.0021_01___5", "85": "01___NUMERIC___16.0021_01___6", "86": "01___NUMERIC___16.0021_01___7", "87": "01___NUMERIC___16.0021_01___8", "88": "01___NUMERIC___16.0021_01___9", "89": "01___NUMERIC___16.0021_02___0", "90": "01___NUMERIC___16.0021_02___1", "91": "01___NUMERIC___16.0021_02___2", "92": "01___NUMERIC___16.0021_02___3", "93": "01___NUMERIC___16.0021_02___4", "94": "01___NUMERIC___16.0021_02___5", "95": "01___NUMERIC___16.0021_02___6", "96": "01___NUMERIC___16.0021_02___7", "97": "01___NUMERIC___16.0021_02___8", "98": "01___NUMERIC___16.0021_02___9", "99": "01___NUMERIC___16.0021_03___.", "100": "01___NUMERIC___16.0021_04___0", "101": "01___NUMERIC___16.0021_04___1", "102": "01___NUMERIC___16.0021_04___2", "103": "01___NUMERIC___16.0021_04___3", "104": "01___NUMERIC___16.0021_04___4", "105": "01___NUMERIC___16.0021_04___5", "106": "01___NUMERIC___16.0021_04___6", "107": "01___NUMERIC___16.0021_04___7", "108": "01___NUMERIC___16.0021_04___8", "109": "01___NUMERIC___16.0021_04___9", "110": "01___NUMERIC___16.0021_05___0", "111": "01___NUMERIC___16.0021_05___1", "112": "01___NUMERIC___16.0021_05___2", "113": "01___NUMERIC___16.0021_05___3", "114": "01___NUMERIC___16.0021_05___4", "115": "01___NUMERIC___16.0021_05___5", "116": "01___NUMERIC___16.0021_05___6", "117": "01___NUMERIC___16.0021_05___7", "118": "01___NUMERIC___16.0021_05___8", "119": "01___NUMERIC___16.0021_05___9", "120": "01___NUMERIC___16.0021_06___0", "121": "01___NUMERIC___16.0021_06___1", "122": "01___NUMERIC___16.0021_06___2", "123": "01___NUMERIC___16.0021_06___3", "124": "01___NUMERIC___16.0021_06___4", "125": "01___NUMERIC___16.0021_06___5", "126": "01___NUMERIC___16.0021_06___6", "127": "01___NUMERIC___16.0021_06___7", "128": "01___NUMERIC___16.0021_06___8", "129": "01___NUMERIC___16.0021_06___9", "130": "01___NUMERIC___16.0021_07___0", "131": "01___NUMERIC___16.0021_07___1", "132": "01___NUMERIC___16.0021_07___2", "133": "01___NUMERIC___16.0021_07___3", "134": "01___NUMERIC___16.0021_07___4", "135": "01___NUMERIC___16.0021_07___5", "136": "01___NUMERIC___16.0021_07___6", "137": "01___NUMERIC___16.0021_07___7", "138": "01___NUMERIC___16.0021_07___8", "139": "01___NUMERIC___16.0021_07___9", "140": "02___NUMERIC___2.6449_00___1", "141": "02___NUMERIC___2.6449_00___2", "142": "02___NUMERIC___2.6449_00___3", "143": "02___NUMERIC___2.6449_00___4", "144": "02___NUMERIC___2.6449_00___5", "145": "02___NUMERIC___2.6449_01___.", "146": "02___NUMERIC___2.6449_02___0", "147": "02___NUMERIC___2.6449_02___1", "148": "02___NUMERIC___2.6449_02___2", "149": "02___NUMERIC___2.6449_02___3", "150": "02___NUMERIC___2.6449_02___4", "151": "02___NUMERIC___2.6449_02___5", "152": "02___NUMERIC___2.6449_02___6", "153": "02___NUMERIC___2.6449_02___7", "154": "02___NUMERIC___2.6449_02___8", "155": "02___NUMERIC___2.6449_02___9", "156": "02___NUMERIC___2.6449_03___0", "157": "02___NUMERIC___2.6449_03___1", "158": "02___NUMERIC___2.6449_03___2", "159": "02___NUMERIC___2.6449_03___3", "160": "02___NUMERIC___2.6449_03___4", "161": "02___NUMERIC___2.6449_03___5", "162": "02___NUMERIC___2.6449_03___6", "163": "02___NUMERIC___2.6449_03___7", "164": "02___NUMERIC___2.6449_03___8", "165": "02___NUMERIC___2.6449_03___9", "166": "02___NUMERIC___2.6449_04___0", "167": "02___NUMERIC___2.6449_04___1", "168": "02___NUMERIC___2.6449_04___2", "169": "02___NUMERIC___2.6449_04___3", "170": "02___NUMERIC___2.6449_04___4", "171": "02___NUMERIC___2.6449_04___5", "172": "02___NUMERIC___2.6449_04___6", "173": "02___NUMERIC___2.6449_04___7", "174": "02___NUMERIC___2.6449_04___8", "175": "02___NUMERIC___2.6449_04___9", "176": "02___NUMERIC___2.6449_05___0", "177": "02___NUMERIC___2.6449_05___1", "178": "02___NUMERIC___2.6449_05___2", "179": "02___NUMERIC___2.6449_05___3", "180": "02___NUMERIC___2.6449_05___4", "181": "02___NUMERIC___2.6449_05___5", "182": "02___NUMERIC___2.6449_05___6", "183": "02___NUMERIC___2.6449_05___7", "184": "02___NUMERIC___2.6449_05___8", "185": "02___NUMERIC___2.6449_05___9", "186": "03___NUMERIC___0.3918_00___0", "187": "03___NUMERIC___0.3918_01___.", "188": "03___NUMERIC___0.3918_02___0", "189": "03___NUMERIC___0.3918_02___1", "190": "03___NUMERIC___0.3918_02___2", "191": "03___NUMERIC___0.3918_02___3", "192": "03___NUMERIC___0.3918_02___4", "193": "03___NUMERIC___0.3918_02___5", "194": "03___NUMERIC___0.3918_02___6", "195": "03___NUMERIC___0.3918_02___7", "196": "03___NUMERIC___0.3918_02___8", "197": "03___NUMERIC___0.3918_03___0", "198": "03___NUMERIC___0.3918_03___1", "199": "03___NUMERIC___0.3918_03___2", "200": "03___NUMERIC___0.3918_03___3", "201": "03___NUMERIC___0.3918_03___4", "202": "03___NUMERIC___0.3918_03___5", "203": "03___NUMERIC___0.3918_03___6", "204": "03___NUMERIC___0.3918_03___7", "205": "03___NUMERIC___0.3918_03___8", "206": "03___NUMERIC___0.3918_03___9", "207": "03___NUMERIC___0.3918_04___0", "208": "03___NUMERIC___0.3918_04___1", "209": "03___NUMERIC___0.3918_04___2", "210": "03___NUMERIC___0.3918_04___3", "211": "03___NUMERIC___0.3918_04___4", "212": "03___NUMERIC___0.3918_04___5", "213": "03___NUMERIC___0.3918_04___6", "214": "03___NUMERIC___0.3918_04___7", "215": "03___NUMERIC___0.3918_04___8", "216": "03___NUMERIC___0.3918_04___9", "217": "03___NUMERIC___0.3918_05___0", "218": "03___NUMERIC___0.3918_05___1", "219": "03___NUMERIC___0.3918_05___2", "220": "03___NUMERIC___0.3918_05___3", "221": "03___NUMERIC___0.3918_05___4", "222": "03___NUMERIC___0.3918_05___5", "223": "03___NUMERIC___0.3918_05___6", "224": "03___NUMERIC___0.3918_05___7", "225": "03___NUMERIC___0.3918_05___8", "226": "03___NUMERIC___0.3918_05___9", "227": "04___NUMERIC___0.1982_00___0", "228": "04___NUMERIC___0.1982_01___.", "229": "04___NUMERIC___0.1982_02___0", "230": "04___NUMERIC___0.1982_02___1", "231": "04___NUMERIC___0.1982_02___2", "232": "04___NUMERIC___0.1982_02___3", "233": "04___NUMERIC___0.1982_02___4", "234": "04___NUMERIC___0.1982_02___5", "235": "04___NUMERIC___0.1982_02___6", "236": "04___NUMERIC___0.1982_03___0", "237": "04___NUMERIC___0.1982_03___1", "238": "04___NUMERIC___0.1982_03___2", "239": "04___NUMERIC___0.1982_03___3", "240": "04___NUMERIC___0.1982_03___4", "241": "04___NUMERIC___0.1982_03___5", "242": "04___NUMERIC___0.1982_03___6", "243": "04___NUMERIC___0.1982_03___7", "244": "04___NUMERIC___0.1982_03___8", "245": "04___NUMERIC___0.1982_03___9", "246": "04___NUMERIC___0.1982_04___0", "247": "04___NUMERIC___0.1982_04___1", "248": "04___NUMERIC___0.1982_04___2", "249": "04___NUMERIC___0.1982_04___3", "250": "04___NUMERIC___0.1982_04___4", "251": "04___NUMERIC___0.1982_04___5", "252": "04___NUMERIC___0.1982_04___6", "253": "04___NUMERIC___0.1982_04___7", "254": "04___NUMERIC___0.1982_04___8", "255": "04___NUMERIC___0.1982_04___9", "256": "04___NUMERIC___0.1982_05___0", "257": "04___NUMERIC___0.1982_05___1", "258": "04___NUMERIC___0.1982_05___2", "259": "04___NUMERIC___0.1982_05___3", "260": "04___NUMERIC___0.1982_05___4", "261": "04___NUMERIC___0.1982_05___5", "262": "04___NUMERIC___0.1982_05___6", "263": "04___NUMERIC___0.1982_05___7", "264": "04___NUMERIC___0.1982_05___8", "265": "04___NUMERIC___0.1982_05___9", "266": "05___NUMERIC___27.7004_00___-", "267": "05___NUMERIC___27.7004_00___0", "268": "05___NUMERIC___27.7004_01___0", "269": "05___NUMERIC___27.7004_01___1", "270": "05___NUMERIC___27.7004_01___2", "271": "05___NUMERIC___27.7004_01___3", "272": "05___NUMERIC___27.7004_01___4", "273": "05___NUMERIC___27.7004_01___5", "274": "05___NUMERIC___27.7004_02___0", "275": "05___NUMERIC___27.7004_02___1", "276": "05___NUMERIC___27.7004_02___2", "277": "05___NUMERIC___27.7004_02___3", "278": "05___NUMERIC___27.7004_02___4", "279": "05___NUMERIC___27.7004_02___5", "280": "05___NUMERIC___27.7004_02___6", "281": "05___NUMERIC___27.7004_02___7", "282": "05___NUMERIC___27.7004_02___8", "283": "05___NUMERIC___27.7004_02___9", "284": "05___NUMERIC___27.7004_03___0", "285": "05___NUMERIC___27.7004_03___1", "286": "05___NUMERIC___27.7004_03___2", "287": "05___NUMERIC___27.7004_03___3", "288": "05___NUMERIC___27.7004_03___4", "289": "05___NUMERIC___27.7004_03___5", "290": "05___NUMERIC___27.7004_03___6", "291": "05___NUMERIC___27.7004_03___7", "292": "05___NUMERIC___27.7004_03___8", "293": "05___NUMERIC___27.7004_03___9", "294": "05___NUMERIC___27.7004_04___.", "295": "05___NUMERIC___27.7004_05___0", "296": "05___NUMERIC___27.7004_05___1", "297": "05___NUMERIC___27.7004_05___2", "298": "05___NUMERIC___27.7004_05___3", "299": "05___NUMERIC___27.7004_05___4", "300": "05___NUMERIC___27.7004_05___5", "301": "05___NUMERIC___27.7004_05___6", "302": "05___NUMERIC___27.7004_05___7", "303": "05___NUMERIC___27.7004_05___8", "304": "05___NUMERIC___27.7004_05___9", "305": "05___NUMERIC___27.7004_06___0", "306": "05___NUMERIC___27.7004_06___1", "307": "05___NUMERIC___27.7004_06___2", "308": "05___NUMERIC___27.7004_06___3", "309": "05___NUMERIC___27.7004_06___4", "310": "05___NUMERIC___27.7004_06___5", "311": "05___NUMERIC___27.7004_06___6", "312": "05___NUMERIC___27.7004_06___7", "313": "05___NUMERIC___27.7004_06___8", "314": "05___NUMERIC___27.7004_06___9", "315": "05___NUMERIC___27.7004_07___0", "316": "05___NUMERIC___27.7004_07___1", "317": "05___NUMERIC___27.7004_07___2", "318": "05___NUMERIC___27.7004_07___3", "319": "05___NUMERIC___27.7004_07___4", "320": "05___NUMERIC___27.7004_07___5", "321": "05___NUMERIC___27.7004_07___6", "322": "05___NUMERIC___27.7004_07___7", "323": "05___NUMERIC___27.7004_07___8", "324": "05___NUMERIC___27.7004_07___9", "325": "05___NUMERIC___27.7004_08___0", "326": "05___NUMERIC___27.7004_08___1", "327": "05___NUMERIC___27.7004_08___2", "328": "05___NUMERIC___27.7004_08___3", "329": "05___NUMERIC___27.7004_08___4", "330": "05___NUMERIC___27.7004_08___5", "331": "05___NUMERIC___27.7004_08___6", "332": "05___NUMERIC___27.7004_08___7", "333": "05___NUMERIC___27.7004_08___8", "334": "05___NUMERIC___27.7004_08___9", "335": "06___NUMERIC___22.011_00___-", "336": "06___NUMERIC___22.011_00___0", "337": "06___NUMERIC___22.011_01___0", "338": "06___NUMERIC___22.011_01___1", "339": "06___NUMERIC___22.011_01___2", "340": "06___NUMERIC___22.011_01___3", "341": "06___NUMERIC___22.011_02___0", "342": "06___NUMERIC___22.011_02___1", "343": "06___NUMERIC___22.011_02___2", "344": "06___NUMERIC___22.011_02___3", "345": "06___NUMERIC___22.011_02___4", "346": "06___NUMERIC___22.011_02___5", "347": "06___NUMERIC___22.011_02___6", "348": "06___NUMERIC___22.011_02___7", "349": "06___NUMERIC___22.011_02___8", "350": "06___NUMERIC___22.011_02___9", "351": "06___NUMERIC___22.011_03___0", "352": "06___NUMERIC___22.011_03___1", "353": "06___NUMERIC___22.011_03___2", "354": "06___NUMERIC___22.011_03___3", "355": "06___NUMERIC___22.011_03___4", "356": "06___NUMERIC___22.011_03___5", "357": "06___NUMERIC___22.011_03___6", "358": "06___NUMERIC___22.011_03___7", "359": "06___NUMERIC___22.011_03___8", "360": "06___NUMERIC___22.011_03___9", "361": "06___NUMERIC___22.011_04___.", "362": "06___NUMERIC___22.011_05___0", "363": "06___NUMERIC___22.011_05___1", "364": "06___NUMERIC___22.011_05___2", "365": "06___NUMERIC___22.011_05___3", "366": "06___NUMERIC___22.011_05___4", "367": "06___NUMERIC___22.011_05___5", "368": "06___NUMERIC___22.011_05___6", "369": "06___NUMERIC___22.011_05___7", "370": "06___NUMERIC___22.011_05___8", "371": "06___NUMERIC___22.011_05___9", "372": "06___NUMERIC___22.011_06___0", "373": "06___NUMERIC___22.011_06___1", "374": "06___NUMERIC___22.011_06___2", "375": "06___NUMERIC___22.011_06___3", "376": "06___NUMERIC___22.011_06___4", "377": "06___NUMERIC___22.011_06___5", "378": "06___NUMERIC___22.011_06___6", "379": "06___NUMERIC___22.011_06___7", "380": "06___NUMERIC___22.011_06___8", "381": "06___NUMERIC___22.011_06___9", "382": "06___NUMERIC___22.011_07___0", "383": "06___NUMERIC___22.011_07___1", "384": "06___NUMERIC___22.011_07___2", "385": "06___NUMERIC___22.011_07___3", "386": "06___NUMERIC___22.011_07___4", "387": "06___NUMERIC___22.011_07___5", "388": "06___NUMERIC___22.011_07___6", "389": "06___NUMERIC___22.011_07___7", "390": "06___NUMERIC___22.011_07___8", "391": "06___NUMERIC___22.011_07___9", "392": "06___NUMERIC___22.011_08___0", "393": "06___NUMERIC___22.011_08___1", "394": "06___NUMERIC___22.011_08___2", "395": "06___NUMERIC___22.011_08___3", "396": "06___NUMERIC___22.011_08___4", "397": "06___NUMERIC___22.011_08___5", "398": "06___NUMERIC___22.011_08___6", "399": "06___NUMERIC___22.011_08___7", "400": "06___NUMERIC___22.011_08___8", "401": "06___NUMERIC___22.011_08___9", "402": "07___NUMERIC___-8.2027_00___-", "403": "07___NUMERIC___-8.2027_00___0", "404": "07___NUMERIC___-8.2027_01___0", "405": "07___NUMERIC___-8.2027_01___1", "406": "07___NUMERIC___-8.2027_01___2", "407": "07___NUMERIC___-8.2027_02___0", "408": "07___NUMERIC___-8.2027_02___1", "409": "07___NUMERIC___-8.2027_02___2", "410": "07___NUMERIC___-8.2027_02___3", "411": "07___NUMERIC___-8.2027_02___4", "412": "07___NUMERIC___-8.2027_02___5", "413": "07___NUMERIC___-8.2027_02___6", "414": "07___NUMERIC___-8.2027_02___7", "415": "07___NUMERIC___-8.2027_02___8", "416": "07___NUMERIC___-8.2027_02___9", "417": "07___NUMERIC___-8.2027_03___0", "418": "07___NUMERIC___-8.2027_03___1", "419": "07___NUMERIC___-8.2027_03___2", "420": "07___NUMERIC___-8.2027_03___3", "421": "07___NUMERIC___-8.2027_03___4", "422": "07___NUMERIC___-8.2027_03___5", "423": "07___NUMERIC___-8.2027_03___6", "424": "07___NUMERIC___-8.2027_03___7", "425": "07___NUMERIC___-8.2027_03___8", "426": "07___NUMERIC___-8.2027_03___9", "427": "07___NUMERIC___-8.2027_04___.", "428": "07___NUMERIC___-8.2027_05___0", "429": "07___NUMERIC___-8.2027_05___1", "430": "07___NUMERIC___-8.2027_05___2", "431": "07___NUMERIC___-8.2027_05___3", "432": "07___NUMERIC___-8.2027_05___4", "433": "07___NUMERIC___-8.2027_05___5", "434": "07___NUMERIC___-8.2027_05___6", "435": "07___NUMERIC___-8.2027_05___7", "436": "07___NUMERIC___-8.2027_05___8", "437": "07___NUMERIC___-8.2027_05___9", "438": "07___NUMERIC___-8.2027_06___0", "439": "07___NUMERIC___-8.2027_06___1", "440": "07___NUMERIC___-8.2027_06___2", "441": "07___NUMERIC___-8.2027_06___3", "442": "07___NUMERIC___-8.2027_06___4", "443": "07___NUMERIC___-8.2027_06___5", "444": "07___NUMERIC___-8.2027_06___6", "445": "07___NUMERIC___-8.2027_06___7", "446": "07___NUMERIC___-8.2027_06___8", "447": "07___NUMERIC___-8.2027_06___9", "448": "07___NUMERIC___-8.2027_07___0", "449": "07___NUMERIC___-8.2027_07___1", "450": "07___NUMERIC___-8.2027_07___2", "451": "07___NUMERIC___-8.2027_07___3", "452": "07___NUMERIC___-8.2027_07___4", "453": "07___NUMERIC___-8.2027_07___5", "454": "07___NUMERIC___-8.2027_07___6", "455": "07___NUMERIC___-8.2027_07___7", "456": "07___NUMERIC___-8.2027_07___8", "457": "07___NUMERIC___-8.2027_07___9", "458": "07___NUMERIC___-8.2027_08___0", "459": "07___NUMERIC___-8.2027_08___1", "460": "07___NUMERIC___-8.2027_08___2", "461": "07___NUMERIC___-8.2027_08___3", "462": "07___NUMERIC___-8.2027_08___4", "463": "07___NUMERIC___-8.2027_08___5", "464": "07___NUMERIC___-8.2027_08___6", "465": "07___NUMERIC___-8.2027_08___7", "466": "07___NUMERIC___-8.2027_08___8", "467": "07___NUMERIC___-8.2027_08___9", "468": "08___NUMERIC___40.092_00___0", "469": "08___NUMERIC___40.092_00___1", "470": "08___NUMERIC___40.092_00___2", "471": "08___NUMERIC___40.092_00___3", "472": "08___NUMERIC___40.092_00___4", "473": "08___NUMERIC___40.092_00___5", "474": "08___NUMERIC___40.092_00___6", "475": "08___NUMERIC___40.092_00___7", "476": "08___NUMERIC___40.092_00___8", "477": "08___NUMERIC___40.092_00___9", "478": "08___NUMERIC___40.092_01___0", "479": "08___NUMERIC___40.092_01___1", "480": "08___NUMERIC___40.092_01___2", "481": "08___NUMERIC___40.092_01___3", "482": "08___NUMERIC___40.092_01___4", "483": "08___NUMERIC___40.092_01___5", "484": "08___NUMERIC___40.092_01___6", "485": "08___NUMERIC___40.092_01___7", "486": "08___NUMERIC___40.092_01___8", "487": "08___NUMERIC___40.092_01___9", "488": "08___NUMERIC___40.092_02___.", "489": "08___NUMERIC___40.092_03___0", "490": "08___NUMERIC___40.092_03___1", "491": "08___NUMERIC___40.092_03___2", "492": "08___NUMERIC___40.092_03___3", "493": "08___NUMERIC___40.092_03___4", "494": "08___NUMERIC___40.092_03___5", "495": "08___NUMERIC___40.092_03___6", "496": "08___NUMERIC___40.092_03___7", "497": "08___NUMERIC___40.092_03___8", "498": "08___NUMERIC___40.092_03___9", "499": "08___NUMERIC___40.092_04___0", "500": "08___NUMERIC___40.092_04___1", "501": "08___NUMERIC___40.092_04___2", "502": "08___NUMERIC___40.092_04___3", "503": "08___NUMERIC___40.092_04___4", "504": "08___NUMERIC___40.092_04___5", "505": "08___NUMERIC___40.092_04___6", "506": "08___NUMERIC___40.092_04___7", "507": "08___NUMERIC___40.092_04___8", "508": "08___NUMERIC___40.092_04___9", "509": "08___NUMERIC___40.092_05___0", "510": "08___NUMERIC___40.092_05___1", "511": "08___NUMERIC___40.092_05___2", "512": "08___NUMERIC___40.092_05___3", "513": "08___NUMERIC___40.092_05___4", "514": "08___NUMERIC___40.092_05___5", "515": "08___NUMERIC___40.092_05___6", "516": "08___NUMERIC___40.092_05___7", "517": "08___NUMERIC___40.092_05___8", "518": "08___NUMERIC___40.092_05___9", "519": "08___NUMERIC___40.092_06___0", "520": "08___NUMERIC___40.092_06___1", "521": "08___NUMERIC___40.092_06___2", "522": "08___NUMERIC___40.092_06___3", "523": "08___NUMERIC___40.092_06___4", "524": "08___NUMERIC___40.092_06___5", "525": "08___NUMERIC___40.092_06___6", "526": "08___NUMERIC___40.092_06___7", "527": "08___NUMERIC___40.092_06___8", "528": "08___NUMERIC___40.092_06___9", "529": "09___NUMERIC___81.8828_00___0", "530": "09___NUMERIC___81.8828_00___1", "531": "09___NUMERIC___81.8828_00___2", "532": "09___NUMERIC___81.8828_00___3", "533": "09___NUMERIC___81.8828_00___4", "534": "09___NUMERIC___81.8828_01___0", "535": "09___NUMERIC___81.8828_01___1", "536": "09___NUMERIC___81.8828_01___2", "537": "09___NUMERIC___81.8828_01___3", "538": "09___NUMERIC___81.8828_01___4", "539": "09___NUMERIC___81.8828_01___5", "540": "09___NUMERIC___81.8828_01___6", "541": "09___NUMERIC___81.8828_01___7", "542": "09___NUMERIC___81.8828_01___8", "543": "09___NUMERIC___81.8828_01___9", "544": "09___NUMERIC___81.8828_02___0", "545": "09___NUMERIC___81.8828_02___1", "546": "09___NUMERIC___81.8828_02___2", "547": "09___NUMERIC___81.8828_02___3", "548": "09___NUMERIC___81.8828_02___4", "549": "09___NUMERIC___81.8828_02___5", "550": "09___NUMERIC___81.8828_02___6", "551": "09___NUMERIC___81.8828_02___7", "552": "09___NUMERIC___81.8828_02___8", "553": "09___NUMERIC___81.8828_02___9", "554": "09___NUMERIC___81.8828_03___.", "555": "09___NUMERIC___81.8828_04___0", "556": "09___NUMERIC___81.8828_04___1", "557": "09___NUMERIC___81.8828_04___2", "558": "09___NUMERIC___81.8828_04___3", "559": "09___NUMERIC___81.8828_04___4", "560": "09___NUMERIC___81.8828_04___5", "561": "09___NUMERIC___81.8828_04___6", "562": "09___NUMERIC___81.8828_04___7", "563": "09___NUMERIC___81.8828_04___8", "564": "09___NUMERIC___81.8828_04___9", "565": "09___NUMERIC___81.8828_05___0", "566": "09___NUMERIC___81.8828_05___1", "567": "09___NUMERIC___81.8828_05___2", "568": "09___NUMERIC___81.8828_05___3", "569": "09___NUMERIC___81.8828_05___4", "570": "09___NUMERIC___81.8828_05___5", "571": "09___NUMERIC___81.8828_05___6", "572": "09___NUMERIC___81.8828_05___7", "573": "09___NUMERIC___81.8828_05___8", "574": "09___NUMERIC___81.8828_05___9", "575": "09___NUMERIC___81.8828_06___0", "576": "09___NUMERIC___81.8828_06___1", "577": "09___NUMERIC___81.8828_06___2", "578": "09___NUMERIC___81.8828_06___3", "579": "09___NUMERIC___81.8828_06___4", "580": "09___NUMERIC___81.8828_06___5", "581": "09___NUMERIC___81.8828_06___6", "582": "09___NUMERIC___81.8828_06___7", "583": "09___NUMERIC___81.8828_06___8", "584": "09___NUMERIC___81.8828_06___9", "585": "09___NUMERIC___81.8828_07___0", "586": "09___NUMERIC___81.8828_07___1", "587": "09___NUMERIC___81.8828_07___2", "588": "09___NUMERIC___81.8828_07___3", "589": "09___NUMERIC___81.8828_07___4", "590": "09___NUMERIC___81.8828_07___5", "591": "09___NUMERIC___81.8828_07___6", "592": "09___NUMERIC___81.8828_07___7", "593": "09___NUMERIC___81.8828_07___8", "594": "09___NUMERIC___81.8828_07___9", "595": "10___CATEGORICAL___g___g", "596": "10___CATEGORICAL___g___h"}, "token2id": {"[UNK]": 0, "[SEP]": 1, "[PAD]": 2, "[CLS]": 3, "[MASK]": 4, "[BOS]": 5, "[EOS]": 6, "[BMEM]": 7, "[EMEM]": 8, "[RMASK]": 9, "[SPTYPE]": 10, "00___NUMERIC___28.7967_00___0": 11, "00___NUMERIC___28.7967_00___1": 12, "00___NUMERIC___28.7967_00___2": 13, "00___NUMERIC___28.7967_00___3": 14, "00___NUMERIC___28.7967_01___0": 15, "00___NUMERIC___28.7967_01___1": 16, "00___NUMERIC___28.7967_01___2": 17, "00___NUMERIC___28.7967_01___3": 18, "00___NUMERIC___28.7967_01___4": 19, "00___NUMERIC___28.7967_01___5": 20, "00___NUMERIC___28.7967_01___6": 21, "00___NUMERIC___28.7967_01___7": 22, "00___NUMERIC___28.7967_01___8": 23, "00___NUMERIC___28.7967_01___9": 24, "00___NUMERIC___28.7967_02___0": 25, "00___NUMERIC___28.7967_02___1": 26, "00___NUMERIC___28.7967_02___2": 27, "00___NUMERIC___28.7967_02___3": 28, "00___NUMERIC___28.7967_02___4": 29, "00___NUMERIC___28.7967_02___5": 30, "00___NUMERIC___28.7967_02___6": 31, "00___NUMERIC___28.7967_02___7": 32, "00___NUMERIC___28.7967_02___8": 33, "00___NUMERIC___28.7967_02___9": 34, "00___NUMERIC___28.7967_03___.": 35, "00___NUMERIC___28.7967_04___0": 36, "00___NUMERIC___28.7967_04___1": 37, "00___NUMERIC___28.7967_04___2": 38, "00___NUMERIC___28.7967_04___3": 39, "00___NUMERIC___28.7967_04___4": 40, "00___NUMERIC___28.7967_04___5": 41, "00___NUMERIC___28.7967_04___6": 42, "00___NUMERIC___28.7967_04___7": 43, "00___NUMERIC___28.7967_04___8": 44, "00___NUMERIC___28.7967_04___9": 45, "00___NUMERIC___28.7967_05___0": 46, "00___NUMERIC___28.7967_05___1": 47, "00___NUMERIC___28.7967_05___2": 48, "00___NUMERIC___28.7967_05___3": 49, "00___NUMERIC___28.7967_05___4": 50, "00___NUMERIC___28.7967_05___5": 51, "00___NUMERIC___28.7967_05___6": 52, "00___NUMERIC___28.7967_05___7": 53, "00___NUMERIC___28.7967_05___8": 54, "00___NUMERIC___28.7967_05___9": 55, "00___NUMERIC___28.7967_06___0": 56, "00___NUMERIC___28.7967_06___1": 57, "00___NUMERIC___28.7967_06___2": 58, "00___NUMERIC___28.7967_06___3": 59, "00___NUMERIC___28.7967_06___4": 60, "00___NUMERIC___28.7967_06___5": 61, "00___NUMERIC___28.7967_06___6": 62, "00___NUMERIC___28.7967_06___7": 63, "00___NUMERIC___28.7967_06___8": 64, "00___NUMERIC___28.7967_06___9": 65, "00___NUMERIC___28.7967_07___0": 66, "00___NUMERIC___28.7967_07___1": 67, "00___NUMERIC___28.7967_07___2": 68, "00___NUMERIC___28.7967_07___3": 69, "00___NUMERIC___28.7967_07___4": 70, "00___NUMERIC___28.7967_07___5": 71, "00___NUMERIC___28.7967_07___6": 72, "00___NUMERIC___28.7967_07___7": 73, "00___NUMERIC___28.7967_07___8": 74, "00___NUMERIC___28.7967_07___9": 75, "01___NUMERIC___16.0021_00___0": 76, "01___NUMERIC___16.0021_00___1": 77, "01___NUMERIC___16.0021_00___2": 78, "01___NUMERIC___16.0021_01___0": 79, "01___NUMERIC___16.0021_01___1": 80, "01___NUMERIC___16.0021_01___2": 81, "01___NUMERIC___16.0021_01___3": 82, "01___NUMERIC___16.0021_01___4": 83, "01___NUMERIC___16.0021_01___5": 84, "01___NUMERIC___16.0021_01___6": 85, "01___NUMERIC___16.0021_01___7": 86, "01___NUMERIC___16.0021_01___8": 87, "01___NUMERIC___16.0021_01___9": 88, "01___NUMERIC___16.0021_02___0": 89, "01___NUMERIC___16.0021_02___1": 90, "01___NUMERIC___16.0021_02___2": 91, "01___NUMERIC___16.0021_02___3": 92, "01___NUMERIC___16.0021_02___4": 93, "01___NUMERIC___16.0021_02___5": 94, "01___NUMERIC___16.0021_02___6": 95, "01___NUMERIC___16.0021_02___7": 96, "01___NUMERIC___16.0021_02___8": 97, "01___NUMERIC___16.0021_02___9": 98, "01___NUMERIC___16.0021_03___.": 99, "01___NUMERIC___16.0021_04___0": 100, "01___NUMERIC___16.0021_04___1": 101, "01___NUMERIC___16.0021_04___2": 102, "01___NUMERIC___16.0021_04___3": 103, "01___NUMERIC___16.0021_04___4": 104, "01___NUMERIC___16.0021_04___5": 105, "01___NUMERIC___16.0021_04___6": 106, "01___NUMERIC___16.0021_04___7": 107, "01___NUMERIC___16.0021_04___8": 108, "01___NUMERIC___16.0021_04___9": 109, "01___NUMERIC___16.0021_05___0": 110, "01___NUMERIC___16.0021_05___1": 111, "01___NUMERIC___16.0021_05___2": 112, "01___NUMERIC___16.0021_05___3": 113, "01___NUMERIC___16.0021_05___4": 114, "01___NUMERIC___16.0021_05___5": 115, "01___NUMERIC___16.0021_05___6": 116, "01___NUMERIC___16.0021_05___7": 117, "01___NUMERIC___16.0021_05___8": 118, "01___NUMERIC___16.0021_05___9": 119, "01___NUMERIC___16.0021_06___0": 120, "01___NUMERIC___16.0021_06___1": 121, "01___NUMERIC___16.0021_06___2": 122, "01___NUMERIC___16.0021_06___3": 123, "01___NUMERIC___16.0021_06___4": 124, "01___NUMERIC___16.0021_06___5": 125, "01___NUMERIC___16.0021_06___6": 126, "01___NUMERIC___16.0021_06___7": 127, "01___NUMERIC___16.0021_06___8": 128, "01___NUMERIC___16.0021_06___9": 129, "01___NUMERIC___16.0021_07___0": 130, "01___NUMERIC___16.0021_07___1": 131, "01___NUMERIC___16.0021_07___2": 132, "01___NUMERIC___16.0021_07___3": 133, "01___NUMERIC___16.0021_07___4": 134, "01___NUMERIC___16.0021_07___5": 135, "01___NUMERIC___16.0021_07___6": 136, "01___NUMERIC___16.0021_07___7": 137, "01___NUMERIC___16.0021_07___8": 138, "01___NUMERIC___16.0021_07___9": 139, "02___NUMERIC___2.6449_00___1": 140, "02___NUMERIC___2.6449_00___2": 141, "02___NUMERIC___2.6449_00___3": 142, "02___NUMERIC___2.6449_00___4": 143, "02___NUMERIC___2.6449_00___5": 144, "02___NUMERIC___2.6449_01___.": 145, "02___NUMERIC___2.6449_02___0": 146, "02___NUMERIC___2.6449_02___1": 147, "02___NUMERIC___2.6449_02___2": 148, "02___NUMERIC___2.6449_02___3": 149, "02___NUMERIC___2.6449_02___4": 150, "02___NUMERIC___2.6449_02___5": 151, "02___NUMERIC___2.6449_02___6": 152, "02___NUMERIC___2.6449_02___7": 153, "02___NUMERIC___2.6449_02___8": 154, "02___NUMERIC___2.6449_02___9": 155, "02___NUMERIC___2.6449_03___0": 156, "02___NUMERIC___2.6449_03___1": 157, "02___NUMERIC___2.6449_03___2": 158, "02___NUMERIC___2.6449_03___3": 159, "02___NUMERIC___2.6449_03___4": 160, "02___NUMERIC___2.6449_03___5": 161, "02___NUMERIC___2.6449_03___6": 162, "02___NUMERIC___2.6449_03___7": 163, "02___NUMERIC___2.6449_03___8": 164, "02___NUMERIC___2.6449_03___9": 165, "02___NUMERIC___2.6449_04___0": 166, "02___NUMERIC___2.6449_04___1": 167, "02___NUMERIC___2.6449_04___2": 168, "02___NUMERIC___2.6449_04___3": 169, "02___NUMERIC___2.6449_04___4": 170, "02___NUMERIC___2.6449_04___5": 171, "02___NUMERIC___2.6449_04___6": 172, "02___NUMERIC___2.6449_04___7": 173, "02___NUMERIC___2.6449_04___8": 174, "02___NUMERIC___2.6449_04___9": 175, "02___NUMERIC___2.6449_05___0": 176, "02___NUMERIC___2.6449_05___1": 177, "02___NUMERIC___2.6449_05___2": 178, "02___NUMERIC___2.6449_05___3": 179, "02___NUMERIC___2.6449_05___4": 180, "02___NUMERIC___2.6449_05___5": 181, "02___NUMERIC___2.6449_05___6": 182, "02___NUMERIC___2.6449_05___7": 183, "02___NUMERIC___2.6449_05___8": 184, "02___NUMERIC___2.6449_05___9": 185, "03___NUMERIC___0.3918_00___0": 186, "03___NUMERIC___0.3918_01___.": 187, "03___NUMERIC___0.3918_02___0": 188, "03___NUMERIC___0.3918_02___1": 189, "03___NUMERIC___0.3918_02___2": 190, "03___NUMERIC___0.3918_02___3": 191, "03___NUMERIC___0.3918_02___4": 192, "03___NUMERIC___0.3918_02___5": 193, "03___NUMERIC___0.3918_02___6": 194, "03___NUMERIC___0.3918_02___7": 195, "03___NUMERIC___0.3918_02___8": 196, "03___NUMERIC___0.3918_03___0": 197, "03___NUMERIC___0.3918_03___1": 198, "03___NUMERIC___0.3918_03___2": 199, "03___NUMERIC___0.3918_03___3": 200, "03___NUMERIC___0.3918_03___4": 201, "03___NUMERIC___0.3918_03___5": 202, "03___NUMERIC___0.3918_03___6": 203, "03___NUMERIC___0.3918_03___7": 204, "03___NUMERIC___0.3918_03___8": 205, "03___NUMERIC___0.3918_03___9": 206, "03___NUMERIC___0.3918_04___0": 207, "03___NUMERIC___0.3918_04___1": 208, "03___NUMERIC___0.3918_04___2": 209, "03___NUMERIC___0.3918_04___3": 210, "03___NUMERIC___0.3918_04___4": 211, "03___NUMERIC___0.3918_04___5": 212, "03___NUMERIC___0.3918_04___6": 213, "03___NUMERIC___0.3918_04___7": 214, "03___NUMERIC___0.3918_04___8": 215, "03___NUMERIC___0.3918_04___9": 216, "03___NUMERIC___0.3918_05___0": 217, "03___NUMERIC___0.3918_05___1": 218, "03___NUMERIC___0.3918_05___2": 219, "03___NUMERIC___0.3918_05___3": 220, "03___NUMERIC___0.3918_05___4": 221, "03___NUMERIC___0.3918_05___5": 222, "03___NUMERIC___0.3918_05___6": 223, "03___NUMERIC___0.3918_05___7": 224, "03___NUMERIC___0.3918_05___8": 225, "03___NUMERIC___0.3918_05___9": 226, "04___NUMERIC___0.1982_00___0": 227, "04___NUMERIC___0.1982_01___.": 228, "04___NUMERIC___0.1982_02___0": 229, "04___NUMERIC___0.1982_02___1": 230, "04___NUMERIC___0.1982_02___2": 231, "04___NUMERIC___0.1982_02___3": 232, "04___NUMERIC___0.1982_02___4": 233, "04___NUMERIC___0.1982_02___5": 234, "04___NUMERIC___0.1982_02___6": 235, "04___NUMERIC___0.1982_03___0": 236, "04___NUMERIC___0.1982_03___1": 237, "04___NUMERIC___0.1982_03___2": 238, "04___NUMERIC___0.1982_03___3": 239, "04___NUMERIC___0.1982_03___4": 240, "04___NUMERIC___0.1982_03___5": 241, "04___NUMERIC___0.1982_03___6": 242, "04___NUMERIC___0.1982_03___7": 243, "04___NUMERIC___0.1982_03___8": 244, "04___NUMERIC___0.1982_03___9": 245, "04___NUMERIC___0.1982_04___0": 246, "04___NUMERIC___0.1982_04___1": 247, "04___NUMERIC___0.1982_04___2": 248, "04___NUMERIC___0.1982_04___3": 249, "04___NUMERIC___0.1982_04___4": 250, "04___NUMERIC___0.1982_04___5": 251, "04___NUMERIC___0.1982_04___6": 252, "04___NUMERIC___0.1982_04___7": 253, "04___NUMERIC___0.1982_04___8": 254, "04___NUMERIC___0.1982_04___9": 255, "04___NUMERIC___0.1982_05___0": 256, "04___NUMERIC___0.1982_05___1": 257, "04___NUMERIC___0.1982_05___2": 258, "04___NUMERIC___0.1982_05___3": 259, "04___NUMERIC___0.1982_05___4": 260, "04___NUMERIC___0.1982_05___5": 261, "04___NUMERIC___0.1982_05___6": 262, "04___NUMERIC___0.1982_05___7": 263, "04___NUMERIC___0.1982_05___8": 264, "04___NUMERIC___0.1982_05___9": 265, "05___NUMERIC___27.7004_00___-": 266, "05___NUMERIC___27.7004_00___0": 267, "05___NUMERIC___27.7004_01___0": 268, "05___NUMERIC___27.7004_01___1": 269, "05___NUMERIC___27.7004_01___2": 270, "05___NUMERIC___27.7004_01___3": 271, "05___NUMERIC___27.7004_01___4": 272, "05___NUMERIC___27.7004_01___5": 273, "05___NUMERIC___27.7004_02___0": 274, "05___NUMERIC___27.7004_02___1": 275, "05___NUMERIC___27.7004_02___2": 276, "05___NUMERIC___27.7004_02___3": 277, "05___NUMERIC___27.7004_02___4": 278, "05___NUMERIC___27.7004_02___5": 279, "05___NUMERIC___27.7004_02___6": 280, "05___NUMERIC___27.7004_02___7": 281, "05___NUMERIC___27.7004_02___8": 282, "05___NUMERIC___27.7004_02___9": 283, "05___NUMERIC___27.7004_03___0": 284, "05___NUMERIC___27.7004_03___1": 285, "05___NUMERIC___27.7004_03___2": 286, "05___NUMERIC___27.7004_03___3": 287, "05___NUMERIC___27.7004_03___4": 288, "05___NUMERIC___27.7004_03___5": 289, "05___NUMERIC___27.7004_03___6": 290, "05___NUMERIC___27.7004_03___7": 291, "05___NUMERIC___27.7004_03___8": 292, "05___NUMERIC___27.7004_03___9": 293, "05___NUMERIC___27.7004_04___.": 294, "05___NUMERIC___27.7004_05___0": 295, "05___NUMERIC___27.7004_05___1": 296, "05___NUMERIC___27.7004_05___2": 297, "05___NUMERIC___27.7004_05___3": 298, "05___NUMERIC___27.7004_05___4": 299, "05___NUMERIC___27.7004_05___5": 300, "05___NUMERIC___27.7004_05___6": 301, "05___NUMERIC___27.7004_05___7": 302, "05___NUMERIC___27.7004_05___8": 303, "05___NUMERIC___27.7004_05___9": 304, "05___NUMERIC___27.7004_06___0": 305, "05___NUMERIC___27.7004_06___1": 306, "05___NUMERIC___27.7004_06___2": 307, "05___NUMERIC___27.7004_06___3": 308, "05___NUMERIC___27.7004_06___4": 309, "05___NUMERIC___27.7004_06___5": 310, "05___NUMERIC___27.7004_06___6": 311, "05___NUMERIC___27.7004_06___7": 312, "05___NUMERIC___27.7004_06___8": 313, "05___NUMERIC___27.7004_06___9": 314, "05___NUMERIC___27.7004_07___0": 315, "05___NUMERIC___27.7004_07___1": 316, "05___NUMERIC___27.7004_07___2": 317, "05___NUMERIC___27.7004_07___3": 318, "05___NUMERIC___27.7004_07___4": 319, "05___NUMERIC___27.7004_07___5": 320, "05___NUMERIC___27.7004_07___6": 321, "05___NUMERIC___27.7004_07___7": 322, "05___NUMERIC___27.7004_07___8": 323, "05___NUMERIC___27.7004_07___9": 324, "05___NUMERIC___27.7004_08___0": 325, "05___NUMERIC___27.7004_08___1": 326, "05___NUMERIC___27.7004_08___2": 327, "05___NUMERIC___27.7004_08___3": 328, "05___NUMERIC___27.7004_08___4": 329, "05___NUMERIC___27.7004_08___5": 330, "05___NUMERIC___27.7004_08___6": 331, "05___NUMERIC___27.7004_08___7": 332, "05___NUMERIC___27.7004_08___8": 333, "05___NUMERIC___27.7004_08___9": 334, "06___NUMERIC___22.011_00___-": 335, "06___NUMERIC___22.011_00___0": 336, "06___NUMERIC___22.011_01___0": 337, "06___NUMERIC___22.011_01___1": 338, "06___NUMERIC___22.011_01___2": 339, "06___NUMERIC___22.011_01___3": 340, "06___NUMERIC___22.011_02___0": 341, "06___NUMERIC___22.011_02___1": 342, "06___NUMERIC___22.011_02___2": 343, "06___NUMERIC___22.011_02___3": 344, "06___NUMERIC___22.011_02___4": 345, "06___NUMERIC___22.011_02___5": 346, "06___NUMERIC___22.011_02___6": 347, "06___NUMERIC___22.011_02___7": 348, "06___NUMERIC___22.011_02___8": 349, "06___NUMERIC___22.011_02___9": 350, "06___NUMERIC___22.011_03___0": 351, "06___NUMERIC___22.011_03___1": 352, "06___NUMERIC___22.011_03___2": 353, "06___NUMERIC___22.011_03___3": 354, "06___NUMERIC___22.011_03___4": 355, "06___NUMERIC___22.011_03___5": 356, "06___NUMERIC___22.011_03___6": 357, "06___NUMERIC___22.011_03___7": 358, "06___NUMERIC___22.011_03___8": 359, "06___NUMERIC___22.011_03___9": 360, "06___NUMERIC___22.011_04___.": 361, "06___NUMERIC___22.011_05___0": 362, "06___NUMERIC___22.011_05___1": 363, "06___NUMERIC___22.011_05___2": 364, "06___NUMERIC___22.011_05___3": 365, "06___NUMERIC___22.011_05___4": 366, "06___NUMERIC___22.011_05___5": 367, "06___NUMERIC___22.011_05___6": 368, "06___NUMERIC___22.011_05___7": 369, "06___NUMERIC___22.011_05___8": 370, "06___NUMERIC___22.011_05___9": 371, "06___NUMERIC___22.011_06___0": 372, "06___NUMERIC___22.011_06___1": 373, "06___NUMERIC___22.011_06___2": 374, "06___NUMERIC___22.011_06___3": 375, "06___NUMERIC___22.011_06___4": 376, "06___NUMERIC___22.011_06___5": 377, "06___NUMERIC___22.011_06___6": 378, "06___NUMERIC___22.011_06___7": 379, "06___NUMERIC___22.011_06___8": 380, "06___NUMERIC___22.011_06___9": 381, "06___NUMERIC___22.011_07___0": 382, "06___NUMERIC___22.011_07___1": 383, "06___NUMERIC___22.011_07___2": 384, "06___NUMERIC___22.011_07___3": 385, "06___NUMERIC___22.011_07___4": 386, "06___NUMERIC___22.011_07___5": 387, "06___NUMERIC___22.011_07___6": 388, "06___NUMERIC___22.011_07___7": 389, "06___NUMERIC___22.011_07___8": 390, "06___NUMERIC___22.011_07___9": 391, "06___NUMERIC___22.011_08___0": 392, "06___NUMERIC___22.011_08___1": 393, "06___NUMERIC___22.011_08___2": 394, "06___NUMERIC___22.011_08___3": 395, "06___NUMERIC___22.011_08___4": 396, "06___NUMERIC___22.011_08___5": 397, "06___NUMERIC___22.011_08___6": 398, "06___NUMERIC___22.011_08___7": 399, "06___NUMERIC___22.011_08___8": 400, "06___NUMERIC___22.011_08___9": 401, "07___NUMERIC___-8.2027_00___-": 402, "07___NUMERIC___-8.2027_00___0": 403, "07___NUMERIC___-8.2027_01___0": 404, "07___NUMERIC___-8.2027_01___1": 405, "07___NUMERIC___-8.2027_01___2": 406, "07___NUMERIC___-8.2027_02___0": 407, "07___NUMERIC___-8.2027_02___1": 408, "07___NUMERIC___-8.2027_02___2": 409, "07___NUMERIC___-8.2027_02___3": 410, "07___NUMERIC___-8.2027_02___4": 411, "07___NUMERIC___-8.2027_02___5": 412, "07___NUMERIC___-8.2027_02___6": 413, "07___NUMERIC___-8.2027_02___7": 414, "07___NUMERIC___-8.2027_02___8": 415, "07___NUMERIC___-8.2027_02___9": 416, "07___NUMERIC___-8.2027_03___0": 417, "07___NUMERIC___-8.2027_03___1": 418, "07___NUMERIC___-8.2027_03___2": 419, "07___NUMERIC___-8.2027_03___3": 420, "07___NUMERIC___-8.2027_03___4": 421, "07___NUMERIC___-8.2027_03___5": 422, "07___NUMERIC___-8.2027_03___6": 423, "07___NUMERIC___-8.2027_03___7": 424, "07___NUMERIC___-8.2027_03___8": 425, "07___NUMERIC___-8.2027_03___9": 426, "07___NUMERIC___-8.2027_04___.": 427, "07___NUMERIC___-8.2027_05___0": 428, "07___NUMERIC___-8.2027_05___1": 429, "07___NUMERIC___-8.2027_05___2": 430, "07___NUMERIC___-8.2027_05___3": 431, "07___NUMERIC___-8.2027_05___4": 432, "07___NUMERIC___-8.2027_05___5": 433, "07___NUMERIC___-8.2027_05___6": 434, "07___NUMERIC___-8.2027_05___7": 435, "07___NUMERIC___-8.2027_05___8": 436, "07___NUMERIC___-8.2027_05___9": 437, "07___NUMERIC___-8.2027_06___0": 438, "07___NUMERIC___-8.2027_06___1": 439, "07___NUMERIC___-8.2027_06___2": 440, "07___NUMERIC___-8.2027_06___3": 441, "07___NUMERIC___-8.2027_06___4": 442, "07___NUMERIC___-8.2027_06___5": 443, "07___NUMERIC___-8.2027_06___6": 444, "07___NUMERIC___-8.2027_06___7": 445, "07___NUMERIC___-8.2027_06___8": 446, "07___NUMERIC___-8.2027_06___9": 447, "07___NUMERIC___-8.2027_07___0": 448, "07___NUMERIC___-8.2027_07___1": 449, "07___NUMERIC___-8.2027_07___2": 450, "07___NUMERIC___-8.2027_07___3": 451, "07___NUMERIC___-8.2027_07___4": 452, "07___NUMERIC___-8.2027_07___5": 453, "07___NUMERIC___-8.2027_07___6": 454, "07___NUMERIC___-8.2027_07___7": 455, "07___NUMERIC___-8.2027_07___8": 456, "07___NUMERIC___-8.2027_07___9": 457, "07___NUMERIC___-8.2027_08___0": 458, "07___NUMERIC___-8.2027_08___1": 459, "07___NUMERIC___-8.2027_08___2": 460, "07___NUMERIC___-8.2027_08___3": 461, "07___NUMERIC___-8.2027_08___4": 462, "07___NUMERIC___-8.2027_08___5": 463, "07___NUMERIC___-8.2027_08___6": 464, "07___NUMERIC___-8.2027_08___7": 465, "07___NUMERIC___-8.2027_08___8": 466, "07___NUMERIC___-8.2027_08___9": 467, "08___NUMERIC___40.092_00___0": 468, "08___NUMERIC___40.092_00___1": 469, "08___NUMERIC___40.092_00___2": 470, "08___NUMERIC___40.092_00___3": 471, "08___NUMERIC___40.092_00___4": 472, "08___NUMERIC___40.092_00___5": 473, "08___NUMERIC___40.092_00___6": 474, "08___NUMERIC___40.092_00___7": 475, "08___NUMERIC___40.092_00___8": 476, "08___NUMERIC___40.092_00___9": 477, "08___NUMERIC___40.092_01___0": 478, "08___NUMERIC___40.092_01___1": 479, "08___NUMERIC___40.092_01___2": 480, "08___NUMERIC___40.092_01___3": 481, "08___NUMERIC___40.092_01___4": 482, "08___NUMERIC___40.092_01___5": 483, "08___NUMERIC___40.092_01___6": 484, "08___NUMERIC___40.092_01___7": 485, "08___NUMERIC___40.092_01___8": 486, "08___NUMERIC___40.092_01___9": 487, "08___NUMERIC___40.092_02___.": 488, "08___NUMERIC___40.092_03___0": 489, "08___NUMERIC___40.092_03___1": 490, "08___NUMERIC___40.092_03___2": 491, "08___NUMERIC___40.092_03___3": 492, "08___NUMERIC___40.092_03___4": 493, "08___NUMERIC___40.092_03___5": 494, "08___NUMERIC___40.092_03___6": 495, "08___NUMERIC___40.092_03___7": 496, "08___NUMERIC___40.092_03___8": 497, "08___NUMERIC___40.092_03___9": 498, "08___NUMERIC___40.092_04___0": 499, "08___NUMERIC___40.092_04___1": 500, "08___NUMERIC___40.092_04___2": 501, "08___NUMERIC___40.092_04___3": 502, "08___NUMERIC___40.092_04___4": 503, "08___NUMERIC___40.092_04___5": 504, "08___NUMERIC___40.092_04___6": 505, "08___NUMERIC___40.092_04___7": 506, "08___NUMERIC___40.092_04___8": 507, "08___NUMERIC___40.092_04___9": 508, "08___NUMERIC___40.092_05___0": 509, "08___NUMERIC___40.092_05___1": 510, "08___NUMERIC___40.092_05___2": 511, "08___NUMERIC___40.092_05___3": 512, "08___NUMERIC___40.092_05___4": 513, "08___NUMERIC___40.092_05___5": 514, "08___NUMERIC___40.092_05___6": 515, "08___NUMERIC___40.092_05___7": 516, "08___NUMERIC___40.092_05___8": 517, "08___NUMERIC___40.092_05___9": 518, "08___NUMERIC___40.092_06___0": 519, "08___NUMERIC___40.092_06___1": 520, "08___NUMERIC___40.092_06___2": 521, "08___NUMERIC___40.092_06___3": 522, "08___NUMERIC___40.092_06___4": 523, "08___NUMERIC___40.092_06___5": 524, "08___NUMERIC___40.092_06___6": 525, "08___NUMERIC___40.092_06___7": 526, "08___NUMERIC___40.092_06___8": 527, "08___NUMERIC___40.092_06___9": 528, "09___NUMERIC___81.8828_00___0": 529, "09___NUMERIC___81.8828_00___1": 530, "09___NUMERIC___81.8828_00___2": 531, "09___NUMERIC___81.8828_00___3": 532, "09___NUMERIC___81.8828_00___4": 533, "09___NUMERIC___81.8828_01___0": 534, "09___NUMERIC___81.8828_01___1": 535, "09___NUMERIC___81.8828_01___2": 536, "09___NUMERIC___81.8828_01___3": 537, "09___NUMERIC___81.8828_01___4": 538, "09___NUMERIC___81.8828_01___5": 539, "09___NUMERIC___81.8828_01___6": 540, "09___NUMERIC___81.8828_01___7": 541, "09___NUMERIC___81.8828_01___8": 542, "09___NUMERIC___81.8828_01___9": 543, "09___NUMERIC___81.8828_02___0": 544, "09___NUMERIC___81.8828_02___1": 545, "09___NUMERIC___81.8828_02___2": 546, "09___NUMERIC___81.8828_02___3": 547, "09___NUMERIC___81.8828_02___4": 548, "09___NUMERIC___81.8828_02___5": 549, "09___NUMERIC___81.8828_02___6": 550, "09___NUMERIC___81.8828_02___7": 551, "09___NUMERIC___81.8828_02___8": 552, "09___NUMERIC___81.8828_02___9": 553, "09___NUMERIC___81.8828_03___.": 554, "09___NUMERIC___81.8828_04___0": 555, "09___NUMERIC___81.8828_04___1": 556, "09___NUMERIC___81.8828_04___2": 557, "09___NUMERIC___81.8828_04___3": 558, "09___NUMERIC___81.8828_04___4": 559, "09___NUMERIC___81.8828_04___5": 560, "09___NUMERIC___81.8828_04___6": 561, "09___NUMERIC___81.8828_04___7": 562, "09___NUMERIC___81.8828_04___8": 563, "09___NUMERIC___81.8828_04___9": 564, "09___NUMERIC___81.8828_05___0": 565, "09___NUMERIC___81.8828_05___1": 566, "09___NUMERIC___81.8828_05___2": 567, "09___NUMERIC___81.8828_05___3": 568, "09___NUMERIC___81.8828_05___4": 569, "09___NUMERIC___81.8828_05___5": 570, "09___NUMERIC___81.8828_05___6": 571, "09___NUMERIC___81.8828_05___7": 572, "09___NUMERIC___81.8828_05___8": 573, "09___NUMERIC___81.8828_05___9": 574, "09___NUMERIC___81.8828_06___0": 575, "09___NUMERIC___81.8828_06___1": 576, "09___NUMERIC___81.8828_06___2": 577, "09___NUMERIC___81.8828_06___3": 578, "09___NUMERIC___81.8828_06___4": 579, "09___NUMERIC___81.8828_06___5": 580, "09___NUMERIC___81.8828_06___6": 581, "09___NUMERIC___81.8828_06___7": 582, "09___NUMERIC___81.8828_06___8": 583, "09___NUMERIC___81.8828_06___9": 584, "09___NUMERIC___81.8828_07___0": 585, "09___NUMERIC___81.8828_07___1": 586, "09___NUMERIC___81.8828_07___2": 587, "09___NUMERIC___81.8828_07___3": 588, "09___NUMERIC___81.8828_07___4": 589, "09___NUMERIC___81.8828_07___5": 590, "09___NUMERIC___81.8828_07___6": 591, "09___NUMERIC___81.8828_07___7": 592, "09___NUMERIC___81.8828_07___8": 593, "09___NUMERIC___81.8828_07___9": 594, "10___CATEGORICAL___g___g": 595, "10___CATEGORICAL___g___h": 596}, "column_token_ids": {"00___NUMERIC___28.7967_00": [11, 12, 13, 14], "00___NUMERIC___28.7967_01": [15, 16, 17, 18, 19, 20, 21, 22, 23, 24], "00___NUMERIC___28.7967_02": [25, 26, 27, 28, 29, 30, 31, 32, 33, 34], "00___NUMERIC___28.7967_03": [35], "00___NUMERIC___28.7967_04": [36, 37, 38, 39, 40, 41, 42, 43, 44, 45], "00___NUMERIC___28.7967_05": [46, 47, 48, 49, 50, 51, 52, 53, 54, 55], "00___NUMERIC___28.7967_06": [56, 57, 58, 59, 60, 61, 62, 63, 64, 65], "00___NUMERIC___28.7967_07": [66, 67, 68, 69, 70, 71, 72, 73, 74, 75], "01___NUMERIC___16.0021_00": [76, 77, 78], "01___NUMERIC___16.0021_01": [79, 80, 81, 82, 83, 84, 85, 86, 87, 88], "01___NUMERIC___16.0021_02": [89, 90, 91, 92, 93, 94, 95, 96, 97, 98], "01___NUMERIC___16.0021_03": [99], "01___NUMERIC___16.0021_04": [100, 101, 102, 103, 104, 105, 106, 107, 108, 109], "01___NUMERIC___16.0021_05": [110, 111, 112, 113, 114, 115, 116, 117, 118, 119], "01___NUMERIC___16.0021_06": [120, 121, 122, 123, 124, 125, 126, 127, 128, 129], "01___NUMERIC___16.0021_07": [130, 131, 132, 133, 134, 135, 136, 137, 138, 139], "02___NUMERIC___2.6449_00": [140, 141, 142, 143, 144], "02___NUMERIC___2.6449_01": [145], "02___NUMERIC___2.6449_02": [146, 147, 148, 149, 150, 151, 152, 153, 154, 155], "02___NUMERIC___2.6449_03": [156, 157, 158, 159, 160, 161, 162, 163, 164, 165], "02___NUMERIC___2.6449_04": [166, 167, 168, 169, 170, 171, 172, 173, 174, 175], "02___NUMERIC___2.6449_05": [176, 177, 178, 179, 180, 181, 182, 183, 184, 185], "03___NUMERIC___0.3918_00": [186], "03___NUMERIC___0.3918_01": [187], "03___NUMERIC___0.3918_02": [188, 189, 190, 191, 192, 193, 194, 195, 196], "03___NUMERIC___0.3918_03": [197, 198, 199, 200, 201, 202, 203, 204, 205, 206], "03___NUMERIC___0.3918_04": [207, 208, 209, 210, 211, 212, 213, 214, 215, 216], "03___NUMERIC___0.3918_05": [217, 218, 219, 220, 221, 222, 223, 224, 225, 226], "04___NUMERIC___0.1982_00": [227], "04___NUMERIC___0.1982_01": [228], "04___NUMERIC___0.1982_02": [229, 230, 231, 232, 233, 234, 235], "04___NUMERIC___0.1982_03": [236, 237, 238, 239, 240, 241, 242, 243, 244, 245], "04___NUMERIC___0.1982_04": [246, 247, 248, 249, 250, 251, 252, 253, 254, 255], "04___NUMERIC___0.1982_05": [256, 257, 258, 259, 260, 261, 262, 263, 264, 265], "05___NUMERIC___27.7004_00": [266, 267], "05___NUMERIC___27.7004_01": [268, 269, 270, 271, 272, 273], "05___NUMERIC___27.7004_02": [274, 275, 276, 277, 278, 279, 280, 281, 282, 283], "05___NUMERIC___27.7004_03": [284, 285, 286, 287, 288, 289, 290, 291, 292, 293], "05___NUMERIC___27.7004_04": [294], "05___NUMERIC___27.7004_05": [295, 296, 297, 298, 299, 300, 301, 302, 303, 304], "05___NUMERIC___27.7004_06": [305, 306, 307, 308, 309, 310, 311, 312, 313, 314], "05___NUMERIC___27.7004_07": [315, 316, 317, 318, 319, 320, 321, 322, 323, 324], "05___NUMERIC___27.7004_08": [325, 326, 327, 328, 329, 330, 331, 332, 333, 334], "06___NUMERIC___22.011_00": [335, 336], "06___NUMERIC___22.011_01": [337, 338, 339, 340], "06___NUMERIC___22.011_02": [341, 342, 343, 344, 345, 346, 347, 348, 349, 350], "06___NUMERIC___22.011_03": [351, 352, 353, 354, 355, 356, 357, 358, 359, 360], "06___NUMERIC___22.011_04": [361], "06___NUMERIC___22.011_05": [362, 363, 364, 365, 366, 367, 368, 369, 370, 371], "06___NUMERIC___22.011_06": [372, 373, 374, 375, 376, 377, 378, 379, 380, 381], "06___NUMERIC___22.011_07": [382, 383, 384, 385, 386, 387, 388, 389, 390, 391], "06___NUMERIC___22.011_08": [392, 393, 394, 395, 396, 397, 398, 399, 400, 401], "07___NUMERIC___-8.2027_00": [402, 403], "07___NUMERIC___-8.2027_01": [404, 405, 406], "07___NUMERIC___-8.2027_02": [407, 408, 409, 410, 411, 412, 413, 414, 415, 416], "07___NUMERIC___-8.2027_03": [417, 418, 419, 420, 421, 422, 423, 424, 425, 426], "07___NUMERIC___-8.2027_04": [427], "07___NUMERIC___-8.2027_05": [428, 429, 430, 431, 432, 433, 434, 435, 436, 437], "07___NUMERIC___-8.2027_06": [438, 439, 440, 441, 442, 443, 444, 445, 446, 447], "07___NUMERIC___-8.2027_07": [448, 449, 450, 451, 452, 453, 454, 455, 456, 457], "07___NUMERIC___-8.2027_08": [458, 459, 460, 461, 462, 463, 464, 465, 466, 467], "08___NUMERIC___40.092_00": [468, 469, 470, 471, 472, 473, 474, 475, 476, 477], "08___NUMERIC___40.092_01": [478, 479, 480, 481, 482, 483, 484, 485, 486, 487], "08___NUMERIC___40.092_02": [488], "08___NUMERIC___40.092_03": [489, 490, 491, 492, 493, 494, 495, 496, 497, 498], "08___NUMERIC___40.092_04": [499, 500, 501, 502, 503, 504, 505, 506, 507, 508], "08___NUMERIC___40.092_05": [509, 510, 511, 512, 513, 514, 515, 516, 517, 518], "08___NUMERIC___40.092_06": [519, 520, 521, 522, 523, 524, 525, 526, 527, 528], "09___NUMERIC___81.8828_00": [529, 530, 531, 532, 533], "09___NUMERIC___81.8828_01": [534, 535, 536, 537, 538, 539, 540, 541, 542, 543], "09___NUMERIC___81.8828_02": [544, 545, 546, 547, 548, 549, 550, 551, 552, 553], "09___NUMERIC___81.8828_03": [554], "09___NUMERIC___81.8828_04": [555, 556, 557, 558, 559, 560, 561, 562, 563, 564], "09___NUMERIC___81.8828_05": [565, 566, 567, 568, 569, 570, 571, 572, 573, 574], "09___NUMERIC___81.8828_06": [575, 576, 577, 578, 579, 580, 581, 582, 583, 584], "09___NUMERIC___81.8828_07": [585, 586, 587, 588, 589, 590, 591, 592, 593, 594], "10___CATEGORICAL___g": [595, 596]}}, "tabular_max_length": 79, "relational_max_length": null, "tabular_col_size": 15215, "relational_col_size": null, "col_transform_data": {"28.7967": {"max_len": 10, "numeric_precision": 4, "mx_sig": 3, "ljust": 8, "numeric_nparts": 1}, "16.0021": {"max_len": 10, "numeric_precision": 4, "mx_sig": 3, "ljust": 8, "numeric_nparts": 1}, "2.6449": {"max_len": 10, "numeric_precision": 4, "mx_sig": 1, "ljust": 6, "numeric_nparts": 1}, "0.3918": {"max_len": 10, "numeric_precision": 4, "mx_sig": 1, "ljust": 6, "numeric_nparts": 1}, "0.1982": {"max_len": 10, "numeric_precision": 4, "mx_sig": 1, "ljust": 6, "numeric_nparts": 1}, "27.7004": {"max_len": 10, "numeric_precision": 4, "mx_sig": 4, "ljust": 9, "numeric_nparts": 1}, "22.011": {"max_len": 10, "numeric_precision": 4, "mx_sig": 4, "ljust": 9, "numeric_nparts": 1}, "-8.2027": {"max_len": 10, "numeric_precision": 4, "mx_sig": 4, "ljust": 9, "numeric_nparts": 1}, "40.092": {"max_len": 10, "numeric_precision": 4, "mx_sig": 2, "ljust": 7, "numeric_nparts": 1}, "81.8828": {"max_len": 10, "numeric_precision": 4, "mx_sig": 3, "ljust": 8, "numeric_nparts": 1}}, "in_col_transform_data": null, "col_idx_ids": {"0": [11, 12, 13, 14], "1": [15, 16, 17, 18, 19, 20, 21, 22, 23, 24], "2": [25, 26, 27, 28, 29, 30, 31, 32, 33, 34], "3": [35], "4": [36, 37, 38, 39, 40, 41, 42, 43, 44, 45], "5": [46, 47, 48, 49, 50, 51, 52, 53, 54, 55], "6": [56, 57, 58, 59, 60, 61, 62, 63, 64, 65], "7": [66, 67, 68, 69, 70, 71, 72, 73, 74, 75], "8": [76, 77, 78], "9": [79, 80, 81, 82, 83, 84, 85, 86, 87, 88], "10": [89, 90, 91, 92, 93, 94, 95, 96, 97, 98], "11": [99], "12": [100, 101, 102, 103, 104, 105, 106, 107, 108, 109], "13": [110, 111, 112, 113, 114, 115, 116, 117, 118, 119], "14": [120, 121, 122, 123, 124, 125, 126, 127, 128, 129], "15": [130, 131, 132, 133, 134, 135, 136, 137, 138, 139], "16": [140, 141, 142, 143, 144], "17": [145], "18": [146, 147, 148, 149, 150, 151, 152, 153, 154, 155], "19": [156, 157, 158, 159, 160, 161, 162, 163, 164, 165], "20": [166, 167, 168, 169, 170, 171, 172, 173, 174, 175], "21": [176, 177, 178, 179, 180, 181, 182, 183, 184, 185], "22": [186], "23": [187], "24": [188, 189, 190, 191, 192, 193, 194, 195, 196], "25": [197, 198, 199, 200, 201, 202, 203, 204, 205, 206], "26": [207, 208, 209, 210, 211, 212, 213, 214, 215, 216], "27": [217, 218, 219, 220, 221, 222, 223, 224, 225, 226], "28": [227], "29": [228], "30": [229, 230, 231, 232, 233, 234, 235], "31": [236, 237, 238, 239, 240, 241, 242, 243, 244, 245], "32": [246, 247, 248, 249, 250, 251, 252, 253, 254, 255], "33": [256, 257, 258, 259, 260, 261, 262, 263, 264, 265], "34": [266, 267], "35": [268, 269, 270, 271, 272, 273], "36": [274, 275, 276, 277, 278, 279, 280, 281, 282, 283], "37": [284, 285, 286, 287, 288, 289, 290, 291, 292, 293], "38": [294], "39": [295, 296, 297, 298, 299, 300, 301, 302, 303, 304], "40": [305, 306, 307, 308, 309, 310, 311, 312, 313, 314], "41": [315, 316, 317, 318, 319, 320, 321, 322, 323, 324], "42": [325, 326, 327, 328, 329, 330, 331, 332, 333, 334], "43": [335, 336], "44": [337, 338, 339, 340], "45": [341, 342, 343, 344, 345, 346, 347, 348, 349, 350], "46": [351, 352, 353, 354, 355, 356, 357, 358, 359, 360], "47": [361], "48": [362, 363, 364, 365, 366, 367, 368, 369, 370, 371], "49": [372, 373, 374, 375, 376, 377, 378, 379, 380, 381], "50": [382, 383, 384, 385, 386, 387, 388, 389, 390, 391], "51": [392, 393, 394, 395, 396, 397, 398, 399, 400, 401], "52": [402, 403], "53": [404, 405, 406], "54": [407, 408, 409, 410, 411, 412, 413, 414, 415, 416], "55": [417, 418, 419, 420, 421, 422, 423, 424, 425, 426], "56": [427], "57": [428, 429, 430, 431, 432, 433, 434, 435, 436, 437], "58": [438, 439, 440, 441, 442, 443, 444, 445, 446, 447], "59": [448, 449, 450, 451, 452, 453, 454, 455, 456, 457], "60": [458, 459, 460, 461, 462, 463, 464, 465, 466, 467], "61": [468, 469, 470, 471, 472, 473, 474, 475, 476, 477], "62": [478, 479, 480, 481, 482, 483, 484, 485, 486, 487], "63": [488], "64": [489, 490, 491, 492, 493, 494, 495, 496, 497, 498], "65": [499, 500, 501, 502, 503, 504, 505, 506, 507, 508], "66": [509, 510, 511, 512, 513, 514, 515, 516, 517, 518], "67": [519, 520, 521, 522, 523, 524, 525, 526, 527, 528], "68": [529, 530, 531, 532, 533], "69": [534, 535, 536, 537, 538, 539, 540, 541, 542, 543], "70": [544, 545, 546, 547, 548, 549, 550, 551, 552, 553], "71": [554], "72": [555, 556, 557, 558, 559, 560, 561, 562, 563, 564], "73": [565, 566, 567, 568, 569, 570, 571, 572, 573, 574], "74": [575, 576, 577, 578, 579, 580, 581, 582, 583, 584], "75": [585, 586, 587, 588, 589, 590, 591, 592, 593, 594], "76": [595, 596]}, "random_state": 1029, "numeric_nparts": 1, "numeric_precision": 4, "numeric_max_len": 10, "experiment_id": "id000017775600783780347904", "trainer_state": null, "target_col": null, "realtabformer_version": "0.2.4"} \ No newline at end of file diff --git a/timecost/n11/realtabformer/rtf-n11-20260430_214424/models_100epochs/id000017775600783780347904/rtf_model.pt b/timecost/n11/realtabformer/rtf-n11-20260430_214424/models_100epochs/id000017775600783780347904/rtf_model.pt new file mode 100644 index 0000000000000000000000000000000000000000..bede471f295098301b0e7413fcbe848314e4990e --- /dev/null +++ b/timecost/n11/realtabformer/rtf-n11-20260430_214424/models_100epochs/id000017775600783780347904/rtf_model.pt @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:e02f7251f2d45a48493f0551d5e2099efee6c9420e443cf865cb3c5302a92f43 +size 175123939 diff --git a/timecost/n11/realtabformer/rtf-n11-20260430_214424/public_gate/normalized_schema_snapshot.json b/timecost/n11/realtabformer/rtf-n11-20260430_214424/public_gate/normalized_schema_snapshot.json new file mode 100644 index 0000000000000000000000000000000000000000..96904695eb041844b615aa285fda674f1da87108 --- /dev/null +++ b/timecost/n11/realtabformer/rtf-n11-20260430_214424/public_gate/normalized_schema_snapshot.json @@ -0,0 +1,235 @@ +{ + "dataset_id": "n11", + "target_column": "g", + "task_type": "classification", + "columns": [ + { + "name": "28.7967", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 14962, + "unique_ratio": 0.983372, + "example_values": [ + "33.9347", + "118.601", + "19.83", + "33.2691", + "13.1404" + ] + } + }, + { + "name": "16.0021", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 14662, + "unique_ratio": 0.963654, + "example_values": [ + "10.8862", + "44.2479", + "7.3303", + "9.1269", + "10.8527" + ] + } + }, + { + "name": "2.6449", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 6336, + "unique_ratio": 0.416431, + "example_values": [ + "2.5328", + "3.5558", + "2.2541", + "2.6728", + "2.1775" + ] + } + }, + { + "name": "0.3918", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 6002, + "unique_ratio": 0.394479, + "example_values": [ + "0.4047", + "0.1769", + "0.7521", + "0.4437", + "0.7708" + ] + } + }, + { + "name": "0.1982", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 4230, + "unique_ratio": 0.278015, + "example_values": [ + "0.2155", + "0.1003", + "0.4095", + "0.2553", + "0.4352" + ] + } + }, + { + "name": "27.7004", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 14996, + "unique_ratio": 0.985606, + "example_values": [ + "-25.0369", + "-95.8266", + "2.8528", + "12.3981", + "14.3006" + ] + } + }, + { + "name": "22.011", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 14984, + "unique_ratio": 0.984818, + "example_values": [ + "-23.1659", + "14.9809", + "-9.7666", + "19.9081", + "-3.6418" + ] + } + }, + { + "name": "-8.2027", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 14795, + "unique_ratio": 0.972396, + "example_values": [ + "3.492", + "29.3812", + "5.0346", + "-5.3204", + "-11.3646" + ] + } + }, + { + "name": "40.092", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 14518, + "unique_ratio": 0.95419, + "example_values": [ + "0.334", + "4.134", + "13.794", + "20.78", + "20.124" + ] + } + }, + { + "name": "81.8828", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 14824, + "unique_ratio": 0.974302, + "example_values": [ + "132.907", + "286.69", + "108.464", + "180.4168", + "222.525" + ] + } + }, + { + "name": "g", + "role": "target", + "semantic_type": "categorical", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 2, + "unique_ratio": 0.000131, + "example_values": [ + "g", + "h" + ] + } + } + ] +} \ No newline at end of file diff --git a/timecost/n11/realtabformer/rtf-n11-20260430_214424/public_gate/public_gate_report.json b/timecost/n11/realtabformer/rtf-n11-20260430_214424/public_gate/public_gate_report.json new file mode 100644 index 0000000000000000000000000000000000000000..4864c3fc29664a3b44991534165974fed3741dfa --- /dev/null +++ b/timecost/n11/realtabformer/rtf-n11-20260430_214424/public_gate/public_gate_report.json @@ -0,0 +1,37 @@ +{ + "dataset_id": "n11", + "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": "g", + "task_type": "classification", + "input_splits": { + "train": "/data/jialinzhang/SynthesizePipeline-server/DatasetNew/n11/n11-train.csv", + "val": "/data/jialinzhang/SynthesizePipeline-server/DatasetNew/n11/n11-val.csv", + "test": "/data/jialinzhang/SynthesizePipeline-server/DatasetNew/n11/n11-test.csv" + } +} \ No newline at end of file diff --git a/timecost/n11/realtabformer/rtf-n11-20260430_214424/public_gate/staged_input_manifest.json b/timecost/n11/realtabformer/rtf-n11-20260430_214424/public_gate/staged_input_manifest.json new file mode 100644 index 0000000000000000000000000000000000000000..209edafe519bbfb63e224f756638faf08ba149d3 --- /dev/null +++ b/timecost/n11/realtabformer/rtf-n11-20260430_214424/public_gate/staged_input_manifest.json @@ -0,0 +1,240 @@ +{ + "dataset_id": "n11", + "target_column": "g", + "task_type": "classification", + "train_csv": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/n11/realtabformer/rtf-n11-20260430_214424/staged/public/train.csv", + "val_csv": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/n11/realtabformer/rtf-n11-20260430_214424/staged/public/val.csv", + "test_csv": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/n11/realtabformer/rtf-n11-20260430_214424/staged/public/test.csv", + "features_json": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/n11/realtabformer/rtf-n11-20260430_214424/staged/public/staged_features.json", + "public_gate_report": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/n11/realtabformer/rtf-n11-20260430_214424/public_gate/public_gate_report.json", + "column_schema": [ + { + "name": "28.7967", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 14962, + "unique_ratio": 0.983372, + "example_values": [ + "33.9347", + "118.601", + "19.83", + "33.2691", + "13.1404" + ] + } + }, + { + "name": "16.0021", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 14662, + "unique_ratio": 0.963654, + "example_values": [ + "10.8862", + "44.2479", + "7.3303", + "9.1269", + "10.8527" + ] + } + }, + { + "name": "2.6449", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 6336, + "unique_ratio": 0.416431, + "example_values": [ + "2.5328", + "3.5558", + "2.2541", + "2.6728", + "2.1775" + ] + } + }, + { + "name": "0.3918", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 6002, + "unique_ratio": 0.394479, + "example_values": [ + "0.4047", + "0.1769", + "0.7521", + "0.4437", + "0.7708" + ] + } + }, + { + "name": "0.1982", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 4230, + "unique_ratio": 0.278015, + "example_values": [ + "0.2155", + "0.1003", + "0.4095", + "0.2553", + "0.4352" + ] + } + }, + { + "name": "27.7004", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 14996, + "unique_ratio": 0.985606, + "example_values": [ + "-25.0369", + "-95.8266", + "2.8528", + "12.3981", + "14.3006" + ] + } + }, + { + "name": "22.011", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 14984, + "unique_ratio": 0.984818, + "example_values": [ + "-23.1659", + "14.9809", + "-9.7666", + "19.9081", + "-3.6418" + ] + } + }, + { + "name": "-8.2027", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 14795, + "unique_ratio": 0.972396, + "example_values": [ + "3.492", + "29.3812", + "5.0346", + "-5.3204", + "-11.3646" + ] + } + }, + { + "name": "40.092", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 14518, + "unique_ratio": 0.95419, + "example_values": [ + "0.334", + "4.134", + "13.794", + "20.78", + "20.124" + ] + } + }, + { + "name": "81.8828", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 14824, + "unique_ratio": 0.974302, + "example_values": [ + "132.907", + "286.69", + "108.464", + "180.4168", + "222.525" + ] + } + }, + { + "name": "g", + "role": "target", + "semantic_type": "categorical", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 2, + "unique_ratio": 0.000131, + "example_values": [ + "g", + "h" + ] + } + } + ] +} \ No newline at end of file diff --git a/timecost/n11/realtabformer/rtf-n11-20260430_214424/realtabformer_features.json b/timecost/n11/realtabformer/rtf-n11-20260430_214424/realtabformer_features.json new file mode 100644 index 0000000000000000000000000000000000000000..bdb9c28b9d52f06368851a08caadc305035fc1b7 --- /dev/null +++ b/timecost/n11/realtabformer/rtf-n11-20260430_214424/realtabformer_features.json @@ -0,0 +1,57 @@ +[ + { + "feature_name": "28.7967", + "data_type": "continuous", + "is_target": false + }, + { + "feature_name": "16.0021", + "data_type": "continuous", + "is_target": false + }, + { + "feature_name": "2.6449", + "data_type": "continuous", + "is_target": false + }, + { + "feature_name": "0.3918", + "data_type": "continuous", + "is_target": false + }, + { + "feature_name": "0.1982", + "data_type": "continuous", + "is_target": false + }, + { + "feature_name": "27.7004", + "data_type": "continuous", + "is_target": false + }, + { + "feature_name": "22.011", + "data_type": "continuous", + "is_target": false + }, + { + "feature_name": "-8.2027", + "data_type": "continuous", + "is_target": false + }, + { + "feature_name": "40.092", + "data_type": "continuous", + "is_target": false + }, + { + "feature_name": "81.8828", + "data_type": "continuous", + "is_target": false + }, + { + "feature_name": "g", + "data_type": "categorical", + "is_target": true + } +] \ No newline at end of file diff --git a/timecost/n11/realtabformer/rtf-n11-20260430_214424/rtf-n11-15215-20260430_224120.csv b/timecost/n11/realtabformer/rtf-n11-20260430_214424/rtf-n11-15215-20260430_224120.csv new file mode 100644 index 0000000000000000000000000000000000000000..8698dab4be328e57a3ff6ad83949c2b0910a79a7 --- /dev/null +++ b/timecost/n11/realtabformer/rtf-n11-20260430_214424/rtf-n11-15215-20260430_224120.csv @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:3e218c9a0579f3e05f830201e0be5a3aa858853ef546e78c55683fff67d49959 +size 1176345 diff --git a/timecost/n11/realtabformer/rtf-n11-20260430_214424/rtf_checkpoints/checkpoint-47124/config.json b/timecost/n11/realtabformer/rtf-n11-20260430_214424/rtf_checkpoints/checkpoint-47124/config.json new file mode 100644 index 0000000000000000000000000000000000000000..605aa5aa48fc96b6c3133032a3e66cd18090e70a --- /dev/null +++ b/timecost/n11/realtabformer/rtf-n11-20260430_214424/rtf_checkpoints/checkpoint-47124/config.json @@ -0,0 +1,34 @@ +{ + "activation_function": "gelu_new", + "add_cross_attention": false, + "architectures": [ + "GPT2LMHeadModel" + ], + "attn_pdrop": 0.1, + "bos_token_id": 5, + "dtype": "float32", + "embd_pdrop": 0.1, + "eos_token_id": 6, + "initializer_range": 0.02, + "layer_norm_epsilon": 1e-05, + "model_type": "gpt2", + "n_embd": 768, + "n_head": 12, + "n_inner": null, + "n_layer": 6, + "n_positions": 1024, + "pad_token_id": null, + "reorder_and_upcast_attn": false, + "resid_pdrop": 0.1, + "scale_attn_by_inverse_layer_idx": false, + "scale_attn_weights": true, + "summary_activation": null, + "summary_first_dropout": 0.1, + "summary_proj_to_labels": true, + "summary_type": "cls_index", + "summary_use_proj": true, + "tie_word_embeddings": true, + "transformers_version": "5.5.3", + "use_cache": false, + "vocab_size": 597 +} diff --git a/timecost/n11/realtabformer/rtf-n11-20260430_214424/rtf_checkpoints/checkpoint-47124/generation_config.json b/timecost/n11/realtabformer/rtf-n11-20260430_214424/rtf_checkpoints/checkpoint-47124/generation_config.json new file mode 100644 index 0000000000000000000000000000000000000000..ffe89567780e75b5c22eade9be971483b9618f39 --- /dev/null +++ b/timecost/n11/realtabformer/rtf-n11-20260430_214424/rtf_checkpoints/checkpoint-47124/generation_config.json @@ -0,0 +1,9 @@ +{ + "_from_model_config": true, + "bos_token_id": 5, + "eos_token_id": 6, + "output_attentions": false, + "output_hidden_states": false, + "transformers_version": "5.5.3", + "use_cache": true +} diff --git a/timecost/n11/realtabformer/rtf-n11-20260430_214424/rtf_checkpoints/checkpoint-47124/model.safetensors b/timecost/n11/realtabformer/rtf-n11-20260430_214424/rtf_checkpoints/checkpoint-47124/model.safetensors new file mode 100644 index 0000000000000000000000000000000000000000..0da84e14d0cba65c6b91f53967aca213c909fb6d --- /dev/null +++ b/timecost/n11/realtabformer/rtf-n11-20260430_214424/rtf_checkpoints/checkpoint-47124/model.safetensors @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:2c5068664b4a45157f3638d2905c7a44c676e978ab5036b22c20a19d01988905 +size 175102408 diff --git a/timecost/n11/realtabformer/rtf-n11-20260430_214424/rtf_checkpoints/checkpoint-47124/optimizer.pt b/timecost/n11/realtabformer/rtf-n11-20260430_214424/rtf_checkpoints/checkpoint-47124/optimizer.pt new file mode 100644 index 0000000000000000000000000000000000000000..7934d5aa1bbd9a31805f60a202cf87b03ff557b2 --- /dev/null +++ b/timecost/n11/realtabformer/rtf-n11-20260430_214424/rtf_checkpoints/checkpoint-47124/optimizer.pt @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:ca891d9d15664615bdbd5271921bc98578c2d97c426daace2d4ce10b3700713f +size 350253899 diff --git a/timecost/n11/realtabformer/rtf-n11-20260430_214424/rtf_checkpoints/checkpoint-47124/rng_state.pth b/timecost/n11/realtabformer/rtf-n11-20260430_214424/rtf_checkpoints/checkpoint-47124/rng_state.pth new file mode 100644 index 0000000000000000000000000000000000000000..8c3d8c3dff721fad5d1527cd07691ff3d98b4e47 --- /dev/null +++ b/timecost/n11/realtabformer/rtf-n11-20260430_214424/rtf_checkpoints/checkpoint-47124/rng_state.pth @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:4fa7c578dd3b3c44388fb4dac34ff72e9939028333e11f290f8479fffafde8a3 +size 14645 diff --git a/timecost/n11/realtabformer/rtf-n11-20260430_214424/rtf_checkpoints/checkpoint-47124/scaler.pt b/timecost/n11/realtabformer/rtf-n11-20260430_214424/rtf_checkpoints/checkpoint-47124/scaler.pt new file mode 100644 index 0000000000000000000000000000000000000000..fd018ea77d2874e2997ceeda8c5bbd7a8f6568d0 --- /dev/null +++ b/timecost/n11/realtabformer/rtf-n11-20260430_214424/rtf_checkpoints/checkpoint-47124/scaler.pt @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:7f9ef752735d89964b0ee69b6f781e91fb878f1b71d0a82596659c6ac08b3122 +size 1383 diff --git a/timecost/n11/realtabformer/rtf-n11-20260430_214424/rtf_checkpoints/checkpoint-47124/scheduler.pt b/timecost/n11/realtabformer/rtf-n11-20260430_214424/rtf_checkpoints/checkpoint-47124/scheduler.pt new file mode 100644 index 0000000000000000000000000000000000000000..614456d94b2cbd79055e4f5650f29a279dcd4fc5 --- /dev/null +++ b/timecost/n11/realtabformer/rtf-n11-20260430_214424/rtf_checkpoints/checkpoint-47124/scheduler.pt @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:244f9c2a294e6a1aad9af31f3e443b30d2fdd1f8e42068d2944e1b9e099bcbe8 +size 1465 diff --git a/timecost/n11/realtabformer/rtf-n11-20260430_214424/rtf_checkpoints/checkpoint-47124/trainer_state.json b/timecost/n11/realtabformer/rtf-n11-20260430_214424/rtf_checkpoints/checkpoint-47124/trainer_state.json new file mode 100644 index 0000000000000000000000000000000000000000..90c9c2029b70a4ca334f20626da8174e17593229 --- /dev/null +++ b/timecost/n11/realtabformer/rtf-n11-20260430_214424/rtf_checkpoints/checkpoint-47124/trainer_state.json @@ -0,0 +1,3331 @@ +{ + "best_global_step": null, + "best_metric": null, + "best_model_checkpoint": null, + "epoch": 99.0, + "eval_steps": 100, + "global_step": 47124, + "is_hyper_param_search": false, + "is_local_process_zero": true, + "is_world_process_zero": true, + "log_history": [ + { + "epoch": 0.2103049421661409, + "grad_norm": 0.22972723841667175, + "learning_rate": 4.989600840336135e-05, + "loss": 2.8563604736328125, + "step": 100 + }, + { + "epoch": 0.4206098843322818, + "grad_norm": 0.20056591928005219, + "learning_rate": 4.9790966386554624e-05, + "loss": 1.7068206787109375, + "step": 200 + }, + { + "epoch": 0.6309148264984227, + "grad_norm": 0.1861766129732132, + "learning_rate": 4.9685924369747897e-05, + "loss": 1.6134432983398437, + "step": 300 + }, + { + "epoch": 0.8412197686645636, + "grad_norm": 0.1723501980304718, + "learning_rate": 4.9580882352941176e-05, + "loss": 1.5735923767089843, + "step": 400 + }, + { + "epoch": 1.0504731861198737, + "grad_norm": 0.17238108813762665, + "learning_rate": 4.9475840336134455e-05, + "loss": 1.5529734802246093, + "step": 500 + }, + { + "epoch": 1.2607781282860147, + "grad_norm": 0.17322759330272675, + "learning_rate": 4.9370798319327734e-05, + "loss": 1.536485137939453, + "step": 600 + }, + { + "epoch": 1.4710830704521556, + "grad_norm": 0.1677761971950531, + "learning_rate": 4.926575630252101e-05, + "loss": 1.5277809143066405, + "step": 700 + }, + { + "epoch": 1.6813880126182965, + "grad_norm": 0.1636463701725006, + "learning_rate": 4.9160714285714286e-05, + "loss": 1.5190211486816407, + "step": 800 + }, + { + "epoch": 1.8916929547844374, + "grad_norm": 0.16561312973499298, + "learning_rate": 4.9055672268907565e-05, + "loss": 1.51519287109375, + "step": 900 + }, + { + "epoch": 2.1009463722397475, + "grad_norm": 0.15477420389652252, + "learning_rate": 4.8950630252100845e-05, + "loss": 1.5094300842285155, + "step": 1000 + }, + { + "epoch": 2.3112513144058884, + "grad_norm": 0.16169467568397522, + "learning_rate": 4.8845588235294124e-05, + "loss": 1.503891143798828, + "step": 1100 + }, + { + "epoch": 2.5215562565720293, + "grad_norm": 0.1625037044286728, + "learning_rate": 4.8740546218487396e-05, + "loss": 1.5003668212890624, + "step": 1200 + }, + { + "epoch": 2.7318611987381702, + "grad_norm": 0.15850616991519928, + "learning_rate": 4.8635504201680676e-05, + "loss": 1.5004425048828125, + "step": 1300 + }, + { + "epoch": 2.942166140904311, + "grad_norm": 0.15703575313091278, + "learning_rate": 4.8530462184873955e-05, + "loss": 1.4983340454101564, + "step": 1400 + }, + { + "epoch": 3.1514195583596214, + "grad_norm": 0.16104279458522797, + "learning_rate": 4.8425420168067234e-05, + "loss": 1.4921080017089843, + "step": 1500 + }, + { + "epoch": 3.3617245005257623, + "grad_norm": 0.15719465911388397, + "learning_rate": 4.8320378151260507e-05, + "loss": 1.4903582763671874, + "step": 1600 + }, + { + "epoch": 3.5720294426919033, + "grad_norm": 0.15651755034923553, + "learning_rate": 4.821533613445378e-05, + "loss": 1.4904457092285157, + "step": 1700 + }, + { + "epoch": 3.782334384858044, + "grad_norm": 0.14600972831249237, + "learning_rate": 4.811029411764706e-05, + "loss": 1.4897219848632812, + "step": 1800 + }, + { + "epoch": 3.992639327024185, + "grad_norm": 0.15000982582569122, + "learning_rate": 4.800525210084034e-05, + "loss": 1.4866799926757812, + "step": 1900 + }, + { + "epoch": 4.201892744479495, + "grad_norm": 0.1467936933040619, + "learning_rate": 4.790021008403362e-05, + "loss": 1.48007080078125, + "step": 2000 + }, + { + "epoch": 4.412197686645636, + "grad_norm": 0.1541317105293274, + "learning_rate": 4.779516806722689e-05, + "loss": 1.48170166015625, + "step": 2100 + }, + { + "epoch": 4.622502628811777, + "grad_norm": 0.15136213600635529, + "learning_rate": 4.769012605042017e-05, + "loss": 1.4820193481445312, + "step": 2200 + }, + { + "epoch": 4.832807570977918, + "grad_norm": 0.15268521010875702, + "learning_rate": 4.758508403361345e-05, + "loss": 1.4826155090332032, + "step": 2300 + }, + { + "epoch": 5.042060988433228, + "grad_norm": 0.1507953554391861, + "learning_rate": 4.748004201680673e-05, + "loss": 1.4825518798828126, + "step": 2400 + }, + { + "epoch": 5.252365930599369, + "grad_norm": 0.15759222209453583, + "learning_rate": 4.7375e-05, + "loss": 1.4742916870117186, + "step": 2500 + }, + { + "epoch": 5.46267087276551, + "grad_norm": 0.1464644968509674, + "learning_rate": 4.726995798319328e-05, + "loss": 1.47645751953125, + "step": 2600 + }, + { + "epoch": 5.672975814931651, + "grad_norm": 0.1496453732252121, + "learning_rate": 4.716491596638656e-05, + "loss": 1.4782669067382812, + "step": 2700 + }, + { + "epoch": 5.883280757097792, + "grad_norm": 0.15732301771640778, + "learning_rate": 4.705987394957984e-05, + "loss": 1.474007110595703, + "step": 2800 + }, + { + "epoch": 6.092534174553102, + "grad_norm": 0.1535627543926239, + "learning_rate": 4.6954831932773117e-05, + "loss": 1.4723405456542968, + "step": 2900 + }, + { + "epoch": 6.302839116719243, + "grad_norm": 0.15365540981292725, + "learning_rate": 4.684978991596639e-05, + "loss": 1.470570068359375, + "step": 3000 + }, + { + "epoch": 6.513144058885384, + "grad_norm": 0.15696321427822113, + "learning_rate": 4.674474789915967e-05, + "loss": 1.4713912963867188, + "step": 3100 + }, + { + "epoch": 6.723449001051525, + "grad_norm": 0.1542283147573471, + "learning_rate": 4.663970588235294e-05, + "loss": 1.4717630004882813, + "step": 3200 + }, + { + "epoch": 6.933753943217665, + "grad_norm": 0.14150017499923706, + "learning_rate": 4.653466386554622e-05, + "loss": 1.4702410888671875, + "step": 3300 + }, + { + "epoch": 7.143007360672976, + "grad_norm": 0.1593707650899887, + "learning_rate": 4.64296218487395e-05, + "loss": 1.4674795532226563, + "step": 3400 + }, + { + "epoch": 7.353312302839116, + "grad_norm": 0.14085018634796143, + "learning_rate": 4.632457983193277e-05, + "loss": 1.4630509948730468, + "step": 3500 + }, + { + "epoch": 7.563617245005258, + "grad_norm": 0.15045367181301117, + "learning_rate": 4.621953781512605e-05, + "loss": 1.464947509765625, + "step": 3600 + }, + { + "epoch": 7.773922187171398, + "grad_norm": 0.1627761274576187, + "learning_rate": 4.611449579831933e-05, + "loss": 1.4676199340820313, + "step": 3700 + }, + { + "epoch": 7.9842271293375395, + "grad_norm": 0.15296733379364014, + "learning_rate": 4.600945378151261e-05, + "loss": 1.464564208984375, + "step": 3800 + }, + { + "epoch": 8.19348054679285, + "grad_norm": 0.15292306244373322, + "learning_rate": 4.590441176470588e-05, + "loss": 1.460281982421875, + "step": 3900 + }, + { + "epoch": 8.40378548895899, + "grad_norm": 0.14858974516391754, + "learning_rate": 4.579936974789916e-05, + "loss": 1.4601573181152343, + "step": 4000 + }, + { + "epoch": 8.614090431125131, + "grad_norm": 0.1559685617685318, + "learning_rate": 4.569432773109244e-05, + "loss": 1.459988555908203, + "step": 4100 + }, + { + "epoch": 8.824395373291273, + "grad_norm": 0.16048291325569153, + "learning_rate": 4.558928571428572e-05, + "loss": 1.4614971923828124, + "step": 4200 + }, + { + "epoch": 9.033648790746582, + "grad_norm": 0.15471497178077698, + "learning_rate": 4.548424369747899e-05, + "loss": 1.4605735778808593, + "step": 4300 + }, + { + "epoch": 9.243953732912724, + "grad_norm": 0.14675338566303253, + "learning_rate": 4.537920168067227e-05, + "loss": 1.4529206848144531, + "step": 4400 + }, + { + "epoch": 9.454258675078865, + "grad_norm": 0.15218420326709747, + "learning_rate": 4.527415966386555e-05, + "loss": 1.4555152893066405, + "step": 4500 + }, + { + "epoch": 9.664563617245005, + "grad_norm": 0.15305759012699127, + "learning_rate": 4.516911764705883e-05, + "loss": 1.4550628662109375, + "step": 4600 + }, + { + "epoch": 9.874868559411146, + "grad_norm": 0.14932408928871155, + "learning_rate": 4.50640756302521e-05, + "loss": 1.4576924133300782, + "step": 4700 + }, + { + "epoch": 10.084121976866456, + "grad_norm": 0.15317517518997192, + "learning_rate": 4.4959033613445375e-05, + "loss": 1.45219482421875, + "step": 4800 + }, + { + "epoch": 10.294426919032597, + "grad_norm": 0.14954303205013275, + "learning_rate": 4.4853991596638654e-05, + "loss": 1.4481625366210937, + "step": 4900 + }, + { + "epoch": 10.504731861198739, + "grad_norm": 0.1534873992204666, + "learning_rate": 4.4748949579831934e-05, + "loss": 1.4501405334472657, + "step": 5000 + }, + { + "epoch": 10.715036803364878, + "grad_norm": 0.1542547196149826, + "learning_rate": 4.464390756302521e-05, + "loss": 1.452711181640625, + "step": 5100 + }, + { + "epoch": 10.92534174553102, + "grad_norm": 0.15033429861068726, + "learning_rate": 4.453886554621849e-05, + "loss": 1.4518144226074219, + "step": 5200 + }, + { + "epoch": 11.13459516298633, + "grad_norm": 0.16419348120689392, + "learning_rate": 4.4433823529411765e-05, + "loss": 1.4447087097167968, + "step": 5300 + }, + { + "epoch": 11.34490010515247, + "grad_norm": 0.15558737516403198, + "learning_rate": 4.4328781512605044e-05, + "loss": 1.4432438659667968, + "step": 5400 + }, + { + "epoch": 11.555205047318612, + "grad_norm": 0.16111871600151062, + "learning_rate": 4.422373949579832e-05, + "loss": 1.44447509765625, + "step": 5500 + }, + { + "epoch": 11.765509989484753, + "grad_norm": 0.15655963122844696, + "learning_rate": 4.41186974789916e-05, + "loss": 1.446072998046875, + "step": 5600 + }, + { + "epoch": 11.975814931650893, + "grad_norm": 0.1640811264514923, + "learning_rate": 4.4013655462184875e-05, + "loss": 1.4470193481445313, + "step": 5700 + }, + { + "epoch": 12.185068349106205, + "grad_norm": 0.16302675008773804, + "learning_rate": 4.3908613445378154e-05, + "loss": 1.4352632141113282, + "step": 5800 + }, + { + "epoch": 12.395373291272344, + "grad_norm": 0.16527259349822998, + "learning_rate": 4.380357142857143e-05, + "loss": 1.4378224182128907, + "step": 5900 + }, + { + "epoch": 12.605678233438486, + "grad_norm": 0.15840137004852295, + "learning_rate": 4.369852941176471e-05, + "loss": 1.438340301513672, + "step": 6000 + }, + { + "epoch": 12.815983175604627, + "grad_norm": 0.16105377674102783, + "learning_rate": 4.3593487394957985e-05, + "loss": 1.4395623779296876, + "step": 6100 + }, + { + "epoch": 13.025236593059937, + "grad_norm": 0.1645898073911667, + "learning_rate": 4.348844537815126e-05, + "loss": 1.4419912719726562, + "step": 6200 + }, + { + "epoch": 13.235541535226078, + "grad_norm": 0.16387709975242615, + "learning_rate": 4.338340336134454e-05, + "loss": 1.4292103576660156, + "step": 6300 + }, + { + "epoch": 13.44584647739222, + "grad_norm": 0.16231203079223633, + "learning_rate": 4.3278361344537816e-05, + "loss": 1.4302072143554687, + "step": 6400 + }, + { + "epoch": 13.656151419558359, + "grad_norm": 0.17272767424583435, + "learning_rate": 4.3173319327731095e-05, + "loss": 1.4360617065429688, + "step": 6500 + }, + { + "epoch": 13.8664563617245, + "grad_norm": 0.16650696098804474, + "learning_rate": 4.306827731092437e-05, + "loss": 1.43187744140625, + "step": 6600 + }, + { + "epoch": 14.07570977917981, + "grad_norm": 0.17131085693836212, + "learning_rate": 4.296323529411765e-05, + "loss": 1.428362579345703, + "step": 6700 + }, + { + "epoch": 14.286014721345952, + "grad_norm": 0.1767681986093521, + "learning_rate": 4.2858193277310926e-05, + "loss": 1.4247616577148436, + "step": 6800 + }, + { + "epoch": 14.496319663512093, + "grad_norm": 0.17670001089572906, + "learning_rate": 4.2753151260504206e-05, + "loss": 1.4254454040527345, + "step": 6900 + }, + { + "epoch": 14.706624605678233, + "grad_norm": 0.1740790754556656, + "learning_rate": 4.2648109243697485e-05, + "loss": 1.4258729553222655, + "step": 7000 + }, + { + "epoch": 14.916929547844374, + "grad_norm": 0.1759176403284073, + "learning_rate": 4.254306722689076e-05, + "loss": 1.429442138671875, + "step": 7100 + }, + { + "epoch": 15.126182965299684, + "grad_norm": 0.17811505496501923, + "learning_rate": 4.2438025210084037e-05, + "loss": 1.4193470764160157, + "step": 7200 + }, + { + "epoch": 15.336487907465825, + "grad_norm": 0.1877354234457016, + "learning_rate": 4.2332983193277316e-05, + "loss": 1.4145277404785157, + "step": 7300 + }, + { + "epoch": 15.546792849631967, + "grad_norm": 0.18199266493320465, + "learning_rate": 4.2227941176470595e-05, + "loss": 1.4196495056152343, + "step": 7400 + }, + { + "epoch": 15.757097791798108, + "grad_norm": 0.18197669088840485, + "learning_rate": 4.212289915966387e-05, + "loss": 1.418301544189453, + "step": 7500 + }, + { + "epoch": 15.967402733964247, + "grad_norm": 0.1789412796497345, + "learning_rate": 4.201785714285714e-05, + "loss": 1.4207553100585937, + "step": 7600 + }, + { + "epoch": 16.176656151419557, + "grad_norm": 0.19073587656021118, + "learning_rate": 4.191281512605042e-05, + "loss": 1.405756072998047, + "step": 7700 + }, + { + "epoch": 16.3869610935857, + "grad_norm": 0.20197375118732452, + "learning_rate": 4.18077731092437e-05, + "loss": 1.4052299499511718, + "step": 7800 + }, + { + "epoch": 16.59726603575184, + "grad_norm": 0.19041137397289276, + "learning_rate": 4.170273109243698e-05, + "loss": 1.4102354431152344, + "step": 7900 + }, + { + "epoch": 16.80757097791798, + "grad_norm": 0.18918046355247498, + "learning_rate": 4.159768907563025e-05, + "loss": 1.4105937194824218, + "step": 8000 + }, + { + "epoch": 17.01682439537329, + "grad_norm": 0.20001663267612457, + "learning_rate": 4.149264705882353e-05, + "loss": 1.4125469970703124, + "step": 8100 + }, + { + "epoch": 17.22712933753943, + "grad_norm": 0.20373570919036865, + "learning_rate": 4.138760504201681e-05, + "loss": 1.3912005615234375, + "step": 8200 + }, + { + "epoch": 17.437434279705574, + "grad_norm": 0.21228203177452087, + "learning_rate": 4.128256302521009e-05, + "loss": 1.400099334716797, + "step": 8300 + }, + { + "epoch": 17.647739221871714, + "grad_norm": 0.19748076796531677, + "learning_rate": 4.117752100840336e-05, + "loss": 1.3983584594726564, + "step": 8400 + }, + { + "epoch": 17.858044164037857, + "grad_norm": 0.19849108159542084, + "learning_rate": 4.107247899159664e-05, + "loss": 1.4034251403808593, + "step": 8500 + }, + { + "epoch": 18.067297581493165, + "grad_norm": 0.20575450360774994, + "learning_rate": 4.096743697478992e-05, + "loss": 1.3967425537109375, + "step": 8600 + }, + { + "epoch": 18.277602523659304, + "grad_norm": 0.21221311390399933, + "learning_rate": 4.08623949579832e-05, + "loss": 1.3828977966308593, + "step": 8700 + }, + { + "epoch": 18.487907465825447, + "grad_norm": 0.21134966611862183, + "learning_rate": 4.075735294117648e-05, + "loss": 1.3854733276367188, + "step": 8800 + }, + { + "epoch": 18.698212407991587, + "grad_norm": 0.22016377747058868, + "learning_rate": 4.065231092436975e-05, + "loss": 1.3901968383789063, + "step": 8900 + }, + { + "epoch": 18.90851735015773, + "grad_norm": 0.21417804062366486, + "learning_rate": 4.054726890756303e-05, + "loss": 1.393634033203125, + "step": 9000 + }, + { + "epoch": 19.117770767613038, + "grad_norm": 0.22256560623645782, + "learning_rate": 4.04422268907563e-05, + "loss": 1.3783042907714844, + "step": 9100 + }, + { + "epoch": 19.32807570977918, + "grad_norm": 0.22738981246948242, + "learning_rate": 4.033718487394958e-05, + "loss": 1.370293426513672, + "step": 9200 + }, + { + "epoch": 19.53838065194532, + "grad_norm": 0.22241266071796417, + "learning_rate": 4.023214285714286e-05, + "loss": 1.3737275695800781, + "step": 9300 + }, + { + "epoch": 19.74868559411146, + "grad_norm": 0.23391330242156982, + "learning_rate": 4.012710084033613e-05, + "loss": 1.377355194091797, + "step": 9400 + }, + { + "epoch": 19.958990536277604, + "grad_norm": 0.22519543766975403, + "learning_rate": 4.002205882352941e-05, + "loss": 1.3812960815429687, + "step": 9500 + }, + { + "epoch": 20.16824395373291, + "grad_norm": 0.24074196815490723, + "learning_rate": 3.991701680672269e-05, + "loss": 1.3570118713378907, + "step": 9600 + }, + { + "epoch": 20.378548895899055, + "grad_norm": 0.24606694281101227, + "learning_rate": 3.981197478991597e-05, + "loss": 1.3554267883300781, + "step": 9700 + }, + { + "epoch": 20.588853838065194, + "grad_norm": 0.23913830518722534, + "learning_rate": 3.970693277310924e-05, + "loss": 1.3621504211425781, + "step": 9800 + }, + { + "epoch": 20.799158780231334, + "grad_norm": 0.2383037805557251, + "learning_rate": 3.960189075630252e-05, + "loss": 1.3660731506347656, + "step": 9900 + }, + { + "epoch": 21.008412197686646, + "grad_norm": 0.241073340177536, + "learning_rate": 3.94968487394958e-05, + "loss": 1.3653842163085939, + "step": 10000 + }, + { + "epoch": 21.218717139852785, + "grad_norm": 0.25740981101989746, + "learning_rate": 3.939180672268908e-05, + "loss": 1.3331489562988281, + "step": 10100 + }, + { + "epoch": 21.42902208201893, + "grad_norm": 0.25830078125, + "learning_rate": 3.928676470588235e-05, + "loss": 1.3397677612304688, + "step": 10200 + }, + { + "epoch": 21.639327024185068, + "grad_norm": 0.26326829195022583, + "learning_rate": 3.918172268907563e-05, + "loss": 1.3485836791992187, + "step": 10300 + }, + { + "epoch": 21.84963196635121, + "grad_norm": 0.26259171962738037, + "learning_rate": 3.907668067226891e-05, + "loss": 1.3472573852539063, + "step": 10400 + }, + { + "epoch": 22.05888538380652, + "grad_norm": 0.27395525574684143, + "learning_rate": 3.897163865546219e-05, + "loss": 1.3426994323730468, + "step": 10500 + }, + { + "epoch": 22.26919032597266, + "grad_norm": 0.2820175290107727, + "learning_rate": 3.8866596638655463e-05, + "loss": 1.3179571533203125, + "step": 10600 + }, + { + "epoch": 22.479495268138802, + "grad_norm": 0.2815999984741211, + "learning_rate": 3.8761554621848736e-05, + "loss": 1.3242898559570313, + "step": 10700 + }, + { + "epoch": 22.68980021030494, + "grad_norm": 0.2788920998573303, + "learning_rate": 3.8656512605042015e-05, + "loss": 1.328133087158203, + "step": 10800 + }, + { + "epoch": 22.900105152471085, + "grad_norm": 0.2880179286003113, + "learning_rate": 3.8551470588235294e-05, + "loss": 1.3323233032226562, + "step": 10900 + }, + { + "epoch": 23.109358569926393, + "grad_norm": 0.29323825240135193, + "learning_rate": 3.8446428571428574e-05, + "loss": 1.3124215698242188, + "step": 11000 + }, + { + "epoch": 23.319663512092536, + "grad_norm": 0.3037724196910858, + "learning_rate": 3.834138655462185e-05, + "loss": 1.300673370361328, + "step": 11100 + }, + { + "epoch": 23.529968454258675, + "grad_norm": 0.3019108772277832, + "learning_rate": 3.8236344537815125e-05, + "loss": 1.3033621215820312, + "step": 11200 + }, + { + "epoch": 23.740273396424815, + "grad_norm": 0.3141040503978729, + "learning_rate": 3.8131302521008405e-05, + "loss": 1.3118415832519532, + "step": 11300 + }, + { + "epoch": 23.950578338590958, + "grad_norm": 0.305362731218338, + "learning_rate": 3.8026260504201684e-05, + "loss": 1.3120425415039063, + "step": 11400 + }, + { + "epoch": 24.159831756046266, + "grad_norm": 0.3149303197860718, + "learning_rate": 3.792121848739496e-05, + "loss": 1.281750946044922, + "step": 11500 + }, + { + "epoch": 24.37013669821241, + "grad_norm": 0.31983524560928345, + "learning_rate": 3.7816176470588236e-05, + "loss": 1.2786111450195312, + "step": 11600 + }, + { + "epoch": 24.58044164037855, + "grad_norm": 0.32351240515708923, + "learning_rate": 3.7711134453781515e-05, + "loss": 1.284888916015625, + "step": 11700 + }, + { + "epoch": 24.79074658254469, + "grad_norm": 0.3239966034889221, + "learning_rate": 3.7606092436974794e-05, + "loss": 1.2899176025390624, + "step": 11800 + }, + { + "epoch": 25.0, + "grad_norm": 0.49487531185150146, + "learning_rate": 3.7501050420168073e-05, + "loss": 1.2903105163574218, + "step": 11900 + }, + { + "epoch": 25.21030494216614, + "grad_norm": 0.343091756105423, + "learning_rate": 3.7396008403361346e-05, + "loss": 1.24728271484375, + "step": 12000 + }, + { + "epoch": 25.420609884332283, + "grad_norm": 0.3502146899700165, + "learning_rate": 3.729096638655462e-05, + "loss": 1.2573788452148438, + "step": 12100 + }, + { + "epoch": 25.630914826498422, + "grad_norm": 0.34780803322792053, + "learning_rate": 3.71859243697479e-05, + "loss": 1.259660186767578, + "step": 12200 + }, + { + "epoch": 25.841219768664562, + "grad_norm": 0.3617474436759949, + "learning_rate": 3.708088235294118e-05, + "loss": 1.267321548461914, + "step": 12300 + }, + { + "epoch": 26.050473186119874, + "grad_norm": 0.36151477694511414, + "learning_rate": 3.6975840336134456e-05, + "loss": 1.2569818878173828, + "step": 12400 + }, + { + "epoch": 26.260778128286013, + "grad_norm": 0.3706369400024414, + "learning_rate": 3.687079831932773e-05, + "loss": 1.2217762756347657, + "step": 12500 + }, + { + "epoch": 26.471083070452156, + "grad_norm": 0.36876797676086426, + "learning_rate": 3.676575630252101e-05, + "loss": 1.2311412048339845, + "step": 12600 + }, + { + "epoch": 26.681388012618296, + "grad_norm": 0.37329521775245667, + "learning_rate": 3.666071428571429e-05, + "loss": 1.23805908203125, + "step": 12700 + }, + { + "epoch": 26.89169295478444, + "grad_norm": 0.3803170919418335, + "learning_rate": 3.6555672268907566e-05, + "loss": 1.2423350524902343, + "step": 12800 + }, + { + "epoch": 27.100946372239747, + "grad_norm": 0.3833712637424469, + "learning_rate": 3.6450630252100846e-05, + "loss": 1.222099609375, + "step": 12900 + }, + { + "epoch": 27.31125131440589, + "grad_norm": 0.3987831771373749, + "learning_rate": 3.634558823529412e-05, + "loss": 1.1973797607421874, + "step": 13000 + }, + { + "epoch": 27.52155625657203, + "grad_norm": 0.39121338725090027, + "learning_rate": 3.62405462184874e-05, + "loss": 1.206004409790039, + "step": 13100 + }, + { + "epoch": 27.73186119873817, + "grad_norm": 0.4020472764968872, + "learning_rate": 3.613550420168068e-05, + "loss": 1.2129373168945312, + "step": 13200 + }, + { + "epoch": 27.942166140904312, + "grad_norm": 0.4015159606933594, + "learning_rate": 3.6030462184873956e-05, + "loss": 1.2179686737060547, + "step": 13300 + }, + { + "epoch": 28.15141955835962, + "grad_norm": 0.3998790681362152, + "learning_rate": 3.592542016806723e-05, + "loss": 1.1833483123779296, + "step": 13400 + }, + { + "epoch": 28.361724500525764, + "grad_norm": 0.4190026819705963, + "learning_rate": 3.582037815126051e-05, + "loss": 1.1737586975097656, + "step": 13500 + }, + { + "epoch": 28.572029442691903, + "grad_norm": 0.4131736159324646, + "learning_rate": 3.571533613445378e-05, + "loss": 1.1806912231445312, + "step": 13600 + }, + { + "epoch": 28.782334384858043, + "grad_norm": 0.4250866174697876, + "learning_rate": 3.561029411764706e-05, + "loss": 1.1913446044921876, + "step": 13700 + }, + { + "epoch": 28.992639327024186, + "grad_norm": 0.4264129400253296, + "learning_rate": 3.550525210084034e-05, + "loss": 1.1878318786621094, + "step": 13800 + }, + { + "epoch": 29.201892744479494, + "grad_norm": 0.43633338809013367, + "learning_rate": 3.540021008403361e-05, + "loss": 1.1386358642578125, + "step": 13900 + }, + { + "epoch": 29.412197686645637, + "grad_norm": 0.4486881494522095, + "learning_rate": 3.529516806722689e-05, + "loss": 1.1477174377441406, + "step": 14000 + }, + { + "epoch": 29.622502628811777, + "grad_norm": 0.4420314133167267, + "learning_rate": 3.519012605042017e-05, + "loss": 1.1530896759033202, + "step": 14100 + }, + { + "epoch": 29.832807570977916, + "grad_norm": 0.4598003327846527, + "learning_rate": 3.508508403361345e-05, + "loss": 1.16252197265625, + "step": 14200 + }, + { + "epoch": 30.042060988433228, + "grad_norm": 0.44520533084869385, + "learning_rate": 3.498004201680672e-05, + "loss": 1.1551103973388672, + "step": 14300 + }, + { + "epoch": 30.252365930599368, + "grad_norm": 0.45871588587760925, + "learning_rate": 3.4875e-05, + "loss": 1.107753448486328, + "step": 14400 + }, + { + "epoch": 30.46267087276551, + "grad_norm": 0.46063199639320374, + "learning_rate": 3.476995798319328e-05, + "loss": 1.1182296752929688, + "step": 14500 + }, + { + "epoch": 30.67297581493165, + "grad_norm": 0.4760204553604126, + "learning_rate": 3.466491596638656e-05, + "loss": 1.129236373901367, + "step": 14600 + }, + { + "epoch": 30.883280757097793, + "grad_norm": 0.47249314188957214, + "learning_rate": 3.455987394957984e-05, + "loss": 1.1352229309082031, + "step": 14700 + }, + { + "epoch": 31.0925341745531, + "grad_norm": 0.4624006450176239, + "learning_rate": 3.445483193277311e-05, + "loss": 1.1082867431640624, + "step": 14800 + }, + { + "epoch": 31.302839116719245, + "grad_norm": 0.4787958264350891, + "learning_rate": 3.434978991596639e-05, + "loss": 1.0818411254882812, + "step": 14900 + }, + { + "epoch": 31.513144058885384, + "grad_norm": 0.4875246286392212, + "learning_rate": 3.424474789915967e-05, + "loss": 1.092553939819336, + "step": 15000 + }, + { + "epoch": 31.723449001051524, + "grad_norm": 0.48742467164993286, + "learning_rate": 3.413970588235294e-05, + "loss": 1.1002989959716798, + "step": 15100 + }, + { + "epoch": 31.933753943217667, + "grad_norm": 0.5014126896858215, + "learning_rate": 3.403466386554622e-05, + "loss": 1.1067331695556641, + "step": 15200 + }, + { + "epoch": 32.143007360672975, + "grad_norm": 0.48793110251426697, + "learning_rate": 3.3929621848739494e-05, + "loss": 1.0649752807617188, + "step": 15300 + }, + { + "epoch": 32.353312302839115, + "grad_norm": 0.5064884424209595, + "learning_rate": 3.382457983193277e-05, + "loss": 1.0489683532714844, + "step": 15400 + }, + { + "epoch": 32.56361724500526, + "grad_norm": 0.5118729472160339, + "learning_rate": 3.371953781512605e-05, + "loss": 1.0648185729980468, + "step": 15500 + }, + { + "epoch": 32.7739221871714, + "grad_norm": 0.5236688852310181, + "learning_rate": 3.361449579831933e-05, + "loss": 1.0743647766113282, + "step": 15600 + }, + { + "epoch": 32.98422712933754, + "grad_norm": 0.5397860407829285, + "learning_rate": 3.3509453781512604e-05, + "loss": 1.080048828125, + "step": 15700 + }, + { + "epoch": 33.19348054679285, + "grad_norm": 0.5270755290985107, + "learning_rate": 3.340441176470588e-05, + "loss": 1.0228548431396485, + "step": 15800 + }, + { + "epoch": 33.40378548895899, + "grad_norm": 0.5429406762123108, + "learning_rate": 3.329936974789916e-05, + "loss": 1.028949966430664, + "step": 15900 + }, + { + "epoch": 33.614090431125135, + "grad_norm": 0.5323997735977173, + "learning_rate": 3.319432773109244e-05, + "loss": 1.037523956298828, + "step": 16000 + }, + { + "epoch": 33.824395373291274, + "grad_norm": 0.5385149717330933, + "learning_rate": 3.3090336134453784e-05, + "loss": 1.0431160736083984, + "step": 16100 + }, + { + "epoch": 34.03364879074658, + "grad_norm": 0.5089665651321411, + "learning_rate": 3.2986344537815127e-05, + "loss": 1.0349723815917968, + "step": 16200 + }, + { + "epoch": 34.24395373291272, + "grad_norm": 0.5455434918403625, + "learning_rate": 3.2881302521008406e-05, + "loss": 0.988803482055664, + "step": 16300 + }, + { + "epoch": 34.45425867507886, + "grad_norm": 0.5569856762886047, + "learning_rate": 3.2776260504201685e-05, + "loss": 1.0031266021728515, + "step": 16400 + }, + { + "epoch": 34.66456361724501, + "grad_norm": 0.5644022226333618, + "learning_rate": 3.2671218487394964e-05, + "loss": 1.0083402252197267, + "step": 16500 + }, + { + "epoch": 34.87486855941115, + "grad_norm": 0.5685406923294067, + "learning_rate": 3.256617647058824e-05, + "loss": 1.0177439117431641, + "step": 16600 + }, + { + "epoch": 35.084121976866456, + "grad_norm": 0.543632447719574, + "learning_rate": 3.2461134453781516e-05, + "loss": 0.9930455780029297, + "step": 16700 + }, + { + "epoch": 35.294426919032595, + "grad_norm": 0.5612316727638245, + "learning_rate": 3.2356092436974795e-05, + "loss": 0.9650897216796875, + "step": 16800 + }, + { + "epoch": 35.504731861198735, + "grad_norm": 0.5759446024894714, + "learning_rate": 3.225105042016807e-05, + "loss": 0.973653564453125, + "step": 16900 + }, + { + "epoch": 35.71503680336488, + "grad_norm": 0.574255645275116, + "learning_rate": 3.214600840336135e-05, + "loss": 0.981424560546875, + "step": 17000 + }, + { + "epoch": 35.92534174553102, + "grad_norm": 0.5851606726646423, + "learning_rate": 3.204096638655462e-05, + "loss": 0.991123046875, + "step": 17100 + }, + { + "epoch": 36.13459516298633, + "grad_norm": 0.5589666366577148, + "learning_rate": 3.19359243697479e-05, + "loss": 0.9481909942626953, + "step": 17200 + }, + { + "epoch": 36.34490010515247, + "grad_norm": 0.5968824625015259, + "learning_rate": 3.183088235294118e-05, + "loss": 0.9365898895263672, + "step": 17300 + }, + { + "epoch": 36.55520504731861, + "grad_norm": 0.5998508930206299, + "learning_rate": 3.172584033613446e-05, + "loss": 0.9492893218994141, + "step": 17400 + }, + { + "epoch": 36.765509989484755, + "grad_norm": 0.6060558557510376, + "learning_rate": 3.162079831932773e-05, + "loss": 0.9547823333740234, + "step": 17500 + }, + { + "epoch": 36.975814931650895, + "grad_norm": 0.589341402053833, + "learning_rate": 3.151575630252101e-05, + "loss": 0.9626276397705078, + "step": 17600 + }, + { + "epoch": 37.1850683491062, + "grad_norm": 0.5891321897506714, + "learning_rate": 3.141071428571429e-05, + "loss": 0.9065424346923828, + "step": 17700 + }, + { + "epoch": 37.39537329127234, + "grad_norm": 0.5880729556083679, + "learning_rate": 3.130567226890757e-05, + "loss": 0.9107749938964844, + "step": 17800 + }, + { + "epoch": 37.60567823343849, + "grad_norm": 0.6077774167060852, + "learning_rate": 3.120063025210084e-05, + "loss": 0.9193459320068359, + "step": 17900 + }, + { + "epoch": 37.81598317560463, + "grad_norm": 0.6189863681793213, + "learning_rate": 3.109558823529412e-05, + "loss": 0.9286084747314454, + "step": 18000 + }, + { + "epoch": 38.02523659305994, + "grad_norm": 0.5724475383758545, + "learning_rate": 3.09905462184874e-05, + "loss": 0.9282203674316406, + "step": 18100 + }, + { + "epoch": 38.235541535226076, + "grad_norm": 0.5952550768852234, + "learning_rate": 3.088550420168068e-05, + "loss": 0.8734053039550781, + "step": 18200 + }, + { + "epoch": 38.445846477392216, + "grad_norm": 0.5967536568641663, + "learning_rate": 3.078046218487395e-05, + "loss": 0.886033935546875, + "step": 18300 + }, + { + "epoch": 38.65615141955836, + "grad_norm": 0.6298649311065674, + "learning_rate": 3.067542016806722e-05, + "loss": 0.8977913665771484, + "step": 18400 + }, + { + "epoch": 38.8664563617245, + "grad_norm": 0.6457948684692383, + "learning_rate": 3.05703781512605e-05, + "loss": 0.9048082733154297, + "step": 18500 + }, + { + "epoch": 39.07570977917981, + "grad_norm": 0.6172012090682983, + "learning_rate": 3.046533613445378e-05, + "loss": 0.8857656860351563, + "step": 18600 + }, + { + "epoch": 39.28601472134595, + "grad_norm": 0.5979504585266113, + "learning_rate": 3.036029411764706e-05, + "loss": 0.8502845001220704, + "step": 18700 + }, + { + "epoch": 39.49631966351209, + "grad_norm": 0.6284430623054504, + "learning_rate": 3.0255252100840336e-05, + "loss": 0.8602873229980469, + "step": 18800 + }, + { + "epoch": 39.706624605678236, + "grad_norm": 0.6330845355987549, + "learning_rate": 3.0150210084033616e-05, + "loss": 0.8690576934814453, + "step": 18900 + }, + { + "epoch": 39.916929547844376, + "grad_norm": 0.6465399861335754, + "learning_rate": 3.004516806722689e-05, + "loss": 0.8787310791015625, + "step": 19000 + }, + { + "epoch": 40.126182965299684, + "grad_norm": 0.6255329251289368, + "learning_rate": 2.994117647058824e-05, + "loss": 0.84158203125, + "step": 19100 + }, + { + "epoch": 40.33648790746582, + "grad_norm": 0.6304967999458313, + "learning_rate": 2.983613445378151e-05, + "loss": 0.8283135223388672, + "step": 19200 + }, + { + "epoch": 40.54679284963196, + "grad_norm": 0.6366279125213623, + "learning_rate": 2.973109243697479e-05, + "loss": 0.8385968780517579, + "step": 19300 + }, + { + "epoch": 40.75709779179811, + "grad_norm": 0.6407002210617065, + "learning_rate": 2.9626050420168065e-05, + "loss": 0.8465004730224609, + "step": 19400 + }, + { + "epoch": 40.96740273396425, + "grad_norm": 0.6582015156745911, + "learning_rate": 2.9521008403361344e-05, + "loss": 0.8523696136474609, + "step": 19500 + }, + { + "epoch": 41.17665615141956, + "grad_norm": 0.6326037645339966, + "learning_rate": 2.9415966386554624e-05, + "loss": 0.8025535583496094, + "step": 19600 + }, + { + "epoch": 41.3869610935857, + "grad_norm": 0.631605863571167, + "learning_rate": 2.93109243697479e-05, + "loss": 0.8077165222167969, + "step": 19700 + }, + { + "epoch": 41.597266035751844, + "grad_norm": 0.6400684118270874, + "learning_rate": 2.920588235294118e-05, + "loss": 0.8162235260009766, + "step": 19800 + }, + { + "epoch": 41.80757097791798, + "grad_norm": 0.6499695181846619, + "learning_rate": 2.9100840336134455e-05, + "loss": 0.8243218231201171, + "step": 19900 + }, + { + "epoch": 42.01682439537329, + "grad_norm": 0.6392955183982849, + "learning_rate": 2.8995798319327734e-05, + "loss": 0.8244134521484375, + "step": 20000 + }, + { + "epoch": 42.22712933753943, + "grad_norm": 0.6429536938667297, + "learning_rate": 2.889075630252101e-05, + "loss": 0.7711881256103515, + "step": 20100 + }, + { + "epoch": 42.43743427970557, + "grad_norm": 0.6592206358909607, + "learning_rate": 2.878571428571429e-05, + "loss": 0.7841451263427734, + "step": 20200 + }, + { + "epoch": 42.64773922187172, + "grad_norm": 0.6881083846092224, + "learning_rate": 2.8680672268907565e-05, + "loss": 0.792880859375, + "step": 20300 + }, + { + "epoch": 42.85804416403786, + "grad_norm": 0.6662302017211914, + "learning_rate": 2.8575630252100844e-05, + "loss": 0.8001659393310547, + "step": 20400 + }, + { + "epoch": 43.067297581493165, + "grad_norm": 0.6177626252174377, + "learning_rate": 2.847058823529412e-05, + "loss": 0.7870485687255859, + "step": 20500 + }, + { + "epoch": 43.277602523659304, + "grad_norm": 0.6681060194969177, + "learning_rate": 2.83655462184874e-05, + "loss": 0.7512457275390625, + "step": 20600 + }, + { + "epoch": 43.487907465825444, + "grad_norm": 0.669675886631012, + "learning_rate": 2.826050420168067e-05, + "loss": 0.7591960144042968, + "step": 20700 + }, + { + "epoch": 43.69821240799159, + "grad_norm": 0.7097092866897583, + "learning_rate": 2.8155462184873948e-05, + "loss": 0.7737602233886719, + "step": 20800 + }, + { + "epoch": 43.90851735015773, + "grad_norm": 0.6951079964637756, + "learning_rate": 2.8050420168067227e-05, + "loss": 0.7815242767333984, + "step": 20900 + }, + { + "epoch": 44.11777076761304, + "grad_norm": 0.639824390411377, + "learning_rate": 2.7945378151260503e-05, + "loss": 0.7512903594970703, + "step": 21000 + }, + { + "epoch": 44.32807570977918, + "grad_norm": 0.67326819896698, + "learning_rate": 2.7840336134453782e-05, + "loss": 0.7329978179931641, + "step": 21100 + }, + { + "epoch": 44.53838065194532, + "grad_norm": 0.6938571333885193, + "learning_rate": 2.7735294117647058e-05, + "loss": 0.7421668243408203, + "step": 21200 + }, + { + "epoch": 44.748685594111464, + "grad_norm": 0.6845099925994873, + "learning_rate": 2.7630252100840337e-05, + "loss": 0.7509217071533203, + "step": 21300 + }, + { + "epoch": 44.958990536277604, + "grad_norm": 0.681825578212738, + "learning_rate": 2.7525210084033616e-05, + "loss": 0.7620004272460937, + "step": 21400 + }, + { + "epoch": 45.16824395373291, + "grad_norm": 0.6556856036186218, + "learning_rate": 2.7421218487394962e-05, + "loss": 0.7184288787841797, + "step": 21500 + }, + { + "epoch": 45.37854889589905, + "grad_norm": 0.6386471390724182, + "learning_rate": 2.7316176470588235e-05, + "loss": 0.7161962127685547, + "step": 21600 + }, + { + "epoch": 45.5888538380652, + "grad_norm": 0.6947113275527954, + "learning_rate": 2.721113445378151e-05, + "loss": 0.7244486999511719, + "step": 21700 + }, + { + "epoch": 45.79915878023134, + "grad_norm": 0.6741232872009277, + "learning_rate": 2.710609243697479e-05, + "loss": 0.7308968353271484, + "step": 21800 + }, + { + "epoch": 46.008412197686646, + "grad_norm": 0.6631771326065063, + "learning_rate": 2.7001050420168066e-05, + "loss": 0.7323504638671875, + "step": 21900 + }, + { + "epoch": 46.218717139852785, + "grad_norm": 0.6702309250831604, + "learning_rate": 2.6896008403361345e-05, + "loss": 0.6865713500976562, + "step": 22000 + }, + { + "epoch": 46.429022082018925, + "grad_norm": 0.6711138486862183, + "learning_rate": 2.679096638655462e-05, + "loss": 0.697294921875, + "step": 22100 + }, + { + "epoch": 46.63932702418507, + "grad_norm": 0.7067892551422119, + "learning_rate": 2.66859243697479e-05, + "loss": 0.70609619140625, + "step": 22200 + }, + { + "epoch": 46.84963196635121, + "grad_norm": 0.6743476390838623, + "learning_rate": 2.658088235294118e-05, + "loss": 0.7116059112548828, + "step": 22300 + }, + { + "epoch": 47.05888538380652, + "grad_norm": 0.642842710018158, + "learning_rate": 2.6475840336134455e-05, + "loss": 0.7024728393554688, + "step": 22400 + }, + { + "epoch": 47.26919032597266, + "grad_norm": 0.6852782368659973, + "learning_rate": 2.6370798319327734e-05, + "loss": 0.6698217010498047, + "step": 22500 + }, + { + "epoch": 47.4794952681388, + "grad_norm": 0.6817244291305542, + "learning_rate": 2.626575630252101e-05, + "loss": 0.6796794891357422, + "step": 22600 + }, + { + "epoch": 47.689800210304945, + "grad_norm": 0.665703535079956, + "learning_rate": 2.616071428571429e-05, + "loss": 0.689930191040039, + "step": 22700 + }, + { + "epoch": 47.900105152471085, + "grad_norm": 0.7286046147346497, + "learning_rate": 2.6055672268907565e-05, + "loss": 0.6968262481689453, + "step": 22800 + }, + { + "epoch": 48.10935856992639, + "grad_norm": 0.6568066477775574, + "learning_rate": 2.5950630252100845e-05, + "loss": 0.6714718627929688, + "step": 22900 + }, + { + "epoch": 48.31966351209253, + "grad_norm": 0.6909933090209961, + "learning_rate": 2.584558823529412e-05, + "loss": 0.6521046447753907, + "step": 23000 + }, + { + "epoch": 48.52996845425867, + "grad_norm": 0.6730957627296448, + "learning_rate": 2.5740546218487393e-05, + "loss": 0.6635847473144532, + "step": 23100 + }, + { + "epoch": 48.74027339642482, + "grad_norm": 0.7137960195541382, + "learning_rate": 2.5635504201680672e-05, + "loss": 0.6703518676757813, + "step": 23200 + }, + { + "epoch": 48.95057833859096, + "grad_norm": 0.7035015225410461, + "learning_rate": 2.5530462184873948e-05, + "loss": 0.678240737915039, + "step": 23300 + }, + { + "epoch": 49.159831756046266, + "grad_norm": 0.6768185496330261, + "learning_rate": 2.5425420168067227e-05, + "loss": 0.6413292694091797, + "step": 23400 + }, + { + "epoch": 49.370136698212406, + "grad_norm": 0.6941663026809692, + "learning_rate": 2.5320378151260503e-05, + "loss": 0.6415236663818359, + "step": 23500 + }, + { + "epoch": 49.58044164037855, + "grad_norm": 0.722435712814331, + "learning_rate": 2.5215336134453782e-05, + "loss": 0.6499783325195313, + "step": 23600 + }, + { + "epoch": 49.79074658254469, + "grad_norm": 0.7071043252944946, + "learning_rate": 2.511029411764706e-05, + "loss": 0.6546615600585938, + "step": 23700 + }, + { + "epoch": 50.0, + "grad_norm": Infinity, + "learning_rate": 2.5005252100840338e-05, + "loss": 0.6589860534667968, + "step": 23800 + }, + { + "epoch": 50.21030494216614, + "grad_norm": 0.6747011542320251, + "learning_rate": 2.490126050420168e-05, + "loss": 0.6164878845214844, + "step": 23900 + }, + { + "epoch": 50.42060988433228, + "grad_norm": 0.6953312754631042, + "learning_rate": 2.479621848739496e-05, + "loss": 0.6259209060668945, + "step": 24000 + }, + { + "epoch": 50.630914826498426, + "grad_norm": 0.6829053163528442, + "learning_rate": 2.469117647058824e-05, + "loss": 0.6306737518310547, + "step": 24100 + }, + { + "epoch": 50.841219768664565, + "grad_norm": 0.7105507850646973, + "learning_rate": 2.4586134453781514e-05, + "loss": 0.6402838897705078, + "step": 24200 + }, + { + "epoch": 51.05047318611987, + "grad_norm": 0.6592356562614441, + "learning_rate": 2.4481092436974794e-05, + "loss": 0.6321442413330078, + "step": 24300 + }, + { + "epoch": 51.26077812828601, + "grad_norm": 0.6957094073295593, + "learning_rate": 2.4376050420168066e-05, + "loss": 0.6060052108764649, + "step": 24400 + }, + { + "epoch": 51.47108307045215, + "grad_norm": 0.6904229521751404, + "learning_rate": 2.4271008403361345e-05, + "loss": 0.6094649505615234, + "step": 24500 + }, + { + "epoch": 51.6813880126183, + "grad_norm": 0.7173294425010681, + "learning_rate": 2.416596638655462e-05, + "loss": 0.6187096023559571, + "step": 24600 + }, + { + "epoch": 51.89169295478444, + "grad_norm": 0.7143198251724243, + "learning_rate": 2.40609243697479e-05, + "loss": 0.6268323516845703, + "step": 24700 + }, + { + "epoch": 52.10094637223975, + "grad_norm": 0.6786720752716064, + "learning_rate": 2.3955882352941176e-05, + "loss": 0.6083223342895507, + "step": 24800 + }, + { + "epoch": 52.31125131440589, + "grad_norm": 0.6900521516799927, + "learning_rate": 2.3850840336134456e-05, + "loss": 0.5922721862792969, + "step": 24900 + }, + { + "epoch": 52.521556256572026, + "grad_norm": 0.7288543581962585, + "learning_rate": 2.3745798319327735e-05, + "loss": 0.5982749938964844, + "step": 25000 + }, + { + "epoch": 52.73186119873817, + "grad_norm": 0.704078197479248, + "learning_rate": 2.3640756302521007e-05, + "loss": 0.6041379547119141, + "step": 25100 + }, + { + "epoch": 52.94216614090431, + "grad_norm": 0.706262469291687, + "learning_rate": 2.3535714285714287e-05, + "loss": 0.6083390808105469, + "step": 25200 + }, + { + "epoch": 53.15141955835962, + "grad_norm": 0.6775776743888855, + "learning_rate": 2.3430672268907563e-05, + "loss": 0.5816435623168945, + "step": 25300 + }, + { + "epoch": 53.36172450052576, + "grad_norm": 0.7253007888793945, + "learning_rate": 2.3325630252100842e-05, + "loss": 0.58095458984375, + "step": 25400 + }, + { + "epoch": 53.5720294426919, + "grad_norm": 0.7169889211654663, + "learning_rate": 2.3220588235294118e-05, + "loss": 0.5878105163574219, + "step": 25500 + }, + { + "epoch": 53.782334384858046, + "grad_norm": 0.6921281814575195, + "learning_rate": 2.3115546218487397e-05, + "loss": 0.5918175506591797, + "step": 25600 + }, + { + "epoch": 53.992639327024186, + "grad_norm": 0.7570663094520569, + "learning_rate": 2.3010504201680673e-05, + "loss": 0.5992276000976563, + "step": 25700 + }, + { + "epoch": 54.201892744479494, + "grad_norm": 0.7045475840568542, + "learning_rate": 2.2905462184873952e-05, + "loss": 0.563626937866211, + "step": 25800 + }, + { + "epoch": 54.412197686645634, + "grad_norm": 0.7311537861824036, + "learning_rate": 2.2800420168067228e-05, + "loss": 0.5649079513549805, + "step": 25900 + }, + { + "epoch": 54.62250262881178, + "grad_norm": 0.7197280526161194, + "learning_rate": 2.2695378151260504e-05, + "loss": 0.5740287017822265, + "step": 26000 + }, + { + "epoch": 54.83280757097792, + "grad_norm": 0.7047930359840393, + "learning_rate": 2.2590336134453783e-05, + "loss": 0.5799992752075195, + "step": 26100 + }, + { + "epoch": 55.04206098843323, + "grad_norm": 0.663329541683197, + "learning_rate": 2.2486344537815125e-05, + "loss": 0.5747824096679688, + "step": 26200 + }, + { + "epoch": 55.25236593059937, + "grad_norm": 0.6825776100158691, + "learning_rate": 2.2381302521008405e-05, + "loss": 0.5511475372314453, + "step": 26300 + }, + { + "epoch": 55.46267087276551, + "grad_norm": 0.7081674337387085, + "learning_rate": 2.227626050420168e-05, + "loss": 0.5568293380737305, + "step": 26400 + }, + { + "epoch": 55.672975814931654, + "grad_norm": 0.6991596221923828, + "learning_rate": 2.217121848739496e-05, + "loss": 0.5623696899414062, + "step": 26500 + }, + { + "epoch": 55.88328075709779, + "grad_norm": 0.7421116828918457, + "learning_rate": 2.2066176470588236e-05, + "loss": 0.5673596572875976, + "step": 26600 + }, + { + "epoch": 56.0925341745531, + "grad_norm": 0.6679620146751404, + "learning_rate": 2.1961134453781515e-05, + "loss": 0.555915298461914, + "step": 26700 + }, + { + "epoch": 56.30283911671924, + "grad_norm": 0.7035086750984192, + "learning_rate": 2.185609243697479e-05, + "loss": 0.5402443313598633, + "step": 26800 + }, + { + "epoch": 56.51314405888538, + "grad_norm": 0.6888571381568909, + "learning_rate": 2.1751050420168067e-05, + "loss": 0.5462953186035157, + "step": 26900 + }, + { + "epoch": 56.72344900105153, + "grad_norm": 0.7356609106063843, + "learning_rate": 2.1646008403361346e-05, + "loss": 0.5512025833129883, + "step": 27000 + }, + { + "epoch": 56.93375394321767, + "grad_norm": 0.7569705247879028, + "learning_rate": 2.1540966386554622e-05, + "loss": 0.5562152481079101, + "step": 27100 + }, + { + "epoch": 57.143007360672975, + "grad_norm": 0.6764115691184998, + "learning_rate": 2.14359243697479e-05, + "loss": 0.5337548065185547, + "step": 27200 + }, + { + "epoch": 57.353312302839115, + "grad_norm": 0.7006810307502747, + "learning_rate": 2.1330882352941177e-05, + "loss": 0.5296073913574219, + "step": 27300 + }, + { + "epoch": 57.56361724500526, + "grad_norm": 0.7158169150352478, + "learning_rate": 2.1225840336134456e-05, + "loss": 0.5382700347900391, + "step": 27400 + }, + { + "epoch": 57.7739221871714, + "grad_norm": 0.7132992148399353, + "learning_rate": 2.1120798319327732e-05, + "loss": 0.5398505783081055, + "step": 27500 + }, + { + "epoch": 57.98422712933754, + "grad_norm": 0.7330942749977112, + "learning_rate": 2.1015756302521008e-05, + "loss": 0.5458747863769531, + "step": 27600 + }, + { + "epoch": 58.19348054679285, + "grad_norm": 0.669278621673584, + "learning_rate": 2.0910714285714287e-05, + "loss": 0.5161695861816407, + "step": 27700 + }, + { + "epoch": 58.40378548895899, + "grad_norm": 0.6958737373352051, + "learning_rate": 2.0805672268907563e-05, + "loss": 0.5201998901367187, + "step": 27800 + }, + { + "epoch": 58.614090431125135, + "grad_norm": 0.6824914813041687, + "learning_rate": 2.0700630252100842e-05, + "loss": 0.5258338928222657, + "step": 27900 + }, + { + "epoch": 58.824395373291274, + "grad_norm": 0.6634467244148254, + "learning_rate": 2.0595588235294118e-05, + "loss": 0.5300619888305664, + "step": 28000 + }, + { + "epoch": 59.03364879074658, + "grad_norm": 0.6863816380500793, + "learning_rate": 2.0490546218487397e-05, + "loss": 0.5283214950561523, + "step": 28100 + }, + { + "epoch": 59.24395373291272, + "grad_norm": 0.7183119654655457, + "learning_rate": 2.0385504201680673e-05, + "loss": 0.506834487915039, + "step": 28200 + }, + { + "epoch": 59.45425867507886, + "grad_norm": 0.7142145037651062, + "learning_rate": 2.028046218487395e-05, + "loss": 0.5117876815795899, + "step": 28300 + }, + { + "epoch": 59.66456361724501, + "grad_norm": 0.7280924916267395, + "learning_rate": 2.017542016806723e-05, + "loss": 0.5153473281860351, + "step": 28400 + }, + { + "epoch": 59.87486855941115, + "grad_norm": 0.693505048751831, + "learning_rate": 2.0070378151260504e-05, + "loss": 0.5219352722167969, + "step": 28500 + }, + { + "epoch": 60.084121976866456, + "grad_norm": 0.6892845034599304, + "learning_rate": 1.9965336134453784e-05, + "loss": 0.5122858810424805, + "step": 28600 + }, + { + "epoch": 60.294426919032595, + "grad_norm": 0.6604379415512085, + "learning_rate": 1.986029411764706e-05, + "loss": 0.49614715576171875, + "step": 28700 + }, + { + "epoch": 60.504731861198735, + "grad_norm": 0.7204891443252563, + "learning_rate": 1.975525210084034e-05, + "loss": 0.5024974822998047, + "step": 28800 + }, + { + "epoch": 60.71503680336488, + "grad_norm": 0.7127634286880493, + "learning_rate": 1.9650210084033615e-05, + "loss": 0.5073120498657226, + "step": 28900 + }, + { + "epoch": 60.92534174553102, + "grad_norm": 0.7359983921051025, + "learning_rate": 1.954516806722689e-05, + "loss": 0.5116232681274414, + "step": 29000 + }, + { + "epoch": 61.13459516298633, + "grad_norm": 0.6893951296806335, + "learning_rate": 1.944012605042017e-05, + "loss": 0.4952814865112305, + "step": 29100 + }, + { + "epoch": 61.34490010515247, + "grad_norm": 0.6849685311317444, + "learning_rate": 1.9335084033613446e-05, + "loss": 0.4899435043334961, + "step": 29200 + }, + { + "epoch": 61.55520504731861, + "grad_norm": 0.7181743383407593, + "learning_rate": 1.9230042016806725e-05, + "loss": 0.4946512985229492, + "step": 29300 + }, + { + "epoch": 61.765509989484755, + "grad_norm": 0.6820606589317322, + "learning_rate": 1.9125e-05, + "loss": 0.49947418212890626, + "step": 29400 + }, + { + "epoch": 61.975814931650895, + "grad_norm": 0.7111321687698364, + "learning_rate": 1.901995798319328e-05, + "loss": 0.5020344543457032, + "step": 29500 + }, + { + "epoch": 62.1850683491062, + "grad_norm": 0.7008198499679565, + "learning_rate": 1.8914915966386556e-05, + "loss": 0.48151485443115233, + "step": 29600 + }, + { + "epoch": 62.39537329127234, + "grad_norm": 0.7171513438224792, + "learning_rate": 1.880987394957983e-05, + "loss": 0.48171932220458985, + "step": 29700 + }, + { + "epoch": 62.60567823343849, + "grad_norm": 0.7375807762145996, + "learning_rate": 1.8704831932773108e-05, + "loss": 0.4873679733276367, + "step": 29800 + }, + { + "epoch": 62.81598317560463, + "grad_norm": 0.6806672811508179, + "learning_rate": 1.8599789915966387e-05, + "loss": 0.4887456130981445, + "step": 29900 + }, + { + "epoch": 63.02523659305994, + "grad_norm": 0.6749327182769775, + "learning_rate": 1.8494747899159666e-05, + "loss": 0.48958889007568357, + "step": 30000 + }, + { + "epoch": 63.235541535226076, + "grad_norm": 0.7122695446014404, + "learning_rate": 1.8389705882352942e-05, + "loss": 0.46849212646484373, + "step": 30100 + }, + { + "epoch": 63.445846477392216, + "grad_norm": 0.6742300987243652, + "learning_rate": 1.8285714285714288e-05, + "loss": 0.4735026550292969, + "step": 30200 + }, + { + "epoch": 63.65615141955836, + "grad_norm": 0.7086833119392395, + "learning_rate": 1.8180672268907564e-05, + "loss": 0.47808189392089845, + "step": 30300 + }, + { + "epoch": 63.8664563617245, + "grad_norm": 0.673115611076355, + "learning_rate": 1.8075630252100843e-05, + "loss": 0.4810390853881836, + "step": 30400 + }, + { + "epoch": 64.07570977917982, + "grad_norm": 0.7166642546653748, + "learning_rate": 1.797058823529412e-05, + "loss": 0.47662986755371095, + "step": 30500 + }, + { + "epoch": 64.28601472134595, + "grad_norm": 0.7239866852760315, + "learning_rate": 1.7865546218487395e-05, + "loss": 0.46368907928466796, + "step": 30600 + }, + { + "epoch": 64.4963196635121, + "grad_norm": 0.6777023077011108, + "learning_rate": 1.776050420168067e-05, + "loss": 0.46869037628173826, + "step": 30700 + }, + { + "epoch": 64.70662460567823, + "grad_norm": 0.7028587460517883, + "learning_rate": 1.765546218487395e-05, + "loss": 0.47153076171875, + "step": 30800 + }, + { + "epoch": 64.91692954784438, + "grad_norm": 0.7220568656921387, + "learning_rate": 1.755042016806723e-05, + "loss": 0.4732553482055664, + "step": 30900 + }, + { + "epoch": 65.12618296529969, + "grad_norm": 0.6283636093139648, + "learning_rate": 1.7445378151260505e-05, + "loss": 0.4627264404296875, + "step": 31000 + }, + { + "epoch": 65.33648790746582, + "grad_norm": 0.6411524415016174, + "learning_rate": 1.7340336134453784e-05, + "loss": 0.45608016967773435, + "step": 31100 + }, + { + "epoch": 65.54679284963197, + "grad_norm": 0.668154776096344, + "learning_rate": 1.723529411764706e-05, + "loss": 0.46059967041015626, + "step": 31200 + }, + { + "epoch": 65.7570977917981, + "grad_norm": 0.7226248979568481, + "learning_rate": 1.713025210084034e-05, + "loss": 0.4659851455688477, + "step": 31300 + }, + { + "epoch": 65.96740273396425, + "grad_norm": 0.6833023428916931, + "learning_rate": 1.7025210084033612e-05, + "loss": 0.46931900024414064, + "step": 31400 + }, + { + "epoch": 66.17665615141956, + "grad_norm": 0.6941800117492676, + "learning_rate": 1.6921218487394958e-05, + "loss": 0.45006973266601563, + "step": 31500 + }, + { + "epoch": 66.3869610935857, + "grad_norm": 0.63517826795578, + "learning_rate": 1.6816176470588237e-05, + "loss": 0.44848171234130857, + "step": 31600 + }, + { + "epoch": 66.59726603575184, + "grad_norm": 0.6846080422401428, + "learning_rate": 1.6711134453781513e-05, + "loss": 0.45420032501220703, + "step": 31700 + }, + { + "epoch": 66.80757097791798, + "grad_norm": 0.6388368010520935, + "learning_rate": 1.6606092436974792e-05, + "loss": 0.4580923843383789, + "step": 31800 + }, + { + "epoch": 67.01682439537329, + "grad_norm": 0.6670629978179932, + "learning_rate": 1.6501050420168068e-05, + "loss": 0.4585027313232422, + "step": 31900 + }, + { + "epoch": 67.22712933753944, + "grad_norm": 0.6662338972091675, + "learning_rate": 1.6396008403361347e-05, + "loss": 0.44079010009765623, + "step": 32000 + }, + { + "epoch": 67.43743427970557, + "grad_norm": 0.6707865595817566, + "learning_rate": 1.6290966386554623e-05, + "loss": 0.44413238525390625, + "step": 32100 + }, + { + "epoch": 67.64773922187172, + "grad_norm": 0.656842052936554, + "learning_rate": 1.6185924369747902e-05, + "loss": 0.44844043731689454, + "step": 32200 + }, + { + "epoch": 67.85804416403785, + "grad_norm": 0.6646634340286255, + "learning_rate": 1.6080882352941175e-05, + "loss": 0.44970947265625, + "step": 32300 + }, + { + "epoch": 68.06729758149316, + "grad_norm": 0.6447365880012512, + "learning_rate": 1.5975840336134454e-05, + "loss": 0.4450407028198242, + "step": 32400 + }, + { + "epoch": 68.27760252365931, + "grad_norm": 0.6727699637413025, + "learning_rate": 1.587079831932773e-05, + "loss": 0.43177310943603514, + "step": 32500 + }, + { + "epoch": 68.48790746582544, + "grad_norm": 0.7130571603775024, + "learning_rate": 1.576575630252101e-05, + "loss": 0.4379489517211914, + "step": 32600 + }, + { + "epoch": 68.69821240799159, + "grad_norm": 0.7220073938369751, + "learning_rate": 1.566071428571429e-05, + "loss": 0.4425164794921875, + "step": 32700 + }, + { + "epoch": 68.90851735015772, + "grad_norm": 0.6695141196250916, + "learning_rate": 1.5555672268907564e-05, + "loss": 0.44274383544921875, + "step": 32800 + }, + { + "epoch": 69.11777076761304, + "grad_norm": 0.6740268468856812, + "learning_rate": 1.5450630252100843e-05, + "loss": 0.4357725143432617, + "step": 32900 + }, + { + "epoch": 69.32807570977918, + "grad_norm": 0.6566063165664673, + "learning_rate": 1.5345588235294116e-05, + "loss": 0.4283485412597656, + "step": 33000 + }, + { + "epoch": 69.53838065194532, + "grad_norm": 0.6752663850784302, + "learning_rate": 1.5240546218487395e-05, + "loss": 0.43225677490234377, + "step": 33100 + }, + { + "epoch": 69.74868559411146, + "grad_norm": 0.7038667798042297, + "learning_rate": 1.5135504201680673e-05, + "loss": 0.43592594146728514, + "step": 33200 + }, + { + "epoch": 69.9589905362776, + "grad_norm": 0.6961196660995483, + "learning_rate": 1.503046218487395e-05, + "loss": 0.438877067565918, + "step": 33300 + }, + { + "epoch": 70.16824395373291, + "grad_norm": 0.6535352468490601, + "learning_rate": 1.4925420168067228e-05, + "loss": 0.4252385330200195, + "step": 33400 + }, + { + "epoch": 70.37854889589906, + "grad_norm": 0.6601018905639648, + "learning_rate": 1.4820378151260505e-05, + "loss": 0.42285392761230467, + "step": 33500 + }, + { + "epoch": 70.58885383806519, + "grad_norm": 0.6948896050453186, + "learning_rate": 1.4715336134453783e-05, + "loss": 0.427175407409668, + "step": 33600 + }, + { + "epoch": 70.79915878023134, + "grad_norm": 0.6372560858726501, + "learning_rate": 1.461029411764706e-05, + "loss": 0.42832706451416014, + "step": 33700 + }, + { + "epoch": 71.00841219768665, + "grad_norm": 0.6517939567565918, + "learning_rate": 1.4505252100840336e-05, + "loss": 0.4324043273925781, + "step": 33800 + }, + { + "epoch": 71.21871713985279, + "grad_norm": 0.6330206990242004, + "learning_rate": 1.4400210084033614e-05, + "loss": 0.4146746826171875, + "step": 33900 + }, + { + "epoch": 71.42902208201893, + "grad_norm": 0.6658615469932556, + "learning_rate": 1.4295168067226892e-05, + "loss": 0.4180047225952148, + "step": 34000 + }, + { + "epoch": 71.63932702418506, + "grad_norm": 0.6433075070381165, + "learning_rate": 1.4190126050420169e-05, + "loss": 0.4219693374633789, + "step": 34100 + }, + { + "epoch": 71.84963196635121, + "grad_norm": 0.6470766663551331, + "learning_rate": 1.4085084033613447e-05, + "loss": 0.4214926528930664, + "step": 34200 + }, + { + "epoch": 72.05888538380653, + "grad_norm": 0.6315721273422241, + "learning_rate": 1.3981092436974791e-05, + "loss": 0.4204498291015625, + "step": 34300 + }, + { + "epoch": 72.26919032597266, + "grad_norm": 0.6722202897071838, + "learning_rate": 1.3876050420168068e-05, + "loss": 0.4105443572998047, + "step": 34400 + }, + { + "epoch": 72.4794952681388, + "grad_norm": 0.654528021812439, + "learning_rate": 1.3771008403361346e-05, + "loss": 0.41524337768554687, + "step": 34500 + }, + { + "epoch": 72.68980021030494, + "grad_norm": 0.6449755430221558, + "learning_rate": 1.3665966386554622e-05, + "loss": 0.4175481414794922, + "step": 34600 + }, + { + "epoch": 72.90010515247108, + "grad_norm": 0.6468359231948853, + "learning_rate": 1.35609243697479e-05, + "loss": 0.41863433837890623, + "step": 34700 + }, + { + "epoch": 73.1093585699264, + "grad_norm": 0.6471462845802307, + "learning_rate": 1.3455882352941177e-05, + "loss": 0.411123161315918, + "step": 34800 + }, + { + "epoch": 73.31966351209253, + "grad_norm": 0.6382157802581787, + "learning_rate": 1.3350840336134455e-05, + "loss": 0.40554931640625, + "step": 34900 + }, + { + "epoch": 73.52996845425868, + "grad_norm": 0.6727550029754639, + "learning_rate": 1.3245798319327732e-05, + "loss": 0.40884464263916015, + "step": 35000 + }, + { + "epoch": 73.74027339642481, + "grad_norm": 0.6494147181510925, + "learning_rate": 1.314075630252101e-05, + "loss": 0.4114807891845703, + "step": 35100 + }, + { + "epoch": 73.95057833859096, + "grad_norm": 0.6971067786216736, + "learning_rate": 1.3035714285714287e-05, + "loss": 0.4129951477050781, + "step": 35200 + }, + { + "epoch": 74.15983175604627, + "grad_norm": 0.630617082118988, + "learning_rate": 1.2930672268907565e-05, + "loss": 0.40283798217773437, + "step": 35300 + }, + { + "epoch": 74.3701366982124, + "grad_norm": 0.6068241000175476, + "learning_rate": 1.2825630252100839e-05, + "loss": 0.4017567825317383, + "step": 35400 + }, + { + "epoch": 74.58044164037855, + "grad_norm": 0.6767259836196899, + "learning_rate": 1.2720588235294118e-05, + "loss": 0.40448307037353515, + "step": 35500 + }, + { + "epoch": 74.79074658254468, + "grad_norm": 0.7011847496032715, + "learning_rate": 1.2615546218487396e-05, + "loss": 0.4047744369506836, + "step": 35600 + }, + { + "epoch": 75.0, + "grad_norm": 0.9920335412025452, + "learning_rate": 1.2510504201680673e-05, + "loss": 0.4085837936401367, + "step": 35700 + }, + { + "epoch": 75.21030494216615, + "grad_norm": 0.6520708203315735, + "learning_rate": 1.2405462184873951e-05, + "loss": 0.39399688720703124, + "step": 35800 + }, + { + "epoch": 75.42060988433228, + "grad_norm": 0.6656842827796936, + "learning_rate": 1.2300420168067227e-05, + "loss": 0.3963521957397461, + "step": 35900 + }, + { + "epoch": 75.63091482649843, + "grad_norm": 0.6576446294784546, + "learning_rate": 1.2195378151260504e-05, + "loss": 0.3992136383056641, + "step": 36000 + }, + { + "epoch": 75.84121976866456, + "grad_norm": 0.6238224506378174, + "learning_rate": 1.2090336134453782e-05, + "loss": 0.40125537872314454, + "step": 36100 + }, + { + "epoch": 76.05047318611987, + "grad_norm": 0.6389949917793274, + "learning_rate": 1.198529411764706e-05, + "loss": 0.3995349884033203, + "step": 36200 + }, + { + "epoch": 76.26077812828602, + "grad_norm": 0.6240091919898987, + "learning_rate": 1.1880252100840335e-05, + "loss": 0.3890629577636719, + "step": 36300 + }, + { + "epoch": 76.47108307045215, + "grad_norm": 0.6367642879486084, + "learning_rate": 1.1775210084033615e-05, + "loss": 0.39277313232421873, + "step": 36400 + }, + { + "epoch": 76.6813880126183, + "grad_norm": 0.6215347647666931, + "learning_rate": 1.1670168067226892e-05, + "loss": 0.3941745376586914, + "step": 36500 + }, + { + "epoch": 76.89169295478443, + "grad_norm": 0.6176421642303467, + "learning_rate": 1.156512605042017e-05, + "loss": 0.3961213302612305, + "step": 36600 + }, + { + "epoch": 77.10094637223975, + "grad_norm": 0.6433852314949036, + "learning_rate": 1.1460084033613446e-05, + "loss": 0.39362903594970705, + "step": 36700 + }, + { + "epoch": 77.3112513144059, + "grad_norm": 0.6288033127784729, + "learning_rate": 1.1355042016806723e-05, + "loss": 0.3870785140991211, + "step": 36800 + }, + { + "epoch": 77.52155625657203, + "grad_norm": 0.6061193943023682, + "learning_rate": 1.125e-05, + "loss": 0.38955581665039063, + "step": 36900 + }, + { + "epoch": 77.73186119873817, + "grad_norm": 0.6680556535720825, + "learning_rate": 1.1144957983193278e-05, + "loss": 0.390676383972168, + "step": 37000 + }, + { + "epoch": 77.9421661409043, + "grad_norm": 0.623725950717926, + "learning_rate": 1.1039915966386554e-05, + "loss": 0.3921066665649414, + "step": 37100 + }, + { + "epoch": 78.15141955835962, + "grad_norm": 0.6346238255500793, + "learning_rate": 1.0935924369747898e-05, + "loss": 0.3845651626586914, + "step": 37200 + }, + { + "epoch": 78.36172450052577, + "grad_norm": 0.6062731146812439, + "learning_rate": 1.0830882352941178e-05, + "loss": 0.380772705078125, + "step": 37300 + }, + { + "epoch": 78.5720294426919, + "grad_norm": 0.6125079989433289, + "learning_rate": 1.0725840336134455e-05, + "loss": 0.3834884262084961, + "step": 37400 + }, + { + "epoch": 78.78233438485805, + "grad_norm": 0.6804420948028564, + "learning_rate": 1.0620798319327733e-05, + "loss": 0.3863555526733398, + "step": 37500 + }, + { + "epoch": 78.99263932702418, + "grad_norm": 0.6568316221237183, + "learning_rate": 1.0515756302521009e-05, + "loss": 0.3898443603515625, + "step": 37600 + }, + { + "epoch": 79.2018927444795, + "grad_norm": 0.6262179017066956, + "learning_rate": 1.0410714285714286e-05, + "loss": 0.37717395782470703, + "step": 37700 + }, + { + "epoch": 79.41219768664564, + "grad_norm": 0.6335896849632263, + "learning_rate": 1.0305672268907564e-05, + "loss": 0.37976459503173826, + "step": 37800 + }, + { + "epoch": 79.62250262881177, + "grad_norm": 0.675938069820404, + "learning_rate": 1.0200630252100841e-05, + "loss": 0.38054397583007815, + "step": 37900 + }, + { + "epoch": 79.83280757097792, + "grad_norm": 0.650644838809967, + "learning_rate": 1.0095588235294117e-05, + "loss": 0.3817191696166992, + "step": 38000 + }, + { + "epoch": 80.04206098843324, + "grad_norm": 0.5988778471946716, + "learning_rate": 9.990546218487395e-06, + "loss": 0.3799977493286133, + "step": 38100 + }, + { + "epoch": 80.25236593059937, + "grad_norm": 0.6436987519264221, + "learning_rate": 9.885504201680674e-06, + "loss": 0.37264183044433596, + "step": 38200 + }, + { + "epoch": 80.46267087276551, + "grad_norm": 0.610487699508667, + "learning_rate": 9.78046218487395e-06, + "loss": 0.3753046417236328, + "step": 38300 + }, + { + "epoch": 80.67297581493165, + "grad_norm": 0.6378571391105652, + "learning_rate": 9.675420168067227e-06, + "loss": 0.3749809646606445, + "step": 38400 + }, + { + "epoch": 80.8832807570978, + "grad_norm": 0.6599664688110352, + "learning_rate": 9.570378151260505e-06, + "loss": 0.37958168029785155, + "step": 38500 + }, + { + "epoch": 81.09253417455311, + "grad_norm": 0.6057779788970947, + "learning_rate": 9.465336134453782e-06, + "loss": 0.3755946731567383, + "step": 38600 + }, + { + "epoch": 81.30283911671924, + "grad_norm": 0.6186268925666809, + "learning_rate": 9.360294117647058e-06, + "loss": 0.3689208221435547, + "step": 38700 + }, + { + "epoch": 81.51314405888539, + "grad_norm": 0.6031709909439087, + "learning_rate": 9.255252100840336e-06, + "loss": 0.37045917510986326, + "step": 38800 + }, + { + "epoch": 81.72344900105152, + "grad_norm": 0.6903654336929321, + "learning_rate": 9.150210084033613e-06, + "loss": 0.37341190338134767, + "step": 38900 + }, + { + "epoch": 81.93375394321767, + "grad_norm": 0.6498835682868958, + "learning_rate": 9.045168067226891e-06, + "loss": 0.3741530227661133, + "step": 39000 + }, + { + "epoch": 82.14300736067298, + "grad_norm": 0.6078621745109558, + "learning_rate": 8.940126050420169e-06, + "loss": 0.36713558197021484, + "step": 39100 + }, + { + "epoch": 82.35331230283911, + "grad_norm": 0.6294094324111938, + "learning_rate": 8.835084033613446e-06, + "loss": 0.3661073303222656, + "step": 39200 + }, + { + "epoch": 82.56361724500526, + "grad_norm": 0.6120302081108093, + "learning_rate": 8.730042016806724e-06, + "loss": 0.3683062744140625, + "step": 39300 + }, + { + "epoch": 82.7739221871714, + "grad_norm": 0.6194695830345154, + "learning_rate": 8.625e-06, + "loss": 0.3718934631347656, + "step": 39400 + }, + { + "epoch": 82.98422712933754, + "grad_norm": 0.6603109240531921, + "learning_rate": 8.519957983193277e-06, + "loss": 0.37141822814941405, + "step": 39500 + }, + { + "epoch": 83.19348054679286, + "grad_norm": 0.6176982522010803, + "learning_rate": 8.414915966386555e-06, + "loss": 0.36253021240234373, + "step": 39600 + }, + { + "epoch": 83.40378548895899, + "grad_norm": 0.6788721084594727, + "learning_rate": 8.309873949579832e-06, + "loss": 0.36460174560546876, + "step": 39700 + }, + { + "epoch": 83.61409043112513, + "grad_norm": 0.6141113638877869, + "learning_rate": 8.20483193277311e-06, + "loss": 0.36554264068603515, + "step": 39800 + }, + { + "epoch": 83.82439537329127, + "grad_norm": 0.6193323135375977, + "learning_rate": 8.099789915966387e-06, + "loss": 0.36707286834716796, + "step": 39900 + }, + { + "epoch": 84.03364879074658, + "grad_norm": 0.6383187770843506, + "learning_rate": 7.994747899159665e-06, + "loss": 0.3661843872070312, + "step": 40000 + }, + { + "epoch": 84.24395373291273, + "grad_norm": 0.5923520922660828, + "learning_rate": 7.889705882352943e-06, + "loss": 0.35978816986083983, + "step": 40100 + }, + { + "epoch": 84.45425867507886, + "grad_norm": 0.641968846321106, + "learning_rate": 7.784663865546218e-06, + "loss": 0.35977176666259764, + "step": 40200 + }, + { + "epoch": 84.66456361724501, + "grad_norm": 0.6307324767112732, + "learning_rate": 7.679621848739496e-06, + "loss": 0.36135292053222656, + "step": 40300 + }, + { + "epoch": 84.87486855941114, + "grad_norm": 0.6303888559341431, + "learning_rate": 7.5745798319327735e-06, + "loss": 0.36290821075439456, + "step": 40400 + }, + { + "epoch": 85.08412197686646, + "grad_norm": 0.5610889792442322, + "learning_rate": 7.469537815126051e-06, + "loss": 0.36016101837158204, + "step": 40500 + }, + { + "epoch": 85.2944269190326, + "grad_norm": 0.5796296000480652, + "learning_rate": 7.364495798319328e-06, + "loss": 0.35660606384277344, + "step": 40600 + }, + { + "epoch": 85.50473186119874, + "grad_norm": 0.6147542595863342, + "learning_rate": 7.259453781512605e-06, + "loss": 0.35944347381591796, + "step": 40700 + }, + { + "epoch": 85.71503680336488, + "grad_norm": 0.6097769737243652, + "learning_rate": 7.154411764705883e-06, + "loss": 0.3589036560058594, + "step": 40800 + }, + { + "epoch": 85.92534174553101, + "grad_norm": 0.6288202404975891, + "learning_rate": 7.04936974789916e-06, + "loss": 0.3591917419433594, + "step": 40900 + }, + { + "epoch": 86.13459516298633, + "grad_norm": 0.6195931434631348, + "learning_rate": 6.944327731092437e-06, + "loss": 0.3569915771484375, + "step": 41000 + }, + { + "epoch": 86.34490010515248, + "grad_norm": 0.5890372395515442, + "learning_rate": 6.839285714285715e-06, + "loss": 0.3543994903564453, + "step": 41100 + }, + { + "epoch": 86.55520504731861, + "grad_norm": 0.6272594332695007, + "learning_rate": 6.735294117647059e-06, + "loss": 0.3553640365600586, + "step": 41200 + }, + { + "epoch": 86.76550998948476, + "grad_norm": 0.6778700351715088, + "learning_rate": 6.6302521008403365e-06, + "loss": 0.3564106750488281, + "step": 41300 + }, + { + "epoch": 86.97581493165089, + "grad_norm": 0.6336688995361328, + "learning_rate": 6.525210084033614e-06, + "loss": 0.35713409423828124, + "step": 41400 + }, + { + "epoch": 87.1850683491062, + "grad_norm": 0.6053069829940796, + "learning_rate": 6.421218487394959e-06, + "loss": 0.3506643295288086, + "step": 41500 + }, + { + "epoch": 87.39537329127235, + "grad_norm": 0.6175255179405212, + "learning_rate": 6.316176470588235e-06, + "loss": 0.35214996337890625, + "step": 41600 + }, + { + "epoch": 87.60567823343848, + "grad_norm": 0.5915444493293762, + "learning_rate": 6.2111344537815125e-06, + "loss": 0.3522480392456055, + "step": 41700 + }, + { + "epoch": 87.81598317560463, + "grad_norm": 0.5907636880874634, + "learning_rate": 6.10609243697479e-06, + "loss": 0.3520878601074219, + "step": 41800 + }, + { + "epoch": 88.02523659305994, + "grad_norm": 0.6209415197372437, + "learning_rate": 6.001050420168068e-06, + "loss": 0.3545633316040039, + "step": 41900 + }, + { + "epoch": 88.23554153522608, + "grad_norm": 0.5926827788352966, + "learning_rate": 5.896008403361345e-06, + "loss": 0.34920032501220705, + "step": 42000 + }, + { + "epoch": 88.44584647739222, + "grad_norm": 0.638471245765686, + "learning_rate": 5.790966386554622e-06, + "loss": 0.34805423736572266, + "step": 42100 + }, + { + "epoch": 88.65615141955836, + "grad_norm": 0.6181325316429138, + "learning_rate": 5.6859243697478994e-06, + "loss": 0.3501460647583008, + "step": 42200 + }, + { + "epoch": 88.8664563617245, + "grad_norm": 0.6029173135757446, + "learning_rate": 5.580882352941177e-06, + "loss": 0.35028797149658203, + "step": 42300 + }, + { + "epoch": 89.07570977917982, + "grad_norm": 0.5673274397850037, + "learning_rate": 5.475840336134454e-06, + "loss": 0.34918766021728515, + "step": 42400 + }, + { + "epoch": 89.28601472134595, + "grad_norm": 0.5657567977905273, + "learning_rate": 5.370798319327731e-06, + "loss": 0.34565746307373046, + "step": 42500 + }, + { + "epoch": 89.4963196635121, + "grad_norm": 0.6014168858528137, + "learning_rate": 5.265756302521008e-06, + "loss": 0.3450989532470703, + "step": 42600 + }, + { + "epoch": 89.70662460567823, + "grad_norm": 0.5631797909736633, + "learning_rate": 5.160714285714286e-06, + "loss": 0.3477408218383789, + "step": 42700 + }, + { + "epoch": 89.91692954784438, + "grad_norm": 0.624321699142456, + "learning_rate": 5.055672268907563e-06, + "loss": 0.34852649688720705, + "step": 42800 + }, + { + "epoch": 90.12618296529969, + "grad_norm": 0.6004353761672974, + "learning_rate": 4.950630252100841e-06, + "loss": 0.3450387191772461, + "step": 42900 + }, + { + "epoch": 90.33648790746582, + "grad_norm": 0.6030150651931763, + "learning_rate": 4.845588235294117e-06, + "loss": 0.34261096954345704, + "step": 43000 + }, + { + "epoch": 90.54679284963197, + "grad_norm": 0.5574061870574951, + "learning_rate": 4.740546218487396e-06, + "loss": 0.3450190734863281, + "step": 43100 + }, + { + "epoch": 90.7570977917981, + "grad_norm": 0.5677763819694519, + "learning_rate": 4.6355042016806725e-06, + "loss": 0.3442384338378906, + "step": 43200 + }, + { + "epoch": 90.96740273396425, + "grad_norm": 0.6088888645172119, + "learning_rate": 4.53046218487395e-06, + "loss": 0.3451253128051758, + "step": 43300 + }, + { + "epoch": 91.17665615141956, + "grad_norm": 0.5724344849586487, + "learning_rate": 4.425420168067227e-06, + "loss": 0.3408164978027344, + "step": 43400 + }, + { + "epoch": 91.3869610935857, + "grad_norm": 0.6201240420341492, + "learning_rate": 4.320378151260504e-06, + "loss": 0.3420841979980469, + "step": 43500 + }, + { + "epoch": 91.59726603575184, + "grad_norm": 0.6098768711090088, + "learning_rate": 4.215336134453782e-06, + "loss": 0.3413374328613281, + "step": 43600 + }, + { + "epoch": 91.80757097791798, + "grad_norm": 0.6306800842285156, + "learning_rate": 4.110294117647059e-06, + "loss": 0.34394527435302735, + "step": 43700 + }, + { + "epoch": 92.01682439537329, + "grad_norm": 0.559008777141571, + "learning_rate": 4.005252100840336e-06, + "loss": 0.3423053741455078, + "step": 43800 + }, + { + "epoch": 92.22712933753944, + "grad_norm": 0.5939933657646179, + "learning_rate": 3.900210084033614e-06, + "loss": 0.33797637939453123, + "step": 43900 + }, + { + "epoch": 92.43743427970557, + "grad_norm": 0.6135221719741821, + "learning_rate": 3.795168067226891e-06, + "loss": 0.3408375930786133, + "step": 44000 + }, + { + "epoch": 92.64773922187172, + "grad_norm": 0.5870836973190308, + "learning_rate": 3.690126050420168e-06, + "loss": 0.34073463439941404, + "step": 44100 + }, + { + "epoch": 92.85804416403785, + "grad_norm": 0.5811474323272705, + "learning_rate": 3.5850840336134456e-06, + "loss": 0.34040855407714843, + "step": 44200 + }, + { + "epoch": 93.06729758149316, + "grad_norm": 0.5979830026626587, + "learning_rate": 3.4800420168067227e-06, + "loss": 0.3395253753662109, + "step": 44300 + }, + { + "epoch": 93.27760252365931, + "grad_norm": 0.5824161171913147, + "learning_rate": 3.3750000000000003e-06, + "loss": 0.3389311981201172, + "step": 44400 + }, + { + "epoch": 93.48790746582544, + "grad_norm": 0.5694940090179443, + "learning_rate": 3.2699579831932774e-06, + "loss": 0.337044792175293, + "step": 44500 + }, + { + "epoch": 93.69821240799159, + "grad_norm": 0.6112421154975891, + "learning_rate": 3.164915966386555e-06, + "loss": 0.33819969177246095, + "step": 44600 + }, + { + "epoch": 93.90851735015772, + "grad_norm": 0.610955536365509, + "learning_rate": 3.059873949579832e-06, + "loss": 0.33944580078125, + "step": 44700 + }, + { + "epoch": 94.11777076761304, + "grad_norm": 0.6398776769638062, + "learning_rate": 2.9548319327731093e-06, + "loss": 0.33618770599365233, + "step": 44800 + }, + { + "epoch": 94.32807570977918, + "grad_norm": 0.5934144854545593, + "learning_rate": 2.849789915966387e-06, + "loss": 0.3384376525878906, + "step": 44900 + }, + { + "epoch": 94.53838065194532, + "grad_norm": 0.6144473552703857, + "learning_rate": 2.744747899159664e-06, + "loss": 0.3383865737915039, + "step": 45000 + }, + { + "epoch": 94.74868559411146, + "grad_norm": 0.5490454435348511, + "learning_rate": 2.6397058823529415e-06, + "loss": 0.33671878814697265, + "step": 45100 + }, + { + "epoch": 94.9589905362776, + "grad_norm": 0.5695416331291199, + "learning_rate": 2.5346638655462187e-06, + "loss": 0.3379853820800781, + "step": 45200 + }, + { + "epoch": 95.16824395373291, + "grad_norm": 0.5724055767059326, + "learning_rate": 2.429621848739496e-06, + "loss": 0.3338408660888672, + "step": 45300 + }, + { + "epoch": 95.37854889589906, + "grad_norm": 0.594022810459137, + "learning_rate": 2.3245798319327734e-06, + "loss": 0.3349121475219727, + "step": 45400 + }, + { + "epoch": 95.58885383806519, + "grad_norm": 0.5594576597213745, + "learning_rate": 2.2205882352941175e-06, + "loss": 0.33595680236816405, + "step": 45500 + }, + { + "epoch": 95.79915878023134, + "grad_norm": 0.5346081852912903, + "learning_rate": 2.115546218487395e-06, + "loss": 0.33520328521728515, + "step": 45600 + }, + { + "epoch": 96.00841219768665, + "grad_norm": 0.5849393606185913, + "learning_rate": 2.0105042016806722e-06, + "loss": 0.3334170913696289, + "step": 45700 + }, + { + "epoch": 96.21871713985279, + "grad_norm": 0.5918118357658386, + "learning_rate": 1.9054621848739498e-06, + "loss": 0.3329995346069336, + "step": 45800 + }, + { + "epoch": 96.42902208201893, + "grad_norm": 0.6012352705001831, + "learning_rate": 1.800420168067227e-06, + "loss": 0.3329520416259766, + "step": 45900 + }, + { + "epoch": 96.63932702418506, + "grad_norm": 0.5281354784965515, + "learning_rate": 1.6953781512605043e-06, + "loss": 0.3343208694458008, + "step": 46000 + }, + { + "epoch": 96.84963196635121, + "grad_norm": 0.5566437244415283, + "learning_rate": 1.5903361344537816e-06, + "loss": 0.33319324493408203, + "step": 46100 + }, + { + "epoch": 97.05888538380653, + "grad_norm": 0.62099689245224, + "learning_rate": 1.486344537815126e-06, + "loss": 0.33431713104248045, + "step": 46200 + }, + { + "epoch": 97.26919032597266, + "grad_norm": 0.5787718892097473, + "learning_rate": 1.3813025210084034e-06, + "loss": 0.3314530944824219, + "step": 46300 + }, + { + "epoch": 97.4794952681388, + "grad_norm": 0.5509923100471497, + "learning_rate": 1.2762605042016807e-06, + "loss": 0.3316763305664063, + "step": 46400 + }, + { + "epoch": 97.68980021030494, + "grad_norm": 0.5569334030151367, + "learning_rate": 1.171218487394958e-06, + "loss": 0.3315643310546875, + "step": 46500 + }, + { + "epoch": 97.90010515247108, + "grad_norm": 0.5476507544517517, + "learning_rate": 1.0661764705882354e-06, + "loss": 0.33233203887939455, + "step": 46600 + }, + { + "epoch": 98.1093585699264, + "grad_norm": 0.5630120038986206, + "learning_rate": 9.611344537815128e-07, + "loss": 0.33105762481689455, + "step": 46700 + }, + { + "epoch": 98.31966351209253, + "grad_norm": 0.5520943999290466, + "learning_rate": 8.5609243697479e-07, + "loss": 0.3307930374145508, + "step": 46800 + }, + { + "epoch": 98.52996845425868, + "grad_norm": 0.5917891263961792, + "learning_rate": 7.510504201680673e-07, + "loss": 0.3318499755859375, + "step": 46900 + }, + { + "epoch": 98.74027339642481, + "grad_norm": 0.5395123362541199, + "learning_rate": 6.460084033613445e-07, + "loss": 0.330290412902832, + "step": 47000 + }, + { + "epoch": 98.95057833859096, + "grad_norm": 0.5702670216560364, + "learning_rate": 5.409663865546218e-07, + "loss": 0.33196086883544923, + "step": 47100 + } + ], + "logging_steps": 100, + "max_steps": 47600, + "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": 3.036465107546112e+16, + "train_batch_size": 8, + "trial_name": null, + "trial_params": null +} diff --git a/timecost/n11/realtabformer/rtf-n11-20260430_214424/rtf_checkpoints/checkpoint-47124/training_args.bin b/timecost/n11/realtabformer/rtf-n11-20260430_214424/rtf_checkpoints/checkpoint-47124/training_args.bin new file mode 100644 index 0000000000000000000000000000000000000000..34d68dc0e0fe1c1f12a2e581dd1b166aa7178a9e --- /dev/null +++ b/timecost/n11/realtabformer/rtf-n11-20260430_214424/rtf_checkpoints/checkpoint-47124/training_args.bin @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:9e2cd88337d1d846c6918d2b3b63fa3e5c93f12fefc082497590da854a564607 +size 5201 diff --git a/timecost/n11/realtabformer/rtf-n11-20260430_214424/rtf_checkpoints/checkpoint-47200/config.json b/timecost/n11/realtabformer/rtf-n11-20260430_214424/rtf_checkpoints/checkpoint-47200/config.json new file mode 100644 index 0000000000000000000000000000000000000000..605aa5aa48fc96b6c3133032a3e66cd18090e70a --- /dev/null +++ b/timecost/n11/realtabformer/rtf-n11-20260430_214424/rtf_checkpoints/checkpoint-47200/config.json @@ -0,0 +1,34 @@ +{ + "activation_function": "gelu_new", + "add_cross_attention": false, + "architectures": [ + "GPT2LMHeadModel" + ], + "attn_pdrop": 0.1, + "bos_token_id": 5, + "dtype": "float32", + "embd_pdrop": 0.1, + "eos_token_id": 6, + "initializer_range": 0.02, + "layer_norm_epsilon": 1e-05, + "model_type": "gpt2", + "n_embd": 768, + "n_head": 12, + "n_inner": null, + "n_layer": 6, + "n_positions": 1024, + "pad_token_id": null, + "reorder_and_upcast_attn": false, + "resid_pdrop": 0.1, + "scale_attn_by_inverse_layer_idx": false, + "scale_attn_weights": true, + "summary_activation": null, + "summary_first_dropout": 0.1, + "summary_proj_to_labels": true, + "summary_type": "cls_index", + "summary_use_proj": true, + "tie_word_embeddings": true, + "transformers_version": "5.5.3", + "use_cache": false, + "vocab_size": 597 +} diff --git a/timecost/n11/realtabformer/rtf-n11-20260430_214424/rtf_checkpoints/checkpoint-47200/generation_config.json b/timecost/n11/realtabformer/rtf-n11-20260430_214424/rtf_checkpoints/checkpoint-47200/generation_config.json new file mode 100644 index 0000000000000000000000000000000000000000..ffe89567780e75b5c22eade9be971483b9618f39 --- /dev/null +++ b/timecost/n11/realtabformer/rtf-n11-20260430_214424/rtf_checkpoints/checkpoint-47200/generation_config.json @@ -0,0 +1,9 @@ +{ + "_from_model_config": true, + "bos_token_id": 5, + "eos_token_id": 6, + "output_attentions": false, + "output_hidden_states": false, + "transformers_version": "5.5.3", + "use_cache": true +} diff --git a/timecost/n11/realtabformer/rtf-n11-20260430_214424/rtf_checkpoints/checkpoint-47200/model.safetensors b/timecost/n11/realtabformer/rtf-n11-20260430_214424/rtf_checkpoints/checkpoint-47200/model.safetensors new file mode 100644 index 0000000000000000000000000000000000000000..5c8908f682c4529346b6e22f6cface63fbcd6817 --- /dev/null +++ b/timecost/n11/realtabformer/rtf-n11-20260430_214424/rtf_checkpoints/checkpoint-47200/model.safetensors @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:d33e5c33a2e3a7d825245491b59b12b501a1733f7e9bfa9f8ca4ca4c0a311650 +size 175102408 diff --git a/timecost/n11/realtabformer/rtf-n11-20260430_214424/rtf_checkpoints/checkpoint-47200/optimizer.pt b/timecost/n11/realtabformer/rtf-n11-20260430_214424/rtf_checkpoints/checkpoint-47200/optimizer.pt new file mode 100644 index 0000000000000000000000000000000000000000..23a865cdd6ff5d12bc7e819657c06e10a19f851f --- /dev/null +++ b/timecost/n11/realtabformer/rtf-n11-20260430_214424/rtf_checkpoints/checkpoint-47200/optimizer.pt @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:dcb2f9b688bd04e53e9e89ab2bc2504951014488cffa66513fe8eb091476f736 +size 350253899 diff --git a/timecost/n11/realtabformer/rtf-n11-20260430_214424/rtf_checkpoints/checkpoint-47200/rng_state.pth b/timecost/n11/realtabformer/rtf-n11-20260430_214424/rtf_checkpoints/checkpoint-47200/rng_state.pth new file mode 100644 index 0000000000000000000000000000000000000000..735d090a2e5a76ac19217b614ba7d6ddcac44c6a --- /dev/null +++ b/timecost/n11/realtabformer/rtf-n11-20260430_214424/rtf_checkpoints/checkpoint-47200/rng_state.pth @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:c4b9ac243a8d6384437e12815fd076d93ea46fd92b21804b56eccf1512be75dc +size 14645 diff --git a/timecost/n11/realtabformer/rtf-n11-20260430_214424/rtf_checkpoints/checkpoint-47200/scaler.pt b/timecost/n11/realtabformer/rtf-n11-20260430_214424/rtf_checkpoints/checkpoint-47200/scaler.pt new file mode 100644 index 0000000000000000000000000000000000000000..f7a593871a22bb33e963c968355c277eb68c0b54 --- /dev/null +++ b/timecost/n11/realtabformer/rtf-n11-20260430_214424/rtf_checkpoints/checkpoint-47200/scaler.pt @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:cbaf9b79238b8d541bbe90ef5dcc2e5585c525b72f4fa1193260bd821d0f8644 +size 1383 diff --git a/timecost/n11/realtabformer/rtf-n11-20260430_214424/rtf_checkpoints/checkpoint-47200/scheduler.pt b/timecost/n11/realtabformer/rtf-n11-20260430_214424/rtf_checkpoints/checkpoint-47200/scheduler.pt new file mode 100644 index 0000000000000000000000000000000000000000..06b965a3a8746ec1a27f22172a651dbb848d3112 --- /dev/null +++ b/timecost/n11/realtabformer/rtf-n11-20260430_214424/rtf_checkpoints/checkpoint-47200/scheduler.pt @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:a93634e0bb1f7515dc579c64b790e321b453e37d021f581271c48b4e673b589a +size 1465 diff --git a/timecost/n11/realtabformer/rtf-n11-20260430_214424/rtf_checkpoints/checkpoint-47200/trainer_state.json b/timecost/n11/realtabformer/rtf-n11-20260430_214424/rtf_checkpoints/checkpoint-47200/trainer_state.json new file mode 100644 index 0000000000000000000000000000000000000000..5760c5e808328bc6d63d085c9a55ec9ef5b97d43 --- /dev/null +++ b/timecost/n11/realtabformer/rtf-n11-20260430_214424/rtf_checkpoints/checkpoint-47200/trainer_state.json @@ -0,0 +1,3338 @@ +{ + "best_global_step": null, + "best_metric": null, + "best_model_checkpoint": null, + "epoch": 99.15983175604627, + "eval_steps": 100, + "global_step": 47200, + "is_hyper_param_search": false, + "is_local_process_zero": true, + "is_world_process_zero": true, + "log_history": [ + { + "epoch": 0.2103049421661409, + "grad_norm": 0.22972723841667175, + "learning_rate": 4.989600840336135e-05, + "loss": 2.8563604736328125, + "step": 100 + }, + { + "epoch": 0.4206098843322818, + "grad_norm": 0.20056591928005219, + "learning_rate": 4.9790966386554624e-05, + "loss": 1.7068206787109375, + "step": 200 + }, + { + "epoch": 0.6309148264984227, + "grad_norm": 0.1861766129732132, + "learning_rate": 4.9685924369747897e-05, + "loss": 1.6134432983398437, + "step": 300 + }, + { + "epoch": 0.8412197686645636, + "grad_norm": 0.1723501980304718, + "learning_rate": 4.9580882352941176e-05, + "loss": 1.5735923767089843, + "step": 400 + }, + { + "epoch": 1.0504731861198737, + "grad_norm": 0.17238108813762665, + "learning_rate": 4.9475840336134455e-05, + "loss": 1.5529734802246093, + "step": 500 + }, + { + "epoch": 1.2607781282860147, + "grad_norm": 0.17322759330272675, + "learning_rate": 4.9370798319327734e-05, + "loss": 1.536485137939453, + "step": 600 + }, + { + "epoch": 1.4710830704521556, + "grad_norm": 0.1677761971950531, + "learning_rate": 4.926575630252101e-05, + "loss": 1.5277809143066405, + "step": 700 + }, + { + "epoch": 1.6813880126182965, + "grad_norm": 0.1636463701725006, + "learning_rate": 4.9160714285714286e-05, + "loss": 1.5190211486816407, + "step": 800 + }, + { + "epoch": 1.8916929547844374, + "grad_norm": 0.16561312973499298, + "learning_rate": 4.9055672268907565e-05, + "loss": 1.51519287109375, + "step": 900 + }, + { + "epoch": 2.1009463722397475, + "grad_norm": 0.15477420389652252, + "learning_rate": 4.8950630252100845e-05, + "loss": 1.5094300842285155, + "step": 1000 + }, + { + "epoch": 2.3112513144058884, + "grad_norm": 0.16169467568397522, + "learning_rate": 4.8845588235294124e-05, + "loss": 1.503891143798828, + "step": 1100 + }, + { + "epoch": 2.5215562565720293, + "grad_norm": 0.1625037044286728, + "learning_rate": 4.8740546218487396e-05, + "loss": 1.5003668212890624, + "step": 1200 + }, + { + "epoch": 2.7318611987381702, + "grad_norm": 0.15850616991519928, + "learning_rate": 4.8635504201680676e-05, + "loss": 1.5004425048828125, + "step": 1300 + }, + { + "epoch": 2.942166140904311, + "grad_norm": 0.15703575313091278, + "learning_rate": 4.8530462184873955e-05, + "loss": 1.4983340454101564, + "step": 1400 + }, + { + "epoch": 3.1514195583596214, + "grad_norm": 0.16104279458522797, + "learning_rate": 4.8425420168067234e-05, + "loss": 1.4921080017089843, + "step": 1500 + }, + { + "epoch": 3.3617245005257623, + "grad_norm": 0.15719465911388397, + "learning_rate": 4.8320378151260507e-05, + "loss": 1.4903582763671874, + "step": 1600 + }, + { + "epoch": 3.5720294426919033, + "grad_norm": 0.15651755034923553, + "learning_rate": 4.821533613445378e-05, + "loss": 1.4904457092285157, + "step": 1700 + }, + { + "epoch": 3.782334384858044, + "grad_norm": 0.14600972831249237, + "learning_rate": 4.811029411764706e-05, + "loss": 1.4897219848632812, + "step": 1800 + }, + { + "epoch": 3.992639327024185, + "grad_norm": 0.15000982582569122, + "learning_rate": 4.800525210084034e-05, + "loss": 1.4866799926757812, + "step": 1900 + }, + { + "epoch": 4.201892744479495, + "grad_norm": 0.1467936933040619, + "learning_rate": 4.790021008403362e-05, + "loss": 1.48007080078125, + "step": 2000 + }, + { + "epoch": 4.412197686645636, + "grad_norm": 0.1541317105293274, + "learning_rate": 4.779516806722689e-05, + "loss": 1.48170166015625, + "step": 2100 + }, + { + "epoch": 4.622502628811777, + "grad_norm": 0.15136213600635529, + "learning_rate": 4.769012605042017e-05, + "loss": 1.4820193481445312, + "step": 2200 + }, + { + "epoch": 4.832807570977918, + "grad_norm": 0.15268521010875702, + "learning_rate": 4.758508403361345e-05, + "loss": 1.4826155090332032, + "step": 2300 + }, + { + "epoch": 5.042060988433228, + "grad_norm": 0.1507953554391861, + "learning_rate": 4.748004201680673e-05, + "loss": 1.4825518798828126, + "step": 2400 + }, + { + "epoch": 5.252365930599369, + "grad_norm": 0.15759222209453583, + "learning_rate": 4.7375e-05, + "loss": 1.4742916870117186, + "step": 2500 + }, + { + "epoch": 5.46267087276551, + "grad_norm": 0.1464644968509674, + "learning_rate": 4.726995798319328e-05, + "loss": 1.47645751953125, + "step": 2600 + }, + { + "epoch": 5.672975814931651, + "grad_norm": 0.1496453732252121, + "learning_rate": 4.716491596638656e-05, + "loss": 1.4782669067382812, + "step": 2700 + }, + { + "epoch": 5.883280757097792, + "grad_norm": 0.15732301771640778, + "learning_rate": 4.705987394957984e-05, + "loss": 1.474007110595703, + "step": 2800 + }, + { + "epoch": 6.092534174553102, + "grad_norm": 0.1535627543926239, + "learning_rate": 4.6954831932773117e-05, + "loss": 1.4723405456542968, + "step": 2900 + }, + { + "epoch": 6.302839116719243, + "grad_norm": 0.15365540981292725, + "learning_rate": 4.684978991596639e-05, + "loss": 1.470570068359375, + "step": 3000 + }, + { + "epoch": 6.513144058885384, + "grad_norm": 0.15696321427822113, + "learning_rate": 4.674474789915967e-05, + "loss": 1.4713912963867188, + "step": 3100 + }, + { + "epoch": 6.723449001051525, + "grad_norm": 0.1542283147573471, + "learning_rate": 4.663970588235294e-05, + "loss": 1.4717630004882813, + "step": 3200 + }, + { + "epoch": 6.933753943217665, + "grad_norm": 0.14150017499923706, + "learning_rate": 4.653466386554622e-05, + "loss": 1.4702410888671875, + "step": 3300 + }, + { + "epoch": 7.143007360672976, + "grad_norm": 0.1593707650899887, + "learning_rate": 4.64296218487395e-05, + "loss": 1.4674795532226563, + "step": 3400 + }, + { + "epoch": 7.353312302839116, + "grad_norm": 0.14085018634796143, + "learning_rate": 4.632457983193277e-05, + "loss": 1.4630509948730468, + "step": 3500 + }, + { + "epoch": 7.563617245005258, + "grad_norm": 0.15045367181301117, + "learning_rate": 4.621953781512605e-05, + "loss": 1.464947509765625, + "step": 3600 + }, + { + "epoch": 7.773922187171398, + "grad_norm": 0.1627761274576187, + "learning_rate": 4.611449579831933e-05, + "loss": 1.4676199340820313, + "step": 3700 + }, + { + "epoch": 7.9842271293375395, + "grad_norm": 0.15296733379364014, + "learning_rate": 4.600945378151261e-05, + "loss": 1.464564208984375, + "step": 3800 + }, + { + "epoch": 8.19348054679285, + "grad_norm": 0.15292306244373322, + "learning_rate": 4.590441176470588e-05, + "loss": 1.460281982421875, + "step": 3900 + }, + { + "epoch": 8.40378548895899, + "grad_norm": 0.14858974516391754, + "learning_rate": 4.579936974789916e-05, + "loss": 1.4601573181152343, + "step": 4000 + }, + { + "epoch": 8.614090431125131, + "grad_norm": 0.1559685617685318, + "learning_rate": 4.569432773109244e-05, + "loss": 1.459988555908203, + "step": 4100 + }, + { + "epoch": 8.824395373291273, + "grad_norm": 0.16048291325569153, + "learning_rate": 4.558928571428572e-05, + "loss": 1.4614971923828124, + "step": 4200 + }, + { + "epoch": 9.033648790746582, + "grad_norm": 0.15471497178077698, + "learning_rate": 4.548424369747899e-05, + "loss": 1.4605735778808593, + "step": 4300 + }, + { + "epoch": 9.243953732912724, + "grad_norm": 0.14675338566303253, + "learning_rate": 4.537920168067227e-05, + "loss": 1.4529206848144531, + "step": 4400 + }, + { + "epoch": 9.454258675078865, + "grad_norm": 0.15218420326709747, + "learning_rate": 4.527415966386555e-05, + "loss": 1.4555152893066405, + "step": 4500 + }, + { + "epoch": 9.664563617245005, + "grad_norm": 0.15305759012699127, + "learning_rate": 4.516911764705883e-05, + "loss": 1.4550628662109375, + "step": 4600 + }, + { + "epoch": 9.874868559411146, + "grad_norm": 0.14932408928871155, + "learning_rate": 4.50640756302521e-05, + "loss": 1.4576924133300782, + "step": 4700 + }, + { + "epoch": 10.084121976866456, + "grad_norm": 0.15317517518997192, + "learning_rate": 4.4959033613445375e-05, + "loss": 1.45219482421875, + "step": 4800 + }, + { + "epoch": 10.294426919032597, + "grad_norm": 0.14954303205013275, + "learning_rate": 4.4853991596638654e-05, + "loss": 1.4481625366210937, + "step": 4900 + }, + { + "epoch": 10.504731861198739, + "grad_norm": 0.1534873992204666, + "learning_rate": 4.4748949579831934e-05, + "loss": 1.4501405334472657, + "step": 5000 + }, + { + "epoch": 10.715036803364878, + "grad_norm": 0.1542547196149826, + "learning_rate": 4.464390756302521e-05, + "loss": 1.452711181640625, + "step": 5100 + }, + { + "epoch": 10.92534174553102, + "grad_norm": 0.15033429861068726, + "learning_rate": 4.453886554621849e-05, + "loss": 1.4518144226074219, + "step": 5200 + }, + { + "epoch": 11.13459516298633, + "grad_norm": 0.16419348120689392, + "learning_rate": 4.4433823529411765e-05, + "loss": 1.4447087097167968, + "step": 5300 + }, + { + "epoch": 11.34490010515247, + "grad_norm": 0.15558737516403198, + "learning_rate": 4.4328781512605044e-05, + "loss": 1.4432438659667968, + "step": 5400 + }, + { + "epoch": 11.555205047318612, + "grad_norm": 0.16111871600151062, + "learning_rate": 4.422373949579832e-05, + "loss": 1.44447509765625, + "step": 5500 + }, + { + "epoch": 11.765509989484753, + "grad_norm": 0.15655963122844696, + "learning_rate": 4.41186974789916e-05, + "loss": 1.446072998046875, + "step": 5600 + }, + { + "epoch": 11.975814931650893, + "grad_norm": 0.1640811264514923, + "learning_rate": 4.4013655462184875e-05, + "loss": 1.4470193481445313, + "step": 5700 + }, + { + "epoch": 12.185068349106205, + "grad_norm": 0.16302675008773804, + "learning_rate": 4.3908613445378154e-05, + "loss": 1.4352632141113282, + "step": 5800 + }, + { + "epoch": 12.395373291272344, + "grad_norm": 0.16527259349822998, + "learning_rate": 4.380357142857143e-05, + "loss": 1.4378224182128907, + "step": 5900 + }, + { + "epoch": 12.605678233438486, + "grad_norm": 0.15840137004852295, + "learning_rate": 4.369852941176471e-05, + "loss": 1.438340301513672, + "step": 6000 + }, + { + "epoch": 12.815983175604627, + "grad_norm": 0.16105377674102783, + "learning_rate": 4.3593487394957985e-05, + "loss": 1.4395623779296876, + "step": 6100 + }, + { + "epoch": 13.025236593059937, + "grad_norm": 0.1645898073911667, + "learning_rate": 4.348844537815126e-05, + "loss": 1.4419912719726562, + "step": 6200 + }, + { + "epoch": 13.235541535226078, + "grad_norm": 0.16387709975242615, + "learning_rate": 4.338340336134454e-05, + "loss": 1.4292103576660156, + "step": 6300 + }, + { + "epoch": 13.44584647739222, + "grad_norm": 0.16231203079223633, + "learning_rate": 4.3278361344537816e-05, + "loss": 1.4302072143554687, + "step": 6400 + }, + { + "epoch": 13.656151419558359, + "grad_norm": 0.17272767424583435, + "learning_rate": 4.3173319327731095e-05, + "loss": 1.4360617065429688, + "step": 6500 + }, + { + "epoch": 13.8664563617245, + "grad_norm": 0.16650696098804474, + "learning_rate": 4.306827731092437e-05, + "loss": 1.43187744140625, + "step": 6600 + }, + { + "epoch": 14.07570977917981, + "grad_norm": 0.17131085693836212, + "learning_rate": 4.296323529411765e-05, + "loss": 1.428362579345703, + "step": 6700 + }, + { + "epoch": 14.286014721345952, + "grad_norm": 0.1767681986093521, + "learning_rate": 4.2858193277310926e-05, + "loss": 1.4247616577148436, + "step": 6800 + }, + { + "epoch": 14.496319663512093, + "grad_norm": 0.17670001089572906, + "learning_rate": 4.2753151260504206e-05, + "loss": 1.4254454040527345, + "step": 6900 + }, + { + "epoch": 14.706624605678233, + "grad_norm": 0.1740790754556656, + "learning_rate": 4.2648109243697485e-05, + "loss": 1.4258729553222655, + "step": 7000 + }, + { + "epoch": 14.916929547844374, + "grad_norm": 0.1759176403284073, + "learning_rate": 4.254306722689076e-05, + "loss": 1.429442138671875, + "step": 7100 + }, + { + "epoch": 15.126182965299684, + "grad_norm": 0.17811505496501923, + "learning_rate": 4.2438025210084037e-05, + "loss": 1.4193470764160157, + "step": 7200 + }, + { + "epoch": 15.336487907465825, + "grad_norm": 0.1877354234457016, + "learning_rate": 4.2332983193277316e-05, + "loss": 1.4145277404785157, + "step": 7300 + }, + { + "epoch": 15.546792849631967, + "grad_norm": 0.18199266493320465, + "learning_rate": 4.2227941176470595e-05, + "loss": 1.4196495056152343, + "step": 7400 + }, + { + "epoch": 15.757097791798108, + "grad_norm": 0.18197669088840485, + "learning_rate": 4.212289915966387e-05, + "loss": 1.418301544189453, + "step": 7500 + }, + { + "epoch": 15.967402733964247, + "grad_norm": 0.1789412796497345, + "learning_rate": 4.201785714285714e-05, + "loss": 1.4207553100585937, + "step": 7600 + }, + { + "epoch": 16.176656151419557, + "grad_norm": 0.19073587656021118, + "learning_rate": 4.191281512605042e-05, + "loss": 1.405756072998047, + "step": 7700 + }, + { + "epoch": 16.3869610935857, + "grad_norm": 0.20197375118732452, + "learning_rate": 4.18077731092437e-05, + "loss": 1.4052299499511718, + "step": 7800 + }, + { + "epoch": 16.59726603575184, + "grad_norm": 0.19041137397289276, + "learning_rate": 4.170273109243698e-05, + "loss": 1.4102354431152344, + "step": 7900 + }, + { + "epoch": 16.80757097791798, + "grad_norm": 0.18918046355247498, + "learning_rate": 4.159768907563025e-05, + "loss": 1.4105937194824218, + "step": 8000 + }, + { + "epoch": 17.01682439537329, + "grad_norm": 0.20001663267612457, + "learning_rate": 4.149264705882353e-05, + "loss": 1.4125469970703124, + "step": 8100 + }, + { + "epoch": 17.22712933753943, + "grad_norm": 0.20373570919036865, + "learning_rate": 4.138760504201681e-05, + "loss": 1.3912005615234375, + "step": 8200 + }, + { + "epoch": 17.437434279705574, + "grad_norm": 0.21228203177452087, + "learning_rate": 4.128256302521009e-05, + "loss": 1.400099334716797, + "step": 8300 + }, + { + "epoch": 17.647739221871714, + "grad_norm": 0.19748076796531677, + "learning_rate": 4.117752100840336e-05, + "loss": 1.3983584594726564, + "step": 8400 + }, + { + "epoch": 17.858044164037857, + "grad_norm": 0.19849108159542084, + "learning_rate": 4.107247899159664e-05, + "loss": 1.4034251403808593, + "step": 8500 + }, + { + "epoch": 18.067297581493165, + "grad_norm": 0.20575450360774994, + "learning_rate": 4.096743697478992e-05, + "loss": 1.3967425537109375, + "step": 8600 + }, + { + "epoch": 18.277602523659304, + "grad_norm": 0.21221311390399933, + "learning_rate": 4.08623949579832e-05, + "loss": 1.3828977966308593, + "step": 8700 + }, + { + "epoch": 18.487907465825447, + "grad_norm": 0.21134966611862183, + "learning_rate": 4.075735294117648e-05, + "loss": 1.3854733276367188, + "step": 8800 + }, + { + "epoch": 18.698212407991587, + "grad_norm": 0.22016377747058868, + "learning_rate": 4.065231092436975e-05, + "loss": 1.3901968383789063, + "step": 8900 + }, + { + "epoch": 18.90851735015773, + "grad_norm": 0.21417804062366486, + "learning_rate": 4.054726890756303e-05, + "loss": 1.393634033203125, + "step": 9000 + }, + { + "epoch": 19.117770767613038, + "grad_norm": 0.22256560623645782, + "learning_rate": 4.04422268907563e-05, + "loss": 1.3783042907714844, + "step": 9100 + }, + { + "epoch": 19.32807570977918, + "grad_norm": 0.22738981246948242, + "learning_rate": 4.033718487394958e-05, + "loss": 1.370293426513672, + "step": 9200 + }, + { + "epoch": 19.53838065194532, + "grad_norm": 0.22241266071796417, + "learning_rate": 4.023214285714286e-05, + "loss": 1.3737275695800781, + "step": 9300 + }, + { + "epoch": 19.74868559411146, + "grad_norm": 0.23391330242156982, + "learning_rate": 4.012710084033613e-05, + "loss": 1.377355194091797, + "step": 9400 + }, + { + "epoch": 19.958990536277604, + "grad_norm": 0.22519543766975403, + "learning_rate": 4.002205882352941e-05, + "loss": 1.3812960815429687, + "step": 9500 + }, + { + "epoch": 20.16824395373291, + "grad_norm": 0.24074196815490723, + "learning_rate": 3.991701680672269e-05, + "loss": 1.3570118713378907, + "step": 9600 + }, + { + "epoch": 20.378548895899055, + "grad_norm": 0.24606694281101227, + "learning_rate": 3.981197478991597e-05, + "loss": 1.3554267883300781, + "step": 9700 + }, + { + "epoch": 20.588853838065194, + "grad_norm": 0.23913830518722534, + "learning_rate": 3.970693277310924e-05, + "loss": 1.3621504211425781, + "step": 9800 + }, + { + "epoch": 20.799158780231334, + "grad_norm": 0.2383037805557251, + "learning_rate": 3.960189075630252e-05, + "loss": 1.3660731506347656, + "step": 9900 + }, + { + "epoch": 21.008412197686646, + "grad_norm": 0.241073340177536, + "learning_rate": 3.94968487394958e-05, + "loss": 1.3653842163085939, + "step": 10000 + }, + { + "epoch": 21.218717139852785, + "grad_norm": 0.25740981101989746, + "learning_rate": 3.939180672268908e-05, + "loss": 1.3331489562988281, + "step": 10100 + }, + { + "epoch": 21.42902208201893, + "grad_norm": 0.25830078125, + "learning_rate": 3.928676470588235e-05, + "loss": 1.3397677612304688, + "step": 10200 + }, + { + "epoch": 21.639327024185068, + "grad_norm": 0.26326829195022583, + "learning_rate": 3.918172268907563e-05, + "loss": 1.3485836791992187, + "step": 10300 + }, + { + "epoch": 21.84963196635121, + "grad_norm": 0.26259171962738037, + "learning_rate": 3.907668067226891e-05, + "loss": 1.3472573852539063, + "step": 10400 + }, + { + "epoch": 22.05888538380652, + "grad_norm": 0.27395525574684143, + "learning_rate": 3.897163865546219e-05, + "loss": 1.3426994323730468, + "step": 10500 + }, + { + "epoch": 22.26919032597266, + "grad_norm": 0.2820175290107727, + "learning_rate": 3.8866596638655463e-05, + "loss": 1.3179571533203125, + "step": 10600 + }, + { + "epoch": 22.479495268138802, + "grad_norm": 0.2815999984741211, + "learning_rate": 3.8761554621848736e-05, + "loss": 1.3242898559570313, + "step": 10700 + }, + { + "epoch": 22.68980021030494, + "grad_norm": 0.2788920998573303, + "learning_rate": 3.8656512605042015e-05, + "loss": 1.328133087158203, + "step": 10800 + }, + { + "epoch": 22.900105152471085, + "grad_norm": 0.2880179286003113, + "learning_rate": 3.8551470588235294e-05, + "loss": 1.3323233032226562, + "step": 10900 + }, + { + "epoch": 23.109358569926393, + "grad_norm": 0.29323825240135193, + "learning_rate": 3.8446428571428574e-05, + "loss": 1.3124215698242188, + "step": 11000 + }, + { + "epoch": 23.319663512092536, + "grad_norm": 0.3037724196910858, + "learning_rate": 3.834138655462185e-05, + "loss": 1.300673370361328, + "step": 11100 + }, + { + "epoch": 23.529968454258675, + "grad_norm": 0.3019108772277832, + "learning_rate": 3.8236344537815125e-05, + "loss": 1.3033621215820312, + "step": 11200 + }, + { + "epoch": 23.740273396424815, + "grad_norm": 0.3141040503978729, + "learning_rate": 3.8131302521008405e-05, + "loss": 1.3118415832519532, + "step": 11300 + }, + { + "epoch": 23.950578338590958, + "grad_norm": 0.305362731218338, + "learning_rate": 3.8026260504201684e-05, + "loss": 1.3120425415039063, + "step": 11400 + }, + { + "epoch": 24.159831756046266, + "grad_norm": 0.3149303197860718, + "learning_rate": 3.792121848739496e-05, + "loss": 1.281750946044922, + "step": 11500 + }, + { + "epoch": 24.37013669821241, + "grad_norm": 0.31983524560928345, + "learning_rate": 3.7816176470588236e-05, + "loss": 1.2786111450195312, + "step": 11600 + }, + { + "epoch": 24.58044164037855, + "grad_norm": 0.32351240515708923, + "learning_rate": 3.7711134453781515e-05, + "loss": 1.284888916015625, + "step": 11700 + }, + { + "epoch": 24.79074658254469, + "grad_norm": 0.3239966034889221, + "learning_rate": 3.7606092436974794e-05, + "loss": 1.2899176025390624, + "step": 11800 + }, + { + "epoch": 25.0, + "grad_norm": 0.49487531185150146, + "learning_rate": 3.7501050420168073e-05, + "loss": 1.2903105163574218, + "step": 11900 + }, + { + "epoch": 25.21030494216614, + "grad_norm": 0.343091756105423, + "learning_rate": 3.7396008403361346e-05, + "loss": 1.24728271484375, + "step": 12000 + }, + { + "epoch": 25.420609884332283, + "grad_norm": 0.3502146899700165, + "learning_rate": 3.729096638655462e-05, + "loss": 1.2573788452148438, + "step": 12100 + }, + { + "epoch": 25.630914826498422, + "grad_norm": 0.34780803322792053, + "learning_rate": 3.71859243697479e-05, + "loss": 1.259660186767578, + "step": 12200 + }, + { + "epoch": 25.841219768664562, + "grad_norm": 0.3617474436759949, + "learning_rate": 3.708088235294118e-05, + "loss": 1.267321548461914, + "step": 12300 + }, + { + "epoch": 26.050473186119874, + "grad_norm": 0.36151477694511414, + "learning_rate": 3.6975840336134456e-05, + "loss": 1.2569818878173828, + "step": 12400 + }, + { + "epoch": 26.260778128286013, + "grad_norm": 0.3706369400024414, + "learning_rate": 3.687079831932773e-05, + "loss": 1.2217762756347657, + "step": 12500 + }, + { + "epoch": 26.471083070452156, + "grad_norm": 0.36876797676086426, + "learning_rate": 3.676575630252101e-05, + "loss": 1.2311412048339845, + "step": 12600 + }, + { + "epoch": 26.681388012618296, + "grad_norm": 0.37329521775245667, + "learning_rate": 3.666071428571429e-05, + "loss": 1.23805908203125, + "step": 12700 + }, + { + "epoch": 26.89169295478444, + "grad_norm": 0.3803170919418335, + "learning_rate": 3.6555672268907566e-05, + "loss": 1.2423350524902343, + "step": 12800 + }, + { + "epoch": 27.100946372239747, + "grad_norm": 0.3833712637424469, + "learning_rate": 3.6450630252100846e-05, + "loss": 1.222099609375, + "step": 12900 + }, + { + "epoch": 27.31125131440589, + "grad_norm": 0.3987831771373749, + "learning_rate": 3.634558823529412e-05, + "loss": 1.1973797607421874, + "step": 13000 + }, + { + "epoch": 27.52155625657203, + "grad_norm": 0.39121338725090027, + "learning_rate": 3.62405462184874e-05, + "loss": 1.206004409790039, + "step": 13100 + }, + { + "epoch": 27.73186119873817, + "grad_norm": 0.4020472764968872, + "learning_rate": 3.613550420168068e-05, + "loss": 1.2129373168945312, + "step": 13200 + }, + { + "epoch": 27.942166140904312, + "grad_norm": 0.4015159606933594, + "learning_rate": 3.6030462184873956e-05, + "loss": 1.2179686737060547, + "step": 13300 + }, + { + "epoch": 28.15141955835962, + "grad_norm": 0.3998790681362152, + "learning_rate": 3.592542016806723e-05, + "loss": 1.1833483123779296, + "step": 13400 + }, + { + "epoch": 28.361724500525764, + "grad_norm": 0.4190026819705963, + "learning_rate": 3.582037815126051e-05, + "loss": 1.1737586975097656, + "step": 13500 + }, + { + "epoch": 28.572029442691903, + "grad_norm": 0.4131736159324646, + "learning_rate": 3.571533613445378e-05, + "loss": 1.1806912231445312, + "step": 13600 + }, + { + "epoch": 28.782334384858043, + "grad_norm": 0.4250866174697876, + "learning_rate": 3.561029411764706e-05, + "loss": 1.1913446044921876, + "step": 13700 + }, + { + "epoch": 28.992639327024186, + "grad_norm": 0.4264129400253296, + "learning_rate": 3.550525210084034e-05, + "loss": 1.1878318786621094, + "step": 13800 + }, + { + "epoch": 29.201892744479494, + "grad_norm": 0.43633338809013367, + "learning_rate": 3.540021008403361e-05, + "loss": 1.1386358642578125, + "step": 13900 + }, + { + "epoch": 29.412197686645637, + "grad_norm": 0.4486881494522095, + "learning_rate": 3.529516806722689e-05, + "loss": 1.1477174377441406, + "step": 14000 + }, + { + "epoch": 29.622502628811777, + "grad_norm": 0.4420314133167267, + "learning_rate": 3.519012605042017e-05, + "loss": 1.1530896759033202, + "step": 14100 + }, + { + "epoch": 29.832807570977916, + "grad_norm": 0.4598003327846527, + "learning_rate": 3.508508403361345e-05, + "loss": 1.16252197265625, + "step": 14200 + }, + { + "epoch": 30.042060988433228, + "grad_norm": 0.44520533084869385, + "learning_rate": 3.498004201680672e-05, + "loss": 1.1551103973388672, + "step": 14300 + }, + { + "epoch": 30.252365930599368, + "grad_norm": 0.45871588587760925, + "learning_rate": 3.4875e-05, + "loss": 1.107753448486328, + "step": 14400 + }, + { + "epoch": 30.46267087276551, + "grad_norm": 0.46063199639320374, + "learning_rate": 3.476995798319328e-05, + "loss": 1.1182296752929688, + "step": 14500 + }, + { + "epoch": 30.67297581493165, + "grad_norm": 0.4760204553604126, + "learning_rate": 3.466491596638656e-05, + "loss": 1.129236373901367, + "step": 14600 + }, + { + "epoch": 30.883280757097793, + "grad_norm": 0.47249314188957214, + "learning_rate": 3.455987394957984e-05, + "loss": 1.1352229309082031, + "step": 14700 + }, + { + "epoch": 31.0925341745531, + "grad_norm": 0.4624006450176239, + "learning_rate": 3.445483193277311e-05, + "loss": 1.1082867431640624, + "step": 14800 + }, + { + "epoch": 31.302839116719245, + "grad_norm": 0.4787958264350891, + "learning_rate": 3.434978991596639e-05, + "loss": 1.0818411254882812, + "step": 14900 + }, + { + "epoch": 31.513144058885384, + "grad_norm": 0.4875246286392212, + "learning_rate": 3.424474789915967e-05, + "loss": 1.092553939819336, + "step": 15000 + }, + { + "epoch": 31.723449001051524, + "grad_norm": 0.48742467164993286, + "learning_rate": 3.413970588235294e-05, + "loss": 1.1002989959716798, + "step": 15100 + }, + { + "epoch": 31.933753943217667, + "grad_norm": 0.5014126896858215, + "learning_rate": 3.403466386554622e-05, + "loss": 1.1067331695556641, + "step": 15200 + }, + { + "epoch": 32.143007360672975, + "grad_norm": 0.48793110251426697, + "learning_rate": 3.3929621848739494e-05, + "loss": 1.0649752807617188, + "step": 15300 + }, + { + "epoch": 32.353312302839115, + "grad_norm": 0.5064884424209595, + "learning_rate": 3.382457983193277e-05, + "loss": 1.0489683532714844, + "step": 15400 + }, + { + "epoch": 32.56361724500526, + "grad_norm": 0.5118729472160339, + "learning_rate": 3.371953781512605e-05, + "loss": 1.0648185729980468, + "step": 15500 + }, + { + "epoch": 32.7739221871714, + "grad_norm": 0.5236688852310181, + "learning_rate": 3.361449579831933e-05, + "loss": 1.0743647766113282, + "step": 15600 + }, + { + "epoch": 32.98422712933754, + "grad_norm": 0.5397860407829285, + "learning_rate": 3.3509453781512604e-05, + "loss": 1.080048828125, + "step": 15700 + }, + { + "epoch": 33.19348054679285, + "grad_norm": 0.5270755290985107, + "learning_rate": 3.340441176470588e-05, + "loss": 1.0228548431396485, + "step": 15800 + }, + { + "epoch": 33.40378548895899, + "grad_norm": 0.5429406762123108, + "learning_rate": 3.329936974789916e-05, + "loss": 1.028949966430664, + "step": 15900 + }, + { + "epoch": 33.614090431125135, + "grad_norm": 0.5323997735977173, + "learning_rate": 3.319432773109244e-05, + "loss": 1.037523956298828, + "step": 16000 + }, + { + "epoch": 33.824395373291274, + "grad_norm": 0.5385149717330933, + "learning_rate": 3.3090336134453784e-05, + "loss": 1.0431160736083984, + "step": 16100 + }, + { + "epoch": 34.03364879074658, + "grad_norm": 0.5089665651321411, + "learning_rate": 3.2986344537815127e-05, + "loss": 1.0349723815917968, + "step": 16200 + }, + { + "epoch": 34.24395373291272, + "grad_norm": 0.5455434918403625, + "learning_rate": 3.2881302521008406e-05, + "loss": 0.988803482055664, + "step": 16300 + }, + { + "epoch": 34.45425867507886, + "grad_norm": 0.5569856762886047, + "learning_rate": 3.2776260504201685e-05, + "loss": 1.0031266021728515, + "step": 16400 + }, + { + "epoch": 34.66456361724501, + "grad_norm": 0.5644022226333618, + "learning_rate": 3.2671218487394964e-05, + "loss": 1.0083402252197267, + "step": 16500 + }, + { + "epoch": 34.87486855941115, + "grad_norm": 0.5685406923294067, + "learning_rate": 3.256617647058824e-05, + "loss": 1.0177439117431641, + "step": 16600 + }, + { + "epoch": 35.084121976866456, + "grad_norm": 0.543632447719574, + "learning_rate": 3.2461134453781516e-05, + "loss": 0.9930455780029297, + "step": 16700 + }, + { + "epoch": 35.294426919032595, + "grad_norm": 0.5612316727638245, + "learning_rate": 3.2356092436974795e-05, + "loss": 0.9650897216796875, + "step": 16800 + }, + { + "epoch": 35.504731861198735, + "grad_norm": 0.5759446024894714, + "learning_rate": 3.225105042016807e-05, + "loss": 0.973653564453125, + "step": 16900 + }, + { + "epoch": 35.71503680336488, + "grad_norm": 0.574255645275116, + "learning_rate": 3.214600840336135e-05, + "loss": 0.981424560546875, + "step": 17000 + }, + { + "epoch": 35.92534174553102, + "grad_norm": 0.5851606726646423, + "learning_rate": 3.204096638655462e-05, + "loss": 0.991123046875, + "step": 17100 + }, + { + "epoch": 36.13459516298633, + "grad_norm": 0.5589666366577148, + "learning_rate": 3.19359243697479e-05, + "loss": 0.9481909942626953, + "step": 17200 + }, + { + "epoch": 36.34490010515247, + "grad_norm": 0.5968824625015259, + "learning_rate": 3.183088235294118e-05, + "loss": 0.9365898895263672, + "step": 17300 + }, + { + "epoch": 36.55520504731861, + "grad_norm": 0.5998508930206299, + "learning_rate": 3.172584033613446e-05, + "loss": 0.9492893218994141, + "step": 17400 + }, + { + "epoch": 36.765509989484755, + "grad_norm": 0.6060558557510376, + "learning_rate": 3.162079831932773e-05, + "loss": 0.9547823333740234, + "step": 17500 + }, + { + "epoch": 36.975814931650895, + "grad_norm": 0.589341402053833, + "learning_rate": 3.151575630252101e-05, + "loss": 0.9626276397705078, + "step": 17600 + }, + { + "epoch": 37.1850683491062, + "grad_norm": 0.5891321897506714, + "learning_rate": 3.141071428571429e-05, + "loss": 0.9065424346923828, + "step": 17700 + }, + { + "epoch": 37.39537329127234, + "grad_norm": 0.5880729556083679, + "learning_rate": 3.130567226890757e-05, + "loss": 0.9107749938964844, + "step": 17800 + }, + { + "epoch": 37.60567823343849, + "grad_norm": 0.6077774167060852, + "learning_rate": 3.120063025210084e-05, + "loss": 0.9193459320068359, + "step": 17900 + }, + { + "epoch": 37.81598317560463, + "grad_norm": 0.6189863681793213, + "learning_rate": 3.109558823529412e-05, + "loss": 0.9286084747314454, + "step": 18000 + }, + { + "epoch": 38.02523659305994, + "grad_norm": 0.5724475383758545, + "learning_rate": 3.09905462184874e-05, + "loss": 0.9282203674316406, + "step": 18100 + }, + { + "epoch": 38.235541535226076, + "grad_norm": 0.5952550768852234, + "learning_rate": 3.088550420168068e-05, + "loss": 0.8734053039550781, + "step": 18200 + }, + { + "epoch": 38.445846477392216, + "grad_norm": 0.5967536568641663, + "learning_rate": 3.078046218487395e-05, + "loss": 0.886033935546875, + "step": 18300 + }, + { + "epoch": 38.65615141955836, + "grad_norm": 0.6298649311065674, + "learning_rate": 3.067542016806722e-05, + "loss": 0.8977913665771484, + "step": 18400 + }, + { + "epoch": 38.8664563617245, + "grad_norm": 0.6457948684692383, + "learning_rate": 3.05703781512605e-05, + "loss": 0.9048082733154297, + "step": 18500 + }, + { + "epoch": 39.07570977917981, + "grad_norm": 0.6172012090682983, + "learning_rate": 3.046533613445378e-05, + "loss": 0.8857656860351563, + "step": 18600 + }, + { + "epoch": 39.28601472134595, + "grad_norm": 0.5979504585266113, + "learning_rate": 3.036029411764706e-05, + "loss": 0.8502845001220704, + "step": 18700 + }, + { + "epoch": 39.49631966351209, + "grad_norm": 0.6284430623054504, + "learning_rate": 3.0255252100840336e-05, + "loss": 0.8602873229980469, + "step": 18800 + }, + { + "epoch": 39.706624605678236, + "grad_norm": 0.6330845355987549, + "learning_rate": 3.0150210084033616e-05, + "loss": 0.8690576934814453, + "step": 18900 + }, + { + "epoch": 39.916929547844376, + "grad_norm": 0.6465399861335754, + "learning_rate": 3.004516806722689e-05, + "loss": 0.8787310791015625, + "step": 19000 + }, + { + "epoch": 40.126182965299684, + "grad_norm": 0.6255329251289368, + "learning_rate": 2.994117647058824e-05, + "loss": 0.84158203125, + "step": 19100 + }, + { + "epoch": 40.33648790746582, + "grad_norm": 0.6304967999458313, + "learning_rate": 2.983613445378151e-05, + "loss": 0.8283135223388672, + "step": 19200 + }, + { + "epoch": 40.54679284963196, + "grad_norm": 0.6366279125213623, + "learning_rate": 2.973109243697479e-05, + "loss": 0.8385968780517579, + "step": 19300 + }, + { + "epoch": 40.75709779179811, + "grad_norm": 0.6407002210617065, + "learning_rate": 2.9626050420168065e-05, + "loss": 0.8465004730224609, + "step": 19400 + }, + { + "epoch": 40.96740273396425, + "grad_norm": 0.6582015156745911, + "learning_rate": 2.9521008403361344e-05, + "loss": 0.8523696136474609, + "step": 19500 + }, + { + "epoch": 41.17665615141956, + "grad_norm": 0.6326037645339966, + "learning_rate": 2.9415966386554624e-05, + "loss": 0.8025535583496094, + "step": 19600 + }, + { + "epoch": 41.3869610935857, + "grad_norm": 0.631605863571167, + "learning_rate": 2.93109243697479e-05, + "loss": 0.8077165222167969, + "step": 19700 + }, + { + "epoch": 41.597266035751844, + "grad_norm": 0.6400684118270874, + "learning_rate": 2.920588235294118e-05, + "loss": 0.8162235260009766, + "step": 19800 + }, + { + "epoch": 41.80757097791798, + "grad_norm": 0.6499695181846619, + "learning_rate": 2.9100840336134455e-05, + "loss": 0.8243218231201171, + "step": 19900 + }, + { + "epoch": 42.01682439537329, + "grad_norm": 0.6392955183982849, + "learning_rate": 2.8995798319327734e-05, + "loss": 0.8244134521484375, + "step": 20000 + }, + { + "epoch": 42.22712933753943, + "grad_norm": 0.6429536938667297, + "learning_rate": 2.889075630252101e-05, + "loss": 0.7711881256103515, + "step": 20100 + }, + { + "epoch": 42.43743427970557, + "grad_norm": 0.6592206358909607, + "learning_rate": 2.878571428571429e-05, + "loss": 0.7841451263427734, + "step": 20200 + }, + { + "epoch": 42.64773922187172, + "grad_norm": 0.6881083846092224, + "learning_rate": 2.8680672268907565e-05, + "loss": 0.792880859375, + "step": 20300 + }, + { + "epoch": 42.85804416403786, + "grad_norm": 0.6662302017211914, + "learning_rate": 2.8575630252100844e-05, + "loss": 0.8001659393310547, + "step": 20400 + }, + { + "epoch": 43.067297581493165, + "grad_norm": 0.6177626252174377, + "learning_rate": 2.847058823529412e-05, + "loss": 0.7870485687255859, + "step": 20500 + }, + { + "epoch": 43.277602523659304, + "grad_norm": 0.6681060194969177, + "learning_rate": 2.83655462184874e-05, + "loss": 0.7512457275390625, + "step": 20600 + }, + { + "epoch": 43.487907465825444, + "grad_norm": 0.669675886631012, + "learning_rate": 2.826050420168067e-05, + "loss": 0.7591960144042968, + "step": 20700 + }, + { + "epoch": 43.69821240799159, + "grad_norm": 0.7097092866897583, + "learning_rate": 2.8155462184873948e-05, + "loss": 0.7737602233886719, + "step": 20800 + }, + { + "epoch": 43.90851735015773, + "grad_norm": 0.6951079964637756, + "learning_rate": 2.8050420168067227e-05, + "loss": 0.7815242767333984, + "step": 20900 + }, + { + "epoch": 44.11777076761304, + "grad_norm": 0.639824390411377, + "learning_rate": 2.7945378151260503e-05, + "loss": 0.7512903594970703, + "step": 21000 + }, + { + "epoch": 44.32807570977918, + "grad_norm": 0.67326819896698, + "learning_rate": 2.7840336134453782e-05, + "loss": 0.7329978179931641, + "step": 21100 + }, + { + "epoch": 44.53838065194532, + "grad_norm": 0.6938571333885193, + "learning_rate": 2.7735294117647058e-05, + "loss": 0.7421668243408203, + "step": 21200 + }, + { + "epoch": 44.748685594111464, + "grad_norm": 0.6845099925994873, + "learning_rate": 2.7630252100840337e-05, + "loss": 0.7509217071533203, + "step": 21300 + }, + { + "epoch": 44.958990536277604, + "grad_norm": 0.681825578212738, + "learning_rate": 2.7525210084033616e-05, + "loss": 0.7620004272460937, + "step": 21400 + }, + { + "epoch": 45.16824395373291, + "grad_norm": 0.6556856036186218, + "learning_rate": 2.7421218487394962e-05, + "loss": 0.7184288787841797, + "step": 21500 + }, + { + "epoch": 45.37854889589905, + "grad_norm": 0.6386471390724182, + "learning_rate": 2.7316176470588235e-05, + "loss": 0.7161962127685547, + "step": 21600 + }, + { + "epoch": 45.5888538380652, + "grad_norm": 0.6947113275527954, + "learning_rate": 2.721113445378151e-05, + "loss": 0.7244486999511719, + "step": 21700 + }, + { + "epoch": 45.79915878023134, + "grad_norm": 0.6741232872009277, + "learning_rate": 2.710609243697479e-05, + "loss": 0.7308968353271484, + "step": 21800 + }, + { + "epoch": 46.008412197686646, + "grad_norm": 0.6631771326065063, + "learning_rate": 2.7001050420168066e-05, + "loss": 0.7323504638671875, + "step": 21900 + }, + { + "epoch": 46.218717139852785, + "grad_norm": 0.6702309250831604, + "learning_rate": 2.6896008403361345e-05, + "loss": 0.6865713500976562, + "step": 22000 + }, + { + "epoch": 46.429022082018925, + "grad_norm": 0.6711138486862183, + "learning_rate": 2.679096638655462e-05, + "loss": 0.697294921875, + "step": 22100 + }, + { + "epoch": 46.63932702418507, + "grad_norm": 0.7067892551422119, + "learning_rate": 2.66859243697479e-05, + "loss": 0.70609619140625, + "step": 22200 + }, + { + "epoch": 46.84963196635121, + "grad_norm": 0.6743476390838623, + "learning_rate": 2.658088235294118e-05, + "loss": 0.7116059112548828, + "step": 22300 + }, + { + "epoch": 47.05888538380652, + "grad_norm": 0.642842710018158, + "learning_rate": 2.6475840336134455e-05, + "loss": 0.7024728393554688, + "step": 22400 + }, + { + "epoch": 47.26919032597266, + "grad_norm": 0.6852782368659973, + "learning_rate": 2.6370798319327734e-05, + "loss": 0.6698217010498047, + "step": 22500 + }, + { + "epoch": 47.4794952681388, + "grad_norm": 0.6817244291305542, + "learning_rate": 2.626575630252101e-05, + "loss": 0.6796794891357422, + "step": 22600 + }, + { + "epoch": 47.689800210304945, + "grad_norm": 0.665703535079956, + "learning_rate": 2.616071428571429e-05, + "loss": 0.689930191040039, + "step": 22700 + }, + { + "epoch": 47.900105152471085, + "grad_norm": 0.7286046147346497, + "learning_rate": 2.6055672268907565e-05, + "loss": 0.6968262481689453, + "step": 22800 + }, + { + "epoch": 48.10935856992639, + "grad_norm": 0.6568066477775574, + "learning_rate": 2.5950630252100845e-05, + "loss": 0.6714718627929688, + "step": 22900 + }, + { + "epoch": 48.31966351209253, + "grad_norm": 0.6909933090209961, + "learning_rate": 2.584558823529412e-05, + "loss": 0.6521046447753907, + "step": 23000 + }, + { + "epoch": 48.52996845425867, + "grad_norm": 0.6730957627296448, + "learning_rate": 2.5740546218487393e-05, + "loss": 0.6635847473144532, + "step": 23100 + }, + { + "epoch": 48.74027339642482, + "grad_norm": 0.7137960195541382, + "learning_rate": 2.5635504201680672e-05, + "loss": 0.6703518676757813, + "step": 23200 + }, + { + "epoch": 48.95057833859096, + "grad_norm": 0.7035015225410461, + "learning_rate": 2.5530462184873948e-05, + "loss": 0.678240737915039, + "step": 23300 + }, + { + "epoch": 49.159831756046266, + "grad_norm": 0.6768185496330261, + "learning_rate": 2.5425420168067227e-05, + "loss": 0.6413292694091797, + "step": 23400 + }, + { + "epoch": 49.370136698212406, + "grad_norm": 0.6941663026809692, + "learning_rate": 2.5320378151260503e-05, + "loss": 0.6415236663818359, + "step": 23500 + }, + { + "epoch": 49.58044164037855, + "grad_norm": 0.722435712814331, + "learning_rate": 2.5215336134453782e-05, + "loss": 0.6499783325195313, + "step": 23600 + }, + { + "epoch": 49.79074658254469, + "grad_norm": 0.7071043252944946, + "learning_rate": 2.511029411764706e-05, + "loss": 0.6546615600585938, + "step": 23700 + }, + { + "epoch": 50.0, + "grad_norm": Infinity, + "learning_rate": 2.5005252100840338e-05, + "loss": 0.6589860534667968, + "step": 23800 + }, + { + "epoch": 50.21030494216614, + "grad_norm": 0.6747011542320251, + "learning_rate": 2.490126050420168e-05, + "loss": 0.6164878845214844, + "step": 23900 + }, + { + "epoch": 50.42060988433228, + "grad_norm": 0.6953312754631042, + "learning_rate": 2.479621848739496e-05, + "loss": 0.6259209060668945, + "step": 24000 + }, + { + "epoch": 50.630914826498426, + "grad_norm": 0.6829053163528442, + "learning_rate": 2.469117647058824e-05, + "loss": 0.6306737518310547, + "step": 24100 + }, + { + "epoch": 50.841219768664565, + "grad_norm": 0.7105507850646973, + "learning_rate": 2.4586134453781514e-05, + "loss": 0.6402838897705078, + "step": 24200 + }, + { + "epoch": 51.05047318611987, + "grad_norm": 0.6592356562614441, + "learning_rate": 2.4481092436974794e-05, + "loss": 0.6321442413330078, + "step": 24300 + }, + { + "epoch": 51.26077812828601, + "grad_norm": 0.6957094073295593, + "learning_rate": 2.4376050420168066e-05, + "loss": 0.6060052108764649, + "step": 24400 + }, + { + "epoch": 51.47108307045215, + "grad_norm": 0.6904229521751404, + "learning_rate": 2.4271008403361345e-05, + "loss": 0.6094649505615234, + "step": 24500 + }, + { + "epoch": 51.6813880126183, + "grad_norm": 0.7173294425010681, + "learning_rate": 2.416596638655462e-05, + "loss": 0.6187096023559571, + "step": 24600 + }, + { + "epoch": 51.89169295478444, + "grad_norm": 0.7143198251724243, + "learning_rate": 2.40609243697479e-05, + "loss": 0.6268323516845703, + "step": 24700 + }, + { + "epoch": 52.10094637223975, + "grad_norm": 0.6786720752716064, + "learning_rate": 2.3955882352941176e-05, + "loss": 0.6083223342895507, + "step": 24800 + }, + { + "epoch": 52.31125131440589, + "grad_norm": 0.6900521516799927, + "learning_rate": 2.3850840336134456e-05, + "loss": 0.5922721862792969, + "step": 24900 + }, + { + "epoch": 52.521556256572026, + "grad_norm": 0.7288543581962585, + "learning_rate": 2.3745798319327735e-05, + "loss": 0.5982749938964844, + "step": 25000 + }, + { + "epoch": 52.73186119873817, + "grad_norm": 0.704078197479248, + "learning_rate": 2.3640756302521007e-05, + "loss": 0.6041379547119141, + "step": 25100 + }, + { + "epoch": 52.94216614090431, + "grad_norm": 0.706262469291687, + "learning_rate": 2.3535714285714287e-05, + "loss": 0.6083390808105469, + "step": 25200 + }, + { + "epoch": 53.15141955835962, + "grad_norm": 0.6775776743888855, + "learning_rate": 2.3430672268907563e-05, + "loss": 0.5816435623168945, + "step": 25300 + }, + { + "epoch": 53.36172450052576, + "grad_norm": 0.7253007888793945, + "learning_rate": 2.3325630252100842e-05, + "loss": 0.58095458984375, + "step": 25400 + }, + { + "epoch": 53.5720294426919, + "grad_norm": 0.7169889211654663, + "learning_rate": 2.3220588235294118e-05, + "loss": 0.5878105163574219, + "step": 25500 + }, + { + "epoch": 53.782334384858046, + "grad_norm": 0.6921281814575195, + "learning_rate": 2.3115546218487397e-05, + "loss": 0.5918175506591797, + "step": 25600 + }, + { + "epoch": 53.992639327024186, + "grad_norm": 0.7570663094520569, + "learning_rate": 2.3010504201680673e-05, + "loss": 0.5992276000976563, + "step": 25700 + }, + { + "epoch": 54.201892744479494, + "grad_norm": 0.7045475840568542, + "learning_rate": 2.2905462184873952e-05, + "loss": 0.563626937866211, + "step": 25800 + }, + { + "epoch": 54.412197686645634, + "grad_norm": 0.7311537861824036, + "learning_rate": 2.2800420168067228e-05, + "loss": 0.5649079513549805, + "step": 25900 + }, + { + "epoch": 54.62250262881178, + "grad_norm": 0.7197280526161194, + "learning_rate": 2.2695378151260504e-05, + "loss": 0.5740287017822265, + "step": 26000 + }, + { + "epoch": 54.83280757097792, + "grad_norm": 0.7047930359840393, + "learning_rate": 2.2590336134453783e-05, + "loss": 0.5799992752075195, + "step": 26100 + }, + { + "epoch": 55.04206098843323, + "grad_norm": 0.663329541683197, + "learning_rate": 2.2486344537815125e-05, + "loss": 0.5747824096679688, + "step": 26200 + }, + { + "epoch": 55.25236593059937, + "grad_norm": 0.6825776100158691, + "learning_rate": 2.2381302521008405e-05, + "loss": 0.5511475372314453, + "step": 26300 + }, + { + "epoch": 55.46267087276551, + "grad_norm": 0.7081674337387085, + "learning_rate": 2.227626050420168e-05, + "loss": 0.5568293380737305, + "step": 26400 + }, + { + "epoch": 55.672975814931654, + "grad_norm": 0.6991596221923828, + "learning_rate": 2.217121848739496e-05, + "loss": 0.5623696899414062, + "step": 26500 + }, + { + "epoch": 55.88328075709779, + "grad_norm": 0.7421116828918457, + "learning_rate": 2.2066176470588236e-05, + "loss": 0.5673596572875976, + "step": 26600 + }, + { + "epoch": 56.0925341745531, + "grad_norm": 0.6679620146751404, + "learning_rate": 2.1961134453781515e-05, + "loss": 0.555915298461914, + "step": 26700 + }, + { + "epoch": 56.30283911671924, + "grad_norm": 0.7035086750984192, + "learning_rate": 2.185609243697479e-05, + "loss": 0.5402443313598633, + "step": 26800 + }, + { + "epoch": 56.51314405888538, + "grad_norm": 0.6888571381568909, + "learning_rate": 2.1751050420168067e-05, + "loss": 0.5462953186035157, + "step": 26900 + }, + { + "epoch": 56.72344900105153, + "grad_norm": 0.7356609106063843, + "learning_rate": 2.1646008403361346e-05, + "loss": 0.5512025833129883, + "step": 27000 + }, + { + "epoch": 56.93375394321767, + "grad_norm": 0.7569705247879028, + "learning_rate": 2.1540966386554622e-05, + "loss": 0.5562152481079101, + "step": 27100 + }, + { + "epoch": 57.143007360672975, + "grad_norm": 0.6764115691184998, + "learning_rate": 2.14359243697479e-05, + "loss": 0.5337548065185547, + "step": 27200 + }, + { + "epoch": 57.353312302839115, + "grad_norm": 0.7006810307502747, + "learning_rate": 2.1330882352941177e-05, + "loss": 0.5296073913574219, + "step": 27300 + }, + { + "epoch": 57.56361724500526, + "grad_norm": 0.7158169150352478, + "learning_rate": 2.1225840336134456e-05, + "loss": 0.5382700347900391, + "step": 27400 + }, + { + "epoch": 57.7739221871714, + "grad_norm": 0.7132992148399353, + "learning_rate": 2.1120798319327732e-05, + "loss": 0.5398505783081055, + "step": 27500 + }, + { + "epoch": 57.98422712933754, + "grad_norm": 0.7330942749977112, + "learning_rate": 2.1015756302521008e-05, + "loss": 0.5458747863769531, + "step": 27600 + }, + { + "epoch": 58.19348054679285, + "grad_norm": 0.669278621673584, + "learning_rate": 2.0910714285714287e-05, + "loss": 0.5161695861816407, + "step": 27700 + }, + { + "epoch": 58.40378548895899, + "grad_norm": 0.6958737373352051, + "learning_rate": 2.0805672268907563e-05, + "loss": 0.5201998901367187, + "step": 27800 + }, + { + "epoch": 58.614090431125135, + "grad_norm": 0.6824914813041687, + "learning_rate": 2.0700630252100842e-05, + "loss": 0.5258338928222657, + "step": 27900 + }, + { + "epoch": 58.824395373291274, + "grad_norm": 0.6634467244148254, + "learning_rate": 2.0595588235294118e-05, + "loss": 0.5300619888305664, + "step": 28000 + }, + { + "epoch": 59.03364879074658, + "grad_norm": 0.6863816380500793, + "learning_rate": 2.0490546218487397e-05, + "loss": 0.5283214950561523, + "step": 28100 + }, + { + "epoch": 59.24395373291272, + "grad_norm": 0.7183119654655457, + "learning_rate": 2.0385504201680673e-05, + "loss": 0.506834487915039, + "step": 28200 + }, + { + "epoch": 59.45425867507886, + "grad_norm": 0.7142145037651062, + "learning_rate": 2.028046218487395e-05, + "loss": 0.5117876815795899, + "step": 28300 + }, + { + "epoch": 59.66456361724501, + "grad_norm": 0.7280924916267395, + "learning_rate": 2.017542016806723e-05, + "loss": 0.5153473281860351, + "step": 28400 + }, + { + "epoch": 59.87486855941115, + "grad_norm": 0.693505048751831, + "learning_rate": 2.0070378151260504e-05, + "loss": 0.5219352722167969, + "step": 28500 + }, + { + "epoch": 60.084121976866456, + "grad_norm": 0.6892845034599304, + "learning_rate": 1.9965336134453784e-05, + "loss": 0.5122858810424805, + "step": 28600 + }, + { + "epoch": 60.294426919032595, + "grad_norm": 0.6604379415512085, + "learning_rate": 1.986029411764706e-05, + "loss": 0.49614715576171875, + "step": 28700 + }, + { + "epoch": 60.504731861198735, + "grad_norm": 0.7204891443252563, + "learning_rate": 1.975525210084034e-05, + "loss": 0.5024974822998047, + "step": 28800 + }, + { + "epoch": 60.71503680336488, + "grad_norm": 0.7127634286880493, + "learning_rate": 1.9650210084033615e-05, + "loss": 0.5073120498657226, + "step": 28900 + }, + { + "epoch": 60.92534174553102, + "grad_norm": 0.7359983921051025, + "learning_rate": 1.954516806722689e-05, + "loss": 0.5116232681274414, + "step": 29000 + }, + { + "epoch": 61.13459516298633, + "grad_norm": 0.6893951296806335, + "learning_rate": 1.944012605042017e-05, + "loss": 0.4952814865112305, + "step": 29100 + }, + { + "epoch": 61.34490010515247, + "grad_norm": 0.6849685311317444, + "learning_rate": 1.9335084033613446e-05, + "loss": 0.4899435043334961, + "step": 29200 + }, + { + "epoch": 61.55520504731861, + "grad_norm": 0.7181743383407593, + "learning_rate": 1.9230042016806725e-05, + "loss": 0.4946512985229492, + "step": 29300 + }, + { + "epoch": 61.765509989484755, + "grad_norm": 0.6820606589317322, + "learning_rate": 1.9125e-05, + "loss": 0.49947418212890626, + "step": 29400 + }, + { + "epoch": 61.975814931650895, + "grad_norm": 0.7111321687698364, + "learning_rate": 1.901995798319328e-05, + "loss": 0.5020344543457032, + "step": 29500 + }, + { + "epoch": 62.1850683491062, + "grad_norm": 0.7008198499679565, + "learning_rate": 1.8914915966386556e-05, + "loss": 0.48151485443115233, + "step": 29600 + }, + { + "epoch": 62.39537329127234, + "grad_norm": 0.7171513438224792, + "learning_rate": 1.880987394957983e-05, + "loss": 0.48171932220458985, + "step": 29700 + }, + { + "epoch": 62.60567823343849, + "grad_norm": 0.7375807762145996, + "learning_rate": 1.8704831932773108e-05, + "loss": 0.4873679733276367, + "step": 29800 + }, + { + "epoch": 62.81598317560463, + "grad_norm": 0.6806672811508179, + "learning_rate": 1.8599789915966387e-05, + "loss": 0.4887456130981445, + "step": 29900 + }, + { + "epoch": 63.02523659305994, + "grad_norm": 0.6749327182769775, + "learning_rate": 1.8494747899159666e-05, + "loss": 0.48958889007568357, + "step": 30000 + }, + { + "epoch": 63.235541535226076, + "grad_norm": 0.7122695446014404, + "learning_rate": 1.8389705882352942e-05, + "loss": 0.46849212646484373, + "step": 30100 + }, + { + "epoch": 63.445846477392216, + "grad_norm": 0.6742300987243652, + "learning_rate": 1.8285714285714288e-05, + "loss": 0.4735026550292969, + "step": 30200 + }, + { + "epoch": 63.65615141955836, + "grad_norm": 0.7086833119392395, + "learning_rate": 1.8180672268907564e-05, + "loss": 0.47808189392089845, + "step": 30300 + }, + { + "epoch": 63.8664563617245, + "grad_norm": 0.673115611076355, + "learning_rate": 1.8075630252100843e-05, + "loss": 0.4810390853881836, + "step": 30400 + }, + { + "epoch": 64.07570977917982, + "grad_norm": 0.7166642546653748, + "learning_rate": 1.797058823529412e-05, + "loss": 0.47662986755371095, + "step": 30500 + }, + { + "epoch": 64.28601472134595, + "grad_norm": 0.7239866852760315, + "learning_rate": 1.7865546218487395e-05, + "loss": 0.46368907928466796, + "step": 30600 + }, + { + "epoch": 64.4963196635121, + "grad_norm": 0.6777023077011108, + "learning_rate": 1.776050420168067e-05, + "loss": 0.46869037628173826, + "step": 30700 + }, + { + "epoch": 64.70662460567823, + "grad_norm": 0.7028587460517883, + "learning_rate": 1.765546218487395e-05, + "loss": 0.47153076171875, + "step": 30800 + }, + { + "epoch": 64.91692954784438, + "grad_norm": 0.7220568656921387, + "learning_rate": 1.755042016806723e-05, + "loss": 0.4732553482055664, + "step": 30900 + }, + { + "epoch": 65.12618296529969, + "grad_norm": 0.6283636093139648, + "learning_rate": 1.7445378151260505e-05, + "loss": 0.4627264404296875, + "step": 31000 + }, + { + "epoch": 65.33648790746582, + "grad_norm": 0.6411524415016174, + "learning_rate": 1.7340336134453784e-05, + "loss": 0.45608016967773435, + "step": 31100 + }, + { + "epoch": 65.54679284963197, + "grad_norm": 0.668154776096344, + "learning_rate": 1.723529411764706e-05, + "loss": 0.46059967041015626, + "step": 31200 + }, + { + "epoch": 65.7570977917981, + "grad_norm": 0.7226248979568481, + "learning_rate": 1.713025210084034e-05, + "loss": 0.4659851455688477, + "step": 31300 + }, + { + "epoch": 65.96740273396425, + "grad_norm": 0.6833023428916931, + "learning_rate": 1.7025210084033612e-05, + "loss": 0.46931900024414064, + "step": 31400 + }, + { + "epoch": 66.17665615141956, + "grad_norm": 0.6941800117492676, + "learning_rate": 1.6921218487394958e-05, + "loss": 0.45006973266601563, + "step": 31500 + }, + { + "epoch": 66.3869610935857, + "grad_norm": 0.63517826795578, + "learning_rate": 1.6816176470588237e-05, + "loss": 0.44848171234130857, + "step": 31600 + }, + { + "epoch": 66.59726603575184, + "grad_norm": 0.6846080422401428, + "learning_rate": 1.6711134453781513e-05, + "loss": 0.45420032501220703, + "step": 31700 + }, + { + "epoch": 66.80757097791798, + "grad_norm": 0.6388368010520935, + "learning_rate": 1.6606092436974792e-05, + "loss": 0.4580923843383789, + "step": 31800 + }, + { + "epoch": 67.01682439537329, + "grad_norm": 0.6670629978179932, + "learning_rate": 1.6501050420168068e-05, + "loss": 0.4585027313232422, + "step": 31900 + }, + { + "epoch": 67.22712933753944, + "grad_norm": 0.6662338972091675, + "learning_rate": 1.6396008403361347e-05, + "loss": 0.44079010009765623, + "step": 32000 + }, + { + "epoch": 67.43743427970557, + "grad_norm": 0.6707865595817566, + "learning_rate": 1.6290966386554623e-05, + "loss": 0.44413238525390625, + "step": 32100 + }, + { + "epoch": 67.64773922187172, + "grad_norm": 0.656842052936554, + "learning_rate": 1.6185924369747902e-05, + "loss": 0.44844043731689454, + "step": 32200 + }, + { + "epoch": 67.85804416403785, + "grad_norm": 0.6646634340286255, + "learning_rate": 1.6080882352941175e-05, + "loss": 0.44970947265625, + "step": 32300 + }, + { + "epoch": 68.06729758149316, + "grad_norm": 0.6447365880012512, + "learning_rate": 1.5975840336134454e-05, + "loss": 0.4450407028198242, + "step": 32400 + }, + { + "epoch": 68.27760252365931, + "grad_norm": 0.6727699637413025, + "learning_rate": 1.587079831932773e-05, + "loss": 0.43177310943603514, + "step": 32500 + }, + { + "epoch": 68.48790746582544, + "grad_norm": 0.7130571603775024, + "learning_rate": 1.576575630252101e-05, + "loss": 0.4379489517211914, + "step": 32600 + }, + { + "epoch": 68.69821240799159, + "grad_norm": 0.7220073938369751, + "learning_rate": 1.566071428571429e-05, + "loss": 0.4425164794921875, + "step": 32700 + }, + { + "epoch": 68.90851735015772, + "grad_norm": 0.6695141196250916, + "learning_rate": 1.5555672268907564e-05, + "loss": 0.44274383544921875, + "step": 32800 + }, + { + "epoch": 69.11777076761304, + "grad_norm": 0.6740268468856812, + "learning_rate": 1.5450630252100843e-05, + "loss": 0.4357725143432617, + "step": 32900 + }, + { + "epoch": 69.32807570977918, + "grad_norm": 0.6566063165664673, + "learning_rate": 1.5345588235294116e-05, + "loss": 0.4283485412597656, + "step": 33000 + }, + { + "epoch": 69.53838065194532, + "grad_norm": 0.6752663850784302, + "learning_rate": 1.5240546218487395e-05, + "loss": 0.43225677490234377, + "step": 33100 + }, + { + "epoch": 69.74868559411146, + "grad_norm": 0.7038667798042297, + "learning_rate": 1.5135504201680673e-05, + "loss": 0.43592594146728514, + "step": 33200 + }, + { + "epoch": 69.9589905362776, + "grad_norm": 0.6961196660995483, + "learning_rate": 1.503046218487395e-05, + "loss": 0.438877067565918, + "step": 33300 + }, + { + "epoch": 70.16824395373291, + "grad_norm": 0.6535352468490601, + "learning_rate": 1.4925420168067228e-05, + "loss": 0.4252385330200195, + "step": 33400 + }, + { + "epoch": 70.37854889589906, + "grad_norm": 0.6601018905639648, + "learning_rate": 1.4820378151260505e-05, + "loss": 0.42285392761230467, + "step": 33500 + }, + { + "epoch": 70.58885383806519, + "grad_norm": 0.6948896050453186, + "learning_rate": 1.4715336134453783e-05, + "loss": 0.427175407409668, + "step": 33600 + }, + { + "epoch": 70.79915878023134, + "grad_norm": 0.6372560858726501, + "learning_rate": 1.461029411764706e-05, + "loss": 0.42832706451416014, + "step": 33700 + }, + { + "epoch": 71.00841219768665, + "grad_norm": 0.6517939567565918, + "learning_rate": 1.4505252100840336e-05, + "loss": 0.4324043273925781, + "step": 33800 + }, + { + "epoch": 71.21871713985279, + "grad_norm": 0.6330206990242004, + "learning_rate": 1.4400210084033614e-05, + "loss": 0.4146746826171875, + "step": 33900 + }, + { + "epoch": 71.42902208201893, + "grad_norm": 0.6658615469932556, + "learning_rate": 1.4295168067226892e-05, + "loss": 0.4180047225952148, + "step": 34000 + }, + { + "epoch": 71.63932702418506, + "grad_norm": 0.6433075070381165, + "learning_rate": 1.4190126050420169e-05, + "loss": 0.4219693374633789, + "step": 34100 + }, + { + "epoch": 71.84963196635121, + "grad_norm": 0.6470766663551331, + "learning_rate": 1.4085084033613447e-05, + "loss": 0.4214926528930664, + "step": 34200 + }, + { + "epoch": 72.05888538380653, + "grad_norm": 0.6315721273422241, + "learning_rate": 1.3981092436974791e-05, + "loss": 0.4204498291015625, + "step": 34300 + }, + { + "epoch": 72.26919032597266, + "grad_norm": 0.6722202897071838, + "learning_rate": 1.3876050420168068e-05, + "loss": 0.4105443572998047, + "step": 34400 + }, + { + "epoch": 72.4794952681388, + "grad_norm": 0.654528021812439, + "learning_rate": 1.3771008403361346e-05, + "loss": 0.41524337768554687, + "step": 34500 + }, + { + "epoch": 72.68980021030494, + "grad_norm": 0.6449755430221558, + "learning_rate": 1.3665966386554622e-05, + "loss": 0.4175481414794922, + "step": 34600 + }, + { + "epoch": 72.90010515247108, + "grad_norm": 0.6468359231948853, + "learning_rate": 1.35609243697479e-05, + "loss": 0.41863433837890623, + "step": 34700 + }, + { + "epoch": 73.1093585699264, + "grad_norm": 0.6471462845802307, + "learning_rate": 1.3455882352941177e-05, + "loss": 0.411123161315918, + "step": 34800 + }, + { + "epoch": 73.31966351209253, + "grad_norm": 0.6382157802581787, + "learning_rate": 1.3350840336134455e-05, + "loss": 0.40554931640625, + "step": 34900 + }, + { + "epoch": 73.52996845425868, + "grad_norm": 0.6727550029754639, + "learning_rate": 1.3245798319327732e-05, + "loss": 0.40884464263916015, + "step": 35000 + }, + { + "epoch": 73.74027339642481, + "grad_norm": 0.6494147181510925, + "learning_rate": 1.314075630252101e-05, + "loss": 0.4114807891845703, + "step": 35100 + }, + { + "epoch": 73.95057833859096, + "grad_norm": 0.6971067786216736, + "learning_rate": 1.3035714285714287e-05, + "loss": 0.4129951477050781, + "step": 35200 + }, + { + "epoch": 74.15983175604627, + "grad_norm": 0.630617082118988, + "learning_rate": 1.2930672268907565e-05, + "loss": 0.40283798217773437, + "step": 35300 + }, + { + "epoch": 74.3701366982124, + "grad_norm": 0.6068241000175476, + "learning_rate": 1.2825630252100839e-05, + "loss": 0.4017567825317383, + "step": 35400 + }, + { + "epoch": 74.58044164037855, + "grad_norm": 0.6767259836196899, + "learning_rate": 1.2720588235294118e-05, + "loss": 0.40448307037353515, + "step": 35500 + }, + { + "epoch": 74.79074658254468, + "grad_norm": 0.7011847496032715, + "learning_rate": 1.2615546218487396e-05, + "loss": 0.4047744369506836, + "step": 35600 + }, + { + "epoch": 75.0, + "grad_norm": 0.9920335412025452, + "learning_rate": 1.2510504201680673e-05, + "loss": 0.4085837936401367, + "step": 35700 + }, + { + "epoch": 75.21030494216615, + "grad_norm": 0.6520708203315735, + "learning_rate": 1.2405462184873951e-05, + "loss": 0.39399688720703124, + "step": 35800 + }, + { + "epoch": 75.42060988433228, + "grad_norm": 0.6656842827796936, + "learning_rate": 1.2300420168067227e-05, + "loss": 0.3963521957397461, + "step": 35900 + }, + { + "epoch": 75.63091482649843, + "grad_norm": 0.6576446294784546, + "learning_rate": 1.2195378151260504e-05, + "loss": 0.3992136383056641, + "step": 36000 + }, + { + "epoch": 75.84121976866456, + "grad_norm": 0.6238224506378174, + "learning_rate": 1.2090336134453782e-05, + "loss": 0.40125537872314454, + "step": 36100 + }, + { + "epoch": 76.05047318611987, + "grad_norm": 0.6389949917793274, + "learning_rate": 1.198529411764706e-05, + "loss": 0.3995349884033203, + "step": 36200 + }, + { + "epoch": 76.26077812828602, + "grad_norm": 0.6240091919898987, + "learning_rate": 1.1880252100840335e-05, + "loss": 0.3890629577636719, + "step": 36300 + }, + { + "epoch": 76.47108307045215, + "grad_norm": 0.6367642879486084, + "learning_rate": 1.1775210084033615e-05, + "loss": 0.39277313232421873, + "step": 36400 + }, + { + "epoch": 76.6813880126183, + "grad_norm": 0.6215347647666931, + "learning_rate": 1.1670168067226892e-05, + "loss": 0.3941745376586914, + "step": 36500 + }, + { + "epoch": 76.89169295478443, + "grad_norm": 0.6176421642303467, + "learning_rate": 1.156512605042017e-05, + "loss": 0.3961213302612305, + "step": 36600 + }, + { + "epoch": 77.10094637223975, + "grad_norm": 0.6433852314949036, + "learning_rate": 1.1460084033613446e-05, + "loss": 0.39362903594970705, + "step": 36700 + }, + { + "epoch": 77.3112513144059, + "grad_norm": 0.6288033127784729, + "learning_rate": 1.1355042016806723e-05, + "loss": 0.3870785140991211, + "step": 36800 + }, + { + "epoch": 77.52155625657203, + "grad_norm": 0.6061193943023682, + "learning_rate": 1.125e-05, + "loss": 0.38955581665039063, + "step": 36900 + }, + { + "epoch": 77.73186119873817, + "grad_norm": 0.6680556535720825, + "learning_rate": 1.1144957983193278e-05, + "loss": 0.390676383972168, + "step": 37000 + }, + { + "epoch": 77.9421661409043, + "grad_norm": 0.623725950717926, + "learning_rate": 1.1039915966386554e-05, + "loss": 0.3921066665649414, + "step": 37100 + }, + { + "epoch": 78.15141955835962, + "grad_norm": 0.6346238255500793, + "learning_rate": 1.0935924369747898e-05, + "loss": 0.3845651626586914, + "step": 37200 + }, + { + "epoch": 78.36172450052577, + "grad_norm": 0.6062731146812439, + "learning_rate": 1.0830882352941178e-05, + "loss": 0.380772705078125, + "step": 37300 + }, + { + "epoch": 78.5720294426919, + "grad_norm": 0.6125079989433289, + "learning_rate": 1.0725840336134455e-05, + "loss": 0.3834884262084961, + "step": 37400 + }, + { + "epoch": 78.78233438485805, + "grad_norm": 0.6804420948028564, + "learning_rate": 1.0620798319327733e-05, + "loss": 0.3863555526733398, + "step": 37500 + }, + { + "epoch": 78.99263932702418, + "grad_norm": 0.6568316221237183, + "learning_rate": 1.0515756302521009e-05, + "loss": 0.3898443603515625, + "step": 37600 + }, + { + "epoch": 79.2018927444795, + "grad_norm": 0.6262179017066956, + "learning_rate": 1.0410714285714286e-05, + "loss": 0.37717395782470703, + "step": 37700 + }, + { + "epoch": 79.41219768664564, + "grad_norm": 0.6335896849632263, + "learning_rate": 1.0305672268907564e-05, + "loss": 0.37976459503173826, + "step": 37800 + }, + { + "epoch": 79.62250262881177, + "grad_norm": 0.675938069820404, + "learning_rate": 1.0200630252100841e-05, + "loss": 0.38054397583007815, + "step": 37900 + }, + { + "epoch": 79.83280757097792, + "grad_norm": 0.650644838809967, + "learning_rate": 1.0095588235294117e-05, + "loss": 0.3817191696166992, + "step": 38000 + }, + { + "epoch": 80.04206098843324, + "grad_norm": 0.5988778471946716, + "learning_rate": 9.990546218487395e-06, + "loss": 0.3799977493286133, + "step": 38100 + }, + { + "epoch": 80.25236593059937, + "grad_norm": 0.6436987519264221, + "learning_rate": 9.885504201680674e-06, + "loss": 0.37264183044433596, + "step": 38200 + }, + { + "epoch": 80.46267087276551, + "grad_norm": 0.610487699508667, + "learning_rate": 9.78046218487395e-06, + "loss": 0.3753046417236328, + "step": 38300 + }, + { + "epoch": 80.67297581493165, + "grad_norm": 0.6378571391105652, + "learning_rate": 9.675420168067227e-06, + "loss": 0.3749809646606445, + "step": 38400 + }, + { + "epoch": 80.8832807570978, + "grad_norm": 0.6599664688110352, + "learning_rate": 9.570378151260505e-06, + "loss": 0.37958168029785155, + "step": 38500 + }, + { + "epoch": 81.09253417455311, + "grad_norm": 0.6057779788970947, + "learning_rate": 9.465336134453782e-06, + "loss": 0.3755946731567383, + "step": 38600 + }, + { + "epoch": 81.30283911671924, + "grad_norm": 0.6186268925666809, + "learning_rate": 9.360294117647058e-06, + "loss": 0.3689208221435547, + "step": 38700 + }, + { + "epoch": 81.51314405888539, + "grad_norm": 0.6031709909439087, + "learning_rate": 9.255252100840336e-06, + "loss": 0.37045917510986326, + "step": 38800 + }, + { + "epoch": 81.72344900105152, + "grad_norm": 0.6903654336929321, + "learning_rate": 9.150210084033613e-06, + "loss": 0.37341190338134767, + "step": 38900 + }, + { + "epoch": 81.93375394321767, + "grad_norm": 0.6498835682868958, + "learning_rate": 9.045168067226891e-06, + "loss": 0.3741530227661133, + "step": 39000 + }, + { + "epoch": 82.14300736067298, + "grad_norm": 0.6078621745109558, + "learning_rate": 8.940126050420169e-06, + "loss": 0.36713558197021484, + "step": 39100 + }, + { + "epoch": 82.35331230283911, + "grad_norm": 0.6294094324111938, + "learning_rate": 8.835084033613446e-06, + "loss": 0.3661073303222656, + "step": 39200 + }, + { + "epoch": 82.56361724500526, + "grad_norm": 0.6120302081108093, + "learning_rate": 8.730042016806724e-06, + "loss": 0.3683062744140625, + "step": 39300 + }, + { + "epoch": 82.7739221871714, + "grad_norm": 0.6194695830345154, + "learning_rate": 8.625e-06, + "loss": 0.3718934631347656, + "step": 39400 + }, + { + "epoch": 82.98422712933754, + "grad_norm": 0.6603109240531921, + "learning_rate": 8.519957983193277e-06, + "loss": 0.37141822814941405, + "step": 39500 + }, + { + "epoch": 83.19348054679286, + "grad_norm": 0.6176982522010803, + "learning_rate": 8.414915966386555e-06, + "loss": 0.36253021240234373, + "step": 39600 + }, + { + "epoch": 83.40378548895899, + "grad_norm": 0.6788721084594727, + "learning_rate": 8.309873949579832e-06, + "loss": 0.36460174560546876, + "step": 39700 + }, + { + "epoch": 83.61409043112513, + "grad_norm": 0.6141113638877869, + "learning_rate": 8.20483193277311e-06, + "loss": 0.36554264068603515, + "step": 39800 + }, + { + "epoch": 83.82439537329127, + "grad_norm": 0.6193323135375977, + "learning_rate": 8.099789915966387e-06, + "loss": 0.36707286834716796, + "step": 39900 + }, + { + "epoch": 84.03364879074658, + "grad_norm": 0.6383187770843506, + "learning_rate": 7.994747899159665e-06, + "loss": 0.3661843872070312, + "step": 40000 + }, + { + "epoch": 84.24395373291273, + "grad_norm": 0.5923520922660828, + "learning_rate": 7.889705882352943e-06, + "loss": 0.35978816986083983, + "step": 40100 + }, + { + "epoch": 84.45425867507886, + "grad_norm": 0.641968846321106, + "learning_rate": 7.784663865546218e-06, + "loss": 0.35977176666259764, + "step": 40200 + }, + { + "epoch": 84.66456361724501, + "grad_norm": 0.6307324767112732, + "learning_rate": 7.679621848739496e-06, + "loss": 0.36135292053222656, + "step": 40300 + }, + { + "epoch": 84.87486855941114, + "grad_norm": 0.6303888559341431, + "learning_rate": 7.5745798319327735e-06, + "loss": 0.36290821075439456, + "step": 40400 + }, + { + "epoch": 85.08412197686646, + "grad_norm": 0.5610889792442322, + "learning_rate": 7.469537815126051e-06, + "loss": 0.36016101837158204, + "step": 40500 + }, + { + "epoch": 85.2944269190326, + "grad_norm": 0.5796296000480652, + "learning_rate": 7.364495798319328e-06, + "loss": 0.35660606384277344, + "step": 40600 + }, + { + "epoch": 85.50473186119874, + "grad_norm": 0.6147542595863342, + "learning_rate": 7.259453781512605e-06, + "loss": 0.35944347381591796, + "step": 40700 + }, + { + "epoch": 85.71503680336488, + "grad_norm": 0.6097769737243652, + "learning_rate": 7.154411764705883e-06, + "loss": 0.3589036560058594, + "step": 40800 + }, + { + "epoch": 85.92534174553101, + "grad_norm": 0.6288202404975891, + "learning_rate": 7.04936974789916e-06, + "loss": 0.3591917419433594, + "step": 40900 + }, + { + "epoch": 86.13459516298633, + "grad_norm": 0.6195931434631348, + "learning_rate": 6.944327731092437e-06, + "loss": 0.3569915771484375, + "step": 41000 + }, + { + "epoch": 86.34490010515248, + "grad_norm": 0.5890372395515442, + "learning_rate": 6.839285714285715e-06, + "loss": 0.3543994903564453, + "step": 41100 + }, + { + "epoch": 86.55520504731861, + "grad_norm": 0.6272594332695007, + "learning_rate": 6.735294117647059e-06, + "loss": 0.3553640365600586, + "step": 41200 + }, + { + "epoch": 86.76550998948476, + "grad_norm": 0.6778700351715088, + "learning_rate": 6.6302521008403365e-06, + "loss": 0.3564106750488281, + "step": 41300 + }, + { + "epoch": 86.97581493165089, + "grad_norm": 0.6336688995361328, + "learning_rate": 6.525210084033614e-06, + "loss": 0.35713409423828124, + "step": 41400 + }, + { + "epoch": 87.1850683491062, + "grad_norm": 0.6053069829940796, + "learning_rate": 6.421218487394959e-06, + "loss": 0.3506643295288086, + "step": 41500 + }, + { + "epoch": 87.39537329127235, + "grad_norm": 0.6175255179405212, + "learning_rate": 6.316176470588235e-06, + "loss": 0.35214996337890625, + "step": 41600 + }, + { + "epoch": 87.60567823343848, + "grad_norm": 0.5915444493293762, + "learning_rate": 6.2111344537815125e-06, + "loss": 0.3522480392456055, + "step": 41700 + }, + { + "epoch": 87.81598317560463, + "grad_norm": 0.5907636880874634, + "learning_rate": 6.10609243697479e-06, + "loss": 0.3520878601074219, + "step": 41800 + }, + { + "epoch": 88.02523659305994, + "grad_norm": 0.6209415197372437, + "learning_rate": 6.001050420168068e-06, + "loss": 0.3545633316040039, + "step": 41900 + }, + { + "epoch": 88.23554153522608, + "grad_norm": 0.5926827788352966, + "learning_rate": 5.896008403361345e-06, + "loss": 0.34920032501220705, + "step": 42000 + }, + { + "epoch": 88.44584647739222, + "grad_norm": 0.638471245765686, + "learning_rate": 5.790966386554622e-06, + "loss": 0.34805423736572266, + "step": 42100 + }, + { + "epoch": 88.65615141955836, + "grad_norm": 0.6181325316429138, + "learning_rate": 5.6859243697478994e-06, + "loss": 0.3501460647583008, + "step": 42200 + }, + { + "epoch": 88.8664563617245, + "grad_norm": 0.6029173135757446, + "learning_rate": 5.580882352941177e-06, + "loss": 0.35028797149658203, + "step": 42300 + }, + { + "epoch": 89.07570977917982, + "grad_norm": 0.5673274397850037, + "learning_rate": 5.475840336134454e-06, + "loss": 0.34918766021728515, + "step": 42400 + }, + { + "epoch": 89.28601472134595, + "grad_norm": 0.5657567977905273, + "learning_rate": 5.370798319327731e-06, + "loss": 0.34565746307373046, + "step": 42500 + }, + { + "epoch": 89.4963196635121, + "grad_norm": 0.6014168858528137, + "learning_rate": 5.265756302521008e-06, + "loss": 0.3450989532470703, + "step": 42600 + }, + { + "epoch": 89.70662460567823, + "grad_norm": 0.5631797909736633, + "learning_rate": 5.160714285714286e-06, + "loss": 0.3477408218383789, + "step": 42700 + }, + { + "epoch": 89.91692954784438, + "grad_norm": 0.624321699142456, + "learning_rate": 5.055672268907563e-06, + "loss": 0.34852649688720705, + "step": 42800 + }, + { + "epoch": 90.12618296529969, + "grad_norm": 0.6004353761672974, + "learning_rate": 4.950630252100841e-06, + "loss": 0.3450387191772461, + "step": 42900 + }, + { + "epoch": 90.33648790746582, + "grad_norm": 0.6030150651931763, + "learning_rate": 4.845588235294117e-06, + "loss": 0.34261096954345704, + "step": 43000 + }, + { + "epoch": 90.54679284963197, + "grad_norm": 0.5574061870574951, + "learning_rate": 4.740546218487396e-06, + "loss": 0.3450190734863281, + "step": 43100 + }, + { + "epoch": 90.7570977917981, + "grad_norm": 0.5677763819694519, + "learning_rate": 4.6355042016806725e-06, + "loss": 0.3442384338378906, + "step": 43200 + }, + { + "epoch": 90.96740273396425, + "grad_norm": 0.6088888645172119, + "learning_rate": 4.53046218487395e-06, + "loss": 0.3451253128051758, + "step": 43300 + }, + { + "epoch": 91.17665615141956, + "grad_norm": 0.5724344849586487, + "learning_rate": 4.425420168067227e-06, + "loss": 0.3408164978027344, + "step": 43400 + }, + { + "epoch": 91.3869610935857, + "grad_norm": 0.6201240420341492, + "learning_rate": 4.320378151260504e-06, + "loss": 0.3420841979980469, + "step": 43500 + }, + { + "epoch": 91.59726603575184, + "grad_norm": 0.6098768711090088, + "learning_rate": 4.215336134453782e-06, + "loss": 0.3413374328613281, + "step": 43600 + }, + { + "epoch": 91.80757097791798, + "grad_norm": 0.6306800842285156, + "learning_rate": 4.110294117647059e-06, + "loss": 0.34394527435302735, + "step": 43700 + }, + { + "epoch": 92.01682439537329, + "grad_norm": 0.559008777141571, + "learning_rate": 4.005252100840336e-06, + "loss": 0.3423053741455078, + "step": 43800 + }, + { + "epoch": 92.22712933753944, + "grad_norm": 0.5939933657646179, + "learning_rate": 3.900210084033614e-06, + "loss": 0.33797637939453123, + "step": 43900 + }, + { + "epoch": 92.43743427970557, + "grad_norm": 0.6135221719741821, + "learning_rate": 3.795168067226891e-06, + "loss": 0.3408375930786133, + "step": 44000 + }, + { + "epoch": 92.64773922187172, + "grad_norm": 0.5870836973190308, + "learning_rate": 3.690126050420168e-06, + "loss": 0.34073463439941404, + "step": 44100 + }, + { + "epoch": 92.85804416403785, + "grad_norm": 0.5811474323272705, + "learning_rate": 3.5850840336134456e-06, + "loss": 0.34040855407714843, + "step": 44200 + }, + { + "epoch": 93.06729758149316, + "grad_norm": 0.5979830026626587, + "learning_rate": 3.4800420168067227e-06, + "loss": 0.3395253753662109, + "step": 44300 + }, + { + "epoch": 93.27760252365931, + "grad_norm": 0.5824161171913147, + "learning_rate": 3.3750000000000003e-06, + "loss": 0.3389311981201172, + "step": 44400 + }, + { + "epoch": 93.48790746582544, + "grad_norm": 0.5694940090179443, + "learning_rate": 3.2699579831932774e-06, + "loss": 0.337044792175293, + "step": 44500 + }, + { + "epoch": 93.69821240799159, + "grad_norm": 0.6112421154975891, + "learning_rate": 3.164915966386555e-06, + "loss": 0.33819969177246095, + "step": 44600 + }, + { + "epoch": 93.90851735015772, + "grad_norm": 0.610955536365509, + "learning_rate": 3.059873949579832e-06, + "loss": 0.33944580078125, + "step": 44700 + }, + { + "epoch": 94.11777076761304, + "grad_norm": 0.6398776769638062, + "learning_rate": 2.9548319327731093e-06, + "loss": 0.33618770599365233, + "step": 44800 + }, + { + "epoch": 94.32807570977918, + "grad_norm": 0.5934144854545593, + "learning_rate": 2.849789915966387e-06, + "loss": 0.3384376525878906, + "step": 44900 + }, + { + "epoch": 94.53838065194532, + "grad_norm": 0.6144473552703857, + "learning_rate": 2.744747899159664e-06, + "loss": 0.3383865737915039, + "step": 45000 + }, + { + "epoch": 94.74868559411146, + "grad_norm": 0.5490454435348511, + "learning_rate": 2.6397058823529415e-06, + "loss": 0.33671878814697265, + "step": 45100 + }, + { + "epoch": 94.9589905362776, + "grad_norm": 0.5695416331291199, + "learning_rate": 2.5346638655462187e-06, + "loss": 0.3379853820800781, + "step": 45200 + }, + { + "epoch": 95.16824395373291, + "grad_norm": 0.5724055767059326, + "learning_rate": 2.429621848739496e-06, + "loss": 0.3338408660888672, + "step": 45300 + }, + { + "epoch": 95.37854889589906, + "grad_norm": 0.594022810459137, + "learning_rate": 2.3245798319327734e-06, + "loss": 0.3349121475219727, + "step": 45400 + }, + { + "epoch": 95.58885383806519, + "grad_norm": 0.5594576597213745, + "learning_rate": 2.2205882352941175e-06, + "loss": 0.33595680236816405, + "step": 45500 + }, + { + "epoch": 95.79915878023134, + "grad_norm": 0.5346081852912903, + "learning_rate": 2.115546218487395e-06, + "loss": 0.33520328521728515, + "step": 45600 + }, + { + "epoch": 96.00841219768665, + "grad_norm": 0.5849393606185913, + "learning_rate": 2.0105042016806722e-06, + "loss": 0.3334170913696289, + "step": 45700 + }, + { + "epoch": 96.21871713985279, + "grad_norm": 0.5918118357658386, + "learning_rate": 1.9054621848739498e-06, + "loss": 0.3329995346069336, + "step": 45800 + }, + { + "epoch": 96.42902208201893, + "grad_norm": 0.6012352705001831, + "learning_rate": 1.800420168067227e-06, + "loss": 0.3329520416259766, + "step": 45900 + }, + { + "epoch": 96.63932702418506, + "grad_norm": 0.5281354784965515, + "learning_rate": 1.6953781512605043e-06, + "loss": 0.3343208694458008, + "step": 46000 + }, + { + "epoch": 96.84963196635121, + "grad_norm": 0.5566437244415283, + "learning_rate": 1.5903361344537816e-06, + "loss": 0.33319324493408203, + "step": 46100 + }, + { + "epoch": 97.05888538380653, + "grad_norm": 0.62099689245224, + "learning_rate": 1.486344537815126e-06, + "loss": 0.33431713104248045, + "step": 46200 + }, + { + "epoch": 97.26919032597266, + "grad_norm": 0.5787718892097473, + "learning_rate": 1.3813025210084034e-06, + "loss": 0.3314530944824219, + "step": 46300 + }, + { + "epoch": 97.4794952681388, + "grad_norm": 0.5509923100471497, + "learning_rate": 1.2762605042016807e-06, + "loss": 0.3316763305664063, + "step": 46400 + }, + { + "epoch": 97.68980021030494, + "grad_norm": 0.5569334030151367, + "learning_rate": 1.171218487394958e-06, + "loss": 0.3315643310546875, + "step": 46500 + }, + { + "epoch": 97.90010515247108, + "grad_norm": 0.5476507544517517, + "learning_rate": 1.0661764705882354e-06, + "loss": 0.33233203887939455, + "step": 46600 + }, + { + "epoch": 98.1093585699264, + "grad_norm": 0.5630120038986206, + "learning_rate": 9.611344537815128e-07, + "loss": 0.33105762481689455, + "step": 46700 + }, + { + "epoch": 98.31966351209253, + "grad_norm": 0.5520943999290466, + "learning_rate": 8.5609243697479e-07, + "loss": 0.3307930374145508, + "step": 46800 + }, + { + "epoch": 98.52996845425868, + "grad_norm": 0.5917891263961792, + "learning_rate": 7.510504201680673e-07, + "loss": 0.3318499755859375, + "step": 46900 + }, + { + "epoch": 98.74027339642481, + "grad_norm": 0.5395123362541199, + "learning_rate": 6.460084033613445e-07, + "loss": 0.330290412902832, + "step": 47000 + }, + { + "epoch": 98.95057833859096, + "grad_norm": 0.5702670216560364, + "learning_rate": 5.409663865546218e-07, + "loss": 0.33196086883544923, + "step": 47100 + }, + { + "epoch": 99.15983175604627, + "grad_norm": 0.5607645511627197, + "learning_rate": 4.359243697478992e-07, + "loss": 0.3293312454223633, + "step": 47200 + } + ], + "logging_steps": 100, + "max_steps": 47600, + "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": 3.0413676878290944e+16, + "train_batch_size": 8, + "trial_name": null, + "trial_params": null +} diff --git a/timecost/n11/realtabformer/rtf-n11-20260430_214424/rtf_checkpoints/checkpoint-47200/training_args.bin b/timecost/n11/realtabformer/rtf-n11-20260430_214424/rtf_checkpoints/checkpoint-47200/training_args.bin new file mode 100644 index 0000000000000000000000000000000000000000..34d68dc0e0fe1c1f12a2e581dd1b166aa7178a9e --- /dev/null +++ b/timecost/n11/realtabformer/rtf-n11-20260430_214424/rtf_checkpoints/checkpoint-47200/training_args.bin @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:9e2cd88337d1d846c6918d2b3b63fa3e5c93f12fefc082497590da854a564607 +size 5201 diff --git a/timecost/n11/realtabformer/rtf-n11-20260430_214424/rtf_checkpoints/checkpoint-47300/config.json b/timecost/n11/realtabformer/rtf-n11-20260430_214424/rtf_checkpoints/checkpoint-47300/config.json new file mode 100644 index 0000000000000000000000000000000000000000..605aa5aa48fc96b6c3133032a3e66cd18090e70a --- /dev/null +++ b/timecost/n11/realtabformer/rtf-n11-20260430_214424/rtf_checkpoints/checkpoint-47300/config.json @@ -0,0 +1,34 @@ +{ + "activation_function": "gelu_new", + "add_cross_attention": false, + "architectures": [ + "GPT2LMHeadModel" + ], + "attn_pdrop": 0.1, + "bos_token_id": 5, + "dtype": "float32", + "embd_pdrop": 0.1, + "eos_token_id": 6, + "initializer_range": 0.02, + "layer_norm_epsilon": 1e-05, + "model_type": "gpt2", + "n_embd": 768, + "n_head": 12, + "n_inner": null, + "n_layer": 6, + "n_positions": 1024, + "pad_token_id": null, + "reorder_and_upcast_attn": false, + "resid_pdrop": 0.1, + "scale_attn_by_inverse_layer_idx": false, + "scale_attn_weights": true, + "summary_activation": null, + "summary_first_dropout": 0.1, + "summary_proj_to_labels": true, + "summary_type": "cls_index", + "summary_use_proj": true, + "tie_word_embeddings": true, + "transformers_version": "5.5.3", + "use_cache": false, + "vocab_size": 597 +} diff --git a/timecost/n11/realtabformer/rtf-n11-20260430_214424/rtf_checkpoints/checkpoint-47300/generation_config.json b/timecost/n11/realtabformer/rtf-n11-20260430_214424/rtf_checkpoints/checkpoint-47300/generation_config.json new file mode 100644 index 0000000000000000000000000000000000000000..ffe89567780e75b5c22eade9be971483b9618f39 --- /dev/null +++ b/timecost/n11/realtabformer/rtf-n11-20260430_214424/rtf_checkpoints/checkpoint-47300/generation_config.json @@ -0,0 +1,9 @@ +{ + "_from_model_config": true, + "bos_token_id": 5, + "eos_token_id": 6, + "output_attentions": false, + "output_hidden_states": false, + "transformers_version": "5.5.3", + "use_cache": true +} diff --git a/timecost/n11/realtabformer/rtf-n11-20260430_214424/rtf_checkpoints/checkpoint-47300/model.safetensors b/timecost/n11/realtabformer/rtf-n11-20260430_214424/rtf_checkpoints/checkpoint-47300/model.safetensors new file mode 100644 index 0000000000000000000000000000000000000000..99c72ad1517e9fa639da4d54c184440e0603f1bb --- /dev/null +++ b/timecost/n11/realtabformer/rtf-n11-20260430_214424/rtf_checkpoints/checkpoint-47300/model.safetensors @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:82d1e061b411c229b256850b631b087ccaaed595af7ec0015a95c8a8da9d497f +size 175102408 diff --git a/timecost/n11/realtabformer/rtf-n11-20260430_214424/rtf_checkpoints/checkpoint-47300/optimizer.pt b/timecost/n11/realtabformer/rtf-n11-20260430_214424/rtf_checkpoints/checkpoint-47300/optimizer.pt new file mode 100644 index 0000000000000000000000000000000000000000..406c4e3422df3cec04554829801feb0a4132266c --- /dev/null +++ b/timecost/n11/realtabformer/rtf-n11-20260430_214424/rtf_checkpoints/checkpoint-47300/optimizer.pt @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:75b9027692d7671d4c3f75b841ef1b49c665f087acba6864934aac8c2755ae07 +size 350253899 diff --git a/timecost/n11/realtabformer/rtf-n11-20260430_214424/rtf_checkpoints/checkpoint-47300/rng_state.pth b/timecost/n11/realtabformer/rtf-n11-20260430_214424/rtf_checkpoints/checkpoint-47300/rng_state.pth new file mode 100644 index 0000000000000000000000000000000000000000..1d72f7fd0ceb5909f2d54351bc50f41fe2008690 --- /dev/null +++ b/timecost/n11/realtabformer/rtf-n11-20260430_214424/rtf_checkpoints/checkpoint-47300/rng_state.pth @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:b5ab9a806cfd6f30e21a0aeeb345fca9b69269e828a4c0424e46ebab042c582b +size 14645 diff --git a/timecost/n11/realtabformer/rtf-n11-20260430_214424/rtf_checkpoints/checkpoint-47300/scaler.pt b/timecost/n11/realtabformer/rtf-n11-20260430_214424/rtf_checkpoints/checkpoint-47300/scaler.pt new file mode 100644 index 0000000000000000000000000000000000000000..4b6f65cabc8651f12902bb3ccb52f9c56975dc32 --- /dev/null +++ b/timecost/n11/realtabformer/rtf-n11-20260430_214424/rtf_checkpoints/checkpoint-47300/scaler.pt @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:90cd12f8f63b63d3ea25741ce705ff16d8f399e316c68011a20719977f9cb8b0 +size 1383 diff --git a/timecost/n11/realtabformer/rtf-n11-20260430_214424/rtf_checkpoints/checkpoint-47300/scheduler.pt b/timecost/n11/realtabformer/rtf-n11-20260430_214424/rtf_checkpoints/checkpoint-47300/scheduler.pt new file mode 100644 index 0000000000000000000000000000000000000000..05300174916501a27c6439ad6e39ef1d00f1da0a --- /dev/null +++ b/timecost/n11/realtabformer/rtf-n11-20260430_214424/rtf_checkpoints/checkpoint-47300/scheduler.pt @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:5912b65c3f546f4291b4952c78592e3043d8ab8d57169cfaa4368a903bcbbc46 +size 1465 diff --git a/timecost/n11/realtabformer/rtf-n11-20260430_214424/rtf_checkpoints/checkpoint-47300/trainer_state.json b/timecost/n11/realtabformer/rtf-n11-20260430_214424/rtf_checkpoints/checkpoint-47300/trainer_state.json new file mode 100644 index 0000000000000000000000000000000000000000..a65b4c5578736d3b7e7e045f9dcc6b9a1aa45685 --- /dev/null +++ b/timecost/n11/realtabformer/rtf-n11-20260430_214424/rtf_checkpoints/checkpoint-47300/trainer_state.json @@ -0,0 +1,3345 @@ +{ + "best_global_step": null, + "best_metric": null, + "best_model_checkpoint": null, + "epoch": 99.3701366982124, + "eval_steps": 100, + "global_step": 47300, + "is_hyper_param_search": false, + "is_local_process_zero": true, + "is_world_process_zero": true, + "log_history": [ + { + "epoch": 0.2103049421661409, + "grad_norm": 0.22972723841667175, + "learning_rate": 4.989600840336135e-05, + "loss": 2.8563604736328125, + "step": 100 + }, + { + "epoch": 0.4206098843322818, + "grad_norm": 0.20056591928005219, + "learning_rate": 4.9790966386554624e-05, + "loss": 1.7068206787109375, + "step": 200 + }, + { + "epoch": 0.6309148264984227, + "grad_norm": 0.1861766129732132, + "learning_rate": 4.9685924369747897e-05, + "loss": 1.6134432983398437, + "step": 300 + }, + { + "epoch": 0.8412197686645636, + "grad_norm": 0.1723501980304718, + "learning_rate": 4.9580882352941176e-05, + "loss": 1.5735923767089843, + "step": 400 + }, + { + "epoch": 1.0504731861198737, + "grad_norm": 0.17238108813762665, + "learning_rate": 4.9475840336134455e-05, + "loss": 1.5529734802246093, + "step": 500 + }, + { + "epoch": 1.2607781282860147, + "grad_norm": 0.17322759330272675, + "learning_rate": 4.9370798319327734e-05, + "loss": 1.536485137939453, + "step": 600 + }, + { + "epoch": 1.4710830704521556, + "grad_norm": 0.1677761971950531, + "learning_rate": 4.926575630252101e-05, + "loss": 1.5277809143066405, + "step": 700 + }, + { + "epoch": 1.6813880126182965, + "grad_norm": 0.1636463701725006, + "learning_rate": 4.9160714285714286e-05, + "loss": 1.5190211486816407, + "step": 800 + }, + { + "epoch": 1.8916929547844374, + "grad_norm": 0.16561312973499298, + "learning_rate": 4.9055672268907565e-05, + "loss": 1.51519287109375, + "step": 900 + }, + { + "epoch": 2.1009463722397475, + "grad_norm": 0.15477420389652252, + "learning_rate": 4.8950630252100845e-05, + "loss": 1.5094300842285155, + "step": 1000 + }, + { + "epoch": 2.3112513144058884, + "grad_norm": 0.16169467568397522, + "learning_rate": 4.8845588235294124e-05, + "loss": 1.503891143798828, + "step": 1100 + }, + { + "epoch": 2.5215562565720293, + "grad_norm": 0.1625037044286728, + "learning_rate": 4.8740546218487396e-05, + "loss": 1.5003668212890624, + "step": 1200 + }, + { + "epoch": 2.7318611987381702, + "grad_norm": 0.15850616991519928, + "learning_rate": 4.8635504201680676e-05, + "loss": 1.5004425048828125, + "step": 1300 + }, + { + "epoch": 2.942166140904311, + "grad_norm": 0.15703575313091278, + "learning_rate": 4.8530462184873955e-05, + "loss": 1.4983340454101564, + "step": 1400 + }, + { + "epoch": 3.1514195583596214, + "grad_norm": 0.16104279458522797, + "learning_rate": 4.8425420168067234e-05, + "loss": 1.4921080017089843, + "step": 1500 + }, + { + "epoch": 3.3617245005257623, + "grad_norm": 0.15719465911388397, + "learning_rate": 4.8320378151260507e-05, + "loss": 1.4903582763671874, + "step": 1600 + }, + { + "epoch": 3.5720294426919033, + "grad_norm": 0.15651755034923553, + "learning_rate": 4.821533613445378e-05, + "loss": 1.4904457092285157, + "step": 1700 + }, + { + "epoch": 3.782334384858044, + "grad_norm": 0.14600972831249237, + "learning_rate": 4.811029411764706e-05, + "loss": 1.4897219848632812, + "step": 1800 + }, + { + "epoch": 3.992639327024185, + "grad_norm": 0.15000982582569122, + "learning_rate": 4.800525210084034e-05, + "loss": 1.4866799926757812, + "step": 1900 + }, + { + "epoch": 4.201892744479495, + "grad_norm": 0.1467936933040619, + "learning_rate": 4.790021008403362e-05, + "loss": 1.48007080078125, + "step": 2000 + }, + { + "epoch": 4.412197686645636, + "grad_norm": 0.1541317105293274, + "learning_rate": 4.779516806722689e-05, + "loss": 1.48170166015625, + "step": 2100 + }, + { + "epoch": 4.622502628811777, + "grad_norm": 0.15136213600635529, + "learning_rate": 4.769012605042017e-05, + "loss": 1.4820193481445312, + "step": 2200 + }, + { + "epoch": 4.832807570977918, + "grad_norm": 0.15268521010875702, + "learning_rate": 4.758508403361345e-05, + "loss": 1.4826155090332032, + "step": 2300 + }, + { + "epoch": 5.042060988433228, + "grad_norm": 0.1507953554391861, + "learning_rate": 4.748004201680673e-05, + "loss": 1.4825518798828126, + "step": 2400 + }, + { + "epoch": 5.252365930599369, + "grad_norm": 0.15759222209453583, + "learning_rate": 4.7375e-05, + "loss": 1.4742916870117186, + "step": 2500 + }, + { + "epoch": 5.46267087276551, + "grad_norm": 0.1464644968509674, + "learning_rate": 4.726995798319328e-05, + "loss": 1.47645751953125, + "step": 2600 + }, + { + "epoch": 5.672975814931651, + "grad_norm": 0.1496453732252121, + "learning_rate": 4.716491596638656e-05, + "loss": 1.4782669067382812, + "step": 2700 + }, + { + "epoch": 5.883280757097792, + "grad_norm": 0.15732301771640778, + "learning_rate": 4.705987394957984e-05, + "loss": 1.474007110595703, + "step": 2800 + }, + { + "epoch": 6.092534174553102, + "grad_norm": 0.1535627543926239, + "learning_rate": 4.6954831932773117e-05, + "loss": 1.4723405456542968, + "step": 2900 + }, + { + "epoch": 6.302839116719243, + "grad_norm": 0.15365540981292725, + "learning_rate": 4.684978991596639e-05, + "loss": 1.470570068359375, + "step": 3000 + }, + { + "epoch": 6.513144058885384, + "grad_norm": 0.15696321427822113, + "learning_rate": 4.674474789915967e-05, + "loss": 1.4713912963867188, + "step": 3100 + }, + { + "epoch": 6.723449001051525, + "grad_norm": 0.1542283147573471, + "learning_rate": 4.663970588235294e-05, + "loss": 1.4717630004882813, + "step": 3200 + }, + { + "epoch": 6.933753943217665, + "grad_norm": 0.14150017499923706, + "learning_rate": 4.653466386554622e-05, + "loss": 1.4702410888671875, + "step": 3300 + }, + { + "epoch": 7.143007360672976, + "grad_norm": 0.1593707650899887, + "learning_rate": 4.64296218487395e-05, + "loss": 1.4674795532226563, + "step": 3400 + }, + { + "epoch": 7.353312302839116, + "grad_norm": 0.14085018634796143, + "learning_rate": 4.632457983193277e-05, + "loss": 1.4630509948730468, + "step": 3500 + }, + { + "epoch": 7.563617245005258, + "grad_norm": 0.15045367181301117, + "learning_rate": 4.621953781512605e-05, + "loss": 1.464947509765625, + "step": 3600 + }, + { + "epoch": 7.773922187171398, + "grad_norm": 0.1627761274576187, + "learning_rate": 4.611449579831933e-05, + "loss": 1.4676199340820313, + "step": 3700 + }, + { + "epoch": 7.9842271293375395, + "grad_norm": 0.15296733379364014, + "learning_rate": 4.600945378151261e-05, + "loss": 1.464564208984375, + "step": 3800 + }, + { + "epoch": 8.19348054679285, + "grad_norm": 0.15292306244373322, + "learning_rate": 4.590441176470588e-05, + "loss": 1.460281982421875, + "step": 3900 + }, + { + "epoch": 8.40378548895899, + "grad_norm": 0.14858974516391754, + "learning_rate": 4.579936974789916e-05, + "loss": 1.4601573181152343, + "step": 4000 + }, + { + "epoch": 8.614090431125131, + "grad_norm": 0.1559685617685318, + "learning_rate": 4.569432773109244e-05, + "loss": 1.459988555908203, + "step": 4100 + }, + { + "epoch": 8.824395373291273, + "grad_norm": 0.16048291325569153, + "learning_rate": 4.558928571428572e-05, + "loss": 1.4614971923828124, + "step": 4200 + }, + { + "epoch": 9.033648790746582, + "grad_norm": 0.15471497178077698, + "learning_rate": 4.548424369747899e-05, + "loss": 1.4605735778808593, + "step": 4300 + }, + { + "epoch": 9.243953732912724, + "grad_norm": 0.14675338566303253, + "learning_rate": 4.537920168067227e-05, + "loss": 1.4529206848144531, + "step": 4400 + }, + { + "epoch": 9.454258675078865, + "grad_norm": 0.15218420326709747, + "learning_rate": 4.527415966386555e-05, + "loss": 1.4555152893066405, + "step": 4500 + }, + { + "epoch": 9.664563617245005, + "grad_norm": 0.15305759012699127, + "learning_rate": 4.516911764705883e-05, + "loss": 1.4550628662109375, + "step": 4600 + }, + { + "epoch": 9.874868559411146, + "grad_norm": 0.14932408928871155, + "learning_rate": 4.50640756302521e-05, + "loss": 1.4576924133300782, + "step": 4700 + }, + { + "epoch": 10.084121976866456, + "grad_norm": 0.15317517518997192, + "learning_rate": 4.4959033613445375e-05, + "loss": 1.45219482421875, + "step": 4800 + }, + { + "epoch": 10.294426919032597, + "grad_norm": 0.14954303205013275, + "learning_rate": 4.4853991596638654e-05, + "loss": 1.4481625366210937, + "step": 4900 + }, + { + "epoch": 10.504731861198739, + "grad_norm": 0.1534873992204666, + "learning_rate": 4.4748949579831934e-05, + "loss": 1.4501405334472657, + "step": 5000 + }, + { + "epoch": 10.715036803364878, + "grad_norm": 0.1542547196149826, + "learning_rate": 4.464390756302521e-05, + "loss": 1.452711181640625, + "step": 5100 + }, + { + "epoch": 10.92534174553102, + "grad_norm": 0.15033429861068726, + "learning_rate": 4.453886554621849e-05, + "loss": 1.4518144226074219, + "step": 5200 + }, + { + "epoch": 11.13459516298633, + "grad_norm": 0.16419348120689392, + "learning_rate": 4.4433823529411765e-05, + "loss": 1.4447087097167968, + "step": 5300 + }, + { + "epoch": 11.34490010515247, + "grad_norm": 0.15558737516403198, + "learning_rate": 4.4328781512605044e-05, + "loss": 1.4432438659667968, + "step": 5400 + }, + { + "epoch": 11.555205047318612, + "grad_norm": 0.16111871600151062, + "learning_rate": 4.422373949579832e-05, + "loss": 1.44447509765625, + "step": 5500 + }, + { + "epoch": 11.765509989484753, + "grad_norm": 0.15655963122844696, + "learning_rate": 4.41186974789916e-05, + "loss": 1.446072998046875, + "step": 5600 + }, + { + "epoch": 11.975814931650893, + "grad_norm": 0.1640811264514923, + "learning_rate": 4.4013655462184875e-05, + "loss": 1.4470193481445313, + "step": 5700 + }, + { + "epoch": 12.185068349106205, + "grad_norm": 0.16302675008773804, + "learning_rate": 4.3908613445378154e-05, + "loss": 1.4352632141113282, + "step": 5800 + }, + { + "epoch": 12.395373291272344, + "grad_norm": 0.16527259349822998, + "learning_rate": 4.380357142857143e-05, + "loss": 1.4378224182128907, + "step": 5900 + }, + { + "epoch": 12.605678233438486, + "grad_norm": 0.15840137004852295, + "learning_rate": 4.369852941176471e-05, + "loss": 1.438340301513672, + "step": 6000 + }, + { + "epoch": 12.815983175604627, + "grad_norm": 0.16105377674102783, + "learning_rate": 4.3593487394957985e-05, + "loss": 1.4395623779296876, + "step": 6100 + }, + { + "epoch": 13.025236593059937, + "grad_norm": 0.1645898073911667, + "learning_rate": 4.348844537815126e-05, + "loss": 1.4419912719726562, + "step": 6200 + }, + { + "epoch": 13.235541535226078, + "grad_norm": 0.16387709975242615, + "learning_rate": 4.338340336134454e-05, + "loss": 1.4292103576660156, + "step": 6300 + }, + { + "epoch": 13.44584647739222, + "grad_norm": 0.16231203079223633, + "learning_rate": 4.3278361344537816e-05, + "loss": 1.4302072143554687, + "step": 6400 + }, + { + "epoch": 13.656151419558359, + "grad_norm": 0.17272767424583435, + "learning_rate": 4.3173319327731095e-05, + "loss": 1.4360617065429688, + "step": 6500 + }, + { + "epoch": 13.8664563617245, + "grad_norm": 0.16650696098804474, + "learning_rate": 4.306827731092437e-05, + "loss": 1.43187744140625, + "step": 6600 + }, + { + "epoch": 14.07570977917981, + "grad_norm": 0.17131085693836212, + "learning_rate": 4.296323529411765e-05, + "loss": 1.428362579345703, + "step": 6700 + }, + { + "epoch": 14.286014721345952, + "grad_norm": 0.1767681986093521, + "learning_rate": 4.2858193277310926e-05, + "loss": 1.4247616577148436, + "step": 6800 + }, + { + "epoch": 14.496319663512093, + "grad_norm": 0.17670001089572906, + "learning_rate": 4.2753151260504206e-05, + "loss": 1.4254454040527345, + "step": 6900 + }, + { + "epoch": 14.706624605678233, + "grad_norm": 0.1740790754556656, + "learning_rate": 4.2648109243697485e-05, + "loss": 1.4258729553222655, + "step": 7000 + }, + { + "epoch": 14.916929547844374, + "grad_norm": 0.1759176403284073, + "learning_rate": 4.254306722689076e-05, + "loss": 1.429442138671875, + "step": 7100 + }, + { + "epoch": 15.126182965299684, + "grad_norm": 0.17811505496501923, + "learning_rate": 4.2438025210084037e-05, + "loss": 1.4193470764160157, + "step": 7200 + }, + { + "epoch": 15.336487907465825, + "grad_norm": 0.1877354234457016, + "learning_rate": 4.2332983193277316e-05, + "loss": 1.4145277404785157, + "step": 7300 + }, + { + "epoch": 15.546792849631967, + "grad_norm": 0.18199266493320465, + "learning_rate": 4.2227941176470595e-05, + "loss": 1.4196495056152343, + "step": 7400 + }, + { + "epoch": 15.757097791798108, + "grad_norm": 0.18197669088840485, + "learning_rate": 4.212289915966387e-05, + "loss": 1.418301544189453, + "step": 7500 + }, + { + "epoch": 15.967402733964247, + "grad_norm": 0.1789412796497345, + "learning_rate": 4.201785714285714e-05, + "loss": 1.4207553100585937, + "step": 7600 + }, + { + "epoch": 16.176656151419557, + "grad_norm": 0.19073587656021118, + "learning_rate": 4.191281512605042e-05, + "loss": 1.405756072998047, + "step": 7700 + }, + { + "epoch": 16.3869610935857, + "grad_norm": 0.20197375118732452, + "learning_rate": 4.18077731092437e-05, + "loss": 1.4052299499511718, + "step": 7800 + }, + { + "epoch": 16.59726603575184, + "grad_norm": 0.19041137397289276, + "learning_rate": 4.170273109243698e-05, + "loss": 1.4102354431152344, + "step": 7900 + }, + { + "epoch": 16.80757097791798, + "grad_norm": 0.18918046355247498, + "learning_rate": 4.159768907563025e-05, + "loss": 1.4105937194824218, + "step": 8000 + }, + { + "epoch": 17.01682439537329, + "grad_norm": 0.20001663267612457, + "learning_rate": 4.149264705882353e-05, + "loss": 1.4125469970703124, + "step": 8100 + }, + { + "epoch": 17.22712933753943, + "grad_norm": 0.20373570919036865, + "learning_rate": 4.138760504201681e-05, + "loss": 1.3912005615234375, + "step": 8200 + }, + { + "epoch": 17.437434279705574, + "grad_norm": 0.21228203177452087, + "learning_rate": 4.128256302521009e-05, + "loss": 1.400099334716797, + "step": 8300 + }, + { + "epoch": 17.647739221871714, + "grad_norm": 0.19748076796531677, + "learning_rate": 4.117752100840336e-05, + "loss": 1.3983584594726564, + "step": 8400 + }, + { + "epoch": 17.858044164037857, + "grad_norm": 0.19849108159542084, + "learning_rate": 4.107247899159664e-05, + "loss": 1.4034251403808593, + "step": 8500 + }, + { + "epoch": 18.067297581493165, + "grad_norm": 0.20575450360774994, + "learning_rate": 4.096743697478992e-05, + "loss": 1.3967425537109375, + "step": 8600 + }, + { + "epoch": 18.277602523659304, + "grad_norm": 0.21221311390399933, + "learning_rate": 4.08623949579832e-05, + "loss": 1.3828977966308593, + "step": 8700 + }, + { + "epoch": 18.487907465825447, + "grad_norm": 0.21134966611862183, + "learning_rate": 4.075735294117648e-05, + "loss": 1.3854733276367188, + "step": 8800 + }, + { + "epoch": 18.698212407991587, + "grad_norm": 0.22016377747058868, + "learning_rate": 4.065231092436975e-05, + "loss": 1.3901968383789063, + "step": 8900 + }, + { + "epoch": 18.90851735015773, + "grad_norm": 0.21417804062366486, + "learning_rate": 4.054726890756303e-05, + "loss": 1.393634033203125, + "step": 9000 + }, + { + "epoch": 19.117770767613038, + "grad_norm": 0.22256560623645782, + "learning_rate": 4.04422268907563e-05, + "loss": 1.3783042907714844, + "step": 9100 + }, + { + "epoch": 19.32807570977918, + "grad_norm": 0.22738981246948242, + "learning_rate": 4.033718487394958e-05, + "loss": 1.370293426513672, + "step": 9200 + }, + { + "epoch": 19.53838065194532, + "grad_norm": 0.22241266071796417, + "learning_rate": 4.023214285714286e-05, + "loss": 1.3737275695800781, + "step": 9300 + }, + { + "epoch": 19.74868559411146, + "grad_norm": 0.23391330242156982, + "learning_rate": 4.012710084033613e-05, + "loss": 1.377355194091797, + "step": 9400 + }, + { + "epoch": 19.958990536277604, + "grad_norm": 0.22519543766975403, + "learning_rate": 4.002205882352941e-05, + "loss": 1.3812960815429687, + "step": 9500 + }, + { + "epoch": 20.16824395373291, + "grad_norm": 0.24074196815490723, + "learning_rate": 3.991701680672269e-05, + "loss": 1.3570118713378907, + "step": 9600 + }, + { + "epoch": 20.378548895899055, + "grad_norm": 0.24606694281101227, + "learning_rate": 3.981197478991597e-05, + "loss": 1.3554267883300781, + "step": 9700 + }, + { + "epoch": 20.588853838065194, + "grad_norm": 0.23913830518722534, + "learning_rate": 3.970693277310924e-05, + "loss": 1.3621504211425781, + "step": 9800 + }, + { + "epoch": 20.799158780231334, + "grad_norm": 0.2383037805557251, + "learning_rate": 3.960189075630252e-05, + "loss": 1.3660731506347656, + "step": 9900 + }, + { + "epoch": 21.008412197686646, + "grad_norm": 0.241073340177536, + "learning_rate": 3.94968487394958e-05, + "loss": 1.3653842163085939, + "step": 10000 + }, + { + "epoch": 21.218717139852785, + "grad_norm": 0.25740981101989746, + "learning_rate": 3.939180672268908e-05, + "loss": 1.3331489562988281, + "step": 10100 + }, + { + "epoch": 21.42902208201893, + "grad_norm": 0.25830078125, + "learning_rate": 3.928676470588235e-05, + "loss": 1.3397677612304688, + "step": 10200 + }, + { + "epoch": 21.639327024185068, + "grad_norm": 0.26326829195022583, + "learning_rate": 3.918172268907563e-05, + "loss": 1.3485836791992187, + "step": 10300 + }, + { + "epoch": 21.84963196635121, + "grad_norm": 0.26259171962738037, + "learning_rate": 3.907668067226891e-05, + "loss": 1.3472573852539063, + "step": 10400 + }, + { + "epoch": 22.05888538380652, + "grad_norm": 0.27395525574684143, + "learning_rate": 3.897163865546219e-05, + "loss": 1.3426994323730468, + "step": 10500 + }, + { + "epoch": 22.26919032597266, + "grad_norm": 0.2820175290107727, + "learning_rate": 3.8866596638655463e-05, + "loss": 1.3179571533203125, + "step": 10600 + }, + { + "epoch": 22.479495268138802, + "grad_norm": 0.2815999984741211, + "learning_rate": 3.8761554621848736e-05, + "loss": 1.3242898559570313, + "step": 10700 + }, + { + "epoch": 22.68980021030494, + "grad_norm": 0.2788920998573303, + "learning_rate": 3.8656512605042015e-05, + "loss": 1.328133087158203, + "step": 10800 + }, + { + "epoch": 22.900105152471085, + "grad_norm": 0.2880179286003113, + "learning_rate": 3.8551470588235294e-05, + "loss": 1.3323233032226562, + "step": 10900 + }, + { + "epoch": 23.109358569926393, + "grad_norm": 0.29323825240135193, + "learning_rate": 3.8446428571428574e-05, + "loss": 1.3124215698242188, + "step": 11000 + }, + { + "epoch": 23.319663512092536, + "grad_norm": 0.3037724196910858, + "learning_rate": 3.834138655462185e-05, + "loss": 1.300673370361328, + "step": 11100 + }, + { + "epoch": 23.529968454258675, + "grad_norm": 0.3019108772277832, + "learning_rate": 3.8236344537815125e-05, + "loss": 1.3033621215820312, + "step": 11200 + }, + { + "epoch": 23.740273396424815, + "grad_norm": 0.3141040503978729, + "learning_rate": 3.8131302521008405e-05, + "loss": 1.3118415832519532, + "step": 11300 + }, + { + "epoch": 23.950578338590958, + "grad_norm": 0.305362731218338, + "learning_rate": 3.8026260504201684e-05, + "loss": 1.3120425415039063, + "step": 11400 + }, + { + "epoch": 24.159831756046266, + "grad_norm": 0.3149303197860718, + "learning_rate": 3.792121848739496e-05, + "loss": 1.281750946044922, + "step": 11500 + }, + { + "epoch": 24.37013669821241, + "grad_norm": 0.31983524560928345, + "learning_rate": 3.7816176470588236e-05, + "loss": 1.2786111450195312, + "step": 11600 + }, + { + "epoch": 24.58044164037855, + "grad_norm": 0.32351240515708923, + "learning_rate": 3.7711134453781515e-05, + "loss": 1.284888916015625, + "step": 11700 + }, + { + "epoch": 24.79074658254469, + "grad_norm": 0.3239966034889221, + "learning_rate": 3.7606092436974794e-05, + "loss": 1.2899176025390624, + "step": 11800 + }, + { + "epoch": 25.0, + "grad_norm": 0.49487531185150146, + "learning_rate": 3.7501050420168073e-05, + "loss": 1.2903105163574218, + "step": 11900 + }, + { + "epoch": 25.21030494216614, + "grad_norm": 0.343091756105423, + "learning_rate": 3.7396008403361346e-05, + "loss": 1.24728271484375, + "step": 12000 + }, + { + "epoch": 25.420609884332283, + "grad_norm": 0.3502146899700165, + "learning_rate": 3.729096638655462e-05, + "loss": 1.2573788452148438, + "step": 12100 + }, + { + "epoch": 25.630914826498422, + "grad_norm": 0.34780803322792053, + "learning_rate": 3.71859243697479e-05, + "loss": 1.259660186767578, + "step": 12200 + }, + { + "epoch": 25.841219768664562, + "grad_norm": 0.3617474436759949, + "learning_rate": 3.708088235294118e-05, + "loss": 1.267321548461914, + "step": 12300 + }, + { + "epoch": 26.050473186119874, + "grad_norm": 0.36151477694511414, + "learning_rate": 3.6975840336134456e-05, + "loss": 1.2569818878173828, + "step": 12400 + }, + { + "epoch": 26.260778128286013, + "grad_norm": 0.3706369400024414, + "learning_rate": 3.687079831932773e-05, + "loss": 1.2217762756347657, + "step": 12500 + }, + { + "epoch": 26.471083070452156, + "grad_norm": 0.36876797676086426, + "learning_rate": 3.676575630252101e-05, + "loss": 1.2311412048339845, + "step": 12600 + }, + { + "epoch": 26.681388012618296, + "grad_norm": 0.37329521775245667, + "learning_rate": 3.666071428571429e-05, + "loss": 1.23805908203125, + "step": 12700 + }, + { + "epoch": 26.89169295478444, + "grad_norm": 0.3803170919418335, + "learning_rate": 3.6555672268907566e-05, + "loss": 1.2423350524902343, + "step": 12800 + }, + { + "epoch": 27.100946372239747, + "grad_norm": 0.3833712637424469, + "learning_rate": 3.6450630252100846e-05, + "loss": 1.222099609375, + "step": 12900 + }, + { + "epoch": 27.31125131440589, + "grad_norm": 0.3987831771373749, + "learning_rate": 3.634558823529412e-05, + "loss": 1.1973797607421874, + "step": 13000 + }, + { + "epoch": 27.52155625657203, + "grad_norm": 0.39121338725090027, + "learning_rate": 3.62405462184874e-05, + "loss": 1.206004409790039, + "step": 13100 + }, + { + "epoch": 27.73186119873817, + "grad_norm": 0.4020472764968872, + "learning_rate": 3.613550420168068e-05, + "loss": 1.2129373168945312, + "step": 13200 + }, + { + "epoch": 27.942166140904312, + "grad_norm": 0.4015159606933594, + "learning_rate": 3.6030462184873956e-05, + "loss": 1.2179686737060547, + "step": 13300 + }, + { + "epoch": 28.15141955835962, + "grad_norm": 0.3998790681362152, + "learning_rate": 3.592542016806723e-05, + "loss": 1.1833483123779296, + "step": 13400 + }, + { + "epoch": 28.361724500525764, + "grad_norm": 0.4190026819705963, + "learning_rate": 3.582037815126051e-05, + "loss": 1.1737586975097656, + "step": 13500 + }, + { + "epoch": 28.572029442691903, + "grad_norm": 0.4131736159324646, + "learning_rate": 3.571533613445378e-05, + "loss": 1.1806912231445312, + "step": 13600 + }, + { + "epoch": 28.782334384858043, + "grad_norm": 0.4250866174697876, + "learning_rate": 3.561029411764706e-05, + "loss": 1.1913446044921876, + "step": 13700 + }, + { + "epoch": 28.992639327024186, + "grad_norm": 0.4264129400253296, + "learning_rate": 3.550525210084034e-05, + "loss": 1.1878318786621094, + "step": 13800 + }, + { + "epoch": 29.201892744479494, + "grad_norm": 0.43633338809013367, + "learning_rate": 3.540021008403361e-05, + "loss": 1.1386358642578125, + "step": 13900 + }, + { + "epoch": 29.412197686645637, + "grad_norm": 0.4486881494522095, + "learning_rate": 3.529516806722689e-05, + "loss": 1.1477174377441406, + "step": 14000 + }, + { + "epoch": 29.622502628811777, + "grad_norm": 0.4420314133167267, + "learning_rate": 3.519012605042017e-05, + "loss": 1.1530896759033202, + "step": 14100 + }, + { + "epoch": 29.832807570977916, + "grad_norm": 0.4598003327846527, + "learning_rate": 3.508508403361345e-05, + "loss": 1.16252197265625, + "step": 14200 + }, + { + "epoch": 30.042060988433228, + "grad_norm": 0.44520533084869385, + "learning_rate": 3.498004201680672e-05, + "loss": 1.1551103973388672, + "step": 14300 + }, + { + "epoch": 30.252365930599368, + "grad_norm": 0.45871588587760925, + "learning_rate": 3.4875e-05, + "loss": 1.107753448486328, + "step": 14400 + }, + { + "epoch": 30.46267087276551, + "grad_norm": 0.46063199639320374, + "learning_rate": 3.476995798319328e-05, + "loss": 1.1182296752929688, + "step": 14500 + }, + { + "epoch": 30.67297581493165, + "grad_norm": 0.4760204553604126, + "learning_rate": 3.466491596638656e-05, + "loss": 1.129236373901367, + "step": 14600 + }, + { + "epoch": 30.883280757097793, + "grad_norm": 0.47249314188957214, + "learning_rate": 3.455987394957984e-05, + "loss": 1.1352229309082031, + "step": 14700 + }, + { + "epoch": 31.0925341745531, + "grad_norm": 0.4624006450176239, + "learning_rate": 3.445483193277311e-05, + "loss": 1.1082867431640624, + "step": 14800 + }, + { + "epoch": 31.302839116719245, + "grad_norm": 0.4787958264350891, + "learning_rate": 3.434978991596639e-05, + "loss": 1.0818411254882812, + "step": 14900 + }, + { + "epoch": 31.513144058885384, + "grad_norm": 0.4875246286392212, + "learning_rate": 3.424474789915967e-05, + "loss": 1.092553939819336, + "step": 15000 + }, + { + "epoch": 31.723449001051524, + "grad_norm": 0.48742467164993286, + "learning_rate": 3.413970588235294e-05, + "loss": 1.1002989959716798, + "step": 15100 + }, + { + "epoch": 31.933753943217667, + "grad_norm": 0.5014126896858215, + "learning_rate": 3.403466386554622e-05, + "loss": 1.1067331695556641, + "step": 15200 + }, + { + "epoch": 32.143007360672975, + "grad_norm": 0.48793110251426697, + "learning_rate": 3.3929621848739494e-05, + "loss": 1.0649752807617188, + "step": 15300 + }, + { + "epoch": 32.353312302839115, + "grad_norm": 0.5064884424209595, + "learning_rate": 3.382457983193277e-05, + "loss": 1.0489683532714844, + "step": 15400 + }, + { + "epoch": 32.56361724500526, + "grad_norm": 0.5118729472160339, + "learning_rate": 3.371953781512605e-05, + "loss": 1.0648185729980468, + "step": 15500 + }, + { + "epoch": 32.7739221871714, + "grad_norm": 0.5236688852310181, + "learning_rate": 3.361449579831933e-05, + "loss": 1.0743647766113282, + "step": 15600 + }, + { + "epoch": 32.98422712933754, + "grad_norm": 0.5397860407829285, + "learning_rate": 3.3509453781512604e-05, + "loss": 1.080048828125, + "step": 15700 + }, + { + "epoch": 33.19348054679285, + "grad_norm": 0.5270755290985107, + "learning_rate": 3.340441176470588e-05, + "loss": 1.0228548431396485, + "step": 15800 + }, + { + "epoch": 33.40378548895899, + "grad_norm": 0.5429406762123108, + "learning_rate": 3.329936974789916e-05, + "loss": 1.028949966430664, + "step": 15900 + }, + { + "epoch": 33.614090431125135, + "grad_norm": 0.5323997735977173, + "learning_rate": 3.319432773109244e-05, + "loss": 1.037523956298828, + "step": 16000 + }, + { + "epoch": 33.824395373291274, + "grad_norm": 0.5385149717330933, + "learning_rate": 3.3090336134453784e-05, + "loss": 1.0431160736083984, + "step": 16100 + }, + { + "epoch": 34.03364879074658, + "grad_norm": 0.5089665651321411, + "learning_rate": 3.2986344537815127e-05, + "loss": 1.0349723815917968, + "step": 16200 + }, + { + "epoch": 34.24395373291272, + "grad_norm": 0.5455434918403625, + "learning_rate": 3.2881302521008406e-05, + "loss": 0.988803482055664, + "step": 16300 + }, + { + "epoch": 34.45425867507886, + "grad_norm": 0.5569856762886047, + "learning_rate": 3.2776260504201685e-05, + "loss": 1.0031266021728515, + "step": 16400 + }, + { + "epoch": 34.66456361724501, + "grad_norm": 0.5644022226333618, + "learning_rate": 3.2671218487394964e-05, + "loss": 1.0083402252197267, + "step": 16500 + }, + { + "epoch": 34.87486855941115, + "grad_norm": 0.5685406923294067, + "learning_rate": 3.256617647058824e-05, + "loss": 1.0177439117431641, + "step": 16600 + }, + { + "epoch": 35.084121976866456, + "grad_norm": 0.543632447719574, + "learning_rate": 3.2461134453781516e-05, + "loss": 0.9930455780029297, + "step": 16700 + }, + { + "epoch": 35.294426919032595, + "grad_norm": 0.5612316727638245, + "learning_rate": 3.2356092436974795e-05, + "loss": 0.9650897216796875, + "step": 16800 + }, + { + "epoch": 35.504731861198735, + "grad_norm": 0.5759446024894714, + "learning_rate": 3.225105042016807e-05, + "loss": 0.973653564453125, + "step": 16900 + }, + { + "epoch": 35.71503680336488, + "grad_norm": 0.574255645275116, + "learning_rate": 3.214600840336135e-05, + "loss": 0.981424560546875, + "step": 17000 + }, + { + "epoch": 35.92534174553102, + "grad_norm": 0.5851606726646423, + "learning_rate": 3.204096638655462e-05, + "loss": 0.991123046875, + "step": 17100 + }, + { + "epoch": 36.13459516298633, + "grad_norm": 0.5589666366577148, + "learning_rate": 3.19359243697479e-05, + "loss": 0.9481909942626953, + "step": 17200 + }, + { + "epoch": 36.34490010515247, + "grad_norm": 0.5968824625015259, + "learning_rate": 3.183088235294118e-05, + "loss": 0.9365898895263672, + "step": 17300 + }, + { + "epoch": 36.55520504731861, + "grad_norm": 0.5998508930206299, + "learning_rate": 3.172584033613446e-05, + "loss": 0.9492893218994141, + "step": 17400 + }, + { + "epoch": 36.765509989484755, + "grad_norm": 0.6060558557510376, + "learning_rate": 3.162079831932773e-05, + "loss": 0.9547823333740234, + "step": 17500 + }, + { + "epoch": 36.975814931650895, + "grad_norm": 0.589341402053833, + "learning_rate": 3.151575630252101e-05, + "loss": 0.9626276397705078, + "step": 17600 + }, + { + "epoch": 37.1850683491062, + "grad_norm": 0.5891321897506714, + "learning_rate": 3.141071428571429e-05, + "loss": 0.9065424346923828, + "step": 17700 + }, + { + "epoch": 37.39537329127234, + "grad_norm": 0.5880729556083679, + "learning_rate": 3.130567226890757e-05, + "loss": 0.9107749938964844, + "step": 17800 + }, + { + "epoch": 37.60567823343849, + "grad_norm": 0.6077774167060852, + "learning_rate": 3.120063025210084e-05, + "loss": 0.9193459320068359, + "step": 17900 + }, + { + "epoch": 37.81598317560463, + "grad_norm": 0.6189863681793213, + "learning_rate": 3.109558823529412e-05, + "loss": 0.9286084747314454, + "step": 18000 + }, + { + "epoch": 38.02523659305994, + "grad_norm": 0.5724475383758545, + "learning_rate": 3.09905462184874e-05, + "loss": 0.9282203674316406, + "step": 18100 + }, + { + "epoch": 38.235541535226076, + "grad_norm": 0.5952550768852234, + "learning_rate": 3.088550420168068e-05, + "loss": 0.8734053039550781, + "step": 18200 + }, + { + "epoch": 38.445846477392216, + "grad_norm": 0.5967536568641663, + "learning_rate": 3.078046218487395e-05, + "loss": 0.886033935546875, + "step": 18300 + }, + { + "epoch": 38.65615141955836, + "grad_norm": 0.6298649311065674, + "learning_rate": 3.067542016806722e-05, + "loss": 0.8977913665771484, + "step": 18400 + }, + { + "epoch": 38.8664563617245, + "grad_norm": 0.6457948684692383, + "learning_rate": 3.05703781512605e-05, + "loss": 0.9048082733154297, + "step": 18500 + }, + { + "epoch": 39.07570977917981, + "grad_norm": 0.6172012090682983, + "learning_rate": 3.046533613445378e-05, + "loss": 0.8857656860351563, + "step": 18600 + }, + { + "epoch": 39.28601472134595, + "grad_norm": 0.5979504585266113, + "learning_rate": 3.036029411764706e-05, + "loss": 0.8502845001220704, + "step": 18700 + }, + { + "epoch": 39.49631966351209, + "grad_norm": 0.6284430623054504, + "learning_rate": 3.0255252100840336e-05, + "loss": 0.8602873229980469, + "step": 18800 + }, + { + "epoch": 39.706624605678236, + "grad_norm": 0.6330845355987549, + "learning_rate": 3.0150210084033616e-05, + "loss": 0.8690576934814453, + "step": 18900 + }, + { + "epoch": 39.916929547844376, + "grad_norm": 0.6465399861335754, + "learning_rate": 3.004516806722689e-05, + "loss": 0.8787310791015625, + "step": 19000 + }, + { + "epoch": 40.126182965299684, + "grad_norm": 0.6255329251289368, + "learning_rate": 2.994117647058824e-05, + "loss": 0.84158203125, + "step": 19100 + }, + { + "epoch": 40.33648790746582, + "grad_norm": 0.6304967999458313, + "learning_rate": 2.983613445378151e-05, + "loss": 0.8283135223388672, + "step": 19200 + }, + { + "epoch": 40.54679284963196, + "grad_norm": 0.6366279125213623, + "learning_rate": 2.973109243697479e-05, + "loss": 0.8385968780517579, + "step": 19300 + }, + { + "epoch": 40.75709779179811, + "grad_norm": 0.6407002210617065, + "learning_rate": 2.9626050420168065e-05, + "loss": 0.8465004730224609, + "step": 19400 + }, + { + "epoch": 40.96740273396425, + "grad_norm": 0.6582015156745911, + "learning_rate": 2.9521008403361344e-05, + "loss": 0.8523696136474609, + "step": 19500 + }, + { + "epoch": 41.17665615141956, + "grad_norm": 0.6326037645339966, + "learning_rate": 2.9415966386554624e-05, + "loss": 0.8025535583496094, + "step": 19600 + }, + { + "epoch": 41.3869610935857, + "grad_norm": 0.631605863571167, + "learning_rate": 2.93109243697479e-05, + "loss": 0.8077165222167969, + "step": 19700 + }, + { + "epoch": 41.597266035751844, + "grad_norm": 0.6400684118270874, + "learning_rate": 2.920588235294118e-05, + "loss": 0.8162235260009766, + "step": 19800 + }, + { + "epoch": 41.80757097791798, + "grad_norm": 0.6499695181846619, + "learning_rate": 2.9100840336134455e-05, + "loss": 0.8243218231201171, + "step": 19900 + }, + { + "epoch": 42.01682439537329, + "grad_norm": 0.6392955183982849, + "learning_rate": 2.8995798319327734e-05, + "loss": 0.8244134521484375, + "step": 20000 + }, + { + "epoch": 42.22712933753943, + "grad_norm": 0.6429536938667297, + "learning_rate": 2.889075630252101e-05, + "loss": 0.7711881256103515, + "step": 20100 + }, + { + "epoch": 42.43743427970557, + "grad_norm": 0.6592206358909607, + "learning_rate": 2.878571428571429e-05, + "loss": 0.7841451263427734, + "step": 20200 + }, + { + "epoch": 42.64773922187172, + "grad_norm": 0.6881083846092224, + "learning_rate": 2.8680672268907565e-05, + "loss": 0.792880859375, + "step": 20300 + }, + { + "epoch": 42.85804416403786, + "grad_norm": 0.6662302017211914, + "learning_rate": 2.8575630252100844e-05, + "loss": 0.8001659393310547, + "step": 20400 + }, + { + "epoch": 43.067297581493165, + "grad_norm": 0.6177626252174377, + "learning_rate": 2.847058823529412e-05, + "loss": 0.7870485687255859, + "step": 20500 + }, + { + "epoch": 43.277602523659304, + "grad_norm": 0.6681060194969177, + "learning_rate": 2.83655462184874e-05, + "loss": 0.7512457275390625, + "step": 20600 + }, + { + "epoch": 43.487907465825444, + "grad_norm": 0.669675886631012, + "learning_rate": 2.826050420168067e-05, + "loss": 0.7591960144042968, + "step": 20700 + }, + { + "epoch": 43.69821240799159, + "grad_norm": 0.7097092866897583, + "learning_rate": 2.8155462184873948e-05, + "loss": 0.7737602233886719, + "step": 20800 + }, + { + "epoch": 43.90851735015773, + "grad_norm": 0.6951079964637756, + "learning_rate": 2.8050420168067227e-05, + "loss": 0.7815242767333984, + "step": 20900 + }, + { + "epoch": 44.11777076761304, + "grad_norm": 0.639824390411377, + "learning_rate": 2.7945378151260503e-05, + "loss": 0.7512903594970703, + "step": 21000 + }, + { + "epoch": 44.32807570977918, + "grad_norm": 0.67326819896698, + "learning_rate": 2.7840336134453782e-05, + "loss": 0.7329978179931641, + "step": 21100 + }, + { + "epoch": 44.53838065194532, + "grad_norm": 0.6938571333885193, + "learning_rate": 2.7735294117647058e-05, + "loss": 0.7421668243408203, + "step": 21200 + }, + { + "epoch": 44.748685594111464, + "grad_norm": 0.6845099925994873, + "learning_rate": 2.7630252100840337e-05, + "loss": 0.7509217071533203, + "step": 21300 + }, + { + "epoch": 44.958990536277604, + "grad_norm": 0.681825578212738, + "learning_rate": 2.7525210084033616e-05, + "loss": 0.7620004272460937, + "step": 21400 + }, + { + "epoch": 45.16824395373291, + "grad_norm": 0.6556856036186218, + "learning_rate": 2.7421218487394962e-05, + "loss": 0.7184288787841797, + "step": 21500 + }, + { + "epoch": 45.37854889589905, + "grad_norm": 0.6386471390724182, + "learning_rate": 2.7316176470588235e-05, + "loss": 0.7161962127685547, + "step": 21600 + }, + { + "epoch": 45.5888538380652, + "grad_norm": 0.6947113275527954, + "learning_rate": 2.721113445378151e-05, + "loss": 0.7244486999511719, + "step": 21700 + }, + { + "epoch": 45.79915878023134, + "grad_norm": 0.6741232872009277, + "learning_rate": 2.710609243697479e-05, + "loss": 0.7308968353271484, + "step": 21800 + }, + { + "epoch": 46.008412197686646, + "grad_norm": 0.6631771326065063, + "learning_rate": 2.7001050420168066e-05, + "loss": 0.7323504638671875, + "step": 21900 + }, + { + "epoch": 46.218717139852785, + "grad_norm": 0.6702309250831604, + "learning_rate": 2.6896008403361345e-05, + "loss": 0.6865713500976562, + "step": 22000 + }, + { + "epoch": 46.429022082018925, + "grad_norm": 0.6711138486862183, + "learning_rate": 2.679096638655462e-05, + "loss": 0.697294921875, + "step": 22100 + }, + { + "epoch": 46.63932702418507, + "grad_norm": 0.7067892551422119, + "learning_rate": 2.66859243697479e-05, + "loss": 0.70609619140625, + "step": 22200 + }, + { + "epoch": 46.84963196635121, + "grad_norm": 0.6743476390838623, + "learning_rate": 2.658088235294118e-05, + "loss": 0.7116059112548828, + "step": 22300 + }, + { + "epoch": 47.05888538380652, + "grad_norm": 0.642842710018158, + "learning_rate": 2.6475840336134455e-05, + "loss": 0.7024728393554688, + "step": 22400 + }, + { + "epoch": 47.26919032597266, + "grad_norm": 0.6852782368659973, + "learning_rate": 2.6370798319327734e-05, + "loss": 0.6698217010498047, + "step": 22500 + }, + { + "epoch": 47.4794952681388, + "grad_norm": 0.6817244291305542, + "learning_rate": 2.626575630252101e-05, + "loss": 0.6796794891357422, + "step": 22600 + }, + { + "epoch": 47.689800210304945, + "grad_norm": 0.665703535079956, + "learning_rate": 2.616071428571429e-05, + "loss": 0.689930191040039, + "step": 22700 + }, + { + "epoch": 47.900105152471085, + "grad_norm": 0.7286046147346497, + "learning_rate": 2.6055672268907565e-05, + "loss": 0.6968262481689453, + "step": 22800 + }, + { + "epoch": 48.10935856992639, + "grad_norm": 0.6568066477775574, + "learning_rate": 2.5950630252100845e-05, + "loss": 0.6714718627929688, + "step": 22900 + }, + { + "epoch": 48.31966351209253, + "grad_norm": 0.6909933090209961, + "learning_rate": 2.584558823529412e-05, + "loss": 0.6521046447753907, + "step": 23000 + }, + { + "epoch": 48.52996845425867, + "grad_norm": 0.6730957627296448, + "learning_rate": 2.5740546218487393e-05, + "loss": 0.6635847473144532, + "step": 23100 + }, + { + "epoch": 48.74027339642482, + "grad_norm": 0.7137960195541382, + "learning_rate": 2.5635504201680672e-05, + "loss": 0.6703518676757813, + "step": 23200 + }, + { + "epoch": 48.95057833859096, + "grad_norm": 0.7035015225410461, + "learning_rate": 2.5530462184873948e-05, + "loss": 0.678240737915039, + "step": 23300 + }, + { + "epoch": 49.159831756046266, + "grad_norm": 0.6768185496330261, + "learning_rate": 2.5425420168067227e-05, + "loss": 0.6413292694091797, + "step": 23400 + }, + { + "epoch": 49.370136698212406, + "grad_norm": 0.6941663026809692, + "learning_rate": 2.5320378151260503e-05, + "loss": 0.6415236663818359, + "step": 23500 + }, + { + "epoch": 49.58044164037855, + "grad_norm": 0.722435712814331, + "learning_rate": 2.5215336134453782e-05, + "loss": 0.6499783325195313, + "step": 23600 + }, + { + "epoch": 49.79074658254469, + "grad_norm": 0.7071043252944946, + "learning_rate": 2.511029411764706e-05, + "loss": 0.6546615600585938, + "step": 23700 + }, + { + "epoch": 50.0, + "grad_norm": Infinity, + "learning_rate": 2.5005252100840338e-05, + "loss": 0.6589860534667968, + "step": 23800 + }, + { + "epoch": 50.21030494216614, + "grad_norm": 0.6747011542320251, + "learning_rate": 2.490126050420168e-05, + "loss": 0.6164878845214844, + "step": 23900 + }, + { + "epoch": 50.42060988433228, + "grad_norm": 0.6953312754631042, + "learning_rate": 2.479621848739496e-05, + "loss": 0.6259209060668945, + "step": 24000 + }, + { + "epoch": 50.630914826498426, + "grad_norm": 0.6829053163528442, + "learning_rate": 2.469117647058824e-05, + "loss": 0.6306737518310547, + "step": 24100 + }, + { + "epoch": 50.841219768664565, + "grad_norm": 0.7105507850646973, + "learning_rate": 2.4586134453781514e-05, + "loss": 0.6402838897705078, + "step": 24200 + }, + { + "epoch": 51.05047318611987, + "grad_norm": 0.6592356562614441, + "learning_rate": 2.4481092436974794e-05, + "loss": 0.6321442413330078, + "step": 24300 + }, + { + "epoch": 51.26077812828601, + "grad_norm": 0.6957094073295593, + "learning_rate": 2.4376050420168066e-05, + "loss": 0.6060052108764649, + "step": 24400 + }, + { + "epoch": 51.47108307045215, + "grad_norm": 0.6904229521751404, + "learning_rate": 2.4271008403361345e-05, + "loss": 0.6094649505615234, + "step": 24500 + }, + { + "epoch": 51.6813880126183, + "grad_norm": 0.7173294425010681, + "learning_rate": 2.416596638655462e-05, + "loss": 0.6187096023559571, + "step": 24600 + }, + { + "epoch": 51.89169295478444, + "grad_norm": 0.7143198251724243, + "learning_rate": 2.40609243697479e-05, + "loss": 0.6268323516845703, + "step": 24700 + }, + { + "epoch": 52.10094637223975, + "grad_norm": 0.6786720752716064, + "learning_rate": 2.3955882352941176e-05, + "loss": 0.6083223342895507, + "step": 24800 + }, + { + "epoch": 52.31125131440589, + "grad_norm": 0.6900521516799927, + "learning_rate": 2.3850840336134456e-05, + "loss": 0.5922721862792969, + "step": 24900 + }, + { + "epoch": 52.521556256572026, + "grad_norm": 0.7288543581962585, + "learning_rate": 2.3745798319327735e-05, + "loss": 0.5982749938964844, + "step": 25000 + }, + { + "epoch": 52.73186119873817, + "grad_norm": 0.704078197479248, + "learning_rate": 2.3640756302521007e-05, + "loss": 0.6041379547119141, + "step": 25100 + }, + { + "epoch": 52.94216614090431, + "grad_norm": 0.706262469291687, + "learning_rate": 2.3535714285714287e-05, + "loss": 0.6083390808105469, + "step": 25200 + }, + { + "epoch": 53.15141955835962, + "grad_norm": 0.6775776743888855, + "learning_rate": 2.3430672268907563e-05, + "loss": 0.5816435623168945, + "step": 25300 + }, + { + "epoch": 53.36172450052576, + "grad_norm": 0.7253007888793945, + "learning_rate": 2.3325630252100842e-05, + "loss": 0.58095458984375, + "step": 25400 + }, + { + "epoch": 53.5720294426919, + "grad_norm": 0.7169889211654663, + "learning_rate": 2.3220588235294118e-05, + "loss": 0.5878105163574219, + "step": 25500 + }, + { + "epoch": 53.782334384858046, + "grad_norm": 0.6921281814575195, + "learning_rate": 2.3115546218487397e-05, + "loss": 0.5918175506591797, + "step": 25600 + }, + { + "epoch": 53.992639327024186, + "grad_norm": 0.7570663094520569, + "learning_rate": 2.3010504201680673e-05, + "loss": 0.5992276000976563, + "step": 25700 + }, + { + "epoch": 54.201892744479494, + "grad_norm": 0.7045475840568542, + "learning_rate": 2.2905462184873952e-05, + "loss": 0.563626937866211, + "step": 25800 + }, + { + "epoch": 54.412197686645634, + "grad_norm": 0.7311537861824036, + "learning_rate": 2.2800420168067228e-05, + "loss": 0.5649079513549805, + "step": 25900 + }, + { + "epoch": 54.62250262881178, + "grad_norm": 0.7197280526161194, + "learning_rate": 2.2695378151260504e-05, + "loss": 0.5740287017822265, + "step": 26000 + }, + { + "epoch": 54.83280757097792, + "grad_norm": 0.7047930359840393, + "learning_rate": 2.2590336134453783e-05, + "loss": 0.5799992752075195, + "step": 26100 + }, + { + "epoch": 55.04206098843323, + "grad_norm": 0.663329541683197, + "learning_rate": 2.2486344537815125e-05, + "loss": 0.5747824096679688, + "step": 26200 + }, + { + "epoch": 55.25236593059937, + "grad_norm": 0.6825776100158691, + "learning_rate": 2.2381302521008405e-05, + "loss": 0.5511475372314453, + "step": 26300 + }, + { + "epoch": 55.46267087276551, + "grad_norm": 0.7081674337387085, + "learning_rate": 2.227626050420168e-05, + "loss": 0.5568293380737305, + "step": 26400 + }, + { + "epoch": 55.672975814931654, + "grad_norm": 0.6991596221923828, + "learning_rate": 2.217121848739496e-05, + "loss": 0.5623696899414062, + "step": 26500 + }, + { + "epoch": 55.88328075709779, + "grad_norm": 0.7421116828918457, + "learning_rate": 2.2066176470588236e-05, + "loss": 0.5673596572875976, + "step": 26600 + }, + { + "epoch": 56.0925341745531, + "grad_norm": 0.6679620146751404, + "learning_rate": 2.1961134453781515e-05, + "loss": 0.555915298461914, + "step": 26700 + }, + { + "epoch": 56.30283911671924, + "grad_norm": 0.7035086750984192, + "learning_rate": 2.185609243697479e-05, + "loss": 0.5402443313598633, + "step": 26800 + }, + { + "epoch": 56.51314405888538, + "grad_norm": 0.6888571381568909, + "learning_rate": 2.1751050420168067e-05, + "loss": 0.5462953186035157, + "step": 26900 + }, + { + "epoch": 56.72344900105153, + "grad_norm": 0.7356609106063843, + "learning_rate": 2.1646008403361346e-05, + "loss": 0.5512025833129883, + "step": 27000 + }, + { + "epoch": 56.93375394321767, + "grad_norm": 0.7569705247879028, + "learning_rate": 2.1540966386554622e-05, + "loss": 0.5562152481079101, + "step": 27100 + }, + { + "epoch": 57.143007360672975, + "grad_norm": 0.6764115691184998, + "learning_rate": 2.14359243697479e-05, + "loss": 0.5337548065185547, + "step": 27200 + }, + { + "epoch": 57.353312302839115, + "grad_norm": 0.7006810307502747, + "learning_rate": 2.1330882352941177e-05, + "loss": 0.5296073913574219, + "step": 27300 + }, + { + "epoch": 57.56361724500526, + "grad_norm": 0.7158169150352478, + "learning_rate": 2.1225840336134456e-05, + "loss": 0.5382700347900391, + "step": 27400 + }, + { + "epoch": 57.7739221871714, + "grad_norm": 0.7132992148399353, + "learning_rate": 2.1120798319327732e-05, + "loss": 0.5398505783081055, + "step": 27500 + }, + { + "epoch": 57.98422712933754, + "grad_norm": 0.7330942749977112, + "learning_rate": 2.1015756302521008e-05, + "loss": 0.5458747863769531, + "step": 27600 + }, + { + "epoch": 58.19348054679285, + "grad_norm": 0.669278621673584, + "learning_rate": 2.0910714285714287e-05, + "loss": 0.5161695861816407, + "step": 27700 + }, + { + "epoch": 58.40378548895899, + "grad_norm": 0.6958737373352051, + "learning_rate": 2.0805672268907563e-05, + "loss": 0.5201998901367187, + "step": 27800 + }, + { + "epoch": 58.614090431125135, + "grad_norm": 0.6824914813041687, + "learning_rate": 2.0700630252100842e-05, + "loss": 0.5258338928222657, + "step": 27900 + }, + { + "epoch": 58.824395373291274, + "grad_norm": 0.6634467244148254, + "learning_rate": 2.0595588235294118e-05, + "loss": 0.5300619888305664, + "step": 28000 + }, + { + "epoch": 59.03364879074658, + "grad_norm": 0.6863816380500793, + "learning_rate": 2.0490546218487397e-05, + "loss": 0.5283214950561523, + "step": 28100 + }, + { + "epoch": 59.24395373291272, + "grad_norm": 0.7183119654655457, + "learning_rate": 2.0385504201680673e-05, + "loss": 0.506834487915039, + "step": 28200 + }, + { + "epoch": 59.45425867507886, + "grad_norm": 0.7142145037651062, + "learning_rate": 2.028046218487395e-05, + "loss": 0.5117876815795899, + "step": 28300 + }, + { + "epoch": 59.66456361724501, + "grad_norm": 0.7280924916267395, + "learning_rate": 2.017542016806723e-05, + "loss": 0.5153473281860351, + "step": 28400 + }, + { + "epoch": 59.87486855941115, + "grad_norm": 0.693505048751831, + "learning_rate": 2.0070378151260504e-05, + "loss": 0.5219352722167969, + "step": 28500 + }, + { + "epoch": 60.084121976866456, + "grad_norm": 0.6892845034599304, + "learning_rate": 1.9965336134453784e-05, + "loss": 0.5122858810424805, + "step": 28600 + }, + { + "epoch": 60.294426919032595, + "grad_norm": 0.6604379415512085, + "learning_rate": 1.986029411764706e-05, + "loss": 0.49614715576171875, + "step": 28700 + }, + { + "epoch": 60.504731861198735, + "grad_norm": 0.7204891443252563, + "learning_rate": 1.975525210084034e-05, + "loss": 0.5024974822998047, + "step": 28800 + }, + { + "epoch": 60.71503680336488, + "grad_norm": 0.7127634286880493, + "learning_rate": 1.9650210084033615e-05, + "loss": 0.5073120498657226, + "step": 28900 + }, + { + "epoch": 60.92534174553102, + "grad_norm": 0.7359983921051025, + "learning_rate": 1.954516806722689e-05, + "loss": 0.5116232681274414, + "step": 29000 + }, + { + "epoch": 61.13459516298633, + "grad_norm": 0.6893951296806335, + "learning_rate": 1.944012605042017e-05, + "loss": 0.4952814865112305, + "step": 29100 + }, + { + "epoch": 61.34490010515247, + "grad_norm": 0.6849685311317444, + "learning_rate": 1.9335084033613446e-05, + "loss": 0.4899435043334961, + "step": 29200 + }, + { + "epoch": 61.55520504731861, + "grad_norm": 0.7181743383407593, + "learning_rate": 1.9230042016806725e-05, + "loss": 0.4946512985229492, + "step": 29300 + }, + { + "epoch": 61.765509989484755, + "grad_norm": 0.6820606589317322, + "learning_rate": 1.9125e-05, + "loss": 0.49947418212890626, + "step": 29400 + }, + { + "epoch": 61.975814931650895, + "grad_norm": 0.7111321687698364, + "learning_rate": 1.901995798319328e-05, + "loss": 0.5020344543457032, + "step": 29500 + }, + { + "epoch": 62.1850683491062, + "grad_norm": 0.7008198499679565, + "learning_rate": 1.8914915966386556e-05, + "loss": 0.48151485443115233, + "step": 29600 + }, + { + "epoch": 62.39537329127234, + "grad_norm": 0.7171513438224792, + "learning_rate": 1.880987394957983e-05, + "loss": 0.48171932220458985, + "step": 29700 + }, + { + "epoch": 62.60567823343849, + "grad_norm": 0.7375807762145996, + "learning_rate": 1.8704831932773108e-05, + "loss": 0.4873679733276367, + "step": 29800 + }, + { + "epoch": 62.81598317560463, + "grad_norm": 0.6806672811508179, + "learning_rate": 1.8599789915966387e-05, + "loss": 0.4887456130981445, + "step": 29900 + }, + { + "epoch": 63.02523659305994, + "grad_norm": 0.6749327182769775, + "learning_rate": 1.8494747899159666e-05, + "loss": 0.48958889007568357, + "step": 30000 + }, + { + "epoch": 63.235541535226076, + "grad_norm": 0.7122695446014404, + "learning_rate": 1.8389705882352942e-05, + "loss": 0.46849212646484373, + "step": 30100 + }, + { + "epoch": 63.445846477392216, + "grad_norm": 0.6742300987243652, + "learning_rate": 1.8285714285714288e-05, + "loss": 0.4735026550292969, + "step": 30200 + }, + { + "epoch": 63.65615141955836, + "grad_norm": 0.7086833119392395, + "learning_rate": 1.8180672268907564e-05, + "loss": 0.47808189392089845, + "step": 30300 + }, + { + "epoch": 63.8664563617245, + "grad_norm": 0.673115611076355, + "learning_rate": 1.8075630252100843e-05, + "loss": 0.4810390853881836, + "step": 30400 + }, + { + "epoch": 64.07570977917982, + "grad_norm": 0.7166642546653748, + "learning_rate": 1.797058823529412e-05, + "loss": 0.47662986755371095, + "step": 30500 + }, + { + "epoch": 64.28601472134595, + "grad_norm": 0.7239866852760315, + "learning_rate": 1.7865546218487395e-05, + "loss": 0.46368907928466796, + "step": 30600 + }, + { + "epoch": 64.4963196635121, + "grad_norm": 0.6777023077011108, + "learning_rate": 1.776050420168067e-05, + "loss": 0.46869037628173826, + "step": 30700 + }, + { + "epoch": 64.70662460567823, + "grad_norm": 0.7028587460517883, + "learning_rate": 1.765546218487395e-05, + "loss": 0.47153076171875, + "step": 30800 + }, + { + "epoch": 64.91692954784438, + "grad_norm": 0.7220568656921387, + "learning_rate": 1.755042016806723e-05, + "loss": 0.4732553482055664, + "step": 30900 + }, + { + "epoch": 65.12618296529969, + "grad_norm": 0.6283636093139648, + "learning_rate": 1.7445378151260505e-05, + "loss": 0.4627264404296875, + "step": 31000 + }, + { + "epoch": 65.33648790746582, + "grad_norm": 0.6411524415016174, + "learning_rate": 1.7340336134453784e-05, + "loss": 0.45608016967773435, + "step": 31100 + }, + { + "epoch": 65.54679284963197, + "grad_norm": 0.668154776096344, + "learning_rate": 1.723529411764706e-05, + "loss": 0.46059967041015626, + "step": 31200 + }, + { + "epoch": 65.7570977917981, + "grad_norm": 0.7226248979568481, + "learning_rate": 1.713025210084034e-05, + "loss": 0.4659851455688477, + "step": 31300 + }, + { + "epoch": 65.96740273396425, + "grad_norm": 0.6833023428916931, + "learning_rate": 1.7025210084033612e-05, + "loss": 0.46931900024414064, + "step": 31400 + }, + { + "epoch": 66.17665615141956, + "grad_norm": 0.6941800117492676, + "learning_rate": 1.6921218487394958e-05, + "loss": 0.45006973266601563, + "step": 31500 + }, + { + "epoch": 66.3869610935857, + "grad_norm": 0.63517826795578, + "learning_rate": 1.6816176470588237e-05, + "loss": 0.44848171234130857, + "step": 31600 + }, + { + "epoch": 66.59726603575184, + "grad_norm": 0.6846080422401428, + "learning_rate": 1.6711134453781513e-05, + "loss": 0.45420032501220703, + "step": 31700 + }, + { + "epoch": 66.80757097791798, + "grad_norm": 0.6388368010520935, + "learning_rate": 1.6606092436974792e-05, + "loss": 0.4580923843383789, + "step": 31800 + }, + { + "epoch": 67.01682439537329, + "grad_norm": 0.6670629978179932, + "learning_rate": 1.6501050420168068e-05, + "loss": 0.4585027313232422, + "step": 31900 + }, + { + "epoch": 67.22712933753944, + "grad_norm": 0.6662338972091675, + "learning_rate": 1.6396008403361347e-05, + "loss": 0.44079010009765623, + "step": 32000 + }, + { + "epoch": 67.43743427970557, + "grad_norm": 0.6707865595817566, + "learning_rate": 1.6290966386554623e-05, + "loss": 0.44413238525390625, + "step": 32100 + }, + { + "epoch": 67.64773922187172, + "grad_norm": 0.656842052936554, + "learning_rate": 1.6185924369747902e-05, + "loss": 0.44844043731689454, + "step": 32200 + }, + { + "epoch": 67.85804416403785, + "grad_norm": 0.6646634340286255, + "learning_rate": 1.6080882352941175e-05, + "loss": 0.44970947265625, + "step": 32300 + }, + { + "epoch": 68.06729758149316, + "grad_norm": 0.6447365880012512, + "learning_rate": 1.5975840336134454e-05, + "loss": 0.4450407028198242, + "step": 32400 + }, + { + "epoch": 68.27760252365931, + "grad_norm": 0.6727699637413025, + "learning_rate": 1.587079831932773e-05, + "loss": 0.43177310943603514, + "step": 32500 + }, + { + "epoch": 68.48790746582544, + "grad_norm": 0.7130571603775024, + "learning_rate": 1.576575630252101e-05, + "loss": 0.4379489517211914, + "step": 32600 + }, + { + "epoch": 68.69821240799159, + "grad_norm": 0.7220073938369751, + "learning_rate": 1.566071428571429e-05, + "loss": 0.4425164794921875, + "step": 32700 + }, + { + "epoch": 68.90851735015772, + "grad_norm": 0.6695141196250916, + "learning_rate": 1.5555672268907564e-05, + "loss": 0.44274383544921875, + "step": 32800 + }, + { + "epoch": 69.11777076761304, + "grad_norm": 0.6740268468856812, + "learning_rate": 1.5450630252100843e-05, + "loss": 0.4357725143432617, + "step": 32900 + }, + { + "epoch": 69.32807570977918, + "grad_norm": 0.6566063165664673, + "learning_rate": 1.5345588235294116e-05, + "loss": 0.4283485412597656, + "step": 33000 + }, + { + "epoch": 69.53838065194532, + "grad_norm": 0.6752663850784302, + "learning_rate": 1.5240546218487395e-05, + "loss": 0.43225677490234377, + "step": 33100 + }, + { + "epoch": 69.74868559411146, + "grad_norm": 0.7038667798042297, + "learning_rate": 1.5135504201680673e-05, + "loss": 0.43592594146728514, + "step": 33200 + }, + { + "epoch": 69.9589905362776, + "grad_norm": 0.6961196660995483, + "learning_rate": 1.503046218487395e-05, + "loss": 0.438877067565918, + "step": 33300 + }, + { + "epoch": 70.16824395373291, + "grad_norm": 0.6535352468490601, + "learning_rate": 1.4925420168067228e-05, + "loss": 0.4252385330200195, + "step": 33400 + }, + { + "epoch": 70.37854889589906, + "grad_norm": 0.6601018905639648, + "learning_rate": 1.4820378151260505e-05, + "loss": 0.42285392761230467, + "step": 33500 + }, + { + "epoch": 70.58885383806519, + "grad_norm": 0.6948896050453186, + "learning_rate": 1.4715336134453783e-05, + "loss": 0.427175407409668, + "step": 33600 + }, + { + "epoch": 70.79915878023134, + "grad_norm": 0.6372560858726501, + "learning_rate": 1.461029411764706e-05, + "loss": 0.42832706451416014, + "step": 33700 + }, + { + "epoch": 71.00841219768665, + "grad_norm": 0.6517939567565918, + "learning_rate": 1.4505252100840336e-05, + "loss": 0.4324043273925781, + "step": 33800 + }, + { + "epoch": 71.21871713985279, + "grad_norm": 0.6330206990242004, + "learning_rate": 1.4400210084033614e-05, + "loss": 0.4146746826171875, + "step": 33900 + }, + { + "epoch": 71.42902208201893, + "grad_norm": 0.6658615469932556, + "learning_rate": 1.4295168067226892e-05, + "loss": 0.4180047225952148, + "step": 34000 + }, + { + "epoch": 71.63932702418506, + "grad_norm": 0.6433075070381165, + "learning_rate": 1.4190126050420169e-05, + "loss": 0.4219693374633789, + "step": 34100 + }, + { + "epoch": 71.84963196635121, + "grad_norm": 0.6470766663551331, + "learning_rate": 1.4085084033613447e-05, + "loss": 0.4214926528930664, + "step": 34200 + }, + { + "epoch": 72.05888538380653, + "grad_norm": 0.6315721273422241, + "learning_rate": 1.3981092436974791e-05, + "loss": 0.4204498291015625, + "step": 34300 + }, + { + "epoch": 72.26919032597266, + "grad_norm": 0.6722202897071838, + "learning_rate": 1.3876050420168068e-05, + "loss": 0.4105443572998047, + "step": 34400 + }, + { + "epoch": 72.4794952681388, + "grad_norm": 0.654528021812439, + "learning_rate": 1.3771008403361346e-05, + "loss": 0.41524337768554687, + "step": 34500 + }, + { + "epoch": 72.68980021030494, + "grad_norm": 0.6449755430221558, + "learning_rate": 1.3665966386554622e-05, + "loss": 0.4175481414794922, + "step": 34600 + }, + { + "epoch": 72.90010515247108, + "grad_norm": 0.6468359231948853, + "learning_rate": 1.35609243697479e-05, + "loss": 0.41863433837890623, + "step": 34700 + }, + { + "epoch": 73.1093585699264, + "grad_norm": 0.6471462845802307, + "learning_rate": 1.3455882352941177e-05, + "loss": 0.411123161315918, + "step": 34800 + }, + { + "epoch": 73.31966351209253, + "grad_norm": 0.6382157802581787, + "learning_rate": 1.3350840336134455e-05, + "loss": 0.40554931640625, + "step": 34900 + }, + { + "epoch": 73.52996845425868, + "grad_norm": 0.6727550029754639, + "learning_rate": 1.3245798319327732e-05, + "loss": 0.40884464263916015, + "step": 35000 + }, + { + "epoch": 73.74027339642481, + "grad_norm": 0.6494147181510925, + "learning_rate": 1.314075630252101e-05, + "loss": 0.4114807891845703, + "step": 35100 + }, + { + "epoch": 73.95057833859096, + "grad_norm": 0.6971067786216736, + "learning_rate": 1.3035714285714287e-05, + "loss": 0.4129951477050781, + "step": 35200 + }, + { + "epoch": 74.15983175604627, + "grad_norm": 0.630617082118988, + "learning_rate": 1.2930672268907565e-05, + "loss": 0.40283798217773437, + "step": 35300 + }, + { + "epoch": 74.3701366982124, + "grad_norm": 0.6068241000175476, + "learning_rate": 1.2825630252100839e-05, + "loss": 0.4017567825317383, + "step": 35400 + }, + { + "epoch": 74.58044164037855, + "grad_norm": 0.6767259836196899, + "learning_rate": 1.2720588235294118e-05, + "loss": 0.40448307037353515, + "step": 35500 + }, + { + "epoch": 74.79074658254468, + "grad_norm": 0.7011847496032715, + "learning_rate": 1.2615546218487396e-05, + "loss": 0.4047744369506836, + "step": 35600 + }, + { + "epoch": 75.0, + "grad_norm": 0.9920335412025452, + "learning_rate": 1.2510504201680673e-05, + "loss": 0.4085837936401367, + "step": 35700 + }, + { + "epoch": 75.21030494216615, + "grad_norm": 0.6520708203315735, + "learning_rate": 1.2405462184873951e-05, + "loss": 0.39399688720703124, + "step": 35800 + }, + { + "epoch": 75.42060988433228, + "grad_norm": 0.6656842827796936, + "learning_rate": 1.2300420168067227e-05, + "loss": 0.3963521957397461, + "step": 35900 + }, + { + "epoch": 75.63091482649843, + "grad_norm": 0.6576446294784546, + "learning_rate": 1.2195378151260504e-05, + "loss": 0.3992136383056641, + "step": 36000 + }, + { + "epoch": 75.84121976866456, + "grad_norm": 0.6238224506378174, + "learning_rate": 1.2090336134453782e-05, + "loss": 0.40125537872314454, + "step": 36100 + }, + { + "epoch": 76.05047318611987, + "grad_norm": 0.6389949917793274, + "learning_rate": 1.198529411764706e-05, + "loss": 0.3995349884033203, + "step": 36200 + }, + { + "epoch": 76.26077812828602, + "grad_norm": 0.6240091919898987, + "learning_rate": 1.1880252100840335e-05, + "loss": 0.3890629577636719, + "step": 36300 + }, + { + "epoch": 76.47108307045215, + "grad_norm": 0.6367642879486084, + "learning_rate": 1.1775210084033615e-05, + "loss": 0.39277313232421873, + "step": 36400 + }, + { + "epoch": 76.6813880126183, + "grad_norm": 0.6215347647666931, + "learning_rate": 1.1670168067226892e-05, + "loss": 0.3941745376586914, + "step": 36500 + }, + { + "epoch": 76.89169295478443, + "grad_norm": 0.6176421642303467, + "learning_rate": 1.156512605042017e-05, + "loss": 0.3961213302612305, + "step": 36600 + }, + { + "epoch": 77.10094637223975, + "grad_norm": 0.6433852314949036, + "learning_rate": 1.1460084033613446e-05, + "loss": 0.39362903594970705, + "step": 36700 + }, + { + "epoch": 77.3112513144059, + "grad_norm": 0.6288033127784729, + "learning_rate": 1.1355042016806723e-05, + "loss": 0.3870785140991211, + "step": 36800 + }, + { + "epoch": 77.52155625657203, + "grad_norm": 0.6061193943023682, + "learning_rate": 1.125e-05, + "loss": 0.38955581665039063, + "step": 36900 + }, + { + "epoch": 77.73186119873817, + "grad_norm": 0.6680556535720825, + "learning_rate": 1.1144957983193278e-05, + "loss": 0.390676383972168, + "step": 37000 + }, + { + "epoch": 77.9421661409043, + "grad_norm": 0.623725950717926, + "learning_rate": 1.1039915966386554e-05, + "loss": 0.3921066665649414, + "step": 37100 + }, + { + "epoch": 78.15141955835962, + "grad_norm": 0.6346238255500793, + "learning_rate": 1.0935924369747898e-05, + "loss": 0.3845651626586914, + "step": 37200 + }, + { + "epoch": 78.36172450052577, + "grad_norm": 0.6062731146812439, + "learning_rate": 1.0830882352941178e-05, + "loss": 0.380772705078125, + "step": 37300 + }, + { + "epoch": 78.5720294426919, + "grad_norm": 0.6125079989433289, + "learning_rate": 1.0725840336134455e-05, + "loss": 0.3834884262084961, + "step": 37400 + }, + { + "epoch": 78.78233438485805, + "grad_norm": 0.6804420948028564, + "learning_rate": 1.0620798319327733e-05, + "loss": 0.3863555526733398, + "step": 37500 + }, + { + "epoch": 78.99263932702418, + "grad_norm": 0.6568316221237183, + "learning_rate": 1.0515756302521009e-05, + "loss": 0.3898443603515625, + "step": 37600 + }, + { + "epoch": 79.2018927444795, + "grad_norm": 0.6262179017066956, + "learning_rate": 1.0410714285714286e-05, + "loss": 0.37717395782470703, + "step": 37700 + }, + { + "epoch": 79.41219768664564, + "grad_norm": 0.6335896849632263, + "learning_rate": 1.0305672268907564e-05, + "loss": 0.37976459503173826, + "step": 37800 + }, + { + "epoch": 79.62250262881177, + "grad_norm": 0.675938069820404, + "learning_rate": 1.0200630252100841e-05, + "loss": 0.38054397583007815, + "step": 37900 + }, + { + "epoch": 79.83280757097792, + "grad_norm": 0.650644838809967, + "learning_rate": 1.0095588235294117e-05, + "loss": 0.3817191696166992, + "step": 38000 + }, + { + "epoch": 80.04206098843324, + "grad_norm": 0.5988778471946716, + "learning_rate": 9.990546218487395e-06, + "loss": 0.3799977493286133, + "step": 38100 + }, + { + "epoch": 80.25236593059937, + "grad_norm": 0.6436987519264221, + "learning_rate": 9.885504201680674e-06, + "loss": 0.37264183044433596, + "step": 38200 + }, + { + "epoch": 80.46267087276551, + "grad_norm": 0.610487699508667, + "learning_rate": 9.78046218487395e-06, + "loss": 0.3753046417236328, + "step": 38300 + }, + { + "epoch": 80.67297581493165, + "grad_norm": 0.6378571391105652, + "learning_rate": 9.675420168067227e-06, + "loss": 0.3749809646606445, + "step": 38400 + }, + { + "epoch": 80.8832807570978, + "grad_norm": 0.6599664688110352, + "learning_rate": 9.570378151260505e-06, + "loss": 0.37958168029785155, + "step": 38500 + }, + { + "epoch": 81.09253417455311, + "grad_norm": 0.6057779788970947, + "learning_rate": 9.465336134453782e-06, + "loss": 0.3755946731567383, + "step": 38600 + }, + { + "epoch": 81.30283911671924, + "grad_norm": 0.6186268925666809, + "learning_rate": 9.360294117647058e-06, + "loss": 0.3689208221435547, + "step": 38700 + }, + { + "epoch": 81.51314405888539, + "grad_norm": 0.6031709909439087, + "learning_rate": 9.255252100840336e-06, + "loss": 0.37045917510986326, + "step": 38800 + }, + { + "epoch": 81.72344900105152, + "grad_norm": 0.6903654336929321, + "learning_rate": 9.150210084033613e-06, + "loss": 0.37341190338134767, + "step": 38900 + }, + { + "epoch": 81.93375394321767, + "grad_norm": 0.6498835682868958, + "learning_rate": 9.045168067226891e-06, + "loss": 0.3741530227661133, + "step": 39000 + }, + { + "epoch": 82.14300736067298, + "grad_norm": 0.6078621745109558, + "learning_rate": 8.940126050420169e-06, + "loss": 0.36713558197021484, + "step": 39100 + }, + { + "epoch": 82.35331230283911, + "grad_norm": 0.6294094324111938, + "learning_rate": 8.835084033613446e-06, + "loss": 0.3661073303222656, + "step": 39200 + }, + { + "epoch": 82.56361724500526, + "grad_norm": 0.6120302081108093, + "learning_rate": 8.730042016806724e-06, + "loss": 0.3683062744140625, + "step": 39300 + }, + { + "epoch": 82.7739221871714, + "grad_norm": 0.6194695830345154, + "learning_rate": 8.625e-06, + "loss": 0.3718934631347656, + "step": 39400 + }, + { + "epoch": 82.98422712933754, + "grad_norm": 0.6603109240531921, + "learning_rate": 8.519957983193277e-06, + "loss": 0.37141822814941405, + "step": 39500 + }, + { + "epoch": 83.19348054679286, + "grad_norm": 0.6176982522010803, + "learning_rate": 8.414915966386555e-06, + "loss": 0.36253021240234373, + "step": 39600 + }, + { + "epoch": 83.40378548895899, + "grad_norm": 0.6788721084594727, + "learning_rate": 8.309873949579832e-06, + "loss": 0.36460174560546876, + "step": 39700 + }, + { + "epoch": 83.61409043112513, + "grad_norm": 0.6141113638877869, + "learning_rate": 8.20483193277311e-06, + "loss": 0.36554264068603515, + "step": 39800 + }, + { + "epoch": 83.82439537329127, + "grad_norm": 0.6193323135375977, + "learning_rate": 8.099789915966387e-06, + "loss": 0.36707286834716796, + "step": 39900 + }, + { + "epoch": 84.03364879074658, + "grad_norm": 0.6383187770843506, + "learning_rate": 7.994747899159665e-06, + "loss": 0.3661843872070312, + "step": 40000 + }, + { + "epoch": 84.24395373291273, + "grad_norm": 0.5923520922660828, + "learning_rate": 7.889705882352943e-06, + "loss": 0.35978816986083983, + "step": 40100 + }, + { + "epoch": 84.45425867507886, + "grad_norm": 0.641968846321106, + "learning_rate": 7.784663865546218e-06, + "loss": 0.35977176666259764, + "step": 40200 + }, + { + "epoch": 84.66456361724501, + "grad_norm": 0.6307324767112732, + "learning_rate": 7.679621848739496e-06, + "loss": 0.36135292053222656, + "step": 40300 + }, + { + "epoch": 84.87486855941114, + "grad_norm": 0.6303888559341431, + "learning_rate": 7.5745798319327735e-06, + "loss": 0.36290821075439456, + "step": 40400 + }, + { + "epoch": 85.08412197686646, + "grad_norm": 0.5610889792442322, + "learning_rate": 7.469537815126051e-06, + "loss": 0.36016101837158204, + "step": 40500 + }, + { + "epoch": 85.2944269190326, + "grad_norm": 0.5796296000480652, + "learning_rate": 7.364495798319328e-06, + "loss": 0.35660606384277344, + "step": 40600 + }, + { + "epoch": 85.50473186119874, + "grad_norm": 0.6147542595863342, + "learning_rate": 7.259453781512605e-06, + "loss": 0.35944347381591796, + "step": 40700 + }, + { + "epoch": 85.71503680336488, + "grad_norm": 0.6097769737243652, + "learning_rate": 7.154411764705883e-06, + "loss": 0.3589036560058594, + "step": 40800 + }, + { + "epoch": 85.92534174553101, + "grad_norm": 0.6288202404975891, + "learning_rate": 7.04936974789916e-06, + "loss": 0.3591917419433594, + "step": 40900 + }, + { + "epoch": 86.13459516298633, + "grad_norm": 0.6195931434631348, + "learning_rate": 6.944327731092437e-06, + "loss": 0.3569915771484375, + "step": 41000 + }, + { + "epoch": 86.34490010515248, + "grad_norm": 0.5890372395515442, + "learning_rate": 6.839285714285715e-06, + "loss": 0.3543994903564453, + "step": 41100 + }, + { + "epoch": 86.55520504731861, + "grad_norm": 0.6272594332695007, + "learning_rate": 6.735294117647059e-06, + "loss": 0.3553640365600586, + "step": 41200 + }, + { + "epoch": 86.76550998948476, + "grad_norm": 0.6778700351715088, + "learning_rate": 6.6302521008403365e-06, + "loss": 0.3564106750488281, + "step": 41300 + }, + { + "epoch": 86.97581493165089, + "grad_norm": 0.6336688995361328, + "learning_rate": 6.525210084033614e-06, + "loss": 0.35713409423828124, + "step": 41400 + }, + { + "epoch": 87.1850683491062, + "grad_norm": 0.6053069829940796, + "learning_rate": 6.421218487394959e-06, + "loss": 0.3506643295288086, + "step": 41500 + }, + { + "epoch": 87.39537329127235, + "grad_norm": 0.6175255179405212, + "learning_rate": 6.316176470588235e-06, + "loss": 0.35214996337890625, + "step": 41600 + }, + { + "epoch": 87.60567823343848, + "grad_norm": 0.5915444493293762, + "learning_rate": 6.2111344537815125e-06, + "loss": 0.3522480392456055, + "step": 41700 + }, + { + "epoch": 87.81598317560463, + "grad_norm": 0.5907636880874634, + "learning_rate": 6.10609243697479e-06, + "loss": 0.3520878601074219, + "step": 41800 + }, + { + "epoch": 88.02523659305994, + "grad_norm": 0.6209415197372437, + "learning_rate": 6.001050420168068e-06, + "loss": 0.3545633316040039, + "step": 41900 + }, + { + "epoch": 88.23554153522608, + "grad_norm": 0.5926827788352966, + "learning_rate": 5.896008403361345e-06, + "loss": 0.34920032501220705, + "step": 42000 + }, + { + "epoch": 88.44584647739222, + "grad_norm": 0.638471245765686, + "learning_rate": 5.790966386554622e-06, + "loss": 0.34805423736572266, + "step": 42100 + }, + { + "epoch": 88.65615141955836, + "grad_norm": 0.6181325316429138, + "learning_rate": 5.6859243697478994e-06, + "loss": 0.3501460647583008, + "step": 42200 + }, + { + "epoch": 88.8664563617245, + "grad_norm": 0.6029173135757446, + "learning_rate": 5.580882352941177e-06, + "loss": 0.35028797149658203, + "step": 42300 + }, + { + "epoch": 89.07570977917982, + "grad_norm": 0.5673274397850037, + "learning_rate": 5.475840336134454e-06, + "loss": 0.34918766021728515, + "step": 42400 + }, + { + "epoch": 89.28601472134595, + "grad_norm": 0.5657567977905273, + "learning_rate": 5.370798319327731e-06, + "loss": 0.34565746307373046, + "step": 42500 + }, + { + "epoch": 89.4963196635121, + "grad_norm": 0.6014168858528137, + "learning_rate": 5.265756302521008e-06, + "loss": 0.3450989532470703, + "step": 42600 + }, + { + "epoch": 89.70662460567823, + "grad_norm": 0.5631797909736633, + "learning_rate": 5.160714285714286e-06, + "loss": 0.3477408218383789, + "step": 42700 + }, + { + "epoch": 89.91692954784438, + "grad_norm": 0.624321699142456, + "learning_rate": 5.055672268907563e-06, + "loss": 0.34852649688720705, + "step": 42800 + }, + { + "epoch": 90.12618296529969, + "grad_norm": 0.6004353761672974, + "learning_rate": 4.950630252100841e-06, + "loss": 0.3450387191772461, + "step": 42900 + }, + { + "epoch": 90.33648790746582, + "grad_norm": 0.6030150651931763, + "learning_rate": 4.845588235294117e-06, + "loss": 0.34261096954345704, + "step": 43000 + }, + { + "epoch": 90.54679284963197, + "grad_norm": 0.5574061870574951, + "learning_rate": 4.740546218487396e-06, + "loss": 0.3450190734863281, + "step": 43100 + }, + { + "epoch": 90.7570977917981, + "grad_norm": 0.5677763819694519, + "learning_rate": 4.6355042016806725e-06, + "loss": 0.3442384338378906, + "step": 43200 + }, + { + "epoch": 90.96740273396425, + "grad_norm": 0.6088888645172119, + "learning_rate": 4.53046218487395e-06, + "loss": 0.3451253128051758, + "step": 43300 + }, + { + "epoch": 91.17665615141956, + "grad_norm": 0.5724344849586487, + "learning_rate": 4.425420168067227e-06, + "loss": 0.3408164978027344, + "step": 43400 + }, + { + "epoch": 91.3869610935857, + "grad_norm": 0.6201240420341492, + "learning_rate": 4.320378151260504e-06, + "loss": 0.3420841979980469, + "step": 43500 + }, + { + "epoch": 91.59726603575184, + "grad_norm": 0.6098768711090088, + "learning_rate": 4.215336134453782e-06, + "loss": 0.3413374328613281, + "step": 43600 + }, + { + "epoch": 91.80757097791798, + "grad_norm": 0.6306800842285156, + "learning_rate": 4.110294117647059e-06, + "loss": 0.34394527435302735, + "step": 43700 + }, + { + "epoch": 92.01682439537329, + "grad_norm": 0.559008777141571, + "learning_rate": 4.005252100840336e-06, + "loss": 0.3423053741455078, + "step": 43800 + }, + { + "epoch": 92.22712933753944, + "grad_norm": 0.5939933657646179, + "learning_rate": 3.900210084033614e-06, + "loss": 0.33797637939453123, + "step": 43900 + }, + { + "epoch": 92.43743427970557, + "grad_norm": 0.6135221719741821, + "learning_rate": 3.795168067226891e-06, + "loss": 0.3408375930786133, + "step": 44000 + }, + { + "epoch": 92.64773922187172, + "grad_norm": 0.5870836973190308, + "learning_rate": 3.690126050420168e-06, + "loss": 0.34073463439941404, + "step": 44100 + }, + { + "epoch": 92.85804416403785, + "grad_norm": 0.5811474323272705, + "learning_rate": 3.5850840336134456e-06, + "loss": 0.34040855407714843, + "step": 44200 + }, + { + "epoch": 93.06729758149316, + "grad_norm": 0.5979830026626587, + "learning_rate": 3.4800420168067227e-06, + "loss": 0.3395253753662109, + "step": 44300 + }, + { + "epoch": 93.27760252365931, + "grad_norm": 0.5824161171913147, + "learning_rate": 3.3750000000000003e-06, + "loss": 0.3389311981201172, + "step": 44400 + }, + { + "epoch": 93.48790746582544, + "grad_norm": 0.5694940090179443, + "learning_rate": 3.2699579831932774e-06, + "loss": 0.337044792175293, + "step": 44500 + }, + { + "epoch": 93.69821240799159, + "grad_norm": 0.6112421154975891, + "learning_rate": 3.164915966386555e-06, + "loss": 0.33819969177246095, + "step": 44600 + }, + { + "epoch": 93.90851735015772, + "grad_norm": 0.610955536365509, + "learning_rate": 3.059873949579832e-06, + "loss": 0.33944580078125, + "step": 44700 + }, + { + "epoch": 94.11777076761304, + "grad_norm": 0.6398776769638062, + "learning_rate": 2.9548319327731093e-06, + "loss": 0.33618770599365233, + "step": 44800 + }, + { + "epoch": 94.32807570977918, + "grad_norm": 0.5934144854545593, + "learning_rate": 2.849789915966387e-06, + "loss": 0.3384376525878906, + "step": 44900 + }, + { + "epoch": 94.53838065194532, + "grad_norm": 0.6144473552703857, + "learning_rate": 2.744747899159664e-06, + "loss": 0.3383865737915039, + "step": 45000 + }, + { + "epoch": 94.74868559411146, + "grad_norm": 0.5490454435348511, + "learning_rate": 2.6397058823529415e-06, + "loss": 0.33671878814697265, + "step": 45100 + }, + { + "epoch": 94.9589905362776, + "grad_norm": 0.5695416331291199, + "learning_rate": 2.5346638655462187e-06, + "loss": 0.3379853820800781, + "step": 45200 + }, + { + "epoch": 95.16824395373291, + "grad_norm": 0.5724055767059326, + "learning_rate": 2.429621848739496e-06, + "loss": 0.3338408660888672, + "step": 45300 + }, + { + "epoch": 95.37854889589906, + "grad_norm": 0.594022810459137, + "learning_rate": 2.3245798319327734e-06, + "loss": 0.3349121475219727, + "step": 45400 + }, + { + "epoch": 95.58885383806519, + "grad_norm": 0.5594576597213745, + "learning_rate": 2.2205882352941175e-06, + "loss": 0.33595680236816405, + "step": 45500 + }, + { + "epoch": 95.79915878023134, + "grad_norm": 0.5346081852912903, + "learning_rate": 2.115546218487395e-06, + "loss": 0.33520328521728515, + "step": 45600 + }, + { + "epoch": 96.00841219768665, + "grad_norm": 0.5849393606185913, + "learning_rate": 2.0105042016806722e-06, + "loss": 0.3334170913696289, + "step": 45700 + }, + { + "epoch": 96.21871713985279, + "grad_norm": 0.5918118357658386, + "learning_rate": 1.9054621848739498e-06, + "loss": 0.3329995346069336, + "step": 45800 + }, + { + "epoch": 96.42902208201893, + "grad_norm": 0.6012352705001831, + "learning_rate": 1.800420168067227e-06, + "loss": 0.3329520416259766, + "step": 45900 + }, + { + "epoch": 96.63932702418506, + "grad_norm": 0.5281354784965515, + "learning_rate": 1.6953781512605043e-06, + "loss": 0.3343208694458008, + "step": 46000 + }, + { + "epoch": 96.84963196635121, + "grad_norm": 0.5566437244415283, + "learning_rate": 1.5903361344537816e-06, + "loss": 0.33319324493408203, + "step": 46100 + }, + { + "epoch": 97.05888538380653, + "grad_norm": 0.62099689245224, + "learning_rate": 1.486344537815126e-06, + "loss": 0.33431713104248045, + "step": 46200 + }, + { + "epoch": 97.26919032597266, + "grad_norm": 0.5787718892097473, + "learning_rate": 1.3813025210084034e-06, + "loss": 0.3314530944824219, + "step": 46300 + }, + { + "epoch": 97.4794952681388, + "grad_norm": 0.5509923100471497, + "learning_rate": 1.2762605042016807e-06, + "loss": 0.3316763305664063, + "step": 46400 + }, + { + "epoch": 97.68980021030494, + "grad_norm": 0.5569334030151367, + "learning_rate": 1.171218487394958e-06, + "loss": 0.3315643310546875, + "step": 46500 + }, + { + "epoch": 97.90010515247108, + "grad_norm": 0.5476507544517517, + "learning_rate": 1.0661764705882354e-06, + "loss": 0.33233203887939455, + "step": 46600 + }, + { + "epoch": 98.1093585699264, + "grad_norm": 0.5630120038986206, + "learning_rate": 9.611344537815128e-07, + "loss": 0.33105762481689455, + "step": 46700 + }, + { + "epoch": 98.31966351209253, + "grad_norm": 0.5520943999290466, + "learning_rate": 8.5609243697479e-07, + "loss": 0.3307930374145508, + "step": 46800 + }, + { + "epoch": 98.52996845425868, + "grad_norm": 0.5917891263961792, + "learning_rate": 7.510504201680673e-07, + "loss": 0.3318499755859375, + "step": 46900 + }, + { + "epoch": 98.74027339642481, + "grad_norm": 0.5395123362541199, + "learning_rate": 6.460084033613445e-07, + "loss": 0.330290412902832, + "step": 47000 + }, + { + "epoch": 98.95057833859096, + "grad_norm": 0.5702670216560364, + "learning_rate": 5.409663865546218e-07, + "loss": 0.33196086883544923, + "step": 47100 + }, + { + "epoch": 99.15983175604627, + "grad_norm": 0.5607645511627197, + "learning_rate": 4.359243697478992e-07, + "loss": 0.3293312454223633, + "step": 47200 + }, + { + "epoch": 99.3701366982124, + "grad_norm": 0.6061931848526001, + "learning_rate": 3.308823529411765e-07, + "loss": 0.3300600051879883, + "step": 47300 + } + ], + "logging_steps": 100, + "max_steps": 47600, + "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": 3.0478184513593344e+16, + "train_batch_size": 8, + "trial_name": null, + "trial_params": null +} diff --git a/timecost/n11/realtabformer/rtf-n11-20260430_214424/rtf_checkpoints/checkpoint-47300/training_args.bin b/timecost/n11/realtabformer/rtf-n11-20260430_214424/rtf_checkpoints/checkpoint-47300/training_args.bin new file mode 100644 index 0000000000000000000000000000000000000000..34d68dc0e0fe1c1f12a2e581dd1b166aa7178a9e --- /dev/null +++ b/timecost/n11/realtabformer/rtf-n11-20260430_214424/rtf_checkpoints/checkpoint-47300/training_args.bin @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:9e2cd88337d1d846c6918d2b3b63fa3e5c93f12fefc082497590da854a564607 +size 5201 diff --git a/timecost/n11/realtabformer/rtf-n11-20260430_214424/rtf_checkpoints/checkpoint-47400/config.json b/timecost/n11/realtabformer/rtf-n11-20260430_214424/rtf_checkpoints/checkpoint-47400/config.json new file mode 100644 index 0000000000000000000000000000000000000000..605aa5aa48fc96b6c3133032a3e66cd18090e70a --- /dev/null +++ b/timecost/n11/realtabformer/rtf-n11-20260430_214424/rtf_checkpoints/checkpoint-47400/config.json @@ -0,0 +1,34 @@ +{ + "activation_function": "gelu_new", + "add_cross_attention": false, + "architectures": [ + "GPT2LMHeadModel" + ], + "attn_pdrop": 0.1, + "bos_token_id": 5, + "dtype": "float32", + "embd_pdrop": 0.1, + "eos_token_id": 6, + "initializer_range": 0.02, + "layer_norm_epsilon": 1e-05, + "model_type": "gpt2", + "n_embd": 768, + "n_head": 12, + "n_inner": null, + "n_layer": 6, + "n_positions": 1024, + "pad_token_id": null, + "reorder_and_upcast_attn": false, + "resid_pdrop": 0.1, + "scale_attn_by_inverse_layer_idx": false, + "scale_attn_weights": true, + "summary_activation": null, + "summary_first_dropout": 0.1, + "summary_proj_to_labels": true, + "summary_type": "cls_index", + "summary_use_proj": true, + "tie_word_embeddings": true, + "transformers_version": "5.5.3", + "use_cache": false, + "vocab_size": 597 +} diff --git a/timecost/n11/realtabformer/rtf-n11-20260430_214424/rtf_checkpoints/checkpoint-47400/generation_config.json b/timecost/n11/realtabformer/rtf-n11-20260430_214424/rtf_checkpoints/checkpoint-47400/generation_config.json new file mode 100644 index 0000000000000000000000000000000000000000..ffe89567780e75b5c22eade9be971483b9618f39 --- /dev/null +++ b/timecost/n11/realtabformer/rtf-n11-20260430_214424/rtf_checkpoints/checkpoint-47400/generation_config.json @@ -0,0 +1,9 @@ +{ + "_from_model_config": true, + "bos_token_id": 5, + "eos_token_id": 6, + "output_attentions": false, + "output_hidden_states": false, + "transformers_version": "5.5.3", + "use_cache": true +} diff --git a/timecost/n11/realtabformer/rtf-n11-20260430_214424/rtf_checkpoints/checkpoint-47400/model.safetensors b/timecost/n11/realtabformer/rtf-n11-20260430_214424/rtf_checkpoints/checkpoint-47400/model.safetensors new file mode 100644 index 0000000000000000000000000000000000000000..cda5a1722df69bde07b6a61b5692370aaba422ef --- /dev/null +++ b/timecost/n11/realtabformer/rtf-n11-20260430_214424/rtf_checkpoints/checkpoint-47400/model.safetensors @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:9d4185db7493b83c229095f9fafd9a38cf04ce33c0f361dd07b0ade343b5c4b0 +size 175102408 diff --git a/timecost/n11/realtabformer/rtf-n11-20260430_214424/rtf_checkpoints/checkpoint-47400/optimizer.pt b/timecost/n11/realtabformer/rtf-n11-20260430_214424/rtf_checkpoints/checkpoint-47400/optimizer.pt new file mode 100644 index 0000000000000000000000000000000000000000..a064d108bd680609e780763d4a960d8c886cca93 --- /dev/null +++ b/timecost/n11/realtabformer/rtf-n11-20260430_214424/rtf_checkpoints/checkpoint-47400/optimizer.pt @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:a65008c4d9921678f6134bbb2fac4ee6b822ccc4a2c4166b203443583a7fffe7 +size 350253899 diff --git a/timecost/n11/realtabformer/rtf-n11-20260430_214424/rtf_checkpoints/checkpoint-47400/rng_state.pth b/timecost/n11/realtabformer/rtf-n11-20260430_214424/rtf_checkpoints/checkpoint-47400/rng_state.pth new file mode 100644 index 0000000000000000000000000000000000000000..a6cfbdb52b741d15e06a8ebbb39d051716dd911f --- /dev/null +++ b/timecost/n11/realtabformer/rtf-n11-20260430_214424/rtf_checkpoints/checkpoint-47400/rng_state.pth @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:4afd53189a740dbc2115a3db137fe82d3d508dc52c2d48040786c19702e8a9ef +size 14645 diff --git a/timecost/n11/realtabformer/rtf-n11-20260430_214424/rtf_checkpoints/checkpoint-47400/scaler.pt b/timecost/n11/realtabformer/rtf-n11-20260430_214424/rtf_checkpoints/checkpoint-47400/scaler.pt new file mode 100644 index 0000000000000000000000000000000000000000..78b9288e9cd61448cbc3f7f30b7220bcf275cc1f --- /dev/null +++ b/timecost/n11/realtabformer/rtf-n11-20260430_214424/rtf_checkpoints/checkpoint-47400/scaler.pt @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:e17ea719f0c1642fe4c1b1f994b46569ab9bfe5f0cbdf2dee742451ede1f896e +size 1383 diff --git a/timecost/n11/realtabformer/rtf-n11-20260430_214424/rtf_checkpoints/checkpoint-47400/scheduler.pt b/timecost/n11/realtabformer/rtf-n11-20260430_214424/rtf_checkpoints/checkpoint-47400/scheduler.pt new file mode 100644 index 0000000000000000000000000000000000000000..2101c8ed2275c395903dddc5b6eecc8111a5eacb --- /dev/null +++ b/timecost/n11/realtabformer/rtf-n11-20260430_214424/rtf_checkpoints/checkpoint-47400/scheduler.pt @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:cfad11a767d99b9f8986ad4617d25e646d3cff0fd9e8c261537eb02dc819d96f +size 1465 diff --git a/timecost/n11/realtabformer/rtf-n11-20260430_214424/rtf_checkpoints/checkpoint-47400/trainer_state.json b/timecost/n11/realtabformer/rtf-n11-20260430_214424/rtf_checkpoints/checkpoint-47400/trainer_state.json new file mode 100644 index 0000000000000000000000000000000000000000..85503238db95d3554fd339e5490c7d7e1effda90 --- /dev/null +++ b/timecost/n11/realtabformer/rtf-n11-20260430_214424/rtf_checkpoints/checkpoint-47400/trainer_state.json @@ -0,0 +1,3352 @@ +{ + "best_global_step": null, + "best_metric": null, + "best_model_checkpoint": null, + "epoch": 99.58044164037855, + "eval_steps": 100, + "global_step": 47400, + "is_hyper_param_search": false, + "is_local_process_zero": true, + "is_world_process_zero": true, + "log_history": [ + { + "epoch": 0.2103049421661409, + "grad_norm": 0.22972723841667175, + "learning_rate": 4.989600840336135e-05, + "loss": 2.8563604736328125, + "step": 100 + }, + { + "epoch": 0.4206098843322818, + "grad_norm": 0.20056591928005219, + "learning_rate": 4.9790966386554624e-05, + "loss": 1.7068206787109375, + "step": 200 + }, + { + "epoch": 0.6309148264984227, + "grad_norm": 0.1861766129732132, + "learning_rate": 4.9685924369747897e-05, + "loss": 1.6134432983398437, + "step": 300 + }, + { + "epoch": 0.8412197686645636, + "grad_norm": 0.1723501980304718, + "learning_rate": 4.9580882352941176e-05, + "loss": 1.5735923767089843, + "step": 400 + }, + { + "epoch": 1.0504731861198737, + "grad_norm": 0.17238108813762665, + "learning_rate": 4.9475840336134455e-05, + "loss": 1.5529734802246093, + "step": 500 + }, + { + "epoch": 1.2607781282860147, + "grad_norm": 0.17322759330272675, + "learning_rate": 4.9370798319327734e-05, + "loss": 1.536485137939453, + "step": 600 + }, + { + "epoch": 1.4710830704521556, + "grad_norm": 0.1677761971950531, + "learning_rate": 4.926575630252101e-05, + "loss": 1.5277809143066405, + "step": 700 + }, + { + "epoch": 1.6813880126182965, + "grad_norm": 0.1636463701725006, + "learning_rate": 4.9160714285714286e-05, + "loss": 1.5190211486816407, + "step": 800 + }, + { + "epoch": 1.8916929547844374, + "grad_norm": 0.16561312973499298, + "learning_rate": 4.9055672268907565e-05, + "loss": 1.51519287109375, + "step": 900 + }, + { + "epoch": 2.1009463722397475, + "grad_norm": 0.15477420389652252, + "learning_rate": 4.8950630252100845e-05, + "loss": 1.5094300842285155, + "step": 1000 + }, + { + "epoch": 2.3112513144058884, + "grad_norm": 0.16169467568397522, + "learning_rate": 4.8845588235294124e-05, + "loss": 1.503891143798828, + "step": 1100 + }, + { + "epoch": 2.5215562565720293, + "grad_norm": 0.1625037044286728, + "learning_rate": 4.8740546218487396e-05, + "loss": 1.5003668212890624, + "step": 1200 + }, + { + "epoch": 2.7318611987381702, + "grad_norm": 0.15850616991519928, + "learning_rate": 4.8635504201680676e-05, + "loss": 1.5004425048828125, + "step": 1300 + }, + { + "epoch": 2.942166140904311, + "grad_norm": 0.15703575313091278, + "learning_rate": 4.8530462184873955e-05, + "loss": 1.4983340454101564, + "step": 1400 + }, + { + "epoch": 3.1514195583596214, + "grad_norm": 0.16104279458522797, + "learning_rate": 4.8425420168067234e-05, + "loss": 1.4921080017089843, + "step": 1500 + }, + { + "epoch": 3.3617245005257623, + "grad_norm": 0.15719465911388397, + "learning_rate": 4.8320378151260507e-05, + "loss": 1.4903582763671874, + "step": 1600 + }, + { + "epoch": 3.5720294426919033, + "grad_norm": 0.15651755034923553, + "learning_rate": 4.821533613445378e-05, + "loss": 1.4904457092285157, + "step": 1700 + }, + { + "epoch": 3.782334384858044, + "grad_norm": 0.14600972831249237, + "learning_rate": 4.811029411764706e-05, + "loss": 1.4897219848632812, + "step": 1800 + }, + { + "epoch": 3.992639327024185, + "grad_norm": 0.15000982582569122, + "learning_rate": 4.800525210084034e-05, + "loss": 1.4866799926757812, + "step": 1900 + }, + { + "epoch": 4.201892744479495, + "grad_norm": 0.1467936933040619, + "learning_rate": 4.790021008403362e-05, + "loss": 1.48007080078125, + "step": 2000 + }, + { + "epoch": 4.412197686645636, + "grad_norm": 0.1541317105293274, + "learning_rate": 4.779516806722689e-05, + "loss": 1.48170166015625, + "step": 2100 + }, + { + "epoch": 4.622502628811777, + "grad_norm": 0.15136213600635529, + "learning_rate": 4.769012605042017e-05, + "loss": 1.4820193481445312, + "step": 2200 + }, + { + "epoch": 4.832807570977918, + "grad_norm": 0.15268521010875702, + "learning_rate": 4.758508403361345e-05, + "loss": 1.4826155090332032, + "step": 2300 + }, + { + "epoch": 5.042060988433228, + "grad_norm": 0.1507953554391861, + "learning_rate": 4.748004201680673e-05, + "loss": 1.4825518798828126, + "step": 2400 + }, + { + "epoch": 5.252365930599369, + "grad_norm": 0.15759222209453583, + "learning_rate": 4.7375e-05, + "loss": 1.4742916870117186, + "step": 2500 + }, + { + "epoch": 5.46267087276551, + "grad_norm": 0.1464644968509674, + "learning_rate": 4.726995798319328e-05, + "loss": 1.47645751953125, + "step": 2600 + }, + { + "epoch": 5.672975814931651, + "grad_norm": 0.1496453732252121, + "learning_rate": 4.716491596638656e-05, + "loss": 1.4782669067382812, + "step": 2700 + }, + { + "epoch": 5.883280757097792, + "grad_norm": 0.15732301771640778, + "learning_rate": 4.705987394957984e-05, + "loss": 1.474007110595703, + "step": 2800 + }, + { + "epoch": 6.092534174553102, + "grad_norm": 0.1535627543926239, + "learning_rate": 4.6954831932773117e-05, + "loss": 1.4723405456542968, + "step": 2900 + }, + { + "epoch": 6.302839116719243, + "grad_norm": 0.15365540981292725, + "learning_rate": 4.684978991596639e-05, + "loss": 1.470570068359375, + "step": 3000 + }, + { + "epoch": 6.513144058885384, + "grad_norm": 0.15696321427822113, + "learning_rate": 4.674474789915967e-05, + "loss": 1.4713912963867188, + "step": 3100 + }, + { + "epoch": 6.723449001051525, + "grad_norm": 0.1542283147573471, + "learning_rate": 4.663970588235294e-05, + "loss": 1.4717630004882813, + "step": 3200 + }, + { + "epoch": 6.933753943217665, + "grad_norm": 0.14150017499923706, + "learning_rate": 4.653466386554622e-05, + "loss": 1.4702410888671875, + "step": 3300 + }, + { + "epoch": 7.143007360672976, + "grad_norm": 0.1593707650899887, + "learning_rate": 4.64296218487395e-05, + "loss": 1.4674795532226563, + "step": 3400 + }, + { + "epoch": 7.353312302839116, + "grad_norm": 0.14085018634796143, + "learning_rate": 4.632457983193277e-05, + "loss": 1.4630509948730468, + "step": 3500 + }, + { + "epoch": 7.563617245005258, + "grad_norm": 0.15045367181301117, + "learning_rate": 4.621953781512605e-05, + "loss": 1.464947509765625, + "step": 3600 + }, + { + "epoch": 7.773922187171398, + "grad_norm": 0.1627761274576187, + "learning_rate": 4.611449579831933e-05, + "loss": 1.4676199340820313, + "step": 3700 + }, + { + "epoch": 7.9842271293375395, + "grad_norm": 0.15296733379364014, + "learning_rate": 4.600945378151261e-05, + "loss": 1.464564208984375, + "step": 3800 + }, + { + "epoch": 8.19348054679285, + "grad_norm": 0.15292306244373322, + "learning_rate": 4.590441176470588e-05, + "loss": 1.460281982421875, + "step": 3900 + }, + { + "epoch": 8.40378548895899, + "grad_norm": 0.14858974516391754, + "learning_rate": 4.579936974789916e-05, + "loss": 1.4601573181152343, + "step": 4000 + }, + { + "epoch": 8.614090431125131, + "grad_norm": 0.1559685617685318, + "learning_rate": 4.569432773109244e-05, + "loss": 1.459988555908203, + "step": 4100 + }, + { + "epoch": 8.824395373291273, + "grad_norm": 0.16048291325569153, + "learning_rate": 4.558928571428572e-05, + "loss": 1.4614971923828124, + "step": 4200 + }, + { + "epoch": 9.033648790746582, + "grad_norm": 0.15471497178077698, + "learning_rate": 4.548424369747899e-05, + "loss": 1.4605735778808593, + "step": 4300 + }, + { + "epoch": 9.243953732912724, + "grad_norm": 0.14675338566303253, + "learning_rate": 4.537920168067227e-05, + "loss": 1.4529206848144531, + "step": 4400 + }, + { + "epoch": 9.454258675078865, + "grad_norm": 0.15218420326709747, + "learning_rate": 4.527415966386555e-05, + "loss": 1.4555152893066405, + "step": 4500 + }, + { + "epoch": 9.664563617245005, + "grad_norm": 0.15305759012699127, + "learning_rate": 4.516911764705883e-05, + "loss": 1.4550628662109375, + "step": 4600 + }, + { + "epoch": 9.874868559411146, + "grad_norm": 0.14932408928871155, + "learning_rate": 4.50640756302521e-05, + "loss": 1.4576924133300782, + "step": 4700 + }, + { + "epoch": 10.084121976866456, + "grad_norm": 0.15317517518997192, + "learning_rate": 4.4959033613445375e-05, + "loss": 1.45219482421875, + "step": 4800 + }, + { + "epoch": 10.294426919032597, + "grad_norm": 0.14954303205013275, + "learning_rate": 4.4853991596638654e-05, + "loss": 1.4481625366210937, + "step": 4900 + }, + { + "epoch": 10.504731861198739, + "grad_norm": 0.1534873992204666, + "learning_rate": 4.4748949579831934e-05, + "loss": 1.4501405334472657, + "step": 5000 + }, + { + "epoch": 10.715036803364878, + "grad_norm": 0.1542547196149826, + "learning_rate": 4.464390756302521e-05, + "loss": 1.452711181640625, + "step": 5100 + }, + { + "epoch": 10.92534174553102, + "grad_norm": 0.15033429861068726, + "learning_rate": 4.453886554621849e-05, + "loss": 1.4518144226074219, + "step": 5200 + }, + { + "epoch": 11.13459516298633, + "grad_norm": 0.16419348120689392, + "learning_rate": 4.4433823529411765e-05, + "loss": 1.4447087097167968, + "step": 5300 + }, + { + "epoch": 11.34490010515247, + "grad_norm": 0.15558737516403198, + "learning_rate": 4.4328781512605044e-05, + "loss": 1.4432438659667968, + "step": 5400 + }, + { + "epoch": 11.555205047318612, + "grad_norm": 0.16111871600151062, + "learning_rate": 4.422373949579832e-05, + "loss": 1.44447509765625, + "step": 5500 + }, + { + "epoch": 11.765509989484753, + "grad_norm": 0.15655963122844696, + "learning_rate": 4.41186974789916e-05, + "loss": 1.446072998046875, + "step": 5600 + }, + { + "epoch": 11.975814931650893, + "grad_norm": 0.1640811264514923, + "learning_rate": 4.4013655462184875e-05, + "loss": 1.4470193481445313, + "step": 5700 + }, + { + "epoch": 12.185068349106205, + "grad_norm": 0.16302675008773804, + "learning_rate": 4.3908613445378154e-05, + "loss": 1.4352632141113282, + "step": 5800 + }, + { + "epoch": 12.395373291272344, + "grad_norm": 0.16527259349822998, + "learning_rate": 4.380357142857143e-05, + "loss": 1.4378224182128907, + "step": 5900 + }, + { + "epoch": 12.605678233438486, + "grad_norm": 0.15840137004852295, + "learning_rate": 4.369852941176471e-05, + "loss": 1.438340301513672, + "step": 6000 + }, + { + "epoch": 12.815983175604627, + "grad_norm": 0.16105377674102783, + "learning_rate": 4.3593487394957985e-05, + "loss": 1.4395623779296876, + "step": 6100 + }, + { + "epoch": 13.025236593059937, + "grad_norm": 0.1645898073911667, + "learning_rate": 4.348844537815126e-05, + "loss": 1.4419912719726562, + "step": 6200 + }, + { + "epoch": 13.235541535226078, + "grad_norm": 0.16387709975242615, + "learning_rate": 4.338340336134454e-05, + "loss": 1.4292103576660156, + "step": 6300 + }, + { + "epoch": 13.44584647739222, + "grad_norm": 0.16231203079223633, + "learning_rate": 4.3278361344537816e-05, + "loss": 1.4302072143554687, + "step": 6400 + }, + { + "epoch": 13.656151419558359, + "grad_norm": 0.17272767424583435, + "learning_rate": 4.3173319327731095e-05, + "loss": 1.4360617065429688, + "step": 6500 + }, + { + "epoch": 13.8664563617245, + "grad_norm": 0.16650696098804474, + "learning_rate": 4.306827731092437e-05, + "loss": 1.43187744140625, + "step": 6600 + }, + { + "epoch": 14.07570977917981, + "grad_norm": 0.17131085693836212, + "learning_rate": 4.296323529411765e-05, + "loss": 1.428362579345703, + "step": 6700 + }, + { + "epoch": 14.286014721345952, + "grad_norm": 0.1767681986093521, + "learning_rate": 4.2858193277310926e-05, + "loss": 1.4247616577148436, + "step": 6800 + }, + { + "epoch": 14.496319663512093, + "grad_norm": 0.17670001089572906, + "learning_rate": 4.2753151260504206e-05, + "loss": 1.4254454040527345, + "step": 6900 + }, + { + "epoch": 14.706624605678233, + "grad_norm": 0.1740790754556656, + "learning_rate": 4.2648109243697485e-05, + "loss": 1.4258729553222655, + "step": 7000 + }, + { + "epoch": 14.916929547844374, + "grad_norm": 0.1759176403284073, + "learning_rate": 4.254306722689076e-05, + "loss": 1.429442138671875, + "step": 7100 + }, + { + "epoch": 15.126182965299684, + "grad_norm": 0.17811505496501923, + "learning_rate": 4.2438025210084037e-05, + "loss": 1.4193470764160157, + "step": 7200 + }, + { + "epoch": 15.336487907465825, + "grad_norm": 0.1877354234457016, + "learning_rate": 4.2332983193277316e-05, + "loss": 1.4145277404785157, + "step": 7300 + }, + { + "epoch": 15.546792849631967, + "grad_norm": 0.18199266493320465, + "learning_rate": 4.2227941176470595e-05, + "loss": 1.4196495056152343, + "step": 7400 + }, + { + "epoch": 15.757097791798108, + "grad_norm": 0.18197669088840485, + "learning_rate": 4.212289915966387e-05, + "loss": 1.418301544189453, + "step": 7500 + }, + { + "epoch": 15.967402733964247, + "grad_norm": 0.1789412796497345, + "learning_rate": 4.201785714285714e-05, + "loss": 1.4207553100585937, + "step": 7600 + }, + { + "epoch": 16.176656151419557, + "grad_norm": 0.19073587656021118, + "learning_rate": 4.191281512605042e-05, + "loss": 1.405756072998047, + "step": 7700 + }, + { + "epoch": 16.3869610935857, + "grad_norm": 0.20197375118732452, + "learning_rate": 4.18077731092437e-05, + "loss": 1.4052299499511718, + "step": 7800 + }, + { + "epoch": 16.59726603575184, + "grad_norm": 0.19041137397289276, + "learning_rate": 4.170273109243698e-05, + "loss": 1.4102354431152344, + "step": 7900 + }, + { + "epoch": 16.80757097791798, + "grad_norm": 0.18918046355247498, + "learning_rate": 4.159768907563025e-05, + "loss": 1.4105937194824218, + "step": 8000 + }, + { + "epoch": 17.01682439537329, + "grad_norm": 0.20001663267612457, + "learning_rate": 4.149264705882353e-05, + "loss": 1.4125469970703124, + "step": 8100 + }, + { + "epoch": 17.22712933753943, + "grad_norm": 0.20373570919036865, + "learning_rate": 4.138760504201681e-05, + "loss": 1.3912005615234375, + "step": 8200 + }, + { + "epoch": 17.437434279705574, + "grad_norm": 0.21228203177452087, + "learning_rate": 4.128256302521009e-05, + "loss": 1.400099334716797, + "step": 8300 + }, + { + "epoch": 17.647739221871714, + "grad_norm": 0.19748076796531677, + "learning_rate": 4.117752100840336e-05, + "loss": 1.3983584594726564, + "step": 8400 + }, + { + "epoch": 17.858044164037857, + "grad_norm": 0.19849108159542084, + "learning_rate": 4.107247899159664e-05, + "loss": 1.4034251403808593, + "step": 8500 + }, + { + "epoch": 18.067297581493165, + "grad_norm": 0.20575450360774994, + "learning_rate": 4.096743697478992e-05, + "loss": 1.3967425537109375, + "step": 8600 + }, + { + "epoch": 18.277602523659304, + "grad_norm": 0.21221311390399933, + "learning_rate": 4.08623949579832e-05, + "loss": 1.3828977966308593, + "step": 8700 + }, + { + "epoch": 18.487907465825447, + "grad_norm": 0.21134966611862183, + "learning_rate": 4.075735294117648e-05, + "loss": 1.3854733276367188, + "step": 8800 + }, + { + "epoch": 18.698212407991587, + "grad_norm": 0.22016377747058868, + "learning_rate": 4.065231092436975e-05, + "loss": 1.3901968383789063, + "step": 8900 + }, + { + "epoch": 18.90851735015773, + "grad_norm": 0.21417804062366486, + "learning_rate": 4.054726890756303e-05, + "loss": 1.393634033203125, + "step": 9000 + }, + { + "epoch": 19.117770767613038, + "grad_norm": 0.22256560623645782, + "learning_rate": 4.04422268907563e-05, + "loss": 1.3783042907714844, + "step": 9100 + }, + { + "epoch": 19.32807570977918, + "grad_norm": 0.22738981246948242, + "learning_rate": 4.033718487394958e-05, + "loss": 1.370293426513672, + "step": 9200 + }, + { + "epoch": 19.53838065194532, + "grad_norm": 0.22241266071796417, + "learning_rate": 4.023214285714286e-05, + "loss": 1.3737275695800781, + "step": 9300 + }, + { + "epoch": 19.74868559411146, + "grad_norm": 0.23391330242156982, + "learning_rate": 4.012710084033613e-05, + "loss": 1.377355194091797, + "step": 9400 + }, + { + "epoch": 19.958990536277604, + "grad_norm": 0.22519543766975403, + "learning_rate": 4.002205882352941e-05, + "loss": 1.3812960815429687, + "step": 9500 + }, + { + "epoch": 20.16824395373291, + "grad_norm": 0.24074196815490723, + "learning_rate": 3.991701680672269e-05, + "loss": 1.3570118713378907, + "step": 9600 + }, + { + "epoch": 20.378548895899055, + "grad_norm": 0.24606694281101227, + "learning_rate": 3.981197478991597e-05, + "loss": 1.3554267883300781, + "step": 9700 + }, + { + "epoch": 20.588853838065194, + "grad_norm": 0.23913830518722534, + "learning_rate": 3.970693277310924e-05, + "loss": 1.3621504211425781, + "step": 9800 + }, + { + "epoch": 20.799158780231334, + "grad_norm": 0.2383037805557251, + "learning_rate": 3.960189075630252e-05, + "loss": 1.3660731506347656, + "step": 9900 + }, + { + "epoch": 21.008412197686646, + "grad_norm": 0.241073340177536, + "learning_rate": 3.94968487394958e-05, + "loss": 1.3653842163085939, + "step": 10000 + }, + { + "epoch": 21.218717139852785, + "grad_norm": 0.25740981101989746, + "learning_rate": 3.939180672268908e-05, + "loss": 1.3331489562988281, + "step": 10100 + }, + { + "epoch": 21.42902208201893, + "grad_norm": 0.25830078125, + "learning_rate": 3.928676470588235e-05, + "loss": 1.3397677612304688, + "step": 10200 + }, + { + "epoch": 21.639327024185068, + "grad_norm": 0.26326829195022583, + "learning_rate": 3.918172268907563e-05, + "loss": 1.3485836791992187, + "step": 10300 + }, + { + "epoch": 21.84963196635121, + "grad_norm": 0.26259171962738037, + "learning_rate": 3.907668067226891e-05, + "loss": 1.3472573852539063, + "step": 10400 + }, + { + "epoch": 22.05888538380652, + "grad_norm": 0.27395525574684143, + "learning_rate": 3.897163865546219e-05, + "loss": 1.3426994323730468, + "step": 10500 + }, + { + "epoch": 22.26919032597266, + "grad_norm": 0.2820175290107727, + "learning_rate": 3.8866596638655463e-05, + "loss": 1.3179571533203125, + "step": 10600 + }, + { + "epoch": 22.479495268138802, + "grad_norm": 0.2815999984741211, + "learning_rate": 3.8761554621848736e-05, + "loss": 1.3242898559570313, + "step": 10700 + }, + { + "epoch": 22.68980021030494, + "grad_norm": 0.2788920998573303, + "learning_rate": 3.8656512605042015e-05, + "loss": 1.328133087158203, + "step": 10800 + }, + { + "epoch": 22.900105152471085, + "grad_norm": 0.2880179286003113, + "learning_rate": 3.8551470588235294e-05, + "loss": 1.3323233032226562, + "step": 10900 + }, + { + "epoch": 23.109358569926393, + "grad_norm": 0.29323825240135193, + "learning_rate": 3.8446428571428574e-05, + "loss": 1.3124215698242188, + "step": 11000 + }, + { + "epoch": 23.319663512092536, + "grad_norm": 0.3037724196910858, + "learning_rate": 3.834138655462185e-05, + "loss": 1.300673370361328, + "step": 11100 + }, + { + "epoch": 23.529968454258675, + "grad_norm": 0.3019108772277832, + "learning_rate": 3.8236344537815125e-05, + "loss": 1.3033621215820312, + "step": 11200 + }, + { + "epoch": 23.740273396424815, + "grad_norm": 0.3141040503978729, + "learning_rate": 3.8131302521008405e-05, + "loss": 1.3118415832519532, + "step": 11300 + }, + { + "epoch": 23.950578338590958, + "grad_norm": 0.305362731218338, + "learning_rate": 3.8026260504201684e-05, + "loss": 1.3120425415039063, + "step": 11400 + }, + { + "epoch": 24.159831756046266, + "grad_norm": 0.3149303197860718, + "learning_rate": 3.792121848739496e-05, + "loss": 1.281750946044922, + "step": 11500 + }, + { + "epoch": 24.37013669821241, + "grad_norm": 0.31983524560928345, + "learning_rate": 3.7816176470588236e-05, + "loss": 1.2786111450195312, + "step": 11600 + }, + { + "epoch": 24.58044164037855, + "grad_norm": 0.32351240515708923, + "learning_rate": 3.7711134453781515e-05, + "loss": 1.284888916015625, + "step": 11700 + }, + { + "epoch": 24.79074658254469, + "grad_norm": 0.3239966034889221, + "learning_rate": 3.7606092436974794e-05, + "loss": 1.2899176025390624, + "step": 11800 + }, + { + "epoch": 25.0, + "grad_norm": 0.49487531185150146, + "learning_rate": 3.7501050420168073e-05, + "loss": 1.2903105163574218, + "step": 11900 + }, + { + "epoch": 25.21030494216614, + "grad_norm": 0.343091756105423, + "learning_rate": 3.7396008403361346e-05, + "loss": 1.24728271484375, + "step": 12000 + }, + { + "epoch": 25.420609884332283, + "grad_norm": 0.3502146899700165, + "learning_rate": 3.729096638655462e-05, + "loss": 1.2573788452148438, + "step": 12100 + }, + { + "epoch": 25.630914826498422, + "grad_norm": 0.34780803322792053, + "learning_rate": 3.71859243697479e-05, + "loss": 1.259660186767578, + "step": 12200 + }, + { + "epoch": 25.841219768664562, + "grad_norm": 0.3617474436759949, + "learning_rate": 3.708088235294118e-05, + "loss": 1.267321548461914, + "step": 12300 + }, + { + "epoch": 26.050473186119874, + "grad_norm": 0.36151477694511414, + "learning_rate": 3.6975840336134456e-05, + "loss": 1.2569818878173828, + "step": 12400 + }, + { + "epoch": 26.260778128286013, + "grad_norm": 0.3706369400024414, + "learning_rate": 3.687079831932773e-05, + "loss": 1.2217762756347657, + "step": 12500 + }, + { + "epoch": 26.471083070452156, + "grad_norm": 0.36876797676086426, + "learning_rate": 3.676575630252101e-05, + "loss": 1.2311412048339845, + "step": 12600 + }, + { + "epoch": 26.681388012618296, + "grad_norm": 0.37329521775245667, + "learning_rate": 3.666071428571429e-05, + "loss": 1.23805908203125, + "step": 12700 + }, + { + "epoch": 26.89169295478444, + "grad_norm": 0.3803170919418335, + "learning_rate": 3.6555672268907566e-05, + "loss": 1.2423350524902343, + "step": 12800 + }, + { + "epoch": 27.100946372239747, + "grad_norm": 0.3833712637424469, + "learning_rate": 3.6450630252100846e-05, + "loss": 1.222099609375, + "step": 12900 + }, + { + "epoch": 27.31125131440589, + "grad_norm": 0.3987831771373749, + "learning_rate": 3.634558823529412e-05, + "loss": 1.1973797607421874, + "step": 13000 + }, + { + "epoch": 27.52155625657203, + "grad_norm": 0.39121338725090027, + "learning_rate": 3.62405462184874e-05, + "loss": 1.206004409790039, + "step": 13100 + }, + { + "epoch": 27.73186119873817, + "grad_norm": 0.4020472764968872, + "learning_rate": 3.613550420168068e-05, + "loss": 1.2129373168945312, + "step": 13200 + }, + { + "epoch": 27.942166140904312, + "grad_norm": 0.4015159606933594, + "learning_rate": 3.6030462184873956e-05, + "loss": 1.2179686737060547, + "step": 13300 + }, + { + "epoch": 28.15141955835962, + "grad_norm": 0.3998790681362152, + "learning_rate": 3.592542016806723e-05, + "loss": 1.1833483123779296, + "step": 13400 + }, + { + "epoch": 28.361724500525764, + "grad_norm": 0.4190026819705963, + "learning_rate": 3.582037815126051e-05, + "loss": 1.1737586975097656, + "step": 13500 + }, + { + "epoch": 28.572029442691903, + "grad_norm": 0.4131736159324646, + "learning_rate": 3.571533613445378e-05, + "loss": 1.1806912231445312, + "step": 13600 + }, + { + "epoch": 28.782334384858043, + "grad_norm": 0.4250866174697876, + "learning_rate": 3.561029411764706e-05, + "loss": 1.1913446044921876, + "step": 13700 + }, + { + "epoch": 28.992639327024186, + "grad_norm": 0.4264129400253296, + "learning_rate": 3.550525210084034e-05, + "loss": 1.1878318786621094, + "step": 13800 + }, + { + "epoch": 29.201892744479494, + "grad_norm": 0.43633338809013367, + "learning_rate": 3.540021008403361e-05, + "loss": 1.1386358642578125, + "step": 13900 + }, + { + "epoch": 29.412197686645637, + "grad_norm": 0.4486881494522095, + "learning_rate": 3.529516806722689e-05, + "loss": 1.1477174377441406, + "step": 14000 + }, + { + "epoch": 29.622502628811777, + "grad_norm": 0.4420314133167267, + "learning_rate": 3.519012605042017e-05, + "loss": 1.1530896759033202, + "step": 14100 + }, + { + "epoch": 29.832807570977916, + "grad_norm": 0.4598003327846527, + "learning_rate": 3.508508403361345e-05, + "loss": 1.16252197265625, + "step": 14200 + }, + { + "epoch": 30.042060988433228, + "grad_norm": 0.44520533084869385, + "learning_rate": 3.498004201680672e-05, + "loss": 1.1551103973388672, + "step": 14300 + }, + { + "epoch": 30.252365930599368, + "grad_norm": 0.45871588587760925, + "learning_rate": 3.4875e-05, + "loss": 1.107753448486328, + "step": 14400 + }, + { + "epoch": 30.46267087276551, + "grad_norm": 0.46063199639320374, + "learning_rate": 3.476995798319328e-05, + "loss": 1.1182296752929688, + "step": 14500 + }, + { + "epoch": 30.67297581493165, + "grad_norm": 0.4760204553604126, + "learning_rate": 3.466491596638656e-05, + "loss": 1.129236373901367, + "step": 14600 + }, + { + "epoch": 30.883280757097793, + "grad_norm": 0.47249314188957214, + "learning_rate": 3.455987394957984e-05, + "loss": 1.1352229309082031, + "step": 14700 + }, + { + "epoch": 31.0925341745531, + "grad_norm": 0.4624006450176239, + "learning_rate": 3.445483193277311e-05, + "loss": 1.1082867431640624, + "step": 14800 + }, + { + "epoch": 31.302839116719245, + "grad_norm": 0.4787958264350891, + "learning_rate": 3.434978991596639e-05, + "loss": 1.0818411254882812, + "step": 14900 + }, + { + "epoch": 31.513144058885384, + "grad_norm": 0.4875246286392212, + "learning_rate": 3.424474789915967e-05, + "loss": 1.092553939819336, + "step": 15000 + }, + { + "epoch": 31.723449001051524, + "grad_norm": 0.48742467164993286, + "learning_rate": 3.413970588235294e-05, + "loss": 1.1002989959716798, + "step": 15100 + }, + { + "epoch": 31.933753943217667, + "grad_norm": 0.5014126896858215, + "learning_rate": 3.403466386554622e-05, + "loss": 1.1067331695556641, + "step": 15200 + }, + { + "epoch": 32.143007360672975, + "grad_norm": 0.48793110251426697, + "learning_rate": 3.3929621848739494e-05, + "loss": 1.0649752807617188, + "step": 15300 + }, + { + "epoch": 32.353312302839115, + "grad_norm": 0.5064884424209595, + "learning_rate": 3.382457983193277e-05, + "loss": 1.0489683532714844, + "step": 15400 + }, + { + "epoch": 32.56361724500526, + "grad_norm": 0.5118729472160339, + "learning_rate": 3.371953781512605e-05, + "loss": 1.0648185729980468, + "step": 15500 + }, + { + "epoch": 32.7739221871714, + "grad_norm": 0.5236688852310181, + "learning_rate": 3.361449579831933e-05, + "loss": 1.0743647766113282, + "step": 15600 + }, + { + "epoch": 32.98422712933754, + "grad_norm": 0.5397860407829285, + "learning_rate": 3.3509453781512604e-05, + "loss": 1.080048828125, + "step": 15700 + }, + { + "epoch": 33.19348054679285, + "grad_norm": 0.5270755290985107, + "learning_rate": 3.340441176470588e-05, + "loss": 1.0228548431396485, + "step": 15800 + }, + { + "epoch": 33.40378548895899, + "grad_norm": 0.5429406762123108, + "learning_rate": 3.329936974789916e-05, + "loss": 1.028949966430664, + "step": 15900 + }, + { + "epoch": 33.614090431125135, + "grad_norm": 0.5323997735977173, + "learning_rate": 3.319432773109244e-05, + "loss": 1.037523956298828, + "step": 16000 + }, + { + "epoch": 33.824395373291274, + "grad_norm": 0.5385149717330933, + "learning_rate": 3.3090336134453784e-05, + "loss": 1.0431160736083984, + "step": 16100 + }, + { + "epoch": 34.03364879074658, + "grad_norm": 0.5089665651321411, + "learning_rate": 3.2986344537815127e-05, + "loss": 1.0349723815917968, + "step": 16200 + }, + { + "epoch": 34.24395373291272, + "grad_norm": 0.5455434918403625, + "learning_rate": 3.2881302521008406e-05, + "loss": 0.988803482055664, + "step": 16300 + }, + { + "epoch": 34.45425867507886, + "grad_norm": 0.5569856762886047, + "learning_rate": 3.2776260504201685e-05, + "loss": 1.0031266021728515, + "step": 16400 + }, + { + "epoch": 34.66456361724501, + "grad_norm": 0.5644022226333618, + "learning_rate": 3.2671218487394964e-05, + "loss": 1.0083402252197267, + "step": 16500 + }, + { + "epoch": 34.87486855941115, + "grad_norm": 0.5685406923294067, + "learning_rate": 3.256617647058824e-05, + "loss": 1.0177439117431641, + "step": 16600 + }, + { + "epoch": 35.084121976866456, + "grad_norm": 0.543632447719574, + "learning_rate": 3.2461134453781516e-05, + "loss": 0.9930455780029297, + "step": 16700 + }, + { + "epoch": 35.294426919032595, + "grad_norm": 0.5612316727638245, + "learning_rate": 3.2356092436974795e-05, + "loss": 0.9650897216796875, + "step": 16800 + }, + { + "epoch": 35.504731861198735, + "grad_norm": 0.5759446024894714, + "learning_rate": 3.225105042016807e-05, + "loss": 0.973653564453125, + "step": 16900 + }, + { + "epoch": 35.71503680336488, + "grad_norm": 0.574255645275116, + "learning_rate": 3.214600840336135e-05, + "loss": 0.981424560546875, + "step": 17000 + }, + { + "epoch": 35.92534174553102, + "grad_norm": 0.5851606726646423, + "learning_rate": 3.204096638655462e-05, + "loss": 0.991123046875, + "step": 17100 + }, + { + "epoch": 36.13459516298633, + "grad_norm": 0.5589666366577148, + "learning_rate": 3.19359243697479e-05, + "loss": 0.9481909942626953, + "step": 17200 + }, + { + "epoch": 36.34490010515247, + "grad_norm": 0.5968824625015259, + "learning_rate": 3.183088235294118e-05, + "loss": 0.9365898895263672, + "step": 17300 + }, + { + "epoch": 36.55520504731861, + "grad_norm": 0.5998508930206299, + "learning_rate": 3.172584033613446e-05, + "loss": 0.9492893218994141, + "step": 17400 + }, + { + "epoch": 36.765509989484755, + "grad_norm": 0.6060558557510376, + "learning_rate": 3.162079831932773e-05, + "loss": 0.9547823333740234, + "step": 17500 + }, + { + "epoch": 36.975814931650895, + "grad_norm": 0.589341402053833, + "learning_rate": 3.151575630252101e-05, + "loss": 0.9626276397705078, + "step": 17600 + }, + { + "epoch": 37.1850683491062, + "grad_norm": 0.5891321897506714, + "learning_rate": 3.141071428571429e-05, + "loss": 0.9065424346923828, + "step": 17700 + }, + { + "epoch": 37.39537329127234, + "grad_norm": 0.5880729556083679, + "learning_rate": 3.130567226890757e-05, + "loss": 0.9107749938964844, + "step": 17800 + }, + { + "epoch": 37.60567823343849, + "grad_norm": 0.6077774167060852, + "learning_rate": 3.120063025210084e-05, + "loss": 0.9193459320068359, + "step": 17900 + }, + { + "epoch": 37.81598317560463, + "grad_norm": 0.6189863681793213, + "learning_rate": 3.109558823529412e-05, + "loss": 0.9286084747314454, + "step": 18000 + }, + { + "epoch": 38.02523659305994, + "grad_norm": 0.5724475383758545, + "learning_rate": 3.09905462184874e-05, + "loss": 0.9282203674316406, + "step": 18100 + }, + { + "epoch": 38.235541535226076, + "grad_norm": 0.5952550768852234, + "learning_rate": 3.088550420168068e-05, + "loss": 0.8734053039550781, + "step": 18200 + }, + { + "epoch": 38.445846477392216, + "grad_norm": 0.5967536568641663, + "learning_rate": 3.078046218487395e-05, + "loss": 0.886033935546875, + "step": 18300 + }, + { + "epoch": 38.65615141955836, + "grad_norm": 0.6298649311065674, + "learning_rate": 3.067542016806722e-05, + "loss": 0.8977913665771484, + "step": 18400 + }, + { + "epoch": 38.8664563617245, + "grad_norm": 0.6457948684692383, + "learning_rate": 3.05703781512605e-05, + "loss": 0.9048082733154297, + "step": 18500 + }, + { + "epoch": 39.07570977917981, + "grad_norm": 0.6172012090682983, + "learning_rate": 3.046533613445378e-05, + "loss": 0.8857656860351563, + "step": 18600 + }, + { + "epoch": 39.28601472134595, + "grad_norm": 0.5979504585266113, + "learning_rate": 3.036029411764706e-05, + "loss": 0.8502845001220704, + "step": 18700 + }, + { + "epoch": 39.49631966351209, + "grad_norm": 0.6284430623054504, + "learning_rate": 3.0255252100840336e-05, + "loss": 0.8602873229980469, + "step": 18800 + }, + { + "epoch": 39.706624605678236, + "grad_norm": 0.6330845355987549, + "learning_rate": 3.0150210084033616e-05, + "loss": 0.8690576934814453, + "step": 18900 + }, + { + "epoch": 39.916929547844376, + "grad_norm": 0.6465399861335754, + "learning_rate": 3.004516806722689e-05, + "loss": 0.8787310791015625, + "step": 19000 + }, + { + "epoch": 40.126182965299684, + "grad_norm": 0.6255329251289368, + "learning_rate": 2.994117647058824e-05, + "loss": 0.84158203125, + "step": 19100 + }, + { + "epoch": 40.33648790746582, + "grad_norm": 0.6304967999458313, + "learning_rate": 2.983613445378151e-05, + "loss": 0.8283135223388672, + "step": 19200 + }, + { + "epoch": 40.54679284963196, + "grad_norm": 0.6366279125213623, + "learning_rate": 2.973109243697479e-05, + "loss": 0.8385968780517579, + "step": 19300 + }, + { + "epoch": 40.75709779179811, + "grad_norm": 0.6407002210617065, + "learning_rate": 2.9626050420168065e-05, + "loss": 0.8465004730224609, + "step": 19400 + }, + { + "epoch": 40.96740273396425, + "grad_norm": 0.6582015156745911, + "learning_rate": 2.9521008403361344e-05, + "loss": 0.8523696136474609, + "step": 19500 + }, + { + "epoch": 41.17665615141956, + "grad_norm": 0.6326037645339966, + "learning_rate": 2.9415966386554624e-05, + "loss": 0.8025535583496094, + "step": 19600 + }, + { + "epoch": 41.3869610935857, + "grad_norm": 0.631605863571167, + "learning_rate": 2.93109243697479e-05, + "loss": 0.8077165222167969, + "step": 19700 + }, + { + "epoch": 41.597266035751844, + "grad_norm": 0.6400684118270874, + "learning_rate": 2.920588235294118e-05, + "loss": 0.8162235260009766, + "step": 19800 + }, + { + "epoch": 41.80757097791798, + "grad_norm": 0.6499695181846619, + "learning_rate": 2.9100840336134455e-05, + "loss": 0.8243218231201171, + "step": 19900 + }, + { + "epoch": 42.01682439537329, + "grad_norm": 0.6392955183982849, + "learning_rate": 2.8995798319327734e-05, + "loss": 0.8244134521484375, + "step": 20000 + }, + { + "epoch": 42.22712933753943, + "grad_norm": 0.6429536938667297, + "learning_rate": 2.889075630252101e-05, + "loss": 0.7711881256103515, + "step": 20100 + }, + { + "epoch": 42.43743427970557, + "grad_norm": 0.6592206358909607, + "learning_rate": 2.878571428571429e-05, + "loss": 0.7841451263427734, + "step": 20200 + }, + { + "epoch": 42.64773922187172, + "grad_norm": 0.6881083846092224, + "learning_rate": 2.8680672268907565e-05, + "loss": 0.792880859375, + "step": 20300 + }, + { + "epoch": 42.85804416403786, + "grad_norm": 0.6662302017211914, + "learning_rate": 2.8575630252100844e-05, + "loss": 0.8001659393310547, + "step": 20400 + }, + { + "epoch": 43.067297581493165, + "grad_norm": 0.6177626252174377, + "learning_rate": 2.847058823529412e-05, + "loss": 0.7870485687255859, + "step": 20500 + }, + { + "epoch": 43.277602523659304, + "grad_norm": 0.6681060194969177, + "learning_rate": 2.83655462184874e-05, + "loss": 0.7512457275390625, + "step": 20600 + }, + { + "epoch": 43.487907465825444, + "grad_norm": 0.669675886631012, + "learning_rate": 2.826050420168067e-05, + "loss": 0.7591960144042968, + "step": 20700 + }, + { + "epoch": 43.69821240799159, + "grad_norm": 0.7097092866897583, + "learning_rate": 2.8155462184873948e-05, + "loss": 0.7737602233886719, + "step": 20800 + }, + { + "epoch": 43.90851735015773, + "grad_norm": 0.6951079964637756, + "learning_rate": 2.8050420168067227e-05, + "loss": 0.7815242767333984, + "step": 20900 + }, + { + "epoch": 44.11777076761304, + "grad_norm": 0.639824390411377, + "learning_rate": 2.7945378151260503e-05, + "loss": 0.7512903594970703, + "step": 21000 + }, + { + "epoch": 44.32807570977918, + "grad_norm": 0.67326819896698, + "learning_rate": 2.7840336134453782e-05, + "loss": 0.7329978179931641, + "step": 21100 + }, + { + "epoch": 44.53838065194532, + "grad_norm": 0.6938571333885193, + "learning_rate": 2.7735294117647058e-05, + "loss": 0.7421668243408203, + "step": 21200 + }, + { + "epoch": 44.748685594111464, + "grad_norm": 0.6845099925994873, + "learning_rate": 2.7630252100840337e-05, + "loss": 0.7509217071533203, + "step": 21300 + }, + { + "epoch": 44.958990536277604, + "grad_norm": 0.681825578212738, + "learning_rate": 2.7525210084033616e-05, + "loss": 0.7620004272460937, + "step": 21400 + }, + { + "epoch": 45.16824395373291, + "grad_norm": 0.6556856036186218, + "learning_rate": 2.7421218487394962e-05, + "loss": 0.7184288787841797, + "step": 21500 + }, + { + "epoch": 45.37854889589905, + "grad_norm": 0.6386471390724182, + "learning_rate": 2.7316176470588235e-05, + "loss": 0.7161962127685547, + "step": 21600 + }, + { + "epoch": 45.5888538380652, + "grad_norm": 0.6947113275527954, + "learning_rate": 2.721113445378151e-05, + "loss": 0.7244486999511719, + "step": 21700 + }, + { + "epoch": 45.79915878023134, + "grad_norm": 0.6741232872009277, + "learning_rate": 2.710609243697479e-05, + "loss": 0.7308968353271484, + "step": 21800 + }, + { + "epoch": 46.008412197686646, + "grad_norm": 0.6631771326065063, + "learning_rate": 2.7001050420168066e-05, + "loss": 0.7323504638671875, + "step": 21900 + }, + { + "epoch": 46.218717139852785, + "grad_norm": 0.6702309250831604, + "learning_rate": 2.6896008403361345e-05, + "loss": 0.6865713500976562, + "step": 22000 + }, + { + "epoch": 46.429022082018925, + "grad_norm": 0.6711138486862183, + "learning_rate": 2.679096638655462e-05, + "loss": 0.697294921875, + "step": 22100 + }, + { + "epoch": 46.63932702418507, + "grad_norm": 0.7067892551422119, + "learning_rate": 2.66859243697479e-05, + "loss": 0.70609619140625, + "step": 22200 + }, + { + "epoch": 46.84963196635121, + "grad_norm": 0.6743476390838623, + "learning_rate": 2.658088235294118e-05, + "loss": 0.7116059112548828, + "step": 22300 + }, + { + "epoch": 47.05888538380652, + "grad_norm": 0.642842710018158, + "learning_rate": 2.6475840336134455e-05, + "loss": 0.7024728393554688, + "step": 22400 + }, + { + "epoch": 47.26919032597266, + "grad_norm": 0.6852782368659973, + "learning_rate": 2.6370798319327734e-05, + "loss": 0.6698217010498047, + "step": 22500 + }, + { + "epoch": 47.4794952681388, + "grad_norm": 0.6817244291305542, + "learning_rate": 2.626575630252101e-05, + "loss": 0.6796794891357422, + "step": 22600 + }, + { + "epoch": 47.689800210304945, + "grad_norm": 0.665703535079956, + "learning_rate": 2.616071428571429e-05, + "loss": 0.689930191040039, + "step": 22700 + }, + { + "epoch": 47.900105152471085, + "grad_norm": 0.7286046147346497, + "learning_rate": 2.6055672268907565e-05, + "loss": 0.6968262481689453, + "step": 22800 + }, + { + "epoch": 48.10935856992639, + "grad_norm": 0.6568066477775574, + "learning_rate": 2.5950630252100845e-05, + "loss": 0.6714718627929688, + "step": 22900 + }, + { + "epoch": 48.31966351209253, + "grad_norm": 0.6909933090209961, + "learning_rate": 2.584558823529412e-05, + "loss": 0.6521046447753907, + "step": 23000 + }, + { + "epoch": 48.52996845425867, + "grad_norm": 0.6730957627296448, + "learning_rate": 2.5740546218487393e-05, + "loss": 0.6635847473144532, + "step": 23100 + }, + { + "epoch": 48.74027339642482, + "grad_norm": 0.7137960195541382, + "learning_rate": 2.5635504201680672e-05, + "loss": 0.6703518676757813, + "step": 23200 + }, + { + "epoch": 48.95057833859096, + "grad_norm": 0.7035015225410461, + "learning_rate": 2.5530462184873948e-05, + "loss": 0.678240737915039, + "step": 23300 + }, + { + "epoch": 49.159831756046266, + "grad_norm": 0.6768185496330261, + "learning_rate": 2.5425420168067227e-05, + "loss": 0.6413292694091797, + "step": 23400 + }, + { + "epoch": 49.370136698212406, + "grad_norm": 0.6941663026809692, + "learning_rate": 2.5320378151260503e-05, + "loss": 0.6415236663818359, + "step": 23500 + }, + { + "epoch": 49.58044164037855, + "grad_norm": 0.722435712814331, + "learning_rate": 2.5215336134453782e-05, + "loss": 0.6499783325195313, + "step": 23600 + }, + { + "epoch": 49.79074658254469, + "grad_norm": 0.7071043252944946, + "learning_rate": 2.511029411764706e-05, + "loss": 0.6546615600585938, + "step": 23700 + }, + { + "epoch": 50.0, + "grad_norm": Infinity, + "learning_rate": 2.5005252100840338e-05, + "loss": 0.6589860534667968, + "step": 23800 + }, + { + "epoch": 50.21030494216614, + "grad_norm": 0.6747011542320251, + "learning_rate": 2.490126050420168e-05, + "loss": 0.6164878845214844, + "step": 23900 + }, + { + "epoch": 50.42060988433228, + "grad_norm": 0.6953312754631042, + "learning_rate": 2.479621848739496e-05, + "loss": 0.6259209060668945, + "step": 24000 + }, + { + "epoch": 50.630914826498426, + "grad_norm": 0.6829053163528442, + "learning_rate": 2.469117647058824e-05, + "loss": 0.6306737518310547, + "step": 24100 + }, + { + "epoch": 50.841219768664565, + "grad_norm": 0.7105507850646973, + "learning_rate": 2.4586134453781514e-05, + "loss": 0.6402838897705078, + "step": 24200 + }, + { + "epoch": 51.05047318611987, + "grad_norm": 0.6592356562614441, + "learning_rate": 2.4481092436974794e-05, + "loss": 0.6321442413330078, + "step": 24300 + }, + { + "epoch": 51.26077812828601, + "grad_norm": 0.6957094073295593, + "learning_rate": 2.4376050420168066e-05, + "loss": 0.6060052108764649, + "step": 24400 + }, + { + "epoch": 51.47108307045215, + "grad_norm": 0.6904229521751404, + "learning_rate": 2.4271008403361345e-05, + "loss": 0.6094649505615234, + "step": 24500 + }, + { + "epoch": 51.6813880126183, + "grad_norm": 0.7173294425010681, + "learning_rate": 2.416596638655462e-05, + "loss": 0.6187096023559571, + "step": 24600 + }, + { + "epoch": 51.89169295478444, + "grad_norm": 0.7143198251724243, + "learning_rate": 2.40609243697479e-05, + "loss": 0.6268323516845703, + "step": 24700 + }, + { + "epoch": 52.10094637223975, + "grad_norm": 0.6786720752716064, + "learning_rate": 2.3955882352941176e-05, + "loss": 0.6083223342895507, + "step": 24800 + }, + { + "epoch": 52.31125131440589, + "grad_norm": 0.6900521516799927, + "learning_rate": 2.3850840336134456e-05, + "loss": 0.5922721862792969, + "step": 24900 + }, + { + "epoch": 52.521556256572026, + "grad_norm": 0.7288543581962585, + "learning_rate": 2.3745798319327735e-05, + "loss": 0.5982749938964844, + "step": 25000 + }, + { + "epoch": 52.73186119873817, + "grad_norm": 0.704078197479248, + "learning_rate": 2.3640756302521007e-05, + "loss": 0.6041379547119141, + "step": 25100 + }, + { + "epoch": 52.94216614090431, + "grad_norm": 0.706262469291687, + "learning_rate": 2.3535714285714287e-05, + "loss": 0.6083390808105469, + "step": 25200 + }, + { + "epoch": 53.15141955835962, + "grad_norm": 0.6775776743888855, + "learning_rate": 2.3430672268907563e-05, + "loss": 0.5816435623168945, + "step": 25300 + }, + { + "epoch": 53.36172450052576, + "grad_norm": 0.7253007888793945, + "learning_rate": 2.3325630252100842e-05, + "loss": 0.58095458984375, + "step": 25400 + }, + { + "epoch": 53.5720294426919, + "grad_norm": 0.7169889211654663, + "learning_rate": 2.3220588235294118e-05, + "loss": 0.5878105163574219, + "step": 25500 + }, + { + "epoch": 53.782334384858046, + "grad_norm": 0.6921281814575195, + "learning_rate": 2.3115546218487397e-05, + "loss": 0.5918175506591797, + "step": 25600 + }, + { + "epoch": 53.992639327024186, + "grad_norm": 0.7570663094520569, + "learning_rate": 2.3010504201680673e-05, + "loss": 0.5992276000976563, + "step": 25700 + }, + { + "epoch": 54.201892744479494, + "grad_norm": 0.7045475840568542, + "learning_rate": 2.2905462184873952e-05, + "loss": 0.563626937866211, + "step": 25800 + }, + { + "epoch": 54.412197686645634, + "grad_norm": 0.7311537861824036, + "learning_rate": 2.2800420168067228e-05, + "loss": 0.5649079513549805, + "step": 25900 + }, + { + "epoch": 54.62250262881178, + "grad_norm": 0.7197280526161194, + "learning_rate": 2.2695378151260504e-05, + "loss": 0.5740287017822265, + "step": 26000 + }, + { + "epoch": 54.83280757097792, + "grad_norm": 0.7047930359840393, + "learning_rate": 2.2590336134453783e-05, + "loss": 0.5799992752075195, + "step": 26100 + }, + { + "epoch": 55.04206098843323, + "grad_norm": 0.663329541683197, + "learning_rate": 2.2486344537815125e-05, + "loss": 0.5747824096679688, + "step": 26200 + }, + { + "epoch": 55.25236593059937, + "grad_norm": 0.6825776100158691, + "learning_rate": 2.2381302521008405e-05, + "loss": 0.5511475372314453, + "step": 26300 + }, + { + "epoch": 55.46267087276551, + "grad_norm": 0.7081674337387085, + "learning_rate": 2.227626050420168e-05, + "loss": 0.5568293380737305, + "step": 26400 + }, + { + "epoch": 55.672975814931654, + "grad_norm": 0.6991596221923828, + "learning_rate": 2.217121848739496e-05, + "loss": 0.5623696899414062, + "step": 26500 + }, + { + "epoch": 55.88328075709779, + "grad_norm": 0.7421116828918457, + "learning_rate": 2.2066176470588236e-05, + "loss": 0.5673596572875976, + "step": 26600 + }, + { + "epoch": 56.0925341745531, + "grad_norm": 0.6679620146751404, + "learning_rate": 2.1961134453781515e-05, + "loss": 0.555915298461914, + "step": 26700 + }, + { + "epoch": 56.30283911671924, + "grad_norm": 0.7035086750984192, + "learning_rate": 2.185609243697479e-05, + "loss": 0.5402443313598633, + "step": 26800 + }, + { + "epoch": 56.51314405888538, + "grad_norm": 0.6888571381568909, + "learning_rate": 2.1751050420168067e-05, + "loss": 0.5462953186035157, + "step": 26900 + }, + { + "epoch": 56.72344900105153, + "grad_norm": 0.7356609106063843, + "learning_rate": 2.1646008403361346e-05, + "loss": 0.5512025833129883, + "step": 27000 + }, + { + "epoch": 56.93375394321767, + "grad_norm": 0.7569705247879028, + "learning_rate": 2.1540966386554622e-05, + "loss": 0.5562152481079101, + "step": 27100 + }, + { + "epoch": 57.143007360672975, + "grad_norm": 0.6764115691184998, + "learning_rate": 2.14359243697479e-05, + "loss": 0.5337548065185547, + "step": 27200 + }, + { + "epoch": 57.353312302839115, + "grad_norm": 0.7006810307502747, + "learning_rate": 2.1330882352941177e-05, + "loss": 0.5296073913574219, + "step": 27300 + }, + { + "epoch": 57.56361724500526, + "grad_norm": 0.7158169150352478, + "learning_rate": 2.1225840336134456e-05, + "loss": 0.5382700347900391, + "step": 27400 + }, + { + "epoch": 57.7739221871714, + "grad_norm": 0.7132992148399353, + "learning_rate": 2.1120798319327732e-05, + "loss": 0.5398505783081055, + "step": 27500 + }, + { + "epoch": 57.98422712933754, + "grad_norm": 0.7330942749977112, + "learning_rate": 2.1015756302521008e-05, + "loss": 0.5458747863769531, + "step": 27600 + }, + { + "epoch": 58.19348054679285, + "grad_norm": 0.669278621673584, + "learning_rate": 2.0910714285714287e-05, + "loss": 0.5161695861816407, + "step": 27700 + }, + { + "epoch": 58.40378548895899, + "grad_norm": 0.6958737373352051, + "learning_rate": 2.0805672268907563e-05, + "loss": 0.5201998901367187, + "step": 27800 + }, + { + "epoch": 58.614090431125135, + "grad_norm": 0.6824914813041687, + "learning_rate": 2.0700630252100842e-05, + "loss": 0.5258338928222657, + "step": 27900 + }, + { + "epoch": 58.824395373291274, + "grad_norm": 0.6634467244148254, + "learning_rate": 2.0595588235294118e-05, + "loss": 0.5300619888305664, + "step": 28000 + }, + { + "epoch": 59.03364879074658, + "grad_norm": 0.6863816380500793, + "learning_rate": 2.0490546218487397e-05, + "loss": 0.5283214950561523, + "step": 28100 + }, + { + "epoch": 59.24395373291272, + "grad_norm": 0.7183119654655457, + "learning_rate": 2.0385504201680673e-05, + "loss": 0.506834487915039, + "step": 28200 + }, + { + "epoch": 59.45425867507886, + "grad_norm": 0.7142145037651062, + "learning_rate": 2.028046218487395e-05, + "loss": 0.5117876815795899, + "step": 28300 + }, + { + "epoch": 59.66456361724501, + "grad_norm": 0.7280924916267395, + "learning_rate": 2.017542016806723e-05, + "loss": 0.5153473281860351, + "step": 28400 + }, + { + "epoch": 59.87486855941115, + "grad_norm": 0.693505048751831, + "learning_rate": 2.0070378151260504e-05, + "loss": 0.5219352722167969, + "step": 28500 + }, + { + "epoch": 60.084121976866456, + "grad_norm": 0.6892845034599304, + "learning_rate": 1.9965336134453784e-05, + "loss": 0.5122858810424805, + "step": 28600 + }, + { + "epoch": 60.294426919032595, + "grad_norm": 0.6604379415512085, + "learning_rate": 1.986029411764706e-05, + "loss": 0.49614715576171875, + "step": 28700 + }, + { + "epoch": 60.504731861198735, + "grad_norm": 0.7204891443252563, + "learning_rate": 1.975525210084034e-05, + "loss": 0.5024974822998047, + "step": 28800 + }, + { + "epoch": 60.71503680336488, + "grad_norm": 0.7127634286880493, + "learning_rate": 1.9650210084033615e-05, + "loss": 0.5073120498657226, + "step": 28900 + }, + { + "epoch": 60.92534174553102, + "grad_norm": 0.7359983921051025, + "learning_rate": 1.954516806722689e-05, + "loss": 0.5116232681274414, + "step": 29000 + }, + { + "epoch": 61.13459516298633, + "grad_norm": 0.6893951296806335, + "learning_rate": 1.944012605042017e-05, + "loss": 0.4952814865112305, + "step": 29100 + }, + { + "epoch": 61.34490010515247, + "grad_norm": 0.6849685311317444, + "learning_rate": 1.9335084033613446e-05, + "loss": 0.4899435043334961, + "step": 29200 + }, + { + "epoch": 61.55520504731861, + "grad_norm": 0.7181743383407593, + "learning_rate": 1.9230042016806725e-05, + "loss": 0.4946512985229492, + "step": 29300 + }, + { + "epoch": 61.765509989484755, + "grad_norm": 0.6820606589317322, + "learning_rate": 1.9125e-05, + "loss": 0.49947418212890626, + "step": 29400 + }, + { + "epoch": 61.975814931650895, + "grad_norm": 0.7111321687698364, + "learning_rate": 1.901995798319328e-05, + "loss": 0.5020344543457032, + "step": 29500 + }, + { + "epoch": 62.1850683491062, + "grad_norm": 0.7008198499679565, + "learning_rate": 1.8914915966386556e-05, + "loss": 0.48151485443115233, + "step": 29600 + }, + { + "epoch": 62.39537329127234, + "grad_norm": 0.7171513438224792, + "learning_rate": 1.880987394957983e-05, + "loss": 0.48171932220458985, + "step": 29700 + }, + { + "epoch": 62.60567823343849, + "grad_norm": 0.7375807762145996, + "learning_rate": 1.8704831932773108e-05, + "loss": 0.4873679733276367, + "step": 29800 + }, + { + "epoch": 62.81598317560463, + "grad_norm": 0.6806672811508179, + "learning_rate": 1.8599789915966387e-05, + "loss": 0.4887456130981445, + "step": 29900 + }, + { + "epoch": 63.02523659305994, + "grad_norm": 0.6749327182769775, + "learning_rate": 1.8494747899159666e-05, + "loss": 0.48958889007568357, + "step": 30000 + }, + { + "epoch": 63.235541535226076, + "grad_norm": 0.7122695446014404, + "learning_rate": 1.8389705882352942e-05, + "loss": 0.46849212646484373, + "step": 30100 + }, + { + "epoch": 63.445846477392216, + "grad_norm": 0.6742300987243652, + "learning_rate": 1.8285714285714288e-05, + "loss": 0.4735026550292969, + "step": 30200 + }, + { + "epoch": 63.65615141955836, + "grad_norm": 0.7086833119392395, + "learning_rate": 1.8180672268907564e-05, + "loss": 0.47808189392089845, + "step": 30300 + }, + { + "epoch": 63.8664563617245, + "grad_norm": 0.673115611076355, + "learning_rate": 1.8075630252100843e-05, + "loss": 0.4810390853881836, + "step": 30400 + }, + { + "epoch": 64.07570977917982, + "grad_norm": 0.7166642546653748, + "learning_rate": 1.797058823529412e-05, + "loss": 0.47662986755371095, + "step": 30500 + }, + { + "epoch": 64.28601472134595, + "grad_norm": 0.7239866852760315, + "learning_rate": 1.7865546218487395e-05, + "loss": 0.46368907928466796, + "step": 30600 + }, + { + "epoch": 64.4963196635121, + "grad_norm": 0.6777023077011108, + "learning_rate": 1.776050420168067e-05, + "loss": 0.46869037628173826, + "step": 30700 + }, + { + "epoch": 64.70662460567823, + "grad_norm": 0.7028587460517883, + "learning_rate": 1.765546218487395e-05, + "loss": 0.47153076171875, + "step": 30800 + }, + { + "epoch": 64.91692954784438, + "grad_norm": 0.7220568656921387, + "learning_rate": 1.755042016806723e-05, + "loss": 0.4732553482055664, + "step": 30900 + }, + { + "epoch": 65.12618296529969, + "grad_norm": 0.6283636093139648, + "learning_rate": 1.7445378151260505e-05, + "loss": 0.4627264404296875, + "step": 31000 + }, + { + "epoch": 65.33648790746582, + "grad_norm": 0.6411524415016174, + "learning_rate": 1.7340336134453784e-05, + "loss": 0.45608016967773435, + "step": 31100 + }, + { + "epoch": 65.54679284963197, + "grad_norm": 0.668154776096344, + "learning_rate": 1.723529411764706e-05, + "loss": 0.46059967041015626, + "step": 31200 + }, + { + "epoch": 65.7570977917981, + "grad_norm": 0.7226248979568481, + "learning_rate": 1.713025210084034e-05, + "loss": 0.4659851455688477, + "step": 31300 + }, + { + "epoch": 65.96740273396425, + "grad_norm": 0.6833023428916931, + "learning_rate": 1.7025210084033612e-05, + "loss": 0.46931900024414064, + "step": 31400 + }, + { + "epoch": 66.17665615141956, + "grad_norm": 0.6941800117492676, + "learning_rate": 1.6921218487394958e-05, + "loss": 0.45006973266601563, + "step": 31500 + }, + { + "epoch": 66.3869610935857, + "grad_norm": 0.63517826795578, + "learning_rate": 1.6816176470588237e-05, + "loss": 0.44848171234130857, + "step": 31600 + }, + { + "epoch": 66.59726603575184, + "grad_norm": 0.6846080422401428, + "learning_rate": 1.6711134453781513e-05, + "loss": 0.45420032501220703, + "step": 31700 + }, + { + "epoch": 66.80757097791798, + "grad_norm": 0.6388368010520935, + "learning_rate": 1.6606092436974792e-05, + "loss": 0.4580923843383789, + "step": 31800 + }, + { + "epoch": 67.01682439537329, + "grad_norm": 0.6670629978179932, + "learning_rate": 1.6501050420168068e-05, + "loss": 0.4585027313232422, + "step": 31900 + }, + { + "epoch": 67.22712933753944, + "grad_norm": 0.6662338972091675, + "learning_rate": 1.6396008403361347e-05, + "loss": 0.44079010009765623, + "step": 32000 + }, + { + "epoch": 67.43743427970557, + "grad_norm": 0.6707865595817566, + "learning_rate": 1.6290966386554623e-05, + "loss": 0.44413238525390625, + "step": 32100 + }, + { + "epoch": 67.64773922187172, + "grad_norm": 0.656842052936554, + "learning_rate": 1.6185924369747902e-05, + "loss": 0.44844043731689454, + "step": 32200 + }, + { + "epoch": 67.85804416403785, + "grad_norm": 0.6646634340286255, + "learning_rate": 1.6080882352941175e-05, + "loss": 0.44970947265625, + "step": 32300 + }, + { + "epoch": 68.06729758149316, + "grad_norm": 0.6447365880012512, + "learning_rate": 1.5975840336134454e-05, + "loss": 0.4450407028198242, + "step": 32400 + }, + { + "epoch": 68.27760252365931, + "grad_norm": 0.6727699637413025, + "learning_rate": 1.587079831932773e-05, + "loss": 0.43177310943603514, + "step": 32500 + }, + { + "epoch": 68.48790746582544, + "grad_norm": 0.7130571603775024, + "learning_rate": 1.576575630252101e-05, + "loss": 0.4379489517211914, + "step": 32600 + }, + { + "epoch": 68.69821240799159, + "grad_norm": 0.7220073938369751, + "learning_rate": 1.566071428571429e-05, + "loss": 0.4425164794921875, + "step": 32700 + }, + { + "epoch": 68.90851735015772, + "grad_norm": 0.6695141196250916, + "learning_rate": 1.5555672268907564e-05, + "loss": 0.44274383544921875, + "step": 32800 + }, + { + "epoch": 69.11777076761304, + "grad_norm": 0.6740268468856812, + "learning_rate": 1.5450630252100843e-05, + "loss": 0.4357725143432617, + "step": 32900 + }, + { + "epoch": 69.32807570977918, + "grad_norm": 0.6566063165664673, + "learning_rate": 1.5345588235294116e-05, + "loss": 0.4283485412597656, + "step": 33000 + }, + { + "epoch": 69.53838065194532, + "grad_norm": 0.6752663850784302, + "learning_rate": 1.5240546218487395e-05, + "loss": 0.43225677490234377, + "step": 33100 + }, + { + "epoch": 69.74868559411146, + "grad_norm": 0.7038667798042297, + "learning_rate": 1.5135504201680673e-05, + "loss": 0.43592594146728514, + "step": 33200 + }, + { + "epoch": 69.9589905362776, + "grad_norm": 0.6961196660995483, + "learning_rate": 1.503046218487395e-05, + "loss": 0.438877067565918, + "step": 33300 + }, + { + "epoch": 70.16824395373291, + "grad_norm": 0.6535352468490601, + "learning_rate": 1.4925420168067228e-05, + "loss": 0.4252385330200195, + "step": 33400 + }, + { + "epoch": 70.37854889589906, + "grad_norm": 0.6601018905639648, + "learning_rate": 1.4820378151260505e-05, + "loss": 0.42285392761230467, + "step": 33500 + }, + { + "epoch": 70.58885383806519, + "grad_norm": 0.6948896050453186, + "learning_rate": 1.4715336134453783e-05, + "loss": 0.427175407409668, + "step": 33600 + }, + { + "epoch": 70.79915878023134, + "grad_norm": 0.6372560858726501, + "learning_rate": 1.461029411764706e-05, + "loss": 0.42832706451416014, + "step": 33700 + }, + { + "epoch": 71.00841219768665, + "grad_norm": 0.6517939567565918, + "learning_rate": 1.4505252100840336e-05, + "loss": 0.4324043273925781, + "step": 33800 + }, + { + "epoch": 71.21871713985279, + "grad_norm": 0.6330206990242004, + "learning_rate": 1.4400210084033614e-05, + "loss": 0.4146746826171875, + "step": 33900 + }, + { + "epoch": 71.42902208201893, + "grad_norm": 0.6658615469932556, + "learning_rate": 1.4295168067226892e-05, + "loss": 0.4180047225952148, + "step": 34000 + }, + { + "epoch": 71.63932702418506, + "grad_norm": 0.6433075070381165, + "learning_rate": 1.4190126050420169e-05, + "loss": 0.4219693374633789, + "step": 34100 + }, + { + "epoch": 71.84963196635121, + "grad_norm": 0.6470766663551331, + "learning_rate": 1.4085084033613447e-05, + "loss": 0.4214926528930664, + "step": 34200 + }, + { + "epoch": 72.05888538380653, + "grad_norm": 0.6315721273422241, + "learning_rate": 1.3981092436974791e-05, + "loss": 0.4204498291015625, + "step": 34300 + }, + { + "epoch": 72.26919032597266, + "grad_norm": 0.6722202897071838, + "learning_rate": 1.3876050420168068e-05, + "loss": 0.4105443572998047, + "step": 34400 + }, + { + "epoch": 72.4794952681388, + "grad_norm": 0.654528021812439, + "learning_rate": 1.3771008403361346e-05, + "loss": 0.41524337768554687, + "step": 34500 + }, + { + "epoch": 72.68980021030494, + "grad_norm": 0.6449755430221558, + "learning_rate": 1.3665966386554622e-05, + "loss": 0.4175481414794922, + "step": 34600 + }, + { + "epoch": 72.90010515247108, + "grad_norm": 0.6468359231948853, + "learning_rate": 1.35609243697479e-05, + "loss": 0.41863433837890623, + "step": 34700 + }, + { + "epoch": 73.1093585699264, + "grad_norm": 0.6471462845802307, + "learning_rate": 1.3455882352941177e-05, + "loss": 0.411123161315918, + "step": 34800 + }, + { + "epoch": 73.31966351209253, + "grad_norm": 0.6382157802581787, + "learning_rate": 1.3350840336134455e-05, + "loss": 0.40554931640625, + "step": 34900 + }, + { + "epoch": 73.52996845425868, + "grad_norm": 0.6727550029754639, + "learning_rate": 1.3245798319327732e-05, + "loss": 0.40884464263916015, + "step": 35000 + }, + { + "epoch": 73.74027339642481, + "grad_norm": 0.6494147181510925, + "learning_rate": 1.314075630252101e-05, + "loss": 0.4114807891845703, + "step": 35100 + }, + { + "epoch": 73.95057833859096, + "grad_norm": 0.6971067786216736, + "learning_rate": 1.3035714285714287e-05, + "loss": 0.4129951477050781, + "step": 35200 + }, + { + "epoch": 74.15983175604627, + "grad_norm": 0.630617082118988, + "learning_rate": 1.2930672268907565e-05, + "loss": 0.40283798217773437, + "step": 35300 + }, + { + "epoch": 74.3701366982124, + "grad_norm": 0.6068241000175476, + "learning_rate": 1.2825630252100839e-05, + "loss": 0.4017567825317383, + "step": 35400 + }, + { + "epoch": 74.58044164037855, + "grad_norm": 0.6767259836196899, + "learning_rate": 1.2720588235294118e-05, + "loss": 0.40448307037353515, + "step": 35500 + }, + { + "epoch": 74.79074658254468, + "grad_norm": 0.7011847496032715, + "learning_rate": 1.2615546218487396e-05, + "loss": 0.4047744369506836, + "step": 35600 + }, + { + "epoch": 75.0, + "grad_norm": 0.9920335412025452, + "learning_rate": 1.2510504201680673e-05, + "loss": 0.4085837936401367, + "step": 35700 + }, + { + "epoch": 75.21030494216615, + "grad_norm": 0.6520708203315735, + "learning_rate": 1.2405462184873951e-05, + "loss": 0.39399688720703124, + "step": 35800 + }, + { + "epoch": 75.42060988433228, + "grad_norm": 0.6656842827796936, + "learning_rate": 1.2300420168067227e-05, + "loss": 0.3963521957397461, + "step": 35900 + }, + { + "epoch": 75.63091482649843, + "grad_norm": 0.6576446294784546, + "learning_rate": 1.2195378151260504e-05, + "loss": 0.3992136383056641, + "step": 36000 + }, + { + "epoch": 75.84121976866456, + "grad_norm": 0.6238224506378174, + "learning_rate": 1.2090336134453782e-05, + "loss": 0.40125537872314454, + "step": 36100 + }, + { + "epoch": 76.05047318611987, + "grad_norm": 0.6389949917793274, + "learning_rate": 1.198529411764706e-05, + "loss": 0.3995349884033203, + "step": 36200 + }, + { + "epoch": 76.26077812828602, + "grad_norm": 0.6240091919898987, + "learning_rate": 1.1880252100840335e-05, + "loss": 0.3890629577636719, + "step": 36300 + }, + { + "epoch": 76.47108307045215, + "grad_norm": 0.6367642879486084, + "learning_rate": 1.1775210084033615e-05, + "loss": 0.39277313232421873, + "step": 36400 + }, + { + "epoch": 76.6813880126183, + "grad_norm": 0.6215347647666931, + "learning_rate": 1.1670168067226892e-05, + "loss": 0.3941745376586914, + "step": 36500 + }, + { + "epoch": 76.89169295478443, + "grad_norm": 0.6176421642303467, + "learning_rate": 1.156512605042017e-05, + "loss": 0.3961213302612305, + "step": 36600 + }, + { + "epoch": 77.10094637223975, + "grad_norm": 0.6433852314949036, + "learning_rate": 1.1460084033613446e-05, + "loss": 0.39362903594970705, + "step": 36700 + }, + { + "epoch": 77.3112513144059, + "grad_norm": 0.6288033127784729, + "learning_rate": 1.1355042016806723e-05, + "loss": 0.3870785140991211, + "step": 36800 + }, + { + "epoch": 77.52155625657203, + "grad_norm": 0.6061193943023682, + "learning_rate": 1.125e-05, + "loss": 0.38955581665039063, + "step": 36900 + }, + { + "epoch": 77.73186119873817, + "grad_norm": 0.6680556535720825, + "learning_rate": 1.1144957983193278e-05, + "loss": 0.390676383972168, + "step": 37000 + }, + { + "epoch": 77.9421661409043, + "grad_norm": 0.623725950717926, + "learning_rate": 1.1039915966386554e-05, + "loss": 0.3921066665649414, + "step": 37100 + }, + { + "epoch": 78.15141955835962, + "grad_norm": 0.6346238255500793, + "learning_rate": 1.0935924369747898e-05, + "loss": 0.3845651626586914, + "step": 37200 + }, + { + "epoch": 78.36172450052577, + "grad_norm": 0.6062731146812439, + "learning_rate": 1.0830882352941178e-05, + "loss": 0.380772705078125, + "step": 37300 + }, + { + "epoch": 78.5720294426919, + "grad_norm": 0.6125079989433289, + "learning_rate": 1.0725840336134455e-05, + "loss": 0.3834884262084961, + "step": 37400 + }, + { + "epoch": 78.78233438485805, + "grad_norm": 0.6804420948028564, + "learning_rate": 1.0620798319327733e-05, + "loss": 0.3863555526733398, + "step": 37500 + }, + { + "epoch": 78.99263932702418, + "grad_norm": 0.6568316221237183, + "learning_rate": 1.0515756302521009e-05, + "loss": 0.3898443603515625, + "step": 37600 + }, + { + "epoch": 79.2018927444795, + "grad_norm": 0.6262179017066956, + "learning_rate": 1.0410714285714286e-05, + "loss": 0.37717395782470703, + "step": 37700 + }, + { + "epoch": 79.41219768664564, + "grad_norm": 0.6335896849632263, + "learning_rate": 1.0305672268907564e-05, + "loss": 0.37976459503173826, + "step": 37800 + }, + { + "epoch": 79.62250262881177, + "grad_norm": 0.675938069820404, + "learning_rate": 1.0200630252100841e-05, + "loss": 0.38054397583007815, + "step": 37900 + }, + { + "epoch": 79.83280757097792, + "grad_norm": 0.650644838809967, + "learning_rate": 1.0095588235294117e-05, + "loss": 0.3817191696166992, + "step": 38000 + }, + { + "epoch": 80.04206098843324, + "grad_norm": 0.5988778471946716, + "learning_rate": 9.990546218487395e-06, + "loss": 0.3799977493286133, + "step": 38100 + }, + { + "epoch": 80.25236593059937, + "grad_norm": 0.6436987519264221, + "learning_rate": 9.885504201680674e-06, + "loss": 0.37264183044433596, + "step": 38200 + }, + { + "epoch": 80.46267087276551, + "grad_norm": 0.610487699508667, + "learning_rate": 9.78046218487395e-06, + "loss": 0.3753046417236328, + "step": 38300 + }, + { + "epoch": 80.67297581493165, + "grad_norm": 0.6378571391105652, + "learning_rate": 9.675420168067227e-06, + "loss": 0.3749809646606445, + "step": 38400 + }, + { + "epoch": 80.8832807570978, + "grad_norm": 0.6599664688110352, + "learning_rate": 9.570378151260505e-06, + "loss": 0.37958168029785155, + "step": 38500 + }, + { + "epoch": 81.09253417455311, + "grad_norm": 0.6057779788970947, + "learning_rate": 9.465336134453782e-06, + "loss": 0.3755946731567383, + "step": 38600 + }, + { + "epoch": 81.30283911671924, + "grad_norm": 0.6186268925666809, + "learning_rate": 9.360294117647058e-06, + "loss": 0.3689208221435547, + "step": 38700 + }, + { + "epoch": 81.51314405888539, + "grad_norm": 0.6031709909439087, + "learning_rate": 9.255252100840336e-06, + "loss": 0.37045917510986326, + "step": 38800 + }, + { + "epoch": 81.72344900105152, + "grad_norm": 0.6903654336929321, + "learning_rate": 9.150210084033613e-06, + "loss": 0.37341190338134767, + "step": 38900 + }, + { + "epoch": 81.93375394321767, + "grad_norm": 0.6498835682868958, + "learning_rate": 9.045168067226891e-06, + "loss": 0.3741530227661133, + "step": 39000 + }, + { + "epoch": 82.14300736067298, + "grad_norm": 0.6078621745109558, + "learning_rate": 8.940126050420169e-06, + "loss": 0.36713558197021484, + "step": 39100 + }, + { + "epoch": 82.35331230283911, + "grad_norm": 0.6294094324111938, + "learning_rate": 8.835084033613446e-06, + "loss": 0.3661073303222656, + "step": 39200 + }, + { + "epoch": 82.56361724500526, + "grad_norm": 0.6120302081108093, + "learning_rate": 8.730042016806724e-06, + "loss": 0.3683062744140625, + "step": 39300 + }, + { + "epoch": 82.7739221871714, + "grad_norm": 0.6194695830345154, + "learning_rate": 8.625e-06, + "loss": 0.3718934631347656, + "step": 39400 + }, + { + "epoch": 82.98422712933754, + "grad_norm": 0.6603109240531921, + "learning_rate": 8.519957983193277e-06, + "loss": 0.37141822814941405, + "step": 39500 + }, + { + "epoch": 83.19348054679286, + "grad_norm": 0.6176982522010803, + "learning_rate": 8.414915966386555e-06, + "loss": 0.36253021240234373, + "step": 39600 + }, + { + "epoch": 83.40378548895899, + "grad_norm": 0.6788721084594727, + "learning_rate": 8.309873949579832e-06, + "loss": 0.36460174560546876, + "step": 39700 + }, + { + "epoch": 83.61409043112513, + "grad_norm": 0.6141113638877869, + "learning_rate": 8.20483193277311e-06, + "loss": 0.36554264068603515, + "step": 39800 + }, + { + "epoch": 83.82439537329127, + "grad_norm": 0.6193323135375977, + "learning_rate": 8.099789915966387e-06, + "loss": 0.36707286834716796, + "step": 39900 + }, + { + "epoch": 84.03364879074658, + "grad_norm": 0.6383187770843506, + "learning_rate": 7.994747899159665e-06, + "loss": 0.3661843872070312, + "step": 40000 + }, + { + "epoch": 84.24395373291273, + "grad_norm": 0.5923520922660828, + "learning_rate": 7.889705882352943e-06, + "loss": 0.35978816986083983, + "step": 40100 + }, + { + "epoch": 84.45425867507886, + "grad_norm": 0.641968846321106, + "learning_rate": 7.784663865546218e-06, + "loss": 0.35977176666259764, + "step": 40200 + }, + { + "epoch": 84.66456361724501, + "grad_norm": 0.6307324767112732, + "learning_rate": 7.679621848739496e-06, + "loss": 0.36135292053222656, + "step": 40300 + }, + { + "epoch": 84.87486855941114, + "grad_norm": 0.6303888559341431, + "learning_rate": 7.5745798319327735e-06, + "loss": 0.36290821075439456, + "step": 40400 + }, + { + "epoch": 85.08412197686646, + "grad_norm": 0.5610889792442322, + "learning_rate": 7.469537815126051e-06, + "loss": 0.36016101837158204, + "step": 40500 + }, + { + "epoch": 85.2944269190326, + "grad_norm": 0.5796296000480652, + "learning_rate": 7.364495798319328e-06, + "loss": 0.35660606384277344, + "step": 40600 + }, + { + "epoch": 85.50473186119874, + "grad_norm": 0.6147542595863342, + "learning_rate": 7.259453781512605e-06, + "loss": 0.35944347381591796, + "step": 40700 + }, + { + "epoch": 85.71503680336488, + "grad_norm": 0.6097769737243652, + "learning_rate": 7.154411764705883e-06, + "loss": 0.3589036560058594, + "step": 40800 + }, + { + "epoch": 85.92534174553101, + "grad_norm": 0.6288202404975891, + "learning_rate": 7.04936974789916e-06, + "loss": 0.3591917419433594, + "step": 40900 + }, + { + "epoch": 86.13459516298633, + "grad_norm": 0.6195931434631348, + "learning_rate": 6.944327731092437e-06, + "loss": 0.3569915771484375, + "step": 41000 + }, + { + "epoch": 86.34490010515248, + "grad_norm": 0.5890372395515442, + "learning_rate": 6.839285714285715e-06, + "loss": 0.3543994903564453, + "step": 41100 + }, + { + "epoch": 86.55520504731861, + "grad_norm": 0.6272594332695007, + "learning_rate": 6.735294117647059e-06, + "loss": 0.3553640365600586, + "step": 41200 + }, + { + "epoch": 86.76550998948476, + "grad_norm": 0.6778700351715088, + "learning_rate": 6.6302521008403365e-06, + "loss": 0.3564106750488281, + "step": 41300 + }, + { + "epoch": 86.97581493165089, + "grad_norm": 0.6336688995361328, + "learning_rate": 6.525210084033614e-06, + "loss": 0.35713409423828124, + "step": 41400 + }, + { + "epoch": 87.1850683491062, + "grad_norm": 0.6053069829940796, + "learning_rate": 6.421218487394959e-06, + "loss": 0.3506643295288086, + "step": 41500 + }, + { + "epoch": 87.39537329127235, + "grad_norm": 0.6175255179405212, + "learning_rate": 6.316176470588235e-06, + "loss": 0.35214996337890625, + "step": 41600 + }, + { + "epoch": 87.60567823343848, + "grad_norm": 0.5915444493293762, + "learning_rate": 6.2111344537815125e-06, + "loss": 0.3522480392456055, + "step": 41700 + }, + { + "epoch": 87.81598317560463, + "grad_norm": 0.5907636880874634, + "learning_rate": 6.10609243697479e-06, + "loss": 0.3520878601074219, + "step": 41800 + }, + { + "epoch": 88.02523659305994, + "grad_norm": 0.6209415197372437, + "learning_rate": 6.001050420168068e-06, + "loss": 0.3545633316040039, + "step": 41900 + }, + { + "epoch": 88.23554153522608, + "grad_norm": 0.5926827788352966, + "learning_rate": 5.896008403361345e-06, + "loss": 0.34920032501220705, + "step": 42000 + }, + { + "epoch": 88.44584647739222, + "grad_norm": 0.638471245765686, + "learning_rate": 5.790966386554622e-06, + "loss": 0.34805423736572266, + "step": 42100 + }, + { + "epoch": 88.65615141955836, + "grad_norm": 0.6181325316429138, + "learning_rate": 5.6859243697478994e-06, + "loss": 0.3501460647583008, + "step": 42200 + }, + { + "epoch": 88.8664563617245, + "grad_norm": 0.6029173135757446, + "learning_rate": 5.580882352941177e-06, + "loss": 0.35028797149658203, + "step": 42300 + }, + { + "epoch": 89.07570977917982, + "grad_norm": 0.5673274397850037, + "learning_rate": 5.475840336134454e-06, + "loss": 0.34918766021728515, + "step": 42400 + }, + { + "epoch": 89.28601472134595, + "grad_norm": 0.5657567977905273, + "learning_rate": 5.370798319327731e-06, + "loss": 0.34565746307373046, + "step": 42500 + }, + { + "epoch": 89.4963196635121, + "grad_norm": 0.6014168858528137, + "learning_rate": 5.265756302521008e-06, + "loss": 0.3450989532470703, + "step": 42600 + }, + { + "epoch": 89.70662460567823, + "grad_norm": 0.5631797909736633, + "learning_rate": 5.160714285714286e-06, + "loss": 0.3477408218383789, + "step": 42700 + }, + { + "epoch": 89.91692954784438, + "grad_norm": 0.624321699142456, + "learning_rate": 5.055672268907563e-06, + "loss": 0.34852649688720705, + "step": 42800 + }, + { + "epoch": 90.12618296529969, + "grad_norm": 0.6004353761672974, + "learning_rate": 4.950630252100841e-06, + "loss": 0.3450387191772461, + "step": 42900 + }, + { + "epoch": 90.33648790746582, + "grad_norm": 0.6030150651931763, + "learning_rate": 4.845588235294117e-06, + "loss": 0.34261096954345704, + "step": 43000 + }, + { + "epoch": 90.54679284963197, + "grad_norm": 0.5574061870574951, + "learning_rate": 4.740546218487396e-06, + "loss": 0.3450190734863281, + "step": 43100 + }, + { + "epoch": 90.7570977917981, + "grad_norm": 0.5677763819694519, + "learning_rate": 4.6355042016806725e-06, + "loss": 0.3442384338378906, + "step": 43200 + }, + { + "epoch": 90.96740273396425, + "grad_norm": 0.6088888645172119, + "learning_rate": 4.53046218487395e-06, + "loss": 0.3451253128051758, + "step": 43300 + }, + { + "epoch": 91.17665615141956, + "grad_norm": 0.5724344849586487, + "learning_rate": 4.425420168067227e-06, + "loss": 0.3408164978027344, + "step": 43400 + }, + { + "epoch": 91.3869610935857, + "grad_norm": 0.6201240420341492, + "learning_rate": 4.320378151260504e-06, + "loss": 0.3420841979980469, + "step": 43500 + }, + { + "epoch": 91.59726603575184, + "grad_norm": 0.6098768711090088, + "learning_rate": 4.215336134453782e-06, + "loss": 0.3413374328613281, + "step": 43600 + }, + { + "epoch": 91.80757097791798, + "grad_norm": 0.6306800842285156, + "learning_rate": 4.110294117647059e-06, + "loss": 0.34394527435302735, + "step": 43700 + }, + { + "epoch": 92.01682439537329, + "grad_norm": 0.559008777141571, + "learning_rate": 4.005252100840336e-06, + "loss": 0.3423053741455078, + "step": 43800 + }, + { + "epoch": 92.22712933753944, + "grad_norm": 0.5939933657646179, + "learning_rate": 3.900210084033614e-06, + "loss": 0.33797637939453123, + "step": 43900 + }, + { + "epoch": 92.43743427970557, + "grad_norm": 0.6135221719741821, + "learning_rate": 3.795168067226891e-06, + "loss": 0.3408375930786133, + "step": 44000 + }, + { + "epoch": 92.64773922187172, + "grad_norm": 0.5870836973190308, + "learning_rate": 3.690126050420168e-06, + "loss": 0.34073463439941404, + "step": 44100 + }, + { + "epoch": 92.85804416403785, + "grad_norm": 0.5811474323272705, + "learning_rate": 3.5850840336134456e-06, + "loss": 0.34040855407714843, + "step": 44200 + }, + { + "epoch": 93.06729758149316, + "grad_norm": 0.5979830026626587, + "learning_rate": 3.4800420168067227e-06, + "loss": 0.3395253753662109, + "step": 44300 + }, + { + "epoch": 93.27760252365931, + "grad_norm": 0.5824161171913147, + "learning_rate": 3.3750000000000003e-06, + "loss": 0.3389311981201172, + "step": 44400 + }, + { + "epoch": 93.48790746582544, + "grad_norm": 0.5694940090179443, + "learning_rate": 3.2699579831932774e-06, + "loss": 0.337044792175293, + "step": 44500 + }, + { + "epoch": 93.69821240799159, + "grad_norm": 0.6112421154975891, + "learning_rate": 3.164915966386555e-06, + "loss": 0.33819969177246095, + "step": 44600 + }, + { + "epoch": 93.90851735015772, + "grad_norm": 0.610955536365509, + "learning_rate": 3.059873949579832e-06, + "loss": 0.33944580078125, + "step": 44700 + }, + { + "epoch": 94.11777076761304, + "grad_norm": 0.6398776769638062, + "learning_rate": 2.9548319327731093e-06, + "loss": 0.33618770599365233, + "step": 44800 + }, + { + "epoch": 94.32807570977918, + "grad_norm": 0.5934144854545593, + "learning_rate": 2.849789915966387e-06, + "loss": 0.3384376525878906, + "step": 44900 + }, + { + "epoch": 94.53838065194532, + "grad_norm": 0.6144473552703857, + "learning_rate": 2.744747899159664e-06, + "loss": 0.3383865737915039, + "step": 45000 + }, + { + "epoch": 94.74868559411146, + "grad_norm": 0.5490454435348511, + "learning_rate": 2.6397058823529415e-06, + "loss": 0.33671878814697265, + "step": 45100 + }, + { + "epoch": 94.9589905362776, + "grad_norm": 0.5695416331291199, + "learning_rate": 2.5346638655462187e-06, + "loss": 0.3379853820800781, + "step": 45200 + }, + { + "epoch": 95.16824395373291, + "grad_norm": 0.5724055767059326, + "learning_rate": 2.429621848739496e-06, + "loss": 0.3338408660888672, + "step": 45300 + }, + { + "epoch": 95.37854889589906, + "grad_norm": 0.594022810459137, + "learning_rate": 2.3245798319327734e-06, + "loss": 0.3349121475219727, + "step": 45400 + }, + { + "epoch": 95.58885383806519, + "grad_norm": 0.5594576597213745, + "learning_rate": 2.2205882352941175e-06, + "loss": 0.33595680236816405, + "step": 45500 + }, + { + "epoch": 95.79915878023134, + "grad_norm": 0.5346081852912903, + "learning_rate": 2.115546218487395e-06, + "loss": 0.33520328521728515, + "step": 45600 + }, + { + "epoch": 96.00841219768665, + "grad_norm": 0.5849393606185913, + "learning_rate": 2.0105042016806722e-06, + "loss": 0.3334170913696289, + "step": 45700 + }, + { + "epoch": 96.21871713985279, + "grad_norm": 0.5918118357658386, + "learning_rate": 1.9054621848739498e-06, + "loss": 0.3329995346069336, + "step": 45800 + }, + { + "epoch": 96.42902208201893, + "grad_norm": 0.6012352705001831, + "learning_rate": 1.800420168067227e-06, + "loss": 0.3329520416259766, + "step": 45900 + }, + { + "epoch": 96.63932702418506, + "grad_norm": 0.5281354784965515, + "learning_rate": 1.6953781512605043e-06, + "loss": 0.3343208694458008, + "step": 46000 + }, + { + "epoch": 96.84963196635121, + "grad_norm": 0.5566437244415283, + "learning_rate": 1.5903361344537816e-06, + "loss": 0.33319324493408203, + "step": 46100 + }, + { + "epoch": 97.05888538380653, + "grad_norm": 0.62099689245224, + "learning_rate": 1.486344537815126e-06, + "loss": 0.33431713104248045, + "step": 46200 + }, + { + "epoch": 97.26919032597266, + "grad_norm": 0.5787718892097473, + "learning_rate": 1.3813025210084034e-06, + "loss": 0.3314530944824219, + "step": 46300 + }, + { + "epoch": 97.4794952681388, + "grad_norm": 0.5509923100471497, + "learning_rate": 1.2762605042016807e-06, + "loss": 0.3316763305664063, + "step": 46400 + }, + { + "epoch": 97.68980021030494, + "grad_norm": 0.5569334030151367, + "learning_rate": 1.171218487394958e-06, + "loss": 0.3315643310546875, + "step": 46500 + }, + { + "epoch": 97.90010515247108, + "grad_norm": 0.5476507544517517, + "learning_rate": 1.0661764705882354e-06, + "loss": 0.33233203887939455, + "step": 46600 + }, + { + "epoch": 98.1093585699264, + "grad_norm": 0.5630120038986206, + "learning_rate": 9.611344537815128e-07, + "loss": 0.33105762481689455, + "step": 46700 + }, + { + "epoch": 98.31966351209253, + "grad_norm": 0.5520943999290466, + "learning_rate": 8.5609243697479e-07, + "loss": 0.3307930374145508, + "step": 46800 + }, + { + "epoch": 98.52996845425868, + "grad_norm": 0.5917891263961792, + "learning_rate": 7.510504201680673e-07, + "loss": 0.3318499755859375, + "step": 46900 + }, + { + "epoch": 98.74027339642481, + "grad_norm": 0.5395123362541199, + "learning_rate": 6.460084033613445e-07, + "loss": 0.330290412902832, + "step": 47000 + }, + { + "epoch": 98.95057833859096, + "grad_norm": 0.5702670216560364, + "learning_rate": 5.409663865546218e-07, + "loss": 0.33196086883544923, + "step": 47100 + }, + { + "epoch": 99.15983175604627, + "grad_norm": 0.5607645511627197, + "learning_rate": 4.359243697478992e-07, + "loss": 0.3293312454223633, + "step": 47200 + }, + { + "epoch": 99.3701366982124, + "grad_norm": 0.6061931848526001, + "learning_rate": 3.308823529411765e-07, + "loss": 0.3300600051879883, + "step": 47300 + }, + { + "epoch": 99.58044164037855, + "grad_norm": 0.5829928517341614, + "learning_rate": 2.2584033613445382e-07, + "loss": 0.330217170715332, + "step": 47400 + } + ], + "logging_steps": 100, + "max_steps": 47600, + "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": 3.0542692148895744e+16, + "train_batch_size": 8, + "trial_name": null, + "trial_params": null +} diff --git a/timecost/n11/realtabformer/rtf-n11-20260430_214424/rtf_checkpoints/checkpoint-47400/training_args.bin b/timecost/n11/realtabformer/rtf-n11-20260430_214424/rtf_checkpoints/checkpoint-47400/training_args.bin new file mode 100644 index 0000000000000000000000000000000000000000..34d68dc0e0fe1c1f12a2e581dd1b166aa7178a9e --- /dev/null +++ b/timecost/n11/realtabformer/rtf-n11-20260430_214424/rtf_checkpoints/checkpoint-47400/training_args.bin @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:9e2cd88337d1d846c6918d2b3b63fa3e5c93f12fefc082497590da854a564607 +size 5201 diff --git a/timecost/n11/realtabformer/rtf-n11-20260430_214424/rtf_checkpoints/checkpoint-47500/config.json b/timecost/n11/realtabformer/rtf-n11-20260430_214424/rtf_checkpoints/checkpoint-47500/config.json new file mode 100644 index 0000000000000000000000000000000000000000..605aa5aa48fc96b6c3133032a3e66cd18090e70a --- /dev/null +++ b/timecost/n11/realtabformer/rtf-n11-20260430_214424/rtf_checkpoints/checkpoint-47500/config.json @@ -0,0 +1,34 @@ +{ + "activation_function": "gelu_new", + "add_cross_attention": false, + "architectures": [ + "GPT2LMHeadModel" + ], + "attn_pdrop": 0.1, + "bos_token_id": 5, + "dtype": "float32", + "embd_pdrop": 0.1, + "eos_token_id": 6, + "initializer_range": 0.02, + "layer_norm_epsilon": 1e-05, + "model_type": "gpt2", + "n_embd": 768, + "n_head": 12, + "n_inner": null, + "n_layer": 6, + "n_positions": 1024, + "pad_token_id": null, + "reorder_and_upcast_attn": false, + "resid_pdrop": 0.1, + "scale_attn_by_inverse_layer_idx": false, + "scale_attn_weights": true, + "summary_activation": null, + "summary_first_dropout": 0.1, + "summary_proj_to_labels": true, + "summary_type": "cls_index", + "summary_use_proj": true, + "tie_word_embeddings": true, + "transformers_version": "5.5.3", + "use_cache": false, + "vocab_size": 597 +} diff --git a/timecost/n11/realtabformer/rtf-n11-20260430_214424/rtf_checkpoints/checkpoint-47500/generation_config.json b/timecost/n11/realtabformer/rtf-n11-20260430_214424/rtf_checkpoints/checkpoint-47500/generation_config.json new file mode 100644 index 0000000000000000000000000000000000000000..ffe89567780e75b5c22eade9be971483b9618f39 --- /dev/null +++ b/timecost/n11/realtabformer/rtf-n11-20260430_214424/rtf_checkpoints/checkpoint-47500/generation_config.json @@ -0,0 +1,9 @@ +{ + "_from_model_config": true, + "bos_token_id": 5, + "eos_token_id": 6, + "output_attentions": false, + "output_hidden_states": false, + "transformers_version": "5.5.3", + "use_cache": true +} diff --git a/timecost/n11/realtabformer/rtf-n11-20260430_214424/rtf_checkpoints/checkpoint-47500/model.safetensors b/timecost/n11/realtabformer/rtf-n11-20260430_214424/rtf_checkpoints/checkpoint-47500/model.safetensors new file mode 100644 index 0000000000000000000000000000000000000000..ecd850a78b339a952a38d501ae418d0cdd501481 --- /dev/null +++ b/timecost/n11/realtabformer/rtf-n11-20260430_214424/rtf_checkpoints/checkpoint-47500/model.safetensors @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:2f69255b2e1ebc35316e8ba08883ff8f36f27e40c2b70e01ca4204052b95e70f +size 175102408 diff --git a/timecost/n11/realtabformer/rtf-n11-20260430_214424/rtf_checkpoints/checkpoint-47500/optimizer.pt b/timecost/n11/realtabformer/rtf-n11-20260430_214424/rtf_checkpoints/checkpoint-47500/optimizer.pt new file mode 100644 index 0000000000000000000000000000000000000000..7d3bb2925b883fe6ccebf7144b41f6234a99c12e --- /dev/null +++ b/timecost/n11/realtabformer/rtf-n11-20260430_214424/rtf_checkpoints/checkpoint-47500/optimizer.pt @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:89f6a2314bdfcfb6b6ad437ae32a1bab073116fd00155baa54bf0a741909e095 +size 350253899 diff --git a/timecost/n11/realtabformer/rtf-n11-20260430_214424/rtf_checkpoints/checkpoint-47500/rng_state.pth b/timecost/n11/realtabformer/rtf-n11-20260430_214424/rtf_checkpoints/checkpoint-47500/rng_state.pth new file mode 100644 index 0000000000000000000000000000000000000000..cd0a55af8d16f5926e9d39bd6f0b4772e1be9882 --- /dev/null +++ b/timecost/n11/realtabformer/rtf-n11-20260430_214424/rtf_checkpoints/checkpoint-47500/rng_state.pth @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:510a33ce65dbab3940f05b625601ae2f2ae1b39df14ecd3eb8161478740ec1af +size 14645 diff --git a/timecost/n11/realtabformer/rtf-n11-20260430_214424/rtf_checkpoints/checkpoint-47500/scaler.pt b/timecost/n11/realtabformer/rtf-n11-20260430_214424/rtf_checkpoints/checkpoint-47500/scaler.pt new file mode 100644 index 0000000000000000000000000000000000000000..4c5387615d3c0586f42c31930f3d7f98acdcd425 --- /dev/null +++ b/timecost/n11/realtabformer/rtf-n11-20260430_214424/rtf_checkpoints/checkpoint-47500/scaler.pt @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:623bb5ea4bc3aa0baad6c0505f72fc7eccdae1ceb620aa4eaa45fa59cb398af7 +size 1383 diff --git a/timecost/n11/realtabformer/rtf-n11-20260430_214424/rtf_checkpoints/checkpoint-47500/scheduler.pt b/timecost/n11/realtabformer/rtf-n11-20260430_214424/rtf_checkpoints/checkpoint-47500/scheduler.pt new file mode 100644 index 0000000000000000000000000000000000000000..b2767ff032d54657618f9622cd184e9c9bc23f9b --- /dev/null +++ b/timecost/n11/realtabformer/rtf-n11-20260430_214424/rtf_checkpoints/checkpoint-47500/scheduler.pt @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:944968239bbcbe6231dcf848c7d3056953f1d02451f51982512eb4e7677f9ab7 +size 1465 diff --git a/timecost/n11/realtabformer/rtf-n11-20260430_214424/rtf_checkpoints/checkpoint-47500/trainer_state.json b/timecost/n11/realtabformer/rtf-n11-20260430_214424/rtf_checkpoints/checkpoint-47500/trainer_state.json new file mode 100644 index 0000000000000000000000000000000000000000..e04ce7d847f848b186a5b0252b3cfe408367b542 --- /dev/null +++ b/timecost/n11/realtabformer/rtf-n11-20260430_214424/rtf_checkpoints/checkpoint-47500/trainer_state.json @@ -0,0 +1,3359 @@ +{ + "best_global_step": null, + "best_metric": null, + "best_model_checkpoint": null, + "epoch": 99.79074658254468, + "eval_steps": 100, + "global_step": 47500, + "is_hyper_param_search": false, + "is_local_process_zero": true, + "is_world_process_zero": true, + "log_history": [ + { + "epoch": 0.2103049421661409, + "grad_norm": 0.22972723841667175, + "learning_rate": 4.989600840336135e-05, + "loss": 2.8563604736328125, + "step": 100 + }, + { + "epoch": 0.4206098843322818, + "grad_norm": 0.20056591928005219, + "learning_rate": 4.9790966386554624e-05, + "loss": 1.7068206787109375, + "step": 200 + }, + { + "epoch": 0.6309148264984227, + "grad_norm": 0.1861766129732132, + "learning_rate": 4.9685924369747897e-05, + "loss": 1.6134432983398437, + "step": 300 + }, + { + "epoch": 0.8412197686645636, + "grad_norm": 0.1723501980304718, + "learning_rate": 4.9580882352941176e-05, + "loss": 1.5735923767089843, + "step": 400 + }, + { + "epoch": 1.0504731861198737, + "grad_norm": 0.17238108813762665, + "learning_rate": 4.9475840336134455e-05, + "loss": 1.5529734802246093, + "step": 500 + }, + { + "epoch": 1.2607781282860147, + "grad_norm": 0.17322759330272675, + "learning_rate": 4.9370798319327734e-05, + "loss": 1.536485137939453, + "step": 600 + }, + { + "epoch": 1.4710830704521556, + "grad_norm": 0.1677761971950531, + "learning_rate": 4.926575630252101e-05, + "loss": 1.5277809143066405, + "step": 700 + }, + { + "epoch": 1.6813880126182965, + "grad_norm": 0.1636463701725006, + "learning_rate": 4.9160714285714286e-05, + "loss": 1.5190211486816407, + "step": 800 + }, + { + "epoch": 1.8916929547844374, + "grad_norm": 0.16561312973499298, + "learning_rate": 4.9055672268907565e-05, + "loss": 1.51519287109375, + "step": 900 + }, + { + "epoch": 2.1009463722397475, + "grad_norm": 0.15477420389652252, + "learning_rate": 4.8950630252100845e-05, + "loss": 1.5094300842285155, + "step": 1000 + }, + { + "epoch": 2.3112513144058884, + "grad_norm": 0.16169467568397522, + "learning_rate": 4.8845588235294124e-05, + "loss": 1.503891143798828, + "step": 1100 + }, + { + "epoch": 2.5215562565720293, + "grad_norm": 0.1625037044286728, + "learning_rate": 4.8740546218487396e-05, + "loss": 1.5003668212890624, + "step": 1200 + }, + { + "epoch": 2.7318611987381702, + "grad_norm": 0.15850616991519928, + "learning_rate": 4.8635504201680676e-05, + "loss": 1.5004425048828125, + "step": 1300 + }, + { + "epoch": 2.942166140904311, + "grad_norm": 0.15703575313091278, + "learning_rate": 4.8530462184873955e-05, + "loss": 1.4983340454101564, + "step": 1400 + }, + { + "epoch": 3.1514195583596214, + "grad_norm": 0.16104279458522797, + "learning_rate": 4.8425420168067234e-05, + "loss": 1.4921080017089843, + "step": 1500 + }, + { + "epoch": 3.3617245005257623, + "grad_norm": 0.15719465911388397, + "learning_rate": 4.8320378151260507e-05, + "loss": 1.4903582763671874, + "step": 1600 + }, + { + "epoch": 3.5720294426919033, + "grad_norm": 0.15651755034923553, + "learning_rate": 4.821533613445378e-05, + "loss": 1.4904457092285157, + "step": 1700 + }, + { + "epoch": 3.782334384858044, + "grad_norm": 0.14600972831249237, + "learning_rate": 4.811029411764706e-05, + "loss": 1.4897219848632812, + "step": 1800 + }, + { + "epoch": 3.992639327024185, + "grad_norm": 0.15000982582569122, + "learning_rate": 4.800525210084034e-05, + "loss": 1.4866799926757812, + "step": 1900 + }, + { + "epoch": 4.201892744479495, + "grad_norm": 0.1467936933040619, + "learning_rate": 4.790021008403362e-05, + "loss": 1.48007080078125, + "step": 2000 + }, + { + "epoch": 4.412197686645636, + "grad_norm": 0.1541317105293274, + "learning_rate": 4.779516806722689e-05, + "loss": 1.48170166015625, + "step": 2100 + }, + { + "epoch": 4.622502628811777, + "grad_norm": 0.15136213600635529, + "learning_rate": 4.769012605042017e-05, + "loss": 1.4820193481445312, + "step": 2200 + }, + { + "epoch": 4.832807570977918, + "grad_norm": 0.15268521010875702, + "learning_rate": 4.758508403361345e-05, + "loss": 1.4826155090332032, + "step": 2300 + }, + { + "epoch": 5.042060988433228, + "grad_norm": 0.1507953554391861, + "learning_rate": 4.748004201680673e-05, + "loss": 1.4825518798828126, + "step": 2400 + }, + { + "epoch": 5.252365930599369, + "grad_norm": 0.15759222209453583, + "learning_rate": 4.7375e-05, + "loss": 1.4742916870117186, + "step": 2500 + }, + { + "epoch": 5.46267087276551, + "grad_norm": 0.1464644968509674, + "learning_rate": 4.726995798319328e-05, + "loss": 1.47645751953125, + "step": 2600 + }, + { + "epoch": 5.672975814931651, + "grad_norm": 0.1496453732252121, + "learning_rate": 4.716491596638656e-05, + "loss": 1.4782669067382812, + "step": 2700 + }, + { + "epoch": 5.883280757097792, + "grad_norm": 0.15732301771640778, + "learning_rate": 4.705987394957984e-05, + "loss": 1.474007110595703, + "step": 2800 + }, + { + "epoch": 6.092534174553102, + "grad_norm": 0.1535627543926239, + "learning_rate": 4.6954831932773117e-05, + "loss": 1.4723405456542968, + "step": 2900 + }, + { + "epoch": 6.302839116719243, + "grad_norm": 0.15365540981292725, + "learning_rate": 4.684978991596639e-05, + "loss": 1.470570068359375, + "step": 3000 + }, + { + "epoch": 6.513144058885384, + "grad_norm": 0.15696321427822113, + "learning_rate": 4.674474789915967e-05, + "loss": 1.4713912963867188, + "step": 3100 + }, + { + "epoch": 6.723449001051525, + "grad_norm": 0.1542283147573471, + "learning_rate": 4.663970588235294e-05, + "loss": 1.4717630004882813, + "step": 3200 + }, + { + "epoch": 6.933753943217665, + "grad_norm": 0.14150017499923706, + "learning_rate": 4.653466386554622e-05, + "loss": 1.4702410888671875, + "step": 3300 + }, + { + "epoch": 7.143007360672976, + "grad_norm": 0.1593707650899887, + "learning_rate": 4.64296218487395e-05, + "loss": 1.4674795532226563, + "step": 3400 + }, + { + "epoch": 7.353312302839116, + "grad_norm": 0.14085018634796143, + "learning_rate": 4.632457983193277e-05, + "loss": 1.4630509948730468, + "step": 3500 + }, + { + "epoch": 7.563617245005258, + "grad_norm": 0.15045367181301117, + "learning_rate": 4.621953781512605e-05, + "loss": 1.464947509765625, + "step": 3600 + }, + { + "epoch": 7.773922187171398, + "grad_norm": 0.1627761274576187, + "learning_rate": 4.611449579831933e-05, + "loss": 1.4676199340820313, + "step": 3700 + }, + { + "epoch": 7.9842271293375395, + "grad_norm": 0.15296733379364014, + "learning_rate": 4.600945378151261e-05, + "loss": 1.464564208984375, + "step": 3800 + }, + { + "epoch": 8.19348054679285, + "grad_norm": 0.15292306244373322, + "learning_rate": 4.590441176470588e-05, + "loss": 1.460281982421875, + "step": 3900 + }, + { + "epoch": 8.40378548895899, + "grad_norm": 0.14858974516391754, + "learning_rate": 4.579936974789916e-05, + "loss": 1.4601573181152343, + "step": 4000 + }, + { + "epoch": 8.614090431125131, + "grad_norm": 0.1559685617685318, + "learning_rate": 4.569432773109244e-05, + "loss": 1.459988555908203, + "step": 4100 + }, + { + "epoch": 8.824395373291273, + "grad_norm": 0.16048291325569153, + "learning_rate": 4.558928571428572e-05, + "loss": 1.4614971923828124, + "step": 4200 + }, + { + "epoch": 9.033648790746582, + "grad_norm": 0.15471497178077698, + "learning_rate": 4.548424369747899e-05, + "loss": 1.4605735778808593, + "step": 4300 + }, + { + "epoch": 9.243953732912724, + "grad_norm": 0.14675338566303253, + "learning_rate": 4.537920168067227e-05, + "loss": 1.4529206848144531, + "step": 4400 + }, + { + "epoch": 9.454258675078865, + "grad_norm": 0.15218420326709747, + "learning_rate": 4.527415966386555e-05, + "loss": 1.4555152893066405, + "step": 4500 + }, + { + "epoch": 9.664563617245005, + "grad_norm": 0.15305759012699127, + "learning_rate": 4.516911764705883e-05, + "loss": 1.4550628662109375, + "step": 4600 + }, + { + "epoch": 9.874868559411146, + "grad_norm": 0.14932408928871155, + "learning_rate": 4.50640756302521e-05, + "loss": 1.4576924133300782, + "step": 4700 + }, + { + "epoch": 10.084121976866456, + "grad_norm": 0.15317517518997192, + "learning_rate": 4.4959033613445375e-05, + "loss": 1.45219482421875, + "step": 4800 + }, + { + "epoch": 10.294426919032597, + "grad_norm": 0.14954303205013275, + "learning_rate": 4.4853991596638654e-05, + "loss": 1.4481625366210937, + "step": 4900 + }, + { + "epoch": 10.504731861198739, + "grad_norm": 0.1534873992204666, + "learning_rate": 4.4748949579831934e-05, + "loss": 1.4501405334472657, + "step": 5000 + }, + { + "epoch": 10.715036803364878, + "grad_norm": 0.1542547196149826, + "learning_rate": 4.464390756302521e-05, + "loss": 1.452711181640625, + "step": 5100 + }, + { + "epoch": 10.92534174553102, + "grad_norm": 0.15033429861068726, + "learning_rate": 4.453886554621849e-05, + "loss": 1.4518144226074219, + "step": 5200 + }, + { + "epoch": 11.13459516298633, + "grad_norm": 0.16419348120689392, + "learning_rate": 4.4433823529411765e-05, + "loss": 1.4447087097167968, + "step": 5300 + }, + { + "epoch": 11.34490010515247, + "grad_norm": 0.15558737516403198, + "learning_rate": 4.4328781512605044e-05, + "loss": 1.4432438659667968, + "step": 5400 + }, + { + "epoch": 11.555205047318612, + "grad_norm": 0.16111871600151062, + "learning_rate": 4.422373949579832e-05, + "loss": 1.44447509765625, + "step": 5500 + }, + { + "epoch": 11.765509989484753, + "grad_norm": 0.15655963122844696, + "learning_rate": 4.41186974789916e-05, + "loss": 1.446072998046875, + "step": 5600 + }, + { + "epoch": 11.975814931650893, + "grad_norm": 0.1640811264514923, + "learning_rate": 4.4013655462184875e-05, + "loss": 1.4470193481445313, + "step": 5700 + }, + { + "epoch": 12.185068349106205, + "grad_norm": 0.16302675008773804, + "learning_rate": 4.3908613445378154e-05, + "loss": 1.4352632141113282, + "step": 5800 + }, + { + "epoch": 12.395373291272344, + "grad_norm": 0.16527259349822998, + "learning_rate": 4.380357142857143e-05, + "loss": 1.4378224182128907, + "step": 5900 + }, + { + "epoch": 12.605678233438486, + "grad_norm": 0.15840137004852295, + "learning_rate": 4.369852941176471e-05, + "loss": 1.438340301513672, + "step": 6000 + }, + { + "epoch": 12.815983175604627, + "grad_norm": 0.16105377674102783, + "learning_rate": 4.3593487394957985e-05, + "loss": 1.4395623779296876, + "step": 6100 + }, + { + "epoch": 13.025236593059937, + "grad_norm": 0.1645898073911667, + "learning_rate": 4.348844537815126e-05, + "loss": 1.4419912719726562, + "step": 6200 + }, + { + "epoch": 13.235541535226078, + "grad_norm": 0.16387709975242615, + "learning_rate": 4.338340336134454e-05, + "loss": 1.4292103576660156, + "step": 6300 + }, + { + "epoch": 13.44584647739222, + "grad_norm": 0.16231203079223633, + "learning_rate": 4.3278361344537816e-05, + "loss": 1.4302072143554687, + "step": 6400 + }, + { + "epoch": 13.656151419558359, + "grad_norm": 0.17272767424583435, + "learning_rate": 4.3173319327731095e-05, + "loss": 1.4360617065429688, + "step": 6500 + }, + { + "epoch": 13.8664563617245, + "grad_norm": 0.16650696098804474, + "learning_rate": 4.306827731092437e-05, + "loss": 1.43187744140625, + "step": 6600 + }, + { + "epoch": 14.07570977917981, + "grad_norm": 0.17131085693836212, + "learning_rate": 4.296323529411765e-05, + "loss": 1.428362579345703, + "step": 6700 + }, + { + "epoch": 14.286014721345952, + "grad_norm": 0.1767681986093521, + "learning_rate": 4.2858193277310926e-05, + "loss": 1.4247616577148436, + "step": 6800 + }, + { + "epoch": 14.496319663512093, + "grad_norm": 0.17670001089572906, + "learning_rate": 4.2753151260504206e-05, + "loss": 1.4254454040527345, + "step": 6900 + }, + { + "epoch": 14.706624605678233, + "grad_norm": 0.1740790754556656, + "learning_rate": 4.2648109243697485e-05, + "loss": 1.4258729553222655, + "step": 7000 + }, + { + "epoch": 14.916929547844374, + "grad_norm": 0.1759176403284073, + "learning_rate": 4.254306722689076e-05, + "loss": 1.429442138671875, + "step": 7100 + }, + { + "epoch": 15.126182965299684, + "grad_norm": 0.17811505496501923, + "learning_rate": 4.2438025210084037e-05, + "loss": 1.4193470764160157, + "step": 7200 + }, + { + "epoch": 15.336487907465825, + "grad_norm": 0.1877354234457016, + "learning_rate": 4.2332983193277316e-05, + "loss": 1.4145277404785157, + "step": 7300 + }, + { + "epoch": 15.546792849631967, + "grad_norm": 0.18199266493320465, + "learning_rate": 4.2227941176470595e-05, + "loss": 1.4196495056152343, + "step": 7400 + }, + { + "epoch": 15.757097791798108, + "grad_norm": 0.18197669088840485, + "learning_rate": 4.212289915966387e-05, + "loss": 1.418301544189453, + "step": 7500 + }, + { + "epoch": 15.967402733964247, + "grad_norm": 0.1789412796497345, + "learning_rate": 4.201785714285714e-05, + "loss": 1.4207553100585937, + "step": 7600 + }, + { + "epoch": 16.176656151419557, + "grad_norm": 0.19073587656021118, + "learning_rate": 4.191281512605042e-05, + "loss": 1.405756072998047, + "step": 7700 + }, + { + "epoch": 16.3869610935857, + "grad_norm": 0.20197375118732452, + "learning_rate": 4.18077731092437e-05, + "loss": 1.4052299499511718, + "step": 7800 + }, + { + "epoch": 16.59726603575184, + "grad_norm": 0.19041137397289276, + "learning_rate": 4.170273109243698e-05, + "loss": 1.4102354431152344, + "step": 7900 + }, + { + "epoch": 16.80757097791798, + "grad_norm": 0.18918046355247498, + "learning_rate": 4.159768907563025e-05, + "loss": 1.4105937194824218, + "step": 8000 + }, + { + "epoch": 17.01682439537329, + "grad_norm": 0.20001663267612457, + "learning_rate": 4.149264705882353e-05, + "loss": 1.4125469970703124, + "step": 8100 + }, + { + "epoch": 17.22712933753943, + "grad_norm": 0.20373570919036865, + "learning_rate": 4.138760504201681e-05, + "loss": 1.3912005615234375, + "step": 8200 + }, + { + "epoch": 17.437434279705574, + "grad_norm": 0.21228203177452087, + "learning_rate": 4.128256302521009e-05, + "loss": 1.400099334716797, + "step": 8300 + }, + { + "epoch": 17.647739221871714, + "grad_norm": 0.19748076796531677, + "learning_rate": 4.117752100840336e-05, + "loss": 1.3983584594726564, + "step": 8400 + }, + { + "epoch": 17.858044164037857, + "grad_norm": 0.19849108159542084, + "learning_rate": 4.107247899159664e-05, + "loss": 1.4034251403808593, + "step": 8500 + }, + { + "epoch": 18.067297581493165, + "grad_norm": 0.20575450360774994, + "learning_rate": 4.096743697478992e-05, + "loss": 1.3967425537109375, + "step": 8600 + }, + { + "epoch": 18.277602523659304, + "grad_norm": 0.21221311390399933, + "learning_rate": 4.08623949579832e-05, + "loss": 1.3828977966308593, + "step": 8700 + }, + { + "epoch": 18.487907465825447, + "grad_norm": 0.21134966611862183, + "learning_rate": 4.075735294117648e-05, + "loss": 1.3854733276367188, + "step": 8800 + }, + { + "epoch": 18.698212407991587, + "grad_norm": 0.22016377747058868, + "learning_rate": 4.065231092436975e-05, + "loss": 1.3901968383789063, + "step": 8900 + }, + { + "epoch": 18.90851735015773, + "grad_norm": 0.21417804062366486, + "learning_rate": 4.054726890756303e-05, + "loss": 1.393634033203125, + "step": 9000 + }, + { + "epoch": 19.117770767613038, + "grad_norm": 0.22256560623645782, + "learning_rate": 4.04422268907563e-05, + "loss": 1.3783042907714844, + "step": 9100 + }, + { + "epoch": 19.32807570977918, + "grad_norm": 0.22738981246948242, + "learning_rate": 4.033718487394958e-05, + "loss": 1.370293426513672, + "step": 9200 + }, + { + "epoch": 19.53838065194532, + "grad_norm": 0.22241266071796417, + "learning_rate": 4.023214285714286e-05, + "loss": 1.3737275695800781, + "step": 9300 + }, + { + "epoch": 19.74868559411146, + "grad_norm": 0.23391330242156982, + "learning_rate": 4.012710084033613e-05, + "loss": 1.377355194091797, + "step": 9400 + }, + { + "epoch": 19.958990536277604, + "grad_norm": 0.22519543766975403, + "learning_rate": 4.002205882352941e-05, + "loss": 1.3812960815429687, + "step": 9500 + }, + { + "epoch": 20.16824395373291, + "grad_norm": 0.24074196815490723, + "learning_rate": 3.991701680672269e-05, + "loss": 1.3570118713378907, + "step": 9600 + }, + { + "epoch": 20.378548895899055, + "grad_norm": 0.24606694281101227, + "learning_rate": 3.981197478991597e-05, + "loss": 1.3554267883300781, + "step": 9700 + }, + { + "epoch": 20.588853838065194, + "grad_norm": 0.23913830518722534, + "learning_rate": 3.970693277310924e-05, + "loss": 1.3621504211425781, + "step": 9800 + }, + { + "epoch": 20.799158780231334, + "grad_norm": 0.2383037805557251, + "learning_rate": 3.960189075630252e-05, + "loss": 1.3660731506347656, + "step": 9900 + }, + { + "epoch": 21.008412197686646, + "grad_norm": 0.241073340177536, + "learning_rate": 3.94968487394958e-05, + "loss": 1.3653842163085939, + "step": 10000 + }, + { + "epoch": 21.218717139852785, + "grad_norm": 0.25740981101989746, + "learning_rate": 3.939180672268908e-05, + "loss": 1.3331489562988281, + "step": 10100 + }, + { + "epoch": 21.42902208201893, + "grad_norm": 0.25830078125, + "learning_rate": 3.928676470588235e-05, + "loss": 1.3397677612304688, + "step": 10200 + }, + { + "epoch": 21.639327024185068, + "grad_norm": 0.26326829195022583, + "learning_rate": 3.918172268907563e-05, + "loss": 1.3485836791992187, + "step": 10300 + }, + { + "epoch": 21.84963196635121, + "grad_norm": 0.26259171962738037, + "learning_rate": 3.907668067226891e-05, + "loss": 1.3472573852539063, + "step": 10400 + }, + { + "epoch": 22.05888538380652, + "grad_norm": 0.27395525574684143, + "learning_rate": 3.897163865546219e-05, + "loss": 1.3426994323730468, + "step": 10500 + }, + { + "epoch": 22.26919032597266, + "grad_norm": 0.2820175290107727, + "learning_rate": 3.8866596638655463e-05, + "loss": 1.3179571533203125, + "step": 10600 + }, + { + "epoch": 22.479495268138802, + "grad_norm": 0.2815999984741211, + "learning_rate": 3.8761554621848736e-05, + "loss": 1.3242898559570313, + "step": 10700 + }, + { + "epoch": 22.68980021030494, + "grad_norm": 0.2788920998573303, + "learning_rate": 3.8656512605042015e-05, + "loss": 1.328133087158203, + "step": 10800 + }, + { + "epoch": 22.900105152471085, + "grad_norm": 0.2880179286003113, + "learning_rate": 3.8551470588235294e-05, + "loss": 1.3323233032226562, + "step": 10900 + }, + { + "epoch": 23.109358569926393, + "grad_norm": 0.29323825240135193, + "learning_rate": 3.8446428571428574e-05, + "loss": 1.3124215698242188, + "step": 11000 + }, + { + "epoch": 23.319663512092536, + "grad_norm": 0.3037724196910858, + "learning_rate": 3.834138655462185e-05, + "loss": 1.300673370361328, + "step": 11100 + }, + { + "epoch": 23.529968454258675, + "grad_norm": 0.3019108772277832, + "learning_rate": 3.8236344537815125e-05, + "loss": 1.3033621215820312, + "step": 11200 + }, + { + "epoch": 23.740273396424815, + "grad_norm": 0.3141040503978729, + "learning_rate": 3.8131302521008405e-05, + "loss": 1.3118415832519532, + "step": 11300 + }, + { + "epoch": 23.950578338590958, + "grad_norm": 0.305362731218338, + "learning_rate": 3.8026260504201684e-05, + "loss": 1.3120425415039063, + "step": 11400 + }, + { + "epoch": 24.159831756046266, + "grad_norm": 0.3149303197860718, + "learning_rate": 3.792121848739496e-05, + "loss": 1.281750946044922, + "step": 11500 + }, + { + "epoch": 24.37013669821241, + "grad_norm": 0.31983524560928345, + "learning_rate": 3.7816176470588236e-05, + "loss": 1.2786111450195312, + "step": 11600 + }, + { + "epoch": 24.58044164037855, + "grad_norm": 0.32351240515708923, + "learning_rate": 3.7711134453781515e-05, + "loss": 1.284888916015625, + "step": 11700 + }, + { + "epoch": 24.79074658254469, + "grad_norm": 0.3239966034889221, + "learning_rate": 3.7606092436974794e-05, + "loss": 1.2899176025390624, + "step": 11800 + }, + { + "epoch": 25.0, + "grad_norm": 0.49487531185150146, + "learning_rate": 3.7501050420168073e-05, + "loss": 1.2903105163574218, + "step": 11900 + }, + { + "epoch": 25.21030494216614, + "grad_norm": 0.343091756105423, + "learning_rate": 3.7396008403361346e-05, + "loss": 1.24728271484375, + "step": 12000 + }, + { + "epoch": 25.420609884332283, + "grad_norm": 0.3502146899700165, + "learning_rate": 3.729096638655462e-05, + "loss": 1.2573788452148438, + "step": 12100 + }, + { + "epoch": 25.630914826498422, + "grad_norm": 0.34780803322792053, + "learning_rate": 3.71859243697479e-05, + "loss": 1.259660186767578, + "step": 12200 + }, + { + "epoch": 25.841219768664562, + "grad_norm": 0.3617474436759949, + "learning_rate": 3.708088235294118e-05, + "loss": 1.267321548461914, + "step": 12300 + }, + { + "epoch": 26.050473186119874, + "grad_norm": 0.36151477694511414, + "learning_rate": 3.6975840336134456e-05, + "loss": 1.2569818878173828, + "step": 12400 + }, + { + "epoch": 26.260778128286013, + "grad_norm": 0.3706369400024414, + "learning_rate": 3.687079831932773e-05, + "loss": 1.2217762756347657, + "step": 12500 + }, + { + "epoch": 26.471083070452156, + "grad_norm": 0.36876797676086426, + "learning_rate": 3.676575630252101e-05, + "loss": 1.2311412048339845, + "step": 12600 + }, + { + "epoch": 26.681388012618296, + "grad_norm": 0.37329521775245667, + "learning_rate": 3.666071428571429e-05, + "loss": 1.23805908203125, + "step": 12700 + }, + { + "epoch": 26.89169295478444, + "grad_norm": 0.3803170919418335, + "learning_rate": 3.6555672268907566e-05, + "loss": 1.2423350524902343, + "step": 12800 + }, + { + "epoch": 27.100946372239747, + "grad_norm": 0.3833712637424469, + "learning_rate": 3.6450630252100846e-05, + "loss": 1.222099609375, + "step": 12900 + }, + { + "epoch": 27.31125131440589, + "grad_norm": 0.3987831771373749, + "learning_rate": 3.634558823529412e-05, + "loss": 1.1973797607421874, + "step": 13000 + }, + { + "epoch": 27.52155625657203, + "grad_norm": 0.39121338725090027, + "learning_rate": 3.62405462184874e-05, + "loss": 1.206004409790039, + "step": 13100 + }, + { + "epoch": 27.73186119873817, + "grad_norm": 0.4020472764968872, + "learning_rate": 3.613550420168068e-05, + "loss": 1.2129373168945312, + "step": 13200 + }, + { + "epoch": 27.942166140904312, + "grad_norm": 0.4015159606933594, + "learning_rate": 3.6030462184873956e-05, + "loss": 1.2179686737060547, + "step": 13300 + }, + { + "epoch": 28.15141955835962, + "grad_norm": 0.3998790681362152, + "learning_rate": 3.592542016806723e-05, + "loss": 1.1833483123779296, + "step": 13400 + }, + { + "epoch": 28.361724500525764, + "grad_norm": 0.4190026819705963, + "learning_rate": 3.582037815126051e-05, + "loss": 1.1737586975097656, + "step": 13500 + }, + { + "epoch": 28.572029442691903, + "grad_norm": 0.4131736159324646, + "learning_rate": 3.571533613445378e-05, + "loss": 1.1806912231445312, + "step": 13600 + }, + { + "epoch": 28.782334384858043, + "grad_norm": 0.4250866174697876, + "learning_rate": 3.561029411764706e-05, + "loss": 1.1913446044921876, + "step": 13700 + }, + { + "epoch": 28.992639327024186, + "grad_norm": 0.4264129400253296, + "learning_rate": 3.550525210084034e-05, + "loss": 1.1878318786621094, + "step": 13800 + }, + { + "epoch": 29.201892744479494, + "grad_norm": 0.43633338809013367, + "learning_rate": 3.540021008403361e-05, + "loss": 1.1386358642578125, + "step": 13900 + }, + { + "epoch": 29.412197686645637, + "grad_norm": 0.4486881494522095, + "learning_rate": 3.529516806722689e-05, + "loss": 1.1477174377441406, + "step": 14000 + }, + { + "epoch": 29.622502628811777, + "grad_norm": 0.4420314133167267, + "learning_rate": 3.519012605042017e-05, + "loss": 1.1530896759033202, + "step": 14100 + }, + { + "epoch": 29.832807570977916, + "grad_norm": 0.4598003327846527, + "learning_rate": 3.508508403361345e-05, + "loss": 1.16252197265625, + "step": 14200 + }, + { + "epoch": 30.042060988433228, + "grad_norm": 0.44520533084869385, + "learning_rate": 3.498004201680672e-05, + "loss": 1.1551103973388672, + "step": 14300 + }, + { + "epoch": 30.252365930599368, + "grad_norm": 0.45871588587760925, + "learning_rate": 3.4875e-05, + "loss": 1.107753448486328, + "step": 14400 + }, + { + "epoch": 30.46267087276551, + "grad_norm": 0.46063199639320374, + "learning_rate": 3.476995798319328e-05, + "loss": 1.1182296752929688, + "step": 14500 + }, + { + "epoch": 30.67297581493165, + "grad_norm": 0.4760204553604126, + "learning_rate": 3.466491596638656e-05, + "loss": 1.129236373901367, + "step": 14600 + }, + { + "epoch": 30.883280757097793, + "grad_norm": 0.47249314188957214, + "learning_rate": 3.455987394957984e-05, + "loss": 1.1352229309082031, + "step": 14700 + }, + { + "epoch": 31.0925341745531, + "grad_norm": 0.4624006450176239, + "learning_rate": 3.445483193277311e-05, + "loss": 1.1082867431640624, + "step": 14800 + }, + { + "epoch": 31.302839116719245, + "grad_norm": 0.4787958264350891, + "learning_rate": 3.434978991596639e-05, + "loss": 1.0818411254882812, + "step": 14900 + }, + { + "epoch": 31.513144058885384, + "grad_norm": 0.4875246286392212, + "learning_rate": 3.424474789915967e-05, + "loss": 1.092553939819336, + "step": 15000 + }, + { + "epoch": 31.723449001051524, + "grad_norm": 0.48742467164993286, + "learning_rate": 3.413970588235294e-05, + "loss": 1.1002989959716798, + "step": 15100 + }, + { + "epoch": 31.933753943217667, + "grad_norm": 0.5014126896858215, + "learning_rate": 3.403466386554622e-05, + "loss": 1.1067331695556641, + "step": 15200 + }, + { + "epoch": 32.143007360672975, + "grad_norm": 0.48793110251426697, + "learning_rate": 3.3929621848739494e-05, + "loss": 1.0649752807617188, + "step": 15300 + }, + { + "epoch": 32.353312302839115, + "grad_norm": 0.5064884424209595, + "learning_rate": 3.382457983193277e-05, + "loss": 1.0489683532714844, + "step": 15400 + }, + { + "epoch": 32.56361724500526, + "grad_norm": 0.5118729472160339, + "learning_rate": 3.371953781512605e-05, + "loss": 1.0648185729980468, + "step": 15500 + }, + { + "epoch": 32.7739221871714, + "grad_norm": 0.5236688852310181, + "learning_rate": 3.361449579831933e-05, + "loss": 1.0743647766113282, + "step": 15600 + }, + { + "epoch": 32.98422712933754, + "grad_norm": 0.5397860407829285, + "learning_rate": 3.3509453781512604e-05, + "loss": 1.080048828125, + "step": 15700 + }, + { + "epoch": 33.19348054679285, + "grad_norm": 0.5270755290985107, + "learning_rate": 3.340441176470588e-05, + "loss": 1.0228548431396485, + "step": 15800 + }, + { + "epoch": 33.40378548895899, + "grad_norm": 0.5429406762123108, + "learning_rate": 3.329936974789916e-05, + "loss": 1.028949966430664, + "step": 15900 + }, + { + "epoch": 33.614090431125135, + "grad_norm": 0.5323997735977173, + "learning_rate": 3.319432773109244e-05, + "loss": 1.037523956298828, + "step": 16000 + }, + { + "epoch": 33.824395373291274, + "grad_norm": 0.5385149717330933, + "learning_rate": 3.3090336134453784e-05, + "loss": 1.0431160736083984, + "step": 16100 + }, + { + "epoch": 34.03364879074658, + "grad_norm": 0.5089665651321411, + "learning_rate": 3.2986344537815127e-05, + "loss": 1.0349723815917968, + "step": 16200 + }, + { + "epoch": 34.24395373291272, + "grad_norm": 0.5455434918403625, + "learning_rate": 3.2881302521008406e-05, + "loss": 0.988803482055664, + "step": 16300 + }, + { + "epoch": 34.45425867507886, + "grad_norm": 0.5569856762886047, + "learning_rate": 3.2776260504201685e-05, + "loss": 1.0031266021728515, + "step": 16400 + }, + { + "epoch": 34.66456361724501, + "grad_norm": 0.5644022226333618, + "learning_rate": 3.2671218487394964e-05, + "loss": 1.0083402252197267, + "step": 16500 + }, + { + "epoch": 34.87486855941115, + "grad_norm": 0.5685406923294067, + "learning_rate": 3.256617647058824e-05, + "loss": 1.0177439117431641, + "step": 16600 + }, + { + "epoch": 35.084121976866456, + "grad_norm": 0.543632447719574, + "learning_rate": 3.2461134453781516e-05, + "loss": 0.9930455780029297, + "step": 16700 + }, + { + "epoch": 35.294426919032595, + "grad_norm": 0.5612316727638245, + "learning_rate": 3.2356092436974795e-05, + "loss": 0.9650897216796875, + "step": 16800 + }, + { + "epoch": 35.504731861198735, + "grad_norm": 0.5759446024894714, + "learning_rate": 3.225105042016807e-05, + "loss": 0.973653564453125, + "step": 16900 + }, + { + "epoch": 35.71503680336488, + "grad_norm": 0.574255645275116, + "learning_rate": 3.214600840336135e-05, + "loss": 0.981424560546875, + "step": 17000 + }, + { + "epoch": 35.92534174553102, + "grad_norm": 0.5851606726646423, + "learning_rate": 3.204096638655462e-05, + "loss": 0.991123046875, + "step": 17100 + }, + { + "epoch": 36.13459516298633, + "grad_norm": 0.5589666366577148, + "learning_rate": 3.19359243697479e-05, + "loss": 0.9481909942626953, + "step": 17200 + }, + { + "epoch": 36.34490010515247, + "grad_norm": 0.5968824625015259, + "learning_rate": 3.183088235294118e-05, + "loss": 0.9365898895263672, + "step": 17300 + }, + { + "epoch": 36.55520504731861, + "grad_norm": 0.5998508930206299, + "learning_rate": 3.172584033613446e-05, + "loss": 0.9492893218994141, + "step": 17400 + }, + { + "epoch": 36.765509989484755, + "grad_norm": 0.6060558557510376, + "learning_rate": 3.162079831932773e-05, + "loss": 0.9547823333740234, + "step": 17500 + }, + { + "epoch": 36.975814931650895, + "grad_norm": 0.589341402053833, + "learning_rate": 3.151575630252101e-05, + "loss": 0.9626276397705078, + "step": 17600 + }, + { + "epoch": 37.1850683491062, + "grad_norm": 0.5891321897506714, + "learning_rate": 3.141071428571429e-05, + "loss": 0.9065424346923828, + "step": 17700 + }, + { + "epoch": 37.39537329127234, + "grad_norm": 0.5880729556083679, + "learning_rate": 3.130567226890757e-05, + "loss": 0.9107749938964844, + "step": 17800 + }, + { + "epoch": 37.60567823343849, + "grad_norm": 0.6077774167060852, + "learning_rate": 3.120063025210084e-05, + "loss": 0.9193459320068359, + "step": 17900 + }, + { + "epoch": 37.81598317560463, + "grad_norm": 0.6189863681793213, + "learning_rate": 3.109558823529412e-05, + "loss": 0.9286084747314454, + "step": 18000 + }, + { + "epoch": 38.02523659305994, + "grad_norm": 0.5724475383758545, + "learning_rate": 3.09905462184874e-05, + "loss": 0.9282203674316406, + "step": 18100 + }, + { + "epoch": 38.235541535226076, + "grad_norm": 0.5952550768852234, + "learning_rate": 3.088550420168068e-05, + "loss": 0.8734053039550781, + "step": 18200 + }, + { + "epoch": 38.445846477392216, + "grad_norm": 0.5967536568641663, + "learning_rate": 3.078046218487395e-05, + "loss": 0.886033935546875, + "step": 18300 + }, + { + "epoch": 38.65615141955836, + "grad_norm": 0.6298649311065674, + "learning_rate": 3.067542016806722e-05, + "loss": 0.8977913665771484, + "step": 18400 + }, + { + "epoch": 38.8664563617245, + "grad_norm": 0.6457948684692383, + "learning_rate": 3.05703781512605e-05, + "loss": 0.9048082733154297, + "step": 18500 + }, + { + "epoch": 39.07570977917981, + "grad_norm": 0.6172012090682983, + "learning_rate": 3.046533613445378e-05, + "loss": 0.8857656860351563, + "step": 18600 + }, + { + "epoch": 39.28601472134595, + "grad_norm": 0.5979504585266113, + "learning_rate": 3.036029411764706e-05, + "loss": 0.8502845001220704, + "step": 18700 + }, + { + "epoch": 39.49631966351209, + "grad_norm": 0.6284430623054504, + "learning_rate": 3.0255252100840336e-05, + "loss": 0.8602873229980469, + "step": 18800 + }, + { + "epoch": 39.706624605678236, + "grad_norm": 0.6330845355987549, + "learning_rate": 3.0150210084033616e-05, + "loss": 0.8690576934814453, + "step": 18900 + }, + { + "epoch": 39.916929547844376, + "grad_norm": 0.6465399861335754, + "learning_rate": 3.004516806722689e-05, + "loss": 0.8787310791015625, + "step": 19000 + }, + { + "epoch": 40.126182965299684, + "grad_norm": 0.6255329251289368, + "learning_rate": 2.994117647058824e-05, + "loss": 0.84158203125, + "step": 19100 + }, + { + "epoch": 40.33648790746582, + "grad_norm": 0.6304967999458313, + "learning_rate": 2.983613445378151e-05, + "loss": 0.8283135223388672, + "step": 19200 + }, + { + "epoch": 40.54679284963196, + "grad_norm": 0.6366279125213623, + "learning_rate": 2.973109243697479e-05, + "loss": 0.8385968780517579, + "step": 19300 + }, + { + "epoch": 40.75709779179811, + "grad_norm": 0.6407002210617065, + "learning_rate": 2.9626050420168065e-05, + "loss": 0.8465004730224609, + "step": 19400 + }, + { + "epoch": 40.96740273396425, + "grad_norm": 0.6582015156745911, + "learning_rate": 2.9521008403361344e-05, + "loss": 0.8523696136474609, + "step": 19500 + }, + { + "epoch": 41.17665615141956, + "grad_norm": 0.6326037645339966, + "learning_rate": 2.9415966386554624e-05, + "loss": 0.8025535583496094, + "step": 19600 + }, + { + "epoch": 41.3869610935857, + "grad_norm": 0.631605863571167, + "learning_rate": 2.93109243697479e-05, + "loss": 0.8077165222167969, + "step": 19700 + }, + { + "epoch": 41.597266035751844, + "grad_norm": 0.6400684118270874, + "learning_rate": 2.920588235294118e-05, + "loss": 0.8162235260009766, + "step": 19800 + }, + { + "epoch": 41.80757097791798, + "grad_norm": 0.6499695181846619, + "learning_rate": 2.9100840336134455e-05, + "loss": 0.8243218231201171, + "step": 19900 + }, + { + "epoch": 42.01682439537329, + "grad_norm": 0.6392955183982849, + "learning_rate": 2.8995798319327734e-05, + "loss": 0.8244134521484375, + "step": 20000 + }, + { + "epoch": 42.22712933753943, + "grad_norm": 0.6429536938667297, + "learning_rate": 2.889075630252101e-05, + "loss": 0.7711881256103515, + "step": 20100 + }, + { + "epoch": 42.43743427970557, + "grad_norm": 0.6592206358909607, + "learning_rate": 2.878571428571429e-05, + "loss": 0.7841451263427734, + "step": 20200 + }, + { + "epoch": 42.64773922187172, + "grad_norm": 0.6881083846092224, + "learning_rate": 2.8680672268907565e-05, + "loss": 0.792880859375, + "step": 20300 + }, + { + "epoch": 42.85804416403786, + "grad_norm": 0.6662302017211914, + "learning_rate": 2.8575630252100844e-05, + "loss": 0.8001659393310547, + "step": 20400 + }, + { + "epoch": 43.067297581493165, + "grad_norm": 0.6177626252174377, + "learning_rate": 2.847058823529412e-05, + "loss": 0.7870485687255859, + "step": 20500 + }, + { + "epoch": 43.277602523659304, + "grad_norm": 0.6681060194969177, + "learning_rate": 2.83655462184874e-05, + "loss": 0.7512457275390625, + "step": 20600 + }, + { + "epoch": 43.487907465825444, + "grad_norm": 0.669675886631012, + "learning_rate": 2.826050420168067e-05, + "loss": 0.7591960144042968, + "step": 20700 + }, + { + "epoch": 43.69821240799159, + "grad_norm": 0.7097092866897583, + "learning_rate": 2.8155462184873948e-05, + "loss": 0.7737602233886719, + "step": 20800 + }, + { + "epoch": 43.90851735015773, + "grad_norm": 0.6951079964637756, + "learning_rate": 2.8050420168067227e-05, + "loss": 0.7815242767333984, + "step": 20900 + }, + { + "epoch": 44.11777076761304, + "grad_norm": 0.639824390411377, + "learning_rate": 2.7945378151260503e-05, + "loss": 0.7512903594970703, + "step": 21000 + }, + { + "epoch": 44.32807570977918, + "grad_norm": 0.67326819896698, + "learning_rate": 2.7840336134453782e-05, + "loss": 0.7329978179931641, + "step": 21100 + }, + { + "epoch": 44.53838065194532, + "grad_norm": 0.6938571333885193, + "learning_rate": 2.7735294117647058e-05, + "loss": 0.7421668243408203, + "step": 21200 + }, + { + "epoch": 44.748685594111464, + "grad_norm": 0.6845099925994873, + "learning_rate": 2.7630252100840337e-05, + "loss": 0.7509217071533203, + "step": 21300 + }, + { + "epoch": 44.958990536277604, + "grad_norm": 0.681825578212738, + "learning_rate": 2.7525210084033616e-05, + "loss": 0.7620004272460937, + "step": 21400 + }, + { + "epoch": 45.16824395373291, + "grad_norm": 0.6556856036186218, + "learning_rate": 2.7421218487394962e-05, + "loss": 0.7184288787841797, + "step": 21500 + }, + { + "epoch": 45.37854889589905, + "grad_norm": 0.6386471390724182, + "learning_rate": 2.7316176470588235e-05, + "loss": 0.7161962127685547, + "step": 21600 + }, + { + "epoch": 45.5888538380652, + "grad_norm": 0.6947113275527954, + "learning_rate": 2.721113445378151e-05, + "loss": 0.7244486999511719, + "step": 21700 + }, + { + "epoch": 45.79915878023134, + "grad_norm": 0.6741232872009277, + "learning_rate": 2.710609243697479e-05, + "loss": 0.7308968353271484, + "step": 21800 + }, + { + "epoch": 46.008412197686646, + "grad_norm": 0.6631771326065063, + "learning_rate": 2.7001050420168066e-05, + "loss": 0.7323504638671875, + "step": 21900 + }, + { + "epoch": 46.218717139852785, + "grad_norm": 0.6702309250831604, + "learning_rate": 2.6896008403361345e-05, + "loss": 0.6865713500976562, + "step": 22000 + }, + { + "epoch": 46.429022082018925, + "grad_norm": 0.6711138486862183, + "learning_rate": 2.679096638655462e-05, + "loss": 0.697294921875, + "step": 22100 + }, + { + "epoch": 46.63932702418507, + "grad_norm": 0.7067892551422119, + "learning_rate": 2.66859243697479e-05, + "loss": 0.70609619140625, + "step": 22200 + }, + { + "epoch": 46.84963196635121, + "grad_norm": 0.6743476390838623, + "learning_rate": 2.658088235294118e-05, + "loss": 0.7116059112548828, + "step": 22300 + }, + { + "epoch": 47.05888538380652, + "grad_norm": 0.642842710018158, + "learning_rate": 2.6475840336134455e-05, + "loss": 0.7024728393554688, + "step": 22400 + }, + { + "epoch": 47.26919032597266, + "grad_norm": 0.6852782368659973, + "learning_rate": 2.6370798319327734e-05, + "loss": 0.6698217010498047, + "step": 22500 + }, + { + "epoch": 47.4794952681388, + "grad_norm": 0.6817244291305542, + "learning_rate": 2.626575630252101e-05, + "loss": 0.6796794891357422, + "step": 22600 + }, + { + "epoch": 47.689800210304945, + "grad_norm": 0.665703535079956, + "learning_rate": 2.616071428571429e-05, + "loss": 0.689930191040039, + "step": 22700 + }, + { + "epoch": 47.900105152471085, + "grad_norm": 0.7286046147346497, + "learning_rate": 2.6055672268907565e-05, + "loss": 0.6968262481689453, + "step": 22800 + }, + { + "epoch": 48.10935856992639, + "grad_norm": 0.6568066477775574, + "learning_rate": 2.5950630252100845e-05, + "loss": 0.6714718627929688, + "step": 22900 + }, + { + "epoch": 48.31966351209253, + "grad_norm": 0.6909933090209961, + "learning_rate": 2.584558823529412e-05, + "loss": 0.6521046447753907, + "step": 23000 + }, + { + "epoch": 48.52996845425867, + "grad_norm": 0.6730957627296448, + "learning_rate": 2.5740546218487393e-05, + "loss": 0.6635847473144532, + "step": 23100 + }, + { + "epoch": 48.74027339642482, + "grad_norm": 0.7137960195541382, + "learning_rate": 2.5635504201680672e-05, + "loss": 0.6703518676757813, + "step": 23200 + }, + { + "epoch": 48.95057833859096, + "grad_norm": 0.7035015225410461, + "learning_rate": 2.5530462184873948e-05, + "loss": 0.678240737915039, + "step": 23300 + }, + { + "epoch": 49.159831756046266, + "grad_norm": 0.6768185496330261, + "learning_rate": 2.5425420168067227e-05, + "loss": 0.6413292694091797, + "step": 23400 + }, + { + "epoch": 49.370136698212406, + "grad_norm": 0.6941663026809692, + "learning_rate": 2.5320378151260503e-05, + "loss": 0.6415236663818359, + "step": 23500 + }, + { + "epoch": 49.58044164037855, + "grad_norm": 0.722435712814331, + "learning_rate": 2.5215336134453782e-05, + "loss": 0.6499783325195313, + "step": 23600 + }, + { + "epoch": 49.79074658254469, + "grad_norm": 0.7071043252944946, + "learning_rate": 2.511029411764706e-05, + "loss": 0.6546615600585938, + "step": 23700 + }, + { + "epoch": 50.0, + "grad_norm": Infinity, + "learning_rate": 2.5005252100840338e-05, + "loss": 0.6589860534667968, + "step": 23800 + }, + { + "epoch": 50.21030494216614, + "grad_norm": 0.6747011542320251, + "learning_rate": 2.490126050420168e-05, + "loss": 0.6164878845214844, + "step": 23900 + }, + { + "epoch": 50.42060988433228, + "grad_norm": 0.6953312754631042, + "learning_rate": 2.479621848739496e-05, + "loss": 0.6259209060668945, + "step": 24000 + }, + { + "epoch": 50.630914826498426, + "grad_norm": 0.6829053163528442, + "learning_rate": 2.469117647058824e-05, + "loss": 0.6306737518310547, + "step": 24100 + }, + { + "epoch": 50.841219768664565, + "grad_norm": 0.7105507850646973, + "learning_rate": 2.4586134453781514e-05, + "loss": 0.6402838897705078, + "step": 24200 + }, + { + "epoch": 51.05047318611987, + "grad_norm": 0.6592356562614441, + "learning_rate": 2.4481092436974794e-05, + "loss": 0.6321442413330078, + "step": 24300 + }, + { + "epoch": 51.26077812828601, + "grad_norm": 0.6957094073295593, + "learning_rate": 2.4376050420168066e-05, + "loss": 0.6060052108764649, + "step": 24400 + }, + { + "epoch": 51.47108307045215, + "grad_norm": 0.6904229521751404, + "learning_rate": 2.4271008403361345e-05, + "loss": 0.6094649505615234, + "step": 24500 + }, + { + "epoch": 51.6813880126183, + "grad_norm": 0.7173294425010681, + "learning_rate": 2.416596638655462e-05, + "loss": 0.6187096023559571, + "step": 24600 + }, + { + "epoch": 51.89169295478444, + "grad_norm": 0.7143198251724243, + "learning_rate": 2.40609243697479e-05, + "loss": 0.6268323516845703, + "step": 24700 + }, + { + "epoch": 52.10094637223975, + "grad_norm": 0.6786720752716064, + "learning_rate": 2.3955882352941176e-05, + "loss": 0.6083223342895507, + "step": 24800 + }, + { + "epoch": 52.31125131440589, + "grad_norm": 0.6900521516799927, + "learning_rate": 2.3850840336134456e-05, + "loss": 0.5922721862792969, + "step": 24900 + }, + { + "epoch": 52.521556256572026, + "grad_norm": 0.7288543581962585, + "learning_rate": 2.3745798319327735e-05, + "loss": 0.5982749938964844, + "step": 25000 + }, + { + "epoch": 52.73186119873817, + "grad_norm": 0.704078197479248, + "learning_rate": 2.3640756302521007e-05, + "loss": 0.6041379547119141, + "step": 25100 + }, + { + "epoch": 52.94216614090431, + "grad_norm": 0.706262469291687, + "learning_rate": 2.3535714285714287e-05, + "loss": 0.6083390808105469, + "step": 25200 + }, + { + "epoch": 53.15141955835962, + "grad_norm": 0.6775776743888855, + "learning_rate": 2.3430672268907563e-05, + "loss": 0.5816435623168945, + "step": 25300 + }, + { + "epoch": 53.36172450052576, + "grad_norm": 0.7253007888793945, + "learning_rate": 2.3325630252100842e-05, + "loss": 0.58095458984375, + "step": 25400 + }, + { + "epoch": 53.5720294426919, + "grad_norm": 0.7169889211654663, + "learning_rate": 2.3220588235294118e-05, + "loss": 0.5878105163574219, + "step": 25500 + }, + { + "epoch": 53.782334384858046, + "grad_norm": 0.6921281814575195, + "learning_rate": 2.3115546218487397e-05, + "loss": 0.5918175506591797, + "step": 25600 + }, + { + "epoch": 53.992639327024186, + "grad_norm": 0.7570663094520569, + "learning_rate": 2.3010504201680673e-05, + "loss": 0.5992276000976563, + "step": 25700 + }, + { + "epoch": 54.201892744479494, + "grad_norm": 0.7045475840568542, + "learning_rate": 2.2905462184873952e-05, + "loss": 0.563626937866211, + "step": 25800 + }, + { + "epoch": 54.412197686645634, + "grad_norm": 0.7311537861824036, + "learning_rate": 2.2800420168067228e-05, + "loss": 0.5649079513549805, + "step": 25900 + }, + { + "epoch": 54.62250262881178, + "grad_norm": 0.7197280526161194, + "learning_rate": 2.2695378151260504e-05, + "loss": 0.5740287017822265, + "step": 26000 + }, + { + "epoch": 54.83280757097792, + "grad_norm": 0.7047930359840393, + "learning_rate": 2.2590336134453783e-05, + "loss": 0.5799992752075195, + "step": 26100 + }, + { + "epoch": 55.04206098843323, + "grad_norm": 0.663329541683197, + "learning_rate": 2.2486344537815125e-05, + "loss": 0.5747824096679688, + "step": 26200 + }, + { + "epoch": 55.25236593059937, + "grad_norm": 0.6825776100158691, + "learning_rate": 2.2381302521008405e-05, + "loss": 0.5511475372314453, + "step": 26300 + }, + { + "epoch": 55.46267087276551, + "grad_norm": 0.7081674337387085, + "learning_rate": 2.227626050420168e-05, + "loss": 0.5568293380737305, + "step": 26400 + }, + { + "epoch": 55.672975814931654, + "grad_norm": 0.6991596221923828, + "learning_rate": 2.217121848739496e-05, + "loss": 0.5623696899414062, + "step": 26500 + }, + { + "epoch": 55.88328075709779, + "grad_norm": 0.7421116828918457, + "learning_rate": 2.2066176470588236e-05, + "loss": 0.5673596572875976, + "step": 26600 + }, + { + "epoch": 56.0925341745531, + "grad_norm": 0.6679620146751404, + "learning_rate": 2.1961134453781515e-05, + "loss": 0.555915298461914, + "step": 26700 + }, + { + "epoch": 56.30283911671924, + "grad_norm": 0.7035086750984192, + "learning_rate": 2.185609243697479e-05, + "loss": 0.5402443313598633, + "step": 26800 + }, + { + "epoch": 56.51314405888538, + "grad_norm": 0.6888571381568909, + "learning_rate": 2.1751050420168067e-05, + "loss": 0.5462953186035157, + "step": 26900 + }, + { + "epoch": 56.72344900105153, + "grad_norm": 0.7356609106063843, + "learning_rate": 2.1646008403361346e-05, + "loss": 0.5512025833129883, + "step": 27000 + }, + { + "epoch": 56.93375394321767, + "grad_norm": 0.7569705247879028, + "learning_rate": 2.1540966386554622e-05, + "loss": 0.5562152481079101, + "step": 27100 + }, + { + "epoch": 57.143007360672975, + "grad_norm": 0.6764115691184998, + "learning_rate": 2.14359243697479e-05, + "loss": 0.5337548065185547, + "step": 27200 + }, + { + "epoch": 57.353312302839115, + "grad_norm": 0.7006810307502747, + "learning_rate": 2.1330882352941177e-05, + "loss": 0.5296073913574219, + "step": 27300 + }, + { + "epoch": 57.56361724500526, + "grad_norm": 0.7158169150352478, + "learning_rate": 2.1225840336134456e-05, + "loss": 0.5382700347900391, + "step": 27400 + }, + { + "epoch": 57.7739221871714, + "grad_norm": 0.7132992148399353, + "learning_rate": 2.1120798319327732e-05, + "loss": 0.5398505783081055, + "step": 27500 + }, + { + "epoch": 57.98422712933754, + "grad_norm": 0.7330942749977112, + "learning_rate": 2.1015756302521008e-05, + "loss": 0.5458747863769531, + "step": 27600 + }, + { + "epoch": 58.19348054679285, + "grad_norm": 0.669278621673584, + "learning_rate": 2.0910714285714287e-05, + "loss": 0.5161695861816407, + "step": 27700 + }, + { + "epoch": 58.40378548895899, + "grad_norm": 0.6958737373352051, + "learning_rate": 2.0805672268907563e-05, + "loss": 0.5201998901367187, + "step": 27800 + }, + { + "epoch": 58.614090431125135, + "grad_norm": 0.6824914813041687, + "learning_rate": 2.0700630252100842e-05, + "loss": 0.5258338928222657, + "step": 27900 + }, + { + "epoch": 58.824395373291274, + "grad_norm": 0.6634467244148254, + "learning_rate": 2.0595588235294118e-05, + "loss": 0.5300619888305664, + "step": 28000 + }, + { + "epoch": 59.03364879074658, + "grad_norm": 0.6863816380500793, + "learning_rate": 2.0490546218487397e-05, + "loss": 0.5283214950561523, + "step": 28100 + }, + { + "epoch": 59.24395373291272, + "grad_norm": 0.7183119654655457, + "learning_rate": 2.0385504201680673e-05, + "loss": 0.506834487915039, + "step": 28200 + }, + { + "epoch": 59.45425867507886, + "grad_norm": 0.7142145037651062, + "learning_rate": 2.028046218487395e-05, + "loss": 0.5117876815795899, + "step": 28300 + }, + { + "epoch": 59.66456361724501, + "grad_norm": 0.7280924916267395, + "learning_rate": 2.017542016806723e-05, + "loss": 0.5153473281860351, + "step": 28400 + }, + { + "epoch": 59.87486855941115, + "grad_norm": 0.693505048751831, + "learning_rate": 2.0070378151260504e-05, + "loss": 0.5219352722167969, + "step": 28500 + }, + { + "epoch": 60.084121976866456, + "grad_norm": 0.6892845034599304, + "learning_rate": 1.9965336134453784e-05, + "loss": 0.5122858810424805, + "step": 28600 + }, + { + "epoch": 60.294426919032595, + "grad_norm": 0.6604379415512085, + "learning_rate": 1.986029411764706e-05, + "loss": 0.49614715576171875, + "step": 28700 + }, + { + "epoch": 60.504731861198735, + "grad_norm": 0.7204891443252563, + "learning_rate": 1.975525210084034e-05, + "loss": 0.5024974822998047, + "step": 28800 + }, + { + "epoch": 60.71503680336488, + "grad_norm": 0.7127634286880493, + "learning_rate": 1.9650210084033615e-05, + "loss": 0.5073120498657226, + "step": 28900 + }, + { + "epoch": 60.92534174553102, + "grad_norm": 0.7359983921051025, + "learning_rate": 1.954516806722689e-05, + "loss": 0.5116232681274414, + "step": 29000 + }, + { + "epoch": 61.13459516298633, + "grad_norm": 0.6893951296806335, + "learning_rate": 1.944012605042017e-05, + "loss": 0.4952814865112305, + "step": 29100 + }, + { + "epoch": 61.34490010515247, + "grad_norm": 0.6849685311317444, + "learning_rate": 1.9335084033613446e-05, + "loss": 0.4899435043334961, + "step": 29200 + }, + { + "epoch": 61.55520504731861, + "grad_norm": 0.7181743383407593, + "learning_rate": 1.9230042016806725e-05, + "loss": 0.4946512985229492, + "step": 29300 + }, + { + "epoch": 61.765509989484755, + "grad_norm": 0.6820606589317322, + "learning_rate": 1.9125e-05, + "loss": 0.49947418212890626, + "step": 29400 + }, + { + "epoch": 61.975814931650895, + "grad_norm": 0.7111321687698364, + "learning_rate": 1.901995798319328e-05, + "loss": 0.5020344543457032, + "step": 29500 + }, + { + "epoch": 62.1850683491062, + "grad_norm": 0.7008198499679565, + "learning_rate": 1.8914915966386556e-05, + "loss": 0.48151485443115233, + "step": 29600 + }, + { + "epoch": 62.39537329127234, + "grad_norm": 0.7171513438224792, + "learning_rate": 1.880987394957983e-05, + "loss": 0.48171932220458985, + "step": 29700 + }, + { + "epoch": 62.60567823343849, + "grad_norm": 0.7375807762145996, + "learning_rate": 1.8704831932773108e-05, + "loss": 0.4873679733276367, + "step": 29800 + }, + { + "epoch": 62.81598317560463, + "grad_norm": 0.6806672811508179, + "learning_rate": 1.8599789915966387e-05, + "loss": 0.4887456130981445, + "step": 29900 + }, + { + "epoch": 63.02523659305994, + "grad_norm": 0.6749327182769775, + "learning_rate": 1.8494747899159666e-05, + "loss": 0.48958889007568357, + "step": 30000 + }, + { + "epoch": 63.235541535226076, + "grad_norm": 0.7122695446014404, + "learning_rate": 1.8389705882352942e-05, + "loss": 0.46849212646484373, + "step": 30100 + }, + { + "epoch": 63.445846477392216, + "grad_norm": 0.6742300987243652, + "learning_rate": 1.8285714285714288e-05, + "loss": 0.4735026550292969, + "step": 30200 + }, + { + "epoch": 63.65615141955836, + "grad_norm": 0.7086833119392395, + "learning_rate": 1.8180672268907564e-05, + "loss": 0.47808189392089845, + "step": 30300 + }, + { + "epoch": 63.8664563617245, + "grad_norm": 0.673115611076355, + "learning_rate": 1.8075630252100843e-05, + "loss": 0.4810390853881836, + "step": 30400 + }, + { + "epoch": 64.07570977917982, + "grad_norm": 0.7166642546653748, + "learning_rate": 1.797058823529412e-05, + "loss": 0.47662986755371095, + "step": 30500 + }, + { + "epoch": 64.28601472134595, + "grad_norm": 0.7239866852760315, + "learning_rate": 1.7865546218487395e-05, + "loss": 0.46368907928466796, + "step": 30600 + }, + { + "epoch": 64.4963196635121, + "grad_norm": 0.6777023077011108, + "learning_rate": 1.776050420168067e-05, + "loss": 0.46869037628173826, + "step": 30700 + }, + { + "epoch": 64.70662460567823, + "grad_norm": 0.7028587460517883, + "learning_rate": 1.765546218487395e-05, + "loss": 0.47153076171875, + "step": 30800 + }, + { + "epoch": 64.91692954784438, + "grad_norm": 0.7220568656921387, + "learning_rate": 1.755042016806723e-05, + "loss": 0.4732553482055664, + "step": 30900 + }, + { + "epoch": 65.12618296529969, + "grad_norm": 0.6283636093139648, + "learning_rate": 1.7445378151260505e-05, + "loss": 0.4627264404296875, + "step": 31000 + }, + { + "epoch": 65.33648790746582, + "grad_norm": 0.6411524415016174, + "learning_rate": 1.7340336134453784e-05, + "loss": 0.45608016967773435, + "step": 31100 + }, + { + "epoch": 65.54679284963197, + "grad_norm": 0.668154776096344, + "learning_rate": 1.723529411764706e-05, + "loss": 0.46059967041015626, + "step": 31200 + }, + { + "epoch": 65.7570977917981, + "grad_norm": 0.7226248979568481, + "learning_rate": 1.713025210084034e-05, + "loss": 0.4659851455688477, + "step": 31300 + }, + { + "epoch": 65.96740273396425, + "grad_norm": 0.6833023428916931, + "learning_rate": 1.7025210084033612e-05, + "loss": 0.46931900024414064, + "step": 31400 + }, + { + "epoch": 66.17665615141956, + "grad_norm": 0.6941800117492676, + "learning_rate": 1.6921218487394958e-05, + "loss": 0.45006973266601563, + "step": 31500 + }, + { + "epoch": 66.3869610935857, + "grad_norm": 0.63517826795578, + "learning_rate": 1.6816176470588237e-05, + "loss": 0.44848171234130857, + "step": 31600 + }, + { + "epoch": 66.59726603575184, + "grad_norm": 0.6846080422401428, + "learning_rate": 1.6711134453781513e-05, + "loss": 0.45420032501220703, + "step": 31700 + }, + { + "epoch": 66.80757097791798, + "grad_norm": 0.6388368010520935, + "learning_rate": 1.6606092436974792e-05, + "loss": 0.4580923843383789, + "step": 31800 + }, + { + "epoch": 67.01682439537329, + "grad_norm": 0.6670629978179932, + "learning_rate": 1.6501050420168068e-05, + "loss": 0.4585027313232422, + "step": 31900 + }, + { + "epoch": 67.22712933753944, + "grad_norm": 0.6662338972091675, + "learning_rate": 1.6396008403361347e-05, + "loss": 0.44079010009765623, + "step": 32000 + }, + { + "epoch": 67.43743427970557, + "grad_norm": 0.6707865595817566, + "learning_rate": 1.6290966386554623e-05, + "loss": 0.44413238525390625, + "step": 32100 + }, + { + "epoch": 67.64773922187172, + "grad_norm": 0.656842052936554, + "learning_rate": 1.6185924369747902e-05, + "loss": 0.44844043731689454, + "step": 32200 + }, + { + "epoch": 67.85804416403785, + "grad_norm": 0.6646634340286255, + "learning_rate": 1.6080882352941175e-05, + "loss": 0.44970947265625, + "step": 32300 + }, + { + "epoch": 68.06729758149316, + "grad_norm": 0.6447365880012512, + "learning_rate": 1.5975840336134454e-05, + "loss": 0.4450407028198242, + "step": 32400 + }, + { + "epoch": 68.27760252365931, + "grad_norm": 0.6727699637413025, + "learning_rate": 1.587079831932773e-05, + "loss": 0.43177310943603514, + "step": 32500 + }, + { + "epoch": 68.48790746582544, + "grad_norm": 0.7130571603775024, + "learning_rate": 1.576575630252101e-05, + "loss": 0.4379489517211914, + "step": 32600 + }, + { + "epoch": 68.69821240799159, + "grad_norm": 0.7220073938369751, + "learning_rate": 1.566071428571429e-05, + "loss": 0.4425164794921875, + "step": 32700 + }, + { + "epoch": 68.90851735015772, + "grad_norm": 0.6695141196250916, + "learning_rate": 1.5555672268907564e-05, + "loss": 0.44274383544921875, + "step": 32800 + }, + { + "epoch": 69.11777076761304, + "grad_norm": 0.6740268468856812, + "learning_rate": 1.5450630252100843e-05, + "loss": 0.4357725143432617, + "step": 32900 + }, + { + "epoch": 69.32807570977918, + "grad_norm": 0.6566063165664673, + "learning_rate": 1.5345588235294116e-05, + "loss": 0.4283485412597656, + "step": 33000 + }, + { + "epoch": 69.53838065194532, + "grad_norm": 0.6752663850784302, + "learning_rate": 1.5240546218487395e-05, + "loss": 0.43225677490234377, + "step": 33100 + }, + { + "epoch": 69.74868559411146, + "grad_norm": 0.7038667798042297, + "learning_rate": 1.5135504201680673e-05, + "loss": 0.43592594146728514, + "step": 33200 + }, + { + "epoch": 69.9589905362776, + "grad_norm": 0.6961196660995483, + "learning_rate": 1.503046218487395e-05, + "loss": 0.438877067565918, + "step": 33300 + }, + { + "epoch": 70.16824395373291, + "grad_norm": 0.6535352468490601, + "learning_rate": 1.4925420168067228e-05, + "loss": 0.4252385330200195, + "step": 33400 + }, + { + "epoch": 70.37854889589906, + "grad_norm": 0.6601018905639648, + "learning_rate": 1.4820378151260505e-05, + "loss": 0.42285392761230467, + "step": 33500 + }, + { + "epoch": 70.58885383806519, + "grad_norm": 0.6948896050453186, + "learning_rate": 1.4715336134453783e-05, + "loss": 0.427175407409668, + "step": 33600 + }, + { + "epoch": 70.79915878023134, + "grad_norm": 0.6372560858726501, + "learning_rate": 1.461029411764706e-05, + "loss": 0.42832706451416014, + "step": 33700 + }, + { + "epoch": 71.00841219768665, + "grad_norm": 0.6517939567565918, + "learning_rate": 1.4505252100840336e-05, + "loss": 0.4324043273925781, + "step": 33800 + }, + { + "epoch": 71.21871713985279, + "grad_norm": 0.6330206990242004, + "learning_rate": 1.4400210084033614e-05, + "loss": 0.4146746826171875, + "step": 33900 + }, + { + "epoch": 71.42902208201893, + "grad_norm": 0.6658615469932556, + "learning_rate": 1.4295168067226892e-05, + "loss": 0.4180047225952148, + "step": 34000 + }, + { + "epoch": 71.63932702418506, + "grad_norm": 0.6433075070381165, + "learning_rate": 1.4190126050420169e-05, + "loss": 0.4219693374633789, + "step": 34100 + }, + { + "epoch": 71.84963196635121, + "grad_norm": 0.6470766663551331, + "learning_rate": 1.4085084033613447e-05, + "loss": 0.4214926528930664, + "step": 34200 + }, + { + "epoch": 72.05888538380653, + "grad_norm": 0.6315721273422241, + "learning_rate": 1.3981092436974791e-05, + "loss": 0.4204498291015625, + "step": 34300 + }, + { + "epoch": 72.26919032597266, + "grad_norm": 0.6722202897071838, + "learning_rate": 1.3876050420168068e-05, + "loss": 0.4105443572998047, + "step": 34400 + }, + { + "epoch": 72.4794952681388, + "grad_norm": 0.654528021812439, + "learning_rate": 1.3771008403361346e-05, + "loss": 0.41524337768554687, + "step": 34500 + }, + { + "epoch": 72.68980021030494, + "grad_norm": 0.6449755430221558, + "learning_rate": 1.3665966386554622e-05, + "loss": 0.4175481414794922, + "step": 34600 + }, + { + "epoch": 72.90010515247108, + "grad_norm": 0.6468359231948853, + "learning_rate": 1.35609243697479e-05, + "loss": 0.41863433837890623, + "step": 34700 + }, + { + "epoch": 73.1093585699264, + "grad_norm": 0.6471462845802307, + "learning_rate": 1.3455882352941177e-05, + "loss": 0.411123161315918, + "step": 34800 + }, + { + "epoch": 73.31966351209253, + "grad_norm": 0.6382157802581787, + "learning_rate": 1.3350840336134455e-05, + "loss": 0.40554931640625, + "step": 34900 + }, + { + "epoch": 73.52996845425868, + "grad_norm": 0.6727550029754639, + "learning_rate": 1.3245798319327732e-05, + "loss": 0.40884464263916015, + "step": 35000 + }, + { + "epoch": 73.74027339642481, + "grad_norm": 0.6494147181510925, + "learning_rate": 1.314075630252101e-05, + "loss": 0.4114807891845703, + "step": 35100 + }, + { + "epoch": 73.95057833859096, + "grad_norm": 0.6971067786216736, + "learning_rate": 1.3035714285714287e-05, + "loss": 0.4129951477050781, + "step": 35200 + }, + { + "epoch": 74.15983175604627, + "grad_norm": 0.630617082118988, + "learning_rate": 1.2930672268907565e-05, + "loss": 0.40283798217773437, + "step": 35300 + }, + { + "epoch": 74.3701366982124, + "grad_norm": 0.6068241000175476, + "learning_rate": 1.2825630252100839e-05, + "loss": 0.4017567825317383, + "step": 35400 + }, + { + "epoch": 74.58044164037855, + "grad_norm": 0.6767259836196899, + "learning_rate": 1.2720588235294118e-05, + "loss": 0.40448307037353515, + "step": 35500 + }, + { + "epoch": 74.79074658254468, + "grad_norm": 0.7011847496032715, + "learning_rate": 1.2615546218487396e-05, + "loss": 0.4047744369506836, + "step": 35600 + }, + { + "epoch": 75.0, + "grad_norm": 0.9920335412025452, + "learning_rate": 1.2510504201680673e-05, + "loss": 0.4085837936401367, + "step": 35700 + }, + { + "epoch": 75.21030494216615, + "grad_norm": 0.6520708203315735, + "learning_rate": 1.2405462184873951e-05, + "loss": 0.39399688720703124, + "step": 35800 + }, + { + "epoch": 75.42060988433228, + "grad_norm": 0.6656842827796936, + "learning_rate": 1.2300420168067227e-05, + "loss": 0.3963521957397461, + "step": 35900 + }, + { + "epoch": 75.63091482649843, + "grad_norm": 0.6576446294784546, + "learning_rate": 1.2195378151260504e-05, + "loss": 0.3992136383056641, + "step": 36000 + }, + { + "epoch": 75.84121976866456, + "grad_norm": 0.6238224506378174, + "learning_rate": 1.2090336134453782e-05, + "loss": 0.40125537872314454, + "step": 36100 + }, + { + "epoch": 76.05047318611987, + "grad_norm": 0.6389949917793274, + "learning_rate": 1.198529411764706e-05, + "loss": 0.3995349884033203, + "step": 36200 + }, + { + "epoch": 76.26077812828602, + "grad_norm": 0.6240091919898987, + "learning_rate": 1.1880252100840335e-05, + "loss": 0.3890629577636719, + "step": 36300 + }, + { + "epoch": 76.47108307045215, + "grad_norm": 0.6367642879486084, + "learning_rate": 1.1775210084033615e-05, + "loss": 0.39277313232421873, + "step": 36400 + }, + { + "epoch": 76.6813880126183, + "grad_norm": 0.6215347647666931, + "learning_rate": 1.1670168067226892e-05, + "loss": 0.3941745376586914, + "step": 36500 + }, + { + "epoch": 76.89169295478443, + "grad_norm": 0.6176421642303467, + "learning_rate": 1.156512605042017e-05, + "loss": 0.3961213302612305, + "step": 36600 + }, + { + "epoch": 77.10094637223975, + "grad_norm": 0.6433852314949036, + "learning_rate": 1.1460084033613446e-05, + "loss": 0.39362903594970705, + "step": 36700 + }, + { + "epoch": 77.3112513144059, + "grad_norm": 0.6288033127784729, + "learning_rate": 1.1355042016806723e-05, + "loss": 0.3870785140991211, + "step": 36800 + }, + { + "epoch": 77.52155625657203, + "grad_norm": 0.6061193943023682, + "learning_rate": 1.125e-05, + "loss": 0.38955581665039063, + "step": 36900 + }, + { + "epoch": 77.73186119873817, + "grad_norm": 0.6680556535720825, + "learning_rate": 1.1144957983193278e-05, + "loss": 0.390676383972168, + "step": 37000 + }, + { + "epoch": 77.9421661409043, + "grad_norm": 0.623725950717926, + "learning_rate": 1.1039915966386554e-05, + "loss": 0.3921066665649414, + "step": 37100 + }, + { + "epoch": 78.15141955835962, + "grad_norm": 0.6346238255500793, + "learning_rate": 1.0935924369747898e-05, + "loss": 0.3845651626586914, + "step": 37200 + }, + { + "epoch": 78.36172450052577, + "grad_norm": 0.6062731146812439, + "learning_rate": 1.0830882352941178e-05, + "loss": 0.380772705078125, + "step": 37300 + }, + { + "epoch": 78.5720294426919, + "grad_norm": 0.6125079989433289, + "learning_rate": 1.0725840336134455e-05, + "loss": 0.3834884262084961, + "step": 37400 + }, + { + "epoch": 78.78233438485805, + "grad_norm": 0.6804420948028564, + "learning_rate": 1.0620798319327733e-05, + "loss": 0.3863555526733398, + "step": 37500 + }, + { + "epoch": 78.99263932702418, + "grad_norm": 0.6568316221237183, + "learning_rate": 1.0515756302521009e-05, + "loss": 0.3898443603515625, + "step": 37600 + }, + { + "epoch": 79.2018927444795, + "grad_norm": 0.6262179017066956, + "learning_rate": 1.0410714285714286e-05, + "loss": 0.37717395782470703, + "step": 37700 + }, + { + "epoch": 79.41219768664564, + "grad_norm": 0.6335896849632263, + "learning_rate": 1.0305672268907564e-05, + "loss": 0.37976459503173826, + "step": 37800 + }, + { + "epoch": 79.62250262881177, + "grad_norm": 0.675938069820404, + "learning_rate": 1.0200630252100841e-05, + "loss": 0.38054397583007815, + "step": 37900 + }, + { + "epoch": 79.83280757097792, + "grad_norm": 0.650644838809967, + "learning_rate": 1.0095588235294117e-05, + "loss": 0.3817191696166992, + "step": 38000 + }, + { + "epoch": 80.04206098843324, + "grad_norm": 0.5988778471946716, + "learning_rate": 9.990546218487395e-06, + "loss": 0.3799977493286133, + "step": 38100 + }, + { + "epoch": 80.25236593059937, + "grad_norm": 0.6436987519264221, + "learning_rate": 9.885504201680674e-06, + "loss": 0.37264183044433596, + "step": 38200 + }, + { + "epoch": 80.46267087276551, + "grad_norm": 0.610487699508667, + "learning_rate": 9.78046218487395e-06, + "loss": 0.3753046417236328, + "step": 38300 + }, + { + "epoch": 80.67297581493165, + "grad_norm": 0.6378571391105652, + "learning_rate": 9.675420168067227e-06, + "loss": 0.3749809646606445, + "step": 38400 + }, + { + "epoch": 80.8832807570978, + "grad_norm": 0.6599664688110352, + "learning_rate": 9.570378151260505e-06, + "loss": 0.37958168029785155, + "step": 38500 + }, + { + "epoch": 81.09253417455311, + "grad_norm": 0.6057779788970947, + "learning_rate": 9.465336134453782e-06, + "loss": 0.3755946731567383, + "step": 38600 + }, + { + "epoch": 81.30283911671924, + "grad_norm": 0.6186268925666809, + "learning_rate": 9.360294117647058e-06, + "loss": 0.3689208221435547, + "step": 38700 + }, + { + "epoch": 81.51314405888539, + "grad_norm": 0.6031709909439087, + "learning_rate": 9.255252100840336e-06, + "loss": 0.37045917510986326, + "step": 38800 + }, + { + "epoch": 81.72344900105152, + "grad_norm": 0.6903654336929321, + "learning_rate": 9.150210084033613e-06, + "loss": 0.37341190338134767, + "step": 38900 + }, + { + "epoch": 81.93375394321767, + "grad_norm": 0.6498835682868958, + "learning_rate": 9.045168067226891e-06, + "loss": 0.3741530227661133, + "step": 39000 + }, + { + "epoch": 82.14300736067298, + "grad_norm": 0.6078621745109558, + "learning_rate": 8.940126050420169e-06, + "loss": 0.36713558197021484, + "step": 39100 + }, + { + "epoch": 82.35331230283911, + "grad_norm": 0.6294094324111938, + "learning_rate": 8.835084033613446e-06, + "loss": 0.3661073303222656, + "step": 39200 + }, + { + "epoch": 82.56361724500526, + "grad_norm": 0.6120302081108093, + "learning_rate": 8.730042016806724e-06, + "loss": 0.3683062744140625, + "step": 39300 + }, + { + "epoch": 82.7739221871714, + "grad_norm": 0.6194695830345154, + "learning_rate": 8.625e-06, + "loss": 0.3718934631347656, + "step": 39400 + }, + { + "epoch": 82.98422712933754, + "grad_norm": 0.6603109240531921, + "learning_rate": 8.519957983193277e-06, + "loss": 0.37141822814941405, + "step": 39500 + }, + { + "epoch": 83.19348054679286, + "grad_norm": 0.6176982522010803, + "learning_rate": 8.414915966386555e-06, + "loss": 0.36253021240234373, + "step": 39600 + }, + { + "epoch": 83.40378548895899, + "grad_norm": 0.6788721084594727, + "learning_rate": 8.309873949579832e-06, + "loss": 0.36460174560546876, + "step": 39700 + }, + { + "epoch": 83.61409043112513, + "grad_norm": 0.6141113638877869, + "learning_rate": 8.20483193277311e-06, + "loss": 0.36554264068603515, + "step": 39800 + }, + { + "epoch": 83.82439537329127, + "grad_norm": 0.6193323135375977, + "learning_rate": 8.099789915966387e-06, + "loss": 0.36707286834716796, + "step": 39900 + }, + { + "epoch": 84.03364879074658, + "grad_norm": 0.6383187770843506, + "learning_rate": 7.994747899159665e-06, + "loss": 0.3661843872070312, + "step": 40000 + }, + { + "epoch": 84.24395373291273, + "grad_norm": 0.5923520922660828, + "learning_rate": 7.889705882352943e-06, + "loss": 0.35978816986083983, + "step": 40100 + }, + { + "epoch": 84.45425867507886, + "grad_norm": 0.641968846321106, + "learning_rate": 7.784663865546218e-06, + "loss": 0.35977176666259764, + "step": 40200 + }, + { + "epoch": 84.66456361724501, + "grad_norm": 0.6307324767112732, + "learning_rate": 7.679621848739496e-06, + "loss": 0.36135292053222656, + "step": 40300 + }, + { + "epoch": 84.87486855941114, + "grad_norm": 0.6303888559341431, + "learning_rate": 7.5745798319327735e-06, + "loss": 0.36290821075439456, + "step": 40400 + }, + { + "epoch": 85.08412197686646, + "grad_norm": 0.5610889792442322, + "learning_rate": 7.469537815126051e-06, + "loss": 0.36016101837158204, + "step": 40500 + }, + { + "epoch": 85.2944269190326, + "grad_norm": 0.5796296000480652, + "learning_rate": 7.364495798319328e-06, + "loss": 0.35660606384277344, + "step": 40600 + }, + { + "epoch": 85.50473186119874, + "grad_norm": 0.6147542595863342, + "learning_rate": 7.259453781512605e-06, + "loss": 0.35944347381591796, + "step": 40700 + }, + { + "epoch": 85.71503680336488, + "grad_norm": 0.6097769737243652, + "learning_rate": 7.154411764705883e-06, + "loss": 0.3589036560058594, + "step": 40800 + }, + { + "epoch": 85.92534174553101, + "grad_norm": 0.6288202404975891, + "learning_rate": 7.04936974789916e-06, + "loss": 0.3591917419433594, + "step": 40900 + }, + { + "epoch": 86.13459516298633, + "grad_norm": 0.6195931434631348, + "learning_rate": 6.944327731092437e-06, + "loss": 0.3569915771484375, + "step": 41000 + }, + { + "epoch": 86.34490010515248, + "grad_norm": 0.5890372395515442, + "learning_rate": 6.839285714285715e-06, + "loss": 0.3543994903564453, + "step": 41100 + }, + { + "epoch": 86.55520504731861, + "grad_norm": 0.6272594332695007, + "learning_rate": 6.735294117647059e-06, + "loss": 0.3553640365600586, + "step": 41200 + }, + { + "epoch": 86.76550998948476, + "grad_norm": 0.6778700351715088, + "learning_rate": 6.6302521008403365e-06, + "loss": 0.3564106750488281, + "step": 41300 + }, + { + "epoch": 86.97581493165089, + "grad_norm": 0.6336688995361328, + "learning_rate": 6.525210084033614e-06, + "loss": 0.35713409423828124, + "step": 41400 + }, + { + "epoch": 87.1850683491062, + "grad_norm": 0.6053069829940796, + "learning_rate": 6.421218487394959e-06, + "loss": 0.3506643295288086, + "step": 41500 + }, + { + "epoch": 87.39537329127235, + "grad_norm": 0.6175255179405212, + "learning_rate": 6.316176470588235e-06, + "loss": 0.35214996337890625, + "step": 41600 + }, + { + "epoch": 87.60567823343848, + "grad_norm": 0.5915444493293762, + "learning_rate": 6.2111344537815125e-06, + "loss": 0.3522480392456055, + "step": 41700 + }, + { + "epoch": 87.81598317560463, + "grad_norm": 0.5907636880874634, + "learning_rate": 6.10609243697479e-06, + "loss": 0.3520878601074219, + "step": 41800 + }, + { + "epoch": 88.02523659305994, + "grad_norm": 0.6209415197372437, + "learning_rate": 6.001050420168068e-06, + "loss": 0.3545633316040039, + "step": 41900 + }, + { + "epoch": 88.23554153522608, + "grad_norm": 0.5926827788352966, + "learning_rate": 5.896008403361345e-06, + "loss": 0.34920032501220705, + "step": 42000 + }, + { + "epoch": 88.44584647739222, + "grad_norm": 0.638471245765686, + "learning_rate": 5.790966386554622e-06, + "loss": 0.34805423736572266, + "step": 42100 + }, + { + "epoch": 88.65615141955836, + "grad_norm": 0.6181325316429138, + "learning_rate": 5.6859243697478994e-06, + "loss": 0.3501460647583008, + "step": 42200 + }, + { + "epoch": 88.8664563617245, + "grad_norm": 0.6029173135757446, + "learning_rate": 5.580882352941177e-06, + "loss": 0.35028797149658203, + "step": 42300 + }, + { + "epoch": 89.07570977917982, + "grad_norm": 0.5673274397850037, + "learning_rate": 5.475840336134454e-06, + "loss": 0.34918766021728515, + "step": 42400 + }, + { + "epoch": 89.28601472134595, + "grad_norm": 0.5657567977905273, + "learning_rate": 5.370798319327731e-06, + "loss": 0.34565746307373046, + "step": 42500 + }, + { + "epoch": 89.4963196635121, + "grad_norm": 0.6014168858528137, + "learning_rate": 5.265756302521008e-06, + "loss": 0.3450989532470703, + "step": 42600 + }, + { + "epoch": 89.70662460567823, + "grad_norm": 0.5631797909736633, + "learning_rate": 5.160714285714286e-06, + "loss": 0.3477408218383789, + "step": 42700 + }, + { + "epoch": 89.91692954784438, + "grad_norm": 0.624321699142456, + "learning_rate": 5.055672268907563e-06, + "loss": 0.34852649688720705, + "step": 42800 + }, + { + "epoch": 90.12618296529969, + "grad_norm": 0.6004353761672974, + "learning_rate": 4.950630252100841e-06, + "loss": 0.3450387191772461, + "step": 42900 + }, + { + "epoch": 90.33648790746582, + "grad_norm": 0.6030150651931763, + "learning_rate": 4.845588235294117e-06, + "loss": 0.34261096954345704, + "step": 43000 + }, + { + "epoch": 90.54679284963197, + "grad_norm": 0.5574061870574951, + "learning_rate": 4.740546218487396e-06, + "loss": 0.3450190734863281, + "step": 43100 + }, + { + "epoch": 90.7570977917981, + "grad_norm": 0.5677763819694519, + "learning_rate": 4.6355042016806725e-06, + "loss": 0.3442384338378906, + "step": 43200 + }, + { + "epoch": 90.96740273396425, + "grad_norm": 0.6088888645172119, + "learning_rate": 4.53046218487395e-06, + "loss": 0.3451253128051758, + "step": 43300 + }, + { + "epoch": 91.17665615141956, + "grad_norm": 0.5724344849586487, + "learning_rate": 4.425420168067227e-06, + "loss": 0.3408164978027344, + "step": 43400 + }, + { + "epoch": 91.3869610935857, + "grad_norm": 0.6201240420341492, + "learning_rate": 4.320378151260504e-06, + "loss": 0.3420841979980469, + "step": 43500 + }, + { + "epoch": 91.59726603575184, + "grad_norm": 0.6098768711090088, + "learning_rate": 4.215336134453782e-06, + "loss": 0.3413374328613281, + "step": 43600 + }, + { + "epoch": 91.80757097791798, + "grad_norm": 0.6306800842285156, + "learning_rate": 4.110294117647059e-06, + "loss": 0.34394527435302735, + "step": 43700 + }, + { + "epoch": 92.01682439537329, + "grad_norm": 0.559008777141571, + "learning_rate": 4.005252100840336e-06, + "loss": 0.3423053741455078, + "step": 43800 + }, + { + "epoch": 92.22712933753944, + "grad_norm": 0.5939933657646179, + "learning_rate": 3.900210084033614e-06, + "loss": 0.33797637939453123, + "step": 43900 + }, + { + "epoch": 92.43743427970557, + "grad_norm": 0.6135221719741821, + "learning_rate": 3.795168067226891e-06, + "loss": 0.3408375930786133, + "step": 44000 + }, + { + "epoch": 92.64773922187172, + "grad_norm": 0.5870836973190308, + "learning_rate": 3.690126050420168e-06, + "loss": 0.34073463439941404, + "step": 44100 + }, + { + "epoch": 92.85804416403785, + "grad_norm": 0.5811474323272705, + "learning_rate": 3.5850840336134456e-06, + "loss": 0.34040855407714843, + "step": 44200 + }, + { + "epoch": 93.06729758149316, + "grad_norm": 0.5979830026626587, + "learning_rate": 3.4800420168067227e-06, + "loss": 0.3395253753662109, + "step": 44300 + }, + { + "epoch": 93.27760252365931, + "grad_norm": 0.5824161171913147, + "learning_rate": 3.3750000000000003e-06, + "loss": 0.3389311981201172, + "step": 44400 + }, + { + "epoch": 93.48790746582544, + "grad_norm": 0.5694940090179443, + "learning_rate": 3.2699579831932774e-06, + "loss": 0.337044792175293, + "step": 44500 + }, + { + "epoch": 93.69821240799159, + "grad_norm": 0.6112421154975891, + "learning_rate": 3.164915966386555e-06, + "loss": 0.33819969177246095, + "step": 44600 + }, + { + "epoch": 93.90851735015772, + "grad_norm": 0.610955536365509, + "learning_rate": 3.059873949579832e-06, + "loss": 0.33944580078125, + "step": 44700 + }, + { + "epoch": 94.11777076761304, + "grad_norm": 0.6398776769638062, + "learning_rate": 2.9548319327731093e-06, + "loss": 0.33618770599365233, + "step": 44800 + }, + { + "epoch": 94.32807570977918, + "grad_norm": 0.5934144854545593, + "learning_rate": 2.849789915966387e-06, + "loss": 0.3384376525878906, + "step": 44900 + }, + { + "epoch": 94.53838065194532, + "grad_norm": 0.6144473552703857, + "learning_rate": 2.744747899159664e-06, + "loss": 0.3383865737915039, + "step": 45000 + }, + { + "epoch": 94.74868559411146, + "grad_norm": 0.5490454435348511, + "learning_rate": 2.6397058823529415e-06, + "loss": 0.33671878814697265, + "step": 45100 + }, + { + "epoch": 94.9589905362776, + "grad_norm": 0.5695416331291199, + "learning_rate": 2.5346638655462187e-06, + "loss": 0.3379853820800781, + "step": 45200 + }, + { + "epoch": 95.16824395373291, + "grad_norm": 0.5724055767059326, + "learning_rate": 2.429621848739496e-06, + "loss": 0.3338408660888672, + "step": 45300 + }, + { + "epoch": 95.37854889589906, + "grad_norm": 0.594022810459137, + "learning_rate": 2.3245798319327734e-06, + "loss": 0.3349121475219727, + "step": 45400 + }, + { + "epoch": 95.58885383806519, + "grad_norm": 0.5594576597213745, + "learning_rate": 2.2205882352941175e-06, + "loss": 0.33595680236816405, + "step": 45500 + }, + { + "epoch": 95.79915878023134, + "grad_norm": 0.5346081852912903, + "learning_rate": 2.115546218487395e-06, + "loss": 0.33520328521728515, + "step": 45600 + }, + { + "epoch": 96.00841219768665, + "grad_norm": 0.5849393606185913, + "learning_rate": 2.0105042016806722e-06, + "loss": 0.3334170913696289, + "step": 45700 + }, + { + "epoch": 96.21871713985279, + "grad_norm": 0.5918118357658386, + "learning_rate": 1.9054621848739498e-06, + "loss": 0.3329995346069336, + "step": 45800 + }, + { + "epoch": 96.42902208201893, + "grad_norm": 0.6012352705001831, + "learning_rate": 1.800420168067227e-06, + "loss": 0.3329520416259766, + "step": 45900 + }, + { + "epoch": 96.63932702418506, + "grad_norm": 0.5281354784965515, + "learning_rate": 1.6953781512605043e-06, + "loss": 0.3343208694458008, + "step": 46000 + }, + { + "epoch": 96.84963196635121, + "grad_norm": 0.5566437244415283, + "learning_rate": 1.5903361344537816e-06, + "loss": 0.33319324493408203, + "step": 46100 + }, + { + "epoch": 97.05888538380653, + "grad_norm": 0.62099689245224, + "learning_rate": 1.486344537815126e-06, + "loss": 0.33431713104248045, + "step": 46200 + }, + { + "epoch": 97.26919032597266, + "grad_norm": 0.5787718892097473, + "learning_rate": 1.3813025210084034e-06, + "loss": 0.3314530944824219, + "step": 46300 + }, + { + "epoch": 97.4794952681388, + "grad_norm": 0.5509923100471497, + "learning_rate": 1.2762605042016807e-06, + "loss": 0.3316763305664063, + "step": 46400 + }, + { + "epoch": 97.68980021030494, + "grad_norm": 0.5569334030151367, + "learning_rate": 1.171218487394958e-06, + "loss": 0.3315643310546875, + "step": 46500 + }, + { + "epoch": 97.90010515247108, + "grad_norm": 0.5476507544517517, + "learning_rate": 1.0661764705882354e-06, + "loss": 0.33233203887939455, + "step": 46600 + }, + { + "epoch": 98.1093585699264, + "grad_norm": 0.5630120038986206, + "learning_rate": 9.611344537815128e-07, + "loss": 0.33105762481689455, + "step": 46700 + }, + { + "epoch": 98.31966351209253, + "grad_norm": 0.5520943999290466, + "learning_rate": 8.5609243697479e-07, + "loss": 0.3307930374145508, + "step": 46800 + }, + { + "epoch": 98.52996845425868, + "grad_norm": 0.5917891263961792, + "learning_rate": 7.510504201680673e-07, + "loss": 0.3318499755859375, + "step": 46900 + }, + { + "epoch": 98.74027339642481, + "grad_norm": 0.5395123362541199, + "learning_rate": 6.460084033613445e-07, + "loss": 0.330290412902832, + "step": 47000 + }, + { + "epoch": 98.95057833859096, + "grad_norm": 0.5702670216560364, + "learning_rate": 5.409663865546218e-07, + "loss": 0.33196086883544923, + "step": 47100 + }, + { + "epoch": 99.15983175604627, + "grad_norm": 0.5607645511627197, + "learning_rate": 4.359243697478992e-07, + "loss": 0.3293312454223633, + "step": 47200 + }, + { + "epoch": 99.3701366982124, + "grad_norm": 0.6061931848526001, + "learning_rate": 3.308823529411765e-07, + "loss": 0.3300600051879883, + "step": 47300 + }, + { + "epoch": 99.58044164037855, + "grad_norm": 0.5829928517341614, + "learning_rate": 2.2584033613445382e-07, + "loss": 0.330217170715332, + "step": 47400 + }, + { + "epoch": 99.79074658254468, + "grad_norm": 0.5840853452682495, + "learning_rate": 1.2079831932773112e-07, + "loss": 0.33082305908203125, + "step": 47500 + } + ], + "logging_steps": 100, + "max_steps": 47600, + "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": 3.0607199784198144e+16, + "train_batch_size": 8, + "trial_name": null, + "trial_params": null +} diff --git a/timecost/n11/realtabformer/rtf-n11-20260430_214424/rtf_checkpoints/checkpoint-47500/training_args.bin b/timecost/n11/realtabformer/rtf-n11-20260430_214424/rtf_checkpoints/checkpoint-47500/training_args.bin new file mode 100644 index 0000000000000000000000000000000000000000..34d68dc0e0fe1c1f12a2e581dd1b166aa7178a9e --- /dev/null +++ b/timecost/n11/realtabformer/rtf-n11-20260430_214424/rtf_checkpoints/checkpoint-47500/training_args.bin @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:9e2cd88337d1d846c6918d2b3b63fa3e5c93f12fefc082497590da854a564607 +size 5201 diff --git a/timecost/n11/realtabformer/rtf-n11-20260430_214424/rtf_checkpoints/checkpoint-47600/config.json b/timecost/n11/realtabformer/rtf-n11-20260430_214424/rtf_checkpoints/checkpoint-47600/config.json new file mode 100644 index 0000000000000000000000000000000000000000..605aa5aa48fc96b6c3133032a3e66cd18090e70a --- /dev/null +++ b/timecost/n11/realtabformer/rtf-n11-20260430_214424/rtf_checkpoints/checkpoint-47600/config.json @@ -0,0 +1,34 @@ +{ + "activation_function": "gelu_new", + "add_cross_attention": false, + "architectures": [ + "GPT2LMHeadModel" + ], + "attn_pdrop": 0.1, + "bos_token_id": 5, + "dtype": "float32", + "embd_pdrop": 0.1, + "eos_token_id": 6, + "initializer_range": 0.02, + "layer_norm_epsilon": 1e-05, + "model_type": "gpt2", + "n_embd": 768, + "n_head": 12, + "n_inner": null, + "n_layer": 6, + "n_positions": 1024, + "pad_token_id": null, + "reorder_and_upcast_attn": false, + "resid_pdrop": 0.1, + "scale_attn_by_inverse_layer_idx": false, + "scale_attn_weights": true, + "summary_activation": null, + "summary_first_dropout": 0.1, + "summary_proj_to_labels": true, + "summary_type": "cls_index", + "summary_use_proj": true, + "tie_word_embeddings": true, + "transformers_version": "5.5.3", + "use_cache": false, + "vocab_size": 597 +} diff --git a/timecost/n11/realtabformer/rtf-n11-20260430_214424/rtf_checkpoints/checkpoint-47600/generation_config.json b/timecost/n11/realtabformer/rtf-n11-20260430_214424/rtf_checkpoints/checkpoint-47600/generation_config.json new file mode 100644 index 0000000000000000000000000000000000000000..ffe89567780e75b5c22eade9be971483b9618f39 --- /dev/null +++ b/timecost/n11/realtabformer/rtf-n11-20260430_214424/rtf_checkpoints/checkpoint-47600/generation_config.json @@ -0,0 +1,9 @@ +{ + "_from_model_config": true, + "bos_token_id": 5, + "eos_token_id": 6, + "output_attentions": false, + "output_hidden_states": false, + "transformers_version": "5.5.3", + "use_cache": true +} diff --git a/timecost/n11/realtabformer/rtf-n11-20260430_214424/rtf_checkpoints/checkpoint-47600/model.safetensors b/timecost/n11/realtabformer/rtf-n11-20260430_214424/rtf_checkpoints/checkpoint-47600/model.safetensors new file mode 100644 index 0000000000000000000000000000000000000000..e23ff3d88e24d3df4827f4591e9431158c7ded17 --- /dev/null +++ b/timecost/n11/realtabformer/rtf-n11-20260430_214424/rtf_checkpoints/checkpoint-47600/model.safetensors @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:7762d8878b3a1ed4f9c4042cc5ff712597a4a411c843645be85d335c24d536e3 +size 175102408 diff --git a/timecost/n11/realtabformer/rtf-n11-20260430_214424/rtf_checkpoints/checkpoint-47600/optimizer.pt b/timecost/n11/realtabformer/rtf-n11-20260430_214424/rtf_checkpoints/checkpoint-47600/optimizer.pt new file mode 100644 index 0000000000000000000000000000000000000000..32fbe0b1ca37fc27d989673382bc4bc3ec9d4fa6 --- /dev/null +++ b/timecost/n11/realtabformer/rtf-n11-20260430_214424/rtf_checkpoints/checkpoint-47600/optimizer.pt @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:8d0c69608a12f8364d32c8a3b8dea4cd14f7e6d7f5c6efd959e9d70518990937 +size 350253899 diff --git a/timecost/n11/realtabformer/rtf-n11-20260430_214424/rtf_checkpoints/checkpoint-47600/rng_state.pth b/timecost/n11/realtabformer/rtf-n11-20260430_214424/rtf_checkpoints/checkpoint-47600/rng_state.pth new file mode 100644 index 0000000000000000000000000000000000000000..733a3500e7e6a7ff6b6983f3e7bbe619524e72dd --- /dev/null +++ b/timecost/n11/realtabformer/rtf-n11-20260430_214424/rtf_checkpoints/checkpoint-47600/rng_state.pth @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:6f8a4af40a8aeaacaa7b995915be2516daf145a4542efcd79ab7e0afc937d303 +size 14645 diff --git a/timecost/n11/realtabformer/rtf-n11-20260430_214424/rtf_checkpoints/checkpoint-47600/scaler.pt b/timecost/n11/realtabformer/rtf-n11-20260430_214424/rtf_checkpoints/checkpoint-47600/scaler.pt new file mode 100644 index 0000000000000000000000000000000000000000..4b52d207000e8bd6f5576e8e9e7a1d0e187a821c --- /dev/null +++ b/timecost/n11/realtabformer/rtf-n11-20260430_214424/rtf_checkpoints/checkpoint-47600/scaler.pt @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:cec17f8827b333498675d81a32d73ee7a195c880a9f4bebf775b5872f8d59193 +size 1383 diff --git a/timecost/n11/realtabformer/rtf-n11-20260430_214424/rtf_checkpoints/checkpoint-47600/scheduler.pt b/timecost/n11/realtabformer/rtf-n11-20260430_214424/rtf_checkpoints/checkpoint-47600/scheduler.pt new file mode 100644 index 0000000000000000000000000000000000000000..b6983b5c54efab09eaa0fbda2be5f235d71c8ada --- /dev/null +++ b/timecost/n11/realtabformer/rtf-n11-20260430_214424/rtf_checkpoints/checkpoint-47600/scheduler.pt @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:06343a3d318d4ae32c05f73e6212e78fc7f5edd2171a68bfa1fc3889a71c3fc5 +size 1465 diff --git a/timecost/n11/realtabformer/rtf-n11-20260430_214424/rtf_checkpoints/checkpoint-47600/trainer_state.json b/timecost/n11/realtabformer/rtf-n11-20260430_214424/rtf_checkpoints/checkpoint-47600/trainer_state.json new file mode 100644 index 0000000000000000000000000000000000000000..39f3dc81a00db1e0049624b9b1493027bbad723d --- /dev/null +++ b/timecost/n11/realtabformer/rtf-n11-20260430_214424/rtf_checkpoints/checkpoint-47600/trainer_state.json @@ -0,0 +1,3366 @@ +{ + "best_global_step": null, + "best_metric": null, + "best_model_checkpoint": null, + "epoch": 100.0, + "eval_steps": 100, + "global_step": 47600, + "is_hyper_param_search": false, + "is_local_process_zero": true, + "is_world_process_zero": true, + "log_history": [ + { + "epoch": 0.2103049421661409, + "grad_norm": 0.22972723841667175, + "learning_rate": 4.989600840336135e-05, + "loss": 2.8563604736328125, + "step": 100 + }, + { + "epoch": 0.4206098843322818, + "grad_norm": 0.20056591928005219, + "learning_rate": 4.9790966386554624e-05, + "loss": 1.7068206787109375, + "step": 200 + }, + { + "epoch": 0.6309148264984227, + "grad_norm": 0.1861766129732132, + "learning_rate": 4.9685924369747897e-05, + "loss": 1.6134432983398437, + "step": 300 + }, + { + "epoch": 0.8412197686645636, + "grad_norm": 0.1723501980304718, + "learning_rate": 4.9580882352941176e-05, + "loss": 1.5735923767089843, + "step": 400 + }, + { + "epoch": 1.0504731861198737, + "grad_norm": 0.17238108813762665, + "learning_rate": 4.9475840336134455e-05, + "loss": 1.5529734802246093, + "step": 500 + }, + { + "epoch": 1.2607781282860147, + "grad_norm": 0.17322759330272675, + "learning_rate": 4.9370798319327734e-05, + "loss": 1.536485137939453, + "step": 600 + }, + { + "epoch": 1.4710830704521556, + "grad_norm": 0.1677761971950531, + "learning_rate": 4.926575630252101e-05, + "loss": 1.5277809143066405, + "step": 700 + }, + { + "epoch": 1.6813880126182965, + "grad_norm": 0.1636463701725006, + "learning_rate": 4.9160714285714286e-05, + "loss": 1.5190211486816407, + "step": 800 + }, + { + "epoch": 1.8916929547844374, + "grad_norm": 0.16561312973499298, + "learning_rate": 4.9055672268907565e-05, + "loss": 1.51519287109375, + "step": 900 + }, + { + "epoch": 2.1009463722397475, + "grad_norm": 0.15477420389652252, + "learning_rate": 4.8950630252100845e-05, + "loss": 1.5094300842285155, + "step": 1000 + }, + { + "epoch": 2.3112513144058884, + "grad_norm": 0.16169467568397522, + "learning_rate": 4.8845588235294124e-05, + "loss": 1.503891143798828, + "step": 1100 + }, + { + "epoch": 2.5215562565720293, + "grad_norm": 0.1625037044286728, + "learning_rate": 4.8740546218487396e-05, + "loss": 1.5003668212890624, + "step": 1200 + }, + { + "epoch": 2.7318611987381702, + "grad_norm": 0.15850616991519928, + "learning_rate": 4.8635504201680676e-05, + "loss": 1.5004425048828125, + "step": 1300 + }, + { + "epoch": 2.942166140904311, + "grad_norm": 0.15703575313091278, + "learning_rate": 4.8530462184873955e-05, + "loss": 1.4983340454101564, + "step": 1400 + }, + { + "epoch": 3.1514195583596214, + "grad_norm": 0.16104279458522797, + "learning_rate": 4.8425420168067234e-05, + "loss": 1.4921080017089843, + "step": 1500 + }, + { + "epoch": 3.3617245005257623, + "grad_norm": 0.15719465911388397, + "learning_rate": 4.8320378151260507e-05, + "loss": 1.4903582763671874, + "step": 1600 + }, + { + "epoch": 3.5720294426919033, + "grad_norm": 0.15651755034923553, + "learning_rate": 4.821533613445378e-05, + "loss": 1.4904457092285157, + "step": 1700 + }, + { + "epoch": 3.782334384858044, + "grad_norm": 0.14600972831249237, + "learning_rate": 4.811029411764706e-05, + "loss": 1.4897219848632812, + "step": 1800 + }, + { + "epoch": 3.992639327024185, + "grad_norm": 0.15000982582569122, + "learning_rate": 4.800525210084034e-05, + "loss": 1.4866799926757812, + "step": 1900 + }, + { + "epoch": 4.201892744479495, + "grad_norm": 0.1467936933040619, + "learning_rate": 4.790021008403362e-05, + "loss": 1.48007080078125, + "step": 2000 + }, + { + "epoch": 4.412197686645636, + "grad_norm": 0.1541317105293274, + "learning_rate": 4.779516806722689e-05, + "loss": 1.48170166015625, + "step": 2100 + }, + { + "epoch": 4.622502628811777, + "grad_norm": 0.15136213600635529, + "learning_rate": 4.769012605042017e-05, + "loss": 1.4820193481445312, + "step": 2200 + }, + { + "epoch": 4.832807570977918, + "grad_norm": 0.15268521010875702, + "learning_rate": 4.758508403361345e-05, + "loss": 1.4826155090332032, + "step": 2300 + }, + { + "epoch": 5.042060988433228, + "grad_norm": 0.1507953554391861, + "learning_rate": 4.748004201680673e-05, + "loss": 1.4825518798828126, + "step": 2400 + }, + { + "epoch": 5.252365930599369, + "grad_norm": 0.15759222209453583, + "learning_rate": 4.7375e-05, + "loss": 1.4742916870117186, + "step": 2500 + }, + { + "epoch": 5.46267087276551, + "grad_norm": 0.1464644968509674, + "learning_rate": 4.726995798319328e-05, + "loss": 1.47645751953125, + "step": 2600 + }, + { + "epoch": 5.672975814931651, + "grad_norm": 0.1496453732252121, + "learning_rate": 4.716491596638656e-05, + "loss": 1.4782669067382812, + "step": 2700 + }, + { + "epoch": 5.883280757097792, + "grad_norm": 0.15732301771640778, + "learning_rate": 4.705987394957984e-05, + "loss": 1.474007110595703, + "step": 2800 + }, + { + "epoch": 6.092534174553102, + "grad_norm": 0.1535627543926239, + "learning_rate": 4.6954831932773117e-05, + "loss": 1.4723405456542968, + "step": 2900 + }, + { + "epoch": 6.302839116719243, + "grad_norm": 0.15365540981292725, + "learning_rate": 4.684978991596639e-05, + "loss": 1.470570068359375, + "step": 3000 + }, + { + "epoch": 6.513144058885384, + "grad_norm": 0.15696321427822113, + "learning_rate": 4.674474789915967e-05, + "loss": 1.4713912963867188, + "step": 3100 + }, + { + "epoch": 6.723449001051525, + "grad_norm": 0.1542283147573471, + "learning_rate": 4.663970588235294e-05, + "loss": 1.4717630004882813, + "step": 3200 + }, + { + "epoch": 6.933753943217665, + "grad_norm": 0.14150017499923706, + "learning_rate": 4.653466386554622e-05, + "loss": 1.4702410888671875, + "step": 3300 + }, + { + "epoch": 7.143007360672976, + "grad_norm": 0.1593707650899887, + "learning_rate": 4.64296218487395e-05, + "loss": 1.4674795532226563, + "step": 3400 + }, + { + "epoch": 7.353312302839116, + "grad_norm": 0.14085018634796143, + "learning_rate": 4.632457983193277e-05, + "loss": 1.4630509948730468, + "step": 3500 + }, + { + "epoch": 7.563617245005258, + "grad_norm": 0.15045367181301117, + "learning_rate": 4.621953781512605e-05, + "loss": 1.464947509765625, + "step": 3600 + }, + { + "epoch": 7.773922187171398, + "grad_norm": 0.1627761274576187, + "learning_rate": 4.611449579831933e-05, + "loss": 1.4676199340820313, + "step": 3700 + }, + { + "epoch": 7.9842271293375395, + "grad_norm": 0.15296733379364014, + "learning_rate": 4.600945378151261e-05, + "loss": 1.464564208984375, + "step": 3800 + }, + { + "epoch": 8.19348054679285, + "grad_norm": 0.15292306244373322, + "learning_rate": 4.590441176470588e-05, + "loss": 1.460281982421875, + "step": 3900 + }, + { + "epoch": 8.40378548895899, + "grad_norm": 0.14858974516391754, + "learning_rate": 4.579936974789916e-05, + "loss": 1.4601573181152343, + "step": 4000 + }, + { + "epoch": 8.614090431125131, + "grad_norm": 0.1559685617685318, + "learning_rate": 4.569432773109244e-05, + "loss": 1.459988555908203, + "step": 4100 + }, + { + "epoch": 8.824395373291273, + "grad_norm": 0.16048291325569153, + "learning_rate": 4.558928571428572e-05, + "loss": 1.4614971923828124, + "step": 4200 + }, + { + "epoch": 9.033648790746582, + "grad_norm": 0.15471497178077698, + "learning_rate": 4.548424369747899e-05, + "loss": 1.4605735778808593, + "step": 4300 + }, + { + "epoch": 9.243953732912724, + "grad_norm": 0.14675338566303253, + "learning_rate": 4.537920168067227e-05, + "loss": 1.4529206848144531, + "step": 4400 + }, + { + "epoch": 9.454258675078865, + "grad_norm": 0.15218420326709747, + "learning_rate": 4.527415966386555e-05, + "loss": 1.4555152893066405, + "step": 4500 + }, + { + "epoch": 9.664563617245005, + "grad_norm": 0.15305759012699127, + "learning_rate": 4.516911764705883e-05, + "loss": 1.4550628662109375, + "step": 4600 + }, + { + "epoch": 9.874868559411146, + "grad_norm": 0.14932408928871155, + "learning_rate": 4.50640756302521e-05, + "loss": 1.4576924133300782, + "step": 4700 + }, + { + "epoch": 10.084121976866456, + "grad_norm": 0.15317517518997192, + "learning_rate": 4.4959033613445375e-05, + "loss": 1.45219482421875, + "step": 4800 + }, + { + "epoch": 10.294426919032597, + "grad_norm": 0.14954303205013275, + "learning_rate": 4.4853991596638654e-05, + "loss": 1.4481625366210937, + "step": 4900 + }, + { + "epoch": 10.504731861198739, + "grad_norm": 0.1534873992204666, + "learning_rate": 4.4748949579831934e-05, + "loss": 1.4501405334472657, + "step": 5000 + }, + { + "epoch": 10.715036803364878, + "grad_norm": 0.1542547196149826, + "learning_rate": 4.464390756302521e-05, + "loss": 1.452711181640625, + "step": 5100 + }, + { + "epoch": 10.92534174553102, + "grad_norm": 0.15033429861068726, + "learning_rate": 4.453886554621849e-05, + "loss": 1.4518144226074219, + "step": 5200 + }, + { + "epoch": 11.13459516298633, + "grad_norm": 0.16419348120689392, + "learning_rate": 4.4433823529411765e-05, + "loss": 1.4447087097167968, + "step": 5300 + }, + { + "epoch": 11.34490010515247, + "grad_norm": 0.15558737516403198, + "learning_rate": 4.4328781512605044e-05, + "loss": 1.4432438659667968, + "step": 5400 + }, + { + "epoch": 11.555205047318612, + "grad_norm": 0.16111871600151062, + "learning_rate": 4.422373949579832e-05, + "loss": 1.44447509765625, + "step": 5500 + }, + { + "epoch": 11.765509989484753, + "grad_norm": 0.15655963122844696, + "learning_rate": 4.41186974789916e-05, + "loss": 1.446072998046875, + "step": 5600 + }, + { + "epoch": 11.975814931650893, + "grad_norm": 0.1640811264514923, + "learning_rate": 4.4013655462184875e-05, + "loss": 1.4470193481445313, + "step": 5700 + }, + { + "epoch": 12.185068349106205, + "grad_norm": 0.16302675008773804, + "learning_rate": 4.3908613445378154e-05, + "loss": 1.4352632141113282, + "step": 5800 + }, + { + "epoch": 12.395373291272344, + "grad_norm": 0.16527259349822998, + "learning_rate": 4.380357142857143e-05, + "loss": 1.4378224182128907, + "step": 5900 + }, + { + "epoch": 12.605678233438486, + "grad_norm": 0.15840137004852295, + "learning_rate": 4.369852941176471e-05, + "loss": 1.438340301513672, + "step": 6000 + }, + { + "epoch": 12.815983175604627, + "grad_norm": 0.16105377674102783, + "learning_rate": 4.3593487394957985e-05, + "loss": 1.4395623779296876, + "step": 6100 + }, + { + "epoch": 13.025236593059937, + "grad_norm": 0.1645898073911667, + "learning_rate": 4.348844537815126e-05, + "loss": 1.4419912719726562, + "step": 6200 + }, + { + "epoch": 13.235541535226078, + "grad_norm": 0.16387709975242615, + "learning_rate": 4.338340336134454e-05, + "loss": 1.4292103576660156, + "step": 6300 + }, + { + "epoch": 13.44584647739222, + "grad_norm": 0.16231203079223633, + "learning_rate": 4.3278361344537816e-05, + "loss": 1.4302072143554687, + "step": 6400 + }, + { + "epoch": 13.656151419558359, + "grad_norm": 0.17272767424583435, + "learning_rate": 4.3173319327731095e-05, + "loss": 1.4360617065429688, + "step": 6500 + }, + { + "epoch": 13.8664563617245, + "grad_norm": 0.16650696098804474, + "learning_rate": 4.306827731092437e-05, + "loss": 1.43187744140625, + "step": 6600 + }, + { + "epoch": 14.07570977917981, + "grad_norm": 0.17131085693836212, + "learning_rate": 4.296323529411765e-05, + "loss": 1.428362579345703, + "step": 6700 + }, + { + "epoch": 14.286014721345952, + "grad_norm": 0.1767681986093521, + "learning_rate": 4.2858193277310926e-05, + "loss": 1.4247616577148436, + "step": 6800 + }, + { + "epoch": 14.496319663512093, + "grad_norm": 0.17670001089572906, + "learning_rate": 4.2753151260504206e-05, + "loss": 1.4254454040527345, + "step": 6900 + }, + { + "epoch": 14.706624605678233, + "grad_norm": 0.1740790754556656, + "learning_rate": 4.2648109243697485e-05, + "loss": 1.4258729553222655, + "step": 7000 + }, + { + "epoch": 14.916929547844374, + "grad_norm": 0.1759176403284073, + "learning_rate": 4.254306722689076e-05, + "loss": 1.429442138671875, + "step": 7100 + }, + { + "epoch": 15.126182965299684, + "grad_norm": 0.17811505496501923, + "learning_rate": 4.2438025210084037e-05, + "loss": 1.4193470764160157, + "step": 7200 + }, + { + "epoch": 15.336487907465825, + "grad_norm": 0.1877354234457016, + "learning_rate": 4.2332983193277316e-05, + "loss": 1.4145277404785157, + "step": 7300 + }, + { + "epoch": 15.546792849631967, + "grad_norm": 0.18199266493320465, + "learning_rate": 4.2227941176470595e-05, + "loss": 1.4196495056152343, + "step": 7400 + }, + { + "epoch": 15.757097791798108, + "grad_norm": 0.18197669088840485, + "learning_rate": 4.212289915966387e-05, + "loss": 1.418301544189453, + "step": 7500 + }, + { + "epoch": 15.967402733964247, + "grad_norm": 0.1789412796497345, + "learning_rate": 4.201785714285714e-05, + "loss": 1.4207553100585937, + "step": 7600 + }, + { + "epoch": 16.176656151419557, + "grad_norm": 0.19073587656021118, + "learning_rate": 4.191281512605042e-05, + "loss": 1.405756072998047, + "step": 7700 + }, + { + "epoch": 16.3869610935857, + "grad_norm": 0.20197375118732452, + "learning_rate": 4.18077731092437e-05, + "loss": 1.4052299499511718, + "step": 7800 + }, + { + "epoch": 16.59726603575184, + "grad_norm": 0.19041137397289276, + "learning_rate": 4.170273109243698e-05, + "loss": 1.4102354431152344, + "step": 7900 + }, + { + "epoch": 16.80757097791798, + "grad_norm": 0.18918046355247498, + "learning_rate": 4.159768907563025e-05, + "loss": 1.4105937194824218, + "step": 8000 + }, + { + "epoch": 17.01682439537329, + "grad_norm": 0.20001663267612457, + "learning_rate": 4.149264705882353e-05, + "loss": 1.4125469970703124, + "step": 8100 + }, + { + "epoch": 17.22712933753943, + "grad_norm": 0.20373570919036865, + "learning_rate": 4.138760504201681e-05, + "loss": 1.3912005615234375, + "step": 8200 + }, + { + "epoch": 17.437434279705574, + "grad_norm": 0.21228203177452087, + "learning_rate": 4.128256302521009e-05, + "loss": 1.400099334716797, + "step": 8300 + }, + { + "epoch": 17.647739221871714, + "grad_norm": 0.19748076796531677, + "learning_rate": 4.117752100840336e-05, + "loss": 1.3983584594726564, + "step": 8400 + }, + { + "epoch": 17.858044164037857, + "grad_norm": 0.19849108159542084, + "learning_rate": 4.107247899159664e-05, + "loss": 1.4034251403808593, + "step": 8500 + }, + { + "epoch": 18.067297581493165, + "grad_norm": 0.20575450360774994, + "learning_rate": 4.096743697478992e-05, + "loss": 1.3967425537109375, + "step": 8600 + }, + { + "epoch": 18.277602523659304, + "grad_norm": 0.21221311390399933, + "learning_rate": 4.08623949579832e-05, + "loss": 1.3828977966308593, + "step": 8700 + }, + { + "epoch": 18.487907465825447, + "grad_norm": 0.21134966611862183, + "learning_rate": 4.075735294117648e-05, + "loss": 1.3854733276367188, + "step": 8800 + }, + { + "epoch": 18.698212407991587, + "grad_norm": 0.22016377747058868, + "learning_rate": 4.065231092436975e-05, + "loss": 1.3901968383789063, + "step": 8900 + }, + { + "epoch": 18.90851735015773, + "grad_norm": 0.21417804062366486, + "learning_rate": 4.054726890756303e-05, + "loss": 1.393634033203125, + "step": 9000 + }, + { + "epoch": 19.117770767613038, + "grad_norm": 0.22256560623645782, + "learning_rate": 4.04422268907563e-05, + "loss": 1.3783042907714844, + "step": 9100 + }, + { + "epoch": 19.32807570977918, + "grad_norm": 0.22738981246948242, + "learning_rate": 4.033718487394958e-05, + "loss": 1.370293426513672, + "step": 9200 + }, + { + "epoch": 19.53838065194532, + "grad_norm": 0.22241266071796417, + "learning_rate": 4.023214285714286e-05, + "loss": 1.3737275695800781, + "step": 9300 + }, + { + "epoch": 19.74868559411146, + "grad_norm": 0.23391330242156982, + "learning_rate": 4.012710084033613e-05, + "loss": 1.377355194091797, + "step": 9400 + }, + { + "epoch": 19.958990536277604, + "grad_norm": 0.22519543766975403, + "learning_rate": 4.002205882352941e-05, + "loss": 1.3812960815429687, + "step": 9500 + }, + { + "epoch": 20.16824395373291, + "grad_norm": 0.24074196815490723, + "learning_rate": 3.991701680672269e-05, + "loss": 1.3570118713378907, + "step": 9600 + }, + { + "epoch": 20.378548895899055, + "grad_norm": 0.24606694281101227, + "learning_rate": 3.981197478991597e-05, + "loss": 1.3554267883300781, + "step": 9700 + }, + { + "epoch": 20.588853838065194, + "grad_norm": 0.23913830518722534, + "learning_rate": 3.970693277310924e-05, + "loss": 1.3621504211425781, + "step": 9800 + }, + { + "epoch": 20.799158780231334, + "grad_norm": 0.2383037805557251, + "learning_rate": 3.960189075630252e-05, + "loss": 1.3660731506347656, + "step": 9900 + }, + { + "epoch": 21.008412197686646, + "grad_norm": 0.241073340177536, + "learning_rate": 3.94968487394958e-05, + "loss": 1.3653842163085939, + "step": 10000 + }, + { + "epoch": 21.218717139852785, + "grad_norm": 0.25740981101989746, + "learning_rate": 3.939180672268908e-05, + "loss": 1.3331489562988281, + "step": 10100 + }, + { + "epoch": 21.42902208201893, + "grad_norm": 0.25830078125, + "learning_rate": 3.928676470588235e-05, + "loss": 1.3397677612304688, + "step": 10200 + }, + { + "epoch": 21.639327024185068, + "grad_norm": 0.26326829195022583, + "learning_rate": 3.918172268907563e-05, + "loss": 1.3485836791992187, + "step": 10300 + }, + { + "epoch": 21.84963196635121, + "grad_norm": 0.26259171962738037, + "learning_rate": 3.907668067226891e-05, + "loss": 1.3472573852539063, + "step": 10400 + }, + { + "epoch": 22.05888538380652, + "grad_norm": 0.27395525574684143, + "learning_rate": 3.897163865546219e-05, + "loss": 1.3426994323730468, + "step": 10500 + }, + { + "epoch": 22.26919032597266, + "grad_norm": 0.2820175290107727, + "learning_rate": 3.8866596638655463e-05, + "loss": 1.3179571533203125, + "step": 10600 + }, + { + "epoch": 22.479495268138802, + "grad_norm": 0.2815999984741211, + "learning_rate": 3.8761554621848736e-05, + "loss": 1.3242898559570313, + "step": 10700 + }, + { + "epoch": 22.68980021030494, + "grad_norm": 0.2788920998573303, + "learning_rate": 3.8656512605042015e-05, + "loss": 1.328133087158203, + "step": 10800 + }, + { + "epoch": 22.900105152471085, + "grad_norm": 0.2880179286003113, + "learning_rate": 3.8551470588235294e-05, + "loss": 1.3323233032226562, + "step": 10900 + }, + { + "epoch": 23.109358569926393, + "grad_norm": 0.29323825240135193, + "learning_rate": 3.8446428571428574e-05, + "loss": 1.3124215698242188, + "step": 11000 + }, + { + "epoch": 23.319663512092536, + "grad_norm": 0.3037724196910858, + "learning_rate": 3.834138655462185e-05, + "loss": 1.300673370361328, + "step": 11100 + }, + { + "epoch": 23.529968454258675, + "grad_norm": 0.3019108772277832, + "learning_rate": 3.8236344537815125e-05, + "loss": 1.3033621215820312, + "step": 11200 + }, + { + "epoch": 23.740273396424815, + "grad_norm": 0.3141040503978729, + "learning_rate": 3.8131302521008405e-05, + "loss": 1.3118415832519532, + "step": 11300 + }, + { + "epoch": 23.950578338590958, + "grad_norm": 0.305362731218338, + "learning_rate": 3.8026260504201684e-05, + "loss": 1.3120425415039063, + "step": 11400 + }, + { + "epoch": 24.159831756046266, + "grad_norm": 0.3149303197860718, + "learning_rate": 3.792121848739496e-05, + "loss": 1.281750946044922, + "step": 11500 + }, + { + "epoch": 24.37013669821241, + "grad_norm": 0.31983524560928345, + "learning_rate": 3.7816176470588236e-05, + "loss": 1.2786111450195312, + "step": 11600 + }, + { + "epoch": 24.58044164037855, + "grad_norm": 0.32351240515708923, + "learning_rate": 3.7711134453781515e-05, + "loss": 1.284888916015625, + "step": 11700 + }, + { + "epoch": 24.79074658254469, + "grad_norm": 0.3239966034889221, + "learning_rate": 3.7606092436974794e-05, + "loss": 1.2899176025390624, + "step": 11800 + }, + { + "epoch": 25.0, + "grad_norm": 0.49487531185150146, + "learning_rate": 3.7501050420168073e-05, + "loss": 1.2903105163574218, + "step": 11900 + }, + { + "epoch": 25.21030494216614, + "grad_norm": 0.343091756105423, + "learning_rate": 3.7396008403361346e-05, + "loss": 1.24728271484375, + "step": 12000 + }, + { + "epoch": 25.420609884332283, + "grad_norm": 0.3502146899700165, + "learning_rate": 3.729096638655462e-05, + "loss": 1.2573788452148438, + "step": 12100 + }, + { + "epoch": 25.630914826498422, + "grad_norm": 0.34780803322792053, + "learning_rate": 3.71859243697479e-05, + "loss": 1.259660186767578, + "step": 12200 + }, + { + "epoch": 25.841219768664562, + "grad_norm": 0.3617474436759949, + "learning_rate": 3.708088235294118e-05, + "loss": 1.267321548461914, + "step": 12300 + }, + { + "epoch": 26.050473186119874, + "grad_norm": 0.36151477694511414, + "learning_rate": 3.6975840336134456e-05, + "loss": 1.2569818878173828, + "step": 12400 + }, + { + "epoch": 26.260778128286013, + "grad_norm": 0.3706369400024414, + "learning_rate": 3.687079831932773e-05, + "loss": 1.2217762756347657, + "step": 12500 + }, + { + "epoch": 26.471083070452156, + "grad_norm": 0.36876797676086426, + "learning_rate": 3.676575630252101e-05, + "loss": 1.2311412048339845, + "step": 12600 + }, + { + "epoch": 26.681388012618296, + "grad_norm": 0.37329521775245667, + "learning_rate": 3.666071428571429e-05, + "loss": 1.23805908203125, + "step": 12700 + }, + { + "epoch": 26.89169295478444, + "grad_norm": 0.3803170919418335, + "learning_rate": 3.6555672268907566e-05, + "loss": 1.2423350524902343, + "step": 12800 + }, + { + "epoch": 27.100946372239747, + "grad_norm": 0.3833712637424469, + "learning_rate": 3.6450630252100846e-05, + "loss": 1.222099609375, + "step": 12900 + }, + { + "epoch": 27.31125131440589, + "grad_norm": 0.3987831771373749, + "learning_rate": 3.634558823529412e-05, + "loss": 1.1973797607421874, + "step": 13000 + }, + { + "epoch": 27.52155625657203, + "grad_norm": 0.39121338725090027, + "learning_rate": 3.62405462184874e-05, + "loss": 1.206004409790039, + "step": 13100 + }, + { + "epoch": 27.73186119873817, + "grad_norm": 0.4020472764968872, + "learning_rate": 3.613550420168068e-05, + "loss": 1.2129373168945312, + "step": 13200 + }, + { + "epoch": 27.942166140904312, + "grad_norm": 0.4015159606933594, + "learning_rate": 3.6030462184873956e-05, + "loss": 1.2179686737060547, + "step": 13300 + }, + { + "epoch": 28.15141955835962, + "grad_norm": 0.3998790681362152, + "learning_rate": 3.592542016806723e-05, + "loss": 1.1833483123779296, + "step": 13400 + }, + { + "epoch": 28.361724500525764, + "grad_norm": 0.4190026819705963, + "learning_rate": 3.582037815126051e-05, + "loss": 1.1737586975097656, + "step": 13500 + }, + { + "epoch": 28.572029442691903, + "grad_norm": 0.4131736159324646, + "learning_rate": 3.571533613445378e-05, + "loss": 1.1806912231445312, + "step": 13600 + }, + { + "epoch": 28.782334384858043, + "grad_norm": 0.4250866174697876, + "learning_rate": 3.561029411764706e-05, + "loss": 1.1913446044921876, + "step": 13700 + }, + { + "epoch": 28.992639327024186, + "grad_norm": 0.4264129400253296, + "learning_rate": 3.550525210084034e-05, + "loss": 1.1878318786621094, + "step": 13800 + }, + { + "epoch": 29.201892744479494, + "grad_norm": 0.43633338809013367, + "learning_rate": 3.540021008403361e-05, + "loss": 1.1386358642578125, + "step": 13900 + }, + { + "epoch": 29.412197686645637, + "grad_norm": 0.4486881494522095, + "learning_rate": 3.529516806722689e-05, + "loss": 1.1477174377441406, + "step": 14000 + }, + { + "epoch": 29.622502628811777, + "grad_norm": 0.4420314133167267, + "learning_rate": 3.519012605042017e-05, + "loss": 1.1530896759033202, + "step": 14100 + }, + { + "epoch": 29.832807570977916, + "grad_norm": 0.4598003327846527, + "learning_rate": 3.508508403361345e-05, + "loss": 1.16252197265625, + "step": 14200 + }, + { + "epoch": 30.042060988433228, + "grad_norm": 0.44520533084869385, + "learning_rate": 3.498004201680672e-05, + "loss": 1.1551103973388672, + "step": 14300 + }, + { + "epoch": 30.252365930599368, + "grad_norm": 0.45871588587760925, + "learning_rate": 3.4875e-05, + "loss": 1.107753448486328, + "step": 14400 + }, + { + "epoch": 30.46267087276551, + "grad_norm": 0.46063199639320374, + "learning_rate": 3.476995798319328e-05, + "loss": 1.1182296752929688, + "step": 14500 + }, + { + "epoch": 30.67297581493165, + "grad_norm": 0.4760204553604126, + "learning_rate": 3.466491596638656e-05, + "loss": 1.129236373901367, + "step": 14600 + }, + { + "epoch": 30.883280757097793, + "grad_norm": 0.47249314188957214, + "learning_rate": 3.455987394957984e-05, + "loss": 1.1352229309082031, + "step": 14700 + }, + { + "epoch": 31.0925341745531, + "grad_norm": 0.4624006450176239, + "learning_rate": 3.445483193277311e-05, + "loss": 1.1082867431640624, + "step": 14800 + }, + { + "epoch": 31.302839116719245, + "grad_norm": 0.4787958264350891, + "learning_rate": 3.434978991596639e-05, + "loss": 1.0818411254882812, + "step": 14900 + }, + { + "epoch": 31.513144058885384, + "grad_norm": 0.4875246286392212, + "learning_rate": 3.424474789915967e-05, + "loss": 1.092553939819336, + "step": 15000 + }, + { + "epoch": 31.723449001051524, + "grad_norm": 0.48742467164993286, + "learning_rate": 3.413970588235294e-05, + "loss": 1.1002989959716798, + "step": 15100 + }, + { + "epoch": 31.933753943217667, + "grad_norm": 0.5014126896858215, + "learning_rate": 3.403466386554622e-05, + "loss": 1.1067331695556641, + "step": 15200 + }, + { + "epoch": 32.143007360672975, + "grad_norm": 0.48793110251426697, + "learning_rate": 3.3929621848739494e-05, + "loss": 1.0649752807617188, + "step": 15300 + }, + { + "epoch": 32.353312302839115, + "grad_norm": 0.5064884424209595, + "learning_rate": 3.382457983193277e-05, + "loss": 1.0489683532714844, + "step": 15400 + }, + { + "epoch": 32.56361724500526, + "grad_norm": 0.5118729472160339, + "learning_rate": 3.371953781512605e-05, + "loss": 1.0648185729980468, + "step": 15500 + }, + { + "epoch": 32.7739221871714, + "grad_norm": 0.5236688852310181, + "learning_rate": 3.361449579831933e-05, + "loss": 1.0743647766113282, + "step": 15600 + }, + { + "epoch": 32.98422712933754, + "grad_norm": 0.5397860407829285, + "learning_rate": 3.3509453781512604e-05, + "loss": 1.080048828125, + "step": 15700 + }, + { + "epoch": 33.19348054679285, + "grad_norm": 0.5270755290985107, + "learning_rate": 3.340441176470588e-05, + "loss": 1.0228548431396485, + "step": 15800 + }, + { + "epoch": 33.40378548895899, + "grad_norm": 0.5429406762123108, + "learning_rate": 3.329936974789916e-05, + "loss": 1.028949966430664, + "step": 15900 + }, + { + "epoch": 33.614090431125135, + "grad_norm": 0.5323997735977173, + "learning_rate": 3.319432773109244e-05, + "loss": 1.037523956298828, + "step": 16000 + }, + { + "epoch": 33.824395373291274, + "grad_norm": 0.5385149717330933, + "learning_rate": 3.3090336134453784e-05, + "loss": 1.0431160736083984, + "step": 16100 + }, + { + "epoch": 34.03364879074658, + "grad_norm": 0.5089665651321411, + "learning_rate": 3.2986344537815127e-05, + "loss": 1.0349723815917968, + "step": 16200 + }, + { + "epoch": 34.24395373291272, + "grad_norm": 0.5455434918403625, + "learning_rate": 3.2881302521008406e-05, + "loss": 0.988803482055664, + "step": 16300 + }, + { + "epoch": 34.45425867507886, + "grad_norm": 0.5569856762886047, + "learning_rate": 3.2776260504201685e-05, + "loss": 1.0031266021728515, + "step": 16400 + }, + { + "epoch": 34.66456361724501, + "grad_norm": 0.5644022226333618, + "learning_rate": 3.2671218487394964e-05, + "loss": 1.0083402252197267, + "step": 16500 + }, + { + "epoch": 34.87486855941115, + "grad_norm": 0.5685406923294067, + "learning_rate": 3.256617647058824e-05, + "loss": 1.0177439117431641, + "step": 16600 + }, + { + "epoch": 35.084121976866456, + "grad_norm": 0.543632447719574, + "learning_rate": 3.2461134453781516e-05, + "loss": 0.9930455780029297, + "step": 16700 + }, + { + "epoch": 35.294426919032595, + "grad_norm": 0.5612316727638245, + "learning_rate": 3.2356092436974795e-05, + "loss": 0.9650897216796875, + "step": 16800 + }, + { + "epoch": 35.504731861198735, + "grad_norm": 0.5759446024894714, + "learning_rate": 3.225105042016807e-05, + "loss": 0.973653564453125, + "step": 16900 + }, + { + "epoch": 35.71503680336488, + "grad_norm": 0.574255645275116, + "learning_rate": 3.214600840336135e-05, + "loss": 0.981424560546875, + "step": 17000 + }, + { + "epoch": 35.92534174553102, + "grad_norm": 0.5851606726646423, + "learning_rate": 3.204096638655462e-05, + "loss": 0.991123046875, + "step": 17100 + }, + { + "epoch": 36.13459516298633, + "grad_norm": 0.5589666366577148, + "learning_rate": 3.19359243697479e-05, + "loss": 0.9481909942626953, + "step": 17200 + }, + { + "epoch": 36.34490010515247, + "grad_norm": 0.5968824625015259, + "learning_rate": 3.183088235294118e-05, + "loss": 0.9365898895263672, + "step": 17300 + }, + { + "epoch": 36.55520504731861, + "grad_norm": 0.5998508930206299, + "learning_rate": 3.172584033613446e-05, + "loss": 0.9492893218994141, + "step": 17400 + }, + { + "epoch": 36.765509989484755, + "grad_norm": 0.6060558557510376, + "learning_rate": 3.162079831932773e-05, + "loss": 0.9547823333740234, + "step": 17500 + }, + { + "epoch": 36.975814931650895, + "grad_norm": 0.589341402053833, + "learning_rate": 3.151575630252101e-05, + "loss": 0.9626276397705078, + "step": 17600 + }, + { + "epoch": 37.1850683491062, + "grad_norm": 0.5891321897506714, + "learning_rate": 3.141071428571429e-05, + "loss": 0.9065424346923828, + "step": 17700 + }, + { + "epoch": 37.39537329127234, + "grad_norm": 0.5880729556083679, + "learning_rate": 3.130567226890757e-05, + "loss": 0.9107749938964844, + "step": 17800 + }, + { + "epoch": 37.60567823343849, + "grad_norm": 0.6077774167060852, + "learning_rate": 3.120063025210084e-05, + "loss": 0.9193459320068359, + "step": 17900 + }, + { + "epoch": 37.81598317560463, + "grad_norm": 0.6189863681793213, + "learning_rate": 3.109558823529412e-05, + "loss": 0.9286084747314454, + "step": 18000 + }, + { + "epoch": 38.02523659305994, + "grad_norm": 0.5724475383758545, + "learning_rate": 3.09905462184874e-05, + "loss": 0.9282203674316406, + "step": 18100 + }, + { + "epoch": 38.235541535226076, + "grad_norm": 0.5952550768852234, + "learning_rate": 3.088550420168068e-05, + "loss": 0.8734053039550781, + "step": 18200 + }, + { + "epoch": 38.445846477392216, + "grad_norm": 0.5967536568641663, + "learning_rate": 3.078046218487395e-05, + "loss": 0.886033935546875, + "step": 18300 + }, + { + "epoch": 38.65615141955836, + "grad_norm": 0.6298649311065674, + "learning_rate": 3.067542016806722e-05, + "loss": 0.8977913665771484, + "step": 18400 + }, + { + "epoch": 38.8664563617245, + "grad_norm": 0.6457948684692383, + "learning_rate": 3.05703781512605e-05, + "loss": 0.9048082733154297, + "step": 18500 + }, + { + "epoch": 39.07570977917981, + "grad_norm": 0.6172012090682983, + "learning_rate": 3.046533613445378e-05, + "loss": 0.8857656860351563, + "step": 18600 + }, + { + "epoch": 39.28601472134595, + "grad_norm": 0.5979504585266113, + "learning_rate": 3.036029411764706e-05, + "loss": 0.8502845001220704, + "step": 18700 + }, + { + "epoch": 39.49631966351209, + "grad_norm": 0.6284430623054504, + "learning_rate": 3.0255252100840336e-05, + "loss": 0.8602873229980469, + "step": 18800 + }, + { + "epoch": 39.706624605678236, + "grad_norm": 0.6330845355987549, + "learning_rate": 3.0150210084033616e-05, + "loss": 0.8690576934814453, + "step": 18900 + }, + { + "epoch": 39.916929547844376, + "grad_norm": 0.6465399861335754, + "learning_rate": 3.004516806722689e-05, + "loss": 0.8787310791015625, + "step": 19000 + }, + { + "epoch": 40.126182965299684, + "grad_norm": 0.6255329251289368, + "learning_rate": 2.994117647058824e-05, + "loss": 0.84158203125, + "step": 19100 + }, + { + "epoch": 40.33648790746582, + "grad_norm": 0.6304967999458313, + "learning_rate": 2.983613445378151e-05, + "loss": 0.8283135223388672, + "step": 19200 + }, + { + "epoch": 40.54679284963196, + "grad_norm": 0.6366279125213623, + "learning_rate": 2.973109243697479e-05, + "loss": 0.8385968780517579, + "step": 19300 + }, + { + "epoch": 40.75709779179811, + "grad_norm": 0.6407002210617065, + "learning_rate": 2.9626050420168065e-05, + "loss": 0.8465004730224609, + "step": 19400 + }, + { + "epoch": 40.96740273396425, + "grad_norm": 0.6582015156745911, + "learning_rate": 2.9521008403361344e-05, + "loss": 0.8523696136474609, + "step": 19500 + }, + { + "epoch": 41.17665615141956, + "grad_norm": 0.6326037645339966, + "learning_rate": 2.9415966386554624e-05, + "loss": 0.8025535583496094, + "step": 19600 + }, + { + "epoch": 41.3869610935857, + "grad_norm": 0.631605863571167, + "learning_rate": 2.93109243697479e-05, + "loss": 0.8077165222167969, + "step": 19700 + }, + { + "epoch": 41.597266035751844, + "grad_norm": 0.6400684118270874, + "learning_rate": 2.920588235294118e-05, + "loss": 0.8162235260009766, + "step": 19800 + }, + { + "epoch": 41.80757097791798, + "grad_norm": 0.6499695181846619, + "learning_rate": 2.9100840336134455e-05, + "loss": 0.8243218231201171, + "step": 19900 + }, + { + "epoch": 42.01682439537329, + "grad_norm": 0.6392955183982849, + "learning_rate": 2.8995798319327734e-05, + "loss": 0.8244134521484375, + "step": 20000 + }, + { + "epoch": 42.22712933753943, + "grad_norm": 0.6429536938667297, + "learning_rate": 2.889075630252101e-05, + "loss": 0.7711881256103515, + "step": 20100 + }, + { + "epoch": 42.43743427970557, + "grad_norm": 0.6592206358909607, + "learning_rate": 2.878571428571429e-05, + "loss": 0.7841451263427734, + "step": 20200 + }, + { + "epoch": 42.64773922187172, + "grad_norm": 0.6881083846092224, + "learning_rate": 2.8680672268907565e-05, + "loss": 0.792880859375, + "step": 20300 + }, + { + "epoch": 42.85804416403786, + "grad_norm": 0.6662302017211914, + "learning_rate": 2.8575630252100844e-05, + "loss": 0.8001659393310547, + "step": 20400 + }, + { + "epoch": 43.067297581493165, + "grad_norm": 0.6177626252174377, + "learning_rate": 2.847058823529412e-05, + "loss": 0.7870485687255859, + "step": 20500 + }, + { + "epoch": 43.277602523659304, + "grad_norm": 0.6681060194969177, + "learning_rate": 2.83655462184874e-05, + "loss": 0.7512457275390625, + "step": 20600 + }, + { + "epoch": 43.487907465825444, + "grad_norm": 0.669675886631012, + "learning_rate": 2.826050420168067e-05, + "loss": 0.7591960144042968, + "step": 20700 + }, + { + "epoch": 43.69821240799159, + "grad_norm": 0.7097092866897583, + "learning_rate": 2.8155462184873948e-05, + "loss": 0.7737602233886719, + "step": 20800 + }, + { + "epoch": 43.90851735015773, + "grad_norm": 0.6951079964637756, + "learning_rate": 2.8050420168067227e-05, + "loss": 0.7815242767333984, + "step": 20900 + }, + { + "epoch": 44.11777076761304, + "grad_norm": 0.639824390411377, + "learning_rate": 2.7945378151260503e-05, + "loss": 0.7512903594970703, + "step": 21000 + }, + { + "epoch": 44.32807570977918, + "grad_norm": 0.67326819896698, + "learning_rate": 2.7840336134453782e-05, + "loss": 0.7329978179931641, + "step": 21100 + }, + { + "epoch": 44.53838065194532, + "grad_norm": 0.6938571333885193, + "learning_rate": 2.7735294117647058e-05, + "loss": 0.7421668243408203, + "step": 21200 + }, + { + "epoch": 44.748685594111464, + "grad_norm": 0.6845099925994873, + "learning_rate": 2.7630252100840337e-05, + "loss": 0.7509217071533203, + "step": 21300 + }, + { + "epoch": 44.958990536277604, + "grad_norm": 0.681825578212738, + "learning_rate": 2.7525210084033616e-05, + "loss": 0.7620004272460937, + "step": 21400 + }, + { + "epoch": 45.16824395373291, + "grad_norm": 0.6556856036186218, + "learning_rate": 2.7421218487394962e-05, + "loss": 0.7184288787841797, + "step": 21500 + }, + { + "epoch": 45.37854889589905, + "grad_norm": 0.6386471390724182, + "learning_rate": 2.7316176470588235e-05, + "loss": 0.7161962127685547, + "step": 21600 + }, + { + "epoch": 45.5888538380652, + "grad_norm": 0.6947113275527954, + "learning_rate": 2.721113445378151e-05, + "loss": 0.7244486999511719, + "step": 21700 + }, + { + "epoch": 45.79915878023134, + "grad_norm": 0.6741232872009277, + "learning_rate": 2.710609243697479e-05, + "loss": 0.7308968353271484, + "step": 21800 + }, + { + "epoch": 46.008412197686646, + "grad_norm": 0.6631771326065063, + "learning_rate": 2.7001050420168066e-05, + "loss": 0.7323504638671875, + "step": 21900 + }, + { + "epoch": 46.218717139852785, + "grad_norm": 0.6702309250831604, + "learning_rate": 2.6896008403361345e-05, + "loss": 0.6865713500976562, + "step": 22000 + }, + { + "epoch": 46.429022082018925, + "grad_norm": 0.6711138486862183, + "learning_rate": 2.679096638655462e-05, + "loss": 0.697294921875, + "step": 22100 + }, + { + "epoch": 46.63932702418507, + "grad_norm": 0.7067892551422119, + "learning_rate": 2.66859243697479e-05, + "loss": 0.70609619140625, + "step": 22200 + }, + { + "epoch": 46.84963196635121, + "grad_norm": 0.6743476390838623, + "learning_rate": 2.658088235294118e-05, + "loss": 0.7116059112548828, + "step": 22300 + }, + { + "epoch": 47.05888538380652, + "grad_norm": 0.642842710018158, + "learning_rate": 2.6475840336134455e-05, + "loss": 0.7024728393554688, + "step": 22400 + }, + { + "epoch": 47.26919032597266, + "grad_norm": 0.6852782368659973, + "learning_rate": 2.6370798319327734e-05, + "loss": 0.6698217010498047, + "step": 22500 + }, + { + "epoch": 47.4794952681388, + "grad_norm": 0.6817244291305542, + "learning_rate": 2.626575630252101e-05, + "loss": 0.6796794891357422, + "step": 22600 + }, + { + "epoch": 47.689800210304945, + "grad_norm": 0.665703535079956, + "learning_rate": 2.616071428571429e-05, + "loss": 0.689930191040039, + "step": 22700 + }, + { + "epoch": 47.900105152471085, + "grad_norm": 0.7286046147346497, + "learning_rate": 2.6055672268907565e-05, + "loss": 0.6968262481689453, + "step": 22800 + }, + { + "epoch": 48.10935856992639, + "grad_norm": 0.6568066477775574, + "learning_rate": 2.5950630252100845e-05, + "loss": 0.6714718627929688, + "step": 22900 + }, + { + "epoch": 48.31966351209253, + "grad_norm": 0.6909933090209961, + "learning_rate": 2.584558823529412e-05, + "loss": 0.6521046447753907, + "step": 23000 + }, + { + "epoch": 48.52996845425867, + "grad_norm": 0.6730957627296448, + "learning_rate": 2.5740546218487393e-05, + "loss": 0.6635847473144532, + "step": 23100 + }, + { + "epoch": 48.74027339642482, + "grad_norm": 0.7137960195541382, + "learning_rate": 2.5635504201680672e-05, + "loss": 0.6703518676757813, + "step": 23200 + }, + { + "epoch": 48.95057833859096, + "grad_norm": 0.7035015225410461, + "learning_rate": 2.5530462184873948e-05, + "loss": 0.678240737915039, + "step": 23300 + }, + { + "epoch": 49.159831756046266, + "grad_norm": 0.6768185496330261, + "learning_rate": 2.5425420168067227e-05, + "loss": 0.6413292694091797, + "step": 23400 + }, + { + "epoch": 49.370136698212406, + "grad_norm": 0.6941663026809692, + "learning_rate": 2.5320378151260503e-05, + "loss": 0.6415236663818359, + "step": 23500 + }, + { + "epoch": 49.58044164037855, + "grad_norm": 0.722435712814331, + "learning_rate": 2.5215336134453782e-05, + "loss": 0.6499783325195313, + "step": 23600 + }, + { + "epoch": 49.79074658254469, + "grad_norm": 0.7071043252944946, + "learning_rate": 2.511029411764706e-05, + "loss": 0.6546615600585938, + "step": 23700 + }, + { + "epoch": 50.0, + "grad_norm": Infinity, + "learning_rate": 2.5005252100840338e-05, + "loss": 0.6589860534667968, + "step": 23800 + }, + { + "epoch": 50.21030494216614, + "grad_norm": 0.6747011542320251, + "learning_rate": 2.490126050420168e-05, + "loss": 0.6164878845214844, + "step": 23900 + }, + { + "epoch": 50.42060988433228, + "grad_norm": 0.6953312754631042, + "learning_rate": 2.479621848739496e-05, + "loss": 0.6259209060668945, + "step": 24000 + }, + { + "epoch": 50.630914826498426, + "grad_norm": 0.6829053163528442, + "learning_rate": 2.469117647058824e-05, + "loss": 0.6306737518310547, + "step": 24100 + }, + { + "epoch": 50.841219768664565, + "grad_norm": 0.7105507850646973, + "learning_rate": 2.4586134453781514e-05, + "loss": 0.6402838897705078, + "step": 24200 + }, + { + "epoch": 51.05047318611987, + "grad_norm": 0.6592356562614441, + "learning_rate": 2.4481092436974794e-05, + "loss": 0.6321442413330078, + "step": 24300 + }, + { + "epoch": 51.26077812828601, + "grad_norm": 0.6957094073295593, + "learning_rate": 2.4376050420168066e-05, + "loss": 0.6060052108764649, + "step": 24400 + }, + { + "epoch": 51.47108307045215, + "grad_norm": 0.6904229521751404, + "learning_rate": 2.4271008403361345e-05, + "loss": 0.6094649505615234, + "step": 24500 + }, + { + "epoch": 51.6813880126183, + "grad_norm": 0.7173294425010681, + "learning_rate": 2.416596638655462e-05, + "loss": 0.6187096023559571, + "step": 24600 + }, + { + "epoch": 51.89169295478444, + "grad_norm": 0.7143198251724243, + "learning_rate": 2.40609243697479e-05, + "loss": 0.6268323516845703, + "step": 24700 + }, + { + "epoch": 52.10094637223975, + "grad_norm": 0.6786720752716064, + "learning_rate": 2.3955882352941176e-05, + "loss": 0.6083223342895507, + "step": 24800 + }, + { + "epoch": 52.31125131440589, + "grad_norm": 0.6900521516799927, + "learning_rate": 2.3850840336134456e-05, + "loss": 0.5922721862792969, + "step": 24900 + }, + { + "epoch": 52.521556256572026, + "grad_norm": 0.7288543581962585, + "learning_rate": 2.3745798319327735e-05, + "loss": 0.5982749938964844, + "step": 25000 + }, + { + "epoch": 52.73186119873817, + "grad_norm": 0.704078197479248, + "learning_rate": 2.3640756302521007e-05, + "loss": 0.6041379547119141, + "step": 25100 + }, + { + "epoch": 52.94216614090431, + "grad_norm": 0.706262469291687, + "learning_rate": 2.3535714285714287e-05, + "loss": 0.6083390808105469, + "step": 25200 + }, + { + "epoch": 53.15141955835962, + "grad_norm": 0.6775776743888855, + "learning_rate": 2.3430672268907563e-05, + "loss": 0.5816435623168945, + "step": 25300 + }, + { + "epoch": 53.36172450052576, + "grad_norm": 0.7253007888793945, + "learning_rate": 2.3325630252100842e-05, + "loss": 0.58095458984375, + "step": 25400 + }, + { + "epoch": 53.5720294426919, + "grad_norm": 0.7169889211654663, + "learning_rate": 2.3220588235294118e-05, + "loss": 0.5878105163574219, + "step": 25500 + }, + { + "epoch": 53.782334384858046, + "grad_norm": 0.6921281814575195, + "learning_rate": 2.3115546218487397e-05, + "loss": 0.5918175506591797, + "step": 25600 + }, + { + "epoch": 53.992639327024186, + "grad_norm": 0.7570663094520569, + "learning_rate": 2.3010504201680673e-05, + "loss": 0.5992276000976563, + "step": 25700 + }, + { + "epoch": 54.201892744479494, + "grad_norm": 0.7045475840568542, + "learning_rate": 2.2905462184873952e-05, + "loss": 0.563626937866211, + "step": 25800 + }, + { + "epoch": 54.412197686645634, + "grad_norm": 0.7311537861824036, + "learning_rate": 2.2800420168067228e-05, + "loss": 0.5649079513549805, + "step": 25900 + }, + { + "epoch": 54.62250262881178, + "grad_norm": 0.7197280526161194, + "learning_rate": 2.2695378151260504e-05, + "loss": 0.5740287017822265, + "step": 26000 + }, + { + "epoch": 54.83280757097792, + "grad_norm": 0.7047930359840393, + "learning_rate": 2.2590336134453783e-05, + "loss": 0.5799992752075195, + "step": 26100 + }, + { + "epoch": 55.04206098843323, + "grad_norm": 0.663329541683197, + "learning_rate": 2.2486344537815125e-05, + "loss": 0.5747824096679688, + "step": 26200 + }, + { + "epoch": 55.25236593059937, + "grad_norm": 0.6825776100158691, + "learning_rate": 2.2381302521008405e-05, + "loss": 0.5511475372314453, + "step": 26300 + }, + { + "epoch": 55.46267087276551, + "grad_norm": 0.7081674337387085, + "learning_rate": 2.227626050420168e-05, + "loss": 0.5568293380737305, + "step": 26400 + }, + { + "epoch": 55.672975814931654, + "grad_norm": 0.6991596221923828, + "learning_rate": 2.217121848739496e-05, + "loss": 0.5623696899414062, + "step": 26500 + }, + { + "epoch": 55.88328075709779, + "grad_norm": 0.7421116828918457, + "learning_rate": 2.2066176470588236e-05, + "loss": 0.5673596572875976, + "step": 26600 + }, + { + "epoch": 56.0925341745531, + "grad_norm": 0.6679620146751404, + "learning_rate": 2.1961134453781515e-05, + "loss": 0.555915298461914, + "step": 26700 + }, + { + "epoch": 56.30283911671924, + "grad_norm": 0.7035086750984192, + "learning_rate": 2.185609243697479e-05, + "loss": 0.5402443313598633, + "step": 26800 + }, + { + "epoch": 56.51314405888538, + "grad_norm": 0.6888571381568909, + "learning_rate": 2.1751050420168067e-05, + "loss": 0.5462953186035157, + "step": 26900 + }, + { + "epoch": 56.72344900105153, + "grad_norm": 0.7356609106063843, + "learning_rate": 2.1646008403361346e-05, + "loss": 0.5512025833129883, + "step": 27000 + }, + { + "epoch": 56.93375394321767, + "grad_norm": 0.7569705247879028, + "learning_rate": 2.1540966386554622e-05, + "loss": 0.5562152481079101, + "step": 27100 + }, + { + "epoch": 57.143007360672975, + "grad_norm": 0.6764115691184998, + "learning_rate": 2.14359243697479e-05, + "loss": 0.5337548065185547, + "step": 27200 + }, + { + "epoch": 57.353312302839115, + "grad_norm": 0.7006810307502747, + "learning_rate": 2.1330882352941177e-05, + "loss": 0.5296073913574219, + "step": 27300 + }, + { + "epoch": 57.56361724500526, + "grad_norm": 0.7158169150352478, + "learning_rate": 2.1225840336134456e-05, + "loss": 0.5382700347900391, + "step": 27400 + }, + { + "epoch": 57.7739221871714, + "grad_norm": 0.7132992148399353, + "learning_rate": 2.1120798319327732e-05, + "loss": 0.5398505783081055, + "step": 27500 + }, + { + "epoch": 57.98422712933754, + "grad_norm": 0.7330942749977112, + "learning_rate": 2.1015756302521008e-05, + "loss": 0.5458747863769531, + "step": 27600 + }, + { + "epoch": 58.19348054679285, + "grad_norm": 0.669278621673584, + "learning_rate": 2.0910714285714287e-05, + "loss": 0.5161695861816407, + "step": 27700 + }, + { + "epoch": 58.40378548895899, + "grad_norm": 0.6958737373352051, + "learning_rate": 2.0805672268907563e-05, + "loss": 0.5201998901367187, + "step": 27800 + }, + { + "epoch": 58.614090431125135, + "grad_norm": 0.6824914813041687, + "learning_rate": 2.0700630252100842e-05, + "loss": 0.5258338928222657, + "step": 27900 + }, + { + "epoch": 58.824395373291274, + "grad_norm": 0.6634467244148254, + "learning_rate": 2.0595588235294118e-05, + "loss": 0.5300619888305664, + "step": 28000 + }, + { + "epoch": 59.03364879074658, + "grad_norm": 0.6863816380500793, + "learning_rate": 2.0490546218487397e-05, + "loss": 0.5283214950561523, + "step": 28100 + }, + { + "epoch": 59.24395373291272, + "grad_norm": 0.7183119654655457, + "learning_rate": 2.0385504201680673e-05, + "loss": 0.506834487915039, + "step": 28200 + }, + { + "epoch": 59.45425867507886, + "grad_norm": 0.7142145037651062, + "learning_rate": 2.028046218487395e-05, + "loss": 0.5117876815795899, + "step": 28300 + }, + { + "epoch": 59.66456361724501, + "grad_norm": 0.7280924916267395, + "learning_rate": 2.017542016806723e-05, + "loss": 0.5153473281860351, + "step": 28400 + }, + { + "epoch": 59.87486855941115, + "grad_norm": 0.693505048751831, + "learning_rate": 2.0070378151260504e-05, + "loss": 0.5219352722167969, + "step": 28500 + }, + { + "epoch": 60.084121976866456, + "grad_norm": 0.6892845034599304, + "learning_rate": 1.9965336134453784e-05, + "loss": 0.5122858810424805, + "step": 28600 + }, + { + "epoch": 60.294426919032595, + "grad_norm": 0.6604379415512085, + "learning_rate": 1.986029411764706e-05, + "loss": 0.49614715576171875, + "step": 28700 + }, + { + "epoch": 60.504731861198735, + "grad_norm": 0.7204891443252563, + "learning_rate": 1.975525210084034e-05, + "loss": 0.5024974822998047, + "step": 28800 + }, + { + "epoch": 60.71503680336488, + "grad_norm": 0.7127634286880493, + "learning_rate": 1.9650210084033615e-05, + "loss": 0.5073120498657226, + "step": 28900 + }, + { + "epoch": 60.92534174553102, + "grad_norm": 0.7359983921051025, + "learning_rate": 1.954516806722689e-05, + "loss": 0.5116232681274414, + "step": 29000 + }, + { + "epoch": 61.13459516298633, + "grad_norm": 0.6893951296806335, + "learning_rate": 1.944012605042017e-05, + "loss": 0.4952814865112305, + "step": 29100 + }, + { + "epoch": 61.34490010515247, + "grad_norm": 0.6849685311317444, + "learning_rate": 1.9335084033613446e-05, + "loss": 0.4899435043334961, + "step": 29200 + }, + { + "epoch": 61.55520504731861, + "grad_norm": 0.7181743383407593, + "learning_rate": 1.9230042016806725e-05, + "loss": 0.4946512985229492, + "step": 29300 + }, + { + "epoch": 61.765509989484755, + "grad_norm": 0.6820606589317322, + "learning_rate": 1.9125e-05, + "loss": 0.49947418212890626, + "step": 29400 + }, + { + "epoch": 61.975814931650895, + "grad_norm": 0.7111321687698364, + "learning_rate": 1.901995798319328e-05, + "loss": 0.5020344543457032, + "step": 29500 + }, + { + "epoch": 62.1850683491062, + "grad_norm": 0.7008198499679565, + "learning_rate": 1.8914915966386556e-05, + "loss": 0.48151485443115233, + "step": 29600 + }, + { + "epoch": 62.39537329127234, + "grad_norm": 0.7171513438224792, + "learning_rate": 1.880987394957983e-05, + "loss": 0.48171932220458985, + "step": 29700 + }, + { + "epoch": 62.60567823343849, + "grad_norm": 0.7375807762145996, + "learning_rate": 1.8704831932773108e-05, + "loss": 0.4873679733276367, + "step": 29800 + }, + { + "epoch": 62.81598317560463, + "grad_norm": 0.6806672811508179, + "learning_rate": 1.8599789915966387e-05, + "loss": 0.4887456130981445, + "step": 29900 + }, + { + "epoch": 63.02523659305994, + "grad_norm": 0.6749327182769775, + "learning_rate": 1.8494747899159666e-05, + "loss": 0.48958889007568357, + "step": 30000 + }, + { + "epoch": 63.235541535226076, + "grad_norm": 0.7122695446014404, + "learning_rate": 1.8389705882352942e-05, + "loss": 0.46849212646484373, + "step": 30100 + }, + { + "epoch": 63.445846477392216, + "grad_norm": 0.6742300987243652, + "learning_rate": 1.8285714285714288e-05, + "loss": 0.4735026550292969, + "step": 30200 + }, + { + "epoch": 63.65615141955836, + "grad_norm": 0.7086833119392395, + "learning_rate": 1.8180672268907564e-05, + "loss": 0.47808189392089845, + "step": 30300 + }, + { + "epoch": 63.8664563617245, + "grad_norm": 0.673115611076355, + "learning_rate": 1.8075630252100843e-05, + "loss": 0.4810390853881836, + "step": 30400 + }, + { + "epoch": 64.07570977917982, + "grad_norm": 0.7166642546653748, + "learning_rate": 1.797058823529412e-05, + "loss": 0.47662986755371095, + "step": 30500 + }, + { + "epoch": 64.28601472134595, + "grad_norm": 0.7239866852760315, + "learning_rate": 1.7865546218487395e-05, + "loss": 0.46368907928466796, + "step": 30600 + }, + { + "epoch": 64.4963196635121, + "grad_norm": 0.6777023077011108, + "learning_rate": 1.776050420168067e-05, + "loss": 0.46869037628173826, + "step": 30700 + }, + { + "epoch": 64.70662460567823, + "grad_norm": 0.7028587460517883, + "learning_rate": 1.765546218487395e-05, + "loss": 0.47153076171875, + "step": 30800 + }, + { + "epoch": 64.91692954784438, + "grad_norm": 0.7220568656921387, + "learning_rate": 1.755042016806723e-05, + "loss": 0.4732553482055664, + "step": 30900 + }, + { + "epoch": 65.12618296529969, + "grad_norm": 0.6283636093139648, + "learning_rate": 1.7445378151260505e-05, + "loss": 0.4627264404296875, + "step": 31000 + }, + { + "epoch": 65.33648790746582, + "grad_norm": 0.6411524415016174, + "learning_rate": 1.7340336134453784e-05, + "loss": 0.45608016967773435, + "step": 31100 + }, + { + "epoch": 65.54679284963197, + "grad_norm": 0.668154776096344, + "learning_rate": 1.723529411764706e-05, + "loss": 0.46059967041015626, + "step": 31200 + }, + { + "epoch": 65.7570977917981, + "grad_norm": 0.7226248979568481, + "learning_rate": 1.713025210084034e-05, + "loss": 0.4659851455688477, + "step": 31300 + }, + { + "epoch": 65.96740273396425, + "grad_norm": 0.6833023428916931, + "learning_rate": 1.7025210084033612e-05, + "loss": 0.46931900024414064, + "step": 31400 + }, + { + "epoch": 66.17665615141956, + "grad_norm": 0.6941800117492676, + "learning_rate": 1.6921218487394958e-05, + "loss": 0.45006973266601563, + "step": 31500 + }, + { + "epoch": 66.3869610935857, + "grad_norm": 0.63517826795578, + "learning_rate": 1.6816176470588237e-05, + "loss": 0.44848171234130857, + "step": 31600 + }, + { + "epoch": 66.59726603575184, + "grad_norm": 0.6846080422401428, + "learning_rate": 1.6711134453781513e-05, + "loss": 0.45420032501220703, + "step": 31700 + }, + { + "epoch": 66.80757097791798, + "grad_norm": 0.6388368010520935, + "learning_rate": 1.6606092436974792e-05, + "loss": 0.4580923843383789, + "step": 31800 + }, + { + "epoch": 67.01682439537329, + "grad_norm": 0.6670629978179932, + "learning_rate": 1.6501050420168068e-05, + "loss": 0.4585027313232422, + "step": 31900 + }, + { + "epoch": 67.22712933753944, + "grad_norm": 0.6662338972091675, + "learning_rate": 1.6396008403361347e-05, + "loss": 0.44079010009765623, + "step": 32000 + }, + { + "epoch": 67.43743427970557, + "grad_norm": 0.6707865595817566, + "learning_rate": 1.6290966386554623e-05, + "loss": 0.44413238525390625, + "step": 32100 + }, + { + "epoch": 67.64773922187172, + "grad_norm": 0.656842052936554, + "learning_rate": 1.6185924369747902e-05, + "loss": 0.44844043731689454, + "step": 32200 + }, + { + "epoch": 67.85804416403785, + "grad_norm": 0.6646634340286255, + "learning_rate": 1.6080882352941175e-05, + "loss": 0.44970947265625, + "step": 32300 + }, + { + "epoch": 68.06729758149316, + "grad_norm": 0.6447365880012512, + "learning_rate": 1.5975840336134454e-05, + "loss": 0.4450407028198242, + "step": 32400 + }, + { + "epoch": 68.27760252365931, + "grad_norm": 0.6727699637413025, + "learning_rate": 1.587079831932773e-05, + "loss": 0.43177310943603514, + "step": 32500 + }, + { + "epoch": 68.48790746582544, + "grad_norm": 0.7130571603775024, + "learning_rate": 1.576575630252101e-05, + "loss": 0.4379489517211914, + "step": 32600 + }, + { + "epoch": 68.69821240799159, + "grad_norm": 0.7220073938369751, + "learning_rate": 1.566071428571429e-05, + "loss": 0.4425164794921875, + "step": 32700 + }, + { + "epoch": 68.90851735015772, + "grad_norm": 0.6695141196250916, + "learning_rate": 1.5555672268907564e-05, + "loss": 0.44274383544921875, + "step": 32800 + }, + { + "epoch": 69.11777076761304, + "grad_norm": 0.6740268468856812, + "learning_rate": 1.5450630252100843e-05, + "loss": 0.4357725143432617, + "step": 32900 + }, + { + "epoch": 69.32807570977918, + "grad_norm": 0.6566063165664673, + "learning_rate": 1.5345588235294116e-05, + "loss": 0.4283485412597656, + "step": 33000 + }, + { + "epoch": 69.53838065194532, + "grad_norm": 0.6752663850784302, + "learning_rate": 1.5240546218487395e-05, + "loss": 0.43225677490234377, + "step": 33100 + }, + { + "epoch": 69.74868559411146, + "grad_norm": 0.7038667798042297, + "learning_rate": 1.5135504201680673e-05, + "loss": 0.43592594146728514, + "step": 33200 + }, + { + "epoch": 69.9589905362776, + "grad_norm": 0.6961196660995483, + "learning_rate": 1.503046218487395e-05, + "loss": 0.438877067565918, + "step": 33300 + }, + { + "epoch": 70.16824395373291, + "grad_norm": 0.6535352468490601, + "learning_rate": 1.4925420168067228e-05, + "loss": 0.4252385330200195, + "step": 33400 + }, + { + "epoch": 70.37854889589906, + "grad_norm": 0.6601018905639648, + "learning_rate": 1.4820378151260505e-05, + "loss": 0.42285392761230467, + "step": 33500 + }, + { + "epoch": 70.58885383806519, + "grad_norm": 0.6948896050453186, + "learning_rate": 1.4715336134453783e-05, + "loss": 0.427175407409668, + "step": 33600 + }, + { + "epoch": 70.79915878023134, + "grad_norm": 0.6372560858726501, + "learning_rate": 1.461029411764706e-05, + "loss": 0.42832706451416014, + "step": 33700 + }, + { + "epoch": 71.00841219768665, + "grad_norm": 0.6517939567565918, + "learning_rate": 1.4505252100840336e-05, + "loss": 0.4324043273925781, + "step": 33800 + }, + { + "epoch": 71.21871713985279, + "grad_norm": 0.6330206990242004, + "learning_rate": 1.4400210084033614e-05, + "loss": 0.4146746826171875, + "step": 33900 + }, + { + "epoch": 71.42902208201893, + "grad_norm": 0.6658615469932556, + "learning_rate": 1.4295168067226892e-05, + "loss": 0.4180047225952148, + "step": 34000 + }, + { + "epoch": 71.63932702418506, + "grad_norm": 0.6433075070381165, + "learning_rate": 1.4190126050420169e-05, + "loss": 0.4219693374633789, + "step": 34100 + }, + { + "epoch": 71.84963196635121, + "grad_norm": 0.6470766663551331, + "learning_rate": 1.4085084033613447e-05, + "loss": 0.4214926528930664, + "step": 34200 + }, + { + "epoch": 72.05888538380653, + "grad_norm": 0.6315721273422241, + "learning_rate": 1.3981092436974791e-05, + "loss": 0.4204498291015625, + "step": 34300 + }, + { + "epoch": 72.26919032597266, + "grad_norm": 0.6722202897071838, + "learning_rate": 1.3876050420168068e-05, + "loss": 0.4105443572998047, + "step": 34400 + }, + { + "epoch": 72.4794952681388, + "grad_norm": 0.654528021812439, + "learning_rate": 1.3771008403361346e-05, + "loss": 0.41524337768554687, + "step": 34500 + }, + { + "epoch": 72.68980021030494, + "grad_norm": 0.6449755430221558, + "learning_rate": 1.3665966386554622e-05, + "loss": 0.4175481414794922, + "step": 34600 + }, + { + "epoch": 72.90010515247108, + "grad_norm": 0.6468359231948853, + "learning_rate": 1.35609243697479e-05, + "loss": 0.41863433837890623, + "step": 34700 + }, + { + "epoch": 73.1093585699264, + "grad_norm": 0.6471462845802307, + "learning_rate": 1.3455882352941177e-05, + "loss": 0.411123161315918, + "step": 34800 + }, + { + "epoch": 73.31966351209253, + "grad_norm": 0.6382157802581787, + "learning_rate": 1.3350840336134455e-05, + "loss": 0.40554931640625, + "step": 34900 + }, + { + "epoch": 73.52996845425868, + "grad_norm": 0.6727550029754639, + "learning_rate": 1.3245798319327732e-05, + "loss": 0.40884464263916015, + "step": 35000 + }, + { + "epoch": 73.74027339642481, + "grad_norm": 0.6494147181510925, + "learning_rate": 1.314075630252101e-05, + "loss": 0.4114807891845703, + "step": 35100 + }, + { + "epoch": 73.95057833859096, + "grad_norm": 0.6971067786216736, + "learning_rate": 1.3035714285714287e-05, + "loss": 0.4129951477050781, + "step": 35200 + }, + { + "epoch": 74.15983175604627, + "grad_norm": 0.630617082118988, + "learning_rate": 1.2930672268907565e-05, + "loss": 0.40283798217773437, + "step": 35300 + }, + { + "epoch": 74.3701366982124, + "grad_norm": 0.6068241000175476, + "learning_rate": 1.2825630252100839e-05, + "loss": 0.4017567825317383, + "step": 35400 + }, + { + "epoch": 74.58044164037855, + "grad_norm": 0.6767259836196899, + "learning_rate": 1.2720588235294118e-05, + "loss": 0.40448307037353515, + "step": 35500 + }, + { + "epoch": 74.79074658254468, + "grad_norm": 0.7011847496032715, + "learning_rate": 1.2615546218487396e-05, + "loss": 0.4047744369506836, + "step": 35600 + }, + { + "epoch": 75.0, + "grad_norm": 0.9920335412025452, + "learning_rate": 1.2510504201680673e-05, + "loss": 0.4085837936401367, + "step": 35700 + }, + { + "epoch": 75.21030494216615, + "grad_norm": 0.6520708203315735, + "learning_rate": 1.2405462184873951e-05, + "loss": 0.39399688720703124, + "step": 35800 + }, + { + "epoch": 75.42060988433228, + "grad_norm": 0.6656842827796936, + "learning_rate": 1.2300420168067227e-05, + "loss": 0.3963521957397461, + "step": 35900 + }, + { + "epoch": 75.63091482649843, + "grad_norm": 0.6576446294784546, + "learning_rate": 1.2195378151260504e-05, + "loss": 0.3992136383056641, + "step": 36000 + }, + { + "epoch": 75.84121976866456, + "grad_norm": 0.6238224506378174, + "learning_rate": 1.2090336134453782e-05, + "loss": 0.40125537872314454, + "step": 36100 + }, + { + "epoch": 76.05047318611987, + "grad_norm": 0.6389949917793274, + "learning_rate": 1.198529411764706e-05, + "loss": 0.3995349884033203, + "step": 36200 + }, + { + "epoch": 76.26077812828602, + "grad_norm": 0.6240091919898987, + "learning_rate": 1.1880252100840335e-05, + "loss": 0.3890629577636719, + "step": 36300 + }, + { + "epoch": 76.47108307045215, + "grad_norm": 0.6367642879486084, + "learning_rate": 1.1775210084033615e-05, + "loss": 0.39277313232421873, + "step": 36400 + }, + { + "epoch": 76.6813880126183, + "grad_norm": 0.6215347647666931, + "learning_rate": 1.1670168067226892e-05, + "loss": 0.3941745376586914, + "step": 36500 + }, + { + "epoch": 76.89169295478443, + "grad_norm": 0.6176421642303467, + "learning_rate": 1.156512605042017e-05, + "loss": 0.3961213302612305, + "step": 36600 + }, + { + "epoch": 77.10094637223975, + "grad_norm": 0.6433852314949036, + "learning_rate": 1.1460084033613446e-05, + "loss": 0.39362903594970705, + "step": 36700 + }, + { + "epoch": 77.3112513144059, + "grad_norm": 0.6288033127784729, + "learning_rate": 1.1355042016806723e-05, + "loss": 0.3870785140991211, + "step": 36800 + }, + { + "epoch": 77.52155625657203, + "grad_norm": 0.6061193943023682, + "learning_rate": 1.125e-05, + "loss": 0.38955581665039063, + "step": 36900 + }, + { + "epoch": 77.73186119873817, + "grad_norm": 0.6680556535720825, + "learning_rate": 1.1144957983193278e-05, + "loss": 0.390676383972168, + "step": 37000 + }, + { + "epoch": 77.9421661409043, + "grad_norm": 0.623725950717926, + "learning_rate": 1.1039915966386554e-05, + "loss": 0.3921066665649414, + "step": 37100 + }, + { + "epoch": 78.15141955835962, + "grad_norm": 0.6346238255500793, + "learning_rate": 1.0935924369747898e-05, + "loss": 0.3845651626586914, + "step": 37200 + }, + { + "epoch": 78.36172450052577, + "grad_norm": 0.6062731146812439, + "learning_rate": 1.0830882352941178e-05, + "loss": 0.380772705078125, + "step": 37300 + }, + { + "epoch": 78.5720294426919, + "grad_norm": 0.6125079989433289, + "learning_rate": 1.0725840336134455e-05, + "loss": 0.3834884262084961, + "step": 37400 + }, + { + "epoch": 78.78233438485805, + "grad_norm": 0.6804420948028564, + "learning_rate": 1.0620798319327733e-05, + "loss": 0.3863555526733398, + "step": 37500 + }, + { + "epoch": 78.99263932702418, + "grad_norm": 0.6568316221237183, + "learning_rate": 1.0515756302521009e-05, + "loss": 0.3898443603515625, + "step": 37600 + }, + { + "epoch": 79.2018927444795, + "grad_norm": 0.6262179017066956, + "learning_rate": 1.0410714285714286e-05, + "loss": 0.37717395782470703, + "step": 37700 + }, + { + "epoch": 79.41219768664564, + "grad_norm": 0.6335896849632263, + "learning_rate": 1.0305672268907564e-05, + "loss": 0.37976459503173826, + "step": 37800 + }, + { + "epoch": 79.62250262881177, + "grad_norm": 0.675938069820404, + "learning_rate": 1.0200630252100841e-05, + "loss": 0.38054397583007815, + "step": 37900 + }, + { + "epoch": 79.83280757097792, + "grad_norm": 0.650644838809967, + "learning_rate": 1.0095588235294117e-05, + "loss": 0.3817191696166992, + "step": 38000 + }, + { + "epoch": 80.04206098843324, + "grad_norm": 0.5988778471946716, + "learning_rate": 9.990546218487395e-06, + "loss": 0.3799977493286133, + "step": 38100 + }, + { + "epoch": 80.25236593059937, + "grad_norm": 0.6436987519264221, + "learning_rate": 9.885504201680674e-06, + "loss": 0.37264183044433596, + "step": 38200 + }, + { + "epoch": 80.46267087276551, + "grad_norm": 0.610487699508667, + "learning_rate": 9.78046218487395e-06, + "loss": 0.3753046417236328, + "step": 38300 + }, + { + "epoch": 80.67297581493165, + "grad_norm": 0.6378571391105652, + "learning_rate": 9.675420168067227e-06, + "loss": 0.3749809646606445, + "step": 38400 + }, + { + "epoch": 80.8832807570978, + "grad_norm": 0.6599664688110352, + "learning_rate": 9.570378151260505e-06, + "loss": 0.37958168029785155, + "step": 38500 + }, + { + "epoch": 81.09253417455311, + "grad_norm": 0.6057779788970947, + "learning_rate": 9.465336134453782e-06, + "loss": 0.3755946731567383, + "step": 38600 + }, + { + "epoch": 81.30283911671924, + "grad_norm": 0.6186268925666809, + "learning_rate": 9.360294117647058e-06, + "loss": 0.3689208221435547, + "step": 38700 + }, + { + "epoch": 81.51314405888539, + "grad_norm": 0.6031709909439087, + "learning_rate": 9.255252100840336e-06, + "loss": 0.37045917510986326, + "step": 38800 + }, + { + "epoch": 81.72344900105152, + "grad_norm": 0.6903654336929321, + "learning_rate": 9.150210084033613e-06, + "loss": 0.37341190338134767, + "step": 38900 + }, + { + "epoch": 81.93375394321767, + "grad_norm": 0.6498835682868958, + "learning_rate": 9.045168067226891e-06, + "loss": 0.3741530227661133, + "step": 39000 + }, + { + "epoch": 82.14300736067298, + "grad_norm": 0.6078621745109558, + "learning_rate": 8.940126050420169e-06, + "loss": 0.36713558197021484, + "step": 39100 + }, + { + "epoch": 82.35331230283911, + "grad_norm": 0.6294094324111938, + "learning_rate": 8.835084033613446e-06, + "loss": 0.3661073303222656, + "step": 39200 + }, + { + "epoch": 82.56361724500526, + "grad_norm": 0.6120302081108093, + "learning_rate": 8.730042016806724e-06, + "loss": 0.3683062744140625, + "step": 39300 + }, + { + "epoch": 82.7739221871714, + "grad_norm": 0.6194695830345154, + "learning_rate": 8.625e-06, + "loss": 0.3718934631347656, + "step": 39400 + }, + { + "epoch": 82.98422712933754, + "grad_norm": 0.6603109240531921, + "learning_rate": 8.519957983193277e-06, + "loss": 0.37141822814941405, + "step": 39500 + }, + { + "epoch": 83.19348054679286, + "grad_norm": 0.6176982522010803, + "learning_rate": 8.414915966386555e-06, + "loss": 0.36253021240234373, + "step": 39600 + }, + { + "epoch": 83.40378548895899, + "grad_norm": 0.6788721084594727, + "learning_rate": 8.309873949579832e-06, + "loss": 0.36460174560546876, + "step": 39700 + }, + { + "epoch": 83.61409043112513, + "grad_norm": 0.6141113638877869, + "learning_rate": 8.20483193277311e-06, + "loss": 0.36554264068603515, + "step": 39800 + }, + { + "epoch": 83.82439537329127, + "grad_norm": 0.6193323135375977, + "learning_rate": 8.099789915966387e-06, + "loss": 0.36707286834716796, + "step": 39900 + }, + { + "epoch": 84.03364879074658, + "grad_norm": 0.6383187770843506, + "learning_rate": 7.994747899159665e-06, + "loss": 0.3661843872070312, + "step": 40000 + }, + { + "epoch": 84.24395373291273, + "grad_norm": 0.5923520922660828, + "learning_rate": 7.889705882352943e-06, + "loss": 0.35978816986083983, + "step": 40100 + }, + { + "epoch": 84.45425867507886, + "grad_norm": 0.641968846321106, + "learning_rate": 7.784663865546218e-06, + "loss": 0.35977176666259764, + "step": 40200 + }, + { + "epoch": 84.66456361724501, + "grad_norm": 0.6307324767112732, + "learning_rate": 7.679621848739496e-06, + "loss": 0.36135292053222656, + "step": 40300 + }, + { + "epoch": 84.87486855941114, + "grad_norm": 0.6303888559341431, + "learning_rate": 7.5745798319327735e-06, + "loss": 0.36290821075439456, + "step": 40400 + }, + { + "epoch": 85.08412197686646, + "grad_norm": 0.5610889792442322, + "learning_rate": 7.469537815126051e-06, + "loss": 0.36016101837158204, + "step": 40500 + }, + { + "epoch": 85.2944269190326, + "grad_norm": 0.5796296000480652, + "learning_rate": 7.364495798319328e-06, + "loss": 0.35660606384277344, + "step": 40600 + }, + { + "epoch": 85.50473186119874, + "grad_norm": 0.6147542595863342, + "learning_rate": 7.259453781512605e-06, + "loss": 0.35944347381591796, + "step": 40700 + }, + { + "epoch": 85.71503680336488, + "grad_norm": 0.6097769737243652, + "learning_rate": 7.154411764705883e-06, + "loss": 0.3589036560058594, + "step": 40800 + }, + { + "epoch": 85.92534174553101, + "grad_norm": 0.6288202404975891, + "learning_rate": 7.04936974789916e-06, + "loss": 0.3591917419433594, + "step": 40900 + }, + { + "epoch": 86.13459516298633, + "grad_norm": 0.6195931434631348, + "learning_rate": 6.944327731092437e-06, + "loss": 0.3569915771484375, + "step": 41000 + }, + { + "epoch": 86.34490010515248, + "grad_norm": 0.5890372395515442, + "learning_rate": 6.839285714285715e-06, + "loss": 0.3543994903564453, + "step": 41100 + }, + { + "epoch": 86.55520504731861, + "grad_norm": 0.6272594332695007, + "learning_rate": 6.735294117647059e-06, + "loss": 0.3553640365600586, + "step": 41200 + }, + { + "epoch": 86.76550998948476, + "grad_norm": 0.6778700351715088, + "learning_rate": 6.6302521008403365e-06, + "loss": 0.3564106750488281, + "step": 41300 + }, + { + "epoch": 86.97581493165089, + "grad_norm": 0.6336688995361328, + "learning_rate": 6.525210084033614e-06, + "loss": 0.35713409423828124, + "step": 41400 + }, + { + "epoch": 87.1850683491062, + "grad_norm": 0.6053069829940796, + "learning_rate": 6.421218487394959e-06, + "loss": 0.3506643295288086, + "step": 41500 + }, + { + "epoch": 87.39537329127235, + "grad_norm": 0.6175255179405212, + "learning_rate": 6.316176470588235e-06, + "loss": 0.35214996337890625, + "step": 41600 + }, + { + "epoch": 87.60567823343848, + "grad_norm": 0.5915444493293762, + "learning_rate": 6.2111344537815125e-06, + "loss": 0.3522480392456055, + "step": 41700 + }, + { + "epoch": 87.81598317560463, + "grad_norm": 0.5907636880874634, + "learning_rate": 6.10609243697479e-06, + "loss": 0.3520878601074219, + "step": 41800 + }, + { + "epoch": 88.02523659305994, + "grad_norm": 0.6209415197372437, + "learning_rate": 6.001050420168068e-06, + "loss": 0.3545633316040039, + "step": 41900 + }, + { + "epoch": 88.23554153522608, + "grad_norm": 0.5926827788352966, + "learning_rate": 5.896008403361345e-06, + "loss": 0.34920032501220705, + "step": 42000 + }, + { + "epoch": 88.44584647739222, + "grad_norm": 0.638471245765686, + "learning_rate": 5.790966386554622e-06, + "loss": 0.34805423736572266, + "step": 42100 + }, + { + "epoch": 88.65615141955836, + "grad_norm": 0.6181325316429138, + "learning_rate": 5.6859243697478994e-06, + "loss": 0.3501460647583008, + "step": 42200 + }, + { + "epoch": 88.8664563617245, + "grad_norm": 0.6029173135757446, + "learning_rate": 5.580882352941177e-06, + "loss": 0.35028797149658203, + "step": 42300 + }, + { + "epoch": 89.07570977917982, + "grad_norm": 0.5673274397850037, + "learning_rate": 5.475840336134454e-06, + "loss": 0.34918766021728515, + "step": 42400 + }, + { + "epoch": 89.28601472134595, + "grad_norm": 0.5657567977905273, + "learning_rate": 5.370798319327731e-06, + "loss": 0.34565746307373046, + "step": 42500 + }, + { + "epoch": 89.4963196635121, + "grad_norm": 0.6014168858528137, + "learning_rate": 5.265756302521008e-06, + "loss": 0.3450989532470703, + "step": 42600 + }, + { + "epoch": 89.70662460567823, + "grad_norm": 0.5631797909736633, + "learning_rate": 5.160714285714286e-06, + "loss": 0.3477408218383789, + "step": 42700 + }, + { + "epoch": 89.91692954784438, + "grad_norm": 0.624321699142456, + "learning_rate": 5.055672268907563e-06, + "loss": 0.34852649688720705, + "step": 42800 + }, + { + "epoch": 90.12618296529969, + "grad_norm": 0.6004353761672974, + "learning_rate": 4.950630252100841e-06, + "loss": 0.3450387191772461, + "step": 42900 + }, + { + "epoch": 90.33648790746582, + "grad_norm": 0.6030150651931763, + "learning_rate": 4.845588235294117e-06, + "loss": 0.34261096954345704, + "step": 43000 + }, + { + "epoch": 90.54679284963197, + "grad_norm": 0.5574061870574951, + "learning_rate": 4.740546218487396e-06, + "loss": 0.3450190734863281, + "step": 43100 + }, + { + "epoch": 90.7570977917981, + "grad_norm": 0.5677763819694519, + "learning_rate": 4.6355042016806725e-06, + "loss": 0.3442384338378906, + "step": 43200 + }, + { + "epoch": 90.96740273396425, + "grad_norm": 0.6088888645172119, + "learning_rate": 4.53046218487395e-06, + "loss": 0.3451253128051758, + "step": 43300 + }, + { + "epoch": 91.17665615141956, + "grad_norm": 0.5724344849586487, + "learning_rate": 4.425420168067227e-06, + "loss": 0.3408164978027344, + "step": 43400 + }, + { + "epoch": 91.3869610935857, + "grad_norm": 0.6201240420341492, + "learning_rate": 4.320378151260504e-06, + "loss": 0.3420841979980469, + "step": 43500 + }, + { + "epoch": 91.59726603575184, + "grad_norm": 0.6098768711090088, + "learning_rate": 4.215336134453782e-06, + "loss": 0.3413374328613281, + "step": 43600 + }, + { + "epoch": 91.80757097791798, + "grad_norm": 0.6306800842285156, + "learning_rate": 4.110294117647059e-06, + "loss": 0.34394527435302735, + "step": 43700 + }, + { + "epoch": 92.01682439537329, + "grad_norm": 0.559008777141571, + "learning_rate": 4.005252100840336e-06, + "loss": 0.3423053741455078, + "step": 43800 + }, + { + "epoch": 92.22712933753944, + "grad_norm": 0.5939933657646179, + "learning_rate": 3.900210084033614e-06, + "loss": 0.33797637939453123, + "step": 43900 + }, + { + "epoch": 92.43743427970557, + "grad_norm": 0.6135221719741821, + "learning_rate": 3.795168067226891e-06, + "loss": 0.3408375930786133, + "step": 44000 + }, + { + "epoch": 92.64773922187172, + "grad_norm": 0.5870836973190308, + "learning_rate": 3.690126050420168e-06, + "loss": 0.34073463439941404, + "step": 44100 + }, + { + "epoch": 92.85804416403785, + "grad_norm": 0.5811474323272705, + "learning_rate": 3.5850840336134456e-06, + "loss": 0.34040855407714843, + "step": 44200 + }, + { + "epoch": 93.06729758149316, + "grad_norm": 0.5979830026626587, + "learning_rate": 3.4800420168067227e-06, + "loss": 0.3395253753662109, + "step": 44300 + }, + { + "epoch": 93.27760252365931, + "grad_norm": 0.5824161171913147, + "learning_rate": 3.3750000000000003e-06, + "loss": 0.3389311981201172, + "step": 44400 + }, + { + "epoch": 93.48790746582544, + "grad_norm": 0.5694940090179443, + "learning_rate": 3.2699579831932774e-06, + "loss": 0.337044792175293, + "step": 44500 + }, + { + "epoch": 93.69821240799159, + "grad_norm": 0.6112421154975891, + "learning_rate": 3.164915966386555e-06, + "loss": 0.33819969177246095, + "step": 44600 + }, + { + "epoch": 93.90851735015772, + "grad_norm": 0.610955536365509, + "learning_rate": 3.059873949579832e-06, + "loss": 0.33944580078125, + "step": 44700 + }, + { + "epoch": 94.11777076761304, + "grad_norm": 0.6398776769638062, + "learning_rate": 2.9548319327731093e-06, + "loss": 0.33618770599365233, + "step": 44800 + }, + { + "epoch": 94.32807570977918, + "grad_norm": 0.5934144854545593, + "learning_rate": 2.849789915966387e-06, + "loss": 0.3384376525878906, + "step": 44900 + }, + { + "epoch": 94.53838065194532, + "grad_norm": 0.6144473552703857, + "learning_rate": 2.744747899159664e-06, + "loss": 0.3383865737915039, + "step": 45000 + }, + { + "epoch": 94.74868559411146, + "grad_norm": 0.5490454435348511, + "learning_rate": 2.6397058823529415e-06, + "loss": 0.33671878814697265, + "step": 45100 + }, + { + "epoch": 94.9589905362776, + "grad_norm": 0.5695416331291199, + "learning_rate": 2.5346638655462187e-06, + "loss": 0.3379853820800781, + "step": 45200 + }, + { + "epoch": 95.16824395373291, + "grad_norm": 0.5724055767059326, + "learning_rate": 2.429621848739496e-06, + "loss": 0.3338408660888672, + "step": 45300 + }, + { + "epoch": 95.37854889589906, + "grad_norm": 0.594022810459137, + "learning_rate": 2.3245798319327734e-06, + "loss": 0.3349121475219727, + "step": 45400 + }, + { + "epoch": 95.58885383806519, + "grad_norm": 0.5594576597213745, + "learning_rate": 2.2205882352941175e-06, + "loss": 0.33595680236816405, + "step": 45500 + }, + { + "epoch": 95.79915878023134, + "grad_norm": 0.5346081852912903, + "learning_rate": 2.115546218487395e-06, + "loss": 0.33520328521728515, + "step": 45600 + }, + { + "epoch": 96.00841219768665, + "grad_norm": 0.5849393606185913, + "learning_rate": 2.0105042016806722e-06, + "loss": 0.3334170913696289, + "step": 45700 + }, + { + "epoch": 96.21871713985279, + "grad_norm": 0.5918118357658386, + "learning_rate": 1.9054621848739498e-06, + "loss": 0.3329995346069336, + "step": 45800 + }, + { + "epoch": 96.42902208201893, + "grad_norm": 0.6012352705001831, + "learning_rate": 1.800420168067227e-06, + "loss": 0.3329520416259766, + "step": 45900 + }, + { + "epoch": 96.63932702418506, + "grad_norm": 0.5281354784965515, + "learning_rate": 1.6953781512605043e-06, + "loss": 0.3343208694458008, + "step": 46000 + }, + { + "epoch": 96.84963196635121, + "grad_norm": 0.5566437244415283, + "learning_rate": 1.5903361344537816e-06, + "loss": 0.33319324493408203, + "step": 46100 + }, + { + "epoch": 97.05888538380653, + "grad_norm": 0.62099689245224, + "learning_rate": 1.486344537815126e-06, + "loss": 0.33431713104248045, + "step": 46200 + }, + { + "epoch": 97.26919032597266, + "grad_norm": 0.5787718892097473, + "learning_rate": 1.3813025210084034e-06, + "loss": 0.3314530944824219, + "step": 46300 + }, + { + "epoch": 97.4794952681388, + "grad_norm": 0.5509923100471497, + "learning_rate": 1.2762605042016807e-06, + "loss": 0.3316763305664063, + "step": 46400 + }, + { + "epoch": 97.68980021030494, + "grad_norm": 0.5569334030151367, + "learning_rate": 1.171218487394958e-06, + "loss": 0.3315643310546875, + "step": 46500 + }, + { + "epoch": 97.90010515247108, + "grad_norm": 0.5476507544517517, + "learning_rate": 1.0661764705882354e-06, + "loss": 0.33233203887939455, + "step": 46600 + }, + { + "epoch": 98.1093585699264, + "grad_norm": 0.5630120038986206, + "learning_rate": 9.611344537815128e-07, + "loss": 0.33105762481689455, + "step": 46700 + }, + { + "epoch": 98.31966351209253, + "grad_norm": 0.5520943999290466, + "learning_rate": 8.5609243697479e-07, + "loss": 0.3307930374145508, + "step": 46800 + }, + { + "epoch": 98.52996845425868, + "grad_norm": 0.5917891263961792, + "learning_rate": 7.510504201680673e-07, + "loss": 0.3318499755859375, + "step": 46900 + }, + { + "epoch": 98.74027339642481, + "grad_norm": 0.5395123362541199, + "learning_rate": 6.460084033613445e-07, + "loss": 0.330290412902832, + "step": 47000 + }, + { + "epoch": 98.95057833859096, + "grad_norm": 0.5702670216560364, + "learning_rate": 5.409663865546218e-07, + "loss": 0.33196086883544923, + "step": 47100 + }, + { + "epoch": 99.15983175604627, + "grad_norm": 0.5607645511627197, + "learning_rate": 4.359243697478992e-07, + "loss": 0.3293312454223633, + "step": 47200 + }, + { + "epoch": 99.3701366982124, + "grad_norm": 0.6061931848526001, + "learning_rate": 3.308823529411765e-07, + "loss": 0.3300600051879883, + "step": 47300 + }, + { + "epoch": 99.58044164037855, + "grad_norm": 0.5829928517341614, + "learning_rate": 2.2584033613445382e-07, + "loss": 0.330217170715332, + "step": 47400 + }, + { + "epoch": 99.79074658254468, + "grad_norm": 0.5840853452682495, + "learning_rate": 1.2079831932773112e-07, + "loss": 0.33082305908203125, + "step": 47500 + }, + { + "epoch": 100.0, + "grad_norm": 0.8359466791152954, + "learning_rate": 1.5756302521008407e-08, + "loss": 0.3296760940551758, + "step": 47600 + } + ], + "logging_steps": 100, + "max_steps": 47600, + "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": 3.0671364722688e+16, + "train_batch_size": 8, + "trial_name": null, + "trial_params": null +} diff --git a/timecost/n11/realtabformer/rtf-n11-20260430_214424/rtf_checkpoints/checkpoint-47600/training_args.bin b/timecost/n11/realtabformer/rtf-n11-20260430_214424/rtf_checkpoints/checkpoint-47600/training_args.bin new file mode 100644 index 0000000000000000000000000000000000000000..34d68dc0e0fe1c1f12a2e581dd1b166aa7178a9e --- /dev/null +++ b/timecost/n11/realtabformer/rtf-n11-20260430_214424/rtf_checkpoints/checkpoint-47600/training_args.bin @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:9e2cd88337d1d846c6918d2b3b63fa3e5c93f12fefc082497590da854a564607 +size 5201 diff --git a/timecost/n11/realtabformer/rtf-n11-20260430_214424/runtime_result.json b/timecost/n11/realtabformer/rtf-n11-20260430_214424/runtime_result.json new file mode 100644 index 0000000000000000000000000000000000000000..3829224be214697c460d4f9f09d50ea0fea418e0 --- /dev/null +++ b/timecost/n11/realtabformer/rtf-n11-20260430_214424/runtime_result.json @@ -0,0 +1,27 @@ +{ + "dataset_id": "n11", + "model": "realtabformer", + "run_id": "rtf-n11-20260430_214424", + "public_gate_status": "pass", + "adapter_ready_status": "pass", + "train_status": "success", + "generate_status": "success", + "reason_code": null, + "reason_detail": null, + "artifacts": { + "synthetic_csv": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/n11/realtabformer/rtf-n11-20260430_214424/rtf-n11-15215-20260430_224120.csv", + "model_path": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/n11/realtabformer/rtf-n11-20260430_214424/models_100epochs" + }, + "timings": { + "train": { + "started_at": "2026-04-30T21:44:24", + "ended_at": "2026-04-30T22:41:20", + "duration_sec": 3415.525 + }, + "generate": { + "started_at": "2026-04-30T22:41:20", + "ended_at": "2026-04-30T22:44:27", + "duration_sec": 186.598 + } + } +} \ No newline at end of file diff --git a/timecost/n11/realtabformer/rtf-n11-20260430_214424/staged/public/staged_features.json b/timecost/n11/realtabformer/rtf-n11-20260430_214424/staged/public/staged_features.json new file mode 100644 index 0000000000000000000000000000000000000000..bdb9c28b9d52f06368851a08caadc305035fc1b7 --- /dev/null +++ b/timecost/n11/realtabformer/rtf-n11-20260430_214424/staged/public/staged_features.json @@ -0,0 +1,57 @@ +[ + { + "feature_name": "28.7967", + "data_type": "continuous", + "is_target": false + }, + { + "feature_name": "16.0021", + "data_type": "continuous", + "is_target": false + }, + { + "feature_name": "2.6449", + "data_type": "continuous", + "is_target": false + }, + { + "feature_name": "0.3918", + "data_type": "continuous", + "is_target": false + }, + { + "feature_name": "0.1982", + "data_type": "continuous", + "is_target": false + }, + { + "feature_name": "27.7004", + "data_type": "continuous", + "is_target": false + }, + { + "feature_name": "22.011", + "data_type": "continuous", + "is_target": false + }, + { + "feature_name": "-8.2027", + "data_type": "continuous", + "is_target": false + }, + { + "feature_name": "40.092", + "data_type": "continuous", + "is_target": false + }, + { + "feature_name": "81.8828", + "data_type": "continuous", + "is_target": false + }, + { + "feature_name": "g", + "data_type": "categorical", + "is_target": true + } +] \ No newline at end of file diff --git a/timecost/n11/realtabformer/rtf-n11-20260430_214424/staged/public/test.csv b/timecost/n11/realtabformer/rtf-n11-20260430_214424/staged/public/test.csv new file mode 100644 index 0000000000000000000000000000000000000000..59e413eb15b50a2ac49cd95bbe57b0d0018ccf95 --- /dev/null +++ b/timecost/n11/realtabformer/rtf-n11-20260430_214424/staged/public/test.csv @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:bf4e935f84569b849b662718eaa19be605037d46a5f7391f164728d6d9c3bb50 +size 148017 diff --git a/timecost/n11/realtabformer/rtf-n11-20260430_214424/staged/public/train.csv b/timecost/n11/realtabformer/rtf-n11-20260430_214424/staged/public/train.csv new file mode 100644 index 0000000000000000000000000000000000000000..cc5acd9fe00e8a233592b4da9797300adc83744b --- /dev/null +++ b/timecost/n11/realtabformer/rtf-n11-20260430_214424/staged/public/train.csv @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:3ab621ac8239797506ce800c1409422452b8127da93add91dd9e6d63ddeec6f7 +size 1182326 diff --git a/timecost/n11/realtabformer/rtf-n11-20260430_214424/staged/public/val.csv b/timecost/n11/realtabformer/rtf-n11-20260430_214424/staged/public/val.csv new file mode 100644 index 0000000000000000000000000000000000000000..e0a3b6ab9c53a7f8d97dff3290e643431f9ad023 --- /dev/null +++ b/timecost/n11/realtabformer/rtf-n11-20260430_214424/staged/public/val.csv @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:374e44edf25e58ca37eabbef0485c98cecdbdfa9d24da738937f404840bfad44 +size 147784 diff --git a/timecost/n11/realtabformer/rtf-n11-20260430_214424/staged/realtabformer/adapter_report.json b/timecost/n11/realtabformer/rtf-n11-20260430_214424/staged/realtabformer/adapter_report.json new file mode 100644 index 0000000000000000000000000000000000000000..b1aee719f45cbe6d93e143498f29f0728655d8a9 --- /dev/null +++ b/timecost/n11/realtabformer/rtf-n11-20260430_214424/staged/realtabformer/adapter_report.json @@ -0,0 +1,7 @@ +{ + "adapter_ready_status": "pass", + "adapter_fail_reason_code": null, + "adapter_fail_detail": null, + "adapter_transforms_applied": [], + "model_input_manifest": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/n11/realtabformer/rtf-n11-20260430_214424/staged/realtabformer/model_input_manifest.json" +} \ No newline at end of file diff --git a/timecost/n11/realtabformer/rtf-n11-20260430_214424/staged/realtabformer/adapter_transforms_applied.json b/timecost/n11/realtabformer/rtf-n11-20260430_214424/staged/realtabformer/adapter_transforms_applied.json new file mode 100644 index 0000000000000000000000000000000000000000..0637a088a01e8ddab3bf3fa98dbe804cbde1a0dc --- /dev/null +++ b/timecost/n11/realtabformer/rtf-n11-20260430_214424/staged/realtabformer/adapter_transforms_applied.json @@ -0,0 +1 @@ +[] \ No newline at end of file diff --git a/timecost/n11/realtabformer/rtf-n11-20260430_214424/staged/realtabformer/model_input_manifest.json b/timecost/n11/realtabformer/rtf-n11-20260430_214424/staged/realtabformer/model_input_manifest.json new file mode 100644 index 0000000000000000000000000000000000000000..eaf7e498ba1be53ec29eb2c35f01bb04406dcd6f --- /dev/null +++ b/timecost/n11/realtabformer/rtf-n11-20260430_214424/staged/realtabformer/model_input_manifest.json @@ -0,0 +1,242 @@ +{ + "dataset_id": "n11", + "model": "realtabformer", + "target_column": "g", + "task_type": "classification", + "column_schema": [ + { + "name": "28.7967", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 14962, + "unique_ratio": 0.983372, + "example_values": [ + "33.9347", + "118.601", + "19.83", + "33.2691", + "13.1404" + ] + } + }, + { + "name": "16.0021", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 14662, + "unique_ratio": 0.963654, + "example_values": [ + "10.8862", + "44.2479", + "7.3303", + "9.1269", + "10.8527" + ] + } + }, + { + "name": "2.6449", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 6336, + "unique_ratio": 0.416431, + "example_values": [ + "2.5328", + "3.5558", + "2.2541", + "2.6728", + "2.1775" + ] + } + }, + { + "name": "0.3918", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 6002, + "unique_ratio": 0.394479, + "example_values": [ + "0.4047", + "0.1769", + "0.7521", + "0.4437", + "0.7708" + ] + } + }, + { + "name": "0.1982", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 4230, + "unique_ratio": 0.278015, + "example_values": [ + "0.2155", + "0.1003", + "0.4095", + "0.2553", + "0.4352" + ] + } + }, + { + "name": "27.7004", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 14996, + "unique_ratio": 0.985606, + "example_values": [ + "-25.0369", + "-95.8266", + "2.8528", + "12.3981", + "14.3006" + ] + } + }, + { + "name": "22.011", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 14984, + "unique_ratio": 0.984818, + "example_values": [ + "-23.1659", + "14.9809", + "-9.7666", + "19.9081", + "-3.6418" + ] + } + }, + { + "name": "-8.2027", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 14795, + "unique_ratio": 0.972396, + "example_values": [ + "3.492", + "29.3812", + "5.0346", + "-5.3204", + "-11.3646" + ] + } + }, + { + "name": "40.092", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 14518, + "unique_ratio": 0.95419, + "example_values": [ + "0.334", + "4.134", + "13.794", + "20.78", + "20.124" + ] + } + }, + { + "name": "81.8828", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 14824, + "unique_ratio": 0.974302, + "example_values": [ + "132.907", + "286.69", + "108.464", + "180.4168", + "222.525" + ] + } + }, + { + "name": "g", + "role": "target", + "semantic_type": "categorical", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 2, + "unique_ratio": 0.000131, + "example_values": [ + "g", + "h" + ] + } + } + ], + "public_manifest": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/n11/realtabformer/rtf-n11-20260430_214424/public_gate/staged_input_manifest.json", + "train_csv": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/n11/realtabformer/rtf-n11-20260430_214424/staged/public/train.csv", + "val_csv": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/n11/realtabformer/rtf-n11-20260430_214424/staged/public/val.csv", + "test_csv": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/n11/realtabformer/rtf-n11-20260430_214424/staged/public/test.csv", + "features_json": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/n11/realtabformer/rtf-n11-20260430_214424/staged/public/staged_features.json", + "public_gate_report": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/n11/realtabformer/rtf-n11-20260430_214424/public_gate/public_gate_report.json" +} \ No newline at end of file diff --git a/timecost/n11/realtabformer/rtf-n11-20260430_214424/train_20260430_214425.log b/timecost/n11/realtabformer/rtf-n11-20260430_214424/train_20260430_214425.log new file mode 100644 index 0000000000000000000000000000000000000000..2c8a0a174e091d308fd2c8f8f66d59f35bf9b861 --- /dev/null +++ b/timecost/n11/realtabformer/rtf-n11-20260430_214424/train_20260430_214425.log @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:a251907a4bb8dae3c341085cfdeddd1d7d4c32ae7372b7532ba99efbe0993805 +size 1786102 diff --git a/timecost/n11/realtabformer/rtf-n11-20260501_010320/gen_20260501_015729.log b/timecost/n11/realtabformer/rtf-n11-20260501_010320/gen_20260501_015729.log new file mode 100644 index 0000000000000000000000000000000000000000..13184fe4d7d9887018afc1a5d0020609a6f011b8 --- /dev/null +++ b/timecost/n11/realtabformer/rtf-n11-20260501_010320/gen_20260501_015729.log @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:fb865521f80cbc3face967b85d9ffa763f480eea0a8b33269c0a0e347c7e90e9 +size 8214 diff --git a/timecost/n11/realtabformer/rtf-n11-20260501_010320/input_snapshot.json b/timecost/n11/realtabformer/rtf-n11-20260501_010320/input_snapshot.json new file mode 100644 index 0000000000000000000000000000000000000000..0db67527cc7642721f50da4bb0cc251c8b0301fc --- /dev/null +++ b/timecost/n11/realtabformer/rtf-n11-20260501_010320/input_snapshot.json @@ -0,0 +1,36 @@ +{ + "dataset_id": "n11", + "model": "realtabformer", + "inputs": { + "train_csv": { + "path": "/data/jialinzhang/SynthesizePipeline-server/DatasetNew/n11/n11-train.csv", + "exists": true, + "size": 1197106, + "sha256": "f8253c0573a8f028c0b1e17752d214fbad956d0ace350d0dee3947f3dfafbc75" + }, + "val_csv": { + "path": "/data/jialinzhang/SynthesizePipeline-server/DatasetNew/n11/n11-val.csv", + "exists": true, + "size": 149602, + "sha256": "7bde20178eb7de9523d4df719a3b461656f5704e3a03187c8289b2299dc8e458" + }, + "test_csv": { + "path": "/data/jialinzhang/SynthesizePipeline-server/DatasetNew/n11/n11-test.csv", + "exists": true, + "size": 149859, + "sha256": "855b55969de2da1341d428edef6dedfdf0c60f016b9fa08efaf8a883af6a2c53" + }, + "profile_json": { + "path": "/data/jialinzhang/SynthesizePipeline-server/DatasetNew/artifacts/data_core/tabular/n11/n11-dataset_profile.json", + "exists": true, + "size": 5104, + "sha256": "0bd368d22598246defd33bda12c9872165f26e798cc462ec472d193f322fba07" + }, + "contract_json": { + "path": "/data/jialinzhang/SynthesizePipeline-server/DatasetNew/artifacts/data_core/tabular/n11/n11-dataset_contract_v1.json", + "exists": true, + "size": 5874, + "sha256": "ad3f01eafe9fb37754eed9be9bd058390fd3a4f54d8be4ceb4b5326a9901da9d" + } + } +} \ No newline at end of file diff --git a/timecost/n11/realtabformer/rtf-n11-20260501_010320/models_100epochs/id000017775718473678360576/rtf_config.json b/timecost/n11/realtabformer/rtf-n11-20260501_010320/models_100epochs/id000017775718473678360576/rtf_config.json new file mode 100644 index 0000000000000000000000000000000000000000..b703eca49a942fed93e4b5ad6e9614f27eaa8dfd --- /dev/null +++ b/timecost/n11/realtabformer/rtf-n11-20260501_010320/models_100epochs/id000017775718473678360576/rtf_config.json @@ -0,0 +1 @@ +{"model_type": "tabular", "tabular_config": {"transformers_version": "5.5.3", "architectures": ["GPT2LMHeadModel"], "output_hidden_states": false, "return_dict": true, "dtype": "float32", "chunk_size_feed_forward": 0, "is_encoder_decoder": false, "id2label": {"0": "LABEL_0", "1": "LABEL_1"}, "label2id": {"LABEL_0": 0, "LABEL_1": 1}, "problem_type": null, "vocab_size": 597, "n_positions": 1024, "n_embd": 768, "n_layer": 6, "n_head": 12, "n_inner": null, "activation_function": "gelu_new", "resid_pdrop": 0.1, "embd_pdrop": 0.1, "attn_pdrop": 0.1, "layer_norm_epsilon": 1e-05, "initializer_range": 0.02, "summary_type": "cls_index", "summary_use_proj": true, "summary_activation": null, "summary_proj_to_labels": true, "summary_first_dropout": 0.1, "scale_attn_weights": true, "use_cache": false, "bos_token_id": 5, "eos_token_id": 6, "pad_token_id": null, "scale_attn_by_inverse_layer_idx": false, "reorder_and_upcast_attn": false, "add_cross_attention": false, "tie_word_embeddings": true, "_name_or_path": "", "model_type": "gpt2", "output_attentions": false}, "checkpoints_dir": "rtf_checkpoints", "samples_save_dir": "rtf_samples", "full_save_dir": "rtf_full_save", "epochs": 100, "batch_size": 8, "early_stopping_patience": 5, "early_stopping_threshold": 0, "training_args_kwargs": {"eval_strategy": "no", "output_dir": "rtf_checkpoints", "metric_for_best_model": "loss", "num_train_epochs": 100, "per_device_train_batch_size": 8, "per_device_eval_batch_size": 8, "gradient_accumulation_steps": 4, "remove_unused_columns": true, "logging_steps": 100, "save_steps": 100, "eval_steps": 100, "load_best_model_at_end": false, "save_total_limit": 6, "optim": "adamw_torch"}, "train_size": 1, "mask_rate": 0, "columns": ["28.7967", "16.0021", "2.6449", "0.3918", "0.1982", "27.7004", "22.011", "-8.2027", "40.092", "81.8828", "g"], "column_dtypes": {"28.7967": "float64", "16.0021": "float64", "2.6449": "float64", "0.3918": "float64", "0.1982": "float64", "27.7004": "float64", "22.011": "float64", "-8.2027": "float64", "40.092": "float64", "81.8828": "float64", "g": "object"}, "column_has_missing": {"28.7967": false, "16.0021": false, "2.6449": false, "0.3918": false, "0.1982": false, "27.7004": false, "22.011": false, "-8.2027": false, "40.092": false, "81.8828": false, "g": false}, "drop_na_cols": ["28.7967", "16.0021", "2.6449", "0.3918", "0.1982", "27.7004", "22.011", "-8.2027", "40.092", "81.8828", "g"], "processed_columns": ["00___NUMERIC___28.7967_00", "00___NUMERIC___28.7967_01", "00___NUMERIC___28.7967_02", "00___NUMERIC___28.7967_03", "00___NUMERIC___28.7967_04", "00___NUMERIC___28.7967_05", "00___NUMERIC___28.7967_06", "00___NUMERIC___28.7967_07", "01___NUMERIC___16.0021_00", "01___NUMERIC___16.0021_01", "01___NUMERIC___16.0021_02", "01___NUMERIC___16.0021_03", "01___NUMERIC___16.0021_04", "01___NUMERIC___16.0021_05", "01___NUMERIC___16.0021_06", "01___NUMERIC___16.0021_07", "02___NUMERIC___2.6449_00", "02___NUMERIC___2.6449_01", "02___NUMERIC___2.6449_02", "02___NUMERIC___2.6449_03", "02___NUMERIC___2.6449_04", "02___NUMERIC___2.6449_05", "03___NUMERIC___0.3918_00", "03___NUMERIC___0.3918_01", "03___NUMERIC___0.3918_02", "03___NUMERIC___0.3918_03", "03___NUMERIC___0.3918_04", "03___NUMERIC___0.3918_05", "04___NUMERIC___0.1982_00", "04___NUMERIC___0.1982_01", "04___NUMERIC___0.1982_02", "04___NUMERIC___0.1982_03", "04___NUMERIC___0.1982_04", "04___NUMERIC___0.1982_05", "05___NUMERIC___27.7004_00", "05___NUMERIC___27.7004_01", "05___NUMERIC___27.7004_02", "05___NUMERIC___27.7004_03", "05___NUMERIC___27.7004_04", "05___NUMERIC___27.7004_05", "05___NUMERIC___27.7004_06", "05___NUMERIC___27.7004_07", "05___NUMERIC___27.7004_08", "06___NUMERIC___22.011_00", "06___NUMERIC___22.011_01", "06___NUMERIC___22.011_02", "06___NUMERIC___22.011_03", "06___NUMERIC___22.011_04", "06___NUMERIC___22.011_05", "06___NUMERIC___22.011_06", "06___NUMERIC___22.011_07", "06___NUMERIC___22.011_08", "07___NUMERIC___-8.2027_00", "07___NUMERIC___-8.2027_01", "07___NUMERIC___-8.2027_02", "07___NUMERIC___-8.2027_03", "07___NUMERIC___-8.2027_04", "07___NUMERIC___-8.2027_05", "07___NUMERIC___-8.2027_06", "07___NUMERIC___-8.2027_07", "07___NUMERIC___-8.2027_08", "08___NUMERIC___40.092_00", "08___NUMERIC___40.092_01", "08___NUMERIC___40.092_02", "08___NUMERIC___40.092_03", "08___NUMERIC___40.092_04", "08___NUMERIC___40.092_05", "08___NUMERIC___40.092_06", "09___NUMERIC___81.8828_00", "09___NUMERIC___81.8828_01", "09___NUMERIC___81.8828_02", "09___NUMERIC___81.8828_03", "09___NUMERIC___81.8828_04", "09___NUMERIC___81.8828_05", "09___NUMERIC___81.8828_06", "09___NUMERIC___81.8828_07", "10___CATEGORICAL___g"], "numeric_columns": ["28.7967", "16.0021", "2.6449", "0.3918", "0.1982", "27.7004", "22.011", "-8.2027", "40.092", "81.8828"], "datetime_columns": [], "vocab": {"id2token": {"0": "[UNK]", "1": "[SEP]", "2": "[PAD]", "3": "[CLS]", "4": "[MASK]", "5": "[BOS]", "6": "[EOS]", "7": "[BMEM]", "8": "[EMEM]", "9": "[RMASK]", "10": "[SPTYPE]", "11": "00___NUMERIC___28.7967_00___0", "12": "00___NUMERIC___28.7967_00___1", "13": "00___NUMERIC___28.7967_00___2", "14": "00___NUMERIC___28.7967_00___3", "15": "00___NUMERIC___28.7967_01___0", "16": "00___NUMERIC___28.7967_01___1", "17": "00___NUMERIC___28.7967_01___2", "18": "00___NUMERIC___28.7967_01___3", "19": "00___NUMERIC___28.7967_01___4", "20": "00___NUMERIC___28.7967_01___5", "21": "00___NUMERIC___28.7967_01___6", "22": "00___NUMERIC___28.7967_01___7", "23": "00___NUMERIC___28.7967_01___8", "24": "00___NUMERIC___28.7967_01___9", "25": "00___NUMERIC___28.7967_02___0", "26": "00___NUMERIC___28.7967_02___1", "27": "00___NUMERIC___28.7967_02___2", "28": "00___NUMERIC___28.7967_02___3", "29": "00___NUMERIC___28.7967_02___4", "30": "00___NUMERIC___28.7967_02___5", "31": "00___NUMERIC___28.7967_02___6", "32": "00___NUMERIC___28.7967_02___7", "33": "00___NUMERIC___28.7967_02___8", "34": "00___NUMERIC___28.7967_02___9", "35": "00___NUMERIC___28.7967_03___.", "36": "00___NUMERIC___28.7967_04___0", "37": "00___NUMERIC___28.7967_04___1", "38": "00___NUMERIC___28.7967_04___2", "39": "00___NUMERIC___28.7967_04___3", "40": "00___NUMERIC___28.7967_04___4", "41": "00___NUMERIC___28.7967_04___5", "42": "00___NUMERIC___28.7967_04___6", "43": "00___NUMERIC___28.7967_04___7", "44": "00___NUMERIC___28.7967_04___8", "45": "00___NUMERIC___28.7967_04___9", "46": "00___NUMERIC___28.7967_05___0", "47": "00___NUMERIC___28.7967_05___1", "48": "00___NUMERIC___28.7967_05___2", "49": "00___NUMERIC___28.7967_05___3", "50": "00___NUMERIC___28.7967_05___4", "51": "00___NUMERIC___28.7967_05___5", "52": "00___NUMERIC___28.7967_05___6", "53": "00___NUMERIC___28.7967_05___7", "54": "00___NUMERIC___28.7967_05___8", "55": "00___NUMERIC___28.7967_05___9", "56": "00___NUMERIC___28.7967_06___0", "57": "00___NUMERIC___28.7967_06___1", "58": "00___NUMERIC___28.7967_06___2", "59": "00___NUMERIC___28.7967_06___3", "60": "00___NUMERIC___28.7967_06___4", "61": "00___NUMERIC___28.7967_06___5", "62": "00___NUMERIC___28.7967_06___6", "63": "00___NUMERIC___28.7967_06___7", "64": "00___NUMERIC___28.7967_06___8", "65": "00___NUMERIC___28.7967_06___9", "66": "00___NUMERIC___28.7967_07___0", "67": "00___NUMERIC___28.7967_07___1", "68": "00___NUMERIC___28.7967_07___2", "69": "00___NUMERIC___28.7967_07___3", "70": "00___NUMERIC___28.7967_07___4", "71": "00___NUMERIC___28.7967_07___5", "72": "00___NUMERIC___28.7967_07___6", "73": "00___NUMERIC___28.7967_07___7", "74": "00___NUMERIC___28.7967_07___8", "75": "00___NUMERIC___28.7967_07___9", "76": "01___NUMERIC___16.0021_00___0", "77": "01___NUMERIC___16.0021_00___1", "78": "01___NUMERIC___16.0021_00___2", "79": "01___NUMERIC___16.0021_01___0", "80": "01___NUMERIC___16.0021_01___1", "81": "01___NUMERIC___16.0021_01___2", "82": "01___NUMERIC___16.0021_01___3", "83": "01___NUMERIC___16.0021_01___4", "84": "01___NUMERIC___16.0021_01___5", "85": "01___NUMERIC___16.0021_01___6", "86": "01___NUMERIC___16.0021_01___7", "87": "01___NUMERIC___16.0021_01___8", "88": "01___NUMERIC___16.0021_01___9", "89": "01___NUMERIC___16.0021_02___0", "90": "01___NUMERIC___16.0021_02___1", "91": "01___NUMERIC___16.0021_02___2", "92": "01___NUMERIC___16.0021_02___3", "93": "01___NUMERIC___16.0021_02___4", "94": "01___NUMERIC___16.0021_02___5", "95": "01___NUMERIC___16.0021_02___6", "96": "01___NUMERIC___16.0021_02___7", "97": "01___NUMERIC___16.0021_02___8", "98": "01___NUMERIC___16.0021_02___9", "99": "01___NUMERIC___16.0021_03___.", "100": "01___NUMERIC___16.0021_04___0", "101": "01___NUMERIC___16.0021_04___1", "102": "01___NUMERIC___16.0021_04___2", "103": "01___NUMERIC___16.0021_04___3", "104": "01___NUMERIC___16.0021_04___4", "105": "01___NUMERIC___16.0021_04___5", "106": "01___NUMERIC___16.0021_04___6", "107": "01___NUMERIC___16.0021_04___7", "108": "01___NUMERIC___16.0021_04___8", "109": "01___NUMERIC___16.0021_04___9", "110": "01___NUMERIC___16.0021_05___0", "111": "01___NUMERIC___16.0021_05___1", "112": "01___NUMERIC___16.0021_05___2", "113": "01___NUMERIC___16.0021_05___3", "114": "01___NUMERIC___16.0021_05___4", "115": "01___NUMERIC___16.0021_05___5", "116": "01___NUMERIC___16.0021_05___6", "117": "01___NUMERIC___16.0021_05___7", "118": "01___NUMERIC___16.0021_05___8", "119": "01___NUMERIC___16.0021_05___9", "120": "01___NUMERIC___16.0021_06___0", "121": "01___NUMERIC___16.0021_06___1", "122": "01___NUMERIC___16.0021_06___2", "123": "01___NUMERIC___16.0021_06___3", "124": "01___NUMERIC___16.0021_06___4", "125": "01___NUMERIC___16.0021_06___5", "126": "01___NUMERIC___16.0021_06___6", "127": "01___NUMERIC___16.0021_06___7", "128": "01___NUMERIC___16.0021_06___8", "129": "01___NUMERIC___16.0021_06___9", "130": "01___NUMERIC___16.0021_07___0", "131": "01___NUMERIC___16.0021_07___1", "132": "01___NUMERIC___16.0021_07___2", "133": "01___NUMERIC___16.0021_07___3", "134": "01___NUMERIC___16.0021_07___4", "135": "01___NUMERIC___16.0021_07___5", "136": "01___NUMERIC___16.0021_07___6", "137": "01___NUMERIC___16.0021_07___7", "138": "01___NUMERIC___16.0021_07___8", "139": "01___NUMERIC___16.0021_07___9", "140": "02___NUMERIC___2.6449_00___1", "141": "02___NUMERIC___2.6449_00___2", "142": "02___NUMERIC___2.6449_00___3", "143": "02___NUMERIC___2.6449_00___4", "144": "02___NUMERIC___2.6449_00___5", "145": "02___NUMERIC___2.6449_01___.", "146": "02___NUMERIC___2.6449_02___0", "147": "02___NUMERIC___2.6449_02___1", "148": "02___NUMERIC___2.6449_02___2", "149": "02___NUMERIC___2.6449_02___3", "150": "02___NUMERIC___2.6449_02___4", "151": "02___NUMERIC___2.6449_02___5", "152": "02___NUMERIC___2.6449_02___6", "153": "02___NUMERIC___2.6449_02___7", "154": "02___NUMERIC___2.6449_02___8", "155": "02___NUMERIC___2.6449_02___9", "156": "02___NUMERIC___2.6449_03___0", "157": "02___NUMERIC___2.6449_03___1", "158": "02___NUMERIC___2.6449_03___2", "159": "02___NUMERIC___2.6449_03___3", "160": "02___NUMERIC___2.6449_03___4", "161": "02___NUMERIC___2.6449_03___5", "162": "02___NUMERIC___2.6449_03___6", "163": "02___NUMERIC___2.6449_03___7", "164": "02___NUMERIC___2.6449_03___8", "165": "02___NUMERIC___2.6449_03___9", "166": "02___NUMERIC___2.6449_04___0", "167": "02___NUMERIC___2.6449_04___1", "168": "02___NUMERIC___2.6449_04___2", "169": "02___NUMERIC___2.6449_04___3", "170": "02___NUMERIC___2.6449_04___4", "171": "02___NUMERIC___2.6449_04___5", "172": "02___NUMERIC___2.6449_04___6", "173": "02___NUMERIC___2.6449_04___7", "174": "02___NUMERIC___2.6449_04___8", "175": "02___NUMERIC___2.6449_04___9", "176": "02___NUMERIC___2.6449_05___0", "177": "02___NUMERIC___2.6449_05___1", "178": "02___NUMERIC___2.6449_05___2", "179": "02___NUMERIC___2.6449_05___3", "180": "02___NUMERIC___2.6449_05___4", "181": "02___NUMERIC___2.6449_05___5", "182": "02___NUMERIC___2.6449_05___6", "183": "02___NUMERIC___2.6449_05___7", "184": "02___NUMERIC___2.6449_05___8", "185": "02___NUMERIC___2.6449_05___9", "186": "03___NUMERIC___0.3918_00___0", "187": "03___NUMERIC___0.3918_01___.", "188": "03___NUMERIC___0.3918_02___0", "189": "03___NUMERIC___0.3918_02___1", "190": "03___NUMERIC___0.3918_02___2", "191": "03___NUMERIC___0.3918_02___3", "192": "03___NUMERIC___0.3918_02___4", "193": "03___NUMERIC___0.3918_02___5", "194": "03___NUMERIC___0.3918_02___6", "195": "03___NUMERIC___0.3918_02___7", "196": "03___NUMERIC___0.3918_02___8", "197": "03___NUMERIC___0.3918_03___0", "198": "03___NUMERIC___0.3918_03___1", "199": "03___NUMERIC___0.3918_03___2", "200": "03___NUMERIC___0.3918_03___3", "201": "03___NUMERIC___0.3918_03___4", "202": "03___NUMERIC___0.3918_03___5", "203": "03___NUMERIC___0.3918_03___6", "204": "03___NUMERIC___0.3918_03___7", "205": "03___NUMERIC___0.3918_03___8", "206": "03___NUMERIC___0.3918_03___9", "207": "03___NUMERIC___0.3918_04___0", "208": "03___NUMERIC___0.3918_04___1", "209": "03___NUMERIC___0.3918_04___2", "210": "03___NUMERIC___0.3918_04___3", "211": "03___NUMERIC___0.3918_04___4", "212": "03___NUMERIC___0.3918_04___5", "213": "03___NUMERIC___0.3918_04___6", "214": "03___NUMERIC___0.3918_04___7", "215": "03___NUMERIC___0.3918_04___8", "216": "03___NUMERIC___0.3918_04___9", "217": "03___NUMERIC___0.3918_05___0", "218": "03___NUMERIC___0.3918_05___1", "219": "03___NUMERIC___0.3918_05___2", "220": "03___NUMERIC___0.3918_05___3", "221": "03___NUMERIC___0.3918_05___4", "222": "03___NUMERIC___0.3918_05___5", "223": "03___NUMERIC___0.3918_05___6", "224": "03___NUMERIC___0.3918_05___7", "225": "03___NUMERIC___0.3918_05___8", "226": "03___NUMERIC___0.3918_05___9", "227": "04___NUMERIC___0.1982_00___0", "228": "04___NUMERIC___0.1982_01___.", "229": "04___NUMERIC___0.1982_02___0", "230": "04___NUMERIC___0.1982_02___1", "231": "04___NUMERIC___0.1982_02___2", "232": "04___NUMERIC___0.1982_02___3", "233": "04___NUMERIC___0.1982_02___4", "234": "04___NUMERIC___0.1982_02___5", "235": "04___NUMERIC___0.1982_02___6", "236": "04___NUMERIC___0.1982_03___0", "237": "04___NUMERIC___0.1982_03___1", "238": "04___NUMERIC___0.1982_03___2", "239": "04___NUMERIC___0.1982_03___3", "240": "04___NUMERIC___0.1982_03___4", "241": "04___NUMERIC___0.1982_03___5", "242": "04___NUMERIC___0.1982_03___6", "243": "04___NUMERIC___0.1982_03___7", "244": "04___NUMERIC___0.1982_03___8", "245": "04___NUMERIC___0.1982_03___9", "246": "04___NUMERIC___0.1982_04___0", "247": "04___NUMERIC___0.1982_04___1", "248": "04___NUMERIC___0.1982_04___2", "249": "04___NUMERIC___0.1982_04___3", "250": "04___NUMERIC___0.1982_04___4", "251": "04___NUMERIC___0.1982_04___5", "252": "04___NUMERIC___0.1982_04___6", "253": "04___NUMERIC___0.1982_04___7", "254": "04___NUMERIC___0.1982_04___8", "255": "04___NUMERIC___0.1982_04___9", "256": "04___NUMERIC___0.1982_05___0", "257": "04___NUMERIC___0.1982_05___1", "258": "04___NUMERIC___0.1982_05___2", "259": "04___NUMERIC___0.1982_05___3", "260": "04___NUMERIC___0.1982_05___4", "261": "04___NUMERIC___0.1982_05___5", "262": "04___NUMERIC___0.1982_05___6", "263": "04___NUMERIC___0.1982_05___7", "264": "04___NUMERIC___0.1982_05___8", "265": "04___NUMERIC___0.1982_05___9", "266": "05___NUMERIC___27.7004_00___-", "267": "05___NUMERIC___27.7004_00___0", "268": "05___NUMERIC___27.7004_01___0", "269": "05___NUMERIC___27.7004_01___1", "270": "05___NUMERIC___27.7004_01___2", "271": "05___NUMERIC___27.7004_01___3", "272": "05___NUMERIC___27.7004_01___4", "273": "05___NUMERIC___27.7004_01___5", "274": "05___NUMERIC___27.7004_02___0", "275": "05___NUMERIC___27.7004_02___1", "276": "05___NUMERIC___27.7004_02___2", "277": "05___NUMERIC___27.7004_02___3", "278": "05___NUMERIC___27.7004_02___4", "279": "05___NUMERIC___27.7004_02___5", "280": "05___NUMERIC___27.7004_02___6", "281": "05___NUMERIC___27.7004_02___7", "282": "05___NUMERIC___27.7004_02___8", "283": "05___NUMERIC___27.7004_02___9", "284": "05___NUMERIC___27.7004_03___0", "285": "05___NUMERIC___27.7004_03___1", "286": "05___NUMERIC___27.7004_03___2", "287": "05___NUMERIC___27.7004_03___3", "288": "05___NUMERIC___27.7004_03___4", "289": "05___NUMERIC___27.7004_03___5", "290": "05___NUMERIC___27.7004_03___6", "291": "05___NUMERIC___27.7004_03___7", "292": "05___NUMERIC___27.7004_03___8", "293": "05___NUMERIC___27.7004_03___9", "294": "05___NUMERIC___27.7004_04___.", "295": "05___NUMERIC___27.7004_05___0", "296": "05___NUMERIC___27.7004_05___1", "297": "05___NUMERIC___27.7004_05___2", "298": "05___NUMERIC___27.7004_05___3", "299": "05___NUMERIC___27.7004_05___4", "300": "05___NUMERIC___27.7004_05___5", "301": "05___NUMERIC___27.7004_05___6", "302": "05___NUMERIC___27.7004_05___7", "303": "05___NUMERIC___27.7004_05___8", "304": "05___NUMERIC___27.7004_05___9", "305": "05___NUMERIC___27.7004_06___0", "306": "05___NUMERIC___27.7004_06___1", "307": "05___NUMERIC___27.7004_06___2", "308": "05___NUMERIC___27.7004_06___3", "309": "05___NUMERIC___27.7004_06___4", "310": "05___NUMERIC___27.7004_06___5", "311": "05___NUMERIC___27.7004_06___6", "312": "05___NUMERIC___27.7004_06___7", "313": "05___NUMERIC___27.7004_06___8", "314": "05___NUMERIC___27.7004_06___9", "315": "05___NUMERIC___27.7004_07___0", "316": "05___NUMERIC___27.7004_07___1", "317": "05___NUMERIC___27.7004_07___2", "318": "05___NUMERIC___27.7004_07___3", "319": "05___NUMERIC___27.7004_07___4", "320": "05___NUMERIC___27.7004_07___5", "321": "05___NUMERIC___27.7004_07___6", "322": "05___NUMERIC___27.7004_07___7", "323": "05___NUMERIC___27.7004_07___8", "324": "05___NUMERIC___27.7004_07___9", "325": "05___NUMERIC___27.7004_08___0", "326": "05___NUMERIC___27.7004_08___1", "327": "05___NUMERIC___27.7004_08___2", "328": "05___NUMERIC___27.7004_08___3", "329": "05___NUMERIC___27.7004_08___4", "330": "05___NUMERIC___27.7004_08___5", "331": "05___NUMERIC___27.7004_08___6", "332": "05___NUMERIC___27.7004_08___7", "333": "05___NUMERIC___27.7004_08___8", "334": "05___NUMERIC___27.7004_08___9", "335": "06___NUMERIC___22.011_00___-", "336": "06___NUMERIC___22.011_00___0", "337": "06___NUMERIC___22.011_01___0", "338": "06___NUMERIC___22.011_01___1", "339": "06___NUMERIC___22.011_01___2", "340": "06___NUMERIC___22.011_01___3", "341": "06___NUMERIC___22.011_02___0", "342": "06___NUMERIC___22.011_02___1", "343": "06___NUMERIC___22.011_02___2", "344": "06___NUMERIC___22.011_02___3", "345": "06___NUMERIC___22.011_02___4", "346": "06___NUMERIC___22.011_02___5", "347": "06___NUMERIC___22.011_02___6", "348": "06___NUMERIC___22.011_02___7", "349": "06___NUMERIC___22.011_02___8", "350": "06___NUMERIC___22.011_02___9", "351": "06___NUMERIC___22.011_03___0", "352": "06___NUMERIC___22.011_03___1", "353": "06___NUMERIC___22.011_03___2", "354": "06___NUMERIC___22.011_03___3", "355": "06___NUMERIC___22.011_03___4", "356": "06___NUMERIC___22.011_03___5", "357": "06___NUMERIC___22.011_03___6", "358": "06___NUMERIC___22.011_03___7", "359": "06___NUMERIC___22.011_03___8", "360": "06___NUMERIC___22.011_03___9", "361": "06___NUMERIC___22.011_04___.", "362": "06___NUMERIC___22.011_05___0", "363": "06___NUMERIC___22.011_05___1", "364": "06___NUMERIC___22.011_05___2", "365": "06___NUMERIC___22.011_05___3", "366": "06___NUMERIC___22.011_05___4", "367": "06___NUMERIC___22.011_05___5", "368": "06___NUMERIC___22.011_05___6", "369": "06___NUMERIC___22.011_05___7", "370": "06___NUMERIC___22.011_05___8", "371": "06___NUMERIC___22.011_05___9", "372": "06___NUMERIC___22.011_06___0", "373": "06___NUMERIC___22.011_06___1", "374": "06___NUMERIC___22.011_06___2", "375": "06___NUMERIC___22.011_06___3", "376": "06___NUMERIC___22.011_06___4", "377": "06___NUMERIC___22.011_06___5", "378": "06___NUMERIC___22.011_06___6", "379": "06___NUMERIC___22.011_06___7", "380": "06___NUMERIC___22.011_06___8", "381": "06___NUMERIC___22.011_06___9", "382": "06___NUMERIC___22.011_07___0", "383": "06___NUMERIC___22.011_07___1", "384": "06___NUMERIC___22.011_07___2", "385": "06___NUMERIC___22.011_07___3", "386": "06___NUMERIC___22.011_07___4", "387": "06___NUMERIC___22.011_07___5", "388": "06___NUMERIC___22.011_07___6", "389": "06___NUMERIC___22.011_07___7", "390": "06___NUMERIC___22.011_07___8", "391": "06___NUMERIC___22.011_07___9", "392": "06___NUMERIC___22.011_08___0", "393": "06___NUMERIC___22.011_08___1", "394": "06___NUMERIC___22.011_08___2", "395": "06___NUMERIC___22.011_08___3", "396": "06___NUMERIC___22.011_08___4", "397": "06___NUMERIC___22.011_08___5", "398": "06___NUMERIC___22.011_08___6", "399": "06___NUMERIC___22.011_08___7", "400": "06___NUMERIC___22.011_08___8", "401": "06___NUMERIC___22.011_08___9", "402": "07___NUMERIC___-8.2027_00___-", "403": "07___NUMERIC___-8.2027_00___0", "404": "07___NUMERIC___-8.2027_01___0", "405": "07___NUMERIC___-8.2027_01___1", "406": "07___NUMERIC___-8.2027_01___2", "407": "07___NUMERIC___-8.2027_02___0", "408": "07___NUMERIC___-8.2027_02___1", "409": "07___NUMERIC___-8.2027_02___2", "410": "07___NUMERIC___-8.2027_02___3", "411": "07___NUMERIC___-8.2027_02___4", "412": "07___NUMERIC___-8.2027_02___5", "413": "07___NUMERIC___-8.2027_02___6", "414": "07___NUMERIC___-8.2027_02___7", "415": "07___NUMERIC___-8.2027_02___8", "416": "07___NUMERIC___-8.2027_02___9", "417": "07___NUMERIC___-8.2027_03___0", "418": "07___NUMERIC___-8.2027_03___1", "419": "07___NUMERIC___-8.2027_03___2", "420": "07___NUMERIC___-8.2027_03___3", "421": "07___NUMERIC___-8.2027_03___4", "422": "07___NUMERIC___-8.2027_03___5", "423": "07___NUMERIC___-8.2027_03___6", "424": "07___NUMERIC___-8.2027_03___7", "425": "07___NUMERIC___-8.2027_03___8", "426": "07___NUMERIC___-8.2027_03___9", "427": "07___NUMERIC___-8.2027_04___.", "428": "07___NUMERIC___-8.2027_05___0", "429": "07___NUMERIC___-8.2027_05___1", "430": "07___NUMERIC___-8.2027_05___2", "431": "07___NUMERIC___-8.2027_05___3", "432": "07___NUMERIC___-8.2027_05___4", "433": "07___NUMERIC___-8.2027_05___5", "434": "07___NUMERIC___-8.2027_05___6", "435": "07___NUMERIC___-8.2027_05___7", "436": "07___NUMERIC___-8.2027_05___8", "437": "07___NUMERIC___-8.2027_05___9", "438": "07___NUMERIC___-8.2027_06___0", "439": "07___NUMERIC___-8.2027_06___1", "440": "07___NUMERIC___-8.2027_06___2", "441": "07___NUMERIC___-8.2027_06___3", "442": "07___NUMERIC___-8.2027_06___4", "443": "07___NUMERIC___-8.2027_06___5", "444": "07___NUMERIC___-8.2027_06___6", "445": "07___NUMERIC___-8.2027_06___7", "446": "07___NUMERIC___-8.2027_06___8", "447": "07___NUMERIC___-8.2027_06___9", "448": "07___NUMERIC___-8.2027_07___0", "449": "07___NUMERIC___-8.2027_07___1", "450": "07___NUMERIC___-8.2027_07___2", "451": "07___NUMERIC___-8.2027_07___3", "452": "07___NUMERIC___-8.2027_07___4", "453": "07___NUMERIC___-8.2027_07___5", "454": "07___NUMERIC___-8.2027_07___6", "455": "07___NUMERIC___-8.2027_07___7", "456": "07___NUMERIC___-8.2027_07___8", "457": "07___NUMERIC___-8.2027_07___9", "458": "07___NUMERIC___-8.2027_08___0", "459": "07___NUMERIC___-8.2027_08___1", "460": "07___NUMERIC___-8.2027_08___2", "461": "07___NUMERIC___-8.2027_08___3", "462": "07___NUMERIC___-8.2027_08___4", "463": "07___NUMERIC___-8.2027_08___5", "464": "07___NUMERIC___-8.2027_08___6", "465": "07___NUMERIC___-8.2027_08___7", "466": "07___NUMERIC___-8.2027_08___8", "467": "07___NUMERIC___-8.2027_08___9", "468": "08___NUMERIC___40.092_00___0", "469": "08___NUMERIC___40.092_00___1", "470": "08___NUMERIC___40.092_00___2", "471": "08___NUMERIC___40.092_00___3", "472": "08___NUMERIC___40.092_00___4", "473": "08___NUMERIC___40.092_00___5", "474": "08___NUMERIC___40.092_00___6", "475": "08___NUMERIC___40.092_00___7", "476": "08___NUMERIC___40.092_00___8", "477": "08___NUMERIC___40.092_00___9", "478": "08___NUMERIC___40.092_01___0", "479": "08___NUMERIC___40.092_01___1", "480": "08___NUMERIC___40.092_01___2", "481": "08___NUMERIC___40.092_01___3", "482": "08___NUMERIC___40.092_01___4", "483": "08___NUMERIC___40.092_01___5", "484": "08___NUMERIC___40.092_01___6", "485": "08___NUMERIC___40.092_01___7", "486": "08___NUMERIC___40.092_01___8", "487": "08___NUMERIC___40.092_01___9", "488": "08___NUMERIC___40.092_02___.", "489": "08___NUMERIC___40.092_03___0", "490": "08___NUMERIC___40.092_03___1", "491": "08___NUMERIC___40.092_03___2", "492": "08___NUMERIC___40.092_03___3", "493": "08___NUMERIC___40.092_03___4", "494": "08___NUMERIC___40.092_03___5", "495": "08___NUMERIC___40.092_03___6", "496": "08___NUMERIC___40.092_03___7", "497": "08___NUMERIC___40.092_03___8", "498": "08___NUMERIC___40.092_03___9", "499": "08___NUMERIC___40.092_04___0", "500": "08___NUMERIC___40.092_04___1", "501": "08___NUMERIC___40.092_04___2", "502": "08___NUMERIC___40.092_04___3", "503": "08___NUMERIC___40.092_04___4", "504": "08___NUMERIC___40.092_04___5", "505": "08___NUMERIC___40.092_04___6", "506": "08___NUMERIC___40.092_04___7", "507": "08___NUMERIC___40.092_04___8", "508": "08___NUMERIC___40.092_04___9", "509": "08___NUMERIC___40.092_05___0", "510": "08___NUMERIC___40.092_05___1", "511": "08___NUMERIC___40.092_05___2", "512": "08___NUMERIC___40.092_05___3", "513": "08___NUMERIC___40.092_05___4", "514": "08___NUMERIC___40.092_05___5", "515": "08___NUMERIC___40.092_05___6", "516": "08___NUMERIC___40.092_05___7", "517": "08___NUMERIC___40.092_05___8", "518": "08___NUMERIC___40.092_05___9", "519": "08___NUMERIC___40.092_06___0", "520": "08___NUMERIC___40.092_06___1", "521": "08___NUMERIC___40.092_06___2", "522": "08___NUMERIC___40.092_06___3", "523": "08___NUMERIC___40.092_06___4", "524": "08___NUMERIC___40.092_06___5", "525": "08___NUMERIC___40.092_06___6", "526": "08___NUMERIC___40.092_06___7", "527": "08___NUMERIC___40.092_06___8", "528": "08___NUMERIC___40.092_06___9", "529": "09___NUMERIC___81.8828_00___0", "530": "09___NUMERIC___81.8828_00___1", "531": "09___NUMERIC___81.8828_00___2", "532": "09___NUMERIC___81.8828_00___3", "533": "09___NUMERIC___81.8828_00___4", "534": "09___NUMERIC___81.8828_01___0", "535": "09___NUMERIC___81.8828_01___1", "536": "09___NUMERIC___81.8828_01___2", "537": "09___NUMERIC___81.8828_01___3", "538": "09___NUMERIC___81.8828_01___4", "539": "09___NUMERIC___81.8828_01___5", "540": "09___NUMERIC___81.8828_01___6", "541": "09___NUMERIC___81.8828_01___7", "542": "09___NUMERIC___81.8828_01___8", "543": "09___NUMERIC___81.8828_01___9", "544": "09___NUMERIC___81.8828_02___0", "545": "09___NUMERIC___81.8828_02___1", "546": "09___NUMERIC___81.8828_02___2", "547": "09___NUMERIC___81.8828_02___3", "548": "09___NUMERIC___81.8828_02___4", "549": "09___NUMERIC___81.8828_02___5", "550": "09___NUMERIC___81.8828_02___6", "551": "09___NUMERIC___81.8828_02___7", "552": "09___NUMERIC___81.8828_02___8", "553": "09___NUMERIC___81.8828_02___9", "554": "09___NUMERIC___81.8828_03___.", "555": "09___NUMERIC___81.8828_04___0", "556": "09___NUMERIC___81.8828_04___1", "557": "09___NUMERIC___81.8828_04___2", "558": "09___NUMERIC___81.8828_04___3", "559": "09___NUMERIC___81.8828_04___4", "560": "09___NUMERIC___81.8828_04___5", "561": "09___NUMERIC___81.8828_04___6", "562": "09___NUMERIC___81.8828_04___7", "563": "09___NUMERIC___81.8828_04___8", "564": "09___NUMERIC___81.8828_04___9", "565": "09___NUMERIC___81.8828_05___0", "566": "09___NUMERIC___81.8828_05___1", "567": "09___NUMERIC___81.8828_05___2", "568": "09___NUMERIC___81.8828_05___3", "569": "09___NUMERIC___81.8828_05___4", "570": "09___NUMERIC___81.8828_05___5", "571": "09___NUMERIC___81.8828_05___6", "572": "09___NUMERIC___81.8828_05___7", "573": "09___NUMERIC___81.8828_05___8", "574": "09___NUMERIC___81.8828_05___9", "575": "09___NUMERIC___81.8828_06___0", "576": "09___NUMERIC___81.8828_06___1", "577": "09___NUMERIC___81.8828_06___2", "578": "09___NUMERIC___81.8828_06___3", "579": "09___NUMERIC___81.8828_06___4", "580": "09___NUMERIC___81.8828_06___5", "581": "09___NUMERIC___81.8828_06___6", "582": "09___NUMERIC___81.8828_06___7", "583": "09___NUMERIC___81.8828_06___8", "584": "09___NUMERIC___81.8828_06___9", "585": "09___NUMERIC___81.8828_07___0", "586": "09___NUMERIC___81.8828_07___1", "587": "09___NUMERIC___81.8828_07___2", "588": "09___NUMERIC___81.8828_07___3", "589": "09___NUMERIC___81.8828_07___4", "590": "09___NUMERIC___81.8828_07___5", "591": "09___NUMERIC___81.8828_07___6", "592": "09___NUMERIC___81.8828_07___7", "593": "09___NUMERIC___81.8828_07___8", "594": "09___NUMERIC___81.8828_07___9", "595": "10___CATEGORICAL___g___g", "596": "10___CATEGORICAL___g___h"}, "token2id": {"[UNK]": 0, "[SEP]": 1, "[PAD]": 2, "[CLS]": 3, "[MASK]": 4, "[BOS]": 5, "[EOS]": 6, "[BMEM]": 7, "[EMEM]": 8, "[RMASK]": 9, "[SPTYPE]": 10, "00___NUMERIC___28.7967_00___0": 11, "00___NUMERIC___28.7967_00___1": 12, "00___NUMERIC___28.7967_00___2": 13, "00___NUMERIC___28.7967_00___3": 14, "00___NUMERIC___28.7967_01___0": 15, "00___NUMERIC___28.7967_01___1": 16, "00___NUMERIC___28.7967_01___2": 17, "00___NUMERIC___28.7967_01___3": 18, "00___NUMERIC___28.7967_01___4": 19, "00___NUMERIC___28.7967_01___5": 20, "00___NUMERIC___28.7967_01___6": 21, "00___NUMERIC___28.7967_01___7": 22, "00___NUMERIC___28.7967_01___8": 23, "00___NUMERIC___28.7967_01___9": 24, "00___NUMERIC___28.7967_02___0": 25, "00___NUMERIC___28.7967_02___1": 26, "00___NUMERIC___28.7967_02___2": 27, "00___NUMERIC___28.7967_02___3": 28, "00___NUMERIC___28.7967_02___4": 29, "00___NUMERIC___28.7967_02___5": 30, "00___NUMERIC___28.7967_02___6": 31, "00___NUMERIC___28.7967_02___7": 32, "00___NUMERIC___28.7967_02___8": 33, "00___NUMERIC___28.7967_02___9": 34, "00___NUMERIC___28.7967_03___.": 35, "00___NUMERIC___28.7967_04___0": 36, "00___NUMERIC___28.7967_04___1": 37, "00___NUMERIC___28.7967_04___2": 38, "00___NUMERIC___28.7967_04___3": 39, "00___NUMERIC___28.7967_04___4": 40, "00___NUMERIC___28.7967_04___5": 41, "00___NUMERIC___28.7967_04___6": 42, "00___NUMERIC___28.7967_04___7": 43, "00___NUMERIC___28.7967_04___8": 44, "00___NUMERIC___28.7967_04___9": 45, "00___NUMERIC___28.7967_05___0": 46, "00___NUMERIC___28.7967_05___1": 47, "00___NUMERIC___28.7967_05___2": 48, "00___NUMERIC___28.7967_05___3": 49, "00___NUMERIC___28.7967_05___4": 50, "00___NUMERIC___28.7967_05___5": 51, "00___NUMERIC___28.7967_05___6": 52, "00___NUMERIC___28.7967_05___7": 53, "00___NUMERIC___28.7967_05___8": 54, "00___NUMERIC___28.7967_05___9": 55, "00___NUMERIC___28.7967_06___0": 56, "00___NUMERIC___28.7967_06___1": 57, "00___NUMERIC___28.7967_06___2": 58, "00___NUMERIC___28.7967_06___3": 59, "00___NUMERIC___28.7967_06___4": 60, "00___NUMERIC___28.7967_06___5": 61, "00___NUMERIC___28.7967_06___6": 62, "00___NUMERIC___28.7967_06___7": 63, "00___NUMERIC___28.7967_06___8": 64, "00___NUMERIC___28.7967_06___9": 65, "00___NUMERIC___28.7967_07___0": 66, "00___NUMERIC___28.7967_07___1": 67, "00___NUMERIC___28.7967_07___2": 68, "00___NUMERIC___28.7967_07___3": 69, "00___NUMERIC___28.7967_07___4": 70, "00___NUMERIC___28.7967_07___5": 71, "00___NUMERIC___28.7967_07___6": 72, "00___NUMERIC___28.7967_07___7": 73, "00___NUMERIC___28.7967_07___8": 74, "00___NUMERIC___28.7967_07___9": 75, "01___NUMERIC___16.0021_00___0": 76, "01___NUMERIC___16.0021_00___1": 77, "01___NUMERIC___16.0021_00___2": 78, "01___NUMERIC___16.0021_01___0": 79, "01___NUMERIC___16.0021_01___1": 80, "01___NUMERIC___16.0021_01___2": 81, "01___NUMERIC___16.0021_01___3": 82, "01___NUMERIC___16.0021_01___4": 83, "01___NUMERIC___16.0021_01___5": 84, "01___NUMERIC___16.0021_01___6": 85, "01___NUMERIC___16.0021_01___7": 86, "01___NUMERIC___16.0021_01___8": 87, "01___NUMERIC___16.0021_01___9": 88, "01___NUMERIC___16.0021_02___0": 89, "01___NUMERIC___16.0021_02___1": 90, "01___NUMERIC___16.0021_02___2": 91, "01___NUMERIC___16.0021_02___3": 92, "01___NUMERIC___16.0021_02___4": 93, "01___NUMERIC___16.0021_02___5": 94, "01___NUMERIC___16.0021_02___6": 95, "01___NUMERIC___16.0021_02___7": 96, "01___NUMERIC___16.0021_02___8": 97, "01___NUMERIC___16.0021_02___9": 98, "01___NUMERIC___16.0021_03___.": 99, "01___NUMERIC___16.0021_04___0": 100, "01___NUMERIC___16.0021_04___1": 101, "01___NUMERIC___16.0021_04___2": 102, "01___NUMERIC___16.0021_04___3": 103, "01___NUMERIC___16.0021_04___4": 104, "01___NUMERIC___16.0021_04___5": 105, "01___NUMERIC___16.0021_04___6": 106, "01___NUMERIC___16.0021_04___7": 107, "01___NUMERIC___16.0021_04___8": 108, "01___NUMERIC___16.0021_04___9": 109, "01___NUMERIC___16.0021_05___0": 110, "01___NUMERIC___16.0021_05___1": 111, "01___NUMERIC___16.0021_05___2": 112, "01___NUMERIC___16.0021_05___3": 113, "01___NUMERIC___16.0021_05___4": 114, "01___NUMERIC___16.0021_05___5": 115, "01___NUMERIC___16.0021_05___6": 116, "01___NUMERIC___16.0021_05___7": 117, "01___NUMERIC___16.0021_05___8": 118, "01___NUMERIC___16.0021_05___9": 119, "01___NUMERIC___16.0021_06___0": 120, "01___NUMERIC___16.0021_06___1": 121, "01___NUMERIC___16.0021_06___2": 122, "01___NUMERIC___16.0021_06___3": 123, "01___NUMERIC___16.0021_06___4": 124, "01___NUMERIC___16.0021_06___5": 125, "01___NUMERIC___16.0021_06___6": 126, "01___NUMERIC___16.0021_06___7": 127, "01___NUMERIC___16.0021_06___8": 128, "01___NUMERIC___16.0021_06___9": 129, "01___NUMERIC___16.0021_07___0": 130, "01___NUMERIC___16.0021_07___1": 131, "01___NUMERIC___16.0021_07___2": 132, "01___NUMERIC___16.0021_07___3": 133, "01___NUMERIC___16.0021_07___4": 134, "01___NUMERIC___16.0021_07___5": 135, "01___NUMERIC___16.0021_07___6": 136, "01___NUMERIC___16.0021_07___7": 137, "01___NUMERIC___16.0021_07___8": 138, "01___NUMERIC___16.0021_07___9": 139, "02___NUMERIC___2.6449_00___1": 140, "02___NUMERIC___2.6449_00___2": 141, "02___NUMERIC___2.6449_00___3": 142, "02___NUMERIC___2.6449_00___4": 143, "02___NUMERIC___2.6449_00___5": 144, "02___NUMERIC___2.6449_01___.": 145, "02___NUMERIC___2.6449_02___0": 146, "02___NUMERIC___2.6449_02___1": 147, "02___NUMERIC___2.6449_02___2": 148, "02___NUMERIC___2.6449_02___3": 149, "02___NUMERIC___2.6449_02___4": 150, "02___NUMERIC___2.6449_02___5": 151, "02___NUMERIC___2.6449_02___6": 152, "02___NUMERIC___2.6449_02___7": 153, "02___NUMERIC___2.6449_02___8": 154, "02___NUMERIC___2.6449_02___9": 155, "02___NUMERIC___2.6449_03___0": 156, "02___NUMERIC___2.6449_03___1": 157, "02___NUMERIC___2.6449_03___2": 158, "02___NUMERIC___2.6449_03___3": 159, "02___NUMERIC___2.6449_03___4": 160, "02___NUMERIC___2.6449_03___5": 161, "02___NUMERIC___2.6449_03___6": 162, "02___NUMERIC___2.6449_03___7": 163, "02___NUMERIC___2.6449_03___8": 164, "02___NUMERIC___2.6449_03___9": 165, "02___NUMERIC___2.6449_04___0": 166, "02___NUMERIC___2.6449_04___1": 167, "02___NUMERIC___2.6449_04___2": 168, "02___NUMERIC___2.6449_04___3": 169, "02___NUMERIC___2.6449_04___4": 170, "02___NUMERIC___2.6449_04___5": 171, "02___NUMERIC___2.6449_04___6": 172, "02___NUMERIC___2.6449_04___7": 173, "02___NUMERIC___2.6449_04___8": 174, "02___NUMERIC___2.6449_04___9": 175, "02___NUMERIC___2.6449_05___0": 176, "02___NUMERIC___2.6449_05___1": 177, "02___NUMERIC___2.6449_05___2": 178, "02___NUMERIC___2.6449_05___3": 179, "02___NUMERIC___2.6449_05___4": 180, "02___NUMERIC___2.6449_05___5": 181, "02___NUMERIC___2.6449_05___6": 182, "02___NUMERIC___2.6449_05___7": 183, "02___NUMERIC___2.6449_05___8": 184, "02___NUMERIC___2.6449_05___9": 185, "03___NUMERIC___0.3918_00___0": 186, "03___NUMERIC___0.3918_01___.": 187, "03___NUMERIC___0.3918_02___0": 188, "03___NUMERIC___0.3918_02___1": 189, "03___NUMERIC___0.3918_02___2": 190, "03___NUMERIC___0.3918_02___3": 191, "03___NUMERIC___0.3918_02___4": 192, "03___NUMERIC___0.3918_02___5": 193, "03___NUMERIC___0.3918_02___6": 194, "03___NUMERIC___0.3918_02___7": 195, "03___NUMERIC___0.3918_02___8": 196, "03___NUMERIC___0.3918_03___0": 197, "03___NUMERIC___0.3918_03___1": 198, "03___NUMERIC___0.3918_03___2": 199, "03___NUMERIC___0.3918_03___3": 200, "03___NUMERIC___0.3918_03___4": 201, "03___NUMERIC___0.3918_03___5": 202, "03___NUMERIC___0.3918_03___6": 203, "03___NUMERIC___0.3918_03___7": 204, "03___NUMERIC___0.3918_03___8": 205, "03___NUMERIC___0.3918_03___9": 206, "03___NUMERIC___0.3918_04___0": 207, "03___NUMERIC___0.3918_04___1": 208, "03___NUMERIC___0.3918_04___2": 209, "03___NUMERIC___0.3918_04___3": 210, "03___NUMERIC___0.3918_04___4": 211, "03___NUMERIC___0.3918_04___5": 212, "03___NUMERIC___0.3918_04___6": 213, "03___NUMERIC___0.3918_04___7": 214, "03___NUMERIC___0.3918_04___8": 215, "03___NUMERIC___0.3918_04___9": 216, "03___NUMERIC___0.3918_05___0": 217, "03___NUMERIC___0.3918_05___1": 218, "03___NUMERIC___0.3918_05___2": 219, "03___NUMERIC___0.3918_05___3": 220, "03___NUMERIC___0.3918_05___4": 221, "03___NUMERIC___0.3918_05___5": 222, "03___NUMERIC___0.3918_05___6": 223, "03___NUMERIC___0.3918_05___7": 224, "03___NUMERIC___0.3918_05___8": 225, "03___NUMERIC___0.3918_05___9": 226, "04___NUMERIC___0.1982_00___0": 227, "04___NUMERIC___0.1982_01___.": 228, "04___NUMERIC___0.1982_02___0": 229, "04___NUMERIC___0.1982_02___1": 230, "04___NUMERIC___0.1982_02___2": 231, "04___NUMERIC___0.1982_02___3": 232, "04___NUMERIC___0.1982_02___4": 233, "04___NUMERIC___0.1982_02___5": 234, "04___NUMERIC___0.1982_02___6": 235, "04___NUMERIC___0.1982_03___0": 236, "04___NUMERIC___0.1982_03___1": 237, "04___NUMERIC___0.1982_03___2": 238, "04___NUMERIC___0.1982_03___3": 239, "04___NUMERIC___0.1982_03___4": 240, "04___NUMERIC___0.1982_03___5": 241, "04___NUMERIC___0.1982_03___6": 242, "04___NUMERIC___0.1982_03___7": 243, "04___NUMERIC___0.1982_03___8": 244, "04___NUMERIC___0.1982_03___9": 245, "04___NUMERIC___0.1982_04___0": 246, "04___NUMERIC___0.1982_04___1": 247, "04___NUMERIC___0.1982_04___2": 248, "04___NUMERIC___0.1982_04___3": 249, "04___NUMERIC___0.1982_04___4": 250, "04___NUMERIC___0.1982_04___5": 251, "04___NUMERIC___0.1982_04___6": 252, "04___NUMERIC___0.1982_04___7": 253, "04___NUMERIC___0.1982_04___8": 254, "04___NUMERIC___0.1982_04___9": 255, "04___NUMERIC___0.1982_05___0": 256, "04___NUMERIC___0.1982_05___1": 257, "04___NUMERIC___0.1982_05___2": 258, "04___NUMERIC___0.1982_05___3": 259, "04___NUMERIC___0.1982_05___4": 260, "04___NUMERIC___0.1982_05___5": 261, "04___NUMERIC___0.1982_05___6": 262, "04___NUMERIC___0.1982_05___7": 263, "04___NUMERIC___0.1982_05___8": 264, "04___NUMERIC___0.1982_05___9": 265, "05___NUMERIC___27.7004_00___-": 266, "05___NUMERIC___27.7004_00___0": 267, "05___NUMERIC___27.7004_01___0": 268, "05___NUMERIC___27.7004_01___1": 269, "05___NUMERIC___27.7004_01___2": 270, "05___NUMERIC___27.7004_01___3": 271, "05___NUMERIC___27.7004_01___4": 272, "05___NUMERIC___27.7004_01___5": 273, "05___NUMERIC___27.7004_02___0": 274, "05___NUMERIC___27.7004_02___1": 275, "05___NUMERIC___27.7004_02___2": 276, "05___NUMERIC___27.7004_02___3": 277, "05___NUMERIC___27.7004_02___4": 278, "05___NUMERIC___27.7004_02___5": 279, "05___NUMERIC___27.7004_02___6": 280, "05___NUMERIC___27.7004_02___7": 281, "05___NUMERIC___27.7004_02___8": 282, "05___NUMERIC___27.7004_02___9": 283, "05___NUMERIC___27.7004_03___0": 284, "05___NUMERIC___27.7004_03___1": 285, "05___NUMERIC___27.7004_03___2": 286, "05___NUMERIC___27.7004_03___3": 287, "05___NUMERIC___27.7004_03___4": 288, "05___NUMERIC___27.7004_03___5": 289, "05___NUMERIC___27.7004_03___6": 290, "05___NUMERIC___27.7004_03___7": 291, "05___NUMERIC___27.7004_03___8": 292, "05___NUMERIC___27.7004_03___9": 293, "05___NUMERIC___27.7004_04___.": 294, "05___NUMERIC___27.7004_05___0": 295, "05___NUMERIC___27.7004_05___1": 296, "05___NUMERIC___27.7004_05___2": 297, "05___NUMERIC___27.7004_05___3": 298, "05___NUMERIC___27.7004_05___4": 299, "05___NUMERIC___27.7004_05___5": 300, "05___NUMERIC___27.7004_05___6": 301, "05___NUMERIC___27.7004_05___7": 302, "05___NUMERIC___27.7004_05___8": 303, "05___NUMERIC___27.7004_05___9": 304, "05___NUMERIC___27.7004_06___0": 305, "05___NUMERIC___27.7004_06___1": 306, "05___NUMERIC___27.7004_06___2": 307, "05___NUMERIC___27.7004_06___3": 308, "05___NUMERIC___27.7004_06___4": 309, "05___NUMERIC___27.7004_06___5": 310, "05___NUMERIC___27.7004_06___6": 311, "05___NUMERIC___27.7004_06___7": 312, "05___NUMERIC___27.7004_06___8": 313, "05___NUMERIC___27.7004_06___9": 314, "05___NUMERIC___27.7004_07___0": 315, "05___NUMERIC___27.7004_07___1": 316, "05___NUMERIC___27.7004_07___2": 317, "05___NUMERIC___27.7004_07___3": 318, "05___NUMERIC___27.7004_07___4": 319, "05___NUMERIC___27.7004_07___5": 320, "05___NUMERIC___27.7004_07___6": 321, "05___NUMERIC___27.7004_07___7": 322, "05___NUMERIC___27.7004_07___8": 323, "05___NUMERIC___27.7004_07___9": 324, "05___NUMERIC___27.7004_08___0": 325, "05___NUMERIC___27.7004_08___1": 326, "05___NUMERIC___27.7004_08___2": 327, "05___NUMERIC___27.7004_08___3": 328, "05___NUMERIC___27.7004_08___4": 329, "05___NUMERIC___27.7004_08___5": 330, "05___NUMERIC___27.7004_08___6": 331, "05___NUMERIC___27.7004_08___7": 332, "05___NUMERIC___27.7004_08___8": 333, "05___NUMERIC___27.7004_08___9": 334, "06___NUMERIC___22.011_00___-": 335, "06___NUMERIC___22.011_00___0": 336, "06___NUMERIC___22.011_01___0": 337, "06___NUMERIC___22.011_01___1": 338, "06___NUMERIC___22.011_01___2": 339, "06___NUMERIC___22.011_01___3": 340, "06___NUMERIC___22.011_02___0": 341, "06___NUMERIC___22.011_02___1": 342, "06___NUMERIC___22.011_02___2": 343, "06___NUMERIC___22.011_02___3": 344, "06___NUMERIC___22.011_02___4": 345, "06___NUMERIC___22.011_02___5": 346, "06___NUMERIC___22.011_02___6": 347, "06___NUMERIC___22.011_02___7": 348, "06___NUMERIC___22.011_02___8": 349, "06___NUMERIC___22.011_02___9": 350, "06___NUMERIC___22.011_03___0": 351, "06___NUMERIC___22.011_03___1": 352, "06___NUMERIC___22.011_03___2": 353, "06___NUMERIC___22.011_03___3": 354, "06___NUMERIC___22.011_03___4": 355, "06___NUMERIC___22.011_03___5": 356, "06___NUMERIC___22.011_03___6": 357, "06___NUMERIC___22.011_03___7": 358, "06___NUMERIC___22.011_03___8": 359, "06___NUMERIC___22.011_03___9": 360, "06___NUMERIC___22.011_04___.": 361, "06___NUMERIC___22.011_05___0": 362, "06___NUMERIC___22.011_05___1": 363, "06___NUMERIC___22.011_05___2": 364, "06___NUMERIC___22.011_05___3": 365, "06___NUMERIC___22.011_05___4": 366, "06___NUMERIC___22.011_05___5": 367, "06___NUMERIC___22.011_05___6": 368, "06___NUMERIC___22.011_05___7": 369, "06___NUMERIC___22.011_05___8": 370, "06___NUMERIC___22.011_05___9": 371, "06___NUMERIC___22.011_06___0": 372, "06___NUMERIC___22.011_06___1": 373, "06___NUMERIC___22.011_06___2": 374, "06___NUMERIC___22.011_06___3": 375, "06___NUMERIC___22.011_06___4": 376, "06___NUMERIC___22.011_06___5": 377, "06___NUMERIC___22.011_06___6": 378, "06___NUMERIC___22.011_06___7": 379, "06___NUMERIC___22.011_06___8": 380, "06___NUMERIC___22.011_06___9": 381, "06___NUMERIC___22.011_07___0": 382, "06___NUMERIC___22.011_07___1": 383, "06___NUMERIC___22.011_07___2": 384, "06___NUMERIC___22.011_07___3": 385, "06___NUMERIC___22.011_07___4": 386, "06___NUMERIC___22.011_07___5": 387, "06___NUMERIC___22.011_07___6": 388, "06___NUMERIC___22.011_07___7": 389, "06___NUMERIC___22.011_07___8": 390, "06___NUMERIC___22.011_07___9": 391, "06___NUMERIC___22.011_08___0": 392, "06___NUMERIC___22.011_08___1": 393, "06___NUMERIC___22.011_08___2": 394, "06___NUMERIC___22.011_08___3": 395, "06___NUMERIC___22.011_08___4": 396, "06___NUMERIC___22.011_08___5": 397, "06___NUMERIC___22.011_08___6": 398, "06___NUMERIC___22.011_08___7": 399, "06___NUMERIC___22.011_08___8": 400, "06___NUMERIC___22.011_08___9": 401, "07___NUMERIC___-8.2027_00___-": 402, "07___NUMERIC___-8.2027_00___0": 403, "07___NUMERIC___-8.2027_01___0": 404, "07___NUMERIC___-8.2027_01___1": 405, "07___NUMERIC___-8.2027_01___2": 406, "07___NUMERIC___-8.2027_02___0": 407, "07___NUMERIC___-8.2027_02___1": 408, "07___NUMERIC___-8.2027_02___2": 409, "07___NUMERIC___-8.2027_02___3": 410, "07___NUMERIC___-8.2027_02___4": 411, "07___NUMERIC___-8.2027_02___5": 412, "07___NUMERIC___-8.2027_02___6": 413, "07___NUMERIC___-8.2027_02___7": 414, "07___NUMERIC___-8.2027_02___8": 415, "07___NUMERIC___-8.2027_02___9": 416, "07___NUMERIC___-8.2027_03___0": 417, "07___NUMERIC___-8.2027_03___1": 418, "07___NUMERIC___-8.2027_03___2": 419, "07___NUMERIC___-8.2027_03___3": 420, "07___NUMERIC___-8.2027_03___4": 421, "07___NUMERIC___-8.2027_03___5": 422, "07___NUMERIC___-8.2027_03___6": 423, "07___NUMERIC___-8.2027_03___7": 424, "07___NUMERIC___-8.2027_03___8": 425, "07___NUMERIC___-8.2027_03___9": 426, "07___NUMERIC___-8.2027_04___.": 427, "07___NUMERIC___-8.2027_05___0": 428, "07___NUMERIC___-8.2027_05___1": 429, "07___NUMERIC___-8.2027_05___2": 430, "07___NUMERIC___-8.2027_05___3": 431, "07___NUMERIC___-8.2027_05___4": 432, "07___NUMERIC___-8.2027_05___5": 433, "07___NUMERIC___-8.2027_05___6": 434, "07___NUMERIC___-8.2027_05___7": 435, "07___NUMERIC___-8.2027_05___8": 436, "07___NUMERIC___-8.2027_05___9": 437, "07___NUMERIC___-8.2027_06___0": 438, "07___NUMERIC___-8.2027_06___1": 439, "07___NUMERIC___-8.2027_06___2": 440, "07___NUMERIC___-8.2027_06___3": 441, "07___NUMERIC___-8.2027_06___4": 442, "07___NUMERIC___-8.2027_06___5": 443, "07___NUMERIC___-8.2027_06___6": 444, "07___NUMERIC___-8.2027_06___7": 445, "07___NUMERIC___-8.2027_06___8": 446, "07___NUMERIC___-8.2027_06___9": 447, "07___NUMERIC___-8.2027_07___0": 448, "07___NUMERIC___-8.2027_07___1": 449, "07___NUMERIC___-8.2027_07___2": 450, "07___NUMERIC___-8.2027_07___3": 451, "07___NUMERIC___-8.2027_07___4": 452, "07___NUMERIC___-8.2027_07___5": 453, "07___NUMERIC___-8.2027_07___6": 454, "07___NUMERIC___-8.2027_07___7": 455, "07___NUMERIC___-8.2027_07___8": 456, "07___NUMERIC___-8.2027_07___9": 457, "07___NUMERIC___-8.2027_08___0": 458, "07___NUMERIC___-8.2027_08___1": 459, "07___NUMERIC___-8.2027_08___2": 460, "07___NUMERIC___-8.2027_08___3": 461, "07___NUMERIC___-8.2027_08___4": 462, "07___NUMERIC___-8.2027_08___5": 463, "07___NUMERIC___-8.2027_08___6": 464, "07___NUMERIC___-8.2027_08___7": 465, "07___NUMERIC___-8.2027_08___8": 466, "07___NUMERIC___-8.2027_08___9": 467, "08___NUMERIC___40.092_00___0": 468, "08___NUMERIC___40.092_00___1": 469, "08___NUMERIC___40.092_00___2": 470, "08___NUMERIC___40.092_00___3": 471, "08___NUMERIC___40.092_00___4": 472, "08___NUMERIC___40.092_00___5": 473, "08___NUMERIC___40.092_00___6": 474, "08___NUMERIC___40.092_00___7": 475, "08___NUMERIC___40.092_00___8": 476, "08___NUMERIC___40.092_00___9": 477, "08___NUMERIC___40.092_01___0": 478, "08___NUMERIC___40.092_01___1": 479, "08___NUMERIC___40.092_01___2": 480, "08___NUMERIC___40.092_01___3": 481, "08___NUMERIC___40.092_01___4": 482, "08___NUMERIC___40.092_01___5": 483, "08___NUMERIC___40.092_01___6": 484, "08___NUMERIC___40.092_01___7": 485, "08___NUMERIC___40.092_01___8": 486, "08___NUMERIC___40.092_01___9": 487, "08___NUMERIC___40.092_02___.": 488, "08___NUMERIC___40.092_03___0": 489, "08___NUMERIC___40.092_03___1": 490, "08___NUMERIC___40.092_03___2": 491, "08___NUMERIC___40.092_03___3": 492, "08___NUMERIC___40.092_03___4": 493, "08___NUMERIC___40.092_03___5": 494, "08___NUMERIC___40.092_03___6": 495, "08___NUMERIC___40.092_03___7": 496, "08___NUMERIC___40.092_03___8": 497, "08___NUMERIC___40.092_03___9": 498, "08___NUMERIC___40.092_04___0": 499, "08___NUMERIC___40.092_04___1": 500, "08___NUMERIC___40.092_04___2": 501, "08___NUMERIC___40.092_04___3": 502, "08___NUMERIC___40.092_04___4": 503, "08___NUMERIC___40.092_04___5": 504, "08___NUMERIC___40.092_04___6": 505, "08___NUMERIC___40.092_04___7": 506, "08___NUMERIC___40.092_04___8": 507, "08___NUMERIC___40.092_04___9": 508, "08___NUMERIC___40.092_05___0": 509, "08___NUMERIC___40.092_05___1": 510, "08___NUMERIC___40.092_05___2": 511, "08___NUMERIC___40.092_05___3": 512, "08___NUMERIC___40.092_05___4": 513, "08___NUMERIC___40.092_05___5": 514, "08___NUMERIC___40.092_05___6": 515, "08___NUMERIC___40.092_05___7": 516, "08___NUMERIC___40.092_05___8": 517, "08___NUMERIC___40.092_05___9": 518, "08___NUMERIC___40.092_06___0": 519, "08___NUMERIC___40.092_06___1": 520, "08___NUMERIC___40.092_06___2": 521, "08___NUMERIC___40.092_06___3": 522, "08___NUMERIC___40.092_06___4": 523, "08___NUMERIC___40.092_06___5": 524, "08___NUMERIC___40.092_06___6": 525, "08___NUMERIC___40.092_06___7": 526, "08___NUMERIC___40.092_06___8": 527, "08___NUMERIC___40.092_06___9": 528, "09___NUMERIC___81.8828_00___0": 529, "09___NUMERIC___81.8828_00___1": 530, "09___NUMERIC___81.8828_00___2": 531, "09___NUMERIC___81.8828_00___3": 532, "09___NUMERIC___81.8828_00___4": 533, "09___NUMERIC___81.8828_01___0": 534, "09___NUMERIC___81.8828_01___1": 535, "09___NUMERIC___81.8828_01___2": 536, "09___NUMERIC___81.8828_01___3": 537, "09___NUMERIC___81.8828_01___4": 538, "09___NUMERIC___81.8828_01___5": 539, "09___NUMERIC___81.8828_01___6": 540, "09___NUMERIC___81.8828_01___7": 541, "09___NUMERIC___81.8828_01___8": 542, "09___NUMERIC___81.8828_01___9": 543, "09___NUMERIC___81.8828_02___0": 544, "09___NUMERIC___81.8828_02___1": 545, "09___NUMERIC___81.8828_02___2": 546, "09___NUMERIC___81.8828_02___3": 547, "09___NUMERIC___81.8828_02___4": 548, "09___NUMERIC___81.8828_02___5": 549, "09___NUMERIC___81.8828_02___6": 550, "09___NUMERIC___81.8828_02___7": 551, "09___NUMERIC___81.8828_02___8": 552, "09___NUMERIC___81.8828_02___9": 553, "09___NUMERIC___81.8828_03___.": 554, "09___NUMERIC___81.8828_04___0": 555, "09___NUMERIC___81.8828_04___1": 556, "09___NUMERIC___81.8828_04___2": 557, "09___NUMERIC___81.8828_04___3": 558, "09___NUMERIC___81.8828_04___4": 559, "09___NUMERIC___81.8828_04___5": 560, "09___NUMERIC___81.8828_04___6": 561, "09___NUMERIC___81.8828_04___7": 562, "09___NUMERIC___81.8828_04___8": 563, "09___NUMERIC___81.8828_04___9": 564, "09___NUMERIC___81.8828_05___0": 565, "09___NUMERIC___81.8828_05___1": 566, "09___NUMERIC___81.8828_05___2": 567, "09___NUMERIC___81.8828_05___3": 568, "09___NUMERIC___81.8828_05___4": 569, "09___NUMERIC___81.8828_05___5": 570, "09___NUMERIC___81.8828_05___6": 571, "09___NUMERIC___81.8828_05___7": 572, "09___NUMERIC___81.8828_05___8": 573, "09___NUMERIC___81.8828_05___9": 574, "09___NUMERIC___81.8828_06___0": 575, "09___NUMERIC___81.8828_06___1": 576, "09___NUMERIC___81.8828_06___2": 577, "09___NUMERIC___81.8828_06___3": 578, "09___NUMERIC___81.8828_06___4": 579, "09___NUMERIC___81.8828_06___5": 580, "09___NUMERIC___81.8828_06___6": 581, "09___NUMERIC___81.8828_06___7": 582, "09___NUMERIC___81.8828_06___8": 583, "09___NUMERIC___81.8828_06___9": 584, "09___NUMERIC___81.8828_07___0": 585, "09___NUMERIC___81.8828_07___1": 586, "09___NUMERIC___81.8828_07___2": 587, "09___NUMERIC___81.8828_07___3": 588, "09___NUMERIC___81.8828_07___4": 589, "09___NUMERIC___81.8828_07___5": 590, "09___NUMERIC___81.8828_07___6": 591, "09___NUMERIC___81.8828_07___7": 592, "09___NUMERIC___81.8828_07___8": 593, "09___NUMERIC___81.8828_07___9": 594, "10___CATEGORICAL___g___g": 595, "10___CATEGORICAL___g___h": 596}, "column_token_ids": {"00___NUMERIC___28.7967_00": [11, 12, 13, 14], "00___NUMERIC___28.7967_01": [15, 16, 17, 18, 19, 20, 21, 22, 23, 24], "00___NUMERIC___28.7967_02": [25, 26, 27, 28, 29, 30, 31, 32, 33, 34], "00___NUMERIC___28.7967_03": [35], "00___NUMERIC___28.7967_04": [36, 37, 38, 39, 40, 41, 42, 43, 44, 45], "00___NUMERIC___28.7967_05": [46, 47, 48, 49, 50, 51, 52, 53, 54, 55], "00___NUMERIC___28.7967_06": [56, 57, 58, 59, 60, 61, 62, 63, 64, 65], "00___NUMERIC___28.7967_07": [66, 67, 68, 69, 70, 71, 72, 73, 74, 75], "01___NUMERIC___16.0021_00": [76, 77, 78], "01___NUMERIC___16.0021_01": [79, 80, 81, 82, 83, 84, 85, 86, 87, 88], "01___NUMERIC___16.0021_02": [89, 90, 91, 92, 93, 94, 95, 96, 97, 98], "01___NUMERIC___16.0021_03": [99], "01___NUMERIC___16.0021_04": [100, 101, 102, 103, 104, 105, 106, 107, 108, 109], "01___NUMERIC___16.0021_05": [110, 111, 112, 113, 114, 115, 116, 117, 118, 119], "01___NUMERIC___16.0021_06": [120, 121, 122, 123, 124, 125, 126, 127, 128, 129], "01___NUMERIC___16.0021_07": [130, 131, 132, 133, 134, 135, 136, 137, 138, 139], "02___NUMERIC___2.6449_00": [140, 141, 142, 143, 144], "02___NUMERIC___2.6449_01": [145], "02___NUMERIC___2.6449_02": [146, 147, 148, 149, 150, 151, 152, 153, 154, 155], "02___NUMERIC___2.6449_03": [156, 157, 158, 159, 160, 161, 162, 163, 164, 165], "02___NUMERIC___2.6449_04": [166, 167, 168, 169, 170, 171, 172, 173, 174, 175], "02___NUMERIC___2.6449_05": [176, 177, 178, 179, 180, 181, 182, 183, 184, 185], "03___NUMERIC___0.3918_00": [186], "03___NUMERIC___0.3918_01": [187], "03___NUMERIC___0.3918_02": [188, 189, 190, 191, 192, 193, 194, 195, 196], "03___NUMERIC___0.3918_03": [197, 198, 199, 200, 201, 202, 203, 204, 205, 206], "03___NUMERIC___0.3918_04": [207, 208, 209, 210, 211, 212, 213, 214, 215, 216], "03___NUMERIC___0.3918_05": [217, 218, 219, 220, 221, 222, 223, 224, 225, 226], "04___NUMERIC___0.1982_00": [227], "04___NUMERIC___0.1982_01": [228], "04___NUMERIC___0.1982_02": [229, 230, 231, 232, 233, 234, 235], "04___NUMERIC___0.1982_03": [236, 237, 238, 239, 240, 241, 242, 243, 244, 245], "04___NUMERIC___0.1982_04": [246, 247, 248, 249, 250, 251, 252, 253, 254, 255], "04___NUMERIC___0.1982_05": [256, 257, 258, 259, 260, 261, 262, 263, 264, 265], "05___NUMERIC___27.7004_00": [266, 267], "05___NUMERIC___27.7004_01": [268, 269, 270, 271, 272, 273], "05___NUMERIC___27.7004_02": [274, 275, 276, 277, 278, 279, 280, 281, 282, 283], "05___NUMERIC___27.7004_03": [284, 285, 286, 287, 288, 289, 290, 291, 292, 293], "05___NUMERIC___27.7004_04": [294], "05___NUMERIC___27.7004_05": [295, 296, 297, 298, 299, 300, 301, 302, 303, 304], "05___NUMERIC___27.7004_06": [305, 306, 307, 308, 309, 310, 311, 312, 313, 314], "05___NUMERIC___27.7004_07": [315, 316, 317, 318, 319, 320, 321, 322, 323, 324], "05___NUMERIC___27.7004_08": [325, 326, 327, 328, 329, 330, 331, 332, 333, 334], "06___NUMERIC___22.011_00": [335, 336], "06___NUMERIC___22.011_01": [337, 338, 339, 340], "06___NUMERIC___22.011_02": [341, 342, 343, 344, 345, 346, 347, 348, 349, 350], "06___NUMERIC___22.011_03": [351, 352, 353, 354, 355, 356, 357, 358, 359, 360], "06___NUMERIC___22.011_04": [361], "06___NUMERIC___22.011_05": [362, 363, 364, 365, 366, 367, 368, 369, 370, 371], "06___NUMERIC___22.011_06": [372, 373, 374, 375, 376, 377, 378, 379, 380, 381], "06___NUMERIC___22.011_07": [382, 383, 384, 385, 386, 387, 388, 389, 390, 391], "06___NUMERIC___22.011_08": [392, 393, 394, 395, 396, 397, 398, 399, 400, 401], "07___NUMERIC___-8.2027_00": [402, 403], "07___NUMERIC___-8.2027_01": [404, 405, 406], "07___NUMERIC___-8.2027_02": [407, 408, 409, 410, 411, 412, 413, 414, 415, 416], "07___NUMERIC___-8.2027_03": [417, 418, 419, 420, 421, 422, 423, 424, 425, 426], "07___NUMERIC___-8.2027_04": [427], "07___NUMERIC___-8.2027_05": [428, 429, 430, 431, 432, 433, 434, 435, 436, 437], "07___NUMERIC___-8.2027_06": [438, 439, 440, 441, 442, 443, 444, 445, 446, 447], "07___NUMERIC___-8.2027_07": [448, 449, 450, 451, 452, 453, 454, 455, 456, 457], "07___NUMERIC___-8.2027_08": [458, 459, 460, 461, 462, 463, 464, 465, 466, 467], "08___NUMERIC___40.092_00": [468, 469, 470, 471, 472, 473, 474, 475, 476, 477], "08___NUMERIC___40.092_01": [478, 479, 480, 481, 482, 483, 484, 485, 486, 487], "08___NUMERIC___40.092_02": [488], "08___NUMERIC___40.092_03": [489, 490, 491, 492, 493, 494, 495, 496, 497, 498], "08___NUMERIC___40.092_04": [499, 500, 501, 502, 503, 504, 505, 506, 507, 508], "08___NUMERIC___40.092_05": [509, 510, 511, 512, 513, 514, 515, 516, 517, 518], "08___NUMERIC___40.092_06": [519, 520, 521, 522, 523, 524, 525, 526, 527, 528], "09___NUMERIC___81.8828_00": [529, 530, 531, 532, 533], "09___NUMERIC___81.8828_01": [534, 535, 536, 537, 538, 539, 540, 541, 542, 543], "09___NUMERIC___81.8828_02": [544, 545, 546, 547, 548, 549, 550, 551, 552, 553], "09___NUMERIC___81.8828_03": [554], "09___NUMERIC___81.8828_04": [555, 556, 557, 558, 559, 560, 561, 562, 563, 564], "09___NUMERIC___81.8828_05": [565, 566, 567, 568, 569, 570, 571, 572, 573, 574], "09___NUMERIC___81.8828_06": [575, 576, 577, 578, 579, 580, 581, 582, 583, 584], "09___NUMERIC___81.8828_07": [585, 586, 587, 588, 589, 590, 591, 592, 593, 594], "10___CATEGORICAL___g": [595, 596]}}, "tabular_max_length": 79, "relational_max_length": null, "tabular_col_size": 15215, "relational_col_size": null, "col_transform_data": {"28.7967": {"max_len": 10, "numeric_precision": 4, "mx_sig": 3, "ljust": 8, "numeric_nparts": 1}, "16.0021": {"max_len": 10, "numeric_precision": 4, "mx_sig": 3, "ljust": 8, "numeric_nparts": 1}, "2.6449": {"max_len": 10, "numeric_precision": 4, "mx_sig": 1, "ljust": 6, "numeric_nparts": 1}, "0.3918": {"max_len": 10, "numeric_precision": 4, "mx_sig": 1, "ljust": 6, "numeric_nparts": 1}, "0.1982": {"max_len": 10, "numeric_precision": 4, "mx_sig": 1, "ljust": 6, "numeric_nparts": 1}, "27.7004": {"max_len": 10, "numeric_precision": 4, "mx_sig": 4, "ljust": 9, "numeric_nparts": 1}, "22.011": {"max_len": 10, "numeric_precision": 4, "mx_sig": 4, "ljust": 9, "numeric_nparts": 1}, "-8.2027": {"max_len": 10, "numeric_precision": 4, "mx_sig": 4, "ljust": 9, "numeric_nparts": 1}, "40.092": {"max_len": 10, "numeric_precision": 4, "mx_sig": 2, "ljust": 7, "numeric_nparts": 1}, "81.8828": {"max_len": 10, "numeric_precision": 4, "mx_sig": 3, "ljust": 8, "numeric_nparts": 1}}, "in_col_transform_data": null, "col_idx_ids": {"0": [11, 12, 13, 14], "1": [15, 16, 17, 18, 19, 20, 21, 22, 23, 24], "2": [25, 26, 27, 28, 29, 30, 31, 32, 33, 34], "3": [35], "4": [36, 37, 38, 39, 40, 41, 42, 43, 44, 45], "5": [46, 47, 48, 49, 50, 51, 52, 53, 54, 55], "6": [56, 57, 58, 59, 60, 61, 62, 63, 64, 65], "7": [66, 67, 68, 69, 70, 71, 72, 73, 74, 75], "8": [76, 77, 78], "9": [79, 80, 81, 82, 83, 84, 85, 86, 87, 88], "10": [89, 90, 91, 92, 93, 94, 95, 96, 97, 98], "11": [99], "12": [100, 101, 102, 103, 104, 105, 106, 107, 108, 109], "13": [110, 111, 112, 113, 114, 115, 116, 117, 118, 119], "14": [120, 121, 122, 123, 124, 125, 126, 127, 128, 129], "15": [130, 131, 132, 133, 134, 135, 136, 137, 138, 139], "16": [140, 141, 142, 143, 144], "17": [145], "18": [146, 147, 148, 149, 150, 151, 152, 153, 154, 155], "19": [156, 157, 158, 159, 160, 161, 162, 163, 164, 165], "20": [166, 167, 168, 169, 170, 171, 172, 173, 174, 175], "21": [176, 177, 178, 179, 180, 181, 182, 183, 184, 185], "22": [186], "23": [187], "24": [188, 189, 190, 191, 192, 193, 194, 195, 196], "25": [197, 198, 199, 200, 201, 202, 203, 204, 205, 206], "26": [207, 208, 209, 210, 211, 212, 213, 214, 215, 216], "27": [217, 218, 219, 220, 221, 222, 223, 224, 225, 226], "28": [227], "29": [228], "30": [229, 230, 231, 232, 233, 234, 235], "31": [236, 237, 238, 239, 240, 241, 242, 243, 244, 245], "32": [246, 247, 248, 249, 250, 251, 252, 253, 254, 255], "33": [256, 257, 258, 259, 260, 261, 262, 263, 264, 265], "34": [266, 267], "35": [268, 269, 270, 271, 272, 273], "36": [274, 275, 276, 277, 278, 279, 280, 281, 282, 283], "37": [284, 285, 286, 287, 288, 289, 290, 291, 292, 293], "38": [294], "39": [295, 296, 297, 298, 299, 300, 301, 302, 303, 304], "40": [305, 306, 307, 308, 309, 310, 311, 312, 313, 314], "41": [315, 316, 317, 318, 319, 320, 321, 322, 323, 324], "42": [325, 326, 327, 328, 329, 330, 331, 332, 333, 334], "43": [335, 336], "44": [337, 338, 339, 340], "45": [341, 342, 343, 344, 345, 346, 347, 348, 349, 350], "46": [351, 352, 353, 354, 355, 356, 357, 358, 359, 360], "47": [361], "48": [362, 363, 364, 365, 366, 367, 368, 369, 370, 371], "49": [372, 373, 374, 375, 376, 377, 378, 379, 380, 381], "50": [382, 383, 384, 385, 386, 387, 388, 389, 390, 391], "51": [392, 393, 394, 395, 396, 397, 398, 399, 400, 401], "52": [402, 403], "53": [404, 405, 406], "54": [407, 408, 409, 410, 411, 412, 413, 414, 415, 416], "55": [417, 418, 419, 420, 421, 422, 423, 424, 425, 426], "56": [427], "57": [428, 429, 430, 431, 432, 433, 434, 435, 436, 437], "58": [438, 439, 440, 441, 442, 443, 444, 445, 446, 447], "59": [448, 449, 450, 451, 452, 453, 454, 455, 456, 457], "60": [458, 459, 460, 461, 462, 463, 464, 465, 466, 467], "61": [468, 469, 470, 471, 472, 473, 474, 475, 476, 477], "62": [478, 479, 480, 481, 482, 483, 484, 485, 486, 487], "63": [488], "64": [489, 490, 491, 492, 493, 494, 495, 496, 497, 498], "65": [499, 500, 501, 502, 503, 504, 505, 506, 507, 508], "66": [509, 510, 511, 512, 513, 514, 515, 516, 517, 518], "67": [519, 520, 521, 522, 523, 524, 525, 526, 527, 528], "68": [529, 530, 531, 532, 533], "69": [534, 535, 536, 537, 538, 539, 540, 541, 542, 543], "70": [544, 545, 546, 547, 548, 549, 550, 551, 552, 553], "71": [554], "72": [555, 556, 557, 558, 559, 560, 561, 562, 563, 564], "73": [565, 566, 567, 568, 569, 570, 571, 572, 573, 574], "74": [575, 576, 577, 578, 579, 580, 581, 582, 583, 584], "75": [585, 586, 587, 588, 589, 590, 591, 592, 593, 594], "76": [595, 596]}, "random_state": 1029, "numeric_nparts": 1, "numeric_precision": 4, "numeric_max_len": 10, "experiment_id": "id000017775718473678360576", "trainer_state": null, "target_col": null, "realtabformer_version": "0.2.4"} \ No newline at end of file diff --git a/timecost/n11/realtabformer/rtf-n11-20260501_010320/models_100epochs/id000017775718473678360576/rtf_model.pt b/timecost/n11/realtabformer/rtf-n11-20260501_010320/models_100epochs/id000017775718473678360576/rtf_model.pt new file mode 100644 index 0000000000000000000000000000000000000000..bede471f295098301b0e7413fcbe848314e4990e --- /dev/null +++ b/timecost/n11/realtabformer/rtf-n11-20260501_010320/models_100epochs/id000017775718473678360576/rtf_model.pt @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:e02f7251f2d45a48493f0551d5e2099efee6c9420e443cf865cb3c5302a92f43 +size 175123939 diff --git a/timecost/n11/realtabformer/rtf-n11-20260501_010320/public_gate/normalized_schema_snapshot.json b/timecost/n11/realtabformer/rtf-n11-20260501_010320/public_gate/normalized_schema_snapshot.json new file mode 100644 index 0000000000000000000000000000000000000000..96904695eb041844b615aa285fda674f1da87108 --- /dev/null +++ b/timecost/n11/realtabformer/rtf-n11-20260501_010320/public_gate/normalized_schema_snapshot.json @@ -0,0 +1,235 @@ +{ + "dataset_id": "n11", + "target_column": "g", + "task_type": "classification", + "columns": [ + { + "name": "28.7967", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 14962, + "unique_ratio": 0.983372, + "example_values": [ + "33.9347", + "118.601", + "19.83", + "33.2691", + "13.1404" + ] + } + }, + { + "name": "16.0021", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 14662, + "unique_ratio": 0.963654, + "example_values": [ + "10.8862", + "44.2479", + "7.3303", + "9.1269", + "10.8527" + ] + } + }, + { + "name": "2.6449", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 6336, + "unique_ratio": 0.416431, + "example_values": [ + "2.5328", + "3.5558", + "2.2541", + "2.6728", + "2.1775" + ] + } + }, + { + "name": "0.3918", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 6002, + "unique_ratio": 0.394479, + "example_values": [ + "0.4047", + "0.1769", + "0.7521", + "0.4437", + "0.7708" + ] + } + }, + { + "name": "0.1982", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 4230, + "unique_ratio": 0.278015, + "example_values": [ + "0.2155", + "0.1003", + "0.4095", + "0.2553", + "0.4352" + ] + } + }, + { + "name": "27.7004", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 14996, + "unique_ratio": 0.985606, + "example_values": [ + "-25.0369", + "-95.8266", + "2.8528", + "12.3981", + "14.3006" + ] + } + }, + { + "name": "22.011", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 14984, + "unique_ratio": 0.984818, + "example_values": [ + "-23.1659", + "14.9809", + "-9.7666", + "19.9081", + "-3.6418" + ] + } + }, + { + "name": "-8.2027", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 14795, + "unique_ratio": 0.972396, + "example_values": [ + "3.492", + "29.3812", + "5.0346", + "-5.3204", + "-11.3646" + ] + } + }, + { + "name": "40.092", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 14518, + "unique_ratio": 0.95419, + "example_values": [ + "0.334", + "4.134", + "13.794", + "20.78", + "20.124" + ] + } + }, + { + "name": "81.8828", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 14824, + "unique_ratio": 0.974302, + "example_values": [ + "132.907", + "286.69", + "108.464", + "180.4168", + "222.525" + ] + } + }, + { + "name": "g", + "role": "target", + "semantic_type": "categorical", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 2, + "unique_ratio": 0.000131, + "example_values": [ + "g", + "h" + ] + } + } + ] +} \ No newline at end of file diff --git a/timecost/n11/realtabformer/rtf-n11-20260501_010320/public_gate/public_gate_report.json b/timecost/n11/realtabformer/rtf-n11-20260501_010320/public_gate/public_gate_report.json new file mode 100644 index 0000000000000000000000000000000000000000..4864c3fc29664a3b44991534165974fed3741dfa --- /dev/null +++ b/timecost/n11/realtabformer/rtf-n11-20260501_010320/public_gate/public_gate_report.json @@ -0,0 +1,37 @@ +{ + "dataset_id": "n11", + "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": "g", + "task_type": "classification", + "input_splits": { + "train": "/data/jialinzhang/SynthesizePipeline-server/DatasetNew/n11/n11-train.csv", + "val": "/data/jialinzhang/SynthesizePipeline-server/DatasetNew/n11/n11-val.csv", + "test": "/data/jialinzhang/SynthesizePipeline-server/DatasetNew/n11/n11-test.csv" + } +} \ No newline at end of file diff --git a/timecost/n11/realtabformer/rtf-n11-20260501_010320/public_gate/staged_input_manifest.json b/timecost/n11/realtabformer/rtf-n11-20260501_010320/public_gate/staged_input_manifest.json new file mode 100644 index 0000000000000000000000000000000000000000..6e912dd34b4d8eddc0324795e12c2f93b0411f73 --- /dev/null +++ b/timecost/n11/realtabformer/rtf-n11-20260501_010320/public_gate/staged_input_manifest.json @@ -0,0 +1,240 @@ +{ + "dataset_id": "n11", + "target_column": "g", + "task_type": "classification", + "train_csv": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/n11/realtabformer/rtf-n11-20260501_010320/staged/public/train.csv", + "val_csv": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/n11/realtabformer/rtf-n11-20260501_010320/staged/public/val.csv", + "test_csv": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/n11/realtabformer/rtf-n11-20260501_010320/staged/public/test.csv", + "features_json": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/n11/realtabformer/rtf-n11-20260501_010320/staged/public/staged_features.json", + "public_gate_report": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/n11/realtabformer/rtf-n11-20260501_010320/public_gate/public_gate_report.json", + "column_schema": [ + { + "name": "28.7967", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 14962, + "unique_ratio": 0.983372, + "example_values": [ + "33.9347", + "118.601", + "19.83", + "33.2691", + "13.1404" + ] + } + }, + { + "name": "16.0021", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 14662, + "unique_ratio": 0.963654, + "example_values": [ + "10.8862", + "44.2479", + "7.3303", + "9.1269", + "10.8527" + ] + } + }, + { + "name": "2.6449", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 6336, + "unique_ratio": 0.416431, + "example_values": [ + "2.5328", + "3.5558", + "2.2541", + "2.6728", + "2.1775" + ] + } + }, + { + "name": "0.3918", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 6002, + "unique_ratio": 0.394479, + "example_values": [ + "0.4047", + "0.1769", + "0.7521", + "0.4437", + "0.7708" + ] + } + }, + { + "name": "0.1982", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 4230, + "unique_ratio": 0.278015, + "example_values": [ + "0.2155", + "0.1003", + "0.4095", + "0.2553", + "0.4352" + ] + } + }, + { + "name": "27.7004", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 14996, + "unique_ratio": 0.985606, + "example_values": [ + "-25.0369", + "-95.8266", + "2.8528", + "12.3981", + "14.3006" + ] + } + }, + { + "name": "22.011", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 14984, + "unique_ratio": 0.984818, + "example_values": [ + "-23.1659", + "14.9809", + "-9.7666", + "19.9081", + "-3.6418" + ] + } + }, + { + "name": "-8.2027", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 14795, + "unique_ratio": 0.972396, + "example_values": [ + "3.492", + "29.3812", + "5.0346", + "-5.3204", + "-11.3646" + ] + } + }, + { + "name": "40.092", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 14518, + "unique_ratio": 0.95419, + "example_values": [ + "0.334", + "4.134", + "13.794", + "20.78", + "20.124" + ] + } + }, + { + "name": "81.8828", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 14824, + "unique_ratio": 0.974302, + "example_values": [ + "132.907", + "286.69", + "108.464", + "180.4168", + "222.525" + ] + } + }, + { + "name": "g", + "role": "target", + "semantic_type": "categorical", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 2, + "unique_ratio": 0.000131, + "example_values": [ + "g", + "h" + ] + } + } + ] +} \ No newline at end of file diff --git a/timecost/n11/realtabformer/rtf-n11-20260501_010320/realtabformer_features.json b/timecost/n11/realtabformer/rtf-n11-20260501_010320/realtabformer_features.json new file mode 100644 index 0000000000000000000000000000000000000000..bdb9c28b9d52f06368851a08caadc305035fc1b7 --- /dev/null +++ b/timecost/n11/realtabformer/rtf-n11-20260501_010320/realtabformer_features.json @@ -0,0 +1,57 @@ +[ + { + "feature_name": "28.7967", + "data_type": "continuous", + "is_target": false + }, + { + "feature_name": "16.0021", + "data_type": "continuous", + "is_target": false + }, + { + "feature_name": "2.6449", + "data_type": "continuous", + "is_target": false + }, + { + "feature_name": "0.3918", + "data_type": "continuous", + "is_target": false + }, + { + "feature_name": "0.1982", + "data_type": "continuous", + "is_target": false + }, + { + "feature_name": "27.7004", + "data_type": "continuous", + "is_target": false + }, + { + "feature_name": "22.011", + "data_type": "continuous", + "is_target": false + }, + { + "feature_name": "-8.2027", + "data_type": "continuous", + "is_target": false + }, + { + "feature_name": "40.092", + "data_type": "continuous", + "is_target": false + }, + { + "feature_name": "81.8828", + "data_type": "continuous", + "is_target": false + }, + { + "feature_name": "g", + "data_type": "categorical", + "is_target": true + } +] \ No newline at end of file diff --git a/timecost/n11/realtabformer/rtf-n11-20260501_010320/rtf-n11-15215-20260501_015729.csv b/timecost/n11/realtabformer/rtf-n11-20260501_010320/rtf-n11-15215-20260501_015729.csv new file mode 100644 index 0000000000000000000000000000000000000000..7bb3162fd8ee4a6911e78bbfc194a75c51d55a8c --- /dev/null +++ b/timecost/n11/realtabformer/rtf-n11-20260501_010320/rtf-n11-15215-20260501_015729.csv @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:636ded3ceeec046b57117b79dfab35eef7f0ecbd99ddd345063ecefcb1ce1860 +size 1176148 diff --git a/timecost/n11/realtabformer/rtf-n11-20260501_010320/rtf_checkpoints/checkpoint-47124/config.json b/timecost/n11/realtabformer/rtf-n11-20260501_010320/rtf_checkpoints/checkpoint-47124/config.json new file mode 100644 index 0000000000000000000000000000000000000000..605aa5aa48fc96b6c3133032a3e66cd18090e70a --- /dev/null +++ b/timecost/n11/realtabformer/rtf-n11-20260501_010320/rtf_checkpoints/checkpoint-47124/config.json @@ -0,0 +1,34 @@ +{ + "activation_function": "gelu_new", + "add_cross_attention": false, + "architectures": [ + "GPT2LMHeadModel" + ], + "attn_pdrop": 0.1, + "bos_token_id": 5, + "dtype": "float32", + "embd_pdrop": 0.1, + "eos_token_id": 6, + "initializer_range": 0.02, + "layer_norm_epsilon": 1e-05, + "model_type": "gpt2", + "n_embd": 768, + "n_head": 12, + "n_inner": null, + "n_layer": 6, + "n_positions": 1024, + "pad_token_id": null, + "reorder_and_upcast_attn": false, + "resid_pdrop": 0.1, + "scale_attn_by_inverse_layer_idx": false, + "scale_attn_weights": true, + "summary_activation": null, + "summary_first_dropout": 0.1, + "summary_proj_to_labels": true, + "summary_type": "cls_index", + "summary_use_proj": true, + "tie_word_embeddings": true, + "transformers_version": "5.5.3", + "use_cache": false, + "vocab_size": 597 +} diff --git a/timecost/n11/realtabformer/rtf-n11-20260501_010320/rtf_checkpoints/checkpoint-47124/generation_config.json b/timecost/n11/realtabformer/rtf-n11-20260501_010320/rtf_checkpoints/checkpoint-47124/generation_config.json new file mode 100644 index 0000000000000000000000000000000000000000..ffe89567780e75b5c22eade9be971483b9618f39 --- /dev/null +++ b/timecost/n11/realtabformer/rtf-n11-20260501_010320/rtf_checkpoints/checkpoint-47124/generation_config.json @@ -0,0 +1,9 @@ +{ + "_from_model_config": true, + "bos_token_id": 5, + "eos_token_id": 6, + "output_attentions": false, + "output_hidden_states": false, + "transformers_version": "5.5.3", + "use_cache": true +} diff --git a/timecost/n11/realtabformer/rtf-n11-20260501_010320/rtf_checkpoints/checkpoint-47124/model.safetensors b/timecost/n11/realtabformer/rtf-n11-20260501_010320/rtf_checkpoints/checkpoint-47124/model.safetensors new file mode 100644 index 0000000000000000000000000000000000000000..0da84e14d0cba65c6b91f53967aca213c909fb6d --- /dev/null +++ b/timecost/n11/realtabformer/rtf-n11-20260501_010320/rtf_checkpoints/checkpoint-47124/model.safetensors @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:2c5068664b4a45157f3638d2905c7a44c676e978ab5036b22c20a19d01988905 +size 175102408 diff --git a/timecost/n11/realtabformer/rtf-n11-20260501_010320/rtf_checkpoints/checkpoint-47124/optimizer.pt b/timecost/n11/realtabformer/rtf-n11-20260501_010320/rtf_checkpoints/checkpoint-47124/optimizer.pt new file mode 100644 index 0000000000000000000000000000000000000000..7934d5aa1bbd9a31805f60a202cf87b03ff557b2 --- /dev/null +++ b/timecost/n11/realtabformer/rtf-n11-20260501_010320/rtf_checkpoints/checkpoint-47124/optimizer.pt @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:ca891d9d15664615bdbd5271921bc98578c2d97c426daace2d4ce10b3700713f +size 350253899 diff --git a/timecost/n11/realtabformer/rtf-n11-20260501_010320/rtf_checkpoints/checkpoint-47124/rng_state.pth b/timecost/n11/realtabformer/rtf-n11-20260501_010320/rtf_checkpoints/checkpoint-47124/rng_state.pth new file mode 100644 index 0000000000000000000000000000000000000000..8c3d8c3dff721fad5d1527cd07691ff3d98b4e47 --- /dev/null +++ b/timecost/n11/realtabformer/rtf-n11-20260501_010320/rtf_checkpoints/checkpoint-47124/rng_state.pth @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:4fa7c578dd3b3c44388fb4dac34ff72e9939028333e11f290f8479fffafde8a3 +size 14645 diff --git a/timecost/n11/realtabformer/rtf-n11-20260501_010320/rtf_checkpoints/checkpoint-47124/scaler.pt b/timecost/n11/realtabformer/rtf-n11-20260501_010320/rtf_checkpoints/checkpoint-47124/scaler.pt new file mode 100644 index 0000000000000000000000000000000000000000..fd018ea77d2874e2997ceeda8c5bbd7a8f6568d0 --- /dev/null +++ b/timecost/n11/realtabformer/rtf-n11-20260501_010320/rtf_checkpoints/checkpoint-47124/scaler.pt @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:7f9ef752735d89964b0ee69b6f781e91fb878f1b71d0a82596659c6ac08b3122 +size 1383 diff --git a/timecost/n11/realtabformer/rtf-n11-20260501_010320/rtf_checkpoints/checkpoint-47124/scheduler.pt b/timecost/n11/realtabformer/rtf-n11-20260501_010320/rtf_checkpoints/checkpoint-47124/scheduler.pt new file mode 100644 index 0000000000000000000000000000000000000000..614456d94b2cbd79055e4f5650f29a279dcd4fc5 --- /dev/null +++ b/timecost/n11/realtabformer/rtf-n11-20260501_010320/rtf_checkpoints/checkpoint-47124/scheduler.pt @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:244f9c2a294e6a1aad9af31f3e443b30d2fdd1f8e42068d2944e1b9e099bcbe8 +size 1465 diff --git a/timecost/n11/realtabformer/rtf-n11-20260501_010320/rtf_checkpoints/checkpoint-47124/trainer_state.json b/timecost/n11/realtabformer/rtf-n11-20260501_010320/rtf_checkpoints/checkpoint-47124/trainer_state.json new file mode 100644 index 0000000000000000000000000000000000000000..90c9c2029b70a4ca334f20626da8174e17593229 --- /dev/null +++ b/timecost/n11/realtabformer/rtf-n11-20260501_010320/rtf_checkpoints/checkpoint-47124/trainer_state.json @@ -0,0 +1,3331 @@ +{ + "best_global_step": null, + "best_metric": null, + "best_model_checkpoint": null, + "epoch": 99.0, + "eval_steps": 100, + "global_step": 47124, + "is_hyper_param_search": false, + "is_local_process_zero": true, + "is_world_process_zero": true, + "log_history": [ + { + "epoch": 0.2103049421661409, + "grad_norm": 0.22972723841667175, + "learning_rate": 4.989600840336135e-05, + "loss": 2.8563604736328125, + "step": 100 + }, + { + "epoch": 0.4206098843322818, + "grad_norm": 0.20056591928005219, + "learning_rate": 4.9790966386554624e-05, + "loss": 1.7068206787109375, + "step": 200 + }, + { + "epoch": 0.6309148264984227, + "grad_norm": 0.1861766129732132, + "learning_rate": 4.9685924369747897e-05, + "loss": 1.6134432983398437, + "step": 300 + }, + { + "epoch": 0.8412197686645636, + "grad_norm": 0.1723501980304718, + "learning_rate": 4.9580882352941176e-05, + "loss": 1.5735923767089843, + "step": 400 + }, + { + "epoch": 1.0504731861198737, + "grad_norm": 0.17238108813762665, + "learning_rate": 4.9475840336134455e-05, + "loss": 1.5529734802246093, + "step": 500 + }, + { + "epoch": 1.2607781282860147, + "grad_norm": 0.17322759330272675, + "learning_rate": 4.9370798319327734e-05, + "loss": 1.536485137939453, + "step": 600 + }, + { + "epoch": 1.4710830704521556, + "grad_norm": 0.1677761971950531, + "learning_rate": 4.926575630252101e-05, + "loss": 1.5277809143066405, + "step": 700 + }, + { + "epoch": 1.6813880126182965, + "grad_norm": 0.1636463701725006, + "learning_rate": 4.9160714285714286e-05, + "loss": 1.5190211486816407, + "step": 800 + }, + { + "epoch": 1.8916929547844374, + "grad_norm": 0.16561312973499298, + "learning_rate": 4.9055672268907565e-05, + "loss": 1.51519287109375, + "step": 900 + }, + { + "epoch": 2.1009463722397475, + "grad_norm": 0.15477420389652252, + "learning_rate": 4.8950630252100845e-05, + "loss": 1.5094300842285155, + "step": 1000 + }, + { + "epoch": 2.3112513144058884, + "grad_norm": 0.16169467568397522, + "learning_rate": 4.8845588235294124e-05, + "loss": 1.503891143798828, + "step": 1100 + }, + { + "epoch": 2.5215562565720293, + "grad_norm": 0.1625037044286728, + "learning_rate": 4.8740546218487396e-05, + "loss": 1.5003668212890624, + "step": 1200 + }, + { + "epoch": 2.7318611987381702, + "grad_norm": 0.15850616991519928, + "learning_rate": 4.8635504201680676e-05, + "loss": 1.5004425048828125, + "step": 1300 + }, + { + "epoch": 2.942166140904311, + "grad_norm": 0.15703575313091278, + "learning_rate": 4.8530462184873955e-05, + "loss": 1.4983340454101564, + "step": 1400 + }, + { + "epoch": 3.1514195583596214, + "grad_norm": 0.16104279458522797, + "learning_rate": 4.8425420168067234e-05, + "loss": 1.4921080017089843, + "step": 1500 + }, + { + "epoch": 3.3617245005257623, + "grad_norm": 0.15719465911388397, + "learning_rate": 4.8320378151260507e-05, + "loss": 1.4903582763671874, + "step": 1600 + }, + { + "epoch": 3.5720294426919033, + "grad_norm": 0.15651755034923553, + "learning_rate": 4.821533613445378e-05, + "loss": 1.4904457092285157, + "step": 1700 + }, + { + "epoch": 3.782334384858044, + "grad_norm": 0.14600972831249237, + "learning_rate": 4.811029411764706e-05, + "loss": 1.4897219848632812, + "step": 1800 + }, + { + "epoch": 3.992639327024185, + "grad_norm": 0.15000982582569122, + "learning_rate": 4.800525210084034e-05, + "loss": 1.4866799926757812, + "step": 1900 + }, + { + "epoch": 4.201892744479495, + "grad_norm": 0.1467936933040619, + "learning_rate": 4.790021008403362e-05, + "loss": 1.48007080078125, + "step": 2000 + }, + { + "epoch": 4.412197686645636, + "grad_norm": 0.1541317105293274, + "learning_rate": 4.779516806722689e-05, + "loss": 1.48170166015625, + "step": 2100 + }, + { + "epoch": 4.622502628811777, + "grad_norm": 0.15136213600635529, + "learning_rate": 4.769012605042017e-05, + "loss": 1.4820193481445312, + "step": 2200 + }, + { + "epoch": 4.832807570977918, + "grad_norm": 0.15268521010875702, + "learning_rate": 4.758508403361345e-05, + "loss": 1.4826155090332032, + "step": 2300 + }, + { + "epoch": 5.042060988433228, + "grad_norm": 0.1507953554391861, + "learning_rate": 4.748004201680673e-05, + "loss": 1.4825518798828126, + "step": 2400 + }, + { + "epoch": 5.252365930599369, + "grad_norm": 0.15759222209453583, + "learning_rate": 4.7375e-05, + "loss": 1.4742916870117186, + "step": 2500 + }, + { + "epoch": 5.46267087276551, + "grad_norm": 0.1464644968509674, + "learning_rate": 4.726995798319328e-05, + "loss": 1.47645751953125, + "step": 2600 + }, + { + "epoch": 5.672975814931651, + "grad_norm": 0.1496453732252121, + "learning_rate": 4.716491596638656e-05, + "loss": 1.4782669067382812, + "step": 2700 + }, + { + "epoch": 5.883280757097792, + "grad_norm": 0.15732301771640778, + "learning_rate": 4.705987394957984e-05, + "loss": 1.474007110595703, + "step": 2800 + }, + { + "epoch": 6.092534174553102, + "grad_norm": 0.1535627543926239, + "learning_rate": 4.6954831932773117e-05, + "loss": 1.4723405456542968, + "step": 2900 + }, + { + "epoch": 6.302839116719243, + "grad_norm": 0.15365540981292725, + "learning_rate": 4.684978991596639e-05, + "loss": 1.470570068359375, + "step": 3000 + }, + { + "epoch": 6.513144058885384, + "grad_norm": 0.15696321427822113, + "learning_rate": 4.674474789915967e-05, + "loss": 1.4713912963867188, + "step": 3100 + }, + { + "epoch": 6.723449001051525, + "grad_norm": 0.1542283147573471, + "learning_rate": 4.663970588235294e-05, + "loss": 1.4717630004882813, + "step": 3200 + }, + { + "epoch": 6.933753943217665, + "grad_norm": 0.14150017499923706, + "learning_rate": 4.653466386554622e-05, + "loss": 1.4702410888671875, + "step": 3300 + }, + { + "epoch": 7.143007360672976, + "grad_norm": 0.1593707650899887, + "learning_rate": 4.64296218487395e-05, + "loss": 1.4674795532226563, + "step": 3400 + }, + { + "epoch": 7.353312302839116, + "grad_norm": 0.14085018634796143, + "learning_rate": 4.632457983193277e-05, + "loss": 1.4630509948730468, + "step": 3500 + }, + { + "epoch": 7.563617245005258, + "grad_norm": 0.15045367181301117, + "learning_rate": 4.621953781512605e-05, + "loss": 1.464947509765625, + "step": 3600 + }, + { + "epoch": 7.773922187171398, + "grad_norm": 0.1627761274576187, + "learning_rate": 4.611449579831933e-05, + "loss": 1.4676199340820313, + "step": 3700 + }, + { + "epoch": 7.9842271293375395, + "grad_norm": 0.15296733379364014, + "learning_rate": 4.600945378151261e-05, + "loss": 1.464564208984375, + "step": 3800 + }, + { + "epoch": 8.19348054679285, + "grad_norm": 0.15292306244373322, + "learning_rate": 4.590441176470588e-05, + "loss": 1.460281982421875, + "step": 3900 + }, + { + "epoch": 8.40378548895899, + "grad_norm": 0.14858974516391754, + "learning_rate": 4.579936974789916e-05, + "loss": 1.4601573181152343, + "step": 4000 + }, + { + "epoch": 8.614090431125131, + "grad_norm": 0.1559685617685318, + "learning_rate": 4.569432773109244e-05, + "loss": 1.459988555908203, + "step": 4100 + }, + { + "epoch": 8.824395373291273, + "grad_norm": 0.16048291325569153, + "learning_rate": 4.558928571428572e-05, + "loss": 1.4614971923828124, + "step": 4200 + }, + { + "epoch": 9.033648790746582, + "grad_norm": 0.15471497178077698, + "learning_rate": 4.548424369747899e-05, + "loss": 1.4605735778808593, + "step": 4300 + }, + { + "epoch": 9.243953732912724, + "grad_norm": 0.14675338566303253, + "learning_rate": 4.537920168067227e-05, + "loss": 1.4529206848144531, + "step": 4400 + }, + { + "epoch": 9.454258675078865, + "grad_norm": 0.15218420326709747, + "learning_rate": 4.527415966386555e-05, + "loss": 1.4555152893066405, + "step": 4500 + }, + { + "epoch": 9.664563617245005, + "grad_norm": 0.15305759012699127, + "learning_rate": 4.516911764705883e-05, + "loss": 1.4550628662109375, + "step": 4600 + }, + { + "epoch": 9.874868559411146, + "grad_norm": 0.14932408928871155, + "learning_rate": 4.50640756302521e-05, + "loss": 1.4576924133300782, + "step": 4700 + }, + { + "epoch": 10.084121976866456, + "grad_norm": 0.15317517518997192, + "learning_rate": 4.4959033613445375e-05, + "loss": 1.45219482421875, + "step": 4800 + }, + { + "epoch": 10.294426919032597, + "grad_norm": 0.14954303205013275, + "learning_rate": 4.4853991596638654e-05, + "loss": 1.4481625366210937, + "step": 4900 + }, + { + "epoch": 10.504731861198739, + "grad_norm": 0.1534873992204666, + "learning_rate": 4.4748949579831934e-05, + "loss": 1.4501405334472657, + "step": 5000 + }, + { + "epoch": 10.715036803364878, + "grad_norm": 0.1542547196149826, + "learning_rate": 4.464390756302521e-05, + "loss": 1.452711181640625, + "step": 5100 + }, + { + "epoch": 10.92534174553102, + "grad_norm": 0.15033429861068726, + "learning_rate": 4.453886554621849e-05, + "loss": 1.4518144226074219, + "step": 5200 + }, + { + "epoch": 11.13459516298633, + "grad_norm": 0.16419348120689392, + "learning_rate": 4.4433823529411765e-05, + "loss": 1.4447087097167968, + "step": 5300 + }, + { + "epoch": 11.34490010515247, + "grad_norm": 0.15558737516403198, + "learning_rate": 4.4328781512605044e-05, + "loss": 1.4432438659667968, + "step": 5400 + }, + { + "epoch": 11.555205047318612, + "grad_norm": 0.16111871600151062, + "learning_rate": 4.422373949579832e-05, + "loss": 1.44447509765625, + "step": 5500 + }, + { + "epoch": 11.765509989484753, + "grad_norm": 0.15655963122844696, + "learning_rate": 4.41186974789916e-05, + "loss": 1.446072998046875, + "step": 5600 + }, + { + "epoch": 11.975814931650893, + "grad_norm": 0.1640811264514923, + "learning_rate": 4.4013655462184875e-05, + "loss": 1.4470193481445313, + "step": 5700 + }, + { + "epoch": 12.185068349106205, + "grad_norm": 0.16302675008773804, + "learning_rate": 4.3908613445378154e-05, + "loss": 1.4352632141113282, + "step": 5800 + }, + { + "epoch": 12.395373291272344, + "grad_norm": 0.16527259349822998, + "learning_rate": 4.380357142857143e-05, + "loss": 1.4378224182128907, + "step": 5900 + }, + { + "epoch": 12.605678233438486, + "grad_norm": 0.15840137004852295, + "learning_rate": 4.369852941176471e-05, + "loss": 1.438340301513672, + "step": 6000 + }, + { + "epoch": 12.815983175604627, + "grad_norm": 0.16105377674102783, + "learning_rate": 4.3593487394957985e-05, + "loss": 1.4395623779296876, + "step": 6100 + }, + { + "epoch": 13.025236593059937, + "grad_norm": 0.1645898073911667, + "learning_rate": 4.348844537815126e-05, + "loss": 1.4419912719726562, + "step": 6200 + }, + { + "epoch": 13.235541535226078, + "grad_norm": 0.16387709975242615, + "learning_rate": 4.338340336134454e-05, + "loss": 1.4292103576660156, + "step": 6300 + }, + { + "epoch": 13.44584647739222, + "grad_norm": 0.16231203079223633, + "learning_rate": 4.3278361344537816e-05, + "loss": 1.4302072143554687, + "step": 6400 + }, + { + "epoch": 13.656151419558359, + "grad_norm": 0.17272767424583435, + "learning_rate": 4.3173319327731095e-05, + "loss": 1.4360617065429688, + "step": 6500 + }, + { + "epoch": 13.8664563617245, + "grad_norm": 0.16650696098804474, + "learning_rate": 4.306827731092437e-05, + "loss": 1.43187744140625, + "step": 6600 + }, + { + "epoch": 14.07570977917981, + "grad_norm": 0.17131085693836212, + "learning_rate": 4.296323529411765e-05, + "loss": 1.428362579345703, + "step": 6700 + }, + { + "epoch": 14.286014721345952, + "grad_norm": 0.1767681986093521, + "learning_rate": 4.2858193277310926e-05, + "loss": 1.4247616577148436, + "step": 6800 + }, + { + "epoch": 14.496319663512093, + "grad_norm": 0.17670001089572906, + "learning_rate": 4.2753151260504206e-05, + "loss": 1.4254454040527345, + "step": 6900 + }, + { + "epoch": 14.706624605678233, + "grad_norm": 0.1740790754556656, + "learning_rate": 4.2648109243697485e-05, + "loss": 1.4258729553222655, + "step": 7000 + }, + { + "epoch": 14.916929547844374, + "grad_norm": 0.1759176403284073, + "learning_rate": 4.254306722689076e-05, + "loss": 1.429442138671875, + "step": 7100 + }, + { + "epoch": 15.126182965299684, + "grad_norm": 0.17811505496501923, + "learning_rate": 4.2438025210084037e-05, + "loss": 1.4193470764160157, + "step": 7200 + }, + { + "epoch": 15.336487907465825, + "grad_norm": 0.1877354234457016, + "learning_rate": 4.2332983193277316e-05, + "loss": 1.4145277404785157, + "step": 7300 + }, + { + "epoch": 15.546792849631967, + "grad_norm": 0.18199266493320465, + "learning_rate": 4.2227941176470595e-05, + "loss": 1.4196495056152343, + "step": 7400 + }, + { + "epoch": 15.757097791798108, + "grad_norm": 0.18197669088840485, + "learning_rate": 4.212289915966387e-05, + "loss": 1.418301544189453, + "step": 7500 + }, + { + "epoch": 15.967402733964247, + "grad_norm": 0.1789412796497345, + "learning_rate": 4.201785714285714e-05, + "loss": 1.4207553100585937, + "step": 7600 + }, + { + "epoch": 16.176656151419557, + "grad_norm": 0.19073587656021118, + "learning_rate": 4.191281512605042e-05, + "loss": 1.405756072998047, + "step": 7700 + }, + { + "epoch": 16.3869610935857, + "grad_norm": 0.20197375118732452, + "learning_rate": 4.18077731092437e-05, + "loss": 1.4052299499511718, + "step": 7800 + }, + { + "epoch": 16.59726603575184, + "grad_norm": 0.19041137397289276, + "learning_rate": 4.170273109243698e-05, + "loss": 1.4102354431152344, + "step": 7900 + }, + { + "epoch": 16.80757097791798, + "grad_norm": 0.18918046355247498, + "learning_rate": 4.159768907563025e-05, + "loss": 1.4105937194824218, + "step": 8000 + }, + { + "epoch": 17.01682439537329, + "grad_norm": 0.20001663267612457, + "learning_rate": 4.149264705882353e-05, + "loss": 1.4125469970703124, + "step": 8100 + }, + { + "epoch": 17.22712933753943, + "grad_norm": 0.20373570919036865, + "learning_rate": 4.138760504201681e-05, + "loss": 1.3912005615234375, + "step": 8200 + }, + { + "epoch": 17.437434279705574, + "grad_norm": 0.21228203177452087, + "learning_rate": 4.128256302521009e-05, + "loss": 1.400099334716797, + "step": 8300 + }, + { + "epoch": 17.647739221871714, + "grad_norm": 0.19748076796531677, + "learning_rate": 4.117752100840336e-05, + "loss": 1.3983584594726564, + "step": 8400 + }, + { + "epoch": 17.858044164037857, + "grad_norm": 0.19849108159542084, + "learning_rate": 4.107247899159664e-05, + "loss": 1.4034251403808593, + "step": 8500 + }, + { + "epoch": 18.067297581493165, + "grad_norm": 0.20575450360774994, + "learning_rate": 4.096743697478992e-05, + "loss": 1.3967425537109375, + "step": 8600 + }, + { + "epoch": 18.277602523659304, + "grad_norm": 0.21221311390399933, + "learning_rate": 4.08623949579832e-05, + "loss": 1.3828977966308593, + "step": 8700 + }, + { + "epoch": 18.487907465825447, + "grad_norm": 0.21134966611862183, + "learning_rate": 4.075735294117648e-05, + "loss": 1.3854733276367188, + "step": 8800 + }, + { + "epoch": 18.698212407991587, + "grad_norm": 0.22016377747058868, + "learning_rate": 4.065231092436975e-05, + "loss": 1.3901968383789063, + "step": 8900 + }, + { + "epoch": 18.90851735015773, + "grad_norm": 0.21417804062366486, + "learning_rate": 4.054726890756303e-05, + "loss": 1.393634033203125, + "step": 9000 + }, + { + "epoch": 19.117770767613038, + "grad_norm": 0.22256560623645782, + "learning_rate": 4.04422268907563e-05, + "loss": 1.3783042907714844, + "step": 9100 + }, + { + "epoch": 19.32807570977918, + "grad_norm": 0.22738981246948242, + "learning_rate": 4.033718487394958e-05, + "loss": 1.370293426513672, + "step": 9200 + }, + { + "epoch": 19.53838065194532, + "grad_norm": 0.22241266071796417, + "learning_rate": 4.023214285714286e-05, + "loss": 1.3737275695800781, + "step": 9300 + }, + { + "epoch": 19.74868559411146, + "grad_norm": 0.23391330242156982, + "learning_rate": 4.012710084033613e-05, + "loss": 1.377355194091797, + "step": 9400 + }, + { + "epoch": 19.958990536277604, + "grad_norm": 0.22519543766975403, + "learning_rate": 4.002205882352941e-05, + "loss": 1.3812960815429687, + "step": 9500 + }, + { + "epoch": 20.16824395373291, + "grad_norm": 0.24074196815490723, + "learning_rate": 3.991701680672269e-05, + "loss": 1.3570118713378907, + "step": 9600 + }, + { + "epoch": 20.378548895899055, + "grad_norm": 0.24606694281101227, + "learning_rate": 3.981197478991597e-05, + "loss": 1.3554267883300781, + "step": 9700 + }, + { + "epoch": 20.588853838065194, + "grad_norm": 0.23913830518722534, + "learning_rate": 3.970693277310924e-05, + "loss": 1.3621504211425781, + "step": 9800 + }, + { + "epoch": 20.799158780231334, + "grad_norm": 0.2383037805557251, + "learning_rate": 3.960189075630252e-05, + "loss": 1.3660731506347656, + "step": 9900 + }, + { + "epoch": 21.008412197686646, + "grad_norm": 0.241073340177536, + "learning_rate": 3.94968487394958e-05, + "loss": 1.3653842163085939, + "step": 10000 + }, + { + "epoch": 21.218717139852785, + "grad_norm": 0.25740981101989746, + "learning_rate": 3.939180672268908e-05, + "loss": 1.3331489562988281, + "step": 10100 + }, + { + "epoch": 21.42902208201893, + "grad_norm": 0.25830078125, + "learning_rate": 3.928676470588235e-05, + "loss": 1.3397677612304688, + "step": 10200 + }, + { + "epoch": 21.639327024185068, + "grad_norm": 0.26326829195022583, + "learning_rate": 3.918172268907563e-05, + "loss": 1.3485836791992187, + "step": 10300 + }, + { + "epoch": 21.84963196635121, + "grad_norm": 0.26259171962738037, + "learning_rate": 3.907668067226891e-05, + "loss": 1.3472573852539063, + "step": 10400 + }, + { + "epoch": 22.05888538380652, + "grad_norm": 0.27395525574684143, + "learning_rate": 3.897163865546219e-05, + "loss": 1.3426994323730468, + "step": 10500 + }, + { + "epoch": 22.26919032597266, + "grad_norm": 0.2820175290107727, + "learning_rate": 3.8866596638655463e-05, + "loss": 1.3179571533203125, + "step": 10600 + }, + { + "epoch": 22.479495268138802, + "grad_norm": 0.2815999984741211, + "learning_rate": 3.8761554621848736e-05, + "loss": 1.3242898559570313, + "step": 10700 + }, + { + "epoch": 22.68980021030494, + "grad_norm": 0.2788920998573303, + "learning_rate": 3.8656512605042015e-05, + "loss": 1.328133087158203, + "step": 10800 + }, + { + "epoch": 22.900105152471085, + "grad_norm": 0.2880179286003113, + "learning_rate": 3.8551470588235294e-05, + "loss": 1.3323233032226562, + "step": 10900 + }, + { + "epoch": 23.109358569926393, + "grad_norm": 0.29323825240135193, + "learning_rate": 3.8446428571428574e-05, + "loss": 1.3124215698242188, + "step": 11000 + }, + { + "epoch": 23.319663512092536, + "grad_norm": 0.3037724196910858, + "learning_rate": 3.834138655462185e-05, + "loss": 1.300673370361328, + "step": 11100 + }, + { + "epoch": 23.529968454258675, + "grad_norm": 0.3019108772277832, + "learning_rate": 3.8236344537815125e-05, + "loss": 1.3033621215820312, + "step": 11200 + }, + { + "epoch": 23.740273396424815, + "grad_norm": 0.3141040503978729, + "learning_rate": 3.8131302521008405e-05, + "loss": 1.3118415832519532, + "step": 11300 + }, + { + "epoch": 23.950578338590958, + "grad_norm": 0.305362731218338, + "learning_rate": 3.8026260504201684e-05, + "loss": 1.3120425415039063, + "step": 11400 + }, + { + "epoch": 24.159831756046266, + "grad_norm": 0.3149303197860718, + "learning_rate": 3.792121848739496e-05, + "loss": 1.281750946044922, + "step": 11500 + }, + { + "epoch": 24.37013669821241, + "grad_norm": 0.31983524560928345, + "learning_rate": 3.7816176470588236e-05, + "loss": 1.2786111450195312, + "step": 11600 + }, + { + "epoch": 24.58044164037855, + "grad_norm": 0.32351240515708923, + "learning_rate": 3.7711134453781515e-05, + "loss": 1.284888916015625, + "step": 11700 + }, + { + "epoch": 24.79074658254469, + "grad_norm": 0.3239966034889221, + "learning_rate": 3.7606092436974794e-05, + "loss": 1.2899176025390624, + "step": 11800 + }, + { + "epoch": 25.0, + "grad_norm": 0.49487531185150146, + "learning_rate": 3.7501050420168073e-05, + "loss": 1.2903105163574218, + "step": 11900 + }, + { + "epoch": 25.21030494216614, + "grad_norm": 0.343091756105423, + "learning_rate": 3.7396008403361346e-05, + "loss": 1.24728271484375, + "step": 12000 + }, + { + "epoch": 25.420609884332283, + "grad_norm": 0.3502146899700165, + "learning_rate": 3.729096638655462e-05, + "loss": 1.2573788452148438, + "step": 12100 + }, + { + "epoch": 25.630914826498422, + "grad_norm": 0.34780803322792053, + "learning_rate": 3.71859243697479e-05, + "loss": 1.259660186767578, + "step": 12200 + }, + { + "epoch": 25.841219768664562, + "grad_norm": 0.3617474436759949, + "learning_rate": 3.708088235294118e-05, + "loss": 1.267321548461914, + "step": 12300 + }, + { + "epoch": 26.050473186119874, + "grad_norm": 0.36151477694511414, + "learning_rate": 3.6975840336134456e-05, + "loss": 1.2569818878173828, + "step": 12400 + }, + { + "epoch": 26.260778128286013, + "grad_norm": 0.3706369400024414, + "learning_rate": 3.687079831932773e-05, + "loss": 1.2217762756347657, + "step": 12500 + }, + { + "epoch": 26.471083070452156, + "grad_norm": 0.36876797676086426, + "learning_rate": 3.676575630252101e-05, + "loss": 1.2311412048339845, + "step": 12600 + }, + { + "epoch": 26.681388012618296, + "grad_norm": 0.37329521775245667, + "learning_rate": 3.666071428571429e-05, + "loss": 1.23805908203125, + "step": 12700 + }, + { + "epoch": 26.89169295478444, + "grad_norm": 0.3803170919418335, + "learning_rate": 3.6555672268907566e-05, + "loss": 1.2423350524902343, + "step": 12800 + }, + { + "epoch": 27.100946372239747, + "grad_norm": 0.3833712637424469, + "learning_rate": 3.6450630252100846e-05, + "loss": 1.222099609375, + "step": 12900 + }, + { + "epoch": 27.31125131440589, + "grad_norm": 0.3987831771373749, + "learning_rate": 3.634558823529412e-05, + "loss": 1.1973797607421874, + "step": 13000 + }, + { + "epoch": 27.52155625657203, + "grad_norm": 0.39121338725090027, + "learning_rate": 3.62405462184874e-05, + "loss": 1.206004409790039, + "step": 13100 + }, + { + "epoch": 27.73186119873817, + "grad_norm": 0.4020472764968872, + "learning_rate": 3.613550420168068e-05, + "loss": 1.2129373168945312, + "step": 13200 + }, + { + "epoch": 27.942166140904312, + "grad_norm": 0.4015159606933594, + "learning_rate": 3.6030462184873956e-05, + "loss": 1.2179686737060547, + "step": 13300 + }, + { + "epoch": 28.15141955835962, + "grad_norm": 0.3998790681362152, + "learning_rate": 3.592542016806723e-05, + "loss": 1.1833483123779296, + "step": 13400 + }, + { + "epoch": 28.361724500525764, + "grad_norm": 0.4190026819705963, + "learning_rate": 3.582037815126051e-05, + "loss": 1.1737586975097656, + "step": 13500 + }, + { + "epoch": 28.572029442691903, + "grad_norm": 0.4131736159324646, + "learning_rate": 3.571533613445378e-05, + "loss": 1.1806912231445312, + "step": 13600 + }, + { + "epoch": 28.782334384858043, + "grad_norm": 0.4250866174697876, + "learning_rate": 3.561029411764706e-05, + "loss": 1.1913446044921876, + "step": 13700 + }, + { + "epoch": 28.992639327024186, + "grad_norm": 0.4264129400253296, + "learning_rate": 3.550525210084034e-05, + "loss": 1.1878318786621094, + "step": 13800 + }, + { + "epoch": 29.201892744479494, + "grad_norm": 0.43633338809013367, + "learning_rate": 3.540021008403361e-05, + "loss": 1.1386358642578125, + "step": 13900 + }, + { + "epoch": 29.412197686645637, + "grad_norm": 0.4486881494522095, + "learning_rate": 3.529516806722689e-05, + "loss": 1.1477174377441406, + "step": 14000 + }, + { + "epoch": 29.622502628811777, + "grad_norm": 0.4420314133167267, + "learning_rate": 3.519012605042017e-05, + "loss": 1.1530896759033202, + "step": 14100 + }, + { + "epoch": 29.832807570977916, + "grad_norm": 0.4598003327846527, + "learning_rate": 3.508508403361345e-05, + "loss": 1.16252197265625, + "step": 14200 + }, + { + "epoch": 30.042060988433228, + "grad_norm": 0.44520533084869385, + "learning_rate": 3.498004201680672e-05, + "loss": 1.1551103973388672, + "step": 14300 + }, + { + "epoch": 30.252365930599368, + "grad_norm": 0.45871588587760925, + "learning_rate": 3.4875e-05, + "loss": 1.107753448486328, + "step": 14400 + }, + { + "epoch": 30.46267087276551, + "grad_norm": 0.46063199639320374, + "learning_rate": 3.476995798319328e-05, + "loss": 1.1182296752929688, + "step": 14500 + }, + { + "epoch": 30.67297581493165, + "grad_norm": 0.4760204553604126, + "learning_rate": 3.466491596638656e-05, + "loss": 1.129236373901367, + "step": 14600 + }, + { + "epoch": 30.883280757097793, + "grad_norm": 0.47249314188957214, + "learning_rate": 3.455987394957984e-05, + "loss": 1.1352229309082031, + "step": 14700 + }, + { + "epoch": 31.0925341745531, + "grad_norm": 0.4624006450176239, + "learning_rate": 3.445483193277311e-05, + "loss": 1.1082867431640624, + "step": 14800 + }, + { + "epoch": 31.302839116719245, + "grad_norm": 0.4787958264350891, + "learning_rate": 3.434978991596639e-05, + "loss": 1.0818411254882812, + "step": 14900 + }, + { + "epoch": 31.513144058885384, + "grad_norm": 0.4875246286392212, + "learning_rate": 3.424474789915967e-05, + "loss": 1.092553939819336, + "step": 15000 + }, + { + "epoch": 31.723449001051524, + "grad_norm": 0.48742467164993286, + "learning_rate": 3.413970588235294e-05, + "loss": 1.1002989959716798, + "step": 15100 + }, + { + "epoch": 31.933753943217667, + "grad_norm": 0.5014126896858215, + "learning_rate": 3.403466386554622e-05, + "loss": 1.1067331695556641, + "step": 15200 + }, + { + "epoch": 32.143007360672975, + "grad_norm": 0.48793110251426697, + "learning_rate": 3.3929621848739494e-05, + "loss": 1.0649752807617188, + "step": 15300 + }, + { + "epoch": 32.353312302839115, + "grad_norm": 0.5064884424209595, + "learning_rate": 3.382457983193277e-05, + "loss": 1.0489683532714844, + "step": 15400 + }, + { + "epoch": 32.56361724500526, + "grad_norm": 0.5118729472160339, + "learning_rate": 3.371953781512605e-05, + "loss": 1.0648185729980468, + "step": 15500 + }, + { + "epoch": 32.7739221871714, + "grad_norm": 0.5236688852310181, + "learning_rate": 3.361449579831933e-05, + "loss": 1.0743647766113282, + "step": 15600 + }, + { + "epoch": 32.98422712933754, + "grad_norm": 0.5397860407829285, + "learning_rate": 3.3509453781512604e-05, + "loss": 1.080048828125, + "step": 15700 + }, + { + "epoch": 33.19348054679285, + "grad_norm": 0.5270755290985107, + "learning_rate": 3.340441176470588e-05, + "loss": 1.0228548431396485, + "step": 15800 + }, + { + "epoch": 33.40378548895899, + "grad_norm": 0.5429406762123108, + "learning_rate": 3.329936974789916e-05, + "loss": 1.028949966430664, + "step": 15900 + }, + { + "epoch": 33.614090431125135, + "grad_norm": 0.5323997735977173, + "learning_rate": 3.319432773109244e-05, + "loss": 1.037523956298828, + "step": 16000 + }, + { + "epoch": 33.824395373291274, + "grad_norm": 0.5385149717330933, + "learning_rate": 3.3090336134453784e-05, + "loss": 1.0431160736083984, + "step": 16100 + }, + { + "epoch": 34.03364879074658, + "grad_norm": 0.5089665651321411, + "learning_rate": 3.2986344537815127e-05, + "loss": 1.0349723815917968, + "step": 16200 + }, + { + "epoch": 34.24395373291272, + "grad_norm": 0.5455434918403625, + "learning_rate": 3.2881302521008406e-05, + "loss": 0.988803482055664, + "step": 16300 + }, + { + "epoch": 34.45425867507886, + "grad_norm": 0.5569856762886047, + "learning_rate": 3.2776260504201685e-05, + "loss": 1.0031266021728515, + "step": 16400 + }, + { + "epoch": 34.66456361724501, + "grad_norm": 0.5644022226333618, + "learning_rate": 3.2671218487394964e-05, + "loss": 1.0083402252197267, + "step": 16500 + }, + { + "epoch": 34.87486855941115, + "grad_norm": 0.5685406923294067, + "learning_rate": 3.256617647058824e-05, + "loss": 1.0177439117431641, + "step": 16600 + }, + { + "epoch": 35.084121976866456, + "grad_norm": 0.543632447719574, + "learning_rate": 3.2461134453781516e-05, + "loss": 0.9930455780029297, + "step": 16700 + }, + { + "epoch": 35.294426919032595, + "grad_norm": 0.5612316727638245, + "learning_rate": 3.2356092436974795e-05, + "loss": 0.9650897216796875, + "step": 16800 + }, + { + "epoch": 35.504731861198735, + "grad_norm": 0.5759446024894714, + "learning_rate": 3.225105042016807e-05, + "loss": 0.973653564453125, + "step": 16900 + }, + { + "epoch": 35.71503680336488, + "grad_norm": 0.574255645275116, + "learning_rate": 3.214600840336135e-05, + "loss": 0.981424560546875, + "step": 17000 + }, + { + "epoch": 35.92534174553102, + "grad_norm": 0.5851606726646423, + "learning_rate": 3.204096638655462e-05, + "loss": 0.991123046875, + "step": 17100 + }, + { + "epoch": 36.13459516298633, + "grad_norm": 0.5589666366577148, + "learning_rate": 3.19359243697479e-05, + "loss": 0.9481909942626953, + "step": 17200 + }, + { + "epoch": 36.34490010515247, + "grad_norm": 0.5968824625015259, + "learning_rate": 3.183088235294118e-05, + "loss": 0.9365898895263672, + "step": 17300 + }, + { + "epoch": 36.55520504731861, + "grad_norm": 0.5998508930206299, + "learning_rate": 3.172584033613446e-05, + "loss": 0.9492893218994141, + "step": 17400 + }, + { + "epoch": 36.765509989484755, + "grad_norm": 0.6060558557510376, + "learning_rate": 3.162079831932773e-05, + "loss": 0.9547823333740234, + "step": 17500 + }, + { + "epoch": 36.975814931650895, + "grad_norm": 0.589341402053833, + "learning_rate": 3.151575630252101e-05, + "loss": 0.9626276397705078, + "step": 17600 + }, + { + "epoch": 37.1850683491062, + "grad_norm": 0.5891321897506714, + "learning_rate": 3.141071428571429e-05, + "loss": 0.9065424346923828, + "step": 17700 + }, + { + "epoch": 37.39537329127234, + "grad_norm": 0.5880729556083679, + "learning_rate": 3.130567226890757e-05, + "loss": 0.9107749938964844, + "step": 17800 + }, + { + "epoch": 37.60567823343849, + "grad_norm": 0.6077774167060852, + "learning_rate": 3.120063025210084e-05, + "loss": 0.9193459320068359, + "step": 17900 + }, + { + "epoch": 37.81598317560463, + "grad_norm": 0.6189863681793213, + "learning_rate": 3.109558823529412e-05, + "loss": 0.9286084747314454, + "step": 18000 + }, + { + "epoch": 38.02523659305994, + "grad_norm": 0.5724475383758545, + "learning_rate": 3.09905462184874e-05, + "loss": 0.9282203674316406, + "step": 18100 + }, + { + "epoch": 38.235541535226076, + "grad_norm": 0.5952550768852234, + "learning_rate": 3.088550420168068e-05, + "loss": 0.8734053039550781, + "step": 18200 + }, + { + "epoch": 38.445846477392216, + "grad_norm": 0.5967536568641663, + "learning_rate": 3.078046218487395e-05, + "loss": 0.886033935546875, + "step": 18300 + }, + { + "epoch": 38.65615141955836, + "grad_norm": 0.6298649311065674, + "learning_rate": 3.067542016806722e-05, + "loss": 0.8977913665771484, + "step": 18400 + }, + { + "epoch": 38.8664563617245, + "grad_norm": 0.6457948684692383, + "learning_rate": 3.05703781512605e-05, + "loss": 0.9048082733154297, + "step": 18500 + }, + { + "epoch": 39.07570977917981, + "grad_norm": 0.6172012090682983, + "learning_rate": 3.046533613445378e-05, + "loss": 0.8857656860351563, + "step": 18600 + }, + { + "epoch": 39.28601472134595, + "grad_norm": 0.5979504585266113, + "learning_rate": 3.036029411764706e-05, + "loss": 0.8502845001220704, + "step": 18700 + }, + { + "epoch": 39.49631966351209, + "grad_norm": 0.6284430623054504, + "learning_rate": 3.0255252100840336e-05, + "loss": 0.8602873229980469, + "step": 18800 + }, + { + "epoch": 39.706624605678236, + "grad_norm": 0.6330845355987549, + "learning_rate": 3.0150210084033616e-05, + "loss": 0.8690576934814453, + "step": 18900 + }, + { + "epoch": 39.916929547844376, + "grad_norm": 0.6465399861335754, + "learning_rate": 3.004516806722689e-05, + "loss": 0.8787310791015625, + "step": 19000 + }, + { + "epoch": 40.126182965299684, + "grad_norm": 0.6255329251289368, + "learning_rate": 2.994117647058824e-05, + "loss": 0.84158203125, + "step": 19100 + }, + { + "epoch": 40.33648790746582, + "grad_norm": 0.6304967999458313, + "learning_rate": 2.983613445378151e-05, + "loss": 0.8283135223388672, + "step": 19200 + }, + { + "epoch": 40.54679284963196, + "grad_norm": 0.6366279125213623, + "learning_rate": 2.973109243697479e-05, + "loss": 0.8385968780517579, + "step": 19300 + }, + { + "epoch": 40.75709779179811, + "grad_norm": 0.6407002210617065, + "learning_rate": 2.9626050420168065e-05, + "loss": 0.8465004730224609, + "step": 19400 + }, + { + "epoch": 40.96740273396425, + "grad_norm": 0.6582015156745911, + "learning_rate": 2.9521008403361344e-05, + "loss": 0.8523696136474609, + "step": 19500 + }, + { + "epoch": 41.17665615141956, + "grad_norm": 0.6326037645339966, + "learning_rate": 2.9415966386554624e-05, + "loss": 0.8025535583496094, + "step": 19600 + }, + { + "epoch": 41.3869610935857, + "grad_norm": 0.631605863571167, + "learning_rate": 2.93109243697479e-05, + "loss": 0.8077165222167969, + "step": 19700 + }, + { + "epoch": 41.597266035751844, + "grad_norm": 0.6400684118270874, + "learning_rate": 2.920588235294118e-05, + "loss": 0.8162235260009766, + "step": 19800 + }, + { + "epoch": 41.80757097791798, + "grad_norm": 0.6499695181846619, + "learning_rate": 2.9100840336134455e-05, + "loss": 0.8243218231201171, + "step": 19900 + }, + { + "epoch": 42.01682439537329, + "grad_norm": 0.6392955183982849, + "learning_rate": 2.8995798319327734e-05, + "loss": 0.8244134521484375, + "step": 20000 + }, + { + "epoch": 42.22712933753943, + "grad_norm": 0.6429536938667297, + "learning_rate": 2.889075630252101e-05, + "loss": 0.7711881256103515, + "step": 20100 + }, + { + "epoch": 42.43743427970557, + "grad_norm": 0.6592206358909607, + "learning_rate": 2.878571428571429e-05, + "loss": 0.7841451263427734, + "step": 20200 + }, + { + "epoch": 42.64773922187172, + "grad_norm": 0.6881083846092224, + "learning_rate": 2.8680672268907565e-05, + "loss": 0.792880859375, + "step": 20300 + }, + { + "epoch": 42.85804416403786, + "grad_norm": 0.6662302017211914, + "learning_rate": 2.8575630252100844e-05, + "loss": 0.8001659393310547, + "step": 20400 + }, + { + "epoch": 43.067297581493165, + "grad_norm": 0.6177626252174377, + "learning_rate": 2.847058823529412e-05, + "loss": 0.7870485687255859, + "step": 20500 + }, + { + "epoch": 43.277602523659304, + "grad_norm": 0.6681060194969177, + "learning_rate": 2.83655462184874e-05, + "loss": 0.7512457275390625, + "step": 20600 + }, + { + "epoch": 43.487907465825444, + "grad_norm": 0.669675886631012, + "learning_rate": 2.826050420168067e-05, + "loss": 0.7591960144042968, + "step": 20700 + }, + { + "epoch": 43.69821240799159, + "grad_norm": 0.7097092866897583, + "learning_rate": 2.8155462184873948e-05, + "loss": 0.7737602233886719, + "step": 20800 + }, + { + "epoch": 43.90851735015773, + "grad_norm": 0.6951079964637756, + "learning_rate": 2.8050420168067227e-05, + "loss": 0.7815242767333984, + "step": 20900 + }, + { + "epoch": 44.11777076761304, + "grad_norm": 0.639824390411377, + "learning_rate": 2.7945378151260503e-05, + "loss": 0.7512903594970703, + "step": 21000 + }, + { + "epoch": 44.32807570977918, + "grad_norm": 0.67326819896698, + "learning_rate": 2.7840336134453782e-05, + "loss": 0.7329978179931641, + "step": 21100 + }, + { + "epoch": 44.53838065194532, + "grad_norm": 0.6938571333885193, + "learning_rate": 2.7735294117647058e-05, + "loss": 0.7421668243408203, + "step": 21200 + }, + { + "epoch": 44.748685594111464, + "grad_norm": 0.6845099925994873, + "learning_rate": 2.7630252100840337e-05, + "loss": 0.7509217071533203, + "step": 21300 + }, + { + "epoch": 44.958990536277604, + "grad_norm": 0.681825578212738, + "learning_rate": 2.7525210084033616e-05, + "loss": 0.7620004272460937, + "step": 21400 + }, + { + "epoch": 45.16824395373291, + "grad_norm": 0.6556856036186218, + "learning_rate": 2.7421218487394962e-05, + "loss": 0.7184288787841797, + "step": 21500 + }, + { + "epoch": 45.37854889589905, + "grad_norm": 0.6386471390724182, + "learning_rate": 2.7316176470588235e-05, + "loss": 0.7161962127685547, + "step": 21600 + }, + { + "epoch": 45.5888538380652, + "grad_norm": 0.6947113275527954, + "learning_rate": 2.721113445378151e-05, + "loss": 0.7244486999511719, + "step": 21700 + }, + { + "epoch": 45.79915878023134, + "grad_norm": 0.6741232872009277, + "learning_rate": 2.710609243697479e-05, + "loss": 0.7308968353271484, + "step": 21800 + }, + { + "epoch": 46.008412197686646, + "grad_norm": 0.6631771326065063, + "learning_rate": 2.7001050420168066e-05, + "loss": 0.7323504638671875, + "step": 21900 + }, + { + "epoch": 46.218717139852785, + "grad_norm": 0.6702309250831604, + "learning_rate": 2.6896008403361345e-05, + "loss": 0.6865713500976562, + "step": 22000 + }, + { + "epoch": 46.429022082018925, + "grad_norm": 0.6711138486862183, + "learning_rate": 2.679096638655462e-05, + "loss": 0.697294921875, + "step": 22100 + }, + { + "epoch": 46.63932702418507, + "grad_norm": 0.7067892551422119, + "learning_rate": 2.66859243697479e-05, + "loss": 0.70609619140625, + "step": 22200 + }, + { + "epoch": 46.84963196635121, + "grad_norm": 0.6743476390838623, + "learning_rate": 2.658088235294118e-05, + "loss": 0.7116059112548828, + "step": 22300 + }, + { + "epoch": 47.05888538380652, + "grad_norm": 0.642842710018158, + "learning_rate": 2.6475840336134455e-05, + "loss": 0.7024728393554688, + "step": 22400 + }, + { + "epoch": 47.26919032597266, + "grad_norm": 0.6852782368659973, + "learning_rate": 2.6370798319327734e-05, + "loss": 0.6698217010498047, + "step": 22500 + }, + { + "epoch": 47.4794952681388, + "grad_norm": 0.6817244291305542, + "learning_rate": 2.626575630252101e-05, + "loss": 0.6796794891357422, + "step": 22600 + }, + { + "epoch": 47.689800210304945, + "grad_norm": 0.665703535079956, + "learning_rate": 2.616071428571429e-05, + "loss": 0.689930191040039, + "step": 22700 + }, + { + "epoch": 47.900105152471085, + "grad_norm": 0.7286046147346497, + "learning_rate": 2.6055672268907565e-05, + "loss": 0.6968262481689453, + "step": 22800 + }, + { + "epoch": 48.10935856992639, + "grad_norm": 0.6568066477775574, + "learning_rate": 2.5950630252100845e-05, + "loss": 0.6714718627929688, + "step": 22900 + }, + { + "epoch": 48.31966351209253, + "grad_norm": 0.6909933090209961, + "learning_rate": 2.584558823529412e-05, + "loss": 0.6521046447753907, + "step": 23000 + }, + { + "epoch": 48.52996845425867, + "grad_norm": 0.6730957627296448, + "learning_rate": 2.5740546218487393e-05, + "loss": 0.6635847473144532, + "step": 23100 + }, + { + "epoch": 48.74027339642482, + "grad_norm": 0.7137960195541382, + "learning_rate": 2.5635504201680672e-05, + "loss": 0.6703518676757813, + "step": 23200 + }, + { + "epoch": 48.95057833859096, + "grad_norm": 0.7035015225410461, + "learning_rate": 2.5530462184873948e-05, + "loss": 0.678240737915039, + "step": 23300 + }, + { + "epoch": 49.159831756046266, + "grad_norm": 0.6768185496330261, + "learning_rate": 2.5425420168067227e-05, + "loss": 0.6413292694091797, + "step": 23400 + }, + { + "epoch": 49.370136698212406, + "grad_norm": 0.6941663026809692, + "learning_rate": 2.5320378151260503e-05, + "loss": 0.6415236663818359, + "step": 23500 + }, + { + "epoch": 49.58044164037855, + "grad_norm": 0.722435712814331, + "learning_rate": 2.5215336134453782e-05, + "loss": 0.6499783325195313, + "step": 23600 + }, + { + "epoch": 49.79074658254469, + "grad_norm": 0.7071043252944946, + "learning_rate": 2.511029411764706e-05, + "loss": 0.6546615600585938, + "step": 23700 + }, + { + "epoch": 50.0, + "grad_norm": Infinity, + "learning_rate": 2.5005252100840338e-05, + "loss": 0.6589860534667968, + "step": 23800 + }, + { + "epoch": 50.21030494216614, + "grad_norm": 0.6747011542320251, + "learning_rate": 2.490126050420168e-05, + "loss": 0.6164878845214844, + "step": 23900 + }, + { + "epoch": 50.42060988433228, + "grad_norm": 0.6953312754631042, + "learning_rate": 2.479621848739496e-05, + "loss": 0.6259209060668945, + "step": 24000 + }, + { + "epoch": 50.630914826498426, + "grad_norm": 0.6829053163528442, + "learning_rate": 2.469117647058824e-05, + "loss": 0.6306737518310547, + "step": 24100 + }, + { + "epoch": 50.841219768664565, + "grad_norm": 0.7105507850646973, + "learning_rate": 2.4586134453781514e-05, + "loss": 0.6402838897705078, + "step": 24200 + }, + { + "epoch": 51.05047318611987, + "grad_norm": 0.6592356562614441, + "learning_rate": 2.4481092436974794e-05, + "loss": 0.6321442413330078, + "step": 24300 + }, + { + "epoch": 51.26077812828601, + "grad_norm": 0.6957094073295593, + "learning_rate": 2.4376050420168066e-05, + "loss": 0.6060052108764649, + "step": 24400 + }, + { + "epoch": 51.47108307045215, + "grad_norm": 0.6904229521751404, + "learning_rate": 2.4271008403361345e-05, + "loss": 0.6094649505615234, + "step": 24500 + }, + { + "epoch": 51.6813880126183, + "grad_norm": 0.7173294425010681, + "learning_rate": 2.416596638655462e-05, + "loss": 0.6187096023559571, + "step": 24600 + }, + { + "epoch": 51.89169295478444, + "grad_norm": 0.7143198251724243, + "learning_rate": 2.40609243697479e-05, + "loss": 0.6268323516845703, + "step": 24700 + }, + { + "epoch": 52.10094637223975, + "grad_norm": 0.6786720752716064, + "learning_rate": 2.3955882352941176e-05, + "loss": 0.6083223342895507, + "step": 24800 + }, + { + "epoch": 52.31125131440589, + "grad_norm": 0.6900521516799927, + "learning_rate": 2.3850840336134456e-05, + "loss": 0.5922721862792969, + "step": 24900 + }, + { + "epoch": 52.521556256572026, + "grad_norm": 0.7288543581962585, + "learning_rate": 2.3745798319327735e-05, + "loss": 0.5982749938964844, + "step": 25000 + }, + { + "epoch": 52.73186119873817, + "grad_norm": 0.704078197479248, + "learning_rate": 2.3640756302521007e-05, + "loss": 0.6041379547119141, + "step": 25100 + }, + { + "epoch": 52.94216614090431, + "grad_norm": 0.706262469291687, + "learning_rate": 2.3535714285714287e-05, + "loss": 0.6083390808105469, + "step": 25200 + }, + { + "epoch": 53.15141955835962, + "grad_norm": 0.6775776743888855, + "learning_rate": 2.3430672268907563e-05, + "loss": 0.5816435623168945, + "step": 25300 + }, + { + "epoch": 53.36172450052576, + "grad_norm": 0.7253007888793945, + "learning_rate": 2.3325630252100842e-05, + "loss": 0.58095458984375, + "step": 25400 + }, + { + "epoch": 53.5720294426919, + "grad_norm": 0.7169889211654663, + "learning_rate": 2.3220588235294118e-05, + "loss": 0.5878105163574219, + "step": 25500 + }, + { + "epoch": 53.782334384858046, + "grad_norm": 0.6921281814575195, + "learning_rate": 2.3115546218487397e-05, + "loss": 0.5918175506591797, + "step": 25600 + }, + { + "epoch": 53.992639327024186, + "grad_norm": 0.7570663094520569, + "learning_rate": 2.3010504201680673e-05, + "loss": 0.5992276000976563, + "step": 25700 + }, + { + "epoch": 54.201892744479494, + "grad_norm": 0.7045475840568542, + "learning_rate": 2.2905462184873952e-05, + "loss": 0.563626937866211, + "step": 25800 + }, + { + "epoch": 54.412197686645634, + "grad_norm": 0.7311537861824036, + "learning_rate": 2.2800420168067228e-05, + "loss": 0.5649079513549805, + "step": 25900 + }, + { + "epoch": 54.62250262881178, + "grad_norm": 0.7197280526161194, + "learning_rate": 2.2695378151260504e-05, + "loss": 0.5740287017822265, + "step": 26000 + }, + { + "epoch": 54.83280757097792, + "grad_norm": 0.7047930359840393, + "learning_rate": 2.2590336134453783e-05, + "loss": 0.5799992752075195, + "step": 26100 + }, + { + "epoch": 55.04206098843323, + "grad_norm": 0.663329541683197, + "learning_rate": 2.2486344537815125e-05, + "loss": 0.5747824096679688, + "step": 26200 + }, + { + "epoch": 55.25236593059937, + "grad_norm": 0.6825776100158691, + "learning_rate": 2.2381302521008405e-05, + "loss": 0.5511475372314453, + "step": 26300 + }, + { + "epoch": 55.46267087276551, + "grad_norm": 0.7081674337387085, + "learning_rate": 2.227626050420168e-05, + "loss": 0.5568293380737305, + "step": 26400 + }, + { + "epoch": 55.672975814931654, + "grad_norm": 0.6991596221923828, + "learning_rate": 2.217121848739496e-05, + "loss": 0.5623696899414062, + "step": 26500 + }, + { + "epoch": 55.88328075709779, + "grad_norm": 0.7421116828918457, + "learning_rate": 2.2066176470588236e-05, + "loss": 0.5673596572875976, + "step": 26600 + }, + { + "epoch": 56.0925341745531, + "grad_norm": 0.6679620146751404, + "learning_rate": 2.1961134453781515e-05, + "loss": 0.555915298461914, + "step": 26700 + }, + { + "epoch": 56.30283911671924, + "grad_norm": 0.7035086750984192, + "learning_rate": 2.185609243697479e-05, + "loss": 0.5402443313598633, + "step": 26800 + }, + { + "epoch": 56.51314405888538, + "grad_norm": 0.6888571381568909, + "learning_rate": 2.1751050420168067e-05, + "loss": 0.5462953186035157, + "step": 26900 + }, + { + "epoch": 56.72344900105153, + "grad_norm": 0.7356609106063843, + "learning_rate": 2.1646008403361346e-05, + "loss": 0.5512025833129883, + "step": 27000 + }, + { + "epoch": 56.93375394321767, + "grad_norm": 0.7569705247879028, + "learning_rate": 2.1540966386554622e-05, + "loss": 0.5562152481079101, + "step": 27100 + }, + { + "epoch": 57.143007360672975, + "grad_norm": 0.6764115691184998, + "learning_rate": 2.14359243697479e-05, + "loss": 0.5337548065185547, + "step": 27200 + }, + { + "epoch": 57.353312302839115, + "grad_norm": 0.7006810307502747, + "learning_rate": 2.1330882352941177e-05, + "loss": 0.5296073913574219, + "step": 27300 + }, + { + "epoch": 57.56361724500526, + "grad_norm": 0.7158169150352478, + "learning_rate": 2.1225840336134456e-05, + "loss": 0.5382700347900391, + "step": 27400 + }, + { + "epoch": 57.7739221871714, + "grad_norm": 0.7132992148399353, + "learning_rate": 2.1120798319327732e-05, + "loss": 0.5398505783081055, + "step": 27500 + }, + { + "epoch": 57.98422712933754, + "grad_norm": 0.7330942749977112, + "learning_rate": 2.1015756302521008e-05, + "loss": 0.5458747863769531, + "step": 27600 + }, + { + "epoch": 58.19348054679285, + "grad_norm": 0.669278621673584, + "learning_rate": 2.0910714285714287e-05, + "loss": 0.5161695861816407, + "step": 27700 + }, + { + "epoch": 58.40378548895899, + "grad_norm": 0.6958737373352051, + "learning_rate": 2.0805672268907563e-05, + "loss": 0.5201998901367187, + "step": 27800 + }, + { + "epoch": 58.614090431125135, + "grad_norm": 0.6824914813041687, + "learning_rate": 2.0700630252100842e-05, + "loss": 0.5258338928222657, + "step": 27900 + }, + { + "epoch": 58.824395373291274, + "grad_norm": 0.6634467244148254, + "learning_rate": 2.0595588235294118e-05, + "loss": 0.5300619888305664, + "step": 28000 + }, + { + "epoch": 59.03364879074658, + "grad_norm": 0.6863816380500793, + "learning_rate": 2.0490546218487397e-05, + "loss": 0.5283214950561523, + "step": 28100 + }, + { + "epoch": 59.24395373291272, + "grad_norm": 0.7183119654655457, + "learning_rate": 2.0385504201680673e-05, + "loss": 0.506834487915039, + "step": 28200 + }, + { + "epoch": 59.45425867507886, + "grad_norm": 0.7142145037651062, + "learning_rate": 2.028046218487395e-05, + "loss": 0.5117876815795899, + "step": 28300 + }, + { + "epoch": 59.66456361724501, + "grad_norm": 0.7280924916267395, + "learning_rate": 2.017542016806723e-05, + "loss": 0.5153473281860351, + "step": 28400 + }, + { + "epoch": 59.87486855941115, + "grad_norm": 0.693505048751831, + "learning_rate": 2.0070378151260504e-05, + "loss": 0.5219352722167969, + "step": 28500 + }, + { + "epoch": 60.084121976866456, + "grad_norm": 0.6892845034599304, + "learning_rate": 1.9965336134453784e-05, + "loss": 0.5122858810424805, + "step": 28600 + }, + { + "epoch": 60.294426919032595, + "grad_norm": 0.6604379415512085, + "learning_rate": 1.986029411764706e-05, + "loss": 0.49614715576171875, + "step": 28700 + }, + { + "epoch": 60.504731861198735, + "grad_norm": 0.7204891443252563, + "learning_rate": 1.975525210084034e-05, + "loss": 0.5024974822998047, + "step": 28800 + }, + { + "epoch": 60.71503680336488, + "grad_norm": 0.7127634286880493, + "learning_rate": 1.9650210084033615e-05, + "loss": 0.5073120498657226, + "step": 28900 + }, + { + "epoch": 60.92534174553102, + "grad_norm": 0.7359983921051025, + "learning_rate": 1.954516806722689e-05, + "loss": 0.5116232681274414, + "step": 29000 + }, + { + "epoch": 61.13459516298633, + "grad_norm": 0.6893951296806335, + "learning_rate": 1.944012605042017e-05, + "loss": 0.4952814865112305, + "step": 29100 + }, + { + "epoch": 61.34490010515247, + "grad_norm": 0.6849685311317444, + "learning_rate": 1.9335084033613446e-05, + "loss": 0.4899435043334961, + "step": 29200 + }, + { + "epoch": 61.55520504731861, + "grad_norm": 0.7181743383407593, + "learning_rate": 1.9230042016806725e-05, + "loss": 0.4946512985229492, + "step": 29300 + }, + { + "epoch": 61.765509989484755, + "grad_norm": 0.6820606589317322, + "learning_rate": 1.9125e-05, + "loss": 0.49947418212890626, + "step": 29400 + }, + { + "epoch": 61.975814931650895, + "grad_norm": 0.7111321687698364, + "learning_rate": 1.901995798319328e-05, + "loss": 0.5020344543457032, + "step": 29500 + }, + { + "epoch": 62.1850683491062, + "grad_norm": 0.7008198499679565, + "learning_rate": 1.8914915966386556e-05, + "loss": 0.48151485443115233, + "step": 29600 + }, + { + "epoch": 62.39537329127234, + "grad_norm": 0.7171513438224792, + "learning_rate": 1.880987394957983e-05, + "loss": 0.48171932220458985, + "step": 29700 + }, + { + "epoch": 62.60567823343849, + "grad_norm": 0.7375807762145996, + "learning_rate": 1.8704831932773108e-05, + "loss": 0.4873679733276367, + "step": 29800 + }, + { + "epoch": 62.81598317560463, + "grad_norm": 0.6806672811508179, + "learning_rate": 1.8599789915966387e-05, + "loss": 0.4887456130981445, + "step": 29900 + }, + { + "epoch": 63.02523659305994, + "grad_norm": 0.6749327182769775, + "learning_rate": 1.8494747899159666e-05, + "loss": 0.48958889007568357, + "step": 30000 + }, + { + "epoch": 63.235541535226076, + "grad_norm": 0.7122695446014404, + "learning_rate": 1.8389705882352942e-05, + "loss": 0.46849212646484373, + "step": 30100 + }, + { + "epoch": 63.445846477392216, + "grad_norm": 0.6742300987243652, + "learning_rate": 1.8285714285714288e-05, + "loss": 0.4735026550292969, + "step": 30200 + }, + { + "epoch": 63.65615141955836, + "grad_norm": 0.7086833119392395, + "learning_rate": 1.8180672268907564e-05, + "loss": 0.47808189392089845, + "step": 30300 + }, + { + "epoch": 63.8664563617245, + "grad_norm": 0.673115611076355, + "learning_rate": 1.8075630252100843e-05, + "loss": 0.4810390853881836, + "step": 30400 + }, + { + "epoch": 64.07570977917982, + "grad_norm": 0.7166642546653748, + "learning_rate": 1.797058823529412e-05, + "loss": 0.47662986755371095, + "step": 30500 + }, + { + "epoch": 64.28601472134595, + "grad_norm": 0.7239866852760315, + "learning_rate": 1.7865546218487395e-05, + "loss": 0.46368907928466796, + "step": 30600 + }, + { + "epoch": 64.4963196635121, + "grad_norm": 0.6777023077011108, + "learning_rate": 1.776050420168067e-05, + "loss": 0.46869037628173826, + "step": 30700 + }, + { + "epoch": 64.70662460567823, + "grad_norm": 0.7028587460517883, + "learning_rate": 1.765546218487395e-05, + "loss": 0.47153076171875, + "step": 30800 + }, + { + "epoch": 64.91692954784438, + "grad_norm": 0.7220568656921387, + "learning_rate": 1.755042016806723e-05, + "loss": 0.4732553482055664, + "step": 30900 + }, + { + "epoch": 65.12618296529969, + "grad_norm": 0.6283636093139648, + "learning_rate": 1.7445378151260505e-05, + "loss": 0.4627264404296875, + "step": 31000 + }, + { + "epoch": 65.33648790746582, + "grad_norm": 0.6411524415016174, + "learning_rate": 1.7340336134453784e-05, + "loss": 0.45608016967773435, + "step": 31100 + }, + { + "epoch": 65.54679284963197, + "grad_norm": 0.668154776096344, + "learning_rate": 1.723529411764706e-05, + "loss": 0.46059967041015626, + "step": 31200 + }, + { + "epoch": 65.7570977917981, + "grad_norm": 0.7226248979568481, + "learning_rate": 1.713025210084034e-05, + "loss": 0.4659851455688477, + "step": 31300 + }, + { + "epoch": 65.96740273396425, + "grad_norm": 0.6833023428916931, + "learning_rate": 1.7025210084033612e-05, + "loss": 0.46931900024414064, + "step": 31400 + }, + { + "epoch": 66.17665615141956, + "grad_norm": 0.6941800117492676, + "learning_rate": 1.6921218487394958e-05, + "loss": 0.45006973266601563, + "step": 31500 + }, + { + "epoch": 66.3869610935857, + "grad_norm": 0.63517826795578, + "learning_rate": 1.6816176470588237e-05, + "loss": 0.44848171234130857, + "step": 31600 + }, + { + "epoch": 66.59726603575184, + "grad_norm": 0.6846080422401428, + "learning_rate": 1.6711134453781513e-05, + "loss": 0.45420032501220703, + "step": 31700 + }, + { + "epoch": 66.80757097791798, + "grad_norm": 0.6388368010520935, + "learning_rate": 1.6606092436974792e-05, + "loss": 0.4580923843383789, + "step": 31800 + }, + { + "epoch": 67.01682439537329, + "grad_norm": 0.6670629978179932, + "learning_rate": 1.6501050420168068e-05, + "loss": 0.4585027313232422, + "step": 31900 + }, + { + "epoch": 67.22712933753944, + "grad_norm": 0.6662338972091675, + "learning_rate": 1.6396008403361347e-05, + "loss": 0.44079010009765623, + "step": 32000 + }, + { + "epoch": 67.43743427970557, + "grad_norm": 0.6707865595817566, + "learning_rate": 1.6290966386554623e-05, + "loss": 0.44413238525390625, + "step": 32100 + }, + { + "epoch": 67.64773922187172, + "grad_norm": 0.656842052936554, + "learning_rate": 1.6185924369747902e-05, + "loss": 0.44844043731689454, + "step": 32200 + }, + { + "epoch": 67.85804416403785, + "grad_norm": 0.6646634340286255, + "learning_rate": 1.6080882352941175e-05, + "loss": 0.44970947265625, + "step": 32300 + }, + { + "epoch": 68.06729758149316, + "grad_norm": 0.6447365880012512, + "learning_rate": 1.5975840336134454e-05, + "loss": 0.4450407028198242, + "step": 32400 + }, + { + "epoch": 68.27760252365931, + "grad_norm": 0.6727699637413025, + "learning_rate": 1.587079831932773e-05, + "loss": 0.43177310943603514, + "step": 32500 + }, + { + "epoch": 68.48790746582544, + "grad_norm": 0.7130571603775024, + "learning_rate": 1.576575630252101e-05, + "loss": 0.4379489517211914, + "step": 32600 + }, + { + "epoch": 68.69821240799159, + "grad_norm": 0.7220073938369751, + "learning_rate": 1.566071428571429e-05, + "loss": 0.4425164794921875, + "step": 32700 + }, + { + "epoch": 68.90851735015772, + "grad_norm": 0.6695141196250916, + "learning_rate": 1.5555672268907564e-05, + "loss": 0.44274383544921875, + "step": 32800 + }, + { + "epoch": 69.11777076761304, + "grad_norm": 0.6740268468856812, + "learning_rate": 1.5450630252100843e-05, + "loss": 0.4357725143432617, + "step": 32900 + }, + { + "epoch": 69.32807570977918, + "grad_norm": 0.6566063165664673, + "learning_rate": 1.5345588235294116e-05, + "loss": 0.4283485412597656, + "step": 33000 + }, + { + "epoch": 69.53838065194532, + "grad_norm": 0.6752663850784302, + "learning_rate": 1.5240546218487395e-05, + "loss": 0.43225677490234377, + "step": 33100 + }, + { + "epoch": 69.74868559411146, + "grad_norm": 0.7038667798042297, + "learning_rate": 1.5135504201680673e-05, + "loss": 0.43592594146728514, + "step": 33200 + }, + { + "epoch": 69.9589905362776, + "grad_norm": 0.6961196660995483, + "learning_rate": 1.503046218487395e-05, + "loss": 0.438877067565918, + "step": 33300 + }, + { + "epoch": 70.16824395373291, + "grad_norm": 0.6535352468490601, + "learning_rate": 1.4925420168067228e-05, + "loss": 0.4252385330200195, + "step": 33400 + }, + { + "epoch": 70.37854889589906, + "grad_norm": 0.6601018905639648, + "learning_rate": 1.4820378151260505e-05, + "loss": 0.42285392761230467, + "step": 33500 + }, + { + "epoch": 70.58885383806519, + "grad_norm": 0.6948896050453186, + "learning_rate": 1.4715336134453783e-05, + "loss": 0.427175407409668, + "step": 33600 + }, + { + "epoch": 70.79915878023134, + "grad_norm": 0.6372560858726501, + "learning_rate": 1.461029411764706e-05, + "loss": 0.42832706451416014, + "step": 33700 + }, + { + "epoch": 71.00841219768665, + "grad_norm": 0.6517939567565918, + "learning_rate": 1.4505252100840336e-05, + "loss": 0.4324043273925781, + "step": 33800 + }, + { + "epoch": 71.21871713985279, + "grad_norm": 0.6330206990242004, + "learning_rate": 1.4400210084033614e-05, + "loss": 0.4146746826171875, + "step": 33900 + }, + { + "epoch": 71.42902208201893, + "grad_norm": 0.6658615469932556, + "learning_rate": 1.4295168067226892e-05, + "loss": 0.4180047225952148, + "step": 34000 + }, + { + "epoch": 71.63932702418506, + "grad_norm": 0.6433075070381165, + "learning_rate": 1.4190126050420169e-05, + "loss": 0.4219693374633789, + "step": 34100 + }, + { + "epoch": 71.84963196635121, + "grad_norm": 0.6470766663551331, + "learning_rate": 1.4085084033613447e-05, + "loss": 0.4214926528930664, + "step": 34200 + }, + { + "epoch": 72.05888538380653, + "grad_norm": 0.6315721273422241, + "learning_rate": 1.3981092436974791e-05, + "loss": 0.4204498291015625, + "step": 34300 + }, + { + "epoch": 72.26919032597266, + "grad_norm": 0.6722202897071838, + "learning_rate": 1.3876050420168068e-05, + "loss": 0.4105443572998047, + "step": 34400 + }, + { + "epoch": 72.4794952681388, + "grad_norm": 0.654528021812439, + "learning_rate": 1.3771008403361346e-05, + "loss": 0.41524337768554687, + "step": 34500 + }, + { + "epoch": 72.68980021030494, + "grad_norm": 0.6449755430221558, + "learning_rate": 1.3665966386554622e-05, + "loss": 0.4175481414794922, + "step": 34600 + }, + { + "epoch": 72.90010515247108, + "grad_norm": 0.6468359231948853, + "learning_rate": 1.35609243697479e-05, + "loss": 0.41863433837890623, + "step": 34700 + }, + { + "epoch": 73.1093585699264, + "grad_norm": 0.6471462845802307, + "learning_rate": 1.3455882352941177e-05, + "loss": 0.411123161315918, + "step": 34800 + }, + { + "epoch": 73.31966351209253, + "grad_norm": 0.6382157802581787, + "learning_rate": 1.3350840336134455e-05, + "loss": 0.40554931640625, + "step": 34900 + }, + { + "epoch": 73.52996845425868, + "grad_norm": 0.6727550029754639, + "learning_rate": 1.3245798319327732e-05, + "loss": 0.40884464263916015, + "step": 35000 + }, + { + "epoch": 73.74027339642481, + "grad_norm": 0.6494147181510925, + "learning_rate": 1.314075630252101e-05, + "loss": 0.4114807891845703, + "step": 35100 + }, + { + "epoch": 73.95057833859096, + "grad_norm": 0.6971067786216736, + "learning_rate": 1.3035714285714287e-05, + "loss": 0.4129951477050781, + "step": 35200 + }, + { + "epoch": 74.15983175604627, + "grad_norm": 0.630617082118988, + "learning_rate": 1.2930672268907565e-05, + "loss": 0.40283798217773437, + "step": 35300 + }, + { + "epoch": 74.3701366982124, + "grad_norm": 0.6068241000175476, + "learning_rate": 1.2825630252100839e-05, + "loss": 0.4017567825317383, + "step": 35400 + }, + { + "epoch": 74.58044164037855, + "grad_norm": 0.6767259836196899, + "learning_rate": 1.2720588235294118e-05, + "loss": 0.40448307037353515, + "step": 35500 + }, + { + "epoch": 74.79074658254468, + "grad_norm": 0.7011847496032715, + "learning_rate": 1.2615546218487396e-05, + "loss": 0.4047744369506836, + "step": 35600 + }, + { + "epoch": 75.0, + "grad_norm": 0.9920335412025452, + "learning_rate": 1.2510504201680673e-05, + "loss": 0.4085837936401367, + "step": 35700 + }, + { + "epoch": 75.21030494216615, + "grad_norm": 0.6520708203315735, + "learning_rate": 1.2405462184873951e-05, + "loss": 0.39399688720703124, + "step": 35800 + }, + { + "epoch": 75.42060988433228, + "grad_norm": 0.6656842827796936, + "learning_rate": 1.2300420168067227e-05, + "loss": 0.3963521957397461, + "step": 35900 + }, + { + "epoch": 75.63091482649843, + "grad_norm": 0.6576446294784546, + "learning_rate": 1.2195378151260504e-05, + "loss": 0.3992136383056641, + "step": 36000 + }, + { + "epoch": 75.84121976866456, + "grad_norm": 0.6238224506378174, + "learning_rate": 1.2090336134453782e-05, + "loss": 0.40125537872314454, + "step": 36100 + }, + { + "epoch": 76.05047318611987, + "grad_norm": 0.6389949917793274, + "learning_rate": 1.198529411764706e-05, + "loss": 0.3995349884033203, + "step": 36200 + }, + { + "epoch": 76.26077812828602, + "grad_norm": 0.6240091919898987, + "learning_rate": 1.1880252100840335e-05, + "loss": 0.3890629577636719, + "step": 36300 + }, + { + "epoch": 76.47108307045215, + "grad_norm": 0.6367642879486084, + "learning_rate": 1.1775210084033615e-05, + "loss": 0.39277313232421873, + "step": 36400 + }, + { + "epoch": 76.6813880126183, + "grad_norm": 0.6215347647666931, + "learning_rate": 1.1670168067226892e-05, + "loss": 0.3941745376586914, + "step": 36500 + }, + { + "epoch": 76.89169295478443, + "grad_norm": 0.6176421642303467, + "learning_rate": 1.156512605042017e-05, + "loss": 0.3961213302612305, + "step": 36600 + }, + { + "epoch": 77.10094637223975, + "grad_norm": 0.6433852314949036, + "learning_rate": 1.1460084033613446e-05, + "loss": 0.39362903594970705, + "step": 36700 + }, + { + "epoch": 77.3112513144059, + "grad_norm": 0.6288033127784729, + "learning_rate": 1.1355042016806723e-05, + "loss": 0.3870785140991211, + "step": 36800 + }, + { + "epoch": 77.52155625657203, + "grad_norm": 0.6061193943023682, + "learning_rate": 1.125e-05, + "loss": 0.38955581665039063, + "step": 36900 + }, + { + "epoch": 77.73186119873817, + "grad_norm": 0.6680556535720825, + "learning_rate": 1.1144957983193278e-05, + "loss": 0.390676383972168, + "step": 37000 + }, + { + "epoch": 77.9421661409043, + "grad_norm": 0.623725950717926, + "learning_rate": 1.1039915966386554e-05, + "loss": 0.3921066665649414, + "step": 37100 + }, + { + "epoch": 78.15141955835962, + "grad_norm": 0.6346238255500793, + "learning_rate": 1.0935924369747898e-05, + "loss": 0.3845651626586914, + "step": 37200 + }, + { + "epoch": 78.36172450052577, + "grad_norm": 0.6062731146812439, + "learning_rate": 1.0830882352941178e-05, + "loss": 0.380772705078125, + "step": 37300 + }, + { + "epoch": 78.5720294426919, + "grad_norm": 0.6125079989433289, + "learning_rate": 1.0725840336134455e-05, + "loss": 0.3834884262084961, + "step": 37400 + }, + { + "epoch": 78.78233438485805, + "grad_norm": 0.6804420948028564, + "learning_rate": 1.0620798319327733e-05, + "loss": 0.3863555526733398, + "step": 37500 + }, + { + "epoch": 78.99263932702418, + "grad_norm": 0.6568316221237183, + "learning_rate": 1.0515756302521009e-05, + "loss": 0.3898443603515625, + "step": 37600 + }, + { + "epoch": 79.2018927444795, + "grad_norm": 0.6262179017066956, + "learning_rate": 1.0410714285714286e-05, + "loss": 0.37717395782470703, + "step": 37700 + }, + { + "epoch": 79.41219768664564, + "grad_norm": 0.6335896849632263, + "learning_rate": 1.0305672268907564e-05, + "loss": 0.37976459503173826, + "step": 37800 + }, + { + "epoch": 79.62250262881177, + "grad_norm": 0.675938069820404, + "learning_rate": 1.0200630252100841e-05, + "loss": 0.38054397583007815, + "step": 37900 + }, + { + "epoch": 79.83280757097792, + "grad_norm": 0.650644838809967, + "learning_rate": 1.0095588235294117e-05, + "loss": 0.3817191696166992, + "step": 38000 + }, + { + "epoch": 80.04206098843324, + "grad_norm": 0.5988778471946716, + "learning_rate": 9.990546218487395e-06, + "loss": 0.3799977493286133, + "step": 38100 + }, + { + "epoch": 80.25236593059937, + "grad_norm": 0.6436987519264221, + "learning_rate": 9.885504201680674e-06, + "loss": 0.37264183044433596, + "step": 38200 + }, + { + "epoch": 80.46267087276551, + "grad_norm": 0.610487699508667, + "learning_rate": 9.78046218487395e-06, + "loss": 0.3753046417236328, + "step": 38300 + }, + { + "epoch": 80.67297581493165, + "grad_norm": 0.6378571391105652, + "learning_rate": 9.675420168067227e-06, + "loss": 0.3749809646606445, + "step": 38400 + }, + { + "epoch": 80.8832807570978, + "grad_norm": 0.6599664688110352, + "learning_rate": 9.570378151260505e-06, + "loss": 0.37958168029785155, + "step": 38500 + }, + { + "epoch": 81.09253417455311, + "grad_norm": 0.6057779788970947, + "learning_rate": 9.465336134453782e-06, + "loss": 0.3755946731567383, + "step": 38600 + }, + { + "epoch": 81.30283911671924, + "grad_norm": 0.6186268925666809, + "learning_rate": 9.360294117647058e-06, + "loss": 0.3689208221435547, + "step": 38700 + }, + { + "epoch": 81.51314405888539, + "grad_norm": 0.6031709909439087, + "learning_rate": 9.255252100840336e-06, + "loss": 0.37045917510986326, + "step": 38800 + }, + { + "epoch": 81.72344900105152, + "grad_norm": 0.6903654336929321, + "learning_rate": 9.150210084033613e-06, + "loss": 0.37341190338134767, + "step": 38900 + }, + { + "epoch": 81.93375394321767, + "grad_norm": 0.6498835682868958, + "learning_rate": 9.045168067226891e-06, + "loss": 0.3741530227661133, + "step": 39000 + }, + { + "epoch": 82.14300736067298, + "grad_norm": 0.6078621745109558, + "learning_rate": 8.940126050420169e-06, + "loss": 0.36713558197021484, + "step": 39100 + }, + { + "epoch": 82.35331230283911, + "grad_norm": 0.6294094324111938, + "learning_rate": 8.835084033613446e-06, + "loss": 0.3661073303222656, + "step": 39200 + }, + { + "epoch": 82.56361724500526, + "grad_norm": 0.6120302081108093, + "learning_rate": 8.730042016806724e-06, + "loss": 0.3683062744140625, + "step": 39300 + }, + { + "epoch": 82.7739221871714, + "grad_norm": 0.6194695830345154, + "learning_rate": 8.625e-06, + "loss": 0.3718934631347656, + "step": 39400 + }, + { + "epoch": 82.98422712933754, + "grad_norm": 0.6603109240531921, + "learning_rate": 8.519957983193277e-06, + "loss": 0.37141822814941405, + "step": 39500 + }, + { + "epoch": 83.19348054679286, + "grad_norm": 0.6176982522010803, + "learning_rate": 8.414915966386555e-06, + "loss": 0.36253021240234373, + "step": 39600 + }, + { + "epoch": 83.40378548895899, + "grad_norm": 0.6788721084594727, + "learning_rate": 8.309873949579832e-06, + "loss": 0.36460174560546876, + "step": 39700 + }, + { + "epoch": 83.61409043112513, + "grad_norm": 0.6141113638877869, + "learning_rate": 8.20483193277311e-06, + "loss": 0.36554264068603515, + "step": 39800 + }, + { + "epoch": 83.82439537329127, + "grad_norm": 0.6193323135375977, + "learning_rate": 8.099789915966387e-06, + "loss": 0.36707286834716796, + "step": 39900 + }, + { + "epoch": 84.03364879074658, + "grad_norm": 0.6383187770843506, + "learning_rate": 7.994747899159665e-06, + "loss": 0.3661843872070312, + "step": 40000 + }, + { + "epoch": 84.24395373291273, + "grad_norm": 0.5923520922660828, + "learning_rate": 7.889705882352943e-06, + "loss": 0.35978816986083983, + "step": 40100 + }, + { + "epoch": 84.45425867507886, + "grad_norm": 0.641968846321106, + "learning_rate": 7.784663865546218e-06, + "loss": 0.35977176666259764, + "step": 40200 + }, + { + "epoch": 84.66456361724501, + "grad_norm": 0.6307324767112732, + "learning_rate": 7.679621848739496e-06, + "loss": 0.36135292053222656, + "step": 40300 + }, + { + "epoch": 84.87486855941114, + "grad_norm": 0.6303888559341431, + "learning_rate": 7.5745798319327735e-06, + "loss": 0.36290821075439456, + "step": 40400 + }, + { + "epoch": 85.08412197686646, + "grad_norm": 0.5610889792442322, + "learning_rate": 7.469537815126051e-06, + "loss": 0.36016101837158204, + "step": 40500 + }, + { + "epoch": 85.2944269190326, + "grad_norm": 0.5796296000480652, + "learning_rate": 7.364495798319328e-06, + "loss": 0.35660606384277344, + "step": 40600 + }, + { + "epoch": 85.50473186119874, + "grad_norm": 0.6147542595863342, + "learning_rate": 7.259453781512605e-06, + "loss": 0.35944347381591796, + "step": 40700 + }, + { + "epoch": 85.71503680336488, + "grad_norm": 0.6097769737243652, + "learning_rate": 7.154411764705883e-06, + "loss": 0.3589036560058594, + "step": 40800 + }, + { + "epoch": 85.92534174553101, + "grad_norm": 0.6288202404975891, + "learning_rate": 7.04936974789916e-06, + "loss": 0.3591917419433594, + "step": 40900 + }, + { + "epoch": 86.13459516298633, + "grad_norm": 0.6195931434631348, + "learning_rate": 6.944327731092437e-06, + "loss": 0.3569915771484375, + "step": 41000 + }, + { + "epoch": 86.34490010515248, + "grad_norm": 0.5890372395515442, + "learning_rate": 6.839285714285715e-06, + "loss": 0.3543994903564453, + "step": 41100 + }, + { + "epoch": 86.55520504731861, + "grad_norm": 0.6272594332695007, + "learning_rate": 6.735294117647059e-06, + "loss": 0.3553640365600586, + "step": 41200 + }, + { + "epoch": 86.76550998948476, + "grad_norm": 0.6778700351715088, + "learning_rate": 6.6302521008403365e-06, + "loss": 0.3564106750488281, + "step": 41300 + }, + { + "epoch": 86.97581493165089, + "grad_norm": 0.6336688995361328, + "learning_rate": 6.525210084033614e-06, + "loss": 0.35713409423828124, + "step": 41400 + }, + { + "epoch": 87.1850683491062, + "grad_norm": 0.6053069829940796, + "learning_rate": 6.421218487394959e-06, + "loss": 0.3506643295288086, + "step": 41500 + }, + { + "epoch": 87.39537329127235, + "grad_norm": 0.6175255179405212, + "learning_rate": 6.316176470588235e-06, + "loss": 0.35214996337890625, + "step": 41600 + }, + { + "epoch": 87.60567823343848, + "grad_norm": 0.5915444493293762, + "learning_rate": 6.2111344537815125e-06, + "loss": 0.3522480392456055, + "step": 41700 + }, + { + "epoch": 87.81598317560463, + "grad_norm": 0.5907636880874634, + "learning_rate": 6.10609243697479e-06, + "loss": 0.3520878601074219, + "step": 41800 + }, + { + "epoch": 88.02523659305994, + "grad_norm": 0.6209415197372437, + "learning_rate": 6.001050420168068e-06, + "loss": 0.3545633316040039, + "step": 41900 + }, + { + "epoch": 88.23554153522608, + "grad_norm": 0.5926827788352966, + "learning_rate": 5.896008403361345e-06, + "loss": 0.34920032501220705, + "step": 42000 + }, + { + "epoch": 88.44584647739222, + "grad_norm": 0.638471245765686, + "learning_rate": 5.790966386554622e-06, + "loss": 0.34805423736572266, + "step": 42100 + }, + { + "epoch": 88.65615141955836, + "grad_norm": 0.6181325316429138, + "learning_rate": 5.6859243697478994e-06, + "loss": 0.3501460647583008, + "step": 42200 + }, + { + "epoch": 88.8664563617245, + "grad_norm": 0.6029173135757446, + "learning_rate": 5.580882352941177e-06, + "loss": 0.35028797149658203, + "step": 42300 + }, + { + "epoch": 89.07570977917982, + "grad_norm": 0.5673274397850037, + "learning_rate": 5.475840336134454e-06, + "loss": 0.34918766021728515, + "step": 42400 + }, + { + "epoch": 89.28601472134595, + "grad_norm": 0.5657567977905273, + "learning_rate": 5.370798319327731e-06, + "loss": 0.34565746307373046, + "step": 42500 + }, + { + "epoch": 89.4963196635121, + "grad_norm": 0.6014168858528137, + "learning_rate": 5.265756302521008e-06, + "loss": 0.3450989532470703, + "step": 42600 + }, + { + "epoch": 89.70662460567823, + "grad_norm": 0.5631797909736633, + "learning_rate": 5.160714285714286e-06, + "loss": 0.3477408218383789, + "step": 42700 + }, + { + "epoch": 89.91692954784438, + "grad_norm": 0.624321699142456, + "learning_rate": 5.055672268907563e-06, + "loss": 0.34852649688720705, + "step": 42800 + }, + { + "epoch": 90.12618296529969, + "grad_norm": 0.6004353761672974, + "learning_rate": 4.950630252100841e-06, + "loss": 0.3450387191772461, + "step": 42900 + }, + { + "epoch": 90.33648790746582, + "grad_norm": 0.6030150651931763, + "learning_rate": 4.845588235294117e-06, + "loss": 0.34261096954345704, + "step": 43000 + }, + { + "epoch": 90.54679284963197, + "grad_norm": 0.5574061870574951, + "learning_rate": 4.740546218487396e-06, + "loss": 0.3450190734863281, + "step": 43100 + }, + { + "epoch": 90.7570977917981, + "grad_norm": 0.5677763819694519, + "learning_rate": 4.6355042016806725e-06, + "loss": 0.3442384338378906, + "step": 43200 + }, + { + "epoch": 90.96740273396425, + "grad_norm": 0.6088888645172119, + "learning_rate": 4.53046218487395e-06, + "loss": 0.3451253128051758, + "step": 43300 + }, + { + "epoch": 91.17665615141956, + "grad_norm": 0.5724344849586487, + "learning_rate": 4.425420168067227e-06, + "loss": 0.3408164978027344, + "step": 43400 + }, + { + "epoch": 91.3869610935857, + "grad_norm": 0.6201240420341492, + "learning_rate": 4.320378151260504e-06, + "loss": 0.3420841979980469, + "step": 43500 + }, + { + "epoch": 91.59726603575184, + "grad_norm": 0.6098768711090088, + "learning_rate": 4.215336134453782e-06, + "loss": 0.3413374328613281, + "step": 43600 + }, + { + "epoch": 91.80757097791798, + "grad_norm": 0.6306800842285156, + "learning_rate": 4.110294117647059e-06, + "loss": 0.34394527435302735, + "step": 43700 + }, + { + "epoch": 92.01682439537329, + "grad_norm": 0.559008777141571, + "learning_rate": 4.005252100840336e-06, + "loss": 0.3423053741455078, + "step": 43800 + }, + { + "epoch": 92.22712933753944, + "grad_norm": 0.5939933657646179, + "learning_rate": 3.900210084033614e-06, + "loss": 0.33797637939453123, + "step": 43900 + }, + { + "epoch": 92.43743427970557, + "grad_norm": 0.6135221719741821, + "learning_rate": 3.795168067226891e-06, + "loss": 0.3408375930786133, + "step": 44000 + }, + { + "epoch": 92.64773922187172, + "grad_norm": 0.5870836973190308, + "learning_rate": 3.690126050420168e-06, + "loss": 0.34073463439941404, + "step": 44100 + }, + { + "epoch": 92.85804416403785, + "grad_norm": 0.5811474323272705, + "learning_rate": 3.5850840336134456e-06, + "loss": 0.34040855407714843, + "step": 44200 + }, + { + "epoch": 93.06729758149316, + "grad_norm": 0.5979830026626587, + "learning_rate": 3.4800420168067227e-06, + "loss": 0.3395253753662109, + "step": 44300 + }, + { + "epoch": 93.27760252365931, + "grad_norm": 0.5824161171913147, + "learning_rate": 3.3750000000000003e-06, + "loss": 0.3389311981201172, + "step": 44400 + }, + { + "epoch": 93.48790746582544, + "grad_norm": 0.5694940090179443, + "learning_rate": 3.2699579831932774e-06, + "loss": 0.337044792175293, + "step": 44500 + }, + { + "epoch": 93.69821240799159, + "grad_norm": 0.6112421154975891, + "learning_rate": 3.164915966386555e-06, + "loss": 0.33819969177246095, + "step": 44600 + }, + { + "epoch": 93.90851735015772, + "grad_norm": 0.610955536365509, + "learning_rate": 3.059873949579832e-06, + "loss": 0.33944580078125, + "step": 44700 + }, + { + "epoch": 94.11777076761304, + "grad_norm": 0.6398776769638062, + "learning_rate": 2.9548319327731093e-06, + "loss": 0.33618770599365233, + "step": 44800 + }, + { + "epoch": 94.32807570977918, + "grad_norm": 0.5934144854545593, + "learning_rate": 2.849789915966387e-06, + "loss": 0.3384376525878906, + "step": 44900 + }, + { + "epoch": 94.53838065194532, + "grad_norm": 0.6144473552703857, + "learning_rate": 2.744747899159664e-06, + "loss": 0.3383865737915039, + "step": 45000 + }, + { + "epoch": 94.74868559411146, + "grad_norm": 0.5490454435348511, + "learning_rate": 2.6397058823529415e-06, + "loss": 0.33671878814697265, + "step": 45100 + }, + { + "epoch": 94.9589905362776, + "grad_norm": 0.5695416331291199, + "learning_rate": 2.5346638655462187e-06, + "loss": 0.3379853820800781, + "step": 45200 + }, + { + "epoch": 95.16824395373291, + "grad_norm": 0.5724055767059326, + "learning_rate": 2.429621848739496e-06, + "loss": 0.3338408660888672, + "step": 45300 + }, + { + "epoch": 95.37854889589906, + "grad_norm": 0.594022810459137, + "learning_rate": 2.3245798319327734e-06, + "loss": 0.3349121475219727, + "step": 45400 + }, + { + "epoch": 95.58885383806519, + "grad_norm": 0.5594576597213745, + "learning_rate": 2.2205882352941175e-06, + "loss": 0.33595680236816405, + "step": 45500 + }, + { + "epoch": 95.79915878023134, + "grad_norm": 0.5346081852912903, + "learning_rate": 2.115546218487395e-06, + "loss": 0.33520328521728515, + "step": 45600 + }, + { + "epoch": 96.00841219768665, + "grad_norm": 0.5849393606185913, + "learning_rate": 2.0105042016806722e-06, + "loss": 0.3334170913696289, + "step": 45700 + }, + { + "epoch": 96.21871713985279, + "grad_norm": 0.5918118357658386, + "learning_rate": 1.9054621848739498e-06, + "loss": 0.3329995346069336, + "step": 45800 + }, + { + "epoch": 96.42902208201893, + "grad_norm": 0.6012352705001831, + "learning_rate": 1.800420168067227e-06, + "loss": 0.3329520416259766, + "step": 45900 + }, + { + "epoch": 96.63932702418506, + "grad_norm": 0.5281354784965515, + "learning_rate": 1.6953781512605043e-06, + "loss": 0.3343208694458008, + "step": 46000 + }, + { + "epoch": 96.84963196635121, + "grad_norm": 0.5566437244415283, + "learning_rate": 1.5903361344537816e-06, + "loss": 0.33319324493408203, + "step": 46100 + }, + { + "epoch": 97.05888538380653, + "grad_norm": 0.62099689245224, + "learning_rate": 1.486344537815126e-06, + "loss": 0.33431713104248045, + "step": 46200 + }, + { + "epoch": 97.26919032597266, + "grad_norm": 0.5787718892097473, + "learning_rate": 1.3813025210084034e-06, + "loss": 0.3314530944824219, + "step": 46300 + }, + { + "epoch": 97.4794952681388, + "grad_norm": 0.5509923100471497, + "learning_rate": 1.2762605042016807e-06, + "loss": 0.3316763305664063, + "step": 46400 + }, + { + "epoch": 97.68980021030494, + "grad_norm": 0.5569334030151367, + "learning_rate": 1.171218487394958e-06, + "loss": 0.3315643310546875, + "step": 46500 + }, + { + "epoch": 97.90010515247108, + "grad_norm": 0.5476507544517517, + "learning_rate": 1.0661764705882354e-06, + "loss": 0.33233203887939455, + "step": 46600 + }, + { + "epoch": 98.1093585699264, + "grad_norm": 0.5630120038986206, + "learning_rate": 9.611344537815128e-07, + "loss": 0.33105762481689455, + "step": 46700 + }, + { + "epoch": 98.31966351209253, + "grad_norm": 0.5520943999290466, + "learning_rate": 8.5609243697479e-07, + "loss": 0.3307930374145508, + "step": 46800 + }, + { + "epoch": 98.52996845425868, + "grad_norm": 0.5917891263961792, + "learning_rate": 7.510504201680673e-07, + "loss": 0.3318499755859375, + "step": 46900 + }, + { + "epoch": 98.74027339642481, + "grad_norm": 0.5395123362541199, + "learning_rate": 6.460084033613445e-07, + "loss": 0.330290412902832, + "step": 47000 + }, + { + "epoch": 98.95057833859096, + "grad_norm": 0.5702670216560364, + "learning_rate": 5.409663865546218e-07, + "loss": 0.33196086883544923, + "step": 47100 + } + ], + "logging_steps": 100, + "max_steps": 47600, + "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": 3.036465107546112e+16, + "train_batch_size": 8, + "trial_name": null, + "trial_params": null +} diff --git a/timecost/n11/realtabformer/rtf-n11-20260501_010320/rtf_checkpoints/checkpoint-47124/training_args.bin b/timecost/n11/realtabformer/rtf-n11-20260501_010320/rtf_checkpoints/checkpoint-47124/training_args.bin new file mode 100644 index 0000000000000000000000000000000000000000..34d68dc0e0fe1c1f12a2e581dd1b166aa7178a9e --- /dev/null +++ b/timecost/n11/realtabformer/rtf-n11-20260501_010320/rtf_checkpoints/checkpoint-47124/training_args.bin @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:9e2cd88337d1d846c6918d2b3b63fa3e5c93f12fefc082497590da854a564607 +size 5201 diff --git a/timecost/n11/realtabformer/rtf-n11-20260501_010320/rtf_checkpoints/checkpoint-47200/config.json b/timecost/n11/realtabformer/rtf-n11-20260501_010320/rtf_checkpoints/checkpoint-47200/config.json new file mode 100644 index 0000000000000000000000000000000000000000..605aa5aa48fc96b6c3133032a3e66cd18090e70a --- /dev/null +++ b/timecost/n11/realtabformer/rtf-n11-20260501_010320/rtf_checkpoints/checkpoint-47200/config.json @@ -0,0 +1,34 @@ +{ + "activation_function": "gelu_new", + "add_cross_attention": false, + "architectures": [ + "GPT2LMHeadModel" + ], + "attn_pdrop": 0.1, + "bos_token_id": 5, + "dtype": "float32", + "embd_pdrop": 0.1, + "eos_token_id": 6, + "initializer_range": 0.02, + "layer_norm_epsilon": 1e-05, + "model_type": "gpt2", + "n_embd": 768, + "n_head": 12, + "n_inner": null, + "n_layer": 6, + "n_positions": 1024, + "pad_token_id": null, + "reorder_and_upcast_attn": false, + "resid_pdrop": 0.1, + "scale_attn_by_inverse_layer_idx": false, + "scale_attn_weights": true, + "summary_activation": null, + "summary_first_dropout": 0.1, + "summary_proj_to_labels": true, + "summary_type": "cls_index", + "summary_use_proj": true, + "tie_word_embeddings": true, + "transformers_version": "5.5.3", + "use_cache": false, + "vocab_size": 597 +} diff --git a/timecost/n11/realtabformer/rtf-n11-20260501_010320/rtf_checkpoints/checkpoint-47200/generation_config.json b/timecost/n11/realtabformer/rtf-n11-20260501_010320/rtf_checkpoints/checkpoint-47200/generation_config.json new file mode 100644 index 0000000000000000000000000000000000000000..ffe89567780e75b5c22eade9be971483b9618f39 --- /dev/null +++ b/timecost/n11/realtabformer/rtf-n11-20260501_010320/rtf_checkpoints/checkpoint-47200/generation_config.json @@ -0,0 +1,9 @@ +{ + "_from_model_config": true, + "bos_token_id": 5, + "eos_token_id": 6, + "output_attentions": false, + "output_hidden_states": false, + "transformers_version": "5.5.3", + "use_cache": true +} diff --git a/timecost/n11/realtabformer/rtf-n11-20260501_010320/rtf_checkpoints/checkpoint-47200/model.safetensors b/timecost/n11/realtabformer/rtf-n11-20260501_010320/rtf_checkpoints/checkpoint-47200/model.safetensors new file mode 100644 index 0000000000000000000000000000000000000000..5c8908f682c4529346b6e22f6cface63fbcd6817 --- /dev/null +++ b/timecost/n11/realtabformer/rtf-n11-20260501_010320/rtf_checkpoints/checkpoint-47200/model.safetensors @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:d33e5c33a2e3a7d825245491b59b12b501a1733f7e9bfa9f8ca4ca4c0a311650 +size 175102408 diff --git a/timecost/n11/realtabformer/rtf-n11-20260501_010320/rtf_checkpoints/checkpoint-47200/optimizer.pt b/timecost/n11/realtabformer/rtf-n11-20260501_010320/rtf_checkpoints/checkpoint-47200/optimizer.pt new file mode 100644 index 0000000000000000000000000000000000000000..23a865cdd6ff5d12bc7e819657c06e10a19f851f --- /dev/null +++ b/timecost/n11/realtabformer/rtf-n11-20260501_010320/rtf_checkpoints/checkpoint-47200/optimizer.pt @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:dcb2f9b688bd04e53e9e89ab2bc2504951014488cffa66513fe8eb091476f736 +size 350253899 diff --git a/timecost/n11/realtabformer/rtf-n11-20260501_010320/rtf_checkpoints/checkpoint-47200/rng_state.pth b/timecost/n11/realtabformer/rtf-n11-20260501_010320/rtf_checkpoints/checkpoint-47200/rng_state.pth new file mode 100644 index 0000000000000000000000000000000000000000..735d090a2e5a76ac19217b614ba7d6ddcac44c6a --- /dev/null +++ b/timecost/n11/realtabformer/rtf-n11-20260501_010320/rtf_checkpoints/checkpoint-47200/rng_state.pth @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:c4b9ac243a8d6384437e12815fd076d93ea46fd92b21804b56eccf1512be75dc +size 14645 diff --git a/timecost/n11/realtabformer/rtf-n11-20260501_010320/rtf_checkpoints/checkpoint-47200/scaler.pt b/timecost/n11/realtabformer/rtf-n11-20260501_010320/rtf_checkpoints/checkpoint-47200/scaler.pt new file mode 100644 index 0000000000000000000000000000000000000000..f7a593871a22bb33e963c968355c277eb68c0b54 --- /dev/null +++ b/timecost/n11/realtabformer/rtf-n11-20260501_010320/rtf_checkpoints/checkpoint-47200/scaler.pt @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:cbaf9b79238b8d541bbe90ef5dcc2e5585c525b72f4fa1193260bd821d0f8644 +size 1383 diff --git a/timecost/n11/realtabformer/rtf-n11-20260501_010320/rtf_checkpoints/checkpoint-47200/scheduler.pt b/timecost/n11/realtabformer/rtf-n11-20260501_010320/rtf_checkpoints/checkpoint-47200/scheduler.pt new file mode 100644 index 0000000000000000000000000000000000000000..06b965a3a8746ec1a27f22172a651dbb848d3112 --- /dev/null +++ b/timecost/n11/realtabformer/rtf-n11-20260501_010320/rtf_checkpoints/checkpoint-47200/scheduler.pt @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:a93634e0bb1f7515dc579c64b790e321b453e37d021f581271c48b4e673b589a +size 1465 diff --git a/timecost/n11/realtabformer/rtf-n11-20260501_010320/rtf_checkpoints/checkpoint-47200/trainer_state.json b/timecost/n11/realtabformer/rtf-n11-20260501_010320/rtf_checkpoints/checkpoint-47200/trainer_state.json new file mode 100644 index 0000000000000000000000000000000000000000..5760c5e808328bc6d63d085c9a55ec9ef5b97d43 --- /dev/null +++ b/timecost/n11/realtabformer/rtf-n11-20260501_010320/rtf_checkpoints/checkpoint-47200/trainer_state.json @@ -0,0 +1,3338 @@ +{ + "best_global_step": null, + "best_metric": null, + "best_model_checkpoint": null, + "epoch": 99.15983175604627, + "eval_steps": 100, + "global_step": 47200, + "is_hyper_param_search": false, + "is_local_process_zero": true, + "is_world_process_zero": true, + "log_history": [ + { + "epoch": 0.2103049421661409, + "grad_norm": 0.22972723841667175, + "learning_rate": 4.989600840336135e-05, + "loss": 2.8563604736328125, + "step": 100 + }, + { + "epoch": 0.4206098843322818, + "grad_norm": 0.20056591928005219, + "learning_rate": 4.9790966386554624e-05, + "loss": 1.7068206787109375, + "step": 200 + }, + { + "epoch": 0.6309148264984227, + "grad_norm": 0.1861766129732132, + "learning_rate": 4.9685924369747897e-05, + "loss": 1.6134432983398437, + "step": 300 + }, + { + "epoch": 0.8412197686645636, + "grad_norm": 0.1723501980304718, + "learning_rate": 4.9580882352941176e-05, + "loss": 1.5735923767089843, + "step": 400 + }, + { + "epoch": 1.0504731861198737, + "grad_norm": 0.17238108813762665, + "learning_rate": 4.9475840336134455e-05, + "loss": 1.5529734802246093, + "step": 500 + }, + { + "epoch": 1.2607781282860147, + "grad_norm": 0.17322759330272675, + "learning_rate": 4.9370798319327734e-05, + "loss": 1.536485137939453, + "step": 600 + }, + { + "epoch": 1.4710830704521556, + "grad_norm": 0.1677761971950531, + "learning_rate": 4.926575630252101e-05, + "loss": 1.5277809143066405, + "step": 700 + }, + { + "epoch": 1.6813880126182965, + "grad_norm": 0.1636463701725006, + "learning_rate": 4.9160714285714286e-05, + "loss": 1.5190211486816407, + "step": 800 + }, + { + "epoch": 1.8916929547844374, + "grad_norm": 0.16561312973499298, + "learning_rate": 4.9055672268907565e-05, + "loss": 1.51519287109375, + "step": 900 + }, + { + "epoch": 2.1009463722397475, + "grad_norm": 0.15477420389652252, + "learning_rate": 4.8950630252100845e-05, + "loss": 1.5094300842285155, + "step": 1000 + }, + { + "epoch": 2.3112513144058884, + "grad_norm": 0.16169467568397522, + "learning_rate": 4.8845588235294124e-05, + "loss": 1.503891143798828, + "step": 1100 + }, + { + "epoch": 2.5215562565720293, + "grad_norm": 0.1625037044286728, + "learning_rate": 4.8740546218487396e-05, + "loss": 1.5003668212890624, + "step": 1200 + }, + { + "epoch": 2.7318611987381702, + "grad_norm": 0.15850616991519928, + "learning_rate": 4.8635504201680676e-05, + "loss": 1.5004425048828125, + "step": 1300 + }, + { + "epoch": 2.942166140904311, + "grad_norm": 0.15703575313091278, + "learning_rate": 4.8530462184873955e-05, + "loss": 1.4983340454101564, + "step": 1400 + }, + { + "epoch": 3.1514195583596214, + "grad_norm": 0.16104279458522797, + "learning_rate": 4.8425420168067234e-05, + "loss": 1.4921080017089843, + "step": 1500 + }, + { + "epoch": 3.3617245005257623, + "grad_norm": 0.15719465911388397, + "learning_rate": 4.8320378151260507e-05, + "loss": 1.4903582763671874, + "step": 1600 + }, + { + "epoch": 3.5720294426919033, + "grad_norm": 0.15651755034923553, + "learning_rate": 4.821533613445378e-05, + "loss": 1.4904457092285157, + "step": 1700 + }, + { + "epoch": 3.782334384858044, + "grad_norm": 0.14600972831249237, + "learning_rate": 4.811029411764706e-05, + "loss": 1.4897219848632812, + "step": 1800 + }, + { + "epoch": 3.992639327024185, + "grad_norm": 0.15000982582569122, + "learning_rate": 4.800525210084034e-05, + "loss": 1.4866799926757812, + "step": 1900 + }, + { + "epoch": 4.201892744479495, + "grad_norm": 0.1467936933040619, + "learning_rate": 4.790021008403362e-05, + "loss": 1.48007080078125, + "step": 2000 + }, + { + "epoch": 4.412197686645636, + "grad_norm": 0.1541317105293274, + "learning_rate": 4.779516806722689e-05, + "loss": 1.48170166015625, + "step": 2100 + }, + { + "epoch": 4.622502628811777, + "grad_norm": 0.15136213600635529, + "learning_rate": 4.769012605042017e-05, + "loss": 1.4820193481445312, + "step": 2200 + }, + { + "epoch": 4.832807570977918, + "grad_norm": 0.15268521010875702, + "learning_rate": 4.758508403361345e-05, + "loss": 1.4826155090332032, + "step": 2300 + }, + { + "epoch": 5.042060988433228, + "grad_norm": 0.1507953554391861, + "learning_rate": 4.748004201680673e-05, + "loss": 1.4825518798828126, + "step": 2400 + }, + { + "epoch": 5.252365930599369, + "grad_norm": 0.15759222209453583, + "learning_rate": 4.7375e-05, + "loss": 1.4742916870117186, + "step": 2500 + }, + { + "epoch": 5.46267087276551, + "grad_norm": 0.1464644968509674, + "learning_rate": 4.726995798319328e-05, + "loss": 1.47645751953125, + "step": 2600 + }, + { + "epoch": 5.672975814931651, + "grad_norm": 0.1496453732252121, + "learning_rate": 4.716491596638656e-05, + "loss": 1.4782669067382812, + "step": 2700 + }, + { + "epoch": 5.883280757097792, + "grad_norm": 0.15732301771640778, + "learning_rate": 4.705987394957984e-05, + "loss": 1.474007110595703, + "step": 2800 + }, + { + "epoch": 6.092534174553102, + "grad_norm": 0.1535627543926239, + "learning_rate": 4.6954831932773117e-05, + "loss": 1.4723405456542968, + "step": 2900 + }, + { + "epoch": 6.302839116719243, + "grad_norm": 0.15365540981292725, + "learning_rate": 4.684978991596639e-05, + "loss": 1.470570068359375, + "step": 3000 + }, + { + "epoch": 6.513144058885384, + "grad_norm": 0.15696321427822113, + "learning_rate": 4.674474789915967e-05, + "loss": 1.4713912963867188, + "step": 3100 + }, + { + "epoch": 6.723449001051525, + "grad_norm": 0.1542283147573471, + "learning_rate": 4.663970588235294e-05, + "loss": 1.4717630004882813, + "step": 3200 + }, + { + "epoch": 6.933753943217665, + "grad_norm": 0.14150017499923706, + "learning_rate": 4.653466386554622e-05, + "loss": 1.4702410888671875, + "step": 3300 + }, + { + "epoch": 7.143007360672976, + "grad_norm": 0.1593707650899887, + "learning_rate": 4.64296218487395e-05, + "loss": 1.4674795532226563, + "step": 3400 + }, + { + "epoch": 7.353312302839116, + "grad_norm": 0.14085018634796143, + "learning_rate": 4.632457983193277e-05, + "loss": 1.4630509948730468, + "step": 3500 + }, + { + "epoch": 7.563617245005258, + "grad_norm": 0.15045367181301117, + "learning_rate": 4.621953781512605e-05, + "loss": 1.464947509765625, + "step": 3600 + }, + { + "epoch": 7.773922187171398, + "grad_norm": 0.1627761274576187, + "learning_rate": 4.611449579831933e-05, + "loss": 1.4676199340820313, + "step": 3700 + }, + { + "epoch": 7.9842271293375395, + "grad_norm": 0.15296733379364014, + "learning_rate": 4.600945378151261e-05, + "loss": 1.464564208984375, + "step": 3800 + }, + { + "epoch": 8.19348054679285, + "grad_norm": 0.15292306244373322, + "learning_rate": 4.590441176470588e-05, + "loss": 1.460281982421875, + "step": 3900 + }, + { + "epoch": 8.40378548895899, + "grad_norm": 0.14858974516391754, + "learning_rate": 4.579936974789916e-05, + "loss": 1.4601573181152343, + "step": 4000 + }, + { + "epoch": 8.614090431125131, + "grad_norm": 0.1559685617685318, + "learning_rate": 4.569432773109244e-05, + "loss": 1.459988555908203, + "step": 4100 + }, + { + "epoch": 8.824395373291273, + "grad_norm": 0.16048291325569153, + "learning_rate": 4.558928571428572e-05, + "loss": 1.4614971923828124, + "step": 4200 + }, + { + "epoch": 9.033648790746582, + "grad_norm": 0.15471497178077698, + "learning_rate": 4.548424369747899e-05, + "loss": 1.4605735778808593, + "step": 4300 + }, + { + "epoch": 9.243953732912724, + "grad_norm": 0.14675338566303253, + "learning_rate": 4.537920168067227e-05, + "loss": 1.4529206848144531, + "step": 4400 + }, + { + "epoch": 9.454258675078865, + "grad_norm": 0.15218420326709747, + "learning_rate": 4.527415966386555e-05, + "loss": 1.4555152893066405, + "step": 4500 + }, + { + "epoch": 9.664563617245005, + "grad_norm": 0.15305759012699127, + "learning_rate": 4.516911764705883e-05, + "loss": 1.4550628662109375, + "step": 4600 + }, + { + "epoch": 9.874868559411146, + "grad_norm": 0.14932408928871155, + "learning_rate": 4.50640756302521e-05, + "loss": 1.4576924133300782, + "step": 4700 + }, + { + "epoch": 10.084121976866456, + "grad_norm": 0.15317517518997192, + "learning_rate": 4.4959033613445375e-05, + "loss": 1.45219482421875, + "step": 4800 + }, + { + "epoch": 10.294426919032597, + "grad_norm": 0.14954303205013275, + "learning_rate": 4.4853991596638654e-05, + "loss": 1.4481625366210937, + "step": 4900 + }, + { + "epoch": 10.504731861198739, + "grad_norm": 0.1534873992204666, + "learning_rate": 4.4748949579831934e-05, + "loss": 1.4501405334472657, + "step": 5000 + }, + { + "epoch": 10.715036803364878, + "grad_norm": 0.1542547196149826, + "learning_rate": 4.464390756302521e-05, + "loss": 1.452711181640625, + "step": 5100 + }, + { + "epoch": 10.92534174553102, + "grad_norm": 0.15033429861068726, + "learning_rate": 4.453886554621849e-05, + "loss": 1.4518144226074219, + "step": 5200 + }, + { + "epoch": 11.13459516298633, + "grad_norm": 0.16419348120689392, + "learning_rate": 4.4433823529411765e-05, + "loss": 1.4447087097167968, + "step": 5300 + }, + { + "epoch": 11.34490010515247, + "grad_norm": 0.15558737516403198, + "learning_rate": 4.4328781512605044e-05, + "loss": 1.4432438659667968, + "step": 5400 + }, + { + "epoch": 11.555205047318612, + "grad_norm": 0.16111871600151062, + "learning_rate": 4.422373949579832e-05, + "loss": 1.44447509765625, + "step": 5500 + }, + { + "epoch": 11.765509989484753, + "grad_norm": 0.15655963122844696, + "learning_rate": 4.41186974789916e-05, + "loss": 1.446072998046875, + "step": 5600 + }, + { + "epoch": 11.975814931650893, + "grad_norm": 0.1640811264514923, + "learning_rate": 4.4013655462184875e-05, + "loss": 1.4470193481445313, + "step": 5700 + }, + { + "epoch": 12.185068349106205, + "grad_norm": 0.16302675008773804, + "learning_rate": 4.3908613445378154e-05, + "loss": 1.4352632141113282, + "step": 5800 + }, + { + "epoch": 12.395373291272344, + "grad_norm": 0.16527259349822998, + "learning_rate": 4.380357142857143e-05, + "loss": 1.4378224182128907, + "step": 5900 + }, + { + "epoch": 12.605678233438486, + "grad_norm": 0.15840137004852295, + "learning_rate": 4.369852941176471e-05, + "loss": 1.438340301513672, + "step": 6000 + }, + { + "epoch": 12.815983175604627, + "grad_norm": 0.16105377674102783, + "learning_rate": 4.3593487394957985e-05, + "loss": 1.4395623779296876, + "step": 6100 + }, + { + "epoch": 13.025236593059937, + "grad_norm": 0.1645898073911667, + "learning_rate": 4.348844537815126e-05, + "loss": 1.4419912719726562, + "step": 6200 + }, + { + "epoch": 13.235541535226078, + "grad_norm": 0.16387709975242615, + "learning_rate": 4.338340336134454e-05, + "loss": 1.4292103576660156, + "step": 6300 + }, + { + "epoch": 13.44584647739222, + "grad_norm": 0.16231203079223633, + "learning_rate": 4.3278361344537816e-05, + "loss": 1.4302072143554687, + "step": 6400 + }, + { + "epoch": 13.656151419558359, + "grad_norm": 0.17272767424583435, + "learning_rate": 4.3173319327731095e-05, + "loss": 1.4360617065429688, + "step": 6500 + }, + { + "epoch": 13.8664563617245, + "grad_norm": 0.16650696098804474, + "learning_rate": 4.306827731092437e-05, + "loss": 1.43187744140625, + "step": 6600 + }, + { + "epoch": 14.07570977917981, + "grad_norm": 0.17131085693836212, + "learning_rate": 4.296323529411765e-05, + "loss": 1.428362579345703, + "step": 6700 + }, + { + "epoch": 14.286014721345952, + "grad_norm": 0.1767681986093521, + "learning_rate": 4.2858193277310926e-05, + "loss": 1.4247616577148436, + "step": 6800 + }, + { + "epoch": 14.496319663512093, + "grad_norm": 0.17670001089572906, + "learning_rate": 4.2753151260504206e-05, + "loss": 1.4254454040527345, + "step": 6900 + }, + { + "epoch": 14.706624605678233, + "grad_norm": 0.1740790754556656, + "learning_rate": 4.2648109243697485e-05, + "loss": 1.4258729553222655, + "step": 7000 + }, + { + "epoch": 14.916929547844374, + "grad_norm": 0.1759176403284073, + "learning_rate": 4.254306722689076e-05, + "loss": 1.429442138671875, + "step": 7100 + }, + { + "epoch": 15.126182965299684, + "grad_norm": 0.17811505496501923, + "learning_rate": 4.2438025210084037e-05, + "loss": 1.4193470764160157, + "step": 7200 + }, + { + "epoch": 15.336487907465825, + "grad_norm": 0.1877354234457016, + "learning_rate": 4.2332983193277316e-05, + "loss": 1.4145277404785157, + "step": 7300 + }, + { + "epoch": 15.546792849631967, + "grad_norm": 0.18199266493320465, + "learning_rate": 4.2227941176470595e-05, + "loss": 1.4196495056152343, + "step": 7400 + }, + { + "epoch": 15.757097791798108, + "grad_norm": 0.18197669088840485, + "learning_rate": 4.212289915966387e-05, + "loss": 1.418301544189453, + "step": 7500 + }, + { + "epoch": 15.967402733964247, + "grad_norm": 0.1789412796497345, + "learning_rate": 4.201785714285714e-05, + "loss": 1.4207553100585937, + "step": 7600 + }, + { + "epoch": 16.176656151419557, + "grad_norm": 0.19073587656021118, + "learning_rate": 4.191281512605042e-05, + "loss": 1.405756072998047, + "step": 7700 + }, + { + "epoch": 16.3869610935857, + "grad_norm": 0.20197375118732452, + "learning_rate": 4.18077731092437e-05, + "loss": 1.4052299499511718, + "step": 7800 + }, + { + "epoch": 16.59726603575184, + "grad_norm": 0.19041137397289276, + "learning_rate": 4.170273109243698e-05, + "loss": 1.4102354431152344, + "step": 7900 + }, + { + "epoch": 16.80757097791798, + "grad_norm": 0.18918046355247498, + "learning_rate": 4.159768907563025e-05, + "loss": 1.4105937194824218, + "step": 8000 + }, + { + "epoch": 17.01682439537329, + "grad_norm": 0.20001663267612457, + "learning_rate": 4.149264705882353e-05, + "loss": 1.4125469970703124, + "step": 8100 + }, + { + "epoch": 17.22712933753943, + "grad_norm": 0.20373570919036865, + "learning_rate": 4.138760504201681e-05, + "loss": 1.3912005615234375, + "step": 8200 + }, + { + "epoch": 17.437434279705574, + "grad_norm": 0.21228203177452087, + "learning_rate": 4.128256302521009e-05, + "loss": 1.400099334716797, + "step": 8300 + }, + { + "epoch": 17.647739221871714, + "grad_norm": 0.19748076796531677, + "learning_rate": 4.117752100840336e-05, + "loss": 1.3983584594726564, + "step": 8400 + }, + { + "epoch": 17.858044164037857, + "grad_norm": 0.19849108159542084, + "learning_rate": 4.107247899159664e-05, + "loss": 1.4034251403808593, + "step": 8500 + }, + { + "epoch": 18.067297581493165, + "grad_norm": 0.20575450360774994, + "learning_rate": 4.096743697478992e-05, + "loss": 1.3967425537109375, + "step": 8600 + }, + { + "epoch": 18.277602523659304, + "grad_norm": 0.21221311390399933, + "learning_rate": 4.08623949579832e-05, + "loss": 1.3828977966308593, + "step": 8700 + }, + { + "epoch": 18.487907465825447, + "grad_norm": 0.21134966611862183, + "learning_rate": 4.075735294117648e-05, + "loss": 1.3854733276367188, + "step": 8800 + }, + { + "epoch": 18.698212407991587, + "grad_norm": 0.22016377747058868, + "learning_rate": 4.065231092436975e-05, + "loss": 1.3901968383789063, + "step": 8900 + }, + { + "epoch": 18.90851735015773, + "grad_norm": 0.21417804062366486, + "learning_rate": 4.054726890756303e-05, + "loss": 1.393634033203125, + "step": 9000 + }, + { + "epoch": 19.117770767613038, + "grad_norm": 0.22256560623645782, + "learning_rate": 4.04422268907563e-05, + "loss": 1.3783042907714844, + "step": 9100 + }, + { + "epoch": 19.32807570977918, + "grad_norm": 0.22738981246948242, + "learning_rate": 4.033718487394958e-05, + "loss": 1.370293426513672, + "step": 9200 + }, + { + "epoch": 19.53838065194532, + "grad_norm": 0.22241266071796417, + "learning_rate": 4.023214285714286e-05, + "loss": 1.3737275695800781, + "step": 9300 + }, + { + "epoch": 19.74868559411146, + "grad_norm": 0.23391330242156982, + "learning_rate": 4.012710084033613e-05, + "loss": 1.377355194091797, + "step": 9400 + }, + { + "epoch": 19.958990536277604, + "grad_norm": 0.22519543766975403, + "learning_rate": 4.002205882352941e-05, + "loss": 1.3812960815429687, + "step": 9500 + }, + { + "epoch": 20.16824395373291, + "grad_norm": 0.24074196815490723, + "learning_rate": 3.991701680672269e-05, + "loss": 1.3570118713378907, + "step": 9600 + }, + { + "epoch": 20.378548895899055, + "grad_norm": 0.24606694281101227, + "learning_rate": 3.981197478991597e-05, + "loss": 1.3554267883300781, + "step": 9700 + }, + { + "epoch": 20.588853838065194, + "grad_norm": 0.23913830518722534, + "learning_rate": 3.970693277310924e-05, + "loss": 1.3621504211425781, + "step": 9800 + }, + { + "epoch": 20.799158780231334, + "grad_norm": 0.2383037805557251, + "learning_rate": 3.960189075630252e-05, + "loss": 1.3660731506347656, + "step": 9900 + }, + { + "epoch": 21.008412197686646, + "grad_norm": 0.241073340177536, + "learning_rate": 3.94968487394958e-05, + "loss": 1.3653842163085939, + "step": 10000 + }, + { + "epoch": 21.218717139852785, + "grad_norm": 0.25740981101989746, + "learning_rate": 3.939180672268908e-05, + "loss": 1.3331489562988281, + "step": 10100 + }, + { + "epoch": 21.42902208201893, + "grad_norm": 0.25830078125, + "learning_rate": 3.928676470588235e-05, + "loss": 1.3397677612304688, + "step": 10200 + }, + { + "epoch": 21.639327024185068, + "grad_norm": 0.26326829195022583, + "learning_rate": 3.918172268907563e-05, + "loss": 1.3485836791992187, + "step": 10300 + }, + { + "epoch": 21.84963196635121, + "grad_norm": 0.26259171962738037, + "learning_rate": 3.907668067226891e-05, + "loss": 1.3472573852539063, + "step": 10400 + }, + { + "epoch": 22.05888538380652, + "grad_norm": 0.27395525574684143, + "learning_rate": 3.897163865546219e-05, + "loss": 1.3426994323730468, + "step": 10500 + }, + { + "epoch": 22.26919032597266, + "grad_norm": 0.2820175290107727, + "learning_rate": 3.8866596638655463e-05, + "loss": 1.3179571533203125, + "step": 10600 + }, + { + "epoch": 22.479495268138802, + "grad_norm": 0.2815999984741211, + "learning_rate": 3.8761554621848736e-05, + "loss": 1.3242898559570313, + "step": 10700 + }, + { + "epoch": 22.68980021030494, + "grad_norm": 0.2788920998573303, + "learning_rate": 3.8656512605042015e-05, + "loss": 1.328133087158203, + "step": 10800 + }, + { + "epoch": 22.900105152471085, + "grad_norm": 0.2880179286003113, + "learning_rate": 3.8551470588235294e-05, + "loss": 1.3323233032226562, + "step": 10900 + }, + { + "epoch": 23.109358569926393, + "grad_norm": 0.29323825240135193, + "learning_rate": 3.8446428571428574e-05, + "loss": 1.3124215698242188, + "step": 11000 + }, + { + "epoch": 23.319663512092536, + "grad_norm": 0.3037724196910858, + "learning_rate": 3.834138655462185e-05, + "loss": 1.300673370361328, + "step": 11100 + }, + { + "epoch": 23.529968454258675, + "grad_norm": 0.3019108772277832, + "learning_rate": 3.8236344537815125e-05, + "loss": 1.3033621215820312, + "step": 11200 + }, + { + "epoch": 23.740273396424815, + "grad_norm": 0.3141040503978729, + "learning_rate": 3.8131302521008405e-05, + "loss": 1.3118415832519532, + "step": 11300 + }, + { + "epoch": 23.950578338590958, + "grad_norm": 0.305362731218338, + "learning_rate": 3.8026260504201684e-05, + "loss": 1.3120425415039063, + "step": 11400 + }, + { + "epoch": 24.159831756046266, + "grad_norm": 0.3149303197860718, + "learning_rate": 3.792121848739496e-05, + "loss": 1.281750946044922, + "step": 11500 + }, + { + "epoch": 24.37013669821241, + "grad_norm": 0.31983524560928345, + "learning_rate": 3.7816176470588236e-05, + "loss": 1.2786111450195312, + "step": 11600 + }, + { + "epoch": 24.58044164037855, + "grad_norm": 0.32351240515708923, + "learning_rate": 3.7711134453781515e-05, + "loss": 1.284888916015625, + "step": 11700 + }, + { + "epoch": 24.79074658254469, + "grad_norm": 0.3239966034889221, + "learning_rate": 3.7606092436974794e-05, + "loss": 1.2899176025390624, + "step": 11800 + }, + { + "epoch": 25.0, + "grad_norm": 0.49487531185150146, + "learning_rate": 3.7501050420168073e-05, + "loss": 1.2903105163574218, + "step": 11900 + }, + { + "epoch": 25.21030494216614, + "grad_norm": 0.343091756105423, + "learning_rate": 3.7396008403361346e-05, + "loss": 1.24728271484375, + "step": 12000 + }, + { + "epoch": 25.420609884332283, + "grad_norm": 0.3502146899700165, + "learning_rate": 3.729096638655462e-05, + "loss": 1.2573788452148438, + "step": 12100 + }, + { + "epoch": 25.630914826498422, + "grad_norm": 0.34780803322792053, + "learning_rate": 3.71859243697479e-05, + "loss": 1.259660186767578, + "step": 12200 + }, + { + "epoch": 25.841219768664562, + "grad_norm": 0.3617474436759949, + "learning_rate": 3.708088235294118e-05, + "loss": 1.267321548461914, + "step": 12300 + }, + { + "epoch": 26.050473186119874, + "grad_norm": 0.36151477694511414, + "learning_rate": 3.6975840336134456e-05, + "loss": 1.2569818878173828, + "step": 12400 + }, + { + "epoch": 26.260778128286013, + "grad_norm": 0.3706369400024414, + "learning_rate": 3.687079831932773e-05, + "loss": 1.2217762756347657, + "step": 12500 + }, + { + "epoch": 26.471083070452156, + "grad_norm": 0.36876797676086426, + "learning_rate": 3.676575630252101e-05, + "loss": 1.2311412048339845, + "step": 12600 + }, + { + "epoch": 26.681388012618296, + "grad_norm": 0.37329521775245667, + "learning_rate": 3.666071428571429e-05, + "loss": 1.23805908203125, + "step": 12700 + }, + { + "epoch": 26.89169295478444, + "grad_norm": 0.3803170919418335, + "learning_rate": 3.6555672268907566e-05, + "loss": 1.2423350524902343, + "step": 12800 + }, + { + "epoch": 27.100946372239747, + "grad_norm": 0.3833712637424469, + "learning_rate": 3.6450630252100846e-05, + "loss": 1.222099609375, + "step": 12900 + }, + { + "epoch": 27.31125131440589, + "grad_norm": 0.3987831771373749, + "learning_rate": 3.634558823529412e-05, + "loss": 1.1973797607421874, + "step": 13000 + }, + { + "epoch": 27.52155625657203, + "grad_norm": 0.39121338725090027, + "learning_rate": 3.62405462184874e-05, + "loss": 1.206004409790039, + "step": 13100 + }, + { + "epoch": 27.73186119873817, + "grad_norm": 0.4020472764968872, + "learning_rate": 3.613550420168068e-05, + "loss": 1.2129373168945312, + "step": 13200 + }, + { + "epoch": 27.942166140904312, + "grad_norm": 0.4015159606933594, + "learning_rate": 3.6030462184873956e-05, + "loss": 1.2179686737060547, + "step": 13300 + }, + { + "epoch": 28.15141955835962, + "grad_norm": 0.3998790681362152, + "learning_rate": 3.592542016806723e-05, + "loss": 1.1833483123779296, + "step": 13400 + }, + { + "epoch": 28.361724500525764, + "grad_norm": 0.4190026819705963, + "learning_rate": 3.582037815126051e-05, + "loss": 1.1737586975097656, + "step": 13500 + }, + { + "epoch": 28.572029442691903, + "grad_norm": 0.4131736159324646, + "learning_rate": 3.571533613445378e-05, + "loss": 1.1806912231445312, + "step": 13600 + }, + { + "epoch": 28.782334384858043, + "grad_norm": 0.4250866174697876, + "learning_rate": 3.561029411764706e-05, + "loss": 1.1913446044921876, + "step": 13700 + }, + { + "epoch": 28.992639327024186, + "grad_norm": 0.4264129400253296, + "learning_rate": 3.550525210084034e-05, + "loss": 1.1878318786621094, + "step": 13800 + }, + { + "epoch": 29.201892744479494, + "grad_norm": 0.43633338809013367, + "learning_rate": 3.540021008403361e-05, + "loss": 1.1386358642578125, + "step": 13900 + }, + { + "epoch": 29.412197686645637, + "grad_norm": 0.4486881494522095, + "learning_rate": 3.529516806722689e-05, + "loss": 1.1477174377441406, + "step": 14000 + }, + { + "epoch": 29.622502628811777, + "grad_norm": 0.4420314133167267, + "learning_rate": 3.519012605042017e-05, + "loss": 1.1530896759033202, + "step": 14100 + }, + { + "epoch": 29.832807570977916, + "grad_norm": 0.4598003327846527, + "learning_rate": 3.508508403361345e-05, + "loss": 1.16252197265625, + "step": 14200 + }, + { + "epoch": 30.042060988433228, + "grad_norm": 0.44520533084869385, + "learning_rate": 3.498004201680672e-05, + "loss": 1.1551103973388672, + "step": 14300 + }, + { + "epoch": 30.252365930599368, + "grad_norm": 0.45871588587760925, + "learning_rate": 3.4875e-05, + "loss": 1.107753448486328, + "step": 14400 + }, + { + "epoch": 30.46267087276551, + "grad_norm": 0.46063199639320374, + "learning_rate": 3.476995798319328e-05, + "loss": 1.1182296752929688, + "step": 14500 + }, + { + "epoch": 30.67297581493165, + "grad_norm": 0.4760204553604126, + "learning_rate": 3.466491596638656e-05, + "loss": 1.129236373901367, + "step": 14600 + }, + { + "epoch": 30.883280757097793, + "grad_norm": 0.47249314188957214, + "learning_rate": 3.455987394957984e-05, + "loss": 1.1352229309082031, + "step": 14700 + }, + { + "epoch": 31.0925341745531, + "grad_norm": 0.4624006450176239, + "learning_rate": 3.445483193277311e-05, + "loss": 1.1082867431640624, + "step": 14800 + }, + { + "epoch": 31.302839116719245, + "grad_norm": 0.4787958264350891, + "learning_rate": 3.434978991596639e-05, + "loss": 1.0818411254882812, + "step": 14900 + }, + { + "epoch": 31.513144058885384, + "grad_norm": 0.4875246286392212, + "learning_rate": 3.424474789915967e-05, + "loss": 1.092553939819336, + "step": 15000 + }, + { + "epoch": 31.723449001051524, + "grad_norm": 0.48742467164993286, + "learning_rate": 3.413970588235294e-05, + "loss": 1.1002989959716798, + "step": 15100 + }, + { + "epoch": 31.933753943217667, + "grad_norm": 0.5014126896858215, + "learning_rate": 3.403466386554622e-05, + "loss": 1.1067331695556641, + "step": 15200 + }, + { + "epoch": 32.143007360672975, + "grad_norm": 0.48793110251426697, + "learning_rate": 3.3929621848739494e-05, + "loss": 1.0649752807617188, + "step": 15300 + }, + { + "epoch": 32.353312302839115, + "grad_norm": 0.5064884424209595, + "learning_rate": 3.382457983193277e-05, + "loss": 1.0489683532714844, + "step": 15400 + }, + { + "epoch": 32.56361724500526, + "grad_norm": 0.5118729472160339, + "learning_rate": 3.371953781512605e-05, + "loss": 1.0648185729980468, + "step": 15500 + }, + { + "epoch": 32.7739221871714, + "grad_norm": 0.5236688852310181, + "learning_rate": 3.361449579831933e-05, + "loss": 1.0743647766113282, + "step": 15600 + }, + { + "epoch": 32.98422712933754, + "grad_norm": 0.5397860407829285, + "learning_rate": 3.3509453781512604e-05, + "loss": 1.080048828125, + "step": 15700 + }, + { + "epoch": 33.19348054679285, + "grad_norm": 0.5270755290985107, + "learning_rate": 3.340441176470588e-05, + "loss": 1.0228548431396485, + "step": 15800 + }, + { + "epoch": 33.40378548895899, + "grad_norm": 0.5429406762123108, + "learning_rate": 3.329936974789916e-05, + "loss": 1.028949966430664, + "step": 15900 + }, + { + "epoch": 33.614090431125135, + "grad_norm": 0.5323997735977173, + "learning_rate": 3.319432773109244e-05, + "loss": 1.037523956298828, + "step": 16000 + }, + { + "epoch": 33.824395373291274, + "grad_norm": 0.5385149717330933, + "learning_rate": 3.3090336134453784e-05, + "loss": 1.0431160736083984, + "step": 16100 + }, + { + "epoch": 34.03364879074658, + "grad_norm": 0.5089665651321411, + "learning_rate": 3.2986344537815127e-05, + "loss": 1.0349723815917968, + "step": 16200 + }, + { + "epoch": 34.24395373291272, + "grad_norm": 0.5455434918403625, + "learning_rate": 3.2881302521008406e-05, + "loss": 0.988803482055664, + "step": 16300 + }, + { + "epoch": 34.45425867507886, + "grad_norm": 0.5569856762886047, + "learning_rate": 3.2776260504201685e-05, + "loss": 1.0031266021728515, + "step": 16400 + }, + { + "epoch": 34.66456361724501, + "grad_norm": 0.5644022226333618, + "learning_rate": 3.2671218487394964e-05, + "loss": 1.0083402252197267, + "step": 16500 + }, + { + "epoch": 34.87486855941115, + "grad_norm": 0.5685406923294067, + "learning_rate": 3.256617647058824e-05, + "loss": 1.0177439117431641, + "step": 16600 + }, + { + "epoch": 35.084121976866456, + "grad_norm": 0.543632447719574, + "learning_rate": 3.2461134453781516e-05, + "loss": 0.9930455780029297, + "step": 16700 + }, + { + "epoch": 35.294426919032595, + "grad_norm": 0.5612316727638245, + "learning_rate": 3.2356092436974795e-05, + "loss": 0.9650897216796875, + "step": 16800 + }, + { + "epoch": 35.504731861198735, + "grad_norm": 0.5759446024894714, + "learning_rate": 3.225105042016807e-05, + "loss": 0.973653564453125, + "step": 16900 + }, + { + "epoch": 35.71503680336488, + "grad_norm": 0.574255645275116, + "learning_rate": 3.214600840336135e-05, + "loss": 0.981424560546875, + "step": 17000 + }, + { + "epoch": 35.92534174553102, + "grad_norm": 0.5851606726646423, + "learning_rate": 3.204096638655462e-05, + "loss": 0.991123046875, + "step": 17100 + }, + { + "epoch": 36.13459516298633, + "grad_norm": 0.5589666366577148, + "learning_rate": 3.19359243697479e-05, + "loss": 0.9481909942626953, + "step": 17200 + }, + { + "epoch": 36.34490010515247, + "grad_norm": 0.5968824625015259, + "learning_rate": 3.183088235294118e-05, + "loss": 0.9365898895263672, + "step": 17300 + }, + { + "epoch": 36.55520504731861, + "grad_norm": 0.5998508930206299, + "learning_rate": 3.172584033613446e-05, + "loss": 0.9492893218994141, + "step": 17400 + }, + { + "epoch": 36.765509989484755, + "grad_norm": 0.6060558557510376, + "learning_rate": 3.162079831932773e-05, + "loss": 0.9547823333740234, + "step": 17500 + }, + { + "epoch": 36.975814931650895, + "grad_norm": 0.589341402053833, + "learning_rate": 3.151575630252101e-05, + "loss": 0.9626276397705078, + "step": 17600 + }, + { + "epoch": 37.1850683491062, + "grad_norm": 0.5891321897506714, + "learning_rate": 3.141071428571429e-05, + "loss": 0.9065424346923828, + "step": 17700 + }, + { + "epoch": 37.39537329127234, + "grad_norm": 0.5880729556083679, + "learning_rate": 3.130567226890757e-05, + "loss": 0.9107749938964844, + "step": 17800 + }, + { + "epoch": 37.60567823343849, + "grad_norm": 0.6077774167060852, + "learning_rate": 3.120063025210084e-05, + "loss": 0.9193459320068359, + "step": 17900 + }, + { + "epoch": 37.81598317560463, + "grad_norm": 0.6189863681793213, + "learning_rate": 3.109558823529412e-05, + "loss": 0.9286084747314454, + "step": 18000 + }, + { + "epoch": 38.02523659305994, + "grad_norm": 0.5724475383758545, + "learning_rate": 3.09905462184874e-05, + "loss": 0.9282203674316406, + "step": 18100 + }, + { + "epoch": 38.235541535226076, + "grad_norm": 0.5952550768852234, + "learning_rate": 3.088550420168068e-05, + "loss": 0.8734053039550781, + "step": 18200 + }, + { + "epoch": 38.445846477392216, + "grad_norm": 0.5967536568641663, + "learning_rate": 3.078046218487395e-05, + "loss": 0.886033935546875, + "step": 18300 + }, + { + "epoch": 38.65615141955836, + "grad_norm": 0.6298649311065674, + "learning_rate": 3.067542016806722e-05, + "loss": 0.8977913665771484, + "step": 18400 + }, + { + "epoch": 38.8664563617245, + "grad_norm": 0.6457948684692383, + "learning_rate": 3.05703781512605e-05, + "loss": 0.9048082733154297, + "step": 18500 + }, + { + "epoch": 39.07570977917981, + "grad_norm": 0.6172012090682983, + "learning_rate": 3.046533613445378e-05, + "loss": 0.8857656860351563, + "step": 18600 + }, + { + "epoch": 39.28601472134595, + "grad_norm": 0.5979504585266113, + "learning_rate": 3.036029411764706e-05, + "loss": 0.8502845001220704, + "step": 18700 + }, + { + "epoch": 39.49631966351209, + "grad_norm": 0.6284430623054504, + "learning_rate": 3.0255252100840336e-05, + "loss": 0.8602873229980469, + "step": 18800 + }, + { + "epoch": 39.706624605678236, + "grad_norm": 0.6330845355987549, + "learning_rate": 3.0150210084033616e-05, + "loss": 0.8690576934814453, + "step": 18900 + }, + { + "epoch": 39.916929547844376, + "grad_norm": 0.6465399861335754, + "learning_rate": 3.004516806722689e-05, + "loss": 0.8787310791015625, + "step": 19000 + }, + { + "epoch": 40.126182965299684, + "grad_norm": 0.6255329251289368, + "learning_rate": 2.994117647058824e-05, + "loss": 0.84158203125, + "step": 19100 + }, + { + "epoch": 40.33648790746582, + "grad_norm": 0.6304967999458313, + "learning_rate": 2.983613445378151e-05, + "loss": 0.8283135223388672, + "step": 19200 + }, + { + "epoch": 40.54679284963196, + "grad_norm": 0.6366279125213623, + "learning_rate": 2.973109243697479e-05, + "loss": 0.8385968780517579, + "step": 19300 + }, + { + "epoch": 40.75709779179811, + "grad_norm": 0.6407002210617065, + "learning_rate": 2.9626050420168065e-05, + "loss": 0.8465004730224609, + "step": 19400 + }, + { + "epoch": 40.96740273396425, + "grad_norm": 0.6582015156745911, + "learning_rate": 2.9521008403361344e-05, + "loss": 0.8523696136474609, + "step": 19500 + }, + { + "epoch": 41.17665615141956, + "grad_norm": 0.6326037645339966, + "learning_rate": 2.9415966386554624e-05, + "loss": 0.8025535583496094, + "step": 19600 + }, + { + "epoch": 41.3869610935857, + "grad_norm": 0.631605863571167, + "learning_rate": 2.93109243697479e-05, + "loss": 0.8077165222167969, + "step": 19700 + }, + { + "epoch": 41.597266035751844, + "grad_norm": 0.6400684118270874, + "learning_rate": 2.920588235294118e-05, + "loss": 0.8162235260009766, + "step": 19800 + }, + { + "epoch": 41.80757097791798, + "grad_norm": 0.6499695181846619, + "learning_rate": 2.9100840336134455e-05, + "loss": 0.8243218231201171, + "step": 19900 + }, + { + "epoch": 42.01682439537329, + "grad_norm": 0.6392955183982849, + "learning_rate": 2.8995798319327734e-05, + "loss": 0.8244134521484375, + "step": 20000 + }, + { + "epoch": 42.22712933753943, + "grad_norm": 0.6429536938667297, + "learning_rate": 2.889075630252101e-05, + "loss": 0.7711881256103515, + "step": 20100 + }, + { + "epoch": 42.43743427970557, + "grad_norm": 0.6592206358909607, + "learning_rate": 2.878571428571429e-05, + "loss": 0.7841451263427734, + "step": 20200 + }, + { + "epoch": 42.64773922187172, + "grad_norm": 0.6881083846092224, + "learning_rate": 2.8680672268907565e-05, + "loss": 0.792880859375, + "step": 20300 + }, + { + "epoch": 42.85804416403786, + "grad_norm": 0.6662302017211914, + "learning_rate": 2.8575630252100844e-05, + "loss": 0.8001659393310547, + "step": 20400 + }, + { + "epoch": 43.067297581493165, + "grad_norm": 0.6177626252174377, + "learning_rate": 2.847058823529412e-05, + "loss": 0.7870485687255859, + "step": 20500 + }, + { + "epoch": 43.277602523659304, + "grad_norm": 0.6681060194969177, + "learning_rate": 2.83655462184874e-05, + "loss": 0.7512457275390625, + "step": 20600 + }, + { + "epoch": 43.487907465825444, + "grad_norm": 0.669675886631012, + "learning_rate": 2.826050420168067e-05, + "loss": 0.7591960144042968, + "step": 20700 + }, + { + "epoch": 43.69821240799159, + "grad_norm": 0.7097092866897583, + "learning_rate": 2.8155462184873948e-05, + "loss": 0.7737602233886719, + "step": 20800 + }, + { + "epoch": 43.90851735015773, + "grad_norm": 0.6951079964637756, + "learning_rate": 2.8050420168067227e-05, + "loss": 0.7815242767333984, + "step": 20900 + }, + { + "epoch": 44.11777076761304, + "grad_norm": 0.639824390411377, + "learning_rate": 2.7945378151260503e-05, + "loss": 0.7512903594970703, + "step": 21000 + }, + { + "epoch": 44.32807570977918, + "grad_norm": 0.67326819896698, + "learning_rate": 2.7840336134453782e-05, + "loss": 0.7329978179931641, + "step": 21100 + }, + { + "epoch": 44.53838065194532, + "grad_norm": 0.6938571333885193, + "learning_rate": 2.7735294117647058e-05, + "loss": 0.7421668243408203, + "step": 21200 + }, + { + "epoch": 44.748685594111464, + "grad_norm": 0.6845099925994873, + "learning_rate": 2.7630252100840337e-05, + "loss": 0.7509217071533203, + "step": 21300 + }, + { + "epoch": 44.958990536277604, + "grad_norm": 0.681825578212738, + "learning_rate": 2.7525210084033616e-05, + "loss": 0.7620004272460937, + "step": 21400 + }, + { + "epoch": 45.16824395373291, + "grad_norm": 0.6556856036186218, + "learning_rate": 2.7421218487394962e-05, + "loss": 0.7184288787841797, + "step": 21500 + }, + { + "epoch": 45.37854889589905, + "grad_norm": 0.6386471390724182, + "learning_rate": 2.7316176470588235e-05, + "loss": 0.7161962127685547, + "step": 21600 + }, + { + "epoch": 45.5888538380652, + "grad_norm": 0.6947113275527954, + "learning_rate": 2.721113445378151e-05, + "loss": 0.7244486999511719, + "step": 21700 + }, + { + "epoch": 45.79915878023134, + "grad_norm": 0.6741232872009277, + "learning_rate": 2.710609243697479e-05, + "loss": 0.7308968353271484, + "step": 21800 + }, + { + "epoch": 46.008412197686646, + "grad_norm": 0.6631771326065063, + "learning_rate": 2.7001050420168066e-05, + "loss": 0.7323504638671875, + "step": 21900 + }, + { + "epoch": 46.218717139852785, + "grad_norm": 0.6702309250831604, + "learning_rate": 2.6896008403361345e-05, + "loss": 0.6865713500976562, + "step": 22000 + }, + { + "epoch": 46.429022082018925, + "grad_norm": 0.6711138486862183, + "learning_rate": 2.679096638655462e-05, + "loss": 0.697294921875, + "step": 22100 + }, + { + "epoch": 46.63932702418507, + "grad_norm": 0.7067892551422119, + "learning_rate": 2.66859243697479e-05, + "loss": 0.70609619140625, + "step": 22200 + }, + { + "epoch": 46.84963196635121, + "grad_norm": 0.6743476390838623, + "learning_rate": 2.658088235294118e-05, + "loss": 0.7116059112548828, + "step": 22300 + }, + { + "epoch": 47.05888538380652, + "grad_norm": 0.642842710018158, + "learning_rate": 2.6475840336134455e-05, + "loss": 0.7024728393554688, + "step": 22400 + }, + { + "epoch": 47.26919032597266, + "grad_norm": 0.6852782368659973, + "learning_rate": 2.6370798319327734e-05, + "loss": 0.6698217010498047, + "step": 22500 + }, + { + "epoch": 47.4794952681388, + "grad_norm": 0.6817244291305542, + "learning_rate": 2.626575630252101e-05, + "loss": 0.6796794891357422, + "step": 22600 + }, + { + "epoch": 47.689800210304945, + "grad_norm": 0.665703535079956, + "learning_rate": 2.616071428571429e-05, + "loss": 0.689930191040039, + "step": 22700 + }, + { + "epoch": 47.900105152471085, + "grad_norm": 0.7286046147346497, + "learning_rate": 2.6055672268907565e-05, + "loss": 0.6968262481689453, + "step": 22800 + }, + { + "epoch": 48.10935856992639, + "grad_norm": 0.6568066477775574, + "learning_rate": 2.5950630252100845e-05, + "loss": 0.6714718627929688, + "step": 22900 + }, + { + "epoch": 48.31966351209253, + "grad_norm": 0.6909933090209961, + "learning_rate": 2.584558823529412e-05, + "loss": 0.6521046447753907, + "step": 23000 + }, + { + "epoch": 48.52996845425867, + "grad_norm": 0.6730957627296448, + "learning_rate": 2.5740546218487393e-05, + "loss": 0.6635847473144532, + "step": 23100 + }, + { + "epoch": 48.74027339642482, + "grad_norm": 0.7137960195541382, + "learning_rate": 2.5635504201680672e-05, + "loss": 0.6703518676757813, + "step": 23200 + }, + { + "epoch": 48.95057833859096, + "grad_norm": 0.7035015225410461, + "learning_rate": 2.5530462184873948e-05, + "loss": 0.678240737915039, + "step": 23300 + }, + { + "epoch": 49.159831756046266, + "grad_norm": 0.6768185496330261, + "learning_rate": 2.5425420168067227e-05, + "loss": 0.6413292694091797, + "step": 23400 + }, + { + "epoch": 49.370136698212406, + "grad_norm": 0.6941663026809692, + "learning_rate": 2.5320378151260503e-05, + "loss": 0.6415236663818359, + "step": 23500 + }, + { + "epoch": 49.58044164037855, + "grad_norm": 0.722435712814331, + "learning_rate": 2.5215336134453782e-05, + "loss": 0.6499783325195313, + "step": 23600 + }, + { + "epoch": 49.79074658254469, + "grad_norm": 0.7071043252944946, + "learning_rate": 2.511029411764706e-05, + "loss": 0.6546615600585938, + "step": 23700 + }, + { + "epoch": 50.0, + "grad_norm": Infinity, + "learning_rate": 2.5005252100840338e-05, + "loss": 0.6589860534667968, + "step": 23800 + }, + { + "epoch": 50.21030494216614, + "grad_norm": 0.6747011542320251, + "learning_rate": 2.490126050420168e-05, + "loss": 0.6164878845214844, + "step": 23900 + }, + { + "epoch": 50.42060988433228, + "grad_norm": 0.6953312754631042, + "learning_rate": 2.479621848739496e-05, + "loss": 0.6259209060668945, + "step": 24000 + }, + { + "epoch": 50.630914826498426, + "grad_norm": 0.6829053163528442, + "learning_rate": 2.469117647058824e-05, + "loss": 0.6306737518310547, + "step": 24100 + }, + { + "epoch": 50.841219768664565, + "grad_norm": 0.7105507850646973, + "learning_rate": 2.4586134453781514e-05, + "loss": 0.6402838897705078, + "step": 24200 + }, + { + "epoch": 51.05047318611987, + "grad_norm": 0.6592356562614441, + "learning_rate": 2.4481092436974794e-05, + "loss": 0.6321442413330078, + "step": 24300 + }, + { + "epoch": 51.26077812828601, + "grad_norm": 0.6957094073295593, + "learning_rate": 2.4376050420168066e-05, + "loss": 0.6060052108764649, + "step": 24400 + }, + { + "epoch": 51.47108307045215, + "grad_norm": 0.6904229521751404, + "learning_rate": 2.4271008403361345e-05, + "loss": 0.6094649505615234, + "step": 24500 + }, + { + "epoch": 51.6813880126183, + "grad_norm": 0.7173294425010681, + "learning_rate": 2.416596638655462e-05, + "loss": 0.6187096023559571, + "step": 24600 + }, + { + "epoch": 51.89169295478444, + "grad_norm": 0.7143198251724243, + "learning_rate": 2.40609243697479e-05, + "loss": 0.6268323516845703, + "step": 24700 + }, + { + "epoch": 52.10094637223975, + "grad_norm": 0.6786720752716064, + "learning_rate": 2.3955882352941176e-05, + "loss": 0.6083223342895507, + "step": 24800 + }, + { + "epoch": 52.31125131440589, + "grad_norm": 0.6900521516799927, + "learning_rate": 2.3850840336134456e-05, + "loss": 0.5922721862792969, + "step": 24900 + }, + { + "epoch": 52.521556256572026, + "grad_norm": 0.7288543581962585, + "learning_rate": 2.3745798319327735e-05, + "loss": 0.5982749938964844, + "step": 25000 + }, + { + "epoch": 52.73186119873817, + "grad_norm": 0.704078197479248, + "learning_rate": 2.3640756302521007e-05, + "loss": 0.6041379547119141, + "step": 25100 + }, + { + "epoch": 52.94216614090431, + "grad_norm": 0.706262469291687, + "learning_rate": 2.3535714285714287e-05, + "loss": 0.6083390808105469, + "step": 25200 + }, + { + "epoch": 53.15141955835962, + "grad_norm": 0.6775776743888855, + "learning_rate": 2.3430672268907563e-05, + "loss": 0.5816435623168945, + "step": 25300 + }, + { + "epoch": 53.36172450052576, + "grad_norm": 0.7253007888793945, + "learning_rate": 2.3325630252100842e-05, + "loss": 0.58095458984375, + "step": 25400 + }, + { + "epoch": 53.5720294426919, + "grad_norm": 0.7169889211654663, + "learning_rate": 2.3220588235294118e-05, + "loss": 0.5878105163574219, + "step": 25500 + }, + { + "epoch": 53.782334384858046, + "grad_norm": 0.6921281814575195, + "learning_rate": 2.3115546218487397e-05, + "loss": 0.5918175506591797, + "step": 25600 + }, + { + "epoch": 53.992639327024186, + "grad_norm": 0.7570663094520569, + "learning_rate": 2.3010504201680673e-05, + "loss": 0.5992276000976563, + "step": 25700 + }, + { + "epoch": 54.201892744479494, + "grad_norm": 0.7045475840568542, + "learning_rate": 2.2905462184873952e-05, + "loss": 0.563626937866211, + "step": 25800 + }, + { + "epoch": 54.412197686645634, + "grad_norm": 0.7311537861824036, + "learning_rate": 2.2800420168067228e-05, + "loss": 0.5649079513549805, + "step": 25900 + }, + { + "epoch": 54.62250262881178, + "grad_norm": 0.7197280526161194, + "learning_rate": 2.2695378151260504e-05, + "loss": 0.5740287017822265, + "step": 26000 + }, + { + "epoch": 54.83280757097792, + "grad_norm": 0.7047930359840393, + "learning_rate": 2.2590336134453783e-05, + "loss": 0.5799992752075195, + "step": 26100 + }, + { + "epoch": 55.04206098843323, + "grad_norm": 0.663329541683197, + "learning_rate": 2.2486344537815125e-05, + "loss": 0.5747824096679688, + "step": 26200 + }, + { + "epoch": 55.25236593059937, + "grad_norm": 0.6825776100158691, + "learning_rate": 2.2381302521008405e-05, + "loss": 0.5511475372314453, + "step": 26300 + }, + { + "epoch": 55.46267087276551, + "grad_norm": 0.7081674337387085, + "learning_rate": 2.227626050420168e-05, + "loss": 0.5568293380737305, + "step": 26400 + }, + { + "epoch": 55.672975814931654, + "grad_norm": 0.6991596221923828, + "learning_rate": 2.217121848739496e-05, + "loss": 0.5623696899414062, + "step": 26500 + }, + { + "epoch": 55.88328075709779, + "grad_norm": 0.7421116828918457, + "learning_rate": 2.2066176470588236e-05, + "loss": 0.5673596572875976, + "step": 26600 + }, + { + "epoch": 56.0925341745531, + "grad_norm": 0.6679620146751404, + "learning_rate": 2.1961134453781515e-05, + "loss": 0.555915298461914, + "step": 26700 + }, + { + "epoch": 56.30283911671924, + "grad_norm": 0.7035086750984192, + "learning_rate": 2.185609243697479e-05, + "loss": 0.5402443313598633, + "step": 26800 + }, + { + "epoch": 56.51314405888538, + "grad_norm": 0.6888571381568909, + "learning_rate": 2.1751050420168067e-05, + "loss": 0.5462953186035157, + "step": 26900 + }, + { + "epoch": 56.72344900105153, + "grad_norm": 0.7356609106063843, + "learning_rate": 2.1646008403361346e-05, + "loss": 0.5512025833129883, + "step": 27000 + }, + { + "epoch": 56.93375394321767, + "grad_norm": 0.7569705247879028, + "learning_rate": 2.1540966386554622e-05, + "loss": 0.5562152481079101, + "step": 27100 + }, + { + "epoch": 57.143007360672975, + "grad_norm": 0.6764115691184998, + "learning_rate": 2.14359243697479e-05, + "loss": 0.5337548065185547, + "step": 27200 + }, + { + "epoch": 57.353312302839115, + "grad_norm": 0.7006810307502747, + "learning_rate": 2.1330882352941177e-05, + "loss": 0.5296073913574219, + "step": 27300 + }, + { + "epoch": 57.56361724500526, + "grad_norm": 0.7158169150352478, + "learning_rate": 2.1225840336134456e-05, + "loss": 0.5382700347900391, + "step": 27400 + }, + { + "epoch": 57.7739221871714, + "grad_norm": 0.7132992148399353, + "learning_rate": 2.1120798319327732e-05, + "loss": 0.5398505783081055, + "step": 27500 + }, + { + "epoch": 57.98422712933754, + "grad_norm": 0.7330942749977112, + "learning_rate": 2.1015756302521008e-05, + "loss": 0.5458747863769531, + "step": 27600 + }, + { + "epoch": 58.19348054679285, + "grad_norm": 0.669278621673584, + "learning_rate": 2.0910714285714287e-05, + "loss": 0.5161695861816407, + "step": 27700 + }, + { + "epoch": 58.40378548895899, + "grad_norm": 0.6958737373352051, + "learning_rate": 2.0805672268907563e-05, + "loss": 0.5201998901367187, + "step": 27800 + }, + { + "epoch": 58.614090431125135, + "grad_norm": 0.6824914813041687, + "learning_rate": 2.0700630252100842e-05, + "loss": 0.5258338928222657, + "step": 27900 + }, + { + "epoch": 58.824395373291274, + "grad_norm": 0.6634467244148254, + "learning_rate": 2.0595588235294118e-05, + "loss": 0.5300619888305664, + "step": 28000 + }, + { + "epoch": 59.03364879074658, + "grad_norm": 0.6863816380500793, + "learning_rate": 2.0490546218487397e-05, + "loss": 0.5283214950561523, + "step": 28100 + }, + { + "epoch": 59.24395373291272, + "grad_norm": 0.7183119654655457, + "learning_rate": 2.0385504201680673e-05, + "loss": 0.506834487915039, + "step": 28200 + }, + { + "epoch": 59.45425867507886, + "grad_norm": 0.7142145037651062, + "learning_rate": 2.028046218487395e-05, + "loss": 0.5117876815795899, + "step": 28300 + }, + { + "epoch": 59.66456361724501, + "grad_norm": 0.7280924916267395, + "learning_rate": 2.017542016806723e-05, + "loss": 0.5153473281860351, + "step": 28400 + }, + { + "epoch": 59.87486855941115, + "grad_norm": 0.693505048751831, + "learning_rate": 2.0070378151260504e-05, + "loss": 0.5219352722167969, + "step": 28500 + }, + { + "epoch": 60.084121976866456, + "grad_norm": 0.6892845034599304, + "learning_rate": 1.9965336134453784e-05, + "loss": 0.5122858810424805, + "step": 28600 + }, + { + "epoch": 60.294426919032595, + "grad_norm": 0.6604379415512085, + "learning_rate": 1.986029411764706e-05, + "loss": 0.49614715576171875, + "step": 28700 + }, + { + "epoch": 60.504731861198735, + "grad_norm": 0.7204891443252563, + "learning_rate": 1.975525210084034e-05, + "loss": 0.5024974822998047, + "step": 28800 + }, + { + "epoch": 60.71503680336488, + "grad_norm": 0.7127634286880493, + "learning_rate": 1.9650210084033615e-05, + "loss": 0.5073120498657226, + "step": 28900 + }, + { + "epoch": 60.92534174553102, + "grad_norm": 0.7359983921051025, + "learning_rate": 1.954516806722689e-05, + "loss": 0.5116232681274414, + "step": 29000 + }, + { + "epoch": 61.13459516298633, + "grad_norm": 0.6893951296806335, + "learning_rate": 1.944012605042017e-05, + "loss": 0.4952814865112305, + "step": 29100 + }, + { + "epoch": 61.34490010515247, + "grad_norm": 0.6849685311317444, + "learning_rate": 1.9335084033613446e-05, + "loss": 0.4899435043334961, + "step": 29200 + }, + { + "epoch": 61.55520504731861, + "grad_norm": 0.7181743383407593, + "learning_rate": 1.9230042016806725e-05, + "loss": 0.4946512985229492, + "step": 29300 + }, + { + "epoch": 61.765509989484755, + "grad_norm": 0.6820606589317322, + "learning_rate": 1.9125e-05, + "loss": 0.49947418212890626, + "step": 29400 + }, + { + "epoch": 61.975814931650895, + "grad_norm": 0.7111321687698364, + "learning_rate": 1.901995798319328e-05, + "loss": 0.5020344543457032, + "step": 29500 + }, + { + "epoch": 62.1850683491062, + "grad_norm": 0.7008198499679565, + "learning_rate": 1.8914915966386556e-05, + "loss": 0.48151485443115233, + "step": 29600 + }, + { + "epoch": 62.39537329127234, + "grad_norm": 0.7171513438224792, + "learning_rate": 1.880987394957983e-05, + "loss": 0.48171932220458985, + "step": 29700 + }, + { + "epoch": 62.60567823343849, + "grad_norm": 0.7375807762145996, + "learning_rate": 1.8704831932773108e-05, + "loss": 0.4873679733276367, + "step": 29800 + }, + { + "epoch": 62.81598317560463, + "grad_norm": 0.6806672811508179, + "learning_rate": 1.8599789915966387e-05, + "loss": 0.4887456130981445, + "step": 29900 + }, + { + "epoch": 63.02523659305994, + "grad_norm": 0.6749327182769775, + "learning_rate": 1.8494747899159666e-05, + "loss": 0.48958889007568357, + "step": 30000 + }, + { + "epoch": 63.235541535226076, + "grad_norm": 0.7122695446014404, + "learning_rate": 1.8389705882352942e-05, + "loss": 0.46849212646484373, + "step": 30100 + }, + { + "epoch": 63.445846477392216, + "grad_norm": 0.6742300987243652, + "learning_rate": 1.8285714285714288e-05, + "loss": 0.4735026550292969, + "step": 30200 + }, + { + "epoch": 63.65615141955836, + "grad_norm": 0.7086833119392395, + "learning_rate": 1.8180672268907564e-05, + "loss": 0.47808189392089845, + "step": 30300 + }, + { + "epoch": 63.8664563617245, + "grad_norm": 0.673115611076355, + "learning_rate": 1.8075630252100843e-05, + "loss": 0.4810390853881836, + "step": 30400 + }, + { + "epoch": 64.07570977917982, + "grad_norm": 0.7166642546653748, + "learning_rate": 1.797058823529412e-05, + "loss": 0.47662986755371095, + "step": 30500 + }, + { + "epoch": 64.28601472134595, + "grad_norm": 0.7239866852760315, + "learning_rate": 1.7865546218487395e-05, + "loss": 0.46368907928466796, + "step": 30600 + }, + { + "epoch": 64.4963196635121, + "grad_norm": 0.6777023077011108, + "learning_rate": 1.776050420168067e-05, + "loss": 0.46869037628173826, + "step": 30700 + }, + { + "epoch": 64.70662460567823, + "grad_norm": 0.7028587460517883, + "learning_rate": 1.765546218487395e-05, + "loss": 0.47153076171875, + "step": 30800 + }, + { + "epoch": 64.91692954784438, + "grad_norm": 0.7220568656921387, + "learning_rate": 1.755042016806723e-05, + "loss": 0.4732553482055664, + "step": 30900 + }, + { + "epoch": 65.12618296529969, + "grad_norm": 0.6283636093139648, + "learning_rate": 1.7445378151260505e-05, + "loss": 0.4627264404296875, + "step": 31000 + }, + { + "epoch": 65.33648790746582, + "grad_norm": 0.6411524415016174, + "learning_rate": 1.7340336134453784e-05, + "loss": 0.45608016967773435, + "step": 31100 + }, + { + "epoch": 65.54679284963197, + "grad_norm": 0.668154776096344, + "learning_rate": 1.723529411764706e-05, + "loss": 0.46059967041015626, + "step": 31200 + }, + { + "epoch": 65.7570977917981, + "grad_norm": 0.7226248979568481, + "learning_rate": 1.713025210084034e-05, + "loss": 0.4659851455688477, + "step": 31300 + }, + { + "epoch": 65.96740273396425, + "grad_norm": 0.6833023428916931, + "learning_rate": 1.7025210084033612e-05, + "loss": 0.46931900024414064, + "step": 31400 + }, + { + "epoch": 66.17665615141956, + "grad_norm": 0.6941800117492676, + "learning_rate": 1.6921218487394958e-05, + "loss": 0.45006973266601563, + "step": 31500 + }, + { + "epoch": 66.3869610935857, + "grad_norm": 0.63517826795578, + "learning_rate": 1.6816176470588237e-05, + "loss": 0.44848171234130857, + "step": 31600 + }, + { + "epoch": 66.59726603575184, + "grad_norm": 0.6846080422401428, + "learning_rate": 1.6711134453781513e-05, + "loss": 0.45420032501220703, + "step": 31700 + }, + { + "epoch": 66.80757097791798, + "grad_norm": 0.6388368010520935, + "learning_rate": 1.6606092436974792e-05, + "loss": 0.4580923843383789, + "step": 31800 + }, + { + "epoch": 67.01682439537329, + "grad_norm": 0.6670629978179932, + "learning_rate": 1.6501050420168068e-05, + "loss": 0.4585027313232422, + "step": 31900 + }, + { + "epoch": 67.22712933753944, + "grad_norm": 0.6662338972091675, + "learning_rate": 1.6396008403361347e-05, + "loss": 0.44079010009765623, + "step": 32000 + }, + { + "epoch": 67.43743427970557, + "grad_norm": 0.6707865595817566, + "learning_rate": 1.6290966386554623e-05, + "loss": 0.44413238525390625, + "step": 32100 + }, + { + "epoch": 67.64773922187172, + "grad_norm": 0.656842052936554, + "learning_rate": 1.6185924369747902e-05, + "loss": 0.44844043731689454, + "step": 32200 + }, + { + "epoch": 67.85804416403785, + "grad_norm": 0.6646634340286255, + "learning_rate": 1.6080882352941175e-05, + "loss": 0.44970947265625, + "step": 32300 + }, + { + "epoch": 68.06729758149316, + "grad_norm": 0.6447365880012512, + "learning_rate": 1.5975840336134454e-05, + "loss": 0.4450407028198242, + "step": 32400 + }, + { + "epoch": 68.27760252365931, + "grad_norm": 0.6727699637413025, + "learning_rate": 1.587079831932773e-05, + "loss": 0.43177310943603514, + "step": 32500 + }, + { + "epoch": 68.48790746582544, + "grad_norm": 0.7130571603775024, + "learning_rate": 1.576575630252101e-05, + "loss": 0.4379489517211914, + "step": 32600 + }, + { + "epoch": 68.69821240799159, + "grad_norm": 0.7220073938369751, + "learning_rate": 1.566071428571429e-05, + "loss": 0.4425164794921875, + "step": 32700 + }, + { + "epoch": 68.90851735015772, + "grad_norm": 0.6695141196250916, + "learning_rate": 1.5555672268907564e-05, + "loss": 0.44274383544921875, + "step": 32800 + }, + { + "epoch": 69.11777076761304, + "grad_norm": 0.6740268468856812, + "learning_rate": 1.5450630252100843e-05, + "loss": 0.4357725143432617, + "step": 32900 + }, + { + "epoch": 69.32807570977918, + "grad_norm": 0.6566063165664673, + "learning_rate": 1.5345588235294116e-05, + "loss": 0.4283485412597656, + "step": 33000 + }, + { + "epoch": 69.53838065194532, + "grad_norm": 0.6752663850784302, + "learning_rate": 1.5240546218487395e-05, + "loss": 0.43225677490234377, + "step": 33100 + }, + { + "epoch": 69.74868559411146, + "grad_norm": 0.7038667798042297, + "learning_rate": 1.5135504201680673e-05, + "loss": 0.43592594146728514, + "step": 33200 + }, + { + "epoch": 69.9589905362776, + "grad_norm": 0.6961196660995483, + "learning_rate": 1.503046218487395e-05, + "loss": 0.438877067565918, + "step": 33300 + }, + { + "epoch": 70.16824395373291, + "grad_norm": 0.6535352468490601, + "learning_rate": 1.4925420168067228e-05, + "loss": 0.4252385330200195, + "step": 33400 + }, + { + "epoch": 70.37854889589906, + "grad_norm": 0.6601018905639648, + "learning_rate": 1.4820378151260505e-05, + "loss": 0.42285392761230467, + "step": 33500 + }, + { + "epoch": 70.58885383806519, + "grad_norm": 0.6948896050453186, + "learning_rate": 1.4715336134453783e-05, + "loss": 0.427175407409668, + "step": 33600 + }, + { + "epoch": 70.79915878023134, + "grad_norm": 0.6372560858726501, + "learning_rate": 1.461029411764706e-05, + "loss": 0.42832706451416014, + "step": 33700 + }, + { + "epoch": 71.00841219768665, + "grad_norm": 0.6517939567565918, + "learning_rate": 1.4505252100840336e-05, + "loss": 0.4324043273925781, + "step": 33800 + }, + { + "epoch": 71.21871713985279, + "grad_norm": 0.6330206990242004, + "learning_rate": 1.4400210084033614e-05, + "loss": 0.4146746826171875, + "step": 33900 + }, + { + "epoch": 71.42902208201893, + "grad_norm": 0.6658615469932556, + "learning_rate": 1.4295168067226892e-05, + "loss": 0.4180047225952148, + "step": 34000 + }, + { + "epoch": 71.63932702418506, + "grad_norm": 0.6433075070381165, + "learning_rate": 1.4190126050420169e-05, + "loss": 0.4219693374633789, + "step": 34100 + }, + { + "epoch": 71.84963196635121, + "grad_norm": 0.6470766663551331, + "learning_rate": 1.4085084033613447e-05, + "loss": 0.4214926528930664, + "step": 34200 + }, + { + "epoch": 72.05888538380653, + "grad_norm": 0.6315721273422241, + "learning_rate": 1.3981092436974791e-05, + "loss": 0.4204498291015625, + "step": 34300 + }, + { + "epoch": 72.26919032597266, + "grad_norm": 0.6722202897071838, + "learning_rate": 1.3876050420168068e-05, + "loss": 0.4105443572998047, + "step": 34400 + }, + { + "epoch": 72.4794952681388, + "grad_norm": 0.654528021812439, + "learning_rate": 1.3771008403361346e-05, + "loss": 0.41524337768554687, + "step": 34500 + }, + { + "epoch": 72.68980021030494, + "grad_norm": 0.6449755430221558, + "learning_rate": 1.3665966386554622e-05, + "loss": 0.4175481414794922, + "step": 34600 + }, + { + "epoch": 72.90010515247108, + "grad_norm": 0.6468359231948853, + "learning_rate": 1.35609243697479e-05, + "loss": 0.41863433837890623, + "step": 34700 + }, + { + "epoch": 73.1093585699264, + "grad_norm": 0.6471462845802307, + "learning_rate": 1.3455882352941177e-05, + "loss": 0.411123161315918, + "step": 34800 + }, + { + "epoch": 73.31966351209253, + "grad_norm": 0.6382157802581787, + "learning_rate": 1.3350840336134455e-05, + "loss": 0.40554931640625, + "step": 34900 + }, + { + "epoch": 73.52996845425868, + "grad_norm": 0.6727550029754639, + "learning_rate": 1.3245798319327732e-05, + "loss": 0.40884464263916015, + "step": 35000 + }, + { + "epoch": 73.74027339642481, + "grad_norm": 0.6494147181510925, + "learning_rate": 1.314075630252101e-05, + "loss": 0.4114807891845703, + "step": 35100 + }, + { + "epoch": 73.95057833859096, + "grad_norm": 0.6971067786216736, + "learning_rate": 1.3035714285714287e-05, + "loss": 0.4129951477050781, + "step": 35200 + }, + { + "epoch": 74.15983175604627, + "grad_norm": 0.630617082118988, + "learning_rate": 1.2930672268907565e-05, + "loss": 0.40283798217773437, + "step": 35300 + }, + { + "epoch": 74.3701366982124, + "grad_norm": 0.6068241000175476, + "learning_rate": 1.2825630252100839e-05, + "loss": 0.4017567825317383, + "step": 35400 + }, + { + "epoch": 74.58044164037855, + "grad_norm": 0.6767259836196899, + "learning_rate": 1.2720588235294118e-05, + "loss": 0.40448307037353515, + "step": 35500 + }, + { + "epoch": 74.79074658254468, + "grad_norm": 0.7011847496032715, + "learning_rate": 1.2615546218487396e-05, + "loss": 0.4047744369506836, + "step": 35600 + }, + { + "epoch": 75.0, + "grad_norm": 0.9920335412025452, + "learning_rate": 1.2510504201680673e-05, + "loss": 0.4085837936401367, + "step": 35700 + }, + { + "epoch": 75.21030494216615, + "grad_norm": 0.6520708203315735, + "learning_rate": 1.2405462184873951e-05, + "loss": 0.39399688720703124, + "step": 35800 + }, + { + "epoch": 75.42060988433228, + "grad_norm": 0.6656842827796936, + "learning_rate": 1.2300420168067227e-05, + "loss": 0.3963521957397461, + "step": 35900 + }, + { + "epoch": 75.63091482649843, + "grad_norm": 0.6576446294784546, + "learning_rate": 1.2195378151260504e-05, + "loss": 0.3992136383056641, + "step": 36000 + }, + { + "epoch": 75.84121976866456, + "grad_norm": 0.6238224506378174, + "learning_rate": 1.2090336134453782e-05, + "loss": 0.40125537872314454, + "step": 36100 + }, + { + "epoch": 76.05047318611987, + "grad_norm": 0.6389949917793274, + "learning_rate": 1.198529411764706e-05, + "loss": 0.3995349884033203, + "step": 36200 + }, + { + "epoch": 76.26077812828602, + "grad_norm": 0.6240091919898987, + "learning_rate": 1.1880252100840335e-05, + "loss": 0.3890629577636719, + "step": 36300 + }, + { + "epoch": 76.47108307045215, + "grad_norm": 0.6367642879486084, + "learning_rate": 1.1775210084033615e-05, + "loss": 0.39277313232421873, + "step": 36400 + }, + { + "epoch": 76.6813880126183, + "grad_norm": 0.6215347647666931, + "learning_rate": 1.1670168067226892e-05, + "loss": 0.3941745376586914, + "step": 36500 + }, + { + "epoch": 76.89169295478443, + "grad_norm": 0.6176421642303467, + "learning_rate": 1.156512605042017e-05, + "loss": 0.3961213302612305, + "step": 36600 + }, + { + "epoch": 77.10094637223975, + "grad_norm": 0.6433852314949036, + "learning_rate": 1.1460084033613446e-05, + "loss": 0.39362903594970705, + "step": 36700 + }, + { + "epoch": 77.3112513144059, + "grad_norm": 0.6288033127784729, + "learning_rate": 1.1355042016806723e-05, + "loss": 0.3870785140991211, + "step": 36800 + }, + { + "epoch": 77.52155625657203, + "grad_norm": 0.6061193943023682, + "learning_rate": 1.125e-05, + "loss": 0.38955581665039063, + "step": 36900 + }, + { + "epoch": 77.73186119873817, + "grad_norm": 0.6680556535720825, + "learning_rate": 1.1144957983193278e-05, + "loss": 0.390676383972168, + "step": 37000 + }, + { + "epoch": 77.9421661409043, + "grad_norm": 0.623725950717926, + "learning_rate": 1.1039915966386554e-05, + "loss": 0.3921066665649414, + "step": 37100 + }, + { + "epoch": 78.15141955835962, + "grad_norm": 0.6346238255500793, + "learning_rate": 1.0935924369747898e-05, + "loss": 0.3845651626586914, + "step": 37200 + }, + { + "epoch": 78.36172450052577, + "grad_norm": 0.6062731146812439, + "learning_rate": 1.0830882352941178e-05, + "loss": 0.380772705078125, + "step": 37300 + }, + { + "epoch": 78.5720294426919, + "grad_norm": 0.6125079989433289, + "learning_rate": 1.0725840336134455e-05, + "loss": 0.3834884262084961, + "step": 37400 + }, + { + "epoch": 78.78233438485805, + "grad_norm": 0.6804420948028564, + "learning_rate": 1.0620798319327733e-05, + "loss": 0.3863555526733398, + "step": 37500 + }, + { + "epoch": 78.99263932702418, + "grad_norm": 0.6568316221237183, + "learning_rate": 1.0515756302521009e-05, + "loss": 0.3898443603515625, + "step": 37600 + }, + { + "epoch": 79.2018927444795, + "grad_norm": 0.6262179017066956, + "learning_rate": 1.0410714285714286e-05, + "loss": 0.37717395782470703, + "step": 37700 + }, + { + "epoch": 79.41219768664564, + "grad_norm": 0.6335896849632263, + "learning_rate": 1.0305672268907564e-05, + "loss": 0.37976459503173826, + "step": 37800 + }, + { + "epoch": 79.62250262881177, + "grad_norm": 0.675938069820404, + "learning_rate": 1.0200630252100841e-05, + "loss": 0.38054397583007815, + "step": 37900 + }, + { + "epoch": 79.83280757097792, + "grad_norm": 0.650644838809967, + "learning_rate": 1.0095588235294117e-05, + "loss": 0.3817191696166992, + "step": 38000 + }, + { + "epoch": 80.04206098843324, + "grad_norm": 0.5988778471946716, + "learning_rate": 9.990546218487395e-06, + "loss": 0.3799977493286133, + "step": 38100 + }, + { + "epoch": 80.25236593059937, + "grad_norm": 0.6436987519264221, + "learning_rate": 9.885504201680674e-06, + "loss": 0.37264183044433596, + "step": 38200 + }, + { + "epoch": 80.46267087276551, + "grad_norm": 0.610487699508667, + "learning_rate": 9.78046218487395e-06, + "loss": 0.3753046417236328, + "step": 38300 + }, + { + "epoch": 80.67297581493165, + "grad_norm": 0.6378571391105652, + "learning_rate": 9.675420168067227e-06, + "loss": 0.3749809646606445, + "step": 38400 + }, + { + "epoch": 80.8832807570978, + "grad_norm": 0.6599664688110352, + "learning_rate": 9.570378151260505e-06, + "loss": 0.37958168029785155, + "step": 38500 + }, + { + "epoch": 81.09253417455311, + "grad_norm": 0.6057779788970947, + "learning_rate": 9.465336134453782e-06, + "loss": 0.3755946731567383, + "step": 38600 + }, + { + "epoch": 81.30283911671924, + "grad_norm": 0.6186268925666809, + "learning_rate": 9.360294117647058e-06, + "loss": 0.3689208221435547, + "step": 38700 + }, + { + "epoch": 81.51314405888539, + "grad_norm": 0.6031709909439087, + "learning_rate": 9.255252100840336e-06, + "loss": 0.37045917510986326, + "step": 38800 + }, + { + "epoch": 81.72344900105152, + "grad_norm": 0.6903654336929321, + "learning_rate": 9.150210084033613e-06, + "loss": 0.37341190338134767, + "step": 38900 + }, + { + "epoch": 81.93375394321767, + "grad_norm": 0.6498835682868958, + "learning_rate": 9.045168067226891e-06, + "loss": 0.3741530227661133, + "step": 39000 + }, + { + "epoch": 82.14300736067298, + "grad_norm": 0.6078621745109558, + "learning_rate": 8.940126050420169e-06, + "loss": 0.36713558197021484, + "step": 39100 + }, + { + "epoch": 82.35331230283911, + "grad_norm": 0.6294094324111938, + "learning_rate": 8.835084033613446e-06, + "loss": 0.3661073303222656, + "step": 39200 + }, + { + "epoch": 82.56361724500526, + "grad_norm": 0.6120302081108093, + "learning_rate": 8.730042016806724e-06, + "loss": 0.3683062744140625, + "step": 39300 + }, + { + "epoch": 82.7739221871714, + "grad_norm": 0.6194695830345154, + "learning_rate": 8.625e-06, + "loss": 0.3718934631347656, + "step": 39400 + }, + { + "epoch": 82.98422712933754, + "grad_norm": 0.6603109240531921, + "learning_rate": 8.519957983193277e-06, + "loss": 0.37141822814941405, + "step": 39500 + }, + { + "epoch": 83.19348054679286, + "grad_norm": 0.6176982522010803, + "learning_rate": 8.414915966386555e-06, + "loss": 0.36253021240234373, + "step": 39600 + }, + { + "epoch": 83.40378548895899, + "grad_norm": 0.6788721084594727, + "learning_rate": 8.309873949579832e-06, + "loss": 0.36460174560546876, + "step": 39700 + }, + { + "epoch": 83.61409043112513, + "grad_norm": 0.6141113638877869, + "learning_rate": 8.20483193277311e-06, + "loss": 0.36554264068603515, + "step": 39800 + }, + { + "epoch": 83.82439537329127, + "grad_norm": 0.6193323135375977, + "learning_rate": 8.099789915966387e-06, + "loss": 0.36707286834716796, + "step": 39900 + }, + { + "epoch": 84.03364879074658, + "grad_norm": 0.6383187770843506, + "learning_rate": 7.994747899159665e-06, + "loss": 0.3661843872070312, + "step": 40000 + }, + { + "epoch": 84.24395373291273, + "grad_norm": 0.5923520922660828, + "learning_rate": 7.889705882352943e-06, + "loss": 0.35978816986083983, + "step": 40100 + }, + { + "epoch": 84.45425867507886, + "grad_norm": 0.641968846321106, + "learning_rate": 7.784663865546218e-06, + "loss": 0.35977176666259764, + "step": 40200 + }, + { + "epoch": 84.66456361724501, + "grad_norm": 0.6307324767112732, + "learning_rate": 7.679621848739496e-06, + "loss": 0.36135292053222656, + "step": 40300 + }, + { + "epoch": 84.87486855941114, + "grad_norm": 0.6303888559341431, + "learning_rate": 7.5745798319327735e-06, + "loss": 0.36290821075439456, + "step": 40400 + }, + { + "epoch": 85.08412197686646, + "grad_norm": 0.5610889792442322, + "learning_rate": 7.469537815126051e-06, + "loss": 0.36016101837158204, + "step": 40500 + }, + { + "epoch": 85.2944269190326, + "grad_norm": 0.5796296000480652, + "learning_rate": 7.364495798319328e-06, + "loss": 0.35660606384277344, + "step": 40600 + }, + { + "epoch": 85.50473186119874, + "grad_norm": 0.6147542595863342, + "learning_rate": 7.259453781512605e-06, + "loss": 0.35944347381591796, + "step": 40700 + }, + { + "epoch": 85.71503680336488, + "grad_norm": 0.6097769737243652, + "learning_rate": 7.154411764705883e-06, + "loss": 0.3589036560058594, + "step": 40800 + }, + { + "epoch": 85.92534174553101, + "grad_norm": 0.6288202404975891, + "learning_rate": 7.04936974789916e-06, + "loss": 0.3591917419433594, + "step": 40900 + }, + { + "epoch": 86.13459516298633, + "grad_norm": 0.6195931434631348, + "learning_rate": 6.944327731092437e-06, + "loss": 0.3569915771484375, + "step": 41000 + }, + { + "epoch": 86.34490010515248, + "grad_norm": 0.5890372395515442, + "learning_rate": 6.839285714285715e-06, + "loss": 0.3543994903564453, + "step": 41100 + }, + { + "epoch": 86.55520504731861, + "grad_norm": 0.6272594332695007, + "learning_rate": 6.735294117647059e-06, + "loss": 0.3553640365600586, + "step": 41200 + }, + { + "epoch": 86.76550998948476, + "grad_norm": 0.6778700351715088, + "learning_rate": 6.6302521008403365e-06, + "loss": 0.3564106750488281, + "step": 41300 + }, + { + "epoch": 86.97581493165089, + "grad_norm": 0.6336688995361328, + "learning_rate": 6.525210084033614e-06, + "loss": 0.35713409423828124, + "step": 41400 + }, + { + "epoch": 87.1850683491062, + "grad_norm": 0.6053069829940796, + "learning_rate": 6.421218487394959e-06, + "loss": 0.3506643295288086, + "step": 41500 + }, + { + "epoch": 87.39537329127235, + "grad_norm": 0.6175255179405212, + "learning_rate": 6.316176470588235e-06, + "loss": 0.35214996337890625, + "step": 41600 + }, + { + "epoch": 87.60567823343848, + "grad_norm": 0.5915444493293762, + "learning_rate": 6.2111344537815125e-06, + "loss": 0.3522480392456055, + "step": 41700 + }, + { + "epoch": 87.81598317560463, + "grad_norm": 0.5907636880874634, + "learning_rate": 6.10609243697479e-06, + "loss": 0.3520878601074219, + "step": 41800 + }, + { + "epoch": 88.02523659305994, + "grad_norm": 0.6209415197372437, + "learning_rate": 6.001050420168068e-06, + "loss": 0.3545633316040039, + "step": 41900 + }, + { + "epoch": 88.23554153522608, + "grad_norm": 0.5926827788352966, + "learning_rate": 5.896008403361345e-06, + "loss": 0.34920032501220705, + "step": 42000 + }, + { + "epoch": 88.44584647739222, + "grad_norm": 0.638471245765686, + "learning_rate": 5.790966386554622e-06, + "loss": 0.34805423736572266, + "step": 42100 + }, + { + "epoch": 88.65615141955836, + "grad_norm": 0.6181325316429138, + "learning_rate": 5.6859243697478994e-06, + "loss": 0.3501460647583008, + "step": 42200 + }, + { + "epoch": 88.8664563617245, + "grad_norm": 0.6029173135757446, + "learning_rate": 5.580882352941177e-06, + "loss": 0.35028797149658203, + "step": 42300 + }, + { + "epoch": 89.07570977917982, + "grad_norm": 0.5673274397850037, + "learning_rate": 5.475840336134454e-06, + "loss": 0.34918766021728515, + "step": 42400 + }, + { + "epoch": 89.28601472134595, + "grad_norm": 0.5657567977905273, + "learning_rate": 5.370798319327731e-06, + "loss": 0.34565746307373046, + "step": 42500 + }, + { + "epoch": 89.4963196635121, + "grad_norm": 0.6014168858528137, + "learning_rate": 5.265756302521008e-06, + "loss": 0.3450989532470703, + "step": 42600 + }, + { + "epoch": 89.70662460567823, + "grad_norm": 0.5631797909736633, + "learning_rate": 5.160714285714286e-06, + "loss": 0.3477408218383789, + "step": 42700 + }, + { + "epoch": 89.91692954784438, + "grad_norm": 0.624321699142456, + "learning_rate": 5.055672268907563e-06, + "loss": 0.34852649688720705, + "step": 42800 + }, + { + "epoch": 90.12618296529969, + "grad_norm": 0.6004353761672974, + "learning_rate": 4.950630252100841e-06, + "loss": 0.3450387191772461, + "step": 42900 + }, + { + "epoch": 90.33648790746582, + "grad_norm": 0.6030150651931763, + "learning_rate": 4.845588235294117e-06, + "loss": 0.34261096954345704, + "step": 43000 + }, + { + "epoch": 90.54679284963197, + "grad_norm": 0.5574061870574951, + "learning_rate": 4.740546218487396e-06, + "loss": 0.3450190734863281, + "step": 43100 + }, + { + "epoch": 90.7570977917981, + "grad_norm": 0.5677763819694519, + "learning_rate": 4.6355042016806725e-06, + "loss": 0.3442384338378906, + "step": 43200 + }, + { + "epoch": 90.96740273396425, + "grad_norm": 0.6088888645172119, + "learning_rate": 4.53046218487395e-06, + "loss": 0.3451253128051758, + "step": 43300 + }, + { + "epoch": 91.17665615141956, + "grad_norm": 0.5724344849586487, + "learning_rate": 4.425420168067227e-06, + "loss": 0.3408164978027344, + "step": 43400 + }, + { + "epoch": 91.3869610935857, + "grad_norm": 0.6201240420341492, + "learning_rate": 4.320378151260504e-06, + "loss": 0.3420841979980469, + "step": 43500 + }, + { + "epoch": 91.59726603575184, + "grad_norm": 0.6098768711090088, + "learning_rate": 4.215336134453782e-06, + "loss": 0.3413374328613281, + "step": 43600 + }, + { + "epoch": 91.80757097791798, + "grad_norm": 0.6306800842285156, + "learning_rate": 4.110294117647059e-06, + "loss": 0.34394527435302735, + "step": 43700 + }, + { + "epoch": 92.01682439537329, + "grad_norm": 0.559008777141571, + "learning_rate": 4.005252100840336e-06, + "loss": 0.3423053741455078, + "step": 43800 + }, + { + "epoch": 92.22712933753944, + "grad_norm": 0.5939933657646179, + "learning_rate": 3.900210084033614e-06, + "loss": 0.33797637939453123, + "step": 43900 + }, + { + "epoch": 92.43743427970557, + "grad_norm": 0.6135221719741821, + "learning_rate": 3.795168067226891e-06, + "loss": 0.3408375930786133, + "step": 44000 + }, + { + "epoch": 92.64773922187172, + "grad_norm": 0.5870836973190308, + "learning_rate": 3.690126050420168e-06, + "loss": 0.34073463439941404, + "step": 44100 + }, + { + "epoch": 92.85804416403785, + "grad_norm": 0.5811474323272705, + "learning_rate": 3.5850840336134456e-06, + "loss": 0.34040855407714843, + "step": 44200 + }, + { + "epoch": 93.06729758149316, + "grad_norm": 0.5979830026626587, + "learning_rate": 3.4800420168067227e-06, + "loss": 0.3395253753662109, + "step": 44300 + }, + { + "epoch": 93.27760252365931, + "grad_norm": 0.5824161171913147, + "learning_rate": 3.3750000000000003e-06, + "loss": 0.3389311981201172, + "step": 44400 + }, + { + "epoch": 93.48790746582544, + "grad_norm": 0.5694940090179443, + "learning_rate": 3.2699579831932774e-06, + "loss": 0.337044792175293, + "step": 44500 + }, + { + "epoch": 93.69821240799159, + "grad_norm": 0.6112421154975891, + "learning_rate": 3.164915966386555e-06, + "loss": 0.33819969177246095, + "step": 44600 + }, + { + "epoch": 93.90851735015772, + "grad_norm": 0.610955536365509, + "learning_rate": 3.059873949579832e-06, + "loss": 0.33944580078125, + "step": 44700 + }, + { + "epoch": 94.11777076761304, + "grad_norm": 0.6398776769638062, + "learning_rate": 2.9548319327731093e-06, + "loss": 0.33618770599365233, + "step": 44800 + }, + { + "epoch": 94.32807570977918, + "grad_norm": 0.5934144854545593, + "learning_rate": 2.849789915966387e-06, + "loss": 0.3384376525878906, + "step": 44900 + }, + { + "epoch": 94.53838065194532, + "grad_norm": 0.6144473552703857, + "learning_rate": 2.744747899159664e-06, + "loss": 0.3383865737915039, + "step": 45000 + }, + { + "epoch": 94.74868559411146, + "grad_norm": 0.5490454435348511, + "learning_rate": 2.6397058823529415e-06, + "loss": 0.33671878814697265, + "step": 45100 + }, + { + "epoch": 94.9589905362776, + "grad_norm": 0.5695416331291199, + "learning_rate": 2.5346638655462187e-06, + "loss": 0.3379853820800781, + "step": 45200 + }, + { + "epoch": 95.16824395373291, + "grad_norm": 0.5724055767059326, + "learning_rate": 2.429621848739496e-06, + "loss": 0.3338408660888672, + "step": 45300 + }, + { + "epoch": 95.37854889589906, + "grad_norm": 0.594022810459137, + "learning_rate": 2.3245798319327734e-06, + "loss": 0.3349121475219727, + "step": 45400 + }, + { + "epoch": 95.58885383806519, + "grad_norm": 0.5594576597213745, + "learning_rate": 2.2205882352941175e-06, + "loss": 0.33595680236816405, + "step": 45500 + }, + { + "epoch": 95.79915878023134, + "grad_norm": 0.5346081852912903, + "learning_rate": 2.115546218487395e-06, + "loss": 0.33520328521728515, + "step": 45600 + }, + { + "epoch": 96.00841219768665, + "grad_norm": 0.5849393606185913, + "learning_rate": 2.0105042016806722e-06, + "loss": 0.3334170913696289, + "step": 45700 + }, + { + "epoch": 96.21871713985279, + "grad_norm": 0.5918118357658386, + "learning_rate": 1.9054621848739498e-06, + "loss": 0.3329995346069336, + "step": 45800 + }, + { + "epoch": 96.42902208201893, + "grad_norm": 0.6012352705001831, + "learning_rate": 1.800420168067227e-06, + "loss": 0.3329520416259766, + "step": 45900 + }, + { + "epoch": 96.63932702418506, + "grad_norm": 0.5281354784965515, + "learning_rate": 1.6953781512605043e-06, + "loss": 0.3343208694458008, + "step": 46000 + }, + { + "epoch": 96.84963196635121, + "grad_norm": 0.5566437244415283, + "learning_rate": 1.5903361344537816e-06, + "loss": 0.33319324493408203, + "step": 46100 + }, + { + "epoch": 97.05888538380653, + "grad_norm": 0.62099689245224, + "learning_rate": 1.486344537815126e-06, + "loss": 0.33431713104248045, + "step": 46200 + }, + { + "epoch": 97.26919032597266, + "grad_norm": 0.5787718892097473, + "learning_rate": 1.3813025210084034e-06, + "loss": 0.3314530944824219, + "step": 46300 + }, + { + "epoch": 97.4794952681388, + "grad_norm": 0.5509923100471497, + "learning_rate": 1.2762605042016807e-06, + "loss": 0.3316763305664063, + "step": 46400 + }, + { + "epoch": 97.68980021030494, + "grad_norm": 0.5569334030151367, + "learning_rate": 1.171218487394958e-06, + "loss": 0.3315643310546875, + "step": 46500 + }, + { + "epoch": 97.90010515247108, + "grad_norm": 0.5476507544517517, + "learning_rate": 1.0661764705882354e-06, + "loss": 0.33233203887939455, + "step": 46600 + }, + { + "epoch": 98.1093585699264, + "grad_norm": 0.5630120038986206, + "learning_rate": 9.611344537815128e-07, + "loss": 0.33105762481689455, + "step": 46700 + }, + { + "epoch": 98.31966351209253, + "grad_norm": 0.5520943999290466, + "learning_rate": 8.5609243697479e-07, + "loss": 0.3307930374145508, + "step": 46800 + }, + { + "epoch": 98.52996845425868, + "grad_norm": 0.5917891263961792, + "learning_rate": 7.510504201680673e-07, + "loss": 0.3318499755859375, + "step": 46900 + }, + { + "epoch": 98.74027339642481, + "grad_norm": 0.5395123362541199, + "learning_rate": 6.460084033613445e-07, + "loss": 0.330290412902832, + "step": 47000 + }, + { + "epoch": 98.95057833859096, + "grad_norm": 0.5702670216560364, + "learning_rate": 5.409663865546218e-07, + "loss": 0.33196086883544923, + "step": 47100 + }, + { + "epoch": 99.15983175604627, + "grad_norm": 0.5607645511627197, + "learning_rate": 4.359243697478992e-07, + "loss": 0.3293312454223633, + "step": 47200 + } + ], + "logging_steps": 100, + "max_steps": 47600, + "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": 3.0413676878290944e+16, + "train_batch_size": 8, + "trial_name": null, + "trial_params": null +} diff --git a/timecost/n11/realtabformer/rtf-n11-20260501_010320/rtf_checkpoints/checkpoint-47200/training_args.bin b/timecost/n11/realtabformer/rtf-n11-20260501_010320/rtf_checkpoints/checkpoint-47200/training_args.bin new file mode 100644 index 0000000000000000000000000000000000000000..34d68dc0e0fe1c1f12a2e581dd1b166aa7178a9e --- /dev/null +++ b/timecost/n11/realtabformer/rtf-n11-20260501_010320/rtf_checkpoints/checkpoint-47200/training_args.bin @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:9e2cd88337d1d846c6918d2b3b63fa3e5c93f12fefc082497590da854a564607 +size 5201 diff --git a/timecost/n11/realtabformer/rtf-n11-20260501_010320/rtf_checkpoints/checkpoint-47300/config.json b/timecost/n11/realtabformer/rtf-n11-20260501_010320/rtf_checkpoints/checkpoint-47300/config.json new file mode 100644 index 0000000000000000000000000000000000000000..605aa5aa48fc96b6c3133032a3e66cd18090e70a --- /dev/null +++ b/timecost/n11/realtabformer/rtf-n11-20260501_010320/rtf_checkpoints/checkpoint-47300/config.json @@ -0,0 +1,34 @@ +{ + "activation_function": "gelu_new", + "add_cross_attention": false, + "architectures": [ + "GPT2LMHeadModel" + ], + "attn_pdrop": 0.1, + "bos_token_id": 5, + "dtype": "float32", + "embd_pdrop": 0.1, + "eos_token_id": 6, + "initializer_range": 0.02, + "layer_norm_epsilon": 1e-05, + "model_type": "gpt2", + "n_embd": 768, + "n_head": 12, + "n_inner": null, + "n_layer": 6, + "n_positions": 1024, + "pad_token_id": null, + "reorder_and_upcast_attn": false, + "resid_pdrop": 0.1, + "scale_attn_by_inverse_layer_idx": false, + "scale_attn_weights": true, + "summary_activation": null, + "summary_first_dropout": 0.1, + "summary_proj_to_labels": true, + "summary_type": "cls_index", + "summary_use_proj": true, + "tie_word_embeddings": true, + "transformers_version": "5.5.3", + "use_cache": false, + "vocab_size": 597 +} diff --git a/timecost/n11/realtabformer/rtf-n11-20260501_010320/rtf_checkpoints/checkpoint-47300/generation_config.json b/timecost/n11/realtabformer/rtf-n11-20260501_010320/rtf_checkpoints/checkpoint-47300/generation_config.json new file mode 100644 index 0000000000000000000000000000000000000000..ffe89567780e75b5c22eade9be971483b9618f39 --- /dev/null +++ b/timecost/n11/realtabformer/rtf-n11-20260501_010320/rtf_checkpoints/checkpoint-47300/generation_config.json @@ -0,0 +1,9 @@ +{ + "_from_model_config": true, + "bos_token_id": 5, + "eos_token_id": 6, + "output_attentions": false, + "output_hidden_states": false, + "transformers_version": "5.5.3", + "use_cache": true +} diff --git a/timecost/n11/realtabformer/rtf-n11-20260501_010320/rtf_checkpoints/checkpoint-47300/model.safetensors b/timecost/n11/realtabformer/rtf-n11-20260501_010320/rtf_checkpoints/checkpoint-47300/model.safetensors new file mode 100644 index 0000000000000000000000000000000000000000..99c72ad1517e9fa639da4d54c184440e0603f1bb --- /dev/null +++ b/timecost/n11/realtabformer/rtf-n11-20260501_010320/rtf_checkpoints/checkpoint-47300/model.safetensors @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:82d1e061b411c229b256850b631b087ccaaed595af7ec0015a95c8a8da9d497f +size 175102408 diff --git a/timecost/n11/realtabformer/rtf-n11-20260501_010320/rtf_checkpoints/checkpoint-47300/optimizer.pt b/timecost/n11/realtabformer/rtf-n11-20260501_010320/rtf_checkpoints/checkpoint-47300/optimizer.pt new file mode 100644 index 0000000000000000000000000000000000000000..406c4e3422df3cec04554829801feb0a4132266c --- /dev/null +++ b/timecost/n11/realtabformer/rtf-n11-20260501_010320/rtf_checkpoints/checkpoint-47300/optimizer.pt @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:75b9027692d7671d4c3f75b841ef1b49c665f087acba6864934aac8c2755ae07 +size 350253899 diff --git a/timecost/n11/realtabformer/rtf-n11-20260501_010320/rtf_checkpoints/checkpoint-47300/rng_state.pth b/timecost/n11/realtabformer/rtf-n11-20260501_010320/rtf_checkpoints/checkpoint-47300/rng_state.pth new file mode 100644 index 0000000000000000000000000000000000000000..1d72f7fd0ceb5909f2d54351bc50f41fe2008690 --- /dev/null +++ b/timecost/n11/realtabformer/rtf-n11-20260501_010320/rtf_checkpoints/checkpoint-47300/rng_state.pth @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:b5ab9a806cfd6f30e21a0aeeb345fca9b69269e828a4c0424e46ebab042c582b +size 14645 diff --git a/timecost/n11/realtabformer/rtf-n11-20260501_010320/rtf_checkpoints/checkpoint-47300/scaler.pt b/timecost/n11/realtabformer/rtf-n11-20260501_010320/rtf_checkpoints/checkpoint-47300/scaler.pt new file mode 100644 index 0000000000000000000000000000000000000000..4b6f65cabc8651f12902bb3ccb52f9c56975dc32 --- /dev/null +++ b/timecost/n11/realtabformer/rtf-n11-20260501_010320/rtf_checkpoints/checkpoint-47300/scaler.pt @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:90cd12f8f63b63d3ea25741ce705ff16d8f399e316c68011a20719977f9cb8b0 +size 1383 diff --git a/timecost/n11/realtabformer/rtf-n11-20260501_010320/rtf_checkpoints/checkpoint-47300/scheduler.pt b/timecost/n11/realtabformer/rtf-n11-20260501_010320/rtf_checkpoints/checkpoint-47300/scheduler.pt new file mode 100644 index 0000000000000000000000000000000000000000..05300174916501a27c6439ad6e39ef1d00f1da0a --- /dev/null +++ b/timecost/n11/realtabformer/rtf-n11-20260501_010320/rtf_checkpoints/checkpoint-47300/scheduler.pt @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:5912b65c3f546f4291b4952c78592e3043d8ab8d57169cfaa4368a903bcbbc46 +size 1465 diff --git a/timecost/n11/realtabformer/rtf-n11-20260501_010320/rtf_checkpoints/checkpoint-47300/trainer_state.json b/timecost/n11/realtabformer/rtf-n11-20260501_010320/rtf_checkpoints/checkpoint-47300/trainer_state.json new file mode 100644 index 0000000000000000000000000000000000000000..a65b4c5578736d3b7e7e045f9dcc6b9a1aa45685 --- /dev/null +++ b/timecost/n11/realtabformer/rtf-n11-20260501_010320/rtf_checkpoints/checkpoint-47300/trainer_state.json @@ -0,0 +1,3345 @@ +{ + "best_global_step": null, + "best_metric": null, + "best_model_checkpoint": null, + "epoch": 99.3701366982124, + "eval_steps": 100, + "global_step": 47300, + "is_hyper_param_search": false, + "is_local_process_zero": true, + "is_world_process_zero": true, + "log_history": [ + { + "epoch": 0.2103049421661409, + "grad_norm": 0.22972723841667175, + "learning_rate": 4.989600840336135e-05, + "loss": 2.8563604736328125, + "step": 100 + }, + { + "epoch": 0.4206098843322818, + "grad_norm": 0.20056591928005219, + "learning_rate": 4.9790966386554624e-05, + "loss": 1.7068206787109375, + "step": 200 + }, + { + "epoch": 0.6309148264984227, + "grad_norm": 0.1861766129732132, + "learning_rate": 4.9685924369747897e-05, + "loss": 1.6134432983398437, + "step": 300 + }, + { + "epoch": 0.8412197686645636, + "grad_norm": 0.1723501980304718, + "learning_rate": 4.9580882352941176e-05, + "loss": 1.5735923767089843, + "step": 400 + }, + { + "epoch": 1.0504731861198737, + "grad_norm": 0.17238108813762665, + "learning_rate": 4.9475840336134455e-05, + "loss": 1.5529734802246093, + "step": 500 + }, + { + "epoch": 1.2607781282860147, + "grad_norm": 0.17322759330272675, + "learning_rate": 4.9370798319327734e-05, + "loss": 1.536485137939453, + "step": 600 + }, + { + "epoch": 1.4710830704521556, + "grad_norm": 0.1677761971950531, + "learning_rate": 4.926575630252101e-05, + "loss": 1.5277809143066405, + "step": 700 + }, + { + "epoch": 1.6813880126182965, + "grad_norm": 0.1636463701725006, + "learning_rate": 4.9160714285714286e-05, + "loss": 1.5190211486816407, + "step": 800 + }, + { + "epoch": 1.8916929547844374, + "grad_norm": 0.16561312973499298, + "learning_rate": 4.9055672268907565e-05, + "loss": 1.51519287109375, + "step": 900 + }, + { + "epoch": 2.1009463722397475, + "grad_norm": 0.15477420389652252, + "learning_rate": 4.8950630252100845e-05, + "loss": 1.5094300842285155, + "step": 1000 + }, + { + "epoch": 2.3112513144058884, + "grad_norm": 0.16169467568397522, + "learning_rate": 4.8845588235294124e-05, + "loss": 1.503891143798828, + "step": 1100 + }, + { + "epoch": 2.5215562565720293, + "grad_norm": 0.1625037044286728, + "learning_rate": 4.8740546218487396e-05, + "loss": 1.5003668212890624, + "step": 1200 + }, + { + "epoch": 2.7318611987381702, + "grad_norm": 0.15850616991519928, + "learning_rate": 4.8635504201680676e-05, + "loss": 1.5004425048828125, + "step": 1300 + }, + { + "epoch": 2.942166140904311, + "grad_norm": 0.15703575313091278, + "learning_rate": 4.8530462184873955e-05, + "loss": 1.4983340454101564, + "step": 1400 + }, + { + "epoch": 3.1514195583596214, + "grad_norm": 0.16104279458522797, + "learning_rate": 4.8425420168067234e-05, + "loss": 1.4921080017089843, + "step": 1500 + }, + { + "epoch": 3.3617245005257623, + "grad_norm": 0.15719465911388397, + "learning_rate": 4.8320378151260507e-05, + "loss": 1.4903582763671874, + "step": 1600 + }, + { + "epoch": 3.5720294426919033, + "grad_norm": 0.15651755034923553, + "learning_rate": 4.821533613445378e-05, + "loss": 1.4904457092285157, + "step": 1700 + }, + { + "epoch": 3.782334384858044, + "grad_norm": 0.14600972831249237, + "learning_rate": 4.811029411764706e-05, + "loss": 1.4897219848632812, + "step": 1800 + }, + { + "epoch": 3.992639327024185, + "grad_norm": 0.15000982582569122, + "learning_rate": 4.800525210084034e-05, + "loss": 1.4866799926757812, + "step": 1900 + }, + { + "epoch": 4.201892744479495, + "grad_norm": 0.1467936933040619, + "learning_rate": 4.790021008403362e-05, + "loss": 1.48007080078125, + "step": 2000 + }, + { + "epoch": 4.412197686645636, + "grad_norm": 0.1541317105293274, + "learning_rate": 4.779516806722689e-05, + "loss": 1.48170166015625, + "step": 2100 + }, + { + "epoch": 4.622502628811777, + "grad_norm": 0.15136213600635529, + "learning_rate": 4.769012605042017e-05, + "loss": 1.4820193481445312, + "step": 2200 + }, + { + "epoch": 4.832807570977918, + "grad_norm": 0.15268521010875702, + "learning_rate": 4.758508403361345e-05, + "loss": 1.4826155090332032, + "step": 2300 + }, + { + "epoch": 5.042060988433228, + "grad_norm": 0.1507953554391861, + "learning_rate": 4.748004201680673e-05, + "loss": 1.4825518798828126, + "step": 2400 + }, + { + "epoch": 5.252365930599369, + "grad_norm": 0.15759222209453583, + "learning_rate": 4.7375e-05, + "loss": 1.4742916870117186, + "step": 2500 + }, + { + "epoch": 5.46267087276551, + "grad_norm": 0.1464644968509674, + "learning_rate": 4.726995798319328e-05, + "loss": 1.47645751953125, + "step": 2600 + }, + { + "epoch": 5.672975814931651, + "grad_norm": 0.1496453732252121, + "learning_rate": 4.716491596638656e-05, + "loss": 1.4782669067382812, + "step": 2700 + }, + { + "epoch": 5.883280757097792, + "grad_norm": 0.15732301771640778, + "learning_rate": 4.705987394957984e-05, + "loss": 1.474007110595703, + "step": 2800 + }, + { + "epoch": 6.092534174553102, + "grad_norm": 0.1535627543926239, + "learning_rate": 4.6954831932773117e-05, + "loss": 1.4723405456542968, + "step": 2900 + }, + { + "epoch": 6.302839116719243, + "grad_norm": 0.15365540981292725, + "learning_rate": 4.684978991596639e-05, + "loss": 1.470570068359375, + "step": 3000 + }, + { + "epoch": 6.513144058885384, + "grad_norm": 0.15696321427822113, + "learning_rate": 4.674474789915967e-05, + "loss": 1.4713912963867188, + "step": 3100 + }, + { + "epoch": 6.723449001051525, + "grad_norm": 0.1542283147573471, + "learning_rate": 4.663970588235294e-05, + "loss": 1.4717630004882813, + "step": 3200 + }, + { + "epoch": 6.933753943217665, + "grad_norm": 0.14150017499923706, + "learning_rate": 4.653466386554622e-05, + "loss": 1.4702410888671875, + "step": 3300 + }, + { + "epoch": 7.143007360672976, + "grad_norm": 0.1593707650899887, + "learning_rate": 4.64296218487395e-05, + "loss": 1.4674795532226563, + "step": 3400 + }, + { + "epoch": 7.353312302839116, + "grad_norm": 0.14085018634796143, + "learning_rate": 4.632457983193277e-05, + "loss": 1.4630509948730468, + "step": 3500 + }, + { + "epoch": 7.563617245005258, + "grad_norm": 0.15045367181301117, + "learning_rate": 4.621953781512605e-05, + "loss": 1.464947509765625, + "step": 3600 + }, + { + "epoch": 7.773922187171398, + "grad_norm": 0.1627761274576187, + "learning_rate": 4.611449579831933e-05, + "loss": 1.4676199340820313, + "step": 3700 + }, + { + "epoch": 7.9842271293375395, + "grad_norm": 0.15296733379364014, + "learning_rate": 4.600945378151261e-05, + "loss": 1.464564208984375, + "step": 3800 + }, + { + "epoch": 8.19348054679285, + "grad_norm": 0.15292306244373322, + "learning_rate": 4.590441176470588e-05, + "loss": 1.460281982421875, + "step": 3900 + }, + { + "epoch": 8.40378548895899, + "grad_norm": 0.14858974516391754, + "learning_rate": 4.579936974789916e-05, + "loss": 1.4601573181152343, + "step": 4000 + }, + { + "epoch": 8.614090431125131, + "grad_norm": 0.1559685617685318, + "learning_rate": 4.569432773109244e-05, + "loss": 1.459988555908203, + "step": 4100 + }, + { + "epoch": 8.824395373291273, + "grad_norm": 0.16048291325569153, + "learning_rate": 4.558928571428572e-05, + "loss": 1.4614971923828124, + "step": 4200 + }, + { + "epoch": 9.033648790746582, + "grad_norm": 0.15471497178077698, + "learning_rate": 4.548424369747899e-05, + "loss": 1.4605735778808593, + "step": 4300 + }, + { + "epoch": 9.243953732912724, + "grad_norm": 0.14675338566303253, + "learning_rate": 4.537920168067227e-05, + "loss": 1.4529206848144531, + "step": 4400 + }, + { + "epoch": 9.454258675078865, + "grad_norm": 0.15218420326709747, + "learning_rate": 4.527415966386555e-05, + "loss": 1.4555152893066405, + "step": 4500 + }, + { + "epoch": 9.664563617245005, + "grad_norm": 0.15305759012699127, + "learning_rate": 4.516911764705883e-05, + "loss": 1.4550628662109375, + "step": 4600 + }, + { + "epoch": 9.874868559411146, + "grad_norm": 0.14932408928871155, + "learning_rate": 4.50640756302521e-05, + "loss": 1.4576924133300782, + "step": 4700 + }, + { + "epoch": 10.084121976866456, + "grad_norm": 0.15317517518997192, + "learning_rate": 4.4959033613445375e-05, + "loss": 1.45219482421875, + "step": 4800 + }, + { + "epoch": 10.294426919032597, + "grad_norm": 0.14954303205013275, + "learning_rate": 4.4853991596638654e-05, + "loss": 1.4481625366210937, + "step": 4900 + }, + { + "epoch": 10.504731861198739, + "grad_norm": 0.1534873992204666, + "learning_rate": 4.4748949579831934e-05, + "loss": 1.4501405334472657, + "step": 5000 + }, + { + "epoch": 10.715036803364878, + "grad_norm": 0.1542547196149826, + "learning_rate": 4.464390756302521e-05, + "loss": 1.452711181640625, + "step": 5100 + }, + { + "epoch": 10.92534174553102, + "grad_norm": 0.15033429861068726, + "learning_rate": 4.453886554621849e-05, + "loss": 1.4518144226074219, + "step": 5200 + }, + { + "epoch": 11.13459516298633, + "grad_norm": 0.16419348120689392, + "learning_rate": 4.4433823529411765e-05, + "loss": 1.4447087097167968, + "step": 5300 + }, + { + "epoch": 11.34490010515247, + "grad_norm": 0.15558737516403198, + "learning_rate": 4.4328781512605044e-05, + "loss": 1.4432438659667968, + "step": 5400 + }, + { + "epoch": 11.555205047318612, + "grad_norm": 0.16111871600151062, + "learning_rate": 4.422373949579832e-05, + "loss": 1.44447509765625, + "step": 5500 + }, + { + "epoch": 11.765509989484753, + "grad_norm": 0.15655963122844696, + "learning_rate": 4.41186974789916e-05, + "loss": 1.446072998046875, + "step": 5600 + }, + { + "epoch": 11.975814931650893, + "grad_norm": 0.1640811264514923, + "learning_rate": 4.4013655462184875e-05, + "loss": 1.4470193481445313, + "step": 5700 + }, + { + "epoch": 12.185068349106205, + "grad_norm": 0.16302675008773804, + "learning_rate": 4.3908613445378154e-05, + "loss": 1.4352632141113282, + "step": 5800 + }, + { + "epoch": 12.395373291272344, + "grad_norm": 0.16527259349822998, + "learning_rate": 4.380357142857143e-05, + "loss": 1.4378224182128907, + "step": 5900 + }, + { + "epoch": 12.605678233438486, + "grad_norm": 0.15840137004852295, + "learning_rate": 4.369852941176471e-05, + "loss": 1.438340301513672, + "step": 6000 + }, + { + "epoch": 12.815983175604627, + "grad_norm": 0.16105377674102783, + "learning_rate": 4.3593487394957985e-05, + "loss": 1.4395623779296876, + "step": 6100 + }, + { + "epoch": 13.025236593059937, + "grad_norm": 0.1645898073911667, + "learning_rate": 4.348844537815126e-05, + "loss": 1.4419912719726562, + "step": 6200 + }, + { + "epoch": 13.235541535226078, + "grad_norm": 0.16387709975242615, + "learning_rate": 4.338340336134454e-05, + "loss": 1.4292103576660156, + "step": 6300 + }, + { + "epoch": 13.44584647739222, + "grad_norm": 0.16231203079223633, + "learning_rate": 4.3278361344537816e-05, + "loss": 1.4302072143554687, + "step": 6400 + }, + { + "epoch": 13.656151419558359, + "grad_norm": 0.17272767424583435, + "learning_rate": 4.3173319327731095e-05, + "loss": 1.4360617065429688, + "step": 6500 + }, + { + "epoch": 13.8664563617245, + "grad_norm": 0.16650696098804474, + "learning_rate": 4.306827731092437e-05, + "loss": 1.43187744140625, + "step": 6600 + }, + { + "epoch": 14.07570977917981, + "grad_norm": 0.17131085693836212, + "learning_rate": 4.296323529411765e-05, + "loss": 1.428362579345703, + "step": 6700 + }, + { + "epoch": 14.286014721345952, + "grad_norm": 0.1767681986093521, + "learning_rate": 4.2858193277310926e-05, + "loss": 1.4247616577148436, + "step": 6800 + }, + { + "epoch": 14.496319663512093, + "grad_norm": 0.17670001089572906, + "learning_rate": 4.2753151260504206e-05, + "loss": 1.4254454040527345, + "step": 6900 + }, + { + "epoch": 14.706624605678233, + "grad_norm": 0.1740790754556656, + "learning_rate": 4.2648109243697485e-05, + "loss": 1.4258729553222655, + "step": 7000 + }, + { + "epoch": 14.916929547844374, + "grad_norm": 0.1759176403284073, + "learning_rate": 4.254306722689076e-05, + "loss": 1.429442138671875, + "step": 7100 + }, + { + "epoch": 15.126182965299684, + "grad_norm": 0.17811505496501923, + "learning_rate": 4.2438025210084037e-05, + "loss": 1.4193470764160157, + "step": 7200 + }, + { + "epoch": 15.336487907465825, + "grad_norm": 0.1877354234457016, + "learning_rate": 4.2332983193277316e-05, + "loss": 1.4145277404785157, + "step": 7300 + }, + { + "epoch": 15.546792849631967, + "grad_norm": 0.18199266493320465, + "learning_rate": 4.2227941176470595e-05, + "loss": 1.4196495056152343, + "step": 7400 + }, + { + "epoch": 15.757097791798108, + "grad_norm": 0.18197669088840485, + "learning_rate": 4.212289915966387e-05, + "loss": 1.418301544189453, + "step": 7500 + }, + { + "epoch": 15.967402733964247, + "grad_norm": 0.1789412796497345, + "learning_rate": 4.201785714285714e-05, + "loss": 1.4207553100585937, + "step": 7600 + }, + { + "epoch": 16.176656151419557, + "grad_norm": 0.19073587656021118, + "learning_rate": 4.191281512605042e-05, + "loss": 1.405756072998047, + "step": 7700 + }, + { + "epoch": 16.3869610935857, + "grad_norm": 0.20197375118732452, + "learning_rate": 4.18077731092437e-05, + "loss": 1.4052299499511718, + "step": 7800 + }, + { + "epoch": 16.59726603575184, + "grad_norm": 0.19041137397289276, + "learning_rate": 4.170273109243698e-05, + "loss": 1.4102354431152344, + "step": 7900 + }, + { + "epoch": 16.80757097791798, + "grad_norm": 0.18918046355247498, + "learning_rate": 4.159768907563025e-05, + "loss": 1.4105937194824218, + "step": 8000 + }, + { + "epoch": 17.01682439537329, + "grad_norm": 0.20001663267612457, + "learning_rate": 4.149264705882353e-05, + "loss": 1.4125469970703124, + "step": 8100 + }, + { + "epoch": 17.22712933753943, + "grad_norm": 0.20373570919036865, + "learning_rate": 4.138760504201681e-05, + "loss": 1.3912005615234375, + "step": 8200 + }, + { + "epoch": 17.437434279705574, + "grad_norm": 0.21228203177452087, + "learning_rate": 4.128256302521009e-05, + "loss": 1.400099334716797, + "step": 8300 + }, + { + "epoch": 17.647739221871714, + "grad_norm": 0.19748076796531677, + "learning_rate": 4.117752100840336e-05, + "loss": 1.3983584594726564, + "step": 8400 + }, + { + "epoch": 17.858044164037857, + "grad_norm": 0.19849108159542084, + "learning_rate": 4.107247899159664e-05, + "loss": 1.4034251403808593, + "step": 8500 + }, + { + "epoch": 18.067297581493165, + "grad_norm": 0.20575450360774994, + "learning_rate": 4.096743697478992e-05, + "loss": 1.3967425537109375, + "step": 8600 + }, + { + "epoch": 18.277602523659304, + "grad_norm": 0.21221311390399933, + "learning_rate": 4.08623949579832e-05, + "loss": 1.3828977966308593, + "step": 8700 + }, + { + "epoch": 18.487907465825447, + "grad_norm": 0.21134966611862183, + "learning_rate": 4.075735294117648e-05, + "loss": 1.3854733276367188, + "step": 8800 + }, + { + "epoch": 18.698212407991587, + "grad_norm": 0.22016377747058868, + "learning_rate": 4.065231092436975e-05, + "loss": 1.3901968383789063, + "step": 8900 + }, + { + "epoch": 18.90851735015773, + "grad_norm": 0.21417804062366486, + "learning_rate": 4.054726890756303e-05, + "loss": 1.393634033203125, + "step": 9000 + }, + { + "epoch": 19.117770767613038, + "grad_norm": 0.22256560623645782, + "learning_rate": 4.04422268907563e-05, + "loss": 1.3783042907714844, + "step": 9100 + }, + { + "epoch": 19.32807570977918, + "grad_norm": 0.22738981246948242, + "learning_rate": 4.033718487394958e-05, + "loss": 1.370293426513672, + "step": 9200 + }, + { + "epoch": 19.53838065194532, + "grad_norm": 0.22241266071796417, + "learning_rate": 4.023214285714286e-05, + "loss": 1.3737275695800781, + "step": 9300 + }, + { + "epoch": 19.74868559411146, + "grad_norm": 0.23391330242156982, + "learning_rate": 4.012710084033613e-05, + "loss": 1.377355194091797, + "step": 9400 + }, + { + "epoch": 19.958990536277604, + "grad_norm": 0.22519543766975403, + "learning_rate": 4.002205882352941e-05, + "loss": 1.3812960815429687, + "step": 9500 + }, + { + "epoch": 20.16824395373291, + "grad_norm": 0.24074196815490723, + "learning_rate": 3.991701680672269e-05, + "loss": 1.3570118713378907, + "step": 9600 + }, + { + "epoch": 20.378548895899055, + "grad_norm": 0.24606694281101227, + "learning_rate": 3.981197478991597e-05, + "loss": 1.3554267883300781, + "step": 9700 + }, + { + "epoch": 20.588853838065194, + "grad_norm": 0.23913830518722534, + "learning_rate": 3.970693277310924e-05, + "loss": 1.3621504211425781, + "step": 9800 + }, + { + "epoch": 20.799158780231334, + "grad_norm": 0.2383037805557251, + "learning_rate": 3.960189075630252e-05, + "loss": 1.3660731506347656, + "step": 9900 + }, + { + "epoch": 21.008412197686646, + "grad_norm": 0.241073340177536, + "learning_rate": 3.94968487394958e-05, + "loss": 1.3653842163085939, + "step": 10000 + }, + { + "epoch": 21.218717139852785, + "grad_norm": 0.25740981101989746, + "learning_rate": 3.939180672268908e-05, + "loss": 1.3331489562988281, + "step": 10100 + }, + { + "epoch": 21.42902208201893, + "grad_norm": 0.25830078125, + "learning_rate": 3.928676470588235e-05, + "loss": 1.3397677612304688, + "step": 10200 + }, + { + "epoch": 21.639327024185068, + "grad_norm": 0.26326829195022583, + "learning_rate": 3.918172268907563e-05, + "loss": 1.3485836791992187, + "step": 10300 + }, + { + "epoch": 21.84963196635121, + "grad_norm": 0.26259171962738037, + "learning_rate": 3.907668067226891e-05, + "loss": 1.3472573852539063, + "step": 10400 + }, + { + "epoch": 22.05888538380652, + "grad_norm": 0.27395525574684143, + "learning_rate": 3.897163865546219e-05, + "loss": 1.3426994323730468, + "step": 10500 + }, + { + "epoch": 22.26919032597266, + "grad_norm": 0.2820175290107727, + "learning_rate": 3.8866596638655463e-05, + "loss": 1.3179571533203125, + "step": 10600 + }, + { + "epoch": 22.479495268138802, + "grad_norm": 0.2815999984741211, + "learning_rate": 3.8761554621848736e-05, + "loss": 1.3242898559570313, + "step": 10700 + }, + { + "epoch": 22.68980021030494, + "grad_norm": 0.2788920998573303, + "learning_rate": 3.8656512605042015e-05, + "loss": 1.328133087158203, + "step": 10800 + }, + { + "epoch": 22.900105152471085, + "grad_norm": 0.2880179286003113, + "learning_rate": 3.8551470588235294e-05, + "loss": 1.3323233032226562, + "step": 10900 + }, + { + "epoch": 23.109358569926393, + "grad_norm": 0.29323825240135193, + "learning_rate": 3.8446428571428574e-05, + "loss": 1.3124215698242188, + "step": 11000 + }, + { + "epoch": 23.319663512092536, + "grad_norm": 0.3037724196910858, + "learning_rate": 3.834138655462185e-05, + "loss": 1.300673370361328, + "step": 11100 + }, + { + "epoch": 23.529968454258675, + "grad_norm": 0.3019108772277832, + "learning_rate": 3.8236344537815125e-05, + "loss": 1.3033621215820312, + "step": 11200 + }, + { + "epoch": 23.740273396424815, + "grad_norm": 0.3141040503978729, + "learning_rate": 3.8131302521008405e-05, + "loss": 1.3118415832519532, + "step": 11300 + }, + { + "epoch": 23.950578338590958, + "grad_norm": 0.305362731218338, + "learning_rate": 3.8026260504201684e-05, + "loss": 1.3120425415039063, + "step": 11400 + }, + { + "epoch": 24.159831756046266, + "grad_norm": 0.3149303197860718, + "learning_rate": 3.792121848739496e-05, + "loss": 1.281750946044922, + "step": 11500 + }, + { + "epoch": 24.37013669821241, + "grad_norm": 0.31983524560928345, + "learning_rate": 3.7816176470588236e-05, + "loss": 1.2786111450195312, + "step": 11600 + }, + { + "epoch": 24.58044164037855, + "grad_norm": 0.32351240515708923, + "learning_rate": 3.7711134453781515e-05, + "loss": 1.284888916015625, + "step": 11700 + }, + { + "epoch": 24.79074658254469, + "grad_norm": 0.3239966034889221, + "learning_rate": 3.7606092436974794e-05, + "loss": 1.2899176025390624, + "step": 11800 + }, + { + "epoch": 25.0, + "grad_norm": 0.49487531185150146, + "learning_rate": 3.7501050420168073e-05, + "loss": 1.2903105163574218, + "step": 11900 + }, + { + "epoch": 25.21030494216614, + "grad_norm": 0.343091756105423, + "learning_rate": 3.7396008403361346e-05, + "loss": 1.24728271484375, + "step": 12000 + }, + { + "epoch": 25.420609884332283, + "grad_norm": 0.3502146899700165, + "learning_rate": 3.729096638655462e-05, + "loss": 1.2573788452148438, + "step": 12100 + }, + { + "epoch": 25.630914826498422, + "grad_norm": 0.34780803322792053, + "learning_rate": 3.71859243697479e-05, + "loss": 1.259660186767578, + "step": 12200 + }, + { + "epoch": 25.841219768664562, + "grad_norm": 0.3617474436759949, + "learning_rate": 3.708088235294118e-05, + "loss": 1.267321548461914, + "step": 12300 + }, + { + "epoch": 26.050473186119874, + "grad_norm": 0.36151477694511414, + "learning_rate": 3.6975840336134456e-05, + "loss": 1.2569818878173828, + "step": 12400 + }, + { + "epoch": 26.260778128286013, + "grad_norm": 0.3706369400024414, + "learning_rate": 3.687079831932773e-05, + "loss": 1.2217762756347657, + "step": 12500 + }, + { + "epoch": 26.471083070452156, + "grad_norm": 0.36876797676086426, + "learning_rate": 3.676575630252101e-05, + "loss": 1.2311412048339845, + "step": 12600 + }, + { + "epoch": 26.681388012618296, + "grad_norm": 0.37329521775245667, + "learning_rate": 3.666071428571429e-05, + "loss": 1.23805908203125, + "step": 12700 + }, + { + "epoch": 26.89169295478444, + "grad_norm": 0.3803170919418335, + "learning_rate": 3.6555672268907566e-05, + "loss": 1.2423350524902343, + "step": 12800 + }, + { + "epoch": 27.100946372239747, + "grad_norm": 0.3833712637424469, + "learning_rate": 3.6450630252100846e-05, + "loss": 1.222099609375, + "step": 12900 + }, + { + "epoch": 27.31125131440589, + "grad_norm": 0.3987831771373749, + "learning_rate": 3.634558823529412e-05, + "loss": 1.1973797607421874, + "step": 13000 + }, + { + "epoch": 27.52155625657203, + "grad_norm": 0.39121338725090027, + "learning_rate": 3.62405462184874e-05, + "loss": 1.206004409790039, + "step": 13100 + }, + { + "epoch": 27.73186119873817, + "grad_norm": 0.4020472764968872, + "learning_rate": 3.613550420168068e-05, + "loss": 1.2129373168945312, + "step": 13200 + }, + { + "epoch": 27.942166140904312, + "grad_norm": 0.4015159606933594, + "learning_rate": 3.6030462184873956e-05, + "loss": 1.2179686737060547, + "step": 13300 + }, + { + "epoch": 28.15141955835962, + "grad_norm": 0.3998790681362152, + "learning_rate": 3.592542016806723e-05, + "loss": 1.1833483123779296, + "step": 13400 + }, + { + "epoch": 28.361724500525764, + "grad_norm": 0.4190026819705963, + "learning_rate": 3.582037815126051e-05, + "loss": 1.1737586975097656, + "step": 13500 + }, + { + "epoch": 28.572029442691903, + "grad_norm": 0.4131736159324646, + "learning_rate": 3.571533613445378e-05, + "loss": 1.1806912231445312, + "step": 13600 + }, + { + "epoch": 28.782334384858043, + "grad_norm": 0.4250866174697876, + "learning_rate": 3.561029411764706e-05, + "loss": 1.1913446044921876, + "step": 13700 + }, + { + "epoch": 28.992639327024186, + "grad_norm": 0.4264129400253296, + "learning_rate": 3.550525210084034e-05, + "loss": 1.1878318786621094, + "step": 13800 + }, + { + "epoch": 29.201892744479494, + "grad_norm": 0.43633338809013367, + "learning_rate": 3.540021008403361e-05, + "loss": 1.1386358642578125, + "step": 13900 + }, + { + "epoch": 29.412197686645637, + "grad_norm": 0.4486881494522095, + "learning_rate": 3.529516806722689e-05, + "loss": 1.1477174377441406, + "step": 14000 + }, + { + "epoch": 29.622502628811777, + "grad_norm": 0.4420314133167267, + "learning_rate": 3.519012605042017e-05, + "loss": 1.1530896759033202, + "step": 14100 + }, + { + "epoch": 29.832807570977916, + "grad_norm": 0.4598003327846527, + "learning_rate": 3.508508403361345e-05, + "loss": 1.16252197265625, + "step": 14200 + }, + { + "epoch": 30.042060988433228, + "grad_norm": 0.44520533084869385, + "learning_rate": 3.498004201680672e-05, + "loss": 1.1551103973388672, + "step": 14300 + }, + { + "epoch": 30.252365930599368, + "grad_norm": 0.45871588587760925, + "learning_rate": 3.4875e-05, + "loss": 1.107753448486328, + "step": 14400 + }, + { + "epoch": 30.46267087276551, + "grad_norm": 0.46063199639320374, + "learning_rate": 3.476995798319328e-05, + "loss": 1.1182296752929688, + "step": 14500 + }, + { + "epoch": 30.67297581493165, + "grad_norm": 0.4760204553604126, + "learning_rate": 3.466491596638656e-05, + "loss": 1.129236373901367, + "step": 14600 + }, + { + "epoch": 30.883280757097793, + "grad_norm": 0.47249314188957214, + "learning_rate": 3.455987394957984e-05, + "loss": 1.1352229309082031, + "step": 14700 + }, + { + "epoch": 31.0925341745531, + "grad_norm": 0.4624006450176239, + "learning_rate": 3.445483193277311e-05, + "loss": 1.1082867431640624, + "step": 14800 + }, + { + "epoch": 31.302839116719245, + "grad_norm": 0.4787958264350891, + "learning_rate": 3.434978991596639e-05, + "loss": 1.0818411254882812, + "step": 14900 + }, + { + "epoch": 31.513144058885384, + "grad_norm": 0.4875246286392212, + "learning_rate": 3.424474789915967e-05, + "loss": 1.092553939819336, + "step": 15000 + }, + { + "epoch": 31.723449001051524, + "grad_norm": 0.48742467164993286, + "learning_rate": 3.413970588235294e-05, + "loss": 1.1002989959716798, + "step": 15100 + }, + { + "epoch": 31.933753943217667, + "grad_norm": 0.5014126896858215, + "learning_rate": 3.403466386554622e-05, + "loss": 1.1067331695556641, + "step": 15200 + }, + { + "epoch": 32.143007360672975, + "grad_norm": 0.48793110251426697, + "learning_rate": 3.3929621848739494e-05, + "loss": 1.0649752807617188, + "step": 15300 + }, + { + "epoch": 32.353312302839115, + "grad_norm": 0.5064884424209595, + "learning_rate": 3.382457983193277e-05, + "loss": 1.0489683532714844, + "step": 15400 + }, + { + "epoch": 32.56361724500526, + "grad_norm": 0.5118729472160339, + "learning_rate": 3.371953781512605e-05, + "loss": 1.0648185729980468, + "step": 15500 + }, + { + "epoch": 32.7739221871714, + "grad_norm": 0.5236688852310181, + "learning_rate": 3.361449579831933e-05, + "loss": 1.0743647766113282, + "step": 15600 + }, + { + "epoch": 32.98422712933754, + "grad_norm": 0.5397860407829285, + "learning_rate": 3.3509453781512604e-05, + "loss": 1.080048828125, + "step": 15700 + }, + { + "epoch": 33.19348054679285, + "grad_norm": 0.5270755290985107, + "learning_rate": 3.340441176470588e-05, + "loss": 1.0228548431396485, + "step": 15800 + }, + { + "epoch": 33.40378548895899, + "grad_norm": 0.5429406762123108, + "learning_rate": 3.329936974789916e-05, + "loss": 1.028949966430664, + "step": 15900 + }, + { + "epoch": 33.614090431125135, + "grad_norm": 0.5323997735977173, + "learning_rate": 3.319432773109244e-05, + "loss": 1.037523956298828, + "step": 16000 + }, + { + "epoch": 33.824395373291274, + "grad_norm": 0.5385149717330933, + "learning_rate": 3.3090336134453784e-05, + "loss": 1.0431160736083984, + "step": 16100 + }, + { + "epoch": 34.03364879074658, + "grad_norm": 0.5089665651321411, + "learning_rate": 3.2986344537815127e-05, + "loss": 1.0349723815917968, + "step": 16200 + }, + { + "epoch": 34.24395373291272, + "grad_norm": 0.5455434918403625, + "learning_rate": 3.2881302521008406e-05, + "loss": 0.988803482055664, + "step": 16300 + }, + { + "epoch": 34.45425867507886, + "grad_norm": 0.5569856762886047, + "learning_rate": 3.2776260504201685e-05, + "loss": 1.0031266021728515, + "step": 16400 + }, + { + "epoch": 34.66456361724501, + "grad_norm": 0.5644022226333618, + "learning_rate": 3.2671218487394964e-05, + "loss": 1.0083402252197267, + "step": 16500 + }, + { + "epoch": 34.87486855941115, + "grad_norm": 0.5685406923294067, + "learning_rate": 3.256617647058824e-05, + "loss": 1.0177439117431641, + "step": 16600 + }, + { + "epoch": 35.084121976866456, + "grad_norm": 0.543632447719574, + "learning_rate": 3.2461134453781516e-05, + "loss": 0.9930455780029297, + "step": 16700 + }, + { + "epoch": 35.294426919032595, + "grad_norm": 0.5612316727638245, + "learning_rate": 3.2356092436974795e-05, + "loss": 0.9650897216796875, + "step": 16800 + }, + { + "epoch": 35.504731861198735, + "grad_norm": 0.5759446024894714, + "learning_rate": 3.225105042016807e-05, + "loss": 0.973653564453125, + "step": 16900 + }, + { + "epoch": 35.71503680336488, + "grad_norm": 0.574255645275116, + "learning_rate": 3.214600840336135e-05, + "loss": 0.981424560546875, + "step": 17000 + }, + { + "epoch": 35.92534174553102, + "grad_norm": 0.5851606726646423, + "learning_rate": 3.204096638655462e-05, + "loss": 0.991123046875, + "step": 17100 + }, + { + "epoch": 36.13459516298633, + "grad_norm": 0.5589666366577148, + "learning_rate": 3.19359243697479e-05, + "loss": 0.9481909942626953, + "step": 17200 + }, + { + "epoch": 36.34490010515247, + "grad_norm": 0.5968824625015259, + "learning_rate": 3.183088235294118e-05, + "loss": 0.9365898895263672, + "step": 17300 + }, + { + "epoch": 36.55520504731861, + "grad_norm": 0.5998508930206299, + "learning_rate": 3.172584033613446e-05, + "loss": 0.9492893218994141, + "step": 17400 + }, + { + "epoch": 36.765509989484755, + "grad_norm": 0.6060558557510376, + "learning_rate": 3.162079831932773e-05, + "loss": 0.9547823333740234, + "step": 17500 + }, + { + "epoch": 36.975814931650895, + "grad_norm": 0.589341402053833, + "learning_rate": 3.151575630252101e-05, + "loss": 0.9626276397705078, + "step": 17600 + }, + { + "epoch": 37.1850683491062, + "grad_norm": 0.5891321897506714, + "learning_rate": 3.141071428571429e-05, + "loss": 0.9065424346923828, + "step": 17700 + }, + { + "epoch": 37.39537329127234, + "grad_norm": 0.5880729556083679, + "learning_rate": 3.130567226890757e-05, + "loss": 0.9107749938964844, + "step": 17800 + }, + { + "epoch": 37.60567823343849, + "grad_norm": 0.6077774167060852, + "learning_rate": 3.120063025210084e-05, + "loss": 0.9193459320068359, + "step": 17900 + }, + { + "epoch": 37.81598317560463, + "grad_norm": 0.6189863681793213, + "learning_rate": 3.109558823529412e-05, + "loss": 0.9286084747314454, + "step": 18000 + }, + { + "epoch": 38.02523659305994, + "grad_norm": 0.5724475383758545, + "learning_rate": 3.09905462184874e-05, + "loss": 0.9282203674316406, + "step": 18100 + }, + { + "epoch": 38.235541535226076, + "grad_norm": 0.5952550768852234, + "learning_rate": 3.088550420168068e-05, + "loss": 0.8734053039550781, + "step": 18200 + }, + { + "epoch": 38.445846477392216, + "grad_norm": 0.5967536568641663, + "learning_rate": 3.078046218487395e-05, + "loss": 0.886033935546875, + "step": 18300 + }, + { + "epoch": 38.65615141955836, + "grad_norm": 0.6298649311065674, + "learning_rate": 3.067542016806722e-05, + "loss": 0.8977913665771484, + "step": 18400 + }, + { + "epoch": 38.8664563617245, + "grad_norm": 0.6457948684692383, + "learning_rate": 3.05703781512605e-05, + "loss": 0.9048082733154297, + "step": 18500 + }, + { + "epoch": 39.07570977917981, + "grad_norm": 0.6172012090682983, + "learning_rate": 3.046533613445378e-05, + "loss": 0.8857656860351563, + "step": 18600 + }, + { + "epoch": 39.28601472134595, + "grad_norm": 0.5979504585266113, + "learning_rate": 3.036029411764706e-05, + "loss": 0.8502845001220704, + "step": 18700 + }, + { + "epoch": 39.49631966351209, + "grad_norm": 0.6284430623054504, + "learning_rate": 3.0255252100840336e-05, + "loss": 0.8602873229980469, + "step": 18800 + }, + { + "epoch": 39.706624605678236, + "grad_norm": 0.6330845355987549, + "learning_rate": 3.0150210084033616e-05, + "loss": 0.8690576934814453, + "step": 18900 + }, + { + "epoch": 39.916929547844376, + "grad_norm": 0.6465399861335754, + "learning_rate": 3.004516806722689e-05, + "loss": 0.8787310791015625, + "step": 19000 + }, + { + "epoch": 40.126182965299684, + "grad_norm": 0.6255329251289368, + "learning_rate": 2.994117647058824e-05, + "loss": 0.84158203125, + "step": 19100 + }, + { + "epoch": 40.33648790746582, + "grad_norm": 0.6304967999458313, + "learning_rate": 2.983613445378151e-05, + "loss": 0.8283135223388672, + "step": 19200 + }, + { + "epoch": 40.54679284963196, + "grad_norm": 0.6366279125213623, + "learning_rate": 2.973109243697479e-05, + "loss": 0.8385968780517579, + "step": 19300 + }, + { + "epoch": 40.75709779179811, + "grad_norm": 0.6407002210617065, + "learning_rate": 2.9626050420168065e-05, + "loss": 0.8465004730224609, + "step": 19400 + }, + { + "epoch": 40.96740273396425, + "grad_norm": 0.6582015156745911, + "learning_rate": 2.9521008403361344e-05, + "loss": 0.8523696136474609, + "step": 19500 + }, + { + "epoch": 41.17665615141956, + "grad_norm": 0.6326037645339966, + "learning_rate": 2.9415966386554624e-05, + "loss": 0.8025535583496094, + "step": 19600 + }, + { + "epoch": 41.3869610935857, + "grad_norm": 0.631605863571167, + "learning_rate": 2.93109243697479e-05, + "loss": 0.8077165222167969, + "step": 19700 + }, + { + "epoch": 41.597266035751844, + "grad_norm": 0.6400684118270874, + "learning_rate": 2.920588235294118e-05, + "loss": 0.8162235260009766, + "step": 19800 + }, + { + "epoch": 41.80757097791798, + "grad_norm": 0.6499695181846619, + "learning_rate": 2.9100840336134455e-05, + "loss": 0.8243218231201171, + "step": 19900 + }, + { + "epoch": 42.01682439537329, + "grad_norm": 0.6392955183982849, + "learning_rate": 2.8995798319327734e-05, + "loss": 0.8244134521484375, + "step": 20000 + }, + { + "epoch": 42.22712933753943, + "grad_norm": 0.6429536938667297, + "learning_rate": 2.889075630252101e-05, + "loss": 0.7711881256103515, + "step": 20100 + }, + { + "epoch": 42.43743427970557, + "grad_norm": 0.6592206358909607, + "learning_rate": 2.878571428571429e-05, + "loss": 0.7841451263427734, + "step": 20200 + }, + { + "epoch": 42.64773922187172, + "grad_norm": 0.6881083846092224, + "learning_rate": 2.8680672268907565e-05, + "loss": 0.792880859375, + "step": 20300 + }, + { + "epoch": 42.85804416403786, + "grad_norm": 0.6662302017211914, + "learning_rate": 2.8575630252100844e-05, + "loss": 0.8001659393310547, + "step": 20400 + }, + { + "epoch": 43.067297581493165, + "grad_norm": 0.6177626252174377, + "learning_rate": 2.847058823529412e-05, + "loss": 0.7870485687255859, + "step": 20500 + }, + { + "epoch": 43.277602523659304, + "grad_norm": 0.6681060194969177, + "learning_rate": 2.83655462184874e-05, + "loss": 0.7512457275390625, + "step": 20600 + }, + { + "epoch": 43.487907465825444, + "grad_norm": 0.669675886631012, + "learning_rate": 2.826050420168067e-05, + "loss": 0.7591960144042968, + "step": 20700 + }, + { + "epoch": 43.69821240799159, + "grad_norm": 0.7097092866897583, + "learning_rate": 2.8155462184873948e-05, + "loss": 0.7737602233886719, + "step": 20800 + }, + { + "epoch": 43.90851735015773, + "grad_norm": 0.6951079964637756, + "learning_rate": 2.8050420168067227e-05, + "loss": 0.7815242767333984, + "step": 20900 + }, + { + "epoch": 44.11777076761304, + "grad_norm": 0.639824390411377, + "learning_rate": 2.7945378151260503e-05, + "loss": 0.7512903594970703, + "step": 21000 + }, + { + "epoch": 44.32807570977918, + "grad_norm": 0.67326819896698, + "learning_rate": 2.7840336134453782e-05, + "loss": 0.7329978179931641, + "step": 21100 + }, + { + "epoch": 44.53838065194532, + "grad_norm": 0.6938571333885193, + "learning_rate": 2.7735294117647058e-05, + "loss": 0.7421668243408203, + "step": 21200 + }, + { + "epoch": 44.748685594111464, + "grad_norm": 0.6845099925994873, + "learning_rate": 2.7630252100840337e-05, + "loss": 0.7509217071533203, + "step": 21300 + }, + { + "epoch": 44.958990536277604, + "grad_norm": 0.681825578212738, + "learning_rate": 2.7525210084033616e-05, + "loss": 0.7620004272460937, + "step": 21400 + }, + { + "epoch": 45.16824395373291, + "grad_norm": 0.6556856036186218, + "learning_rate": 2.7421218487394962e-05, + "loss": 0.7184288787841797, + "step": 21500 + }, + { + "epoch": 45.37854889589905, + "grad_norm": 0.6386471390724182, + "learning_rate": 2.7316176470588235e-05, + "loss": 0.7161962127685547, + "step": 21600 + }, + { + "epoch": 45.5888538380652, + "grad_norm": 0.6947113275527954, + "learning_rate": 2.721113445378151e-05, + "loss": 0.7244486999511719, + "step": 21700 + }, + { + "epoch": 45.79915878023134, + "grad_norm": 0.6741232872009277, + "learning_rate": 2.710609243697479e-05, + "loss": 0.7308968353271484, + "step": 21800 + }, + { + "epoch": 46.008412197686646, + "grad_norm": 0.6631771326065063, + "learning_rate": 2.7001050420168066e-05, + "loss": 0.7323504638671875, + "step": 21900 + }, + { + "epoch": 46.218717139852785, + "grad_norm": 0.6702309250831604, + "learning_rate": 2.6896008403361345e-05, + "loss": 0.6865713500976562, + "step": 22000 + }, + { + "epoch": 46.429022082018925, + "grad_norm": 0.6711138486862183, + "learning_rate": 2.679096638655462e-05, + "loss": 0.697294921875, + "step": 22100 + }, + { + "epoch": 46.63932702418507, + "grad_norm": 0.7067892551422119, + "learning_rate": 2.66859243697479e-05, + "loss": 0.70609619140625, + "step": 22200 + }, + { + "epoch": 46.84963196635121, + "grad_norm": 0.6743476390838623, + "learning_rate": 2.658088235294118e-05, + "loss": 0.7116059112548828, + "step": 22300 + }, + { + "epoch": 47.05888538380652, + "grad_norm": 0.642842710018158, + "learning_rate": 2.6475840336134455e-05, + "loss": 0.7024728393554688, + "step": 22400 + }, + { + "epoch": 47.26919032597266, + "grad_norm": 0.6852782368659973, + "learning_rate": 2.6370798319327734e-05, + "loss": 0.6698217010498047, + "step": 22500 + }, + { + "epoch": 47.4794952681388, + "grad_norm": 0.6817244291305542, + "learning_rate": 2.626575630252101e-05, + "loss": 0.6796794891357422, + "step": 22600 + }, + { + "epoch": 47.689800210304945, + "grad_norm": 0.665703535079956, + "learning_rate": 2.616071428571429e-05, + "loss": 0.689930191040039, + "step": 22700 + }, + { + "epoch": 47.900105152471085, + "grad_norm": 0.7286046147346497, + "learning_rate": 2.6055672268907565e-05, + "loss": 0.6968262481689453, + "step": 22800 + }, + { + "epoch": 48.10935856992639, + "grad_norm": 0.6568066477775574, + "learning_rate": 2.5950630252100845e-05, + "loss": 0.6714718627929688, + "step": 22900 + }, + { + "epoch": 48.31966351209253, + "grad_norm": 0.6909933090209961, + "learning_rate": 2.584558823529412e-05, + "loss": 0.6521046447753907, + "step": 23000 + }, + { + "epoch": 48.52996845425867, + "grad_norm": 0.6730957627296448, + "learning_rate": 2.5740546218487393e-05, + "loss": 0.6635847473144532, + "step": 23100 + }, + { + "epoch": 48.74027339642482, + "grad_norm": 0.7137960195541382, + "learning_rate": 2.5635504201680672e-05, + "loss": 0.6703518676757813, + "step": 23200 + }, + { + "epoch": 48.95057833859096, + "grad_norm": 0.7035015225410461, + "learning_rate": 2.5530462184873948e-05, + "loss": 0.678240737915039, + "step": 23300 + }, + { + "epoch": 49.159831756046266, + "grad_norm": 0.6768185496330261, + "learning_rate": 2.5425420168067227e-05, + "loss": 0.6413292694091797, + "step": 23400 + }, + { + "epoch": 49.370136698212406, + "grad_norm": 0.6941663026809692, + "learning_rate": 2.5320378151260503e-05, + "loss": 0.6415236663818359, + "step": 23500 + }, + { + "epoch": 49.58044164037855, + "grad_norm": 0.722435712814331, + "learning_rate": 2.5215336134453782e-05, + "loss": 0.6499783325195313, + "step": 23600 + }, + { + "epoch": 49.79074658254469, + "grad_norm": 0.7071043252944946, + "learning_rate": 2.511029411764706e-05, + "loss": 0.6546615600585938, + "step": 23700 + }, + { + "epoch": 50.0, + "grad_norm": Infinity, + "learning_rate": 2.5005252100840338e-05, + "loss": 0.6589860534667968, + "step": 23800 + }, + { + "epoch": 50.21030494216614, + "grad_norm": 0.6747011542320251, + "learning_rate": 2.490126050420168e-05, + "loss": 0.6164878845214844, + "step": 23900 + }, + { + "epoch": 50.42060988433228, + "grad_norm": 0.6953312754631042, + "learning_rate": 2.479621848739496e-05, + "loss": 0.6259209060668945, + "step": 24000 + }, + { + "epoch": 50.630914826498426, + "grad_norm": 0.6829053163528442, + "learning_rate": 2.469117647058824e-05, + "loss": 0.6306737518310547, + "step": 24100 + }, + { + "epoch": 50.841219768664565, + "grad_norm": 0.7105507850646973, + "learning_rate": 2.4586134453781514e-05, + "loss": 0.6402838897705078, + "step": 24200 + }, + { + "epoch": 51.05047318611987, + "grad_norm": 0.6592356562614441, + "learning_rate": 2.4481092436974794e-05, + "loss": 0.6321442413330078, + "step": 24300 + }, + { + "epoch": 51.26077812828601, + "grad_norm": 0.6957094073295593, + "learning_rate": 2.4376050420168066e-05, + "loss": 0.6060052108764649, + "step": 24400 + }, + { + "epoch": 51.47108307045215, + "grad_norm": 0.6904229521751404, + "learning_rate": 2.4271008403361345e-05, + "loss": 0.6094649505615234, + "step": 24500 + }, + { + "epoch": 51.6813880126183, + "grad_norm": 0.7173294425010681, + "learning_rate": 2.416596638655462e-05, + "loss": 0.6187096023559571, + "step": 24600 + }, + { + "epoch": 51.89169295478444, + "grad_norm": 0.7143198251724243, + "learning_rate": 2.40609243697479e-05, + "loss": 0.6268323516845703, + "step": 24700 + }, + { + "epoch": 52.10094637223975, + "grad_norm": 0.6786720752716064, + "learning_rate": 2.3955882352941176e-05, + "loss": 0.6083223342895507, + "step": 24800 + }, + { + "epoch": 52.31125131440589, + "grad_norm": 0.6900521516799927, + "learning_rate": 2.3850840336134456e-05, + "loss": 0.5922721862792969, + "step": 24900 + }, + { + "epoch": 52.521556256572026, + "grad_norm": 0.7288543581962585, + "learning_rate": 2.3745798319327735e-05, + "loss": 0.5982749938964844, + "step": 25000 + }, + { + "epoch": 52.73186119873817, + "grad_norm": 0.704078197479248, + "learning_rate": 2.3640756302521007e-05, + "loss": 0.6041379547119141, + "step": 25100 + }, + { + "epoch": 52.94216614090431, + "grad_norm": 0.706262469291687, + "learning_rate": 2.3535714285714287e-05, + "loss": 0.6083390808105469, + "step": 25200 + }, + { + "epoch": 53.15141955835962, + "grad_norm": 0.6775776743888855, + "learning_rate": 2.3430672268907563e-05, + "loss": 0.5816435623168945, + "step": 25300 + }, + { + "epoch": 53.36172450052576, + "grad_norm": 0.7253007888793945, + "learning_rate": 2.3325630252100842e-05, + "loss": 0.58095458984375, + "step": 25400 + }, + { + "epoch": 53.5720294426919, + "grad_norm": 0.7169889211654663, + "learning_rate": 2.3220588235294118e-05, + "loss": 0.5878105163574219, + "step": 25500 + }, + { + "epoch": 53.782334384858046, + "grad_norm": 0.6921281814575195, + "learning_rate": 2.3115546218487397e-05, + "loss": 0.5918175506591797, + "step": 25600 + }, + { + "epoch": 53.992639327024186, + "grad_norm": 0.7570663094520569, + "learning_rate": 2.3010504201680673e-05, + "loss": 0.5992276000976563, + "step": 25700 + }, + { + "epoch": 54.201892744479494, + "grad_norm": 0.7045475840568542, + "learning_rate": 2.2905462184873952e-05, + "loss": 0.563626937866211, + "step": 25800 + }, + { + "epoch": 54.412197686645634, + "grad_norm": 0.7311537861824036, + "learning_rate": 2.2800420168067228e-05, + "loss": 0.5649079513549805, + "step": 25900 + }, + { + "epoch": 54.62250262881178, + "grad_norm": 0.7197280526161194, + "learning_rate": 2.2695378151260504e-05, + "loss": 0.5740287017822265, + "step": 26000 + }, + { + "epoch": 54.83280757097792, + "grad_norm": 0.7047930359840393, + "learning_rate": 2.2590336134453783e-05, + "loss": 0.5799992752075195, + "step": 26100 + }, + { + "epoch": 55.04206098843323, + "grad_norm": 0.663329541683197, + "learning_rate": 2.2486344537815125e-05, + "loss": 0.5747824096679688, + "step": 26200 + }, + { + "epoch": 55.25236593059937, + "grad_norm": 0.6825776100158691, + "learning_rate": 2.2381302521008405e-05, + "loss": 0.5511475372314453, + "step": 26300 + }, + { + "epoch": 55.46267087276551, + "grad_norm": 0.7081674337387085, + "learning_rate": 2.227626050420168e-05, + "loss": 0.5568293380737305, + "step": 26400 + }, + { + "epoch": 55.672975814931654, + "grad_norm": 0.6991596221923828, + "learning_rate": 2.217121848739496e-05, + "loss": 0.5623696899414062, + "step": 26500 + }, + { + "epoch": 55.88328075709779, + "grad_norm": 0.7421116828918457, + "learning_rate": 2.2066176470588236e-05, + "loss": 0.5673596572875976, + "step": 26600 + }, + { + "epoch": 56.0925341745531, + "grad_norm": 0.6679620146751404, + "learning_rate": 2.1961134453781515e-05, + "loss": 0.555915298461914, + "step": 26700 + }, + { + "epoch": 56.30283911671924, + "grad_norm": 0.7035086750984192, + "learning_rate": 2.185609243697479e-05, + "loss": 0.5402443313598633, + "step": 26800 + }, + { + "epoch": 56.51314405888538, + "grad_norm": 0.6888571381568909, + "learning_rate": 2.1751050420168067e-05, + "loss": 0.5462953186035157, + "step": 26900 + }, + { + "epoch": 56.72344900105153, + "grad_norm": 0.7356609106063843, + "learning_rate": 2.1646008403361346e-05, + "loss": 0.5512025833129883, + "step": 27000 + }, + { + "epoch": 56.93375394321767, + "grad_norm": 0.7569705247879028, + "learning_rate": 2.1540966386554622e-05, + "loss": 0.5562152481079101, + "step": 27100 + }, + { + "epoch": 57.143007360672975, + "grad_norm": 0.6764115691184998, + "learning_rate": 2.14359243697479e-05, + "loss": 0.5337548065185547, + "step": 27200 + }, + { + "epoch": 57.353312302839115, + "grad_norm": 0.7006810307502747, + "learning_rate": 2.1330882352941177e-05, + "loss": 0.5296073913574219, + "step": 27300 + }, + { + "epoch": 57.56361724500526, + "grad_norm": 0.7158169150352478, + "learning_rate": 2.1225840336134456e-05, + "loss": 0.5382700347900391, + "step": 27400 + }, + { + "epoch": 57.7739221871714, + "grad_norm": 0.7132992148399353, + "learning_rate": 2.1120798319327732e-05, + "loss": 0.5398505783081055, + "step": 27500 + }, + { + "epoch": 57.98422712933754, + "grad_norm": 0.7330942749977112, + "learning_rate": 2.1015756302521008e-05, + "loss": 0.5458747863769531, + "step": 27600 + }, + { + "epoch": 58.19348054679285, + "grad_norm": 0.669278621673584, + "learning_rate": 2.0910714285714287e-05, + "loss": 0.5161695861816407, + "step": 27700 + }, + { + "epoch": 58.40378548895899, + "grad_norm": 0.6958737373352051, + "learning_rate": 2.0805672268907563e-05, + "loss": 0.5201998901367187, + "step": 27800 + }, + { + "epoch": 58.614090431125135, + "grad_norm": 0.6824914813041687, + "learning_rate": 2.0700630252100842e-05, + "loss": 0.5258338928222657, + "step": 27900 + }, + { + "epoch": 58.824395373291274, + "grad_norm": 0.6634467244148254, + "learning_rate": 2.0595588235294118e-05, + "loss": 0.5300619888305664, + "step": 28000 + }, + { + "epoch": 59.03364879074658, + "grad_norm": 0.6863816380500793, + "learning_rate": 2.0490546218487397e-05, + "loss": 0.5283214950561523, + "step": 28100 + }, + { + "epoch": 59.24395373291272, + "grad_norm": 0.7183119654655457, + "learning_rate": 2.0385504201680673e-05, + "loss": 0.506834487915039, + "step": 28200 + }, + { + "epoch": 59.45425867507886, + "grad_norm": 0.7142145037651062, + "learning_rate": 2.028046218487395e-05, + "loss": 0.5117876815795899, + "step": 28300 + }, + { + "epoch": 59.66456361724501, + "grad_norm": 0.7280924916267395, + "learning_rate": 2.017542016806723e-05, + "loss": 0.5153473281860351, + "step": 28400 + }, + { + "epoch": 59.87486855941115, + "grad_norm": 0.693505048751831, + "learning_rate": 2.0070378151260504e-05, + "loss": 0.5219352722167969, + "step": 28500 + }, + { + "epoch": 60.084121976866456, + "grad_norm": 0.6892845034599304, + "learning_rate": 1.9965336134453784e-05, + "loss": 0.5122858810424805, + "step": 28600 + }, + { + "epoch": 60.294426919032595, + "grad_norm": 0.6604379415512085, + "learning_rate": 1.986029411764706e-05, + "loss": 0.49614715576171875, + "step": 28700 + }, + { + "epoch": 60.504731861198735, + "grad_norm": 0.7204891443252563, + "learning_rate": 1.975525210084034e-05, + "loss": 0.5024974822998047, + "step": 28800 + }, + { + "epoch": 60.71503680336488, + "grad_norm": 0.7127634286880493, + "learning_rate": 1.9650210084033615e-05, + "loss": 0.5073120498657226, + "step": 28900 + }, + { + "epoch": 60.92534174553102, + "grad_norm": 0.7359983921051025, + "learning_rate": 1.954516806722689e-05, + "loss": 0.5116232681274414, + "step": 29000 + }, + { + "epoch": 61.13459516298633, + "grad_norm": 0.6893951296806335, + "learning_rate": 1.944012605042017e-05, + "loss": 0.4952814865112305, + "step": 29100 + }, + { + "epoch": 61.34490010515247, + "grad_norm": 0.6849685311317444, + "learning_rate": 1.9335084033613446e-05, + "loss": 0.4899435043334961, + "step": 29200 + }, + { + "epoch": 61.55520504731861, + "grad_norm": 0.7181743383407593, + "learning_rate": 1.9230042016806725e-05, + "loss": 0.4946512985229492, + "step": 29300 + }, + { + "epoch": 61.765509989484755, + "grad_norm": 0.6820606589317322, + "learning_rate": 1.9125e-05, + "loss": 0.49947418212890626, + "step": 29400 + }, + { + "epoch": 61.975814931650895, + "grad_norm": 0.7111321687698364, + "learning_rate": 1.901995798319328e-05, + "loss": 0.5020344543457032, + "step": 29500 + }, + { + "epoch": 62.1850683491062, + "grad_norm": 0.7008198499679565, + "learning_rate": 1.8914915966386556e-05, + "loss": 0.48151485443115233, + "step": 29600 + }, + { + "epoch": 62.39537329127234, + "grad_norm": 0.7171513438224792, + "learning_rate": 1.880987394957983e-05, + "loss": 0.48171932220458985, + "step": 29700 + }, + { + "epoch": 62.60567823343849, + "grad_norm": 0.7375807762145996, + "learning_rate": 1.8704831932773108e-05, + "loss": 0.4873679733276367, + "step": 29800 + }, + { + "epoch": 62.81598317560463, + "grad_norm": 0.6806672811508179, + "learning_rate": 1.8599789915966387e-05, + "loss": 0.4887456130981445, + "step": 29900 + }, + { + "epoch": 63.02523659305994, + "grad_norm": 0.6749327182769775, + "learning_rate": 1.8494747899159666e-05, + "loss": 0.48958889007568357, + "step": 30000 + }, + { + "epoch": 63.235541535226076, + "grad_norm": 0.7122695446014404, + "learning_rate": 1.8389705882352942e-05, + "loss": 0.46849212646484373, + "step": 30100 + }, + { + "epoch": 63.445846477392216, + "grad_norm": 0.6742300987243652, + "learning_rate": 1.8285714285714288e-05, + "loss": 0.4735026550292969, + "step": 30200 + }, + { + "epoch": 63.65615141955836, + "grad_norm": 0.7086833119392395, + "learning_rate": 1.8180672268907564e-05, + "loss": 0.47808189392089845, + "step": 30300 + }, + { + "epoch": 63.8664563617245, + "grad_norm": 0.673115611076355, + "learning_rate": 1.8075630252100843e-05, + "loss": 0.4810390853881836, + "step": 30400 + }, + { + "epoch": 64.07570977917982, + "grad_norm": 0.7166642546653748, + "learning_rate": 1.797058823529412e-05, + "loss": 0.47662986755371095, + "step": 30500 + }, + { + "epoch": 64.28601472134595, + "grad_norm": 0.7239866852760315, + "learning_rate": 1.7865546218487395e-05, + "loss": 0.46368907928466796, + "step": 30600 + }, + { + "epoch": 64.4963196635121, + "grad_norm": 0.6777023077011108, + "learning_rate": 1.776050420168067e-05, + "loss": 0.46869037628173826, + "step": 30700 + }, + { + "epoch": 64.70662460567823, + "grad_norm": 0.7028587460517883, + "learning_rate": 1.765546218487395e-05, + "loss": 0.47153076171875, + "step": 30800 + }, + { + "epoch": 64.91692954784438, + "grad_norm": 0.7220568656921387, + "learning_rate": 1.755042016806723e-05, + "loss": 0.4732553482055664, + "step": 30900 + }, + { + "epoch": 65.12618296529969, + "grad_norm": 0.6283636093139648, + "learning_rate": 1.7445378151260505e-05, + "loss": 0.4627264404296875, + "step": 31000 + }, + { + "epoch": 65.33648790746582, + "grad_norm": 0.6411524415016174, + "learning_rate": 1.7340336134453784e-05, + "loss": 0.45608016967773435, + "step": 31100 + }, + { + "epoch": 65.54679284963197, + "grad_norm": 0.668154776096344, + "learning_rate": 1.723529411764706e-05, + "loss": 0.46059967041015626, + "step": 31200 + }, + { + "epoch": 65.7570977917981, + "grad_norm": 0.7226248979568481, + "learning_rate": 1.713025210084034e-05, + "loss": 0.4659851455688477, + "step": 31300 + }, + { + "epoch": 65.96740273396425, + "grad_norm": 0.6833023428916931, + "learning_rate": 1.7025210084033612e-05, + "loss": 0.46931900024414064, + "step": 31400 + }, + { + "epoch": 66.17665615141956, + "grad_norm": 0.6941800117492676, + "learning_rate": 1.6921218487394958e-05, + "loss": 0.45006973266601563, + "step": 31500 + }, + { + "epoch": 66.3869610935857, + "grad_norm": 0.63517826795578, + "learning_rate": 1.6816176470588237e-05, + "loss": 0.44848171234130857, + "step": 31600 + }, + { + "epoch": 66.59726603575184, + "grad_norm": 0.6846080422401428, + "learning_rate": 1.6711134453781513e-05, + "loss": 0.45420032501220703, + "step": 31700 + }, + { + "epoch": 66.80757097791798, + "grad_norm": 0.6388368010520935, + "learning_rate": 1.6606092436974792e-05, + "loss": 0.4580923843383789, + "step": 31800 + }, + { + "epoch": 67.01682439537329, + "grad_norm": 0.6670629978179932, + "learning_rate": 1.6501050420168068e-05, + "loss": 0.4585027313232422, + "step": 31900 + }, + { + "epoch": 67.22712933753944, + "grad_norm": 0.6662338972091675, + "learning_rate": 1.6396008403361347e-05, + "loss": 0.44079010009765623, + "step": 32000 + }, + { + "epoch": 67.43743427970557, + "grad_norm": 0.6707865595817566, + "learning_rate": 1.6290966386554623e-05, + "loss": 0.44413238525390625, + "step": 32100 + }, + { + "epoch": 67.64773922187172, + "grad_norm": 0.656842052936554, + "learning_rate": 1.6185924369747902e-05, + "loss": 0.44844043731689454, + "step": 32200 + }, + { + "epoch": 67.85804416403785, + "grad_norm": 0.6646634340286255, + "learning_rate": 1.6080882352941175e-05, + "loss": 0.44970947265625, + "step": 32300 + }, + { + "epoch": 68.06729758149316, + "grad_norm": 0.6447365880012512, + "learning_rate": 1.5975840336134454e-05, + "loss": 0.4450407028198242, + "step": 32400 + }, + { + "epoch": 68.27760252365931, + "grad_norm": 0.6727699637413025, + "learning_rate": 1.587079831932773e-05, + "loss": 0.43177310943603514, + "step": 32500 + }, + { + "epoch": 68.48790746582544, + "grad_norm": 0.7130571603775024, + "learning_rate": 1.576575630252101e-05, + "loss": 0.4379489517211914, + "step": 32600 + }, + { + "epoch": 68.69821240799159, + "grad_norm": 0.7220073938369751, + "learning_rate": 1.566071428571429e-05, + "loss": 0.4425164794921875, + "step": 32700 + }, + { + "epoch": 68.90851735015772, + "grad_norm": 0.6695141196250916, + "learning_rate": 1.5555672268907564e-05, + "loss": 0.44274383544921875, + "step": 32800 + }, + { + "epoch": 69.11777076761304, + "grad_norm": 0.6740268468856812, + "learning_rate": 1.5450630252100843e-05, + "loss": 0.4357725143432617, + "step": 32900 + }, + { + "epoch": 69.32807570977918, + "grad_norm": 0.6566063165664673, + "learning_rate": 1.5345588235294116e-05, + "loss": 0.4283485412597656, + "step": 33000 + }, + { + "epoch": 69.53838065194532, + "grad_norm": 0.6752663850784302, + "learning_rate": 1.5240546218487395e-05, + "loss": 0.43225677490234377, + "step": 33100 + }, + { + "epoch": 69.74868559411146, + "grad_norm": 0.7038667798042297, + "learning_rate": 1.5135504201680673e-05, + "loss": 0.43592594146728514, + "step": 33200 + }, + { + "epoch": 69.9589905362776, + "grad_norm": 0.6961196660995483, + "learning_rate": 1.503046218487395e-05, + "loss": 0.438877067565918, + "step": 33300 + }, + { + "epoch": 70.16824395373291, + "grad_norm": 0.6535352468490601, + "learning_rate": 1.4925420168067228e-05, + "loss": 0.4252385330200195, + "step": 33400 + }, + { + "epoch": 70.37854889589906, + "grad_norm": 0.6601018905639648, + "learning_rate": 1.4820378151260505e-05, + "loss": 0.42285392761230467, + "step": 33500 + }, + { + "epoch": 70.58885383806519, + "grad_norm": 0.6948896050453186, + "learning_rate": 1.4715336134453783e-05, + "loss": 0.427175407409668, + "step": 33600 + }, + { + "epoch": 70.79915878023134, + "grad_norm": 0.6372560858726501, + "learning_rate": 1.461029411764706e-05, + "loss": 0.42832706451416014, + "step": 33700 + }, + { + "epoch": 71.00841219768665, + "grad_norm": 0.6517939567565918, + "learning_rate": 1.4505252100840336e-05, + "loss": 0.4324043273925781, + "step": 33800 + }, + { + "epoch": 71.21871713985279, + "grad_norm": 0.6330206990242004, + "learning_rate": 1.4400210084033614e-05, + "loss": 0.4146746826171875, + "step": 33900 + }, + { + "epoch": 71.42902208201893, + "grad_norm": 0.6658615469932556, + "learning_rate": 1.4295168067226892e-05, + "loss": 0.4180047225952148, + "step": 34000 + }, + { + "epoch": 71.63932702418506, + "grad_norm": 0.6433075070381165, + "learning_rate": 1.4190126050420169e-05, + "loss": 0.4219693374633789, + "step": 34100 + }, + { + "epoch": 71.84963196635121, + "grad_norm": 0.6470766663551331, + "learning_rate": 1.4085084033613447e-05, + "loss": 0.4214926528930664, + "step": 34200 + }, + { + "epoch": 72.05888538380653, + "grad_norm": 0.6315721273422241, + "learning_rate": 1.3981092436974791e-05, + "loss": 0.4204498291015625, + "step": 34300 + }, + { + "epoch": 72.26919032597266, + "grad_norm": 0.6722202897071838, + "learning_rate": 1.3876050420168068e-05, + "loss": 0.4105443572998047, + "step": 34400 + }, + { + "epoch": 72.4794952681388, + "grad_norm": 0.654528021812439, + "learning_rate": 1.3771008403361346e-05, + "loss": 0.41524337768554687, + "step": 34500 + }, + { + "epoch": 72.68980021030494, + "grad_norm": 0.6449755430221558, + "learning_rate": 1.3665966386554622e-05, + "loss": 0.4175481414794922, + "step": 34600 + }, + { + "epoch": 72.90010515247108, + "grad_norm": 0.6468359231948853, + "learning_rate": 1.35609243697479e-05, + "loss": 0.41863433837890623, + "step": 34700 + }, + { + "epoch": 73.1093585699264, + "grad_norm": 0.6471462845802307, + "learning_rate": 1.3455882352941177e-05, + "loss": 0.411123161315918, + "step": 34800 + }, + { + "epoch": 73.31966351209253, + "grad_norm": 0.6382157802581787, + "learning_rate": 1.3350840336134455e-05, + "loss": 0.40554931640625, + "step": 34900 + }, + { + "epoch": 73.52996845425868, + "grad_norm": 0.6727550029754639, + "learning_rate": 1.3245798319327732e-05, + "loss": 0.40884464263916015, + "step": 35000 + }, + { + "epoch": 73.74027339642481, + "grad_norm": 0.6494147181510925, + "learning_rate": 1.314075630252101e-05, + "loss": 0.4114807891845703, + "step": 35100 + }, + { + "epoch": 73.95057833859096, + "grad_norm": 0.6971067786216736, + "learning_rate": 1.3035714285714287e-05, + "loss": 0.4129951477050781, + "step": 35200 + }, + { + "epoch": 74.15983175604627, + "grad_norm": 0.630617082118988, + "learning_rate": 1.2930672268907565e-05, + "loss": 0.40283798217773437, + "step": 35300 + }, + { + "epoch": 74.3701366982124, + "grad_norm": 0.6068241000175476, + "learning_rate": 1.2825630252100839e-05, + "loss": 0.4017567825317383, + "step": 35400 + }, + { + "epoch": 74.58044164037855, + "grad_norm": 0.6767259836196899, + "learning_rate": 1.2720588235294118e-05, + "loss": 0.40448307037353515, + "step": 35500 + }, + { + "epoch": 74.79074658254468, + "grad_norm": 0.7011847496032715, + "learning_rate": 1.2615546218487396e-05, + "loss": 0.4047744369506836, + "step": 35600 + }, + { + "epoch": 75.0, + "grad_norm": 0.9920335412025452, + "learning_rate": 1.2510504201680673e-05, + "loss": 0.4085837936401367, + "step": 35700 + }, + { + "epoch": 75.21030494216615, + "grad_norm": 0.6520708203315735, + "learning_rate": 1.2405462184873951e-05, + "loss": 0.39399688720703124, + "step": 35800 + }, + { + "epoch": 75.42060988433228, + "grad_norm": 0.6656842827796936, + "learning_rate": 1.2300420168067227e-05, + "loss": 0.3963521957397461, + "step": 35900 + }, + { + "epoch": 75.63091482649843, + "grad_norm": 0.6576446294784546, + "learning_rate": 1.2195378151260504e-05, + "loss": 0.3992136383056641, + "step": 36000 + }, + { + "epoch": 75.84121976866456, + "grad_norm": 0.6238224506378174, + "learning_rate": 1.2090336134453782e-05, + "loss": 0.40125537872314454, + "step": 36100 + }, + { + "epoch": 76.05047318611987, + "grad_norm": 0.6389949917793274, + "learning_rate": 1.198529411764706e-05, + "loss": 0.3995349884033203, + "step": 36200 + }, + { + "epoch": 76.26077812828602, + "grad_norm": 0.6240091919898987, + "learning_rate": 1.1880252100840335e-05, + "loss": 0.3890629577636719, + "step": 36300 + }, + { + "epoch": 76.47108307045215, + "grad_norm": 0.6367642879486084, + "learning_rate": 1.1775210084033615e-05, + "loss": 0.39277313232421873, + "step": 36400 + }, + { + "epoch": 76.6813880126183, + "grad_norm": 0.6215347647666931, + "learning_rate": 1.1670168067226892e-05, + "loss": 0.3941745376586914, + "step": 36500 + }, + { + "epoch": 76.89169295478443, + "grad_norm": 0.6176421642303467, + "learning_rate": 1.156512605042017e-05, + "loss": 0.3961213302612305, + "step": 36600 + }, + { + "epoch": 77.10094637223975, + "grad_norm": 0.6433852314949036, + "learning_rate": 1.1460084033613446e-05, + "loss": 0.39362903594970705, + "step": 36700 + }, + { + "epoch": 77.3112513144059, + "grad_norm": 0.6288033127784729, + "learning_rate": 1.1355042016806723e-05, + "loss": 0.3870785140991211, + "step": 36800 + }, + { + "epoch": 77.52155625657203, + "grad_norm": 0.6061193943023682, + "learning_rate": 1.125e-05, + "loss": 0.38955581665039063, + "step": 36900 + }, + { + "epoch": 77.73186119873817, + "grad_norm": 0.6680556535720825, + "learning_rate": 1.1144957983193278e-05, + "loss": 0.390676383972168, + "step": 37000 + }, + { + "epoch": 77.9421661409043, + "grad_norm": 0.623725950717926, + "learning_rate": 1.1039915966386554e-05, + "loss": 0.3921066665649414, + "step": 37100 + }, + { + "epoch": 78.15141955835962, + "grad_norm": 0.6346238255500793, + "learning_rate": 1.0935924369747898e-05, + "loss": 0.3845651626586914, + "step": 37200 + }, + { + "epoch": 78.36172450052577, + "grad_norm": 0.6062731146812439, + "learning_rate": 1.0830882352941178e-05, + "loss": 0.380772705078125, + "step": 37300 + }, + { + "epoch": 78.5720294426919, + "grad_norm": 0.6125079989433289, + "learning_rate": 1.0725840336134455e-05, + "loss": 0.3834884262084961, + "step": 37400 + }, + { + "epoch": 78.78233438485805, + "grad_norm": 0.6804420948028564, + "learning_rate": 1.0620798319327733e-05, + "loss": 0.3863555526733398, + "step": 37500 + }, + { + "epoch": 78.99263932702418, + "grad_norm": 0.6568316221237183, + "learning_rate": 1.0515756302521009e-05, + "loss": 0.3898443603515625, + "step": 37600 + }, + { + "epoch": 79.2018927444795, + "grad_norm": 0.6262179017066956, + "learning_rate": 1.0410714285714286e-05, + "loss": 0.37717395782470703, + "step": 37700 + }, + { + "epoch": 79.41219768664564, + "grad_norm": 0.6335896849632263, + "learning_rate": 1.0305672268907564e-05, + "loss": 0.37976459503173826, + "step": 37800 + }, + { + "epoch": 79.62250262881177, + "grad_norm": 0.675938069820404, + "learning_rate": 1.0200630252100841e-05, + "loss": 0.38054397583007815, + "step": 37900 + }, + { + "epoch": 79.83280757097792, + "grad_norm": 0.650644838809967, + "learning_rate": 1.0095588235294117e-05, + "loss": 0.3817191696166992, + "step": 38000 + }, + { + "epoch": 80.04206098843324, + "grad_norm": 0.5988778471946716, + "learning_rate": 9.990546218487395e-06, + "loss": 0.3799977493286133, + "step": 38100 + }, + { + "epoch": 80.25236593059937, + "grad_norm": 0.6436987519264221, + "learning_rate": 9.885504201680674e-06, + "loss": 0.37264183044433596, + "step": 38200 + }, + { + "epoch": 80.46267087276551, + "grad_norm": 0.610487699508667, + "learning_rate": 9.78046218487395e-06, + "loss": 0.3753046417236328, + "step": 38300 + }, + { + "epoch": 80.67297581493165, + "grad_norm": 0.6378571391105652, + "learning_rate": 9.675420168067227e-06, + "loss": 0.3749809646606445, + "step": 38400 + }, + { + "epoch": 80.8832807570978, + "grad_norm": 0.6599664688110352, + "learning_rate": 9.570378151260505e-06, + "loss": 0.37958168029785155, + "step": 38500 + }, + { + "epoch": 81.09253417455311, + "grad_norm": 0.6057779788970947, + "learning_rate": 9.465336134453782e-06, + "loss": 0.3755946731567383, + "step": 38600 + }, + { + "epoch": 81.30283911671924, + "grad_norm": 0.6186268925666809, + "learning_rate": 9.360294117647058e-06, + "loss": 0.3689208221435547, + "step": 38700 + }, + { + "epoch": 81.51314405888539, + "grad_norm": 0.6031709909439087, + "learning_rate": 9.255252100840336e-06, + "loss": 0.37045917510986326, + "step": 38800 + }, + { + "epoch": 81.72344900105152, + "grad_norm": 0.6903654336929321, + "learning_rate": 9.150210084033613e-06, + "loss": 0.37341190338134767, + "step": 38900 + }, + { + "epoch": 81.93375394321767, + "grad_norm": 0.6498835682868958, + "learning_rate": 9.045168067226891e-06, + "loss": 0.3741530227661133, + "step": 39000 + }, + { + "epoch": 82.14300736067298, + "grad_norm": 0.6078621745109558, + "learning_rate": 8.940126050420169e-06, + "loss": 0.36713558197021484, + "step": 39100 + }, + { + "epoch": 82.35331230283911, + "grad_norm": 0.6294094324111938, + "learning_rate": 8.835084033613446e-06, + "loss": 0.3661073303222656, + "step": 39200 + }, + { + "epoch": 82.56361724500526, + "grad_norm": 0.6120302081108093, + "learning_rate": 8.730042016806724e-06, + "loss": 0.3683062744140625, + "step": 39300 + }, + { + "epoch": 82.7739221871714, + "grad_norm": 0.6194695830345154, + "learning_rate": 8.625e-06, + "loss": 0.3718934631347656, + "step": 39400 + }, + { + "epoch": 82.98422712933754, + "grad_norm": 0.6603109240531921, + "learning_rate": 8.519957983193277e-06, + "loss": 0.37141822814941405, + "step": 39500 + }, + { + "epoch": 83.19348054679286, + "grad_norm": 0.6176982522010803, + "learning_rate": 8.414915966386555e-06, + "loss": 0.36253021240234373, + "step": 39600 + }, + { + "epoch": 83.40378548895899, + "grad_norm": 0.6788721084594727, + "learning_rate": 8.309873949579832e-06, + "loss": 0.36460174560546876, + "step": 39700 + }, + { + "epoch": 83.61409043112513, + "grad_norm": 0.6141113638877869, + "learning_rate": 8.20483193277311e-06, + "loss": 0.36554264068603515, + "step": 39800 + }, + { + "epoch": 83.82439537329127, + "grad_norm": 0.6193323135375977, + "learning_rate": 8.099789915966387e-06, + "loss": 0.36707286834716796, + "step": 39900 + }, + { + "epoch": 84.03364879074658, + "grad_norm": 0.6383187770843506, + "learning_rate": 7.994747899159665e-06, + "loss": 0.3661843872070312, + "step": 40000 + }, + { + "epoch": 84.24395373291273, + "grad_norm": 0.5923520922660828, + "learning_rate": 7.889705882352943e-06, + "loss": 0.35978816986083983, + "step": 40100 + }, + { + "epoch": 84.45425867507886, + "grad_norm": 0.641968846321106, + "learning_rate": 7.784663865546218e-06, + "loss": 0.35977176666259764, + "step": 40200 + }, + { + "epoch": 84.66456361724501, + "grad_norm": 0.6307324767112732, + "learning_rate": 7.679621848739496e-06, + "loss": 0.36135292053222656, + "step": 40300 + }, + { + "epoch": 84.87486855941114, + "grad_norm": 0.6303888559341431, + "learning_rate": 7.5745798319327735e-06, + "loss": 0.36290821075439456, + "step": 40400 + }, + { + "epoch": 85.08412197686646, + "grad_norm": 0.5610889792442322, + "learning_rate": 7.469537815126051e-06, + "loss": 0.36016101837158204, + "step": 40500 + }, + { + "epoch": 85.2944269190326, + "grad_norm": 0.5796296000480652, + "learning_rate": 7.364495798319328e-06, + "loss": 0.35660606384277344, + "step": 40600 + }, + { + "epoch": 85.50473186119874, + "grad_norm": 0.6147542595863342, + "learning_rate": 7.259453781512605e-06, + "loss": 0.35944347381591796, + "step": 40700 + }, + { + "epoch": 85.71503680336488, + "grad_norm": 0.6097769737243652, + "learning_rate": 7.154411764705883e-06, + "loss": 0.3589036560058594, + "step": 40800 + }, + { + "epoch": 85.92534174553101, + "grad_norm": 0.6288202404975891, + "learning_rate": 7.04936974789916e-06, + "loss": 0.3591917419433594, + "step": 40900 + }, + { + "epoch": 86.13459516298633, + "grad_norm": 0.6195931434631348, + "learning_rate": 6.944327731092437e-06, + "loss": 0.3569915771484375, + "step": 41000 + }, + { + "epoch": 86.34490010515248, + "grad_norm": 0.5890372395515442, + "learning_rate": 6.839285714285715e-06, + "loss": 0.3543994903564453, + "step": 41100 + }, + { + "epoch": 86.55520504731861, + "grad_norm": 0.6272594332695007, + "learning_rate": 6.735294117647059e-06, + "loss": 0.3553640365600586, + "step": 41200 + }, + { + "epoch": 86.76550998948476, + "grad_norm": 0.6778700351715088, + "learning_rate": 6.6302521008403365e-06, + "loss": 0.3564106750488281, + "step": 41300 + }, + { + "epoch": 86.97581493165089, + "grad_norm": 0.6336688995361328, + "learning_rate": 6.525210084033614e-06, + "loss": 0.35713409423828124, + "step": 41400 + }, + { + "epoch": 87.1850683491062, + "grad_norm": 0.6053069829940796, + "learning_rate": 6.421218487394959e-06, + "loss": 0.3506643295288086, + "step": 41500 + }, + { + "epoch": 87.39537329127235, + "grad_norm": 0.6175255179405212, + "learning_rate": 6.316176470588235e-06, + "loss": 0.35214996337890625, + "step": 41600 + }, + { + "epoch": 87.60567823343848, + "grad_norm": 0.5915444493293762, + "learning_rate": 6.2111344537815125e-06, + "loss": 0.3522480392456055, + "step": 41700 + }, + { + "epoch": 87.81598317560463, + "grad_norm": 0.5907636880874634, + "learning_rate": 6.10609243697479e-06, + "loss": 0.3520878601074219, + "step": 41800 + }, + { + "epoch": 88.02523659305994, + "grad_norm": 0.6209415197372437, + "learning_rate": 6.001050420168068e-06, + "loss": 0.3545633316040039, + "step": 41900 + }, + { + "epoch": 88.23554153522608, + "grad_norm": 0.5926827788352966, + "learning_rate": 5.896008403361345e-06, + "loss": 0.34920032501220705, + "step": 42000 + }, + { + "epoch": 88.44584647739222, + "grad_norm": 0.638471245765686, + "learning_rate": 5.790966386554622e-06, + "loss": 0.34805423736572266, + "step": 42100 + }, + { + "epoch": 88.65615141955836, + "grad_norm": 0.6181325316429138, + "learning_rate": 5.6859243697478994e-06, + "loss": 0.3501460647583008, + "step": 42200 + }, + { + "epoch": 88.8664563617245, + "grad_norm": 0.6029173135757446, + "learning_rate": 5.580882352941177e-06, + "loss": 0.35028797149658203, + "step": 42300 + }, + { + "epoch": 89.07570977917982, + "grad_norm": 0.5673274397850037, + "learning_rate": 5.475840336134454e-06, + "loss": 0.34918766021728515, + "step": 42400 + }, + { + "epoch": 89.28601472134595, + "grad_norm": 0.5657567977905273, + "learning_rate": 5.370798319327731e-06, + "loss": 0.34565746307373046, + "step": 42500 + }, + { + "epoch": 89.4963196635121, + "grad_norm": 0.6014168858528137, + "learning_rate": 5.265756302521008e-06, + "loss": 0.3450989532470703, + "step": 42600 + }, + { + "epoch": 89.70662460567823, + "grad_norm": 0.5631797909736633, + "learning_rate": 5.160714285714286e-06, + "loss": 0.3477408218383789, + "step": 42700 + }, + { + "epoch": 89.91692954784438, + "grad_norm": 0.624321699142456, + "learning_rate": 5.055672268907563e-06, + "loss": 0.34852649688720705, + "step": 42800 + }, + { + "epoch": 90.12618296529969, + "grad_norm": 0.6004353761672974, + "learning_rate": 4.950630252100841e-06, + "loss": 0.3450387191772461, + "step": 42900 + }, + { + "epoch": 90.33648790746582, + "grad_norm": 0.6030150651931763, + "learning_rate": 4.845588235294117e-06, + "loss": 0.34261096954345704, + "step": 43000 + }, + { + "epoch": 90.54679284963197, + "grad_norm": 0.5574061870574951, + "learning_rate": 4.740546218487396e-06, + "loss": 0.3450190734863281, + "step": 43100 + }, + { + "epoch": 90.7570977917981, + "grad_norm": 0.5677763819694519, + "learning_rate": 4.6355042016806725e-06, + "loss": 0.3442384338378906, + "step": 43200 + }, + { + "epoch": 90.96740273396425, + "grad_norm": 0.6088888645172119, + "learning_rate": 4.53046218487395e-06, + "loss": 0.3451253128051758, + "step": 43300 + }, + { + "epoch": 91.17665615141956, + "grad_norm": 0.5724344849586487, + "learning_rate": 4.425420168067227e-06, + "loss": 0.3408164978027344, + "step": 43400 + }, + { + "epoch": 91.3869610935857, + "grad_norm": 0.6201240420341492, + "learning_rate": 4.320378151260504e-06, + "loss": 0.3420841979980469, + "step": 43500 + }, + { + "epoch": 91.59726603575184, + "grad_norm": 0.6098768711090088, + "learning_rate": 4.215336134453782e-06, + "loss": 0.3413374328613281, + "step": 43600 + }, + { + "epoch": 91.80757097791798, + "grad_norm": 0.6306800842285156, + "learning_rate": 4.110294117647059e-06, + "loss": 0.34394527435302735, + "step": 43700 + }, + { + "epoch": 92.01682439537329, + "grad_norm": 0.559008777141571, + "learning_rate": 4.005252100840336e-06, + "loss": 0.3423053741455078, + "step": 43800 + }, + { + "epoch": 92.22712933753944, + "grad_norm": 0.5939933657646179, + "learning_rate": 3.900210084033614e-06, + "loss": 0.33797637939453123, + "step": 43900 + }, + { + "epoch": 92.43743427970557, + "grad_norm": 0.6135221719741821, + "learning_rate": 3.795168067226891e-06, + "loss": 0.3408375930786133, + "step": 44000 + }, + { + "epoch": 92.64773922187172, + "grad_norm": 0.5870836973190308, + "learning_rate": 3.690126050420168e-06, + "loss": 0.34073463439941404, + "step": 44100 + }, + { + "epoch": 92.85804416403785, + "grad_norm": 0.5811474323272705, + "learning_rate": 3.5850840336134456e-06, + "loss": 0.34040855407714843, + "step": 44200 + }, + { + "epoch": 93.06729758149316, + "grad_norm": 0.5979830026626587, + "learning_rate": 3.4800420168067227e-06, + "loss": 0.3395253753662109, + "step": 44300 + }, + { + "epoch": 93.27760252365931, + "grad_norm": 0.5824161171913147, + "learning_rate": 3.3750000000000003e-06, + "loss": 0.3389311981201172, + "step": 44400 + }, + { + "epoch": 93.48790746582544, + "grad_norm": 0.5694940090179443, + "learning_rate": 3.2699579831932774e-06, + "loss": 0.337044792175293, + "step": 44500 + }, + { + "epoch": 93.69821240799159, + "grad_norm": 0.6112421154975891, + "learning_rate": 3.164915966386555e-06, + "loss": 0.33819969177246095, + "step": 44600 + }, + { + "epoch": 93.90851735015772, + "grad_norm": 0.610955536365509, + "learning_rate": 3.059873949579832e-06, + "loss": 0.33944580078125, + "step": 44700 + }, + { + "epoch": 94.11777076761304, + "grad_norm": 0.6398776769638062, + "learning_rate": 2.9548319327731093e-06, + "loss": 0.33618770599365233, + "step": 44800 + }, + { + "epoch": 94.32807570977918, + "grad_norm": 0.5934144854545593, + "learning_rate": 2.849789915966387e-06, + "loss": 0.3384376525878906, + "step": 44900 + }, + { + "epoch": 94.53838065194532, + "grad_norm": 0.6144473552703857, + "learning_rate": 2.744747899159664e-06, + "loss": 0.3383865737915039, + "step": 45000 + }, + { + "epoch": 94.74868559411146, + "grad_norm": 0.5490454435348511, + "learning_rate": 2.6397058823529415e-06, + "loss": 0.33671878814697265, + "step": 45100 + }, + { + "epoch": 94.9589905362776, + "grad_norm": 0.5695416331291199, + "learning_rate": 2.5346638655462187e-06, + "loss": 0.3379853820800781, + "step": 45200 + }, + { + "epoch": 95.16824395373291, + "grad_norm": 0.5724055767059326, + "learning_rate": 2.429621848739496e-06, + "loss": 0.3338408660888672, + "step": 45300 + }, + { + "epoch": 95.37854889589906, + "grad_norm": 0.594022810459137, + "learning_rate": 2.3245798319327734e-06, + "loss": 0.3349121475219727, + "step": 45400 + }, + { + "epoch": 95.58885383806519, + "grad_norm": 0.5594576597213745, + "learning_rate": 2.2205882352941175e-06, + "loss": 0.33595680236816405, + "step": 45500 + }, + { + "epoch": 95.79915878023134, + "grad_norm": 0.5346081852912903, + "learning_rate": 2.115546218487395e-06, + "loss": 0.33520328521728515, + "step": 45600 + }, + { + "epoch": 96.00841219768665, + "grad_norm": 0.5849393606185913, + "learning_rate": 2.0105042016806722e-06, + "loss": 0.3334170913696289, + "step": 45700 + }, + { + "epoch": 96.21871713985279, + "grad_norm": 0.5918118357658386, + "learning_rate": 1.9054621848739498e-06, + "loss": 0.3329995346069336, + "step": 45800 + }, + { + "epoch": 96.42902208201893, + "grad_norm": 0.6012352705001831, + "learning_rate": 1.800420168067227e-06, + "loss": 0.3329520416259766, + "step": 45900 + }, + { + "epoch": 96.63932702418506, + "grad_norm": 0.5281354784965515, + "learning_rate": 1.6953781512605043e-06, + "loss": 0.3343208694458008, + "step": 46000 + }, + { + "epoch": 96.84963196635121, + "grad_norm": 0.5566437244415283, + "learning_rate": 1.5903361344537816e-06, + "loss": 0.33319324493408203, + "step": 46100 + }, + { + "epoch": 97.05888538380653, + "grad_norm": 0.62099689245224, + "learning_rate": 1.486344537815126e-06, + "loss": 0.33431713104248045, + "step": 46200 + }, + { + "epoch": 97.26919032597266, + "grad_norm": 0.5787718892097473, + "learning_rate": 1.3813025210084034e-06, + "loss": 0.3314530944824219, + "step": 46300 + }, + { + "epoch": 97.4794952681388, + "grad_norm": 0.5509923100471497, + "learning_rate": 1.2762605042016807e-06, + "loss": 0.3316763305664063, + "step": 46400 + }, + { + "epoch": 97.68980021030494, + "grad_norm": 0.5569334030151367, + "learning_rate": 1.171218487394958e-06, + "loss": 0.3315643310546875, + "step": 46500 + }, + { + "epoch": 97.90010515247108, + "grad_norm": 0.5476507544517517, + "learning_rate": 1.0661764705882354e-06, + "loss": 0.33233203887939455, + "step": 46600 + }, + { + "epoch": 98.1093585699264, + "grad_norm": 0.5630120038986206, + "learning_rate": 9.611344537815128e-07, + "loss": 0.33105762481689455, + "step": 46700 + }, + { + "epoch": 98.31966351209253, + "grad_norm": 0.5520943999290466, + "learning_rate": 8.5609243697479e-07, + "loss": 0.3307930374145508, + "step": 46800 + }, + { + "epoch": 98.52996845425868, + "grad_norm": 0.5917891263961792, + "learning_rate": 7.510504201680673e-07, + "loss": 0.3318499755859375, + "step": 46900 + }, + { + "epoch": 98.74027339642481, + "grad_norm": 0.5395123362541199, + "learning_rate": 6.460084033613445e-07, + "loss": 0.330290412902832, + "step": 47000 + }, + { + "epoch": 98.95057833859096, + "grad_norm": 0.5702670216560364, + "learning_rate": 5.409663865546218e-07, + "loss": 0.33196086883544923, + "step": 47100 + }, + { + "epoch": 99.15983175604627, + "grad_norm": 0.5607645511627197, + "learning_rate": 4.359243697478992e-07, + "loss": 0.3293312454223633, + "step": 47200 + }, + { + "epoch": 99.3701366982124, + "grad_norm": 0.6061931848526001, + "learning_rate": 3.308823529411765e-07, + "loss": 0.3300600051879883, + "step": 47300 + } + ], + "logging_steps": 100, + "max_steps": 47600, + "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": 3.0478184513593344e+16, + "train_batch_size": 8, + "trial_name": null, + "trial_params": null +} diff --git a/timecost/n11/realtabformer/rtf-n11-20260501_010320/rtf_checkpoints/checkpoint-47300/training_args.bin b/timecost/n11/realtabformer/rtf-n11-20260501_010320/rtf_checkpoints/checkpoint-47300/training_args.bin new file mode 100644 index 0000000000000000000000000000000000000000..34d68dc0e0fe1c1f12a2e581dd1b166aa7178a9e --- /dev/null +++ b/timecost/n11/realtabformer/rtf-n11-20260501_010320/rtf_checkpoints/checkpoint-47300/training_args.bin @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:9e2cd88337d1d846c6918d2b3b63fa3e5c93f12fefc082497590da854a564607 +size 5201 diff --git a/timecost/n11/realtabformer/rtf-n11-20260501_010320/rtf_checkpoints/checkpoint-47400/config.json b/timecost/n11/realtabformer/rtf-n11-20260501_010320/rtf_checkpoints/checkpoint-47400/config.json new file mode 100644 index 0000000000000000000000000000000000000000..605aa5aa48fc96b6c3133032a3e66cd18090e70a --- /dev/null +++ b/timecost/n11/realtabformer/rtf-n11-20260501_010320/rtf_checkpoints/checkpoint-47400/config.json @@ -0,0 +1,34 @@ +{ + "activation_function": "gelu_new", + "add_cross_attention": false, + "architectures": [ + "GPT2LMHeadModel" + ], + "attn_pdrop": 0.1, + "bos_token_id": 5, + "dtype": "float32", + "embd_pdrop": 0.1, + "eos_token_id": 6, + "initializer_range": 0.02, + "layer_norm_epsilon": 1e-05, + "model_type": "gpt2", + "n_embd": 768, + "n_head": 12, + "n_inner": null, + "n_layer": 6, + "n_positions": 1024, + "pad_token_id": null, + "reorder_and_upcast_attn": false, + "resid_pdrop": 0.1, + "scale_attn_by_inverse_layer_idx": false, + "scale_attn_weights": true, + "summary_activation": null, + "summary_first_dropout": 0.1, + "summary_proj_to_labels": true, + "summary_type": "cls_index", + "summary_use_proj": true, + "tie_word_embeddings": true, + "transformers_version": "5.5.3", + "use_cache": false, + "vocab_size": 597 +} diff --git a/timecost/n11/realtabformer/rtf-n11-20260501_010320/rtf_checkpoints/checkpoint-47400/generation_config.json b/timecost/n11/realtabformer/rtf-n11-20260501_010320/rtf_checkpoints/checkpoint-47400/generation_config.json new file mode 100644 index 0000000000000000000000000000000000000000..ffe89567780e75b5c22eade9be971483b9618f39 --- /dev/null +++ b/timecost/n11/realtabformer/rtf-n11-20260501_010320/rtf_checkpoints/checkpoint-47400/generation_config.json @@ -0,0 +1,9 @@ +{ + "_from_model_config": true, + "bos_token_id": 5, + "eos_token_id": 6, + "output_attentions": false, + "output_hidden_states": false, + "transformers_version": "5.5.3", + "use_cache": true +} diff --git a/timecost/n11/realtabformer/rtf-n11-20260501_010320/rtf_checkpoints/checkpoint-47400/model.safetensors b/timecost/n11/realtabformer/rtf-n11-20260501_010320/rtf_checkpoints/checkpoint-47400/model.safetensors new file mode 100644 index 0000000000000000000000000000000000000000..cda5a1722df69bde07b6a61b5692370aaba422ef --- /dev/null +++ b/timecost/n11/realtabformer/rtf-n11-20260501_010320/rtf_checkpoints/checkpoint-47400/model.safetensors @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:9d4185db7493b83c229095f9fafd9a38cf04ce33c0f361dd07b0ade343b5c4b0 +size 175102408 diff --git a/timecost/n11/realtabformer/rtf-n11-20260501_010320/rtf_checkpoints/checkpoint-47400/optimizer.pt b/timecost/n11/realtabformer/rtf-n11-20260501_010320/rtf_checkpoints/checkpoint-47400/optimizer.pt new file mode 100644 index 0000000000000000000000000000000000000000..a064d108bd680609e780763d4a960d8c886cca93 --- /dev/null +++ b/timecost/n11/realtabformer/rtf-n11-20260501_010320/rtf_checkpoints/checkpoint-47400/optimizer.pt @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:a65008c4d9921678f6134bbb2fac4ee6b822ccc4a2c4166b203443583a7fffe7 +size 350253899 diff --git a/timecost/n11/realtabformer/rtf-n11-20260501_010320/rtf_checkpoints/checkpoint-47400/rng_state.pth b/timecost/n11/realtabformer/rtf-n11-20260501_010320/rtf_checkpoints/checkpoint-47400/rng_state.pth new file mode 100644 index 0000000000000000000000000000000000000000..a6cfbdb52b741d15e06a8ebbb39d051716dd911f --- /dev/null +++ b/timecost/n11/realtabformer/rtf-n11-20260501_010320/rtf_checkpoints/checkpoint-47400/rng_state.pth @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:4afd53189a740dbc2115a3db137fe82d3d508dc52c2d48040786c19702e8a9ef +size 14645 diff --git a/timecost/n11/realtabformer/rtf-n11-20260501_010320/rtf_checkpoints/checkpoint-47400/scaler.pt b/timecost/n11/realtabformer/rtf-n11-20260501_010320/rtf_checkpoints/checkpoint-47400/scaler.pt new file mode 100644 index 0000000000000000000000000000000000000000..78b9288e9cd61448cbc3f7f30b7220bcf275cc1f --- /dev/null +++ b/timecost/n11/realtabformer/rtf-n11-20260501_010320/rtf_checkpoints/checkpoint-47400/scaler.pt @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:e17ea719f0c1642fe4c1b1f994b46569ab9bfe5f0cbdf2dee742451ede1f896e +size 1383 diff --git a/timecost/n11/realtabformer/rtf-n11-20260501_010320/rtf_checkpoints/checkpoint-47400/scheduler.pt b/timecost/n11/realtabformer/rtf-n11-20260501_010320/rtf_checkpoints/checkpoint-47400/scheduler.pt new file mode 100644 index 0000000000000000000000000000000000000000..2101c8ed2275c395903dddc5b6eecc8111a5eacb --- /dev/null +++ b/timecost/n11/realtabformer/rtf-n11-20260501_010320/rtf_checkpoints/checkpoint-47400/scheduler.pt @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:cfad11a767d99b9f8986ad4617d25e646d3cff0fd9e8c261537eb02dc819d96f +size 1465 diff --git a/timecost/n11/realtabformer/rtf-n11-20260501_010320/rtf_checkpoints/checkpoint-47400/trainer_state.json b/timecost/n11/realtabformer/rtf-n11-20260501_010320/rtf_checkpoints/checkpoint-47400/trainer_state.json new file mode 100644 index 0000000000000000000000000000000000000000..85503238db95d3554fd339e5490c7d7e1effda90 --- /dev/null +++ b/timecost/n11/realtabformer/rtf-n11-20260501_010320/rtf_checkpoints/checkpoint-47400/trainer_state.json @@ -0,0 +1,3352 @@ +{ + "best_global_step": null, + "best_metric": null, + "best_model_checkpoint": null, + "epoch": 99.58044164037855, + "eval_steps": 100, + "global_step": 47400, + "is_hyper_param_search": false, + "is_local_process_zero": true, + "is_world_process_zero": true, + "log_history": [ + { + "epoch": 0.2103049421661409, + "grad_norm": 0.22972723841667175, + "learning_rate": 4.989600840336135e-05, + "loss": 2.8563604736328125, + "step": 100 + }, + { + "epoch": 0.4206098843322818, + "grad_norm": 0.20056591928005219, + "learning_rate": 4.9790966386554624e-05, + "loss": 1.7068206787109375, + "step": 200 + }, + { + "epoch": 0.6309148264984227, + "grad_norm": 0.1861766129732132, + "learning_rate": 4.9685924369747897e-05, + "loss": 1.6134432983398437, + "step": 300 + }, + { + "epoch": 0.8412197686645636, + "grad_norm": 0.1723501980304718, + "learning_rate": 4.9580882352941176e-05, + "loss": 1.5735923767089843, + "step": 400 + }, + { + "epoch": 1.0504731861198737, + "grad_norm": 0.17238108813762665, + "learning_rate": 4.9475840336134455e-05, + "loss": 1.5529734802246093, + "step": 500 + }, + { + "epoch": 1.2607781282860147, + "grad_norm": 0.17322759330272675, + "learning_rate": 4.9370798319327734e-05, + "loss": 1.536485137939453, + "step": 600 + }, + { + "epoch": 1.4710830704521556, + "grad_norm": 0.1677761971950531, + "learning_rate": 4.926575630252101e-05, + "loss": 1.5277809143066405, + "step": 700 + }, + { + "epoch": 1.6813880126182965, + "grad_norm": 0.1636463701725006, + "learning_rate": 4.9160714285714286e-05, + "loss": 1.5190211486816407, + "step": 800 + }, + { + "epoch": 1.8916929547844374, + "grad_norm": 0.16561312973499298, + "learning_rate": 4.9055672268907565e-05, + "loss": 1.51519287109375, + "step": 900 + }, + { + "epoch": 2.1009463722397475, + "grad_norm": 0.15477420389652252, + "learning_rate": 4.8950630252100845e-05, + "loss": 1.5094300842285155, + "step": 1000 + }, + { + "epoch": 2.3112513144058884, + "grad_norm": 0.16169467568397522, + "learning_rate": 4.8845588235294124e-05, + "loss": 1.503891143798828, + "step": 1100 + }, + { + "epoch": 2.5215562565720293, + "grad_norm": 0.1625037044286728, + "learning_rate": 4.8740546218487396e-05, + "loss": 1.5003668212890624, + "step": 1200 + }, + { + "epoch": 2.7318611987381702, + "grad_norm": 0.15850616991519928, + "learning_rate": 4.8635504201680676e-05, + "loss": 1.5004425048828125, + "step": 1300 + }, + { + "epoch": 2.942166140904311, + "grad_norm": 0.15703575313091278, + "learning_rate": 4.8530462184873955e-05, + "loss": 1.4983340454101564, + "step": 1400 + }, + { + "epoch": 3.1514195583596214, + "grad_norm": 0.16104279458522797, + "learning_rate": 4.8425420168067234e-05, + "loss": 1.4921080017089843, + "step": 1500 + }, + { + "epoch": 3.3617245005257623, + "grad_norm": 0.15719465911388397, + "learning_rate": 4.8320378151260507e-05, + "loss": 1.4903582763671874, + "step": 1600 + }, + { + "epoch": 3.5720294426919033, + "grad_norm": 0.15651755034923553, + "learning_rate": 4.821533613445378e-05, + "loss": 1.4904457092285157, + "step": 1700 + }, + { + "epoch": 3.782334384858044, + "grad_norm": 0.14600972831249237, + "learning_rate": 4.811029411764706e-05, + "loss": 1.4897219848632812, + "step": 1800 + }, + { + "epoch": 3.992639327024185, + "grad_norm": 0.15000982582569122, + "learning_rate": 4.800525210084034e-05, + "loss": 1.4866799926757812, + "step": 1900 + }, + { + "epoch": 4.201892744479495, + "grad_norm": 0.1467936933040619, + "learning_rate": 4.790021008403362e-05, + "loss": 1.48007080078125, + "step": 2000 + }, + { + "epoch": 4.412197686645636, + "grad_norm": 0.1541317105293274, + "learning_rate": 4.779516806722689e-05, + "loss": 1.48170166015625, + "step": 2100 + }, + { + "epoch": 4.622502628811777, + "grad_norm": 0.15136213600635529, + "learning_rate": 4.769012605042017e-05, + "loss": 1.4820193481445312, + "step": 2200 + }, + { + "epoch": 4.832807570977918, + "grad_norm": 0.15268521010875702, + "learning_rate": 4.758508403361345e-05, + "loss": 1.4826155090332032, + "step": 2300 + }, + { + "epoch": 5.042060988433228, + "grad_norm": 0.1507953554391861, + "learning_rate": 4.748004201680673e-05, + "loss": 1.4825518798828126, + "step": 2400 + }, + { + "epoch": 5.252365930599369, + "grad_norm": 0.15759222209453583, + "learning_rate": 4.7375e-05, + "loss": 1.4742916870117186, + "step": 2500 + }, + { + "epoch": 5.46267087276551, + "grad_norm": 0.1464644968509674, + "learning_rate": 4.726995798319328e-05, + "loss": 1.47645751953125, + "step": 2600 + }, + { + "epoch": 5.672975814931651, + "grad_norm": 0.1496453732252121, + "learning_rate": 4.716491596638656e-05, + "loss": 1.4782669067382812, + "step": 2700 + }, + { + "epoch": 5.883280757097792, + "grad_norm": 0.15732301771640778, + "learning_rate": 4.705987394957984e-05, + "loss": 1.474007110595703, + "step": 2800 + }, + { + "epoch": 6.092534174553102, + "grad_norm": 0.1535627543926239, + "learning_rate": 4.6954831932773117e-05, + "loss": 1.4723405456542968, + "step": 2900 + }, + { + "epoch": 6.302839116719243, + "grad_norm": 0.15365540981292725, + "learning_rate": 4.684978991596639e-05, + "loss": 1.470570068359375, + "step": 3000 + }, + { + "epoch": 6.513144058885384, + "grad_norm": 0.15696321427822113, + "learning_rate": 4.674474789915967e-05, + "loss": 1.4713912963867188, + "step": 3100 + }, + { + "epoch": 6.723449001051525, + "grad_norm": 0.1542283147573471, + "learning_rate": 4.663970588235294e-05, + "loss": 1.4717630004882813, + "step": 3200 + }, + { + "epoch": 6.933753943217665, + "grad_norm": 0.14150017499923706, + "learning_rate": 4.653466386554622e-05, + "loss": 1.4702410888671875, + "step": 3300 + }, + { + "epoch": 7.143007360672976, + "grad_norm": 0.1593707650899887, + "learning_rate": 4.64296218487395e-05, + "loss": 1.4674795532226563, + "step": 3400 + }, + { + "epoch": 7.353312302839116, + "grad_norm": 0.14085018634796143, + "learning_rate": 4.632457983193277e-05, + "loss": 1.4630509948730468, + "step": 3500 + }, + { + "epoch": 7.563617245005258, + "grad_norm": 0.15045367181301117, + "learning_rate": 4.621953781512605e-05, + "loss": 1.464947509765625, + "step": 3600 + }, + { + "epoch": 7.773922187171398, + "grad_norm": 0.1627761274576187, + "learning_rate": 4.611449579831933e-05, + "loss": 1.4676199340820313, + "step": 3700 + }, + { + "epoch": 7.9842271293375395, + "grad_norm": 0.15296733379364014, + "learning_rate": 4.600945378151261e-05, + "loss": 1.464564208984375, + "step": 3800 + }, + { + "epoch": 8.19348054679285, + "grad_norm": 0.15292306244373322, + "learning_rate": 4.590441176470588e-05, + "loss": 1.460281982421875, + "step": 3900 + }, + { + "epoch": 8.40378548895899, + "grad_norm": 0.14858974516391754, + "learning_rate": 4.579936974789916e-05, + "loss": 1.4601573181152343, + "step": 4000 + }, + { + "epoch": 8.614090431125131, + "grad_norm": 0.1559685617685318, + "learning_rate": 4.569432773109244e-05, + "loss": 1.459988555908203, + "step": 4100 + }, + { + "epoch": 8.824395373291273, + "grad_norm": 0.16048291325569153, + "learning_rate": 4.558928571428572e-05, + "loss": 1.4614971923828124, + "step": 4200 + }, + { + "epoch": 9.033648790746582, + "grad_norm": 0.15471497178077698, + "learning_rate": 4.548424369747899e-05, + "loss": 1.4605735778808593, + "step": 4300 + }, + { + "epoch": 9.243953732912724, + "grad_norm": 0.14675338566303253, + "learning_rate": 4.537920168067227e-05, + "loss": 1.4529206848144531, + "step": 4400 + }, + { + "epoch": 9.454258675078865, + "grad_norm": 0.15218420326709747, + "learning_rate": 4.527415966386555e-05, + "loss": 1.4555152893066405, + "step": 4500 + }, + { + "epoch": 9.664563617245005, + "grad_norm": 0.15305759012699127, + "learning_rate": 4.516911764705883e-05, + "loss": 1.4550628662109375, + "step": 4600 + }, + { + "epoch": 9.874868559411146, + "grad_norm": 0.14932408928871155, + "learning_rate": 4.50640756302521e-05, + "loss": 1.4576924133300782, + "step": 4700 + }, + { + "epoch": 10.084121976866456, + "grad_norm": 0.15317517518997192, + "learning_rate": 4.4959033613445375e-05, + "loss": 1.45219482421875, + "step": 4800 + }, + { + "epoch": 10.294426919032597, + "grad_norm": 0.14954303205013275, + "learning_rate": 4.4853991596638654e-05, + "loss": 1.4481625366210937, + "step": 4900 + }, + { + "epoch": 10.504731861198739, + "grad_norm": 0.1534873992204666, + "learning_rate": 4.4748949579831934e-05, + "loss": 1.4501405334472657, + "step": 5000 + }, + { + "epoch": 10.715036803364878, + "grad_norm": 0.1542547196149826, + "learning_rate": 4.464390756302521e-05, + "loss": 1.452711181640625, + "step": 5100 + }, + { + "epoch": 10.92534174553102, + "grad_norm": 0.15033429861068726, + "learning_rate": 4.453886554621849e-05, + "loss": 1.4518144226074219, + "step": 5200 + }, + { + "epoch": 11.13459516298633, + "grad_norm": 0.16419348120689392, + "learning_rate": 4.4433823529411765e-05, + "loss": 1.4447087097167968, + "step": 5300 + }, + { + "epoch": 11.34490010515247, + "grad_norm": 0.15558737516403198, + "learning_rate": 4.4328781512605044e-05, + "loss": 1.4432438659667968, + "step": 5400 + }, + { + "epoch": 11.555205047318612, + "grad_norm": 0.16111871600151062, + "learning_rate": 4.422373949579832e-05, + "loss": 1.44447509765625, + "step": 5500 + }, + { + "epoch": 11.765509989484753, + "grad_norm": 0.15655963122844696, + "learning_rate": 4.41186974789916e-05, + "loss": 1.446072998046875, + "step": 5600 + }, + { + "epoch": 11.975814931650893, + "grad_norm": 0.1640811264514923, + "learning_rate": 4.4013655462184875e-05, + "loss": 1.4470193481445313, + "step": 5700 + }, + { + "epoch": 12.185068349106205, + "grad_norm": 0.16302675008773804, + "learning_rate": 4.3908613445378154e-05, + "loss": 1.4352632141113282, + "step": 5800 + }, + { + "epoch": 12.395373291272344, + "grad_norm": 0.16527259349822998, + "learning_rate": 4.380357142857143e-05, + "loss": 1.4378224182128907, + "step": 5900 + }, + { + "epoch": 12.605678233438486, + "grad_norm": 0.15840137004852295, + "learning_rate": 4.369852941176471e-05, + "loss": 1.438340301513672, + "step": 6000 + }, + { + "epoch": 12.815983175604627, + "grad_norm": 0.16105377674102783, + "learning_rate": 4.3593487394957985e-05, + "loss": 1.4395623779296876, + "step": 6100 + }, + { + "epoch": 13.025236593059937, + "grad_norm": 0.1645898073911667, + "learning_rate": 4.348844537815126e-05, + "loss": 1.4419912719726562, + "step": 6200 + }, + { + "epoch": 13.235541535226078, + "grad_norm": 0.16387709975242615, + "learning_rate": 4.338340336134454e-05, + "loss": 1.4292103576660156, + "step": 6300 + }, + { + "epoch": 13.44584647739222, + "grad_norm": 0.16231203079223633, + "learning_rate": 4.3278361344537816e-05, + "loss": 1.4302072143554687, + "step": 6400 + }, + { + "epoch": 13.656151419558359, + "grad_norm": 0.17272767424583435, + "learning_rate": 4.3173319327731095e-05, + "loss": 1.4360617065429688, + "step": 6500 + }, + { + "epoch": 13.8664563617245, + "grad_norm": 0.16650696098804474, + "learning_rate": 4.306827731092437e-05, + "loss": 1.43187744140625, + "step": 6600 + }, + { + "epoch": 14.07570977917981, + "grad_norm": 0.17131085693836212, + "learning_rate": 4.296323529411765e-05, + "loss": 1.428362579345703, + "step": 6700 + }, + { + "epoch": 14.286014721345952, + "grad_norm": 0.1767681986093521, + "learning_rate": 4.2858193277310926e-05, + "loss": 1.4247616577148436, + "step": 6800 + }, + { + "epoch": 14.496319663512093, + "grad_norm": 0.17670001089572906, + "learning_rate": 4.2753151260504206e-05, + "loss": 1.4254454040527345, + "step": 6900 + }, + { + "epoch": 14.706624605678233, + "grad_norm": 0.1740790754556656, + "learning_rate": 4.2648109243697485e-05, + "loss": 1.4258729553222655, + "step": 7000 + }, + { + "epoch": 14.916929547844374, + "grad_norm": 0.1759176403284073, + "learning_rate": 4.254306722689076e-05, + "loss": 1.429442138671875, + "step": 7100 + }, + { + "epoch": 15.126182965299684, + "grad_norm": 0.17811505496501923, + "learning_rate": 4.2438025210084037e-05, + "loss": 1.4193470764160157, + "step": 7200 + }, + { + "epoch": 15.336487907465825, + "grad_norm": 0.1877354234457016, + "learning_rate": 4.2332983193277316e-05, + "loss": 1.4145277404785157, + "step": 7300 + }, + { + "epoch": 15.546792849631967, + "grad_norm": 0.18199266493320465, + "learning_rate": 4.2227941176470595e-05, + "loss": 1.4196495056152343, + "step": 7400 + }, + { + "epoch": 15.757097791798108, + "grad_norm": 0.18197669088840485, + "learning_rate": 4.212289915966387e-05, + "loss": 1.418301544189453, + "step": 7500 + }, + { + "epoch": 15.967402733964247, + "grad_norm": 0.1789412796497345, + "learning_rate": 4.201785714285714e-05, + "loss": 1.4207553100585937, + "step": 7600 + }, + { + "epoch": 16.176656151419557, + "grad_norm": 0.19073587656021118, + "learning_rate": 4.191281512605042e-05, + "loss": 1.405756072998047, + "step": 7700 + }, + { + "epoch": 16.3869610935857, + "grad_norm": 0.20197375118732452, + "learning_rate": 4.18077731092437e-05, + "loss": 1.4052299499511718, + "step": 7800 + }, + { + "epoch": 16.59726603575184, + "grad_norm": 0.19041137397289276, + "learning_rate": 4.170273109243698e-05, + "loss": 1.4102354431152344, + "step": 7900 + }, + { + "epoch": 16.80757097791798, + "grad_norm": 0.18918046355247498, + "learning_rate": 4.159768907563025e-05, + "loss": 1.4105937194824218, + "step": 8000 + }, + { + "epoch": 17.01682439537329, + "grad_norm": 0.20001663267612457, + "learning_rate": 4.149264705882353e-05, + "loss": 1.4125469970703124, + "step": 8100 + }, + { + "epoch": 17.22712933753943, + "grad_norm": 0.20373570919036865, + "learning_rate": 4.138760504201681e-05, + "loss": 1.3912005615234375, + "step": 8200 + }, + { + "epoch": 17.437434279705574, + "grad_norm": 0.21228203177452087, + "learning_rate": 4.128256302521009e-05, + "loss": 1.400099334716797, + "step": 8300 + }, + { + "epoch": 17.647739221871714, + "grad_norm": 0.19748076796531677, + "learning_rate": 4.117752100840336e-05, + "loss": 1.3983584594726564, + "step": 8400 + }, + { + "epoch": 17.858044164037857, + "grad_norm": 0.19849108159542084, + "learning_rate": 4.107247899159664e-05, + "loss": 1.4034251403808593, + "step": 8500 + }, + { + "epoch": 18.067297581493165, + "grad_norm": 0.20575450360774994, + "learning_rate": 4.096743697478992e-05, + "loss": 1.3967425537109375, + "step": 8600 + }, + { + "epoch": 18.277602523659304, + "grad_norm": 0.21221311390399933, + "learning_rate": 4.08623949579832e-05, + "loss": 1.3828977966308593, + "step": 8700 + }, + { + "epoch": 18.487907465825447, + "grad_norm": 0.21134966611862183, + "learning_rate": 4.075735294117648e-05, + "loss": 1.3854733276367188, + "step": 8800 + }, + { + "epoch": 18.698212407991587, + "grad_norm": 0.22016377747058868, + "learning_rate": 4.065231092436975e-05, + "loss": 1.3901968383789063, + "step": 8900 + }, + { + "epoch": 18.90851735015773, + "grad_norm": 0.21417804062366486, + "learning_rate": 4.054726890756303e-05, + "loss": 1.393634033203125, + "step": 9000 + }, + { + "epoch": 19.117770767613038, + "grad_norm": 0.22256560623645782, + "learning_rate": 4.04422268907563e-05, + "loss": 1.3783042907714844, + "step": 9100 + }, + { + "epoch": 19.32807570977918, + "grad_norm": 0.22738981246948242, + "learning_rate": 4.033718487394958e-05, + "loss": 1.370293426513672, + "step": 9200 + }, + { + "epoch": 19.53838065194532, + "grad_norm": 0.22241266071796417, + "learning_rate": 4.023214285714286e-05, + "loss": 1.3737275695800781, + "step": 9300 + }, + { + "epoch": 19.74868559411146, + "grad_norm": 0.23391330242156982, + "learning_rate": 4.012710084033613e-05, + "loss": 1.377355194091797, + "step": 9400 + }, + { + "epoch": 19.958990536277604, + "grad_norm": 0.22519543766975403, + "learning_rate": 4.002205882352941e-05, + "loss": 1.3812960815429687, + "step": 9500 + }, + { + "epoch": 20.16824395373291, + "grad_norm": 0.24074196815490723, + "learning_rate": 3.991701680672269e-05, + "loss": 1.3570118713378907, + "step": 9600 + }, + { + "epoch": 20.378548895899055, + "grad_norm": 0.24606694281101227, + "learning_rate": 3.981197478991597e-05, + "loss": 1.3554267883300781, + "step": 9700 + }, + { + "epoch": 20.588853838065194, + "grad_norm": 0.23913830518722534, + "learning_rate": 3.970693277310924e-05, + "loss": 1.3621504211425781, + "step": 9800 + }, + { + "epoch": 20.799158780231334, + "grad_norm": 0.2383037805557251, + "learning_rate": 3.960189075630252e-05, + "loss": 1.3660731506347656, + "step": 9900 + }, + { + "epoch": 21.008412197686646, + "grad_norm": 0.241073340177536, + "learning_rate": 3.94968487394958e-05, + "loss": 1.3653842163085939, + "step": 10000 + }, + { + "epoch": 21.218717139852785, + "grad_norm": 0.25740981101989746, + "learning_rate": 3.939180672268908e-05, + "loss": 1.3331489562988281, + "step": 10100 + }, + { + "epoch": 21.42902208201893, + "grad_norm": 0.25830078125, + "learning_rate": 3.928676470588235e-05, + "loss": 1.3397677612304688, + "step": 10200 + }, + { + "epoch": 21.639327024185068, + "grad_norm": 0.26326829195022583, + "learning_rate": 3.918172268907563e-05, + "loss": 1.3485836791992187, + "step": 10300 + }, + { + "epoch": 21.84963196635121, + "grad_norm": 0.26259171962738037, + "learning_rate": 3.907668067226891e-05, + "loss": 1.3472573852539063, + "step": 10400 + }, + { + "epoch": 22.05888538380652, + "grad_norm": 0.27395525574684143, + "learning_rate": 3.897163865546219e-05, + "loss": 1.3426994323730468, + "step": 10500 + }, + { + "epoch": 22.26919032597266, + "grad_norm": 0.2820175290107727, + "learning_rate": 3.8866596638655463e-05, + "loss": 1.3179571533203125, + "step": 10600 + }, + { + "epoch": 22.479495268138802, + "grad_norm": 0.2815999984741211, + "learning_rate": 3.8761554621848736e-05, + "loss": 1.3242898559570313, + "step": 10700 + }, + { + "epoch": 22.68980021030494, + "grad_norm": 0.2788920998573303, + "learning_rate": 3.8656512605042015e-05, + "loss": 1.328133087158203, + "step": 10800 + }, + { + "epoch": 22.900105152471085, + "grad_norm": 0.2880179286003113, + "learning_rate": 3.8551470588235294e-05, + "loss": 1.3323233032226562, + "step": 10900 + }, + { + "epoch": 23.109358569926393, + "grad_norm": 0.29323825240135193, + "learning_rate": 3.8446428571428574e-05, + "loss": 1.3124215698242188, + "step": 11000 + }, + { + "epoch": 23.319663512092536, + "grad_norm": 0.3037724196910858, + "learning_rate": 3.834138655462185e-05, + "loss": 1.300673370361328, + "step": 11100 + }, + { + "epoch": 23.529968454258675, + "grad_norm": 0.3019108772277832, + "learning_rate": 3.8236344537815125e-05, + "loss": 1.3033621215820312, + "step": 11200 + }, + { + "epoch": 23.740273396424815, + "grad_norm": 0.3141040503978729, + "learning_rate": 3.8131302521008405e-05, + "loss": 1.3118415832519532, + "step": 11300 + }, + { + "epoch": 23.950578338590958, + "grad_norm": 0.305362731218338, + "learning_rate": 3.8026260504201684e-05, + "loss": 1.3120425415039063, + "step": 11400 + }, + { + "epoch": 24.159831756046266, + "grad_norm": 0.3149303197860718, + "learning_rate": 3.792121848739496e-05, + "loss": 1.281750946044922, + "step": 11500 + }, + { + "epoch": 24.37013669821241, + "grad_norm": 0.31983524560928345, + "learning_rate": 3.7816176470588236e-05, + "loss": 1.2786111450195312, + "step": 11600 + }, + { + "epoch": 24.58044164037855, + "grad_norm": 0.32351240515708923, + "learning_rate": 3.7711134453781515e-05, + "loss": 1.284888916015625, + "step": 11700 + }, + { + "epoch": 24.79074658254469, + "grad_norm": 0.3239966034889221, + "learning_rate": 3.7606092436974794e-05, + "loss": 1.2899176025390624, + "step": 11800 + }, + { + "epoch": 25.0, + "grad_norm": 0.49487531185150146, + "learning_rate": 3.7501050420168073e-05, + "loss": 1.2903105163574218, + "step": 11900 + }, + { + "epoch": 25.21030494216614, + "grad_norm": 0.343091756105423, + "learning_rate": 3.7396008403361346e-05, + "loss": 1.24728271484375, + "step": 12000 + }, + { + "epoch": 25.420609884332283, + "grad_norm": 0.3502146899700165, + "learning_rate": 3.729096638655462e-05, + "loss": 1.2573788452148438, + "step": 12100 + }, + { + "epoch": 25.630914826498422, + "grad_norm": 0.34780803322792053, + "learning_rate": 3.71859243697479e-05, + "loss": 1.259660186767578, + "step": 12200 + }, + { + "epoch": 25.841219768664562, + "grad_norm": 0.3617474436759949, + "learning_rate": 3.708088235294118e-05, + "loss": 1.267321548461914, + "step": 12300 + }, + { + "epoch": 26.050473186119874, + "grad_norm": 0.36151477694511414, + "learning_rate": 3.6975840336134456e-05, + "loss": 1.2569818878173828, + "step": 12400 + }, + { + "epoch": 26.260778128286013, + "grad_norm": 0.3706369400024414, + "learning_rate": 3.687079831932773e-05, + "loss": 1.2217762756347657, + "step": 12500 + }, + { + "epoch": 26.471083070452156, + "grad_norm": 0.36876797676086426, + "learning_rate": 3.676575630252101e-05, + "loss": 1.2311412048339845, + "step": 12600 + }, + { + "epoch": 26.681388012618296, + "grad_norm": 0.37329521775245667, + "learning_rate": 3.666071428571429e-05, + "loss": 1.23805908203125, + "step": 12700 + }, + { + "epoch": 26.89169295478444, + "grad_norm": 0.3803170919418335, + "learning_rate": 3.6555672268907566e-05, + "loss": 1.2423350524902343, + "step": 12800 + }, + { + "epoch": 27.100946372239747, + "grad_norm": 0.3833712637424469, + "learning_rate": 3.6450630252100846e-05, + "loss": 1.222099609375, + "step": 12900 + }, + { + "epoch": 27.31125131440589, + "grad_norm": 0.3987831771373749, + "learning_rate": 3.634558823529412e-05, + "loss": 1.1973797607421874, + "step": 13000 + }, + { + "epoch": 27.52155625657203, + "grad_norm": 0.39121338725090027, + "learning_rate": 3.62405462184874e-05, + "loss": 1.206004409790039, + "step": 13100 + }, + { + "epoch": 27.73186119873817, + "grad_norm": 0.4020472764968872, + "learning_rate": 3.613550420168068e-05, + "loss": 1.2129373168945312, + "step": 13200 + }, + { + "epoch": 27.942166140904312, + "grad_norm": 0.4015159606933594, + "learning_rate": 3.6030462184873956e-05, + "loss": 1.2179686737060547, + "step": 13300 + }, + { + "epoch": 28.15141955835962, + "grad_norm": 0.3998790681362152, + "learning_rate": 3.592542016806723e-05, + "loss": 1.1833483123779296, + "step": 13400 + }, + { + "epoch": 28.361724500525764, + "grad_norm": 0.4190026819705963, + "learning_rate": 3.582037815126051e-05, + "loss": 1.1737586975097656, + "step": 13500 + }, + { + "epoch": 28.572029442691903, + "grad_norm": 0.4131736159324646, + "learning_rate": 3.571533613445378e-05, + "loss": 1.1806912231445312, + "step": 13600 + }, + { + "epoch": 28.782334384858043, + "grad_norm": 0.4250866174697876, + "learning_rate": 3.561029411764706e-05, + "loss": 1.1913446044921876, + "step": 13700 + }, + { + "epoch": 28.992639327024186, + "grad_norm": 0.4264129400253296, + "learning_rate": 3.550525210084034e-05, + "loss": 1.1878318786621094, + "step": 13800 + }, + { + "epoch": 29.201892744479494, + "grad_norm": 0.43633338809013367, + "learning_rate": 3.540021008403361e-05, + "loss": 1.1386358642578125, + "step": 13900 + }, + { + "epoch": 29.412197686645637, + "grad_norm": 0.4486881494522095, + "learning_rate": 3.529516806722689e-05, + "loss": 1.1477174377441406, + "step": 14000 + }, + { + "epoch": 29.622502628811777, + "grad_norm": 0.4420314133167267, + "learning_rate": 3.519012605042017e-05, + "loss": 1.1530896759033202, + "step": 14100 + }, + { + "epoch": 29.832807570977916, + "grad_norm": 0.4598003327846527, + "learning_rate": 3.508508403361345e-05, + "loss": 1.16252197265625, + "step": 14200 + }, + { + "epoch": 30.042060988433228, + "grad_norm": 0.44520533084869385, + "learning_rate": 3.498004201680672e-05, + "loss": 1.1551103973388672, + "step": 14300 + }, + { + "epoch": 30.252365930599368, + "grad_norm": 0.45871588587760925, + "learning_rate": 3.4875e-05, + "loss": 1.107753448486328, + "step": 14400 + }, + { + "epoch": 30.46267087276551, + "grad_norm": 0.46063199639320374, + "learning_rate": 3.476995798319328e-05, + "loss": 1.1182296752929688, + "step": 14500 + }, + { + "epoch": 30.67297581493165, + "grad_norm": 0.4760204553604126, + "learning_rate": 3.466491596638656e-05, + "loss": 1.129236373901367, + "step": 14600 + }, + { + "epoch": 30.883280757097793, + "grad_norm": 0.47249314188957214, + "learning_rate": 3.455987394957984e-05, + "loss": 1.1352229309082031, + "step": 14700 + }, + { + "epoch": 31.0925341745531, + "grad_norm": 0.4624006450176239, + "learning_rate": 3.445483193277311e-05, + "loss": 1.1082867431640624, + "step": 14800 + }, + { + "epoch": 31.302839116719245, + "grad_norm": 0.4787958264350891, + "learning_rate": 3.434978991596639e-05, + "loss": 1.0818411254882812, + "step": 14900 + }, + { + "epoch": 31.513144058885384, + "grad_norm": 0.4875246286392212, + "learning_rate": 3.424474789915967e-05, + "loss": 1.092553939819336, + "step": 15000 + }, + { + "epoch": 31.723449001051524, + "grad_norm": 0.48742467164993286, + "learning_rate": 3.413970588235294e-05, + "loss": 1.1002989959716798, + "step": 15100 + }, + { + "epoch": 31.933753943217667, + "grad_norm": 0.5014126896858215, + "learning_rate": 3.403466386554622e-05, + "loss": 1.1067331695556641, + "step": 15200 + }, + { + "epoch": 32.143007360672975, + "grad_norm": 0.48793110251426697, + "learning_rate": 3.3929621848739494e-05, + "loss": 1.0649752807617188, + "step": 15300 + }, + { + "epoch": 32.353312302839115, + "grad_norm": 0.5064884424209595, + "learning_rate": 3.382457983193277e-05, + "loss": 1.0489683532714844, + "step": 15400 + }, + { + "epoch": 32.56361724500526, + "grad_norm": 0.5118729472160339, + "learning_rate": 3.371953781512605e-05, + "loss": 1.0648185729980468, + "step": 15500 + }, + { + "epoch": 32.7739221871714, + "grad_norm": 0.5236688852310181, + "learning_rate": 3.361449579831933e-05, + "loss": 1.0743647766113282, + "step": 15600 + }, + { + "epoch": 32.98422712933754, + "grad_norm": 0.5397860407829285, + "learning_rate": 3.3509453781512604e-05, + "loss": 1.080048828125, + "step": 15700 + }, + { + "epoch": 33.19348054679285, + "grad_norm": 0.5270755290985107, + "learning_rate": 3.340441176470588e-05, + "loss": 1.0228548431396485, + "step": 15800 + }, + { + "epoch": 33.40378548895899, + "grad_norm": 0.5429406762123108, + "learning_rate": 3.329936974789916e-05, + "loss": 1.028949966430664, + "step": 15900 + }, + { + "epoch": 33.614090431125135, + "grad_norm": 0.5323997735977173, + "learning_rate": 3.319432773109244e-05, + "loss": 1.037523956298828, + "step": 16000 + }, + { + "epoch": 33.824395373291274, + "grad_norm": 0.5385149717330933, + "learning_rate": 3.3090336134453784e-05, + "loss": 1.0431160736083984, + "step": 16100 + }, + { + "epoch": 34.03364879074658, + "grad_norm": 0.5089665651321411, + "learning_rate": 3.2986344537815127e-05, + "loss": 1.0349723815917968, + "step": 16200 + }, + { + "epoch": 34.24395373291272, + "grad_norm": 0.5455434918403625, + "learning_rate": 3.2881302521008406e-05, + "loss": 0.988803482055664, + "step": 16300 + }, + { + "epoch": 34.45425867507886, + "grad_norm": 0.5569856762886047, + "learning_rate": 3.2776260504201685e-05, + "loss": 1.0031266021728515, + "step": 16400 + }, + { + "epoch": 34.66456361724501, + "grad_norm": 0.5644022226333618, + "learning_rate": 3.2671218487394964e-05, + "loss": 1.0083402252197267, + "step": 16500 + }, + { + "epoch": 34.87486855941115, + "grad_norm": 0.5685406923294067, + "learning_rate": 3.256617647058824e-05, + "loss": 1.0177439117431641, + "step": 16600 + }, + { + "epoch": 35.084121976866456, + "grad_norm": 0.543632447719574, + "learning_rate": 3.2461134453781516e-05, + "loss": 0.9930455780029297, + "step": 16700 + }, + { + "epoch": 35.294426919032595, + "grad_norm": 0.5612316727638245, + "learning_rate": 3.2356092436974795e-05, + "loss": 0.9650897216796875, + "step": 16800 + }, + { + "epoch": 35.504731861198735, + "grad_norm": 0.5759446024894714, + "learning_rate": 3.225105042016807e-05, + "loss": 0.973653564453125, + "step": 16900 + }, + { + "epoch": 35.71503680336488, + "grad_norm": 0.574255645275116, + "learning_rate": 3.214600840336135e-05, + "loss": 0.981424560546875, + "step": 17000 + }, + { + "epoch": 35.92534174553102, + "grad_norm": 0.5851606726646423, + "learning_rate": 3.204096638655462e-05, + "loss": 0.991123046875, + "step": 17100 + }, + { + "epoch": 36.13459516298633, + "grad_norm": 0.5589666366577148, + "learning_rate": 3.19359243697479e-05, + "loss": 0.9481909942626953, + "step": 17200 + }, + { + "epoch": 36.34490010515247, + "grad_norm": 0.5968824625015259, + "learning_rate": 3.183088235294118e-05, + "loss": 0.9365898895263672, + "step": 17300 + }, + { + "epoch": 36.55520504731861, + "grad_norm": 0.5998508930206299, + "learning_rate": 3.172584033613446e-05, + "loss": 0.9492893218994141, + "step": 17400 + }, + { + "epoch": 36.765509989484755, + "grad_norm": 0.6060558557510376, + "learning_rate": 3.162079831932773e-05, + "loss": 0.9547823333740234, + "step": 17500 + }, + { + "epoch": 36.975814931650895, + "grad_norm": 0.589341402053833, + "learning_rate": 3.151575630252101e-05, + "loss": 0.9626276397705078, + "step": 17600 + }, + { + "epoch": 37.1850683491062, + "grad_norm": 0.5891321897506714, + "learning_rate": 3.141071428571429e-05, + "loss": 0.9065424346923828, + "step": 17700 + }, + { + "epoch": 37.39537329127234, + "grad_norm": 0.5880729556083679, + "learning_rate": 3.130567226890757e-05, + "loss": 0.9107749938964844, + "step": 17800 + }, + { + "epoch": 37.60567823343849, + "grad_norm": 0.6077774167060852, + "learning_rate": 3.120063025210084e-05, + "loss": 0.9193459320068359, + "step": 17900 + }, + { + "epoch": 37.81598317560463, + "grad_norm": 0.6189863681793213, + "learning_rate": 3.109558823529412e-05, + "loss": 0.9286084747314454, + "step": 18000 + }, + { + "epoch": 38.02523659305994, + "grad_norm": 0.5724475383758545, + "learning_rate": 3.09905462184874e-05, + "loss": 0.9282203674316406, + "step": 18100 + }, + { + "epoch": 38.235541535226076, + "grad_norm": 0.5952550768852234, + "learning_rate": 3.088550420168068e-05, + "loss": 0.8734053039550781, + "step": 18200 + }, + { + "epoch": 38.445846477392216, + "grad_norm": 0.5967536568641663, + "learning_rate": 3.078046218487395e-05, + "loss": 0.886033935546875, + "step": 18300 + }, + { + "epoch": 38.65615141955836, + "grad_norm": 0.6298649311065674, + "learning_rate": 3.067542016806722e-05, + "loss": 0.8977913665771484, + "step": 18400 + }, + { + "epoch": 38.8664563617245, + "grad_norm": 0.6457948684692383, + "learning_rate": 3.05703781512605e-05, + "loss": 0.9048082733154297, + "step": 18500 + }, + { + "epoch": 39.07570977917981, + "grad_norm": 0.6172012090682983, + "learning_rate": 3.046533613445378e-05, + "loss": 0.8857656860351563, + "step": 18600 + }, + { + "epoch": 39.28601472134595, + "grad_norm": 0.5979504585266113, + "learning_rate": 3.036029411764706e-05, + "loss": 0.8502845001220704, + "step": 18700 + }, + { + "epoch": 39.49631966351209, + "grad_norm": 0.6284430623054504, + "learning_rate": 3.0255252100840336e-05, + "loss": 0.8602873229980469, + "step": 18800 + }, + { + "epoch": 39.706624605678236, + "grad_norm": 0.6330845355987549, + "learning_rate": 3.0150210084033616e-05, + "loss": 0.8690576934814453, + "step": 18900 + }, + { + "epoch": 39.916929547844376, + "grad_norm": 0.6465399861335754, + "learning_rate": 3.004516806722689e-05, + "loss": 0.8787310791015625, + "step": 19000 + }, + { + "epoch": 40.126182965299684, + "grad_norm": 0.6255329251289368, + "learning_rate": 2.994117647058824e-05, + "loss": 0.84158203125, + "step": 19100 + }, + { + "epoch": 40.33648790746582, + "grad_norm": 0.6304967999458313, + "learning_rate": 2.983613445378151e-05, + "loss": 0.8283135223388672, + "step": 19200 + }, + { + "epoch": 40.54679284963196, + "grad_norm": 0.6366279125213623, + "learning_rate": 2.973109243697479e-05, + "loss": 0.8385968780517579, + "step": 19300 + }, + { + "epoch": 40.75709779179811, + "grad_norm": 0.6407002210617065, + "learning_rate": 2.9626050420168065e-05, + "loss": 0.8465004730224609, + "step": 19400 + }, + { + "epoch": 40.96740273396425, + "grad_norm": 0.6582015156745911, + "learning_rate": 2.9521008403361344e-05, + "loss": 0.8523696136474609, + "step": 19500 + }, + { + "epoch": 41.17665615141956, + "grad_norm": 0.6326037645339966, + "learning_rate": 2.9415966386554624e-05, + "loss": 0.8025535583496094, + "step": 19600 + }, + { + "epoch": 41.3869610935857, + "grad_norm": 0.631605863571167, + "learning_rate": 2.93109243697479e-05, + "loss": 0.8077165222167969, + "step": 19700 + }, + { + "epoch": 41.597266035751844, + "grad_norm": 0.6400684118270874, + "learning_rate": 2.920588235294118e-05, + "loss": 0.8162235260009766, + "step": 19800 + }, + { + "epoch": 41.80757097791798, + "grad_norm": 0.6499695181846619, + "learning_rate": 2.9100840336134455e-05, + "loss": 0.8243218231201171, + "step": 19900 + }, + { + "epoch": 42.01682439537329, + "grad_norm": 0.6392955183982849, + "learning_rate": 2.8995798319327734e-05, + "loss": 0.8244134521484375, + "step": 20000 + }, + { + "epoch": 42.22712933753943, + "grad_norm": 0.6429536938667297, + "learning_rate": 2.889075630252101e-05, + "loss": 0.7711881256103515, + "step": 20100 + }, + { + "epoch": 42.43743427970557, + "grad_norm": 0.6592206358909607, + "learning_rate": 2.878571428571429e-05, + "loss": 0.7841451263427734, + "step": 20200 + }, + { + "epoch": 42.64773922187172, + "grad_norm": 0.6881083846092224, + "learning_rate": 2.8680672268907565e-05, + "loss": 0.792880859375, + "step": 20300 + }, + { + "epoch": 42.85804416403786, + "grad_norm": 0.6662302017211914, + "learning_rate": 2.8575630252100844e-05, + "loss": 0.8001659393310547, + "step": 20400 + }, + { + "epoch": 43.067297581493165, + "grad_norm": 0.6177626252174377, + "learning_rate": 2.847058823529412e-05, + "loss": 0.7870485687255859, + "step": 20500 + }, + { + "epoch": 43.277602523659304, + "grad_norm": 0.6681060194969177, + "learning_rate": 2.83655462184874e-05, + "loss": 0.7512457275390625, + "step": 20600 + }, + { + "epoch": 43.487907465825444, + "grad_norm": 0.669675886631012, + "learning_rate": 2.826050420168067e-05, + "loss": 0.7591960144042968, + "step": 20700 + }, + { + "epoch": 43.69821240799159, + "grad_norm": 0.7097092866897583, + "learning_rate": 2.8155462184873948e-05, + "loss": 0.7737602233886719, + "step": 20800 + }, + { + "epoch": 43.90851735015773, + "grad_norm": 0.6951079964637756, + "learning_rate": 2.8050420168067227e-05, + "loss": 0.7815242767333984, + "step": 20900 + }, + { + "epoch": 44.11777076761304, + "grad_norm": 0.639824390411377, + "learning_rate": 2.7945378151260503e-05, + "loss": 0.7512903594970703, + "step": 21000 + }, + { + "epoch": 44.32807570977918, + "grad_norm": 0.67326819896698, + "learning_rate": 2.7840336134453782e-05, + "loss": 0.7329978179931641, + "step": 21100 + }, + { + "epoch": 44.53838065194532, + "grad_norm": 0.6938571333885193, + "learning_rate": 2.7735294117647058e-05, + "loss": 0.7421668243408203, + "step": 21200 + }, + { + "epoch": 44.748685594111464, + "grad_norm": 0.6845099925994873, + "learning_rate": 2.7630252100840337e-05, + "loss": 0.7509217071533203, + "step": 21300 + }, + { + "epoch": 44.958990536277604, + "grad_norm": 0.681825578212738, + "learning_rate": 2.7525210084033616e-05, + "loss": 0.7620004272460937, + "step": 21400 + }, + { + "epoch": 45.16824395373291, + "grad_norm": 0.6556856036186218, + "learning_rate": 2.7421218487394962e-05, + "loss": 0.7184288787841797, + "step": 21500 + }, + { + "epoch": 45.37854889589905, + "grad_norm": 0.6386471390724182, + "learning_rate": 2.7316176470588235e-05, + "loss": 0.7161962127685547, + "step": 21600 + }, + { + "epoch": 45.5888538380652, + "grad_norm": 0.6947113275527954, + "learning_rate": 2.721113445378151e-05, + "loss": 0.7244486999511719, + "step": 21700 + }, + { + "epoch": 45.79915878023134, + "grad_norm": 0.6741232872009277, + "learning_rate": 2.710609243697479e-05, + "loss": 0.7308968353271484, + "step": 21800 + }, + { + "epoch": 46.008412197686646, + "grad_norm": 0.6631771326065063, + "learning_rate": 2.7001050420168066e-05, + "loss": 0.7323504638671875, + "step": 21900 + }, + { + "epoch": 46.218717139852785, + "grad_norm": 0.6702309250831604, + "learning_rate": 2.6896008403361345e-05, + "loss": 0.6865713500976562, + "step": 22000 + }, + { + "epoch": 46.429022082018925, + "grad_norm": 0.6711138486862183, + "learning_rate": 2.679096638655462e-05, + "loss": 0.697294921875, + "step": 22100 + }, + { + "epoch": 46.63932702418507, + "grad_norm": 0.7067892551422119, + "learning_rate": 2.66859243697479e-05, + "loss": 0.70609619140625, + "step": 22200 + }, + { + "epoch": 46.84963196635121, + "grad_norm": 0.6743476390838623, + "learning_rate": 2.658088235294118e-05, + "loss": 0.7116059112548828, + "step": 22300 + }, + { + "epoch": 47.05888538380652, + "grad_norm": 0.642842710018158, + "learning_rate": 2.6475840336134455e-05, + "loss": 0.7024728393554688, + "step": 22400 + }, + { + "epoch": 47.26919032597266, + "grad_norm": 0.6852782368659973, + "learning_rate": 2.6370798319327734e-05, + "loss": 0.6698217010498047, + "step": 22500 + }, + { + "epoch": 47.4794952681388, + "grad_norm": 0.6817244291305542, + "learning_rate": 2.626575630252101e-05, + "loss": 0.6796794891357422, + "step": 22600 + }, + { + "epoch": 47.689800210304945, + "grad_norm": 0.665703535079956, + "learning_rate": 2.616071428571429e-05, + "loss": 0.689930191040039, + "step": 22700 + }, + { + "epoch": 47.900105152471085, + "grad_norm": 0.7286046147346497, + "learning_rate": 2.6055672268907565e-05, + "loss": 0.6968262481689453, + "step": 22800 + }, + { + "epoch": 48.10935856992639, + "grad_norm": 0.6568066477775574, + "learning_rate": 2.5950630252100845e-05, + "loss": 0.6714718627929688, + "step": 22900 + }, + { + "epoch": 48.31966351209253, + "grad_norm": 0.6909933090209961, + "learning_rate": 2.584558823529412e-05, + "loss": 0.6521046447753907, + "step": 23000 + }, + { + "epoch": 48.52996845425867, + "grad_norm": 0.6730957627296448, + "learning_rate": 2.5740546218487393e-05, + "loss": 0.6635847473144532, + "step": 23100 + }, + { + "epoch": 48.74027339642482, + "grad_norm": 0.7137960195541382, + "learning_rate": 2.5635504201680672e-05, + "loss": 0.6703518676757813, + "step": 23200 + }, + { + "epoch": 48.95057833859096, + "grad_norm": 0.7035015225410461, + "learning_rate": 2.5530462184873948e-05, + "loss": 0.678240737915039, + "step": 23300 + }, + { + "epoch": 49.159831756046266, + "grad_norm": 0.6768185496330261, + "learning_rate": 2.5425420168067227e-05, + "loss": 0.6413292694091797, + "step": 23400 + }, + { + "epoch": 49.370136698212406, + "grad_norm": 0.6941663026809692, + "learning_rate": 2.5320378151260503e-05, + "loss": 0.6415236663818359, + "step": 23500 + }, + { + "epoch": 49.58044164037855, + "grad_norm": 0.722435712814331, + "learning_rate": 2.5215336134453782e-05, + "loss": 0.6499783325195313, + "step": 23600 + }, + { + "epoch": 49.79074658254469, + "grad_norm": 0.7071043252944946, + "learning_rate": 2.511029411764706e-05, + "loss": 0.6546615600585938, + "step": 23700 + }, + { + "epoch": 50.0, + "grad_norm": Infinity, + "learning_rate": 2.5005252100840338e-05, + "loss": 0.6589860534667968, + "step": 23800 + }, + { + "epoch": 50.21030494216614, + "grad_norm": 0.6747011542320251, + "learning_rate": 2.490126050420168e-05, + "loss": 0.6164878845214844, + "step": 23900 + }, + { + "epoch": 50.42060988433228, + "grad_norm": 0.6953312754631042, + "learning_rate": 2.479621848739496e-05, + "loss": 0.6259209060668945, + "step": 24000 + }, + { + "epoch": 50.630914826498426, + "grad_norm": 0.6829053163528442, + "learning_rate": 2.469117647058824e-05, + "loss": 0.6306737518310547, + "step": 24100 + }, + { + "epoch": 50.841219768664565, + "grad_norm": 0.7105507850646973, + "learning_rate": 2.4586134453781514e-05, + "loss": 0.6402838897705078, + "step": 24200 + }, + { + "epoch": 51.05047318611987, + "grad_norm": 0.6592356562614441, + "learning_rate": 2.4481092436974794e-05, + "loss": 0.6321442413330078, + "step": 24300 + }, + { + "epoch": 51.26077812828601, + "grad_norm": 0.6957094073295593, + "learning_rate": 2.4376050420168066e-05, + "loss": 0.6060052108764649, + "step": 24400 + }, + { + "epoch": 51.47108307045215, + "grad_norm": 0.6904229521751404, + "learning_rate": 2.4271008403361345e-05, + "loss": 0.6094649505615234, + "step": 24500 + }, + { + "epoch": 51.6813880126183, + "grad_norm": 0.7173294425010681, + "learning_rate": 2.416596638655462e-05, + "loss": 0.6187096023559571, + "step": 24600 + }, + { + "epoch": 51.89169295478444, + "grad_norm": 0.7143198251724243, + "learning_rate": 2.40609243697479e-05, + "loss": 0.6268323516845703, + "step": 24700 + }, + { + "epoch": 52.10094637223975, + "grad_norm": 0.6786720752716064, + "learning_rate": 2.3955882352941176e-05, + "loss": 0.6083223342895507, + "step": 24800 + }, + { + "epoch": 52.31125131440589, + "grad_norm": 0.6900521516799927, + "learning_rate": 2.3850840336134456e-05, + "loss": 0.5922721862792969, + "step": 24900 + }, + { + "epoch": 52.521556256572026, + "grad_norm": 0.7288543581962585, + "learning_rate": 2.3745798319327735e-05, + "loss": 0.5982749938964844, + "step": 25000 + }, + { + "epoch": 52.73186119873817, + "grad_norm": 0.704078197479248, + "learning_rate": 2.3640756302521007e-05, + "loss": 0.6041379547119141, + "step": 25100 + }, + { + "epoch": 52.94216614090431, + "grad_norm": 0.706262469291687, + "learning_rate": 2.3535714285714287e-05, + "loss": 0.6083390808105469, + "step": 25200 + }, + { + "epoch": 53.15141955835962, + "grad_norm": 0.6775776743888855, + "learning_rate": 2.3430672268907563e-05, + "loss": 0.5816435623168945, + "step": 25300 + }, + { + "epoch": 53.36172450052576, + "grad_norm": 0.7253007888793945, + "learning_rate": 2.3325630252100842e-05, + "loss": 0.58095458984375, + "step": 25400 + }, + { + "epoch": 53.5720294426919, + "grad_norm": 0.7169889211654663, + "learning_rate": 2.3220588235294118e-05, + "loss": 0.5878105163574219, + "step": 25500 + }, + { + "epoch": 53.782334384858046, + "grad_norm": 0.6921281814575195, + "learning_rate": 2.3115546218487397e-05, + "loss": 0.5918175506591797, + "step": 25600 + }, + { + "epoch": 53.992639327024186, + "grad_norm": 0.7570663094520569, + "learning_rate": 2.3010504201680673e-05, + "loss": 0.5992276000976563, + "step": 25700 + }, + { + "epoch": 54.201892744479494, + "grad_norm": 0.7045475840568542, + "learning_rate": 2.2905462184873952e-05, + "loss": 0.563626937866211, + "step": 25800 + }, + { + "epoch": 54.412197686645634, + "grad_norm": 0.7311537861824036, + "learning_rate": 2.2800420168067228e-05, + "loss": 0.5649079513549805, + "step": 25900 + }, + { + "epoch": 54.62250262881178, + "grad_norm": 0.7197280526161194, + "learning_rate": 2.2695378151260504e-05, + "loss": 0.5740287017822265, + "step": 26000 + }, + { + "epoch": 54.83280757097792, + "grad_norm": 0.7047930359840393, + "learning_rate": 2.2590336134453783e-05, + "loss": 0.5799992752075195, + "step": 26100 + }, + { + "epoch": 55.04206098843323, + "grad_norm": 0.663329541683197, + "learning_rate": 2.2486344537815125e-05, + "loss": 0.5747824096679688, + "step": 26200 + }, + { + "epoch": 55.25236593059937, + "grad_norm": 0.6825776100158691, + "learning_rate": 2.2381302521008405e-05, + "loss": 0.5511475372314453, + "step": 26300 + }, + { + "epoch": 55.46267087276551, + "grad_norm": 0.7081674337387085, + "learning_rate": 2.227626050420168e-05, + "loss": 0.5568293380737305, + "step": 26400 + }, + { + "epoch": 55.672975814931654, + "grad_norm": 0.6991596221923828, + "learning_rate": 2.217121848739496e-05, + "loss": 0.5623696899414062, + "step": 26500 + }, + { + "epoch": 55.88328075709779, + "grad_norm": 0.7421116828918457, + "learning_rate": 2.2066176470588236e-05, + "loss": 0.5673596572875976, + "step": 26600 + }, + { + "epoch": 56.0925341745531, + "grad_norm": 0.6679620146751404, + "learning_rate": 2.1961134453781515e-05, + "loss": 0.555915298461914, + "step": 26700 + }, + { + "epoch": 56.30283911671924, + "grad_norm": 0.7035086750984192, + "learning_rate": 2.185609243697479e-05, + "loss": 0.5402443313598633, + "step": 26800 + }, + { + "epoch": 56.51314405888538, + "grad_norm": 0.6888571381568909, + "learning_rate": 2.1751050420168067e-05, + "loss": 0.5462953186035157, + "step": 26900 + }, + { + "epoch": 56.72344900105153, + "grad_norm": 0.7356609106063843, + "learning_rate": 2.1646008403361346e-05, + "loss": 0.5512025833129883, + "step": 27000 + }, + { + "epoch": 56.93375394321767, + "grad_norm": 0.7569705247879028, + "learning_rate": 2.1540966386554622e-05, + "loss": 0.5562152481079101, + "step": 27100 + }, + { + "epoch": 57.143007360672975, + "grad_norm": 0.6764115691184998, + "learning_rate": 2.14359243697479e-05, + "loss": 0.5337548065185547, + "step": 27200 + }, + { + "epoch": 57.353312302839115, + "grad_norm": 0.7006810307502747, + "learning_rate": 2.1330882352941177e-05, + "loss": 0.5296073913574219, + "step": 27300 + }, + { + "epoch": 57.56361724500526, + "grad_norm": 0.7158169150352478, + "learning_rate": 2.1225840336134456e-05, + "loss": 0.5382700347900391, + "step": 27400 + }, + { + "epoch": 57.7739221871714, + "grad_norm": 0.7132992148399353, + "learning_rate": 2.1120798319327732e-05, + "loss": 0.5398505783081055, + "step": 27500 + }, + { + "epoch": 57.98422712933754, + "grad_norm": 0.7330942749977112, + "learning_rate": 2.1015756302521008e-05, + "loss": 0.5458747863769531, + "step": 27600 + }, + { + "epoch": 58.19348054679285, + "grad_norm": 0.669278621673584, + "learning_rate": 2.0910714285714287e-05, + "loss": 0.5161695861816407, + "step": 27700 + }, + { + "epoch": 58.40378548895899, + "grad_norm": 0.6958737373352051, + "learning_rate": 2.0805672268907563e-05, + "loss": 0.5201998901367187, + "step": 27800 + }, + { + "epoch": 58.614090431125135, + "grad_norm": 0.6824914813041687, + "learning_rate": 2.0700630252100842e-05, + "loss": 0.5258338928222657, + "step": 27900 + }, + { + "epoch": 58.824395373291274, + "grad_norm": 0.6634467244148254, + "learning_rate": 2.0595588235294118e-05, + "loss": 0.5300619888305664, + "step": 28000 + }, + { + "epoch": 59.03364879074658, + "grad_norm": 0.6863816380500793, + "learning_rate": 2.0490546218487397e-05, + "loss": 0.5283214950561523, + "step": 28100 + }, + { + "epoch": 59.24395373291272, + "grad_norm": 0.7183119654655457, + "learning_rate": 2.0385504201680673e-05, + "loss": 0.506834487915039, + "step": 28200 + }, + { + "epoch": 59.45425867507886, + "grad_norm": 0.7142145037651062, + "learning_rate": 2.028046218487395e-05, + "loss": 0.5117876815795899, + "step": 28300 + }, + { + "epoch": 59.66456361724501, + "grad_norm": 0.7280924916267395, + "learning_rate": 2.017542016806723e-05, + "loss": 0.5153473281860351, + "step": 28400 + }, + { + "epoch": 59.87486855941115, + "grad_norm": 0.693505048751831, + "learning_rate": 2.0070378151260504e-05, + "loss": 0.5219352722167969, + "step": 28500 + }, + { + "epoch": 60.084121976866456, + "grad_norm": 0.6892845034599304, + "learning_rate": 1.9965336134453784e-05, + "loss": 0.5122858810424805, + "step": 28600 + }, + { + "epoch": 60.294426919032595, + "grad_norm": 0.6604379415512085, + "learning_rate": 1.986029411764706e-05, + "loss": 0.49614715576171875, + "step": 28700 + }, + { + "epoch": 60.504731861198735, + "grad_norm": 0.7204891443252563, + "learning_rate": 1.975525210084034e-05, + "loss": 0.5024974822998047, + "step": 28800 + }, + { + "epoch": 60.71503680336488, + "grad_norm": 0.7127634286880493, + "learning_rate": 1.9650210084033615e-05, + "loss": 0.5073120498657226, + "step": 28900 + }, + { + "epoch": 60.92534174553102, + "grad_norm": 0.7359983921051025, + "learning_rate": 1.954516806722689e-05, + "loss": 0.5116232681274414, + "step": 29000 + }, + { + "epoch": 61.13459516298633, + "grad_norm": 0.6893951296806335, + "learning_rate": 1.944012605042017e-05, + "loss": 0.4952814865112305, + "step": 29100 + }, + { + "epoch": 61.34490010515247, + "grad_norm": 0.6849685311317444, + "learning_rate": 1.9335084033613446e-05, + "loss": 0.4899435043334961, + "step": 29200 + }, + { + "epoch": 61.55520504731861, + "grad_norm": 0.7181743383407593, + "learning_rate": 1.9230042016806725e-05, + "loss": 0.4946512985229492, + "step": 29300 + }, + { + "epoch": 61.765509989484755, + "grad_norm": 0.6820606589317322, + "learning_rate": 1.9125e-05, + "loss": 0.49947418212890626, + "step": 29400 + }, + { + "epoch": 61.975814931650895, + "grad_norm": 0.7111321687698364, + "learning_rate": 1.901995798319328e-05, + "loss": 0.5020344543457032, + "step": 29500 + }, + { + "epoch": 62.1850683491062, + "grad_norm": 0.7008198499679565, + "learning_rate": 1.8914915966386556e-05, + "loss": 0.48151485443115233, + "step": 29600 + }, + { + "epoch": 62.39537329127234, + "grad_norm": 0.7171513438224792, + "learning_rate": 1.880987394957983e-05, + "loss": 0.48171932220458985, + "step": 29700 + }, + { + "epoch": 62.60567823343849, + "grad_norm": 0.7375807762145996, + "learning_rate": 1.8704831932773108e-05, + "loss": 0.4873679733276367, + "step": 29800 + }, + { + "epoch": 62.81598317560463, + "grad_norm": 0.6806672811508179, + "learning_rate": 1.8599789915966387e-05, + "loss": 0.4887456130981445, + "step": 29900 + }, + { + "epoch": 63.02523659305994, + "grad_norm": 0.6749327182769775, + "learning_rate": 1.8494747899159666e-05, + "loss": 0.48958889007568357, + "step": 30000 + }, + { + "epoch": 63.235541535226076, + "grad_norm": 0.7122695446014404, + "learning_rate": 1.8389705882352942e-05, + "loss": 0.46849212646484373, + "step": 30100 + }, + { + "epoch": 63.445846477392216, + "grad_norm": 0.6742300987243652, + "learning_rate": 1.8285714285714288e-05, + "loss": 0.4735026550292969, + "step": 30200 + }, + { + "epoch": 63.65615141955836, + "grad_norm": 0.7086833119392395, + "learning_rate": 1.8180672268907564e-05, + "loss": 0.47808189392089845, + "step": 30300 + }, + { + "epoch": 63.8664563617245, + "grad_norm": 0.673115611076355, + "learning_rate": 1.8075630252100843e-05, + "loss": 0.4810390853881836, + "step": 30400 + }, + { + "epoch": 64.07570977917982, + "grad_norm": 0.7166642546653748, + "learning_rate": 1.797058823529412e-05, + "loss": 0.47662986755371095, + "step": 30500 + }, + { + "epoch": 64.28601472134595, + "grad_norm": 0.7239866852760315, + "learning_rate": 1.7865546218487395e-05, + "loss": 0.46368907928466796, + "step": 30600 + }, + { + "epoch": 64.4963196635121, + "grad_norm": 0.6777023077011108, + "learning_rate": 1.776050420168067e-05, + "loss": 0.46869037628173826, + "step": 30700 + }, + { + "epoch": 64.70662460567823, + "grad_norm": 0.7028587460517883, + "learning_rate": 1.765546218487395e-05, + "loss": 0.47153076171875, + "step": 30800 + }, + { + "epoch": 64.91692954784438, + "grad_norm": 0.7220568656921387, + "learning_rate": 1.755042016806723e-05, + "loss": 0.4732553482055664, + "step": 30900 + }, + { + "epoch": 65.12618296529969, + "grad_norm": 0.6283636093139648, + "learning_rate": 1.7445378151260505e-05, + "loss": 0.4627264404296875, + "step": 31000 + }, + { + "epoch": 65.33648790746582, + "grad_norm": 0.6411524415016174, + "learning_rate": 1.7340336134453784e-05, + "loss": 0.45608016967773435, + "step": 31100 + }, + { + "epoch": 65.54679284963197, + "grad_norm": 0.668154776096344, + "learning_rate": 1.723529411764706e-05, + "loss": 0.46059967041015626, + "step": 31200 + }, + { + "epoch": 65.7570977917981, + "grad_norm": 0.7226248979568481, + "learning_rate": 1.713025210084034e-05, + "loss": 0.4659851455688477, + "step": 31300 + }, + { + "epoch": 65.96740273396425, + "grad_norm": 0.6833023428916931, + "learning_rate": 1.7025210084033612e-05, + "loss": 0.46931900024414064, + "step": 31400 + }, + { + "epoch": 66.17665615141956, + "grad_norm": 0.6941800117492676, + "learning_rate": 1.6921218487394958e-05, + "loss": 0.45006973266601563, + "step": 31500 + }, + { + "epoch": 66.3869610935857, + "grad_norm": 0.63517826795578, + "learning_rate": 1.6816176470588237e-05, + "loss": 0.44848171234130857, + "step": 31600 + }, + { + "epoch": 66.59726603575184, + "grad_norm": 0.6846080422401428, + "learning_rate": 1.6711134453781513e-05, + "loss": 0.45420032501220703, + "step": 31700 + }, + { + "epoch": 66.80757097791798, + "grad_norm": 0.6388368010520935, + "learning_rate": 1.6606092436974792e-05, + "loss": 0.4580923843383789, + "step": 31800 + }, + { + "epoch": 67.01682439537329, + "grad_norm": 0.6670629978179932, + "learning_rate": 1.6501050420168068e-05, + "loss": 0.4585027313232422, + "step": 31900 + }, + { + "epoch": 67.22712933753944, + "grad_norm": 0.6662338972091675, + "learning_rate": 1.6396008403361347e-05, + "loss": 0.44079010009765623, + "step": 32000 + }, + { + "epoch": 67.43743427970557, + "grad_norm": 0.6707865595817566, + "learning_rate": 1.6290966386554623e-05, + "loss": 0.44413238525390625, + "step": 32100 + }, + { + "epoch": 67.64773922187172, + "grad_norm": 0.656842052936554, + "learning_rate": 1.6185924369747902e-05, + "loss": 0.44844043731689454, + "step": 32200 + }, + { + "epoch": 67.85804416403785, + "grad_norm": 0.6646634340286255, + "learning_rate": 1.6080882352941175e-05, + "loss": 0.44970947265625, + "step": 32300 + }, + { + "epoch": 68.06729758149316, + "grad_norm": 0.6447365880012512, + "learning_rate": 1.5975840336134454e-05, + "loss": 0.4450407028198242, + "step": 32400 + }, + { + "epoch": 68.27760252365931, + "grad_norm": 0.6727699637413025, + "learning_rate": 1.587079831932773e-05, + "loss": 0.43177310943603514, + "step": 32500 + }, + { + "epoch": 68.48790746582544, + "grad_norm": 0.7130571603775024, + "learning_rate": 1.576575630252101e-05, + "loss": 0.4379489517211914, + "step": 32600 + }, + { + "epoch": 68.69821240799159, + "grad_norm": 0.7220073938369751, + "learning_rate": 1.566071428571429e-05, + "loss": 0.4425164794921875, + "step": 32700 + }, + { + "epoch": 68.90851735015772, + "grad_norm": 0.6695141196250916, + "learning_rate": 1.5555672268907564e-05, + "loss": 0.44274383544921875, + "step": 32800 + }, + { + "epoch": 69.11777076761304, + "grad_norm": 0.6740268468856812, + "learning_rate": 1.5450630252100843e-05, + "loss": 0.4357725143432617, + "step": 32900 + }, + { + "epoch": 69.32807570977918, + "grad_norm": 0.6566063165664673, + "learning_rate": 1.5345588235294116e-05, + "loss": 0.4283485412597656, + "step": 33000 + }, + { + "epoch": 69.53838065194532, + "grad_norm": 0.6752663850784302, + "learning_rate": 1.5240546218487395e-05, + "loss": 0.43225677490234377, + "step": 33100 + }, + { + "epoch": 69.74868559411146, + "grad_norm": 0.7038667798042297, + "learning_rate": 1.5135504201680673e-05, + "loss": 0.43592594146728514, + "step": 33200 + }, + { + "epoch": 69.9589905362776, + "grad_norm": 0.6961196660995483, + "learning_rate": 1.503046218487395e-05, + "loss": 0.438877067565918, + "step": 33300 + }, + { + "epoch": 70.16824395373291, + "grad_norm": 0.6535352468490601, + "learning_rate": 1.4925420168067228e-05, + "loss": 0.4252385330200195, + "step": 33400 + }, + { + "epoch": 70.37854889589906, + "grad_norm": 0.6601018905639648, + "learning_rate": 1.4820378151260505e-05, + "loss": 0.42285392761230467, + "step": 33500 + }, + { + "epoch": 70.58885383806519, + "grad_norm": 0.6948896050453186, + "learning_rate": 1.4715336134453783e-05, + "loss": 0.427175407409668, + "step": 33600 + }, + { + "epoch": 70.79915878023134, + "grad_norm": 0.6372560858726501, + "learning_rate": 1.461029411764706e-05, + "loss": 0.42832706451416014, + "step": 33700 + }, + { + "epoch": 71.00841219768665, + "grad_norm": 0.6517939567565918, + "learning_rate": 1.4505252100840336e-05, + "loss": 0.4324043273925781, + "step": 33800 + }, + { + "epoch": 71.21871713985279, + "grad_norm": 0.6330206990242004, + "learning_rate": 1.4400210084033614e-05, + "loss": 0.4146746826171875, + "step": 33900 + }, + { + "epoch": 71.42902208201893, + "grad_norm": 0.6658615469932556, + "learning_rate": 1.4295168067226892e-05, + "loss": 0.4180047225952148, + "step": 34000 + }, + { + "epoch": 71.63932702418506, + "grad_norm": 0.6433075070381165, + "learning_rate": 1.4190126050420169e-05, + "loss": 0.4219693374633789, + "step": 34100 + }, + { + "epoch": 71.84963196635121, + "grad_norm": 0.6470766663551331, + "learning_rate": 1.4085084033613447e-05, + "loss": 0.4214926528930664, + "step": 34200 + }, + { + "epoch": 72.05888538380653, + "grad_norm": 0.6315721273422241, + "learning_rate": 1.3981092436974791e-05, + "loss": 0.4204498291015625, + "step": 34300 + }, + { + "epoch": 72.26919032597266, + "grad_norm": 0.6722202897071838, + "learning_rate": 1.3876050420168068e-05, + "loss": 0.4105443572998047, + "step": 34400 + }, + { + "epoch": 72.4794952681388, + "grad_norm": 0.654528021812439, + "learning_rate": 1.3771008403361346e-05, + "loss": 0.41524337768554687, + "step": 34500 + }, + { + "epoch": 72.68980021030494, + "grad_norm": 0.6449755430221558, + "learning_rate": 1.3665966386554622e-05, + "loss": 0.4175481414794922, + "step": 34600 + }, + { + "epoch": 72.90010515247108, + "grad_norm": 0.6468359231948853, + "learning_rate": 1.35609243697479e-05, + "loss": 0.41863433837890623, + "step": 34700 + }, + { + "epoch": 73.1093585699264, + "grad_norm": 0.6471462845802307, + "learning_rate": 1.3455882352941177e-05, + "loss": 0.411123161315918, + "step": 34800 + }, + { + "epoch": 73.31966351209253, + "grad_norm": 0.6382157802581787, + "learning_rate": 1.3350840336134455e-05, + "loss": 0.40554931640625, + "step": 34900 + }, + { + "epoch": 73.52996845425868, + "grad_norm": 0.6727550029754639, + "learning_rate": 1.3245798319327732e-05, + "loss": 0.40884464263916015, + "step": 35000 + }, + { + "epoch": 73.74027339642481, + "grad_norm": 0.6494147181510925, + "learning_rate": 1.314075630252101e-05, + "loss": 0.4114807891845703, + "step": 35100 + }, + { + "epoch": 73.95057833859096, + "grad_norm": 0.6971067786216736, + "learning_rate": 1.3035714285714287e-05, + "loss": 0.4129951477050781, + "step": 35200 + }, + { + "epoch": 74.15983175604627, + "grad_norm": 0.630617082118988, + "learning_rate": 1.2930672268907565e-05, + "loss": 0.40283798217773437, + "step": 35300 + }, + { + "epoch": 74.3701366982124, + "grad_norm": 0.6068241000175476, + "learning_rate": 1.2825630252100839e-05, + "loss": 0.4017567825317383, + "step": 35400 + }, + { + "epoch": 74.58044164037855, + "grad_norm": 0.6767259836196899, + "learning_rate": 1.2720588235294118e-05, + "loss": 0.40448307037353515, + "step": 35500 + }, + { + "epoch": 74.79074658254468, + "grad_norm": 0.7011847496032715, + "learning_rate": 1.2615546218487396e-05, + "loss": 0.4047744369506836, + "step": 35600 + }, + { + "epoch": 75.0, + "grad_norm": 0.9920335412025452, + "learning_rate": 1.2510504201680673e-05, + "loss": 0.4085837936401367, + "step": 35700 + }, + { + "epoch": 75.21030494216615, + "grad_norm": 0.6520708203315735, + "learning_rate": 1.2405462184873951e-05, + "loss": 0.39399688720703124, + "step": 35800 + }, + { + "epoch": 75.42060988433228, + "grad_norm": 0.6656842827796936, + "learning_rate": 1.2300420168067227e-05, + "loss": 0.3963521957397461, + "step": 35900 + }, + { + "epoch": 75.63091482649843, + "grad_norm": 0.6576446294784546, + "learning_rate": 1.2195378151260504e-05, + "loss": 0.3992136383056641, + "step": 36000 + }, + { + "epoch": 75.84121976866456, + "grad_norm": 0.6238224506378174, + "learning_rate": 1.2090336134453782e-05, + "loss": 0.40125537872314454, + "step": 36100 + }, + { + "epoch": 76.05047318611987, + "grad_norm": 0.6389949917793274, + "learning_rate": 1.198529411764706e-05, + "loss": 0.3995349884033203, + "step": 36200 + }, + { + "epoch": 76.26077812828602, + "grad_norm": 0.6240091919898987, + "learning_rate": 1.1880252100840335e-05, + "loss": 0.3890629577636719, + "step": 36300 + }, + { + "epoch": 76.47108307045215, + "grad_norm": 0.6367642879486084, + "learning_rate": 1.1775210084033615e-05, + "loss": 0.39277313232421873, + "step": 36400 + }, + { + "epoch": 76.6813880126183, + "grad_norm": 0.6215347647666931, + "learning_rate": 1.1670168067226892e-05, + "loss": 0.3941745376586914, + "step": 36500 + }, + { + "epoch": 76.89169295478443, + "grad_norm": 0.6176421642303467, + "learning_rate": 1.156512605042017e-05, + "loss": 0.3961213302612305, + "step": 36600 + }, + { + "epoch": 77.10094637223975, + "grad_norm": 0.6433852314949036, + "learning_rate": 1.1460084033613446e-05, + "loss": 0.39362903594970705, + "step": 36700 + }, + { + "epoch": 77.3112513144059, + "grad_norm": 0.6288033127784729, + "learning_rate": 1.1355042016806723e-05, + "loss": 0.3870785140991211, + "step": 36800 + }, + { + "epoch": 77.52155625657203, + "grad_norm": 0.6061193943023682, + "learning_rate": 1.125e-05, + "loss": 0.38955581665039063, + "step": 36900 + }, + { + "epoch": 77.73186119873817, + "grad_norm": 0.6680556535720825, + "learning_rate": 1.1144957983193278e-05, + "loss": 0.390676383972168, + "step": 37000 + }, + { + "epoch": 77.9421661409043, + "grad_norm": 0.623725950717926, + "learning_rate": 1.1039915966386554e-05, + "loss": 0.3921066665649414, + "step": 37100 + }, + { + "epoch": 78.15141955835962, + "grad_norm": 0.6346238255500793, + "learning_rate": 1.0935924369747898e-05, + "loss": 0.3845651626586914, + "step": 37200 + }, + { + "epoch": 78.36172450052577, + "grad_norm": 0.6062731146812439, + "learning_rate": 1.0830882352941178e-05, + "loss": 0.380772705078125, + "step": 37300 + }, + { + "epoch": 78.5720294426919, + "grad_norm": 0.6125079989433289, + "learning_rate": 1.0725840336134455e-05, + "loss": 0.3834884262084961, + "step": 37400 + }, + { + "epoch": 78.78233438485805, + "grad_norm": 0.6804420948028564, + "learning_rate": 1.0620798319327733e-05, + "loss": 0.3863555526733398, + "step": 37500 + }, + { + "epoch": 78.99263932702418, + "grad_norm": 0.6568316221237183, + "learning_rate": 1.0515756302521009e-05, + "loss": 0.3898443603515625, + "step": 37600 + }, + { + "epoch": 79.2018927444795, + "grad_norm": 0.6262179017066956, + "learning_rate": 1.0410714285714286e-05, + "loss": 0.37717395782470703, + "step": 37700 + }, + { + "epoch": 79.41219768664564, + "grad_norm": 0.6335896849632263, + "learning_rate": 1.0305672268907564e-05, + "loss": 0.37976459503173826, + "step": 37800 + }, + { + "epoch": 79.62250262881177, + "grad_norm": 0.675938069820404, + "learning_rate": 1.0200630252100841e-05, + "loss": 0.38054397583007815, + "step": 37900 + }, + { + "epoch": 79.83280757097792, + "grad_norm": 0.650644838809967, + "learning_rate": 1.0095588235294117e-05, + "loss": 0.3817191696166992, + "step": 38000 + }, + { + "epoch": 80.04206098843324, + "grad_norm": 0.5988778471946716, + "learning_rate": 9.990546218487395e-06, + "loss": 0.3799977493286133, + "step": 38100 + }, + { + "epoch": 80.25236593059937, + "grad_norm": 0.6436987519264221, + "learning_rate": 9.885504201680674e-06, + "loss": 0.37264183044433596, + "step": 38200 + }, + { + "epoch": 80.46267087276551, + "grad_norm": 0.610487699508667, + "learning_rate": 9.78046218487395e-06, + "loss": 0.3753046417236328, + "step": 38300 + }, + { + "epoch": 80.67297581493165, + "grad_norm": 0.6378571391105652, + "learning_rate": 9.675420168067227e-06, + "loss": 0.3749809646606445, + "step": 38400 + }, + { + "epoch": 80.8832807570978, + "grad_norm": 0.6599664688110352, + "learning_rate": 9.570378151260505e-06, + "loss": 0.37958168029785155, + "step": 38500 + }, + { + "epoch": 81.09253417455311, + "grad_norm": 0.6057779788970947, + "learning_rate": 9.465336134453782e-06, + "loss": 0.3755946731567383, + "step": 38600 + }, + { + "epoch": 81.30283911671924, + "grad_norm": 0.6186268925666809, + "learning_rate": 9.360294117647058e-06, + "loss": 0.3689208221435547, + "step": 38700 + }, + { + "epoch": 81.51314405888539, + "grad_norm": 0.6031709909439087, + "learning_rate": 9.255252100840336e-06, + "loss": 0.37045917510986326, + "step": 38800 + }, + { + "epoch": 81.72344900105152, + "grad_norm": 0.6903654336929321, + "learning_rate": 9.150210084033613e-06, + "loss": 0.37341190338134767, + "step": 38900 + }, + { + "epoch": 81.93375394321767, + "grad_norm": 0.6498835682868958, + "learning_rate": 9.045168067226891e-06, + "loss": 0.3741530227661133, + "step": 39000 + }, + { + "epoch": 82.14300736067298, + "grad_norm": 0.6078621745109558, + "learning_rate": 8.940126050420169e-06, + "loss": 0.36713558197021484, + "step": 39100 + }, + { + "epoch": 82.35331230283911, + "grad_norm": 0.6294094324111938, + "learning_rate": 8.835084033613446e-06, + "loss": 0.3661073303222656, + "step": 39200 + }, + { + "epoch": 82.56361724500526, + "grad_norm": 0.6120302081108093, + "learning_rate": 8.730042016806724e-06, + "loss": 0.3683062744140625, + "step": 39300 + }, + { + "epoch": 82.7739221871714, + "grad_norm": 0.6194695830345154, + "learning_rate": 8.625e-06, + "loss": 0.3718934631347656, + "step": 39400 + }, + { + "epoch": 82.98422712933754, + "grad_norm": 0.6603109240531921, + "learning_rate": 8.519957983193277e-06, + "loss": 0.37141822814941405, + "step": 39500 + }, + { + "epoch": 83.19348054679286, + "grad_norm": 0.6176982522010803, + "learning_rate": 8.414915966386555e-06, + "loss": 0.36253021240234373, + "step": 39600 + }, + { + "epoch": 83.40378548895899, + "grad_norm": 0.6788721084594727, + "learning_rate": 8.309873949579832e-06, + "loss": 0.36460174560546876, + "step": 39700 + }, + { + "epoch": 83.61409043112513, + "grad_norm": 0.6141113638877869, + "learning_rate": 8.20483193277311e-06, + "loss": 0.36554264068603515, + "step": 39800 + }, + { + "epoch": 83.82439537329127, + "grad_norm": 0.6193323135375977, + "learning_rate": 8.099789915966387e-06, + "loss": 0.36707286834716796, + "step": 39900 + }, + { + "epoch": 84.03364879074658, + "grad_norm": 0.6383187770843506, + "learning_rate": 7.994747899159665e-06, + "loss": 0.3661843872070312, + "step": 40000 + }, + { + "epoch": 84.24395373291273, + "grad_norm": 0.5923520922660828, + "learning_rate": 7.889705882352943e-06, + "loss": 0.35978816986083983, + "step": 40100 + }, + { + "epoch": 84.45425867507886, + "grad_norm": 0.641968846321106, + "learning_rate": 7.784663865546218e-06, + "loss": 0.35977176666259764, + "step": 40200 + }, + { + "epoch": 84.66456361724501, + "grad_norm": 0.6307324767112732, + "learning_rate": 7.679621848739496e-06, + "loss": 0.36135292053222656, + "step": 40300 + }, + { + "epoch": 84.87486855941114, + "grad_norm": 0.6303888559341431, + "learning_rate": 7.5745798319327735e-06, + "loss": 0.36290821075439456, + "step": 40400 + }, + { + "epoch": 85.08412197686646, + "grad_norm": 0.5610889792442322, + "learning_rate": 7.469537815126051e-06, + "loss": 0.36016101837158204, + "step": 40500 + }, + { + "epoch": 85.2944269190326, + "grad_norm": 0.5796296000480652, + "learning_rate": 7.364495798319328e-06, + "loss": 0.35660606384277344, + "step": 40600 + }, + { + "epoch": 85.50473186119874, + "grad_norm": 0.6147542595863342, + "learning_rate": 7.259453781512605e-06, + "loss": 0.35944347381591796, + "step": 40700 + }, + { + "epoch": 85.71503680336488, + "grad_norm": 0.6097769737243652, + "learning_rate": 7.154411764705883e-06, + "loss": 0.3589036560058594, + "step": 40800 + }, + { + "epoch": 85.92534174553101, + "grad_norm": 0.6288202404975891, + "learning_rate": 7.04936974789916e-06, + "loss": 0.3591917419433594, + "step": 40900 + }, + { + "epoch": 86.13459516298633, + "grad_norm": 0.6195931434631348, + "learning_rate": 6.944327731092437e-06, + "loss": 0.3569915771484375, + "step": 41000 + }, + { + "epoch": 86.34490010515248, + "grad_norm": 0.5890372395515442, + "learning_rate": 6.839285714285715e-06, + "loss": 0.3543994903564453, + "step": 41100 + }, + { + "epoch": 86.55520504731861, + "grad_norm": 0.6272594332695007, + "learning_rate": 6.735294117647059e-06, + "loss": 0.3553640365600586, + "step": 41200 + }, + { + "epoch": 86.76550998948476, + "grad_norm": 0.6778700351715088, + "learning_rate": 6.6302521008403365e-06, + "loss": 0.3564106750488281, + "step": 41300 + }, + { + "epoch": 86.97581493165089, + "grad_norm": 0.6336688995361328, + "learning_rate": 6.525210084033614e-06, + "loss": 0.35713409423828124, + "step": 41400 + }, + { + "epoch": 87.1850683491062, + "grad_norm": 0.6053069829940796, + "learning_rate": 6.421218487394959e-06, + "loss": 0.3506643295288086, + "step": 41500 + }, + { + "epoch": 87.39537329127235, + "grad_norm": 0.6175255179405212, + "learning_rate": 6.316176470588235e-06, + "loss": 0.35214996337890625, + "step": 41600 + }, + { + "epoch": 87.60567823343848, + "grad_norm": 0.5915444493293762, + "learning_rate": 6.2111344537815125e-06, + "loss": 0.3522480392456055, + "step": 41700 + }, + { + "epoch": 87.81598317560463, + "grad_norm": 0.5907636880874634, + "learning_rate": 6.10609243697479e-06, + "loss": 0.3520878601074219, + "step": 41800 + }, + { + "epoch": 88.02523659305994, + "grad_norm": 0.6209415197372437, + "learning_rate": 6.001050420168068e-06, + "loss": 0.3545633316040039, + "step": 41900 + }, + { + "epoch": 88.23554153522608, + "grad_norm": 0.5926827788352966, + "learning_rate": 5.896008403361345e-06, + "loss": 0.34920032501220705, + "step": 42000 + }, + { + "epoch": 88.44584647739222, + "grad_norm": 0.638471245765686, + "learning_rate": 5.790966386554622e-06, + "loss": 0.34805423736572266, + "step": 42100 + }, + { + "epoch": 88.65615141955836, + "grad_norm": 0.6181325316429138, + "learning_rate": 5.6859243697478994e-06, + "loss": 0.3501460647583008, + "step": 42200 + }, + { + "epoch": 88.8664563617245, + "grad_norm": 0.6029173135757446, + "learning_rate": 5.580882352941177e-06, + "loss": 0.35028797149658203, + "step": 42300 + }, + { + "epoch": 89.07570977917982, + "grad_norm": 0.5673274397850037, + "learning_rate": 5.475840336134454e-06, + "loss": 0.34918766021728515, + "step": 42400 + }, + { + "epoch": 89.28601472134595, + "grad_norm": 0.5657567977905273, + "learning_rate": 5.370798319327731e-06, + "loss": 0.34565746307373046, + "step": 42500 + }, + { + "epoch": 89.4963196635121, + "grad_norm": 0.6014168858528137, + "learning_rate": 5.265756302521008e-06, + "loss": 0.3450989532470703, + "step": 42600 + }, + { + "epoch": 89.70662460567823, + "grad_norm": 0.5631797909736633, + "learning_rate": 5.160714285714286e-06, + "loss": 0.3477408218383789, + "step": 42700 + }, + { + "epoch": 89.91692954784438, + "grad_norm": 0.624321699142456, + "learning_rate": 5.055672268907563e-06, + "loss": 0.34852649688720705, + "step": 42800 + }, + { + "epoch": 90.12618296529969, + "grad_norm": 0.6004353761672974, + "learning_rate": 4.950630252100841e-06, + "loss": 0.3450387191772461, + "step": 42900 + }, + { + "epoch": 90.33648790746582, + "grad_norm": 0.6030150651931763, + "learning_rate": 4.845588235294117e-06, + "loss": 0.34261096954345704, + "step": 43000 + }, + { + "epoch": 90.54679284963197, + "grad_norm": 0.5574061870574951, + "learning_rate": 4.740546218487396e-06, + "loss": 0.3450190734863281, + "step": 43100 + }, + { + "epoch": 90.7570977917981, + "grad_norm": 0.5677763819694519, + "learning_rate": 4.6355042016806725e-06, + "loss": 0.3442384338378906, + "step": 43200 + }, + { + "epoch": 90.96740273396425, + "grad_norm": 0.6088888645172119, + "learning_rate": 4.53046218487395e-06, + "loss": 0.3451253128051758, + "step": 43300 + }, + { + "epoch": 91.17665615141956, + "grad_norm": 0.5724344849586487, + "learning_rate": 4.425420168067227e-06, + "loss": 0.3408164978027344, + "step": 43400 + }, + { + "epoch": 91.3869610935857, + "grad_norm": 0.6201240420341492, + "learning_rate": 4.320378151260504e-06, + "loss": 0.3420841979980469, + "step": 43500 + }, + { + "epoch": 91.59726603575184, + "grad_norm": 0.6098768711090088, + "learning_rate": 4.215336134453782e-06, + "loss": 0.3413374328613281, + "step": 43600 + }, + { + "epoch": 91.80757097791798, + "grad_norm": 0.6306800842285156, + "learning_rate": 4.110294117647059e-06, + "loss": 0.34394527435302735, + "step": 43700 + }, + { + "epoch": 92.01682439537329, + "grad_norm": 0.559008777141571, + "learning_rate": 4.005252100840336e-06, + "loss": 0.3423053741455078, + "step": 43800 + }, + { + "epoch": 92.22712933753944, + "grad_norm": 0.5939933657646179, + "learning_rate": 3.900210084033614e-06, + "loss": 0.33797637939453123, + "step": 43900 + }, + { + "epoch": 92.43743427970557, + "grad_norm": 0.6135221719741821, + "learning_rate": 3.795168067226891e-06, + "loss": 0.3408375930786133, + "step": 44000 + }, + { + "epoch": 92.64773922187172, + "grad_norm": 0.5870836973190308, + "learning_rate": 3.690126050420168e-06, + "loss": 0.34073463439941404, + "step": 44100 + }, + { + "epoch": 92.85804416403785, + "grad_norm": 0.5811474323272705, + "learning_rate": 3.5850840336134456e-06, + "loss": 0.34040855407714843, + "step": 44200 + }, + { + "epoch": 93.06729758149316, + "grad_norm": 0.5979830026626587, + "learning_rate": 3.4800420168067227e-06, + "loss": 0.3395253753662109, + "step": 44300 + }, + { + "epoch": 93.27760252365931, + "grad_norm": 0.5824161171913147, + "learning_rate": 3.3750000000000003e-06, + "loss": 0.3389311981201172, + "step": 44400 + }, + { + "epoch": 93.48790746582544, + "grad_norm": 0.5694940090179443, + "learning_rate": 3.2699579831932774e-06, + "loss": 0.337044792175293, + "step": 44500 + }, + { + "epoch": 93.69821240799159, + "grad_norm": 0.6112421154975891, + "learning_rate": 3.164915966386555e-06, + "loss": 0.33819969177246095, + "step": 44600 + }, + { + "epoch": 93.90851735015772, + "grad_norm": 0.610955536365509, + "learning_rate": 3.059873949579832e-06, + "loss": 0.33944580078125, + "step": 44700 + }, + { + "epoch": 94.11777076761304, + "grad_norm": 0.6398776769638062, + "learning_rate": 2.9548319327731093e-06, + "loss": 0.33618770599365233, + "step": 44800 + }, + { + "epoch": 94.32807570977918, + "grad_norm": 0.5934144854545593, + "learning_rate": 2.849789915966387e-06, + "loss": 0.3384376525878906, + "step": 44900 + }, + { + "epoch": 94.53838065194532, + "grad_norm": 0.6144473552703857, + "learning_rate": 2.744747899159664e-06, + "loss": 0.3383865737915039, + "step": 45000 + }, + { + "epoch": 94.74868559411146, + "grad_norm": 0.5490454435348511, + "learning_rate": 2.6397058823529415e-06, + "loss": 0.33671878814697265, + "step": 45100 + }, + { + "epoch": 94.9589905362776, + "grad_norm": 0.5695416331291199, + "learning_rate": 2.5346638655462187e-06, + "loss": 0.3379853820800781, + "step": 45200 + }, + { + "epoch": 95.16824395373291, + "grad_norm": 0.5724055767059326, + "learning_rate": 2.429621848739496e-06, + "loss": 0.3338408660888672, + "step": 45300 + }, + { + "epoch": 95.37854889589906, + "grad_norm": 0.594022810459137, + "learning_rate": 2.3245798319327734e-06, + "loss": 0.3349121475219727, + "step": 45400 + }, + { + "epoch": 95.58885383806519, + "grad_norm": 0.5594576597213745, + "learning_rate": 2.2205882352941175e-06, + "loss": 0.33595680236816405, + "step": 45500 + }, + { + "epoch": 95.79915878023134, + "grad_norm": 0.5346081852912903, + "learning_rate": 2.115546218487395e-06, + "loss": 0.33520328521728515, + "step": 45600 + }, + { + "epoch": 96.00841219768665, + "grad_norm": 0.5849393606185913, + "learning_rate": 2.0105042016806722e-06, + "loss": 0.3334170913696289, + "step": 45700 + }, + { + "epoch": 96.21871713985279, + "grad_norm": 0.5918118357658386, + "learning_rate": 1.9054621848739498e-06, + "loss": 0.3329995346069336, + "step": 45800 + }, + { + "epoch": 96.42902208201893, + "grad_norm": 0.6012352705001831, + "learning_rate": 1.800420168067227e-06, + "loss": 0.3329520416259766, + "step": 45900 + }, + { + "epoch": 96.63932702418506, + "grad_norm": 0.5281354784965515, + "learning_rate": 1.6953781512605043e-06, + "loss": 0.3343208694458008, + "step": 46000 + }, + { + "epoch": 96.84963196635121, + "grad_norm": 0.5566437244415283, + "learning_rate": 1.5903361344537816e-06, + "loss": 0.33319324493408203, + "step": 46100 + }, + { + "epoch": 97.05888538380653, + "grad_norm": 0.62099689245224, + "learning_rate": 1.486344537815126e-06, + "loss": 0.33431713104248045, + "step": 46200 + }, + { + "epoch": 97.26919032597266, + "grad_norm": 0.5787718892097473, + "learning_rate": 1.3813025210084034e-06, + "loss": 0.3314530944824219, + "step": 46300 + }, + { + "epoch": 97.4794952681388, + "grad_norm": 0.5509923100471497, + "learning_rate": 1.2762605042016807e-06, + "loss": 0.3316763305664063, + "step": 46400 + }, + { + "epoch": 97.68980021030494, + "grad_norm": 0.5569334030151367, + "learning_rate": 1.171218487394958e-06, + "loss": 0.3315643310546875, + "step": 46500 + }, + { + "epoch": 97.90010515247108, + "grad_norm": 0.5476507544517517, + "learning_rate": 1.0661764705882354e-06, + "loss": 0.33233203887939455, + "step": 46600 + }, + { + "epoch": 98.1093585699264, + "grad_norm": 0.5630120038986206, + "learning_rate": 9.611344537815128e-07, + "loss": 0.33105762481689455, + "step": 46700 + }, + { + "epoch": 98.31966351209253, + "grad_norm": 0.5520943999290466, + "learning_rate": 8.5609243697479e-07, + "loss": 0.3307930374145508, + "step": 46800 + }, + { + "epoch": 98.52996845425868, + "grad_norm": 0.5917891263961792, + "learning_rate": 7.510504201680673e-07, + "loss": 0.3318499755859375, + "step": 46900 + }, + { + "epoch": 98.74027339642481, + "grad_norm": 0.5395123362541199, + "learning_rate": 6.460084033613445e-07, + "loss": 0.330290412902832, + "step": 47000 + }, + { + "epoch": 98.95057833859096, + "grad_norm": 0.5702670216560364, + "learning_rate": 5.409663865546218e-07, + "loss": 0.33196086883544923, + "step": 47100 + }, + { + "epoch": 99.15983175604627, + "grad_norm": 0.5607645511627197, + "learning_rate": 4.359243697478992e-07, + "loss": 0.3293312454223633, + "step": 47200 + }, + { + "epoch": 99.3701366982124, + "grad_norm": 0.6061931848526001, + "learning_rate": 3.308823529411765e-07, + "loss": 0.3300600051879883, + "step": 47300 + }, + { + "epoch": 99.58044164037855, + "grad_norm": 0.5829928517341614, + "learning_rate": 2.2584033613445382e-07, + "loss": 0.330217170715332, + "step": 47400 + } + ], + "logging_steps": 100, + "max_steps": 47600, + "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": 3.0542692148895744e+16, + "train_batch_size": 8, + "trial_name": null, + "trial_params": null +} diff --git a/timecost/n11/realtabformer/rtf-n11-20260501_010320/rtf_checkpoints/checkpoint-47400/training_args.bin b/timecost/n11/realtabformer/rtf-n11-20260501_010320/rtf_checkpoints/checkpoint-47400/training_args.bin new file mode 100644 index 0000000000000000000000000000000000000000..34d68dc0e0fe1c1f12a2e581dd1b166aa7178a9e --- /dev/null +++ b/timecost/n11/realtabformer/rtf-n11-20260501_010320/rtf_checkpoints/checkpoint-47400/training_args.bin @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:9e2cd88337d1d846c6918d2b3b63fa3e5c93f12fefc082497590da854a564607 +size 5201 diff --git a/timecost/n11/realtabformer/rtf-n11-20260501_010320/rtf_checkpoints/checkpoint-47500/config.json b/timecost/n11/realtabformer/rtf-n11-20260501_010320/rtf_checkpoints/checkpoint-47500/config.json new file mode 100644 index 0000000000000000000000000000000000000000..605aa5aa48fc96b6c3133032a3e66cd18090e70a --- /dev/null +++ b/timecost/n11/realtabformer/rtf-n11-20260501_010320/rtf_checkpoints/checkpoint-47500/config.json @@ -0,0 +1,34 @@ +{ + "activation_function": "gelu_new", + "add_cross_attention": false, + "architectures": [ + "GPT2LMHeadModel" + ], + "attn_pdrop": 0.1, + "bos_token_id": 5, + "dtype": "float32", + "embd_pdrop": 0.1, + "eos_token_id": 6, + "initializer_range": 0.02, + "layer_norm_epsilon": 1e-05, + "model_type": "gpt2", + "n_embd": 768, + "n_head": 12, + "n_inner": null, + "n_layer": 6, + "n_positions": 1024, + "pad_token_id": null, + "reorder_and_upcast_attn": false, + "resid_pdrop": 0.1, + "scale_attn_by_inverse_layer_idx": false, + "scale_attn_weights": true, + "summary_activation": null, + "summary_first_dropout": 0.1, + "summary_proj_to_labels": true, + "summary_type": "cls_index", + "summary_use_proj": true, + "tie_word_embeddings": true, + "transformers_version": "5.5.3", + "use_cache": false, + "vocab_size": 597 +} diff --git a/timecost/n11/realtabformer/rtf-n11-20260501_010320/rtf_checkpoints/checkpoint-47500/generation_config.json b/timecost/n11/realtabformer/rtf-n11-20260501_010320/rtf_checkpoints/checkpoint-47500/generation_config.json new file mode 100644 index 0000000000000000000000000000000000000000..ffe89567780e75b5c22eade9be971483b9618f39 --- /dev/null +++ b/timecost/n11/realtabformer/rtf-n11-20260501_010320/rtf_checkpoints/checkpoint-47500/generation_config.json @@ -0,0 +1,9 @@ +{ + "_from_model_config": true, + "bos_token_id": 5, + "eos_token_id": 6, + "output_attentions": false, + "output_hidden_states": false, + "transformers_version": "5.5.3", + "use_cache": true +} diff --git a/timecost/n11/realtabformer/rtf-n11-20260501_010320/rtf_checkpoints/checkpoint-47500/model.safetensors b/timecost/n11/realtabformer/rtf-n11-20260501_010320/rtf_checkpoints/checkpoint-47500/model.safetensors new file mode 100644 index 0000000000000000000000000000000000000000..ecd850a78b339a952a38d501ae418d0cdd501481 --- /dev/null +++ b/timecost/n11/realtabformer/rtf-n11-20260501_010320/rtf_checkpoints/checkpoint-47500/model.safetensors @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:2f69255b2e1ebc35316e8ba08883ff8f36f27e40c2b70e01ca4204052b95e70f +size 175102408 diff --git a/timecost/n11/realtabformer/rtf-n11-20260501_010320/rtf_checkpoints/checkpoint-47500/optimizer.pt b/timecost/n11/realtabformer/rtf-n11-20260501_010320/rtf_checkpoints/checkpoint-47500/optimizer.pt new file mode 100644 index 0000000000000000000000000000000000000000..7d3bb2925b883fe6ccebf7144b41f6234a99c12e --- /dev/null +++ b/timecost/n11/realtabformer/rtf-n11-20260501_010320/rtf_checkpoints/checkpoint-47500/optimizer.pt @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:89f6a2314bdfcfb6b6ad437ae32a1bab073116fd00155baa54bf0a741909e095 +size 350253899 diff --git a/timecost/n11/realtabformer/rtf-n11-20260501_010320/rtf_checkpoints/checkpoint-47500/rng_state.pth b/timecost/n11/realtabformer/rtf-n11-20260501_010320/rtf_checkpoints/checkpoint-47500/rng_state.pth new file mode 100644 index 0000000000000000000000000000000000000000..cd0a55af8d16f5926e9d39bd6f0b4772e1be9882 --- /dev/null +++ b/timecost/n11/realtabformer/rtf-n11-20260501_010320/rtf_checkpoints/checkpoint-47500/rng_state.pth @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:510a33ce65dbab3940f05b625601ae2f2ae1b39df14ecd3eb8161478740ec1af +size 14645 diff --git a/timecost/n11/realtabformer/rtf-n11-20260501_010320/rtf_checkpoints/checkpoint-47500/scaler.pt b/timecost/n11/realtabformer/rtf-n11-20260501_010320/rtf_checkpoints/checkpoint-47500/scaler.pt new file mode 100644 index 0000000000000000000000000000000000000000..4c5387615d3c0586f42c31930f3d7f98acdcd425 --- /dev/null +++ b/timecost/n11/realtabformer/rtf-n11-20260501_010320/rtf_checkpoints/checkpoint-47500/scaler.pt @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:623bb5ea4bc3aa0baad6c0505f72fc7eccdae1ceb620aa4eaa45fa59cb398af7 +size 1383 diff --git a/timecost/n11/realtabformer/rtf-n11-20260501_010320/rtf_checkpoints/checkpoint-47500/scheduler.pt b/timecost/n11/realtabformer/rtf-n11-20260501_010320/rtf_checkpoints/checkpoint-47500/scheduler.pt new file mode 100644 index 0000000000000000000000000000000000000000..b2767ff032d54657618f9622cd184e9c9bc23f9b --- /dev/null +++ b/timecost/n11/realtabformer/rtf-n11-20260501_010320/rtf_checkpoints/checkpoint-47500/scheduler.pt @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:944968239bbcbe6231dcf848c7d3056953f1d02451f51982512eb4e7677f9ab7 +size 1465 diff --git a/timecost/n11/realtabformer/rtf-n11-20260501_010320/rtf_checkpoints/checkpoint-47500/trainer_state.json b/timecost/n11/realtabformer/rtf-n11-20260501_010320/rtf_checkpoints/checkpoint-47500/trainer_state.json new file mode 100644 index 0000000000000000000000000000000000000000..e04ce7d847f848b186a5b0252b3cfe408367b542 --- /dev/null +++ b/timecost/n11/realtabformer/rtf-n11-20260501_010320/rtf_checkpoints/checkpoint-47500/trainer_state.json @@ -0,0 +1,3359 @@ +{ + "best_global_step": null, + "best_metric": null, + "best_model_checkpoint": null, + "epoch": 99.79074658254468, + "eval_steps": 100, + "global_step": 47500, + "is_hyper_param_search": false, + "is_local_process_zero": true, + "is_world_process_zero": true, + "log_history": [ + { + "epoch": 0.2103049421661409, + "grad_norm": 0.22972723841667175, + "learning_rate": 4.989600840336135e-05, + "loss": 2.8563604736328125, + "step": 100 + }, + { + "epoch": 0.4206098843322818, + "grad_norm": 0.20056591928005219, + "learning_rate": 4.9790966386554624e-05, + "loss": 1.7068206787109375, + "step": 200 + }, + { + "epoch": 0.6309148264984227, + "grad_norm": 0.1861766129732132, + "learning_rate": 4.9685924369747897e-05, + "loss": 1.6134432983398437, + "step": 300 + }, + { + "epoch": 0.8412197686645636, + "grad_norm": 0.1723501980304718, + "learning_rate": 4.9580882352941176e-05, + "loss": 1.5735923767089843, + "step": 400 + }, + { + "epoch": 1.0504731861198737, + "grad_norm": 0.17238108813762665, + "learning_rate": 4.9475840336134455e-05, + "loss": 1.5529734802246093, + "step": 500 + }, + { + "epoch": 1.2607781282860147, + "grad_norm": 0.17322759330272675, + "learning_rate": 4.9370798319327734e-05, + "loss": 1.536485137939453, + "step": 600 + }, + { + "epoch": 1.4710830704521556, + "grad_norm": 0.1677761971950531, + "learning_rate": 4.926575630252101e-05, + "loss": 1.5277809143066405, + "step": 700 + }, + { + "epoch": 1.6813880126182965, + "grad_norm": 0.1636463701725006, + "learning_rate": 4.9160714285714286e-05, + "loss": 1.5190211486816407, + "step": 800 + }, + { + "epoch": 1.8916929547844374, + "grad_norm": 0.16561312973499298, + "learning_rate": 4.9055672268907565e-05, + "loss": 1.51519287109375, + "step": 900 + }, + { + "epoch": 2.1009463722397475, + "grad_norm": 0.15477420389652252, + "learning_rate": 4.8950630252100845e-05, + "loss": 1.5094300842285155, + "step": 1000 + }, + { + "epoch": 2.3112513144058884, + "grad_norm": 0.16169467568397522, + "learning_rate": 4.8845588235294124e-05, + "loss": 1.503891143798828, + "step": 1100 + }, + { + "epoch": 2.5215562565720293, + "grad_norm": 0.1625037044286728, + "learning_rate": 4.8740546218487396e-05, + "loss": 1.5003668212890624, + "step": 1200 + }, + { + "epoch": 2.7318611987381702, + "grad_norm": 0.15850616991519928, + "learning_rate": 4.8635504201680676e-05, + "loss": 1.5004425048828125, + "step": 1300 + }, + { + "epoch": 2.942166140904311, + "grad_norm": 0.15703575313091278, + "learning_rate": 4.8530462184873955e-05, + "loss": 1.4983340454101564, + "step": 1400 + }, + { + "epoch": 3.1514195583596214, + "grad_norm": 0.16104279458522797, + "learning_rate": 4.8425420168067234e-05, + "loss": 1.4921080017089843, + "step": 1500 + }, + { + "epoch": 3.3617245005257623, + "grad_norm": 0.15719465911388397, + "learning_rate": 4.8320378151260507e-05, + "loss": 1.4903582763671874, + "step": 1600 + }, + { + "epoch": 3.5720294426919033, + "grad_norm": 0.15651755034923553, + "learning_rate": 4.821533613445378e-05, + "loss": 1.4904457092285157, + "step": 1700 + }, + { + "epoch": 3.782334384858044, + "grad_norm": 0.14600972831249237, + "learning_rate": 4.811029411764706e-05, + "loss": 1.4897219848632812, + "step": 1800 + }, + { + "epoch": 3.992639327024185, + "grad_norm": 0.15000982582569122, + "learning_rate": 4.800525210084034e-05, + "loss": 1.4866799926757812, + "step": 1900 + }, + { + "epoch": 4.201892744479495, + "grad_norm": 0.1467936933040619, + "learning_rate": 4.790021008403362e-05, + "loss": 1.48007080078125, + "step": 2000 + }, + { + "epoch": 4.412197686645636, + "grad_norm": 0.1541317105293274, + "learning_rate": 4.779516806722689e-05, + "loss": 1.48170166015625, + "step": 2100 + }, + { + "epoch": 4.622502628811777, + "grad_norm": 0.15136213600635529, + "learning_rate": 4.769012605042017e-05, + "loss": 1.4820193481445312, + "step": 2200 + }, + { + "epoch": 4.832807570977918, + "grad_norm": 0.15268521010875702, + "learning_rate": 4.758508403361345e-05, + "loss": 1.4826155090332032, + "step": 2300 + }, + { + "epoch": 5.042060988433228, + "grad_norm": 0.1507953554391861, + "learning_rate": 4.748004201680673e-05, + "loss": 1.4825518798828126, + "step": 2400 + }, + { + "epoch": 5.252365930599369, + "grad_norm": 0.15759222209453583, + "learning_rate": 4.7375e-05, + "loss": 1.4742916870117186, + "step": 2500 + }, + { + "epoch": 5.46267087276551, + "grad_norm": 0.1464644968509674, + "learning_rate": 4.726995798319328e-05, + "loss": 1.47645751953125, + "step": 2600 + }, + { + "epoch": 5.672975814931651, + "grad_norm": 0.1496453732252121, + "learning_rate": 4.716491596638656e-05, + "loss": 1.4782669067382812, + "step": 2700 + }, + { + "epoch": 5.883280757097792, + "grad_norm": 0.15732301771640778, + "learning_rate": 4.705987394957984e-05, + "loss": 1.474007110595703, + "step": 2800 + }, + { + "epoch": 6.092534174553102, + "grad_norm": 0.1535627543926239, + "learning_rate": 4.6954831932773117e-05, + "loss": 1.4723405456542968, + "step": 2900 + }, + { + "epoch": 6.302839116719243, + "grad_norm": 0.15365540981292725, + "learning_rate": 4.684978991596639e-05, + "loss": 1.470570068359375, + "step": 3000 + }, + { + "epoch": 6.513144058885384, + "grad_norm": 0.15696321427822113, + "learning_rate": 4.674474789915967e-05, + "loss": 1.4713912963867188, + "step": 3100 + }, + { + "epoch": 6.723449001051525, + "grad_norm": 0.1542283147573471, + "learning_rate": 4.663970588235294e-05, + "loss": 1.4717630004882813, + "step": 3200 + }, + { + "epoch": 6.933753943217665, + "grad_norm": 0.14150017499923706, + "learning_rate": 4.653466386554622e-05, + "loss": 1.4702410888671875, + "step": 3300 + }, + { + "epoch": 7.143007360672976, + "grad_norm": 0.1593707650899887, + "learning_rate": 4.64296218487395e-05, + "loss": 1.4674795532226563, + "step": 3400 + }, + { + "epoch": 7.353312302839116, + "grad_norm": 0.14085018634796143, + "learning_rate": 4.632457983193277e-05, + "loss": 1.4630509948730468, + "step": 3500 + }, + { + "epoch": 7.563617245005258, + "grad_norm": 0.15045367181301117, + "learning_rate": 4.621953781512605e-05, + "loss": 1.464947509765625, + "step": 3600 + }, + { + "epoch": 7.773922187171398, + "grad_norm": 0.1627761274576187, + "learning_rate": 4.611449579831933e-05, + "loss": 1.4676199340820313, + "step": 3700 + }, + { + "epoch": 7.9842271293375395, + "grad_norm": 0.15296733379364014, + "learning_rate": 4.600945378151261e-05, + "loss": 1.464564208984375, + "step": 3800 + }, + { + "epoch": 8.19348054679285, + "grad_norm": 0.15292306244373322, + "learning_rate": 4.590441176470588e-05, + "loss": 1.460281982421875, + "step": 3900 + }, + { + "epoch": 8.40378548895899, + "grad_norm": 0.14858974516391754, + "learning_rate": 4.579936974789916e-05, + "loss": 1.4601573181152343, + "step": 4000 + }, + { + "epoch": 8.614090431125131, + "grad_norm": 0.1559685617685318, + "learning_rate": 4.569432773109244e-05, + "loss": 1.459988555908203, + "step": 4100 + }, + { + "epoch": 8.824395373291273, + "grad_norm": 0.16048291325569153, + "learning_rate": 4.558928571428572e-05, + "loss": 1.4614971923828124, + "step": 4200 + }, + { + "epoch": 9.033648790746582, + "grad_norm": 0.15471497178077698, + "learning_rate": 4.548424369747899e-05, + "loss": 1.4605735778808593, + "step": 4300 + }, + { + "epoch": 9.243953732912724, + "grad_norm": 0.14675338566303253, + "learning_rate": 4.537920168067227e-05, + "loss": 1.4529206848144531, + "step": 4400 + }, + { + "epoch": 9.454258675078865, + "grad_norm": 0.15218420326709747, + "learning_rate": 4.527415966386555e-05, + "loss": 1.4555152893066405, + "step": 4500 + }, + { + "epoch": 9.664563617245005, + "grad_norm": 0.15305759012699127, + "learning_rate": 4.516911764705883e-05, + "loss": 1.4550628662109375, + "step": 4600 + }, + { + "epoch": 9.874868559411146, + "grad_norm": 0.14932408928871155, + "learning_rate": 4.50640756302521e-05, + "loss": 1.4576924133300782, + "step": 4700 + }, + { + "epoch": 10.084121976866456, + "grad_norm": 0.15317517518997192, + "learning_rate": 4.4959033613445375e-05, + "loss": 1.45219482421875, + "step": 4800 + }, + { + "epoch": 10.294426919032597, + "grad_norm": 0.14954303205013275, + "learning_rate": 4.4853991596638654e-05, + "loss": 1.4481625366210937, + "step": 4900 + }, + { + "epoch": 10.504731861198739, + "grad_norm": 0.1534873992204666, + "learning_rate": 4.4748949579831934e-05, + "loss": 1.4501405334472657, + "step": 5000 + }, + { + "epoch": 10.715036803364878, + "grad_norm": 0.1542547196149826, + "learning_rate": 4.464390756302521e-05, + "loss": 1.452711181640625, + "step": 5100 + }, + { + "epoch": 10.92534174553102, + "grad_norm": 0.15033429861068726, + "learning_rate": 4.453886554621849e-05, + "loss": 1.4518144226074219, + "step": 5200 + }, + { + "epoch": 11.13459516298633, + "grad_norm": 0.16419348120689392, + "learning_rate": 4.4433823529411765e-05, + "loss": 1.4447087097167968, + "step": 5300 + }, + { + "epoch": 11.34490010515247, + "grad_norm": 0.15558737516403198, + "learning_rate": 4.4328781512605044e-05, + "loss": 1.4432438659667968, + "step": 5400 + }, + { + "epoch": 11.555205047318612, + "grad_norm": 0.16111871600151062, + "learning_rate": 4.422373949579832e-05, + "loss": 1.44447509765625, + "step": 5500 + }, + { + "epoch": 11.765509989484753, + "grad_norm": 0.15655963122844696, + "learning_rate": 4.41186974789916e-05, + "loss": 1.446072998046875, + "step": 5600 + }, + { + "epoch": 11.975814931650893, + "grad_norm": 0.1640811264514923, + "learning_rate": 4.4013655462184875e-05, + "loss": 1.4470193481445313, + "step": 5700 + }, + { + "epoch": 12.185068349106205, + "grad_norm": 0.16302675008773804, + "learning_rate": 4.3908613445378154e-05, + "loss": 1.4352632141113282, + "step": 5800 + }, + { + "epoch": 12.395373291272344, + "grad_norm": 0.16527259349822998, + "learning_rate": 4.380357142857143e-05, + "loss": 1.4378224182128907, + "step": 5900 + }, + { + "epoch": 12.605678233438486, + "grad_norm": 0.15840137004852295, + "learning_rate": 4.369852941176471e-05, + "loss": 1.438340301513672, + "step": 6000 + }, + { + "epoch": 12.815983175604627, + "grad_norm": 0.16105377674102783, + "learning_rate": 4.3593487394957985e-05, + "loss": 1.4395623779296876, + "step": 6100 + }, + { + "epoch": 13.025236593059937, + "grad_norm": 0.1645898073911667, + "learning_rate": 4.348844537815126e-05, + "loss": 1.4419912719726562, + "step": 6200 + }, + { + "epoch": 13.235541535226078, + "grad_norm": 0.16387709975242615, + "learning_rate": 4.338340336134454e-05, + "loss": 1.4292103576660156, + "step": 6300 + }, + { + "epoch": 13.44584647739222, + "grad_norm": 0.16231203079223633, + "learning_rate": 4.3278361344537816e-05, + "loss": 1.4302072143554687, + "step": 6400 + }, + { + "epoch": 13.656151419558359, + "grad_norm": 0.17272767424583435, + "learning_rate": 4.3173319327731095e-05, + "loss": 1.4360617065429688, + "step": 6500 + }, + { + "epoch": 13.8664563617245, + "grad_norm": 0.16650696098804474, + "learning_rate": 4.306827731092437e-05, + "loss": 1.43187744140625, + "step": 6600 + }, + { + "epoch": 14.07570977917981, + "grad_norm": 0.17131085693836212, + "learning_rate": 4.296323529411765e-05, + "loss": 1.428362579345703, + "step": 6700 + }, + { + "epoch": 14.286014721345952, + "grad_norm": 0.1767681986093521, + "learning_rate": 4.2858193277310926e-05, + "loss": 1.4247616577148436, + "step": 6800 + }, + { + "epoch": 14.496319663512093, + "grad_norm": 0.17670001089572906, + "learning_rate": 4.2753151260504206e-05, + "loss": 1.4254454040527345, + "step": 6900 + }, + { + "epoch": 14.706624605678233, + "grad_norm": 0.1740790754556656, + "learning_rate": 4.2648109243697485e-05, + "loss": 1.4258729553222655, + "step": 7000 + }, + { + "epoch": 14.916929547844374, + "grad_norm": 0.1759176403284073, + "learning_rate": 4.254306722689076e-05, + "loss": 1.429442138671875, + "step": 7100 + }, + { + "epoch": 15.126182965299684, + "grad_norm": 0.17811505496501923, + "learning_rate": 4.2438025210084037e-05, + "loss": 1.4193470764160157, + "step": 7200 + }, + { + "epoch": 15.336487907465825, + "grad_norm": 0.1877354234457016, + "learning_rate": 4.2332983193277316e-05, + "loss": 1.4145277404785157, + "step": 7300 + }, + { + "epoch": 15.546792849631967, + "grad_norm": 0.18199266493320465, + "learning_rate": 4.2227941176470595e-05, + "loss": 1.4196495056152343, + "step": 7400 + }, + { + "epoch": 15.757097791798108, + "grad_norm": 0.18197669088840485, + "learning_rate": 4.212289915966387e-05, + "loss": 1.418301544189453, + "step": 7500 + }, + { + "epoch": 15.967402733964247, + "grad_norm": 0.1789412796497345, + "learning_rate": 4.201785714285714e-05, + "loss": 1.4207553100585937, + "step": 7600 + }, + { + "epoch": 16.176656151419557, + "grad_norm": 0.19073587656021118, + "learning_rate": 4.191281512605042e-05, + "loss": 1.405756072998047, + "step": 7700 + }, + { + "epoch": 16.3869610935857, + "grad_norm": 0.20197375118732452, + "learning_rate": 4.18077731092437e-05, + "loss": 1.4052299499511718, + "step": 7800 + }, + { + "epoch": 16.59726603575184, + "grad_norm": 0.19041137397289276, + "learning_rate": 4.170273109243698e-05, + "loss": 1.4102354431152344, + "step": 7900 + }, + { + "epoch": 16.80757097791798, + "grad_norm": 0.18918046355247498, + "learning_rate": 4.159768907563025e-05, + "loss": 1.4105937194824218, + "step": 8000 + }, + { + "epoch": 17.01682439537329, + "grad_norm": 0.20001663267612457, + "learning_rate": 4.149264705882353e-05, + "loss": 1.4125469970703124, + "step": 8100 + }, + { + "epoch": 17.22712933753943, + "grad_norm": 0.20373570919036865, + "learning_rate": 4.138760504201681e-05, + "loss": 1.3912005615234375, + "step": 8200 + }, + { + "epoch": 17.437434279705574, + "grad_norm": 0.21228203177452087, + "learning_rate": 4.128256302521009e-05, + "loss": 1.400099334716797, + "step": 8300 + }, + { + "epoch": 17.647739221871714, + "grad_norm": 0.19748076796531677, + "learning_rate": 4.117752100840336e-05, + "loss": 1.3983584594726564, + "step": 8400 + }, + { + "epoch": 17.858044164037857, + "grad_norm": 0.19849108159542084, + "learning_rate": 4.107247899159664e-05, + "loss": 1.4034251403808593, + "step": 8500 + }, + { + "epoch": 18.067297581493165, + "grad_norm": 0.20575450360774994, + "learning_rate": 4.096743697478992e-05, + "loss": 1.3967425537109375, + "step": 8600 + }, + { + "epoch": 18.277602523659304, + "grad_norm": 0.21221311390399933, + "learning_rate": 4.08623949579832e-05, + "loss": 1.3828977966308593, + "step": 8700 + }, + { + "epoch": 18.487907465825447, + "grad_norm": 0.21134966611862183, + "learning_rate": 4.075735294117648e-05, + "loss": 1.3854733276367188, + "step": 8800 + }, + { + "epoch": 18.698212407991587, + "grad_norm": 0.22016377747058868, + "learning_rate": 4.065231092436975e-05, + "loss": 1.3901968383789063, + "step": 8900 + }, + { + "epoch": 18.90851735015773, + "grad_norm": 0.21417804062366486, + "learning_rate": 4.054726890756303e-05, + "loss": 1.393634033203125, + "step": 9000 + }, + { + "epoch": 19.117770767613038, + "grad_norm": 0.22256560623645782, + "learning_rate": 4.04422268907563e-05, + "loss": 1.3783042907714844, + "step": 9100 + }, + { + "epoch": 19.32807570977918, + "grad_norm": 0.22738981246948242, + "learning_rate": 4.033718487394958e-05, + "loss": 1.370293426513672, + "step": 9200 + }, + { + "epoch": 19.53838065194532, + "grad_norm": 0.22241266071796417, + "learning_rate": 4.023214285714286e-05, + "loss": 1.3737275695800781, + "step": 9300 + }, + { + "epoch": 19.74868559411146, + "grad_norm": 0.23391330242156982, + "learning_rate": 4.012710084033613e-05, + "loss": 1.377355194091797, + "step": 9400 + }, + { + "epoch": 19.958990536277604, + "grad_norm": 0.22519543766975403, + "learning_rate": 4.002205882352941e-05, + "loss": 1.3812960815429687, + "step": 9500 + }, + { + "epoch": 20.16824395373291, + "grad_norm": 0.24074196815490723, + "learning_rate": 3.991701680672269e-05, + "loss": 1.3570118713378907, + "step": 9600 + }, + { + "epoch": 20.378548895899055, + "grad_norm": 0.24606694281101227, + "learning_rate": 3.981197478991597e-05, + "loss": 1.3554267883300781, + "step": 9700 + }, + { + "epoch": 20.588853838065194, + "grad_norm": 0.23913830518722534, + "learning_rate": 3.970693277310924e-05, + "loss": 1.3621504211425781, + "step": 9800 + }, + { + "epoch": 20.799158780231334, + "grad_norm": 0.2383037805557251, + "learning_rate": 3.960189075630252e-05, + "loss": 1.3660731506347656, + "step": 9900 + }, + { + "epoch": 21.008412197686646, + "grad_norm": 0.241073340177536, + "learning_rate": 3.94968487394958e-05, + "loss": 1.3653842163085939, + "step": 10000 + }, + { + "epoch": 21.218717139852785, + "grad_norm": 0.25740981101989746, + "learning_rate": 3.939180672268908e-05, + "loss": 1.3331489562988281, + "step": 10100 + }, + { + "epoch": 21.42902208201893, + "grad_norm": 0.25830078125, + "learning_rate": 3.928676470588235e-05, + "loss": 1.3397677612304688, + "step": 10200 + }, + { + "epoch": 21.639327024185068, + "grad_norm": 0.26326829195022583, + "learning_rate": 3.918172268907563e-05, + "loss": 1.3485836791992187, + "step": 10300 + }, + { + "epoch": 21.84963196635121, + "grad_norm": 0.26259171962738037, + "learning_rate": 3.907668067226891e-05, + "loss": 1.3472573852539063, + "step": 10400 + }, + { + "epoch": 22.05888538380652, + "grad_norm": 0.27395525574684143, + "learning_rate": 3.897163865546219e-05, + "loss": 1.3426994323730468, + "step": 10500 + }, + { + "epoch": 22.26919032597266, + "grad_norm": 0.2820175290107727, + "learning_rate": 3.8866596638655463e-05, + "loss": 1.3179571533203125, + "step": 10600 + }, + { + "epoch": 22.479495268138802, + "grad_norm": 0.2815999984741211, + "learning_rate": 3.8761554621848736e-05, + "loss": 1.3242898559570313, + "step": 10700 + }, + { + "epoch": 22.68980021030494, + "grad_norm": 0.2788920998573303, + "learning_rate": 3.8656512605042015e-05, + "loss": 1.328133087158203, + "step": 10800 + }, + { + "epoch": 22.900105152471085, + "grad_norm": 0.2880179286003113, + "learning_rate": 3.8551470588235294e-05, + "loss": 1.3323233032226562, + "step": 10900 + }, + { + "epoch": 23.109358569926393, + "grad_norm": 0.29323825240135193, + "learning_rate": 3.8446428571428574e-05, + "loss": 1.3124215698242188, + "step": 11000 + }, + { + "epoch": 23.319663512092536, + "grad_norm": 0.3037724196910858, + "learning_rate": 3.834138655462185e-05, + "loss": 1.300673370361328, + "step": 11100 + }, + { + "epoch": 23.529968454258675, + "grad_norm": 0.3019108772277832, + "learning_rate": 3.8236344537815125e-05, + "loss": 1.3033621215820312, + "step": 11200 + }, + { + "epoch": 23.740273396424815, + "grad_norm": 0.3141040503978729, + "learning_rate": 3.8131302521008405e-05, + "loss": 1.3118415832519532, + "step": 11300 + }, + { + "epoch": 23.950578338590958, + "grad_norm": 0.305362731218338, + "learning_rate": 3.8026260504201684e-05, + "loss": 1.3120425415039063, + "step": 11400 + }, + { + "epoch": 24.159831756046266, + "grad_norm": 0.3149303197860718, + "learning_rate": 3.792121848739496e-05, + "loss": 1.281750946044922, + "step": 11500 + }, + { + "epoch": 24.37013669821241, + "grad_norm": 0.31983524560928345, + "learning_rate": 3.7816176470588236e-05, + "loss": 1.2786111450195312, + "step": 11600 + }, + { + "epoch": 24.58044164037855, + "grad_norm": 0.32351240515708923, + "learning_rate": 3.7711134453781515e-05, + "loss": 1.284888916015625, + "step": 11700 + }, + { + "epoch": 24.79074658254469, + "grad_norm": 0.3239966034889221, + "learning_rate": 3.7606092436974794e-05, + "loss": 1.2899176025390624, + "step": 11800 + }, + { + "epoch": 25.0, + "grad_norm": 0.49487531185150146, + "learning_rate": 3.7501050420168073e-05, + "loss": 1.2903105163574218, + "step": 11900 + }, + { + "epoch": 25.21030494216614, + "grad_norm": 0.343091756105423, + "learning_rate": 3.7396008403361346e-05, + "loss": 1.24728271484375, + "step": 12000 + }, + { + "epoch": 25.420609884332283, + "grad_norm": 0.3502146899700165, + "learning_rate": 3.729096638655462e-05, + "loss": 1.2573788452148438, + "step": 12100 + }, + { + "epoch": 25.630914826498422, + "grad_norm": 0.34780803322792053, + "learning_rate": 3.71859243697479e-05, + "loss": 1.259660186767578, + "step": 12200 + }, + { + "epoch": 25.841219768664562, + "grad_norm": 0.3617474436759949, + "learning_rate": 3.708088235294118e-05, + "loss": 1.267321548461914, + "step": 12300 + }, + { + "epoch": 26.050473186119874, + "grad_norm": 0.36151477694511414, + "learning_rate": 3.6975840336134456e-05, + "loss": 1.2569818878173828, + "step": 12400 + }, + { + "epoch": 26.260778128286013, + "grad_norm": 0.3706369400024414, + "learning_rate": 3.687079831932773e-05, + "loss": 1.2217762756347657, + "step": 12500 + }, + { + "epoch": 26.471083070452156, + "grad_norm": 0.36876797676086426, + "learning_rate": 3.676575630252101e-05, + "loss": 1.2311412048339845, + "step": 12600 + }, + { + "epoch": 26.681388012618296, + "grad_norm": 0.37329521775245667, + "learning_rate": 3.666071428571429e-05, + "loss": 1.23805908203125, + "step": 12700 + }, + { + "epoch": 26.89169295478444, + "grad_norm": 0.3803170919418335, + "learning_rate": 3.6555672268907566e-05, + "loss": 1.2423350524902343, + "step": 12800 + }, + { + "epoch": 27.100946372239747, + "grad_norm": 0.3833712637424469, + "learning_rate": 3.6450630252100846e-05, + "loss": 1.222099609375, + "step": 12900 + }, + { + "epoch": 27.31125131440589, + "grad_norm": 0.3987831771373749, + "learning_rate": 3.634558823529412e-05, + "loss": 1.1973797607421874, + "step": 13000 + }, + { + "epoch": 27.52155625657203, + "grad_norm": 0.39121338725090027, + "learning_rate": 3.62405462184874e-05, + "loss": 1.206004409790039, + "step": 13100 + }, + { + "epoch": 27.73186119873817, + "grad_norm": 0.4020472764968872, + "learning_rate": 3.613550420168068e-05, + "loss": 1.2129373168945312, + "step": 13200 + }, + { + "epoch": 27.942166140904312, + "grad_norm": 0.4015159606933594, + "learning_rate": 3.6030462184873956e-05, + "loss": 1.2179686737060547, + "step": 13300 + }, + { + "epoch": 28.15141955835962, + "grad_norm": 0.3998790681362152, + "learning_rate": 3.592542016806723e-05, + "loss": 1.1833483123779296, + "step": 13400 + }, + { + "epoch": 28.361724500525764, + "grad_norm": 0.4190026819705963, + "learning_rate": 3.582037815126051e-05, + "loss": 1.1737586975097656, + "step": 13500 + }, + { + "epoch": 28.572029442691903, + "grad_norm": 0.4131736159324646, + "learning_rate": 3.571533613445378e-05, + "loss": 1.1806912231445312, + "step": 13600 + }, + { + "epoch": 28.782334384858043, + "grad_norm": 0.4250866174697876, + "learning_rate": 3.561029411764706e-05, + "loss": 1.1913446044921876, + "step": 13700 + }, + { + "epoch": 28.992639327024186, + "grad_norm": 0.4264129400253296, + "learning_rate": 3.550525210084034e-05, + "loss": 1.1878318786621094, + "step": 13800 + }, + { + "epoch": 29.201892744479494, + "grad_norm": 0.43633338809013367, + "learning_rate": 3.540021008403361e-05, + "loss": 1.1386358642578125, + "step": 13900 + }, + { + "epoch": 29.412197686645637, + "grad_norm": 0.4486881494522095, + "learning_rate": 3.529516806722689e-05, + "loss": 1.1477174377441406, + "step": 14000 + }, + { + "epoch": 29.622502628811777, + "grad_norm": 0.4420314133167267, + "learning_rate": 3.519012605042017e-05, + "loss": 1.1530896759033202, + "step": 14100 + }, + { + "epoch": 29.832807570977916, + "grad_norm": 0.4598003327846527, + "learning_rate": 3.508508403361345e-05, + "loss": 1.16252197265625, + "step": 14200 + }, + { + "epoch": 30.042060988433228, + "grad_norm": 0.44520533084869385, + "learning_rate": 3.498004201680672e-05, + "loss": 1.1551103973388672, + "step": 14300 + }, + { + "epoch": 30.252365930599368, + "grad_norm": 0.45871588587760925, + "learning_rate": 3.4875e-05, + "loss": 1.107753448486328, + "step": 14400 + }, + { + "epoch": 30.46267087276551, + "grad_norm": 0.46063199639320374, + "learning_rate": 3.476995798319328e-05, + "loss": 1.1182296752929688, + "step": 14500 + }, + { + "epoch": 30.67297581493165, + "grad_norm": 0.4760204553604126, + "learning_rate": 3.466491596638656e-05, + "loss": 1.129236373901367, + "step": 14600 + }, + { + "epoch": 30.883280757097793, + "grad_norm": 0.47249314188957214, + "learning_rate": 3.455987394957984e-05, + "loss": 1.1352229309082031, + "step": 14700 + }, + { + "epoch": 31.0925341745531, + "grad_norm": 0.4624006450176239, + "learning_rate": 3.445483193277311e-05, + "loss": 1.1082867431640624, + "step": 14800 + }, + { + "epoch": 31.302839116719245, + "grad_norm": 0.4787958264350891, + "learning_rate": 3.434978991596639e-05, + "loss": 1.0818411254882812, + "step": 14900 + }, + { + "epoch": 31.513144058885384, + "grad_norm": 0.4875246286392212, + "learning_rate": 3.424474789915967e-05, + "loss": 1.092553939819336, + "step": 15000 + }, + { + "epoch": 31.723449001051524, + "grad_norm": 0.48742467164993286, + "learning_rate": 3.413970588235294e-05, + "loss": 1.1002989959716798, + "step": 15100 + }, + { + "epoch": 31.933753943217667, + "grad_norm": 0.5014126896858215, + "learning_rate": 3.403466386554622e-05, + "loss": 1.1067331695556641, + "step": 15200 + }, + { + "epoch": 32.143007360672975, + "grad_norm": 0.48793110251426697, + "learning_rate": 3.3929621848739494e-05, + "loss": 1.0649752807617188, + "step": 15300 + }, + { + "epoch": 32.353312302839115, + "grad_norm": 0.5064884424209595, + "learning_rate": 3.382457983193277e-05, + "loss": 1.0489683532714844, + "step": 15400 + }, + { + "epoch": 32.56361724500526, + "grad_norm": 0.5118729472160339, + "learning_rate": 3.371953781512605e-05, + "loss": 1.0648185729980468, + "step": 15500 + }, + { + "epoch": 32.7739221871714, + "grad_norm": 0.5236688852310181, + "learning_rate": 3.361449579831933e-05, + "loss": 1.0743647766113282, + "step": 15600 + }, + { + "epoch": 32.98422712933754, + "grad_norm": 0.5397860407829285, + "learning_rate": 3.3509453781512604e-05, + "loss": 1.080048828125, + "step": 15700 + }, + { + "epoch": 33.19348054679285, + "grad_norm": 0.5270755290985107, + "learning_rate": 3.340441176470588e-05, + "loss": 1.0228548431396485, + "step": 15800 + }, + { + "epoch": 33.40378548895899, + "grad_norm": 0.5429406762123108, + "learning_rate": 3.329936974789916e-05, + "loss": 1.028949966430664, + "step": 15900 + }, + { + "epoch": 33.614090431125135, + "grad_norm": 0.5323997735977173, + "learning_rate": 3.319432773109244e-05, + "loss": 1.037523956298828, + "step": 16000 + }, + { + "epoch": 33.824395373291274, + "grad_norm": 0.5385149717330933, + "learning_rate": 3.3090336134453784e-05, + "loss": 1.0431160736083984, + "step": 16100 + }, + { + "epoch": 34.03364879074658, + "grad_norm": 0.5089665651321411, + "learning_rate": 3.2986344537815127e-05, + "loss": 1.0349723815917968, + "step": 16200 + }, + { + "epoch": 34.24395373291272, + "grad_norm": 0.5455434918403625, + "learning_rate": 3.2881302521008406e-05, + "loss": 0.988803482055664, + "step": 16300 + }, + { + "epoch": 34.45425867507886, + "grad_norm": 0.5569856762886047, + "learning_rate": 3.2776260504201685e-05, + "loss": 1.0031266021728515, + "step": 16400 + }, + { + "epoch": 34.66456361724501, + "grad_norm": 0.5644022226333618, + "learning_rate": 3.2671218487394964e-05, + "loss": 1.0083402252197267, + "step": 16500 + }, + { + "epoch": 34.87486855941115, + "grad_norm": 0.5685406923294067, + "learning_rate": 3.256617647058824e-05, + "loss": 1.0177439117431641, + "step": 16600 + }, + { + "epoch": 35.084121976866456, + "grad_norm": 0.543632447719574, + "learning_rate": 3.2461134453781516e-05, + "loss": 0.9930455780029297, + "step": 16700 + }, + { + "epoch": 35.294426919032595, + "grad_norm": 0.5612316727638245, + "learning_rate": 3.2356092436974795e-05, + "loss": 0.9650897216796875, + "step": 16800 + }, + { + "epoch": 35.504731861198735, + "grad_norm": 0.5759446024894714, + "learning_rate": 3.225105042016807e-05, + "loss": 0.973653564453125, + "step": 16900 + }, + { + "epoch": 35.71503680336488, + "grad_norm": 0.574255645275116, + "learning_rate": 3.214600840336135e-05, + "loss": 0.981424560546875, + "step": 17000 + }, + { + "epoch": 35.92534174553102, + "grad_norm": 0.5851606726646423, + "learning_rate": 3.204096638655462e-05, + "loss": 0.991123046875, + "step": 17100 + }, + { + "epoch": 36.13459516298633, + "grad_norm": 0.5589666366577148, + "learning_rate": 3.19359243697479e-05, + "loss": 0.9481909942626953, + "step": 17200 + }, + { + "epoch": 36.34490010515247, + "grad_norm": 0.5968824625015259, + "learning_rate": 3.183088235294118e-05, + "loss": 0.9365898895263672, + "step": 17300 + }, + { + "epoch": 36.55520504731861, + "grad_norm": 0.5998508930206299, + "learning_rate": 3.172584033613446e-05, + "loss": 0.9492893218994141, + "step": 17400 + }, + { + "epoch": 36.765509989484755, + "grad_norm": 0.6060558557510376, + "learning_rate": 3.162079831932773e-05, + "loss": 0.9547823333740234, + "step": 17500 + }, + { + "epoch": 36.975814931650895, + "grad_norm": 0.589341402053833, + "learning_rate": 3.151575630252101e-05, + "loss": 0.9626276397705078, + "step": 17600 + }, + { + "epoch": 37.1850683491062, + "grad_norm": 0.5891321897506714, + "learning_rate": 3.141071428571429e-05, + "loss": 0.9065424346923828, + "step": 17700 + }, + { + "epoch": 37.39537329127234, + "grad_norm": 0.5880729556083679, + "learning_rate": 3.130567226890757e-05, + "loss": 0.9107749938964844, + "step": 17800 + }, + { + "epoch": 37.60567823343849, + "grad_norm": 0.6077774167060852, + "learning_rate": 3.120063025210084e-05, + "loss": 0.9193459320068359, + "step": 17900 + }, + { + "epoch": 37.81598317560463, + "grad_norm": 0.6189863681793213, + "learning_rate": 3.109558823529412e-05, + "loss": 0.9286084747314454, + "step": 18000 + }, + { + "epoch": 38.02523659305994, + "grad_norm": 0.5724475383758545, + "learning_rate": 3.09905462184874e-05, + "loss": 0.9282203674316406, + "step": 18100 + }, + { + "epoch": 38.235541535226076, + "grad_norm": 0.5952550768852234, + "learning_rate": 3.088550420168068e-05, + "loss": 0.8734053039550781, + "step": 18200 + }, + { + "epoch": 38.445846477392216, + "grad_norm": 0.5967536568641663, + "learning_rate": 3.078046218487395e-05, + "loss": 0.886033935546875, + "step": 18300 + }, + { + "epoch": 38.65615141955836, + "grad_norm": 0.6298649311065674, + "learning_rate": 3.067542016806722e-05, + "loss": 0.8977913665771484, + "step": 18400 + }, + { + "epoch": 38.8664563617245, + "grad_norm": 0.6457948684692383, + "learning_rate": 3.05703781512605e-05, + "loss": 0.9048082733154297, + "step": 18500 + }, + { + "epoch": 39.07570977917981, + "grad_norm": 0.6172012090682983, + "learning_rate": 3.046533613445378e-05, + "loss": 0.8857656860351563, + "step": 18600 + }, + { + "epoch": 39.28601472134595, + "grad_norm": 0.5979504585266113, + "learning_rate": 3.036029411764706e-05, + "loss": 0.8502845001220704, + "step": 18700 + }, + { + "epoch": 39.49631966351209, + "grad_norm": 0.6284430623054504, + "learning_rate": 3.0255252100840336e-05, + "loss": 0.8602873229980469, + "step": 18800 + }, + { + "epoch": 39.706624605678236, + "grad_norm": 0.6330845355987549, + "learning_rate": 3.0150210084033616e-05, + "loss": 0.8690576934814453, + "step": 18900 + }, + { + "epoch": 39.916929547844376, + "grad_norm": 0.6465399861335754, + "learning_rate": 3.004516806722689e-05, + "loss": 0.8787310791015625, + "step": 19000 + }, + { + "epoch": 40.126182965299684, + "grad_norm": 0.6255329251289368, + "learning_rate": 2.994117647058824e-05, + "loss": 0.84158203125, + "step": 19100 + }, + { + "epoch": 40.33648790746582, + "grad_norm": 0.6304967999458313, + "learning_rate": 2.983613445378151e-05, + "loss": 0.8283135223388672, + "step": 19200 + }, + { + "epoch": 40.54679284963196, + "grad_norm": 0.6366279125213623, + "learning_rate": 2.973109243697479e-05, + "loss": 0.8385968780517579, + "step": 19300 + }, + { + "epoch": 40.75709779179811, + "grad_norm": 0.6407002210617065, + "learning_rate": 2.9626050420168065e-05, + "loss": 0.8465004730224609, + "step": 19400 + }, + { + "epoch": 40.96740273396425, + "grad_norm": 0.6582015156745911, + "learning_rate": 2.9521008403361344e-05, + "loss": 0.8523696136474609, + "step": 19500 + }, + { + "epoch": 41.17665615141956, + "grad_norm": 0.6326037645339966, + "learning_rate": 2.9415966386554624e-05, + "loss": 0.8025535583496094, + "step": 19600 + }, + { + "epoch": 41.3869610935857, + "grad_norm": 0.631605863571167, + "learning_rate": 2.93109243697479e-05, + "loss": 0.8077165222167969, + "step": 19700 + }, + { + "epoch": 41.597266035751844, + "grad_norm": 0.6400684118270874, + "learning_rate": 2.920588235294118e-05, + "loss": 0.8162235260009766, + "step": 19800 + }, + { + "epoch": 41.80757097791798, + "grad_norm": 0.6499695181846619, + "learning_rate": 2.9100840336134455e-05, + "loss": 0.8243218231201171, + "step": 19900 + }, + { + "epoch": 42.01682439537329, + "grad_norm": 0.6392955183982849, + "learning_rate": 2.8995798319327734e-05, + "loss": 0.8244134521484375, + "step": 20000 + }, + { + "epoch": 42.22712933753943, + "grad_norm": 0.6429536938667297, + "learning_rate": 2.889075630252101e-05, + "loss": 0.7711881256103515, + "step": 20100 + }, + { + "epoch": 42.43743427970557, + "grad_norm": 0.6592206358909607, + "learning_rate": 2.878571428571429e-05, + "loss": 0.7841451263427734, + "step": 20200 + }, + { + "epoch": 42.64773922187172, + "grad_norm": 0.6881083846092224, + "learning_rate": 2.8680672268907565e-05, + "loss": 0.792880859375, + "step": 20300 + }, + { + "epoch": 42.85804416403786, + "grad_norm": 0.6662302017211914, + "learning_rate": 2.8575630252100844e-05, + "loss": 0.8001659393310547, + "step": 20400 + }, + { + "epoch": 43.067297581493165, + "grad_norm": 0.6177626252174377, + "learning_rate": 2.847058823529412e-05, + "loss": 0.7870485687255859, + "step": 20500 + }, + { + "epoch": 43.277602523659304, + "grad_norm": 0.6681060194969177, + "learning_rate": 2.83655462184874e-05, + "loss": 0.7512457275390625, + "step": 20600 + }, + { + "epoch": 43.487907465825444, + "grad_norm": 0.669675886631012, + "learning_rate": 2.826050420168067e-05, + "loss": 0.7591960144042968, + "step": 20700 + }, + { + "epoch": 43.69821240799159, + "grad_norm": 0.7097092866897583, + "learning_rate": 2.8155462184873948e-05, + "loss": 0.7737602233886719, + "step": 20800 + }, + { + "epoch": 43.90851735015773, + "grad_norm": 0.6951079964637756, + "learning_rate": 2.8050420168067227e-05, + "loss": 0.7815242767333984, + "step": 20900 + }, + { + "epoch": 44.11777076761304, + "grad_norm": 0.639824390411377, + "learning_rate": 2.7945378151260503e-05, + "loss": 0.7512903594970703, + "step": 21000 + }, + { + "epoch": 44.32807570977918, + "grad_norm": 0.67326819896698, + "learning_rate": 2.7840336134453782e-05, + "loss": 0.7329978179931641, + "step": 21100 + }, + { + "epoch": 44.53838065194532, + "grad_norm": 0.6938571333885193, + "learning_rate": 2.7735294117647058e-05, + "loss": 0.7421668243408203, + "step": 21200 + }, + { + "epoch": 44.748685594111464, + "grad_norm": 0.6845099925994873, + "learning_rate": 2.7630252100840337e-05, + "loss": 0.7509217071533203, + "step": 21300 + }, + { + "epoch": 44.958990536277604, + "grad_norm": 0.681825578212738, + "learning_rate": 2.7525210084033616e-05, + "loss": 0.7620004272460937, + "step": 21400 + }, + { + "epoch": 45.16824395373291, + "grad_norm": 0.6556856036186218, + "learning_rate": 2.7421218487394962e-05, + "loss": 0.7184288787841797, + "step": 21500 + }, + { + "epoch": 45.37854889589905, + "grad_norm": 0.6386471390724182, + "learning_rate": 2.7316176470588235e-05, + "loss": 0.7161962127685547, + "step": 21600 + }, + { + "epoch": 45.5888538380652, + "grad_norm": 0.6947113275527954, + "learning_rate": 2.721113445378151e-05, + "loss": 0.7244486999511719, + "step": 21700 + }, + { + "epoch": 45.79915878023134, + "grad_norm": 0.6741232872009277, + "learning_rate": 2.710609243697479e-05, + "loss": 0.7308968353271484, + "step": 21800 + }, + { + "epoch": 46.008412197686646, + "grad_norm": 0.6631771326065063, + "learning_rate": 2.7001050420168066e-05, + "loss": 0.7323504638671875, + "step": 21900 + }, + { + "epoch": 46.218717139852785, + "grad_norm": 0.6702309250831604, + "learning_rate": 2.6896008403361345e-05, + "loss": 0.6865713500976562, + "step": 22000 + }, + { + "epoch": 46.429022082018925, + "grad_norm": 0.6711138486862183, + "learning_rate": 2.679096638655462e-05, + "loss": 0.697294921875, + "step": 22100 + }, + { + "epoch": 46.63932702418507, + "grad_norm": 0.7067892551422119, + "learning_rate": 2.66859243697479e-05, + "loss": 0.70609619140625, + "step": 22200 + }, + { + "epoch": 46.84963196635121, + "grad_norm": 0.6743476390838623, + "learning_rate": 2.658088235294118e-05, + "loss": 0.7116059112548828, + "step": 22300 + }, + { + "epoch": 47.05888538380652, + "grad_norm": 0.642842710018158, + "learning_rate": 2.6475840336134455e-05, + "loss": 0.7024728393554688, + "step": 22400 + }, + { + "epoch": 47.26919032597266, + "grad_norm": 0.6852782368659973, + "learning_rate": 2.6370798319327734e-05, + "loss": 0.6698217010498047, + "step": 22500 + }, + { + "epoch": 47.4794952681388, + "grad_norm": 0.6817244291305542, + "learning_rate": 2.626575630252101e-05, + "loss": 0.6796794891357422, + "step": 22600 + }, + { + "epoch": 47.689800210304945, + "grad_norm": 0.665703535079956, + "learning_rate": 2.616071428571429e-05, + "loss": 0.689930191040039, + "step": 22700 + }, + { + "epoch": 47.900105152471085, + "grad_norm": 0.7286046147346497, + "learning_rate": 2.6055672268907565e-05, + "loss": 0.6968262481689453, + "step": 22800 + }, + { + "epoch": 48.10935856992639, + "grad_norm": 0.6568066477775574, + "learning_rate": 2.5950630252100845e-05, + "loss": 0.6714718627929688, + "step": 22900 + }, + { + "epoch": 48.31966351209253, + "grad_norm": 0.6909933090209961, + "learning_rate": 2.584558823529412e-05, + "loss": 0.6521046447753907, + "step": 23000 + }, + { + "epoch": 48.52996845425867, + "grad_norm": 0.6730957627296448, + "learning_rate": 2.5740546218487393e-05, + "loss": 0.6635847473144532, + "step": 23100 + }, + { + "epoch": 48.74027339642482, + "grad_norm": 0.7137960195541382, + "learning_rate": 2.5635504201680672e-05, + "loss": 0.6703518676757813, + "step": 23200 + }, + { + "epoch": 48.95057833859096, + "grad_norm": 0.7035015225410461, + "learning_rate": 2.5530462184873948e-05, + "loss": 0.678240737915039, + "step": 23300 + }, + { + "epoch": 49.159831756046266, + "grad_norm": 0.6768185496330261, + "learning_rate": 2.5425420168067227e-05, + "loss": 0.6413292694091797, + "step": 23400 + }, + { + "epoch": 49.370136698212406, + "grad_norm": 0.6941663026809692, + "learning_rate": 2.5320378151260503e-05, + "loss": 0.6415236663818359, + "step": 23500 + }, + { + "epoch": 49.58044164037855, + "grad_norm": 0.722435712814331, + "learning_rate": 2.5215336134453782e-05, + "loss": 0.6499783325195313, + "step": 23600 + }, + { + "epoch": 49.79074658254469, + "grad_norm": 0.7071043252944946, + "learning_rate": 2.511029411764706e-05, + "loss": 0.6546615600585938, + "step": 23700 + }, + { + "epoch": 50.0, + "grad_norm": Infinity, + "learning_rate": 2.5005252100840338e-05, + "loss": 0.6589860534667968, + "step": 23800 + }, + { + "epoch": 50.21030494216614, + "grad_norm": 0.6747011542320251, + "learning_rate": 2.490126050420168e-05, + "loss": 0.6164878845214844, + "step": 23900 + }, + { + "epoch": 50.42060988433228, + "grad_norm": 0.6953312754631042, + "learning_rate": 2.479621848739496e-05, + "loss": 0.6259209060668945, + "step": 24000 + }, + { + "epoch": 50.630914826498426, + "grad_norm": 0.6829053163528442, + "learning_rate": 2.469117647058824e-05, + "loss": 0.6306737518310547, + "step": 24100 + }, + { + "epoch": 50.841219768664565, + "grad_norm": 0.7105507850646973, + "learning_rate": 2.4586134453781514e-05, + "loss": 0.6402838897705078, + "step": 24200 + }, + { + "epoch": 51.05047318611987, + "grad_norm": 0.6592356562614441, + "learning_rate": 2.4481092436974794e-05, + "loss": 0.6321442413330078, + "step": 24300 + }, + { + "epoch": 51.26077812828601, + "grad_norm": 0.6957094073295593, + "learning_rate": 2.4376050420168066e-05, + "loss": 0.6060052108764649, + "step": 24400 + }, + { + "epoch": 51.47108307045215, + "grad_norm": 0.6904229521751404, + "learning_rate": 2.4271008403361345e-05, + "loss": 0.6094649505615234, + "step": 24500 + }, + { + "epoch": 51.6813880126183, + "grad_norm": 0.7173294425010681, + "learning_rate": 2.416596638655462e-05, + "loss": 0.6187096023559571, + "step": 24600 + }, + { + "epoch": 51.89169295478444, + "grad_norm": 0.7143198251724243, + "learning_rate": 2.40609243697479e-05, + "loss": 0.6268323516845703, + "step": 24700 + }, + { + "epoch": 52.10094637223975, + "grad_norm": 0.6786720752716064, + "learning_rate": 2.3955882352941176e-05, + "loss": 0.6083223342895507, + "step": 24800 + }, + { + "epoch": 52.31125131440589, + "grad_norm": 0.6900521516799927, + "learning_rate": 2.3850840336134456e-05, + "loss": 0.5922721862792969, + "step": 24900 + }, + { + "epoch": 52.521556256572026, + "grad_norm": 0.7288543581962585, + "learning_rate": 2.3745798319327735e-05, + "loss": 0.5982749938964844, + "step": 25000 + }, + { + "epoch": 52.73186119873817, + "grad_norm": 0.704078197479248, + "learning_rate": 2.3640756302521007e-05, + "loss": 0.6041379547119141, + "step": 25100 + }, + { + "epoch": 52.94216614090431, + "grad_norm": 0.706262469291687, + "learning_rate": 2.3535714285714287e-05, + "loss": 0.6083390808105469, + "step": 25200 + }, + { + "epoch": 53.15141955835962, + "grad_norm": 0.6775776743888855, + "learning_rate": 2.3430672268907563e-05, + "loss": 0.5816435623168945, + "step": 25300 + }, + { + "epoch": 53.36172450052576, + "grad_norm": 0.7253007888793945, + "learning_rate": 2.3325630252100842e-05, + "loss": 0.58095458984375, + "step": 25400 + }, + { + "epoch": 53.5720294426919, + "grad_norm": 0.7169889211654663, + "learning_rate": 2.3220588235294118e-05, + "loss": 0.5878105163574219, + "step": 25500 + }, + { + "epoch": 53.782334384858046, + "grad_norm": 0.6921281814575195, + "learning_rate": 2.3115546218487397e-05, + "loss": 0.5918175506591797, + "step": 25600 + }, + { + "epoch": 53.992639327024186, + "grad_norm": 0.7570663094520569, + "learning_rate": 2.3010504201680673e-05, + "loss": 0.5992276000976563, + "step": 25700 + }, + { + "epoch": 54.201892744479494, + "grad_norm": 0.7045475840568542, + "learning_rate": 2.2905462184873952e-05, + "loss": 0.563626937866211, + "step": 25800 + }, + { + "epoch": 54.412197686645634, + "grad_norm": 0.7311537861824036, + "learning_rate": 2.2800420168067228e-05, + "loss": 0.5649079513549805, + "step": 25900 + }, + { + "epoch": 54.62250262881178, + "grad_norm": 0.7197280526161194, + "learning_rate": 2.2695378151260504e-05, + "loss": 0.5740287017822265, + "step": 26000 + }, + { + "epoch": 54.83280757097792, + "grad_norm": 0.7047930359840393, + "learning_rate": 2.2590336134453783e-05, + "loss": 0.5799992752075195, + "step": 26100 + }, + { + "epoch": 55.04206098843323, + "grad_norm": 0.663329541683197, + "learning_rate": 2.2486344537815125e-05, + "loss": 0.5747824096679688, + "step": 26200 + }, + { + "epoch": 55.25236593059937, + "grad_norm": 0.6825776100158691, + "learning_rate": 2.2381302521008405e-05, + "loss": 0.5511475372314453, + "step": 26300 + }, + { + "epoch": 55.46267087276551, + "grad_norm": 0.7081674337387085, + "learning_rate": 2.227626050420168e-05, + "loss": 0.5568293380737305, + "step": 26400 + }, + { + "epoch": 55.672975814931654, + "grad_norm": 0.6991596221923828, + "learning_rate": 2.217121848739496e-05, + "loss": 0.5623696899414062, + "step": 26500 + }, + { + "epoch": 55.88328075709779, + "grad_norm": 0.7421116828918457, + "learning_rate": 2.2066176470588236e-05, + "loss": 0.5673596572875976, + "step": 26600 + }, + { + "epoch": 56.0925341745531, + "grad_norm": 0.6679620146751404, + "learning_rate": 2.1961134453781515e-05, + "loss": 0.555915298461914, + "step": 26700 + }, + { + "epoch": 56.30283911671924, + "grad_norm": 0.7035086750984192, + "learning_rate": 2.185609243697479e-05, + "loss": 0.5402443313598633, + "step": 26800 + }, + { + "epoch": 56.51314405888538, + "grad_norm": 0.6888571381568909, + "learning_rate": 2.1751050420168067e-05, + "loss": 0.5462953186035157, + "step": 26900 + }, + { + "epoch": 56.72344900105153, + "grad_norm": 0.7356609106063843, + "learning_rate": 2.1646008403361346e-05, + "loss": 0.5512025833129883, + "step": 27000 + }, + { + "epoch": 56.93375394321767, + "grad_norm": 0.7569705247879028, + "learning_rate": 2.1540966386554622e-05, + "loss": 0.5562152481079101, + "step": 27100 + }, + { + "epoch": 57.143007360672975, + "grad_norm": 0.6764115691184998, + "learning_rate": 2.14359243697479e-05, + "loss": 0.5337548065185547, + "step": 27200 + }, + { + "epoch": 57.353312302839115, + "grad_norm": 0.7006810307502747, + "learning_rate": 2.1330882352941177e-05, + "loss": 0.5296073913574219, + "step": 27300 + }, + { + "epoch": 57.56361724500526, + "grad_norm": 0.7158169150352478, + "learning_rate": 2.1225840336134456e-05, + "loss": 0.5382700347900391, + "step": 27400 + }, + { + "epoch": 57.7739221871714, + "grad_norm": 0.7132992148399353, + "learning_rate": 2.1120798319327732e-05, + "loss": 0.5398505783081055, + "step": 27500 + }, + { + "epoch": 57.98422712933754, + "grad_norm": 0.7330942749977112, + "learning_rate": 2.1015756302521008e-05, + "loss": 0.5458747863769531, + "step": 27600 + }, + { + "epoch": 58.19348054679285, + "grad_norm": 0.669278621673584, + "learning_rate": 2.0910714285714287e-05, + "loss": 0.5161695861816407, + "step": 27700 + }, + { + "epoch": 58.40378548895899, + "grad_norm": 0.6958737373352051, + "learning_rate": 2.0805672268907563e-05, + "loss": 0.5201998901367187, + "step": 27800 + }, + { + "epoch": 58.614090431125135, + "grad_norm": 0.6824914813041687, + "learning_rate": 2.0700630252100842e-05, + "loss": 0.5258338928222657, + "step": 27900 + }, + { + "epoch": 58.824395373291274, + "grad_norm": 0.6634467244148254, + "learning_rate": 2.0595588235294118e-05, + "loss": 0.5300619888305664, + "step": 28000 + }, + { + "epoch": 59.03364879074658, + "grad_norm": 0.6863816380500793, + "learning_rate": 2.0490546218487397e-05, + "loss": 0.5283214950561523, + "step": 28100 + }, + { + "epoch": 59.24395373291272, + "grad_norm": 0.7183119654655457, + "learning_rate": 2.0385504201680673e-05, + "loss": 0.506834487915039, + "step": 28200 + }, + { + "epoch": 59.45425867507886, + "grad_norm": 0.7142145037651062, + "learning_rate": 2.028046218487395e-05, + "loss": 0.5117876815795899, + "step": 28300 + }, + { + "epoch": 59.66456361724501, + "grad_norm": 0.7280924916267395, + "learning_rate": 2.017542016806723e-05, + "loss": 0.5153473281860351, + "step": 28400 + }, + { + "epoch": 59.87486855941115, + "grad_norm": 0.693505048751831, + "learning_rate": 2.0070378151260504e-05, + "loss": 0.5219352722167969, + "step": 28500 + }, + { + "epoch": 60.084121976866456, + "grad_norm": 0.6892845034599304, + "learning_rate": 1.9965336134453784e-05, + "loss": 0.5122858810424805, + "step": 28600 + }, + { + "epoch": 60.294426919032595, + "grad_norm": 0.6604379415512085, + "learning_rate": 1.986029411764706e-05, + "loss": 0.49614715576171875, + "step": 28700 + }, + { + "epoch": 60.504731861198735, + "grad_norm": 0.7204891443252563, + "learning_rate": 1.975525210084034e-05, + "loss": 0.5024974822998047, + "step": 28800 + }, + { + "epoch": 60.71503680336488, + "grad_norm": 0.7127634286880493, + "learning_rate": 1.9650210084033615e-05, + "loss": 0.5073120498657226, + "step": 28900 + }, + { + "epoch": 60.92534174553102, + "grad_norm": 0.7359983921051025, + "learning_rate": 1.954516806722689e-05, + "loss": 0.5116232681274414, + "step": 29000 + }, + { + "epoch": 61.13459516298633, + "grad_norm": 0.6893951296806335, + "learning_rate": 1.944012605042017e-05, + "loss": 0.4952814865112305, + "step": 29100 + }, + { + "epoch": 61.34490010515247, + "grad_norm": 0.6849685311317444, + "learning_rate": 1.9335084033613446e-05, + "loss": 0.4899435043334961, + "step": 29200 + }, + { + "epoch": 61.55520504731861, + "grad_norm": 0.7181743383407593, + "learning_rate": 1.9230042016806725e-05, + "loss": 0.4946512985229492, + "step": 29300 + }, + { + "epoch": 61.765509989484755, + "grad_norm": 0.6820606589317322, + "learning_rate": 1.9125e-05, + "loss": 0.49947418212890626, + "step": 29400 + }, + { + "epoch": 61.975814931650895, + "grad_norm": 0.7111321687698364, + "learning_rate": 1.901995798319328e-05, + "loss": 0.5020344543457032, + "step": 29500 + }, + { + "epoch": 62.1850683491062, + "grad_norm": 0.7008198499679565, + "learning_rate": 1.8914915966386556e-05, + "loss": 0.48151485443115233, + "step": 29600 + }, + { + "epoch": 62.39537329127234, + "grad_norm": 0.7171513438224792, + "learning_rate": 1.880987394957983e-05, + "loss": 0.48171932220458985, + "step": 29700 + }, + { + "epoch": 62.60567823343849, + "grad_norm": 0.7375807762145996, + "learning_rate": 1.8704831932773108e-05, + "loss": 0.4873679733276367, + "step": 29800 + }, + { + "epoch": 62.81598317560463, + "grad_norm": 0.6806672811508179, + "learning_rate": 1.8599789915966387e-05, + "loss": 0.4887456130981445, + "step": 29900 + }, + { + "epoch": 63.02523659305994, + "grad_norm": 0.6749327182769775, + "learning_rate": 1.8494747899159666e-05, + "loss": 0.48958889007568357, + "step": 30000 + }, + { + "epoch": 63.235541535226076, + "grad_norm": 0.7122695446014404, + "learning_rate": 1.8389705882352942e-05, + "loss": 0.46849212646484373, + "step": 30100 + }, + { + "epoch": 63.445846477392216, + "grad_norm": 0.6742300987243652, + "learning_rate": 1.8285714285714288e-05, + "loss": 0.4735026550292969, + "step": 30200 + }, + { + "epoch": 63.65615141955836, + "grad_norm": 0.7086833119392395, + "learning_rate": 1.8180672268907564e-05, + "loss": 0.47808189392089845, + "step": 30300 + }, + { + "epoch": 63.8664563617245, + "grad_norm": 0.673115611076355, + "learning_rate": 1.8075630252100843e-05, + "loss": 0.4810390853881836, + "step": 30400 + }, + { + "epoch": 64.07570977917982, + "grad_norm": 0.7166642546653748, + "learning_rate": 1.797058823529412e-05, + "loss": 0.47662986755371095, + "step": 30500 + }, + { + "epoch": 64.28601472134595, + "grad_norm": 0.7239866852760315, + "learning_rate": 1.7865546218487395e-05, + "loss": 0.46368907928466796, + "step": 30600 + }, + { + "epoch": 64.4963196635121, + "grad_norm": 0.6777023077011108, + "learning_rate": 1.776050420168067e-05, + "loss": 0.46869037628173826, + "step": 30700 + }, + { + "epoch": 64.70662460567823, + "grad_norm": 0.7028587460517883, + "learning_rate": 1.765546218487395e-05, + "loss": 0.47153076171875, + "step": 30800 + }, + { + "epoch": 64.91692954784438, + "grad_norm": 0.7220568656921387, + "learning_rate": 1.755042016806723e-05, + "loss": 0.4732553482055664, + "step": 30900 + }, + { + "epoch": 65.12618296529969, + "grad_norm": 0.6283636093139648, + "learning_rate": 1.7445378151260505e-05, + "loss": 0.4627264404296875, + "step": 31000 + }, + { + "epoch": 65.33648790746582, + "grad_norm": 0.6411524415016174, + "learning_rate": 1.7340336134453784e-05, + "loss": 0.45608016967773435, + "step": 31100 + }, + { + "epoch": 65.54679284963197, + "grad_norm": 0.668154776096344, + "learning_rate": 1.723529411764706e-05, + "loss": 0.46059967041015626, + "step": 31200 + }, + { + "epoch": 65.7570977917981, + "grad_norm": 0.7226248979568481, + "learning_rate": 1.713025210084034e-05, + "loss": 0.4659851455688477, + "step": 31300 + }, + { + "epoch": 65.96740273396425, + "grad_norm": 0.6833023428916931, + "learning_rate": 1.7025210084033612e-05, + "loss": 0.46931900024414064, + "step": 31400 + }, + { + "epoch": 66.17665615141956, + "grad_norm": 0.6941800117492676, + "learning_rate": 1.6921218487394958e-05, + "loss": 0.45006973266601563, + "step": 31500 + }, + { + "epoch": 66.3869610935857, + "grad_norm": 0.63517826795578, + "learning_rate": 1.6816176470588237e-05, + "loss": 0.44848171234130857, + "step": 31600 + }, + { + "epoch": 66.59726603575184, + "grad_norm": 0.6846080422401428, + "learning_rate": 1.6711134453781513e-05, + "loss": 0.45420032501220703, + "step": 31700 + }, + { + "epoch": 66.80757097791798, + "grad_norm": 0.6388368010520935, + "learning_rate": 1.6606092436974792e-05, + "loss": 0.4580923843383789, + "step": 31800 + }, + { + "epoch": 67.01682439537329, + "grad_norm": 0.6670629978179932, + "learning_rate": 1.6501050420168068e-05, + "loss": 0.4585027313232422, + "step": 31900 + }, + { + "epoch": 67.22712933753944, + "grad_norm": 0.6662338972091675, + "learning_rate": 1.6396008403361347e-05, + "loss": 0.44079010009765623, + "step": 32000 + }, + { + "epoch": 67.43743427970557, + "grad_norm": 0.6707865595817566, + "learning_rate": 1.6290966386554623e-05, + "loss": 0.44413238525390625, + "step": 32100 + }, + { + "epoch": 67.64773922187172, + "grad_norm": 0.656842052936554, + "learning_rate": 1.6185924369747902e-05, + "loss": 0.44844043731689454, + "step": 32200 + }, + { + "epoch": 67.85804416403785, + "grad_norm": 0.6646634340286255, + "learning_rate": 1.6080882352941175e-05, + "loss": 0.44970947265625, + "step": 32300 + }, + { + "epoch": 68.06729758149316, + "grad_norm": 0.6447365880012512, + "learning_rate": 1.5975840336134454e-05, + "loss": 0.4450407028198242, + "step": 32400 + }, + { + "epoch": 68.27760252365931, + "grad_norm": 0.6727699637413025, + "learning_rate": 1.587079831932773e-05, + "loss": 0.43177310943603514, + "step": 32500 + }, + { + "epoch": 68.48790746582544, + "grad_norm": 0.7130571603775024, + "learning_rate": 1.576575630252101e-05, + "loss": 0.4379489517211914, + "step": 32600 + }, + { + "epoch": 68.69821240799159, + "grad_norm": 0.7220073938369751, + "learning_rate": 1.566071428571429e-05, + "loss": 0.4425164794921875, + "step": 32700 + }, + { + "epoch": 68.90851735015772, + "grad_norm": 0.6695141196250916, + "learning_rate": 1.5555672268907564e-05, + "loss": 0.44274383544921875, + "step": 32800 + }, + { + "epoch": 69.11777076761304, + "grad_norm": 0.6740268468856812, + "learning_rate": 1.5450630252100843e-05, + "loss": 0.4357725143432617, + "step": 32900 + }, + { + "epoch": 69.32807570977918, + "grad_norm": 0.6566063165664673, + "learning_rate": 1.5345588235294116e-05, + "loss": 0.4283485412597656, + "step": 33000 + }, + { + "epoch": 69.53838065194532, + "grad_norm": 0.6752663850784302, + "learning_rate": 1.5240546218487395e-05, + "loss": 0.43225677490234377, + "step": 33100 + }, + { + "epoch": 69.74868559411146, + "grad_norm": 0.7038667798042297, + "learning_rate": 1.5135504201680673e-05, + "loss": 0.43592594146728514, + "step": 33200 + }, + { + "epoch": 69.9589905362776, + "grad_norm": 0.6961196660995483, + "learning_rate": 1.503046218487395e-05, + "loss": 0.438877067565918, + "step": 33300 + }, + { + "epoch": 70.16824395373291, + "grad_norm": 0.6535352468490601, + "learning_rate": 1.4925420168067228e-05, + "loss": 0.4252385330200195, + "step": 33400 + }, + { + "epoch": 70.37854889589906, + "grad_norm": 0.6601018905639648, + "learning_rate": 1.4820378151260505e-05, + "loss": 0.42285392761230467, + "step": 33500 + }, + { + "epoch": 70.58885383806519, + "grad_norm": 0.6948896050453186, + "learning_rate": 1.4715336134453783e-05, + "loss": 0.427175407409668, + "step": 33600 + }, + { + "epoch": 70.79915878023134, + "grad_norm": 0.6372560858726501, + "learning_rate": 1.461029411764706e-05, + "loss": 0.42832706451416014, + "step": 33700 + }, + { + "epoch": 71.00841219768665, + "grad_norm": 0.6517939567565918, + "learning_rate": 1.4505252100840336e-05, + "loss": 0.4324043273925781, + "step": 33800 + }, + { + "epoch": 71.21871713985279, + "grad_norm": 0.6330206990242004, + "learning_rate": 1.4400210084033614e-05, + "loss": 0.4146746826171875, + "step": 33900 + }, + { + "epoch": 71.42902208201893, + "grad_norm": 0.6658615469932556, + "learning_rate": 1.4295168067226892e-05, + "loss": 0.4180047225952148, + "step": 34000 + }, + { + "epoch": 71.63932702418506, + "grad_norm": 0.6433075070381165, + "learning_rate": 1.4190126050420169e-05, + "loss": 0.4219693374633789, + "step": 34100 + }, + { + "epoch": 71.84963196635121, + "grad_norm": 0.6470766663551331, + "learning_rate": 1.4085084033613447e-05, + "loss": 0.4214926528930664, + "step": 34200 + }, + { + "epoch": 72.05888538380653, + "grad_norm": 0.6315721273422241, + "learning_rate": 1.3981092436974791e-05, + "loss": 0.4204498291015625, + "step": 34300 + }, + { + "epoch": 72.26919032597266, + "grad_norm": 0.6722202897071838, + "learning_rate": 1.3876050420168068e-05, + "loss": 0.4105443572998047, + "step": 34400 + }, + { + "epoch": 72.4794952681388, + "grad_norm": 0.654528021812439, + "learning_rate": 1.3771008403361346e-05, + "loss": 0.41524337768554687, + "step": 34500 + }, + { + "epoch": 72.68980021030494, + "grad_norm": 0.6449755430221558, + "learning_rate": 1.3665966386554622e-05, + "loss": 0.4175481414794922, + "step": 34600 + }, + { + "epoch": 72.90010515247108, + "grad_norm": 0.6468359231948853, + "learning_rate": 1.35609243697479e-05, + "loss": 0.41863433837890623, + "step": 34700 + }, + { + "epoch": 73.1093585699264, + "grad_norm": 0.6471462845802307, + "learning_rate": 1.3455882352941177e-05, + "loss": 0.411123161315918, + "step": 34800 + }, + { + "epoch": 73.31966351209253, + "grad_norm": 0.6382157802581787, + "learning_rate": 1.3350840336134455e-05, + "loss": 0.40554931640625, + "step": 34900 + }, + { + "epoch": 73.52996845425868, + "grad_norm": 0.6727550029754639, + "learning_rate": 1.3245798319327732e-05, + "loss": 0.40884464263916015, + "step": 35000 + }, + { + "epoch": 73.74027339642481, + "grad_norm": 0.6494147181510925, + "learning_rate": 1.314075630252101e-05, + "loss": 0.4114807891845703, + "step": 35100 + }, + { + "epoch": 73.95057833859096, + "grad_norm": 0.6971067786216736, + "learning_rate": 1.3035714285714287e-05, + "loss": 0.4129951477050781, + "step": 35200 + }, + { + "epoch": 74.15983175604627, + "grad_norm": 0.630617082118988, + "learning_rate": 1.2930672268907565e-05, + "loss": 0.40283798217773437, + "step": 35300 + }, + { + "epoch": 74.3701366982124, + "grad_norm": 0.6068241000175476, + "learning_rate": 1.2825630252100839e-05, + "loss": 0.4017567825317383, + "step": 35400 + }, + { + "epoch": 74.58044164037855, + "grad_norm": 0.6767259836196899, + "learning_rate": 1.2720588235294118e-05, + "loss": 0.40448307037353515, + "step": 35500 + }, + { + "epoch": 74.79074658254468, + "grad_norm": 0.7011847496032715, + "learning_rate": 1.2615546218487396e-05, + "loss": 0.4047744369506836, + "step": 35600 + }, + { + "epoch": 75.0, + "grad_norm": 0.9920335412025452, + "learning_rate": 1.2510504201680673e-05, + "loss": 0.4085837936401367, + "step": 35700 + }, + { + "epoch": 75.21030494216615, + "grad_norm": 0.6520708203315735, + "learning_rate": 1.2405462184873951e-05, + "loss": 0.39399688720703124, + "step": 35800 + }, + { + "epoch": 75.42060988433228, + "grad_norm": 0.6656842827796936, + "learning_rate": 1.2300420168067227e-05, + "loss": 0.3963521957397461, + "step": 35900 + }, + { + "epoch": 75.63091482649843, + "grad_norm": 0.6576446294784546, + "learning_rate": 1.2195378151260504e-05, + "loss": 0.3992136383056641, + "step": 36000 + }, + { + "epoch": 75.84121976866456, + "grad_norm": 0.6238224506378174, + "learning_rate": 1.2090336134453782e-05, + "loss": 0.40125537872314454, + "step": 36100 + }, + { + "epoch": 76.05047318611987, + "grad_norm": 0.6389949917793274, + "learning_rate": 1.198529411764706e-05, + "loss": 0.3995349884033203, + "step": 36200 + }, + { + "epoch": 76.26077812828602, + "grad_norm": 0.6240091919898987, + "learning_rate": 1.1880252100840335e-05, + "loss": 0.3890629577636719, + "step": 36300 + }, + { + "epoch": 76.47108307045215, + "grad_norm": 0.6367642879486084, + "learning_rate": 1.1775210084033615e-05, + "loss": 0.39277313232421873, + "step": 36400 + }, + { + "epoch": 76.6813880126183, + "grad_norm": 0.6215347647666931, + "learning_rate": 1.1670168067226892e-05, + "loss": 0.3941745376586914, + "step": 36500 + }, + { + "epoch": 76.89169295478443, + "grad_norm": 0.6176421642303467, + "learning_rate": 1.156512605042017e-05, + "loss": 0.3961213302612305, + "step": 36600 + }, + { + "epoch": 77.10094637223975, + "grad_norm": 0.6433852314949036, + "learning_rate": 1.1460084033613446e-05, + "loss": 0.39362903594970705, + "step": 36700 + }, + { + "epoch": 77.3112513144059, + "grad_norm": 0.6288033127784729, + "learning_rate": 1.1355042016806723e-05, + "loss": 0.3870785140991211, + "step": 36800 + }, + { + "epoch": 77.52155625657203, + "grad_norm": 0.6061193943023682, + "learning_rate": 1.125e-05, + "loss": 0.38955581665039063, + "step": 36900 + }, + { + "epoch": 77.73186119873817, + "grad_norm": 0.6680556535720825, + "learning_rate": 1.1144957983193278e-05, + "loss": 0.390676383972168, + "step": 37000 + }, + { + "epoch": 77.9421661409043, + "grad_norm": 0.623725950717926, + "learning_rate": 1.1039915966386554e-05, + "loss": 0.3921066665649414, + "step": 37100 + }, + { + "epoch": 78.15141955835962, + "grad_norm": 0.6346238255500793, + "learning_rate": 1.0935924369747898e-05, + "loss": 0.3845651626586914, + "step": 37200 + }, + { + "epoch": 78.36172450052577, + "grad_norm": 0.6062731146812439, + "learning_rate": 1.0830882352941178e-05, + "loss": 0.380772705078125, + "step": 37300 + }, + { + "epoch": 78.5720294426919, + "grad_norm": 0.6125079989433289, + "learning_rate": 1.0725840336134455e-05, + "loss": 0.3834884262084961, + "step": 37400 + }, + { + "epoch": 78.78233438485805, + "grad_norm": 0.6804420948028564, + "learning_rate": 1.0620798319327733e-05, + "loss": 0.3863555526733398, + "step": 37500 + }, + { + "epoch": 78.99263932702418, + "grad_norm": 0.6568316221237183, + "learning_rate": 1.0515756302521009e-05, + "loss": 0.3898443603515625, + "step": 37600 + }, + { + "epoch": 79.2018927444795, + "grad_norm": 0.6262179017066956, + "learning_rate": 1.0410714285714286e-05, + "loss": 0.37717395782470703, + "step": 37700 + }, + { + "epoch": 79.41219768664564, + "grad_norm": 0.6335896849632263, + "learning_rate": 1.0305672268907564e-05, + "loss": 0.37976459503173826, + "step": 37800 + }, + { + "epoch": 79.62250262881177, + "grad_norm": 0.675938069820404, + "learning_rate": 1.0200630252100841e-05, + "loss": 0.38054397583007815, + "step": 37900 + }, + { + "epoch": 79.83280757097792, + "grad_norm": 0.650644838809967, + "learning_rate": 1.0095588235294117e-05, + "loss": 0.3817191696166992, + "step": 38000 + }, + { + "epoch": 80.04206098843324, + "grad_norm": 0.5988778471946716, + "learning_rate": 9.990546218487395e-06, + "loss": 0.3799977493286133, + "step": 38100 + }, + { + "epoch": 80.25236593059937, + "grad_norm": 0.6436987519264221, + "learning_rate": 9.885504201680674e-06, + "loss": 0.37264183044433596, + "step": 38200 + }, + { + "epoch": 80.46267087276551, + "grad_norm": 0.610487699508667, + "learning_rate": 9.78046218487395e-06, + "loss": 0.3753046417236328, + "step": 38300 + }, + { + "epoch": 80.67297581493165, + "grad_norm": 0.6378571391105652, + "learning_rate": 9.675420168067227e-06, + "loss": 0.3749809646606445, + "step": 38400 + }, + { + "epoch": 80.8832807570978, + "grad_norm": 0.6599664688110352, + "learning_rate": 9.570378151260505e-06, + "loss": 0.37958168029785155, + "step": 38500 + }, + { + "epoch": 81.09253417455311, + "grad_norm": 0.6057779788970947, + "learning_rate": 9.465336134453782e-06, + "loss": 0.3755946731567383, + "step": 38600 + }, + { + "epoch": 81.30283911671924, + "grad_norm": 0.6186268925666809, + "learning_rate": 9.360294117647058e-06, + "loss": 0.3689208221435547, + "step": 38700 + }, + { + "epoch": 81.51314405888539, + "grad_norm": 0.6031709909439087, + "learning_rate": 9.255252100840336e-06, + "loss": 0.37045917510986326, + "step": 38800 + }, + { + "epoch": 81.72344900105152, + "grad_norm": 0.6903654336929321, + "learning_rate": 9.150210084033613e-06, + "loss": 0.37341190338134767, + "step": 38900 + }, + { + "epoch": 81.93375394321767, + "grad_norm": 0.6498835682868958, + "learning_rate": 9.045168067226891e-06, + "loss": 0.3741530227661133, + "step": 39000 + }, + { + "epoch": 82.14300736067298, + "grad_norm": 0.6078621745109558, + "learning_rate": 8.940126050420169e-06, + "loss": 0.36713558197021484, + "step": 39100 + }, + { + "epoch": 82.35331230283911, + "grad_norm": 0.6294094324111938, + "learning_rate": 8.835084033613446e-06, + "loss": 0.3661073303222656, + "step": 39200 + }, + { + "epoch": 82.56361724500526, + "grad_norm": 0.6120302081108093, + "learning_rate": 8.730042016806724e-06, + "loss": 0.3683062744140625, + "step": 39300 + }, + { + "epoch": 82.7739221871714, + "grad_norm": 0.6194695830345154, + "learning_rate": 8.625e-06, + "loss": 0.3718934631347656, + "step": 39400 + }, + { + "epoch": 82.98422712933754, + "grad_norm": 0.6603109240531921, + "learning_rate": 8.519957983193277e-06, + "loss": 0.37141822814941405, + "step": 39500 + }, + { + "epoch": 83.19348054679286, + "grad_norm": 0.6176982522010803, + "learning_rate": 8.414915966386555e-06, + "loss": 0.36253021240234373, + "step": 39600 + }, + { + "epoch": 83.40378548895899, + "grad_norm": 0.6788721084594727, + "learning_rate": 8.309873949579832e-06, + "loss": 0.36460174560546876, + "step": 39700 + }, + { + "epoch": 83.61409043112513, + "grad_norm": 0.6141113638877869, + "learning_rate": 8.20483193277311e-06, + "loss": 0.36554264068603515, + "step": 39800 + }, + { + "epoch": 83.82439537329127, + "grad_norm": 0.6193323135375977, + "learning_rate": 8.099789915966387e-06, + "loss": 0.36707286834716796, + "step": 39900 + }, + { + "epoch": 84.03364879074658, + "grad_norm": 0.6383187770843506, + "learning_rate": 7.994747899159665e-06, + "loss": 0.3661843872070312, + "step": 40000 + }, + { + "epoch": 84.24395373291273, + "grad_norm": 0.5923520922660828, + "learning_rate": 7.889705882352943e-06, + "loss": 0.35978816986083983, + "step": 40100 + }, + { + "epoch": 84.45425867507886, + "grad_norm": 0.641968846321106, + "learning_rate": 7.784663865546218e-06, + "loss": 0.35977176666259764, + "step": 40200 + }, + { + "epoch": 84.66456361724501, + "grad_norm": 0.6307324767112732, + "learning_rate": 7.679621848739496e-06, + "loss": 0.36135292053222656, + "step": 40300 + }, + { + "epoch": 84.87486855941114, + "grad_norm": 0.6303888559341431, + "learning_rate": 7.5745798319327735e-06, + "loss": 0.36290821075439456, + "step": 40400 + }, + { + "epoch": 85.08412197686646, + "grad_norm": 0.5610889792442322, + "learning_rate": 7.469537815126051e-06, + "loss": 0.36016101837158204, + "step": 40500 + }, + { + "epoch": 85.2944269190326, + "grad_norm": 0.5796296000480652, + "learning_rate": 7.364495798319328e-06, + "loss": 0.35660606384277344, + "step": 40600 + }, + { + "epoch": 85.50473186119874, + "grad_norm": 0.6147542595863342, + "learning_rate": 7.259453781512605e-06, + "loss": 0.35944347381591796, + "step": 40700 + }, + { + "epoch": 85.71503680336488, + "grad_norm": 0.6097769737243652, + "learning_rate": 7.154411764705883e-06, + "loss": 0.3589036560058594, + "step": 40800 + }, + { + "epoch": 85.92534174553101, + "grad_norm": 0.6288202404975891, + "learning_rate": 7.04936974789916e-06, + "loss": 0.3591917419433594, + "step": 40900 + }, + { + "epoch": 86.13459516298633, + "grad_norm": 0.6195931434631348, + "learning_rate": 6.944327731092437e-06, + "loss": 0.3569915771484375, + "step": 41000 + }, + { + "epoch": 86.34490010515248, + "grad_norm": 0.5890372395515442, + "learning_rate": 6.839285714285715e-06, + "loss": 0.3543994903564453, + "step": 41100 + }, + { + "epoch": 86.55520504731861, + "grad_norm": 0.6272594332695007, + "learning_rate": 6.735294117647059e-06, + "loss": 0.3553640365600586, + "step": 41200 + }, + { + "epoch": 86.76550998948476, + "grad_norm": 0.6778700351715088, + "learning_rate": 6.6302521008403365e-06, + "loss": 0.3564106750488281, + "step": 41300 + }, + { + "epoch": 86.97581493165089, + "grad_norm": 0.6336688995361328, + "learning_rate": 6.525210084033614e-06, + "loss": 0.35713409423828124, + "step": 41400 + }, + { + "epoch": 87.1850683491062, + "grad_norm": 0.6053069829940796, + "learning_rate": 6.421218487394959e-06, + "loss": 0.3506643295288086, + "step": 41500 + }, + { + "epoch": 87.39537329127235, + "grad_norm": 0.6175255179405212, + "learning_rate": 6.316176470588235e-06, + "loss": 0.35214996337890625, + "step": 41600 + }, + { + "epoch": 87.60567823343848, + "grad_norm": 0.5915444493293762, + "learning_rate": 6.2111344537815125e-06, + "loss": 0.3522480392456055, + "step": 41700 + }, + { + "epoch": 87.81598317560463, + "grad_norm": 0.5907636880874634, + "learning_rate": 6.10609243697479e-06, + "loss": 0.3520878601074219, + "step": 41800 + }, + { + "epoch": 88.02523659305994, + "grad_norm": 0.6209415197372437, + "learning_rate": 6.001050420168068e-06, + "loss": 0.3545633316040039, + "step": 41900 + }, + { + "epoch": 88.23554153522608, + "grad_norm": 0.5926827788352966, + "learning_rate": 5.896008403361345e-06, + "loss": 0.34920032501220705, + "step": 42000 + }, + { + "epoch": 88.44584647739222, + "grad_norm": 0.638471245765686, + "learning_rate": 5.790966386554622e-06, + "loss": 0.34805423736572266, + "step": 42100 + }, + { + "epoch": 88.65615141955836, + "grad_norm": 0.6181325316429138, + "learning_rate": 5.6859243697478994e-06, + "loss": 0.3501460647583008, + "step": 42200 + }, + { + "epoch": 88.8664563617245, + "grad_norm": 0.6029173135757446, + "learning_rate": 5.580882352941177e-06, + "loss": 0.35028797149658203, + "step": 42300 + }, + { + "epoch": 89.07570977917982, + "grad_norm": 0.5673274397850037, + "learning_rate": 5.475840336134454e-06, + "loss": 0.34918766021728515, + "step": 42400 + }, + { + "epoch": 89.28601472134595, + "grad_norm": 0.5657567977905273, + "learning_rate": 5.370798319327731e-06, + "loss": 0.34565746307373046, + "step": 42500 + }, + { + "epoch": 89.4963196635121, + "grad_norm": 0.6014168858528137, + "learning_rate": 5.265756302521008e-06, + "loss": 0.3450989532470703, + "step": 42600 + }, + { + "epoch": 89.70662460567823, + "grad_norm": 0.5631797909736633, + "learning_rate": 5.160714285714286e-06, + "loss": 0.3477408218383789, + "step": 42700 + }, + { + "epoch": 89.91692954784438, + "grad_norm": 0.624321699142456, + "learning_rate": 5.055672268907563e-06, + "loss": 0.34852649688720705, + "step": 42800 + }, + { + "epoch": 90.12618296529969, + "grad_norm": 0.6004353761672974, + "learning_rate": 4.950630252100841e-06, + "loss": 0.3450387191772461, + "step": 42900 + }, + { + "epoch": 90.33648790746582, + "grad_norm": 0.6030150651931763, + "learning_rate": 4.845588235294117e-06, + "loss": 0.34261096954345704, + "step": 43000 + }, + { + "epoch": 90.54679284963197, + "grad_norm": 0.5574061870574951, + "learning_rate": 4.740546218487396e-06, + "loss": 0.3450190734863281, + "step": 43100 + }, + { + "epoch": 90.7570977917981, + "grad_norm": 0.5677763819694519, + "learning_rate": 4.6355042016806725e-06, + "loss": 0.3442384338378906, + "step": 43200 + }, + { + "epoch": 90.96740273396425, + "grad_norm": 0.6088888645172119, + "learning_rate": 4.53046218487395e-06, + "loss": 0.3451253128051758, + "step": 43300 + }, + { + "epoch": 91.17665615141956, + "grad_norm": 0.5724344849586487, + "learning_rate": 4.425420168067227e-06, + "loss": 0.3408164978027344, + "step": 43400 + }, + { + "epoch": 91.3869610935857, + "grad_norm": 0.6201240420341492, + "learning_rate": 4.320378151260504e-06, + "loss": 0.3420841979980469, + "step": 43500 + }, + { + "epoch": 91.59726603575184, + "grad_norm": 0.6098768711090088, + "learning_rate": 4.215336134453782e-06, + "loss": 0.3413374328613281, + "step": 43600 + }, + { + "epoch": 91.80757097791798, + "grad_norm": 0.6306800842285156, + "learning_rate": 4.110294117647059e-06, + "loss": 0.34394527435302735, + "step": 43700 + }, + { + "epoch": 92.01682439537329, + "grad_norm": 0.559008777141571, + "learning_rate": 4.005252100840336e-06, + "loss": 0.3423053741455078, + "step": 43800 + }, + { + "epoch": 92.22712933753944, + "grad_norm": 0.5939933657646179, + "learning_rate": 3.900210084033614e-06, + "loss": 0.33797637939453123, + "step": 43900 + }, + { + "epoch": 92.43743427970557, + "grad_norm": 0.6135221719741821, + "learning_rate": 3.795168067226891e-06, + "loss": 0.3408375930786133, + "step": 44000 + }, + { + "epoch": 92.64773922187172, + "grad_norm": 0.5870836973190308, + "learning_rate": 3.690126050420168e-06, + "loss": 0.34073463439941404, + "step": 44100 + }, + { + "epoch": 92.85804416403785, + "grad_norm": 0.5811474323272705, + "learning_rate": 3.5850840336134456e-06, + "loss": 0.34040855407714843, + "step": 44200 + }, + { + "epoch": 93.06729758149316, + "grad_norm": 0.5979830026626587, + "learning_rate": 3.4800420168067227e-06, + "loss": 0.3395253753662109, + "step": 44300 + }, + { + "epoch": 93.27760252365931, + "grad_norm": 0.5824161171913147, + "learning_rate": 3.3750000000000003e-06, + "loss": 0.3389311981201172, + "step": 44400 + }, + { + "epoch": 93.48790746582544, + "grad_norm": 0.5694940090179443, + "learning_rate": 3.2699579831932774e-06, + "loss": 0.337044792175293, + "step": 44500 + }, + { + "epoch": 93.69821240799159, + "grad_norm": 0.6112421154975891, + "learning_rate": 3.164915966386555e-06, + "loss": 0.33819969177246095, + "step": 44600 + }, + { + "epoch": 93.90851735015772, + "grad_norm": 0.610955536365509, + "learning_rate": 3.059873949579832e-06, + "loss": 0.33944580078125, + "step": 44700 + }, + { + "epoch": 94.11777076761304, + "grad_norm": 0.6398776769638062, + "learning_rate": 2.9548319327731093e-06, + "loss": 0.33618770599365233, + "step": 44800 + }, + { + "epoch": 94.32807570977918, + "grad_norm": 0.5934144854545593, + "learning_rate": 2.849789915966387e-06, + "loss": 0.3384376525878906, + "step": 44900 + }, + { + "epoch": 94.53838065194532, + "grad_norm": 0.6144473552703857, + "learning_rate": 2.744747899159664e-06, + "loss": 0.3383865737915039, + "step": 45000 + }, + { + "epoch": 94.74868559411146, + "grad_norm": 0.5490454435348511, + "learning_rate": 2.6397058823529415e-06, + "loss": 0.33671878814697265, + "step": 45100 + }, + { + "epoch": 94.9589905362776, + "grad_norm": 0.5695416331291199, + "learning_rate": 2.5346638655462187e-06, + "loss": 0.3379853820800781, + "step": 45200 + }, + { + "epoch": 95.16824395373291, + "grad_norm": 0.5724055767059326, + "learning_rate": 2.429621848739496e-06, + "loss": 0.3338408660888672, + "step": 45300 + }, + { + "epoch": 95.37854889589906, + "grad_norm": 0.594022810459137, + "learning_rate": 2.3245798319327734e-06, + "loss": 0.3349121475219727, + "step": 45400 + }, + { + "epoch": 95.58885383806519, + "grad_norm": 0.5594576597213745, + "learning_rate": 2.2205882352941175e-06, + "loss": 0.33595680236816405, + "step": 45500 + }, + { + "epoch": 95.79915878023134, + "grad_norm": 0.5346081852912903, + "learning_rate": 2.115546218487395e-06, + "loss": 0.33520328521728515, + "step": 45600 + }, + { + "epoch": 96.00841219768665, + "grad_norm": 0.5849393606185913, + "learning_rate": 2.0105042016806722e-06, + "loss": 0.3334170913696289, + "step": 45700 + }, + { + "epoch": 96.21871713985279, + "grad_norm": 0.5918118357658386, + "learning_rate": 1.9054621848739498e-06, + "loss": 0.3329995346069336, + "step": 45800 + }, + { + "epoch": 96.42902208201893, + "grad_norm": 0.6012352705001831, + "learning_rate": 1.800420168067227e-06, + "loss": 0.3329520416259766, + "step": 45900 + }, + { + "epoch": 96.63932702418506, + "grad_norm": 0.5281354784965515, + "learning_rate": 1.6953781512605043e-06, + "loss": 0.3343208694458008, + "step": 46000 + }, + { + "epoch": 96.84963196635121, + "grad_norm": 0.5566437244415283, + "learning_rate": 1.5903361344537816e-06, + "loss": 0.33319324493408203, + "step": 46100 + }, + { + "epoch": 97.05888538380653, + "grad_norm": 0.62099689245224, + "learning_rate": 1.486344537815126e-06, + "loss": 0.33431713104248045, + "step": 46200 + }, + { + "epoch": 97.26919032597266, + "grad_norm": 0.5787718892097473, + "learning_rate": 1.3813025210084034e-06, + "loss": 0.3314530944824219, + "step": 46300 + }, + { + "epoch": 97.4794952681388, + "grad_norm": 0.5509923100471497, + "learning_rate": 1.2762605042016807e-06, + "loss": 0.3316763305664063, + "step": 46400 + }, + { + "epoch": 97.68980021030494, + "grad_norm": 0.5569334030151367, + "learning_rate": 1.171218487394958e-06, + "loss": 0.3315643310546875, + "step": 46500 + }, + { + "epoch": 97.90010515247108, + "grad_norm": 0.5476507544517517, + "learning_rate": 1.0661764705882354e-06, + "loss": 0.33233203887939455, + "step": 46600 + }, + { + "epoch": 98.1093585699264, + "grad_norm": 0.5630120038986206, + "learning_rate": 9.611344537815128e-07, + "loss": 0.33105762481689455, + "step": 46700 + }, + { + "epoch": 98.31966351209253, + "grad_norm": 0.5520943999290466, + "learning_rate": 8.5609243697479e-07, + "loss": 0.3307930374145508, + "step": 46800 + }, + { + "epoch": 98.52996845425868, + "grad_norm": 0.5917891263961792, + "learning_rate": 7.510504201680673e-07, + "loss": 0.3318499755859375, + "step": 46900 + }, + { + "epoch": 98.74027339642481, + "grad_norm": 0.5395123362541199, + "learning_rate": 6.460084033613445e-07, + "loss": 0.330290412902832, + "step": 47000 + }, + { + "epoch": 98.95057833859096, + "grad_norm": 0.5702670216560364, + "learning_rate": 5.409663865546218e-07, + "loss": 0.33196086883544923, + "step": 47100 + }, + { + "epoch": 99.15983175604627, + "grad_norm": 0.5607645511627197, + "learning_rate": 4.359243697478992e-07, + "loss": 0.3293312454223633, + "step": 47200 + }, + { + "epoch": 99.3701366982124, + "grad_norm": 0.6061931848526001, + "learning_rate": 3.308823529411765e-07, + "loss": 0.3300600051879883, + "step": 47300 + }, + { + "epoch": 99.58044164037855, + "grad_norm": 0.5829928517341614, + "learning_rate": 2.2584033613445382e-07, + "loss": 0.330217170715332, + "step": 47400 + }, + { + "epoch": 99.79074658254468, + "grad_norm": 0.5840853452682495, + "learning_rate": 1.2079831932773112e-07, + "loss": 0.33082305908203125, + "step": 47500 + } + ], + "logging_steps": 100, + "max_steps": 47600, + "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": 3.0607199784198144e+16, + "train_batch_size": 8, + "trial_name": null, + "trial_params": null +} diff --git a/timecost/n11/realtabformer/rtf-n11-20260501_010320/rtf_checkpoints/checkpoint-47500/training_args.bin b/timecost/n11/realtabformer/rtf-n11-20260501_010320/rtf_checkpoints/checkpoint-47500/training_args.bin new file mode 100644 index 0000000000000000000000000000000000000000..34d68dc0e0fe1c1f12a2e581dd1b166aa7178a9e --- /dev/null +++ b/timecost/n11/realtabformer/rtf-n11-20260501_010320/rtf_checkpoints/checkpoint-47500/training_args.bin @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:9e2cd88337d1d846c6918d2b3b63fa3e5c93f12fefc082497590da854a564607 +size 5201 diff --git a/timecost/n11/realtabformer/rtf-n11-20260501_010320/rtf_checkpoints/checkpoint-47600/config.json b/timecost/n11/realtabformer/rtf-n11-20260501_010320/rtf_checkpoints/checkpoint-47600/config.json new file mode 100644 index 0000000000000000000000000000000000000000..605aa5aa48fc96b6c3133032a3e66cd18090e70a --- /dev/null +++ b/timecost/n11/realtabformer/rtf-n11-20260501_010320/rtf_checkpoints/checkpoint-47600/config.json @@ -0,0 +1,34 @@ +{ + "activation_function": "gelu_new", + "add_cross_attention": false, + "architectures": [ + "GPT2LMHeadModel" + ], + "attn_pdrop": 0.1, + "bos_token_id": 5, + "dtype": "float32", + "embd_pdrop": 0.1, + "eos_token_id": 6, + "initializer_range": 0.02, + "layer_norm_epsilon": 1e-05, + "model_type": "gpt2", + "n_embd": 768, + "n_head": 12, + "n_inner": null, + "n_layer": 6, + "n_positions": 1024, + "pad_token_id": null, + "reorder_and_upcast_attn": false, + "resid_pdrop": 0.1, + "scale_attn_by_inverse_layer_idx": false, + "scale_attn_weights": true, + "summary_activation": null, + "summary_first_dropout": 0.1, + "summary_proj_to_labels": true, + "summary_type": "cls_index", + "summary_use_proj": true, + "tie_word_embeddings": true, + "transformers_version": "5.5.3", + "use_cache": false, + "vocab_size": 597 +} diff --git a/timecost/n11/realtabformer/rtf-n11-20260501_010320/rtf_checkpoints/checkpoint-47600/generation_config.json b/timecost/n11/realtabformer/rtf-n11-20260501_010320/rtf_checkpoints/checkpoint-47600/generation_config.json new file mode 100644 index 0000000000000000000000000000000000000000..ffe89567780e75b5c22eade9be971483b9618f39 --- /dev/null +++ b/timecost/n11/realtabformer/rtf-n11-20260501_010320/rtf_checkpoints/checkpoint-47600/generation_config.json @@ -0,0 +1,9 @@ +{ + "_from_model_config": true, + "bos_token_id": 5, + "eos_token_id": 6, + "output_attentions": false, + "output_hidden_states": false, + "transformers_version": "5.5.3", + "use_cache": true +} diff --git a/timecost/n11/realtabformer/rtf-n11-20260501_010320/rtf_checkpoints/checkpoint-47600/model.safetensors b/timecost/n11/realtabformer/rtf-n11-20260501_010320/rtf_checkpoints/checkpoint-47600/model.safetensors new file mode 100644 index 0000000000000000000000000000000000000000..e23ff3d88e24d3df4827f4591e9431158c7ded17 --- /dev/null +++ b/timecost/n11/realtabformer/rtf-n11-20260501_010320/rtf_checkpoints/checkpoint-47600/model.safetensors @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:7762d8878b3a1ed4f9c4042cc5ff712597a4a411c843645be85d335c24d536e3 +size 175102408 diff --git a/timecost/n11/realtabformer/rtf-n11-20260501_010320/rtf_checkpoints/checkpoint-47600/optimizer.pt b/timecost/n11/realtabformer/rtf-n11-20260501_010320/rtf_checkpoints/checkpoint-47600/optimizer.pt new file mode 100644 index 0000000000000000000000000000000000000000..32fbe0b1ca37fc27d989673382bc4bc3ec9d4fa6 --- /dev/null +++ b/timecost/n11/realtabformer/rtf-n11-20260501_010320/rtf_checkpoints/checkpoint-47600/optimizer.pt @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:8d0c69608a12f8364d32c8a3b8dea4cd14f7e6d7f5c6efd959e9d70518990937 +size 350253899 diff --git a/timecost/n11/realtabformer/rtf-n11-20260501_010320/rtf_checkpoints/checkpoint-47600/rng_state.pth b/timecost/n11/realtabformer/rtf-n11-20260501_010320/rtf_checkpoints/checkpoint-47600/rng_state.pth new file mode 100644 index 0000000000000000000000000000000000000000..733a3500e7e6a7ff6b6983f3e7bbe619524e72dd --- /dev/null +++ b/timecost/n11/realtabformer/rtf-n11-20260501_010320/rtf_checkpoints/checkpoint-47600/rng_state.pth @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:6f8a4af40a8aeaacaa7b995915be2516daf145a4542efcd79ab7e0afc937d303 +size 14645 diff --git a/timecost/n11/realtabformer/rtf-n11-20260501_010320/rtf_checkpoints/checkpoint-47600/scaler.pt b/timecost/n11/realtabformer/rtf-n11-20260501_010320/rtf_checkpoints/checkpoint-47600/scaler.pt new file mode 100644 index 0000000000000000000000000000000000000000..4b52d207000e8bd6f5576e8e9e7a1d0e187a821c --- /dev/null +++ b/timecost/n11/realtabformer/rtf-n11-20260501_010320/rtf_checkpoints/checkpoint-47600/scaler.pt @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:cec17f8827b333498675d81a32d73ee7a195c880a9f4bebf775b5872f8d59193 +size 1383 diff --git a/timecost/n11/realtabformer/rtf-n11-20260501_010320/rtf_checkpoints/checkpoint-47600/scheduler.pt b/timecost/n11/realtabformer/rtf-n11-20260501_010320/rtf_checkpoints/checkpoint-47600/scheduler.pt new file mode 100644 index 0000000000000000000000000000000000000000..b6983b5c54efab09eaa0fbda2be5f235d71c8ada --- /dev/null +++ b/timecost/n11/realtabformer/rtf-n11-20260501_010320/rtf_checkpoints/checkpoint-47600/scheduler.pt @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:06343a3d318d4ae32c05f73e6212e78fc7f5edd2171a68bfa1fc3889a71c3fc5 +size 1465 diff --git a/timecost/n11/realtabformer/rtf-n11-20260501_010320/rtf_checkpoints/checkpoint-47600/trainer_state.json b/timecost/n11/realtabformer/rtf-n11-20260501_010320/rtf_checkpoints/checkpoint-47600/trainer_state.json new file mode 100644 index 0000000000000000000000000000000000000000..39f3dc81a00db1e0049624b9b1493027bbad723d --- /dev/null +++ b/timecost/n11/realtabformer/rtf-n11-20260501_010320/rtf_checkpoints/checkpoint-47600/trainer_state.json @@ -0,0 +1,3366 @@ +{ + "best_global_step": null, + "best_metric": null, + "best_model_checkpoint": null, + "epoch": 100.0, + "eval_steps": 100, + "global_step": 47600, + "is_hyper_param_search": false, + "is_local_process_zero": true, + "is_world_process_zero": true, + "log_history": [ + { + "epoch": 0.2103049421661409, + "grad_norm": 0.22972723841667175, + "learning_rate": 4.989600840336135e-05, + "loss": 2.8563604736328125, + "step": 100 + }, + { + "epoch": 0.4206098843322818, + "grad_norm": 0.20056591928005219, + "learning_rate": 4.9790966386554624e-05, + "loss": 1.7068206787109375, + "step": 200 + }, + { + "epoch": 0.6309148264984227, + "grad_norm": 0.1861766129732132, + "learning_rate": 4.9685924369747897e-05, + "loss": 1.6134432983398437, + "step": 300 + }, + { + "epoch": 0.8412197686645636, + "grad_norm": 0.1723501980304718, + "learning_rate": 4.9580882352941176e-05, + "loss": 1.5735923767089843, + "step": 400 + }, + { + "epoch": 1.0504731861198737, + "grad_norm": 0.17238108813762665, + "learning_rate": 4.9475840336134455e-05, + "loss": 1.5529734802246093, + "step": 500 + }, + { + "epoch": 1.2607781282860147, + "grad_norm": 0.17322759330272675, + "learning_rate": 4.9370798319327734e-05, + "loss": 1.536485137939453, + "step": 600 + }, + { + "epoch": 1.4710830704521556, + "grad_norm": 0.1677761971950531, + "learning_rate": 4.926575630252101e-05, + "loss": 1.5277809143066405, + "step": 700 + }, + { + "epoch": 1.6813880126182965, + "grad_norm": 0.1636463701725006, + "learning_rate": 4.9160714285714286e-05, + "loss": 1.5190211486816407, + "step": 800 + }, + { + "epoch": 1.8916929547844374, + "grad_norm": 0.16561312973499298, + "learning_rate": 4.9055672268907565e-05, + "loss": 1.51519287109375, + "step": 900 + }, + { + "epoch": 2.1009463722397475, + "grad_norm": 0.15477420389652252, + "learning_rate": 4.8950630252100845e-05, + "loss": 1.5094300842285155, + "step": 1000 + }, + { + "epoch": 2.3112513144058884, + "grad_norm": 0.16169467568397522, + "learning_rate": 4.8845588235294124e-05, + "loss": 1.503891143798828, + "step": 1100 + }, + { + "epoch": 2.5215562565720293, + "grad_norm": 0.1625037044286728, + "learning_rate": 4.8740546218487396e-05, + "loss": 1.5003668212890624, + "step": 1200 + }, + { + "epoch": 2.7318611987381702, + "grad_norm": 0.15850616991519928, + "learning_rate": 4.8635504201680676e-05, + "loss": 1.5004425048828125, + "step": 1300 + }, + { + "epoch": 2.942166140904311, + "grad_norm": 0.15703575313091278, + "learning_rate": 4.8530462184873955e-05, + "loss": 1.4983340454101564, + "step": 1400 + }, + { + "epoch": 3.1514195583596214, + "grad_norm": 0.16104279458522797, + "learning_rate": 4.8425420168067234e-05, + "loss": 1.4921080017089843, + "step": 1500 + }, + { + "epoch": 3.3617245005257623, + "grad_norm": 0.15719465911388397, + "learning_rate": 4.8320378151260507e-05, + "loss": 1.4903582763671874, + "step": 1600 + }, + { + "epoch": 3.5720294426919033, + "grad_norm": 0.15651755034923553, + "learning_rate": 4.821533613445378e-05, + "loss": 1.4904457092285157, + "step": 1700 + }, + { + "epoch": 3.782334384858044, + "grad_norm": 0.14600972831249237, + "learning_rate": 4.811029411764706e-05, + "loss": 1.4897219848632812, + "step": 1800 + }, + { + "epoch": 3.992639327024185, + "grad_norm": 0.15000982582569122, + "learning_rate": 4.800525210084034e-05, + "loss": 1.4866799926757812, + "step": 1900 + }, + { + "epoch": 4.201892744479495, + "grad_norm": 0.1467936933040619, + "learning_rate": 4.790021008403362e-05, + "loss": 1.48007080078125, + "step": 2000 + }, + { + "epoch": 4.412197686645636, + "grad_norm": 0.1541317105293274, + "learning_rate": 4.779516806722689e-05, + "loss": 1.48170166015625, + "step": 2100 + }, + { + "epoch": 4.622502628811777, + "grad_norm": 0.15136213600635529, + "learning_rate": 4.769012605042017e-05, + "loss": 1.4820193481445312, + "step": 2200 + }, + { + "epoch": 4.832807570977918, + "grad_norm": 0.15268521010875702, + "learning_rate": 4.758508403361345e-05, + "loss": 1.4826155090332032, + "step": 2300 + }, + { + "epoch": 5.042060988433228, + "grad_norm": 0.1507953554391861, + "learning_rate": 4.748004201680673e-05, + "loss": 1.4825518798828126, + "step": 2400 + }, + { + "epoch": 5.252365930599369, + "grad_norm": 0.15759222209453583, + "learning_rate": 4.7375e-05, + "loss": 1.4742916870117186, + "step": 2500 + }, + { + "epoch": 5.46267087276551, + "grad_norm": 0.1464644968509674, + "learning_rate": 4.726995798319328e-05, + "loss": 1.47645751953125, + "step": 2600 + }, + { + "epoch": 5.672975814931651, + "grad_norm": 0.1496453732252121, + "learning_rate": 4.716491596638656e-05, + "loss": 1.4782669067382812, + "step": 2700 + }, + { + "epoch": 5.883280757097792, + "grad_norm": 0.15732301771640778, + "learning_rate": 4.705987394957984e-05, + "loss": 1.474007110595703, + "step": 2800 + }, + { + "epoch": 6.092534174553102, + "grad_norm": 0.1535627543926239, + "learning_rate": 4.6954831932773117e-05, + "loss": 1.4723405456542968, + "step": 2900 + }, + { + "epoch": 6.302839116719243, + "grad_norm": 0.15365540981292725, + "learning_rate": 4.684978991596639e-05, + "loss": 1.470570068359375, + "step": 3000 + }, + { + "epoch": 6.513144058885384, + "grad_norm": 0.15696321427822113, + "learning_rate": 4.674474789915967e-05, + "loss": 1.4713912963867188, + "step": 3100 + }, + { + "epoch": 6.723449001051525, + "grad_norm": 0.1542283147573471, + "learning_rate": 4.663970588235294e-05, + "loss": 1.4717630004882813, + "step": 3200 + }, + { + "epoch": 6.933753943217665, + "grad_norm": 0.14150017499923706, + "learning_rate": 4.653466386554622e-05, + "loss": 1.4702410888671875, + "step": 3300 + }, + { + "epoch": 7.143007360672976, + "grad_norm": 0.1593707650899887, + "learning_rate": 4.64296218487395e-05, + "loss": 1.4674795532226563, + "step": 3400 + }, + { + "epoch": 7.353312302839116, + "grad_norm": 0.14085018634796143, + "learning_rate": 4.632457983193277e-05, + "loss": 1.4630509948730468, + "step": 3500 + }, + { + "epoch": 7.563617245005258, + "grad_norm": 0.15045367181301117, + "learning_rate": 4.621953781512605e-05, + "loss": 1.464947509765625, + "step": 3600 + }, + { + "epoch": 7.773922187171398, + "grad_norm": 0.1627761274576187, + "learning_rate": 4.611449579831933e-05, + "loss": 1.4676199340820313, + "step": 3700 + }, + { + "epoch": 7.9842271293375395, + "grad_norm": 0.15296733379364014, + "learning_rate": 4.600945378151261e-05, + "loss": 1.464564208984375, + "step": 3800 + }, + { + "epoch": 8.19348054679285, + "grad_norm": 0.15292306244373322, + "learning_rate": 4.590441176470588e-05, + "loss": 1.460281982421875, + "step": 3900 + }, + { + "epoch": 8.40378548895899, + "grad_norm": 0.14858974516391754, + "learning_rate": 4.579936974789916e-05, + "loss": 1.4601573181152343, + "step": 4000 + }, + { + "epoch": 8.614090431125131, + "grad_norm": 0.1559685617685318, + "learning_rate": 4.569432773109244e-05, + "loss": 1.459988555908203, + "step": 4100 + }, + { + "epoch": 8.824395373291273, + "grad_norm": 0.16048291325569153, + "learning_rate": 4.558928571428572e-05, + "loss": 1.4614971923828124, + "step": 4200 + }, + { + "epoch": 9.033648790746582, + "grad_norm": 0.15471497178077698, + "learning_rate": 4.548424369747899e-05, + "loss": 1.4605735778808593, + "step": 4300 + }, + { + "epoch": 9.243953732912724, + "grad_norm": 0.14675338566303253, + "learning_rate": 4.537920168067227e-05, + "loss": 1.4529206848144531, + "step": 4400 + }, + { + "epoch": 9.454258675078865, + "grad_norm": 0.15218420326709747, + "learning_rate": 4.527415966386555e-05, + "loss": 1.4555152893066405, + "step": 4500 + }, + { + "epoch": 9.664563617245005, + "grad_norm": 0.15305759012699127, + "learning_rate": 4.516911764705883e-05, + "loss": 1.4550628662109375, + "step": 4600 + }, + { + "epoch": 9.874868559411146, + "grad_norm": 0.14932408928871155, + "learning_rate": 4.50640756302521e-05, + "loss": 1.4576924133300782, + "step": 4700 + }, + { + "epoch": 10.084121976866456, + "grad_norm": 0.15317517518997192, + "learning_rate": 4.4959033613445375e-05, + "loss": 1.45219482421875, + "step": 4800 + }, + { + "epoch": 10.294426919032597, + "grad_norm": 0.14954303205013275, + "learning_rate": 4.4853991596638654e-05, + "loss": 1.4481625366210937, + "step": 4900 + }, + { + "epoch": 10.504731861198739, + "grad_norm": 0.1534873992204666, + "learning_rate": 4.4748949579831934e-05, + "loss": 1.4501405334472657, + "step": 5000 + }, + { + "epoch": 10.715036803364878, + "grad_norm": 0.1542547196149826, + "learning_rate": 4.464390756302521e-05, + "loss": 1.452711181640625, + "step": 5100 + }, + { + "epoch": 10.92534174553102, + "grad_norm": 0.15033429861068726, + "learning_rate": 4.453886554621849e-05, + "loss": 1.4518144226074219, + "step": 5200 + }, + { + "epoch": 11.13459516298633, + "grad_norm": 0.16419348120689392, + "learning_rate": 4.4433823529411765e-05, + "loss": 1.4447087097167968, + "step": 5300 + }, + { + "epoch": 11.34490010515247, + "grad_norm": 0.15558737516403198, + "learning_rate": 4.4328781512605044e-05, + "loss": 1.4432438659667968, + "step": 5400 + }, + { + "epoch": 11.555205047318612, + "grad_norm": 0.16111871600151062, + "learning_rate": 4.422373949579832e-05, + "loss": 1.44447509765625, + "step": 5500 + }, + { + "epoch": 11.765509989484753, + "grad_norm": 0.15655963122844696, + "learning_rate": 4.41186974789916e-05, + "loss": 1.446072998046875, + "step": 5600 + }, + { + "epoch": 11.975814931650893, + "grad_norm": 0.1640811264514923, + "learning_rate": 4.4013655462184875e-05, + "loss": 1.4470193481445313, + "step": 5700 + }, + { + "epoch": 12.185068349106205, + "grad_norm": 0.16302675008773804, + "learning_rate": 4.3908613445378154e-05, + "loss": 1.4352632141113282, + "step": 5800 + }, + { + "epoch": 12.395373291272344, + "grad_norm": 0.16527259349822998, + "learning_rate": 4.380357142857143e-05, + "loss": 1.4378224182128907, + "step": 5900 + }, + { + "epoch": 12.605678233438486, + "grad_norm": 0.15840137004852295, + "learning_rate": 4.369852941176471e-05, + "loss": 1.438340301513672, + "step": 6000 + }, + { + "epoch": 12.815983175604627, + "grad_norm": 0.16105377674102783, + "learning_rate": 4.3593487394957985e-05, + "loss": 1.4395623779296876, + "step": 6100 + }, + { + "epoch": 13.025236593059937, + "grad_norm": 0.1645898073911667, + "learning_rate": 4.348844537815126e-05, + "loss": 1.4419912719726562, + "step": 6200 + }, + { + "epoch": 13.235541535226078, + "grad_norm": 0.16387709975242615, + "learning_rate": 4.338340336134454e-05, + "loss": 1.4292103576660156, + "step": 6300 + }, + { + "epoch": 13.44584647739222, + "grad_norm": 0.16231203079223633, + "learning_rate": 4.3278361344537816e-05, + "loss": 1.4302072143554687, + "step": 6400 + }, + { + "epoch": 13.656151419558359, + "grad_norm": 0.17272767424583435, + "learning_rate": 4.3173319327731095e-05, + "loss": 1.4360617065429688, + "step": 6500 + }, + { + "epoch": 13.8664563617245, + "grad_norm": 0.16650696098804474, + "learning_rate": 4.306827731092437e-05, + "loss": 1.43187744140625, + "step": 6600 + }, + { + "epoch": 14.07570977917981, + "grad_norm": 0.17131085693836212, + "learning_rate": 4.296323529411765e-05, + "loss": 1.428362579345703, + "step": 6700 + }, + { + "epoch": 14.286014721345952, + "grad_norm": 0.1767681986093521, + "learning_rate": 4.2858193277310926e-05, + "loss": 1.4247616577148436, + "step": 6800 + }, + { + "epoch": 14.496319663512093, + "grad_norm": 0.17670001089572906, + "learning_rate": 4.2753151260504206e-05, + "loss": 1.4254454040527345, + "step": 6900 + }, + { + "epoch": 14.706624605678233, + "grad_norm": 0.1740790754556656, + "learning_rate": 4.2648109243697485e-05, + "loss": 1.4258729553222655, + "step": 7000 + }, + { + "epoch": 14.916929547844374, + "grad_norm": 0.1759176403284073, + "learning_rate": 4.254306722689076e-05, + "loss": 1.429442138671875, + "step": 7100 + }, + { + "epoch": 15.126182965299684, + "grad_norm": 0.17811505496501923, + "learning_rate": 4.2438025210084037e-05, + "loss": 1.4193470764160157, + "step": 7200 + }, + { + "epoch": 15.336487907465825, + "grad_norm": 0.1877354234457016, + "learning_rate": 4.2332983193277316e-05, + "loss": 1.4145277404785157, + "step": 7300 + }, + { + "epoch": 15.546792849631967, + "grad_norm": 0.18199266493320465, + "learning_rate": 4.2227941176470595e-05, + "loss": 1.4196495056152343, + "step": 7400 + }, + { + "epoch": 15.757097791798108, + "grad_norm": 0.18197669088840485, + "learning_rate": 4.212289915966387e-05, + "loss": 1.418301544189453, + "step": 7500 + }, + { + "epoch": 15.967402733964247, + "grad_norm": 0.1789412796497345, + "learning_rate": 4.201785714285714e-05, + "loss": 1.4207553100585937, + "step": 7600 + }, + { + "epoch": 16.176656151419557, + "grad_norm": 0.19073587656021118, + "learning_rate": 4.191281512605042e-05, + "loss": 1.405756072998047, + "step": 7700 + }, + { + "epoch": 16.3869610935857, + "grad_norm": 0.20197375118732452, + "learning_rate": 4.18077731092437e-05, + "loss": 1.4052299499511718, + "step": 7800 + }, + { + "epoch": 16.59726603575184, + "grad_norm": 0.19041137397289276, + "learning_rate": 4.170273109243698e-05, + "loss": 1.4102354431152344, + "step": 7900 + }, + { + "epoch": 16.80757097791798, + "grad_norm": 0.18918046355247498, + "learning_rate": 4.159768907563025e-05, + "loss": 1.4105937194824218, + "step": 8000 + }, + { + "epoch": 17.01682439537329, + "grad_norm": 0.20001663267612457, + "learning_rate": 4.149264705882353e-05, + "loss": 1.4125469970703124, + "step": 8100 + }, + { + "epoch": 17.22712933753943, + "grad_norm": 0.20373570919036865, + "learning_rate": 4.138760504201681e-05, + "loss": 1.3912005615234375, + "step": 8200 + }, + { + "epoch": 17.437434279705574, + "grad_norm": 0.21228203177452087, + "learning_rate": 4.128256302521009e-05, + "loss": 1.400099334716797, + "step": 8300 + }, + { + "epoch": 17.647739221871714, + "grad_norm": 0.19748076796531677, + "learning_rate": 4.117752100840336e-05, + "loss": 1.3983584594726564, + "step": 8400 + }, + { + "epoch": 17.858044164037857, + "grad_norm": 0.19849108159542084, + "learning_rate": 4.107247899159664e-05, + "loss": 1.4034251403808593, + "step": 8500 + }, + { + "epoch": 18.067297581493165, + "grad_norm": 0.20575450360774994, + "learning_rate": 4.096743697478992e-05, + "loss": 1.3967425537109375, + "step": 8600 + }, + { + "epoch": 18.277602523659304, + "grad_norm": 0.21221311390399933, + "learning_rate": 4.08623949579832e-05, + "loss": 1.3828977966308593, + "step": 8700 + }, + { + "epoch": 18.487907465825447, + "grad_norm": 0.21134966611862183, + "learning_rate": 4.075735294117648e-05, + "loss": 1.3854733276367188, + "step": 8800 + }, + { + "epoch": 18.698212407991587, + "grad_norm": 0.22016377747058868, + "learning_rate": 4.065231092436975e-05, + "loss": 1.3901968383789063, + "step": 8900 + }, + { + "epoch": 18.90851735015773, + "grad_norm": 0.21417804062366486, + "learning_rate": 4.054726890756303e-05, + "loss": 1.393634033203125, + "step": 9000 + }, + { + "epoch": 19.117770767613038, + "grad_norm": 0.22256560623645782, + "learning_rate": 4.04422268907563e-05, + "loss": 1.3783042907714844, + "step": 9100 + }, + { + "epoch": 19.32807570977918, + "grad_norm": 0.22738981246948242, + "learning_rate": 4.033718487394958e-05, + "loss": 1.370293426513672, + "step": 9200 + }, + { + "epoch": 19.53838065194532, + "grad_norm": 0.22241266071796417, + "learning_rate": 4.023214285714286e-05, + "loss": 1.3737275695800781, + "step": 9300 + }, + { + "epoch": 19.74868559411146, + "grad_norm": 0.23391330242156982, + "learning_rate": 4.012710084033613e-05, + "loss": 1.377355194091797, + "step": 9400 + }, + { + "epoch": 19.958990536277604, + "grad_norm": 0.22519543766975403, + "learning_rate": 4.002205882352941e-05, + "loss": 1.3812960815429687, + "step": 9500 + }, + { + "epoch": 20.16824395373291, + "grad_norm": 0.24074196815490723, + "learning_rate": 3.991701680672269e-05, + "loss": 1.3570118713378907, + "step": 9600 + }, + { + "epoch": 20.378548895899055, + "grad_norm": 0.24606694281101227, + "learning_rate": 3.981197478991597e-05, + "loss": 1.3554267883300781, + "step": 9700 + }, + { + "epoch": 20.588853838065194, + "grad_norm": 0.23913830518722534, + "learning_rate": 3.970693277310924e-05, + "loss": 1.3621504211425781, + "step": 9800 + }, + { + "epoch": 20.799158780231334, + "grad_norm": 0.2383037805557251, + "learning_rate": 3.960189075630252e-05, + "loss": 1.3660731506347656, + "step": 9900 + }, + { + "epoch": 21.008412197686646, + "grad_norm": 0.241073340177536, + "learning_rate": 3.94968487394958e-05, + "loss": 1.3653842163085939, + "step": 10000 + }, + { + "epoch": 21.218717139852785, + "grad_norm": 0.25740981101989746, + "learning_rate": 3.939180672268908e-05, + "loss": 1.3331489562988281, + "step": 10100 + }, + { + "epoch": 21.42902208201893, + "grad_norm": 0.25830078125, + "learning_rate": 3.928676470588235e-05, + "loss": 1.3397677612304688, + "step": 10200 + }, + { + "epoch": 21.639327024185068, + "grad_norm": 0.26326829195022583, + "learning_rate": 3.918172268907563e-05, + "loss": 1.3485836791992187, + "step": 10300 + }, + { + "epoch": 21.84963196635121, + "grad_norm": 0.26259171962738037, + "learning_rate": 3.907668067226891e-05, + "loss": 1.3472573852539063, + "step": 10400 + }, + { + "epoch": 22.05888538380652, + "grad_norm": 0.27395525574684143, + "learning_rate": 3.897163865546219e-05, + "loss": 1.3426994323730468, + "step": 10500 + }, + { + "epoch": 22.26919032597266, + "grad_norm": 0.2820175290107727, + "learning_rate": 3.8866596638655463e-05, + "loss": 1.3179571533203125, + "step": 10600 + }, + { + "epoch": 22.479495268138802, + "grad_norm": 0.2815999984741211, + "learning_rate": 3.8761554621848736e-05, + "loss": 1.3242898559570313, + "step": 10700 + }, + { + "epoch": 22.68980021030494, + "grad_norm": 0.2788920998573303, + "learning_rate": 3.8656512605042015e-05, + "loss": 1.328133087158203, + "step": 10800 + }, + { + "epoch": 22.900105152471085, + "grad_norm": 0.2880179286003113, + "learning_rate": 3.8551470588235294e-05, + "loss": 1.3323233032226562, + "step": 10900 + }, + { + "epoch": 23.109358569926393, + "grad_norm": 0.29323825240135193, + "learning_rate": 3.8446428571428574e-05, + "loss": 1.3124215698242188, + "step": 11000 + }, + { + "epoch": 23.319663512092536, + "grad_norm": 0.3037724196910858, + "learning_rate": 3.834138655462185e-05, + "loss": 1.300673370361328, + "step": 11100 + }, + { + "epoch": 23.529968454258675, + "grad_norm": 0.3019108772277832, + "learning_rate": 3.8236344537815125e-05, + "loss": 1.3033621215820312, + "step": 11200 + }, + { + "epoch": 23.740273396424815, + "grad_norm": 0.3141040503978729, + "learning_rate": 3.8131302521008405e-05, + "loss": 1.3118415832519532, + "step": 11300 + }, + { + "epoch": 23.950578338590958, + "grad_norm": 0.305362731218338, + "learning_rate": 3.8026260504201684e-05, + "loss": 1.3120425415039063, + "step": 11400 + }, + { + "epoch": 24.159831756046266, + "grad_norm": 0.3149303197860718, + "learning_rate": 3.792121848739496e-05, + "loss": 1.281750946044922, + "step": 11500 + }, + { + "epoch": 24.37013669821241, + "grad_norm": 0.31983524560928345, + "learning_rate": 3.7816176470588236e-05, + "loss": 1.2786111450195312, + "step": 11600 + }, + { + "epoch": 24.58044164037855, + "grad_norm": 0.32351240515708923, + "learning_rate": 3.7711134453781515e-05, + "loss": 1.284888916015625, + "step": 11700 + }, + { + "epoch": 24.79074658254469, + "grad_norm": 0.3239966034889221, + "learning_rate": 3.7606092436974794e-05, + "loss": 1.2899176025390624, + "step": 11800 + }, + { + "epoch": 25.0, + "grad_norm": 0.49487531185150146, + "learning_rate": 3.7501050420168073e-05, + "loss": 1.2903105163574218, + "step": 11900 + }, + { + "epoch": 25.21030494216614, + "grad_norm": 0.343091756105423, + "learning_rate": 3.7396008403361346e-05, + "loss": 1.24728271484375, + "step": 12000 + }, + { + "epoch": 25.420609884332283, + "grad_norm": 0.3502146899700165, + "learning_rate": 3.729096638655462e-05, + "loss": 1.2573788452148438, + "step": 12100 + }, + { + "epoch": 25.630914826498422, + "grad_norm": 0.34780803322792053, + "learning_rate": 3.71859243697479e-05, + "loss": 1.259660186767578, + "step": 12200 + }, + { + "epoch": 25.841219768664562, + "grad_norm": 0.3617474436759949, + "learning_rate": 3.708088235294118e-05, + "loss": 1.267321548461914, + "step": 12300 + }, + { + "epoch": 26.050473186119874, + "grad_norm": 0.36151477694511414, + "learning_rate": 3.6975840336134456e-05, + "loss": 1.2569818878173828, + "step": 12400 + }, + { + "epoch": 26.260778128286013, + "grad_norm": 0.3706369400024414, + "learning_rate": 3.687079831932773e-05, + "loss": 1.2217762756347657, + "step": 12500 + }, + { + "epoch": 26.471083070452156, + "grad_norm": 0.36876797676086426, + "learning_rate": 3.676575630252101e-05, + "loss": 1.2311412048339845, + "step": 12600 + }, + { + "epoch": 26.681388012618296, + "grad_norm": 0.37329521775245667, + "learning_rate": 3.666071428571429e-05, + "loss": 1.23805908203125, + "step": 12700 + }, + { + "epoch": 26.89169295478444, + "grad_norm": 0.3803170919418335, + "learning_rate": 3.6555672268907566e-05, + "loss": 1.2423350524902343, + "step": 12800 + }, + { + "epoch": 27.100946372239747, + "grad_norm": 0.3833712637424469, + "learning_rate": 3.6450630252100846e-05, + "loss": 1.222099609375, + "step": 12900 + }, + { + "epoch": 27.31125131440589, + "grad_norm": 0.3987831771373749, + "learning_rate": 3.634558823529412e-05, + "loss": 1.1973797607421874, + "step": 13000 + }, + { + "epoch": 27.52155625657203, + "grad_norm": 0.39121338725090027, + "learning_rate": 3.62405462184874e-05, + "loss": 1.206004409790039, + "step": 13100 + }, + { + "epoch": 27.73186119873817, + "grad_norm": 0.4020472764968872, + "learning_rate": 3.613550420168068e-05, + "loss": 1.2129373168945312, + "step": 13200 + }, + { + "epoch": 27.942166140904312, + "grad_norm": 0.4015159606933594, + "learning_rate": 3.6030462184873956e-05, + "loss": 1.2179686737060547, + "step": 13300 + }, + { + "epoch": 28.15141955835962, + "grad_norm": 0.3998790681362152, + "learning_rate": 3.592542016806723e-05, + "loss": 1.1833483123779296, + "step": 13400 + }, + { + "epoch": 28.361724500525764, + "grad_norm": 0.4190026819705963, + "learning_rate": 3.582037815126051e-05, + "loss": 1.1737586975097656, + "step": 13500 + }, + { + "epoch": 28.572029442691903, + "grad_norm": 0.4131736159324646, + "learning_rate": 3.571533613445378e-05, + "loss": 1.1806912231445312, + "step": 13600 + }, + { + "epoch": 28.782334384858043, + "grad_norm": 0.4250866174697876, + "learning_rate": 3.561029411764706e-05, + "loss": 1.1913446044921876, + "step": 13700 + }, + { + "epoch": 28.992639327024186, + "grad_norm": 0.4264129400253296, + "learning_rate": 3.550525210084034e-05, + "loss": 1.1878318786621094, + "step": 13800 + }, + { + "epoch": 29.201892744479494, + "grad_norm": 0.43633338809013367, + "learning_rate": 3.540021008403361e-05, + "loss": 1.1386358642578125, + "step": 13900 + }, + { + "epoch": 29.412197686645637, + "grad_norm": 0.4486881494522095, + "learning_rate": 3.529516806722689e-05, + "loss": 1.1477174377441406, + "step": 14000 + }, + { + "epoch": 29.622502628811777, + "grad_norm": 0.4420314133167267, + "learning_rate": 3.519012605042017e-05, + "loss": 1.1530896759033202, + "step": 14100 + }, + { + "epoch": 29.832807570977916, + "grad_norm": 0.4598003327846527, + "learning_rate": 3.508508403361345e-05, + "loss": 1.16252197265625, + "step": 14200 + }, + { + "epoch": 30.042060988433228, + "grad_norm": 0.44520533084869385, + "learning_rate": 3.498004201680672e-05, + "loss": 1.1551103973388672, + "step": 14300 + }, + { + "epoch": 30.252365930599368, + "grad_norm": 0.45871588587760925, + "learning_rate": 3.4875e-05, + "loss": 1.107753448486328, + "step": 14400 + }, + { + "epoch": 30.46267087276551, + "grad_norm": 0.46063199639320374, + "learning_rate": 3.476995798319328e-05, + "loss": 1.1182296752929688, + "step": 14500 + }, + { + "epoch": 30.67297581493165, + "grad_norm": 0.4760204553604126, + "learning_rate": 3.466491596638656e-05, + "loss": 1.129236373901367, + "step": 14600 + }, + { + "epoch": 30.883280757097793, + "grad_norm": 0.47249314188957214, + "learning_rate": 3.455987394957984e-05, + "loss": 1.1352229309082031, + "step": 14700 + }, + { + "epoch": 31.0925341745531, + "grad_norm": 0.4624006450176239, + "learning_rate": 3.445483193277311e-05, + "loss": 1.1082867431640624, + "step": 14800 + }, + { + "epoch": 31.302839116719245, + "grad_norm": 0.4787958264350891, + "learning_rate": 3.434978991596639e-05, + "loss": 1.0818411254882812, + "step": 14900 + }, + { + "epoch": 31.513144058885384, + "grad_norm": 0.4875246286392212, + "learning_rate": 3.424474789915967e-05, + "loss": 1.092553939819336, + "step": 15000 + }, + { + "epoch": 31.723449001051524, + "grad_norm": 0.48742467164993286, + "learning_rate": 3.413970588235294e-05, + "loss": 1.1002989959716798, + "step": 15100 + }, + { + "epoch": 31.933753943217667, + "grad_norm": 0.5014126896858215, + "learning_rate": 3.403466386554622e-05, + "loss": 1.1067331695556641, + "step": 15200 + }, + { + "epoch": 32.143007360672975, + "grad_norm": 0.48793110251426697, + "learning_rate": 3.3929621848739494e-05, + "loss": 1.0649752807617188, + "step": 15300 + }, + { + "epoch": 32.353312302839115, + "grad_norm": 0.5064884424209595, + "learning_rate": 3.382457983193277e-05, + "loss": 1.0489683532714844, + "step": 15400 + }, + { + "epoch": 32.56361724500526, + "grad_norm": 0.5118729472160339, + "learning_rate": 3.371953781512605e-05, + "loss": 1.0648185729980468, + "step": 15500 + }, + { + "epoch": 32.7739221871714, + "grad_norm": 0.5236688852310181, + "learning_rate": 3.361449579831933e-05, + "loss": 1.0743647766113282, + "step": 15600 + }, + { + "epoch": 32.98422712933754, + "grad_norm": 0.5397860407829285, + "learning_rate": 3.3509453781512604e-05, + "loss": 1.080048828125, + "step": 15700 + }, + { + "epoch": 33.19348054679285, + "grad_norm": 0.5270755290985107, + "learning_rate": 3.340441176470588e-05, + "loss": 1.0228548431396485, + "step": 15800 + }, + { + "epoch": 33.40378548895899, + "grad_norm": 0.5429406762123108, + "learning_rate": 3.329936974789916e-05, + "loss": 1.028949966430664, + "step": 15900 + }, + { + "epoch": 33.614090431125135, + "grad_norm": 0.5323997735977173, + "learning_rate": 3.319432773109244e-05, + "loss": 1.037523956298828, + "step": 16000 + }, + { + "epoch": 33.824395373291274, + "grad_norm": 0.5385149717330933, + "learning_rate": 3.3090336134453784e-05, + "loss": 1.0431160736083984, + "step": 16100 + }, + { + "epoch": 34.03364879074658, + "grad_norm": 0.5089665651321411, + "learning_rate": 3.2986344537815127e-05, + "loss": 1.0349723815917968, + "step": 16200 + }, + { + "epoch": 34.24395373291272, + "grad_norm": 0.5455434918403625, + "learning_rate": 3.2881302521008406e-05, + "loss": 0.988803482055664, + "step": 16300 + }, + { + "epoch": 34.45425867507886, + "grad_norm": 0.5569856762886047, + "learning_rate": 3.2776260504201685e-05, + "loss": 1.0031266021728515, + "step": 16400 + }, + { + "epoch": 34.66456361724501, + "grad_norm": 0.5644022226333618, + "learning_rate": 3.2671218487394964e-05, + "loss": 1.0083402252197267, + "step": 16500 + }, + { + "epoch": 34.87486855941115, + "grad_norm": 0.5685406923294067, + "learning_rate": 3.256617647058824e-05, + "loss": 1.0177439117431641, + "step": 16600 + }, + { + "epoch": 35.084121976866456, + "grad_norm": 0.543632447719574, + "learning_rate": 3.2461134453781516e-05, + "loss": 0.9930455780029297, + "step": 16700 + }, + { + "epoch": 35.294426919032595, + "grad_norm": 0.5612316727638245, + "learning_rate": 3.2356092436974795e-05, + "loss": 0.9650897216796875, + "step": 16800 + }, + { + "epoch": 35.504731861198735, + "grad_norm": 0.5759446024894714, + "learning_rate": 3.225105042016807e-05, + "loss": 0.973653564453125, + "step": 16900 + }, + { + "epoch": 35.71503680336488, + "grad_norm": 0.574255645275116, + "learning_rate": 3.214600840336135e-05, + "loss": 0.981424560546875, + "step": 17000 + }, + { + "epoch": 35.92534174553102, + "grad_norm": 0.5851606726646423, + "learning_rate": 3.204096638655462e-05, + "loss": 0.991123046875, + "step": 17100 + }, + { + "epoch": 36.13459516298633, + "grad_norm": 0.5589666366577148, + "learning_rate": 3.19359243697479e-05, + "loss": 0.9481909942626953, + "step": 17200 + }, + { + "epoch": 36.34490010515247, + "grad_norm": 0.5968824625015259, + "learning_rate": 3.183088235294118e-05, + "loss": 0.9365898895263672, + "step": 17300 + }, + { + "epoch": 36.55520504731861, + "grad_norm": 0.5998508930206299, + "learning_rate": 3.172584033613446e-05, + "loss": 0.9492893218994141, + "step": 17400 + }, + { + "epoch": 36.765509989484755, + "grad_norm": 0.6060558557510376, + "learning_rate": 3.162079831932773e-05, + "loss": 0.9547823333740234, + "step": 17500 + }, + { + "epoch": 36.975814931650895, + "grad_norm": 0.589341402053833, + "learning_rate": 3.151575630252101e-05, + "loss": 0.9626276397705078, + "step": 17600 + }, + { + "epoch": 37.1850683491062, + "grad_norm": 0.5891321897506714, + "learning_rate": 3.141071428571429e-05, + "loss": 0.9065424346923828, + "step": 17700 + }, + { + "epoch": 37.39537329127234, + "grad_norm": 0.5880729556083679, + "learning_rate": 3.130567226890757e-05, + "loss": 0.9107749938964844, + "step": 17800 + }, + { + "epoch": 37.60567823343849, + "grad_norm": 0.6077774167060852, + "learning_rate": 3.120063025210084e-05, + "loss": 0.9193459320068359, + "step": 17900 + }, + { + "epoch": 37.81598317560463, + "grad_norm": 0.6189863681793213, + "learning_rate": 3.109558823529412e-05, + "loss": 0.9286084747314454, + "step": 18000 + }, + { + "epoch": 38.02523659305994, + "grad_norm": 0.5724475383758545, + "learning_rate": 3.09905462184874e-05, + "loss": 0.9282203674316406, + "step": 18100 + }, + { + "epoch": 38.235541535226076, + "grad_norm": 0.5952550768852234, + "learning_rate": 3.088550420168068e-05, + "loss": 0.8734053039550781, + "step": 18200 + }, + { + "epoch": 38.445846477392216, + "grad_norm": 0.5967536568641663, + "learning_rate": 3.078046218487395e-05, + "loss": 0.886033935546875, + "step": 18300 + }, + { + "epoch": 38.65615141955836, + "grad_norm": 0.6298649311065674, + "learning_rate": 3.067542016806722e-05, + "loss": 0.8977913665771484, + "step": 18400 + }, + { + "epoch": 38.8664563617245, + "grad_norm": 0.6457948684692383, + "learning_rate": 3.05703781512605e-05, + "loss": 0.9048082733154297, + "step": 18500 + }, + { + "epoch": 39.07570977917981, + "grad_norm": 0.6172012090682983, + "learning_rate": 3.046533613445378e-05, + "loss": 0.8857656860351563, + "step": 18600 + }, + { + "epoch": 39.28601472134595, + "grad_norm": 0.5979504585266113, + "learning_rate": 3.036029411764706e-05, + "loss": 0.8502845001220704, + "step": 18700 + }, + { + "epoch": 39.49631966351209, + "grad_norm": 0.6284430623054504, + "learning_rate": 3.0255252100840336e-05, + "loss": 0.8602873229980469, + "step": 18800 + }, + { + "epoch": 39.706624605678236, + "grad_norm": 0.6330845355987549, + "learning_rate": 3.0150210084033616e-05, + "loss": 0.8690576934814453, + "step": 18900 + }, + { + "epoch": 39.916929547844376, + "grad_norm": 0.6465399861335754, + "learning_rate": 3.004516806722689e-05, + "loss": 0.8787310791015625, + "step": 19000 + }, + { + "epoch": 40.126182965299684, + "grad_norm": 0.6255329251289368, + "learning_rate": 2.994117647058824e-05, + "loss": 0.84158203125, + "step": 19100 + }, + { + "epoch": 40.33648790746582, + "grad_norm": 0.6304967999458313, + "learning_rate": 2.983613445378151e-05, + "loss": 0.8283135223388672, + "step": 19200 + }, + { + "epoch": 40.54679284963196, + "grad_norm": 0.6366279125213623, + "learning_rate": 2.973109243697479e-05, + "loss": 0.8385968780517579, + "step": 19300 + }, + { + "epoch": 40.75709779179811, + "grad_norm": 0.6407002210617065, + "learning_rate": 2.9626050420168065e-05, + "loss": 0.8465004730224609, + "step": 19400 + }, + { + "epoch": 40.96740273396425, + "grad_norm": 0.6582015156745911, + "learning_rate": 2.9521008403361344e-05, + "loss": 0.8523696136474609, + "step": 19500 + }, + { + "epoch": 41.17665615141956, + "grad_norm": 0.6326037645339966, + "learning_rate": 2.9415966386554624e-05, + "loss": 0.8025535583496094, + "step": 19600 + }, + { + "epoch": 41.3869610935857, + "grad_norm": 0.631605863571167, + "learning_rate": 2.93109243697479e-05, + "loss": 0.8077165222167969, + "step": 19700 + }, + { + "epoch": 41.597266035751844, + "grad_norm": 0.6400684118270874, + "learning_rate": 2.920588235294118e-05, + "loss": 0.8162235260009766, + "step": 19800 + }, + { + "epoch": 41.80757097791798, + "grad_norm": 0.6499695181846619, + "learning_rate": 2.9100840336134455e-05, + "loss": 0.8243218231201171, + "step": 19900 + }, + { + "epoch": 42.01682439537329, + "grad_norm": 0.6392955183982849, + "learning_rate": 2.8995798319327734e-05, + "loss": 0.8244134521484375, + "step": 20000 + }, + { + "epoch": 42.22712933753943, + "grad_norm": 0.6429536938667297, + "learning_rate": 2.889075630252101e-05, + "loss": 0.7711881256103515, + "step": 20100 + }, + { + "epoch": 42.43743427970557, + "grad_norm": 0.6592206358909607, + "learning_rate": 2.878571428571429e-05, + "loss": 0.7841451263427734, + "step": 20200 + }, + { + "epoch": 42.64773922187172, + "grad_norm": 0.6881083846092224, + "learning_rate": 2.8680672268907565e-05, + "loss": 0.792880859375, + "step": 20300 + }, + { + "epoch": 42.85804416403786, + "grad_norm": 0.6662302017211914, + "learning_rate": 2.8575630252100844e-05, + "loss": 0.8001659393310547, + "step": 20400 + }, + { + "epoch": 43.067297581493165, + "grad_norm": 0.6177626252174377, + "learning_rate": 2.847058823529412e-05, + "loss": 0.7870485687255859, + "step": 20500 + }, + { + "epoch": 43.277602523659304, + "grad_norm": 0.6681060194969177, + "learning_rate": 2.83655462184874e-05, + "loss": 0.7512457275390625, + "step": 20600 + }, + { + "epoch": 43.487907465825444, + "grad_norm": 0.669675886631012, + "learning_rate": 2.826050420168067e-05, + "loss": 0.7591960144042968, + "step": 20700 + }, + { + "epoch": 43.69821240799159, + "grad_norm": 0.7097092866897583, + "learning_rate": 2.8155462184873948e-05, + "loss": 0.7737602233886719, + "step": 20800 + }, + { + "epoch": 43.90851735015773, + "grad_norm": 0.6951079964637756, + "learning_rate": 2.8050420168067227e-05, + "loss": 0.7815242767333984, + "step": 20900 + }, + { + "epoch": 44.11777076761304, + "grad_norm": 0.639824390411377, + "learning_rate": 2.7945378151260503e-05, + "loss": 0.7512903594970703, + "step": 21000 + }, + { + "epoch": 44.32807570977918, + "grad_norm": 0.67326819896698, + "learning_rate": 2.7840336134453782e-05, + "loss": 0.7329978179931641, + "step": 21100 + }, + { + "epoch": 44.53838065194532, + "grad_norm": 0.6938571333885193, + "learning_rate": 2.7735294117647058e-05, + "loss": 0.7421668243408203, + "step": 21200 + }, + { + "epoch": 44.748685594111464, + "grad_norm": 0.6845099925994873, + "learning_rate": 2.7630252100840337e-05, + "loss": 0.7509217071533203, + "step": 21300 + }, + { + "epoch": 44.958990536277604, + "grad_norm": 0.681825578212738, + "learning_rate": 2.7525210084033616e-05, + "loss": 0.7620004272460937, + "step": 21400 + }, + { + "epoch": 45.16824395373291, + "grad_norm": 0.6556856036186218, + "learning_rate": 2.7421218487394962e-05, + "loss": 0.7184288787841797, + "step": 21500 + }, + { + "epoch": 45.37854889589905, + "grad_norm": 0.6386471390724182, + "learning_rate": 2.7316176470588235e-05, + "loss": 0.7161962127685547, + "step": 21600 + }, + { + "epoch": 45.5888538380652, + "grad_norm": 0.6947113275527954, + "learning_rate": 2.721113445378151e-05, + "loss": 0.7244486999511719, + "step": 21700 + }, + { + "epoch": 45.79915878023134, + "grad_norm": 0.6741232872009277, + "learning_rate": 2.710609243697479e-05, + "loss": 0.7308968353271484, + "step": 21800 + }, + { + "epoch": 46.008412197686646, + "grad_norm": 0.6631771326065063, + "learning_rate": 2.7001050420168066e-05, + "loss": 0.7323504638671875, + "step": 21900 + }, + { + "epoch": 46.218717139852785, + "grad_norm": 0.6702309250831604, + "learning_rate": 2.6896008403361345e-05, + "loss": 0.6865713500976562, + "step": 22000 + }, + { + "epoch": 46.429022082018925, + "grad_norm": 0.6711138486862183, + "learning_rate": 2.679096638655462e-05, + "loss": 0.697294921875, + "step": 22100 + }, + { + "epoch": 46.63932702418507, + "grad_norm": 0.7067892551422119, + "learning_rate": 2.66859243697479e-05, + "loss": 0.70609619140625, + "step": 22200 + }, + { + "epoch": 46.84963196635121, + "grad_norm": 0.6743476390838623, + "learning_rate": 2.658088235294118e-05, + "loss": 0.7116059112548828, + "step": 22300 + }, + { + "epoch": 47.05888538380652, + "grad_norm": 0.642842710018158, + "learning_rate": 2.6475840336134455e-05, + "loss": 0.7024728393554688, + "step": 22400 + }, + { + "epoch": 47.26919032597266, + "grad_norm": 0.6852782368659973, + "learning_rate": 2.6370798319327734e-05, + "loss": 0.6698217010498047, + "step": 22500 + }, + { + "epoch": 47.4794952681388, + "grad_norm": 0.6817244291305542, + "learning_rate": 2.626575630252101e-05, + "loss": 0.6796794891357422, + "step": 22600 + }, + { + "epoch": 47.689800210304945, + "grad_norm": 0.665703535079956, + "learning_rate": 2.616071428571429e-05, + "loss": 0.689930191040039, + "step": 22700 + }, + { + "epoch": 47.900105152471085, + "grad_norm": 0.7286046147346497, + "learning_rate": 2.6055672268907565e-05, + "loss": 0.6968262481689453, + "step": 22800 + }, + { + "epoch": 48.10935856992639, + "grad_norm": 0.6568066477775574, + "learning_rate": 2.5950630252100845e-05, + "loss": 0.6714718627929688, + "step": 22900 + }, + { + "epoch": 48.31966351209253, + "grad_norm": 0.6909933090209961, + "learning_rate": 2.584558823529412e-05, + "loss": 0.6521046447753907, + "step": 23000 + }, + { + "epoch": 48.52996845425867, + "grad_norm": 0.6730957627296448, + "learning_rate": 2.5740546218487393e-05, + "loss": 0.6635847473144532, + "step": 23100 + }, + { + "epoch": 48.74027339642482, + "grad_norm": 0.7137960195541382, + "learning_rate": 2.5635504201680672e-05, + "loss": 0.6703518676757813, + "step": 23200 + }, + { + "epoch": 48.95057833859096, + "grad_norm": 0.7035015225410461, + "learning_rate": 2.5530462184873948e-05, + "loss": 0.678240737915039, + "step": 23300 + }, + { + "epoch": 49.159831756046266, + "grad_norm": 0.6768185496330261, + "learning_rate": 2.5425420168067227e-05, + "loss": 0.6413292694091797, + "step": 23400 + }, + { + "epoch": 49.370136698212406, + "grad_norm": 0.6941663026809692, + "learning_rate": 2.5320378151260503e-05, + "loss": 0.6415236663818359, + "step": 23500 + }, + { + "epoch": 49.58044164037855, + "grad_norm": 0.722435712814331, + "learning_rate": 2.5215336134453782e-05, + "loss": 0.6499783325195313, + "step": 23600 + }, + { + "epoch": 49.79074658254469, + "grad_norm": 0.7071043252944946, + "learning_rate": 2.511029411764706e-05, + "loss": 0.6546615600585938, + "step": 23700 + }, + { + "epoch": 50.0, + "grad_norm": Infinity, + "learning_rate": 2.5005252100840338e-05, + "loss": 0.6589860534667968, + "step": 23800 + }, + { + "epoch": 50.21030494216614, + "grad_norm": 0.6747011542320251, + "learning_rate": 2.490126050420168e-05, + "loss": 0.6164878845214844, + "step": 23900 + }, + { + "epoch": 50.42060988433228, + "grad_norm": 0.6953312754631042, + "learning_rate": 2.479621848739496e-05, + "loss": 0.6259209060668945, + "step": 24000 + }, + { + "epoch": 50.630914826498426, + "grad_norm": 0.6829053163528442, + "learning_rate": 2.469117647058824e-05, + "loss": 0.6306737518310547, + "step": 24100 + }, + { + "epoch": 50.841219768664565, + "grad_norm": 0.7105507850646973, + "learning_rate": 2.4586134453781514e-05, + "loss": 0.6402838897705078, + "step": 24200 + }, + { + "epoch": 51.05047318611987, + "grad_norm": 0.6592356562614441, + "learning_rate": 2.4481092436974794e-05, + "loss": 0.6321442413330078, + "step": 24300 + }, + { + "epoch": 51.26077812828601, + "grad_norm": 0.6957094073295593, + "learning_rate": 2.4376050420168066e-05, + "loss": 0.6060052108764649, + "step": 24400 + }, + { + "epoch": 51.47108307045215, + "grad_norm": 0.6904229521751404, + "learning_rate": 2.4271008403361345e-05, + "loss": 0.6094649505615234, + "step": 24500 + }, + { + "epoch": 51.6813880126183, + "grad_norm": 0.7173294425010681, + "learning_rate": 2.416596638655462e-05, + "loss": 0.6187096023559571, + "step": 24600 + }, + { + "epoch": 51.89169295478444, + "grad_norm": 0.7143198251724243, + "learning_rate": 2.40609243697479e-05, + "loss": 0.6268323516845703, + "step": 24700 + }, + { + "epoch": 52.10094637223975, + "grad_norm": 0.6786720752716064, + "learning_rate": 2.3955882352941176e-05, + "loss": 0.6083223342895507, + "step": 24800 + }, + { + "epoch": 52.31125131440589, + "grad_norm": 0.6900521516799927, + "learning_rate": 2.3850840336134456e-05, + "loss": 0.5922721862792969, + "step": 24900 + }, + { + "epoch": 52.521556256572026, + "grad_norm": 0.7288543581962585, + "learning_rate": 2.3745798319327735e-05, + "loss": 0.5982749938964844, + "step": 25000 + }, + { + "epoch": 52.73186119873817, + "grad_norm": 0.704078197479248, + "learning_rate": 2.3640756302521007e-05, + "loss": 0.6041379547119141, + "step": 25100 + }, + { + "epoch": 52.94216614090431, + "grad_norm": 0.706262469291687, + "learning_rate": 2.3535714285714287e-05, + "loss": 0.6083390808105469, + "step": 25200 + }, + { + "epoch": 53.15141955835962, + "grad_norm": 0.6775776743888855, + "learning_rate": 2.3430672268907563e-05, + "loss": 0.5816435623168945, + "step": 25300 + }, + { + "epoch": 53.36172450052576, + "grad_norm": 0.7253007888793945, + "learning_rate": 2.3325630252100842e-05, + "loss": 0.58095458984375, + "step": 25400 + }, + { + "epoch": 53.5720294426919, + "grad_norm": 0.7169889211654663, + "learning_rate": 2.3220588235294118e-05, + "loss": 0.5878105163574219, + "step": 25500 + }, + { + "epoch": 53.782334384858046, + "grad_norm": 0.6921281814575195, + "learning_rate": 2.3115546218487397e-05, + "loss": 0.5918175506591797, + "step": 25600 + }, + { + "epoch": 53.992639327024186, + "grad_norm": 0.7570663094520569, + "learning_rate": 2.3010504201680673e-05, + "loss": 0.5992276000976563, + "step": 25700 + }, + { + "epoch": 54.201892744479494, + "grad_norm": 0.7045475840568542, + "learning_rate": 2.2905462184873952e-05, + "loss": 0.563626937866211, + "step": 25800 + }, + { + "epoch": 54.412197686645634, + "grad_norm": 0.7311537861824036, + "learning_rate": 2.2800420168067228e-05, + "loss": 0.5649079513549805, + "step": 25900 + }, + { + "epoch": 54.62250262881178, + "grad_norm": 0.7197280526161194, + "learning_rate": 2.2695378151260504e-05, + "loss": 0.5740287017822265, + "step": 26000 + }, + { + "epoch": 54.83280757097792, + "grad_norm": 0.7047930359840393, + "learning_rate": 2.2590336134453783e-05, + "loss": 0.5799992752075195, + "step": 26100 + }, + { + "epoch": 55.04206098843323, + "grad_norm": 0.663329541683197, + "learning_rate": 2.2486344537815125e-05, + "loss": 0.5747824096679688, + "step": 26200 + }, + { + "epoch": 55.25236593059937, + "grad_norm": 0.6825776100158691, + "learning_rate": 2.2381302521008405e-05, + "loss": 0.5511475372314453, + "step": 26300 + }, + { + "epoch": 55.46267087276551, + "grad_norm": 0.7081674337387085, + "learning_rate": 2.227626050420168e-05, + "loss": 0.5568293380737305, + "step": 26400 + }, + { + "epoch": 55.672975814931654, + "grad_norm": 0.6991596221923828, + "learning_rate": 2.217121848739496e-05, + "loss": 0.5623696899414062, + "step": 26500 + }, + { + "epoch": 55.88328075709779, + "grad_norm": 0.7421116828918457, + "learning_rate": 2.2066176470588236e-05, + "loss": 0.5673596572875976, + "step": 26600 + }, + { + "epoch": 56.0925341745531, + "grad_norm": 0.6679620146751404, + "learning_rate": 2.1961134453781515e-05, + "loss": 0.555915298461914, + "step": 26700 + }, + { + "epoch": 56.30283911671924, + "grad_norm": 0.7035086750984192, + "learning_rate": 2.185609243697479e-05, + "loss": 0.5402443313598633, + "step": 26800 + }, + { + "epoch": 56.51314405888538, + "grad_norm": 0.6888571381568909, + "learning_rate": 2.1751050420168067e-05, + "loss": 0.5462953186035157, + "step": 26900 + }, + { + "epoch": 56.72344900105153, + "grad_norm": 0.7356609106063843, + "learning_rate": 2.1646008403361346e-05, + "loss": 0.5512025833129883, + "step": 27000 + }, + { + "epoch": 56.93375394321767, + "grad_norm": 0.7569705247879028, + "learning_rate": 2.1540966386554622e-05, + "loss": 0.5562152481079101, + "step": 27100 + }, + { + "epoch": 57.143007360672975, + "grad_norm": 0.6764115691184998, + "learning_rate": 2.14359243697479e-05, + "loss": 0.5337548065185547, + "step": 27200 + }, + { + "epoch": 57.353312302839115, + "grad_norm": 0.7006810307502747, + "learning_rate": 2.1330882352941177e-05, + "loss": 0.5296073913574219, + "step": 27300 + }, + { + "epoch": 57.56361724500526, + "grad_norm": 0.7158169150352478, + "learning_rate": 2.1225840336134456e-05, + "loss": 0.5382700347900391, + "step": 27400 + }, + { + "epoch": 57.7739221871714, + "grad_norm": 0.7132992148399353, + "learning_rate": 2.1120798319327732e-05, + "loss": 0.5398505783081055, + "step": 27500 + }, + { + "epoch": 57.98422712933754, + "grad_norm": 0.7330942749977112, + "learning_rate": 2.1015756302521008e-05, + "loss": 0.5458747863769531, + "step": 27600 + }, + { + "epoch": 58.19348054679285, + "grad_norm": 0.669278621673584, + "learning_rate": 2.0910714285714287e-05, + "loss": 0.5161695861816407, + "step": 27700 + }, + { + "epoch": 58.40378548895899, + "grad_norm": 0.6958737373352051, + "learning_rate": 2.0805672268907563e-05, + "loss": 0.5201998901367187, + "step": 27800 + }, + { + "epoch": 58.614090431125135, + "grad_norm": 0.6824914813041687, + "learning_rate": 2.0700630252100842e-05, + "loss": 0.5258338928222657, + "step": 27900 + }, + { + "epoch": 58.824395373291274, + "grad_norm": 0.6634467244148254, + "learning_rate": 2.0595588235294118e-05, + "loss": 0.5300619888305664, + "step": 28000 + }, + { + "epoch": 59.03364879074658, + "grad_norm": 0.6863816380500793, + "learning_rate": 2.0490546218487397e-05, + "loss": 0.5283214950561523, + "step": 28100 + }, + { + "epoch": 59.24395373291272, + "grad_norm": 0.7183119654655457, + "learning_rate": 2.0385504201680673e-05, + "loss": 0.506834487915039, + "step": 28200 + }, + { + "epoch": 59.45425867507886, + "grad_norm": 0.7142145037651062, + "learning_rate": 2.028046218487395e-05, + "loss": 0.5117876815795899, + "step": 28300 + }, + { + "epoch": 59.66456361724501, + "grad_norm": 0.7280924916267395, + "learning_rate": 2.017542016806723e-05, + "loss": 0.5153473281860351, + "step": 28400 + }, + { + "epoch": 59.87486855941115, + "grad_norm": 0.693505048751831, + "learning_rate": 2.0070378151260504e-05, + "loss": 0.5219352722167969, + "step": 28500 + }, + { + "epoch": 60.084121976866456, + "grad_norm": 0.6892845034599304, + "learning_rate": 1.9965336134453784e-05, + "loss": 0.5122858810424805, + "step": 28600 + }, + { + "epoch": 60.294426919032595, + "grad_norm": 0.6604379415512085, + "learning_rate": 1.986029411764706e-05, + "loss": 0.49614715576171875, + "step": 28700 + }, + { + "epoch": 60.504731861198735, + "grad_norm": 0.7204891443252563, + "learning_rate": 1.975525210084034e-05, + "loss": 0.5024974822998047, + "step": 28800 + }, + { + "epoch": 60.71503680336488, + "grad_norm": 0.7127634286880493, + "learning_rate": 1.9650210084033615e-05, + "loss": 0.5073120498657226, + "step": 28900 + }, + { + "epoch": 60.92534174553102, + "grad_norm": 0.7359983921051025, + "learning_rate": 1.954516806722689e-05, + "loss": 0.5116232681274414, + "step": 29000 + }, + { + "epoch": 61.13459516298633, + "grad_norm": 0.6893951296806335, + "learning_rate": 1.944012605042017e-05, + "loss": 0.4952814865112305, + "step": 29100 + }, + { + "epoch": 61.34490010515247, + "grad_norm": 0.6849685311317444, + "learning_rate": 1.9335084033613446e-05, + "loss": 0.4899435043334961, + "step": 29200 + }, + { + "epoch": 61.55520504731861, + "grad_norm": 0.7181743383407593, + "learning_rate": 1.9230042016806725e-05, + "loss": 0.4946512985229492, + "step": 29300 + }, + { + "epoch": 61.765509989484755, + "grad_norm": 0.6820606589317322, + "learning_rate": 1.9125e-05, + "loss": 0.49947418212890626, + "step": 29400 + }, + { + "epoch": 61.975814931650895, + "grad_norm": 0.7111321687698364, + "learning_rate": 1.901995798319328e-05, + "loss": 0.5020344543457032, + "step": 29500 + }, + { + "epoch": 62.1850683491062, + "grad_norm": 0.7008198499679565, + "learning_rate": 1.8914915966386556e-05, + "loss": 0.48151485443115233, + "step": 29600 + }, + { + "epoch": 62.39537329127234, + "grad_norm": 0.7171513438224792, + "learning_rate": 1.880987394957983e-05, + "loss": 0.48171932220458985, + "step": 29700 + }, + { + "epoch": 62.60567823343849, + "grad_norm": 0.7375807762145996, + "learning_rate": 1.8704831932773108e-05, + "loss": 0.4873679733276367, + "step": 29800 + }, + { + "epoch": 62.81598317560463, + "grad_norm": 0.6806672811508179, + "learning_rate": 1.8599789915966387e-05, + "loss": 0.4887456130981445, + "step": 29900 + }, + { + "epoch": 63.02523659305994, + "grad_norm": 0.6749327182769775, + "learning_rate": 1.8494747899159666e-05, + "loss": 0.48958889007568357, + "step": 30000 + }, + { + "epoch": 63.235541535226076, + "grad_norm": 0.7122695446014404, + "learning_rate": 1.8389705882352942e-05, + "loss": 0.46849212646484373, + "step": 30100 + }, + { + "epoch": 63.445846477392216, + "grad_norm": 0.6742300987243652, + "learning_rate": 1.8285714285714288e-05, + "loss": 0.4735026550292969, + "step": 30200 + }, + { + "epoch": 63.65615141955836, + "grad_norm": 0.7086833119392395, + "learning_rate": 1.8180672268907564e-05, + "loss": 0.47808189392089845, + "step": 30300 + }, + { + "epoch": 63.8664563617245, + "grad_norm": 0.673115611076355, + "learning_rate": 1.8075630252100843e-05, + "loss": 0.4810390853881836, + "step": 30400 + }, + { + "epoch": 64.07570977917982, + "grad_norm": 0.7166642546653748, + "learning_rate": 1.797058823529412e-05, + "loss": 0.47662986755371095, + "step": 30500 + }, + { + "epoch": 64.28601472134595, + "grad_norm": 0.7239866852760315, + "learning_rate": 1.7865546218487395e-05, + "loss": 0.46368907928466796, + "step": 30600 + }, + { + "epoch": 64.4963196635121, + "grad_norm": 0.6777023077011108, + "learning_rate": 1.776050420168067e-05, + "loss": 0.46869037628173826, + "step": 30700 + }, + { + "epoch": 64.70662460567823, + "grad_norm": 0.7028587460517883, + "learning_rate": 1.765546218487395e-05, + "loss": 0.47153076171875, + "step": 30800 + }, + { + "epoch": 64.91692954784438, + "grad_norm": 0.7220568656921387, + "learning_rate": 1.755042016806723e-05, + "loss": 0.4732553482055664, + "step": 30900 + }, + { + "epoch": 65.12618296529969, + "grad_norm": 0.6283636093139648, + "learning_rate": 1.7445378151260505e-05, + "loss": 0.4627264404296875, + "step": 31000 + }, + { + "epoch": 65.33648790746582, + "grad_norm": 0.6411524415016174, + "learning_rate": 1.7340336134453784e-05, + "loss": 0.45608016967773435, + "step": 31100 + }, + { + "epoch": 65.54679284963197, + "grad_norm": 0.668154776096344, + "learning_rate": 1.723529411764706e-05, + "loss": 0.46059967041015626, + "step": 31200 + }, + { + "epoch": 65.7570977917981, + "grad_norm": 0.7226248979568481, + "learning_rate": 1.713025210084034e-05, + "loss": 0.4659851455688477, + "step": 31300 + }, + { + "epoch": 65.96740273396425, + "grad_norm": 0.6833023428916931, + "learning_rate": 1.7025210084033612e-05, + "loss": 0.46931900024414064, + "step": 31400 + }, + { + "epoch": 66.17665615141956, + "grad_norm": 0.6941800117492676, + "learning_rate": 1.6921218487394958e-05, + "loss": 0.45006973266601563, + "step": 31500 + }, + { + "epoch": 66.3869610935857, + "grad_norm": 0.63517826795578, + "learning_rate": 1.6816176470588237e-05, + "loss": 0.44848171234130857, + "step": 31600 + }, + { + "epoch": 66.59726603575184, + "grad_norm": 0.6846080422401428, + "learning_rate": 1.6711134453781513e-05, + "loss": 0.45420032501220703, + "step": 31700 + }, + { + "epoch": 66.80757097791798, + "grad_norm": 0.6388368010520935, + "learning_rate": 1.6606092436974792e-05, + "loss": 0.4580923843383789, + "step": 31800 + }, + { + "epoch": 67.01682439537329, + "grad_norm": 0.6670629978179932, + "learning_rate": 1.6501050420168068e-05, + "loss": 0.4585027313232422, + "step": 31900 + }, + { + "epoch": 67.22712933753944, + "grad_norm": 0.6662338972091675, + "learning_rate": 1.6396008403361347e-05, + "loss": 0.44079010009765623, + "step": 32000 + }, + { + "epoch": 67.43743427970557, + "grad_norm": 0.6707865595817566, + "learning_rate": 1.6290966386554623e-05, + "loss": 0.44413238525390625, + "step": 32100 + }, + { + "epoch": 67.64773922187172, + "grad_norm": 0.656842052936554, + "learning_rate": 1.6185924369747902e-05, + "loss": 0.44844043731689454, + "step": 32200 + }, + { + "epoch": 67.85804416403785, + "grad_norm": 0.6646634340286255, + "learning_rate": 1.6080882352941175e-05, + "loss": 0.44970947265625, + "step": 32300 + }, + { + "epoch": 68.06729758149316, + "grad_norm": 0.6447365880012512, + "learning_rate": 1.5975840336134454e-05, + "loss": 0.4450407028198242, + "step": 32400 + }, + { + "epoch": 68.27760252365931, + "grad_norm": 0.6727699637413025, + "learning_rate": 1.587079831932773e-05, + "loss": 0.43177310943603514, + "step": 32500 + }, + { + "epoch": 68.48790746582544, + "grad_norm": 0.7130571603775024, + "learning_rate": 1.576575630252101e-05, + "loss": 0.4379489517211914, + "step": 32600 + }, + { + "epoch": 68.69821240799159, + "grad_norm": 0.7220073938369751, + "learning_rate": 1.566071428571429e-05, + "loss": 0.4425164794921875, + "step": 32700 + }, + { + "epoch": 68.90851735015772, + "grad_norm": 0.6695141196250916, + "learning_rate": 1.5555672268907564e-05, + "loss": 0.44274383544921875, + "step": 32800 + }, + { + "epoch": 69.11777076761304, + "grad_norm": 0.6740268468856812, + "learning_rate": 1.5450630252100843e-05, + "loss": 0.4357725143432617, + "step": 32900 + }, + { + "epoch": 69.32807570977918, + "grad_norm": 0.6566063165664673, + "learning_rate": 1.5345588235294116e-05, + "loss": 0.4283485412597656, + "step": 33000 + }, + { + "epoch": 69.53838065194532, + "grad_norm": 0.6752663850784302, + "learning_rate": 1.5240546218487395e-05, + "loss": 0.43225677490234377, + "step": 33100 + }, + { + "epoch": 69.74868559411146, + "grad_norm": 0.7038667798042297, + "learning_rate": 1.5135504201680673e-05, + "loss": 0.43592594146728514, + "step": 33200 + }, + { + "epoch": 69.9589905362776, + "grad_norm": 0.6961196660995483, + "learning_rate": 1.503046218487395e-05, + "loss": 0.438877067565918, + "step": 33300 + }, + { + "epoch": 70.16824395373291, + "grad_norm": 0.6535352468490601, + "learning_rate": 1.4925420168067228e-05, + "loss": 0.4252385330200195, + "step": 33400 + }, + { + "epoch": 70.37854889589906, + "grad_norm": 0.6601018905639648, + "learning_rate": 1.4820378151260505e-05, + "loss": 0.42285392761230467, + "step": 33500 + }, + { + "epoch": 70.58885383806519, + "grad_norm": 0.6948896050453186, + "learning_rate": 1.4715336134453783e-05, + "loss": 0.427175407409668, + "step": 33600 + }, + { + "epoch": 70.79915878023134, + "grad_norm": 0.6372560858726501, + "learning_rate": 1.461029411764706e-05, + "loss": 0.42832706451416014, + "step": 33700 + }, + { + "epoch": 71.00841219768665, + "grad_norm": 0.6517939567565918, + "learning_rate": 1.4505252100840336e-05, + "loss": 0.4324043273925781, + "step": 33800 + }, + { + "epoch": 71.21871713985279, + "grad_norm": 0.6330206990242004, + "learning_rate": 1.4400210084033614e-05, + "loss": 0.4146746826171875, + "step": 33900 + }, + { + "epoch": 71.42902208201893, + "grad_norm": 0.6658615469932556, + "learning_rate": 1.4295168067226892e-05, + "loss": 0.4180047225952148, + "step": 34000 + }, + { + "epoch": 71.63932702418506, + "grad_norm": 0.6433075070381165, + "learning_rate": 1.4190126050420169e-05, + "loss": 0.4219693374633789, + "step": 34100 + }, + { + "epoch": 71.84963196635121, + "grad_norm": 0.6470766663551331, + "learning_rate": 1.4085084033613447e-05, + "loss": 0.4214926528930664, + "step": 34200 + }, + { + "epoch": 72.05888538380653, + "grad_norm": 0.6315721273422241, + "learning_rate": 1.3981092436974791e-05, + "loss": 0.4204498291015625, + "step": 34300 + }, + { + "epoch": 72.26919032597266, + "grad_norm": 0.6722202897071838, + "learning_rate": 1.3876050420168068e-05, + "loss": 0.4105443572998047, + "step": 34400 + }, + { + "epoch": 72.4794952681388, + "grad_norm": 0.654528021812439, + "learning_rate": 1.3771008403361346e-05, + "loss": 0.41524337768554687, + "step": 34500 + }, + { + "epoch": 72.68980021030494, + "grad_norm": 0.6449755430221558, + "learning_rate": 1.3665966386554622e-05, + "loss": 0.4175481414794922, + "step": 34600 + }, + { + "epoch": 72.90010515247108, + "grad_norm": 0.6468359231948853, + "learning_rate": 1.35609243697479e-05, + "loss": 0.41863433837890623, + "step": 34700 + }, + { + "epoch": 73.1093585699264, + "grad_norm": 0.6471462845802307, + "learning_rate": 1.3455882352941177e-05, + "loss": 0.411123161315918, + "step": 34800 + }, + { + "epoch": 73.31966351209253, + "grad_norm": 0.6382157802581787, + "learning_rate": 1.3350840336134455e-05, + "loss": 0.40554931640625, + "step": 34900 + }, + { + "epoch": 73.52996845425868, + "grad_norm": 0.6727550029754639, + "learning_rate": 1.3245798319327732e-05, + "loss": 0.40884464263916015, + "step": 35000 + }, + { + "epoch": 73.74027339642481, + "grad_norm": 0.6494147181510925, + "learning_rate": 1.314075630252101e-05, + "loss": 0.4114807891845703, + "step": 35100 + }, + { + "epoch": 73.95057833859096, + "grad_norm": 0.6971067786216736, + "learning_rate": 1.3035714285714287e-05, + "loss": 0.4129951477050781, + "step": 35200 + }, + { + "epoch": 74.15983175604627, + "grad_norm": 0.630617082118988, + "learning_rate": 1.2930672268907565e-05, + "loss": 0.40283798217773437, + "step": 35300 + }, + { + "epoch": 74.3701366982124, + "grad_norm": 0.6068241000175476, + "learning_rate": 1.2825630252100839e-05, + "loss": 0.4017567825317383, + "step": 35400 + }, + { + "epoch": 74.58044164037855, + "grad_norm": 0.6767259836196899, + "learning_rate": 1.2720588235294118e-05, + "loss": 0.40448307037353515, + "step": 35500 + }, + { + "epoch": 74.79074658254468, + "grad_norm": 0.7011847496032715, + "learning_rate": 1.2615546218487396e-05, + "loss": 0.4047744369506836, + "step": 35600 + }, + { + "epoch": 75.0, + "grad_norm": 0.9920335412025452, + "learning_rate": 1.2510504201680673e-05, + "loss": 0.4085837936401367, + "step": 35700 + }, + { + "epoch": 75.21030494216615, + "grad_norm": 0.6520708203315735, + "learning_rate": 1.2405462184873951e-05, + "loss": 0.39399688720703124, + "step": 35800 + }, + { + "epoch": 75.42060988433228, + "grad_norm": 0.6656842827796936, + "learning_rate": 1.2300420168067227e-05, + "loss": 0.3963521957397461, + "step": 35900 + }, + { + "epoch": 75.63091482649843, + "grad_norm": 0.6576446294784546, + "learning_rate": 1.2195378151260504e-05, + "loss": 0.3992136383056641, + "step": 36000 + }, + { + "epoch": 75.84121976866456, + "grad_norm": 0.6238224506378174, + "learning_rate": 1.2090336134453782e-05, + "loss": 0.40125537872314454, + "step": 36100 + }, + { + "epoch": 76.05047318611987, + "grad_norm": 0.6389949917793274, + "learning_rate": 1.198529411764706e-05, + "loss": 0.3995349884033203, + "step": 36200 + }, + { + "epoch": 76.26077812828602, + "grad_norm": 0.6240091919898987, + "learning_rate": 1.1880252100840335e-05, + "loss": 0.3890629577636719, + "step": 36300 + }, + { + "epoch": 76.47108307045215, + "grad_norm": 0.6367642879486084, + "learning_rate": 1.1775210084033615e-05, + "loss": 0.39277313232421873, + "step": 36400 + }, + { + "epoch": 76.6813880126183, + "grad_norm": 0.6215347647666931, + "learning_rate": 1.1670168067226892e-05, + "loss": 0.3941745376586914, + "step": 36500 + }, + { + "epoch": 76.89169295478443, + "grad_norm": 0.6176421642303467, + "learning_rate": 1.156512605042017e-05, + "loss": 0.3961213302612305, + "step": 36600 + }, + { + "epoch": 77.10094637223975, + "grad_norm": 0.6433852314949036, + "learning_rate": 1.1460084033613446e-05, + "loss": 0.39362903594970705, + "step": 36700 + }, + { + "epoch": 77.3112513144059, + "grad_norm": 0.6288033127784729, + "learning_rate": 1.1355042016806723e-05, + "loss": 0.3870785140991211, + "step": 36800 + }, + { + "epoch": 77.52155625657203, + "grad_norm": 0.6061193943023682, + "learning_rate": 1.125e-05, + "loss": 0.38955581665039063, + "step": 36900 + }, + { + "epoch": 77.73186119873817, + "grad_norm": 0.6680556535720825, + "learning_rate": 1.1144957983193278e-05, + "loss": 0.390676383972168, + "step": 37000 + }, + { + "epoch": 77.9421661409043, + "grad_norm": 0.623725950717926, + "learning_rate": 1.1039915966386554e-05, + "loss": 0.3921066665649414, + "step": 37100 + }, + { + "epoch": 78.15141955835962, + "grad_norm": 0.6346238255500793, + "learning_rate": 1.0935924369747898e-05, + "loss": 0.3845651626586914, + "step": 37200 + }, + { + "epoch": 78.36172450052577, + "grad_norm": 0.6062731146812439, + "learning_rate": 1.0830882352941178e-05, + "loss": 0.380772705078125, + "step": 37300 + }, + { + "epoch": 78.5720294426919, + "grad_norm": 0.6125079989433289, + "learning_rate": 1.0725840336134455e-05, + "loss": 0.3834884262084961, + "step": 37400 + }, + { + "epoch": 78.78233438485805, + "grad_norm": 0.6804420948028564, + "learning_rate": 1.0620798319327733e-05, + "loss": 0.3863555526733398, + "step": 37500 + }, + { + "epoch": 78.99263932702418, + "grad_norm": 0.6568316221237183, + "learning_rate": 1.0515756302521009e-05, + "loss": 0.3898443603515625, + "step": 37600 + }, + { + "epoch": 79.2018927444795, + "grad_norm": 0.6262179017066956, + "learning_rate": 1.0410714285714286e-05, + "loss": 0.37717395782470703, + "step": 37700 + }, + { + "epoch": 79.41219768664564, + "grad_norm": 0.6335896849632263, + "learning_rate": 1.0305672268907564e-05, + "loss": 0.37976459503173826, + "step": 37800 + }, + { + "epoch": 79.62250262881177, + "grad_norm": 0.675938069820404, + "learning_rate": 1.0200630252100841e-05, + "loss": 0.38054397583007815, + "step": 37900 + }, + { + "epoch": 79.83280757097792, + "grad_norm": 0.650644838809967, + "learning_rate": 1.0095588235294117e-05, + "loss": 0.3817191696166992, + "step": 38000 + }, + { + "epoch": 80.04206098843324, + "grad_norm": 0.5988778471946716, + "learning_rate": 9.990546218487395e-06, + "loss": 0.3799977493286133, + "step": 38100 + }, + { + "epoch": 80.25236593059937, + "grad_norm": 0.6436987519264221, + "learning_rate": 9.885504201680674e-06, + "loss": 0.37264183044433596, + "step": 38200 + }, + { + "epoch": 80.46267087276551, + "grad_norm": 0.610487699508667, + "learning_rate": 9.78046218487395e-06, + "loss": 0.3753046417236328, + "step": 38300 + }, + { + "epoch": 80.67297581493165, + "grad_norm": 0.6378571391105652, + "learning_rate": 9.675420168067227e-06, + "loss": 0.3749809646606445, + "step": 38400 + }, + { + "epoch": 80.8832807570978, + "grad_norm": 0.6599664688110352, + "learning_rate": 9.570378151260505e-06, + "loss": 0.37958168029785155, + "step": 38500 + }, + { + "epoch": 81.09253417455311, + "grad_norm": 0.6057779788970947, + "learning_rate": 9.465336134453782e-06, + "loss": 0.3755946731567383, + "step": 38600 + }, + { + "epoch": 81.30283911671924, + "grad_norm": 0.6186268925666809, + "learning_rate": 9.360294117647058e-06, + "loss": 0.3689208221435547, + "step": 38700 + }, + { + "epoch": 81.51314405888539, + "grad_norm": 0.6031709909439087, + "learning_rate": 9.255252100840336e-06, + "loss": 0.37045917510986326, + "step": 38800 + }, + { + "epoch": 81.72344900105152, + "grad_norm": 0.6903654336929321, + "learning_rate": 9.150210084033613e-06, + "loss": 0.37341190338134767, + "step": 38900 + }, + { + "epoch": 81.93375394321767, + "grad_norm": 0.6498835682868958, + "learning_rate": 9.045168067226891e-06, + "loss": 0.3741530227661133, + "step": 39000 + }, + { + "epoch": 82.14300736067298, + "grad_norm": 0.6078621745109558, + "learning_rate": 8.940126050420169e-06, + "loss": 0.36713558197021484, + "step": 39100 + }, + { + "epoch": 82.35331230283911, + "grad_norm": 0.6294094324111938, + "learning_rate": 8.835084033613446e-06, + "loss": 0.3661073303222656, + "step": 39200 + }, + { + "epoch": 82.56361724500526, + "grad_norm": 0.6120302081108093, + "learning_rate": 8.730042016806724e-06, + "loss": 0.3683062744140625, + "step": 39300 + }, + { + "epoch": 82.7739221871714, + "grad_norm": 0.6194695830345154, + "learning_rate": 8.625e-06, + "loss": 0.3718934631347656, + "step": 39400 + }, + { + "epoch": 82.98422712933754, + "grad_norm": 0.6603109240531921, + "learning_rate": 8.519957983193277e-06, + "loss": 0.37141822814941405, + "step": 39500 + }, + { + "epoch": 83.19348054679286, + "grad_norm": 0.6176982522010803, + "learning_rate": 8.414915966386555e-06, + "loss": 0.36253021240234373, + "step": 39600 + }, + { + "epoch": 83.40378548895899, + "grad_norm": 0.6788721084594727, + "learning_rate": 8.309873949579832e-06, + "loss": 0.36460174560546876, + "step": 39700 + }, + { + "epoch": 83.61409043112513, + "grad_norm": 0.6141113638877869, + "learning_rate": 8.20483193277311e-06, + "loss": 0.36554264068603515, + "step": 39800 + }, + { + "epoch": 83.82439537329127, + "grad_norm": 0.6193323135375977, + "learning_rate": 8.099789915966387e-06, + "loss": 0.36707286834716796, + "step": 39900 + }, + { + "epoch": 84.03364879074658, + "grad_norm": 0.6383187770843506, + "learning_rate": 7.994747899159665e-06, + "loss": 0.3661843872070312, + "step": 40000 + }, + { + "epoch": 84.24395373291273, + "grad_norm": 0.5923520922660828, + "learning_rate": 7.889705882352943e-06, + "loss": 0.35978816986083983, + "step": 40100 + }, + { + "epoch": 84.45425867507886, + "grad_norm": 0.641968846321106, + "learning_rate": 7.784663865546218e-06, + "loss": 0.35977176666259764, + "step": 40200 + }, + { + "epoch": 84.66456361724501, + "grad_norm": 0.6307324767112732, + "learning_rate": 7.679621848739496e-06, + "loss": 0.36135292053222656, + "step": 40300 + }, + { + "epoch": 84.87486855941114, + "grad_norm": 0.6303888559341431, + "learning_rate": 7.5745798319327735e-06, + "loss": 0.36290821075439456, + "step": 40400 + }, + { + "epoch": 85.08412197686646, + "grad_norm": 0.5610889792442322, + "learning_rate": 7.469537815126051e-06, + "loss": 0.36016101837158204, + "step": 40500 + }, + { + "epoch": 85.2944269190326, + "grad_norm": 0.5796296000480652, + "learning_rate": 7.364495798319328e-06, + "loss": 0.35660606384277344, + "step": 40600 + }, + { + "epoch": 85.50473186119874, + "grad_norm": 0.6147542595863342, + "learning_rate": 7.259453781512605e-06, + "loss": 0.35944347381591796, + "step": 40700 + }, + { + "epoch": 85.71503680336488, + "grad_norm": 0.6097769737243652, + "learning_rate": 7.154411764705883e-06, + "loss": 0.3589036560058594, + "step": 40800 + }, + { + "epoch": 85.92534174553101, + "grad_norm": 0.6288202404975891, + "learning_rate": 7.04936974789916e-06, + "loss": 0.3591917419433594, + "step": 40900 + }, + { + "epoch": 86.13459516298633, + "grad_norm": 0.6195931434631348, + "learning_rate": 6.944327731092437e-06, + "loss": 0.3569915771484375, + "step": 41000 + }, + { + "epoch": 86.34490010515248, + "grad_norm": 0.5890372395515442, + "learning_rate": 6.839285714285715e-06, + "loss": 0.3543994903564453, + "step": 41100 + }, + { + "epoch": 86.55520504731861, + "grad_norm": 0.6272594332695007, + "learning_rate": 6.735294117647059e-06, + "loss": 0.3553640365600586, + "step": 41200 + }, + { + "epoch": 86.76550998948476, + "grad_norm": 0.6778700351715088, + "learning_rate": 6.6302521008403365e-06, + "loss": 0.3564106750488281, + "step": 41300 + }, + { + "epoch": 86.97581493165089, + "grad_norm": 0.6336688995361328, + "learning_rate": 6.525210084033614e-06, + "loss": 0.35713409423828124, + "step": 41400 + }, + { + "epoch": 87.1850683491062, + "grad_norm": 0.6053069829940796, + "learning_rate": 6.421218487394959e-06, + "loss": 0.3506643295288086, + "step": 41500 + }, + { + "epoch": 87.39537329127235, + "grad_norm": 0.6175255179405212, + "learning_rate": 6.316176470588235e-06, + "loss": 0.35214996337890625, + "step": 41600 + }, + { + "epoch": 87.60567823343848, + "grad_norm": 0.5915444493293762, + "learning_rate": 6.2111344537815125e-06, + "loss": 0.3522480392456055, + "step": 41700 + }, + { + "epoch": 87.81598317560463, + "grad_norm": 0.5907636880874634, + "learning_rate": 6.10609243697479e-06, + "loss": 0.3520878601074219, + "step": 41800 + }, + { + "epoch": 88.02523659305994, + "grad_norm": 0.6209415197372437, + "learning_rate": 6.001050420168068e-06, + "loss": 0.3545633316040039, + "step": 41900 + }, + { + "epoch": 88.23554153522608, + "grad_norm": 0.5926827788352966, + "learning_rate": 5.896008403361345e-06, + "loss": 0.34920032501220705, + "step": 42000 + }, + { + "epoch": 88.44584647739222, + "grad_norm": 0.638471245765686, + "learning_rate": 5.790966386554622e-06, + "loss": 0.34805423736572266, + "step": 42100 + }, + { + "epoch": 88.65615141955836, + "grad_norm": 0.6181325316429138, + "learning_rate": 5.6859243697478994e-06, + "loss": 0.3501460647583008, + "step": 42200 + }, + { + "epoch": 88.8664563617245, + "grad_norm": 0.6029173135757446, + "learning_rate": 5.580882352941177e-06, + "loss": 0.35028797149658203, + "step": 42300 + }, + { + "epoch": 89.07570977917982, + "grad_norm": 0.5673274397850037, + "learning_rate": 5.475840336134454e-06, + "loss": 0.34918766021728515, + "step": 42400 + }, + { + "epoch": 89.28601472134595, + "grad_norm": 0.5657567977905273, + "learning_rate": 5.370798319327731e-06, + "loss": 0.34565746307373046, + "step": 42500 + }, + { + "epoch": 89.4963196635121, + "grad_norm": 0.6014168858528137, + "learning_rate": 5.265756302521008e-06, + "loss": 0.3450989532470703, + "step": 42600 + }, + { + "epoch": 89.70662460567823, + "grad_norm": 0.5631797909736633, + "learning_rate": 5.160714285714286e-06, + "loss": 0.3477408218383789, + "step": 42700 + }, + { + "epoch": 89.91692954784438, + "grad_norm": 0.624321699142456, + "learning_rate": 5.055672268907563e-06, + "loss": 0.34852649688720705, + "step": 42800 + }, + { + "epoch": 90.12618296529969, + "grad_norm": 0.6004353761672974, + "learning_rate": 4.950630252100841e-06, + "loss": 0.3450387191772461, + "step": 42900 + }, + { + "epoch": 90.33648790746582, + "grad_norm": 0.6030150651931763, + "learning_rate": 4.845588235294117e-06, + "loss": 0.34261096954345704, + "step": 43000 + }, + { + "epoch": 90.54679284963197, + "grad_norm": 0.5574061870574951, + "learning_rate": 4.740546218487396e-06, + "loss": 0.3450190734863281, + "step": 43100 + }, + { + "epoch": 90.7570977917981, + "grad_norm": 0.5677763819694519, + "learning_rate": 4.6355042016806725e-06, + "loss": 0.3442384338378906, + "step": 43200 + }, + { + "epoch": 90.96740273396425, + "grad_norm": 0.6088888645172119, + "learning_rate": 4.53046218487395e-06, + "loss": 0.3451253128051758, + "step": 43300 + }, + { + "epoch": 91.17665615141956, + "grad_norm": 0.5724344849586487, + "learning_rate": 4.425420168067227e-06, + "loss": 0.3408164978027344, + "step": 43400 + }, + { + "epoch": 91.3869610935857, + "grad_norm": 0.6201240420341492, + "learning_rate": 4.320378151260504e-06, + "loss": 0.3420841979980469, + "step": 43500 + }, + { + "epoch": 91.59726603575184, + "grad_norm": 0.6098768711090088, + "learning_rate": 4.215336134453782e-06, + "loss": 0.3413374328613281, + "step": 43600 + }, + { + "epoch": 91.80757097791798, + "grad_norm": 0.6306800842285156, + "learning_rate": 4.110294117647059e-06, + "loss": 0.34394527435302735, + "step": 43700 + }, + { + "epoch": 92.01682439537329, + "grad_norm": 0.559008777141571, + "learning_rate": 4.005252100840336e-06, + "loss": 0.3423053741455078, + "step": 43800 + }, + { + "epoch": 92.22712933753944, + "grad_norm": 0.5939933657646179, + "learning_rate": 3.900210084033614e-06, + "loss": 0.33797637939453123, + "step": 43900 + }, + { + "epoch": 92.43743427970557, + "grad_norm": 0.6135221719741821, + "learning_rate": 3.795168067226891e-06, + "loss": 0.3408375930786133, + "step": 44000 + }, + { + "epoch": 92.64773922187172, + "grad_norm": 0.5870836973190308, + "learning_rate": 3.690126050420168e-06, + "loss": 0.34073463439941404, + "step": 44100 + }, + { + "epoch": 92.85804416403785, + "grad_norm": 0.5811474323272705, + "learning_rate": 3.5850840336134456e-06, + "loss": 0.34040855407714843, + "step": 44200 + }, + { + "epoch": 93.06729758149316, + "grad_norm": 0.5979830026626587, + "learning_rate": 3.4800420168067227e-06, + "loss": 0.3395253753662109, + "step": 44300 + }, + { + "epoch": 93.27760252365931, + "grad_norm": 0.5824161171913147, + "learning_rate": 3.3750000000000003e-06, + "loss": 0.3389311981201172, + "step": 44400 + }, + { + "epoch": 93.48790746582544, + "grad_norm": 0.5694940090179443, + "learning_rate": 3.2699579831932774e-06, + "loss": 0.337044792175293, + "step": 44500 + }, + { + "epoch": 93.69821240799159, + "grad_norm": 0.6112421154975891, + "learning_rate": 3.164915966386555e-06, + "loss": 0.33819969177246095, + "step": 44600 + }, + { + "epoch": 93.90851735015772, + "grad_norm": 0.610955536365509, + "learning_rate": 3.059873949579832e-06, + "loss": 0.33944580078125, + "step": 44700 + }, + { + "epoch": 94.11777076761304, + "grad_norm": 0.6398776769638062, + "learning_rate": 2.9548319327731093e-06, + "loss": 0.33618770599365233, + "step": 44800 + }, + { + "epoch": 94.32807570977918, + "grad_norm": 0.5934144854545593, + "learning_rate": 2.849789915966387e-06, + "loss": 0.3384376525878906, + "step": 44900 + }, + { + "epoch": 94.53838065194532, + "grad_norm": 0.6144473552703857, + "learning_rate": 2.744747899159664e-06, + "loss": 0.3383865737915039, + "step": 45000 + }, + { + "epoch": 94.74868559411146, + "grad_norm": 0.5490454435348511, + "learning_rate": 2.6397058823529415e-06, + "loss": 0.33671878814697265, + "step": 45100 + }, + { + "epoch": 94.9589905362776, + "grad_norm": 0.5695416331291199, + "learning_rate": 2.5346638655462187e-06, + "loss": 0.3379853820800781, + "step": 45200 + }, + { + "epoch": 95.16824395373291, + "grad_norm": 0.5724055767059326, + "learning_rate": 2.429621848739496e-06, + "loss": 0.3338408660888672, + "step": 45300 + }, + { + "epoch": 95.37854889589906, + "grad_norm": 0.594022810459137, + "learning_rate": 2.3245798319327734e-06, + "loss": 0.3349121475219727, + "step": 45400 + }, + { + "epoch": 95.58885383806519, + "grad_norm": 0.5594576597213745, + "learning_rate": 2.2205882352941175e-06, + "loss": 0.33595680236816405, + "step": 45500 + }, + { + "epoch": 95.79915878023134, + "grad_norm": 0.5346081852912903, + "learning_rate": 2.115546218487395e-06, + "loss": 0.33520328521728515, + "step": 45600 + }, + { + "epoch": 96.00841219768665, + "grad_norm": 0.5849393606185913, + "learning_rate": 2.0105042016806722e-06, + "loss": 0.3334170913696289, + "step": 45700 + }, + { + "epoch": 96.21871713985279, + "grad_norm": 0.5918118357658386, + "learning_rate": 1.9054621848739498e-06, + "loss": 0.3329995346069336, + "step": 45800 + }, + { + "epoch": 96.42902208201893, + "grad_norm": 0.6012352705001831, + "learning_rate": 1.800420168067227e-06, + "loss": 0.3329520416259766, + "step": 45900 + }, + { + "epoch": 96.63932702418506, + "grad_norm": 0.5281354784965515, + "learning_rate": 1.6953781512605043e-06, + "loss": 0.3343208694458008, + "step": 46000 + }, + { + "epoch": 96.84963196635121, + "grad_norm": 0.5566437244415283, + "learning_rate": 1.5903361344537816e-06, + "loss": 0.33319324493408203, + "step": 46100 + }, + { + "epoch": 97.05888538380653, + "grad_norm": 0.62099689245224, + "learning_rate": 1.486344537815126e-06, + "loss": 0.33431713104248045, + "step": 46200 + }, + { + "epoch": 97.26919032597266, + "grad_norm": 0.5787718892097473, + "learning_rate": 1.3813025210084034e-06, + "loss": 0.3314530944824219, + "step": 46300 + }, + { + "epoch": 97.4794952681388, + "grad_norm": 0.5509923100471497, + "learning_rate": 1.2762605042016807e-06, + "loss": 0.3316763305664063, + "step": 46400 + }, + { + "epoch": 97.68980021030494, + "grad_norm": 0.5569334030151367, + "learning_rate": 1.171218487394958e-06, + "loss": 0.3315643310546875, + "step": 46500 + }, + { + "epoch": 97.90010515247108, + "grad_norm": 0.5476507544517517, + "learning_rate": 1.0661764705882354e-06, + "loss": 0.33233203887939455, + "step": 46600 + }, + { + "epoch": 98.1093585699264, + "grad_norm": 0.5630120038986206, + "learning_rate": 9.611344537815128e-07, + "loss": 0.33105762481689455, + "step": 46700 + }, + { + "epoch": 98.31966351209253, + "grad_norm": 0.5520943999290466, + "learning_rate": 8.5609243697479e-07, + "loss": 0.3307930374145508, + "step": 46800 + }, + { + "epoch": 98.52996845425868, + "grad_norm": 0.5917891263961792, + "learning_rate": 7.510504201680673e-07, + "loss": 0.3318499755859375, + "step": 46900 + }, + { + "epoch": 98.74027339642481, + "grad_norm": 0.5395123362541199, + "learning_rate": 6.460084033613445e-07, + "loss": 0.330290412902832, + "step": 47000 + }, + { + "epoch": 98.95057833859096, + "grad_norm": 0.5702670216560364, + "learning_rate": 5.409663865546218e-07, + "loss": 0.33196086883544923, + "step": 47100 + }, + { + "epoch": 99.15983175604627, + "grad_norm": 0.5607645511627197, + "learning_rate": 4.359243697478992e-07, + "loss": 0.3293312454223633, + "step": 47200 + }, + { + "epoch": 99.3701366982124, + "grad_norm": 0.6061931848526001, + "learning_rate": 3.308823529411765e-07, + "loss": 0.3300600051879883, + "step": 47300 + }, + { + "epoch": 99.58044164037855, + "grad_norm": 0.5829928517341614, + "learning_rate": 2.2584033613445382e-07, + "loss": 0.330217170715332, + "step": 47400 + }, + { + "epoch": 99.79074658254468, + "grad_norm": 0.5840853452682495, + "learning_rate": 1.2079831932773112e-07, + "loss": 0.33082305908203125, + "step": 47500 + }, + { + "epoch": 100.0, + "grad_norm": 0.8359466791152954, + "learning_rate": 1.5756302521008407e-08, + "loss": 0.3296760940551758, + "step": 47600 + } + ], + "logging_steps": 100, + "max_steps": 47600, + "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": 3.0671364722688e+16, + "train_batch_size": 8, + "trial_name": null, + "trial_params": null +} diff --git a/timecost/n11/realtabformer/rtf-n11-20260501_010320/rtf_checkpoints/checkpoint-47600/training_args.bin b/timecost/n11/realtabformer/rtf-n11-20260501_010320/rtf_checkpoints/checkpoint-47600/training_args.bin new file mode 100644 index 0000000000000000000000000000000000000000..34d68dc0e0fe1c1f12a2e581dd1b166aa7178a9e --- /dev/null +++ b/timecost/n11/realtabformer/rtf-n11-20260501_010320/rtf_checkpoints/checkpoint-47600/training_args.bin @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:9e2cd88337d1d846c6918d2b3b63fa3e5c93f12fefc082497590da854a564607 +size 5201 diff --git a/timecost/n11/realtabformer/rtf-n11-20260501_010320/runtime_result.json b/timecost/n11/realtabformer/rtf-n11-20260501_010320/runtime_result.json new file mode 100644 index 0000000000000000000000000000000000000000..46985f354e255c5656638bbc2c64e2b23682ee81 --- /dev/null +++ b/timecost/n11/realtabformer/rtf-n11-20260501_010320/runtime_result.json @@ -0,0 +1,27 @@ +{ + "dataset_id": "n11", + "model": "realtabformer", + "run_id": "rtf-n11-20260501_010320", + "public_gate_status": "pass", + "adapter_ready_status": "pass", + "train_status": "success", + "generate_status": "success", + "reason_code": null, + "reason_detail": null, + "artifacts": { + "synthetic_csv": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/n11/realtabformer/rtf-n11-20260501_010320/rtf-n11-15215-20260501_015729.csv", + "model_path": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/n11/realtabformer/rtf-n11-20260501_010320/models_100epochs" + }, + "timings": { + "train": { + "started_at": "2026-05-01T01:03:21", + "ended_at": "2026-05-01T01:57:29", + "duration_sec": 3248.534 + }, + "generate": { + "started_at": "2026-05-01T01:57:29", + "ended_at": "2026-05-01T02:00:38", + "duration_sec": 188.779 + } + } +} \ No newline at end of file diff --git a/timecost/n11/realtabformer/rtf-n11-20260501_010320/staged/public/staged_features.json b/timecost/n11/realtabformer/rtf-n11-20260501_010320/staged/public/staged_features.json new file mode 100644 index 0000000000000000000000000000000000000000..bdb9c28b9d52f06368851a08caadc305035fc1b7 --- /dev/null +++ b/timecost/n11/realtabformer/rtf-n11-20260501_010320/staged/public/staged_features.json @@ -0,0 +1,57 @@ +[ + { + "feature_name": "28.7967", + "data_type": "continuous", + "is_target": false + }, + { + "feature_name": "16.0021", + "data_type": "continuous", + "is_target": false + }, + { + "feature_name": "2.6449", + "data_type": "continuous", + "is_target": false + }, + { + "feature_name": "0.3918", + "data_type": "continuous", + "is_target": false + }, + { + "feature_name": "0.1982", + "data_type": "continuous", + "is_target": false + }, + { + "feature_name": "27.7004", + "data_type": "continuous", + "is_target": false + }, + { + "feature_name": "22.011", + "data_type": "continuous", + "is_target": false + }, + { + "feature_name": "-8.2027", + "data_type": "continuous", + "is_target": false + }, + { + "feature_name": "40.092", + "data_type": "continuous", + "is_target": false + }, + { + "feature_name": "81.8828", + "data_type": "continuous", + "is_target": false + }, + { + "feature_name": "g", + "data_type": "categorical", + "is_target": true + } +] \ No newline at end of file diff --git a/timecost/n11/realtabformer/rtf-n11-20260501_010320/staged/public/test.csv b/timecost/n11/realtabformer/rtf-n11-20260501_010320/staged/public/test.csv new file mode 100644 index 0000000000000000000000000000000000000000..59e413eb15b50a2ac49cd95bbe57b0d0018ccf95 --- /dev/null +++ b/timecost/n11/realtabformer/rtf-n11-20260501_010320/staged/public/test.csv @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:bf4e935f84569b849b662718eaa19be605037d46a5f7391f164728d6d9c3bb50 +size 148017 diff --git a/timecost/n11/realtabformer/rtf-n11-20260501_010320/staged/public/train.csv b/timecost/n11/realtabformer/rtf-n11-20260501_010320/staged/public/train.csv new file mode 100644 index 0000000000000000000000000000000000000000..cc5acd9fe00e8a233592b4da9797300adc83744b --- /dev/null +++ b/timecost/n11/realtabformer/rtf-n11-20260501_010320/staged/public/train.csv @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:3ab621ac8239797506ce800c1409422452b8127da93add91dd9e6d63ddeec6f7 +size 1182326 diff --git a/timecost/n11/realtabformer/rtf-n11-20260501_010320/staged/public/val.csv b/timecost/n11/realtabformer/rtf-n11-20260501_010320/staged/public/val.csv new file mode 100644 index 0000000000000000000000000000000000000000..e0a3b6ab9c53a7f8d97dff3290e643431f9ad023 --- /dev/null +++ b/timecost/n11/realtabformer/rtf-n11-20260501_010320/staged/public/val.csv @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:374e44edf25e58ca37eabbef0485c98cecdbdfa9d24da738937f404840bfad44 +size 147784 diff --git a/timecost/n11/realtabformer/rtf-n11-20260501_010320/staged/realtabformer/adapter_report.json b/timecost/n11/realtabformer/rtf-n11-20260501_010320/staged/realtabformer/adapter_report.json new file mode 100644 index 0000000000000000000000000000000000000000..21895e39273abbdc2d27b3f8c56017feefbc8ebb --- /dev/null +++ b/timecost/n11/realtabformer/rtf-n11-20260501_010320/staged/realtabformer/adapter_report.json @@ -0,0 +1,7 @@ +{ + "adapter_ready_status": "pass", + "adapter_fail_reason_code": null, + "adapter_fail_detail": null, + "adapter_transforms_applied": [], + "model_input_manifest": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/n11/realtabformer/rtf-n11-20260501_010320/staged/realtabformer/model_input_manifest.json" +} \ No newline at end of file diff --git a/timecost/n11/realtabformer/rtf-n11-20260501_010320/staged/realtabformer/adapter_transforms_applied.json b/timecost/n11/realtabformer/rtf-n11-20260501_010320/staged/realtabformer/adapter_transforms_applied.json new file mode 100644 index 0000000000000000000000000000000000000000..0637a088a01e8ddab3bf3fa98dbe804cbde1a0dc --- /dev/null +++ b/timecost/n11/realtabformer/rtf-n11-20260501_010320/staged/realtabformer/adapter_transforms_applied.json @@ -0,0 +1 @@ +[] \ No newline at end of file diff --git a/timecost/n11/realtabformer/rtf-n11-20260501_010320/staged/realtabformer/model_input_manifest.json b/timecost/n11/realtabformer/rtf-n11-20260501_010320/staged/realtabformer/model_input_manifest.json new file mode 100644 index 0000000000000000000000000000000000000000..919685b9ddd3579538424ce52ac5f40ebbd75652 --- /dev/null +++ b/timecost/n11/realtabformer/rtf-n11-20260501_010320/staged/realtabformer/model_input_manifest.json @@ -0,0 +1,242 @@ +{ + "dataset_id": "n11", + "model": "realtabformer", + "target_column": "g", + "task_type": "classification", + "column_schema": [ + { + "name": "28.7967", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 14962, + "unique_ratio": 0.983372, + "example_values": [ + "33.9347", + "118.601", + "19.83", + "33.2691", + "13.1404" + ] + } + }, + { + "name": "16.0021", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 14662, + "unique_ratio": 0.963654, + "example_values": [ + "10.8862", + "44.2479", + "7.3303", + "9.1269", + "10.8527" + ] + } + }, + { + "name": "2.6449", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 6336, + "unique_ratio": 0.416431, + "example_values": [ + "2.5328", + "3.5558", + "2.2541", + "2.6728", + "2.1775" + ] + } + }, + { + "name": "0.3918", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 6002, + "unique_ratio": 0.394479, + "example_values": [ + "0.4047", + "0.1769", + "0.7521", + "0.4437", + "0.7708" + ] + } + }, + { + "name": "0.1982", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 4230, + "unique_ratio": 0.278015, + "example_values": [ + "0.2155", + "0.1003", + "0.4095", + "0.2553", + "0.4352" + ] + } + }, + { + "name": "27.7004", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 14996, + "unique_ratio": 0.985606, + "example_values": [ + "-25.0369", + "-95.8266", + "2.8528", + "12.3981", + "14.3006" + ] + } + }, + { + "name": "22.011", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 14984, + "unique_ratio": 0.984818, + "example_values": [ + "-23.1659", + "14.9809", + "-9.7666", + "19.9081", + "-3.6418" + ] + } + }, + { + "name": "-8.2027", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 14795, + "unique_ratio": 0.972396, + "example_values": [ + "3.492", + "29.3812", + "5.0346", + "-5.3204", + "-11.3646" + ] + } + }, + { + "name": "40.092", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 14518, + "unique_ratio": 0.95419, + "example_values": [ + "0.334", + "4.134", + "13.794", + "20.78", + "20.124" + ] + } + }, + { + "name": "81.8828", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 14824, + "unique_ratio": 0.974302, + "example_values": [ + "132.907", + "286.69", + "108.464", + "180.4168", + "222.525" + ] + } + }, + { + "name": "g", + "role": "target", + "semantic_type": "categorical", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 2, + "unique_ratio": 0.000131, + "example_values": [ + "g", + "h" + ] + } + } + ], + "public_manifest": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/n11/realtabformer/rtf-n11-20260501_010320/public_gate/staged_input_manifest.json", + "train_csv": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/n11/realtabformer/rtf-n11-20260501_010320/staged/public/train.csv", + "val_csv": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/n11/realtabformer/rtf-n11-20260501_010320/staged/public/val.csv", + "test_csv": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/n11/realtabformer/rtf-n11-20260501_010320/staged/public/test.csv", + "features_json": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/n11/realtabformer/rtf-n11-20260501_010320/staged/public/staged_features.json", + "public_gate_report": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/n11/realtabformer/rtf-n11-20260501_010320/public_gate/public_gate_report.json" +} \ No newline at end of file diff --git a/timecost/n11/realtabformer/rtf-n11-20260501_010320/train_20260501_010321.log b/timecost/n11/realtabformer/rtf-n11-20260501_010320/train_20260501_010321.log new file mode 100644 index 0000000000000000000000000000000000000000..5d9d16aeedf8ab8c0e8fef2becb416d60f54f64f --- /dev/null +++ b/timecost/n11/realtabformer/rtf-n11-20260501_010320/train_20260501_010321.log @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:6ddfba563c13321e71bd11530877eef18b9dadefd6acf7e4373e9f5f77c7570e +size 1784852 diff --git a/timecost/n11/tabbyflow/tabbyflow-n11-20260501_000210/_tabbyflow_gen.py b/timecost/n11/tabbyflow/tabbyflow-n11-20260501_000210/_tabbyflow_gen.py new file mode 100644 index 0000000000000000000000000000000000000000..f48bfd7c789c3ee98d8f015da8a3b05e337148f0 --- /dev/null +++ b/timecost/n11/tabbyflow/tabbyflow-n11-20260501_000210/_tabbyflow_gen.py @@ -0,0 +1,33 @@ + +import os, shutil, subprocess, sys +root = r"/workspace/ef-vfm" +name = r"pipeline_n11" +src = r"/work/output-Benchmark-trainonly-v1/n11/tabbyflow/tabbyflow-n11-20260501_000210/tabular_bundle/pipeline_n11" +dst_data = os.path.join(root, "data", name) +shutil.rmtree(dst_data, ignore_errors=True) +shutil.copytree(src, dst_data) +dst_syn = os.path.join(root, "synthetic", name) +os.makedirs(dst_syn, exist_ok=True) +for fn in ("real.csv", "test.csv", "val.csv"): + shutil.copy(os.path.join(src, fn), os.path.join(dst_syn, fn)) +os.chdir(root) +os.environ["PYTHONPATH"] = root + os.pathsep + os.environ.get("PYTHONPATH", "") +subprocess.check_call([ + sys.executable, "main.py", + "--dataname", name, "--mode", "test", "--gpu", "0", + "--no_wandb", "--exp_name", r"adapter_efvfm", + "--ckpt_path", r"/workspace/ef-vfm/ef_vfm/ckpt/pipeline_n11/adapter_efvfm/model_500.pt", + "--num_samples_to_generate", str(int(15215)), +]) +base = os.path.join(root, "ef_vfm", "result", name, r"adapter_efvfm") +best = None +best_t = -1.0 +for r, _, files in os.walk(base): + if "samples.csv" in files: + p = os.path.join(r, "samples.csv") + t = os.path.getmtime(p) + if t > best_t: + best_t, best = t, p +if not best: + raise SystemExit("tabbyflow: no samples.csv in " + base) +shutil.copy(best, r"/work/output-Benchmark-trainonly-v1/n11/tabbyflow/tabbyflow-n11-20260501_000210/tabbyflow-n11-15215-20260501_000941.csv") diff --git a/timecost/n11/tabbyflow/tabbyflow-n11-20260501_000210/_tabbyflow_train.py b/timecost/n11/tabbyflow/tabbyflow-n11-20260501_000210/_tabbyflow_train.py new file mode 100644 index 0000000000000000000000000000000000000000..2ec729d06ff321aa6995180adbbf27e2d0b61c1c --- /dev/null +++ b/timecost/n11/tabbyflow/tabbyflow-n11-20260501_000210/_tabbyflow_train.py @@ -0,0 +1,22 @@ + +import os, shutil, subprocess, sys +root = r"/workspace/ef-vfm" +name = r"pipeline_n11" +src = r"/work/output-Benchmark-trainonly-v1/n11/tabbyflow/tabbyflow-n11-20260501_000210/tabular_bundle/pipeline_n11" +os.makedirs(os.path.join(root, "data", name), exist_ok=True) +dst_data = os.path.join(root, "data", name) +dst_syn = os.path.join(root, "synthetic", name) +shutil.rmtree(dst_data, ignore_errors=True) +shutil.copytree(src, dst_data) +os.makedirs(dst_syn, exist_ok=True) +for fn in ("real.csv", "test.csv", "val.csv"): + shutil.copy(os.path.join(src, fn), os.path.join(dst_syn, fn)) +os.chdir(root) +os.environ["PYTHONPATH"] = root + os.pathsep + os.environ.get("PYTHONPATH", "") +os.environ["EFVFM_SMOKE_STEPS"] = "500" +os.environ["EFVFM_ADAPTER_TRAIN"] = "1" +subprocess.check_call([ + sys.executable, "main.py", + "--dataname", name, "--mode", "train", "--gpu", "0", + "--no_wandb", "--exp_name", r"adapter_efvfm", +]) diff --git a/timecost/n11/tabbyflow/tabbyflow-n11-20260501_000210/gen_20260501_000941.log b/timecost/n11/tabbyflow/tabbyflow-n11-20260501_000210/gen_20260501_000941.log new file mode 100644 index 0000000000000000000000000000000000000000..4ebf08cbc0028b02d8d115475614e5020a54e071 --- /dev/null +++ b/timecost/n11/tabbyflow/tabbyflow-n11-20260501_000210/gen_20260501_000941.log @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:1d19cdbb6d0cecc0c344bad4e07c12df30793d8994759d2855bb4ff92b66531d +size 3065 diff --git a/timecost/n11/tabbyflow/tabbyflow-n11-20260501_000210/input_snapshot.json b/timecost/n11/tabbyflow/tabbyflow-n11-20260501_000210/input_snapshot.json new file mode 100644 index 0000000000000000000000000000000000000000..906bd7306dfc9d7d995972f967b50f496ef49e21 --- /dev/null +++ b/timecost/n11/tabbyflow/tabbyflow-n11-20260501_000210/input_snapshot.json @@ -0,0 +1,36 @@ +{ + "dataset_id": "n11", + "model": "tabbyflow", + "inputs": { + "train_csv": { + "path": "/data/jialinzhang/SynthesizePipeline-server/DatasetNew/n11/n11-train.csv", + "exists": true, + "size": 1197106, + "sha256": "f8253c0573a8f028c0b1e17752d214fbad956d0ace350d0dee3947f3dfafbc75" + }, + "val_csv": { + "path": "/data/jialinzhang/SynthesizePipeline-server/DatasetNew/n11/n11-val.csv", + "exists": true, + "size": 149602, + "sha256": "7bde20178eb7de9523d4df719a3b461656f5704e3a03187c8289b2299dc8e458" + }, + "test_csv": { + "path": "/data/jialinzhang/SynthesizePipeline-server/DatasetNew/n11/n11-test.csv", + "exists": true, + "size": 149859, + "sha256": "855b55969de2da1341d428edef6dedfdf0c60f016b9fa08efaf8a883af6a2c53" + }, + "profile_json": { + "path": "/data/jialinzhang/SynthesizePipeline-server/DatasetNew/artifacts/data_core/tabular/n11/n11-dataset_profile.json", + "exists": true, + "size": 5104, + "sha256": "0bd368d22598246defd33bda12c9872165f26e798cc462ec472d193f322fba07" + }, + "contract_json": { + "path": "/data/jialinzhang/SynthesizePipeline-server/DatasetNew/artifacts/data_core/tabular/n11/n11-dataset_contract_v1.json", + "exists": true, + "size": 5874, + "sha256": "ad3f01eafe9fb37754eed9be9bd058390fd3a4f54d8be4ceb4b5326a9901da9d" + } + } +} \ No newline at end of file diff --git a/timecost/n11/tabbyflow/tabbyflow-n11-20260501_000210/models_tabbyflow/trained.pt b/timecost/n11/tabbyflow/tabbyflow-n11-20260501_000210/models_tabbyflow/trained.pt new file mode 100644 index 0000000000000000000000000000000000000000..f063a878c470d9d40f79db79881596e1e497dffd --- /dev/null +++ b/timecost/n11/tabbyflow/tabbyflow-n11-20260501_000210/models_tabbyflow/trained.pt @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:adb734fec12f2251befd371dca69e481b19464aded2a6823105a01b4be6ddbe5 +size 40 diff --git a/timecost/n11/tabbyflow/tabbyflow-n11-20260501_000210/public_gate/normalized_schema_snapshot.json b/timecost/n11/tabbyflow/tabbyflow-n11-20260501_000210/public_gate/normalized_schema_snapshot.json new file mode 100644 index 0000000000000000000000000000000000000000..96904695eb041844b615aa285fda674f1da87108 --- /dev/null +++ b/timecost/n11/tabbyflow/tabbyflow-n11-20260501_000210/public_gate/normalized_schema_snapshot.json @@ -0,0 +1,235 @@ +{ + "dataset_id": "n11", + "target_column": "g", + "task_type": "classification", + "columns": [ + { + "name": "28.7967", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 14962, + "unique_ratio": 0.983372, + "example_values": [ + "33.9347", + "118.601", + "19.83", + "33.2691", + "13.1404" + ] + } + }, + { + "name": "16.0021", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 14662, + "unique_ratio": 0.963654, + "example_values": [ + "10.8862", + "44.2479", + "7.3303", + "9.1269", + "10.8527" + ] + } + }, + { + "name": "2.6449", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 6336, + "unique_ratio": 0.416431, + "example_values": [ + "2.5328", + "3.5558", + "2.2541", + "2.6728", + "2.1775" + ] + } + }, + { + "name": "0.3918", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 6002, + "unique_ratio": 0.394479, + "example_values": [ + "0.4047", + "0.1769", + "0.7521", + "0.4437", + "0.7708" + ] + } + }, + { + "name": "0.1982", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 4230, + "unique_ratio": 0.278015, + "example_values": [ + "0.2155", + "0.1003", + "0.4095", + "0.2553", + "0.4352" + ] + } + }, + { + "name": "27.7004", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 14996, + "unique_ratio": 0.985606, + "example_values": [ + "-25.0369", + "-95.8266", + "2.8528", + "12.3981", + "14.3006" + ] + } + }, + { + "name": "22.011", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 14984, + "unique_ratio": 0.984818, + "example_values": [ + "-23.1659", + "14.9809", + "-9.7666", + "19.9081", + "-3.6418" + ] + } + }, + { + "name": "-8.2027", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 14795, + "unique_ratio": 0.972396, + "example_values": [ + "3.492", + "29.3812", + "5.0346", + "-5.3204", + "-11.3646" + ] + } + }, + { + "name": "40.092", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 14518, + "unique_ratio": 0.95419, + "example_values": [ + "0.334", + "4.134", + "13.794", + "20.78", + "20.124" + ] + } + }, + { + "name": "81.8828", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 14824, + "unique_ratio": 0.974302, + "example_values": [ + "132.907", + "286.69", + "108.464", + "180.4168", + "222.525" + ] + } + }, + { + "name": "g", + "role": "target", + "semantic_type": "categorical", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 2, + "unique_ratio": 0.000131, + "example_values": [ + "g", + "h" + ] + } + } + ] +} \ No newline at end of file diff --git a/timecost/n11/tabbyflow/tabbyflow-n11-20260501_000210/public_gate/public_gate_report.json b/timecost/n11/tabbyflow/tabbyflow-n11-20260501_000210/public_gate/public_gate_report.json new file mode 100644 index 0000000000000000000000000000000000000000..4864c3fc29664a3b44991534165974fed3741dfa --- /dev/null +++ b/timecost/n11/tabbyflow/tabbyflow-n11-20260501_000210/public_gate/public_gate_report.json @@ -0,0 +1,37 @@ +{ + "dataset_id": "n11", + "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": "g", + "task_type": "classification", + "input_splits": { + "train": "/data/jialinzhang/SynthesizePipeline-server/DatasetNew/n11/n11-train.csv", + "val": "/data/jialinzhang/SynthesizePipeline-server/DatasetNew/n11/n11-val.csv", + "test": "/data/jialinzhang/SynthesizePipeline-server/DatasetNew/n11/n11-test.csv" + } +} \ No newline at end of file diff --git a/timecost/n11/tabbyflow/tabbyflow-n11-20260501_000210/public_gate/staged_input_manifest.json b/timecost/n11/tabbyflow/tabbyflow-n11-20260501_000210/public_gate/staged_input_manifest.json new file mode 100644 index 0000000000000000000000000000000000000000..9000137a7dde694c9bd47cdd9e4fb5fe6315db41 --- /dev/null +++ b/timecost/n11/tabbyflow/tabbyflow-n11-20260501_000210/public_gate/staged_input_manifest.json @@ -0,0 +1,240 @@ +{ + "dataset_id": "n11", + "target_column": "g", + "task_type": "classification", + "train_csv": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/n11/tabbyflow/tabbyflow-n11-20260501_000210/staged/public/train.csv", + "val_csv": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/n11/tabbyflow/tabbyflow-n11-20260501_000210/staged/public/val.csv", + "test_csv": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/n11/tabbyflow/tabbyflow-n11-20260501_000210/staged/public/test.csv", + "features_json": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/n11/tabbyflow/tabbyflow-n11-20260501_000210/staged/public/staged_features.json", + "public_gate_report": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/n11/tabbyflow/tabbyflow-n11-20260501_000210/public_gate/public_gate_report.json", + "column_schema": [ + { + "name": "28.7967", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 14962, + "unique_ratio": 0.983372, + "example_values": [ + "33.9347", + "118.601", + "19.83", + "33.2691", + "13.1404" + ] + } + }, + { + "name": "16.0021", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 14662, + "unique_ratio": 0.963654, + "example_values": [ + "10.8862", + "44.2479", + "7.3303", + "9.1269", + "10.8527" + ] + } + }, + { + "name": "2.6449", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 6336, + "unique_ratio": 0.416431, + "example_values": [ + "2.5328", + "3.5558", + "2.2541", + "2.6728", + "2.1775" + ] + } + }, + { + "name": "0.3918", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 6002, + "unique_ratio": 0.394479, + "example_values": [ + "0.4047", + "0.1769", + "0.7521", + "0.4437", + "0.7708" + ] + } + }, + { + "name": "0.1982", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 4230, + "unique_ratio": 0.278015, + "example_values": [ + "0.2155", + "0.1003", + "0.4095", + "0.2553", + "0.4352" + ] + } + }, + { + "name": "27.7004", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 14996, + "unique_ratio": 0.985606, + "example_values": [ + "-25.0369", + "-95.8266", + "2.8528", + "12.3981", + "14.3006" + ] + } + }, + { + "name": "22.011", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 14984, + "unique_ratio": 0.984818, + "example_values": [ + "-23.1659", + "14.9809", + "-9.7666", + "19.9081", + "-3.6418" + ] + } + }, + { + "name": "-8.2027", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 14795, + "unique_ratio": 0.972396, + "example_values": [ + "3.492", + "29.3812", + "5.0346", + "-5.3204", + "-11.3646" + ] + } + }, + { + "name": "40.092", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 14518, + "unique_ratio": 0.95419, + "example_values": [ + "0.334", + "4.134", + "13.794", + "20.78", + "20.124" + ] + } + }, + { + "name": "81.8828", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 14824, + "unique_ratio": 0.974302, + "example_values": [ + "132.907", + "286.69", + "108.464", + "180.4168", + "222.525" + ] + } + }, + { + "name": "g", + "role": "target", + "semantic_type": "categorical", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 2, + "unique_ratio": 0.000131, + "example_values": [ + "g", + "h" + ] + } + } + ] +} \ No newline at end of file diff --git a/timecost/n11/tabbyflow/tabbyflow-n11-20260501_000210/runtime_result.json b/timecost/n11/tabbyflow/tabbyflow-n11-20260501_000210/runtime_result.json new file mode 100644 index 0000000000000000000000000000000000000000..8782d5cf6e9c0b0beb52c7fdd0d13fd44b2d9547 --- /dev/null +++ b/timecost/n11/tabbyflow/tabbyflow-n11-20260501_000210/runtime_result.json @@ -0,0 +1,27 @@ +{ + "dataset_id": "n11", + "model": "tabbyflow", + "run_id": "tabbyflow-n11-20260501_000210", + "public_gate_status": "pass", + "adapter_ready_status": "pass", + "train_status": "success", + "generate_status": "success", + "reason_code": null, + "reason_detail": null, + "artifacts": { + "synthetic_csv": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/n11/tabbyflow/tabbyflow-n11-20260501_000210/tabbyflow-n11-15215-20260501_000941.csv", + "model_path": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/n11/tabbyflow/tabbyflow-n11-20260501_000210/models_tabbyflow/trained.pt" + }, + "timings": { + "train": { + "started_at": "2026-05-01T00:02:10", + "ended_at": "2026-05-01T00:09:41", + "duration_sec": 451.277 + }, + "generate": { + "started_at": "2026-05-01T00:09:41", + "ended_at": "2026-05-01T00:09:53", + "duration_sec": 11.507 + } + } +} \ No newline at end of file diff --git a/timecost/n11/tabbyflow/tabbyflow-n11-20260501_000210/staged/public/staged_features.json b/timecost/n11/tabbyflow/tabbyflow-n11-20260501_000210/staged/public/staged_features.json new file mode 100644 index 0000000000000000000000000000000000000000..bdb9c28b9d52f06368851a08caadc305035fc1b7 --- /dev/null +++ b/timecost/n11/tabbyflow/tabbyflow-n11-20260501_000210/staged/public/staged_features.json @@ -0,0 +1,57 @@ +[ + { + "feature_name": "28.7967", + "data_type": "continuous", + "is_target": false + }, + { + "feature_name": "16.0021", + "data_type": "continuous", + "is_target": false + }, + { + "feature_name": "2.6449", + "data_type": "continuous", + "is_target": false + }, + { + "feature_name": "0.3918", + "data_type": "continuous", + "is_target": false + }, + { + "feature_name": "0.1982", + "data_type": "continuous", + "is_target": false + }, + { + "feature_name": "27.7004", + "data_type": "continuous", + "is_target": false + }, + { + "feature_name": "22.011", + "data_type": "continuous", + "is_target": false + }, + { + "feature_name": "-8.2027", + "data_type": "continuous", + "is_target": false + }, + { + "feature_name": "40.092", + "data_type": "continuous", + "is_target": false + }, + { + "feature_name": "81.8828", + "data_type": "continuous", + "is_target": false + }, + { + "feature_name": "g", + "data_type": "categorical", + "is_target": true + } +] \ No newline at end of file diff --git a/timecost/n11/tabbyflow/tabbyflow-n11-20260501_000210/staged/public/test.csv b/timecost/n11/tabbyflow/tabbyflow-n11-20260501_000210/staged/public/test.csv new file mode 100644 index 0000000000000000000000000000000000000000..59e413eb15b50a2ac49cd95bbe57b0d0018ccf95 --- /dev/null +++ b/timecost/n11/tabbyflow/tabbyflow-n11-20260501_000210/staged/public/test.csv @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:bf4e935f84569b849b662718eaa19be605037d46a5f7391f164728d6d9c3bb50 +size 148017 diff --git a/timecost/n11/tabbyflow/tabbyflow-n11-20260501_000210/staged/public/train.csv b/timecost/n11/tabbyflow/tabbyflow-n11-20260501_000210/staged/public/train.csv new file mode 100644 index 0000000000000000000000000000000000000000..cc5acd9fe00e8a233592b4da9797300adc83744b --- /dev/null +++ b/timecost/n11/tabbyflow/tabbyflow-n11-20260501_000210/staged/public/train.csv @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:3ab621ac8239797506ce800c1409422452b8127da93add91dd9e6d63ddeec6f7 +size 1182326 diff --git a/timecost/n11/tabbyflow/tabbyflow-n11-20260501_000210/staged/public/val.csv b/timecost/n11/tabbyflow/tabbyflow-n11-20260501_000210/staged/public/val.csv new file mode 100644 index 0000000000000000000000000000000000000000..e0a3b6ab9c53a7f8d97dff3290e643431f9ad023 --- /dev/null +++ b/timecost/n11/tabbyflow/tabbyflow-n11-20260501_000210/staged/public/val.csv @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:374e44edf25e58ca37eabbef0485c98cecdbdfa9d24da738937f404840bfad44 +size 147784 diff --git a/timecost/n11/tabbyflow/tabbyflow-n11-20260501_000210/staged/tabbyflow/adapter_report.json b/timecost/n11/tabbyflow/tabbyflow-n11-20260501_000210/staged/tabbyflow/adapter_report.json new file mode 100644 index 0000000000000000000000000000000000000000..92388c92deded676230c13b7d980ce38e326168d --- /dev/null +++ b/timecost/n11/tabbyflow/tabbyflow-n11-20260501_000210/staged/tabbyflow/adapter_report.json @@ -0,0 +1,7 @@ +{ + "adapter_ready_status": "pass", + "adapter_fail_reason_code": null, + "adapter_fail_detail": null, + "adapter_transforms_applied": [], + "model_input_manifest": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/n11/tabbyflow/tabbyflow-n11-20260501_000210/staged/tabbyflow/model_input_manifest.json" +} \ No newline at end of file diff --git a/timecost/n11/tabbyflow/tabbyflow-n11-20260501_000210/staged/tabbyflow/adapter_transforms_applied.json b/timecost/n11/tabbyflow/tabbyflow-n11-20260501_000210/staged/tabbyflow/adapter_transforms_applied.json new file mode 100644 index 0000000000000000000000000000000000000000..0637a088a01e8ddab3bf3fa98dbe804cbde1a0dc --- /dev/null +++ b/timecost/n11/tabbyflow/tabbyflow-n11-20260501_000210/staged/tabbyflow/adapter_transforms_applied.json @@ -0,0 +1 @@ +[] \ No newline at end of file diff --git a/timecost/n11/tabbyflow/tabbyflow-n11-20260501_000210/staged/tabbyflow/model_input_manifest.json b/timecost/n11/tabbyflow/tabbyflow-n11-20260501_000210/staged/tabbyflow/model_input_manifest.json new file mode 100644 index 0000000000000000000000000000000000000000..55aa02704ccc8dd1590b556a1b2d7241d97fac4c --- /dev/null +++ b/timecost/n11/tabbyflow/tabbyflow-n11-20260501_000210/staged/tabbyflow/model_input_manifest.json @@ -0,0 +1,242 @@ +{ + "dataset_id": "n11", + "model": "tabbyflow", + "target_column": "g", + "task_type": "classification", + "column_schema": [ + { + "name": "28.7967", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 14962, + "unique_ratio": 0.983372, + "example_values": [ + "33.9347", + "118.601", + "19.83", + "33.2691", + "13.1404" + ] + } + }, + { + "name": "16.0021", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 14662, + "unique_ratio": 0.963654, + "example_values": [ + "10.8862", + "44.2479", + "7.3303", + "9.1269", + "10.8527" + ] + } + }, + { + "name": "2.6449", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 6336, + "unique_ratio": 0.416431, + "example_values": [ + "2.5328", + "3.5558", + "2.2541", + "2.6728", + "2.1775" + ] + } + }, + { + "name": "0.3918", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 6002, + "unique_ratio": 0.394479, + "example_values": [ + "0.4047", + "0.1769", + "0.7521", + "0.4437", + "0.7708" + ] + } + }, + { + "name": "0.1982", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 4230, + "unique_ratio": 0.278015, + "example_values": [ + "0.2155", + "0.1003", + "0.4095", + "0.2553", + "0.4352" + ] + } + }, + { + "name": "27.7004", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 14996, + "unique_ratio": 0.985606, + "example_values": [ + "-25.0369", + "-95.8266", + "2.8528", + "12.3981", + "14.3006" + ] + } + }, + { + "name": "22.011", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 14984, + "unique_ratio": 0.984818, + "example_values": [ + "-23.1659", + "14.9809", + "-9.7666", + "19.9081", + "-3.6418" + ] + } + }, + { + "name": "-8.2027", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 14795, + "unique_ratio": 0.972396, + "example_values": [ + "3.492", + "29.3812", + "5.0346", + "-5.3204", + "-11.3646" + ] + } + }, + { + "name": "40.092", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 14518, + "unique_ratio": 0.95419, + "example_values": [ + "0.334", + "4.134", + "13.794", + "20.78", + "20.124" + ] + } + }, + { + "name": "81.8828", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 14824, + "unique_ratio": 0.974302, + "example_values": [ + "132.907", + "286.69", + "108.464", + "180.4168", + "222.525" + ] + } + }, + { + "name": "g", + "role": "target", + "semantic_type": "categorical", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 2, + "unique_ratio": 0.000131, + "example_values": [ + "g", + "h" + ] + } + } + ], + "public_manifest": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/n11/tabbyflow/tabbyflow-n11-20260501_000210/public_gate/staged_input_manifest.json", + "train_csv": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/n11/tabbyflow/tabbyflow-n11-20260501_000210/staged/public/train.csv", + "val_csv": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/n11/tabbyflow/tabbyflow-n11-20260501_000210/staged/public/val.csv", + "test_csv": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/n11/tabbyflow/tabbyflow-n11-20260501_000210/staged/public/test.csv", + "features_json": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/n11/tabbyflow/tabbyflow-n11-20260501_000210/staged/public/staged_features.json", + "public_gate_report": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/n11/tabbyflow/tabbyflow-n11-20260501_000210/public_gate/public_gate_report.json" +} \ No newline at end of file diff --git a/timecost/n11/tabbyflow/tabbyflow-n11-20260501_000210/tabbyflow-n11-15215-20260501_000941.csv b/timecost/n11/tabbyflow/tabbyflow-n11-20260501_000210/tabbyflow-n11-15215-20260501_000941.csv new file mode 100644 index 0000000000000000000000000000000000000000..638010a6f32eb6bf2dfc727fe92525f89bab7a6e --- /dev/null +++ b/timecost/n11/tabbyflow/tabbyflow-n11-20260501_000210/tabbyflow-n11-15215-20260501_000941.csv @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:f40c2a160ea22e4435ccea8fcb0d9467fa8f1f6f7c886c41e85274f9bf7edc05 +size 1555282 diff --git a/timecost/n11/tabbyflow/tabbyflow-n11-20260501_000210/tabbyflow_train_meta.json b/timecost/n11/tabbyflow/tabbyflow-n11-20260501_000210/tabbyflow_train_meta.json new file mode 100644 index 0000000000000000000000000000000000000000..9bfb4bd462874e6dea4a481cbf91963d5719863e --- /dev/null +++ b/timecost/n11/tabbyflow/tabbyflow-n11-20260501_000210/tabbyflow_train_meta.json @@ -0,0 +1,5 @@ +{ + "exp_name": "adapter_efvfm", + "dataname": "pipeline_n11", + "steps": 500 +} \ No newline at end of file diff --git a/timecost/n11/tabbyflow/tabbyflow-n11-20260501_000210/tabular_bundle/pipeline_n11/X_cat_test.npy b/timecost/n11/tabbyflow/tabbyflow-n11-20260501_000210/tabular_bundle/pipeline_n11/X_cat_test.npy new file mode 100644 index 0000000000000000000000000000000000000000..b7c97eed0415cd5025177b10e0386f1711d421bf --- /dev/null +++ b/timecost/n11/tabbyflow/tabbyflow-n11-20260501_000210/tabular_bundle/pipeline_n11/X_cat_test.npy @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:cbf8a68ea367fd7a99272b102465a0e5154a3d819c3ce2787e7dad22a291cbc8 +size 128 diff --git a/timecost/n11/tabbyflow/tabbyflow-n11-20260501_000210/tabular_bundle/pipeline_n11/X_cat_train.npy b/timecost/n11/tabbyflow/tabbyflow-n11-20260501_000210/tabular_bundle/pipeline_n11/X_cat_train.npy new file mode 100644 index 0000000000000000000000000000000000000000..b7c97eed0415cd5025177b10e0386f1711d421bf --- /dev/null +++ b/timecost/n11/tabbyflow/tabbyflow-n11-20260501_000210/tabular_bundle/pipeline_n11/X_cat_train.npy @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:cbf8a68ea367fd7a99272b102465a0e5154a3d819c3ce2787e7dad22a291cbc8 +size 128 diff --git a/timecost/n11/tabbyflow/tabbyflow-n11-20260501_000210/tabular_bundle/pipeline_n11/X_cat_val.npy b/timecost/n11/tabbyflow/tabbyflow-n11-20260501_000210/tabular_bundle/pipeline_n11/X_cat_val.npy new file mode 100644 index 0000000000000000000000000000000000000000..b7c97eed0415cd5025177b10e0386f1711d421bf --- /dev/null +++ b/timecost/n11/tabbyflow/tabbyflow-n11-20260501_000210/tabular_bundle/pipeline_n11/X_cat_val.npy @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:cbf8a68ea367fd7a99272b102465a0e5154a3d819c3ce2787e7dad22a291cbc8 +size 128 diff --git a/timecost/n11/tabbyflow/tabbyflow-n11-20260501_000210/tabular_bundle/pipeline_n11/X_num_test.npy b/timecost/n11/tabbyflow/tabbyflow-n11-20260501_000210/tabular_bundle/pipeline_n11/X_num_test.npy new file mode 100644 index 0000000000000000000000000000000000000000..cda65645f7509c4b59dba4a620ca6db54dcdbe84 --- /dev/null +++ b/timecost/n11/tabbyflow/tabbyflow-n11-20260501_000210/tabular_bundle/pipeline_n11/X_num_test.npy @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:013e32900eef106da63d972b40b61296d91c04d1ce8196fd0cb8d54081f58c59 +size 608728 diff --git a/timecost/n11/tabbyflow/tabbyflow-n11-20260501_000210/tabular_bundle/pipeline_n11/X_num_train.npy b/timecost/n11/tabbyflow/tabbyflow-n11-20260501_000210/tabular_bundle/pipeline_n11/X_num_train.npy new file mode 100644 index 0000000000000000000000000000000000000000..cda65645f7509c4b59dba4a620ca6db54dcdbe84 --- /dev/null +++ b/timecost/n11/tabbyflow/tabbyflow-n11-20260501_000210/tabular_bundle/pipeline_n11/X_num_train.npy @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:013e32900eef106da63d972b40b61296d91c04d1ce8196fd0cb8d54081f58c59 +size 608728 diff --git a/timecost/n11/tabbyflow/tabbyflow-n11-20260501_000210/tabular_bundle/pipeline_n11/X_num_val.npy b/timecost/n11/tabbyflow/tabbyflow-n11-20260501_000210/tabular_bundle/pipeline_n11/X_num_val.npy new file mode 100644 index 0000000000000000000000000000000000000000..cda65645f7509c4b59dba4a620ca6db54dcdbe84 --- /dev/null +++ b/timecost/n11/tabbyflow/tabbyflow-n11-20260501_000210/tabular_bundle/pipeline_n11/X_num_val.npy @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:013e32900eef106da63d972b40b61296d91c04d1ce8196fd0cb8d54081f58c59 +size 608728 diff --git a/timecost/n11/tabbyflow/tabbyflow-n11-20260501_000210/tabular_bundle/pipeline_n11/info.json b/timecost/n11/tabbyflow/tabbyflow-n11-20260501_000210/tabular_bundle/pipeline_n11/info.json new file mode 100644 index 0000000000000000000000000000000000000000..8dede00c7573115ecad8ea0c12760f23897a9c6e --- /dev/null +++ b/timecost/n11/tabbyflow/tabbyflow-n11-20260501_000210/tabular_bundle/pipeline_n11/info.json @@ -0,0 +1,130 @@ +{ + "name": "pipeline_n11", + "task_type": "binclass", + "n_num_features": 10, + "n_cat_features": 0, + "train_size": 15215, + "test_num": 15215, + "val_num": 15215, + "train_num": 15215, + "bundle_note": "val/test matrices are train copies (train-only policy; no real held-out rows).", + "num_col_idx": [ + 0, + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9 + ], + "cat_col_idx": [], + "target_col_idx": [ + 10 + ], + "column_names": [ + "28.7967", + "16.0021", + "2.6449", + "0.3918", + "0.1982", + "27.7004", + "22.011", + "-8.2027", + "40.092", + "81.8828", + "g" + ], + "int_col_idx": [], + "int_columns": [], + "int_col_idx_wrt_num": [], + "metadata": { + "columns": { + "0": { + "sdtype": "numerical", + "computer_representation": "Float" + }, + "1": { + "sdtype": "numerical", + "computer_representation": "Float" + }, + "2": { + "sdtype": "numerical", + "computer_representation": "Float" + }, + "3": { + "sdtype": "numerical", + "computer_representation": "Float" + }, + "4": { + "sdtype": "numerical", + "computer_representation": "Float" + }, + "5": { + "sdtype": "numerical", + "computer_representation": "Float" + }, + "6": { + "sdtype": "numerical", + "computer_representation": "Float" + }, + "7": { + "sdtype": "numerical", + "computer_representation": "Float" + }, + "8": { + "sdtype": "numerical", + "computer_representation": "Float" + }, + "9": { + "sdtype": "numerical", + "computer_representation": "Float" + }, + "10": { + "sdtype": "categorical" + } + } + }, + "idx_mapping": { + "0": 0, + "1": 1, + "2": 2, + "3": 3, + "4": 4, + "5": 5, + "6": 6, + "7": 7, + "8": 8, + "9": 9, + "10": 10 + }, + "inverse_idx_mapping": { + "0": 0, + "1": 1, + "2": 2, + "3": 3, + "4": 4, + "5": 5, + "6": 6, + "7": 7, + "8": 8, + "9": 9, + "10": 10 + }, + "idx_name_mapping": { + "0": "28.7967", + "1": "16.0021", + "2": "2.6449", + "3": "0.3918", + "4": "0.1982", + "5": "27.7004", + "6": "22.011", + "7": "-8.2027", + "8": "40.092", + "9": "81.8828", + "10": "g" + }, + "n_classes": 2 +} \ No newline at end of file diff --git a/timecost/n11/tabbyflow/tabbyflow-n11-20260501_000210/tabular_bundle/pipeline_n11/real.csv b/timecost/n11/tabbyflow/tabbyflow-n11-20260501_000210/tabular_bundle/pipeline_n11/real.csv new file mode 100644 index 0000000000000000000000000000000000000000..ad710af40c20fcac02dcc1a7eda34501837630ab --- /dev/null +++ b/timecost/n11/tabbyflow/tabbyflow-n11-20260501_000210/tabular_bundle/pipeline_n11/real.csv @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:a5a26bcf891889ab181b51c78874919e692e1dd11105321414e234d3ba7217a2 +size 1182272 diff --git a/timecost/n11/tabbyflow/tabbyflow-n11-20260501_000210/tabular_bundle/pipeline_n11/test.csv b/timecost/n11/tabbyflow/tabbyflow-n11-20260501_000210/tabular_bundle/pipeline_n11/test.csv new file mode 100644 index 0000000000000000000000000000000000000000..ad710af40c20fcac02dcc1a7eda34501837630ab --- /dev/null +++ b/timecost/n11/tabbyflow/tabbyflow-n11-20260501_000210/tabular_bundle/pipeline_n11/test.csv @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:a5a26bcf891889ab181b51c78874919e692e1dd11105321414e234d3ba7217a2 +size 1182272 diff --git a/timecost/n11/tabbyflow/tabbyflow-n11-20260501_000210/tabular_bundle/pipeline_n11/val.csv b/timecost/n11/tabbyflow/tabbyflow-n11-20260501_000210/tabular_bundle/pipeline_n11/val.csv new file mode 100644 index 0000000000000000000000000000000000000000..ad710af40c20fcac02dcc1a7eda34501837630ab --- /dev/null +++ b/timecost/n11/tabbyflow/tabbyflow-n11-20260501_000210/tabular_bundle/pipeline_n11/val.csv @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:a5a26bcf891889ab181b51c78874919e692e1dd11105321414e234d3ba7217a2 +size 1182272 diff --git a/timecost/n11/tabbyflow/tabbyflow-n11-20260501_000210/tabular_bundle/pipeline_n11/y_test.npy b/timecost/n11/tabbyflow/tabbyflow-n11-20260501_000210/tabular_bundle/pipeline_n11/y_test.npy new file mode 100644 index 0000000000000000000000000000000000000000..b523a92a6e5006ca3c440fc79afd02297be1f7ee --- /dev/null +++ b/timecost/n11/tabbyflow/tabbyflow-n11-20260501_000210/tabular_bundle/pipeline_n11/y_test.npy @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:95905dd042874f4c4e7523f7525b2864e220ef3c6fcdc58877ca3944645899cf +size 121848 diff --git a/timecost/n11/tabbyflow/tabbyflow-n11-20260501_000210/tabular_bundle/pipeline_n11/y_train.npy b/timecost/n11/tabbyflow/tabbyflow-n11-20260501_000210/tabular_bundle/pipeline_n11/y_train.npy new file mode 100644 index 0000000000000000000000000000000000000000..b523a92a6e5006ca3c440fc79afd02297be1f7ee --- /dev/null +++ b/timecost/n11/tabbyflow/tabbyflow-n11-20260501_000210/tabular_bundle/pipeline_n11/y_train.npy @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:95905dd042874f4c4e7523f7525b2864e220ef3c6fcdc58877ca3944645899cf +size 121848 diff --git a/timecost/n11/tabbyflow/tabbyflow-n11-20260501_000210/tabular_bundle/pipeline_n11/y_val.npy b/timecost/n11/tabbyflow/tabbyflow-n11-20260501_000210/tabular_bundle/pipeline_n11/y_val.npy new file mode 100644 index 0000000000000000000000000000000000000000..b523a92a6e5006ca3c440fc79afd02297be1f7ee --- /dev/null +++ b/timecost/n11/tabbyflow/tabbyflow-n11-20260501_000210/tabular_bundle/pipeline_n11/y_val.npy @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:95905dd042874f4c4e7523f7525b2864e220ef3c6fcdc58877ca3944645899cf +size 121848 diff --git a/timecost/n11/tabbyflow/tabbyflow-n11-20260501_000210/train_20260501_000210.log b/timecost/n11/tabbyflow/tabbyflow-n11-20260501_000210/train_20260501_000210.log new file mode 100644 index 0000000000000000000000000000000000000000..8901fec1226d03280d8e89ce90ddaa52b1654abb --- /dev/null +++ b/timecost/n11/tabbyflow/tabbyflow-n11-20260501_000210/train_20260501_000210.log @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:d28858e427269843d994e6532347987c862c60e1cec7b826cc0935c0ba0829ec +size 516222 diff --git a/timecost/n11/tabbyflow/tabbyflow-n11-20260501_035405/_tabbyflow_gen.py b/timecost/n11/tabbyflow/tabbyflow-n11-20260501_035405/_tabbyflow_gen.py new file mode 100644 index 0000000000000000000000000000000000000000..f5848f4a7ba7a90bf5e791cdce018d187ac36cb8 --- /dev/null +++ b/timecost/n11/tabbyflow/tabbyflow-n11-20260501_035405/_tabbyflow_gen.py @@ -0,0 +1,33 @@ + +import os, shutil, subprocess, sys +root = r"/workspace/ef-vfm" +name = r"pipeline_n11" +src = r"/work/output-Benchmark-trainonly-v1/n11/tabbyflow/tabbyflow-n11-20260501_035405/tabular_bundle/pipeline_n11" +dst_data = os.path.join(root, "data", name) +shutil.rmtree(dst_data, ignore_errors=True) +shutil.copytree(src, dst_data) +dst_syn = os.path.join(root, "synthetic", name) +os.makedirs(dst_syn, exist_ok=True) +for fn in ("real.csv", "test.csv", "val.csv"): + shutil.copy(os.path.join(src, fn), os.path.join(dst_syn, fn)) +os.chdir(root) +os.environ["PYTHONPATH"] = root + os.pathsep + os.environ.get("PYTHONPATH", "") +subprocess.check_call([ + sys.executable, "main.py", + "--dataname", name, "--mode", "test", "--gpu", "0", + "--no_wandb", "--exp_name", r"adapter_efvfm", + "--ckpt_path", r"/workspace/ef-vfm/ef_vfm/ckpt/pipeline_n11/adapter_efvfm/model_500.pt", + "--num_samples_to_generate", str(int(15215)), +]) +base = os.path.join(root, "ef_vfm", "result", name, r"adapter_efvfm") +best = None +best_t = -1.0 +for r, _, files in os.walk(base): + if "samples.csv" in files: + p = os.path.join(r, "samples.csv") + t = os.path.getmtime(p) + if t > best_t: + best_t, best = t, p +if not best: + raise SystemExit("tabbyflow: no samples.csv in " + base) +shutil.copy(best, r"/work/output-Benchmark-trainonly-v1/n11/tabbyflow/tabbyflow-n11-20260501_035405/tabbyflow-n11-15215-20260501_040149.csv") diff --git a/timecost/n11/tabbyflow/tabbyflow-n11-20260501_035405/_tabbyflow_train.py b/timecost/n11/tabbyflow/tabbyflow-n11-20260501_035405/_tabbyflow_train.py new file mode 100644 index 0000000000000000000000000000000000000000..59e6143ed556cb26e90deb1410a6796ff0118752 --- /dev/null +++ b/timecost/n11/tabbyflow/tabbyflow-n11-20260501_035405/_tabbyflow_train.py @@ -0,0 +1,22 @@ + +import os, shutil, subprocess, sys +root = r"/workspace/ef-vfm" +name = r"pipeline_n11" +src = r"/work/output-Benchmark-trainonly-v1/n11/tabbyflow/tabbyflow-n11-20260501_035405/tabular_bundle/pipeline_n11" +os.makedirs(os.path.join(root, "data", name), exist_ok=True) +dst_data = os.path.join(root, "data", name) +dst_syn = os.path.join(root, "synthetic", name) +shutil.rmtree(dst_data, ignore_errors=True) +shutil.copytree(src, dst_data) +os.makedirs(dst_syn, exist_ok=True) +for fn in ("real.csv", "test.csv", "val.csv"): + shutil.copy(os.path.join(src, fn), os.path.join(dst_syn, fn)) +os.chdir(root) +os.environ["PYTHONPATH"] = root + os.pathsep + os.environ.get("PYTHONPATH", "") +os.environ["EFVFM_SMOKE_STEPS"] = "500" +os.environ["EFVFM_ADAPTER_TRAIN"] = "1" +subprocess.check_call([ + sys.executable, "main.py", + "--dataname", name, "--mode", "train", "--gpu", "0", + "--no_wandb", "--exp_name", r"adapter_efvfm", +]) diff --git a/timecost/n11/tabbyflow/tabbyflow-n11-20260501_035405/gen_20260501_040149.log b/timecost/n11/tabbyflow/tabbyflow-n11-20260501_035405/gen_20260501_040149.log new file mode 100644 index 0000000000000000000000000000000000000000..ce70067514a4915758933bd7a3e2cefed9ccbb42 --- /dev/null +++ b/timecost/n11/tabbyflow/tabbyflow-n11-20260501_035405/gen_20260501_040149.log @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:1f90efc0e932b63b5d1e11d7ce2d52a66db00a8b39c475c72035c888a978908c +size 3066 diff --git a/timecost/n11/tabbyflow/tabbyflow-n11-20260501_035405/input_snapshot.json b/timecost/n11/tabbyflow/tabbyflow-n11-20260501_035405/input_snapshot.json new file mode 100644 index 0000000000000000000000000000000000000000..906bd7306dfc9d7d995972f967b50f496ef49e21 --- /dev/null +++ b/timecost/n11/tabbyflow/tabbyflow-n11-20260501_035405/input_snapshot.json @@ -0,0 +1,36 @@ +{ + "dataset_id": "n11", + "model": "tabbyflow", + "inputs": { + "train_csv": { + "path": "/data/jialinzhang/SynthesizePipeline-server/DatasetNew/n11/n11-train.csv", + "exists": true, + "size": 1197106, + "sha256": "f8253c0573a8f028c0b1e17752d214fbad956d0ace350d0dee3947f3dfafbc75" + }, + "val_csv": { + "path": "/data/jialinzhang/SynthesizePipeline-server/DatasetNew/n11/n11-val.csv", + "exists": true, + "size": 149602, + "sha256": "7bde20178eb7de9523d4df719a3b461656f5704e3a03187c8289b2299dc8e458" + }, + "test_csv": { + "path": "/data/jialinzhang/SynthesizePipeline-server/DatasetNew/n11/n11-test.csv", + "exists": true, + "size": 149859, + "sha256": "855b55969de2da1341d428edef6dedfdf0c60f016b9fa08efaf8a883af6a2c53" + }, + "profile_json": { + "path": "/data/jialinzhang/SynthesizePipeline-server/DatasetNew/artifacts/data_core/tabular/n11/n11-dataset_profile.json", + "exists": true, + "size": 5104, + "sha256": "0bd368d22598246defd33bda12c9872165f26e798cc462ec472d193f322fba07" + }, + "contract_json": { + "path": "/data/jialinzhang/SynthesizePipeline-server/DatasetNew/artifacts/data_core/tabular/n11/n11-dataset_contract_v1.json", + "exists": true, + "size": 5874, + "sha256": "ad3f01eafe9fb37754eed9be9bd058390fd3a4f54d8be4ceb4b5326a9901da9d" + } + } +} \ No newline at end of file diff --git a/timecost/n11/tabbyflow/tabbyflow-n11-20260501_035405/models_tabbyflow/trained.pt b/timecost/n11/tabbyflow/tabbyflow-n11-20260501_035405/models_tabbyflow/trained.pt new file mode 100644 index 0000000000000000000000000000000000000000..f063a878c470d9d40f79db79881596e1e497dffd --- /dev/null +++ b/timecost/n11/tabbyflow/tabbyflow-n11-20260501_035405/models_tabbyflow/trained.pt @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:adb734fec12f2251befd371dca69e481b19464aded2a6823105a01b4be6ddbe5 +size 40 diff --git a/timecost/n11/tabbyflow/tabbyflow-n11-20260501_035405/public_gate/normalized_schema_snapshot.json b/timecost/n11/tabbyflow/tabbyflow-n11-20260501_035405/public_gate/normalized_schema_snapshot.json new file mode 100644 index 0000000000000000000000000000000000000000..96904695eb041844b615aa285fda674f1da87108 --- /dev/null +++ b/timecost/n11/tabbyflow/tabbyflow-n11-20260501_035405/public_gate/normalized_schema_snapshot.json @@ -0,0 +1,235 @@ +{ + "dataset_id": "n11", + "target_column": "g", + "task_type": "classification", + "columns": [ + { + "name": "28.7967", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 14962, + "unique_ratio": 0.983372, + "example_values": [ + "33.9347", + "118.601", + "19.83", + "33.2691", + "13.1404" + ] + } + }, + { + "name": "16.0021", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 14662, + "unique_ratio": 0.963654, + "example_values": [ + "10.8862", + "44.2479", + "7.3303", + "9.1269", + "10.8527" + ] + } + }, + { + "name": "2.6449", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 6336, + "unique_ratio": 0.416431, + "example_values": [ + "2.5328", + "3.5558", + "2.2541", + "2.6728", + "2.1775" + ] + } + }, + { + "name": "0.3918", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 6002, + "unique_ratio": 0.394479, + "example_values": [ + "0.4047", + "0.1769", + "0.7521", + "0.4437", + "0.7708" + ] + } + }, + { + "name": "0.1982", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 4230, + "unique_ratio": 0.278015, + "example_values": [ + "0.2155", + "0.1003", + "0.4095", + "0.2553", + "0.4352" + ] + } + }, + { + "name": "27.7004", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 14996, + "unique_ratio": 0.985606, + "example_values": [ + "-25.0369", + "-95.8266", + "2.8528", + "12.3981", + "14.3006" + ] + } + }, + { + "name": "22.011", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 14984, + "unique_ratio": 0.984818, + "example_values": [ + "-23.1659", + "14.9809", + "-9.7666", + "19.9081", + "-3.6418" + ] + } + }, + { + "name": "-8.2027", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 14795, + "unique_ratio": 0.972396, + "example_values": [ + "3.492", + "29.3812", + "5.0346", + "-5.3204", + "-11.3646" + ] + } + }, + { + "name": "40.092", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 14518, + "unique_ratio": 0.95419, + "example_values": [ + "0.334", + "4.134", + "13.794", + "20.78", + "20.124" + ] + } + }, + { + "name": "81.8828", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 14824, + "unique_ratio": 0.974302, + "example_values": [ + "132.907", + "286.69", + "108.464", + "180.4168", + "222.525" + ] + } + }, + { + "name": "g", + "role": "target", + "semantic_type": "categorical", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 2, + "unique_ratio": 0.000131, + "example_values": [ + "g", + "h" + ] + } + } + ] +} \ No newline at end of file diff --git a/timecost/n11/tabbyflow/tabbyflow-n11-20260501_035405/public_gate/public_gate_report.json b/timecost/n11/tabbyflow/tabbyflow-n11-20260501_035405/public_gate/public_gate_report.json new file mode 100644 index 0000000000000000000000000000000000000000..4864c3fc29664a3b44991534165974fed3741dfa --- /dev/null +++ b/timecost/n11/tabbyflow/tabbyflow-n11-20260501_035405/public_gate/public_gate_report.json @@ -0,0 +1,37 @@ +{ + "dataset_id": "n11", + "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": "g", + "task_type": "classification", + "input_splits": { + "train": "/data/jialinzhang/SynthesizePipeline-server/DatasetNew/n11/n11-train.csv", + "val": "/data/jialinzhang/SynthesizePipeline-server/DatasetNew/n11/n11-val.csv", + "test": "/data/jialinzhang/SynthesizePipeline-server/DatasetNew/n11/n11-test.csv" + } +} \ No newline at end of file diff --git a/timecost/n11/tabbyflow/tabbyflow-n11-20260501_035405/public_gate/staged_input_manifest.json b/timecost/n11/tabbyflow/tabbyflow-n11-20260501_035405/public_gate/staged_input_manifest.json new file mode 100644 index 0000000000000000000000000000000000000000..36c9e2dc78eacdf099faaa402a9289d440f8cb95 --- /dev/null +++ b/timecost/n11/tabbyflow/tabbyflow-n11-20260501_035405/public_gate/staged_input_manifest.json @@ -0,0 +1,240 @@ +{ + "dataset_id": "n11", + "target_column": "g", + "task_type": "classification", + "train_csv": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/n11/tabbyflow/tabbyflow-n11-20260501_035405/staged/public/train.csv", + "val_csv": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/n11/tabbyflow/tabbyflow-n11-20260501_035405/staged/public/val.csv", + "test_csv": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/n11/tabbyflow/tabbyflow-n11-20260501_035405/staged/public/test.csv", + "features_json": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/n11/tabbyflow/tabbyflow-n11-20260501_035405/staged/public/staged_features.json", + "public_gate_report": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/n11/tabbyflow/tabbyflow-n11-20260501_035405/public_gate/public_gate_report.json", + "column_schema": [ + { + "name": "28.7967", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 14962, + "unique_ratio": 0.983372, + "example_values": [ + "33.9347", + "118.601", + "19.83", + "33.2691", + "13.1404" + ] + } + }, + { + "name": "16.0021", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 14662, + "unique_ratio": 0.963654, + "example_values": [ + "10.8862", + "44.2479", + "7.3303", + "9.1269", + "10.8527" + ] + } + }, + { + "name": "2.6449", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 6336, + "unique_ratio": 0.416431, + "example_values": [ + "2.5328", + "3.5558", + "2.2541", + "2.6728", + "2.1775" + ] + } + }, + { + "name": "0.3918", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 6002, + "unique_ratio": 0.394479, + "example_values": [ + "0.4047", + "0.1769", + "0.7521", + "0.4437", + "0.7708" + ] + } + }, + { + "name": "0.1982", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 4230, + "unique_ratio": 0.278015, + "example_values": [ + "0.2155", + "0.1003", + "0.4095", + "0.2553", + "0.4352" + ] + } + }, + { + "name": "27.7004", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 14996, + "unique_ratio": 0.985606, + "example_values": [ + "-25.0369", + "-95.8266", + "2.8528", + "12.3981", + "14.3006" + ] + } + }, + { + "name": "22.011", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 14984, + "unique_ratio": 0.984818, + "example_values": [ + "-23.1659", + "14.9809", + "-9.7666", + "19.9081", + "-3.6418" + ] + } + }, + { + "name": "-8.2027", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 14795, + "unique_ratio": 0.972396, + "example_values": [ + "3.492", + "29.3812", + "5.0346", + "-5.3204", + "-11.3646" + ] + } + }, + { + "name": "40.092", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 14518, + "unique_ratio": 0.95419, + "example_values": [ + "0.334", + "4.134", + "13.794", + "20.78", + "20.124" + ] + } + }, + { + "name": "81.8828", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 14824, + "unique_ratio": 0.974302, + "example_values": [ + "132.907", + "286.69", + "108.464", + "180.4168", + "222.525" + ] + } + }, + { + "name": "g", + "role": "target", + "semantic_type": "categorical", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 2, + "unique_ratio": 0.000131, + "example_values": [ + "g", + "h" + ] + } + } + ] +} \ No newline at end of file diff --git a/timecost/n11/tabbyflow/tabbyflow-n11-20260501_035405/runtime_result.json b/timecost/n11/tabbyflow/tabbyflow-n11-20260501_035405/runtime_result.json new file mode 100644 index 0000000000000000000000000000000000000000..4fdf3614642ae66562c0a56d3b45ba811bdbd233 --- /dev/null +++ b/timecost/n11/tabbyflow/tabbyflow-n11-20260501_035405/runtime_result.json @@ -0,0 +1,27 @@ +{ + "dataset_id": "n11", + "model": "tabbyflow", + "run_id": "tabbyflow-n11-20260501_035405", + "public_gate_status": "pass", + "adapter_ready_status": "pass", + "train_status": "success", + "generate_status": "success", + "reason_code": null, + "reason_detail": null, + "artifacts": { + "synthetic_csv": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/n11/tabbyflow/tabbyflow-n11-20260501_035405/tabbyflow-n11-15215-20260501_040149.csv", + "model_path": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/n11/tabbyflow/tabbyflow-n11-20260501_035405/models_tabbyflow/trained.pt" + }, + "timings": { + "train": { + "started_at": "2026-05-01T03:54:05", + "ended_at": "2026-05-01T04:01:49", + "duration_sec": 463.772 + }, + "generate": { + "started_at": "2026-05-01T04:01:49", + "ended_at": "2026-05-01T04:02:00", + "duration_sec": 11.045 + } + } +} \ No newline at end of file diff --git a/timecost/n11/tabbyflow/tabbyflow-n11-20260501_035405/staged/public/staged_features.json b/timecost/n11/tabbyflow/tabbyflow-n11-20260501_035405/staged/public/staged_features.json new file mode 100644 index 0000000000000000000000000000000000000000..bdb9c28b9d52f06368851a08caadc305035fc1b7 --- /dev/null +++ b/timecost/n11/tabbyflow/tabbyflow-n11-20260501_035405/staged/public/staged_features.json @@ -0,0 +1,57 @@ +[ + { + "feature_name": "28.7967", + "data_type": "continuous", + "is_target": false + }, + { + "feature_name": "16.0021", + "data_type": "continuous", + "is_target": false + }, + { + "feature_name": "2.6449", + "data_type": "continuous", + "is_target": false + }, + { + "feature_name": "0.3918", + "data_type": "continuous", + "is_target": false + }, + { + "feature_name": "0.1982", + "data_type": "continuous", + "is_target": false + }, + { + "feature_name": "27.7004", + "data_type": "continuous", + "is_target": false + }, + { + "feature_name": "22.011", + "data_type": "continuous", + "is_target": false + }, + { + "feature_name": "-8.2027", + "data_type": "continuous", + "is_target": false + }, + { + "feature_name": "40.092", + "data_type": "continuous", + "is_target": false + }, + { + "feature_name": "81.8828", + "data_type": "continuous", + "is_target": false + }, + { + "feature_name": "g", + "data_type": "categorical", + "is_target": true + } +] \ No newline at end of file diff --git a/timecost/n11/tabbyflow/tabbyflow-n11-20260501_035405/staged/public/test.csv b/timecost/n11/tabbyflow/tabbyflow-n11-20260501_035405/staged/public/test.csv new file mode 100644 index 0000000000000000000000000000000000000000..59e413eb15b50a2ac49cd95bbe57b0d0018ccf95 --- /dev/null +++ b/timecost/n11/tabbyflow/tabbyflow-n11-20260501_035405/staged/public/test.csv @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:bf4e935f84569b849b662718eaa19be605037d46a5f7391f164728d6d9c3bb50 +size 148017 diff --git a/timecost/n11/tabbyflow/tabbyflow-n11-20260501_035405/staged/public/train.csv b/timecost/n11/tabbyflow/tabbyflow-n11-20260501_035405/staged/public/train.csv new file mode 100644 index 0000000000000000000000000000000000000000..cc5acd9fe00e8a233592b4da9797300adc83744b --- /dev/null +++ b/timecost/n11/tabbyflow/tabbyflow-n11-20260501_035405/staged/public/train.csv @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:3ab621ac8239797506ce800c1409422452b8127da93add91dd9e6d63ddeec6f7 +size 1182326 diff --git a/timecost/n11/tabbyflow/tabbyflow-n11-20260501_035405/staged/public/val.csv b/timecost/n11/tabbyflow/tabbyflow-n11-20260501_035405/staged/public/val.csv new file mode 100644 index 0000000000000000000000000000000000000000..e0a3b6ab9c53a7f8d97dff3290e643431f9ad023 --- /dev/null +++ b/timecost/n11/tabbyflow/tabbyflow-n11-20260501_035405/staged/public/val.csv @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:374e44edf25e58ca37eabbef0485c98cecdbdfa9d24da738937f404840bfad44 +size 147784 diff --git a/timecost/n11/tabbyflow/tabbyflow-n11-20260501_035405/staged/tabbyflow/adapter_report.json b/timecost/n11/tabbyflow/tabbyflow-n11-20260501_035405/staged/tabbyflow/adapter_report.json new file mode 100644 index 0000000000000000000000000000000000000000..83165d7ed33a369ee70b2152abea7210f00f9466 --- /dev/null +++ b/timecost/n11/tabbyflow/tabbyflow-n11-20260501_035405/staged/tabbyflow/adapter_report.json @@ -0,0 +1,7 @@ +{ + "adapter_ready_status": "pass", + "adapter_fail_reason_code": null, + "adapter_fail_detail": null, + "adapter_transforms_applied": [], + "model_input_manifest": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/n11/tabbyflow/tabbyflow-n11-20260501_035405/staged/tabbyflow/model_input_manifest.json" +} \ No newline at end of file diff --git a/timecost/n11/tabbyflow/tabbyflow-n11-20260501_035405/staged/tabbyflow/adapter_transforms_applied.json b/timecost/n11/tabbyflow/tabbyflow-n11-20260501_035405/staged/tabbyflow/adapter_transforms_applied.json new file mode 100644 index 0000000000000000000000000000000000000000..0637a088a01e8ddab3bf3fa98dbe804cbde1a0dc --- /dev/null +++ b/timecost/n11/tabbyflow/tabbyflow-n11-20260501_035405/staged/tabbyflow/adapter_transforms_applied.json @@ -0,0 +1 @@ +[] \ No newline at end of file diff --git a/timecost/n11/tabbyflow/tabbyflow-n11-20260501_035405/staged/tabbyflow/model_input_manifest.json b/timecost/n11/tabbyflow/tabbyflow-n11-20260501_035405/staged/tabbyflow/model_input_manifest.json new file mode 100644 index 0000000000000000000000000000000000000000..80bf4f451b47c74f008f7b1018166bd974bb4568 --- /dev/null +++ b/timecost/n11/tabbyflow/tabbyflow-n11-20260501_035405/staged/tabbyflow/model_input_manifest.json @@ -0,0 +1,242 @@ +{ + "dataset_id": "n11", + "model": "tabbyflow", + "target_column": "g", + "task_type": "classification", + "column_schema": [ + { + "name": "28.7967", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 14962, + "unique_ratio": 0.983372, + "example_values": [ + "33.9347", + "118.601", + "19.83", + "33.2691", + "13.1404" + ] + } + }, + { + "name": "16.0021", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 14662, + "unique_ratio": 0.963654, + "example_values": [ + "10.8862", + "44.2479", + "7.3303", + "9.1269", + "10.8527" + ] + } + }, + { + "name": "2.6449", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 6336, + "unique_ratio": 0.416431, + "example_values": [ + "2.5328", + "3.5558", + "2.2541", + "2.6728", + "2.1775" + ] + } + }, + { + "name": "0.3918", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 6002, + "unique_ratio": 0.394479, + "example_values": [ + "0.4047", + "0.1769", + "0.7521", + "0.4437", + "0.7708" + ] + } + }, + { + "name": "0.1982", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 4230, + "unique_ratio": 0.278015, + "example_values": [ + "0.2155", + "0.1003", + "0.4095", + "0.2553", + "0.4352" + ] + } + }, + { + "name": "27.7004", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 14996, + "unique_ratio": 0.985606, + "example_values": [ + "-25.0369", + "-95.8266", + "2.8528", + "12.3981", + "14.3006" + ] + } + }, + { + "name": "22.011", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 14984, + "unique_ratio": 0.984818, + "example_values": [ + "-23.1659", + "14.9809", + "-9.7666", + "19.9081", + "-3.6418" + ] + } + }, + { + "name": "-8.2027", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 14795, + "unique_ratio": 0.972396, + "example_values": [ + "3.492", + "29.3812", + "5.0346", + "-5.3204", + "-11.3646" + ] + } + }, + { + "name": "40.092", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 14518, + "unique_ratio": 0.95419, + "example_values": [ + "0.334", + "4.134", + "13.794", + "20.78", + "20.124" + ] + } + }, + { + "name": "81.8828", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 14824, + "unique_ratio": 0.974302, + "example_values": [ + "132.907", + "286.69", + "108.464", + "180.4168", + "222.525" + ] + } + }, + { + "name": "g", + "role": "target", + "semantic_type": "categorical", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 2, + "unique_ratio": 0.000131, + "example_values": [ + "g", + "h" + ] + } + } + ], + "public_manifest": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/n11/tabbyflow/tabbyflow-n11-20260501_035405/public_gate/staged_input_manifest.json", + "train_csv": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/n11/tabbyflow/tabbyflow-n11-20260501_035405/staged/public/train.csv", + "val_csv": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/n11/tabbyflow/tabbyflow-n11-20260501_035405/staged/public/val.csv", + "test_csv": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/n11/tabbyflow/tabbyflow-n11-20260501_035405/staged/public/test.csv", + "features_json": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/n11/tabbyflow/tabbyflow-n11-20260501_035405/staged/public/staged_features.json", + "public_gate_report": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/n11/tabbyflow/tabbyflow-n11-20260501_035405/public_gate/public_gate_report.json" +} \ No newline at end of file diff --git a/timecost/n11/tabbyflow/tabbyflow-n11-20260501_035405/tabbyflow-n11-15215-20260501_040149.csv b/timecost/n11/tabbyflow/tabbyflow-n11-20260501_035405/tabbyflow-n11-15215-20260501_040149.csv new file mode 100644 index 0000000000000000000000000000000000000000..59e46f42322f243c1baf6833ed53df882a85bef4 --- /dev/null +++ b/timecost/n11/tabbyflow/tabbyflow-n11-20260501_035405/tabbyflow-n11-15215-20260501_040149.csv @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:f5156f822b2f9ecd1f425c50d2a2628f0855e7320cfd076a82e85c9085eb83bd +size 1556389 diff --git a/timecost/n11/tabbyflow/tabbyflow-n11-20260501_035405/tabbyflow_train_meta.json b/timecost/n11/tabbyflow/tabbyflow-n11-20260501_035405/tabbyflow_train_meta.json new file mode 100644 index 0000000000000000000000000000000000000000..9bfb4bd462874e6dea4a481cbf91963d5719863e --- /dev/null +++ b/timecost/n11/tabbyflow/tabbyflow-n11-20260501_035405/tabbyflow_train_meta.json @@ -0,0 +1,5 @@ +{ + "exp_name": "adapter_efvfm", + "dataname": "pipeline_n11", + "steps": 500 +} \ No newline at end of file diff --git a/timecost/n11/tabbyflow/tabbyflow-n11-20260501_035405/tabular_bundle/pipeline_n11/X_cat_test.npy b/timecost/n11/tabbyflow/tabbyflow-n11-20260501_035405/tabular_bundle/pipeline_n11/X_cat_test.npy new file mode 100644 index 0000000000000000000000000000000000000000..b7c97eed0415cd5025177b10e0386f1711d421bf --- /dev/null +++ b/timecost/n11/tabbyflow/tabbyflow-n11-20260501_035405/tabular_bundle/pipeline_n11/X_cat_test.npy @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:cbf8a68ea367fd7a99272b102465a0e5154a3d819c3ce2787e7dad22a291cbc8 +size 128 diff --git a/timecost/n11/tabbyflow/tabbyflow-n11-20260501_035405/tabular_bundle/pipeline_n11/X_cat_train.npy b/timecost/n11/tabbyflow/tabbyflow-n11-20260501_035405/tabular_bundle/pipeline_n11/X_cat_train.npy new file mode 100644 index 0000000000000000000000000000000000000000..b7c97eed0415cd5025177b10e0386f1711d421bf --- /dev/null +++ b/timecost/n11/tabbyflow/tabbyflow-n11-20260501_035405/tabular_bundle/pipeline_n11/X_cat_train.npy @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:cbf8a68ea367fd7a99272b102465a0e5154a3d819c3ce2787e7dad22a291cbc8 +size 128 diff --git a/timecost/n11/tabbyflow/tabbyflow-n11-20260501_035405/tabular_bundle/pipeline_n11/X_cat_val.npy b/timecost/n11/tabbyflow/tabbyflow-n11-20260501_035405/tabular_bundle/pipeline_n11/X_cat_val.npy new file mode 100644 index 0000000000000000000000000000000000000000..b7c97eed0415cd5025177b10e0386f1711d421bf --- /dev/null +++ b/timecost/n11/tabbyflow/tabbyflow-n11-20260501_035405/tabular_bundle/pipeline_n11/X_cat_val.npy @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:cbf8a68ea367fd7a99272b102465a0e5154a3d819c3ce2787e7dad22a291cbc8 +size 128 diff --git a/timecost/n11/tabbyflow/tabbyflow-n11-20260501_035405/tabular_bundle/pipeline_n11/X_num_test.npy b/timecost/n11/tabbyflow/tabbyflow-n11-20260501_035405/tabular_bundle/pipeline_n11/X_num_test.npy new file mode 100644 index 0000000000000000000000000000000000000000..cda65645f7509c4b59dba4a620ca6db54dcdbe84 --- /dev/null +++ b/timecost/n11/tabbyflow/tabbyflow-n11-20260501_035405/tabular_bundle/pipeline_n11/X_num_test.npy @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:013e32900eef106da63d972b40b61296d91c04d1ce8196fd0cb8d54081f58c59 +size 608728 diff --git a/timecost/n11/tabbyflow/tabbyflow-n11-20260501_035405/tabular_bundle/pipeline_n11/X_num_train.npy b/timecost/n11/tabbyflow/tabbyflow-n11-20260501_035405/tabular_bundle/pipeline_n11/X_num_train.npy new file mode 100644 index 0000000000000000000000000000000000000000..cda65645f7509c4b59dba4a620ca6db54dcdbe84 --- /dev/null +++ b/timecost/n11/tabbyflow/tabbyflow-n11-20260501_035405/tabular_bundle/pipeline_n11/X_num_train.npy @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:013e32900eef106da63d972b40b61296d91c04d1ce8196fd0cb8d54081f58c59 +size 608728 diff --git a/timecost/n11/tabbyflow/tabbyflow-n11-20260501_035405/tabular_bundle/pipeline_n11/X_num_val.npy b/timecost/n11/tabbyflow/tabbyflow-n11-20260501_035405/tabular_bundle/pipeline_n11/X_num_val.npy new file mode 100644 index 0000000000000000000000000000000000000000..cda65645f7509c4b59dba4a620ca6db54dcdbe84 --- /dev/null +++ b/timecost/n11/tabbyflow/tabbyflow-n11-20260501_035405/tabular_bundle/pipeline_n11/X_num_val.npy @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:013e32900eef106da63d972b40b61296d91c04d1ce8196fd0cb8d54081f58c59 +size 608728 diff --git a/timecost/n11/tabbyflow/tabbyflow-n11-20260501_035405/tabular_bundle/pipeline_n11/info.json b/timecost/n11/tabbyflow/tabbyflow-n11-20260501_035405/tabular_bundle/pipeline_n11/info.json new file mode 100644 index 0000000000000000000000000000000000000000..8dede00c7573115ecad8ea0c12760f23897a9c6e --- /dev/null +++ b/timecost/n11/tabbyflow/tabbyflow-n11-20260501_035405/tabular_bundle/pipeline_n11/info.json @@ -0,0 +1,130 @@ +{ + "name": "pipeline_n11", + "task_type": "binclass", + "n_num_features": 10, + "n_cat_features": 0, + "train_size": 15215, + "test_num": 15215, + "val_num": 15215, + "train_num": 15215, + "bundle_note": "val/test matrices are train copies (train-only policy; no real held-out rows).", + "num_col_idx": [ + 0, + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9 + ], + "cat_col_idx": [], + "target_col_idx": [ + 10 + ], + "column_names": [ + "28.7967", + "16.0021", + "2.6449", + "0.3918", + "0.1982", + "27.7004", + "22.011", + "-8.2027", + "40.092", + "81.8828", + "g" + ], + "int_col_idx": [], + "int_columns": [], + "int_col_idx_wrt_num": [], + "metadata": { + "columns": { + "0": { + "sdtype": "numerical", + "computer_representation": "Float" + }, + "1": { + "sdtype": "numerical", + "computer_representation": "Float" + }, + "2": { + "sdtype": "numerical", + "computer_representation": "Float" + }, + "3": { + "sdtype": "numerical", + "computer_representation": "Float" + }, + "4": { + "sdtype": "numerical", + "computer_representation": "Float" + }, + "5": { + "sdtype": "numerical", + "computer_representation": "Float" + }, + "6": { + "sdtype": "numerical", + "computer_representation": "Float" + }, + "7": { + "sdtype": "numerical", + "computer_representation": "Float" + }, + "8": { + "sdtype": "numerical", + "computer_representation": "Float" + }, + "9": { + "sdtype": "numerical", + "computer_representation": "Float" + }, + "10": { + "sdtype": "categorical" + } + } + }, + "idx_mapping": { + "0": 0, + "1": 1, + "2": 2, + "3": 3, + "4": 4, + "5": 5, + "6": 6, + "7": 7, + "8": 8, + "9": 9, + "10": 10 + }, + "inverse_idx_mapping": { + "0": 0, + "1": 1, + "2": 2, + "3": 3, + "4": 4, + "5": 5, + "6": 6, + "7": 7, + "8": 8, + "9": 9, + "10": 10 + }, + "idx_name_mapping": { + "0": "28.7967", + "1": "16.0021", + "2": "2.6449", + "3": "0.3918", + "4": "0.1982", + "5": "27.7004", + "6": "22.011", + "7": "-8.2027", + "8": "40.092", + "9": "81.8828", + "10": "g" + }, + "n_classes": 2 +} \ No newline at end of file diff --git a/timecost/n11/tabbyflow/tabbyflow-n11-20260501_035405/tabular_bundle/pipeline_n11/real.csv b/timecost/n11/tabbyflow/tabbyflow-n11-20260501_035405/tabular_bundle/pipeline_n11/real.csv new file mode 100644 index 0000000000000000000000000000000000000000..ad710af40c20fcac02dcc1a7eda34501837630ab --- /dev/null +++ b/timecost/n11/tabbyflow/tabbyflow-n11-20260501_035405/tabular_bundle/pipeline_n11/real.csv @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:a5a26bcf891889ab181b51c78874919e692e1dd11105321414e234d3ba7217a2 +size 1182272 diff --git a/timecost/n11/tabbyflow/tabbyflow-n11-20260501_035405/tabular_bundle/pipeline_n11/test.csv b/timecost/n11/tabbyflow/tabbyflow-n11-20260501_035405/tabular_bundle/pipeline_n11/test.csv new file mode 100644 index 0000000000000000000000000000000000000000..ad710af40c20fcac02dcc1a7eda34501837630ab --- /dev/null +++ b/timecost/n11/tabbyflow/tabbyflow-n11-20260501_035405/tabular_bundle/pipeline_n11/test.csv @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:a5a26bcf891889ab181b51c78874919e692e1dd11105321414e234d3ba7217a2 +size 1182272 diff --git a/timecost/n11/tabbyflow/tabbyflow-n11-20260501_035405/tabular_bundle/pipeline_n11/val.csv b/timecost/n11/tabbyflow/tabbyflow-n11-20260501_035405/tabular_bundle/pipeline_n11/val.csv new file mode 100644 index 0000000000000000000000000000000000000000..ad710af40c20fcac02dcc1a7eda34501837630ab --- /dev/null +++ b/timecost/n11/tabbyflow/tabbyflow-n11-20260501_035405/tabular_bundle/pipeline_n11/val.csv @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:a5a26bcf891889ab181b51c78874919e692e1dd11105321414e234d3ba7217a2 +size 1182272 diff --git a/timecost/n11/tabbyflow/tabbyflow-n11-20260501_035405/tabular_bundle/pipeline_n11/y_test.npy b/timecost/n11/tabbyflow/tabbyflow-n11-20260501_035405/tabular_bundle/pipeline_n11/y_test.npy new file mode 100644 index 0000000000000000000000000000000000000000..b523a92a6e5006ca3c440fc79afd02297be1f7ee --- /dev/null +++ b/timecost/n11/tabbyflow/tabbyflow-n11-20260501_035405/tabular_bundle/pipeline_n11/y_test.npy @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:95905dd042874f4c4e7523f7525b2864e220ef3c6fcdc58877ca3944645899cf +size 121848 diff --git a/timecost/n11/tabbyflow/tabbyflow-n11-20260501_035405/tabular_bundle/pipeline_n11/y_train.npy b/timecost/n11/tabbyflow/tabbyflow-n11-20260501_035405/tabular_bundle/pipeline_n11/y_train.npy new file mode 100644 index 0000000000000000000000000000000000000000..b523a92a6e5006ca3c440fc79afd02297be1f7ee --- /dev/null +++ b/timecost/n11/tabbyflow/tabbyflow-n11-20260501_035405/tabular_bundle/pipeline_n11/y_train.npy @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:95905dd042874f4c4e7523f7525b2864e220ef3c6fcdc58877ca3944645899cf +size 121848 diff --git a/timecost/n11/tabbyflow/tabbyflow-n11-20260501_035405/tabular_bundle/pipeline_n11/y_val.npy b/timecost/n11/tabbyflow/tabbyflow-n11-20260501_035405/tabular_bundle/pipeline_n11/y_val.npy new file mode 100644 index 0000000000000000000000000000000000000000..b523a92a6e5006ca3c440fc79afd02297be1f7ee --- /dev/null +++ b/timecost/n11/tabbyflow/tabbyflow-n11-20260501_035405/tabular_bundle/pipeline_n11/y_val.npy @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:95905dd042874f4c4e7523f7525b2864e220ef3c6fcdc58877ca3944645899cf +size 121848 diff --git a/timecost/n11/tabbyflow/tabbyflow-n11-20260501_035405/train_20260501_035405.log b/timecost/n11/tabbyflow/tabbyflow-n11-20260501_035405/train_20260501_035405.log new file mode 100644 index 0000000000000000000000000000000000000000..96c27e48de2d51769399925c5a6e17de7a1d5e7f --- /dev/null +++ b/timecost/n11/tabbyflow/tabbyflow-n11-20260501_035405/train_20260501_035405.log @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:909303fe46899c17626d1d87ee607a0b01886541743bf51c10b679044237ed92 +size 516560 diff --git a/timecost/n11/tabddpm/tabddpm-n11-20260430_231115/_tabddpm_sample_r0.py b/timecost/n11/tabddpm/tabddpm-n11-20260430_231115/_tabddpm_sample_r0.py new file mode 100644 index 0000000000000000000000000000000000000000..49e0b2bc51320fcd11a4aaf9d17f09ca7a97c17d --- /dev/null +++ b/timecost/n11/tabddpm/tabddpm-n11-20260430_231115/_tabddpm_sample_r0.py @@ -0,0 +1,66 @@ +import os, sys, subprocess, json +import numpy as np +import pandas as pd + +tabddpm_root = "/workspace/tabddpm/code" +assert os.path.isdir(tabddpm_root), f"TabDDPM source not mounted: {tabddpm_root}" +env = os.environ.copy() +env["PYTHONPATH"] = tabddpm_root + (os.pathsep + env.get("PYTHONPATH", "")) + +# Reuse the compat wrapper (patches collections.Sequence for skorch) +wrapper = os.path.join(tabddpm_root, "_compat_run.py") +if not os.path.exists(wrapper): + with open(wrapper, "w") as f: + f.write( + "import collections, collections.abc\n" + "for _a in ('Sequence','MutableSequence','MutableMapping','Mapping'," + "'MutableSet','Set','Callable','Iterable','Iterator'):\n" + " if not hasattr(collections, _a): setattr(collections, _a, getattr(collections.abc, _a, None))\n" + "import sys, runpy\n" + "sys.argv = sys.argv[1:]\n" + "runpy.run_path(sys.argv[0], run_name='__main__')\n" + ) + +print(f"[TabDDPM] Sampling 15215 rows") +ret = subprocess.run( + [sys.executable, wrapper, "scripts/pipeline.py", + "--config", "/work/output-Benchmark-trainonly-v1/n11/tabddpm/tabddpm-n11-20260430_231115/config_sample_20260430_231138_r0.toml", + "--sample"], + cwd=tabddpm_root, + env=env +) +if ret.returncode != 0: + sys.exit(ret.returncode) + +# 将 .npy 输出转为 CSV(npy 在 TabDDPM 的 parent_dir,即 npy_dir) +info_path = "/work/output-Benchmark-trainonly-v1/n11/tabddpm/tabddpm-n11-20260430_231115/data/info.json" +with open(info_path) as f: + info = json.load(f) + +output_dir = "/work/output-Benchmark-trainonly-v1/n11/tabddpm/tabddpm-n11-20260430_231115/output" +col_names = info.get("column_names", []) + +parts = [] +x_num_path = os.path.join(output_dir, "X_num_train.npy") +x_cat_path = os.path.join(output_dir, "X_cat_train.npy") +y_path = os.path.join(output_dir, "y_train.npy") + +if os.path.exists(x_num_path): + parts.append(np.load(x_num_path, allow_pickle=True)) +if os.path.exists(x_cat_path): + parts.append(np.load(x_cat_path, allow_pickle=True).astype(float)) +if os.path.exists(y_path): + y = np.load(y_path, allow_pickle=True) + parts.append(y.reshape(-1, 1) if y.ndim == 1 else y) + +if parts: + combined = np.concatenate(parts, axis=1) + if col_names and len(col_names) == combined.shape[1]: + df = pd.DataFrame(combined, columns=col_names) + else: + df = pd.DataFrame(combined) + df.to_csv("/work/output-Benchmark-trainonly-v1/n11/tabddpm/tabddpm-n11-20260430_231115/tabddpm-n11-15215-20260430_231138.csv", index=False) + print(f"[TabDDPM] Saved {len(df)} rows -> /work/output-Benchmark-trainonly-v1/n11/tabddpm/tabddpm-n11-20260430_231115/tabddpm-n11-15215-20260430_231138.csv") +else: + print("[TabDDPM] WARNING: No output .npy files found") + sys.exit(1) diff --git a/timecost/n11/tabddpm/tabddpm-n11-20260430_231115/_tabddpm_train.py b/timecost/n11/tabddpm/tabddpm-n11-20260430_231115/_tabddpm_train.py new file mode 100644 index 0000000000000000000000000000000000000000..2e720ea747bf44eb62aa7b7e41ec9aa33b9928b4 --- /dev/null +++ b/timecost/n11/tabddpm/tabddpm-n11-20260430_231115/_tabddpm_train.py @@ -0,0 +1,32 @@ +import os, sys, subprocess + +tabddpm_root = "/workspace/tabddpm/code" +assert os.path.isdir(tabddpm_root), f"TabDDPM source not mounted: {tabddpm_root}" +env = os.environ.copy() +env["PYTHONPATH"] = tabddpm_root + (os.pathsep + env.get("PYTHONPATH", "")) + +# Write a wrapper that patches collections.Sequence (removed in Python 3.10+) +# before running pipeline.py - needed because skorch uses old API +wrapper = os.path.join(tabddpm_root, "_compat_run.py") +with open(wrapper, "w") as f: + f.write( + "import collections, collections.abc\n" + "for _a in ('Sequence','MutableSequence','MutableMapping','Mapping'," + "'MutableSet','Set','Callable','Iterable','Iterator'):\n" + " if not hasattr(collections, _a): setattr(collections, _a, getattr(collections.abc, _a, None))\n" + "import sys, runpy\n" + "sys.argv = sys.argv[1:]\n" + "runpy.run_path(sys.argv[0], run_name='__main__')\n" + ) + +print(f"[TabDDPM] Training, config=/work/output-Benchmark-trainonly-v1/n11/tabddpm/tabddpm-n11-20260430_231115/config.toml") +ret = subprocess.run( + [sys.executable, wrapper, "scripts/pipeline.py", + "--config", "/work/output-Benchmark-trainonly-v1/n11/tabddpm/tabddpm-n11-20260430_231115/config.toml", + "--train"], + cwd=tabddpm_root, + env=env +) +if ret.returncode != 0: + sys.exit(ret.returncode) +print("[TabDDPM] Training complete") diff --git a/timecost/n11/tabddpm/tabddpm-n11-20260430_231115/config.toml b/timecost/n11/tabddpm/tabddpm-n11-20260430_231115/config.toml new file mode 100644 index 0000000000000000000000000000000000000000..145e18de046bd826ecdad48743b6b4a8f061e064 --- /dev/null +++ b/timecost/n11/tabddpm/tabddpm-n11-20260430_231115/config.toml @@ -0,0 +1,39 @@ +seed = 0 +parent_dir = "/work/output-Benchmark-trainonly-v1/n11/tabddpm/tabddpm-n11-20260430_231115/output" +real_data_path = "/work/output-Benchmark-trainonly-v1/n11/tabddpm/tabddpm-n11-20260430_231115/data" +model_type = "mlp" +num_numerical_features = 10 +device = "cuda:0" + +[model_params] +d_in = 10 +num_classes = 2 +is_y_cond = true + +[model_params.rtdl_params] +d_layers = [256, 256] +dropout = 0.0 + +[diffusion_params] +num_timesteps = 1000 +gaussian_loss_type = "mse" + +[train.main] +steps = 5000 +lr = 0.001 +weight_decay = 0.0 +batch_size = 256 + +[train.T] +seed = 0 +normalization = "quantile" +num_nan_policy = "__none__" +cat_nan_policy = "__none__" +cat_min_frequency = "__none__" +cat_encoding = "__none__" +y_policy = "default" + +[sample] +num_samples = 1000 +batch_size = 1000 +seed = 0 diff --git a/timecost/n11/tabddpm/tabddpm-n11-20260430_231115/config_sample_20260430_231138_r0.toml b/timecost/n11/tabddpm/tabddpm-n11-20260430_231115/config_sample_20260430_231138_r0.toml new file mode 100644 index 0000000000000000000000000000000000000000..3cdcd718779794ec2e38c96e5559b1f9e2fecf57 --- /dev/null +++ b/timecost/n11/tabddpm/tabddpm-n11-20260430_231115/config_sample_20260430_231138_r0.toml @@ -0,0 +1,39 @@ +seed = 0 +parent_dir = "/work/output-Benchmark-trainonly-v1/n11/tabddpm/tabddpm-n11-20260430_231115/output" +real_data_path = "/work/output-Benchmark-trainonly-v1/n11/tabddpm/tabddpm-n11-20260430_231115/data" +model_type = "mlp" +num_numerical_features = 10 +device = "cuda:0" + +[model_params] +d_in = 10 +num_classes = 2 +is_y_cond = true + +[model_params.rtdl_params] +d_layers = [256, 256] +dropout = 0.0 + +[diffusion_params] +num_timesteps = 1000 +gaussian_loss_type = "mse" + +[train.main] +steps = 5000 +lr = 0.001 +weight_decay = 0.0 +batch_size = 256 + +[train.T] +seed = 0 +normalization = "quantile" +num_nan_policy = "__none__" +cat_nan_policy = "__none__" +cat_min_frequency = "__none__" +cat_encoding = "__none__" +y_policy = "default" + +[sample] +num_samples = 15215 +batch_size = 1000 +seed = 0 diff --git a/timecost/n11/tabddpm/tabddpm-n11-20260430_231115/data/X_num_train.npy b/timecost/n11/tabddpm/tabddpm-n11-20260430_231115/data/X_num_train.npy new file mode 100644 index 0000000000000000000000000000000000000000..cda65645f7509c4b59dba4a620ca6db54dcdbe84 --- /dev/null +++ b/timecost/n11/tabddpm/tabddpm-n11-20260430_231115/data/X_num_train.npy @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:013e32900eef106da63d972b40b61296d91c04d1ce8196fd0cb8d54081f58c59 +size 608728 diff --git a/timecost/n11/tabddpm/tabddpm-n11-20260430_231115/data/info.json b/timecost/n11/tabddpm/tabddpm-n11-20260430_231115/data/info.json new file mode 100644 index 0000000000000000000000000000000000000000..ad93acde945d46916d99f9a52fb19bb740a3d107 --- /dev/null +++ b/timecost/n11/tabddpm/tabddpm-n11-20260430_231115/data/info.json @@ -0,0 +1,37 @@ +{ + "name": "benchmark_dataset", + "task_type": "multiclass", + "n_num_features": 10, + "n_cat_features": 0, + "train_size": 15215, + "num_col_idx": [ + 0, + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9 + ], + "cat_col_idx": [], + "target_col_idx": [ + 10 + ], + "column_names": [ + "28.7967", + "16.0021", + "2.6449", + "0.3918", + "0.1982", + "27.7004", + "22.011", + "-8.2027", + "40.092", + "81.8828", + "g" + ], + "num_classes": 2 +} \ No newline at end of file diff --git a/timecost/n11/tabddpm/tabddpm-n11-20260430_231115/data/y_train.npy b/timecost/n11/tabddpm/tabddpm-n11-20260430_231115/data/y_train.npy new file mode 100644 index 0000000000000000000000000000000000000000..b523a92a6e5006ca3c440fc79afd02297be1f7ee --- /dev/null +++ b/timecost/n11/tabddpm/tabddpm-n11-20260430_231115/data/y_train.npy @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:95905dd042874f4c4e7523f7525b2864e220ef3c6fcdc58877ca3944645899cf +size 121848 diff --git a/timecost/n11/tabddpm/tabddpm-n11-20260430_231115/gen_20260430_231138_r0.log b/timecost/n11/tabddpm/tabddpm-n11-20260430_231115/gen_20260430_231138_r0.log new file mode 100644 index 0000000000000000000000000000000000000000..735f1dc30761e28f9bdb7fbb43ea6c1c114904ea --- /dev/null +++ b/timecost/n11/tabddpm/tabddpm-n11-20260430_231115/gen_20260430_231138_r0.log @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:ac734d5fb094f8da0a79ec5066b8caee750f5c1f62cef7cf069c719e7cc4faae +size 336510 diff --git a/timecost/n11/tabddpm/tabddpm-n11-20260430_231115/input_snapshot.json b/timecost/n11/tabddpm/tabddpm-n11-20260430_231115/input_snapshot.json new file mode 100644 index 0000000000000000000000000000000000000000..65d59e7f3d19d532144c83019c2092bcc4f60fe3 --- /dev/null +++ b/timecost/n11/tabddpm/tabddpm-n11-20260430_231115/input_snapshot.json @@ -0,0 +1,36 @@ +{ + "dataset_id": "n11", + "model": "tabddpm", + "inputs": { + "train_csv": { + "path": "/data/jialinzhang/SynthesizePipeline-server/DatasetNew/n11/n11-train.csv", + "exists": true, + "size": 1197106, + "sha256": "f8253c0573a8f028c0b1e17752d214fbad956d0ace350d0dee3947f3dfafbc75" + }, + "val_csv": { + "path": "/data/jialinzhang/SynthesizePipeline-server/DatasetNew/n11/n11-val.csv", + "exists": true, + "size": 149602, + "sha256": "7bde20178eb7de9523d4df719a3b461656f5704e3a03187c8289b2299dc8e458" + }, + "test_csv": { + "path": "/data/jialinzhang/SynthesizePipeline-server/DatasetNew/n11/n11-test.csv", + "exists": true, + "size": 149859, + "sha256": "855b55969de2da1341d428edef6dedfdf0c60f016b9fa08efaf8a883af6a2c53" + }, + "profile_json": { + "path": "/data/jialinzhang/SynthesizePipeline-server/DatasetNew/artifacts/data_core/tabular/n11/n11-dataset_profile.json", + "exists": true, + "size": 5104, + "sha256": "0bd368d22598246defd33bda12c9872165f26e798cc462ec472d193f322fba07" + }, + "contract_json": { + "path": "/data/jialinzhang/SynthesizePipeline-server/DatasetNew/artifacts/data_core/tabular/n11/n11-dataset_contract_v1.json", + "exists": true, + "size": 5874, + "sha256": "ad3f01eafe9fb37754eed9be9bd058390fd3a4f54d8be4ceb4b5326a9901da9d" + } + } +} \ No newline at end of file diff --git a/timecost/n11/tabddpm/tabddpm-n11-20260430_231115/output/X_num_train.npy b/timecost/n11/tabddpm/tabddpm-n11-20260430_231115/output/X_num_train.npy new file mode 100644 index 0000000000000000000000000000000000000000..0e80a8226824056255e67dc1a7232a1babcaf8e1 --- /dev/null +++ b/timecost/n11/tabddpm/tabddpm-n11-20260430_231115/output/X_num_train.npy @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:dc9d99f8a7597b0f90cc445ae4b95046995bf8d02942dd3cb5eba68a91de86b9 +size 1217328 diff --git a/timecost/n11/tabddpm/tabddpm-n11-20260430_231115/output/X_num_unnorm.npy b/timecost/n11/tabddpm/tabddpm-n11-20260430_231115/output/X_num_unnorm.npy new file mode 100644 index 0000000000000000000000000000000000000000..5da5fb1baa439e80412ac9a902ee5af569ae6be2 --- /dev/null +++ b/timecost/n11/tabddpm/tabddpm-n11-20260430_231115/output/X_num_unnorm.npy @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:5f7afc6a344481c6233b9cad5a6c46c9e9ddc2ce22376e42bf385a06e41ca1c5 +size 1217328 diff --git a/timecost/n11/tabddpm/tabddpm-n11-20260430_231115/output/config.toml b/timecost/n11/tabddpm/tabddpm-n11-20260430_231115/output/config.toml new file mode 100644 index 0000000000000000000000000000000000000000..3cdcd718779794ec2e38c96e5559b1f9e2fecf57 --- /dev/null +++ b/timecost/n11/tabddpm/tabddpm-n11-20260430_231115/output/config.toml @@ -0,0 +1,39 @@ +seed = 0 +parent_dir = "/work/output-Benchmark-trainonly-v1/n11/tabddpm/tabddpm-n11-20260430_231115/output" +real_data_path = "/work/output-Benchmark-trainonly-v1/n11/tabddpm/tabddpm-n11-20260430_231115/data" +model_type = "mlp" +num_numerical_features = 10 +device = "cuda:0" + +[model_params] +d_in = 10 +num_classes = 2 +is_y_cond = true + +[model_params.rtdl_params] +d_layers = [256, 256] +dropout = 0.0 + +[diffusion_params] +num_timesteps = 1000 +gaussian_loss_type = "mse" + +[train.main] +steps = 5000 +lr = 0.001 +weight_decay = 0.0 +batch_size = 256 + +[train.T] +seed = 0 +normalization = "quantile" +num_nan_policy = "__none__" +cat_nan_policy = "__none__" +cat_min_frequency = "__none__" +cat_encoding = "__none__" +y_policy = "default" + +[sample] +num_samples = 15215 +batch_size = 1000 +seed = 0 diff --git a/timecost/n11/tabddpm/tabddpm-n11-20260430_231115/output/info.json b/timecost/n11/tabddpm/tabddpm-n11-20260430_231115/output/info.json new file mode 100644 index 0000000000000000000000000000000000000000..ad93acde945d46916d99f9a52fb19bb740a3d107 --- /dev/null +++ b/timecost/n11/tabddpm/tabddpm-n11-20260430_231115/output/info.json @@ -0,0 +1,37 @@ +{ + "name": "benchmark_dataset", + "task_type": "multiclass", + "n_num_features": 10, + "n_cat_features": 0, + "train_size": 15215, + "num_col_idx": [ + 0, + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9 + ], + "cat_col_idx": [], + "target_col_idx": [ + 10 + ], + "column_names": [ + "28.7967", + "16.0021", + "2.6449", + "0.3918", + "0.1982", + "27.7004", + "22.011", + "-8.2027", + "40.092", + "81.8828", + "g" + ], + "num_classes": 2 +} \ No newline at end of file diff --git a/timecost/n11/tabddpm/tabddpm-n11-20260430_231115/output/loss.csv b/timecost/n11/tabddpm/tabddpm-n11-20260430_231115/output/loss.csv new file mode 100644 index 0000000000000000000000000000000000000000..049c5bb41cdcc81e34cfa4e122246679d0550b7e --- /dev/null +++ b/timecost/n11/tabddpm/tabddpm-n11-20260430_231115/output/loss.csv @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:df3f693735c1f039e78a69b3aa3735a075f8058a4f86f2b32d78f1d3431e60c6 +size 1253 diff --git a/timecost/n11/tabddpm/tabddpm-n11-20260430_231115/output/model.pt b/timecost/n11/tabddpm/tabddpm-n11-20260430_231115/output/model.pt new file mode 100644 index 0000000000000000000000000000000000000000..29c1808c23aa852f7727a4a61e87f69e5caed3a4 --- /dev/null +++ b/timecost/n11/tabddpm/tabddpm-n11-20260430_231115/output/model.pt @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:7ca8519c503ca6a0ea7523cef58a071e180be3b8e9610c40e744b619d6533830 +size 548950 diff --git a/timecost/n11/tabddpm/tabddpm-n11-20260430_231115/output/model_ema.pt b/timecost/n11/tabddpm/tabddpm-n11-20260430_231115/output/model_ema.pt new file mode 100644 index 0000000000000000000000000000000000000000..87fd3b674837580f5f0d32c738c8cf6c5b5a9419 --- /dev/null +++ b/timecost/n11/tabddpm/tabddpm-n11-20260430_231115/output/model_ema.pt @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:6cb073850cab04d5bc7f2f2592c76116c7c950c91ed080dcbac5b837f1fa9160 +size 549794 diff --git a/timecost/n11/tabddpm/tabddpm-n11-20260430_231115/output/y_train.npy b/timecost/n11/tabddpm/tabddpm-n11-20260430_231115/output/y_train.npy new file mode 100644 index 0000000000000000000000000000000000000000..d7b9324544139dcb95f828f6f985065fbdeb8a43 --- /dev/null +++ b/timecost/n11/tabddpm/tabddpm-n11-20260430_231115/output/y_train.npy @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:079233b853f121e6b236b83123bd9cd4d4fcd07bed563a3d1fcbaf8ff91f7f2e +size 121848 diff --git a/timecost/n11/tabddpm/tabddpm-n11-20260430_231115/public_gate/normalized_schema_snapshot.json b/timecost/n11/tabddpm/tabddpm-n11-20260430_231115/public_gate/normalized_schema_snapshot.json new file mode 100644 index 0000000000000000000000000000000000000000..96904695eb041844b615aa285fda674f1da87108 --- /dev/null +++ b/timecost/n11/tabddpm/tabddpm-n11-20260430_231115/public_gate/normalized_schema_snapshot.json @@ -0,0 +1,235 @@ +{ + "dataset_id": "n11", + "target_column": "g", + "task_type": "classification", + "columns": [ + { + "name": "28.7967", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 14962, + "unique_ratio": 0.983372, + "example_values": [ + "33.9347", + "118.601", + "19.83", + "33.2691", + "13.1404" + ] + } + }, + { + "name": "16.0021", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 14662, + "unique_ratio": 0.963654, + "example_values": [ + "10.8862", + "44.2479", + "7.3303", + "9.1269", + "10.8527" + ] + } + }, + { + "name": "2.6449", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 6336, + "unique_ratio": 0.416431, + "example_values": [ + "2.5328", + "3.5558", + "2.2541", + "2.6728", + "2.1775" + ] + } + }, + { + "name": "0.3918", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 6002, + "unique_ratio": 0.394479, + "example_values": [ + "0.4047", + "0.1769", + "0.7521", + "0.4437", + "0.7708" + ] + } + }, + { + "name": "0.1982", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 4230, + "unique_ratio": 0.278015, + "example_values": [ + "0.2155", + "0.1003", + "0.4095", + "0.2553", + "0.4352" + ] + } + }, + { + "name": "27.7004", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 14996, + "unique_ratio": 0.985606, + "example_values": [ + "-25.0369", + "-95.8266", + "2.8528", + "12.3981", + "14.3006" + ] + } + }, + { + "name": "22.011", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 14984, + "unique_ratio": 0.984818, + "example_values": [ + "-23.1659", + "14.9809", + "-9.7666", + "19.9081", + "-3.6418" + ] + } + }, + { + "name": "-8.2027", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 14795, + "unique_ratio": 0.972396, + "example_values": [ + "3.492", + "29.3812", + "5.0346", + "-5.3204", + "-11.3646" + ] + } + }, + { + "name": "40.092", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 14518, + "unique_ratio": 0.95419, + "example_values": [ + "0.334", + "4.134", + "13.794", + "20.78", + "20.124" + ] + } + }, + { + "name": "81.8828", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 14824, + "unique_ratio": 0.974302, + "example_values": [ + "132.907", + "286.69", + "108.464", + "180.4168", + "222.525" + ] + } + }, + { + "name": "g", + "role": "target", + "semantic_type": "categorical", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 2, + "unique_ratio": 0.000131, + "example_values": [ + "g", + "h" + ] + } + } + ] +} \ No newline at end of file diff --git a/timecost/n11/tabddpm/tabddpm-n11-20260430_231115/public_gate/public_gate_report.json b/timecost/n11/tabddpm/tabddpm-n11-20260430_231115/public_gate/public_gate_report.json new file mode 100644 index 0000000000000000000000000000000000000000..4864c3fc29664a3b44991534165974fed3741dfa --- /dev/null +++ b/timecost/n11/tabddpm/tabddpm-n11-20260430_231115/public_gate/public_gate_report.json @@ -0,0 +1,37 @@ +{ + "dataset_id": "n11", + "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": "g", + "task_type": "classification", + "input_splits": { + "train": "/data/jialinzhang/SynthesizePipeline-server/DatasetNew/n11/n11-train.csv", + "val": "/data/jialinzhang/SynthesizePipeline-server/DatasetNew/n11/n11-val.csv", + "test": "/data/jialinzhang/SynthesizePipeline-server/DatasetNew/n11/n11-test.csv" + } +} \ No newline at end of file diff --git a/timecost/n11/tabddpm/tabddpm-n11-20260430_231115/public_gate/staged_input_manifest.json b/timecost/n11/tabddpm/tabddpm-n11-20260430_231115/public_gate/staged_input_manifest.json new file mode 100644 index 0000000000000000000000000000000000000000..03cbc99d87da95ffaee3d747779825e38f9eb389 --- /dev/null +++ b/timecost/n11/tabddpm/tabddpm-n11-20260430_231115/public_gate/staged_input_manifest.json @@ -0,0 +1,240 @@ +{ + "dataset_id": "n11", + "target_column": "g", + "task_type": "classification", + "train_csv": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/n11/tabddpm/tabddpm-n11-20260430_231115/staged/public/train.csv", + "val_csv": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/n11/tabddpm/tabddpm-n11-20260430_231115/staged/public/val.csv", + "test_csv": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/n11/tabddpm/tabddpm-n11-20260430_231115/staged/public/test.csv", + "features_json": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/n11/tabddpm/tabddpm-n11-20260430_231115/staged/public/staged_features.json", + "public_gate_report": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/n11/tabddpm/tabddpm-n11-20260430_231115/public_gate/public_gate_report.json", + "column_schema": [ + { + "name": "28.7967", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 14962, + "unique_ratio": 0.983372, + "example_values": [ + "33.9347", + "118.601", + "19.83", + "33.2691", + "13.1404" + ] + } + }, + { + "name": "16.0021", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 14662, + "unique_ratio": 0.963654, + "example_values": [ + "10.8862", + "44.2479", + "7.3303", + "9.1269", + "10.8527" + ] + } + }, + { + "name": "2.6449", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 6336, + "unique_ratio": 0.416431, + "example_values": [ + "2.5328", + "3.5558", + "2.2541", + "2.6728", + "2.1775" + ] + } + }, + { + "name": "0.3918", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 6002, + "unique_ratio": 0.394479, + "example_values": [ + "0.4047", + "0.1769", + "0.7521", + "0.4437", + "0.7708" + ] + } + }, + { + "name": "0.1982", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 4230, + "unique_ratio": 0.278015, + "example_values": [ + "0.2155", + "0.1003", + "0.4095", + "0.2553", + "0.4352" + ] + } + }, + { + "name": "27.7004", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 14996, + "unique_ratio": 0.985606, + "example_values": [ + "-25.0369", + "-95.8266", + "2.8528", + "12.3981", + "14.3006" + ] + } + }, + { + "name": "22.011", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 14984, + "unique_ratio": 0.984818, + "example_values": [ + "-23.1659", + "14.9809", + "-9.7666", + "19.9081", + "-3.6418" + ] + } + }, + { + "name": "-8.2027", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 14795, + "unique_ratio": 0.972396, + "example_values": [ + "3.492", + "29.3812", + "5.0346", + "-5.3204", + "-11.3646" + ] + } + }, + { + "name": "40.092", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 14518, + "unique_ratio": 0.95419, + "example_values": [ + "0.334", + "4.134", + "13.794", + "20.78", + "20.124" + ] + } + }, + { + "name": "81.8828", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 14824, + "unique_ratio": 0.974302, + "example_values": [ + "132.907", + "286.69", + "108.464", + "180.4168", + "222.525" + ] + } + }, + { + "name": "g", + "role": "target", + "semantic_type": "categorical", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 2, + "unique_ratio": 0.000131, + "example_values": [ + "g", + "h" + ] + } + } + ] +} \ No newline at end of file diff --git a/timecost/n11/tabddpm/tabddpm-n11-20260430_231115/runtime_result.json b/timecost/n11/tabddpm/tabddpm-n11-20260430_231115/runtime_result.json new file mode 100644 index 0000000000000000000000000000000000000000..9488baea12f1370322f2929fb637e8e82fcde600 --- /dev/null +++ b/timecost/n11/tabddpm/tabddpm-n11-20260430_231115/runtime_result.json @@ -0,0 +1,27 @@ +{ + "dataset_id": "n11", + "model": "tabddpm", + "run_id": "tabddpm-n11-20260430_231115", + "public_gate_status": "pass", + "adapter_ready_status": "pass", + "train_status": "success", + "generate_status": "success", + "reason_code": null, + "reason_detail": null, + "artifacts": { + "synthetic_csv": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/n11/tabddpm/tabddpm-n11-20260430_231115/tabddpm-n11-15215-20260430_231138.csv", + "model_path": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/n11/tabddpm/tabddpm-n11-20260430_231115" + }, + "timings": { + "train": { + "started_at": "2026-04-30T23:11:15", + "ended_at": "2026-04-30T23:11:38", + "duration_sec": 22.99 + }, + "generate": { + "started_at": "2026-04-30T23:11:38", + "ended_at": "2026-04-30T23:12:00", + "duration_sec": 21.73 + } + } +} \ No newline at end of file diff --git a/timecost/n11/tabddpm/tabddpm-n11-20260430_231115/staged/public/staged_features.json b/timecost/n11/tabddpm/tabddpm-n11-20260430_231115/staged/public/staged_features.json new file mode 100644 index 0000000000000000000000000000000000000000..bdb9c28b9d52f06368851a08caadc305035fc1b7 --- /dev/null +++ b/timecost/n11/tabddpm/tabddpm-n11-20260430_231115/staged/public/staged_features.json @@ -0,0 +1,57 @@ +[ + { + "feature_name": "28.7967", + "data_type": "continuous", + "is_target": false + }, + { + "feature_name": "16.0021", + "data_type": "continuous", + "is_target": false + }, + { + "feature_name": "2.6449", + "data_type": "continuous", + "is_target": false + }, + { + "feature_name": "0.3918", + "data_type": "continuous", + "is_target": false + }, + { + "feature_name": "0.1982", + "data_type": "continuous", + "is_target": false + }, + { + "feature_name": "27.7004", + "data_type": "continuous", + "is_target": false + }, + { + "feature_name": "22.011", + "data_type": "continuous", + "is_target": false + }, + { + "feature_name": "-8.2027", + "data_type": "continuous", + "is_target": false + }, + { + "feature_name": "40.092", + "data_type": "continuous", + "is_target": false + }, + { + "feature_name": "81.8828", + "data_type": "continuous", + "is_target": false + }, + { + "feature_name": "g", + "data_type": "categorical", + "is_target": true + } +] \ No newline at end of file diff --git a/timecost/n11/tabddpm/tabddpm-n11-20260430_231115/staged/public/test.csv b/timecost/n11/tabddpm/tabddpm-n11-20260430_231115/staged/public/test.csv new file mode 100644 index 0000000000000000000000000000000000000000..59e413eb15b50a2ac49cd95bbe57b0d0018ccf95 --- /dev/null +++ b/timecost/n11/tabddpm/tabddpm-n11-20260430_231115/staged/public/test.csv @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:bf4e935f84569b849b662718eaa19be605037d46a5f7391f164728d6d9c3bb50 +size 148017 diff --git a/timecost/n11/tabddpm/tabddpm-n11-20260430_231115/staged/public/train.csv b/timecost/n11/tabddpm/tabddpm-n11-20260430_231115/staged/public/train.csv new file mode 100644 index 0000000000000000000000000000000000000000..cc5acd9fe00e8a233592b4da9797300adc83744b --- /dev/null +++ b/timecost/n11/tabddpm/tabddpm-n11-20260430_231115/staged/public/train.csv @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:3ab621ac8239797506ce800c1409422452b8127da93add91dd9e6d63ddeec6f7 +size 1182326 diff --git a/timecost/n11/tabddpm/tabddpm-n11-20260430_231115/staged/public/val.csv b/timecost/n11/tabddpm/tabddpm-n11-20260430_231115/staged/public/val.csv new file mode 100644 index 0000000000000000000000000000000000000000..e0a3b6ab9c53a7f8d97dff3290e643431f9ad023 --- /dev/null +++ b/timecost/n11/tabddpm/tabddpm-n11-20260430_231115/staged/public/val.csv @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:374e44edf25e58ca37eabbef0485c98cecdbdfa9d24da738937f404840bfad44 +size 147784 diff --git a/timecost/n11/tabddpm/tabddpm-n11-20260430_231115/staged/tabddpm/adapter_report.json b/timecost/n11/tabddpm/tabddpm-n11-20260430_231115/staged/tabddpm/adapter_report.json new file mode 100644 index 0000000000000000000000000000000000000000..ba7e8c97c23ac51c399394954c97b500d1cc1ff4 --- /dev/null +++ b/timecost/n11/tabddpm/tabddpm-n11-20260430_231115/staged/tabddpm/adapter_report.json @@ -0,0 +1,7 @@ +{ + "adapter_ready_status": "pass", + "adapter_fail_reason_code": null, + "adapter_fail_detail": null, + "adapter_transforms_applied": [], + "model_input_manifest": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/n11/tabddpm/tabddpm-n11-20260430_231115/staged/tabddpm/model_input_manifest.json" +} \ No newline at end of file diff --git a/timecost/n11/tabddpm/tabddpm-n11-20260430_231115/staged/tabddpm/adapter_transforms_applied.json b/timecost/n11/tabddpm/tabddpm-n11-20260430_231115/staged/tabddpm/adapter_transforms_applied.json new file mode 100644 index 0000000000000000000000000000000000000000..0637a088a01e8ddab3bf3fa98dbe804cbde1a0dc --- /dev/null +++ b/timecost/n11/tabddpm/tabddpm-n11-20260430_231115/staged/tabddpm/adapter_transforms_applied.json @@ -0,0 +1 @@ +[] \ No newline at end of file diff --git a/timecost/n11/tabddpm/tabddpm-n11-20260430_231115/staged/tabddpm/model_input_manifest.json b/timecost/n11/tabddpm/tabddpm-n11-20260430_231115/staged/tabddpm/model_input_manifest.json new file mode 100644 index 0000000000000000000000000000000000000000..daae4895eea040388a9cb5850de5474de2bede7c --- /dev/null +++ b/timecost/n11/tabddpm/tabddpm-n11-20260430_231115/staged/tabddpm/model_input_manifest.json @@ -0,0 +1,242 @@ +{ + "dataset_id": "n11", + "model": "tabddpm", + "target_column": "g", + "task_type": "classification", + "column_schema": [ + { + "name": "28.7967", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 14962, + "unique_ratio": 0.983372, + "example_values": [ + "33.9347", + "118.601", + "19.83", + "33.2691", + "13.1404" + ] + } + }, + { + "name": "16.0021", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 14662, + "unique_ratio": 0.963654, + "example_values": [ + "10.8862", + "44.2479", + "7.3303", + "9.1269", + "10.8527" + ] + } + }, + { + "name": "2.6449", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 6336, + "unique_ratio": 0.416431, + "example_values": [ + "2.5328", + "3.5558", + "2.2541", + "2.6728", + "2.1775" + ] + } + }, + { + "name": "0.3918", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 6002, + "unique_ratio": 0.394479, + "example_values": [ + "0.4047", + "0.1769", + "0.7521", + "0.4437", + "0.7708" + ] + } + }, + { + "name": "0.1982", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 4230, + "unique_ratio": 0.278015, + "example_values": [ + "0.2155", + "0.1003", + "0.4095", + "0.2553", + "0.4352" + ] + } + }, + { + "name": "27.7004", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 14996, + "unique_ratio": 0.985606, + "example_values": [ + "-25.0369", + "-95.8266", + "2.8528", + "12.3981", + "14.3006" + ] + } + }, + { + "name": "22.011", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 14984, + "unique_ratio": 0.984818, + "example_values": [ + "-23.1659", + "14.9809", + "-9.7666", + "19.9081", + "-3.6418" + ] + } + }, + { + "name": "-8.2027", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 14795, + "unique_ratio": 0.972396, + "example_values": [ + "3.492", + "29.3812", + "5.0346", + "-5.3204", + "-11.3646" + ] + } + }, + { + "name": "40.092", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 14518, + "unique_ratio": 0.95419, + "example_values": [ + "0.334", + "4.134", + "13.794", + "20.78", + "20.124" + ] + } + }, + { + "name": "81.8828", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 14824, + "unique_ratio": 0.974302, + "example_values": [ + "132.907", + "286.69", + "108.464", + "180.4168", + "222.525" + ] + } + }, + { + "name": "g", + "role": "target", + "semantic_type": "categorical", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 2, + "unique_ratio": 0.000131, + "example_values": [ + "g", + "h" + ] + } + } + ], + "public_manifest": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/n11/tabddpm/tabddpm-n11-20260430_231115/public_gate/staged_input_manifest.json", + "train_csv": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/n11/tabddpm/tabddpm-n11-20260430_231115/staged/public/train.csv", + "val_csv": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/n11/tabddpm/tabddpm-n11-20260430_231115/staged/public/val.csv", + "test_csv": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/n11/tabddpm/tabddpm-n11-20260430_231115/staged/public/test.csv", + "features_json": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/n11/tabddpm/tabddpm-n11-20260430_231115/staged/public/staged_features.json", + "public_gate_report": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/n11/tabddpm/tabddpm-n11-20260430_231115/public_gate/public_gate_report.json" +} \ No newline at end of file diff --git a/timecost/n11/tabddpm/tabddpm-n11-20260430_231115/tabddpm-n11-15215-20260430_231138.csv b/timecost/n11/tabddpm/tabddpm-n11-20260430_231115/tabddpm-n11-15215-20260430_231138.csv new file mode 100644 index 0000000000000000000000000000000000000000..ea541126e230dd49ca08615bbfa2a66e5cc889b0 --- /dev/null +++ b/timecost/n11/tabddpm/tabddpm-n11-20260430_231115/tabddpm-n11-15215-20260430_231138.csv @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:7a17fcdcc57fead07cd2244a7a951be4903af25b2db1d300566afcf2b5998365 +size 2909435 diff --git a/timecost/n11/tabddpm/tabddpm-n11-20260430_231115/train_20260430_231115.log b/timecost/n11/tabddpm/tabddpm-n11-20260430_231115/train_20260430_231115.log new file mode 100644 index 0000000000000000000000000000000000000000..38f415bd7448e6037073f3ae2ef70aa020342356 --- /dev/null +++ b/timecost/n11/tabddpm/tabddpm-n11-20260430_231115/train_20260430_231115.log @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:e57dcf25d39069140e75289c1b815ac106901118c56eaef39a3badb0da3ca641 +size 1070 diff --git a/timecost/n11/tabddpm/tabddpm-n11-20260501_040207/_tabddpm_sample_r0.py b/timecost/n11/tabddpm/tabddpm-n11-20260501_040207/_tabddpm_sample_r0.py new file mode 100644 index 0000000000000000000000000000000000000000..18f19fa2fffb24c497523ccaddd3c30f5ebd089b --- /dev/null +++ b/timecost/n11/tabddpm/tabddpm-n11-20260501_040207/_tabddpm_sample_r0.py @@ -0,0 +1,66 @@ +import os, sys, subprocess, json +import numpy as np +import pandas as pd + +tabddpm_root = "/workspace/tabddpm/code" +assert os.path.isdir(tabddpm_root), f"TabDDPM source not mounted: {tabddpm_root}" +env = os.environ.copy() +env["PYTHONPATH"] = tabddpm_root + (os.pathsep + env.get("PYTHONPATH", "")) + +# Reuse the compat wrapper (patches collections.Sequence for skorch) +wrapper = os.path.join(tabddpm_root, "_compat_run.py") +if not os.path.exists(wrapper): + with open(wrapper, "w") as f: + f.write( + "import collections, collections.abc\n" + "for _a in ('Sequence','MutableSequence','MutableMapping','Mapping'," + "'MutableSet','Set','Callable','Iterable','Iterator'):\n" + " if not hasattr(collections, _a): setattr(collections, _a, getattr(collections.abc, _a, None))\n" + "import sys, runpy\n" + "sys.argv = sys.argv[1:]\n" + "runpy.run_path(sys.argv[0], run_name='__main__')\n" + ) + +print(f"[TabDDPM] Sampling 15215 rows") +ret = subprocess.run( + [sys.executable, wrapper, "scripts/pipeline.py", + "--config", "/work/output-Benchmark-trainonly-v1/n11/tabddpm/tabddpm-n11-20260501_040207/config_sample_20260501_040230_r0.toml", + "--sample"], + cwd=tabddpm_root, + env=env +) +if ret.returncode != 0: + sys.exit(ret.returncode) + +# 将 .npy 输出转为 CSV(npy 在 TabDDPM 的 parent_dir,即 npy_dir) +info_path = "/work/output-Benchmark-trainonly-v1/n11/tabddpm/tabddpm-n11-20260501_040207/data/info.json" +with open(info_path) as f: + info = json.load(f) + +output_dir = "/work/output-Benchmark-trainonly-v1/n11/tabddpm/tabddpm-n11-20260501_040207/output" +col_names = info.get("column_names", []) + +parts = [] +x_num_path = os.path.join(output_dir, "X_num_train.npy") +x_cat_path = os.path.join(output_dir, "X_cat_train.npy") +y_path = os.path.join(output_dir, "y_train.npy") + +if os.path.exists(x_num_path): + parts.append(np.load(x_num_path, allow_pickle=True)) +if os.path.exists(x_cat_path): + parts.append(np.load(x_cat_path, allow_pickle=True).astype(float)) +if os.path.exists(y_path): + y = np.load(y_path, allow_pickle=True) + parts.append(y.reshape(-1, 1) if y.ndim == 1 else y) + +if parts: + combined = np.concatenate(parts, axis=1) + if col_names and len(col_names) == combined.shape[1]: + df = pd.DataFrame(combined, columns=col_names) + else: + df = pd.DataFrame(combined) + df.to_csv("/work/output-Benchmark-trainonly-v1/n11/tabddpm/tabddpm-n11-20260501_040207/tabddpm-n11-15215-20260501_040230.csv", index=False) + print(f"[TabDDPM] Saved {len(df)} rows -> /work/output-Benchmark-trainonly-v1/n11/tabddpm/tabddpm-n11-20260501_040207/tabddpm-n11-15215-20260501_040230.csv") +else: + print("[TabDDPM] WARNING: No output .npy files found") + sys.exit(1) diff --git a/timecost/n11/tabddpm/tabddpm-n11-20260501_040207/_tabddpm_train.py b/timecost/n11/tabddpm/tabddpm-n11-20260501_040207/_tabddpm_train.py new file mode 100644 index 0000000000000000000000000000000000000000..3ebc291becaccd52078510a369a2795499393b62 --- /dev/null +++ b/timecost/n11/tabddpm/tabddpm-n11-20260501_040207/_tabddpm_train.py @@ -0,0 +1,32 @@ +import os, sys, subprocess + +tabddpm_root = "/workspace/tabddpm/code" +assert os.path.isdir(tabddpm_root), f"TabDDPM source not mounted: {tabddpm_root}" +env = os.environ.copy() +env["PYTHONPATH"] = tabddpm_root + (os.pathsep + env.get("PYTHONPATH", "")) + +# Write a wrapper that patches collections.Sequence (removed in Python 3.10+) +# before running pipeline.py - needed because skorch uses old API +wrapper = os.path.join(tabddpm_root, "_compat_run.py") +with open(wrapper, "w") as f: + f.write( + "import collections, collections.abc\n" + "for _a in ('Sequence','MutableSequence','MutableMapping','Mapping'," + "'MutableSet','Set','Callable','Iterable','Iterator'):\n" + " if not hasattr(collections, _a): setattr(collections, _a, getattr(collections.abc, _a, None))\n" + "import sys, runpy\n" + "sys.argv = sys.argv[1:]\n" + "runpy.run_path(sys.argv[0], run_name='__main__')\n" + ) + +print(f"[TabDDPM] Training, config=/work/output-Benchmark-trainonly-v1/n11/tabddpm/tabddpm-n11-20260501_040207/config.toml") +ret = subprocess.run( + [sys.executable, wrapper, "scripts/pipeline.py", + "--config", "/work/output-Benchmark-trainonly-v1/n11/tabddpm/tabddpm-n11-20260501_040207/config.toml", + "--train"], + cwd=tabddpm_root, + env=env +) +if ret.returncode != 0: + sys.exit(ret.returncode) +print("[TabDDPM] Training complete") diff --git a/timecost/n11/tabddpm/tabddpm-n11-20260501_040207/config.toml b/timecost/n11/tabddpm/tabddpm-n11-20260501_040207/config.toml new file mode 100644 index 0000000000000000000000000000000000000000..88e19579fc251d9263f4888feff3d55beb32c169 --- /dev/null +++ b/timecost/n11/tabddpm/tabddpm-n11-20260501_040207/config.toml @@ -0,0 +1,39 @@ +seed = 0 +parent_dir = "/work/output-Benchmark-trainonly-v1/n11/tabddpm/tabddpm-n11-20260501_040207/output" +real_data_path = "/work/output-Benchmark-trainonly-v1/n11/tabddpm/tabddpm-n11-20260501_040207/data" +model_type = "mlp" +num_numerical_features = 10 +device = "cuda:0" + +[model_params] +d_in = 10 +num_classes = 2 +is_y_cond = true + +[model_params.rtdl_params] +d_layers = [256, 256] +dropout = 0.0 + +[diffusion_params] +num_timesteps = 1000 +gaussian_loss_type = "mse" + +[train.main] +steps = 5000 +lr = 0.001 +weight_decay = 0.0 +batch_size = 256 + +[train.T] +seed = 0 +normalization = "quantile" +num_nan_policy = "__none__" +cat_nan_policy = "__none__" +cat_min_frequency = "__none__" +cat_encoding = "__none__" +y_policy = "default" + +[sample] +num_samples = 1000 +batch_size = 1000 +seed = 0 diff --git a/timecost/n11/tabddpm/tabddpm-n11-20260501_040207/config_sample_20260501_040230_r0.toml b/timecost/n11/tabddpm/tabddpm-n11-20260501_040207/config_sample_20260501_040230_r0.toml new file mode 100644 index 0000000000000000000000000000000000000000..bdd183695470ccc2a57e9e49ed353d334b492e34 --- /dev/null +++ b/timecost/n11/tabddpm/tabddpm-n11-20260501_040207/config_sample_20260501_040230_r0.toml @@ -0,0 +1,39 @@ +seed = 0 +parent_dir = "/work/output-Benchmark-trainonly-v1/n11/tabddpm/tabddpm-n11-20260501_040207/output" +real_data_path = "/work/output-Benchmark-trainonly-v1/n11/tabddpm/tabddpm-n11-20260501_040207/data" +model_type = "mlp" +num_numerical_features = 10 +device = "cuda:0" + +[model_params] +d_in = 10 +num_classes = 2 +is_y_cond = true + +[model_params.rtdl_params] +d_layers = [256, 256] +dropout = 0.0 + +[diffusion_params] +num_timesteps = 1000 +gaussian_loss_type = "mse" + +[train.main] +steps = 5000 +lr = 0.001 +weight_decay = 0.0 +batch_size = 256 + +[train.T] +seed = 0 +normalization = "quantile" +num_nan_policy = "__none__" +cat_nan_policy = "__none__" +cat_min_frequency = "__none__" +cat_encoding = "__none__" +y_policy = "default" + +[sample] +num_samples = 15215 +batch_size = 1000 +seed = 0 diff --git a/timecost/n11/tabddpm/tabddpm-n11-20260501_040207/data/X_num_train.npy b/timecost/n11/tabddpm/tabddpm-n11-20260501_040207/data/X_num_train.npy new file mode 100644 index 0000000000000000000000000000000000000000..cda65645f7509c4b59dba4a620ca6db54dcdbe84 --- /dev/null +++ b/timecost/n11/tabddpm/tabddpm-n11-20260501_040207/data/X_num_train.npy @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:013e32900eef106da63d972b40b61296d91c04d1ce8196fd0cb8d54081f58c59 +size 608728 diff --git a/timecost/n11/tabddpm/tabddpm-n11-20260501_040207/data/info.json b/timecost/n11/tabddpm/tabddpm-n11-20260501_040207/data/info.json new file mode 100644 index 0000000000000000000000000000000000000000..ad93acde945d46916d99f9a52fb19bb740a3d107 --- /dev/null +++ b/timecost/n11/tabddpm/tabddpm-n11-20260501_040207/data/info.json @@ -0,0 +1,37 @@ +{ + "name": "benchmark_dataset", + "task_type": "multiclass", + "n_num_features": 10, + "n_cat_features": 0, + "train_size": 15215, + "num_col_idx": [ + 0, + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9 + ], + "cat_col_idx": [], + "target_col_idx": [ + 10 + ], + "column_names": [ + "28.7967", + "16.0021", + "2.6449", + "0.3918", + "0.1982", + "27.7004", + "22.011", + "-8.2027", + "40.092", + "81.8828", + "g" + ], + "num_classes": 2 +} \ No newline at end of file diff --git a/timecost/n11/tabddpm/tabddpm-n11-20260501_040207/data/y_train.npy b/timecost/n11/tabddpm/tabddpm-n11-20260501_040207/data/y_train.npy new file mode 100644 index 0000000000000000000000000000000000000000..b523a92a6e5006ca3c440fc79afd02297be1f7ee --- /dev/null +++ b/timecost/n11/tabddpm/tabddpm-n11-20260501_040207/data/y_train.npy @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:95905dd042874f4c4e7523f7525b2864e220ef3c6fcdc58877ca3944645899cf +size 121848 diff --git a/timecost/n11/tabddpm/tabddpm-n11-20260501_040207/gen_20260501_040230_r0.log b/timecost/n11/tabddpm/tabddpm-n11-20260501_040207/gen_20260501_040230_r0.log new file mode 100644 index 0000000000000000000000000000000000000000..511da9210a767a6ee0f738377d72d4c31bd7de91 --- /dev/null +++ b/timecost/n11/tabddpm/tabddpm-n11-20260501_040207/gen_20260501_040230_r0.log @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:b1c4299cad5ffeee3ae83a174cdfd3cf5fed3077063ce2e90c68a92b0cd030a9 +size 336510 diff --git a/timecost/n11/tabddpm/tabddpm-n11-20260501_040207/input_snapshot.json b/timecost/n11/tabddpm/tabddpm-n11-20260501_040207/input_snapshot.json new file mode 100644 index 0000000000000000000000000000000000000000..65d59e7f3d19d532144c83019c2092bcc4f60fe3 --- /dev/null +++ b/timecost/n11/tabddpm/tabddpm-n11-20260501_040207/input_snapshot.json @@ -0,0 +1,36 @@ +{ + "dataset_id": "n11", + "model": "tabddpm", + "inputs": { + "train_csv": { + "path": "/data/jialinzhang/SynthesizePipeline-server/DatasetNew/n11/n11-train.csv", + "exists": true, + "size": 1197106, + "sha256": "f8253c0573a8f028c0b1e17752d214fbad956d0ace350d0dee3947f3dfafbc75" + }, + "val_csv": { + "path": "/data/jialinzhang/SynthesizePipeline-server/DatasetNew/n11/n11-val.csv", + "exists": true, + "size": 149602, + "sha256": "7bde20178eb7de9523d4df719a3b461656f5704e3a03187c8289b2299dc8e458" + }, + "test_csv": { + "path": "/data/jialinzhang/SynthesizePipeline-server/DatasetNew/n11/n11-test.csv", + "exists": true, + "size": 149859, + "sha256": "855b55969de2da1341d428edef6dedfdf0c60f016b9fa08efaf8a883af6a2c53" + }, + "profile_json": { + "path": "/data/jialinzhang/SynthesizePipeline-server/DatasetNew/artifacts/data_core/tabular/n11/n11-dataset_profile.json", + "exists": true, + "size": 5104, + "sha256": "0bd368d22598246defd33bda12c9872165f26e798cc462ec472d193f322fba07" + }, + "contract_json": { + "path": "/data/jialinzhang/SynthesizePipeline-server/DatasetNew/artifacts/data_core/tabular/n11/n11-dataset_contract_v1.json", + "exists": true, + "size": 5874, + "sha256": "ad3f01eafe9fb37754eed9be9bd058390fd3a4f54d8be4ceb4b5326a9901da9d" + } + } +} \ No newline at end of file diff --git a/timecost/n11/tabddpm/tabddpm-n11-20260501_040207/output/X_num_train.npy b/timecost/n11/tabddpm/tabddpm-n11-20260501_040207/output/X_num_train.npy new file mode 100644 index 0000000000000000000000000000000000000000..0e80a8226824056255e67dc1a7232a1babcaf8e1 --- /dev/null +++ b/timecost/n11/tabddpm/tabddpm-n11-20260501_040207/output/X_num_train.npy @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:dc9d99f8a7597b0f90cc445ae4b95046995bf8d02942dd3cb5eba68a91de86b9 +size 1217328 diff --git a/timecost/n11/tabddpm/tabddpm-n11-20260501_040207/output/X_num_unnorm.npy b/timecost/n11/tabddpm/tabddpm-n11-20260501_040207/output/X_num_unnorm.npy new file mode 100644 index 0000000000000000000000000000000000000000..5da5fb1baa439e80412ac9a902ee5af569ae6be2 --- /dev/null +++ b/timecost/n11/tabddpm/tabddpm-n11-20260501_040207/output/X_num_unnorm.npy @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:5f7afc6a344481c6233b9cad5a6c46c9e9ddc2ce22376e42bf385a06e41ca1c5 +size 1217328 diff --git a/timecost/n11/tabddpm/tabddpm-n11-20260501_040207/output/config.toml b/timecost/n11/tabddpm/tabddpm-n11-20260501_040207/output/config.toml new file mode 100644 index 0000000000000000000000000000000000000000..bdd183695470ccc2a57e9e49ed353d334b492e34 --- /dev/null +++ b/timecost/n11/tabddpm/tabddpm-n11-20260501_040207/output/config.toml @@ -0,0 +1,39 @@ +seed = 0 +parent_dir = "/work/output-Benchmark-trainonly-v1/n11/tabddpm/tabddpm-n11-20260501_040207/output" +real_data_path = "/work/output-Benchmark-trainonly-v1/n11/tabddpm/tabddpm-n11-20260501_040207/data" +model_type = "mlp" +num_numerical_features = 10 +device = "cuda:0" + +[model_params] +d_in = 10 +num_classes = 2 +is_y_cond = true + +[model_params.rtdl_params] +d_layers = [256, 256] +dropout = 0.0 + +[diffusion_params] +num_timesteps = 1000 +gaussian_loss_type = "mse" + +[train.main] +steps = 5000 +lr = 0.001 +weight_decay = 0.0 +batch_size = 256 + +[train.T] +seed = 0 +normalization = "quantile" +num_nan_policy = "__none__" +cat_nan_policy = "__none__" +cat_min_frequency = "__none__" +cat_encoding = "__none__" +y_policy = "default" + +[sample] +num_samples = 15215 +batch_size = 1000 +seed = 0 diff --git a/timecost/n11/tabddpm/tabddpm-n11-20260501_040207/output/info.json b/timecost/n11/tabddpm/tabddpm-n11-20260501_040207/output/info.json new file mode 100644 index 0000000000000000000000000000000000000000..ad93acde945d46916d99f9a52fb19bb740a3d107 --- /dev/null +++ b/timecost/n11/tabddpm/tabddpm-n11-20260501_040207/output/info.json @@ -0,0 +1,37 @@ +{ + "name": "benchmark_dataset", + "task_type": "multiclass", + "n_num_features": 10, + "n_cat_features": 0, + "train_size": 15215, + "num_col_idx": [ + 0, + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9 + ], + "cat_col_idx": [], + "target_col_idx": [ + 10 + ], + "column_names": [ + "28.7967", + "16.0021", + "2.6449", + "0.3918", + "0.1982", + "27.7004", + "22.011", + "-8.2027", + "40.092", + "81.8828", + "g" + ], + "num_classes": 2 +} \ No newline at end of file diff --git a/timecost/n11/tabddpm/tabddpm-n11-20260501_040207/output/loss.csv b/timecost/n11/tabddpm/tabddpm-n11-20260501_040207/output/loss.csv new file mode 100644 index 0000000000000000000000000000000000000000..049c5bb41cdcc81e34cfa4e122246679d0550b7e --- /dev/null +++ b/timecost/n11/tabddpm/tabddpm-n11-20260501_040207/output/loss.csv @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:df3f693735c1f039e78a69b3aa3735a075f8058a4f86f2b32d78f1d3431e60c6 +size 1253 diff --git a/timecost/n11/tabddpm/tabddpm-n11-20260501_040207/output/model.pt b/timecost/n11/tabddpm/tabddpm-n11-20260501_040207/output/model.pt new file mode 100644 index 0000000000000000000000000000000000000000..29c1808c23aa852f7727a4a61e87f69e5caed3a4 --- /dev/null +++ b/timecost/n11/tabddpm/tabddpm-n11-20260501_040207/output/model.pt @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:7ca8519c503ca6a0ea7523cef58a071e180be3b8e9610c40e744b619d6533830 +size 548950 diff --git a/timecost/n11/tabddpm/tabddpm-n11-20260501_040207/output/model_ema.pt b/timecost/n11/tabddpm/tabddpm-n11-20260501_040207/output/model_ema.pt new file mode 100644 index 0000000000000000000000000000000000000000..87fd3b674837580f5f0d32c738c8cf6c5b5a9419 --- /dev/null +++ b/timecost/n11/tabddpm/tabddpm-n11-20260501_040207/output/model_ema.pt @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:6cb073850cab04d5bc7f2f2592c76116c7c950c91ed080dcbac5b837f1fa9160 +size 549794 diff --git a/timecost/n11/tabddpm/tabddpm-n11-20260501_040207/output/y_train.npy b/timecost/n11/tabddpm/tabddpm-n11-20260501_040207/output/y_train.npy new file mode 100644 index 0000000000000000000000000000000000000000..d7b9324544139dcb95f828f6f985065fbdeb8a43 --- /dev/null +++ b/timecost/n11/tabddpm/tabddpm-n11-20260501_040207/output/y_train.npy @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:079233b853f121e6b236b83123bd9cd4d4fcd07bed563a3d1fcbaf8ff91f7f2e +size 121848 diff --git a/timecost/n11/tabddpm/tabddpm-n11-20260501_040207/public_gate/normalized_schema_snapshot.json b/timecost/n11/tabddpm/tabddpm-n11-20260501_040207/public_gate/normalized_schema_snapshot.json new file mode 100644 index 0000000000000000000000000000000000000000..96904695eb041844b615aa285fda674f1da87108 --- /dev/null +++ b/timecost/n11/tabddpm/tabddpm-n11-20260501_040207/public_gate/normalized_schema_snapshot.json @@ -0,0 +1,235 @@ +{ + "dataset_id": "n11", + "target_column": "g", + "task_type": "classification", + "columns": [ + { + "name": "28.7967", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 14962, + "unique_ratio": 0.983372, + "example_values": [ + "33.9347", + "118.601", + "19.83", + "33.2691", + "13.1404" + ] + } + }, + { + "name": "16.0021", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 14662, + "unique_ratio": 0.963654, + "example_values": [ + "10.8862", + "44.2479", + "7.3303", + "9.1269", + "10.8527" + ] + } + }, + { + "name": "2.6449", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 6336, + "unique_ratio": 0.416431, + "example_values": [ + "2.5328", + "3.5558", + "2.2541", + "2.6728", + "2.1775" + ] + } + }, + { + "name": "0.3918", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 6002, + "unique_ratio": 0.394479, + "example_values": [ + "0.4047", + "0.1769", + "0.7521", + "0.4437", + "0.7708" + ] + } + }, + { + "name": "0.1982", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 4230, + "unique_ratio": 0.278015, + "example_values": [ + "0.2155", + "0.1003", + "0.4095", + "0.2553", + "0.4352" + ] + } + }, + { + "name": "27.7004", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 14996, + "unique_ratio": 0.985606, + "example_values": [ + "-25.0369", + "-95.8266", + "2.8528", + "12.3981", + "14.3006" + ] + } + }, + { + "name": "22.011", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 14984, + "unique_ratio": 0.984818, + "example_values": [ + "-23.1659", + "14.9809", + "-9.7666", + "19.9081", + "-3.6418" + ] + } + }, + { + "name": "-8.2027", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 14795, + "unique_ratio": 0.972396, + "example_values": [ + "3.492", + "29.3812", + "5.0346", + "-5.3204", + "-11.3646" + ] + } + }, + { + "name": "40.092", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 14518, + "unique_ratio": 0.95419, + "example_values": [ + "0.334", + "4.134", + "13.794", + "20.78", + "20.124" + ] + } + }, + { + "name": "81.8828", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 14824, + "unique_ratio": 0.974302, + "example_values": [ + "132.907", + "286.69", + "108.464", + "180.4168", + "222.525" + ] + } + }, + { + "name": "g", + "role": "target", + "semantic_type": "categorical", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 2, + "unique_ratio": 0.000131, + "example_values": [ + "g", + "h" + ] + } + } + ] +} \ No newline at end of file diff --git a/timecost/n11/tabddpm/tabddpm-n11-20260501_040207/public_gate/public_gate_report.json b/timecost/n11/tabddpm/tabddpm-n11-20260501_040207/public_gate/public_gate_report.json new file mode 100644 index 0000000000000000000000000000000000000000..4864c3fc29664a3b44991534165974fed3741dfa --- /dev/null +++ b/timecost/n11/tabddpm/tabddpm-n11-20260501_040207/public_gate/public_gate_report.json @@ -0,0 +1,37 @@ +{ + "dataset_id": "n11", + "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": "g", + "task_type": "classification", + "input_splits": { + "train": "/data/jialinzhang/SynthesizePipeline-server/DatasetNew/n11/n11-train.csv", + "val": "/data/jialinzhang/SynthesizePipeline-server/DatasetNew/n11/n11-val.csv", + "test": "/data/jialinzhang/SynthesizePipeline-server/DatasetNew/n11/n11-test.csv" + } +} \ No newline at end of file diff --git a/timecost/n11/tabddpm/tabddpm-n11-20260501_040207/public_gate/staged_input_manifest.json b/timecost/n11/tabddpm/tabddpm-n11-20260501_040207/public_gate/staged_input_manifest.json new file mode 100644 index 0000000000000000000000000000000000000000..c3df2d5ac38c7eae5376f29e4a502b975a421576 --- /dev/null +++ b/timecost/n11/tabddpm/tabddpm-n11-20260501_040207/public_gate/staged_input_manifest.json @@ -0,0 +1,240 @@ +{ + "dataset_id": "n11", + "target_column": "g", + "task_type": "classification", + "train_csv": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/n11/tabddpm/tabddpm-n11-20260501_040207/staged/public/train.csv", + "val_csv": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/n11/tabddpm/tabddpm-n11-20260501_040207/staged/public/val.csv", + "test_csv": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/n11/tabddpm/tabddpm-n11-20260501_040207/staged/public/test.csv", + "features_json": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/n11/tabddpm/tabddpm-n11-20260501_040207/staged/public/staged_features.json", + "public_gate_report": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/n11/tabddpm/tabddpm-n11-20260501_040207/public_gate/public_gate_report.json", + "column_schema": [ + { + "name": "28.7967", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 14962, + "unique_ratio": 0.983372, + "example_values": [ + "33.9347", + "118.601", + "19.83", + "33.2691", + "13.1404" + ] + } + }, + { + "name": "16.0021", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 14662, + "unique_ratio": 0.963654, + "example_values": [ + "10.8862", + "44.2479", + "7.3303", + "9.1269", + "10.8527" + ] + } + }, + { + "name": "2.6449", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 6336, + "unique_ratio": 0.416431, + "example_values": [ + "2.5328", + "3.5558", + "2.2541", + "2.6728", + "2.1775" + ] + } + }, + { + "name": "0.3918", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 6002, + "unique_ratio": 0.394479, + "example_values": [ + "0.4047", + "0.1769", + "0.7521", + "0.4437", + "0.7708" + ] + } + }, + { + "name": "0.1982", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 4230, + "unique_ratio": 0.278015, + "example_values": [ + "0.2155", + "0.1003", + "0.4095", + "0.2553", + "0.4352" + ] + } + }, + { + "name": "27.7004", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 14996, + "unique_ratio": 0.985606, + "example_values": [ + "-25.0369", + "-95.8266", + "2.8528", + "12.3981", + "14.3006" + ] + } + }, + { + "name": "22.011", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 14984, + "unique_ratio": 0.984818, + "example_values": [ + "-23.1659", + "14.9809", + "-9.7666", + "19.9081", + "-3.6418" + ] + } + }, + { + "name": "-8.2027", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 14795, + "unique_ratio": 0.972396, + "example_values": [ + "3.492", + "29.3812", + "5.0346", + "-5.3204", + "-11.3646" + ] + } + }, + { + "name": "40.092", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 14518, + "unique_ratio": 0.95419, + "example_values": [ + "0.334", + "4.134", + "13.794", + "20.78", + "20.124" + ] + } + }, + { + "name": "81.8828", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 14824, + "unique_ratio": 0.974302, + "example_values": [ + "132.907", + "286.69", + "108.464", + "180.4168", + "222.525" + ] + } + }, + { + "name": "g", + "role": "target", + "semantic_type": "categorical", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 2, + "unique_ratio": 0.000131, + "example_values": [ + "g", + "h" + ] + } + } + ] +} \ No newline at end of file diff --git a/timecost/n11/tabddpm/tabddpm-n11-20260501_040207/runtime_result.json b/timecost/n11/tabddpm/tabddpm-n11-20260501_040207/runtime_result.json new file mode 100644 index 0000000000000000000000000000000000000000..7e75aa8024fbe9287bfde678e6b8d00ffbcc1293 --- /dev/null +++ b/timecost/n11/tabddpm/tabddpm-n11-20260501_040207/runtime_result.json @@ -0,0 +1,27 @@ +{ + "dataset_id": "n11", + "model": "tabddpm", + "run_id": "tabddpm-n11-20260501_040207", + "public_gate_status": "pass", + "adapter_ready_status": "pass", + "train_status": "success", + "generate_status": "success", + "reason_code": null, + "reason_detail": null, + "artifacts": { + "synthetic_csv": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/n11/tabddpm/tabddpm-n11-20260501_040207/tabddpm-n11-15215-20260501_040230.csv", + "model_path": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/n11/tabddpm/tabddpm-n11-20260501_040207" + }, + "timings": { + "train": { + "started_at": "2026-05-01T04:02:07", + "ended_at": "2026-05-01T04:02:30", + "duration_sec": 22.416 + }, + "generate": { + "started_at": "2026-05-01T04:02:30", + "ended_at": "2026-05-01T04:02:50", + "duration_sec": 20.871 + } + } +} \ No newline at end of file diff --git a/timecost/n11/tabddpm/tabddpm-n11-20260501_040207/staged/public/staged_features.json b/timecost/n11/tabddpm/tabddpm-n11-20260501_040207/staged/public/staged_features.json new file mode 100644 index 0000000000000000000000000000000000000000..bdb9c28b9d52f06368851a08caadc305035fc1b7 --- /dev/null +++ b/timecost/n11/tabddpm/tabddpm-n11-20260501_040207/staged/public/staged_features.json @@ -0,0 +1,57 @@ +[ + { + "feature_name": "28.7967", + "data_type": "continuous", + "is_target": false + }, + { + "feature_name": "16.0021", + "data_type": "continuous", + "is_target": false + }, + { + "feature_name": "2.6449", + "data_type": "continuous", + "is_target": false + }, + { + "feature_name": "0.3918", + "data_type": "continuous", + "is_target": false + }, + { + "feature_name": "0.1982", + "data_type": "continuous", + "is_target": false + }, + { + "feature_name": "27.7004", + "data_type": "continuous", + "is_target": false + }, + { + "feature_name": "22.011", + "data_type": "continuous", + "is_target": false + }, + { + "feature_name": "-8.2027", + "data_type": "continuous", + "is_target": false + }, + { + "feature_name": "40.092", + "data_type": "continuous", + "is_target": false + }, + { + "feature_name": "81.8828", + "data_type": "continuous", + "is_target": false + }, + { + "feature_name": "g", + "data_type": "categorical", + "is_target": true + } +] \ No newline at end of file diff --git a/timecost/n11/tabddpm/tabddpm-n11-20260501_040207/staged/public/test.csv b/timecost/n11/tabddpm/tabddpm-n11-20260501_040207/staged/public/test.csv new file mode 100644 index 0000000000000000000000000000000000000000..59e413eb15b50a2ac49cd95bbe57b0d0018ccf95 --- /dev/null +++ b/timecost/n11/tabddpm/tabddpm-n11-20260501_040207/staged/public/test.csv @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:bf4e935f84569b849b662718eaa19be605037d46a5f7391f164728d6d9c3bb50 +size 148017 diff --git a/timecost/n11/tabddpm/tabddpm-n11-20260501_040207/staged/public/train.csv b/timecost/n11/tabddpm/tabddpm-n11-20260501_040207/staged/public/train.csv new file mode 100644 index 0000000000000000000000000000000000000000..cc5acd9fe00e8a233592b4da9797300adc83744b --- /dev/null +++ b/timecost/n11/tabddpm/tabddpm-n11-20260501_040207/staged/public/train.csv @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:3ab621ac8239797506ce800c1409422452b8127da93add91dd9e6d63ddeec6f7 +size 1182326 diff --git a/timecost/n11/tabddpm/tabddpm-n11-20260501_040207/staged/public/val.csv b/timecost/n11/tabddpm/tabddpm-n11-20260501_040207/staged/public/val.csv new file mode 100644 index 0000000000000000000000000000000000000000..e0a3b6ab9c53a7f8d97dff3290e643431f9ad023 --- /dev/null +++ b/timecost/n11/tabddpm/tabddpm-n11-20260501_040207/staged/public/val.csv @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:374e44edf25e58ca37eabbef0485c98cecdbdfa9d24da738937f404840bfad44 +size 147784 diff --git a/timecost/n11/tabddpm/tabddpm-n11-20260501_040207/staged/tabddpm/adapter_report.json b/timecost/n11/tabddpm/tabddpm-n11-20260501_040207/staged/tabddpm/adapter_report.json new file mode 100644 index 0000000000000000000000000000000000000000..6c9fcf445a70f9d1b97cc164f2f5a000cead9f93 --- /dev/null +++ b/timecost/n11/tabddpm/tabddpm-n11-20260501_040207/staged/tabddpm/adapter_report.json @@ -0,0 +1,7 @@ +{ + "adapter_ready_status": "pass", + "adapter_fail_reason_code": null, + "adapter_fail_detail": null, + "adapter_transforms_applied": [], + "model_input_manifest": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/n11/tabddpm/tabddpm-n11-20260501_040207/staged/tabddpm/model_input_manifest.json" +} \ No newline at end of file diff --git a/timecost/n11/tabddpm/tabddpm-n11-20260501_040207/staged/tabddpm/adapter_transforms_applied.json b/timecost/n11/tabddpm/tabddpm-n11-20260501_040207/staged/tabddpm/adapter_transforms_applied.json new file mode 100644 index 0000000000000000000000000000000000000000..0637a088a01e8ddab3bf3fa98dbe804cbde1a0dc --- /dev/null +++ b/timecost/n11/tabddpm/tabddpm-n11-20260501_040207/staged/tabddpm/adapter_transforms_applied.json @@ -0,0 +1 @@ +[] \ No newline at end of file diff --git a/timecost/n11/tabddpm/tabddpm-n11-20260501_040207/staged/tabddpm/model_input_manifest.json b/timecost/n11/tabddpm/tabddpm-n11-20260501_040207/staged/tabddpm/model_input_manifest.json new file mode 100644 index 0000000000000000000000000000000000000000..4922f448a058038ff3e6fad2b78844278f2ae59c --- /dev/null +++ b/timecost/n11/tabddpm/tabddpm-n11-20260501_040207/staged/tabddpm/model_input_manifest.json @@ -0,0 +1,242 @@ +{ + "dataset_id": "n11", + "model": "tabddpm", + "target_column": "g", + "task_type": "classification", + "column_schema": [ + { + "name": "28.7967", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 14962, + "unique_ratio": 0.983372, + "example_values": [ + "33.9347", + "118.601", + "19.83", + "33.2691", + "13.1404" + ] + } + }, + { + "name": "16.0021", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 14662, + "unique_ratio": 0.963654, + "example_values": [ + "10.8862", + "44.2479", + "7.3303", + "9.1269", + "10.8527" + ] + } + }, + { + "name": "2.6449", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 6336, + "unique_ratio": 0.416431, + "example_values": [ + "2.5328", + "3.5558", + "2.2541", + "2.6728", + "2.1775" + ] + } + }, + { + "name": "0.3918", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 6002, + "unique_ratio": 0.394479, + "example_values": [ + "0.4047", + "0.1769", + "0.7521", + "0.4437", + "0.7708" + ] + } + }, + { + "name": "0.1982", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 4230, + "unique_ratio": 0.278015, + "example_values": [ + "0.2155", + "0.1003", + "0.4095", + "0.2553", + "0.4352" + ] + } + }, + { + "name": "27.7004", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 14996, + "unique_ratio": 0.985606, + "example_values": [ + "-25.0369", + "-95.8266", + "2.8528", + "12.3981", + "14.3006" + ] + } + }, + { + "name": "22.011", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 14984, + "unique_ratio": 0.984818, + "example_values": [ + "-23.1659", + "14.9809", + "-9.7666", + "19.9081", + "-3.6418" + ] + } + }, + { + "name": "-8.2027", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 14795, + "unique_ratio": 0.972396, + "example_values": [ + "3.492", + "29.3812", + "5.0346", + "-5.3204", + "-11.3646" + ] + } + }, + { + "name": "40.092", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 14518, + "unique_ratio": 0.95419, + "example_values": [ + "0.334", + "4.134", + "13.794", + "20.78", + "20.124" + ] + } + }, + { + "name": "81.8828", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 14824, + "unique_ratio": 0.974302, + "example_values": [ + "132.907", + "286.69", + "108.464", + "180.4168", + "222.525" + ] + } + }, + { + "name": "g", + "role": "target", + "semantic_type": "categorical", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 2, + "unique_ratio": 0.000131, + "example_values": [ + "g", + "h" + ] + } + } + ], + "public_manifest": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/n11/tabddpm/tabddpm-n11-20260501_040207/public_gate/staged_input_manifest.json", + "train_csv": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/n11/tabddpm/tabddpm-n11-20260501_040207/staged/public/train.csv", + "val_csv": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/n11/tabddpm/tabddpm-n11-20260501_040207/staged/public/val.csv", + "test_csv": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/n11/tabddpm/tabddpm-n11-20260501_040207/staged/public/test.csv", + "features_json": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/n11/tabddpm/tabddpm-n11-20260501_040207/staged/public/staged_features.json", + "public_gate_report": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/n11/tabddpm/tabddpm-n11-20260501_040207/public_gate/public_gate_report.json" +} \ No newline at end of file diff --git a/timecost/n11/tabddpm/tabddpm-n11-20260501_040207/tabddpm-n11-15215-20260501_040230.csv b/timecost/n11/tabddpm/tabddpm-n11-20260501_040207/tabddpm-n11-15215-20260501_040230.csv new file mode 100644 index 0000000000000000000000000000000000000000..ea541126e230dd49ca08615bbfa2a66e5cc889b0 --- /dev/null +++ b/timecost/n11/tabddpm/tabddpm-n11-20260501_040207/tabddpm-n11-15215-20260501_040230.csv @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:7a17fcdcc57fead07cd2244a7a951be4903af25b2db1d300566afcf2b5998365 +size 2909435 diff --git a/timecost/n11/tabddpm/tabddpm-n11-20260501_040207/train_20260501_040207.log b/timecost/n11/tabddpm/tabddpm-n11-20260501_040207/train_20260501_040207.log new file mode 100644 index 0000000000000000000000000000000000000000..21a2438d19c08938bef47469e7786c04bdc11d2f --- /dev/null +++ b/timecost/n11/tabddpm/tabddpm-n11-20260501_040207/train_20260501_040207.log @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:9a6655141042b55a49a2fad70327340fa9a2e84f45031c2120e904b0eecaabcd +size 1070 diff --git a/timecost/n11/tabdiff/tabdiff-n11-20260430_234952/_tabdiff_gen.py b/timecost/n11/tabdiff/tabdiff-n11-20260430_234952/_tabdiff_gen.py new file mode 100644 index 0000000000000000000000000000000000000000..26883d5f2725ca698b7c8f931e0a12c3fa7af912 --- /dev/null +++ b/timecost/n11/tabdiff/tabdiff-n11-20260430_234952/_tabdiff_gen.py @@ -0,0 +1,36 @@ + +import os, shutil, subprocess, sys +td = r"/workspace/TabDiff" +name = r"pipeline_n11" +src = r"/work/output-Benchmark-trainonly-v1/n11/tabdiff/tabdiff-n11-20260430_234952/tabular_bundle/pipeline_n11" +dst_data = os.path.join(td, "data", name) +dst_syn = os.path.join(td, "synthetic", name) +shutil.rmtree(dst_data, ignore_errors=True) +shutil.copytree(src, dst_data) +os.makedirs(dst_syn, exist_ok=True) +for fn in ("real.csv", "test.csv", "val.csv"): + shutil.copy(os.path.join(src, fn), os.path.join(dst_syn, fn)) +os.chdir(td) +os.environ["PYTHONPATH"] = td + os.pathsep + os.environ.get("PYTHONPATH", "") +subprocess.check_call([ + sys.executable, "-m", "tabdiff.main", + "--dataname", name, "--mode", "test", "--gpu", "0", + "--no_wandb", "--exp_name", r"adapter_learnable", + "--ckpt_path", r"/workspace/TabDiff/tabdiff/ckpt/pipeline_n11/adapter_learnable/model_500.pt", + "--num_samples_to_generate", str(int(15215)), +]) +# test() 写入 tabdiff/result////samples.csv +import glob as g +base = os.path.join(td, "tabdiff", "result", name, r"adapter_learnable") +best = None +best_t = -1.0 +for root, _, files in os.walk(base): + if "samples.csv" in files: + p = os.path.join(root, "samples.csv") + t = os.path.getmtime(p) + if t > best_t: + best_t = t + best = p +if not best: + raise SystemExit("tabdiff: no samples.csv under " + base) +shutil.copy(best, r"/work/output-Benchmark-trainonly-v1/n11/tabdiff/tabdiff-n11-20260430_234952/tabdiff-n11-15215-20260430_235717.csv") diff --git a/timecost/n11/tabdiff/tabdiff-n11-20260430_234952/_tabdiff_train.py b/timecost/n11/tabdiff/tabdiff-n11-20260430_234952/_tabdiff_train.py new file mode 100644 index 0000000000000000000000000000000000000000..eb9f605f157e9a4241a34352a2798a079e66f010 --- /dev/null +++ b/timecost/n11/tabdiff/tabdiff-n11-20260430_234952/_tabdiff_train.py @@ -0,0 +1,21 @@ + +import os, shutil, subprocess, sys +td = r"/workspace/TabDiff" +name = r"pipeline_n11" +src = r"/work/output-Benchmark-trainonly-v1/n11/tabdiff/tabdiff-n11-20260430_234952/tabular_bundle/pipeline_n11" +dst_data = os.path.join(td, "data", name) +dst_syn = os.path.join(td, "synthetic", name) +shutil.rmtree(dst_data, ignore_errors=True) +shutil.copytree(src, dst_data) +os.makedirs(dst_syn, exist_ok=True) +for fn in ("real.csv", "test.csv", "val.csv"): + shutil.copy(os.path.join(src, fn), os.path.join(dst_syn, fn)) +os.chdir(td) +os.environ["PYTHONPATH"] = td + os.pathsep + os.environ.get("PYTHONPATH", "") +os.environ["TABDIFF_SMOKE_STEPS"] = "500" +os.environ["TABDIFF_ADAPTER_TRAIN"] = "1" +subprocess.check_call([ + sys.executable, "-m", "tabdiff.main", + "--dataname", name, "--mode", "train", "--gpu", "0", + "--no_wandb", "--exp_name", r"adapter_learnable", +]) diff --git a/timecost/n11/tabdiff/tabdiff-n11-20260430_234952/gen_20260430_235717.log b/timecost/n11/tabdiff/tabdiff-n11-20260430_234952/gen_20260430_235717.log new file mode 100644 index 0000000000000000000000000000000000000000..e3f8e07a46fb3562e493c2e1d8c8ce68da14136e --- /dev/null +++ b/timecost/n11/tabdiff/tabdiff-n11-20260430_234952/gen_20260430_235717.log @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:2a187b75dc57c0e9de8da75b6c28dd71213398633e32406853dfa00327d85b6b +size 5234 diff --git a/timecost/n11/tabdiff/tabdiff-n11-20260430_234952/input_snapshot.json b/timecost/n11/tabdiff/tabdiff-n11-20260430_234952/input_snapshot.json new file mode 100644 index 0000000000000000000000000000000000000000..e86e031cc316e596dc2a104c4580467a1554cd05 --- /dev/null +++ b/timecost/n11/tabdiff/tabdiff-n11-20260430_234952/input_snapshot.json @@ -0,0 +1,36 @@ +{ + "dataset_id": "n11", + "model": "tabdiff", + "inputs": { + "train_csv": { + "path": "/data/jialinzhang/SynthesizePipeline-server/DatasetNew/n11/n11-train.csv", + "exists": true, + "size": 1197106, + "sha256": "f8253c0573a8f028c0b1e17752d214fbad956d0ace350d0dee3947f3dfafbc75" + }, + "val_csv": { + "path": "/data/jialinzhang/SynthesizePipeline-server/DatasetNew/n11/n11-val.csv", + "exists": true, + "size": 149602, + "sha256": "7bde20178eb7de9523d4df719a3b461656f5704e3a03187c8289b2299dc8e458" + }, + "test_csv": { + "path": "/data/jialinzhang/SynthesizePipeline-server/DatasetNew/n11/n11-test.csv", + "exists": true, + "size": 149859, + "sha256": "855b55969de2da1341d428edef6dedfdf0c60f016b9fa08efaf8a883af6a2c53" + }, + "profile_json": { + "path": "/data/jialinzhang/SynthesizePipeline-server/DatasetNew/artifacts/data_core/tabular/n11/n11-dataset_profile.json", + "exists": true, + "size": 5104, + "sha256": "0bd368d22598246defd33bda12c9872165f26e798cc462ec472d193f322fba07" + }, + "contract_json": { + "path": "/data/jialinzhang/SynthesizePipeline-server/DatasetNew/artifacts/data_core/tabular/n11/n11-dataset_contract_v1.json", + "exists": true, + "size": 5874, + "sha256": "ad3f01eafe9fb37754eed9be9bd058390fd3a4f54d8be4ceb4b5326a9901da9d" + } + } +} \ No newline at end of file diff --git a/timecost/n11/tabdiff/tabdiff-n11-20260430_234952/models_tabdiff/trained.pt b/timecost/n11/tabdiff/tabdiff-n11-20260430_234952/models_tabdiff/trained.pt new file mode 100644 index 0000000000000000000000000000000000000000..bc319a55a9c7152a1137f968b6fa1c735125ad11 --- /dev/null +++ b/timecost/n11/tabdiff/tabdiff-n11-20260430_234952/models_tabdiff/trained.pt @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:306660b8aad4549267c68390b017e15ddb9bc06a02c80515eb72a97ae31a81eb +size 74 diff --git a/timecost/n11/tabdiff/tabdiff-n11-20260430_234952/public_gate/normalized_schema_snapshot.json b/timecost/n11/tabdiff/tabdiff-n11-20260430_234952/public_gate/normalized_schema_snapshot.json new file mode 100644 index 0000000000000000000000000000000000000000..96904695eb041844b615aa285fda674f1da87108 --- /dev/null +++ b/timecost/n11/tabdiff/tabdiff-n11-20260430_234952/public_gate/normalized_schema_snapshot.json @@ -0,0 +1,235 @@ +{ + "dataset_id": "n11", + "target_column": "g", + "task_type": "classification", + "columns": [ + { + "name": "28.7967", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 14962, + "unique_ratio": 0.983372, + "example_values": [ + "33.9347", + "118.601", + "19.83", + "33.2691", + "13.1404" + ] + } + }, + { + "name": "16.0021", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 14662, + "unique_ratio": 0.963654, + "example_values": [ + "10.8862", + "44.2479", + "7.3303", + "9.1269", + "10.8527" + ] + } + }, + { + "name": "2.6449", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 6336, + "unique_ratio": 0.416431, + "example_values": [ + "2.5328", + "3.5558", + "2.2541", + "2.6728", + "2.1775" + ] + } + }, + { + "name": "0.3918", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 6002, + "unique_ratio": 0.394479, + "example_values": [ + "0.4047", + "0.1769", + "0.7521", + "0.4437", + "0.7708" + ] + } + }, + { + "name": "0.1982", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 4230, + "unique_ratio": 0.278015, + "example_values": [ + "0.2155", + "0.1003", + "0.4095", + "0.2553", + "0.4352" + ] + } + }, + { + "name": "27.7004", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 14996, + "unique_ratio": 0.985606, + "example_values": [ + "-25.0369", + "-95.8266", + "2.8528", + "12.3981", + "14.3006" + ] + } + }, + { + "name": "22.011", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 14984, + "unique_ratio": 0.984818, + "example_values": [ + "-23.1659", + "14.9809", + "-9.7666", + "19.9081", + "-3.6418" + ] + } + }, + { + "name": "-8.2027", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 14795, + "unique_ratio": 0.972396, + "example_values": [ + "3.492", + "29.3812", + "5.0346", + "-5.3204", + "-11.3646" + ] + } + }, + { + "name": "40.092", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 14518, + "unique_ratio": 0.95419, + "example_values": [ + "0.334", + "4.134", + "13.794", + "20.78", + "20.124" + ] + } + }, + { + "name": "81.8828", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 14824, + "unique_ratio": 0.974302, + "example_values": [ + "132.907", + "286.69", + "108.464", + "180.4168", + "222.525" + ] + } + }, + { + "name": "g", + "role": "target", + "semantic_type": "categorical", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 2, + "unique_ratio": 0.000131, + "example_values": [ + "g", + "h" + ] + } + } + ] +} \ No newline at end of file diff --git a/timecost/n11/tabdiff/tabdiff-n11-20260430_234952/public_gate/public_gate_report.json b/timecost/n11/tabdiff/tabdiff-n11-20260430_234952/public_gate/public_gate_report.json new file mode 100644 index 0000000000000000000000000000000000000000..4864c3fc29664a3b44991534165974fed3741dfa --- /dev/null +++ b/timecost/n11/tabdiff/tabdiff-n11-20260430_234952/public_gate/public_gate_report.json @@ -0,0 +1,37 @@ +{ + "dataset_id": "n11", + "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": "g", + "task_type": "classification", + "input_splits": { + "train": "/data/jialinzhang/SynthesizePipeline-server/DatasetNew/n11/n11-train.csv", + "val": "/data/jialinzhang/SynthesizePipeline-server/DatasetNew/n11/n11-val.csv", + "test": "/data/jialinzhang/SynthesizePipeline-server/DatasetNew/n11/n11-test.csv" + } +} \ No newline at end of file diff --git a/timecost/n11/tabdiff/tabdiff-n11-20260430_234952/public_gate/staged_input_manifest.json b/timecost/n11/tabdiff/tabdiff-n11-20260430_234952/public_gate/staged_input_manifest.json new file mode 100644 index 0000000000000000000000000000000000000000..e071c29b1169152a49813ecb0c0c6d1893dcbe24 --- /dev/null +++ b/timecost/n11/tabdiff/tabdiff-n11-20260430_234952/public_gate/staged_input_manifest.json @@ -0,0 +1,240 @@ +{ + "dataset_id": "n11", + "target_column": "g", + "task_type": "classification", + "train_csv": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/n11/tabdiff/tabdiff-n11-20260430_234952/staged/public/train.csv", + "val_csv": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/n11/tabdiff/tabdiff-n11-20260430_234952/staged/public/val.csv", + "test_csv": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/n11/tabdiff/tabdiff-n11-20260430_234952/staged/public/test.csv", + "features_json": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/n11/tabdiff/tabdiff-n11-20260430_234952/staged/public/staged_features.json", + "public_gate_report": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/n11/tabdiff/tabdiff-n11-20260430_234952/public_gate/public_gate_report.json", + "column_schema": [ + { + "name": "28.7967", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 14962, + "unique_ratio": 0.983372, + "example_values": [ + "33.9347", + "118.601", + "19.83", + "33.2691", + "13.1404" + ] + } + }, + { + "name": "16.0021", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 14662, + "unique_ratio": 0.963654, + "example_values": [ + "10.8862", + "44.2479", + "7.3303", + "9.1269", + "10.8527" + ] + } + }, + { + "name": "2.6449", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 6336, + "unique_ratio": 0.416431, + "example_values": [ + "2.5328", + "3.5558", + "2.2541", + "2.6728", + "2.1775" + ] + } + }, + { + "name": "0.3918", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 6002, + "unique_ratio": 0.394479, + "example_values": [ + "0.4047", + "0.1769", + "0.7521", + "0.4437", + "0.7708" + ] + } + }, + { + "name": "0.1982", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 4230, + "unique_ratio": 0.278015, + "example_values": [ + "0.2155", + "0.1003", + "0.4095", + "0.2553", + "0.4352" + ] + } + }, + { + "name": "27.7004", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 14996, + "unique_ratio": 0.985606, + "example_values": [ + "-25.0369", + "-95.8266", + "2.8528", + "12.3981", + "14.3006" + ] + } + }, + { + "name": "22.011", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 14984, + "unique_ratio": 0.984818, + "example_values": [ + "-23.1659", + "14.9809", + "-9.7666", + "19.9081", + "-3.6418" + ] + } + }, + { + "name": "-8.2027", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 14795, + "unique_ratio": 0.972396, + "example_values": [ + "3.492", + "29.3812", + "5.0346", + "-5.3204", + "-11.3646" + ] + } + }, + { + "name": "40.092", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 14518, + "unique_ratio": 0.95419, + "example_values": [ + "0.334", + "4.134", + "13.794", + "20.78", + "20.124" + ] + } + }, + { + "name": "81.8828", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 14824, + "unique_ratio": 0.974302, + "example_values": [ + "132.907", + "286.69", + "108.464", + "180.4168", + "222.525" + ] + } + }, + { + "name": "g", + "role": "target", + "semantic_type": "categorical", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 2, + "unique_ratio": 0.000131, + "example_values": [ + "g", + "h" + ] + } + } + ] +} \ No newline at end of file diff --git a/timecost/n11/tabdiff/tabdiff-n11-20260430_234952/runtime_result.json b/timecost/n11/tabdiff/tabdiff-n11-20260430_234952/runtime_result.json new file mode 100644 index 0000000000000000000000000000000000000000..c7e4be08373b50e481a03c22e2c1ec1d41aead03 --- /dev/null +++ b/timecost/n11/tabdiff/tabdiff-n11-20260430_234952/runtime_result.json @@ -0,0 +1,27 @@ +{ + "dataset_id": "n11", + "model": "tabdiff", + "run_id": "tabdiff-n11-20260430_234952", + "public_gate_status": "pass", + "adapter_ready_status": "pass", + "train_status": "success", + "generate_status": "success", + "reason_code": null, + "reason_detail": null, + "artifacts": { + "synthetic_csv": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/n11/tabdiff/tabdiff-n11-20260430_234952/tabdiff-n11-15215-20260430_235717.csv", + "model_path": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/n11/tabdiff/tabdiff-n11-20260430_234952/models_tabdiff/trained.pt" + }, + "timings": { + "train": { + "started_at": "2026-04-30T23:49:53", + "ended_at": "2026-04-30T23:57:17", + "duration_sec": 444.334 + }, + "generate": { + "started_at": "2026-04-30T23:57:17", + "ended_at": "2026-04-30T23:57:27", + "duration_sec": 10.439 + } + } +} \ No newline at end of file diff --git a/timecost/n11/tabdiff/tabdiff-n11-20260430_234952/staged/public/staged_features.json b/timecost/n11/tabdiff/tabdiff-n11-20260430_234952/staged/public/staged_features.json new file mode 100644 index 0000000000000000000000000000000000000000..bdb9c28b9d52f06368851a08caadc305035fc1b7 --- /dev/null +++ b/timecost/n11/tabdiff/tabdiff-n11-20260430_234952/staged/public/staged_features.json @@ -0,0 +1,57 @@ +[ + { + "feature_name": "28.7967", + "data_type": "continuous", + "is_target": false + }, + { + "feature_name": "16.0021", + "data_type": "continuous", + "is_target": false + }, + { + "feature_name": "2.6449", + "data_type": "continuous", + "is_target": false + }, + { + "feature_name": "0.3918", + "data_type": "continuous", + "is_target": false + }, + { + "feature_name": "0.1982", + "data_type": "continuous", + "is_target": false + }, + { + "feature_name": "27.7004", + "data_type": "continuous", + "is_target": false + }, + { + "feature_name": "22.011", + "data_type": "continuous", + "is_target": false + }, + { + "feature_name": "-8.2027", + "data_type": "continuous", + "is_target": false + }, + { + "feature_name": "40.092", + "data_type": "continuous", + "is_target": false + }, + { + "feature_name": "81.8828", + "data_type": "continuous", + "is_target": false + }, + { + "feature_name": "g", + "data_type": "categorical", + "is_target": true + } +] \ No newline at end of file diff --git a/timecost/n11/tabdiff/tabdiff-n11-20260430_234952/staged/public/test.csv b/timecost/n11/tabdiff/tabdiff-n11-20260430_234952/staged/public/test.csv new file mode 100644 index 0000000000000000000000000000000000000000..59e413eb15b50a2ac49cd95bbe57b0d0018ccf95 --- /dev/null +++ b/timecost/n11/tabdiff/tabdiff-n11-20260430_234952/staged/public/test.csv @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:bf4e935f84569b849b662718eaa19be605037d46a5f7391f164728d6d9c3bb50 +size 148017 diff --git a/timecost/n11/tabdiff/tabdiff-n11-20260430_234952/staged/public/train.csv b/timecost/n11/tabdiff/tabdiff-n11-20260430_234952/staged/public/train.csv new file mode 100644 index 0000000000000000000000000000000000000000..cc5acd9fe00e8a233592b4da9797300adc83744b --- /dev/null +++ b/timecost/n11/tabdiff/tabdiff-n11-20260430_234952/staged/public/train.csv @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:3ab621ac8239797506ce800c1409422452b8127da93add91dd9e6d63ddeec6f7 +size 1182326 diff --git a/timecost/n11/tabdiff/tabdiff-n11-20260430_234952/staged/public/val.csv b/timecost/n11/tabdiff/tabdiff-n11-20260430_234952/staged/public/val.csv new file mode 100644 index 0000000000000000000000000000000000000000..e0a3b6ab9c53a7f8d97dff3290e643431f9ad023 --- /dev/null +++ b/timecost/n11/tabdiff/tabdiff-n11-20260430_234952/staged/public/val.csv @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:374e44edf25e58ca37eabbef0485c98cecdbdfa9d24da738937f404840bfad44 +size 147784 diff --git a/timecost/n11/tabdiff/tabdiff-n11-20260430_234952/staged/tabdiff/adapter_report.json b/timecost/n11/tabdiff/tabdiff-n11-20260430_234952/staged/tabdiff/adapter_report.json new file mode 100644 index 0000000000000000000000000000000000000000..39bf84455d38ffbcbcc3ef5d3c24614029869713 --- /dev/null +++ b/timecost/n11/tabdiff/tabdiff-n11-20260430_234952/staged/tabdiff/adapter_report.json @@ -0,0 +1,7 @@ +{ + "adapter_ready_status": "pass", + "adapter_fail_reason_code": null, + "adapter_fail_detail": null, + "adapter_transforms_applied": [], + "model_input_manifest": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/n11/tabdiff/tabdiff-n11-20260430_234952/staged/tabdiff/model_input_manifest.json" +} \ No newline at end of file diff --git a/timecost/n11/tabdiff/tabdiff-n11-20260430_234952/staged/tabdiff/adapter_transforms_applied.json b/timecost/n11/tabdiff/tabdiff-n11-20260430_234952/staged/tabdiff/adapter_transforms_applied.json new file mode 100644 index 0000000000000000000000000000000000000000..0637a088a01e8ddab3bf3fa98dbe804cbde1a0dc --- /dev/null +++ b/timecost/n11/tabdiff/tabdiff-n11-20260430_234952/staged/tabdiff/adapter_transforms_applied.json @@ -0,0 +1 @@ +[] \ No newline at end of file diff --git a/timecost/n11/tabdiff/tabdiff-n11-20260430_234952/staged/tabdiff/model_input_manifest.json b/timecost/n11/tabdiff/tabdiff-n11-20260430_234952/staged/tabdiff/model_input_manifest.json new file mode 100644 index 0000000000000000000000000000000000000000..d5997647b82cd57727ce79300396404fe3fc211c --- /dev/null +++ b/timecost/n11/tabdiff/tabdiff-n11-20260430_234952/staged/tabdiff/model_input_manifest.json @@ -0,0 +1,242 @@ +{ + "dataset_id": "n11", + "model": "tabdiff", + "target_column": "g", + "task_type": "classification", + "column_schema": [ + { + "name": "28.7967", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 14962, + "unique_ratio": 0.983372, + "example_values": [ + "33.9347", + "118.601", + "19.83", + "33.2691", + "13.1404" + ] + } + }, + { + "name": "16.0021", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 14662, + "unique_ratio": 0.963654, + "example_values": [ + "10.8862", + "44.2479", + "7.3303", + "9.1269", + "10.8527" + ] + } + }, + { + "name": "2.6449", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 6336, + "unique_ratio": 0.416431, + "example_values": [ + "2.5328", + "3.5558", + "2.2541", + "2.6728", + "2.1775" + ] + } + }, + { + "name": "0.3918", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 6002, + "unique_ratio": 0.394479, + "example_values": [ + "0.4047", + "0.1769", + "0.7521", + "0.4437", + "0.7708" + ] + } + }, + { + "name": "0.1982", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 4230, + "unique_ratio": 0.278015, + "example_values": [ + "0.2155", + "0.1003", + "0.4095", + "0.2553", + "0.4352" + ] + } + }, + { + "name": "27.7004", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 14996, + "unique_ratio": 0.985606, + "example_values": [ + "-25.0369", + "-95.8266", + "2.8528", + "12.3981", + "14.3006" + ] + } + }, + { + "name": "22.011", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 14984, + "unique_ratio": 0.984818, + "example_values": [ + "-23.1659", + "14.9809", + "-9.7666", + "19.9081", + "-3.6418" + ] + } + }, + { + "name": "-8.2027", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 14795, + "unique_ratio": 0.972396, + "example_values": [ + "3.492", + "29.3812", + "5.0346", + "-5.3204", + "-11.3646" + ] + } + }, + { + "name": "40.092", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 14518, + "unique_ratio": 0.95419, + "example_values": [ + "0.334", + "4.134", + "13.794", + "20.78", + "20.124" + ] + } + }, + { + "name": "81.8828", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 14824, + "unique_ratio": 0.974302, + "example_values": [ + "132.907", + "286.69", + "108.464", + "180.4168", + "222.525" + ] + } + }, + { + "name": "g", + "role": "target", + "semantic_type": "categorical", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 2, + "unique_ratio": 0.000131, + "example_values": [ + "g", + "h" + ] + } + } + ], + "public_manifest": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/n11/tabdiff/tabdiff-n11-20260430_234952/public_gate/staged_input_manifest.json", + "train_csv": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/n11/tabdiff/tabdiff-n11-20260430_234952/staged/public/train.csv", + "val_csv": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/n11/tabdiff/tabdiff-n11-20260430_234952/staged/public/val.csv", + "test_csv": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/n11/tabdiff/tabdiff-n11-20260430_234952/staged/public/test.csv", + "features_json": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/n11/tabdiff/tabdiff-n11-20260430_234952/staged/public/staged_features.json", + "public_gate_report": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/n11/tabdiff/tabdiff-n11-20260430_234952/public_gate/public_gate_report.json" +} \ No newline at end of file diff --git a/timecost/n11/tabdiff/tabdiff-n11-20260430_234952/tabdiff-n11-15215-20260430_235717.csv b/timecost/n11/tabdiff/tabdiff-n11-20260430_234952/tabdiff-n11-15215-20260430_235717.csv new file mode 100644 index 0000000000000000000000000000000000000000..f3dc903551931234c36110d302fa68f2e8717258 --- /dev/null +++ b/timecost/n11/tabdiff/tabdiff-n11-20260430_234952/tabdiff-n11-15215-20260430_235717.csv @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:4c510ac9b5c57de48112b31467e5befb64dc617c935f74f831cfba0a28671e8b +size 1555988 diff --git a/timecost/n11/tabdiff/tabdiff-n11-20260430_234952/tabdiff_train_meta.json b/timecost/n11/tabdiff/tabdiff-n11-20260430_234952/tabdiff_train_meta.json new file mode 100644 index 0000000000000000000000000000000000000000..5fd68e31368d3de1f6ae27463d42e56d6e24151a --- /dev/null +++ b/timecost/n11/tabdiff/tabdiff-n11-20260430_234952/tabdiff_train_meta.json @@ -0,0 +1,5 @@ +{ + "exp_name": "adapter_learnable", + "dataname": "pipeline_n11", + "steps": 500 +} \ No newline at end of file diff --git a/timecost/n11/tabdiff/tabdiff-n11-20260430_234952/tabular_bundle/pipeline_n11/X_cat_test.npy b/timecost/n11/tabdiff/tabdiff-n11-20260430_234952/tabular_bundle/pipeline_n11/X_cat_test.npy new file mode 100644 index 0000000000000000000000000000000000000000..b7c97eed0415cd5025177b10e0386f1711d421bf --- /dev/null +++ b/timecost/n11/tabdiff/tabdiff-n11-20260430_234952/tabular_bundle/pipeline_n11/X_cat_test.npy @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:cbf8a68ea367fd7a99272b102465a0e5154a3d819c3ce2787e7dad22a291cbc8 +size 128 diff --git a/timecost/n11/tabdiff/tabdiff-n11-20260430_234952/tabular_bundle/pipeline_n11/X_cat_train.npy b/timecost/n11/tabdiff/tabdiff-n11-20260430_234952/tabular_bundle/pipeline_n11/X_cat_train.npy new file mode 100644 index 0000000000000000000000000000000000000000..b7c97eed0415cd5025177b10e0386f1711d421bf --- /dev/null +++ b/timecost/n11/tabdiff/tabdiff-n11-20260430_234952/tabular_bundle/pipeline_n11/X_cat_train.npy @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:cbf8a68ea367fd7a99272b102465a0e5154a3d819c3ce2787e7dad22a291cbc8 +size 128 diff --git a/timecost/n11/tabdiff/tabdiff-n11-20260430_234952/tabular_bundle/pipeline_n11/X_cat_val.npy b/timecost/n11/tabdiff/tabdiff-n11-20260430_234952/tabular_bundle/pipeline_n11/X_cat_val.npy new file mode 100644 index 0000000000000000000000000000000000000000..b7c97eed0415cd5025177b10e0386f1711d421bf --- /dev/null +++ b/timecost/n11/tabdiff/tabdiff-n11-20260430_234952/tabular_bundle/pipeline_n11/X_cat_val.npy @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:cbf8a68ea367fd7a99272b102465a0e5154a3d819c3ce2787e7dad22a291cbc8 +size 128 diff --git a/timecost/n11/tabdiff/tabdiff-n11-20260430_234952/tabular_bundle/pipeline_n11/X_num_test.npy b/timecost/n11/tabdiff/tabdiff-n11-20260430_234952/tabular_bundle/pipeline_n11/X_num_test.npy new file mode 100644 index 0000000000000000000000000000000000000000..cda65645f7509c4b59dba4a620ca6db54dcdbe84 --- /dev/null +++ b/timecost/n11/tabdiff/tabdiff-n11-20260430_234952/tabular_bundle/pipeline_n11/X_num_test.npy @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:013e32900eef106da63d972b40b61296d91c04d1ce8196fd0cb8d54081f58c59 +size 608728 diff --git a/timecost/n11/tabdiff/tabdiff-n11-20260430_234952/tabular_bundle/pipeline_n11/X_num_train.npy b/timecost/n11/tabdiff/tabdiff-n11-20260430_234952/tabular_bundle/pipeline_n11/X_num_train.npy new file mode 100644 index 0000000000000000000000000000000000000000..cda65645f7509c4b59dba4a620ca6db54dcdbe84 --- /dev/null +++ b/timecost/n11/tabdiff/tabdiff-n11-20260430_234952/tabular_bundle/pipeline_n11/X_num_train.npy @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:013e32900eef106da63d972b40b61296d91c04d1ce8196fd0cb8d54081f58c59 +size 608728 diff --git a/timecost/n11/tabdiff/tabdiff-n11-20260430_234952/tabular_bundle/pipeline_n11/X_num_val.npy b/timecost/n11/tabdiff/tabdiff-n11-20260430_234952/tabular_bundle/pipeline_n11/X_num_val.npy new file mode 100644 index 0000000000000000000000000000000000000000..cda65645f7509c4b59dba4a620ca6db54dcdbe84 --- /dev/null +++ b/timecost/n11/tabdiff/tabdiff-n11-20260430_234952/tabular_bundle/pipeline_n11/X_num_val.npy @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:013e32900eef106da63d972b40b61296d91c04d1ce8196fd0cb8d54081f58c59 +size 608728 diff --git a/timecost/n11/tabdiff/tabdiff-n11-20260430_234952/tabular_bundle/pipeline_n11/info.json b/timecost/n11/tabdiff/tabdiff-n11-20260430_234952/tabular_bundle/pipeline_n11/info.json new file mode 100644 index 0000000000000000000000000000000000000000..8dede00c7573115ecad8ea0c12760f23897a9c6e --- /dev/null +++ b/timecost/n11/tabdiff/tabdiff-n11-20260430_234952/tabular_bundle/pipeline_n11/info.json @@ -0,0 +1,130 @@ +{ + "name": "pipeline_n11", + "task_type": "binclass", + "n_num_features": 10, + "n_cat_features": 0, + "train_size": 15215, + "test_num": 15215, + "val_num": 15215, + "train_num": 15215, + "bundle_note": "val/test matrices are train copies (train-only policy; no real held-out rows).", + "num_col_idx": [ + 0, + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9 + ], + "cat_col_idx": [], + "target_col_idx": [ + 10 + ], + "column_names": [ + "28.7967", + "16.0021", + "2.6449", + "0.3918", + "0.1982", + "27.7004", + "22.011", + "-8.2027", + "40.092", + "81.8828", + "g" + ], + "int_col_idx": [], + "int_columns": [], + "int_col_idx_wrt_num": [], + "metadata": { + "columns": { + "0": { + "sdtype": "numerical", + "computer_representation": "Float" + }, + "1": { + "sdtype": "numerical", + "computer_representation": "Float" + }, + "2": { + "sdtype": "numerical", + "computer_representation": "Float" + }, + "3": { + "sdtype": "numerical", + "computer_representation": "Float" + }, + "4": { + "sdtype": "numerical", + "computer_representation": "Float" + }, + "5": { + "sdtype": "numerical", + "computer_representation": "Float" + }, + "6": { + "sdtype": "numerical", + "computer_representation": "Float" + }, + "7": { + "sdtype": "numerical", + "computer_representation": "Float" + }, + "8": { + "sdtype": "numerical", + "computer_representation": "Float" + }, + "9": { + "sdtype": "numerical", + "computer_representation": "Float" + }, + "10": { + "sdtype": "categorical" + } + } + }, + "idx_mapping": { + "0": 0, + "1": 1, + "2": 2, + "3": 3, + "4": 4, + "5": 5, + "6": 6, + "7": 7, + "8": 8, + "9": 9, + "10": 10 + }, + "inverse_idx_mapping": { + "0": 0, + "1": 1, + "2": 2, + "3": 3, + "4": 4, + "5": 5, + "6": 6, + "7": 7, + "8": 8, + "9": 9, + "10": 10 + }, + "idx_name_mapping": { + "0": "28.7967", + "1": "16.0021", + "2": "2.6449", + "3": "0.3918", + "4": "0.1982", + "5": "27.7004", + "6": "22.011", + "7": "-8.2027", + "8": "40.092", + "9": "81.8828", + "10": "g" + }, + "n_classes": 2 +} \ No newline at end of file diff --git a/timecost/n11/tabdiff/tabdiff-n11-20260430_234952/tabular_bundle/pipeline_n11/real.csv b/timecost/n11/tabdiff/tabdiff-n11-20260430_234952/tabular_bundle/pipeline_n11/real.csv new file mode 100644 index 0000000000000000000000000000000000000000..ad710af40c20fcac02dcc1a7eda34501837630ab --- /dev/null +++ b/timecost/n11/tabdiff/tabdiff-n11-20260430_234952/tabular_bundle/pipeline_n11/real.csv @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:a5a26bcf891889ab181b51c78874919e692e1dd11105321414e234d3ba7217a2 +size 1182272 diff --git a/timecost/n11/tabdiff/tabdiff-n11-20260430_234952/tabular_bundle/pipeline_n11/test.csv b/timecost/n11/tabdiff/tabdiff-n11-20260430_234952/tabular_bundle/pipeline_n11/test.csv new file mode 100644 index 0000000000000000000000000000000000000000..ad710af40c20fcac02dcc1a7eda34501837630ab --- /dev/null +++ b/timecost/n11/tabdiff/tabdiff-n11-20260430_234952/tabular_bundle/pipeline_n11/test.csv @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:a5a26bcf891889ab181b51c78874919e692e1dd11105321414e234d3ba7217a2 +size 1182272 diff --git a/timecost/n11/tabdiff/tabdiff-n11-20260430_234952/tabular_bundle/pipeline_n11/val.csv b/timecost/n11/tabdiff/tabdiff-n11-20260430_234952/tabular_bundle/pipeline_n11/val.csv new file mode 100644 index 0000000000000000000000000000000000000000..ad710af40c20fcac02dcc1a7eda34501837630ab --- /dev/null +++ b/timecost/n11/tabdiff/tabdiff-n11-20260430_234952/tabular_bundle/pipeline_n11/val.csv @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:a5a26bcf891889ab181b51c78874919e692e1dd11105321414e234d3ba7217a2 +size 1182272 diff --git a/timecost/n11/tabdiff/tabdiff-n11-20260430_234952/tabular_bundle/pipeline_n11/y_test.npy b/timecost/n11/tabdiff/tabdiff-n11-20260430_234952/tabular_bundle/pipeline_n11/y_test.npy new file mode 100644 index 0000000000000000000000000000000000000000..b523a92a6e5006ca3c440fc79afd02297be1f7ee --- /dev/null +++ b/timecost/n11/tabdiff/tabdiff-n11-20260430_234952/tabular_bundle/pipeline_n11/y_test.npy @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:95905dd042874f4c4e7523f7525b2864e220ef3c6fcdc58877ca3944645899cf +size 121848 diff --git a/timecost/n11/tabdiff/tabdiff-n11-20260430_234952/tabular_bundle/pipeline_n11/y_train.npy b/timecost/n11/tabdiff/tabdiff-n11-20260430_234952/tabular_bundle/pipeline_n11/y_train.npy new file mode 100644 index 0000000000000000000000000000000000000000..b523a92a6e5006ca3c440fc79afd02297be1f7ee --- /dev/null +++ b/timecost/n11/tabdiff/tabdiff-n11-20260430_234952/tabular_bundle/pipeline_n11/y_train.npy @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:95905dd042874f4c4e7523f7525b2864e220ef3c6fcdc58877ca3944645899cf +size 121848 diff --git a/timecost/n11/tabdiff/tabdiff-n11-20260430_234952/tabular_bundle/pipeline_n11/y_val.npy b/timecost/n11/tabdiff/tabdiff-n11-20260430_234952/tabular_bundle/pipeline_n11/y_val.npy new file mode 100644 index 0000000000000000000000000000000000000000..b523a92a6e5006ca3c440fc79afd02297be1f7ee --- /dev/null +++ b/timecost/n11/tabdiff/tabdiff-n11-20260430_234952/tabular_bundle/pipeline_n11/y_val.npy @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:95905dd042874f4c4e7523f7525b2864e220ef3c6fcdc58877ca3944645899cf +size 121848 diff --git a/timecost/n11/tabdiff/tabdiff-n11-20260430_234952/train_20260430_234953.log b/timecost/n11/tabdiff/tabdiff-n11-20260430_234952/train_20260430_234953.log new file mode 100644 index 0000000000000000000000000000000000000000..3cfec3f6bf644df4cfeae0e2797ff65a1f39a2b6 --- /dev/null +++ b/timecost/n11/tabdiff/tabdiff-n11-20260430_234952/train_20260430_234953.log @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:a49888b32205527eafc4ffb5eba65de4c5caf474e94ca2890a41b99d0c0e2e4f +size 523301 diff --git a/timecost/n11/tabdiff/tabdiff-n11-20260501_040258/_tabdiff_gen.py b/timecost/n11/tabdiff/tabdiff-n11-20260501_040258/_tabdiff_gen.py new file mode 100644 index 0000000000000000000000000000000000000000..809de068f16506c7cee58d03ebaf82e49dee8590 --- /dev/null +++ b/timecost/n11/tabdiff/tabdiff-n11-20260501_040258/_tabdiff_gen.py @@ -0,0 +1,36 @@ + +import os, shutil, subprocess, sys +td = r"/workspace/TabDiff" +name = r"pipeline_n11" +src = r"/work/output-Benchmark-trainonly-v1/n11/tabdiff/tabdiff-n11-20260501_040258/tabular_bundle/pipeline_n11" +dst_data = os.path.join(td, "data", name) +dst_syn = os.path.join(td, "synthetic", name) +shutil.rmtree(dst_data, ignore_errors=True) +shutil.copytree(src, dst_data) +os.makedirs(dst_syn, exist_ok=True) +for fn in ("real.csv", "test.csv", "val.csv"): + shutil.copy(os.path.join(src, fn), os.path.join(dst_syn, fn)) +os.chdir(td) +os.environ["PYTHONPATH"] = td + os.pathsep + os.environ.get("PYTHONPATH", "") +subprocess.check_call([ + sys.executable, "-m", "tabdiff.main", + "--dataname", name, "--mode", "test", "--gpu", "0", + "--no_wandb", "--exp_name", r"adapter_learnable", + "--ckpt_path", r"/workspace/TabDiff/tabdiff/ckpt/pipeline_n11/adapter_learnable/model_500.pt", + "--num_samples_to_generate", str(int(15215)), +]) +# test() 写入 tabdiff/result////samples.csv +import glob as g +base = os.path.join(td, "tabdiff", "result", name, r"adapter_learnable") +best = None +best_t = -1.0 +for root, _, files in os.walk(base): + if "samples.csv" in files: + p = os.path.join(root, "samples.csv") + t = os.path.getmtime(p) + if t > best_t: + best_t = t + best = p +if not best: + raise SystemExit("tabdiff: no samples.csv under " + base) +shutil.copy(best, r"/work/output-Benchmark-trainonly-v1/n11/tabdiff/tabdiff-n11-20260501_040258/tabdiff-n11-15215-20260501_041026.csv") diff --git a/timecost/n11/tabdiff/tabdiff-n11-20260501_040258/_tabdiff_train.py b/timecost/n11/tabdiff/tabdiff-n11-20260501_040258/_tabdiff_train.py new file mode 100644 index 0000000000000000000000000000000000000000..94dc7809d0ecd56e23f1083d62d52826290360ea --- /dev/null +++ b/timecost/n11/tabdiff/tabdiff-n11-20260501_040258/_tabdiff_train.py @@ -0,0 +1,21 @@ + +import os, shutil, subprocess, sys +td = r"/workspace/TabDiff" +name = r"pipeline_n11" +src = r"/work/output-Benchmark-trainonly-v1/n11/tabdiff/tabdiff-n11-20260501_040258/tabular_bundle/pipeline_n11" +dst_data = os.path.join(td, "data", name) +dst_syn = os.path.join(td, "synthetic", name) +shutil.rmtree(dst_data, ignore_errors=True) +shutil.copytree(src, dst_data) +os.makedirs(dst_syn, exist_ok=True) +for fn in ("real.csv", "test.csv", "val.csv"): + shutil.copy(os.path.join(src, fn), os.path.join(dst_syn, fn)) +os.chdir(td) +os.environ["PYTHONPATH"] = td + os.pathsep + os.environ.get("PYTHONPATH", "") +os.environ["TABDIFF_SMOKE_STEPS"] = "500" +os.environ["TABDIFF_ADAPTER_TRAIN"] = "1" +subprocess.check_call([ + sys.executable, "-m", "tabdiff.main", + "--dataname", name, "--mode", "train", "--gpu", "0", + "--no_wandb", "--exp_name", r"adapter_learnable", +]) diff --git a/timecost/n11/tabdiff/tabdiff-n11-20260501_040258/gen_20260501_041026.log b/timecost/n11/tabdiff/tabdiff-n11-20260501_040258/gen_20260501_041026.log new file mode 100644 index 0000000000000000000000000000000000000000..9701a22cbf2b0bebbb2a5e537e45d3bbe3593b10 --- /dev/null +++ b/timecost/n11/tabdiff/tabdiff-n11-20260501_040258/gen_20260501_041026.log @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:d5f2b9b75de54caa7e8c92b60117e3990f0f02a36ea983f8003b0d16a152c627 +size 5236 diff --git a/timecost/n11/tabdiff/tabdiff-n11-20260501_040258/input_snapshot.json b/timecost/n11/tabdiff/tabdiff-n11-20260501_040258/input_snapshot.json new file mode 100644 index 0000000000000000000000000000000000000000..e86e031cc316e596dc2a104c4580467a1554cd05 --- /dev/null +++ b/timecost/n11/tabdiff/tabdiff-n11-20260501_040258/input_snapshot.json @@ -0,0 +1,36 @@ +{ + "dataset_id": "n11", + "model": "tabdiff", + "inputs": { + "train_csv": { + "path": "/data/jialinzhang/SynthesizePipeline-server/DatasetNew/n11/n11-train.csv", + "exists": true, + "size": 1197106, + "sha256": "f8253c0573a8f028c0b1e17752d214fbad956d0ace350d0dee3947f3dfafbc75" + }, + "val_csv": { + "path": "/data/jialinzhang/SynthesizePipeline-server/DatasetNew/n11/n11-val.csv", + "exists": true, + "size": 149602, + "sha256": "7bde20178eb7de9523d4df719a3b461656f5704e3a03187c8289b2299dc8e458" + }, + "test_csv": { + "path": "/data/jialinzhang/SynthesizePipeline-server/DatasetNew/n11/n11-test.csv", + "exists": true, + "size": 149859, + "sha256": "855b55969de2da1341d428edef6dedfdf0c60f016b9fa08efaf8a883af6a2c53" + }, + "profile_json": { + "path": "/data/jialinzhang/SynthesizePipeline-server/DatasetNew/artifacts/data_core/tabular/n11/n11-dataset_profile.json", + "exists": true, + "size": 5104, + "sha256": "0bd368d22598246defd33bda12c9872165f26e798cc462ec472d193f322fba07" + }, + "contract_json": { + "path": "/data/jialinzhang/SynthesizePipeline-server/DatasetNew/artifacts/data_core/tabular/n11/n11-dataset_contract_v1.json", + "exists": true, + "size": 5874, + "sha256": "ad3f01eafe9fb37754eed9be9bd058390fd3a4f54d8be4ceb4b5326a9901da9d" + } + } +} \ No newline at end of file diff --git a/timecost/n11/tabdiff/tabdiff-n11-20260501_040258/models_tabdiff/trained.pt b/timecost/n11/tabdiff/tabdiff-n11-20260501_040258/models_tabdiff/trained.pt new file mode 100644 index 0000000000000000000000000000000000000000..bc319a55a9c7152a1137f968b6fa1c735125ad11 --- /dev/null +++ b/timecost/n11/tabdiff/tabdiff-n11-20260501_040258/models_tabdiff/trained.pt @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:306660b8aad4549267c68390b017e15ddb9bc06a02c80515eb72a97ae31a81eb +size 74 diff --git a/timecost/n11/tabdiff/tabdiff-n11-20260501_040258/public_gate/normalized_schema_snapshot.json b/timecost/n11/tabdiff/tabdiff-n11-20260501_040258/public_gate/normalized_schema_snapshot.json new file mode 100644 index 0000000000000000000000000000000000000000..96904695eb041844b615aa285fda674f1da87108 --- /dev/null +++ b/timecost/n11/tabdiff/tabdiff-n11-20260501_040258/public_gate/normalized_schema_snapshot.json @@ -0,0 +1,235 @@ +{ + "dataset_id": "n11", + "target_column": "g", + "task_type": "classification", + "columns": [ + { + "name": "28.7967", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 14962, + "unique_ratio": 0.983372, + "example_values": [ + "33.9347", + "118.601", + "19.83", + "33.2691", + "13.1404" + ] + } + }, + { + "name": "16.0021", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 14662, + "unique_ratio": 0.963654, + "example_values": [ + "10.8862", + "44.2479", + "7.3303", + "9.1269", + "10.8527" + ] + } + }, + { + "name": "2.6449", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 6336, + "unique_ratio": 0.416431, + "example_values": [ + "2.5328", + "3.5558", + "2.2541", + "2.6728", + "2.1775" + ] + } + }, + { + "name": "0.3918", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 6002, + "unique_ratio": 0.394479, + "example_values": [ + "0.4047", + "0.1769", + "0.7521", + "0.4437", + "0.7708" + ] + } + }, + { + "name": "0.1982", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 4230, + "unique_ratio": 0.278015, + "example_values": [ + "0.2155", + "0.1003", + "0.4095", + "0.2553", + "0.4352" + ] + } + }, + { + "name": "27.7004", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 14996, + "unique_ratio": 0.985606, + "example_values": [ + "-25.0369", + "-95.8266", + "2.8528", + "12.3981", + "14.3006" + ] + } + }, + { + "name": "22.011", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 14984, + "unique_ratio": 0.984818, + "example_values": [ + "-23.1659", + "14.9809", + "-9.7666", + "19.9081", + "-3.6418" + ] + } + }, + { + "name": "-8.2027", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 14795, + "unique_ratio": 0.972396, + "example_values": [ + "3.492", + "29.3812", + "5.0346", + "-5.3204", + "-11.3646" + ] + } + }, + { + "name": "40.092", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 14518, + "unique_ratio": 0.95419, + "example_values": [ + "0.334", + "4.134", + "13.794", + "20.78", + "20.124" + ] + } + }, + { + "name": "81.8828", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 14824, + "unique_ratio": 0.974302, + "example_values": [ + "132.907", + "286.69", + "108.464", + "180.4168", + "222.525" + ] + } + }, + { + "name": "g", + "role": "target", + "semantic_type": "categorical", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 2, + "unique_ratio": 0.000131, + "example_values": [ + "g", + "h" + ] + } + } + ] +} \ No newline at end of file diff --git a/timecost/n11/tabdiff/tabdiff-n11-20260501_040258/public_gate/public_gate_report.json b/timecost/n11/tabdiff/tabdiff-n11-20260501_040258/public_gate/public_gate_report.json new file mode 100644 index 0000000000000000000000000000000000000000..4864c3fc29664a3b44991534165974fed3741dfa --- /dev/null +++ b/timecost/n11/tabdiff/tabdiff-n11-20260501_040258/public_gate/public_gate_report.json @@ -0,0 +1,37 @@ +{ + "dataset_id": "n11", + "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": "g", + "task_type": "classification", + "input_splits": { + "train": "/data/jialinzhang/SynthesizePipeline-server/DatasetNew/n11/n11-train.csv", + "val": "/data/jialinzhang/SynthesizePipeline-server/DatasetNew/n11/n11-val.csv", + "test": "/data/jialinzhang/SynthesizePipeline-server/DatasetNew/n11/n11-test.csv" + } +} \ No newline at end of file diff --git a/timecost/n11/tabdiff/tabdiff-n11-20260501_040258/public_gate/staged_input_manifest.json b/timecost/n11/tabdiff/tabdiff-n11-20260501_040258/public_gate/staged_input_manifest.json new file mode 100644 index 0000000000000000000000000000000000000000..b65fe8a8d3ca73bc62daf5752d43b8312f06fd87 --- /dev/null +++ b/timecost/n11/tabdiff/tabdiff-n11-20260501_040258/public_gate/staged_input_manifest.json @@ -0,0 +1,240 @@ +{ + "dataset_id": "n11", + "target_column": "g", + "task_type": "classification", + "train_csv": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/n11/tabdiff/tabdiff-n11-20260501_040258/staged/public/train.csv", + "val_csv": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/n11/tabdiff/tabdiff-n11-20260501_040258/staged/public/val.csv", + "test_csv": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/n11/tabdiff/tabdiff-n11-20260501_040258/staged/public/test.csv", + "features_json": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/n11/tabdiff/tabdiff-n11-20260501_040258/staged/public/staged_features.json", + "public_gate_report": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/n11/tabdiff/tabdiff-n11-20260501_040258/public_gate/public_gate_report.json", + "column_schema": [ + { + "name": "28.7967", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 14962, + "unique_ratio": 0.983372, + "example_values": [ + "33.9347", + "118.601", + "19.83", + "33.2691", + "13.1404" + ] + } + }, + { + "name": "16.0021", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 14662, + "unique_ratio": 0.963654, + "example_values": [ + "10.8862", + "44.2479", + "7.3303", + "9.1269", + "10.8527" + ] + } + }, + { + "name": "2.6449", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 6336, + "unique_ratio": 0.416431, + "example_values": [ + "2.5328", + "3.5558", + "2.2541", + "2.6728", + "2.1775" + ] + } + }, + { + "name": "0.3918", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 6002, + "unique_ratio": 0.394479, + "example_values": [ + "0.4047", + "0.1769", + "0.7521", + "0.4437", + "0.7708" + ] + } + }, + { + "name": "0.1982", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 4230, + "unique_ratio": 0.278015, + "example_values": [ + "0.2155", + "0.1003", + "0.4095", + "0.2553", + "0.4352" + ] + } + }, + { + "name": "27.7004", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 14996, + "unique_ratio": 0.985606, + "example_values": [ + "-25.0369", + "-95.8266", + "2.8528", + "12.3981", + "14.3006" + ] + } + }, + { + "name": "22.011", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 14984, + "unique_ratio": 0.984818, + "example_values": [ + "-23.1659", + "14.9809", + "-9.7666", + "19.9081", + "-3.6418" + ] + } + }, + { + "name": "-8.2027", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 14795, + "unique_ratio": 0.972396, + "example_values": [ + "3.492", + "29.3812", + "5.0346", + "-5.3204", + "-11.3646" + ] + } + }, + { + "name": "40.092", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 14518, + "unique_ratio": 0.95419, + "example_values": [ + "0.334", + "4.134", + "13.794", + "20.78", + "20.124" + ] + } + }, + { + "name": "81.8828", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 14824, + "unique_ratio": 0.974302, + "example_values": [ + "132.907", + "286.69", + "108.464", + "180.4168", + "222.525" + ] + } + }, + { + "name": "g", + "role": "target", + "semantic_type": "categorical", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 2, + "unique_ratio": 0.000131, + "example_values": [ + "g", + "h" + ] + } + } + ] +} \ No newline at end of file diff --git a/timecost/n11/tabdiff/tabdiff-n11-20260501_040258/runtime_result.json b/timecost/n11/tabdiff/tabdiff-n11-20260501_040258/runtime_result.json new file mode 100644 index 0000000000000000000000000000000000000000..8d7a233bba4f51bb1b5f742aaaa040e4ee642dfb --- /dev/null +++ b/timecost/n11/tabdiff/tabdiff-n11-20260501_040258/runtime_result.json @@ -0,0 +1,27 @@ +{ + "dataset_id": "n11", + "model": "tabdiff", + "run_id": "tabdiff-n11-20260501_040258", + "public_gate_status": "pass", + "adapter_ready_status": "pass", + "train_status": "success", + "generate_status": "success", + "reason_code": null, + "reason_detail": null, + "artifacts": { + "synthetic_csv": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/n11/tabdiff/tabdiff-n11-20260501_040258/tabdiff-n11-15215-20260501_041026.csv", + "model_path": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/n11/tabdiff/tabdiff-n11-20260501_040258/models_tabdiff/trained.pt" + }, + "timings": { + "train": { + "started_at": "2026-05-01T04:02:58", + "ended_at": "2026-05-01T04:10:26", + "duration_sec": 448.53 + }, + "generate": { + "started_at": "2026-05-01T04:10:26", + "ended_at": "2026-05-01T04:10:37", + "duration_sec": 10.364 + } + } +} \ No newline at end of file diff --git a/timecost/n11/tabdiff/tabdiff-n11-20260501_040258/staged/public/staged_features.json b/timecost/n11/tabdiff/tabdiff-n11-20260501_040258/staged/public/staged_features.json new file mode 100644 index 0000000000000000000000000000000000000000..bdb9c28b9d52f06368851a08caadc305035fc1b7 --- /dev/null +++ b/timecost/n11/tabdiff/tabdiff-n11-20260501_040258/staged/public/staged_features.json @@ -0,0 +1,57 @@ +[ + { + "feature_name": "28.7967", + "data_type": "continuous", + "is_target": false + }, + { + "feature_name": "16.0021", + "data_type": "continuous", + "is_target": false + }, + { + "feature_name": "2.6449", + "data_type": "continuous", + "is_target": false + }, + { + "feature_name": "0.3918", + "data_type": "continuous", + "is_target": false + }, + { + "feature_name": "0.1982", + "data_type": "continuous", + "is_target": false + }, + { + "feature_name": "27.7004", + "data_type": "continuous", + "is_target": false + }, + { + "feature_name": "22.011", + "data_type": "continuous", + "is_target": false + }, + { + "feature_name": "-8.2027", + "data_type": "continuous", + "is_target": false + }, + { + "feature_name": "40.092", + "data_type": "continuous", + "is_target": false + }, + { + "feature_name": "81.8828", + "data_type": "continuous", + "is_target": false + }, + { + "feature_name": "g", + "data_type": "categorical", + "is_target": true + } +] \ No newline at end of file diff --git a/timecost/n11/tabdiff/tabdiff-n11-20260501_040258/staged/public/test.csv b/timecost/n11/tabdiff/tabdiff-n11-20260501_040258/staged/public/test.csv new file mode 100644 index 0000000000000000000000000000000000000000..59e413eb15b50a2ac49cd95bbe57b0d0018ccf95 --- /dev/null +++ b/timecost/n11/tabdiff/tabdiff-n11-20260501_040258/staged/public/test.csv @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:bf4e935f84569b849b662718eaa19be605037d46a5f7391f164728d6d9c3bb50 +size 148017 diff --git a/timecost/n11/tabdiff/tabdiff-n11-20260501_040258/staged/public/train.csv b/timecost/n11/tabdiff/tabdiff-n11-20260501_040258/staged/public/train.csv new file mode 100644 index 0000000000000000000000000000000000000000..cc5acd9fe00e8a233592b4da9797300adc83744b --- /dev/null +++ b/timecost/n11/tabdiff/tabdiff-n11-20260501_040258/staged/public/train.csv @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:3ab621ac8239797506ce800c1409422452b8127da93add91dd9e6d63ddeec6f7 +size 1182326 diff --git a/timecost/n11/tabdiff/tabdiff-n11-20260501_040258/staged/public/val.csv b/timecost/n11/tabdiff/tabdiff-n11-20260501_040258/staged/public/val.csv new file mode 100644 index 0000000000000000000000000000000000000000..e0a3b6ab9c53a7f8d97dff3290e643431f9ad023 --- /dev/null +++ b/timecost/n11/tabdiff/tabdiff-n11-20260501_040258/staged/public/val.csv @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:374e44edf25e58ca37eabbef0485c98cecdbdfa9d24da738937f404840bfad44 +size 147784 diff --git a/timecost/n11/tabdiff/tabdiff-n11-20260501_040258/staged/tabdiff/adapter_report.json b/timecost/n11/tabdiff/tabdiff-n11-20260501_040258/staged/tabdiff/adapter_report.json new file mode 100644 index 0000000000000000000000000000000000000000..31b5ff3e0618f8fe9ee7a990367d6bcdb305fb5a --- /dev/null +++ b/timecost/n11/tabdiff/tabdiff-n11-20260501_040258/staged/tabdiff/adapter_report.json @@ -0,0 +1,7 @@ +{ + "adapter_ready_status": "pass", + "adapter_fail_reason_code": null, + "adapter_fail_detail": null, + "adapter_transforms_applied": [], + "model_input_manifest": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/n11/tabdiff/tabdiff-n11-20260501_040258/staged/tabdiff/model_input_manifest.json" +} \ No newline at end of file diff --git a/timecost/n11/tabdiff/tabdiff-n11-20260501_040258/staged/tabdiff/adapter_transforms_applied.json b/timecost/n11/tabdiff/tabdiff-n11-20260501_040258/staged/tabdiff/adapter_transforms_applied.json new file mode 100644 index 0000000000000000000000000000000000000000..0637a088a01e8ddab3bf3fa98dbe804cbde1a0dc --- /dev/null +++ b/timecost/n11/tabdiff/tabdiff-n11-20260501_040258/staged/tabdiff/adapter_transforms_applied.json @@ -0,0 +1 @@ +[] \ No newline at end of file diff --git a/timecost/n11/tabdiff/tabdiff-n11-20260501_040258/staged/tabdiff/model_input_manifest.json b/timecost/n11/tabdiff/tabdiff-n11-20260501_040258/staged/tabdiff/model_input_manifest.json new file mode 100644 index 0000000000000000000000000000000000000000..b6ec5545c1eacf5eccd1b6f0b5a8dc1c10b00382 --- /dev/null +++ b/timecost/n11/tabdiff/tabdiff-n11-20260501_040258/staged/tabdiff/model_input_manifest.json @@ -0,0 +1,242 @@ +{ + "dataset_id": "n11", + "model": "tabdiff", + "target_column": "g", + "task_type": "classification", + "column_schema": [ + { + "name": "28.7967", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 14962, + "unique_ratio": 0.983372, + "example_values": [ + "33.9347", + "118.601", + "19.83", + "33.2691", + "13.1404" + ] + } + }, + { + "name": "16.0021", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 14662, + "unique_ratio": 0.963654, + "example_values": [ + "10.8862", + "44.2479", + "7.3303", + "9.1269", + "10.8527" + ] + } + }, + { + "name": "2.6449", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 6336, + "unique_ratio": 0.416431, + "example_values": [ + "2.5328", + "3.5558", + "2.2541", + "2.6728", + "2.1775" + ] + } + }, + { + "name": "0.3918", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 6002, + "unique_ratio": 0.394479, + "example_values": [ + "0.4047", + "0.1769", + "0.7521", + "0.4437", + "0.7708" + ] + } + }, + { + "name": "0.1982", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 4230, + "unique_ratio": 0.278015, + "example_values": [ + "0.2155", + "0.1003", + "0.4095", + "0.2553", + "0.4352" + ] + } + }, + { + "name": "27.7004", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 14996, + "unique_ratio": 0.985606, + "example_values": [ + "-25.0369", + "-95.8266", + "2.8528", + "12.3981", + "14.3006" + ] + } + }, + { + "name": "22.011", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 14984, + "unique_ratio": 0.984818, + "example_values": [ + "-23.1659", + "14.9809", + "-9.7666", + "19.9081", + "-3.6418" + ] + } + }, + { + "name": "-8.2027", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 14795, + "unique_ratio": 0.972396, + "example_values": [ + "3.492", + "29.3812", + "5.0346", + "-5.3204", + "-11.3646" + ] + } + }, + { + "name": "40.092", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 14518, + "unique_ratio": 0.95419, + "example_values": [ + "0.334", + "4.134", + "13.794", + "20.78", + "20.124" + ] + } + }, + { + "name": "81.8828", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 14824, + "unique_ratio": 0.974302, + "example_values": [ + "132.907", + "286.69", + "108.464", + "180.4168", + "222.525" + ] + } + }, + { + "name": "g", + "role": "target", + "semantic_type": "categorical", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 2, + "unique_ratio": 0.000131, + "example_values": [ + "g", + "h" + ] + } + } + ], + "public_manifest": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/n11/tabdiff/tabdiff-n11-20260501_040258/public_gate/staged_input_manifest.json", + "train_csv": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/n11/tabdiff/tabdiff-n11-20260501_040258/staged/public/train.csv", + "val_csv": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/n11/tabdiff/tabdiff-n11-20260501_040258/staged/public/val.csv", + "test_csv": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/n11/tabdiff/tabdiff-n11-20260501_040258/staged/public/test.csv", + "features_json": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/n11/tabdiff/tabdiff-n11-20260501_040258/staged/public/staged_features.json", + "public_gate_report": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/n11/tabdiff/tabdiff-n11-20260501_040258/public_gate/public_gate_report.json" +} \ No newline at end of file diff --git a/timecost/n11/tabdiff/tabdiff-n11-20260501_040258/tabdiff-n11-15215-20260501_041026.csv b/timecost/n11/tabdiff/tabdiff-n11-20260501_040258/tabdiff-n11-15215-20260501_041026.csv new file mode 100644 index 0000000000000000000000000000000000000000..30269b3df9458b8705fde1cb586ad7f55f9ae003 --- /dev/null +++ b/timecost/n11/tabdiff/tabdiff-n11-20260501_040258/tabdiff-n11-15215-20260501_041026.csv @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:576e8425aa9ea4f00dd27e2a5f162d1420a6ee0aed944378b07e4b3e880c280e +size 1556100 diff --git a/timecost/n11/tabdiff/tabdiff-n11-20260501_040258/tabdiff_train_meta.json b/timecost/n11/tabdiff/tabdiff-n11-20260501_040258/tabdiff_train_meta.json new file mode 100644 index 0000000000000000000000000000000000000000..5fd68e31368d3de1f6ae27463d42e56d6e24151a --- /dev/null +++ b/timecost/n11/tabdiff/tabdiff-n11-20260501_040258/tabdiff_train_meta.json @@ -0,0 +1,5 @@ +{ + "exp_name": "adapter_learnable", + "dataname": "pipeline_n11", + "steps": 500 +} \ No newline at end of file diff --git a/timecost/n11/tabdiff/tabdiff-n11-20260501_040258/tabular_bundle/pipeline_n11/X_cat_test.npy b/timecost/n11/tabdiff/tabdiff-n11-20260501_040258/tabular_bundle/pipeline_n11/X_cat_test.npy new file mode 100644 index 0000000000000000000000000000000000000000..b7c97eed0415cd5025177b10e0386f1711d421bf --- /dev/null +++ b/timecost/n11/tabdiff/tabdiff-n11-20260501_040258/tabular_bundle/pipeline_n11/X_cat_test.npy @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:cbf8a68ea367fd7a99272b102465a0e5154a3d819c3ce2787e7dad22a291cbc8 +size 128 diff --git a/timecost/n11/tabdiff/tabdiff-n11-20260501_040258/tabular_bundle/pipeline_n11/X_cat_train.npy b/timecost/n11/tabdiff/tabdiff-n11-20260501_040258/tabular_bundle/pipeline_n11/X_cat_train.npy new file mode 100644 index 0000000000000000000000000000000000000000..b7c97eed0415cd5025177b10e0386f1711d421bf --- /dev/null +++ b/timecost/n11/tabdiff/tabdiff-n11-20260501_040258/tabular_bundle/pipeline_n11/X_cat_train.npy @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:cbf8a68ea367fd7a99272b102465a0e5154a3d819c3ce2787e7dad22a291cbc8 +size 128 diff --git a/timecost/n11/tabdiff/tabdiff-n11-20260501_040258/tabular_bundle/pipeline_n11/X_cat_val.npy b/timecost/n11/tabdiff/tabdiff-n11-20260501_040258/tabular_bundle/pipeline_n11/X_cat_val.npy new file mode 100644 index 0000000000000000000000000000000000000000..b7c97eed0415cd5025177b10e0386f1711d421bf --- /dev/null +++ b/timecost/n11/tabdiff/tabdiff-n11-20260501_040258/tabular_bundle/pipeline_n11/X_cat_val.npy @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:cbf8a68ea367fd7a99272b102465a0e5154a3d819c3ce2787e7dad22a291cbc8 +size 128 diff --git a/timecost/n11/tabdiff/tabdiff-n11-20260501_040258/tabular_bundle/pipeline_n11/X_num_test.npy b/timecost/n11/tabdiff/tabdiff-n11-20260501_040258/tabular_bundle/pipeline_n11/X_num_test.npy new file mode 100644 index 0000000000000000000000000000000000000000..cda65645f7509c4b59dba4a620ca6db54dcdbe84 --- /dev/null +++ b/timecost/n11/tabdiff/tabdiff-n11-20260501_040258/tabular_bundle/pipeline_n11/X_num_test.npy @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:013e32900eef106da63d972b40b61296d91c04d1ce8196fd0cb8d54081f58c59 +size 608728 diff --git a/timecost/n11/tabdiff/tabdiff-n11-20260501_040258/tabular_bundle/pipeline_n11/X_num_train.npy b/timecost/n11/tabdiff/tabdiff-n11-20260501_040258/tabular_bundle/pipeline_n11/X_num_train.npy new file mode 100644 index 0000000000000000000000000000000000000000..cda65645f7509c4b59dba4a620ca6db54dcdbe84 --- /dev/null +++ b/timecost/n11/tabdiff/tabdiff-n11-20260501_040258/tabular_bundle/pipeline_n11/X_num_train.npy @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:013e32900eef106da63d972b40b61296d91c04d1ce8196fd0cb8d54081f58c59 +size 608728 diff --git a/timecost/n11/tabdiff/tabdiff-n11-20260501_040258/tabular_bundle/pipeline_n11/X_num_val.npy b/timecost/n11/tabdiff/tabdiff-n11-20260501_040258/tabular_bundle/pipeline_n11/X_num_val.npy new file mode 100644 index 0000000000000000000000000000000000000000..cda65645f7509c4b59dba4a620ca6db54dcdbe84 --- /dev/null +++ b/timecost/n11/tabdiff/tabdiff-n11-20260501_040258/tabular_bundle/pipeline_n11/X_num_val.npy @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:013e32900eef106da63d972b40b61296d91c04d1ce8196fd0cb8d54081f58c59 +size 608728 diff --git a/timecost/n11/tabdiff/tabdiff-n11-20260501_040258/tabular_bundle/pipeline_n11/info.json b/timecost/n11/tabdiff/tabdiff-n11-20260501_040258/tabular_bundle/pipeline_n11/info.json new file mode 100644 index 0000000000000000000000000000000000000000..8dede00c7573115ecad8ea0c12760f23897a9c6e --- /dev/null +++ b/timecost/n11/tabdiff/tabdiff-n11-20260501_040258/tabular_bundle/pipeline_n11/info.json @@ -0,0 +1,130 @@ +{ + "name": "pipeline_n11", + "task_type": "binclass", + "n_num_features": 10, + "n_cat_features": 0, + "train_size": 15215, + "test_num": 15215, + "val_num": 15215, + "train_num": 15215, + "bundle_note": "val/test matrices are train copies (train-only policy; no real held-out rows).", + "num_col_idx": [ + 0, + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9 + ], + "cat_col_idx": [], + "target_col_idx": [ + 10 + ], + "column_names": [ + "28.7967", + "16.0021", + "2.6449", + "0.3918", + "0.1982", + "27.7004", + "22.011", + "-8.2027", + "40.092", + "81.8828", + "g" + ], + "int_col_idx": [], + "int_columns": [], + "int_col_idx_wrt_num": [], + "metadata": { + "columns": { + "0": { + "sdtype": "numerical", + "computer_representation": "Float" + }, + "1": { + "sdtype": "numerical", + "computer_representation": "Float" + }, + "2": { + "sdtype": "numerical", + "computer_representation": "Float" + }, + "3": { + "sdtype": "numerical", + "computer_representation": "Float" + }, + "4": { + "sdtype": "numerical", + "computer_representation": "Float" + }, + "5": { + "sdtype": "numerical", + "computer_representation": "Float" + }, + "6": { + "sdtype": "numerical", + "computer_representation": "Float" + }, + "7": { + "sdtype": "numerical", + "computer_representation": "Float" + }, + "8": { + "sdtype": "numerical", + "computer_representation": "Float" + }, + "9": { + "sdtype": "numerical", + "computer_representation": "Float" + }, + "10": { + "sdtype": "categorical" + } + } + }, + "idx_mapping": { + "0": 0, + "1": 1, + "2": 2, + "3": 3, + "4": 4, + "5": 5, + "6": 6, + "7": 7, + "8": 8, + "9": 9, + "10": 10 + }, + "inverse_idx_mapping": { + "0": 0, + "1": 1, + "2": 2, + "3": 3, + "4": 4, + "5": 5, + "6": 6, + "7": 7, + "8": 8, + "9": 9, + "10": 10 + }, + "idx_name_mapping": { + "0": "28.7967", + "1": "16.0021", + "2": "2.6449", + "3": "0.3918", + "4": "0.1982", + "5": "27.7004", + "6": "22.011", + "7": "-8.2027", + "8": "40.092", + "9": "81.8828", + "10": "g" + }, + "n_classes": 2 +} \ No newline at end of file diff --git a/timecost/n11/tabdiff/tabdiff-n11-20260501_040258/tabular_bundle/pipeline_n11/real.csv b/timecost/n11/tabdiff/tabdiff-n11-20260501_040258/tabular_bundle/pipeline_n11/real.csv new file mode 100644 index 0000000000000000000000000000000000000000..ad710af40c20fcac02dcc1a7eda34501837630ab --- /dev/null +++ b/timecost/n11/tabdiff/tabdiff-n11-20260501_040258/tabular_bundle/pipeline_n11/real.csv @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:a5a26bcf891889ab181b51c78874919e692e1dd11105321414e234d3ba7217a2 +size 1182272 diff --git a/timecost/n11/tabdiff/tabdiff-n11-20260501_040258/tabular_bundle/pipeline_n11/test.csv b/timecost/n11/tabdiff/tabdiff-n11-20260501_040258/tabular_bundle/pipeline_n11/test.csv new file mode 100644 index 0000000000000000000000000000000000000000..ad710af40c20fcac02dcc1a7eda34501837630ab --- /dev/null +++ b/timecost/n11/tabdiff/tabdiff-n11-20260501_040258/tabular_bundle/pipeline_n11/test.csv @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:a5a26bcf891889ab181b51c78874919e692e1dd11105321414e234d3ba7217a2 +size 1182272 diff --git a/timecost/n11/tabdiff/tabdiff-n11-20260501_040258/tabular_bundle/pipeline_n11/val.csv b/timecost/n11/tabdiff/tabdiff-n11-20260501_040258/tabular_bundle/pipeline_n11/val.csv new file mode 100644 index 0000000000000000000000000000000000000000..ad710af40c20fcac02dcc1a7eda34501837630ab --- /dev/null +++ b/timecost/n11/tabdiff/tabdiff-n11-20260501_040258/tabular_bundle/pipeline_n11/val.csv @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:a5a26bcf891889ab181b51c78874919e692e1dd11105321414e234d3ba7217a2 +size 1182272 diff --git a/timecost/n11/tabdiff/tabdiff-n11-20260501_040258/tabular_bundle/pipeline_n11/y_test.npy b/timecost/n11/tabdiff/tabdiff-n11-20260501_040258/tabular_bundle/pipeline_n11/y_test.npy new file mode 100644 index 0000000000000000000000000000000000000000..b523a92a6e5006ca3c440fc79afd02297be1f7ee --- /dev/null +++ b/timecost/n11/tabdiff/tabdiff-n11-20260501_040258/tabular_bundle/pipeline_n11/y_test.npy @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:95905dd042874f4c4e7523f7525b2864e220ef3c6fcdc58877ca3944645899cf +size 121848 diff --git a/timecost/n11/tabdiff/tabdiff-n11-20260501_040258/tabular_bundle/pipeline_n11/y_train.npy b/timecost/n11/tabdiff/tabdiff-n11-20260501_040258/tabular_bundle/pipeline_n11/y_train.npy new file mode 100644 index 0000000000000000000000000000000000000000..b523a92a6e5006ca3c440fc79afd02297be1f7ee --- /dev/null +++ b/timecost/n11/tabdiff/tabdiff-n11-20260501_040258/tabular_bundle/pipeline_n11/y_train.npy @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:95905dd042874f4c4e7523f7525b2864e220ef3c6fcdc58877ca3944645899cf +size 121848 diff --git a/timecost/n11/tabdiff/tabdiff-n11-20260501_040258/tabular_bundle/pipeline_n11/y_val.npy b/timecost/n11/tabdiff/tabdiff-n11-20260501_040258/tabular_bundle/pipeline_n11/y_val.npy new file mode 100644 index 0000000000000000000000000000000000000000..b523a92a6e5006ca3c440fc79afd02297be1f7ee --- /dev/null +++ b/timecost/n11/tabdiff/tabdiff-n11-20260501_040258/tabular_bundle/pipeline_n11/y_val.npy @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:95905dd042874f4c4e7523f7525b2864e220ef3c6fcdc58877ca3944645899cf +size 121848 diff --git a/timecost/n11/tabdiff/tabdiff-n11-20260501_040258/train_20260501_040258.log b/timecost/n11/tabdiff/tabdiff-n11-20260501_040258/train_20260501_040258.log new file mode 100644 index 0000000000000000000000000000000000000000..9fd2528173426ec90da5bc04c5a48537be0a80d8 --- /dev/null +++ b/timecost/n11/tabdiff/tabdiff-n11-20260501_040258/train_20260501_040258.log @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:f1764cc5d7712c6440ab22a5f8591e7d131aca91949b3b159b5fc72971cd89e3 +size 523020 diff --git a/timecost/n11/tabpfgen/tabpfgen-n11-20260501_000122/_tabpfgen_generate.py b/timecost/n11/tabpfgen/tabpfgen-n11-20260501_000122/_tabpfgen_generate.py new file mode 100644 index 0000000000000000000000000000000000000000..547bff5a218e2526f1bcbe1c053a66d5272fa0f0 --- /dev/null +++ b/timecost/n11/tabpfgen/tabpfgen-n11-20260501_000122/_tabpfgen_generate.py @@ -0,0 +1,100 @@ +import os +import numpy as np +import pandas as pd +import json +from tabpfgen import TabPFGen + +df = pd.read_csv("/work/output-Benchmark-trainonly-v1/n11/tabpfgen/tabpfgen-n11-20260501_000122/staged/public/train.csv") +target_col = "g" + +target_missing = df[target_col].isna() +if target_missing.any(): + dropped = int(target_missing.sum()) + df = df.loc[~target_missing].copy() + print( + f"[TabPFGen] Dropped {dropped} rows with missing target '{target_col}'" + ) +if df.empty: + raise ValueError( + f"[TabPFGen] No rows remain after dropping missing target '{target_col}'" + ) + +feature_cols = [c for c in df.columns if c != target_col] + +cat_encodings = {} +for col in feature_cols: + if df[col].dtype == object or str(df[col].dtype) == 'category': + cats = sorted(df[col].dropna().unique().tolist(), key=str) + cat_map = {v: i for i, v in enumerate(cats)} + df[col] = df[col].map(cat_map).astype(float) + cat_encodings[col] = cats + print(f"[TabPFGen] Label-encoded '{col}' ({len(cats)} categories)") + +target_cats = None +if df[target_col].dtype == object or str(df[target_col].dtype) == 'category': + cats = sorted(df[target_col].dropna().unique().tolist(), key=str) + t_map = {v: i for i, v in enumerate(cats)} + df[target_col] = df[target_col].map(t_map).astype(float) + target_cats = cats + print(f"[TabPFGen] Label-encoded target '{target_col}' ({len(cats)} categories)") + +X = df[feature_cols].values.astype(np.float32) +y = df[target_col].values +target_n = int(15215) + +for i in range(X.shape[1]): + col_vals = X[:, i] + mask = np.isnan(col_vals) + if mask.any(): + mean_val = np.nanmean(col_vals) + X[mask, i] = mean_val if not np.isnan(mean_val) else 0.0 + +# TabPFGen v0.1.x API:仅支持 n_sgld_steps / sgld_* / device。 +# (旧版脚本中的 energy_*_chunk 与上游 TabPFGen 不一致,会导致 TypeError。) +gen = TabPFGen( + n_sgld_steps=1000, + sgld_step_size=0.01, + sgld_noise_scale=0.01, + device="auto", +) + +print(f"[TabPFGen] Generating {target_n} rows via generate_classification") +X_syn, y_syn = gen.generate_classification(X, y, n_samples=target_n) + +syn_df = pd.DataFrame(X_syn, columns=feature_cols) +syn_df[target_col] = y_syn + +for col, cats in cat_encodings.items(): + codes = np.round(syn_df[col].values).astype(int) + codes = np.clip(codes, 0, len(cats) - 1) + syn_df[col] = [cats[c] for c in codes] + +if target_cats is not None: + codes = np.round(syn_df[target_col].values).astype(int) + codes = np.clip(codes, 0, len(target_cats) - 1) + syn_df[target_col] = [target_cats[c] for c in codes] + +if len(syn_df) > target_n: + print(f"[TabPFGen] Trimming rows: {len(syn_df)} -> {target_n}") + syn_df = syn_df.iloc[:target_n].copy() +elif len(syn_df) < target_n: + deficit = target_n - len(syn_df) + print(f"[TabPFGen] Padding rows: {len(syn_df)} -> {target_n} (deficit={deficit})") + if len(syn_df) > 0: + extra = syn_df.sample(n=deficit, replace=True, random_state=42) + syn_df = pd.concat( + [syn_df.reset_index(drop=True), extra.reset_index(drop=True)], + ignore_index=True, + ) + else: + syn_df = df[feature_cols + [target_col]].sample( + n=target_n, replace=True, random_state=42 + ).reset_index(drop=True) + +syn_df = syn_df[list(df.columns)] +if len(syn_df) != target_n: + raise RuntimeError( + f"[TabPFGen] Row alignment failed: got {len(syn_df)}, expected {target_n}" + ) +syn_df.to_csv("/work/output-Benchmark-trainonly-v1/n11/tabpfgen/tabpfgen-n11-20260501_000122/tabpfgen-n11-15215-20260501_000122.csv", index=False) +print(f"[TabPFGen] Saved {len(syn_df)} rows -> /work/output-Benchmark-trainonly-v1/n11/tabpfgen/tabpfgen-n11-20260501_000122/tabpfgen-n11-15215-20260501_000122.csv") diff --git a/timecost/n11/tabpfgen/tabpfgen-n11-20260501_000122/gen_20260501_000122.log b/timecost/n11/tabpfgen/tabpfgen-n11-20260501_000122/gen_20260501_000122.log new file mode 100644 index 0000000000000000000000000000000000000000..165ed8b6854aac93b933848cec2c7c127121d5bc --- /dev/null +++ b/timecost/n11/tabpfgen/tabpfgen-n11-20260501_000122/gen_20260501_000122.log @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:27777c291bf5dac57e10075da33af38ecec3ee82a9d4e47d0ff263e187927d3e +size 1008 diff --git a/timecost/n11/tabpfgen/tabpfgen-n11-20260501_000122/input_snapshot.json b/timecost/n11/tabpfgen/tabpfgen-n11-20260501_000122/input_snapshot.json new file mode 100644 index 0000000000000000000000000000000000000000..9d61d688ac9e7a2c5d3965067fdfc236327a6d3c --- /dev/null +++ b/timecost/n11/tabpfgen/tabpfgen-n11-20260501_000122/input_snapshot.json @@ -0,0 +1,36 @@ +{ + "dataset_id": "n11", + "model": "tabpfgen", + "inputs": { + "train_csv": { + "path": "/data/jialinzhang/SynthesizePipeline-server/DatasetNew/n11/n11-train.csv", + "exists": true, + "size": 1197106, + "sha256": "f8253c0573a8f028c0b1e17752d214fbad956d0ace350d0dee3947f3dfafbc75" + }, + "val_csv": { + "path": "/data/jialinzhang/SynthesizePipeline-server/DatasetNew/n11/n11-val.csv", + "exists": true, + "size": 149602, + "sha256": "7bde20178eb7de9523d4df719a3b461656f5704e3a03187c8289b2299dc8e458" + }, + "test_csv": { + "path": "/data/jialinzhang/SynthesizePipeline-server/DatasetNew/n11/n11-test.csv", + "exists": true, + "size": 149859, + "sha256": "855b55969de2da1341d428edef6dedfdf0c60f016b9fa08efaf8a883af6a2c53" + }, + "profile_json": { + "path": "/data/jialinzhang/SynthesizePipeline-server/DatasetNew/artifacts/data_core/tabular/n11/n11-dataset_profile.json", + "exists": true, + "size": 5104, + "sha256": "0bd368d22598246defd33bda12c9872165f26e798cc462ec472d193f322fba07" + }, + "contract_json": { + "path": "/data/jialinzhang/SynthesizePipeline-server/DatasetNew/artifacts/data_core/tabular/n11/n11-dataset_contract_v1.json", + "exists": true, + "size": 5874, + "sha256": "ad3f01eafe9fb37754eed9be9bd058390fd3a4f54d8be4ceb4b5326a9901da9d" + } + } +} \ No newline at end of file diff --git a/timecost/n11/tabpfgen/tabpfgen-n11-20260501_000122/public_gate/normalized_schema_snapshot.json b/timecost/n11/tabpfgen/tabpfgen-n11-20260501_000122/public_gate/normalized_schema_snapshot.json new file mode 100644 index 0000000000000000000000000000000000000000..96904695eb041844b615aa285fda674f1da87108 --- /dev/null +++ b/timecost/n11/tabpfgen/tabpfgen-n11-20260501_000122/public_gate/normalized_schema_snapshot.json @@ -0,0 +1,235 @@ +{ + "dataset_id": "n11", + "target_column": "g", + "task_type": "classification", + "columns": [ + { + "name": "28.7967", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 14962, + "unique_ratio": 0.983372, + "example_values": [ + "33.9347", + "118.601", + "19.83", + "33.2691", + "13.1404" + ] + } + }, + { + "name": "16.0021", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 14662, + "unique_ratio": 0.963654, + "example_values": [ + "10.8862", + "44.2479", + "7.3303", + "9.1269", + "10.8527" + ] + } + }, + { + "name": "2.6449", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 6336, + "unique_ratio": 0.416431, + "example_values": [ + "2.5328", + "3.5558", + "2.2541", + "2.6728", + "2.1775" + ] + } + }, + { + "name": "0.3918", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 6002, + "unique_ratio": 0.394479, + "example_values": [ + "0.4047", + "0.1769", + "0.7521", + "0.4437", + "0.7708" + ] + } + }, + { + "name": "0.1982", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 4230, + "unique_ratio": 0.278015, + "example_values": [ + "0.2155", + "0.1003", + "0.4095", + "0.2553", + "0.4352" + ] + } + }, + { + "name": "27.7004", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 14996, + "unique_ratio": 0.985606, + "example_values": [ + "-25.0369", + "-95.8266", + "2.8528", + "12.3981", + "14.3006" + ] + } + }, + { + "name": "22.011", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 14984, + "unique_ratio": 0.984818, + "example_values": [ + "-23.1659", + "14.9809", + "-9.7666", + "19.9081", + "-3.6418" + ] + } + }, + { + "name": "-8.2027", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 14795, + "unique_ratio": 0.972396, + "example_values": [ + "3.492", + "29.3812", + "5.0346", + "-5.3204", + "-11.3646" + ] + } + }, + { + "name": "40.092", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 14518, + "unique_ratio": 0.95419, + "example_values": [ + "0.334", + "4.134", + "13.794", + "20.78", + "20.124" + ] + } + }, + { + "name": "81.8828", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 14824, + "unique_ratio": 0.974302, + "example_values": [ + "132.907", + "286.69", + "108.464", + "180.4168", + "222.525" + ] + } + }, + { + "name": "g", + "role": "target", + "semantic_type": "categorical", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 2, + "unique_ratio": 0.000131, + "example_values": [ + "g", + "h" + ] + } + } + ] +} \ No newline at end of file diff --git a/timecost/n11/tabpfgen/tabpfgen-n11-20260501_000122/public_gate/public_gate_report.json b/timecost/n11/tabpfgen/tabpfgen-n11-20260501_000122/public_gate/public_gate_report.json new file mode 100644 index 0000000000000000000000000000000000000000..4864c3fc29664a3b44991534165974fed3741dfa --- /dev/null +++ b/timecost/n11/tabpfgen/tabpfgen-n11-20260501_000122/public_gate/public_gate_report.json @@ -0,0 +1,37 @@ +{ + "dataset_id": "n11", + "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": "g", + "task_type": "classification", + "input_splits": { + "train": "/data/jialinzhang/SynthesizePipeline-server/DatasetNew/n11/n11-train.csv", + "val": "/data/jialinzhang/SynthesizePipeline-server/DatasetNew/n11/n11-val.csv", + "test": "/data/jialinzhang/SynthesizePipeline-server/DatasetNew/n11/n11-test.csv" + } +} \ No newline at end of file diff --git a/timecost/n11/tabpfgen/tabpfgen-n11-20260501_000122/public_gate/staged_input_manifest.json b/timecost/n11/tabpfgen/tabpfgen-n11-20260501_000122/public_gate/staged_input_manifest.json new file mode 100644 index 0000000000000000000000000000000000000000..acf947db85a4c9a54c9231d02be63e0df51e4055 --- /dev/null +++ b/timecost/n11/tabpfgen/tabpfgen-n11-20260501_000122/public_gate/staged_input_manifest.json @@ -0,0 +1,240 @@ +{ + "dataset_id": "n11", + "target_column": "g", + "task_type": "classification", + "train_csv": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/n11/tabpfgen/tabpfgen-n11-20260501_000122/staged/public/train.csv", + "val_csv": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/n11/tabpfgen/tabpfgen-n11-20260501_000122/staged/public/val.csv", + "test_csv": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/n11/tabpfgen/tabpfgen-n11-20260501_000122/staged/public/test.csv", + "features_json": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/n11/tabpfgen/tabpfgen-n11-20260501_000122/staged/public/staged_features.json", + "public_gate_report": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/n11/tabpfgen/tabpfgen-n11-20260501_000122/public_gate/public_gate_report.json", + "column_schema": [ + { + "name": "28.7967", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 14962, + "unique_ratio": 0.983372, + "example_values": [ + "33.9347", + "118.601", + "19.83", + "33.2691", + "13.1404" + ] + } + }, + { + "name": "16.0021", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 14662, + "unique_ratio": 0.963654, + "example_values": [ + "10.8862", + "44.2479", + "7.3303", + "9.1269", + "10.8527" + ] + } + }, + { + "name": "2.6449", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 6336, + "unique_ratio": 0.416431, + "example_values": [ + "2.5328", + "3.5558", + "2.2541", + "2.6728", + "2.1775" + ] + } + }, + { + "name": "0.3918", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 6002, + "unique_ratio": 0.394479, + "example_values": [ + "0.4047", + "0.1769", + "0.7521", + "0.4437", + "0.7708" + ] + } + }, + { + "name": "0.1982", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 4230, + "unique_ratio": 0.278015, + "example_values": [ + "0.2155", + "0.1003", + "0.4095", + "0.2553", + "0.4352" + ] + } + }, + { + "name": "27.7004", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 14996, + "unique_ratio": 0.985606, + "example_values": [ + "-25.0369", + "-95.8266", + "2.8528", + "12.3981", + "14.3006" + ] + } + }, + { + "name": "22.011", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 14984, + "unique_ratio": 0.984818, + "example_values": [ + "-23.1659", + "14.9809", + "-9.7666", + "19.9081", + "-3.6418" + ] + } + }, + { + "name": "-8.2027", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 14795, + "unique_ratio": 0.972396, + "example_values": [ + "3.492", + "29.3812", + "5.0346", + "-5.3204", + "-11.3646" + ] + } + }, + { + "name": "40.092", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 14518, + "unique_ratio": 0.95419, + "example_values": [ + "0.334", + "4.134", + "13.794", + "20.78", + "20.124" + ] + } + }, + { + "name": "81.8828", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 14824, + "unique_ratio": 0.974302, + "example_values": [ + "132.907", + "286.69", + "108.464", + "180.4168", + "222.525" + ] + } + }, + { + "name": "g", + "role": "target", + "semantic_type": "categorical", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 2, + "unique_ratio": 0.000131, + "example_values": [ + "g", + "h" + ] + } + } + ] +} \ No newline at end of file diff --git a/timecost/n11/tabpfgen/tabpfgen-n11-20260501_000122/runtime_result.json b/timecost/n11/tabpfgen/tabpfgen-n11-20260501_000122/runtime_result.json new file mode 100644 index 0000000000000000000000000000000000000000..2ba4cb98b18301e8b08b2b2082b0d55a61e619e1 --- /dev/null +++ b/timecost/n11/tabpfgen/tabpfgen-n11-20260501_000122/runtime_result.json @@ -0,0 +1,27 @@ +{ + "dataset_id": "n11", + "model": "tabpfgen", + "run_id": "tabpfgen-n11-20260501_000122", + "public_gate_status": "pass", + "adapter_ready_status": "pass", + "train_status": "success", + "generate_status": "success", + "reason_code": null, + "reason_detail": null, + "artifacts": { + "synthetic_csv": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/n11/tabpfgen/tabpfgen-n11-20260501_000122/tabpfgen-n11-15215-20260501_000122.csv", + "model_path": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/n11/tabpfgen/tabpfgen-n11-20260501_000122" + }, + "timings": { + "train": { + "started_at": "2026-05-01T00:01:22", + "ended_at": "2026-05-01T00:01:22", + "duration_sec": 0.03 + }, + "generate": { + "started_at": "2026-05-01T00:01:22", + "ended_at": "2026-05-01T00:02:05", + "duration_sec": 43.27 + } + } +} \ No newline at end of file diff --git a/timecost/n11/tabpfgen/tabpfgen-n11-20260501_000122/staged/public/staged_features.json b/timecost/n11/tabpfgen/tabpfgen-n11-20260501_000122/staged/public/staged_features.json new file mode 100644 index 0000000000000000000000000000000000000000..bdb9c28b9d52f06368851a08caadc305035fc1b7 --- /dev/null +++ b/timecost/n11/tabpfgen/tabpfgen-n11-20260501_000122/staged/public/staged_features.json @@ -0,0 +1,57 @@ +[ + { + "feature_name": "28.7967", + "data_type": "continuous", + "is_target": false + }, + { + "feature_name": "16.0021", + "data_type": "continuous", + "is_target": false + }, + { + "feature_name": "2.6449", + "data_type": "continuous", + "is_target": false + }, + { + "feature_name": "0.3918", + "data_type": "continuous", + "is_target": false + }, + { + "feature_name": "0.1982", + "data_type": "continuous", + "is_target": false + }, + { + "feature_name": "27.7004", + "data_type": "continuous", + "is_target": false + }, + { + "feature_name": "22.011", + "data_type": "continuous", + "is_target": false + }, + { + "feature_name": "-8.2027", + "data_type": "continuous", + "is_target": false + }, + { + "feature_name": "40.092", + "data_type": "continuous", + "is_target": false + }, + { + "feature_name": "81.8828", + "data_type": "continuous", + "is_target": false + }, + { + "feature_name": "g", + "data_type": "categorical", + "is_target": true + } +] \ No newline at end of file diff --git a/timecost/n11/tabpfgen/tabpfgen-n11-20260501_000122/staged/public/test.csv b/timecost/n11/tabpfgen/tabpfgen-n11-20260501_000122/staged/public/test.csv new file mode 100644 index 0000000000000000000000000000000000000000..59e413eb15b50a2ac49cd95bbe57b0d0018ccf95 --- /dev/null +++ b/timecost/n11/tabpfgen/tabpfgen-n11-20260501_000122/staged/public/test.csv @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:bf4e935f84569b849b662718eaa19be605037d46a5f7391f164728d6d9c3bb50 +size 148017 diff --git a/timecost/n11/tabpfgen/tabpfgen-n11-20260501_000122/staged/public/train.csv b/timecost/n11/tabpfgen/tabpfgen-n11-20260501_000122/staged/public/train.csv new file mode 100644 index 0000000000000000000000000000000000000000..cc5acd9fe00e8a233592b4da9797300adc83744b --- /dev/null +++ b/timecost/n11/tabpfgen/tabpfgen-n11-20260501_000122/staged/public/train.csv @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:3ab621ac8239797506ce800c1409422452b8127da93add91dd9e6d63ddeec6f7 +size 1182326 diff --git a/timecost/n11/tabpfgen/tabpfgen-n11-20260501_000122/staged/public/val.csv b/timecost/n11/tabpfgen/tabpfgen-n11-20260501_000122/staged/public/val.csv new file mode 100644 index 0000000000000000000000000000000000000000..e0a3b6ab9c53a7f8d97dff3290e643431f9ad023 --- /dev/null +++ b/timecost/n11/tabpfgen/tabpfgen-n11-20260501_000122/staged/public/val.csv @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:374e44edf25e58ca37eabbef0485c98cecdbdfa9d24da738937f404840bfad44 +size 147784 diff --git a/timecost/n11/tabpfgen/tabpfgen-n11-20260501_000122/staged/tabpfgen/adapter_report.json b/timecost/n11/tabpfgen/tabpfgen-n11-20260501_000122/staged/tabpfgen/adapter_report.json new file mode 100644 index 0000000000000000000000000000000000000000..c3bb74361ad8a8ca0a464be27637524b46338c98 --- /dev/null +++ b/timecost/n11/tabpfgen/tabpfgen-n11-20260501_000122/staged/tabpfgen/adapter_report.json @@ -0,0 +1,7 @@ +{ + "adapter_ready_status": "pass", + "adapter_fail_reason_code": null, + "adapter_fail_detail": null, + "adapter_transforms_applied": [], + "model_input_manifest": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/n11/tabpfgen/tabpfgen-n11-20260501_000122/staged/tabpfgen/model_input_manifest.json" +} \ No newline at end of file diff --git a/timecost/n11/tabpfgen/tabpfgen-n11-20260501_000122/staged/tabpfgen/adapter_transforms_applied.json b/timecost/n11/tabpfgen/tabpfgen-n11-20260501_000122/staged/tabpfgen/adapter_transforms_applied.json new file mode 100644 index 0000000000000000000000000000000000000000..0637a088a01e8ddab3bf3fa98dbe804cbde1a0dc --- /dev/null +++ b/timecost/n11/tabpfgen/tabpfgen-n11-20260501_000122/staged/tabpfgen/adapter_transforms_applied.json @@ -0,0 +1 @@ +[] \ No newline at end of file diff --git a/timecost/n11/tabpfgen/tabpfgen-n11-20260501_000122/staged/tabpfgen/model_input_manifest.json b/timecost/n11/tabpfgen/tabpfgen-n11-20260501_000122/staged/tabpfgen/model_input_manifest.json new file mode 100644 index 0000000000000000000000000000000000000000..fa9f8c552b6dc6d198523517b3db6f4a42c6cc3f --- /dev/null +++ b/timecost/n11/tabpfgen/tabpfgen-n11-20260501_000122/staged/tabpfgen/model_input_manifest.json @@ -0,0 +1,242 @@ +{ + "dataset_id": "n11", + "model": "tabpfgen", + "target_column": "g", + "task_type": "classification", + "column_schema": [ + { + "name": "28.7967", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 14962, + "unique_ratio": 0.983372, + "example_values": [ + "33.9347", + "118.601", + "19.83", + "33.2691", + "13.1404" + ] + } + }, + { + "name": "16.0021", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 14662, + "unique_ratio": 0.963654, + "example_values": [ + "10.8862", + "44.2479", + "7.3303", + "9.1269", + "10.8527" + ] + } + }, + { + "name": "2.6449", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 6336, + "unique_ratio": 0.416431, + "example_values": [ + "2.5328", + "3.5558", + "2.2541", + "2.6728", + "2.1775" + ] + } + }, + { + "name": "0.3918", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 6002, + "unique_ratio": 0.394479, + "example_values": [ + "0.4047", + "0.1769", + "0.7521", + "0.4437", + "0.7708" + ] + } + }, + { + "name": "0.1982", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 4230, + "unique_ratio": 0.278015, + "example_values": [ + "0.2155", + "0.1003", + "0.4095", + "0.2553", + "0.4352" + ] + } + }, + { + "name": "27.7004", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 14996, + "unique_ratio": 0.985606, + "example_values": [ + "-25.0369", + "-95.8266", + "2.8528", + "12.3981", + "14.3006" + ] + } + }, + { + "name": "22.011", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 14984, + "unique_ratio": 0.984818, + "example_values": [ + "-23.1659", + "14.9809", + "-9.7666", + "19.9081", + "-3.6418" + ] + } + }, + { + "name": "-8.2027", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 14795, + "unique_ratio": 0.972396, + "example_values": [ + "3.492", + "29.3812", + "5.0346", + "-5.3204", + "-11.3646" + ] + } + }, + { + "name": "40.092", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 14518, + "unique_ratio": 0.95419, + "example_values": [ + "0.334", + "4.134", + "13.794", + "20.78", + "20.124" + ] + } + }, + { + "name": "81.8828", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 14824, + "unique_ratio": 0.974302, + "example_values": [ + "132.907", + "286.69", + "108.464", + "180.4168", + "222.525" + ] + } + }, + { + "name": "g", + "role": "target", + "semantic_type": "categorical", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 2, + "unique_ratio": 0.000131, + "example_values": [ + "g", + "h" + ] + } + } + ], + "public_manifest": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/n11/tabpfgen/tabpfgen-n11-20260501_000122/public_gate/staged_input_manifest.json", + "train_csv": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/n11/tabpfgen/tabpfgen-n11-20260501_000122/staged/public/train.csv", + "val_csv": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/n11/tabpfgen/tabpfgen-n11-20260501_000122/staged/public/val.csv", + "test_csv": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/n11/tabpfgen/tabpfgen-n11-20260501_000122/staged/public/test.csv", + "features_json": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/n11/tabpfgen/tabpfgen-n11-20260501_000122/staged/public/staged_features.json", + "public_gate_report": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/n11/tabpfgen/tabpfgen-n11-20260501_000122/public_gate/public_gate_report.json" +} \ No newline at end of file diff --git a/timecost/n11/tabpfgen/tabpfgen-n11-20260501_000122/tabpfgen-n11-15215-20260501_000122.csv b/timecost/n11/tabpfgen/tabpfgen-n11-20260501_000122/tabpfgen-n11-15215-20260501_000122.csv new file mode 100644 index 0000000000000000000000000000000000000000..602ebcb9b0d1e413ac71e097e52d33311bf8a4a3 --- /dev/null +++ b/timecost/n11/tabpfgen/tabpfgen-n11-20260501_000122/tabpfgen-n11-15215-20260501_000122.csv @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:d58653b10fd48e6cfebf5644c0c13d9bbaa786a6d84cb13059d982e505f70324 +size 1556650 diff --git a/timecost/n11/tabpfgen/tabpfgen-n11-20260501_000122/tabpfgen_meta.json b/timecost/n11/tabpfgen/tabpfgen-n11-20260501_000122/tabpfgen_meta.json new file mode 100644 index 0000000000000000000000000000000000000000..8749259251ec08abbd6eac908608aebb26d6261f --- /dev/null +++ b/timecost/n11/tabpfgen/tabpfgen-n11-20260501_000122/tabpfgen_meta.json @@ -0,0 +1,9 @@ +{ + "csv_path": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/n11/tabpfgen/tabpfgen-n11-20260501_000122/staged/public/train.csv", + "json_path": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/n11/tabpfgen/tabpfgen-n11-20260501_000122/staged/public/staged_features.json", + "target_col": "g", + "is_classification": true, + "task_type": "classification", + "n_rows": 15215, + "n_cols": 11 +} \ No newline at end of file diff --git a/timecost/n11/tabpfgen/tabpfgen-n11-20260501_000122/train_20260501_000122.log b/timecost/n11/tabpfgen/tabpfgen-n11-20260501_000122/train_20260501_000122.log new file mode 100644 index 0000000000000000000000000000000000000000..5a709c70f30aa2dfba3e7a938cf1e39c90e09434 --- /dev/null +++ b/timecost/n11/tabpfgen/tabpfgen-n11-20260501_000122/train_20260501_000122.log @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:371b80dd98fe9ee647fb1e7c10674a7d43cf70542fa5ac03fd864e97f32ddf02 +size 599 diff --git a/timecost/n11/tabpfgen/tabpfgen-n11-20260501_041043/_tabpfgen_generate.py b/timecost/n11/tabpfgen/tabpfgen-n11-20260501_041043/_tabpfgen_generate.py new file mode 100644 index 0000000000000000000000000000000000000000..b7ce6f849942260b7433bee678c13f122411f1fc --- /dev/null +++ b/timecost/n11/tabpfgen/tabpfgen-n11-20260501_041043/_tabpfgen_generate.py @@ -0,0 +1,100 @@ +import os +import numpy as np +import pandas as pd +import json +from tabpfgen import TabPFGen + +df = pd.read_csv("/work/output-Benchmark-trainonly-v1/n11/tabpfgen/tabpfgen-n11-20260501_041043/staged/public/train.csv") +target_col = "g" + +target_missing = df[target_col].isna() +if target_missing.any(): + dropped = int(target_missing.sum()) + df = df.loc[~target_missing].copy() + print( + f"[TabPFGen] Dropped {dropped} rows with missing target '{target_col}'" + ) +if df.empty: + raise ValueError( + f"[TabPFGen] No rows remain after dropping missing target '{target_col}'" + ) + +feature_cols = [c for c in df.columns if c != target_col] + +cat_encodings = {} +for col in feature_cols: + if df[col].dtype == object or str(df[col].dtype) == 'category': + cats = sorted(df[col].dropna().unique().tolist(), key=str) + cat_map = {v: i for i, v in enumerate(cats)} + df[col] = df[col].map(cat_map).astype(float) + cat_encodings[col] = cats + print(f"[TabPFGen] Label-encoded '{col}' ({len(cats)} categories)") + +target_cats = None +if df[target_col].dtype == object or str(df[target_col].dtype) == 'category': + cats = sorted(df[target_col].dropna().unique().tolist(), key=str) + t_map = {v: i for i, v in enumerate(cats)} + df[target_col] = df[target_col].map(t_map).astype(float) + target_cats = cats + print(f"[TabPFGen] Label-encoded target '{target_col}' ({len(cats)} categories)") + +X = df[feature_cols].values.astype(np.float32) +y = df[target_col].values +target_n = int(15215) + +for i in range(X.shape[1]): + col_vals = X[:, i] + mask = np.isnan(col_vals) + if mask.any(): + mean_val = np.nanmean(col_vals) + X[mask, i] = mean_val if not np.isnan(mean_val) else 0.0 + +# TabPFGen v0.1.x API:仅支持 n_sgld_steps / sgld_* / device。 +# (旧版脚本中的 energy_*_chunk 与上游 TabPFGen 不一致,会导致 TypeError。) +gen = TabPFGen( + n_sgld_steps=1000, + sgld_step_size=0.01, + sgld_noise_scale=0.01, + device="auto", +) + +print(f"[TabPFGen] Generating {target_n} rows via generate_classification") +X_syn, y_syn = gen.generate_classification(X, y, n_samples=target_n) + +syn_df = pd.DataFrame(X_syn, columns=feature_cols) +syn_df[target_col] = y_syn + +for col, cats in cat_encodings.items(): + codes = np.round(syn_df[col].values).astype(int) + codes = np.clip(codes, 0, len(cats) - 1) + syn_df[col] = [cats[c] for c in codes] + +if target_cats is not None: + codes = np.round(syn_df[target_col].values).astype(int) + codes = np.clip(codes, 0, len(target_cats) - 1) + syn_df[target_col] = [target_cats[c] for c in codes] + +if len(syn_df) > target_n: + print(f"[TabPFGen] Trimming rows: {len(syn_df)} -> {target_n}") + syn_df = syn_df.iloc[:target_n].copy() +elif len(syn_df) < target_n: + deficit = target_n - len(syn_df) + print(f"[TabPFGen] Padding rows: {len(syn_df)} -> {target_n} (deficit={deficit})") + if len(syn_df) > 0: + extra = syn_df.sample(n=deficit, replace=True, random_state=42) + syn_df = pd.concat( + [syn_df.reset_index(drop=True), extra.reset_index(drop=True)], + ignore_index=True, + ) + else: + syn_df = df[feature_cols + [target_col]].sample( + n=target_n, replace=True, random_state=42 + ).reset_index(drop=True) + +syn_df = syn_df[list(df.columns)] +if len(syn_df) != target_n: + raise RuntimeError( + f"[TabPFGen] Row alignment failed: got {len(syn_df)}, expected {target_n}" + ) +syn_df.to_csv("/work/output-Benchmark-trainonly-v1/n11/tabpfgen/tabpfgen-n11-20260501_041043/tabpfgen-n11-15215-20260501_041043.csv", index=False) +print(f"[TabPFGen] Saved {len(syn_df)} rows -> /work/output-Benchmark-trainonly-v1/n11/tabpfgen/tabpfgen-n11-20260501_041043/tabpfgen-n11-15215-20260501_041043.csv") diff --git a/timecost/n11/tabpfgen/tabpfgen-n11-20260501_041043/gen_20260501_041043.log b/timecost/n11/tabpfgen/tabpfgen-n11-20260501_041043/gen_20260501_041043.log new file mode 100644 index 0000000000000000000000000000000000000000..ef68c0952c2760370abab46fb643a8c5c9cd5758 --- /dev/null +++ b/timecost/n11/tabpfgen/tabpfgen-n11-20260501_041043/gen_20260501_041043.log @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:e4f771526ea006cf726f39ca24d68dd48a8ee5d854a1e0c9fda4cf5a58a18d6e +size 1008 diff --git a/timecost/n11/tabpfgen/tabpfgen-n11-20260501_041043/input_snapshot.json b/timecost/n11/tabpfgen/tabpfgen-n11-20260501_041043/input_snapshot.json new file mode 100644 index 0000000000000000000000000000000000000000..9d61d688ac9e7a2c5d3965067fdfc236327a6d3c --- /dev/null +++ b/timecost/n11/tabpfgen/tabpfgen-n11-20260501_041043/input_snapshot.json @@ -0,0 +1,36 @@ +{ + "dataset_id": "n11", + "model": "tabpfgen", + "inputs": { + "train_csv": { + "path": "/data/jialinzhang/SynthesizePipeline-server/DatasetNew/n11/n11-train.csv", + "exists": true, + "size": 1197106, + "sha256": "f8253c0573a8f028c0b1e17752d214fbad956d0ace350d0dee3947f3dfafbc75" + }, + "val_csv": { + "path": "/data/jialinzhang/SynthesizePipeline-server/DatasetNew/n11/n11-val.csv", + "exists": true, + "size": 149602, + "sha256": "7bde20178eb7de9523d4df719a3b461656f5704e3a03187c8289b2299dc8e458" + }, + "test_csv": { + "path": "/data/jialinzhang/SynthesizePipeline-server/DatasetNew/n11/n11-test.csv", + "exists": true, + "size": 149859, + "sha256": "855b55969de2da1341d428edef6dedfdf0c60f016b9fa08efaf8a883af6a2c53" + }, + "profile_json": { + "path": "/data/jialinzhang/SynthesizePipeline-server/DatasetNew/artifacts/data_core/tabular/n11/n11-dataset_profile.json", + "exists": true, + "size": 5104, + "sha256": "0bd368d22598246defd33bda12c9872165f26e798cc462ec472d193f322fba07" + }, + "contract_json": { + "path": "/data/jialinzhang/SynthesizePipeline-server/DatasetNew/artifacts/data_core/tabular/n11/n11-dataset_contract_v1.json", + "exists": true, + "size": 5874, + "sha256": "ad3f01eafe9fb37754eed9be9bd058390fd3a4f54d8be4ceb4b5326a9901da9d" + } + } +} \ No newline at end of file diff --git a/timecost/n11/tabpfgen/tabpfgen-n11-20260501_041043/public_gate/normalized_schema_snapshot.json b/timecost/n11/tabpfgen/tabpfgen-n11-20260501_041043/public_gate/normalized_schema_snapshot.json new file mode 100644 index 0000000000000000000000000000000000000000..96904695eb041844b615aa285fda674f1da87108 --- /dev/null +++ b/timecost/n11/tabpfgen/tabpfgen-n11-20260501_041043/public_gate/normalized_schema_snapshot.json @@ -0,0 +1,235 @@ +{ + "dataset_id": "n11", + "target_column": "g", + "task_type": "classification", + "columns": [ + { + "name": "28.7967", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 14962, + "unique_ratio": 0.983372, + "example_values": [ + "33.9347", + "118.601", + "19.83", + "33.2691", + "13.1404" + ] + } + }, + { + "name": "16.0021", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 14662, + "unique_ratio": 0.963654, + "example_values": [ + "10.8862", + "44.2479", + "7.3303", + "9.1269", + "10.8527" + ] + } + }, + { + "name": "2.6449", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 6336, + "unique_ratio": 0.416431, + "example_values": [ + "2.5328", + "3.5558", + "2.2541", + "2.6728", + "2.1775" + ] + } + }, + { + "name": "0.3918", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 6002, + "unique_ratio": 0.394479, + "example_values": [ + "0.4047", + "0.1769", + "0.7521", + "0.4437", + "0.7708" + ] + } + }, + { + "name": "0.1982", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 4230, + "unique_ratio": 0.278015, + "example_values": [ + "0.2155", + "0.1003", + "0.4095", + "0.2553", + "0.4352" + ] + } + }, + { + "name": "27.7004", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 14996, + "unique_ratio": 0.985606, + "example_values": [ + "-25.0369", + "-95.8266", + "2.8528", + "12.3981", + "14.3006" + ] + } + }, + { + "name": "22.011", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 14984, + "unique_ratio": 0.984818, + "example_values": [ + "-23.1659", + "14.9809", + "-9.7666", + "19.9081", + "-3.6418" + ] + } + }, + { + "name": "-8.2027", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 14795, + "unique_ratio": 0.972396, + "example_values": [ + "3.492", + "29.3812", + "5.0346", + "-5.3204", + "-11.3646" + ] + } + }, + { + "name": "40.092", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 14518, + "unique_ratio": 0.95419, + "example_values": [ + "0.334", + "4.134", + "13.794", + "20.78", + "20.124" + ] + } + }, + { + "name": "81.8828", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 14824, + "unique_ratio": 0.974302, + "example_values": [ + "132.907", + "286.69", + "108.464", + "180.4168", + "222.525" + ] + } + }, + { + "name": "g", + "role": "target", + "semantic_type": "categorical", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 2, + "unique_ratio": 0.000131, + "example_values": [ + "g", + "h" + ] + } + } + ] +} \ No newline at end of file diff --git a/timecost/n11/tabpfgen/tabpfgen-n11-20260501_041043/public_gate/public_gate_report.json b/timecost/n11/tabpfgen/tabpfgen-n11-20260501_041043/public_gate/public_gate_report.json new file mode 100644 index 0000000000000000000000000000000000000000..4864c3fc29664a3b44991534165974fed3741dfa --- /dev/null +++ b/timecost/n11/tabpfgen/tabpfgen-n11-20260501_041043/public_gate/public_gate_report.json @@ -0,0 +1,37 @@ +{ + "dataset_id": "n11", + "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": "g", + "task_type": "classification", + "input_splits": { + "train": "/data/jialinzhang/SynthesizePipeline-server/DatasetNew/n11/n11-train.csv", + "val": "/data/jialinzhang/SynthesizePipeline-server/DatasetNew/n11/n11-val.csv", + "test": "/data/jialinzhang/SynthesizePipeline-server/DatasetNew/n11/n11-test.csv" + } +} \ No newline at end of file diff --git a/timecost/n11/tabpfgen/tabpfgen-n11-20260501_041043/public_gate/staged_input_manifest.json b/timecost/n11/tabpfgen/tabpfgen-n11-20260501_041043/public_gate/staged_input_manifest.json new file mode 100644 index 0000000000000000000000000000000000000000..a4ca33e9c1278e433dbffe7e14c69c8078aa7d15 --- /dev/null +++ b/timecost/n11/tabpfgen/tabpfgen-n11-20260501_041043/public_gate/staged_input_manifest.json @@ -0,0 +1,240 @@ +{ + "dataset_id": "n11", + "target_column": "g", + "task_type": "classification", + "train_csv": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/n11/tabpfgen/tabpfgen-n11-20260501_041043/staged/public/train.csv", + "val_csv": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/n11/tabpfgen/tabpfgen-n11-20260501_041043/staged/public/val.csv", + "test_csv": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/n11/tabpfgen/tabpfgen-n11-20260501_041043/staged/public/test.csv", + "features_json": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/n11/tabpfgen/tabpfgen-n11-20260501_041043/staged/public/staged_features.json", + "public_gate_report": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/n11/tabpfgen/tabpfgen-n11-20260501_041043/public_gate/public_gate_report.json", + "column_schema": [ + { + "name": "28.7967", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 14962, + "unique_ratio": 0.983372, + "example_values": [ + "33.9347", + "118.601", + "19.83", + "33.2691", + "13.1404" + ] + } + }, + { + "name": "16.0021", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 14662, + "unique_ratio": 0.963654, + "example_values": [ + "10.8862", + "44.2479", + "7.3303", + "9.1269", + "10.8527" + ] + } + }, + { + "name": "2.6449", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 6336, + "unique_ratio": 0.416431, + "example_values": [ + "2.5328", + "3.5558", + "2.2541", + "2.6728", + "2.1775" + ] + } + }, + { + "name": "0.3918", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 6002, + "unique_ratio": 0.394479, + "example_values": [ + "0.4047", + "0.1769", + "0.7521", + "0.4437", + "0.7708" + ] + } + }, + { + "name": "0.1982", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 4230, + "unique_ratio": 0.278015, + "example_values": [ + "0.2155", + "0.1003", + "0.4095", + "0.2553", + "0.4352" + ] + } + }, + { + "name": "27.7004", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 14996, + "unique_ratio": 0.985606, + "example_values": [ + "-25.0369", + "-95.8266", + "2.8528", + "12.3981", + "14.3006" + ] + } + }, + { + "name": "22.011", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 14984, + "unique_ratio": 0.984818, + "example_values": [ + "-23.1659", + "14.9809", + "-9.7666", + "19.9081", + "-3.6418" + ] + } + }, + { + "name": "-8.2027", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 14795, + "unique_ratio": 0.972396, + "example_values": [ + "3.492", + "29.3812", + "5.0346", + "-5.3204", + "-11.3646" + ] + } + }, + { + "name": "40.092", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 14518, + "unique_ratio": 0.95419, + "example_values": [ + "0.334", + "4.134", + "13.794", + "20.78", + "20.124" + ] + } + }, + { + "name": "81.8828", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 14824, + "unique_ratio": 0.974302, + "example_values": [ + "132.907", + "286.69", + "108.464", + "180.4168", + "222.525" + ] + } + }, + { + "name": "g", + "role": "target", + "semantic_type": "categorical", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 2, + "unique_ratio": 0.000131, + "example_values": [ + "g", + "h" + ] + } + } + ] +} \ No newline at end of file diff --git a/timecost/n11/tabpfgen/tabpfgen-n11-20260501_041043/runtime_result.json b/timecost/n11/tabpfgen/tabpfgen-n11-20260501_041043/runtime_result.json new file mode 100644 index 0000000000000000000000000000000000000000..a1bd4b4c16e3892d9d2ebf777bcae5a7988a70fe --- /dev/null +++ b/timecost/n11/tabpfgen/tabpfgen-n11-20260501_041043/runtime_result.json @@ -0,0 +1,27 @@ +{ + "dataset_id": "n11", + "model": "tabpfgen", + "run_id": "tabpfgen-n11-20260501_041043", + "public_gate_status": "pass", + "adapter_ready_status": "pass", + "train_status": "success", + "generate_status": "success", + "reason_code": null, + "reason_detail": null, + "artifacts": { + "synthetic_csv": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/n11/tabpfgen/tabpfgen-n11-20260501_041043/tabpfgen-n11-15215-20260501_041043.csv", + "model_path": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/n11/tabpfgen/tabpfgen-n11-20260501_041043" + }, + "timings": { + "train": { + "started_at": "2026-05-01T04:10:43", + "ended_at": "2026-05-01T04:10:43", + "duration_sec": 0.031 + }, + "generate": { + "started_at": "2026-05-01T04:10:43", + "ended_at": "2026-05-01T04:11:26", + "duration_sec": 43.034 + } + } +} \ No newline at end of file diff --git a/timecost/n11/tabpfgen/tabpfgen-n11-20260501_041043/staged/public/staged_features.json b/timecost/n11/tabpfgen/tabpfgen-n11-20260501_041043/staged/public/staged_features.json new file mode 100644 index 0000000000000000000000000000000000000000..bdb9c28b9d52f06368851a08caadc305035fc1b7 --- /dev/null +++ b/timecost/n11/tabpfgen/tabpfgen-n11-20260501_041043/staged/public/staged_features.json @@ -0,0 +1,57 @@ +[ + { + "feature_name": "28.7967", + "data_type": "continuous", + "is_target": false + }, + { + "feature_name": "16.0021", + "data_type": "continuous", + "is_target": false + }, + { + "feature_name": "2.6449", + "data_type": "continuous", + "is_target": false + }, + { + "feature_name": "0.3918", + "data_type": "continuous", + "is_target": false + }, + { + "feature_name": "0.1982", + "data_type": "continuous", + "is_target": false + }, + { + "feature_name": "27.7004", + "data_type": "continuous", + "is_target": false + }, + { + "feature_name": "22.011", + "data_type": "continuous", + "is_target": false + }, + { + "feature_name": "-8.2027", + "data_type": "continuous", + "is_target": false + }, + { + "feature_name": "40.092", + "data_type": "continuous", + "is_target": false + }, + { + "feature_name": "81.8828", + "data_type": "continuous", + "is_target": false + }, + { + "feature_name": "g", + "data_type": "categorical", + "is_target": true + } +] \ No newline at end of file diff --git a/timecost/n11/tabpfgen/tabpfgen-n11-20260501_041043/staged/public/test.csv b/timecost/n11/tabpfgen/tabpfgen-n11-20260501_041043/staged/public/test.csv new file mode 100644 index 0000000000000000000000000000000000000000..59e413eb15b50a2ac49cd95bbe57b0d0018ccf95 --- /dev/null +++ b/timecost/n11/tabpfgen/tabpfgen-n11-20260501_041043/staged/public/test.csv @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:bf4e935f84569b849b662718eaa19be605037d46a5f7391f164728d6d9c3bb50 +size 148017 diff --git a/timecost/n11/tabpfgen/tabpfgen-n11-20260501_041043/staged/public/train.csv b/timecost/n11/tabpfgen/tabpfgen-n11-20260501_041043/staged/public/train.csv new file mode 100644 index 0000000000000000000000000000000000000000..cc5acd9fe00e8a233592b4da9797300adc83744b --- /dev/null +++ b/timecost/n11/tabpfgen/tabpfgen-n11-20260501_041043/staged/public/train.csv @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:3ab621ac8239797506ce800c1409422452b8127da93add91dd9e6d63ddeec6f7 +size 1182326 diff --git a/timecost/n11/tabpfgen/tabpfgen-n11-20260501_041043/staged/public/val.csv b/timecost/n11/tabpfgen/tabpfgen-n11-20260501_041043/staged/public/val.csv new file mode 100644 index 0000000000000000000000000000000000000000..e0a3b6ab9c53a7f8d97dff3290e643431f9ad023 --- /dev/null +++ b/timecost/n11/tabpfgen/tabpfgen-n11-20260501_041043/staged/public/val.csv @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:374e44edf25e58ca37eabbef0485c98cecdbdfa9d24da738937f404840bfad44 +size 147784 diff --git a/timecost/n11/tabpfgen/tabpfgen-n11-20260501_041043/staged/tabpfgen/adapter_report.json b/timecost/n11/tabpfgen/tabpfgen-n11-20260501_041043/staged/tabpfgen/adapter_report.json new file mode 100644 index 0000000000000000000000000000000000000000..e1667e34b1db3e8cc639874d72452ac1b517e2c3 --- /dev/null +++ b/timecost/n11/tabpfgen/tabpfgen-n11-20260501_041043/staged/tabpfgen/adapter_report.json @@ -0,0 +1,7 @@ +{ + "adapter_ready_status": "pass", + "adapter_fail_reason_code": null, + "adapter_fail_detail": null, + "adapter_transforms_applied": [], + "model_input_manifest": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/n11/tabpfgen/tabpfgen-n11-20260501_041043/staged/tabpfgen/model_input_manifest.json" +} \ No newline at end of file diff --git a/timecost/n11/tabpfgen/tabpfgen-n11-20260501_041043/staged/tabpfgen/adapter_transforms_applied.json b/timecost/n11/tabpfgen/tabpfgen-n11-20260501_041043/staged/tabpfgen/adapter_transforms_applied.json new file mode 100644 index 0000000000000000000000000000000000000000..0637a088a01e8ddab3bf3fa98dbe804cbde1a0dc --- /dev/null +++ b/timecost/n11/tabpfgen/tabpfgen-n11-20260501_041043/staged/tabpfgen/adapter_transforms_applied.json @@ -0,0 +1 @@ +[] \ No newline at end of file diff --git a/timecost/n11/tabpfgen/tabpfgen-n11-20260501_041043/staged/tabpfgen/model_input_manifest.json b/timecost/n11/tabpfgen/tabpfgen-n11-20260501_041043/staged/tabpfgen/model_input_manifest.json new file mode 100644 index 0000000000000000000000000000000000000000..a5096e893f4e67027e7abf94aadbe5409e48967f --- /dev/null +++ b/timecost/n11/tabpfgen/tabpfgen-n11-20260501_041043/staged/tabpfgen/model_input_manifest.json @@ -0,0 +1,242 @@ +{ + "dataset_id": "n11", + "model": "tabpfgen", + "target_column": "g", + "task_type": "classification", + "column_schema": [ + { + "name": "28.7967", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 14962, + "unique_ratio": 0.983372, + "example_values": [ + "33.9347", + "118.601", + "19.83", + "33.2691", + "13.1404" + ] + } + }, + { + "name": "16.0021", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 14662, + "unique_ratio": 0.963654, + "example_values": [ + "10.8862", + "44.2479", + "7.3303", + "9.1269", + "10.8527" + ] + } + }, + { + "name": "2.6449", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 6336, + "unique_ratio": 0.416431, + "example_values": [ + "2.5328", + "3.5558", + "2.2541", + "2.6728", + "2.1775" + ] + } + }, + { + "name": "0.3918", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 6002, + "unique_ratio": 0.394479, + "example_values": [ + "0.4047", + "0.1769", + "0.7521", + "0.4437", + "0.7708" + ] + } + }, + { + "name": "0.1982", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 4230, + "unique_ratio": 0.278015, + "example_values": [ + "0.2155", + "0.1003", + "0.4095", + "0.2553", + "0.4352" + ] + } + }, + { + "name": "27.7004", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 14996, + "unique_ratio": 0.985606, + "example_values": [ + "-25.0369", + "-95.8266", + "2.8528", + "12.3981", + "14.3006" + ] + } + }, + { + "name": "22.011", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 14984, + "unique_ratio": 0.984818, + "example_values": [ + "-23.1659", + "14.9809", + "-9.7666", + "19.9081", + "-3.6418" + ] + } + }, + { + "name": "-8.2027", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 14795, + "unique_ratio": 0.972396, + "example_values": [ + "3.492", + "29.3812", + "5.0346", + "-5.3204", + "-11.3646" + ] + } + }, + { + "name": "40.092", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 14518, + "unique_ratio": 0.95419, + "example_values": [ + "0.334", + "4.134", + "13.794", + "20.78", + "20.124" + ] + } + }, + { + "name": "81.8828", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 14824, + "unique_ratio": 0.974302, + "example_values": [ + "132.907", + "286.69", + "108.464", + "180.4168", + "222.525" + ] + } + }, + { + "name": "g", + "role": "target", + "semantic_type": "categorical", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 2, + "unique_ratio": 0.000131, + "example_values": [ + "g", + "h" + ] + } + } + ], + "public_manifest": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/n11/tabpfgen/tabpfgen-n11-20260501_041043/public_gate/staged_input_manifest.json", + "train_csv": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/n11/tabpfgen/tabpfgen-n11-20260501_041043/staged/public/train.csv", + "val_csv": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/n11/tabpfgen/tabpfgen-n11-20260501_041043/staged/public/val.csv", + "test_csv": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/n11/tabpfgen/tabpfgen-n11-20260501_041043/staged/public/test.csv", + "features_json": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/n11/tabpfgen/tabpfgen-n11-20260501_041043/staged/public/staged_features.json", + "public_gate_report": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/n11/tabpfgen/tabpfgen-n11-20260501_041043/public_gate/public_gate_report.json" +} \ No newline at end of file diff --git a/timecost/n11/tabpfgen/tabpfgen-n11-20260501_041043/tabpfgen-n11-15215-20260501_041043.csv b/timecost/n11/tabpfgen/tabpfgen-n11-20260501_041043/tabpfgen-n11-15215-20260501_041043.csv new file mode 100644 index 0000000000000000000000000000000000000000..b3c79fb58de208de7aea6fce5915333ac9f4464c --- /dev/null +++ b/timecost/n11/tabpfgen/tabpfgen-n11-20260501_041043/tabpfgen-n11-15215-20260501_041043.csv @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:d1c321c09b6983276ef5c418e490a2bd3c5df39d9b5a3ce96baecfc0ca10f862 +size 1556864 diff --git a/timecost/n11/tabpfgen/tabpfgen-n11-20260501_041043/tabpfgen_meta.json b/timecost/n11/tabpfgen/tabpfgen-n11-20260501_041043/tabpfgen_meta.json new file mode 100644 index 0000000000000000000000000000000000000000..c43e2c1b582fc0851f6c93fb62c8964dff5fa876 --- /dev/null +++ b/timecost/n11/tabpfgen/tabpfgen-n11-20260501_041043/tabpfgen_meta.json @@ -0,0 +1,9 @@ +{ + "csv_path": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/n11/tabpfgen/tabpfgen-n11-20260501_041043/staged/public/train.csv", + "json_path": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/n11/tabpfgen/tabpfgen-n11-20260501_041043/staged/public/staged_features.json", + "target_col": "g", + "is_classification": true, + "task_type": "classification", + "n_rows": 15215, + "n_cols": 11 +} \ No newline at end of file diff --git a/timecost/n11/tabpfgen/tabpfgen-n11-20260501_041043/train_20260501_041043.log b/timecost/n11/tabpfgen/tabpfgen-n11-20260501_041043/train_20260501_041043.log new file mode 100644 index 0000000000000000000000000000000000000000..b9488d95e12ca00f0a0af5224c15bc10602ed391 --- /dev/null +++ b/timecost/n11/tabpfgen/tabpfgen-n11-20260501_041043/train_20260501_041043.log @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:44e0b37f3bc90344efa38e7e431ff51921f5feade218f90087aeb795839a92a2 +size 599 diff --git a/timecost/n11/tabsyn/tabsyn-n11-20260430_231204/_tabsyn_sample.py b/timecost/n11/tabsyn/tabsyn-n11-20260430_231204/_tabsyn_sample.py new file mode 100644 index 0000000000000000000000000000000000000000..35f02f29ab2ec2ef0f12102be57d6fbaeebe2697 --- /dev/null +++ b/timecost/n11/tabsyn/tabsyn-n11-20260430_231204/_tabsyn_sample.py @@ -0,0 +1,39 @@ +import os, sys, subprocess + +work_dir = "/work/output-Benchmark-trainonly-v1/n11/tabsyn/tabsyn-n11-20260430_231204" +dataname = "tabsyn_n11" +output_csv = "/work/output-Benchmark-trainonly-v1/n11/tabsyn/tabsyn-n11-20260430_231204/tabsyn-n11-15215-20260430_234940.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 15215 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/timecost/n11/tabsyn/tabsyn-n11-20260430_231204/_tabsyn_train.py b/timecost/n11/tabsyn/tabsyn-n11-20260430_231204/_tabsyn_train.py new file mode 100644 index 0000000000000000000000000000000000000000..579340f05078b12cf6884c840409796d8fe3c273 --- /dev/null +++ b/timecost/n11/tabsyn/tabsyn-n11-20260430_231204/_tabsyn_train.py @@ -0,0 +1,65 @@ +import os, sys, subprocess + +work_dir = "/work/output-Benchmark-trainonly-v1/n11/tabsyn/tabsyn-n11-20260430_231204" +dataname = "tabsyn_n11" +tabsyn_root = "/workspace/tabsyn" + +assert os.path.exists(tabsyn_root), f"TabSyn source not mounted: {tabsyn_root}" + +old = os.environ.get("PYTHONPATH", "") +os.environ["PYTHONPATH"] = tabsyn_root + (os.pathsep + old if old else "") +sys.path.insert(0, tabsyn_root) + +os.chdir(tabsyn_root) + +# Symlink data dir into TabSyn data/ +data_link = os.path.join(tabsyn_root, "data", dataname) +data_src = os.path.join(work_dir, "data", dataname) +os.makedirs(os.path.join(tabsyn_root, "data"), exist_ok=True) +if os.path.exists(data_link): + os.remove(data_link) +os.symlink(data_src, data_link) + +env = os.environ.copy() +env.setdefault("TABSYN_RESUME", "1") +env.setdefault("TABSYN_VAE_BATCH_SIZE", "1024") +# Safer defaults for wide tables on Docker: reduce shared-memory pressure in diffusion DataLoader. +env.setdefault("TABSYN_DIFFUSION_NUM_WORKERS", "0") +_te = None +if _te is not None: + env["TABSYN_VAE_EPOCHS"] = str(_te) + env["TABSYN_DIFFUSION_MAX_EPOCHS"] = str(max(_te + 1, 2)) + +# Data preprocessing is done on the host side (_prepare_data_dir) +# which creates .npy files, train/test CSVs, and info.json + +# Step 1: Train VAE (produces latent embeddings) +print(f"[TabSyn] Step 1/2: Training VAE in {tabsyn_root}, dataname={dataname}") +ret = subprocess.run( + [sys.executable, "main.py", + "--dataname", dataname, + "--mode", "train", + "--method", "vae", + "--gpu", "0"], + cwd=tabsyn_root, + env=env +) +if ret.returncode != 0: + print("[TabSyn] VAE training failed") + sys.exit(ret.returncode) + +# Step 2: Train diffusion model on latent space +print(f"[TabSyn] Step 2/2: Training diffusion model") +ret = subprocess.run( + [sys.executable, "main.py", + "--dataname", dataname, + "--mode", "train", + "--method", "tabsyn", + "--gpu", "0"], + cwd=tabsyn_root, + env=env +) +if ret.returncode != 0: + print("[TabSyn] Diffusion training failed") + sys.exit(ret.returncode) +print("[TabSyn] Training complete (VAE + Diffusion)") diff --git a/timecost/n11/tabsyn/tabsyn-n11-20260430_231204/data/tabsyn_n11/X_cat_test.npy b/timecost/n11/tabsyn/tabsyn-n11-20260430_231204/data/tabsyn_n11/X_cat_test.npy new file mode 100644 index 0000000000000000000000000000000000000000..65f01f4aaf9b5e6ac281ddfd05f178b82dc24ba9 --- /dev/null +++ b/timecost/n11/tabsyn/tabsyn-n11-20260430_231204/data/tabsyn_n11/X_cat_test.npy @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:ab6735c7290e805ffeb57d96cdb652930cd19766131eb333e144f301ca5c5d90 +size 128 diff --git a/timecost/n11/tabsyn/tabsyn-n11-20260430_231204/data/tabsyn_n11/X_cat_train.npy b/timecost/n11/tabsyn/tabsyn-n11-20260430_231204/data/tabsyn_n11/X_cat_train.npy new file mode 100644 index 0000000000000000000000000000000000000000..65f01f4aaf9b5e6ac281ddfd05f178b82dc24ba9 --- /dev/null +++ b/timecost/n11/tabsyn/tabsyn-n11-20260430_231204/data/tabsyn_n11/X_cat_train.npy @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:ab6735c7290e805ffeb57d96cdb652930cd19766131eb333e144f301ca5c5d90 +size 128 diff --git a/timecost/n11/tabsyn/tabsyn-n11-20260430_231204/data/tabsyn_n11/X_num_test.npy b/timecost/n11/tabsyn/tabsyn-n11-20260430_231204/data/tabsyn_n11/X_num_test.npy new file mode 100644 index 0000000000000000000000000000000000000000..cda65645f7509c4b59dba4a620ca6db54dcdbe84 --- /dev/null +++ b/timecost/n11/tabsyn/tabsyn-n11-20260430_231204/data/tabsyn_n11/X_num_test.npy @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:013e32900eef106da63d972b40b61296d91c04d1ce8196fd0cb8d54081f58c59 +size 608728 diff --git a/timecost/n11/tabsyn/tabsyn-n11-20260430_231204/data/tabsyn_n11/X_num_train.npy b/timecost/n11/tabsyn/tabsyn-n11-20260430_231204/data/tabsyn_n11/X_num_train.npy new file mode 100644 index 0000000000000000000000000000000000000000..cda65645f7509c4b59dba4a620ca6db54dcdbe84 --- /dev/null +++ b/timecost/n11/tabsyn/tabsyn-n11-20260430_231204/data/tabsyn_n11/X_num_train.npy @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:013e32900eef106da63d972b40b61296d91c04d1ce8196fd0cb8d54081f58c59 +size 608728 diff --git a/timecost/n11/tabsyn/tabsyn-n11-20260430_231204/data/tabsyn_n11/info.json b/timecost/n11/tabsyn/tabsyn-n11-20260430_231204/data/tabsyn_n11/info.json new file mode 100644 index 0000000000000000000000000000000000000000..330dc69377a36eaa8fc22c415b3207479241f544 --- /dev/null +++ b/timecost/n11/tabsyn/tabsyn-n11-20260430_231204/data/tabsyn_n11/info.json @@ -0,0 +1,129 @@ +{ + "name": "tabsyn_n11", + "task_type": "multiclass", + "n_num_features": 10, + "n_cat_features": 0, + "train_size": 15215, + "num_col_idx": [ + 0, + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9 + ], + "cat_col_idx": [], + "target_col_idx": [ + 10 + ], + "column_names": [ + "28.7967", + "16.0021", + "2.6449", + "0.3918", + "0.1982", + "27.7004", + "22.011", + "-8.2027", + "40.092", + "81.8828", + "g" + ], + "train_num": 15215, + "test_num": 15215, + "header": 0, + "file_type": "csv", + "data_path": "data/tabsyn_n11/train.csv", + "test_path": null, + "idx_mapping": { + "0": 0, + "1": 1, + "2": 2, + "3": 3, + "4": 4, + "5": 5, + "6": 6, + "7": 7, + "8": 8, + "9": 9, + "10": 10 + }, + "inverse_idx_mapping": { + "0": 0, + "1": 1, + "2": 2, + "3": 3, + "4": 4, + "5": 5, + "6": 6, + "7": 7, + "8": 8, + "9": 9, + "10": 10 + }, + "idx_name_mapping": { + "0": "28.7967", + "1": "16.0021", + "2": "2.6449", + "3": "0.3918", + "4": "0.1982", + "5": "27.7004", + "6": "22.011", + "7": "-8.2027", + "8": "40.092", + "9": "81.8828", + "10": "g" + }, + "n_classes": 2, + "metadata": { + "columns": { + "0": { + "sdtype": "numerical", + "computer_representation": "Float" + }, + "1": { + "sdtype": "numerical", + "computer_representation": "Float" + }, + "2": { + "sdtype": "numerical", + "computer_representation": "Float" + }, + "3": { + "sdtype": "numerical", + "computer_representation": "Float" + }, + "4": { + "sdtype": "numerical", + "computer_representation": "Float" + }, + "5": { + "sdtype": "numerical", + "computer_representation": "Float" + }, + "6": { + "sdtype": "numerical", + "computer_representation": "Float" + }, + "7": { + "sdtype": "numerical", + "computer_representation": "Float" + }, + "8": { + "sdtype": "numerical", + "computer_representation": "Float" + }, + "9": { + "sdtype": "numerical", + "computer_representation": "Float" + }, + "10": { + "sdtype": "categorical" + } + } + } +} \ No newline at end of file diff --git a/timecost/n11/tabsyn/tabsyn-n11-20260430_231204/data/tabsyn_n11/test.csv b/timecost/n11/tabsyn/tabsyn-n11-20260430_231204/data/tabsyn_n11/test.csv new file mode 100644 index 0000000000000000000000000000000000000000..adb2da2a9734fb5b3bb2e0fa1cd5b5815b1416c8 --- /dev/null +++ b/timecost/n11/tabsyn/tabsyn-n11-20260430_231204/data/tabsyn_n11/test.csv @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:976bc9e44218596dd6aaa5480a6b4a586c49f9d705a939a7c3089af9bd29cf68 +size 1182326 diff --git a/timecost/n11/tabsyn/tabsyn-n11-20260430_231204/data/tabsyn_n11/train.csv b/timecost/n11/tabsyn/tabsyn-n11-20260430_231204/data/tabsyn_n11/train.csv new file mode 100644 index 0000000000000000000000000000000000000000..adb2da2a9734fb5b3bb2e0fa1cd5b5815b1416c8 --- /dev/null +++ b/timecost/n11/tabsyn/tabsyn-n11-20260430_231204/data/tabsyn_n11/train.csv @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:976bc9e44218596dd6aaa5480a6b4a586c49f9d705a939a7c3089af9bd29cf68 +size 1182326 diff --git a/timecost/n11/tabsyn/tabsyn-n11-20260430_231204/data/tabsyn_n11/y_test.npy b/timecost/n11/tabsyn/tabsyn-n11-20260430_231204/data/tabsyn_n11/y_test.npy new file mode 100644 index 0000000000000000000000000000000000000000..b9daa4049b7c19eb916f95443c35c7cfbf34726e --- /dev/null +++ b/timecost/n11/tabsyn/tabsyn-n11-20260430_231204/data/tabsyn_n11/y_test.npy @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:ed032a868b2263b0d8eb889ebf4ea480e38bcbbc5c51dedc15645d235005d2f9 +size 121848 diff --git a/timecost/n11/tabsyn/tabsyn-n11-20260430_231204/data/tabsyn_n11/y_train.npy b/timecost/n11/tabsyn/tabsyn-n11-20260430_231204/data/tabsyn_n11/y_train.npy new file mode 100644 index 0000000000000000000000000000000000000000..b9daa4049b7c19eb916f95443c35c7cfbf34726e --- /dev/null +++ b/timecost/n11/tabsyn/tabsyn-n11-20260430_231204/data/tabsyn_n11/y_train.npy @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:ed032a868b2263b0d8eb889ebf4ea480e38bcbbc5c51dedc15645d235005d2f9 +size 121848 diff --git a/timecost/n11/tabsyn/tabsyn-n11-20260430_231204/gen_20260430_234940.log b/timecost/n11/tabsyn/tabsyn-n11-20260430_231204/gen_20260430_234940.log new file mode 100644 index 0000000000000000000000000000000000000000..3799921cb792501ea79a369d0ae1b511ff2cb726 --- /dev/null +++ b/timecost/n11/tabsyn/tabsyn-n11-20260430_231204/gen_20260430_234940.log @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:c8ae5bea9f2d874b75c580bfa02b84365ca9c129ea429bde8ec8984bd035441f +size 950 diff --git a/timecost/n11/tabsyn/tabsyn-n11-20260430_231204/input_snapshot.json b/timecost/n11/tabsyn/tabsyn-n11-20260430_231204/input_snapshot.json new file mode 100644 index 0000000000000000000000000000000000000000..a5fc10e5e396cb469c94598fdda6bf3820500d13 --- /dev/null +++ b/timecost/n11/tabsyn/tabsyn-n11-20260430_231204/input_snapshot.json @@ -0,0 +1,36 @@ +{ + "dataset_id": "n11", + "model": "tabsyn", + "inputs": { + "train_csv": { + "path": "/data/jialinzhang/SynthesizePipeline-server/DatasetNew/n11/n11-train.csv", + "exists": true, + "size": 1197106, + "sha256": "f8253c0573a8f028c0b1e17752d214fbad956d0ace350d0dee3947f3dfafbc75" + }, + "val_csv": { + "path": "/data/jialinzhang/SynthesizePipeline-server/DatasetNew/n11/n11-val.csv", + "exists": true, + "size": 149602, + "sha256": "7bde20178eb7de9523d4df719a3b461656f5704e3a03187c8289b2299dc8e458" + }, + "test_csv": { + "path": "/data/jialinzhang/SynthesizePipeline-server/DatasetNew/n11/n11-test.csv", + "exists": true, + "size": 149859, + "sha256": "855b55969de2da1341d428edef6dedfdf0c60f016b9fa08efaf8a883af6a2c53" + }, + "profile_json": { + "path": "/data/jialinzhang/SynthesizePipeline-server/DatasetNew/artifacts/data_core/tabular/n11/n11-dataset_profile.json", + "exists": true, + "size": 5104, + "sha256": "0bd368d22598246defd33bda12c9872165f26e798cc462ec472d193f322fba07" + }, + "contract_json": { + "path": "/data/jialinzhang/SynthesizePipeline-server/DatasetNew/artifacts/data_core/tabular/n11/n11-dataset_contract_v1.json", + "exists": true, + "size": 5874, + "sha256": "ad3f01eafe9fb37754eed9be9bd058390fd3a4f54d8be4ceb4b5326a9901da9d" + } + } +} \ No newline at end of file diff --git a/timecost/n11/tabsyn/tabsyn-n11-20260430_231204/public_gate/normalized_schema_snapshot.json b/timecost/n11/tabsyn/tabsyn-n11-20260430_231204/public_gate/normalized_schema_snapshot.json new file mode 100644 index 0000000000000000000000000000000000000000..96904695eb041844b615aa285fda674f1da87108 --- /dev/null +++ b/timecost/n11/tabsyn/tabsyn-n11-20260430_231204/public_gate/normalized_schema_snapshot.json @@ -0,0 +1,235 @@ +{ + "dataset_id": "n11", + "target_column": "g", + "task_type": "classification", + "columns": [ + { + "name": "28.7967", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 14962, + "unique_ratio": 0.983372, + "example_values": [ + "33.9347", + "118.601", + "19.83", + "33.2691", + "13.1404" + ] + } + }, + { + "name": "16.0021", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 14662, + "unique_ratio": 0.963654, + "example_values": [ + "10.8862", + "44.2479", + "7.3303", + "9.1269", + "10.8527" + ] + } + }, + { + "name": "2.6449", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 6336, + "unique_ratio": 0.416431, + "example_values": [ + "2.5328", + "3.5558", + "2.2541", + "2.6728", + "2.1775" + ] + } + }, + { + "name": "0.3918", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 6002, + "unique_ratio": 0.394479, + "example_values": [ + "0.4047", + "0.1769", + "0.7521", + "0.4437", + "0.7708" + ] + } + }, + { + "name": "0.1982", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 4230, + "unique_ratio": 0.278015, + "example_values": [ + "0.2155", + "0.1003", + "0.4095", + "0.2553", + "0.4352" + ] + } + }, + { + "name": "27.7004", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 14996, + "unique_ratio": 0.985606, + "example_values": [ + "-25.0369", + "-95.8266", + "2.8528", + "12.3981", + "14.3006" + ] + } + }, + { + "name": "22.011", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 14984, + "unique_ratio": 0.984818, + "example_values": [ + "-23.1659", + "14.9809", + "-9.7666", + "19.9081", + "-3.6418" + ] + } + }, + { + "name": "-8.2027", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 14795, + "unique_ratio": 0.972396, + "example_values": [ + "3.492", + "29.3812", + "5.0346", + "-5.3204", + "-11.3646" + ] + } + }, + { + "name": "40.092", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 14518, + "unique_ratio": 0.95419, + "example_values": [ + "0.334", + "4.134", + "13.794", + "20.78", + "20.124" + ] + } + }, + { + "name": "81.8828", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 14824, + "unique_ratio": 0.974302, + "example_values": [ + "132.907", + "286.69", + "108.464", + "180.4168", + "222.525" + ] + } + }, + { + "name": "g", + "role": "target", + "semantic_type": "categorical", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 2, + "unique_ratio": 0.000131, + "example_values": [ + "g", + "h" + ] + } + } + ] +} \ No newline at end of file diff --git a/timecost/n11/tabsyn/tabsyn-n11-20260430_231204/public_gate/public_gate_report.json b/timecost/n11/tabsyn/tabsyn-n11-20260430_231204/public_gate/public_gate_report.json new file mode 100644 index 0000000000000000000000000000000000000000..4864c3fc29664a3b44991534165974fed3741dfa --- /dev/null +++ b/timecost/n11/tabsyn/tabsyn-n11-20260430_231204/public_gate/public_gate_report.json @@ -0,0 +1,37 @@ +{ + "dataset_id": "n11", + "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": "g", + "task_type": "classification", + "input_splits": { + "train": "/data/jialinzhang/SynthesizePipeline-server/DatasetNew/n11/n11-train.csv", + "val": "/data/jialinzhang/SynthesizePipeline-server/DatasetNew/n11/n11-val.csv", + "test": "/data/jialinzhang/SynthesizePipeline-server/DatasetNew/n11/n11-test.csv" + } +} \ No newline at end of file diff --git a/timecost/n11/tabsyn/tabsyn-n11-20260430_231204/public_gate/staged_input_manifest.json b/timecost/n11/tabsyn/tabsyn-n11-20260430_231204/public_gate/staged_input_manifest.json new file mode 100644 index 0000000000000000000000000000000000000000..7a5e6ae34fcefb4256443c93336c4e5dbb8335ad --- /dev/null +++ b/timecost/n11/tabsyn/tabsyn-n11-20260430_231204/public_gate/staged_input_manifest.json @@ -0,0 +1,240 @@ +{ + "dataset_id": "n11", + "target_column": "g", + "task_type": "classification", + "train_csv": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/n11/tabsyn/tabsyn-n11-20260430_231204/staged/public/train.csv", + "val_csv": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/n11/tabsyn/tabsyn-n11-20260430_231204/staged/public/val.csv", + "test_csv": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/n11/tabsyn/tabsyn-n11-20260430_231204/staged/public/test.csv", + "features_json": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/n11/tabsyn/tabsyn-n11-20260430_231204/staged/public/staged_features.json", + "public_gate_report": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/n11/tabsyn/tabsyn-n11-20260430_231204/public_gate/public_gate_report.json", + "column_schema": [ + { + "name": "28.7967", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 14962, + "unique_ratio": 0.983372, + "example_values": [ + "33.9347", + "118.601", + "19.83", + "33.2691", + "13.1404" + ] + } + }, + { + "name": "16.0021", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 14662, + "unique_ratio": 0.963654, + "example_values": [ + "10.8862", + "44.2479", + "7.3303", + "9.1269", + "10.8527" + ] + } + }, + { + "name": "2.6449", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 6336, + "unique_ratio": 0.416431, + "example_values": [ + "2.5328", + "3.5558", + "2.2541", + "2.6728", + "2.1775" + ] + } + }, + { + "name": "0.3918", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 6002, + "unique_ratio": 0.394479, + "example_values": [ + "0.4047", + "0.1769", + "0.7521", + "0.4437", + "0.7708" + ] + } + }, + { + "name": "0.1982", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 4230, + "unique_ratio": 0.278015, + "example_values": [ + "0.2155", + "0.1003", + "0.4095", + "0.2553", + "0.4352" + ] + } + }, + { + "name": "27.7004", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 14996, + "unique_ratio": 0.985606, + "example_values": [ + "-25.0369", + "-95.8266", + "2.8528", + "12.3981", + "14.3006" + ] + } + }, + { + "name": "22.011", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 14984, + "unique_ratio": 0.984818, + "example_values": [ + "-23.1659", + "14.9809", + "-9.7666", + "19.9081", + "-3.6418" + ] + } + }, + { + "name": "-8.2027", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 14795, + "unique_ratio": 0.972396, + "example_values": [ + "3.492", + "29.3812", + "5.0346", + "-5.3204", + "-11.3646" + ] + } + }, + { + "name": "40.092", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 14518, + "unique_ratio": 0.95419, + "example_values": [ + "0.334", + "4.134", + "13.794", + "20.78", + "20.124" + ] + } + }, + { + "name": "81.8828", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 14824, + "unique_ratio": 0.974302, + "example_values": [ + "132.907", + "286.69", + "108.464", + "180.4168", + "222.525" + ] + } + }, + { + "name": "g", + "role": "target", + "semantic_type": "categorical", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 2, + "unique_ratio": 0.000131, + "example_values": [ + "g", + "h" + ] + } + } + ] +} \ No newline at end of file diff --git a/timecost/n11/tabsyn/tabsyn-n11-20260430_231204/runtime_result.json b/timecost/n11/tabsyn/tabsyn-n11-20260430_231204/runtime_result.json new file mode 100644 index 0000000000000000000000000000000000000000..ab67058542e3313c4306572b0718ec834e0a134d --- /dev/null +++ b/timecost/n11/tabsyn/tabsyn-n11-20260430_231204/runtime_result.json @@ -0,0 +1,27 @@ +{ + "dataset_id": "n11", + "model": "tabsyn", + "run_id": "tabsyn-n11-20260430_231204", + "public_gate_status": "pass", + "adapter_ready_status": "pass", + "train_status": "success", + "generate_status": "success", + "reason_code": null, + "reason_detail": null, + "artifacts": { + "synthetic_csv": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/n11/tabsyn/tabsyn-n11-20260430_231204/tabsyn-n11-15215-20260430_234940.csv", + "model_path": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/n11/tabsyn/tabsyn-n11-20260430_231204" + }, + "timings": { + "train": { + "started_at": "2026-04-30T23:12:05", + "ended_at": "2026-04-30T23:49:40", + "duration_sec": 2255.718 + }, + "generate": { + "started_at": "2026-04-30T23:49:40", + "ended_at": "2026-04-30T23:49:47", + "duration_sec": 6.426 + } + } +} \ No newline at end of file diff --git a/timecost/n11/tabsyn/tabsyn-n11-20260430_231204/staged/public/staged_features.json b/timecost/n11/tabsyn/tabsyn-n11-20260430_231204/staged/public/staged_features.json new file mode 100644 index 0000000000000000000000000000000000000000..bdb9c28b9d52f06368851a08caadc305035fc1b7 --- /dev/null +++ b/timecost/n11/tabsyn/tabsyn-n11-20260430_231204/staged/public/staged_features.json @@ -0,0 +1,57 @@ +[ + { + "feature_name": "28.7967", + "data_type": "continuous", + "is_target": false + }, + { + "feature_name": "16.0021", + "data_type": "continuous", + "is_target": false + }, + { + "feature_name": "2.6449", + "data_type": "continuous", + "is_target": false + }, + { + "feature_name": "0.3918", + "data_type": "continuous", + "is_target": false + }, + { + "feature_name": "0.1982", + "data_type": "continuous", + "is_target": false + }, + { + "feature_name": "27.7004", + "data_type": "continuous", + "is_target": false + }, + { + "feature_name": "22.011", + "data_type": "continuous", + "is_target": false + }, + { + "feature_name": "-8.2027", + "data_type": "continuous", + "is_target": false + }, + { + "feature_name": "40.092", + "data_type": "continuous", + "is_target": false + }, + { + "feature_name": "81.8828", + "data_type": "continuous", + "is_target": false + }, + { + "feature_name": "g", + "data_type": "categorical", + "is_target": true + } +] \ No newline at end of file diff --git a/timecost/n11/tabsyn/tabsyn-n11-20260430_231204/staged/public/test.csv b/timecost/n11/tabsyn/tabsyn-n11-20260430_231204/staged/public/test.csv new file mode 100644 index 0000000000000000000000000000000000000000..59e413eb15b50a2ac49cd95bbe57b0d0018ccf95 --- /dev/null +++ b/timecost/n11/tabsyn/tabsyn-n11-20260430_231204/staged/public/test.csv @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:bf4e935f84569b849b662718eaa19be605037d46a5f7391f164728d6d9c3bb50 +size 148017 diff --git a/timecost/n11/tabsyn/tabsyn-n11-20260430_231204/staged/public/train.csv b/timecost/n11/tabsyn/tabsyn-n11-20260430_231204/staged/public/train.csv new file mode 100644 index 0000000000000000000000000000000000000000..cc5acd9fe00e8a233592b4da9797300adc83744b --- /dev/null +++ b/timecost/n11/tabsyn/tabsyn-n11-20260430_231204/staged/public/train.csv @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:3ab621ac8239797506ce800c1409422452b8127da93add91dd9e6d63ddeec6f7 +size 1182326 diff --git a/timecost/n11/tabsyn/tabsyn-n11-20260430_231204/staged/public/val.csv b/timecost/n11/tabsyn/tabsyn-n11-20260430_231204/staged/public/val.csv new file mode 100644 index 0000000000000000000000000000000000000000..e0a3b6ab9c53a7f8d97dff3290e643431f9ad023 --- /dev/null +++ b/timecost/n11/tabsyn/tabsyn-n11-20260430_231204/staged/public/val.csv @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:374e44edf25e58ca37eabbef0485c98cecdbdfa9d24da738937f404840bfad44 +size 147784 diff --git a/timecost/n11/tabsyn/tabsyn-n11-20260430_231204/staged/tabsyn/adapter_report.json b/timecost/n11/tabsyn/tabsyn-n11-20260430_231204/staged/tabsyn/adapter_report.json new file mode 100644 index 0000000000000000000000000000000000000000..1c0700eddb095f53e1eca0f67ec7f0039eb3d7c9 --- /dev/null +++ b/timecost/n11/tabsyn/tabsyn-n11-20260430_231204/staged/tabsyn/adapter_report.json @@ -0,0 +1,7 @@ +{ + "adapter_ready_status": "pass", + "adapter_fail_reason_code": null, + "adapter_fail_detail": null, + "adapter_transforms_applied": [], + "model_input_manifest": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/n11/tabsyn/tabsyn-n11-20260430_231204/staged/tabsyn/model_input_manifest.json" +} \ No newline at end of file diff --git a/timecost/n11/tabsyn/tabsyn-n11-20260430_231204/staged/tabsyn/adapter_transforms_applied.json b/timecost/n11/tabsyn/tabsyn-n11-20260430_231204/staged/tabsyn/adapter_transforms_applied.json new file mode 100644 index 0000000000000000000000000000000000000000..0637a088a01e8ddab3bf3fa98dbe804cbde1a0dc --- /dev/null +++ b/timecost/n11/tabsyn/tabsyn-n11-20260430_231204/staged/tabsyn/adapter_transforms_applied.json @@ -0,0 +1 @@ +[] \ No newline at end of file diff --git a/timecost/n11/tabsyn/tabsyn-n11-20260430_231204/staged/tabsyn/model_input_manifest.json b/timecost/n11/tabsyn/tabsyn-n11-20260430_231204/staged/tabsyn/model_input_manifest.json new file mode 100644 index 0000000000000000000000000000000000000000..90ced18f3baceeaca2e0bc8f61e3c28758c7ce53 --- /dev/null +++ b/timecost/n11/tabsyn/tabsyn-n11-20260430_231204/staged/tabsyn/model_input_manifest.json @@ -0,0 +1,242 @@ +{ + "dataset_id": "n11", + "model": "tabsyn", + "target_column": "g", + "task_type": "classification", + "column_schema": [ + { + "name": "28.7967", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 14962, + "unique_ratio": 0.983372, + "example_values": [ + "33.9347", + "118.601", + "19.83", + "33.2691", + "13.1404" + ] + } + }, + { + "name": "16.0021", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 14662, + "unique_ratio": 0.963654, + "example_values": [ + "10.8862", + "44.2479", + "7.3303", + "9.1269", + "10.8527" + ] + } + }, + { + "name": "2.6449", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 6336, + "unique_ratio": 0.416431, + "example_values": [ + "2.5328", + "3.5558", + "2.2541", + "2.6728", + "2.1775" + ] + } + }, + { + "name": "0.3918", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 6002, + "unique_ratio": 0.394479, + "example_values": [ + "0.4047", + "0.1769", + "0.7521", + "0.4437", + "0.7708" + ] + } + }, + { + "name": "0.1982", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 4230, + "unique_ratio": 0.278015, + "example_values": [ + "0.2155", + "0.1003", + "0.4095", + "0.2553", + "0.4352" + ] + } + }, + { + "name": "27.7004", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 14996, + "unique_ratio": 0.985606, + "example_values": [ + "-25.0369", + "-95.8266", + "2.8528", + "12.3981", + "14.3006" + ] + } + }, + { + "name": "22.011", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 14984, + "unique_ratio": 0.984818, + "example_values": [ + "-23.1659", + "14.9809", + "-9.7666", + "19.9081", + "-3.6418" + ] + } + }, + { + "name": "-8.2027", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 14795, + "unique_ratio": 0.972396, + "example_values": [ + "3.492", + "29.3812", + "5.0346", + "-5.3204", + "-11.3646" + ] + } + }, + { + "name": "40.092", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 14518, + "unique_ratio": 0.95419, + "example_values": [ + "0.334", + "4.134", + "13.794", + "20.78", + "20.124" + ] + } + }, + { + "name": "81.8828", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 14824, + "unique_ratio": 0.974302, + "example_values": [ + "132.907", + "286.69", + "108.464", + "180.4168", + "222.525" + ] + } + }, + { + "name": "g", + "role": "target", + "semantic_type": "categorical", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 2, + "unique_ratio": 0.000131, + "example_values": [ + "g", + "h" + ] + } + } + ], + "public_manifest": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/n11/tabsyn/tabsyn-n11-20260430_231204/public_gate/staged_input_manifest.json", + "train_csv": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/n11/tabsyn/tabsyn-n11-20260430_231204/staged/public/train.csv", + "val_csv": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/n11/tabsyn/tabsyn-n11-20260430_231204/staged/public/val.csv", + "test_csv": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/n11/tabsyn/tabsyn-n11-20260430_231204/staged/public/test.csv", + "features_json": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/n11/tabsyn/tabsyn-n11-20260430_231204/staged/public/staged_features.json", + "public_gate_report": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/n11/tabsyn/tabsyn-n11-20260430_231204/public_gate/public_gate_report.json" +} \ No newline at end of file diff --git a/timecost/n11/tabsyn/tabsyn-n11-20260430_231204/synthetic/tabsyn_n11/real.csv b/timecost/n11/tabsyn/tabsyn-n11-20260430_231204/synthetic/tabsyn_n11/real.csv new file mode 100644 index 0000000000000000000000000000000000000000..adb2da2a9734fb5b3bb2e0fa1cd5b5815b1416c8 --- /dev/null +++ b/timecost/n11/tabsyn/tabsyn-n11-20260430_231204/synthetic/tabsyn_n11/real.csv @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:976bc9e44218596dd6aaa5480a6b4a586c49f9d705a939a7c3089af9bd29cf68 +size 1182326 diff --git a/timecost/n11/tabsyn/tabsyn-n11-20260430_231204/synthetic/tabsyn_n11/test.csv b/timecost/n11/tabsyn/tabsyn-n11-20260430_231204/synthetic/tabsyn_n11/test.csv new file mode 100644 index 0000000000000000000000000000000000000000..adb2da2a9734fb5b3bb2e0fa1cd5b5815b1416c8 --- /dev/null +++ b/timecost/n11/tabsyn/tabsyn-n11-20260430_231204/synthetic/tabsyn_n11/test.csv @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:976bc9e44218596dd6aaa5480a6b4a586c49f9d705a939a7c3089af9bd29cf68 +size 1182326 diff --git a/timecost/n11/tabsyn/tabsyn-n11-20260430_231204/tabsyn-n11-15215-20260430_234940.csv b/timecost/n11/tabsyn/tabsyn-n11-20260430_231204/tabsyn-n11-15215-20260430_234940.csv new file mode 100644 index 0000000000000000000000000000000000000000..7b59affb243b84f3b0d3d53c85369d2fd3351b0d --- /dev/null +++ b/timecost/n11/tabsyn/tabsyn-n11-20260430_231204/tabsyn-n11-15215-20260430_234940.csv @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:28505142c99216facce85d26fd9b180ccdb3219d92697e073721593549e48d9f +size 1586607 diff --git a/timecost/n11/tabsyn/tabsyn-n11-20260430_231204/train_20260430_231205.log b/timecost/n11/tabsyn/tabsyn-n11-20260430_231204/train_20260430_231205.log new file mode 100644 index 0000000000000000000000000000000000000000..474e653fe9bb1d9e28425527af1770b6f465ad9d --- /dev/null +++ b/timecost/n11/tabsyn/tabsyn-n11-20260430_231204/train_20260430_231205.log @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:4a9ac15bd4a29bd386ef81a56c59c1716a15c5b1bd6a34a8b6ad187728296b25 +size 2849183 diff --git a/timecost/n11/tabsyn/tabsyn-n11-20260501_041133/_tabsyn_sample.py b/timecost/n11/tabsyn/tabsyn-n11-20260501_041133/_tabsyn_sample.py new file mode 100644 index 0000000000000000000000000000000000000000..833f8b9b75be20c607c8351161f240283001d8a7 --- /dev/null +++ b/timecost/n11/tabsyn/tabsyn-n11-20260501_041133/_tabsyn_sample.py @@ -0,0 +1,39 @@ +import os, sys, subprocess + +work_dir = "/work/output-Benchmark-trainonly-v1/n11/tabsyn/tabsyn-n11-20260501_041133" +dataname = "tabsyn_n11" +output_csv = "/work/output-Benchmark-trainonly-v1/n11/tabsyn/tabsyn-n11-20260501_041133/tabsyn-n11-15215-20260501_045031.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 15215 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/timecost/n11/tabsyn/tabsyn-n11-20260501_041133/_tabsyn_train.py b/timecost/n11/tabsyn/tabsyn-n11-20260501_041133/_tabsyn_train.py new file mode 100644 index 0000000000000000000000000000000000000000..b4e9d4b9bd3fa23cd3d4f9989e70587f9979798e --- /dev/null +++ b/timecost/n11/tabsyn/tabsyn-n11-20260501_041133/_tabsyn_train.py @@ -0,0 +1,65 @@ +import os, sys, subprocess + +work_dir = "/work/output-Benchmark-trainonly-v1/n11/tabsyn/tabsyn-n11-20260501_041133" +dataname = "tabsyn_n11" +tabsyn_root = "/workspace/tabsyn" + +assert os.path.exists(tabsyn_root), f"TabSyn source not mounted: {tabsyn_root}" + +old = os.environ.get("PYTHONPATH", "") +os.environ["PYTHONPATH"] = tabsyn_root + (os.pathsep + old if old else "") +sys.path.insert(0, tabsyn_root) + +os.chdir(tabsyn_root) + +# Symlink data dir into TabSyn data/ +data_link = os.path.join(tabsyn_root, "data", dataname) +data_src = os.path.join(work_dir, "data", dataname) +os.makedirs(os.path.join(tabsyn_root, "data"), exist_ok=True) +if os.path.exists(data_link): + os.remove(data_link) +os.symlink(data_src, data_link) + +env = os.environ.copy() +env.setdefault("TABSYN_RESUME", "1") +env.setdefault("TABSYN_VAE_BATCH_SIZE", "1024") +# Safer defaults for wide tables on Docker: reduce shared-memory pressure in diffusion DataLoader. +env.setdefault("TABSYN_DIFFUSION_NUM_WORKERS", "0") +_te = None +if _te is not None: + env["TABSYN_VAE_EPOCHS"] = str(_te) + env["TABSYN_DIFFUSION_MAX_EPOCHS"] = str(max(_te + 1, 2)) + +# Data preprocessing is done on the host side (_prepare_data_dir) +# which creates .npy files, train/test CSVs, and info.json + +# Step 1: Train VAE (produces latent embeddings) +print(f"[TabSyn] Step 1/2: Training VAE in {tabsyn_root}, dataname={dataname}") +ret = subprocess.run( + [sys.executable, "main.py", + "--dataname", dataname, + "--mode", "train", + "--method", "vae", + "--gpu", "0"], + cwd=tabsyn_root, + env=env +) +if ret.returncode != 0: + print("[TabSyn] VAE training failed") + sys.exit(ret.returncode) + +# Step 2: Train diffusion model on latent space +print(f"[TabSyn] Step 2/2: Training diffusion model") +ret = subprocess.run( + [sys.executable, "main.py", + "--dataname", dataname, + "--mode", "train", + "--method", "tabsyn", + "--gpu", "0"], + cwd=tabsyn_root, + env=env +) +if ret.returncode != 0: + print("[TabSyn] Diffusion training failed") + sys.exit(ret.returncode) +print("[TabSyn] Training complete (VAE + Diffusion)") diff --git a/timecost/n11/tabsyn/tabsyn-n11-20260501_041133/data/tabsyn_n11/X_cat_test.npy b/timecost/n11/tabsyn/tabsyn-n11-20260501_041133/data/tabsyn_n11/X_cat_test.npy new file mode 100644 index 0000000000000000000000000000000000000000..65f01f4aaf9b5e6ac281ddfd05f178b82dc24ba9 --- /dev/null +++ b/timecost/n11/tabsyn/tabsyn-n11-20260501_041133/data/tabsyn_n11/X_cat_test.npy @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:ab6735c7290e805ffeb57d96cdb652930cd19766131eb333e144f301ca5c5d90 +size 128 diff --git a/timecost/n11/tabsyn/tabsyn-n11-20260501_041133/data/tabsyn_n11/X_cat_train.npy b/timecost/n11/tabsyn/tabsyn-n11-20260501_041133/data/tabsyn_n11/X_cat_train.npy new file mode 100644 index 0000000000000000000000000000000000000000..65f01f4aaf9b5e6ac281ddfd05f178b82dc24ba9 --- /dev/null +++ b/timecost/n11/tabsyn/tabsyn-n11-20260501_041133/data/tabsyn_n11/X_cat_train.npy @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:ab6735c7290e805ffeb57d96cdb652930cd19766131eb333e144f301ca5c5d90 +size 128 diff --git a/timecost/n11/tabsyn/tabsyn-n11-20260501_041133/data/tabsyn_n11/X_num_test.npy b/timecost/n11/tabsyn/tabsyn-n11-20260501_041133/data/tabsyn_n11/X_num_test.npy new file mode 100644 index 0000000000000000000000000000000000000000..cda65645f7509c4b59dba4a620ca6db54dcdbe84 --- /dev/null +++ b/timecost/n11/tabsyn/tabsyn-n11-20260501_041133/data/tabsyn_n11/X_num_test.npy @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:013e32900eef106da63d972b40b61296d91c04d1ce8196fd0cb8d54081f58c59 +size 608728 diff --git a/timecost/n11/tabsyn/tabsyn-n11-20260501_041133/data/tabsyn_n11/X_num_train.npy b/timecost/n11/tabsyn/tabsyn-n11-20260501_041133/data/tabsyn_n11/X_num_train.npy new file mode 100644 index 0000000000000000000000000000000000000000..cda65645f7509c4b59dba4a620ca6db54dcdbe84 --- /dev/null +++ b/timecost/n11/tabsyn/tabsyn-n11-20260501_041133/data/tabsyn_n11/X_num_train.npy @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:013e32900eef106da63d972b40b61296d91c04d1ce8196fd0cb8d54081f58c59 +size 608728 diff --git a/timecost/n11/tabsyn/tabsyn-n11-20260501_041133/data/tabsyn_n11/info.json b/timecost/n11/tabsyn/tabsyn-n11-20260501_041133/data/tabsyn_n11/info.json new file mode 100644 index 0000000000000000000000000000000000000000..330dc69377a36eaa8fc22c415b3207479241f544 --- /dev/null +++ b/timecost/n11/tabsyn/tabsyn-n11-20260501_041133/data/tabsyn_n11/info.json @@ -0,0 +1,129 @@ +{ + "name": "tabsyn_n11", + "task_type": "multiclass", + "n_num_features": 10, + "n_cat_features": 0, + "train_size": 15215, + "num_col_idx": [ + 0, + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9 + ], + "cat_col_idx": [], + "target_col_idx": [ + 10 + ], + "column_names": [ + "28.7967", + "16.0021", + "2.6449", + "0.3918", + "0.1982", + "27.7004", + "22.011", + "-8.2027", + "40.092", + "81.8828", + "g" + ], + "train_num": 15215, + "test_num": 15215, + "header": 0, + "file_type": "csv", + "data_path": "data/tabsyn_n11/train.csv", + "test_path": null, + "idx_mapping": { + "0": 0, + "1": 1, + "2": 2, + "3": 3, + "4": 4, + "5": 5, + "6": 6, + "7": 7, + "8": 8, + "9": 9, + "10": 10 + }, + "inverse_idx_mapping": { + "0": 0, + "1": 1, + "2": 2, + "3": 3, + "4": 4, + "5": 5, + "6": 6, + "7": 7, + "8": 8, + "9": 9, + "10": 10 + }, + "idx_name_mapping": { + "0": "28.7967", + "1": "16.0021", + "2": "2.6449", + "3": "0.3918", + "4": "0.1982", + "5": "27.7004", + "6": "22.011", + "7": "-8.2027", + "8": "40.092", + "9": "81.8828", + "10": "g" + }, + "n_classes": 2, + "metadata": { + "columns": { + "0": { + "sdtype": "numerical", + "computer_representation": "Float" + }, + "1": { + "sdtype": "numerical", + "computer_representation": "Float" + }, + "2": { + "sdtype": "numerical", + "computer_representation": "Float" + }, + "3": { + "sdtype": "numerical", + "computer_representation": "Float" + }, + "4": { + "sdtype": "numerical", + "computer_representation": "Float" + }, + "5": { + "sdtype": "numerical", + "computer_representation": "Float" + }, + "6": { + "sdtype": "numerical", + "computer_representation": "Float" + }, + "7": { + "sdtype": "numerical", + "computer_representation": "Float" + }, + "8": { + "sdtype": "numerical", + "computer_representation": "Float" + }, + "9": { + "sdtype": "numerical", + "computer_representation": "Float" + }, + "10": { + "sdtype": "categorical" + } + } + } +} \ No newline at end of file diff --git a/timecost/n11/tabsyn/tabsyn-n11-20260501_041133/data/tabsyn_n11/test.csv b/timecost/n11/tabsyn/tabsyn-n11-20260501_041133/data/tabsyn_n11/test.csv new file mode 100644 index 0000000000000000000000000000000000000000..adb2da2a9734fb5b3bb2e0fa1cd5b5815b1416c8 --- /dev/null +++ b/timecost/n11/tabsyn/tabsyn-n11-20260501_041133/data/tabsyn_n11/test.csv @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:976bc9e44218596dd6aaa5480a6b4a586c49f9d705a939a7c3089af9bd29cf68 +size 1182326 diff --git a/timecost/n11/tabsyn/tabsyn-n11-20260501_041133/data/tabsyn_n11/train.csv b/timecost/n11/tabsyn/tabsyn-n11-20260501_041133/data/tabsyn_n11/train.csv new file mode 100644 index 0000000000000000000000000000000000000000..adb2da2a9734fb5b3bb2e0fa1cd5b5815b1416c8 --- /dev/null +++ b/timecost/n11/tabsyn/tabsyn-n11-20260501_041133/data/tabsyn_n11/train.csv @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:976bc9e44218596dd6aaa5480a6b4a586c49f9d705a939a7c3089af9bd29cf68 +size 1182326 diff --git a/timecost/n11/tabsyn/tabsyn-n11-20260501_041133/data/tabsyn_n11/y_test.npy b/timecost/n11/tabsyn/tabsyn-n11-20260501_041133/data/tabsyn_n11/y_test.npy new file mode 100644 index 0000000000000000000000000000000000000000..b9daa4049b7c19eb916f95443c35c7cfbf34726e --- /dev/null +++ b/timecost/n11/tabsyn/tabsyn-n11-20260501_041133/data/tabsyn_n11/y_test.npy @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:ed032a868b2263b0d8eb889ebf4ea480e38bcbbc5c51dedc15645d235005d2f9 +size 121848 diff --git a/timecost/n11/tabsyn/tabsyn-n11-20260501_041133/data/tabsyn_n11/y_train.npy b/timecost/n11/tabsyn/tabsyn-n11-20260501_041133/data/tabsyn_n11/y_train.npy new file mode 100644 index 0000000000000000000000000000000000000000..b9daa4049b7c19eb916f95443c35c7cfbf34726e --- /dev/null +++ b/timecost/n11/tabsyn/tabsyn-n11-20260501_041133/data/tabsyn_n11/y_train.npy @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:ed032a868b2263b0d8eb889ebf4ea480e38bcbbc5c51dedc15645d235005d2f9 +size 121848 diff --git a/timecost/n11/tabsyn/tabsyn-n11-20260501_041133/gen_20260501_045031.log b/timecost/n11/tabsyn/tabsyn-n11-20260501_041133/gen_20260501_045031.log new file mode 100644 index 0000000000000000000000000000000000000000..d74f1224ca566bd29d8cf2a51cc630088e037152 --- /dev/null +++ b/timecost/n11/tabsyn/tabsyn-n11-20260501_041133/gen_20260501_045031.log @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:7ed20a953d543f7e4ffafb9e847065b44c9085cda447025eec8ca4e937f51e55 +size 950 diff --git a/timecost/n11/tabsyn/tabsyn-n11-20260501_041133/input_snapshot.json b/timecost/n11/tabsyn/tabsyn-n11-20260501_041133/input_snapshot.json new file mode 100644 index 0000000000000000000000000000000000000000..a5fc10e5e396cb469c94598fdda6bf3820500d13 --- /dev/null +++ b/timecost/n11/tabsyn/tabsyn-n11-20260501_041133/input_snapshot.json @@ -0,0 +1,36 @@ +{ + "dataset_id": "n11", + "model": "tabsyn", + "inputs": { + "train_csv": { + "path": "/data/jialinzhang/SynthesizePipeline-server/DatasetNew/n11/n11-train.csv", + "exists": true, + "size": 1197106, + "sha256": "f8253c0573a8f028c0b1e17752d214fbad956d0ace350d0dee3947f3dfafbc75" + }, + "val_csv": { + "path": "/data/jialinzhang/SynthesizePipeline-server/DatasetNew/n11/n11-val.csv", + "exists": true, + "size": 149602, + "sha256": "7bde20178eb7de9523d4df719a3b461656f5704e3a03187c8289b2299dc8e458" + }, + "test_csv": { + "path": "/data/jialinzhang/SynthesizePipeline-server/DatasetNew/n11/n11-test.csv", + "exists": true, + "size": 149859, + "sha256": "855b55969de2da1341d428edef6dedfdf0c60f016b9fa08efaf8a883af6a2c53" + }, + "profile_json": { + "path": "/data/jialinzhang/SynthesizePipeline-server/DatasetNew/artifacts/data_core/tabular/n11/n11-dataset_profile.json", + "exists": true, + "size": 5104, + "sha256": "0bd368d22598246defd33bda12c9872165f26e798cc462ec472d193f322fba07" + }, + "contract_json": { + "path": "/data/jialinzhang/SynthesizePipeline-server/DatasetNew/artifacts/data_core/tabular/n11/n11-dataset_contract_v1.json", + "exists": true, + "size": 5874, + "sha256": "ad3f01eafe9fb37754eed9be9bd058390fd3a4f54d8be4ceb4b5326a9901da9d" + } + } +} \ No newline at end of file diff --git a/timecost/n11/tabsyn/tabsyn-n11-20260501_041133/public_gate/normalized_schema_snapshot.json b/timecost/n11/tabsyn/tabsyn-n11-20260501_041133/public_gate/normalized_schema_snapshot.json new file mode 100644 index 0000000000000000000000000000000000000000..96904695eb041844b615aa285fda674f1da87108 --- /dev/null +++ b/timecost/n11/tabsyn/tabsyn-n11-20260501_041133/public_gate/normalized_schema_snapshot.json @@ -0,0 +1,235 @@ +{ + "dataset_id": "n11", + "target_column": "g", + "task_type": "classification", + "columns": [ + { + "name": "28.7967", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 14962, + "unique_ratio": 0.983372, + "example_values": [ + "33.9347", + "118.601", + "19.83", + "33.2691", + "13.1404" + ] + } + }, + { + "name": "16.0021", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 14662, + "unique_ratio": 0.963654, + "example_values": [ + "10.8862", + "44.2479", + "7.3303", + "9.1269", + "10.8527" + ] + } + }, + { + "name": "2.6449", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 6336, + "unique_ratio": 0.416431, + "example_values": [ + "2.5328", + "3.5558", + "2.2541", + "2.6728", + "2.1775" + ] + } + }, + { + "name": "0.3918", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 6002, + "unique_ratio": 0.394479, + "example_values": [ + "0.4047", + "0.1769", + "0.7521", + "0.4437", + "0.7708" + ] + } + }, + { + "name": "0.1982", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 4230, + "unique_ratio": 0.278015, + "example_values": [ + "0.2155", + "0.1003", + "0.4095", + "0.2553", + "0.4352" + ] + } + }, + { + "name": "27.7004", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 14996, + "unique_ratio": 0.985606, + "example_values": [ + "-25.0369", + "-95.8266", + "2.8528", + "12.3981", + "14.3006" + ] + } + }, + { + "name": "22.011", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 14984, + "unique_ratio": 0.984818, + "example_values": [ + "-23.1659", + "14.9809", + "-9.7666", + "19.9081", + "-3.6418" + ] + } + }, + { + "name": "-8.2027", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 14795, + "unique_ratio": 0.972396, + "example_values": [ + "3.492", + "29.3812", + "5.0346", + "-5.3204", + "-11.3646" + ] + } + }, + { + "name": "40.092", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 14518, + "unique_ratio": 0.95419, + "example_values": [ + "0.334", + "4.134", + "13.794", + "20.78", + "20.124" + ] + } + }, + { + "name": "81.8828", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 14824, + "unique_ratio": 0.974302, + "example_values": [ + "132.907", + "286.69", + "108.464", + "180.4168", + "222.525" + ] + } + }, + { + "name": "g", + "role": "target", + "semantic_type": "categorical", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 2, + "unique_ratio": 0.000131, + "example_values": [ + "g", + "h" + ] + } + } + ] +} \ No newline at end of file diff --git a/timecost/n11/tabsyn/tabsyn-n11-20260501_041133/public_gate/public_gate_report.json b/timecost/n11/tabsyn/tabsyn-n11-20260501_041133/public_gate/public_gate_report.json new file mode 100644 index 0000000000000000000000000000000000000000..4864c3fc29664a3b44991534165974fed3741dfa --- /dev/null +++ b/timecost/n11/tabsyn/tabsyn-n11-20260501_041133/public_gate/public_gate_report.json @@ -0,0 +1,37 @@ +{ + "dataset_id": "n11", + "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": "g", + "task_type": "classification", + "input_splits": { + "train": "/data/jialinzhang/SynthesizePipeline-server/DatasetNew/n11/n11-train.csv", + "val": "/data/jialinzhang/SynthesizePipeline-server/DatasetNew/n11/n11-val.csv", + "test": "/data/jialinzhang/SynthesizePipeline-server/DatasetNew/n11/n11-test.csv" + } +} \ No newline at end of file diff --git a/timecost/n11/tabsyn/tabsyn-n11-20260501_041133/public_gate/staged_input_manifest.json b/timecost/n11/tabsyn/tabsyn-n11-20260501_041133/public_gate/staged_input_manifest.json new file mode 100644 index 0000000000000000000000000000000000000000..1498df41cd462c495f9b8d036e6b94aff51138d5 --- /dev/null +++ b/timecost/n11/tabsyn/tabsyn-n11-20260501_041133/public_gate/staged_input_manifest.json @@ -0,0 +1,240 @@ +{ + "dataset_id": "n11", + "target_column": "g", + "task_type": "classification", + "train_csv": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/n11/tabsyn/tabsyn-n11-20260501_041133/staged/public/train.csv", + "val_csv": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/n11/tabsyn/tabsyn-n11-20260501_041133/staged/public/val.csv", + "test_csv": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/n11/tabsyn/tabsyn-n11-20260501_041133/staged/public/test.csv", + "features_json": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/n11/tabsyn/tabsyn-n11-20260501_041133/staged/public/staged_features.json", + "public_gate_report": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/n11/tabsyn/tabsyn-n11-20260501_041133/public_gate/public_gate_report.json", + "column_schema": [ + { + "name": "28.7967", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 14962, + "unique_ratio": 0.983372, + "example_values": [ + "33.9347", + "118.601", + "19.83", + "33.2691", + "13.1404" + ] + } + }, + { + "name": "16.0021", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 14662, + "unique_ratio": 0.963654, + "example_values": [ + "10.8862", + "44.2479", + "7.3303", + "9.1269", + "10.8527" + ] + } + }, + { + "name": "2.6449", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 6336, + "unique_ratio": 0.416431, + "example_values": [ + "2.5328", + "3.5558", + "2.2541", + "2.6728", + "2.1775" + ] + } + }, + { + "name": "0.3918", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 6002, + "unique_ratio": 0.394479, + "example_values": [ + "0.4047", + "0.1769", + "0.7521", + "0.4437", + "0.7708" + ] + } + }, + { + "name": "0.1982", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 4230, + "unique_ratio": 0.278015, + "example_values": [ + "0.2155", + "0.1003", + "0.4095", + "0.2553", + "0.4352" + ] + } + }, + { + "name": "27.7004", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 14996, + "unique_ratio": 0.985606, + "example_values": [ + "-25.0369", + "-95.8266", + "2.8528", + "12.3981", + "14.3006" + ] + } + }, + { + "name": "22.011", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 14984, + "unique_ratio": 0.984818, + "example_values": [ + "-23.1659", + "14.9809", + "-9.7666", + "19.9081", + "-3.6418" + ] + } + }, + { + "name": "-8.2027", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 14795, + "unique_ratio": 0.972396, + "example_values": [ + "3.492", + "29.3812", + "5.0346", + "-5.3204", + "-11.3646" + ] + } + }, + { + "name": "40.092", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 14518, + "unique_ratio": 0.95419, + "example_values": [ + "0.334", + "4.134", + "13.794", + "20.78", + "20.124" + ] + } + }, + { + "name": "81.8828", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 14824, + "unique_ratio": 0.974302, + "example_values": [ + "132.907", + "286.69", + "108.464", + "180.4168", + "222.525" + ] + } + }, + { + "name": "g", + "role": "target", + "semantic_type": "categorical", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 2, + "unique_ratio": 0.000131, + "example_values": [ + "g", + "h" + ] + } + } + ] +} \ No newline at end of file diff --git a/timecost/n11/tabsyn/tabsyn-n11-20260501_041133/runtime_result.json b/timecost/n11/tabsyn/tabsyn-n11-20260501_041133/runtime_result.json new file mode 100644 index 0000000000000000000000000000000000000000..ae882328c4cf80227350a6a958f371d08fae3ff3 --- /dev/null +++ b/timecost/n11/tabsyn/tabsyn-n11-20260501_041133/runtime_result.json @@ -0,0 +1,27 @@ +{ + "dataset_id": "n11", + "model": "tabsyn", + "run_id": "tabsyn-n11-20260501_041133", + "public_gate_status": "pass", + "adapter_ready_status": "pass", + "train_status": "success", + "generate_status": "success", + "reason_code": null, + "reason_detail": null, + "artifacts": { + "synthetic_csv": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/n11/tabsyn/tabsyn-n11-20260501_041133/tabsyn-n11-15215-20260501_045031.csv", + "model_path": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/n11/tabsyn/tabsyn-n11-20260501_041133" + }, + "timings": { + "train": { + "started_at": "2026-05-01T04:11:33", + "ended_at": "2026-05-01T04:50:31", + "duration_sec": 2337.835 + }, + "generate": { + "started_at": "2026-05-01T04:50:31", + "ended_at": "2026-05-01T04:50:41", + "duration_sec": 9.878 + } + } +} \ No newline at end of file diff --git a/timecost/n11/tabsyn/tabsyn-n11-20260501_041133/staged/public/staged_features.json b/timecost/n11/tabsyn/tabsyn-n11-20260501_041133/staged/public/staged_features.json new file mode 100644 index 0000000000000000000000000000000000000000..bdb9c28b9d52f06368851a08caadc305035fc1b7 --- /dev/null +++ b/timecost/n11/tabsyn/tabsyn-n11-20260501_041133/staged/public/staged_features.json @@ -0,0 +1,57 @@ +[ + { + "feature_name": "28.7967", + "data_type": "continuous", + "is_target": false + }, + { + "feature_name": "16.0021", + "data_type": "continuous", + "is_target": false + }, + { + "feature_name": "2.6449", + "data_type": "continuous", + "is_target": false + }, + { + "feature_name": "0.3918", + "data_type": "continuous", + "is_target": false + }, + { + "feature_name": "0.1982", + "data_type": "continuous", + "is_target": false + }, + { + "feature_name": "27.7004", + "data_type": "continuous", + "is_target": false + }, + { + "feature_name": "22.011", + "data_type": "continuous", + "is_target": false + }, + { + "feature_name": "-8.2027", + "data_type": "continuous", + "is_target": false + }, + { + "feature_name": "40.092", + "data_type": "continuous", + "is_target": false + }, + { + "feature_name": "81.8828", + "data_type": "continuous", + "is_target": false + }, + { + "feature_name": "g", + "data_type": "categorical", + "is_target": true + } +] \ No newline at end of file diff --git a/timecost/n11/tabsyn/tabsyn-n11-20260501_041133/staged/public/test.csv b/timecost/n11/tabsyn/tabsyn-n11-20260501_041133/staged/public/test.csv new file mode 100644 index 0000000000000000000000000000000000000000..59e413eb15b50a2ac49cd95bbe57b0d0018ccf95 --- /dev/null +++ b/timecost/n11/tabsyn/tabsyn-n11-20260501_041133/staged/public/test.csv @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:bf4e935f84569b849b662718eaa19be605037d46a5f7391f164728d6d9c3bb50 +size 148017 diff --git a/timecost/n11/tabsyn/tabsyn-n11-20260501_041133/staged/public/train.csv b/timecost/n11/tabsyn/tabsyn-n11-20260501_041133/staged/public/train.csv new file mode 100644 index 0000000000000000000000000000000000000000..cc5acd9fe00e8a233592b4da9797300adc83744b --- /dev/null +++ b/timecost/n11/tabsyn/tabsyn-n11-20260501_041133/staged/public/train.csv @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:3ab621ac8239797506ce800c1409422452b8127da93add91dd9e6d63ddeec6f7 +size 1182326 diff --git a/timecost/n11/tabsyn/tabsyn-n11-20260501_041133/staged/public/val.csv b/timecost/n11/tabsyn/tabsyn-n11-20260501_041133/staged/public/val.csv new file mode 100644 index 0000000000000000000000000000000000000000..e0a3b6ab9c53a7f8d97dff3290e643431f9ad023 --- /dev/null +++ b/timecost/n11/tabsyn/tabsyn-n11-20260501_041133/staged/public/val.csv @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:374e44edf25e58ca37eabbef0485c98cecdbdfa9d24da738937f404840bfad44 +size 147784 diff --git a/timecost/n11/tabsyn/tabsyn-n11-20260501_041133/staged/tabsyn/adapter_report.json b/timecost/n11/tabsyn/tabsyn-n11-20260501_041133/staged/tabsyn/adapter_report.json new file mode 100644 index 0000000000000000000000000000000000000000..ee1bd6ae569f862a944381e7414cbb3f957e1e16 --- /dev/null +++ b/timecost/n11/tabsyn/tabsyn-n11-20260501_041133/staged/tabsyn/adapter_report.json @@ -0,0 +1,7 @@ +{ + "adapter_ready_status": "pass", + "adapter_fail_reason_code": null, + "adapter_fail_detail": null, + "adapter_transforms_applied": [], + "model_input_manifest": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/n11/tabsyn/tabsyn-n11-20260501_041133/staged/tabsyn/model_input_manifest.json" +} \ No newline at end of file diff --git a/timecost/n11/tabsyn/tabsyn-n11-20260501_041133/staged/tabsyn/adapter_transforms_applied.json b/timecost/n11/tabsyn/tabsyn-n11-20260501_041133/staged/tabsyn/adapter_transforms_applied.json new file mode 100644 index 0000000000000000000000000000000000000000..0637a088a01e8ddab3bf3fa98dbe804cbde1a0dc --- /dev/null +++ b/timecost/n11/tabsyn/tabsyn-n11-20260501_041133/staged/tabsyn/adapter_transforms_applied.json @@ -0,0 +1 @@ +[] \ No newline at end of file diff --git a/timecost/n11/tabsyn/tabsyn-n11-20260501_041133/staged/tabsyn/model_input_manifest.json b/timecost/n11/tabsyn/tabsyn-n11-20260501_041133/staged/tabsyn/model_input_manifest.json new file mode 100644 index 0000000000000000000000000000000000000000..d6c0ded4fc00417a846bba79eddd21bb41355cbe --- /dev/null +++ b/timecost/n11/tabsyn/tabsyn-n11-20260501_041133/staged/tabsyn/model_input_manifest.json @@ -0,0 +1,242 @@ +{ + "dataset_id": "n11", + "model": "tabsyn", + "target_column": "g", + "task_type": "classification", + "column_schema": [ + { + "name": "28.7967", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 14962, + "unique_ratio": 0.983372, + "example_values": [ + "33.9347", + "118.601", + "19.83", + "33.2691", + "13.1404" + ] + } + }, + { + "name": "16.0021", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 14662, + "unique_ratio": 0.963654, + "example_values": [ + "10.8862", + "44.2479", + "7.3303", + "9.1269", + "10.8527" + ] + } + }, + { + "name": "2.6449", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 6336, + "unique_ratio": 0.416431, + "example_values": [ + "2.5328", + "3.5558", + "2.2541", + "2.6728", + "2.1775" + ] + } + }, + { + "name": "0.3918", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 6002, + "unique_ratio": 0.394479, + "example_values": [ + "0.4047", + "0.1769", + "0.7521", + "0.4437", + "0.7708" + ] + } + }, + { + "name": "0.1982", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 4230, + "unique_ratio": 0.278015, + "example_values": [ + "0.2155", + "0.1003", + "0.4095", + "0.2553", + "0.4352" + ] + } + }, + { + "name": "27.7004", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 14996, + "unique_ratio": 0.985606, + "example_values": [ + "-25.0369", + "-95.8266", + "2.8528", + "12.3981", + "14.3006" + ] + } + }, + { + "name": "22.011", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 14984, + "unique_ratio": 0.984818, + "example_values": [ + "-23.1659", + "14.9809", + "-9.7666", + "19.9081", + "-3.6418" + ] + } + }, + { + "name": "-8.2027", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 14795, + "unique_ratio": 0.972396, + "example_values": [ + "3.492", + "29.3812", + "5.0346", + "-5.3204", + "-11.3646" + ] + } + }, + { + "name": "40.092", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 14518, + "unique_ratio": 0.95419, + "example_values": [ + "0.334", + "4.134", + "13.794", + "20.78", + "20.124" + ] + } + }, + { + "name": "81.8828", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 14824, + "unique_ratio": 0.974302, + "example_values": [ + "132.907", + "286.69", + "108.464", + "180.4168", + "222.525" + ] + } + }, + { + "name": "g", + "role": "target", + "semantic_type": "categorical", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 2, + "unique_ratio": 0.000131, + "example_values": [ + "g", + "h" + ] + } + } + ], + "public_manifest": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/n11/tabsyn/tabsyn-n11-20260501_041133/public_gate/staged_input_manifest.json", + "train_csv": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/n11/tabsyn/tabsyn-n11-20260501_041133/staged/public/train.csv", + "val_csv": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/n11/tabsyn/tabsyn-n11-20260501_041133/staged/public/val.csv", + "test_csv": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/n11/tabsyn/tabsyn-n11-20260501_041133/staged/public/test.csv", + "features_json": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/n11/tabsyn/tabsyn-n11-20260501_041133/staged/public/staged_features.json", + "public_gate_report": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/n11/tabsyn/tabsyn-n11-20260501_041133/public_gate/public_gate_report.json" +} \ No newline at end of file diff --git a/timecost/n11/tabsyn/tabsyn-n11-20260501_041133/synthetic/tabsyn_n11/real.csv b/timecost/n11/tabsyn/tabsyn-n11-20260501_041133/synthetic/tabsyn_n11/real.csv new file mode 100644 index 0000000000000000000000000000000000000000..adb2da2a9734fb5b3bb2e0fa1cd5b5815b1416c8 --- /dev/null +++ b/timecost/n11/tabsyn/tabsyn-n11-20260501_041133/synthetic/tabsyn_n11/real.csv @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:976bc9e44218596dd6aaa5480a6b4a586c49f9d705a939a7c3089af9bd29cf68 +size 1182326 diff --git a/timecost/n11/tabsyn/tabsyn-n11-20260501_041133/synthetic/tabsyn_n11/test.csv b/timecost/n11/tabsyn/tabsyn-n11-20260501_041133/synthetic/tabsyn_n11/test.csv new file mode 100644 index 0000000000000000000000000000000000000000..adb2da2a9734fb5b3bb2e0fa1cd5b5815b1416c8 --- /dev/null +++ b/timecost/n11/tabsyn/tabsyn-n11-20260501_041133/synthetic/tabsyn_n11/test.csv @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:976bc9e44218596dd6aaa5480a6b4a586c49f9d705a939a7c3089af9bd29cf68 +size 1182326 diff --git a/timecost/n11/tabsyn/tabsyn-n11-20260501_041133/tabsyn-n11-15215-20260501_045031.csv b/timecost/n11/tabsyn/tabsyn-n11-20260501_041133/tabsyn-n11-15215-20260501_045031.csv new file mode 100644 index 0000000000000000000000000000000000000000..ca703f635b90af929401f8887bcadff921aae412 --- /dev/null +++ b/timecost/n11/tabsyn/tabsyn-n11-20260501_041133/tabsyn-n11-15215-20260501_045031.csv @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:2761ec29ac73191578aa9b1dfbda25e0ec255341d853c0cb4c3af7447bdf283c +size 1587669 diff --git a/timecost/n11/tabsyn/tabsyn-n11-20260501_041133/train_20260501_041134.log b/timecost/n11/tabsyn/tabsyn-n11-20260501_041133/train_20260501_041134.log new file mode 100644 index 0000000000000000000000000000000000000000..d96540f3d0ae957de8cf08c88b7bd560906e9a52 --- /dev/null +++ b/timecost/n11/tabsyn/tabsyn-n11-20260501_041133/train_20260501_041134.log @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:6dc4cf58eb9a35a8ac37d2782b0b1bdca13c182d2ec53daaf38ca4b1dccd88e9 +size 2885479 diff --git a/timecost/n11/tvae/tvae-n11-20260501_060415/_tvae_generate.py b/timecost/n11/tvae/tvae-n11-20260501_060415/_tvae_generate.py new file mode 100644 index 0000000000000000000000000000000000000000..9e4b856dcbc0c03be55a28643e593faa566fb676 --- /dev/null +++ b/timecost/n11/tvae/tvae-n11-20260501_060415/_tvae_generate.py @@ -0,0 +1,23 @@ +import os, sys +sys.path.insert(0, "/work") +from src.SpecificModels.ctgan_joblib_parallel_cap import apply_parallel_cap_from_env +apply_parallel_cap_from_env() +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 +os.environ.setdefault("LOKY_MAX_CPU_COUNT", "8") +os.environ.setdefault("OPENBLAS_NUM_THREADS", "8") +os.environ.setdefault("MKL_NUM_THREADS", "8") +model = TVAE.load("/work/output-Benchmark-trainonly-v1/n11/tvae/tvae-n11-20260501_060415/models_300epochs/tvae_300epochs.pt") +total = 15215 +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-Benchmark-trainonly-v1/n11/tvae/tvae-n11-20260501_060415/tvae-n11-15215-20260501_060612.csv", index=False) +print(f"[TVAE] Generated {total} rows (chunks={len(parts)}) -> /work/output-Benchmark-trainonly-v1/n11/tvae/tvae-n11-20260501_060415/tvae-n11-15215-20260501_060612.csv") diff --git a/timecost/n11/tvae/tvae-n11-20260501_060415/_tvae_train.py b/timecost/n11/tvae/tvae-n11-20260501_060415/_tvae_train.py new file mode 100644 index 0000000000000000000000000000000000000000..80f11947200160a432862709610101f0a5f04466 --- /dev/null +++ b/timecost/n11/tvae/tvae-n11-20260501_060415/_tvae_train.py @@ -0,0 +1,30 @@ +import json, os, sys +sys.path.insert(0, "/work") +from src.SpecificModels.ctgan_joblib_parallel_cap import apply_parallel_cap_from_env +apply_parallel_cap_from_env() +import pandas as pd +from ctgan.data import read_csv +from ctgan.synthesizers.tvae import TVAE + +# Keep transform stage parallelism bounded for stability on shared host. +os.environ.setdefault("LOKY_MAX_CPU_COUNT", "8") +os.environ.setdefault("OPENBLAS_NUM_THREADS", "8") +os.environ.setdefault("MKL_NUM_THREADS", "8") +_nj = (os.environ.get("TVAE_CTGAN_JOBTRANS_N_JOBS") or "").strip() +if _nj: + print("[TVAE] joblib Parallel cap ON, TVAE_CTGAN_JOBTRANS_N_JOBS=" + _nj) +else: + print("[TVAE] joblib Parallel cap OFF (unset TVAE_CTGAN_JOBTRANS_N_JOBS)") +print("[TVAE] LOKY_MAX_CPU_COUNT=" + str(os.environ.get("LOKY_MAX_CPU_COUNT", ""))) + +csv_path = "/work/output-Benchmark-trainonly-v1/n11/tvae/tvae-n11-20260501_060415/staged/public/train.csv" +meta_path = "/work/output-Benchmark-trainonly-v1/n11/tvae/tvae-n11-20260501_060415/tvae_metadata.json" +save_path = "/work/output-Benchmark-trainonly-v1/n11/tvae/tvae-n11-20260501_060415/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/timecost/n11/tvae/tvae-n11-20260501_060415/gen_20260501_060612.log b/timecost/n11/tvae/tvae-n11-20260501_060415/gen_20260501_060612.log new file mode 100644 index 0000000000000000000000000000000000000000..12aa98b94c87a148a484f0751fd48a794ec97c31 --- /dev/null +++ b/timecost/n11/tvae/tvae-n11-20260501_060415/gen_20260501_060612.log @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:39be73284f50e7af2999301a8aeef40dc550f913864a42f3845bdf385c803bb2 +size 409 diff --git a/timecost/n11/tvae/tvae-n11-20260501_060415/input_snapshot.json b/timecost/n11/tvae/tvae-n11-20260501_060415/input_snapshot.json new file mode 100644 index 0000000000000000000000000000000000000000..e6f1319f81b715c4d1ea2df86d885029025afddf --- /dev/null +++ b/timecost/n11/tvae/tvae-n11-20260501_060415/input_snapshot.json @@ -0,0 +1,36 @@ +{ + "dataset_id": "n11", + "model": "tvae", + "inputs": { + "train_csv": { + "path": "/data/jialinzhang/SynthesizePipeline-server/DatasetNew/n11/n11-train.csv", + "exists": true, + "size": 1197106, + "sha256": "f8253c0573a8f028c0b1e17752d214fbad956d0ace350d0dee3947f3dfafbc75" + }, + "val_csv": { + "path": "/data/jialinzhang/SynthesizePipeline-server/DatasetNew/n11/n11-val.csv", + "exists": true, + "size": 149602, + "sha256": "7bde20178eb7de9523d4df719a3b461656f5704e3a03187c8289b2299dc8e458" + }, + "test_csv": { + "path": "/data/jialinzhang/SynthesizePipeline-server/DatasetNew/n11/n11-test.csv", + "exists": true, + "size": 149859, + "sha256": "855b55969de2da1341d428edef6dedfdf0c60f016b9fa08efaf8a883af6a2c53" + }, + "profile_json": { + "path": "/data/jialinzhang/SynthesizePipeline-server/DatasetNew/artifacts/data_core/tabular/n11/n11-dataset_profile.json", + "exists": true, + "size": 5104, + "sha256": "0bd368d22598246defd33bda12c9872165f26e798cc462ec472d193f322fba07" + }, + "contract_json": { + "path": "/data/jialinzhang/SynthesizePipeline-server/DatasetNew/artifacts/data_core/tabular/n11/n11-dataset_contract_v1.json", + "exists": true, + "size": 5874, + "sha256": "ad3f01eafe9fb37754eed9be9bd058390fd3a4f54d8be4ceb4b5326a9901da9d" + } + } +} \ No newline at end of file diff --git a/timecost/n11/tvae/tvae-n11-20260501_060415/models_300epochs/train_20260501_060415.log b/timecost/n11/tvae/tvae-n11-20260501_060415/models_300epochs/train_20260501_060415.log new file mode 100644 index 0000000000000000000000000000000000000000..f7984fef54c617064f323ba63bb0d0ceb8ad67c1 --- /dev/null +++ b/timecost/n11/tvae/tvae-n11-20260501_060415/models_300epochs/train_20260501_060415.log @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:752e0addc424b91ff97b538ca072de64d2a36b12afcb0a464224a7ad3183cedf +size 536 diff --git a/timecost/n11/tvae/tvae-n11-20260501_060415/models_300epochs/tvae_300epochs.pt b/timecost/n11/tvae/tvae-n11-20260501_060415/models_300epochs/tvae_300epochs.pt new file mode 100644 index 0000000000000000000000000000000000000000..46d2c7c549447cb3f8b5dd9c1ad52d7e076877f5 --- /dev/null +++ b/timecost/n11/tvae/tvae-n11-20260501_060415/models_300epochs/tvae_300epochs.pt @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:22ef9339d6a73c9caf0be5e43765d74a4da2901637f0a64b743ff93f376cd814 +size 790828 diff --git a/timecost/n11/tvae/tvae-n11-20260501_060415/public_gate/normalized_schema_snapshot.json b/timecost/n11/tvae/tvae-n11-20260501_060415/public_gate/normalized_schema_snapshot.json new file mode 100644 index 0000000000000000000000000000000000000000..96904695eb041844b615aa285fda674f1da87108 --- /dev/null +++ b/timecost/n11/tvae/tvae-n11-20260501_060415/public_gate/normalized_schema_snapshot.json @@ -0,0 +1,235 @@ +{ + "dataset_id": "n11", + "target_column": "g", + "task_type": "classification", + "columns": [ + { + "name": "28.7967", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 14962, + "unique_ratio": 0.983372, + "example_values": [ + "33.9347", + "118.601", + "19.83", + "33.2691", + "13.1404" + ] + } + }, + { + "name": "16.0021", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 14662, + "unique_ratio": 0.963654, + "example_values": [ + "10.8862", + "44.2479", + "7.3303", + "9.1269", + "10.8527" + ] + } + }, + { + "name": "2.6449", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 6336, + "unique_ratio": 0.416431, + "example_values": [ + "2.5328", + "3.5558", + "2.2541", + "2.6728", + "2.1775" + ] + } + }, + { + "name": "0.3918", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 6002, + "unique_ratio": 0.394479, + "example_values": [ + "0.4047", + "0.1769", + "0.7521", + "0.4437", + "0.7708" + ] + } + }, + { + "name": "0.1982", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 4230, + "unique_ratio": 0.278015, + "example_values": [ + "0.2155", + "0.1003", + "0.4095", + "0.2553", + "0.4352" + ] + } + }, + { + "name": "27.7004", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 14996, + "unique_ratio": 0.985606, + "example_values": [ + "-25.0369", + "-95.8266", + "2.8528", + "12.3981", + "14.3006" + ] + } + }, + { + "name": "22.011", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 14984, + "unique_ratio": 0.984818, + "example_values": [ + "-23.1659", + "14.9809", + "-9.7666", + "19.9081", + "-3.6418" + ] + } + }, + { + "name": "-8.2027", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 14795, + "unique_ratio": 0.972396, + "example_values": [ + "3.492", + "29.3812", + "5.0346", + "-5.3204", + "-11.3646" + ] + } + }, + { + "name": "40.092", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 14518, + "unique_ratio": 0.95419, + "example_values": [ + "0.334", + "4.134", + "13.794", + "20.78", + "20.124" + ] + } + }, + { + "name": "81.8828", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 14824, + "unique_ratio": 0.974302, + "example_values": [ + "132.907", + "286.69", + "108.464", + "180.4168", + "222.525" + ] + } + }, + { + "name": "g", + "role": "target", + "semantic_type": "categorical", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 2, + "unique_ratio": 0.000131, + "example_values": [ + "g", + "h" + ] + } + } + ] +} \ No newline at end of file diff --git a/timecost/n11/tvae/tvae-n11-20260501_060415/public_gate/public_gate_report.json b/timecost/n11/tvae/tvae-n11-20260501_060415/public_gate/public_gate_report.json new file mode 100644 index 0000000000000000000000000000000000000000..4864c3fc29664a3b44991534165974fed3741dfa --- /dev/null +++ b/timecost/n11/tvae/tvae-n11-20260501_060415/public_gate/public_gate_report.json @@ -0,0 +1,37 @@ +{ + "dataset_id": "n11", + "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": "g", + "task_type": "classification", + "input_splits": { + "train": "/data/jialinzhang/SynthesizePipeline-server/DatasetNew/n11/n11-train.csv", + "val": "/data/jialinzhang/SynthesizePipeline-server/DatasetNew/n11/n11-val.csv", + "test": "/data/jialinzhang/SynthesizePipeline-server/DatasetNew/n11/n11-test.csv" + } +} \ No newline at end of file diff --git a/timecost/n11/tvae/tvae-n11-20260501_060415/public_gate/staged_input_manifest.json b/timecost/n11/tvae/tvae-n11-20260501_060415/public_gate/staged_input_manifest.json new file mode 100644 index 0000000000000000000000000000000000000000..b71b499cd71a99416463e9b51c787dba2cd22139 --- /dev/null +++ b/timecost/n11/tvae/tvae-n11-20260501_060415/public_gate/staged_input_manifest.json @@ -0,0 +1,240 @@ +{ + "dataset_id": "n11", + "target_column": "g", + "task_type": "classification", + "train_csv": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/n11/tvae/tvae-n11-20260501_060415/staged/public/train.csv", + "val_csv": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/n11/tvae/tvae-n11-20260501_060415/staged/public/val.csv", + "test_csv": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/n11/tvae/tvae-n11-20260501_060415/staged/public/test.csv", + "features_json": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/n11/tvae/tvae-n11-20260501_060415/staged/public/staged_features.json", + "public_gate_report": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/n11/tvae/tvae-n11-20260501_060415/public_gate/public_gate_report.json", + "column_schema": [ + { + "name": "28.7967", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 14962, + "unique_ratio": 0.983372, + "example_values": [ + "33.9347", + "118.601", + "19.83", + "33.2691", + "13.1404" + ] + } + }, + { + "name": "16.0021", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 14662, + "unique_ratio": 0.963654, + "example_values": [ + "10.8862", + "44.2479", + "7.3303", + "9.1269", + "10.8527" + ] + } + }, + { + "name": "2.6449", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 6336, + "unique_ratio": 0.416431, + "example_values": [ + "2.5328", + "3.5558", + "2.2541", + "2.6728", + "2.1775" + ] + } + }, + { + "name": "0.3918", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 6002, + "unique_ratio": 0.394479, + "example_values": [ + "0.4047", + "0.1769", + "0.7521", + "0.4437", + "0.7708" + ] + } + }, + { + "name": "0.1982", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 4230, + "unique_ratio": 0.278015, + "example_values": [ + "0.2155", + "0.1003", + "0.4095", + "0.2553", + "0.4352" + ] + } + }, + { + "name": "27.7004", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 14996, + "unique_ratio": 0.985606, + "example_values": [ + "-25.0369", + "-95.8266", + "2.8528", + "12.3981", + "14.3006" + ] + } + }, + { + "name": "22.011", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 14984, + "unique_ratio": 0.984818, + "example_values": [ + "-23.1659", + "14.9809", + "-9.7666", + "19.9081", + "-3.6418" + ] + } + }, + { + "name": "-8.2027", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 14795, + "unique_ratio": 0.972396, + "example_values": [ + "3.492", + "29.3812", + "5.0346", + "-5.3204", + "-11.3646" + ] + } + }, + { + "name": "40.092", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 14518, + "unique_ratio": 0.95419, + "example_values": [ + "0.334", + "4.134", + "13.794", + "20.78", + "20.124" + ] + } + }, + { + "name": "81.8828", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 14824, + "unique_ratio": 0.974302, + "example_values": [ + "132.907", + "286.69", + "108.464", + "180.4168", + "222.525" + ] + } + }, + { + "name": "g", + "role": "target", + "semantic_type": "categorical", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 2, + "unique_ratio": 0.000131, + "example_values": [ + "g", + "h" + ] + } + } + ] +} \ No newline at end of file diff --git a/timecost/n11/tvae/tvae-n11-20260501_060415/runtime_result.json b/timecost/n11/tvae/tvae-n11-20260501_060415/runtime_result.json new file mode 100644 index 0000000000000000000000000000000000000000..c994b89985f653cc796e764f95dfc6a52df067da --- /dev/null +++ b/timecost/n11/tvae/tvae-n11-20260501_060415/runtime_result.json @@ -0,0 +1,27 @@ +{ + "dataset_id": "n11", + "model": "tvae", + "run_id": "tvae-n11-20260501_060415", + "public_gate_status": "pass", + "adapter_ready_status": "pass", + "train_status": "success", + "generate_status": "success", + "reason_code": null, + "reason_detail": null, + "artifacts": { + "synthetic_csv": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/n11/tvae/tvae-n11-20260501_060415/tvae-n11-15215-20260501_060612.csv", + "model_path": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/n11/tvae/tvae-n11-20260501_060415/models_300epochs/tvae_300epochs.pt" + }, + "timings": { + "train": { + "started_at": "2026-05-01T06:04:15", + "ended_at": "2026-05-01T06:06:12", + "duration_sec": 116.596 + }, + "generate": { + "started_at": "2026-05-01T06:06:12", + "ended_at": "2026-05-01T06:06:17", + "duration_sec": 5.251 + } + } +} \ No newline at end of file diff --git a/timecost/n11/tvae/tvae-n11-20260501_060415/staged/public/staged_features.json b/timecost/n11/tvae/tvae-n11-20260501_060415/staged/public/staged_features.json new file mode 100644 index 0000000000000000000000000000000000000000..bdb9c28b9d52f06368851a08caadc305035fc1b7 --- /dev/null +++ b/timecost/n11/tvae/tvae-n11-20260501_060415/staged/public/staged_features.json @@ -0,0 +1,57 @@ +[ + { + "feature_name": "28.7967", + "data_type": "continuous", + "is_target": false + }, + { + "feature_name": "16.0021", + "data_type": "continuous", + "is_target": false + }, + { + "feature_name": "2.6449", + "data_type": "continuous", + "is_target": false + }, + { + "feature_name": "0.3918", + "data_type": "continuous", + "is_target": false + }, + { + "feature_name": "0.1982", + "data_type": "continuous", + "is_target": false + }, + { + "feature_name": "27.7004", + "data_type": "continuous", + "is_target": false + }, + { + "feature_name": "22.011", + "data_type": "continuous", + "is_target": false + }, + { + "feature_name": "-8.2027", + "data_type": "continuous", + "is_target": false + }, + { + "feature_name": "40.092", + "data_type": "continuous", + "is_target": false + }, + { + "feature_name": "81.8828", + "data_type": "continuous", + "is_target": false + }, + { + "feature_name": "g", + "data_type": "categorical", + "is_target": true + } +] \ No newline at end of file diff --git a/timecost/n11/tvae/tvae-n11-20260501_060415/staged/public/test.csv b/timecost/n11/tvae/tvae-n11-20260501_060415/staged/public/test.csv new file mode 100644 index 0000000000000000000000000000000000000000..59e413eb15b50a2ac49cd95bbe57b0d0018ccf95 --- /dev/null +++ b/timecost/n11/tvae/tvae-n11-20260501_060415/staged/public/test.csv @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:bf4e935f84569b849b662718eaa19be605037d46a5f7391f164728d6d9c3bb50 +size 148017 diff --git a/timecost/n11/tvae/tvae-n11-20260501_060415/staged/public/train.csv b/timecost/n11/tvae/tvae-n11-20260501_060415/staged/public/train.csv new file mode 100644 index 0000000000000000000000000000000000000000..cc5acd9fe00e8a233592b4da9797300adc83744b --- /dev/null +++ b/timecost/n11/tvae/tvae-n11-20260501_060415/staged/public/train.csv @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:3ab621ac8239797506ce800c1409422452b8127da93add91dd9e6d63ddeec6f7 +size 1182326 diff --git a/timecost/n11/tvae/tvae-n11-20260501_060415/staged/public/val.csv b/timecost/n11/tvae/tvae-n11-20260501_060415/staged/public/val.csv new file mode 100644 index 0000000000000000000000000000000000000000..e0a3b6ab9c53a7f8d97dff3290e643431f9ad023 --- /dev/null +++ b/timecost/n11/tvae/tvae-n11-20260501_060415/staged/public/val.csv @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:374e44edf25e58ca37eabbef0485c98cecdbdfa9d24da738937f404840bfad44 +size 147784 diff --git a/timecost/n11/tvae/tvae-n11-20260501_060415/staged/tvae/adapter_report.json b/timecost/n11/tvae/tvae-n11-20260501_060415/staged/tvae/adapter_report.json new file mode 100644 index 0000000000000000000000000000000000000000..5a1cd5ff4629fff6c3f17af32d59524587626686 --- /dev/null +++ b/timecost/n11/tvae/tvae-n11-20260501_060415/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-Benchmark-trainonly-v1/n11/tvae/tvae-n11-20260501_060415/staged/tvae/model_input_manifest.json" +} \ No newline at end of file diff --git a/timecost/n11/tvae/tvae-n11-20260501_060415/staged/tvae/adapter_transforms_applied.json b/timecost/n11/tvae/tvae-n11-20260501_060415/staged/tvae/adapter_transforms_applied.json new file mode 100644 index 0000000000000000000000000000000000000000..0637a088a01e8ddab3bf3fa98dbe804cbde1a0dc --- /dev/null +++ b/timecost/n11/tvae/tvae-n11-20260501_060415/staged/tvae/adapter_transforms_applied.json @@ -0,0 +1 @@ +[] \ No newline at end of file diff --git a/timecost/n11/tvae/tvae-n11-20260501_060415/staged/tvae/model_input_manifest.json b/timecost/n11/tvae/tvae-n11-20260501_060415/staged/tvae/model_input_manifest.json new file mode 100644 index 0000000000000000000000000000000000000000..fe9bdba1a7253f1f715ce88e0a1fcf5817dda70f --- /dev/null +++ b/timecost/n11/tvae/tvae-n11-20260501_060415/staged/tvae/model_input_manifest.json @@ -0,0 +1,242 @@ +{ + "dataset_id": "n11", + "model": "tvae", + "target_column": "g", + "task_type": "classification", + "column_schema": [ + { + "name": "28.7967", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 14962, + "unique_ratio": 0.983372, + "example_values": [ + "33.9347", + "118.601", + "19.83", + "33.2691", + "13.1404" + ] + } + }, + { + "name": "16.0021", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 14662, + "unique_ratio": 0.963654, + "example_values": [ + "10.8862", + "44.2479", + "7.3303", + "9.1269", + "10.8527" + ] + } + }, + { + "name": "2.6449", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 6336, + "unique_ratio": 0.416431, + "example_values": [ + "2.5328", + "3.5558", + "2.2541", + "2.6728", + "2.1775" + ] + } + }, + { + "name": "0.3918", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 6002, + "unique_ratio": 0.394479, + "example_values": [ + "0.4047", + "0.1769", + "0.7521", + "0.4437", + "0.7708" + ] + } + }, + { + "name": "0.1982", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 4230, + "unique_ratio": 0.278015, + "example_values": [ + "0.2155", + "0.1003", + "0.4095", + "0.2553", + "0.4352" + ] + } + }, + { + "name": "27.7004", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 14996, + "unique_ratio": 0.985606, + "example_values": [ + "-25.0369", + "-95.8266", + "2.8528", + "12.3981", + "14.3006" + ] + } + }, + { + "name": "22.011", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 14984, + "unique_ratio": 0.984818, + "example_values": [ + "-23.1659", + "14.9809", + "-9.7666", + "19.9081", + "-3.6418" + ] + } + }, + { + "name": "-8.2027", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 14795, + "unique_ratio": 0.972396, + "example_values": [ + "3.492", + "29.3812", + "5.0346", + "-5.3204", + "-11.3646" + ] + } + }, + { + "name": "40.092", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 14518, + "unique_ratio": 0.95419, + "example_values": [ + "0.334", + "4.134", + "13.794", + "20.78", + "20.124" + ] + } + }, + { + "name": "81.8828", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 14824, + "unique_ratio": 0.974302, + "example_values": [ + "132.907", + "286.69", + "108.464", + "180.4168", + "222.525" + ] + } + }, + { + "name": "g", + "role": "target", + "semantic_type": "categorical", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "mode", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 2, + "unique_ratio": 0.000131, + "example_values": [ + "g", + "h" + ] + } + } + ], + "public_manifest": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/n11/tvae/tvae-n11-20260501_060415/public_gate/staged_input_manifest.json", + "train_csv": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/n11/tvae/tvae-n11-20260501_060415/staged/public/train.csv", + "val_csv": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/n11/tvae/tvae-n11-20260501_060415/staged/public/val.csv", + "test_csv": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/n11/tvae/tvae-n11-20260501_060415/staged/public/test.csv", + "features_json": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/n11/tvae/tvae-n11-20260501_060415/staged/public/staged_features.json", + "public_gate_report": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/n11/tvae/tvae-n11-20260501_060415/public_gate/public_gate_report.json" +} \ No newline at end of file diff --git a/timecost/n11/tvae/tvae-n11-20260501_060415/tvae-n11-15215-20260501_060612.csv b/timecost/n11/tvae/tvae-n11-20260501_060415/tvae-n11-15215-20260501_060612.csv new file mode 100644 index 0000000000000000000000000000000000000000..8882c4f61e9a4b87850220f407fd91f40acc7de4 --- /dev/null +++ b/timecost/n11/tvae/tvae-n11-20260501_060415/tvae-n11-15215-20260501_060612.csv @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:3b16c71741840bc635f0e86a02736b1e041e81c258f32848e9f0329becbcda31 +size 2883511 diff --git a/timecost/n11/tvae/tvae-n11-20260501_060415/tvae_metadata.json b/timecost/n11/tvae/tvae-n11-20260501_060415/tvae_metadata.json new file mode 100644 index 0000000000000000000000000000000000000000..cb19699b85fe49965d86e54abd3c67a8ec6163a8 --- /dev/null +++ b/timecost/n11/tvae/tvae-n11-20260501_060415/tvae_metadata.json @@ -0,0 +1,48 @@ +{ + "columns": [ + { + "name": "28.7967", + "type": "continuous" + }, + { + "name": "16.0021", + "type": "continuous" + }, + { + "name": "2.6449", + "type": "continuous" + }, + { + "name": "0.3918", + "type": "continuous" + }, + { + "name": "0.1982", + "type": "continuous" + }, + { + "name": "27.7004", + "type": "continuous" + }, + { + "name": "22.011", + "type": "continuous" + }, + { + "name": "-8.2027", + "type": "continuous" + }, + { + "name": "40.092", + "type": "continuous" + }, + { + "name": "81.8828", + "type": "continuous" + }, + { + "name": "g", + "type": "categorical" + } + ] +} \ No newline at end of file diff --git a/timecost/n3/arf/arf-n3-20260501_225023/_arf_generate.py b/timecost/n3/arf/arf-n3-20260501_225023/_arf_generate.py new file mode 100644 index 0000000000000000000000000000000000000000..e96b4b1cd9495971fc9fe271d54266725c3ad34a --- /dev/null +++ b/timecost/n3/arf/arf-n3-20260501_225023/_arf_generate.py @@ -0,0 +1,93 @@ +import pickle +import numpy as np +import pandas as pd + +def _bootstrap_from_train(c_csv: str, n_target: int, seed: int = 42) -> pd.DataFrame: + """当 arfpy.forge 完全不可用时,从训练 CSV 有放回抽样,保证行数与列对齐。""" + src = pd.read_csv(c_csv, encoding="utf-8-sig", low_memory=False) + src = src.replace([np.inf, -np.inf], np.nan).dropna(axis=1, how="all") + src = src.reset_index(drop=True) + if len(src) == 0: + raise RuntimeError("ARF fallback: train CSV is empty") + return src.sample(n=n_target, replace=True, random_state=seed).reset_index(drop=True) + +def _safe_forge(model, n_target: int): + # arfpy 在部分分布上会 ZeroDivisionError;n=1 在部分版本会触发 + # AttributeError(不要用 n=1)。失败返回 None,由外层走 bootstrap。 + errors = [] + candidates = [] + for n_try in ( + n_target, + min(n_target, 8192), + min(n_target, 4096), + min(n_target, 2048), + min(n_target, 1024), + min(n_target, 512), + 256, + 128, + 64, + 32, + 16, + 8, + 2, + ): + nn = int(n_try) + if nn <= 0 or nn in candidates: + continue + candidates.append(nn) + for n_try in candidates: + try: + out = model.forge(n=n_try).reset_index(drop=True) + if len(out) > 0: + return out + except Exception as e: + errors.append(f"n={n_try}: {type(e).__name__}: {e}") + print("[ARF] forge failed after retries; last errors:", " | ".join(errors[-4:])) + return None + +n_target = int(3918) +c_csv = "/work/output-Benchmark-trainonly-v1/n3/arf/arf-n3-20260501_225023/staged/public/train.csv" +with open("/work/output-Benchmark-trainonly-v1/n3/arf/arf-n3-20260501_225023/arf_model.pkl", "rb") as f: + model = pickle.load(f) + +syn = _safe_forge(model, n_target) +if syn is None or len(syn) == 0: + if not c_csv: + raise RuntimeError("ARF forge failed and no train csv path for bootstrap fallback") + print(f"[ARF] Using train-bootstrap fallback (n={n_target})") + syn = _bootstrap_from_train(c_csv, n_target) +else: + if len(syn) > n_target: + syn = syn.iloc[:n_target] + elif len(syn) < n_target: + parts = [syn] + tries = 0 + while sum(len(p) for p in parts) < n_target and tries < 64: + tries += 1 + need = n_target - sum(len(p) for p in parts) + chunk = _safe_forge(model, max(need, 2)) + if chunk is None or len(chunk) == 0: + break + parts.append(chunk) + syn = pd.concat(parts, ignore_index=True).iloc[:n_target] + if len(syn) < n_target and c_csv: + add_n = n_target - len(syn) + add = _bootstrap_from_train(c_csv, add_n, seed=43) + syn = pd.concat([syn, add], ignore_index=True).iloc[:n_target] + +_ds_id = 'n3' +if _ds_id == "c19": + # 仅 c19:object 列内裸换行会使 pivot 用 csv.reader 统计到的「记录数」大于 DataFrame 行数 → Sw。 + for _col in syn.columns: + if syn[_col].dtype == object: + syn[_col] = ( + syn[_col] + .astype(str) + .str.replace("\r\n", " ", regex=False) + .str.replace("\n", " ", regex=False) + .str.replace("\r", " ", regex=False) + ) + syn = syn.iloc[:n_target].reset_index(drop=True) + +syn.to_csv("/work/output-Benchmark-trainonly-v1/n3/arf/arf-n3-20260501_225023/arf-n3-3918-20260501_225052.csv", index=False) +print(f"[ARF] Generated {len(syn)} rows (requested {n_target}) -> /work/output-Benchmark-trainonly-v1/n3/arf/arf-n3-20260501_225023/arf-n3-3918-20260501_225052.csv") diff --git a/timecost/n3/arf/arf-n3-20260501_225023/_arf_train.py b/timecost/n3/arf/arf-n3-20260501_225023/_arf_train.py new file mode 100644 index 0000000000000000000000000000000000000000..da3bae6bf5ab0806c16069e5f00dd55deafac2fe --- /dev/null +++ b/timecost/n3/arf/arf-n3-20260501_225023/_arf_train.py @@ -0,0 +1,37 @@ +import pickle +import numpy as np +import pandas as pd +from arfpy import arf + +def _sanitize_for_arf(df: pd.DataFrame) -> pd.DataFrame: + """缓解 forge 阶段 scipy.stats.truncnorm / 除零:处理 inf、NaN 与极端尾部。""" + df = df.replace([np.inf, -np.inf], np.nan) + df = df.dropna(axis=1, how="all") + for col in df.select_dtypes(include=[np.number]).columns: + med = df[col].median() + if pd.isna(med): + med = 0.0 + df[col] = df[col].fillna(med) + nu = int(df[col].nunique(dropna=True)) + if nu <= 1: + continue + lo, hi = df[col].quantile(0.001), df[col].quantile(0.999) + if pd.notna(lo) and pd.notna(hi) and lo < hi: + df[col] = df[col].clip(lo, hi) + return df + +df = pd.read_csv("/work/output-Benchmark-trainonly-v1/n3/arf/arf-n3-20260501_225023/staged/public/train.csv") +df = _sanitize_for_arf(df) +print(f"[ARF] Training on {len(df)} rows, {len(df.columns)} cols") + +model = arf.arf(x=df) +if hasattr(model, "fit"): + model.fit() +elif hasattr(model, "forde"): + model.forde() +else: + raise RuntimeError("arfpy API: no fit() / forde()") + +with open("/work/output-Benchmark-trainonly-v1/n3/arf/arf-n3-20260501_225023/arf_model.pkl", "wb") as f: + pickle.dump(model, f) +print(f"[ARF] Model saved -> /work/output-Benchmark-trainonly-v1/n3/arf/arf-n3-20260501_225023/arf_model.pkl") diff --git a/timecost/n3/arf/arf-n3-20260501_225023/arf-n3-3918-20260501_225052.csv b/timecost/n3/arf/arf-n3-20260501_225023/arf-n3-3918-20260501_225052.csv new file mode 100644 index 0000000000000000000000000000000000000000..c13e43168f0bc389492c40106d5226be37884904 --- /dev/null +++ b/timecost/n3/arf/arf-n3-20260501_225023/arf-n3-3918-20260501_225052.csv @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:034d26d9e71f204197db1f262436a3474fe972cc90043a2777d5f7960608352c +size 876973 diff --git a/timecost/n3/arf/arf-n3-20260501_225023/arf_model.pkl b/timecost/n3/arf/arf-n3-20260501_225023/arf_model.pkl new file mode 100644 index 0000000000000000000000000000000000000000..b0e07c8ccbbf5dd3712bbb1bbcb052d5062467f6 --- /dev/null +++ b/timecost/n3/arf/arf-n3-20260501_225023/arf_model.pkl @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:8c20fa2967362ef7efcb0a9251ff27d2a011b28bbc6d70d442806a722bfce04b +size 21167791 diff --git a/timecost/n3/arf/arf-n3-20260501_225023/gen_20260501_225052.log b/timecost/n3/arf/arf-n3-20260501_225023/gen_20260501_225052.log new file mode 100644 index 0000000000000000000000000000000000000000..50ae69d00e0b2f1aad567e7b76a60cef754af119 --- /dev/null +++ b/timecost/n3/arf/arf-n3-20260501_225023/gen_20260501_225052.log @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:144b44334b50030bc8239b616693a40a439cd3c6109ba8a941f7e2e45e0fabba +size 719 diff --git a/timecost/n3/arf/arf-n3-20260501_225023/input_snapshot.json b/timecost/n3/arf/arf-n3-20260501_225023/input_snapshot.json new file mode 100644 index 0000000000000000000000000000000000000000..8f61e094a5a82208890ae5982a105d557698988d --- /dev/null +++ b/timecost/n3/arf/arf-n3-20260501_225023/input_snapshot.json @@ -0,0 +1,36 @@ +{ + "dataset_id": "n3", + "model": "arf", + "inputs": { + "train_csv": { + "path": "/data/jialinzhang/SynthesizePipeline-server/DatasetNew/n3/n3-train.csv", + "exists": true, + "size": 211519, + "sha256": "2160a06db2fea02adb0ebb79d8d853bd2544580be301e71f6e8deeb1489a9009" + }, + "val_csv": { + "path": "/data/jialinzhang/SynthesizePipeline-server/DatasetNew/n3/n3-val.csv", + "exists": true, + "size": 26499, + "sha256": "d5ccfee07dfa9e7bdee5bb87642b43828e09f74c6cc0266a3d19d9feaa83106e" + }, + "test_csv": { + "path": "/data/jialinzhang/SynthesizePipeline-server/DatasetNew/n3/n3-test.csv", + "exists": true, + "size": 26676, + "sha256": "6f83aacb0d1747b95e287352a7fff5d9d65a1c127b773852346c68485c4ede47" + }, + "profile_json": { + "path": "/data/jialinzhang/SynthesizePipeline-server/DatasetNew/artifacts/data_core/tabular/n3/n3-dataset_profile.json", + "exists": true, + "size": 5235, + "sha256": "23d2e5904a2ca90cbf8d6e3c75887681721e9b90cc705c31a680c11513d0c46f" + }, + "contract_json": { + "path": "/data/jialinzhang/SynthesizePipeline-server/DatasetNew/artifacts/data_core/tabular/n3/n3-dataset_contract_v1.json", + "exists": true, + "size": 6281, + "sha256": "c0cc56f5fe28e1b65927255c6e3c2b0e9479862c2ec6f2fea1664da36c9a3a09" + } + } +} \ No newline at end of file diff --git a/timecost/n3/arf/arf-n3-20260501_225023/public_gate/normalized_schema_snapshot.json b/timecost/n3/arf/arf-n3-20260501_225023/public_gate/normalized_schema_snapshot.json new file mode 100644 index 0000000000000000000000000000000000000000..c41fe304503de23190a02e6cbfafa35b3bf134d3 --- /dev/null +++ b/timecost/n3/arf/arf-n3-20260501_225023/public_gate/normalized_schema_snapshot.json @@ -0,0 +1,259 @@ +{ + "dataset_id": "n3", + "target_column": "quality", + "task_type": "classification", + "columns": [ + { + "name": "fixed acidity", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 66, + "unique_ratio": 0.016845, + "example_values": [ + "7.1", + "8.5", + "6.4", + "6.8", + "7.6" + ] + } + }, + { + "name": "volatile acidity", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 121, + "unique_ratio": 0.030883, + "example_values": [ + "0.31", + "0.21", + "0.24", + "0.43", + "0.27" + ] + } + }, + { + "name": "citric acid", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 85, + "unique_ratio": 0.021695, + "example_values": [ + "0.17", + "0.41", + "0.31", + "0.25", + "0.3" + ] + } + }, + { + "name": "residual sugar", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 296, + "unique_ratio": 0.075549, + "example_values": [ + "1", + "4.3", + "2.8", + "13", + "12.9" + ] + } + }, + { + "name": "chlorides", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 147, + "unique_ratio": 0.037519, + "example_values": [ + "0.042", + "0.036", + "0.038", + "0.047", + "0.033" + ] + } + }, + { + "name": "free sulfur dioxide", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 120, + "unique_ratio": 0.030628, + "example_values": [ + "21", + "24", + "41", + "43", + "69" + ] + } + }, + { + "name": "total sulfur dioxide", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 244, + "unique_ratio": 0.062277, + "example_values": [ + "144", + "99", + "114", + "132", + "160" + ] + } + }, + { + "name": "density", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 839, + "unique_ratio": 0.21414, + "example_values": [ + "0.99304", + "0.9947", + "0.99155", + "0.98975", + "0.99705" + ] + } + }, + { + "name": "pH", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 100, + "unique_ratio": 0.025523, + "example_values": [ + "3.13", + "3.18", + "3.37", + "3.21", + "3.16" + ] + } + }, + { + "name": "sulphates", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 78, + "unique_ratio": 0.019908, + "example_values": [ + "0.4", + "0.53", + "0.66", + "0.47", + "0.5" + ] + } + }, + { + "name": "alcohol", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 97, + "unique_ratio": 0.024758, + "example_values": [ + "9.6", + "9.7", + "11.7", + "13.4", + "8.8" + ] + } + }, + { + "name": "quality", + "role": "target", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 7, + "unique_ratio": 0.001787, + "example_values": [ + "5", + "6", + "7", + "8", + "3" + ] + } + } + ] +} \ No newline at end of file diff --git a/timecost/n3/arf/arf-n3-20260501_225023/public_gate/public_gate_report.json b/timecost/n3/arf/arf-n3-20260501_225023/public_gate/public_gate_report.json new file mode 100644 index 0000000000000000000000000000000000000000..93b97319f739e39079d6c6549fd2020f8a6dac25 --- /dev/null +++ b/timecost/n3/arf/arf-n3-20260501_225023/public_gate/public_gate_report.json @@ -0,0 +1,37 @@ +{ + "dataset_id": "n3", + "status": "pass", + "checks": [ + { + "check_id": "PG001_csv_parse_ok", + "status": "pass" + }, + { + "check_id": "PG002_split_header_consistent", + "status": "pass" + }, + { + "check_id": "PG003_profile_header_match", + "status": "pass" + }, + { + "check_id": "PG004_missing_token_normalized", + "status": "pass" + }, + { + "check_id": "PG005_semantic_type_validated", + "status": "pass" + }, + { + "check_id": "PG006_target_defined_and_valid", + "status": "pass" + } + ], + "target_column": "quality", + "task_type": "classification", + "input_splits": { + "train": "/data/jialinzhang/SynthesizePipeline-server/DatasetNew/n3/n3-train.csv", + "val": "/data/jialinzhang/SynthesizePipeline-server/DatasetNew/n3/n3-val.csv", + "test": "/data/jialinzhang/SynthesizePipeline-server/DatasetNew/n3/n3-test.csv" + } +} \ No newline at end of file diff --git a/timecost/n3/arf/arf-n3-20260501_225023/public_gate/staged_input_manifest.json b/timecost/n3/arf/arf-n3-20260501_225023/public_gate/staged_input_manifest.json new file mode 100644 index 0000000000000000000000000000000000000000..4c6d80dbfb94bf367f92a7b82a91d4ff848f2e7f --- /dev/null +++ b/timecost/n3/arf/arf-n3-20260501_225023/public_gate/staged_input_manifest.json @@ -0,0 +1,264 @@ +{ + "dataset_id": "n3", + "target_column": "quality", + "task_type": "classification", + "train_csv": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/n3/arf/arf-n3-20260501_225023/staged/public/train.csv", + "val_csv": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/n3/arf/arf-n3-20260501_225023/staged/public/val.csv", + "test_csv": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/n3/arf/arf-n3-20260501_225023/staged/public/test.csv", + "features_json": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/n3/arf/arf-n3-20260501_225023/staged/public/staged_features.json", + "public_gate_report": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/n3/arf/arf-n3-20260501_225023/public_gate/public_gate_report.json", + "column_schema": [ + { + "name": "fixed acidity", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 66, + "unique_ratio": 0.016845, + "example_values": [ + "7.1", + "8.5", + "6.4", + "6.8", + "7.6" + ] + } + }, + { + "name": "volatile acidity", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 121, + "unique_ratio": 0.030883, + "example_values": [ + "0.31", + "0.21", + "0.24", + "0.43", + "0.27" + ] + } + }, + { + "name": "citric acid", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 85, + "unique_ratio": 0.021695, + "example_values": [ + "0.17", + "0.41", + "0.31", + "0.25", + "0.3" + ] + } + }, + { + "name": "residual sugar", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 296, + "unique_ratio": 0.075549, + "example_values": [ + "1", + "4.3", + "2.8", + "13", + "12.9" + ] + } + }, + { + "name": "chlorides", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 147, + "unique_ratio": 0.037519, + "example_values": [ + "0.042", + "0.036", + "0.038", + "0.047", + "0.033" + ] + } + }, + { + "name": "free sulfur dioxide", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 120, + "unique_ratio": 0.030628, + "example_values": [ + "21", + "24", + "41", + "43", + "69" + ] + } + }, + { + "name": "total sulfur dioxide", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 244, + "unique_ratio": 0.062277, + "example_values": [ + "144", + "99", + "114", + "132", + "160" + ] + } + }, + { + "name": "density", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 839, + "unique_ratio": 0.21414, + "example_values": [ + "0.99304", + "0.9947", + "0.99155", + "0.98975", + "0.99705" + ] + } + }, + { + "name": "pH", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 100, + "unique_ratio": 0.025523, + "example_values": [ + "3.13", + "3.18", + "3.37", + "3.21", + "3.16" + ] + } + }, + { + "name": "sulphates", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 78, + "unique_ratio": 0.019908, + "example_values": [ + "0.4", + "0.53", + "0.66", + "0.47", + "0.5" + ] + } + }, + { + "name": "alcohol", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 97, + "unique_ratio": 0.024758, + "example_values": [ + "9.6", + "9.7", + "11.7", + "13.4", + "8.8" + ] + } + }, + { + "name": "quality", + "role": "target", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 7, + "unique_ratio": 0.001787, + "example_values": [ + "5", + "6", + "7", + "8", + "3" + ] + } + } + ] +} \ No newline at end of file diff --git a/timecost/n3/arf/arf-n3-20260501_225023/runtime_result.json b/timecost/n3/arf/arf-n3-20260501_225023/runtime_result.json new file mode 100644 index 0000000000000000000000000000000000000000..565af4f654a17e002bd8377d1111832bf9d9705c --- /dev/null +++ b/timecost/n3/arf/arf-n3-20260501_225023/runtime_result.json @@ -0,0 +1,27 @@ +{ + "dataset_id": "n3", + "model": "arf", + "run_id": "arf-n3-20260501_225023", + "public_gate_status": "pass", + "adapter_ready_status": "pass", + "train_status": "success", + "generate_status": "success", + "reason_code": null, + "reason_detail": null, + "artifacts": { + "synthetic_csv": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/n3/arf/arf-n3-20260501_225023/arf-n3-3918-20260501_225052.csv", + "model_path": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/n3/arf/arf-n3-20260501_225023/arf_model.pkl" + }, + "timings": { + "train": { + "started_at": "2026-05-01T22:50:23", + "ended_at": "2026-05-01T22:50:52", + "duration_sec": 28.875 + }, + "generate": { + "started_at": "2026-05-01T22:50:52", + "ended_at": "2026-05-01T22:50:54", + "duration_sec": 2.591 + } + } +} \ No newline at end of file diff --git a/timecost/n3/arf/arf-n3-20260501_225023/staged/arf/adapter_report.json b/timecost/n3/arf/arf-n3-20260501_225023/staged/arf/adapter_report.json new file mode 100644 index 0000000000000000000000000000000000000000..0378e903f33fcfaa4f0b82a011e2cf31d64f52b6 --- /dev/null +++ b/timecost/n3/arf/arf-n3-20260501_225023/staged/arf/adapter_report.json @@ -0,0 +1,7 @@ +{ + "adapter_ready_status": "pass", + "adapter_fail_reason_code": null, + "adapter_fail_detail": null, + "adapter_transforms_applied": [], + "model_input_manifest": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/n3/arf/arf-n3-20260501_225023/staged/arf/model_input_manifest.json" +} \ No newline at end of file diff --git a/timecost/n3/arf/arf-n3-20260501_225023/staged/arf/adapter_transforms_applied.json b/timecost/n3/arf/arf-n3-20260501_225023/staged/arf/adapter_transforms_applied.json new file mode 100644 index 0000000000000000000000000000000000000000..0637a088a01e8ddab3bf3fa98dbe804cbde1a0dc --- /dev/null +++ b/timecost/n3/arf/arf-n3-20260501_225023/staged/arf/adapter_transforms_applied.json @@ -0,0 +1 @@ +[] \ No newline at end of file diff --git a/timecost/n3/arf/arf-n3-20260501_225023/staged/arf/model_input_manifest.json b/timecost/n3/arf/arf-n3-20260501_225023/staged/arf/model_input_manifest.json new file mode 100644 index 0000000000000000000000000000000000000000..b46735d55419e5f139da6469b04c0161024a8c4a --- /dev/null +++ b/timecost/n3/arf/arf-n3-20260501_225023/staged/arf/model_input_manifest.json @@ -0,0 +1,266 @@ +{ + "dataset_id": "n3", + "model": "arf", + "target_column": "quality", + "task_type": "classification", + "column_schema": [ + { + "name": "fixed acidity", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 66, + "unique_ratio": 0.016845, + "example_values": [ + "7.1", + "8.5", + "6.4", + "6.8", + "7.6" + ] + } + }, + { + "name": "volatile acidity", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 121, + "unique_ratio": 0.030883, + "example_values": [ + "0.31", + "0.21", + "0.24", + "0.43", + "0.27" + ] + } + }, + { + "name": "citric acid", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 85, + "unique_ratio": 0.021695, + "example_values": [ + "0.17", + "0.41", + "0.31", + "0.25", + "0.3" + ] + } + }, + { + "name": "residual sugar", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 296, + "unique_ratio": 0.075549, + "example_values": [ + "1", + "4.3", + "2.8", + "13", + "12.9" + ] + } + }, + { + "name": "chlorides", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 147, + "unique_ratio": 0.037519, + "example_values": [ + "0.042", + "0.036", + "0.038", + "0.047", + "0.033" + ] + } + }, + { + "name": "free sulfur dioxide", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 120, + "unique_ratio": 0.030628, + "example_values": [ + "21", + "24", + "41", + "43", + "69" + ] + } + }, + { + "name": "total sulfur dioxide", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 244, + "unique_ratio": 0.062277, + "example_values": [ + "144", + "99", + "114", + "132", + "160" + ] + } + }, + { + "name": "density", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 839, + "unique_ratio": 0.21414, + "example_values": [ + "0.99304", + "0.9947", + "0.99155", + "0.98975", + "0.99705" + ] + } + }, + { + "name": "pH", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 100, + "unique_ratio": 0.025523, + "example_values": [ + "3.13", + "3.18", + "3.37", + "3.21", + "3.16" + ] + } + }, + { + "name": "sulphates", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 78, + "unique_ratio": 0.019908, + "example_values": [ + "0.4", + "0.53", + "0.66", + "0.47", + "0.5" + ] + } + }, + { + "name": "alcohol", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 97, + "unique_ratio": 0.024758, + "example_values": [ + "9.6", + "9.7", + "11.7", + "13.4", + "8.8" + ] + } + }, + { + "name": "quality", + "role": "target", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 7, + "unique_ratio": 0.001787, + "example_values": [ + "5", + "6", + "7", + "8", + "3" + ] + } + } + ], + "public_manifest": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/n3/arf/arf-n3-20260501_225023/public_gate/staged_input_manifest.json", + "train_csv": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/n3/arf/arf-n3-20260501_225023/staged/public/train.csv", + "val_csv": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/n3/arf/arf-n3-20260501_225023/staged/public/val.csv", + "test_csv": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/n3/arf/arf-n3-20260501_225023/staged/public/test.csv", + "features_json": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/n3/arf/arf-n3-20260501_225023/staged/public/staged_features.json", + "public_gate_report": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/n3/arf/arf-n3-20260501_225023/public_gate/public_gate_report.json" +} \ No newline at end of file diff --git a/timecost/n3/arf/arf-n3-20260501_225023/staged/public/staged_features.json b/timecost/n3/arf/arf-n3-20260501_225023/staged/public/staged_features.json new file mode 100644 index 0000000000000000000000000000000000000000..08fe4d766d091d2f2ddba724a16b9509cbe4c390 --- /dev/null +++ b/timecost/n3/arf/arf-n3-20260501_225023/staged/public/staged_features.json @@ -0,0 +1,62 @@ +[ + { + "feature_name": "fixed acidity", + "data_type": "continuous", + "is_target": false + }, + { + "feature_name": "volatile acidity", + "data_type": "continuous", + "is_target": false + }, + { + "feature_name": "citric acid", + "data_type": "continuous", + "is_target": false + }, + { + "feature_name": "residual sugar", + "data_type": "continuous", + "is_target": false + }, + { + "feature_name": "chlorides", + "data_type": "continuous", + "is_target": false + }, + { + "feature_name": "free sulfur dioxide", + "data_type": "continuous", + "is_target": false + }, + { + "feature_name": "total sulfur dioxide", + "data_type": "continuous", + "is_target": false + }, + { + "feature_name": "density", + "data_type": "continuous", + "is_target": false + }, + { + "feature_name": "pH", + "data_type": "continuous", + "is_target": false + }, + { + "feature_name": "sulphates", + "data_type": "continuous", + "is_target": false + }, + { + "feature_name": "alcohol", + "data_type": "continuous", + "is_target": false + }, + { + "feature_name": "quality", + "data_type": "continuous", + "is_target": true + } +] \ No newline at end of file diff --git a/timecost/n3/arf/arf-n3-20260501_225023/staged/public/test.csv b/timecost/n3/arf/arf-n3-20260501_225023/staged/public/test.csv new file mode 100644 index 0000000000000000000000000000000000000000..db5cd50d3746410ea470625fa2ba2c8e9775cc0d --- /dev/null +++ b/timecost/n3/arf/arf-n3-20260501_225023/staged/public/test.csv @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:19e107152a94432e2a37ff045c00cfe35e1be30208b1553080d7dd0ede256d3b +size 28944 diff --git a/timecost/n3/arf/arf-n3-20260501_225023/staged/public/train.csv b/timecost/n3/arf/arf-n3-20260501_225023/staged/public/train.csv new file mode 100644 index 0000000000000000000000000000000000000000..87ca26726fe82ccbaa397919305b043c17eb374e --- /dev/null +++ b/timecost/n3/arf/arf-n3-20260501_225023/staged/public/train.csv @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:7813c8cca73ba4bfc6559215257b341c21e459980ad17ae6ddc809306bc9a0b9 +size 229945 diff --git a/timecost/n3/arf/arf-n3-20260501_225023/staged/public/val.csv b/timecost/n3/arf/arf-n3-20260501_225023/staged/public/val.csv new file mode 100644 index 0000000000000000000000000000000000000000..6acf84c76c47093b513c46d5503972a2dff275c0 --- /dev/null +++ b/timecost/n3/arf/arf-n3-20260501_225023/staged/public/val.csv @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:cf5979d9675567d9d6642640c9b84fc6c49e492604144723c30f50516c05cee6 +size 28791 diff --git a/timecost/n3/arf/arf-n3-20260501_225023/train_20260501_225023.log b/timecost/n3/arf/arf-n3-20260501_225023/train_20260501_225023.log new file mode 100644 index 0000000000000000000000000000000000000000..f68464a938a0665daedb3ba539f3024b0452a832 --- /dev/null +++ b/timecost/n3/arf/arf-n3-20260501_225023/train_20260501_225023.log @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:e2178ce762ea2f8d576ec23371a0d6569661f9d5ac97736a0c9b02e75c175edf +size 613 diff --git a/timecost/n3/bayesnet/bayesnet-n3-20260501_225103/_bayesnet_generate.py b/timecost/n3/bayesnet/bayesnet-n3-20260501_225103/_bayesnet_generate.py new file mode 100644 index 0000000000000000000000000000000000000000..76ecd4acf4cb2ce14551a757d0ac42cc16db4d61 --- /dev/null +++ b/timecost/n3/bayesnet/bayesnet-n3-20260501_225103/_bayesnet_generate.py @@ -0,0 +1,105 @@ + +import pickle +import subprocess +import sys +import warnings + +import numpy as np +import pandas as pd +from pgmpy.sampling import BayesianModelSampling + +warnings.filterwarnings("ignore", category=FutureWarning) + +def _ensure_cloudpickle(): + try: + import cloudpickle # noqa: F401 + except ModuleNotFoundError: + subprocess.check_call( + [sys.executable, "-m", "pip", "install", "--quiet", "cloudpickle"], + ) + +_ensure_cloudpickle() + +with open("/work/output-Benchmark-trainonly-v1/n3/bayesnet/bayesnet-n3-20260501_225103/bayesnet_model.pkl", "rb") as f: + bundle = pickle.load(f) + +network = bundle["network"] +inverse = bundle["inverse"] +cols = bundle["column_order"] +integer_columns = set(bundle.get("integer_columns") or []) +full_order = bundle.get("full_column_order") or cols +const_cols = bundle.get("const_cols") or {} + +num_rows = int(3918) +sampler = BayesianModelSampling(network) +raw = sampler.forward_sample(size=num_rows, show_progress=False) +raw = raw.reset_index(drop=True) +if len(raw) > num_rows: + raw = raw.iloc[:num_rows] +_tries = 0 +while len(raw) < num_rows and _tries < 64: + _tries += 1 + nextra = min(10000, num_rows - len(raw)) + more = sampler.forward_sample(size=max(nextra, 1), show_progress=False) + more = more.reset_index(drop=True) + if len(more) == 0: + break + raw = pd.concat([raw, more], ignore_index=True) + if len(raw) > num_rows: + raw = raw.iloc[:num_rows] + +out = pd.DataFrame(index=raw.index) +rng = np.random.default_rng() + +for c in cols: + if c in inverse["categorical"]: + levels = inverse["categorical"][c] + idx = raw[c].astype(int).to_numpy() + idx = np.clip(idx, 0, max(0, len(levels) - 1)) + out[c] = [levels[i] for i in idx] + else: + edges = np.asarray(inverse["continuous"][c], dtype=float) + if edges.size < 2: + out[c] = 0.0 + else: + nbin = edges.size - 1 + res = [] + for k in raw[c].astype(int).to_numpy(): + k = int(k) + if k < 0: + k = 0 + if k >= nbin: + k = nbin - 1 + lo, hi = float(edges[k]), float(edges[k + 1]) + if hi < lo: + lo, hi = hi, lo + v = rng.uniform(lo, hi) + if c in integer_columns: + v = int(round(v)) + res.append(v) + out[c] = res + +final = pd.DataFrame(index=out.index) +for c in full_order: + if c in const_cols: + final[c] = const_cols[c] + elif c in out.columns: + final[c] = out[c] + +dtypes = bundle.get("original_dtypes") or {} +for c, dts in dtypes.items(): + if c not in final.columns: + continue + try: + if "int" in dts: + final[c] = pd.to_numeric(final[c], errors="coerce").astype("Int64") + elif "float" in dts: + final[c] = pd.to_numeric(final[c], errors="coerce") + except Exception: + pass + +if len(final) != num_rows: + final = final.iloc[:num_rows].copy() +final = final.reset_index(drop=True) +final.to_csv("/work/output-Benchmark-trainonly-v1/n3/bayesnet/bayesnet-n3-20260501_225103/bayesnet-n3-3918-20260501_225112.csv", index=False) +print(f"[BayesNet] Generated {len(final)} rows (requested {num_rows}) -> /work/output-Benchmark-trainonly-v1/n3/bayesnet/bayesnet-n3-20260501_225103/bayesnet-n3-3918-20260501_225112.csv") diff --git a/timecost/n3/bayesnet/bayesnet-n3-20260501_225103/_bayesnet_train.py b/timecost/n3/bayesnet/bayesnet-n3-20260501_225103/_bayesnet_train.py new file mode 100644 index 0000000000000000000000000000000000000000..6f4775148165f0c3356a0cc2ea96c6b087285084 --- /dev/null +++ b/timecost/n3/bayesnet/bayesnet-n3-20260501_225103/_bayesnet_train.py @@ -0,0 +1,133 @@ + +import json +import pickle +import subprocess +import sys +import warnings + +import numpy as np +import pandas as pd +from pgmpy.estimators import TreeSearch +from pgmpy.models import DiscreteBayesianNetwork +warnings.filterwarnings("ignore", category=FutureWarning) + +def _ensure_cloudpickle(): + try: + import cloudpickle # noqa: F401 + except ModuleNotFoundError: + subprocess.check_call( + [sys.executable, "-m", "pip", "install", "--quiet", "cloudpickle"], + ) + +_ensure_cloudpickle() + +with open("/work/output-Benchmark-trainonly-v1/n3/bayesnet/bayesnet-n3-20260501_225103/bayesnet_coltypes.json", "r", encoding="utf-8") as _f: + colmeta = json.load(_f) +integer_columns = set(colmeta.get("integer_columns") or []) + +df = pd.read_csv("/work/output-Benchmark-trainonly-v1/n3/bayesnet/bayesnet-n3-20260501_225103/staged/public/train.csv") +df = df.dropna(axis=1, how="all") +full_column_order = list(df.columns) + +const_cols = {} +for col in list(df.columns): + if df[col].nunique(dropna=True) <= 1: + const_cols[col] = df[col].iloc[0] if len(df) > 0 else None + df = df.drop(columns=[col]) + print(f"[BayesNet] Dropped zero-variance column '{col}'") + +const_path = "/work/output-Benchmark-trainonly-v1/n3/bayesnet/bayesnet-n3-20260501_225103/bayesnet_model.pkl".replace("bayesnet_model.pkl", "const_cols.json") +with open(const_path, "w", encoding="utf-8") as _f: + json.dump({k: str(v) for k, v in const_cols.items()}, _f) + +inverse = {"categorical": {}, "continuous": {}} +enc = pd.DataFrame(index=df.index) +_n_samples = len(df) +_n_plan = sum( + 1 for e in colmeta["columns"] if str(e.get("name", "")) in df.columns +) +max_bins = 10 +max_cat_levels = 256 +if _n_plan > 35 or _n_samples > 200000: + max_bins = 5 + max_cat_levels = 64 +if _n_plan > 55: + max_bins = 4 + max_cat_levels = 32 +print( + f"[BayesNet] max_bins={max_bins}, max_cat_levels={max_cat_levels} " + f"(cols_in_df={_n_plan}, rows={_n_samples})" +) + +for entry in colmeta["columns"]: + name = entry["name"] + if name not in df.columns: + continue + kind = entry["type"] + s = df[name] + if kind == "categorical": + s2 = s.astype(str).fillna("__NA__") + counts = s2.value_counts(dropna=False) + if len(counts) > max_cat_levels: + keep = set(counts.index[: max_cat_levels - 1].tolist()) + s2 = s2.map(lambda x: x if x in keep else "__OTHER__") + uniques = sorted(s2.dropna().unique(), key=lambda x: str(x)) + mapping = {str(v): i for i, v in enumerate(uniques)} + inverse["categorical"][name] = [uniques[i] for i in range(len(uniques))] + enc[name] = s2.map(lambda x, m=mapping: m.get(str(x), 0)).astype(int) + else: + s_num = pd.to_numeric(s, errors="coerce") + nu = int(s_num.nunique(dropna=True)) + q = min(max_bins, max(2, nu)) + if nu < 2: + enc[name] = np.zeros(len(s_num), dtype=int) + lo, hi = float(s_num.min()), float(s_num.max()) + inverse["continuous"][name] = [lo, hi] + else: + try: + _, bins = pd.qcut( + s_num, q=q, retbins=True, duplicates="drop" + ) + except Exception: + med = float(s_num.median()) + s2 = s_num.fillna(med) + _, bins = pd.qcut( + s2, q=min(q, 3), retbins=True, duplicates="drop" + ) + bins = np.asarray(bins, dtype=float) + lab = pd.cut( + s_num, bins=bins, labels=False, include_lowest=True + ) + enc[name] = lab.fillna(0).astype(int) + inverse["continuous"][name] = bins.tolist() + +print(f"[BayesNet] Training on {len(enc)} rows, {len(enc.columns)} cols (encoded)") + +enc_struct = enc +if len(enc) > 25000: + enc_struct = enc.sample(n=25000, random_state=0, replace=False) + print(f"[BayesNet] TreeSearch on {len(enc_struct)} rows (subsample; full n={len(enc)})") +dag = TreeSearch(enc_struct).estimate(show_progress=False) +for col in enc.columns: + if col not in dag.nodes(): + dag.add_node(col) + print(f"[BayesNet] Added isolated node to DAG: {col}") +network = DiscreteBayesianNetwork(dag) +enc_fit = enc +if len(enc) > 120000: + enc_fit = enc.sample(n=120000, random_state=1, replace=False) + print(f"[BayesNet] fit() on {len(enc_fit)} rows (full n={len(enc)})") +network.fit(enc_fit) + +bundle = { + "network": network, + "inverse": inverse, + "column_order": list(enc.columns), + "full_column_order": full_column_order, + "integer_columns": list(integer_columns), + "original_dtypes": {c: str(df[c].dtype) for c in enc.columns}, + "const_cols": const_cols, +} +with open("/work/output-Benchmark-trainonly-v1/n3/bayesnet/bayesnet-n3-20260501_225103/bayesnet_model.pkl", "wb") as _f: + pickle.dump(bundle, _f) +print(f"[BayesNet] Model saved -> /work/output-Benchmark-trainonly-v1/n3/bayesnet/bayesnet-n3-20260501_225103/bayesnet_model.pkl") diff --git a/timecost/n3/bayesnet/bayesnet-n3-20260501_225103/bayesnet-n3-3918-20260501_225112.csv b/timecost/n3/bayesnet/bayesnet-n3-20260501_225103/bayesnet-n3-3918-20260501_225112.csv new file mode 100644 index 0000000000000000000000000000000000000000..5122af8070a39856aef00fd519e4673134151cf4 --- /dev/null +++ b/timecost/n3/bayesnet/bayesnet-n3-20260501_225103/bayesnet-n3-3918-20260501_225112.csv @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:7eaef9af040116c7fea3c8e5e566ea772624f1e1548c99fa7b800a0deeac3f44 +size 884307 diff --git a/timecost/n3/bayesnet/bayesnet-n3-20260501_225103/bayesnet_coltypes.json b/timecost/n3/bayesnet/bayesnet-n3-20260501_225103/bayesnet_coltypes.json new file mode 100644 index 0000000000000000000000000000000000000000..59893d873ed1f60d3bbb17d18abfda70729fe810 --- /dev/null +++ b/timecost/n3/bayesnet/bayesnet-n3-20260501_225103/bayesnet_coltypes.json @@ -0,0 +1,53 @@ +{ + "columns": [ + { + "name": "fixed acidity", + "type": "continuous" + }, + { + "name": "volatile acidity", + "type": "continuous" + }, + { + "name": "citric acid", + "type": "continuous" + }, + { + "name": "residual sugar", + "type": "continuous" + }, + { + "name": "chlorides", + "type": "continuous" + }, + { + "name": "free sulfur dioxide", + "type": "continuous" + }, + { + "name": "total sulfur dioxide", + "type": "continuous" + }, + { + "name": "density", + "type": "continuous" + }, + { + "name": "pH", + "type": "continuous" + }, + { + "name": "sulphates", + "type": "continuous" + }, + { + "name": "alcohol", + "type": "continuous" + }, + { + "name": "quality", + "type": "continuous" + } + ], + "integer_columns": [] +} \ No newline at end of file diff --git a/timecost/n3/bayesnet/bayesnet-n3-20260501_225103/bayesnet_model.pkl b/timecost/n3/bayesnet/bayesnet-n3-20260501_225103/bayesnet_model.pkl new file mode 100644 index 0000000000000000000000000000000000000000..6ea0fbeea7caaa2028344865d76bd34aad1eae86 --- /dev/null +++ b/timecost/n3/bayesnet/bayesnet-n3-20260501_225103/bayesnet_model.pkl @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:6796efb78000c399e81e0fc93d03b1d91f3c5d4aec0d0f61ad13d70100e0c1f5 +size 18294 diff --git a/timecost/n3/bayesnet/bayesnet-n3-20260501_225103/const_cols.json b/timecost/n3/bayesnet/bayesnet-n3-20260501_225103/const_cols.json new file mode 100644 index 0000000000000000000000000000000000000000..9e26dfeeb6e641a33dae4961196235bdb965b21b --- /dev/null +++ b/timecost/n3/bayesnet/bayesnet-n3-20260501_225103/const_cols.json @@ -0,0 +1 @@ +{} \ No newline at end of file diff --git a/timecost/n3/bayesnet/bayesnet-n3-20260501_225103/gen_20260501_225112.log b/timecost/n3/bayesnet/bayesnet-n3-20260501_225103/gen_20260501_225112.log new file mode 100644 index 0000000000000000000000000000000000000000..3c5d91d605428a589e3c953ba0f2c1df2686c0a1 --- /dev/null +++ b/timecost/n3/bayesnet/bayesnet-n3-20260501_225103/gen_20260501_225112.log @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:3c998b1d75b6c0e1a4e92d1349b8faebfbc99e3baf489c9bf5c951f847863656 +size 3661 diff --git a/timecost/n3/bayesnet/bayesnet-n3-20260501_225103/input_snapshot.json b/timecost/n3/bayesnet/bayesnet-n3-20260501_225103/input_snapshot.json new file mode 100644 index 0000000000000000000000000000000000000000..527cf133718a3c780f9b12547e302d03bea557f3 --- /dev/null +++ b/timecost/n3/bayesnet/bayesnet-n3-20260501_225103/input_snapshot.json @@ -0,0 +1,36 @@ +{ + "dataset_id": "n3", + "model": "bayesnet", + "inputs": { + "train_csv": { + "path": "/data/jialinzhang/SynthesizePipeline-server/DatasetNew/n3/n3-train.csv", + "exists": true, + "size": 211519, + "sha256": "2160a06db2fea02adb0ebb79d8d853bd2544580be301e71f6e8deeb1489a9009" + }, + "val_csv": { + "path": "/data/jialinzhang/SynthesizePipeline-server/DatasetNew/n3/n3-val.csv", + "exists": true, + "size": 26499, + "sha256": "d5ccfee07dfa9e7bdee5bb87642b43828e09f74c6cc0266a3d19d9feaa83106e" + }, + "test_csv": { + "path": "/data/jialinzhang/SynthesizePipeline-server/DatasetNew/n3/n3-test.csv", + "exists": true, + "size": 26676, + "sha256": "6f83aacb0d1747b95e287352a7fff5d9d65a1c127b773852346c68485c4ede47" + }, + "profile_json": { + "path": "/data/jialinzhang/SynthesizePipeline-server/DatasetNew/artifacts/data_core/tabular/n3/n3-dataset_profile.json", + "exists": true, + "size": 5235, + "sha256": "23d2e5904a2ca90cbf8d6e3c75887681721e9b90cc705c31a680c11513d0c46f" + }, + "contract_json": { + "path": "/data/jialinzhang/SynthesizePipeline-server/DatasetNew/artifacts/data_core/tabular/n3/n3-dataset_contract_v1.json", + "exists": true, + "size": 6281, + "sha256": "c0cc56f5fe28e1b65927255c6e3c2b0e9479862c2ec6f2fea1664da36c9a3a09" + } + } +} \ No newline at end of file diff --git a/timecost/n3/bayesnet/bayesnet-n3-20260501_225103/public_gate/normalized_schema_snapshot.json b/timecost/n3/bayesnet/bayesnet-n3-20260501_225103/public_gate/normalized_schema_snapshot.json new file mode 100644 index 0000000000000000000000000000000000000000..c41fe304503de23190a02e6cbfafa35b3bf134d3 --- /dev/null +++ b/timecost/n3/bayesnet/bayesnet-n3-20260501_225103/public_gate/normalized_schema_snapshot.json @@ -0,0 +1,259 @@ +{ + "dataset_id": "n3", + "target_column": "quality", + "task_type": "classification", + "columns": [ + { + "name": "fixed acidity", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 66, + "unique_ratio": 0.016845, + "example_values": [ + "7.1", + "8.5", + "6.4", + "6.8", + "7.6" + ] + } + }, + { + "name": "volatile acidity", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 121, + "unique_ratio": 0.030883, + "example_values": [ + "0.31", + "0.21", + "0.24", + "0.43", + "0.27" + ] + } + }, + { + "name": "citric acid", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 85, + "unique_ratio": 0.021695, + "example_values": [ + "0.17", + "0.41", + "0.31", + "0.25", + "0.3" + ] + } + }, + { + "name": "residual sugar", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 296, + "unique_ratio": 0.075549, + "example_values": [ + "1", + "4.3", + "2.8", + "13", + "12.9" + ] + } + }, + { + "name": "chlorides", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 147, + "unique_ratio": 0.037519, + "example_values": [ + "0.042", + "0.036", + "0.038", + "0.047", + "0.033" + ] + } + }, + { + "name": "free sulfur dioxide", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 120, + "unique_ratio": 0.030628, + "example_values": [ + "21", + "24", + "41", + "43", + "69" + ] + } + }, + { + "name": "total sulfur dioxide", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 244, + "unique_ratio": 0.062277, + "example_values": [ + "144", + "99", + "114", + "132", + "160" + ] + } + }, + { + "name": "density", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 839, + "unique_ratio": 0.21414, + "example_values": [ + "0.99304", + "0.9947", + "0.99155", + "0.98975", + "0.99705" + ] + } + }, + { + "name": "pH", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 100, + "unique_ratio": 0.025523, + "example_values": [ + "3.13", + "3.18", + "3.37", + "3.21", + "3.16" + ] + } + }, + { + "name": "sulphates", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 78, + "unique_ratio": 0.019908, + "example_values": [ + "0.4", + "0.53", + "0.66", + "0.47", + "0.5" + ] + } + }, + { + "name": "alcohol", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 97, + "unique_ratio": 0.024758, + "example_values": [ + "9.6", + "9.7", + "11.7", + "13.4", + "8.8" + ] + } + }, + { + "name": "quality", + "role": "target", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 7, + "unique_ratio": 0.001787, + "example_values": [ + "5", + "6", + "7", + "8", + "3" + ] + } + } + ] +} \ No newline at end of file diff --git a/timecost/n3/bayesnet/bayesnet-n3-20260501_225103/public_gate/public_gate_report.json b/timecost/n3/bayesnet/bayesnet-n3-20260501_225103/public_gate/public_gate_report.json new file mode 100644 index 0000000000000000000000000000000000000000..93b97319f739e39079d6c6549fd2020f8a6dac25 --- /dev/null +++ b/timecost/n3/bayesnet/bayesnet-n3-20260501_225103/public_gate/public_gate_report.json @@ -0,0 +1,37 @@ +{ + "dataset_id": "n3", + "status": "pass", + "checks": [ + { + "check_id": "PG001_csv_parse_ok", + "status": "pass" + }, + { + "check_id": "PG002_split_header_consistent", + "status": "pass" + }, + { + "check_id": "PG003_profile_header_match", + "status": "pass" + }, + { + "check_id": "PG004_missing_token_normalized", + "status": "pass" + }, + { + "check_id": "PG005_semantic_type_validated", + "status": "pass" + }, + { + "check_id": "PG006_target_defined_and_valid", + "status": "pass" + } + ], + "target_column": "quality", + "task_type": "classification", + "input_splits": { + "train": "/data/jialinzhang/SynthesizePipeline-server/DatasetNew/n3/n3-train.csv", + "val": "/data/jialinzhang/SynthesizePipeline-server/DatasetNew/n3/n3-val.csv", + "test": "/data/jialinzhang/SynthesizePipeline-server/DatasetNew/n3/n3-test.csv" + } +} \ No newline at end of file diff --git a/timecost/n3/bayesnet/bayesnet-n3-20260501_225103/public_gate/staged_input_manifest.json b/timecost/n3/bayesnet/bayesnet-n3-20260501_225103/public_gate/staged_input_manifest.json new file mode 100644 index 0000000000000000000000000000000000000000..008dabc157f7ab7860beed06f79679e718b641a1 --- /dev/null +++ b/timecost/n3/bayesnet/bayesnet-n3-20260501_225103/public_gate/staged_input_manifest.json @@ -0,0 +1,264 @@ +{ + "dataset_id": "n3", + "target_column": "quality", + "task_type": "classification", + "train_csv": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/n3/bayesnet/bayesnet-n3-20260501_225103/staged/public/train.csv", + "val_csv": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/n3/bayesnet/bayesnet-n3-20260501_225103/staged/public/val.csv", + "test_csv": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/n3/bayesnet/bayesnet-n3-20260501_225103/staged/public/test.csv", + "features_json": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/n3/bayesnet/bayesnet-n3-20260501_225103/staged/public/staged_features.json", + "public_gate_report": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/n3/bayesnet/bayesnet-n3-20260501_225103/public_gate/public_gate_report.json", + "column_schema": [ + { + "name": "fixed acidity", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 66, + "unique_ratio": 0.016845, + "example_values": [ + "7.1", + "8.5", + "6.4", + "6.8", + "7.6" + ] + } + }, + { + "name": "volatile acidity", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 121, + "unique_ratio": 0.030883, + "example_values": [ + "0.31", + "0.21", + "0.24", + "0.43", + "0.27" + ] + } + }, + { + "name": "citric acid", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 85, + "unique_ratio": 0.021695, + "example_values": [ + "0.17", + "0.41", + "0.31", + "0.25", + "0.3" + ] + } + }, + { + "name": "residual sugar", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 296, + "unique_ratio": 0.075549, + "example_values": [ + "1", + "4.3", + "2.8", + "13", + "12.9" + ] + } + }, + { + "name": "chlorides", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 147, + "unique_ratio": 0.037519, + "example_values": [ + "0.042", + "0.036", + "0.038", + "0.047", + "0.033" + ] + } + }, + { + "name": "free sulfur dioxide", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 120, + "unique_ratio": 0.030628, + "example_values": [ + "21", + "24", + "41", + "43", + "69" + ] + } + }, + { + "name": "total sulfur dioxide", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 244, + "unique_ratio": 0.062277, + "example_values": [ + "144", + "99", + "114", + "132", + "160" + ] + } + }, + { + "name": "density", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 839, + "unique_ratio": 0.21414, + "example_values": [ + "0.99304", + "0.9947", + "0.99155", + "0.98975", + "0.99705" + ] + } + }, + { + "name": "pH", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 100, + "unique_ratio": 0.025523, + "example_values": [ + "3.13", + "3.18", + "3.37", + "3.21", + "3.16" + ] + } + }, + { + "name": "sulphates", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 78, + "unique_ratio": 0.019908, + "example_values": [ + "0.4", + "0.53", + "0.66", + "0.47", + "0.5" + ] + } + }, + { + "name": "alcohol", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 97, + "unique_ratio": 0.024758, + "example_values": [ + "9.6", + "9.7", + "11.7", + "13.4", + "8.8" + ] + } + }, + { + "name": "quality", + "role": "target", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 7, + "unique_ratio": 0.001787, + "example_values": [ + "5", + "6", + "7", + "8", + "3" + ] + } + } + ] +} \ No newline at end of file diff --git a/timecost/n3/bayesnet/bayesnet-n3-20260501_225103/runtime_result.json b/timecost/n3/bayesnet/bayesnet-n3-20260501_225103/runtime_result.json new file mode 100644 index 0000000000000000000000000000000000000000..fd144094e3ec18e150038f6ddd874281f5fcd6f4 --- /dev/null +++ b/timecost/n3/bayesnet/bayesnet-n3-20260501_225103/runtime_result.json @@ -0,0 +1,27 @@ +{ + "dataset_id": "n3", + "model": "bayesnet", + "run_id": "bayesnet-n3-20260501_225103", + "public_gate_status": "pass", + "adapter_ready_status": "pass", + "train_status": "success", + "generate_status": "success", + "reason_code": null, + "reason_detail": null, + "artifacts": { + "synthetic_csv": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/n3/bayesnet/bayesnet-n3-20260501_225103/bayesnet-n3-3918-20260501_225112.csv", + "model_path": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/n3/bayesnet/bayesnet-n3-20260501_225103/bayesnet_model.pkl" + }, + "timings": { + "train": { + "started_at": "2026-05-01T22:51:04", + "ended_at": "2026-05-01T22:51:12", + "duration_sec": 7.985 + }, + "generate": { + "started_at": "2026-05-01T22:51:12", + "ended_at": "2026-05-01T22:51:17", + "duration_sec": 5.51 + } + } +} \ No newline at end of file diff --git a/timecost/n3/bayesnet/bayesnet-n3-20260501_225103/staged/bayesnet/adapter_report.json b/timecost/n3/bayesnet/bayesnet-n3-20260501_225103/staged/bayesnet/adapter_report.json new file mode 100644 index 0000000000000000000000000000000000000000..9a235f852d28cbcee972af7cd8cdbc3ee6e85c7f --- /dev/null +++ b/timecost/n3/bayesnet/bayesnet-n3-20260501_225103/staged/bayesnet/adapter_report.json @@ -0,0 +1,7 @@ +{ + "adapter_ready_status": "pass", + "adapter_fail_reason_code": null, + "adapter_fail_detail": null, + "adapter_transforms_applied": [], + "model_input_manifest": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/n3/bayesnet/bayesnet-n3-20260501_225103/staged/bayesnet/model_input_manifest.json" +} \ No newline at end of file diff --git a/timecost/n3/bayesnet/bayesnet-n3-20260501_225103/staged/bayesnet/adapter_transforms_applied.json b/timecost/n3/bayesnet/bayesnet-n3-20260501_225103/staged/bayesnet/adapter_transforms_applied.json new file mode 100644 index 0000000000000000000000000000000000000000..0637a088a01e8ddab3bf3fa98dbe804cbde1a0dc --- /dev/null +++ b/timecost/n3/bayesnet/bayesnet-n3-20260501_225103/staged/bayesnet/adapter_transforms_applied.json @@ -0,0 +1 @@ +[] \ No newline at end of file diff --git a/timecost/n3/bayesnet/bayesnet-n3-20260501_225103/staged/bayesnet/model_input_manifest.json b/timecost/n3/bayesnet/bayesnet-n3-20260501_225103/staged/bayesnet/model_input_manifest.json new file mode 100644 index 0000000000000000000000000000000000000000..6eeff7a2dab3e1965b35b252e5b6ce786a468979 --- /dev/null +++ b/timecost/n3/bayesnet/bayesnet-n3-20260501_225103/staged/bayesnet/model_input_manifest.json @@ -0,0 +1,266 @@ +{ + "dataset_id": "n3", + "model": "bayesnet", + "target_column": "quality", + "task_type": "classification", + "column_schema": [ + { + "name": "fixed acidity", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 66, + "unique_ratio": 0.016845, + "example_values": [ + "7.1", + "8.5", + "6.4", + "6.8", + "7.6" + ] + } + }, + { + "name": "volatile acidity", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 121, + "unique_ratio": 0.030883, + "example_values": [ + "0.31", + "0.21", + "0.24", + "0.43", + "0.27" + ] + } + }, + { + "name": "citric acid", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 85, + "unique_ratio": 0.021695, + "example_values": [ + "0.17", + "0.41", + "0.31", + "0.25", + "0.3" + ] + } + }, + { + "name": "residual sugar", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 296, + "unique_ratio": 0.075549, + "example_values": [ + "1", + "4.3", + "2.8", + "13", + "12.9" + ] + } + }, + { + "name": "chlorides", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 147, + "unique_ratio": 0.037519, + "example_values": [ + "0.042", + "0.036", + "0.038", + "0.047", + "0.033" + ] + } + }, + { + "name": "free sulfur dioxide", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 120, + "unique_ratio": 0.030628, + "example_values": [ + "21", + "24", + "41", + "43", + "69" + ] + } + }, + { + "name": "total sulfur dioxide", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 244, + "unique_ratio": 0.062277, + "example_values": [ + "144", + "99", + "114", + "132", + "160" + ] + } + }, + { + "name": "density", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 839, + "unique_ratio": 0.21414, + "example_values": [ + "0.99304", + "0.9947", + "0.99155", + "0.98975", + "0.99705" + ] + } + }, + { + "name": "pH", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 100, + "unique_ratio": 0.025523, + "example_values": [ + "3.13", + "3.18", + "3.37", + "3.21", + "3.16" + ] + } + }, + { + "name": "sulphates", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 78, + "unique_ratio": 0.019908, + "example_values": [ + "0.4", + "0.53", + "0.66", + "0.47", + "0.5" + ] + } + }, + { + "name": "alcohol", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 97, + "unique_ratio": 0.024758, + "example_values": [ + "9.6", + "9.7", + "11.7", + "13.4", + "8.8" + ] + } + }, + { + "name": "quality", + "role": "target", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 7, + "unique_ratio": 0.001787, + "example_values": [ + "5", + "6", + "7", + "8", + "3" + ] + } + } + ], + "public_manifest": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/n3/bayesnet/bayesnet-n3-20260501_225103/public_gate/staged_input_manifest.json", + "train_csv": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/n3/bayesnet/bayesnet-n3-20260501_225103/staged/public/train.csv", + "val_csv": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/n3/bayesnet/bayesnet-n3-20260501_225103/staged/public/val.csv", + "test_csv": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/n3/bayesnet/bayesnet-n3-20260501_225103/staged/public/test.csv", + "features_json": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/n3/bayesnet/bayesnet-n3-20260501_225103/staged/public/staged_features.json", + "public_gate_report": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/n3/bayesnet/bayesnet-n3-20260501_225103/public_gate/public_gate_report.json" +} \ No newline at end of file diff --git a/timecost/n3/bayesnet/bayesnet-n3-20260501_225103/staged/public/staged_features.json b/timecost/n3/bayesnet/bayesnet-n3-20260501_225103/staged/public/staged_features.json new file mode 100644 index 0000000000000000000000000000000000000000..08fe4d766d091d2f2ddba724a16b9509cbe4c390 --- /dev/null +++ b/timecost/n3/bayesnet/bayesnet-n3-20260501_225103/staged/public/staged_features.json @@ -0,0 +1,62 @@ +[ + { + "feature_name": "fixed acidity", + "data_type": "continuous", + "is_target": false + }, + { + "feature_name": "volatile acidity", + "data_type": "continuous", + "is_target": false + }, + { + "feature_name": "citric acid", + "data_type": "continuous", + "is_target": false + }, + { + "feature_name": "residual sugar", + "data_type": "continuous", + "is_target": false + }, + { + "feature_name": "chlorides", + "data_type": "continuous", + "is_target": false + }, + { + "feature_name": "free sulfur dioxide", + "data_type": "continuous", + "is_target": false + }, + { + "feature_name": "total sulfur dioxide", + "data_type": "continuous", + "is_target": false + }, + { + "feature_name": "density", + "data_type": "continuous", + "is_target": false + }, + { + "feature_name": "pH", + "data_type": "continuous", + "is_target": false + }, + { + "feature_name": "sulphates", + "data_type": "continuous", + "is_target": false + }, + { + "feature_name": "alcohol", + "data_type": "continuous", + "is_target": false + }, + { + "feature_name": "quality", + "data_type": "continuous", + "is_target": true + } +] \ No newline at end of file diff --git a/timecost/n3/bayesnet/bayesnet-n3-20260501_225103/staged/public/test.csv b/timecost/n3/bayesnet/bayesnet-n3-20260501_225103/staged/public/test.csv new file mode 100644 index 0000000000000000000000000000000000000000..db5cd50d3746410ea470625fa2ba2c8e9775cc0d --- /dev/null +++ b/timecost/n3/bayesnet/bayesnet-n3-20260501_225103/staged/public/test.csv @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:19e107152a94432e2a37ff045c00cfe35e1be30208b1553080d7dd0ede256d3b +size 28944 diff --git a/timecost/n3/bayesnet/bayesnet-n3-20260501_225103/staged/public/train.csv b/timecost/n3/bayesnet/bayesnet-n3-20260501_225103/staged/public/train.csv new file mode 100644 index 0000000000000000000000000000000000000000..87ca26726fe82ccbaa397919305b043c17eb374e --- /dev/null +++ b/timecost/n3/bayesnet/bayesnet-n3-20260501_225103/staged/public/train.csv @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:7813c8cca73ba4bfc6559215257b341c21e459980ad17ae6ddc809306bc9a0b9 +size 229945 diff --git a/timecost/n3/bayesnet/bayesnet-n3-20260501_225103/staged/public/val.csv b/timecost/n3/bayesnet/bayesnet-n3-20260501_225103/staged/public/val.csv new file mode 100644 index 0000000000000000000000000000000000000000..6acf84c76c47093b513c46d5503972a2dff275c0 --- /dev/null +++ b/timecost/n3/bayesnet/bayesnet-n3-20260501_225103/staged/public/val.csv @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:cf5979d9675567d9d6642640c9b84fc6c49e492604144723c30f50516c05cee6 +size 28791 diff --git a/timecost/n3/bayesnet/bayesnet-n3-20260501_225103/train_20260501_225104.log b/timecost/n3/bayesnet/bayesnet-n3-20260501_225103/train_20260501_225104.log new file mode 100644 index 0000000000000000000000000000000000000000..b5aff868cf2aec0b81c0fc8bfef5f229545ee88e --- /dev/null +++ b/timecost/n3/bayesnet/bayesnet-n3-20260501_225103/train_20260501_225104.log @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:62ccdc6bb8d143b5e6ea6deccbac97f29a291610113c088a7479c26916b67c4c +size 3740 diff --git a/timecost/n3/ctgan/ctgan-n3-20260501_005113/_ctgan_generate.py b/timecost/n3/ctgan/ctgan-n3-20260501_005113/_ctgan_generate.py new file mode 100644 index 0000000000000000000000000000000000000000..d06e1f78d54c175fd2734ad4935bf3f6f30bd03d --- /dev/null +++ b/timecost/n3/ctgan/ctgan-n3-20260501_005113/_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-Benchmark-trainonly-v1/n3/ctgan/ctgan-n3-20260501_005113/models_300epochs/ctgan_300epochs.pt") +total = 3918 +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-Benchmark-trainonly-v1/n3/ctgan/ctgan-n3-20260501_005113/ctgan-n3-3918-20260501_005206.csv", index=False) +print("[CTGAN] Generated", total, "rows in", len(parts), "chunks ->", "/work/output-Benchmark-trainonly-v1/n3/ctgan/ctgan-n3-20260501_005113/ctgan-n3-3918-20260501_005206.csv") \ No newline at end of file diff --git a/timecost/n3/ctgan/ctgan-n3-20260501_005113/ctgan-n3-3918-20260501_005206.csv b/timecost/n3/ctgan/ctgan-n3-20260501_005113/ctgan-n3-3918-20260501_005206.csv new file mode 100644 index 0000000000000000000000000000000000000000..ec32a399d834082ce20c7ca1258493e5af836ada --- /dev/null +++ b/timecost/n3/ctgan/ctgan-n3-20260501_005113/ctgan-n3-3918-20260501_005206.csv @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:eb7cca2ebbfceeae0f1a15299eca29196ab816349ca255cebba0e33c75dc726a +size 820521 diff --git a/timecost/n3/ctgan/ctgan-n3-20260501_005113/ctgan_metadata.json b/timecost/n3/ctgan/ctgan-n3-20260501_005113/ctgan_metadata.json new file mode 100644 index 0000000000000000000000000000000000000000..40d513aa1aca4c6f5c1be8afc3d6a1a0c75aa74f --- /dev/null +++ b/timecost/n3/ctgan/ctgan-n3-20260501_005113/ctgan_metadata.json @@ -0,0 +1,52 @@ +{ + "columns": [ + { + "name": "fixed acidity", + "type": "continuous" + }, + { + "name": "volatile acidity", + "type": "continuous" + }, + { + "name": "citric acid", + "type": "continuous" + }, + { + "name": "residual sugar", + "type": "continuous" + }, + { + "name": "chlorides", + "type": "continuous" + }, + { + "name": "free sulfur dioxide", + "type": "continuous" + }, + { + "name": "total sulfur dioxide", + "type": "continuous" + }, + { + "name": "density", + "type": "continuous" + }, + { + "name": "pH", + "type": "continuous" + }, + { + "name": "sulphates", + "type": "continuous" + }, + { + "name": "alcohol", + "type": "continuous" + }, + { + "name": "quality", + "type": "continuous" + } + ] +} \ No newline at end of file diff --git a/timecost/n3/ctgan/ctgan-n3-20260501_005113/gen_20260501_005206.log b/timecost/n3/ctgan/ctgan-n3-20260501_005113/gen_20260501_005206.log new file mode 100644 index 0000000000000000000000000000000000000000..ec6b63f77793154fb766459734950884dda24562 --- /dev/null +++ b/timecost/n3/ctgan/ctgan-n3-20260501_005113/gen_20260501_005206.log @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:81caeeeaeaf6811441143067d2e107b9757a8617e8ceafc51558327c2de93ab9 +size 560 diff --git a/timecost/n3/ctgan/ctgan-n3-20260501_005113/input_snapshot.json b/timecost/n3/ctgan/ctgan-n3-20260501_005113/input_snapshot.json new file mode 100644 index 0000000000000000000000000000000000000000..15f60f257edd5bcdb6b9e07be8cb5182076affc1 --- /dev/null +++ b/timecost/n3/ctgan/ctgan-n3-20260501_005113/input_snapshot.json @@ -0,0 +1,36 @@ +{ + "dataset_id": "n3", + "model": "ctgan", + "inputs": { + "train_csv": { + "path": "/data/jialinzhang/SynthesizePipeline-server/DatasetNew/n3/n3-train.csv", + "exists": true, + "size": 211519, + "sha256": "2160a06db2fea02adb0ebb79d8d853bd2544580be301e71f6e8deeb1489a9009" + }, + "val_csv": { + "path": "/data/jialinzhang/SynthesizePipeline-server/DatasetNew/n3/n3-val.csv", + "exists": true, + "size": 26499, + "sha256": "d5ccfee07dfa9e7bdee5bb87642b43828e09f74c6cc0266a3d19d9feaa83106e" + }, + "test_csv": { + "path": "/data/jialinzhang/SynthesizePipeline-server/DatasetNew/n3/n3-test.csv", + "exists": true, + "size": 26676, + "sha256": "6f83aacb0d1747b95e287352a7fff5d9d65a1c127b773852346c68485c4ede47" + }, + "profile_json": { + "path": "/data/jialinzhang/SynthesizePipeline-server/DatasetNew/artifacts/data_core/tabular/n3/n3-dataset_profile.json", + "exists": true, + "size": 5235, + "sha256": "23d2e5904a2ca90cbf8d6e3c75887681721e9b90cc705c31a680c11513d0c46f" + }, + "contract_json": { + "path": "/data/jialinzhang/SynthesizePipeline-server/DatasetNew/artifacts/data_core/tabular/n3/n3-dataset_contract_v1.json", + "exists": true, + "size": 6281, + "sha256": "c0cc56f5fe28e1b65927255c6e3c2b0e9479862c2ec6f2fea1664da36c9a3a09" + } + } +} \ No newline at end of file diff --git a/timecost/n3/ctgan/ctgan-n3-20260501_005113/models_300epochs/ctgan_300epochs.pt b/timecost/n3/ctgan/ctgan-n3-20260501_005113/models_300epochs/ctgan_300epochs.pt new file mode 100644 index 0000000000000000000000000000000000000000..9c22d9fb40a1c43714045d0492a7e4b9bb921000 --- /dev/null +++ b/timecost/n3/ctgan/ctgan-n3-20260501_005113/models_300epochs/ctgan_300epochs.pt @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:176d796bfa05f713777ae623d6f80b56211527bf706632d1776b0d656f748200 +size 1223587 diff --git a/timecost/n3/ctgan/ctgan-n3-20260501_005113/models_300epochs/train_20260501_005114.log b/timecost/n3/ctgan/ctgan-n3-20260501_005113/models_300epochs/train_20260501_005114.log new file mode 100644 index 0000000000000000000000000000000000000000..1f3fb85f8ab4d9b5b25d820e0e352e99a846caf6 --- /dev/null +++ b/timecost/n3/ctgan/ctgan-n3-20260501_005113/models_300epochs/train_20260501_005114.log @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:470dccd1cffa96dcfb7b308419adeb2e29e2ee90f21ee7480c9e7a60623cd5b9 +size 2586 diff --git a/timecost/n3/ctgan/ctgan-n3-20260501_005113/public_gate/normalized_schema_snapshot.json b/timecost/n3/ctgan/ctgan-n3-20260501_005113/public_gate/normalized_schema_snapshot.json new file mode 100644 index 0000000000000000000000000000000000000000..c41fe304503de23190a02e6cbfafa35b3bf134d3 --- /dev/null +++ b/timecost/n3/ctgan/ctgan-n3-20260501_005113/public_gate/normalized_schema_snapshot.json @@ -0,0 +1,259 @@ +{ + "dataset_id": "n3", + "target_column": "quality", + "task_type": "classification", + "columns": [ + { + "name": "fixed acidity", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 66, + "unique_ratio": 0.016845, + "example_values": [ + "7.1", + "8.5", + "6.4", + "6.8", + "7.6" + ] + } + }, + { + "name": "volatile acidity", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 121, + "unique_ratio": 0.030883, + "example_values": [ + "0.31", + "0.21", + "0.24", + "0.43", + "0.27" + ] + } + }, + { + "name": "citric acid", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 85, + "unique_ratio": 0.021695, + "example_values": [ + "0.17", + "0.41", + "0.31", + "0.25", + "0.3" + ] + } + }, + { + "name": "residual sugar", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 296, + "unique_ratio": 0.075549, + "example_values": [ + "1", + "4.3", + "2.8", + "13", + "12.9" + ] + } + }, + { + "name": "chlorides", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 147, + "unique_ratio": 0.037519, + "example_values": [ + "0.042", + "0.036", + "0.038", + "0.047", + "0.033" + ] + } + }, + { + "name": "free sulfur dioxide", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 120, + "unique_ratio": 0.030628, + "example_values": [ + "21", + "24", + "41", + "43", + "69" + ] + } + }, + { + "name": "total sulfur dioxide", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 244, + "unique_ratio": 0.062277, + "example_values": [ + "144", + "99", + "114", + "132", + "160" + ] + } + }, + { + "name": "density", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 839, + "unique_ratio": 0.21414, + "example_values": [ + "0.99304", + "0.9947", + "0.99155", + "0.98975", + "0.99705" + ] + } + }, + { + "name": "pH", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 100, + "unique_ratio": 0.025523, + "example_values": [ + "3.13", + "3.18", + "3.37", + "3.21", + "3.16" + ] + } + }, + { + "name": "sulphates", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 78, + "unique_ratio": 0.019908, + "example_values": [ + "0.4", + "0.53", + "0.66", + "0.47", + "0.5" + ] + } + }, + { + "name": "alcohol", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 97, + "unique_ratio": 0.024758, + "example_values": [ + "9.6", + "9.7", + "11.7", + "13.4", + "8.8" + ] + } + }, + { + "name": "quality", + "role": "target", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 7, + "unique_ratio": 0.001787, + "example_values": [ + "5", + "6", + "7", + "8", + "3" + ] + } + } + ] +} \ No newline at end of file diff --git a/timecost/n3/ctgan/ctgan-n3-20260501_005113/public_gate/public_gate_report.json b/timecost/n3/ctgan/ctgan-n3-20260501_005113/public_gate/public_gate_report.json new file mode 100644 index 0000000000000000000000000000000000000000..93b97319f739e39079d6c6549fd2020f8a6dac25 --- /dev/null +++ b/timecost/n3/ctgan/ctgan-n3-20260501_005113/public_gate/public_gate_report.json @@ -0,0 +1,37 @@ +{ + "dataset_id": "n3", + "status": "pass", + "checks": [ + { + "check_id": "PG001_csv_parse_ok", + "status": "pass" + }, + { + "check_id": "PG002_split_header_consistent", + "status": "pass" + }, + { + "check_id": "PG003_profile_header_match", + "status": "pass" + }, + { + "check_id": "PG004_missing_token_normalized", + "status": "pass" + }, + { + "check_id": "PG005_semantic_type_validated", + "status": "pass" + }, + { + "check_id": "PG006_target_defined_and_valid", + "status": "pass" + } + ], + "target_column": "quality", + "task_type": "classification", + "input_splits": { + "train": "/data/jialinzhang/SynthesizePipeline-server/DatasetNew/n3/n3-train.csv", + "val": "/data/jialinzhang/SynthesizePipeline-server/DatasetNew/n3/n3-val.csv", + "test": "/data/jialinzhang/SynthesizePipeline-server/DatasetNew/n3/n3-test.csv" + } +} \ No newline at end of file diff --git a/timecost/n3/ctgan/ctgan-n3-20260501_005113/public_gate/staged_input_manifest.json b/timecost/n3/ctgan/ctgan-n3-20260501_005113/public_gate/staged_input_manifest.json new file mode 100644 index 0000000000000000000000000000000000000000..ff4751d7d138949bffe5b46f890e1b10a78dd279 --- /dev/null +++ b/timecost/n3/ctgan/ctgan-n3-20260501_005113/public_gate/staged_input_manifest.json @@ -0,0 +1,264 @@ +{ + "dataset_id": "n3", + "target_column": "quality", + "task_type": "classification", + "train_csv": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/n3/ctgan/ctgan-n3-20260501_005113/staged/public/train.csv", + "val_csv": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/n3/ctgan/ctgan-n3-20260501_005113/staged/public/val.csv", + "test_csv": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/n3/ctgan/ctgan-n3-20260501_005113/staged/public/test.csv", + "features_json": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/n3/ctgan/ctgan-n3-20260501_005113/staged/public/staged_features.json", + "public_gate_report": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/n3/ctgan/ctgan-n3-20260501_005113/public_gate/public_gate_report.json", + "column_schema": [ + { + "name": "fixed acidity", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 66, + "unique_ratio": 0.016845, + "example_values": [ + "7.1", + "8.5", + "6.4", + "6.8", + "7.6" + ] + } + }, + { + "name": "volatile acidity", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 121, + "unique_ratio": 0.030883, + "example_values": [ + "0.31", + "0.21", + "0.24", + "0.43", + "0.27" + ] + } + }, + { + "name": "citric acid", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 85, + "unique_ratio": 0.021695, + "example_values": [ + "0.17", + "0.41", + "0.31", + "0.25", + "0.3" + ] + } + }, + { + "name": "residual sugar", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 296, + "unique_ratio": 0.075549, + "example_values": [ + "1", + "4.3", + "2.8", + "13", + "12.9" + ] + } + }, + { + "name": "chlorides", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 147, + "unique_ratio": 0.037519, + "example_values": [ + "0.042", + "0.036", + "0.038", + "0.047", + "0.033" + ] + } + }, + { + "name": "free sulfur dioxide", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 120, + "unique_ratio": 0.030628, + "example_values": [ + "21", + "24", + "41", + "43", + "69" + ] + } + }, + { + "name": "total sulfur dioxide", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 244, + "unique_ratio": 0.062277, + "example_values": [ + "144", + "99", + "114", + "132", + "160" + ] + } + }, + { + "name": "density", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 839, + "unique_ratio": 0.21414, + "example_values": [ + "0.99304", + "0.9947", + "0.99155", + "0.98975", + "0.99705" + ] + } + }, + { + "name": "pH", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 100, + "unique_ratio": 0.025523, + "example_values": [ + "3.13", + "3.18", + "3.37", + "3.21", + "3.16" + ] + } + }, + { + "name": "sulphates", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 78, + "unique_ratio": 0.019908, + "example_values": [ + "0.4", + "0.53", + "0.66", + "0.47", + "0.5" + ] + } + }, + { + "name": "alcohol", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 97, + "unique_ratio": 0.024758, + "example_values": [ + "9.6", + "9.7", + "11.7", + "13.4", + "8.8" + ] + } + }, + { + "name": "quality", + "role": "target", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 7, + "unique_ratio": 0.001787, + "example_values": [ + "5", + "6", + "7", + "8", + "3" + ] + } + } + ] +} \ No newline at end of file diff --git a/timecost/n3/ctgan/ctgan-n3-20260501_005113/runtime_result.json b/timecost/n3/ctgan/ctgan-n3-20260501_005113/runtime_result.json new file mode 100644 index 0000000000000000000000000000000000000000..a4afc62362c0eefba503538e66ad01fad03ffa4e --- /dev/null +++ b/timecost/n3/ctgan/ctgan-n3-20260501_005113/runtime_result.json @@ -0,0 +1,27 @@ +{ + "dataset_id": "n3", + "model": "ctgan", + "run_id": "ctgan-n3-20260501_005113", + "public_gate_status": "pass", + "adapter_ready_status": "pass", + "train_status": "success", + "generate_status": "success", + "reason_code": null, + "reason_detail": null, + "artifacts": { + "synthetic_csv": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/n3/ctgan/ctgan-n3-20260501_005113/ctgan-n3-3918-20260501_005206.csv", + "model_path": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/n3/ctgan/ctgan-n3-20260501_005113/models_300epochs/ctgan_300epochs.pt" + }, + "timings": { + "train": { + "started_at": "2026-05-01T00:51:14", + "ended_at": "2026-05-01T00:52:06", + "duration_sec": 52.822 + }, + "generate": { + "started_at": "2026-05-01T00:52:06", + "ended_at": "2026-05-01T00:52:12", + "duration_sec": 5.259 + } + } +} \ No newline at end of file diff --git a/timecost/n3/ctgan/ctgan-n3-20260501_005113/staged/ctgan/adapter_report.json b/timecost/n3/ctgan/ctgan-n3-20260501_005113/staged/ctgan/adapter_report.json new file mode 100644 index 0000000000000000000000000000000000000000..c7f09cad096b90b127bb17ca8dcf119538d882d8 --- /dev/null +++ b/timecost/n3/ctgan/ctgan-n3-20260501_005113/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-Benchmark-trainonly-v1/n3/ctgan/ctgan-n3-20260501_005113/staged/ctgan/model_input_manifest.json" +} \ No newline at end of file diff --git a/timecost/n3/ctgan/ctgan-n3-20260501_005113/staged/ctgan/adapter_transforms_applied.json b/timecost/n3/ctgan/ctgan-n3-20260501_005113/staged/ctgan/adapter_transforms_applied.json new file mode 100644 index 0000000000000000000000000000000000000000..0637a088a01e8ddab3bf3fa98dbe804cbde1a0dc --- /dev/null +++ b/timecost/n3/ctgan/ctgan-n3-20260501_005113/staged/ctgan/adapter_transforms_applied.json @@ -0,0 +1 @@ +[] \ No newline at end of file diff --git a/timecost/n3/ctgan/ctgan-n3-20260501_005113/staged/ctgan/model_input_manifest.json b/timecost/n3/ctgan/ctgan-n3-20260501_005113/staged/ctgan/model_input_manifest.json new file mode 100644 index 0000000000000000000000000000000000000000..9fa5969740870bec2d63b20497b881586232de1a --- /dev/null +++ b/timecost/n3/ctgan/ctgan-n3-20260501_005113/staged/ctgan/model_input_manifest.json @@ -0,0 +1,266 @@ +{ + "dataset_id": "n3", + "model": "ctgan", + "target_column": "quality", + "task_type": "classification", + "column_schema": [ + { + "name": "fixed acidity", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 66, + "unique_ratio": 0.016845, + "example_values": [ + "7.1", + "8.5", + "6.4", + "6.8", + "7.6" + ] + } + }, + { + "name": "volatile acidity", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 121, + "unique_ratio": 0.030883, + "example_values": [ + "0.31", + "0.21", + "0.24", + "0.43", + "0.27" + ] + } + }, + { + "name": "citric acid", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 85, + "unique_ratio": 0.021695, + "example_values": [ + "0.17", + "0.41", + "0.31", + "0.25", + "0.3" + ] + } + }, + { + "name": "residual sugar", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 296, + "unique_ratio": 0.075549, + "example_values": [ + "1", + "4.3", + "2.8", + "13", + "12.9" + ] + } + }, + { + "name": "chlorides", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 147, + "unique_ratio": 0.037519, + "example_values": [ + "0.042", + "0.036", + "0.038", + "0.047", + "0.033" + ] + } + }, + { + "name": "free sulfur dioxide", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 120, + "unique_ratio": 0.030628, + "example_values": [ + "21", + "24", + "41", + "43", + "69" + ] + } + }, + { + "name": "total sulfur dioxide", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 244, + "unique_ratio": 0.062277, + "example_values": [ + "144", + "99", + "114", + "132", + "160" + ] + } + }, + { + "name": "density", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 839, + "unique_ratio": 0.21414, + "example_values": [ + "0.99304", + "0.9947", + "0.99155", + "0.98975", + "0.99705" + ] + } + }, + { + "name": "pH", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 100, + "unique_ratio": 0.025523, + "example_values": [ + "3.13", + "3.18", + "3.37", + "3.21", + "3.16" + ] + } + }, + { + "name": "sulphates", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 78, + "unique_ratio": 0.019908, + "example_values": [ + "0.4", + "0.53", + "0.66", + "0.47", + "0.5" + ] + } + }, + { + "name": "alcohol", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 97, + "unique_ratio": 0.024758, + "example_values": [ + "9.6", + "9.7", + "11.7", + "13.4", + "8.8" + ] + } + }, + { + "name": "quality", + "role": "target", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 7, + "unique_ratio": 0.001787, + "example_values": [ + "5", + "6", + "7", + "8", + "3" + ] + } + } + ], + "public_manifest": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/n3/ctgan/ctgan-n3-20260501_005113/public_gate/staged_input_manifest.json", + "train_csv": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/n3/ctgan/ctgan-n3-20260501_005113/staged/public/train.csv", + "val_csv": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/n3/ctgan/ctgan-n3-20260501_005113/staged/public/val.csv", + "test_csv": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/n3/ctgan/ctgan-n3-20260501_005113/staged/public/test.csv", + "features_json": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/n3/ctgan/ctgan-n3-20260501_005113/staged/public/staged_features.json", + "public_gate_report": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/n3/ctgan/ctgan-n3-20260501_005113/public_gate/public_gate_report.json" +} \ No newline at end of file diff --git a/timecost/n3/ctgan/ctgan-n3-20260501_005113/staged/public/staged_features.json b/timecost/n3/ctgan/ctgan-n3-20260501_005113/staged/public/staged_features.json new file mode 100644 index 0000000000000000000000000000000000000000..08fe4d766d091d2f2ddba724a16b9509cbe4c390 --- /dev/null +++ b/timecost/n3/ctgan/ctgan-n3-20260501_005113/staged/public/staged_features.json @@ -0,0 +1,62 @@ +[ + { + "feature_name": "fixed acidity", + "data_type": "continuous", + "is_target": false + }, + { + "feature_name": "volatile acidity", + "data_type": "continuous", + "is_target": false + }, + { + "feature_name": "citric acid", + "data_type": "continuous", + "is_target": false + }, + { + "feature_name": "residual sugar", + "data_type": "continuous", + "is_target": false + }, + { + "feature_name": "chlorides", + "data_type": "continuous", + "is_target": false + }, + { + "feature_name": "free sulfur dioxide", + "data_type": "continuous", + "is_target": false + }, + { + "feature_name": "total sulfur dioxide", + "data_type": "continuous", + "is_target": false + }, + { + "feature_name": "density", + "data_type": "continuous", + "is_target": false + }, + { + "feature_name": "pH", + "data_type": "continuous", + "is_target": false + }, + { + "feature_name": "sulphates", + "data_type": "continuous", + "is_target": false + }, + { + "feature_name": "alcohol", + "data_type": "continuous", + "is_target": false + }, + { + "feature_name": "quality", + "data_type": "continuous", + "is_target": true + } +] \ No newline at end of file diff --git a/timecost/n3/ctgan/ctgan-n3-20260501_005113/staged/public/test.csv b/timecost/n3/ctgan/ctgan-n3-20260501_005113/staged/public/test.csv new file mode 100644 index 0000000000000000000000000000000000000000..db5cd50d3746410ea470625fa2ba2c8e9775cc0d --- /dev/null +++ b/timecost/n3/ctgan/ctgan-n3-20260501_005113/staged/public/test.csv @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:19e107152a94432e2a37ff045c00cfe35e1be30208b1553080d7dd0ede256d3b +size 28944 diff --git a/timecost/n3/ctgan/ctgan-n3-20260501_005113/staged/public/train.csv b/timecost/n3/ctgan/ctgan-n3-20260501_005113/staged/public/train.csv new file mode 100644 index 0000000000000000000000000000000000000000..87ca26726fe82ccbaa397919305b043c17eb374e --- /dev/null +++ b/timecost/n3/ctgan/ctgan-n3-20260501_005113/staged/public/train.csv @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:7813c8cca73ba4bfc6559215257b341c21e459980ad17ae6ddc809306bc9a0b9 +size 229945 diff --git a/timecost/n3/ctgan/ctgan-n3-20260501_005113/staged/public/val.csv b/timecost/n3/ctgan/ctgan-n3-20260501_005113/staged/public/val.csv new file mode 100644 index 0000000000000000000000000000000000000000..6acf84c76c47093b513c46d5503972a2dff275c0 --- /dev/null +++ b/timecost/n3/ctgan/ctgan-n3-20260501_005113/staged/public/val.csv @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:cf5979d9675567d9d6642640c9b84fc6c49e492604144723c30f50516c05cee6 +size 28791 diff --git a/timecost/n3/ctgan/ctgan-n3-20260504_163226/_ctgan_generate.py b/timecost/n3/ctgan/ctgan-n3-20260504_163226/_ctgan_generate.py new file mode 100644 index 0000000000000000000000000000000000000000..b820b344bc742aa80cfe43715de01bbef1be7c65 --- /dev/null +++ b/timecost/n3/ctgan/ctgan-n3-20260504_163226/_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-Benchmark-trainonly-v1/n3/ctgan/ctgan-n3-20260504_163226/models_50epochs/ctgan_50epochs.pt") +total = 3918 +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-Benchmark-trainonly-v1/n3/ctgan/ctgan-n3-20260504_163226/ctgan-n3-3918-20260504_163441.csv", index=False) +print("[CTGAN] Generated", total, "rows in", len(parts), "chunks ->", "/work/output-Benchmark-trainonly-v1/n3/ctgan/ctgan-n3-20260504_163226/ctgan-n3-3918-20260504_163441.csv") \ No newline at end of file diff --git a/timecost/n3/ctgan/ctgan-n3-20260504_163226/_ctgan_train.py b/timecost/n3/ctgan/ctgan-n3-20260504_163226/_ctgan_train.py new file mode 100644 index 0000000000000000000000000000000000000000..7cdd5c75b05c8b9cba66e0199f95e5ab98dd3c05 --- /dev/null +++ b/timecost/n3/ctgan/ctgan-n3-20260504_163226/_ctgan_train.py @@ -0,0 +1,17 @@ +import pandas as pd +from ctgan.synthesizers.ctgan import CTGAN + +data = pd.read_csv("/work/output-Benchmark-trainonly-v1/n3/ctgan/ctgan-n3-20260504_163226/staged/public/train.csv") +discrete_columns = [] +model = CTGAN( + embedding_dim=8, + generator_dim=(16, 16), + discriminator_dim=(16, 16), + batch_size=32, + pac=1, + epochs=50, + verbose=True, +) +model.fit(data, discrete_columns) +model.save("/work/output-Benchmark-trainonly-v1/n3/ctgan/ctgan-n3-20260504_163226/models_50epochs/ctgan_50epochs.pt") +print("[CTGAN] Saved model ->", "/work/output-Benchmark-trainonly-v1/n3/ctgan/ctgan-n3-20260504_163226/models_50epochs/ctgan_50epochs.pt") \ No newline at end of file diff --git a/timecost/n3/ctgan/ctgan-n3-20260504_163226/ctgan-n3-3918-20260504_163441.csv b/timecost/n3/ctgan/ctgan-n3-20260504_163226/ctgan-n3-3918-20260504_163441.csv new file mode 100644 index 0000000000000000000000000000000000000000..a1d9e9c1d0add5c9ffff28dabcef3a7f5aa6950e --- /dev/null +++ b/timecost/n3/ctgan/ctgan-n3-20260504_163226/ctgan-n3-3918-20260504_163441.csv @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:8f14ad83416025a5455f69cec6d63e5314c344048ab5372353ae3ca5d75ce34a +size 820708 diff --git a/timecost/n3/ctgan/ctgan-n3-20260504_163226/ctgan_metadata.json b/timecost/n3/ctgan/ctgan-n3-20260504_163226/ctgan_metadata.json new file mode 100644 index 0000000000000000000000000000000000000000..40d513aa1aca4c6f5c1be8afc3d6a1a0c75aa74f --- /dev/null +++ b/timecost/n3/ctgan/ctgan-n3-20260504_163226/ctgan_metadata.json @@ -0,0 +1,52 @@ +{ + "columns": [ + { + "name": "fixed acidity", + "type": "continuous" + }, + { + "name": "volatile acidity", + "type": "continuous" + }, + { + "name": "citric acid", + "type": "continuous" + }, + { + "name": "residual sugar", + "type": "continuous" + }, + { + "name": "chlorides", + "type": "continuous" + }, + { + "name": "free sulfur dioxide", + "type": "continuous" + }, + { + "name": "total sulfur dioxide", + "type": "continuous" + }, + { + "name": "density", + "type": "continuous" + }, + { + "name": "pH", + "type": "continuous" + }, + { + "name": "sulphates", + "type": "continuous" + }, + { + "name": "alcohol", + "type": "continuous" + }, + { + "name": "quality", + "type": "continuous" + } + ] +} \ No newline at end of file diff --git a/timecost/n3/ctgan/ctgan-n3-20260504_163226/gen_20260504_163441.log b/timecost/n3/ctgan/ctgan-n3-20260504_163226/gen_20260504_163441.log new file mode 100644 index 0000000000000000000000000000000000000000..8eaf0a5f880a368aac68190507b2428610e0d853 --- /dev/null +++ b/timecost/n3/ctgan/ctgan-n3-20260504_163226/gen_20260504_163441.log @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:dd91dc885739943a172da5fe8f7b656b43c8c09a7a306e321dd06d8bd4651ba3 +size 297 diff --git a/timecost/n3/ctgan/ctgan-n3-20260504_163226/input_snapshot.json b/timecost/n3/ctgan/ctgan-n3-20260504_163226/input_snapshot.json new file mode 100644 index 0000000000000000000000000000000000000000..15f60f257edd5bcdb6b9e07be8cb5182076affc1 --- /dev/null +++ b/timecost/n3/ctgan/ctgan-n3-20260504_163226/input_snapshot.json @@ -0,0 +1,36 @@ +{ + "dataset_id": "n3", + "model": "ctgan", + "inputs": { + "train_csv": { + "path": "/data/jialinzhang/SynthesizePipeline-server/DatasetNew/n3/n3-train.csv", + "exists": true, + "size": 211519, + "sha256": "2160a06db2fea02adb0ebb79d8d853bd2544580be301e71f6e8deeb1489a9009" + }, + "val_csv": { + "path": "/data/jialinzhang/SynthesizePipeline-server/DatasetNew/n3/n3-val.csv", + "exists": true, + "size": 26499, + "sha256": "d5ccfee07dfa9e7bdee5bb87642b43828e09f74c6cc0266a3d19d9feaa83106e" + }, + "test_csv": { + "path": "/data/jialinzhang/SynthesizePipeline-server/DatasetNew/n3/n3-test.csv", + "exists": true, + "size": 26676, + "sha256": "6f83aacb0d1747b95e287352a7fff5d9d65a1c127b773852346c68485c4ede47" + }, + "profile_json": { + "path": "/data/jialinzhang/SynthesizePipeline-server/DatasetNew/artifacts/data_core/tabular/n3/n3-dataset_profile.json", + "exists": true, + "size": 5235, + "sha256": "23d2e5904a2ca90cbf8d6e3c75887681721e9b90cc705c31a680c11513d0c46f" + }, + "contract_json": { + "path": "/data/jialinzhang/SynthesizePipeline-server/DatasetNew/artifacts/data_core/tabular/n3/n3-dataset_contract_v1.json", + "exists": true, + "size": 6281, + "sha256": "c0cc56f5fe28e1b65927255c6e3c2b0e9479862c2ec6f2fea1664da36c9a3a09" + } + } +} \ No newline at end of file diff --git a/timecost/n3/ctgan/ctgan-n3-20260504_163226/models_50epochs/ctgan_50epochs.pt b/timecost/n3/ctgan/ctgan-n3-20260504_163226/models_50epochs/ctgan_50epochs.pt new file mode 100644 index 0000000000000000000000000000000000000000..bbb0cbaacbc817307e5522ddef85dc880bb14d45 --- /dev/null +++ b/timecost/n3/ctgan/ctgan-n3-20260504_163226/models_50epochs/ctgan_50epochs.pt @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:703f7cca3605fab52fcc211a0b02112be0cb8cfd9b8aba51e833ec78623354a5 +size 415565 diff --git a/timecost/n3/ctgan/ctgan-n3-20260504_163226/models_50epochs/train_20260504_163226.log b/timecost/n3/ctgan/ctgan-n3-20260504_163226/models_50epochs/train_20260504_163226.log new file mode 100644 index 0000000000000000000000000000000000000000..21ef5600efcd897a98cbddebf0107f67b35ffa0b --- /dev/null +++ b/timecost/n3/ctgan/ctgan-n3-20260504_163226/models_50epochs/train_20260504_163226.log @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:d7dc02e5f0a183615d8d29de65352b320938677bbc9695ddca5d5550c2338189 +size 11793 diff --git a/timecost/n3/ctgan/ctgan-n3-20260504_163226/public_gate/normalized_schema_snapshot.json b/timecost/n3/ctgan/ctgan-n3-20260504_163226/public_gate/normalized_schema_snapshot.json new file mode 100644 index 0000000000000000000000000000000000000000..c41fe304503de23190a02e6cbfafa35b3bf134d3 --- /dev/null +++ b/timecost/n3/ctgan/ctgan-n3-20260504_163226/public_gate/normalized_schema_snapshot.json @@ -0,0 +1,259 @@ +{ + "dataset_id": "n3", + "target_column": "quality", + "task_type": "classification", + "columns": [ + { + "name": "fixed acidity", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 66, + "unique_ratio": 0.016845, + "example_values": [ + "7.1", + "8.5", + "6.4", + "6.8", + "7.6" + ] + } + }, + { + "name": "volatile acidity", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 121, + "unique_ratio": 0.030883, + "example_values": [ + "0.31", + "0.21", + "0.24", + "0.43", + "0.27" + ] + } + }, + { + "name": "citric acid", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 85, + "unique_ratio": 0.021695, + "example_values": [ + "0.17", + "0.41", + "0.31", + "0.25", + "0.3" + ] + } + }, + { + "name": "residual sugar", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 296, + "unique_ratio": 0.075549, + "example_values": [ + "1", + "4.3", + "2.8", + "13", + "12.9" + ] + } + }, + { + "name": "chlorides", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 147, + "unique_ratio": 0.037519, + "example_values": [ + "0.042", + "0.036", + "0.038", + "0.047", + "0.033" + ] + } + }, + { + "name": "free sulfur dioxide", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 120, + "unique_ratio": 0.030628, + "example_values": [ + "21", + "24", + "41", + "43", + "69" + ] + } + }, + { + "name": "total sulfur dioxide", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 244, + "unique_ratio": 0.062277, + "example_values": [ + "144", + "99", + "114", + "132", + "160" + ] + } + }, + { + "name": "density", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 839, + "unique_ratio": 0.21414, + "example_values": [ + "0.99304", + "0.9947", + "0.99155", + "0.98975", + "0.99705" + ] + } + }, + { + "name": "pH", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 100, + "unique_ratio": 0.025523, + "example_values": [ + "3.13", + "3.18", + "3.37", + "3.21", + "3.16" + ] + } + }, + { + "name": "sulphates", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 78, + "unique_ratio": 0.019908, + "example_values": [ + "0.4", + "0.53", + "0.66", + "0.47", + "0.5" + ] + } + }, + { + "name": "alcohol", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 97, + "unique_ratio": 0.024758, + "example_values": [ + "9.6", + "9.7", + "11.7", + "13.4", + "8.8" + ] + } + }, + { + "name": "quality", + "role": "target", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 7, + "unique_ratio": 0.001787, + "example_values": [ + "5", + "6", + "7", + "8", + "3" + ] + } + } + ] +} \ No newline at end of file diff --git a/timecost/n3/ctgan/ctgan-n3-20260504_163226/public_gate/public_gate_report.json b/timecost/n3/ctgan/ctgan-n3-20260504_163226/public_gate/public_gate_report.json new file mode 100644 index 0000000000000000000000000000000000000000..93b97319f739e39079d6c6549fd2020f8a6dac25 --- /dev/null +++ b/timecost/n3/ctgan/ctgan-n3-20260504_163226/public_gate/public_gate_report.json @@ -0,0 +1,37 @@ +{ + "dataset_id": "n3", + "status": "pass", + "checks": [ + { + "check_id": "PG001_csv_parse_ok", + "status": "pass" + }, + { + "check_id": "PG002_split_header_consistent", + "status": "pass" + }, + { + "check_id": "PG003_profile_header_match", + "status": "pass" + }, + { + "check_id": "PG004_missing_token_normalized", + "status": "pass" + }, + { + "check_id": "PG005_semantic_type_validated", + "status": "pass" + }, + { + "check_id": "PG006_target_defined_and_valid", + "status": "pass" + } + ], + "target_column": "quality", + "task_type": "classification", + "input_splits": { + "train": "/data/jialinzhang/SynthesizePipeline-server/DatasetNew/n3/n3-train.csv", + "val": "/data/jialinzhang/SynthesizePipeline-server/DatasetNew/n3/n3-val.csv", + "test": "/data/jialinzhang/SynthesizePipeline-server/DatasetNew/n3/n3-test.csv" + } +} \ No newline at end of file diff --git a/timecost/n3/ctgan/ctgan-n3-20260504_163226/public_gate/staged_input_manifest.json b/timecost/n3/ctgan/ctgan-n3-20260504_163226/public_gate/staged_input_manifest.json new file mode 100644 index 0000000000000000000000000000000000000000..1ebd95fef90b370776ce4eba1947514c534d65a7 --- /dev/null +++ b/timecost/n3/ctgan/ctgan-n3-20260504_163226/public_gate/staged_input_manifest.json @@ -0,0 +1,264 @@ +{ + "dataset_id": "n3", + "target_column": "quality", + "task_type": "classification", + "train_csv": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/n3/ctgan/ctgan-n3-20260504_163226/staged/public/train.csv", + "val_csv": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/n3/ctgan/ctgan-n3-20260504_163226/staged/public/val.csv", + "test_csv": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/n3/ctgan/ctgan-n3-20260504_163226/staged/public/test.csv", + "features_json": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/n3/ctgan/ctgan-n3-20260504_163226/staged/public/staged_features.json", + "public_gate_report": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/n3/ctgan/ctgan-n3-20260504_163226/public_gate/public_gate_report.json", + "column_schema": [ + { + "name": "fixed acidity", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 66, + "unique_ratio": 0.016845, + "example_values": [ + "7.1", + "8.5", + "6.4", + "6.8", + "7.6" + ] + } + }, + { + "name": "volatile acidity", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 121, + "unique_ratio": 0.030883, + "example_values": [ + "0.31", + "0.21", + "0.24", + "0.43", + "0.27" + ] + } + }, + { + "name": "citric acid", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 85, + "unique_ratio": 0.021695, + "example_values": [ + "0.17", + "0.41", + "0.31", + "0.25", + "0.3" + ] + } + }, + { + "name": "residual sugar", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 296, + "unique_ratio": 0.075549, + "example_values": [ + "1", + "4.3", + "2.8", + "13", + "12.9" + ] + } + }, + { + "name": "chlorides", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 147, + "unique_ratio": 0.037519, + "example_values": [ + "0.042", + "0.036", + "0.038", + "0.047", + "0.033" + ] + } + }, + { + "name": "free sulfur dioxide", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 120, + "unique_ratio": 0.030628, + "example_values": [ + "21", + "24", + "41", + "43", + "69" + ] + } + }, + { + "name": "total sulfur dioxide", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 244, + "unique_ratio": 0.062277, + "example_values": [ + "144", + "99", + "114", + "132", + "160" + ] + } + }, + { + "name": "density", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 839, + "unique_ratio": 0.21414, + "example_values": [ + "0.99304", + "0.9947", + "0.99155", + "0.98975", + "0.99705" + ] + } + }, + { + "name": "pH", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 100, + "unique_ratio": 0.025523, + "example_values": [ + "3.13", + "3.18", + "3.37", + "3.21", + "3.16" + ] + } + }, + { + "name": "sulphates", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 78, + "unique_ratio": 0.019908, + "example_values": [ + "0.4", + "0.53", + "0.66", + "0.47", + "0.5" + ] + } + }, + { + "name": "alcohol", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 97, + "unique_ratio": 0.024758, + "example_values": [ + "9.6", + "9.7", + "11.7", + "13.4", + "8.8" + ] + } + }, + { + "name": "quality", + "role": "target", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 7, + "unique_ratio": 0.001787, + "example_values": [ + "5", + "6", + "7", + "8", + "3" + ] + } + } + ] +} \ No newline at end of file diff --git a/timecost/n3/ctgan/ctgan-n3-20260504_163226/run_config.json b/timecost/n3/ctgan/ctgan-n3-20260504_163226/run_config.json new file mode 100644 index 0000000000000000000000000000000000000000..76a4556977be480393c88ec28330daf7b4c2aa3e --- /dev/null +++ b/timecost/n3/ctgan/ctgan-n3-20260504_163226/run_config.json @@ -0,0 +1,46 @@ +{ + "schema_version": 1, + "recorded_at": "2026-05-04T16:32:26", + "dataset_id": "n3", + "model": "ctgan", + "work_dir": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/n3/ctgan/ctgan-n3-20260504_163226", + "dataset_source_requested": "new", + "dataset_source_resolved": "new", + "cli_args": { + "model": "ctgan", + "dataset": "n3", + "dataset_source": "new", + "train": true, + "generate": true, + "num_rows": 0, + "epochs": null, + "output_dir": null, + "model_dir": null, + "work_dir": null, + "resume": false, + "no_stats": false + }, + "resolved": { + "num_rows": 3918, + "model_path": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/n3/ctgan/ctgan-n3-20260504_163226/models_50epochs/ctgan_50epochs.pt", + "output_csv": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/n3/ctgan/ctgan-n3-20260504_163226/ctgan-n3-3918-20260504_163441.csv" + }, + "input_artifacts": { + "public_gate_report": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/n3/ctgan/ctgan-n3-20260504_163226/public_gate/public_gate_report.json", + "public_manifest": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/n3/ctgan/ctgan-n3-20260504_163226/public_gate/staged_input_manifest.json", + "model_manifest": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/n3/ctgan/ctgan-n3-20260504_163226/staged/ctgan/model_input_manifest.json", + "train_csv": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/n3/ctgan/ctgan-n3-20260504_163226/staged/public/train.csv", + "features_json": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/n3/ctgan/ctgan-n3-20260504_163226/staged/public/staged_features.json", + "target_column": "quality", + "task_type": "classification" + }, + "env_overrides": { + "BENCHMARK_CTGAN_GPUS": "device=3", + "CTGAN_BATCH_SIZE": "32", + "CTGAN_DEFAULT_EPOCHS": "50", + "CTGAN_DISCRIMINATOR_DIMS": "16,16", + "CTGAN_EMBEDDING_DIM": "8", + "CTGAN_GENERATOR_DIMS": "16,16", + "CTGAN_PAC": "1" + } +} \ No newline at end of file diff --git a/timecost/n3/ctgan/ctgan-n3-20260504_163226/runtime_result.json b/timecost/n3/ctgan/ctgan-n3-20260504_163226/runtime_result.json new file mode 100644 index 0000000000000000000000000000000000000000..a5f1ed426bceed10bef8a1102a395b130447821a --- /dev/null +++ b/timecost/n3/ctgan/ctgan-n3-20260504_163226/runtime_result.json @@ -0,0 +1,27 @@ +{ + "dataset_id": "n3", + "model": "ctgan", + "run_id": "ctgan-n3-20260504_163226", + "public_gate_status": "pass", + "adapter_ready_status": "pass", + "train_status": "success", + "generate_status": "success", + "reason_code": null, + "reason_detail": null, + "artifacts": { + "synthetic_csv": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/n3/ctgan/ctgan-n3-20260504_163226/ctgan-n3-3918-20260504_163441.csv", + "model_path": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/n3/ctgan/ctgan-n3-20260504_163226/models_50epochs/ctgan_50epochs.pt" + }, + "timings": { + "train": { + "started_at": "2026-05-04T16:32:26", + "ended_at": "2026-05-04T16:34:41", + "duration_sec": 135.487 + }, + "generate": { + "started_at": "2026-05-04T16:34:41", + "ended_at": "2026-05-04T16:34:47", + "duration_sec": 6.223 + } + } +} \ No newline at end of file diff --git a/timecost/n3/ctgan/ctgan-n3-20260504_163226/staged/ctgan/adapter_report.json b/timecost/n3/ctgan/ctgan-n3-20260504_163226/staged/ctgan/adapter_report.json new file mode 100644 index 0000000000000000000000000000000000000000..b845ea8fcaed64e4f497bc11c0db287851854140 --- /dev/null +++ b/timecost/n3/ctgan/ctgan-n3-20260504_163226/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-Benchmark-trainonly-v1/n3/ctgan/ctgan-n3-20260504_163226/staged/ctgan/model_input_manifest.json" +} \ No newline at end of file diff --git a/timecost/n3/ctgan/ctgan-n3-20260504_163226/staged/ctgan/adapter_transforms_applied.json b/timecost/n3/ctgan/ctgan-n3-20260504_163226/staged/ctgan/adapter_transforms_applied.json new file mode 100644 index 0000000000000000000000000000000000000000..0637a088a01e8ddab3bf3fa98dbe804cbde1a0dc --- /dev/null +++ b/timecost/n3/ctgan/ctgan-n3-20260504_163226/staged/ctgan/adapter_transforms_applied.json @@ -0,0 +1 @@ +[] \ No newline at end of file diff --git a/timecost/n3/ctgan/ctgan-n3-20260504_163226/staged/ctgan/model_input_manifest.json b/timecost/n3/ctgan/ctgan-n3-20260504_163226/staged/ctgan/model_input_manifest.json new file mode 100644 index 0000000000000000000000000000000000000000..ca902293d09878b34dd3f8b7c8a7cc107e2ce39d --- /dev/null +++ b/timecost/n3/ctgan/ctgan-n3-20260504_163226/staged/ctgan/model_input_manifest.json @@ -0,0 +1,266 @@ +{ + "dataset_id": "n3", + "model": "ctgan", + "target_column": "quality", + "task_type": "classification", + "column_schema": [ + { + "name": "fixed acidity", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 66, + "unique_ratio": 0.016845, + "example_values": [ + "7.1", + "8.5", + "6.4", + "6.8", + "7.6" + ] + } + }, + { + "name": "volatile acidity", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 121, + "unique_ratio": 0.030883, + "example_values": [ + "0.31", + "0.21", + "0.24", + "0.43", + "0.27" + ] + } + }, + { + "name": "citric acid", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 85, + "unique_ratio": 0.021695, + "example_values": [ + "0.17", + "0.41", + "0.31", + "0.25", + "0.3" + ] + } + }, + { + "name": "residual sugar", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 296, + "unique_ratio": 0.075549, + "example_values": [ + "1", + "4.3", + "2.8", + "13", + "12.9" + ] + } + }, + { + "name": "chlorides", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 147, + "unique_ratio": 0.037519, + "example_values": [ + "0.042", + "0.036", + "0.038", + "0.047", + "0.033" + ] + } + }, + { + "name": "free sulfur dioxide", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 120, + "unique_ratio": 0.030628, + "example_values": [ + "21", + "24", + "41", + "43", + "69" + ] + } + }, + { + "name": "total sulfur dioxide", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 244, + "unique_ratio": 0.062277, + "example_values": [ + "144", + "99", + "114", + "132", + "160" + ] + } + }, + { + "name": "density", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 839, + "unique_ratio": 0.21414, + "example_values": [ + "0.99304", + "0.9947", + "0.99155", + "0.98975", + "0.99705" + ] + } + }, + { + "name": "pH", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 100, + "unique_ratio": 0.025523, + "example_values": [ + "3.13", + "3.18", + "3.37", + "3.21", + "3.16" + ] + } + }, + { + "name": "sulphates", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 78, + "unique_ratio": 0.019908, + "example_values": [ + "0.4", + "0.53", + "0.66", + "0.47", + "0.5" + ] + } + }, + { + "name": "alcohol", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 97, + "unique_ratio": 0.024758, + "example_values": [ + "9.6", + "9.7", + "11.7", + "13.4", + "8.8" + ] + } + }, + { + "name": "quality", + "role": "target", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 7, + "unique_ratio": 0.001787, + "example_values": [ + "5", + "6", + "7", + "8", + "3" + ] + } + } + ], + "public_manifest": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/n3/ctgan/ctgan-n3-20260504_163226/public_gate/staged_input_manifest.json", + "train_csv": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/n3/ctgan/ctgan-n3-20260504_163226/staged/public/train.csv", + "val_csv": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/n3/ctgan/ctgan-n3-20260504_163226/staged/public/val.csv", + "test_csv": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/n3/ctgan/ctgan-n3-20260504_163226/staged/public/test.csv", + "features_json": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/n3/ctgan/ctgan-n3-20260504_163226/staged/public/staged_features.json", + "public_gate_report": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/n3/ctgan/ctgan-n3-20260504_163226/public_gate/public_gate_report.json" +} \ No newline at end of file diff --git a/timecost/n3/ctgan/ctgan-n3-20260504_163226/staged/public/staged_features.json b/timecost/n3/ctgan/ctgan-n3-20260504_163226/staged/public/staged_features.json new file mode 100644 index 0000000000000000000000000000000000000000..08fe4d766d091d2f2ddba724a16b9509cbe4c390 --- /dev/null +++ b/timecost/n3/ctgan/ctgan-n3-20260504_163226/staged/public/staged_features.json @@ -0,0 +1,62 @@ +[ + { + "feature_name": "fixed acidity", + "data_type": "continuous", + "is_target": false + }, + { + "feature_name": "volatile acidity", + "data_type": "continuous", + "is_target": false + }, + { + "feature_name": "citric acid", + "data_type": "continuous", + "is_target": false + }, + { + "feature_name": "residual sugar", + "data_type": "continuous", + "is_target": false + }, + { + "feature_name": "chlorides", + "data_type": "continuous", + "is_target": false + }, + { + "feature_name": "free sulfur dioxide", + "data_type": "continuous", + "is_target": false + }, + { + "feature_name": "total sulfur dioxide", + "data_type": "continuous", + "is_target": false + }, + { + "feature_name": "density", + "data_type": "continuous", + "is_target": false + }, + { + "feature_name": "pH", + "data_type": "continuous", + "is_target": false + }, + { + "feature_name": "sulphates", + "data_type": "continuous", + "is_target": false + }, + { + "feature_name": "alcohol", + "data_type": "continuous", + "is_target": false + }, + { + "feature_name": "quality", + "data_type": "continuous", + "is_target": true + } +] \ No newline at end of file diff --git a/timecost/n3/ctgan/ctgan-n3-20260504_163226/staged/public/test.csv b/timecost/n3/ctgan/ctgan-n3-20260504_163226/staged/public/test.csv new file mode 100644 index 0000000000000000000000000000000000000000..db5cd50d3746410ea470625fa2ba2c8e9775cc0d --- /dev/null +++ b/timecost/n3/ctgan/ctgan-n3-20260504_163226/staged/public/test.csv @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:19e107152a94432e2a37ff045c00cfe35e1be30208b1553080d7dd0ede256d3b +size 28944 diff --git a/timecost/n3/ctgan/ctgan-n3-20260504_163226/staged/public/train.csv b/timecost/n3/ctgan/ctgan-n3-20260504_163226/staged/public/train.csv new file mode 100644 index 0000000000000000000000000000000000000000..87ca26726fe82ccbaa397919305b043c17eb374e --- /dev/null +++ b/timecost/n3/ctgan/ctgan-n3-20260504_163226/staged/public/train.csv @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:7813c8cca73ba4bfc6559215257b341c21e459980ad17ae6ddc809306bc9a0b9 +size 229945 diff --git a/timecost/n3/ctgan/ctgan-n3-20260504_163226/staged/public/val.csv b/timecost/n3/ctgan/ctgan-n3-20260504_163226/staged/public/val.csv new file mode 100644 index 0000000000000000000000000000000000000000..6acf84c76c47093b513c46d5503972a2dff275c0 --- /dev/null +++ b/timecost/n3/ctgan/ctgan-n3-20260504_163226/staged/public/val.csv @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:cf5979d9675567d9d6642640c9b84fc6c49e492604144723c30f50516c05cee6 +size 28791 diff --git a/timecost/n3/ctgan/ctgan-n3-20260504_163500/_ctgan_generate.py b/timecost/n3/ctgan/ctgan-n3-20260504_163500/_ctgan_generate.py new file mode 100644 index 0000000000000000000000000000000000000000..22ab4eff2cf36a3dbade7c9717bd82f27574e27a --- /dev/null +++ b/timecost/n3/ctgan/ctgan-n3-20260504_163500/_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-Benchmark-trainonly-v1/n3/ctgan/ctgan-n3-20260504_163500/models_100epochs/ctgan_100epochs.pt") +total = 3918 +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-Benchmark-trainonly-v1/n3/ctgan/ctgan-n3-20260504_163500/ctgan-n3-3918-20260504_163716.csv", index=False) +print("[CTGAN] Generated", total, "rows in", len(parts), "chunks ->", "/work/output-Benchmark-trainonly-v1/n3/ctgan/ctgan-n3-20260504_163500/ctgan-n3-3918-20260504_163716.csv") \ No newline at end of file diff --git a/timecost/n3/ctgan/ctgan-n3-20260504_163500/_ctgan_train.py b/timecost/n3/ctgan/ctgan-n3-20260504_163500/_ctgan_train.py new file mode 100644 index 0000000000000000000000000000000000000000..efefe23c3f4c3b677bdbdd9cd49c5023cb93ec59 --- /dev/null +++ b/timecost/n3/ctgan/ctgan-n3-20260504_163500/_ctgan_train.py @@ -0,0 +1,17 @@ +import pandas as pd +from ctgan.synthesizers.ctgan import CTGAN + +data = pd.read_csv("/work/output-Benchmark-trainonly-v1/n3/ctgan/ctgan-n3-20260504_163500/staged/public/train.csv") +discrete_columns = [] +model = CTGAN( + embedding_dim=16, + generator_dim=(32, 32), + discriminator_dim=(32, 32), + batch_size=64, + pac=1, + epochs=100, + verbose=True, +) +model.fit(data, discrete_columns) +model.save("/work/output-Benchmark-trainonly-v1/n3/ctgan/ctgan-n3-20260504_163500/models_100epochs/ctgan_100epochs.pt") +print("[CTGAN] Saved model ->", "/work/output-Benchmark-trainonly-v1/n3/ctgan/ctgan-n3-20260504_163500/models_100epochs/ctgan_100epochs.pt") \ No newline at end of file diff --git a/timecost/n3/ctgan/ctgan-n3-20260504_163500/ctgan-n3-3918-20260504_163716.csv b/timecost/n3/ctgan/ctgan-n3-20260504_163500/ctgan-n3-3918-20260504_163716.csv new file mode 100644 index 0000000000000000000000000000000000000000..6ace7e6d64bae7d23ac937fe14b1aeba2bb87411 --- /dev/null +++ b/timecost/n3/ctgan/ctgan-n3-20260504_163500/ctgan-n3-3918-20260504_163716.csv @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:0af5beb641d31c47be95b72dcde43e1f2257348f4bbe820bc445b54a1373322b +size 820193 diff --git a/timecost/n3/ctgan/ctgan-n3-20260504_163500/ctgan_metadata.json b/timecost/n3/ctgan/ctgan-n3-20260504_163500/ctgan_metadata.json new file mode 100644 index 0000000000000000000000000000000000000000..40d513aa1aca4c6f5c1be8afc3d6a1a0c75aa74f --- /dev/null +++ b/timecost/n3/ctgan/ctgan-n3-20260504_163500/ctgan_metadata.json @@ -0,0 +1,52 @@ +{ + "columns": [ + { + "name": "fixed acidity", + "type": "continuous" + }, + { + "name": "volatile acidity", + "type": "continuous" + }, + { + "name": "citric acid", + "type": "continuous" + }, + { + "name": "residual sugar", + "type": "continuous" + }, + { + "name": "chlorides", + "type": "continuous" + }, + { + "name": "free sulfur dioxide", + "type": "continuous" + }, + { + "name": "total sulfur dioxide", + "type": "continuous" + }, + { + "name": "density", + "type": "continuous" + }, + { + "name": "pH", + "type": "continuous" + }, + { + "name": "sulphates", + "type": "continuous" + }, + { + "name": "alcohol", + "type": "continuous" + }, + { + "name": "quality", + "type": "continuous" + } + ] +} \ No newline at end of file diff --git a/timecost/n3/ctgan/ctgan-n3-20260504_163500/gen_20260504_163716.log b/timecost/n3/ctgan/ctgan-n3-20260504_163500/gen_20260504_163716.log new file mode 100644 index 0000000000000000000000000000000000000000..69a4ef97164584d5346f7a0c46bc6e87b87e9510 --- /dev/null +++ b/timecost/n3/ctgan/ctgan-n3-20260504_163500/gen_20260504_163716.log @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:53729f3a0759d7538eadf40ce5d6b43a2f86e67ee8d865c88495bf00edbf30da +size 297 diff --git a/timecost/n3/ctgan/ctgan-n3-20260504_163500/input_snapshot.json b/timecost/n3/ctgan/ctgan-n3-20260504_163500/input_snapshot.json new file mode 100644 index 0000000000000000000000000000000000000000..15f60f257edd5bcdb6b9e07be8cb5182076affc1 --- /dev/null +++ b/timecost/n3/ctgan/ctgan-n3-20260504_163500/input_snapshot.json @@ -0,0 +1,36 @@ +{ + "dataset_id": "n3", + "model": "ctgan", + "inputs": { + "train_csv": { + "path": "/data/jialinzhang/SynthesizePipeline-server/DatasetNew/n3/n3-train.csv", + "exists": true, + "size": 211519, + "sha256": "2160a06db2fea02adb0ebb79d8d853bd2544580be301e71f6e8deeb1489a9009" + }, + "val_csv": { + "path": "/data/jialinzhang/SynthesizePipeline-server/DatasetNew/n3/n3-val.csv", + "exists": true, + "size": 26499, + "sha256": "d5ccfee07dfa9e7bdee5bb87642b43828e09f74c6cc0266a3d19d9feaa83106e" + }, + "test_csv": { + "path": "/data/jialinzhang/SynthesizePipeline-server/DatasetNew/n3/n3-test.csv", + "exists": true, + "size": 26676, + "sha256": "6f83aacb0d1747b95e287352a7fff5d9d65a1c127b773852346c68485c4ede47" + }, + "profile_json": { + "path": "/data/jialinzhang/SynthesizePipeline-server/DatasetNew/artifacts/data_core/tabular/n3/n3-dataset_profile.json", + "exists": true, + "size": 5235, + "sha256": "23d2e5904a2ca90cbf8d6e3c75887681721e9b90cc705c31a680c11513d0c46f" + }, + "contract_json": { + "path": "/data/jialinzhang/SynthesizePipeline-server/DatasetNew/artifacts/data_core/tabular/n3/n3-dataset_contract_v1.json", + "exists": true, + "size": 6281, + "sha256": "c0cc56f5fe28e1b65927255c6e3c2b0e9479862c2ec6f2fea1664da36c9a3a09" + } + } +} \ No newline at end of file diff --git a/timecost/n3/ctgan/ctgan-n3-20260504_163500/models_100epochs/ctgan_100epochs.pt b/timecost/n3/ctgan/ctgan-n3-20260504_163500/models_100epochs/ctgan_100epochs.pt new file mode 100644 index 0000000000000000000000000000000000000000..8cae7c9f9e86d4a13fd9cf686d254b7c1325432b --- /dev/null +++ b/timecost/n3/ctgan/ctgan-n3-20260504_163500/models_100epochs/ctgan_100epochs.pt @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:f6b319defdbca7ac68458f1b02a5079de9a66fb276c7e650dc5edc6341fac652 +size 441827 diff --git a/timecost/n3/ctgan/ctgan-n3-20260504_163500/models_100epochs/train_20260504_163500.log b/timecost/n3/ctgan/ctgan-n3-20260504_163500/models_100epochs/train_20260504_163500.log new file mode 100644 index 0000000000000000000000000000000000000000..b03100c01d1ea48000143060eedbf87f411ddfa9 --- /dev/null +++ b/timecost/n3/ctgan/ctgan-n3-20260504_163500/models_100epochs/train_20260504_163500.log @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:07a8341d5af0560c0fdf9128b8d26b3934333edd9f985540adbecb32ad24eedf +size 21140 diff --git a/timecost/n3/ctgan/ctgan-n3-20260504_163500/public_gate/normalized_schema_snapshot.json b/timecost/n3/ctgan/ctgan-n3-20260504_163500/public_gate/normalized_schema_snapshot.json new file mode 100644 index 0000000000000000000000000000000000000000..c41fe304503de23190a02e6cbfafa35b3bf134d3 --- /dev/null +++ b/timecost/n3/ctgan/ctgan-n3-20260504_163500/public_gate/normalized_schema_snapshot.json @@ -0,0 +1,259 @@ +{ + "dataset_id": "n3", + "target_column": "quality", + "task_type": "classification", + "columns": [ + { + "name": "fixed acidity", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 66, + "unique_ratio": 0.016845, + "example_values": [ + "7.1", + "8.5", + "6.4", + "6.8", + "7.6" + ] + } + }, + { + "name": "volatile acidity", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 121, + "unique_ratio": 0.030883, + "example_values": [ + "0.31", + "0.21", + "0.24", + "0.43", + "0.27" + ] + } + }, + { + "name": "citric acid", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 85, + "unique_ratio": 0.021695, + "example_values": [ + "0.17", + "0.41", + "0.31", + "0.25", + "0.3" + ] + } + }, + { + "name": "residual sugar", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 296, + "unique_ratio": 0.075549, + "example_values": [ + "1", + "4.3", + "2.8", + "13", + "12.9" + ] + } + }, + { + "name": "chlorides", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 147, + "unique_ratio": 0.037519, + "example_values": [ + "0.042", + "0.036", + "0.038", + "0.047", + "0.033" + ] + } + }, + { + "name": "free sulfur dioxide", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 120, + "unique_ratio": 0.030628, + "example_values": [ + "21", + "24", + "41", + "43", + "69" + ] + } + }, + { + "name": "total sulfur dioxide", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 244, + "unique_ratio": 0.062277, + "example_values": [ + "144", + "99", + "114", + "132", + "160" + ] + } + }, + { + "name": "density", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 839, + "unique_ratio": 0.21414, + "example_values": [ + "0.99304", + "0.9947", + "0.99155", + "0.98975", + "0.99705" + ] + } + }, + { + "name": "pH", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 100, + "unique_ratio": 0.025523, + "example_values": [ + "3.13", + "3.18", + "3.37", + "3.21", + "3.16" + ] + } + }, + { + "name": "sulphates", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 78, + "unique_ratio": 0.019908, + "example_values": [ + "0.4", + "0.53", + "0.66", + "0.47", + "0.5" + ] + } + }, + { + "name": "alcohol", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 97, + "unique_ratio": 0.024758, + "example_values": [ + "9.6", + "9.7", + "11.7", + "13.4", + "8.8" + ] + } + }, + { + "name": "quality", + "role": "target", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 7, + "unique_ratio": 0.001787, + "example_values": [ + "5", + "6", + "7", + "8", + "3" + ] + } + } + ] +} \ No newline at end of file diff --git a/timecost/n3/ctgan/ctgan-n3-20260504_163500/public_gate/public_gate_report.json b/timecost/n3/ctgan/ctgan-n3-20260504_163500/public_gate/public_gate_report.json new file mode 100644 index 0000000000000000000000000000000000000000..93b97319f739e39079d6c6549fd2020f8a6dac25 --- /dev/null +++ b/timecost/n3/ctgan/ctgan-n3-20260504_163500/public_gate/public_gate_report.json @@ -0,0 +1,37 @@ +{ + "dataset_id": "n3", + "status": "pass", + "checks": [ + { + "check_id": "PG001_csv_parse_ok", + "status": "pass" + }, + { + "check_id": "PG002_split_header_consistent", + "status": "pass" + }, + { + "check_id": "PG003_profile_header_match", + "status": "pass" + }, + { + "check_id": "PG004_missing_token_normalized", + "status": "pass" + }, + { + "check_id": "PG005_semantic_type_validated", + "status": "pass" + }, + { + "check_id": "PG006_target_defined_and_valid", + "status": "pass" + } + ], + "target_column": "quality", + "task_type": "classification", + "input_splits": { + "train": "/data/jialinzhang/SynthesizePipeline-server/DatasetNew/n3/n3-train.csv", + "val": "/data/jialinzhang/SynthesizePipeline-server/DatasetNew/n3/n3-val.csv", + "test": "/data/jialinzhang/SynthesizePipeline-server/DatasetNew/n3/n3-test.csv" + } +} \ No newline at end of file diff --git a/timecost/n3/ctgan/ctgan-n3-20260504_163500/public_gate/staged_input_manifest.json b/timecost/n3/ctgan/ctgan-n3-20260504_163500/public_gate/staged_input_manifest.json new file mode 100644 index 0000000000000000000000000000000000000000..48b080f6ee87947110fb4d30dce10e2c1afecad5 --- /dev/null +++ b/timecost/n3/ctgan/ctgan-n3-20260504_163500/public_gate/staged_input_manifest.json @@ -0,0 +1,264 @@ +{ + "dataset_id": "n3", + "target_column": "quality", + "task_type": "classification", + "train_csv": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/n3/ctgan/ctgan-n3-20260504_163500/staged/public/train.csv", + "val_csv": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/n3/ctgan/ctgan-n3-20260504_163500/staged/public/val.csv", + "test_csv": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/n3/ctgan/ctgan-n3-20260504_163500/staged/public/test.csv", + "features_json": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/n3/ctgan/ctgan-n3-20260504_163500/staged/public/staged_features.json", + "public_gate_report": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/n3/ctgan/ctgan-n3-20260504_163500/public_gate/public_gate_report.json", + "column_schema": [ + { + "name": "fixed acidity", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 66, + "unique_ratio": 0.016845, + "example_values": [ + "7.1", + "8.5", + "6.4", + "6.8", + "7.6" + ] + } + }, + { + "name": "volatile acidity", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 121, + "unique_ratio": 0.030883, + "example_values": [ + "0.31", + "0.21", + "0.24", + "0.43", + "0.27" + ] + } + }, + { + "name": "citric acid", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 85, + "unique_ratio": 0.021695, + "example_values": [ + "0.17", + "0.41", + "0.31", + "0.25", + "0.3" + ] + } + }, + { + "name": "residual sugar", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 296, + "unique_ratio": 0.075549, + "example_values": [ + "1", + "4.3", + "2.8", + "13", + "12.9" + ] + } + }, + { + "name": "chlorides", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 147, + "unique_ratio": 0.037519, + "example_values": [ + "0.042", + "0.036", + "0.038", + "0.047", + "0.033" + ] + } + }, + { + "name": "free sulfur dioxide", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 120, + "unique_ratio": 0.030628, + "example_values": [ + "21", + "24", + "41", + "43", + "69" + ] + } + }, + { + "name": "total sulfur dioxide", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 244, + "unique_ratio": 0.062277, + "example_values": [ + "144", + "99", + "114", + "132", + "160" + ] + } + }, + { + "name": "density", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 839, + "unique_ratio": 0.21414, + "example_values": [ + "0.99304", + "0.9947", + "0.99155", + "0.98975", + "0.99705" + ] + } + }, + { + "name": "pH", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 100, + "unique_ratio": 0.025523, + "example_values": [ + "3.13", + "3.18", + "3.37", + "3.21", + "3.16" + ] + } + }, + { + "name": "sulphates", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 78, + "unique_ratio": 0.019908, + "example_values": [ + "0.4", + "0.53", + "0.66", + "0.47", + "0.5" + ] + } + }, + { + "name": "alcohol", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 97, + "unique_ratio": 0.024758, + "example_values": [ + "9.6", + "9.7", + "11.7", + "13.4", + "8.8" + ] + } + }, + { + "name": "quality", + "role": "target", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 7, + "unique_ratio": 0.001787, + "example_values": [ + "5", + "6", + "7", + "8", + "3" + ] + } + } + ] +} \ No newline at end of file diff --git a/timecost/n3/ctgan/ctgan-n3-20260504_163500/run_config.json b/timecost/n3/ctgan/ctgan-n3-20260504_163500/run_config.json new file mode 100644 index 0000000000000000000000000000000000000000..bdb5adc921578c44205b4f57ec918ef36b3e72e2 --- /dev/null +++ b/timecost/n3/ctgan/ctgan-n3-20260504_163500/run_config.json @@ -0,0 +1,46 @@ +{ + "schema_version": 1, + "recorded_at": "2026-05-04T16:35:00", + "dataset_id": "n3", + "model": "ctgan", + "work_dir": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/n3/ctgan/ctgan-n3-20260504_163500", + "dataset_source_requested": "new", + "dataset_source_resolved": "new", + "cli_args": { + "model": "ctgan", + "dataset": "n3", + "dataset_source": "new", + "train": true, + "generate": true, + "num_rows": 0, + "epochs": null, + "output_dir": null, + "model_dir": null, + "work_dir": null, + "resume": false, + "no_stats": false + }, + "resolved": { + "num_rows": 3918, + "model_path": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/n3/ctgan/ctgan-n3-20260504_163500/models_100epochs/ctgan_100epochs.pt", + "output_csv": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/n3/ctgan/ctgan-n3-20260504_163500/ctgan-n3-3918-20260504_163716.csv" + }, + "input_artifacts": { + "public_gate_report": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/n3/ctgan/ctgan-n3-20260504_163500/public_gate/public_gate_report.json", + "public_manifest": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/n3/ctgan/ctgan-n3-20260504_163500/public_gate/staged_input_manifest.json", + "model_manifest": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/n3/ctgan/ctgan-n3-20260504_163500/staged/ctgan/model_input_manifest.json", + "train_csv": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/n3/ctgan/ctgan-n3-20260504_163500/staged/public/train.csv", + "features_json": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/n3/ctgan/ctgan-n3-20260504_163500/staged/public/staged_features.json", + "target_column": "quality", + "task_type": "classification" + }, + "env_overrides": { + "BENCHMARK_CTGAN_GPUS": "device=3", + "CTGAN_BATCH_SIZE": "64", + "CTGAN_DEFAULT_EPOCHS": "100", + "CTGAN_DISCRIMINATOR_DIMS": "32,32", + "CTGAN_EMBEDDING_DIM": "16", + "CTGAN_GENERATOR_DIMS": "32,32", + "CTGAN_PAC": "1" + } +} \ No newline at end of file diff --git a/timecost/n3/ctgan/ctgan-n3-20260504_163500/runtime_result.json b/timecost/n3/ctgan/ctgan-n3-20260504_163500/runtime_result.json new file mode 100644 index 0000000000000000000000000000000000000000..a7f7b88bd571228bf3c14e39259c8ffcf1de3a53 --- /dev/null +++ b/timecost/n3/ctgan/ctgan-n3-20260504_163500/runtime_result.json @@ -0,0 +1,27 @@ +{ + "dataset_id": "n3", + "model": "ctgan", + "run_id": "ctgan-n3-20260504_163500", + "public_gate_status": "pass", + "adapter_ready_status": "pass", + "train_status": "success", + "generate_status": "success", + "reason_code": null, + "reason_detail": null, + "artifacts": { + "synthetic_csv": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/n3/ctgan/ctgan-n3-20260504_163500/ctgan-n3-3918-20260504_163716.csv", + "model_path": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/n3/ctgan/ctgan-n3-20260504_163500/models_100epochs/ctgan_100epochs.pt" + }, + "timings": { + "train": { + "started_at": "2026-05-04T16:35:00", + "ended_at": "2026-05-04T16:37:16", + "duration_sec": 135.911 + }, + "generate": { + "started_at": "2026-05-04T16:37:16", + "ended_at": "2026-05-04T16:37:22", + "duration_sec": 6.302 + } + } +} \ No newline at end of file diff --git a/timecost/n3/ctgan/ctgan-n3-20260504_163500/staged/ctgan/adapter_report.json b/timecost/n3/ctgan/ctgan-n3-20260504_163500/staged/ctgan/adapter_report.json new file mode 100644 index 0000000000000000000000000000000000000000..adf0c5541cafe09b28232934213db710cc57afb0 --- /dev/null +++ b/timecost/n3/ctgan/ctgan-n3-20260504_163500/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-Benchmark-trainonly-v1/n3/ctgan/ctgan-n3-20260504_163500/staged/ctgan/model_input_manifest.json" +} \ No newline at end of file diff --git a/timecost/n3/ctgan/ctgan-n3-20260504_163500/staged/ctgan/adapter_transforms_applied.json b/timecost/n3/ctgan/ctgan-n3-20260504_163500/staged/ctgan/adapter_transforms_applied.json new file mode 100644 index 0000000000000000000000000000000000000000..0637a088a01e8ddab3bf3fa98dbe804cbde1a0dc --- /dev/null +++ b/timecost/n3/ctgan/ctgan-n3-20260504_163500/staged/ctgan/adapter_transforms_applied.json @@ -0,0 +1 @@ +[] \ No newline at end of file diff --git a/timecost/n3/ctgan/ctgan-n3-20260504_163500/staged/ctgan/model_input_manifest.json b/timecost/n3/ctgan/ctgan-n3-20260504_163500/staged/ctgan/model_input_manifest.json new file mode 100644 index 0000000000000000000000000000000000000000..66f05882d6f4384726788905fbddc90af22f11da --- /dev/null +++ b/timecost/n3/ctgan/ctgan-n3-20260504_163500/staged/ctgan/model_input_manifest.json @@ -0,0 +1,266 @@ +{ + "dataset_id": "n3", + "model": "ctgan", + "target_column": "quality", + "task_type": "classification", + "column_schema": [ + { + "name": "fixed acidity", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 66, + "unique_ratio": 0.016845, + "example_values": [ + "7.1", + "8.5", + "6.4", + "6.8", + "7.6" + ] + } + }, + { + "name": "volatile acidity", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 121, + "unique_ratio": 0.030883, + "example_values": [ + "0.31", + "0.21", + "0.24", + "0.43", + "0.27" + ] + } + }, + { + "name": "citric acid", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 85, + "unique_ratio": 0.021695, + "example_values": [ + "0.17", + "0.41", + "0.31", + "0.25", + "0.3" + ] + } + }, + { + "name": "residual sugar", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 296, + "unique_ratio": 0.075549, + "example_values": [ + "1", + "4.3", + "2.8", + "13", + "12.9" + ] + } + }, + { + "name": "chlorides", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 147, + "unique_ratio": 0.037519, + "example_values": [ + "0.042", + "0.036", + "0.038", + "0.047", + "0.033" + ] + } + }, + { + "name": "free sulfur dioxide", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 120, + "unique_ratio": 0.030628, + "example_values": [ + "21", + "24", + "41", + "43", + "69" + ] + } + }, + { + "name": "total sulfur dioxide", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 244, + "unique_ratio": 0.062277, + "example_values": [ + "144", + "99", + "114", + "132", + "160" + ] + } + }, + { + "name": "density", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 839, + "unique_ratio": 0.21414, + "example_values": [ + "0.99304", + "0.9947", + "0.99155", + "0.98975", + "0.99705" + ] + } + }, + { + "name": "pH", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 100, + "unique_ratio": 0.025523, + "example_values": [ + "3.13", + "3.18", + "3.37", + "3.21", + "3.16" + ] + } + }, + { + "name": "sulphates", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 78, + "unique_ratio": 0.019908, + "example_values": [ + "0.4", + "0.53", + "0.66", + "0.47", + "0.5" + ] + } + }, + { + "name": "alcohol", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 97, + "unique_ratio": 0.024758, + "example_values": [ + "9.6", + "9.7", + "11.7", + "13.4", + "8.8" + ] + } + }, + { + "name": "quality", + "role": "target", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 7, + "unique_ratio": 0.001787, + "example_values": [ + "5", + "6", + "7", + "8", + "3" + ] + } + } + ], + "public_manifest": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/n3/ctgan/ctgan-n3-20260504_163500/public_gate/staged_input_manifest.json", + "train_csv": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/n3/ctgan/ctgan-n3-20260504_163500/staged/public/train.csv", + "val_csv": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/n3/ctgan/ctgan-n3-20260504_163500/staged/public/val.csv", + "test_csv": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/n3/ctgan/ctgan-n3-20260504_163500/staged/public/test.csv", + "features_json": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/n3/ctgan/ctgan-n3-20260504_163500/staged/public/staged_features.json", + "public_gate_report": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/n3/ctgan/ctgan-n3-20260504_163500/public_gate/public_gate_report.json" +} \ No newline at end of file diff --git a/timecost/n3/ctgan/ctgan-n3-20260504_163500/staged/public/staged_features.json b/timecost/n3/ctgan/ctgan-n3-20260504_163500/staged/public/staged_features.json new file mode 100644 index 0000000000000000000000000000000000000000..08fe4d766d091d2f2ddba724a16b9509cbe4c390 --- /dev/null +++ b/timecost/n3/ctgan/ctgan-n3-20260504_163500/staged/public/staged_features.json @@ -0,0 +1,62 @@ +[ + { + "feature_name": "fixed acidity", + "data_type": "continuous", + "is_target": false + }, + { + "feature_name": "volatile acidity", + "data_type": "continuous", + "is_target": false + }, + { + "feature_name": "citric acid", + "data_type": "continuous", + "is_target": false + }, + { + "feature_name": "residual sugar", + "data_type": "continuous", + "is_target": false + }, + { + "feature_name": "chlorides", + "data_type": "continuous", + "is_target": false + }, + { + "feature_name": "free sulfur dioxide", + "data_type": "continuous", + "is_target": false + }, + { + "feature_name": "total sulfur dioxide", + "data_type": "continuous", + "is_target": false + }, + { + "feature_name": "density", + "data_type": "continuous", + "is_target": false + }, + { + "feature_name": "pH", + "data_type": "continuous", + "is_target": false + }, + { + "feature_name": "sulphates", + "data_type": "continuous", + "is_target": false + }, + { + "feature_name": "alcohol", + "data_type": "continuous", + "is_target": false + }, + { + "feature_name": "quality", + "data_type": "continuous", + "is_target": true + } +] \ No newline at end of file diff --git a/timecost/n3/ctgan/ctgan-n3-20260504_163500/staged/public/test.csv b/timecost/n3/ctgan/ctgan-n3-20260504_163500/staged/public/test.csv new file mode 100644 index 0000000000000000000000000000000000000000..db5cd50d3746410ea470625fa2ba2c8e9775cc0d --- /dev/null +++ b/timecost/n3/ctgan/ctgan-n3-20260504_163500/staged/public/test.csv @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:19e107152a94432e2a37ff045c00cfe35e1be30208b1553080d7dd0ede256d3b +size 28944 diff --git a/timecost/n3/ctgan/ctgan-n3-20260504_163500/staged/public/train.csv b/timecost/n3/ctgan/ctgan-n3-20260504_163500/staged/public/train.csv new file mode 100644 index 0000000000000000000000000000000000000000..87ca26726fe82ccbaa397919305b043c17eb374e --- /dev/null +++ b/timecost/n3/ctgan/ctgan-n3-20260504_163500/staged/public/train.csv @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:7813c8cca73ba4bfc6559215257b341c21e459980ad17ae6ddc809306bc9a0b9 +size 229945 diff --git a/timecost/n3/ctgan/ctgan-n3-20260504_163500/staged/public/val.csv b/timecost/n3/ctgan/ctgan-n3-20260504_163500/staged/public/val.csv new file mode 100644 index 0000000000000000000000000000000000000000..6acf84c76c47093b513c46d5503972a2dff275c0 --- /dev/null +++ b/timecost/n3/ctgan/ctgan-n3-20260504_163500/staged/public/val.csv @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:cf5979d9675567d9d6642640c9b84fc6c49e492604144723c30f50516c05cee6 +size 28791 diff --git a/timecost/n3/ctgan/ctgan-n3-20260504_163735/_ctgan_generate.py b/timecost/n3/ctgan/ctgan-n3-20260504_163735/_ctgan_generate.py new file mode 100644 index 0000000000000000000000000000000000000000..958966b7d26451c5cec305e5e95d971ad603c9f4 --- /dev/null +++ b/timecost/n3/ctgan/ctgan-n3-20260504_163735/_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-Benchmark-trainonly-v1/n3/ctgan/ctgan-n3-20260504_163735/models_150epochs/ctgan_150epochs.pt") +total = 3918 +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-Benchmark-trainonly-v1/n3/ctgan/ctgan-n3-20260504_163735/ctgan-n3-3918-20260504_163919.csv", index=False) +print("[CTGAN] Generated", total, "rows in", len(parts), "chunks ->", "/work/output-Benchmark-trainonly-v1/n3/ctgan/ctgan-n3-20260504_163735/ctgan-n3-3918-20260504_163919.csv") \ No newline at end of file diff --git a/timecost/n3/ctgan/ctgan-n3-20260504_163735/_ctgan_train.py b/timecost/n3/ctgan/ctgan-n3-20260504_163735/_ctgan_train.py new file mode 100644 index 0000000000000000000000000000000000000000..37981c24b61b6ffbc8d764127aae6a5d20410d3e --- /dev/null +++ b/timecost/n3/ctgan/ctgan-n3-20260504_163735/_ctgan_train.py @@ -0,0 +1,17 @@ +import pandas as pd +from ctgan.synthesizers.ctgan import CTGAN + +data = pd.read_csv("/work/output-Benchmark-trainonly-v1/n3/ctgan/ctgan-n3-20260504_163735/staged/public/train.csv") +discrete_columns = [] +model = CTGAN( + embedding_dim=32, + generator_dim=(64, 64), + discriminator_dim=(64, 64), + batch_size=128, + pac=1, + epochs=150, + verbose=True, +) +model.fit(data, discrete_columns) +model.save("/work/output-Benchmark-trainonly-v1/n3/ctgan/ctgan-n3-20260504_163735/models_150epochs/ctgan_150epochs.pt") +print("[CTGAN] Saved model ->", "/work/output-Benchmark-trainonly-v1/n3/ctgan/ctgan-n3-20260504_163735/models_150epochs/ctgan_150epochs.pt") \ No newline at end of file diff --git a/timecost/n3/ctgan/ctgan-n3-20260504_163735/ctgan-n3-3918-20260504_163919.csv b/timecost/n3/ctgan/ctgan-n3-20260504_163735/ctgan-n3-3918-20260504_163919.csv new file mode 100644 index 0000000000000000000000000000000000000000..d01269246f4056aca40e395921ff81b5b22a970a --- /dev/null +++ b/timecost/n3/ctgan/ctgan-n3-20260504_163735/ctgan-n3-3918-20260504_163919.csv @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:ff18e4b52213da6adbc8c4ced644c1bc2994a3bc04c52d99bd2a9fb3fc4be71d +size 819814 diff --git a/timecost/n3/ctgan/ctgan-n3-20260504_163735/ctgan_metadata.json b/timecost/n3/ctgan/ctgan-n3-20260504_163735/ctgan_metadata.json new file mode 100644 index 0000000000000000000000000000000000000000..40d513aa1aca4c6f5c1be8afc3d6a1a0c75aa74f --- /dev/null +++ b/timecost/n3/ctgan/ctgan-n3-20260504_163735/ctgan_metadata.json @@ -0,0 +1,52 @@ +{ + "columns": [ + { + "name": "fixed acidity", + "type": "continuous" + }, + { + "name": "volatile acidity", + "type": "continuous" + }, + { + "name": "citric acid", + "type": "continuous" + }, + { + "name": "residual sugar", + "type": "continuous" + }, + { + "name": "chlorides", + "type": "continuous" + }, + { + "name": "free sulfur dioxide", + "type": "continuous" + }, + { + "name": "total sulfur dioxide", + "type": "continuous" + }, + { + "name": "density", + "type": "continuous" + }, + { + "name": "pH", + "type": "continuous" + }, + { + "name": "sulphates", + "type": "continuous" + }, + { + "name": "alcohol", + "type": "continuous" + }, + { + "name": "quality", + "type": "continuous" + } + ] +} \ No newline at end of file diff --git a/timecost/n3/ctgan/ctgan-n3-20260504_163735/gen_20260504_163919.log b/timecost/n3/ctgan/ctgan-n3-20260504_163735/gen_20260504_163919.log new file mode 100644 index 0000000000000000000000000000000000000000..c15018523d9b663dbb518ee0443132e2447a3679 --- /dev/null +++ b/timecost/n3/ctgan/ctgan-n3-20260504_163735/gen_20260504_163919.log @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:d4a1b092247ba70ae7e47162bf2690c54df0f896d414770729c5056c19aacf32 +size 297 diff --git a/timecost/n3/ctgan/ctgan-n3-20260504_163735/input_snapshot.json b/timecost/n3/ctgan/ctgan-n3-20260504_163735/input_snapshot.json new file mode 100644 index 0000000000000000000000000000000000000000..15f60f257edd5bcdb6b9e07be8cb5182076affc1 --- /dev/null +++ b/timecost/n3/ctgan/ctgan-n3-20260504_163735/input_snapshot.json @@ -0,0 +1,36 @@ +{ + "dataset_id": "n3", + "model": "ctgan", + "inputs": { + "train_csv": { + "path": "/data/jialinzhang/SynthesizePipeline-server/DatasetNew/n3/n3-train.csv", + "exists": true, + "size": 211519, + "sha256": "2160a06db2fea02adb0ebb79d8d853bd2544580be301e71f6e8deeb1489a9009" + }, + "val_csv": { + "path": "/data/jialinzhang/SynthesizePipeline-server/DatasetNew/n3/n3-val.csv", + "exists": true, + "size": 26499, + "sha256": "d5ccfee07dfa9e7bdee5bb87642b43828e09f74c6cc0266a3d19d9feaa83106e" + }, + "test_csv": { + "path": "/data/jialinzhang/SynthesizePipeline-server/DatasetNew/n3/n3-test.csv", + "exists": true, + "size": 26676, + "sha256": "6f83aacb0d1747b95e287352a7fff5d9d65a1c127b773852346c68485c4ede47" + }, + "profile_json": { + "path": "/data/jialinzhang/SynthesizePipeline-server/DatasetNew/artifacts/data_core/tabular/n3/n3-dataset_profile.json", + "exists": true, + "size": 5235, + "sha256": "23d2e5904a2ca90cbf8d6e3c75887681721e9b90cc705c31a680c11513d0c46f" + }, + "contract_json": { + "path": "/data/jialinzhang/SynthesizePipeline-server/DatasetNew/artifacts/data_core/tabular/n3/n3-dataset_contract_v1.json", + "exists": true, + "size": 6281, + "sha256": "c0cc56f5fe28e1b65927255c6e3c2b0e9479862c2ec6f2fea1664da36c9a3a09" + } + } +} \ No newline at end of file diff --git a/timecost/n3/ctgan/ctgan-n3-20260504_163735/models_150epochs/ctgan_150epochs.pt b/timecost/n3/ctgan/ctgan-n3-20260504_163735/models_150epochs/ctgan_150epochs.pt new file mode 100644 index 0000000000000000000000000000000000000000..4db67a4aeabd2fff80556fe2c44e53e5a8fb81c0 --- /dev/null +++ b/timecost/n3/ctgan/ctgan-n3-20260504_163735/models_150epochs/ctgan_150epochs.pt @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:3a4a33a35f9defe6e6439e7c8b121330e4d256a10c66e3a10ae961c1c85a6ec4 +size 505059 diff --git a/timecost/n3/ctgan/ctgan-n3-20260504_163735/models_150epochs/train_20260504_163735.log b/timecost/n3/ctgan/ctgan-n3-20260504_163735/models_150epochs/train_20260504_163735.log new file mode 100644 index 0000000000000000000000000000000000000000..6b8459c2f3154af1c9ce3e364b77a7ff421577d1 --- /dev/null +++ b/timecost/n3/ctgan/ctgan-n3-20260504_163735/models_150epochs/train_20260504_163735.log @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:220218392a416e873cce66abedb2ed0236db16e1716439b399022e7bef8c542b +size 30539 diff --git a/timecost/n3/ctgan/ctgan-n3-20260504_163735/public_gate/normalized_schema_snapshot.json b/timecost/n3/ctgan/ctgan-n3-20260504_163735/public_gate/normalized_schema_snapshot.json new file mode 100644 index 0000000000000000000000000000000000000000..c41fe304503de23190a02e6cbfafa35b3bf134d3 --- /dev/null +++ b/timecost/n3/ctgan/ctgan-n3-20260504_163735/public_gate/normalized_schema_snapshot.json @@ -0,0 +1,259 @@ +{ + "dataset_id": "n3", + "target_column": "quality", + "task_type": "classification", + "columns": [ + { + "name": "fixed acidity", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 66, + "unique_ratio": 0.016845, + "example_values": [ + "7.1", + "8.5", + "6.4", + "6.8", + "7.6" + ] + } + }, + { + "name": "volatile acidity", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 121, + "unique_ratio": 0.030883, + "example_values": [ + "0.31", + "0.21", + "0.24", + "0.43", + "0.27" + ] + } + }, + { + "name": "citric acid", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 85, + "unique_ratio": 0.021695, + "example_values": [ + "0.17", + "0.41", + "0.31", + "0.25", + "0.3" + ] + } + }, + { + "name": "residual sugar", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 296, + "unique_ratio": 0.075549, + "example_values": [ + "1", + "4.3", + "2.8", + "13", + "12.9" + ] + } + }, + { + "name": "chlorides", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 147, + "unique_ratio": 0.037519, + "example_values": [ + "0.042", + "0.036", + "0.038", + "0.047", + "0.033" + ] + } + }, + { + "name": "free sulfur dioxide", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 120, + "unique_ratio": 0.030628, + "example_values": [ + "21", + "24", + "41", + "43", + "69" + ] + } + }, + { + "name": "total sulfur dioxide", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 244, + "unique_ratio": 0.062277, + "example_values": [ + "144", + "99", + "114", + "132", + "160" + ] + } + }, + { + "name": "density", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 839, + "unique_ratio": 0.21414, + "example_values": [ + "0.99304", + "0.9947", + "0.99155", + "0.98975", + "0.99705" + ] + } + }, + { + "name": "pH", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 100, + "unique_ratio": 0.025523, + "example_values": [ + "3.13", + "3.18", + "3.37", + "3.21", + "3.16" + ] + } + }, + { + "name": "sulphates", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 78, + "unique_ratio": 0.019908, + "example_values": [ + "0.4", + "0.53", + "0.66", + "0.47", + "0.5" + ] + } + }, + { + "name": "alcohol", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 97, + "unique_ratio": 0.024758, + "example_values": [ + "9.6", + "9.7", + "11.7", + "13.4", + "8.8" + ] + } + }, + { + "name": "quality", + "role": "target", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 7, + "unique_ratio": 0.001787, + "example_values": [ + "5", + "6", + "7", + "8", + "3" + ] + } + } + ] +} \ No newline at end of file diff --git a/timecost/n3/ctgan/ctgan-n3-20260504_163735/public_gate/public_gate_report.json b/timecost/n3/ctgan/ctgan-n3-20260504_163735/public_gate/public_gate_report.json new file mode 100644 index 0000000000000000000000000000000000000000..93b97319f739e39079d6c6549fd2020f8a6dac25 --- /dev/null +++ b/timecost/n3/ctgan/ctgan-n3-20260504_163735/public_gate/public_gate_report.json @@ -0,0 +1,37 @@ +{ + "dataset_id": "n3", + "status": "pass", + "checks": [ + { + "check_id": "PG001_csv_parse_ok", + "status": "pass" + }, + { + "check_id": "PG002_split_header_consistent", + "status": "pass" + }, + { + "check_id": "PG003_profile_header_match", + "status": "pass" + }, + { + "check_id": "PG004_missing_token_normalized", + "status": "pass" + }, + { + "check_id": "PG005_semantic_type_validated", + "status": "pass" + }, + { + "check_id": "PG006_target_defined_and_valid", + "status": "pass" + } + ], + "target_column": "quality", + "task_type": "classification", + "input_splits": { + "train": "/data/jialinzhang/SynthesizePipeline-server/DatasetNew/n3/n3-train.csv", + "val": "/data/jialinzhang/SynthesizePipeline-server/DatasetNew/n3/n3-val.csv", + "test": "/data/jialinzhang/SynthesizePipeline-server/DatasetNew/n3/n3-test.csv" + } +} \ No newline at end of file diff --git a/timecost/n3/ctgan/ctgan-n3-20260504_163735/public_gate/staged_input_manifest.json b/timecost/n3/ctgan/ctgan-n3-20260504_163735/public_gate/staged_input_manifest.json new file mode 100644 index 0000000000000000000000000000000000000000..f086dff7a315e8fd37f2438a7615dd2734e2c63f --- /dev/null +++ b/timecost/n3/ctgan/ctgan-n3-20260504_163735/public_gate/staged_input_manifest.json @@ -0,0 +1,264 @@ +{ + "dataset_id": "n3", + "target_column": "quality", + "task_type": "classification", + "train_csv": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/n3/ctgan/ctgan-n3-20260504_163735/staged/public/train.csv", + "val_csv": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/n3/ctgan/ctgan-n3-20260504_163735/staged/public/val.csv", + "test_csv": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/n3/ctgan/ctgan-n3-20260504_163735/staged/public/test.csv", + "features_json": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/n3/ctgan/ctgan-n3-20260504_163735/staged/public/staged_features.json", + "public_gate_report": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/n3/ctgan/ctgan-n3-20260504_163735/public_gate/public_gate_report.json", + "column_schema": [ + { + "name": "fixed acidity", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 66, + "unique_ratio": 0.016845, + "example_values": [ + "7.1", + "8.5", + "6.4", + "6.8", + "7.6" + ] + } + }, + { + "name": "volatile acidity", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 121, + "unique_ratio": 0.030883, + "example_values": [ + "0.31", + "0.21", + "0.24", + "0.43", + "0.27" + ] + } + }, + { + "name": "citric acid", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 85, + "unique_ratio": 0.021695, + "example_values": [ + "0.17", + "0.41", + "0.31", + "0.25", + "0.3" + ] + } + }, + { + "name": "residual sugar", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 296, + "unique_ratio": 0.075549, + "example_values": [ + "1", + "4.3", + "2.8", + "13", + "12.9" + ] + } + }, + { + "name": "chlorides", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 147, + "unique_ratio": 0.037519, + "example_values": [ + "0.042", + "0.036", + "0.038", + "0.047", + "0.033" + ] + } + }, + { + "name": "free sulfur dioxide", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 120, + "unique_ratio": 0.030628, + "example_values": [ + "21", + "24", + "41", + "43", + "69" + ] + } + }, + { + "name": "total sulfur dioxide", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 244, + "unique_ratio": 0.062277, + "example_values": [ + "144", + "99", + "114", + "132", + "160" + ] + } + }, + { + "name": "density", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 839, + "unique_ratio": 0.21414, + "example_values": [ + "0.99304", + "0.9947", + "0.99155", + "0.98975", + "0.99705" + ] + } + }, + { + "name": "pH", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 100, + "unique_ratio": 0.025523, + "example_values": [ + "3.13", + "3.18", + "3.37", + "3.21", + "3.16" + ] + } + }, + { + "name": "sulphates", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 78, + "unique_ratio": 0.019908, + "example_values": [ + "0.4", + "0.53", + "0.66", + "0.47", + "0.5" + ] + } + }, + { + "name": "alcohol", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 97, + "unique_ratio": 0.024758, + "example_values": [ + "9.6", + "9.7", + "11.7", + "13.4", + "8.8" + ] + } + }, + { + "name": "quality", + "role": "target", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 7, + "unique_ratio": 0.001787, + "example_values": [ + "5", + "6", + "7", + "8", + "3" + ] + } + } + ] +} \ No newline at end of file diff --git a/timecost/n3/ctgan/ctgan-n3-20260504_163735/run_config.json b/timecost/n3/ctgan/ctgan-n3-20260504_163735/run_config.json new file mode 100644 index 0000000000000000000000000000000000000000..e37b55dabec637f4ec7e13855b6fb5990a44a7d8 --- /dev/null +++ b/timecost/n3/ctgan/ctgan-n3-20260504_163735/run_config.json @@ -0,0 +1,46 @@ +{ + "schema_version": 1, + "recorded_at": "2026-05-04T16:37:35", + "dataset_id": "n3", + "model": "ctgan", + "work_dir": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/n3/ctgan/ctgan-n3-20260504_163735", + "dataset_source_requested": "new", + "dataset_source_resolved": "new", + "cli_args": { + "model": "ctgan", + "dataset": "n3", + "dataset_source": "new", + "train": true, + "generate": true, + "num_rows": 0, + "epochs": null, + "output_dir": null, + "model_dir": null, + "work_dir": null, + "resume": false, + "no_stats": false + }, + "resolved": { + "num_rows": 3918, + "model_path": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/n3/ctgan/ctgan-n3-20260504_163735/models_150epochs/ctgan_150epochs.pt", + "output_csv": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/n3/ctgan/ctgan-n3-20260504_163735/ctgan-n3-3918-20260504_163919.csv" + }, + "input_artifacts": { + "public_gate_report": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/n3/ctgan/ctgan-n3-20260504_163735/public_gate/public_gate_report.json", + "public_manifest": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/n3/ctgan/ctgan-n3-20260504_163735/public_gate/staged_input_manifest.json", + "model_manifest": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/n3/ctgan/ctgan-n3-20260504_163735/staged/ctgan/model_input_manifest.json", + "train_csv": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/n3/ctgan/ctgan-n3-20260504_163735/staged/public/train.csv", + "features_json": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/n3/ctgan/ctgan-n3-20260504_163735/staged/public/staged_features.json", + "target_column": "quality", + "task_type": "classification" + }, + "env_overrides": { + "BENCHMARK_CTGAN_GPUS": "device=3", + "CTGAN_BATCH_SIZE": "128", + "CTGAN_DEFAULT_EPOCHS": "150", + "CTGAN_DISCRIMINATOR_DIMS": "64,64", + "CTGAN_EMBEDDING_DIM": "32", + "CTGAN_GENERATOR_DIMS": "64,64", + "CTGAN_PAC": "1" + } +} \ No newline at end of file diff --git a/timecost/n3/ctgan/ctgan-n3-20260504_163735/runtime_result.json b/timecost/n3/ctgan/ctgan-n3-20260504_163735/runtime_result.json new file mode 100644 index 0000000000000000000000000000000000000000..13b61ce373b5082e2aae3bba85321ef5109499d9 --- /dev/null +++ b/timecost/n3/ctgan/ctgan-n3-20260504_163735/runtime_result.json @@ -0,0 +1,27 @@ +{ + "dataset_id": "n3", + "model": "ctgan", + "run_id": "ctgan-n3-20260504_163735", + "public_gate_status": "pass", + "adapter_ready_status": "pass", + "train_status": "success", + "generate_status": "success", + "reason_code": null, + "reason_detail": null, + "artifacts": { + "synthetic_csv": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/n3/ctgan/ctgan-n3-20260504_163735/ctgan-n3-3918-20260504_163919.csv", + "model_path": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/n3/ctgan/ctgan-n3-20260504_163735/models_150epochs/ctgan_150epochs.pt" + }, + "timings": { + "train": { + "started_at": "2026-05-04T16:37:35", + "ended_at": "2026-05-04T16:39:19", + "duration_sec": 103.723 + }, + "generate": { + "started_at": "2026-05-04T16:39:19", + "ended_at": "2026-05-04T16:39:25", + "duration_sec": 5.891 + } + } +} \ No newline at end of file diff --git a/timecost/n3/ctgan/ctgan-n3-20260504_163735/staged/ctgan/adapter_report.json b/timecost/n3/ctgan/ctgan-n3-20260504_163735/staged/ctgan/adapter_report.json new file mode 100644 index 0000000000000000000000000000000000000000..248d8f860e0f593028a4ce3aa719ea4008f394c6 --- /dev/null +++ b/timecost/n3/ctgan/ctgan-n3-20260504_163735/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-Benchmark-trainonly-v1/n3/ctgan/ctgan-n3-20260504_163735/staged/ctgan/model_input_manifest.json" +} \ No newline at end of file diff --git a/timecost/n3/ctgan/ctgan-n3-20260504_163735/staged/ctgan/adapter_transforms_applied.json b/timecost/n3/ctgan/ctgan-n3-20260504_163735/staged/ctgan/adapter_transforms_applied.json new file mode 100644 index 0000000000000000000000000000000000000000..0637a088a01e8ddab3bf3fa98dbe804cbde1a0dc --- /dev/null +++ b/timecost/n3/ctgan/ctgan-n3-20260504_163735/staged/ctgan/adapter_transforms_applied.json @@ -0,0 +1 @@ +[] \ No newline at end of file diff --git a/timecost/n3/ctgan/ctgan-n3-20260504_163735/staged/ctgan/model_input_manifest.json b/timecost/n3/ctgan/ctgan-n3-20260504_163735/staged/ctgan/model_input_manifest.json new file mode 100644 index 0000000000000000000000000000000000000000..23e0a6ef05a38d1ee9fac4f54a980b8be2f1bf9d --- /dev/null +++ b/timecost/n3/ctgan/ctgan-n3-20260504_163735/staged/ctgan/model_input_manifest.json @@ -0,0 +1,266 @@ +{ + "dataset_id": "n3", + "model": "ctgan", + "target_column": "quality", + "task_type": "classification", + "column_schema": [ + { + "name": "fixed acidity", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 66, + "unique_ratio": 0.016845, + "example_values": [ + "7.1", + "8.5", + "6.4", + "6.8", + "7.6" + ] + } + }, + { + "name": "volatile acidity", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 121, + "unique_ratio": 0.030883, + "example_values": [ + "0.31", + "0.21", + "0.24", + "0.43", + "0.27" + ] + } + }, + { + "name": "citric acid", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 85, + "unique_ratio": 0.021695, + "example_values": [ + "0.17", + "0.41", + "0.31", + "0.25", + "0.3" + ] + } + }, + { + "name": "residual sugar", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 296, + "unique_ratio": 0.075549, + "example_values": [ + "1", + "4.3", + "2.8", + "13", + "12.9" + ] + } + }, + { + "name": "chlorides", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 147, + "unique_ratio": 0.037519, + "example_values": [ + "0.042", + "0.036", + "0.038", + "0.047", + "0.033" + ] + } + }, + { + "name": "free sulfur dioxide", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 120, + "unique_ratio": 0.030628, + "example_values": [ + "21", + "24", + "41", + "43", + "69" + ] + } + }, + { + "name": "total sulfur dioxide", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 244, + "unique_ratio": 0.062277, + "example_values": [ + "144", + "99", + "114", + "132", + "160" + ] + } + }, + { + "name": "density", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 839, + "unique_ratio": 0.21414, + "example_values": [ + "0.99304", + "0.9947", + "0.99155", + "0.98975", + "0.99705" + ] + } + }, + { + "name": "pH", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 100, + "unique_ratio": 0.025523, + "example_values": [ + "3.13", + "3.18", + "3.37", + "3.21", + "3.16" + ] + } + }, + { + "name": "sulphates", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 78, + "unique_ratio": 0.019908, + "example_values": [ + "0.4", + "0.53", + "0.66", + "0.47", + "0.5" + ] + } + }, + { + "name": "alcohol", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 97, + "unique_ratio": 0.024758, + "example_values": [ + "9.6", + "9.7", + "11.7", + "13.4", + "8.8" + ] + } + }, + { + "name": "quality", + "role": "target", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 7, + "unique_ratio": 0.001787, + "example_values": [ + "5", + "6", + "7", + "8", + "3" + ] + } + } + ], + "public_manifest": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/n3/ctgan/ctgan-n3-20260504_163735/public_gate/staged_input_manifest.json", + "train_csv": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/n3/ctgan/ctgan-n3-20260504_163735/staged/public/train.csv", + "val_csv": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/n3/ctgan/ctgan-n3-20260504_163735/staged/public/val.csv", + "test_csv": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/n3/ctgan/ctgan-n3-20260504_163735/staged/public/test.csv", + "features_json": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/n3/ctgan/ctgan-n3-20260504_163735/staged/public/staged_features.json", + "public_gate_report": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/n3/ctgan/ctgan-n3-20260504_163735/public_gate/public_gate_report.json" +} \ No newline at end of file diff --git a/timecost/n3/ctgan/ctgan-n3-20260504_163735/staged/public/staged_features.json b/timecost/n3/ctgan/ctgan-n3-20260504_163735/staged/public/staged_features.json new file mode 100644 index 0000000000000000000000000000000000000000..08fe4d766d091d2f2ddba724a16b9509cbe4c390 --- /dev/null +++ b/timecost/n3/ctgan/ctgan-n3-20260504_163735/staged/public/staged_features.json @@ -0,0 +1,62 @@ +[ + { + "feature_name": "fixed acidity", + "data_type": "continuous", + "is_target": false + }, + { + "feature_name": "volatile acidity", + "data_type": "continuous", + "is_target": false + }, + { + "feature_name": "citric acid", + "data_type": "continuous", + "is_target": false + }, + { + "feature_name": "residual sugar", + "data_type": "continuous", + "is_target": false + }, + { + "feature_name": "chlorides", + "data_type": "continuous", + "is_target": false + }, + { + "feature_name": "free sulfur dioxide", + "data_type": "continuous", + "is_target": false + }, + { + "feature_name": "total sulfur dioxide", + "data_type": "continuous", + "is_target": false + }, + { + "feature_name": "density", + "data_type": "continuous", + "is_target": false + }, + { + "feature_name": "pH", + "data_type": "continuous", + "is_target": false + }, + { + "feature_name": "sulphates", + "data_type": "continuous", + "is_target": false + }, + { + "feature_name": "alcohol", + "data_type": "continuous", + "is_target": false + }, + { + "feature_name": "quality", + "data_type": "continuous", + "is_target": true + } +] \ No newline at end of file diff --git a/timecost/n3/ctgan/ctgan-n3-20260504_163735/staged/public/test.csv b/timecost/n3/ctgan/ctgan-n3-20260504_163735/staged/public/test.csv new file mode 100644 index 0000000000000000000000000000000000000000..db5cd50d3746410ea470625fa2ba2c8e9775cc0d --- /dev/null +++ b/timecost/n3/ctgan/ctgan-n3-20260504_163735/staged/public/test.csv @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:19e107152a94432e2a37ff045c00cfe35e1be30208b1553080d7dd0ede256d3b +size 28944 diff --git a/timecost/n3/ctgan/ctgan-n3-20260504_163735/staged/public/train.csv b/timecost/n3/ctgan/ctgan-n3-20260504_163735/staged/public/train.csv new file mode 100644 index 0000000000000000000000000000000000000000..87ca26726fe82ccbaa397919305b043c17eb374e --- /dev/null +++ b/timecost/n3/ctgan/ctgan-n3-20260504_163735/staged/public/train.csv @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:7813c8cca73ba4bfc6559215257b341c21e459980ad17ae6ddc809306bc9a0b9 +size 229945 diff --git a/timecost/n3/ctgan/ctgan-n3-20260504_163735/staged/public/val.csv b/timecost/n3/ctgan/ctgan-n3-20260504_163735/staged/public/val.csv new file mode 100644 index 0000000000000000000000000000000000000000..6acf84c76c47093b513c46d5503972a2dff275c0 --- /dev/null +++ b/timecost/n3/ctgan/ctgan-n3-20260504_163735/staged/public/val.csv @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:cf5979d9675567d9d6642640c9b84fc6c49e492604144723c30f50516c05cee6 +size 28791 diff --git a/timecost/n3/ctgan/ctgan-n3-20260504_163938/_ctgan_generate.py b/timecost/n3/ctgan/ctgan-n3-20260504_163938/_ctgan_generate.py new file mode 100644 index 0000000000000000000000000000000000000000..11daec1d2a737e9b2a264f4628dd15c77d08202e --- /dev/null +++ b/timecost/n3/ctgan/ctgan-n3-20260504_163938/_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-Benchmark-trainonly-v1/n3/ctgan/ctgan-n3-20260504_163938/models_100epochs/ctgan_100epochs.pt") +total = 3918 +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-Benchmark-trainonly-v1/n3/ctgan/ctgan-n3-20260504_163938/ctgan-n3-3918-20260504_164128.csv", index=False) +print("[CTGAN] Generated", total, "rows in", len(parts), "chunks ->", "/work/output-Benchmark-trainonly-v1/n3/ctgan/ctgan-n3-20260504_163938/ctgan-n3-3918-20260504_164128.csv") \ No newline at end of file diff --git a/timecost/n3/ctgan/ctgan-n3-20260504_163938/_ctgan_train.py b/timecost/n3/ctgan/ctgan-n3-20260504_163938/_ctgan_train.py new file mode 100644 index 0000000000000000000000000000000000000000..932023a5c4862392815be9d0fa56d2f3dcb84b5c --- /dev/null +++ b/timecost/n3/ctgan/ctgan-n3-20260504_163938/_ctgan_train.py @@ -0,0 +1,17 @@ +import pandas as pd +from ctgan.synthesizers.ctgan import CTGAN + +data = pd.read_csv("/work/output-Benchmark-trainonly-v1/n3/ctgan/ctgan-n3-20260504_163938/staged/public/train.csv") +discrete_columns = [] +model = CTGAN( + embedding_dim=16, + generator_dim=(32, 32), + discriminator_dim=(32, 32), + batch_size=80, + pac=5, + epochs=100, + verbose=True, +) +model.fit(data, discrete_columns) +model.save("/work/output-Benchmark-trainonly-v1/n3/ctgan/ctgan-n3-20260504_163938/models_100epochs/ctgan_100epochs.pt") +print("[CTGAN] Saved model ->", "/work/output-Benchmark-trainonly-v1/n3/ctgan/ctgan-n3-20260504_163938/models_100epochs/ctgan_100epochs.pt") \ No newline at end of file diff --git a/timecost/n3/ctgan/ctgan-n3-20260504_163938/ctgan-n3-3918-20260504_164128.csv b/timecost/n3/ctgan/ctgan-n3-20260504_163938/ctgan-n3-3918-20260504_164128.csv new file mode 100644 index 0000000000000000000000000000000000000000..5506dd849d4d391e8754bc60cff1a6da38745e26 --- /dev/null +++ b/timecost/n3/ctgan/ctgan-n3-20260504_163938/ctgan-n3-3918-20260504_164128.csv @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:93d55cffc061237adad6514ad0b9d5b22ab70147932c96f5cde041ff0f2ce05c +size 821320 diff --git a/timecost/n3/ctgan/ctgan-n3-20260504_163938/ctgan_metadata.json b/timecost/n3/ctgan/ctgan-n3-20260504_163938/ctgan_metadata.json new file mode 100644 index 0000000000000000000000000000000000000000..40d513aa1aca4c6f5c1be8afc3d6a1a0c75aa74f --- /dev/null +++ b/timecost/n3/ctgan/ctgan-n3-20260504_163938/ctgan_metadata.json @@ -0,0 +1,52 @@ +{ + "columns": [ + { + "name": "fixed acidity", + "type": "continuous" + }, + { + "name": "volatile acidity", + "type": "continuous" + }, + { + "name": "citric acid", + "type": "continuous" + }, + { + "name": "residual sugar", + "type": "continuous" + }, + { + "name": "chlorides", + "type": "continuous" + }, + { + "name": "free sulfur dioxide", + "type": "continuous" + }, + { + "name": "total sulfur dioxide", + "type": "continuous" + }, + { + "name": "density", + "type": "continuous" + }, + { + "name": "pH", + "type": "continuous" + }, + { + "name": "sulphates", + "type": "continuous" + }, + { + "name": "alcohol", + "type": "continuous" + }, + { + "name": "quality", + "type": "continuous" + } + ] +} \ No newline at end of file diff --git a/timecost/n3/ctgan/ctgan-n3-20260504_163938/gen_20260504_164128.log b/timecost/n3/ctgan/ctgan-n3-20260504_163938/gen_20260504_164128.log new file mode 100644 index 0000000000000000000000000000000000000000..57879be2cdd4bf15e013811741863132c1797dba --- /dev/null +++ b/timecost/n3/ctgan/ctgan-n3-20260504_163938/gen_20260504_164128.log @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:92e5b04d368e83994eed81d86660bad6611d5497831634fce41b9e8e9b85993c +size 297 diff --git a/timecost/n3/ctgan/ctgan-n3-20260504_163938/input_snapshot.json b/timecost/n3/ctgan/ctgan-n3-20260504_163938/input_snapshot.json new file mode 100644 index 0000000000000000000000000000000000000000..15f60f257edd5bcdb6b9e07be8cb5182076affc1 --- /dev/null +++ b/timecost/n3/ctgan/ctgan-n3-20260504_163938/input_snapshot.json @@ -0,0 +1,36 @@ +{ + "dataset_id": "n3", + "model": "ctgan", + "inputs": { + "train_csv": { + "path": "/data/jialinzhang/SynthesizePipeline-server/DatasetNew/n3/n3-train.csv", + "exists": true, + "size": 211519, + "sha256": "2160a06db2fea02adb0ebb79d8d853bd2544580be301e71f6e8deeb1489a9009" + }, + "val_csv": { + "path": "/data/jialinzhang/SynthesizePipeline-server/DatasetNew/n3/n3-val.csv", + "exists": true, + "size": 26499, + "sha256": "d5ccfee07dfa9e7bdee5bb87642b43828e09f74c6cc0266a3d19d9feaa83106e" + }, + "test_csv": { + "path": "/data/jialinzhang/SynthesizePipeline-server/DatasetNew/n3/n3-test.csv", + "exists": true, + "size": 26676, + "sha256": "6f83aacb0d1747b95e287352a7fff5d9d65a1c127b773852346c68485c4ede47" + }, + "profile_json": { + "path": "/data/jialinzhang/SynthesizePipeline-server/DatasetNew/artifacts/data_core/tabular/n3/n3-dataset_profile.json", + "exists": true, + "size": 5235, + "sha256": "23d2e5904a2ca90cbf8d6e3c75887681721e9b90cc705c31a680c11513d0c46f" + }, + "contract_json": { + "path": "/data/jialinzhang/SynthesizePipeline-server/DatasetNew/artifacts/data_core/tabular/n3/n3-dataset_contract_v1.json", + "exists": true, + "size": 6281, + "sha256": "c0cc56f5fe28e1b65927255c6e3c2b0e9479862c2ec6f2fea1664da36c9a3a09" + } + } +} \ No newline at end of file diff --git a/timecost/n3/ctgan/ctgan-n3-20260504_163938/models_100epochs/ctgan_100epochs.pt b/timecost/n3/ctgan/ctgan-n3-20260504_163938/models_100epochs/ctgan_100epochs.pt new file mode 100644 index 0000000000000000000000000000000000000000..e10bb01ab5a943d3b8f5362eaeab273814da2602 --- /dev/null +++ b/timecost/n3/ctgan/ctgan-n3-20260504_163938/models_100epochs/ctgan_100epochs.pt @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:2b2544f21e5cdec77204a9e3825cdbe1d940087b75dd9cfe564b6f065929ac1d +size 441827 diff --git a/timecost/n3/ctgan/ctgan-n3-20260504_163938/models_100epochs/train_20260504_163938.log b/timecost/n3/ctgan/ctgan-n3-20260504_163938/models_100epochs/train_20260504_163938.log new file mode 100644 index 0000000000000000000000000000000000000000..59e77ff88703915772c30c740890d66f6dabf292 --- /dev/null +++ b/timecost/n3/ctgan/ctgan-n3-20260504_163938/models_100epochs/train_20260504_163938.log @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:0c2f6cef9566b9448c26833415b07408600e7928b8caced2a247d5ed73cad578 +size 21106 diff --git a/timecost/n3/ctgan/ctgan-n3-20260504_163938/public_gate/normalized_schema_snapshot.json b/timecost/n3/ctgan/ctgan-n3-20260504_163938/public_gate/normalized_schema_snapshot.json new file mode 100644 index 0000000000000000000000000000000000000000..c41fe304503de23190a02e6cbfafa35b3bf134d3 --- /dev/null +++ b/timecost/n3/ctgan/ctgan-n3-20260504_163938/public_gate/normalized_schema_snapshot.json @@ -0,0 +1,259 @@ +{ + "dataset_id": "n3", + "target_column": "quality", + "task_type": "classification", + "columns": [ + { + "name": "fixed acidity", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 66, + "unique_ratio": 0.016845, + "example_values": [ + "7.1", + "8.5", + "6.4", + "6.8", + "7.6" + ] + } + }, + { + "name": "volatile acidity", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 121, + "unique_ratio": 0.030883, + "example_values": [ + "0.31", + "0.21", + "0.24", + "0.43", + "0.27" + ] + } + }, + { + "name": "citric acid", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 85, + "unique_ratio": 0.021695, + "example_values": [ + "0.17", + "0.41", + "0.31", + "0.25", + "0.3" + ] + } + }, + { + "name": "residual sugar", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 296, + "unique_ratio": 0.075549, + "example_values": [ + "1", + "4.3", + "2.8", + "13", + "12.9" + ] + } + }, + { + "name": "chlorides", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 147, + "unique_ratio": 0.037519, + "example_values": [ + "0.042", + "0.036", + "0.038", + "0.047", + "0.033" + ] + } + }, + { + "name": "free sulfur dioxide", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 120, + "unique_ratio": 0.030628, + "example_values": [ + "21", + "24", + "41", + "43", + "69" + ] + } + }, + { + "name": "total sulfur dioxide", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 244, + "unique_ratio": 0.062277, + "example_values": [ + "144", + "99", + "114", + "132", + "160" + ] + } + }, + { + "name": "density", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 839, + "unique_ratio": 0.21414, + "example_values": [ + "0.99304", + "0.9947", + "0.99155", + "0.98975", + "0.99705" + ] + } + }, + { + "name": "pH", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 100, + "unique_ratio": 0.025523, + "example_values": [ + "3.13", + "3.18", + "3.37", + "3.21", + "3.16" + ] + } + }, + { + "name": "sulphates", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 78, + "unique_ratio": 0.019908, + "example_values": [ + "0.4", + "0.53", + "0.66", + "0.47", + "0.5" + ] + } + }, + { + "name": "alcohol", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 97, + "unique_ratio": 0.024758, + "example_values": [ + "9.6", + "9.7", + "11.7", + "13.4", + "8.8" + ] + } + }, + { + "name": "quality", + "role": "target", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 7, + "unique_ratio": 0.001787, + "example_values": [ + "5", + "6", + "7", + "8", + "3" + ] + } + } + ] +} \ No newline at end of file diff --git a/timecost/n3/ctgan/ctgan-n3-20260504_163938/public_gate/public_gate_report.json b/timecost/n3/ctgan/ctgan-n3-20260504_163938/public_gate/public_gate_report.json new file mode 100644 index 0000000000000000000000000000000000000000..93b97319f739e39079d6c6549fd2020f8a6dac25 --- /dev/null +++ b/timecost/n3/ctgan/ctgan-n3-20260504_163938/public_gate/public_gate_report.json @@ -0,0 +1,37 @@ +{ + "dataset_id": "n3", + "status": "pass", + "checks": [ + { + "check_id": "PG001_csv_parse_ok", + "status": "pass" + }, + { + "check_id": "PG002_split_header_consistent", + "status": "pass" + }, + { + "check_id": "PG003_profile_header_match", + "status": "pass" + }, + { + "check_id": "PG004_missing_token_normalized", + "status": "pass" + }, + { + "check_id": "PG005_semantic_type_validated", + "status": "pass" + }, + { + "check_id": "PG006_target_defined_and_valid", + "status": "pass" + } + ], + "target_column": "quality", + "task_type": "classification", + "input_splits": { + "train": "/data/jialinzhang/SynthesizePipeline-server/DatasetNew/n3/n3-train.csv", + "val": "/data/jialinzhang/SynthesizePipeline-server/DatasetNew/n3/n3-val.csv", + "test": "/data/jialinzhang/SynthesizePipeline-server/DatasetNew/n3/n3-test.csv" + } +} \ No newline at end of file diff --git a/timecost/n3/ctgan/ctgan-n3-20260504_163938/public_gate/staged_input_manifest.json b/timecost/n3/ctgan/ctgan-n3-20260504_163938/public_gate/staged_input_manifest.json new file mode 100644 index 0000000000000000000000000000000000000000..b7a7573e2cd97ccdb991247365e25cfcec0b26dd --- /dev/null +++ b/timecost/n3/ctgan/ctgan-n3-20260504_163938/public_gate/staged_input_manifest.json @@ -0,0 +1,264 @@ +{ + "dataset_id": "n3", + "target_column": "quality", + "task_type": "classification", + "train_csv": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/n3/ctgan/ctgan-n3-20260504_163938/staged/public/train.csv", + "val_csv": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/n3/ctgan/ctgan-n3-20260504_163938/staged/public/val.csv", + "test_csv": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/n3/ctgan/ctgan-n3-20260504_163938/staged/public/test.csv", + "features_json": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/n3/ctgan/ctgan-n3-20260504_163938/staged/public/staged_features.json", + "public_gate_report": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/n3/ctgan/ctgan-n3-20260504_163938/public_gate/public_gate_report.json", + "column_schema": [ + { + "name": "fixed acidity", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 66, + "unique_ratio": 0.016845, + "example_values": [ + "7.1", + "8.5", + "6.4", + "6.8", + "7.6" + ] + } + }, + { + "name": "volatile acidity", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 121, + "unique_ratio": 0.030883, + "example_values": [ + "0.31", + "0.21", + "0.24", + "0.43", + "0.27" + ] + } + }, + { + "name": "citric acid", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 85, + "unique_ratio": 0.021695, + "example_values": [ + "0.17", + "0.41", + "0.31", + "0.25", + "0.3" + ] + } + }, + { + "name": "residual sugar", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 296, + "unique_ratio": 0.075549, + "example_values": [ + "1", + "4.3", + "2.8", + "13", + "12.9" + ] + } + }, + { + "name": "chlorides", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 147, + "unique_ratio": 0.037519, + "example_values": [ + "0.042", + "0.036", + "0.038", + "0.047", + "0.033" + ] + } + }, + { + "name": "free sulfur dioxide", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 120, + "unique_ratio": 0.030628, + "example_values": [ + "21", + "24", + "41", + "43", + "69" + ] + } + }, + { + "name": "total sulfur dioxide", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 244, + "unique_ratio": 0.062277, + "example_values": [ + "144", + "99", + "114", + "132", + "160" + ] + } + }, + { + "name": "density", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 839, + "unique_ratio": 0.21414, + "example_values": [ + "0.99304", + "0.9947", + "0.99155", + "0.98975", + "0.99705" + ] + } + }, + { + "name": "pH", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 100, + "unique_ratio": 0.025523, + "example_values": [ + "3.13", + "3.18", + "3.37", + "3.21", + "3.16" + ] + } + }, + { + "name": "sulphates", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 78, + "unique_ratio": 0.019908, + "example_values": [ + "0.4", + "0.53", + "0.66", + "0.47", + "0.5" + ] + } + }, + { + "name": "alcohol", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 97, + "unique_ratio": 0.024758, + "example_values": [ + "9.6", + "9.7", + "11.7", + "13.4", + "8.8" + ] + } + }, + { + "name": "quality", + "role": "target", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 7, + "unique_ratio": 0.001787, + "example_values": [ + "5", + "6", + "7", + "8", + "3" + ] + } + } + ] +} \ No newline at end of file diff --git a/timecost/n3/ctgan/ctgan-n3-20260504_163938/run_config.json b/timecost/n3/ctgan/ctgan-n3-20260504_163938/run_config.json new file mode 100644 index 0000000000000000000000000000000000000000..3f4507d19cd409a75629d94ac8f1dafe292f4fb2 --- /dev/null +++ b/timecost/n3/ctgan/ctgan-n3-20260504_163938/run_config.json @@ -0,0 +1,46 @@ +{ + "schema_version": 1, + "recorded_at": "2026-05-04T16:39:38", + "dataset_id": "n3", + "model": "ctgan", + "work_dir": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/n3/ctgan/ctgan-n3-20260504_163938", + "dataset_source_requested": "new", + "dataset_source_resolved": "new", + "cli_args": { + "model": "ctgan", + "dataset": "n3", + "dataset_source": "new", + "train": true, + "generate": true, + "num_rows": 0, + "epochs": null, + "output_dir": null, + "model_dir": null, + "work_dir": null, + "resume": false, + "no_stats": false + }, + "resolved": { + "num_rows": 3918, + "model_path": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/n3/ctgan/ctgan-n3-20260504_163938/models_100epochs/ctgan_100epochs.pt", + "output_csv": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/n3/ctgan/ctgan-n3-20260504_163938/ctgan-n3-3918-20260504_164128.csv" + }, + "input_artifacts": { + "public_gate_report": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/n3/ctgan/ctgan-n3-20260504_163938/public_gate/public_gate_report.json", + "public_manifest": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/n3/ctgan/ctgan-n3-20260504_163938/public_gate/staged_input_manifest.json", + "model_manifest": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/n3/ctgan/ctgan-n3-20260504_163938/staged/ctgan/model_input_manifest.json", + "train_csv": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/n3/ctgan/ctgan-n3-20260504_163938/staged/public/train.csv", + "features_json": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/n3/ctgan/ctgan-n3-20260504_163938/staged/public/staged_features.json", + "target_column": "quality", + "task_type": "classification" + }, + "env_overrides": { + "BENCHMARK_CTGAN_GPUS": "device=3", + "CTGAN_BATCH_SIZE": "80", + "CTGAN_DEFAULT_EPOCHS": "100", + "CTGAN_DISCRIMINATOR_DIMS": "32,32", + "CTGAN_EMBEDDING_DIM": "16", + "CTGAN_GENERATOR_DIMS": "32,32", + "CTGAN_PAC": "5" + } +} \ No newline at end of file diff --git a/timecost/n3/ctgan/ctgan-n3-20260504_163938/runtime_result.json b/timecost/n3/ctgan/ctgan-n3-20260504_163938/runtime_result.json new file mode 100644 index 0000000000000000000000000000000000000000..14c4db9b6a71f0808c83e0d13a0a55db4a3d1f91 --- /dev/null +++ b/timecost/n3/ctgan/ctgan-n3-20260504_163938/runtime_result.json @@ -0,0 +1,27 @@ +{ + "dataset_id": "n3", + "model": "ctgan", + "run_id": "ctgan-n3-20260504_163938", + "public_gate_status": "pass", + "adapter_ready_status": "pass", + "train_status": "success", + "generate_status": "success", + "reason_code": null, + "reason_detail": null, + "artifacts": { + "synthetic_csv": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/n3/ctgan/ctgan-n3-20260504_163938/ctgan-n3-3918-20260504_164128.csv", + "model_path": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/n3/ctgan/ctgan-n3-20260504_163938/models_100epochs/ctgan_100epochs.pt" + }, + "timings": { + "train": { + "started_at": "2026-05-04T16:39:38", + "ended_at": "2026-05-04T16:41:28", + "duration_sec": 110.202 + }, + "generate": { + "started_at": "2026-05-04T16:41:28", + "ended_at": "2026-05-04T16:41:34", + "duration_sec": 6.041 + } + } +} \ No newline at end of file diff --git a/timecost/n3/ctgan/ctgan-n3-20260504_163938/staged/ctgan/adapter_report.json b/timecost/n3/ctgan/ctgan-n3-20260504_163938/staged/ctgan/adapter_report.json new file mode 100644 index 0000000000000000000000000000000000000000..b8485d4663ea6879e2c4a49a9919b70ae9d9efd3 --- /dev/null +++ b/timecost/n3/ctgan/ctgan-n3-20260504_163938/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-Benchmark-trainonly-v1/n3/ctgan/ctgan-n3-20260504_163938/staged/ctgan/model_input_manifest.json" +} \ No newline at end of file diff --git a/timecost/n3/ctgan/ctgan-n3-20260504_163938/staged/ctgan/adapter_transforms_applied.json b/timecost/n3/ctgan/ctgan-n3-20260504_163938/staged/ctgan/adapter_transforms_applied.json new file mode 100644 index 0000000000000000000000000000000000000000..0637a088a01e8ddab3bf3fa98dbe804cbde1a0dc --- /dev/null +++ b/timecost/n3/ctgan/ctgan-n3-20260504_163938/staged/ctgan/adapter_transforms_applied.json @@ -0,0 +1 @@ +[] \ No newline at end of file diff --git a/timecost/n3/ctgan/ctgan-n3-20260504_163938/staged/ctgan/model_input_manifest.json b/timecost/n3/ctgan/ctgan-n3-20260504_163938/staged/ctgan/model_input_manifest.json new file mode 100644 index 0000000000000000000000000000000000000000..c1d03a3ff894a845be3787e65c922fe900543cd5 --- /dev/null +++ b/timecost/n3/ctgan/ctgan-n3-20260504_163938/staged/ctgan/model_input_manifest.json @@ -0,0 +1,266 @@ +{ + "dataset_id": "n3", + "model": "ctgan", + "target_column": "quality", + "task_type": "classification", + "column_schema": [ + { + "name": "fixed acidity", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 66, + "unique_ratio": 0.016845, + "example_values": [ + "7.1", + "8.5", + "6.4", + "6.8", + "7.6" + ] + } + }, + { + "name": "volatile acidity", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 121, + "unique_ratio": 0.030883, + "example_values": [ + "0.31", + "0.21", + "0.24", + "0.43", + "0.27" + ] + } + }, + { + "name": "citric acid", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 85, + "unique_ratio": 0.021695, + "example_values": [ + "0.17", + "0.41", + "0.31", + "0.25", + "0.3" + ] + } + }, + { + "name": "residual sugar", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 296, + "unique_ratio": 0.075549, + "example_values": [ + "1", + "4.3", + "2.8", + "13", + "12.9" + ] + } + }, + { + "name": "chlorides", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 147, + "unique_ratio": 0.037519, + "example_values": [ + "0.042", + "0.036", + "0.038", + "0.047", + "0.033" + ] + } + }, + { + "name": "free sulfur dioxide", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 120, + "unique_ratio": 0.030628, + "example_values": [ + "21", + "24", + "41", + "43", + "69" + ] + } + }, + { + "name": "total sulfur dioxide", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 244, + "unique_ratio": 0.062277, + "example_values": [ + "144", + "99", + "114", + "132", + "160" + ] + } + }, + { + "name": "density", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 839, + "unique_ratio": 0.21414, + "example_values": [ + "0.99304", + "0.9947", + "0.99155", + "0.98975", + "0.99705" + ] + } + }, + { + "name": "pH", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 100, + "unique_ratio": 0.025523, + "example_values": [ + "3.13", + "3.18", + "3.37", + "3.21", + "3.16" + ] + } + }, + { + "name": "sulphates", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 78, + "unique_ratio": 0.019908, + "example_values": [ + "0.4", + "0.53", + "0.66", + "0.47", + "0.5" + ] + } + }, + { + "name": "alcohol", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 97, + "unique_ratio": 0.024758, + "example_values": [ + "9.6", + "9.7", + "11.7", + "13.4", + "8.8" + ] + } + }, + { + "name": "quality", + "role": "target", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 7, + "unique_ratio": 0.001787, + "example_values": [ + "5", + "6", + "7", + "8", + "3" + ] + } + } + ], + "public_manifest": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/n3/ctgan/ctgan-n3-20260504_163938/public_gate/staged_input_manifest.json", + "train_csv": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/n3/ctgan/ctgan-n3-20260504_163938/staged/public/train.csv", + "val_csv": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/n3/ctgan/ctgan-n3-20260504_163938/staged/public/val.csv", + "test_csv": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/n3/ctgan/ctgan-n3-20260504_163938/staged/public/test.csv", + "features_json": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/n3/ctgan/ctgan-n3-20260504_163938/staged/public/staged_features.json", + "public_gate_report": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/n3/ctgan/ctgan-n3-20260504_163938/public_gate/public_gate_report.json" +} \ No newline at end of file diff --git a/timecost/n3/ctgan/ctgan-n3-20260504_163938/staged/public/staged_features.json b/timecost/n3/ctgan/ctgan-n3-20260504_163938/staged/public/staged_features.json new file mode 100644 index 0000000000000000000000000000000000000000..08fe4d766d091d2f2ddba724a16b9509cbe4c390 --- /dev/null +++ b/timecost/n3/ctgan/ctgan-n3-20260504_163938/staged/public/staged_features.json @@ -0,0 +1,62 @@ +[ + { + "feature_name": "fixed acidity", + "data_type": "continuous", + "is_target": false + }, + { + "feature_name": "volatile acidity", + "data_type": "continuous", + "is_target": false + }, + { + "feature_name": "citric acid", + "data_type": "continuous", + "is_target": false + }, + { + "feature_name": "residual sugar", + "data_type": "continuous", + "is_target": false + }, + { + "feature_name": "chlorides", + "data_type": "continuous", + "is_target": false + }, + { + "feature_name": "free sulfur dioxide", + "data_type": "continuous", + "is_target": false + }, + { + "feature_name": "total sulfur dioxide", + "data_type": "continuous", + "is_target": false + }, + { + "feature_name": "density", + "data_type": "continuous", + "is_target": false + }, + { + "feature_name": "pH", + "data_type": "continuous", + "is_target": false + }, + { + "feature_name": "sulphates", + "data_type": "continuous", + "is_target": false + }, + { + "feature_name": "alcohol", + "data_type": "continuous", + "is_target": false + }, + { + "feature_name": "quality", + "data_type": "continuous", + "is_target": true + } +] \ No newline at end of file diff --git a/timecost/n3/ctgan/ctgan-n3-20260504_163938/staged/public/test.csv b/timecost/n3/ctgan/ctgan-n3-20260504_163938/staged/public/test.csv new file mode 100644 index 0000000000000000000000000000000000000000..db5cd50d3746410ea470625fa2ba2c8e9775cc0d --- /dev/null +++ b/timecost/n3/ctgan/ctgan-n3-20260504_163938/staged/public/test.csv @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:19e107152a94432e2a37ff045c00cfe35e1be30208b1553080d7dd0ede256d3b +size 28944 diff --git a/timecost/n3/ctgan/ctgan-n3-20260504_163938/staged/public/train.csv b/timecost/n3/ctgan/ctgan-n3-20260504_163938/staged/public/train.csv new file mode 100644 index 0000000000000000000000000000000000000000..87ca26726fe82ccbaa397919305b043c17eb374e --- /dev/null +++ b/timecost/n3/ctgan/ctgan-n3-20260504_163938/staged/public/train.csv @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:7813c8cca73ba4bfc6559215257b341c21e459980ad17ae6ddc809306bc9a0b9 +size 229945 diff --git a/timecost/n3/ctgan/ctgan-n3-20260504_163938/staged/public/val.csv b/timecost/n3/ctgan/ctgan-n3-20260504_163938/staged/public/val.csv new file mode 100644 index 0000000000000000000000000000000000000000..6acf84c76c47093b513c46d5503972a2dff275c0 --- /dev/null +++ b/timecost/n3/ctgan/ctgan-n3-20260504_163938/staged/public/val.csv @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:cf5979d9675567d9d6642640c9b84fc6c49e492604144723c30f50516c05cee6 +size 28791 diff --git a/timecost/n3/ctgan/ctgan-n3-20260504_164147/_ctgan_generate.py b/timecost/n3/ctgan/ctgan-n3-20260504_164147/_ctgan_generate.py new file mode 100644 index 0000000000000000000000000000000000000000..ce16fd64962b33468b0055b7bdf9bc8546696887 --- /dev/null +++ b/timecost/n3/ctgan/ctgan-n3-20260504_164147/_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-Benchmark-trainonly-v1/n3/ctgan/ctgan-n3-20260504_164147/models_200epochs/ctgan_200epochs.pt") +total = 3918 +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-Benchmark-trainonly-v1/n3/ctgan/ctgan-n3-20260504_164147/ctgan-n3-3918-20260504_164434.csv", index=False) +print("[CTGAN] Generated", total, "rows in", len(parts), "chunks ->", "/work/output-Benchmark-trainonly-v1/n3/ctgan/ctgan-n3-20260504_164147/ctgan-n3-3918-20260504_164434.csv") \ No newline at end of file diff --git a/timecost/n3/ctgan/ctgan-n3-20260504_164147/_ctgan_train.py b/timecost/n3/ctgan/ctgan-n3-20260504_164147/_ctgan_train.py new file mode 100644 index 0000000000000000000000000000000000000000..74c218a06e4ff52752bd2e472c3d7754f1d49e1a --- /dev/null +++ b/timecost/n3/ctgan/ctgan-n3-20260504_164147/_ctgan_train.py @@ -0,0 +1,17 @@ +import pandas as pd +from ctgan.synthesizers.ctgan import CTGAN + +data = pd.read_csv("/work/output-Benchmark-trainonly-v1/n3/ctgan/ctgan-n3-20260504_164147/staged/public/train.csv") +discrete_columns = [] +model = CTGAN( + embedding_dim=32, + generator_dim=(64, 64), + discriminator_dim=(64, 64), + batch_size=100, + pac=10, + epochs=200, + verbose=True, +) +model.fit(data, discrete_columns) +model.save("/work/output-Benchmark-trainonly-v1/n3/ctgan/ctgan-n3-20260504_164147/models_200epochs/ctgan_200epochs.pt") +print("[CTGAN] Saved model ->", "/work/output-Benchmark-trainonly-v1/n3/ctgan/ctgan-n3-20260504_164147/models_200epochs/ctgan_200epochs.pt") \ No newline at end of file diff --git a/timecost/n3/ctgan/ctgan-n3-20260504_164147/ctgan-n3-3918-20260504_164434.csv b/timecost/n3/ctgan/ctgan-n3-20260504_164147/ctgan-n3-3918-20260504_164434.csv new file mode 100644 index 0000000000000000000000000000000000000000..f227eb8a8114bb08526db72cb68358776eff32ca --- /dev/null +++ b/timecost/n3/ctgan/ctgan-n3-20260504_164147/ctgan-n3-3918-20260504_164434.csv @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:5cef0aba072b44c34ebff73200196215ccf66da1c54e39ea715d23d26bb30627 +size 820612 diff --git a/timecost/n3/ctgan/ctgan-n3-20260504_164147/ctgan_metadata.json b/timecost/n3/ctgan/ctgan-n3-20260504_164147/ctgan_metadata.json new file mode 100644 index 0000000000000000000000000000000000000000..40d513aa1aca4c6f5c1be8afc3d6a1a0c75aa74f --- /dev/null +++ b/timecost/n3/ctgan/ctgan-n3-20260504_164147/ctgan_metadata.json @@ -0,0 +1,52 @@ +{ + "columns": [ + { + "name": "fixed acidity", + "type": "continuous" + }, + { + "name": "volatile acidity", + "type": "continuous" + }, + { + "name": "citric acid", + "type": "continuous" + }, + { + "name": "residual sugar", + "type": "continuous" + }, + { + "name": "chlorides", + "type": "continuous" + }, + { + "name": "free sulfur dioxide", + "type": "continuous" + }, + { + "name": "total sulfur dioxide", + "type": "continuous" + }, + { + "name": "density", + "type": "continuous" + }, + { + "name": "pH", + "type": "continuous" + }, + { + "name": "sulphates", + "type": "continuous" + }, + { + "name": "alcohol", + "type": "continuous" + }, + { + "name": "quality", + "type": "continuous" + } + ] +} \ No newline at end of file diff --git a/timecost/n3/ctgan/ctgan-n3-20260504_164147/gen_20260504_164434.log b/timecost/n3/ctgan/ctgan-n3-20260504_164147/gen_20260504_164434.log new file mode 100644 index 0000000000000000000000000000000000000000..8749b768b43f35d0ba5e644006219db24e80ffe7 --- /dev/null +++ b/timecost/n3/ctgan/ctgan-n3-20260504_164147/gen_20260504_164434.log @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:539db263dc0c0a18d1e2a1f0521476c20ad046c35ae3d32287acd88d3201d894 +size 297 diff --git a/timecost/n3/ctgan/ctgan-n3-20260504_164147/input_snapshot.json b/timecost/n3/ctgan/ctgan-n3-20260504_164147/input_snapshot.json new file mode 100644 index 0000000000000000000000000000000000000000..15f60f257edd5bcdb6b9e07be8cb5182076affc1 --- /dev/null +++ b/timecost/n3/ctgan/ctgan-n3-20260504_164147/input_snapshot.json @@ -0,0 +1,36 @@ +{ + "dataset_id": "n3", + "model": "ctgan", + "inputs": { + "train_csv": { + "path": "/data/jialinzhang/SynthesizePipeline-server/DatasetNew/n3/n3-train.csv", + "exists": true, + "size": 211519, + "sha256": "2160a06db2fea02adb0ebb79d8d853bd2544580be301e71f6e8deeb1489a9009" + }, + "val_csv": { + "path": "/data/jialinzhang/SynthesizePipeline-server/DatasetNew/n3/n3-val.csv", + "exists": true, + "size": 26499, + "sha256": "d5ccfee07dfa9e7bdee5bb87642b43828e09f74c6cc0266a3d19d9feaa83106e" + }, + "test_csv": { + "path": "/data/jialinzhang/SynthesizePipeline-server/DatasetNew/n3/n3-test.csv", + "exists": true, + "size": 26676, + "sha256": "6f83aacb0d1747b95e287352a7fff5d9d65a1c127b773852346c68485c4ede47" + }, + "profile_json": { + "path": "/data/jialinzhang/SynthesizePipeline-server/DatasetNew/artifacts/data_core/tabular/n3/n3-dataset_profile.json", + "exists": true, + "size": 5235, + "sha256": "23d2e5904a2ca90cbf8d6e3c75887681721e9b90cc705c31a680c11513d0c46f" + }, + "contract_json": { + "path": "/data/jialinzhang/SynthesizePipeline-server/DatasetNew/artifacts/data_core/tabular/n3/n3-dataset_contract_v1.json", + "exists": true, + "size": 6281, + "sha256": "c0cc56f5fe28e1b65927255c6e3c2b0e9479862c2ec6f2fea1664da36c9a3a09" + } + } +} \ No newline at end of file diff --git a/timecost/n3/ctgan/ctgan-n3-20260504_164147/models_200epochs/ctgan_200epochs.pt b/timecost/n3/ctgan/ctgan-n3-20260504_164147/models_200epochs/ctgan_200epochs.pt new file mode 100644 index 0000000000000000000000000000000000000000..ef89ba6c22fd659d361671b73ec6b09934aa8c28 --- /dev/null +++ b/timecost/n3/ctgan/ctgan-n3-20260504_164147/models_200epochs/ctgan_200epochs.pt @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:fa07d691ce56622f2706cacae75e8a32a64d546411caa1ba705dcfebcf99da84 +size 506595 diff --git a/timecost/n3/ctgan/ctgan-n3-20260504_164147/models_200epochs/train_20260504_164147.log b/timecost/n3/ctgan/ctgan-n3-20260504_164147/models_200epochs/train_20260504_164147.log new file mode 100644 index 0000000000000000000000000000000000000000..6af829172e049562d45f3540f7bfebf51480e026 --- /dev/null +++ b/timecost/n3/ctgan/ctgan-n3-20260504_164147/models_200epochs/train_20260504_164147.log @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:55105901e10533ebfec814533857c12e0964326487d34724b0e52896dd00db7e +size 39783 diff --git a/timecost/n3/ctgan/ctgan-n3-20260504_164147/public_gate/normalized_schema_snapshot.json b/timecost/n3/ctgan/ctgan-n3-20260504_164147/public_gate/normalized_schema_snapshot.json new file mode 100644 index 0000000000000000000000000000000000000000..c41fe304503de23190a02e6cbfafa35b3bf134d3 --- /dev/null +++ b/timecost/n3/ctgan/ctgan-n3-20260504_164147/public_gate/normalized_schema_snapshot.json @@ -0,0 +1,259 @@ +{ + "dataset_id": "n3", + "target_column": "quality", + "task_type": "classification", + "columns": [ + { + "name": "fixed acidity", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 66, + "unique_ratio": 0.016845, + "example_values": [ + "7.1", + "8.5", + "6.4", + "6.8", + "7.6" + ] + } + }, + { + "name": "volatile acidity", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 121, + "unique_ratio": 0.030883, + "example_values": [ + "0.31", + "0.21", + "0.24", + "0.43", + "0.27" + ] + } + }, + { + "name": "citric acid", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 85, + "unique_ratio": 0.021695, + "example_values": [ + "0.17", + "0.41", + "0.31", + "0.25", + "0.3" + ] + } + }, + { + "name": "residual sugar", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 296, + "unique_ratio": 0.075549, + "example_values": [ + "1", + "4.3", + "2.8", + "13", + "12.9" + ] + } + }, + { + "name": "chlorides", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 147, + "unique_ratio": 0.037519, + "example_values": [ + "0.042", + "0.036", + "0.038", + "0.047", + "0.033" + ] + } + }, + { + "name": "free sulfur dioxide", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 120, + "unique_ratio": 0.030628, + "example_values": [ + "21", + "24", + "41", + "43", + "69" + ] + } + }, + { + "name": "total sulfur dioxide", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 244, + "unique_ratio": 0.062277, + "example_values": [ + "144", + "99", + "114", + "132", + "160" + ] + } + }, + { + "name": "density", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 839, + "unique_ratio": 0.21414, + "example_values": [ + "0.99304", + "0.9947", + "0.99155", + "0.98975", + "0.99705" + ] + } + }, + { + "name": "pH", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 100, + "unique_ratio": 0.025523, + "example_values": [ + "3.13", + "3.18", + "3.37", + "3.21", + "3.16" + ] + } + }, + { + "name": "sulphates", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 78, + "unique_ratio": 0.019908, + "example_values": [ + "0.4", + "0.53", + "0.66", + "0.47", + "0.5" + ] + } + }, + { + "name": "alcohol", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 97, + "unique_ratio": 0.024758, + "example_values": [ + "9.6", + "9.7", + "11.7", + "13.4", + "8.8" + ] + } + }, + { + "name": "quality", + "role": "target", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 7, + "unique_ratio": 0.001787, + "example_values": [ + "5", + "6", + "7", + "8", + "3" + ] + } + } + ] +} \ No newline at end of file diff --git a/timecost/n3/ctgan/ctgan-n3-20260504_164147/public_gate/public_gate_report.json b/timecost/n3/ctgan/ctgan-n3-20260504_164147/public_gate/public_gate_report.json new file mode 100644 index 0000000000000000000000000000000000000000..93b97319f739e39079d6c6549fd2020f8a6dac25 --- /dev/null +++ b/timecost/n3/ctgan/ctgan-n3-20260504_164147/public_gate/public_gate_report.json @@ -0,0 +1,37 @@ +{ + "dataset_id": "n3", + "status": "pass", + "checks": [ + { + "check_id": "PG001_csv_parse_ok", + "status": "pass" + }, + { + "check_id": "PG002_split_header_consistent", + "status": "pass" + }, + { + "check_id": "PG003_profile_header_match", + "status": "pass" + }, + { + "check_id": "PG004_missing_token_normalized", + "status": "pass" + }, + { + "check_id": "PG005_semantic_type_validated", + "status": "pass" + }, + { + "check_id": "PG006_target_defined_and_valid", + "status": "pass" + } + ], + "target_column": "quality", + "task_type": "classification", + "input_splits": { + "train": "/data/jialinzhang/SynthesizePipeline-server/DatasetNew/n3/n3-train.csv", + "val": "/data/jialinzhang/SynthesizePipeline-server/DatasetNew/n3/n3-val.csv", + "test": "/data/jialinzhang/SynthesizePipeline-server/DatasetNew/n3/n3-test.csv" + } +} \ No newline at end of file diff --git a/timecost/n3/ctgan/ctgan-n3-20260504_164147/public_gate/staged_input_manifest.json b/timecost/n3/ctgan/ctgan-n3-20260504_164147/public_gate/staged_input_manifest.json new file mode 100644 index 0000000000000000000000000000000000000000..d26700f56384919a9b616b29ff8538419807c11e --- /dev/null +++ b/timecost/n3/ctgan/ctgan-n3-20260504_164147/public_gate/staged_input_manifest.json @@ -0,0 +1,264 @@ +{ + "dataset_id": "n3", + "target_column": "quality", + "task_type": "classification", + "train_csv": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/n3/ctgan/ctgan-n3-20260504_164147/staged/public/train.csv", + "val_csv": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/n3/ctgan/ctgan-n3-20260504_164147/staged/public/val.csv", + "test_csv": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/n3/ctgan/ctgan-n3-20260504_164147/staged/public/test.csv", + "features_json": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/n3/ctgan/ctgan-n3-20260504_164147/staged/public/staged_features.json", + "public_gate_report": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/n3/ctgan/ctgan-n3-20260504_164147/public_gate/public_gate_report.json", + "column_schema": [ + { + "name": "fixed acidity", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 66, + "unique_ratio": 0.016845, + "example_values": [ + "7.1", + "8.5", + "6.4", + "6.8", + "7.6" + ] + } + }, + { + "name": "volatile acidity", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 121, + "unique_ratio": 0.030883, + "example_values": [ + "0.31", + "0.21", + "0.24", + "0.43", + "0.27" + ] + } + }, + { + "name": "citric acid", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 85, + "unique_ratio": 0.021695, + "example_values": [ + "0.17", + "0.41", + "0.31", + "0.25", + "0.3" + ] + } + }, + { + "name": "residual sugar", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 296, + "unique_ratio": 0.075549, + "example_values": [ + "1", + "4.3", + "2.8", + "13", + "12.9" + ] + } + }, + { + "name": "chlorides", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 147, + "unique_ratio": 0.037519, + "example_values": [ + "0.042", + "0.036", + "0.038", + "0.047", + "0.033" + ] + } + }, + { + "name": "free sulfur dioxide", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 120, + "unique_ratio": 0.030628, + "example_values": [ + "21", + "24", + "41", + "43", + "69" + ] + } + }, + { + "name": "total sulfur dioxide", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 244, + "unique_ratio": 0.062277, + "example_values": [ + "144", + "99", + "114", + "132", + "160" + ] + } + }, + { + "name": "density", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 839, + "unique_ratio": 0.21414, + "example_values": [ + "0.99304", + "0.9947", + "0.99155", + "0.98975", + "0.99705" + ] + } + }, + { + "name": "pH", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 100, + "unique_ratio": 0.025523, + "example_values": [ + "3.13", + "3.18", + "3.37", + "3.21", + "3.16" + ] + } + }, + { + "name": "sulphates", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 78, + "unique_ratio": 0.019908, + "example_values": [ + "0.4", + "0.53", + "0.66", + "0.47", + "0.5" + ] + } + }, + { + "name": "alcohol", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 97, + "unique_ratio": 0.024758, + "example_values": [ + "9.6", + "9.7", + "11.7", + "13.4", + "8.8" + ] + } + }, + { + "name": "quality", + "role": "target", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 7, + "unique_ratio": 0.001787, + "example_values": [ + "5", + "6", + "7", + "8", + "3" + ] + } + } + ] +} \ No newline at end of file diff --git a/timecost/n3/ctgan/ctgan-n3-20260504_164147/run_config.json b/timecost/n3/ctgan/ctgan-n3-20260504_164147/run_config.json new file mode 100644 index 0000000000000000000000000000000000000000..20cd9ca3a16c8c14ce9aed306bb5c39a752ee086 --- /dev/null +++ b/timecost/n3/ctgan/ctgan-n3-20260504_164147/run_config.json @@ -0,0 +1,46 @@ +{ + "schema_version": 1, + "recorded_at": "2026-05-04T16:41:47", + "dataset_id": "n3", + "model": "ctgan", + "work_dir": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/n3/ctgan/ctgan-n3-20260504_164147", + "dataset_source_requested": "new", + "dataset_source_resolved": "new", + "cli_args": { + "model": "ctgan", + "dataset": "n3", + "dataset_source": "new", + "train": true, + "generate": true, + "num_rows": 0, + "epochs": null, + "output_dir": null, + "model_dir": null, + "work_dir": null, + "resume": false, + "no_stats": false + }, + "resolved": { + "num_rows": 3918, + "model_path": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/n3/ctgan/ctgan-n3-20260504_164147/models_200epochs/ctgan_200epochs.pt", + "output_csv": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/n3/ctgan/ctgan-n3-20260504_164147/ctgan-n3-3918-20260504_164434.csv" + }, + "input_artifacts": { + "public_gate_report": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/n3/ctgan/ctgan-n3-20260504_164147/public_gate/public_gate_report.json", + "public_manifest": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/n3/ctgan/ctgan-n3-20260504_164147/public_gate/staged_input_manifest.json", + "model_manifest": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/n3/ctgan/ctgan-n3-20260504_164147/staged/ctgan/model_input_manifest.json", + "train_csv": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/n3/ctgan/ctgan-n3-20260504_164147/staged/public/train.csv", + "features_json": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/n3/ctgan/ctgan-n3-20260504_164147/staged/public/staged_features.json", + "target_column": "quality", + "task_type": "classification" + }, + "env_overrides": { + "BENCHMARK_CTGAN_GPUS": "device=3", + "CTGAN_BATCH_SIZE": "100", + "CTGAN_DEFAULT_EPOCHS": "200", + "CTGAN_DISCRIMINATOR_DIMS": "64,64", + "CTGAN_EMBEDDING_DIM": "32", + "CTGAN_GENERATOR_DIMS": "64,64", + "CTGAN_PAC": "10" + } +} \ No newline at end of file diff --git a/timecost/n3/ctgan/ctgan-n3-20260504_164147/runtime_result.json b/timecost/n3/ctgan/ctgan-n3-20260504_164147/runtime_result.json new file mode 100644 index 0000000000000000000000000000000000000000..a6eb7b5ff68fee78d836eca8e47636a0cca8b3d4 --- /dev/null +++ b/timecost/n3/ctgan/ctgan-n3-20260504_164147/runtime_result.json @@ -0,0 +1,27 @@ +{ + "dataset_id": "n3", + "model": "ctgan", + "run_id": "ctgan-n3-20260504_164147", + "public_gate_status": "pass", + "adapter_ready_status": "pass", + "train_status": "success", + "generate_status": "success", + "reason_code": null, + "reason_detail": null, + "artifacts": { + "synthetic_csv": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/n3/ctgan/ctgan-n3-20260504_164147/ctgan-n3-3918-20260504_164434.csv", + "model_path": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/n3/ctgan/ctgan-n3-20260504_164147/models_200epochs/ctgan_200epochs.pt" + }, + "timings": { + "train": { + "started_at": "2026-05-04T16:41:47", + "ended_at": "2026-05-04T16:44:34", + "duration_sec": 166.695 + }, + "generate": { + "started_at": "2026-05-04T16:44:34", + "ended_at": "2026-05-04T16:44:40", + "duration_sec": 5.746 + } + } +} \ No newline at end of file diff --git a/timecost/n3/ctgan/ctgan-n3-20260504_164147/staged/ctgan/adapter_report.json b/timecost/n3/ctgan/ctgan-n3-20260504_164147/staged/ctgan/adapter_report.json new file mode 100644 index 0000000000000000000000000000000000000000..b05358b8982cb6b8643b8f1fce66f02c3b70574c --- /dev/null +++ b/timecost/n3/ctgan/ctgan-n3-20260504_164147/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-Benchmark-trainonly-v1/n3/ctgan/ctgan-n3-20260504_164147/staged/ctgan/model_input_manifest.json" +} \ No newline at end of file diff --git a/timecost/n3/ctgan/ctgan-n3-20260504_164147/staged/ctgan/adapter_transforms_applied.json b/timecost/n3/ctgan/ctgan-n3-20260504_164147/staged/ctgan/adapter_transforms_applied.json new file mode 100644 index 0000000000000000000000000000000000000000..0637a088a01e8ddab3bf3fa98dbe804cbde1a0dc --- /dev/null +++ b/timecost/n3/ctgan/ctgan-n3-20260504_164147/staged/ctgan/adapter_transforms_applied.json @@ -0,0 +1 @@ +[] \ No newline at end of file diff --git a/timecost/n3/ctgan/ctgan-n3-20260504_164147/staged/ctgan/model_input_manifest.json b/timecost/n3/ctgan/ctgan-n3-20260504_164147/staged/ctgan/model_input_manifest.json new file mode 100644 index 0000000000000000000000000000000000000000..43d4a7dc16aac46136fb461c1cc04f6ac566f186 --- /dev/null +++ b/timecost/n3/ctgan/ctgan-n3-20260504_164147/staged/ctgan/model_input_manifest.json @@ -0,0 +1,266 @@ +{ + "dataset_id": "n3", + "model": "ctgan", + "target_column": "quality", + "task_type": "classification", + "column_schema": [ + { + "name": "fixed acidity", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 66, + "unique_ratio": 0.016845, + "example_values": [ + "7.1", + "8.5", + "6.4", + "6.8", + "7.6" + ] + } + }, + { + "name": "volatile acidity", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 121, + "unique_ratio": 0.030883, + "example_values": [ + "0.31", + "0.21", + "0.24", + "0.43", + "0.27" + ] + } + }, + { + "name": "citric acid", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 85, + "unique_ratio": 0.021695, + "example_values": [ + "0.17", + "0.41", + "0.31", + "0.25", + "0.3" + ] + } + }, + { + "name": "residual sugar", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 296, + "unique_ratio": 0.075549, + "example_values": [ + "1", + "4.3", + "2.8", + "13", + "12.9" + ] + } + }, + { + "name": "chlorides", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 147, + "unique_ratio": 0.037519, + "example_values": [ + "0.042", + "0.036", + "0.038", + "0.047", + "0.033" + ] + } + }, + { + "name": "free sulfur dioxide", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 120, + "unique_ratio": 0.030628, + "example_values": [ + "21", + "24", + "41", + "43", + "69" + ] + } + }, + { + "name": "total sulfur dioxide", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 244, + "unique_ratio": 0.062277, + "example_values": [ + "144", + "99", + "114", + "132", + "160" + ] + } + }, + { + "name": "density", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 839, + "unique_ratio": 0.21414, + "example_values": [ + "0.99304", + "0.9947", + "0.99155", + "0.98975", + "0.99705" + ] + } + }, + { + "name": "pH", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 100, + "unique_ratio": 0.025523, + "example_values": [ + "3.13", + "3.18", + "3.37", + "3.21", + "3.16" + ] + } + }, + { + "name": "sulphates", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 78, + "unique_ratio": 0.019908, + "example_values": [ + "0.4", + "0.53", + "0.66", + "0.47", + "0.5" + ] + } + }, + { + "name": "alcohol", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 97, + "unique_ratio": 0.024758, + "example_values": [ + "9.6", + "9.7", + "11.7", + "13.4", + "8.8" + ] + } + }, + { + "name": "quality", + "role": "target", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 7, + "unique_ratio": 0.001787, + "example_values": [ + "5", + "6", + "7", + "8", + "3" + ] + } + } + ], + "public_manifest": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/n3/ctgan/ctgan-n3-20260504_164147/public_gate/staged_input_manifest.json", + "train_csv": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/n3/ctgan/ctgan-n3-20260504_164147/staged/public/train.csv", + "val_csv": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/n3/ctgan/ctgan-n3-20260504_164147/staged/public/val.csv", + "test_csv": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/n3/ctgan/ctgan-n3-20260504_164147/staged/public/test.csv", + "features_json": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/n3/ctgan/ctgan-n3-20260504_164147/staged/public/staged_features.json", + "public_gate_report": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/n3/ctgan/ctgan-n3-20260504_164147/public_gate/public_gate_report.json" +} \ No newline at end of file diff --git a/timecost/n3/ctgan/ctgan-n3-20260504_164147/staged/public/staged_features.json b/timecost/n3/ctgan/ctgan-n3-20260504_164147/staged/public/staged_features.json new file mode 100644 index 0000000000000000000000000000000000000000..08fe4d766d091d2f2ddba724a16b9509cbe4c390 --- /dev/null +++ b/timecost/n3/ctgan/ctgan-n3-20260504_164147/staged/public/staged_features.json @@ -0,0 +1,62 @@ +[ + { + "feature_name": "fixed acidity", + "data_type": "continuous", + "is_target": false + }, + { + "feature_name": "volatile acidity", + "data_type": "continuous", + "is_target": false + }, + { + "feature_name": "citric acid", + "data_type": "continuous", + "is_target": false + }, + { + "feature_name": "residual sugar", + "data_type": "continuous", + "is_target": false + }, + { + "feature_name": "chlorides", + "data_type": "continuous", + "is_target": false + }, + { + "feature_name": "free sulfur dioxide", + "data_type": "continuous", + "is_target": false + }, + { + "feature_name": "total sulfur dioxide", + "data_type": "continuous", + "is_target": false + }, + { + "feature_name": "density", + "data_type": "continuous", + "is_target": false + }, + { + "feature_name": "pH", + "data_type": "continuous", + "is_target": false + }, + { + "feature_name": "sulphates", + "data_type": "continuous", + "is_target": false + }, + { + "feature_name": "alcohol", + "data_type": "continuous", + "is_target": false + }, + { + "feature_name": "quality", + "data_type": "continuous", + "is_target": true + } +] \ No newline at end of file diff --git a/timecost/n3/ctgan/ctgan-n3-20260504_164147/staged/public/test.csv b/timecost/n3/ctgan/ctgan-n3-20260504_164147/staged/public/test.csv new file mode 100644 index 0000000000000000000000000000000000000000..db5cd50d3746410ea470625fa2ba2c8e9775cc0d --- /dev/null +++ b/timecost/n3/ctgan/ctgan-n3-20260504_164147/staged/public/test.csv @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:19e107152a94432e2a37ff045c00cfe35e1be30208b1553080d7dd0ede256d3b +size 28944 diff --git a/timecost/n3/ctgan/ctgan-n3-20260504_164147/staged/public/train.csv b/timecost/n3/ctgan/ctgan-n3-20260504_164147/staged/public/train.csv new file mode 100644 index 0000000000000000000000000000000000000000..87ca26726fe82ccbaa397919305b043c17eb374e --- /dev/null +++ b/timecost/n3/ctgan/ctgan-n3-20260504_164147/staged/public/train.csv @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:7813c8cca73ba4bfc6559215257b341c21e459980ad17ae6ddc809306bc9a0b9 +size 229945 diff --git a/timecost/n3/ctgan/ctgan-n3-20260504_164147/staged/public/val.csv b/timecost/n3/ctgan/ctgan-n3-20260504_164147/staged/public/val.csv new file mode 100644 index 0000000000000000000000000000000000000000..6acf84c76c47093b513c46d5503972a2dff275c0 --- /dev/null +++ b/timecost/n3/ctgan/ctgan-n3-20260504_164147/staged/public/val.csv @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:cf5979d9675567d9d6642640c9b84fc6c49e492604144723c30f50516c05cee6 +size 28791 diff --git a/timecost/n3/forestdiffusion/forest-n3-20260501_180619/_fd_X_host.npy b/timecost/n3/forestdiffusion/forest-n3-20260501_180619/_fd_X_host.npy new file mode 100644 index 0000000000000000000000000000000000000000..bb3be252292265fb98716334d40ccfaf8d75d244 --- /dev/null +++ b/timecost/n3/forestdiffusion/forest-n3-20260501_180619/_fd_X_host.npy @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:b15fb02a2af34c0c93fdfe59170a6f8c933a7a529162825116447fdff3efa1ff +size 188192 diff --git a/timecost/n3/forestdiffusion/forest-n3-20260501_180619/_fd_gen.py b/timecost/n3/forestdiffusion/forest-n3-20260501_180619/_fd_gen.py new file mode 100644 index 0000000000000000000000000000000000000000..3faf692aec8e754cc83be1780f972f41046bdc13 --- /dev/null +++ b/timecost/n3/forestdiffusion/forest-n3-20260501_180619/_fd_gen.py @@ -0,0 +1,8 @@ + +import joblib, pandas as pd +m, meta = joblib.load(r'/work/output-Benchmark-trainonly-v1/n3/forestdiffusion/forest-n3-20260501_180619/forestdiffusion_model.joblib') +# generate:batch_size 为样本数 +arr = m.generate(batch_size=int(3918)) +df = pd.DataFrame(arr, columns=meta["column_names"]) +df.to_csv(r'/work/output-Benchmark-trainonly-v1/n3/forestdiffusion/forest-n3-20260501_180619/forest-n3-3918-20260501_180740.csv', index=False) +print("saved", len(df)) diff --git a/timecost/n3/forestdiffusion/forest-n3-20260501_180619/_fd_meta_host.json b/timecost/n3/forestdiffusion/forest-n3-20260501_180619/_fd_meta_host.json new file mode 100644 index 0000000000000000000000000000000000000000..c65de394e081438752dd19dc6672d70748924abc --- /dev/null +++ b/timecost/n3/forestdiffusion/forest-n3-20260501_180619/_fd_meta_host.json @@ -0,0 +1 @@ +{"column_names": ["fixed acidity", "volatile acidity", "citric acid", "residual sugar", "chlorides", "free sulfur dioxide", "total sulfur dioxide", "density", "pH", "sulphates", "alcohol", "quality"], "cat_indexes": []} \ No newline at end of file diff --git a/timecost/n3/forestdiffusion/forest-n3-20260501_180619/_fd_train.py b/timecost/n3/forestdiffusion/forest-n3-20260501_180619/_fd_train.py new file mode 100644 index 0000000000000000000000000000000000000000..1c0813a1369f8a258815c4800dec650556ea556b --- /dev/null +++ b/timecost/n3/forestdiffusion/forest-n3-20260501_180619/_fd_train.py @@ -0,0 +1,28 @@ + +import shutil, json +shutil.copy(r'/work/output-Benchmark-trainonly-v1/n3/forestdiffusion/forest-n3-20260501_180619/_fd_X_host.npy', '/tmp/fd_X.npy') +with open(r'/work/output-Benchmark-trainonly-v1/n3/forestdiffusion/forest-n3-20260501_180619/_fd_meta_host.json') as f: + open('/tmp/fd_meta.json','w').write(f.read()) + +import numpy as np, joblib, json, os +from ForestDiffusion import ForestDiffusionModel +X = np.load("/tmp/fd_X.npy") +with open("/tmp/fd_meta.json") as f: + meta = json.load(f) +cat_indexes = meta["cat_indexes"] +print( + "[ForestDiffusion] train config: " + f"rows={X.shape[0]} cols={X.shape[1]} n_t=20 " + f"n_estimators=100 duplicate_K=20 n_jobs=2 " + f"xgb_verbosity=1", + flush=True, +) +m = ForestDiffusionModel( + X, n_t=20, n_estimators=100, duplicate_K=20, n_jobs=2, + model="xgboost", max_depth=6, tree_method="hist", cat_indexes=cat_indexes, + verbosity=1, +) +joblib.dump((m, meta), "/tmp/fd_model.joblib") +print("ForestDiffusion train OK") + +shutil.copy('/tmp/fd_model.joblib', r'/work/output-Benchmark-trainonly-v1/n3/forestdiffusion/forest-n3-20260501_180619/forestdiffusion_model.joblib') diff --git a/timecost/n3/forestdiffusion/forest-n3-20260501_180619/forest-n3-3918-20260501_180740.csv b/timecost/n3/forestdiffusion/forest-n3-20260501_180619/forest-n3-3918-20260501_180740.csv new file mode 100644 index 0000000000000000000000000000000000000000..ace52e09254eecbde1a45736816e358a97ddde24 --- /dev/null +++ b/timecost/n3/forestdiffusion/forest-n3-20260501_180619/forest-n3-3918-20260501_180740.csv @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:0dc1c9e6161a7a3513fcbbfae9f79784fe424e8cdcbb3ea644bf6ae70f528826 +size 885780 diff --git a/timecost/n3/forestdiffusion/forest-n3-20260501_180619/forestdiffusion_model.joblib b/timecost/n3/forestdiffusion/forest-n3-20260501_180619/forestdiffusion_model.joblib new file mode 100644 index 0000000000000000000000000000000000000000..dab33bf8088b3dc6fa4a9faafe7fa22fa997e3db --- /dev/null +++ b/timecost/n3/forestdiffusion/forest-n3-20260501_180619/forestdiffusion_model.joblib @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:66e33e576edc1764bb9aa9241fd93cc76909c92d632f5f6ec59032c1077da881 +size 112963525 diff --git a/timecost/n3/forestdiffusion/forest-n3-20260501_180619/gen_20260501_180740.log b/timecost/n3/forestdiffusion/forest-n3-20260501_180619/gen_20260501_180740.log new file mode 100644 index 0000000000000000000000000000000000000000..b3f05143e2ba4c0228a38881e76584277577370d --- /dev/null +++ b/timecost/n3/forestdiffusion/forest-n3-20260501_180619/gen_20260501_180740.log @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:64470da0846551efa04a9c102196df00df47ef0fb56dda8937a30799fdcd3f94 +size 294 diff --git a/timecost/n3/forestdiffusion/forest-n3-20260501_180619/input_snapshot.json b/timecost/n3/forestdiffusion/forest-n3-20260501_180619/input_snapshot.json new file mode 100644 index 0000000000000000000000000000000000000000..1706b1e21e3ea594c0730d0ec7b58ca4e0d54ac2 --- /dev/null +++ b/timecost/n3/forestdiffusion/forest-n3-20260501_180619/input_snapshot.json @@ -0,0 +1,36 @@ +{ + "dataset_id": "n3", + "model": "forestdiffusion", + "inputs": { + "train_csv": { + "path": "/data/jialinzhang/SynthesizePipeline-server/DatasetNew/n3/n3-train.csv", + "exists": true, + "size": 211519, + "sha256": "2160a06db2fea02adb0ebb79d8d853bd2544580be301e71f6e8deeb1489a9009" + }, + "val_csv": { + "path": "/data/jialinzhang/SynthesizePipeline-server/DatasetNew/n3/n3-val.csv", + "exists": true, + "size": 26499, + "sha256": "d5ccfee07dfa9e7bdee5bb87642b43828e09f74c6cc0266a3d19d9feaa83106e" + }, + "test_csv": { + "path": "/data/jialinzhang/SynthesizePipeline-server/DatasetNew/n3/n3-test.csv", + "exists": true, + "size": 26676, + "sha256": "6f83aacb0d1747b95e287352a7fff5d9d65a1c127b773852346c68485c4ede47" + }, + "profile_json": { + "path": "/data/jialinzhang/SynthesizePipeline-server/DatasetNew/artifacts/data_core/tabular/n3/n3-dataset_profile.json", + "exists": true, + "size": 5235, + "sha256": "23d2e5904a2ca90cbf8d6e3c75887681721e9b90cc705c31a680c11513d0c46f" + }, + "contract_json": { + "path": "/data/jialinzhang/SynthesizePipeline-server/DatasetNew/artifacts/data_core/tabular/n3/n3-dataset_contract_v1.json", + "exists": true, + "size": 6281, + "sha256": "c0cc56f5fe28e1b65927255c6e3c2b0e9479862c2ec6f2fea1664da36c9a3a09" + } + } +} \ No newline at end of file diff --git a/timecost/n3/forestdiffusion/forest-n3-20260501_180619/models_fd/model.joblib b/timecost/n3/forestdiffusion/forest-n3-20260501_180619/models_fd/model.joblib new file mode 100644 index 0000000000000000000000000000000000000000..dab33bf8088b3dc6fa4a9faafe7fa22fa997e3db --- /dev/null +++ b/timecost/n3/forestdiffusion/forest-n3-20260501_180619/models_fd/model.joblib @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:66e33e576edc1764bb9aa9241fd93cc76909c92d632f5f6ec59032c1077da881 +size 112963525 diff --git a/timecost/n3/forestdiffusion/forest-n3-20260501_180619/public_gate/normalized_schema_snapshot.json b/timecost/n3/forestdiffusion/forest-n3-20260501_180619/public_gate/normalized_schema_snapshot.json new file mode 100644 index 0000000000000000000000000000000000000000..c41fe304503de23190a02e6cbfafa35b3bf134d3 --- /dev/null +++ b/timecost/n3/forestdiffusion/forest-n3-20260501_180619/public_gate/normalized_schema_snapshot.json @@ -0,0 +1,259 @@ +{ + "dataset_id": "n3", + "target_column": "quality", + "task_type": "classification", + "columns": [ + { + "name": "fixed acidity", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 66, + "unique_ratio": 0.016845, + "example_values": [ + "7.1", + "8.5", + "6.4", + "6.8", + "7.6" + ] + } + }, + { + "name": "volatile acidity", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 121, + "unique_ratio": 0.030883, + "example_values": [ + "0.31", + "0.21", + "0.24", + "0.43", + "0.27" + ] + } + }, + { + "name": "citric acid", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 85, + "unique_ratio": 0.021695, + "example_values": [ + "0.17", + "0.41", + "0.31", + "0.25", + "0.3" + ] + } + }, + { + "name": "residual sugar", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 296, + "unique_ratio": 0.075549, + "example_values": [ + "1", + "4.3", + "2.8", + "13", + "12.9" + ] + } + }, + { + "name": "chlorides", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 147, + "unique_ratio": 0.037519, + "example_values": [ + "0.042", + "0.036", + "0.038", + "0.047", + "0.033" + ] + } + }, + { + "name": "free sulfur dioxide", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 120, + "unique_ratio": 0.030628, + "example_values": [ + "21", + "24", + "41", + "43", + "69" + ] + } + }, + { + "name": "total sulfur dioxide", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 244, + "unique_ratio": 0.062277, + "example_values": [ + "144", + "99", + "114", + "132", + "160" + ] + } + }, + { + "name": "density", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 839, + "unique_ratio": 0.21414, + "example_values": [ + "0.99304", + "0.9947", + "0.99155", + "0.98975", + "0.99705" + ] + } + }, + { + "name": "pH", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 100, + "unique_ratio": 0.025523, + "example_values": [ + "3.13", + "3.18", + "3.37", + "3.21", + "3.16" + ] + } + }, + { + "name": "sulphates", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 78, + "unique_ratio": 0.019908, + "example_values": [ + "0.4", + "0.53", + "0.66", + "0.47", + "0.5" + ] + } + }, + { + "name": "alcohol", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 97, + "unique_ratio": 0.024758, + "example_values": [ + "9.6", + "9.7", + "11.7", + "13.4", + "8.8" + ] + } + }, + { + "name": "quality", + "role": "target", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 7, + "unique_ratio": 0.001787, + "example_values": [ + "5", + "6", + "7", + "8", + "3" + ] + } + } + ] +} \ No newline at end of file diff --git a/timecost/n3/forestdiffusion/forest-n3-20260501_180619/public_gate/public_gate_report.json b/timecost/n3/forestdiffusion/forest-n3-20260501_180619/public_gate/public_gate_report.json new file mode 100644 index 0000000000000000000000000000000000000000..93b97319f739e39079d6c6549fd2020f8a6dac25 --- /dev/null +++ b/timecost/n3/forestdiffusion/forest-n3-20260501_180619/public_gate/public_gate_report.json @@ -0,0 +1,37 @@ +{ + "dataset_id": "n3", + "status": "pass", + "checks": [ + { + "check_id": "PG001_csv_parse_ok", + "status": "pass" + }, + { + "check_id": "PG002_split_header_consistent", + "status": "pass" + }, + { + "check_id": "PG003_profile_header_match", + "status": "pass" + }, + { + "check_id": "PG004_missing_token_normalized", + "status": "pass" + }, + { + "check_id": "PG005_semantic_type_validated", + "status": "pass" + }, + { + "check_id": "PG006_target_defined_and_valid", + "status": "pass" + } + ], + "target_column": "quality", + "task_type": "classification", + "input_splits": { + "train": "/data/jialinzhang/SynthesizePipeline-server/DatasetNew/n3/n3-train.csv", + "val": "/data/jialinzhang/SynthesizePipeline-server/DatasetNew/n3/n3-val.csv", + "test": "/data/jialinzhang/SynthesizePipeline-server/DatasetNew/n3/n3-test.csv" + } +} \ No newline at end of file diff --git a/timecost/n3/forestdiffusion/forest-n3-20260501_180619/public_gate/staged_input_manifest.json b/timecost/n3/forestdiffusion/forest-n3-20260501_180619/public_gate/staged_input_manifest.json new file mode 100644 index 0000000000000000000000000000000000000000..b371bd9108aeac8b88d07a76a08645daf6c691bd --- /dev/null +++ b/timecost/n3/forestdiffusion/forest-n3-20260501_180619/public_gate/staged_input_manifest.json @@ -0,0 +1,264 @@ +{ + "dataset_id": "n3", + "target_column": "quality", + "task_type": "classification", + "train_csv": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/n3/forestdiffusion/forest-n3-20260501_180619/staged/public/train.csv", + "val_csv": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/n3/forestdiffusion/forest-n3-20260501_180619/staged/public/val.csv", + "test_csv": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/n3/forestdiffusion/forest-n3-20260501_180619/staged/public/test.csv", + "features_json": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/n3/forestdiffusion/forest-n3-20260501_180619/staged/public/staged_features.json", + "public_gate_report": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/n3/forestdiffusion/forest-n3-20260501_180619/public_gate/public_gate_report.json", + "column_schema": [ + { + "name": "fixed acidity", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 66, + "unique_ratio": 0.016845, + "example_values": [ + "7.1", + "8.5", + "6.4", + "6.8", + "7.6" + ] + } + }, + { + "name": "volatile acidity", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 121, + "unique_ratio": 0.030883, + "example_values": [ + "0.31", + "0.21", + "0.24", + "0.43", + "0.27" + ] + } + }, + { + "name": "citric acid", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 85, + "unique_ratio": 0.021695, + "example_values": [ + "0.17", + "0.41", + "0.31", + "0.25", + "0.3" + ] + } + }, + { + "name": "residual sugar", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 296, + "unique_ratio": 0.075549, + "example_values": [ + "1", + "4.3", + "2.8", + "13", + "12.9" + ] + } + }, + { + "name": "chlorides", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 147, + "unique_ratio": 0.037519, + "example_values": [ + "0.042", + "0.036", + "0.038", + "0.047", + "0.033" + ] + } + }, + { + "name": "free sulfur dioxide", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 120, + "unique_ratio": 0.030628, + "example_values": [ + "21", + "24", + "41", + "43", + "69" + ] + } + }, + { + "name": "total sulfur dioxide", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 244, + "unique_ratio": 0.062277, + "example_values": [ + "144", + "99", + "114", + "132", + "160" + ] + } + }, + { + "name": "density", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 839, + "unique_ratio": 0.21414, + "example_values": [ + "0.99304", + "0.9947", + "0.99155", + "0.98975", + "0.99705" + ] + } + }, + { + "name": "pH", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 100, + "unique_ratio": 0.025523, + "example_values": [ + "3.13", + "3.18", + "3.37", + "3.21", + "3.16" + ] + } + }, + { + "name": "sulphates", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 78, + "unique_ratio": 0.019908, + "example_values": [ + "0.4", + "0.53", + "0.66", + "0.47", + "0.5" + ] + } + }, + { + "name": "alcohol", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 97, + "unique_ratio": 0.024758, + "example_values": [ + "9.6", + "9.7", + "11.7", + "13.4", + "8.8" + ] + } + }, + { + "name": "quality", + "role": "target", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 7, + "unique_ratio": 0.001787, + "example_values": [ + "5", + "6", + "7", + "8", + "3" + ] + } + } + ] +} \ No newline at end of file diff --git a/timecost/n3/forestdiffusion/forest-n3-20260501_180619/runtime_result.json b/timecost/n3/forestdiffusion/forest-n3-20260501_180619/runtime_result.json new file mode 100644 index 0000000000000000000000000000000000000000..b7b696a05da273fdd4be3b61cea4ada3fa14bedc --- /dev/null +++ b/timecost/n3/forestdiffusion/forest-n3-20260501_180619/runtime_result.json @@ -0,0 +1,27 @@ +{ + "dataset_id": "n3", + "model": "forestdiffusion", + "run_id": "forest-n3-20260501_180619", + "public_gate_status": "pass", + "adapter_ready_status": "pass", + "train_status": "success", + "generate_status": "success", + "reason_code": null, + "reason_detail": null, + "artifacts": { + "synthetic_csv": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/n3/forestdiffusion/forest-n3-20260501_180619/forest-n3-3918-20260501_180740.csv", + "model_path": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/n3/forestdiffusion/forest-n3-20260501_180619/models_fd/model.joblib" + }, + "timings": { + "train": { + "started_at": "2026-05-01T18:06:19", + "ended_at": "2026-05-01T18:07:40", + "duration_sec": 81.321 + }, + "generate": { + "started_at": "2026-05-01T18:07:40", + "ended_at": "2026-05-01T18:07:44", + "duration_sec": 3.081 + } + } +} \ No newline at end of file diff --git a/timecost/n3/forestdiffusion/forest-n3-20260501_180619/staged/forestdiffusion/adapter_report.json b/timecost/n3/forestdiffusion/forest-n3-20260501_180619/staged/forestdiffusion/adapter_report.json new file mode 100644 index 0000000000000000000000000000000000000000..f79754373797f23c974d78b983ab877e3ffa71f0 --- /dev/null +++ b/timecost/n3/forestdiffusion/forest-n3-20260501_180619/staged/forestdiffusion/adapter_report.json @@ -0,0 +1,7 @@ +{ + "adapter_ready_status": "pass", + "adapter_fail_reason_code": null, + "adapter_fail_detail": null, + "adapter_transforms_applied": [], + "model_input_manifest": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/n3/forestdiffusion/forest-n3-20260501_180619/staged/forestdiffusion/model_input_manifest.json" +} \ No newline at end of file diff --git a/timecost/n3/forestdiffusion/forest-n3-20260501_180619/staged/forestdiffusion/adapter_transforms_applied.json b/timecost/n3/forestdiffusion/forest-n3-20260501_180619/staged/forestdiffusion/adapter_transforms_applied.json new file mode 100644 index 0000000000000000000000000000000000000000..0637a088a01e8ddab3bf3fa98dbe804cbde1a0dc --- /dev/null +++ b/timecost/n3/forestdiffusion/forest-n3-20260501_180619/staged/forestdiffusion/adapter_transforms_applied.json @@ -0,0 +1 @@ +[] \ No newline at end of file diff --git a/timecost/n3/forestdiffusion/forest-n3-20260501_180619/staged/forestdiffusion/model_input_manifest.json b/timecost/n3/forestdiffusion/forest-n3-20260501_180619/staged/forestdiffusion/model_input_manifest.json new file mode 100644 index 0000000000000000000000000000000000000000..56a8e53573020d2e21f74892b576e24117766c44 --- /dev/null +++ b/timecost/n3/forestdiffusion/forest-n3-20260501_180619/staged/forestdiffusion/model_input_manifest.json @@ -0,0 +1,266 @@ +{ + "dataset_id": "n3", + "model": "forestdiffusion", + "target_column": "quality", + "task_type": "classification", + "column_schema": [ + { + "name": "fixed acidity", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 66, + "unique_ratio": 0.016845, + "example_values": [ + "7.1", + "8.5", + "6.4", + "6.8", + "7.6" + ] + } + }, + { + "name": "volatile acidity", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 121, + "unique_ratio": 0.030883, + "example_values": [ + "0.31", + "0.21", + "0.24", + "0.43", + "0.27" + ] + } + }, + { + "name": "citric acid", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 85, + "unique_ratio": 0.021695, + "example_values": [ + "0.17", + "0.41", + "0.31", + "0.25", + "0.3" + ] + } + }, + { + "name": "residual sugar", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 296, + "unique_ratio": 0.075549, + "example_values": [ + "1", + "4.3", + "2.8", + "13", + "12.9" + ] + } + }, + { + "name": "chlorides", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 147, + "unique_ratio": 0.037519, + "example_values": [ + "0.042", + "0.036", + "0.038", + "0.047", + "0.033" + ] + } + }, + { + "name": "free sulfur dioxide", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 120, + "unique_ratio": 0.030628, + "example_values": [ + "21", + "24", + "41", + "43", + "69" + ] + } + }, + { + "name": "total sulfur dioxide", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 244, + "unique_ratio": 0.062277, + "example_values": [ + "144", + "99", + "114", + "132", + "160" + ] + } + }, + { + "name": "density", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 839, + "unique_ratio": 0.21414, + "example_values": [ + "0.99304", + "0.9947", + "0.99155", + "0.98975", + "0.99705" + ] + } + }, + { + "name": "pH", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 100, + "unique_ratio": 0.025523, + "example_values": [ + "3.13", + "3.18", + "3.37", + "3.21", + "3.16" + ] + } + }, + { + "name": "sulphates", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 78, + "unique_ratio": 0.019908, + "example_values": [ + "0.4", + "0.53", + "0.66", + "0.47", + "0.5" + ] + } + }, + { + "name": "alcohol", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 97, + "unique_ratio": 0.024758, + "example_values": [ + "9.6", + "9.7", + "11.7", + "13.4", + "8.8" + ] + } + }, + { + "name": "quality", + "role": "target", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 7, + "unique_ratio": 0.001787, + "example_values": [ + "5", + "6", + "7", + "8", + "3" + ] + } + } + ], + "public_manifest": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/n3/forestdiffusion/forest-n3-20260501_180619/public_gate/staged_input_manifest.json", + "train_csv": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/n3/forestdiffusion/forest-n3-20260501_180619/staged/public/train.csv", + "val_csv": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/n3/forestdiffusion/forest-n3-20260501_180619/staged/public/val.csv", + "test_csv": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/n3/forestdiffusion/forest-n3-20260501_180619/staged/public/test.csv", + "features_json": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/n3/forestdiffusion/forest-n3-20260501_180619/staged/public/staged_features.json", + "public_gate_report": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/n3/forestdiffusion/forest-n3-20260501_180619/public_gate/public_gate_report.json" +} \ No newline at end of file diff --git a/timecost/n3/forestdiffusion/forest-n3-20260501_180619/staged/public/staged_features.json b/timecost/n3/forestdiffusion/forest-n3-20260501_180619/staged/public/staged_features.json new file mode 100644 index 0000000000000000000000000000000000000000..08fe4d766d091d2f2ddba724a16b9509cbe4c390 --- /dev/null +++ b/timecost/n3/forestdiffusion/forest-n3-20260501_180619/staged/public/staged_features.json @@ -0,0 +1,62 @@ +[ + { + "feature_name": "fixed acidity", + "data_type": "continuous", + "is_target": false + }, + { + "feature_name": "volatile acidity", + "data_type": "continuous", + "is_target": false + }, + { + "feature_name": "citric acid", + "data_type": "continuous", + "is_target": false + }, + { + "feature_name": "residual sugar", + "data_type": "continuous", + "is_target": false + }, + { + "feature_name": "chlorides", + "data_type": "continuous", + "is_target": false + }, + { + "feature_name": "free sulfur dioxide", + "data_type": "continuous", + "is_target": false + }, + { + "feature_name": "total sulfur dioxide", + "data_type": "continuous", + "is_target": false + }, + { + "feature_name": "density", + "data_type": "continuous", + "is_target": false + }, + { + "feature_name": "pH", + "data_type": "continuous", + "is_target": false + }, + { + "feature_name": "sulphates", + "data_type": "continuous", + "is_target": false + }, + { + "feature_name": "alcohol", + "data_type": "continuous", + "is_target": false + }, + { + "feature_name": "quality", + "data_type": "continuous", + "is_target": true + } +] \ No newline at end of file diff --git a/timecost/n3/forestdiffusion/forest-n3-20260501_180619/staged/public/test.csv b/timecost/n3/forestdiffusion/forest-n3-20260501_180619/staged/public/test.csv new file mode 100644 index 0000000000000000000000000000000000000000..db5cd50d3746410ea470625fa2ba2c8e9775cc0d --- /dev/null +++ b/timecost/n3/forestdiffusion/forest-n3-20260501_180619/staged/public/test.csv @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:19e107152a94432e2a37ff045c00cfe35e1be30208b1553080d7dd0ede256d3b +size 28944 diff --git a/timecost/n3/forestdiffusion/forest-n3-20260501_180619/staged/public/train.csv b/timecost/n3/forestdiffusion/forest-n3-20260501_180619/staged/public/train.csv new file mode 100644 index 0000000000000000000000000000000000000000..87ca26726fe82ccbaa397919305b043c17eb374e --- /dev/null +++ b/timecost/n3/forestdiffusion/forest-n3-20260501_180619/staged/public/train.csv @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:7813c8cca73ba4bfc6559215257b341c21e459980ad17ae6ddc809306bc9a0b9 +size 229945 diff --git a/timecost/n3/forestdiffusion/forest-n3-20260501_180619/staged/public/val.csv b/timecost/n3/forestdiffusion/forest-n3-20260501_180619/staged/public/val.csv new file mode 100644 index 0000000000000000000000000000000000000000..6acf84c76c47093b513c46d5503972a2dff275c0 --- /dev/null +++ b/timecost/n3/forestdiffusion/forest-n3-20260501_180619/staged/public/val.csv @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:cf5979d9675567d9d6642640c9b84fc6c49e492604144723c30f50516c05cee6 +size 28791 diff --git a/timecost/n3/forestdiffusion/forest-n3-20260501_180619/train_20260501_180619.log b/timecost/n3/forestdiffusion/forest-n3-20260501_180619/train_20260501_180619.log new file mode 100644 index 0000000000000000000000000000000000000000..0464f0d70d3c967b0d38f25f0df44488dc0e7cea --- /dev/null +++ b/timecost/n3/forestdiffusion/forest-n3-20260501_180619/train_20260501_180619.log @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:a494d82a997b115693e70c8a009d03fedc7279358d60c5fd9681b744e7523b5d +size 423 diff --git a/timecost/n3/realtabformer/rtf-n3-20260501_010320/gen_20260501_011818.log b/timecost/n3/realtabformer/rtf-n3-20260501_010320/gen_20260501_011818.log new file mode 100644 index 0000000000000000000000000000000000000000..8db735f2e1c769d57ea2a12b6b8bf9bf6a9c4b0c --- /dev/null +++ b/timecost/n3/realtabformer/rtf-n3-20260501_010320/gen_20260501_011818.log @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:5d6f8f88af1c6bf193e23f3ba989829710440f6a8a2062af747267147cdfb6b1 +size 2560 diff --git a/timecost/n3/realtabformer/rtf-n3-20260501_010320/input_snapshot.json b/timecost/n3/realtabformer/rtf-n3-20260501_010320/input_snapshot.json new file mode 100644 index 0000000000000000000000000000000000000000..db9a330f8472dedc095e195fd3a6da0d66be3b17 --- /dev/null +++ b/timecost/n3/realtabformer/rtf-n3-20260501_010320/input_snapshot.json @@ -0,0 +1,36 @@ +{ + "dataset_id": "n3", + "model": "realtabformer", + "inputs": { + "train_csv": { + "path": "/data/jialinzhang/SynthesizePipeline-server/DatasetNew/n3/n3-train.csv", + "exists": true, + "size": 211519, + "sha256": "2160a06db2fea02adb0ebb79d8d853bd2544580be301e71f6e8deeb1489a9009" + }, + "val_csv": { + "path": "/data/jialinzhang/SynthesizePipeline-server/DatasetNew/n3/n3-val.csv", + "exists": true, + "size": 26499, + "sha256": "d5ccfee07dfa9e7bdee5bb87642b43828e09f74c6cc0266a3d19d9feaa83106e" + }, + "test_csv": { + "path": "/data/jialinzhang/SynthesizePipeline-server/DatasetNew/n3/n3-test.csv", + "exists": true, + "size": 26676, + "sha256": "6f83aacb0d1747b95e287352a7fff5d9d65a1c127b773852346c68485c4ede47" + }, + "profile_json": { + "path": "/data/jialinzhang/SynthesizePipeline-server/DatasetNew/artifacts/data_core/tabular/n3/n3-dataset_profile.json", + "exists": true, + "size": 5235, + "sha256": "23d2e5904a2ca90cbf8d6e3c75887681721e9b90cc705c31a680c11513d0c46f" + }, + "contract_json": { + "path": "/data/jialinzhang/SynthesizePipeline-server/DatasetNew/artifacts/data_core/tabular/n3/n3-dataset_contract_v1.json", + "exists": true, + "size": 6281, + "sha256": "c0cc56f5fe28e1b65927255c6e3c2b0e9479862c2ec6f2fea1664da36c9a3a09" + } + } +} \ No newline at end of file diff --git a/timecost/n3/realtabformer/rtf-n3-20260501_010320/models_100epochs/id000017775694963590322176/rtf_config.json b/timecost/n3/realtabformer/rtf-n3-20260501_010320/models_100epochs/id000017775694963590322176/rtf_config.json new file mode 100644 index 0000000000000000000000000000000000000000..1a655626b09a7e219eea69d851f6ac0bb0ad625b --- /dev/null +++ b/timecost/n3/realtabformer/rtf-n3-20260501_010320/models_100epochs/id000017775694963590322176/rtf_config.json @@ -0,0 +1 @@ +{"model_type": "tabular", "tabular_config": {"transformers_version": "5.5.3", "architectures": ["GPT2LMHeadModel"], "output_hidden_states": false, "return_dict": true, "dtype": "float32", "chunk_size_feed_forward": 0, "is_encoder_decoder": false, "id2label": {"0": "LABEL_0", "1": "LABEL_1"}, "label2id": {"LABEL_0": 0, "LABEL_1": 1}, "problem_type": null, "vocab_size": 304, "n_positions": 1024, "n_embd": 768, "n_layer": 6, "n_head": 12, "n_inner": null, "activation_function": "gelu_new", "resid_pdrop": 0.1, "embd_pdrop": 0.1, "attn_pdrop": 0.1, "layer_norm_epsilon": 1e-05, "initializer_range": 0.02, "summary_type": "cls_index", "summary_use_proj": true, "summary_activation": null, "summary_proj_to_labels": true, "summary_first_dropout": 0.1, "scale_attn_weights": true, "use_cache": false, "bos_token_id": 5, "eos_token_id": 6, "pad_token_id": null, "scale_attn_by_inverse_layer_idx": false, "reorder_and_upcast_attn": false, "add_cross_attention": false, "tie_word_embeddings": true, "_name_or_path": "", "model_type": "gpt2", "output_attentions": false}, "checkpoints_dir": "rtf_checkpoints", "samples_save_dir": "rtf_samples", "full_save_dir": "rtf_full_save", "epochs": 100, "batch_size": 8, "early_stopping_patience": 5, "early_stopping_threshold": 0, "training_args_kwargs": {"eval_strategy": "no", "output_dir": "rtf_checkpoints", "metric_for_best_model": "loss", "num_train_epochs": 100, "per_device_train_batch_size": 8, "per_device_eval_batch_size": 8, "gradient_accumulation_steps": 4, "remove_unused_columns": true, "logging_steps": 100, "save_steps": 100, "eval_steps": 100, "load_best_model_at_end": false, "save_total_limit": 6, "optim": "adamw_torch"}, "train_size": 1, "mask_rate": 0, "columns": ["fixed acidity", "volatile acidity", "citric acid", "residual sugar", "chlorides", "free sulfur dioxide", "total sulfur dioxide", "density", "pH", "sulphates", "alcohol", "quality"], "column_dtypes": {"fixed acidity": "float64", "volatile acidity": "float64", "citric acid": "float64", "residual sugar": "float64", "chlorides": "float64", "free sulfur dioxide": "float64", "total sulfur dioxide": "float64", "density": "float64", "pH": "float64", "sulphates": "float64", "alcohol": "float64", "quality": "int64"}, "column_has_missing": {"fixed acidity": false, "volatile acidity": false, "citric acid": false, "residual sugar": false, "chlorides": false, "free sulfur dioxide": false, "total sulfur dioxide": false, "density": false, "pH": false, "sulphates": false, "alcohol": false, "quality": false}, "drop_na_cols": ["fixed acidity", "volatile acidity", "citric acid", "residual sugar", "chlorides", "free sulfur dioxide", "total sulfur dioxide", "density", "pH", "sulphates", "alcohol", "quality"], "processed_columns": ["00___NUMERIC___fixed acidity_00", "00___NUMERIC___fixed acidity_01", "00___NUMERIC___fixed acidity_02", "00___NUMERIC___fixed acidity_03", "00___NUMERIC___fixed acidity_04", "01___NUMERIC___volatile acidity_00", "01___NUMERIC___volatile acidity_01", "01___NUMERIC___volatile acidity_02", "01___NUMERIC___volatile acidity_03", "01___NUMERIC___volatile acidity_04", "02___NUMERIC___citric acid_00", "02___NUMERIC___citric acid_01", "02___NUMERIC___citric acid_02", "02___NUMERIC___citric acid_03", "03___NUMERIC___residual sugar_00", "03___NUMERIC___residual sugar_01", "03___NUMERIC___residual sugar_02", "03___NUMERIC___residual sugar_03", "03___NUMERIC___residual sugar_04", "04___NUMERIC___chlorides_00", "04___NUMERIC___chlorides_01", "04___NUMERIC___chlorides_02", "04___NUMERIC___chlorides_03", "04___NUMERIC___chlorides_04", "05___NUMERIC___free sulfur dioxide_00", "05___NUMERIC___free sulfur dioxide_01", "05___NUMERIC___free sulfur dioxide_02", "05___NUMERIC___free sulfur dioxide_03", "05___NUMERIC___free sulfur dioxide_04", "06___NUMERIC___total sulfur dioxide_00", "06___NUMERIC___total sulfur dioxide_01", "06___NUMERIC___total sulfur dioxide_02", "06___NUMERIC___total sulfur dioxide_03", "06___NUMERIC___total sulfur dioxide_04", "07___NUMERIC___density_00", "07___NUMERIC___density_01", "07___NUMERIC___density_02", "07___NUMERIC___density_03", "07___NUMERIC___density_04", "07___NUMERIC___density_05", "08___NUMERIC___pH_00", "08___NUMERIC___pH_01", "08___NUMERIC___pH_02", "08___NUMERIC___pH_03", "09___NUMERIC___sulphates_00", "09___NUMERIC___sulphates_01", "09___NUMERIC___sulphates_02", "09___NUMERIC___sulphates_03", "10___NUMERIC___alcohol_00", "10___NUMERIC___alcohol_01", "10___NUMERIC___alcohol_02", "10___NUMERIC___alcohol_03", "10___NUMERIC___alcohol_04", "10___NUMERIC___alcohol_05", "10___NUMERIC___alcohol_06", "11___NUMERIC___quality_00"], "numeric_columns": ["fixed acidity", "volatile acidity", "citric acid", "residual sugar", "chlorides", "free sulfur dioxide", "total sulfur dioxide", "density", "pH", "sulphates", "alcohol", "quality"], "datetime_columns": [], "vocab": {"id2token": {"0": "[UNK]", "1": "[SEP]", "2": "[PAD]", "3": "[CLS]", "4": "[MASK]", "5": "[BOS]", "6": "[EOS]", "7": "[BMEM]", "8": "[EMEM]", "9": "[RMASK]", "10": "[SPTYPE]", "11": "00___NUMERIC___fixed acidity_00___0", "12": "00___NUMERIC___fixed acidity_00___1", "13": "00___NUMERIC___fixed acidity_01___0", "14": "00___NUMERIC___fixed acidity_01___1", "15": "00___NUMERIC___fixed acidity_01___3", "16": "00___NUMERIC___fixed acidity_01___4", "17": "00___NUMERIC___fixed acidity_01___5", "18": "00___NUMERIC___fixed acidity_01___6", "19": "00___NUMERIC___fixed acidity_01___7", "20": "00___NUMERIC___fixed acidity_01___8", "21": "00___NUMERIC___fixed acidity_01___9", "22": "00___NUMERIC___fixed acidity_02___.", "23": "00___NUMERIC___fixed acidity_03___0", "24": "00___NUMERIC___fixed acidity_03___1", "25": "00___NUMERIC___fixed acidity_03___2", "26": "00___NUMERIC___fixed acidity_03___3", "27": "00___NUMERIC___fixed acidity_03___4", "28": "00___NUMERIC___fixed acidity_03___5", "29": "00___NUMERIC___fixed acidity_03___6", "30": "00___NUMERIC___fixed acidity_03___7", "31": "00___NUMERIC___fixed acidity_03___8", "32": "00___NUMERIC___fixed acidity_03___9", "33": "00___NUMERIC___fixed acidity_04___0", "34": "00___NUMERIC___fixed acidity_04___5", "35": "01___NUMERIC___volatile acidity_00___0", "36": "01___NUMERIC___volatile acidity_00___1", "37": "01___NUMERIC___volatile acidity_01___.", "38": "01___NUMERIC___volatile acidity_02___0", "39": "01___NUMERIC___volatile acidity_02___1", "40": "01___NUMERIC___volatile acidity_02___2", "41": "01___NUMERIC___volatile acidity_02___3", "42": "01___NUMERIC___volatile acidity_02___4", "43": "01___NUMERIC___volatile acidity_02___5", "44": "01___NUMERIC___volatile acidity_02___6", "45": "01___NUMERIC___volatile acidity_02___7", "46": "01___NUMERIC___volatile acidity_02___8", "47": "01___NUMERIC___volatile acidity_02___9", "48": "01___NUMERIC___volatile acidity_03___0", "49": "01___NUMERIC___volatile acidity_03___1", "50": "01___NUMERIC___volatile acidity_03___2", "51": "01___NUMERIC___volatile acidity_03___3", "52": "01___NUMERIC___volatile acidity_03___4", "53": "01___NUMERIC___volatile acidity_03___5", "54": "01___NUMERIC___volatile acidity_03___6", "55": "01___NUMERIC___volatile acidity_03___7", "56": "01___NUMERIC___volatile acidity_03___8", "57": "01___NUMERIC___volatile acidity_03___9", "58": "01___NUMERIC___volatile acidity_04___0", "59": "01___NUMERIC___volatile acidity_04___5", "60": "02___NUMERIC___citric acid_00___0", "61": "02___NUMERIC___citric acid_00___1", "62": "02___NUMERIC___citric acid_01___.", "63": "02___NUMERIC___citric acid_02___0", "64": "02___NUMERIC___citric acid_02___1", "65": "02___NUMERIC___citric acid_02___2", "66": "02___NUMERIC___citric acid_02___3", "67": "02___NUMERIC___citric acid_02___4", "68": "02___NUMERIC___citric acid_02___5", "69": "02___NUMERIC___citric acid_02___6", "70": "02___NUMERIC___citric acid_02___7", "71": "02___NUMERIC___citric acid_02___8", "72": "02___NUMERIC___citric acid_02___9", "73": "02___NUMERIC___citric acid_03___0", "74": "02___NUMERIC___citric acid_03___1", "75": "02___NUMERIC___citric acid_03___2", "76": "02___NUMERIC___citric acid_03___3", "77": "02___NUMERIC___citric acid_03___4", "78": "02___NUMERIC___citric acid_03___5", "79": "02___NUMERIC___citric acid_03___6", "80": "02___NUMERIC___citric acid_03___7", "81": "02___NUMERIC___citric acid_03___8", "82": "02___NUMERIC___citric acid_03___9", "83": "03___NUMERIC___residual sugar_00___0", "84": "03___NUMERIC___residual sugar_00___1", "85": "03___NUMERIC___residual sugar_00___2", "86": "03___NUMERIC___residual sugar_00___3", "87": "03___NUMERIC___residual sugar_00___6", "88": "03___NUMERIC___residual sugar_01___0", "89": "03___NUMERIC___residual sugar_01___1", "90": "03___NUMERIC___residual sugar_01___2", "91": "03___NUMERIC___residual sugar_01___3", "92": "03___NUMERIC___residual sugar_01___4", "93": "03___NUMERIC___residual sugar_01___5", "94": "03___NUMERIC___residual sugar_01___6", "95": "03___NUMERIC___residual sugar_01___7", "96": "03___NUMERIC___residual sugar_01___8", "97": "03___NUMERIC___residual sugar_01___9", "98": "03___NUMERIC___residual sugar_02___.", "99": "03___NUMERIC___residual sugar_03___0", "100": "03___NUMERIC___residual sugar_03___1", "101": "03___NUMERIC___residual sugar_03___2", "102": "03___NUMERIC___residual sugar_03___3", "103": "03___NUMERIC___residual sugar_03___4", "104": "03___NUMERIC___residual sugar_03___5", "105": "03___NUMERIC___residual sugar_03___6", "106": "03___NUMERIC___residual sugar_03___7", "107": "03___NUMERIC___residual sugar_03___8", "108": "03___NUMERIC___residual sugar_03___9", "109": "03___NUMERIC___residual sugar_04___0", "110": "03___NUMERIC___residual sugar_04___5", "111": "04___NUMERIC___chlorides_00___0", "112": "04___NUMERIC___chlorides_01___.", "113": "04___NUMERIC___chlorides_02___0", "114": "04___NUMERIC___chlorides_02___1", "115": "04___NUMERIC___chlorides_02___2", "116": "04___NUMERIC___chlorides_02___3", "117": "04___NUMERIC___chlorides_03___0", "118": "04___NUMERIC___chlorides_03___1", "119": "04___NUMERIC___chlorides_03___2", "120": "04___NUMERIC___chlorides_03___3", "121": "04___NUMERIC___chlorides_03___4", "122": "04___NUMERIC___chlorides_03___5", "123": "04___NUMERIC___chlorides_03___6", "124": "04___NUMERIC___chlorides_03___7", "125": "04___NUMERIC___chlorides_03___8", "126": "04___NUMERIC___chlorides_03___9", "127": "04___NUMERIC___chlorides_04___0", "128": "04___NUMERIC___chlorides_04___1", "129": "04___NUMERIC___chlorides_04___2", "130": "04___NUMERIC___chlorides_04___3", "131": "04___NUMERIC___chlorides_04___4", "132": "04___NUMERIC___chlorides_04___5", "133": "04___NUMERIC___chlorides_04___6", "134": "04___NUMERIC___chlorides_04___7", "135": "04___NUMERIC___chlorides_04___8", "136": "04___NUMERIC___chlorides_04___9", "137": "05___NUMERIC___free sulfur dioxide_00___0", "138": "05___NUMERIC___free sulfur dioxide_00___1", "139": "05___NUMERIC___free sulfur dioxide_01___0", "140": "05___NUMERIC___free sulfur dioxide_01___1", "141": "05___NUMERIC___free sulfur dioxide_01___2", "142": "05___NUMERIC___free sulfur dioxide_01___3", "143": "05___NUMERIC___free sulfur dioxide_01___4", "144": "05___NUMERIC___free sulfur dioxide_01___5", "145": "05___NUMERIC___free sulfur dioxide_01___6", "146": "05___NUMERIC___free sulfur dioxide_01___7", "147": "05___NUMERIC___free sulfur dioxide_01___8", "148": "05___NUMERIC___free sulfur dioxide_01___9", "149": "05___NUMERIC___free sulfur dioxide_02___0", "150": "05___NUMERIC___free sulfur dioxide_02___1", "151": "05___NUMERIC___free sulfur dioxide_02___2", "152": "05___NUMERIC___free sulfur dioxide_02___3", "153": "05___NUMERIC___free sulfur dioxide_02___4", "154": "05___NUMERIC___free sulfur dioxide_02___5", "155": "05___NUMERIC___free sulfur dioxide_02___6", "156": "05___NUMERIC___free sulfur dioxide_02___7", "157": "05___NUMERIC___free sulfur dioxide_02___8", "158": "05___NUMERIC___free sulfur dioxide_02___9", "159": "05___NUMERIC___free sulfur dioxide_03___.", "160": "05___NUMERIC___free sulfur dioxide_04___0", "161": "05___NUMERIC___free sulfur dioxide_04___5", "162": "06___NUMERIC___total sulfur dioxide_00___0", "163": "06___NUMERIC___total sulfur dioxide_00___1", "164": "06___NUMERIC___total sulfur dioxide_00___2", "165": "06___NUMERIC___total sulfur dioxide_00___3", "166": "06___NUMERIC___total sulfur dioxide_01___0", "167": "06___NUMERIC___total sulfur dioxide_01___1", "168": "06___NUMERIC___total sulfur dioxide_01___2", "169": "06___NUMERIC___total sulfur dioxide_01___3", "170": "06___NUMERIC___total sulfur dioxide_01___4", "171": "06___NUMERIC___total sulfur dioxide_01___5", "172": "06___NUMERIC___total sulfur dioxide_01___6", "173": "06___NUMERIC___total sulfur dioxide_01___7", "174": "06___NUMERIC___total sulfur dioxide_01___8", "175": "06___NUMERIC___total sulfur dioxide_01___9", "176": "06___NUMERIC___total sulfur dioxide_02___0", "177": "06___NUMERIC___total sulfur dioxide_02___1", "178": "06___NUMERIC___total sulfur dioxide_02___2", "179": "06___NUMERIC___total sulfur dioxide_02___3", "180": "06___NUMERIC___total sulfur dioxide_02___4", "181": "06___NUMERIC___total sulfur dioxide_02___5", "182": "06___NUMERIC___total sulfur dioxide_02___6", "183": "06___NUMERIC___total sulfur dioxide_02___7", "184": "06___NUMERIC___total sulfur dioxide_02___8", "185": "06___NUMERIC___total sulfur dioxide_02___9", "186": "06___NUMERIC___total sulfur dioxide_03___.", "187": "06___NUMERIC___total sulfur dioxide_04___0", "188": "06___NUMERIC___total sulfur dioxide_04___5", "189": "07___NUMERIC___density_00___0", "190": "07___NUMERIC___density_00___1", "191": "07___NUMERIC___density_01___.", "192": "07___NUMERIC___density_02___0", "193": "07___NUMERIC___density_02___9", "194": "07___NUMERIC___density_03___0", "195": "07___NUMERIC___density_03___1", "196": "07___NUMERIC___density_03___3", "197": "07___NUMERIC___density_03___8", "198": "07___NUMERIC___density_03___9", "199": "07___NUMERIC___density_04___0", "200": "07___NUMERIC___density_04___1", "201": "07___NUMERIC___density_04___2", "202": "07___NUMERIC___density_04___3", "203": "07___NUMERIC___density_04___4", "204": "07___NUMERIC___density_04___5", "205": "07___NUMERIC___density_04___6", "206": "07___NUMERIC___density_04___7", "207": "07___NUMERIC___density_04___8", "208": "07___NUMERIC___density_04___9", "209": "07___NUMERIC___density_05___0", "210": "07___NUMERIC___density_05___1", "211": "07___NUMERIC___density_05___2", "212": "07___NUMERIC___density_05___3", "213": "07___NUMERIC___density_05___4", "214": "07___NUMERIC___density_05___5", "215": "07___NUMERIC___density_05___6", "216": "07___NUMERIC___density_05___7", "217": "07___NUMERIC___density_05___8", "218": "07___NUMERIC___density_05___9", "219": "08___NUMERIC___pH_00___2", "220": "08___NUMERIC___pH_00___3", "221": "08___NUMERIC___pH_01___.", "222": "08___NUMERIC___pH_02___0", "223": "08___NUMERIC___pH_02___1", "224": "08___NUMERIC___pH_02___2", "225": "08___NUMERIC___pH_02___3", "226": "08___NUMERIC___pH_02___4", "227": "08___NUMERIC___pH_02___5", "228": "08___NUMERIC___pH_02___6", "229": "08___NUMERIC___pH_02___7", "230": "08___NUMERIC___pH_02___8", "231": "08___NUMERIC___pH_02___9", "232": "08___NUMERIC___pH_03___0", "233": "08___NUMERIC___pH_03___1", "234": "08___NUMERIC___pH_03___2", "235": "08___NUMERIC___pH_03___3", "236": "08___NUMERIC___pH_03___4", "237": "08___NUMERIC___pH_03___5", "238": "08___NUMERIC___pH_03___6", "239": "08___NUMERIC___pH_03___7", "240": "08___NUMERIC___pH_03___8", "241": "08___NUMERIC___pH_03___9", "242": "09___NUMERIC___sulphates_00___0", "243": "09___NUMERIC___sulphates_00___1", "244": "09___NUMERIC___sulphates_01___.", "245": "09___NUMERIC___sulphates_02___0", "246": "09___NUMERIC___sulphates_02___2", "247": "09___NUMERIC___sulphates_02___3", "248": "09___NUMERIC___sulphates_02___4", "249": "09___NUMERIC___sulphates_02___5", "250": "09___NUMERIC___sulphates_02___6", "251": "09___NUMERIC___sulphates_02___7", "252": "09___NUMERIC___sulphates_02___8", "253": "09___NUMERIC___sulphates_02___9", "254": "09___NUMERIC___sulphates_03___0", "255": "09___NUMERIC___sulphates_03___1", "256": "09___NUMERIC___sulphates_03___2", "257": "09___NUMERIC___sulphates_03___3", "258": "09___NUMERIC___sulphates_03___4", "259": "09___NUMERIC___sulphates_03___5", "260": "09___NUMERIC___sulphates_03___6", "261": "09___NUMERIC___sulphates_03___7", "262": "09___NUMERIC___sulphates_03___8", "263": "09___NUMERIC___sulphates_03___9", "264": "10___NUMERIC___alcohol_00___0", "265": "10___NUMERIC___alcohol_00___1", "266": "10___NUMERIC___alcohol_01___0", "267": "10___NUMERIC___alcohol_01___1", "268": "10___NUMERIC___alcohol_01___2", "269": "10___NUMERIC___alcohol_01___3", "270": "10___NUMERIC___alcohol_01___4", "271": "10___NUMERIC___alcohol_01___8", "272": "10___NUMERIC___alcohol_01___9", "273": "10___NUMERIC___alcohol_02___.", "274": "10___NUMERIC___alcohol_03___0", "275": "10___NUMERIC___alcohol_03___1", "276": "10___NUMERIC___alcohol_03___2", "277": "10___NUMERIC___alcohol_03___3", "278": "10___NUMERIC___alcohol_03___4", "279": "10___NUMERIC___alcohol_03___5", "280": "10___NUMERIC___alcohol_03___6", "281": "10___NUMERIC___alcohol_03___7", "282": "10___NUMERIC___alcohol_03___8", "283": "10___NUMERIC___alcohol_03___9", "284": "10___NUMERIC___alcohol_04___0", "285": "10___NUMERIC___alcohol_04___3", "286": "10___NUMERIC___alcohol_04___4", "287": "10___NUMERIC___alcohol_04___5", "288": "10___NUMERIC___alcohol_04___6", "289": "10___NUMERIC___alcohol_04___8", "290": "10___NUMERIC___alcohol_04___9", "291": "10___NUMERIC___alcohol_05___0", "292": "10___NUMERIC___alcohol_05___3", "293": "10___NUMERIC___alcohol_05___6", "294": "10___NUMERIC___alcohol_06___0", "295": "10___NUMERIC___alcohol_06___3", "296": "10___NUMERIC___alcohol_06___7", "297": "11___NUMERIC___quality_00___3", "298": "11___NUMERIC___quality_00___4", "299": "11___NUMERIC___quality_00___5", "300": "11___NUMERIC___quality_00___6", "301": "11___NUMERIC___quality_00___7", "302": "11___NUMERIC___quality_00___8", "303": "11___NUMERIC___quality_00___9"}, "token2id": {"[UNK]": 0, "[SEP]": 1, "[PAD]": 2, "[CLS]": 3, "[MASK]": 4, "[BOS]": 5, "[EOS]": 6, "[BMEM]": 7, "[EMEM]": 8, "[RMASK]": 9, "[SPTYPE]": 10, "00___NUMERIC___fixed acidity_00___0": 11, "00___NUMERIC___fixed acidity_00___1": 12, "00___NUMERIC___fixed acidity_01___0": 13, "00___NUMERIC___fixed acidity_01___1": 14, "00___NUMERIC___fixed acidity_01___3": 15, "00___NUMERIC___fixed acidity_01___4": 16, "00___NUMERIC___fixed acidity_01___5": 17, "00___NUMERIC___fixed acidity_01___6": 18, "00___NUMERIC___fixed acidity_01___7": 19, "00___NUMERIC___fixed acidity_01___8": 20, "00___NUMERIC___fixed acidity_01___9": 21, "00___NUMERIC___fixed acidity_02___.": 22, "00___NUMERIC___fixed acidity_03___0": 23, "00___NUMERIC___fixed acidity_03___1": 24, "00___NUMERIC___fixed acidity_03___2": 25, "00___NUMERIC___fixed acidity_03___3": 26, "00___NUMERIC___fixed acidity_03___4": 27, "00___NUMERIC___fixed acidity_03___5": 28, "00___NUMERIC___fixed acidity_03___6": 29, "00___NUMERIC___fixed acidity_03___7": 30, "00___NUMERIC___fixed acidity_03___8": 31, "00___NUMERIC___fixed acidity_03___9": 32, "00___NUMERIC___fixed acidity_04___0": 33, "00___NUMERIC___fixed acidity_04___5": 34, "01___NUMERIC___volatile acidity_00___0": 35, "01___NUMERIC___volatile acidity_00___1": 36, "01___NUMERIC___volatile acidity_01___.": 37, "01___NUMERIC___volatile acidity_02___0": 38, "01___NUMERIC___volatile acidity_02___1": 39, "01___NUMERIC___volatile acidity_02___2": 40, "01___NUMERIC___volatile acidity_02___3": 41, "01___NUMERIC___volatile acidity_02___4": 42, "01___NUMERIC___volatile acidity_02___5": 43, "01___NUMERIC___volatile acidity_02___6": 44, "01___NUMERIC___volatile acidity_02___7": 45, "01___NUMERIC___volatile acidity_02___8": 46, "01___NUMERIC___volatile acidity_02___9": 47, "01___NUMERIC___volatile acidity_03___0": 48, "01___NUMERIC___volatile acidity_03___1": 49, "01___NUMERIC___volatile acidity_03___2": 50, "01___NUMERIC___volatile acidity_03___3": 51, "01___NUMERIC___volatile acidity_03___4": 52, "01___NUMERIC___volatile acidity_03___5": 53, "01___NUMERIC___volatile acidity_03___6": 54, "01___NUMERIC___volatile acidity_03___7": 55, "01___NUMERIC___volatile acidity_03___8": 56, "01___NUMERIC___volatile acidity_03___9": 57, "01___NUMERIC___volatile acidity_04___0": 58, "01___NUMERIC___volatile acidity_04___5": 59, "02___NUMERIC___citric acid_00___0": 60, "02___NUMERIC___citric acid_00___1": 61, "02___NUMERIC___citric acid_01___.": 62, "02___NUMERIC___citric acid_02___0": 63, "02___NUMERIC___citric acid_02___1": 64, "02___NUMERIC___citric acid_02___2": 65, "02___NUMERIC___citric acid_02___3": 66, "02___NUMERIC___citric acid_02___4": 67, "02___NUMERIC___citric acid_02___5": 68, "02___NUMERIC___citric acid_02___6": 69, "02___NUMERIC___citric acid_02___7": 70, "02___NUMERIC___citric acid_02___8": 71, "02___NUMERIC___citric acid_02___9": 72, "02___NUMERIC___citric acid_03___0": 73, "02___NUMERIC___citric acid_03___1": 74, "02___NUMERIC___citric acid_03___2": 75, "02___NUMERIC___citric acid_03___3": 76, "02___NUMERIC___citric acid_03___4": 77, "02___NUMERIC___citric acid_03___5": 78, "02___NUMERIC___citric acid_03___6": 79, "02___NUMERIC___citric acid_03___7": 80, "02___NUMERIC___citric acid_03___8": 81, "02___NUMERIC___citric acid_03___9": 82, "03___NUMERIC___residual sugar_00___0": 83, "03___NUMERIC___residual sugar_00___1": 84, "03___NUMERIC___residual sugar_00___2": 85, "03___NUMERIC___residual sugar_00___3": 86, "03___NUMERIC___residual sugar_00___6": 87, "03___NUMERIC___residual sugar_01___0": 88, "03___NUMERIC___residual sugar_01___1": 89, "03___NUMERIC___residual sugar_01___2": 90, "03___NUMERIC___residual sugar_01___3": 91, "03___NUMERIC___residual sugar_01___4": 92, "03___NUMERIC___residual sugar_01___5": 93, "03___NUMERIC___residual sugar_01___6": 94, "03___NUMERIC___residual sugar_01___7": 95, "03___NUMERIC___residual sugar_01___8": 96, "03___NUMERIC___residual sugar_01___9": 97, "03___NUMERIC___residual sugar_02___.": 98, "03___NUMERIC___residual sugar_03___0": 99, "03___NUMERIC___residual sugar_03___1": 100, "03___NUMERIC___residual sugar_03___2": 101, "03___NUMERIC___residual sugar_03___3": 102, "03___NUMERIC___residual sugar_03___4": 103, "03___NUMERIC___residual sugar_03___5": 104, "03___NUMERIC___residual sugar_03___6": 105, "03___NUMERIC___residual sugar_03___7": 106, "03___NUMERIC___residual sugar_03___8": 107, "03___NUMERIC___residual sugar_03___9": 108, "03___NUMERIC___residual sugar_04___0": 109, "03___NUMERIC___residual sugar_04___5": 110, "04___NUMERIC___chlorides_00___0": 111, "04___NUMERIC___chlorides_01___.": 112, "04___NUMERIC___chlorides_02___0": 113, "04___NUMERIC___chlorides_02___1": 114, "04___NUMERIC___chlorides_02___2": 115, "04___NUMERIC___chlorides_02___3": 116, "04___NUMERIC___chlorides_03___0": 117, "04___NUMERIC___chlorides_03___1": 118, "04___NUMERIC___chlorides_03___2": 119, "04___NUMERIC___chlorides_03___3": 120, "04___NUMERIC___chlorides_03___4": 121, "04___NUMERIC___chlorides_03___5": 122, "04___NUMERIC___chlorides_03___6": 123, "04___NUMERIC___chlorides_03___7": 124, "04___NUMERIC___chlorides_03___8": 125, "04___NUMERIC___chlorides_03___9": 126, "04___NUMERIC___chlorides_04___0": 127, "04___NUMERIC___chlorides_04___1": 128, "04___NUMERIC___chlorides_04___2": 129, "04___NUMERIC___chlorides_04___3": 130, "04___NUMERIC___chlorides_04___4": 131, "04___NUMERIC___chlorides_04___5": 132, "04___NUMERIC___chlorides_04___6": 133, "04___NUMERIC___chlorides_04___7": 134, "04___NUMERIC___chlorides_04___8": 135, "04___NUMERIC___chlorides_04___9": 136, "05___NUMERIC___free sulfur dioxide_00___0": 137, "05___NUMERIC___free sulfur dioxide_00___1": 138, "05___NUMERIC___free sulfur dioxide_01___0": 139, "05___NUMERIC___free sulfur dioxide_01___1": 140, "05___NUMERIC___free sulfur dioxide_01___2": 141, "05___NUMERIC___free sulfur dioxide_01___3": 142, "05___NUMERIC___free sulfur dioxide_01___4": 143, "05___NUMERIC___free sulfur dioxide_01___5": 144, "05___NUMERIC___free sulfur dioxide_01___6": 145, "05___NUMERIC___free sulfur dioxide_01___7": 146, "05___NUMERIC___free sulfur dioxide_01___8": 147, "05___NUMERIC___free sulfur dioxide_01___9": 148, "05___NUMERIC___free sulfur dioxide_02___0": 149, "05___NUMERIC___free sulfur dioxide_02___1": 150, "05___NUMERIC___free sulfur dioxide_02___2": 151, "05___NUMERIC___free sulfur dioxide_02___3": 152, "05___NUMERIC___free sulfur dioxide_02___4": 153, "05___NUMERIC___free sulfur dioxide_02___5": 154, "05___NUMERIC___free sulfur dioxide_02___6": 155, "05___NUMERIC___free sulfur dioxide_02___7": 156, "05___NUMERIC___free sulfur dioxide_02___8": 157, "05___NUMERIC___free sulfur dioxide_02___9": 158, "05___NUMERIC___free sulfur dioxide_03___.": 159, "05___NUMERIC___free sulfur dioxide_04___0": 160, "05___NUMERIC___free sulfur dioxide_04___5": 161, "06___NUMERIC___total sulfur dioxide_00___0": 162, "06___NUMERIC___total sulfur dioxide_00___1": 163, "06___NUMERIC___total sulfur dioxide_00___2": 164, "06___NUMERIC___total sulfur dioxide_00___3": 165, "06___NUMERIC___total sulfur dioxide_01___0": 166, "06___NUMERIC___total sulfur dioxide_01___1": 167, "06___NUMERIC___total sulfur dioxide_01___2": 168, "06___NUMERIC___total sulfur dioxide_01___3": 169, "06___NUMERIC___total sulfur dioxide_01___4": 170, "06___NUMERIC___total sulfur dioxide_01___5": 171, "06___NUMERIC___total sulfur dioxide_01___6": 172, "06___NUMERIC___total sulfur dioxide_01___7": 173, "06___NUMERIC___total sulfur dioxide_01___8": 174, "06___NUMERIC___total sulfur dioxide_01___9": 175, "06___NUMERIC___total sulfur dioxide_02___0": 176, "06___NUMERIC___total sulfur dioxide_02___1": 177, "06___NUMERIC___total sulfur dioxide_02___2": 178, "06___NUMERIC___total sulfur dioxide_02___3": 179, "06___NUMERIC___total sulfur dioxide_02___4": 180, "06___NUMERIC___total sulfur dioxide_02___5": 181, "06___NUMERIC___total sulfur dioxide_02___6": 182, "06___NUMERIC___total sulfur dioxide_02___7": 183, "06___NUMERIC___total sulfur dioxide_02___8": 184, "06___NUMERIC___total sulfur dioxide_02___9": 185, "06___NUMERIC___total sulfur dioxide_03___.": 186, "06___NUMERIC___total sulfur dioxide_04___0": 187, "06___NUMERIC___total sulfur dioxide_04___5": 188, "07___NUMERIC___density_00___0": 189, "07___NUMERIC___density_00___1": 190, "07___NUMERIC___density_01___.": 191, "07___NUMERIC___density_02___0": 192, "07___NUMERIC___density_02___9": 193, "07___NUMERIC___density_03___0": 194, "07___NUMERIC___density_03___1": 195, "07___NUMERIC___density_03___3": 196, "07___NUMERIC___density_03___8": 197, "07___NUMERIC___density_03___9": 198, "07___NUMERIC___density_04___0": 199, "07___NUMERIC___density_04___1": 200, "07___NUMERIC___density_04___2": 201, "07___NUMERIC___density_04___3": 202, "07___NUMERIC___density_04___4": 203, "07___NUMERIC___density_04___5": 204, "07___NUMERIC___density_04___6": 205, "07___NUMERIC___density_04___7": 206, "07___NUMERIC___density_04___8": 207, "07___NUMERIC___density_04___9": 208, "07___NUMERIC___density_05___0": 209, "07___NUMERIC___density_05___1": 210, "07___NUMERIC___density_05___2": 211, "07___NUMERIC___density_05___3": 212, "07___NUMERIC___density_05___4": 213, "07___NUMERIC___density_05___5": 214, "07___NUMERIC___density_05___6": 215, "07___NUMERIC___density_05___7": 216, "07___NUMERIC___density_05___8": 217, "07___NUMERIC___density_05___9": 218, "08___NUMERIC___pH_00___2": 219, "08___NUMERIC___pH_00___3": 220, "08___NUMERIC___pH_01___.": 221, "08___NUMERIC___pH_02___0": 222, "08___NUMERIC___pH_02___1": 223, "08___NUMERIC___pH_02___2": 224, "08___NUMERIC___pH_02___3": 225, "08___NUMERIC___pH_02___4": 226, "08___NUMERIC___pH_02___5": 227, "08___NUMERIC___pH_02___6": 228, "08___NUMERIC___pH_02___7": 229, "08___NUMERIC___pH_02___8": 230, "08___NUMERIC___pH_02___9": 231, "08___NUMERIC___pH_03___0": 232, "08___NUMERIC___pH_03___1": 233, "08___NUMERIC___pH_03___2": 234, "08___NUMERIC___pH_03___3": 235, "08___NUMERIC___pH_03___4": 236, "08___NUMERIC___pH_03___5": 237, "08___NUMERIC___pH_03___6": 238, "08___NUMERIC___pH_03___7": 239, "08___NUMERIC___pH_03___8": 240, "08___NUMERIC___pH_03___9": 241, "09___NUMERIC___sulphates_00___0": 242, "09___NUMERIC___sulphates_00___1": 243, "09___NUMERIC___sulphates_01___.": 244, "09___NUMERIC___sulphates_02___0": 245, "09___NUMERIC___sulphates_02___2": 246, "09___NUMERIC___sulphates_02___3": 247, "09___NUMERIC___sulphates_02___4": 248, "09___NUMERIC___sulphates_02___5": 249, "09___NUMERIC___sulphates_02___6": 250, "09___NUMERIC___sulphates_02___7": 251, "09___NUMERIC___sulphates_02___8": 252, "09___NUMERIC___sulphates_02___9": 253, "09___NUMERIC___sulphates_03___0": 254, "09___NUMERIC___sulphates_03___1": 255, "09___NUMERIC___sulphates_03___2": 256, "09___NUMERIC___sulphates_03___3": 257, "09___NUMERIC___sulphates_03___4": 258, "09___NUMERIC___sulphates_03___5": 259, "09___NUMERIC___sulphates_03___6": 260, "09___NUMERIC___sulphates_03___7": 261, "09___NUMERIC___sulphates_03___8": 262, "09___NUMERIC___sulphates_03___9": 263, "10___NUMERIC___alcohol_00___0": 264, "10___NUMERIC___alcohol_00___1": 265, "10___NUMERIC___alcohol_01___0": 266, "10___NUMERIC___alcohol_01___1": 267, "10___NUMERIC___alcohol_01___2": 268, "10___NUMERIC___alcohol_01___3": 269, "10___NUMERIC___alcohol_01___4": 270, "10___NUMERIC___alcohol_01___8": 271, "10___NUMERIC___alcohol_01___9": 272, "10___NUMERIC___alcohol_02___.": 273, "10___NUMERIC___alcohol_03___0": 274, "10___NUMERIC___alcohol_03___1": 275, "10___NUMERIC___alcohol_03___2": 276, "10___NUMERIC___alcohol_03___3": 277, "10___NUMERIC___alcohol_03___4": 278, "10___NUMERIC___alcohol_03___5": 279, "10___NUMERIC___alcohol_03___6": 280, "10___NUMERIC___alcohol_03___7": 281, "10___NUMERIC___alcohol_03___8": 282, "10___NUMERIC___alcohol_03___9": 283, "10___NUMERIC___alcohol_04___0": 284, "10___NUMERIC___alcohol_04___3": 285, "10___NUMERIC___alcohol_04___4": 286, "10___NUMERIC___alcohol_04___5": 287, "10___NUMERIC___alcohol_04___6": 288, "10___NUMERIC___alcohol_04___8": 289, "10___NUMERIC___alcohol_04___9": 290, "10___NUMERIC___alcohol_05___0": 291, "10___NUMERIC___alcohol_05___3": 292, "10___NUMERIC___alcohol_05___6": 293, "10___NUMERIC___alcohol_06___0": 294, "10___NUMERIC___alcohol_06___3": 295, "10___NUMERIC___alcohol_06___7": 296, "11___NUMERIC___quality_00___3": 297, "11___NUMERIC___quality_00___4": 298, "11___NUMERIC___quality_00___5": 299, "11___NUMERIC___quality_00___6": 300, "11___NUMERIC___quality_00___7": 301, "11___NUMERIC___quality_00___8": 302, "11___NUMERIC___quality_00___9": 303}, "column_token_ids": {"00___NUMERIC___fixed acidity_00": [11, 12], "00___NUMERIC___fixed acidity_01": [13, 14, 15, 16, 17, 18, 19, 20, 21], "00___NUMERIC___fixed acidity_02": [22], "00___NUMERIC___fixed acidity_03": [23, 24, 25, 26, 27, 28, 29, 30, 31, 32], "00___NUMERIC___fixed acidity_04": [33, 34], "01___NUMERIC___volatile acidity_00": [35, 36], "01___NUMERIC___volatile acidity_01": [37], "01___NUMERIC___volatile acidity_02": [38, 39, 40, 41, 42, 43, 44, 45, 46, 47], "01___NUMERIC___volatile acidity_03": [48, 49, 50, 51, 52, 53, 54, 55, 56, 57], "01___NUMERIC___volatile acidity_04": [58, 59], "02___NUMERIC___citric acid_00": [60, 61], "02___NUMERIC___citric acid_01": [62], "02___NUMERIC___citric acid_02": [63, 64, 65, 66, 67, 68, 69, 70, 71, 72], "02___NUMERIC___citric acid_03": [73, 74, 75, 76, 77, 78, 79, 80, 81, 82], "03___NUMERIC___residual sugar_00": [83, 84, 85, 86, 87], "03___NUMERIC___residual sugar_01": [88, 89, 90, 91, 92, 93, 94, 95, 96, 97], "03___NUMERIC___residual sugar_02": [98], "03___NUMERIC___residual sugar_03": [99, 100, 101, 102, 103, 104, 105, 106, 107, 108], "03___NUMERIC___residual sugar_04": [109, 110], "04___NUMERIC___chlorides_00": [111], "04___NUMERIC___chlorides_01": [112], "04___NUMERIC___chlorides_02": [113, 114, 115, 116], "04___NUMERIC___chlorides_03": [117, 118, 119, 120, 121, 122, 123, 124, 125, 126], "04___NUMERIC___chlorides_04": [127, 128, 129, 130, 131, 132, 133, 134, 135, 136], "05___NUMERIC___free sulfur dioxide_00": [137, 138], "05___NUMERIC___free sulfur dioxide_01": [139, 140, 141, 142, 143, 144, 145, 146, 147, 148], "05___NUMERIC___free sulfur dioxide_02": [149, 150, 151, 152, 153, 154, 155, 156, 157, 158], "05___NUMERIC___free sulfur dioxide_03": [159], "05___NUMERIC___free sulfur dioxide_04": [160, 161], "06___NUMERIC___total sulfur dioxide_00": [162, 163, 164, 165], "06___NUMERIC___total sulfur dioxide_01": [166, 167, 168, 169, 170, 171, 172, 173, 174, 175], "06___NUMERIC___total sulfur dioxide_02": [176, 177, 178, 179, 180, 181, 182, 183, 184, 185], "06___NUMERIC___total sulfur dioxide_03": [186], "06___NUMERIC___total sulfur dioxide_04": [187, 188], "07___NUMERIC___density_00": [189, 190], "07___NUMERIC___density_01": [191], "07___NUMERIC___density_02": [192, 193], "07___NUMERIC___density_03": [194, 195, 196, 197, 198], "07___NUMERIC___density_04": [199, 200, 201, 202, 203, 204, 205, 206, 207, 208], "07___NUMERIC___density_05": [209, 210, 211, 212, 213, 214, 215, 216, 217, 218], "08___NUMERIC___pH_00": [219, 220], "08___NUMERIC___pH_01": [221], "08___NUMERIC___pH_02": [222, 223, 224, 225, 226, 227, 228, 229, 230, 231], "08___NUMERIC___pH_03": [232, 233, 234, 235, 236, 237, 238, 239, 240, 241], "09___NUMERIC___sulphates_00": [242, 243], "09___NUMERIC___sulphates_01": [244], "09___NUMERIC___sulphates_02": [245, 246, 247, 248, 249, 250, 251, 252, 253], "09___NUMERIC___sulphates_03": [254, 255, 256, 257, 258, 259, 260, 261, 262, 263], "10___NUMERIC___alcohol_00": [264, 265], "10___NUMERIC___alcohol_01": [266, 267, 268, 269, 270, 271, 272], "10___NUMERIC___alcohol_02": [273], "10___NUMERIC___alcohol_03": [274, 275, 276, 277, 278, 279, 280, 281, 282, 283], "10___NUMERIC___alcohol_04": [284, 285, 286, 287, 288, 289, 290], "10___NUMERIC___alcohol_05": [291, 292, 293], "10___NUMERIC___alcohol_06": [294, 295, 296], "11___NUMERIC___quality_00": [297, 298, 299, 300, 301, 302, 303]}}, "tabular_max_length": 58, "relational_max_length": null, "tabular_col_size": 3918, "relational_col_size": null, "col_transform_data": {"fixed acidity": {"max_len": 10, "numeric_precision": 4, "mx_sig": 2, "ljust": 5, "numeric_nparts": 1}, "volatile acidity": {"max_len": 10, "numeric_precision": 4, "mx_sig": 1, "ljust": 5, "numeric_nparts": 1}, "citric acid": {"max_len": 10, "numeric_precision": 4, "mx_sig": 1, "ljust": 4, "numeric_nparts": 1}, "residual sugar": {"max_len": 10, "numeric_precision": 4, "mx_sig": 2, "ljust": 5, "numeric_nparts": 1}, "chlorides": {"max_len": 10, "numeric_precision": 4, "mx_sig": 1, "ljust": 5, "numeric_nparts": 1}, "free sulfur dioxide": {"max_len": 10, "numeric_precision": 4, "mx_sig": 3, "ljust": 5, "numeric_nparts": 1}, "total sulfur dioxide": {"max_len": 10, "numeric_precision": 4, "mx_sig": 3, "ljust": 5, "numeric_nparts": 1}, "density": {"max_len": 10, "numeric_precision": 4, "mx_sig": 1, "ljust": 6, "numeric_nparts": 1}, "pH": {"max_len": 10, "numeric_precision": 4, "mx_sig": 1, "ljust": 4, "numeric_nparts": 1}, "sulphates": {"max_len": 10, "numeric_precision": 4, "mx_sig": 1, "ljust": 4, "numeric_nparts": 1}, "alcohol": {"max_len": 10, "numeric_precision": 4, "mx_sig": 2, "ljust": 7, "numeric_nparts": 1}, "quality": {"max_len": 10, "numeric_precision": 4, "mx_sig": -1, "zfill": 1, "numeric_nparts": 1}}, "in_col_transform_data": null, "col_idx_ids": {"0": [11, 12], "1": [13, 14, 15, 16, 17, 18, 19, 20, 21], "2": [22], "3": [23, 24, 25, 26, 27, 28, 29, 30, 31, 32], "4": [33, 34], "5": [35, 36], "6": [37], "7": [38, 39, 40, 41, 42, 43, 44, 45, 46, 47], "8": [48, 49, 50, 51, 52, 53, 54, 55, 56, 57], "9": [58, 59], "10": [60, 61], "11": [62], "12": [63, 64, 65, 66, 67, 68, 69, 70, 71, 72], "13": [73, 74, 75, 76, 77, 78, 79, 80, 81, 82], "14": [83, 84, 85, 86, 87], "15": [88, 89, 90, 91, 92, 93, 94, 95, 96, 97], "16": [98], "17": [99, 100, 101, 102, 103, 104, 105, 106, 107, 108], "18": [109, 110], "19": [111], "20": [112], "21": [113, 114, 115, 116], "22": [117, 118, 119, 120, 121, 122, 123, 124, 125, 126], "23": [127, 128, 129, 130, 131, 132, 133, 134, 135, 136], "24": [137, 138], "25": [139, 140, 141, 142, 143, 144, 145, 146, 147, 148], "26": [149, 150, 151, 152, 153, 154, 155, 156, 157, 158], "27": [159], "28": [160, 161], "29": [162, 163, 164, 165], "30": [166, 167, 168, 169, 170, 171, 172, 173, 174, 175], "31": [176, 177, 178, 179, 180, 181, 182, 183, 184, 185], "32": [186], "33": [187, 188], "34": [189, 190], "35": [191], "36": [192, 193], "37": [194, 195, 196, 197, 198], "38": [199, 200, 201, 202, 203, 204, 205, 206, 207, 208], "39": [209, 210, 211, 212, 213, 214, 215, 216, 217, 218], "40": [219, 220], "41": [221], "42": [222, 223, 224, 225, 226, 227, 228, 229, 230, 231], "43": [232, 233, 234, 235, 236, 237, 238, 239, 240, 241], "44": [242, 243], "45": [244], "46": [245, 246, 247, 248, 249, 250, 251, 252, 253], "47": [254, 255, 256, 257, 258, 259, 260, 261, 262, 263], "48": [264, 265], "49": [266, 267, 268, 269, 270, 271, 272], "50": [273], "51": [274, 275, 276, 277, 278, 279, 280, 281, 282, 283], "52": [284, 285, 286, 287, 288, 289, 290], "53": [291, 292, 293], "54": [294, 295, 296], "55": [297, 298, 299, 300, 301, 302, 303]}, "random_state": 1029, "numeric_nparts": 1, "numeric_precision": 4, "numeric_max_len": 10, "experiment_id": "id000017775694963590322176", "trainer_state": null, "target_col": null, "realtabformer_version": "0.2.4"} \ No newline at end of file diff --git a/timecost/n3/realtabformer/rtf-n3-20260501_010320/models_100epochs/id000017775694963590322176/rtf_model.pt b/timecost/n3/realtabformer/rtf-n3-20260501_010320/models_100epochs/id000017775694963590322176/rtf_model.pt new file mode 100644 index 0000000000000000000000000000000000000000..ec7b576f571e7debed8a25488a3c5004cd81a8ea --- /dev/null +++ b/timecost/n3/realtabformer/rtf-n3-20260501_010320/models_100epochs/id000017775694963590322176/rtf_model.pt @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:0f5f458764fbaba95bf6f361bd5eab22917d5af79400fddfc210ff3a89d871f0 +size 174223843 diff --git a/timecost/n3/realtabformer/rtf-n3-20260501_010320/public_gate/normalized_schema_snapshot.json b/timecost/n3/realtabformer/rtf-n3-20260501_010320/public_gate/normalized_schema_snapshot.json new file mode 100644 index 0000000000000000000000000000000000000000..c41fe304503de23190a02e6cbfafa35b3bf134d3 --- /dev/null +++ b/timecost/n3/realtabformer/rtf-n3-20260501_010320/public_gate/normalized_schema_snapshot.json @@ -0,0 +1,259 @@ +{ + "dataset_id": "n3", + "target_column": "quality", + "task_type": "classification", + "columns": [ + { + "name": "fixed acidity", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 66, + "unique_ratio": 0.016845, + "example_values": [ + "7.1", + "8.5", + "6.4", + "6.8", + "7.6" + ] + } + }, + { + "name": "volatile acidity", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 121, + "unique_ratio": 0.030883, + "example_values": [ + "0.31", + "0.21", + "0.24", + "0.43", + "0.27" + ] + } + }, + { + "name": "citric acid", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 85, + "unique_ratio": 0.021695, + "example_values": [ + "0.17", + "0.41", + "0.31", + "0.25", + "0.3" + ] + } + }, + { + "name": "residual sugar", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 296, + "unique_ratio": 0.075549, + "example_values": [ + "1", + "4.3", + "2.8", + "13", + "12.9" + ] + } + }, + { + "name": "chlorides", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 147, + "unique_ratio": 0.037519, + "example_values": [ + "0.042", + "0.036", + "0.038", + "0.047", + "0.033" + ] + } + }, + { + "name": "free sulfur dioxide", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 120, + "unique_ratio": 0.030628, + "example_values": [ + "21", + "24", + "41", + "43", + "69" + ] + } + }, + { + "name": "total sulfur dioxide", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 244, + "unique_ratio": 0.062277, + "example_values": [ + "144", + "99", + "114", + "132", + "160" + ] + } + }, + { + "name": "density", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 839, + "unique_ratio": 0.21414, + "example_values": [ + "0.99304", + "0.9947", + "0.99155", + "0.98975", + "0.99705" + ] + } + }, + { + "name": "pH", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 100, + "unique_ratio": 0.025523, + "example_values": [ + "3.13", + "3.18", + "3.37", + "3.21", + "3.16" + ] + } + }, + { + "name": "sulphates", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 78, + "unique_ratio": 0.019908, + "example_values": [ + "0.4", + "0.53", + "0.66", + "0.47", + "0.5" + ] + } + }, + { + "name": "alcohol", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 97, + "unique_ratio": 0.024758, + "example_values": [ + "9.6", + "9.7", + "11.7", + "13.4", + "8.8" + ] + } + }, + { + "name": "quality", + "role": "target", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 7, + "unique_ratio": 0.001787, + "example_values": [ + "5", + "6", + "7", + "8", + "3" + ] + } + } + ] +} \ No newline at end of file diff --git a/timecost/n3/realtabformer/rtf-n3-20260501_010320/public_gate/public_gate_report.json b/timecost/n3/realtabformer/rtf-n3-20260501_010320/public_gate/public_gate_report.json new file mode 100644 index 0000000000000000000000000000000000000000..93b97319f739e39079d6c6549fd2020f8a6dac25 --- /dev/null +++ b/timecost/n3/realtabformer/rtf-n3-20260501_010320/public_gate/public_gate_report.json @@ -0,0 +1,37 @@ +{ + "dataset_id": "n3", + "status": "pass", + "checks": [ + { + "check_id": "PG001_csv_parse_ok", + "status": "pass" + }, + { + "check_id": "PG002_split_header_consistent", + "status": "pass" + }, + { + "check_id": "PG003_profile_header_match", + "status": "pass" + }, + { + "check_id": "PG004_missing_token_normalized", + "status": "pass" + }, + { + "check_id": "PG005_semantic_type_validated", + "status": "pass" + }, + { + "check_id": "PG006_target_defined_and_valid", + "status": "pass" + } + ], + "target_column": "quality", + "task_type": "classification", + "input_splits": { + "train": "/data/jialinzhang/SynthesizePipeline-server/DatasetNew/n3/n3-train.csv", + "val": "/data/jialinzhang/SynthesizePipeline-server/DatasetNew/n3/n3-val.csv", + "test": "/data/jialinzhang/SynthesizePipeline-server/DatasetNew/n3/n3-test.csv" + } +} \ No newline at end of file diff --git a/timecost/n3/realtabformer/rtf-n3-20260501_010320/public_gate/staged_input_manifest.json b/timecost/n3/realtabformer/rtf-n3-20260501_010320/public_gate/staged_input_manifest.json new file mode 100644 index 0000000000000000000000000000000000000000..bad099b3f8f146170b6044f01c741b4c3eeace8d --- /dev/null +++ b/timecost/n3/realtabformer/rtf-n3-20260501_010320/public_gate/staged_input_manifest.json @@ -0,0 +1,264 @@ +{ + "dataset_id": "n3", + "target_column": "quality", + "task_type": "classification", + "train_csv": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/n3/realtabformer/rtf-n3-20260501_010320/staged/public/train.csv", + "val_csv": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/n3/realtabformer/rtf-n3-20260501_010320/staged/public/val.csv", + "test_csv": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/n3/realtabformer/rtf-n3-20260501_010320/staged/public/test.csv", + "features_json": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/n3/realtabformer/rtf-n3-20260501_010320/staged/public/staged_features.json", + "public_gate_report": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/n3/realtabformer/rtf-n3-20260501_010320/public_gate/public_gate_report.json", + "column_schema": [ + { + "name": "fixed acidity", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 66, + "unique_ratio": 0.016845, + "example_values": [ + "7.1", + "8.5", + "6.4", + "6.8", + "7.6" + ] + } + }, + { + "name": "volatile acidity", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 121, + "unique_ratio": 0.030883, + "example_values": [ + "0.31", + "0.21", + "0.24", + "0.43", + "0.27" + ] + } + }, + { + "name": "citric acid", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 85, + "unique_ratio": 0.021695, + "example_values": [ + "0.17", + "0.41", + "0.31", + "0.25", + "0.3" + ] + } + }, + { + "name": "residual sugar", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 296, + "unique_ratio": 0.075549, + "example_values": [ + "1", + "4.3", + "2.8", + "13", + "12.9" + ] + } + }, + { + "name": "chlorides", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 147, + "unique_ratio": 0.037519, + "example_values": [ + "0.042", + "0.036", + "0.038", + "0.047", + "0.033" + ] + } + }, + { + "name": "free sulfur dioxide", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 120, + "unique_ratio": 0.030628, + "example_values": [ + "21", + "24", + "41", + "43", + "69" + ] + } + }, + { + "name": "total sulfur dioxide", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 244, + "unique_ratio": 0.062277, + "example_values": [ + "144", + "99", + "114", + "132", + "160" + ] + } + }, + { + "name": "density", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 839, + "unique_ratio": 0.21414, + "example_values": [ + "0.99304", + "0.9947", + "0.99155", + "0.98975", + "0.99705" + ] + } + }, + { + "name": "pH", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 100, + "unique_ratio": 0.025523, + "example_values": [ + "3.13", + "3.18", + "3.37", + "3.21", + "3.16" + ] + } + }, + { + "name": "sulphates", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 78, + "unique_ratio": 0.019908, + "example_values": [ + "0.4", + "0.53", + "0.66", + "0.47", + "0.5" + ] + } + }, + { + "name": "alcohol", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 97, + "unique_ratio": 0.024758, + "example_values": [ + "9.6", + "9.7", + "11.7", + "13.4", + "8.8" + ] + } + }, + { + "name": "quality", + "role": "target", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 7, + "unique_ratio": 0.001787, + "example_values": [ + "5", + "6", + "7", + "8", + "3" + ] + } + } + ] +} \ No newline at end of file diff --git a/timecost/n3/realtabformer/rtf-n3-20260501_010320/realtabformer_features.json b/timecost/n3/realtabformer/rtf-n3-20260501_010320/realtabformer_features.json new file mode 100644 index 0000000000000000000000000000000000000000..08fe4d766d091d2f2ddba724a16b9509cbe4c390 --- /dev/null +++ b/timecost/n3/realtabformer/rtf-n3-20260501_010320/realtabformer_features.json @@ -0,0 +1,62 @@ +[ + { + "feature_name": "fixed acidity", + "data_type": "continuous", + "is_target": false + }, + { + "feature_name": "volatile acidity", + "data_type": "continuous", + "is_target": false + }, + { + "feature_name": "citric acid", + "data_type": "continuous", + "is_target": false + }, + { + "feature_name": "residual sugar", + "data_type": "continuous", + "is_target": false + }, + { + "feature_name": "chlorides", + "data_type": "continuous", + "is_target": false + }, + { + "feature_name": "free sulfur dioxide", + "data_type": "continuous", + "is_target": false + }, + { + "feature_name": "total sulfur dioxide", + "data_type": "continuous", + "is_target": false + }, + { + "feature_name": "density", + "data_type": "continuous", + "is_target": false + }, + { + "feature_name": "pH", + "data_type": "continuous", + "is_target": false + }, + { + "feature_name": "sulphates", + "data_type": "continuous", + "is_target": false + }, + { + "feature_name": "alcohol", + "data_type": "continuous", + "is_target": false + }, + { + "feature_name": "quality", + "data_type": "continuous", + "is_target": true + } +] \ No newline at end of file diff --git a/timecost/n3/realtabformer/rtf-n3-20260501_010320/rtf-n3-3918-20260501_011818.csv b/timecost/n3/realtabformer/rtf-n3-20260501_010320/rtf-n3-3918-20260501_011818.csv new file mode 100644 index 0000000000000000000000000000000000000000..b397722543474c378d7dbd32b4d80e87cd3bd911 --- /dev/null +++ b/timecost/n3/realtabformer/rtf-n3-20260501_010320/rtf-n3-3918-20260501_011818.csv @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:4db975bcd3a67d3bc1368f83ba5a2fc30a621d0fd1409f50e3f18cb49d58f7fd +size 227616 diff --git a/timecost/n3/realtabformer/rtf-n3-20260501_010320/rtf_checkpoints/checkpoint-12000/config.json b/timecost/n3/realtabformer/rtf-n3-20260501_010320/rtf_checkpoints/checkpoint-12000/config.json new file mode 100644 index 0000000000000000000000000000000000000000..1876b75d3abc713ca867fe8e643ea273dc9cea87 --- /dev/null +++ b/timecost/n3/realtabformer/rtf-n3-20260501_010320/rtf_checkpoints/checkpoint-12000/config.json @@ -0,0 +1,34 @@ +{ + "activation_function": "gelu_new", + "add_cross_attention": false, + "architectures": [ + "GPT2LMHeadModel" + ], + "attn_pdrop": 0.1, + "bos_token_id": 5, + "dtype": "float32", + "embd_pdrop": 0.1, + "eos_token_id": 6, + "initializer_range": 0.02, + "layer_norm_epsilon": 1e-05, + "model_type": "gpt2", + "n_embd": 768, + "n_head": 12, + "n_inner": null, + "n_layer": 6, + "n_positions": 1024, + "pad_token_id": null, + "reorder_and_upcast_attn": false, + "resid_pdrop": 0.1, + "scale_attn_by_inverse_layer_idx": false, + "scale_attn_weights": true, + "summary_activation": null, + "summary_first_dropout": 0.1, + "summary_proj_to_labels": true, + "summary_type": "cls_index", + "summary_use_proj": true, + "tie_word_embeddings": true, + "transformers_version": "5.5.3", + "use_cache": false, + "vocab_size": 304 +} diff --git a/timecost/n3/realtabformer/rtf-n3-20260501_010320/rtf_checkpoints/checkpoint-12000/generation_config.json b/timecost/n3/realtabformer/rtf-n3-20260501_010320/rtf_checkpoints/checkpoint-12000/generation_config.json new file mode 100644 index 0000000000000000000000000000000000000000..ffe89567780e75b5c22eade9be971483b9618f39 --- /dev/null +++ b/timecost/n3/realtabformer/rtf-n3-20260501_010320/rtf_checkpoints/checkpoint-12000/generation_config.json @@ -0,0 +1,9 @@ +{ + "_from_model_config": true, + "bos_token_id": 5, + "eos_token_id": 6, + "output_attentions": false, + "output_hidden_states": false, + "transformers_version": "5.5.3", + "use_cache": true +} diff --git a/timecost/n3/realtabformer/rtf-n3-20260501_010320/rtf_checkpoints/checkpoint-12000/model.safetensors b/timecost/n3/realtabformer/rtf-n3-20260501_010320/rtf_checkpoints/checkpoint-12000/model.safetensors new file mode 100644 index 0000000000000000000000000000000000000000..8f23191b03de1e3f1e9c0bf4896fa9c1e1d2757c --- /dev/null +++ b/timecost/n3/realtabformer/rtf-n3-20260501_010320/rtf_checkpoints/checkpoint-12000/model.safetensors @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:1779800c06cede566514a7fa6aa4b191783e252b3cfc2cab019a561f5c803188 +size 174202312 diff --git a/timecost/n3/realtabformer/rtf-n3-20260501_010320/rtf_checkpoints/checkpoint-12000/optimizer.pt b/timecost/n3/realtabformer/rtf-n3-20260501_010320/rtf_checkpoints/checkpoint-12000/optimizer.pt new file mode 100644 index 0000000000000000000000000000000000000000..7e5781ab88b985b9a4f6453f75a9e83d88e008bd --- /dev/null +++ b/timecost/n3/realtabformer/rtf-n3-20260501_010320/rtf_checkpoints/checkpoint-12000/optimizer.pt @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:598aef55698d3def9fb8cbf659d675901d6b6ddbba854261d81608e632c60e31 +size 348453707 diff --git a/timecost/n3/realtabformer/rtf-n3-20260501_010320/rtf_checkpoints/checkpoint-12000/rng_state.pth b/timecost/n3/realtabformer/rtf-n3-20260501_010320/rtf_checkpoints/checkpoint-12000/rng_state.pth new file mode 100644 index 0000000000000000000000000000000000000000..259b22cc567fc97d9ce848237e19b225036d522d --- /dev/null +++ b/timecost/n3/realtabformer/rtf-n3-20260501_010320/rtf_checkpoints/checkpoint-12000/rng_state.pth @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:5867d7b6843afa8cd0a7251868428ccca6cecd881840b7d0cd49a3b6887c41dc +size 14645 diff --git a/timecost/n3/realtabformer/rtf-n3-20260501_010320/rtf_checkpoints/checkpoint-12000/scaler.pt b/timecost/n3/realtabformer/rtf-n3-20260501_010320/rtf_checkpoints/checkpoint-12000/scaler.pt new file mode 100644 index 0000000000000000000000000000000000000000..241c562a134e120f8bc0122a1b0edce5a549c38a --- /dev/null +++ b/timecost/n3/realtabformer/rtf-n3-20260501_010320/rtf_checkpoints/checkpoint-12000/scaler.pt @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:ae029a8e6af9f014c9ef8b713fcd28cef1f184648ddde977ce75efc89ca9a242 +size 1383 diff --git a/timecost/n3/realtabformer/rtf-n3-20260501_010320/rtf_checkpoints/checkpoint-12000/scheduler.pt b/timecost/n3/realtabformer/rtf-n3-20260501_010320/rtf_checkpoints/checkpoint-12000/scheduler.pt new file mode 100644 index 0000000000000000000000000000000000000000..d697a7e2de27c36c08852b7da724e73cdc054a31 --- /dev/null +++ b/timecost/n3/realtabformer/rtf-n3-20260501_010320/rtf_checkpoints/checkpoint-12000/scheduler.pt @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:c6b3e8a6711437dad5643a8a0566381af8534c64b54ca610a8096a935ed90d6a +size 1465 diff --git a/timecost/n3/realtabformer/rtf-n3-20260501_010320/rtf_checkpoints/checkpoint-12000/trainer_state.json b/timecost/n3/realtabformer/rtf-n3-20260501_010320/rtf_checkpoints/checkpoint-12000/trainer_state.json new file mode 100644 index 0000000000000000000000000000000000000000..66bb30438aab6136d42c66ebacbaec86b81609f5 --- /dev/null +++ b/timecost/n3/realtabformer/rtf-n3-20260501_010320/rtf_checkpoints/checkpoint-12000/trainer_state.json @@ -0,0 +1,874 @@ +{ + "best_global_step": null, + "best_metric": null, + "best_model_checkpoint": null, + "epoch": 97.56326530612245, + "eval_steps": 100, + "global_step": 12000, + "is_hyper_param_search": false, + "is_local_process_zero": true, + "is_world_process_zero": true, + "log_history": [ + { + "epoch": 0.8163265306122449, + "grad_norm": 0.20639584958553314, + "learning_rate": 4.9597560975609755e-05, + "loss": 1.4745872497558594, + "step": 100 + }, + { + "epoch": 1.6285714285714286, + "grad_norm": 0.1949000358581543, + "learning_rate": 4.91910569105691e-05, + "loss": 0.8799897766113282, + "step": 200 + }, + { + "epoch": 2.440816326530612, + "grad_norm": 0.19164182245731354, + "learning_rate": 4.878455284552846e-05, + "loss": 0.8385199737548829, + "step": 300 + }, + { + "epoch": 3.253061224489796, + "grad_norm": 0.1767745316028595, + "learning_rate": 4.8378048780487804e-05, + "loss": 0.8195798492431641, + "step": 400 + }, + { + "epoch": 4.0653061224489795, + "grad_norm": 0.17210832238197327, + "learning_rate": 4.797154471544716e-05, + "loss": 0.805633544921875, + "step": 500 + }, + { + "epoch": 4.881632653061224, + "grad_norm": 0.18165253102779388, + "learning_rate": 4.7565040650406506e-05, + "loss": 0.7969439697265625, + "step": 600 + }, + { + "epoch": 5.6938775510204085, + "grad_norm": 0.19815795123577118, + "learning_rate": 4.715853658536585e-05, + "loss": 0.7886590576171875, + "step": 700 + }, + { + "epoch": 6.506122448979592, + "grad_norm": 0.17318786680698395, + "learning_rate": 4.675203252032521e-05, + "loss": 0.7834711456298828, + "step": 800 + }, + { + "epoch": 7.318367346938776, + "grad_norm": 0.1702745109796524, + "learning_rate": 4.6345528455284555e-05, + "loss": 0.7785483551025391, + "step": 900 + }, + { + "epoch": 8.130612244897959, + "grad_norm": 0.1857929825782776, + "learning_rate": 4.593902439024391e-05, + "loss": 0.7725027465820312, + "step": 1000 + }, + { + "epoch": 8.946938775510205, + "grad_norm": 0.17213623225688934, + "learning_rate": 4.5532520325203256e-05, + "loss": 0.7679139709472657, + "step": 1100 + }, + { + "epoch": 9.759183673469387, + "grad_norm": 0.173990860581398, + "learning_rate": 4.5126016260162604e-05, + "loss": 0.7615008544921875, + "step": 1200 + }, + { + "epoch": 10.571428571428571, + "grad_norm": 0.1709279716014862, + "learning_rate": 4.471951219512195e-05, + "loss": 0.7550846862792969, + "step": 1300 + }, + { + "epoch": 11.383673469387755, + "grad_norm": 0.1852250099182129, + "learning_rate": 4.43130081300813e-05, + "loss": 0.7509546661376953, + "step": 1400 + }, + { + "epoch": 12.19591836734694, + "grad_norm": 0.19050434231758118, + "learning_rate": 4.390650406504065e-05, + "loss": 0.7481673431396484, + "step": 1500 + }, + { + "epoch": 13.008163265306122, + "grad_norm": 0.17918676137924194, + "learning_rate": 4.35e-05, + "loss": 0.7416070556640625, + "step": 1600 + }, + { + "epoch": 13.824489795918367, + "grad_norm": 0.20031221210956573, + "learning_rate": 4.309349593495935e-05, + "loss": 0.7341732025146485, + "step": 1700 + }, + { + "epoch": 14.636734693877552, + "grad_norm": 0.206989124417305, + "learning_rate": 4.26869918699187e-05, + "loss": 0.7266737365722656, + "step": 1800 + }, + { + "epoch": 15.448979591836734, + "grad_norm": 0.20765261352062225, + "learning_rate": 4.228048780487805e-05, + "loss": 0.7223382568359376, + "step": 1900 + }, + { + "epoch": 16.261224489795918, + "grad_norm": 0.21891070902347565, + "learning_rate": 4.1873983739837404e-05, + "loss": 0.7137351226806641, + "step": 2000 + }, + { + "epoch": 17.073469387755104, + "grad_norm": 0.21613141894340515, + "learning_rate": 4.146747967479675e-05, + "loss": 0.7111404418945313, + "step": 2100 + }, + { + "epoch": 17.889795918367348, + "grad_norm": 0.21502180397510529, + "learning_rate": 4.10609756097561e-05, + "loss": 0.6979566192626954, + "step": 2200 + }, + { + "epoch": 18.70204081632653, + "grad_norm": 0.22264128923416138, + "learning_rate": 4.065447154471545e-05, + "loss": 0.6864246368408203, + "step": 2300 + }, + { + "epoch": 19.514285714285712, + "grad_norm": 0.22031748294830322, + "learning_rate": 4.02479674796748e-05, + "loss": 0.678118896484375, + "step": 2400 + }, + { + "epoch": 20.3265306122449, + "grad_norm": 0.24292652308940887, + "learning_rate": 3.984146341463415e-05, + "loss": 0.6696414184570313, + "step": 2500 + }, + { + "epoch": 21.13877551020408, + "grad_norm": 0.23444044589996338, + "learning_rate": 3.9434959349593495e-05, + "loss": 0.6571144866943359, + "step": 2600 + }, + { + "epoch": 21.955102040816328, + "grad_norm": 0.26427289843559265, + "learning_rate": 3.902845528455284e-05, + "loss": 0.644508056640625, + "step": 2700 + }, + { + "epoch": 22.76734693877551, + "grad_norm": 0.2826888859272003, + "learning_rate": 3.8621951219512196e-05, + "loss": 0.6250789260864258, + "step": 2800 + }, + { + "epoch": 23.579591836734693, + "grad_norm": 0.28523582220077515, + "learning_rate": 3.8215447154471544e-05, + "loss": 0.6115097045898438, + "step": 2900 + }, + { + "epoch": 24.39183673469388, + "grad_norm": 0.3078940808773041, + "learning_rate": 3.78089430894309e-05, + "loss": 0.5938611602783204, + "step": 3000 + }, + { + "epoch": 25.20408163265306, + "grad_norm": 0.2929214537143707, + "learning_rate": 3.7402439024390246e-05, + "loss": 0.5813701629638672, + "step": 3100 + }, + { + "epoch": 26.016326530612243, + "grad_norm": 0.29797449707984924, + "learning_rate": 3.699593495934959e-05, + "loss": 0.565318717956543, + "step": 3200 + }, + { + "epoch": 26.83265306122449, + "grad_norm": 0.34011322259902954, + "learning_rate": 3.658943089430895e-05, + "loss": 0.5397001266479492, + "step": 3300 + }, + { + "epoch": 27.644897959183673, + "grad_norm": 0.312648206949234, + "learning_rate": 3.6182926829268295e-05, + "loss": 0.5236684799194335, + "step": 3400 + }, + { + "epoch": 28.457142857142856, + "grad_norm": 0.3535107970237732, + "learning_rate": 3.577642276422765e-05, + "loss": 0.5073324966430665, + "step": 3500 + }, + { + "epoch": 29.26938775510204, + "grad_norm": 0.32181501388549805, + "learning_rate": 3.5369918699186996e-05, + "loss": 0.49109951019287107, + "step": 3600 + }, + { + "epoch": 30.081632653061224, + "grad_norm": 0.32014670968055725, + "learning_rate": 3.4963414634146344e-05, + "loss": 0.47566513061523436, + "step": 3700 + }, + { + "epoch": 30.897959183673468, + "grad_norm": 0.3838709890842438, + "learning_rate": 3.455691056910569e-05, + "loss": 0.4567824172973633, + "step": 3800 + }, + { + "epoch": 31.710204081632654, + "grad_norm": 0.361082524061203, + "learning_rate": 3.415040650406504e-05, + "loss": 0.4356218719482422, + "step": 3900 + }, + { + "epoch": 32.522448979591836, + "grad_norm": 0.3454324007034302, + "learning_rate": 3.374390243902439e-05, + "loss": 0.4223041534423828, + "step": 4000 + }, + { + "epoch": 33.33469387755102, + "grad_norm": 0.3978846073150635, + "learning_rate": 3.333739837398374e-05, + "loss": 0.4082141876220703, + "step": 4100 + }, + { + "epoch": 34.14693877551021, + "grad_norm": 0.35300812125205994, + "learning_rate": 3.293089430894309e-05, + "loss": 0.3971371841430664, + "step": 4200 + }, + { + "epoch": 34.96326530612245, + "grad_norm": 0.39180585741996765, + "learning_rate": 3.252439024390244e-05, + "loss": 0.38660186767578125, + "step": 4300 + }, + { + "epoch": 35.775510204081634, + "grad_norm": 0.34937477111816406, + "learning_rate": 3.211788617886179e-05, + "loss": 0.36573085784912107, + "step": 4400 + }, + { + "epoch": 36.587755102040816, + "grad_norm": 0.34532594680786133, + "learning_rate": 3.171138211382114e-05, + "loss": 0.357391357421875, + "step": 4500 + }, + { + "epoch": 37.4, + "grad_norm": 0.3401789665222168, + "learning_rate": 3.130487804878049e-05, + "loss": 0.35067024230957033, + "step": 4600 + }, + { + "epoch": 38.21224489795918, + "grad_norm": 0.35807526111602783, + "learning_rate": 3.089837398373984e-05, + "loss": 0.33775680541992187, + "step": 4700 + }, + { + "epoch": 39.02448979591837, + "grad_norm": 0.3305448591709137, + "learning_rate": 3.049186991869919e-05, + "loss": 0.3307634735107422, + "step": 4800 + }, + { + "epoch": 39.840816326530614, + "grad_norm": 0.35710543394088745, + "learning_rate": 3.0085365853658536e-05, + "loss": 0.3170050811767578, + "step": 4900 + }, + { + "epoch": 40.6530612244898, + "grad_norm": 0.3527916967868805, + "learning_rate": 2.967886178861789e-05, + "loss": 0.3097914505004883, + "step": 5000 + }, + { + "epoch": 41.46530612244898, + "grad_norm": 0.32809746265411377, + "learning_rate": 2.9272357723577238e-05, + "loss": 0.3027458190917969, + "step": 5100 + }, + { + "epoch": 42.27755102040816, + "grad_norm": 0.31058913469314575, + "learning_rate": 2.8865853658536585e-05, + "loss": 0.29558998107910156, + "step": 5200 + }, + { + "epoch": 43.089795918367344, + "grad_norm": 0.34247487783432007, + "learning_rate": 2.8459349593495936e-05, + "loss": 0.2922693824768066, + "step": 5300 + }, + { + "epoch": 43.906122448979595, + "grad_norm": 0.30968013405799866, + "learning_rate": 2.8052845528455284e-05, + "loss": 0.2823493576049805, + "step": 5400 + }, + { + "epoch": 44.71836734693878, + "grad_norm": 0.3155519366264343, + "learning_rate": 2.7646341463414638e-05, + "loss": 0.27321760177612303, + "step": 5500 + }, + { + "epoch": 45.53061224489796, + "grad_norm": 0.31056052446365356, + "learning_rate": 2.7239837398373985e-05, + "loss": 0.2715290069580078, + "step": 5600 + }, + { + "epoch": 46.34285714285714, + "grad_norm": 0.31267017126083374, + "learning_rate": 2.6833333333333333e-05, + "loss": 0.2654402160644531, + "step": 5700 + }, + { + "epoch": 47.155102040816324, + "grad_norm": 0.32218316197395325, + "learning_rate": 2.6426829268292687e-05, + "loss": 0.26081199645996095, + "step": 5800 + }, + { + "epoch": 47.97142857142857, + "grad_norm": 0.34338584542274475, + "learning_rate": 2.6020325203252034e-05, + "loss": 0.2576237869262695, + "step": 5900 + }, + { + "epoch": 48.78367346938776, + "grad_norm": 0.33019116520881653, + "learning_rate": 2.5613821138211385e-05, + "loss": 0.24996454238891602, + "step": 6000 + }, + { + "epoch": 49.59591836734694, + "grad_norm": 0.2988639175891876, + "learning_rate": 2.5207317073170733e-05, + "loss": 0.2463224411010742, + "step": 6100 + }, + { + "epoch": 50.40816326530612, + "grad_norm": 0.31278201937675476, + "learning_rate": 2.4800813008130083e-05, + "loss": 0.2423969841003418, + "step": 6200 + }, + { + "epoch": 51.220408163265304, + "grad_norm": 0.33853426575660706, + "learning_rate": 2.4394308943089434e-05, + "loss": 0.2402469062805176, + "step": 6300 + }, + { + "epoch": 52.03265306122449, + "grad_norm": 0.30223262310028076, + "learning_rate": 2.3987804878048782e-05, + "loss": 0.23620229721069336, + "step": 6400 + }, + { + "epoch": 52.84897959183674, + "grad_norm": 0.29446688294410706, + "learning_rate": 2.3581300813008133e-05, + "loss": 0.23224014282226563, + "step": 6500 + }, + { + "epoch": 53.66122448979592, + "grad_norm": 0.32583415508270264, + "learning_rate": 2.317479674796748e-05, + "loss": 0.22917091369628906, + "step": 6600 + }, + { + "epoch": 54.4734693877551, + "grad_norm": 0.30859264731407166, + "learning_rate": 2.276829268292683e-05, + "loss": 0.2268912124633789, + "step": 6700 + }, + { + "epoch": 55.285714285714285, + "grad_norm": 0.31113457679748535, + "learning_rate": 2.236178861788618e-05, + "loss": 0.2232840347290039, + "step": 6800 + }, + { + "epoch": 56.09795918367347, + "grad_norm": 0.2787556052207947, + "learning_rate": 2.195528455284553e-05, + "loss": 0.22269392013549805, + "step": 6900 + }, + { + "epoch": 56.91428571428571, + "grad_norm": 0.31350278854370117, + "learning_rate": 2.154878048780488e-05, + "loss": 0.21771884918212892, + "step": 7000 + }, + { + "epoch": 57.7265306122449, + "grad_norm": 0.28963643312454224, + "learning_rate": 2.1142276422764227e-05, + "loss": 0.21578874588012695, + "step": 7100 + }, + { + "epoch": 58.53877551020408, + "grad_norm": 0.2832202911376953, + "learning_rate": 2.0735772357723578e-05, + "loss": 0.21327545166015624, + "step": 7200 + }, + { + "epoch": 59.351020408163265, + "grad_norm": 0.3022792339324951, + "learning_rate": 2.0329268292682925e-05, + "loss": 0.2126554489135742, + "step": 7300 + }, + { + "epoch": 60.16326530612245, + "grad_norm": 0.29425740242004395, + "learning_rate": 1.9922764227642276e-05, + "loss": 0.2091551399230957, + "step": 7400 + }, + { + "epoch": 60.97959183673469, + "grad_norm": 0.3006289303302765, + "learning_rate": 1.9516260162601627e-05, + "loss": 0.20839336395263672, + "step": 7500 + }, + { + "epoch": 61.79183673469388, + "grad_norm": 0.28310829401016235, + "learning_rate": 1.9109756097560978e-05, + "loss": 0.20591426849365235, + "step": 7600 + }, + { + "epoch": 62.60408163265306, + "grad_norm": 0.3061628043651581, + "learning_rate": 1.8703252032520325e-05, + "loss": 0.20315048217773438, + "step": 7700 + }, + { + "epoch": 63.416326530612245, + "grad_norm": 0.27300187945365906, + "learning_rate": 1.8296747967479673e-05, + "loss": 0.202825927734375, + "step": 7800 + }, + { + "epoch": 64.22857142857143, + "grad_norm": 0.24376684427261353, + "learning_rate": 1.7890243902439024e-05, + "loss": 0.20038375854492188, + "step": 7900 + }, + { + "epoch": 65.04081632653062, + "grad_norm": 0.28877273201942444, + "learning_rate": 1.7483739837398374e-05, + "loss": 0.19970365524291991, + "step": 8000 + }, + { + "epoch": 65.85714285714286, + "grad_norm": 0.23989948630332947, + "learning_rate": 1.7077235772357725e-05, + "loss": 0.19691890716552735, + "step": 8100 + }, + { + "epoch": 66.66938775510204, + "grad_norm": 0.28822559118270874, + "learning_rate": 1.6670731707317076e-05, + "loss": 0.19575874328613282, + "step": 8200 + }, + { + "epoch": 67.48163265306123, + "grad_norm": 0.2700895667076111, + "learning_rate": 1.6264227642276423e-05, + "loss": 0.1947219467163086, + "step": 8300 + }, + { + "epoch": 68.29387755102042, + "grad_norm": 0.2526496350765228, + "learning_rate": 1.585772357723577e-05, + "loss": 0.19402549743652345, + "step": 8400 + }, + { + "epoch": 69.10612244897959, + "grad_norm": 0.20475488901138306, + "learning_rate": 1.545121951219512e-05, + "loss": 0.1931273651123047, + "step": 8500 + }, + { + "epoch": 69.92244897959183, + "grad_norm": 0.2714834213256836, + "learning_rate": 1.5044715447154473e-05, + "loss": 0.19089672088623047, + "step": 8600 + }, + { + "epoch": 70.73469387755102, + "grad_norm": 0.2766830027103424, + "learning_rate": 1.4638211382113823e-05, + "loss": 0.18954217910766602, + "step": 8700 + }, + { + "epoch": 71.5469387755102, + "grad_norm": 0.3034886121749878, + "learning_rate": 1.423170731707317e-05, + "loss": 0.18781688690185547, + "step": 8800 + }, + { + "epoch": 72.35918367346939, + "grad_norm": 0.24485336244106293, + "learning_rate": 1.382520325203252e-05, + "loss": 0.18732297897338868, + "step": 8900 + }, + { + "epoch": 73.17142857142858, + "grad_norm": 0.23148897290229797, + "learning_rate": 1.341869918699187e-05, + "loss": 0.1871368408203125, + "step": 9000 + }, + { + "epoch": 73.98775510204082, + "grad_norm": 0.21915043890476227, + "learning_rate": 1.301219512195122e-05, + "loss": 0.18623947143554687, + "step": 9100 + }, + { + "epoch": 74.8, + "grad_norm": 0.23356078565120697, + "learning_rate": 1.260569105691057e-05, + "loss": 0.18433347702026368, + "step": 9200 + }, + { + "epoch": 75.61224489795919, + "grad_norm": 0.22005006670951843, + "learning_rate": 1.219918699186992e-05, + "loss": 0.18372562408447266, + "step": 9300 + }, + { + "epoch": 76.42448979591836, + "grad_norm": 0.24768972396850586, + "learning_rate": 1.1792682926829269e-05, + "loss": 0.18352956771850587, + "step": 9400 + }, + { + "epoch": 77.23673469387755, + "grad_norm": 0.23978039622306824, + "learning_rate": 1.1386178861788618e-05, + "loss": 0.18253284454345703, + "step": 9500 + }, + { + "epoch": 78.04897959183674, + "grad_norm": 0.229603111743927, + "learning_rate": 1.0979674796747969e-05, + "loss": 0.18194345474243165, + "step": 9600 + }, + { + "epoch": 78.86530612244898, + "grad_norm": 0.24125361442565918, + "learning_rate": 1.0573170731707318e-05, + "loss": 0.1807528877258301, + "step": 9700 + }, + { + "epoch": 79.67755102040816, + "grad_norm": 0.2205636203289032, + "learning_rate": 1.0166666666666667e-05, + "loss": 0.18057302474975587, + "step": 9800 + }, + { + "epoch": 80.48979591836735, + "grad_norm": 0.2393631935119629, + "learning_rate": 9.760162601626016e-06, + "loss": 0.1798857879638672, + "step": 9900 + }, + { + "epoch": 81.30204081632652, + "grad_norm": 0.24092160165309906, + "learning_rate": 9.353658536585367e-06, + "loss": 0.1784771728515625, + "step": 10000 + }, + { + "epoch": 82.11428571428571, + "grad_norm": 0.24599742889404297, + "learning_rate": 8.947154471544716e-06, + "loss": 0.17834564208984374, + "step": 10100 + }, + { + "epoch": 82.93061224489796, + "grad_norm": 0.22460418939590454, + "learning_rate": 8.540650406504065e-06, + "loss": 0.1772374153137207, + "step": 10200 + }, + { + "epoch": 83.74285714285715, + "grad_norm": 0.2190479338169098, + "learning_rate": 8.134146341463416e-06, + "loss": 0.17636322021484374, + "step": 10300 + }, + { + "epoch": 84.55510204081632, + "grad_norm": 0.2221534252166748, + "learning_rate": 7.727642276422763e-06, + "loss": 0.1762386703491211, + "step": 10400 + }, + { + "epoch": 85.36734693877551, + "grad_norm": 0.26244837045669556, + "learning_rate": 7.321138211382114e-06, + "loss": 0.1751699638366699, + "step": 10500 + }, + { + "epoch": 86.17959183673469, + "grad_norm": 0.22107520699501038, + "learning_rate": 6.914634146341464e-06, + "loss": 0.17485345840454103, + "step": 10600 + }, + { + "epoch": 86.99591836734695, + "grad_norm": 0.23993152379989624, + "learning_rate": 6.508130081300813e-06, + "loss": 0.1742844581604004, + "step": 10700 + }, + { + "epoch": 87.80816326530612, + "grad_norm": 0.2439497411251068, + "learning_rate": 6.101626016260163e-06, + "loss": 0.1729772186279297, + "step": 10800 + }, + { + "epoch": 88.62040816326531, + "grad_norm": 0.17270337045192719, + "learning_rate": 5.695121951219512e-06, + "loss": 0.17377023696899413, + "step": 10900 + }, + { + "epoch": 89.43265306122449, + "grad_norm": 0.21495409309864044, + "learning_rate": 5.288617886178862e-06, + "loss": 0.17239656448364257, + "step": 11000 + }, + { + "epoch": 90.24489795918367, + "grad_norm": 0.22590148448944092, + "learning_rate": 4.8821138211382115e-06, + "loss": 0.1718999481201172, + "step": 11100 + }, + { + "epoch": 91.05714285714286, + "grad_norm": 0.23818287253379822, + "learning_rate": 4.475609756097561e-06, + "loss": 0.17191593170166017, + "step": 11200 + }, + { + "epoch": 91.87346938775511, + "grad_norm": 0.20226499438285828, + "learning_rate": 4.069105691056911e-06, + "loss": 0.1716364097595215, + "step": 11300 + }, + { + "epoch": 92.68571428571428, + "grad_norm": 0.21012510359287262, + "learning_rate": 3.6626016260162606e-06, + "loss": 0.17097190856933595, + "step": 11400 + }, + { + "epoch": 93.49795918367347, + "grad_norm": 0.2207111269235611, + "learning_rate": 3.25609756097561e-06, + "loss": 0.17108001708984374, + "step": 11500 + }, + { + "epoch": 94.31020408163265, + "grad_norm": 0.24261923134326935, + "learning_rate": 2.8495934959349596e-06, + "loss": 0.16977045059204102, + "step": 11600 + }, + { + "epoch": 95.12244897959184, + "grad_norm": 0.21230651438236237, + "learning_rate": 2.4430894308943088e-06, + "loss": 0.17076728820800782, + "step": 11700 + }, + { + "epoch": 95.93877551020408, + "grad_norm": 0.23544330894947052, + "learning_rate": 2.0365853658536587e-06, + "loss": 0.1692482566833496, + "step": 11800 + }, + { + "epoch": 96.75102040816327, + "grad_norm": 0.21479812264442444, + "learning_rate": 1.630081300813008e-06, + "loss": 0.16898462295532227, + "step": 11900 + }, + { + "epoch": 97.56326530612245, + "grad_norm": 0.2458772510290146, + "learning_rate": 1.2235772357723578e-06, + "loss": 0.16863704681396485, + "step": 12000 + } + ], + "logging_steps": 100, + "max_steps": 12300, + "num_input_tokens_seen": 0, + "num_train_epochs": 100, + "save_steps": 100, + "stateful_callbacks": { + "TrainerControl": { + "args": { + "should_epoch_stop": false, + "should_evaluate": false, + "should_log": false, + "should_save": true, + "should_training_stop": false + }, + "attributes": {} + } + }, + "total_flos": 5657363505709056.0, + "train_batch_size": 8, + "trial_name": null, + "trial_params": null +} diff --git a/timecost/n3/realtabformer/rtf-n3-20260501_010320/rtf_checkpoints/checkpoint-12000/training_args.bin b/timecost/n3/realtabformer/rtf-n3-20260501_010320/rtf_checkpoints/checkpoint-12000/training_args.bin new file mode 100644 index 0000000000000000000000000000000000000000..34d68dc0e0fe1c1f12a2e581dd1b166aa7178a9e --- /dev/null +++ b/timecost/n3/realtabformer/rtf-n3-20260501_010320/rtf_checkpoints/checkpoint-12000/training_args.bin @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:9e2cd88337d1d846c6918d2b3b63fa3e5c93f12fefc082497590da854a564607 +size 5201 diff --git a/timecost/n3/realtabformer/rtf-n3-20260501_010320/rtf_checkpoints/checkpoint-12054/config.json b/timecost/n3/realtabformer/rtf-n3-20260501_010320/rtf_checkpoints/checkpoint-12054/config.json new file mode 100644 index 0000000000000000000000000000000000000000..1876b75d3abc713ca867fe8e643ea273dc9cea87 --- /dev/null +++ b/timecost/n3/realtabformer/rtf-n3-20260501_010320/rtf_checkpoints/checkpoint-12054/config.json @@ -0,0 +1,34 @@ +{ + "activation_function": "gelu_new", + "add_cross_attention": false, + "architectures": [ + "GPT2LMHeadModel" + ], + "attn_pdrop": 0.1, + "bos_token_id": 5, + "dtype": "float32", + "embd_pdrop": 0.1, + "eos_token_id": 6, + "initializer_range": 0.02, + "layer_norm_epsilon": 1e-05, + "model_type": "gpt2", + "n_embd": 768, + "n_head": 12, + "n_inner": null, + "n_layer": 6, + "n_positions": 1024, + "pad_token_id": null, + "reorder_and_upcast_attn": false, + "resid_pdrop": 0.1, + "scale_attn_by_inverse_layer_idx": false, + "scale_attn_weights": true, + "summary_activation": null, + "summary_first_dropout": 0.1, + "summary_proj_to_labels": true, + "summary_type": "cls_index", + "summary_use_proj": true, + "tie_word_embeddings": true, + "transformers_version": "5.5.3", + "use_cache": false, + "vocab_size": 304 +} diff --git a/timecost/n3/realtabformer/rtf-n3-20260501_010320/rtf_checkpoints/checkpoint-12054/generation_config.json b/timecost/n3/realtabformer/rtf-n3-20260501_010320/rtf_checkpoints/checkpoint-12054/generation_config.json new file mode 100644 index 0000000000000000000000000000000000000000..ffe89567780e75b5c22eade9be971483b9618f39 --- /dev/null +++ b/timecost/n3/realtabformer/rtf-n3-20260501_010320/rtf_checkpoints/checkpoint-12054/generation_config.json @@ -0,0 +1,9 @@ +{ + "_from_model_config": true, + "bos_token_id": 5, + "eos_token_id": 6, + "output_attentions": false, + "output_hidden_states": false, + "transformers_version": "5.5.3", + "use_cache": true +} diff --git a/timecost/n3/realtabformer/rtf-n3-20260501_010320/rtf_checkpoints/checkpoint-12054/model.safetensors b/timecost/n3/realtabformer/rtf-n3-20260501_010320/rtf_checkpoints/checkpoint-12054/model.safetensors new file mode 100644 index 0000000000000000000000000000000000000000..84b4913c54617e2038532586a5442b66c04ecc1b --- /dev/null +++ b/timecost/n3/realtabformer/rtf-n3-20260501_010320/rtf_checkpoints/checkpoint-12054/model.safetensors @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:0d15543cc0f3b0a7c90fa1ba851f6616d59eb2730b5c0e403c7b92f3b9377a18 +size 174202312 diff --git a/timecost/n3/realtabformer/rtf-n3-20260501_010320/rtf_checkpoints/checkpoint-12054/optimizer.pt b/timecost/n3/realtabformer/rtf-n3-20260501_010320/rtf_checkpoints/checkpoint-12054/optimizer.pt new file mode 100644 index 0000000000000000000000000000000000000000..bbc7e88cd9de3a75dbb20ac98813f6a4907de696 --- /dev/null +++ b/timecost/n3/realtabformer/rtf-n3-20260501_010320/rtf_checkpoints/checkpoint-12054/optimizer.pt @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:2c4dccfe67721c1ad205630a8e7ab13507da1135bbf8c21ee1f65f6895894abd +size 348453707 diff --git a/timecost/n3/realtabformer/rtf-n3-20260501_010320/rtf_checkpoints/checkpoint-12054/rng_state.pth b/timecost/n3/realtabformer/rtf-n3-20260501_010320/rtf_checkpoints/checkpoint-12054/rng_state.pth new file mode 100644 index 0000000000000000000000000000000000000000..127e96e51af2fec9a7565d414d1ac3a031fa22b0 --- /dev/null +++ b/timecost/n3/realtabformer/rtf-n3-20260501_010320/rtf_checkpoints/checkpoint-12054/rng_state.pth @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:ad6e7e5c4130a3f581a37d56f81e1697945533c1bb88390eef4e94a604480235 +size 14645 diff --git a/timecost/n3/realtabformer/rtf-n3-20260501_010320/rtf_checkpoints/checkpoint-12054/scaler.pt b/timecost/n3/realtabformer/rtf-n3-20260501_010320/rtf_checkpoints/checkpoint-12054/scaler.pt new file mode 100644 index 0000000000000000000000000000000000000000..d79ae580dd92ab9e12cb0ba51c7f739f386a3d38 --- /dev/null +++ b/timecost/n3/realtabformer/rtf-n3-20260501_010320/rtf_checkpoints/checkpoint-12054/scaler.pt @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:523c650bf4a3521b41471b1b102205838930400e23d4ba2fc88a24ba8f12c605 +size 1383 diff --git a/timecost/n3/realtabformer/rtf-n3-20260501_010320/rtf_checkpoints/checkpoint-12054/scheduler.pt b/timecost/n3/realtabformer/rtf-n3-20260501_010320/rtf_checkpoints/checkpoint-12054/scheduler.pt new file mode 100644 index 0000000000000000000000000000000000000000..c9236d825a67ab01504fb541afadd99228c39b36 --- /dev/null +++ b/timecost/n3/realtabformer/rtf-n3-20260501_010320/rtf_checkpoints/checkpoint-12054/scheduler.pt @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:c4813f3ff545acda2e3042241296844f2b098b5d55a677a5ba026e25c62aeba5 +size 1465 diff --git a/timecost/n3/realtabformer/rtf-n3-20260501_010320/rtf_checkpoints/checkpoint-12054/trainer_state.json b/timecost/n3/realtabformer/rtf-n3-20260501_010320/rtf_checkpoints/checkpoint-12054/trainer_state.json new file mode 100644 index 0000000000000000000000000000000000000000..35286f1c7432eca4523f5caead4375b626ac7a2c --- /dev/null +++ b/timecost/n3/realtabformer/rtf-n3-20260501_010320/rtf_checkpoints/checkpoint-12054/trainer_state.json @@ -0,0 +1,874 @@ +{ + "best_global_step": null, + "best_metric": null, + "best_model_checkpoint": null, + "epoch": 98.0, + "eval_steps": 100, + "global_step": 12054, + "is_hyper_param_search": false, + "is_local_process_zero": true, + "is_world_process_zero": true, + "log_history": [ + { + "epoch": 0.8163265306122449, + "grad_norm": 0.20639584958553314, + "learning_rate": 4.9597560975609755e-05, + "loss": 1.4745872497558594, + "step": 100 + }, + { + "epoch": 1.6285714285714286, + "grad_norm": 0.1949000358581543, + "learning_rate": 4.91910569105691e-05, + "loss": 0.8799897766113282, + "step": 200 + }, + { + "epoch": 2.440816326530612, + "grad_norm": 0.19164182245731354, + "learning_rate": 4.878455284552846e-05, + "loss": 0.8385199737548829, + "step": 300 + }, + { + "epoch": 3.253061224489796, + "grad_norm": 0.1767745316028595, + "learning_rate": 4.8378048780487804e-05, + "loss": 0.8195798492431641, + "step": 400 + }, + { + "epoch": 4.0653061224489795, + "grad_norm": 0.17210832238197327, + "learning_rate": 4.797154471544716e-05, + "loss": 0.805633544921875, + "step": 500 + }, + { + "epoch": 4.881632653061224, + "grad_norm": 0.18165253102779388, + "learning_rate": 4.7565040650406506e-05, + "loss": 0.7969439697265625, + "step": 600 + }, + { + "epoch": 5.6938775510204085, + "grad_norm": 0.19815795123577118, + "learning_rate": 4.715853658536585e-05, + "loss": 0.7886590576171875, + "step": 700 + }, + { + "epoch": 6.506122448979592, + "grad_norm": 0.17318786680698395, + "learning_rate": 4.675203252032521e-05, + "loss": 0.7834711456298828, + "step": 800 + }, + { + "epoch": 7.318367346938776, + "grad_norm": 0.1702745109796524, + "learning_rate": 4.6345528455284555e-05, + "loss": 0.7785483551025391, + "step": 900 + }, + { + "epoch": 8.130612244897959, + "grad_norm": 0.1857929825782776, + "learning_rate": 4.593902439024391e-05, + "loss": 0.7725027465820312, + "step": 1000 + }, + { + "epoch": 8.946938775510205, + "grad_norm": 0.17213623225688934, + "learning_rate": 4.5532520325203256e-05, + "loss": 0.7679139709472657, + "step": 1100 + }, + { + "epoch": 9.759183673469387, + "grad_norm": 0.173990860581398, + "learning_rate": 4.5126016260162604e-05, + "loss": 0.7615008544921875, + "step": 1200 + }, + { + "epoch": 10.571428571428571, + "grad_norm": 0.1709279716014862, + "learning_rate": 4.471951219512195e-05, + "loss": 0.7550846862792969, + "step": 1300 + }, + { + "epoch": 11.383673469387755, + "grad_norm": 0.1852250099182129, + "learning_rate": 4.43130081300813e-05, + "loss": 0.7509546661376953, + "step": 1400 + }, + { + "epoch": 12.19591836734694, + "grad_norm": 0.19050434231758118, + "learning_rate": 4.390650406504065e-05, + "loss": 0.7481673431396484, + "step": 1500 + }, + { + "epoch": 13.008163265306122, + "grad_norm": 0.17918676137924194, + "learning_rate": 4.35e-05, + "loss": 0.7416070556640625, + "step": 1600 + }, + { + "epoch": 13.824489795918367, + "grad_norm": 0.20031221210956573, + "learning_rate": 4.309349593495935e-05, + "loss": 0.7341732025146485, + "step": 1700 + }, + { + "epoch": 14.636734693877552, + "grad_norm": 0.206989124417305, + "learning_rate": 4.26869918699187e-05, + "loss": 0.7266737365722656, + "step": 1800 + }, + { + "epoch": 15.448979591836734, + "grad_norm": 0.20765261352062225, + "learning_rate": 4.228048780487805e-05, + "loss": 0.7223382568359376, + "step": 1900 + }, + { + "epoch": 16.261224489795918, + "grad_norm": 0.21891070902347565, + "learning_rate": 4.1873983739837404e-05, + "loss": 0.7137351226806641, + "step": 2000 + }, + { + "epoch": 17.073469387755104, + "grad_norm": 0.21613141894340515, + "learning_rate": 4.146747967479675e-05, + "loss": 0.7111404418945313, + "step": 2100 + }, + { + "epoch": 17.889795918367348, + "grad_norm": 0.21502180397510529, + "learning_rate": 4.10609756097561e-05, + "loss": 0.6979566192626954, + "step": 2200 + }, + { + "epoch": 18.70204081632653, + "grad_norm": 0.22264128923416138, + "learning_rate": 4.065447154471545e-05, + "loss": 0.6864246368408203, + "step": 2300 + }, + { + "epoch": 19.514285714285712, + "grad_norm": 0.22031748294830322, + "learning_rate": 4.02479674796748e-05, + "loss": 0.678118896484375, + "step": 2400 + }, + { + "epoch": 20.3265306122449, + "grad_norm": 0.24292652308940887, + "learning_rate": 3.984146341463415e-05, + "loss": 0.6696414184570313, + "step": 2500 + }, + { + "epoch": 21.13877551020408, + "grad_norm": 0.23444044589996338, + "learning_rate": 3.9434959349593495e-05, + "loss": 0.6571144866943359, + "step": 2600 + }, + { + "epoch": 21.955102040816328, + "grad_norm": 0.26427289843559265, + "learning_rate": 3.902845528455284e-05, + "loss": 0.644508056640625, + "step": 2700 + }, + { + "epoch": 22.76734693877551, + "grad_norm": 0.2826888859272003, + "learning_rate": 3.8621951219512196e-05, + "loss": 0.6250789260864258, + "step": 2800 + }, + { + "epoch": 23.579591836734693, + "grad_norm": 0.28523582220077515, + "learning_rate": 3.8215447154471544e-05, + "loss": 0.6115097045898438, + "step": 2900 + }, + { + "epoch": 24.39183673469388, + "grad_norm": 0.3078940808773041, + "learning_rate": 3.78089430894309e-05, + "loss": 0.5938611602783204, + "step": 3000 + }, + { + "epoch": 25.20408163265306, + "grad_norm": 0.2929214537143707, + "learning_rate": 3.7402439024390246e-05, + "loss": 0.5813701629638672, + "step": 3100 + }, + { + "epoch": 26.016326530612243, + "grad_norm": 0.29797449707984924, + "learning_rate": 3.699593495934959e-05, + "loss": 0.565318717956543, + "step": 3200 + }, + { + "epoch": 26.83265306122449, + "grad_norm": 0.34011322259902954, + "learning_rate": 3.658943089430895e-05, + "loss": 0.5397001266479492, + "step": 3300 + }, + { + "epoch": 27.644897959183673, + "grad_norm": 0.312648206949234, + "learning_rate": 3.6182926829268295e-05, + "loss": 0.5236684799194335, + "step": 3400 + }, + { + "epoch": 28.457142857142856, + "grad_norm": 0.3535107970237732, + "learning_rate": 3.577642276422765e-05, + "loss": 0.5073324966430665, + "step": 3500 + }, + { + "epoch": 29.26938775510204, + "grad_norm": 0.32181501388549805, + "learning_rate": 3.5369918699186996e-05, + "loss": 0.49109951019287107, + "step": 3600 + }, + { + "epoch": 30.081632653061224, + "grad_norm": 0.32014670968055725, + "learning_rate": 3.4963414634146344e-05, + "loss": 0.47566513061523436, + "step": 3700 + }, + { + "epoch": 30.897959183673468, + "grad_norm": 0.3838709890842438, + "learning_rate": 3.455691056910569e-05, + "loss": 0.4567824172973633, + "step": 3800 + }, + { + "epoch": 31.710204081632654, + "grad_norm": 0.361082524061203, + "learning_rate": 3.415040650406504e-05, + "loss": 0.4356218719482422, + "step": 3900 + }, + { + "epoch": 32.522448979591836, + "grad_norm": 0.3454324007034302, + "learning_rate": 3.374390243902439e-05, + "loss": 0.4223041534423828, + "step": 4000 + }, + { + "epoch": 33.33469387755102, + "grad_norm": 0.3978846073150635, + "learning_rate": 3.333739837398374e-05, + "loss": 0.4082141876220703, + "step": 4100 + }, + { + "epoch": 34.14693877551021, + "grad_norm": 0.35300812125205994, + "learning_rate": 3.293089430894309e-05, + "loss": 0.3971371841430664, + "step": 4200 + }, + { + "epoch": 34.96326530612245, + "grad_norm": 0.39180585741996765, + "learning_rate": 3.252439024390244e-05, + "loss": 0.38660186767578125, + "step": 4300 + }, + { + "epoch": 35.775510204081634, + "grad_norm": 0.34937477111816406, + "learning_rate": 3.211788617886179e-05, + "loss": 0.36573085784912107, + "step": 4400 + }, + { + "epoch": 36.587755102040816, + "grad_norm": 0.34532594680786133, + "learning_rate": 3.171138211382114e-05, + "loss": 0.357391357421875, + "step": 4500 + }, + { + "epoch": 37.4, + "grad_norm": 0.3401789665222168, + "learning_rate": 3.130487804878049e-05, + "loss": 0.35067024230957033, + "step": 4600 + }, + { + "epoch": 38.21224489795918, + "grad_norm": 0.35807526111602783, + "learning_rate": 3.089837398373984e-05, + "loss": 0.33775680541992187, + "step": 4700 + }, + { + "epoch": 39.02448979591837, + "grad_norm": 0.3305448591709137, + "learning_rate": 3.049186991869919e-05, + "loss": 0.3307634735107422, + "step": 4800 + }, + { + "epoch": 39.840816326530614, + "grad_norm": 0.35710543394088745, + "learning_rate": 3.0085365853658536e-05, + "loss": 0.3170050811767578, + "step": 4900 + }, + { + "epoch": 40.6530612244898, + "grad_norm": 0.3527916967868805, + "learning_rate": 2.967886178861789e-05, + "loss": 0.3097914505004883, + "step": 5000 + }, + { + "epoch": 41.46530612244898, + "grad_norm": 0.32809746265411377, + "learning_rate": 2.9272357723577238e-05, + "loss": 0.3027458190917969, + "step": 5100 + }, + { + "epoch": 42.27755102040816, + "grad_norm": 0.31058913469314575, + "learning_rate": 2.8865853658536585e-05, + "loss": 0.29558998107910156, + "step": 5200 + }, + { + "epoch": 43.089795918367344, + "grad_norm": 0.34247487783432007, + "learning_rate": 2.8459349593495936e-05, + "loss": 0.2922693824768066, + "step": 5300 + }, + { + "epoch": 43.906122448979595, + "grad_norm": 0.30968013405799866, + "learning_rate": 2.8052845528455284e-05, + "loss": 0.2823493576049805, + "step": 5400 + }, + { + "epoch": 44.71836734693878, + "grad_norm": 0.3155519366264343, + "learning_rate": 2.7646341463414638e-05, + "loss": 0.27321760177612303, + "step": 5500 + }, + { + "epoch": 45.53061224489796, + "grad_norm": 0.31056052446365356, + "learning_rate": 2.7239837398373985e-05, + "loss": 0.2715290069580078, + "step": 5600 + }, + { + "epoch": 46.34285714285714, + "grad_norm": 0.31267017126083374, + "learning_rate": 2.6833333333333333e-05, + "loss": 0.2654402160644531, + "step": 5700 + }, + { + "epoch": 47.155102040816324, + "grad_norm": 0.32218316197395325, + "learning_rate": 2.6426829268292687e-05, + "loss": 0.26081199645996095, + "step": 5800 + }, + { + "epoch": 47.97142857142857, + "grad_norm": 0.34338584542274475, + "learning_rate": 2.6020325203252034e-05, + "loss": 0.2576237869262695, + "step": 5900 + }, + { + "epoch": 48.78367346938776, + "grad_norm": 0.33019116520881653, + "learning_rate": 2.5613821138211385e-05, + "loss": 0.24996454238891602, + "step": 6000 + }, + { + "epoch": 49.59591836734694, + "grad_norm": 0.2988639175891876, + "learning_rate": 2.5207317073170733e-05, + "loss": 0.2463224411010742, + "step": 6100 + }, + { + "epoch": 50.40816326530612, + "grad_norm": 0.31278201937675476, + "learning_rate": 2.4800813008130083e-05, + "loss": 0.2423969841003418, + "step": 6200 + }, + { + "epoch": 51.220408163265304, + "grad_norm": 0.33853426575660706, + "learning_rate": 2.4394308943089434e-05, + "loss": 0.2402469062805176, + "step": 6300 + }, + { + "epoch": 52.03265306122449, + "grad_norm": 0.30223262310028076, + "learning_rate": 2.3987804878048782e-05, + "loss": 0.23620229721069336, + "step": 6400 + }, + { + "epoch": 52.84897959183674, + "grad_norm": 0.29446688294410706, + "learning_rate": 2.3581300813008133e-05, + "loss": 0.23224014282226563, + "step": 6500 + }, + { + "epoch": 53.66122448979592, + "grad_norm": 0.32583415508270264, + "learning_rate": 2.317479674796748e-05, + "loss": 0.22917091369628906, + "step": 6600 + }, + { + "epoch": 54.4734693877551, + "grad_norm": 0.30859264731407166, + "learning_rate": 2.276829268292683e-05, + "loss": 0.2268912124633789, + "step": 6700 + }, + { + "epoch": 55.285714285714285, + "grad_norm": 0.31113457679748535, + "learning_rate": 2.236178861788618e-05, + "loss": 0.2232840347290039, + "step": 6800 + }, + { + "epoch": 56.09795918367347, + "grad_norm": 0.2787556052207947, + "learning_rate": 2.195528455284553e-05, + "loss": 0.22269392013549805, + "step": 6900 + }, + { + "epoch": 56.91428571428571, + "grad_norm": 0.31350278854370117, + "learning_rate": 2.154878048780488e-05, + "loss": 0.21771884918212892, + "step": 7000 + }, + { + "epoch": 57.7265306122449, + "grad_norm": 0.28963643312454224, + "learning_rate": 2.1142276422764227e-05, + "loss": 0.21578874588012695, + "step": 7100 + }, + { + "epoch": 58.53877551020408, + "grad_norm": 0.2832202911376953, + "learning_rate": 2.0735772357723578e-05, + "loss": 0.21327545166015624, + "step": 7200 + }, + { + "epoch": 59.351020408163265, + "grad_norm": 0.3022792339324951, + "learning_rate": 2.0329268292682925e-05, + "loss": 0.2126554489135742, + "step": 7300 + }, + { + "epoch": 60.16326530612245, + "grad_norm": 0.29425740242004395, + "learning_rate": 1.9922764227642276e-05, + "loss": 0.2091551399230957, + "step": 7400 + }, + { + "epoch": 60.97959183673469, + "grad_norm": 0.3006289303302765, + "learning_rate": 1.9516260162601627e-05, + "loss": 0.20839336395263672, + "step": 7500 + }, + { + "epoch": 61.79183673469388, + "grad_norm": 0.28310829401016235, + "learning_rate": 1.9109756097560978e-05, + "loss": 0.20591426849365235, + "step": 7600 + }, + { + "epoch": 62.60408163265306, + "grad_norm": 0.3061628043651581, + "learning_rate": 1.8703252032520325e-05, + "loss": 0.20315048217773438, + "step": 7700 + }, + { + "epoch": 63.416326530612245, + "grad_norm": 0.27300187945365906, + "learning_rate": 1.8296747967479673e-05, + "loss": 0.202825927734375, + "step": 7800 + }, + { + "epoch": 64.22857142857143, + "grad_norm": 0.24376684427261353, + "learning_rate": 1.7890243902439024e-05, + "loss": 0.20038375854492188, + "step": 7900 + }, + { + "epoch": 65.04081632653062, + "grad_norm": 0.28877273201942444, + "learning_rate": 1.7483739837398374e-05, + "loss": 0.19970365524291991, + "step": 8000 + }, + { + "epoch": 65.85714285714286, + "grad_norm": 0.23989948630332947, + "learning_rate": 1.7077235772357725e-05, + "loss": 0.19691890716552735, + "step": 8100 + }, + { + "epoch": 66.66938775510204, + "grad_norm": 0.28822559118270874, + "learning_rate": 1.6670731707317076e-05, + "loss": 0.19575874328613282, + "step": 8200 + }, + { + "epoch": 67.48163265306123, + "grad_norm": 0.2700895667076111, + "learning_rate": 1.6264227642276423e-05, + "loss": 0.1947219467163086, + "step": 8300 + }, + { + "epoch": 68.29387755102042, + "grad_norm": 0.2526496350765228, + "learning_rate": 1.585772357723577e-05, + "loss": 0.19402549743652345, + "step": 8400 + }, + { + "epoch": 69.10612244897959, + "grad_norm": 0.20475488901138306, + "learning_rate": 1.545121951219512e-05, + "loss": 0.1931273651123047, + "step": 8500 + }, + { + "epoch": 69.92244897959183, + "grad_norm": 0.2714834213256836, + "learning_rate": 1.5044715447154473e-05, + "loss": 0.19089672088623047, + "step": 8600 + }, + { + "epoch": 70.73469387755102, + "grad_norm": 0.2766830027103424, + "learning_rate": 1.4638211382113823e-05, + "loss": 0.18954217910766602, + "step": 8700 + }, + { + "epoch": 71.5469387755102, + "grad_norm": 0.3034886121749878, + "learning_rate": 1.423170731707317e-05, + "loss": 0.18781688690185547, + "step": 8800 + }, + { + "epoch": 72.35918367346939, + "grad_norm": 0.24485336244106293, + "learning_rate": 1.382520325203252e-05, + "loss": 0.18732297897338868, + "step": 8900 + }, + { + "epoch": 73.17142857142858, + "grad_norm": 0.23148897290229797, + "learning_rate": 1.341869918699187e-05, + "loss": 0.1871368408203125, + "step": 9000 + }, + { + "epoch": 73.98775510204082, + "grad_norm": 0.21915043890476227, + "learning_rate": 1.301219512195122e-05, + "loss": 0.18623947143554687, + "step": 9100 + }, + { + "epoch": 74.8, + "grad_norm": 0.23356078565120697, + "learning_rate": 1.260569105691057e-05, + "loss": 0.18433347702026368, + "step": 9200 + }, + { + "epoch": 75.61224489795919, + "grad_norm": 0.22005006670951843, + "learning_rate": 1.219918699186992e-05, + "loss": 0.18372562408447266, + "step": 9300 + }, + { + "epoch": 76.42448979591836, + "grad_norm": 0.24768972396850586, + "learning_rate": 1.1792682926829269e-05, + "loss": 0.18352956771850587, + "step": 9400 + }, + { + "epoch": 77.23673469387755, + "grad_norm": 0.23978039622306824, + "learning_rate": 1.1386178861788618e-05, + "loss": 0.18253284454345703, + "step": 9500 + }, + { + "epoch": 78.04897959183674, + "grad_norm": 0.229603111743927, + "learning_rate": 1.0979674796747969e-05, + "loss": 0.18194345474243165, + "step": 9600 + }, + { + "epoch": 78.86530612244898, + "grad_norm": 0.24125361442565918, + "learning_rate": 1.0573170731707318e-05, + "loss": 0.1807528877258301, + "step": 9700 + }, + { + "epoch": 79.67755102040816, + "grad_norm": 0.2205636203289032, + "learning_rate": 1.0166666666666667e-05, + "loss": 0.18057302474975587, + "step": 9800 + }, + { + "epoch": 80.48979591836735, + "grad_norm": 0.2393631935119629, + "learning_rate": 9.760162601626016e-06, + "loss": 0.1798857879638672, + "step": 9900 + }, + { + "epoch": 81.30204081632652, + "grad_norm": 0.24092160165309906, + "learning_rate": 9.353658536585367e-06, + "loss": 0.1784771728515625, + "step": 10000 + }, + { + "epoch": 82.11428571428571, + "grad_norm": 0.24599742889404297, + "learning_rate": 8.947154471544716e-06, + "loss": 0.17834564208984374, + "step": 10100 + }, + { + "epoch": 82.93061224489796, + "grad_norm": 0.22460418939590454, + "learning_rate": 8.540650406504065e-06, + "loss": 0.1772374153137207, + "step": 10200 + }, + { + "epoch": 83.74285714285715, + "grad_norm": 0.2190479338169098, + "learning_rate": 8.134146341463416e-06, + "loss": 0.17636322021484374, + "step": 10300 + }, + { + "epoch": 84.55510204081632, + "grad_norm": 0.2221534252166748, + "learning_rate": 7.727642276422763e-06, + "loss": 0.1762386703491211, + "step": 10400 + }, + { + "epoch": 85.36734693877551, + "grad_norm": 0.26244837045669556, + "learning_rate": 7.321138211382114e-06, + "loss": 0.1751699638366699, + "step": 10500 + }, + { + "epoch": 86.17959183673469, + "grad_norm": 0.22107520699501038, + "learning_rate": 6.914634146341464e-06, + "loss": 0.17485345840454103, + "step": 10600 + }, + { + "epoch": 86.99591836734695, + "grad_norm": 0.23993152379989624, + "learning_rate": 6.508130081300813e-06, + "loss": 0.1742844581604004, + "step": 10700 + }, + { + "epoch": 87.80816326530612, + "grad_norm": 0.2439497411251068, + "learning_rate": 6.101626016260163e-06, + "loss": 0.1729772186279297, + "step": 10800 + }, + { + "epoch": 88.62040816326531, + "grad_norm": 0.17270337045192719, + "learning_rate": 5.695121951219512e-06, + "loss": 0.17377023696899413, + "step": 10900 + }, + { + "epoch": 89.43265306122449, + "grad_norm": 0.21495409309864044, + "learning_rate": 5.288617886178862e-06, + "loss": 0.17239656448364257, + "step": 11000 + }, + { + "epoch": 90.24489795918367, + "grad_norm": 0.22590148448944092, + "learning_rate": 4.8821138211382115e-06, + "loss": 0.1718999481201172, + "step": 11100 + }, + { + "epoch": 91.05714285714286, + "grad_norm": 0.23818287253379822, + "learning_rate": 4.475609756097561e-06, + "loss": 0.17191593170166017, + "step": 11200 + }, + { + "epoch": 91.87346938775511, + "grad_norm": 0.20226499438285828, + "learning_rate": 4.069105691056911e-06, + "loss": 0.1716364097595215, + "step": 11300 + }, + { + "epoch": 92.68571428571428, + "grad_norm": 0.21012510359287262, + "learning_rate": 3.6626016260162606e-06, + "loss": 0.17097190856933595, + "step": 11400 + }, + { + "epoch": 93.49795918367347, + "grad_norm": 0.2207111269235611, + "learning_rate": 3.25609756097561e-06, + "loss": 0.17108001708984374, + "step": 11500 + }, + { + "epoch": 94.31020408163265, + "grad_norm": 0.24261923134326935, + "learning_rate": 2.8495934959349596e-06, + "loss": 0.16977045059204102, + "step": 11600 + }, + { + "epoch": 95.12244897959184, + "grad_norm": 0.21230651438236237, + "learning_rate": 2.4430894308943088e-06, + "loss": 0.17076728820800782, + "step": 11700 + }, + { + "epoch": 95.93877551020408, + "grad_norm": 0.23544330894947052, + "learning_rate": 2.0365853658536587e-06, + "loss": 0.1692482566833496, + "step": 11800 + }, + { + "epoch": 96.75102040816327, + "grad_norm": 0.21479812264442444, + "learning_rate": 1.630081300813008e-06, + "loss": 0.16898462295532227, + "step": 11900 + }, + { + "epoch": 97.56326530612245, + "grad_norm": 0.2458772510290146, + "learning_rate": 1.2235772357723578e-06, + "loss": 0.16863704681396485, + "step": 12000 + } + ], + "logging_steps": 100, + "max_steps": 12300, + "num_input_tokens_seen": 0, + "num_train_epochs": 100, + "save_steps": 100, + "stateful_callbacks": { + "TrainerControl": { + "args": { + "should_epoch_stop": false, + "should_evaluate": false, + "should_log": false, + "should_save": true, + "should_training_stop": false + }, + "attributes": {} + } + }, + "total_flos": 5682671524970496.0, + "train_batch_size": 8, + "trial_name": null, + "trial_params": null +} diff --git a/timecost/n3/realtabformer/rtf-n3-20260501_010320/rtf_checkpoints/checkpoint-12054/training_args.bin b/timecost/n3/realtabformer/rtf-n3-20260501_010320/rtf_checkpoints/checkpoint-12054/training_args.bin new file mode 100644 index 0000000000000000000000000000000000000000..34d68dc0e0fe1c1f12a2e581dd1b166aa7178a9e --- /dev/null +++ b/timecost/n3/realtabformer/rtf-n3-20260501_010320/rtf_checkpoints/checkpoint-12054/training_args.bin @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:9e2cd88337d1d846c6918d2b3b63fa3e5c93f12fefc082497590da854a564607 +size 5201 diff --git a/timecost/n3/realtabformer/rtf-n3-20260501_010320/rtf_checkpoints/checkpoint-12100/config.json b/timecost/n3/realtabformer/rtf-n3-20260501_010320/rtf_checkpoints/checkpoint-12100/config.json new file mode 100644 index 0000000000000000000000000000000000000000..1876b75d3abc713ca867fe8e643ea273dc9cea87 --- /dev/null +++ b/timecost/n3/realtabformer/rtf-n3-20260501_010320/rtf_checkpoints/checkpoint-12100/config.json @@ -0,0 +1,34 @@ +{ + "activation_function": "gelu_new", + "add_cross_attention": false, + "architectures": [ + "GPT2LMHeadModel" + ], + "attn_pdrop": 0.1, + "bos_token_id": 5, + "dtype": "float32", + "embd_pdrop": 0.1, + "eos_token_id": 6, + "initializer_range": 0.02, + "layer_norm_epsilon": 1e-05, + "model_type": "gpt2", + "n_embd": 768, + "n_head": 12, + "n_inner": null, + "n_layer": 6, + "n_positions": 1024, + "pad_token_id": null, + "reorder_and_upcast_attn": false, + "resid_pdrop": 0.1, + "scale_attn_by_inverse_layer_idx": false, + "scale_attn_weights": true, + "summary_activation": null, + "summary_first_dropout": 0.1, + "summary_proj_to_labels": true, + "summary_type": "cls_index", + "summary_use_proj": true, + "tie_word_embeddings": true, + "transformers_version": "5.5.3", + "use_cache": false, + "vocab_size": 304 +} diff --git a/timecost/n3/realtabformer/rtf-n3-20260501_010320/rtf_checkpoints/checkpoint-12100/generation_config.json b/timecost/n3/realtabformer/rtf-n3-20260501_010320/rtf_checkpoints/checkpoint-12100/generation_config.json new file mode 100644 index 0000000000000000000000000000000000000000..ffe89567780e75b5c22eade9be971483b9618f39 --- /dev/null +++ b/timecost/n3/realtabformer/rtf-n3-20260501_010320/rtf_checkpoints/checkpoint-12100/generation_config.json @@ -0,0 +1,9 @@ +{ + "_from_model_config": true, + "bos_token_id": 5, + "eos_token_id": 6, + "output_attentions": false, + "output_hidden_states": false, + "transformers_version": "5.5.3", + "use_cache": true +} diff --git a/timecost/n3/realtabformer/rtf-n3-20260501_010320/rtf_checkpoints/checkpoint-12100/model.safetensors b/timecost/n3/realtabformer/rtf-n3-20260501_010320/rtf_checkpoints/checkpoint-12100/model.safetensors new file mode 100644 index 0000000000000000000000000000000000000000..9a3b86a1ccfa26c8ca9fbcac2eea00a31c671a36 --- /dev/null +++ b/timecost/n3/realtabformer/rtf-n3-20260501_010320/rtf_checkpoints/checkpoint-12100/model.safetensors @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:be83ceffcba55a6c09775b1d120e0c5d177b55513c7e461eb06838ef991e12da +size 174202312 diff --git a/timecost/n3/realtabformer/rtf-n3-20260501_010320/rtf_checkpoints/checkpoint-12100/optimizer.pt b/timecost/n3/realtabformer/rtf-n3-20260501_010320/rtf_checkpoints/checkpoint-12100/optimizer.pt new file mode 100644 index 0000000000000000000000000000000000000000..984e398896f85223f4212c7ad2f264891a485eb9 --- /dev/null +++ b/timecost/n3/realtabformer/rtf-n3-20260501_010320/rtf_checkpoints/checkpoint-12100/optimizer.pt @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:f4207ed14e08012826b4ae80ce9fd5acd09e715e47b74ed6fa34e4d6f6465d2f +size 348453707 diff --git a/timecost/n3/realtabformer/rtf-n3-20260501_010320/rtf_checkpoints/checkpoint-12100/rng_state.pth b/timecost/n3/realtabformer/rtf-n3-20260501_010320/rtf_checkpoints/checkpoint-12100/rng_state.pth new file mode 100644 index 0000000000000000000000000000000000000000..9c877f2a2413e183ea1889df83a78411ebf98998 --- /dev/null +++ b/timecost/n3/realtabformer/rtf-n3-20260501_010320/rtf_checkpoints/checkpoint-12100/rng_state.pth @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:94b7c9b6782110008872d02f62884ec0d27fa4da8ab871626dd0a840d0fb0f2a +size 14645 diff --git a/timecost/n3/realtabformer/rtf-n3-20260501_010320/rtf_checkpoints/checkpoint-12100/scaler.pt b/timecost/n3/realtabformer/rtf-n3-20260501_010320/rtf_checkpoints/checkpoint-12100/scaler.pt new file mode 100644 index 0000000000000000000000000000000000000000..c24a3539a362969905291f6ce1c8cf3326b1f855 --- /dev/null +++ b/timecost/n3/realtabformer/rtf-n3-20260501_010320/rtf_checkpoints/checkpoint-12100/scaler.pt @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:1d95536e67de0a90cf27c2165c9439e26ed5f631dcac696067935cc73afcacc2 +size 1383 diff --git a/timecost/n3/realtabformer/rtf-n3-20260501_010320/rtf_checkpoints/checkpoint-12100/scheduler.pt b/timecost/n3/realtabformer/rtf-n3-20260501_010320/rtf_checkpoints/checkpoint-12100/scheduler.pt new file mode 100644 index 0000000000000000000000000000000000000000..cb8422756760e766361110f352c03bf970969950 --- /dev/null +++ b/timecost/n3/realtabformer/rtf-n3-20260501_010320/rtf_checkpoints/checkpoint-12100/scheduler.pt @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:cb4c2bb3b0c62cbba0ca82a26f4768964c68a941e64ddc1a6656c92fde2bd983 +size 1465 diff --git a/timecost/n3/realtabformer/rtf-n3-20260501_010320/rtf_checkpoints/checkpoint-12100/trainer_state.json b/timecost/n3/realtabformer/rtf-n3-20260501_010320/rtf_checkpoints/checkpoint-12100/trainer_state.json new file mode 100644 index 0000000000000000000000000000000000000000..d5ec444420abe3b8539634cdd065b3e824903e90 --- /dev/null +++ b/timecost/n3/realtabformer/rtf-n3-20260501_010320/rtf_checkpoints/checkpoint-12100/trainer_state.json @@ -0,0 +1,881 @@ +{ + "best_global_step": null, + "best_metric": null, + "best_model_checkpoint": null, + "epoch": 98.37551020408164, + "eval_steps": 100, + "global_step": 12100, + "is_hyper_param_search": false, + "is_local_process_zero": true, + "is_world_process_zero": true, + "log_history": [ + { + "epoch": 0.8163265306122449, + "grad_norm": 0.20639584958553314, + "learning_rate": 4.9597560975609755e-05, + "loss": 1.4745872497558594, + "step": 100 + }, + { + "epoch": 1.6285714285714286, + "grad_norm": 0.1949000358581543, + "learning_rate": 4.91910569105691e-05, + "loss": 0.8799897766113282, + "step": 200 + }, + { + "epoch": 2.440816326530612, + "grad_norm": 0.19164182245731354, + "learning_rate": 4.878455284552846e-05, + "loss": 0.8385199737548829, + "step": 300 + }, + { + "epoch": 3.253061224489796, + "grad_norm": 0.1767745316028595, + "learning_rate": 4.8378048780487804e-05, + "loss": 0.8195798492431641, + "step": 400 + }, + { + "epoch": 4.0653061224489795, + "grad_norm": 0.17210832238197327, + "learning_rate": 4.797154471544716e-05, + "loss": 0.805633544921875, + "step": 500 + }, + { + "epoch": 4.881632653061224, + "grad_norm": 0.18165253102779388, + "learning_rate": 4.7565040650406506e-05, + "loss": 0.7969439697265625, + "step": 600 + }, + { + "epoch": 5.6938775510204085, + "grad_norm": 0.19815795123577118, + "learning_rate": 4.715853658536585e-05, + "loss": 0.7886590576171875, + "step": 700 + }, + { + "epoch": 6.506122448979592, + "grad_norm": 0.17318786680698395, + "learning_rate": 4.675203252032521e-05, + "loss": 0.7834711456298828, + "step": 800 + }, + { + "epoch": 7.318367346938776, + "grad_norm": 0.1702745109796524, + "learning_rate": 4.6345528455284555e-05, + "loss": 0.7785483551025391, + "step": 900 + }, + { + "epoch": 8.130612244897959, + "grad_norm": 0.1857929825782776, + "learning_rate": 4.593902439024391e-05, + "loss": 0.7725027465820312, + "step": 1000 + }, + { + "epoch": 8.946938775510205, + "grad_norm": 0.17213623225688934, + "learning_rate": 4.5532520325203256e-05, + "loss": 0.7679139709472657, + "step": 1100 + }, + { + "epoch": 9.759183673469387, + "grad_norm": 0.173990860581398, + "learning_rate": 4.5126016260162604e-05, + "loss": 0.7615008544921875, + "step": 1200 + }, + { + "epoch": 10.571428571428571, + "grad_norm": 0.1709279716014862, + "learning_rate": 4.471951219512195e-05, + "loss": 0.7550846862792969, + "step": 1300 + }, + { + "epoch": 11.383673469387755, + "grad_norm": 0.1852250099182129, + "learning_rate": 4.43130081300813e-05, + "loss": 0.7509546661376953, + "step": 1400 + }, + { + "epoch": 12.19591836734694, + "grad_norm": 0.19050434231758118, + "learning_rate": 4.390650406504065e-05, + "loss": 0.7481673431396484, + "step": 1500 + }, + { + "epoch": 13.008163265306122, + "grad_norm": 0.17918676137924194, + "learning_rate": 4.35e-05, + "loss": 0.7416070556640625, + "step": 1600 + }, + { + "epoch": 13.824489795918367, + "grad_norm": 0.20031221210956573, + "learning_rate": 4.309349593495935e-05, + "loss": 0.7341732025146485, + "step": 1700 + }, + { + "epoch": 14.636734693877552, + "grad_norm": 0.206989124417305, + "learning_rate": 4.26869918699187e-05, + "loss": 0.7266737365722656, + "step": 1800 + }, + { + "epoch": 15.448979591836734, + "grad_norm": 0.20765261352062225, + "learning_rate": 4.228048780487805e-05, + "loss": 0.7223382568359376, + "step": 1900 + }, + { + "epoch": 16.261224489795918, + "grad_norm": 0.21891070902347565, + "learning_rate": 4.1873983739837404e-05, + "loss": 0.7137351226806641, + "step": 2000 + }, + { + "epoch": 17.073469387755104, + "grad_norm": 0.21613141894340515, + "learning_rate": 4.146747967479675e-05, + "loss": 0.7111404418945313, + "step": 2100 + }, + { + "epoch": 17.889795918367348, + "grad_norm": 0.21502180397510529, + "learning_rate": 4.10609756097561e-05, + "loss": 0.6979566192626954, + "step": 2200 + }, + { + "epoch": 18.70204081632653, + "grad_norm": 0.22264128923416138, + "learning_rate": 4.065447154471545e-05, + "loss": 0.6864246368408203, + "step": 2300 + }, + { + "epoch": 19.514285714285712, + "grad_norm": 0.22031748294830322, + "learning_rate": 4.02479674796748e-05, + "loss": 0.678118896484375, + "step": 2400 + }, + { + "epoch": 20.3265306122449, + "grad_norm": 0.24292652308940887, + "learning_rate": 3.984146341463415e-05, + "loss": 0.6696414184570313, + "step": 2500 + }, + { + "epoch": 21.13877551020408, + "grad_norm": 0.23444044589996338, + "learning_rate": 3.9434959349593495e-05, + "loss": 0.6571144866943359, + "step": 2600 + }, + { + "epoch": 21.955102040816328, + "grad_norm": 0.26427289843559265, + "learning_rate": 3.902845528455284e-05, + "loss": 0.644508056640625, + "step": 2700 + }, + { + "epoch": 22.76734693877551, + "grad_norm": 0.2826888859272003, + "learning_rate": 3.8621951219512196e-05, + "loss": 0.6250789260864258, + "step": 2800 + }, + { + "epoch": 23.579591836734693, + "grad_norm": 0.28523582220077515, + "learning_rate": 3.8215447154471544e-05, + "loss": 0.6115097045898438, + "step": 2900 + }, + { + "epoch": 24.39183673469388, + "grad_norm": 0.3078940808773041, + "learning_rate": 3.78089430894309e-05, + "loss": 0.5938611602783204, + "step": 3000 + }, + { + "epoch": 25.20408163265306, + "grad_norm": 0.2929214537143707, + "learning_rate": 3.7402439024390246e-05, + "loss": 0.5813701629638672, + "step": 3100 + }, + { + "epoch": 26.016326530612243, + "grad_norm": 0.29797449707984924, + "learning_rate": 3.699593495934959e-05, + "loss": 0.565318717956543, + "step": 3200 + }, + { + "epoch": 26.83265306122449, + "grad_norm": 0.34011322259902954, + "learning_rate": 3.658943089430895e-05, + "loss": 0.5397001266479492, + "step": 3300 + }, + { + "epoch": 27.644897959183673, + "grad_norm": 0.312648206949234, + "learning_rate": 3.6182926829268295e-05, + "loss": 0.5236684799194335, + "step": 3400 + }, + { + "epoch": 28.457142857142856, + "grad_norm": 0.3535107970237732, + "learning_rate": 3.577642276422765e-05, + "loss": 0.5073324966430665, + "step": 3500 + }, + { + "epoch": 29.26938775510204, + "grad_norm": 0.32181501388549805, + "learning_rate": 3.5369918699186996e-05, + "loss": 0.49109951019287107, + "step": 3600 + }, + { + "epoch": 30.081632653061224, + "grad_norm": 0.32014670968055725, + "learning_rate": 3.4963414634146344e-05, + "loss": 0.47566513061523436, + "step": 3700 + }, + { + "epoch": 30.897959183673468, + "grad_norm": 0.3838709890842438, + "learning_rate": 3.455691056910569e-05, + "loss": 0.4567824172973633, + "step": 3800 + }, + { + "epoch": 31.710204081632654, + "grad_norm": 0.361082524061203, + "learning_rate": 3.415040650406504e-05, + "loss": 0.4356218719482422, + "step": 3900 + }, + { + "epoch": 32.522448979591836, + "grad_norm": 0.3454324007034302, + "learning_rate": 3.374390243902439e-05, + "loss": 0.4223041534423828, + "step": 4000 + }, + { + "epoch": 33.33469387755102, + "grad_norm": 0.3978846073150635, + "learning_rate": 3.333739837398374e-05, + "loss": 0.4082141876220703, + "step": 4100 + }, + { + "epoch": 34.14693877551021, + "grad_norm": 0.35300812125205994, + "learning_rate": 3.293089430894309e-05, + "loss": 0.3971371841430664, + "step": 4200 + }, + { + "epoch": 34.96326530612245, + "grad_norm": 0.39180585741996765, + "learning_rate": 3.252439024390244e-05, + "loss": 0.38660186767578125, + "step": 4300 + }, + { + "epoch": 35.775510204081634, + "grad_norm": 0.34937477111816406, + "learning_rate": 3.211788617886179e-05, + "loss": 0.36573085784912107, + "step": 4400 + }, + { + "epoch": 36.587755102040816, + "grad_norm": 0.34532594680786133, + "learning_rate": 3.171138211382114e-05, + "loss": 0.357391357421875, + "step": 4500 + }, + { + "epoch": 37.4, + "grad_norm": 0.3401789665222168, + "learning_rate": 3.130487804878049e-05, + "loss": 0.35067024230957033, + "step": 4600 + }, + { + "epoch": 38.21224489795918, + "grad_norm": 0.35807526111602783, + "learning_rate": 3.089837398373984e-05, + "loss": 0.33775680541992187, + "step": 4700 + }, + { + "epoch": 39.02448979591837, + "grad_norm": 0.3305448591709137, + "learning_rate": 3.049186991869919e-05, + "loss": 0.3307634735107422, + "step": 4800 + }, + { + "epoch": 39.840816326530614, + "grad_norm": 0.35710543394088745, + "learning_rate": 3.0085365853658536e-05, + "loss": 0.3170050811767578, + "step": 4900 + }, + { + "epoch": 40.6530612244898, + "grad_norm": 0.3527916967868805, + "learning_rate": 2.967886178861789e-05, + "loss": 0.3097914505004883, + "step": 5000 + }, + { + "epoch": 41.46530612244898, + "grad_norm": 0.32809746265411377, + "learning_rate": 2.9272357723577238e-05, + "loss": 0.3027458190917969, + "step": 5100 + }, + { + "epoch": 42.27755102040816, + "grad_norm": 0.31058913469314575, + "learning_rate": 2.8865853658536585e-05, + "loss": 0.29558998107910156, + "step": 5200 + }, + { + "epoch": 43.089795918367344, + "grad_norm": 0.34247487783432007, + "learning_rate": 2.8459349593495936e-05, + "loss": 0.2922693824768066, + "step": 5300 + }, + { + "epoch": 43.906122448979595, + "grad_norm": 0.30968013405799866, + "learning_rate": 2.8052845528455284e-05, + "loss": 0.2823493576049805, + "step": 5400 + }, + { + "epoch": 44.71836734693878, + "grad_norm": 0.3155519366264343, + "learning_rate": 2.7646341463414638e-05, + "loss": 0.27321760177612303, + "step": 5500 + }, + { + "epoch": 45.53061224489796, + "grad_norm": 0.31056052446365356, + "learning_rate": 2.7239837398373985e-05, + "loss": 0.2715290069580078, + "step": 5600 + }, + { + "epoch": 46.34285714285714, + "grad_norm": 0.31267017126083374, + "learning_rate": 2.6833333333333333e-05, + "loss": 0.2654402160644531, + "step": 5700 + }, + { + "epoch": 47.155102040816324, + "grad_norm": 0.32218316197395325, + "learning_rate": 2.6426829268292687e-05, + "loss": 0.26081199645996095, + "step": 5800 + }, + { + "epoch": 47.97142857142857, + "grad_norm": 0.34338584542274475, + "learning_rate": 2.6020325203252034e-05, + "loss": 0.2576237869262695, + "step": 5900 + }, + { + "epoch": 48.78367346938776, + "grad_norm": 0.33019116520881653, + "learning_rate": 2.5613821138211385e-05, + "loss": 0.24996454238891602, + "step": 6000 + }, + { + "epoch": 49.59591836734694, + "grad_norm": 0.2988639175891876, + "learning_rate": 2.5207317073170733e-05, + "loss": 0.2463224411010742, + "step": 6100 + }, + { + "epoch": 50.40816326530612, + "grad_norm": 0.31278201937675476, + "learning_rate": 2.4800813008130083e-05, + "loss": 0.2423969841003418, + "step": 6200 + }, + { + "epoch": 51.220408163265304, + "grad_norm": 0.33853426575660706, + "learning_rate": 2.4394308943089434e-05, + "loss": 0.2402469062805176, + "step": 6300 + }, + { + "epoch": 52.03265306122449, + "grad_norm": 0.30223262310028076, + "learning_rate": 2.3987804878048782e-05, + "loss": 0.23620229721069336, + "step": 6400 + }, + { + "epoch": 52.84897959183674, + "grad_norm": 0.29446688294410706, + "learning_rate": 2.3581300813008133e-05, + "loss": 0.23224014282226563, + "step": 6500 + }, + { + "epoch": 53.66122448979592, + "grad_norm": 0.32583415508270264, + "learning_rate": 2.317479674796748e-05, + "loss": 0.22917091369628906, + "step": 6600 + }, + { + "epoch": 54.4734693877551, + "grad_norm": 0.30859264731407166, + "learning_rate": 2.276829268292683e-05, + "loss": 0.2268912124633789, + "step": 6700 + }, + { + "epoch": 55.285714285714285, + "grad_norm": 0.31113457679748535, + "learning_rate": 2.236178861788618e-05, + "loss": 0.2232840347290039, + "step": 6800 + }, + { + "epoch": 56.09795918367347, + "grad_norm": 0.2787556052207947, + "learning_rate": 2.195528455284553e-05, + "loss": 0.22269392013549805, + "step": 6900 + }, + { + "epoch": 56.91428571428571, + "grad_norm": 0.31350278854370117, + "learning_rate": 2.154878048780488e-05, + "loss": 0.21771884918212892, + "step": 7000 + }, + { + "epoch": 57.7265306122449, + "grad_norm": 0.28963643312454224, + "learning_rate": 2.1142276422764227e-05, + "loss": 0.21578874588012695, + "step": 7100 + }, + { + "epoch": 58.53877551020408, + "grad_norm": 0.2832202911376953, + "learning_rate": 2.0735772357723578e-05, + "loss": 0.21327545166015624, + "step": 7200 + }, + { + "epoch": 59.351020408163265, + "grad_norm": 0.3022792339324951, + "learning_rate": 2.0329268292682925e-05, + "loss": 0.2126554489135742, + "step": 7300 + }, + { + "epoch": 60.16326530612245, + "grad_norm": 0.29425740242004395, + "learning_rate": 1.9922764227642276e-05, + "loss": 0.2091551399230957, + "step": 7400 + }, + { + "epoch": 60.97959183673469, + "grad_norm": 0.3006289303302765, + "learning_rate": 1.9516260162601627e-05, + "loss": 0.20839336395263672, + "step": 7500 + }, + { + "epoch": 61.79183673469388, + "grad_norm": 0.28310829401016235, + "learning_rate": 1.9109756097560978e-05, + "loss": 0.20591426849365235, + "step": 7600 + }, + { + "epoch": 62.60408163265306, + "grad_norm": 0.3061628043651581, + "learning_rate": 1.8703252032520325e-05, + "loss": 0.20315048217773438, + "step": 7700 + }, + { + "epoch": 63.416326530612245, + "grad_norm": 0.27300187945365906, + "learning_rate": 1.8296747967479673e-05, + "loss": 0.202825927734375, + "step": 7800 + }, + { + "epoch": 64.22857142857143, + "grad_norm": 0.24376684427261353, + "learning_rate": 1.7890243902439024e-05, + "loss": 0.20038375854492188, + "step": 7900 + }, + { + "epoch": 65.04081632653062, + "grad_norm": 0.28877273201942444, + "learning_rate": 1.7483739837398374e-05, + "loss": 0.19970365524291991, + "step": 8000 + }, + { + "epoch": 65.85714285714286, + "grad_norm": 0.23989948630332947, + "learning_rate": 1.7077235772357725e-05, + "loss": 0.19691890716552735, + "step": 8100 + }, + { + "epoch": 66.66938775510204, + "grad_norm": 0.28822559118270874, + "learning_rate": 1.6670731707317076e-05, + "loss": 0.19575874328613282, + "step": 8200 + }, + { + "epoch": 67.48163265306123, + "grad_norm": 0.2700895667076111, + "learning_rate": 1.6264227642276423e-05, + "loss": 0.1947219467163086, + "step": 8300 + }, + { + "epoch": 68.29387755102042, + "grad_norm": 0.2526496350765228, + "learning_rate": 1.585772357723577e-05, + "loss": 0.19402549743652345, + "step": 8400 + }, + { + "epoch": 69.10612244897959, + "grad_norm": 0.20475488901138306, + "learning_rate": 1.545121951219512e-05, + "loss": 0.1931273651123047, + "step": 8500 + }, + { + "epoch": 69.92244897959183, + "grad_norm": 0.2714834213256836, + "learning_rate": 1.5044715447154473e-05, + "loss": 0.19089672088623047, + "step": 8600 + }, + { + "epoch": 70.73469387755102, + "grad_norm": 0.2766830027103424, + "learning_rate": 1.4638211382113823e-05, + "loss": 0.18954217910766602, + "step": 8700 + }, + { + "epoch": 71.5469387755102, + "grad_norm": 0.3034886121749878, + "learning_rate": 1.423170731707317e-05, + "loss": 0.18781688690185547, + "step": 8800 + }, + { + "epoch": 72.35918367346939, + "grad_norm": 0.24485336244106293, + "learning_rate": 1.382520325203252e-05, + "loss": 0.18732297897338868, + "step": 8900 + }, + { + "epoch": 73.17142857142858, + "grad_norm": 0.23148897290229797, + "learning_rate": 1.341869918699187e-05, + "loss": 0.1871368408203125, + "step": 9000 + }, + { + "epoch": 73.98775510204082, + "grad_norm": 0.21915043890476227, + "learning_rate": 1.301219512195122e-05, + "loss": 0.18623947143554687, + "step": 9100 + }, + { + "epoch": 74.8, + "grad_norm": 0.23356078565120697, + "learning_rate": 1.260569105691057e-05, + "loss": 0.18433347702026368, + "step": 9200 + }, + { + "epoch": 75.61224489795919, + "grad_norm": 0.22005006670951843, + "learning_rate": 1.219918699186992e-05, + "loss": 0.18372562408447266, + "step": 9300 + }, + { + "epoch": 76.42448979591836, + "grad_norm": 0.24768972396850586, + "learning_rate": 1.1792682926829269e-05, + "loss": 0.18352956771850587, + "step": 9400 + }, + { + "epoch": 77.23673469387755, + "grad_norm": 0.23978039622306824, + "learning_rate": 1.1386178861788618e-05, + "loss": 0.18253284454345703, + "step": 9500 + }, + { + "epoch": 78.04897959183674, + "grad_norm": 0.229603111743927, + "learning_rate": 1.0979674796747969e-05, + "loss": 0.18194345474243165, + "step": 9600 + }, + { + "epoch": 78.86530612244898, + "grad_norm": 0.24125361442565918, + "learning_rate": 1.0573170731707318e-05, + "loss": 0.1807528877258301, + "step": 9700 + }, + { + "epoch": 79.67755102040816, + "grad_norm": 0.2205636203289032, + "learning_rate": 1.0166666666666667e-05, + "loss": 0.18057302474975587, + "step": 9800 + }, + { + "epoch": 80.48979591836735, + "grad_norm": 0.2393631935119629, + "learning_rate": 9.760162601626016e-06, + "loss": 0.1798857879638672, + "step": 9900 + }, + { + "epoch": 81.30204081632652, + "grad_norm": 0.24092160165309906, + "learning_rate": 9.353658536585367e-06, + "loss": 0.1784771728515625, + "step": 10000 + }, + { + "epoch": 82.11428571428571, + "grad_norm": 0.24599742889404297, + "learning_rate": 8.947154471544716e-06, + "loss": 0.17834564208984374, + "step": 10100 + }, + { + "epoch": 82.93061224489796, + "grad_norm": 0.22460418939590454, + "learning_rate": 8.540650406504065e-06, + "loss": 0.1772374153137207, + "step": 10200 + }, + { + "epoch": 83.74285714285715, + "grad_norm": 0.2190479338169098, + "learning_rate": 8.134146341463416e-06, + "loss": 0.17636322021484374, + "step": 10300 + }, + { + "epoch": 84.55510204081632, + "grad_norm": 0.2221534252166748, + "learning_rate": 7.727642276422763e-06, + "loss": 0.1762386703491211, + "step": 10400 + }, + { + "epoch": 85.36734693877551, + "grad_norm": 0.26244837045669556, + "learning_rate": 7.321138211382114e-06, + "loss": 0.1751699638366699, + "step": 10500 + }, + { + "epoch": 86.17959183673469, + "grad_norm": 0.22107520699501038, + "learning_rate": 6.914634146341464e-06, + "loss": 0.17485345840454103, + "step": 10600 + }, + { + "epoch": 86.99591836734695, + "grad_norm": 0.23993152379989624, + "learning_rate": 6.508130081300813e-06, + "loss": 0.1742844581604004, + "step": 10700 + }, + { + "epoch": 87.80816326530612, + "grad_norm": 0.2439497411251068, + "learning_rate": 6.101626016260163e-06, + "loss": 0.1729772186279297, + "step": 10800 + }, + { + "epoch": 88.62040816326531, + "grad_norm": 0.17270337045192719, + "learning_rate": 5.695121951219512e-06, + "loss": 0.17377023696899413, + "step": 10900 + }, + { + "epoch": 89.43265306122449, + "grad_norm": 0.21495409309864044, + "learning_rate": 5.288617886178862e-06, + "loss": 0.17239656448364257, + "step": 11000 + }, + { + "epoch": 90.24489795918367, + "grad_norm": 0.22590148448944092, + "learning_rate": 4.8821138211382115e-06, + "loss": 0.1718999481201172, + "step": 11100 + }, + { + "epoch": 91.05714285714286, + "grad_norm": 0.23818287253379822, + "learning_rate": 4.475609756097561e-06, + "loss": 0.17191593170166017, + "step": 11200 + }, + { + "epoch": 91.87346938775511, + "grad_norm": 0.20226499438285828, + "learning_rate": 4.069105691056911e-06, + "loss": 0.1716364097595215, + "step": 11300 + }, + { + "epoch": 92.68571428571428, + "grad_norm": 0.21012510359287262, + "learning_rate": 3.6626016260162606e-06, + "loss": 0.17097190856933595, + "step": 11400 + }, + { + "epoch": 93.49795918367347, + "grad_norm": 0.2207111269235611, + "learning_rate": 3.25609756097561e-06, + "loss": 0.17108001708984374, + "step": 11500 + }, + { + "epoch": 94.31020408163265, + "grad_norm": 0.24261923134326935, + "learning_rate": 2.8495934959349596e-06, + "loss": 0.16977045059204102, + "step": 11600 + }, + { + "epoch": 95.12244897959184, + "grad_norm": 0.21230651438236237, + "learning_rate": 2.4430894308943088e-06, + "loss": 0.17076728820800782, + "step": 11700 + }, + { + "epoch": 95.93877551020408, + "grad_norm": 0.23544330894947052, + "learning_rate": 2.0365853658536587e-06, + "loss": 0.1692482566833496, + "step": 11800 + }, + { + "epoch": 96.75102040816327, + "grad_norm": 0.21479812264442444, + "learning_rate": 1.630081300813008e-06, + "loss": 0.16898462295532227, + "step": 11900 + }, + { + "epoch": 97.56326530612245, + "grad_norm": 0.2458772510290146, + "learning_rate": 1.2235772357723578e-06, + "loss": 0.16863704681396485, + "step": 12000 + }, + { + "epoch": 98.37551020408164, + "grad_norm": 0.255893349647522, + "learning_rate": 8.170731707317074e-07, + "loss": 0.16806327819824218, + "step": 12100 + } + ], + "logging_steps": 100, + "max_steps": 12300, + "num_input_tokens_seen": 0, + "num_train_epochs": 100, + "save_steps": 100, + "stateful_callbacks": { + "TrainerControl": { + "args": { + "should_epoch_stop": false, + "should_evaluate": false, + "should_log": false, + "should_save": true, + "should_training_stop": false + }, + "attributes": {} + } + }, + "total_flos": 5704457141551104.0, + "train_batch_size": 8, + "trial_name": null, + "trial_params": null +} diff --git a/timecost/n3/realtabformer/rtf-n3-20260501_010320/rtf_checkpoints/checkpoint-12100/training_args.bin b/timecost/n3/realtabformer/rtf-n3-20260501_010320/rtf_checkpoints/checkpoint-12100/training_args.bin new file mode 100644 index 0000000000000000000000000000000000000000..34d68dc0e0fe1c1f12a2e581dd1b166aa7178a9e --- /dev/null +++ b/timecost/n3/realtabformer/rtf-n3-20260501_010320/rtf_checkpoints/checkpoint-12100/training_args.bin @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:9e2cd88337d1d846c6918d2b3b63fa3e5c93f12fefc082497590da854a564607 +size 5201 diff --git a/timecost/n3/realtabformer/rtf-n3-20260501_010320/rtf_checkpoints/checkpoint-12177/config.json b/timecost/n3/realtabformer/rtf-n3-20260501_010320/rtf_checkpoints/checkpoint-12177/config.json new file mode 100644 index 0000000000000000000000000000000000000000..1876b75d3abc713ca867fe8e643ea273dc9cea87 --- /dev/null +++ b/timecost/n3/realtabformer/rtf-n3-20260501_010320/rtf_checkpoints/checkpoint-12177/config.json @@ -0,0 +1,34 @@ +{ + "activation_function": "gelu_new", + "add_cross_attention": false, + "architectures": [ + "GPT2LMHeadModel" + ], + "attn_pdrop": 0.1, + "bos_token_id": 5, + "dtype": "float32", + "embd_pdrop": 0.1, + "eos_token_id": 6, + "initializer_range": 0.02, + "layer_norm_epsilon": 1e-05, + "model_type": "gpt2", + "n_embd": 768, + "n_head": 12, + "n_inner": null, + "n_layer": 6, + "n_positions": 1024, + "pad_token_id": null, + "reorder_and_upcast_attn": false, + "resid_pdrop": 0.1, + "scale_attn_by_inverse_layer_idx": false, + "scale_attn_weights": true, + "summary_activation": null, + "summary_first_dropout": 0.1, + "summary_proj_to_labels": true, + "summary_type": "cls_index", + "summary_use_proj": true, + "tie_word_embeddings": true, + "transformers_version": "5.5.3", + "use_cache": false, + "vocab_size": 304 +} diff --git a/timecost/n3/realtabformer/rtf-n3-20260501_010320/rtf_checkpoints/checkpoint-12177/generation_config.json b/timecost/n3/realtabformer/rtf-n3-20260501_010320/rtf_checkpoints/checkpoint-12177/generation_config.json new file mode 100644 index 0000000000000000000000000000000000000000..ffe89567780e75b5c22eade9be971483b9618f39 --- /dev/null +++ b/timecost/n3/realtabformer/rtf-n3-20260501_010320/rtf_checkpoints/checkpoint-12177/generation_config.json @@ -0,0 +1,9 @@ +{ + "_from_model_config": true, + "bos_token_id": 5, + "eos_token_id": 6, + "output_attentions": false, + "output_hidden_states": false, + "transformers_version": "5.5.3", + "use_cache": true +} diff --git a/timecost/n3/realtabformer/rtf-n3-20260501_010320/rtf_checkpoints/checkpoint-12177/model.safetensors b/timecost/n3/realtabformer/rtf-n3-20260501_010320/rtf_checkpoints/checkpoint-12177/model.safetensors new file mode 100644 index 0000000000000000000000000000000000000000..f2a7eed86805ecbaa3e75917737fd4b91e0b5709 --- /dev/null +++ b/timecost/n3/realtabformer/rtf-n3-20260501_010320/rtf_checkpoints/checkpoint-12177/model.safetensors @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:dbc50e2639fc08e0186174ff0828718fea1b91ee7589b67ce2255bc286ec8b08 +size 174202312 diff --git a/timecost/n3/realtabformer/rtf-n3-20260501_010320/rtf_checkpoints/checkpoint-12177/optimizer.pt b/timecost/n3/realtabformer/rtf-n3-20260501_010320/rtf_checkpoints/checkpoint-12177/optimizer.pt new file mode 100644 index 0000000000000000000000000000000000000000..8b4a7dae707a74f932373a33c93f0d4b878de7b7 --- /dev/null +++ b/timecost/n3/realtabformer/rtf-n3-20260501_010320/rtf_checkpoints/checkpoint-12177/optimizer.pt @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:5105eeaa041cf8ef9120ad8963b4789eadaa7f008ac57c722df06e4e96078638 +size 348453707 diff --git a/timecost/n3/realtabformer/rtf-n3-20260501_010320/rtf_checkpoints/checkpoint-12177/rng_state.pth b/timecost/n3/realtabformer/rtf-n3-20260501_010320/rtf_checkpoints/checkpoint-12177/rng_state.pth new file mode 100644 index 0000000000000000000000000000000000000000..bd5e88f51288cce1434cc4c1fa3c7e8d31aa430f --- /dev/null +++ b/timecost/n3/realtabformer/rtf-n3-20260501_010320/rtf_checkpoints/checkpoint-12177/rng_state.pth @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:317a313e8f0a4bb71e980913a87061af3f18427ccc0b48dff815da1aee87fe03 +size 14645 diff --git a/timecost/n3/realtabformer/rtf-n3-20260501_010320/rtf_checkpoints/checkpoint-12177/scaler.pt b/timecost/n3/realtabformer/rtf-n3-20260501_010320/rtf_checkpoints/checkpoint-12177/scaler.pt new file mode 100644 index 0000000000000000000000000000000000000000..903ce9c40d9044509c6574df8065746f663d1e98 --- /dev/null +++ b/timecost/n3/realtabformer/rtf-n3-20260501_010320/rtf_checkpoints/checkpoint-12177/scaler.pt @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:27bc1bf49d253235dbe7643d62aed45c0dd3c62c11c1cdade2e735c3cf39f4d1 +size 1383 diff --git a/timecost/n3/realtabformer/rtf-n3-20260501_010320/rtf_checkpoints/checkpoint-12177/scheduler.pt b/timecost/n3/realtabformer/rtf-n3-20260501_010320/rtf_checkpoints/checkpoint-12177/scheduler.pt new file mode 100644 index 0000000000000000000000000000000000000000..0432e93028ed197c6230de265091734129d4ad32 --- /dev/null +++ b/timecost/n3/realtabformer/rtf-n3-20260501_010320/rtf_checkpoints/checkpoint-12177/scheduler.pt @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:92325e3b4ccd91ed7e4b8e14ebddebc86914338c3b1d80b98f9f4fd2ba01a288 +size 1465 diff --git a/timecost/n3/realtabformer/rtf-n3-20260501_010320/rtf_checkpoints/checkpoint-12177/trainer_state.json b/timecost/n3/realtabformer/rtf-n3-20260501_010320/rtf_checkpoints/checkpoint-12177/trainer_state.json new file mode 100644 index 0000000000000000000000000000000000000000..f6ef8457f3058f47d24eaea521392e5e08c721c7 --- /dev/null +++ b/timecost/n3/realtabformer/rtf-n3-20260501_010320/rtf_checkpoints/checkpoint-12177/trainer_state.json @@ -0,0 +1,881 @@ +{ + "best_global_step": null, + "best_metric": null, + "best_model_checkpoint": null, + "epoch": 99.0, + "eval_steps": 100, + "global_step": 12177, + "is_hyper_param_search": false, + "is_local_process_zero": true, + "is_world_process_zero": true, + "log_history": [ + { + "epoch": 0.8163265306122449, + "grad_norm": 0.20639584958553314, + "learning_rate": 4.9597560975609755e-05, + "loss": 1.4745872497558594, + "step": 100 + }, + { + "epoch": 1.6285714285714286, + "grad_norm": 0.1949000358581543, + "learning_rate": 4.91910569105691e-05, + "loss": 0.8799897766113282, + "step": 200 + }, + { + "epoch": 2.440816326530612, + "grad_norm": 0.19164182245731354, + "learning_rate": 4.878455284552846e-05, + "loss": 0.8385199737548829, + "step": 300 + }, + { + "epoch": 3.253061224489796, + "grad_norm": 0.1767745316028595, + "learning_rate": 4.8378048780487804e-05, + "loss": 0.8195798492431641, + "step": 400 + }, + { + "epoch": 4.0653061224489795, + "grad_norm": 0.17210832238197327, + "learning_rate": 4.797154471544716e-05, + "loss": 0.805633544921875, + "step": 500 + }, + { + "epoch": 4.881632653061224, + "grad_norm": 0.18165253102779388, + "learning_rate": 4.7565040650406506e-05, + "loss": 0.7969439697265625, + "step": 600 + }, + { + "epoch": 5.6938775510204085, + "grad_norm": 0.19815795123577118, + "learning_rate": 4.715853658536585e-05, + "loss": 0.7886590576171875, + "step": 700 + }, + { + "epoch": 6.506122448979592, + "grad_norm": 0.17318786680698395, + "learning_rate": 4.675203252032521e-05, + "loss": 0.7834711456298828, + "step": 800 + }, + { + "epoch": 7.318367346938776, + "grad_norm": 0.1702745109796524, + "learning_rate": 4.6345528455284555e-05, + "loss": 0.7785483551025391, + "step": 900 + }, + { + "epoch": 8.130612244897959, + "grad_norm": 0.1857929825782776, + "learning_rate": 4.593902439024391e-05, + "loss": 0.7725027465820312, + "step": 1000 + }, + { + "epoch": 8.946938775510205, + "grad_norm": 0.17213623225688934, + "learning_rate": 4.5532520325203256e-05, + "loss": 0.7679139709472657, + "step": 1100 + }, + { + "epoch": 9.759183673469387, + "grad_norm": 0.173990860581398, + "learning_rate": 4.5126016260162604e-05, + "loss": 0.7615008544921875, + "step": 1200 + }, + { + "epoch": 10.571428571428571, + "grad_norm": 0.1709279716014862, + "learning_rate": 4.471951219512195e-05, + "loss": 0.7550846862792969, + "step": 1300 + }, + { + "epoch": 11.383673469387755, + "grad_norm": 0.1852250099182129, + "learning_rate": 4.43130081300813e-05, + "loss": 0.7509546661376953, + "step": 1400 + }, + { + "epoch": 12.19591836734694, + "grad_norm": 0.19050434231758118, + "learning_rate": 4.390650406504065e-05, + "loss": 0.7481673431396484, + "step": 1500 + }, + { + "epoch": 13.008163265306122, + "grad_norm": 0.17918676137924194, + "learning_rate": 4.35e-05, + "loss": 0.7416070556640625, + "step": 1600 + }, + { + "epoch": 13.824489795918367, + "grad_norm": 0.20031221210956573, + "learning_rate": 4.309349593495935e-05, + "loss": 0.7341732025146485, + "step": 1700 + }, + { + "epoch": 14.636734693877552, + "grad_norm": 0.206989124417305, + "learning_rate": 4.26869918699187e-05, + "loss": 0.7266737365722656, + "step": 1800 + }, + { + "epoch": 15.448979591836734, + "grad_norm": 0.20765261352062225, + "learning_rate": 4.228048780487805e-05, + "loss": 0.7223382568359376, + "step": 1900 + }, + { + "epoch": 16.261224489795918, + "grad_norm": 0.21891070902347565, + "learning_rate": 4.1873983739837404e-05, + "loss": 0.7137351226806641, + "step": 2000 + }, + { + "epoch": 17.073469387755104, + "grad_norm": 0.21613141894340515, + "learning_rate": 4.146747967479675e-05, + "loss": 0.7111404418945313, + "step": 2100 + }, + { + "epoch": 17.889795918367348, + "grad_norm": 0.21502180397510529, + "learning_rate": 4.10609756097561e-05, + "loss": 0.6979566192626954, + "step": 2200 + }, + { + "epoch": 18.70204081632653, + "grad_norm": 0.22264128923416138, + "learning_rate": 4.065447154471545e-05, + "loss": 0.6864246368408203, + "step": 2300 + }, + { + "epoch": 19.514285714285712, + "grad_norm": 0.22031748294830322, + "learning_rate": 4.02479674796748e-05, + "loss": 0.678118896484375, + "step": 2400 + }, + { + "epoch": 20.3265306122449, + "grad_norm": 0.24292652308940887, + "learning_rate": 3.984146341463415e-05, + "loss": 0.6696414184570313, + "step": 2500 + }, + { + "epoch": 21.13877551020408, + "grad_norm": 0.23444044589996338, + "learning_rate": 3.9434959349593495e-05, + "loss": 0.6571144866943359, + "step": 2600 + }, + { + "epoch": 21.955102040816328, + "grad_norm": 0.26427289843559265, + "learning_rate": 3.902845528455284e-05, + "loss": 0.644508056640625, + "step": 2700 + }, + { + "epoch": 22.76734693877551, + "grad_norm": 0.2826888859272003, + "learning_rate": 3.8621951219512196e-05, + "loss": 0.6250789260864258, + "step": 2800 + }, + { + "epoch": 23.579591836734693, + "grad_norm": 0.28523582220077515, + "learning_rate": 3.8215447154471544e-05, + "loss": 0.6115097045898438, + "step": 2900 + }, + { + "epoch": 24.39183673469388, + "grad_norm": 0.3078940808773041, + "learning_rate": 3.78089430894309e-05, + "loss": 0.5938611602783204, + "step": 3000 + }, + { + "epoch": 25.20408163265306, + "grad_norm": 0.2929214537143707, + "learning_rate": 3.7402439024390246e-05, + "loss": 0.5813701629638672, + "step": 3100 + }, + { + "epoch": 26.016326530612243, + "grad_norm": 0.29797449707984924, + "learning_rate": 3.699593495934959e-05, + "loss": 0.565318717956543, + "step": 3200 + }, + { + "epoch": 26.83265306122449, + "grad_norm": 0.34011322259902954, + "learning_rate": 3.658943089430895e-05, + "loss": 0.5397001266479492, + "step": 3300 + }, + { + "epoch": 27.644897959183673, + "grad_norm": 0.312648206949234, + "learning_rate": 3.6182926829268295e-05, + "loss": 0.5236684799194335, + "step": 3400 + }, + { + "epoch": 28.457142857142856, + "grad_norm": 0.3535107970237732, + "learning_rate": 3.577642276422765e-05, + "loss": 0.5073324966430665, + "step": 3500 + }, + { + "epoch": 29.26938775510204, + "grad_norm": 0.32181501388549805, + "learning_rate": 3.5369918699186996e-05, + "loss": 0.49109951019287107, + "step": 3600 + }, + { + "epoch": 30.081632653061224, + "grad_norm": 0.32014670968055725, + "learning_rate": 3.4963414634146344e-05, + "loss": 0.47566513061523436, + "step": 3700 + }, + { + "epoch": 30.897959183673468, + "grad_norm": 0.3838709890842438, + "learning_rate": 3.455691056910569e-05, + "loss": 0.4567824172973633, + "step": 3800 + }, + { + "epoch": 31.710204081632654, + "grad_norm": 0.361082524061203, + "learning_rate": 3.415040650406504e-05, + "loss": 0.4356218719482422, + "step": 3900 + }, + { + "epoch": 32.522448979591836, + "grad_norm": 0.3454324007034302, + "learning_rate": 3.374390243902439e-05, + "loss": 0.4223041534423828, + "step": 4000 + }, + { + "epoch": 33.33469387755102, + "grad_norm": 0.3978846073150635, + "learning_rate": 3.333739837398374e-05, + "loss": 0.4082141876220703, + "step": 4100 + }, + { + "epoch": 34.14693877551021, + "grad_norm": 0.35300812125205994, + "learning_rate": 3.293089430894309e-05, + "loss": 0.3971371841430664, + "step": 4200 + }, + { + "epoch": 34.96326530612245, + "grad_norm": 0.39180585741996765, + "learning_rate": 3.252439024390244e-05, + "loss": 0.38660186767578125, + "step": 4300 + }, + { + "epoch": 35.775510204081634, + "grad_norm": 0.34937477111816406, + "learning_rate": 3.211788617886179e-05, + "loss": 0.36573085784912107, + "step": 4400 + }, + { + "epoch": 36.587755102040816, + "grad_norm": 0.34532594680786133, + "learning_rate": 3.171138211382114e-05, + "loss": 0.357391357421875, + "step": 4500 + }, + { + "epoch": 37.4, + "grad_norm": 0.3401789665222168, + "learning_rate": 3.130487804878049e-05, + "loss": 0.35067024230957033, + "step": 4600 + }, + { + "epoch": 38.21224489795918, + "grad_norm": 0.35807526111602783, + "learning_rate": 3.089837398373984e-05, + "loss": 0.33775680541992187, + "step": 4700 + }, + { + "epoch": 39.02448979591837, + "grad_norm": 0.3305448591709137, + "learning_rate": 3.049186991869919e-05, + "loss": 0.3307634735107422, + "step": 4800 + }, + { + "epoch": 39.840816326530614, + "grad_norm": 0.35710543394088745, + "learning_rate": 3.0085365853658536e-05, + "loss": 0.3170050811767578, + "step": 4900 + }, + { + "epoch": 40.6530612244898, + "grad_norm": 0.3527916967868805, + "learning_rate": 2.967886178861789e-05, + "loss": 0.3097914505004883, + "step": 5000 + }, + { + "epoch": 41.46530612244898, + "grad_norm": 0.32809746265411377, + "learning_rate": 2.9272357723577238e-05, + "loss": 0.3027458190917969, + "step": 5100 + }, + { + "epoch": 42.27755102040816, + "grad_norm": 0.31058913469314575, + "learning_rate": 2.8865853658536585e-05, + "loss": 0.29558998107910156, + "step": 5200 + }, + { + "epoch": 43.089795918367344, + "grad_norm": 0.34247487783432007, + "learning_rate": 2.8459349593495936e-05, + "loss": 0.2922693824768066, + "step": 5300 + }, + { + "epoch": 43.906122448979595, + "grad_norm": 0.30968013405799866, + "learning_rate": 2.8052845528455284e-05, + "loss": 0.2823493576049805, + "step": 5400 + }, + { + "epoch": 44.71836734693878, + "grad_norm": 0.3155519366264343, + "learning_rate": 2.7646341463414638e-05, + "loss": 0.27321760177612303, + "step": 5500 + }, + { + "epoch": 45.53061224489796, + "grad_norm": 0.31056052446365356, + "learning_rate": 2.7239837398373985e-05, + "loss": 0.2715290069580078, + "step": 5600 + }, + { + "epoch": 46.34285714285714, + "grad_norm": 0.31267017126083374, + "learning_rate": 2.6833333333333333e-05, + "loss": 0.2654402160644531, + "step": 5700 + }, + { + "epoch": 47.155102040816324, + "grad_norm": 0.32218316197395325, + "learning_rate": 2.6426829268292687e-05, + "loss": 0.26081199645996095, + "step": 5800 + }, + { + "epoch": 47.97142857142857, + "grad_norm": 0.34338584542274475, + "learning_rate": 2.6020325203252034e-05, + "loss": 0.2576237869262695, + "step": 5900 + }, + { + "epoch": 48.78367346938776, + "grad_norm": 0.33019116520881653, + "learning_rate": 2.5613821138211385e-05, + "loss": 0.24996454238891602, + "step": 6000 + }, + { + "epoch": 49.59591836734694, + "grad_norm": 0.2988639175891876, + "learning_rate": 2.5207317073170733e-05, + "loss": 0.2463224411010742, + "step": 6100 + }, + { + "epoch": 50.40816326530612, + "grad_norm": 0.31278201937675476, + "learning_rate": 2.4800813008130083e-05, + "loss": 0.2423969841003418, + "step": 6200 + }, + { + "epoch": 51.220408163265304, + "grad_norm": 0.33853426575660706, + "learning_rate": 2.4394308943089434e-05, + "loss": 0.2402469062805176, + "step": 6300 + }, + { + "epoch": 52.03265306122449, + "grad_norm": 0.30223262310028076, + "learning_rate": 2.3987804878048782e-05, + "loss": 0.23620229721069336, + "step": 6400 + }, + { + "epoch": 52.84897959183674, + "grad_norm": 0.29446688294410706, + "learning_rate": 2.3581300813008133e-05, + "loss": 0.23224014282226563, + "step": 6500 + }, + { + "epoch": 53.66122448979592, + "grad_norm": 0.32583415508270264, + "learning_rate": 2.317479674796748e-05, + "loss": 0.22917091369628906, + "step": 6600 + }, + { + "epoch": 54.4734693877551, + "grad_norm": 0.30859264731407166, + "learning_rate": 2.276829268292683e-05, + "loss": 0.2268912124633789, + "step": 6700 + }, + { + "epoch": 55.285714285714285, + "grad_norm": 0.31113457679748535, + "learning_rate": 2.236178861788618e-05, + "loss": 0.2232840347290039, + "step": 6800 + }, + { + "epoch": 56.09795918367347, + "grad_norm": 0.2787556052207947, + "learning_rate": 2.195528455284553e-05, + "loss": 0.22269392013549805, + "step": 6900 + }, + { + "epoch": 56.91428571428571, + "grad_norm": 0.31350278854370117, + "learning_rate": 2.154878048780488e-05, + "loss": 0.21771884918212892, + "step": 7000 + }, + { + "epoch": 57.7265306122449, + "grad_norm": 0.28963643312454224, + "learning_rate": 2.1142276422764227e-05, + "loss": 0.21578874588012695, + "step": 7100 + }, + { + "epoch": 58.53877551020408, + "grad_norm": 0.2832202911376953, + "learning_rate": 2.0735772357723578e-05, + "loss": 0.21327545166015624, + "step": 7200 + }, + { + "epoch": 59.351020408163265, + "grad_norm": 0.3022792339324951, + "learning_rate": 2.0329268292682925e-05, + "loss": 0.2126554489135742, + "step": 7300 + }, + { + "epoch": 60.16326530612245, + "grad_norm": 0.29425740242004395, + "learning_rate": 1.9922764227642276e-05, + "loss": 0.2091551399230957, + "step": 7400 + }, + { + "epoch": 60.97959183673469, + "grad_norm": 0.3006289303302765, + "learning_rate": 1.9516260162601627e-05, + "loss": 0.20839336395263672, + "step": 7500 + }, + { + "epoch": 61.79183673469388, + "grad_norm": 0.28310829401016235, + "learning_rate": 1.9109756097560978e-05, + "loss": 0.20591426849365235, + "step": 7600 + }, + { + "epoch": 62.60408163265306, + "grad_norm": 0.3061628043651581, + "learning_rate": 1.8703252032520325e-05, + "loss": 0.20315048217773438, + "step": 7700 + }, + { + "epoch": 63.416326530612245, + "grad_norm": 0.27300187945365906, + "learning_rate": 1.8296747967479673e-05, + "loss": 0.202825927734375, + "step": 7800 + }, + { + "epoch": 64.22857142857143, + "grad_norm": 0.24376684427261353, + "learning_rate": 1.7890243902439024e-05, + "loss": 0.20038375854492188, + "step": 7900 + }, + { + "epoch": 65.04081632653062, + "grad_norm": 0.28877273201942444, + "learning_rate": 1.7483739837398374e-05, + "loss": 0.19970365524291991, + "step": 8000 + }, + { + "epoch": 65.85714285714286, + "grad_norm": 0.23989948630332947, + "learning_rate": 1.7077235772357725e-05, + "loss": 0.19691890716552735, + "step": 8100 + }, + { + "epoch": 66.66938775510204, + "grad_norm": 0.28822559118270874, + "learning_rate": 1.6670731707317076e-05, + "loss": 0.19575874328613282, + "step": 8200 + }, + { + "epoch": 67.48163265306123, + "grad_norm": 0.2700895667076111, + "learning_rate": 1.6264227642276423e-05, + "loss": 0.1947219467163086, + "step": 8300 + }, + { + "epoch": 68.29387755102042, + "grad_norm": 0.2526496350765228, + "learning_rate": 1.585772357723577e-05, + "loss": 0.19402549743652345, + "step": 8400 + }, + { + "epoch": 69.10612244897959, + "grad_norm": 0.20475488901138306, + "learning_rate": 1.545121951219512e-05, + "loss": 0.1931273651123047, + "step": 8500 + }, + { + "epoch": 69.92244897959183, + "grad_norm": 0.2714834213256836, + "learning_rate": 1.5044715447154473e-05, + "loss": 0.19089672088623047, + "step": 8600 + }, + { + "epoch": 70.73469387755102, + "grad_norm": 0.2766830027103424, + "learning_rate": 1.4638211382113823e-05, + "loss": 0.18954217910766602, + "step": 8700 + }, + { + "epoch": 71.5469387755102, + "grad_norm": 0.3034886121749878, + "learning_rate": 1.423170731707317e-05, + "loss": 0.18781688690185547, + "step": 8800 + }, + { + "epoch": 72.35918367346939, + "grad_norm": 0.24485336244106293, + "learning_rate": 1.382520325203252e-05, + "loss": 0.18732297897338868, + "step": 8900 + }, + { + "epoch": 73.17142857142858, + "grad_norm": 0.23148897290229797, + "learning_rate": 1.341869918699187e-05, + "loss": 0.1871368408203125, + "step": 9000 + }, + { + "epoch": 73.98775510204082, + "grad_norm": 0.21915043890476227, + "learning_rate": 1.301219512195122e-05, + "loss": 0.18623947143554687, + "step": 9100 + }, + { + "epoch": 74.8, + "grad_norm": 0.23356078565120697, + "learning_rate": 1.260569105691057e-05, + "loss": 0.18433347702026368, + "step": 9200 + }, + { + "epoch": 75.61224489795919, + "grad_norm": 0.22005006670951843, + "learning_rate": 1.219918699186992e-05, + "loss": 0.18372562408447266, + "step": 9300 + }, + { + "epoch": 76.42448979591836, + "grad_norm": 0.24768972396850586, + "learning_rate": 1.1792682926829269e-05, + "loss": 0.18352956771850587, + "step": 9400 + }, + { + "epoch": 77.23673469387755, + "grad_norm": 0.23978039622306824, + "learning_rate": 1.1386178861788618e-05, + "loss": 0.18253284454345703, + "step": 9500 + }, + { + "epoch": 78.04897959183674, + "grad_norm": 0.229603111743927, + "learning_rate": 1.0979674796747969e-05, + "loss": 0.18194345474243165, + "step": 9600 + }, + { + "epoch": 78.86530612244898, + "grad_norm": 0.24125361442565918, + "learning_rate": 1.0573170731707318e-05, + "loss": 0.1807528877258301, + "step": 9700 + }, + { + "epoch": 79.67755102040816, + "grad_norm": 0.2205636203289032, + "learning_rate": 1.0166666666666667e-05, + "loss": 0.18057302474975587, + "step": 9800 + }, + { + "epoch": 80.48979591836735, + "grad_norm": 0.2393631935119629, + "learning_rate": 9.760162601626016e-06, + "loss": 0.1798857879638672, + "step": 9900 + }, + { + "epoch": 81.30204081632652, + "grad_norm": 0.24092160165309906, + "learning_rate": 9.353658536585367e-06, + "loss": 0.1784771728515625, + "step": 10000 + }, + { + "epoch": 82.11428571428571, + "grad_norm": 0.24599742889404297, + "learning_rate": 8.947154471544716e-06, + "loss": 0.17834564208984374, + "step": 10100 + }, + { + "epoch": 82.93061224489796, + "grad_norm": 0.22460418939590454, + "learning_rate": 8.540650406504065e-06, + "loss": 0.1772374153137207, + "step": 10200 + }, + { + "epoch": 83.74285714285715, + "grad_norm": 0.2190479338169098, + "learning_rate": 8.134146341463416e-06, + "loss": 0.17636322021484374, + "step": 10300 + }, + { + "epoch": 84.55510204081632, + "grad_norm": 0.2221534252166748, + "learning_rate": 7.727642276422763e-06, + "loss": 0.1762386703491211, + "step": 10400 + }, + { + "epoch": 85.36734693877551, + "grad_norm": 0.26244837045669556, + "learning_rate": 7.321138211382114e-06, + "loss": 0.1751699638366699, + "step": 10500 + }, + { + "epoch": 86.17959183673469, + "grad_norm": 0.22107520699501038, + "learning_rate": 6.914634146341464e-06, + "loss": 0.17485345840454103, + "step": 10600 + }, + { + "epoch": 86.99591836734695, + "grad_norm": 0.23993152379989624, + "learning_rate": 6.508130081300813e-06, + "loss": 0.1742844581604004, + "step": 10700 + }, + { + "epoch": 87.80816326530612, + "grad_norm": 0.2439497411251068, + "learning_rate": 6.101626016260163e-06, + "loss": 0.1729772186279297, + "step": 10800 + }, + { + "epoch": 88.62040816326531, + "grad_norm": 0.17270337045192719, + "learning_rate": 5.695121951219512e-06, + "loss": 0.17377023696899413, + "step": 10900 + }, + { + "epoch": 89.43265306122449, + "grad_norm": 0.21495409309864044, + "learning_rate": 5.288617886178862e-06, + "loss": 0.17239656448364257, + "step": 11000 + }, + { + "epoch": 90.24489795918367, + "grad_norm": 0.22590148448944092, + "learning_rate": 4.8821138211382115e-06, + "loss": 0.1718999481201172, + "step": 11100 + }, + { + "epoch": 91.05714285714286, + "grad_norm": 0.23818287253379822, + "learning_rate": 4.475609756097561e-06, + "loss": 0.17191593170166017, + "step": 11200 + }, + { + "epoch": 91.87346938775511, + "grad_norm": 0.20226499438285828, + "learning_rate": 4.069105691056911e-06, + "loss": 0.1716364097595215, + "step": 11300 + }, + { + "epoch": 92.68571428571428, + "grad_norm": 0.21012510359287262, + "learning_rate": 3.6626016260162606e-06, + "loss": 0.17097190856933595, + "step": 11400 + }, + { + "epoch": 93.49795918367347, + "grad_norm": 0.2207111269235611, + "learning_rate": 3.25609756097561e-06, + "loss": 0.17108001708984374, + "step": 11500 + }, + { + "epoch": 94.31020408163265, + "grad_norm": 0.24261923134326935, + "learning_rate": 2.8495934959349596e-06, + "loss": 0.16977045059204102, + "step": 11600 + }, + { + "epoch": 95.12244897959184, + "grad_norm": 0.21230651438236237, + "learning_rate": 2.4430894308943088e-06, + "loss": 0.17076728820800782, + "step": 11700 + }, + { + "epoch": 95.93877551020408, + "grad_norm": 0.23544330894947052, + "learning_rate": 2.0365853658536587e-06, + "loss": 0.1692482566833496, + "step": 11800 + }, + { + "epoch": 96.75102040816327, + "grad_norm": 0.21479812264442444, + "learning_rate": 1.630081300813008e-06, + "loss": 0.16898462295532227, + "step": 11900 + }, + { + "epoch": 97.56326530612245, + "grad_norm": 0.2458772510290146, + "learning_rate": 1.2235772357723578e-06, + "loss": 0.16863704681396485, + "step": 12000 + }, + { + "epoch": 98.37551020408164, + "grad_norm": 0.255893349647522, + "learning_rate": 8.170731707317074e-07, + "loss": 0.16806327819824218, + "step": 12100 + } + ], + "logging_steps": 100, + "max_steps": 12300, + "num_input_tokens_seen": 0, + "num_train_epochs": 100, + "save_steps": 100, + "stateful_callbacks": { + "TrainerControl": { + "args": { + "should_epoch_stop": false, + "should_evaluate": false, + "should_log": false, + "should_save": true, + "should_training_stop": false + }, + "attributes": {} + } + }, + "total_flos": 5740657969102848.0, + "train_batch_size": 8, + "trial_name": null, + "trial_params": null +} diff --git a/timecost/n3/realtabformer/rtf-n3-20260501_010320/rtf_checkpoints/checkpoint-12177/training_args.bin b/timecost/n3/realtabformer/rtf-n3-20260501_010320/rtf_checkpoints/checkpoint-12177/training_args.bin new file mode 100644 index 0000000000000000000000000000000000000000..34d68dc0e0fe1c1f12a2e581dd1b166aa7178a9e --- /dev/null +++ b/timecost/n3/realtabformer/rtf-n3-20260501_010320/rtf_checkpoints/checkpoint-12177/training_args.bin @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:9e2cd88337d1d846c6918d2b3b63fa3e5c93f12fefc082497590da854a564607 +size 5201 diff --git a/timecost/n3/realtabformer/rtf-n3-20260501_010320/rtf_checkpoints/checkpoint-12200/config.json b/timecost/n3/realtabformer/rtf-n3-20260501_010320/rtf_checkpoints/checkpoint-12200/config.json new file mode 100644 index 0000000000000000000000000000000000000000..1876b75d3abc713ca867fe8e643ea273dc9cea87 --- /dev/null +++ b/timecost/n3/realtabformer/rtf-n3-20260501_010320/rtf_checkpoints/checkpoint-12200/config.json @@ -0,0 +1,34 @@ +{ + "activation_function": "gelu_new", + "add_cross_attention": false, + "architectures": [ + "GPT2LMHeadModel" + ], + "attn_pdrop": 0.1, + "bos_token_id": 5, + "dtype": "float32", + "embd_pdrop": 0.1, + "eos_token_id": 6, + "initializer_range": 0.02, + "layer_norm_epsilon": 1e-05, + "model_type": "gpt2", + "n_embd": 768, + "n_head": 12, + "n_inner": null, + "n_layer": 6, + "n_positions": 1024, + "pad_token_id": null, + "reorder_and_upcast_attn": false, + "resid_pdrop": 0.1, + "scale_attn_by_inverse_layer_idx": false, + "scale_attn_weights": true, + "summary_activation": null, + "summary_first_dropout": 0.1, + "summary_proj_to_labels": true, + "summary_type": "cls_index", + "summary_use_proj": true, + "tie_word_embeddings": true, + "transformers_version": "5.5.3", + "use_cache": false, + "vocab_size": 304 +} diff --git a/timecost/n3/realtabformer/rtf-n3-20260501_010320/rtf_checkpoints/checkpoint-12200/generation_config.json b/timecost/n3/realtabformer/rtf-n3-20260501_010320/rtf_checkpoints/checkpoint-12200/generation_config.json new file mode 100644 index 0000000000000000000000000000000000000000..ffe89567780e75b5c22eade9be971483b9618f39 --- /dev/null +++ b/timecost/n3/realtabformer/rtf-n3-20260501_010320/rtf_checkpoints/checkpoint-12200/generation_config.json @@ -0,0 +1,9 @@ +{ + "_from_model_config": true, + "bos_token_id": 5, + "eos_token_id": 6, + "output_attentions": false, + "output_hidden_states": false, + "transformers_version": "5.5.3", + "use_cache": true +} diff --git a/timecost/n3/realtabformer/rtf-n3-20260501_010320/rtf_checkpoints/checkpoint-12200/model.safetensors b/timecost/n3/realtabformer/rtf-n3-20260501_010320/rtf_checkpoints/checkpoint-12200/model.safetensors new file mode 100644 index 0000000000000000000000000000000000000000..b036b5a9f6e2d4721b7dd63d07870559e20cf425 --- /dev/null +++ b/timecost/n3/realtabformer/rtf-n3-20260501_010320/rtf_checkpoints/checkpoint-12200/model.safetensors @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:8daca51dd13e10c348ae304941a4205ebeeb7c93593752229d18e91c4fad69d9 +size 174202312 diff --git a/timecost/n3/realtabformer/rtf-n3-20260501_010320/rtf_checkpoints/checkpoint-12200/optimizer.pt b/timecost/n3/realtabformer/rtf-n3-20260501_010320/rtf_checkpoints/checkpoint-12200/optimizer.pt new file mode 100644 index 0000000000000000000000000000000000000000..959eadeca2955f3846097901e627e812358de74a --- /dev/null +++ b/timecost/n3/realtabformer/rtf-n3-20260501_010320/rtf_checkpoints/checkpoint-12200/optimizer.pt @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:956ea1cf37a30800ac1b1052a7eebcb7b89ea05b7a8ee01284b02fc0081ed013 +size 348453707 diff --git a/timecost/n3/realtabformer/rtf-n3-20260501_010320/rtf_checkpoints/checkpoint-12200/rng_state.pth b/timecost/n3/realtabformer/rtf-n3-20260501_010320/rtf_checkpoints/checkpoint-12200/rng_state.pth new file mode 100644 index 0000000000000000000000000000000000000000..1c6d5b21425981aaab55743c50ced8119ea41ab4 --- /dev/null +++ b/timecost/n3/realtabformer/rtf-n3-20260501_010320/rtf_checkpoints/checkpoint-12200/rng_state.pth @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:68153ff959dbeccf32280461a1ec5605d25c85c263c21db84b88fb472bc90597 +size 14645 diff --git a/timecost/n3/realtabformer/rtf-n3-20260501_010320/rtf_checkpoints/checkpoint-12200/scaler.pt b/timecost/n3/realtabformer/rtf-n3-20260501_010320/rtf_checkpoints/checkpoint-12200/scaler.pt new file mode 100644 index 0000000000000000000000000000000000000000..98fedc0f458fc7aa259b53b54e78d56cf1f6581d --- /dev/null +++ b/timecost/n3/realtabformer/rtf-n3-20260501_010320/rtf_checkpoints/checkpoint-12200/scaler.pt @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:1f0c639138d2633695dd9ca30aac2e913d5a6ee1602eb53d54ba4a194b5ae452 +size 1383 diff --git a/timecost/n3/realtabformer/rtf-n3-20260501_010320/rtf_checkpoints/checkpoint-12200/scheduler.pt b/timecost/n3/realtabformer/rtf-n3-20260501_010320/rtf_checkpoints/checkpoint-12200/scheduler.pt new file mode 100644 index 0000000000000000000000000000000000000000..b1385c212dba5cd14f968009b02b656b13a5c8c5 --- /dev/null +++ b/timecost/n3/realtabformer/rtf-n3-20260501_010320/rtf_checkpoints/checkpoint-12200/scheduler.pt @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:513c2fb16059e1ad186af234110d54e3aa8b004adcc7caf5ee42a8bb798f40ac +size 1465 diff --git a/timecost/n3/realtabformer/rtf-n3-20260501_010320/rtf_checkpoints/checkpoint-12200/trainer_state.json b/timecost/n3/realtabformer/rtf-n3-20260501_010320/rtf_checkpoints/checkpoint-12200/trainer_state.json new file mode 100644 index 0000000000000000000000000000000000000000..1e11f5ffa003447462b49871ad0089582e0bb400 --- /dev/null +++ b/timecost/n3/realtabformer/rtf-n3-20260501_010320/rtf_checkpoints/checkpoint-12200/trainer_state.json @@ -0,0 +1,888 @@ +{ + "best_global_step": null, + "best_metric": null, + "best_model_checkpoint": null, + "epoch": 99.18775510204081, + "eval_steps": 100, + "global_step": 12200, + "is_hyper_param_search": false, + "is_local_process_zero": true, + "is_world_process_zero": true, + "log_history": [ + { + "epoch": 0.8163265306122449, + "grad_norm": 0.20639584958553314, + "learning_rate": 4.9597560975609755e-05, + "loss": 1.4745872497558594, + "step": 100 + }, + { + "epoch": 1.6285714285714286, + "grad_norm": 0.1949000358581543, + "learning_rate": 4.91910569105691e-05, + "loss": 0.8799897766113282, + "step": 200 + }, + { + "epoch": 2.440816326530612, + "grad_norm": 0.19164182245731354, + "learning_rate": 4.878455284552846e-05, + "loss": 0.8385199737548829, + "step": 300 + }, + { + "epoch": 3.253061224489796, + "grad_norm": 0.1767745316028595, + "learning_rate": 4.8378048780487804e-05, + "loss": 0.8195798492431641, + "step": 400 + }, + { + "epoch": 4.0653061224489795, + "grad_norm": 0.17210832238197327, + "learning_rate": 4.797154471544716e-05, + "loss": 0.805633544921875, + "step": 500 + }, + { + "epoch": 4.881632653061224, + "grad_norm": 0.18165253102779388, + "learning_rate": 4.7565040650406506e-05, + "loss": 0.7969439697265625, + "step": 600 + }, + { + "epoch": 5.6938775510204085, + "grad_norm": 0.19815795123577118, + "learning_rate": 4.715853658536585e-05, + "loss": 0.7886590576171875, + "step": 700 + }, + { + "epoch": 6.506122448979592, + "grad_norm": 0.17318786680698395, + "learning_rate": 4.675203252032521e-05, + "loss": 0.7834711456298828, + "step": 800 + }, + { + "epoch": 7.318367346938776, + "grad_norm": 0.1702745109796524, + "learning_rate": 4.6345528455284555e-05, + "loss": 0.7785483551025391, + "step": 900 + }, + { + "epoch": 8.130612244897959, + "grad_norm": 0.1857929825782776, + "learning_rate": 4.593902439024391e-05, + "loss": 0.7725027465820312, + "step": 1000 + }, + { + "epoch": 8.946938775510205, + "grad_norm": 0.17213623225688934, + "learning_rate": 4.5532520325203256e-05, + "loss": 0.7679139709472657, + "step": 1100 + }, + { + "epoch": 9.759183673469387, + "grad_norm": 0.173990860581398, + "learning_rate": 4.5126016260162604e-05, + "loss": 0.7615008544921875, + "step": 1200 + }, + { + "epoch": 10.571428571428571, + "grad_norm": 0.1709279716014862, + "learning_rate": 4.471951219512195e-05, + "loss": 0.7550846862792969, + "step": 1300 + }, + { + "epoch": 11.383673469387755, + "grad_norm": 0.1852250099182129, + "learning_rate": 4.43130081300813e-05, + "loss": 0.7509546661376953, + "step": 1400 + }, + { + "epoch": 12.19591836734694, + "grad_norm": 0.19050434231758118, + "learning_rate": 4.390650406504065e-05, + "loss": 0.7481673431396484, + "step": 1500 + }, + { + "epoch": 13.008163265306122, + "grad_norm": 0.17918676137924194, + "learning_rate": 4.35e-05, + "loss": 0.7416070556640625, + "step": 1600 + }, + { + "epoch": 13.824489795918367, + "grad_norm": 0.20031221210956573, + "learning_rate": 4.309349593495935e-05, + "loss": 0.7341732025146485, + "step": 1700 + }, + { + "epoch": 14.636734693877552, + "grad_norm": 0.206989124417305, + "learning_rate": 4.26869918699187e-05, + "loss": 0.7266737365722656, + "step": 1800 + }, + { + "epoch": 15.448979591836734, + "grad_norm": 0.20765261352062225, + "learning_rate": 4.228048780487805e-05, + "loss": 0.7223382568359376, + "step": 1900 + }, + { + "epoch": 16.261224489795918, + "grad_norm": 0.21891070902347565, + "learning_rate": 4.1873983739837404e-05, + "loss": 0.7137351226806641, + "step": 2000 + }, + { + "epoch": 17.073469387755104, + "grad_norm": 0.21613141894340515, + "learning_rate": 4.146747967479675e-05, + "loss": 0.7111404418945313, + "step": 2100 + }, + { + "epoch": 17.889795918367348, + "grad_norm": 0.21502180397510529, + "learning_rate": 4.10609756097561e-05, + "loss": 0.6979566192626954, + "step": 2200 + }, + { + "epoch": 18.70204081632653, + "grad_norm": 0.22264128923416138, + "learning_rate": 4.065447154471545e-05, + "loss": 0.6864246368408203, + "step": 2300 + }, + { + "epoch": 19.514285714285712, + "grad_norm": 0.22031748294830322, + "learning_rate": 4.02479674796748e-05, + "loss": 0.678118896484375, + "step": 2400 + }, + { + "epoch": 20.3265306122449, + "grad_norm": 0.24292652308940887, + "learning_rate": 3.984146341463415e-05, + "loss": 0.6696414184570313, + "step": 2500 + }, + { + "epoch": 21.13877551020408, + "grad_norm": 0.23444044589996338, + "learning_rate": 3.9434959349593495e-05, + "loss": 0.6571144866943359, + "step": 2600 + }, + { + "epoch": 21.955102040816328, + "grad_norm": 0.26427289843559265, + "learning_rate": 3.902845528455284e-05, + "loss": 0.644508056640625, + "step": 2700 + }, + { + "epoch": 22.76734693877551, + "grad_norm": 0.2826888859272003, + "learning_rate": 3.8621951219512196e-05, + "loss": 0.6250789260864258, + "step": 2800 + }, + { + "epoch": 23.579591836734693, + "grad_norm": 0.28523582220077515, + "learning_rate": 3.8215447154471544e-05, + "loss": 0.6115097045898438, + "step": 2900 + }, + { + "epoch": 24.39183673469388, + "grad_norm": 0.3078940808773041, + "learning_rate": 3.78089430894309e-05, + "loss": 0.5938611602783204, + "step": 3000 + }, + { + "epoch": 25.20408163265306, + "grad_norm": 0.2929214537143707, + "learning_rate": 3.7402439024390246e-05, + "loss": 0.5813701629638672, + "step": 3100 + }, + { + "epoch": 26.016326530612243, + "grad_norm": 0.29797449707984924, + "learning_rate": 3.699593495934959e-05, + "loss": 0.565318717956543, + "step": 3200 + }, + { + "epoch": 26.83265306122449, + "grad_norm": 0.34011322259902954, + "learning_rate": 3.658943089430895e-05, + "loss": 0.5397001266479492, + "step": 3300 + }, + { + "epoch": 27.644897959183673, + "grad_norm": 0.312648206949234, + "learning_rate": 3.6182926829268295e-05, + "loss": 0.5236684799194335, + "step": 3400 + }, + { + "epoch": 28.457142857142856, + "grad_norm": 0.3535107970237732, + "learning_rate": 3.577642276422765e-05, + "loss": 0.5073324966430665, + "step": 3500 + }, + { + "epoch": 29.26938775510204, + "grad_norm": 0.32181501388549805, + "learning_rate": 3.5369918699186996e-05, + "loss": 0.49109951019287107, + "step": 3600 + }, + { + "epoch": 30.081632653061224, + "grad_norm": 0.32014670968055725, + "learning_rate": 3.4963414634146344e-05, + "loss": 0.47566513061523436, + "step": 3700 + }, + { + "epoch": 30.897959183673468, + "grad_norm": 0.3838709890842438, + "learning_rate": 3.455691056910569e-05, + "loss": 0.4567824172973633, + "step": 3800 + }, + { + "epoch": 31.710204081632654, + "grad_norm": 0.361082524061203, + "learning_rate": 3.415040650406504e-05, + "loss": 0.4356218719482422, + "step": 3900 + }, + { + "epoch": 32.522448979591836, + "grad_norm": 0.3454324007034302, + "learning_rate": 3.374390243902439e-05, + "loss": 0.4223041534423828, + "step": 4000 + }, + { + "epoch": 33.33469387755102, + "grad_norm": 0.3978846073150635, + "learning_rate": 3.333739837398374e-05, + "loss": 0.4082141876220703, + "step": 4100 + }, + { + "epoch": 34.14693877551021, + "grad_norm": 0.35300812125205994, + "learning_rate": 3.293089430894309e-05, + "loss": 0.3971371841430664, + "step": 4200 + }, + { + "epoch": 34.96326530612245, + "grad_norm": 0.39180585741996765, + "learning_rate": 3.252439024390244e-05, + "loss": 0.38660186767578125, + "step": 4300 + }, + { + "epoch": 35.775510204081634, + "grad_norm": 0.34937477111816406, + "learning_rate": 3.211788617886179e-05, + "loss": 0.36573085784912107, + "step": 4400 + }, + { + "epoch": 36.587755102040816, + "grad_norm": 0.34532594680786133, + "learning_rate": 3.171138211382114e-05, + "loss": 0.357391357421875, + "step": 4500 + }, + { + "epoch": 37.4, + "grad_norm": 0.3401789665222168, + "learning_rate": 3.130487804878049e-05, + "loss": 0.35067024230957033, + "step": 4600 + }, + { + "epoch": 38.21224489795918, + "grad_norm": 0.35807526111602783, + "learning_rate": 3.089837398373984e-05, + "loss": 0.33775680541992187, + "step": 4700 + }, + { + "epoch": 39.02448979591837, + "grad_norm": 0.3305448591709137, + "learning_rate": 3.049186991869919e-05, + "loss": 0.3307634735107422, + "step": 4800 + }, + { + "epoch": 39.840816326530614, + "grad_norm": 0.35710543394088745, + "learning_rate": 3.0085365853658536e-05, + "loss": 0.3170050811767578, + "step": 4900 + }, + { + "epoch": 40.6530612244898, + "grad_norm": 0.3527916967868805, + "learning_rate": 2.967886178861789e-05, + "loss": 0.3097914505004883, + "step": 5000 + }, + { + "epoch": 41.46530612244898, + "grad_norm": 0.32809746265411377, + "learning_rate": 2.9272357723577238e-05, + "loss": 0.3027458190917969, + "step": 5100 + }, + { + "epoch": 42.27755102040816, + "grad_norm": 0.31058913469314575, + "learning_rate": 2.8865853658536585e-05, + "loss": 0.29558998107910156, + "step": 5200 + }, + { + "epoch": 43.089795918367344, + "grad_norm": 0.34247487783432007, + "learning_rate": 2.8459349593495936e-05, + "loss": 0.2922693824768066, + "step": 5300 + }, + { + "epoch": 43.906122448979595, + "grad_norm": 0.30968013405799866, + "learning_rate": 2.8052845528455284e-05, + "loss": 0.2823493576049805, + "step": 5400 + }, + { + "epoch": 44.71836734693878, + "grad_norm": 0.3155519366264343, + "learning_rate": 2.7646341463414638e-05, + "loss": 0.27321760177612303, + "step": 5500 + }, + { + "epoch": 45.53061224489796, + "grad_norm": 0.31056052446365356, + "learning_rate": 2.7239837398373985e-05, + "loss": 0.2715290069580078, + "step": 5600 + }, + { + "epoch": 46.34285714285714, + "grad_norm": 0.31267017126083374, + "learning_rate": 2.6833333333333333e-05, + "loss": 0.2654402160644531, + "step": 5700 + }, + { + "epoch": 47.155102040816324, + "grad_norm": 0.32218316197395325, + "learning_rate": 2.6426829268292687e-05, + "loss": 0.26081199645996095, + "step": 5800 + }, + { + "epoch": 47.97142857142857, + "grad_norm": 0.34338584542274475, + "learning_rate": 2.6020325203252034e-05, + "loss": 0.2576237869262695, + "step": 5900 + }, + { + "epoch": 48.78367346938776, + "grad_norm": 0.33019116520881653, + "learning_rate": 2.5613821138211385e-05, + "loss": 0.24996454238891602, + "step": 6000 + }, + { + "epoch": 49.59591836734694, + "grad_norm": 0.2988639175891876, + "learning_rate": 2.5207317073170733e-05, + "loss": 0.2463224411010742, + "step": 6100 + }, + { + "epoch": 50.40816326530612, + "grad_norm": 0.31278201937675476, + "learning_rate": 2.4800813008130083e-05, + "loss": 0.2423969841003418, + "step": 6200 + }, + { + "epoch": 51.220408163265304, + "grad_norm": 0.33853426575660706, + "learning_rate": 2.4394308943089434e-05, + "loss": 0.2402469062805176, + "step": 6300 + }, + { + "epoch": 52.03265306122449, + "grad_norm": 0.30223262310028076, + "learning_rate": 2.3987804878048782e-05, + "loss": 0.23620229721069336, + "step": 6400 + }, + { + "epoch": 52.84897959183674, + "grad_norm": 0.29446688294410706, + "learning_rate": 2.3581300813008133e-05, + "loss": 0.23224014282226563, + "step": 6500 + }, + { + "epoch": 53.66122448979592, + "grad_norm": 0.32583415508270264, + "learning_rate": 2.317479674796748e-05, + "loss": 0.22917091369628906, + "step": 6600 + }, + { + "epoch": 54.4734693877551, + "grad_norm": 0.30859264731407166, + "learning_rate": 2.276829268292683e-05, + "loss": 0.2268912124633789, + "step": 6700 + }, + { + "epoch": 55.285714285714285, + "grad_norm": 0.31113457679748535, + "learning_rate": 2.236178861788618e-05, + "loss": 0.2232840347290039, + "step": 6800 + }, + { + "epoch": 56.09795918367347, + "grad_norm": 0.2787556052207947, + "learning_rate": 2.195528455284553e-05, + "loss": 0.22269392013549805, + "step": 6900 + }, + { + "epoch": 56.91428571428571, + "grad_norm": 0.31350278854370117, + "learning_rate": 2.154878048780488e-05, + "loss": 0.21771884918212892, + "step": 7000 + }, + { + "epoch": 57.7265306122449, + "grad_norm": 0.28963643312454224, + "learning_rate": 2.1142276422764227e-05, + "loss": 0.21578874588012695, + "step": 7100 + }, + { + "epoch": 58.53877551020408, + "grad_norm": 0.2832202911376953, + "learning_rate": 2.0735772357723578e-05, + "loss": 0.21327545166015624, + "step": 7200 + }, + { + "epoch": 59.351020408163265, + "grad_norm": 0.3022792339324951, + "learning_rate": 2.0329268292682925e-05, + "loss": 0.2126554489135742, + "step": 7300 + }, + { + "epoch": 60.16326530612245, + "grad_norm": 0.29425740242004395, + "learning_rate": 1.9922764227642276e-05, + "loss": 0.2091551399230957, + "step": 7400 + }, + { + "epoch": 60.97959183673469, + "grad_norm": 0.3006289303302765, + "learning_rate": 1.9516260162601627e-05, + "loss": 0.20839336395263672, + "step": 7500 + }, + { + "epoch": 61.79183673469388, + "grad_norm": 0.28310829401016235, + "learning_rate": 1.9109756097560978e-05, + "loss": 0.20591426849365235, + "step": 7600 + }, + { + "epoch": 62.60408163265306, + "grad_norm": 0.3061628043651581, + "learning_rate": 1.8703252032520325e-05, + "loss": 0.20315048217773438, + "step": 7700 + }, + { + "epoch": 63.416326530612245, + "grad_norm": 0.27300187945365906, + "learning_rate": 1.8296747967479673e-05, + "loss": 0.202825927734375, + "step": 7800 + }, + { + "epoch": 64.22857142857143, + "grad_norm": 0.24376684427261353, + "learning_rate": 1.7890243902439024e-05, + "loss": 0.20038375854492188, + "step": 7900 + }, + { + "epoch": 65.04081632653062, + "grad_norm": 0.28877273201942444, + "learning_rate": 1.7483739837398374e-05, + "loss": 0.19970365524291991, + "step": 8000 + }, + { + "epoch": 65.85714285714286, + "grad_norm": 0.23989948630332947, + "learning_rate": 1.7077235772357725e-05, + "loss": 0.19691890716552735, + "step": 8100 + }, + { + "epoch": 66.66938775510204, + "grad_norm": 0.28822559118270874, + "learning_rate": 1.6670731707317076e-05, + "loss": 0.19575874328613282, + "step": 8200 + }, + { + "epoch": 67.48163265306123, + "grad_norm": 0.2700895667076111, + "learning_rate": 1.6264227642276423e-05, + "loss": 0.1947219467163086, + "step": 8300 + }, + { + "epoch": 68.29387755102042, + "grad_norm": 0.2526496350765228, + "learning_rate": 1.585772357723577e-05, + "loss": 0.19402549743652345, + "step": 8400 + }, + { + "epoch": 69.10612244897959, + "grad_norm": 0.20475488901138306, + "learning_rate": 1.545121951219512e-05, + "loss": 0.1931273651123047, + "step": 8500 + }, + { + "epoch": 69.92244897959183, + "grad_norm": 0.2714834213256836, + "learning_rate": 1.5044715447154473e-05, + "loss": 0.19089672088623047, + "step": 8600 + }, + { + "epoch": 70.73469387755102, + "grad_norm": 0.2766830027103424, + "learning_rate": 1.4638211382113823e-05, + "loss": 0.18954217910766602, + "step": 8700 + }, + { + "epoch": 71.5469387755102, + "grad_norm": 0.3034886121749878, + "learning_rate": 1.423170731707317e-05, + "loss": 0.18781688690185547, + "step": 8800 + }, + { + "epoch": 72.35918367346939, + "grad_norm": 0.24485336244106293, + "learning_rate": 1.382520325203252e-05, + "loss": 0.18732297897338868, + "step": 8900 + }, + { + "epoch": 73.17142857142858, + "grad_norm": 0.23148897290229797, + "learning_rate": 1.341869918699187e-05, + "loss": 0.1871368408203125, + "step": 9000 + }, + { + "epoch": 73.98775510204082, + "grad_norm": 0.21915043890476227, + "learning_rate": 1.301219512195122e-05, + "loss": 0.18623947143554687, + "step": 9100 + }, + { + "epoch": 74.8, + "grad_norm": 0.23356078565120697, + "learning_rate": 1.260569105691057e-05, + "loss": 0.18433347702026368, + "step": 9200 + }, + { + "epoch": 75.61224489795919, + "grad_norm": 0.22005006670951843, + "learning_rate": 1.219918699186992e-05, + "loss": 0.18372562408447266, + "step": 9300 + }, + { + "epoch": 76.42448979591836, + "grad_norm": 0.24768972396850586, + "learning_rate": 1.1792682926829269e-05, + "loss": 0.18352956771850587, + "step": 9400 + }, + { + "epoch": 77.23673469387755, + "grad_norm": 0.23978039622306824, + "learning_rate": 1.1386178861788618e-05, + "loss": 0.18253284454345703, + "step": 9500 + }, + { + "epoch": 78.04897959183674, + "grad_norm": 0.229603111743927, + "learning_rate": 1.0979674796747969e-05, + "loss": 0.18194345474243165, + "step": 9600 + }, + { + "epoch": 78.86530612244898, + "grad_norm": 0.24125361442565918, + "learning_rate": 1.0573170731707318e-05, + "loss": 0.1807528877258301, + "step": 9700 + }, + { + "epoch": 79.67755102040816, + "grad_norm": 0.2205636203289032, + "learning_rate": 1.0166666666666667e-05, + "loss": 0.18057302474975587, + "step": 9800 + }, + { + "epoch": 80.48979591836735, + "grad_norm": 0.2393631935119629, + "learning_rate": 9.760162601626016e-06, + "loss": 0.1798857879638672, + "step": 9900 + }, + { + "epoch": 81.30204081632652, + "grad_norm": 0.24092160165309906, + "learning_rate": 9.353658536585367e-06, + "loss": 0.1784771728515625, + "step": 10000 + }, + { + "epoch": 82.11428571428571, + "grad_norm": 0.24599742889404297, + "learning_rate": 8.947154471544716e-06, + "loss": 0.17834564208984374, + "step": 10100 + }, + { + "epoch": 82.93061224489796, + "grad_norm": 0.22460418939590454, + "learning_rate": 8.540650406504065e-06, + "loss": 0.1772374153137207, + "step": 10200 + }, + { + "epoch": 83.74285714285715, + "grad_norm": 0.2190479338169098, + "learning_rate": 8.134146341463416e-06, + "loss": 0.17636322021484374, + "step": 10300 + }, + { + "epoch": 84.55510204081632, + "grad_norm": 0.2221534252166748, + "learning_rate": 7.727642276422763e-06, + "loss": 0.1762386703491211, + "step": 10400 + }, + { + "epoch": 85.36734693877551, + "grad_norm": 0.26244837045669556, + "learning_rate": 7.321138211382114e-06, + "loss": 0.1751699638366699, + "step": 10500 + }, + { + "epoch": 86.17959183673469, + "grad_norm": 0.22107520699501038, + "learning_rate": 6.914634146341464e-06, + "loss": 0.17485345840454103, + "step": 10600 + }, + { + "epoch": 86.99591836734695, + "grad_norm": 0.23993152379989624, + "learning_rate": 6.508130081300813e-06, + "loss": 0.1742844581604004, + "step": 10700 + }, + { + "epoch": 87.80816326530612, + "grad_norm": 0.2439497411251068, + "learning_rate": 6.101626016260163e-06, + "loss": 0.1729772186279297, + "step": 10800 + }, + { + "epoch": 88.62040816326531, + "grad_norm": 0.17270337045192719, + "learning_rate": 5.695121951219512e-06, + "loss": 0.17377023696899413, + "step": 10900 + }, + { + "epoch": 89.43265306122449, + "grad_norm": 0.21495409309864044, + "learning_rate": 5.288617886178862e-06, + "loss": 0.17239656448364257, + "step": 11000 + }, + { + "epoch": 90.24489795918367, + "grad_norm": 0.22590148448944092, + "learning_rate": 4.8821138211382115e-06, + "loss": 0.1718999481201172, + "step": 11100 + }, + { + "epoch": 91.05714285714286, + "grad_norm": 0.23818287253379822, + "learning_rate": 4.475609756097561e-06, + "loss": 0.17191593170166017, + "step": 11200 + }, + { + "epoch": 91.87346938775511, + "grad_norm": 0.20226499438285828, + "learning_rate": 4.069105691056911e-06, + "loss": 0.1716364097595215, + "step": 11300 + }, + { + "epoch": 92.68571428571428, + "grad_norm": 0.21012510359287262, + "learning_rate": 3.6626016260162606e-06, + "loss": 0.17097190856933595, + "step": 11400 + }, + { + "epoch": 93.49795918367347, + "grad_norm": 0.2207111269235611, + "learning_rate": 3.25609756097561e-06, + "loss": 0.17108001708984374, + "step": 11500 + }, + { + "epoch": 94.31020408163265, + "grad_norm": 0.24261923134326935, + "learning_rate": 2.8495934959349596e-06, + "loss": 0.16977045059204102, + "step": 11600 + }, + { + "epoch": 95.12244897959184, + "grad_norm": 0.21230651438236237, + "learning_rate": 2.4430894308943088e-06, + "loss": 0.17076728820800782, + "step": 11700 + }, + { + "epoch": 95.93877551020408, + "grad_norm": 0.23544330894947052, + "learning_rate": 2.0365853658536587e-06, + "loss": 0.1692482566833496, + "step": 11800 + }, + { + "epoch": 96.75102040816327, + "grad_norm": 0.21479812264442444, + "learning_rate": 1.630081300813008e-06, + "loss": 0.16898462295532227, + "step": 11900 + }, + { + "epoch": 97.56326530612245, + "grad_norm": 0.2458772510290146, + "learning_rate": 1.2235772357723578e-06, + "loss": 0.16863704681396485, + "step": 12000 + }, + { + "epoch": 98.37551020408164, + "grad_norm": 0.255893349647522, + "learning_rate": 8.170731707317074e-07, + "loss": 0.16806327819824218, + "step": 12100 + }, + { + "epoch": 99.18775510204081, + "grad_norm": 0.19238370656967163, + "learning_rate": 4.105691056910569e-07, + "loss": 0.1685107421875, + "step": 12200 + } + ], + "logging_steps": 100, + "max_steps": 12300, + "num_input_tokens_seen": 0, + "num_train_epochs": 100, + "save_steps": 100, + "stateful_callbacks": { + "TrainerControl": { + "args": { + "should_epoch_stop": false, + "should_evaluate": false, + "should_log": false, + "should_save": true, + "should_training_stop": false + }, + "attributes": {} + } + }, + "total_flos": 5751550777393152.0, + "train_batch_size": 8, + "trial_name": null, + "trial_params": null +} diff --git a/timecost/n3/realtabformer/rtf-n3-20260501_010320/rtf_checkpoints/checkpoint-12200/training_args.bin b/timecost/n3/realtabformer/rtf-n3-20260501_010320/rtf_checkpoints/checkpoint-12200/training_args.bin new file mode 100644 index 0000000000000000000000000000000000000000..34d68dc0e0fe1c1f12a2e581dd1b166aa7178a9e --- /dev/null +++ b/timecost/n3/realtabformer/rtf-n3-20260501_010320/rtf_checkpoints/checkpoint-12200/training_args.bin @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:9e2cd88337d1d846c6918d2b3b63fa3e5c93f12fefc082497590da854a564607 +size 5201 diff --git a/timecost/n3/realtabformer/rtf-n3-20260501_010320/rtf_checkpoints/checkpoint-12300/config.json b/timecost/n3/realtabformer/rtf-n3-20260501_010320/rtf_checkpoints/checkpoint-12300/config.json new file mode 100644 index 0000000000000000000000000000000000000000..1876b75d3abc713ca867fe8e643ea273dc9cea87 --- /dev/null +++ b/timecost/n3/realtabformer/rtf-n3-20260501_010320/rtf_checkpoints/checkpoint-12300/config.json @@ -0,0 +1,34 @@ +{ + "activation_function": "gelu_new", + "add_cross_attention": false, + "architectures": [ + "GPT2LMHeadModel" + ], + "attn_pdrop": 0.1, + "bos_token_id": 5, + "dtype": "float32", + "embd_pdrop": 0.1, + "eos_token_id": 6, + "initializer_range": 0.02, + "layer_norm_epsilon": 1e-05, + "model_type": "gpt2", + "n_embd": 768, + "n_head": 12, + "n_inner": null, + "n_layer": 6, + "n_positions": 1024, + "pad_token_id": null, + "reorder_and_upcast_attn": false, + "resid_pdrop": 0.1, + "scale_attn_by_inverse_layer_idx": false, + "scale_attn_weights": true, + "summary_activation": null, + "summary_first_dropout": 0.1, + "summary_proj_to_labels": true, + "summary_type": "cls_index", + "summary_use_proj": true, + "tie_word_embeddings": true, + "transformers_version": "5.5.3", + "use_cache": false, + "vocab_size": 304 +} diff --git a/timecost/n3/realtabformer/rtf-n3-20260501_010320/rtf_checkpoints/checkpoint-12300/generation_config.json b/timecost/n3/realtabformer/rtf-n3-20260501_010320/rtf_checkpoints/checkpoint-12300/generation_config.json new file mode 100644 index 0000000000000000000000000000000000000000..ffe89567780e75b5c22eade9be971483b9618f39 --- /dev/null +++ b/timecost/n3/realtabformer/rtf-n3-20260501_010320/rtf_checkpoints/checkpoint-12300/generation_config.json @@ -0,0 +1,9 @@ +{ + "_from_model_config": true, + "bos_token_id": 5, + "eos_token_id": 6, + "output_attentions": false, + "output_hidden_states": false, + "transformers_version": "5.5.3", + "use_cache": true +} diff --git a/timecost/n3/realtabformer/rtf-n3-20260501_010320/rtf_checkpoints/checkpoint-12300/model.safetensors b/timecost/n3/realtabformer/rtf-n3-20260501_010320/rtf_checkpoints/checkpoint-12300/model.safetensors new file mode 100644 index 0000000000000000000000000000000000000000..0b826221ad9e71d8afbdd6c06c9ffafafd2ae603 --- /dev/null +++ b/timecost/n3/realtabformer/rtf-n3-20260501_010320/rtf_checkpoints/checkpoint-12300/model.safetensors @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:05f02116a3fcc0ca871ce7e4df98a5b8bbf1dcda048a80757739086a89cec912 +size 174202312 diff --git a/timecost/n3/realtabformer/rtf-n3-20260501_010320/rtf_checkpoints/checkpoint-12300/optimizer.pt b/timecost/n3/realtabformer/rtf-n3-20260501_010320/rtf_checkpoints/checkpoint-12300/optimizer.pt new file mode 100644 index 0000000000000000000000000000000000000000..98e2d9be23a6012b6780f9c072d163a37d921a3c --- /dev/null +++ b/timecost/n3/realtabformer/rtf-n3-20260501_010320/rtf_checkpoints/checkpoint-12300/optimizer.pt @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:dd22bb6abb0eaeaf16eaf761c0a32a227df36fa28e470720d7d3b97a09e7a283 +size 348453707 diff --git a/timecost/n3/realtabformer/rtf-n3-20260501_010320/rtf_checkpoints/checkpoint-12300/rng_state.pth b/timecost/n3/realtabformer/rtf-n3-20260501_010320/rtf_checkpoints/checkpoint-12300/rng_state.pth new file mode 100644 index 0000000000000000000000000000000000000000..7c2780d2855c200870db7d1121551866da90de77 --- /dev/null +++ b/timecost/n3/realtabformer/rtf-n3-20260501_010320/rtf_checkpoints/checkpoint-12300/rng_state.pth @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:2bd9db7111b5da9687ad52452c9c9a05d7558fcd12f3c6ce781b9bc8aa57d727 +size 14645 diff --git a/timecost/n3/realtabformer/rtf-n3-20260501_010320/rtf_checkpoints/checkpoint-12300/scaler.pt b/timecost/n3/realtabformer/rtf-n3-20260501_010320/rtf_checkpoints/checkpoint-12300/scaler.pt new file mode 100644 index 0000000000000000000000000000000000000000..01822a70fdf84f65d2035bdfc593b17eeeefacdc --- /dev/null +++ b/timecost/n3/realtabformer/rtf-n3-20260501_010320/rtf_checkpoints/checkpoint-12300/scaler.pt @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:bf4353b6bed2fb7c84e43cc1ae53190d54660076751761ee833f716eb83d61f9 +size 1383 diff --git a/timecost/n3/realtabformer/rtf-n3-20260501_010320/rtf_checkpoints/checkpoint-12300/scheduler.pt b/timecost/n3/realtabformer/rtf-n3-20260501_010320/rtf_checkpoints/checkpoint-12300/scheduler.pt new file mode 100644 index 0000000000000000000000000000000000000000..68ded389e633f7475cfb37bb4138fd8bb5da9eda --- /dev/null +++ b/timecost/n3/realtabformer/rtf-n3-20260501_010320/rtf_checkpoints/checkpoint-12300/scheduler.pt @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:3acf0e63d87a08b1c5009af68184a15614cac3fef609c454bfc755dc9881ec74 +size 1465 diff --git a/timecost/n3/realtabformer/rtf-n3-20260501_010320/rtf_checkpoints/checkpoint-12300/trainer_state.json b/timecost/n3/realtabformer/rtf-n3-20260501_010320/rtf_checkpoints/checkpoint-12300/trainer_state.json new file mode 100644 index 0000000000000000000000000000000000000000..774b90b20cdb4c57663b90a6f67a1c810c1574c0 --- /dev/null +++ b/timecost/n3/realtabformer/rtf-n3-20260501_010320/rtf_checkpoints/checkpoint-12300/trainer_state.json @@ -0,0 +1,895 @@ +{ + "best_global_step": null, + "best_metric": null, + "best_model_checkpoint": null, + "epoch": 100.0, + "eval_steps": 100, + "global_step": 12300, + "is_hyper_param_search": false, + "is_local_process_zero": true, + "is_world_process_zero": true, + "log_history": [ + { + "epoch": 0.8163265306122449, + "grad_norm": 0.20639584958553314, + "learning_rate": 4.9597560975609755e-05, + "loss": 1.4745872497558594, + "step": 100 + }, + { + "epoch": 1.6285714285714286, + "grad_norm": 0.1949000358581543, + "learning_rate": 4.91910569105691e-05, + "loss": 0.8799897766113282, + "step": 200 + }, + { + "epoch": 2.440816326530612, + "grad_norm": 0.19164182245731354, + "learning_rate": 4.878455284552846e-05, + "loss": 0.8385199737548829, + "step": 300 + }, + { + "epoch": 3.253061224489796, + "grad_norm": 0.1767745316028595, + "learning_rate": 4.8378048780487804e-05, + "loss": 0.8195798492431641, + "step": 400 + }, + { + "epoch": 4.0653061224489795, + "grad_norm": 0.17210832238197327, + "learning_rate": 4.797154471544716e-05, + "loss": 0.805633544921875, + "step": 500 + }, + { + "epoch": 4.881632653061224, + "grad_norm": 0.18165253102779388, + "learning_rate": 4.7565040650406506e-05, + "loss": 0.7969439697265625, + "step": 600 + }, + { + "epoch": 5.6938775510204085, + "grad_norm": 0.19815795123577118, + "learning_rate": 4.715853658536585e-05, + "loss": 0.7886590576171875, + "step": 700 + }, + { + "epoch": 6.506122448979592, + "grad_norm": 0.17318786680698395, + "learning_rate": 4.675203252032521e-05, + "loss": 0.7834711456298828, + "step": 800 + }, + { + "epoch": 7.318367346938776, + "grad_norm": 0.1702745109796524, + "learning_rate": 4.6345528455284555e-05, + "loss": 0.7785483551025391, + "step": 900 + }, + { + "epoch": 8.130612244897959, + "grad_norm": 0.1857929825782776, + "learning_rate": 4.593902439024391e-05, + "loss": 0.7725027465820312, + "step": 1000 + }, + { + "epoch": 8.946938775510205, + "grad_norm": 0.17213623225688934, + "learning_rate": 4.5532520325203256e-05, + "loss": 0.7679139709472657, + "step": 1100 + }, + { + "epoch": 9.759183673469387, + "grad_norm": 0.173990860581398, + "learning_rate": 4.5126016260162604e-05, + "loss": 0.7615008544921875, + "step": 1200 + }, + { + "epoch": 10.571428571428571, + "grad_norm": 0.1709279716014862, + "learning_rate": 4.471951219512195e-05, + "loss": 0.7550846862792969, + "step": 1300 + }, + { + "epoch": 11.383673469387755, + "grad_norm": 0.1852250099182129, + "learning_rate": 4.43130081300813e-05, + "loss": 0.7509546661376953, + "step": 1400 + }, + { + "epoch": 12.19591836734694, + "grad_norm": 0.19050434231758118, + "learning_rate": 4.390650406504065e-05, + "loss": 0.7481673431396484, + "step": 1500 + }, + { + "epoch": 13.008163265306122, + "grad_norm": 0.17918676137924194, + "learning_rate": 4.35e-05, + "loss": 0.7416070556640625, + "step": 1600 + }, + { + "epoch": 13.824489795918367, + "grad_norm": 0.20031221210956573, + "learning_rate": 4.309349593495935e-05, + "loss": 0.7341732025146485, + "step": 1700 + }, + { + "epoch": 14.636734693877552, + "grad_norm": 0.206989124417305, + "learning_rate": 4.26869918699187e-05, + "loss": 0.7266737365722656, + "step": 1800 + }, + { + "epoch": 15.448979591836734, + "grad_norm": 0.20765261352062225, + "learning_rate": 4.228048780487805e-05, + "loss": 0.7223382568359376, + "step": 1900 + }, + { + "epoch": 16.261224489795918, + "grad_norm": 0.21891070902347565, + "learning_rate": 4.1873983739837404e-05, + "loss": 0.7137351226806641, + "step": 2000 + }, + { + "epoch": 17.073469387755104, + "grad_norm": 0.21613141894340515, + "learning_rate": 4.146747967479675e-05, + "loss": 0.7111404418945313, + "step": 2100 + }, + { + "epoch": 17.889795918367348, + "grad_norm": 0.21502180397510529, + "learning_rate": 4.10609756097561e-05, + "loss": 0.6979566192626954, + "step": 2200 + }, + { + "epoch": 18.70204081632653, + "grad_norm": 0.22264128923416138, + "learning_rate": 4.065447154471545e-05, + "loss": 0.6864246368408203, + "step": 2300 + }, + { + "epoch": 19.514285714285712, + "grad_norm": 0.22031748294830322, + "learning_rate": 4.02479674796748e-05, + "loss": 0.678118896484375, + "step": 2400 + }, + { + "epoch": 20.3265306122449, + "grad_norm": 0.24292652308940887, + "learning_rate": 3.984146341463415e-05, + "loss": 0.6696414184570313, + "step": 2500 + }, + { + "epoch": 21.13877551020408, + "grad_norm": 0.23444044589996338, + "learning_rate": 3.9434959349593495e-05, + "loss": 0.6571144866943359, + "step": 2600 + }, + { + "epoch": 21.955102040816328, + "grad_norm": 0.26427289843559265, + "learning_rate": 3.902845528455284e-05, + "loss": 0.644508056640625, + "step": 2700 + }, + { + "epoch": 22.76734693877551, + "grad_norm": 0.2826888859272003, + "learning_rate": 3.8621951219512196e-05, + "loss": 0.6250789260864258, + "step": 2800 + }, + { + "epoch": 23.579591836734693, + "grad_norm": 0.28523582220077515, + "learning_rate": 3.8215447154471544e-05, + "loss": 0.6115097045898438, + "step": 2900 + }, + { + "epoch": 24.39183673469388, + "grad_norm": 0.3078940808773041, + "learning_rate": 3.78089430894309e-05, + "loss": 0.5938611602783204, + "step": 3000 + }, + { + "epoch": 25.20408163265306, + "grad_norm": 0.2929214537143707, + "learning_rate": 3.7402439024390246e-05, + "loss": 0.5813701629638672, + "step": 3100 + }, + { + "epoch": 26.016326530612243, + "grad_norm": 0.29797449707984924, + "learning_rate": 3.699593495934959e-05, + "loss": 0.565318717956543, + "step": 3200 + }, + { + "epoch": 26.83265306122449, + "grad_norm": 0.34011322259902954, + "learning_rate": 3.658943089430895e-05, + "loss": 0.5397001266479492, + "step": 3300 + }, + { + "epoch": 27.644897959183673, + "grad_norm": 0.312648206949234, + "learning_rate": 3.6182926829268295e-05, + "loss": 0.5236684799194335, + "step": 3400 + }, + { + "epoch": 28.457142857142856, + "grad_norm": 0.3535107970237732, + "learning_rate": 3.577642276422765e-05, + "loss": 0.5073324966430665, + "step": 3500 + }, + { + "epoch": 29.26938775510204, + "grad_norm": 0.32181501388549805, + "learning_rate": 3.5369918699186996e-05, + "loss": 0.49109951019287107, + "step": 3600 + }, + { + "epoch": 30.081632653061224, + "grad_norm": 0.32014670968055725, + "learning_rate": 3.4963414634146344e-05, + "loss": 0.47566513061523436, + "step": 3700 + }, + { + "epoch": 30.897959183673468, + "grad_norm": 0.3838709890842438, + "learning_rate": 3.455691056910569e-05, + "loss": 0.4567824172973633, + "step": 3800 + }, + { + "epoch": 31.710204081632654, + "grad_norm": 0.361082524061203, + "learning_rate": 3.415040650406504e-05, + "loss": 0.4356218719482422, + "step": 3900 + }, + { + "epoch": 32.522448979591836, + "grad_norm": 0.3454324007034302, + "learning_rate": 3.374390243902439e-05, + "loss": 0.4223041534423828, + "step": 4000 + }, + { + "epoch": 33.33469387755102, + "grad_norm": 0.3978846073150635, + "learning_rate": 3.333739837398374e-05, + "loss": 0.4082141876220703, + "step": 4100 + }, + { + "epoch": 34.14693877551021, + "grad_norm": 0.35300812125205994, + "learning_rate": 3.293089430894309e-05, + "loss": 0.3971371841430664, + "step": 4200 + }, + { + "epoch": 34.96326530612245, + "grad_norm": 0.39180585741996765, + "learning_rate": 3.252439024390244e-05, + "loss": 0.38660186767578125, + "step": 4300 + }, + { + "epoch": 35.775510204081634, + "grad_norm": 0.34937477111816406, + "learning_rate": 3.211788617886179e-05, + "loss": 0.36573085784912107, + "step": 4400 + }, + { + "epoch": 36.587755102040816, + "grad_norm": 0.34532594680786133, + "learning_rate": 3.171138211382114e-05, + "loss": 0.357391357421875, + "step": 4500 + }, + { + "epoch": 37.4, + "grad_norm": 0.3401789665222168, + "learning_rate": 3.130487804878049e-05, + "loss": 0.35067024230957033, + "step": 4600 + }, + { + "epoch": 38.21224489795918, + "grad_norm": 0.35807526111602783, + "learning_rate": 3.089837398373984e-05, + "loss": 0.33775680541992187, + "step": 4700 + }, + { + "epoch": 39.02448979591837, + "grad_norm": 0.3305448591709137, + "learning_rate": 3.049186991869919e-05, + "loss": 0.3307634735107422, + "step": 4800 + }, + { + "epoch": 39.840816326530614, + "grad_norm": 0.35710543394088745, + "learning_rate": 3.0085365853658536e-05, + "loss": 0.3170050811767578, + "step": 4900 + }, + { + "epoch": 40.6530612244898, + "grad_norm": 0.3527916967868805, + "learning_rate": 2.967886178861789e-05, + "loss": 0.3097914505004883, + "step": 5000 + }, + { + "epoch": 41.46530612244898, + "grad_norm": 0.32809746265411377, + "learning_rate": 2.9272357723577238e-05, + "loss": 0.3027458190917969, + "step": 5100 + }, + { + "epoch": 42.27755102040816, + "grad_norm": 0.31058913469314575, + "learning_rate": 2.8865853658536585e-05, + "loss": 0.29558998107910156, + "step": 5200 + }, + { + "epoch": 43.089795918367344, + "grad_norm": 0.34247487783432007, + "learning_rate": 2.8459349593495936e-05, + "loss": 0.2922693824768066, + "step": 5300 + }, + { + "epoch": 43.906122448979595, + "grad_norm": 0.30968013405799866, + "learning_rate": 2.8052845528455284e-05, + "loss": 0.2823493576049805, + "step": 5400 + }, + { + "epoch": 44.71836734693878, + "grad_norm": 0.3155519366264343, + "learning_rate": 2.7646341463414638e-05, + "loss": 0.27321760177612303, + "step": 5500 + }, + { + "epoch": 45.53061224489796, + "grad_norm": 0.31056052446365356, + "learning_rate": 2.7239837398373985e-05, + "loss": 0.2715290069580078, + "step": 5600 + }, + { + "epoch": 46.34285714285714, + "grad_norm": 0.31267017126083374, + "learning_rate": 2.6833333333333333e-05, + "loss": 0.2654402160644531, + "step": 5700 + }, + { + "epoch": 47.155102040816324, + "grad_norm": 0.32218316197395325, + "learning_rate": 2.6426829268292687e-05, + "loss": 0.26081199645996095, + "step": 5800 + }, + { + "epoch": 47.97142857142857, + "grad_norm": 0.34338584542274475, + "learning_rate": 2.6020325203252034e-05, + "loss": 0.2576237869262695, + "step": 5900 + }, + { + "epoch": 48.78367346938776, + "grad_norm": 0.33019116520881653, + "learning_rate": 2.5613821138211385e-05, + "loss": 0.24996454238891602, + "step": 6000 + }, + { + "epoch": 49.59591836734694, + "grad_norm": 0.2988639175891876, + "learning_rate": 2.5207317073170733e-05, + "loss": 0.2463224411010742, + "step": 6100 + }, + { + "epoch": 50.40816326530612, + "grad_norm": 0.31278201937675476, + "learning_rate": 2.4800813008130083e-05, + "loss": 0.2423969841003418, + "step": 6200 + }, + { + "epoch": 51.220408163265304, + "grad_norm": 0.33853426575660706, + "learning_rate": 2.4394308943089434e-05, + "loss": 0.2402469062805176, + "step": 6300 + }, + { + "epoch": 52.03265306122449, + "grad_norm": 0.30223262310028076, + "learning_rate": 2.3987804878048782e-05, + "loss": 0.23620229721069336, + "step": 6400 + }, + { + "epoch": 52.84897959183674, + "grad_norm": 0.29446688294410706, + "learning_rate": 2.3581300813008133e-05, + "loss": 0.23224014282226563, + "step": 6500 + }, + { + "epoch": 53.66122448979592, + "grad_norm": 0.32583415508270264, + "learning_rate": 2.317479674796748e-05, + "loss": 0.22917091369628906, + "step": 6600 + }, + { + "epoch": 54.4734693877551, + "grad_norm": 0.30859264731407166, + "learning_rate": 2.276829268292683e-05, + "loss": 0.2268912124633789, + "step": 6700 + }, + { + "epoch": 55.285714285714285, + "grad_norm": 0.31113457679748535, + "learning_rate": 2.236178861788618e-05, + "loss": 0.2232840347290039, + "step": 6800 + }, + { + "epoch": 56.09795918367347, + "grad_norm": 0.2787556052207947, + "learning_rate": 2.195528455284553e-05, + "loss": 0.22269392013549805, + "step": 6900 + }, + { + "epoch": 56.91428571428571, + "grad_norm": 0.31350278854370117, + "learning_rate": 2.154878048780488e-05, + "loss": 0.21771884918212892, + "step": 7000 + }, + { + "epoch": 57.7265306122449, + "grad_norm": 0.28963643312454224, + "learning_rate": 2.1142276422764227e-05, + "loss": 0.21578874588012695, + "step": 7100 + }, + { + "epoch": 58.53877551020408, + "grad_norm": 0.2832202911376953, + "learning_rate": 2.0735772357723578e-05, + "loss": 0.21327545166015624, + "step": 7200 + }, + { + "epoch": 59.351020408163265, + "grad_norm": 0.3022792339324951, + "learning_rate": 2.0329268292682925e-05, + "loss": 0.2126554489135742, + "step": 7300 + }, + { + "epoch": 60.16326530612245, + "grad_norm": 0.29425740242004395, + "learning_rate": 1.9922764227642276e-05, + "loss": 0.2091551399230957, + "step": 7400 + }, + { + "epoch": 60.97959183673469, + "grad_norm": 0.3006289303302765, + "learning_rate": 1.9516260162601627e-05, + "loss": 0.20839336395263672, + "step": 7500 + }, + { + "epoch": 61.79183673469388, + "grad_norm": 0.28310829401016235, + "learning_rate": 1.9109756097560978e-05, + "loss": 0.20591426849365235, + "step": 7600 + }, + { + "epoch": 62.60408163265306, + "grad_norm": 0.3061628043651581, + "learning_rate": 1.8703252032520325e-05, + "loss": 0.20315048217773438, + "step": 7700 + }, + { + "epoch": 63.416326530612245, + "grad_norm": 0.27300187945365906, + "learning_rate": 1.8296747967479673e-05, + "loss": 0.202825927734375, + "step": 7800 + }, + { + "epoch": 64.22857142857143, + "grad_norm": 0.24376684427261353, + "learning_rate": 1.7890243902439024e-05, + "loss": 0.20038375854492188, + "step": 7900 + }, + { + "epoch": 65.04081632653062, + "grad_norm": 0.28877273201942444, + "learning_rate": 1.7483739837398374e-05, + "loss": 0.19970365524291991, + "step": 8000 + }, + { + "epoch": 65.85714285714286, + "grad_norm": 0.23989948630332947, + "learning_rate": 1.7077235772357725e-05, + "loss": 0.19691890716552735, + "step": 8100 + }, + { + "epoch": 66.66938775510204, + "grad_norm": 0.28822559118270874, + "learning_rate": 1.6670731707317076e-05, + "loss": 0.19575874328613282, + "step": 8200 + }, + { + "epoch": 67.48163265306123, + "grad_norm": 0.2700895667076111, + "learning_rate": 1.6264227642276423e-05, + "loss": 0.1947219467163086, + "step": 8300 + }, + { + "epoch": 68.29387755102042, + "grad_norm": 0.2526496350765228, + "learning_rate": 1.585772357723577e-05, + "loss": 0.19402549743652345, + "step": 8400 + }, + { + "epoch": 69.10612244897959, + "grad_norm": 0.20475488901138306, + "learning_rate": 1.545121951219512e-05, + "loss": 0.1931273651123047, + "step": 8500 + }, + { + "epoch": 69.92244897959183, + "grad_norm": 0.2714834213256836, + "learning_rate": 1.5044715447154473e-05, + "loss": 0.19089672088623047, + "step": 8600 + }, + { + "epoch": 70.73469387755102, + "grad_norm": 0.2766830027103424, + "learning_rate": 1.4638211382113823e-05, + "loss": 0.18954217910766602, + "step": 8700 + }, + { + "epoch": 71.5469387755102, + "grad_norm": 0.3034886121749878, + "learning_rate": 1.423170731707317e-05, + "loss": 0.18781688690185547, + "step": 8800 + }, + { + "epoch": 72.35918367346939, + "grad_norm": 0.24485336244106293, + "learning_rate": 1.382520325203252e-05, + "loss": 0.18732297897338868, + "step": 8900 + }, + { + "epoch": 73.17142857142858, + "grad_norm": 0.23148897290229797, + "learning_rate": 1.341869918699187e-05, + "loss": 0.1871368408203125, + "step": 9000 + }, + { + "epoch": 73.98775510204082, + "grad_norm": 0.21915043890476227, + "learning_rate": 1.301219512195122e-05, + "loss": 0.18623947143554687, + "step": 9100 + }, + { + "epoch": 74.8, + "grad_norm": 0.23356078565120697, + "learning_rate": 1.260569105691057e-05, + "loss": 0.18433347702026368, + "step": 9200 + }, + { + "epoch": 75.61224489795919, + "grad_norm": 0.22005006670951843, + "learning_rate": 1.219918699186992e-05, + "loss": 0.18372562408447266, + "step": 9300 + }, + { + "epoch": 76.42448979591836, + "grad_norm": 0.24768972396850586, + "learning_rate": 1.1792682926829269e-05, + "loss": 0.18352956771850587, + "step": 9400 + }, + { + "epoch": 77.23673469387755, + "grad_norm": 0.23978039622306824, + "learning_rate": 1.1386178861788618e-05, + "loss": 0.18253284454345703, + "step": 9500 + }, + { + "epoch": 78.04897959183674, + "grad_norm": 0.229603111743927, + "learning_rate": 1.0979674796747969e-05, + "loss": 0.18194345474243165, + "step": 9600 + }, + { + "epoch": 78.86530612244898, + "grad_norm": 0.24125361442565918, + "learning_rate": 1.0573170731707318e-05, + "loss": 0.1807528877258301, + "step": 9700 + }, + { + "epoch": 79.67755102040816, + "grad_norm": 0.2205636203289032, + "learning_rate": 1.0166666666666667e-05, + "loss": 0.18057302474975587, + "step": 9800 + }, + { + "epoch": 80.48979591836735, + "grad_norm": 0.2393631935119629, + "learning_rate": 9.760162601626016e-06, + "loss": 0.1798857879638672, + "step": 9900 + }, + { + "epoch": 81.30204081632652, + "grad_norm": 0.24092160165309906, + "learning_rate": 9.353658536585367e-06, + "loss": 0.1784771728515625, + "step": 10000 + }, + { + "epoch": 82.11428571428571, + "grad_norm": 0.24599742889404297, + "learning_rate": 8.947154471544716e-06, + "loss": 0.17834564208984374, + "step": 10100 + }, + { + "epoch": 82.93061224489796, + "grad_norm": 0.22460418939590454, + "learning_rate": 8.540650406504065e-06, + "loss": 0.1772374153137207, + "step": 10200 + }, + { + "epoch": 83.74285714285715, + "grad_norm": 0.2190479338169098, + "learning_rate": 8.134146341463416e-06, + "loss": 0.17636322021484374, + "step": 10300 + }, + { + "epoch": 84.55510204081632, + "grad_norm": 0.2221534252166748, + "learning_rate": 7.727642276422763e-06, + "loss": 0.1762386703491211, + "step": 10400 + }, + { + "epoch": 85.36734693877551, + "grad_norm": 0.26244837045669556, + "learning_rate": 7.321138211382114e-06, + "loss": 0.1751699638366699, + "step": 10500 + }, + { + "epoch": 86.17959183673469, + "grad_norm": 0.22107520699501038, + "learning_rate": 6.914634146341464e-06, + "loss": 0.17485345840454103, + "step": 10600 + }, + { + "epoch": 86.99591836734695, + "grad_norm": 0.23993152379989624, + "learning_rate": 6.508130081300813e-06, + "loss": 0.1742844581604004, + "step": 10700 + }, + { + "epoch": 87.80816326530612, + "grad_norm": 0.2439497411251068, + "learning_rate": 6.101626016260163e-06, + "loss": 0.1729772186279297, + "step": 10800 + }, + { + "epoch": 88.62040816326531, + "grad_norm": 0.17270337045192719, + "learning_rate": 5.695121951219512e-06, + "loss": 0.17377023696899413, + "step": 10900 + }, + { + "epoch": 89.43265306122449, + "grad_norm": 0.21495409309864044, + "learning_rate": 5.288617886178862e-06, + "loss": 0.17239656448364257, + "step": 11000 + }, + { + "epoch": 90.24489795918367, + "grad_norm": 0.22590148448944092, + "learning_rate": 4.8821138211382115e-06, + "loss": 0.1718999481201172, + "step": 11100 + }, + { + "epoch": 91.05714285714286, + "grad_norm": 0.23818287253379822, + "learning_rate": 4.475609756097561e-06, + "loss": 0.17191593170166017, + "step": 11200 + }, + { + "epoch": 91.87346938775511, + "grad_norm": 0.20226499438285828, + "learning_rate": 4.069105691056911e-06, + "loss": 0.1716364097595215, + "step": 11300 + }, + { + "epoch": 92.68571428571428, + "grad_norm": 0.21012510359287262, + "learning_rate": 3.6626016260162606e-06, + "loss": 0.17097190856933595, + "step": 11400 + }, + { + "epoch": 93.49795918367347, + "grad_norm": 0.2207111269235611, + "learning_rate": 3.25609756097561e-06, + "loss": 0.17108001708984374, + "step": 11500 + }, + { + "epoch": 94.31020408163265, + "grad_norm": 0.24261923134326935, + "learning_rate": 2.8495934959349596e-06, + "loss": 0.16977045059204102, + "step": 11600 + }, + { + "epoch": 95.12244897959184, + "grad_norm": 0.21230651438236237, + "learning_rate": 2.4430894308943088e-06, + "loss": 0.17076728820800782, + "step": 11700 + }, + { + "epoch": 95.93877551020408, + "grad_norm": 0.23544330894947052, + "learning_rate": 2.0365853658536587e-06, + "loss": 0.1692482566833496, + "step": 11800 + }, + { + "epoch": 96.75102040816327, + "grad_norm": 0.21479812264442444, + "learning_rate": 1.630081300813008e-06, + "loss": 0.16898462295532227, + "step": 11900 + }, + { + "epoch": 97.56326530612245, + "grad_norm": 0.2458772510290146, + "learning_rate": 1.2235772357723578e-06, + "loss": 0.16863704681396485, + "step": 12000 + }, + { + "epoch": 98.37551020408164, + "grad_norm": 0.255893349647522, + "learning_rate": 8.170731707317074e-07, + "loss": 0.16806327819824218, + "step": 12100 + }, + { + "epoch": 99.18775510204081, + "grad_norm": 0.19238370656967163, + "learning_rate": 4.105691056910569e-07, + "loss": 0.1685107421875, + "step": 12200 + }, + { + "epoch": 100.0, + "grad_norm": 0.33604246377944946, + "learning_rate": 4.065040650406504e-09, + "loss": 0.16821050643920898, + "step": 12300 + } + ], + "logging_steps": 100, + "max_steps": 12300, + "num_input_tokens_seen": 0, + "num_train_epochs": 100, + "save_steps": 100, + "stateful_callbacks": { + "TrainerControl": { + "args": { + "should_epoch_stop": false, + "should_evaluate": false, + "should_log": false, + "should_save": true, + "should_training_stop": true + }, + "attributes": {} + } + }, + "total_flos": 5798644413235200.0, + "train_batch_size": 8, + "trial_name": null, + "trial_params": null +} diff --git a/timecost/n3/realtabformer/rtf-n3-20260501_010320/rtf_checkpoints/checkpoint-12300/training_args.bin b/timecost/n3/realtabformer/rtf-n3-20260501_010320/rtf_checkpoints/checkpoint-12300/training_args.bin new file mode 100644 index 0000000000000000000000000000000000000000..34d68dc0e0fe1c1f12a2e581dd1b166aa7178a9e --- /dev/null +++ b/timecost/n3/realtabformer/rtf-n3-20260501_010320/rtf_checkpoints/checkpoint-12300/training_args.bin @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:9e2cd88337d1d846c6918d2b3b63fa3e5c93f12fefc082497590da854a564607 +size 5201 diff --git a/timecost/n3/realtabformer/rtf-n3-20260501_010320/runtime_result.json b/timecost/n3/realtabformer/rtf-n3-20260501_010320/runtime_result.json new file mode 100644 index 0000000000000000000000000000000000000000..5ace47a44f24bf8f9085d518a210d797bda6bd5c --- /dev/null +++ b/timecost/n3/realtabformer/rtf-n3-20260501_010320/runtime_result.json @@ -0,0 +1,27 @@ +{ + "dataset_id": "n3", + "model": "realtabformer", + "run_id": "rtf-n3-20260501_010320", + "public_gate_status": "pass", + "adapter_ready_status": "pass", + "train_status": "success", + "generate_status": "success", + "reason_code": null, + "reason_detail": null, + "artifacts": { + "synthetic_csv": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/n3/realtabformer/rtf-n3-20260501_010320/rtf-n3-3918-20260501_011818.csv", + "model_path": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/n3/realtabformer/rtf-n3-20260501_010320/models_100epochs" + }, + "timings": { + "train": { + "started_at": "2026-05-01T01:03:20", + "ended_at": "2026-05-01T01:18:18", + "duration_sec": 897.295 + }, + "generate": { + "started_at": "2026-05-01T01:18:18", + "ended_at": "2026-05-01T01:18:56", + "duration_sec": 38.385 + } + } +} \ No newline at end of file diff --git a/timecost/n3/realtabformer/rtf-n3-20260501_010320/staged/public/staged_features.json b/timecost/n3/realtabformer/rtf-n3-20260501_010320/staged/public/staged_features.json new file mode 100644 index 0000000000000000000000000000000000000000..08fe4d766d091d2f2ddba724a16b9509cbe4c390 --- /dev/null +++ b/timecost/n3/realtabformer/rtf-n3-20260501_010320/staged/public/staged_features.json @@ -0,0 +1,62 @@ +[ + { + "feature_name": "fixed acidity", + "data_type": "continuous", + "is_target": false + }, + { + "feature_name": "volatile acidity", + "data_type": "continuous", + "is_target": false + }, + { + "feature_name": "citric acid", + "data_type": "continuous", + "is_target": false + }, + { + "feature_name": "residual sugar", + "data_type": "continuous", + "is_target": false + }, + { + "feature_name": "chlorides", + "data_type": "continuous", + "is_target": false + }, + { + "feature_name": "free sulfur dioxide", + "data_type": "continuous", + "is_target": false + }, + { + "feature_name": "total sulfur dioxide", + "data_type": "continuous", + "is_target": false + }, + { + "feature_name": "density", + "data_type": "continuous", + "is_target": false + }, + { + "feature_name": "pH", + "data_type": "continuous", + "is_target": false + }, + { + "feature_name": "sulphates", + "data_type": "continuous", + "is_target": false + }, + { + "feature_name": "alcohol", + "data_type": "continuous", + "is_target": false + }, + { + "feature_name": "quality", + "data_type": "continuous", + "is_target": true + } +] \ No newline at end of file diff --git a/timecost/n3/realtabformer/rtf-n3-20260501_010320/staged/public/test.csv b/timecost/n3/realtabformer/rtf-n3-20260501_010320/staged/public/test.csv new file mode 100644 index 0000000000000000000000000000000000000000..db5cd50d3746410ea470625fa2ba2c8e9775cc0d --- /dev/null +++ b/timecost/n3/realtabformer/rtf-n3-20260501_010320/staged/public/test.csv @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:19e107152a94432e2a37ff045c00cfe35e1be30208b1553080d7dd0ede256d3b +size 28944 diff --git a/timecost/n3/realtabformer/rtf-n3-20260501_010320/staged/public/train.csv b/timecost/n3/realtabformer/rtf-n3-20260501_010320/staged/public/train.csv new file mode 100644 index 0000000000000000000000000000000000000000..87ca26726fe82ccbaa397919305b043c17eb374e --- /dev/null +++ b/timecost/n3/realtabformer/rtf-n3-20260501_010320/staged/public/train.csv @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:7813c8cca73ba4bfc6559215257b341c21e459980ad17ae6ddc809306bc9a0b9 +size 229945 diff --git a/timecost/n3/realtabformer/rtf-n3-20260501_010320/staged/public/val.csv b/timecost/n3/realtabformer/rtf-n3-20260501_010320/staged/public/val.csv new file mode 100644 index 0000000000000000000000000000000000000000..6acf84c76c47093b513c46d5503972a2dff275c0 --- /dev/null +++ b/timecost/n3/realtabformer/rtf-n3-20260501_010320/staged/public/val.csv @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:cf5979d9675567d9d6642640c9b84fc6c49e492604144723c30f50516c05cee6 +size 28791 diff --git a/timecost/n3/realtabformer/rtf-n3-20260501_010320/staged/realtabformer/adapter_report.json b/timecost/n3/realtabformer/rtf-n3-20260501_010320/staged/realtabformer/adapter_report.json new file mode 100644 index 0000000000000000000000000000000000000000..49da0444569f745bf1623c285ac38b6714692887 --- /dev/null +++ b/timecost/n3/realtabformer/rtf-n3-20260501_010320/staged/realtabformer/adapter_report.json @@ -0,0 +1,7 @@ +{ + "adapter_ready_status": "pass", + "adapter_fail_reason_code": null, + "adapter_fail_detail": null, + "adapter_transforms_applied": [], + "model_input_manifest": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/n3/realtabformer/rtf-n3-20260501_010320/staged/realtabformer/model_input_manifest.json" +} \ No newline at end of file diff --git a/timecost/n3/realtabformer/rtf-n3-20260501_010320/staged/realtabformer/adapter_transforms_applied.json b/timecost/n3/realtabformer/rtf-n3-20260501_010320/staged/realtabformer/adapter_transforms_applied.json new file mode 100644 index 0000000000000000000000000000000000000000..0637a088a01e8ddab3bf3fa98dbe804cbde1a0dc --- /dev/null +++ b/timecost/n3/realtabformer/rtf-n3-20260501_010320/staged/realtabformer/adapter_transforms_applied.json @@ -0,0 +1 @@ +[] \ No newline at end of file diff --git a/timecost/n3/realtabformer/rtf-n3-20260501_010320/staged/realtabformer/model_input_manifest.json b/timecost/n3/realtabformer/rtf-n3-20260501_010320/staged/realtabformer/model_input_manifest.json new file mode 100644 index 0000000000000000000000000000000000000000..53e05e71c6a7359e36d1a710919866bef18af041 --- /dev/null +++ b/timecost/n3/realtabformer/rtf-n3-20260501_010320/staged/realtabformer/model_input_manifest.json @@ -0,0 +1,266 @@ +{ + "dataset_id": "n3", + "model": "realtabformer", + "target_column": "quality", + "task_type": "classification", + "column_schema": [ + { + "name": "fixed acidity", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 66, + "unique_ratio": 0.016845, + "example_values": [ + "7.1", + "8.5", + "6.4", + "6.8", + "7.6" + ] + } + }, + { + "name": "volatile acidity", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 121, + "unique_ratio": 0.030883, + "example_values": [ + "0.31", + "0.21", + "0.24", + "0.43", + "0.27" + ] + } + }, + { + "name": "citric acid", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 85, + "unique_ratio": 0.021695, + "example_values": [ + "0.17", + "0.41", + "0.31", + "0.25", + "0.3" + ] + } + }, + { + "name": "residual sugar", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 296, + "unique_ratio": 0.075549, + "example_values": [ + "1", + "4.3", + "2.8", + "13", + "12.9" + ] + } + }, + { + "name": "chlorides", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 147, + "unique_ratio": 0.037519, + "example_values": [ + "0.042", + "0.036", + "0.038", + "0.047", + "0.033" + ] + } + }, + { + "name": "free sulfur dioxide", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 120, + "unique_ratio": 0.030628, + "example_values": [ + "21", + "24", + "41", + "43", + "69" + ] + } + }, + { + "name": "total sulfur dioxide", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 244, + "unique_ratio": 0.062277, + "example_values": [ + "144", + "99", + "114", + "132", + "160" + ] + } + }, + { + "name": "density", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 839, + "unique_ratio": 0.21414, + "example_values": [ + "0.99304", + "0.9947", + "0.99155", + "0.98975", + "0.99705" + ] + } + }, + { + "name": "pH", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 100, + "unique_ratio": 0.025523, + "example_values": [ + "3.13", + "3.18", + "3.37", + "3.21", + "3.16" + ] + } + }, + { + "name": "sulphates", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 78, + "unique_ratio": 0.019908, + "example_values": [ + "0.4", + "0.53", + "0.66", + "0.47", + "0.5" + ] + } + }, + { + "name": "alcohol", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 97, + "unique_ratio": 0.024758, + "example_values": [ + "9.6", + "9.7", + "11.7", + "13.4", + "8.8" + ] + } + }, + { + "name": "quality", + "role": "target", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 7, + "unique_ratio": 0.001787, + "example_values": [ + "5", + "6", + "7", + "8", + "3" + ] + } + } + ], + "public_manifest": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/n3/realtabformer/rtf-n3-20260501_010320/public_gate/staged_input_manifest.json", + "train_csv": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/n3/realtabformer/rtf-n3-20260501_010320/staged/public/train.csv", + "val_csv": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/n3/realtabformer/rtf-n3-20260501_010320/staged/public/val.csv", + "test_csv": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/n3/realtabformer/rtf-n3-20260501_010320/staged/public/test.csv", + "features_json": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/n3/realtabformer/rtf-n3-20260501_010320/staged/public/staged_features.json", + "public_gate_report": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/n3/realtabformer/rtf-n3-20260501_010320/public_gate/public_gate_report.json" +} \ No newline at end of file diff --git a/timecost/n3/realtabformer/rtf-n3-20260501_010320/train_20260501_010320.log b/timecost/n3/realtabformer/rtf-n3-20260501_010320/train_20260501_010320.log new file mode 100644 index 0000000000000000000000000000000000000000..47d08f616d63b3731a73d0fd5cf86d85f5b9ef21 --- /dev/null +++ b/timecost/n3/realtabformer/rtf-n3-20260501_010320/train_20260501_010320.log @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:524c61eb693e3775beed7a4576dd3e79ea4ac03a163f7af2ee383ee6b691acbe +size 472847 diff --git a/timecost/n3/tabbyflow/tabbyflow-n3-20260501_005234/_tabbyflow_gen.py b/timecost/n3/tabbyflow/tabbyflow-n3-20260501_005234/_tabbyflow_gen.py new file mode 100644 index 0000000000000000000000000000000000000000..cc773dcad632b3cd990c6e78e582634fc419b797 --- /dev/null +++ b/timecost/n3/tabbyflow/tabbyflow-n3-20260501_005234/_tabbyflow_gen.py @@ -0,0 +1,33 @@ + +import os, shutil, subprocess, sys +root = r"/workspace/ef-vfm" +name = r"pipeline_n3" +src = r"/work/output-Benchmark-trainonly-v1/n3/tabbyflow/tabbyflow-n3-20260501_005234/tabular_bundle/pipeline_n3" +dst_data = os.path.join(root, "data", name) +shutil.rmtree(dst_data, ignore_errors=True) +shutil.copytree(src, dst_data) +dst_syn = os.path.join(root, "synthetic", name) +os.makedirs(dst_syn, exist_ok=True) +for fn in ("real.csv", "test.csv", "val.csv"): + shutil.copy(os.path.join(src, fn), os.path.join(dst_syn, fn)) +os.chdir(root) +os.environ["PYTHONPATH"] = root + os.pathsep + os.environ.get("PYTHONPATH", "") +subprocess.check_call([ + sys.executable, "main.py", + "--dataname", name, "--mode", "test", "--gpu", "0", + "--no_wandb", "--exp_name", r"adapter_efvfm", + "--ckpt_path", r"/workspace/ef-vfm/ef_vfm/ckpt/pipeline_n3/adapter_efvfm/model_500.pt", + "--num_samples_to_generate", str(int(3918)), +]) +base = os.path.join(root, "ef_vfm", "result", name, r"adapter_efvfm") +best = None +best_t = -1.0 +for r, _, files in os.walk(base): + if "samples.csv" in files: + p = os.path.join(r, "samples.csv") + t = os.path.getmtime(p) + if t > best_t: + best_t, best = t, p +if not best: + raise SystemExit("tabbyflow: no samples.csv in " + base) +shutil.copy(best, r"/work/output-Benchmark-trainonly-v1/n3/tabbyflow/tabbyflow-n3-20260501_005234/tabbyflow-n3-3918-20260501_005942.csv") diff --git a/timecost/n3/tabbyflow/tabbyflow-n3-20260501_005234/_tabbyflow_train.py b/timecost/n3/tabbyflow/tabbyflow-n3-20260501_005234/_tabbyflow_train.py new file mode 100644 index 0000000000000000000000000000000000000000..11c52de385c5406a71ac62f40888a03828ce3be8 --- /dev/null +++ b/timecost/n3/tabbyflow/tabbyflow-n3-20260501_005234/_tabbyflow_train.py @@ -0,0 +1,22 @@ + +import os, shutil, subprocess, sys +root = r"/workspace/ef-vfm" +name = r"pipeline_n3" +src = r"/work/output-Benchmark-trainonly-v1/n3/tabbyflow/tabbyflow-n3-20260501_005234/tabular_bundle/pipeline_n3" +os.makedirs(os.path.join(root, "data", name), exist_ok=True) +dst_data = os.path.join(root, "data", name) +dst_syn = os.path.join(root, "synthetic", name) +shutil.rmtree(dst_data, ignore_errors=True) +shutil.copytree(src, dst_data) +os.makedirs(dst_syn, exist_ok=True) +for fn in ("real.csv", "test.csv", "val.csv"): + shutil.copy(os.path.join(src, fn), os.path.join(dst_syn, fn)) +os.chdir(root) +os.environ["PYTHONPATH"] = root + os.pathsep + os.environ.get("PYTHONPATH", "") +os.environ["EFVFM_SMOKE_STEPS"] = "500" +os.environ["EFVFM_ADAPTER_TRAIN"] = "1" +subprocess.check_call([ + sys.executable, "main.py", + "--dataname", name, "--mode", "train", "--gpu", "0", + "--no_wandb", "--exp_name", r"adapter_efvfm", +]) diff --git a/timecost/n3/tabbyflow/tabbyflow-n3-20260501_005234/gen_20260501_005942.log b/timecost/n3/tabbyflow/tabbyflow-n3-20260501_005234/gen_20260501_005942.log new file mode 100644 index 0000000000000000000000000000000000000000..d618b5545214c9f0244bbc1a457a80ca94330377 --- /dev/null +++ b/timecost/n3/tabbyflow/tabbyflow-n3-20260501_005234/gen_20260501_005942.log @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:06fd1176aa6aa493b82c7c6071c805ec456bbdc3f4480bcd635ee8a5b88f784d +size 3026 diff --git a/timecost/n3/tabbyflow/tabbyflow-n3-20260501_005234/input_snapshot.json b/timecost/n3/tabbyflow/tabbyflow-n3-20260501_005234/input_snapshot.json new file mode 100644 index 0000000000000000000000000000000000000000..3a0cbc32605f1212374c27c5a11c08064d5b6b53 --- /dev/null +++ b/timecost/n3/tabbyflow/tabbyflow-n3-20260501_005234/input_snapshot.json @@ -0,0 +1,36 @@ +{ + "dataset_id": "n3", + "model": "tabbyflow", + "inputs": { + "train_csv": { + "path": "/data/jialinzhang/SynthesizePipeline-server/DatasetNew/n3/n3-train.csv", + "exists": true, + "size": 211519, + "sha256": "2160a06db2fea02adb0ebb79d8d853bd2544580be301e71f6e8deeb1489a9009" + }, + "val_csv": { + "path": "/data/jialinzhang/SynthesizePipeline-server/DatasetNew/n3/n3-val.csv", + "exists": true, + "size": 26499, + "sha256": "d5ccfee07dfa9e7bdee5bb87642b43828e09f74c6cc0266a3d19d9feaa83106e" + }, + "test_csv": { + "path": "/data/jialinzhang/SynthesizePipeline-server/DatasetNew/n3/n3-test.csv", + "exists": true, + "size": 26676, + "sha256": "6f83aacb0d1747b95e287352a7fff5d9d65a1c127b773852346c68485c4ede47" + }, + "profile_json": { + "path": "/data/jialinzhang/SynthesizePipeline-server/DatasetNew/artifacts/data_core/tabular/n3/n3-dataset_profile.json", + "exists": true, + "size": 5235, + "sha256": "23d2e5904a2ca90cbf8d6e3c75887681721e9b90cc705c31a680c11513d0c46f" + }, + "contract_json": { + "path": "/data/jialinzhang/SynthesizePipeline-server/DatasetNew/artifacts/data_core/tabular/n3/n3-dataset_contract_v1.json", + "exists": true, + "size": 6281, + "sha256": "c0cc56f5fe28e1b65927255c6e3c2b0e9479862c2ec6f2fea1664da36c9a3a09" + } + } +} \ No newline at end of file diff --git a/timecost/n3/tabbyflow/tabbyflow-n3-20260501_005234/models_tabbyflow/trained.pt b/timecost/n3/tabbyflow/tabbyflow-n3-20260501_005234/models_tabbyflow/trained.pt new file mode 100644 index 0000000000000000000000000000000000000000..f063a878c470d9d40f79db79881596e1e497dffd --- /dev/null +++ b/timecost/n3/tabbyflow/tabbyflow-n3-20260501_005234/models_tabbyflow/trained.pt @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:adb734fec12f2251befd371dca69e481b19464aded2a6823105a01b4be6ddbe5 +size 40 diff --git a/timecost/n3/tabbyflow/tabbyflow-n3-20260501_005234/public_gate/normalized_schema_snapshot.json b/timecost/n3/tabbyflow/tabbyflow-n3-20260501_005234/public_gate/normalized_schema_snapshot.json new file mode 100644 index 0000000000000000000000000000000000000000..c41fe304503de23190a02e6cbfafa35b3bf134d3 --- /dev/null +++ b/timecost/n3/tabbyflow/tabbyflow-n3-20260501_005234/public_gate/normalized_schema_snapshot.json @@ -0,0 +1,259 @@ +{ + "dataset_id": "n3", + "target_column": "quality", + "task_type": "classification", + "columns": [ + { + "name": "fixed acidity", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 66, + "unique_ratio": 0.016845, + "example_values": [ + "7.1", + "8.5", + "6.4", + "6.8", + "7.6" + ] + } + }, + { + "name": "volatile acidity", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 121, + "unique_ratio": 0.030883, + "example_values": [ + "0.31", + "0.21", + "0.24", + "0.43", + "0.27" + ] + } + }, + { + "name": "citric acid", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 85, + "unique_ratio": 0.021695, + "example_values": [ + "0.17", + "0.41", + "0.31", + "0.25", + "0.3" + ] + } + }, + { + "name": "residual sugar", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 296, + "unique_ratio": 0.075549, + "example_values": [ + "1", + "4.3", + "2.8", + "13", + "12.9" + ] + } + }, + { + "name": "chlorides", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 147, + "unique_ratio": 0.037519, + "example_values": [ + "0.042", + "0.036", + "0.038", + "0.047", + "0.033" + ] + } + }, + { + "name": "free sulfur dioxide", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 120, + "unique_ratio": 0.030628, + "example_values": [ + "21", + "24", + "41", + "43", + "69" + ] + } + }, + { + "name": "total sulfur dioxide", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 244, + "unique_ratio": 0.062277, + "example_values": [ + "144", + "99", + "114", + "132", + "160" + ] + } + }, + { + "name": "density", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 839, + "unique_ratio": 0.21414, + "example_values": [ + "0.99304", + "0.9947", + "0.99155", + "0.98975", + "0.99705" + ] + } + }, + { + "name": "pH", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 100, + "unique_ratio": 0.025523, + "example_values": [ + "3.13", + "3.18", + "3.37", + "3.21", + "3.16" + ] + } + }, + { + "name": "sulphates", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 78, + "unique_ratio": 0.019908, + "example_values": [ + "0.4", + "0.53", + "0.66", + "0.47", + "0.5" + ] + } + }, + { + "name": "alcohol", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 97, + "unique_ratio": 0.024758, + "example_values": [ + "9.6", + "9.7", + "11.7", + "13.4", + "8.8" + ] + } + }, + { + "name": "quality", + "role": "target", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 7, + "unique_ratio": 0.001787, + "example_values": [ + "5", + "6", + "7", + "8", + "3" + ] + } + } + ] +} \ No newline at end of file diff --git a/timecost/n3/tabbyflow/tabbyflow-n3-20260501_005234/public_gate/public_gate_report.json b/timecost/n3/tabbyflow/tabbyflow-n3-20260501_005234/public_gate/public_gate_report.json new file mode 100644 index 0000000000000000000000000000000000000000..93b97319f739e39079d6c6549fd2020f8a6dac25 --- /dev/null +++ b/timecost/n3/tabbyflow/tabbyflow-n3-20260501_005234/public_gate/public_gate_report.json @@ -0,0 +1,37 @@ +{ + "dataset_id": "n3", + "status": "pass", + "checks": [ + { + "check_id": "PG001_csv_parse_ok", + "status": "pass" + }, + { + "check_id": "PG002_split_header_consistent", + "status": "pass" + }, + { + "check_id": "PG003_profile_header_match", + "status": "pass" + }, + { + "check_id": "PG004_missing_token_normalized", + "status": "pass" + }, + { + "check_id": "PG005_semantic_type_validated", + "status": "pass" + }, + { + "check_id": "PG006_target_defined_and_valid", + "status": "pass" + } + ], + "target_column": "quality", + "task_type": "classification", + "input_splits": { + "train": "/data/jialinzhang/SynthesizePipeline-server/DatasetNew/n3/n3-train.csv", + "val": "/data/jialinzhang/SynthesizePipeline-server/DatasetNew/n3/n3-val.csv", + "test": "/data/jialinzhang/SynthesizePipeline-server/DatasetNew/n3/n3-test.csv" + } +} \ No newline at end of file diff --git a/timecost/n3/tabbyflow/tabbyflow-n3-20260501_005234/public_gate/staged_input_manifest.json b/timecost/n3/tabbyflow/tabbyflow-n3-20260501_005234/public_gate/staged_input_manifest.json new file mode 100644 index 0000000000000000000000000000000000000000..112b2a487aa34cf2e52ed41a236300a2d64daab2 --- /dev/null +++ b/timecost/n3/tabbyflow/tabbyflow-n3-20260501_005234/public_gate/staged_input_manifest.json @@ -0,0 +1,264 @@ +{ + "dataset_id": "n3", + "target_column": "quality", + "task_type": "classification", + "train_csv": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/n3/tabbyflow/tabbyflow-n3-20260501_005234/staged/public/train.csv", + "val_csv": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/n3/tabbyflow/tabbyflow-n3-20260501_005234/staged/public/val.csv", + "test_csv": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/n3/tabbyflow/tabbyflow-n3-20260501_005234/staged/public/test.csv", + "features_json": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/n3/tabbyflow/tabbyflow-n3-20260501_005234/staged/public/staged_features.json", + "public_gate_report": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/n3/tabbyflow/tabbyflow-n3-20260501_005234/public_gate/public_gate_report.json", + "column_schema": [ + { + "name": "fixed acidity", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 66, + "unique_ratio": 0.016845, + "example_values": [ + "7.1", + "8.5", + "6.4", + "6.8", + "7.6" + ] + } + }, + { + "name": "volatile acidity", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 121, + "unique_ratio": 0.030883, + "example_values": [ + "0.31", + "0.21", + "0.24", + "0.43", + "0.27" + ] + } + }, + { + "name": "citric acid", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 85, + "unique_ratio": 0.021695, + "example_values": [ + "0.17", + "0.41", + "0.31", + "0.25", + "0.3" + ] + } + }, + { + "name": "residual sugar", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 296, + "unique_ratio": 0.075549, + "example_values": [ + "1", + "4.3", + "2.8", + "13", + "12.9" + ] + } + }, + { + "name": "chlorides", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 147, + "unique_ratio": 0.037519, + "example_values": [ + "0.042", + "0.036", + "0.038", + "0.047", + "0.033" + ] + } + }, + { + "name": "free sulfur dioxide", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 120, + "unique_ratio": 0.030628, + "example_values": [ + "21", + "24", + "41", + "43", + "69" + ] + } + }, + { + "name": "total sulfur dioxide", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 244, + "unique_ratio": 0.062277, + "example_values": [ + "144", + "99", + "114", + "132", + "160" + ] + } + }, + { + "name": "density", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 839, + "unique_ratio": 0.21414, + "example_values": [ + "0.99304", + "0.9947", + "0.99155", + "0.98975", + "0.99705" + ] + } + }, + { + "name": "pH", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 100, + "unique_ratio": 0.025523, + "example_values": [ + "3.13", + "3.18", + "3.37", + "3.21", + "3.16" + ] + } + }, + { + "name": "sulphates", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 78, + "unique_ratio": 0.019908, + "example_values": [ + "0.4", + "0.53", + "0.66", + "0.47", + "0.5" + ] + } + }, + { + "name": "alcohol", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 97, + "unique_ratio": 0.024758, + "example_values": [ + "9.6", + "9.7", + "11.7", + "13.4", + "8.8" + ] + } + }, + { + "name": "quality", + "role": "target", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 7, + "unique_ratio": 0.001787, + "example_values": [ + "5", + "6", + "7", + "8", + "3" + ] + } + } + ] +} \ No newline at end of file diff --git a/timecost/n3/tabbyflow/tabbyflow-n3-20260501_005234/runtime_result.json b/timecost/n3/tabbyflow/tabbyflow-n3-20260501_005234/runtime_result.json new file mode 100644 index 0000000000000000000000000000000000000000..fa20f2996ad976813f80722f45cb5081cb11be8a --- /dev/null +++ b/timecost/n3/tabbyflow/tabbyflow-n3-20260501_005234/runtime_result.json @@ -0,0 +1,27 @@ +{ + "dataset_id": "n3", + "model": "tabbyflow", + "run_id": "tabbyflow-n3-20260501_005234", + "public_gate_status": "pass", + "adapter_ready_status": "pass", + "train_status": "success", + "generate_status": "success", + "reason_code": null, + "reason_detail": null, + "artifacts": { + "synthetic_csv": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/n3/tabbyflow/tabbyflow-n3-20260501_005234/tabbyflow-n3-3918-20260501_005942.csv", + "model_path": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/n3/tabbyflow/tabbyflow-n3-20260501_005234/models_tabbyflow/trained.pt" + }, + "timings": { + "train": { + "started_at": "2026-05-01T00:52:34", + "ended_at": "2026-05-01T00:59:42", + "duration_sec": 427.5 + }, + "generate": { + "started_at": "2026-05-01T00:59:42", + "ended_at": "2026-05-01T00:59:51", + "duration_sec": 9.253 + } + } +} \ No newline at end of file diff --git a/timecost/n3/tabbyflow/tabbyflow-n3-20260501_005234/staged/public/staged_features.json b/timecost/n3/tabbyflow/tabbyflow-n3-20260501_005234/staged/public/staged_features.json new file mode 100644 index 0000000000000000000000000000000000000000..08fe4d766d091d2f2ddba724a16b9509cbe4c390 --- /dev/null +++ b/timecost/n3/tabbyflow/tabbyflow-n3-20260501_005234/staged/public/staged_features.json @@ -0,0 +1,62 @@ +[ + { + "feature_name": "fixed acidity", + "data_type": "continuous", + "is_target": false + }, + { + "feature_name": "volatile acidity", + "data_type": "continuous", + "is_target": false + }, + { + "feature_name": "citric acid", + "data_type": "continuous", + "is_target": false + }, + { + "feature_name": "residual sugar", + "data_type": "continuous", + "is_target": false + }, + { + "feature_name": "chlorides", + "data_type": "continuous", + "is_target": false + }, + { + "feature_name": "free sulfur dioxide", + "data_type": "continuous", + "is_target": false + }, + { + "feature_name": "total sulfur dioxide", + "data_type": "continuous", + "is_target": false + }, + { + "feature_name": "density", + "data_type": "continuous", + "is_target": false + }, + { + "feature_name": "pH", + "data_type": "continuous", + "is_target": false + }, + { + "feature_name": "sulphates", + "data_type": "continuous", + "is_target": false + }, + { + "feature_name": "alcohol", + "data_type": "continuous", + "is_target": false + }, + { + "feature_name": "quality", + "data_type": "continuous", + "is_target": true + } +] \ No newline at end of file diff --git a/timecost/n3/tabbyflow/tabbyflow-n3-20260501_005234/staged/public/test.csv b/timecost/n3/tabbyflow/tabbyflow-n3-20260501_005234/staged/public/test.csv new file mode 100644 index 0000000000000000000000000000000000000000..db5cd50d3746410ea470625fa2ba2c8e9775cc0d --- /dev/null +++ b/timecost/n3/tabbyflow/tabbyflow-n3-20260501_005234/staged/public/test.csv @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:19e107152a94432e2a37ff045c00cfe35e1be30208b1553080d7dd0ede256d3b +size 28944 diff --git a/timecost/n3/tabbyflow/tabbyflow-n3-20260501_005234/staged/public/train.csv b/timecost/n3/tabbyflow/tabbyflow-n3-20260501_005234/staged/public/train.csv new file mode 100644 index 0000000000000000000000000000000000000000..87ca26726fe82ccbaa397919305b043c17eb374e --- /dev/null +++ b/timecost/n3/tabbyflow/tabbyflow-n3-20260501_005234/staged/public/train.csv @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:7813c8cca73ba4bfc6559215257b341c21e459980ad17ae6ddc809306bc9a0b9 +size 229945 diff --git a/timecost/n3/tabbyflow/tabbyflow-n3-20260501_005234/staged/public/val.csv b/timecost/n3/tabbyflow/tabbyflow-n3-20260501_005234/staged/public/val.csv new file mode 100644 index 0000000000000000000000000000000000000000..6acf84c76c47093b513c46d5503972a2dff275c0 --- /dev/null +++ b/timecost/n3/tabbyflow/tabbyflow-n3-20260501_005234/staged/public/val.csv @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:cf5979d9675567d9d6642640c9b84fc6c49e492604144723c30f50516c05cee6 +size 28791 diff --git a/timecost/n3/tabbyflow/tabbyflow-n3-20260501_005234/staged/tabbyflow/adapter_report.json b/timecost/n3/tabbyflow/tabbyflow-n3-20260501_005234/staged/tabbyflow/adapter_report.json new file mode 100644 index 0000000000000000000000000000000000000000..c808d73c228b298049ef7a2dd2cba36806883fdd --- /dev/null +++ b/timecost/n3/tabbyflow/tabbyflow-n3-20260501_005234/staged/tabbyflow/adapter_report.json @@ -0,0 +1,7 @@ +{ + "adapter_ready_status": "pass", + "adapter_fail_reason_code": null, + "adapter_fail_detail": null, + "adapter_transforms_applied": [], + "model_input_manifest": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/n3/tabbyflow/tabbyflow-n3-20260501_005234/staged/tabbyflow/model_input_manifest.json" +} \ No newline at end of file diff --git a/timecost/n3/tabbyflow/tabbyflow-n3-20260501_005234/staged/tabbyflow/adapter_transforms_applied.json b/timecost/n3/tabbyflow/tabbyflow-n3-20260501_005234/staged/tabbyflow/adapter_transforms_applied.json new file mode 100644 index 0000000000000000000000000000000000000000..0637a088a01e8ddab3bf3fa98dbe804cbde1a0dc --- /dev/null +++ b/timecost/n3/tabbyflow/tabbyflow-n3-20260501_005234/staged/tabbyflow/adapter_transforms_applied.json @@ -0,0 +1 @@ +[] \ No newline at end of file diff --git a/timecost/n3/tabbyflow/tabbyflow-n3-20260501_005234/staged/tabbyflow/model_input_manifest.json b/timecost/n3/tabbyflow/tabbyflow-n3-20260501_005234/staged/tabbyflow/model_input_manifest.json new file mode 100644 index 0000000000000000000000000000000000000000..b3c5eff8e34d01e21166ca2e7b1f8bc3e1eb6318 --- /dev/null +++ b/timecost/n3/tabbyflow/tabbyflow-n3-20260501_005234/staged/tabbyflow/model_input_manifest.json @@ -0,0 +1,266 @@ +{ + "dataset_id": "n3", + "model": "tabbyflow", + "target_column": "quality", + "task_type": "classification", + "column_schema": [ + { + "name": "fixed acidity", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 66, + "unique_ratio": 0.016845, + "example_values": [ + "7.1", + "8.5", + "6.4", + "6.8", + "7.6" + ] + } + }, + { + "name": "volatile acidity", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 121, + "unique_ratio": 0.030883, + "example_values": [ + "0.31", + "0.21", + "0.24", + "0.43", + "0.27" + ] + } + }, + { + "name": "citric acid", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 85, + "unique_ratio": 0.021695, + "example_values": [ + "0.17", + "0.41", + "0.31", + "0.25", + "0.3" + ] + } + }, + { + "name": "residual sugar", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 296, + "unique_ratio": 0.075549, + "example_values": [ + "1", + "4.3", + "2.8", + "13", + "12.9" + ] + } + }, + { + "name": "chlorides", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 147, + "unique_ratio": 0.037519, + "example_values": [ + "0.042", + "0.036", + "0.038", + "0.047", + "0.033" + ] + } + }, + { + "name": "free sulfur dioxide", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 120, + "unique_ratio": 0.030628, + "example_values": [ + "21", + "24", + "41", + "43", + "69" + ] + } + }, + { + "name": "total sulfur dioxide", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 244, + "unique_ratio": 0.062277, + "example_values": [ + "144", + "99", + "114", + "132", + "160" + ] + } + }, + { + "name": "density", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 839, + "unique_ratio": 0.21414, + "example_values": [ + "0.99304", + "0.9947", + "0.99155", + "0.98975", + "0.99705" + ] + } + }, + { + "name": "pH", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 100, + "unique_ratio": 0.025523, + "example_values": [ + "3.13", + "3.18", + "3.37", + "3.21", + "3.16" + ] + } + }, + { + "name": "sulphates", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 78, + "unique_ratio": 0.019908, + "example_values": [ + "0.4", + "0.53", + "0.66", + "0.47", + "0.5" + ] + } + }, + { + "name": "alcohol", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 97, + "unique_ratio": 0.024758, + "example_values": [ + "9.6", + "9.7", + "11.7", + "13.4", + "8.8" + ] + } + }, + { + "name": "quality", + "role": "target", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 7, + "unique_ratio": 0.001787, + "example_values": [ + "5", + "6", + "7", + "8", + "3" + ] + } + } + ], + "public_manifest": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/n3/tabbyflow/tabbyflow-n3-20260501_005234/public_gate/staged_input_manifest.json", + "train_csv": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/n3/tabbyflow/tabbyflow-n3-20260501_005234/staged/public/train.csv", + "val_csv": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/n3/tabbyflow/tabbyflow-n3-20260501_005234/staged/public/val.csv", + "test_csv": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/n3/tabbyflow/tabbyflow-n3-20260501_005234/staged/public/test.csv", + "features_json": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/n3/tabbyflow/tabbyflow-n3-20260501_005234/staged/public/staged_features.json", + "public_gate_report": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/n3/tabbyflow/tabbyflow-n3-20260501_005234/public_gate/public_gate_report.json" +} \ No newline at end of file diff --git a/timecost/n3/tabbyflow/tabbyflow-n3-20260501_005234/tabbyflow-n3-3918-20260501_005942.csv b/timecost/n3/tabbyflow/tabbyflow-n3-20260501_005234/tabbyflow-n3-3918-20260501_005942.csv new file mode 100644 index 0000000000000000000000000000000000000000..2d8798abbbb94bc3cad7397fff890c2e86256e2c --- /dev/null +++ b/timecost/n3/tabbyflow/tabbyflow-n3-20260501_005234/tabbyflow-n3-3918-20260501_005942.csv @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:a59e95fed7bfdefefe8410963a8c1461e594aed182e4e25a802f252d2cb0e2c7 +size 340201 diff --git a/timecost/n3/tabbyflow/tabbyflow-n3-20260501_005234/tabbyflow_train_meta.json b/timecost/n3/tabbyflow/tabbyflow-n3-20260501_005234/tabbyflow_train_meta.json new file mode 100644 index 0000000000000000000000000000000000000000..352eb976105907ee1613e7569122a2ca9313f022 --- /dev/null +++ b/timecost/n3/tabbyflow/tabbyflow-n3-20260501_005234/tabbyflow_train_meta.json @@ -0,0 +1,5 @@ +{ + "exp_name": "adapter_efvfm", + "dataname": "pipeline_n3", + "steps": 500 +} \ No newline at end of file diff --git a/timecost/n3/tabbyflow/tabbyflow-n3-20260501_005234/tabular_bundle/pipeline_n3/X_cat_test.npy b/timecost/n3/tabbyflow/tabbyflow-n3-20260501_005234/tabular_bundle/pipeline_n3/X_cat_test.npy new file mode 100644 index 0000000000000000000000000000000000000000..76306e45faf838d072c21b887a4c1d43d486dc1b --- /dev/null +++ b/timecost/n3/tabbyflow/tabbyflow-n3-20260501_005234/tabular_bundle/pipeline_n3/X_cat_test.npy @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:87f6573fdfd40c6332a9ef925bcb48bc20f08b3a6f72b6dceb949ae36d1871f7 +size 128 diff --git a/timecost/n3/tabbyflow/tabbyflow-n3-20260501_005234/tabular_bundle/pipeline_n3/X_cat_train.npy b/timecost/n3/tabbyflow/tabbyflow-n3-20260501_005234/tabular_bundle/pipeline_n3/X_cat_train.npy new file mode 100644 index 0000000000000000000000000000000000000000..76306e45faf838d072c21b887a4c1d43d486dc1b --- /dev/null +++ b/timecost/n3/tabbyflow/tabbyflow-n3-20260501_005234/tabular_bundle/pipeline_n3/X_cat_train.npy @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:87f6573fdfd40c6332a9ef925bcb48bc20f08b3a6f72b6dceb949ae36d1871f7 +size 128 diff --git a/timecost/n3/tabbyflow/tabbyflow-n3-20260501_005234/tabular_bundle/pipeline_n3/X_cat_val.npy b/timecost/n3/tabbyflow/tabbyflow-n3-20260501_005234/tabular_bundle/pipeline_n3/X_cat_val.npy new file mode 100644 index 0000000000000000000000000000000000000000..76306e45faf838d072c21b887a4c1d43d486dc1b --- /dev/null +++ b/timecost/n3/tabbyflow/tabbyflow-n3-20260501_005234/tabular_bundle/pipeline_n3/X_cat_val.npy @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:87f6573fdfd40c6332a9ef925bcb48bc20f08b3a6f72b6dceb949ae36d1871f7 +size 128 diff --git a/timecost/n3/tabbyflow/tabbyflow-n3-20260501_005234/tabular_bundle/pipeline_n3/X_num_test.npy b/timecost/n3/tabbyflow/tabbyflow-n3-20260501_005234/tabular_bundle/pipeline_n3/X_num_test.npy new file mode 100644 index 0000000000000000000000000000000000000000..94beb8413ef55592710518365965f4cb503523ee --- /dev/null +++ b/timecost/n3/tabbyflow/tabbyflow-n3-20260501_005234/tabular_bundle/pipeline_n3/X_num_test.npy @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:093d8f405d764277d5a007953f25ab6466f0857f71f0d8f3c437463fb5bf240a +size 172520 diff --git a/timecost/n3/tabbyflow/tabbyflow-n3-20260501_005234/tabular_bundle/pipeline_n3/X_num_train.npy b/timecost/n3/tabbyflow/tabbyflow-n3-20260501_005234/tabular_bundle/pipeline_n3/X_num_train.npy new file mode 100644 index 0000000000000000000000000000000000000000..94beb8413ef55592710518365965f4cb503523ee --- /dev/null +++ b/timecost/n3/tabbyflow/tabbyflow-n3-20260501_005234/tabular_bundle/pipeline_n3/X_num_train.npy @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:093d8f405d764277d5a007953f25ab6466f0857f71f0d8f3c437463fb5bf240a +size 172520 diff --git a/timecost/n3/tabbyflow/tabbyflow-n3-20260501_005234/tabular_bundle/pipeline_n3/X_num_val.npy b/timecost/n3/tabbyflow/tabbyflow-n3-20260501_005234/tabular_bundle/pipeline_n3/X_num_val.npy new file mode 100644 index 0000000000000000000000000000000000000000..94beb8413ef55592710518365965f4cb503523ee --- /dev/null +++ b/timecost/n3/tabbyflow/tabbyflow-n3-20260501_005234/tabular_bundle/pipeline_n3/X_num_val.npy @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:093d8f405d764277d5a007953f25ab6466f0857f71f0d8f3c437463fb5bf240a +size 172520 diff --git a/timecost/n3/tabbyflow/tabbyflow-n3-20260501_005234/tabular_bundle/pipeline_n3/info.json b/timecost/n3/tabbyflow/tabbyflow-n3-20260501_005234/tabular_bundle/pipeline_n3/info.json new file mode 100644 index 0000000000000000000000000000000000000000..8b5f7b3a1a0c4ba2d967287826b9f5c5fd7619de --- /dev/null +++ b/timecost/n3/tabbyflow/tabbyflow-n3-20260501_005234/tabular_bundle/pipeline_n3/info.json @@ -0,0 +1,139 @@ +{ + "name": "pipeline_n3", + "task_type": "multiclass", + "n_num_features": 11, + "n_cat_features": 0, + "train_size": 3918, + "test_num": 3918, + "val_num": 3918, + "train_num": 3918, + "bundle_note": "val/test matrices are train copies (train-only policy; no real held-out rows).", + "num_col_idx": [ + 0, + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10 + ], + "cat_col_idx": [], + "target_col_idx": [ + 11 + ], + "column_names": [ + "fixed acidity", + "volatile acidity", + "citric acid", + "residual sugar", + "chlorides", + "free sulfur dioxide", + "total sulfur dioxide", + "density", + "pH", + "sulphates", + "alcohol", + "quality" + ], + "int_col_idx": [], + "int_columns": [], + "int_col_idx_wrt_num": [], + "metadata": { + "columns": { + "0": { + "sdtype": "numerical", + "computer_representation": "Float" + }, + "1": { + "sdtype": "numerical", + "computer_representation": "Float" + }, + "2": { + "sdtype": "numerical", + "computer_representation": "Float" + }, + "3": { + "sdtype": "numerical", + "computer_representation": "Float" + }, + "4": { + "sdtype": "numerical", + "computer_representation": "Float" + }, + "5": { + "sdtype": "numerical", + "computer_representation": "Float" + }, + "6": { + "sdtype": "numerical", + "computer_representation": "Float" + }, + "7": { + "sdtype": "numerical", + "computer_representation": "Float" + }, + "8": { + "sdtype": "numerical", + "computer_representation": "Float" + }, + "9": { + "sdtype": "numerical", + "computer_representation": "Float" + }, + "10": { + "sdtype": "numerical", + "computer_representation": "Float" + }, + "11": { + "sdtype": "categorical" + } + } + }, + "idx_mapping": { + "0": 0, + "1": 1, + "2": 2, + "3": 3, + "4": 4, + "5": 5, + "6": 6, + "7": 7, + "8": 8, + "9": 9, + "10": 10, + "11": 11 + }, + "inverse_idx_mapping": { + "0": 0, + "1": 1, + "2": 2, + "3": 3, + "4": 4, + "5": 5, + "6": 6, + "7": 7, + "8": 8, + "9": 9, + "10": 10, + "11": 11 + }, + "idx_name_mapping": { + "0": "fixed acidity", + "1": "volatile acidity", + "2": "citric acid", + "3": "residual sugar", + "4": "chlorides", + "5": "free sulfur dioxide", + "6": "total sulfur dioxide", + "7": "density", + "8": "pH", + "9": "sulphates", + "10": "alcohol", + "11": "quality" + }, + "n_classes": 7 +} \ No newline at end of file diff --git a/timecost/n3/tabbyflow/tabbyflow-n3-20260501_005234/tabular_bundle/pipeline_n3/real.csv b/timecost/n3/tabbyflow/tabbyflow-n3-20260501_005234/tabular_bundle/pipeline_n3/real.csv new file mode 100644 index 0000000000000000000000000000000000000000..b4297372e8b9b076d6c03efa023cbf23edee4f56 --- /dev/null +++ b/timecost/n3/tabbyflow/tabbyflow-n3-20260501_005234/tabular_bundle/pipeline_n3/real.csv @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:c80ba530c12c66a78530db5d98ead5f78fcdad2fe5eccccbc28d9649ceaa6023 +size 229825 diff --git a/timecost/n3/tabbyflow/tabbyflow-n3-20260501_005234/tabular_bundle/pipeline_n3/test.csv b/timecost/n3/tabbyflow/tabbyflow-n3-20260501_005234/tabular_bundle/pipeline_n3/test.csv new file mode 100644 index 0000000000000000000000000000000000000000..b4297372e8b9b076d6c03efa023cbf23edee4f56 --- /dev/null +++ b/timecost/n3/tabbyflow/tabbyflow-n3-20260501_005234/tabular_bundle/pipeline_n3/test.csv @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:c80ba530c12c66a78530db5d98ead5f78fcdad2fe5eccccbc28d9649ceaa6023 +size 229825 diff --git a/timecost/n3/tabbyflow/tabbyflow-n3-20260501_005234/tabular_bundle/pipeline_n3/val.csv b/timecost/n3/tabbyflow/tabbyflow-n3-20260501_005234/tabular_bundle/pipeline_n3/val.csv new file mode 100644 index 0000000000000000000000000000000000000000..b4297372e8b9b076d6c03efa023cbf23edee4f56 --- /dev/null +++ b/timecost/n3/tabbyflow/tabbyflow-n3-20260501_005234/tabular_bundle/pipeline_n3/val.csv @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:c80ba530c12c66a78530db5d98ead5f78fcdad2fe5eccccbc28d9649ceaa6023 +size 229825 diff --git a/timecost/n3/tabbyflow/tabbyflow-n3-20260501_005234/tabular_bundle/pipeline_n3/y_test.npy b/timecost/n3/tabbyflow/tabbyflow-n3-20260501_005234/tabular_bundle/pipeline_n3/y_test.npy new file mode 100644 index 0000000000000000000000000000000000000000..1f737a58cd26592130c3604aaa90044a451eb576 --- /dev/null +++ b/timecost/n3/tabbyflow/tabbyflow-n3-20260501_005234/tabular_bundle/pipeline_n3/y_test.npy @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:85ed37c52f0ea54dfd3a476dcfafff02d61e92783748e5ee9aadfad20578bcb1 +size 31472 diff --git a/timecost/n3/tabbyflow/tabbyflow-n3-20260501_005234/tabular_bundle/pipeline_n3/y_train.npy b/timecost/n3/tabbyflow/tabbyflow-n3-20260501_005234/tabular_bundle/pipeline_n3/y_train.npy new file mode 100644 index 0000000000000000000000000000000000000000..1f737a58cd26592130c3604aaa90044a451eb576 --- /dev/null +++ b/timecost/n3/tabbyflow/tabbyflow-n3-20260501_005234/tabular_bundle/pipeline_n3/y_train.npy @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:85ed37c52f0ea54dfd3a476dcfafff02d61e92783748e5ee9aadfad20578bcb1 +size 31472 diff --git a/timecost/n3/tabbyflow/tabbyflow-n3-20260501_005234/tabular_bundle/pipeline_n3/y_val.npy b/timecost/n3/tabbyflow/tabbyflow-n3-20260501_005234/tabular_bundle/pipeline_n3/y_val.npy new file mode 100644 index 0000000000000000000000000000000000000000..1f737a58cd26592130c3604aaa90044a451eb576 --- /dev/null +++ b/timecost/n3/tabbyflow/tabbyflow-n3-20260501_005234/tabular_bundle/pipeline_n3/y_val.npy @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:85ed37c52f0ea54dfd3a476dcfafff02d61e92783748e5ee9aadfad20578bcb1 +size 31472 diff --git a/timecost/n3/tabbyflow/tabbyflow-n3-20260501_005234/train_20260501_005234.log b/timecost/n3/tabbyflow/tabbyflow-n3-20260501_005234/train_20260501_005234.log new file mode 100644 index 0000000000000000000000000000000000000000..71796071f819e393b302e2fc2d383fb0f7f3f6c1 --- /dev/null +++ b/timecost/n3/tabbyflow/tabbyflow-n3-20260501_005234/train_20260501_005234.log @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:ca653f9d17f07836e86f33599f21c86b6963cfc556ba93395b613173b41d5637 +size 290257 diff --git a/timecost/n3/tabddpm/tabddpm-n3-20260501_002012/_tabddpm_sample_r0.py b/timecost/n3/tabddpm/tabddpm-n3-20260501_002012/_tabddpm_sample_r0.py new file mode 100644 index 0000000000000000000000000000000000000000..3d5fd4e093bb54b433e51d58d71710d7e8411c31 --- /dev/null +++ b/timecost/n3/tabddpm/tabddpm-n3-20260501_002012/_tabddpm_sample_r0.py @@ -0,0 +1,66 @@ +import os, sys, subprocess, json +import numpy as np +import pandas as pd + +tabddpm_root = "/workspace/tabddpm/code" +assert os.path.isdir(tabddpm_root), f"TabDDPM source not mounted: {tabddpm_root}" +env = os.environ.copy() +env["PYTHONPATH"] = tabddpm_root + (os.pathsep + env.get("PYTHONPATH", "")) + +# Reuse the compat wrapper (patches collections.Sequence for skorch) +wrapper = os.path.join(tabddpm_root, "_compat_run.py") +if not os.path.exists(wrapper): + with open(wrapper, "w") as f: + f.write( + "import collections, collections.abc\n" + "for _a in ('Sequence','MutableSequence','MutableMapping','Mapping'," + "'MutableSet','Set','Callable','Iterable','Iterator'):\n" + " if not hasattr(collections, _a): setattr(collections, _a, getattr(collections.abc, _a, None))\n" + "import sys, runpy\n" + "sys.argv = sys.argv[1:]\n" + "runpy.run_path(sys.argv[0], run_name='__main__')\n" + ) + +print(f"[TabDDPM] Sampling 3918 rows") +ret = subprocess.run( + [sys.executable, wrapper, "scripts/pipeline.py", + "--config", "/work/output-Benchmark-trainonly-v1/n3/tabddpm/tabddpm-n3-20260501_002012/config_sample_20260501_002035_r0.toml", + "--sample"], + cwd=tabddpm_root, + env=env +) +if ret.returncode != 0: + sys.exit(ret.returncode) + +# 将 .npy 输出转为 CSV(npy 在 TabDDPM 的 parent_dir,即 npy_dir) +info_path = "/work/output-Benchmark-trainonly-v1/n3/tabddpm/tabddpm-n3-20260501_002012/data/info.json" +with open(info_path) as f: + info = json.load(f) + +output_dir = "/work/output-Benchmark-trainonly-v1/n3/tabddpm/tabddpm-n3-20260501_002012/output" +col_names = info.get("column_names", []) + +parts = [] +x_num_path = os.path.join(output_dir, "X_num_train.npy") +x_cat_path = os.path.join(output_dir, "X_cat_train.npy") +y_path = os.path.join(output_dir, "y_train.npy") + +if os.path.exists(x_num_path): + parts.append(np.load(x_num_path, allow_pickle=True)) +if os.path.exists(x_cat_path): + parts.append(np.load(x_cat_path, allow_pickle=True).astype(float)) +if os.path.exists(y_path): + y = np.load(y_path, allow_pickle=True) + parts.append(y.reshape(-1, 1) if y.ndim == 1 else y) + +if parts: + combined = np.concatenate(parts, axis=1) + if col_names and len(col_names) == combined.shape[1]: + df = pd.DataFrame(combined, columns=col_names) + else: + df = pd.DataFrame(combined) + df.to_csv("/work/output-Benchmark-trainonly-v1/n3/tabddpm/tabddpm-n3-20260501_002012/tabddpm-n3-3918-20260501_002035.csv", index=False) + print(f"[TabDDPM] Saved {len(df)} rows -> /work/output-Benchmark-trainonly-v1/n3/tabddpm/tabddpm-n3-20260501_002012/tabddpm-n3-3918-20260501_002035.csv") +else: + print("[TabDDPM] WARNING: No output .npy files found") + sys.exit(1) diff --git a/timecost/n3/tabddpm/tabddpm-n3-20260501_002012/_tabddpm_train.py b/timecost/n3/tabddpm/tabddpm-n3-20260501_002012/_tabddpm_train.py new file mode 100644 index 0000000000000000000000000000000000000000..16db5d0522d0347df0ebb928d10a5cd3e3da9af9 --- /dev/null +++ b/timecost/n3/tabddpm/tabddpm-n3-20260501_002012/_tabddpm_train.py @@ -0,0 +1,32 @@ +import os, sys, subprocess + +tabddpm_root = "/workspace/tabddpm/code" +assert os.path.isdir(tabddpm_root), f"TabDDPM source not mounted: {tabddpm_root}" +env = os.environ.copy() +env["PYTHONPATH"] = tabddpm_root + (os.pathsep + env.get("PYTHONPATH", "")) + +# Write a wrapper that patches collections.Sequence (removed in Python 3.10+) +# before running pipeline.py - needed because skorch uses old API +wrapper = os.path.join(tabddpm_root, "_compat_run.py") +with open(wrapper, "w") as f: + f.write( + "import collections, collections.abc\n" + "for _a in ('Sequence','MutableSequence','MutableMapping','Mapping'," + "'MutableSet','Set','Callable','Iterable','Iterator'):\n" + " if not hasattr(collections, _a): setattr(collections, _a, getattr(collections.abc, _a, None))\n" + "import sys, runpy\n" + "sys.argv = sys.argv[1:]\n" + "runpy.run_path(sys.argv[0], run_name='__main__')\n" + ) + +print(f"[TabDDPM] Training, config=/work/output-Benchmark-trainonly-v1/n3/tabddpm/tabddpm-n3-20260501_002012/config.toml") +ret = subprocess.run( + [sys.executable, wrapper, "scripts/pipeline.py", + "--config", "/work/output-Benchmark-trainonly-v1/n3/tabddpm/tabddpm-n3-20260501_002012/config.toml", + "--train"], + cwd=tabddpm_root, + env=env +) +if ret.returncode != 0: + sys.exit(ret.returncode) +print("[TabDDPM] Training complete") diff --git a/timecost/n3/tabddpm/tabddpm-n3-20260501_002012/config.toml b/timecost/n3/tabddpm/tabddpm-n3-20260501_002012/config.toml new file mode 100644 index 0000000000000000000000000000000000000000..c774736da1e2d6dd06bb2981c8d5d527a7059c43 --- /dev/null +++ b/timecost/n3/tabddpm/tabddpm-n3-20260501_002012/config.toml @@ -0,0 +1,39 @@ +seed = 0 +parent_dir = "/work/output-Benchmark-trainonly-v1/n3/tabddpm/tabddpm-n3-20260501_002012/output" +real_data_path = "/work/output-Benchmark-trainonly-v1/n3/tabddpm/tabddpm-n3-20260501_002012/data" +model_type = "mlp" +num_numerical_features = 11 +device = "cuda:0" + +[model_params] +d_in = 11 +num_classes = 7 +is_y_cond = true + +[model_params.rtdl_params] +d_layers = [256, 256] +dropout = 0.0 + +[diffusion_params] +num_timesteps = 1000 +gaussian_loss_type = "mse" + +[train.main] +steps = 5000 +lr = 0.001 +weight_decay = 0.0 +batch_size = 256 + +[train.T] +seed = 0 +normalization = "quantile" +num_nan_policy = "__none__" +cat_nan_policy = "__none__" +cat_min_frequency = "__none__" +cat_encoding = "__none__" +y_policy = "default" + +[sample] +num_samples = 1000 +batch_size = 1000 +seed = 0 diff --git a/timecost/n3/tabddpm/tabddpm-n3-20260501_002012/config_sample_20260501_002035_r0.toml b/timecost/n3/tabddpm/tabddpm-n3-20260501_002012/config_sample_20260501_002035_r0.toml new file mode 100644 index 0000000000000000000000000000000000000000..00d8c1b8acc5120a9558843978768b9f459c23e0 --- /dev/null +++ b/timecost/n3/tabddpm/tabddpm-n3-20260501_002012/config_sample_20260501_002035_r0.toml @@ -0,0 +1,39 @@ +seed = 0 +parent_dir = "/work/output-Benchmark-trainonly-v1/n3/tabddpm/tabddpm-n3-20260501_002012/output" +real_data_path = "/work/output-Benchmark-trainonly-v1/n3/tabddpm/tabddpm-n3-20260501_002012/data" +model_type = "mlp" +num_numerical_features = 11 +device = "cuda:0" + +[model_params] +d_in = 11 +num_classes = 7 +is_y_cond = true + +[model_params.rtdl_params] +d_layers = [256, 256] +dropout = 0.0 + +[diffusion_params] +num_timesteps = 1000 +gaussian_loss_type = "mse" + +[train.main] +steps = 5000 +lr = 0.001 +weight_decay = 0.0 +batch_size = 256 + +[train.T] +seed = 0 +normalization = "quantile" +num_nan_policy = "__none__" +cat_nan_policy = "__none__" +cat_min_frequency = "__none__" +cat_encoding = "__none__" +y_policy = "default" + +[sample] +num_samples = 3918 +batch_size = 1000 +seed = 0 diff --git a/timecost/n3/tabddpm/tabddpm-n3-20260501_002012/data/X_num_train.npy b/timecost/n3/tabddpm/tabddpm-n3-20260501_002012/data/X_num_train.npy new file mode 100644 index 0000000000000000000000000000000000000000..94beb8413ef55592710518365965f4cb503523ee --- /dev/null +++ b/timecost/n3/tabddpm/tabddpm-n3-20260501_002012/data/X_num_train.npy @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:093d8f405d764277d5a007953f25ab6466f0857f71f0d8f3c437463fb5bf240a +size 172520 diff --git a/timecost/n3/tabddpm/tabddpm-n3-20260501_002012/data/info.json b/timecost/n3/tabddpm/tabddpm-n3-20260501_002012/data/info.json new file mode 100644 index 0000000000000000000000000000000000000000..45d216717b2847b5a467946053f10b0f41c3148b --- /dev/null +++ b/timecost/n3/tabddpm/tabddpm-n3-20260501_002012/data/info.json @@ -0,0 +1,39 @@ +{ + "name": "benchmark_dataset", + "task_type": "multiclass", + "n_num_features": 11, + "n_cat_features": 0, + "train_size": 3918, + "num_col_idx": [ + 0, + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10 + ], + "cat_col_idx": [], + "target_col_idx": [ + 11 + ], + "column_names": [ + "fixed acidity", + "volatile acidity", + "citric acid", + "residual sugar", + "chlorides", + "free sulfur dioxide", + "total sulfur dioxide", + "density", + "pH", + "sulphates", + "alcohol", + "quality" + ], + "num_classes": 7 +} \ No newline at end of file diff --git a/timecost/n3/tabddpm/tabddpm-n3-20260501_002012/data/y_train.npy b/timecost/n3/tabddpm/tabddpm-n3-20260501_002012/data/y_train.npy new file mode 100644 index 0000000000000000000000000000000000000000..1f737a58cd26592130c3604aaa90044a451eb576 --- /dev/null +++ b/timecost/n3/tabddpm/tabddpm-n3-20260501_002012/data/y_train.npy @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:85ed37c52f0ea54dfd3a476dcfafff02d61e92783748e5ee9aadfad20578bcb1 +size 31472 diff --git a/timecost/n3/tabddpm/tabddpm-n3-20260501_002012/gen_20260501_002035_r0.log b/timecost/n3/tabddpm/tabddpm-n3-20260501_002012/gen_20260501_002035_r0.log new file mode 100644 index 0000000000000000000000000000000000000000..c1eddf05f028e915260c79546ca570dec99e52c9 --- /dev/null +++ b/timecost/n3/tabddpm/tabddpm-n3-20260501_002012/gen_20260501_002035_r0.log @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:c5b5a41620d54d57667379abb7f0f3d91b22bdbc87a672784d1a27a6b1910ab7 +size 84501 diff --git a/timecost/n3/tabddpm/tabddpm-n3-20260501_002012/input_snapshot.json b/timecost/n3/tabddpm/tabddpm-n3-20260501_002012/input_snapshot.json new file mode 100644 index 0000000000000000000000000000000000000000..34d3cbb5018ded64e57cf3350f6ec58dd908f565 --- /dev/null +++ b/timecost/n3/tabddpm/tabddpm-n3-20260501_002012/input_snapshot.json @@ -0,0 +1,36 @@ +{ + "dataset_id": "n3", + "model": "tabddpm", + "inputs": { + "train_csv": { + "path": "/data/jialinzhang/SynthesizePipeline-server/DatasetNew/n3/n3-train.csv", + "exists": true, + "size": 211519, + "sha256": "2160a06db2fea02adb0ebb79d8d853bd2544580be301e71f6e8deeb1489a9009" + }, + "val_csv": { + "path": "/data/jialinzhang/SynthesizePipeline-server/DatasetNew/n3/n3-val.csv", + "exists": true, + "size": 26499, + "sha256": "d5ccfee07dfa9e7bdee5bb87642b43828e09f74c6cc0266a3d19d9feaa83106e" + }, + "test_csv": { + "path": "/data/jialinzhang/SynthesizePipeline-server/DatasetNew/n3/n3-test.csv", + "exists": true, + "size": 26676, + "sha256": "6f83aacb0d1747b95e287352a7fff5d9d65a1c127b773852346c68485c4ede47" + }, + "profile_json": { + "path": "/data/jialinzhang/SynthesizePipeline-server/DatasetNew/artifacts/data_core/tabular/n3/n3-dataset_profile.json", + "exists": true, + "size": 5235, + "sha256": "23d2e5904a2ca90cbf8d6e3c75887681721e9b90cc705c31a680c11513d0c46f" + }, + "contract_json": { + "path": "/data/jialinzhang/SynthesizePipeline-server/DatasetNew/artifacts/data_core/tabular/n3/n3-dataset_contract_v1.json", + "exists": true, + "size": 6281, + "sha256": "c0cc56f5fe28e1b65927255c6e3c2b0e9479862c2ec6f2fea1664da36c9a3a09" + } + } +} \ No newline at end of file diff --git a/timecost/n3/tabddpm/tabddpm-n3-20260501_002012/output/X_num_train.npy b/timecost/n3/tabddpm/tabddpm-n3-20260501_002012/output/X_num_train.npy new file mode 100644 index 0000000000000000000000000000000000000000..eddc9fc7dc215a7316858fca8fee5ae99f15995a --- /dev/null +++ b/timecost/n3/tabddpm/tabddpm-n3-20260501_002012/output/X_num_train.npy @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:fb3a84cecd83e55cdde7dfa9902942d9da3ca797f3c8402558123b98c25c34c2 +size 344912 diff --git a/timecost/n3/tabddpm/tabddpm-n3-20260501_002012/output/X_num_unnorm.npy b/timecost/n3/tabddpm/tabddpm-n3-20260501_002012/output/X_num_unnorm.npy new file mode 100644 index 0000000000000000000000000000000000000000..096a5edbb8961266e9ef68f32a8c7dfe547ac91d --- /dev/null +++ b/timecost/n3/tabddpm/tabddpm-n3-20260501_002012/output/X_num_unnorm.npy @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:4f0f79ea00cee09d144e3b6b4c3c4c78fc3898e91e1619bce14225d2e68fc4bf +size 344912 diff --git a/timecost/n3/tabddpm/tabddpm-n3-20260501_002012/output/config.toml b/timecost/n3/tabddpm/tabddpm-n3-20260501_002012/output/config.toml new file mode 100644 index 0000000000000000000000000000000000000000..00d8c1b8acc5120a9558843978768b9f459c23e0 --- /dev/null +++ b/timecost/n3/tabddpm/tabddpm-n3-20260501_002012/output/config.toml @@ -0,0 +1,39 @@ +seed = 0 +parent_dir = "/work/output-Benchmark-trainonly-v1/n3/tabddpm/tabddpm-n3-20260501_002012/output" +real_data_path = "/work/output-Benchmark-trainonly-v1/n3/tabddpm/tabddpm-n3-20260501_002012/data" +model_type = "mlp" +num_numerical_features = 11 +device = "cuda:0" + +[model_params] +d_in = 11 +num_classes = 7 +is_y_cond = true + +[model_params.rtdl_params] +d_layers = [256, 256] +dropout = 0.0 + +[diffusion_params] +num_timesteps = 1000 +gaussian_loss_type = "mse" + +[train.main] +steps = 5000 +lr = 0.001 +weight_decay = 0.0 +batch_size = 256 + +[train.T] +seed = 0 +normalization = "quantile" +num_nan_policy = "__none__" +cat_nan_policy = "__none__" +cat_min_frequency = "__none__" +cat_encoding = "__none__" +y_policy = "default" + +[sample] +num_samples = 3918 +batch_size = 1000 +seed = 0 diff --git a/timecost/n3/tabddpm/tabddpm-n3-20260501_002012/output/info.json b/timecost/n3/tabddpm/tabddpm-n3-20260501_002012/output/info.json new file mode 100644 index 0000000000000000000000000000000000000000..45d216717b2847b5a467946053f10b0f41c3148b --- /dev/null +++ b/timecost/n3/tabddpm/tabddpm-n3-20260501_002012/output/info.json @@ -0,0 +1,39 @@ +{ + "name": "benchmark_dataset", + "task_type": "multiclass", + "n_num_features": 11, + "n_cat_features": 0, + "train_size": 3918, + "num_col_idx": [ + 0, + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10 + ], + "cat_col_idx": [], + "target_col_idx": [ + 11 + ], + "column_names": [ + "fixed acidity", + "volatile acidity", + "citric acid", + "residual sugar", + "chlorides", + "free sulfur dioxide", + "total sulfur dioxide", + "density", + "pH", + "sulphates", + "alcohol", + "quality" + ], + "num_classes": 7 +} \ No newline at end of file diff --git a/timecost/n3/tabddpm/tabddpm-n3-20260501_002012/output/loss.csv b/timecost/n3/tabddpm/tabddpm-n3-20260501_002012/output/loss.csv new file mode 100644 index 0000000000000000000000000000000000000000..9c1f8a5cfe87ec4f49722de310474f40f89166fb --- /dev/null +++ b/timecost/n3/tabddpm/tabddpm-n3-20260501_002012/output/loss.csv @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:60561b92981d01bad0dfd398877e1189f7186cfa0253f75b7c4f51a80de97196 +size 1251 diff --git a/timecost/n3/tabddpm/tabddpm-n3-20260501_002012/output/model.pt b/timecost/n3/tabddpm/tabddpm-n3-20260501_002012/output/model.pt new file mode 100644 index 0000000000000000000000000000000000000000..83563b06a4db03bc822db334b340e81b0535034f --- /dev/null +++ b/timecost/n3/tabddpm/tabddpm-n3-20260501_002012/output/model.pt @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:32dd76d6d4a0979442d1fa749406835b4bcaa43877c99cc7a53fc7541a5024f9 +size 553046 diff --git a/timecost/n3/tabddpm/tabddpm-n3-20260501_002012/output/model_ema.pt b/timecost/n3/tabddpm/tabddpm-n3-20260501_002012/output/model_ema.pt new file mode 100644 index 0000000000000000000000000000000000000000..7334fbb11efab2f81be838bad3efc2e1812538d6 --- /dev/null +++ b/timecost/n3/tabddpm/tabddpm-n3-20260501_002012/output/model_ema.pt @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:c25a1d1825e3e00ee57fbd097c655e47146b1607d2d84cd78d902f77f3664bd2 +size 553890 diff --git a/timecost/n3/tabddpm/tabddpm-n3-20260501_002012/output/y_train.npy b/timecost/n3/tabddpm/tabddpm-n3-20260501_002012/output/y_train.npy new file mode 100644 index 0000000000000000000000000000000000000000..cea6160110d6a403447199b2a250a6ea77ede7b8 --- /dev/null +++ b/timecost/n3/tabddpm/tabddpm-n3-20260501_002012/output/y_train.npy @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:4d886843627c3d1c9944174e0049dcf604cfa5b0b8e0631b955a75ab0e30bc7d +size 31472 diff --git a/timecost/n3/tabddpm/tabddpm-n3-20260501_002012/public_gate/normalized_schema_snapshot.json b/timecost/n3/tabddpm/tabddpm-n3-20260501_002012/public_gate/normalized_schema_snapshot.json new file mode 100644 index 0000000000000000000000000000000000000000..c41fe304503de23190a02e6cbfafa35b3bf134d3 --- /dev/null +++ b/timecost/n3/tabddpm/tabddpm-n3-20260501_002012/public_gate/normalized_schema_snapshot.json @@ -0,0 +1,259 @@ +{ + "dataset_id": "n3", + "target_column": "quality", + "task_type": "classification", + "columns": [ + { + "name": "fixed acidity", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 66, + "unique_ratio": 0.016845, + "example_values": [ + "7.1", + "8.5", + "6.4", + "6.8", + "7.6" + ] + } + }, + { + "name": "volatile acidity", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 121, + "unique_ratio": 0.030883, + "example_values": [ + "0.31", + "0.21", + "0.24", + "0.43", + "0.27" + ] + } + }, + { + "name": "citric acid", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 85, + "unique_ratio": 0.021695, + "example_values": [ + "0.17", + "0.41", + "0.31", + "0.25", + "0.3" + ] + } + }, + { + "name": "residual sugar", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 296, + "unique_ratio": 0.075549, + "example_values": [ + "1", + "4.3", + "2.8", + "13", + "12.9" + ] + } + }, + { + "name": "chlorides", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 147, + "unique_ratio": 0.037519, + "example_values": [ + "0.042", + "0.036", + "0.038", + "0.047", + "0.033" + ] + } + }, + { + "name": "free sulfur dioxide", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 120, + "unique_ratio": 0.030628, + "example_values": [ + "21", + "24", + "41", + "43", + "69" + ] + } + }, + { + "name": "total sulfur dioxide", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 244, + "unique_ratio": 0.062277, + "example_values": [ + "144", + "99", + "114", + "132", + "160" + ] + } + }, + { + "name": "density", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 839, + "unique_ratio": 0.21414, + "example_values": [ + "0.99304", + "0.9947", + "0.99155", + "0.98975", + "0.99705" + ] + } + }, + { + "name": "pH", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 100, + "unique_ratio": 0.025523, + "example_values": [ + "3.13", + "3.18", + "3.37", + "3.21", + "3.16" + ] + } + }, + { + "name": "sulphates", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 78, + "unique_ratio": 0.019908, + "example_values": [ + "0.4", + "0.53", + "0.66", + "0.47", + "0.5" + ] + } + }, + { + "name": "alcohol", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 97, + "unique_ratio": 0.024758, + "example_values": [ + "9.6", + "9.7", + "11.7", + "13.4", + "8.8" + ] + } + }, + { + "name": "quality", + "role": "target", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 7, + "unique_ratio": 0.001787, + "example_values": [ + "5", + "6", + "7", + "8", + "3" + ] + } + } + ] +} \ No newline at end of file diff --git a/timecost/n3/tabddpm/tabddpm-n3-20260501_002012/public_gate/public_gate_report.json b/timecost/n3/tabddpm/tabddpm-n3-20260501_002012/public_gate/public_gate_report.json new file mode 100644 index 0000000000000000000000000000000000000000..93b97319f739e39079d6c6549fd2020f8a6dac25 --- /dev/null +++ b/timecost/n3/tabddpm/tabddpm-n3-20260501_002012/public_gate/public_gate_report.json @@ -0,0 +1,37 @@ +{ + "dataset_id": "n3", + "status": "pass", + "checks": [ + { + "check_id": "PG001_csv_parse_ok", + "status": "pass" + }, + { + "check_id": "PG002_split_header_consistent", + "status": "pass" + }, + { + "check_id": "PG003_profile_header_match", + "status": "pass" + }, + { + "check_id": "PG004_missing_token_normalized", + "status": "pass" + }, + { + "check_id": "PG005_semantic_type_validated", + "status": "pass" + }, + { + "check_id": "PG006_target_defined_and_valid", + "status": "pass" + } + ], + "target_column": "quality", + "task_type": "classification", + "input_splits": { + "train": "/data/jialinzhang/SynthesizePipeline-server/DatasetNew/n3/n3-train.csv", + "val": "/data/jialinzhang/SynthesizePipeline-server/DatasetNew/n3/n3-val.csv", + "test": "/data/jialinzhang/SynthesizePipeline-server/DatasetNew/n3/n3-test.csv" + } +} \ No newline at end of file diff --git a/timecost/n3/tabddpm/tabddpm-n3-20260501_002012/public_gate/staged_input_manifest.json b/timecost/n3/tabddpm/tabddpm-n3-20260501_002012/public_gate/staged_input_manifest.json new file mode 100644 index 0000000000000000000000000000000000000000..66e0f0756c2be612567cd59f4b3a14fcd25446ce --- /dev/null +++ b/timecost/n3/tabddpm/tabddpm-n3-20260501_002012/public_gate/staged_input_manifest.json @@ -0,0 +1,264 @@ +{ + "dataset_id": "n3", + "target_column": "quality", + "task_type": "classification", + "train_csv": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/n3/tabddpm/tabddpm-n3-20260501_002012/staged/public/train.csv", + "val_csv": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/n3/tabddpm/tabddpm-n3-20260501_002012/staged/public/val.csv", + "test_csv": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/n3/tabddpm/tabddpm-n3-20260501_002012/staged/public/test.csv", + "features_json": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/n3/tabddpm/tabddpm-n3-20260501_002012/staged/public/staged_features.json", + "public_gate_report": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/n3/tabddpm/tabddpm-n3-20260501_002012/public_gate/public_gate_report.json", + "column_schema": [ + { + "name": "fixed acidity", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 66, + "unique_ratio": 0.016845, + "example_values": [ + "7.1", + "8.5", + "6.4", + "6.8", + "7.6" + ] + } + }, + { + "name": "volatile acidity", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 121, + "unique_ratio": 0.030883, + "example_values": [ + "0.31", + "0.21", + "0.24", + "0.43", + "0.27" + ] + } + }, + { + "name": "citric acid", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 85, + "unique_ratio": 0.021695, + "example_values": [ + "0.17", + "0.41", + "0.31", + "0.25", + "0.3" + ] + } + }, + { + "name": "residual sugar", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 296, + "unique_ratio": 0.075549, + "example_values": [ + "1", + "4.3", + "2.8", + "13", + "12.9" + ] + } + }, + { + "name": "chlorides", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 147, + "unique_ratio": 0.037519, + "example_values": [ + "0.042", + "0.036", + "0.038", + "0.047", + "0.033" + ] + } + }, + { + "name": "free sulfur dioxide", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 120, + "unique_ratio": 0.030628, + "example_values": [ + "21", + "24", + "41", + "43", + "69" + ] + } + }, + { + "name": "total sulfur dioxide", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 244, + "unique_ratio": 0.062277, + "example_values": [ + "144", + "99", + "114", + "132", + "160" + ] + } + }, + { + "name": "density", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 839, + "unique_ratio": 0.21414, + "example_values": [ + "0.99304", + "0.9947", + "0.99155", + "0.98975", + "0.99705" + ] + } + }, + { + "name": "pH", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 100, + "unique_ratio": 0.025523, + "example_values": [ + "3.13", + "3.18", + "3.37", + "3.21", + "3.16" + ] + } + }, + { + "name": "sulphates", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 78, + "unique_ratio": 0.019908, + "example_values": [ + "0.4", + "0.53", + "0.66", + "0.47", + "0.5" + ] + } + }, + { + "name": "alcohol", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 97, + "unique_ratio": 0.024758, + "example_values": [ + "9.6", + "9.7", + "11.7", + "13.4", + "8.8" + ] + } + }, + { + "name": "quality", + "role": "target", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 7, + "unique_ratio": 0.001787, + "example_values": [ + "5", + "6", + "7", + "8", + "3" + ] + } + } + ] +} \ No newline at end of file diff --git a/timecost/n3/tabddpm/tabddpm-n3-20260501_002012/runtime_result.json b/timecost/n3/tabddpm/tabddpm-n3-20260501_002012/runtime_result.json new file mode 100644 index 0000000000000000000000000000000000000000..38dfe5eaea46c079b254afdb4a6676483a5a09b8 --- /dev/null +++ b/timecost/n3/tabddpm/tabddpm-n3-20260501_002012/runtime_result.json @@ -0,0 +1,27 @@ +{ + "dataset_id": "n3", + "model": "tabddpm", + "run_id": "tabddpm-n3-20260501_002012", + "public_gate_status": "pass", + "adapter_ready_status": "pass", + "train_status": "success", + "generate_status": "success", + "reason_code": null, + "reason_detail": null, + "artifacts": { + "synthetic_csv": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/n3/tabddpm/tabddpm-n3-20260501_002012/tabddpm-n3-3918-20260501_002035.csv", + "model_path": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/n3/tabddpm/tabddpm-n3-20260501_002012" + }, + "timings": { + "train": { + "started_at": "2026-05-01T00:20:12", + "ended_at": "2026-05-01T00:20:35", + "duration_sec": 23.073 + }, + "generate": { + "started_at": "2026-05-01T00:20:35", + "ended_at": "2026-05-01T00:20:46", + "duration_sec": 10.637 + } + } +} \ No newline at end of file diff --git a/timecost/n3/tabddpm/tabddpm-n3-20260501_002012/staged/public/staged_features.json b/timecost/n3/tabddpm/tabddpm-n3-20260501_002012/staged/public/staged_features.json new file mode 100644 index 0000000000000000000000000000000000000000..08fe4d766d091d2f2ddba724a16b9509cbe4c390 --- /dev/null +++ b/timecost/n3/tabddpm/tabddpm-n3-20260501_002012/staged/public/staged_features.json @@ -0,0 +1,62 @@ +[ + { + "feature_name": "fixed acidity", + "data_type": "continuous", + "is_target": false + }, + { + "feature_name": "volatile acidity", + "data_type": "continuous", + "is_target": false + }, + { + "feature_name": "citric acid", + "data_type": "continuous", + "is_target": false + }, + { + "feature_name": "residual sugar", + "data_type": "continuous", + "is_target": false + }, + { + "feature_name": "chlorides", + "data_type": "continuous", + "is_target": false + }, + { + "feature_name": "free sulfur dioxide", + "data_type": "continuous", + "is_target": false + }, + { + "feature_name": "total sulfur dioxide", + "data_type": "continuous", + "is_target": false + }, + { + "feature_name": "density", + "data_type": "continuous", + "is_target": false + }, + { + "feature_name": "pH", + "data_type": "continuous", + "is_target": false + }, + { + "feature_name": "sulphates", + "data_type": "continuous", + "is_target": false + }, + { + "feature_name": "alcohol", + "data_type": "continuous", + "is_target": false + }, + { + "feature_name": "quality", + "data_type": "continuous", + "is_target": true + } +] \ No newline at end of file diff --git a/timecost/n3/tabddpm/tabddpm-n3-20260501_002012/staged/public/test.csv b/timecost/n3/tabddpm/tabddpm-n3-20260501_002012/staged/public/test.csv new file mode 100644 index 0000000000000000000000000000000000000000..db5cd50d3746410ea470625fa2ba2c8e9775cc0d --- /dev/null +++ b/timecost/n3/tabddpm/tabddpm-n3-20260501_002012/staged/public/test.csv @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:19e107152a94432e2a37ff045c00cfe35e1be30208b1553080d7dd0ede256d3b +size 28944 diff --git a/timecost/n3/tabddpm/tabddpm-n3-20260501_002012/staged/public/train.csv b/timecost/n3/tabddpm/tabddpm-n3-20260501_002012/staged/public/train.csv new file mode 100644 index 0000000000000000000000000000000000000000..87ca26726fe82ccbaa397919305b043c17eb374e --- /dev/null +++ b/timecost/n3/tabddpm/tabddpm-n3-20260501_002012/staged/public/train.csv @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:7813c8cca73ba4bfc6559215257b341c21e459980ad17ae6ddc809306bc9a0b9 +size 229945 diff --git a/timecost/n3/tabddpm/tabddpm-n3-20260501_002012/staged/public/val.csv b/timecost/n3/tabddpm/tabddpm-n3-20260501_002012/staged/public/val.csv new file mode 100644 index 0000000000000000000000000000000000000000..6acf84c76c47093b513c46d5503972a2dff275c0 --- /dev/null +++ b/timecost/n3/tabddpm/tabddpm-n3-20260501_002012/staged/public/val.csv @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:cf5979d9675567d9d6642640c9b84fc6c49e492604144723c30f50516c05cee6 +size 28791 diff --git a/timecost/n3/tabddpm/tabddpm-n3-20260501_002012/staged/tabddpm/adapter_report.json b/timecost/n3/tabddpm/tabddpm-n3-20260501_002012/staged/tabddpm/adapter_report.json new file mode 100644 index 0000000000000000000000000000000000000000..b419fc3060bf8fbc87fd87c7de467d63ef1333e7 --- /dev/null +++ b/timecost/n3/tabddpm/tabddpm-n3-20260501_002012/staged/tabddpm/adapter_report.json @@ -0,0 +1,7 @@ +{ + "adapter_ready_status": "pass", + "adapter_fail_reason_code": null, + "adapter_fail_detail": null, + "adapter_transforms_applied": [], + "model_input_manifest": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/n3/tabddpm/tabddpm-n3-20260501_002012/staged/tabddpm/model_input_manifest.json" +} \ No newline at end of file diff --git a/timecost/n3/tabddpm/tabddpm-n3-20260501_002012/staged/tabddpm/adapter_transforms_applied.json b/timecost/n3/tabddpm/tabddpm-n3-20260501_002012/staged/tabddpm/adapter_transforms_applied.json new file mode 100644 index 0000000000000000000000000000000000000000..0637a088a01e8ddab3bf3fa98dbe804cbde1a0dc --- /dev/null +++ b/timecost/n3/tabddpm/tabddpm-n3-20260501_002012/staged/tabddpm/adapter_transforms_applied.json @@ -0,0 +1 @@ +[] \ No newline at end of file diff --git a/timecost/n3/tabddpm/tabddpm-n3-20260501_002012/staged/tabddpm/model_input_manifest.json b/timecost/n3/tabddpm/tabddpm-n3-20260501_002012/staged/tabddpm/model_input_manifest.json new file mode 100644 index 0000000000000000000000000000000000000000..a72e8cf5191c7120c3f172ba5d3c5352d63f6c14 --- /dev/null +++ b/timecost/n3/tabddpm/tabddpm-n3-20260501_002012/staged/tabddpm/model_input_manifest.json @@ -0,0 +1,266 @@ +{ + "dataset_id": "n3", + "model": "tabddpm", + "target_column": "quality", + "task_type": "classification", + "column_schema": [ + { + "name": "fixed acidity", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 66, + "unique_ratio": 0.016845, + "example_values": [ + "7.1", + "8.5", + "6.4", + "6.8", + "7.6" + ] + } + }, + { + "name": "volatile acidity", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 121, + "unique_ratio": 0.030883, + "example_values": [ + "0.31", + "0.21", + "0.24", + "0.43", + "0.27" + ] + } + }, + { + "name": "citric acid", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 85, + "unique_ratio": 0.021695, + "example_values": [ + "0.17", + "0.41", + "0.31", + "0.25", + "0.3" + ] + } + }, + { + "name": "residual sugar", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 296, + "unique_ratio": 0.075549, + "example_values": [ + "1", + "4.3", + "2.8", + "13", + "12.9" + ] + } + }, + { + "name": "chlorides", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 147, + "unique_ratio": 0.037519, + "example_values": [ + "0.042", + "0.036", + "0.038", + "0.047", + "0.033" + ] + } + }, + { + "name": "free sulfur dioxide", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 120, + "unique_ratio": 0.030628, + "example_values": [ + "21", + "24", + "41", + "43", + "69" + ] + } + }, + { + "name": "total sulfur dioxide", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 244, + "unique_ratio": 0.062277, + "example_values": [ + "144", + "99", + "114", + "132", + "160" + ] + } + }, + { + "name": "density", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 839, + "unique_ratio": 0.21414, + "example_values": [ + "0.99304", + "0.9947", + "0.99155", + "0.98975", + "0.99705" + ] + } + }, + { + "name": "pH", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 100, + "unique_ratio": 0.025523, + "example_values": [ + "3.13", + "3.18", + "3.37", + "3.21", + "3.16" + ] + } + }, + { + "name": "sulphates", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 78, + "unique_ratio": 0.019908, + "example_values": [ + "0.4", + "0.53", + "0.66", + "0.47", + "0.5" + ] + } + }, + { + "name": "alcohol", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 97, + "unique_ratio": 0.024758, + "example_values": [ + "9.6", + "9.7", + "11.7", + "13.4", + "8.8" + ] + } + }, + { + "name": "quality", + "role": "target", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 7, + "unique_ratio": 0.001787, + "example_values": [ + "5", + "6", + "7", + "8", + "3" + ] + } + } + ], + "public_manifest": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/n3/tabddpm/tabddpm-n3-20260501_002012/public_gate/staged_input_manifest.json", + "train_csv": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/n3/tabddpm/tabddpm-n3-20260501_002012/staged/public/train.csv", + "val_csv": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/n3/tabddpm/tabddpm-n3-20260501_002012/staged/public/val.csv", + "test_csv": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/n3/tabddpm/tabddpm-n3-20260501_002012/staged/public/test.csv", + "features_json": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/n3/tabddpm/tabddpm-n3-20260501_002012/staged/public/staged_features.json", + "public_gate_report": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/n3/tabddpm/tabddpm-n3-20260501_002012/public_gate/public_gate_report.json" +} \ No newline at end of file diff --git a/timecost/n3/tabddpm/tabddpm-n3-20260501_002012/tabddpm-n3-3918-20260501_002035.csv b/timecost/n3/tabddpm/tabddpm-n3-20260501_002012/tabddpm-n3-3918-20260501_002035.csv new file mode 100644 index 0000000000000000000000000000000000000000..b34cd5beb2ca50ac51ae8872c40a18add64ef325 --- /dev/null +++ b/timecost/n3/tabddpm/tabddpm-n3-20260501_002012/tabddpm-n3-3918-20260501_002035.csv @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:d6215ab7dae82ddeae2fc63f308c3bc59d26da30cd7e61dd046ab97b6619fef9 +size 774771 diff --git a/timecost/n3/tabddpm/tabddpm-n3-20260501_002012/train_20260501_002012.log b/timecost/n3/tabddpm/tabddpm-n3-20260501_002012/train_20260501_002012.log new file mode 100644 index 0000000000000000000000000000000000000000..9be1c25892c24ae25207e9ee3383feac085086c7 --- /dev/null +++ b/timecost/n3/tabddpm/tabddpm-n3-20260501_002012/train_20260501_002012.log @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:e5ba05af1754eef93e2c519198aa9c11b3ded64badaf882b13abde890338e8da +size 1067 diff --git a/timecost/n3/tabdiff/tabdiff-n3-20260501_004446/_tabdiff_gen.py b/timecost/n3/tabdiff/tabdiff-n3-20260501_004446/_tabdiff_gen.py new file mode 100644 index 0000000000000000000000000000000000000000..9def070a662335ac19866533cb6759f328f2a7de --- /dev/null +++ b/timecost/n3/tabdiff/tabdiff-n3-20260501_004446/_tabdiff_gen.py @@ -0,0 +1,36 @@ + +import os, shutil, subprocess, sys +td = r"/workspace/TabDiff" +name = r"pipeline_n3" +src = r"/work/output-Benchmark-trainonly-v1/n3/tabdiff/tabdiff-n3-20260501_004446/tabular_bundle/pipeline_n3" +dst_data = os.path.join(td, "data", name) +dst_syn = os.path.join(td, "synthetic", name) +shutil.rmtree(dst_data, ignore_errors=True) +shutil.copytree(src, dst_data) +os.makedirs(dst_syn, exist_ok=True) +for fn in ("real.csv", "test.csv", "val.csv"): + shutil.copy(os.path.join(src, fn), os.path.join(dst_syn, fn)) +os.chdir(td) +os.environ["PYTHONPATH"] = td + os.pathsep + os.environ.get("PYTHONPATH", "") +subprocess.check_call([ + sys.executable, "-m", "tabdiff.main", + "--dataname", name, "--mode", "test", "--gpu", "0", + "--no_wandb", "--exp_name", r"adapter_learnable", + "--ckpt_path", r"/workspace/TabDiff/tabdiff/ckpt/pipeline_n3/adapter_learnable/model_500.pt", + "--num_samples_to_generate", str(int(3918)), +]) +# test() 写入 tabdiff/result////samples.csv +import glob as g +base = os.path.join(td, "tabdiff", "result", name, r"adapter_learnable") +best = None +best_t = -1.0 +for root, _, files in os.walk(base): + if "samples.csv" in files: + p = os.path.join(root, "samples.csv") + t = os.path.getmtime(p) + if t > best_t: + best_t = t + best = p +if not best: + raise SystemExit("tabdiff: no samples.csv under " + base) +shutil.copy(best, r"/work/output-Benchmark-trainonly-v1/n3/tabdiff/tabdiff-n3-20260501_004446/tabdiff-n3-3918-20260501_005103.csv") diff --git a/timecost/n3/tabdiff/tabdiff-n3-20260501_004446/_tabdiff_train.py b/timecost/n3/tabdiff/tabdiff-n3-20260501_004446/_tabdiff_train.py new file mode 100644 index 0000000000000000000000000000000000000000..8785d95501d301a66431bbf637bbae9ad95d3ff5 --- /dev/null +++ b/timecost/n3/tabdiff/tabdiff-n3-20260501_004446/_tabdiff_train.py @@ -0,0 +1,21 @@ + +import os, shutil, subprocess, sys +td = r"/workspace/TabDiff" +name = r"pipeline_n3" +src = r"/work/output-Benchmark-trainonly-v1/n3/tabdiff/tabdiff-n3-20260501_004446/tabular_bundle/pipeline_n3" +dst_data = os.path.join(td, "data", name) +dst_syn = os.path.join(td, "synthetic", name) +shutil.rmtree(dst_data, ignore_errors=True) +shutil.copytree(src, dst_data) +os.makedirs(dst_syn, exist_ok=True) +for fn in ("real.csv", "test.csv", "val.csv"): + shutil.copy(os.path.join(src, fn), os.path.join(dst_syn, fn)) +os.chdir(td) +os.environ["PYTHONPATH"] = td + os.pathsep + os.environ.get("PYTHONPATH", "") +os.environ["TABDIFF_SMOKE_STEPS"] = "500" +os.environ["TABDIFF_ADAPTER_TRAIN"] = "1" +subprocess.check_call([ + sys.executable, "-m", "tabdiff.main", + "--dataname", name, "--mode", "train", "--gpu", "0", + "--no_wandb", "--exp_name", r"adapter_learnable", +]) diff --git a/timecost/n3/tabdiff/tabdiff-n3-20260501_004446/gen_20260501_005103.log b/timecost/n3/tabdiff/tabdiff-n3-20260501_004446/gen_20260501_005103.log new file mode 100644 index 0000000000000000000000000000000000000000..f7600d692ca0911218d74673978f40a4a59e0e09 --- /dev/null +++ b/timecost/n3/tabdiff/tabdiff-n3-20260501_004446/gen_20260501_005103.log @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:2bb6dc678842c114f1cf611551ea8e33b9c867cd1c303062c178c576a93266a3 +size 4533 diff --git a/timecost/n3/tabdiff/tabdiff-n3-20260501_004446/input_snapshot.json b/timecost/n3/tabdiff/tabdiff-n3-20260501_004446/input_snapshot.json new file mode 100644 index 0000000000000000000000000000000000000000..751cd5fa38e2fbd0a4680d9f58579382404e5586 --- /dev/null +++ b/timecost/n3/tabdiff/tabdiff-n3-20260501_004446/input_snapshot.json @@ -0,0 +1,36 @@ +{ + "dataset_id": "n3", + "model": "tabdiff", + "inputs": { + "train_csv": { + "path": "/data/jialinzhang/SynthesizePipeline-server/DatasetNew/n3/n3-train.csv", + "exists": true, + "size": 211519, + "sha256": "2160a06db2fea02adb0ebb79d8d853bd2544580be301e71f6e8deeb1489a9009" + }, + "val_csv": { + "path": "/data/jialinzhang/SynthesizePipeline-server/DatasetNew/n3/n3-val.csv", + "exists": true, + "size": 26499, + "sha256": "d5ccfee07dfa9e7bdee5bb87642b43828e09f74c6cc0266a3d19d9feaa83106e" + }, + "test_csv": { + "path": "/data/jialinzhang/SynthesizePipeline-server/DatasetNew/n3/n3-test.csv", + "exists": true, + "size": 26676, + "sha256": "6f83aacb0d1747b95e287352a7fff5d9d65a1c127b773852346c68485c4ede47" + }, + "profile_json": { + "path": "/data/jialinzhang/SynthesizePipeline-server/DatasetNew/artifacts/data_core/tabular/n3/n3-dataset_profile.json", + "exists": true, + "size": 5235, + "sha256": "23d2e5904a2ca90cbf8d6e3c75887681721e9b90cc705c31a680c11513d0c46f" + }, + "contract_json": { + "path": "/data/jialinzhang/SynthesizePipeline-server/DatasetNew/artifacts/data_core/tabular/n3/n3-dataset_contract_v1.json", + "exists": true, + "size": 6281, + "sha256": "c0cc56f5fe28e1b65927255c6e3c2b0e9479862c2ec6f2fea1664da36c9a3a09" + } + } +} \ No newline at end of file diff --git a/timecost/n3/tabdiff/tabdiff-n3-20260501_004446/models_tabdiff/trained.pt b/timecost/n3/tabdiff/tabdiff-n3-20260501_004446/models_tabdiff/trained.pt new file mode 100644 index 0000000000000000000000000000000000000000..bc319a55a9c7152a1137f968b6fa1c735125ad11 --- /dev/null +++ b/timecost/n3/tabdiff/tabdiff-n3-20260501_004446/models_tabdiff/trained.pt @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:306660b8aad4549267c68390b017e15ddb9bc06a02c80515eb72a97ae31a81eb +size 74 diff --git a/timecost/n3/tabdiff/tabdiff-n3-20260501_004446/public_gate/normalized_schema_snapshot.json b/timecost/n3/tabdiff/tabdiff-n3-20260501_004446/public_gate/normalized_schema_snapshot.json new file mode 100644 index 0000000000000000000000000000000000000000..c41fe304503de23190a02e6cbfafa35b3bf134d3 --- /dev/null +++ b/timecost/n3/tabdiff/tabdiff-n3-20260501_004446/public_gate/normalized_schema_snapshot.json @@ -0,0 +1,259 @@ +{ + "dataset_id": "n3", + "target_column": "quality", + "task_type": "classification", + "columns": [ + { + "name": "fixed acidity", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 66, + "unique_ratio": 0.016845, + "example_values": [ + "7.1", + "8.5", + "6.4", + "6.8", + "7.6" + ] + } + }, + { + "name": "volatile acidity", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 121, + "unique_ratio": 0.030883, + "example_values": [ + "0.31", + "0.21", + "0.24", + "0.43", + "0.27" + ] + } + }, + { + "name": "citric acid", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 85, + "unique_ratio": 0.021695, + "example_values": [ + "0.17", + "0.41", + "0.31", + "0.25", + "0.3" + ] + } + }, + { + "name": "residual sugar", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 296, + "unique_ratio": 0.075549, + "example_values": [ + "1", + "4.3", + "2.8", + "13", + "12.9" + ] + } + }, + { + "name": "chlorides", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 147, + "unique_ratio": 0.037519, + "example_values": [ + "0.042", + "0.036", + "0.038", + "0.047", + "0.033" + ] + } + }, + { + "name": "free sulfur dioxide", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 120, + "unique_ratio": 0.030628, + "example_values": [ + "21", + "24", + "41", + "43", + "69" + ] + } + }, + { + "name": "total sulfur dioxide", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 244, + "unique_ratio": 0.062277, + "example_values": [ + "144", + "99", + "114", + "132", + "160" + ] + } + }, + { + "name": "density", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 839, + "unique_ratio": 0.21414, + "example_values": [ + "0.99304", + "0.9947", + "0.99155", + "0.98975", + "0.99705" + ] + } + }, + { + "name": "pH", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 100, + "unique_ratio": 0.025523, + "example_values": [ + "3.13", + "3.18", + "3.37", + "3.21", + "3.16" + ] + } + }, + { + "name": "sulphates", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 78, + "unique_ratio": 0.019908, + "example_values": [ + "0.4", + "0.53", + "0.66", + "0.47", + "0.5" + ] + } + }, + { + "name": "alcohol", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 97, + "unique_ratio": 0.024758, + "example_values": [ + "9.6", + "9.7", + "11.7", + "13.4", + "8.8" + ] + } + }, + { + "name": "quality", + "role": "target", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 7, + "unique_ratio": 0.001787, + "example_values": [ + "5", + "6", + "7", + "8", + "3" + ] + } + } + ] +} \ No newline at end of file diff --git a/timecost/n3/tabdiff/tabdiff-n3-20260501_004446/public_gate/public_gate_report.json b/timecost/n3/tabdiff/tabdiff-n3-20260501_004446/public_gate/public_gate_report.json new file mode 100644 index 0000000000000000000000000000000000000000..93b97319f739e39079d6c6549fd2020f8a6dac25 --- /dev/null +++ b/timecost/n3/tabdiff/tabdiff-n3-20260501_004446/public_gate/public_gate_report.json @@ -0,0 +1,37 @@ +{ + "dataset_id": "n3", + "status": "pass", + "checks": [ + { + "check_id": "PG001_csv_parse_ok", + "status": "pass" + }, + { + "check_id": "PG002_split_header_consistent", + "status": "pass" + }, + { + "check_id": "PG003_profile_header_match", + "status": "pass" + }, + { + "check_id": "PG004_missing_token_normalized", + "status": "pass" + }, + { + "check_id": "PG005_semantic_type_validated", + "status": "pass" + }, + { + "check_id": "PG006_target_defined_and_valid", + "status": "pass" + } + ], + "target_column": "quality", + "task_type": "classification", + "input_splits": { + "train": "/data/jialinzhang/SynthesizePipeline-server/DatasetNew/n3/n3-train.csv", + "val": "/data/jialinzhang/SynthesizePipeline-server/DatasetNew/n3/n3-val.csv", + "test": "/data/jialinzhang/SynthesizePipeline-server/DatasetNew/n3/n3-test.csv" + } +} \ No newline at end of file diff --git a/timecost/n3/tabdiff/tabdiff-n3-20260501_004446/public_gate/staged_input_manifest.json b/timecost/n3/tabdiff/tabdiff-n3-20260501_004446/public_gate/staged_input_manifest.json new file mode 100644 index 0000000000000000000000000000000000000000..6b80d2f7f4bfa863c06b6abe28a01bd20a5cdf33 --- /dev/null +++ b/timecost/n3/tabdiff/tabdiff-n3-20260501_004446/public_gate/staged_input_manifest.json @@ -0,0 +1,264 @@ +{ + "dataset_id": "n3", + "target_column": "quality", + "task_type": "classification", + "train_csv": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/n3/tabdiff/tabdiff-n3-20260501_004446/staged/public/train.csv", + "val_csv": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/n3/tabdiff/tabdiff-n3-20260501_004446/staged/public/val.csv", + "test_csv": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/n3/tabdiff/tabdiff-n3-20260501_004446/staged/public/test.csv", + "features_json": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/n3/tabdiff/tabdiff-n3-20260501_004446/staged/public/staged_features.json", + "public_gate_report": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/n3/tabdiff/tabdiff-n3-20260501_004446/public_gate/public_gate_report.json", + "column_schema": [ + { + "name": "fixed acidity", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 66, + "unique_ratio": 0.016845, + "example_values": [ + "7.1", + "8.5", + "6.4", + "6.8", + "7.6" + ] + } + }, + { + "name": "volatile acidity", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 121, + "unique_ratio": 0.030883, + "example_values": [ + "0.31", + "0.21", + "0.24", + "0.43", + "0.27" + ] + } + }, + { + "name": "citric acid", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 85, + "unique_ratio": 0.021695, + "example_values": [ + "0.17", + "0.41", + "0.31", + "0.25", + "0.3" + ] + } + }, + { + "name": "residual sugar", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 296, + "unique_ratio": 0.075549, + "example_values": [ + "1", + "4.3", + "2.8", + "13", + "12.9" + ] + } + }, + { + "name": "chlorides", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 147, + "unique_ratio": 0.037519, + "example_values": [ + "0.042", + "0.036", + "0.038", + "0.047", + "0.033" + ] + } + }, + { + "name": "free sulfur dioxide", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 120, + "unique_ratio": 0.030628, + "example_values": [ + "21", + "24", + "41", + "43", + "69" + ] + } + }, + { + "name": "total sulfur dioxide", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 244, + "unique_ratio": 0.062277, + "example_values": [ + "144", + "99", + "114", + "132", + "160" + ] + } + }, + { + "name": "density", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 839, + "unique_ratio": 0.21414, + "example_values": [ + "0.99304", + "0.9947", + "0.99155", + "0.98975", + "0.99705" + ] + } + }, + { + "name": "pH", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 100, + "unique_ratio": 0.025523, + "example_values": [ + "3.13", + "3.18", + "3.37", + "3.21", + "3.16" + ] + } + }, + { + "name": "sulphates", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 78, + "unique_ratio": 0.019908, + "example_values": [ + "0.4", + "0.53", + "0.66", + "0.47", + "0.5" + ] + } + }, + { + "name": "alcohol", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 97, + "unique_ratio": 0.024758, + "example_values": [ + "9.6", + "9.7", + "11.7", + "13.4", + "8.8" + ] + } + }, + { + "name": "quality", + "role": "target", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 7, + "unique_ratio": 0.001787, + "example_values": [ + "5", + "6", + "7", + "8", + "3" + ] + } + } + ] +} \ No newline at end of file diff --git a/timecost/n3/tabdiff/tabdiff-n3-20260501_004446/runtime_result.json b/timecost/n3/tabdiff/tabdiff-n3-20260501_004446/runtime_result.json new file mode 100644 index 0000000000000000000000000000000000000000..de19d67e457148129dcad437509aeceba78c16d4 --- /dev/null +++ b/timecost/n3/tabdiff/tabdiff-n3-20260501_004446/runtime_result.json @@ -0,0 +1,27 @@ +{ + "dataset_id": "n3", + "model": "tabdiff", + "run_id": "tabdiff-n3-20260501_004446", + "public_gate_status": "pass", + "adapter_ready_status": "pass", + "train_status": "success", + "generate_status": "success", + "reason_code": null, + "reason_detail": null, + "artifacts": { + "synthetic_csv": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/n3/tabdiff/tabdiff-n3-20260501_004446/tabdiff-n3-3918-20260501_005103.csv", + "model_path": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/n3/tabdiff/tabdiff-n3-20260501_004446/models_tabdiff/trained.pt" + }, + "timings": { + "train": { + "started_at": "2026-05-01T00:44:46", + "ended_at": "2026-05-01T00:51:03", + "duration_sec": 376.984 + }, + "generate": { + "started_at": "2026-05-01T00:51:03", + "ended_at": "2026-05-01T00:51:13", + "duration_sec": 9.574 + } + } +} \ No newline at end of file diff --git a/timecost/n3/tabdiff/tabdiff-n3-20260501_004446/staged/public/staged_features.json b/timecost/n3/tabdiff/tabdiff-n3-20260501_004446/staged/public/staged_features.json new file mode 100644 index 0000000000000000000000000000000000000000..08fe4d766d091d2f2ddba724a16b9509cbe4c390 --- /dev/null +++ b/timecost/n3/tabdiff/tabdiff-n3-20260501_004446/staged/public/staged_features.json @@ -0,0 +1,62 @@ +[ + { + "feature_name": "fixed acidity", + "data_type": "continuous", + "is_target": false + }, + { + "feature_name": "volatile acidity", + "data_type": "continuous", + "is_target": false + }, + { + "feature_name": "citric acid", + "data_type": "continuous", + "is_target": false + }, + { + "feature_name": "residual sugar", + "data_type": "continuous", + "is_target": false + }, + { + "feature_name": "chlorides", + "data_type": "continuous", + "is_target": false + }, + { + "feature_name": "free sulfur dioxide", + "data_type": "continuous", + "is_target": false + }, + { + "feature_name": "total sulfur dioxide", + "data_type": "continuous", + "is_target": false + }, + { + "feature_name": "density", + "data_type": "continuous", + "is_target": false + }, + { + "feature_name": "pH", + "data_type": "continuous", + "is_target": false + }, + { + "feature_name": "sulphates", + "data_type": "continuous", + "is_target": false + }, + { + "feature_name": "alcohol", + "data_type": "continuous", + "is_target": false + }, + { + "feature_name": "quality", + "data_type": "continuous", + "is_target": true + } +] \ No newline at end of file diff --git a/timecost/n3/tabdiff/tabdiff-n3-20260501_004446/staged/public/test.csv b/timecost/n3/tabdiff/tabdiff-n3-20260501_004446/staged/public/test.csv new file mode 100644 index 0000000000000000000000000000000000000000..db5cd50d3746410ea470625fa2ba2c8e9775cc0d --- /dev/null +++ b/timecost/n3/tabdiff/tabdiff-n3-20260501_004446/staged/public/test.csv @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:19e107152a94432e2a37ff045c00cfe35e1be30208b1553080d7dd0ede256d3b +size 28944 diff --git a/timecost/n3/tabdiff/tabdiff-n3-20260501_004446/staged/public/train.csv b/timecost/n3/tabdiff/tabdiff-n3-20260501_004446/staged/public/train.csv new file mode 100644 index 0000000000000000000000000000000000000000..87ca26726fe82ccbaa397919305b043c17eb374e --- /dev/null +++ b/timecost/n3/tabdiff/tabdiff-n3-20260501_004446/staged/public/train.csv @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:7813c8cca73ba4bfc6559215257b341c21e459980ad17ae6ddc809306bc9a0b9 +size 229945 diff --git a/timecost/n3/tabdiff/tabdiff-n3-20260501_004446/staged/public/val.csv b/timecost/n3/tabdiff/tabdiff-n3-20260501_004446/staged/public/val.csv new file mode 100644 index 0000000000000000000000000000000000000000..6acf84c76c47093b513c46d5503972a2dff275c0 --- /dev/null +++ b/timecost/n3/tabdiff/tabdiff-n3-20260501_004446/staged/public/val.csv @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:cf5979d9675567d9d6642640c9b84fc6c49e492604144723c30f50516c05cee6 +size 28791 diff --git a/timecost/n3/tabdiff/tabdiff-n3-20260501_004446/staged/tabdiff/adapter_report.json b/timecost/n3/tabdiff/tabdiff-n3-20260501_004446/staged/tabdiff/adapter_report.json new file mode 100644 index 0000000000000000000000000000000000000000..46d642968aa71f0054376ac5928ba1a59c002701 --- /dev/null +++ b/timecost/n3/tabdiff/tabdiff-n3-20260501_004446/staged/tabdiff/adapter_report.json @@ -0,0 +1,7 @@ +{ + "adapter_ready_status": "pass", + "adapter_fail_reason_code": null, + "adapter_fail_detail": null, + "adapter_transforms_applied": [], + "model_input_manifest": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/n3/tabdiff/tabdiff-n3-20260501_004446/staged/tabdiff/model_input_manifest.json" +} \ No newline at end of file diff --git a/timecost/n3/tabdiff/tabdiff-n3-20260501_004446/staged/tabdiff/adapter_transforms_applied.json b/timecost/n3/tabdiff/tabdiff-n3-20260501_004446/staged/tabdiff/adapter_transforms_applied.json new file mode 100644 index 0000000000000000000000000000000000000000..0637a088a01e8ddab3bf3fa98dbe804cbde1a0dc --- /dev/null +++ b/timecost/n3/tabdiff/tabdiff-n3-20260501_004446/staged/tabdiff/adapter_transforms_applied.json @@ -0,0 +1 @@ +[] \ No newline at end of file diff --git a/timecost/n3/tabdiff/tabdiff-n3-20260501_004446/staged/tabdiff/model_input_manifest.json b/timecost/n3/tabdiff/tabdiff-n3-20260501_004446/staged/tabdiff/model_input_manifest.json new file mode 100644 index 0000000000000000000000000000000000000000..430f43770531de045f973efbd81ec1c338891782 --- /dev/null +++ b/timecost/n3/tabdiff/tabdiff-n3-20260501_004446/staged/tabdiff/model_input_manifest.json @@ -0,0 +1,266 @@ +{ + "dataset_id": "n3", + "model": "tabdiff", + "target_column": "quality", + "task_type": "classification", + "column_schema": [ + { + "name": "fixed acidity", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 66, + "unique_ratio": 0.016845, + "example_values": [ + "7.1", + "8.5", + "6.4", + "6.8", + "7.6" + ] + } + }, + { + "name": "volatile acidity", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 121, + "unique_ratio": 0.030883, + "example_values": [ + "0.31", + "0.21", + "0.24", + "0.43", + "0.27" + ] + } + }, + { + "name": "citric acid", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 85, + "unique_ratio": 0.021695, + "example_values": [ + "0.17", + "0.41", + "0.31", + "0.25", + "0.3" + ] + } + }, + { + "name": "residual sugar", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 296, + "unique_ratio": 0.075549, + "example_values": [ + "1", + "4.3", + "2.8", + "13", + "12.9" + ] + } + }, + { + "name": "chlorides", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 147, + "unique_ratio": 0.037519, + "example_values": [ + "0.042", + "0.036", + "0.038", + "0.047", + "0.033" + ] + } + }, + { + "name": "free sulfur dioxide", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 120, + "unique_ratio": 0.030628, + "example_values": [ + "21", + "24", + "41", + "43", + "69" + ] + } + }, + { + "name": "total sulfur dioxide", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 244, + "unique_ratio": 0.062277, + "example_values": [ + "144", + "99", + "114", + "132", + "160" + ] + } + }, + { + "name": "density", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 839, + "unique_ratio": 0.21414, + "example_values": [ + "0.99304", + "0.9947", + "0.99155", + "0.98975", + "0.99705" + ] + } + }, + { + "name": "pH", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 100, + "unique_ratio": 0.025523, + "example_values": [ + "3.13", + "3.18", + "3.37", + "3.21", + "3.16" + ] + } + }, + { + "name": "sulphates", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 78, + "unique_ratio": 0.019908, + "example_values": [ + "0.4", + "0.53", + "0.66", + "0.47", + "0.5" + ] + } + }, + { + "name": "alcohol", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 97, + "unique_ratio": 0.024758, + "example_values": [ + "9.6", + "9.7", + "11.7", + "13.4", + "8.8" + ] + } + }, + { + "name": "quality", + "role": "target", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 7, + "unique_ratio": 0.001787, + "example_values": [ + "5", + "6", + "7", + "8", + "3" + ] + } + } + ], + "public_manifest": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/n3/tabdiff/tabdiff-n3-20260501_004446/public_gate/staged_input_manifest.json", + "train_csv": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/n3/tabdiff/tabdiff-n3-20260501_004446/staged/public/train.csv", + "val_csv": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/n3/tabdiff/tabdiff-n3-20260501_004446/staged/public/val.csv", + "test_csv": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/n3/tabdiff/tabdiff-n3-20260501_004446/staged/public/test.csv", + "features_json": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/n3/tabdiff/tabdiff-n3-20260501_004446/staged/public/staged_features.json", + "public_gate_report": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/n3/tabdiff/tabdiff-n3-20260501_004446/public_gate/public_gate_report.json" +} \ No newline at end of file diff --git a/timecost/n3/tabdiff/tabdiff-n3-20260501_004446/tabdiff-n3-3918-20260501_005103.csv b/timecost/n3/tabdiff/tabdiff-n3-20260501_004446/tabdiff-n3-3918-20260501_005103.csv new file mode 100644 index 0000000000000000000000000000000000000000..ea08c0b4f8f0c50924e05c628c31ad46562ea86d --- /dev/null +++ b/timecost/n3/tabdiff/tabdiff-n3-20260501_004446/tabdiff-n3-3918-20260501_005103.csv @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:dc29d58b6452e3c592eabdce0f2cd016bae0097f2e3480481dc89072eb414ace +size 339570 diff --git a/timecost/n3/tabdiff/tabdiff-n3-20260501_004446/tabdiff_train_meta.json b/timecost/n3/tabdiff/tabdiff-n3-20260501_004446/tabdiff_train_meta.json new file mode 100644 index 0000000000000000000000000000000000000000..776600291d2635685d4b5209ba433eddf0330eb2 --- /dev/null +++ b/timecost/n3/tabdiff/tabdiff-n3-20260501_004446/tabdiff_train_meta.json @@ -0,0 +1,5 @@ +{ + "exp_name": "adapter_learnable", + "dataname": "pipeline_n3", + "steps": 500 +} \ No newline at end of file diff --git a/timecost/n3/tabdiff/tabdiff-n3-20260501_004446/tabular_bundle/pipeline_n3/X_cat_test.npy b/timecost/n3/tabdiff/tabdiff-n3-20260501_004446/tabular_bundle/pipeline_n3/X_cat_test.npy new file mode 100644 index 0000000000000000000000000000000000000000..76306e45faf838d072c21b887a4c1d43d486dc1b --- /dev/null +++ b/timecost/n3/tabdiff/tabdiff-n3-20260501_004446/tabular_bundle/pipeline_n3/X_cat_test.npy @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:87f6573fdfd40c6332a9ef925bcb48bc20f08b3a6f72b6dceb949ae36d1871f7 +size 128 diff --git a/timecost/n3/tabdiff/tabdiff-n3-20260501_004446/tabular_bundle/pipeline_n3/X_cat_train.npy b/timecost/n3/tabdiff/tabdiff-n3-20260501_004446/tabular_bundle/pipeline_n3/X_cat_train.npy new file mode 100644 index 0000000000000000000000000000000000000000..76306e45faf838d072c21b887a4c1d43d486dc1b --- /dev/null +++ b/timecost/n3/tabdiff/tabdiff-n3-20260501_004446/tabular_bundle/pipeline_n3/X_cat_train.npy @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:87f6573fdfd40c6332a9ef925bcb48bc20f08b3a6f72b6dceb949ae36d1871f7 +size 128 diff --git a/timecost/n3/tabdiff/tabdiff-n3-20260501_004446/tabular_bundle/pipeline_n3/X_cat_val.npy b/timecost/n3/tabdiff/tabdiff-n3-20260501_004446/tabular_bundle/pipeline_n3/X_cat_val.npy new file mode 100644 index 0000000000000000000000000000000000000000..76306e45faf838d072c21b887a4c1d43d486dc1b --- /dev/null +++ b/timecost/n3/tabdiff/tabdiff-n3-20260501_004446/tabular_bundle/pipeline_n3/X_cat_val.npy @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:87f6573fdfd40c6332a9ef925bcb48bc20f08b3a6f72b6dceb949ae36d1871f7 +size 128 diff --git a/timecost/n3/tabdiff/tabdiff-n3-20260501_004446/tabular_bundle/pipeline_n3/X_num_test.npy b/timecost/n3/tabdiff/tabdiff-n3-20260501_004446/tabular_bundle/pipeline_n3/X_num_test.npy new file mode 100644 index 0000000000000000000000000000000000000000..94beb8413ef55592710518365965f4cb503523ee --- /dev/null +++ b/timecost/n3/tabdiff/tabdiff-n3-20260501_004446/tabular_bundle/pipeline_n3/X_num_test.npy @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:093d8f405d764277d5a007953f25ab6466f0857f71f0d8f3c437463fb5bf240a +size 172520 diff --git a/timecost/n3/tabdiff/tabdiff-n3-20260501_004446/tabular_bundle/pipeline_n3/X_num_train.npy b/timecost/n3/tabdiff/tabdiff-n3-20260501_004446/tabular_bundle/pipeline_n3/X_num_train.npy new file mode 100644 index 0000000000000000000000000000000000000000..94beb8413ef55592710518365965f4cb503523ee --- /dev/null +++ b/timecost/n3/tabdiff/tabdiff-n3-20260501_004446/tabular_bundle/pipeline_n3/X_num_train.npy @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:093d8f405d764277d5a007953f25ab6466f0857f71f0d8f3c437463fb5bf240a +size 172520 diff --git a/timecost/n3/tabdiff/tabdiff-n3-20260501_004446/tabular_bundle/pipeline_n3/X_num_val.npy b/timecost/n3/tabdiff/tabdiff-n3-20260501_004446/tabular_bundle/pipeline_n3/X_num_val.npy new file mode 100644 index 0000000000000000000000000000000000000000..94beb8413ef55592710518365965f4cb503523ee --- /dev/null +++ b/timecost/n3/tabdiff/tabdiff-n3-20260501_004446/tabular_bundle/pipeline_n3/X_num_val.npy @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:093d8f405d764277d5a007953f25ab6466f0857f71f0d8f3c437463fb5bf240a +size 172520 diff --git a/timecost/n3/tabdiff/tabdiff-n3-20260501_004446/tabular_bundle/pipeline_n3/info.json b/timecost/n3/tabdiff/tabdiff-n3-20260501_004446/tabular_bundle/pipeline_n3/info.json new file mode 100644 index 0000000000000000000000000000000000000000..8b5f7b3a1a0c4ba2d967287826b9f5c5fd7619de --- /dev/null +++ b/timecost/n3/tabdiff/tabdiff-n3-20260501_004446/tabular_bundle/pipeline_n3/info.json @@ -0,0 +1,139 @@ +{ + "name": "pipeline_n3", + "task_type": "multiclass", + "n_num_features": 11, + "n_cat_features": 0, + "train_size": 3918, + "test_num": 3918, + "val_num": 3918, + "train_num": 3918, + "bundle_note": "val/test matrices are train copies (train-only policy; no real held-out rows).", + "num_col_idx": [ + 0, + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10 + ], + "cat_col_idx": [], + "target_col_idx": [ + 11 + ], + "column_names": [ + "fixed acidity", + "volatile acidity", + "citric acid", + "residual sugar", + "chlorides", + "free sulfur dioxide", + "total sulfur dioxide", + "density", + "pH", + "sulphates", + "alcohol", + "quality" + ], + "int_col_idx": [], + "int_columns": [], + "int_col_idx_wrt_num": [], + "metadata": { + "columns": { + "0": { + "sdtype": "numerical", + "computer_representation": "Float" + }, + "1": { + "sdtype": "numerical", + "computer_representation": "Float" + }, + "2": { + "sdtype": "numerical", + "computer_representation": "Float" + }, + "3": { + "sdtype": "numerical", + "computer_representation": "Float" + }, + "4": { + "sdtype": "numerical", + "computer_representation": "Float" + }, + "5": { + "sdtype": "numerical", + "computer_representation": "Float" + }, + "6": { + "sdtype": "numerical", + "computer_representation": "Float" + }, + "7": { + "sdtype": "numerical", + "computer_representation": "Float" + }, + "8": { + "sdtype": "numerical", + "computer_representation": "Float" + }, + "9": { + "sdtype": "numerical", + "computer_representation": "Float" + }, + "10": { + "sdtype": "numerical", + "computer_representation": "Float" + }, + "11": { + "sdtype": "categorical" + } + } + }, + "idx_mapping": { + "0": 0, + "1": 1, + "2": 2, + "3": 3, + "4": 4, + "5": 5, + "6": 6, + "7": 7, + "8": 8, + "9": 9, + "10": 10, + "11": 11 + }, + "inverse_idx_mapping": { + "0": 0, + "1": 1, + "2": 2, + "3": 3, + "4": 4, + "5": 5, + "6": 6, + "7": 7, + "8": 8, + "9": 9, + "10": 10, + "11": 11 + }, + "idx_name_mapping": { + "0": "fixed acidity", + "1": "volatile acidity", + "2": "citric acid", + "3": "residual sugar", + "4": "chlorides", + "5": "free sulfur dioxide", + "6": "total sulfur dioxide", + "7": "density", + "8": "pH", + "9": "sulphates", + "10": "alcohol", + "11": "quality" + }, + "n_classes": 7 +} \ No newline at end of file diff --git a/timecost/n3/tabdiff/tabdiff-n3-20260501_004446/tabular_bundle/pipeline_n3/real.csv b/timecost/n3/tabdiff/tabdiff-n3-20260501_004446/tabular_bundle/pipeline_n3/real.csv new file mode 100644 index 0000000000000000000000000000000000000000..b4297372e8b9b076d6c03efa023cbf23edee4f56 --- /dev/null +++ b/timecost/n3/tabdiff/tabdiff-n3-20260501_004446/tabular_bundle/pipeline_n3/real.csv @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:c80ba530c12c66a78530db5d98ead5f78fcdad2fe5eccccbc28d9649ceaa6023 +size 229825 diff --git a/timecost/n3/tabdiff/tabdiff-n3-20260501_004446/tabular_bundle/pipeline_n3/test.csv b/timecost/n3/tabdiff/tabdiff-n3-20260501_004446/tabular_bundle/pipeline_n3/test.csv new file mode 100644 index 0000000000000000000000000000000000000000..b4297372e8b9b076d6c03efa023cbf23edee4f56 --- /dev/null +++ b/timecost/n3/tabdiff/tabdiff-n3-20260501_004446/tabular_bundle/pipeline_n3/test.csv @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:c80ba530c12c66a78530db5d98ead5f78fcdad2fe5eccccbc28d9649ceaa6023 +size 229825 diff --git a/timecost/n3/tabdiff/tabdiff-n3-20260501_004446/tabular_bundle/pipeline_n3/val.csv b/timecost/n3/tabdiff/tabdiff-n3-20260501_004446/tabular_bundle/pipeline_n3/val.csv new file mode 100644 index 0000000000000000000000000000000000000000..b4297372e8b9b076d6c03efa023cbf23edee4f56 --- /dev/null +++ b/timecost/n3/tabdiff/tabdiff-n3-20260501_004446/tabular_bundle/pipeline_n3/val.csv @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:c80ba530c12c66a78530db5d98ead5f78fcdad2fe5eccccbc28d9649ceaa6023 +size 229825 diff --git a/timecost/n3/tabdiff/tabdiff-n3-20260501_004446/tabular_bundle/pipeline_n3/y_test.npy b/timecost/n3/tabdiff/tabdiff-n3-20260501_004446/tabular_bundle/pipeline_n3/y_test.npy new file mode 100644 index 0000000000000000000000000000000000000000..1f737a58cd26592130c3604aaa90044a451eb576 --- /dev/null +++ b/timecost/n3/tabdiff/tabdiff-n3-20260501_004446/tabular_bundle/pipeline_n3/y_test.npy @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:85ed37c52f0ea54dfd3a476dcfafff02d61e92783748e5ee9aadfad20578bcb1 +size 31472 diff --git a/timecost/n3/tabdiff/tabdiff-n3-20260501_004446/tabular_bundle/pipeline_n3/y_train.npy b/timecost/n3/tabdiff/tabdiff-n3-20260501_004446/tabular_bundle/pipeline_n3/y_train.npy new file mode 100644 index 0000000000000000000000000000000000000000..1f737a58cd26592130c3604aaa90044a451eb576 --- /dev/null +++ b/timecost/n3/tabdiff/tabdiff-n3-20260501_004446/tabular_bundle/pipeline_n3/y_train.npy @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:85ed37c52f0ea54dfd3a476dcfafff02d61e92783748e5ee9aadfad20578bcb1 +size 31472 diff --git a/timecost/n3/tabdiff/tabdiff-n3-20260501_004446/tabular_bundle/pipeline_n3/y_val.npy b/timecost/n3/tabdiff/tabdiff-n3-20260501_004446/tabular_bundle/pipeline_n3/y_val.npy new file mode 100644 index 0000000000000000000000000000000000000000..1f737a58cd26592130c3604aaa90044a451eb576 --- /dev/null +++ b/timecost/n3/tabdiff/tabdiff-n3-20260501_004446/tabular_bundle/pipeline_n3/y_val.npy @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:85ed37c52f0ea54dfd3a476dcfafff02d61e92783748e5ee9aadfad20578bcb1 +size 31472 diff --git a/timecost/n3/tabdiff/tabdiff-n3-20260501_004446/train_20260501_004446.log b/timecost/n3/tabdiff/tabdiff-n3-20260501_004446/train_20260501_004446.log new file mode 100644 index 0000000000000000000000000000000000000000..2b845bdab3501091d630a028f052c02dd4ce1b81 --- /dev/null +++ b/timecost/n3/tabdiff/tabdiff-n3-20260501_004446/train_20260501_004446.log @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:cc36ffc16d3a5a3628708bc1337e4733f6eefc2d2eda647495b92de7f796b63e +size 291235 diff --git a/timecost/n3/tabdiff/tabdiff-n3-20260501_175353/_tabdiff_gen.py b/timecost/n3/tabdiff/tabdiff-n3-20260501_175353/_tabdiff_gen.py new file mode 100644 index 0000000000000000000000000000000000000000..76f2f6d01190680e15e6db23b7eb4d5923a7b8c4 --- /dev/null +++ b/timecost/n3/tabdiff/tabdiff-n3-20260501_175353/_tabdiff_gen.py @@ -0,0 +1,36 @@ + +import os, shutil, subprocess, sys +td = r"/workspace/TabDiff" +name = r"pipeline_n3" +src = r"/work/output-Benchmark-trainonly-v1/n3/tabdiff/tabdiff-n3-20260501_175353/tabular_bundle/pipeline_n3" +dst_data = os.path.join(td, "data", name) +dst_syn = os.path.join(td, "synthetic", name) +shutil.rmtree(dst_data, ignore_errors=True) +shutil.copytree(src, dst_data) +os.makedirs(dst_syn, exist_ok=True) +for fn in ("real.csv", "test.csv", "val.csv"): + shutil.copy(os.path.join(src, fn), os.path.join(dst_syn, fn)) +os.chdir(td) +os.environ["PYTHONPATH"] = td + os.pathsep + os.environ.get("PYTHONPATH", "") +subprocess.check_call([ + sys.executable, "-m", "tabdiff.main", + "--dataname", name, "--mode", "test", "--gpu", "0", + "--no_wandb", "--exp_name", r"adapter_learnable", + "--ckpt_path", r"/workspace/TabDiff/tabdiff/ckpt/pipeline_n3/adapter_learnable/model_500.pt", + "--num_samples_to_generate", str(int(3918)), +]) +# test() 写入 tabdiff/result////samples.csv +import glob as g +base = os.path.join(td, "tabdiff", "result", name, r"adapter_learnable") +best = None +best_t = -1.0 +for root, _, files in os.walk(base): + if "samples.csv" in files: + p = os.path.join(root, "samples.csv") + t = os.path.getmtime(p) + if t > best_t: + best_t = t + best = p +if not best: + raise SystemExit("tabdiff: no samples.csv under " + base) +shutil.copy(best, r"/work/output-Benchmark-trainonly-v1/n3/tabdiff/tabdiff-n3-20260501_175353/tabdiff-n3-3918-20260501_175710.csv") diff --git a/timecost/n3/tabdiff/tabdiff-n3-20260501_175353/_tabdiff_train.py b/timecost/n3/tabdiff/tabdiff-n3-20260501_175353/_tabdiff_train.py new file mode 100644 index 0000000000000000000000000000000000000000..33f62823f0bbcc1bf529c511776922b9648c407f --- /dev/null +++ b/timecost/n3/tabdiff/tabdiff-n3-20260501_175353/_tabdiff_train.py @@ -0,0 +1,21 @@ + +import os, shutil, subprocess, sys +td = r"/workspace/TabDiff" +name = r"pipeline_n3" +src = r"/work/output-Benchmark-trainonly-v1/n3/tabdiff/tabdiff-n3-20260501_175353/tabular_bundle/pipeline_n3" +dst_data = os.path.join(td, "data", name) +dst_syn = os.path.join(td, "synthetic", name) +shutil.rmtree(dst_data, ignore_errors=True) +shutil.copytree(src, dst_data) +os.makedirs(dst_syn, exist_ok=True) +for fn in ("real.csv", "test.csv", "val.csv"): + shutil.copy(os.path.join(src, fn), os.path.join(dst_syn, fn)) +os.chdir(td) +os.environ["PYTHONPATH"] = td + os.pathsep + os.environ.get("PYTHONPATH", "") +os.environ["TABDIFF_SMOKE_STEPS"] = "500" +os.environ["TABDIFF_ADAPTER_TRAIN"] = "1" +subprocess.check_call([ + sys.executable, "-m", "tabdiff.main", + "--dataname", name, "--mode", "train", "--gpu", "0", + "--no_wandb", "--exp_name", r"adapter_learnable", +]) diff --git a/timecost/n3/tabdiff/tabdiff-n3-20260501_175353/gen_20260501_175710.log b/timecost/n3/tabdiff/tabdiff-n3-20260501_175353/gen_20260501_175710.log new file mode 100644 index 0000000000000000000000000000000000000000..f245c4a246c56e53c45acea4c78cd9188f904962 --- /dev/null +++ b/timecost/n3/tabdiff/tabdiff-n3-20260501_175353/gen_20260501_175710.log @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:3da9ef17a571d51a9b70d51526cf51996b7395611f280fe207f05ff9177a4626 +size 4621 diff --git a/timecost/n3/tabdiff/tabdiff-n3-20260501_175353/input_snapshot.json b/timecost/n3/tabdiff/tabdiff-n3-20260501_175353/input_snapshot.json new file mode 100644 index 0000000000000000000000000000000000000000..751cd5fa38e2fbd0a4680d9f58579382404e5586 --- /dev/null +++ b/timecost/n3/tabdiff/tabdiff-n3-20260501_175353/input_snapshot.json @@ -0,0 +1,36 @@ +{ + "dataset_id": "n3", + "model": "tabdiff", + "inputs": { + "train_csv": { + "path": "/data/jialinzhang/SynthesizePipeline-server/DatasetNew/n3/n3-train.csv", + "exists": true, + "size": 211519, + "sha256": "2160a06db2fea02adb0ebb79d8d853bd2544580be301e71f6e8deeb1489a9009" + }, + "val_csv": { + "path": "/data/jialinzhang/SynthesizePipeline-server/DatasetNew/n3/n3-val.csv", + "exists": true, + "size": 26499, + "sha256": "d5ccfee07dfa9e7bdee5bb87642b43828e09f74c6cc0266a3d19d9feaa83106e" + }, + "test_csv": { + "path": "/data/jialinzhang/SynthesizePipeline-server/DatasetNew/n3/n3-test.csv", + "exists": true, + "size": 26676, + "sha256": "6f83aacb0d1747b95e287352a7fff5d9d65a1c127b773852346c68485c4ede47" + }, + "profile_json": { + "path": "/data/jialinzhang/SynthesizePipeline-server/DatasetNew/artifacts/data_core/tabular/n3/n3-dataset_profile.json", + "exists": true, + "size": 5235, + "sha256": "23d2e5904a2ca90cbf8d6e3c75887681721e9b90cc705c31a680c11513d0c46f" + }, + "contract_json": { + "path": "/data/jialinzhang/SynthesizePipeline-server/DatasetNew/artifacts/data_core/tabular/n3/n3-dataset_contract_v1.json", + "exists": true, + "size": 6281, + "sha256": "c0cc56f5fe28e1b65927255c6e3c2b0e9479862c2ec6f2fea1664da36c9a3a09" + } + } +} \ No newline at end of file diff --git a/timecost/n3/tabdiff/tabdiff-n3-20260501_175353/models_tabdiff/trained.pt b/timecost/n3/tabdiff/tabdiff-n3-20260501_175353/models_tabdiff/trained.pt new file mode 100644 index 0000000000000000000000000000000000000000..bc319a55a9c7152a1137f968b6fa1c735125ad11 --- /dev/null +++ b/timecost/n3/tabdiff/tabdiff-n3-20260501_175353/models_tabdiff/trained.pt @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:306660b8aad4549267c68390b017e15ddb9bc06a02c80515eb72a97ae31a81eb +size 74 diff --git a/timecost/n3/tabdiff/tabdiff-n3-20260501_175353/public_gate/normalized_schema_snapshot.json b/timecost/n3/tabdiff/tabdiff-n3-20260501_175353/public_gate/normalized_schema_snapshot.json new file mode 100644 index 0000000000000000000000000000000000000000..c41fe304503de23190a02e6cbfafa35b3bf134d3 --- /dev/null +++ b/timecost/n3/tabdiff/tabdiff-n3-20260501_175353/public_gate/normalized_schema_snapshot.json @@ -0,0 +1,259 @@ +{ + "dataset_id": "n3", + "target_column": "quality", + "task_type": "classification", + "columns": [ + { + "name": "fixed acidity", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 66, + "unique_ratio": 0.016845, + "example_values": [ + "7.1", + "8.5", + "6.4", + "6.8", + "7.6" + ] + } + }, + { + "name": "volatile acidity", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 121, + "unique_ratio": 0.030883, + "example_values": [ + "0.31", + "0.21", + "0.24", + "0.43", + "0.27" + ] + } + }, + { + "name": "citric acid", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 85, + "unique_ratio": 0.021695, + "example_values": [ + "0.17", + "0.41", + "0.31", + "0.25", + "0.3" + ] + } + }, + { + "name": "residual sugar", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 296, + "unique_ratio": 0.075549, + "example_values": [ + "1", + "4.3", + "2.8", + "13", + "12.9" + ] + } + }, + { + "name": "chlorides", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 147, + "unique_ratio": 0.037519, + "example_values": [ + "0.042", + "0.036", + "0.038", + "0.047", + "0.033" + ] + } + }, + { + "name": "free sulfur dioxide", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 120, + "unique_ratio": 0.030628, + "example_values": [ + "21", + "24", + "41", + "43", + "69" + ] + } + }, + { + "name": "total sulfur dioxide", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 244, + "unique_ratio": 0.062277, + "example_values": [ + "144", + "99", + "114", + "132", + "160" + ] + } + }, + { + "name": "density", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 839, + "unique_ratio": 0.21414, + "example_values": [ + "0.99304", + "0.9947", + "0.99155", + "0.98975", + "0.99705" + ] + } + }, + { + "name": "pH", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 100, + "unique_ratio": 0.025523, + "example_values": [ + "3.13", + "3.18", + "3.37", + "3.21", + "3.16" + ] + } + }, + { + "name": "sulphates", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 78, + "unique_ratio": 0.019908, + "example_values": [ + "0.4", + "0.53", + "0.66", + "0.47", + "0.5" + ] + } + }, + { + "name": "alcohol", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 97, + "unique_ratio": 0.024758, + "example_values": [ + "9.6", + "9.7", + "11.7", + "13.4", + "8.8" + ] + } + }, + { + "name": "quality", + "role": "target", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 7, + "unique_ratio": 0.001787, + "example_values": [ + "5", + "6", + "7", + "8", + "3" + ] + } + } + ] +} \ No newline at end of file diff --git a/timecost/n3/tabdiff/tabdiff-n3-20260501_175353/public_gate/public_gate_report.json b/timecost/n3/tabdiff/tabdiff-n3-20260501_175353/public_gate/public_gate_report.json new file mode 100644 index 0000000000000000000000000000000000000000..93b97319f739e39079d6c6549fd2020f8a6dac25 --- /dev/null +++ b/timecost/n3/tabdiff/tabdiff-n3-20260501_175353/public_gate/public_gate_report.json @@ -0,0 +1,37 @@ +{ + "dataset_id": "n3", + "status": "pass", + "checks": [ + { + "check_id": "PG001_csv_parse_ok", + "status": "pass" + }, + { + "check_id": "PG002_split_header_consistent", + "status": "pass" + }, + { + "check_id": "PG003_profile_header_match", + "status": "pass" + }, + { + "check_id": "PG004_missing_token_normalized", + "status": "pass" + }, + { + "check_id": "PG005_semantic_type_validated", + "status": "pass" + }, + { + "check_id": "PG006_target_defined_and_valid", + "status": "pass" + } + ], + "target_column": "quality", + "task_type": "classification", + "input_splits": { + "train": "/data/jialinzhang/SynthesizePipeline-server/DatasetNew/n3/n3-train.csv", + "val": "/data/jialinzhang/SynthesizePipeline-server/DatasetNew/n3/n3-val.csv", + "test": "/data/jialinzhang/SynthesizePipeline-server/DatasetNew/n3/n3-test.csv" + } +} \ No newline at end of file diff --git a/timecost/n3/tabdiff/tabdiff-n3-20260501_175353/public_gate/staged_input_manifest.json b/timecost/n3/tabdiff/tabdiff-n3-20260501_175353/public_gate/staged_input_manifest.json new file mode 100644 index 0000000000000000000000000000000000000000..8c7db4f3efa23955553ed3ec5c0ae853324014ce --- /dev/null +++ b/timecost/n3/tabdiff/tabdiff-n3-20260501_175353/public_gate/staged_input_manifest.json @@ -0,0 +1,264 @@ +{ + "dataset_id": "n3", + "target_column": "quality", + "task_type": "classification", + "train_csv": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/n3/tabdiff/tabdiff-n3-20260501_175353/staged/public/train.csv", + "val_csv": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/n3/tabdiff/tabdiff-n3-20260501_175353/staged/public/val.csv", + "test_csv": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/n3/tabdiff/tabdiff-n3-20260501_175353/staged/public/test.csv", + "features_json": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/n3/tabdiff/tabdiff-n3-20260501_175353/staged/public/staged_features.json", + "public_gate_report": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/n3/tabdiff/tabdiff-n3-20260501_175353/public_gate/public_gate_report.json", + "column_schema": [ + { + "name": "fixed acidity", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 66, + "unique_ratio": 0.016845, + "example_values": [ + "7.1", + "8.5", + "6.4", + "6.8", + "7.6" + ] + } + }, + { + "name": "volatile acidity", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 121, + "unique_ratio": 0.030883, + "example_values": [ + "0.31", + "0.21", + "0.24", + "0.43", + "0.27" + ] + } + }, + { + "name": "citric acid", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 85, + "unique_ratio": 0.021695, + "example_values": [ + "0.17", + "0.41", + "0.31", + "0.25", + "0.3" + ] + } + }, + { + "name": "residual sugar", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 296, + "unique_ratio": 0.075549, + "example_values": [ + "1", + "4.3", + "2.8", + "13", + "12.9" + ] + } + }, + { + "name": "chlorides", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 147, + "unique_ratio": 0.037519, + "example_values": [ + "0.042", + "0.036", + "0.038", + "0.047", + "0.033" + ] + } + }, + { + "name": "free sulfur dioxide", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 120, + "unique_ratio": 0.030628, + "example_values": [ + "21", + "24", + "41", + "43", + "69" + ] + } + }, + { + "name": "total sulfur dioxide", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 244, + "unique_ratio": 0.062277, + "example_values": [ + "144", + "99", + "114", + "132", + "160" + ] + } + }, + { + "name": "density", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 839, + "unique_ratio": 0.21414, + "example_values": [ + "0.99304", + "0.9947", + "0.99155", + "0.98975", + "0.99705" + ] + } + }, + { + "name": "pH", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 100, + "unique_ratio": 0.025523, + "example_values": [ + "3.13", + "3.18", + "3.37", + "3.21", + "3.16" + ] + } + }, + { + "name": "sulphates", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 78, + "unique_ratio": 0.019908, + "example_values": [ + "0.4", + "0.53", + "0.66", + "0.47", + "0.5" + ] + } + }, + { + "name": "alcohol", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 97, + "unique_ratio": 0.024758, + "example_values": [ + "9.6", + "9.7", + "11.7", + "13.4", + "8.8" + ] + } + }, + { + "name": "quality", + "role": "target", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 7, + "unique_ratio": 0.001787, + "example_values": [ + "5", + "6", + "7", + "8", + "3" + ] + } + } + ] +} \ No newline at end of file diff --git a/timecost/n3/tabdiff/tabdiff-n3-20260501_175353/runtime_result.json b/timecost/n3/tabdiff/tabdiff-n3-20260501_175353/runtime_result.json new file mode 100644 index 0000000000000000000000000000000000000000..3e2102144b698ad7292595e03c8610cde36b1e61 --- /dev/null +++ b/timecost/n3/tabdiff/tabdiff-n3-20260501_175353/runtime_result.json @@ -0,0 +1,27 @@ +{ + "dataset_id": "n3", + "model": "tabdiff", + "run_id": "tabdiff-n3-20260501_175353", + "public_gate_status": "pass", + "adapter_ready_status": "pass", + "train_status": "success", + "generate_status": "success", + "reason_code": null, + "reason_detail": null, + "artifacts": { + "synthetic_csv": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/n3/tabdiff/tabdiff-n3-20260501_175353/tabdiff-n3-3918-20260501_175710.csv", + "model_path": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/n3/tabdiff/tabdiff-n3-20260501_175353/models_tabdiff/trained.pt" + }, + "timings": { + "train": { + "started_at": "2026-05-01T17:53:53", + "ended_at": "2026-05-01T17:57:10", + "duration_sec": 196.646 + }, + "generate": { + "started_at": "2026-05-01T17:57:10", + "ended_at": "2026-05-01T17:57:20", + "duration_sec": 10.731 + } + } +} \ No newline at end of file diff --git a/timecost/n3/tabdiff/tabdiff-n3-20260501_175353/staged/public/staged_features.json b/timecost/n3/tabdiff/tabdiff-n3-20260501_175353/staged/public/staged_features.json new file mode 100644 index 0000000000000000000000000000000000000000..08fe4d766d091d2f2ddba724a16b9509cbe4c390 --- /dev/null +++ b/timecost/n3/tabdiff/tabdiff-n3-20260501_175353/staged/public/staged_features.json @@ -0,0 +1,62 @@ +[ + { + "feature_name": "fixed acidity", + "data_type": "continuous", + "is_target": false + }, + { + "feature_name": "volatile acidity", + "data_type": "continuous", + "is_target": false + }, + { + "feature_name": "citric acid", + "data_type": "continuous", + "is_target": false + }, + { + "feature_name": "residual sugar", + "data_type": "continuous", + "is_target": false + }, + { + "feature_name": "chlorides", + "data_type": "continuous", + "is_target": false + }, + { + "feature_name": "free sulfur dioxide", + "data_type": "continuous", + "is_target": false + }, + { + "feature_name": "total sulfur dioxide", + "data_type": "continuous", + "is_target": false + }, + { + "feature_name": "density", + "data_type": "continuous", + "is_target": false + }, + { + "feature_name": "pH", + "data_type": "continuous", + "is_target": false + }, + { + "feature_name": "sulphates", + "data_type": "continuous", + "is_target": false + }, + { + "feature_name": "alcohol", + "data_type": "continuous", + "is_target": false + }, + { + "feature_name": "quality", + "data_type": "continuous", + "is_target": true + } +] \ No newline at end of file diff --git a/timecost/n3/tabdiff/tabdiff-n3-20260501_175353/staged/public/test.csv b/timecost/n3/tabdiff/tabdiff-n3-20260501_175353/staged/public/test.csv new file mode 100644 index 0000000000000000000000000000000000000000..db5cd50d3746410ea470625fa2ba2c8e9775cc0d --- /dev/null +++ b/timecost/n3/tabdiff/tabdiff-n3-20260501_175353/staged/public/test.csv @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:19e107152a94432e2a37ff045c00cfe35e1be30208b1553080d7dd0ede256d3b +size 28944 diff --git a/timecost/n3/tabdiff/tabdiff-n3-20260501_175353/staged/public/train.csv b/timecost/n3/tabdiff/tabdiff-n3-20260501_175353/staged/public/train.csv new file mode 100644 index 0000000000000000000000000000000000000000..87ca26726fe82ccbaa397919305b043c17eb374e --- /dev/null +++ b/timecost/n3/tabdiff/tabdiff-n3-20260501_175353/staged/public/train.csv @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:7813c8cca73ba4bfc6559215257b341c21e459980ad17ae6ddc809306bc9a0b9 +size 229945 diff --git a/timecost/n3/tabdiff/tabdiff-n3-20260501_175353/staged/public/val.csv b/timecost/n3/tabdiff/tabdiff-n3-20260501_175353/staged/public/val.csv new file mode 100644 index 0000000000000000000000000000000000000000..6acf84c76c47093b513c46d5503972a2dff275c0 --- /dev/null +++ b/timecost/n3/tabdiff/tabdiff-n3-20260501_175353/staged/public/val.csv @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:cf5979d9675567d9d6642640c9b84fc6c49e492604144723c30f50516c05cee6 +size 28791 diff --git a/timecost/n3/tabdiff/tabdiff-n3-20260501_175353/staged/tabdiff/adapter_report.json b/timecost/n3/tabdiff/tabdiff-n3-20260501_175353/staged/tabdiff/adapter_report.json new file mode 100644 index 0000000000000000000000000000000000000000..12611d80f30a6cf0e2afc6f3315dddf27614f3b8 --- /dev/null +++ b/timecost/n3/tabdiff/tabdiff-n3-20260501_175353/staged/tabdiff/adapter_report.json @@ -0,0 +1,7 @@ +{ + "adapter_ready_status": "pass", + "adapter_fail_reason_code": null, + "adapter_fail_detail": null, + "adapter_transforms_applied": [], + "model_input_manifest": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/n3/tabdiff/tabdiff-n3-20260501_175353/staged/tabdiff/model_input_manifest.json" +} \ No newline at end of file diff --git a/timecost/n3/tabdiff/tabdiff-n3-20260501_175353/staged/tabdiff/adapter_transforms_applied.json b/timecost/n3/tabdiff/tabdiff-n3-20260501_175353/staged/tabdiff/adapter_transforms_applied.json new file mode 100644 index 0000000000000000000000000000000000000000..0637a088a01e8ddab3bf3fa98dbe804cbde1a0dc --- /dev/null +++ b/timecost/n3/tabdiff/tabdiff-n3-20260501_175353/staged/tabdiff/adapter_transforms_applied.json @@ -0,0 +1 @@ +[] \ No newline at end of file diff --git a/timecost/n3/tabdiff/tabdiff-n3-20260501_175353/staged/tabdiff/model_input_manifest.json b/timecost/n3/tabdiff/tabdiff-n3-20260501_175353/staged/tabdiff/model_input_manifest.json new file mode 100644 index 0000000000000000000000000000000000000000..22553b34a077101eb9765816de3e21b51af47687 --- /dev/null +++ b/timecost/n3/tabdiff/tabdiff-n3-20260501_175353/staged/tabdiff/model_input_manifest.json @@ -0,0 +1,266 @@ +{ + "dataset_id": "n3", + "model": "tabdiff", + "target_column": "quality", + "task_type": "classification", + "column_schema": [ + { + "name": "fixed acidity", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 66, + "unique_ratio": 0.016845, + "example_values": [ + "7.1", + "8.5", + "6.4", + "6.8", + "7.6" + ] + } + }, + { + "name": "volatile acidity", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 121, + "unique_ratio": 0.030883, + "example_values": [ + "0.31", + "0.21", + "0.24", + "0.43", + "0.27" + ] + } + }, + { + "name": "citric acid", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 85, + "unique_ratio": 0.021695, + "example_values": [ + "0.17", + "0.41", + "0.31", + "0.25", + "0.3" + ] + } + }, + { + "name": "residual sugar", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 296, + "unique_ratio": 0.075549, + "example_values": [ + "1", + "4.3", + "2.8", + "13", + "12.9" + ] + } + }, + { + "name": "chlorides", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 147, + "unique_ratio": 0.037519, + "example_values": [ + "0.042", + "0.036", + "0.038", + "0.047", + "0.033" + ] + } + }, + { + "name": "free sulfur dioxide", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 120, + "unique_ratio": 0.030628, + "example_values": [ + "21", + "24", + "41", + "43", + "69" + ] + } + }, + { + "name": "total sulfur dioxide", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 244, + "unique_ratio": 0.062277, + "example_values": [ + "144", + "99", + "114", + "132", + "160" + ] + } + }, + { + "name": "density", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 839, + "unique_ratio": 0.21414, + "example_values": [ + "0.99304", + "0.9947", + "0.99155", + "0.98975", + "0.99705" + ] + } + }, + { + "name": "pH", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 100, + "unique_ratio": 0.025523, + "example_values": [ + "3.13", + "3.18", + "3.37", + "3.21", + "3.16" + ] + } + }, + { + "name": "sulphates", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 78, + "unique_ratio": 0.019908, + "example_values": [ + "0.4", + "0.53", + "0.66", + "0.47", + "0.5" + ] + } + }, + { + "name": "alcohol", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 97, + "unique_ratio": 0.024758, + "example_values": [ + "9.6", + "9.7", + "11.7", + "13.4", + "8.8" + ] + } + }, + { + "name": "quality", + "role": "target", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 7, + "unique_ratio": 0.001787, + "example_values": [ + "5", + "6", + "7", + "8", + "3" + ] + } + } + ], + "public_manifest": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/n3/tabdiff/tabdiff-n3-20260501_175353/public_gate/staged_input_manifest.json", + "train_csv": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/n3/tabdiff/tabdiff-n3-20260501_175353/staged/public/train.csv", + "val_csv": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/n3/tabdiff/tabdiff-n3-20260501_175353/staged/public/val.csv", + "test_csv": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/n3/tabdiff/tabdiff-n3-20260501_175353/staged/public/test.csv", + "features_json": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/n3/tabdiff/tabdiff-n3-20260501_175353/staged/public/staged_features.json", + "public_gate_report": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/n3/tabdiff/tabdiff-n3-20260501_175353/public_gate/public_gate_report.json" +} \ No newline at end of file diff --git a/timecost/n3/tabdiff/tabdiff-n3-20260501_175353/tabdiff-n3-3918-20260501_175710.csv b/timecost/n3/tabdiff/tabdiff-n3-20260501_175353/tabdiff-n3-3918-20260501_175710.csv new file mode 100644 index 0000000000000000000000000000000000000000..7ca8369bbebb005baf07521f92b64cefaf2d6b3c --- /dev/null +++ b/timecost/n3/tabdiff/tabdiff-n3-20260501_175353/tabdiff-n3-3918-20260501_175710.csv @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:0a497e9a2e19e98c2c5dfa1e72b86fbf06a13689026259826fe4968c803f11e3 +size 340954 diff --git a/timecost/n3/tabdiff/tabdiff-n3-20260501_175353/tabdiff_train_meta.json b/timecost/n3/tabdiff/tabdiff-n3-20260501_175353/tabdiff_train_meta.json new file mode 100644 index 0000000000000000000000000000000000000000..776600291d2635685d4b5209ba433eddf0330eb2 --- /dev/null +++ b/timecost/n3/tabdiff/tabdiff-n3-20260501_175353/tabdiff_train_meta.json @@ -0,0 +1,5 @@ +{ + "exp_name": "adapter_learnable", + "dataname": "pipeline_n3", + "steps": 500 +} \ No newline at end of file diff --git a/timecost/n3/tabdiff/tabdiff-n3-20260501_175353/tabular_bundle/pipeline_n3/X_cat_test.npy b/timecost/n3/tabdiff/tabdiff-n3-20260501_175353/tabular_bundle/pipeline_n3/X_cat_test.npy new file mode 100644 index 0000000000000000000000000000000000000000..76306e45faf838d072c21b887a4c1d43d486dc1b --- /dev/null +++ b/timecost/n3/tabdiff/tabdiff-n3-20260501_175353/tabular_bundle/pipeline_n3/X_cat_test.npy @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:87f6573fdfd40c6332a9ef925bcb48bc20f08b3a6f72b6dceb949ae36d1871f7 +size 128 diff --git a/timecost/n3/tabdiff/tabdiff-n3-20260501_175353/tabular_bundle/pipeline_n3/X_cat_train.npy b/timecost/n3/tabdiff/tabdiff-n3-20260501_175353/tabular_bundle/pipeline_n3/X_cat_train.npy new file mode 100644 index 0000000000000000000000000000000000000000..76306e45faf838d072c21b887a4c1d43d486dc1b --- /dev/null +++ b/timecost/n3/tabdiff/tabdiff-n3-20260501_175353/tabular_bundle/pipeline_n3/X_cat_train.npy @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:87f6573fdfd40c6332a9ef925bcb48bc20f08b3a6f72b6dceb949ae36d1871f7 +size 128 diff --git a/timecost/n3/tabdiff/tabdiff-n3-20260501_175353/tabular_bundle/pipeline_n3/X_cat_val.npy b/timecost/n3/tabdiff/tabdiff-n3-20260501_175353/tabular_bundle/pipeline_n3/X_cat_val.npy new file mode 100644 index 0000000000000000000000000000000000000000..76306e45faf838d072c21b887a4c1d43d486dc1b --- /dev/null +++ b/timecost/n3/tabdiff/tabdiff-n3-20260501_175353/tabular_bundle/pipeline_n3/X_cat_val.npy @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:87f6573fdfd40c6332a9ef925bcb48bc20f08b3a6f72b6dceb949ae36d1871f7 +size 128 diff --git a/timecost/n3/tabdiff/tabdiff-n3-20260501_175353/tabular_bundle/pipeline_n3/X_num_test.npy b/timecost/n3/tabdiff/tabdiff-n3-20260501_175353/tabular_bundle/pipeline_n3/X_num_test.npy new file mode 100644 index 0000000000000000000000000000000000000000..94beb8413ef55592710518365965f4cb503523ee --- /dev/null +++ b/timecost/n3/tabdiff/tabdiff-n3-20260501_175353/tabular_bundle/pipeline_n3/X_num_test.npy @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:093d8f405d764277d5a007953f25ab6466f0857f71f0d8f3c437463fb5bf240a +size 172520 diff --git a/timecost/n3/tabdiff/tabdiff-n3-20260501_175353/tabular_bundle/pipeline_n3/X_num_train.npy b/timecost/n3/tabdiff/tabdiff-n3-20260501_175353/tabular_bundle/pipeline_n3/X_num_train.npy new file mode 100644 index 0000000000000000000000000000000000000000..94beb8413ef55592710518365965f4cb503523ee --- /dev/null +++ b/timecost/n3/tabdiff/tabdiff-n3-20260501_175353/tabular_bundle/pipeline_n3/X_num_train.npy @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:093d8f405d764277d5a007953f25ab6466f0857f71f0d8f3c437463fb5bf240a +size 172520 diff --git a/timecost/n3/tabdiff/tabdiff-n3-20260501_175353/tabular_bundle/pipeline_n3/X_num_val.npy b/timecost/n3/tabdiff/tabdiff-n3-20260501_175353/tabular_bundle/pipeline_n3/X_num_val.npy new file mode 100644 index 0000000000000000000000000000000000000000..94beb8413ef55592710518365965f4cb503523ee --- /dev/null +++ b/timecost/n3/tabdiff/tabdiff-n3-20260501_175353/tabular_bundle/pipeline_n3/X_num_val.npy @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:093d8f405d764277d5a007953f25ab6466f0857f71f0d8f3c437463fb5bf240a +size 172520 diff --git a/timecost/n3/tabdiff/tabdiff-n3-20260501_175353/tabular_bundle/pipeline_n3/info.json b/timecost/n3/tabdiff/tabdiff-n3-20260501_175353/tabular_bundle/pipeline_n3/info.json new file mode 100644 index 0000000000000000000000000000000000000000..8b5f7b3a1a0c4ba2d967287826b9f5c5fd7619de --- /dev/null +++ b/timecost/n3/tabdiff/tabdiff-n3-20260501_175353/tabular_bundle/pipeline_n3/info.json @@ -0,0 +1,139 @@ +{ + "name": "pipeline_n3", + "task_type": "multiclass", + "n_num_features": 11, + "n_cat_features": 0, + "train_size": 3918, + "test_num": 3918, + "val_num": 3918, + "train_num": 3918, + "bundle_note": "val/test matrices are train copies (train-only policy; no real held-out rows).", + "num_col_idx": [ + 0, + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10 + ], + "cat_col_idx": [], + "target_col_idx": [ + 11 + ], + "column_names": [ + "fixed acidity", + "volatile acidity", + "citric acid", + "residual sugar", + "chlorides", + "free sulfur dioxide", + "total sulfur dioxide", + "density", + "pH", + "sulphates", + "alcohol", + "quality" + ], + "int_col_idx": [], + "int_columns": [], + "int_col_idx_wrt_num": [], + "metadata": { + "columns": { + "0": { + "sdtype": "numerical", + "computer_representation": "Float" + }, + "1": { + "sdtype": "numerical", + "computer_representation": "Float" + }, + "2": { + "sdtype": "numerical", + "computer_representation": "Float" + }, + "3": { + "sdtype": "numerical", + "computer_representation": "Float" + }, + "4": { + "sdtype": "numerical", + "computer_representation": "Float" + }, + "5": { + "sdtype": "numerical", + "computer_representation": "Float" + }, + "6": { + "sdtype": "numerical", + "computer_representation": "Float" + }, + "7": { + "sdtype": "numerical", + "computer_representation": "Float" + }, + "8": { + "sdtype": "numerical", + "computer_representation": "Float" + }, + "9": { + "sdtype": "numerical", + "computer_representation": "Float" + }, + "10": { + "sdtype": "numerical", + "computer_representation": "Float" + }, + "11": { + "sdtype": "categorical" + } + } + }, + "idx_mapping": { + "0": 0, + "1": 1, + "2": 2, + "3": 3, + "4": 4, + "5": 5, + "6": 6, + "7": 7, + "8": 8, + "9": 9, + "10": 10, + "11": 11 + }, + "inverse_idx_mapping": { + "0": 0, + "1": 1, + "2": 2, + "3": 3, + "4": 4, + "5": 5, + "6": 6, + "7": 7, + "8": 8, + "9": 9, + "10": 10, + "11": 11 + }, + "idx_name_mapping": { + "0": "fixed acidity", + "1": "volatile acidity", + "2": "citric acid", + "3": "residual sugar", + "4": "chlorides", + "5": "free sulfur dioxide", + "6": "total sulfur dioxide", + "7": "density", + "8": "pH", + "9": "sulphates", + "10": "alcohol", + "11": "quality" + }, + "n_classes": 7 +} \ No newline at end of file diff --git a/timecost/n3/tabdiff/tabdiff-n3-20260501_175353/tabular_bundle/pipeline_n3/real.csv b/timecost/n3/tabdiff/tabdiff-n3-20260501_175353/tabular_bundle/pipeline_n3/real.csv new file mode 100644 index 0000000000000000000000000000000000000000..b4297372e8b9b076d6c03efa023cbf23edee4f56 --- /dev/null +++ b/timecost/n3/tabdiff/tabdiff-n3-20260501_175353/tabular_bundle/pipeline_n3/real.csv @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:c80ba530c12c66a78530db5d98ead5f78fcdad2fe5eccccbc28d9649ceaa6023 +size 229825 diff --git a/timecost/n3/tabdiff/tabdiff-n3-20260501_175353/tabular_bundle/pipeline_n3/test.csv b/timecost/n3/tabdiff/tabdiff-n3-20260501_175353/tabular_bundle/pipeline_n3/test.csv new file mode 100644 index 0000000000000000000000000000000000000000..b4297372e8b9b076d6c03efa023cbf23edee4f56 --- /dev/null +++ b/timecost/n3/tabdiff/tabdiff-n3-20260501_175353/tabular_bundle/pipeline_n3/test.csv @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:c80ba530c12c66a78530db5d98ead5f78fcdad2fe5eccccbc28d9649ceaa6023 +size 229825 diff --git a/timecost/n3/tabdiff/tabdiff-n3-20260501_175353/tabular_bundle/pipeline_n3/val.csv b/timecost/n3/tabdiff/tabdiff-n3-20260501_175353/tabular_bundle/pipeline_n3/val.csv new file mode 100644 index 0000000000000000000000000000000000000000..b4297372e8b9b076d6c03efa023cbf23edee4f56 --- /dev/null +++ b/timecost/n3/tabdiff/tabdiff-n3-20260501_175353/tabular_bundle/pipeline_n3/val.csv @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:c80ba530c12c66a78530db5d98ead5f78fcdad2fe5eccccbc28d9649ceaa6023 +size 229825 diff --git a/timecost/n3/tabdiff/tabdiff-n3-20260501_175353/tabular_bundle/pipeline_n3/y_test.npy b/timecost/n3/tabdiff/tabdiff-n3-20260501_175353/tabular_bundle/pipeline_n3/y_test.npy new file mode 100644 index 0000000000000000000000000000000000000000..1f737a58cd26592130c3604aaa90044a451eb576 --- /dev/null +++ b/timecost/n3/tabdiff/tabdiff-n3-20260501_175353/tabular_bundle/pipeline_n3/y_test.npy @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:85ed37c52f0ea54dfd3a476dcfafff02d61e92783748e5ee9aadfad20578bcb1 +size 31472 diff --git a/timecost/n3/tabdiff/tabdiff-n3-20260501_175353/tabular_bundle/pipeline_n3/y_train.npy b/timecost/n3/tabdiff/tabdiff-n3-20260501_175353/tabular_bundle/pipeline_n3/y_train.npy new file mode 100644 index 0000000000000000000000000000000000000000..1f737a58cd26592130c3604aaa90044a451eb576 --- /dev/null +++ b/timecost/n3/tabdiff/tabdiff-n3-20260501_175353/tabular_bundle/pipeline_n3/y_train.npy @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:85ed37c52f0ea54dfd3a476dcfafff02d61e92783748e5ee9aadfad20578bcb1 +size 31472 diff --git a/timecost/n3/tabdiff/tabdiff-n3-20260501_175353/tabular_bundle/pipeline_n3/y_val.npy b/timecost/n3/tabdiff/tabdiff-n3-20260501_175353/tabular_bundle/pipeline_n3/y_val.npy new file mode 100644 index 0000000000000000000000000000000000000000..1f737a58cd26592130c3604aaa90044a451eb576 --- /dev/null +++ b/timecost/n3/tabdiff/tabdiff-n3-20260501_175353/tabular_bundle/pipeline_n3/y_val.npy @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:85ed37c52f0ea54dfd3a476dcfafff02d61e92783748e5ee9aadfad20578bcb1 +size 31472 diff --git a/timecost/n3/tabdiff/tabdiff-n3-20260501_175353/train_20260501_175353.log b/timecost/n3/tabdiff/tabdiff-n3-20260501_175353/train_20260501_175353.log new file mode 100644 index 0000000000000000000000000000000000000000..df10c37193a38e053d07c80622b7227d4213517f --- /dev/null +++ b/timecost/n3/tabdiff/tabdiff-n3-20260501_175353/train_20260501_175353.log @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:6437c04a0e9bf2dc8ef1f75a52cdb0a0418c32ce3ad26deb0563e9e04a803e9b +size 292871 diff --git a/timecost/n3/tabpfgen/tabpfgen-n3-20260501_005212/_tabpfgen_generate.py b/timecost/n3/tabpfgen/tabpfgen-n3-20260501_005212/_tabpfgen_generate.py new file mode 100644 index 0000000000000000000000000000000000000000..c8ade1fa83cb3e83789abaa5dd376381b18ae5df --- /dev/null +++ b/timecost/n3/tabpfgen/tabpfgen-n3-20260501_005212/_tabpfgen_generate.py @@ -0,0 +1,100 @@ +import os +import numpy as np +import pandas as pd +import json +from tabpfgen import TabPFGen + +df = pd.read_csv("/work/output-Benchmark-trainonly-v1/n3/tabpfgen/tabpfgen-n3-20260501_005212/staged/public/train.csv") +target_col = "quality" + +target_missing = df[target_col].isna() +if target_missing.any(): + dropped = int(target_missing.sum()) + df = df.loc[~target_missing].copy() + print( + f"[TabPFGen] Dropped {dropped} rows with missing target '{target_col}'" + ) +if df.empty: + raise ValueError( + f"[TabPFGen] No rows remain after dropping missing target '{target_col}'" + ) + +feature_cols = [c for c in df.columns if c != target_col] + +cat_encodings = {} +for col in feature_cols: + if df[col].dtype == object or str(df[col].dtype) == 'category': + cats = sorted(df[col].dropna().unique().tolist(), key=str) + cat_map = {v: i for i, v in enumerate(cats)} + df[col] = df[col].map(cat_map).astype(float) + cat_encodings[col] = cats + print(f"[TabPFGen] Label-encoded '{col}' ({len(cats)} categories)") + +target_cats = None +if df[target_col].dtype == object or str(df[target_col].dtype) == 'category': + cats = sorted(df[target_col].dropna().unique().tolist(), key=str) + t_map = {v: i for i, v in enumerate(cats)} + df[target_col] = df[target_col].map(t_map).astype(float) + target_cats = cats + print(f"[TabPFGen] Label-encoded target '{target_col}' ({len(cats)} categories)") + +X = df[feature_cols].values.astype(np.float32) +y = df[target_col].values +target_n = int(3918) + +for i in range(X.shape[1]): + col_vals = X[:, i] + mask = np.isnan(col_vals) + if mask.any(): + mean_val = np.nanmean(col_vals) + X[mask, i] = mean_val if not np.isnan(mean_val) else 0.0 + +# TabPFGen v0.1.x API:仅支持 n_sgld_steps / sgld_* / device。 +# (旧版脚本中的 energy_*_chunk 与上游 TabPFGen 不一致,会导致 TypeError。) +gen = TabPFGen( + n_sgld_steps=1000, + sgld_step_size=0.01, + sgld_noise_scale=0.01, + device="auto", +) + +print(f"[TabPFGen] Generating {target_n} rows via generate_classification") +X_syn, y_syn = gen.generate_classification(X, y, n_samples=target_n) + +syn_df = pd.DataFrame(X_syn, columns=feature_cols) +syn_df[target_col] = y_syn + +for col, cats in cat_encodings.items(): + codes = np.round(syn_df[col].values).astype(int) + codes = np.clip(codes, 0, len(cats) - 1) + syn_df[col] = [cats[c] for c in codes] + +if target_cats is not None: + codes = np.round(syn_df[target_col].values).astype(int) + codes = np.clip(codes, 0, len(target_cats) - 1) + syn_df[target_col] = [target_cats[c] for c in codes] + +if len(syn_df) > target_n: + print(f"[TabPFGen] Trimming rows: {len(syn_df)} -> {target_n}") + syn_df = syn_df.iloc[:target_n].copy() +elif len(syn_df) < target_n: + deficit = target_n - len(syn_df) + print(f"[TabPFGen] Padding rows: {len(syn_df)} -> {target_n} (deficit={deficit})") + if len(syn_df) > 0: + extra = syn_df.sample(n=deficit, replace=True, random_state=42) + syn_df = pd.concat( + [syn_df.reset_index(drop=True), extra.reset_index(drop=True)], + ignore_index=True, + ) + else: + syn_df = df[feature_cols + [target_col]].sample( + n=target_n, replace=True, random_state=42 + ).reset_index(drop=True) + +syn_df = syn_df[list(df.columns)] +if len(syn_df) != target_n: + raise RuntimeError( + f"[TabPFGen] Row alignment failed: got {len(syn_df)}, expected {target_n}" + ) +syn_df.to_csv("/work/output-Benchmark-trainonly-v1/n3/tabpfgen/tabpfgen-n3-20260501_005212/tabpfgen-n3-3918-20260501_005212.csv", index=False) +print(f"[TabPFGen] Saved {len(syn_df)} rows -> /work/output-Benchmark-trainonly-v1/n3/tabpfgen/tabpfgen-n3-20260501_005212/tabpfgen-n3-3918-20260501_005212.csv") diff --git a/timecost/n3/tabpfgen/tabpfgen-n3-20260501_005212/gen_20260501_005212.log b/timecost/n3/tabpfgen/tabpfgen-n3-20260501_005212/gen_20260501_005212.log new file mode 100644 index 0000000000000000000000000000000000000000..349d4af44544d58c87db4e1cf03ceb3b413eacc5 --- /dev/null +++ b/timecost/n3/tabpfgen/tabpfgen-n3-20260501_005212/gen_20260501_005212.log @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:7f4428b3af4adbadd1e3897c129553b24bcd222d974b2b4f43ef62d9432317e1 +size 949 diff --git a/timecost/n3/tabpfgen/tabpfgen-n3-20260501_005212/input_snapshot.json b/timecost/n3/tabpfgen/tabpfgen-n3-20260501_005212/input_snapshot.json new file mode 100644 index 0000000000000000000000000000000000000000..2df53dbad689923eb0692c0029f1d32d625f8ce4 --- /dev/null +++ b/timecost/n3/tabpfgen/tabpfgen-n3-20260501_005212/input_snapshot.json @@ -0,0 +1,36 @@ +{ + "dataset_id": "n3", + "model": "tabpfgen", + "inputs": { + "train_csv": { + "path": "/data/jialinzhang/SynthesizePipeline-server/DatasetNew/n3/n3-train.csv", + "exists": true, + "size": 211519, + "sha256": "2160a06db2fea02adb0ebb79d8d853bd2544580be301e71f6e8deeb1489a9009" + }, + "val_csv": { + "path": "/data/jialinzhang/SynthesizePipeline-server/DatasetNew/n3/n3-val.csv", + "exists": true, + "size": 26499, + "sha256": "d5ccfee07dfa9e7bdee5bb87642b43828e09f74c6cc0266a3d19d9feaa83106e" + }, + "test_csv": { + "path": "/data/jialinzhang/SynthesizePipeline-server/DatasetNew/n3/n3-test.csv", + "exists": true, + "size": 26676, + "sha256": "6f83aacb0d1747b95e287352a7fff5d9d65a1c127b773852346c68485c4ede47" + }, + "profile_json": { + "path": "/data/jialinzhang/SynthesizePipeline-server/DatasetNew/artifacts/data_core/tabular/n3/n3-dataset_profile.json", + "exists": true, + "size": 5235, + "sha256": "23d2e5904a2ca90cbf8d6e3c75887681721e9b90cc705c31a680c11513d0c46f" + }, + "contract_json": { + "path": "/data/jialinzhang/SynthesizePipeline-server/DatasetNew/artifacts/data_core/tabular/n3/n3-dataset_contract_v1.json", + "exists": true, + "size": 6281, + "sha256": "c0cc56f5fe28e1b65927255c6e3c2b0e9479862c2ec6f2fea1664da36c9a3a09" + } + } +} \ No newline at end of file diff --git a/timecost/n3/tabpfgen/tabpfgen-n3-20260501_005212/public_gate/normalized_schema_snapshot.json b/timecost/n3/tabpfgen/tabpfgen-n3-20260501_005212/public_gate/normalized_schema_snapshot.json new file mode 100644 index 0000000000000000000000000000000000000000..c41fe304503de23190a02e6cbfafa35b3bf134d3 --- /dev/null +++ b/timecost/n3/tabpfgen/tabpfgen-n3-20260501_005212/public_gate/normalized_schema_snapshot.json @@ -0,0 +1,259 @@ +{ + "dataset_id": "n3", + "target_column": "quality", + "task_type": "classification", + "columns": [ + { + "name": "fixed acidity", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 66, + "unique_ratio": 0.016845, + "example_values": [ + "7.1", + "8.5", + "6.4", + "6.8", + "7.6" + ] + } + }, + { + "name": "volatile acidity", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 121, + "unique_ratio": 0.030883, + "example_values": [ + "0.31", + "0.21", + "0.24", + "0.43", + "0.27" + ] + } + }, + { + "name": "citric acid", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 85, + "unique_ratio": 0.021695, + "example_values": [ + "0.17", + "0.41", + "0.31", + "0.25", + "0.3" + ] + } + }, + { + "name": "residual sugar", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 296, + "unique_ratio": 0.075549, + "example_values": [ + "1", + "4.3", + "2.8", + "13", + "12.9" + ] + } + }, + { + "name": "chlorides", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 147, + "unique_ratio": 0.037519, + "example_values": [ + "0.042", + "0.036", + "0.038", + "0.047", + "0.033" + ] + } + }, + { + "name": "free sulfur dioxide", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 120, + "unique_ratio": 0.030628, + "example_values": [ + "21", + "24", + "41", + "43", + "69" + ] + } + }, + { + "name": "total sulfur dioxide", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 244, + "unique_ratio": 0.062277, + "example_values": [ + "144", + "99", + "114", + "132", + "160" + ] + } + }, + { + "name": "density", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 839, + "unique_ratio": 0.21414, + "example_values": [ + "0.99304", + "0.9947", + "0.99155", + "0.98975", + "0.99705" + ] + } + }, + { + "name": "pH", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 100, + "unique_ratio": 0.025523, + "example_values": [ + "3.13", + "3.18", + "3.37", + "3.21", + "3.16" + ] + } + }, + { + "name": "sulphates", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 78, + "unique_ratio": 0.019908, + "example_values": [ + "0.4", + "0.53", + "0.66", + "0.47", + "0.5" + ] + } + }, + { + "name": "alcohol", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 97, + "unique_ratio": 0.024758, + "example_values": [ + "9.6", + "9.7", + "11.7", + "13.4", + "8.8" + ] + } + }, + { + "name": "quality", + "role": "target", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 7, + "unique_ratio": 0.001787, + "example_values": [ + "5", + "6", + "7", + "8", + "3" + ] + } + } + ] +} \ No newline at end of file diff --git a/timecost/n3/tabpfgen/tabpfgen-n3-20260501_005212/public_gate/public_gate_report.json b/timecost/n3/tabpfgen/tabpfgen-n3-20260501_005212/public_gate/public_gate_report.json new file mode 100644 index 0000000000000000000000000000000000000000..93b97319f739e39079d6c6549fd2020f8a6dac25 --- /dev/null +++ b/timecost/n3/tabpfgen/tabpfgen-n3-20260501_005212/public_gate/public_gate_report.json @@ -0,0 +1,37 @@ +{ + "dataset_id": "n3", + "status": "pass", + "checks": [ + { + "check_id": "PG001_csv_parse_ok", + "status": "pass" + }, + { + "check_id": "PG002_split_header_consistent", + "status": "pass" + }, + { + "check_id": "PG003_profile_header_match", + "status": "pass" + }, + { + "check_id": "PG004_missing_token_normalized", + "status": "pass" + }, + { + "check_id": "PG005_semantic_type_validated", + "status": "pass" + }, + { + "check_id": "PG006_target_defined_and_valid", + "status": "pass" + } + ], + "target_column": "quality", + "task_type": "classification", + "input_splits": { + "train": "/data/jialinzhang/SynthesizePipeline-server/DatasetNew/n3/n3-train.csv", + "val": "/data/jialinzhang/SynthesizePipeline-server/DatasetNew/n3/n3-val.csv", + "test": "/data/jialinzhang/SynthesizePipeline-server/DatasetNew/n3/n3-test.csv" + } +} \ No newline at end of file diff --git a/timecost/n3/tabpfgen/tabpfgen-n3-20260501_005212/public_gate/staged_input_manifest.json b/timecost/n3/tabpfgen/tabpfgen-n3-20260501_005212/public_gate/staged_input_manifest.json new file mode 100644 index 0000000000000000000000000000000000000000..4d16af30bb8d718cd63e253f3b6b3ef0e8bad2cc --- /dev/null +++ b/timecost/n3/tabpfgen/tabpfgen-n3-20260501_005212/public_gate/staged_input_manifest.json @@ -0,0 +1,264 @@ +{ + "dataset_id": "n3", + "target_column": "quality", + "task_type": "classification", + "train_csv": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/n3/tabpfgen/tabpfgen-n3-20260501_005212/staged/public/train.csv", + "val_csv": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/n3/tabpfgen/tabpfgen-n3-20260501_005212/staged/public/val.csv", + "test_csv": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/n3/tabpfgen/tabpfgen-n3-20260501_005212/staged/public/test.csv", + "features_json": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/n3/tabpfgen/tabpfgen-n3-20260501_005212/staged/public/staged_features.json", + "public_gate_report": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/n3/tabpfgen/tabpfgen-n3-20260501_005212/public_gate/public_gate_report.json", + "column_schema": [ + { + "name": "fixed acidity", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 66, + "unique_ratio": 0.016845, + "example_values": [ + "7.1", + "8.5", + "6.4", + "6.8", + "7.6" + ] + } + }, + { + "name": "volatile acidity", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 121, + "unique_ratio": 0.030883, + "example_values": [ + "0.31", + "0.21", + "0.24", + "0.43", + "0.27" + ] + } + }, + { + "name": "citric acid", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 85, + "unique_ratio": 0.021695, + "example_values": [ + "0.17", + "0.41", + "0.31", + "0.25", + "0.3" + ] + } + }, + { + "name": "residual sugar", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 296, + "unique_ratio": 0.075549, + "example_values": [ + "1", + "4.3", + "2.8", + "13", + "12.9" + ] + } + }, + { + "name": "chlorides", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 147, + "unique_ratio": 0.037519, + "example_values": [ + "0.042", + "0.036", + "0.038", + "0.047", + "0.033" + ] + } + }, + { + "name": "free sulfur dioxide", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 120, + "unique_ratio": 0.030628, + "example_values": [ + "21", + "24", + "41", + "43", + "69" + ] + } + }, + { + "name": "total sulfur dioxide", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 244, + "unique_ratio": 0.062277, + "example_values": [ + "144", + "99", + "114", + "132", + "160" + ] + } + }, + { + "name": "density", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 839, + "unique_ratio": 0.21414, + "example_values": [ + "0.99304", + "0.9947", + "0.99155", + "0.98975", + "0.99705" + ] + } + }, + { + "name": "pH", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 100, + "unique_ratio": 0.025523, + "example_values": [ + "3.13", + "3.18", + "3.37", + "3.21", + "3.16" + ] + } + }, + { + "name": "sulphates", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 78, + "unique_ratio": 0.019908, + "example_values": [ + "0.4", + "0.53", + "0.66", + "0.47", + "0.5" + ] + } + }, + { + "name": "alcohol", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 97, + "unique_ratio": 0.024758, + "example_values": [ + "9.6", + "9.7", + "11.7", + "13.4", + "8.8" + ] + } + }, + { + "name": "quality", + "role": "target", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 7, + "unique_ratio": 0.001787, + "example_values": [ + "5", + "6", + "7", + "8", + "3" + ] + } + } + ] +} \ No newline at end of file diff --git a/timecost/n3/tabpfgen/tabpfgen-n3-20260501_005212/runtime_result.json b/timecost/n3/tabpfgen/tabpfgen-n3-20260501_005212/runtime_result.json new file mode 100644 index 0000000000000000000000000000000000000000..b40d2e985607c070d321c3d4f640c5fa91d9e825 --- /dev/null +++ b/timecost/n3/tabpfgen/tabpfgen-n3-20260501_005212/runtime_result.json @@ -0,0 +1,27 @@ +{ + "dataset_id": "n3", + "model": "tabpfgen", + "run_id": "tabpfgen-n3-20260501_005212", + "public_gate_status": "pass", + "adapter_ready_status": "pass", + "train_status": "success", + "generate_status": "success", + "reason_code": null, + "reason_detail": null, + "artifacts": { + "synthetic_csv": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/n3/tabpfgen/tabpfgen-n3-20260501_005212/tabpfgen-n3-3918-20260501_005212.csv", + "model_path": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/n3/tabpfgen/tabpfgen-n3-20260501_005212" + }, + "timings": { + "train": { + "started_at": "2026-05-01T00:52:12", + "ended_at": "2026-05-01T00:52:12", + "duration_sec": 0.009 + }, + "generate": { + "started_at": "2026-05-01T00:52:12", + "ended_at": "2026-05-01T00:52:33", + "duration_sec": 21.267 + } + } +} \ No newline at end of file diff --git a/timecost/n3/tabpfgen/tabpfgen-n3-20260501_005212/staged/public/staged_features.json b/timecost/n3/tabpfgen/tabpfgen-n3-20260501_005212/staged/public/staged_features.json new file mode 100644 index 0000000000000000000000000000000000000000..08fe4d766d091d2f2ddba724a16b9509cbe4c390 --- /dev/null +++ b/timecost/n3/tabpfgen/tabpfgen-n3-20260501_005212/staged/public/staged_features.json @@ -0,0 +1,62 @@ +[ + { + "feature_name": "fixed acidity", + "data_type": "continuous", + "is_target": false + }, + { + "feature_name": "volatile acidity", + "data_type": "continuous", + "is_target": false + }, + { + "feature_name": "citric acid", + "data_type": "continuous", + "is_target": false + }, + { + "feature_name": "residual sugar", + "data_type": "continuous", + "is_target": false + }, + { + "feature_name": "chlorides", + "data_type": "continuous", + "is_target": false + }, + { + "feature_name": "free sulfur dioxide", + "data_type": "continuous", + "is_target": false + }, + { + "feature_name": "total sulfur dioxide", + "data_type": "continuous", + "is_target": false + }, + { + "feature_name": "density", + "data_type": "continuous", + "is_target": false + }, + { + "feature_name": "pH", + "data_type": "continuous", + "is_target": false + }, + { + "feature_name": "sulphates", + "data_type": "continuous", + "is_target": false + }, + { + "feature_name": "alcohol", + "data_type": "continuous", + "is_target": false + }, + { + "feature_name": "quality", + "data_type": "continuous", + "is_target": true + } +] \ No newline at end of file diff --git a/timecost/n3/tabpfgen/tabpfgen-n3-20260501_005212/staged/public/test.csv b/timecost/n3/tabpfgen/tabpfgen-n3-20260501_005212/staged/public/test.csv new file mode 100644 index 0000000000000000000000000000000000000000..db5cd50d3746410ea470625fa2ba2c8e9775cc0d --- /dev/null +++ b/timecost/n3/tabpfgen/tabpfgen-n3-20260501_005212/staged/public/test.csv @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:19e107152a94432e2a37ff045c00cfe35e1be30208b1553080d7dd0ede256d3b +size 28944 diff --git a/timecost/n3/tabpfgen/tabpfgen-n3-20260501_005212/staged/public/train.csv b/timecost/n3/tabpfgen/tabpfgen-n3-20260501_005212/staged/public/train.csv new file mode 100644 index 0000000000000000000000000000000000000000..87ca26726fe82ccbaa397919305b043c17eb374e --- /dev/null +++ b/timecost/n3/tabpfgen/tabpfgen-n3-20260501_005212/staged/public/train.csv @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:7813c8cca73ba4bfc6559215257b341c21e459980ad17ae6ddc809306bc9a0b9 +size 229945 diff --git a/timecost/n3/tabpfgen/tabpfgen-n3-20260501_005212/staged/public/val.csv b/timecost/n3/tabpfgen/tabpfgen-n3-20260501_005212/staged/public/val.csv new file mode 100644 index 0000000000000000000000000000000000000000..6acf84c76c47093b513c46d5503972a2dff275c0 --- /dev/null +++ b/timecost/n3/tabpfgen/tabpfgen-n3-20260501_005212/staged/public/val.csv @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:cf5979d9675567d9d6642640c9b84fc6c49e492604144723c30f50516c05cee6 +size 28791 diff --git a/timecost/n3/tabpfgen/tabpfgen-n3-20260501_005212/staged/tabpfgen/adapter_report.json b/timecost/n3/tabpfgen/tabpfgen-n3-20260501_005212/staged/tabpfgen/adapter_report.json new file mode 100644 index 0000000000000000000000000000000000000000..91c08fe1df342bb7d3302bc3d0f88fe494353964 --- /dev/null +++ b/timecost/n3/tabpfgen/tabpfgen-n3-20260501_005212/staged/tabpfgen/adapter_report.json @@ -0,0 +1,7 @@ +{ + "adapter_ready_status": "pass", + "adapter_fail_reason_code": null, + "adapter_fail_detail": null, + "adapter_transforms_applied": [], + "model_input_manifest": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/n3/tabpfgen/tabpfgen-n3-20260501_005212/staged/tabpfgen/model_input_manifest.json" +} \ No newline at end of file diff --git a/timecost/n3/tabpfgen/tabpfgen-n3-20260501_005212/staged/tabpfgen/adapter_transforms_applied.json b/timecost/n3/tabpfgen/tabpfgen-n3-20260501_005212/staged/tabpfgen/adapter_transforms_applied.json new file mode 100644 index 0000000000000000000000000000000000000000..0637a088a01e8ddab3bf3fa98dbe804cbde1a0dc --- /dev/null +++ b/timecost/n3/tabpfgen/tabpfgen-n3-20260501_005212/staged/tabpfgen/adapter_transforms_applied.json @@ -0,0 +1 @@ +[] \ No newline at end of file diff --git a/timecost/n3/tabpfgen/tabpfgen-n3-20260501_005212/staged/tabpfgen/model_input_manifest.json b/timecost/n3/tabpfgen/tabpfgen-n3-20260501_005212/staged/tabpfgen/model_input_manifest.json new file mode 100644 index 0000000000000000000000000000000000000000..0c0fc3fb109d265584a282c065ada476cee9c33e --- /dev/null +++ b/timecost/n3/tabpfgen/tabpfgen-n3-20260501_005212/staged/tabpfgen/model_input_manifest.json @@ -0,0 +1,266 @@ +{ + "dataset_id": "n3", + "model": "tabpfgen", + "target_column": "quality", + "task_type": "classification", + "column_schema": [ + { + "name": "fixed acidity", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 66, + "unique_ratio": 0.016845, + "example_values": [ + "7.1", + "8.5", + "6.4", + "6.8", + "7.6" + ] + } + }, + { + "name": "volatile acidity", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 121, + "unique_ratio": 0.030883, + "example_values": [ + "0.31", + "0.21", + "0.24", + "0.43", + "0.27" + ] + } + }, + { + "name": "citric acid", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 85, + "unique_ratio": 0.021695, + "example_values": [ + "0.17", + "0.41", + "0.31", + "0.25", + "0.3" + ] + } + }, + { + "name": "residual sugar", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 296, + "unique_ratio": 0.075549, + "example_values": [ + "1", + "4.3", + "2.8", + "13", + "12.9" + ] + } + }, + { + "name": "chlorides", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 147, + "unique_ratio": 0.037519, + "example_values": [ + "0.042", + "0.036", + "0.038", + "0.047", + "0.033" + ] + } + }, + { + "name": "free sulfur dioxide", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 120, + "unique_ratio": 0.030628, + "example_values": [ + "21", + "24", + "41", + "43", + "69" + ] + } + }, + { + "name": "total sulfur dioxide", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 244, + "unique_ratio": 0.062277, + "example_values": [ + "144", + "99", + "114", + "132", + "160" + ] + } + }, + { + "name": "density", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 839, + "unique_ratio": 0.21414, + "example_values": [ + "0.99304", + "0.9947", + "0.99155", + "0.98975", + "0.99705" + ] + } + }, + { + "name": "pH", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 100, + "unique_ratio": 0.025523, + "example_values": [ + "3.13", + "3.18", + "3.37", + "3.21", + "3.16" + ] + } + }, + { + "name": "sulphates", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 78, + "unique_ratio": 0.019908, + "example_values": [ + "0.4", + "0.53", + "0.66", + "0.47", + "0.5" + ] + } + }, + { + "name": "alcohol", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 97, + "unique_ratio": 0.024758, + "example_values": [ + "9.6", + "9.7", + "11.7", + "13.4", + "8.8" + ] + } + }, + { + "name": "quality", + "role": "target", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 7, + "unique_ratio": 0.001787, + "example_values": [ + "5", + "6", + "7", + "8", + "3" + ] + } + } + ], + "public_manifest": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/n3/tabpfgen/tabpfgen-n3-20260501_005212/public_gate/staged_input_manifest.json", + "train_csv": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/n3/tabpfgen/tabpfgen-n3-20260501_005212/staged/public/train.csv", + "val_csv": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/n3/tabpfgen/tabpfgen-n3-20260501_005212/staged/public/val.csv", + "test_csv": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/n3/tabpfgen/tabpfgen-n3-20260501_005212/staged/public/test.csv", + "features_json": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/n3/tabpfgen/tabpfgen-n3-20260501_005212/staged/public/staged_features.json", + "public_gate_report": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/n3/tabpfgen/tabpfgen-n3-20260501_005212/public_gate/public_gate_report.json" +} \ No newline at end of file diff --git a/timecost/n3/tabpfgen/tabpfgen-n3-20260501_005212/tabpfgen-n3-3918-20260501_005212.csv b/timecost/n3/tabpfgen/tabpfgen-n3-20260501_005212/tabpfgen-n3-3918-20260501_005212.csv new file mode 100644 index 0000000000000000000000000000000000000000..14c8479f09cc24745763f4c19d101dbbdfc461c0 --- /dev/null +++ b/timecost/n3/tabpfgen/tabpfgen-n3-20260501_005212/tabpfgen-n3-3918-20260501_005212.csv @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:5c4bf5785236913316d81cc4153e113790caf45aef95726aa24d80d86a2781dc +size 446015 diff --git a/timecost/n3/tabpfgen/tabpfgen-n3-20260501_005212/tabpfgen_meta.json b/timecost/n3/tabpfgen/tabpfgen-n3-20260501_005212/tabpfgen_meta.json new file mode 100644 index 0000000000000000000000000000000000000000..e2268fbaa45e5a02a338e7118394aa6950090894 --- /dev/null +++ b/timecost/n3/tabpfgen/tabpfgen-n3-20260501_005212/tabpfgen_meta.json @@ -0,0 +1,9 @@ +{ + "csv_path": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/n3/tabpfgen/tabpfgen-n3-20260501_005212/staged/public/train.csv", + "json_path": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/n3/tabpfgen/tabpfgen-n3-20260501_005212/staged/public/staged_features.json", + "target_col": "quality", + "is_classification": true, + "task_type": "classification", + "n_rows": 3918, + "n_cols": 12 +} \ No newline at end of file diff --git a/timecost/n3/tabpfgen/tabpfgen-n3-20260501_005212/train_20260501_005212.log b/timecost/n3/tabpfgen/tabpfgen-n3-20260501_005212/train_20260501_005212.log new file mode 100644 index 0000000000000000000000000000000000000000..251655c92a85a09a0e32432e7fa14272b152157d --- /dev/null +++ b/timecost/n3/tabpfgen/tabpfgen-n3-20260501_005212/train_20260501_005212.log @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:a6a67813e3aecb37bb89b938492ceed24a2682e7ece7d6deb751cdc8de26e414 +size 595 diff --git a/timecost/n3/tabsyn/tabsyn-n3-20260501_002047/_tabsyn_sample.py b/timecost/n3/tabsyn/tabsyn-n3-20260501_002047/_tabsyn_sample.py new file mode 100644 index 0000000000000000000000000000000000000000..749894d8a508cae7402d8a4bb55efc31398e5e78 --- /dev/null +++ b/timecost/n3/tabsyn/tabsyn-n3-20260501_002047/_tabsyn_sample.py @@ -0,0 +1,39 @@ +import os, sys, subprocess + +work_dir = "/work/output-Benchmark-trainonly-v1/n3/tabsyn/tabsyn-n3-20260501_002047" +dataname = "tabsyn_n3" +output_csv = "/work/output-Benchmark-trainonly-v1/n3/tabsyn/tabsyn-n3-20260501_002047/tabsyn-n3-3918-20260501_004440.csv" +tabsyn_root = "/workspace/tabsyn" + +assert os.path.exists(tabsyn_root), f"TabSyn source not mounted: {tabsyn_root}" + +old = os.environ.get("PYTHONPATH", "") +os.environ["PYTHONPATH"] = tabsyn_root + (os.pathsep + old if old else "") +sys.path.insert(0, tabsyn_root) + +os.chdir(tabsyn_root) + +# Ensure data symlink exists +data_link = os.path.join(tabsyn_root, "data", dataname) +data_src = os.path.join(work_dir, "data", dataname) +os.makedirs(os.path.join(tabsyn_root, "data"), exist_ok=True) +if os.path.exists(data_link): + os.remove(data_link) +os.symlink(data_src, data_link) + +print(f"[TabSyn] Sampling 3918 rows") +env = os.environ.copy() +env.setdefault("TABSYN_RESUME", "1") +ret = subprocess.run( + [sys.executable, "main.py", + "--dataname", dataname, + "--mode", "sample", + "--method", "tabsyn", + "--gpu", "0", + "--save_path", output_csv], + cwd=tabsyn_root, + env=env +) +if ret.returncode != 0: + sys.exit(ret.returncode) +print(f"[TabSyn] Saved -> {output_csv}") diff --git a/timecost/n3/tabsyn/tabsyn-n3-20260501_002047/_tabsyn_train.py b/timecost/n3/tabsyn/tabsyn-n3-20260501_002047/_tabsyn_train.py new file mode 100644 index 0000000000000000000000000000000000000000..ed08fcb958c5edfd8a5b0c44967e0ef6c676d14e --- /dev/null +++ b/timecost/n3/tabsyn/tabsyn-n3-20260501_002047/_tabsyn_train.py @@ -0,0 +1,65 @@ +import os, sys, subprocess + +work_dir = "/work/output-Benchmark-trainonly-v1/n3/tabsyn/tabsyn-n3-20260501_002047" +dataname = "tabsyn_n3" +tabsyn_root = "/workspace/tabsyn" + +assert os.path.exists(tabsyn_root), f"TabSyn source not mounted: {tabsyn_root}" + +old = os.environ.get("PYTHONPATH", "") +os.environ["PYTHONPATH"] = tabsyn_root + (os.pathsep + old if old else "") +sys.path.insert(0, tabsyn_root) + +os.chdir(tabsyn_root) + +# Symlink data dir into TabSyn data/ +data_link = os.path.join(tabsyn_root, "data", dataname) +data_src = os.path.join(work_dir, "data", dataname) +os.makedirs(os.path.join(tabsyn_root, "data"), exist_ok=True) +if os.path.exists(data_link): + os.remove(data_link) +os.symlink(data_src, data_link) + +env = os.environ.copy() +env.setdefault("TABSYN_RESUME", "1") +env.setdefault("TABSYN_VAE_BATCH_SIZE", "1024") +# Safer defaults for wide tables on Docker: reduce shared-memory pressure in diffusion DataLoader. +env.setdefault("TABSYN_DIFFUSION_NUM_WORKERS", "0") +_te = None +if _te is not None: + env["TABSYN_VAE_EPOCHS"] = str(_te) + env["TABSYN_DIFFUSION_MAX_EPOCHS"] = str(max(_te + 1, 2)) + +# Data preprocessing is done on the host side (_prepare_data_dir) +# which creates .npy files, train/test CSVs, and info.json + +# Step 1: Train VAE (produces latent embeddings) +print(f"[TabSyn] Step 1/2: Training VAE in {tabsyn_root}, dataname={dataname}") +ret = subprocess.run( + [sys.executable, "main.py", + "--dataname", dataname, + "--mode", "train", + "--method", "vae", + "--gpu", "0"], + cwd=tabsyn_root, + env=env +) +if ret.returncode != 0: + print("[TabSyn] VAE training failed") + sys.exit(ret.returncode) + +# Step 2: Train diffusion model on latent space +print(f"[TabSyn] Step 2/2: Training diffusion model") +ret = subprocess.run( + [sys.executable, "main.py", + "--dataname", dataname, + "--mode", "train", + "--method", "tabsyn", + "--gpu", "0"], + cwd=tabsyn_root, + env=env +) +if ret.returncode != 0: + print("[TabSyn] Diffusion training failed") + sys.exit(ret.returncode) +print("[TabSyn] Training complete (VAE + Diffusion)") diff --git a/timecost/n3/tabsyn/tabsyn-n3-20260501_002047/data/tabsyn_n3/X_cat_test.npy b/timecost/n3/tabsyn/tabsyn-n3-20260501_002047/data/tabsyn_n3/X_cat_test.npy new file mode 100644 index 0000000000000000000000000000000000000000..24e2b0be40b07b6e79f803a82e6e38723e462320 --- /dev/null +++ b/timecost/n3/tabsyn/tabsyn-n3-20260501_002047/data/tabsyn_n3/X_cat_test.npy @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:519697bb05272ccbf9fc4da2bd269c9eab90005e0671dad9ef2e5266215cdf67 +size 128 diff --git a/timecost/n3/tabsyn/tabsyn-n3-20260501_002047/data/tabsyn_n3/X_cat_train.npy b/timecost/n3/tabsyn/tabsyn-n3-20260501_002047/data/tabsyn_n3/X_cat_train.npy new file mode 100644 index 0000000000000000000000000000000000000000..24e2b0be40b07b6e79f803a82e6e38723e462320 --- /dev/null +++ b/timecost/n3/tabsyn/tabsyn-n3-20260501_002047/data/tabsyn_n3/X_cat_train.npy @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:519697bb05272ccbf9fc4da2bd269c9eab90005e0671dad9ef2e5266215cdf67 +size 128 diff --git a/timecost/n3/tabsyn/tabsyn-n3-20260501_002047/data/tabsyn_n3/X_num_test.npy b/timecost/n3/tabsyn/tabsyn-n3-20260501_002047/data/tabsyn_n3/X_num_test.npy new file mode 100644 index 0000000000000000000000000000000000000000..94beb8413ef55592710518365965f4cb503523ee --- /dev/null +++ b/timecost/n3/tabsyn/tabsyn-n3-20260501_002047/data/tabsyn_n3/X_num_test.npy @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:093d8f405d764277d5a007953f25ab6466f0857f71f0d8f3c437463fb5bf240a +size 172520 diff --git a/timecost/n3/tabsyn/tabsyn-n3-20260501_002047/data/tabsyn_n3/X_num_train.npy b/timecost/n3/tabsyn/tabsyn-n3-20260501_002047/data/tabsyn_n3/X_num_train.npy new file mode 100644 index 0000000000000000000000000000000000000000..94beb8413ef55592710518365965f4cb503523ee --- /dev/null +++ b/timecost/n3/tabsyn/tabsyn-n3-20260501_002047/data/tabsyn_n3/X_num_train.npy @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:093d8f405d764277d5a007953f25ab6466f0857f71f0d8f3c437463fb5bf240a +size 172520 diff --git a/timecost/n3/tabsyn/tabsyn-n3-20260501_002047/data/tabsyn_n3/info.json b/timecost/n3/tabsyn/tabsyn-n3-20260501_002047/data/tabsyn_n3/info.json new file mode 100644 index 0000000000000000000000000000000000000000..f9419d317a390941bc8fb0c5c773504a6894b385 --- /dev/null +++ b/timecost/n3/tabsyn/tabsyn-n3-20260501_002047/data/tabsyn_n3/info.json @@ -0,0 +1,138 @@ +{ + "name": "tabsyn_n3", + "task_type": "regression", + "n_num_features": 11, + "n_cat_features": 0, + "train_size": 3918, + "num_col_idx": [ + 0, + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10 + ], + "cat_col_idx": [], + "target_col_idx": [ + 11 + ], + "column_names": [ + "fixed acidity", + "volatile acidity", + "citric acid", + "residual sugar", + "chlorides", + "free sulfur dioxide", + "total sulfur dioxide", + "density", + "pH", + "sulphates", + "alcohol", + "quality" + ], + "train_num": 3918, + "test_num": 3918, + "header": 0, + "file_type": "csv", + "data_path": "data/tabsyn_n3/train.csv", + "test_path": null, + "idx_mapping": { + "0": 0, + "1": 1, + "2": 2, + "3": 3, + "4": 4, + "5": 5, + "6": 6, + "7": 7, + "8": 8, + "9": 9, + "10": 10, + "11": 11 + }, + "inverse_idx_mapping": { + "0": 0, + "1": 1, + "2": 2, + "3": 3, + "4": 4, + "5": 5, + "6": 6, + "7": 7, + "8": 8, + "9": 9, + "10": 10, + "11": 11 + }, + "idx_name_mapping": { + "0": "fixed acidity", + "1": "volatile acidity", + "2": "citric acid", + "3": "residual sugar", + "4": "chlorides", + "5": "free sulfur dioxide", + "6": "total sulfur dioxide", + "7": "density", + "8": "pH", + "9": "sulphates", + "10": "alcohol", + "11": "quality" + }, + "metadata": { + "columns": { + "0": { + "sdtype": "numerical", + "computer_representation": "Float" + }, + "1": { + "sdtype": "numerical", + "computer_representation": "Float" + }, + "2": { + "sdtype": "numerical", + "computer_representation": "Float" + }, + "3": { + "sdtype": "numerical", + "computer_representation": "Float" + }, + "4": { + "sdtype": "numerical", + "computer_representation": "Float" + }, + "5": { + "sdtype": "numerical", + "computer_representation": "Float" + }, + "6": { + "sdtype": "numerical", + "computer_representation": "Float" + }, + "7": { + "sdtype": "numerical", + "computer_representation": "Float" + }, + "8": { + "sdtype": "numerical", + "computer_representation": "Float" + }, + "9": { + "sdtype": "numerical", + "computer_representation": "Float" + }, + "10": { + "sdtype": "numerical", + "computer_representation": "Float" + }, + "11": { + "sdtype": "numerical", + "computer_representation": "Float" + } + } + } +} \ No newline at end of file diff --git a/timecost/n3/tabsyn/tabsyn-n3-20260501_002047/data/tabsyn_n3/test.csv b/timecost/n3/tabsyn/tabsyn-n3-20260501_002047/data/tabsyn_n3/test.csv new file mode 100644 index 0000000000000000000000000000000000000000..87ca26726fe82ccbaa397919305b043c17eb374e --- /dev/null +++ b/timecost/n3/tabsyn/tabsyn-n3-20260501_002047/data/tabsyn_n3/test.csv @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:7813c8cca73ba4bfc6559215257b341c21e459980ad17ae6ddc809306bc9a0b9 +size 229945 diff --git a/timecost/n3/tabsyn/tabsyn-n3-20260501_002047/data/tabsyn_n3/train.csv b/timecost/n3/tabsyn/tabsyn-n3-20260501_002047/data/tabsyn_n3/train.csv new file mode 100644 index 0000000000000000000000000000000000000000..87ca26726fe82ccbaa397919305b043c17eb374e --- /dev/null +++ b/timecost/n3/tabsyn/tabsyn-n3-20260501_002047/data/tabsyn_n3/train.csv @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:7813c8cca73ba4bfc6559215257b341c21e459980ad17ae6ddc809306bc9a0b9 +size 229945 diff --git a/timecost/n3/tabsyn/tabsyn-n3-20260501_002047/data/tabsyn_n3/y_test.npy b/timecost/n3/tabsyn/tabsyn-n3-20260501_002047/data/tabsyn_n3/y_test.npy new file mode 100644 index 0000000000000000000000000000000000000000..59571a153fb0a2e415acb8f1ffcbb54e325414c6 --- /dev/null +++ b/timecost/n3/tabsyn/tabsyn-n3-20260501_002047/data/tabsyn_n3/y_test.npy @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:1418131d428e1f98200104123714677e9ab4a2b8279082a63a1d663f7f09bb84 +size 31472 diff --git a/timecost/n3/tabsyn/tabsyn-n3-20260501_002047/data/tabsyn_n3/y_train.npy b/timecost/n3/tabsyn/tabsyn-n3-20260501_002047/data/tabsyn_n3/y_train.npy new file mode 100644 index 0000000000000000000000000000000000000000..59571a153fb0a2e415acb8f1ffcbb54e325414c6 --- /dev/null +++ b/timecost/n3/tabsyn/tabsyn-n3-20260501_002047/data/tabsyn_n3/y_train.npy @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:1418131d428e1f98200104123714677e9ab4a2b8279082a63a1d663f7f09bb84 +size 31472 diff --git a/timecost/n3/tabsyn/tabsyn-n3-20260501_002047/gen_20260501_004440.log b/timecost/n3/tabsyn/tabsyn-n3-20260501_002047/gen_20260501_004440.log new file mode 100644 index 0000000000000000000000000000000000000000..f26ee256937b9d0497d68e4e408ec7e15aa45a55 --- /dev/null +++ b/timecost/n3/tabsyn/tabsyn-n3-20260501_002047/gen_20260501_004440.log @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:9e3b413fec3ce21ad49d678653b26af794ef3ace5403a3e2afa873b0173015ca +size 930 diff --git a/timecost/n3/tabsyn/tabsyn-n3-20260501_002047/input_snapshot.json b/timecost/n3/tabsyn/tabsyn-n3-20260501_002047/input_snapshot.json new file mode 100644 index 0000000000000000000000000000000000000000..35dea6fbed02718a51165764efffea61dcb428e5 --- /dev/null +++ b/timecost/n3/tabsyn/tabsyn-n3-20260501_002047/input_snapshot.json @@ -0,0 +1,36 @@ +{ + "dataset_id": "n3", + "model": "tabsyn", + "inputs": { + "train_csv": { + "path": "/data/jialinzhang/SynthesizePipeline-server/DatasetNew/n3/n3-train.csv", + "exists": true, + "size": 211519, + "sha256": "2160a06db2fea02adb0ebb79d8d853bd2544580be301e71f6e8deeb1489a9009" + }, + "val_csv": { + "path": "/data/jialinzhang/SynthesizePipeline-server/DatasetNew/n3/n3-val.csv", + "exists": true, + "size": 26499, + "sha256": "d5ccfee07dfa9e7bdee5bb87642b43828e09f74c6cc0266a3d19d9feaa83106e" + }, + "test_csv": { + "path": "/data/jialinzhang/SynthesizePipeline-server/DatasetNew/n3/n3-test.csv", + "exists": true, + "size": 26676, + "sha256": "6f83aacb0d1747b95e287352a7fff5d9d65a1c127b773852346c68485c4ede47" + }, + "profile_json": { + "path": "/data/jialinzhang/SynthesizePipeline-server/DatasetNew/artifacts/data_core/tabular/n3/n3-dataset_profile.json", + "exists": true, + "size": 5235, + "sha256": "23d2e5904a2ca90cbf8d6e3c75887681721e9b90cc705c31a680c11513d0c46f" + }, + "contract_json": { + "path": "/data/jialinzhang/SynthesizePipeline-server/DatasetNew/artifacts/data_core/tabular/n3/n3-dataset_contract_v1.json", + "exists": true, + "size": 6281, + "sha256": "c0cc56f5fe28e1b65927255c6e3c2b0e9479862c2ec6f2fea1664da36c9a3a09" + } + } +} \ No newline at end of file diff --git a/timecost/n3/tabsyn/tabsyn-n3-20260501_002047/public_gate/normalized_schema_snapshot.json b/timecost/n3/tabsyn/tabsyn-n3-20260501_002047/public_gate/normalized_schema_snapshot.json new file mode 100644 index 0000000000000000000000000000000000000000..c41fe304503de23190a02e6cbfafa35b3bf134d3 --- /dev/null +++ b/timecost/n3/tabsyn/tabsyn-n3-20260501_002047/public_gate/normalized_schema_snapshot.json @@ -0,0 +1,259 @@ +{ + "dataset_id": "n3", + "target_column": "quality", + "task_type": "classification", + "columns": [ + { + "name": "fixed acidity", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 66, + "unique_ratio": 0.016845, + "example_values": [ + "7.1", + "8.5", + "6.4", + "6.8", + "7.6" + ] + } + }, + { + "name": "volatile acidity", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 121, + "unique_ratio": 0.030883, + "example_values": [ + "0.31", + "0.21", + "0.24", + "0.43", + "0.27" + ] + } + }, + { + "name": "citric acid", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 85, + "unique_ratio": 0.021695, + "example_values": [ + "0.17", + "0.41", + "0.31", + "0.25", + "0.3" + ] + } + }, + { + "name": "residual sugar", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 296, + "unique_ratio": 0.075549, + "example_values": [ + "1", + "4.3", + "2.8", + "13", + "12.9" + ] + } + }, + { + "name": "chlorides", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 147, + "unique_ratio": 0.037519, + "example_values": [ + "0.042", + "0.036", + "0.038", + "0.047", + "0.033" + ] + } + }, + { + "name": "free sulfur dioxide", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 120, + "unique_ratio": 0.030628, + "example_values": [ + "21", + "24", + "41", + "43", + "69" + ] + } + }, + { + "name": "total sulfur dioxide", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 244, + "unique_ratio": 0.062277, + "example_values": [ + "144", + "99", + "114", + "132", + "160" + ] + } + }, + { + "name": "density", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 839, + "unique_ratio": 0.21414, + "example_values": [ + "0.99304", + "0.9947", + "0.99155", + "0.98975", + "0.99705" + ] + } + }, + { + "name": "pH", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 100, + "unique_ratio": 0.025523, + "example_values": [ + "3.13", + "3.18", + "3.37", + "3.21", + "3.16" + ] + } + }, + { + "name": "sulphates", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 78, + "unique_ratio": 0.019908, + "example_values": [ + "0.4", + "0.53", + "0.66", + "0.47", + "0.5" + ] + } + }, + { + "name": "alcohol", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 97, + "unique_ratio": 0.024758, + "example_values": [ + "9.6", + "9.7", + "11.7", + "13.4", + "8.8" + ] + } + }, + { + "name": "quality", + "role": "target", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 7, + "unique_ratio": 0.001787, + "example_values": [ + "5", + "6", + "7", + "8", + "3" + ] + } + } + ] +} \ No newline at end of file diff --git a/timecost/n3/tabsyn/tabsyn-n3-20260501_002047/public_gate/public_gate_report.json b/timecost/n3/tabsyn/tabsyn-n3-20260501_002047/public_gate/public_gate_report.json new file mode 100644 index 0000000000000000000000000000000000000000..93b97319f739e39079d6c6549fd2020f8a6dac25 --- /dev/null +++ b/timecost/n3/tabsyn/tabsyn-n3-20260501_002047/public_gate/public_gate_report.json @@ -0,0 +1,37 @@ +{ + "dataset_id": "n3", + "status": "pass", + "checks": [ + { + "check_id": "PG001_csv_parse_ok", + "status": "pass" + }, + { + "check_id": "PG002_split_header_consistent", + "status": "pass" + }, + { + "check_id": "PG003_profile_header_match", + "status": "pass" + }, + { + "check_id": "PG004_missing_token_normalized", + "status": "pass" + }, + { + "check_id": "PG005_semantic_type_validated", + "status": "pass" + }, + { + "check_id": "PG006_target_defined_and_valid", + "status": "pass" + } + ], + "target_column": "quality", + "task_type": "classification", + "input_splits": { + "train": "/data/jialinzhang/SynthesizePipeline-server/DatasetNew/n3/n3-train.csv", + "val": "/data/jialinzhang/SynthesizePipeline-server/DatasetNew/n3/n3-val.csv", + "test": "/data/jialinzhang/SynthesizePipeline-server/DatasetNew/n3/n3-test.csv" + } +} \ No newline at end of file diff --git a/timecost/n3/tabsyn/tabsyn-n3-20260501_002047/public_gate/staged_input_manifest.json b/timecost/n3/tabsyn/tabsyn-n3-20260501_002047/public_gate/staged_input_manifest.json new file mode 100644 index 0000000000000000000000000000000000000000..89da8150613cdd8928791501d11711daf12d54c6 --- /dev/null +++ b/timecost/n3/tabsyn/tabsyn-n3-20260501_002047/public_gate/staged_input_manifest.json @@ -0,0 +1,264 @@ +{ + "dataset_id": "n3", + "target_column": "quality", + "task_type": "classification", + "train_csv": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/n3/tabsyn/tabsyn-n3-20260501_002047/staged/public/train.csv", + "val_csv": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/n3/tabsyn/tabsyn-n3-20260501_002047/staged/public/val.csv", + "test_csv": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/n3/tabsyn/tabsyn-n3-20260501_002047/staged/public/test.csv", + "features_json": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/n3/tabsyn/tabsyn-n3-20260501_002047/staged/public/staged_features.json", + "public_gate_report": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/n3/tabsyn/tabsyn-n3-20260501_002047/public_gate/public_gate_report.json", + "column_schema": [ + { + "name": "fixed acidity", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 66, + "unique_ratio": 0.016845, + "example_values": [ + "7.1", + "8.5", + "6.4", + "6.8", + "7.6" + ] + } + }, + { + "name": "volatile acidity", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 121, + "unique_ratio": 0.030883, + "example_values": [ + "0.31", + "0.21", + "0.24", + "0.43", + "0.27" + ] + } + }, + { + "name": "citric acid", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 85, + "unique_ratio": 0.021695, + "example_values": [ + "0.17", + "0.41", + "0.31", + "0.25", + "0.3" + ] + } + }, + { + "name": "residual sugar", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 296, + "unique_ratio": 0.075549, + "example_values": [ + "1", + "4.3", + "2.8", + "13", + "12.9" + ] + } + }, + { + "name": "chlorides", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 147, + "unique_ratio": 0.037519, + "example_values": [ + "0.042", + "0.036", + "0.038", + "0.047", + "0.033" + ] + } + }, + { + "name": "free sulfur dioxide", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 120, + "unique_ratio": 0.030628, + "example_values": [ + "21", + "24", + "41", + "43", + "69" + ] + } + }, + { + "name": "total sulfur dioxide", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 244, + "unique_ratio": 0.062277, + "example_values": [ + "144", + "99", + "114", + "132", + "160" + ] + } + }, + { + "name": "density", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 839, + "unique_ratio": 0.21414, + "example_values": [ + "0.99304", + "0.9947", + "0.99155", + "0.98975", + "0.99705" + ] + } + }, + { + "name": "pH", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 100, + "unique_ratio": 0.025523, + "example_values": [ + "3.13", + "3.18", + "3.37", + "3.21", + "3.16" + ] + } + }, + { + "name": "sulphates", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 78, + "unique_ratio": 0.019908, + "example_values": [ + "0.4", + "0.53", + "0.66", + "0.47", + "0.5" + ] + } + }, + { + "name": "alcohol", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 97, + "unique_ratio": 0.024758, + "example_values": [ + "9.6", + "9.7", + "11.7", + "13.4", + "8.8" + ] + } + }, + { + "name": "quality", + "role": "target", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 7, + "unique_ratio": 0.001787, + "example_values": [ + "5", + "6", + "7", + "8", + "3" + ] + } + } + ] +} \ No newline at end of file diff --git a/timecost/n3/tabsyn/tabsyn-n3-20260501_002047/runtime_result.json b/timecost/n3/tabsyn/tabsyn-n3-20260501_002047/runtime_result.json new file mode 100644 index 0000000000000000000000000000000000000000..6de873f2e3c9a234a4fc7934e8d0f70b9e75ca47 --- /dev/null +++ b/timecost/n3/tabsyn/tabsyn-n3-20260501_002047/runtime_result.json @@ -0,0 +1,27 @@ +{ + "dataset_id": "n3", + "model": "tabsyn", + "run_id": "tabsyn-n3-20260501_002047", + "public_gate_status": "pass", + "adapter_ready_status": "pass", + "train_status": "success", + "generate_status": "success", + "reason_code": null, + "reason_detail": null, + "artifacts": { + "synthetic_csv": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/n3/tabsyn/tabsyn-n3-20260501_002047/tabsyn-n3-3918-20260501_004440.csv", + "model_path": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/n3/tabsyn/tabsyn-n3-20260501_002047" + }, + "timings": { + "train": { + "started_at": "2026-05-01T00:20:47", + "ended_at": "2026-05-01T00:44:40", + "duration_sec": 1433.185 + }, + "generate": { + "started_at": "2026-05-01T00:44:40", + "ended_at": "2026-05-01T00:44:46", + "duration_sec": 5.888 + } + } +} \ No newline at end of file diff --git a/timecost/n3/tabsyn/tabsyn-n3-20260501_002047/staged/public/staged_features.json b/timecost/n3/tabsyn/tabsyn-n3-20260501_002047/staged/public/staged_features.json new file mode 100644 index 0000000000000000000000000000000000000000..08fe4d766d091d2f2ddba724a16b9509cbe4c390 --- /dev/null +++ b/timecost/n3/tabsyn/tabsyn-n3-20260501_002047/staged/public/staged_features.json @@ -0,0 +1,62 @@ +[ + { + "feature_name": "fixed acidity", + "data_type": "continuous", + "is_target": false + }, + { + "feature_name": "volatile acidity", + "data_type": "continuous", + "is_target": false + }, + { + "feature_name": "citric acid", + "data_type": "continuous", + "is_target": false + }, + { + "feature_name": "residual sugar", + "data_type": "continuous", + "is_target": false + }, + { + "feature_name": "chlorides", + "data_type": "continuous", + "is_target": false + }, + { + "feature_name": "free sulfur dioxide", + "data_type": "continuous", + "is_target": false + }, + { + "feature_name": "total sulfur dioxide", + "data_type": "continuous", + "is_target": false + }, + { + "feature_name": "density", + "data_type": "continuous", + "is_target": false + }, + { + "feature_name": "pH", + "data_type": "continuous", + "is_target": false + }, + { + "feature_name": "sulphates", + "data_type": "continuous", + "is_target": false + }, + { + "feature_name": "alcohol", + "data_type": "continuous", + "is_target": false + }, + { + "feature_name": "quality", + "data_type": "continuous", + "is_target": true + } +] \ No newline at end of file diff --git a/timecost/n3/tabsyn/tabsyn-n3-20260501_002047/staged/public/test.csv b/timecost/n3/tabsyn/tabsyn-n3-20260501_002047/staged/public/test.csv new file mode 100644 index 0000000000000000000000000000000000000000..db5cd50d3746410ea470625fa2ba2c8e9775cc0d --- /dev/null +++ b/timecost/n3/tabsyn/tabsyn-n3-20260501_002047/staged/public/test.csv @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:19e107152a94432e2a37ff045c00cfe35e1be30208b1553080d7dd0ede256d3b +size 28944 diff --git a/timecost/n3/tabsyn/tabsyn-n3-20260501_002047/staged/public/train.csv b/timecost/n3/tabsyn/tabsyn-n3-20260501_002047/staged/public/train.csv new file mode 100644 index 0000000000000000000000000000000000000000..87ca26726fe82ccbaa397919305b043c17eb374e --- /dev/null +++ b/timecost/n3/tabsyn/tabsyn-n3-20260501_002047/staged/public/train.csv @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:7813c8cca73ba4bfc6559215257b341c21e459980ad17ae6ddc809306bc9a0b9 +size 229945 diff --git a/timecost/n3/tabsyn/tabsyn-n3-20260501_002047/staged/public/val.csv b/timecost/n3/tabsyn/tabsyn-n3-20260501_002047/staged/public/val.csv new file mode 100644 index 0000000000000000000000000000000000000000..6acf84c76c47093b513c46d5503972a2dff275c0 --- /dev/null +++ b/timecost/n3/tabsyn/tabsyn-n3-20260501_002047/staged/public/val.csv @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:cf5979d9675567d9d6642640c9b84fc6c49e492604144723c30f50516c05cee6 +size 28791 diff --git a/timecost/n3/tabsyn/tabsyn-n3-20260501_002047/staged/tabsyn/adapter_report.json b/timecost/n3/tabsyn/tabsyn-n3-20260501_002047/staged/tabsyn/adapter_report.json new file mode 100644 index 0000000000000000000000000000000000000000..c54b449b769d8b0b6776ab017e11b49298c53d48 --- /dev/null +++ b/timecost/n3/tabsyn/tabsyn-n3-20260501_002047/staged/tabsyn/adapter_report.json @@ -0,0 +1,7 @@ +{ + "adapter_ready_status": "pass", + "adapter_fail_reason_code": null, + "adapter_fail_detail": null, + "adapter_transforms_applied": [], + "model_input_manifest": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/n3/tabsyn/tabsyn-n3-20260501_002047/staged/tabsyn/model_input_manifest.json" +} \ No newline at end of file diff --git a/timecost/n3/tabsyn/tabsyn-n3-20260501_002047/staged/tabsyn/adapter_transforms_applied.json b/timecost/n3/tabsyn/tabsyn-n3-20260501_002047/staged/tabsyn/adapter_transforms_applied.json new file mode 100644 index 0000000000000000000000000000000000000000..0637a088a01e8ddab3bf3fa98dbe804cbde1a0dc --- /dev/null +++ b/timecost/n3/tabsyn/tabsyn-n3-20260501_002047/staged/tabsyn/adapter_transforms_applied.json @@ -0,0 +1 @@ +[] \ No newline at end of file diff --git a/timecost/n3/tabsyn/tabsyn-n3-20260501_002047/staged/tabsyn/model_input_manifest.json b/timecost/n3/tabsyn/tabsyn-n3-20260501_002047/staged/tabsyn/model_input_manifest.json new file mode 100644 index 0000000000000000000000000000000000000000..7e895c1e8d3ae02285511e2232a41e5ea658afbb --- /dev/null +++ b/timecost/n3/tabsyn/tabsyn-n3-20260501_002047/staged/tabsyn/model_input_manifest.json @@ -0,0 +1,266 @@ +{ + "dataset_id": "n3", + "model": "tabsyn", + "target_column": "quality", + "task_type": "classification", + "column_schema": [ + { + "name": "fixed acidity", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 66, + "unique_ratio": 0.016845, + "example_values": [ + "7.1", + "8.5", + "6.4", + "6.8", + "7.6" + ] + } + }, + { + "name": "volatile acidity", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 121, + "unique_ratio": 0.030883, + "example_values": [ + "0.31", + "0.21", + "0.24", + "0.43", + "0.27" + ] + } + }, + { + "name": "citric acid", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 85, + "unique_ratio": 0.021695, + "example_values": [ + "0.17", + "0.41", + "0.31", + "0.25", + "0.3" + ] + } + }, + { + "name": "residual sugar", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 296, + "unique_ratio": 0.075549, + "example_values": [ + "1", + "4.3", + "2.8", + "13", + "12.9" + ] + } + }, + { + "name": "chlorides", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 147, + "unique_ratio": 0.037519, + "example_values": [ + "0.042", + "0.036", + "0.038", + "0.047", + "0.033" + ] + } + }, + { + "name": "free sulfur dioxide", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 120, + "unique_ratio": 0.030628, + "example_values": [ + "21", + "24", + "41", + "43", + "69" + ] + } + }, + { + "name": "total sulfur dioxide", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 244, + "unique_ratio": 0.062277, + "example_values": [ + "144", + "99", + "114", + "132", + "160" + ] + } + }, + { + "name": "density", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 839, + "unique_ratio": 0.21414, + "example_values": [ + "0.99304", + "0.9947", + "0.99155", + "0.98975", + "0.99705" + ] + } + }, + { + "name": "pH", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 100, + "unique_ratio": 0.025523, + "example_values": [ + "3.13", + "3.18", + "3.37", + "3.21", + "3.16" + ] + } + }, + { + "name": "sulphates", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 78, + "unique_ratio": 0.019908, + "example_values": [ + "0.4", + "0.53", + "0.66", + "0.47", + "0.5" + ] + } + }, + { + "name": "alcohol", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 97, + "unique_ratio": 0.024758, + "example_values": [ + "9.6", + "9.7", + "11.7", + "13.4", + "8.8" + ] + } + }, + { + "name": "quality", + "role": "target", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 7, + "unique_ratio": 0.001787, + "example_values": [ + "5", + "6", + "7", + "8", + "3" + ] + } + } + ], + "public_manifest": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/n3/tabsyn/tabsyn-n3-20260501_002047/public_gate/staged_input_manifest.json", + "train_csv": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/n3/tabsyn/tabsyn-n3-20260501_002047/staged/public/train.csv", + "val_csv": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/n3/tabsyn/tabsyn-n3-20260501_002047/staged/public/val.csv", + "test_csv": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/n3/tabsyn/tabsyn-n3-20260501_002047/staged/public/test.csv", + "features_json": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/n3/tabsyn/tabsyn-n3-20260501_002047/staged/public/staged_features.json", + "public_gate_report": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/n3/tabsyn/tabsyn-n3-20260501_002047/public_gate/public_gate_report.json" +} \ No newline at end of file diff --git a/timecost/n3/tabsyn/tabsyn-n3-20260501_002047/synthetic/tabsyn_n3/real.csv b/timecost/n3/tabsyn/tabsyn-n3-20260501_002047/synthetic/tabsyn_n3/real.csv new file mode 100644 index 0000000000000000000000000000000000000000..87ca26726fe82ccbaa397919305b043c17eb374e --- /dev/null +++ b/timecost/n3/tabsyn/tabsyn-n3-20260501_002047/synthetic/tabsyn_n3/real.csv @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:7813c8cca73ba4bfc6559215257b341c21e459980ad17ae6ddc809306bc9a0b9 +size 229945 diff --git a/timecost/n3/tabsyn/tabsyn-n3-20260501_002047/synthetic/tabsyn_n3/test.csv b/timecost/n3/tabsyn/tabsyn-n3-20260501_002047/synthetic/tabsyn_n3/test.csv new file mode 100644 index 0000000000000000000000000000000000000000..87ca26726fe82ccbaa397919305b043c17eb374e --- /dev/null +++ b/timecost/n3/tabsyn/tabsyn-n3-20260501_002047/synthetic/tabsyn_n3/test.csv @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:7813c8cca73ba4bfc6559215257b341c21e459980ad17ae6ddc809306bc9a0b9 +size 229945 diff --git a/timecost/n3/tabsyn/tabsyn-n3-20260501_002047/tabsyn-n3-3918-20260501_004440.csv b/timecost/n3/tabsyn/tabsyn-n3-20260501_002047/tabsyn-n3-3918-20260501_004440.csv new file mode 100644 index 0000000000000000000000000000000000000000..aa50ec468b31dff087f5e5cf82213baa30c81269 --- /dev/null +++ b/timecost/n3/tabsyn/tabsyn-n3-20260501_002047/tabsyn-n3-3918-20260501_004440.csv @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:d6a1a2d692db2299387c54296b344916661abf14b43853be6aa85eeb6fbea991 +size 346256 diff --git a/timecost/n3/tabsyn/tabsyn-n3-20260501_002047/train_20260501_002047.log b/timecost/n3/tabsyn/tabsyn-n3-20260501_002047/train_20260501_002047.log new file mode 100644 index 0000000000000000000000000000000000000000..3cb0016df552216453e11ecaa99f4b9591a1d2e1 --- /dev/null +++ b/timecost/n3/tabsyn/tabsyn-n3-20260501_002047/train_20260501_002047.log @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:1ac6f13fb22e8af5c77411e25c11061b88a678f5d0523a07ca3c68a5d5900fe6 +size 2178664 diff --git a/timecost/n3/tvae/tvae-n3-20260501_060320/_tvae_generate.py b/timecost/n3/tvae/tvae-n3-20260501_060320/_tvae_generate.py new file mode 100644 index 0000000000000000000000000000000000000000..52c562c2500b3e0dc70ac69e40dcd0b563d31d93 --- /dev/null +++ b/timecost/n3/tvae/tvae-n3-20260501_060320/_tvae_generate.py @@ -0,0 +1,23 @@ +import os, sys +sys.path.insert(0, "/work") +from src.SpecificModels.ctgan_joblib_parallel_cap import apply_parallel_cap_from_env +apply_parallel_cap_from_env() +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 +os.environ.setdefault("LOKY_MAX_CPU_COUNT", "8") +os.environ.setdefault("OPENBLAS_NUM_THREADS", "8") +os.environ.setdefault("MKL_NUM_THREADS", "8") +model = TVAE.load("/work/output-Benchmark-trainonly-v1/n3/tvae/tvae-n3-20260501_060320/models_300epochs/tvae_300epochs.pt") +total = 3918 +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-Benchmark-trainonly-v1/n3/tvae/tvae-n3-20260501_060320/tvae-n3-3918-20260501_060403.csv", index=False) +print(f"[TVAE] Generated {total} rows (chunks={len(parts)}) -> /work/output-Benchmark-trainonly-v1/n3/tvae/tvae-n3-20260501_060320/tvae-n3-3918-20260501_060403.csv") diff --git a/timecost/n3/tvae/tvae-n3-20260501_060320/_tvae_train.py b/timecost/n3/tvae/tvae-n3-20260501_060320/_tvae_train.py new file mode 100644 index 0000000000000000000000000000000000000000..9ffb91d2f7992ec86bc3302a687cd09505dfa5fa --- /dev/null +++ b/timecost/n3/tvae/tvae-n3-20260501_060320/_tvae_train.py @@ -0,0 +1,30 @@ +import json, os, sys +sys.path.insert(0, "/work") +from src.SpecificModels.ctgan_joblib_parallel_cap import apply_parallel_cap_from_env +apply_parallel_cap_from_env() +import pandas as pd +from ctgan.data import read_csv +from ctgan.synthesizers.tvae import TVAE + +# Keep transform stage parallelism bounded for stability on shared host. +os.environ.setdefault("LOKY_MAX_CPU_COUNT", "8") +os.environ.setdefault("OPENBLAS_NUM_THREADS", "8") +os.environ.setdefault("MKL_NUM_THREADS", "8") +_nj = (os.environ.get("TVAE_CTGAN_JOBTRANS_N_JOBS") or "").strip() +if _nj: + print("[TVAE] joblib Parallel cap ON, TVAE_CTGAN_JOBTRANS_N_JOBS=" + _nj) +else: + print("[TVAE] joblib Parallel cap OFF (unset TVAE_CTGAN_JOBTRANS_N_JOBS)") +print("[TVAE] LOKY_MAX_CPU_COUNT=" + str(os.environ.get("LOKY_MAX_CPU_COUNT", ""))) + +csv_path = "/work/output-Benchmark-trainonly-v1/n3/tvae/tvae-n3-20260501_060320/staged/public/train.csv" +meta_path = "/work/output-Benchmark-trainonly-v1/n3/tvae/tvae-n3-20260501_060320/tvae_metadata.json" +save_path = "/work/output-Benchmark-trainonly-v1/n3/tvae/tvae-n3-20260501_060320/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/timecost/n3/tvae/tvae-n3-20260501_060320/gen_20260501_060403.log b/timecost/n3/tvae/tvae-n3-20260501_060320/gen_20260501_060403.log new file mode 100644 index 0000000000000000000000000000000000000000..5f22c71123057e3a567cc4b56bec9e252719dfc7 --- /dev/null +++ b/timecost/n3/tvae/tvae-n3-20260501_060320/gen_20260501_060403.log @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:8b805205fe0670464d99d13c058266b9491632b06bd7170e1e7cad7c460d9a47 +size 404 diff --git a/timecost/n3/tvae/tvae-n3-20260501_060320/input_snapshot.json b/timecost/n3/tvae/tvae-n3-20260501_060320/input_snapshot.json new file mode 100644 index 0000000000000000000000000000000000000000..1ddd4c8dc6c3d918927aad5bcb5dbb27f78068fe --- /dev/null +++ b/timecost/n3/tvae/tvae-n3-20260501_060320/input_snapshot.json @@ -0,0 +1,36 @@ +{ + "dataset_id": "n3", + "model": "tvae", + "inputs": { + "train_csv": { + "path": "/data/jialinzhang/SynthesizePipeline-server/DatasetNew/n3/n3-train.csv", + "exists": true, + "size": 211519, + "sha256": "2160a06db2fea02adb0ebb79d8d853bd2544580be301e71f6e8deeb1489a9009" + }, + "val_csv": { + "path": "/data/jialinzhang/SynthesizePipeline-server/DatasetNew/n3/n3-val.csv", + "exists": true, + "size": 26499, + "sha256": "d5ccfee07dfa9e7bdee5bb87642b43828e09f74c6cc0266a3d19d9feaa83106e" + }, + "test_csv": { + "path": "/data/jialinzhang/SynthesizePipeline-server/DatasetNew/n3/n3-test.csv", + "exists": true, + "size": 26676, + "sha256": "6f83aacb0d1747b95e287352a7fff5d9d65a1c127b773852346c68485c4ede47" + }, + "profile_json": { + "path": "/data/jialinzhang/SynthesizePipeline-server/DatasetNew/artifacts/data_core/tabular/n3/n3-dataset_profile.json", + "exists": true, + "size": 5235, + "sha256": "23d2e5904a2ca90cbf8d6e3c75887681721e9b90cc705c31a680c11513d0c46f" + }, + "contract_json": { + "path": "/data/jialinzhang/SynthesizePipeline-server/DatasetNew/artifacts/data_core/tabular/n3/n3-dataset_contract_v1.json", + "exists": true, + "size": 6281, + "sha256": "c0cc56f5fe28e1b65927255c6e3c2b0e9479862c2ec6f2fea1664da36c9a3a09" + } + } +} \ No newline at end of file diff --git a/timecost/n3/tvae/tvae-n3-20260501_060320/models_300epochs/train_20260501_060321.log b/timecost/n3/tvae/tvae-n3-20260501_060320/models_300epochs/train_20260501_060321.log new file mode 100644 index 0000000000000000000000000000000000000000..e8648ac6f3fe8c9cb082eb37f6bb7e20c95a095a --- /dev/null +++ b/timecost/n3/tvae/tvae-n3-20260501_060320/models_300epochs/train_20260501_060321.log @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:dc4447f74c016865260f7b641e9546d03111075941663af4f0186f41e0e79191 +size 532 diff --git a/timecost/n3/tvae/tvae-n3-20260501_060320/models_300epochs/tvae_300epochs.pt b/timecost/n3/tvae/tvae-n3-20260501_060320/models_300epochs/tvae_300epochs.pt new file mode 100644 index 0000000000000000000000000000000000000000..a766fe9f9854ecb603a7aab1a335c5538acf9175 --- /dev/null +++ b/timecost/n3/tvae/tvae-n3-20260501_060320/models_300epochs/tvae_300epochs.pt @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:c811a4991f5380d143ff914ad69c9d59d270b03118cc347469e81e3f55d9e5f5 +size 641004 diff --git a/timecost/n3/tvae/tvae-n3-20260501_060320/public_gate/normalized_schema_snapshot.json b/timecost/n3/tvae/tvae-n3-20260501_060320/public_gate/normalized_schema_snapshot.json new file mode 100644 index 0000000000000000000000000000000000000000..c41fe304503de23190a02e6cbfafa35b3bf134d3 --- /dev/null +++ b/timecost/n3/tvae/tvae-n3-20260501_060320/public_gate/normalized_schema_snapshot.json @@ -0,0 +1,259 @@ +{ + "dataset_id": "n3", + "target_column": "quality", + "task_type": "classification", + "columns": [ + { + "name": "fixed acidity", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 66, + "unique_ratio": 0.016845, + "example_values": [ + "7.1", + "8.5", + "6.4", + "6.8", + "7.6" + ] + } + }, + { + "name": "volatile acidity", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 121, + "unique_ratio": 0.030883, + "example_values": [ + "0.31", + "0.21", + "0.24", + "0.43", + "0.27" + ] + } + }, + { + "name": "citric acid", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 85, + "unique_ratio": 0.021695, + "example_values": [ + "0.17", + "0.41", + "0.31", + "0.25", + "0.3" + ] + } + }, + { + "name": "residual sugar", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 296, + "unique_ratio": 0.075549, + "example_values": [ + "1", + "4.3", + "2.8", + "13", + "12.9" + ] + } + }, + { + "name": "chlorides", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 147, + "unique_ratio": 0.037519, + "example_values": [ + "0.042", + "0.036", + "0.038", + "0.047", + "0.033" + ] + } + }, + { + "name": "free sulfur dioxide", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 120, + "unique_ratio": 0.030628, + "example_values": [ + "21", + "24", + "41", + "43", + "69" + ] + } + }, + { + "name": "total sulfur dioxide", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 244, + "unique_ratio": 0.062277, + "example_values": [ + "144", + "99", + "114", + "132", + "160" + ] + } + }, + { + "name": "density", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 839, + "unique_ratio": 0.21414, + "example_values": [ + "0.99304", + "0.9947", + "0.99155", + "0.98975", + "0.99705" + ] + } + }, + { + "name": "pH", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 100, + "unique_ratio": 0.025523, + "example_values": [ + "3.13", + "3.18", + "3.37", + "3.21", + "3.16" + ] + } + }, + { + "name": "sulphates", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 78, + "unique_ratio": 0.019908, + "example_values": [ + "0.4", + "0.53", + "0.66", + "0.47", + "0.5" + ] + } + }, + { + "name": "alcohol", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 97, + "unique_ratio": 0.024758, + "example_values": [ + "9.6", + "9.7", + "11.7", + "13.4", + "8.8" + ] + } + }, + { + "name": "quality", + "role": "target", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 7, + "unique_ratio": 0.001787, + "example_values": [ + "5", + "6", + "7", + "8", + "3" + ] + } + } + ] +} \ No newline at end of file diff --git a/timecost/n3/tvae/tvae-n3-20260501_060320/public_gate/public_gate_report.json b/timecost/n3/tvae/tvae-n3-20260501_060320/public_gate/public_gate_report.json new file mode 100644 index 0000000000000000000000000000000000000000..93b97319f739e39079d6c6549fd2020f8a6dac25 --- /dev/null +++ b/timecost/n3/tvae/tvae-n3-20260501_060320/public_gate/public_gate_report.json @@ -0,0 +1,37 @@ +{ + "dataset_id": "n3", + "status": "pass", + "checks": [ + { + "check_id": "PG001_csv_parse_ok", + "status": "pass" + }, + { + "check_id": "PG002_split_header_consistent", + "status": "pass" + }, + { + "check_id": "PG003_profile_header_match", + "status": "pass" + }, + { + "check_id": "PG004_missing_token_normalized", + "status": "pass" + }, + { + "check_id": "PG005_semantic_type_validated", + "status": "pass" + }, + { + "check_id": "PG006_target_defined_and_valid", + "status": "pass" + } + ], + "target_column": "quality", + "task_type": "classification", + "input_splits": { + "train": "/data/jialinzhang/SynthesizePipeline-server/DatasetNew/n3/n3-train.csv", + "val": "/data/jialinzhang/SynthesizePipeline-server/DatasetNew/n3/n3-val.csv", + "test": "/data/jialinzhang/SynthesizePipeline-server/DatasetNew/n3/n3-test.csv" + } +} \ No newline at end of file diff --git a/timecost/n3/tvae/tvae-n3-20260501_060320/public_gate/staged_input_manifest.json b/timecost/n3/tvae/tvae-n3-20260501_060320/public_gate/staged_input_manifest.json new file mode 100644 index 0000000000000000000000000000000000000000..8f6e040125293e40e94874e7b8ee341c84c97b2d --- /dev/null +++ b/timecost/n3/tvae/tvae-n3-20260501_060320/public_gate/staged_input_manifest.json @@ -0,0 +1,264 @@ +{ + "dataset_id": "n3", + "target_column": "quality", + "task_type": "classification", + "train_csv": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/n3/tvae/tvae-n3-20260501_060320/staged/public/train.csv", + "val_csv": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/n3/tvae/tvae-n3-20260501_060320/staged/public/val.csv", + "test_csv": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/n3/tvae/tvae-n3-20260501_060320/staged/public/test.csv", + "features_json": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/n3/tvae/tvae-n3-20260501_060320/staged/public/staged_features.json", + "public_gate_report": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/n3/tvae/tvae-n3-20260501_060320/public_gate/public_gate_report.json", + "column_schema": [ + { + "name": "fixed acidity", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 66, + "unique_ratio": 0.016845, + "example_values": [ + "7.1", + "8.5", + "6.4", + "6.8", + "7.6" + ] + } + }, + { + "name": "volatile acidity", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 121, + "unique_ratio": 0.030883, + "example_values": [ + "0.31", + "0.21", + "0.24", + "0.43", + "0.27" + ] + } + }, + { + "name": "citric acid", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 85, + "unique_ratio": 0.021695, + "example_values": [ + "0.17", + "0.41", + "0.31", + "0.25", + "0.3" + ] + } + }, + { + "name": "residual sugar", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 296, + "unique_ratio": 0.075549, + "example_values": [ + "1", + "4.3", + "2.8", + "13", + "12.9" + ] + } + }, + { + "name": "chlorides", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 147, + "unique_ratio": 0.037519, + "example_values": [ + "0.042", + "0.036", + "0.038", + "0.047", + "0.033" + ] + } + }, + { + "name": "free sulfur dioxide", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 120, + "unique_ratio": 0.030628, + "example_values": [ + "21", + "24", + "41", + "43", + "69" + ] + } + }, + { + "name": "total sulfur dioxide", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 244, + "unique_ratio": 0.062277, + "example_values": [ + "144", + "99", + "114", + "132", + "160" + ] + } + }, + { + "name": "density", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 839, + "unique_ratio": 0.21414, + "example_values": [ + "0.99304", + "0.9947", + "0.99155", + "0.98975", + "0.99705" + ] + } + }, + { + "name": "pH", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 100, + "unique_ratio": 0.025523, + "example_values": [ + "3.13", + "3.18", + "3.37", + "3.21", + "3.16" + ] + } + }, + { + "name": "sulphates", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 78, + "unique_ratio": 0.019908, + "example_values": [ + "0.4", + "0.53", + "0.66", + "0.47", + "0.5" + ] + } + }, + { + "name": "alcohol", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 97, + "unique_ratio": 0.024758, + "example_values": [ + "9.6", + "9.7", + "11.7", + "13.4", + "8.8" + ] + } + }, + { + "name": "quality", + "role": "target", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 7, + "unique_ratio": 0.001787, + "example_values": [ + "5", + "6", + "7", + "8", + "3" + ] + } + } + ] +} \ No newline at end of file diff --git a/timecost/n3/tvae/tvae-n3-20260501_060320/runtime_result.json b/timecost/n3/tvae/tvae-n3-20260501_060320/runtime_result.json new file mode 100644 index 0000000000000000000000000000000000000000..35a187b5f30f4681beca384bb70ecdd2b9dd7bc1 --- /dev/null +++ b/timecost/n3/tvae/tvae-n3-20260501_060320/runtime_result.json @@ -0,0 +1,27 @@ +{ + "dataset_id": "n3", + "model": "tvae", + "run_id": "tvae-n3-20260501_060320", + "public_gate_status": "pass", + "adapter_ready_status": "pass", + "train_status": "success", + "generate_status": "success", + "reason_code": null, + "reason_detail": null, + "artifacts": { + "synthetic_csv": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/n3/tvae/tvae-n3-20260501_060320/tvae-n3-3918-20260501_060403.csv", + "model_path": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/n3/tvae/tvae-n3-20260501_060320/models_300epochs/tvae_300epochs.pt" + }, + "timings": { + "train": { + "started_at": "2026-05-01T06:03:21", + "ended_at": "2026-05-01T06:04:03", + "duration_sec": 42.148 + }, + "generate": { + "started_at": "2026-05-01T06:04:03", + "ended_at": "2026-05-01T06:04:08", + "duration_sec": 5.221 + } + } +} \ No newline at end of file diff --git a/timecost/n3/tvae/tvae-n3-20260501_060320/staged/public/staged_features.json b/timecost/n3/tvae/tvae-n3-20260501_060320/staged/public/staged_features.json new file mode 100644 index 0000000000000000000000000000000000000000..08fe4d766d091d2f2ddba724a16b9509cbe4c390 --- /dev/null +++ b/timecost/n3/tvae/tvae-n3-20260501_060320/staged/public/staged_features.json @@ -0,0 +1,62 @@ +[ + { + "feature_name": "fixed acidity", + "data_type": "continuous", + "is_target": false + }, + { + "feature_name": "volatile acidity", + "data_type": "continuous", + "is_target": false + }, + { + "feature_name": "citric acid", + "data_type": "continuous", + "is_target": false + }, + { + "feature_name": "residual sugar", + "data_type": "continuous", + "is_target": false + }, + { + "feature_name": "chlorides", + "data_type": "continuous", + "is_target": false + }, + { + "feature_name": "free sulfur dioxide", + "data_type": "continuous", + "is_target": false + }, + { + "feature_name": "total sulfur dioxide", + "data_type": "continuous", + "is_target": false + }, + { + "feature_name": "density", + "data_type": "continuous", + "is_target": false + }, + { + "feature_name": "pH", + "data_type": "continuous", + "is_target": false + }, + { + "feature_name": "sulphates", + "data_type": "continuous", + "is_target": false + }, + { + "feature_name": "alcohol", + "data_type": "continuous", + "is_target": false + }, + { + "feature_name": "quality", + "data_type": "continuous", + "is_target": true + } +] \ No newline at end of file diff --git a/timecost/n3/tvae/tvae-n3-20260501_060320/staged/public/test.csv b/timecost/n3/tvae/tvae-n3-20260501_060320/staged/public/test.csv new file mode 100644 index 0000000000000000000000000000000000000000..db5cd50d3746410ea470625fa2ba2c8e9775cc0d --- /dev/null +++ b/timecost/n3/tvae/tvae-n3-20260501_060320/staged/public/test.csv @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:19e107152a94432e2a37ff045c00cfe35e1be30208b1553080d7dd0ede256d3b +size 28944 diff --git a/timecost/n3/tvae/tvae-n3-20260501_060320/staged/public/train.csv b/timecost/n3/tvae/tvae-n3-20260501_060320/staged/public/train.csv new file mode 100644 index 0000000000000000000000000000000000000000..87ca26726fe82ccbaa397919305b043c17eb374e --- /dev/null +++ b/timecost/n3/tvae/tvae-n3-20260501_060320/staged/public/train.csv @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:7813c8cca73ba4bfc6559215257b341c21e459980ad17ae6ddc809306bc9a0b9 +size 229945 diff --git a/timecost/n3/tvae/tvae-n3-20260501_060320/staged/public/val.csv b/timecost/n3/tvae/tvae-n3-20260501_060320/staged/public/val.csv new file mode 100644 index 0000000000000000000000000000000000000000..6acf84c76c47093b513c46d5503972a2dff275c0 --- /dev/null +++ b/timecost/n3/tvae/tvae-n3-20260501_060320/staged/public/val.csv @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:cf5979d9675567d9d6642640c9b84fc6c49e492604144723c30f50516c05cee6 +size 28791 diff --git a/timecost/n3/tvae/tvae-n3-20260501_060320/staged/tvae/adapter_report.json b/timecost/n3/tvae/tvae-n3-20260501_060320/staged/tvae/adapter_report.json new file mode 100644 index 0000000000000000000000000000000000000000..0a872952739ed875960523a94b29e71aa4a253f6 --- /dev/null +++ b/timecost/n3/tvae/tvae-n3-20260501_060320/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-Benchmark-trainonly-v1/n3/tvae/tvae-n3-20260501_060320/staged/tvae/model_input_manifest.json" +} \ No newline at end of file diff --git a/timecost/n3/tvae/tvae-n3-20260501_060320/staged/tvae/adapter_transforms_applied.json b/timecost/n3/tvae/tvae-n3-20260501_060320/staged/tvae/adapter_transforms_applied.json new file mode 100644 index 0000000000000000000000000000000000000000..0637a088a01e8ddab3bf3fa98dbe804cbde1a0dc --- /dev/null +++ b/timecost/n3/tvae/tvae-n3-20260501_060320/staged/tvae/adapter_transforms_applied.json @@ -0,0 +1 @@ +[] \ No newline at end of file diff --git a/timecost/n3/tvae/tvae-n3-20260501_060320/staged/tvae/model_input_manifest.json b/timecost/n3/tvae/tvae-n3-20260501_060320/staged/tvae/model_input_manifest.json new file mode 100644 index 0000000000000000000000000000000000000000..abac79d564981e9b9dc7734776d18357fda2a7cf --- /dev/null +++ b/timecost/n3/tvae/tvae-n3-20260501_060320/staged/tvae/model_input_manifest.json @@ -0,0 +1,266 @@ +{ + "dataset_id": "n3", + "model": "tvae", + "target_column": "quality", + "task_type": "classification", + "column_schema": [ + { + "name": "fixed acidity", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 66, + "unique_ratio": 0.016845, + "example_values": [ + "7.1", + "8.5", + "6.4", + "6.8", + "7.6" + ] + } + }, + { + "name": "volatile acidity", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 121, + "unique_ratio": 0.030883, + "example_values": [ + "0.31", + "0.21", + "0.24", + "0.43", + "0.27" + ] + } + }, + { + "name": "citric acid", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 85, + "unique_ratio": 0.021695, + "example_values": [ + "0.17", + "0.41", + "0.31", + "0.25", + "0.3" + ] + } + }, + { + "name": "residual sugar", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 296, + "unique_ratio": 0.075549, + "example_values": [ + "1", + "4.3", + "2.8", + "13", + "12.9" + ] + } + }, + { + "name": "chlorides", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 147, + "unique_ratio": 0.037519, + "example_values": [ + "0.042", + "0.036", + "0.038", + "0.047", + "0.033" + ] + } + }, + { + "name": "free sulfur dioxide", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 120, + "unique_ratio": 0.030628, + "example_values": [ + "21", + "24", + "41", + "43", + "69" + ] + } + }, + { + "name": "total sulfur dioxide", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 244, + "unique_ratio": 0.062277, + "example_values": [ + "144", + "99", + "114", + "132", + "160" + ] + } + }, + { + "name": "density", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 839, + "unique_ratio": 0.21414, + "example_values": [ + "0.99304", + "0.9947", + "0.99155", + "0.98975", + "0.99705" + ] + } + }, + { + "name": "pH", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 100, + "unique_ratio": 0.025523, + "example_values": [ + "3.13", + "3.18", + "3.37", + "3.21", + "3.16" + ] + } + }, + { + "name": "sulphates", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 78, + "unique_ratio": 0.019908, + "example_values": [ + "0.4", + "0.53", + "0.66", + "0.47", + "0.5" + ] + } + }, + { + "name": "alcohol", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 97, + "unique_ratio": 0.024758, + "example_values": [ + "9.6", + "9.7", + "11.7", + "13.4", + "8.8" + ] + } + }, + { + "name": "quality", + "role": "target", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 7, + "unique_ratio": 0.001787, + "example_values": [ + "5", + "6", + "7", + "8", + "3" + ] + } + } + ], + "public_manifest": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/n3/tvae/tvae-n3-20260501_060320/public_gate/staged_input_manifest.json", + "train_csv": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/n3/tvae/tvae-n3-20260501_060320/staged/public/train.csv", + "val_csv": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/n3/tvae/tvae-n3-20260501_060320/staged/public/val.csv", + "test_csv": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/n3/tvae/tvae-n3-20260501_060320/staged/public/test.csv", + "features_json": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/n3/tvae/tvae-n3-20260501_060320/staged/public/staged_features.json", + "public_gate_report": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/n3/tvae/tvae-n3-20260501_060320/public_gate/public_gate_report.json" +} \ No newline at end of file diff --git a/timecost/n3/tvae/tvae-n3-20260501_060320/tvae-n3-3918-20260501_060403.csv b/timecost/n3/tvae/tvae-n3-20260501_060320/tvae-n3-3918-20260501_060403.csv new file mode 100644 index 0000000000000000000000000000000000000000..91aaffcaa6b65fdd740aac4db157768c585b4112 --- /dev/null +++ b/timecost/n3/tvae/tvae-n3-20260501_060320/tvae-n3-3918-20260501_060403.csv @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:68d4738c0d73ccb5e6e8ff0595a6f0b4b19a83b6696fd24ff768b0090bd0d49c +size 820086 diff --git a/timecost/n3/tvae/tvae-n3-20260501_060320/tvae_metadata.json b/timecost/n3/tvae/tvae-n3-20260501_060320/tvae_metadata.json new file mode 100644 index 0000000000000000000000000000000000000000..40d513aa1aca4c6f5c1be8afc3d6a1a0c75aa74f --- /dev/null +++ b/timecost/n3/tvae/tvae-n3-20260501_060320/tvae_metadata.json @@ -0,0 +1,52 @@ +{ + "columns": [ + { + "name": "fixed acidity", + "type": "continuous" + }, + { + "name": "volatile acidity", + "type": "continuous" + }, + { + "name": "citric acid", + "type": "continuous" + }, + { + "name": "residual sugar", + "type": "continuous" + }, + { + "name": "chlorides", + "type": "continuous" + }, + { + "name": "free sulfur dioxide", + "type": "continuous" + }, + { + "name": "total sulfur dioxide", + "type": "continuous" + }, + { + "name": "density", + "type": "continuous" + }, + { + "name": "pH", + "type": "continuous" + }, + { + "name": "sulphates", + "type": "continuous" + }, + { + "name": "alcohol", + "type": "continuous" + }, + { + "name": "quality", + "type": "continuous" + } + ] +} \ No newline at end of file diff --git a/timecost/n3/tvae/tvae-n3-20260504_172819/_tvae_generate.py b/timecost/n3/tvae/tvae-n3-20260504_172819/_tvae_generate.py new file mode 100644 index 0000000000000000000000000000000000000000..c7b9f5dbe7772cae78842d3e657dde8a6274ea8e --- /dev/null +++ b/timecost/n3/tvae/tvae-n3-20260504_172819/_tvae_generate.py @@ -0,0 +1,23 @@ +import os, sys +sys.path.insert(0, "/work") +from src.SpecificModels.ctgan_joblib_parallel_cap import apply_parallel_cap_from_env +apply_parallel_cap_from_env() +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 +os.environ.setdefault("LOKY_MAX_CPU_COUNT", "8") +os.environ.setdefault("OPENBLAS_NUM_THREADS", "8") +os.environ.setdefault("MKL_NUM_THREADS", "8") +model = TVAE.load("/work/output-Benchmark-trainonly-v1/n3/tvae/tvae-n3-20260504_172819/models_300epochs/tvae_300epochs.pt") +total = 3918 +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-Benchmark-trainonly-v1/n3/tvae/tvae-n3-20260504_172819/tvae-n3-3918-20260504_172901.csv", index=False) +print(f"[TVAE] Generated {total} rows (chunks={len(parts)}) -> /work/output-Benchmark-trainonly-v1/n3/tvae/tvae-n3-20260504_172819/tvae-n3-3918-20260504_172901.csv") diff --git a/timecost/n3/tvae/tvae-n3-20260504_172819/_tvae_train.py b/timecost/n3/tvae/tvae-n3-20260504_172819/_tvae_train.py new file mode 100644 index 0000000000000000000000000000000000000000..7c7be901c03a6afbdafae5c9fa0fdb9cbe3a66b9 --- /dev/null +++ b/timecost/n3/tvae/tvae-n3-20260504_172819/_tvae_train.py @@ -0,0 +1,30 @@ +import json, os, sys +sys.path.insert(0, "/work") +from src.SpecificModels.ctgan_joblib_parallel_cap import apply_parallel_cap_from_env +apply_parallel_cap_from_env() +import pandas as pd +from ctgan.data import read_csv +from ctgan.synthesizers.tvae import TVAE + +# Keep transform stage parallelism bounded for stability on shared host. +os.environ.setdefault("LOKY_MAX_CPU_COUNT", "8") +os.environ.setdefault("OPENBLAS_NUM_THREADS", "8") +os.environ.setdefault("MKL_NUM_THREADS", "8") +_nj = (os.environ.get("TVAE_CTGAN_JOBTRANS_N_JOBS") or "").strip() +if _nj: + print("[TVAE] joblib Parallel cap ON, TVAE_CTGAN_JOBTRANS_N_JOBS=" + _nj) +else: + print("[TVAE] joblib Parallel cap OFF (unset TVAE_CTGAN_JOBTRANS_N_JOBS)") +print("[TVAE] LOKY_MAX_CPU_COUNT=" + str(os.environ.get("LOKY_MAX_CPU_COUNT", ""))) + +csv_path = "/work/output-Benchmark-trainonly-v1/n3/tvae/tvae-n3-20260504_172819/staged/public/train.csv" +meta_path = "/work/output-Benchmark-trainonly-v1/n3/tvae/tvae-n3-20260504_172819/tvae_metadata.json" +save_path = "/work/output-Benchmark-trainonly-v1/n3/tvae/tvae-n3-20260504_172819/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/timecost/n3/tvae/tvae-n3-20260504_172819/gen_20260504_172901.log b/timecost/n3/tvae/tvae-n3-20260504_172819/gen_20260504_172901.log new file mode 100644 index 0000000000000000000000000000000000000000..9f4c8df978304685fee287c97778601fa7ccd326 --- /dev/null +++ b/timecost/n3/tvae/tvae-n3-20260504_172819/gen_20260504_172901.log @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:a43efa6944e23c4b948b6dcbdb07c34fa3696ecc216dd410142b5a766c516a40 +size 404 diff --git a/timecost/n3/tvae/tvae-n3-20260504_172819/input_snapshot.json b/timecost/n3/tvae/tvae-n3-20260504_172819/input_snapshot.json new file mode 100644 index 0000000000000000000000000000000000000000..1ddd4c8dc6c3d918927aad5bcb5dbb27f78068fe --- /dev/null +++ b/timecost/n3/tvae/tvae-n3-20260504_172819/input_snapshot.json @@ -0,0 +1,36 @@ +{ + "dataset_id": "n3", + "model": "tvae", + "inputs": { + "train_csv": { + "path": "/data/jialinzhang/SynthesizePipeline-server/DatasetNew/n3/n3-train.csv", + "exists": true, + "size": 211519, + "sha256": "2160a06db2fea02adb0ebb79d8d853bd2544580be301e71f6e8deeb1489a9009" + }, + "val_csv": { + "path": "/data/jialinzhang/SynthesizePipeline-server/DatasetNew/n3/n3-val.csv", + "exists": true, + "size": 26499, + "sha256": "d5ccfee07dfa9e7bdee5bb87642b43828e09f74c6cc0266a3d19d9feaa83106e" + }, + "test_csv": { + "path": "/data/jialinzhang/SynthesizePipeline-server/DatasetNew/n3/n3-test.csv", + "exists": true, + "size": 26676, + "sha256": "6f83aacb0d1747b95e287352a7fff5d9d65a1c127b773852346c68485c4ede47" + }, + "profile_json": { + "path": "/data/jialinzhang/SynthesizePipeline-server/DatasetNew/artifacts/data_core/tabular/n3/n3-dataset_profile.json", + "exists": true, + "size": 5235, + "sha256": "23d2e5904a2ca90cbf8d6e3c75887681721e9b90cc705c31a680c11513d0c46f" + }, + "contract_json": { + "path": "/data/jialinzhang/SynthesizePipeline-server/DatasetNew/artifacts/data_core/tabular/n3/n3-dataset_contract_v1.json", + "exists": true, + "size": 6281, + "sha256": "c0cc56f5fe28e1b65927255c6e3c2b0e9479862c2ec6f2fea1664da36c9a3a09" + } + } +} \ No newline at end of file diff --git a/timecost/n3/tvae/tvae-n3-20260504_172819/models_300epochs/train_20260504_172819.log b/timecost/n3/tvae/tvae-n3-20260504_172819/models_300epochs/train_20260504_172819.log new file mode 100644 index 0000000000000000000000000000000000000000..c9fda6dd36749071d1d84382f79794a3e6b5a34e --- /dev/null +++ b/timecost/n3/tvae/tvae-n3-20260504_172819/models_300epochs/train_20260504_172819.log @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:929c00c18481d7e5c1d6ba30eacbb318985eb82602164744517e2b90b891f0c0 +size 532 diff --git a/timecost/n3/tvae/tvae-n3-20260504_172819/models_300epochs/tvae_300epochs.pt b/timecost/n3/tvae/tvae-n3-20260504_172819/models_300epochs/tvae_300epochs.pt new file mode 100644 index 0000000000000000000000000000000000000000..57bfd44f30cf1bf03a0a4d546a64684f68cc62cf --- /dev/null +++ b/timecost/n3/tvae/tvae-n3-20260504_172819/models_300epochs/tvae_300epochs.pt @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:a4d80176f56c6a53507fe524338ee9d9268f8217d8ce0b7379a6682d2a76be3f +size 640812 diff --git a/timecost/n3/tvae/tvae-n3-20260504_172819/public_gate/normalized_schema_snapshot.json b/timecost/n3/tvae/tvae-n3-20260504_172819/public_gate/normalized_schema_snapshot.json new file mode 100644 index 0000000000000000000000000000000000000000..c41fe304503de23190a02e6cbfafa35b3bf134d3 --- /dev/null +++ b/timecost/n3/tvae/tvae-n3-20260504_172819/public_gate/normalized_schema_snapshot.json @@ -0,0 +1,259 @@ +{ + "dataset_id": "n3", + "target_column": "quality", + "task_type": "classification", + "columns": [ + { + "name": "fixed acidity", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 66, + "unique_ratio": 0.016845, + "example_values": [ + "7.1", + "8.5", + "6.4", + "6.8", + "7.6" + ] + } + }, + { + "name": "volatile acidity", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 121, + "unique_ratio": 0.030883, + "example_values": [ + "0.31", + "0.21", + "0.24", + "0.43", + "0.27" + ] + } + }, + { + "name": "citric acid", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 85, + "unique_ratio": 0.021695, + "example_values": [ + "0.17", + "0.41", + "0.31", + "0.25", + "0.3" + ] + } + }, + { + "name": "residual sugar", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 296, + "unique_ratio": 0.075549, + "example_values": [ + "1", + "4.3", + "2.8", + "13", + "12.9" + ] + } + }, + { + "name": "chlorides", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 147, + "unique_ratio": 0.037519, + "example_values": [ + "0.042", + "0.036", + "0.038", + "0.047", + "0.033" + ] + } + }, + { + "name": "free sulfur dioxide", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 120, + "unique_ratio": 0.030628, + "example_values": [ + "21", + "24", + "41", + "43", + "69" + ] + } + }, + { + "name": "total sulfur dioxide", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 244, + "unique_ratio": 0.062277, + "example_values": [ + "144", + "99", + "114", + "132", + "160" + ] + } + }, + { + "name": "density", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 839, + "unique_ratio": 0.21414, + "example_values": [ + "0.99304", + "0.9947", + "0.99155", + "0.98975", + "0.99705" + ] + } + }, + { + "name": "pH", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 100, + "unique_ratio": 0.025523, + "example_values": [ + "3.13", + "3.18", + "3.37", + "3.21", + "3.16" + ] + } + }, + { + "name": "sulphates", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 78, + "unique_ratio": 0.019908, + "example_values": [ + "0.4", + "0.53", + "0.66", + "0.47", + "0.5" + ] + } + }, + { + "name": "alcohol", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 97, + "unique_ratio": 0.024758, + "example_values": [ + "9.6", + "9.7", + "11.7", + "13.4", + "8.8" + ] + } + }, + { + "name": "quality", + "role": "target", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 7, + "unique_ratio": 0.001787, + "example_values": [ + "5", + "6", + "7", + "8", + "3" + ] + } + } + ] +} \ No newline at end of file diff --git a/timecost/n3/tvae/tvae-n3-20260504_172819/public_gate/public_gate_report.json b/timecost/n3/tvae/tvae-n3-20260504_172819/public_gate/public_gate_report.json new file mode 100644 index 0000000000000000000000000000000000000000..93b97319f739e39079d6c6549fd2020f8a6dac25 --- /dev/null +++ b/timecost/n3/tvae/tvae-n3-20260504_172819/public_gate/public_gate_report.json @@ -0,0 +1,37 @@ +{ + "dataset_id": "n3", + "status": "pass", + "checks": [ + { + "check_id": "PG001_csv_parse_ok", + "status": "pass" + }, + { + "check_id": "PG002_split_header_consistent", + "status": "pass" + }, + { + "check_id": "PG003_profile_header_match", + "status": "pass" + }, + { + "check_id": "PG004_missing_token_normalized", + "status": "pass" + }, + { + "check_id": "PG005_semantic_type_validated", + "status": "pass" + }, + { + "check_id": "PG006_target_defined_and_valid", + "status": "pass" + } + ], + "target_column": "quality", + "task_type": "classification", + "input_splits": { + "train": "/data/jialinzhang/SynthesizePipeline-server/DatasetNew/n3/n3-train.csv", + "val": "/data/jialinzhang/SynthesizePipeline-server/DatasetNew/n3/n3-val.csv", + "test": "/data/jialinzhang/SynthesizePipeline-server/DatasetNew/n3/n3-test.csv" + } +} \ No newline at end of file diff --git a/timecost/n3/tvae/tvae-n3-20260504_172819/public_gate/staged_input_manifest.json b/timecost/n3/tvae/tvae-n3-20260504_172819/public_gate/staged_input_manifest.json new file mode 100644 index 0000000000000000000000000000000000000000..a9014867d4657a4fc3d9350a8e779c8589c820dc --- /dev/null +++ b/timecost/n3/tvae/tvae-n3-20260504_172819/public_gate/staged_input_manifest.json @@ -0,0 +1,264 @@ +{ + "dataset_id": "n3", + "target_column": "quality", + "task_type": "classification", + "train_csv": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/n3/tvae/tvae-n3-20260504_172819/staged/public/train.csv", + "val_csv": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/n3/tvae/tvae-n3-20260504_172819/staged/public/val.csv", + "test_csv": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/n3/tvae/tvae-n3-20260504_172819/staged/public/test.csv", + "features_json": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/n3/tvae/tvae-n3-20260504_172819/staged/public/staged_features.json", + "public_gate_report": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/n3/tvae/tvae-n3-20260504_172819/public_gate/public_gate_report.json", + "column_schema": [ + { + "name": "fixed acidity", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 66, + "unique_ratio": 0.016845, + "example_values": [ + "7.1", + "8.5", + "6.4", + "6.8", + "7.6" + ] + } + }, + { + "name": "volatile acidity", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 121, + "unique_ratio": 0.030883, + "example_values": [ + "0.31", + "0.21", + "0.24", + "0.43", + "0.27" + ] + } + }, + { + "name": "citric acid", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 85, + "unique_ratio": 0.021695, + "example_values": [ + "0.17", + "0.41", + "0.31", + "0.25", + "0.3" + ] + } + }, + { + "name": "residual sugar", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 296, + "unique_ratio": 0.075549, + "example_values": [ + "1", + "4.3", + "2.8", + "13", + "12.9" + ] + } + }, + { + "name": "chlorides", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 147, + "unique_ratio": 0.037519, + "example_values": [ + "0.042", + "0.036", + "0.038", + "0.047", + "0.033" + ] + } + }, + { + "name": "free sulfur dioxide", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 120, + "unique_ratio": 0.030628, + "example_values": [ + "21", + "24", + "41", + "43", + "69" + ] + } + }, + { + "name": "total sulfur dioxide", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 244, + "unique_ratio": 0.062277, + "example_values": [ + "144", + "99", + "114", + "132", + "160" + ] + } + }, + { + "name": "density", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 839, + "unique_ratio": 0.21414, + "example_values": [ + "0.99304", + "0.9947", + "0.99155", + "0.98975", + "0.99705" + ] + } + }, + { + "name": "pH", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 100, + "unique_ratio": 0.025523, + "example_values": [ + "3.13", + "3.18", + "3.37", + "3.21", + "3.16" + ] + } + }, + { + "name": "sulphates", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 78, + "unique_ratio": 0.019908, + "example_values": [ + "0.4", + "0.53", + "0.66", + "0.47", + "0.5" + ] + } + }, + { + "name": "alcohol", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 97, + "unique_ratio": 0.024758, + "example_values": [ + "9.6", + "9.7", + "11.7", + "13.4", + "8.8" + ] + } + }, + { + "name": "quality", + "role": "target", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 7, + "unique_ratio": 0.001787, + "example_values": [ + "5", + "6", + "7", + "8", + "3" + ] + } + } + ] +} \ No newline at end of file diff --git a/timecost/n3/tvae/tvae-n3-20260504_172819/run_config.json b/timecost/n3/tvae/tvae-n3-20260504_172819/run_config.json new file mode 100644 index 0000000000000000000000000000000000000000..425730a588abc8031bbba50324746924d9e52674 --- /dev/null +++ b/timecost/n3/tvae/tvae-n3-20260504_172819/run_config.json @@ -0,0 +1,40 @@ +{ + "schema_version": 1, + "recorded_at": "2026-05-04T17:28:19", + "dataset_id": "n3", + "model": "tvae", + "work_dir": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/n3/tvae/tvae-n3-20260504_172819", + "dataset_source_requested": "new", + "dataset_source_resolved": "new", + "cli_args": { + "model": "tvae", + "dataset": "n3", + "dataset_source": "new", + "train": true, + "generate": true, + "num_rows": 0, + "epochs": null, + "output_dir": null, + "model_dir": null, + "work_dir": null, + "resume": false, + "no_stats": false + }, + "resolved": { + "num_rows": 3918, + "model_path": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/n3/tvae/tvae-n3-20260504_172819/models_300epochs/tvae_300epochs.pt", + "output_csv": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/n3/tvae/tvae-n3-20260504_172819/tvae-n3-3918-20260504_172901.csv" + }, + "input_artifacts": { + "public_gate_report": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/n3/tvae/tvae-n3-20260504_172819/public_gate/public_gate_report.json", + "public_manifest": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/n3/tvae/tvae-n3-20260504_172819/public_gate/staged_input_manifest.json", + "model_manifest": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/n3/tvae/tvae-n3-20260504_172819/staged/tvae/model_input_manifest.json", + "train_csv": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/n3/tvae/tvae-n3-20260504_172819/staged/public/train.csv", + "features_json": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/n3/tvae/tvae-n3-20260504_172819/staged/public/staged_features.json", + "target_column": "quality", + "task_type": "classification" + }, + "env_overrides": { + "BENCHMARK_TVAE_GPUS": "device=3" + } +} \ No newline at end of file diff --git a/timecost/n3/tvae/tvae-n3-20260504_172819/runtime_result.json b/timecost/n3/tvae/tvae-n3-20260504_172819/runtime_result.json new file mode 100644 index 0000000000000000000000000000000000000000..ecd3d42036f70599200af2bbcff66928cab42839 --- /dev/null +++ b/timecost/n3/tvae/tvae-n3-20260504_172819/runtime_result.json @@ -0,0 +1,27 @@ +{ + "dataset_id": "n3", + "model": "tvae", + "run_id": "tvae-n3-20260504_172819", + "public_gate_status": "pass", + "adapter_ready_status": "pass", + "train_status": "success", + "generate_status": "success", + "reason_code": null, + "reason_detail": null, + "artifacts": { + "synthetic_csv": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/n3/tvae/tvae-n3-20260504_172819/tvae-n3-3918-20260504_172901.csv", + "model_path": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/n3/tvae/tvae-n3-20260504_172819/models_300epochs/tvae_300epochs.pt" + }, + "timings": { + "train": { + "started_at": "2026-05-04T17:28:19", + "ended_at": "2026-05-04T17:29:01", + "duration_sec": 42.246 + }, + "generate": { + "started_at": "2026-05-04T17:29:01", + "ended_at": "2026-05-04T17:29:07", + "duration_sec": 5.592 + } + } +} \ No newline at end of file diff --git a/timecost/n3/tvae/tvae-n3-20260504_172819/staged/public/staged_features.json b/timecost/n3/tvae/tvae-n3-20260504_172819/staged/public/staged_features.json new file mode 100644 index 0000000000000000000000000000000000000000..08fe4d766d091d2f2ddba724a16b9509cbe4c390 --- /dev/null +++ b/timecost/n3/tvae/tvae-n3-20260504_172819/staged/public/staged_features.json @@ -0,0 +1,62 @@ +[ + { + "feature_name": "fixed acidity", + "data_type": "continuous", + "is_target": false + }, + { + "feature_name": "volatile acidity", + "data_type": "continuous", + "is_target": false + }, + { + "feature_name": "citric acid", + "data_type": "continuous", + "is_target": false + }, + { + "feature_name": "residual sugar", + "data_type": "continuous", + "is_target": false + }, + { + "feature_name": "chlorides", + "data_type": "continuous", + "is_target": false + }, + { + "feature_name": "free sulfur dioxide", + "data_type": "continuous", + "is_target": false + }, + { + "feature_name": "total sulfur dioxide", + "data_type": "continuous", + "is_target": false + }, + { + "feature_name": "density", + "data_type": "continuous", + "is_target": false + }, + { + "feature_name": "pH", + "data_type": "continuous", + "is_target": false + }, + { + "feature_name": "sulphates", + "data_type": "continuous", + "is_target": false + }, + { + "feature_name": "alcohol", + "data_type": "continuous", + "is_target": false + }, + { + "feature_name": "quality", + "data_type": "continuous", + "is_target": true + } +] \ No newline at end of file diff --git a/timecost/n3/tvae/tvae-n3-20260504_172819/staged/public/test.csv b/timecost/n3/tvae/tvae-n3-20260504_172819/staged/public/test.csv new file mode 100644 index 0000000000000000000000000000000000000000..db5cd50d3746410ea470625fa2ba2c8e9775cc0d --- /dev/null +++ b/timecost/n3/tvae/tvae-n3-20260504_172819/staged/public/test.csv @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:19e107152a94432e2a37ff045c00cfe35e1be30208b1553080d7dd0ede256d3b +size 28944 diff --git a/timecost/n3/tvae/tvae-n3-20260504_172819/staged/public/train.csv b/timecost/n3/tvae/tvae-n3-20260504_172819/staged/public/train.csv new file mode 100644 index 0000000000000000000000000000000000000000..87ca26726fe82ccbaa397919305b043c17eb374e --- /dev/null +++ b/timecost/n3/tvae/tvae-n3-20260504_172819/staged/public/train.csv @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:7813c8cca73ba4bfc6559215257b341c21e459980ad17ae6ddc809306bc9a0b9 +size 229945 diff --git a/timecost/n3/tvae/tvae-n3-20260504_172819/staged/public/val.csv b/timecost/n3/tvae/tvae-n3-20260504_172819/staged/public/val.csv new file mode 100644 index 0000000000000000000000000000000000000000..6acf84c76c47093b513c46d5503972a2dff275c0 --- /dev/null +++ b/timecost/n3/tvae/tvae-n3-20260504_172819/staged/public/val.csv @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:cf5979d9675567d9d6642640c9b84fc6c49e492604144723c30f50516c05cee6 +size 28791 diff --git a/timecost/n3/tvae/tvae-n3-20260504_172819/staged/tvae/adapter_report.json b/timecost/n3/tvae/tvae-n3-20260504_172819/staged/tvae/adapter_report.json new file mode 100644 index 0000000000000000000000000000000000000000..436c6632a83e944f916302eacceb905bc735db24 --- /dev/null +++ b/timecost/n3/tvae/tvae-n3-20260504_172819/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-Benchmark-trainonly-v1/n3/tvae/tvae-n3-20260504_172819/staged/tvae/model_input_manifest.json" +} \ No newline at end of file diff --git a/timecost/n3/tvae/tvae-n3-20260504_172819/staged/tvae/adapter_transforms_applied.json b/timecost/n3/tvae/tvae-n3-20260504_172819/staged/tvae/adapter_transforms_applied.json new file mode 100644 index 0000000000000000000000000000000000000000..0637a088a01e8ddab3bf3fa98dbe804cbde1a0dc --- /dev/null +++ b/timecost/n3/tvae/tvae-n3-20260504_172819/staged/tvae/adapter_transforms_applied.json @@ -0,0 +1 @@ +[] \ No newline at end of file diff --git a/timecost/n3/tvae/tvae-n3-20260504_172819/staged/tvae/model_input_manifest.json b/timecost/n3/tvae/tvae-n3-20260504_172819/staged/tvae/model_input_manifest.json new file mode 100644 index 0000000000000000000000000000000000000000..e3660e28dc0b8a7890bb14118217aabf16256b9c --- /dev/null +++ b/timecost/n3/tvae/tvae-n3-20260504_172819/staged/tvae/model_input_manifest.json @@ -0,0 +1,266 @@ +{ + "dataset_id": "n3", + "model": "tvae", + "target_column": "quality", + "task_type": "classification", + "column_schema": [ + { + "name": "fixed acidity", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 66, + "unique_ratio": 0.016845, + "example_values": [ + "7.1", + "8.5", + "6.4", + "6.8", + "7.6" + ] + } + }, + { + "name": "volatile acidity", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 121, + "unique_ratio": 0.030883, + "example_values": [ + "0.31", + "0.21", + "0.24", + "0.43", + "0.27" + ] + } + }, + { + "name": "citric acid", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 85, + "unique_ratio": 0.021695, + "example_values": [ + "0.17", + "0.41", + "0.31", + "0.25", + "0.3" + ] + } + }, + { + "name": "residual sugar", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 296, + "unique_ratio": 0.075549, + "example_values": [ + "1", + "4.3", + "2.8", + "13", + "12.9" + ] + } + }, + { + "name": "chlorides", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 147, + "unique_ratio": 0.037519, + "example_values": [ + "0.042", + "0.036", + "0.038", + "0.047", + "0.033" + ] + } + }, + { + "name": "free sulfur dioxide", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 120, + "unique_ratio": 0.030628, + "example_values": [ + "21", + "24", + "41", + "43", + "69" + ] + } + }, + { + "name": "total sulfur dioxide", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 244, + "unique_ratio": 0.062277, + "example_values": [ + "144", + "99", + "114", + "132", + "160" + ] + } + }, + { + "name": "density", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 839, + "unique_ratio": 0.21414, + "example_values": [ + "0.99304", + "0.9947", + "0.99155", + "0.98975", + "0.99705" + ] + } + }, + { + "name": "pH", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 100, + "unique_ratio": 0.025523, + "example_values": [ + "3.13", + "3.18", + "3.37", + "3.21", + "3.16" + ] + } + }, + { + "name": "sulphates", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 78, + "unique_ratio": 0.019908, + "example_values": [ + "0.4", + "0.53", + "0.66", + "0.47", + "0.5" + ] + } + }, + { + "name": "alcohol", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 97, + "unique_ratio": 0.024758, + "example_values": [ + "9.6", + "9.7", + "11.7", + "13.4", + "8.8" + ] + } + }, + { + "name": "quality", + "role": "target", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 7, + "unique_ratio": 0.001787, + "example_values": [ + "5", + "6", + "7", + "8", + "3" + ] + } + } + ], + "public_manifest": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/n3/tvae/tvae-n3-20260504_172819/public_gate/staged_input_manifest.json", + "train_csv": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/n3/tvae/tvae-n3-20260504_172819/staged/public/train.csv", + "val_csv": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/n3/tvae/tvae-n3-20260504_172819/staged/public/val.csv", + "test_csv": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/n3/tvae/tvae-n3-20260504_172819/staged/public/test.csv", + "features_json": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/n3/tvae/tvae-n3-20260504_172819/staged/public/staged_features.json", + "public_gate_report": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/n3/tvae/tvae-n3-20260504_172819/public_gate/public_gate_report.json" +} \ No newline at end of file diff --git a/timecost/n3/tvae/tvae-n3-20260504_172819/tvae-n3-3918-20260504_172901.csv b/timecost/n3/tvae/tvae-n3-20260504_172819/tvae-n3-3918-20260504_172901.csv new file mode 100644 index 0000000000000000000000000000000000000000..ce98bd29f56845d8d881c8f81d574afb9ea1db39 --- /dev/null +++ b/timecost/n3/tvae/tvae-n3-20260504_172819/tvae-n3-3918-20260504_172901.csv @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:c1705f92cdce4d8ba19f5c7cbe746d70c8efc8448d05c10bc2f7845b2ac2570b +size 820144 diff --git a/timecost/n3/tvae/tvae-n3-20260504_172819/tvae_metadata.json b/timecost/n3/tvae/tvae-n3-20260504_172819/tvae_metadata.json new file mode 100644 index 0000000000000000000000000000000000000000..40d513aa1aca4c6f5c1be8afc3d6a1a0c75aa74f --- /dev/null +++ b/timecost/n3/tvae/tvae-n3-20260504_172819/tvae_metadata.json @@ -0,0 +1,52 @@ +{ + "columns": [ + { + "name": "fixed acidity", + "type": "continuous" + }, + { + "name": "volatile acidity", + "type": "continuous" + }, + { + "name": "citric acid", + "type": "continuous" + }, + { + "name": "residual sugar", + "type": "continuous" + }, + { + "name": "chlorides", + "type": "continuous" + }, + { + "name": "free sulfur dioxide", + "type": "continuous" + }, + { + "name": "total sulfur dioxide", + "type": "continuous" + }, + { + "name": "density", + "type": "continuous" + }, + { + "name": "pH", + "type": "continuous" + }, + { + "name": "sulphates", + "type": "continuous" + }, + { + "name": "alcohol", + "type": "continuous" + }, + { + "name": "quality", + "type": "continuous" + } + ] +} \ No newline at end of file diff --git a/timecost/n3/tvae/tvae-n3-20260504_175727/_tvae_generate.py b/timecost/n3/tvae/tvae-n3-20260504_175727/_tvae_generate.py new file mode 100644 index 0000000000000000000000000000000000000000..4f19e5323617cc73049297e90dab025fa598fb8d --- /dev/null +++ b/timecost/n3/tvae/tvae-n3-20260504_175727/_tvae_generate.py @@ -0,0 +1,23 @@ +import os, sys +sys.path.insert(0, "/work") +from src.SpecificModels.ctgan_joblib_parallel_cap import apply_parallel_cap_from_env +apply_parallel_cap_from_env() +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 +os.environ.setdefault("LOKY_MAX_CPU_COUNT", "8") +os.environ.setdefault("OPENBLAS_NUM_THREADS", "8") +os.environ.setdefault("MKL_NUM_THREADS", "8") +model = TVAE.load("/work/output-Benchmark-trainonly-v1/n3/tvae/tvae-n3-20260504_175727/models_300epochs/tvae_300epochs.pt") +total = 3918 +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-Benchmark-trainonly-v1/n3/tvae/tvae-n3-20260504_175727/tvae-n3-3918-20260504_175758.csv", index=False) +print(f"[TVAE] Generated {total} rows (chunks={len(parts)}) -> /work/output-Benchmark-trainonly-v1/n3/tvae/tvae-n3-20260504_175727/tvae-n3-3918-20260504_175758.csv") diff --git a/timecost/n3/tvae/tvae-n3-20260504_175727/_tvae_train.py b/timecost/n3/tvae/tvae-n3-20260504_175727/_tvae_train.py new file mode 100644 index 0000000000000000000000000000000000000000..5dd280a8b9572c97a00b926438610b5dcbd8f601 --- /dev/null +++ b/timecost/n3/tvae/tvae-n3-20260504_175727/_tvae_train.py @@ -0,0 +1,39 @@ +import json, os, sys +sys.path.insert(0, "/work") +from src.SpecificModels.ctgan_joblib_parallel_cap import apply_parallel_cap_from_env +apply_parallel_cap_from_env() +import pandas as pd +from ctgan.data import read_csv +from ctgan.synthesizers.tvae import TVAE + +# Keep transform stage parallelism bounded for stability on shared host. +os.environ.setdefault("LOKY_MAX_CPU_COUNT", "8") +os.environ.setdefault("OPENBLAS_NUM_THREADS", "8") +os.environ.setdefault("MKL_NUM_THREADS", "8") +_nj = (os.environ.get("TVAE_CTGAN_JOBTRANS_N_JOBS") or "").strip() +if _nj: + print("[TVAE] joblib Parallel cap ON, TVAE_CTGAN_JOBTRANS_N_JOBS=" + _nj) +else: + print("[TVAE] joblib Parallel cap OFF (unset TVAE_CTGAN_JOBTRANS_N_JOBS)") +print("[TVAE] LOKY_MAX_CPU_COUNT=" + str(os.environ.get("LOKY_MAX_CPU_COUNT", ""))) + +csv_path = "/work/output-Benchmark-trainonly-v1/n3/tvae/tvae-n3-20260504_175727/staged/public/train.csv" +meta_path = "/work/output-Benchmark-trainonly-v1/n3/tvae/tvae-n3-20260504_175727/tvae_metadata.json" +save_path = "/work/output-Benchmark-trainonly-v1/n3/tvae/tvae-n3-20260504_175727/models_300epochs/tvae_300epochs.pt" +epochs = int(os.environ.get("TVAE_EPOCHS", 300)) +batch_size = int(os.environ.get("TVAE_BATCH_SIZE", "500")) +embedding_dim = int(os.environ.get("TVAE_EMBEDDING_DIM", "128")) +def _parse_dims(name, default): + raw = (os.environ.get(name) or "").strip() + if not raw: + return default + return tuple(int(x.strip()) for x in raw.split(",") if x.strip()) +compress_dims = _parse_dims("TVAE_COMPRESS_DIMS", (128, 128)) +decompress_dims = _parse_dims("TVAE_DECOMPRESS_DIMS", (128, 128)) + +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}, batch_size={batch_size}, embedding_dim={embedding_dim}, compress_dims={compress_dims}, decompress_dims={decompress_dims}") +model = TVAE(epochs=epochs, batch_size=batch_size, embedding_dim=embedding_dim, compress_dims=compress_dims, decompress_dims=decompress_dims) +model.fit(data, discrete_columns) +model.save(save_path) +print(f"[TVAE] Model saved -> {save_path}") diff --git a/timecost/n3/tvae/tvae-n3-20260504_175727/gen_20260504_175758.log b/timecost/n3/tvae/tvae-n3-20260504_175727/gen_20260504_175758.log new file mode 100644 index 0000000000000000000000000000000000000000..be2199d29a34a5d38935b76a6d7a38e67909605f --- /dev/null +++ b/timecost/n3/tvae/tvae-n3-20260504_175727/gen_20260504_175758.log @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:db448ebaabbc4cd4b4983a83fcceef6c65e0ea33541705bb461c888d9975eb40 +size 404 diff --git a/timecost/n3/tvae/tvae-n3-20260504_175727/input_snapshot.json b/timecost/n3/tvae/tvae-n3-20260504_175727/input_snapshot.json new file mode 100644 index 0000000000000000000000000000000000000000..1ddd4c8dc6c3d918927aad5bcb5dbb27f78068fe --- /dev/null +++ b/timecost/n3/tvae/tvae-n3-20260504_175727/input_snapshot.json @@ -0,0 +1,36 @@ +{ + "dataset_id": "n3", + "model": "tvae", + "inputs": { + "train_csv": { + "path": "/data/jialinzhang/SynthesizePipeline-server/DatasetNew/n3/n3-train.csv", + "exists": true, + "size": 211519, + "sha256": "2160a06db2fea02adb0ebb79d8d853bd2544580be301e71f6e8deeb1489a9009" + }, + "val_csv": { + "path": "/data/jialinzhang/SynthesizePipeline-server/DatasetNew/n3/n3-val.csv", + "exists": true, + "size": 26499, + "sha256": "d5ccfee07dfa9e7bdee5bb87642b43828e09f74c6cc0266a3d19d9feaa83106e" + }, + "test_csv": { + "path": "/data/jialinzhang/SynthesizePipeline-server/DatasetNew/n3/n3-test.csv", + "exists": true, + "size": 26676, + "sha256": "6f83aacb0d1747b95e287352a7fff5d9d65a1c127b773852346c68485c4ede47" + }, + "profile_json": { + "path": "/data/jialinzhang/SynthesizePipeline-server/DatasetNew/artifacts/data_core/tabular/n3/n3-dataset_profile.json", + "exists": true, + "size": 5235, + "sha256": "23d2e5904a2ca90cbf8d6e3c75887681721e9b90cc705c31a680c11513d0c46f" + }, + "contract_json": { + "path": "/data/jialinzhang/SynthesizePipeline-server/DatasetNew/artifacts/data_core/tabular/n3/n3-dataset_contract_v1.json", + "exists": true, + "size": 6281, + "sha256": "c0cc56f5fe28e1b65927255c6e3c2b0e9479862c2ec6f2fea1664da36c9a3a09" + } + } +} \ No newline at end of file diff --git a/timecost/n3/tvae/tvae-n3-20260504_175727/models_300epochs/train_20260504_175727.log b/timecost/n3/tvae/tvae-n3-20260504_175727/models_300epochs/train_20260504_175727.log new file mode 100644 index 0000000000000000000000000000000000000000..3e3799a9880df5025cf8ccc9aa86da10e6b560fe --- /dev/null +++ b/timecost/n3/tvae/tvae-n3-20260504_175727/models_300epochs/train_20260504_175727.log @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:82a8d64b2911679c891b7ffa21f7fab5f4b3a1f34882f998869e12b416f2fa7a +size 615 diff --git a/timecost/n3/tvae/tvae-n3-20260504_175727/models_300epochs/tvae_300epochs.pt b/timecost/n3/tvae/tvae-n3-20260504_175727/models_300epochs/tvae_300epochs.pt new file mode 100644 index 0000000000000000000000000000000000000000..bd6e93a7286e021ba3c52b9a2512cd47abe06ecd --- /dev/null +++ b/timecost/n3/tvae/tvae-n3-20260504_175727/models_300epochs/tvae_300epochs.pt @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:f2fd1df8cb6b44f16c94bcde8d66db7e09270950305b5018e9f53a6dd2c29431 +size 483628 diff --git a/timecost/n3/tvae/tvae-n3-20260504_175727/public_gate/normalized_schema_snapshot.json b/timecost/n3/tvae/tvae-n3-20260504_175727/public_gate/normalized_schema_snapshot.json new file mode 100644 index 0000000000000000000000000000000000000000..c41fe304503de23190a02e6cbfafa35b3bf134d3 --- /dev/null +++ b/timecost/n3/tvae/tvae-n3-20260504_175727/public_gate/normalized_schema_snapshot.json @@ -0,0 +1,259 @@ +{ + "dataset_id": "n3", + "target_column": "quality", + "task_type": "classification", + "columns": [ + { + "name": "fixed acidity", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 66, + "unique_ratio": 0.016845, + "example_values": [ + "7.1", + "8.5", + "6.4", + "6.8", + "7.6" + ] + } + }, + { + "name": "volatile acidity", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 121, + "unique_ratio": 0.030883, + "example_values": [ + "0.31", + "0.21", + "0.24", + "0.43", + "0.27" + ] + } + }, + { + "name": "citric acid", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 85, + "unique_ratio": 0.021695, + "example_values": [ + "0.17", + "0.41", + "0.31", + "0.25", + "0.3" + ] + } + }, + { + "name": "residual sugar", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 296, + "unique_ratio": 0.075549, + "example_values": [ + "1", + "4.3", + "2.8", + "13", + "12.9" + ] + } + }, + { + "name": "chlorides", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 147, + "unique_ratio": 0.037519, + "example_values": [ + "0.042", + "0.036", + "0.038", + "0.047", + "0.033" + ] + } + }, + { + "name": "free sulfur dioxide", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 120, + "unique_ratio": 0.030628, + "example_values": [ + "21", + "24", + "41", + "43", + "69" + ] + } + }, + { + "name": "total sulfur dioxide", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 244, + "unique_ratio": 0.062277, + "example_values": [ + "144", + "99", + "114", + "132", + "160" + ] + } + }, + { + "name": "density", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 839, + "unique_ratio": 0.21414, + "example_values": [ + "0.99304", + "0.9947", + "0.99155", + "0.98975", + "0.99705" + ] + } + }, + { + "name": "pH", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 100, + "unique_ratio": 0.025523, + "example_values": [ + "3.13", + "3.18", + "3.37", + "3.21", + "3.16" + ] + } + }, + { + "name": "sulphates", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 78, + "unique_ratio": 0.019908, + "example_values": [ + "0.4", + "0.53", + "0.66", + "0.47", + "0.5" + ] + } + }, + { + "name": "alcohol", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 97, + "unique_ratio": 0.024758, + "example_values": [ + "9.6", + "9.7", + "11.7", + "13.4", + "8.8" + ] + } + }, + { + "name": "quality", + "role": "target", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 7, + "unique_ratio": 0.001787, + "example_values": [ + "5", + "6", + "7", + "8", + "3" + ] + } + } + ] +} \ No newline at end of file diff --git a/timecost/n3/tvae/tvae-n3-20260504_175727/public_gate/public_gate_report.json b/timecost/n3/tvae/tvae-n3-20260504_175727/public_gate/public_gate_report.json new file mode 100644 index 0000000000000000000000000000000000000000..93b97319f739e39079d6c6549fd2020f8a6dac25 --- /dev/null +++ b/timecost/n3/tvae/tvae-n3-20260504_175727/public_gate/public_gate_report.json @@ -0,0 +1,37 @@ +{ + "dataset_id": "n3", + "status": "pass", + "checks": [ + { + "check_id": "PG001_csv_parse_ok", + "status": "pass" + }, + { + "check_id": "PG002_split_header_consistent", + "status": "pass" + }, + { + "check_id": "PG003_profile_header_match", + "status": "pass" + }, + { + "check_id": "PG004_missing_token_normalized", + "status": "pass" + }, + { + "check_id": "PG005_semantic_type_validated", + "status": "pass" + }, + { + "check_id": "PG006_target_defined_and_valid", + "status": "pass" + } + ], + "target_column": "quality", + "task_type": "classification", + "input_splits": { + "train": "/data/jialinzhang/SynthesizePipeline-server/DatasetNew/n3/n3-train.csv", + "val": "/data/jialinzhang/SynthesizePipeline-server/DatasetNew/n3/n3-val.csv", + "test": "/data/jialinzhang/SynthesizePipeline-server/DatasetNew/n3/n3-test.csv" + } +} \ No newline at end of file diff --git a/timecost/n3/tvae/tvae-n3-20260504_175727/public_gate/staged_input_manifest.json b/timecost/n3/tvae/tvae-n3-20260504_175727/public_gate/staged_input_manifest.json new file mode 100644 index 0000000000000000000000000000000000000000..cbbba1be64e5766989ea73aea1f9411b3baca043 --- /dev/null +++ b/timecost/n3/tvae/tvae-n3-20260504_175727/public_gate/staged_input_manifest.json @@ -0,0 +1,264 @@ +{ + "dataset_id": "n3", + "target_column": "quality", + "task_type": "classification", + "train_csv": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/n3/tvae/tvae-n3-20260504_175727/staged/public/train.csv", + "val_csv": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/n3/tvae/tvae-n3-20260504_175727/staged/public/val.csv", + "test_csv": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/n3/tvae/tvae-n3-20260504_175727/staged/public/test.csv", + "features_json": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/n3/tvae/tvae-n3-20260504_175727/staged/public/staged_features.json", + "public_gate_report": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/n3/tvae/tvae-n3-20260504_175727/public_gate/public_gate_report.json", + "column_schema": [ + { + "name": "fixed acidity", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 66, + "unique_ratio": 0.016845, + "example_values": [ + "7.1", + "8.5", + "6.4", + "6.8", + "7.6" + ] + } + }, + { + "name": "volatile acidity", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 121, + "unique_ratio": 0.030883, + "example_values": [ + "0.31", + "0.21", + "0.24", + "0.43", + "0.27" + ] + } + }, + { + "name": "citric acid", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 85, + "unique_ratio": 0.021695, + "example_values": [ + "0.17", + "0.41", + "0.31", + "0.25", + "0.3" + ] + } + }, + { + "name": "residual sugar", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 296, + "unique_ratio": 0.075549, + "example_values": [ + "1", + "4.3", + "2.8", + "13", + "12.9" + ] + } + }, + { + "name": "chlorides", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 147, + "unique_ratio": 0.037519, + "example_values": [ + "0.042", + "0.036", + "0.038", + "0.047", + "0.033" + ] + } + }, + { + "name": "free sulfur dioxide", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 120, + "unique_ratio": 0.030628, + "example_values": [ + "21", + "24", + "41", + "43", + "69" + ] + } + }, + { + "name": "total sulfur dioxide", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 244, + "unique_ratio": 0.062277, + "example_values": [ + "144", + "99", + "114", + "132", + "160" + ] + } + }, + { + "name": "density", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 839, + "unique_ratio": 0.21414, + "example_values": [ + "0.99304", + "0.9947", + "0.99155", + "0.98975", + "0.99705" + ] + } + }, + { + "name": "pH", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 100, + "unique_ratio": 0.025523, + "example_values": [ + "3.13", + "3.18", + "3.37", + "3.21", + "3.16" + ] + } + }, + { + "name": "sulphates", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 78, + "unique_ratio": 0.019908, + "example_values": [ + "0.4", + "0.53", + "0.66", + "0.47", + "0.5" + ] + } + }, + { + "name": "alcohol", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 97, + "unique_ratio": 0.024758, + "example_values": [ + "9.6", + "9.7", + "11.7", + "13.4", + "8.8" + ] + } + }, + { + "name": "quality", + "role": "target", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 7, + "unique_ratio": 0.001787, + "example_values": [ + "5", + "6", + "7", + "8", + "3" + ] + } + } + ] +} \ No newline at end of file diff --git a/timecost/n3/tvae/tvae-n3-20260504_175727/run_config.json b/timecost/n3/tvae/tvae-n3-20260504_175727/run_config.json new file mode 100644 index 0000000000000000000000000000000000000000..476cce53b4de9b5863fe65838040f9963af88ddd --- /dev/null +++ b/timecost/n3/tvae/tvae-n3-20260504_175727/run_config.json @@ -0,0 +1,45 @@ +{ + "schema_version": 1, + "recorded_at": "2026-05-04T17:57:27", + "dataset_id": "n3", + "model": "tvae", + "work_dir": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/n3/tvae/tvae-n3-20260504_175727", + "dataset_source_requested": "new", + "dataset_source_resolved": "new", + "cli_args": { + "model": "tvae", + "dataset": "n3", + "dataset_source": "new", + "train": true, + "generate": true, + "num_rows": 0, + "epochs": null, + "output_dir": null, + "model_dir": null, + "work_dir": null, + "resume": false, + "no_stats": false + }, + "resolved": { + "num_rows": 3918, + "model_path": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/n3/tvae/tvae-n3-20260504_175727/models_300epochs/tvae_300epochs.pt", + "output_csv": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/n3/tvae/tvae-n3-20260504_175727/tvae-n3-3918-20260504_175758.csv" + }, + "input_artifacts": { + "public_gate_report": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/n3/tvae/tvae-n3-20260504_175727/public_gate/public_gate_report.json", + "public_manifest": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/n3/tvae/tvae-n3-20260504_175727/public_gate/staged_input_manifest.json", + "model_manifest": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/n3/tvae/tvae-n3-20260504_175727/staged/tvae/model_input_manifest.json", + "train_csv": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/n3/tvae/tvae-n3-20260504_175727/staged/public/train.csv", + "features_json": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/n3/tvae/tvae-n3-20260504_175727/staged/public/staged_features.json", + "target_column": "quality", + "task_type": "classification" + }, + "env_overrides": { + "BENCHMARK_TVAE_GPUS": "device=3", + "TVAE_BATCH_SIZE": "256", + "TVAE_COMPRESS_DIMS": "64,64", + "TVAE_DECOMPRESS_DIMS": "64,64", + "TVAE_EMBEDDING_DIM": "32", + "TVAE_EPOCHS": "100" + } +} \ No newline at end of file diff --git a/timecost/n3/tvae/tvae-n3-20260504_175727/runtime_result.json b/timecost/n3/tvae/tvae-n3-20260504_175727/runtime_result.json new file mode 100644 index 0000000000000000000000000000000000000000..4e7dca245a4b8faedc34e16679bc9c6526dd056b --- /dev/null +++ b/timecost/n3/tvae/tvae-n3-20260504_175727/runtime_result.json @@ -0,0 +1,27 @@ +{ + "dataset_id": "n3", + "model": "tvae", + "run_id": "tvae-n3-20260504_175727", + "public_gate_status": "pass", + "adapter_ready_status": "pass", + "train_status": "success", + "generate_status": "success", + "reason_code": null, + "reason_detail": null, + "artifacts": { + "synthetic_csv": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/n3/tvae/tvae-n3-20260504_175727/tvae-n3-3918-20260504_175758.csv", + "model_path": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/n3/tvae/tvae-n3-20260504_175727/models_300epochs/tvae_300epochs.pt" + }, + "timings": { + "train": { + "started_at": "2026-05-04T17:57:27", + "ended_at": "2026-05-04T17:57:58", + "duration_sec": 30.698 + }, + "generate": { + "started_at": "2026-05-04T17:57:58", + "ended_at": "2026-05-04T17:58:03", + "duration_sec": 5.076 + } + } +} \ No newline at end of file diff --git a/timecost/n3/tvae/tvae-n3-20260504_175727/staged/public/staged_features.json b/timecost/n3/tvae/tvae-n3-20260504_175727/staged/public/staged_features.json new file mode 100644 index 0000000000000000000000000000000000000000..08fe4d766d091d2f2ddba724a16b9509cbe4c390 --- /dev/null +++ b/timecost/n3/tvae/tvae-n3-20260504_175727/staged/public/staged_features.json @@ -0,0 +1,62 @@ +[ + { + "feature_name": "fixed acidity", + "data_type": "continuous", + "is_target": false + }, + { + "feature_name": "volatile acidity", + "data_type": "continuous", + "is_target": false + }, + { + "feature_name": "citric acid", + "data_type": "continuous", + "is_target": false + }, + { + "feature_name": "residual sugar", + "data_type": "continuous", + "is_target": false + }, + { + "feature_name": "chlorides", + "data_type": "continuous", + "is_target": false + }, + { + "feature_name": "free sulfur dioxide", + "data_type": "continuous", + "is_target": false + }, + { + "feature_name": "total sulfur dioxide", + "data_type": "continuous", + "is_target": false + }, + { + "feature_name": "density", + "data_type": "continuous", + "is_target": false + }, + { + "feature_name": "pH", + "data_type": "continuous", + "is_target": false + }, + { + "feature_name": "sulphates", + "data_type": "continuous", + "is_target": false + }, + { + "feature_name": "alcohol", + "data_type": "continuous", + "is_target": false + }, + { + "feature_name": "quality", + "data_type": "continuous", + "is_target": true + } +] \ No newline at end of file diff --git a/timecost/n3/tvae/tvae-n3-20260504_175727/staged/public/test.csv b/timecost/n3/tvae/tvae-n3-20260504_175727/staged/public/test.csv new file mode 100644 index 0000000000000000000000000000000000000000..db5cd50d3746410ea470625fa2ba2c8e9775cc0d --- /dev/null +++ b/timecost/n3/tvae/tvae-n3-20260504_175727/staged/public/test.csv @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:19e107152a94432e2a37ff045c00cfe35e1be30208b1553080d7dd0ede256d3b +size 28944 diff --git a/timecost/n3/tvae/tvae-n3-20260504_175727/staged/public/train.csv b/timecost/n3/tvae/tvae-n3-20260504_175727/staged/public/train.csv new file mode 100644 index 0000000000000000000000000000000000000000..87ca26726fe82ccbaa397919305b043c17eb374e --- /dev/null +++ b/timecost/n3/tvae/tvae-n3-20260504_175727/staged/public/train.csv @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:7813c8cca73ba4bfc6559215257b341c21e459980ad17ae6ddc809306bc9a0b9 +size 229945 diff --git a/timecost/n3/tvae/tvae-n3-20260504_175727/staged/public/val.csv b/timecost/n3/tvae/tvae-n3-20260504_175727/staged/public/val.csv new file mode 100644 index 0000000000000000000000000000000000000000..6acf84c76c47093b513c46d5503972a2dff275c0 --- /dev/null +++ b/timecost/n3/tvae/tvae-n3-20260504_175727/staged/public/val.csv @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:cf5979d9675567d9d6642640c9b84fc6c49e492604144723c30f50516c05cee6 +size 28791 diff --git a/timecost/n3/tvae/tvae-n3-20260504_175727/staged/tvae/adapter_report.json b/timecost/n3/tvae/tvae-n3-20260504_175727/staged/tvae/adapter_report.json new file mode 100644 index 0000000000000000000000000000000000000000..932bdd965ac25575b89aacc386e5b63da77cd901 --- /dev/null +++ b/timecost/n3/tvae/tvae-n3-20260504_175727/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-Benchmark-trainonly-v1/n3/tvae/tvae-n3-20260504_175727/staged/tvae/model_input_manifest.json" +} \ No newline at end of file diff --git a/timecost/n3/tvae/tvae-n3-20260504_175727/staged/tvae/adapter_transforms_applied.json b/timecost/n3/tvae/tvae-n3-20260504_175727/staged/tvae/adapter_transforms_applied.json new file mode 100644 index 0000000000000000000000000000000000000000..0637a088a01e8ddab3bf3fa98dbe804cbde1a0dc --- /dev/null +++ b/timecost/n3/tvae/tvae-n3-20260504_175727/staged/tvae/adapter_transforms_applied.json @@ -0,0 +1 @@ +[] \ No newline at end of file diff --git a/timecost/n3/tvae/tvae-n3-20260504_175727/staged/tvae/model_input_manifest.json b/timecost/n3/tvae/tvae-n3-20260504_175727/staged/tvae/model_input_manifest.json new file mode 100644 index 0000000000000000000000000000000000000000..680296f3d23aec9509440d7e5bc44b47598a28db --- /dev/null +++ b/timecost/n3/tvae/tvae-n3-20260504_175727/staged/tvae/model_input_manifest.json @@ -0,0 +1,266 @@ +{ + "dataset_id": "n3", + "model": "tvae", + "target_column": "quality", + "task_type": "classification", + "column_schema": [ + { + "name": "fixed acidity", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 66, + "unique_ratio": 0.016845, + "example_values": [ + "7.1", + "8.5", + "6.4", + "6.8", + "7.6" + ] + } + }, + { + "name": "volatile acidity", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 121, + "unique_ratio": 0.030883, + "example_values": [ + "0.31", + "0.21", + "0.24", + "0.43", + "0.27" + ] + } + }, + { + "name": "citric acid", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 85, + "unique_ratio": 0.021695, + "example_values": [ + "0.17", + "0.41", + "0.31", + "0.25", + "0.3" + ] + } + }, + { + "name": "residual sugar", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 296, + "unique_ratio": 0.075549, + "example_values": [ + "1", + "4.3", + "2.8", + "13", + "12.9" + ] + } + }, + { + "name": "chlorides", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 147, + "unique_ratio": 0.037519, + "example_values": [ + "0.042", + "0.036", + "0.038", + "0.047", + "0.033" + ] + } + }, + { + "name": "free sulfur dioxide", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 120, + "unique_ratio": 0.030628, + "example_values": [ + "21", + "24", + "41", + "43", + "69" + ] + } + }, + { + "name": "total sulfur dioxide", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 244, + "unique_ratio": 0.062277, + "example_values": [ + "144", + "99", + "114", + "132", + "160" + ] + } + }, + { + "name": "density", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 839, + "unique_ratio": 0.21414, + "example_values": [ + "0.99304", + "0.9947", + "0.99155", + "0.98975", + "0.99705" + ] + } + }, + { + "name": "pH", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 100, + "unique_ratio": 0.025523, + "example_values": [ + "3.13", + "3.18", + "3.37", + "3.21", + "3.16" + ] + } + }, + { + "name": "sulphates", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 78, + "unique_ratio": 0.019908, + "example_values": [ + "0.4", + "0.53", + "0.66", + "0.47", + "0.5" + ] + } + }, + { + "name": "alcohol", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 97, + "unique_ratio": 0.024758, + "example_values": [ + "9.6", + "9.7", + "11.7", + "13.4", + "8.8" + ] + } + }, + { + "name": "quality", + "role": "target", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 7, + "unique_ratio": 0.001787, + "example_values": [ + "5", + "6", + "7", + "8", + "3" + ] + } + } + ], + "public_manifest": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/n3/tvae/tvae-n3-20260504_175727/public_gate/staged_input_manifest.json", + "train_csv": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/n3/tvae/tvae-n3-20260504_175727/staged/public/train.csv", + "val_csv": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/n3/tvae/tvae-n3-20260504_175727/staged/public/val.csv", + "test_csv": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/n3/tvae/tvae-n3-20260504_175727/staged/public/test.csv", + "features_json": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/n3/tvae/tvae-n3-20260504_175727/staged/public/staged_features.json", + "public_gate_report": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/n3/tvae/tvae-n3-20260504_175727/public_gate/public_gate_report.json" +} \ No newline at end of file diff --git a/timecost/n3/tvae/tvae-n3-20260504_175727/tvae-n3-3918-20260504_175758.csv b/timecost/n3/tvae/tvae-n3-20260504_175727/tvae-n3-3918-20260504_175758.csv new file mode 100644 index 0000000000000000000000000000000000000000..0a57c670225b053fefa39b1041779c74e85b01fd --- /dev/null +++ b/timecost/n3/tvae/tvae-n3-20260504_175727/tvae-n3-3918-20260504_175758.csv @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:dbe1d4fdb0a9c6941467d3a92e4d25426d59c01623a0623cfcdef6d4fe7f84b9 +size 820357 diff --git a/timecost/n3/tvae/tvae-n3-20260504_175727/tvae_metadata.json b/timecost/n3/tvae/tvae-n3-20260504_175727/tvae_metadata.json new file mode 100644 index 0000000000000000000000000000000000000000..40d513aa1aca4c6f5c1be8afc3d6a1a0c75aa74f --- /dev/null +++ b/timecost/n3/tvae/tvae-n3-20260504_175727/tvae_metadata.json @@ -0,0 +1,52 @@ +{ + "columns": [ + { + "name": "fixed acidity", + "type": "continuous" + }, + { + "name": "volatile acidity", + "type": "continuous" + }, + { + "name": "citric acid", + "type": "continuous" + }, + { + "name": "residual sugar", + "type": "continuous" + }, + { + "name": "chlorides", + "type": "continuous" + }, + { + "name": "free sulfur dioxide", + "type": "continuous" + }, + { + "name": "total sulfur dioxide", + "type": "continuous" + }, + { + "name": "density", + "type": "continuous" + }, + { + "name": "pH", + "type": "continuous" + }, + { + "name": "sulphates", + "type": "continuous" + }, + { + "name": "alcohol", + "type": "continuous" + }, + { + "name": "quality", + "type": "continuous" + } + ] +} \ No newline at end of file diff --git a/timecost/n3/tvae/tvae-n3-20260504_175816/_tvae_generate.py b/timecost/n3/tvae/tvae-n3-20260504_175816/_tvae_generate.py new file mode 100644 index 0000000000000000000000000000000000000000..24ca6e385d540d624017847f47ba243f2999bd56 --- /dev/null +++ b/timecost/n3/tvae/tvae-n3-20260504_175816/_tvae_generate.py @@ -0,0 +1,23 @@ +import os, sys +sys.path.insert(0, "/work") +from src.SpecificModels.ctgan_joblib_parallel_cap import apply_parallel_cap_from_env +apply_parallel_cap_from_env() +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 +os.environ.setdefault("LOKY_MAX_CPU_COUNT", "8") +os.environ.setdefault("OPENBLAS_NUM_THREADS", "8") +os.environ.setdefault("MKL_NUM_THREADS", "8") +model = TVAE.load("/work/output-Benchmark-trainonly-v1/n3/tvae/tvae-n3-20260504_175816/models_300epochs/tvae_300epochs.pt") +total = 3918 +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-Benchmark-trainonly-v1/n3/tvae/tvae-n3-20260504_175816/tvae-n3-3918-20260504_175903.csv", index=False) +print(f"[TVAE] Generated {total} rows (chunks={len(parts)}) -> /work/output-Benchmark-trainonly-v1/n3/tvae/tvae-n3-20260504_175816/tvae-n3-3918-20260504_175903.csv") diff --git a/timecost/n3/tvae/tvae-n3-20260504_175816/_tvae_train.py b/timecost/n3/tvae/tvae-n3-20260504_175816/_tvae_train.py new file mode 100644 index 0000000000000000000000000000000000000000..6a0e13d23bea670f006bdee5b27f5ed16ac0aace --- /dev/null +++ b/timecost/n3/tvae/tvae-n3-20260504_175816/_tvae_train.py @@ -0,0 +1,39 @@ +import json, os, sys +sys.path.insert(0, "/work") +from src.SpecificModels.ctgan_joblib_parallel_cap import apply_parallel_cap_from_env +apply_parallel_cap_from_env() +import pandas as pd +from ctgan.data import read_csv +from ctgan.synthesizers.tvae import TVAE + +# Keep transform stage parallelism bounded for stability on shared host. +os.environ.setdefault("LOKY_MAX_CPU_COUNT", "8") +os.environ.setdefault("OPENBLAS_NUM_THREADS", "8") +os.environ.setdefault("MKL_NUM_THREADS", "8") +_nj = (os.environ.get("TVAE_CTGAN_JOBTRANS_N_JOBS") or "").strip() +if _nj: + print("[TVAE] joblib Parallel cap ON, TVAE_CTGAN_JOBTRANS_N_JOBS=" + _nj) +else: + print("[TVAE] joblib Parallel cap OFF (unset TVAE_CTGAN_JOBTRANS_N_JOBS)") +print("[TVAE] LOKY_MAX_CPU_COUNT=" + str(os.environ.get("LOKY_MAX_CPU_COUNT", ""))) + +csv_path = "/work/output-Benchmark-trainonly-v1/n3/tvae/tvae-n3-20260504_175816/staged/public/train.csv" +meta_path = "/work/output-Benchmark-trainonly-v1/n3/tvae/tvae-n3-20260504_175816/tvae_metadata.json" +save_path = "/work/output-Benchmark-trainonly-v1/n3/tvae/tvae-n3-20260504_175816/models_300epochs/tvae_300epochs.pt" +epochs = int(os.environ.get("TVAE_EPOCHS", 300)) +batch_size = int(os.environ.get("TVAE_BATCH_SIZE", "500")) +embedding_dim = int(os.environ.get("TVAE_EMBEDDING_DIM", "128")) +def _parse_dims(name, default): + raw = (os.environ.get(name) or "").strip() + if not raw: + return default + return tuple(int(x.strip()) for x in raw.split(",") if x.strip()) +compress_dims = _parse_dims("TVAE_COMPRESS_DIMS", (128, 128)) +decompress_dims = _parse_dims("TVAE_DECOMPRESS_DIMS", (128, 128)) + +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}, batch_size={batch_size}, embedding_dim={embedding_dim}, compress_dims={compress_dims}, decompress_dims={decompress_dims}") +model = TVAE(epochs=epochs, batch_size=batch_size, embedding_dim=embedding_dim, compress_dims=compress_dims, decompress_dims=decompress_dims) +model.fit(data, discrete_columns) +model.save(save_path) +print(f"[TVAE] Model saved -> {save_path}") diff --git a/timecost/n3/tvae/tvae-n3-20260504_175816/gen_20260504_175903.log b/timecost/n3/tvae/tvae-n3-20260504_175816/gen_20260504_175903.log new file mode 100644 index 0000000000000000000000000000000000000000..c9e9969cc7e63477a8419ee427d1b2f909f6c489 --- /dev/null +++ b/timecost/n3/tvae/tvae-n3-20260504_175816/gen_20260504_175903.log @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:7ef6bcb79b68ef381cc6167555080df374451239d37735e6378da6ec9d372ef7 +size 404 diff --git a/timecost/n3/tvae/tvae-n3-20260504_175816/input_snapshot.json b/timecost/n3/tvae/tvae-n3-20260504_175816/input_snapshot.json new file mode 100644 index 0000000000000000000000000000000000000000..1ddd4c8dc6c3d918927aad5bcb5dbb27f78068fe --- /dev/null +++ b/timecost/n3/tvae/tvae-n3-20260504_175816/input_snapshot.json @@ -0,0 +1,36 @@ +{ + "dataset_id": "n3", + "model": "tvae", + "inputs": { + "train_csv": { + "path": "/data/jialinzhang/SynthesizePipeline-server/DatasetNew/n3/n3-train.csv", + "exists": true, + "size": 211519, + "sha256": "2160a06db2fea02adb0ebb79d8d853bd2544580be301e71f6e8deeb1489a9009" + }, + "val_csv": { + "path": "/data/jialinzhang/SynthesizePipeline-server/DatasetNew/n3/n3-val.csv", + "exists": true, + "size": 26499, + "sha256": "d5ccfee07dfa9e7bdee5bb87642b43828e09f74c6cc0266a3d19d9feaa83106e" + }, + "test_csv": { + "path": "/data/jialinzhang/SynthesizePipeline-server/DatasetNew/n3/n3-test.csv", + "exists": true, + "size": 26676, + "sha256": "6f83aacb0d1747b95e287352a7fff5d9d65a1c127b773852346c68485c4ede47" + }, + "profile_json": { + "path": "/data/jialinzhang/SynthesizePipeline-server/DatasetNew/artifacts/data_core/tabular/n3/n3-dataset_profile.json", + "exists": true, + "size": 5235, + "sha256": "23d2e5904a2ca90cbf8d6e3c75887681721e9b90cc705c31a680c11513d0c46f" + }, + "contract_json": { + "path": "/data/jialinzhang/SynthesizePipeline-server/DatasetNew/artifacts/data_core/tabular/n3/n3-dataset_contract_v1.json", + "exists": true, + "size": 6281, + "sha256": "c0cc56f5fe28e1b65927255c6e3c2b0e9479862c2ec6f2fea1664da36c9a3a09" + } + } +} \ No newline at end of file diff --git a/timecost/n3/tvae/tvae-n3-20260504_175816/models_300epochs/train_20260504_175816.log b/timecost/n3/tvae/tvae-n3-20260504_175816/models_300epochs/train_20260504_175816.log new file mode 100644 index 0000000000000000000000000000000000000000..e055fa1e98372dbec5a8ffce805628a103a9f72b --- /dev/null +++ b/timecost/n3/tvae/tvae-n3-20260504_175816/models_300epochs/train_20260504_175816.log @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:b7a1bb315d7e1616fb4b8e5138da885661581807139f1f08e2621acd28c45b85 +size 619 diff --git a/timecost/n3/tvae/tvae-n3-20260504_175816/models_300epochs/tvae_300epochs.pt b/timecost/n3/tvae/tvae-n3-20260504_175816/models_300epochs/tvae_300epochs.pt new file mode 100644 index 0000000000000000000000000000000000000000..8178e9c8a08578eab3591ce64b4bf5d1b6f97b66 --- /dev/null +++ b/timecost/n3/tvae/tvae-n3-20260504_175816/models_300epochs/tvae_300epochs.pt @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:5c1219c5d288f89182065305ca98b09ef876d744e9426781fc7af1ace88c8b95 +size 629484 diff --git a/timecost/n3/tvae/tvae-n3-20260504_175816/public_gate/normalized_schema_snapshot.json b/timecost/n3/tvae/tvae-n3-20260504_175816/public_gate/normalized_schema_snapshot.json new file mode 100644 index 0000000000000000000000000000000000000000..c41fe304503de23190a02e6cbfafa35b3bf134d3 --- /dev/null +++ b/timecost/n3/tvae/tvae-n3-20260504_175816/public_gate/normalized_schema_snapshot.json @@ -0,0 +1,259 @@ +{ + "dataset_id": "n3", + "target_column": "quality", + "task_type": "classification", + "columns": [ + { + "name": "fixed acidity", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 66, + "unique_ratio": 0.016845, + "example_values": [ + "7.1", + "8.5", + "6.4", + "6.8", + "7.6" + ] + } + }, + { + "name": "volatile acidity", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 121, + "unique_ratio": 0.030883, + "example_values": [ + "0.31", + "0.21", + "0.24", + "0.43", + "0.27" + ] + } + }, + { + "name": "citric acid", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 85, + "unique_ratio": 0.021695, + "example_values": [ + "0.17", + "0.41", + "0.31", + "0.25", + "0.3" + ] + } + }, + { + "name": "residual sugar", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 296, + "unique_ratio": 0.075549, + "example_values": [ + "1", + "4.3", + "2.8", + "13", + "12.9" + ] + } + }, + { + "name": "chlorides", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 147, + "unique_ratio": 0.037519, + "example_values": [ + "0.042", + "0.036", + "0.038", + "0.047", + "0.033" + ] + } + }, + { + "name": "free sulfur dioxide", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 120, + "unique_ratio": 0.030628, + "example_values": [ + "21", + "24", + "41", + "43", + "69" + ] + } + }, + { + "name": "total sulfur dioxide", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 244, + "unique_ratio": 0.062277, + "example_values": [ + "144", + "99", + "114", + "132", + "160" + ] + } + }, + { + "name": "density", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 839, + "unique_ratio": 0.21414, + "example_values": [ + "0.99304", + "0.9947", + "0.99155", + "0.98975", + "0.99705" + ] + } + }, + { + "name": "pH", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 100, + "unique_ratio": 0.025523, + "example_values": [ + "3.13", + "3.18", + "3.37", + "3.21", + "3.16" + ] + } + }, + { + "name": "sulphates", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 78, + "unique_ratio": 0.019908, + "example_values": [ + "0.4", + "0.53", + "0.66", + "0.47", + "0.5" + ] + } + }, + { + "name": "alcohol", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 97, + "unique_ratio": 0.024758, + "example_values": [ + "9.6", + "9.7", + "11.7", + "13.4", + "8.8" + ] + } + }, + { + "name": "quality", + "role": "target", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 7, + "unique_ratio": 0.001787, + "example_values": [ + "5", + "6", + "7", + "8", + "3" + ] + } + } + ] +} \ No newline at end of file diff --git a/timecost/n3/tvae/tvae-n3-20260504_175816/public_gate/public_gate_report.json b/timecost/n3/tvae/tvae-n3-20260504_175816/public_gate/public_gate_report.json new file mode 100644 index 0000000000000000000000000000000000000000..93b97319f739e39079d6c6549fd2020f8a6dac25 --- /dev/null +++ b/timecost/n3/tvae/tvae-n3-20260504_175816/public_gate/public_gate_report.json @@ -0,0 +1,37 @@ +{ + "dataset_id": "n3", + "status": "pass", + "checks": [ + { + "check_id": "PG001_csv_parse_ok", + "status": "pass" + }, + { + "check_id": "PG002_split_header_consistent", + "status": "pass" + }, + { + "check_id": "PG003_profile_header_match", + "status": "pass" + }, + { + "check_id": "PG004_missing_token_normalized", + "status": "pass" + }, + { + "check_id": "PG005_semantic_type_validated", + "status": "pass" + }, + { + "check_id": "PG006_target_defined_and_valid", + "status": "pass" + } + ], + "target_column": "quality", + "task_type": "classification", + "input_splits": { + "train": "/data/jialinzhang/SynthesizePipeline-server/DatasetNew/n3/n3-train.csv", + "val": "/data/jialinzhang/SynthesizePipeline-server/DatasetNew/n3/n3-val.csv", + "test": "/data/jialinzhang/SynthesizePipeline-server/DatasetNew/n3/n3-test.csv" + } +} \ No newline at end of file diff --git a/timecost/n3/tvae/tvae-n3-20260504_175816/public_gate/staged_input_manifest.json b/timecost/n3/tvae/tvae-n3-20260504_175816/public_gate/staged_input_manifest.json new file mode 100644 index 0000000000000000000000000000000000000000..795108ea10aec7b6850ee89aa206d4217dce08d3 --- /dev/null +++ b/timecost/n3/tvae/tvae-n3-20260504_175816/public_gate/staged_input_manifest.json @@ -0,0 +1,264 @@ +{ + "dataset_id": "n3", + "target_column": "quality", + "task_type": "classification", + "train_csv": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/n3/tvae/tvae-n3-20260504_175816/staged/public/train.csv", + "val_csv": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/n3/tvae/tvae-n3-20260504_175816/staged/public/val.csv", + "test_csv": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/n3/tvae/tvae-n3-20260504_175816/staged/public/test.csv", + "features_json": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/n3/tvae/tvae-n3-20260504_175816/staged/public/staged_features.json", + "public_gate_report": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/n3/tvae/tvae-n3-20260504_175816/public_gate/public_gate_report.json", + "column_schema": [ + { + "name": "fixed acidity", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 66, + "unique_ratio": 0.016845, + "example_values": [ + "7.1", + "8.5", + "6.4", + "6.8", + "7.6" + ] + } + }, + { + "name": "volatile acidity", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 121, + "unique_ratio": 0.030883, + "example_values": [ + "0.31", + "0.21", + "0.24", + "0.43", + "0.27" + ] + } + }, + { + "name": "citric acid", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 85, + "unique_ratio": 0.021695, + "example_values": [ + "0.17", + "0.41", + "0.31", + "0.25", + "0.3" + ] + } + }, + { + "name": "residual sugar", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 296, + "unique_ratio": 0.075549, + "example_values": [ + "1", + "4.3", + "2.8", + "13", + "12.9" + ] + } + }, + { + "name": "chlorides", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 147, + "unique_ratio": 0.037519, + "example_values": [ + "0.042", + "0.036", + "0.038", + "0.047", + "0.033" + ] + } + }, + { + "name": "free sulfur dioxide", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 120, + "unique_ratio": 0.030628, + "example_values": [ + "21", + "24", + "41", + "43", + "69" + ] + } + }, + { + "name": "total sulfur dioxide", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 244, + "unique_ratio": 0.062277, + "example_values": [ + "144", + "99", + "114", + "132", + "160" + ] + } + }, + { + "name": "density", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 839, + "unique_ratio": 0.21414, + "example_values": [ + "0.99304", + "0.9947", + "0.99155", + "0.98975", + "0.99705" + ] + } + }, + { + "name": "pH", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 100, + "unique_ratio": 0.025523, + "example_values": [ + "3.13", + "3.18", + "3.37", + "3.21", + "3.16" + ] + } + }, + { + "name": "sulphates", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 78, + "unique_ratio": 0.019908, + "example_values": [ + "0.4", + "0.53", + "0.66", + "0.47", + "0.5" + ] + } + }, + { + "name": "alcohol", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 97, + "unique_ratio": 0.024758, + "example_values": [ + "9.6", + "9.7", + "11.7", + "13.4", + "8.8" + ] + } + }, + { + "name": "quality", + "role": "target", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 7, + "unique_ratio": 0.001787, + "example_values": [ + "5", + "6", + "7", + "8", + "3" + ] + } + } + ] +} \ No newline at end of file diff --git a/timecost/n3/tvae/tvae-n3-20260504_175816/run_config.json b/timecost/n3/tvae/tvae-n3-20260504_175816/run_config.json new file mode 100644 index 0000000000000000000000000000000000000000..a83b606c335354f7750215aac6c84ea7ab6e2311 --- /dev/null +++ b/timecost/n3/tvae/tvae-n3-20260504_175816/run_config.json @@ -0,0 +1,45 @@ +{ + "schema_version": 1, + "recorded_at": "2026-05-04T17:58:16", + "dataset_id": "n3", + "model": "tvae", + "work_dir": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/n3/tvae/tvae-n3-20260504_175816", + "dataset_source_requested": "new", + "dataset_source_resolved": "new", + "cli_args": { + "model": "tvae", + "dataset": "n3", + "dataset_source": "new", + "train": true, + "generate": true, + "num_rows": 0, + "epochs": null, + "output_dir": null, + "model_dir": null, + "work_dir": null, + "resume": false, + "no_stats": false + }, + "resolved": { + "num_rows": 3918, + "model_path": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/n3/tvae/tvae-n3-20260504_175816/models_300epochs/tvae_300epochs.pt", + "output_csv": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/n3/tvae/tvae-n3-20260504_175816/tvae-n3-3918-20260504_175903.csv" + }, + "input_artifacts": { + "public_gate_report": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/n3/tvae/tvae-n3-20260504_175816/public_gate/public_gate_report.json", + "public_manifest": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/n3/tvae/tvae-n3-20260504_175816/public_gate/staged_input_manifest.json", + "model_manifest": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/n3/tvae/tvae-n3-20260504_175816/staged/tvae/model_input_manifest.json", + "train_csv": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/n3/tvae/tvae-n3-20260504_175816/staged/public/train.csv", + "features_json": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/n3/tvae/tvae-n3-20260504_175816/staged/public/staged_features.json", + "target_column": "quality", + "task_type": "classification" + }, + "env_overrides": { + "BENCHMARK_TVAE_GPUS": "device=3", + "TVAE_BATCH_SIZE": "256", + "TVAE_COMPRESS_DIMS": "128,128", + "TVAE_DECOMPRESS_DIMS": "128,128", + "TVAE_EMBEDDING_DIM": "64", + "TVAE_EPOCHS": "200" + } +} \ No newline at end of file diff --git a/timecost/n3/tvae/tvae-n3-20260504_175816/runtime_result.json b/timecost/n3/tvae/tvae-n3-20260504_175816/runtime_result.json new file mode 100644 index 0000000000000000000000000000000000000000..159c4a5fd0a1edff1eac689ed7375964f539a203 --- /dev/null +++ b/timecost/n3/tvae/tvae-n3-20260504_175816/runtime_result.json @@ -0,0 +1,27 @@ +{ + "dataset_id": "n3", + "model": "tvae", + "run_id": "tvae-n3-20260504_175816", + "public_gate_status": "pass", + "adapter_ready_status": "pass", + "train_status": "success", + "generate_status": "success", + "reason_code": null, + "reason_detail": null, + "artifacts": { + "synthetic_csv": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/n3/tvae/tvae-n3-20260504_175816/tvae-n3-3918-20260504_175903.csv", + "model_path": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/n3/tvae/tvae-n3-20260504_175816/models_300epochs/tvae_300epochs.pt" + }, + "timings": { + "train": { + "started_at": "2026-05-04T17:58:16", + "ended_at": "2026-05-04T17:59:03", + "duration_sec": 46.905 + }, + "generate": { + "started_at": "2026-05-04T17:59:03", + "ended_at": "2026-05-04T17:59:08", + "duration_sec": 5.167 + } + } +} \ No newline at end of file diff --git a/timecost/n3/tvae/tvae-n3-20260504_175816/staged/public/staged_features.json b/timecost/n3/tvae/tvae-n3-20260504_175816/staged/public/staged_features.json new file mode 100644 index 0000000000000000000000000000000000000000..08fe4d766d091d2f2ddba724a16b9509cbe4c390 --- /dev/null +++ b/timecost/n3/tvae/tvae-n3-20260504_175816/staged/public/staged_features.json @@ -0,0 +1,62 @@ +[ + { + "feature_name": "fixed acidity", + "data_type": "continuous", + "is_target": false + }, + { + "feature_name": "volatile acidity", + "data_type": "continuous", + "is_target": false + }, + { + "feature_name": "citric acid", + "data_type": "continuous", + "is_target": false + }, + { + "feature_name": "residual sugar", + "data_type": "continuous", + "is_target": false + }, + { + "feature_name": "chlorides", + "data_type": "continuous", + "is_target": false + }, + { + "feature_name": "free sulfur dioxide", + "data_type": "continuous", + "is_target": false + }, + { + "feature_name": "total sulfur dioxide", + "data_type": "continuous", + "is_target": false + }, + { + "feature_name": "density", + "data_type": "continuous", + "is_target": false + }, + { + "feature_name": "pH", + "data_type": "continuous", + "is_target": false + }, + { + "feature_name": "sulphates", + "data_type": "continuous", + "is_target": false + }, + { + "feature_name": "alcohol", + "data_type": "continuous", + "is_target": false + }, + { + "feature_name": "quality", + "data_type": "continuous", + "is_target": true + } +] \ No newline at end of file diff --git a/timecost/n3/tvae/tvae-n3-20260504_175816/staged/public/test.csv b/timecost/n3/tvae/tvae-n3-20260504_175816/staged/public/test.csv new file mode 100644 index 0000000000000000000000000000000000000000..db5cd50d3746410ea470625fa2ba2c8e9775cc0d --- /dev/null +++ b/timecost/n3/tvae/tvae-n3-20260504_175816/staged/public/test.csv @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:19e107152a94432e2a37ff045c00cfe35e1be30208b1553080d7dd0ede256d3b +size 28944 diff --git a/timecost/n3/tvae/tvae-n3-20260504_175816/staged/public/train.csv b/timecost/n3/tvae/tvae-n3-20260504_175816/staged/public/train.csv new file mode 100644 index 0000000000000000000000000000000000000000..87ca26726fe82ccbaa397919305b043c17eb374e --- /dev/null +++ b/timecost/n3/tvae/tvae-n3-20260504_175816/staged/public/train.csv @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:7813c8cca73ba4bfc6559215257b341c21e459980ad17ae6ddc809306bc9a0b9 +size 229945 diff --git a/timecost/n3/tvae/tvae-n3-20260504_175816/staged/public/val.csv b/timecost/n3/tvae/tvae-n3-20260504_175816/staged/public/val.csv new file mode 100644 index 0000000000000000000000000000000000000000..6acf84c76c47093b513c46d5503972a2dff275c0 --- /dev/null +++ b/timecost/n3/tvae/tvae-n3-20260504_175816/staged/public/val.csv @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:cf5979d9675567d9d6642640c9b84fc6c49e492604144723c30f50516c05cee6 +size 28791 diff --git a/timecost/n3/tvae/tvae-n3-20260504_175816/staged/tvae/adapter_report.json b/timecost/n3/tvae/tvae-n3-20260504_175816/staged/tvae/adapter_report.json new file mode 100644 index 0000000000000000000000000000000000000000..4906762fcd87b8cfc5f451f77798b330c3a27006 --- /dev/null +++ b/timecost/n3/tvae/tvae-n3-20260504_175816/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-Benchmark-trainonly-v1/n3/tvae/tvae-n3-20260504_175816/staged/tvae/model_input_manifest.json" +} \ No newline at end of file diff --git a/timecost/n3/tvae/tvae-n3-20260504_175816/staged/tvae/adapter_transforms_applied.json b/timecost/n3/tvae/tvae-n3-20260504_175816/staged/tvae/adapter_transforms_applied.json new file mode 100644 index 0000000000000000000000000000000000000000..0637a088a01e8ddab3bf3fa98dbe804cbde1a0dc --- /dev/null +++ b/timecost/n3/tvae/tvae-n3-20260504_175816/staged/tvae/adapter_transforms_applied.json @@ -0,0 +1 @@ +[] \ No newline at end of file diff --git a/timecost/n3/tvae/tvae-n3-20260504_175816/staged/tvae/model_input_manifest.json b/timecost/n3/tvae/tvae-n3-20260504_175816/staged/tvae/model_input_manifest.json new file mode 100644 index 0000000000000000000000000000000000000000..7016c089e285e0a36a9663608cee98e2ce64f3ca --- /dev/null +++ b/timecost/n3/tvae/tvae-n3-20260504_175816/staged/tvae/model_input_manifest.json @@ -0,0 +1,266 @@ +{ + "dataset_id": "n3", + "model": "tvae", + "target_column": "quality", + "task_type": "classification", + "column_schema": [ + { + "name": "fixed acidity", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 66, + "unique_ratio": 0.016845, + "example_values": [ + "7.1", + "8.5", + "6.4", + "6.8", + "7.6" + ] + } + }, + { + "name": "volatile acidity", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 121, + "unique_ratio": 0.030883, + "example_values": [ + "0.31", + "0.21", + "0.24", + "0.43", + "0.27" + ] + } + }, + { + "name": "citric acid", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 85, + "unique_ratio": 0.021695, + "example_values": [ + "0.17", + "0.41", + "0.31", + "0.25", + "0.3" + ] + } + }, + { + "name": "residual sugar", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 296, + "unique_ratio": 0.075549, + "example_values": [ + "1", + "4.3", + "2.8", + "13", + "12.9" + ] + } + }, + { + "name": "chlorides", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 147, + "unique_ratio": 0.037519, + "example_values": [ + "0.042", + "0.036", + "0.038", + "0.047", + "0.033" + ] + } + }, + { + "name": "free sulfur dioxide", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 120, + "unique_ratio": 0.030628, + "example_values": [ + "21", + "24", + "41", + "43", + "69" + ] + } + }, + { + "name": "total sulfur dioxide", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 244, + "unique_ratio": 0.062277, + "example_values": [ + "144", + "99", + "114", + "132", + "160" + ] + } + }, + { + "name": "density", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 839, + "unique_ratio": 0.21414, + "example_values": [ + "0.99304", + "0.9947", + "0.99155", + "0.98975", + "0.99705" + ] + } + }, + { + "name": "pH", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 100, + "unique_ratio": 0.025523, + "example_values": [ + "3.13", + "3.18", + "3.37", + "3.21", + "3.16" + ] + } + }, + { + "name": "sulphates", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 78, + "unique_ratio": 0.019908, + "example_values": [ + "0.4", + "0.53", + "0.66", + "0.47", + "0.5" + ] + } + }, + { + "name": "alcohol", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 97, + "unique_ratio": 0.024758, + "example_values": [ + "9.6", + "9.7", + "11.7", + "13.4", + "8.8" + ] + } + }, + { + "name": "quality", + "role": "target", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 7, + "unique_ratio": 0.001787, + "example_values": [ + "5", + "6", + "7", + "8", + "3" + ] + } + } + ], + "public_manifest": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/n3/tvae/tvae-n3-20260504_175816/public_gate/staged_input_manifest.json", + "train_csv": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/n3/tvae/tvae-n3-20260504_175816/staged/public/train.csv", + "val_csv": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/n3/tvae/tvae-n3-20260504_175816/staged/public/val.csv", + "test_csv": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/n3/tvae/tvae-n3-20260504_175816/staged/public/test.csv", + "features_json": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/n3/tvae/tvae-n3-20260504_175816/staged/public/staged_features.json", + "public_gate_report": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/n3/tvae/tvae-n3-20260504_175816/public_gate/public_gate_report.json" +} \ No newline at end of file diff --git a/timecost/n3/tvae/tvae-n3-20260504_175816/tvae-n3-3918-20260504_175903.csv b/timecost/n3/tvae/tvae-n3-20260504_175816/tvae-n3-3918-20260504_175903.csv new file mode 100644 index 0000000000000000000000000000000000000000..c871e4db264e0e2b15d05c0dfec0c9dd73881acb --- /dev/null +++ b/timecost/n3/tvae/tvae-n3-20260504_175816/tvae-n3-3918-20260504_175903.csv @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:34093f1f385b8ca62254520bd2e29c6c778ad9d30d1dd4273306d4abe54ea110 +size 820253 diff --git a/timecost/n3/tvae/tvae-n3-20260504_175816/tvae_metadata.json b/timecost/n3/tvae/tvae-n3-20260504_175816/tvae_metadata.json new file mode 100644 index 0000000000000000000000000000000000000000..40d513aa1aca4c6f5c1be8afc3d6a1a0c75aa74f --- /dev/null +++ b/timecost/n3/tvae/tvae-n3-20260504_175816/tvae_metadata.json @@ -0,0 +1,52 @@ +{ + "columns": [ + { + "name": "fixed acidity", + "type": "continuous" + }, + { + "name": "volatile acidity", + "type": "continuous" + }, + { + "name": "citric acid", + "type": "continuous" + }, + { + "name": "residual sugar", + "type": "continuous" + }, + { + "name": "chlorides", + "type": "continuous" + }, + { + "name": "free sulfur dioxide", + "type": "continuous" + }, + { + "name": "total sulfur dioxide", + "type": "continuous" + }, + { + "name": "density", + "type": "continuous" + }, + { + "name": "pH", + "type": "continuous" + }, + { + "name": "sulphates", + "type": "continuous" + }, + { + "name": "alcohol", + "type": "continuous" + }, + { + "name": "quality", + "type": "continuous" + } + ] +} \ No newline at end of file diff --git a/timecost/n3/tvae/tvae-n3-20260504_175920/_tvae_generate.py b/timecost/n3/tvae/tvae-n3-20260504_175920/_tvae_generate.py new file mode 100644 index 0000000000000000000000000000000000000000..b7c5471b4f309613a61d50a47fc13bb5ba9a7bf0 --- /dev/null +++ b/timecost/n3/tvae/tvae-n3-20260504_175920/_tvae_generate.py @@ -0,0 +1,23 @@ +import os, sys +sys.path.insert(0, "/work") +from src.SpecificModels.ctgan_joblib_parallel_cap import apply_parallel_cap_from_env +apply_parallel_cap_from_env() +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 +os.environ.setdefault("LOKY_MAX_CPU_COUNT", "8") +os.environ.setdefault("OPENBLAS_NUM_THREADS", "8") +os.environ.setdefault("MKL_NUM_THREADS", "8") +model = TVAE.load("/work/output-Benchmark-trainonly-v1/n3/tvae/tvae-n3-20260504_175920/models_300epochs/tvae_300epochs.pt") +total = 3918 +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-Benchmark-trainonly-v1/n3/tvae/tvae-n3-20260504_175920/tvae-n3-3918-20260504_180001.csv", index=False) +print(f"[TVAE] Generated {total} rows (chunks={len(parts)}) -> /work/output-Benchmark-trainonly-v1/n3/tvae/tvae-n3-20260504_175920/tvae-n3-3918-20260504_180001.csv") diff --git a/timecost/n3/tvae/tvae-n3-20260504_175920/_tvae_train.py b/timecost/n3/tvae/tvae-n3-20260504_175920/_tvae_train.py new file mode 100644 index 0000000000000000000000000000000000000000..67d99ebd85e50e12aca0f56191b29ca86c4abf8f --- /dev/null +++ b/timecost/n3/tvae/tvae-n3-20260504_175920/_tvae_train.py @@ -0,0 +1,39 @@ +import json, os, sys +sys.path.insert(0, "/work") +from src.SpecificModels.ctgan_joblib_parallel_cap import apply_parallel_cap_from_env +apply_parallel_cap_from_env() +import pandas as pd +from ctgan.data import read_csv +from ctgan.synthesizers.tvae import TVAE + +# Keep transform stage parallelism bounded for stability on shared host. +os.environ.setdefault("LOKY_MAX_CPU_COUNT", "8") +os.environ.setdefault("OPENBLAS_NUM_THREADS", "8") +os.environ.setdefault("MKL_NUM_THREADS", "8") +_nj = (os.environ.get("TVAE_CTGAN_JOBTRANS_N_JOBS") or "").strip() +if _nj: + print("[TVAE] joblib Parallel cap ON, TVAE_CTGAN_JOBTRANS_N_JOBS=" + _nj) +else: + print("[TVAE] joblib Parallel cap OFF (unset TVAE_CTGAN_JOBTRANS_N_JOBS)") +print("[TVAE] LOKY_MAX_CPU_COUNT=" + str(os.environ.get("LOKY_MAX_CPU_COUNT", ""))) + +csv_path = "/work/output-Benchmark-trainonly-v1/n3/tvae/tvae-n3-20260504_175920/staged/public/train.csv" +meta_path = "/work/output-Benchmark-trainonly-v1/n3/tvae/tvae-n3-20260504_175920/tvae_metadata.json" +save_path = "/work/output-Benchmark-trainonly-v1/n3/tvae/tvae-n3-20260504_175920/models_300epochs/tvae_300epochs.pt" +epochs = int(os.environ.get("TVAE_EPOCHS", 300)) +batch_size = int(os.environ.get("TVAE_BATCH_SIZE", "500")) +embedding_dim = int(os.environ.get("TVAE_EMBEDDING_DIM", "128")) +def _parse_dims(name, default): + raw = (os.environ.get(name) or "").strip() + if not raw: + return default + return tuple(int(x.strip()) for x in raw.split(",") if x.strip()) +compress_dims = _parse_dims("TVAE_COMPRESS_DIMS", (128, 128)) +decompress_dims = _parse_dims("TVAE_DECOMPRESS_DIMS", (128, 128)) + +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}, batch_size={batch_size}, embedding_dim={embedding_dim}, compress_dims={compress_dims}, decompress_dims={decompress_dims}") +model = TVAE(epochs=epochs, batch_size=batch_size, embedding_dim=embedding_dim, compress_dims=compress_dims, decompress_dims=decompress_dims) +model.fit(data, discrete_columns) +model.save(save_path) +print(f"[TVAE] Model saved -> {save_path}") diff --git a/timecost/n3/tvae/tvae-n3-20260504_175920/gen_20260504_180001.log b/timecost/n3/tvae/tvae-n3-20260504_175920/gen_20260504_180001.log new file mode 100644 index 0000000000000000000000000000000000000000..6c444db1593eca9af73a52c23d9523948af9cfb9 --- /dev/null +++ b/timecost/n3/tvae/tvae-n3-20260504_175920/gen_20260504_180001.log @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:3258505060bad9eddfae5d88bef19d324c0af15ebd939152edb79eb981d1a7f2 +size 404 diff --git a/timecost/n3/tvae/tvae-n3-20260504_175920/input_snapshot.json b/timecost/n3/tvae/tvae-n3-20260504_175920/input_snapshot.json new file mode 100644 index 0000000000000000000000000000000000000000..1ddd4c8dc6c3d918927aad5bcb5dbb27f78068fe --- /dev/null +++ b/timecost/n3/tvae/tvae-n3-20260504_175920/input_snapshot.json @@ -0,0 +1,36 @@ +{ + "dataset_id": "n3", + "model": "tvae", + "inputs": { + "train_csv": { + "path": "/data/jialinzhang/SynthesizePipeline-server/DatasetNew/n3/n3-train.csv", + "exists": true, + "size": 211519, + "sha256": "2160a06db2fea02adb0ebb79d8d853bd2544580be301e71f6e8deeb1489a9009" + }, + "val_csv": { + "path": "/data/jialinzhang/SynthesizePipeline-server/DatasetNew/n3/n3-val.csv", + "exists": true, + "size": 26499, + "sha256": "d5ccfee07dfa9e7bdee5bb87642b43828e09f74c6cc0266a3d19d9feaa83106e" + }, + "test_csv": { + "path": "/data/jialinzhang/SynthesizePipeline-server/DatasetNew/n3/n3-test.csv", + "exists": true, + "size": 26676, + "sha256": "6f83aacb0d1747b95e287352a7fff5d9d65a1c127b773852346c68485c4ede47" + }, + "profile_json": { + "path": "/data/jialinzhang/SynthesizePipeline-server/DatasetNew/artifacts/data_core/tabular/n3/n3-dataset_profile.json", + "exists": true, + "size": 5235, + "sha256": "23d2e5904a2ca90cbf8d6e3c75887681721e9b90cc705c31a680c11513d0c46f" + }, + "contract_json": { + "path": "/data/jialinzhang/SynthesizePipeline-server/DatasetNew/artifacts/data_core/tabular/n3/n3-dataset_contract_v1.json", + "exists": true, + "size": 6281, + "sha256": "c0cc56f5fe28e1b65927255c6e3c2b0e9479862c2ec6f2fea1664da36c9a3a09" + } + } +} \ No newline at end of file diff --git a/timecost/n3/tvae/tvae-n3-20260504_175920/models_300epochs/train_20260504_175920.log b/timecost/n3/tvae/tvae-n3-20260504_175920/models_300epochs/train_20260504_175920.log new file mode 100644 index 0000000000000000000000000000000000000000..bb635666427be4bc6541bc02b0980803dc26081b --- /dev/null +++ b/timecost/n3/tvae/tvae-n3-20260504_175920/models_300epochs/train_20260504_175920.log @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:3246fcae64caa9d1f197b3c707eb5cbb869dae2b365054835064835b12f15cc4 +size 621 diff --git a/timecost/n3/tvae/tvae-n3-20260504_175920/models_300epochs/tvae_300epochs.pt b/timecost/n3/tvae/tvae-n3-20260504_175920/models_300epochs/tvae_300epochs.pt new file mode 100644 index 0000000000000000000000000000000000000000..293036634de2b5a65e841089d896f1a4976dacbe --- /dev/null +++ b/timecost/n3/tvae/tvae-n3-20260504_175920/models_300epochs/tvae_300epochs.pt @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:e5ecf7fdadac2f0c22d5370480070c14ac52d23d18da4afbba806695176caa8d +size 961900 diff --git a/timecost/n3/tvae/tvae-n3-20260504_175920/public_gate/normalized_schema_snapshot.json b/timecost/n3/tvae/tvae-n3-20260504_175920/public_gate/normalized_schema_snapshot.json new file mode 100644 index 0000000000000000000000000000000000000000..c41fe304503de23190a02e6cbfafa35b3bf134d3 --- /dev/null +++ b/timecost/n3/tvae/tvae-n3-20260504_175920/public_gate/normalized_schema_snapshot.json @@ -0,0 +1,259 @@ +{ + "dataset_id": "n3", + "target_column": "quality", + "task_type": "classification", + "columns": [ + { + "name": "fixed acidity", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 66, + "unique_ratio": 0.016845, + "example_values": [ + "7.1", + "8.5", + "6.4", + "6.8", + "7.6" + ] + } + }, + { + "name": "volatile acidity", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 121, + "unique_ratio": 0.030883, + "example_values": [ + "0.31", + "0.21", + "0.24", + "0.43", + "0.27" + ] + } + }, + { + "name": "citric acid", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 85, + "unique_ratio": 0.021695, + "example_values": [ + "0.17", + "0.41", + "0.31", + "0.25", + "0.3" + ] + } + }, + { + "name": "residual sugar", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 296, + "unique_ratio": 0.075549, + "example_values": [ + "1", + "4.3", + "2.8", + "13", + "12.9" + ] + } + }, + { + "name": "chlorides", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 147, + "unique_ratio": 0.037519, + "example_values": [ + "0.042", + "0.036", + "0.038", + "0.047", + "0.033" + ] + } + }, + { + "name": "free sulfur dioxide", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 120, + "unique_ratio": 0.030628, + "example_values": [ + "21", + "24", + "41", + "43", + "69" + ] + } + }, + { + "name": "total sulfur dioxide", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 244, + "unique_ratio": 0.062277, + "example_values": [ + "144", + "99", + "114", + "132", + "160" + ] + } + }, + { + "name": "density", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 839, + "unique_ratio": 0.21414, + "example_values": [ + "0.99304", + "0.9947", + "0.99155", + "0.98975", + "0.99705" + ] + } + }, + { + "name": "pH", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 100, + "unique_ratio": 0.025523, + "example_values": [ + "3.13", + "3.18", + "3.37", + "3.21", + "3.16" + ] + } + }, + { + "name": "sulphates", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 78, + "unique_ratio": 0.019908, + "example_values": [ + "0.4", + "0.53", + "0.66", + "0.47", + "0.5" + ] + } + }, + { + "name": "alcohol", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 97, + "unique_ratio": 0.024758, + "example_values": [ + "9.6", + "9.7", + "11.7", + "13.4", + "8.8" + ] + } + }, + { + "name": "quality", + "role": "target", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 7, + "unique_ratio": 0.001787, + "example_values": [ + "5", + "6", + "7", + "8", + "3" + ] + } + } + ] +} \ No newline at end of file diff --git a/timecost/n3/tvae/tvae-n3-20260504_175920/public_gate/public_gate_report.json b/timecost/n3/tvae/tvae-n3-20260504_175920/public_gate/public_gate_report.json new file mode 100644 index 0000000000000000000000000000000000000000..93b97319f739e39079d6c6549fd2020f8a6dac25 --- /dev/null +++ b/timecost/n3/tvae/tvae-n3-20260504_175920/public_gate/public_gate_report.json @@ -0,0 +1,37 @@ +{ + "dataset_id": "n3", + "status": "pass", + "checks": [ + { + "check_id": "PG001_csv_parse_ok", + "status": "pass" + }, + { + "check_id": "PG002_split_header_consistent", + "status": "pass" + }, + { + "check_id": "PG003_profile_header_match", + "status": "pass" + }, + { + "check_id": "PG004_missing_token_normalized", + "status": "pass" + }, + { + "check_id": "PG005_semantic_type_validated", + "status": "pass" + }, + { + "check_id": "PG006_target_defined_and_valid", + "status": "pass" + } + ], + "target_column": "quality", + "task_type": "classification", + "input_splits": { + "train": "/data/jialinzhang/SynthesizePipeline-server/DatasetNew/n3/n3-train.csv", + "val": "/data/jialinzhang/SynthesizePipeline-server/DatasetNew/n3/n3-val.csv", + "test": "/data/jialinzhang/SynthesizePipeline-server/DatasetNew/n3/n3-test.csv" + } +} \ No newline at end of file diff --git a/timecost/n3/tvae/tvae-n3-20260504_175920/public_gate/staged_input_manifest.json b/timecost/n3/tvae/tvae-n3-20260504_175920/public_gate/staged_input_manifest.json new file mode 100644 index 0000000000000000000000000000000000000000..7560f360e5cd3e3d8d65c17ab0b0b7c6073a67a1 --- /dev/null +++ b/timecost/n3/tvae/tvae-n3-20260504_175920/public_gate/staged_input_manifest.json @@ -0,0 +1,264 @@ +{ + "dataset_id": "n3", + "target_column": "quality", + "task_type": "classification", + "train_csv": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/n3/tvae/tvae-n3-20260504_175920/staged/public/train.csv", + "val_csv": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/n3/tvae/tvae-n3-20260504_175920/staged/public/val.csv", + "test_csv": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/n3/tvae/tvae-n3-20260504_175920/staged/public/test.csv", + "features_json": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/n3/tvae/tvae-n3-20260504_175920/staged/public/staged_features.json", + "public_gate_report": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/n3/tvae/tvae-n3-20260504_175920/public_gate/public_gate_report.json", + "column_schema": [ + { + "name": "fixed acidity", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 66, + "unique_ratio": 0.016845, + "example_values": [ + "7.1", + "8.5", + "6.4", + "6.8", + "7.6" + ] + } + }, + { + "name": "volatile acidity", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 121, + "unique_ratio": 0.030883, + "example_values": [ + "0.31", + "0.21", + "0.24", + "0.43", + "0.27" + ] + } + }, + { + "name": "citric acid", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 85, + "unique_ratio": 0.021695, + "example_values": [ + "0.17", + "0.41", + "0.31", + "0.25", + "0.3" + ] + } + }, + { + "name": "residual sugar", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 296, + "unique_ratio": 0.075549, + "example_values": [ + "1", + "4.3", + "2.8", + "13", + "12.9" + ] + } + }, + { + "name": "chlorides", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 147, + "unique_ratio": 0.037519, + "example_values": [ + "0.042", + "0.036", + "0.038", + "0.047", + "0.033" + ] + } + }, + { + "name": "free sulfur dioxide", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 120, + "unique_ratio": 0.030628, + "example_values": [ + "21", + "24", + "41", + "43", + "69" + ] + } + }, + { + "name": "total sulfur dioxide", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 244, + "unique_ratio": 0.062277, + "example_values": [ + "144", + "99", + "114", + "132", + "160" + ] + } + }, + { + "name": "density", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 839, + "unique_ratio": 0.21414, + "example_values": [ + "0.99304", + "0.9947", + "0.99155", + "0.98975", + "0.99705" + ] + } + }, + { + "name": "pH", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 100, + "unique_ratio": 0.025523, + "example_values": [ + "3.13", + "3.18", + "3.37", + "3.21", + "3.16" + ] + } + }, + { + "name": "sulphates", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 78, + "unique_ratio": 0.019908, + "example_values": [ + "0.4", + "0.53", + "0.66", + "0.47", + "0.5" + ] + } + }, + { + "name": "alcohol", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 97, + "unique_ratio": 0.024758, + "example_values": [ + "9.6", + "9.7", + "11.7", + "13.4", + "8.8" + ] + } + }, + { + "name": "quality", + "role": "target", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 7, + "unique_ratio": 0.001787, + "example_values": [ + "5", + "6", + "7", + "8", + "3" + ] + } + } + ] +} \ No newline at end of file diff --git a/timecost/n3/tvae/tvae-n3-20260504_175920/run_config.json b/timecost/n3/tvae/tvae-n3-20260504_175920/run_config.json new file mode 100644 index 0000000000000000000000000000000000000000..34e80e8598db7b9fc46661a8ead04a98458a2905 --- /dev/null +++ b/timecost/n3/tvae/tvae-n3-20260504_175920/run_config.json @@ -0,0 +1,45 @@ +{ + "schema_version": 1, + "recorded_at": "2026-05-04T17:59:20", + "dataset_id": "n3", + "model": "tvae", + "work_dir": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/n3/tvae/tvae-n3-20260504_175920", + "dataset_source_requested": "new", + "dataset_source_resolved": "new", + "cli_args": { + "model": "tvae", + "dataset": "n3", + "dataset_source": "new", + "train": true, + "generate": true, + "num_rows": 0, + "epochs": null, + "output_dir": null, + "model_dir": null, + "work_dir": null, + "resume": false, + "no_stats": false + }, + "resolved": { + "num_rows": 3918, + "model_path": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/n3/tvae/tvae-n3-20260504_175920/models_300epochs/tvae_300epochs.pt", + "output_csv": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/n3/tvae/tvae-n3-20260504_175920/tvae-n3-3918-20260504_180001.csv" + }, + "input_artifacts": { + "public_gate_report": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/n3/tvae/tvae-n3-20260504_175920/public_gate/public_gate_report.json", + "public_manifest": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/n3/tvae/tvae-n3-20260504_175920/public_gate/staged_input_manifest.json", + "model_manifest": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/n3/tvae/tvae-n3-20260504_175920/staged/tvae/model_input_manifest.json", + "train_csv": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/n3/tvae/tvae-n3-20260504_175920/staged/public/train.csv", + "features_json": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/n3/tvae/tvae-n3-20260504_175920/staged/public/staged_features.json", + "target_column": "quality", + "task_type": "classification" + }, + "env_overrides": { + "BENCHMARK_TVAE_GPUS": "device=3", + "TVAE_BATCH_SIZE": "500", + "TVAE_COMPRESS_DIMS": "256,256", + "TVAE_DECOMPRESS_DIMS": "256,256", + "TVAE_EMBEDDING_DIM": "128", + "TVAE_EPOCHS": "300" + } +} \ No newline at end of file diff --git a/timecost/n3/tvae/tvae-n3-20260504_175920/runtime_result.json b/timecost/n3/tvae/tvae-n3-20260504_175920/runtime_result.json new file mode 100644 index 0000000000000000000000000000000000000000..49fc9d14f7eebd1186ffb28e9aedc8a6c3906d77 --- /dev/null +++ b/timecost/n3/tvae/tvae-n3-20260504_175920/runtime_result.json @@ -0,0 +1,27 @@ +{ + "dataset_id": "n3", + "model": "tvae", + "run_id": "tvae-n3-20260504_175920", + "public_gate_status": "pass", + "adapter_ready_status": "pass", + "train_status": "success", + "generate_status": "success", + "reason_code": null, + "reason_detail": null, + "artifacts": { + "synthetic_csv": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/n3/tvae/tvae-n3-20260504_175920/tvae-n3-3918-20260504_180001.csv", + "model_path": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/n3/tvae/tvae-n3-20260504_175920/models_300epochs/tvae_300epochs.pt" + }, + "timings": { + "train": { + "started_at": "2026-05-04T17:59:20", + "ended_at": "2026-05-04T18:00:01", + "duration_sec": 40.617 + }, + "generate": { + "started_at": "2026-05-04T18:00:01", + "ended_at": "2026-05-04T18:00:06", + "duration_sec": 5.402 + } + } +} \ No newline at end of file diff --git a/timecost/n3/tvae/tvae-n3-20260504_175920/staged/public/staged_features.json b/timecost/n3/tvae/tvae-n3-20260504_175920/staged/public/staged_features.json new file mode 100644 index 0000000000000000000000000000000000000000..08fe4d766d091d2f2ddba724a16b9509cbe4c390 --- /dev/null +++ b/timecost/n3/tvae/tvae-n3-20260504_175920/staged/public/staged_features.json @@ -0,0 +1,62 @@ +[ + { + "feature_name": "fixed acidity", + "data_type": "continuous", + "is_target": false + }, + { + "feature_name": "volatile acidity", + "data_type": "continuous", + "is_target": false + }, + { + "feature_name": "citric acid", + "data_type": "continuous", + "is_target": false + }, + { + "feature_name": "residual sugar", + "data_type": "continuous", + "is_target": false + }, + { + "feature_name": "chlorides", + "data_type": "continuous", + "is_target": false + }, + { + "feature_name": "free sulfur dioxide", + "data_type": "continuous", + "is_target": false + }, + { + "feature_name": "total sulfur dioxide", + "data_type": "continuous", + "is_target": false + }, + { + "feature_name": "density", + "data_type": "continuous", + "is_target": false + }, + { + "feature_name": "pH", + "data_type": "continuous", + "is_target": false + }, + { + "feature_name": "sulphates", + "data_type": "continuous", + "is_target": false + }, + { + "feature_name": "alcohol", + "data_type": "continuous", + "is_target": false + }, + { + "feature_name": "quality", + "data_type": "continuous", + "is_target": true + } +] \ No newline at end of file diff --git a/timecost/n3/tvae/tvae-n3-20260504_175920/staged/public/test.csv b/timecost/n3/tvae/tvae-n3-20260504_175920/staged/public/test.csv new file mode 100644 index 0000000000000000000000000000000000000000..db5cd50d3746410ea470625fa2ba2c8e9775cc0d --- /dev/null +++ b/timecost/n3/tvae/tvae-n3-20260504_175920/staged/public/test.csv @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:19e107152a94432e2a37ff045c00cfe35e1be30208b1553080d7dd0ede256d3b +size 28944 diff --git a/timecost/n3/tvae/tvae-n3-20260504_175920/staged/public/train.csv b/timecost/n3/tvae/tvae-n3-20260504_175920/staged/public/train.csv new file mode 100644 index 0000000000000000000000000000000000000000..87ca26726fe82ccbaa397919305b043c17eb374e --- /dev/null +++ b/timecost/n3/tvae/tvae-n3-20260504_175920/staged/public/train.csv @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:7813c8cca73ba4bfc6559215257b341c21e459980ad17ae6ddc809306bc9a0b9 +size 229945 diff --git a/timecost/n3/tvae/tvae-n3-20260504_175920/staged/public/val.csv b/timecost/n3/tvae/tvae-n3-20260504_175920/staged/public/val.csv new file mode 100644 index 0000000000000000000000000000000000000000..6acf84c76c47093b513c46d5503972a2dff275c0 --- /dev/null +++ b/timecost/n3/tvae/tvae-n3-20260504_175920/staged/public/val.csv @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:cf5979d9675567d9d6642640c9b84fc6c49e492604144723c30f50516c05cee6 +size 28791 diff --git a/timecost/n3/tvae/tvae-n3-20260504_175920/staged/tvae/adapter_report.json b/timecost/n3/tvae/tvae-n3-20260504_175920/staged/tvae/adapter_report.json new file mode 100644 index 0000000000000000000000000000000000000000..5e760452fe41abe214bea5ff450a4bdd298ca99f --- /dev/null +++ b/timecost/n3/tvae/tvae-n3-20260504_175920/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-Benchmark-trainonly-v1/n3/tvae/tvae-n3-20260504_175920/staged/tvae/model_input_manifest.json" +} \ No newline at end of file diff --git a/timecost/n3/tvae/tvae-n3-20260504_175920/staged/tvae/adapter_transforms_applied.json b/timecost/n3/tvae/tvae-n3-20260504_175920/staged/tvae/adapter_transforms_applied.json new file mode 100644 index 0000000000000000000000000000000000000000..0637a088a01e8ddab3bf3fa98dbe804cbde1a0dc --- /dev/null +++ b/timecost/n3/tvae/tvae-n3-20260504_175920/staged/tvae/adapter_transforms_applied.json @@ -0,0 +1 @@ +[] \ No newline at end of file diff --git a/timecost/n3/tvae/tvae-n3-20260504_175920/staged/tvae/model_input_manifest.json b/timecost/n3/tvae/tvae-n3-20260504_175920/staged/tvae/model_input_manifest.json new file mode 100644 index 0000000000000000000000000000000000000000..c69c3ba21654f8efa24eaac3a211ba89fbc00e3b --- /dev/null +++ b/timecost/n3/tvae/tvae-n3-20260504_175920/staged/tvae/model_input_manifest.json @@ -0,0 +1,266 @@ +{ + "dataset_id": "n3", + "model": "tvae", + "target_column": "quality", + "task_type": "classification", + "column_schema": [ + { + "name": "fixed acidity", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 66, + "unique_ratio": 0.016845, + "example_values": [ + "7.1", + "8.5", + "6.4", + "6.8", + "7.6" + ] + } + }, + { + "name": "volatile acidity", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 121, + "unique_ratio": 0.030883, + "example_values": [ + "0.31", + "0.21", + "0.24", + "0.43", + "0.27" + ] + } + }, + { + "name": "citric acid", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 85, + "unique_ratio": 0.021695, + "example_values": [ + "0.17", + "0.41", + "0.31", + "0.25", + "0.3" + ] + } + }, + { + "name": "residual sugar", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 296, + "unique_ratio": 0.075549, + "example_values": [ + "1", + "4.3", + "2.8", + "13", + "12.9" + ] + } + }, + { + "name": "chlorides", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 147, + "unique_ratio": 0.037519, + "example_values": [ + "0.042", + "0.036", + "0.038", + "0.047", + "0.033" + ] + } + }, + { + "name": "free sulfur dioxide", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 120, + "unique_ratio": 0.030628, + "example_values": [ + "21", + "24", + "41", + "43", + "69" + ] + } + }, + { + "name": "total sulfur dioxide", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 244, + "unique_ratio": 0.062277, + "example_values": [ + "144", + "99", + "114", + "132", + "160" + ] + } + }, + { + "name": "density", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 839, + "unique_ratio": 0.21414, + "example_values": [ + "0.99304", + "0.9947", + "0.99155", + "0.98975", + "0.99705" + ] + } + }, + { + "name": "pH", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 100, + "unique_ratio": 0.025523, + "example_values": [ + "3.13", + "3.18", + "3.37", + "3.21", + "3.16" + ] + } + }, + { + "name": "sulphates", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 78, + "unique_ratio": 0.019908, + "example_values": [ + "0.4", + "0.53", + "0.66", + "0.47", + "0.5" + ] + } + }, + { + "name": "alcohol", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 97, + "unique_ratio": 0.024758, + "example_values": [ + "9.6", + "9.7", + "11.7", + "13.4", + "8.8" + ] + } + }, + { + "name": "quality", + "role": "target", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 7, + "unique_ratio": 0.001787, + "example_values": [ + "5", + "6", + "7", + "8", + "3" + ] + } + } + ], + "public_manifest": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/n3/tvae/tvae-n3-20260504_175920/public_gate/staged_input_manifest.json", + "train_csv": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/n3/tvae/tvae-n3-20260504_175920/staged/public/train.csv", + "val_csv": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/n3/tvae/tvae-n3-20260504_175920/staged/public/val.csv", + "test_csv": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/n3/tvae/tvae-n3-20260504_175920/staged/public/test.csv", + "features_json": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/n3/tvae/tvae-n3-20260504_175920/staged/public/staged_features.json", + "public_gate_report": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/n3/tvae/tvae-n3-20260504_175920/public_gate/public_gate_report.json" +} \ No newline at end of file diff --git a/timecost/n3/tvae/tvae-n3-20260504_175920/tvae-n3-3918-20260504_180001.csv b/timecost/n3/tvae/tvae-n3-20260504_175920/tvae-n3-3918-20260504_180001.csv new file mode 100644 index 0000000000000000000000000000000000000000..10ad6aea130216e24134b4f882c5fe5f1a9f8431 --- /dev/null +++ b/timecost/n3/tvae/tvae-n3-20260504_175920/tvae-n3-3918-20260504_180001.csv @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:8fbb4d91efeeeb1d7eeebb166c9f1c4576bf4e0bea0ff15c6104fdfade300582 +size 820263 diff --git a/timecost/n3/tvae/tvae-n3-20260504_175920/tvae_metadata.json b/timecost/n3/tvae/tvae-n3-20260504_175920/tvae_metadata.json new file mode 100644 index 0000000000000000000000000000000000000000..40d513aa1aca4c6f5c1be8afc3d6a1a0c75aa74f --- /dev/null +++ b/timecost/n3/tvae/tvae-n3-20260504_175920/tvae_metadata.json @@ -0,0 +1,52 @@ +{ + "columns": [ + { + "name": "fixed acidity", + "type": "continuous" + }, + { + "name": "volatile acidity", + "type": "continuous" + }, + { + "name": "citric acid", + "type": "continuous" + }, + { + "name": "residual sugar", + "type": "continuous" + }, + { + "name": "chlorides", + "type": "continuous" + }, + { + "name": "free sulfur dioxide", + "type": "continuous" + }, + { + "name": "total sulfur dioxide", + "type": "continuous" + }, + { + "name": "density", + "type": "continuous" + }, + { + "name": "pH", + "type": "continuous" + }, + { + "name": "sulphates", + "type": "continuous" + }, + { + "name": "alcohol", + "type": "continuous" + }, + { + "name": "quality", + "type": "continuous" + } + ] +} \ No newline at end of file diff --git a/timecost/n3/tvae/tvae-n3-20260504_180018/_tvae_generate.py b/timecost/n3/tvae/tvae-n3-20260504_180018/_tvae_generate.py new file mode 100644 index 0000000000000000000000000000000000000000..4f9cf621d756127ba56d81b5d03a897854c6fb39 --- /dev/null +++ b/timecost/n3/tvae/tvae-n3-20260504_180018/_tvae_generate.py @@ -0,0 +1,23 @@ +import os, sys +sys.path.insert(0, "/work") +from src.SpecificModels.ctgan_joblib_parallel_cap import apply_parallel_cap_from_env +apply_parallel_cap_from_env() +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 +os.environ.setdefault("LOKY_MAX_CPU_COUNT", "8") +os.environ.setdefault("OPENBLAS_NUM_THREADS", "8") +os.environ.setdefault("MKL_NUM_THREADS", "8") +model = TVAE.load("/work/output-Benchmark-trainonly-v1/n3/tvae/tvae-n3-20260504_180018/models_300epochs/tvae_300epochs.pt") +total = 3918 +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-Benchmark-trainonly-v1/n3/tvae/tvae-n3-20260504_180018/tvae-n3-3918-20260504_180152.csv", index=False) +print(f"[TVAE] Generated {total} rows (chunks={len(parts)}) -> /work/output-Benchmark-trainonly-v1/n3/tvae/tvae-n3-20260504_180018/tvae-n3-3918-20260504_180152.csv") diff --git a/timecost/n3/tvae/tvae-n3-20260504_180018/_tvae_train.py b/timecost/n3/tvae/tvae-n3-20260504_180018/_tvae_train.py new file mode 100644 index 0000000000000000000000000000000000000000..bd01c88cdd31ec29e1fb2cdeff82715de5186d16 --- /dev/null +++ b/timecost/n3/tvae/tvae-n3-20260504_180018/_tvae_train.py @@ -0,0 +1,39 @@ +import json, os, sys +sys.path.insert(0, "/work") +from src.SpecificModels.ctgan_joblib_parallel_cap import apply_parallel_cap_from_env +apply_parallel_cap_from_env() +import pandas as pd +from ctgan.data import read_csv +from ctgan.synthesizers.tvae import TVAE + +# Keep transform stage parallelism bounded for stability on shared host. +os.environ.setdefault("LOKY_MAX_CPU_COUNT", "8") +os.environ.setdefault("OPENBLAS_NUM_THREADS", "8") +os.environ.setdefault("MKL_NUM_THREADS", "8") +_nj = (os.environ.get("TVAE_CTGAN_JOBTRANS_N_JOBS") or "").strip() +if _nj: + print("[TVAE] joblib Parallel cap ON, TVAE_CTGAN_JOBTRANS_N_JOBS=" + _nj) +else: + print("[TVAE] joblib Parallel cap OFF (unset TVAE_CTGAN_JOBTRANS_N_JOBS)") +print("[TVAE] LOKY_MAX_CPU_COUNT=" + str(os.environ.get("LOKY_MAX_CPU_COUNT", ""))) + +csv_path = "/work/output-Benchmark-trainonly-v1/n3/tvae/tvae-n3-20260504_180018/staged/public/train.csv" +meta_path = "/work/output-Benchmark-trainonly-v1/n3/tvae/tvae-n3-20260504_180018/tvae_metadata.json" +save_path = "/work/output-Benchmark-trainonly-v1/n3/tvae/tvae-n3-20260504_180018/models_300epochs/tvae_300epochs.pt" +epochs = int(os.environ.get("TVAE_EPOCHS", 300)) +batch_size = int(os.environ.get("TVAE_BATCH_SIZE", "500")) +embedding_dim = int(os.environ.get("TVAE_EMBEDDING_DIM", "128")) +def _parse_dims(name, default): + raw = (os.environ.get(name) or "").strip() + if not raw: + return default + return tuple(int(x.strip()) for x in raw.split(",") if x.strip()) +compress_dims = _parse_dims("TVAE_COMPRESS_DIMS", (128, 128)) +decompress_dims = _parse_dims("TVAE_DECOMPRESS_DIMS", (128, 128)) + +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}, batch_size={batch_size}, embedding_dim={embedding_dim}, compress_dims={compress_dims}, decompress_dims={decompress_dims}") +model = TVAE(epochs=epochs, batch_size=batch_size, embedding_dim=embedding_dim, compress_dims=compress_dims, decompress_dims=decompress_dims) +model.fit(data, discrete_columns) +model.save(save_path) +print(f"[TVAE] Model saved -> {save_path}") diff --git a/timecost/n3/tvae/tvae-n3-20260504_180018/gen_20260504_180152.log b/timecost/n3/tvae/tvae-n3-20260504_180018/gen_20260504_180152.log new file mode 100644 index 0000000000000000000000000000000000000000..5dc87648379c31a774bd527b872cbf17e45a245c --- /dev/null +++ b/timecost/n3/tvae/tvae-n3-20260504_180018/gen_20260504_180152.log @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:f2e6ce3290ea52be4c6f716ed2e89479dad3485e76eaf753b8d4a25787114b1e +size 404 diff --git a/timecost/n3/tvae/tvae-n3-20260504_180018/input_snapshot.json b/timecost/n3/tvae/tvae-n3-20260504_180018/input_snapshot.json new file mode 100644 index 0000000000000000000000000000000000000000..1ddd4c8dc6c3d918927aad5bcb5dbb27f78068fe --- /dev/null +++ b/timecost/n3/tvae/tvae-n3-20260504_180018/input_snapshot.json @@ -0,0 +1,36 @@ +{ + "dataset_id": "n3", + "model": "tvae", + "inputs": { + "train_csv": { + "path": "/data/jialinzhang/SynthesizePipeline-server/DatasetNew/n3/n3-train.csv", + "exists": true, + "size": 211519, + "sha256": "2160a06db2fea02adb0ebb79d8d853bd2544580be301e71f6e8deeb1489a9009" + }, + "val_csv": { + "path": "/data/jialinzhang/SynthesizePipeline-server/DatasetNew/n3/n3-val.csv", + "exists": true, + "size": 26499, + "sha256": "d5ccfee07dfa9e7bdee5bb87642b43828e09f74c6cc0266a3d19d9feaa83106e" + }, + "test_csv": { + "path": "/data/jialinzhang/SynthesizePipeline-server/DatasetNew/n3/n3-test.csv", + "exists": true, + "size": 26676, + "sha256": "6f83aacb0d1747b95e287352a7fff5d9d65a1c127b773852346c68485c4ede47" + }, + "profile_json": { + "path": "/data/jialinzhang/SynthesizePipeline-server/DatasetNew/artifacts/data_core/tabular/n3/n3-dataset_profile.json", + "exists": true, + "size": 5235, + "sha256": "23d2e5904a2ca90cbf8d6e3c75887681721e9b90cc705c31a680c11513d0c46f" + }, + "contract_json": { + "path": "/data/jialinzhang/SynthesizePipeline-server/DatasetNew/artifacts/data_core/tabular/n3/n3-dataset_contract_v1.json", + "exists": true, + "size": 6281, + "sha256": "c0cc56f5fe28e1b65927255c6e3c2b0e9479862c2ec6f2fea1664da36c9a3a09" + } + } +} \ No newline at end of file diff --git a/timecost/n3/tvae/tvae-n3-20260504_180018/models_300epochs/train_20260504_180018.log b/timecost/n3/tvae/tvae-n3-20260504_180018/models_300epochs/train_20260504_180018.log new file mode 100644 index 0000000000000000000000000000000000000000..da3d8f1ce43eb37200a472bcf9074fcb8311b8a1 --- /dev/null +++ b/timecost/n3/tvae/tvae-n3-20260504_180018/models_300epochs/train_20260504_180018.log @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:118a8e48dfbc8f4ecf6759a100ae304988089d5cf83fe0489fd1a28b30fd8de3 +size 621 diff --git a/timecost/n3/tvae/tvae-n3-20260504_180018/models_300epochs/tvae_300epochs.pt b/timecost/n3/tvae/tvae-n3-20260504_180018/models_300epochs/tvae_300epochs.pt new file mode 100644 index 0000000000000000000000000000000000000000..d81e5fec18dd0deb45ab441205be3bb5352ac05a --- /dev/null +++ b/timecost/n3/tvae/tvae-n3-20260504_180018/models_300epochs/tvae_300epochs.pt @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:b48905d99ddd53a87fb47ad81d6c1ec5030e228b79d0c8bce66d0a52c6669aac +size 1112300 diff --git a/timecost/n3/tvae/tvae-n3-20260504_180018/public_gate/normalized_schema_snapshot.json b/timecost/n3/tvae/tvae-n3-20260504_180018/public_gate/normalized_schema_snapshot.json new file mode 100644 index 0000000000000000000000000000000000000000..c41fe304503de23190a02e6cbfafa35b3bf134d3 --- /dev/null +++ b/timecost/n3/tvae/tvae-n3-20260504_180018/public_gate/normalized_schema_snapshot.json @@ -0,0 +1,259 @@ +{ + "dataset_id": "n3", + "target_column": "quality", + "task_type": "classification", + "columns": [ + { + "name": "fixed acidity", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 66, + "unique_ratio": 0.016845, + "example_values": [ + "7.1", + "8.5", + "6.4", + "6.8", + "7.6" + ] + } + }, + { + "name": "volatile acidity", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 121, + "unique_ratio": 0.030883, + "example_values": [ + "0.31", + "0.21", + "0.24", + "0.43", + "0.27" + ] + } + }, + { + "name": "citric acid", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 85, + "unique_ratio": 0.021695, + "example_values": [ + "0.17", + "0.41", + "0.31", + "0.25", + "0.3" + ] + } + }, + { + "name": "residual sugar", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 296, + "unique_ratio": 0.075549, + "example_values": [ + "1", + "4.3", + "2.8", + "13", + "12.9" + ] + } + }, + { + "name": "chlorides", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 147, + "unique_ratio": 0.037519, + "example_values": [ + "0.042", + "0.036", + "0.038", + "0.047", + "0.033" + ] + } + }, + { + "name": "free sulfur dioxide", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 120, + "unique_ratio": 0.030628, + "example_values": [ + "21", + "24", + "41", + "43", + "69" + ] + } + }, + { + "name": "total sulfur dioxide", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 244, + "unique_ratio": 0.062277, + "example_values": [ + "144", + "99", + "114", + "132", + "160" + ] + } + }, + { + "name": "density", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 839, + "unique_ratio": 0.21414, + "example_values": [ + "0.99304", + "0.9947", + "0.99155", + "0.98975", + "0.99705" + ] + } + }, + { + "name": "pH", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 100, + "unique_ratio": 0.025523, + "example_values": [ + "3.13", + "3.18", + "3.37", + "3.21", + "3.16" + ] + } + }, + { + "name": "sulphates", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 78, + "unique_ratio": 0.019908, + "example_values": [ + "0.4", + "0.53", + "0.66", + "0.47", + "0.5" + ] + } + }, + { + "name": "alcohol", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 97, + "unique_ratio": 0.024758, + "example_values": [ + "9.6", + "9.7", + "11.7", + "13.4", + "8.8" + ] + } + }, + { + "name": "quality", + "role": "target", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 7, + "unique_ratio": 0.001787, + "example_values": [ + "5", + "6", + "7", + "8", + "3" + ] + } + } + ] +} \ No newline at end of file diff --git a/timecost/n3/tvae/tvae-n3-20260504_180018/public_gate/public_gate_report.json b/timecost/n3/tvae/tvae-n3-20260504_180018/public_gate/public_gate_report.json new file mode 100644 index 0000000000000000000000000000000000000000..93b97319f739e39079d6c6549fd2020f8a6dac25 --- /dev/null +++ b/timecost/n3/tvae/tvae-n3-20260504_180018/public_gate/public_gate_report.json @@ -0,0 +1,37 @@ +{ + "dataset_id": "n3", + "status": "pass", + "checks": [ + { + "check_id": "PG001_csv_parse_ok", + "status": "pass" + }, + { + "check_id": "PG002_split_header_consistent", + "status": "pass" + }, + { + "check_id": "PG003_profile_header_match", + "status": "pass" + }, + { + "check_id": "PG004_missing_token_normalized", + "status": "pass" + }, + { + "check_id": "PG005_semantic_type_validated", + "status": "pass" + }, + { + "check_id": "PG006_target_defined_and_valid", + "status": "pass" + } + ], + "target_column": "quality", + "task_type": "classification", + "input_splits": { + "train": "/data/jialinzhang/SynthesizePipeline-server/DatasetNew/n3/n3-train.csv", + "val": "/data/jialinzhang/SynthesizePipeline-server/DatasetNew/n3/n3-val.csv", + "test": "/data/jialinzhang/SynthesizePipeline-server/DatasetNew/n3/n3-test.csv" + } +} \ No newline at end of file diff --git a/timecost/n3/tvae/tvae-n3-20260504_180018/public_gate/staged_input_manifest.json b/timecost/n3/tvae/tvae-n3-20260504_180018/public_gate/staged_input_manifest.json new file mode 100644 index 0000000000000000000000000000000000000000..65ff4dcf6157a684ee082109d3de8e6761f76d8f --- /dev/null +++ b/timecost/n3/tvae/tvae-n3-20260504_180018/public_gate/staged_input_manifest.json @@ -0,0 +1,264 @@ +{ + "dataset_id": "n3", + "target_column": "quality", + "task_type": "classification", + "train_csv": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/n3/tvae/tvae-n3-20260504_180018/staged/public/train.csv", + "val_csv": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/n3/tvae/tvae-n3-20260504_180018/staged/public/val.csv", + "test_csv": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/n3/tvae/tvae-n3-20260504_180018/staged/public/test.csv", + "features_json": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/n3/tvae/tvae-n3-20260504_180018/staged/public/staged_features.json", + "public_gate_report": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/n3/tvae/tvae-n3-20260504_180018/public_gate/public_gate_report.json", + "column_schema": [ + { + "name": "fixed acidity", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 66, + "unique_ratio": 0.016845, + "example_values": [ + "7.1", + "8.5", + "6.4", + "6.8", + "7.6" + ] + } + }, + { + "name": "volatile acidity", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 121, + "unique_ratio": 0.030883, + "example_values": [ + "0.31", + "0.21", + "0.24", + "0.43", + "0.27" + ] + } + }, + { + "name": "citric acid", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 85, + "unique_ratio": 0.021695, + "example_values": [ + "0.17", + "0.41", + "0.31", + "0.25", + "0.3" + ] + } + }, + { + "name": "residual sugar", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 296, + "unique_ratio": 0.075549, + "example_values": [ + "1", + "4.3", + "2.8", + "13", + "12.9" + ] + } + }, + { + "name": "chlorides", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 147, + "unique_ratio": 0.037519, + "example_values": [ + "0.042", + "0.036", + "0.038", + "0.047", + "0.033" + ] + } + }, + { + "name": "free sulfur dioxide", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 120, + "unique_ratio": 0.030628, + "example_values": [ + "21", + "24", + "41", + "43", + "69" + ] + } + }, + { + "name": "total sulfur dioxide", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 244, + "unique_ratio": 0.062277, + "example_values": [ + "144", + "99", + "114", + "132", + "160" + ] + } + }, + { + "name": "density", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 839, + "unique_ratio": 0.21414, + "example_values": [ + "0.99304", + "0.9947", + "0.99155", + "0.98975", + "0.99705" + ] + } + }, + { + "name": "pH", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 100, + "unique_ratio": 0.025523, + "example_values": [ + "3.13", + "3.18", + "3.37", + "3.21", + "3.16" + ] + } + }, + { + "name": "sulphates", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 78, + "unique_ratio": 0.019908, + "example_values": [ + "0.4", + "0.53", + "0.66", + "0.47", + "0.5" + ] + } + }, + { + "name": "alcohol", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 97, + "unique_ratio": 0.024758, + "example_values": [ + "9.6", + "9.7", + "11.7", + "13.4", + "8.8" + ] + } + }, + { + "name": "quality", + "role": "target", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 7, + "unique_ratio": 0.001787, + "example_values": [ + "5", + "6", + "7", + "8", + "3" + ] + } + } + ] +} \ No newline at end of file diff --git a/timecost/n3/tvae/tvae-n3-20260504_180018/run_config.json b/timecost/n3/tvae/tvae-n3-20260504_180018/run_config.json new file mode 100644 index 0000000000000000000000000000000000000000..3eda429348545ffae0bbc37e60c7a3900a955095 --- /dev/null +++ b/timecost/n3/tvae/tvae-n3-20260504_180018/run_config.json @@ -0,0 +1,45 @@ +{ + "schema_version": 1, + "recorded_at": "2026-05-04T18:00:18", + "dataset_id": "n3", + "model": "tvae", + "work_dir": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/n3/tvae/tvae-n3-20260504_180018", + "dataset_source_requested": "new", + "dataset_source_resolved": "new", + "cli_args": { + "model": "tvae", + "dataset": "n3", + "dataset_source": "new", + "train": true, + "generate": true, + "num_rows": 0, + "epochs": null, + "output_dir": null, + "model_dir": null, + "work_dir": null, + "resume": false, + "no_stats": false + }, + "resolved": { + "num_rows": 3918, + "model_path": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/n3/tvae/tvae-n3-20260504_180018/models_300epochs/tvae_300epochs.pt", + "output_csv": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/n3/tvae/tvae-n3-20260504_180018/tvae-n3-3918-20260504_180152.csv" + }, + "input_artifacts": { + "public_gate_report": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/n3/tvae/tvae-n3-20260504_180018/public_gate/public_gate_report.json", + "public_manifest": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/n3/tvae/tvae-n3-20260504_180018/public_gate/staged_input_manifest.json", + "model_manifest": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/n3/tvae/tvae-n3-20260504_180018/staged/tvae/model_input_manifest.json", + "train_csv": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/n3/tvae/tvae-n3-20260504_180018/staged/public/train.csv", + "features_json": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/n3/tvae/tvae-n3-20260504_180018/staged/public/staged_features.json", + "target_column": "quality", + "task_type": "classification" + }, + "env_overrides": { + "BENCHMARK_TVAE_GPUS": "device=3", + "TVAE_BATCH_SIZE": "256", + "TVAE_COMPRESS_DIMS": "256,256", + "TVAE_DECOMPRESS_DIMS": "256,256", + "TVAE_EMBEDDING_DIM": "128", + "TVAE_EPOCHS": "500" + } +} \ No newline at end of file diff --git a/timecost/n3/tvae/tvae-n3-20260504_180018/runtime_result.json b/timecost/n3/tvae/tvae-n3-20260504_180018/runtime_result.json new file mode 100644 index 0000000000000000000000000000000000000000..547029ea7fa287f702ea6ab561a97791e29896a8 --- /dev/null +++ b/timecost/n3/tvae/tvae-n3-20260504_180018/runtime_result.json @@ -0,0 +1,27 @@ +{ + "dataset_id": "n3", + "model": "tvae", + "run_id": "tvae-n3-20260504_180018", + "public_gate_status": "pass", + "adapter_ready_status": "pass", + "train_status": "success", + "generate_status": "success", + "reason_code": null, + "reason_detail": null, + "artifacts": { + "synthetic_csv": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/n3/tvae/tvae-n3-20260504_180018/tvae-n3-3918-20260504_180152.csv", + "model_path": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/n3/tvae/tvae-n3-20260504_180018/models_300epochs/tvae_300epochs.pt" + }, + "timings": { + "train": { + "started_at": "2026-05-04T18:00:18", + "ended_at": "2026-05-04T18:01:52", + "duration_sec": 93.32 + }, + "generate": { + "started_at": "2026-05-04T18:01:52", + "ended_at": "2026-05-04T18:01:57", + "duration_sec": 5.246 + } + } +} \ No newline at end of file diff --git a/timecost/n3/tvae/tvae-n3-20260504_180018/staged/public/staged_features.json b/timecost/n3/tvae/tvae-n3-20260504_180018/staged/public/staged_features.json new file mode 100644 index 0000000000000000000000000000000000000000..08fe4d766d091d2f2ddba724a16b9509cbe4c390 --- /dev/null +++ b/timecost/n3/tvae/tvae-n3-20260504_180018/staged/public/staged_features.json @@ -0,0 +1,62 @@ +[ + { + "feature_name": "fixed acidity", + "data_type": "continuous", + "is_target": false + }, + { + "feature_name": "volatile acidity", + "data_type": "continuous", + "is_target": false + }, + { + "feature_name": "citric acid", + "data_type": "continuous", + "is_target": false + }, + { + "feature_name": "residual sugar", + "data_type": "continuous", + "is_target": false + }, + { + "feature_name": "chlorides", + "data_type": "continuous", + "is_target": false + }, + { + "feature_name": "free sulfur dioxide", + "data_type": "continuous", + "is_target": false + }, + { + "feature_name": "total sulfur dioxide", + "data_type": "continuous", + "is_target": false + }, + { + "feature_name": "density", + "data_type": "continuous", + "is_target": false + }, + { + "feature_name": "pH", + "data_type": "continuous", + "is_target": false + }, + { + "feature_name": "sulphates", + "data_type": "continuous", + "is_target": false + }, + { + "feature_name": "alcohol", + "data_type": "continuous", + "is_target": false + }, + { + "feature_name": "quality", + "data_type": "continuous", + "is_target": true + } +] \ No newline at end of file diff --git a/timecost/n3/tvae/tvae-n3-20260504_180018/staged/public/test.csv b/timecost/n3/tvae/tvae-n3-20260504_180018/staged/public/test.csv new file mode 100644 index 0000000000000000000000000000000000000000..db5cd50d3746410ea470625fa2ba2c8e9775cc0d --- /dev/null +++ b/timecost/n3/tvae/tvae-n3-20260504_180018/staged/public/test.csv @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:19e107152a94432e2a37ff045c00cfe35e1be30208b1553080d7dd0ede256d3b +size 28944 diff --git a/timecost/n3/tvae/tvae-n3-20260504_180018/staged/public/train.csv b/timecost/n3/tvae/tvae-n3-20260504_180018/staged/public/train.csv new file mode 100644 index 0000000000000000000000000000000000000000..87ca26726fe82ccbaa397919305b043c17eb374e --- /dev/null +++ b/timecost/n3/tvae/tvae-n3-20260504_180018/staged/public/train.csv @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:7813c8cca73ba4bfc6559215257b341c21e459980ad17ae6ddc809306bc9a0b9 +size 229945 diff --git a/timecost/n3/tvae/tvae-n3-20260504_180018/staged/public/val.csv b/timecost/n3/tvae/tvae-n3-20260504_180018/staged/public/val.csv new file mode 100644 index 0000000000000000000000000000000000000000..6acf84c76c47093b513c46d5503972a2dff275c0 --- /dev/null +++ b/timecost/n3/tvae/tvae-n3-20260504_180018/staged/public/val.csv @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:cf5979d9675567d9d6642640c9b84fc6c49e492604144723c30f50516c05cee6 +size 28791 diff --git a/timecost/n3/tvae/tvae-n3-20260504_180018/staged/tvae/adapter_report.json b/timecost/n3/tvae/tvae-n3-20260504_180018/staged/tvae/adapter_report.json new file mode 100644 index 0000000000000000000000000000000000000000..87126bd581f5c036a550c432fdec6f7ca639c18e --- /dev/null +++ b/timecost/n3/tvae/tvae-n3-20260504_180018/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-Benchmark-trainonly-v1/n3/tvae/tvae-n3-20260504_180018/staged/tvae/model_input_manifest.json" +} \ No newline at end of file diff --git a/timecost/n3/tvae/tvae-n3-20260504_180018/staged/tvae/adapter_transforms_applied.json b/timecost/n3/tvae/tvae-n3-20260504_180018/staged/tvae/adapter_transforms_applied.json new file mode 100644 index 0000000000000000000000000000000000000000..0637a088a01e8ddab3bf3fa98dbe804cbde1a0dc --- /dev/null +++ b/timecost/n3/tvae/tvae-n3-20260504_180018/staged/tvae/adapter_transforms_applied.json @@ -0,0 +1 @@ +[] \ No newline at end of file diff --git a/timecost/n3/tvae/tvae-n3-20260504_180018/staged/tvae/model_input_manifest.json b/timecost/n3/tvae/tvae-n3-20260504_180018/staged/tvae/model_input_manifest.json new file mode 100644 index 0000000000000000000000000000000000000000..88162a483a06ccd50c1893776094c7c41bcd2507 --- /dev/null +++ b/timecost/n3/tvae/tvae-n3-20260504_180018/staged/tvae/model_input_manifest.json @@ -0,0 +1,266 @@ +{ + "dataset_id": "n3", + "model": "tvae", + "target_column": "quality", + "task_type": "classification", + "column_schema": [ + { + "name": "fixed acidity", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 66, + "unique_ratio": 0.016845, + "example_values": [ + "7.1", + "8.5", + "6.4", + "6.8", + "7.6" + ] + } + }, + { + "name": "volatile acidity", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 121, + "unique_ratio": 0.030883, + "example_values": [ + "0.31", + "0.21", + "0.24", + "0.43", + "0.27" + ] + } + }, + { + "name": "citric acid", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 85, + "unique_ratio": 0.021695, + "example_values": [ + "0.17", + "0.41", + "0.31", + "0.25", + "0.3" + ] + } + }, + { + "name": "residual sugar", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 296, + "unique_ratio": 0.075549, + "example_values": [ + "1", + "4.3", + "2.8", + "13", + "12.9" + ] + } + }, + { + "name": "chlorides", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 147, + "unique_ratio": 0.037519, + "example_values": [ + "0.042", + "0.036", + "0.038", + "0.047", + "0.033" + ] + } + }, + { + "name": "free sulfur dioxide", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 120, + "unique_ratio": 0.030628, + "example_values": [ + "21", + "24", + "41", + "43", + "69" + ] + } + }, + { + "name": "total sulfur dioxide", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 244, + "unique_ratio": 0.062277, + "example_values": [ + "144", + "99", + "114", + "132", + "160" + ] + } + }, + { + "name": "density", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 839, + "unique_ratio": 0.21414, + "example_values": [ + "0.99304", + "0.9947", + "0.99155", + "0.98975", + "0.99705" + ] + } + }, + { + "name": "pH", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 100, + "unique_ratio": 0.025523, + "example_values": [ + "3.13", + "3.18", + "3.37", + "3.21", + "3.16" + ] + } + }, + { + "name": "sulphates", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 78, + "unique_ratio": 0.019908, + "example_values": [ + "0.4", + "0.53", + "0.66", + "0.47", + "0.5" + ] + } + }, + { + "name": "alcohol", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 97, + "unique_ratio": 0.024758, + "example_values": [ + "9.6", + "9.7", + "11.7", + "13.4", + "8.8" + ] + } + }, + { + "name": "quality", + "role": "target", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 7, + "unique_ratio": 0.001787, + "example_values": [ + "5", + "6", + "7", + "8", + "3" + ] + } + } + ], + "public_manifest": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/n3/tvae/tvae-n3-20260504_180018/public_gate/staged_input_manifest.json", + "train_csv": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/n3/tvae/tvae-n3-20260504_180018/staged/public/train.csv", + "val_csv": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/n3/tvae/tvae-n3-20260504_180018/staged/public/val.csv", + "test_csv": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/n3/tvae/tvae-n3-20260504_180018/staged/public/test.csv", + "features_json": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/n3/tvae/tvae-n3-20260504_180018/staged/public/staged_features.json", + "public_gate_report": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/n3/tvae/tvae-n3-20260504_180018/public_gate/public_gate_report.json" +} \ No newline at end of file diff --git a/timecost/n3/tvae/tvae-n3-20260504_180018/tvae-n3-3918-20260504_180152.csv b/timecost/n3/tvae/tvae-n3-20260504_180018/tvae-n3-3918-20260504_180152.csv new file mode 100644 index 0000000000000000000000000000000000000000..361f8e7dfa48053c9c11f830e964d2d281babccc --- /dev/null +++ b/timecost/n3/tvae/tvae-n3-20260504_180018/tvae-n3-3918-20260504_180152.csv @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:a7ddf27d7e67c91b0cc4320fac6c059beb9de77910a2c9914535b5db5a19fccc +size 820283 diff --git a/timecost/n3/tvae/tvae-n3-20260504_180018/tvae_metadata.json b/timecost/n3/tvae/tvae-n3-20260504_180018/tvae_metadata.json new file mode 100644 index 0000000000000000000000000000000000000000..40d513aa1aca4c6f5c1be8afc3d6a1a0c75aa74f --- /dev/null +++ b/timecost/n3/tvae/tvae-n3-20260504_180018/tvae_metadata.json @@ -0,0 +1,52 @@ +{ + "columns": [ + { + "name": "fixed acidity", + "type": "continuous" + }, + { + "name": "volatile acidity", + "type": "continuous" + }, + { + "name": "citric acid", + "type": "continuous" + }, + { + "name": "residual sugar", + "type": "continuous" + }, + { + "name": "chlorides", + "type": "continuous" + }, + { + "name": "free sulfur dioxide", + "type": "continuous" + }, + { + "name": "total sulfur dioxide", + "type": "continuous" + }, + { + "name": "density", + "type": "continuous" + }, + { + "name": "pH", + "type": "continuous" + }, + { + "name": "sulphates", + "type": "continuous" + }, + { + "name": "alcohol", + "type": "continuous" + }, + { + "name": "quality", + "type": "continuous" + } + ] +} \ No newline at end of file diff --git a/timecost/n3/tvae/tvae-n3-20260504_180209/_tvae_generate.py b/timecost/n3/tvae/tvae-n3-20260504_180209/_tvae_generate.py new file mode 100644 index 0000000000000000000000000000000000000000..e0bb2d7e7d2aefffd85bee311158c71d512b1134 --- /dev/null +++ b/timecost/n3/tvae/tvae-n3-20260504_180209/_tvae_generate.py @@ -0,0 +1,23 @@ +import os, sys +sys.path.insert(0, "/work") +from src.SpecificModels.ctgan_joblib_parallel_cap import apply_parallel_cap_from_env +apply_parallel_cap_from_env() +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 +os.environ.setdefault("LOKY_MAX_CPU_COUNT", "8") +os.environ.setdefault("OPENBLAS_NUM_THREADS", "8") +os.environ.setdefault("MKL_NUM_THREADS", "8") +model = TVAE.load("/work/output-Benchmark-trainonly-v1/n3/tvae/tvae-n3-20260504_180209/models_300epochs/tvae_300epochs.pt") +total = 3918 +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-Benchmark-trainonly-v1/n3/tvae/tvae-n3-20260504_180209/tvae-n3-3918-20260504_180345.csv", index=False) +print(f"[TVAE] Generated {total} rows (chunks={len(parts)}) -> /work/output-Benchmark-trainonly-v1/n3/tvae/tvae-n3-20260504_180209/tvae-n3-3918-20260504_180345.csv") diff --git a/timecost/n3/tvae/tvae-n3-20260504_180209/_tvae_train.py b/timecost/n3/tvae/tvae-n3-20260504_180209/_tvae_train.py new file mode 100644 index 0000000000000000000000000000000000000000..99aa02f81dd2ad71f400e0409301e5bc93d9ceaf --- /dev/null +++ b/timecost/n3/tvae/tvae-n3-20260504_180209/_tvae_train.py @@ -0,0 +1,39 @@ +import json, os, sys +sys.path.insert(0, "/work") +from src.SpecificModels.ctgan_joblib_parallel_cap import apply_parallel_cap_from_env +apply_parallel_cap_from_env() +import pandas as pd +from ctgan.data import read_csv +from ctgan.synthesizers.tvae import TVAE + +# Keep transform stage parallelism bounded for stability on shared host. +os.environ.setdefault("LOKY_MAX_CPU_COUNT", "8") +os.environ.setdefault("OPENBLAS_NUM_THREADS", "8") +os.environ.setdefault("MKL_NUM_THREADS", "8") +_nj = (os.environ.get("TVAE_CTGAN_JOBTRANS_N_JOBS") or "").strip() +if _nj: + print("[TVAE] joblib Parallel cap ON, TVAE_CTGAN_JOBTRANS_N_JOBS=" + _nj) +else: + print("[TVAE] joblib Parallel cap OFF (unset TVAE_CTGAN_JOBTRANS_N_JOBS)") +print("[TVAE] LOKY_MAX_CPU_COUNT=" + str(os.environ.get("LOKY_MAX_CPU_COUNT", ""))) + +csv_path = "/work/output-Benchmark-trainonly-v1/n3/tvae/tvae-n3-20260504_180209/staged/public/train.csv" +meta_path = "/work/output-Benchmark-trainonly-v1/n3/tvae/tvae-n3-20260504_180209/tvae_metadata.json" +save_path = "/work/output-Benchmark-trainonly-v1/n3/tvae/tvae-n3-20260504_180209/models_300epochs/tvae_300epochs.pt" +epochs = int(os.environ.get("TVAE_EPOCHS", 300)) +batch_size = int(os.environ.get("TVAE_BATCH_SIZE", "500")) +embedding_dim = int(os.environ.get("TVAE_EMBEDDING_DIM", "128")) +def _parse_dims(name, default): + raw = (os.environ.get(name) or "").strip() + if not raw: + return default + return tuple(int(x.strip()) for x in raw.split(",") if x.strip()) +compress_dims = _parse_dims("TVAE_COMPRESS_DIMS", (128, 128)) +decompress_dims = _parse_dims("TVAE_DECOMPRESS_DIMS", (128, 128)) + +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}, batch_size={batch_size}, embedding_dim={embedding_dim}, compress_dims={compress_dims}, decompress_dims={decompress_dims}") +model = TVAE(epochs=epochs, batch_size=batch_size, embedding_dim=embedding_dim, compress_dims=compress_dims, decompress_dims=decompress_dims) +model.fit(data, discrete_columns) +model.save(save_path) +print(f"[TVAE] Model saved -> {save_path}") diff --git a/timecost/n3/tvae/tvae-n3-20260504_180209/gen_20260504_180345.log b/timecost/n3/tvae/tvae-n3-20260504_180209/gen_20260504_180345.log new file mode 100644 index 0000000000000000000000000000000000000000..21c5b503a596f2d9f52385614c1465b59c012652 --- /dev/null +++ b/timecost/n3/tvae/tvae-n3-20260504_180209/gen_20260504_180345.log @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:2bd05a84f5c2e1e31daf8000e86de8e09158f70a12f44646f86ee65c3f27ab7f +size 404 diff --git a/timecost/n3/tvae/tvae-n3-20260504_180209/input_snapshot.json b/timecost/n3/tvae/tvae-n3-20260504_180209/input_snapshot.json new file mode 100644 index 0000000000000000000000000000000000000000..1ddd4c8dc6c3d918927aad5bcb5dbb27f78068fe --- /dev/null +++ b/timecost/n3/tvae/tvae-n3-20260504_180209/input_snapshot.json @@ -0,0 +1,36 @@ +{ + "dataset_id": "n3", + "model": "tvae", + "inputs": { + "train_csv": { + "path": "/data/jialinzhang/SynthesizePipeline-server/DatasetNew/n3/n3-train.csv", + "exists": true, + "size": 211519, + "sha256": "2160a06db2fea02adb0ebb79d8d853bd2544580be301e71f6e8deeb1489a9009" + }, + "val_csv": { + "path": "/data/jialinzhang/SynthesizePipeline-server/DatasetNew/n3/n3-val.csv", + "exists": true, + "size": 26499, + "sha256": "d5ccfee07dfa9e7bdee5bb87642b43828e09f74c6cc0266a3d19d9feaa83106e" + }, + "test_csv": { + "path": "/data/jialinzhang/SynthesizePipeline-server/DatasetNew/n3/n3-test.csv", + "exists": true, + "size": 26676, + "sha256": "6f83aacb0d1747b95e287352a7fff5d9d65a1c127b773852346c68485c4ede47" + }, + "profile_json": { + "path": "/data/jialinzhang/SynthesizePipeline-server/DatasetNew/artifacts/data_core/tabular/n3/n3-dataset_profile.json", + "exists": true, + "size": 5235, + "sha256": "23d2e5904a2ca90cbf8d6e3c75887681721e9b90cc705c31a680c11513d0c46f" + }, + "contract_json": { + "path": "/data/jialinzhang/SynthesizePipeline-server/DatasetNew/artifacts/data_core/tabular/n3/n3-dataset_contract_v1.json", + "exists": true, + "size": 6281, + "sha256": "c0cc56f5fe28e1b65927255c6e3c2b0e9479862c2ec6f2fea1664da36c9a3a09" + } + } +} \ No newline at end of file diff --git a/timecost/n3/tvae/tvae-n3-20260504_180209/models_300epochs/train_20260504_180209.log b/timecost/n3/tvae/tvae-n3-20260504_180209/models_300epochs/train_20260504_180209.log new file mode 100644 index 0000000000000000000000000000000000000000..ab8f2f17661be4ca9f6f8abb09b4bddbc12036da --- /dev/null +++ b/timecost/n3/tvae/tvae-n3-20260504_180209/models_300epochs/train_20260504_180209.log @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:ef263b732b18f832f921c74d9dccfc0305ec5982477de12d762ae6b073570864 +size 621 diff --git a/timecost/n3/tvae/tvae-n3-20260504_180209/models_300epochs/tvae_300epochs.pt b/timecost/n3/tvae/tvae-n3-20260504_180209/models_300epochs/tvae_300epochs.pt new file mode 100644 index 0000000000000000000000000000000000000000..9658f757a8817e08244f4967eaf4e5edcfcef01e --- /dev/null +++ b/timecost/n3/tvae/tvae-n3-20260504_180209/models_300epochs/tvae_300epochs.pt @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:e2ed47235ab99710430f255cfc920182d3031ae2e378670a8ce68a013f2f709b +size 1237868 diff --git a/timecost/n3/tvae/tvae-n3-20260504_180209/public_gate/normalized_schema_snapshot.json b/timecost/n3/tvae/tvae-n3-20260504_180209/public_gate/normalized_schema_snapshot.json new file mode 100644 index 0000000000000000000000000000000000000000..c41fe304503de23190a02e6cbfafa35b3bf134d3 --- /dev/null +++ b/timecost/n3/tvae/tvae-n3-20260504_180209/public_gate/normalized_schema_snapshot.json @@ -0,0 +1,259 @@ +{ + "dataset_id": "n3", + "target_column": "quality", + "task_type": "classification", + "columns": [ + { + "name": "fixed acidity", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 66, + "unique_ratio": 0.016845, + "example_values": [ + "7.1", + "8.5", + "6.4", + "6.8", + "7.6" + ] + } + }, + { + "name": "volatile acidity", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 121, + "unique_ratio": 0.030883, + "example_values": [ + "0.31", + "0.21", + "0.24", + "0.43", + "0.27" + ] + } + }, + { + "name": "citric acid", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 85, + "unique_ratio": 0.021695, + "example_values": [ + "0.17", + "0.41", + "0.31", + "0.25", + "0.3" + ] + } + }, + { + "name": "residual sugar", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 296, + "unique_ratio": 0.075549, + "example_values": [ + "1", + "4.3", + "2.8", + "13", + "12.9" + ] + } + }, + { + "name": "chlorides", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 147, + "unique_ratio": 0.037519, + "example_values": [ + "0.042", + "0.036", + "0.038", + "0.047", + "0.033" + ] + } + }, + { + "name": "free sulfur dioxide", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 120, + "unique_ratio": 0.030628, + "example_values": [ + "21", + "24", + "41", + "43", + "69" + ] + } + }, + { + "name": "total sulfur dioxide", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 244, + "unique_ratio": 0.062277, + "example_values": [ + "144", + "99", + "114", + "132", + "160" + ] + } + }, + { + "name": "density", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 839, + "unique_ratio": 0.21414, + "example_values": [ + "0.99304", + "0.9947", + "0.99155", + "0.98975", + "0.99705" + ] + } + }, + { + "name": "pH", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 100, + "unique_ratio": 0.025523, + "example_values": [ + "3.13", + "3.18", + "3.37", + "3.21", + "3.16" + ] + } + }, + { + "name": "sulphates", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 78, + "unique_ratio": 0.019908, + "example_values": [ + "0.4", + "0.53", + "0.66", + "0.47", + "0.5" + ] + } + }, + { + "name": "alcohol", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 97, + "unique_ratio": 0.024758, + "example_values": [ + "9.6", + "9.7", + "11.7", + "13.4", + "8.8" + ] + } + }, + { + "name": "quality", + "role": "target", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 7, + "unique_ratio": 0.001787, + "example_values": [ + "5", + "6", + "7", + "8", + "3" + ] + } + } + ] +} \ No newline at end of file diff --git a/timecost/n3/tvae/tvae-n3-20260504_180209/public_gate/public_gate_report.json b/timecost/n3/tvae/tvae-n3-20260504_180209/public_gate/public_gate_report.json new file mode 100644 index 0000000000000000000000000000000000000000..93b97319f739e39079d6c6549fd2020f8a6dac25 --- /dev/null +++ b/timecost/n3/tvae/tvae-n3-20260504_180209/public_gate/public_gate_report.json @@ -0,0 +1,37 @@ +{ + "dataset_id": "n3", + "status": "pass", + "checks": [ + { + "check_id": "PG001_csv_parse_ok", + "status": "pass" + }, + { + "check_id": "PG002_split_header_consistent", + "status": "pass" + }, + { + "check_id": "PG003_profile_header_match", + "status": "pass" + }, + { + "check_id": "PG004_missing_token_normalized", + "status": "pass" + }, + { + "check_id": "PG005_semantic_type_validated", + "status": "pass" + }, + { + "check_id": "PG006_target_defined_and_valid", + "status": "pass" + } + ], + "target_column": "quality", + "task_type": "classification", + "input_splits": { + "train": "/data/jialinzhang/SynthesizePipeline-server/DatasetNew/n3/n3-train.csv", + "val": "/data/jialinzhang/SynthesizePipeline-server/DatasetNew/n3/n3-val.csv", + "test": "/data/jialinzhang/SynthesizePipeline-server/DatasetNew/n3/n3-test.csv" + } +} \ No newline at end of file diff --git a/timecost/n3/tvae/tvae-n3-20260504_180209/public_gate/staged_input_manifest.json b/timecost/n3/tvae/tvae-n3-20260504_180209/public_gate/staged_input_manifest.json new file mode 100644 index 0000000000000000000000000000000000000000..53ef96107bb93338bcc4dc3f51de98ffe31eb478 --- /dev/null +++ b/timecost/n3/tvae/tvae-n3-20260504_180209/public_gate/staged_input_manifest.json @@ -0,0 +1,264 @@ +{ + "dataset_id": "n3", + "target_column": "quality", + "task_type": "classification", + "train_csv": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/n3/tvae/tvae-n3-20260504_180209/staged/public/train.csv", + "val_csv": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/n3/tvae/tvae-n3-20260504_180209/staged/public/val.csv", + "test_csv": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/n3/tvae/tvae-n3-20260504_180209/staged/public/test.csv", + "features_json": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/n3/tvae/tvae-n3-20260504_180209/staged/public/staged_features.json", + "public_gate_report": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/n3/tvae/tvae-n3-20260504_180209/public_gate/public_gate_report.json", + "column_schema": [ + { + "name": "fixed acidity", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 66, + "unique_ratio": 0.016845, + "example_values": [ + "7.1", + "8.5", + "6.4", + "6.8", + "7.6" + ] + } + }, + { + "name": "volatile acidity", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 121, + "unique_ratio": 0.030883, + "example_values": [ + "0.31", + "0.21", + "0.24", + "0.43", + "0.27" + ] + } + }, + { + "name": "citric acid", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 85, + "unique_ratio": 0.021695, + "example_values": [ + "0.17", + "0.41", + "0.31", + "0.25", + "0.3" + ] + } + }, + { + "name": "residual sugar", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 296, + "unique_ratio": 0.075549, + "example_values": [ + "1", + "4.3", + "2.8", + "13", + "12.9" + ] + } + }, + { + "name": "chlorides", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 147, + "unique_ratio": 0.037519, + "example_values": [ + "0.042", + "0.036", + "0.038", + "0.047", + "0.033" + ] + } + }, + { + "name": "free sulfur dioxide", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 120, + "unique_ratio": 0.030628, + "example_values": [ + "21", + "24", + "41", + "43", + "69" + ] + } + }, + { + "name": "total sulfur dioxide", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 244, + "unique_ratio": 0.062277, + "example_values": [ + "144", + "99", + "114", + "132", + "160" + ] + } + }, + { + "name": "density", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 839, + "unique_ratio": 0.21414, + "example_values": [ + "0.99304", + "0.9947", + "0.99155", + "0.98975", + "0.99705" + ] + } + }, + { + "name": "pH", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 100, + "unique_ratio": 0.025523, + "example_values": [ + "3.13", + "3.18", + "3.37", + "3.21", + "3.16" + ] + } + }, + { + "name": "sulphates", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 78, + "unique_ratio": 0.019908, + "example_values": [ + "0.4", + "0.53", + "0.66", + "0.47", + "0.5" + ] + } + }, + { + "name": "alcohol", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 97, + "unique_ratio": 0.024758, + "example_values": [ + "9.6", + "9.7", + "11.7", + "13.4", + "8.8" + ] + } + }, + { + "name": "quality", + "role": "target", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 7, + "unique_ratio": 0.001787, + "example_values": [ + "5", + "6", + "7", + "8", + "3" + ] + } + } + ] +} \ No newline at end of file diff --git a/timecost/n3/tvae/tvae-n3-20260504_180209/run_config.json b/timecost/n3/tvae/tvae-n3-20260504_180209/run_config.json new file mode 100644 index 0000000000000000000000000000000000000000..ecc48641ea4c71e0f4e575c29fbdb2c0a3ad7023 --- /dev/null +++ b/timecost/n3/tvae/tvae-n3-20260504_180209/run_config.json @@ -0,0 +1,45 @@ +{ + "schema_version": 1, + "recorded_at": "2026-05-04T18:02:09", + "dataset_id": "n3", + "model": "tvae", + "work_dir": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/n3/tvae/tvae-n3-20260504_180209", + "dataset_source_requested": "new", + "dataset_source_resolved": "new", + "cli_args": { + "model": "tvae", + "dataset": "n3", + "dataset_source": "new", + "train": true, + "generate": true, + "num_rows": 0, + "epochs": null, + "output_dir": null, + "model_dir": null, + "work_dir": null, + "resume": false, + "no_stats": false + }, + "resolved": { + "num_rows": 3918, + "model_path": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/n3/tvae/tvae-n3-20260504_180209/models_300epochs/tvae_300epochs.pt", + "output_csv": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/n3/tvae/tvae-n3-20260504_180209/tvae-n3-3918-20260504_180345.csv" + }, + "input_artifacts": { + "public_gate_report": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/n3/tvae/tvae-n3-20260504_180209/public_gate/public_gate_report.json", + "public_manifest": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/n3/tvae/tvae-n3-20260504_180209/public_gate/staged_input_manifest.json", + "model_manifest": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/n3/tvae/tvae-n3-20260504_180209/staged/tvae/model_input_manifest.json", + "train_csv": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/n3/tvae/tvae-n3-20260504_180209/staged/public/train.csv", + "features_json": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/n3/tvae/tvae-n3-20260504_180209/staged/public/staged_features.json", + "target_column": "quality", + "task_type": "classification" + }, + "env_overrides": { + "BENCHMARK_TVAE_GPUS": "device=3", + "TVAE_BATCH_SIZE": "256", + "TVAE_COMPRESS_DIMS": "256,256", + "TVAE_DECOMPRESS_DIMS": "256,256", + "TVAE_EMBEDDING_DIM": "256", + "TVAE_EPOCHS": "500" + } +} \ No newline at end of file diff --git a/timecost/n3/tvae/tvae-n3-20260504_180209/runtime_result.json b/timecost/n3/tvae/tvae-n3-20260504_180209/runtime_result.json new file mode 100644 index 0000000000000000000000000000000000000000..5246503ea620a80e4bad650ed99a7c8956e9c984 --- /dev/null +++ b/timecost/n3/tvae/tvae-n3-20260504_180209/runtime_result.json @@ -0,0 +1,27 @@ +{ + "dataset_id": "n3", + "model": "tvae", + "run_id": "tvae-n3-20260504_180209", + "public_gate_status": "pass", + "adapter_ready_status": "pass", + "train_status": "success", + "generate_status": "success", + "reason_code": null, + "reason_detail": null, + "artifacts": { + "synthetic_csv": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/n3/tvae/tvae-n3-20260504_180209/tvae-n3-3918-20260504_180345.csv", + "model_path": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/n3/tvae/tvae-n3-20260504_180209/models_300epochs/tvae_300epochs.pt" + }, + "timings": { + "train": { + "started_at": "2026-05-04T18:02:09", + "ended_at": "2026-05-04T18:03:45", + "duration_sec": 95.951 + }, + "generate": { + "started_at": "2026-05-04T18:03:45", + "ended_at": "2026-05-04T18:03:51", + "duration_sec": 5.188 + } + } +} \ No newline at end of file diff --git a/timecost/n3/tvae/tvae-n3-20260504_180209/staged/public/staged_features.json b/timecost/n3/tvae/tvae-n3-20260504_180209/staged/public/staged_features.json new file mode 100644 index 0000000000000000000000000000000000000000..08fe4d766d091d2f2ddba724a16b9509cbe4c390 --- /dev/null +++ b/timecost/n3/tvae/tvae-n3-20260504_180209/staged/public/staged_features.json @@ -0,0 +1,62 @@ +[ + { + "feature_name": "fixed acidity", + "data_type": "continuous", + "is_target": false + }, + { + "feature_name": "volatile acidity", + "data_type": "continuous", + "is_target": false + }, + { + "feature_name": "citric acid", + "data_type": "continuous", + "is_target": false + }, + { + "feature_name": "residual sugar", + "data_type": "continuous", + "is_target": false + }, + { + "feature_name": "chlorides", + "data_type": "continuous", + "is_target": false + }, + { + "feature_name": "free sulfur dioxide", + "data_type": "continuous", + "is_target": false + }, + { + "feature_name": "total sulfur dioxide", + "data_type": "continuous", + "is_target": false + }, + { + "feature_name": "density", + "data_type": "continuous", + "is_target": false + }, + { + "feature_name": "pH", + "data_type": "continuous", + "is_target": false + }, + { + "feature_name": "sulphates", + "data_type": "continuous", + "is_target": false + }, + { + "feature_name": "alcohol", + "data_type": "continuous", + "is_target": false + }, + { + "feature_name": "quality", + "data_type": "continuous", + "is_target": true + } +] \ No newline at end of file diff --git a/timecost/n3/tvae/tvae-n3-20260504_180209/staged/public/test.csv b/timecost/n3/tvae/tvae-n3-20260504_180209/staged/public/test.csv new file mode 100644 index 0000000000000000000000000000000000000000..db5cd50d3746410ea470625fa2ba2c8e9775cc0d --- /dev/null +++ b/timecost/n3/tvae/tvae-n3-20260504_180209/staged/public/test.csv @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:19e107152a94432e2a37ff045c00cfe35e1be30208b1553080d7dd0ede256d3b +size 28944 diff --git a/timecost/n3/tvae/tvae-n3-20260504_180209/staged/public/train.csv b/timecost/n3/tvae/tvae-n3-20260504_180209/staged/public/train.csv new file mode 100644 index 0000000000000000000000000000000000000000..87ca26726fe82ccbaa397919305b043c17eb374e --- /dev/null +++ b/timecost/n3/tvae/tvae-n3-20260504_180209/staged/public/train.csv @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:7813c8cca73ba4bfc6559215257b341c21e459980ad17ae6ddc809306bc9a0b9 +size 229945 diff --git a/timecost/n3/tvae/tvae-n3-20260504_180209/staged/public/val.csv b/timecost/n3/tvae/tvae-n3-20260504_180209/staged/public/val.csv new file mode 100644 index 0000000000000000000000000000000000000000..6acf84c76c47093b513c46d5503972a2dff275c0 --- /dev/null +++ b/timecost/n3/tvae/tvae-n3-20260504_180209/staged/public/val.csv @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:cf5979d9675567d9d6642640c9b84fc6c49e492604144723c30f50516c05cee6 +size 28791 diff --git a/timecost/n3/tvae/tvae-n3-20260504_180209/staged/tvae/adapter_report.json b/timecost/n3/tvae/tvae-n3-20260504_180209/staged/tvae/adapter_report.json new file mode 100644 index 0000000000000000000000000000000000000000..4bf0f97ba6c93866503b3df927d84938ef842bfd --- /dev/null +++ b/timecost/n3/tvae/tvae-n3-20260504_180209/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-Benchmark-trainonly-v1/n3/tvae/tvae-n3-20260504_180209/staged/tvae/model_input_manifest.json" +} \ No newline at end of file diff --git a/timecost/n3/tvae/tvae-n3-20260504_180209/staged/tvae/adapter_transforms_applied.json b/timecost/n3/tvae/tvae-n3-20260504_180209/staged/tvae/adapter_transforms_applied.json new file mode 100644 index 0000000000000000000000000000000000000000..0637a088a01e8ddab3bf3fa98dbe804cbde1a0dc --- /dev/null +++ b/timecost/n3/tvae/tvae-n3-20260504_180209/staged/tvae/adapter_transforms_applied.json @@ -0,0 +1 @@ +[] \ No newline at end of file diff --git a/timecost/n3/tvae/tvae-n3-20260504_180209/staged/tvae/model_input_manifest.json b/timecost/n3/tvae/tvae-n3-20260504_180209/staged/tvae/model_input_manifest.json new file mode 100644 index 0000000000000000000000000000000000000000..e7ef2aa9b33d3f5c50fa61424e02c8bf5e16cd5d --- /dev/null +++ b/timecost/n3/tvae/tvae-n3-20260504_180209/staged/tvae/model_input_manifest.json @@ -0,0 +1,266 @@ +{ + "dataset_id": "n3", + "model": "tvae", + "target_column": "quality", + "task_type": "classification", + "column_schema": [ + { + "name": "fixed acidity", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 66, + "unique_ratio": 0.016845, + "example_values": [ + "7.1", + "8.5", + "6.4", + "6.8", + "7.6" + ] + } + }, + { + "name": "volatile acidity", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 121, + "unique_ratio": 0.030883, + "example_values": [ + "0.31", + "0.21", + "0.24", + "0.43", + "0.27" + ] + } + }, + { + "name": "citric acid", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 85, + "unique_ratio": 0.021695, + "example_values": [ + "0.17", + "0.41", + "0.31", + "0.25", + "0.3" + ] + } + }, + { + "name": "residual sugar", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 296, + "unique_ratio": 0.075549, + "example_values": [ + "1", + "4.3", + "2.8", + "13", + "12.9" + ] + } + }, + { + "name": "chlorides", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 147, + "unique_ratio": 0.037519, + "example_values": [ + "0.042", + "0.036", + "0.038", + "0.047", + "0.033" + ] + } + }, + { + "name": "free sulfur dioxide", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 120, + "unique_ratio": 0.030628, + "example_values": [ + "21", + "24", + "41", + "43", + "69" + ] + } + }, + { + "name": "total sulfur dioxide", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 244, + "unique_ratio": 0.062277, + "example_values": [ + "144", + "99", + "114", + "132", + "160" + ] + } + }, + { + "name": "density", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 839, + "unique_ratio": 0.21414, + "example_values": [ + "0.99304", + "0.9947", + "0.99155", + "0.98975", + "0.99705" + ] + } + }, + { + "name": "pH", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 100, + "unique_ratio": 0.025523, + "example_values": [ + "3.13", + "3.18", + "3.37", + "3.21", + "3.16" + ] + } + }, + { + "name": "sulphates", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 78, + "unique_ratio": 0.019908, + "example_values": [ + "0.4", + "0.53", + "0.66", + "0.47", + "0.5" + ] + } + }, + { + "name": "alcohol", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 97, + "unique_ratio": 0.024758, + "example_values": [ + "9.6", + "9.7", + "11.7", + "13.4", + "8.8" + ] + } + }, + { + "name": "quality", + "role": "target", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 7, + "unique_ratio": 0.001787, + "example_values": [ + "5", + "6", + "7", + "8", + "3" + ] + } + } + ], + "public_manifest": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/n3/tvae/tvae-n3-20260504_180209/public_gate/staged_input_manifest.json", + "train_csv": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/n3/tvae/tvae-n3-20260504_180209/staged/public/train.csv", + "val_csv": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/n3/tvae/tvae-n3-20260504_180209/staged/public/val.csv", + "test_csv": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/n3/tvae/tvae-n3-20260504_180209/staged/public/test.csv", + "features_json": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/n3/tvae/tvae-n3-20260504_180209/staged/public/staged_features.json", + "public_gate_report": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/n3/tvae/tvae-n3-20260504_180209/public_gate/public_gate_report.json" +} \ No newline at end of file diff --git a/timecost/n3/tvae/tvae-n3-20260504_180209/tvae-n3-3918-20260504_180345.csv b/timecost/n3/tvae/tvae-n3-20260504_180209/tvae-n3-3918-20260504_180345.csv new file mode 100644 index 0000000000000000000000000000000000000000..cb4001a56167f759b7d62206402096f406caea1e --- /dev/null +++ b/timecost/n3/tvae/tvae-n3-20260504_180209/tvae-n3-3918-20260504_180345.csv @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:4c5849ac70605215db2f49695e46e4d45a6af7caa95083a86a1ba1d6ccc8f579 +size 820300 diff --git a/timecost/n3/tvae/tvae-n3-20260504_180209/tvae_metadata.json b/timecost/n3/tvae/tvae-n3-20260504_180209/tvae_metadata.json new file mode 100644 index 0000000000000000000000000000000000000000..40d513aa1aca4c6f5c1be8afc3d6a1a0c75aa74f --- /dev/null +++ b/timecost/n3/tvae/tvae-n3-20260504_180209/tvae_metadata.json @@ -0,0 +1,52 @@ +{ + "columns": [ + { + "name": "fixed acidity", + "type": "continuous" + }, + { + "name": "volatile acidity", + "type": "continuous" + }, + { + "name": "citric acid", + "type": "continuous" + }, + { + "name": "residual sugar", + "type": "continuous" + }, + { + "name": "chlorides", + "type": "continuous" + }, + { + "name": "free sulfur dioxide", + "type": "continuous" + }, + { + "name": "total sulfur dioxide", + "type": "continuous" + }, + { + "name": "density", + "type": "continuous" + }, + { + "name": "pH", + "type": "continuous" + }, + { + "name": "sulphates", + "type": "continuous" + }, + { + "name": "alcohol", + "type": "continuous" + }, + { + "name": "quality", + "type": "continuous" + } + ] +} \ No newline at end of file diff --git a/timecost/n6/arf/arf-n6-20260429_031623/_arf_generate.py b/timecost/n6/arf/arf-n6-20260429_031623/_arf_generate.py new file mode 100644 index 0000000000000000000000000000000000000000..18f82663588ac8aaeca0a5ea0803aa8645d2d2b7 --- /dev/null +++ b/timecost/n6/arf/arf-n6-20260429_031623/_arf_generate.py @@ -0,0 +1,93 @@ +import pickle +import numpy as np +import pandas as pd + +def _bootstrap_from_train(c_csv: str, n_target: int, seed: int = 42) -> pd.DataFrame: + """当 arfpy.forge 完全不可用时,从训练 CSV 有放回抽样,保证行数与列对齐。""" + src = pd.read_csv(c_csv, encoding="utf-8-sig", low_memory=False) + src = src.replace([np.inf, -np.inf], np.nan).dropna(axis=1, how="all") + src = src.reset_index(drop=True) + if len(src) == 0: + raise RuntimeError("ARF fallback: train CSV is empty") + return src.sample(n=n_target, replace=True, random_state=seed).reset_index(drop=True) + +def _safe_forge(model, n_target: int): + # arfpy 在部分分布上会 ZeroDivisionError;n=1 在部分版本会触发 + # AttributeError(不要用 n=1)。失败返回 None,由外层走 bootstrap。 + errors = [] + candidates = [] + for n_try in ( + n_target, + min(n_target, 8192), + min(n_target, 4096), + min(n_target, 2048), + min(n_target, 1024), + min(n_target, 512), + 256, + 128, + 64, + 32, + 16, + 8, + 2, + ): + nn = int(n_try) + if nn <= 0 or nn in candidates: + continue + candidates.append(nn) + for n_try in candidates: + try: + out = model.forge(n=n_try).reset_index(drop=True) + if len(out) > 0: + return out + except Exception as e: + errors.append(f"n={n_try}: {type(e).__name__}: {e}") + print("[ARF] forge failed after retries; last errors:", " | ".join(errors[-4:])) + return None + +n_target = int(6400) +c_csv = "/work/output-Benchmark-trainonly-v1/n6/arf/arf-n6-20260429_031623/staged/public/train.csv" +with open("/work/output-Benchmark-trainonly-v1/n6/arf/arf-n6-20260429_031623/arf_model.pkl", "rb") as f: + model = pickle.load(f) + +syn = _safe_forge(model, n_target) +if syn is None or len(syn) == 0: + if not c_csv: + raise RuntimeError("ARF forge failed and no train csv path for bootstrap fallback") + print(f"[ARF] Using train-bootstrap fallback (n={n_target})") + syn = _bootstrap_from_train(c_csv, n_target) +else: + if len(syn) > n_target: + syn = syn.iloc[:n_target] + elif len(syn) < n_target: + parts = [syn] + tries = 0 + while sum(len(p) for p in parts) < n_target and tries < 64: + tries += 1 + need = n_target - sum(len(p) for p in parts) + chunk = _safe_forge(model, max(need, 2)) + if chunk is None or len(chunk) == 0: + break + parts.append(chunk) + syn = pd.concat(parts, ignore_index=True).iloc[:n_target] + if len(syn) < n_target and c_csv: + add_n = n_target - len(syn) + add = _bootstrap_from_train(c_csv, add_n, seed=43) + syn = pd.concat([syn, add], ignore_index=True).iloc[:n_target] + +_ds_id = 'n6' +if _ds_id == "c19": + # 仅 c19:object 列内裸换行会使 pivot 用 csv.reader 统计到的「记录数」大于 DataFrame 行数 → Sw。 + for _col in syn.columns: + if syn[_col].dtype == object: + syn[_col] = ( + syn[_col] + .astype(str) + .str.replace("\r\n", " ", regex=False) + .str.replace("\n", " ", regex=False) + .str.replace("\r", " ", regex=False) + ) + syn = syn.iloc[:n_target].reset_index(drop=True) + +syn.to_csv("/work/output-Benchmark-trainonly-v1/n6/arf/arf-n6-20260429_031623/arf-n6-6400-20260429_032002.csv", index=False) +print(f"[ARF] Generated {len(syn)} rows (requested {n_target}) -> /work/output-Benchmark-trainonly-v1/n6/arf/arf-n6-20260429_031623/arf-n6-6400-20260429_032002.csv") diff --git a/timecost/n6/arf/arf-n6-20260429_031623/_arf_train.py b/timecost/n6/arf/arf-n6-20260429_031623/_arf_train.py new file mode 100644 index 0000000000000000000000000000000000000000..70acf11264e3daf7ed1692b92b9b9e07f0264df1 --- /dev/null +++ b/timecost/n6/arf/arf-n6-20260429_031623/_arf_train.py @@ -0,0 +1,37 @@ +import pickle +import numpy as np +import pandas as pd +from arfpy import arf + +def _sanitize_for_arf(df: pd.DataFrame) -> pd.DataFrame: + """缓解 forge 阶段 scipy.stats.truncnorm / 除零:处理 inf、NaN 与极端尾部。""" + df = df.replace([np.inf, -np.inf], np.nan) + df = df.dropna(axis=1, how="all") + for col in df.select_dtypes(include=[np.number]).columns: + med = df[col].median() + if pd.isna(med): + med = 0.0 + df[col] = df[col].fillna(med) + nu = int(df[col].nunique(dropna=True)) + if nu <= 1: + continue + lo, hi = df[col].quantile(0.001), df[col].quantile(0.999) + if pd.notna(lo) and pd.notna(hi) and lo < hi: + df[col] = df[col].clip(lo, hi) + return df + +df = pd.read_csv("/work/output-Benchmark-trainonly-v1/n6/arf/arf-n6-20260429_031623/staged/public/train.csv") +df = _sanitize_for_arf(df) +print(f"[ARF] Training on {len(df)} rows, {len(df.columns)} cols") + +model = arf.arf(x=df) +if hasattr(model, "fit"): + model.fit() +elif hasattr(model, "forde"): + model.forde() +else: + raise RuntimeError("arfpy API: no fit() / forde()") + +with open("/work/output-Benchmark-trainonly-v1/n6/arf/arf-n6-20260429_031623/arf_model.pkl", "wb") as f: + pickle.dump(model, f) +print(f"[ARF] Model saved -> /work/output-Benchmark-trainonly-v1/n6/arf/arf-n6-20260429_031623/arf_model.pkl") diff --git a/timecost/n6/arf/arf-n6-20260429_031623/arf-n6-6400-20260429_032002.csv b/timecost/n6/arf/arf-n6-20260429_031623/arf-n6-6400-20260429_032002.csv new file mode 100644 index 0000000000000000000000000000000000000000..c808deef5ce6504b6dc0df95997e09ce3d3fc223 --- /dev/null +++ b/timecost/n6/arf/arf-n6-20260429_031623/arf-n6-6400-20260429_032002.csv @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:5ae8ee5b84bb67e1265ade5b331c64864e14c6797e803082a475317806cd8009 +size 2028017 diff --git a/timecost/n6/arf/arf-n6-20260429_031623/arf_model.pkl b/timecost/n6/arf/arf-n6-20260429_031623/arf_model.pkl new file mode 100644 index 0000000000000000000000000000000000000000..b3b55d0f10d40bb2165f214c354ca00d8c6d8146 --- /dev/null +++ b/timecost/n6/arf/arf-n6-20260429_031623/arf_model.pkl @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:543ad3fe9ba90e9e706eb17541a6a2f053c993fd4d9191b2aadbc3f4ffe02315 +size 43688366 diff --git a/timecost/n6/arf/arf-n6-20260429_031623/gen_20260429_032002.log b/timecost/n6/arf/arf-n6-20260429_031623/gen_20260429_032002.log new file mode 100644 index 0000000000000000000000000000000000000000..78f4864f790db781da486007bee0654dd1fcc22d --- /dev/null +++ b/timecost/n6/arf/arf-n6-20260429_031623/gen_20260429_032002.log @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:3cb012c75ca4ed9a4a060e80e72256a563c8fe672017de96a2d649ccb3e57858 +size 719 diff --git a/timecost/n6/arf/arf-n6-20260429_031623/input_snapshot.json b/timecost/n6/arf/arf-n6-20260429_031623/input_snapshot.json new file mode 100644 index 0000000000000000000000000000000000000000..0ba067dbcb726fa4462b49a39eb294de6980bc91 --- /dev/null +++ b/timecost/n6/arf/arf-n6-20260429_031623/input_snapshot.json @@ -0,0 +1,36 @@ +{ + "dataset_id": "n6", + "model": "arf", + "inputs": { + "train_csv": { + "path": "/data/jialinzhang/SynthesizePipeline-server/DatasetNew/n6/n6-train.csv", + "exists": true, + "size": 323303, + "sha256": "3b9d646393340b4c636db7686f2313521d84434e99ac1316b1053b05c995a3b1" + }, + "val_csv": { + "path": "/data/jialinzhang/SynthesizePipeline-server/DatasetNew/n6/n6-val.csv", + "exists": true, + "size": 40506, + "sha256": "74a01693febbfda57225ebbec2f7a9c22a2136edbec694b108b50c013cd6fe9d" + }, + "test_csv": { + "path": "/data/jialinzhang/SynthesizePipeline-server/DatasetNew/n6/n6-test.csv", + "exists": true, + "size": 40719, + "sha256": "46f32b813d7849636da5a0a7aa560ea062b8f5765772dc1a8268f756cdb2fbcc" + }, + "profile_json": { + "path": "/data/jialinzhang/SynthesizePipeline-server/DatasetNew/artifacts/data_core/tabular/n6/n6-dataset_profile.json", + "exists": true, + "size": 6559, + "sha256": "c3a4ba3662399f797ed5ac4ea171e2991e3f3ac9ea221ba345c132e11450d759" + }, + "contract_json": { + "path": "/data/jialinzhang/SynthesizePipeline-server/DatasetNew/artifacts/data_core/tabular/n6/n6-dataset_contract_v1.json", + "exists": true, + "size": 8304, + "sha256": "979119ea8d3be4588170ff59aa802156a0a5ecaf4312599a8b2998d38b69fba5" + } + } +} \ No newline at end of file diff --git a/timecost/n6/arf/arf-n6-20260429_031623/public_gate/normalized_schema_snapshot.json b/timecost/n6/arf/arf-n6-20260429_031623/public_gate/normalized_schema_snapshot.json new file mode 100644 index 0000000000000000000000000000000000000000..f37e46415bf96a79860f8cd9cdbfb764f9fbd0cb --- /dev/null +++ b/timecost/n6/arf/arf-n6-20260429_031623/public_gate/normalized_schema_snapshot.json @@ -0,0 +1,363 @@ +{ + "dataset_id": "n6", + "target_column": "y", + "task_type": "classification", + "columns": [ + { + "name": "X1", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 313, + "unique_ratio": 0.048906, + "example_values": [ + "2", + "6", + "-2", + "-15", + "3" + ] + } + }, + { + "name": "X2", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 328, + "unique_ratio": 0.05125, + "example_values": [ + "-3", + "1", + "16", + "-4", + "-12" + ] + } + }, + { + "name": "X3", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 316, + "unique_ratio": 0.049375, + "example_values": [ + "-7", + "-6", + "3", + "-22", + "13" + ] + } + }, + { + "name": "X4", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 323, + "unique_ratio": 0.050469, + "example_values": [ + "-6", + "-7", + "5", + "-5", + "-37" + ] + } + }, + { + "name": "X5", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 325, + "unique_ratio": 0.050781, + "example_values": [ + "-9", + "2", + "-12", + "-8", + "-63" + ] + } + }, + { + "name": "X6", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 325, + "unique_ratio": 0.050781, + "example_values": [ + "-6", + "-5", + "11", + "0", + "-86" + ] + } + }, + { + "name": "X7", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 332, + "unique_ratio": 0.051875, + "example_values": [ + "-1", + "-2", + "5", + "-4", + "-82" + ] + } + }, + { + "name": "X8", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 330, + "unique_ratio": 0.051562, + "example_values": [ + "3", + "-3", + "9", + "-9", + "-51" + ] + } + }, + { + "name": "X9", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 333, + "unique_ratio": 0.052031, + "example_values": [ + "1", + "19", + "0", + "-1", + "-30" + ] + } + }, + { + "name": "X10", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 334, + "unique_ratio": 0.052187, + "example_values": [ + "4", + "10", + "9", + "3", + "-13" + ] + } + }, + { + "name": "X11", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 328, + "unique_ratio": 0.05125, + "example_values": [ + "-4", + "-3", + "-1", + "-7", + "-20" + ] + } + }, + { + "name": "X12", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 324, + "unique_ratio": 0.050625, + "example_values": [ + "-5", + "-11", + "0", + "4", + "-29" + ] + } + }, + { + "name": "X13", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 332, + "unique_ratio": 0.051875, + "example_values": [ + "4", + "-6", + "6", + "9", + "-38" + ] + } + }, + { + "name": "X14", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 318, + "unique_ratio": 0.049688, + "example_values": [ + "1", + "30", + "11", + "-5", + "-29" + ] + } + }, + { + "name": "X15", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 324, + "unique_ratio": 0.050625, + "example_values": [ + "-8", + "4", + "-9", + "-6", + "-15" + ] + } + }, + { + "name": "X16", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 325, + "unique_ratio": 0.050781, + "example_values": [ + "-1", + "-13", + "0", + "1", + "-23" + ] + } + }, + { + "name": "y", + "role": "target", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 4, + "unique_ratio": 0.000625, + "example_values": [ + "2", + "1", + "0", + "3" + ] + } + } + ] +} \ No newline at end of file diff --git a/timecost/n6/arf/arf-n6-20260429_031623/public_gate/public_gate_report.json b/timecost/n6/arf/arf-n6-20260429_031623/public_gate/public_gate_report.json new file mode 100644 index 0000000000000000000000000000000000000000..a228c993845322a7356eef31ebce756cb39378ed --- /dev/null +++ b/timecost/n6/arf/arf-n6-20260429_031623/public_gate/public_gate_report.json @@ -0,0 +1,37 @@ +{ + "dataset_id": "n6", + "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": "y", + "task_type": "classification", + "input_splits": { + "train": "/data/jialinzhang/SynthesizePipeline-server/DatasetNew/n6/n6-train.csv", + "val": "/data/jialinzhang/SynthesizePipeline-server/DatasetNew/n6/n6-val.csv", + "test": "/data/jialinzhang/SynthesizePipeline-server/DatasetNew/n6/n6-test.csv" + } +} \ No newline at end of file diff --git a/timecost/n6/arf/arf-n6-20260429_031623/public_gate/staged_input_manifest.json b/timecost/n6/arf/arf-n6-20260429_031623/public_gate/staged_input_manifest.json new file mode 100644 index 0000000000000000000000000000000000000000..f3f18c7fcb75d943979ec9f2d2d39580edae5ff3 --- /dev/null +++ b/timecost/n6/arf/arf-n6-20260429_031623/public_gate/staged_input_manifest.json @@ -0,0 +1,368 @@ +{ + "dataset_id": "n6", + "target_column": "y", + "task_type": "classification", + "train_csv": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/n6/arf/arf-n6-20260429_031623/staged/public/train.csv", + "val_csv": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/n6/arf/arf-n6-20260429_031623/staged/public/val.csv", + "test_csv": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/n6/arf/arf-n6-20260429_031623/staged/public/test.csv", + "features_json": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/n6/arf/arf-n6-20260429_031623/staged/public/staged_features.json", + "public_gate_report": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/n6/arf/arf-n6-20260429_031623/public_gate/public_gate_report.json", + "column_schema": [ + { + "name": "X1", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 313, + "unique_ratio": 0.048906, + "example_values": [ + "2", + "6", + "-2", + "-15", + "3" + ] + } + }, + { + "name": "X2", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 328, + "unique_ratio": 0.05125, + "example_values": [ + "-3", + "1", + "16", + "-4", + "-12" + ] + } + }, + { + "name": "X3", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 316, + "unique_ratio": 0.049375, + "example_values": [ + "-7", + "-6", + "3", + "-22", + "13" + ] + } + }, + { + "name": "X4", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 323, + "unique_ratio": 0.050469, + "example_values": [ + "-6", + "-7", + "5", + "-5", + "-37" + ] + } + }, + { + "name": "X5", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 325, + "unique_ratio": 0.050781, + "example_values": [ + "-9", + "2", + "-12", + "-8", + "-63" + ] + } + }, + { + "name": "X6", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 325, + "unique_ratio": 0.050781, + "example_values": [ + "-6", + "-5", + "11", + "0", + "-86" + ] + } + }, + { + "name": "X7", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 332, + "unique_ratio": 0.051875, + "example_values": [ + "-1", + "-2", + "5", + "-4", + "-82" + ] + } + }, + { + "name": "X8", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 330, + "unique_ratio": 0.051562, + "example_values": [ + "3", + "-3", + "9", + "-9", + "-51" + ] + } + }, + { + "name": "X9", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 333, + "unique_ratio": 0.052031, + "example_values": [ + "1", + "19", + "0", + "-1", + "-30" + ] + } + }, + { + "name": "X10", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 334, + "unique_ratio": 0.052187, + "example_values": [ + "4", + "10", + "9", + "3", + "-13" + ] + } + }, + { + "name": "X11", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 328, + "unique_ratio": 0.05125, + "example_values": [ + "-4", + "-3", + "-1", + "-7", + "-20" + ] + } + }, + { + "name": "X12", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 324, + "unique_ratio": 0.050625, + "example_values": [ + "-5", + "-11", + "0", + "4", + "-29" + ] + } + }, + { + "name": "X13", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 332, + "unique_ratio": 0.051875, + "example_values": [ + "4", + "-6", + "6", + "9", + "-38" + ] + } + }, + { + "name": "X14", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 318, + "unique_ratio": 0.049688, + "example_values": [ + "1", + "30", + "11", + "-5", + "-29" + ] + } + }, + { + "name": "X15", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 324, + "unique_ratio": 0.050625, + "example_values": [ + "-8", + "4", + "-9", + "-6", + "-15" + ] + } + }, + { + "name": "X16", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 325, + "unique_ratio": 0.050781, + "example_values": [ + "-1", + "-13", + "0", + "1", + "-23" + ] + } + }, + { + "name": "y", + "role": "target", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 4, + "unique_ratio": 0.000625, + "example_values": [ + "2", + "1", + "0", + "3" + ] + } + } + ] +} \ No newline at end of file diff --git a/timecost/n6/arf/arf-n6-20260429_031623/runtime_result.json b/timecost/n6/arf/arf-n6-20260429_031623/runtime_result.json new file mode 100644 index 0000000000000000000000000000000000000000..8eb4945f858e2c5649bd695ca33fb989b9b04985 --- /dev/null +++ b/timecost/n6/arf/arf-n6-20260429_031623/runtime_result.json @@ -0,0 +1,15 @@ +{ + "dataset_id": "n6", + "model": "arf", + "run_id": "arf-n6-20260429_031623", + "public_gate_status": "pass", + "adapter_ready_status": "pass", + "train_status": "success", + "generate_status": "success", + "reason_code": null, + "reason_detail": null, + "artifacts": { + "synthetic_csv": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/n6/arf/arf-n6-20260429_031623/arf-n6-6400-20260429_032002.csv", + "model_path": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/n6/arf/arf-n6-20260429_031623/arf_model.pkl" + } +} \ No newline at end of file diff --git a/timecost/n6/arf/arf-n6-20260429_031623/staged/arf/adapter_report.json b/timecost/n6/arf/arf-n6-20260429_031623/staged/arf/adapter_report.json new file mode 100644 index 0000000000000000000000000000000000000000..55681597f35eac2793820719de1ba8c5065c4a92 --- /dev/null +++ b/timecost/n6/arf/arf-n6-20260429_031623/staged/arf/adapter_report.json @@ -0,0 +1,7 @@ +{ + "adapter_ready_status": "pass", + "adapter_fail_reason_code": null, + "adapter_fail_detail": null, + "adapter_transforms_applied": [], + "model_input_manifest": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/n6/arf/arf-n6-20260429_031623/staged/arf/model_input_manifest.json" +} \ No newline at end of file diff --git a/timecost/n6/arf/arf-n6-20260429_031623/staged/arf/adapter_transforms_applied.json b/timecost/n6/arf/arf-n6-20260429_031623/staged/arf/adapter_transforms_applied.json new file mode 100644 index 0000000000000000000000000000000000000000..0637a088a01e8ddab3bf3fa98dbe804cbde1a0dc --- /dev/null +++ b/timecost/n6/arf/arf-n6-20260429_031623/staged/arf/adapter_transforms_applied.json @@ -0,0 +1 @@ +[] \ No newline at end of file diff --git a/timecost/n6/arf/arf-n6-20260429_031623/staged/arf/model_input_manifest.json b/timecost/n6/arf/arf-n6-20260429_031623/staged/arf/model_input_manifest.json new file mode 100644 index 0000000000000000000000000000000000000000..521f7466261bd1820eae417370d30422b8252b30 --- /dev/null +++ b/timecost/n6/arf/arf-n6-20260429_031623/staged/arf/model_input_manifest.json @@ -0,0 +1,370 @@ +{ + "dataset_id": "n6", + "model": "arf", + "target_column": "y", + "task_type": "classification", + "column_schema": [ + { + "name": "X1", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 313, + "unique_ratio": 0.048906, + "example_values": [ + "2", + "6", + "-2", + "-15", + "3" + ] + } + }, + { + "name": "X2", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 328, + "unique_ratio": 0.05125, + "example_values": [ + "-3", + "1", + "16", + "-4", + "-12" + ] + } + }, + { + "name": "X3", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 316, + "unique_ratio": 0.049375, + "example_values": [ + "-7", + "-6", + "3", + "-22", + "13" + ] + } + }, + { + "name": "X4", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 323, + "unique_ratio": 0.050469, + "example_values": [ + "-6", + "-7", + "5", + "-5", + "-37" + ] + } + }, + { + "name": "X5", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 325, + "unique_ratio": 0.050781, + "example_values": [ + "-9", + "2", + "-12", + "-8", + "-63" + ] + } + }, + { + "name": "X6", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 325, + "unique_ratio": 0.050781, + "example_values": [ + "-6", + "-5", + "11", + "0", + "-86" + ] + } + }, + { + "name": "X7", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 332, + "unique_ratio": 0.051875, + "example_values": [ + "-1", + "-2", + "5", + "-4", + "-82" + ] + } + }, + { + "name": "X8", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 330, + "unique_ratio": 0.051562, + "example_values": [ + "3", + "-3", + "9", + "-9", + "-51" + ] + } + }, + { + "name": "X9", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 333, + "unique_ratio": 0.052031, + "example_values": [ + "1", + "19", + "0", + "-1", + "-30" + ] + } + }, + { + "name": "X10", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 334, + "unique_ratio": 0.052187, + "example_values": [ + "4", + "10", + "9", + "3", + "-13" + ] + } + }, + { + "name": "X11", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 328, + "unique_ratio": 0.05125, + "example_values": [ + "-4", + "-3", + "-1", + "-7", + "-20" + ] + } + }, + { + "name": "X12", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 324, + "unique_ratio": 0.050625, + "example_values": [ + "-5", + "-11", + "0", + "4", + "-29" + ] + } + }, + { + "name": "X13", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 332, + "unique_ratio": 0.051875, + "example_values": [ + "4", + "-6", + "6", + "9", + "-38" + ] + } + }, + { + "name": "X14", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 318, + "unique_ratio": 0.049688, + "example_values": [ + "1", + "30", + "11", + "-5", + "-29" + ] + } + }, + { + "name": "X15", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 324, + "unique_ratio": 0.050625, + "example_values": [ + "-8", + "4", + "-9", + "-6", + "-15" + ] + } + }, + { + "name": "X16", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 325, + "unique_ratio": 0.050781, + "example_values": [ + "-1", + "-13", + "0", + "1", + "-23" + ] + } + }, + { + "name": "y", + "role": "target", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 4, + "unique_ratio": 0.000625, + "example_values": [ + "2", + "1", + "0", + "3" + ] + } + } + ], + "public_manifest": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/n6/arf/arf-n6-20260429_031623/public_gate/staged_input_manifest.json", + "train_csv": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/n6/arf/arf-n6-20260429_031623/staged/public/train.csv", + "val_csv": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/n6/arf/arf-n6-20260429_031623/staged/public/val.csv", + "test_csv": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/n6/arf/arf-n6-20260429_031623/staged/public/test.csv", + "features_json": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/n6/arf/arf-n6-20260429_031623/staged/public/staged_features.json", + "public_gate_report": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/n6/arf/arf-n6-20260429_031623/public_gate/public_gate_report.json" +} \ No newline at end of file diff --git a/timecost/n6/arf/arf-n6-20260429_031623/staged/public/staged_features.json b/timecost/n6/arf/arf-n6-20260429_031623/staged/public/staged_features.json new file mode 100644 index 0000000000000000000000000000000000000000..13d0b8c66a07bb8f5aa06667e153a85656dae7d8 --- /dev/null +++ b/timecost/n6/arf/arf-n6-20260429_031623/staged/public/staged_features.json @@ -0,0 +1,87 @@ +[ + { + "feature_name": "X1", + "data_type": "continuous", + "is_target": false + }, + { + "feature_name": "X2", + "data_type": "continuous", + "is_target": false + }, + { + "feature_name": "X3", + "data_type": "continuous", + "is_target": false + }, + { + "feature_name": "X4", + "data_type": "continuous", + "is_target": false + }, + { + "feature_name": "X5", + "data_type": "continuous", + "is_target": false + }, + { + "feature_name": "X6", + "data_type": "continuous", + "is_target": false + }, + { + "feature_name": "X7", + "data_type": "continuous", + "is_target": false + }, + { + "feature_name": "X8", + "data_type": "continuous", + "is_target": false + }, + { + "feature_name": "X9", + "data_type": "continuous", + "is_target": false + }, + { + "feature_name": "X10", + "data_type": "continuous", + "is_target": false + }, + { + "feature_name": "X11", + "data_type": "continuous", + "is_target": false + }, + { + "feature_name": "X12", + "data_type": "continuous", + "is_target": false + }, + { + "feature_name": "X13", + "data_type": "continuous", + "is_target": false + }, + { + "feature_name": "X14", + "data_type": "continuous", + "is_target": false + }, + { + "feature_name": "X15", + "data_type": "continuous", + "is_target": false + }, + { + "feature_name": "X16", + "data_type": "continuous", + "is_target": false + }, + { + "feature_name": "y", + "data_type": "continuous", + "is_target": true + } +] \ No newline at end of file diff --git a/timecost/n6/arf/arf-n6-20260429_031623/staged/public/test.csv b/timecost/n6/arf/arf-n6-20260429_031623/staged/public/test.csv new file mode 100644 index 0000000000000000000000000000000000000000..64d039a1664b74ef81240a9ba69ab982a78be184 --- /dev/null +++ b/timecost/n6/arf/arf-n6-20260429_031623/staged/public/test.csv @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:f1922293e501d8f17f56a321a1305e44d20a6ad7ed67e97af754dea170989fc5 +size 39918 diff --git a/timecost/n6/arf/arf-n6-20260429_031623/staged/public/train.csv b/timecost/n6/arf/arf-n6-20260429_031623/staged/public/train.csv new file mode 100644 index 0000000000000000000000000000000000000000..25108968eaf2c7995080c74fba26ca496d015c72 --- /dev/null +++ b/timecost/n6/arf/arf-n6-20260429_031623/staged/public/train.csv @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:c8545a9761061bd99d67935948928e2840e6ae4b5c9760cad2de82198676db2b +size 316902 diff --git a/timecost/n6/arf/arf-n6-20260429_031623/staged/public/val.csv b/timecost/n6/arf/arf-n6-20260429_031623/staged/public/val.csv new file mode 100644 index 0000000000000000000000000000000000000000..933b52194b2ae481787d393e22f1a96acb482a5a --- /dev/null +++ b/timecost/n6/arf/arf-n6-20260429_031623/staged/public/val.csv @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:60a3dd7f655f8086e53402dcdcfa42297d586d8483f2afd6e1bbc6bd3521303f +size 39705 diff --git a/timecost/n6/arf/arf-n6-20260429_031623/train_20260429_031623.log b/timecost/n6/arf/arf-n6-20260429_031623/train_20260429_031623.log new file mode 100644 index 0000000000000000000000000000000000000000..5a0cfd0da98c2f89bc031f54bb2612c651c76b3a --- /dev/null +++ b/timecost/n6/arf/arf-n6-20260429_031623/train_20260429_031623.log @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:88df5cd7df34aa12f7435d49946537a3792b88550158af905d44115fd0b43118 +size 781 diff --git a/timecost/n6/bayesnet/bayesnet-n6-20260429_032012/_bayesnet_generate.py b/timecost/n6/bayesnet/bayesnet-n6-20260429_032012/_bayesnet_generate.py new file mode 100644 index 0000000000000000000000000000000000000000..40bd17bfe90fc9a2f3dd2d57462a6d684c3d4368 --- /dev/null +++ b/timecost/n6/bayesnet/bayesnet-n6-20260429_032012/_bayesnet_generate.py @@ -0,0 +1,105 @@ + +import pickle +import subprocess +import sys +import warnings + +import numpy as np +import pandas as pd +from pgmpy.sampling import BayesianModelSampling + +warnings.filterwarnings("ignore", category=FutureWarning) + +def _ensure_cloudpickle(): + try: + import cloudpickle # noqa: F401 + except ModuleNotFoundError: + subprocess.check_call( + [sys.executable, "-m", "pip", "install", "--quiet", "cloudpickle"], + ) + +_ensure_cloudpickle() + +with open("/work/output-Benchmark-trainonly-v1/n6/bayesnet/bayesnet-n6-20260429_032012/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(6400) +sampler = BayesianModelSampling(network) +raw = sampler.forward_sample(size=num_rows, show_progress=False) +raw = raw.reset_index(drop=True) +if len(raw) > num_rows: + raw = raw.iloc[:num_rows] +_tries = 0 +while len(raw) < num_rows and _tries < 64: + _tries += 1 + nextra = min(10000, num_rows - len(raw)) + more = sampler.forward_sample(size=max(nextra, 1), show_progress=False) + more = more.reset_index(drop=True) + if len(more) == 0: + break + raw = pd.concat([raw, more], ignore_index=True) + if len(raw) > num_rows: + raw = raw.iloc[:num_rows] + +out = pd.DataFrame(index=raw.index) +rng = np.random.default_rng() + +for c in cols: + if c in inverse["categorical"]: + levels = inverse["categorical"][c] + idx = raw[c].astype(int).to_numpy() + idx = np.clip(idx, 0, max(0, len(levels) - 1)) + out[c] = [levels[i] for i in idx] + else: + edges = np.asarray(inverse["continuous"][c], dtype=float) + if edges.size < 2: + out[c] = 0.0 + else: + nbin = edges.size - 1 + res = [] + for k in raw[c].astype(int).to_numpy(): + k = int(k) + if k < 0: + k = 0 + if k >= nbin: + k = nbin - 1 + lo, hi = float(edges[k]), float(edges[k + 1]) + if hi < lo: + lo, hi = hi, lo + v = rng.uniform(lo, hi) + if c in integer_columns: + v = int(round(v)) + res.append(v) + out[c] = res + +final = pd.DataFrame(index=out.index) +for c in full_order: + if c in const_cols: + final[c] = const_cols[c] + elif c in out.columns: + final[c] = out[c] + +dtypes = bundle.get("original_dtypes") or {} +for c, dts in dtypes.items(): + if c not in final.columns: + continue + try: + if "int" in dts: + final[c] = pd.to_numeric(final[c], errors="coerce").astype("Int64") + elif "float" in dts: + final[c] = pd.to_numeric(final[c], errors="coerce") + except Exception: + pass + +if len(final) != num_rows: + final = final.iloc[:num_rows].copy() +final = final.reset_index(drop=True) +final.to_csv("/work/output-Benchmark-trainonly-v1/n6/bayesnet/bayesnet-n6-20260429_032012/bayesnet-n6-6400-20260429_032030.csv", index=False) +print(f"[BayesNet] Generated {len(final)} rows (requested {num_rows}) -> /work/output-Benchmark-trainonly-v1/n6/bayesnet/bayesnet-n6-20260429_032012/bayesnet-n6-6400-20260429_032030.csv") diff --git a/timecost/n6/bayesnet/bayesnet-n6-20260429_032012/_bayesnet_train.py b/timecost/n6/bayesnet/bayesnet-n6-20260429_032012/_bayesnet_train.py new file mode 100644 index 0000000000000000000000000000000000000000..ba16efc0753f1834f413c3c713a42fe350fce6d5 --- /dev/null +++ b/timecost/n6/bayesnet/bayesnet-n6-20260429_032012/_bayesnet_train.py @@ -0,0 +1,133 @@ + +import json +import pickle +import subprocess +import sys +import warnings + +import numpy as np +import pandas as pd +from pgmpy.estimators import TreeSearch +from pgmpy.models import DiscreteBayesianNetwork +warnings.filterwarnings("ignore", category=FutureWarning) + +def _ensure_cloudpickle(): + try: + import cloudpickle # noqa: F401 + except ModuleNotFoundError: + subprocess.check_call( + [sys.executable, "-m", "pip", "install", "--quiet", "cloudpickle"], + ) + +_ensure_cloudpickle() + +with open("/work/output-Benchmark-trainonly-v1/n6/bayesnet/bayesnet-n6-20260429_032012/bayesnet_coltypes.json", "r", encoding="utf-8") as _f: + colmeta = json.load(_f) +integer_columns = set(colmeta.get("integer_columns") or []) + +df = pd.read_csv("/work/output-Benchmark-trainonly-v1/n6/bayesnet/bayesnet-n6-20260429_032012/staged/public/train.csv") +df = df.dropna(axis=1, how="all") +full_column_order = list(df.columns) + +const_cols = {} +for col in list(df.columns): + if df[col].nunique(dropna=True) <= 1: + const_cols[col] = df[col].iloc[0] if len(df) > 0 else None + df = df.drop(columns=[col]) + print(f"[BayesNet] Dropped zero-variance column '{col}'") + +const_path = "/work/output-Benchmark-trainonly-v1/n6/bayesnet/bayesnet-n6-20260429_032012/bayesnet_model.pkl".replace("bayesnet_model.pkl", "const_cols.json") +with open(const_path, "w", encoding="utf-8") as _f: + json.dump({k: str(v) for k, v in const_cols.items()}, _f) + +inverse = {"categorical": {}, "continuous": {}} +enc = pd.DataFrame(index=df.index) +_n_samples = len(df) +_n_plan = sum( + 1 for e in colmeta["columns"] if str(e.get("name", "")) in df.columns +) +max_bins = 10 +max_cat_levels = 256 +if _n_plan > 35 or _n_samples > 200000: + max_bins = 5 + max_cat_levels = 64 +if _n_plan > 55: + max_bins = 4 + max_cat_levels = 32 +print( + f"[BayesNet] max_bins={max_bins}, max_cat_levels={max_cat_levels} " + f"(cols_in_df={_n_plan}, rows={_n_samples})" +) + +for entry in colmeta["columns"]: + name = entry["name"] + if name not in df.columns: + continue + kind = entry["type"] + s = df[name] + if kind == "categorical": + s2 = s.astype(str).fillna("__NA__") + counts = s2.value_counts(dropna=False) + if len(counts) > max_cat_levels: + keep = set(counts.index[: max_cat_levels - 1].tolist()) + s2 = s2.map(lambda x: x if x in keep else "__OTHER__") + uniques = sorted(s2.dropna().unique(), key=lambda x: str(x)) + mapping = {str(v): i for i, v in enumerate(uniques)} + inverse["categorical"][name] = [uniques[i] for i in range(len(uniques))] + enc[name] = s2.map(lambda x, m=mapping: m.get(str(x), 0)).astype(int) + else: + s_num = pd.to_numeric(s, errors="coerce") + nu = int(s_num.nunique(dropna=True)) + q = min(max_bins, max(2, nu)) + if nu < 2: + enc[name] = np.zeros(len(s_num), dtype=int) + lo, hi = float(s_num.min()), float(s_num.max()) + inverse["continuous"][name] = [lo, hi] + else: + try: + _, bins = pd.qcut( + s_num, q=q, retbins=True, duplicates="drop" + ) + except Exception: + med = float(s_num.median()) + s2 = s_num.fillna(med) + _, bins = pd.qcut( + s2, q=min(q, 3), retbins=True, duplicates="drop" + ) + bins = np.asarray(bins, dtype=float) + lab = pd.cut( + s_num, bins=bins, labels=False, include_lowest=True + ) + enc[name] = lab.fillna(0).astype(int) + inverse["continuous"][name] = bins.tolist() + +print(f"[BayesNet] Training on {len(enc)} rows, {len(enc.columns)} cols (encoded)") + +enc_struct = enc +if len(enc) > 25000: + enc_struct = enc.sample(n=25000, random_state=0, replace=False) + print(f"[BayesNet] TreeSearch on {len(enc_struct)} rows (subsample; full n={len(enc)})") +dag = TreeSearch(enc_struct).estimate(show_progress=False) +for col in enc.columns: + if col not in dag.nodes(): + dag.add_node(col) + print(f"[BayesNet] Added isolated node to DAG: {col}") +network = DiscreteBayesianNetwork(dag) +enc_fit = enc +if len(enc) > 120000: + enc_fit = enc.sample(n=120000, random_state=1, replace=False) + print(f"[BayesNet] fit() on {len(enc_fit)} rows (full n={len(enc)})") +network.fit(enc_fit) + +bundle = { + "network": network, + "inverse": inverse, + "column_order": list(enc.columns), + "full_column_order": full_column_order, + "integer_columns": list(integer_columns), + "original_dtypes": {c: str(df[c].dtype) for c in enc.columns}, + "const_cols": const_cols, +} +with open("/work/output-Benchmark-trainonly-v1/n6/bayesnet/bayesnet-n6-20260429_032012/bayesnet_model.pkl", "wb") as _f: + pickle.dump(bundle, _f) +print(f"[BayesNet] Model saved -> /work/output-Benchmark-trainonly-v1/n6/bayesnet/bayesnet-n6-20260429_032012/bayesnet_model.pkl") diff --git a/timecost/n6/bayesnet/bayesnet-n6-20260429_032012/bayesnet-n6-6400-20260429_032030.csv b/timecost/n6/bayesnet/bayesnet-n6-20260429_032012/bayesnet-n6-6400-20260429_032030.csv new file mode 100644 index 0000000000000000000000000000000000000000..374a4cc35324e831b2c0b89ce486c142891db7dd --- /dev/null +++ b/timecost/n6/bayesnet/bayesnet-n6-20260429_032012/bayesnet-n6-6400-20260429_032030.csv @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:5fb459c43fa7ce655be233e75c37168f31861ee89f3b712cec88920c30a57332 +size 2067599 diff --git a/timecost/n6/bayesnet/bayesnet-n6-20260429_032012/bayesnet_coltypes.json b/timecost/n6/bayesnet/bayesnet-n6-20260429_032012/bayesnet_coltypes.json new file mode 100644 index 0000000000000000000000000000000000000000..2e848e719251a12a2ca5f80a65b64684f86ff55d --- /dev/null +++ b/timecost/n6/bayesnet/bayesnet-n6-20260429_032012/bayesnet_coltypes.json @@ -0,0 +1,73 @@ +{ + "columns": [ + { + "name": "X1", + "type": "continuous" + }, + { + "name": "X2", + "type": "continuous" + }, + { + "name": "X3", + "type": "continuous" + }, + { + "name": "X4", + "type": "continuous" + }, + { + "name": "X5", + "type": "continuous" + }, + { + "name": "X6", + "type": "continuous" + }, + { + "name": "X7", + "type": "continuous" + }, + { + "name": "X8", + "type": "continuous" + }, + { + "name": "X9", + "type": "continuous" + }, + { + "name": "X10", + "type": "continuous" + }, + { + "name": "X11", + "type": "continuous" + }, + { + "name": "X12", + "type": "continuous" + }, + { + "name": "X13", + "type": "continuous" + }, + { + "name": "X14", + "type": "continuous" + }, + { + "name": "X15", + "type": "continuous" + }, + { + "name": "X16", + "type": "continuous" + }, + { + "name": "y", + "type": "continuous" + } + ], + "integer_columns": [] +} \ No newline at end of file diff --git a/timecost/n6/bayesnet/bayesnet-n6-20260429_032012/bayesnet_model.pkl b/timecost/n6/bayesnet/bayesnet-n6-20260429_032012/bayesnet_model.pkl new file mode 100644 index 0000000000000000000000000000000000000000..18d677a3ff884772742bb4c6a7fd7df6384a4317 --- /dev/null +++ b/timecost/n6/bayesnet/bayesnet-n6-20260429_032012/bayesnet_model.pkl @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:af578ad8b89ab8b13564019e00757c139c3bc9d79b2e7b167d7c38860783f7b0 +size 25909 diff --git a/timecost/n6/bayesnet/bayesnet-n6-20260429_032012/const_cols.json b/timecost/n6/bayesnet/bayesnet-n6-20260429_032012/const_cols.json new file mode 100644 index 0000000000000000000000000000000000000000..9e26dfeeb6e641a33dae4961196235bdb965b21b --- /dev/null +++ b/timecost/n6/bayesnet/bayesnet-n6-20260429_032012/const_cols.json @@ -0,0 +1 @@ +{} \ No newline at end of file diff --git a/timecost/n6/bayesnet/bayesnet-n6-20260429_032012/gen_20260429_032030.log b/timecost/n6/bayesnet/bayesnet-n6-20260429_032012/gen_20260429_032030.log new file mode 100644 index 0000000000000000000000000000000000000000..e38b08ad6d8ee66388cef00046aab9e3e67d8790 --- /dev/null +++ b/timecost/n6/bayesnet/bayesnet-n6-20260429_032012/gen_20260429_032030.log @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:d9ab68c794c231fde0735f6d3df115f69f23e9108d401481418e1b35219ea704 +size 3662 diff --git a/timecost/n6/bayesnet/bayesnet-n6-20260429_032012/input_snapshot.json b/timecost/n6/bayesnet/bayesnet-n6-20260429_032012/input_snapshot.json new file mode 100644 index 0000000000000000000000000000000000000000..4e164469d02e864394129fc08473096997160d69 --- /dev/null +++ b/timecost/n6/bayesnet/bayesnet-n6-20260429_032012/input_snapshot.json @@ -0,0 +1,36 @@ +{ + "dataset_id": "n6", + "model": "bayesnet", + "inputs": { + "train_csv": { + "path": "/data/jialinzhang/SynthesizePipeline-server/DatasetNew/n6/n6-train.csv", + "exists": true, + "size": 323303, + "sha256": "3b9d646393340b4c636db7686f2313521d84434e99ac1316b1053b05c995a3b1" + }, + "val_csv": { + "path": "/data/jialinzhang/SynthesizePipeline-server/DatasetNew/n6/n6-val.csv", + "exists": true, + "size": 40506, + "sha256": "74a01693febbfda57225ebbec2f7a9c22a2136edbec694b108b50c013cd6fe9d" + }, + "test_csv": { + "path": "/data/jialinzhang/SynthesizePipeline-server/DatasetNew/n6/n6-test.csv", + "exists": true, + "size": 40719, + "sha256": "46f32b813d7849636da5a0a7aa560ea062b8f5765772dc1a8268f756cdb2fbcc" + }, + "profile_json": { + "path": "/data/jialinzhang/SynthesizePipeline-server/DatasetNew/artifacts/data_core/tabular/n6/n6-dataset_profile.json", + "exists": true, + "size": 6559, + "sha256": "c3a4ba3662399f797ed5ac4ea171e2991e3f3ac9ea221ba345c132e11450d759" + }, + "contract_json": { + "path": "/data/jialinzhang/SynthesizePipeline-server/DatasetNew/artifacts/data_core/tabular/n6/n6-dataset_contract_v1.json", + "exists": true, + "size": 8304, + "sha256": "979119ea8d3be4588170ff59aa802156a0a5ecaf4312599a8b2998d38b69fba5" + } + } +} \ No newline at end of file diff --git a/timecost/n6/bayesnet/bayesnet-n6-20260429_032012/public_gate/normalized_schema_snapshot.json b/timecost/n6/bayesnet/bayesnet-n6-20260429_032012/public_gate/normalized_schema_snapshot.json new file mode 100644 index 0000000000000000000000000000000000000000..f37e46415bf96a79860f8cd9cdbfb764f9fbd0cb --- /dev/null +++ b/timecost/n6/bayesnet/bayesnet-n6-20260429_032012/public_gate/normalized_schema_snapshot.json @@ -0,0 +1,363 @@ +{ + "dataset_id": "n6", + "target_column": "y", + "task_type": "classification", + "columns": [ + { + "name": "X1", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 313, + "unique_ratio": 0.048906, + "example_values": [ + "2", + "6", + "-2", + "-15", + "3" + ] + } + }, + { + "name": "X2", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 328, + "unique_ratio": 0.05125, + "example_values": [ + "-3", + "1", + "16", + "-4", + "-12" + ] + } + }, + { + "name": "X3", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 316, + "unique_ratio": 0.049375, + "example_values": [ + "-7", + "-6", + "3", + "-22", + "13" + ] + } + }, + { + "name": "X4", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 323, + "unique_ratio": 0.050469, + "example_values": [ + "-6", + "-7", + "5", + "-5", + "-37" + ] + } + }, + { + "name": "X5", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 325, + "unique_ratio": 0.050781, + "example_values": [ + "-9", + "2", + "-12", + "-8", + "-63" + ] + } + }, + { + "name": "X6", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 325, + "unique_ratio": 0.050781, + "example_values": [ + "-6", + "-5", + "11", + "0", + "-86" + ] + } + }, + { + "name": "X7", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 332, + "unique_ratio": 0.051875, + "example_values": [ + "-1", + "-2", + "5", + "-4", + "-82" + ] + } + }, + { + "name": "X8", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 330, + "unique_ratio": 0.051562, + "example_values": [ + "3", + "-3", + "9", + "-9", + "-51" + ] + } + }, + { + "name": "X9", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 333, + "unique_ratio": 0.052031, + "example_values": [ + "1", + "19", + "0", + "-1", + "-30" + ] + } + }, + { + "name": "X10", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 334, + "unique_ratio": 0.052187, + "example_values": [ + "4", + "10", + "9", + "3", + "-13" + ] + } + }, + { + "name": "X11", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 328, + "unique_ratio": 0.05125, + "example_values": [ + "-4", + "-3", + "-1", + "-7", + "-20" + ] + } + }, + { + "name": "X12", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 324, + "unique_ratio": 0.050625, + "example_values": [ + "-5", + "-11", + "0", + "4", + "-29" + ] + } + }, + { + "name": "X13", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 332, + "unique_ratio": 0.051875, + "example_values": [ + "4", + "-6", + "6", + "9", + "-38" + ] + } + }, + { + "name": "X14", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 318, + "unique_ratio": 0.049688, + "example_values": [ + "1", + "30", + "11", + "-5", + "-29" + ] + } + }, + { + "name": "X15", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 324, + "unique_ratio": 0.050625, + "example_values": [ + "-8", + "4", + "-9", + "-6", + "-15" + ] + } + }, + { + "name": "X16", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 325, + "unique_ratio": 0.050781, + "example_values": [ + "-1", + "-13", + "0", + "1", + "-23" + ] + } + }, + { + "name": "y", + "role": "target", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 4, + "unique_ratio": 0.000625, + "example_values": [ + "2", + "1", + "0", + "3" + ] + } + } + ] +} \ No newline at end of file diff --git a/timecost/n6/bayesnet/bayesnet-n6-20260429_032012/public_gate/public_gate_report.json b/timecost/n6/bayesnet/bayesnet-n6-20260429_032012/public_gate/public_gate_report.json new file mode 100644 index 0000000000000000000000000000000000000000..a228c993845322a7356eef31ebce756cb39378ed --- /dev/null +++ b/timecost/n6/bayesnet/bayesnet-n6-20260429_032012/public_gate/public_gate_report.json @@ -0,0 +1,37 @@ +{ + "dataset_id": "n6", + "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": "y", + "task_type": "classification", + "input_splits": { + "train": "/data/jialinzhang/SynthesizePipeline-server/DatasetNew/n6/n6-train.csv", + "val": "/data/jialinzhang/SynthesizePipeline-server/DatasetNew/n6/n6-val.csv", + "test": "/data/jialinzhang/SynthesizePipeline-server/DatasetNew/n6/n6-test.csv" + } +} \ No newline at end of file diff --git a/timecost/n6/bayesnet/bayesnet-n6-20260429_032012/public_gate/staged_input_manifest.json b/timecost/n6/bayesnet/bayesnet-n6-20260429_032012/public_gate/staged_input_manifest.json new file mode 100644 index 0000000000000000000000000000000000000000..95a72445f30c0a6a7022f5a1d50a4677868c61f1 --- /dev/null +++ b/timecost/n6/bayesnet/bayesnet-n6-20260429_032012/public_gate/staged_input_manifest.json @@ -0,0 +1,368 @@ +{ + "dataset_id": "n6", + "target_column": "y", + "task_type": "classification", + "train_csv": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/n6/bayesnet/bayesnet-n6-20260429_032012/staged/public/train.csv", + "val_csv": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/n6/bayesnet/bayesnet-n6-20260429_032012/staged/public/val.csv", + "test_csv": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/n6/bayesnet/bayesnet-n6-20260429_032012/staged/public/test.csv", + "features_json": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/n6/bayesnet/bayesnet-n6-20260429_032012/staged/public/staged_features.json", + "public_gate_report": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/n6/bayesnet/bayesnet-n6-20260429_032012/public_gate/public_gate_report.json", + "column_schema": [ + { + "name": "X1", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 313, + "unique_ratio": 0.048906, + "example_values": [ + "2", + "6", + "-2", + "-15", + "3" + ] + } + }, + { + "name": "X2", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 328, + "unique_ratio": 0.05125, + "example_values": [ + "-3", + "1", + "16", + "-4", + "-12" + ] + } + }, + { + "name": "X3", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 316, + "unique_ratio": 0.049375, + "example_values": [ + "-7", + "-6", + "3", + "-22", + "13" + ] + } + }, + { + "name": "X4", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 323, + "unique_ratio": 0.050469, + "example_values": [ + "-6", + "-7", + "5", + "-5", + "-37" + ] + } + }, + { + "name": "X5", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 325, + "unique_ratio": 0.050781, + "example_values": [ + "-9", + "2", + "-12", + "-8", + "-63" + ] + } + }, + { + "name": "X6", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 325, + "unique_ratio": 0.050781, + "example_values": [ + "-6", + "-5", + "11", + "0", + "-86" + ] + } + }, + { + "name": "X7", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 332, + "unique_ratio": 0.051875, + "example_values": [ + "-1", + "-2", + "5", + "-4", + "-82" + ] + } + }, + { + "name": "X8", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 330, + "unique_ratio": 0.051562, + "example_values": [ + "3", + "-3", + "9", + "-9", + "-51" + ] + } + }, + { + "name": "X9", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 333, + "unique_ratio": 0.052031, + "example_values": [ + "1", + "19", + "0", + "-1", + "-30" + ] + } + }, + { + "name": "X10", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 334, + "unique_ratio": 0.052187, + "example_values": [ + "4", + "10", + "9", + "3", + "-13" + ] + } + }, + { + "name": "X11", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 328, + "unique_ratio": 0.05125, + "example_values": [ + "-4", + "-3", + "-1", + "-7", + "-20" + ] + } + }, + { + "name": "X12", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 324, + "unique_ratio": 0.050625, + "example_values": [ + "-5", + "-11", + "0", + "4", + "-29" + ] + } + }, + { + "name": "X13", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 332, + "unique_ratio": 0.051875, + "example_values": [ + "4", + "-6", + "6", + "9", + "-38" + ] + } + }, + { + "name": "X14", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 318, + "unique_ratio": 0.049688, + "example_values": [ + "1", + "30", + "11", + "-5", + "-29" + ] + } + }, + { + "name": "X15", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 324, + "unique_ratio": 0.050625, + "example_values": [ + "-8", + "4", + "-9", + "-6", + "-15" + ] + } + }, + { + "name": "X16", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 325, + "unique_ratio": 0.050781, + "example_values": [ + "-1", + "-13", + "0", + "1", + "-23" + ] + } + }, + { + "name": "y", + "role": "target", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 4, + "unique_ratio": 0.000625, + "example_values": [ + "2", + "1", + "0", + "3" + ] + } + } + ] +} \ No newline at end of file diff --git a/timecost/n6/bayesnet/bayesnet-n6-20260429_032012/runtime_result.json b/timecost/n6/bayesnet/bayesnet-n6-20260429_032012/runtime_result.json new file mode 100644 index 0000000000000000000000000000000000000000..2902495c1ada0a053e6c0e43e679074c2dc5a64d --- /dev/null +++ b/timecost/n6/bayesnet/bayesnet-n6-20260429_032012/runtime_result.json @@ -0,0 +1,15 @@ +{ + "dataset_id": "n6", + "model": "bayesnet", + "run_id": "bayesnet-n6-20260429_032012", + "public_gate_status": "pass", + "adapter_ready_status": "pass", + "train_status": "success", + "generate_status": "success", + "reason_code": null, + "reason_detail": null, + "artifacts": { + "synthetic_csv": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/n6/bayesnet/bayesnet-n6-20260429_032012/bayesnet-n6-6400-20260429_032030.csv", + "model_path": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/n6/bayesnet/bayesnet-n6-20260429_032012/bayesnet_model.pkl" + } +} \ No newline at end of file diff --git a/timecost/n6/bayesnet/bayesnet-n6-20260429_032012/staged/bayesnet/adapter_report.json b/timecost/n6/bayesnet/bayesnet-n6-20260429_032012/staged/bayesnet/adapter_report.json new file mode 100644 index 0000000000000000000000000000000000000000..7a9a93fa7afc24403afef6b392f30f8f1e4a3f1c --- /dev/null +++ b/timecost/n6/bayesnet/bayesnet-n6-20260429_032012/staged/bayesnet/adapter_report.json @@ -0,0 +1,7 @@ +{ + "adapter_ready_status": "pass", + "adapter_fail_reason_code": null, + "adapter_fail_detail": null, + "adapter_transforms_applied": [], + "model_input_manifest": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/n6/bayesnet/bayesnet-n6-20260429_032012/staged/bayesnet/model_input_manifest.json" +} \ No newline at end of file diff --git a/timecost/n6/bayesnet/bayesnet-n6-20260429_032012/staged/bayesnet/adapter_transforms_applied.json b/timecost/n6/bayesnet/bayesnet-n6-20260429_032012/staged/bayesnet/adapter_transforms_applied.json new file mode 100644 index 0000000000000000000000000000000000000000..0637a088a01e8ddab3bf3fa98dbe804cbde1a0dc --- /dev/null +++ b/timecost/n6/bayesnet/bayesnet-n6-20260429_032012/staged/bayesnet/adapter_transforms_applied.json @@ -0,0 +1 @@ +[] \ No newline at end of file diff --git a/timecost/n6/bayesnet/bayesnet-n6-20260429_032012/staged/bayesnet/model_input_manifest.json b/timecost/n6/bayesnet/bayesnet-n6-20260429_032012/staged/bayesnet/model_input_manifest.json new file mode 100644 index 0000000000000000000000000000000000000000..351c93984c337cdd0908aafa9695b29199033ea7 --- /dev/null +++ b/timecost/n6/bayesnet/bayesnet-n6-20260429_032012/staged/bayesnet/model_input_manifest.json @@ -0,0 +1,370 @@ +{ + "dataset_id": "n6", + "model": "bayesnet", + "target_column": "y", + "task_type": "classification", + "column_schema": [ + { + "name": "X1", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 313, + "unique_ratio": 0.048906, + "example_values": [ + "2", + "6", + "-2", + "-15", + "3" + ] + } + }, + { + "name": "X2", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 328, + "unique_ratio": 0.05125, + "example_values": [ + "-3", + "1", + "16", + "-4", + "-12" + ] + } + }, + { + "name": "X3", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 316, + "unique_ratio": 0.049375, + "example_values": [ + "-7", + "-6", + "3", + "-22", + "13" + ] + } + }, + { + "name": "X4", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 323, + "unique_ratio": 0.050469, + "example_values": [ + "-6", + "-7", + "5", + "-5", + "-37" + ] + } + }, + { + "name": "X5", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 325, + "unique_ratio": 0.050781, + "example_values": [ + "-9", + "2", + "-12", + "-8", + "-63" + ] + } + }, + { + "name": "X6", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 325, + "unique_ratio": 0.050781, + "example_values": [ + "-6", + "-5", + "11", + "0", + "-86" + ] + } + }, + { + "name": "X7", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 332, + "unique_ratio": 0.051875, + "example_values": [ + "-1", + "-2", + "5", + "-4", + "-82" + ] + } + }, + { + "name": "X8", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 330, + "unique_ratio": 0.051562, + "example_values": [ + "3", + "-3", + "9", + "-9", + "-51" + ] + } + }, + { + "name": "X9", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 333, + "unique_ratio": 0.052031, + "example_values": [ + "1", + "19", + "0", + "-1", + "-30" + ] + } + }, + { + "name": "X10", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 334, + "unique_ratio": 0.052187, + "example_values": [ + "4", + "10", + "9", + "3", + "-13" + ] + } + }, + { + "name": "X11", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 328, + "unique_ratio": 0.05125, + "example_values": [ + "-4", + "-3", + "-1", + "-7", + "-20" + ] + } + }, + { + "name": "X12", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 324, + "unique_ratio": 0.050625, + "example_values": [ + "-5", + "-11", + "0", + "4", + "-29" + ] + } + }, + { + "name": "X13", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 332, + "unique_ratio": 0.051875, + "example_values": [ + "4", + "-6", + "6", + "9", + "-38" + ] + } + }, + { + "name": "X14", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 318, + "unique_ratio": 0.049688, + "example_values": [ + "1", + "30", + "11", + "-5", + "-29" + ] + } + }, + { + "name": "X15", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 324, + "unique_ratio": 0.050625, + "example_values": [ + "-8", + "4", + "-9", + "-6", + "-15" + ] + } + }, + { + "name": "X16", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 325, + "unique_ratio": 0.050781, + "example_values": [ + "-1", + "-13", + "0", + "1", + "-23" + ] + } + }, + { + "name": "y", + "role": "target", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 4, + "unique_ratio": 0.000625, + "example_values": [ + "2", + "1", + "0", + "3" + ] + } + } + ], + "public_manifest": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/n6/bayesnet/bayesnet-n6-20260429_032012/public_gate/staged_input_manifest.json", + "train_csv": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/n6/bayesnet/bayesnet-n6-20260429_032012/staged/public/train.csv", + "val_csv": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/n6/bayesnet/bayesnet-n6-20260429_032012/staged/public/val.csv", + "test_csv": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/n6/bayesnet/bayesnet-n6-20260429_032012/staged/public/test.csv", + "features_json": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/n6/bayesnet/bayesnet-n6-20260429_032012/staged/public/staged_features.json", + "public_gate_report": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/n6/bayesnet/bayesnet-n6-20260429_032012/public_gate/public_gate_report.json" +} \ No newline at end of file diff --git a/timecost/n6/bayesnet/bayesnet-n6-20260429_032012/staged/public/staged_features.json b/timecost/n6/bayesnet/bayesnet-n6-20260429_032012/staged/public/staged_features.json new file mode 100644 index 0000000000000000000000000000000000000000..13d0b8c66a07bb8f5aa06667e153a85656dae7d8 --- /dev/null +++ b/timecost/n6/bayesnet/bayesnet-n6-20260429_032012/staged/public/staged_features.json @@ -0,0 +1,87 @@ +[ + { + "feature_name": "X1", + "data_type": "continuous", + "is_target": false + }, + { + "feature_name": "X2", + "data_type": "continuous", + "is_target": false + }, + { + "feature_name": "X3", + "data_type": "continuous", + "is_target": false + }, + { + "feature_name": "X4", + "data_type": "continuous", + "is_target": false + }, + { + "feature_name": "X5", + "data_type": "continuous", + "is_target": false + }, + { + "feature_name": "X6", + "data_type": "continuous", + "is_target": false + }, + { + "feature_name": "X7", + "data_type": "continuous", + "is_target": false + }, + { + "feature_name": "X8", + "data_type": "continuous", + "is_target": false + }, + { + "feature_name": "X9", + "data_type": "continuous", + "is_target": false + }, + { + "feature_name": "X10", + "data_type": "continuous", + "is_target": false + }, + { + "feature_name": "X11", + "data_type": "continuous", + "is_target": false + }, + { + "feature_name": "X12", + "data_type": "continuous", + "is_target": false + }, + { + "feature_name": "X13", + "data_type": "continuous", + "is_target": false + }, + { + "feature_name": "X14", + "data_type": "continuous", + "is_target": false + }, + { + "feature_name": "X15", + "data_type": "continuous", + "is_target": false + }, + { + "feature_name": "X16", + "data_type": "continuous", + "is_target": false + }, + { + "feature_name": "y", + "data_type": "continuous", + "is_target": true + } +] \ No newline at end of file diff --git a/timecost/n6/bayesnet/bayesnet-n6-20260429_032012/staged/public/test.csv b/timecost/n6/bayesnet/bayesnet-n6-20260429_032012/staged/public/test.csv new file mode 100644 index 0000000000000000000000000000000000000000..64d039a1664b74ef81240a9ba69ab982a78be184 --- /dev/null +++ b/timecost/n6/bayesnet/bayesnet-n6-20260429_032012/staged/public/test.csv @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:f1922293e501d8f17f56a321a1305e44d20a6ad7ed67e97af754dea170989fc5 +size 39918 diff --git a/timecost/n6/bayesnet/bayesnet-n6-20260429_032012/staged/public/train.csv b/timecost/n6/bayesnet/bayesnet-n6-20260429_032012/staged/public/train.csv new file mode 100644 index 0000000000000000000000000000000000000000..25108968eaf2c7995080c74fba26ca496d015c72 --- /dev/null +++ b/timecost/n6/bayesnet/bayesnet-n6-20260429_032012/staged/public/train.csv @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:c8545a9761061bd99d67935948928e2840e6ae4b5c9760cad2de82198676db2b +size 316902 diff --git a/timecost/n6/bayesnet/bayesnet-n6-20260429_032012/staged/public/val.csv b/timecost/n6/bayesnet/bayesnet-n6-20260429_032012/staged/public/val.csv new file mode 100644 index 0000000000000000000000000000000000000000..933b52194b2ae481787d393e22f1a96acb482a5a --- /dev/null +++ b/timecost/n6/bayesnet/bayesnet-n6-20260429_032012/staged/public/val.csv @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:60a3dd7f655f8086e53402dcdcfa42297d586d8483f2afd6e1bbc6bd3521303f +size 39705 diff --git a/timecost/n6/bayesnet/bayesnet-n6-20260429_032012/train_20260429_032012.log b/timecost/n6/bayesnet/bayesnet-n6-20260429_032012/train_20260429_032012.log new file mode 100644 index 0000000000000000000000000000000000000000..c638c6450921236121ef320b425b5fce90ec654d --- /dev/null +++ b/timecost/n6/bayesnet/bayesnet-n6-20260429_032012/train_20260429_032012.log @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:30e60032716f27f589792c8c227a768b1a7147d9f660b7876fc19ab1e7d107d8 +size 3741 diff --git a/timecost/n6/ctgan/ctgan-n6-20260429_032130/_ctgan_generate.py b/timecost/n6/ctgan/ctgan-n6-20260429_032130/_ctgan_generate.py new file mode 100644 index 0000000000000000000000000000000000000000..94445593fa71679e33074136de28d74632dba0d9 --- /dev/null +++ b/timecost/n6/ctgan/ctgan-n6-20260429_032130/_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-Benchmark-trainonly-v1/n6/ctgan/ctgan-n6-20260429_032130/models_300epochs/ctgan_300epochs.pt") +total = 6400 +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-Benchmark-trainonly-v1/n6/ctgan/ctgan-n6-20260429_032130/ctgan-n6-6400-20260429_032501.csv", index=False) +print("[CTGAN] Generated", total, "rows in", len(parts), "chunks ->", "/work/output-Benchmark-trainonly-v1/n6/ctgan/ctgan-n6-20260429_032130/ctgan-n6-6400-20260429_032501.csv") \ No newline at end of file diff --git a/timecost/n6/ctgan/ctgan-n6-20260429_032130/ctgan-n6-6400-20260429_032501.csv b/timecost/n6/ctgan/ctgan-n6-20260429_032130/ctgan-n6-6400-20260429_032501.csv new file mode 100644 index 0000000000000000000000000000000000000000..bee2fcf145c7b2814bb3eecf99c49b9a0d3d6486 --- /dev/null +++ b/timecost/n6/ctgan/ctgan-n6-20260429_032130/ctgan-n6-6400-20260429_032501.csv @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:5870df1fb5528c0bcacce5504981701b6ee9917461b13e3d3d56e61096cc8f54 +size 354294 diff --git a/timecost/n6/ctgan/ctgan-n6-20260429_032130/ctgan_metadata.json b/timecost/n6/ctgan/ctgan-n6-20260429_032130/ctgan_metadata.json new file mode 100644 index 0000000000000000000000000000000000000000..7cdebbf77c20cba8a8d4c8afc0980437d1b54231 --- /dev/null +++ b/timecost/n6/ctgan/ctgan-n6-20260429_032130/ctgan_metadata.json @@ -0,0 +1,72 @@ +{ + "columns": [ + { + "name": "X1", + "type": "continuous" + }, + { + "name": "X2", + "type": "continuous" + }, + { + "name": "X3", + "type": "continuous" + }, + { + "name": "X4", + "type": "continuous" + }, + { + "name": "X5", + "type": "continuous" + }, + { + "name": "X6", + "type": "continuous" + }, + { + "name": "X7", + "type": "continuous" + }, + { + "name": "X8", + "type": "continuous" + }, + { + "name": "X9", + "type": "continuous" + }, + { + "name": "X10", + "type": "continuous" + }, + { + "name": "X11", + "type": "continuous" + }, + { + "name": "X12", + "type": "continuous" + }, + { + "name": "X13", + "type": "continuous" + }, + { + "name": "X14", + "type": "continuous" + }, + { + "name": "X15", + "type": "continuous" + }, + { + "name": "X16", + "type": "continuous" + }, + { + "name": "y", + "type": "continuous" + } + ] +} \ No newline at end of file diff --git a/timecost/n6/ctgan/ctgan-n6-20260429_032130/gen_20260429_032501.log b/timecost/n6/ctgan/ctgan-n6-20260429_032130/gen_20260429_032501.log new file mode 100644 index 0000000000000000000000000000000000000000..fb7894848608ffdf0109fe07a8bed3d8dafc3c38 --- /dev/null +++ b/timecost/n6/ctgan/ctgan-n6-20260429_032130/gen_20260429_032501.log @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:c61431d271ca53d24ce787f83c3efcf035deeceae6b40a2a91db5b4971db63c2 +size 561 diff --git a/timecost/n6/ctgan/ctgan-n6-20260429_032130/input_snapshot.json b/timecost/n6/ctgan/ctgan-n6-20260429_032130/input_snapshot.json new file mode 100644 index 0000000000000000000000000000000000000000..ee9d727191980e22eadd267934ab4a8903c6a5cb --- /dev/null +++ b/timecost/n6/ctgan/ctgan-n6-20260429_032130/input_snapshot.json @@ -0,0 +1,36 @@ +{ + "dataset_id": "n6", + "model": "ctgan", + "inputs": { + "train_csv": { + "path": "/data/jialinzhang/SynthesizePipeline-server/DatasetNew/n6/n6-train.csv", + "exists": true, + "size": 323303, + "sha256": "3b9d646393340b4c636db7686f2313521d84434e99ac1316b1053b05c995a3b1" + }, + "val_csv": { + "path": "/data/jialinzhang/SynthesizePipeline-server/DatasetNew/n6/n6-val.csv", + "exists": true, + "size": 40506, + "sha256": "74a01693febbfda57225ebbec2f7a9c22a2136edbec694b108b50c013cd6fe9d" + }, + "test_csv": { + "path": "/data/jialinzhang/SynthesizePipeline-server/DatasetNew/n6/n6-test.csv", + "exists": true, + "size": 40719, + "sha256": "46f32b813d7849636da5a0a7aa560ea062b8f5765772dc1a8268f756cdb2fbcc" + }, + "profile_json": { + "path": "/data/jialinzhang/SynthesizePipeline-server/DatasetNew/artifacts/data_core/tabular/n6/n6-dataset_profile.json", + "exists": true, + "size": 6559, + "sha256": "c3a4ba3662399f797ed5ac4ea171e2991e3f3ac9ea221ba345c132e11450d759" + }, + "contract_json": { + "path": "/data/jialinzhang/SynthesizePipeline-server/DatasetNew/artifacts/data_core/tabular/n6/n6-dataset_contract_v1.json", + "exists": true, + "size": 8304, + "sha256": "979119ea8d3be4588170ff59aa802156a0a5ecaf4312599a8b2998d38b69fba5" + } + } +} \ No newline at end of file diff --git a/timecost/n6/ctgan/ctgan-n6-20260429_032130/models_300epochs/ctgan_300epochs.pt b/timecost/n6/ctgan/ctgan-n6-20260429_032130/models_300epochs/ctgan_300epochs.pt new file mode 100644 index 0000000000000000000000000000000000000000..fc6eed998ff01f2e41d9aba0df9aaa54e68049ad --- /dev/null +++ b/timecost/n6/ctgan/ctgan-n6-20260429_032130/models_300epochs/ctgan_300epochs.pt @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:55b6f418213beef91c37f39d62eb8d98069b9b3e302c6fd9a25864bb139076ce +size 1543523 diff --git a/timecost/n6/ctgan/ctgan-n6-20260429_032130/models_300epochs/train_20260429_032130.log b/timecost/n6/ctgan/ctgan-n6-20260429_032130/models_300epochs/train_20260429_032130.log new file mode 100644 index 0000000000000000000000000000000000000000..2879704555dd4cb21f78d1dc8d6de0e1956e2834 --- /dev/null +++ b/timecost/n6/ctgan/ctgan-n6-20260429_032130/models_300epochs/train_20260429_032130.log @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:065bb42b98838c57c4a7d819198b2b545d3b3e5c68b1fd61e2dac1ad17540437 +size 3337 diff --git a/timecost/n6/ctgan/ctgan-n6-20260429_032130/public_gate/normalized_schema_snapshot.json b/timecost/n6/ctgan/ctgan-n6-20260429_032130/public_gate/normalized_schema_snapshot.json new file mode 100644 index 0000000000000000000000000000000000000000..f37e46415bf96a79860f8cd9cdbfb764f9fbd0cb --- /dev/null +++ b/timecost/n6/ctgan/ctgan-n6-20260429_032130/public_gate/normalized_schema_snapshot.json @@ -0,0 +1,363 @@ +{ + "dataset_id": "n6", + "target_column": "y", + "task_type": "classification", + "columns": [ + { + "name": "X1", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 313, + "unique_ratio": 0.048906, + "example_values": [ + "2", + "6", + "-2", + "-15", + "3" + ] + } + }, + { + "name": "X2", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 328, + "unique_ratio": 0.05125, + "example_values": [ + "-3", + "1", + "16", + "-4", + "-12" + ] + } + }, + { + "name": "X3", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 316, + "unique_ratio": 0.049375, + "example_values": [ + "-7", + "-6", + "3", + "-22", + "13" + ] + } + }, + { + "name": "X4", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 323, + "unique_ratio": 0.050469, + "example_values": [ + "-6", + "-7", + "5", + "-5", + "-37" + ] + } + }, + { + "name": "X5", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 325, + "unique_ratio": 0.050781, + "example_values": [ + "-9", + "2", + "-12", + "-8", + "-63" + ] + } + }, + { + "name": "X6", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 325, + "unique_ratio": 0.050781, + "example_values": [ + "-6", + "-5", + "11", + "0", + "-86" + ] + } + }, + { + "name": "X7", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 332, + "unique_ratio": 0.051875, + "example_values": [ + "-1", + "-2", + "5", + "-4", + "-82" + ] + } + }, + { + "name": "X8", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 330, + "unique_ratio": 0.051562, + "example_values": [ + "3", + "-3", + "9", + "-9", + "-51" + ] + } + }, + { + "name": "X9", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 333, + "unique_ratio": 0.052031, + "example_values": [ + "1", + "19", + "0", + "-1", + "-30" + ] + } + }, + { + "name": "X10", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 334, + "unique_ratio": 0.052187, + "example_values": [ + "4", + "10", + "9", + "3", + "-13" + ] + } + }, + { + "name": "X11", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 328, + "unique_ratio": 0.05125, + "example_values": [ + "-4", + "-3", + "-1", + "-7", + "-20" + ] + } + }, + { + "name": "X12", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 324, + "unique_ratio": 0.050625, + "example_values": [ + "-5", + "-11", + "0", + "4", + "-29" + ] + } + }, + { + "name": "X13", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 332, + "unique_ratio": 0.051875, + "example_values": [ + "4", + "-6", + "6", + "9", + "-38" + ] + } + }, + { + "name": "X14", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 318, + "unique_ratio": 0.049688, + "example_values": [ + "1", + "30", + "11", + "-5", + "-29" + ] + } + }, + { + "name": "X15", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 324, + "unique_ratio": 0.050625, + "example_values": [ + "-8", + "4", + "-9", + "-6", + "-15" + ] + } + }, + { + "name": "X16", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 325, + "unique_ratio": 0.050781, + "example_values": [ + "-1", + "-13", + "0", + "1", + "-23" + ] + } + }, + { + "name": "y", + "role": "target", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 4, + "unique_ratio": 0.000625, + "example_values": [ + "2", + "1", + "0", + "3" + ] + } + } + ] +} \ No newline at end of file diff --git a/timecost/n6/ctgan/ctgan-n6-20260429_032130/public_gate/public_gate_report.json b/timecost/n6/ctgan/ctgan-n6-20260429_032130/public_gate/public_gate_report.json new file mode 100644 index 0000000000000000000000000000000000000000..a228c993845322a7356eef31ebce756cb39378ed --- /dev/null +++ b/timecost/n6/ctgan/ctgan-n6-20260429_032130/public_gate/public_gate_report.json @@ -0,0 +1,37 @@ +{ + "dataset_id": "n6", + "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": "y", + "task_type": "classification", + "input_splits": { + "train": "/data/jialinzhang/SynthesizePipeline-server/DatasetNew/n6/n6-train.csv", + "val": "/data/jialinzhang/SynthesizePipeline-server/DatasetNew/n6/n6-val.csv", + "test": "/data/jialinzhang/SynthesizePipeline-server/DatasetNew/n6/n6-test.csv" + } +} \ No newline at end of file diff --git a/timecost/n6/ctgan/ctgan-n6-20260429_032130/public_gate/staged_input_manifest.json b/timecost/n6/ctgan/ctgan-n6-20260429_032130/public_gate/staged_input_manifest.json new file mode 100644 index 0000000000000000000000000000000000000000..e7df8698e5425c8971308c228ac7189bcac8a7f5 --- /dev/null +++ b/timecost/n6/ctgan/ctgan-n6-20260429_032130/public_gate/staged_input_manifest.json @@ -0,0 +1,368 @@ +{ + "dataset_id": "n6", + "target_column": "y", + "task_type": "classification", + "train_csv": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/n6/ctgan/ctgan-n6-20260429_032130/staged/public/train.csv", + "val_csv": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/n6/ctgan/ctgan-n6-20260429_032130/staged/public/val.csv", + "test_csv": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/n6/ctgan/ctgan-n6-20260429_032130/staged/public/test.csv", + "features_json": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/n6/ctgan/ctgan-n6-20260429_032130/staged/public/staged_features.json", + "public_gate_report": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/n6/ctgan/ctgan-n6-20260429_032130/public_gate/public_gate_report.json", + "column_schema": [ + { + "name": "X1", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 313, + "unique_ratio": 0.048906, + "example_values": [ + "2", + "6", + "-2", + "-15", + "3" + ] + } + }, + { + "name": "X2", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 328, + "unique_ratio": 0.05125, + "example_values": [ + "-3", + "1", + "16", + "-4", + "-12" + ] + } + }, + { + "name": "X3", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 316, + "unique_ratio": 0.049375, + "example_values": [ + "-7", + "-6", + "3", + "-22", + "13" + ] + } + }, + { + "name": "X4", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 323, + "unique_ratio": 0.050469, + "example_values": [ + "-6", + "-7", + "5", + "-5", + "-37" + ] + } + }, + { + "name": "X5", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 325, + "unique_ratio": 0.050781, + "example_values": [ + "-9", + "2", + "-12", + "-8", + "-63" + ] + } + }, + { + "name": "X6", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 325, + "unique_ratio": 0.050781, + "example_values": [ + "-6", + "-5", + "11", + "0", + "-86" + ] + } + }, + { + "name": "X7", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 332, + "unique_ratio": 0.051875, + "example_values": [ + "-1", + "-2", + "5", + "-4", + "-82" + ] + } + }, + { + "name": "X8", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 330, + "unique_ratio": 0.051562, + "example_values": [ + "3", + "-3", + "9", + "-9", + "-51" + ] + } + }, + { + "name": "X9", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 333, + "unique_ratio": 0.052031, + "example_values": [ + "1", + "19", + "0", + "-1", + "-30" + ] + } + }, + { + "name": "X10", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 334, + "unique_ratio": 0.052187, + "example_values": [ + "4", + "10", + "9", + "3", + "-13" + ] + } + }, + { + "name": "X11", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 328, + "unique_ratio": 0.05125, + "example_values": [ + "-4", + "-3", + "-1", + "-7", + "-20" + ] + } + }, + { + "name": "X12", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 324, + "unique_ratio": 0.050625, + "example_values": [ + "-5", + "-11", + "0", + "4", + "-29" + ] + } + }, + { + "name": "X13", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 332, + "unique_ratio": 0.051875, + "example_values": [ + "4", + "-6", + "6", + "9", + "-38" + ] + } + }, + { + "name": "X14", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 318, + "unique_ratio": 0.049688, + "example_values": [ + "1", + "30", + "11", + "-5", + "-29" + ] + } + }, + { + "name": "X15", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 324, + "unique_ratio": 0.050625, + "example_values": [ + "-8", + "4", + "-9", + "-6", + "-15" + ] + } + }, + { + "name": "X16", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 325, + "unique_ratio": 0.050781, + "example_values": [ + "-1", + "-13", + "0", + "1", + "-23" + ] + } + }, + { + "name": "y", + "role": "target", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 4, + "unique_ratio": 0.000625, + "example_values": [ + "2", + "1", + "0", + "3" + ] + } + } + ] +} \ No newline at end of file diff --git a/timecost/n6/ctgan/ctgan-n6-20260429_032130/runtime_result.json b/timecost/n6/ctgan/ctgan-n6-20260429_032130/runtime_result.json new file mode 100644 index 0000000000000000000000000000000000000000..fccc98e42292cbe5060fbeea8d485059765ebebc --- /dev/null +++ b/timecost/n6/ctgan/ctgan-n6-20260429_032130/runtime_result.json @@ -0,0 +1,15 @@ +{ + "dataset_id": "n6", + "model": "ctgan", + "run_id": "ctgan-n6-20260429_032130", + "public_gate_status": "pass", + "adapter_ready_status": "pass", + "train_status": "success", + "generate_status": "success", + "reason_code": null, + "reason_detail": null, + "artifacts": { + "synthetic_csv": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/n6/ctgan/ctgan-n6-20260429_032130/ctgan-n6-6400-20260429_032501.csv", + "model_path": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/n6/ctgan/ctgan-n6-20260429_032130/models_300epochs/ctgan_300epochs.pt" + } +} \ No newline at end of file diff --git a/timecost/n6/ctgan/ctgan-n6-20260429_032130/staged/ctgan/adapter_report.json b/timecost/n6/ctgan/ctgan-n6-20260429_032130/staged/ctgan/adapter_report.json new file mode 100644 index 0000000000000000000000000000000000000000..20b9219ebf9e89a2e7e3a7e8d83453a96c164675 --- /dev/null +++ b/timecost/n6/ctgan/ctgan-n6-20260429_032130/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-Benchmark-trainonly-v1/n6/ctgan/ctgan-n6-20260429_032130/staged/ctgan/model_input_manifest.json" +} \ No newline at end of file diff --git a/timecost/n6/ctgan/ctgan-n6-20260429_032130/staged/ctgan/adapter_transforms_applied.json b/timecost/n6/ctgan/ctgan-n6-20260429_032130/staged/ctgan/adapter_transforms_applied.json new file mode 100644 index 0000000000000000000000000000000000000000..0637a088a01e8ddab3bf3fa98dbe804cbde1a0dc --- /dev/null +++ b/timecost/n6/ctgan/ctgan-n6-20260429_032130/staged/ctgan/adapter_transforms_applied.json @@ -0,0 +1 @@ +[] \ No newline at end of file diff --git a/timecost/n6/ctgan/ctgan-n6-20260429_032130/staged/ctgan/model_input_manifest.json b/timecost/n6/ctgan/ctgan-n6-20260429_032130/staged/ctgan/model_input_manifest.json new file mode 100644 index 0000000000000000000000000000000000000000..6a951ed4659870c2404d1893ab9f3b597ad7d5d2 --- /dev/null +++ b/timecost/n6/ctgan/ctgan-n6-20260429_032130/staged/ctgan/model_input_manifest.json @@ -0,0 +1,370 @@ +{ + "dataset_id": "n6", + "model": "ctgan", + "target_column": "y", + "task_type": "classification", + "column_schema": [ + { + "name": "X1", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 313, + "unique_ratio": 0.048906, + "example_values": [ + "2", + "6", + "-2", + "-15", + "3" + ] + } + }, + { + "name": "X2", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 328, + "unique_ratio": 0.05125, + "example_values": [ + "-3", + "1", + "16", + "-4", + "-12" + ] + } + }, + { + "name": "X3", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 316, + "unique_ratio": 0.049375, + "example_values": [ + "-7", + "-6", + "3", + "-22", + "13" + ] + } + }, + { + "name": "X4", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 323, + "unique_ratio": 0.050469, + "example_values": [ + "-6", + "-7", + "5", + "-5", + "-37" + ] + } + }, + { + "name": "X5", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 325, + "unique_ratio": 0.050781, + "example_values": [ + "-9", + "2", + "-12", + "-8", + "-63" + ] + } + }, + { + "name": "X6", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 325, + "unique_ratio": 0.050781, + "example_values": [ + "-6", + "-5", + "11", + "0", + "-86" + ] + } + }, + { + "name": "X7", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 332, + "unique_ratio": 0.051875, + "example_values": [ + "-1", + "-2", + "5", + "-4", + "-82" + ] + } + }, + { + "name": "X8", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 330, + "unique_ratio": 0.051562, + "example_values": [ + "3", + "-3", + "9", + "-9", + "-51" + ] + } + }, + { + "name": "X9", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 333, + "unique_ratio": 0.052031, + "example_values": [ + "1", + "19", + "0", + "-1", + "-30" + ] + } + }, + { + "name": "X10", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 334, + "unique_ratio": 0.052187, + "example_values": [ + "4", + "10", + "9", + "3", + "-13" + ] + } + }, + { + "name": "X11", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 328, + "unique_ratio": 0.05125, + "example_values": [ + "-4", + "-3", + "-1", + "-7", + "-20" + ] + } + }, + { + "name": "X12", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 324, + "unique_ratio": 0.050625, + "example_values": [ + "-5", + "-11", + "0", + "4", + "-29" + ] + } + }, + { + "name": "X13", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 332, + "unique_ratio": 0.051875, + "example_values": [ + "4", + "-6", + "6", + "9", + "-38" + ] + } + }, + { + "name": "X14", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 318, + "unique_ratio": 0.049688, + "example_values": [ + "1", + "30", + "11", + "-5", + "-29" + ] + } + }, + { + "name": "X15", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 324, + "unique_ratio": 0.050625, + "example_values": [ + "-8", + "4", + "-9", + "-6", + "-15" + ] + } + }, + { + "name": "X16", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 325, + "unique_ratio": 0.050781, + "example_values": [ + "-1", + "-13", + "0", + "1", + "-23" + ] + } + }, + { + "name": "y", + "role": "target", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 4, + "unique_ratio": 0.000625, + "example_values": [ + "2", + "1", + "0", + "3" + ] + } + } + ], + "public_manifest": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/n6/ctgan/ctgan-n6-20260429_032130/public_gate/staged_input_manifest.json", + "train_csv": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/n6/ctgan/ctgan-n6-20260429_032130/staged/public/train.csv", + "val_csv": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/n6/ctgan/ctgan-n6-20260429_032130/staged/public/val.csv", + "test_csv": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/n6/ctgan/ctgan-n6-20260429_032130/staged/public/test.csv", + "features_json": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/n6/ctgan/ctgan-n6-20260429_032130/staged/public/staged_features.json", + "public_gate_report": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/n6/ctgan/ctgan-n6-20260429_032130/public_gate/public_gate_report.json" +} \ No newline at end of file diff --git a/timecost/n6/ctgan/ctgan-n6-20260429_032130/staged/public/staged_features.json b/timecost/n6/ctgan/ctgan-n6-20260429_032130/staged/public/staged_features.json new file mode 100644 index 0000000000000000000000000000000000000000..13d0b8c66a07bb8f5aa06667e153a85656dae7d8 --- /dev/null +++ b/timecost/n6/ctgan/ctgan-n6-20260429_032130/staged/public/staged_features.json @@ -0,0 +1,87 @@ +[ + { + "feature_name": "X1", + "data_type": "continuous", + "is_target": false + }, + { + "feature_name": "X2", + "data_type": "continuous", + "is_target": false + }, + { + "feature_name": "X3", + "data_type": "continuous", + "is_target": false + }, + { + "feature_name": "X4", + "data_type": "continuous", + "is_target": false + }, + { + "feature_name": "X5", + "data_type": "continuous", + "is_target": false + }, + { + "feature_name": "X6", + "data_type": "continuous", + "is_target": false + }, + { + "feature_name": "X7", + "data_type": "continuous", + "is_target": false + }, + { + "feature_name": "X8", + "data_type": "continuous", + "is_target": false + }, + { + "feature_name": "X9", + "data_type": "continuous", + "is_target": false + }, + { + "feature_name": "X10", + "data_type": "continuous", + "is_target": false + }, + { + "feature_name": "X11", + "data_type": "continuous", + "is_target": false + }, + { + "feature_name": "X12", + "data_type": "continuous", + "is_target": false + }, + { + "feature_name": "X13", + "data_type": "continuous", + "is_target": false + }, + { + "feature_name": "X14", + "data_type": "continuous", + "is_target": false + }, + { + "feature_name": "X15", + "data_type": "continuous", + "is_target": false + }, + { + "feature_name": "X16", + "data_type": "continuous", + "is_target": false + }, + { + "feature_name": "y", + "data_type": "continuous", + "is_target": true + } +] \ No newline at end of file diff --git a/timecost/n6/ctgan/ctgan-n6-20260429_032130/staged/public/test.csv b/timecost/n6/ctgan/ctgan-n6-20260429_032130/staged/public/test.csv new file mode 100644 index 0000000000000000000000000000000000000000..64d039a1664b74ef81240a9ba69ab982a78be184 --- /dev/null +++ b/timecost/n6/ctgan/ctgan-n6-20260429_032130/staged/public/test.csv @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:f1922293e501d8f17f56a321a1305e44d20a6ad7ed67e97af754dea170989fc5 +size 39918 diff --git a/timecost/n6/ctgan/ctgan-n6-20260429_032130/staged/public/train.csv b/timecost/n6/ctgan/ctgan-n6-20260429_032130/staged/public/train.csv new file mode 100644 index 0000000000000000000000000000000000000000..25108968eaf2c7995080c74fba26ca496d015c72 --- /dev/null +++ b/timecost/n6/ctgan/ctgan-n6-20260429_032130/staged/public/train.csv @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:c8545a9761061bd99d67935948928e2840e6ae4b5c9760cad2de82198676db2b +size 316902 diff --git a/timecost/n6/ctgan/ctgan-n6-20260429_032130/staged/public/val.csv b/timecost/n6/ctgan/ctgan-n6-20260429_032130/staged/public/val.csv new file mode 100644 index 0000000000000000000000000000000000000000..933b52194b2ae481787d393e22f1a96acb482a5a --- /dev/null +++ b/timecost/n6/ctgan/ctgan-n6-20260429_032130/staged/public/val.csv @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:60a3dd7f655f8086e53402dcdcfa42297d586d8483f2afd6e1bbc6bd3521303f +size 39705 diff --git a/timecost/n6/forestdiffusion/forest-n6-20260430_054702/_fd_X_host.npy b/timecost/n6/forestdiffusion/forest-n6-20260430_054702/_fd_X_host.npy new file mode 100644 index 0000000000000000000000000000000000000000..3e8c4e6425d2c57f8aa1bf14b8fe50d261bf5d4e --- /dev/null +++ b/timecost/n6/forestdiffusion/forest-n6-20260430_054702/_fd_X_host.npy @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:6e4ca71ef754aec60001d4541bfbd80348f65da032f4a0588c700c98f612c952 +size 435328 diff --git a/timecost/n6/forestdiffusion/forest-n6-20260430_054702/_fd_gen.py b/timecost/n6/forestdiffusion/forest-n6-20260430_054702/_fd_gen.py new file mode 100644 index 0000000000000000000000000000000000000000..f3929e0ab2dd9b4f1f334f582838a2a963bc2f25 --- /dev/null +++ b/timecost/n6/forestdiffusion/forest-n6-20260430_054702/_fd_gen.py @@ -0,0 +1,8 @@ + +import joblib, pandas as pd +m, meta = joblib.load(r'/work/output-Benchmark-trainonly-v1/n6/forestdiffusion/forest-n6-20260430_054702/forestdiffusion_model.joblib') +# generate:batch_size 为样本数 +arr = m.generate(batch_size=int(6400)) +df = pd.DataFrame(arr, columns=meta["column_names"]) +df.to_csv(r'/work/output-Benchmark-trainonly-v1/n6/forestdiffusion/forest-n6-20260430_054702/forest-n6-6400-20260430_054812.csv', index=False) +print("saved", len(df)) diff --git a/timecost/n6/forestdiffusion/forest-n6-20260430_054702/_fd_meta_host.json b/timecost/n6/forestdiffusion/forest-n6-20260430_054702/_fd_meta_host.json new file mode 100644 index 0000000000000000000000000000000000000000..8a61d40675d38a9753057b7a85db975e5e743cce --- /dev/null +++ b/timecost/n6/forestdiffusion/forest-n6-20260430_054702/_fd_meta_host.json @@ -0,0 +1 @@ +{"column_names": ["X1", "X2", "X3", "X4", "X5", "X6", "X7", "X8", "X9", "X10", "X11", "X12", "X13", "X14", "X15", "X16", "y"], "cat_indexes": []} \ No newline at end of file diff --git a/timecost/n6/forestdiffusion/forest-n6-20260430_054702/_fd_train.py b/timecost/n6/forestdiffusion/forest-n6-20260430_054702/_fd_train.py new file mode 100644 index 0000000000000000000000000000000000000000..adb4d2ba4d7ab122c3aa8b113602e6319c387a73 --- /dev/null +++ b/timecost/n6/forestdiffusion/forest-n6-20260430_054702/_fd_train.py @@ -0,0 +1,28 @@ + +import shutil, json +shutil.copy(r'/work/output-Benchmark-trainonly-v1/n6/forestdiffusion/forest-n6-20260430_054702/_fd_X_host.npy', '/tmp/fd_X.npy') +with open(r'/work/output-Benchmark-trainonly-v1/n6/forestdiffusion/forest-n6-20260430_054702/_fd_meta_host.json') as f: + open('/tmp/fd_meta.json','w').write(f.read()) + +import numpy as np, joblib, json, os +from ForestDiffusion import ForestDiffusionModel +X = np.load("/tmp/fd_X.npy") +with open("/tmp/fd_meta.json") as f: + meta = json.load(f) +cat_indexes = meta["cat_indexes"] +print( + "[ForestDiffusion] train config: " + f"rows={X.shape[0]} cols={X.shape[1]} n_t=20 " + f"n_estimators=100 duplicate_K=20 n_jobs=2 " + f"xgb_verbosity=1", + flush=True, +) +m = ForestDiffusionModel( + X, n_t=20, n_estimators=100, duplicate_K=20, n_jobs=2, + model="xgboost", max_depth=6, tree_method="hist", cat_indexes=cat_indexes, + verbosity=1, +) +joblib.dump((m, meta), "/tmp/fd_model.joblib") +print("ForestDiffusion train OK") + +shutil.copy('/tmp/fd_model.joblib', r'/work/output-Benchmark-trainonly-v1/n6/forestdiffusion/forest-n6-20260430_054702/forestdiffusion_model.joblib') diff --git a/timecost/n6/forestdiffusion/forest-n6-20260430_054702/forest-n6-6400-20260430_054812.csv b/timecost/n6/forestdiffusion/forest-n6-20260430_054702/forest-n6-6400-20260430_054812.csv new file mode 100644 index 0000000000000000000000000000000000000000..f58460c184af4876d20685152dfd2f6ace1a1970 --- /dev/null +++ b/timecost/n6/forestdiffusion/forest-n6-20260430_054702/forest-n6-6400-20260430_054812.csv @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:d749f08869b7692e4644ba927e2acf6077ae09e07dccdf009bc9f328d12881fb +size 2050319 diff --git a/timecost/n6/forestdiffusion/forest-n6-20260430_054702/forestdiffusion_model.joblib b/timecost/n6/forestdiffusion/forest-n6-20260430_054702/forestdiffusion_model.joblib new file mode 100644 index 0000000000000000000000000000000000000000..16bc642c5a1101e7bb84c5a61d6cfc8bb4a15089 --- /dev/null +++ b/timecost/n6/forestdiffusion/forest-n6-20260430_054702/forestdiffusion_model.joblib @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:cff49432187dadb16342ea856e6595fb0585592329a86c5ebe3223450c37771f +size 160032483 diff --git a/timecost/n6/forestdiffusion/forest-n6-20260430_054702/gen_20260430_054812.log b/timecost/n6/forestdiffusion/forest-n6-20260430_054702/gen_20260430_054812.log new file mode 100644 index 0000000000000000000000000000000000000000..cc2e02f456a379c7ea6457baae10f581ec4457d9 --- /dev/null +++ b/timecost/n6/forestdiffusion/forest-n6-20260430_054702/gen_20260430_054812.log @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:e7a783426d699ee9e6de613abf4caff8e4d5f280dc659e6abb0299c6121c1066 +size 294 diff --git a/timecost/n6/forestdiffusion/forest-n6-20260430_054702/input_snapshot.json b/timecost/n6/forestdiffusion/forest-n6-20260430_054702/input_snapshot.json new file mode 100644 index 0000000000000000000000000000000000000000..49ebeda03e79184369d01b44862d7477294eb45d --- /dev/null +++ b/timecost/n6/forestdiffusion/forest-n6-20260430_054702/input_snapshot.json @@ -0,0 +1,36 @@ +{ + "dataset_id": "n6", + "model": "forestdiffusion", + "inputs": { + "train_csv": { + "path": "/data/jialinzhang/SynthesizePipeline-server/DatasetNew/n6/n6-train.csv", + "exists": true, + "size": 323303, + "sha256": "3b9d646393340b4c636db7686f2313521d84434e99ac1316b1053b05c995a3b1" + }, + "val_csv": { + "path": "/data/jialinzhang/SynthesizePipeline-server/DatasetNew/n6/n6-val.csv", + "exists": true, + "size": 40506, + "sha256": "74a01693febbfda57225ebbec2f7a9c22a2136edbec694b108b50c013cd6fe9d" + }, + "test_csv": { + "path": "/data/jialinzhang/SynthesizePipeline-server/DatasetNew/n6/n6-test.csv", + "exists": true, + "size": 40719, + "sha256": "46f32b813d7849636da5a0a7aa560ea062b8f5765772dc1a8268f756cdb2fbcc" + }, + "profile_json": { + "path": "/data/jialinzhang/SynthesizePipeline-server/DatasetNew/artifacts/data_core/tabular/n6/n6-dataset_profile.json", + "exists": true, + "size": 6559, + "sha256": "c3a4ba3662399f797ed5ac4ea171e2991e3f3ac9ea221ba345c132e11450d759" + }, + "contract_json": { + "path": "/data/jialinzhang/SynthesizePipeline-server/DatasetNew/artifacts/data_core/tabular/n6/n6-dataset_contract_v1.json", + "exists": true, + "size": 8304, + "sha256": "979119ea8d3be4588170ff59aa802156a0a5ecaf4312599a8b2998d38b69fba5" + } + } +} \ No newline at end of file diff --git a/timecost/n6/forestdiffusion/forest-n6-20260430_054702/models_fd/model.joblib b/timecost/n6/forestdiffusion/forest-n6-20260430_054702/models_fd/model.joblib new file mode 100644 index 0000000000000000000000000000000000000000..16bc642c5a1101e7bb84c5a61d6cfc8bb4a15089 --- /dev/null +++ b/timecost/n6/forestdiffusion/forest-n6-20260430_054702/models_fd/model.joblib @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:cff49432187dadb16342ea856e6595fb0585592329a86c5ebe3223450c37771f +size 160032483 diff --git a/timecost/n6/forestdiffusion/forest-n6-20260430_054702/public_gate/normalized_schema_snapshot.json b/timecost/n6/forestdiffusion/forest-n6-20260430_054702/public_gate/normalized_schema_snapshot.json new file mode 100644 index 0000000000000000000000000000000000000000..f37e46415bf96a79860f8cd9cdbfb764f9fbd0cb --- /dev/null +++ b/timecost/n6/forestdiffusion/forest-n6-20260430_054702/public_gate/normalized_schema_snapshot.json @@ -0,0 +1,363 @@ +{ + "dataset_id": "n6", + "target_column": "y", + "task_type": "classification", + "columns": [ + { + "name": "X1", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 313, + "unique_ratio": 0.048906, + "example_values": [ + "2", + "6", + "-2", + "-15", + "3" + ] + } + }, + { + "name": "X2", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 328, + "unique_ratio": 0.05125, + "example_values": [ + "-3", + "1", + "16", + "-4", + "-12" + ] + } + }, + { + "name": "X3", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 316, + "unique_ratio": 0.049375, + "example_values": [ + "-7", + "-6", + "3", + "-22", + "13" + ] + } + }, + { + "name": "X4", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 323, + "unique_ratio": 0.050469, + "example_values": [ + "-6", + "-7", + "5", + "-5", + "-37" + ] + } + }, + { + "name": "X5", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 325, + "unique_ratio": 0.050781, + "example_values": [ + "-9", + "2", + "-12", + "-8", + "-63" + ] + } + }, + { + "name": "X6", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 325, + "unique_ratio": 0.050781, + "example_values": [ + "-6", + "-5", + "11", + "0", + "-86" + ] + } + }, + { + "name": "X7", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 332, + "unique_ratio": 0.051875, + "example_values": [ + "-1", + "-2", + "5", + "-4", + "-82" + ] + } + }, + { + "name": "X8", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 330, + "unique_ratio": 0.051562, + "example_values": [ + "3", + "-3", + "9", + "-9", + "-51" + ] + } + }, + { + "name": "X9", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 333, + "unique_ratio": 0.052031, + "example_values": [ + "1", + "19", + "0", + "-1", + "-30" + ] + } + }, + { + "name": "X10", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 334, + "unique_ratio": 0.052187, + "example_values": [ + "4", + "10", + "9", + "3", + "-13" + ] + } + }, + { + "name": "X11", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 328, + "unique_ratio": 0.05125, + "example_values": [ + "-4", + "-3", + "-1", + "-7", + "-20" + ] + } + }, + { + "name": "X12", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 324, + "unique_ratio": 0.050625, + "example_values": [ + "-5", + "-11", + "0", + "4", + "-29" + ] + } + }, + { + "name": "X13", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 332, + "unique_ratio": 0.051875, + "example_values": [ + "4", + "-6", + "6", + "9", + "-38" + ] + } + }, + { + "name": "X14", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 318, + "unique_ratio": 0.049688, + "example_values": [ + "1", + "30", + "11", + "-5", + "-29" + ] + } + }, + { + "name": "X15", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 324, + "unique_ratio": 0.050625, + "example_values": [ + "-8", + "4", + "-9", + "-6", + "-15" + ] + } + }, + { + "name": "X16", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 325, + "unique_ratio": 0.050781, + "example_values": [ + "-1", + "-13", + "0", + "1", + "-23" + ] + } + }, + { + "name": "y", + "role": "target", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 4, + "unique_ratio": 0.000625, + "example_values": [ + "2", + "1", + "0", + "3" + ] + } + } + ] +} \ No newline at end of file diff --git a/timecost/n6/forestdiffusion/forest-n6-20260430_054702/public_gate/public_gate_report.json b/timecost/n6/forestdiffusion/forest-n6-20260430_054702/public_gate/public_gate_report.json new file mode 100644 index 0000000000000000000000000000000000000000..a228c993845322a7356eef31ebce756cb39378ed --- /dev/null +++ b/timecost/n6/forestdiffusion/forest-n6-20260430_054702/public_gate/public_gate_report.json @@ -0,0 +1,37 @@ +{ + "dataset_id": "n6", + "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": "y", + "task_type": "classification", + "input_splits": { + "train": "/data/jialinzhang/SynthesizePipeline-server/DatasetNew/n6/n6-train.csv", + "val": "/data/jialinzhang/SynthesizePipeline-server/DatasetNew/n6/n6-val.csv", + "test": "/data/jialinzhang/SynthesizePipeline-server/DatasetNew/n6/n6-test.csv" + } +} \ No newline at end of file diff --git a/timecost/n6/forestdiffusion/forest-n6-20260430_054702/public_gate/staged_input_manifest.json b/timecost/n6/forestdiffusion/forest-n6-20260430_054702/public_gate/staged_input_manifest.json new file mode 100644 index 0000000000000000000000000000000000000000..dac612d46ddbc8e5348070e405be3e4dd38e3be1 --- /dev/null +++ b/timecost/n6/forestdiffusion/forest-n6-20260430_054702/public_gate/staged_input_manifest.json @@ -0,0 +1,368 @@ +{ + "dataset_id": "n6", + "target_column": "y", + "task_type": "classification", + "train_csv": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/n6/forestdiffusion/forest-n6-20260430_054702/staged/public/train.csv", + "val_csv": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/n6/forestdiffusion/forest-n6-20260430_054702/staged/public/val.csv", + "test_csv": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/n6/forestdiffusion/forest-n6-20260430_054702/staged/public/test.csv", + "features_json": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/n6/forestdiffusion/forest-n6-20260430_054702/staged/public/staged_features.json", + "public_gate_report": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/n6/forestdiffusion/forest-n6-20260430_054702/public_gate/public_gate_report.json", + "column_schema": [ + { + "name": "X1", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 313, + "unique_ratio": 0.048906, + "example_values": [ + "2", + "6", + "-2", + "-15", + "3" + ] + } + }, + { + "name": "X2", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 328, + "unique_ratio": 0.05125, + "example_values": [ + "-3", + "1", + "16", + "-4", + "-12" + ] + } + }, + { + "name": "X3", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 316, + "unique_ratio": 0.049375, + "example_values": [ + "-7", + "-6", + "3", + "-22", + "13" + ] + } + }, + { + "name": "X4", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 323, + "unique_ratio": 0.050469, + "example_values": [ + "-6", + "-7", + "5", + "-5", + "-37" + ] + } + }, + { + "name": "X5", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 325, + "unique_ratio": 0.050781, + "example_values": [ + "-9", + "2", + "-12", + "-8", + "-63" + ] + } + }, + { + "name": "X6", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 325, + "unique_ratio": 0.050781, + "example_values": [ + "-6", + "-5", + "11", + "0", + "-86" + ] + } + }, + { + "name": "X7", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 332, + "unique_ratio": 0.051875, + "example_values": [ + "-1", + "-2", + "5", + "-4", + "-82" + ] + } + }, + { + "name": "X8", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 330, + "unique_ratio": 0.051562, + "example_values": [ + "3", + "-3", + "9", + "-9", + "-51" + ] + } + }, + { + "name": "X9", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 333, + "unique_ratio": 0.052031, + "example_values": [ + "1", + "19", + "0", + "-1", + "-30" + ] + } + }, + { + "name": "X10", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 334, + "unique_ratio": 0.052187, + "example_values": [ + "4", + "10", + "9", + "3", + "-13" + ] + } + }, + { + "name": "X11", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 328, + "unique_ratio": 0.05125, + "example_values": [ + "-4", + "-3", + "-1", + "-7", + "-20" + ] + } + }, + { + "name": "X12", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 324, + "unique_ratio": 0.050625, + "example_values": [ + "-5", + "-11", + "0", + "4", + "-29" + ] + } + }, + { + "name": "X13", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 332, + "unique_ratio": 0.051875, + "example_values": [ + "4", + "-6", + "6", + "9", + "-38" + ] + } + }, + { + "name": "X14", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 318, + "unique_ratio": 0.049688, + "example_values": [ + "1", + "30", + "11", + "-5", + "-29" + ] + } + }, + { + "name": "X15", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 324, + "unique_ratio": 0.050625, + "example_values": [ + "-8", + "4", + "-9", + "-6", + "-15" + ] + } + }, + { + "name": "X16", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 325, + "unique_ratio": 0.050781, + "example_values": [ + "-1", + "-13", + "0", + "1", + "-23" + ] + } + }, + { + "name": "y", + "role": "target", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 4, + "unique_ratio": 0.000625, + "example_values": [ + "2", + "1", + "0", + "3" + ] + } + } + ] +} \ No newline at end of file diff --git a/timecost/n6/forestdiffusion/forest-n6-20260430_054702/runtime_result.json b/timecost/n6/forestdiffusion/forest-n6-20260430_054702/runtime_result.json new file mode 100644 index 0000000000000000000000000000000000000000..fb9b206b19eda5e41778f737c0b74ca67cfe4c29 --- /dev/null +++ b/timecost/n6/forestdiffusion/forest-n6-20260430_054702/runtime_result.json @@ -0,0 +1,15 @@ +{ + "dataset_id": "n6", + "model": "forestdiffusion", + "run_id": "forest-n6-20260430_054702", + "public_gate_status": "pass", + "adapter_ready_status": "pass", + "train_status": "success", + "generate_status": "success", + "reason_code": null, + "reason_detail": null, + "artifacts": { + "synthetic_csv": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/n6/forestdiffusion/forest-n6-20260430_054702/forest-n6-6400-20260430_054812.csv", + "model_path": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/n6/forestdiffusion/forest-n6-20260430_054702/models_fd/model.joblib" + } +} \ No newline at end of file diff --git a/timecost/n6/forestdiffusion/forest-n6-20260430_054702/staged/forestdiffusion/adapter_report.json b/timecost/n6/forestdiffusion/forest-n6-20260430_054702/staged/forestdiffusion/adapter_report.json new file mode 100644 index 0000000000000000000000000000000000000000..8d4df00aad7ee36bd0475c91d1ee6dc5f9400c27 --- /dev/null +++ b/timecost/n6/forestdiffusion/forest-n6-20260430_054702/staged/forestdiffusion/adapter_report.json @@ -0,0 +1,7 @@ +{ + "adapter_ready_status": "pass", + "adapter_fail_reason_code": null, + "adapter_fail_detail": null, + "adapter_transforms_applied": [], + "model_input_manifest": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/n6/forestdiffusion/forest-n6-20260430_054702/staged/forestdiffusion/model_input_manifest.json" +} \ No newline at end of file diff --git a/timecost/n6/forestdiffusion/forest-n6-20260430_054702/staged/forestdiffusion/adapter_transforms_applied.json b/timecost/n6/forestdiffusion/forest-n6-20260430_054702/staged/forestdiffusion/adapter_transforms_applied.json new file mode 100644 index 0000000000000000000000000000000000000000..0637a088a01e8ddab3bf3fa98dbe804cbde1a0dc --- /dev/null +++ b/timecost/n6/forestdiffusion/forest-n6-20260430_054702/staged/forestdiffusion/adapter_transforms_applied.json @@ -0,0 +1 @@ +[] \ No newline at end of file diff --git a/timecost/n6/forestdiffusion/forest-n6-20260430_054702/staged/forestdiffusion/model_input_manifest.json b/timecost/n6/forestdiffusion/forest-n6-20260430_054702/staged/forestdiffusion/model_input_manifest.json new file mode 100644 index 0000000000000000000000000000000000000000..f4541f1a3f4a56935b6624637f6a47e95fd49084 --- /dev/null +++ b/timecost/n6/forestdiffusion/forest-n6-20260430_054702/staged/forestdiffusion/model_input_manifest.json @@ -0,0 +1,370 @@ +{ + "dataset_id": "n6", + "model": "forestdiffusion", + "target_column": "y", + "task_type": "classification", + "column_schema": [ + { + "name": "X1", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 313, + "unique_ratio": 0.048906, + "example_values": [ + "2", + "6", + "-2", + "-15", + "3" + ] + } + }, + { + "name": "X2", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 328, + "unique_ratio": 0.05125, + "example_values": [ + "-3", + "1", + "16", + "-4", + "-12" + ] + } + }, + { + "name": "X3", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 316, + "unique_ratio": 0.049375, + "example_values": [ + "-7", + "-6", + "3", + "-22", + "13" + ] + } + }, + { + "name": "X4", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 323, + "unique_ratio": 0.050469, + "example_values": [ + "-6", + "-7", + "5", + "-5", + "-37" + ] + } + }, + { + "name": "X5", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 325, + "unique_ratio": 0.050781, + "example_values": [ + "-9", + "2", + "-12", + "-8", + "-63" + ] + } + }, + { + "name": "X6", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 325, + "unique_ratio": 0.050781, + "example_values": [ + "-6", + "-5", + "11", + "0", + "-86" + ] + } + }, + { + "name": "X7", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 332, + "unique_ratio": 0.051875, + "example_values": [ + "-1", + "-2", + "5", + "-4", + "-82" + ] + } + }, + { + "name": "X8", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 330, + "unique_ratio": 0.051562, + "example_values": [ + "3", + "-3", + "9", + "-9", + "-51" + ] + } + }, + { + "name": "X9", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 333, + "unique_ratio": 0.052031, + "example_values": [ + "1", + "19", + "0", + "-1", + "-30" + ] + } + }, + { + "name": "X10", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 334, + "unique_ratio": 0.052187, + "example_values": [ + "4", + "10", + "9", + "3", + "-13" + ] + } + }, + { + "name": "X11", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 328, + "unique_ratio": 0.05125, + "example_values": [ + "-4", + "-3", + "-1", + "-7", + "-20" + ] + } + }, + { + "name": "X12", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 324, + "unique_ratio": 0.050625, + "example_values": [ + "-5", + "-11", + "0", + "4", + "-29" + ] + } + }, + { + "name": "X13", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 332, + "unique_ratio": 0.051875, + "example_values": [ + "4", + "-6", + "6", + "9", + "-38" + ] + } + }, + { + "name": "X14", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 318, + "unique_ratio": 0.049688, + "example_values": [ + "1", + "30", + "11", + "-5", + "-29" + ] + } + }, + { + "name": "X15", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 324, + "unique_ratio": 0.050625, + "example_values": [ + "-8", + "4", + "-9", + "-6", + "-15" + ] + } + }, + { + "name": "X16", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 325, + "unique_ratio": 0.050781, + "example_values": [ + "-1", + "-13", + "0", + "1", + "-23" + ] + } + }, + { + "name": "y", + "role": "target", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 4, + "unique_ratio": 0.000625, + "example_values": [ + "2", + "1", + "0", + "3" + ] + } + } + ], + "public_manifest": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/n6/forestdiffusion/forest-n6-20260430_054702/public_gate/staged_input_manifest.json", + "train_csv": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/n6/forestdiffusion/forest-n6-20260430_054702/staged/public/train.csv", + "val_csv": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/n6/forestdiffusion/forest-n6-20260430_054702/staged/public/val.csv", + "test_csv": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/n6/forestdiffusion/forest-n6-20260430_054702/staged/public/test.csv", + "features_json": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/n6/forestdiffusion/forest-n6-20260430_054702/staged/public/staged_features.json", + "public_gate_report": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/n6/forestdiffusion/forest-n6-20260430_054702/public_gate/public_gate_report.json" +} \ No newline at end of file diff --git a/timecost/n6/forestdiffusion/forest-n6-20260430_054702/staged/public/staged_features.json b/timecost/n6/forestdiffusion/forest-n6-20260430_054702/staged/public/staged_features.json new file mode 100644 index 0000000000000000000000000000000000000000..13d0b8c66a07bb8f5aa06667e153a85656dae7d8 --- /dev/null +++ b/timecost/n6/forestdiffusion/forest-n6-20260430_054702/staged/public/staged_features.json @@ -0,0 +1,87 @@ +[ + { + "feature_name": "X1", + "data_type": "continuous", + "is_target": false + }, + { + "feature_name": "X2", + "data_type": "continuous", + "is_target": false + }, + { + "feature_name": "X3", + "data_type": "continuous", + "is_target": false + }, + { + "feature_name": "X4", + "data_type": "continuous", + "is_target": false + }, + { + "feature_name": "X5", + "data_type": "continuous", + "is_target": false + }, + { + "feature_name": "X6", + "data_type": "continuous", + "is_target": false + }, + { + "feature_name": "X7", + "data_type": "continuous", + "is_target": false + }, + { + "feature_name": "X8", + "data_type": "continuous", + "is_target": false + }, + { + "feature_name": "X9", + "data_type": "continuous", + "is_target": false + }, + { + "feature_name": "X10", + "data_type": "continuous", + "is_target": false + }, + { + "feature_name": "X11", + "data_type": "continuous", + "is_target": false + }, + { + "feature_name": "X12", + "data_type": "continuous", + "is_target": false + }, + { + "feature_name": "X13", + "data_type": "continuous", + "is_target": false + }, + { + "feature_name": "X14", + "data_type": "continuous", + "is_target": false + }, + { + "feature_name": "X15", + "data_type": "continuous", + "is_target": false + }, + { + "feature_name": "X16", + "data_type": "continuous", + "is_target": false + }, + { + "feature_name": "y", + "data_type": "continuous", + "is_target": true + } +] \ No newline at end of file diff --git a/timecost/n6/forestdiffusion/forest-n6-20260430_054702/staged/public/test.csv b/timecost/n6/forestdiffusion/forest-n6-20260430_054702/staged/public/test.csv new file mode 100644 index 0000000000000000000000000000000000000000..64d039a1664b74ef81240a9ba69ab982a78be184 --- /dev/null +++ b/timecost/n6/forestdiffusion/forest-n6-20260430_054702/staged/public/test.csv @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:f1922293e501d8f17f56a321a1305e44d20a6ad7ed67e97af754dea170989fc5 +size 39918 diff --git a/timecost/n6/forestdiffusion/forest-n6-20260430_054702/staged/public/train.csv b/timecost/n6/forestdiffusion/forest-n6-20260430_054702/staged/public/train.csv new file mode 100644 index 0000000000000000000000000000000000000000..25108968eaf2c7995080c74fba26ca496d015c72 --- /dev/null +++ b/timecost/n6/forestdiffusion/forest-n6-20260430_054702/staged/public/train.csv @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:c8545a9761061bd99d67935948928e2840e6ae4b5c9760cad2de82198676db2b +size 316902 diff --git a/timecost/n6/forestdiffusion/forest-n6-20260430_054702/staged/public/val.csv b/timecost/n6/forestdiffusion/forest-n6-20260430_054702/staged/public/val.csv new file mode 100644 index 0000000000000000000000000000000000000000..933b52194b2ae481787d393e22f1a96acb482a5a --- /dev/null +++ b/timecost/n6/forestdiffusion/forest-n6-20260430_054702/staged/public/val.csv @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:60a3dd7f655f8086e53402dcdcfa42297d586d8483f2afd6e1bbc6bd3521303f +size 39705 diff --git a/timecost/n6/forestdiffusion/forest-n6-20260430_054702/train_20260430_054702.log b/timecost/n6/forestdiffusion/forest-n6-20260430_054702/train_20260430_054702.log new file mode 100644 index 0000000000000000000000000000000000000000..617aacce6941a6abae5411ae25a54a88fdf2642b --- /dev/null +++ b/timecost/n6/forestdiffusion/forest-n6-20260430_054702/train_20260430_054702.log @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:3a093401613435f43b43c0a049bf8acf3a1a62d4de5281ea87675e47c12591f2 +size 423 diff --git a/timecost/n6/forestdiffusion/forest-n6-20260430_055844/_fd_X_host.npy b/timecost/n6/forestdiffusion/forest-n6-20260430_055844/_fd_X_host.npy new file mode 100644 index 0000000000000000000000000000000000000000..3e8c4e6425d2c57f8aa1bf14b8fe50d261bf5d4e --- /dev/null +++ b/timecost/n6/forestdiffusion/forest-n6-20260430_055844/_fd_X_host.npy @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:6e4ca71ef754aec60001d4541bfbd80348f65da032f4a0588c700c98f612c952 +size 435328 diff --git a/timecost/n6/forestdiffusion/forest-n6-20260430_055844/_fd_gen.py b/timecost/n6/forestdiffusion/forest-n6-20260430_055844/_fd_gen.py new file mode 100644 index 0000000000000000000000000000000000000000..bc02dc538b3647b7dd9be2bf73e297d50cfe7be7 --- /dev/null +++ b/timecost/n6/forestdiffusion/forest-n6-20260430_055844/_fd_gen.py @@ -0,0 +1,8 @@ + +import joblib, pandas as pd +m, meta = joblib.load(r'/work/output-Benchmark-trainonly-v1/n6/forestdiffusion/forest-n6-20260430_055844/forestdiffusion_model.joblib') +# generate:batch_size 为样本数 +arr = m.generate(batch_size=int(6400)) +df = pd.DataFrame(arr, columns=meta["column_names"]) +df.to_csv(r'/work/output-Benchmark-trainonly-v1/n6/forestdiffusion/forest-n6-20260430_055844/forest-n6-6400-20260430_055957.csv', index=False) +print("saved", len(df)) diff --git a/timecost/n6/forestdiffusion/forest-n6-20260430_055844/_fd_meta_host.json b/timecost/n6/forestdiffusion/forest-n6-20260430_055844/_fd_meta_host.json new file mode 100644 index 0000000000000000000000000000000000000000..8a61d40675d38a9753057b7a85db975e5e743cce --- /dev/null +++ b/timecost/n6/forestdiffusion/forest-n6-20260430_055844/_fd_meta_host.json @@ -0,0 +1 @@ +{"column_names": ["X1", "X2", "X3", "X4", "X5", "X6", "X7", "X8", "X9", "X10", "X11", "X12", "X13", "X14", "X15", "X16", "y"], "cat_indexes": []} \ No newline at end of file diff --git a/timecost/n6/forestdiffusion/forest-n6-20260430_055844/_fd_train.py b/timecost/n6/forestdiffusion/forest-n6-20260430_055844/_fd_train.py new file mode 100644 index 0000000000000000000000000000000000000000..fc1af95a18401d8035aed08ede7e8d62f4ba58ce --- /dev/null +++ b/timecost/n6/forestdiffusion/forest-n6-20260430_055844/_fd_train.py @@ -0,0 +1,28 @@ + +import shutil, json +shutil.copy(r'/work/output-Benchmark-trainonly-v1/n6/forestdiffusion/forest-n6-20260430_055844/_fd_X_host.npy', '/tmp/fd_X.npy') +with open(r'/work/output-Benchmark-trainonly-v1/n6/forestdiffusion/forest-n6-20260430_055844/_fd_meta_host.json') as f: + open('/tmp/fd_meta.json','w').write(f.read()) + +import numpy as np, joblib, json, os +from ForestDiffusion import ForestDiffusionModel +X = np.load("/tmp/fd_X.npy") +with open("/tmp/fd_meta.json") as f: + meta = json.load(f) +cat_indexes = meta["cat_indexes"] +print( + "[ForestDiffusion] train config: " + f"rows={X.shape[0]} cols={X.shape[1]} n_t=20 " + f"n_estimators=100 duplicate_K=20 n_jobs=2 " + f"xgb_verbosity=1", + flush=True, +) +m = ForestDiffusionModel( + X, n_t=20, n_estimators=100, duplicate_K=20, n_jobs=2, + model="xgboost", max_depth=6, tree_method="hist", cat_indexes=cat_indexes, + verbosity=1, +) +joblib.dump((m, meta), "/tmp/fd_model.joblib") +print("ForestDiffusion train OK") + +shutil.copy('/tmp/fd_model.joblib', r'/work/output-Benchmark-trainonly-v1/n6/forestdiffusion/forest-n6-20260430_055844/forestdiffusion_model.joblib') diff --git a/timecost/n6/forestdiffusion/forest-n6-20260430_055844/forest-n6-6400-20260430_055957.csv b/timecost/n6/forestdiffusion/forest-n6-20260430_055844/forest-n6-6400-20260430_055957.csv new file mode 100644 index 0000000000000000000000000000000000000000..30e889e9dcdf5b8bfd6aa30eea5ec5aa1c0169ae --- /dev/null +++ b/timecost/n6/forestdiffusion/forest-n6-20260430_055844/forest-n6-6400-20260430_055957.csv @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:d300de070eb8fc5a2e8c48b57f5cd5d4baa91d69f2938b850d383521042338dc +size 2050310 diff --git a/timecost/n6/forestdiffusion/forest-n6-20260430_055844/forestdiffusion_model.joblib b/timecost/n6/forestdiffusion/forest-n6-20260430_055844/forestdiffusion_model.joblib new file mode 100644 index 0000000000000000000000000000000000000000..16bc642c5a1101e7bb84c5a61d6cfc8bb4a15089 --- /dev/null +++ b/timecost/n6/forestdiffusion/forest-n6-20260430_055844/forestdiffusion_model.joblib @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:cff49432187dadb16342ea856e6595fb0585592329a86c5ebe3223450c37771f +size 160032483 diff --git a/timecost/n6/forestdiffusion/forest-n6-20260430_055844/gen_20260430_055957.log b/timecost/n6/forestdiffusion/forest-n6-20260430_055844/gen_20260430_055957.log new file mode 100644 index 0000000000000000000000000000000000000000..499dec6b4e0dc27bfb0156ee2111e41f036796c6 --- /dev/null +++ b/timecost/n6/forestdiffusion/forest-n6-20260430_055844/gen_20260430_055957.log @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:45b1176e2280efb8e474b62bc659bee6d6ee1d175463874cef1f5eff314a3740 +size 294 diff --git a/timecost/n6/forestdiffusion/forest-n6-20260430_055844/input_snapshot.json b/timecost/n6/forestdiffusion/forest-n6-20260430_055844/input_snapshot.json new file mode 100644 index 0000000000000000000000000000000000000000..49ebeda03e79184369d01b44862d7477294eb45d --- /dev/null +++ b/timecost/n6/forestdiffusion/forest-n6-20260430_055844/input_snapshot.json @@ -0,0 +1,36 @@ +{ + "dataset_id": "n6", + "model": "forestdiffusion", + "inputs": { + "train_csv": { + "path": "/data/jialinzhang/SynthesizePipeline-server/DatasetNew/n6/n6-train.csv", + "exists": true, + "size": 323303, + "sha256": "3b9d646393340b4c636db7686f2313521d84434e99ac1316b1053b05c995a3b1" + }, + "val_csv": { + "path": "/data/jialinzhang/SynthesizePipeline-server/DatasetNew/n6/n6-val.csv", + "exists": true, + "size": 40506, + "sha256": "74a01693febbfda57225ebbec2f7a9c22a2136edbec694b108b50c013cd6fe9d" + }, + "test_csv": { + "path": "/data/jialinzhang/SynthesizePipeline-server/DatasetNew/n6/n6-test.csv", + "exists": true, + "size": 40719, + "sha256": "46f32b813d7849636da5a0a7aa560ea062b8f5765772dc1a8268f756cdb2fbcc" + }, + "profile_json": { + "path": "/data/jialinzhang/SynthesizePipeline-server/DatasetNew/artifacts/data_core/tabular/n6/n6-dataset_profile.json", + "exists": true, + "size": 6559, + "sha256": "c3a4ba3662399f797ed5ac4ea171e2991e3f3ac9ea221ba345c132e11450d759" + }, + "contract_json": { + "path": "/data/jialinzhang/SynthesizePipeline-server/DatasetNew/artifacts/data_core/tabular/n6/n6-dataset_contract_v1.json", + "exists": true, + "size": 8304, + "sha256": "979119ea8d3be4588170ff59aa802156a0a5ecaf4312599a8b2998d38b69fba5" + } + } +} \ No newline at end of file diff --git a/timecost/n6/forestdiffusion/forest-n6-20260430_055844/models_fd/model.joblib b/timecost/n6/forestdiffusion/forest-n6-20260430_055844/models_fd/model.joblib new file mode 100644 index 0000000000000000000000000000000000000000..16bc642c5a1101e7bb84c5a61d6cfc8bb4a15089 --- /dev/null +++ b/timecost/n6/forestdiffusion/forest-n6-20260430_055844/models_fd/model.joblib @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:cff49432187dadb16342ea856e6595fb0585592329a86c5ebe3223450c37771f +size 160032483 diff --git a/timecost/n6/forestdiffusion/forest-n6-20260430_055844/public_gate/normalized_schema_snapshot.json b/timecost/n6/forestdiffusion/forest-n6-20260430_055844/public_gate/normalized_schema_snapshot.json new file mode 100644 index 0000000000000000000000000000000000000000..f37e46415bf96a79860f8cd9cdbfb764f9fbd0cb --- /dev/null +++ b/timecost/n6/forestdiffusion/forest-n6-20260430_055844/public_gate/normalized_schema_snapshot.json @@ -0,0 +1,363 @@ +{ + "dataset_id": "n6", + "target_column": "y", + "task_type": "classification", + "columns": [ + { + "name": "X1", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 313, + "unique_ratio": 0.048906, + "example_values": [ + "2", + "6", + "-2", + "-15", + "3" + ] + } + }, + { + "name": "X2", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 328, + "unique_ratio": 0.05125, + "example_values": [ + "-3", + "1", + "16", + "-4", + "-12" + ] + } + }, + { + "name": "X3", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 316, + "unique_ratio": 0.049375, + "example_values": [ + "-7", + "-6", + "3", + "-22", + "13" + ] + } + }, + { + "name": "X4", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 323, + "unique_ratio": 0.050469, + "example_values": [ + "-6", + "-7", + "5", + "-5", + "-37" + ] + } + }, + { + "name": "X5", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 325, + "unique_ratio": 0.050781, + "example_values": [ + "-9", + "2", + "-12", + "-8", + "-63" + ] + } + }, + { + "name": "X6", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 325, + "unique_ratio": 0.050781, + "example_values": [ + "-6", + "-5", + "11", + "0", + "-86" + ] + } + }, + { + "name": "X7", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 332, + "unique_ratio": 0.051875, + "example_values": [ + "-1", + "-2", + "5", + "-4", + "-82" + ] + } + }, + { + "name": "X8", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 330, + "unique_ratio": 0.051562, + "example_values": [ + "3", + "-3", + "9", + "-9", + "-51" + ] + } + }, + { + "name": "X9", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 333, + "unique_ratio": 0.052031, + "example_values": [ + "1", + "19", + "0", + "-1", + "-30" + ] + } + }, + { + "name": "X10", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 334, + "unique_ratio": 0.052187, + "example_values": [ + "4", + "10", + "9", + "3", + "-13" + ] + } + }, + { + "name": "X11", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 328, + "unique_ratio": 0.05125, + "example_values": [ + "-4", + "-3", + "-1", + "-7", + "-20" + ] + } + }, + { + "name": "X12", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 324, + "unique_ratio": 0.050625, + "example_values": [ + "-5", + "-11", + "0", + "4", + "-29" + ] + } + }, + { + "name": "X13", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 332, + "unique_ratio": 0.051875, + "example_values": [ + "4", + "-6", + "6", + "9", + "-38" + ] + } + }, + { + "name": "X14", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 318, + "unique_ratio": 0.049688, + "example_values": [ + "1", + "30", + "11", + "-5", + "-29" + ] + } + }, + { + "name": "X15", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 324, + "unique_ratio": 0.050625, + "example_values": [ + "-8", + "4", + "-9", + "-6", + "-15" + ] + } + }, + { + "name": "X16", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 325, + "unique_ratio": 0.050781, + "example_values": [ + "-1", + "-13", + "0", + "1", + "-23" + ] + } + }, + { + "name": "y", + "role": "target", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 4, + "unique_ratio": 0.000625, + "example_values": [ + "2", + "1", + "0", + "3" + ] + } + } + ] +} \ No newline at end of file diff --git a/timecost/n6/forestdiffusion/forest-n6-20260430_055844/public_gate/public_gate_report.json b/timecost/n6/forestdiffusion/forest-n6-20260430_055844/public_gate/public_gate_report.json new file mode 100644 index 0000000000000000000000000000000000000000..a228c993845322a7356eef31ebce756cb39378ed --- /dev/null +++ b/timecost/n6/forestdiffusion/forest-n6-20260430_055844/public_gate/public_gate_report.json @@ -0,0 +1,37 @@ +{ + "dataset_id": "n6", + "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": "y", + "task_type": "classification", + "input_splits": { + "train": "/data/jialinzhang/SynthesizePipeline-server/DatasetNew/n6/n6-train.csv", + "val": "/data/jialinzhang/SynthesizePipeline-server/DatasetNew/n6/n6-val.csv", + "test": "/data/jialinzhang/SynthesizePipeline-server/DatasetNew/n6/n6-test.csv" + } +} \ No newline at end of file diff --git a/timecost/n6/forestdiffusion/forest-n6-20260430_055844/public_gate/staged_input_manifest.json b/timecost/n6/forestdiffusion/forest-n6-20260430_055844/public_gate/staged_input_manifest.json new file mode 100644 index 0000000000000000000000000000000000000000..2abcef488f3237f7edad4cea0d8a8c98a6507403 --- /dev/null +++ b/timecost/n6/forestdiffusion/forest-n6-20260430_055844/public_gate/staged_input_manifest.json @@ -0,0 +1,368 @@ +{ + "dataset_id": "n6", + "target_column": "y", + "task_type": "classification", + "train_csv": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/n6/forestdiffusion/forest-n6-20260430_055844/staged/public/train.csv", + "val_csv": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/n6/forestdiffusion/forest-n6-20260430_055844/staged/public/val.csv", + "test_csv": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/n6/forestdiffusion/forest-n6-20260430_055844/staged/public/test.csv", + "features_json": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/n6/forestdiffusion/forest-n6-20260430_055844/staged/public/staged_features.json", + "public_gate_report": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/n6/forestdiffusion/forest-n6-20260430_055844/public_gate/public_gate_report.json", + "column_schema": [ + { + "name": "X1", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 313, + "unique_ratio": 0.048906, + "example_values": [ + "2", + "6", + "-2", + "-15", + "3" + ] + } + }, + { + "name": "X2", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 328, + "unique_ratio": 0.05125, + "example_values": [ + "-3", + "1", + "16", + "-4", + "-12" + ] + } + }, + { + "name": "X3", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 316, + "unique_ratio": 0.049375, + "example_values": [ + "-7", + "-6", + "3", + "-22", + "13" + ] + } + }, + { + "name": "X4", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 323, + "unique_ratio": 0.050469, + "example_values": [ + "-6", + "-7", + "5", + "-5", + "-37" + ] + } + }, + { + "name": "X5", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 325, + "unique_ratio": 0.050781, + "example_values": [ + "-9", + "2", + "-12", + "-8", + "-63" + ] + } + }, + { + "name": "X6", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 325, + "unique_ratio": 0.050781, + "example_values": [ + "-6", + "-5", + "11", + "0", + "-86" + ] + } + }, + { + "name": "X7", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 332, + "unique_ratio": 0.051875, + "example_values": [ + "-1", + "-2", + "5", + "-4", + "-82" + ] + } + }, + { + "name": "X8", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 330, + "unique_ratio": 0.051562, + "example_values": [ + "3", + "-3", + "9", + "-9", + "-51" + ] + } + }, + { + "name": "X9", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 333, + "unique_ratio": 0.052031, + "example_values": [ + "1", + "19", + "0", + "-1", + "-30" + ] + } + }, + { + "name": "X10", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 334, + "unique_ratio": 0.052187, + "example_values": [ + "4", + "10", + "9", + "3", + "-13" + ] + } + }, + { + "name": "X11", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 328, + "unique_ratio": 0.05125, + "example_values": [ + "-4", + "-3", + "-1", + "-7", + "-20" + ] + } + }, + { + "name": "X12", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 324, + "unique_ratio": 0.050625, + "example_values": [ + "-5", + "-11", + "0", + "4", + "-29" + ] + } + }, + { + "name": "X13", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 332, + "unique_ratio": 0.051875, + "example_values": [ + "4", + "-6", + "6", + "9", + "-38" + ] + } + }, + { + "name": "X14", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 318, + "unique_ratio": 0.049688, + "example_values": [ + "1", + "30", + "11", + "-5", + "-29" + ] + } + }, + { + "name": "X15", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 324, + "unique_ratio": 0.050625, + "example_values": [ + "-8", + "4", + "-9", + "-6", + "-15" + ] + } + }, + { + "name": "X16", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 325, + "unique_ratio": 0.050781, + "example_values": [ + "-1", + "-13", + "0", + "1", + "-23" + ] + } + }, + { + "name": "y", + "role": "target", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 4, + "unique_ratio": 0.000625, + "example_values": [ + "2", + "1", + "0", + "3" + ] + } + } + ] +} \ No newline at end of file diff --git a/timecost/n6/forestdiffusion/forest-n6-20260430_055844/runtime_result.json b/timecost/n6/forestdiffusion/forest-n6-20260430_055844/runtime_result.json new file mode 100644 index 0000000000000000000000000000000000000000..3358e6c42fc12c8872c4bc1ff71becf1be500372 --- /dev/null +++ b/timecost/n6/forestdiffusion/forest-n6-20260430_055844/runtime_result.json @@ -0,0 +1,15 @@ +{ + "dataset_id": "n6", + "model": "forestdiffusion", + "run_id": "forest-n6-20260430_055844", + "public_gate_status": "pass", + "adapter_ready_status": "pass", + "train_status": "success", + "generate_status": "success", + "reason_code": null, + "reason_detail": null, + "artifacts": { + "synthetic_csv": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/n6/forestdiffusion/forest-n6-20260430_055844/forest-n6-6400-20260430_055957.csv", + "model_path": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/n6/forestdiffusion/forest-n6-20260430_055844/models_fd/model.joblib" + } +} \ No newline at end of file diff --git a/timecost/n6/forestdiffusion/forest-n6-20260430_055844/staged/forestdiffusion/adapter_report.json b/timecost/n6/forestdiffusion/forest-n6-20260430_055844/staged/forestdiffusion/adapter_report.json new file mode 100644 index 0000000000000000000000000000000000000000..7fa07a20bb7d14c62203d5aa086d465ed708acc1 --- /dev/null +++ b/timecost/n6/forestdiffusion/forest-n6-20260430_055844/staged/forestdiffusion/adapter_report.json @@ -0,0 +1,7 @@ +{ + "adapter_ready_status": "pass", + "adapter_fail_reason_code": null, + "adapter_fail_detail": null, + "adapter_transforms_applied": [], + "model_input_manifest": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/n6/forestdiffusion/forest-n6-20260430_055844/staged/forestdiffusion/model_input_manifest.json" +} \ No newline at end of file diff --git a/timecost/n6/forestdiffusion/forest-n6-20260430_055844/staged/forestdiffusion/adapter_transforms_applied.json b/timecost/n6/forestdiffusion/forest-n6-20260430_055844/staged/forestdiffusion/adapter_transforms_applied.json new file mode 100644 index 0000000000000000000000000000000000000000..0637a088a01e8ddab3bf3fa98dbe804cbde1a0dc --- /dev/null +++ b/timecost/n6/forestdiffusion/forest-n6-20260430_055844/staged/forestdiffusion/adapter_transforms_applied.json @@ -0,0 +1 @@ +[] \ No newline at end of file diff --git a/timecost/n6/forestdiffusion/forest-n6-20260430_055844/staged/forestdiffusion/model_input_manifest.json b/timecost/n6/forestdiffusion/forest-n6-20260430_055844/staged/forestdiffusion/model_input_manifest.json new file mode 100644 index 0000000000000000000000000000000000000000..7e7d27aa7d7d2d68feef91f3932b327d6f0e5892 --- /dev/null +++ b/timecost/n6/forestdiffusion/forest-n6-20260430_055844/staged/forestdiffusion/model_input_manifest.json @@ -0,0 +1,370 @@ +{ + "dataset_id": "n6", + "model": "forestdiffusion", + "target_column": "y", + "task_type": "classification", + "column_schema": [ + { + "name": "X1", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 313, + "unique_ratio": 0.048906, + "example_values": [ + "2", + "6", + "-2", + "-15", + "3" + ] + } + }, + { + "name": "X2", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 328, + "unique_ratio": 0.05125, + "example_values": [ + "-3", + "1", + "16", + "-4", + "-12" + ] + } + }, + { + "name": "X3", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 316, + "unique_ratio": 0.049375, + "example_values": [ + "-7", + "-6", + "3", + "-22", + "13" + ] + } + }, + { + "name": "X4", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 323, + "unique_ratio": 0.050469, + "example_values": [ + "-6", + "-7", + "5", + "-5", + "-37" + ] + } + }, + { + "name": "X5", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 325, + "unique_ratio": 0.050781, + "example_values": [ + "-9", + "2", + "-12", + "-8", + "-63" + ] + } + }, + { + "name": "X6", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 325, + "unique_ratio": 0.050781, + "example_values": [ + "-6", + "-5", + "11", + "0", + "-86" + ] + } + }, + { + "name": "X7", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 332, + "unique_ratio": 0.051875, + "example_values": [ + "-1", + "-2", + "5", + "-4", + "-82" + ] + } + }, + { + "name": "X8", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 330, + "unique_ratio": 0.051562, + "example_values": [ + "3", + "-3", + "9", + "-9", + "-51" + ] + } + }, + { + "name": "X9", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 333, + "unique_ratio": 0.052031, + "example_values": [ + "1", + "19", + "0", + "-1", + "-30" + ] + } + }, + { + "name": "X10", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 334, + "unique_ratio": 0.052187, + "example_values": [ + "4", + "10", + "9", + "3", + "-13" + ] + } + }, + { + "name": "X11", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 328, + "unique_ratio": 0.05125, + "example_values": [ + "-4", + "-3", + "-1", + "-7", + "-20" + ] + } + }, + { + "name": "X12", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 324, + "unique_ratio": 0.050625, + "example_values": [ + "-5", + "-11", + "0", + "4", + "-29" + ] + } + }, + { + "name": "X13", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 332, + "unique_ratio": 0.051875, + "example_values": [ + "4", + "-6", + "6", + "9", + "-38" + ] + } + }, + { + "name": "X14", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 318, + "unique_ratio": 0.049688, + "example_values": [ + "1", + "30", + "11", + "-5", + "-29" + ] + } + }, + { + "name": "X15", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 324, + "unique_ratio": 0.050625, + "example_values": [ + "-8", + "4", + "-9", + "-6", + "-15" + ] + } + }, + { + "name": "X16", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 325, + "unique_ratio": 0.050781, + "example_values": [ + "-1", + "-13", + "0", + "1", + "-23" + ] + } + }, + { + "name": "y", + "role": "target", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 4, + "unique_ratio": 0.000625, + "example_values": [ + "2", + "1", + "0", + "3" + ] + } + } + ], + "public_manifest": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/n6/forestdiffusion/forest-n6-20260430_055844/public_gate/staged_input_manifest.json", + "train_csv": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/n6/forestdiffusion/forest-n6-20260430_055844/staged/public/train.csv", + "val_csv": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/n6/forestdiffusion/forest-n6-20260430_055844/staged/public/val.csv", + "test_csv": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/n6/forestdiffusion/forest-n6-20260430_055844/staged/public/test.csv", + "features_json": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/n6/forestdiffusion/forest-n6-20260430_055844/staged/public/staged_features.json", + "public_gate_report": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/n6/forestdiffusion/forest-n6-20260430_055844/public_gate/public_gate_report.json" +} \ No newline at end of file diff --git a/timecost/n6/forestdiffusion/forest-n6-20260430_055844/staged/public/staged_features.json b/timecost/n6/forestdiffusion/forest-n6-20260430_055844/staged/public/staged_features.json new file mode 100644 index 0000000000000000000000000000000000000000..13d0b8c66a07bb8f5aa06667e153a85656dae7d8 --- /dev/null +++ b/timecost/n6/forestdiffusion/forest-n6-20260430_055844/staged/public/staged_features.json @@ -0,0 +1,87 @@ +[ + { + "feature_name": "X1", + "data_type": "continuous", + "is_target": false + }, + { + "feature_name": "X2", + "data_type": "continuous", + "is_target": false + }, + { + "feature_name": "X3", + "data_type": "continuous", + "is_target": false + }, + { + "feature_name": "X4", + "data_type": "continuous", + "is_target": false + }, + { + "feature_name": "X5", + "data_type": "continuous", + "is_target": false + }, + { + "feature_name": "X6", + "data_type": "continuous", + "is_target": false + }, + { + "feature_name": "X7", + "data_type": "continuous", + "is_target": false + }, + { + "feature_name": "X8", + "data_type": "continuous", + "is_target": false + }, + { + "feature_name": "X9", + "data_type": "continuous", + "is_target": false + }, + { + "feature_name": "X10", + "data_type": "continuous", + "is_target": false + }, + { + "feature_name": "X11", + "data_type": "continuous", + "is_target": false + }, + { + "feature_name": "X12", + "data_type": "continuous", + "is_target": false + }, + { + "feature_name": "X13", + "data_type": "continuous", + "is_target": false + }, + { + "feature_name": "X14", + "data_type": "continuous", + "is_target": false + }, + { + "feature_name": "X15", + "data_type": "continuous", + "is_target": false + }, + { + "feature_name": "X16", + "data_type": "continuous", + "is_target": false + }, + { + "feature_name": "y", + "data_type": "continuous", + "is_target": true + } +] \ No newline at end of file diff --git a/timecost/n6/forestdiffusion/forest-n6-20260430_055844/staged/public/test.csv b/timecost/n6/forestdiffusion/forest-n6-20260430_055844/staged/public/test.csv new file mode 100644 index 0000000000000000000000000000000000000000..64d039a1664b74ef81240a9ba69ab982a78be184 --- /dev/null +++ b/timecost/n6/forestdiffusion/forest-n6-20260430_055844/staged/public/test.csv @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:f1922293e501d8f17f56a321a1305e44d20a6ad7ed67e97af754dea170989fc5 +size 39918 diff --git a/timecost/n6/forestdiffusion/forest-n6-20260430_055844/staged/public/train.csv b/timecost/n6/forestdiffusion/forest-n6-20260430_055844/staged/public/train.csv new file mode 100644 index 0000000000000000000000000000000000000000..25108968eaf2c7995080c74fba26ca496d015c72 --- /dev/null +++ b/timecost/n6/forestdiffusion/forest-n6-20260430_055844/staged/public/train.csv @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:c8545a9761061bd99d67935948928e2840e6ae4b5c9760cad2de82198676db2b +size 316902 diff --git a/timecost/n6/forestdiffusion/forest-n6-20260430_055844/staged/public/val.csv b/timecost/n6/forestdiffusion/forest-n6-20260430_055844/staged/public/val.csv new file mode 100644 index 0000000000000000000000000000000000000000..933b52194b2ae481787d393e22f1a96acb482a5a --- /dev/null +++ b/timecost/n6/forestdiffusion/forest-n6-20260430_055844/staged/public/val.csv @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:60a3dd7f655f8086e53402dcdcfa42297d586d8483f2afd6e1bbc6bd3521303f +size 39705 diff --git a/timecost/n6/forestdiffusion/forest-n6-20260430_055844/train_20260430_055844.log b/timecost/n6/forestdiffusion/forest-n6-20260430_055844/train_20260430_055844.log new file mode 100644 index 0000000000000000000000000000000000000000..ddb759833ee7d630fb0c3512834e26b484c3c1cd --- /dev/null +++ b/timecost/n6/forestdiffusion/forest-n6-20260430_055844/train_20260430_055844.log @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:8f7a5619e9fed5446f02ee1627afc87c4e23e8ca59966e6ff4bf422142f6b295 +size 423 diff --git a/timecost/n6/realtabformer/rtf-n6-20260429_070345/gen_20260429_073951.log b/timecost/n6/realtabformer/rtf-n6-20260429_070345/gen_20260429_073951.log new file mode 100644 index 0000000000000000000000000000000000000000..35df773980368890b506ea5381501beac9d1fa49 --- /dev/null +++ b/timecost/n6/realtabformer/rtf-n6-20260429_070345/gen_20260429_073951.log @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:016c9f42936f10e7dda55145364dc0409ed283985ef093e70c399849db31e3e7 +size 3831 diff --git a/timecost/n6/realtabformer/rtf-n6-20260429_070345/input_snapshot.json b/timecost/n6/realtabformer/rtf-n6-20260429_070345/input_snapshot.json new file mode 100644 index 0000000000000000000000000000000000000000..8eb92a35a60390ca71b7a25a5202470c0d95cb61 --- /dev/null +++ b/timecost/n6/realtabformer/rtf-n6-20260429_070345/input_snapshot.json @@ -0,0 +1,36 @@ +{ + "dataset_id": "n6", + "model": "realtabformer", + "inputs": { + "train_csv": { + "path": "/data/jialinzhang/SynthesizePipeline-server/DatasetNew/n6/n6-train.csv", + "exists": true, + "size": 323303, + "sha256": "3b9d646393340b4c636db7686f2313521d84434e99ac1316b1053b05c995a3b1" + }, + "val_csv": { + "path": "/data/jialinzhang/SynthesizePipeline-server/DatasetNew/n6/n6-val.csv", + "exists": true, + "size": 40506, + "sha256": "74a01693febbfda57225ebbec2f7a9c22a2136edbec694b108b50c013cd6fe9d" + }, + "test_csv": { + "path": "/data/jialinzhang/SynthesizePipeline-server/DatasetNew/n6/n6-test.csv", + "exists": true, + "size": 40719, + "sha256": "46f32b813d7849636da5a0a7aa560ea062b8f5765772dc1a8268f756cdb2fbcc" + }, + "profile_json": { + "path": "/data/jialinzhang/SynthesizePipeline-server/DatasetNew/artifacts/data_core/tabular/n6/n6-dataset_profile.json", + "exists": true, + "size": 6559, + "sha256": "c3a4ba3662399f797ed5ac4ea171e2991e3f3ac9ea221ba345c132e11450d759" + }, + "contract_json": { + "path": "/data/jialinzhang/SynthesizePipeline-server/DatasetNew/artifacts/data_core/tabular/n6/n6-dataset_contract_v1.json", + "exists": true, + "size": 8304, + "sha256": "979119ea8d3be4588170ff59aa802156a0a5ecaf4312599a8b2998d38b69fba5" + } + } +} \ No newline at end of file diff --git a/timecost/n6/realtabformer/rtf-n6-20260429_070345/models_100epochs/id000017774195887883571200/rtf_config.json b/timecost/n6/realtabformer/rtf-n6-20260429_070345/models_100epochs/id000017774195887883571200/rtf_config.json new file mode 100644 index 0000000000000000000000000000000000000000..b3c7b8ce12d7b3a1c5f6fb81bf34d51801477744 --- /dev/null +++ b/timecost/n6/realtabformer/rtf-n6-20260429_070345/models_100epochs/id000017774195887883571200/rtf_config.json @@ -0,0 +1 @@ +{"model_type": "tabular", "tabular_config": {"transformers_version": "5.5.3", "architectures": ["GPT2LMHeadModel"], "output_hidden_states": false, "return_dict": true, "dtype": "float32", "chunk_size_feed_forward": 0, "is_encoder_decoder": false, "id2label": {"0": "LABEL_0", "1": "LABEL_1"}, "label2id": {"LABEL_0": 0, "LABEL_1": 1}, "problem_type": null, "vocab_size": 419, "n_positions": 1024, "n_embd": 768, "n_layer": 6, "n_head": 12, "n_inner": null, "activation_function": "gelu_new", "resid_pdrop": 0.1, "embd_pdrop": 0.1, "attn_pdrop": 0.1, "layer_norm_epsilon": 1e-05, "initializer_range": 0.02, "summary_type": "cls_index", "summary_use_proj": true, "summary_activation": null, "summary_proj_to_labels": true, "summary_first_dropout": 0.1, "scale_attn_weights": true, "use_cache": false, "bos_token_id": 5, "eos_token_id": 6, "pad_token_id": null, "scale_attn_by_inverse_layer_idx": false, "reorder_and_upcast_attn": false, "add_cross_attention": false, "tie_word_embeddings": true, "_name_or_path": "", "model_type": "gpt2", "output_attentions": false}, "checkpoints_dir": "rtf_checkpoints", "samples_save_dir": "rtf_samples", "full_save_dir": "rtf_full_save", "epochs": 100, "batch_size": 8, "early_stopping_patience": 5, "early_stopping_threshold": 0, "training_args_kwargs": {"eval_strategy": "no", "output_dir": "rtf_checkpoints", "metric_for_best_model": "loss", "num_train_epochs": 100, "per_device_train_batch_size": 8, "per_device_eval_batch_size": 8, "gradient_accumulation_steps": 4, "remove_unused_columns": true, "logging_steps": 100, "save_steps": 100, "eval_steps": 100, "load_best_model_at_end": false, "save_total_limit": 6, "optim": "adamw_torch"}, "train_size": 1, "mask_rate": 0, "columns": ["X1", "X2", "X3", "X4", "X5", "X6", "X7", "X8", "X9", "X10", "X11", "X12", "X13", "X14", "X15", "X16", "y"], "column_dtypes": {"X1": "int64", "X2": "int64", "X3": "int64", "X4": "int64", "X5": "int64", "X6": "int64", "X7": "int64", "X8": "int64", "X9": "int64", "X10": "int64", "X11": "int64", "X12": "int64", "X13": "int64", "X14": "int64", "X15": "int64", "X16": "int64", "y": "int64"}, "column_has_missing": {"X1": false, "X2": false, "X3": false, "X4": false, "X5": false, "X6": false, "X7": false, "X8": false, "X9": false, "X10": false, "X11": false, "X12": false, "X13": false, "X14": false, "X15": false, "X16": false, "y": false}, "drop_na_cols": ["X1", "X2", "X3", "X4", "X5", "X6", "X7", "X8", "X9", "X10", "X11", "X12", "X13", "X14", "X15", "X16", "y"], "processed_columns": ["00___NUMERIC___X1_00", "00___NUMERIC___X1_01", "00___NUMERIC___X1_02", "00___NUMERIC___X1_03", "01___NUMERIC___X2_00", "01___NUMERIC___X2_01", "01___NUMERIC___X2_02", "01___NUMERIC___X2_03", "02___NUMERIC___X3_00", "02___NUMERIC___X3_01", "02___NUMERIC___X3_02", "02___NUMERIC___X3_03", "03___NUMERIC___X4_00", "03___NUMERIC___X4_01", "03___NUMERIC___X4_02", "03___NUMERIC___X4_03", "04___NUMERIC___X5_00", "04___NUMERIC___X5_01", "04___NUMERIC___X5_02", "04___NUMERIC___X5_03", "05___NUMERIC___X6_00", "05___NUMERIC___X6_01", "05___NUMERIC___X6_02", "05___NUMERIC___X6_03", "06___NUMERIC___X7_00", "06___NUMERIC___X7_01", "06___NUMERIC___X7_02", "06___NUMERIC___X7_03", "07___NUMERIC___X8_00", "07___NUMERIC___X8_01", "07___NUMERIC___X8_02", "07___NUMERIC___X8_03", "08___NUMERIC___X9_00", "08___NUMERIC___X9_01", "08___NUMERIC___X9_02", "08___NUMERIC___X9_03", "09___NUMERIC___X10_00", "09___NUMERIC___X10_01", "09___NUMERIC___X10_02", "09___NUMERIC___X10_03", "10___NUMERIC___X11_00", "10___NUMERIC___X11_01", "10___NUMERIC___X11_02", "10___NUMERIC___X11_03", "11___NUMERIC___X12_00", "11___NUMERIC___X12_01", "11___NUMERIC___X12_02", "11___NUMERIC___X12_03", "12___NUMERIC___X13_00", "12___NUMERIC___X13_01", "12___NUMERIC___X13_02", "12___NUMERIC___X13_03", "13___NUMERIC___X14_00", "13___NUMERIC___X14_01", "13___NUMERIC___X14_02", "13___NUMERIC___X14_03", "14___NUMERIC___X15_00", "14___NUMERIC___X15_01", "14___NUMERIC___X15_02", "14___NUMERIC___X15_03", "15___NUMERIC___X16_00", "15___NUMERIC___X16_01", "15___NUMERIC___X16_02", "15___NUMERIC___X16_03", "16___NUMERIC___y_00"], "numeric_columns": ["X1", "X2", "X3", "X4", "X5", "X6", "X7", "X8", "X9", "X10", "X11", "X12", "X13", "X14", "X15", "X16", "y"], "datetime_columns": [], "vocab": {"id2token": {"0": "[UNK]", "1": "[SEP]", "2": "[PAD]", "3": "[CLS]", "4": "[MASK]", "5": "[BOS]", "6": "[EOS]", "7": "[BMEM]", "8": "[EMEM]", "9": "[RMASK]", "10": "[SPTYPE]", "11": "00___NUMERIC___X1_00___-", "12": "00___NUMERIC___X1_00___0", "13": "00___NUMERIC___X1_01___0", "14": "00___NUMERIC___X1_01___1", "15": "00___NUMERIC___X1_01___2", "16": "00___NUMERIC___X1_02___0", "17": "00___NUMERIC___X1_02___1", "18": "00___NUMERIC___X1_02___2", "19": "00___NUMERIC___X1_02___3", "20": "00___NUMERIC___X1_02___4", "21": "00___NUMERIC___X1_02___5", "22": "00___NUMERIC___X1_02___6", "23": "00___NUMERIC___X1_02___7", "24": "00___NUMERIC___X1_02___8", "25": "00___NUMERIC___X1_02___9", "26": "00___NUMERIC___X1_03___0", "27": "00___NUMERIC___X1_03___1", "28": "00___NUMERIC___X1_03___2", "29": "00___NUMERIC___X1_03___3", "30": "00___NUMERIC___X1_03___4", "31": "00___NUMERIC___X1_03___5", "32": "00___NUMERIC___X1_03___6", "33": "00___NUMERIC___X1_03___7", "34": "00___NUMERIC___X1_03___8", "35": "00___NUMERIC___X1_03___9", "36": "01___NUMERIC___X2_00___-", "37": "01___NUMERIC___X2_00___0", "38": "01___NUMERIC___X2_01___0", "39": "01___NUMERIC___X2_01___1", "40": "01___NUMERIC___X2_01___2", "41": "01___NUMERIC___X2_02___0", "42": "01___NUMERIC___X2_02___1", "43": "01___NUMERIC___X2_02___2", "44": "01___NUMERIC___X2_02___3", "45": "01___NUMERIC___X2_02___4", "46": "01___NUMERIC___X2_02___5", "47": "01___NUMERIC___X2_02___6", "48": "01___NUMERIC___X2_02___7", "49": "01___NUMERIC___X2_02___8", "50": "01___NUMERIC___X2_02___9", "51": "01___NUMERIC___X2_03___0", "52": "01___NUMERIC___X2_03___1", "53": "01___NUMERIC___X2_03___2", "54": "01___NUMERIC___X2_03___3", "55": "01___NUMERIC___X2_03___4", "56": "01___NUMERIC___X2_03___5", "57": "01___NUMERIC___X2_03___6", "58": "01___NUMERIC___X2_03___7", "59": "01___NUMERIC___X2_03___8", "60": "01___NUMERIC___X2_03___9", "61": "02___NUMERIC___X3_00___-", "62": "02___NUMERIC___X3_00___0", "63": "02___NUMERIC___X3_01___0", "64": "02___NUMERIC___X3_01___1", "65": "02___NUMERIC___X3_01___2", "66": "02___NUMERIC___X3_02___0", "67": "02___NUMERIC___X3_02___1", "68": "02___NUMERIC___X3_02___2", "69": "02___NUMERIC___X3_02___3", "70": "02___NUMERIC___X3_02___4", "71": "02___NUMERIC___X3_02___5", "72": "02___NUMERIC___X3_02___6", "73": "02___NUMERIC___X3_02___7", "74": "02___NUMERIC___X3_02___8", "75": "02___NUMERIC___X3_02___9", "76": "02___NUMERIC___X3_03___0", "77": "02___NUMERIC___X3_03___1", "78": "02___NUMERIC___X3_03___2", "79": "02___NUMERIC___X3_03___3", "80": "02___NUMERIC___X3_03___4", "81": "02___NUMERIC___X3_03___5", "82": "02___NUMERIC___X3_03___6", "83": "02___NUMERIC___X3_03___7", "84": "02___NUMERIC___X3_03___8", "85": "02___NUMERIC___X3_03___9", "86": "03___NUMERIC___X4_00___-", "87": "03___NUMERIC___X4_00___0", "88": "03___NUMERIC___X4_01___0", "89": "03___NUMERIC___X4_01___1", "90": "03___NUMERIC___X4_01___2", "91": "03___NUMERIC___X4_02___0", "92": "03___NUMERIC___X4_02___1", "93": "03___NUMERIC___X4_02___2", "94": "03___NUMERIC___X4_02___3", "95": "03___NUMERIC___X4_02___4", "96": "03___NUMERIC___X4_02___5", "97": "03___NUMERIC___X4_02___6", "98": "03___NUMERIC___X4_02___7", "99": "03___NUMERIC___X4_02___8", "100": "03___NUMERIC___X4_02___9", "101": "03___NUMERIC___X4_03___0", "102": "03___NUMERIC___X4_03___1", "103": "03___NUMERIC___X4_03___2", "104": "03___NUMERIC___X4_03___3", "105": "03___NUMERIC___X4_03___4", "106": "03___NUMERIC___X4_03___5", "107": "03___NUMERIC___X4_03___6", "108": "03___NUMERIC___X4_03___7", "109": "03___NUMERIC___X4_03___8", "110": "03___NUMERIC___X4_03___9", "111": "04___NUMERIC___X5_00___-", "112": "04___NUMERIC___X5_00___0", "113": "04___NUMERIC___X5_01___0", "114": "04___NUMERIC___X5_01___1", "115": "04___NUMERIC___X5_01___2", "116": "04___NUMERIC___X5_02___0", "117": "04___NUMERIC___X5_02___1", "118": "04___NUMERIC___X5_02___2", "119": "04___NUMERIC___X5_02___3", "120": "04___NUMERIC___X5_02___4", "121": "04___NUMERIC___X5_02___5", "122": "04___NUMERIC___X5_02___6", "123": "04___NUMERIC___X5_02___7", "124": "04___NUMERIC___X5_02___8", "125": "04___NUMERIC___X5_02___9", "126": "04___NUMERIC___X5_03___0", "127": "04___NUMERIC___X5_03___1", "128": "04___NUMERIC___X5_03___2", "129": "04___NUMERIC___X5_03___3", "130": "04___NUMERIC___X5_03___4", "131": "04___NUMERIC___X5_03___5", "132": "04___NUMERIC___X5_03___6", "133": "04___NUMERIC___X5_03___7", "134": "04___NUMERIC___X5_03___8", "135": "04___NUMERIC___X5_03___9", "136": "05___NUMERIC___X6_00___-", "137": "05___NUMERIC___X6_00___0", "138": "05___NUMERIC___X6_01___0", "139": "05___NUMERIC___X6_01___1", "140": "05___NUMERIC___X6_01___2", "141": "05___NUMERIC___X6_02___0", "142": "05___NUMERIC___X6_02___1", "143": "05___NUMERIC___X6_02___2", "144": "05___NUMERIC___X6_02___3", "145": "05___NUMERIC___X6_02___4", "146": "05___NUMERIC___X6_02___5", "147": "05___NUMERIC___X6_02___6", "148": "05___NUMERIC___X6_02___7", "149": "05___NUMERIC___X6_02___8", "150": "05___NUMERIC___X6_02___9", "151": "05___NUMERIC___X6_03___0", "152": "05___NUMERIC___X6_03___1", "153": "05___NUMERIC___X6_03___2", "154": "05___NUMERIC___X6_03___3", "155": "05___NUMERIC___X6_03___4", "156": "05___NUMERIC___X6_03___5", "157": "05___NUMERIC___X6_03___6", "158": "05___NUMERIC___X6_03___7", "159": "05___NUMERIC___X6_03___8", "160": "05___NUMERIC___X6_03___9", "161": "06___NUMERIC___X7_00___-", "162": "06___NUMERIC___X7_00___0", "163": "06___NUMERIC___X7_01___0", "164": "06___NUMERIC___X7_01___1", "165": "06___NUMERIC___X7_01___2", "166": "06___NUMERIC___X7_02___0", "167": "06___NUMERIC___X7_02___1", "168": "06___NUMERIC___X7_02___2", "169": "06___NUMERIC___X7_02___3", "170": "06___NUMERIC___X7_02___4", "171": "06___NUMERIC___X7_02___5", "172": "06___NUMERIC___X7_02___6", "173": "06___NUMERIC___X7_02___7", "174": "06___NUMERIC___X7_02___8", "175": "06___NUMERIC___X7_02___9", "176": "06___NUMERIC___X7_03___0", "177": "06___NUMERIC___X7_03___1", "178": "06___NUMERIC___X7_03___2", "179": "06___NUMERIC___X7_03___3", "180": "06___NUMERIC___X7_03___4", "181": "06___NUMERIC___X7_03___5", "182": "06___NUMERIC___X7_03___6", "183": "06___NUMERIC___X7_03___7", "184": "06___NUMERIC___X7_03___8", "185": "06___NUMERIC___X7_03___9", "186": "07___NUMERIC___X8_00___-", "187": "07___NUMERIC___X8_00___0", "188": "07___NUMERIC___X8_01___0", "189": "07___NUMERIC___X8_01___1", "190": "07___NUMERIC___X8_01___2", "191": "07___NUMERIC___X8_02___0", "192": "07___NUMERIC___X8_02___1", "193": "07___NUMERIC___X8_02___2", "194": "07___NUMERIC___X8_02___3", "195": "07___NUMERIC___X8_02___4", "196": "07___NUMERIC___X8_02___5", "197": "07___NUMERIC___X8_02___6", "198": "07___NUMERIC___X8_02___7", "199": "07___NUMERIC___X8_02___8", "200": "07___NUMERIC___X8_02___9", "201": "07___NUMERIC___X8_03___0", "202": "07___NUMERIC___X8_03___1", "203": "07___NUMERIC___X8_03___2", "204": "07___NUMERIC___X8_03___3", "205": "07___NUMERIC___X8_03___4", "206": "07___NUMERIC___X8_03___5", "207": "07___NUMERIC___X8_03___6", "208": "07___NUMERIC___X8_03___7", "209": "07___NUMERIC___X8_03___8", "210": "07___NUMERIC___X8_03___9", "211": "08___NUMERIC___X9_00___-", "212": "08___NUMERIC___X9_00___0", "213": "08___NUMERIC___X9_01___0", "214": "08___NUMERIC___X9_01___1", "215": "08___NUMERIC___X9_01___2", "216": "08___NUMERIC___X9_02___0", "217": "08___NUMERIC___X9_02___1", "218": "08___NUMERIC___X9_02___2", "219": "08___NUMERIC___X9_02___3", "220": "08___NUMERIC___X9_02___4", "221": "08___NUMERIC___X9_02___5", "222": "08___NUMERIC___X9_02___6", "223": "08___NUMERIC___X9_02___7", "224": "08___NUMERIC___X9_02___8", "225": "08___NUMERIC___X9_02___9", "226": "08___NUMERIC___X9_03___0", "227": "08___NUMERIC___X9_03___1", "228": "08___NUMERIC___X9_03___2", "229": "08___NUMERIC___X9_03___3", "230": "08___NUMERIC___X9_03___4", "231": "08___NUMERIC___X9_03___5", "232": "08___NUMERIC___X9_03___6", "233": "08___NUMERIC___X9_03___7", "234": "08___NUMERIC___X9_03___8", "235": "08___NUMERIC___X9_03___9", "236": "09___NUMERIC___X10_00___-", "237": "09___NUMERIC___X10_00___0", "238": "09___NUMERIC___X10_01___0", "239": "09___NUMERIC___X10_01___1", "240": "09___NUMERIC___X10_01___2", "241": "09___NUMERIC___X10_01___3", "242": "09___NUMERIC___X10_02___0", "243": "09___NUMERIC___X10_02___1", "244": "09___NUMERIC___X10_02___2", "245": "09___NUMERIC___X10_02___3", "246": "09___NUMERIC___X10_02___4", "247": "09___NUMERIC___X10_02___5", "248": "09___NUMERIC___X10_02___6", "249": "09___NUMERIC___X10_02___7", "250": "09___NUMERIC___X10_02___8", "251": "09___NUMERIC___X10_02___9", "252": "09___NUMERIC___X10_03___0", "253": "09___NUMERIC___X10_03___1", "254": "09___NUMERIC___X10_03___2", "255": "09___NUMERIC___X10_03___3", "256": "09___NUMERIC___X10_03___4", "257": "09___NUMERIC___X10_03___5", "258": "09___NUMERIC___X10_03___6", "259": "09___NUMERIC___X10_03___7", "260": "09___NUMERIC___X10_03___8", "261": "09___NUMERIC___X10_03___9", "262": "10___NUMERIC___X11_00___-", "263": "10___NUMERIC___X11_00___0", "264": "10___NUMERIC___X11_01___0", "265": "10___NUMERIC___X11_01___1", "266": "10___NUMERIC___X11_01___2", "267": "10___NUMERIC___X11_02___0", "268": "10___NUMERIC___X11_02___1", "269": "10___NUMERIC___X11_02___2", "270": "10___NUMERIC___X11_02___3", "271": "10___NUMERIC___X11_02___4", "272": "10___NUMERIC___X11_02___5", "273": "10___NUMERIC___X11_02___6", "274": "10___NUMERIC___X11_02___7", "275": "10___NUMERIC___X11_02___8", "276": "10___NUMERIC___X11_02___9", "277": "10___NUMERIC___X11_03___0", "278": "10___NUMERIC___X11_03___1", "279": "10___NUMERIC___X11_03___2", "280": "10___NUMERIC___X11_03___3", "281": "10___NUMERIC___X11_03___4", "282": "10___NUMERIC___X11_03___5", "283": "10___NUMERIC___X11_03___6", "284": "10___NUMERIC___X11_03___7", "285": "10___NUMERIC___X11_03___8", "286": "10___NUMERIC___X11_03___9", "287": "11___NUMERIC___X12_00___-", "288": "11___NUMERIC___X12_00___0", "289": "11___NUMERIC___X12_01___0", "290": "11___NUMERIC___X12_01___1", "291": "11___NUMERIC___X12_01___2", "292": "11___NUMERIC___X12_01___3", "293": "11___NUMERIC___X12_02___0", "294": "11___NUMERIC___X12_02___1", "295": "11___NUMERIC___X12_02___2", "296": "11___NUMERIC___X12_02___3", "297": "11___NUMERIC___X12_02___4", "298": "11___NUMERIC___X12_02___5", "299": "11___NUMERIC___X12_02___6", "300": "11___NUMERIC___X12_02___7", "301": "11___NUMERIC___X12_02___8", "302": "11___NUMERIC___X12_02___9", "303": "11___NUMERIC___X12_03___0", "304": "11___NUMERIC___X12_03___1", "305": "11___NUMERIC___X12_03___2", "306": "11___NUMERIC___X12_03___3", "307": "11___NUMERIC___X12_03___4", "308": "11___NUMERIC___X12_03___5", "309": "11___NUMERIC___X12_03___6", "310": "11___NUMERIC___X12_03___7", "311": "11___NUMERIC___X12_03___8", "312": "11___NUMERIC___X12_03___9", "313": "12___NUMERIC___X13_00___-", "314": "12___NUMERIC___X13_00___0", "315": "12___NUMERIC___X13_01___0", "316": "12___NUMERIC___X13_01___1", "317": "12___NUMERIC___X13_01___2", "318": "12___NUMERIC___X13_02___0", "319": "12___NUMERIC___X13_02___1", "320": "12___NUMERIC___X13_02___2", "321": "12___NUMERIC___X13_02___3", "322": "12___NUMERIC___X13_02___4", "323": "12___NUMERIC___X13_02___5", "324": "12___NUMERIC___X13_02___6", "325": "12___NUMERIC___X13_02___7", "326": "12___NUMERIC___X13_02___8", "327": "12___NUMERIC___X13_02___9", "328": "12___NUMERIC___X13_03___0", "329": "12___NUMERIC___X13_03___1", "330": "12___NUMERIC___X13_03___2", "331": "12___NUMERIC___X13_03___3", "332": "12___NUMERIC___X13_03___4", "333": "12___NUMERIC___X13_03___5", "334": "12___NUMERIC___X13_03___6", "335": "12___NUMERIC___X13_03___7", "336": "12___NUMERIC___X13_03___8", "337": "12___NUMERIC___X13_03___9", "338": "13___NUMERIC___X14_00___-", "339": "13___NUMERIC___X14_00___0", "340": "13___NUMERIC___X14_01___0", "341": "13___NUMERIC___X14_01___1", "342": "13___NUMERIC___X14_01___2", "343": "13___NUMERIC___X14_02___0", "344": "13___NUMERIC___X14_02___1", "345": "13___NUMERIC___X14_02___2", "346": "13___NUMERIC___X14_02___3", "347": "13___NUMERIC___X14_02___4", "348": "13___NUMERIC___X14_02___5", "349": "13___NUMERIC___X14_02___6", "350": "13___NUMERIC___X14_02___7", "351": "13___NUMERIC___X14_02___8", "352": "13___NUMERIC___X14_02___9", "353": "13___NUMERIC___X14_03___0", "354": "13___NUMERIC___X14_03___1", "355": "13___NUMERIC___X14_03___2", "356": "13___NUMERIC___X14_03___3", "357": "13___NUMERIC___X14_03___4", "358": "13___NUMERIC___X14_03___5", "359": "13___NUMERIC___X14_03___6", "360": "13___NUMERIC___X14_03___7", "361": "13___NUMERIC___X14_03___8", "362": "13___NUMERIC___X14_03___9", "363": "14___NUMERIC___X15_00___-", "364": "14___NUMERIC___X15_00___0", "365": "14___NUMERIC___X15_01___0", "366": "14___NUMERIC___X15_01___1", "367": "14___NUMERIC___X15_01___2", "368": "14___NUMERIC___X15_01___3", "369": "14___NUMERIC___X15_02___0", "370": "14___NUMERIC___X15_02___1", "371": "14___NUMERIC___X15_02___2", "372": "14___NUMERIC___X15_02___3", "373": "14___NUMERIC___X15_02___4", "374": "14___NUMERIC___X15_02___5", "375": "14___NUMERIC___X15_02___6", "376": "14___NUMERIC___X15_02___7", "377": "14___NUMERIC___X15_02___8", "378": "14___NUMERIC___X15_02___9", "379": "14___NUMERIC___X15_03___0", "380": "14___NUMERIC___X15_03___1", "381": "14___NUMERIC___X15_03___2", "382": "14___NUMERIC___X15_03___3", "383": "14___NUMERIC___X15_03___4", "384": "14___NUMERIC___X15_03___5", "385": "14___NUMERIC___X15_03___6", "386": "14___NUMERIC___X15_03___7", "387": "14___NUMERIC___X15_03___8", "388": "14___NUMERIC___X15_03___9", "389": "15___NUMERIC___X16_00___-", "390": "15___NUMERIC___X16_00___0", "391": "15___NUMERIC___X16_01___0", "392": "15___NUMERIC___X16_01___1", "393": "15___NUMERIC___X16_01___2", "394": "15___NUMERIC___X16_01___3", "395": "15___NUMERIC___X16_02___0", "396": "15___NUMERIC___X16_02___1", "397": "15___NUMERIC___X16_02___2", "398": "15___NUMERIC___X16_02___3", "399": "15___NUMERIC___X16_02___4", "400": "15___NUMERIC___X16_02___5", "401": "15___NUMERIC___X16_02___6", "402": "15___NUMERIC___X16_02___7", "403": "15___NUMERIC___X16_02___8", "404": "15___NUMERIC___X16_02___9", "405": "15___NUMERIC___X16_03___0", "406": "15___NUMERIC___X16_03___1", "407": "15___NUMERIC___X16_03___2", "408": "15___NUMERIC___X16_03___3", "409": "15___NUMERIC___X16_03___4", "410": "15___NUMERIC___X16_03___5", "411": "15___NUMERIC___X16_03___6", "412": "15___NUMERIC___X16_03___7", "413": "15___NUMERIC___X16_03___8", "414": "15___NUMERIC___X16_03___9", "415": "16___NUMERIC___y_00___0", "416": "16___NUMERIC___y_00___1", "417": "16___NUMERIC___y_00___2", "418": "16___NUMERIC___y_00___3"}, "token2id": {"[UNK]": 0, "[SEP]": 1, "[PAD]": 2, "[CLS]": 3, "[MASK]": 4, "[BOS]": 5, "[EOS]": 6, "[BMEM]": 7, "[EMEM]": 8, "[RMASK]": 9, "[SPTYPE]": 10, "00___NUMERIC___X1_00___-": 11, "00___NUMERIC___X1_00___0": 12, "00___NUMERIC___X1_01___0": 13, "00___NUMERIC___X1_01___1": 14, "00___NUMERIC___X1_01___2": 15, "00___NUMERIC___X1_02___0": 16, "00___NUMERIC___X1_02___1": 17, "00___NUMERIC___X1_02___2": 18, "00___NUMERIC___X1_02___3": 19, "00___NUMERIC___X1_02___4": 20, "00___NUMERIC___X1_02___5": 21, "00___NUMERIC___X1_02___6": 22, "00___NUMERIC___X1_02___7": 23, "00___NUMERIC___X1_02___8": 24, "00___NUMERIC___X1_02___9": 25, "00___NUMERIC___X1_03___0": 26, "00___NUMERIC___X1_03___1": 27, "00___NUMERIC___X1_03___2": 28, "00___NUMERIC___X1_03___3": 29, "00___NUMERIC___X1_03___4": 30, "00___NUMERIC___X1_03___5": 31, "00___NUMERIC___X1_03___6": 32, "00___NUMERIC___X1_03___7": 33, "00___NUMERIC___X1_03___8": 34, "00___NUMERIC___X1_03___9": 35, "01___NUMERIC___X2_00___-": 36, "01___NUMERIC___X2_00___0": 37, "01___NUMERIC___X2_01___0": 38, "01___NUMERIC___X2_01___1": 39, "01___NUMERIC___X2_01___2": 40, "01___NUMERIC___X2_02___0": 41, "01___NUMERIC___X2_02___1": 42, "01___NUMERIC___X2_02___2": 43, "01___NUMERIC___X2_02___3": 44, "01___NUMERIC___X2_02___4": 45, "01___NUMERIC___X2_02___5": 46, "01___NUMERIC___X2_02___6": 47, "01___NUMERIC___X2_02___7": 48, "01___NUMERIC___X2_02___8": 49, "01___NUMERIC___X2_02___9": 50, "01___NUMERIC___X2_03___0": 51, "01___NUMERIC___X2_03___1": 52, "01___NUMERIC___X2_03___2": 53, "01___NUMERIC___X2_03___3": 54, "01___NUMERIC___X2_03___4": 55, "01___NUMERIC___X2_03___5": 56, "01___NUMERIC___X2_03___6": 57, "01___NUMERIC___X2_03___7": 58, "01___NUMERIC___X2_03___8": 59, "01___NUMERIC___X2_03___9": 60, "02___NUMERIC___X3_00___-": 61, "02___NUMERIC___X3_00___0": 62, "02___NUMERIC___X3_01___0": 63, "02___NUMERIC___X3_01___1": 64, "02___NUMERIC___X3_01___2": 65, "02___NUMERIC___X3_02___0": 66, "02___NUMERIC___X3_02___1": 67, "02___NUMERIC___X3_02___2": 68, "02___NUMERIC___X3_02___3": 69, "02___NUMERIC___X3_02___4": 70, "02___NUMERIC___X3_02___5": 71, "02___NUMERIC___X3_02___6": 72, "02___NUMERIC___X3_02___7": 73, "02___NUMERIC___X3_02___8": 74, "02___NUMERIC___X3_02___9": 75, "02___NUMERIC___X3_03___0": 76, "02___NUMERIC___X3_03___1": 77, "02___NUMERIC___X3_03___2": 78, "02___NUMERIC___X3_03___3": 79, "02___NUMERIC___X3_03___4": 80, "02___NUMERIC___X3_03___5": 81, "02___NUMERIC___X3_03___6": 82, "02___NUMERIC___X3_03___7": 83, "02___NUMERIC___X3_03___8": 84, "02___NUMERIC___X3_03___9": 85, "03___NUMERIC___X4_00___-": 86, "03___NUMERIC___X4_00___0": 87, "03___NUMERIC___X4_01___0": 88, "03___NUMERIC___X4_01___1": 89, "03___NUMERIC___X4_01___2": 90, "03___NUMERIC___X4_02___0": 91, "03___NUMERIC___X4_02___1": 92, "03___NUMERIC___X4_02___2": 93, "03___NUMERIC___X4_02___3": 94, "03___NUMERIC___X4_02___4": 95, "03___NUMERIC___X4_02___5": 96, "03___NUMERIC___X4_02___6": 97, "03___NUMERIC___X4_02___7": 98, "03___NUMERIC___X4_02___8": 99, "03___NUMERIC___X4_02___9": 100, "03___NUMERIC___X4_03___0": 101, "03___NUMERIC___X4_03___1": 102, "03___NUMERIC___X4_03___2": 103, "03___NUMERIC___X4_03___3": 104, "03___NUMERIC___X4_03___4": 105, "03___NUMERIC___X4_03___5": 106, "03___NUMERIC___X4_03___6": 107, "03___NUMERIC___X4_03___7": 108, "03___NUMERIC___X4_03___8": 109, "03___NUMERIC___X4_03___9": 110, "04___NUMERIC___X5_00___-": 111, "04___NUMERIC___X5_00___0": 112, "04___NUMERIC___X5_01___0": 113, "04___NUMERIC___X5_01___1": 114, "04___NUMERIC___X5_01___2": 115, "04___NUMERIC___X5_02___0": 116, "04___NUMERIC___X5_02___1": 117, "04___NUMERIC___X5_02___2": 118, "04___NUMERIC___X5_02___3": 119, "04___NUMERIC___X5_02___4": 120, "04___NUMERIC___X5_02___5": 121, "04___NUMERIC___X5_02___6": 122, "04___NUMERIC___X5_02___7": 123, "04___NUMERIC___X5_02___8": 124, "04___NUMERIC___X5_02___9": 125, "04___NUMERIC___X5_03___0": 126, "04___NUMERIC___X5_03___1": 127, "04___NUMERIC___X5_03___2": 128, "04___NUMERIC___X5_03___3": 129, "04___NUMERIC___X5_03___4": 130, "04___NUMERIC___X5_03___5": 131, "04___NUMERIC___X5_03___6": 132, "04___NUMERIC___X5_03___7": 133, "04___NUMERIC___X5_03___8": 134, "04___NUMERIC___X5_03___9": 135, "05___NUMERIC___X6_00___-": 136, "05___NUMERIC___X6_00___0": 137, "05___NUMERIC___X6_01___0": 138, "05___NUMERIC___X6_01___1": 139, "05___NUMERIC___X6_01___2": 140, "05___NUMERIC___X6_02___0": 141, "05___NUMERIC___X6_02___1": 142, "05___NUMERIC___X6_02___2": 143, "05___NUMERIC___X6_02___3": 144, "05___NUMERIC___X6_02___4": 145, "05___NUMERIC___X6_02___5": 146, "05___NUMERIC___X6_02___6": 147, "05___NUMERIC___X6_02___7": 148, "05___NUMERIC___X6_02___8": 149, "05___NUMERIC___X6_02___9": 150, "05___NUMERIC___X6_03___0": 151, "05___NUMERIC___X6_03___1": 152, "05___NUMERIC___X6_03___2": 153, "05___NUMERIC___X6_03___3": 154, "05___NUMERIC___X6_03___4": 155, "05___NUMERIC___X6_03___5": 156, "05___NUMERIC___X6_03___6": 157, "05___NUMERIC___X6_03___7": 158, "05___NUMERIC___X6_03___8": 159, "05___NUMERIC___X6_03___9": 160, "06___NUMERIC___X7_00___-": 161, "06___NUMERIC___X7_00___0": 162, "06___NUMERIC___X7_01___0": 163, "06___NUMERIC___X7_01___1": 164, "06___NUMERIC___X7_01___2": 165, "06___NUMERIC___X7_02___0": 166, "06___NUMERIC___X7_02___1": 167, "06___NUMERIC___X7_02___2": 168, "06___NUMERIC___X7_02___3": 169, "06___NUMERIC___X7_02___4": 170, "06___NUMERIC___X7_02___5": 171, "06___NUMERIC___X7_02___6": 172, "06___NUMERIC___X7_02___7": 173, "06___NUMERIC___X7_02___8": 174, "06___NUMERIC___X7_02___9": 175, "06___NUMERIC___X7_03___0": 176, "06___NUMERIC___X7_03___1": 177, "06___NUMERIC___X7_03___2": 178, "06___NUMERIC___X7_03___3": 179, "06___NUMERIC___X7_03___4": 180, "06___NUMERIC___X7_03___5": 181, "06___NUMERIC___X7_03___6": 182, "06___NUMERIC___X7_03___7": 183, "06___NUMERIC___X7_03___8": 184, "06___NUMERIC___X7_03___9": 185, "07___NUMERIC___X8_00___-": 186, "07___NUMERIC___X8_00___0": 187, "07___NUMERIC___X8_01___0": 188, "07___NUMERIC___X8_01___1": 189, "07___NUMERIC___X8_01___2": 190, "07___NUMERIC___X8_02___0": 191, "07___NUMERIC___X8_02___1": 192, "07___NUMERIC___X8_02___2": 193, "07___NUMERIC___X8_02___3": 194, "07___NUMERIC___X8_02___4": 195, "07___NUMERIC___X8_02___5": 196, "07___NUMERIC___X8_02___6": 197, "07___NUMERIC___X8_02___7": 198, "07___NUMERIC___X8_02___8": 199, "07___NUMERIC___X8_02___9": 200, "07___NUMERIC___X8_03___0": 201, "07___NUMERIC___X8_03___1": 202, "07___NUMERIC___X8_03___2": 203, "07___NUMERIC___X8_03___3": 204, "07___NUMERIC___X8_03___4": 205, "07___NUMERIC___X8_03___5": 206, "07___NUMERIC___X8_03___6": 207, "07___NUMERIC___X8_03___7": 208, "07___NUMERIC___X8_03___8": 209, "07___NUMERIC___X8_03___9": 210, "08___NUMERIC___X9_00___-": 211, "08___NUMERIC___X9_00___0": 212, "08___NUMERIC___X9_01___0": 213, "08___NUMERIC___X9_01___1": 214, "08___NUMERIC___X9_01___2": 215, "08___NUMERIC___X9_02___0": 216, "08___NUMERIC___X9_02___1": 217, "08___NUMERIC___X9_02___2": 218, "08___NUMERIC___X9_02___3": 219, "08___NUMERIC___X9_02___4": 220, "08___NUMERIC___X9_02___5": 221, "08___NUMERIC___X9_02___6": 222, "08___NUMERIC___X9_02___7": 223, "08___NUMERIC___X9_02___8": 224, "08___NUMERIC___X9_02___9": 225, "08___NUMERIC___X9_03___0": 226, "08___NUMERIC___X9_03___1": 227, "08___NUMERIC___X9_03___2": 228, "08___NUMERIC___X9_03___3": 229, "08___NUMERIC___X9_03___4": 230, "08___NUMERIC___X9_03___5": 231, "08___NUMERIC___X9_03___6": 232, "08___NUMERIC___X9_03___7": 233, "08___NUMERIC___X9_03___8": 234, "08___NUMERIC___X9_03___9": 235, "09___NUMERIC___X10_00___-": 236, "09___NUMERIC___X10_00___0": 237, "09___NUMERIC___X10_01___0": 238, "09___NUMERIC___X10_01___1": 239, "09___NUMERIC___X10_01___2": 240, "09___NUMERIC___X10_01___3": 241, "09___NUMERIC___X10_02___0": 242, "09___NUMERIC___X10_02___1": 243, "09___NUMERIC___X10_02___2": 244, "09___NUMERIC___X10_02___3": 245, "09___NUMERIC___X10_02___4": 246, "09___NUMERIC___X10_02___5": 247, "09___NUMERIC___X10_02___6": 248, "09___NUMERIC___X10_02___7": 249, "09___NUMERIC___X10_02___8": 250, "09___NUMERIC___X10_02___9": 251, "09___NUMERIC___X10_03___0": 252, "09___NUMERIC___X10_03___1": 253, "09___NUMERIC___X10_03___2": 254, "09___NUMERIC___X10_03___3": 255, "09___NUMERIC___X10_03___4": 256, "09___NUMERIC___X10_03___5": 257, "09___NUMERIC___X10_03___6": 258, "09___NUMERIC___X10_03___7": 259, "09___NUMERIC___X10_03___8": 260, "09___NUMERIC___X10_03___9": 261, "10___NUMERIC___X11_00___-": 262, "10___NUMERIC___X11_00___0": 263, "10___NUMERIC___X11_01___0": 264, "10___NUMERIC___X11_01___1": 265, "10___NUMERIC___X11_01___2": 266, "10___NUMERIC___X11_02___0": 267, "10___NUMERIC___X11_02___1": 268, "10___NUMERIC___X11_02___2": 269, "10___NUMERIC___X11_02___3": 270, "10___NUMERIC___X11_02___4": 271, "10___NUMERIC___X11_02___5": 272, "10___NUMERIC___X11_02___6": 273, "10___NUMERIC___X11_02___7": 274, "10___NUMERIC___X11_02___8": 275, "10___NUMERIC___X11_02___9": 276, "10___NUMERIC___X11_03___0": 277, "10___NUMERIC___X11_03___1": 278, "10___NUMERIC___X11_03___2": 279, "10___NUMERIC___X11_03___3": 280, "10___NUMERIC___X11_03___4": 281, "10___NUMERIC___X11_03___5": 282, "10___NUMERIC___X11_03___6": 283, "10___NUMERIC___X11_03___7": 284, "10___NUMERIC___X11_03___8": 285, "10___NUMERIC___X11_03___9": 286, "11___NUMERIC___X12_00___-": 287, "11___NUMERIC___X12_00___0": 288, "11___NUMERIC___X12_01___0": 289, "11___NUMERIC___X12_01___1": 290, "11___NUMERIC___X12_01___2": 291, "11___NUMERIC___X12_01___3": 292, "11___NUMERIC___X12_02___0": 293, "11___NUMERIC___X12_02___1": 294, "11___NUMERIC___X12_02___2": 295, "11___NUMERIC___X12_02___3": 296, "11___NUMERIC___X12_02___4": 297, "11___NUMERIC___X12_02___5": 298, "11___NUMERIC___X12_02___6": 299, "11___NUMERIC___X12_02___7": 300, "11___NUMERIC___X12_02___8": 301, "11___NUMERIC___X12_02___9": 302, "11___NUMERIC___X12_03___0": 303, "11___NUMERIC___X12_03___1": 304, "11___NUMERIC___X12_03___2": 305, "11___NUMERIC___X12_03___3": 306, "11___NUMERIC___X12_03___4": 307, "11___NUMERIC___X12_03___5": 308, "11___NUMERIC___X12_03___6": 309, "11___NUMERIC___X12_03___7": 310, "11___NUMERIC___X12_03___8": 311, "11___NUMERIC___X12_03___9": 312, "12___NUMERIC___X13_00___-": 313, "12___NUMERIC___X13_00___0": 314, "12___NUMERIC___X13_01___0": 315, "12___NUMERIC___X13_01___1": 316, "12___NUMERIC___X13_01___2": 317, "12___NUMERIC___X13_02___0": 318, "12___NUMERIC___X13_02___1": 319, "12___NUMERIC___X13_02___2": 320, "12___NUMERIC___X13_02___3": 321, "12___NUMERIC___X13_02___4": 322, "12___NUMERIC___X13_02___5": 323, "12___NUMERIC___X13_02___6": 324, "12___NUMERIC___X13_02___7": 325, "12___NUMERIC___X13_02___8": 326, "12___NUMERIC___X13_02___9": 327, "12___NUMERIC___X13_03___0": 328, "12___NUMERIC___X13_03___1": 329, "12___NUMERIC___X13_03___2": 330, "12___NUMERIC___X13_03___3": 331, "12___NUMERIC___X13_03___4": 332, "12___NUMERIC___X13_03___5": 333, "12___NUMERIC___X13_03___6": 334, "12___NUMERIC___X13_03___7": 335, "12___NUMERIC___X13_03___8": 336, "12___NUMERIC___X13_03___9": 337, "13___NUMERIC___X14_00___-": 338, "13___NUMERIC___X14_00___0": 339, "13___NUMERIC___X14_01___0": 340, "13___NUMERIC___X14_01___1": 341, "13___NUMERIC___X14_01___2": 342, "13___NUMERIC___X14_02___0": 343, "13___NUMERIC___X14_02___1": 344, "13___NUMERIC___X14_02___2": 345, "13___NUMERIC___X14_02___3": 346, "13___NUMERIC___X14_02___4": 347, "13___NUMERIC___X14_02___5": 348, "13___NUMERIC___X14_02___6": 349, "13___NUMERIC___X14_02___7": 350, "13___NUMERIC___X14_02___8": 351, "13___NUMERIC___X14_02___9": 352, "13___NUMERIC___X14_03___0": 353, "13___NUMERIC___X14_03___1": 354, "13___NUMERIC___X14_03___2": 355, "13___NUMERIC___X14_03___3": 356, "13___NUMERIC___X14_03___4": 357, "13___NUMERIC___X14_03___5": 358, "13___NUMERIC___X14_03___6": 359, "13___NUMERIC___X14_03___7": 360, "13___NUMERIC___X14_03___8": 361, "13___NUMERIC___X14_03___9": 362, "14___NUMERIC___X15_00___-": 363, "14___NUMERIC___X15_00___0": 364, "14___NUMERIC___X15_01___0": 365, "14___NUMERIC___X15_01___1": 366, "14___NUMERIC___X15_01___2": 367, "14___NUMERIC___X15_01___3": 368, "14___NUMERIC___X15_02___0": 369, "14___NUMERIC___X15_02___1": 370, "14___NUMERIC___X15_02___2": 371, "14___NUMERIC___X15_02___3": 372, "14___NUMERIC___X15_02___4": 373, "14___NUMERIC___X15_02___5": 374, "14___NUMERIC___X15_02___6": 375, "14___NUMERIC___X15_02___7": 376, "14___NUMERIC___X15_02___8": 377, "14___NUMERIC___X15_02___9": 378, "14___NUMERIC___X15_03___0": 379, "14___NUMERIC___X15_03___1": 380, "14___NUMERIC___X15_03___2": 381, "14___NUMERIC___X15_03___3": 382, "14___NUMERIC___X15_03___4": 383, "14___NUMERIC___X15_03___5": 384, "14___NUMERIC___X15_03___6": 385, "14___NUMERIC___X15_03___7": 386, "14___NUMERIC___X15_03___8": 387, "14___NUMERIC___X15_03___9": 388, "15___NUMERIC___X16_00___-": 389, "15___NUMERIC___X16_00___0": 390, "15___NUMERIC___X16_01___0": 391, "15___NUMERIC___X16_01___1": 392, "15___NUMERIC___X16_01___2": 393, "15___NUMERIC___X16_01___3": 394, "15___NUMERIC___X16_02___0": 395, "15___NUMERIC___X16_02___1": 396, "15___NUMERIC___X16_02___2": 397, "15___NUMERIC___X16_02___3": 398, "15___NUMERIC___X16_02___4": 399, "15___NUMERIC___X16_02___5": 400, "15___NUMERIC___X16_02___6": 401, "15___NUMERIC___X16_02___7": 402, "15___NUMERIC___X16_02___8": 403, "15___NUMERIC___X16_02___9": 404, "15___NUMERIC___X16_03___0": 405, "15___NUMERIC___X16_03___1": 406, "15___NUMERIC___X16_03___2": 407, "15___NUMERIC___X16_03___3": 408, "15___NUMERIC___X16_03___4": 409, "15___NUMERIC___X16_03___5": 410, "15___NUMERIC___X16_03___6": 411, "15___NUMERIC___X16_03___7": 412, "15___NUMERIC___X16_03___8": 413, "15___NUMERIC___X16_03___9": 414, "16___NUMERIC___y_00___0": 415, "16___NUMERIC___y_00___1": 416, "16___NUMERIC___y_00___2": 417, "16___NUMERIC___y_00___3": 418}, "column_token_ids": {"00___NUMERIC___X1_00": [11, 12], "00___NUMERIC___X1_01": [13, 14, 15], "00___NUMERIC___X1_02": [16, 17, 18, 19, 20, 21, 22, 23, 24, 25], "00___NUMERIC___X1_03": [26, 27, 28, 29, 30, 31, 32, 33, 34, 35], "01___NUMERIC___X2_00": [36, 37], "01___NUMERIC___X2_01": [38, 39, 40], "01___NUMERIC___X2_02": [41, 42, 43, 44, 45, 46, 47, 48, 49, 50], "01___NUMERIC___X2_03": [51, 52, 53, 54, 55, 56, 57, 58, 59, 60], "02___NUMERIC___X3_00": [61, 62], "02___NUMERIC___X3_01": [63, 64, 65], "02___NUMERIC___X3_02": [66, 67, 68, 69, 70, 71, 72, 73, 74, 75], "02___NUMERIC___X3_03": [76, 77, 78, 79, 80, 81, 82, 83, 84, 85], "03___NUMERIC___X4_00": [86, 87], "03___NUMERIC___X4_01": [88, 89, 90], "03___NUMERIC___X4_02": [91, 92, 93, 94, 95, 96, 97, 98, 99, 100], "03___NUMERIC___X4_03": [101, 102, 103, 104, 105, 106, 107, 108, 109, 110], "04___NUMERIC___X5_00": [111, 112], "04___NUMERIC___X5_01": [113, 114, 115], "04___NUMERIC___X5_02": [116, 117, 118, 119, 120, 121, 122, 123, 124, 125], "04___NUMERIC___X5_03": [126, 127, 128, 129, 130, 131, 132, 133, 134, 135], "05___NUMERIC___X6_00": [136, 137], "05___NUMERIC___X6_01": [138, 139, 140], "05___NUMERIC___X6_02": [141, 142, 143, 144, 145, 146, 147, 148, 149, 150], "05___NUMERIC___X6_03": [151, 152, 153, 154, 155, 156, 157, 158, 159, 160], "06___NUMERIC___X7_00": [161, 162], "06___NUMERIC___X7_01": [163, 164, 165], "06___NUMERIC___X7_02": [166, 167, 168, 169, 170, 171, 172, 173, 174, 175], "06___NUMERIC___X7_03": [176, 177, 178, 179, 180, 181, 182, 183, 184, 185], "07___NUMERIC___X8_00": [186, 187], "07___NUMERIC___X8_01": [188, 189, 190], "07___NUMERIC___X8_02": [191, 192, 193, 194, 195, 196, 197, 198, 199, 200], "07___NUMERIC___X8_03": [201, 202, 203, 204, 205, 206, 207, 208, 209, 210], "08___NUMERIC___X9_00": [211, 212], "08___NUMERIC___X9_01": [213, 214, 215], "08___NUMERIC___X9_02": [216, 217, 218, 219, 220, 221, 222, 223, 224, 225], "08___NUMERIC___X9_03": [226, 227, 228, 229, 230, 231, 232, 233, 234, 235], "09___NUMERIC___X10_00": [236, 237], "09___NUMERIC___X10_01": [238, 239, 240, 241], "09___NUMERIC___X10_02": [242, 243, 244, 245, 246, 247, 248, 249, 250, 251], "09___NUMERIC___X10_03": [252, 253, 254, 255, 256, 257, 258, 259, 260, 261], "10___NUMERIC___X11_00": [262, 263], "10___NUMERIC___X11_01": [264, 265, 266], "10___NUMERIC___X11_02": [267, 268, 269, 270, 271, 272, 273, 274, 275, 276], "10___NUMERIC___X11_03": [277, 278, 279, 280, 281, 282, 283, 284, 285, 286], "11___NUMERIC___X12_00": [287, 288], "11___NUMERIC___X12_01": [289, 290, 291, 292], "11___NUMERIC___X12_02": [293, 294, 295, 296, 297, 298, 299, 300, 301, 302], "11___NUMERIC___X12_03": [303, 304, 305, 306, 307, 308, 309, 310, 311, 312], "12___NUMERIC___X13_00": [313, 314], "12___NUMERIC___X13_01": [315, 316, 317], "12___NUMERIC___X13_02": [318, 319, 320, 321, 322, 323, 324, 325, 326, 327], "12___NUMERIC___X13_03": [328, 329, 330, 331, 332, 333, 334, 335, 336, 337], "13___NUMERIC___X14_00": [338, 339], "13___NUMERIC___X14_01": [340, 341, 342], "13___NUMERIC___X14_02": [343, 344, 345, 346, 347, 348, 349, 350, 351, 352], "13___NUMERIC___X14_03": [353, 354, 355, 356, 357, 358, 359, 360, 361, 362], "14___NUMERIC___X15_00": [363, 364], "14___NUMERIC___X15_01": [365, 366, 367, 368], "14___NUMERIC___X15_02": [369, 370, 371, 372, 373, 374, 375, 376, 377, 378], "14___NUMERIC___X15_03": [379, 380, 381, 382, 383, 384, 385, 386, 387, 388], "15___NUMERIC___X16_00": [389, 390], "15___NUMERIC___X16_01": [391, 392, 393, 394], "15___NUMERIC___X16_02": [395, 396, 397, 398, 399, 400, 401, 402, 403, 404], "15___NUMERIC___X16_03": [405, 406, 407, 408, 409, 410, 411, 412, 413, 414], "16___NUMERIC___y_00": [415, 416, 417, 418]}}, "tabular_max_length": 67, "relational_max_length": null, "tabular_col_size": 6400, "relational_col_size": null, "col_transform_data": {"X1": {"max_len": 10, "numeric_precision": 4, "mx_sig": -1, "zfill": 4, "numeric_nparts": 1}, "X2": {"max_len": 10, "numeric_precision": 4, "mx_sig": -1, "zfill": 4, "numeric_nparts": 1}, "X3": {"max_len": 10, "numeric_precision": 4, "mx_sig": -1, "zfill": 4, "numeric_nparts": 1}, "X4": {"max_len": 10, "numeric_precision": 4, "mx_sig": -1, "zfill": 4, "numeric_nparts": 1}, "X5": {"max_len": 10, "numeric_precision": 4, "mx_sig": -1, "zfill": 4, "numeric_nparts": 1}, "X6": {"max_len": 10, "numeric_precision": 4, "mx_sig": -1, "zfill": 4, "numeric_nparts": 1}, "X7": {"max_len": 10, "numeric_precision": 4, "mx_sig": -1, "zfill": 4, "numeric_nparts": 1}, "X8": {"max_len": 10, "numeric_precision": 4, "mx_sig": -1, "zfill": 4, "numeric_nparts": 1}, "X9": {"max_len": 10, "numeric_precision": 4, "mx_sig": -1, "zfill": 4, "numeric_nparts": 1}, "X10": {"max_len": 10, "numeric_precision": 4, "mx_sig": -1, "zfill": 4, "numeric_nparts": 1}, "X11": {"max_len": 10, "numeric_precision": 4, "mx_sig": -1, "zfill": 4, "numeric_nparts": 1}, "X12": {"max_len": 10, "numeric_precision": 4, "mx_sig": -1, "zfill": 4, "numeric_nparts": 1}, "X13": {"max_len": 10, "numeric_precision": 4, "mx_sig": -1, "zfill": 4, "numeric_nparts": 1}, "X14": {"max_len": 10, "numeric_precision": 4, "mx_sig": -1, "zfill": 4, "numeric_nparts": 1}, "X15": {"max_len": 10, "numeric_precision": 4, "mx_sig": -1, "zfill": 4, "numeric_nparts": 1}, "X16": {"max_len": 10, "numeric_precision": 4, "mx_sig": -1, "zfill": 4, "numeric_nparts": 1}, "y": {"max_len": 10, "numeric_precision": 4, "mx_sig": -1, "zfill": 1, "numeric_nparts": 1}}, "in_col_transform_data": null, "col_idx_ids": {"0": [11, 12], "1": [13, 14, 15], "2": [16, 17, 18, 19, 20, 21, 22, 23, 24, 25], "3": [26, 27, 28, 29, 30, 31, 32, 33, 34, 35], "4": [36, 37], "5": [38, 39, 40], "6": [41, 42, 43, 44, 45, 46, 47, 48, 49, 50], "7": [51, 52, 53, 54, 55, 56, 57, 58, 59, 60], "8": [61, 62], "9": [63, 64, 65], "10": [66, 67, 68, 69, 70, 71, 72, 73, 74, 75], "11": [76, 77, 78, 79, 80, 81, 82, 83, 84, 85], "12": [86, 87], "13": [88, 89, 90], "14": [91, 92, 93, 94, 95, 96, 97, 98, 99, 100], "15": [101, 102, 103, 104, 105, 106, 107, 108, 109, 110], "16": [111, 112], "17": [113, 114, 115], "18": [116, 117, 118, 119, 120, 121, 122, 123, 124, 125], "19": [126, 127, 128, 129, 130, 131, 132, 133, 134, 135], "20": [136, 137], "21": [138, 139, 140], "22": [141, 142, 143, 144, 145, 146, 147, 148, 149, 150], "23": [151, 152, 153, 154, 155, 156, 157, 158, 159, 160], "24": [161, 162], "25": [163, 164, 165], "26": [166, 167, 168, 169, 170, 171, 172, 173, 174, 175], "27": [176, 177, 178, 179, 180, 181, 182, 183, 184, 185], "28": [186, 187], "29": [188, 189, 190], "30": [191, 192, 193, 194, 195, 196, 197, 198, 199, 200], "31": [201, 202, 203, 204, 205, 206, 207, 208, 209, 210], "32": [211, 212], "33": [213, 214, 215], "34": [216, 217, 218, 219, 220, 221, 222, 223, 224, 225], "35": [226, 227, 228, 229, 230, 231, 232, 233, 234, 235], "36": [236, 237], "37": [238, 239, 240, 241], "38": [242, 243, 244, 245, 246, 247, 248, 249, 250, 251], "39": [252, 253, 254, 255, 256, 257, 258, 259, 260, 261], "40": [262, 263], "41": [264, 265, 266], "42": [267, 268, 269, 270, 271, 272, 273, 274, 275, 276], "43": [277, 278, 279, 280, 281, 282, 283, 284, 285, 286], "44": [287, 288], "45": [289, 290, 291, 292], "46": [293, 294, 295, 296, 297, 298, 299, 300, 301, 302], "47": [303, 304, 305, 306, 307, 308, 309, 310, 311, 312], "48": [313, 314], "49": [315, 316, 317], "50": [318, 319, 320, 321, 322, 323, 324, 325, 326, 327], "51": [328, 329, 330, 331, 332, 333, 334, 335, 336, 337], "52": [338, 339], "53": [340, 341, 342], "54": [343, 344, 345, 346, 347, 348, 349, 350, 351, 352], "55": [353, 354, 355, 356, 357, 358, 359, 360, 361, 362], "56": [363, 364], "57": [365, 366, 367, 368], "58": [369, 370, 371, 372, 373, 374, 375, 376, 377, 378], "59": [379, 380, 381, 382, 383, 384, 385, 386, 387, 388], "60": [389, 390], "61": [391, 392, 393, 394], "62": [395, 396, 397, 398, 399, 400, 401, 402, 403, 404], "63": [405, 406, 407, 408, 409, 410, 411, 412, 413, 414], "64": [415, 416, 417, 418]}, "random_state": 1029, "numeric_nparts": 1, "numeric_precision": 4, "numeric_max_len": 10, "experiment_id": "id000017774195887883571200", "trainer_state": null, "target_col": null, "realtabformer_version": "0.2.4"} \ No newline at end of file diff --git a/timecost/n6/realtabformer/rtf-n6-20260429_070345/models_100epochs/id000017774195887883571200/rtf_model.pt b/timecost/n6/realtabformer/rtf-n6-20260429_070345/models_100epochs/id000017774195887883571200/rtf_model.pt new file mode 100644 index 0000000000000000000000000000000000000000..b4ab89fc9d3584c2ec04e77610188145e07f2d52 --- /dev/null +++ b/timecost/n6/realtabformer/rtf-n6-20260429_070345/models_100epochs/id000017774195887883571200/rtf_model.pt @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:0b0a055a0823088622afb92023408504a042e4846e64f459f0c630ca6e66f86e +size 174577123 diff --git a/timecost/n6/realtabformer/rtf-n6-20260429_070345/public_gate/normalized_schema_snapshot.json b/timecost/n6/realtabformer/rtf-n6-20260429_070345/public_gate/normalized_schema_snapshot.json new file mode 100644 index 0000000000000000000000000000000000000000..f37e46415bf96a79860f8cd9cdbfb764f9fbd0cb --- /dev/null +++ b/timecost/n6/realtabformer/rtf-n6-20260429_070345/public_gate/normalized_schema_snapshot.json @@ -0,0 +1,363 @@ +{ + "dataset_id": "n6", + "target_column": "y", + "task_type": "classification", + "columns": [ + { + "name": "X1", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 313, + "unique_ratio": 0.048906, + "example_values": [ + "2", + "6", + "-2", + "-15", + "3" + ] + } + }, + { + "name": "X2", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 328, + "unique_ratio": 0.05125, + "example_values": [ + "-3", + "1", + "16", + "-4", + "-12" + ] + } + }, + { + "name": "X3", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 316, + "unique_ratio": 0.049375, + "example_values": [ + "-7", + "-6", + "3", + "-22", + "13" + ] + } + }, + { + "name": "X4", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 323, + "unique_ratio": 0.050469, + "example_values": [ + "-6", + "-7", + "5", + "-5", + "-37" + ] + } + }, + { + "name": "X5", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 325, + "unique_ratio": 0.050781, + "example_values": [ + "-9", + "2", + "-12", + "-8", + "-63" + ] + } + }, + { + "name": "X6", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 325, + "unique_ratio": 0.050781, + "example_values": [ + "-6", + "-5", + "11", + "0", + "-86" + ] + } + }, + { + "name": "X7", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 332, + "unique_ratio": 0.051875, + "example_values": [ + "-1", + "-2", + "5", + "-4", + "-82" + ] + } + }, + { + "name": "X8", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 330, + "unique_ratio": 0.051562, + "example_values": [ + "3", + "-3", + "9", + "-9", + "-51" + ] + } + }, + { + "name": "X9", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 333, + "unique_ratio": 0.052031, + "example_values": [ + "1", + "19", + "0", + "-1", + "-30" + ] + } + }, + { + "name": "X10", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 334, + "unique_ratio": 0.052187, + "example_values": [ + "4", + "10", + "9", + "3", + "-13" + ] + } + }, + { + "name": "X11", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 328, + "unique_ratio": 0.05125, + "example_values": [ + "-4", + "-3", + "-1", + "-7", + "-20" + ] + } + }, + { + "name": "X12", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 324, + "unique_ratio": 0.050625, + "example_values": [ + "-5", + "-11", + "0", + "4", + "-29" + ] + } + }, + { + "name": "X13", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 332, + "unique_ratio": 0.051875, + "example_values": [ + "4", + "-6", + "6", + "9", + "-38" + ] + } + }, + { + "name": "X14", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 318, + "unique_ratio": 0.049688, + "example_values": [ + "1", + "30", + "11", + "-5", + "-29" + ] + } + }, + { + "name": "X15", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 324, + "unique_ratio": 0.050625, + "example_values": [ + "-8", + "4", + "-9", + "-6", + "-15" + ] + } + }, + { + "name": "X16", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 325, + "unique_ratio": 0.050781, + "example_values": [ + "-1", + "-13", + "0", + "1", + "-23" + ] + } + }, + { + "name": "y", + "role": "target", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 4, + "unique_ratio": 0.000625, + "example_values": [ + "2", + "1", + "0", + "3" + ] + } + } + ] +} \ No newline at end of file diff --git a/timecost/n6/realtabformer/rtf-n6-20260429_070345/public_gate/public_gate_report.json b/timecost/n6/realtabformer/rtf-n6-20260429_070345/public_gate/public_gate_report.json new file mode 100644 index 0000000000000000000000000000000000000000..a228c993845322a7356eef31ebce756cb39378ed --- /dev/null +++ b/timecost/n6/realtabformer/rtf-n6-20260429_070345/public_gate/public_gate_report.json @@ -0,0 +1,37 @@ +{ + "dataset_id": "n6", + "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": "y", + "task_type": "classification", + "input_splits": { + "train": "/data/jialinzhang/SynthesizePipeline-server/DatasetNew/n6/n6-train.csv", + "val": "/data/jialinzhang/SynthesizePipeline-server/DatasetNew/n6/n6-val.csv", + "test": "/data/jialinzhang/SynthesizePipeline-server/DatasetNew/n6/n6-test.csv" + } +} \ No newline at end of file diff --git a/timecost/n6/realtabformer/rtf-n6-20260429_070345/public_gate/staged_input_manifest.json b/timecost/n6/realtabformer/rtf-n6-20260429_070345/public_gate/staged_input_manifest.json new file mode 100644 index 0000000000000000000000000000000000000000..5ed3a4f2a18461229eac2ab3d3ec2bc39d49268a --- /dev/null +++ b/timecost/n6/realtabformer/rtf-n6-20260429_070345/public_gate/staged_input_manifest.json @@ -0,0 +1,368 @@ +{ + "dataset_id": "n6", + "target_column": "y", + "task_type": "classification", + "train_csv": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/n6/realtabformer/rtf-n6-20260429_070345/staged/public/train.csv", + "val_csv": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/n6/realtabformer/rtf-n6-20260429_070345/staged/public/val.csv", + "test_csv": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/n6/realtabformer/rtf-n6-20260429_070345/staged/public/test.csv", + "features_json": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/n6/realtabformer/rtf-n6-20260429_070345/staged/public/staged_features.json", + "public_gate_report": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/n6/realtabformer/rtf-n6-20260429_070345/public_gate/public_gate_report.json", + "column_schema": [ + { + "name": "X1", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 313, + "unique_ratio": 0.048906, + "example_values": [ + "2", + "6", + "-2", + "-15", + "3" + ] + } + }, + { + "name": "X2", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 328, + "unique_ratio": 0.05125, + "example_values": [ + "-3", + "1", + "16", + "-4", + "-12" + ] + } + }, + { + "name": "X3", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 316, + "unique_ratio": 0.049375, + "example_values": [ + "-7", + "-6", + "3", + "-22", + "13" + ] + } + }, + { + "name": "X4", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 323, + "unique_ratio": 0.050469, + "example_values": [ + "-6", + "-7", + "5", + "-5", + "-37" + ] + } + }, + { + "name": "X5", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 325, + "unique_ratio": 0.050781, + "example_values": [ + "-9", + "2", + "-12", + "-8", + "-63" + ] + } + }, + { + "name": "X6", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 325, + "unique_ratio": 0.050781, + "example_values": [ + "-6", + "-5", + "11", + "0", + "-86" + ] + } + }, + { + "name": "X7", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 332, + "unique_ratio": 0.051875, + "example_values": [ + "-1", + "-2", + "5", + "-4", + "-82" + ] + } + }, + { + "name": "X8", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 330, + "unique_ratio": 0.051562, + "example_values": [ + "3", + "-3", + "9", + "-9", + "-51" + ] + } + }, + { + "name": "X9", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 333, + "unique_ratio": 0.052031, + "example_values": [ + "1", + "19", + "0", + "-1", + "-30" + ] + } + }, + { + "name": "X10", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 334, + "unique_ratio": 0.052187, + "example_values": [ + "4", + "10", + "9", + "3", + "-13" + ] + } + }, + { + "name": "X11", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 328, + "unique_ratio": 0.05125, + "example_values": [ + "-4", + "-3", + "-1", + "-7", + "-20" + ] + } + }, + { + "name": "X12", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 324, + "unique_ratio": 0.050625, + "example_values": [ + "-5", + "-11", + "0", + "4", + "-29" + ] + } + }, + { + "name": "X13", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 332, + "unique_ratio": 0.051875, + "example_values": [ + "4", + "-6", + "6", + "9", + "-38" + ] + } + }, + { + "name": "X14", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 318, + "unique_ratio": 0.049688, + "example_values": [ + "1", + "30", + "11", + "-5", + "-29" + ] + } + }, + { + "name": "X15", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 324, + "unique_ratio": 0.050625, + "example_values": [ + "-8", + "4", + "-9", + "-6", + "-15" + ] + } + }, + { + "name": "X16", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 325, + "unique_ratio": 0.050781, + "example_values": [ + "-1", + "-13", + "0", + "1", + "-23" + ] + } + }, + { + "name": "y", + "role": "target", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 4, + "unique_ratio": 0.000625, + "example_values": [ + "2", + "1", + "0", + "3" + ] + } + } + ] +} \ No newline at end of file diff --git a/timecost/n6/realtabformer/rtf-n6-20260429_070345/realtabformer_features.json b/timecost/n6/realtabformer/rtf-n6-20260429_070345/realtabformer_features.json new file mode 100644 index 0000000000000000000000000000000000000000..13d0b8c66a07bb8f5aa06667e153a85656dae7d8 --- /dev/null +++ b/timecost/n6/realtabformer/rtf-n6-20260429_070345/realtabformer_features.json @@ -0,0 +1,87 @@ +[ + { + "feature_name": "X1", + "data_type": "continuous", + "is_target": false + }, + { + "feature_name": "X2", + "data_type": "continuous", + "is_target": false + }, + { + "feature_name": "X3", + "data_type": "continuous", + "is_target": false + }, + { + "feature_name": "X4", + "data_type": "continuous", + "is_target": false + }, + { + "feature_name": "X5", + "data_type": "continuous", + "is_target": false + }, + { + "feature_name": "X6", + "data_type": "continuous", + "is_target": false + }, + { + "feature_name": "X7", + "data_type": "continuous", + "is_target": false + }, + { + "feature_name": "X8", + "data_type": "continuous", + "is_target": false + }, + { + "feature_name": "X9", + "data_type": "continuous", + "is_target": false + }, + { + "feature_name": "X10", + "data_type": "continuous", + "is_target": false + }, + { + "feature_name": "X11", + "data_type": "continuous", + "is_target": false + }, + { + "feature_name": "X12", + "data_type": "continuous", + "is_target": false + }, + { + "feature_name": "X13", + "data_type": "continuous", + "is_target": false + }, + { + "feature_name": "X14", + "data_type": "continuous", + "is_target": false + }, + { + "feature_name": "X15", + "data_type": "continuous", + "is_target": false + }, + { + "feature_name": "X16", + "data_type": "continuous", + "is_target": false + }, + { + "feature_name": "y", + "data_type": "continuous", + "is_target": true + } +] \ No newline at end of file diff --git a/timecost/n6/realtabformer/rtf-n6-20260429_070345/rtf-n6-6400-20260429_073951.csv b/timecost/n6/realtabformer/rtf-n6-20260429_070345/rtf-n6-6400-20260429_073951.csv new file mode 100644 index 0000000000000000000000000000000000000000..e72ed3de225ec197dca84b2d65fe53d5f39d128e --- /dev/null +++ b/timecost/n6/realtabformer/rtf-n6-20260429_070345/rtf-n6-6400-20260429_073951.csv @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:419cbbe7916795804a16bdf96b6b208fa1a69a39ac48f0573475288396106cb9 +size 310326 diff --git a/timecost/n6/realtabformer/rtf-n6-20260429_070345/rtf_checkpoints/checkpoint-19500/config.json b/timecost/n6/realtabformer/rtf-n6-20260429_070345/rtf_checkpoints/checkpoint-19500/config.json new file mode 100644 index 0000000000000000000000000000000000000000..ec3451e1a76244eef3e5bbfa6dfc2b2176f6aef9 --- /dev/null +++ b/timecost/n6/realtabformer/rtf-n6-20260429_070345/rtf_checkpoints/checkpoint-19500/config.json @@ -0,0 +1,34 @@ +{ + "activation_function": "gelu_new", + "add_cross_attention": false, + "architectures": [ + "GPT2LMHeadModel" + ], + "attn_pdrop": 0.1, + "bos_token_id": 5, + "dtype": "float32", + "embd_pdrop": 0.1, + "eos_token_id": 6, + "initializer_range": 0.02, + "layer_norm_epsilon": 1e-05, + "model_type": "gpt2", + "n_embd": 768, + "n_head": 12, + "n_inner": null, + "n_layer": 6, + "n_positions": 1024, + "pad_token_id": null, + "reorder_and_upcast_attn": false, + "resid_pdrop": 0.1, + "scale_attn_by_inverse_layer_idx": false, + "scale_attn_weights": true, + "summary_activation": null, + "summary_first_dropout": 0.1, + "summary_proj_to_labels": true, + "summary_type": "cls_index", + "summary_use_proj": true, + "tie_word_embeddings": true, + "transformers_version": "5.5.3", + "use_cache": false, + "vocab_size": 419 +} diff --git a/timecost/n6/realtabformer/rtf-n6-20260429_070345/rtf_checkpoints/checkpoint-19500/generation_config.json b/timecost/n6/realtabformer/rtf-n6-20260429_070345/rtf_checkpoints/checkpoint-19500/generation_config.json new file mode 100644 index 0000000000000000000000000000000000000000..ffe89567780e75b5c22eade9be971483b9618f39 --- /dev/null +++ b/timecost/n6/realtabformer/rtf-n6-20260429_070345/rtf_checkpoints/checkpoint-19500/generation_config.json @@ -0,0 +1,9 @@ +{ + "_from_model_config": true, + "bos_token_id": 5, + "eos_token_id": 6, + "output_attentions": false, + "output_hidden_states": false, + "transformers_version": "5.5.3", + "use_cache": true +} diff --git a/timecost/n6/realtabformer/rtf-n6-20260429_070345/rtf_checkpoints/checkpoint-19500/model.safetensors b/timecost/n6/realtabformer/rtf-n6-20260429_070345/rtf_checkpoints/checkpoint-19500/model.safetensors new file mode 100644 index 0000000000000000000000000000000000000000..7022114f67eddc8d97f4a30f8eb2b9d95cd77795 --- /dev/null +++ b/timecost/n6/realtabformer/rtf-n6-20260429_070345/rtf_checkpoints/checkpoint-19500/model.safetensors @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:48b2dc84c27903e6187c9779d116415fa04fdaad410c204430c95f296aa59e97 +size 174555592 diff --git a/timecost/n6/realtabformer/rtf-n6-20260429_070345/rtf_checkpoints/checkpoint-19500/optimizer.pt b/timecost/n6/realtabformer/rtf-n6-20260429_070345/rtf_checkpoints/checkpoint-19500/optimizer.pt new file mode 100644 index 0000000000000000000000000000000000000000..7c0a0a9814a1c0257e14bdeba992ce5013c3ae66 --- /dev/null +++ b/timecost/n6/realtabformer/rtf-n6-20260429_070345/rtf_checkpoints/checkpoint-19500/optimizer.pt @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:8bd08e350dd5837f4eeefb96ef3f82a72fd7cd00211d915819288d9299f3d4d2 +size 349160267 diff --git a/timecost/n6/realtabformer/rtf-n6-20260429_070345/rtf_checkpoints/checkpoint-19500/rng_state.pth b/timecost/n6/realtabformer/rtf-n6-20260429_070345/rtf_checkpoints/checkpoint-19500/rng_state.pth new file mode 100644 index 0000000000000000000000000000000000000000..229923cd430cfccd2b7c69f00dd1c613cec0a46b --- /dev/null +++ b/timecost/n6/realtabformer/rtf-n6-20260429_070345/rtf_checkpoints/checkpoint-19500/rng_state.pth @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:c3bfe272c5465a36bfa3c41f55081e0851282969e2c9907e4874f77a626f992e +size 14645 diff --git a/timecost/n6/realtabformer/rtf-n6-20260429_070345/rtf_checkpoints/checkpoint-19500/scaler.pt b/timecost/n6/realtabformer/rtf-n6-20260429_070345/rtf_checkpoints/checkpoint-19500/scaler.pt new file mode 100644 index 0000000000000000000000000000000000000000..664c2d71a3f5ada1c67ff9714db3e86615fefb72 --- /dev/null +++ b/timecost/n6/realtabformer/rtf-n6-20260429_070345/rtf_checkpoints/checkpoint-19500/scaler.pt @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:aa9c609616b77a22240cd4f4cab17432f31920de8e515bcbac353a8f35d98664 +size 1383 diff --git a/timecost/n6/realtabformer/rtf-n6-20260429_070345/rtf_checkpoints/checkpoint-19500/scheduler.pt b/timecost/n6/realtabformer/rtf-n6-20260429_070345/rtf_checkpoints/checkpoint-19500/scheduler.pt new file mode 100644 index 0000000000000000000000000000000000000000..605599d636e29d45bc42e1fc62c41e1a095db3db --- /dev/null +++ b/timecost/n6/realtabformer/rtf-n6-20260429_070345/rtf_checkpoints/checkpoint-19500/scheduler.pt @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:a7dae84749149153565162bbd73b70e250a5d3b0b2c07b5a74f7121237ba3432 +size 1465 diff --git a/timecost/n6/realtabformer/rtf-n6-20260429_070345/rtf_checkpoints/checkpoint-19500/trainer_state.json b/timecost/n6/realtabformer/rtf-n6-20260429_070345/rtf_checkpoints/checkpoint-19500/trainer_state.json new file mode 100644 index 0000000000000000000000000000000000000000..1654fb552ebb49399d61f4188a17dc665d1b18d5 --- /dev/null +++ b/timecost/n6/realtabformer/rtf-n6-20260429_070345/rtf_checkpoints/checkpoint-19500/trainer_state.json @@ -0,0 +1,1399 @@ +{ + "best_global_step": null, + "best_metric": null, + "best_model_checkpoint": null, + "epoch": 97.5, + "eval_steps": 100, + "global_step": 19500, + "is_hyper_param_search": false, + "is_local_process_zero": true, + "is_world_process_zero": true, + "log_history": [ + { + "epoch": 0.5, + "grad_norm": 0.23846545815467834, + "learning_rate": 4.97525e-05, + "loss": 1.9802227783203126, + "step": 100 + }, + { + "epoch": 1.0, + "grad_norm": 0.20555852353572845, + "learning_rate": 4.95025e-05, + "loss": 1.1221817779541015, + "step": 200 + }, + { + "epoch": 1.5, + "grad_norm": 0.21700991690158844, + "learning_rate": 4.92525e-05, + "loss": 1.0643415832519532, + "step": 300 + }, + { + "epoch": 2.0, + "grad_norm": 0.2044236809015274, + "learning_rate": 4.9002500000000004e-05, + "loss": 1.0245947265625, + "step": 400 + }, + { + "epoch": 2.5, + "grad_norm": 0.18077734112739563, + "learning_rate": 4.87525e-05, + "loss": 1.0032696533203125, + "step": 500 + }, + { + "epoch": 3.0, + "grad_norm": 0.19198282063007355, + "learning_rate": 4.85025e-05, + "loss": 1.0093541717529297, + "step": 600 + }, + { + "epoch": 3.5, + "grad_norm": 0.1984235793352127, + "learning_rate": 4.82525e-05, + "loss": 0.9847814178466797, + "step": 700 + }, + { + "epoch": 4.0, + "grad_norm": 0.17152079939842224, + "learning_rate": 4.80025e-05, + "loss": 0.982783203125, + "step": 800 + }, + { + "epoch": 4.5, + "grad_norm": 0.1930670440196991, + "learning_rate": 4.77525e-05, + "loss": 0.9716933441162109, + "step": 900 + }, + { + "epoch": 5.0, + "grad_norm": 0.19108322262763977, + "learning_rate": 4.75025e-05, + "loss": 0.9630477142333984, + "step": 1000 + }, + { + "epoch": 5.5, + "grad_norm": 0.1854381561279297, + "learning_rate": 4.72525e-05, + "loss": 0.9538239288330078, + "step": 1100 + }, + { + "epoch": 6.0, + "grad_norm": 0.17531616985797882, + "learning_rate": 4.70025e-05, + "loss": 0.95813720703125, + "step": 1200 + }, + { + "epoch": 6.5, + "grad_norm": 0.1815650910139084, + "learning_rate": 4.6752500000000003e-05, + "loss": 0.946460952758789, + "step": 1300 + }, + { + "epoch": 7.0, + "grad_norm": 0.19417639076709747, + "learning_rate": 4.6502500000000004e-05, + "loss": 0.9453800201416016, + "step": 1400 + }, + { + "epoch": 7.5, + "grad_norm": 0.1870127171278, + "learning_rate": 4.6252500000000005e-05, + "loss": 0.937877426147461, + "step": 1500 + }, + { + "epoch": 8.0, + "grad_norm": 0.1704702377319336, + "learning_rate": 4.6002500000000006e-05, + "loss": 0.9351255035400391, + "step": 1600 + }, + { + "epoch": 8.5, + "grad_norm": 0.18080289661884308, + "learning_rate": 4.5752500000000006e-05, + "loss": 0.9263742065429688, + "step": 1700 + }, + { + "epoch": 9.0, + "grad_norm": 0.18863996863365173, + "learning_rate": 4.55025e-05, + "loss": 0.9295844268798829, + "step": 1800 + }, + { + "epoch": 9.5, + "grad_norm": 0.19748634099960327, + "learning_rate": 4.52525e-05, + "loss": 0.9196556091308594, + "step": 1900 + }, + { + "epoch": 10.0, + "grad_norm": 0.20166783034801483, + "learning_rate": 4.50025e-05, + "loss": 0.9205670166015625, + "step": 2000 + }, + { + "epoch": 10.5, + "grad_norm": 0.19421179592609406, + "learning_rate": 4.47525e-05, + "loss": 0.9092935943603515, + "step": 2100 + }, + { + "epoch": 11.0, + "grad_norm": 0.17364448308944702, + "learning_rate": 4.45025e-05, + "loss": 0.9160775756835937, + "step": 2200 + }, + { + "epoch": 11.5, + "grad_norm": 0.1992802619934082, + "learning_rate": 4.4252500000000004e-05, + "loss": 0.9015705108642578, + "step": 2300 + }, + { + "epoch": 12.0, + "grad_norm": 0.20152443647384644, + "learning_rate": 4.4002500000000004e-05, + "loss": 0.9061229705810547, + "step": 2400 + }, + { + "epoch": 12.5, + "grad_norm": 0.2132837325334549, + "learning_rate": 4.3752500000000005e-05, + "loss": 0.8934657287597656, + "step": 2500 + }, + { + "epoch": 13.0, + "grad_norm": 0.19080808758735657, + "learning_rate": 4.35025e-05, + "loss": 0.899046401977539, + "step": 2600 + }, + { + "epoch": 13.5, + "grad_norm": 0.189740389585495, + "learning_rate": 4.32525e-05, + "loss": 0.8842880249023437, + "step": 2700 + }, + { + "epoch": 14.0, + "grad_norm": 0.20881056785583496, + "learning_rate": 4.30025e-05, + "loss": 0.8902586364746093, + "step": 2800 + }, + { + "epoch": 14.5, + "grad_norm": 0.20233558118343353, + "learning_rate": 4.27525e-05, + "loss": 0.8781875610351563, + "step": 2900 + }, + { + "epoch": 15.0, + "grad_norm": 0.20733879506587982, + "learning_rate": 4.25025e-05, + "loss": 0.8796215057373047, + "step": 3000 + }, + { + "epoch": 15.5, + "grad_norm": 0.20945705473423004, + "learning_rate": 4.22525e-05, + "loss": 0.8660121154785156, + "step": 3100 + }, + { + "epoch": 16.0, + "grad_norm": 0.2075275033712387, + "learning_rate": 4.20025e-05, + "loss": 0.872025146484375, + "step": 3200 + }, + { + "epoch": 16.5, + "grad_norm": 0.20175659656524658, + "learning_rate": 4.17525e-05, + "loss": 0.8569779968261719, + "step": 3300 + }, + { + "epoch": 17.0, + "grad_norm": 0.20709975063800812, + "learning_rate": 4.15025e-05, + "loss": 0.8622282409667968, + "step": 3400 + }, + { + "epoch": 17.5, + "grad_norm": 0.22440586984157562, + "learning_rate": 4.12525e-05, + "loss": 0.844241943359375, + "step": 3500 + }, + { + "epoch": 18.0, + "grad_norm": 0.2280527651309967, + "learning_rate": 4.10025e-05, + "loss": 0.8529148864746093, + "step": 3600 + }, + { + "epoch": 18.5, + "grad_norm": 0.22750917077064514, + "learning_rate": 4.075250000000001e-05, + "loss": 0.8350860595703125, + "step": 3700 + }, + { + "epoch": 19.0, + "grad_norm": 0.23036035895347595, + "learning_rate": 4.050250000000001e-05, + "loss": 0.8406881713867187, + "step": 3800 + }, + { + "epoch": 19.5, + "grad_norm": 0.24683690071105957, + "learning_rate": 4.02525e-05, + "loss": 0.8201627349853515, + "step": 3900 + }, + { + "epoch": 20.0, + "grad_norm": 0.22586171329021454, + "learning_rate": 4.00025e-05, + "loss": 0.8348744201660157, + "step": 4000 + }, + { + "epoch": 20.5, + "grad_norm": 0.25476565957069397, + "learning_rate": 3.97525e-05, + "loss": 0.8094847869873046, + "step": 4100 + }, + { + "epoch": 21.0, + "grad_norm": 0.26058006286621094, + "learning_rate": 3.95025e-05, + "loss": 0.821390380859375, + "step": 4200 + }, + { + "epoch": 21.5, + "grad_norm": 0.26972848176956177, + "learning_rate": 3.9252500000000004e-05, + "loss": 0.795047607421875, + "step": 4300 + }, + { + "epoch": 22.0, + "grad_norm": 0.24889031052589417, + "learning_rate": 3.9002500000000005e-05, + "loss": 0.8084414672851562, + "step": 4400 + }, + { + "epoch": 22.5, + "grad_norm": 0.2630121111869812, + "learning_rate": 3.8752500000000005e-05, + "loss": 0.7835968017578125, + "step": 4500 + }, + { + "epoch": 23.0, + "grad_norm": 0.264941543340683, + "learning_rate": 3.85025e-05, + "loss": 0.7941561889648437, + "step": 4600 + }, + { + "epoch": 23.5, + "grad_norm": 0.27832189202308655, + "learning_rate": 3.82525e-05, + "loss": 0.7683060455322266, + "step": 4700 + }, + { + "epoch": 24.0, + "grad_norm": 0.281009316444397, + "learning_rate": 3.80025e-05, + "loss": 0.7814789581298828, + "step": 4800 + }, + { + "epoch": 24.5, + "grad_norm": 0.2838248312473297, + "learning_rate": 3.77525e-05, + "loss": 0.7542767333984375, + "step": 4900 + }, + { + "epoch": 25.0, + "grad_norm": 0.29682639241218567, + "learning_rate": 3.75025e-05, + "loss": 0.7639364624023437, + "step": 5000 + }, + { + "epoch": 25.5, + "grad_norm": 0.2911108732223511, + "learning_rate": 3.72525e-05, + "loss": 0.7374829864501953, + "step": 5100 + }, + { + "epoch": 26.0, + "grad_norm": 0.3080083727836609, + "learning_rate": 3.7002500000000004e-05, + "loss": 0.7494142150878906, + "step": 5200 + }, + { + "epoch": 26.5, + "grad_norm": 0.31476718187332153, + "learning_rate": 3.67525e-05, + "loss": 0.7209281158447266, + "step": 5300 + }, + { + "epoch": 27.0, + "grad_norm": 0.3073391914367676, + "learning_rate": 3.65025e-05, + "loss": 0.7341756439208984, + "step": 5400 + }, + { + "epoch": 27.5, + "grad_norm": 0.3170262575149536, + "learning_rate": 3.62525e-05, + "loss": 0.7062877655029297, + "step": 5500 + }, + { + "epoch": 28.0, + "grad_norm": 0.3416720926761627, + "learning_rate": 3.60025e-05, + "loss": 0.7143956756591797, + "step": 5600 + }, + { + "epoch": 28.5, + "grad_norm": 0.32180145382881165, + "learning_rate": 3.57525e-05, + "loss": 0.6863983917236328, + "step": 5700 + }, + { + "epoch": 29.0, + "grad_norm": 0.3320668935775757, + "learning_rate": 3.55025e-05, + "loss": 0.6965797424316407, + "step": 5800 + }, + { + "epoch": 29.5, + "grad_norm": 0.3459661900997162, + "learning_rate": 3.52525e-05, + "loss": 0.665050048828125, + "step": 5900 + }, + { + "epoch": 30.0, + "grad_norm": 0.36955904960632324, + "learning_rate": 3.50025e-05, + "loss": 0.6811283111572266, + "step": 6000 + }, + { + "epoch": 30.5, + "grad_norm": 0.353595107793808, + "learning_rate": 3.4752499999999996e-05, + "loss": 0.6494364166259765, + "step": 6100 + }, + { + "epoch": 31.0, + "grad_norm": 0.3724261224269867, + "learning_rate": 3.4502500000000004e-05, + "loss": 0.6602011871337891, + "step": 6200 + }, + { + "epoch": 31.5, + "grad_norm": 0.3622111976146698, + "learning_rate": 3.4252500000000005e-05, + "loss": 0.6292791748046875, + "step": 6300 + }, + { + "epoch": 32.0, + "grad_norm": 0.3871346414089203, + "learning_rate": 3.4002500000000005e-05, + "loss": 0.6412000274658203, + "step": 6400 + }, + { + "epoch": 32.5, + "grad_norm": 0.37466201186180115, + "learning_rate": 3.3752500000000006e-05, + "loss": 0.6076009750366211, + "step": 6500 + }, + { + "epoch": 33.0, + "grad_norm": 0.38774964213371277, + "learning_rate": 3.350250000000001e-05, + "loss": 0.6244126892089844, + "step": 6600 + }, + { + "epoch": 33.5, + "grad_norm": 0.40086090564727783, + "learning_rate": 3.32525e-05, + "loss": 0.5891850662231445, + "step": 6700 + }, + { + "epoch": 34.0, + "grad_norm": 0.397621214389801, + "learning_rate": 3.30025e-05, + "loss": 0.6025267791748047, + "step": 6800 + }, + { + "epoch": 34.5, + "grad_norm": 0.38964155316352844, + "learning_rate": 3.27525e-05, + "loss": 0.5694293975830078, + "step": 6900 + }, + { + "epoch": 35.0, + "grad_norm": 0.41882845759391785, + "learning_rate": 3.25025e-05, + "loss": 0.5855500030517579, + "step": 7000 + }, + { + "epoch": 35.5, + "grad_norm": 0.3957461416721344, + "learning_rate": 3.22525e-05, + "loss": 0.5524356079101562, + "step": 7100 + }, + { + "epoch": 36.0, + "grad_norm": 0.4124171733856201, + "learning_rate": 3.2002500000000004e-05, + "loss": 0.5658663940429688, + "step": 7200 + }, + { + "epoch": 36.5, + "grad_norm": 0.41649162769317627, + "learning_rate": 3.1752500000000005e-05, + "loss": 0.5332207107543945, + "step": 7300 + }, + { + "epoch": 37.0, + "grad_norm": 0.4282434284687042, + "learning_rate": 3.15025e-05, + "loss": 0.5502962112426758, + "step": 7400 + }, + { + "epoch": 37.5, + "grad_norm": 0.4211678206920624, + "learning_rate": 3.12525e-05, + "loss": 0.5135954666137695, + "step": 7500 + }, + { + "epoch": 38.0, + "grad_norm": 0.4331444799900055, + "learning_rate": 3.10025e-05, + "loss": 0.527672119140625, + "step": 7600 + }, + { + "epoch": 38.5, + "grad_norm": 0.40753164887428284, + "learning_rate": 3.07525e-05, + "loss": 0.49722877502441404, + "step": 7700 + }, + { + "epoch": 39.0, + "grad_norm": 0.4255908131599426, + "learning_rate": 3.05025e-05, + "loss": 0.5126309585571289, + "step": 7800 + }, + { + "epoch": 39.5, + "grad_norm": 0.43637004494667053, + "learning_rate": 3.02525e-05, + "loss": 0.4813387680053711, + "step": 7900 + }, + { + "epoch": 40.0, + "grad_norm": 0.439633309841156, + "learning_rate": 3.00025e-05, + "loss": 0.49494590759277346, + "step": 8000 + }, + { + "epoch": 40.5, + "grad_norm": 0.4367655813694, + "learning_rate": 2.97525e-05, + "loss": 0.46536773681640625, + "step": 8100 + }, + { + "epoch": 41.0, + "grad_norm": 0.4501303732395172, + "learning_rate": 2.95025e-05, + "loss": 0.4779759216308594, + "step": 8200 + }, + { + "epoch": 41.5, + "grad_norm": 0.44598305225372314, + "learning_rate": 2.9252499999999998e-05, + "loss": 0.45186782836914063, + "step": 8300 + }, + { + "epoch": 42.0, + "grad_norm": 0.44075384736061096, + "learning_rate": 2.90025e-05, + "loss": 0.46137031555175784, + "step": 8400 + }, + { + "epoch": 42.5, + "grad_norm": 0.4338615834712982, + "learning_rate": 2.87525e-05, + "loss": 0.43537315368652346, + "step": 8500 + }, + { + "epoch": 43.0, + "grad_norm": 0.4544128477573395, + "learning_rate": 2.85025e-05, + "loss": 0.44546558380126955, + "step": 8600 + }, + { + "epoch": 43.5, + "grad_norm": 0.4372069537639618, + "learning_rate": 2.8252500000000004e-05, + "loss": 0.4216377639770508, + "step": 8700 + }, + { + "epoch": 44.0, + "grad_norm": 0.44973990321159363, + "learning_rate": 2.8002500000000005e-05, + "loss": 0.4316849136352539, + "step": 8800 + }, + { + "epoch": 44.5, + "grad_norm": 0.44243016839027405, + "learning_rate": 2.7752500000000002e-05, + "loss": 0.4082369613647461, + "step": 8900 + }, + { + "epoch": 45.0, + "grad_norm": 0.44320249557495117, + "learning_rate": 2.7502500000000003e-05, + "loss": 0.4201020050048828, + "step": 9000 + }, + { + "epoch": 45.5, + "grad_norm": 0.44853946566581726, + "learning_rate": 2.7252500000000004e-05, + "loss": 0.39533462524414065, + "step": 9100 + }, + { + "epoch": 46.0, + "grad_norm": 0.4522981345653534, + "learning_rate": 2.7002500000000004e-05, + "loss": 0.4059659194946289, + "step": 9200 + }, + { + "epoch": 46.5, + "grad_norm": 0.43445703387260437, + "learning_rate": 2.6752500000000002e-05, + "loss": 0.38393875122070314, + "step": 9300 + }, + { + "epoch": 47.0, + "grad_norm": 0.44054123759269714, + "learning_rate": 2.6502500000000002e-05, + "loss": 0.3942867279052734, + "step": 9400 + }, + { + "epoch": 47.5, + "grad_norm": 0.46875321865081787, + "learning_rate": 2.6252500000000003e-05, + "loss": 0.37364906311035156, + "step": 9500 + }, + { + "epoch": 48.0, + "grad_norm": 0.4392513036727905, + "learning_rate": 2.60025e-05, + "loss": 0.38418922424316404, + "step": 9600 + }, + { + "epoch": 48.5, + "grad_norm": 0.44256582856178284, + "learning_rate": 2.57525e-05, + "loss": 0.36397621154785154, + "step": 9700 + }, + { + "epoch": 49.0, + "grad_norm": 0.4096059203147888, + "learning_rate": 2.5502500000000002e-05, + "loss": 0.37398372650146483, + "step": 9800 + }, + { + "epoch": 49.5, + "grad_norm": 0.4084298014640808, + "learning_rate": 2.5252500000000003e-05, + "loss": 0.3530607223510742, + "step": 9900 + }, + { + "epoch": 50.0, + "grad_norm": 0.4513794779777527, + "learning_rate": 2.50025e-05, + "loss": 0.3632556915283203, + "step": 10000 + }, + { + "epoch": 50.5, + "grad_norm": 0.3950716257095337, + "learning_rate": 2.47525e-05, + "loss": 0.34567554473876955, + "step": 10100 + }, + { + "epoch": 51.0, + "grad_norm": 0.4658626914024353, + "learning_rate": 2.45025e-05, + "loss": 0.3531562042236328, + "step": 10200 + }, + { + "epoch": 51.5, + "grad_norm": 0.40074118971824646, + "learning_rate": 2.42525e-05, + "loss": 0.3368285369873047, + "step": 10300 + }, + { + "epoch": 52.0, + "grad_norm": 0.43490293622016907, + "learning_rate": 2.40025e-05, + "loss": 0.34483592987060546, + "step": 10400 + }, + { + "epoch": 52.5, + "grad_norm": 0.43086978793144226, + "learning_rate": 2.37525e-05, + "loss": 0.3291225814819336, + "step": 10500 + }, + { + "epoch": 53.0, + "grad_norm": 0.4458702504634857, + "learning_rate": 2.35025e-05, + "loss": 0.3378773880004883, + "step": 10600 + }, + { + "epoch": 53.5, + "grad_norm": 0.4361683130264282, + "learning_rate": 2.32525e-05, + "loss": 0.3223386001586914, + "step": 10700 + }, + { + "epoch": 54.0, + "grad_norm": 0.46678826212882996, + "learning_rate": 2.3002500000000002e-05, + "loss": 0.3297463607788086, + "step": 10800 + }, + { + "epoch": 54.5, + "grad_norm": 0.41767755150794983, + "learning_rate": 2.2752500000000003e-05, + "loss": 0.315598201751709, + "step": 10900 + }, + { + "epoch": 55.0, + "grad_norm": 0.4470875561237335, + "learning_rate": 2.25025e-05, + "loss": 0.32347301483154295, + "step": 11000 + }, + { + "epoch": 55.5, + "grad_norm": 0.4591546654701233, + "learning_rate": 2.22525e-05, + "loss": 0.31086679458618166, + "step": 11100 + }, + { + "epoch": 56.0, + "grad_norm": 0.44901204109191895, + "learning_rate": 2.20025e-05, + "loss": 0.31777124404907225, + "step": 11200 + }, + { + "epoch": 56.5, + "grad_norm": 0.41419050097465515, + "learning_rate": 2.1752500000000002e-05, + "loss": 0.30351598739624025, + "step": 11300 + }, + { + "epoch": 57.0, + "grad_norm": 0.43349865078926086, + "learning_rate": 2.15025e-05, + "loss": 0.3107553863525391, + "step": 11400 + }, + { + "epoch": 57.5, + "grad_norm": 0.4324033558368683, + "learning_rate": 2.12525e-05, + "loss": 0.2977292823791504, + "step": 11500 + }, + { + "epoch": 58.0, + "grad_norm": 0.43435463309288025, + "learning_rate": 2.10025e-05, + "loss": 0.30380510330200194, + "step": 11600 + }, + { + "epoch": 58.5, + "grad_norm": 0.36328092217445374, + "learning_rate": 2.0752499999999998e-05, + "loss": 0.2924338722229004, + "step": 11700 + }, + { + "epoch": 59.0, + "grad_norm": 0.4179525673389435, + "learning_rate": 2.0502500000000002e-05, + "loss": 0.29900590896606444, + "step": 11800 + }, + { + "epoch": 59.5, + "grad_norm": 0.38387784361839294, + "learning_rate": 2.0252500000000003e-05, + "loss": 0.28634124755859375, + "step": 11900 + }, + { + "epoch": 60.0, + "grad_norm": 0.4128117561340332, + "learning_rate": 2.00025e-05, + "loss": 0.2923979187011719, + "step": 12000 + }, + { + "epoch": 60.5, + "grad_norm": 0.4330095648765564, + "learning_rate": 1.97525e-05, + "loss": 0.28179628372192383, + "step": 12100 + }, + { + "epoch": 61.0, + "grad_norm": 0.42764198780059814, + "learning_rate": 1.9502500000000002e-05, + "loss": 0.2868915367126465, + "step": 12200 + }, + { + "epoch": 61.5, + "grad_norm": 0.39329856634140015, + "learning_rate": 1.9252500000000002e-05, + "loss": 0.2775389289855957, + "step": 12300 + }, + { + "epoch": 62.0, + "grad_norm": 0.3947943449020386, + "learning_rate": 1.90025e-05, + "loss": 0.2824789810180664, + "step": 12400 + }, + { + "epoch": 62.5, + "grad_norm": 0.4083310067653656, + "learning_rate": 1.87525e-05, + "loss": 0.2729552459716797, + "step": 12500 + }, + { + "epoch": 63.0, + "grad_norm": 0.4008137285709381, + "learning_rate": 1.85025e-05, + "loss": 0.27841379165649416, + "step": 12600 + }, + { + "epoch": 63.5, + "grad_norm": 0.3896923363208771, + "learning_rate": 1.82525e-05, + "loss": 0.2697013282775879, + "step": 12700 + }, + { + "epoch": 64.0, + "grad_norm": 0.41712749004364014, + "learning_rate": 1.80025e-05, + "loss": 0.27453325271606444, + "step": 12800 + }, + { + "epoch": 64.5, + "grad_norm": 0.38217687606811523, + "learning_rate": 1.77525e-05, + "loss": 0.26497941970825195, + "step": 12900 + }, + { + "epoch": 65.0, + "grad_norm": 0.4228459596633911, + "learning_rate": 1.75025e-05, + "loss": 0.26899080276489257, + "step": 13000 + }, + { + "epoch": 65.5, + "grad_norm": 0.384003221988678, + "learning_rate": 1.72525e-05, + "loss": 0.26288330078125, + "step": 13100 + }, + { + "epoch": 66.0, + "grad_norm": 0.4040643572807312, + "learning_rate": 1.7002500000000002e-05, + "loss": 0.2662550926208496, + "step": 13200 + }, + { + "epoch": 66.5, + "grad_norm": 0.3715139627456665, + "learning_rate": 1.6752500000000003e-05, + "loss": 0.25743928909301755, + "step": 13300 + }, + { + "epoch": 67.0, + "grad_norm": 0.382761150598526, + "learning_rate": 1.65025e-05, + "loss": 0.2623816680908203, + "step": 13400 + }, + { + "epoch": 67.5, + "grad_norm": 0.4100727140903473, + "learning_rate": 1.62525e-05, + "loss": 0.25506450653076174, + "step": 13500 + }, + { + "epoch": 68.0, + "grad_norm": 0.36104685068130493, + "learning_rate": 1.60025e-05, + "loss": 0.2590820503234863, + "step": 13600 + }, + { + "epoch": 68.5, + "grad_norm": 0.4170261025428772, + "learning_rate": 1.5752500000000002e-05, + "loss": 0.2522945022583008, + "step": 13700 + }, + { + "epoch": 69.0, + "grad_norm": 0.4074130356311798, + "learning_rate": 1.55025e-05, + "loss": 0.256374683380127, + "step": 13800 + }, + { + "epoch": 69.5, + "grad_norm": 0.4009321331977844, + "learning_rate": 1.52525e-05, + "loss": 0.2484601593017578, + "step": 13900 + }, + { + "epoch": 70.0, + "grad_norm": 0.3586087226867676, + "learning_rate": 1.5002499999999999e-05, + "loss": 0.2519577980041504, + "step": 14000 + }, + { + "epoch": 70.5, + "grad_norm": 0.39007654786109924, + "learning_rate": 1.47525e-05, + "loss": 0.2457340431213379, + "step": 14100 + }, + { + "epoch": 71.0, + "grad_norm": 0.3830292820930481, + "learning_rate": 1.4502499999999999e-05, + "loss": 0.24784101486206056, + "step": 14200 + }, + { + "epoch": 71.5, + "grad_norm": 0.3842337429523468, + "learning_rate": 1.4252500000000001e-05, + "loss": 0.24252428054809572, + "step": 14300 + }, + { + "epoch": 72.0, + "grad_norm": 0.33969053626060486, + "learning_rate": 1.4002500000000002e-05, + "loss": 0.2472601890563965, + "step": 14400 + }, + { + "epoch": 72.5, + "grad_norm": 0.38084539771080017, + "learning_rate": 1.3752500000000001e-05, + "loss": 0.2398312759399414, + "step": 14500 + }, + { + "epoch": 73.0, + "grad_norm": 0.3362090587615967, + "learning_rate": 1.3502500000000002e-05, + "loss": 0.24383731842041015, + "step": 14600 + }, + { + "epoch": 73.5, + "grad_norm": 0.37916791439056396, + "learning_rate": 1.32525e-05, + "loss": 0.23760452270507812, + "step": 14700 + }, + { + "epoch": 74.0, + "grad_norm": 0.37284770607948303, + "learning_rate": 1.3002500000000001e-05, + "loss": 0.24114870071411132, + "step": 14800 + }, + { + "epoch": 74.5, + "grad_norm": 0.3742426633834839, + "learning_rate": 1.27525e-05, + "loss": 0.2348023223876953, + "step": 14900 + }, + { + "epoch": 75.0, + "grad_norm": 0.3935767114162445, + "learning_rate": 1.2502500000000001e-05, + "loss": 0.23796173095703124, + "step": 15000 + }, + { + "epoch": 75.5, + "grad_norm": 0.3600524365901947, + "learning_rate": 1.22525e-05, + "loss": 0.23247020721435546, + "step": 15100 + }, + { + "epoch": 76.0, + "grad_norm": 0.3458992540836334, + "learning_rate": 1.20025e-05, + "loss": 0.23637393951416016, + "step": 15200 + }, + { + "epoch": 76.5, + "grad_norm": 0.3585320711135864, + "learning_rate": 1.1752500000000001e-05, + "loss": 0.2308286476135254, + "step": 15300 + }, + { + "epoch": 77.0, + "grad_norm": 0.37773242592811584, + "learning_rate": 1.15025e-05, + "loss": 0.233690242767334, + "step": 15400 + }, + { + "epoch": 77.5, + "grad_norm": 0.3859589695930481, + "learning_rate": 1.1252500000000001e-05, + "loss": 0.2287772750854492, + "step": 15500 + }, + { + "epoch": 78.0, + "grad_norm": 0.3758644461631775, + "learning_rate": 1.10025e-05, + "loss": 0.23166227340698242, + "step": 15600 + }, + { + "epoch": 78.5, + "grad_norm": 0.3552301526069641, + "learning_rate": 1.07525e-05, + "loss": 0.2268804931640625, + "step": 15700 + }, + { + "epoch": 79.0, + "grad_norm": 0.3842378556728363, + "learning_rate": 1.05025e-05, + "loss": 0.22957588195800782, + "step": 15800 + }, + { + "epoch": 79.5, + "grad_norm": 0.33627477288246155, + "learning_rate": 1.02525e-05, + "loss": 0.22454282760620117, + "step": 15900 + }, + { + "epoch": 80.0, + "grad_norm": 0.389986515045166, + "learning_rate": 1.0002500000000001e-05, + "loss": 0.22761936187744142, + "step": 16000 + }, + { + "epoch": 80.5, + "grad_norm": 0.3108944296836853, + "learning_rate": 9.7525e-06, + "loss": 0.22338836669921874, + "step": 16100 + }, + { + "epoch": 81.0, + "grad_norm": 0.32868942618370056, + "learning_rate": 9.502500000000001e-06, + "loss": 0.22411474227905273, + "step": 16200 + }, + { + "epoch": 81.5, + "grad_norm": 0.34585270285606384, + "learning_rate": 9.2525e-06, + "loss": 0.22169002532958984, + "step": 16300 + }, + { + "epoch": 82.0, + "grad_norm": 0.3643505871295929, + "learning_rate": 9.0025e-06, + "loss": 0.22333917617797852, + "step": 16400 + }, + { + "epoch": 82.5, + "grad_norm": 0.35764428973197937, + "learning_rate": 8.752500000000001e-06, + "loss": 0.22027700424194335, + "step": 16500 + }, + { + "epoch": 83.0, + "grad_norm": 0.3697255551815033, + "learning_rate": 8.5025e-06, + "loss": 0.22190006256103514, + "step": 16600 + }, + { + "epoch": 83.5, + "grad_norm": 0.34389302134513855, + "learning_rate": 8.252500000000001e-06, + "loss": 0.21772838592529298, + "step": 16700 + }, + { + "epoch": 84.0, + "grad_norm": 0.35523974895477295, + "learning_rate": 8.0025e-06, + "loss": 0.21992773056030274, + "step": 16800 + }, + { + "epoch": 84.5, + "grad_norm": 0.33763980865478516, + "learning_rate": 7.7525e-06, + "loss": 0.21668706893920897, + "step": 16900 + }, + { + "epoch": 85.0, + "grad_norm": 0.3457420766353607, + "learning_rate": 7.5025e-06, + "loss": 0.21767711639404297, + "step": 17000 + }, + { + "epoch": 85.5, + "grad_norm": 0.34709328413009644, + "learning_rate": 7.252500000000001e-06, + "loss": 0.21578775405883788, + "step": 17100 + }, + { + "epoch": 86.0, + "grad_norm": 0.3611862361431122, + "learning_rate": 7.002500000000001e-06, + "loss": 0.21809673309326172, + "step": 17200 + }, + { + "epoch": 86.5, + "grad_norm": 0.35064128041267395, + "learning_rate": 6.7525e-06, + "loss": 0.21291667938232423, + "step": 17300 + }, + { + "epoch": 87.0, + "grad_norm": 0.35625672340393066, + "learning_rate": 6.5025e-06, + "loss": 0.21576713562011718, + "step": 17400 + }, + { + "epoch": 87.5, + "grad_norm": 0.3733029365539551, + "learning_rate": 6.2525e-06, + "loss": 0.21200632095336913, + "step": 17500 + }, + { + "epoch": 88.0, + "grad_norm": 0.34649088978767395, + "learning_rate": 6.0025000000000006e-06, + "loss": 0.2149067687988281, + "step": 17600 + }, + { + "epoch": 88.5, + "grad_norm": 0.306749165058136, + "learning_rate": 5.7525e-06, + "loss": 0.21139209747314452, + "step": 17700 + }, + { + "epoch": 89.0, + "grad_norm": 0.35020408034324646, + "learning_rate": 5.5025e-06, + "loss": 0.21399372100830077, + "step": 17800 + }, + { + "epoch": 89.5, + "grad_norm": 0.31811031699180603, + "learning_rate": 5.2525e-06, + "loss": 0.2106713104248047, + "step": 17900 + }, + { + "epoch": 90.0, + "grad_norm": 0.315910667181015, + "learning_rate": 5.0025e-06, + "loss": 0.21184038162231444, + "step": 18000 + }, + { + "epoch": 90.5, + "grad_norm": 0.3591602146625519, + "learning_rate": 4.755e-06, + "loss": 0.2087250518798828, + "step": 18100 + }, + { + "epoch": 91.0, + "grad_norm": 0.2959374189376831, + "learning_rate": 4.505e-06, + "loss": 0.2099794006347656, + "step": 18200 + }, + { + "epoch": 91.5, + "grad_norm": 0.2833845317363739, + "learning_rate": 4.255e-06, + "loss": 0.20827140808105468, + "step": 18300 + }, + { + "epoch": 92.0, + "grad_norm": 0.33928927779197693, + "learning_rate": 4.005000000000001e-06, + "loss": 0.20932321548461913, + "step": 18400 + }, + { + "epoch": 92.5, + "grad_norm": 0.321674644947052, + "learning_rate": 3.755e-06, + "loss": 0.205947322845459, + "step": 18500 + }, + { + "epoch": 93.0, + "grad_norm": 0.2966731786727905, + "learning_rate": 3.505e-06, + "loss": 0.20795421600341796, + "step": 18600 + }, + { + "epoch": 93.5, + "grad_norm": 0.3216817378997803, + "learning_rate": 3.2550000000000006e-06, + "loss": 0.20623821258544922, + "step": 18700 + }, + { + "epoch": 94.0, + "grad_norm": 0.35450977087020874, + "learning_rate": 3.005e-06, + "loss": 0.20804498672485353, + "step": 18800 + }, + { + "epoch": 94.5, + "grad_norm": 0.2994995415210724, + "learning_rate": 2.7550000000000003e-06, + "loss": 0.20724256515502928, + "step": 18900 + }, + { + "epoch": 95.0, + "grad_norm": 0.3332589566707611, + "learning_rate": 2.505e-06, + "loss": 0.2055183982849121, + "step": 19000 + }, + { + "epoch": 95.5, + "grad_norm": 0.30346137285232544, + "learning_rate": 2.255e-06, + "loss": 0.2049989128112793, + "step": 19100 + }, + { + "epoch": 96.0, + "grad_norm": 0.2948566973209381, + "learning_rate": 2.005e-06, + "loss": 0.20483097076416015, + "step": 19200 + }, + { + "epoch": 96.5, + "grad_norm": 0.3213671147823334, + "learning_rate": 1.7550000000000001e-06, + "loss": 0.20349571228027344, + "step": 19300 + }, + { + "epoch": 97.0, + "grad_norm": 0.30940669775009155, + "learning_rate": 1.505e-06, + "loss": 0.20510492324829102, + "step": 19400 + }, + { + "epoch": 97.5, + "grad_norm": 0.29669439792633057, + "learning_rate": 1.255e-06, + "loss": 0.20321809768676757, + "step": 19500 + } + ], + "logging_steps": 100, + "max_steps": 20000, + "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": 1.0668256395264e+16, + "train_batch_size": 8, + "trial_name": null, + "trial_params": null +} diff --git a/timecost/n6/realtabformer/rtf-n6-20260429_070345/rtf_checkpoints/checkpoint-19500/training_args.bin b/timecost/n6/realtabformer/rtf-n6-20260429_070345/rtf_checkpoints/checkpoint-19500/training_args.bin new file mode 100644 index 0000000000000000000000000000000000000000..34d68dc0e0fe1c1f12a2e581dd1b166aa7178a9e --- /dev/null +++ b/timecost/n6/realtabformer/rtf-n6-20260429_070345/rtf_checkpoints/checkpoint-19500/training_args.bin @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:9e2cd88337d1d846c6918d2b3b63fa3e5c93f12fefc082497590da854a564607 +size 5201 diff --git a/timecost/n6/realtabformer/rtf-n6-20260429_070345/rtf_checkpoints/checkpoint-19600/config.json b/timecost/n6/realtabformer/rtf-n6-20260429_070345/rtf_checkpoints/checkpoint-19600/config.json new file mode 100644 index 0000000000000000000000000000000000000000..ec3451e1a76244eef3e5bbfa6dfc2b2176f6aef9 --- /dev/null +++ b/timecost/n6/realtabformer/rtf-n6-20260429_070345/rtf_checkpoints/checkpoint-19600/config.json @@ -0,0 +1,34 @@ +{ + "activation_function": "gelu_new", + "add_cross_attention": false, + "architectures": [ + "GPT2LMHeadModel" + ], + "attn_pdrop": 0.1, + "bos_token_id": 5, + "dtype": "float32", + "embd_pdrop": 0.1, + "eos_token_id": 6, + "initializer_range": 0.02, + "layer_norm_epsilon": 1e-05, + "model_type": "gpt2", + "n_embd": 768, + "n_head": 12, + "n_inner": null, + "n_layer": 6, + "n_positions": 1024, + "pad_token_id": null, + "reorder_and_upcast_attn": false, + "resid_pdrop": 0.1, + "scale_attn_by_inverse_layer_idx": false, + "scale_attn_weights": true, + "summary_activation": null, + "summary_first_dropout": 0.1, + "summary_proj_to_labels": true, + "summary_type": "cls_index", + "summary_use_proj": true, + "tie_word_embeddings": true, + "transformers_version": "5.5.3", + "use_cache": false, + "vocab_size": 419 +} diff --git a/timecost/n6/realtabformer/rtf-n6-20260429_070345/rtf_checkpoints/checkpoint-19600/generation_config.json b/timecost/n6/realtabformer/rtf-n6-20260429_070345/rtf_checkpoints/checkpoint-19600/generation_config.json new file mode 100644 index 0000000000000000000000000000000000000000..ffe89567780e75b5c22eade9be971483b9618f39 --- /dev/null +++ b/timecost/n6/realtabformer/rtf-n6-20260429_070345/rtf_checkpoints/checkpoint-19600/generation_config.json @@ -0,0 +1,9 @@ +{ + "_from_model_config": true, + "bos_token_id": 5, + "eos_token_id": 6, + "output_attentions": false, + "output_hidden_states": false, + "transformers_version": "5.5.3", + "use_cache": true +} diff --git a/timecost/n6/realtabformer/rtf-n6-20260429_070345/rtf_checkpoints/checkpoint-19600/model.safetensors b/timecost/n6/realtabformer/rtf-n6-20260429_070345/rtf_checkpoints/checkpoint-19600/model.safetensors new file mode 100644 index 0000000000000000000000000000000000000000..2b8ffdb0304655a7bde4ea6a5ac4df791f9aa376 --- /dev/null +++ b/timecost/n6/realtabformer/rtf-n6-20260429_070345/rtf_checkpoints/checkpoint-19600/model.safetensors @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:08e4f9cd2ce895e10013273d718874af4d9e44128a905a574a17a02a64112b2b +size 174555592 diff --git a/timecost/n6/realtabformer/rtf-n6-20260429_070345/rtf_checkpoints/checkpoint-19600/optimizer.pt b/timecost/n6/realtabformer/rtf-n6-20260429_070345/rtf_checkpoints/checkpoint-19600/optimizer.pt new file mode 100644 index 0000000000000000000000000000000000000000..458503a3a166d197c158b956ee66411c3b3ca23f --- /dev/null +++ b/timecost/n6/realtabformer/rtf-n6-20260429_070345/rtf_checkpoints/checkpoint-19600/optimizer.pt @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:a5f38b63ed76b3d4b040861af71fbab79d41c0882c27c3b8bc26955430b2c49c +size 349160267 diff --git a/timecost/n6/realtabformer/rtf-n6-20260429_070345/rtf_checkpoints/checkpoint-19600/rng_state.pth b/timecost/n6/realtabformer/rtf-n6-20260429_070345/rtf_checkpoints/checkpoint-19600/rng_state.pth new file mode 100644 index 0000000000000000000000000000000000000000..d10352136e77b110510e26b74e61e6f148c5c75c --- /dev/null +++ b/timecost/n6/realtabformer/rtf-n6-20260429_070345/rtf_checkpoints/checkpoint-19600/rng_state.pth @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:6af2a4f016ed1061ec3e47219041a3e9444f1eeae5296360185f2d3f1fda341e +size 14645 diff --git a/timecost/n6/realtabformer/rtf-n6-20260429_070345/rtf_checkpoints/checkpoint-19600/scaler.pt b/timecost/n6/realtabformer/rtf-n6-20260429_070345/rtf_checkpoints/checkpoint-19600/scaler.pt new file mode 100644 index 0000000000000000000000000000000000000000..9dee594233ef5f106dcfdefefed800eba4fdb9bd --- /dev/null +++ b/timecost/n6/realtabformer/rtf-n6-20260429_070345/rtf_checkpoints/checkpoint-19600/scaler.pt @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:03f5cef69f916fedd6ccf7560020028e8226e4dbf35acd3853f7bcf05645c272 +size 1383 diff --git a/timecost/n6/realtabformer/rtf-n6-20260429_070345/rtf_checkpoints/checkpoint-19600/scheduler.pt b/timecost/n6/realtabformer/rtf-n6-20260429_070345/rtf_checkpoints/checkpoint-19600/scheduler.pt new file mode 100644 index 0000000000000000000000000000000000000000..c4ffc082fa8a6535f8ab8996161bf07129f5e009 --- /dev/null +++ b/timecost/n6/realtabformer/rtf-n6-20260429_070345/rtf_checkpoints/checkpoint-19600/scheduler.pt @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:a951c3d8afc27f06a58bfac6fa748aed72c9e172659e7bc64a756f6f1ecef425 +size 1465 diff --git a/timecost/n6/realtabformer/rtf-n6-20260429_070345/rtf_checkpoints/checkpoint-19600/trainer_state.json b/timecost/n6/realtabformer/rtf-n6-20260429_070345/rtf_checkpoints/checkpoint-19600/trainer_state.json new file mode 100644 index 0000000000000000000000000000000000000000..d5a5bec224c0037c33e790c7ebe97787d476b62b --- /dev/null +++ b/timecost/n6/realtabformer/rtf-n6-20260429_070345/rtf_checkpoints/checkpoint-19600/trainer_state.json @@ -0,0 +1,1406 @@ +{ + "best_global_step": null, + "best_metric": null, + "best_model_checkpoint": null, + "epoch": 98.0, + "eval_steps": 100, + "global_step": 19600, + "is_hyper_param_search": false, + "is_local_process_zero": true, + "is_world_process_zero": true, + "log_history": [ + { + "epoch": 0.5, + "grad_norm": 0.23846545815467834, + "learning_rate": 4.97525e-05, + "loss": 1.9802227783203126, + "step": 100 + }, + { + "epoch": 1.0, + "grad_norm": 0.20555852353572845, + "learning_rate": 4.95025e-05, + "loss": 1.1221817779541015, + "step": 200 + }, + { + "epoch": 1.5, + "grad_norm": 0.21700991690158844, + "learning_rate": 4.92525e-05, + "loss": 1.0643415832519532, + "step": 300 + }, + { + "epoch": 2.0, + "grad_norm": 0.2044236809015274, + "learning_rate": 4.9002500000000004e-05, + "loss": 1.0245947265625, + "step": 400 + }, + { + "epoch": 2.5, + "grad_norm": 0.18077734112739563, + "learning_rate": 4.87525e-05, + "loss": 1.0032696533203125, + "step": 500 + }, + { + "epoch": 3.0, + "grad_norm": 0.19198282063007355, + "learning_rate": 4.85025e-05, + "loss": 1.0093541717529297, + "step": 600 + }, + { + "epoch": 3.5, + "grad_norm": 0.1984235793352127, + "learning_rate": 4.82525e-05, + "loss": 0.9847814178466797, + "step": 700 + }, + { + "epoch": 4.0, + "grad_norm": 0.17152079939842224, + "learning_rate": 4.80025e-05, + "loss": 0.982783203125, + "step": 800 + }, + { + "epoch": 4.5, + "grad_norm": 0.1930670440196991, + "learning_rate": 4.77525e-05, + "loss": 0.9716933441162109, + "step": 900 + }, + { + "epoch": 5.0, + "grad_norm": 0.19108322262763977, + "learning_rate": 4.75025e-05, + "loss": 0.9630477142333984, + "step": 1000 + }, + { + "epoch": 5.5, + "grad_norm": 0.1854381561279297, + "learning_rate": 4.72525e-05, + "loss": 0.9538239288330078, + "step": 1100 + }, + { + "epoch": 6.0, + "grad_norm": 0.17531616985797882, + "learning_rate": 4.70025e-05, + "loss": 0.95813720703125, + "step": 1200 + }, + { + "epoch": 6.5, + "grad_norm": 0.1815650910139084, + "learning_rate": 4.6752500000000003e-05, + "loss": 0.946460952758789, + "step": 1300 + }, + { + "epoch": 7.0, + "grad_norm": 0.19417639076709747, + "learning_rate": 4.6502500000000004e-05, + "loss": 0.9453800201416016, + "step": 1400 + }, + { + "epoch": 7.5, + "grad_norm": 0.1870127171278, + "learning_rate": 4.6252500000000005e-05, + "loss": 0.937877426147461, + "step": 1500 + }, + { + "epoch": 8.0, + "grad_norm": 0.1704702377319336, + "learning_rate": 4.6002500000000006e-05, + "loss": 0.9351255035400391, + "step": 1600 + }, + { + "epoch": 8.5, + "grad_norm": 0.18080289661884308, + "learning_rate": 4.5752500000000006e-05, + "loss": 0.9263742065429688, + "step": 1700 + }, + { + "epoch": 9.0, + "grad_norm": 0.18863996863365173, + "learning_rate": 4.55025e-05, + "loss": 0.9295844268798829, + "step": 1800 + }, + { + "epoch": 9.5, + "grad_norm": 0.19748634099960327, + "learning_rate": 4.52525e-05, + "loss": 0.9196556091308594, + "step": 1900 + }, + { + "epoch": 10.0, + "grad_norm": 0.20166783034801483, + "learning_rate": 4.50025e-05, + "loss": 0.9205670166015625, + "step": 2000 + }, + { + "epoch": 10.5, + "grad_norm": 0.19421179592609406, + "learning_rate": 4.47525e-05, + "loss": 0.9092935943603515, + "step": 2100 + }, + { + "epoch": 11.0, + "grad_norm": 0.17364448308944702, + "learning_rate": 4.45025e-05, + "loss": 0.9160775756835937, + "step": 2200 + }, + { + "epoch": 11.5, + "grad_norm": 0.1992802619934082, + "learning_rate": 4.4252500000000004e-05, + "loss": 0.9015705108642578, + "step": 2300 + }, + { + "epoch": 12.0, + "grad_norm": 0.20152443647384644, + "learning_rate": 4.4002500000000004e-05, + "loss": 0.9061229705810547, + "step": 2400 + }, + { + "epoch": 12.5, + "grad_norm": 0.2132837325334549, + "learning_rate": 4.3752500000000005e-05, + "loss": 0.8934657287597656, + "step": 2500 + }, + { + "epoch": 13.0, + "grad_norm": 0.19080808758735657, + "learning_rate": 4.35025e-05, + "loss": 0.899046401977539, + "step": 2600 + }, + { + "epoch": 13.5, + "grad_norm": 0.189740389585495, + "learning_rate": 4.32525e-05, + "loss": 0.8842880249023437, + "step": 2700 + }, + { + "epoch": 14.0, + "grad_norm": 0.20881056785583496, + "learning_rate": 4.30025e-05, + "loss": 0.8902586364746093, + "step": 2800 + }, + { + "epoch": 14.5, + "grad_norm": 0.20233558118343353, + "learning_rate": 4.27525e-05, + "loss": 0.8781875610351563, + "step": 2900 + }, + { + "epoch": 15.0, + "grad_norm": 0.20733879506587982, + "learning_rate": 4.25025e-05, + "loss": 0.8796215057373047, + "step": 3000 + }, + { + "epoch": 15.5, + "grad_norm": 0.20945705473423004, + "learning_rate": 4.22525e-05, + "loss": 0.8660121154785156, + "step": 3100 + }, + { + "epoch": 16.0, + "grad_norm": 0.2075275033712387, + "learning_rate": 4.20025e-05, + "loss": 0.872025146484375, + "step": 3200 + }, + { + "epoch": 16.5, + "grad_norm": 0.20175659656524658, + "learning_rate": 4.17525e-05, + "loss": 0.8569779968261719, + "step": 3300 + }, + { + "epoch": 17.0, + "grad_norm": 0.20709975063800812, + "learning_rate": 4.15025e-05, + "loss": 0.8622282409667968, + "step": 3400 + }, + { + "epoch": 17.5, + "grad_norm": 0.22440586984157562, + "learning_rate": 4.12525e-05, + "loss": 0.844241943359375, + "step": 3500 + }, + { + "epoch": 18.0, + "grad_norm": 0.2280527651309967, + "learning_rate": 4.10025e-05, + "loss": 0.8529148864746093, + "step": 3600 + }, + { + "epoch": 18.5, + "grad_norm": 0.22750917077064514, + "learning_rate": 4.075250000000001e-05, + "loss": 0.8350860595703125, + "step": 3700 + }, + { + "epoch": 19.0, + "grad_norm": 0.23036035895347595, + "learning_rate": 4.050250000000001e-05, + "loss": 0.8406881713867187, + "step": 3800 + }, + { + "epoch": 19.5, + "grad_norm": 0.24683690071105957, + "learning_rate": 4.02525e-05, + "loss": 0.8201627349853515, + "step": 3900 + }, + { + "epoch": 20.0, + "grad_norm": 0.22586171329021454, + "learning_rate": 4.00025e-05, + "loss": 0.8348744201660157, + "step": 4000 + }, + { + "epoch": 20.5, + "grad_norm": 0.25476565957069397, + "learning_rate": 3.97525e-05, + "loss": 0.8094847869873046, + "step": 4100 + }, + { + "epoch": 21.0, + "grad_norm": 0.26058006286621094, + "learning_rate": 3.95025e-05, + "loss": 0.821390380859375, + "step": 4200 + }, + { + "epoch": 21.5, + "grad_norm": 0.26972848176956177, + "learning_rate": 3.9252500000000004e-05, + "loss": 0.795047607421875, + "step": 4300 + }, + { + "epoch": 22.0, + "grad_norm": 0.24889031052589417, + "learning_rate": 3.9002500000000005e-05, + "loss": 0.8084414672851562, + "step": 4400 + }, + { + "epoch": 22.5, + "grad_norm": 0.2630121111869812, + "learning_rate": 3.8752500000000005e-05, + "loss": 0.7835968017578125, + "step": 4500 + }, + { + "epoch": 23.0, + "grad_norm": 0.264941543340683, + "learning_rate": 3.85025e-05, + "loss": 0.7941561889648437, + "step": 4600 + }, + { + "epoch": 23.5, + "grad_norm": 0.27832189202308655, + "learning_rate": 3.82525e-05, + "loss": 0.7683060455322266, + "step": 4700 + }, + { + "epoch": 24.0, + "grad_norm": 0.281009316444397, + "learning_rate": 3.80025e-05, + "loss": 0.7814789581298828, + "step": 4800 + }, + { + "epoch": 24.5, + "grad_norm": 0.2838248312473297, + "learning_rate": 3.77525e-05, + "loss": 0.7542767333984375, + "step": 4900 + }, + { + "epoch": 25.0, + "grad_norm": 0.29682639241218567, + "learning_rate": 3.75025e-05, + "loss": 0.7639364624023437, + "step": 5000 + }, + { + "epoch": 25.5, + "grad_norm": 0.2911108732223511, + "learning_rate": 3.72525e-05, + "loss": 0.7374829864501953, + "step": 5100 + }, + { + "epoch": 26.0, + "grad_norm": 0.3080083727836609, + "learning_rate": 3.7002500000000004e-05, + "loss": 0.7494142150878906, + "step": 5200 + }, + { + "epoch": 26.5, + "grad_norm": 0.31476718187332153, + "learning_rate": 3.67525e-05, + "loss": 0.7209281158447266, + "step": 5300 + }, + { + "epoch": 27.0, + "grad_norm": 0.3073391914367676, + "learning_rate": 3.65025e-05, + "loss": 0.7341756439208984, + "step": 5400 + }, + { + "epoch": 27.5, + "grad_norm": 0.3170262575149536, + "learning_rate": 3.62525e-05, + "loss": 0.7062877655029297, + "step": 5500 + }, + { + "epoch": 28.0, + "grad_norm": 0.3416720926761627, + "learning_rate": 3.60025e-05, + "loss": 0.7143956756591797, + "step": 5600 + }, + { + "epoch": 28.5, + "grad_norm": 0.32180145382881165, + "learning_rate": 3.57525e-05, + "loss": 0.6863983917236328, + "step": 5700 + }, + { + "epoch": 29.0, + "grad_norm": 0.3320668935775757, + "learning_rate": 3.55025e-05, + "loss": 0.6965797424316407, + "step": 5800 + }, + { + "epoch": 29.5, + "grad_norm": 0.3459661900997162, + "learning_rate": 3.52525e-05, + "loss": 0.665050048828125, + "step": 5900 + }, + { + "epoch": 30.0, + "grad_norm": 0.36955904960632324, + "learning_rate": 3.50025e-05, + "loss": 0.6811283111572266, + "step": 6000 + }, + { + "epoch": 30.5, + "grad_norm": 0.353595107793808, + "learning_rate": 3.4752499999999996e-05, + "loss": 0.6494364166259765, + "step": 6100 + }, + { + "epoch": 31.0, + "grad_norm": 0.3724261224269867, + "learning_rate": 3.4502500000000004e-05, + "loss": 0.6602011871337891, + "step": 6200 + }, + { + "epoch": 31.5, + "grad_norm": 0.3622111976146698, + "learning_rate": 3.4252500000000005e-05, + "loss": 0.6292791748046875, + "step": 6300 + }, + { + "epoch": 32.0, + "grad_norm": 0.3871346414089203, + "learning_rate": 3.4002500000000005e-05, + "loss": 0.6412000274658203, + "step": 6400 + }, + { + "epoch": 32.5, + "grad_norm": 0.37466201186180115, + "learning_rate": 3.3752500000000006e-05, + "loss": 0.6076009750366211, + "step": 6500 + }, + { + "epoch": 33.0, + "grad_norm": 0.38774964213371277, + "learning_rate": 3.350250000000001e-05, + "loss": 0.6244126892089844, + "step": 6600 + }, + { + "epoch": 33.5, + "grad_norm": 0.40086090564727783, + "learning_rate": 3.32525e-05, + "loss": 0.5891850662231445, + "step": 6700 + }, + { + "epoch": 34.0, + "grad_norm": 0.397621214389801, + "learning_rate": 3.30025e-05, + "loss": 0.6025267791748047, + "step": 6800 + }, + { + "epoch": 34.5, + "grad_norm": 0.38964155316352844, + "learning_rate": 3.27525e-05, + "loss": 0.5694293975830078, + "step": 6900 + }, + { + "epoch": 35.0, + "grad_norm": 0.41882845759391785, + "learning_rate": 3.25025e-05, + "loss": 0.5855500030517579, + "step": 7000 + }, + { + "epoch": 35.5, + "grad_norm": 0.3957461416721344, + "learning_rate": 3.22525e-05, + "loss": 0.5524356079101562, + "step": 7100 + }, + { + "epoch": 36.0, + "grad_norm": 0.4124171733856201, + "learning_rate": 3.2002500000000004e-05, + "loss": 0.5658663940429688, + "step": 7200 + }, + { + "epoch": 36.5, + "grad_norm": 0.41649162769317627, + "learning_rate": 3.1752500000000005e-05, + "loss": 0.5332207107543945, + "step": 7300 + }, + { + "epoch": 37.0, + "grad_norm": 0.4282434284687042, + "learning_rate": 3.15025e-05, + "loss": 0.5502962112426758, + "step": 7400 + }, + { + "epoch": 37.5, + "grad_norm": 0.4211678206920624, + "learning_rate": 3.12525e-05, + "loss": 0.5135954666137695, + "step": 7500 + }, + { + "epoch": 38.0, + "grad_norm": 0.4331444799900055, + "learning_rate": 3.10025e-05, + "loss": 0.527672119140625, + "step": 7600 + }, + { + "epoch": 38.5, + "grad_norm": 0.40753164887428284, + "learning_rate": 3.07525e-05, + "loss": 0.49722877502441404, + "step": 7700 + }, + { + "epoch": 39.0, + "grad_norm": 0.4255908131599426, + "learning_rate": 3.05025e-05, + "loss": 0.5126309585571289, + "step": 7800 + }, + { + "epoch": 39.5, + "grad_norm": 0.43637004494667053, + "learning_rate": 3.02525e-05, + "loss": 0.4813387680053711, + "step": 7900 + }, + { + "epoch": 40.0, + "grad_norm": 0.439633309841156, + "learning_rate": 3.00025e-05, + "loss": 0.49494590759277346, + "step": 8000 + }, + { + "epoch": 40.5, + "grad_norm": 0.4367655813694, + "learning_rate": 2.97525e-05, + "loss": 0.46536773681640625, + "step": 8100 + }, + { + "epoch": 41.0, + "grad_norm": 0.4501303732395172, + "learning_rate": 2.95025e-05, + "loss": 0.4779759216308594, + "step": 8200 + }, + { + "epoch": 41.5, + "grad_norm": 0.44598305225372314, + "learning_rate": 2.9252499999999998e-05, + "loss": 0.45186782836914063, + "step": 8300 + }, + { + "epoch": 42.0, + "grad_norm": 0.44075384736061096, + "learning_rate": 2.90025e-05, + "loss": 0.46137031555175784, + "step": 8400 + }, + { + "epoch": 42.5, + "grad_norm": 0.4338615834712982, + "learning_rate": 2.87525e-05, + "loss": 0.43537315368652346, + "step": 8500 + }, + { + "epoch": 43.0, + "grad_norm": 0.4544128477573395, + "learning_rate": 2.85025e-05, + "loss": 0.44546558380126955, + "step": 8600 + }, + { + "epoch": 43.5, + "grad_norm": 0.4372069537639618, + "learning_rate": 2.8252500000000004e-05, + "loss": 0.4216377639770508, + "step": 8700 + }, + { + "epoch": 44.0, + "grad_norm": 0.44973990321159363, + "learning_rate": 2.8002500000000005e-05, + "loss": 0.4316849136352539, + "step": 8800 + }, + { + "epoch": 44.5, + "grad_norm": 0.44243016839027405, + "learning_rate": 2.7752500000000002e-05, + "loss": 0.4082369613647461, + "step": 8900 + }, + { + "epoch": 45.0, + "grad_norm": 0.44320249557495117, + "learning_rate": 2.7502500000000003e-05, + "loss": 0.4201020050048828, + "step": 9000 + }, + { + "epoch": 45.5, + "grad_norm": 0.44853946566581726, + "learning_rate": 2.7252500000000004e-05, + "loss": 0.39533462524414065, + "step": 9100 + }, + { + "epoch": 46.0, + "grad_norm": 0.4522981345653534, + "learning_rate": 2.7002500000000004e-05, + "loss": 0.4059659194946289, + "step": 9200 + }, + { + "epoch": 46.5, + "grad_norm": 0.43445703387260437, + "learning_rate": 2.6752500000000002e-05, + "loss": 0.38393875122070314, + "step": 9300 + }, + { + "epoch": 47.0, + "grad_norm": 0.44054123759269714, + "learning_rate": 2.6502500000000002e-05, + "loss": 0.3942867279052734, + "step": 9400 + }, + { + "epoch": 47.5, + "grad_norm": 0.46875321865081787, + "learning_rate": 2.6252500000000003e-05, + "loss": 0.37364906311035156, + "step": 9500 + }, + { + "epoch": 48.0, + "grad_norm": 0.4392513036727905, + "learning_rate": 2.60025e-05, + "loss": 0.38418922424316404, + "step": 9600 + }, + { + "epoch": 48.5, + "grad_norm": 0.44256582856178284, + "learning_rate": 2.57525e-05, + "loss": 0.36397621154785154, + "step": 9700 + }, + { + "epoch": 49.0, + "grad_norm": 0.4096059203147888, + "learning_rate": 2.5502500000000002e-05, + "loss": 0.37398372650146483, + "step": 9800 + }, + { + "epoch": 49.5, + "grad_norm": 0.4084298014640808, + "learning_rate": 2.5252500000000003e-05, + "loss": 0.3530607223510742, + "step": 9900 + }, + { + "epoch": 50.0, + "grad_norm": 0.4513794779777527, + "learning_rate": 2.50025e-05, + "loss": 0.3632556915283203, + "step": 10000 + }, + { + "epoch": 50.5, + "grad_norm": 0.3950716257095337, + "learning_rate": 2.47525e-05, + "loss": 0.34567554473876955, + "step": 10100 + }, + { + "epoch": 51.0, + "grad_norm": 0.4658626914024353, + "learning_rate": 2.45025e-05, + "loss": 0.3531562042236328, + "step": 10200 + }, + { + "epoch": 51.5, + "grad_norm": 0.40074118971824646, + "learning_rate": 2.42525e-05, + "loss": 0.3368285369873047, + "step": 10300 + }, + { + "epoch": 52.0, + "grad_norm": 0.43490293622016907, + "learning_rate": 2.40025e-05, + "loss": 0.34483592987060546, + "step": 10400 + }, + { + "epoch": 52.5, + "grad_norm": 0.43086978793144226, + "learning_rate": 2.37525e-05, + "loss": 0.3291225814819336, + "step": 10500 + }, + { + "epoch": 53.0, + "grad_norm": 0.4458702504634857, + "learning_rate": 2.35025e-05, + "loss": 0.3378773880004883, + "step": 10600 + }, + { + "epoch": 53.5, + "grad_norm": 0.4361683130264282, + "learning_rate": 2.32525e-05, + "loss": 0.3223386001586914, + "step": 10700 + }, + { + "epoch": 54.0, + "grad_norm": 0.46678826212882996, + "learning_rate": 2.3002500000000002e-05, + "loss": 0.3297463607788086, + "step": 10800 + }, + { + "epoch": 54.5, + "grad_norm": 0.41767755150794983, + "learning_rate": 2.2752500000000003e-05, + "loss": 0.315598201751709, + "step": 10900 + }, + { + "epoch": 55.0, + "grad_norm": 0.4470875561237335, + "learning_rate": 2.25025e-05, + "loss": 0.32347301483154295, + "step": 11000 + }, + { + "epoch": 55.5, + "grad_norm": 0.4591546654701233, + "learning_rate": 2.22525e-05, + "loss": 0.31086679458618166, + "step": 11100 + }, + { + "epoch": 56.0, + "grad_norm": 0.44901204109191895, + "learning_rate": 2.20025e-05, + "loss": 0.31777124404907225, + "step": 11200 + }, + { + "epoch": 56.5, + "grad_norm": 0.41419050097465515, + "learning_rate": 2.1752500000000002e-05, + "loss": 0.30351598739624025, + "step": 11300 + }, + { + "epoch": 57.0, + "grad_norm": 0.43349865078926086, + "learning_rate": 2.15025e-05, + "loss": 0.3107553863525391, + "step": 11400 + }, + { + "epoch": 57.5, + "grad_norm": 0.4324033558368683, + "learning_rate": 2.12525e-05, + "loss": 0.2977292823791504, + "step": 11500 + }, + { + "epoch": 58.0, + "grad_norm": 0.43435463309288025, + "learning_rate": 2.10025e-05, + "loss": 0.30380510330200194, + "step": 11600 + }, + { + "epoch": 58.5, + "grad_norm": 0.36328092217445374, + "learning_rate": 2.0752499999999998e-05, + "loss": 0.2924338722229004, + "step": 11700 + }, + { + "epoch": 59.0, + "grad_norm": 0.4179525673389435, + "learning_rate": 2.0502500000000002e-05, + "loss": 0.29900590896606444, + "step": 11800 + }, + { + "epoch": 59.5, + "grad_norm": 0.38387784361839294, + "learning_rate": 2.0252500000000003e-05, + "loss": 0.28634124755859375, + "step": 11900 + }, + { + "epoch": 60.0, + "grad_norm": 0.4128117561340332, + "learning_rate": 2.00025e-05, + "loss": 0.2923979187011719, + "step": 12000 + }, + { + "epoch": 60.5, + "grad_norm": 0.4330095648765564, + "learning_rate": 1.97525e-05, + "loss": 0.28179628372192383, + "step": 12100 + }, + { + "epoch": 61.0, + "grad_norm": 0.42764198780059814, + "learning_rate": 1.9502500000000002e-05, + "loss": 0.2868915367126465, + "step": 12200 + }, + { + "epoch": 61.5, + "grad_norm": 0.39329856634140015, + "learning_rate": 1.9252500000000002e-05, + "loss": 0.2775389289855957, + "step": 12300 + }, + { + "epoch": 62.0, + "grad_norm": 0.3947943449020386, + "learning_rate": 1.90025e-05, + "loss": 0.2824789810180664, + "step": 12400 + }, + { + "epoch": 62.5, + "grad_norm": 0.4083310067653656, + "learning_rate": 1.87525e-05, + "loss": 0.2729552459716797, + "step": 12500 + }, + { + "epoch": 63.0, + "grad_norm": 0.4008137285709381, + "learning_rate": 1.85025e-05, + "loss": 0.27841379165649416, + "step": 12600 + }, + { + "epoch": 63.5, + "grad_norm": 0.3896923363208771, + "learning_rate": 1.82525e-05, + "loss": 0.2697013282775879, + "step": 12700 + }, + { + "epoch": 64.0, + "grad_norm": 0.41712749004364014, + "learning_rate": 1.80025e-05, + "loss": 0.27453325271606444, + "step": 12800 + }, + { + "epoch": 64.5, + "grad_norm": 0.38217687606811523, + "learning_rate": 1.77525e-05, + "loss": 0.26497941970825195, + "step": 12900 + }, + { + "epoch": 65.0, + "grad_norm": 0.4228459596633911, + "learning_rate": 1.75025e-05, + "loss": 0.26899080276489257, + "step": 13000 + }, + { + "epoch": 65.5, + "grad_norm": 0.384003221988678, + "learning_rate": 1.72525e-05, + "loss": 0.26288330078125, + "step": 13100 + }, + { + "epoch": 66.0, + "grad_norm": 0.4040643572807312, + "learning_rate": 1.7002500000000002e-05, + "loss": 0.2662550926208496, + "step": 13200 + }, + { + "epoch": 66.5, + "grad_norm": 0.3715139627456665, + "learning_rate": 1.6752500000000003e-05, + "loss": 0.25743928909301755, + "step": 13300 + }, + { + "epoch": 67.0, + "grad_norm": 0.382761150598526, + "learning_rate": 1.65025e-05, + "loss": 0.2623816680908203, + "step": 13400 + }, + { + "epoch": 67.5, + "grad_norm": 0.4100727140903473, + "learning_rate": 1.62525e-05, + "loss": 0.25506450653076174, + "step": 13500 + }, + { + "epoch": 68.0, + "grad_norm": 0.36104685068130493, + "learning_rate": 1.60025e-05, + "loss": 0.2590820503234863, + "step": 13600 + }, + { + "epoch": 68.5, + "grad_norm": 0.4170261025428772, + "learning_rate": 1.5752500000000002e-05, + "loss": 0.2522945022583008, + "step": 13700 + }, + { + "epoch": 69.0, + "grad_norm": 0.4074130356311798, + "learning_rate": 1.55025e-05, + "loss": 0.256374683380127, + "step": 13800 + }, + { + "epoch": 69.5, + "grad_norm": 0.4009321331977844, + "learning_rate": 1.52525e-05, + "loss": 0.2484601593017578, + "step": 13900 + }, + { + "epoch": 70.0, + "grad_norm": 0.3586087226867676, + "learning_rate": 1.5002499999999999e-05, + "loss": 0.2519577980041504, + "step": 14000 + }, + { + "epoch": 70.5, + "grad_norm": 0.39007654786109924, + "learning_rate": 1.47525e-05, + "loss": 0.2457340431213379, + "step": 14100 + }, + { + "epoch": 71.0, + "grad_norm": 0.3830292820930481, + "learning_rate": 1.4502499999999999e-05, + "loss": 0.24784101486206056, + "step": 14200 + }, + { + "epoch": 71.5, + "grad_norm": 0.3842337429523468, + "learning_rate": 1.4252500000000001e-05, + "loss": 0.24252428054809572, + "step": 14300 + }, + { + "epoch": 72.0, + "grad_norm": 0.33969053626060486, + "learning_rate": 1.4002500000000002e-05, + "loss": 0.2472601890563965, + "step": 14400 + }, + { + "epoch": 72.5, + "grad_norm": 0.38084539771080017, + "learning_rate": 1.3752500000000001e-05, + "loss": 0.2398312759399414, + "step": 14500 + }, + { + "epoch": 73.0, + "grad_norm": 0.3362090587615967, + "learning_rate": 1.3502500000000002e-05, + "loss": 0.24383731842041015, + "step": 14600 + }, + { + "epoch": 73.5, + "grad_norm": 0.37916791439056396, + "learning_rate": 1.32525e-05, + "loss": 0.23760452270507812, + "step": 14700 + }, + { + "epoch": 74.0, + "grad_norm": 0.37284770607948303, + "learning_rate": 1.3002500000000001e-05, + "loss": 0.24114870071411132, + "step": 14800 + }, + { + "epoch": 74.5, + "grad_norm": 0.3742426633834839, + "learning_rate": 1.27525e-05, + "loss": 0.2348023223876953, + "step": 14900 + }, + { + "epoch": 75.0, + "grad_norm": 0.3935767114162445, + "learning_rate": 1.2502500000000001e-05, + "loss": 0.23796173095703124, + "step": 15000 + }, + { + "epoch": 75.5, + "grad_norm": 0.3600524365901947, + "learning_rate": 1.22525e-05, + "loss": 0.23247020721435546, + "step": 15100 + }, + { + "epoch": 76.0, + "grad_norm": 0.3458992540836334, + "learning_rate": 1.20025e-05, + "loss": 0.23637393951416016, + "step": 15200 + }, + { + "epoch": 76.5, + "grad_norm": 0.3585320711135864, + "learning_rate": 1.1752500000000001e-05, + "loss": 0.2308286476135254, + "step": 15300 + }, + { + "epoch": 77.0, + "grad_norm": 0.37773242592811584, + "learning_rate": 1.15025e-05, + "loss": 0.233690242767334, + "step": 15400 + }, + { + "epoch": 77.5, + "grad_norm": 0.3859589695930481, + "learning_rate": 1.1252500000000001e-05, + "loss": 0.2287772750854492, + "step": 15500 + }, + { + "epoch": 78.0, + "grad_norm": 0.3758644461631775, + "learning_rate": 1.10025e-05, + "loss": 0.23166227340698242, + "step": 15600 + }, + { + "epoch": 78.5, + "grad_norm": 0.3552301526069641, + "learning_rate": 1.07525e-05, + "loss": 0.2268804931640625, + "step": 15700 + }, + { + "epoch": 79.0, + "grad_norm": 0.3842378556728363, + "learning_rate": 1.05025e-05, + "loss": 0.22957588195800782, + "step": 15800 + }, + { + "epoch": 79.5, + "grad_norm": 0.33627477288246155, + "learning_rate": 1.02525e-05, + "loss": 0.22454282760620117, + "step": 15900 + }, + { + "epoch": 80.0, + "grad_norm": 0.389986515045166, + "learning_rate": 1.0002500000000001e-05, + "loss": 0.22761936187744142, + "step": 16000 + }, + { + "epoch": 80.5, + "grad_norm": 0.3108944296836853, + "learning_rate": 9.7525e-06, + "loss": 0.22338836669921874, + "step": 16100 + }, + { + "epoch": 81.0, + "grad_norm": 0.32868942618370056, + "learning_rate": 9.502500000000001e-06, + "loss": 0.22411474227905273, + "step": 16200 + }, + { + "epoch": 81.5, + "grad_norm": 0.34585270285606384, + "learning_rate": 9.2525e-06, + "loss": 0.22169002532958984, + "step": 16300 + }, + { + "epoch": 82.0, + "grad_norm": 0.3643505871295929, + "learning_rate": 9.0025e-06, + "loss": 0.22333917617797852, + "step": 16400 + }, + { + "epoch": 82.5, + "grad_norm": 0.35764428973197937, + "learning_rate": 8.752500000000001e-06, + "loss": 0.22027700424194335, + "step": 16500 + }, + { + "epoch": 83.0, + "grad_norm": 0.3697255551815033, + "learning_rate": 8.5025e-06, + "loss": 0.22190006256103514, + "step": 16600 + }, + { + "epoch": 83.5, + "grad_norm": 0.34389302134513855, + "learning_rate": 8.252500000000001e-06, + "loss": 0.21772838592529298, + "step": 16700 + }, + { + "epoch": 84.0, + "grad_norm": 0.35523974895477295, + "learning_rate": 8.0025e-06, + "loss": 0.21992773056030274, + "step": 16800 + }, + { + "epoch": 84.5, + "grad_norm": 0.33763980865478516, + "learning_rate": 7.7525e-06, + "loss": 0.21668706893920897, + "step": 16900 + }, + { + "epoch": 85.0, + "grad_norm": 0.3457420766353607, + "learning_rate": 7.5025e-06, + "loss": 0.21767711639404297, + "step": 17000 + }, + { + "epoch": 85.5, + "grad_norm": 0.34709328413009644, + "learning_rate": 7.252500000000001e-06, + "loss": 0.21578775405883788, + "step": 17100 + }, + { + "epoch": 86.0, + "grad_norm": 0.3611862361431122, + "learning_rate": 7.002500000000001e-06, + "loss": 0.21809673309326172, + "step": 17200 + }, + { + "epoch": 86.5, + "grad_norm": 0.35064128041267395, + "learning_rate": 6.7525e-06, + "loss": 0.21291667938232423, + "step": 17300 + }, + { + "epoch": 87.0, + "grad_norm": 0.35625672340393066, + "learning_rate": 6.5025e-06, + "loss": 0.21576713562011718, + "step": 17400 + }, + { + "epoch": 87.5, + "grad_norm": 0.3733029365539551, + "learning_rate": 6.2525e-06, + "loss": 0.21200632095336913, + "step": 17500 + }, + { + "epoch": 88.0, + "grad_norm": 0.34649088978767395, + "learning_rate": 6.0025000000000006e-06, + "loss": 0.2149067687988281, + "step": 17600 + }, + { + "epoch": 88.5, + "grad_norm": 0.306749165058136, + "learning_rate": 5.7525e-06, + "loss": 0.21139209747314452, + "step": 17700 + }, + { + "epoch": 89.0, + "grad_norm": 0.35020408034324646, + "learning_rate": 5.5025e-06, + "loss": 0.21399372100830077, + "step": 17800 + }, + { + "epoch": 89.5, + "grad_norm": 0.31811031699180603, + "learning_rate": 5.2525e-06, + "loss": 0.2106713104248047, + "step": 17900 + }, + { + "epoch": 90.0, + "grad_norm": 0.315910667181015, + "learning_rate": 5.0025e-06, + "loss": 0.21184038162231444, + "step": 18000 + }, + { + "epoch": 90.5, + "grad_norm": 0.3591602146625519, + "learning_rate": 4.755e-06, + "loss": 0.2087250518798828, + "step": 18100 + }, + { + "epoch": 91.0, + "grad_norm": 0.2959374189376831, + "learning_rate": 4.505e-06, + "loss": 0.2099794006347656, + "step": 18200 + }, + { + "epoch": 91.5, + "grad_norm": 0.2833845317363739, + "learning_rate": 4.255e-06, + "loss": 0.20827140808105468, + "step": 18300 + }, + { + "epoch": 92.0, + "grad_norm": 0.33928927779197693, + "learning_rate": 4.005000000000001e-06, + "loss": 0.20932321548461913, + "step": 18400 + }, + { + "epoch": 92.5, + "grad_norm": 0.321674644947052, + "learning_rate": 3.755e-06, + "loss": 0.205947322845459, + "step": 18500 + }, + { + "epoch": 93.0, + "grad_norm": 0.2966731786727905, + "learning_rate": 3.505e-06, + "loss": 0.20795421600341796, + "step": 18600 + }, + { + "epoch": 93.5, + "grad_norm": 0.3216817378997803, + "learning_rate": 3.2550000000000006e-06, + "loss": 0.20623821258544922, + "step": 18700 + }, + { + "epoch": 94.0, + "grad_norm": 0.35450977087020874, + "learning_rate": 3.005e-06, + "loss": 0.20804498672485353, + "step": 18800 + }, + { + "epoch": 94.5, + "grad_norm": 0.2994995415210724, + "learning_rate": 2.7550000000000003e-06, + "loss": 0.20724256515502928, + "step": 18900 + }, + { + "epoch": 95.0, + "grad_norm": 0.3332589566707611, + "learning_rate": 2.505e-06, + "loss": 0.2055183982849121, + "step": 19000 + }, + { + "epoch": 95.5, + "grad_norm": 0.30346137285232544, + "learning_rate": 2.255e-06, + "loss": 0.2049989128112793, + "step": 19100 + }, + { + "epoch": 96.0, + "grad_norm": 0.2948566973209381, + "learning_rate": 2.005e-06, + "loss": 0.20483097076416015, + "step": 19200 + }, + { + "epoch": 96.5, + "grad_norm": 0.3213671147823334, + "learning_rate": 1.7550000000000001e-06, + "loss": 0.20349571228027344, + "step": 19300 + }, + { + "epoch": 97.0, + "grad_norm": 0.30940669775009155, + "learning_rate": 1.505e-06, + "loss": 0.20510492324829102, + "step": 19400 + }, + { + "epoch": 97.5, + "grad_norm": 0.29669439792633057, + "learning_rate": 1.255e-06, + "loss": 0.20321809768676757, + "step": 19500 + }, + { + "epoch": 98.0, + "grad_norm": 0.3040596544742584, + "learning_rate": 1.0050000000000001e-06, + "loss": 0.20417285919189454, + "step": 19600 + } + ], + "logging_steps": 100, + "max_steps": 20000, + "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": 1.07229654024192e+16, + "train_batch_size": 8, + "trial_name": null, + "trial_params": null +} diff --git a/timecost/n6/realtabformer/rtf-n6-20260429_070345/rtf_checkpoints/checkpoint-19600/training_args.bin b/timecost/n6/realtabformer/rtf-n6-20260429_070345/rtf_checkpoints/checkpoint-19600/training_args.bin new file mode 100644 index 0000000000000000000000000000000000000000..34d68dc0e0fe1c1f12a2e581dd1b166aa7178a9e --- /dev/null +++ b/timecost/n6/realtabformer/rtf-n6-20260429_070345/rtf_checkpoints/checkpoint-19600/training_args.bin @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:9e2cd88337d1d846c6918d2b3b63fa3e5c93f12fefc082497590da854a564607 +size 5201 diff --git a/timecost/n6/realtabformer/rtf-n6-20260429_070345/rtf_checkpoints/checkpoint-19700/config.json b/timecost/n6/realtabformer/rtf-n6-20260429_070345/rtf_checkpoints/checkpoint-19700/config.json new file mode 100644 index 0000000000000000000000000000000000000000..ec3451e1a76244eef3e5bbfa6dfc2b2176f6aef9 --- /dev/null +++ b/timecost/n6/realtabformer/rtf-n6-20260429_070345/rtf_checkpoints/checkpoint-19700/config.json @@ -0,0 +1,34 @@ +{ + "activation_function": "gelu_new", + "add_cross_attention": false, + "architectures": [ + "GPT2LMHeadModel" + ], + "attn_pdrop": 0.1, + "bos_token_id": 5, + "dtype": "float32", + "embd_pdrop": 0.1, + "eos_token_id": 6, + "initializer_range": 0.02, + "layer_norm_epsilon": 1e-05, + "model_type": "gpt2", + "n_embd": 768, + "n_head": 12, + "n_inner": null, + "n_layer": 6, + "n_positions": 1024, + "pad_token_id": null, + "reorder_and_upcast_attn": false, + "resid_pdrop": 0.1, + "scale_attn_by_inverse_layer_idx": false, + "scale_attn_weights": true, + "summary_activation": null, + "summary_first_dropout": 0.1, + "summary_proj_to_labels": true, + "summary_type": "cls_index", + "summary_use_proj": true, + "tie_word_embeddings": true, + "transformers_version": "5.5.3", + "use_cache": false, + "vocab_size": 419 +} diff --git a/timecost/n6/realtabformer/rtf-n6-20260429_070345/rtf_checkpoints/checkpoint-19700/generation_config.json b/timecost/n6/realtabformer/rtf-n6-20260429_070345/rtf_checkpoints/checkpoint-19700/generation_config.json new file mode 100644 index 0000000000000000000000000000000000000000..ffe89567780e75b5c22eade9be971483b9618f39 --- /dev/null +++ b/timecost/n6/realtabformer/rtf-n6-20260429_070345/rtf_checkpoints/checkpoint-19700/generation_config.json @@ -0,0 +1,9 @@ +{ + "_from_model_config": true, + "bos_token_id": 5, + "eos_token_id": 6, + "output_attentions": false, + "output_hidden_states": false, + "transformers_version": "5.5.3", + "use_cache": true +} diff --git a/timecost/n6/realtabformer/rtf-n6-20260429_070345/rtf_checkpoints/checkpoint-19700/model.safetensors b/timecost/n6/realtabformer/rtf-n6-20260429_070345/rtf_checkpoints/checkpoint-19700/model.safetensors new file mode 100644 index 0000000000000000000000000000000000000000..12e8f7020b76a7a14f017c4cefc8f2d794eb496d --- /dev/null +++ b/timecost/n6/realtabformer/rtf-n6-20260429_070345/rtf_checkpoints/checkpoint-19700/model.safetensors @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:08841853427eeaf21295da5d3723dafc53f8ed646d62143e306dbe2e284a8ae1 +size 174555592 diff --git a/timecost/n6/realtabformer/rtf-n6-20260429_070345/rtf_checkpoints/checkpoint-19700/optimizer.pt b/timecost/n6/realtabformer/rtf-n6-20260429_070345/rtf_checkpoints/checkpoint-19700/optimizer.pt new file mode 100644 index 0000000000000000000000000000000000000000..044770948cebb27cbe4951c6b3cabec24e899bea --- /dev/null +++ b/timecost/n6/realtabformer/rtf-n6-20260429_070345/rtf_checkpoints/checkpoint-19700/optimizer.pt @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:a31e3ce9934a2044a2904d0de72310ff7b97f010d796bd78cf676e90fff50f36 +size 349160267 diff --git a/timecost/n6/realtabformer/rtf-n6-20260429_070345/rtf_checkpoints/checkpoint-19700/rng_state.pth b/timecost/n6/realtabformer/rtf-n6-20260429_070345/rtf_checkpoints/checkpoint-19700/rng_state.pth new file mode 100644 index 0000000000000000000000000000000000000000..f42e271acbb906992388885af69ca971ecff3b99 --- /dev/null +++ b/timecost/n6/realtabformer/rtf-n6-20260429_070345/rtf_checkpoints/checkpoint-19700/rng_state.pth @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:2bbfbf6dead584a25639decdae0e540fccb14ea7b60f6b203389a7822457f788 +size 14645 diff --git a/timecost/n6/realtabformer/rtf-n6-20260429_070345/rtf_checkpoints/checkpoint-19700/scaler.pt b/timecost/n6/realtabformer/rtf-n6-20260429_070345/rtf_checkpoints/checkpoint-19700/scaler.pt new file mode 100644 index 0000000000000000000000000000000000000000..c3dddc03aa2c737406a5d94eaa965658e7ca2fda --- /dev/null +++ b/timecost/n6/realtabformer/rtf-n6-20260429_070345/rtf_checkpoints/checkpoint-19700/scaler.pt @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:38f0ac5fb2fbde79444986550beec08bea79f26aea747bad5be5458c47777e02 +size 1383 diff --git a/timecost/n6/realtabformer/rtf-n6-20260429_070345/rtf_checkpoints/checkpoint-19700/scheduler.pt b/timecost/n6/realtabformer/rtf-n6-20260429_070345/rtf_checkpoints/checkpoint-19700/scheduler.pt new file mode 100644 index 0000000000000000000000000000000000000000..04659002662e2db849996c2fb9f9bea64784e78f --- /dev/null +++ b/timecost/n6/realtabformer/rtf-n6-20260429_070345/rtf_checkpoints/checkpoint-19700/scheduler.pt @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:d583af64e3eb8fdf8abfce2031e3704583bb943b2f40cd0eda292aac6543eb3b +size 1465 diff --git a/timecost/n6/realtabformer/rtf-n6-20260429_070345/rtf_checkpoints/checkpoint-19700/trainer_state.json b/timecost/n6/realtabformer/rtf-n6-20260429_070345/rtf_checkpoints/checkpoint-19700/trainer_state.json new file mode 100644 index 0000000000000000000000000000000000000000..1ed7ac7ee79a13cca8a6840a05a9aba983301f6e --- /dev/null +++ b/timecost/n6/realtabformer/rtf-n6-20260429_070345/rtf_checkpoints/checkpoint-19700/trainer_state.json @@ -0,0 +1,1413 @@ +{ + "best_global_step": null, + "best_metric": null, + "best_model_checkpoint": null, + "epoch": 98.5, + "eval_steps": 100, + "global_step": 19700, + "is_hyper_param_search": false, + "is_local_process_zero": true, + "is_world_process_zero": true, + "log_history": [ + { + "epoch": 0.5, + "grad_norm": 0.23846545815467834, + "learning_rate": 4.97525e-05, + "loss": 1.9802227783203126, + "step": 100 + }, + { + "epoch": 1.0, + "grad_norm": 0.20555852353572845, + "learning_rate": 4.95025e-05, + "loss": 1.1221817779541015, + "step": 200 + }, + { + "epoch": 1.5, + "grad_norm": 0.21700991690158844, + "learning_rate": 4.92525e-05, + "loss": 1.0643415832519532, + "step": 300 + }, + { + "epoch": 2.0, + "grad_norm": 0.2044236809015274, + "learning_rate": 4.9002500000000004e-05, + "loss": 1.0245947265625, + "step": 400 + }, + { + "epoch": 2.5, + "grad_norm": 0.18077734112739563, + "learning_rate": 4.87525e-05, + "loss": 1.0032696533203125, + "step": 500 + }, + { + "epoch": 3.0, + "grad_norm": 0.19198282063007355, + "learning_rate": 4.85025e-05, + "loss": 1.0093541717529297, + "step": 600 + }, + { + "epoch": 3.5, + "grad_norm": 0.1984235793352127, + "learning_rate": 4.82525e-05, + "loss": 0.9847814178466797, + "step": 700 + }, + { + "epoch": 4.0, + "grad_norm": 0.17152079939842224, + "learning_rate": 4.80025e-05, + "loss": 0.982783203125, + "step": 800 + }, + { + "epoch": 4.5, + "grad_norm": 0.1930670440196991, + "learning_rate": 4.77525e-05, + "loss": 0.9716933441162109, + "step": 900 + }, + { + "epoch": 5.0, + "grad_norm": 0.19108322262763977, + "learning_rate": 4.75025e-05, + "loss": 0.9630477142333984, + "step": 1000 + }, + { + "epoch": 5.5, + "grad_norm": 0.1854381561279297, + "learning_rate": 4.72525e-05, + "loss": 0.9538239288330078, + "step": 1100 + }, + { + "epoch": 6.0, + "grad_norm": 0.17531616985797882, + "learning_rate": 4.70025e-05, + "loss": 0.95813720703125, + "step": 1200 + }, + { + "epoch": 6.5, + "grad_norm": 0.1815650910139084, + "learning_rate": 4.6752500000000003e-05, + "loss": 0.946460952758789, + "step": 1300 + }, + { + "epoch": 7.0, + "grad_norm": 0.19417639076709747, + "learning_rate": 4.6502500000000004e-05, + "loss": 0.9453800201416016, + "step": 1400 + }, + { + "epoch": 7.5, + "grad_norm": 0.1870127171278, + "learning_rate": 4.6252500000000005e-05, + "loss": 0.937877426147461, + "step": 1500 + }, + { + "epoch": 8.0, + "grad_norm": 0.1704702377319336, + "learning_rate": 4.6002500000000006e-05, + "loss": 0.9351255035400391, + "step": 1600 + }, + { + "epoch": 8.5, + "grad_norm": 0.18080289661884308, + "learning_rate": 4.5752500000000006e-05, + "loss": 0.9263742065429688, + "step": 1700 + }, + { + "epoch": 9.0, + "grad_norm": 0.18863996863365173, + "learning_rate": 4.55025e-05, + "loss": 0.9295844268798829, + "step": 1800 + }, + { + "epoch": 9.5, + "grad_norm": 0.19748634099960327, + "learning_rate": 4.52525e-05, + "loss": 0.9196556091308594, + "step": 1900 + }, + { + "epoch": 10.0, + "grad_norm": 0.20166783034801483, + "learning_rate": 4.50025e-05, + "loss": 0.9205670166015625, + "step": 2000 + }, + { + "epoch": 10.5, + "grad_norm": 0.19421179592609406, + "learning_rate": 4.47525e-05, + "loss": 0.9092935943603515, + "step": 2100 + }, + { + "epoch": 11.0, + "grad_norm": 0.17364448308944702, + "learning_rate": 4.45025e-05, + "loss": 0.9160775756835937, + "step": 2200 + }, + { + "epoch": 11.5, + "grad_norm": 0.1992802619934082, + "learning_rate": 4.4252500000000004e-05, + "loss": 0.9015705108642578, + "step": 2300 + }, + { + "epoch": 12.0, + "grad_norm": 0.20152443647384644, + "learning_rate": 4.4002500000000004e-05, + "loss": 0.9061229705810547, + "step": 2400 + }, + { + "epoch": 12.5, + "grad_norm": 0.2132837325334549, + "learning_rate": 4.3752500000000005e-05, + "loss": 0.8934657287597656, + "step": 2500 + }, + { + "epoch": 13.0, + "grad_norm": 0.19080808758735657, + "learning_rate": 4.35025e-05, + "loss": 0.899046401977539, + "step": 2600 + }, + { + "epoch": 13.5, + "grad_norm": 0.189740389585495, + "learning_rate": 4.32525e-05, + "loss": 0.8842880249023437, + "step": 2700 + }, + { + "epoch": 14.0, + "grad_norm": 0.20881056785583496, + "learning_rate": 4.30025e-05, + "loss": 0.8902586364746093, + "step": 2800 + }, + { + "epoch": 14.5, + "grad_norm": 0.20233558118343353, + "learning_rate": 4.27525e-05, + "loss": 0.8781875610351563, + "step": 2900 + }, + { + "epoch": 15.0, + "grad_norm": 0.20733879506587982, + "learning_rate": 4.25025e-05, + "loss": 0.8796215057373047, + "step": 3000 + }, + { + "epoch": 15.5, + "grad_norm": 0.20945705473423004, + "learning_rate": 4.22525e-05, + "loss": 0.8660121154785156, + "step": 3100 + }, + { + "epoch": 16.0, + "grad_norm": 0.2075275033712387, + "learning_rate": 4.20025e-05, + "loss": 0.872025146484375, + "step": 3200 + }, + { + "epoch": 16.5, + "grad_norm": 0.20175659656524658, + "learning_rate": 4.17525e-05, + "loss": 0.8569779968261719, + "step": 3300 + }, + { + "epoch": 17.0, + "grad_norm": 0.20709975063800812, + "learning_rate": 4.15025e-05, + "loss": 0.8622282409667968, + "step": 3400 + }, + { + "epoch": 17.5, + "grad_norm": 0.22440586984157562, + "learning_rate": 4.12525e-05, + "loss": 0.844241943359375, + "step": 3500 + }, + { + "epoch": 18.0, + "grad_norm": 0.2280527651309967, + "learning_rate": 4.10025e-05, + "loss": 0.8529148864746093, + "step": 3600 + }, + { + "epoch": 18.5, + "grad_norm": 0.22750917077064514, + "learning_rate": 4.075250000000001e-05, + "loss": 0.8350860595703125, + "step": 3700 + }, + { + "epoch": 19.0, + "grad_norm": 0.23036035895347595, + "learning_rate": 4.050250000000001e-05, + "loss": 0.8406881713867187, + "step": 3800 + }, + { + "epoch": 19.5, + "grad_norm": 0.24683690071105957, + "learning_rate": 4.02525e-05, + "loss": 0.8201627349853515, + "step": 3900 + }, + { + "epoch": 20.0, + "grad_norm": 0.22586171329021454, + "learning_rate": 4.00025e-05, + "loss": 0.8348744201660157, + "step": 4000 + }, + { + "epoch": 20.5, + "grad_norm": 0.25476565957069397, + "learning_rate": 3.97525e-05, + "loss": 0.8094847869873046, + "step": 4100 + }, + { + "epoch": 21.0, + "grad_norm": 0.26058006286621094, + "learning_rate": 3.95025e-05, + "loss": 0.821390380859375, + "step": 4200 + }, + { + "epoch": 21.5, + "grad_norm": 0.26972848176956177, + "learning_rate": 3.9252500000000004e-05, + "loss": 0.795047607421875, + "step": 4300 + }, + { + "epoch": 22.0, + "grad_norm": 0.24889031052589417, + "learning_rate": 3.9002500000000005e-05, + "loss": 0.8084414672851562, + "step": 4400 + }, + { + "epoch": 22.5, + "grad_norm": 0.2630121111869812, + "learning_rate": 3.8752500000000005e-05, + "loss": 0.7835968017578125, + "step": 4500 + }, + { + "epoch": 23.0, + "grad_norm": 0.264941543340683, + "learning_rate": 3.85025e-05, + "loss": 0.7941561889648437, + "step": 4600 + }, + { + "epoch": 23.5, + "grad_norm": 0.27832189202308655, + "learning_rate": 3.82525e-05, + "loss": 0.7683060455322266, + "step": 4700 + }, + { + "epoch": 24.0, + "grad_norm": 0.281009316444397, + "learning_rate": 3.80025e-05, + "loss": 0.7814789581298828, + "step": 4800 + }, + { + "epoch": 24.5, + "grad_norm": 0.2838248312473297, + "learning_rate": 3.77525e-05, + "loss": 0.7542767333984375, + "step": 4900 + }, + { + "epoch": 25.0, + "grad_norm": 0.29682639241218567, + "learning_rate": 3.75025e-05, + "loss": 0.7639364624023437, + "step": 5000 + }, + { + "epoch": 25.5, + "grad_norm": 0.2911108732223511, + "learning_rate": 3.72525e-05, + "loss": 0.7374829864501953, + "step": 5100 + }, + { + "epoch": 26.0, + "grad_norm": 0.3080083727836609, + "learning_rate": 3.7002500000000004e-05, + "loss": 0.7494142150878906, + "step": 5200 + }, + { + "epoch": 26.5, + "grad_norm": 0.31476718187332153, + "learning_rate": 3.67525e-05, + "loss": 0.7209281158447266, + "step": 5300 + }, + { + "epoch": 27.0, + "grad_norm": 0.3073391914367676, + "learning_rate": 3.65025e-05, + "loss": 0.7341756439208984, + "step": 5400 + }, + { + "epoch": 27.5, + "grad_norm": 0.3170262575149536, + "learning_rate": 3.62525e-05, + "loss": 0.7062877655029297, + "step": 5500 + }, + { + "epoch": 28.0, + "grad_norm": 0.3416720926761627, + "learning_rate": 3.60025e-05, + "loss": 0.7143956756591797, + "step": 5600 + }, + { + "epoch": 28.5, + "grad_norm": 0.32180145382881165, + "learning_rate": 3.57525e-05, + "loss": 0.6863983917236328, + "step": 5700 + }, + { + "epoch": 29.0, + "grad_norm": 0.3320668935775757, + "learning_rate": 3.55025e-05, + "loss": 0.6965797424316407, + "step": 5800 + }, + { + "epoch": 29.5, + "grad_norm": 0.3459661900997162, + "learning_rate": 3.52525e-05, + "loss": 0.665050048828125, + "step": 5900 + }, + { + "epoch": 30.0, + "grad_norm": 0.36955904960632324, + "learning_rate": 3.50025e-05, + "loss": 0.6811283111572266, + "step": 6000 + }, + { + "epoch": 30.5, + "grad_norm": 0.353595107793808, + "learning_rate": 3.4752499999999996e-05, + "loss": 0.6494364166259765, + "step": 6100 + }, + { + "epoch": 31.0, + "grad_norm": 0.3724261224269867, + "learning_rate": 3.4502500000000004e-05, + "loss": 0.6602011871337891, + "step": 6200 + }, + { + "epoch": 31.5, + "grad_norm": 0.3622111976146698, + "learning_rate": 3.4252500000000005e-05, + "loss": 0.6292791748046875, + "step": 6300 + }, + { + "epoch": 32.0, + "grad_norm": 0.3871346414089203, + "learning_rate": 3.4002500000000005e-05, + "loss": 0.6412000274658203, + "step": 6400 + }, + { + "epoch": 32.5, + "grad_norm": 0.37466201186180115, + "learning_rate": 3.3752500000000006e-05, + "loss": 0.6076009750366211, + "step": 6500 + }, + { + "epoch": 33.0, + "grad_norm": 0.38774964213371277, + "learning_rate": 3.350250000000001e-05, + "loss": 0.6244126892089844, + "step": 6600 + }, + { + "epoch": 33.5, + "grad_norm": 0.40086090564727783, + "learning_rate": 3.32525e-05, + "loss": 0.5891850662231445, + "step": 6700 + }, + { + "epoch": 34.0, + "grad_norm": 0.397621214389801, + "learning_rate": 3.30025e-05, + "loss": 0.6025267791748047, + "step": 6800 + }, + { + "epoch": 34.5, + "grad_norm": 0.38964155316352844, + "learning_rate": 3.27525e-05, + "loss": 0.5694293975830078, + "step": 6900 + }, + { + "epoch": 35.0, + "grad_norm": 0.41882845759391785, + "learning_rate": 3.25025e-05, + "loss": 0.5855500030517579, + "step": 7000 + }, + { + "epoch": 35.5, + "grad_norm": 0.3957461416721344, + "learning_rate": 3.22525e-05, + "loss": 0.5524356079101562, + "step": 7100 + }, + { + "epoch": 36.0, + "grad_norm": 0.4124171733856201, + "learning_rate": 3.2002500000000004e-05, + "loss": 0.5658663940429688, + "step": 7200 + }, + { + "epoch": 36.5, + "grad_norm": 0.41649162769317627, + "learning_rate": 3.1752500000000005e-05, + "loss": 0.5332207107543945, + "step": 7300 + }, + { + "epoch": 37.0, + "grad_norm": 0.4282434284687042, + "learning_rate": 3.15025e-05, + "loss": 0.5502962112426758, + "step": 7400 + }, + { + "epoch": 37.5, + "grad_norm": 0.4211678206920624, + "learning_rate": 3.12525e-05, + "loss": 0.5135954666137695, + "step": 7500 + }, + { + "epoch": 38.0, + "grad_norm": 0.4331444799900055, + "learning_rate": 3.10025e-05, + "loss": 0.527672119140625, + "step": 7600 + }, + { + "epoch": 38.5, + "grad_norm": 0.40753164887428284, + "learning_rate": 3.07525e-05, + "loss": 0.49722877502441404, + "step": 7700 + }, + { + "epoch": 39.0, + "grad_norm": 0.4255908131599426, + "learning_rate": 3.05025e-05, + "loss": 0.5126309585571289, + "step": 7800 + }, + { + "epoch": 39.5, + "grad_norm": 0.43637004494667053, + "learning_rate": 3.02525e-05, + "loss": 0.4813387680053711, + "step": 7900 + }, + { + "epoch": 40.0, + "grad_norm": 0.439633309841156, + "learning_rate": 3.00025e-05, + "loss": 0.49494590759277346, + "step": 8000 + }, + { + "epoch": 40.5, + "grad_norm": 0.4367655813694, + "learning_rate": 2.97525e-05, + "loss": 0.46536773681640625, + "step": 8100 + }, + { + "epoch": 41.0, + "grad_norm": 0.4501303732395172, + "learning_rate": 2.95025e-05, + "loss": 0.4779759216308594, + "step": 8200 + }, + { + "epoch": 41.5, + "grad_norm": 0.44598305225372314, + "learning_rate": 2.9252499999999998e-05, + "loss": 0.45186782836914063, + "step": 8300 + }, + { + "epoch": 42.0, + "grad_norm": 0.44075384736061096, + "learning_rate": 2.90025e-05, + "loss": 0.46137031555175784, + "step": 8400 + }, + { + "epoch": 42.5, + "grad_norm": 0.4338615834712982, + "learning_rate": 2.87525e-05, + "loss": 0.43537315368652346, + "step": 8500 + }, + { + "epoch": 43.0, + "grad_norm": 0.4544128477573395, + "learning_rate": 2.85025e-05, + "loss": 0.44546558380126955, + "step": 8600 + }, + { + "epoch": 43.5, + "grad_norm": 0.4372069537639618, + "learning_rate": 2.8252500000000004e-05, + "loss": 0.4216377639770508, + "step": 8700 + }, + { + "epoch": 44.0, + "grad_norm": 0.44973990321159363, + "learning_rate": 2.8002500000000005e-05, + "loss": 0.4316849136352539, + "step": 8800 + }, + { + "epoch": 44.5, + "grad_norm": 0.44243016839027405, + "learning_rate": 2.7752500000000002e-05, + "loss": 0.4082369613647461, + "step": 8900 + }, + { + "epoch": 45.0, + "grad_norm": 0.44320249557495117, + "learning_rate": 2.7502500000000003e-05, + "loss": 0.4201020050048828, + "step": 9000 + }, + { + "epoch": 45.5, + "grad_norm": 0.44853946566581726, + "learning_rate": 2.7252500000000004e-05, + "loss": 0.39533462524414065, + "step": 9100 + }, + { + "epoch": 46.0, + "grad_norm": 0.4522981345653534, + "learning_rate": 2.7002500000000004e-05, + "loss": 0.4059659194946289, + "step": 9200 + }, + { + "epoch": 46.5, + "grad_norm": 0.43445703387260437, + "learning_rate": 2.6752500000000002e-05, + "loss": 0.38393875122070314, + "step": 9300 + }, + { + "epoch": 47.0, + "grad_norm": 0.44054123759269714, + "learning_rate": 2.6502500000000002e-05, + "loss": 0.3942867279052734, + "step": 9400 + }, + { + "epoch": 47.5, + "grad_norm": 0.46875321865081787, + "learning_rate": 2.6252500000000003e-05, + "loss": 0.37364906311035156, + "step": 9500 + }, + { + "epoch": 48.0, + "grad_norm": 0.4392513036727905, + "learning_rate": 2.60025e-05, + "loss": 0.38418922424316404, + "step": 9600 + }, + { + "epoch": 48.5, + "grad_norm": 0.44256582856178284, + "learning_rate": 2.57525e-05, + "loss": 0.36397621154785154, + "step": 9700 + }, + { + "epoch": 49.0, + "grad_norm": 0.4096059203147888, + "learning_rate": 2.5502500000000002e-05, + "loss": 0.37398372650146483, + "step": 9800 + }, + { + "epoch": 49.5, + "grad_norm": 0.4084298014640808, + "learning_rate": 2.5252500000000003e-05, + "loss": 0.3530607223510742, + "step": 9900 + }, + { + "epoch": 50.0, + "grad_norm": 0.4513794779777527, + "learning_rate": 2.50025e-05, + "loss": 0.3632556915283203, + "step": 10000 + }, + { + "epoch": 50.5, + "grad_norm": 0.3950716257095337, + "learning_rate": 2.47525e-05, + "loss": 0.34567554473876955, + "step": 10100 + }, + { + "epoch": 51.0, + "grad_norm": 0.4658626914024353, + "learning_rate": 2.45025e-05, + "loss": 0.3531562042236328, + "step": 10200 + }, + { + "epoch": 51.5, + "grad_norm": 0.40074118971824646, + "learning_rate": 2.42525e-05, + "loss": 0.3368285369873047, + "step": 10300 + }, + { + "epoch": 52.0, + "grad_norm": 0.43490293622016907, + "learning_rate": 2.40025e-05, + "loss": 0.34483592987060546, + "step": 10400 + }, + { + "epoch": 52.5, + "grad_norm": 0.43086978793144226, + "learning_rate": 2.37525e-05, + "loss": 0.3291225814819336, + "step": 10500 + }, + { + "epoch": 53.0, + "grad_norm": 0.4458702504634857, + "learning_rate": 2.35025e-05, + "loss": 0.3378773880004883, + "step": 10600 + }, + { + "epoch": 53.5, + "grad_norm": 0.4361683130264282, + "learning_rate": 2.32525e-05, + "loss": 0.3223386001586914, + "step": 10700 + }, + { + "epoch": 54.0, + "grad_norm": 0.46678826212882996, + "learning_rate": 2.3002500000000002e-05, + "loss": 0.3297463607788086, + "step": 10800 + }, + { + "epoch": 54.5, + "grad_norm": 0.41767755150794983, + "learning_rate": 2.2752500000000003e-05, + "loss": 0.315598201751709, + "step": 10900 + }, + { + "epoch": 55.0, + "grad_norm": 0.4470875561237335, + "learning_rate": 2.25025e-05, + "loss": 0.32347301483154295, + "step": 11000 + }, + { + "epoch": 55.5, + "grad_norm": 0.4591546654701233, + "learning_rate": 2.22525e-05, + "loss": 0.31086679458618166, + "step": 11100 + }, + { + "epoch": 56.0, + "grad_norm": 0.44901204109191895, + "learning_rate": 2.20025e-05, + "loss": 0.31777124404907225, + "step": 11200 + }, + { + "epoch": 56.5, + "grad_norm": 0.41419050097465515, + "learning_rate": 2.1752500000000002e-05, + "loss": 0.30351598739624025, + "step": 11300 + }, + { + "epoch": 57.0, + "grad_norm": 0.43349865078926086, + "learning_rate": 2.15025e-05, + "loss": 0.3107553863525391, + "step": 11400 + }, + { + "epoch": 57.5, + "grad_norm": 0.4324033558368683, + "learning_rate": 2.12525e-05, + "loss": 0.2977292823791504, + "step": 11500 + }, + { + "epoch": 58.0, + "grad_norm": 0.43435463309288025, + "learning_rate": 2.10025e-05, + "loss": 0.30380510330200194, + "step": 11600 + }, + { + "epoch": 58.5, + "grad_norm": 0.36328092217445374, + "learning_rate": 2.0752499999999998e-05, + "loss": 0.2924338722229004, + "step": 11700 + }, + { + "epoch": 59.0, + "grad_norm": 0.4179525673389435, + "learning_rate": 2.0502500000000002e-05, + "loss": 0.29900590896606444, + "step": 11800 + }, + { + "epoch": 59.5, + "grad_norm": 0.38387784361839294, + "learning_rate": 2.0252500000000003e-05, + "loss": 0.28634124755859375, + "step": 11900 + }, + { + "epoch": 60.0, + "grad_norm": 0.4128117561340332, + "learning_rate": 2.00025e-05, + "loss": 0.2923979187011719, + "step": 12000 + }, + { + "epoch": 60.5, + "grad_norm": 0.4330095648765564, + "learning_rate": 1.97525e-05, + "loss": 0.28179628372192383, + "step": 12100 + }, + { + "epoch": 61.0, + "grad_norm": 0.42764198780059814, + "learning_rate": 1.9502500000000002e-05, + "loss": 0.2868915367126465, + "step": 12200 + }, + { + "epoch": 61.5, + "grad_norm": 0.39329856634140015, + "learning_rate": 1.9252500000000002e-05, + "loss": 0.2775389289855957, + "step": 12300 + }, + { + "epoch": 62.0, + "grad_norm": 0.3947943449020386, + "learning_rate": 1.90025e-05, + "loss": 0.2824789810180664, + "step": 12400 + }, + { + "epoch": 62.5, + "grad_norm": 0.4083310067653656, + "learning_rate": 1.87525e-05, + "loss": 0.2729552459716797, + "step": 12500 + }, + { + "epoch": 63.0, + "grad_norm": 0.4008137285709381, + "learning_rate": 1.85025e-05, + "loss": 0.27841379165649416, + "step": 12600 + }, + { + "epoch": 63.5, + "grad_norm": 0.3896923363208771, + "learning_rate": 1.82525e-05, + "loss": 0.2697013282775879, + "step": 12700 + }, + { + "epoch": 64.0, + "grad_norm": 0.41712749004364014, + "learning_rate": 1.80025e-05, + "loss": 0.27453325271606444, + "step": 12800 + }, + { + "epoch": 64.5, + "grad_norm": 0.38217687606811523, + "learning_rate": 1.77525e-05, + "loss": 0.26497941970825195, + "step": 12900 + }, + { + "epoch": 65.0, + "grad_norm": 0.4228459596633911, + "learning_rate": 1.75025e-05, + "loss": 0.26899080276489257, + "step": 13000 + }, + { + "epoch": 65.5, + "grad_norm": 0.384003221988678, + "learning_rate": 1.72525e-05, + "loss": 0.26288330078125, + "step": 13100 + }, + { + "epoch": 66.0, + "grad_norm": 0.4040643572807312, + "learning_rate": 1.7002500000000002e-05, + "loss": 0.2662550926208496, + "step": 13200 + }, + { + "epoch": 66.5, + "grad_norm": 0.3715139627456665, + "learning_rate": 1.6752500000000003e-05, + "loss": 0.25743928909301755, + "step": 13300 + }, + { + "epoch": 67.0, + "grad_norm": 0.382761150598526, + "learning_rate": 1.65025e-05, + "loss": 0.2623816680908203, + "step": 13400 + }, + { + "epoch": 67.5, + "grad_norm": 0.4100727140903473, + "learning_rate": 1.62525e-05, + "loss": 0.25506450653076174, + "step": 13500 + }, + { + "epoch": 68.0, + "grad_norm": 0.36104685068130493, + "learning_rate": 1.60025e-05, + "loss": 0.2590820503234863, + "step": 13600 + }, + { + "epoch": 68.5, + "grad_norm": 0.4170261025428772, + "learning_rate": 1.5752500000000002e-05, + "loss": 0.2522945022583008, + "step": 13700 + }, + { + "epoch": 69.0, + "grad_norm": 0.4074130356311798, + "learning_rate": 1.55025e-05, + "loss": 0.256374683380127, + "step": 13800 + }, + { + "epoch": 69.5, + "grad_norm": 0.4009321331977844, + "learning_rate": 1.52525e-05, + "loss": 0.2484601593017578, + "step": 13900 + }, + { + "epoch": 70.0, + "grad_norm": 0.3586087226867676, + "learning_rate": 1.5002499999999999e-05, + "loss": 0.2519577980041504, + "step": 14000 + }, + { + "epoch": 70.5, + "grad_norm": 0.39007654786109924, + "learning_rate": 1.47525e-05, + "loss": 0.2457340431213379, + "step": 14100 + }, + { + "epoch": 71.0, + "grad_norm": 0.3830292820930481, + "learning_rate": 1.4502499999999999e-05, + "loss": 0.24784101486206056, + "step": 14200 + }, + { + "epoch": 71.5, + "grad_norm": 0.3842337429523468, + "learning_rate": 1.4252500000000001e-05, + "loss": 0.24252428054809572, + "step": 14300 + }, + { + "epoch": 72.0, + "grad_norm": 0.33969053626060486, + "learning_rate": 1.4002500000000002e-05, + "loss": 0.2472601890563965, + "step": 14400 + }, + { + "epoch": 72.5, + "grad_norm": 0.38084539771080017, + "learning_rate": 1.3752500000000001e-05, + "loss": 0.2398312759399414, + "step": 14500 + }, + { + "epoch": 73.0, + "grad_norm": 0.3362090587615967, + "learning_rate": 1.3502500000000002e-05, + "loss": 0.24383731842041015, + "step": 14600 + }, + { + "epoch": 73.5, + "grad_norm": 0.37916791439056396, + "learning_rate": 1.32525e-05, + "loss": 0.23760452270507812, + "step": 14700 + }, + { + "epoch": 74.0, + "grad_norm": 0.37284770607948303, + "learning_rate": 1.3002500000000001e-05, + "loss": 0.24114870071411132, + "step": 14800 + }, + { + "epoch": 74.5, + "grad_norm": 0.3742426633834839, + "learning_rate": 1.27525e-05, + "loss": 0.2348023223876953, + "step": 14900 + }, + { + "epoch": 75.0, + "grad_norm": 0.3935767114162445, + "learning_rate": 1.2502500000000001e-05, + "loss": 0.23796173095703124, + "step": 15000 + }, + { + "epoch": 75.5, + "grad_norm": 0.3600524365901947, + "learning_rate": 1.22525e-05, + "loss": 0.23247020721435546, + "step": 15100 + }, + { + "epoch": 76.0, + "grad_norm": 0.3458992540836334, + "learning_rate": 1.20025e-05, + "loss": 0.23637393951416016, + "step": 15200 + }, + { + "epoch": 76.5, + "grad_norm": 0.3585320711135864, + "learning_rate": 1.1752500000000001e-05, + "loss": 0.2308286476135254, + "step": 15300 + }, + { + "epoch": 77.0, + "grad_norm": 0.37773242592811584, + "learning_rate": 1.15025e-05, + "loss": 0.233690242767334, + "step": 15400 + }, + { + "epoch": 77.5, + "grad_norm": 0.3859589695930481, + "learning_rate": 1.1252500000000001e-05, + "loss": 0.2287772750854492, + "step": 15500 + }, + { + "epoch": 78.0, + "grad_norm": 0.3758644461631775, + "learning_rate": 1.10025e-05, + "loss": 0.23166227340698242, + "step": 15600 + }, + { + "epoch": 78.5, + "grad_norm": 0.3552301526069641, + "learning_rate": 1.07525e-05, + "loss": 0.2268804931640625, + "step": 15700 + }, + { + "epoch": 79.0, + "grad_norm": 0.3842378556728363, + "learning_rate": 1.05025e-05, + "loss": 0.22957588195800782, + "step": 15800 + }, + { + "epoch": 79.5, + "grad_norm": 0.33627477288246155, + "learning_rate": 1.02525e-05, + "loss": 0.22454282760620117, + "step": 15900 + }, + { + "epoch": 80.0, + "grad_norm": 0.389986515045166, + "learning_rate": 1.0002500000000001e-05, + "loss": 0.22761936187744142, + "step": 16000 + }, + { + "epoch": 80.5, + "grad_norm": 0.3108944296836853, + "learning_rate": 9.7525e-06, + "loss": 0.22338836669921874, + "step": 16100 + }, + { + "epoch": 81.0, + "grad_norm": 0.32868942618370056, + "learning_rate": 9.502500000000001e-06, + "loss": 0.22411474227905273, + "step": 16200 + }, + { + "epoch": 81.5, + "grad_norm": 0.34585270285606384, + "learning_rate": 9.2525e-06, + "loss": 0.22169002532958984, + "step": 16300 + }, + { + "epoch": 82.0, + "grad_norm": 0.3643505871295929, + "learning_rate": 9.0025e-06, + "loss": 0.22333917617797852, + "step": 16400 + }, + { + "epoch": 82.5, + "grad_norm": 0.35764428973197937, + "learning_rate": 8.752500000000001e-06, + "loss": 0.22027700424194335, + "step": 16500 + }, + { + "epoch": 83.0, + "grad_norm": 0.3697255551815033, + "learning_rate": 8.5025e-06, + "loss": 0.22190006256103514, + "step": 16600 + }, + { + "epoch": 83.5, + "grad_norm": 0.34389302134513855, + "learning_rate": 8.252500000000001e-06, + "loss": 0.21772838592529298, + "step": 16700 + }, + { + "epoch": 84.0, + "grad_norm": 0.35523974895477295, + "learning_rate": 8.0025e-06, + "loss": 0.21992773056030274, + "step": 16800 + }, + { + "epoch": 84.5, + "grad_norm": 0.33763980865478516, + "learning_rate": 7.7525e-06, + "loss": 0.21668706893920897, + "step": 16900 + }, + { + "epoch": 85.0, + "grad_norm": 0.3457420766353607, + "learning_rate": 7.5025e-06, + "loss": 0.21767711639404297, + "step": 17000 + }, + { + "epoch": 85.5, + "grad_norm": 0.34709328413009644, + "learning_rate": 7.252500000000001e-06, + "loss": 0.21578775405883788, + "step": 17100 + }, + { + "epoch": 86.0, + "grad_norm": 0.3611862361431122, + "learning_rate": 7.002500000000001e-06, + "loss": 0.21809673309326172, + "step": 17200 + }, + { + "epoch": 86.5, + "grad_norm": 0.35064128041267395, + "learning_rate": 6.7525e-06, + "loss": 0.21291667938232423, + "step": 17300 + }, + { + "epoch": 87.0, + "grad_norm": 0.35625672340393066, + "learning_rate": 6.5025e-06, + "loss": 0.21576713562011718, + "step": 17400 + }, + { + "epoch": 87.5, + "grad_norm": 0.3733029365539551, + "learning_rate": 6.2525e-06, + "loss": 0.21200632095336913, + "step": 17500 + }, + { + "epoch": 88.0, + "grad_norm": 0.34649088978767395, + "learning_rate": 6.0025000000000006e-06, + "loss": 0.2149067687988281, + "step": 17600 + }, + { + "epoch": 88.5, + "grad_norm": 0.306749165058136, + "learning_rate": 5.7525e-06, + "loss": 0.21139209747314452, + "step": 17700 + }, + { + "epoch": 89.0, + "grad_norm": 0.35020408034324646, + "learning_rate": 5.5025e-06, + "loss": 0.21399372100830077, + "step": 17800 + }, + { + "epoch": 89.5, + "grad_norm": 0.31811031699180603, + "learning_rate": 5.2525e-06, + "loss": 0.2106713104248047, + "step": 17900 + }, + { + "epoch": 90.0, + "grad_norm": 0.315910667181015, + "learning_rate": 5.0025e-06, + "loss": 0.21184038162231444, + "step": 18000 + }, + { + "epoch": 90.5, + "grad_norm": 0.3591602146625519, + "learning_rate": 4.755e-06, + "loss": 0.2087250518798828, + "step": 18100 + }, + { + "epoch": 91.0, + "grad_norm": 0.2959374189376831, + "learning_rate": 4.505e-06, + "loss": 0.2099794006347656, + "step": 18200 + }, + { + "epoch": 91.5, + "grad_norm": 0.2833845317363739, + "learning_rate": 4.255e-06, + "loss": 0.20827140808105468, + "step": 18300 + }, + { + "epoch": 92.0, + "grad_norm": 0.33928927779197693, + "learning_rate": 4.005000000000001e-06, + "loss": 0.20932321548461913, + "step": 18400 + }, + { + "epoch": 92.5, + "grad_norm": 0.321674644947052, + "learning_rate": 3.755e-06, + "loss": 0.205947322845459, + "step": 18500 + }, + { + "epoch": 93.0, + "grad_norm": 0.2966731786727905, + "learning_rate": 3.505e-06, + "loss": 0.20795421600341796, + "step": 18600 + }, + { + "epoch": 93.5, + "grad_norm": 0.3216817378997803, + "learning_rate": 3.2550000000000006e-06, + "loss": 0.20623821258544922, + "step": 18700 + }, + { + "epoch": 94.0, + "grad_norm": 0.35450977087020874, + "learning_rate": 3.005e-06, + "loss": 0.20804498672485353, + "step": 18800 + }, + { + "epoch": 94.5, + "grad_norm": 0.2994995415210724, + "learning_rate": 2.7550000000000003e-06, + "loss": 0.20724256515502928, + "step": 18900 + }, + { + "epoch": 95.0, + "grad_norm": 0.3332589566707611, + "learning_rate": 2.505e-06, + "loss": 0.2055183982849121, + "step": 19000 + }, + { + "epoch": 95.5, + "grad_norm": 0.30346137285232544, + "learning_rate": 2.255e-06, + "loss": 0.2049989128112793, + "step": 19100 + }, + { + "epoch": 96.0, + "grad_norm": 0.2948566973209381, + "learning_rate": 2.005e-06, + "loss": 0.20483097076416015, + "step": 19200 + }, + { + "epoch": 96.5, + "grad_norm": 0.3213671147823334, + "learning_rate": 1.7550000000000001e-06, + "loss": 0.20349571228027344, + "step": 19300 + }, + { + "epoch": 97.0, + "grad_norm": 0.30940669775009155, + "learning_rate": 1.505e-06, + "loss": 0.20510492324829102, + "step": 19400 + }, + { + "epoch": 97.5, + "grad_norm": 0.29669439792633057, + "learning_rate": 1.255e-06, + "loss": 0.20321809768676757, + "step": 19500 + }, + { + "epoch": 98.0, + "grad_norm": 0.3040596544742584, + "learning_rate": 1.0050000000000001e-06, + "loss": 0.20417285919189454, + "step": 19600 + }, + { + "epoch": 98.5, + "grad_norm": 0.29241570830345154, + "learning_rate": 7.550000000000001e-07, + "loss": 0.20377571105957032, + "step": 19700 + } + ], + "logging_steps": 100, + "max_steps": 20000, + "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": 1.07776744095744e+16, + "train_batch_size": 8, + "trial_name": null, + "trial_params": null +} diff --git a/timecost/n6/realtabformer/rtf-n6-20260429_070345/rtf_checkpoints/checkpoint-19700/training_args.bin b/timecost/n6/realtabformer/rtf-n6-20260429_070345/rtf_checkpoints/checkpoint-19700/training_args.bin new file mode 100644 index 0000000000000000000000000000000000000000..34d68dc0e0fe1c1f12a2e581dd1b166aa7178a9e --- /dev/null +++ b/timecost/n6/realtabformer/rtf-n6-20260429_070345/rtf_checkpoints/checkpoint-19700/training_args.bin @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:9e2cd88337d1d846c6918d2b3b63fa3e5c93f12fefc082497590da854a564607 +size 5201 diff --git a/timecost/n6/realtabformer/rtf-n6-20260429_070345/rtf_checkpoints/checkpoint-19800/config.json b/timecost/n6/realtabformer/rtf-n6-20260429_070345/rtf_checkpoints/checkpoint-19800/config.json new file mode 100644 index 0000000000000000000000000000000000000000..ec3451e1a76244eef3e5bbfa6dfc2b2176f6aef9 --- /dev/null +++ b/timecost/n6/realtabformer/rtf-n6-20260429_070345/rtf_checkpoints/checkpoint-19800/config.json @@ -0,0 +1,34 @@ +{ + "activation_function": "gelu_new", + "add_cross_attention": false, + "architectures": [ + "GPT2LMHeadModel" + ], + "attn_pdrop": 0.1, + "bos_token_id": 5, + "dtype": "float32", + "embd_pdrop": 0.1, + "eos_token_id": 6, + "initializer_range": 0.02, + "layer_norm_epsilon": 1e-05, + "model_type": "gpt2", + "n_embd": 768, + "n_head": 12, + "n_inner": null, + "n_layer": 6, + "n_positions": 1024, + "pad_token_id": null, + "reorder_and_upcast_attn": false, + "resid_pdrop": 0.1, + "scale_attn_by_inverse_layer_idx": false, + "scale_attn_weights": true, + "summary_activation": null, + "summary_first_dropout": 0.1, + "summary_proj_to_labels": true, + "summary_type": "cls_index", + "summary_use_proj": true, + "tie_word_embeddings": true, + "transformers_version": "5.5.3", + "use_cache": false, + "vocab_size": 419 +} diff --git a/timecost/n6/realtabformer/rtf-n6-20260429_070345/rtf_checkpoints/checkpoint-19800/generation_config.json b/timecost/n6/realtabformer/rtf-n6-20260429_070345/rtf_checkpoints/checkpoint-19800/generation_config.json new file mode 100644 index 0000000000000000000000000000000000000000..ffe89567780e75b5c22eade9be971483b9618f39 --- /dev/null +++ b/timecost/n6/realtabformer/rtf-n6-20260429_070345/rtf_checkpoints/checkpoint-19800/generation_config.json @@ -0,0 +1,9 @@ +{ + "_from_model_config": true, + "bos_token_id": 5, + "eos_token_id": 6, + "output_attentions": false, + "output_hidden_states": false, + "transformers_version": "5.5.3", + "use_cache": true +} diff --git a/timecost/n6/realtabformer/rtf-n6-20260429_070345/rtf_checkpoints/checkpoint-19800/model.safetensors b/timecost/n6/realtabformer/rtf-n6-20260429_070345/rtf_checkpoints/checkpoint-19800/model.safetensors new file mode 100644 index 0000000000000000000000000000000000000000..5d46fad61094e33bcf7f6c1ea2b357ee4e5d88f3 --- /dev/null +++ b/timecost/n6/realtabformer/rtf-n6-20260429_070345/rtf_checkpoints/checkpoint-19800/model.safetensors @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:3f70df64e096278a20e81a4e178ef643be6eb99745cf66377b4da103481e5e65 +size 174555592 diff --git a/timecost/n6/realtabformer/rtf-n6-20260429_070345/rtf_checkpoints/checkpoint-19800/optimizer.pt b/timecost/n6/realtabformer/rtf-n6-20260429_070345/rtf_checkpoints/checkpoint-19800/optimizer.pt new file mode 100644 index 0000000000000000000000000000000000000000..3924349f236f97545dc564ab269fc255bf342597 --- /dev/null +++ b/timecost/n6/realtabformer/rtf-n6-20260429_070345/rtf_checkpoints/checkpoint-19800/optimizer.pt @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:edb49753921ec1b2a69c33d77e9aa1c26d5cba74dafdda97bf43fb2b3341de79 +size 349160267 diff --git a/timecost/n6/realtabformer/rtf-n6-20260429_070345/rtf_checkpoints/checkpoint-19800/rng_state.pth b/timecost/n6/realtabformer/rtf-n6-20260429_070345/rtf_checkpoints/checkpoint-19800/rng_state.pth new file mode 100644 index 0000000000000000000000000000000000000000..c9cd9bcd6e7fc0f9ebd5c61c6e2a80710db95e08 --- /dev/null +++ b/timecost/n6/realtabformer/rtf-n6-20260429_070345/rtf_checkpoints/checkpoint-19800/rng_state.pth @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:09eabef4b3f0210e526c1d8722a5805af55d6e22b69caba1d88047f087654413 +size 14645 diff --git a/timecost/n6/realtabformer/rtf-n6-20260429_070345/rtf_checkpoints/checkpoint-19800/scaler.pt b/timecost/n6/realtabformer/rtf-n6-20260429_070345/rtf_checkpoints/checkpoint-19800/scaler.pt new file mode 100644 index 0000000000000000000000000000000000000000..b368dc49458ccb81577f8b79bbbcde3c26003e6a --- /dev/null +++ b/timecost/n6/realtabformer/rtf-n6-20260429_070345/rtf_checkpoints/checkpoint-19800/scaler.pt @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:4db74be45c6dbf250be84a2a1d98ed3ca0e8712d362fc235a57e660b753481f8 +size 1383 diff --git a/timecost/n6/realtabformer/rtf-n6-20260429_070345/rtf_checkpoints/checkpoint-19800/scheduler.pt b/timecost/n6/realtabformer/rtf-n6-20260429_070345/rtf_checkpoints/checkpoint-19800/scheduler.pt new file mode 100644 index 0000000000000000000000000000000000000000..7d7f77b61f8eca778b7561d2742c864b5aa5459f --- /dev/null +++ b/timecost/n6/realtabformer/rtf-n6-20260429_070345/rtf_checkpoints/checkpoint-19800/scheduler.pt @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:c412fa58ca5a078231742ba58f928641f4d74132a596bf083a767fffff96d38f +size 1465 diff --git a/timecost/n6/realtabformer/rtf-n6-20260429_070345/rtf_checkpoints/checkpoint-19800/trainer_state.json b/timecost/n6/realtabformer/rtf-n6-20260429_070345/rtf_checkpoints/checkpoint-19800/trainer_state.json new file mode 100644 index 0000000000000000000000000000000000000000..d4004ad15efa1ec27dd75ad5b4917ab47a9801a8 --- /dev/null +++ b/timecost/n6/realtabformer/rtf-n6-20260429_070345/rtf_checkpoints/checkpoint-19800/trainer_state.json @@ -0,0 +1,1420 @@ +{ + "best_global_step": null, + "best_metric": null, + "best_model_checkpoint": null, + "epoch": 99.0, + "eval_steps": 100, + "global_step": 19800, + "is_hyper_param_search": false, + "is_local_process_zero": true, + "is_world_process_zero": true, + "log_history": [ + { + "epoch": 0.5, + "grad_norm": 0.23846545815467834, + "learning_rate": 4.97525e-05, + "loss": 1.9802227783203126, + "step": 100 + }, + { + "epoch": 1.0, + "grad_norm": 0.20555852353572845, + "learning_rate": 4.95025e-05, + "loss": 1.1221817779541015, + "step": 200 + }, + { + "epoch": 1.5, + "grad_norm": 0.21700991690158844, + "learning_rate": 4.92525e-05, + "loss": 1.0643415832519532, + "step": 300 + }, + { + "epoch": 2.0, + "grad_norm": 0.2044236809015274, + "learning_rate": 4.9002500000000004e-05, + "loss": 1.0245947265625, + "step": 400 + }, + { + "epoch": 2.5, + "grad_norm": 0.18077734112739563, + "learning_rate": 4.87525e-05, + "loss": 1.0032696533203125, + "step": 500 + }, + { + "epoch": 3.0, + "grad_norm": 0.19198282063007355, + "learning_rate": 4.85025e-05, + "loss": 1.0093541717529297, + "step": 600 + }, + { + "epoch": 3.5, + "grad_norm": 0.1984235793352127, + "learning_rate": 4.82525e-05, + "loss": 0.9847814178466797, + "step": 700 + }, + { + "epoch": 4.0, + "grad_norm": 0.17152079939842224, + "learning_rate": 4.80025e-05, + "loss": 0.982783203125, + "step": 800 + }, + { + "epoch": 4.5, + "grad_norm": 0.1930670440196991, + "learning_rate": 4.77525e-05, + "loss": 0.9716933441162109, + "step": 900 + }, + { + "epoch": 5.0, + "grad_norm": 0.19108322262763977, + "learning_rate": 4.75025e-05, + "loss": 0.9630477142333984, + "step": 1000 + }, + { + "epoch": 5.5, + "grad_norm": 0.1854381561279297, + "learning_rate": 4.72525e-05, + "loss": 0.9538239288330078, + "step": 1100 + }, + { + "epoch": 6.0, + "grad_norm": 0.17531616985797882, + "learning_rate": 4.70025e-05, + "loss": 0.95813720703125, + "step": 1200 + }, + { + "epoch": 6.5, + "grad_norm": 0.1815650910139084, + "learning_rate": 4.6752500000000003e-05, + "loss": 0.946460952758789, + "step": 1300 + }, + { + "epoch": 7.0, + "grad_norm": 0.19417639076709747, + "learning_rate": 4.6502500000000004e-05, + "loss": 0.9453800201416016, + "step": 1400 + }, + { + "epoch": 7.5, + "grad_norm": 0.1870127171278, + "learning_rate": 4.6252500000000005e-05, + "loss": 0.937877426147461, + "step": 1500 + }, + { + "epoch": 8.0, + "grad_norm": 0.1704702377319336, + "learning_rate": 4.6002500000000006e-05, + "loss": 0.9351255035400391, + "step": 1600 + }, + { + "epoch": 8.5, + "grad_norm": 0.18080289661884308, + "learning_rate": 4.5752500000000006e-05, + "loss": 0.9263742065429688, + "step": 1700 + }, + { + "epoch": 9.0, + "grad_norm": 0.18863996863365173, + "learning_rate": 4.55025e-05, + "loss": 0.9295844268798829, + "step": 1800 + }, + { + "epoch": 9.5, + "grad_norm": 0.19748634099960327, + "learning_rate": 4.52525e-05, + "loss": 0.9196556091308594, + "step": 1900 + }, + { + "epoch": 10.0, + "grad_norm": 0.20166783034801483, + "learning_rate": 4.50025e-05, + "loss": 0.9205670166015625, + "step": 2000 + }, + { + "epoch": 10.5, + "grad_norm": 0.19421179592609406, + "learning_rate": 4.47525e-05, + "loss": 0.9092935943603515, + "step": 2100 + }, + { + "epoch": 11.0, + "grad_norm": 0.17364448308944702, + "learning_rate": 4.45025e-05, + "loss": 0.9160775756835937, + "step": 2200 + }, + { + "epoch": 11.5, + "grad_norm": 0.1992802619934082, + "learning_rate": 4.4252500000000004e-05, + "loss": 0.9015705108642578, + "step": 2300 + }, + { + "epoch": 12.0, + "grad_norm": 0.20152443647384644, + "learning_rate": 4.4002500000000004e-05, + "loss": 0.9061229705810547, + "step": 2400 + }, + { + "epoch": 12.5, + "grad_norm": 0.2132837325334549, + "learning_rate": 4.3752500000000005e-05, + "loss": 0.8934657287597656, + "step": 2500 + }, + { + "epoch": 13.0, + "grad_norm": 0.19080808758735657, + "learning_rate": 4.35025e-05, + "loss": 0.899046401977539, + "step": 2600 + }, + { + "epoch": 13.5, + "grad_norm": 0.189740389585495, + "learning_rate": 4.32525e-05, + "loss": 0.8842880249023437, + "step": 2700 + }, + { + "epoch": 14.0, + "grad_norm": 0.20881056785583496, + "learning_rate": 4.30025e-05, + "loss": 0.8902586364746093, + "step": 2800 + }, + { + "epoch": 14.5, + "grad_norm": 0.20233558118343353, + "learning_rate": 4.27525e-05, + "loss": 0.8781875610351563, + "step": 2900 + }, + { + "epoch": 15.0, + "grad_norm": 0.20733879506587982, + "learning_rate": 4.25025e-05, + "loss": 0.8796215057373047, + "step": 3000 + }, + { + "epoch": 15.5, + "grad_norm": 0.20945705473423004, + "learning_rate": 4.22525e-05, + "loss": 0.8660121154785156, + "step": 3100 + }, + { + "epoch": 16.0, + "grad_norm": 0.2075275033712387, + "learning_rate": 4.20025e-05, + "loss": 0.872025146484375, + "step": 3200 + }, + { + "epoch": 16.5, + "grad_norm": 0.20175659656524658, + "learning_rate": 4.17525e-05, + "loss": 0.8569779968261719, + "step": 3300 + }, + { + "epoch": 17.0, + "grad_norm": 0.20709975063800812, + "learning_rate": 4.15025e-05, + "loss": 0.8622282409667968, + "step": 3400 + }, + { + "epoch": 17.5, + "grad_norm": 0.22440586984157562, + "learning_rate": 4.12525e-05, + "loss": 0.844241943359375, + "step": 3500 + }, + { + "epoch": 18.0, + "grad_norm": 0.2280527651309967, + "learning_rate": 4.10025e-05, + "loss": 0.8529148864746093, + "step": 3600 + }, + { + "epoch": 18.5, + "grad_norm": 0.22750917077064514, + "learning_rate": 4.075250000000001e-05, + "loss": 0.8350860595703125, + "step": 3700 + }, + { + "epoch": 19.0, + "grad_norm": 0.23036035895347595, + "learning_rate": 4.050250000000001e-05, + "loss": 0.8406881713867187, + "step": 3800 + }, + { + "epoch": 19.5, + "grad_norm": 0.24683690071105957, + "learning_rate": 4.02525e-05, + "loss": 0.8201627349853515, + "step": 3900 + }, + { + "epoch": 20.0, + "grad_norm": 0.22586171329021454, + "learning_rate": 4.00025e-05, + "loss": 0.8348744201660157, + "step": 4000 + }, + { + "epoch": 20.5, + "grad_norm": 0.25476565957069397, + "learning_rate": 3.97525e-05, + "loss": 0.8094847869873046, + "step": 4100 + }, + { + "epoch": 21.0, + "grad_norm": 0.26058006286621094, + "learning_rate": 3.95025e-05, + "loss": 0.821390380859375, + "step": 4200 + }, + { + "epoch": 21.5, + "grad_norm": 0.26972848176956177, + "learning_rate": 3.9252500000000004e-05, + "loss": 0.795047607421875, + "step": 4300 + }, + { + "epoch": 22.0, + "grad_norm": 0.24889031052589417, + "learning_rate": 3.9002500000000005e-05, + "loss": 0.8084414672851562, + "step": 4400 + }, + { + "epoch": 22.5, + "grad_norm": 0.2630121111869812, + "learning_rate": 3.8752500000000005e-05, + "loss": 0.7835968017578125, + "step": 4500 + }, + { + "epoch": 23.0, + "grad_norm": 0.264941543340683, + "learning_rate": 3.85025e-05, + "loss": 0.7941561889648437, + "step": 4600 + }, + { + "epoch": 23.5, + "grad_norm": 0.27832189202308655, + "learning_rate": 3.82525e-05, + "loss": 0.7683060455322266, + "step": 4700 + }, + { + "epoch": 24.0, + "grad_norm": 0.281009316444397, + "learning_rate": 3.80025e-05, + "loss": 0.7814789581298828, + "step": 4800 + }, + { + "epoch": 24.5, + "grad_norm": 0.2838248312473297, + "learning_rate": 3.77525e-05, + "loss": 0.7542767333984375, + "step": 4900 + }, + { + "epoch": 25.0, + "grad_norm": 0.29682639241218567, + "learning_rate": 3.75025e-05, + "loss": 0.7639364624023437, + "step": 5000 + }, + { + "epoch": 25.5, + "grad_norm": 0.2911108732223511, + "learning_rate": 3.72525e-05, + "loss": 0.7374829864501953, + "step": 5100 + }, + { + "epoch": 26.0, + "grad_norm": 0.3080083727836609, + "learning_rate": 3.7002500000000004e-05, + "loss": 0.7494142150878906, + "step": 5200 + }, + { + "epoch": 26.5, + "grad_norm": 0.31476718187332153, + "learning_rate": 3.67525e-05, + "loss": 0.7209281158447266, + "step": 5300 + }, + { + "epoch": 27.0, + "grad_norm": 0.3073391914367676, + "learning_rate": 3.65025e-05, + "loss": 0.7341756439208984, + "step": 5400 + }, + { + "epoch": 27.5, + "grad_norm": 0.3170262575149536, + "learning_rate": 3.62525e-05, + "loss": 0.7062877655029297, + "step": 5500 + }, + { + "epoch": 28.0, + "grad_norm": 0.3416720926761627, + "learning_rate": 3.60025e-05, + "loss": 0.7143956756591797, + "step": 5600 + }, + { + "epoch": 28.5, + "grad_norm": 0.32180145382881165, + "learning_rate": 3.57525e-05, + "loss": 0.6863983917236328, + "step": 5700 + }, + { + "epoch": 29.0, + "grad_norm": 0.3320668935775757, + "learning_rate": 3.55025e-05, + "loss": 0.6965797424316407, + "step": 5800 + }, + { + "epoch": 29.5, + "grad_norm": 0.3459661900997162, + "learning_rate": 3.52525e-05, + "loss": 0.665050048828125, + "step": 5900 + }, + { + "epoch": 30.0, + "grad_norm": 0.36955904960632324, + "learning_rate": 3.50025e-05, + "loss": 0.6811283111572266, + "step": 6000 + }, + { + "epoch": 30.5, + "grad_norm": 0.353595107793808, + "learning_rate": 3.4752499999999996e-05, + "loss": 0.6494364166259765, + "step": 6100 + }, + { + "epoch": 31.0, + "grad_norm": 0.3724261224269867, + "learning_rate": 3.4502500000000004e-05, + "loss": 0.6602011871337891, + "step": 6200 + }, + { + "epoch": 31.5, + "grad_norm": 0.3622111976146698, + "learning_rate": 3.4252500000000005e-05, + "loss": 0.6292791748046875, + "step": 6300 + }, + { + "epoch": 32.0, + "grad_norm": 0.3871346414089203, + "learning_rate": 3.4002500000000005e-05, + "loss": 0.6412000274658203, + "step": 6400 + }, + { + "epoch": 32.5, + "grad_norm": 0.37466201186180115, + "learning_rate": 3.3752500000000006e-05, + "loss": 0.6076009750366211, + "step": 6500 + }, + { + "epoch": 33.0, + "grad_norm": 0.38774964213371277, + "learning_rate": 3.350250000000001e-05, + "loss": 0.6244126892089844, + "step": 6600 + }, + { + "epoch": 33.5, + "grad_norm": 0.40086090564727783, + "learning_rate": 3.32525e-05, + "loss": 0.5891850662231445, + "step": 6700 + }, + { + "epoch": 34.0, + "grad_norm": 0.397621214389801, + "learning_rate": 3.30025e-05, + "loss": 0.6025267791748047, + "step": 6800 + }, + { + "epoch": 34.5, + "grad_norm": 0.38964155316352844, + "learning_rate": 3.27525e-05, + "loss": 0.5694293975830078, + "step": 6900 + }, + { + "epoch": 35.0, + "grad_norm": 0.41882845759391785, + "learning_rate": 3.25025e-05, + "loss": 0.5855500030517579, + "step": 7000 + }, + { + "epoch": 35.5, + "grad_norm": 0.3957461416721344, + "learning_rate": 3.22525e-05, + "loss": 0.5524356079101562, + "step": 7100 + }, + { + "epoch": 36.0, + "grad_norm": 0.4124171733856201, + "learning_rate": 3.2002500000000004e-05, + "loss": 0.5658663940429688, + "step": 7200 + }, + { + "epoch": 36.5, + "grad_norm": 0.41649162769317627, + "learning_rate": 3.1752500000000005e-05, + "loss": 0.5332207107543945, + "step": 7300 + }, + { + "epoch": 37.0, + "grad_norm": 0.4282434284687042, + "learning_rate": 3.15025e-05, + "loss": 0.5502962112426758, + "step": 7400 + }, + { + "epoch": 37.5, + "grad_norm": 0.4211678206920624, + "learning_rate": 3.12525e-05, + "loss": 0.5135954666137695, + "step": 7500 + }, + { + "epoch": 38.0, + "grad_norm": 0.4331444799900055, + "learning_rate": 3.10025e-05, + "loss": 0.527672119140625, + "step": 7600 + }, + { + "epoch": 38.5, + "grad_norm": 0.40753164887428284, + "learning_rate": 3.07525e-05, + "loss": 0.49722877502441404, + "step": 7700 + }, + { + "epoch": 39.0, + "grad_norm": 0.4255908131599426, + "learning_rate": 3.05025e-05, + "loss": 0.5126309585571289, + "step": 7800 + }, + { + "epoch": 39.5, + "grad_norm": 0.43637004494667053, + "learning_rate": 3.02525e-05, + "loss": 0.4813387680053711, + "step": 7900 + }, + { + "epoch": 40.0, + "grad_norm": 0.439633309841156, + "learning_rate": 3.00025e-05, + "loss": 0.49494590759277346, + "step": 8000 + }, + { + "epoch": 40.5, + "grad_norm": 0.4367655813694, + "learning_rate": 2.97525e-05, + "loss": 0.46536773681640625, + "step": 8100 + }, + { + "epoch": 41.0, + "grad_norm": 0.4501303732395172, + "learning_rate": 2.95025e-05, + "loss": 0.4779759216308594, + "step": 8200 + }, + { + "epoch": 41.5, + "grad_norm": 0.44598305225372314, + "learning_rate": 2.9252499999999998e-05, + "loss": 0.45186782836914063, + "step": 8300 + }, + { + "epoch": 42.0, + "grad_norm": 0.44075384736061096, + "learning_rate": 2.90025e-05, + "loss": 0.46137031555175784, + "step": 8400 + }, + { + "epoch": 42.5, + "grad_norm": 0.4338615834712982, + "learning_rate": 2.87525e-05, + "loss": 0.43537315368652346, + "step": 8500 + }, + { + "epoch": 43.0, + "grad_norm": 0.4544128477573395, + "learning_rate": 2.85025e-05, + "loss": 0.44546558380126955, + "step": 8600 + }, + { + "epoch": 43.5, + "grad_norm": 0.4372069537639618, + "learning_rate": 2.8252500000000004e-05, + "loss": 0.4216377639770508, + "step": 8700 + }, + { + "epoch": 44.0, + "grad_norm": 0.44973990321159363, + "learning_rate": 2.8002500000000005e-05, + "loss": 0.4316849136352539, + "step": 8800 + }, + { + "epoch": 44.5, + "grad_norm": 0.44243016839027405, + "learning_rate": 2.7752500000000002e-05, + "loss": 0.4082369613647461, + "step": 8900 + }, + { + "epoch": 45.0, + "grad_norm": 0.44320249557495117, + "learning_rate": 2.7502500000000003e-05, + "loss": 0.4201020050048828, + "step": 9000 + }, + { + "epoch": 45.5, + "grad_norm": 0.44853946566581726, + "learning_rate": 2.7252500000000004e-05, + "loss": 0.39533462524414065, + "step": 9100 + }, + { + "epoch": 46.0, + "grad_norm": 0.4522981345653534, + "learning_rate": 2.7002500000000004e-05, + "loss": 0.4059659194946289, + "step": 9200 + }, + { + "epoch": 46.5, + "grad_norm": 0.43445703387260437, + "learning_rate": 2.6752500000000002e-05, + "loss": 0.38393875122070314, + "step": 9300 + }, + { + "epoch": 47.0, + "grad_norm": 0.44054123759269714, + "learning_rate": 2.6502500000000002e-05, + "loss": 0.3942867279052734, + "step": 9400 + }, + { + "epoch": 47.5, + "grad_norm": 0.46875321865081787, + "learning_rate": 2.6252500000000003e-05, + "loss": 0.37364906311035156, + "step": 9500 + }, + { + "epoch": 48.0, + "grad_norm": 0.4392513036727905, + "learning_rate": 2.60025e-05, + "loss": 0.38418922424316404, + "step": 9600 + }, + { + "epoch": 48.5, + "grad_norm": 0.44256582856178284, + "learning_rate": 2.57525e-05, + "loss": 0.36397621154785154, + "step": 9700 + }, + { + "epoch": 49.0, + "grad_norm": 0.4096059203147888, + "learning_rate": 2.5502500000000002e-05, + "loss": 0.37398372650146483, + "step": 9800 + }, + { + "epoch": 49.5, + "grad_norm": 0.4084298014640808, + "learning_rate": 2.5252500000000003e-05, + "loss": 0.3530607223510742, + "step": 9900 + }, + { + "epoch": 50.0, + "grad_norm": 0.4513794779777527, + "learning_rate": 2.50025e-05, + "loss": 0.3632556915283203, + "step": 10000 + }, + { + "epoch": 50.5, + "grad_norm": 0.3950716257095337, + "learning_rate": 2.47525e-05, + "loss": 0.34567554473876955, + "step": 10100 + }, + { + "epoch": 51.0, + "grad_norm": 0.4658626914024353, + "learning_rate": 2.45025e-05, + "loss": 0.3531562042236328, + "step": 10200 + }, + { + "epoch": 51.5, + "grad_norm": 0.40074118971824646, + "learning_rate": 2.42525e-05, + "loss": 0.3368285369873047, + "step": 10300 + }, + { + "epoch": 52.0, + "grad_norm": 0.43490293622016907, + "learning_rate": 2.40025e-05, + "loss": 0.34483592987060546, + "step": 10400 + }, + { + "epoch": 52.5, + "grad_norm": 0.43086978793144226, + "learning_rate": 2.37525e-05, + "loss": 0.3291225814819336, + "step": 10500 + }, + { + "epoch": 53.0, + "grad_norm": 0.4458702504634857, + "learning_rate": 2.35025e-05, + "loss": 0.3378773880004883, + "step": 10600 + }, + { + "epoch": 53.5, + "grad_norm": 0.4361683130264282, + "learning_rate": 2.32525e-05, + "loss": 0.3223386001586914, + "step": 10700 + }, + { + "epoch": 54.0, + "grad_norm": 0.46678826212882996, + "learning_rate": 2.3002500000000002e-05, + "loss": 0.3297463607788086, + "step": 10800 + }, + { + "epoch": 54.5, + "grad_norm": 0.41767755150794983, + "learning_rate": 2.2752500000000003e-05, + "loss": 0.315598201751709, + "step": 10900 + }, + { + "epoch": 55.0, + "grad_norm": 0.4470875561237335, + "learning_rate": 2.25025e-05, + "loss": 0.32347301483154295, + "step": 11000 + }, + { + "epoch": 55.5, + "grad_norm": 0.4591546654701233, + "learning_rate": 2.22525e-05, + "loss": 0.31086679458618166, + "step": 11100 + }, + { + "epoch": 56.0, + "grad_norm": 0.44901204109191895, + "learning_rate": 2.20025e-05, + "loss": 0.31777124404907225, + "step": 11200 + }, + { + "epoch": 56.5, + "grad_norm": 0.41419050097465515, + "learning_rate": 2.1752500000000002e-05, + "loss": 0.30351598739624025, + "step": 11300 + }, + { + "epoch": 57.0, + "grad_norm": 0.43349865078926086, + "learning_rate": 2.15025e-05, + "loss": 0.3107553863525391, + "step": 11400 + }, + { + "epoch": 57.5, + "grad_norm": 0.4324033558368683, + "learning_rate": 2.12525e-05, + "loss": 0.2977292823791504, + "step": 11500 + }, + { + "epoch": 58.0, + "grad_norm": 0.43435463309288025, + "learning_rate": 2.10025e-05, + "loss": 0.30380510330200194, + "step": 11600 + }, + { + "epoch": 58.5, + "grad_norm": 0.36328092217445374, + "learning_rate": 2.0752499999999998e-05, + "loss": 0.2924338722229004, + "step": 11700 + }, + { + "epoch": 59.0, + "grad_norm": 0.4179525673389435, + "learning_rate": 2.0502500000000002e-05, + "loss": 0.29900590896606444, + "step": 11800 + }, + { + "epoch": 59.5, + "grad_norm": 0.38387784361839294, + "learning_rate": 2.0252500000000003e-05, + "loss": 0.28634124755859375, + "step": 11900 + }, + { + "epoch": 60.0, + "grad_norm": 0.4128117561340332, + "learning_rate": 2.00025e-05, + "loss": 0.2923979187011719, + "step": 12000 + }, + { + "epoch": 60.5, + "grad_norm": 0.4330095648765564, + "learning_rate": 1.97525e-05, + "loss": 0.28179628372192383, + "step": 12100 + }, + { + "epoch": 61.0, + "grad_norm": 0.42764198780059814, + "learning_rate": 1.9502500000000002e-05, + "loss": 0.2868915367126465, + "step": 12200 + }, + { + "epoch": 61.5, + "grad_norm": 0.39329856634140015, + "learning_rate": 1.9252500000000002e-05, + "loss": 0.2775389289855957, + "step": 12300 + }, + { + "epoch": 62.0, + "grad_norm": 0.3947943449020386, + "learning_rate": 1.90025e-05, + "loss": 0.2824789810180664, + "step": 12400 + }, + { + "epoch": 62.5, + "grad_norm": 0.4083310067653656, + "learning_rate": 1.87525e-05, + "loss": 0.2729552459716797, + "step": 12500 + }, + { + "epoch": 63.0, + "grad_norm": 0.4008137285709381, + "learning_rate": 1.85025e-05, + "loss": 0.27841379165649416, + "step": 12600 + }, + { + "epoch": 63.5, + "grad_norm": 0.3896923363208771, + "learning_rate": 1.82525e-05, + "loss": 0.2697013282775879, + "step": 12700 + }, + { + "epoch": 64.0, + "grad_norm": 0.41712749004364014, + "learning_rate": 1.80025e-05, + "loss": 0.27453325271606444, + "step": 12800 + }, + { + "epoch": 64.5, + "grad_norm": 0.38217687606811523, + "learning_rate": 1.77525e-05, + "loss": 0.26497941970825195, + "step": 12900 + }, + { + "epoch": 65.0, + "grad_norm": 0.4228459596633911, + "learning_rate": 1.75025e-05, + "loss": 0.26899080276489257, + "step": 13000 + }, + { + "epoch": 65.5, + "grad_norm": 0.384003221988678, + "learning_rate": 1.72525e-05, + "loss": 0.26288330078125, + "step": 13100 + }, + { + "epoch": 66.0, + "grad_norm": 0.4040643572807312, + "learning_rate": 1.7002500000000002e-05, + "loss": 0.2662550926208496, + "step": 13200 + }, + { + "epoch": 66.5, + "grad_norm": 0.3715139627456665, + "learning_rate": 1.6752500000000003e-05, + "loss": 0.25743928909301755, + "step": 13300 + }, + { + "epoch": 67.0, + "grad_norm": 0.382761150598526, + "learning_rate": 1.65025e-05, + "loss": 0.2623816680908203, + "step": 13400 + }, + { + "epoch": 67.5, + "grad_norm": 0.4100727140903473, + "learning_rate": 1.62525e-05, + "loss": 0.25506450653076174, + "step": 13500 + }, + { + "epoch": 68.0, + "grad_norm": 0.36104685068130493, + "learning_rate": 1.60025e-05, + "loss": 0.2590820503234863, + "step": 13600 + }, + { + "epoch": 68.5, + "grad_norm": 0.4170261025428772, + "learning_rate": 1.5752500000000002e-05, + "loss": 0.2522945022583008, + "step": 13700 + }, + { + "epoch": 69.0, + "grad_norm": 0.4074130356311798, + "learning_rate": 1.55025e-05, + "loss": 0.256374683380127, + "step": 13800 + }, + { + "epoch": 69.5, + "grad_norm": 0.4009321331977844, + "learning_rate": 1.52525e-05, + "loss": 0.2484601593017578, + "step": 13900 + }, + { + "epoch": 70.0, + "grad_norm": 0.3586087226867676, + "learning_rate": 1.5002499999999999e-05, + "loss": 0.2519577980041504, + "step": 14000 + }, + { + "epoch": 70.5, + "grad_norm": 0.39007654786109924, + "learning_rate": 1.47525e-05, + "loss": 0.2457340431213379, + "step": 14100 + }, + { + "epoch": 71.0, + "grad_norm": 0.3830292820930481, + "learning_rate": 1.4502499999999999e-05, + "loss": 0.24784101486206056, + "step": 14200 + }, + { + "epoch": 71.5, + "grad_norm": 0.3842337429523468, + "learning_rate": 1.4252500000000001e-05, + "loss": 0.24252428054809572, + "step": 14300 + }, + { + "epoch": 72.0, + "grad_norm": 0.33969053626060486, + "learning_rate": 1.4002500000000002e-05, + "loss": 0.2472601890563965, + "step": 14400 + }, + { + "epoch": 72.5, + "grad_norm": 0.38084539771080017, + "learning_rate": 1.3752500000000001e-05, + "loss": 0.2398312759399414, + "step": 14500 + }, + { + "epoch": 73.0, + "grad_norm": 0.3362090587615967, + "learning_rate": 1.3502500000000002e-05, + "loss": 0.24383731842041015, + "step": 14600 + }, + { + "epoch": 73.5, + "grad_norm": 0.37916791439056396, + "learning_rate": 1.32525e-05, + "loss": 0.23760452270507812, + "step": 14700 + }, + { + "epoch": 74.0, + "grad_norm": 0.37284770607948303, + "learning_rate": 1.3002500000000001e-05, + "loss": 0.24114870071411132, + "step": 14800 + }, + { + "epoch": 74.5, + "grad_norm": 0.3742426633834839, + "learning_rate": 1.27525e-05, + "loss": 0.2348023223876953, + "step": 14900 + }, + { + "epoch": 75.0, + "grad_norm": 0.3935767114162445, + "learning_rate": 1.2502500000000001e-05, + "loss": 0.23796173095703124, + "step": 15000 + }, + { + "epoch": 75.5, + "grad_norm": 0.3600524365901947, + "learning_rate": 1.22525e-05, + "loss": 0.23247020721435546, + "step": 15100 + }, + { + "epoch": 76.0, + "grad_norm": 0.3458992540836334, + "learning_rate": 1.20025e-05, + "loss": 0.23637393951416016, + "step": 15200 + }, + { + "epoch": 76.5, + "grad_norm": 0.3585320711135864, + "learning_rate": 1.1752500000000001e-05, + "loss": 0.2308286476135254, + "step": 15300 + }, + { + "epoch": 77.0, + "grad_norm": 0.37773242592811584, + "learning_rate": 1.15025e-05, + "loss": 0.233690242767334, + "step": 15400 + }, + { + "epoch": 77.5, + "grad_norm": 0.3859589695930481, + "learning_rate": 1.1252500000000001e-05, + "loss": 0.2287772750854492, + "step": 15500 + }, + { + "epoch": 78.0, + "grad_norm": 0.3758644461631775, + "learning_rate": 1.10025e-05, + "loss": 0.23166227340698242, + "step": 15600 + }, + { + "epoch": 78.5, + "grad_norm": 0.3552301526069641, + "learning_rate": 1.07525e-05, + "loss": 0.2268804931640625, + "step": 15700 + }, + { + "epoch": 79.0, + "grad_norm": 0.3842378556728363, + "learning_rate": 1.05025e-05, + "loss": 0.22957588195800782, + "step": 15800 + }, + { + "epoch": 79.5, + "grad_norm": 0.33627477288246155, + "learning_rate": 1.02525e-05, + "loss": 0.22454282760620117, + "step": 15900 + }, + { + "epoch": 80.0, + "grad_norm": 0.389986515045166, + "learning_rate": 1.0002500000000001e-05, + "loss": 0.22761936187744142, + "step": 16000 + }, + { + "epoch": 80.5, + "grad_norm": 0.3108944296836853, + "learning_rate": 9.7525e-06, + "loss": 0.22338836669921874, + "step": 16100 + }, + { + "epoch": 81.0, + "grad_norm": 0.32868942618370056, + "learning_rate": 9.502500000000001e-06, + "loss": 0.22411474227905273, + "step": 16200 + }, + { + "epoch": 81.5, + "grad_norm": 0.34585270285606384, + "learning_rate": 9.2525e-06, + "loss": 0.22169002532958984, + "step": 16300 + }, + { + "epoch": 82.0, + "grad_norm": 0.3643505871295929, + "learning_rate": 9.0025e-06, + "loss": 0.22333917617797852, + "step": 16400 + }, + { + "epoch": 82.5, + "grad_norm": 0.35764428973197937, + "learning_rate": 8.752500000000001e-06, + "loss": 0.22027700424194335, + "step": 16500 + }, + { + "epoch": 83.0, + "grad_norm": 0.3697255551815033, + "learning_rate": 8.5025e-06, + "loss": 0.22190006256103514, + "step": 16600 + }, + { + "epoch": 83.5, + "grad_norm": 0.34389302134513855, + "learning_rate": 8.252500000000001e-06, + "loss": 0.21772838592529298, + "step": 16700 + }, + { + "epoch": 84.0, + "grad_norm": 0.35523974895477295, + "learning_rate": 8.0025e-06, + "loss": 0.21992773056030274, + "step": 16800 + }, + { + "epoch": 84.5, + "grad_norm": 0.33763980865478516, + "learning_rate": 7.7525e-06, + "loss": 0.21668706893920897, + "step": 16900 + }, + { + "epoch": 85.0, + "grad_norm": 0.3457420766353607, + "learning_rate": 7.5025e-06, + "loss": 0.21767711639404297, + "step": 17000 + }, + { + "epoch": 85.5, + "grad_norm": 0.34709328413009644, + "learning_rate": 7.252500000000001e-06, + "loss": 0.21578775405883788, + "step": 17100 + }, + { + "epoch": 86.0, + "grad_norm": 0.3611862361431122, + "learning_rate": 7.002500000000001e-06, + "loss": 0.21809673309326172, + "step": 17200 + }, + { + "epoch": 86.5, + "grad_norm": 0.35064128041267395, + "learning_rate": 6.7525e-06, + "loss": 0.21291667938232423, + "step": 17300 + }, + { + "epoch": 87.0, + "grad_norm": 0.35625672340393066, + "learning_rate": 6.5025e-06, + "loss": 0.21576713562011718, + "step": 17400 + }, + { + "epoch": 87.5, + "grad_norm": 0.3733029365539551, + "learning_rate": 6.2525e-06, + "loss": 0.21200632095336913, + "step": 17500 + }, + { + "epoch": 88.0, + "grad_norm": 0.34649088978767395, + "learning_rate": 6.0025000000000006e-06, + "loss": 0.2149067687988281, + "step": 17600 + }, + { + "epoch": 88.5, + "grad_norm": 0.306749165058136, + "learning_rate": 5.7525e-06, + "loss": 0.21139209747314452, + "step": 17700 + }, + { + "epoch": 89.0, + "grad_norm": 0.35020408034324646, + "learning_rate": 5.5025e-06, + "loss": 0.21399372100830077, + "step": 17800 + }, + { + "epoch": 89.5, + "grad_norm": 0.31811031699180603, + "learning_rate": 5.2525e-06, + "loss": 0.2106713104248047, + "step": 17900 + }, + { + "epoch": 90.0, + "grad_norm": 0.315910667181015, + "learning_rate": 5.0025e-06, + "loss": 0.21184038162231444, + "step": 18000 + }, + { + "epoch": 90.5, + "grad_norm": 0.3591602146625519, + "learning_rate": 4.755e-06, + "loss": 0.2087250518798828, + "step": 18100 + }, + { + "epoch": 91.0, + "grad_norm": 0.2959374189376831, + "learning_rate": 4.505e-06, + "loss": 0.2099794006347656, + "step": 18200 + }, + { + "epoch": 91.5, + "grad_norm": 0.2833845317363739, + "learning_rate": 4.255e-06, + "loss": 0.20827140808105468, + "step": 18300 + }, + { + "epoch": 92.0, + "grad_norm": 0.33928927779197693, + "learning_rate": 4.005000000000001e-06, + "loss": 0.20932321548461913, + "step": 18400 + }, + { + "epoch": 92.5, + "grad_norm": 0.321674644947052, + "learning_rate": 3.755e-06, + "loss": 0.205947322845459, + "step": 18500 + }, + { + "epoch": 93.0, + "grad_norm": 0.2966731786727905, + "learning_rate": 3.505e-06, + "loss": 0.20795421600341796, + "step": 18600 + }, + { + "epoch": 93.5, + "grad_norm": 0.3216817378997803, + "learning_rate": 3.2550000000000006e-06, + "loss": 0.20623821258544922, + "step": 18700 + }, + { + "epoch": 94.0, + "grad_norm": 0.35450977087020874, + "learning_rate": 3.005e-06, + "loss": 0.20804498672485353, + "step": 18800 + }, + { + "epoch": 94.5, + "grad_norm": 0.2994995415210724, + "learning_rate": 2.7550000000000003e-06, + "loss": 0.20724256515502928, + "step": 18900 + }, + { + "epoch": 95.0, + "grad_norm": 0.3332589566707611, + "learning_rate": 2.505e-06, + "loss": 0.2055183982849121, + "step": 19000 + }, + { + "epoch": 95.5, + "grad_norm": 0.30346137285232544, + "learning_rate": 2.255e-06, + "loss": 0.2049989128112793, + "step": 19100 + }, + { + "epoch": 96.0, + "grad_norm": 0.2948566973209381, + "learning_rate": 2.005e-06, + "loss": 0.20483097076416015, + "step": 19200 + }, + { + "epoch": 96.5, + "grad_norm": 0.3213671147823334, + "learning_rate": 1.7550000000000001e-06, + "loss": 0.20349571228027344, + "step": 19300 + }, + { + "epoch": 97.0, + "grad_norm": 0.30940669775009155, + "learning_rate": 1.505e-06, + "loss": 0.20510492324829102, + "step": 19400 + }, + { + "epoch": 97.5, + "grad_norm": 0.29669439792633057, + "learning_rate": 1.255e-06, + "loss": 0.20321809768676757, + "step": 19500 + }, + { + "epoch": 98.0, + "grad_norm": 0.3040596544742584, + "learning_rate": 1.0050000000000001e-06, + "loss": 0.20417285919189454, + "step": 19600 + }, + { + "epoch": 98.5, + "grad_norm": 0.29241570830345154, + "learning_rate": 7.550000000000001e-07, + "loss": 0.20377571105957032, + "step": 19700 + }, + { + "epoch": 99.0, + "grad_norm": 0.33404168486595154, + "learning_rate": 5.05e-07, + "loss": 0.2034158706665039, + "step": 19800 + } + ], + "logging_steps": 100, + "max_steps": 20000, + "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": 1.08323834167296e+16, + "train_batch_size": 8, + "trial_name": null, + "trial_params": null +} diff --git a/timecost/n6/realtabformer/rtf-n6-20260429_070345/rtf_checkpoints/checkpoint-19800/training_args.bin b/timecost/n6/realtabformer/rtf-n6-20260429_070345/rtf_checkpoints/checkpoint-19800/training_args.bin new file mode 100644 index 0000000000000000000000000000000000000000..34d68dc0e0fe1c1f12a2e581dd1b166aa7178a9e --- /dev/null +++ b/timecost/n6/realtabformer/rtf-n6-20260429_070345/rtf_checkpoints/checkpoint-19800/training_args.bin @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:9e2cd88337d1d846c6918d2b3b63fa3e5c93f12fefc082497590da854a564607 +size 5201 diff --git a/timecost/n6/realtabformer/rtf-n6-20260429_070345/rtf_checkpoints/checkpoint-19900/config.json b/timecost/n6/realtabformer/rtf-n6-20260429_070345/rtf_checkpoints/checkpoint-19900/config.json new file mode 100644 index 0000000000000000000000000000000000000000..ec3451e1a76244eef3e5bbfa6dfc2b2176f6aef9 --- /dev/null +++ b/timecost/n6/realtabformer/rtf-n6-20260429_070345/rtf_checkpoints/checkpoint-19900/config.json @@ -0,0 +1,34 @@ +{ + "activation_function": "gelu_new", + "add_cross_attention": false, + "architectures": [ + "GPT2LMHeadModel" + ], + "attn_pdrop": 0.1, + "bos_token_id": 5, + "dtype": "float32", + "embd_pdrop": 0.1, + "eos_token_id": 6, + "initializer_range": 0.02, + "layer_norm_epsilon": 1e-05, + "model_type": "gpt2", + "n_embd": 768, + "n_head": 12, + "n_inner": null, + "n_layer": 6, + "n_positions": 1024, + "pad_token_id": null, + "reorder_and_upcast_attn": false, + "resid_pdrop": 0.1, + "scale_attn_by_inverse_layer_idx": false, + "scale_attn_weights": true, + "summary_activation": null, + "summary_first_dropout": 0.1, + "summary_proj_to_labels": true, + "summary_type": "cls_index", + "summary_use_proj": true, + "tie_word_embeddings": true, + "transformers_version": "5.5.3", + "use_cache": false, + "vocab_size": 419 +} diff --git a/timecost/n6/realtabformer/rtf-n6-20260429_070345/rtf_checkpoints/checkpoint-19900/generation_config.json b/timecost/n6/realtabformer/rtf-n6-20260429_070345/rtf_checkpoints/checkpoint-19900/generation_config.json new file mode 100644 index 0000000000000000000000000000000000000000..ffe89567780e75b5c22eade9be971483b9618f39 --- /dev/null +++ b/timecost/n6/realtabformer/rtf-n6-20260429_070345/rtf_checkpoints/checkpoint-19900/generation_config.json @@ -0,0 +1,9 @@ +{ + "_from_model_config": true, + "bos_token_id": 5, + "eos_token_id": 6, + "output_attentions": false, + "output_hidden_states": false, + "transformers_version": "5.5.3", + "use_cache": true +} diff --git a/timecost/n6/realtabformer/rtf-n6-20260429_070345/rtf_checkpoints/checkpoint-19900/model.safetensors b/timecost/n6/realtabformer/rtf-n6-20260429_070345/rtf_checkpoints/checkpoint-19900/model.safetensors new file mode 100644 index 0000000000000000000000000000000000000000..1f588089841684b0444c01225c4d622731d924f2 --- /dev/null +++ b/timecost/n6/realtabformer/rtf-n6-20260429_070345/rtf_checkpoints/checkpoint-19900/model.safetensors @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:0f8b865cd62f9e9be7abb598d41f1690f913333f12ec58e79256cf6c93edcb4d +size 174555592 diff --git a/timecost/n6/realtabformer/rtf-n6-20260429_070345/rtf_checkpoints/checkpoint-19900/optimizer.pt b/timecost/n6/realtabformer/rtf-n6-20260429_070345/rtf_checkpoints/checkpoint-19900/optimizer.pt new file mode 100644 index 0000000000000000000000000000000000000000..093767e94c44a673c9c58bcacc5e391b03a7da86 --- /dev/null +++ b/timecost/n6/realtabformer/rtf-n6-20260429_070345/rtf_checkpoints/checkpoint-19900/optimizer.pt @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:c59c3032fcf1c28b47a87a4586521e50038a8afc9a41fb6e38b82de20d60f131 +size 349160267 diff --git a/timecost/n6/realtabformer/rtf-n6-20260429_070345/rtf_checkpoints/checkpoint-19900/rng_state.pth b/timecost/n6/realtabformer/rtf-n6-20260429_070345/rtf_checkpoints/checkpoint-19900/rng_state.pth new file mode 100644 index 0000000000000000000000000000000000000000..91518f5ae218af9c7b5f159a92575a29956dca5f --- /dev/null +++ b/timecost/n6/realtabformer/rtf-n6-20260429_070345/rtf_checkpoints/checkpoint-19900/rng_state.pth @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:f85300bcbb955e2865997eb8f311176ef6af09a223c199466d4b7632a0f2e22b +size 14645 diff --git a/timecost/n6/realtabformer/rtf-n6-20260429_070345/rtf_checkpoints/checkpoint-19900/scaler.pt b/timecost/n6/realtabformer/rtf-n6-20260429_070345/rtf_checkpoints/checkpoint-19900/scaler.pt new file mode 100644 index 0000000000000000000000000000000000000000..9fc7a869ff4da68cfae0ed00da5f4c5b3e2bcdb7 --- /dev/null +++ b/timecost/n6/realtabformer/rtf-n6-20260429_070345/rtf_checkpoints/checkpoint-19900/scaler.pt @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:23afe66b45f79dc44b547c2a53d9e2124d5eff6cce504993f795dd62384cdd21 +size 1383 diff --git a/timecost/n6/realtabformer/rtf-n6-20260429_070345/rtf_checkpoints/checkpoint-19900/scheduler.pt b/timecost/n6/realtabformer/rtf-n6-20260429_070345/rtf_checkpoints/checkpoint-19900/scheduler.pt new file mode 100644 index 0000000000000000000000000000000000000000..e281508e3d6a4fe6aecbfc9e276a88bb5ad66c1a --- /dev/null +++ b/timecost/n6/realtabformer/rtf-n6-20260429_070345/rtf_checkpoints/checkpoint-19900/scheduler.pt @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:0632b6280a9e99d77a46c192a11b1e508b5c8f4f6f69019911ce0a4b1c18155b +size 1465 diff --git a/timecost/n6/realtabformer/rtf-n6-20260429_070345/rtf_checkpoints/checkpoint-19900/trainer_state.json b/timecost/n6/realtabformer/rtf-n6-20260429_070345/rtf_checkpoints/checkpoint-19900/trainer_state.json new file mode 100644 index 0000000000000000000000000000000000000000..40cd9fbc9147a08878b76d7c34b33e2e28e6f150 --- /dev/null +++ b/timecost/n6/realtabformer/rtf-n6-20260429_070345/rtf_checkpoints/checkpoint-19900/trainer_state.json @@ -0,0 +1,1427 @@ +{ + "best_global_step": null, + "best_metric": null, + "best_model_checkpoint": null, + "epoch": 99.5, + "eval_steps": 100, + "global_step": 19900, + "is_hyper_param_search": false, + "is_local_process_zero": true, + "is_world_process_zero": true, + "log_history": [ + { + "epoch": 0.5, + "grad_norm": 0.23846545815467834, + "learning_rate": 4.97525e-05, + "loss": 1.9802227783203126, + "step": 100 + }, + { + "epoch": 1.0, + "grad_norm": 0.20555852353572845, + "learning_rate": 4.95025e-05, + "loss": 1.1221817779541015, + "step": 200 + }, + { + "epoch": 1.5, + "grad_norm": 0.21700991690158844, + "learning_rate": 4.92525e-05, + "loss": 1.0643415832519532, + "step": 300 + }, + { + "epoch": 2.0, + "grad_norm": 0.2044236809015274, + "learning_rate": 4.9002500000000004e-05, + "loss": 1.0245947265625, + "step": 400 + }, + { + "epoch": 2.5, + "grad_norm": 0.18077734112739563, + "learning_rate": 4.87525e-05, + "loss": 1.0032696533203125, + "step": 500 + }, + { + "epoch": 3.0, + "grad_norm": 0.19198282063007355, + "learning_rate": 4.85025e-05, + "loss": 1.0093541717529297, + "step": 600 + }, + { + "epoch": 3.5, + "grad_norm": 0.1984235793352127, + "learning_rate": 4.82525e-05, + "loss": 0.9847814178466797, + "step": 700 + }, + { + "epoch": 4.0, + "grad_norm": 0.17152079939842224, + "learning_rate": 4.80025e-05, + "loss": 0.982783203125, + "step": 800 + }, + { + "epoch": 4.5, + "grad_norm": 0.1930670440196991, + "learning_rate": 4.77525e-05, + "loss": 0.9716933441162109, + "step": 900 + }, + { + "epoch": 5.0, + "grad_norm": 0.19108322262763977, + "learning_rate": 4.75025e-05, + "loss": 0.9630477142333984, + "step": 1000 + }, + { + "epoch": 5.5, + "grad_norm": 0.1854381561279297, + "learning_rate": 4.72525e-05, + "loss": 0.9538239288330078, + "step": 1100 + }, + { + "epoch": 6.0, + "grad_norm": 0.17531616985797882, + "learning_rate": 4.70025e-05, + "loss": 0.95813720703125, + "step": 1200 + }, + { + "epoch": 6.5, + "grad_norm": 0.1815650910139084, + "learning_rate": 4.6752500000000003e-05, + "loss": 0.946460952758789, + "step": 1300 + }, + { + "epoch": 7.0, + "grad_norm": 0.19417639076709747, + "learning_rate": 4.6502500000000004e-05, + "loss": 0.9453800201416016, + "step": 1400 + }, + { + "epoch": 7.5, + "grad_norm": 0.1870127171278, + "learning_rate": 4.6252500000000005e-05, + "loss": 0.937877426147461, + "step": 1500 + }, + { + "epoch": 8.0, + "grad_norm": 0.1704702377319336, + "learning_rate": 4.6002500000000006e-05, + "loss": 0.9351255035400391, + "step": 1600 + }, + { + "epoch": 8.5, + "grad_norm": 0.18080289661884308, + "learning_rate": 4.5752500000000006e-05, + "loss": 0.9263742065429688, + "step": 1700 + }, + { + "epoch": 9.0, + "grad_norm": 0.18863996863365173, + "learning_rate": 4.55025e-05, + "loss": 0.9295844268798829, + "step": 1800 + }, + { + "epoch": 9.5, + "grad_norm": 0.19748634099960327, + "learning_rate": 4.52525e-05, + "loss": 0.9196556091308594, + "step": 1900 + }, + { + "epoch": 10.0, + "grad_norm": 0.20166783034801483, + "learning_rate": 4.50025e-05, + "loss": 0.9205670166015625, + "step": 2000 + }, + { + "epoch": 10.5, + "grad_norm": 0.19421179592609406, + "learning_rate": 4.47525e-05, + "loss": 0.9092935943603515, + "step": 2100 + }, + { + "epoch": 11.0, + "grad_norm": 0.17364448308944702, + "learning_rate": 4.45025e-05, + "loss": 0.9160775756835937, + "step": 2200 + }, + { + "epoch": 11.5, + "grad_norm": 0.1992802619934082, + "learning_rate": 4.4252500000000004e-05, + "loss": 0.9015705108642578, + "step": 2300 + }, + { + "epoch": 12.0, + "grad_norm": 0.20152443647384644, + "learning_rate": 4.4002500000000004e-05, + "loss": 0.9061229705810547, + "step": 2400 + }, + { + "epoch": 12.5, + "grad_norm": 0.2132837325334549, + "learning_rate": 4.3752500000000005e-05, + "loss": 0.8934657287597656, + "step": 2500 + }, + { + "epoch": 13.0, + "grad_norm": 0.19080808758735657, + "learning_rate": 4.35025e-05, + "loss": 0.899046401977539, + "step": 2600 + }, + { + "epoch": 13.5, + "grad_norm": 0.189740389585495, + "learning_rate": 4.32525e-05, + "loss": 0.8842880249023437, + "step": 2700 + }, + { + "epoch": 14.0, + "grad_norm": 0.20881056785583496, + "learning_rate": 4.30025e-05, + "loss": 0.8902586364746093, + "step": 2800 + }, + { + "epoch": 14.5, + "grad_norm": 0.20233558118343353, + "learning_rate": 4.27525e-05, + "loss": 0.8781875610351563, + "step": 2900 + }, + { + "epoch": 15.0, + "grad_norm": 0.20733879506587982, + "learning_rate": 4.25025e-05, + "loss": 0.8796215057373047, + "step": 3000 + }, + { + "epoch": 15.5, + "grad_norm": 0.20945705473423004, + "learning_rate": 4.22525e-05, + "loss": 0.8660121154785156, + "step": 3100 + }, + { + "epoch": 16.0, + "grad_norm": 0.2075275033712387, + "learning_rate": 4.20025e-05, + "loss": 0.872025146484375, + "step": 3200 + }, + { + "epoch": 16.5, + "grad_norm": 0.20175659656524658, + "learning_rate": 4.17525e-05, + "loss": 0.8569779968261719, + "step": 3300 + }, + { + "epoch": 17.0, + "grad_norm": 0.20709975063800812, + "learning_rate": 4.15025e-05, + "loss": 0.8622282409667968, + "step": 3400 + }, + { + "epoch": 17.5, + "grad_norm": 0.22440586984157562, + "learning_rate": 4.12525e-05, + "loss": 0.844241943359375, + "step": 3500 + }, + { + "epoch": 18.0, + "grad_norm": 0.2280527651309967, + "learning_rate": 4.10025e-05, + "loss": 0.8529148864746093, + "step": 3600 + }, + { + "epoch": 18.5, + "grad_norm": 0.22750917077064514, + "learning_rate": 4.075250000000001e-05, + "loss": 0.8350860595703125, + "step": 3700 + }, + { + "epoch": 19.0, + "grad_norm": 0.23036035895347595, + "learning_rate": 4.050250000000001e-05, + "loss": 0.8406881713867187, + "step": 3800 + }, + { + "epoch": 19.5, + "grad_norm": 0.24683690071105957, + "learning_rate": 4.02525e-05, + "loss": 0.8201627349853515, + "step": 3900 + }, + { + "epoch": 20.0, + "grad_norm": 0.22586171329021454, + "learning_rate": 4.00025e-05, + "loss": 0.8348744201660157, + "step": 4000 + }, + { + "epoch": 20.5, + "grad_norm": 0.25476565957069397, + "learning_rate": 3.97525e-05, + "loss": 0.8094847869873046, + "step": 4100 + }, + { + "epoch": 21.0, + "grad_norm": 0.26058006286621094, + "learning_rate": 3.95025e-05, + "loss": 0.821390380859375, + "step": 4200 + }, + { + "epoch": 21.5, + "grad_norm": 0.26972848176956177, + "learning_rate": 3.9252500000000004e-05, + "loss": 0.795047607421875, + "step": 4300 + }, + { + "epoch": 22.0, + "grad_norm": 0.24889031052589417, + "learning_rate": 3.9002500000000005e-05, + "loss": 0.8084414672851562, + "step": 4400 + }, + { + "epoch": 22.5, + "grad_norm": 0.2630121111869812, + "learning_rate": 3.8752500000000005e-05, + "loss": 0.7835968017578125, + "step": 4500 + }, + { + "epoch": 23.0, + "grad_norm": 0.264941543340683, + "learning_rate": 3.85025e-05, + "loss": 0.7941561889648437, + "step": 4600 + }, + { + "epoch": 23.5, + "grad_norm": 0.27832189202308655, + "learning_rate": 3.82525e-05, + "loss": 0.7683060455322266, + "step": 4700 + }, + { + "epoch": 24.0, + "grad_norm": 0.281009316444397, + "learning_rate": 3.80025e-05, + "loss": 0.7814789581298828, + "step": 4800 + }, + { + "epoch": 24.5, + "grad_norm": 0.2838248312473297, + "learning_rate": 3.77525e-05, + "loss": 0.7542767333984375, + "step": 4900 + }, + { + "epoch": 25.0, + "grad_norm": 0.29682639241218567, + "learning_rate": 3.75025e-05, + "loss": 0.7639364624023437, + "step": 5000 + }, + { + "epoch": 25.5, + "grad_norm": 0.2911108732223511, + "learning_rate": 3.72525e-05, + "loss": 0.7374829864501953, + "step": 5100 + }, + { + "epoch": 26.0, + "grad_norm": 0.3080083727836609, + "learning_rate": 3.7002500000000004e-05, + "loss": 0.7494142150878906, + "step": 5200 + }, + { + "epoch": 26.5, + "grad_norm": 0.31476718187332153, + "learning_rate": 3.67525e-05, + "loss": 0.7209281158447266, + "step": 5300 + }, + { + "epoch": 27.0, + "grad_norm": 0.3073391914367676, + "learning_rate": 3.65025e-05, + "loss": 0.7341756439208984, + "step": 5400 + }, + { + "epoch": 27.5, + "grad_norm": 0.3170262575149536, + "learning_rate": 3.62525e-05, + "loss": 0.7062877655029297, + "step": 5500 + }, + { + "epoch": 28.0, + "grad_norm": 0.3416720926761627, + "learning_rate": 3.60025e-05, + "loss": 0.7143956756591797, + "step": 5600 + }, + { + "epoch": 28.5, + "grad_norm": 0.32180145382881165, + "learning_rate": 3.57525e-05, + "loss": 0.6863983917236328, + "step": 5700 + }, + { + "epoch": 29.0, + "grad_norm": 0.3320668935775757, + "learning_rate": 3.55025e-05, + "loss": 0.6965797424316407, + "step": 5800 + }, + { + "epoch": 29.5, + "grad_norm": 0.3459661900997162, + "learning_rate": 3.52525e-05, + "loss": 0.665050048828125, + "step": 5900 + }, + { + "epoch": 30.0, + "grad_norm": 0.36955904960632324, + "learning_rate": 3.50025e-05, + "loss": 0.6811283111572266, + "step": 6000 + }, + { + "epoch": 30.5, + "grad_norm": 0.353595107793808, + "learning_rate": 3.4752499999999996e-05, + "loss": 0.6494364166259765, + "step": 6100 + }, + { + "epoch": 31.0, + "grad_norm": 0.3724261224269867, + "learning_rate": 3.4502500000000004e-05, + "loss": 0.6602011871337891, + "step": 6200 + }, + { + "epoch": 31.5, + "grad_norm": 0.3622111976146698, + "learning_rate": 3.4252500000000005e-05, + "loss": 0.6292791748046875, + "step": 6300 + }, + { + "epoch": 32.0, + "grad_norm": 0.3871346414089203, + "learning_rate": 3.4002500000000005e-05, + "loss": 0.6412000274658203, + "step": 6400 + }, + { + "epoch": 32.5, + "grad_norm": 0.37466201186180115, + "learning_rate": 3.3752500000000006e-05, + "loss": 0.6076009750366211, + "step": 6500 + }, + { + "epoch": 33.0, + "grad_norm": 0.38774964213371277, + "learning_rate": 3.350250000000001e-05, + "loss": 0.6244126892089844, + "step": 6600 + }, + { + "epoch": 33.5, + "grad_norm": 0.40086090564727783, + "learning_rate": 3.32525e-05, + "loss": 0.5891850662231445, + "step": 6700 + }, + { + "epoch": 34.0, + "grad_norm": 0.397621214389801, + "learning_rate": 3.30025e-05, + "loss": 0.6025267791748047, + "step": 6800 + }, + { + "epoch": 34.5, + "grad_norm": 0.38964155316352844, + "learning_rate": 3.27525e-05, + "loss": 0.5694293975830078, + "step": 6900 + }, + { + "epoch": 35.0, + "grad_norm": 0.41882845759391785, + "learning_rate": 3.25025e-05, + "loss": 0.5855500030517579, + "step": 7000 + }, + { + "epoch": 35.5, + "grad_norm": 0.3957461416721344, + "learning_rate": 3.22525e-05, + "loss": 0.5524356079101562, + "step": 7100 + }, + { + "epoch": 36.0, + "grad_norm": 0.4124171733856201, + "learning_rate": 3.2002500000000004e-05, + "loss": 0.5658663940429688, + "step": 7200 + }, + { + "epoch": 36.5, + "grad_norm": 0.41649162769317627, + "learning_rate": 3.1752500000000005e-05, + "loss": 0.5332207107543945, + "step": 7300 + }, + { + "epoch": 37.0, + "grad_norm": 0.4282434284687042, + "learning_rate": 3.15025e-05, + "loss": 0.5502962112426758, + "step": 7400 + }, + { + "epoch": 37.5, + "grad_norm": 0.4211678206920624, + "learning_rate": 3.12525e-05, + "loss": 0.5135954666137695, + "step": 7500 + }, + { + "epoch": 38.0, + "grad_norm": 0.4331444799900055, + "learning_rate": 3.10025e-05, + "loss": 0.527672119140625, + "step": 7600 + }, + { + "epoch": 38.5, + "grad_norm": 0.40753164887428284, + "learning_rate": 3.07525e-05, + "loss": 0.49722877502441404, + "step": 7700 + }, + { + "epoch": 39.0, + "grad_norm": 0.4255908131599426, + "learning_rate": 3.05025e-05, + "loss": 0.5126309585571289, + "step": 7800 + }, + { + "epoch": 39.5, + "grad_norm": 0.43637004494667053, + "learning_rate": 3.02525e-05, + "loss": 0.4813387680053711, + "step": 7900 + }, + { + "epoch": 40.0, + "grad_norm": 0.439633309841156, + "learning_rate": 3.00025e-05, + "loss": 0.49494590759277346, + "step": 8000 + }, + { + "epoch": 40.5, + "grad_norm": 0.4367655813694, + "learning_rate": 2.97525e-05, + "loss": 0.46536773681640625, + "step": 8100 + }, + { + "epoch": 41.0, + "grad_norm": 0.4501303732395172, + "learning_rate": 2.95025e-05, + "loss": 0.4779759216308594, + "step": 8200 + }, + { + "epoch": 41.5, + "grad_norm": 0.44598305225372314, + "learning_rate": 2.9252499999999998e-05, + "loss": 0.45186782836914063, + "step": 8300 + }, + { + "epoch": 42.0, + "grad_norm": 0.44075384736061096, + "learning_rate": 2.90025e-05, + "loss": 0.46137031555175784, + "step": 8400 + }, + { + "epoch": 42.5, + "grad_norm": 0.4338615834712982, + "learning_rate": 2.87525e-05, + "loss": 0.43537315368652346, + "step": 8500 + }, + { + "epoch": 43.0, + "grad_norm": 0.4544128477573395, + "learning_rate": 2.85025e-05, + "loss": 0.44546558380126955, + "step": 8600 + }, + { + "epoch": 43.5, + "grad_norm": 0.4372069537639618, + "learning_rate": 2.8252500000000004e-05, + "loss": 0.4216377639770508, + "step": 8700 + }, + { + "epoch": 44.0, + "grad_norm": 0.44973990321159363, + "learning_rate": 2.8002500000000005e-05, + "loss": 0.4316849136352539, + "step": 8800 + }, + { + "epoch": 44.5, + "grad_norm": 0.44243016839027405, + "learning_rate": 2.7752500000000002e-05, + "loss": 0.4082369613647461, + "step": 8900 + }, + { + "epoch": 45.0, + "grad_norm": 0.44320249557495117, + "learning_rate": 2.7502500000000003e-05, + "loss": 0.4201020050048828, + "step": 9000 + }, + { + "epoch": 45.5, + "grad_norm": 0.44853946566581726, + "learning_rate": 2.7252500000000004e-05, + "loss": 0.39533462524414065, + "step": 9100 + }, + { + "epoch": 46.0, + "grad_norm": 0.4522981345653534, + "learning_rate": 2.7002500000000004e-05, + "loss": 0.4059659194946289, + "step": 9200 + }, + { + "epoch": 46.5, + "grad_norm": 0.43445703387260437, + "learning_rate": 2.6752500000000002e-05, + "loss": 0.38393875122070314, + "step": 9300 + }, + { + "epoch": 47.0, + "grad_norm": 0.44054123759269714, + "learning_rate": 2.6502500000000002e-05, + "loss": 0.3942867279052734, + "step": 9400 + }, + { + "epoch": 47.5, + "grad_norm": 0.46875321865081787, + "learning_rate": 2.6252500000000003e-05, + "loss": 0.37364906311035156, + "step": 9500 + }, + { + "epoch": 48.0, + "grad_norm": 0.4392513036727905, + "learning_rate": 2.60025e-05, + "loss": 0.38418922424316404, + "step": 9600 + }, + { + "epoch": 48.5, + "grad_norm": 0.44256582856178284, + "learning_rate": 2.57525e-05, + "loss": 0.36397621154785154, + "step": 9700 + }, + { + "epoch": 49.0, + "grad_norm": 0.4096059203147888, + "learning_rate": 2.5502500000000002e-05, + "loss": 0.37398372650146483, + "step": 9800 + }, + { + "epoch": 49.5, + "grad_norm": 0.4084298014640808, + "learning_rate": 2.5252500000000003e-05, + "loss": 0.3530607223510742, + "step": 9900 + }, + { + "epoch": 50.0, + "grad_norm": 0.4513794779777527, + "learning_rate": 2.50025e-05, + "loss": 0.3632556915283203, + "step": 10000 + }, + { + "epoch": 50.5, + "grad_norm": 0.3950716257095337, + "learning_rate": 2.47525e-05, + "loss": 0.34567554473876955, + "step": 10100 + }, + { + "epoch": 51.0, + "grad_norm": 0.4658626914024353, + "learning_rate": 2.45025e-05, + "loss": 0.3531562042236328, + "step": 10200 + }, + { + "epoch": 51.5, + "grad_norm": 0.40074118971824646, + "learning_rate": 2.42525e-05, + "loss": 0.3368285369873047, + "step": 10300 + }, + { + "epoch": 52.0, + "grad_norm": 0.43490293622016907, + "learning_rate": 2.40025e-05, + "loss": 0.34483592987060546, + "step": 10400 + }, + { + "epoch": 52.5, + "grad_norm": 0.43086978793144226, + "learning_rate": 2.37525e-05, + "loss": 0.3291225814819336, + "step": 10500 + }, + { + "epoch": 53.0, + "grad_norm": 0.4458702504634857, + "learning_rate": 2.35025e-05, + "loss": 0.3378773880004883, + "step": 10600 + }, + { + "epoch": 53.5, + "grad_norm": 0.4361683130264282, + "learning_rate": 2.32525e-05, + "loss": 0.3223386001586914, + "step": 10700 + }, + { + "epoch": 54.0, + "grad_norm": 0.46678826212882996, + "learning_rate": 2.3002500000000002e-05, + "loss": 0.3297463607788086, + "step": 10800 + }, + { + "epoch": 54.5, + "grad_norm": 0.41767755150794983, + "learning_rate": 2.2752500000000003e-05, + "loss": 0.315598201751709, + "step": 10900 + }, + { + "epoch": 55.0, + "grad_norm": 0.4470875561237335, + "learning_rate": 2.25025e-05, + "loss": 0.32347301483154295, + "step": 11000 + }, + { + "epoch": 55.5, + "grad_norm": 0.4591546654701233, + "learning_rate": 2.22525e-05, + "loss": 0.31086679458618166, + "step": 11100 + }, + { + "epoch": 56.0, + "grad_norm": 0.44901204109191895, + "learning_rate": 2.20025e-05, + "loss": 0.31777124404907225, + "step": 11200 + }, + { + "epoch": 56.5, + "grad_norm": 0.41419050097465515, + "learning_rate": 2.1752500000000002e-05, + "loss": 0.30351598739624025, + "step": 11300 + }, + { + "epoch": 57.0, + "grad_norm": 0.43349865078926086, + "learning_rate": 2.15025e-05, + "loss": 0.3107553863525391, + "step": 11400 + }, + { + "epoch": 57.5, + "grad_norm": 0.4324033558368683, + "learning_rate": 2.12525e-05, + "loss": 0.2977292823791504, + "step": 11500 + }, + { + "epoch": 58.0, + "grad_norm": 0.43435463309288025, + "learning_rate": 2.10025e-05, + "loss": 0.30380510330200194, + "step": 11600 + }, + { + "epoch": 58.5, + "grad_norm": 0.36328092217445374, + "learning_rate": 2.0752499999999998e-05, + "loss": 0.2924338722229004, + "step": 11700 + }, + { + "epoch": 59.0, + "grad_norm": 0.4179525673389435, + "learning_rate": 2.0502500000000002e-05, + "loss": 0.29900590896606444, + "step": 11800 + }, + { + "epoch": 59.5, + "grad_norm": 0.38387784361839294, + "learning_rate": 2.0252500000000003e-05, + "loss": 0.28634124755859375, + "step": 11900 + }, + { + "epoch": 60.0, + "grad_norm": 0.4128117561340332, + "learning_rate": 2.00025e-05, + "loss": 0.2923979187011719, + "step": 12000 + }, + { + "epoch": 60.5, + "grad_norm": 0.4330095648765564, + "learning_rate": 1.97525e-05, + "loss": 0.28179628372192383, + "step": 12100 + }, + { + "epoch": 61.0, + "grad_norm": 0.42764198780059814, + "learning_rate": 1.9502500000000002e-05, + "loss": 0.2868915367126465, + "step": 12200 + }, + { + "epoch": 61.5, + "grad_norm": 0.39329856634140015, + "learning_rate": 1.9252500000000002e-05, + "loss": 0.2775389289855957, + "step": 12300 + }, + { + "epoch": 62.0, + "grad_norm": 0.3947943449020386, + "learning_rate": 1.90025e-05, + "loss": 0.2824789810180664, + "step": 12400 + }, + { + "epoch": 62.5, + "grad_norm": 0.4083310067653656, + "learning_rate": 1.87525e-05, + "loss": 0.2729552459716797, + "step": 12500 + }, + { + "epoch": 63.0, + "grad_norm": 0.4008137285709381, + "learning_rate": 1.85025e-05, + "loss": 0.27841379165649416, + "step": 12600 + }, + { + "epoch": 63.5, + "grad_norm": 0.3896923363208771, + "learning_rate": 1.82525e-05, + "loss": 0.2697013282775879, + "step": 12700 + }, + { + "epoch": 64.0, + "grad_norm": 0.41712749004364014, + "learning_rate": 1.80025e-05, + "loss": 0.27453325271606444, + "step": 12800 + }, + { + "epoch": 64.5, + "grad_norm": 0.38217687606811523, + "learning_rate": 1.77525e-05, + "loss": 0.26497941970825195, + "step": 12900 + }, + { + "epoch": 65.0, + "grad_norm": 0.4228459596633911, + "learning_rate": 1.75025e-05, + "loss": 0.26899080276489257, + "step": 13000 + }, + { + "epoch": 65.5, + "grad_norm": 0.384003221988678, + "learning_rate": 1.72525e-05, + "loss": 0.26288330078125, + "step": 13100 + }, + { + "epoch": 66.0, + "grad_norm": 0.4040643572807312, + "learning_rate": 1.7002500000000002e-05, + "loss": 0.2662550926208496, + "step": 13200 + }, + { + "epoch": 66.5, + "grad_norm": 0.3715139627456665, + "learning_rate": 1.6752500000000003e-05, + "loss": 0.25743928909301755, + "step": 13300 + }, + { + "epoch": 67.0, + "grad_norm": 0.382761150598526, + "learning_rate": 1.65025e-05, + "loss": 0.2623816680908203, + "step": 13400 + }, + { + "epoch": 67.5, + "grad_norm": 0.4100727140903473, + "learning_rate": 1.62525e-05, + "loss": 0.25506450653076174, + "step": 13500 + }, + { + "epoch": 68.0, + "grad_norm": 0.36104685068130493, + "learning_rate": 1.60025e-05, + "loss": 0.2590820503234863, + "step": 13600 + }, + { + "epoch": 68.5, + "grad_norm": 0.4170261025428772, + "learning_rate": 1.5752500000000002e-05, + "loss": 0.2522945022583008, + "step": 13700 + }, + { + "epoch": 69.0, + "grad_norm": 0.4074130356311798, + "learning_rate": 1.55025e-05, + "loss": 0.256374683380127, + "step": 13800 + }, + { + "epoch": 69.5, + "grad_norm": 0.4009321331977844, + "learning_rate": 1.52525e-05, + "loss": 0.2484601593017578, + "step": 13900 + }, + { + "epoch": 70.0, + "grad_norm": 0.3586087226867676, + "learning_rate": 1.5002499999999999e-05, + "loss": 0.2519577980041504, + "step": 14000 + }, + { + "epoch": 70.5, + "grad_norm": 0.39007654786109924, + "learning_rate": 1.47525e-05, + "loss": 0.2457340431213379, + "step": 14100 + }, + { + "epoch": 71.0, + "grad_norm": 0.3830292820930481, + "learning_rate": 1.4502499999999999e-05, + "loss": 0.24784101486206056, + "step": 14200 + }, + { + "epoch": 71.5, + "grad_norm": 0.3842337429523468, + "learning_rate": 1.4252500000000001e-05, + "loss": 0.24252428054809572, + "step": 14300 + }, + { + "epoch": 72.0, + "grad_norm": 0.33969053626060486, + "learning_rate": 1.4002500000000002e-05, + "loss": 0.2472601890563965, + "step": 14400 + }, + { + "epoch": 72.5, + "grad_norm": 0.38084539771080017, + "learning_rate": 1.3752500000000001e-05, + "loss": 0.2398312759399414, + "step": 14500 + }, + { + "epoch": 73.0, + "grad_norm": 0.3362090587615967, + "learning_rate": 1.3502500000000002e-05, + "loss": 0.24383731842041015, + "step": 14600 + }, + { + "epoch": 73.5, + "grad_norm": 0.37916791439056396, + "learning_rate": 1.32525e-05, + "loss": 0.23760452270507812, + "step": 14700 + }, + { + "epoch": 74.0, + "grad_norm": 0.37284770607948303, + "learning_rate": 1.3002500000000001e-05, + "loss": 0.24114870071411132, + "step": 14800 + }, + { + "epoch": 74.5, + "grad_norm": 0.3742426633834839, + "learning_rate": 1.27525e-05, + "loss": 0.2348023223876953, + "step": 14900 + }, + { + "epoch": 75.0, + "grad_norm": 0.3935767114162445, + "learning_rate": 1.2502500000000001e-05, + "loss": 0.23796173095703124, + "step": 15000 + }, + { + "epoch": 75.5, + "grad_norm": 0.3600524365901947, + "learning_rate": 1.22525e-05, + "loss": 0.23247020721435546, + "step": 15100 + }, + { + "epoch": 76.0, + "grad_norm": 0.3458992540836334, + "learning_rate": 1.20025e-05, + "loss": 0.23637393951416016, + "step": 15200 + }, + { + "epoch": 76.5, + "grad_norm": 0.3585320711135864, + "learning_rate": 1.1752500000000001e-05, + "loss": 0.2308286476135254, + "step": 15300 + }, + { + "epoch": 77.0, + "grad_norm": 0.37773242592811584, + "learning_rate": 1.15025e-05, + "loss": 0.233690242767334, + "step": 15400 + }, + { + "epoch": 77.5, + "grad_norm": 0.3859589695930481, + "learning_rate": 1.1252500000000001e-05, + "loss": 0.2287772750854492, + "step": 15500 + }, + { + "epoch": 78.0, + "grad_norm": 0.3758644461631775, + "learning_rate": 1.10025e-05, + "loss": 0.23166227340698242, + "step": 15600 + }, + { + "epoch": 78.5, + "grad_norm": 0.3552301526069641, + "learning_rate": 1.07525e-05, + "loss": 0.2268804931640625, + "step": 15700 + }, + { + "epoch": 79.0, + "grad_norm": 0.3842378556728363, + "learning_rate": 1.05025e-05, + "loss": 0.22957588195800782, + "step": 15800 + }, + { + "epoch": 79.5, + "grad_norm": 0.33627477288246155, + "learning_rate": 1.02525e-05, + "loss": 0.22454282760620117, + "step": 15900 + }, + { + "epoch": 80.0, + "grad_norm": 0.389986515045166, + "learning_rate": 1.0002500000000001e-05, + "loss": 0.22761936187744142, + "step": 16000 + }, + { + "epoch": 80.5, + "grad_norm": 0.3108944296836853, + "learning_rate": 9.7525e-06, + "loss": 0.22338836669921874, + "step": 16100 + }, + { + "epoch": 81.0, + "grad_norm": 0.32868942618370056, + "learning_rate": 9.502500000000001e-06, + "loss": 0.22411474227905273, + "step": 16200 + }, + { + "epoch": 81.5, + "grad_norm": 0.34585270285606384, + "learning_rate": 9.2525e-06, + "loss": 0.22169002532958984, + "step": 16300 + }, + { + "epoch": 82.0, + "grad_norm": 0.3643505871295929, + "learning_rate": 9.0025e-06, + "loss": 0.22333917617797852, + "step": 16400 + }, + { + "epoch": 82.5, + "grad_norm": 0.35764428973197937, + "learning_rate": 8.752500000000001e-06, + "loss": 0.22027700424194335, + "step": 16500 + }, + { + "epoch": 83.0, + "grad_norm": 0.3697255551815033, + "learning_rate": 8.5025e-06, + "loss": 0.22190006256103514, + "step": 16600 + }, + { + "epoch": 83.5, + "grad_norm": 0.34389302134513855, + "learning_rate": 8.252500000000001e-06, + "loss": 0.21772838592529298, + "step": 16700 + }, + { + "epoch": 84.0, + "grad_norm": 0.35523974895477295, + "learning_rate": 8.0025e-06, + "loss": 0.21992773056030274, + "step": 16800 + }, + { + "epoch": 84.5, + "grad_norm": 0.33763980865478516, + "learning_rate": 7.7525e-06, + "loss": 0.21668706893920897, + "step": 16900 + }, + { + "epoch": 85.0, + "grad_norm": 0.3457420766353607, + "learning_rate": 7.5025e-06, + "loss": 0.21767711639404297, + "step": 17000 + }, + { + "epoch": 85.5, + "grad_norm": 0.34709328413009644, + "learning_rate": 7.252500000000001e-06, + "loss": 0.21578775405883788, + "step": 17100 + }, + { + "epoch": 86.0, + "grad_norm": 0.3611862361431122, + "learning_rate": 7.002500000000001e-06, + "loss": 0.21809673309326172, + "step": 17200 + }, + { + "epoch": 86.5, + "grad_norm": 0.35064128041267395, + "learning_rate": 6.7525e-06, + "loss": 0.21291667938232423, + "step": 17300 + }, + { + "epoch": 87.0, + "grad_norm": 0.35625672340393066, + "learning_rate": 6.5025e-06, + "loss": 0.21576713562011718, + "step": 17400 + }, + { + "epoch": 87.5, + "grad_norm": 0.3733029365539551, + "learning_rate": 6.2525e-06, + "loss": 0.21200632095336913, + "step": 17500 + }, + { + "epoch": 88.0, + "grad_norm": 0.34649088978767395, + "learning_rate": 6.0025000000000006e-06, + "loss": 0.2149067687988281, + "step": 17600 + }, + { + "epoch": 88.5, + "grad_norm": 0.306749165058136, + "learning_rate": 5.7525e-06, + "loss": 0.21139209747314452, + "step": 17700 + }, + { + "epoch": 89.0, + "grad_norm": 0.35020408034324646, + "learning_rate": 5.5025e-06, + "loss": 0.21399372100830077, + "step": 17800 + }, + { + "epoch": 89.5, + "grad_norm": 0.31811031699180603, + "learning_rate": 5.2525e-06, + "loss": 0.2106713104248047, + "step": 17900 + }, + { + "epoch": 90.0, + "grad_norm": 0.315910667181015, + "learning_rate": 5.0025e-06, + "loss": 0.21184038162231444, + "step": 18000 + }, + { + "epoch": 90.5, + "grad_norm": 0.3591602146625519, + "learning_rate": 4.755e-06, + "loss": 0.2087250518798828, + "step": 18100 + }, + { + "epoch": 91.0, + "grad_norm": 0.2959374189376831, + "learning_rate": 4.505e-06, + "loss": 0.2099794006347656, + "step": 18200 + }, + { + "epoch": 91.5, + "grad_norm": 0.2833845317363739, + "learning_rate": 4.255e-06, + "loss": 0.20827140808105468, + "step": 18300 + }, + { + "epoch": 92.0, + "grad_norm": 0.33928927779197693, + "learning_rate": 4.005000000000001e-06, + "loss": 0.20932321548461913, + "step": 18400 + }, + { + "epoch": 92.5, + "grad_norm": 0.321674644947052, + "learning_rate": 3.755e-06, + "loss": 0.205947322845459, + "step": 18500 + }, + { + "epoch": 93.0, + "grad_norm": 0.2966731786727905, + "learning_rate": 3.505e-06, + "loss": 0.20795421600341796, + "step": 18600 + }, + { + "epoch": 93.5, + "grad_norm": 0.3216817378997803, + "learning_rate": 3.2550000000000006e-06, + "loss": 0.20623821258544922, + "step": 18700 + }, + { + "epoch": 94.0, + "grad_norm": 0.35450977087020874, + "learning_rate": 3.005e-06, + "loss": 0.20804498672485353, + "step": 18800 + }, + { + "epoch": 94.5, + "grad_norm": 0.2994995415210724, + "learning_rate": 2.7550000000000003e-06, + "loss": 0.20724256515502928, + "step": 18900 + }, + { + "epoch": 95.0, + "grad_norm": 0.3332589566707611, + "learning_rate": 2.505e-06, + "loss": 0.2055183982849121, + "step": 19000 + }, + { + "epoch": 95.5, + "grad_norm": 0.30346137285232544, + "learning_rate": 2.255e-06, + "loss": 0.2049989128112793, + "step": 19100 + }, + { + "epoch": 96.0, + "grad_norm": 0.2948566973209381, + "learning_rate": 2.005e-06, + "loss": 0.20483097076416015, + "step": 19200 + }, + { + "epoch": 96.5, + "grad_norm": 0.3213671147823334, + "learning_rate": 1.7550000000000001e-06, + "loss": 0.20349571228027344, + "step": 19300 + }, + { + "epoch": 97.0, + "grad_norm": 0.30940669775009155, + "learning_rate": 1.505e-06, + "loss": 0.20510492324829102, + "step": 19400 + }, + { + "epoch": 97.5, + "grad_norm": 0.29669439792633057, + "learning_rate": 1.255e-06, + "loss": 0.20321809768676757, + "step": 19500 + }, + { + "epoch": 98.0, + "grad_norm": 0.3040596544742584, + "learning_rate": 1.0050000000000001e-06, + "loss": 0.20417285919189454, + "step": 19600 + }, + { + "epoch": 98.5, + "grad_norm": 0.29241570830345154, + "learning_rate": 7.550000000000001e-07, + "loss": 0.20377571105957032, + "step": 19700 + }, + { + "epoch": 99.0, + "grad_norm": 0.33404168486595154, + "learning_rate": 5.05e-07, + "loss": 0.2034158706665039, + "step": 19800 + }, + { + "epoch": 99.5, + "grad_norm": 0.29330864548683167, + "learning_rate": 2.5500000000000005e-07, + "loss": 0.20246898651123046, + "step": 19900 + } + ], + "logging_steps": 100, + "max_steps": 20000, + "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": 1.08870924238848e+16, + "train_batch_size": 8, + "trial_name": null, + "trial_params": null +} diff --git a/timecost/n6/realtabformer/rtf-n6-20260429_070345/rtf_checkpoints/checkpoint-19900/training_args.bin b/timecost/n6/realtabformer/rtf-n6-20260429_070345/rtf_checkpoints/checkpoint-19900/training_args.bin new file mode 100644 index 0000000000000000000000000000000000000000..34d68dc0e0fe1c1f12a2e581dd1b166aa7178a9e --- /dev/null +++ b/timecost/n6/realtabformer/rtf-n6-20260429_070345/rtf_checkpoints/checkpoint-19900/training_args.bin @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:9e2cd88337d1d846c6918d2b3b63fa3e5c93f12fefc082497590da854a564607 +size 5201 diff --git a/timecost/n6/realtabformer/rtf-n6-20260429_070345/rtf_checkpoints/checkpoint-20000/config.json b/timecost/n6/realtabformer/rtf-n6-20260429_070345/rtf_checkpoints/checkpoint-20000/config.json new file mode 100644 index 0000000000000000000000000000000000000000..ec3451e1a76244eef3e5bbfa6dfc2b2176f6aef9 --- /dev/null +++ b/timecost/n6/realtabformer/rtf-n6-20260429_070345/rtf_checkpoints/checkpoint-20000/config.json @@ -0,0 +1,34 @@ +{ + "activation_function": "gelu_new", + "add_cross_attention": false, + "architectures": [ + "GPT2LMHeadModel" + ], + "attn_pdrop": 0.1, + "bos_token_id": 5, + "dtype": "float32", + "embd_pdrop": 0.1, + "eos_token_id": 6, + "initializer_range": 0.02, + "layer_norm_epsilon": 1e-05, + "model_type": "gpt2", + "n_embd": 768, + "n_head": 12, + "n_inner": null, + "n_layer": 6, + "n_positions": 1024, + "pad_token_id": null, + "reorder_and_upcast_attn": false, + "resid_pdrop": 0.1, + "scale_attn_by_inverse_layer_idx": false, + "scale_attn_weights": true, + "summary_activation": null, + "summary_first_dropout": 0.1, + "summary_proj_to_labels": true, + "summary_type": "cls_index", + "summary_use_proj": true, + "tie_word_embeddings": true, + "transformers_version": "5.5.3", + "use_cache": false, + "vocab_size": 419 +} diff --git a/timecost/n6/realtabformer/rtf-n6-20260429_070345/rtf_checkpoints/checkpoint-20000/generation_config.json b/timecost/n6/realtabformer/rtf-n6-20260429_070345/rtf_checkpoints/checkpoint-20000/generation_config.json new file mode 100644 index 0000000000000000000000000000000000000000..ffe89567780e75b5c22eade9be971483b9618f39 --- /dev/null +++ b/timecost/n6/realtabformer/rtf-n6-20260429_070345/rtf_checkpoints/checkpoint-20000/generation_config.json @@ -0,0 +1,9 @@ +{ + "_from_model_config": true, + "bos_token_id": 5, + "eos_token_id": 6, + "output_attentions": false, + "output_hidden_states": false, + "transformers_version": "5.5.3", + "use_cache": true +} diff --git a/timecost/n6/realtabformer/rtf-n6-20260429_070345/rtf_checkpoints/checkpoint-20000/model.safetensors b/timecost/n6/realtabformer/rtf-n6-20260429_070345/rtf_checkpoints/checkpoint-20000/model.safetensors new file mode 100644 index 0000000000000000000000000000000000000000..8fcdf33eeb60cd842fbf3b3f0937a947c21fd13a --- /dev/null +++ b/timecost/n6/realtabformer/rtf-n6-20260429_070345/rtf_checkpoints/checkpoint-20000/model.safetensors @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:1ec89163daaa846aa8091091ea5de54d64693e3fb602ab03c2b40d8efcf5ef8d +size 174555592 diff --git a/timecost/n6/realtabformer/rtf-n6-20260429_070345/rtf_checkpoints/checkpoint-20000/optimizer.pt b/timecost/n6/realtabformer/rtf-n6-20260429_070345/rtf_checkpoints/checkpoint-20000/optimizer.pt new file mode 100644 index 0000000000000000000000000000000000000000..fbc1bda408a680b5c4140e7dd86a9b91bf164f90 --- /dev/null +++ b/timecost/n6/realtabformer/rtf-n6-20260429_070345/rtf_checkpoints/checkpoint-20000/optimizer.pt @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:0c0fff074df322060903fd984e6f15bb7543e6d5eb0244c0e5063d4133da6da4 +size 349160267 diff --git a/timecost/n6/realtabformer/rtf-n6-20260429_070345/rtf_checkpoints/checkpoint-20000/rng_state.pth b/timecost/n6/realtabformer/rtf-n6-20260429_070345/rtf_checkpoints/checkpoint-20000/rng_state.pth new file mode 100644 index 0000000000000000000000000000000000000000..d0293b5588ba77ee0877ccb948f16b45197a1709 --- /dev/null +++ b/timecost/n6/realtabformer/rtf-n6-20260429_070345/rtf_checkpoints/checkpoint-20000/rng_state.pth @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:a9484f91b4b64cdceff639db458ce616122fc10b1fff713a28695933801b0c27 +size 14645 diff --git a/timecost/n6/realtabformer/rtf-n6-20260429_070345/rtf_checkpoints/checkpoint-20000/scaler.pt b/timecost/n6/realtabformer/rtf-n6-20260429_070345/rtf_checkpoints/checkpoint-20000/scaler.pt new file mode 100644 index 0000000000000000000000000000000000000000..5beeab0fb82f085cc736077331b47356ff7c8308 --- /dev/null +++ b/timecost/n6/realtabformer/rtf-n6-20260429_070345/rtf_checkpoints/checkpoint-20000/scaler.pt @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:f26f29d978e60e3abe9d9c591bbb386908fe067ef680f4b7146c1c9b751fe412 +size 1383 diff --git a/timecost/n6/realtabformer/rtf-n6-20260429_070345/rtf_checkpoints/checkpoint-20000/scheduler.pt b/timecost/n6/realtabformer/rtf-n6-20260429_070345/rtf_checkpoints/checkpoint-20000/scheduler.pt new file mode 100644 index 0000000000000000000000000000000000000000..bab410da7c7e347a8e435894ea51ca91f0d3a936 --- /dev/null +++ b/timecost/n6/realtabformer/rtf-n6-20260429_070345/rtf_checkpoints/checkpoint-20000/scheduler.pt @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:88b63196173ed41a8455b11d0c5248127cb9cf22975732c03359bc6275476643 +size 1465 diff --git a/timecost/n6/realtabformer/rtf-n6-20260429_070345/rtf_checkpoints/checkpoint-20000/trainer_state.json b/timecost/n6/realtabformer/rtf-n6-20260429_070345/rtf_checkpoints/checkpoint-20000/trainer_state.json new file mode 100644 index 0000000000000000000000000000000000000000..645cd0a0434dc70736cb48cd5ab940d7d160baed --- /dev/null +++ b/timecost/n6/realtabformer/rtf-n6-20260429_070345/rtf_checkpoints/checkpoint-20000/trainer_state.json @@ -0,0 +1,1434 @@ +{ + "best_global_step": null, + "best_metric": null, + "best_model_checkpoint": null, + "epoch": 100.0, + "eval_steps": 100, + "global_step": 20000, + "is_hyper_param_search": false, + "is_local_process_zero": true, + "is_world_process_zero": true, + "log_history": [ + { + "epoch": 0.5, + "grad_norm": 0.23846545815467834, + "learning_rate": 4.97525e-05, + "loss": 1.9802227783203126, + "step": 100 + }, + { + "epoch": 1.0, + "grad_norm": 0.20555852353572845, + "learning_rate": 4.95025e-05, + "loss": 1.1221817779541015, + "step": 200 + }, + { + "epoch": 1.5, + "grad_norm": 0.21700991690158844, + "learning_rate": 4.92525e-05, + "loss": 1.0643415832519532, + "step": 300 + }, + { + "epoch": 2.0, + "grad_norm": 0.2044236809015274, + "learning_rate": 4.9002500000000004e-05, + "loss": 1.0245947265625, + "step": 400 + }, + { + "epoch": 2.5, + "grad_norm": 0.18077734112739563, + "learning_rate": 4.87525e-05, + "loss": 1.0032696533203125, + "step": 500 + }, + { + "epoch": 3.0, + "grad_norm": 0.19198282063007355, + "learning_rate": 4.85025e-05, + "loss": 1.0093541717529297, + "step": 600 + }, + { + "epoch": 3.5, + "grad_norm": 0.1984235793352127, + "learning_rate": 4.82525e-05, + "loss": 0.9847814178466797, + "step": 700 + }, + { + "epoch": 4.0, + "grad_norm": 0.17152079939842224, + "learning_rate": 4.80025e-05, + "loss": 0.982783203125, + "step": 800 + }, + { + "epoch": 4.5, + "grad_norm": 0.1930670440196991, + "learning_rate": 4.77525e-05, + "loss": 0.9716933441162109, + "step": 900 + }, + { + "epoch": 5.0, + "grad_norm": 0.19108322262763977, + "learning_rate": 4.75025e-05, + "loss": 0.9630477142333984, + "step": 1000 + }, + { + "epoch": 5.5, + "grad_norm": 0.1854381561279297, + "learning_rate": 4.72525e-05, + "loss": 0.9538239288330078, + "step": 1100 + }, + { + "epoch": 6.0, + "grad_norm": 0.17531616985797882, + "learning_rate": 4.70025e-05, + "loss": 0.95813720703125, + "step": 1200 + }, + { + "epoch": 6.5, + "grad_norm": 0.1815650910139084, + "learning_rate": 4.6752500000000003e-05, + "loss": 0.946460952758789, + "step": 1300 + }, + { + "epoch": 7.0, + "grad_norm": 0.19417639076709747, + "learning_rate": 4.6502500000000004e-05, + "loss": 0.9453800201416016, + "step": 1400 + }, + { + "epoch": 7.5, + "grad_norm": 0.1870127171278, + "learning_rate": 4.6252500000000005e-05, + "loss": 0.937877426147461, + "step": 1500 + }, + { + "epoch": 8.0, + "grad_norm": 0.1704702377319336, + "learning_rate": 4.6002500000000006e-05, + "loss": 0.9351255035400391, + "step": 1600 + }, + { + "epoch": 8.5, + "grad_norm": 0.18080289661884308, + "learning_rate": 4.5752500000000006e-05, + "loss": 0.9263742065429688, + "step": 1700 + }, + { + "epoch": 9.0, + "grad_norm": 0.18863996863365173, + "learning_rate": 4.55025e-05, + "loss": 0.9295844268798829, + "step": 1800 + }, + { + "epoch": 9.5, + "grad_norm": 0.19748634099960327, + "learning_rate": 4.52525e-05, + "loss": 0.9196556091308594, + "step": 1900 + }, + { + "epoch": 10.0, + "grad_norm": 0.20166783034801483, + "learning_rate": 4.50025e-05, + "loss": 0.9205670166015625, + "step": 2000 + }, + { + "epoch": 10.5, + "grad_norm": 0.19421179592609406, + "learning_rate": 4.47525e-05, + "loss": 0.9092935943603515, + "step": 2100 + }, + { + "epoch": 11.0, + "grad_norm": 0.17364448308944702, + "learning_rate": 4.45025e-05, + "loss": 0.9160775756835937, + "step": 2200 + }, + { + "epoch": 11.5, + "grad_norm": 0.1992802619934082, + "learning_rate": 4.4252500000000004e-05, + "loss": 0.9015705108642578, + "step": 2300 + }, + { + "epoch": 12.0, + "grad_norm": 0.20152443647384644, + "learning_rate": 4.4002500000000004e-05, + "loss": 0.9061229705810547, + "step": 2400 + }, + { + "epoch": 12.5, + "grad_norm": 0.2132837325334549, + "learning_rate": 4.3752500000000005e-05, + "loss": 0.8934657287597656, + "step": 2500 + }, + { + "epoch": 13.0, + "grad_norm": 0.19080808758735657, + "learning_rate": 4.35025e-05, + "loss": 0.899046401977539, + "step": 2600 + }, + { + "epoch": 13.5, + "grad_norm": 0.189740389585495, + "learning_rate": 4.32525e-05, + "loss": 0.8842880249023437, + "step": 2700 + }, + { + "epoch": 14.0, + "grad_norm": 0.20881056785583496, + "learning_rate": 4.30025e-05, + "loss": 0.8902586364746093, + "step": 2800 + }, + { + "epoch": 14.5, + "grad_norm": 0.20233558118343353, + "learning_rate": 4.27525e-05, + "loss": 0.8781875610351563, + "step": 2900 + }, + { + "epoch": 15.0, + "grad_norm": 0.20733879506587982, + "learning_rate": 4.25025e-05, + "loss": 0.8796215057373047, + "step": 3000 + }, + { + "epoch": 15.5, + "grad_norm": 0.20945705473423004, + "learning_rate": 4.22525e-05, + "loss": 0.8660121154785156, + "step": 3100 + }, + { + "epoch": 16.0, + "grad_norm": 0.2075275033712387, + "learning_rate": 4.20025e-05, + "loss": 0.872025146484375, + "step": 3200 + }, + { + "epoch": 16.5, + "grad_norm": 0.20175659656524658, + "learning_rate": 4.17525e-05, + "loss": 0.8569779968261719, + "step": 3300 + }, + { + "epoch": 17.0, + "grad_norm": 0.20709975063800812, + "learning_rate": 4.15025e-05, + "loss": 0.8622282409667968, + "step": 3400 + }, + { + "epoch": 17.5, + "grad_norm": 0.22440586984157562, + "learning_rate": 4.12525e-05, + "loss": 0.844241943359375, + "step": 3500 + }, + { + "epoch": 18.0, + "grad_norm": 0.2280527651309967, + "learning_rate": 4.10025e-05, + "loss": 0.8529148864746093, + "step": 3600 + }, + { + "epoch": 18.5, + "grad_norm": 0.22750917077064514, + "learning_rate": 4.075250000000001e-05, + "loss": 0.8350860595703125, + "step": 3700 + }, + { + "epoch": 19.0, + "grad_norm": 0.23036035895347595, + "learning_rate": 4.050250000000001e-05, + "loss": 0.8406881713867187, + "step": 3800 + }, + { + "epoch": 19.5, + "grad_norm": 0.24683690071105957, + "learning_rate": 4.02525e-05, + "loss": 0.8201627349853515, + "step": 3900 + }, + { + "epoch": 20.0, + "grad_norm": 0.22586171329021454, + "learning_rate": 4.00025e-05, + "loss": 0.8348744201660157, + "step": 4000 + }, + { + "epoch": 20.5, + "grad_norm": 0.25476565957069397, + "learning_rate": 3.97525e-05, + "loss": 0.8094847869873046, + "step": 4100 + }, + { + "epoch": 21.0, + "grad_norm": 0.26058006286621094, + "learning_rate": 3.95025e-05, + "loss": 0.821390380859375, + "step": 4200 + }, + { + "epoch": 21.5, + "grad_norm": 0.26972848176956177, + "learning_rate": 3.9252500000000004e-05, + "loss": 0.795047607421875, + "step": 4300 + }, + { + "epoch": 22.0, + "grad_norm": 0.24889031052589417, + "learning_rate": 3.9002500000000005e-05, + "loss": 0.8084414672851562, + "step": 4400 + }, + { + "epoch": 22.5, + "grad_norm": 0.2630121111869812, + "learning_rate": 3.8752500000000005e-05, + "loss": 0.7835968017578125, + "step": 4500 + }, + { + "epoch": 23.0, + "grad_norm": 0.264941543340683, + "learning_rate": 3.85025e-05, + "loss": 0.7941561889648437, + "step": 4600 + }, + { + "epoch": 23.5, + "grad_norm": 0.27832189202308655, + "learning_rate": 3.82525e-05, + "loss": 0.7683060455322266, + "step": 4700 + }, + { + "epoch": 24.0, + "grad_norm": 0.281009316444397, + "learning_rate": 3.80025e-05, + "loss": 0.7814789581298828, + "step": 4800 + }, + { + "epoch": 24.5, + "grad_norm": 0.2838248312473297, + "learning_rate": 3.77525e-05, + "loss": 0.7542767333984375, + "step": 4900 + }, + { + "epoch": 25.0, + "grad_norm": 0.29682639241218567, + "learning_rate": 3.75025e-05, + "loss": 0.7639364624023437, + "step": 5000 + }, + { + "epoch": 25.5, + "grad_norm": 0.2911108732223511, + "learning_rate": 3.72525e-05, + "loss": 0.7374829864501953, + "step": 5100 + }, + { + "epoch": 26.0, + "grad_norm": 0.3080083727836609, + "learning_rate": 3.7002500000000004e-05, + "loss": 0.7494142150878906, + "step": 5200 + }, + { + "epoch": 26.5, + "grad_norm": 0.31476718187332153, + "learning_rate": 3.67525e-05, + "loss": 0.7209281158447266, + "step": 5300 + }, + { + "epoch": 27.0, + "grad_norm": 0.3073391914367676, + "learning_rate": 3.65025e-05, + "loss": 0.7341756439208984, + "step": 5400 + }, + { + "epoch": 27.5, + "grad_norm": 0.3170262575149536, + "learning_rate": 3.62525e-05, + "loss": 0.7062877655029297, + "step": 5500 + }, + { + "epoch": 28.0, + "grad_norm": 0.3416720926761627, + "learning_rate": 3.60025e-05, + "loss": 0.7143956756591797, + "step": 5600 + }, + { + "epoch": 28.5, + "grad_norm": 0.32180145382881165, + "learning_rate": 3.57525e-05, + "loss": 0.6863983917236328, + "step": 5700 + }, + { + "epoch": 29.0, + "grad_norm": 0.3320668935775757, + "learning_rate": 3.55025e-05, + "loss": 0.6965797424316407, + "step": 5800 + }, + { + "epoch": 29.5, + "grad_norm": 0.3459661900997162, + "learning_rate": 3.52525e-05, + "loss": 0.665050048828125, + "step": 5900 + }, + { + "epoch": 30.0, + "grad_norm": 0.36955904960632324, + "learning_rate": 3.50025e-05, + "loss": 0.6811283111572266, + "step": 6000 + }, + { + "epoch": 30.5, + "grad_norm": 0.353595107793808, + "learning_rate": 3.4752499999999996e-05, + "loss": 0.6494364166259765, + "step": 6100 + }, + { + "epoch": 31.0, + "grad_norm": 0.3724261224269867, + "learning_rate": 3.4502500000000004e-05, + "loss": 0.6602011871337891, + "step": 6200 + }, + { + "epoch": 31.5, + "grad_norm": 0.3622111976146698, + "learning_rate": 3.4252500000000005e-05, + "loss": 0.6292791748046875, + "step": 6300 + }, + { + "epoch": 32.0, + "grad_norm": 0.3871346414089203, + "learning_rate": 3.4002500000000005e-05, + "loss": 0.6412000274658203, + "step": 6400 + }, + { + "epoch": 32.5, + "grad_norm": 0.37466201186180115, + "learning_rate": 3.3752500000000006e-05, + "loss": 0.6076009750366211, + "step": 6500 + }, + { + "epoch": 33.0, + "grad_norm": 0.38774964213371277, + "learning_rate": 3.350250000000001e-05, + "loss": 0.6244126892089844, + "step": 6600 + }, + { + "epoch": 33.5, + "grad_norm": 0.40086090564727783, + "learning_rate": 3.32525e-05, + "loss": 0.5891850662231445, + "step": 6700 + }, + { + "epoch": 34.0, + "grad_norm": 0.397621214389801, + "learning_rate": 3.30025e-05, + "loss": 0.6025267791748047, + "step": 6800 + }, + { + "epoch": 34.5, + "grad_norm": 0.38964155316352844, + "learning_rate": 3.27525e-05, + "loss": 0.5694293975830078, + "step": 6900 + }, + { + "epoch": 35.0, + "grad_norm": 0.41882845759391785, + "learning_rate": 3.25025e-05, + "loss": 0.5855500030517579, + "step": 7000 + }, + { + "epoch": 35.5, + "grad_norm": 0.3957461416721344, + "learning_rate": 3.22525e-05, + "loss": 0.5524356079101562, + "step": 7100 + }, + { + "epoch": 36.0, + "grad_norm": 0.4124171733856201, + "learning_rate": 3.2002500000000004e-05, + "loss": 0.5658663940429688, + "step": 7200 + }, + { + "epoch": 36.5, + "grad_norm": 0.41649162769317627, + "learning_rate": 3.1752500000000005e-05, + "loss": 0.5332207107543945, + "step": 7300 + }, + { + "epoch": 37.0, + "grad_norm": 0.4282434284687042, + "learning_rate": 3.15025e-05, + "loss": 0.5502962112426758, + "step": 7400 + }, + { + "epoch": 37.5, + "grad_norm": 0.4211678206920624, + "learning_rate": 3.12525e-05, + "loss": 0.5135954666137695, + "step": 7500 + }, + { + "epoch": 38.0, + "grad_norm": 0.4331444799900055, + "learning_rate": 3.10025e-05, + "loss": 0.527672119140625, + "step": 7600 + }, + { + "epoch": 38.5, + "grad_norm": 0.40753164887428284, + "learning_rate": 3.07525e-05, + "loss": 0.49722877502441404, + "step": 7700 + }, + { + "epoch": 39.0, + "grad_norm": 0.4255908131599426, + "learning_rate": 3.05025e-05, + "loss": 0.5126309585571289, + "step": 7800 + }, + { + "epoch": 39.5, + "grad_norm": 0.43637004494667053, + "learning_rate": 3.02525e-05, + "loss": 0.4813387680053711, + "step": 7900 + }, + { + "epoch": 40.0, + "grad_norm": 0.439633309841156, + "learning_rate": 3.00025e-05, + "loss": 0.49494590759277346, + "step": 8000 + }, + { + "epoch": 40.5, + "grad_norm": 0.4367655813694, + "learning_rate": 2.97525e-05, + "loss": 0.46536773681640625, + "step": 8100 + }, + { + "epoch": 41.0, + "grad_norm": 0.4501303732395172, + "learning_rate": 2.95025e-05, + "loss": 0.4779759216308594, + "step": 8200 + }, + { + "epoch": 41.5, + "grad_norm": 0.44598305225372314, + "learning_rate": 2.9252499999999998e-05, + "loss": 0.45186782836914063, + "step": 8300 + }, + { + "epoch": 42.0, + "grad_norm": 0.44075384736061096, + "learning_rate": 2.90025e-05, + "loss": 0.46137031555175784, + "step": 8400 + }, + { + "epoch": 42.5, + "grad_norm": 0.4338615834712982, + "learning_rate": 2.87525e-05, + "loss": 0.43537315368652346, + "step": 8500 + }, + { + "epoch": 43.0, + "grad_norm": 0.4544128477573395, + "learning_rate": 2.85025e-05, + "loss": 0.44546558380126955, + "step": 8600 + }, + { + "epoch": 43.5, + "grad_norm": 0.4372069537639618, + "learning_rate": 2.8252500000000004e-05, + "loss": 0.4216377639770508, + "step": 8700 + }, + { + "epoch": 44.0, + "grad_norm": 0.44973990321159363, + "learning_rate": 2.8002500000000005e-05, + "loss": 0.4316849136352539, + "step": 8800 + }, + { + "epoch": 44.5, + "grad_norm": 0.44243016839027405, + "learning_rate": 2.7752500000000002e-05, + "loss": 0.4082369613647461, + "step": 8900 + }, + { + "epoch": 45.0, + "grad_norm": 0.44320249557495117, + "learning_rate": 2.7502500000000003e-05, + "loss": 0.4201020050048828, + "step": 9000 + }, + { + "epoch": 45.5, + "grad_norm": 0.44853946566581726, + "learning_rate": 2.7252500000000004e-05, + "loss": 0.39533462524414065, + "step": 9100 + }, + { + "epoch": 46.0, + "grad_norm": 0.4522981345653534, + "learning_rate": 2.7002500000000004e-05, + "loss": 0.4059659194946289, + "step": 9200 + }, + { + "epoch": 46.5, + "grad_norm": 0.43445703387260437, + "learning_rate": 2.6752500000000002e-05, + "loss": 0.38393875122070314, + "step": 9300 + }, + { + "epoch": 47.0, + "grad_norm": 0.44054123759269714, + "learning_rate": 2.6502500000000002e-05, + "loss": 0.3942867279052734, + "step": 9400 + }, + { + "epoch": 47.5, + "grad_norm": 0.46875321865081787, + "learning_rate": 2.6252500000000003e-05, + "loss": 0.37364906311035156, + "step": 9500 + }, + { + "epoch": 48.0, + "grad_norm": 0.4392513036727905, + "learning_rate": 2.60025e-05, + "loss": 0.38418922424316404, + "step": 9600 + }, + { + "epoch": 48.5, + "grad_norm": 0.44256582856178284, + "learning_rate": 2.57525e-05, + "loss": 0.36397621154785154, + "step": 9700 + }, + { + "epoch": 49.0, + "grad_norm": 0.4096059203147888, + "learning_rate": 2.5502500000000002e-05, + "loss": 0.37398372650146483, + "step": 9800 + }, + { + "epoch": 49.5, + "grad_norm": 0.4084298014640808, + "learning_rate": 2.5252500000000003e-05, + "loss": 0.3530607223510742, + "step": 9900 + }, + { + "epoch": 50.0, + "grad_norm": 0.4513794779777527, + "learning_rate": 2.50025e-05, + "loss": 0.3632556915283203, + "step": 10000 + }, + { + "epoch": 50.5, + "grad_norm": 0.3950716257095337, + "learning_rate": 2.47525e-05, + "loss": 0.34567554473876955, + "step": 10100 + }, + { + "epoch": 51.0, + "grad_norm": 0.4658626914024353, + "learning_rate": 2.45025e-05, + "loss": 0.3531562042236328, + "step": 10200 + }, + { + "epoch": 51.5, + "grad_norm": 0.40074118971824646, + "learning_rate": 2.42525e-05, + "loss": 0.3368285369873047, + "step": 10300 + }, + { + "epoch": 52.0, + "grad_norm": 0.43490293622016907, + "learning_rate": 2.40025e-05, + "loss": 0.34483592987060546, + "step": 10400 + }, + { + "epoch": 52.5, + "grad_norm": 0.43086978793144226, + "learning_rate": 2.37525e-05, + "loss": 0.3291225814819336, + "step": 10500 + }, + { + "epoch": 53.0, + "grad_norm": 0.4458702504634857, + "learning_rate": 2.35025e-05, + "loss": 0.3378773880004883, + "step": 10600 + }, + { + "epoch": 53.5, + "grad_norm": 0.4361683130264282, + "learning_rate": 2.32525e-05, + "loss": 0.3223386001586914, + "step": 10700 + }, + { + "epoch": 54.0, + "grad_norm": 0.46678826212882996, + "learning_rate": 2.3002500000000002e-05, + "loss": 0.3297463607788086, + "step": 10800 + }, + { + "epoch": 54.5, + "grad_norm": 0.41767755150794983, + "learning_rate": 2.2752500000000003e-05, + "loss": 0.315598201751709, + "step": 10900 + }, + { + "epoch": 55.0, + "grad_norm": 0.4470875561237335, + "learning_rate": 2.25025e-05, + "loss": 0.32347301483154295, + "step": 11000 + }, + { + "epoch": 55.5, + "grad_norm": 0.4591546654701233, + "learning_rate": 2.22525e-05, + "loss": 0.31086679458618166, + "step": 11100 + }, + { + "epoch": 56.0, + "grad_norm": 0.44901204109191895, + "learning_rate": 2.20025e-05, + "loss": 0.31777124404907225, + "step": 11200 + }, + { + "epoch": 56.5, + "grad_norm": 0.41419050097465515, + "learning_rate": 2.1752500000000002e-05, + "loss": 0.30351598739624025, + "step": 11300 + }, + { + "epoch": 57.0, + "grad_norm": 0.43349865078926086, + "learning_rate": 2.15025e-05, + "loss": 0.3107553863525391, + "step": 11400 + }, + { + "epoch": 57.5, + "grad_norm": 0.4324033558368683, + "learning_rate": 2.12525e-05, + "loss": 0.2977292823791504, + "step": 11500 + }, + { + "epoch": 58.0, + "grad_norm": 0.43435463309288025, + "learning_rate": 2.10025e-05, + "loss": 0.30380510330200194, + "step": 11600 + }, + { + "epoch": 58.5, + "grad_norm": 0.36328092217445374, + "learning_rate": 2.0752499999999998e-05, + "loss": 0.2924338722229004, + "step": 11700 + }, + { + "epoch": 59.0, + "grad_norm": 0.4179525673389435, + "learning_rate": 2.0502500000000002e-05, + "loss": 0.29900590896606444, + "step": 11800 + }, + { + "epoch": 59.5, + "grad_norm": 0.38387784361839294, + "learning_rate": 2.0252500000000003e-05, + "loss": 0.28634124755859375, + "step": 11900 + }, + { + "epoch": 60.0, + "grad_norm": 0.4128117561340332, + "learning_rate": 2.00025e-05, + "loss": 0.2923979187011719, + "step": 12000 + }, + { + "epoch": 60.5, + "grad_norm": 0.4330095648765564, + "learning_rate": 1.97525e-05, + "loss": 0.28179628372192383, + "step": 12100 + }, + { + "epoch": 61.0, + "grad_norm": 0.42764198780059814, + "learning_rate": 1.9502500000000002e-05, + "loss": 0.2868915367126465, + "step": 12200 + }, + { + "epoch": 61.5, + "grad_norm": 0.39329856634140015, + "learning_rate": 1.9252500000000002e-05, + "loss": 0.2775389289855957, + "step": 12300 + }, + { + "epoch": 62.0, + "grad_norm": 0.3947943449020386, + "learning_rate": 1.90025e-05, + "loss": 0.2824789810180664, + "step": 12400 + }, + { + "epoch": 62.5, + "grad_norm": 0.4083310067653656, + "learning_rate": 1.87525e-05, + "loss": 0.2729552459716797, + "step": 12500 + }, + { + "epoch": 63.0, + "grad_norm": 0.4008137285709381, + "learning_rate": 1.85025e-05, + "loss": 0.27841379165649416, + "step": 12600 + }, + { + "epoch": 63.5, + "grad_norm": 0.3896923363208771, + "learning_rate": 1.82525e-05, + "loss": 0.2697013282775879, + "step": 12700 + }, + { + "epoch": 64.0, + "grad_norm": 0.41712749004364014, + "learning_rate": 1.80025e-05, + "loss": 0.27453325271606444, + "step": 12800 + }, + { + "epoch": 64.5, + "grad_norm": 0.38217687606811523, + "learning_rate": 1.77525e-05, + "loss": 0.26497941970825195, + "step": 12900 + }, + { + "epoch": 65.0, + "grad_norm": 0.4228459596633911, + "learning_rate": 1.75025e-05, + "loss": 0.26899080276489257, + "step": 13000 + }, + { + "epoch": 65.5, + "grad_norm": 0.384003221988678, + "learning_rate": 1.72525e-05, + "loss": 0.26288330078125, + "step": 13100 + }, + { + "epoch": 66.0, + "grad_norm": 0.4040643572807312, + "learning_rate": 1.7002500000000002e-05, + "loss": 0.2662550926208496, + "step": 13200 + }, + { + "epoch": 66.5, + "grad_norm": 0.3715139627456665, + "learning_rate": 1.6752500000000003e-05, + "loss": 0.25743928909301755, + "step": 13300 + }, + { + "epoch": 67.0, + "grad_norm": 0.382761150598526, + "learning_rate": 1.65025e-05, + "loss": 0.2623816680908203, + "step": 13400 + }, + { + "epoch": 67.5, + "grad_norm": 0.4100727140903473, + "learning_rate": 1.62525e-05, + "loss": 0.25506450653076174, + "step": 13500 + }, + { + "epoch": 68.0, + "grad_norm": 0.36104685068130493, + "learning_rate": 1.60025e-05, + "loss": 0.2590820503234863, + "step": 13600 + }, + { + "epoch": 68.5, + "grad_norm": 0.4170261025428772, + "learning_rate": 1.5752500000000002e-05, + "loss": 0.2522945022583008, + "step": 13700 + }, + { + "epoch": 69.0, + "grad_norm": 0.4074130356311798, + "learning_rate": 1.55025e-05, + "loss": 0.256374683380127, + "step": 13800 + }, + { + "epoch": 69.5, + "grad_norm": 0.4009321331977844, + "learning_rate": 1.52525e-05, + "loss": 0.2484601593017578, + "step": 13900 + }, + { + "epoch": 70.0, + "grad_norm": 0.3586087226867676, + "learning_rate": 1.5002499999999999e-05, + "loss": 0.2519577980041504, + "step": 14000 + }, + { + "epoch": 70.5, + "grad_norm": 0.39007654786109924, + "learning_rate": 1.47525e-05, + "loss": 0.2457340431213379, + "step": 14100 + }, + { + "epoch": 71.0, + "grad_norm": 0.3830292820930481, + "learning_rate": 1.4502499999999999e-05, + "loss": 0.24784101486206056, + "step": 14200 + }, + { + "epoch": 71.5, + "grad_norm": 0.3842337429523468, + "learning_rate": 1.4252500000000001e-05, + "loss": 0.24252428054809572, + "step": 14300 + }, + { + "epoch": 72.0, + "grad_norm": 0.33969053626060486, + "learning_rate": 1.4002500000000002e-05, + "loss": 0.2472601890563965, + "step": 14400 + }, + { + "epoch": 72.5, + "grad_norm": 0.38084539771080017, + "learning_rate": 1.3752500000000001e-05, + "loss": 0.2398312759399414, + "step": 14500 + }, + { + "epoch": 73.0, + "grad_norm": 0.3362090587615967, + "learning_rate": 1.3502500000000002e-05, + "loss": 0.24383731842041015, + "step": 14600 + }, + { + "epoch": 73.5, + "grad_norm": 0.37916791439056396, + "learning_rate": 1.32525e-05, + "loss": 0.23760452270507812, + "step": 14700 + }, + { + "epoch": 74.0, + "grad_norm": 0.37284770607948303, + "learning_rate": 1.3002500000000001e-05, + "loss": 0.24114870071411132, + "step": 14800 + }, + { + "epoch": 74.5, + "grad_norm": 0.3742426633834839, + "learning_rate": 1.27525e-05, + "loss": 0.2348023223876953, + "step": 14900 + }, + { + "epoch": 75.0, + "grad_norm": 0.3935767114162445, + "learning_rate": 1.2502500000000001e-05, + "loss": 0.23796173095703124, + "step": 15000 + }, + { + "epoch": 75.5, + "grad_norm": 0.3600524365901947, + "learning_rate": 1.22525e-05, + "loss": 0.23247020721435546, + "step": 15100 + }, + { + "epoch": 76.0, + "grad_norm": 0.3458992540836334, + "learning_rate": 1.20025e-05, + "loss": 0.23637393951416016, + "step": 15200 + }, + { + "epoch": 76.5, + "grad_norm": 0.3585320711135864, + "learning_rate": 1.1752500000000001e-05, + "loss": 0.2308286476135254, + "step": 15300 + }, + { + "epoch": 77.0, + "grad_norm": 0.37773242592811584, + "learning_rate": 1.15025e-05, + "loss": 0.233690242767334, + "step": 15400 + }, + { + "epoch": 77.5, + "grad_norm": 0.3859589695930481, + "learning_rate": 1.1252500000000001e-05, + "loss": 0.2287772750854492, + "step": 15500 + }, + { + "epoch": 78.0, + "grad_norm": 0.3758644461631775, + "learning_rate": 1.10025e-05, + "loss": 0.23166227340698242, + "step": 15600 + }, + { + "epoch": 78.5, + "grad_norm": 0.3552301526069641, + "learning_rate": 1.07525e-05, + "loss": 0.2268804931640625, + "step": 15700 + }, + { + "epoch": 79.0, + "grad_norm": 0.3842378556728363, + "learning_rate": 1.05025e-05, + "loss": 0.22957588195800782, + "step": 15800 + }, + { + "epoch": 79.5, + "grad_norm": 0.33627477288246155, + "learning_rate": 1.02525e-05, + "loss": 0.22454282760620117, + "step": 15900 + }, + { + "epoch": 80.0, + "grad_norm": 0.389986515045166, + "learning_rate": 1.0002500000000001e-05, + "loss": 0.22761936187744142, + "step": 16000 + }, + { + "epoch": 80.5, + "grad_norm": 0.3108944296836853, + "learning_rate": 9.7525e-06, + "loss": 0.22338836669921874, + "step": 16100 + }, + { + "epoch": 81.0, + "grad_norm": 0.32868942618370056, + "learning_rate": 9.502500000000001e-06, + "loss": 0.22411474227905273, + "step": 16200 + }, + { + "epoch": 81.5, + "grad_norm": 0.34585270285606384, + "learning_rate": 9.2525e-06, + "loss": 0.22169002532958984, + "step": 16300 + }, + { + "epoch": 82.0, + "grad_norm": 0.3643505871295929, + "learning_rate": 9.0025e-06, + "loss": 0.22333917617797852, + "step": 16400 + }, + { + "epoch": 82.5, + "grad_norm": 0.35764428973197937, + "learning_rate": 8.752500000000001e-06, + "loss": 0.22027700424194335, + "step": 16500 + }, + { + "epoch": 83.0, + "grad_norm": 0.3697255551815033, + "learning_rate": 8.5025e-06, + "loss": 0.22190006256103514, + "step": 16600 + }, + { + "epoch": 83.5, + "grad_norm": 0.34389302134513855, + "learning_rate": 8.252500000000001e-06, + "loss": 0.21772838592529298, + "step": 16700 + }, + { + "epoch": 84.0, + "grad_norm": 0.35523974895477295, + "learning_rate": 8.0025e-06, + "loss": 0.21992773056030274, + "step": 16800 + }, + { + "epoch": 84.5, + "grad_norm": 0.33763980865478516, + "learning_rate": 7.7525e-06, + "loss": 0.21668706893920897, + "step": 16900 + }, + { + "epoch": 85.0, + "grad_norm": 0.3457420766353607, + "learning_rate": 7.5025e-06, + "loss": 0.21767711639404297, + "step": 17000 + }, + { + "epoch": 85.5, + "grad_norm": 0.34709328413009644, + "learning_rate": 7.252500000000001e-06, + "loss": 0.21578775405883788, + "step": 17100 + }, + { + "epoch": 86.0, + "grad_norm": 0.3611862361431122, + "learning_rate": 7.002500000000001e-06, + "loss": 0.21809673309326172, + "step": 17200 + }, + { + "epoch": 86.5, + "grad_norm": 0.35064128041267395, + "learning_rate": 6.7525e-06, + "loss": 0.21291667938232423, + "step": 17300 + }, + { + "epoch": 87.0, + "grad_norm": 0.35625672340393066, + "learning_rate": 6.5025e-06, + "loss": 0.21576713562011718, + "step": 17400 + }, + { + "epoch": 87.5, + "grad_norm": 0.3733029365539551, + "learning_rate": 6.2525e-06, + "loss": 0.21200632095336913, + "step": 17500 + }, + { + "epoch": 88.0, + "grad_norm": 0.34649088978767395, + "learning_rate": 6.0025000000000006e-06, + "loss": 0.2149067687988281, + "step": 17600 + }, + { + "epoch": 88.5, + "grad_norm": 0.306749165058136, + "learning_rate": 5.7525e-06, + "loss": 0.21139209747314452, + "step": 17700 + }, + { + "epoch": 89.0, + "grad_norm": 0.35020408034324646, + "learning_rate": 5.5025e-06, + "loss": 0.21399372100830077, + "step": 17800 + }, + { + "epoch": 89.5, + "grad_norm": 0.31811031699180603, + "learning_rate": 5.2525e-06, + "loss": 0.2106713104248047, + "step": 17900 + }, + { + "epoch": 90.0, + "grad_norm": 0.315910667181015, + "learning_rate": 5.0025e-06, + "loss": 0.21184038162231444, + "step": 18000 + }, + { + "epoch": 90.5, + "grad_norm": 0.3591602146625519, + "learning_rate": 4.755e-06, + "loss": 0.2087250518798828, + "step": 18100 + }, + { + "epoch": 91.0, + "grad_norm": 0.2959374189376831, + "learning_rate": 4.505e-06, + "loss": 0.2099794006347656, + "step": 18200 + }, + { + "epoch": 91.5, + "grad_norm": 0.2833845317363739, + "learning_rate": 4.255e-06, + "loss": 0.20827140808105468, + "step": 18300 + }, + { + "epoch": 92.0, + "grad_norm": 0.33928927779197693, + "learning_rate": 4.005000000000001e-06, + "loss": 0.20932321548461913, + "step": 18400 + }, + { + "epoch": 92.5, + "grad_norm": 0.321674644947052, + "learning_rate": 3.755e-06, + "loss": 0.205947322845459, + "step": 18500 + }, + { + "epoch": 93.0, + "grad_norm": 0.2966731786727905, + "learning_rate": 3.505e-06, + "loss": 0.20795421600341796, + "step": 18600 + }, + { + "epoch": 93.5, + "grad_norm": 0.3216817378997803, + "learning_rate": 3.2550000000000006e-06, + "loss": 0.20623821258544922, + "step": 18700 + }, + { + "epoch": 94.0, + "grad_norm": 0.35450977087020874, + "learning_rate": 3.005e-06, + "loss": 0.20804498672485353, + "step": 18800 + }, + { + "epoch": 94.5, + "grad_norm": 0.2994995415210724, + "learning_rate": 2.7550000000000003e-06, + "loss": 0.20724256515502928, + "step": 18900 + }, + { + "epoch": 95.0, + "grad_norm": 0.3332589566707611, + "learning_rate": 2.505e-06, + "loss": 0.2055183982849121, + "step": 19000 + }, + { + "epoch": 95.5, + "grad_norm": 0.30346137285232544, + "learning_rate": 2.255e-06, + "loss": 0.2049989128112793, + "step": 19100 + }, + { + "epoch": 96.0, + "grad_norm": 0.2948566973209381, + "learning_rate": 2.005e-06, + "loss": 0.20483097076416015, + "step": 19200 + }, + { + "epoch": 96.5, + "grad_norm": 0.3213671147823334, + "learning_rate": 1.7550000000000001e-06, + "loss": 0.20349571228027344, + "step": 19300 + }, + { + "epoch": 97.0, + "grad_norm": 0.30940669775009155, + "learning_rate": 1.505e-06, + "loss": 0.20510492324829102, + "step": 19400 + }, + { + "epoch": 97.5, + "grad_norm": 0.29669439792633057, + "learning_rate": 1.255e-06, + "loss": 0.20321809768676757, + "step": 19500 + }, + { + "epoch": 98.0, + "grad_norm": 0.3040596544742584, + "learning_rate": 1.0050000000000001e-06, + "loss": 0.20417285919189454, + "step": 19600 + }, + { + "epoch": 98.5, + "grad_norm": 0.29241570830345154, + "learning_rate": 7.550000000000001e-07, + "loss": 0.20377571105957032, + "step": 19700 + }, + { + "epoch": 99.0, + "grad_norm": 0.33404168486595154, + "learning_rate": 5.05e-07, + "loss": 0.2034158706665039, + "step": 19800 + }, + { + "epoch": 99.5, + "grad_norm": 0.29330864548683167, + "learning_rate": 2.5500000000000005e-07, + "loss": 0.20246898651123046, + "step": 19900 + }, + { + "epoch": 100.0, + "grad_norm": 0.3237517178058624, + "learning_rate": 5e-09, + "loss": 0.20357521057128905, + "step": 20000 + } + ], + "logging_steps": 100, + "max_steps": 20000, + "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": 1.094180143104e+16, + "train_batch_size": 8, + "trial_name": null, + "trial_params": null +} diff --git a/timecost/n6/realtabformer/rtf-n6-20260429_070345/rtf_checkpoints/checkpoint-20000/training_args.bin b/timecost/n6/realtabformer/rtf-n6-20260429_070345/rtf_checkpoints/checkpoint-20000/training_args.bin new file mode 100644 index 0000000000000000000000000000000000000000..34d68dc0e0fe1c1f12a2e581dd1b166aa7178a9e --- /dev/null +++ b/timecost/n6/realtabformer/rtf-n6-20260429_070345/rtf_checkpoints/checkpoint-20000/training_args.bin @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:9e2cd88337d1d846c6918d2b3b63fa3e5c93f12fefc082497590da854a564607 +size 5201 diff --git a/timecost/n6/realtabformer/rtf-n6-20260429_070345/runtime_result.json b/timecost/n6/realtabformer/rtf-n6-20260429_070345/runtime_result.json new file mode 100644 index 0000000000000000000000000000000000000000..3d5e2a7c2830f7692423fa4a4f9ed65fe6237d6c --- /dev/null +++ b/timecost/n6/realtabformer/rtf-n6-20260429_070345/runtime_result.json @@ -0,0 +1,15 @@ +{ + "dataset_id": "n6", + "model": "realtabformer", + "run_id": "rtf-n6-20260429_070345", + "public_gate_status": "pass", + "adapter_ready_status": "pass", + "train_status": "success", + "generate_status": "success", + "reason_code": null, + "reason_detail": null, + "artifacts": { + "synthetic_csv": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/n6/realtabformer/rtf-n6-20260429_070345/rtf-n6-6400-20260429_073951.csv", + "model_path": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/n6/realtabformer/rtf-n6-20260429_070345/models_100epochs" + } +} \ No newline at end of file diff --git a/timecost/n6/realtabformer/rtf-n6-20260429_070345/staged/public/staged_features.json b/timecost/n6/realtabformer/rtf-n6-20260429_070345/staged/public/staged_features.json new file mode 100644 index 0000000000000000000000000000000000000000..13d0b8c66a07bb8f5aa06667e153a85656dae7d8 --- /dev/null +++ b/timecost/n6/realtabformer/rtf-n6-20260429_070345/staged/public/staged_features.json @@ -0,0 +1,87 @@ +[ + { + "feature_name": "X1", + "data_type": "continuous", + "is_target": false + }, + { + "feature_name": "X2", + "data_type": "continuous", + "is_target": false + }, + { + "feature_name": "X3", + "data_type": "continuous", + "is_target": false + }, + { + "feature_name": "X4", + "data_type": "continuous", + "is_target": false + }, + { + "feature_name": "X5", + "data_type": "continuous", + "is_target": false + }, + { + "feature_name": "X6", + "data_type": "continuous", + "is_target": false + }, + { + "feature_name": "X7", + "data_type": "continuous", + "is_target": false + }, + { + "feature_name": "X8", + "data_type": "continuous", + "is_target": false + }, + { + "feature_name": "X9", + "data_type": "continuous", + "is_target": false + }, + { + "feature_name": "X10", + "data_type": "continuous", + "is_target": false + }, + { + "feature_name": "X11", + "data_type": "continuous", + "is_target": false + }, + { + "feature_name": "X12", + "data_type": "continuous", + "is_target": false + }, + { + "feature_name": "X13", + "data_type": "continuous", + "is_target": false + }, + { + "feature_name": "X14", + "data_type": "continuous", + "is_target": false + }, + { + "feature_name": "X15", + "data_type": "continuous", + "is_target": false + }, + { + "feature_name": "X16", + "data_type": "continuous", + "is_target": false + }, + { + "feature_name": "y", + "data_type": "continuous", + "is_target": true + } +] \ No newline at end of file diff --git a/timecost/n6/realtabformer/rtf-n6-20260429_070345/staged/public/test.csv b/timecost/n6/realtabformer/rtf-n6-20260429_070345/staged/public/test.csv new file mode 100644 index 0000000000000000000000000000000000000000..64d039a1664b74ef81240a9ba69ab982a78be184 --- /dev/null +++ b/timecost/n6/realtabformer/rtf-n6-20260429_070345/staged/public/test.csv @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:f1922293e501d8f17f56a321a1305e44d20a6ad7ed67e97af754dea170989fc5 +size 39918 diff --git a/timecost/n6/realtabformer/rtf-n6-20260429_070345/staged/public/train.csv b/timecost/n6/realtabformer/rtf-n6-20260429_070345/staged/public/train.csv new file mode 100644 index 0000000000000000000000000000000000000000..25108968eaf2c7995080c74fba26ca496d015c72 --- /dev/null +++ b/timecost/n6/realtabformer/rtf-n6-20260429_070345/staged/public/train.csv @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:c8545a9761061bd99d67935948928e2840e6ae4b5c9760cad2de82198676db2b +size 316902 diff --git a/timecost/n6/realtabformer/rtf-n6-20260429_070345/staged/public/val.csv b/timecost/n6/realtabformer/rtf-n6-20260429_070345/staged/public/val.csv new file mode 100644 index 0000000000000000000000000000000000000000..933b52194b2ae481787d393e22f1a96acb482a5a --- /dev/null +++ b/timecost/n6/realtabformer/rtf-n6-20260429_070345/staged/public/val.csv @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:60a3dd7f655f8086e53402dcdcfa42297d586d8483f2afd6e1bbc6bd3521303f +size 39705 diff --git a/timecost/n6/realtabformer/rtf-n6-20260429_070345/staged/realtabformer/adapter_report.json b/timecost/n6/realtabformer/rtf-n6-20260429_070345/staged/realtabformer/adapter_report.json new file mode 100644 index 0000000000000000000000000000000000000000..4612302352323e66c0468efac097aa384aef8c3f --- /dev/null +++ b/timecost/n6/realtabformer/rtf-n6-20260429_070345/staged/realtabformer/adapter_report.json @@ -0,0 +1,7 @@ +{ + "adapter_ready_status": "pass", + "adapter_fail_reason_code": null, + "adapter_fail_detail": null, + "adapter_transforms_applied": [], + "model_input_manifest": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/n6/realtabformer/rtf-n6-20260429_070345/staged/realtabformer/model_input_manifest.json" +} \ No newline at end of file diff --git a/timecost/n6/realtabformer/rtf-n6-20260429_070345/staged/realtabformer/adapter_transforms_applied.json b/timecost/n6/realtabformer/rtf-n6-20260429_070345/staged/realtabformer/adapter_transforms_applied.json new file mode 100644 index 0000000000000000000000000000000000000000..0637a088a01e8ddab3bf3fa98dbe804cbde1a0dc --- /dev/null +++ b/timecost/n6/realtabformer/rtf-n6-20260429_070345/staged/realtabformer/adapter_transforms_applied.json @@ -0,0 +1 @@ +[] \ No newline at end of file diff --git a/timecost/n6/realtabformer/rtf-n6-20260429_070345/staged/realtabformer/model_input_manifest.json b/timecost/n6/realtabformer/rtf-n6-20260429_070345/staged/realtabformer/model_input_manifest.json new file mode 100644 index 0000000000000000000000000000000000000000..243e434dd55af9037a694bdd872d64b28bc9ca23 --- /dev/null +++ b/timecost/n6/realtabformer/rtf-n6-20260429_070345/staged/realtabformer/model_input_manifest.json @@ -0,0 +1,370 @@ +{ + "dataset_id": "n6", + "model": "realtabformer", + "target_column": "y", + "task_type": "classification", + "column_schema": [ + { + "name": "X1", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 313, + "unique_ratio": 0.048906, + "example_values": [ + "2", + "6", + "-2", + "-15", + "3" + ] + } + }, + { + "name": "X2", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 328, + "unique_ratio": 0.05125, + "example_values": [ + "-3", + "1", + "16", + "-4", + "-12" + ] + } + }, + { + "name": "X3", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 316, + "unique_ratio": 0.049375, + "example_values": [ + "-7", + "-6", + "3", + "-22", + "13" + ] + } + }, + { + "name": "X4", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 323, + "unique_ratio": 0.050469, + "example_values": [ + "-6", + "-7", + "5", + "-5", + "-37" + ] + } + }, + { + "name": "X5", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 325, + "unique_ratio": 0.050781, + "example_values": [ + "-9", + "2", + "-12", + "-8", + "-63" + ] + } + }, + { + "name": "X6", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 325, + "unique_ratio": 0.050781, + "example_values": [ + "-6", + "-5", + "11", + "0", + "-86" + ] + } + }, + { + "name": "X7", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 332, + "unique_ratio": 0.051875, + "example_values": [ + "-1", + "-2", + "5", + "-4", + "-82" + ] + } + }, + { + "name": "X8", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 330, + "unique_ratio": 0.051562, + "example_values": [ + "3", + "-3", + "9", + "-9", + "-51" + ] + } + }, + { + "name": "X9", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 333, + "unique_ratio": 0.052031, + "example_values": [ + "1", + "19", + "0", + "-1", + "-30" + ] + } + }, + { + "name": "X10", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 334, + "unique_ratio": 0.052187, + "example_values": [ + "4", + "10", + "9", + "3", + "-13" + ] + } + }, + { + "name": "X11", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 328, + "unique_ratio": 0.05125, + "example_values": [ + "-4", + "-3", + "-1", + "-7", + "-20" + ] + } + }, + { + "name": "X12", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 324, + "unique_ratio": 0.050625, + "example_values": [ + "-5", + "-11", + "0", + "4", + "-29" + ] + } + }, + { + "name": "X13", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 332, + "unique_ratio": 0.051875, + "example_values": [ + "4", + "-6", + "6", + "9", + "-38" + ] + } + }, + { + "name": "X14", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 318, + "unique_ratio": 0.049688, + "example_values": [ + "1", + "30", + "11", + "-5", + "-29" + ] + } + }, + { + "name": "X15", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 324, + "unique_ratio": 0.050625, + "example_values": [ + "-8", + "4", + "-9", + "-6", + "-15" + ] + } + }, + { + "name": "X16", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 325, + "unique_ratio": 0.050781, + "example_values": [ + "-1", + "-13", + "0", + "1", + "-23" + ] + } + }, + { + "name": "y", + "role": "target", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 4, + "unique_ratio": 0.000625, + "example_values": [ + "2", + "1", + "0", + "3" + ] + } + } + ], + "public_manifest": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/n6/realtabformer/rtf-n6-20260429_070345/public_gate/staged_input_manifest.json", + "train_csv": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/n6/realtabformer/rtf-n6-20260429_070345/staged/public/train.csv", + "val_csv": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/n6/realtabformer/rtf-n6-20260429_070345/staged/public/val.csv", + "test_csv": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/n6/realtabformer/rtf-n6-20260429_070345/staged/public/test.csv", + "features_json": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/n6/realtabformer/rtf-n6-20260429_070345/staged/public/staged_features.json", + "public_gate_report": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/n6/realtabformer/rtf-n6-20260429_070345/public_gate/public_gate_report.json" +} \ No newline at end of file diff --git a/timecost/n6/realtabformer/rtf-n6-20260429_070345/train_20260429_070346.log b/timecost/n6/realtabformer/rtf-n6-20260429_070345/train_20260429_070346.log new file mode 100644 index 0000000000000000000000000000000000000000..f92d18c11f787271d45688948e09a7dc75f28e86 --- /dev/null +++ b/timecost/n6/realtabformer/rtf-n6-20260429_070345/train_20260429_070346.log @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:75f586ac5faacf7795dc9047366cdb9449f3a3e6eb089b3cda463b38d6e106bd +size 859763 diff --git a/timecost/n6/tabbyflow/tabbyflow-n6-20260429_032517/_tabbyflow_gen.py b/timecost/n6/tabbyflow/tabbyflow-n6-20260429_032517/_tabbyflow_gen.py new file mode 100644 index 0000000000000000000000000000000000000000..2f237cd3aeca01ef451b6cae57cf0beb232bd996 --- /dev/null +++ b/timecost/n6/tabbyflow/tabbyflow-n6-20260429_032517/_tabbyflow_gen.py @@ -0,0 +1,33 @@ + +import os, shutil, subprocess, sys +root = r"/workspace/ef-vfm" +name = r"pipeline_ds" +src = r"/work/output-Benchmark-trainonly-v1/n6/tabbyflow/tabbyflow-n6-20260429_032517/tabular_bundle/pipeline_ds" +dst_data = os.path.join(root, "data", name) +shutil.rmtree(dst_data, ignore_errors=True) +shutil.copytree(src, dst_data) +dst_syn = os.path.join(root, "synthetic", name) +os.makedirs(dst_syn, exist_ok=True) +for fn in ("real.csv", "test.csv", "val.csv"): + shutil.copy(os.path.join(src, fn), os.path.join(dst_syn, fn)) +os.chdir(root) +os.environ["PYTHONPATH"] = root + os.pathsep + os.environ.get("PYTHONPATH", "") +subprocess.check_call([ + sys.executable, "main.py", + "--dataname", name, "--mode", "test", "--gpu", "0", + "--no_wandb", "--exp_name", r"adapter_efvfm", + "--ckpt_path", r"/workspace/ef-vfm/ef_vfm/ckpt/pipeline_ds/adapter_efvfm/model_500.pt", + "--num_samples_to_generate", str(int(6400)), +]) +base = os.path.join(root, "ef_vfm", "result", name, r"adapter_efvfm") +best = None +best_t = -1.0 +for r, _, files in os.walk(base): + if "samples.csv" in files: + p = os.path.join(r, "samples.csv") + t = os.path.getmtime(p) + if t > best_t: + best_t, best = t, p +if not best: + raise SystemExit("tabbyflow: no samples.csv in " + base) +shutil.copy(best, r"/work/output-Benchmark-trainonly-v1/n6/tabbyflow/tabbyflow-n6-20260429_032517/tabbyflow-n6-6400-20260429_033823.csv") diff --git a/timecost/n6/tabbyflow/tabbyflow-n6-20260429_032517/_tabbyflow_train.py b/timecost/n6/tabbyflow/tabbyflow-n6-20260429_032517/_tabbyflow_train.py new file mode 100644 index 0000000000000000000000000000000000000000..fab5bc3ce3e88239d9f54eeffac04e64fe9418d8 --- /dev/null +++ b/timecost/n6/tabbyflow/tabbyflow-n6-20260429_032517/_tabbyflow_train.py @@ -0,0 +1,22 @@ + +import os, shutil, subprocess, sys +root = r"/workspace/ef-vfm" +name = r"pipeline_ds" +src = r"/work/output-Benchmark-trainonly-v1/n6/tabbyflow/tabbyflow-n6-20260429_032517/tabular_bundle/pipeline_ds" +os.makedirs(os.path.join(root, "data", name), exist_ok=True) +dst_data = os.path.join(root, "data", name) +dst_syn = os.path.join(root, "synthetic", name) +shutil.rmtree(dst_data, ignore_errors=True) +shutil.copytree(src, dst_data) +os.makedirs(dst_syn, exist_ok=True) +for fn in ("real.csv", "test.csv", "val.csv"): + shutil.copy(os.path.join(src, fn), os.path.join(dst_syn, fn)) +os.chdir(root) +os.environ["PYTHONPATH"] = root + os.pathsep + os.environ.get("PYTHONPATH", "") +os.environ["EFVFM_SMOKE_STEPS"] = "500" +os.environ["EFVFM_ADAPTER_TRAIN"] = "1" +subprocess.check_call([ + sys.executable, "main.py", + "--dataname", name, "--mode", "train", "--gpu", "0", + "--no_wandb", "--exp_name", r"adapter_efvfm", +]) diff --git a/timecost/n6/tabbyflow/tabbyflow-n6-20260429_032517/gen_20260429_033823.log b/timecost/n6/tabbyflow/tabbyflow-n6-20260429_032517/gen_20260429_033823.log new file mode 100644 index 0000000000000000000000000000000000000000..423ececab6e60627fb6a539652ecc2a3b4f998c1 --- /dev/null +++ b/timecost/n6/tabbyflow/tabbyflow-n6-20260429_032517/gen_20260429_033823.log @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:f8668fbb2d96bb1a0d16c45e143b4bb5874d8a91ff2eec7d22940ef10de48c79 +size 3027 diff --git a/timecost/n6/tabbyflow/tabbyflow-n6-20260429_032517/input_snapshot.json b/timecost/n6/tabbyflow/tabbyflow-n6-20260429_032517/input_snapshot.json new file mode 100644 index 0000000000000000000000000000000000000000..834964cdf41b9a47647d5f40f22babc0afc9e61b --- /dev/null +++ b/timecost/n6/tabbyflow/tabbyflow-n6-20260429_032517/input_snapshot.json @@ -0,0 +1,36 @@ +{ + "dataset_id": "n6", + "model": "tabbyflow", + "inputs": { + "train_csv": { + "path": "/data/jialinzhang/SynthesizePipeline-server/DatasetNew/n6/n6-train.csv", + "exists": true, + "size": 323303, + "sha256": "3b9d646393340b4c636db7686f2313521d84434e99ac1316b1053b05c995a3b1" + }, + "val_csv": { + "path": "/data/jialinzhang/SynthesizePipeline-server/DatasetNew/n6/n6-val.csv", + "exists": true, + "size": 40506, + "sha256": "74a01693febbfda57225ebbec2f7a9c22a2136edbec694b108b50c013cd6fe9d" + }, + "test_csv": { + "path": "/data/jialinzhang/SynthesizePipeline-server/DatasetNew/n6/n6-test.csv", + "exists": true, + "size": 40719, + "sha256": "46f32b813d7849636da5a0a7aa560ea062b8f5765772dc1a8268f756cdb2fbcc" + }, + "profile_json": { + "path": "/data/jialinzhang/SynthesizePipeline-server/DatasetNew/artifacts/data_core/tabular/n6/n6-dataset_profile.json", + "exists": true, + "size": 6559, + "sha256": "c3a4ba3662399f797ed5ac4ea171e2991e3f3ac9ea221ba345c132e11450d759" + }, + "contract_json": { + "path": "/data/jialinzhang/SynthesizePipeline-server/DatasetNew/artifacts/data_core/tabular/n6/n6-dataset_contract_v1.json", + "exists": true, + "size": 8304, + "sha256": "979119ea8d3be4588170ff59aa802156a0a5ecaf4312599a8b2998d38b69fba5" + } + } +} \ No newline at end of file diff --git a/timecost/n6/tabbyflow/tabbyflow-n6-20260429_032517/models_tabbyflow/trained.pt b/timecost/n6/tabbyflow/tabbyflow-n6-20260429_032517/models_tabbyflow/trained.pt new file mode 100644 index 0000000000000000000000000000000000000000..f063a878c470d9d40f79db79881596e1e497dffd --- /dev/null +++ b/timecost/n6/tabbyflow/tabbyflow-n6-20260429_032517/models_tabbyflow/trained.pt @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:adb734fec12f2251befd371dca69e481b19464aded2a6823105a01b4be6ddbe5 +size 40 diff --git a/timecost/n6/tabbyflow/tabbyflow-n6-20260429_032517/public_gate/normalized_schema_snapshot.json b/timecost/n6/tabbyflow/tabbyflow-n6-20260429_032517/public_gate/normalized_schema_snapshot.json new file mode 100644 index 0000000000000000000000000000000000000000..f37e46415bf96a79860f8cd9cdbfb764f9fbd0cb --- /dev/null +++ b/timecost/n6/tabbyflow/tabbyflow-n6-20260429_032517/public_gate/normalized_schema_snapshot.json @@ -0,0 +1,363 @@ +{ + "dataset_id": "n6", + "target_column": "y", + "task_type": "classification", + "columns": [ + { + "name": "X1", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 313, + "unique_ratio": 0.048906, + "example_values": [ + "2", + "6", + "-2", + "-15", + "3" + ] + } + }, + { + "name": "X2", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 328, + "unique_ratio": 0.05125, + "example_values": [ + "-3", + "1", + "16", + "-4", + "-12" + ] + } + }, + { + "name": "X3", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 316, + "unique_ratio": 0.049375, + "example_values": [ + "-7", + "-6", + "3", + "-22", + "13" + ] + } + }, + { + "name": "X4", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 323, + "unique_ratio": 0.050469, + "example_values": [ + "-6", + "-7", + "5", + "-5", + "-37" + ] + } + }, + { + "name": "X5", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 325, + "unique_ratio": 0.050781, + "example_values": [ + "-9", + "2", + "-12", + "-8", + "-63" + ] + } + }, + { + "name": "X6", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 325, + "unique_ratio": 0.050781, + "example_values": [ + "-6", + "-5", + "11", + "0", + "-86" + ] + } + }, + { + "name": "X7", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 332, + "unique_ratio": 0.051875, + "example_values": [ + "-1", + "-2", + "5", + "-4", + "-82" + ] + } + }, + { + "name": "X8", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 330, + "unique_ratio": 0.051562, + "example_values": [ + "3", + "-3", + "9", + "-9", + "-51" + ] + } + }, + { + "name": "X9", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 333, + "unique_ratio": 0.052031, + "example_values": [ + "1", + "19", + "0", + "-1", + "-30" + ] + } + }, + { + "name": "X10", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 334, + "unique_ratio": 0.052187, + "example_values": [ + "4", + "10", + "9", + "3", + "-13" + ] + } + }, + { + "name": "X11", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 328, + "unique_ratio": 0.05125, + "example_values": [ + "-4", + "-3", + "-1", + "-7", + "-20" + ] + } + }, + { + "name": "X12", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 324, + "unique_ratio": 0.050625, + "example_values": [ + "-5", + "-11", + "0", + "4", + "-29" + ] + } + }, + { + "name": "X13", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 332, + "unique_ratio": 0.051875, + "example_values": [ + "4", + "-6", + "6", + "9", + "-38" + ] + } + }, + { + "name": "X14", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 318, + "unique_ratio": 0.049688, + "example_values": [ + "1", + "30", + "11", + "-5", + "-29" + ] + } + }, + { + "name": "X15", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 324, + "unique_ratio": 0.050625, + "example_values": [ + "-8", + "4", + "-9", + "-6", + "-15" + ] + } + }, + { + "name": "X16", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 325, + "unique_ratio": 0.050781, + "example_values": [ + "-1", + "-13", + "0", + "1", + "-23" + ] + } + }, + { + "name": "y", + "role": "target", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 4, + "unique_ratio": 0.000625, + "example_values": [ + "2", + "1", + "0", + "3" + ] + } + } + ] +} \ No newline at end of file diff --git a/timecost/n6/tabbyflow/tabbyflow-n6-20260429_032517/public_gate/public_gate_report.json b/timecost/n6/tabbyflow/tabbyflow-n6-20260429_032517/public_gate/public_gate_report.json new file mode 100644 index 0000000000000000000000000000000000000000..a228c993845322a7356eef31ebce756cb39378ed --- /dev/null +++ b/timecost/n6/tabbyflow/tabbyflow-n6-20260429_032517/public_gate/public_gate_report.json @@ -0,0 +1,37 @@ +{ + "dataset_id": "n6", + "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": "y", + "task_type": "classification", + "input_splits": { + "train": "/data/jialinzhang/SynthesizePipeline-server/DatasetNew/n6/n6-train.csv", + "val": "/data/jialinzhang/SynthesizePipeline-server/DatasetNew/n6/n6-val.csv", + "test": "/data/jialinzhang/SynthesizePipeline-server/DatasetNew/n6/n6-test.csv" + } +} \ No newline at end of file diff --git a/timecost/n6/tabbyflow/tabbyflow-n6-20260429_032517/public_gate/staged_input_manifest.json b/timecost/n6/tabbyflow/tabbyflow-n6-20260429_032517/public_gate/staged_input_manifest.json new file mode 100644 index 0000000000000000000000000000000000000000..e130ee957eecd31390608438724ff7335746e873 --- /dev/null +++ b/timecost/n6/tabbyflow/tabbyflow-n6-20260429_032517/public_gate/staged_input_manifest.json @@ -0,0 +1,368 @@ +{ + "dataset_id": "n6", + "target_column": "y", + "task_type": "classification", + "train_csv": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/n6/tabbyflow/tabbyflow-n6-20260429_032517/staged/public/train.csv", + "val_csv": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/n6/tabbyflow/tabbyflow-n6-20260429_032517/staged/public/val.csv", + "test_csv": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/n6/tabbyflow/tabbyflow-n6-20260429_032517/staged/public/test.csv", + "features_json": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/n6/tabbyflow/tabbyflow-n6-20260429_032517/staged/public/staged_features.json", + "public_gate_report": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/n6/tabbyflow/tabbyflow-n6-20260429_032517/public_gate/public_gate_report.json", + "column_schema": [ + { + "name": "X1", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 313, + "unique_ratio": 0.048906, + "example_values": [ + "2", + "6", + "-2", + "-15", + "3" + ] + } + }, + { + "name": "X2", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 328, + "unique_ratio": 0.05125, + "example_values": [ + "-3", + "1", + "16", + "-4", + "-12" + ] + } + }, + { + "name": "X3", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 316, + "unique_ratio": 0.049375, + "example_values": [ + "-7", + "-6", + "3", + "-22", + "13" + ] + } + }, + { + "name": "X4", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 323, + "unique_ratio": 0.050469, + "example_values": [ + "-6", + "-7", + "5", + "-5", + "-37" + ] + } + }, + { + "name": "X5", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 325, + "unique_ratio": 0.050781, + "example_values": [ + "-9", + "2", + "-12", + "-8", + "-63" + ] + } + }, + { + "name": "X6", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 325, + "unique_ratio": 0.050781, + "example_values": [ + "-6", + "-5", + "11", + "0", + "-86" + ] + } + }, + { + "name": "X7", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 332, + "unique_ratio": 0.051875, + "example_values": [ + "-1", + "-2", + "5", + "-4", + "-82" + ] + } + }, + { + "name": "X8", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 330, + "unique_ratio": 0.051562, + "example_values": [ + "3", + "-3", + "9", + "-9", + "-51" + ] + } + }, + { + "name": "X9", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 333, + "unique_ratio": 0.052031, + "example_values": [ + "1", + "19", + "0", + "-1", + "-30" + ] + } + }, + { + "name": "X10", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 334, + "unique_ratio": 0.052187, + "example_values": [ + "4", + "10", + "9", + "3", + "-13" + ] + } + }, + { + "name": "X11", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 328, + "unique_ratio": 0.05125, + "example_values": [ + "-4", + "-3", + "-1", + "-7", + "-20" + ] + } + }, + { + "name": "X12", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 324, + "unique_ratio": 0.050625, + "example_values": [ + "-5", + "-11", + "0", + "4", + "-29" + ] + } + }, + { + "name": "X13", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 332, + "unique_ratio": 0.051875, + "example_values": [ + "4", + "-6", + "6", + "9", + "-38" + ] + } + }, + { + "name": "X14", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 318, + "unique_ratio": 0.049688, + "example_values": [ + "1", + "30", + "11", + "-5", + "-29" + ] + } + }, + { + "name": "X15", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 324, + "unique_ratio": 0.050625, + "example_values": [ + "-8", + "4", + "-9", + "-6", + "-15" + ] + } + }, + { + "name": "X16", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 325, + "unique_ratio": 0.050781, + "example_values": [ + "-1", + "-13", + "0", + "1", + "-23" + ] + } + }, + { + "name": "y", + "role": "target", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 4, + "unique_ratio": 0.000625, + "example_values": [ + "2", + "1", + "0", + "3" + ] + } + } + ] +} \ No newline at end of file diff --git a/timecost/n6/tabbyflow/tabbyflow-n6-20260429_032517/runtime_result.json b/timecost/n6/tabbyflow/tabbyflow-n6-20260429_032517/runtime_result.json new file mode 100644 index 0000000000000000000000000000000000000000..bd957693cabf42290e77f77216113d3970217dee --- /dev/null +++ b/timecost/n6/tabbyflow/tabbyflow-n6-20260429_032517/runtime_result.json @@ -0,0 +1,15 @@ +{ + "dataset_id": "n6", + "model": "tabbyflow", + "run_id": "tabbyflow-n6-20260429_032517", + "public_gate_status": "pass", + "adapter_ready_status": "pass", + "train_status": "success", + "generate_status": "success", + "reason_code": null, + "reason_detail": null, + "artifacts": { + "synthetic_csv": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/n6/tabbyflow/tabbyflow-n6-20260429_032517/tabbyflow-n6-6400-20260429_033823.csv", + "model_path": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/n6/tabbyflow/tabbyflow-n6-20260429_032517/models_tabbyflow/trained.pt" + } +} \ No newline at end of file diff --git a/timecost/n6/tabbyflow/tabbyflow-n6-20260429_032517/staged/public/staged_features.json b/timecost/n6/tabbyflow/tabbyflow-n6-20260429_032517/staged/public/staged_features.json new file mode 100644 index 0000000000000000000000000000000000000000..13d0b8c66a07bb8f5aa06667e153a85656dae7d8 --- /dev/null +++ b/timecost/n6/tabbyflow/tabbyflow-n6-20260429_032517/staged/public/staged_features.json @@ -0,0 +1,87 @@ +[ + { + "feature_name": "X1", + "data_type": "continuous", + "is_target": false + }, + { + "feature_name": "X2", + "data_type": "continuous", + "is_target": false + }, + { + "feature_name": "X3", + "data_type": "continuous", + "is_target": false + }, + { + "feature_name": "X4", + "data_type": "continuous", + "is_target": false + }, + { + "feature_name": "X5", + "data_type": "continuous", + "is_target": false + }, + { + "feature_name": "X6", + "data_type": "continuous", + "is_target": false + }, + { + "feature_name": "X7", + "data_type": "continuous", + "is_target": false + }, + { + "feature_name": "X8", + "data_type": "continuous", + "is_target": false + }, + { + "feature_name": "X9", + "data_type": "continuous", + "is_target": false + }, + { + "feature_name": "X10", + "data_type": "continuous", + "is_target": false + }, + { + "feature_name": "X11", + "data_type": "continuous", + "is_target": false + }, + { + "feature_name": "X12", + "data_type": "continuous", + "is_target": false + }, + { + "feature_name": "X13", + "data_type": "continuous", + "is_target": false + }, + { + "feature_name": "X14", + "data_type": "continuous", + "is_target": false + }, + { + "feature_name": "X15", + "data_type": "continuous", + "is_target": false + }, + { + "feature_name": "X16", + "data_type": "continuous", + "is_target": false + }, + { + "feature_name": "y", + "data_type": "continuous", + "is_target": true + } +] \ No newline at end of file diff --git a/timecost/n6/tabbyflow/tabbyflow-n6-20260429_032517/staged/public/test.csv b/timecost/n6/tabbyflow/tabbyflow-n6-20260429_032517/staged/public/test.csv new file mode 100644 index 0000000000000000000000000000000000000000..64d039a1664b74ef81240a9ba69ab982a78be184 --- /dev/null +++ b/timecost/n6/tabbyflow/tabbyflow-n6-20260429_032517/staged/public/test.csv @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:f1922293e501d8f17f56a321a1305e44d20a6ad7ed67e97af754dea170989fc5 +size 39918 diff --git a/timecost/n6/tabbyflow/tabbyflow-n6-20260429_032517/staged/public/train.csv b/timecost/n6/tabbyflow/tabbyflow-n6-20260429_032517/staged/public/train.csv new file mode 100644 index 0000000000000000000000000000000000000000..25108968eaf2c7995080c74fba26ca496d015c72 --- /dev/null +++ b/timecost/n6/tabbyflow/tabbyflow-n6-20260429_032517/staged/public/train.csv @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:c8545a9761061bd99d67935948928e2840e6ae4b5c9760cad2de82198676db2b +size 316902 diff --git a/timecost/n6/tabbyflow/tabbyflow-n6-20260429_032517/staged/public/val.csv b/timecost/n6/tabbyflow/tabbyflow-n6-20260429_032517/staged/public/val.csv new file mode 100644 index 0000000000000000000000000000000000000000..933b52194b2ae481787d393e22f1a96acb482a5a --- /dev/null +++ b/timecost/n6/tabbyflow/tabbyflow-n6-20260429_032517/staged/public/val.csv @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:60a3dd7f655f8086e53402dcdcfa42297d586d8483f2afd6e1bbc6bd3521303f +size 39705 diff --git a/timecost/n6/tabbyflow/tabbyflow-n6-20260429_032517/staged/tabbyflow/adapter_report.json b/timecost/n6/tabbyflow/tabbyflow-n6-20260429_032517/staged/tabbyflow/adapter_report.json new file mode 100644 index 0000000000000000000000000000000000000000..8b1027788fada199c6cae448717b5cebe2fa3a5c --- /dev/null +++ b/timecost/n6/tabbyflow/tabbyflow-n6-20260429_032517/staged/tabbyflow/adapter_report.json @@ -0,0 +1,7 @@ +{ + "adapter_ready_status": "pass", + "adapter_fail_reason_code": null, + "adapter_fail_detail": null, + "adapter_transforms_applied": [], + "model_input_manifest": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/n6/tabbyflow/tabbyflow-n6-20260429_032517/staged/tabbyflow/model_input_manifest.json" +} \ No newline at end of file diff --git a/timecost/n6/tabbyflow/tabbyflow-n6-20260429_032517/staged/tabbyflow/adapter_transforms_applied.json b/timecost/n6/tabbyflow/tabbyflow-n6-20260429_032517/staged/tabbyflow/adapter_transforms_applied.json new file mode 100644 index 0000000000000000000000000000000000000000..0637a088a01e8ddab3bf3fa98dbe804cbde1a0dc --- /dev/null +++ b/timecost/n6/tabbyflow/tabbyflow-n6-20260429_032517/staged/tabbyflow/adapter_transforms_applied.json @@ -0,0 +1 @@ +[] \ No newline at end of file diff --git a/timecost/n6/tabbyflow/tabbyflow-n6-20260429_032517/staged/tabbyflow/model_input_manifest.json b/timecost/n6/tabbyflow/tabbyflow-n6-20260429_032517/staged/tabbyflow/model_input_manifest.json new file mode 100644 index 0000000000000000000000000000000000000000..861de154edd04c7efca3498746018796f168f190 --- /dev/null +++ b/timecost/n6/tabbyflow/tabbyflow-n6-20260429_032517/staged/tabbyflow/model_input_manifest.json @@ -0,0 +1,370 @@ +{ + "dataset_id": "n6", + "model": "tabbyflow", + "target_column": "y", + "task_type": "classification", + "column_schema": [ + { + "name": "X1", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 313, + "unique_ratio": 0.048906, + "example_values": [ + "2", + "6", + "-2", + "-15", + "3" + ] + } + }, + { + "name": "X2", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 328, + "unique_ratio": 0.05125, + "example_values": [ + "-3", + "1", + "16", + "-4", + "-12" + ] + } + }, + { + "name": "X3", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 316, + "unique_ratio": 0.049375, + "example_values": [ + "-7", + "-6", + "3", + "-22", + "13" + ] + } + }, + { + "name": "X4", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 323, + "unique_ratio": 0.050469, + "example_values": [ + "-6", + "-7", + "5", + "-5", + "-37" + ] + } + }, + { + "name": "X5", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 325, + "unique_ratio": 0.050781, + "example_values": [ + "-9", + "2", + "-12", + "-8", + "-63" + ] + } + }, + { + "name": "X6", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 325, + "unique_ratio": 0.050781, + "example_values": [ + "-6", + "-5", + "11", + "0", + "-86" + ] + } + }, + { + "name": "X7", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 332, + "unique_ratio": 0.051875, + "example_values": [ + "-1", + "-2", + "5", + "-4", + "-82" + ] + } + }, + { + "name": "X8", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 330, + "unique_ratio": 0.051562, + "example_values": [ + "3", + "-3", + "9", + "-9", + "-51" + ] + } + }, + { + "name": "X9", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 333, + "unique_ratio": 0.052031, + "example_values": [ + "1", + "19", + "0", + "-1", + "-30" + ] + } + }, + { + "name": "X10", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 334, + "unique_ratio": 0.052187, + "example_values": [ + "4", + "10", + "9", + "3", + "-13" + ] + } + }, + { + "name": "X11", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 328, + "unique_ratio": 0.05125, + "example_values": [ + "-4", + "-3", + "-1", + "-7", + "-20" + ] + } + }, + { + "name": "X12", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 324, + "unique_ratio": 0.050625, + "example_values": [ + "-5", + "-11", + "0", + "4", + "-29" + ] + } + }, + { + "name": "X13", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 332, + "unique_ratio": 0.051875, + "example_values": [ + "4", + "-6", + "6", + "9", + "-38" + ] + } + }, + { + "name": "X14", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 318, + "unique_ratio": 0.049688, + "example_values": [ + "1", + "30", + "11", + "-5", + "-29" + ] + } + }, + { + "name": "X15", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 324, + "unique_ratio": 0.050625, + "example_values": [ + "-8", + "4", + "-9", + "-6", + "-15" + ] + } + }, + { + "name": "X16", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 325, + "unique_ratio": 0.050781, + "example_values": [ + "-1", + "-13", + "0", + "1", + "-23" + ] + } + }, + { + "name": "y", + "role": "target", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 4, + "unique_ratio": 0.000625, + "example_values": [ + "2", + "1", + "0", + "3" + ] + } + } + ], + "public_manifest": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/n6/tabbyflow/tabbyflow-n6-20260429_032517/public_gate/staged_input_manifest.json", + "train_csv": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/n6/tabbyflow/tabbyflow-n6-20260429_032517/staged/public/train.csv", + "val_csv": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/n6/tabbyflow/tabbyflow-n6-20260429_032517/staged/public/val.csv", + "test_csv": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/n6/tabbyflow/tabbyflow-n6-20260429_032517/staged/public/test.csv", + "features_json": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/n6/tabbyflow/tabbyflow-n6-20260429_032517/staged/public/staged_features.json", + "public_gate_report": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/n6/tabbyflow/tabbyflow-n6-20260429_032517/public_gate/public_gate_report.json" +} \ No newline at end of file diff --git a/timecost/n6/tabbyflow/tabbyflow-n6-20260429_032517/tabbyflow-n6-6400-20260429_033823.csv b/timecost/n6/tabbyflow/tabbyflow-n6-20260429_032517/tabbyflow-n6-6400-20260429_033823.csv new file mode 100644 index 0000000000000000000000000000000000000000..9047edb9896bbc025918c5f81bcbbd7fe6838332 --- /dev/null +++ b/timecost/n6/tabbyflow/tabbyflow-n6-20260429_032517/tabbyflow-n6-6400-20260429_033823.csv @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:ba9fafad342eed2b7d016e43bc3a6375f4ab748127aa6c6cb46baa3f3e061ea9 +size 716242 diff --git a/timecost/n6/tabbyflow/tabbyflow-n6-20260429_032517/tabbyflow_train_meta.json b/timecost/n6/tabbyflow/tabbyflow-n6-20260429_032517/tabbyflow_train_meta.json new file mode 100644 index 0000000000000000000000000000000000000000..205d1f12229fb08c4991dbe5077d93bc37dfbadc --- /dev/null +++ b/timecost/n6/tabbyflow/tabbyflow-n6-20260429_032517/tabbyflow_train_meta.json @@ -0,0 +1,5 @@ +{ + "exp_name": "adapter_efvfm", + "dataname": "pipeline_ds", + "steps": 500 +} \ No newline at end of file diff --git a/timecost/n6/tabbyflow/tabbyflow-n6-20260429_032517/tabular_bundle/pipeline_ds/X_cat_test.npy b/timecost/n6/tabbyflow/tabbyflow-n6-20260429_032517/tabular_bundle/pipeline_ds/X_cat_test.npy new file mode 100644 index 0000000000000000000000000000000000000000..136aea2b11e9f3dae96425d68d93f57f0261d965 --- /dev/null +++ b/timecost/n6/tabbyflow/tabbyflow-n6-20260429_032517/tabular_bundle/pipeline_ds/X_cat_test.npy @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:1f36bc04fd4784bdd71cdf76db3bc10e00251759c48d501d1d7b5437ff785c82 +size 128 diff --git a/timecost/n6/tabbyflow/tabbyflow-n6-20260429_032517/tabular_bundle/pipeline_ds/X_cat_train.npy b/timecost/n6/tabbyflow/tabbyflow-n6-20260429_032517/tabular_bundle/pipeline_ds/X_cat_train.npy new file mode 100644 index 0000000000000000000000000000000000000000..136aea2b11e9f3dae96425d68d93f57f0261d965 --- /dev/null +++ b/timecost/n6/tabbyflow/tabbyflow-n6-20260429_032517/tabular_bundle/pipeline_ds/X_cat_train.npy @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:1f36bc04fd4784bdd71cdf76db3bc10e00251759c48d501d1d7b5437ff785c82 +size 128 diff --git a/timecost/n6/tabbyflow/tabbyflow-n6-20260429_032517/tabular_bundle/pipeline_ds/X_cat_val.npy b/timecost/n6/tabbyflow/tabbyflow-n6-20260429_032517/tabular_bundle/pipeline_ds/X_cat_val.npy new file mode 100644 index 0000000000000000000000000000000000000000..136aea2b11e9f3dae96425d68d93f57f0261d965 --- /dev/null +++ b/timecost/n6/tabbyflow/tabbyflow-n6-20260429_032517/tabular_bundle/pipeline_ds/X_cat_val.npy @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:1f36bc04fd4784bdd71cdf76db3bc10e00251759c48d501d1d7b5437ff785c82 +size 128 diff --git a/timecost/n6/tabbyflow/tabbyflow-n6-20260429_032517/tabular_bundle/pipeline_ds/X_num_test.npy b/timecost/n6/tabbyflow/tabbyflow-n6-20260429_032517/tabular_bundle/pipeline_ds/X_num_test.npy new file mode 100644 index 0000000000000000000000000000000000000000..def13e7d3573d9da1f67050d7e4ce6241fc9d1e5 --- /dev/null +++ b/timecost/n6/tabbyflow/tabbyflow-n6-20260429_032517/tabular_bundle/pipeline_ds/X_num_test.npy @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:393035466f24178ccee0946bd1ab6d8b7bc07677142b5798ad07b8d2e2b65962 +size 409728 diff --git a/timecost/n6/tabbyflow/tabbyflow-n6-20260429_032517/tabular_bundle/pipeline_ds/X_num_train.npy b/timecost/n6/tabbyflow/tabbyflow-n6-20260429_032517/tabular_bundle/pipeline_ds/X_num_train.npy new file mode 100644 index 0000000000000000000000000000000000000000..def13e7d3573d9da1f67050d7e4ce6241fc9d1e5 --- /dev/null +++ b/timecost/n6/tabbyflow/tabbyflow-n6-20260429_032517/tabular_bundle/pipeline_ds/X_num_train.npy @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:393035466f24178ccee0946bd1ab6d8b7bc07677142b5798ad07b8d2e2b65962 +size 409728 diff --git a/timecost/n6/tabbyflow/tabbyflow-n6-20260429_032517/tabular_bundle/pipeline_ds/X_num_val.npy b/timecost/n6/tabbyflow/tabbyflow-n6-20260429_032517/tabular_bundle/pipeline_ds/X_num_val.npy new file mode 100644 index 0000000000000000000000000000000000000000..def13e7d3573d9da1f67050d7e4ce6241fc9d1e5 --- /dev/null +++ b/timecost/n6/tabbyflow/tabbyflow-n6-20260429_032517/tabular_bundle/pipeline_ds/X_num_val.npy @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:393035466f24178ccee0946bd1ab6d8b7bc07677142b5798ad07b8d2e2b65962 +size 409728 diff --git a/timecost/n6/tabbyflow/tabbyflow-n6-20260429_032517/tabular_bundle/pipeline_ds/info.json b/timecost/n6/tabbyflow/tabbyflow-n6-20260429_032517/tabular_bundle/pipeline_ds/info.json new file mode 100644 index 0000000000000000000000000000000000000000..54e4044ff8e063057de5e463024afe1f30ac4047 --- /dev/null +++ b/timecost/n6/tabbyflow/tabbyflow-n6-20260429_032517/tabular_bundle/pipeline_ds/info.json @@ -0,0 +1,184 @@ +{ + "name": "pipeline_ds", + "task_type": "multiclass", + "n_num_features": 16, + "n_cat_features": 0, + "train_size": 6400, + "test_num": 6400, + "val_num": 6400, + "train_num": 6400, + "bundle_note": "val/test matrices are train copies (train-only policy; no real held-out rows).", + "num_col_idx": [ + 0, + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13, + 14, + 15 + ], + "cat_col_idx": [], + "target_col_idx": [ + 16 + ], + "column_names": [ + "X1", + "X2", + "X3", + "X4", + "X5", + "X6", + "X7", + "X8", + "X9", + "X10", + "X11", + "X12", + "X13", + "X14", + "X15", + "X16", + "y" + ], + "int_col_idx": [], + "int_columns": [], + "int_col_idx_wrt_num": [], + "metadata": { + "columns": { + "0": { + "sdtype": "numerical", + "computer_representation": "Float" + }, + "1": { + "sdtype": "numerical", + "computer_representation": "Float" + }, + "2": { + "sdtype": "numerical", + "computer_representation": "Float" + }, + "3": { + "sdtype": "numerical", + "computer_representation": "Float" + }, + "4": { + "sdtype": "numerical", + "computer_representation": "Float" + }, + "5": { + "sdtype": "numerical", + "computer_representation": "Float" + }, + "6": { + "sdtype": "numerical", + "computer_representation": "Float" + }, + "7": { + "sdtype": "numerical", + "computer_representation": "Float" + }, + "8": { + "sdtype": "numerical", + "computer_representation": "Float" + }, + "9": { + "sdtype": "numerical", + "computer_representation": "Float" + }, + "10": { + "sdtype": "numerical", + "computer_representation": "Float" + }, + "11": { + "sdtype": "numerical", + "computer_representation": "Float" + }, + "12": { + "sdtype": "numerical", + "computer_representation": "Float" + }, + "13": { + "sdtype": "numerical", + "computer_representation": "Float" + }, + "14": { + "sdtype": "numerical", + "computer_representation": "Float" + }, + "15": { + "sdtype": "numerical", + "computer_representation": "Float" + }, + "16": { + "sdtype": "categorical" + } + } + }, + "idx_mapping": { + "0": 0, + "1": 1, + "2": 2, + "3": 3, + "4": 4, + "5": 5, + "6": 6, + "7": 7, + "8": 8, + "9": 9, + "10": 10, + "11": 11, + "12": 12, + "13": 13, + "14": 14, + "15": 15, + "16": 16 + }, + "inverse_idx_mapping": { + "0": 0, + "1": 1, + "2": 2, + "3": 3, + "4": 4, + "5": 5, + "6": 6, + "7": 7, + "8": 8, + "9": 9, + "10": 10, + "11": 11, + "12": 12, + "13": 13, + "14": 14, + "15": 15, + "16": 16 + }, + "idx_name_mapping": { + "0": "X1", + "1": "X2", + "2": "X3", + "3": "X4", + "4": "X5", + "5": "X6", + "6": "X7", + "7": "X8", + "8": "X9", + "9": "X10", + "10": "X11", + "11": "X12", + "12": "X13", + "13": "X14", + "14": "X15", + "15": "X16", + "16": "y" + }, + "n_classes": 4 +} \ No newline at end of file diff --git a/timecost/n6/tabbyflow/tabbyflow-n6-20260429_032517/tabular_bundle/pipeline_ds/real.csv b/timecost/n6/tabbyflow/tabbyflow-n6-20260429_032517/tabular_bundle/pipeline_ds/real.csv new file mode 100644 index 0000000000000000000000000000000000000000..25108968eaf2c7995080c74fba26ca496d015c72 --- /dev/null +++ b/timecost/n6/tabbyflow/tabbyflow-n6-20260429_032517/tabular_bundle/pipeline_ds/real.csv @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:c8545a9761061bd99d67935948928e2840e6ae4b5c9760cad2de82198676db2b +size 316902 diff --git a/timecost/n6/tabbyflow/tabbyflow-n6-20260429_032517/tabular_bundle/pipeline_ds/test.csv b/timecost/n6/tabbyflow/tabbyflow-n6-20260429_032517/tabular_bundle/pipeline_ds/test.csv new file mode 100644 index 0000000000000000000000000000000000000000..25108968eaf2c7995080c74fba26ca496d015c72 --- /dev/null +++ b/timecost/n6/tabbyflow/tabbyflow-n6-20260429_032517/tabular_bundle/pipeline_ds/test.csv @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:c8545a9761061bd99d67935948928e2840e6ae4b5c9760cad2de82198676db2b +size 316902 diff --git a/timecost/n6/tabbyflow/tabbyflow-n6-20260429_032517/tabular_bundle/pipeline_ds/val.csv b/timecost/n6/tabbyflow/tabbyflow-n6-20260429_032517/tabular_bundle/pipeline_ds/val.csv new file mode 100644 index 0000000000000000000000000000000000000000..25108968eaf2c7995080c74fba26ca496d015c72 --- /dev/null +++ b/timecost/n6/tabbyflow/tabbyflow-n6-20260429_032517/tabular_bundle/pipeline_ds/val.csv @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:c8545a9761061bd99d67935948928e2840e6ae4b5c9760cad2de82198676db2b +size 316902 diff --git a/timecost/n6/tabbyflow/tabbyflow-n6-20260429_032517/tabular_bundle/pipeline_ds/y_test.npy b/timecost/n6/tabbyflow/tabbyflow-n6-20260429_032517/tabular_bundle/pipeline_ds/y_test.npy new file mode 100644 index 0000000000000000000000000000000000000000..8f4c36c6fa08e00773b3d55f2682ff16844b5f63 --- /dev/null +++ b/timecost/n6/tabbyflow/tabbyflow-n6-20260429_032517/tabular_bundle/pipeline_ds/y_test.npy @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:6bc1d3e281e647d8507df1305552f87513b9d8b7aad284e535e9fa2d0c18071b +size 51328 diff --git a/timecost/n6/tabbyflow/tabbyflow-n6-20260429_032517/tabular_bundle/pipeline_ds/y_train.npy b/timecost/n6/tabbyflow/tabbyflow-n6-20260429_032517/tabular_bundle/pipeline_ds/y_train.npy new file mode 100644 index 0000000000000000000000000000000000000000..8f4c36c6fa08e00773b3d55f2682ff16844b5f63 --- /dev/null +++ b/timecost/n6/tabbyflow/tabbyflow-n6-20260429_032517/tabular_bundle/pipeline_ds/y_train.npy @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:6bc1d3e281e647d8507df1305552f87513b9d8b7aad284e535e9fa2d0c18071b +size 51328 diff --git a/timecost/n6/tabbyflow/tabbyflow-n6-20260429_032517/tabular_bundle/pipeline_ds/y_val.npy b/timecost/n6/tabbyflow/tabbyflow-n6-20260429_032517/tabular_bundle/pipeline_ds/y_val.npy new file mode 100644 index 0000000000000000000000000000000000000000..8f4c36c6fa08e00773b3d55f2682ff16844b5f63 --- /dev/null +++ b/timecost/n6/tabbyflow/tabbyflow-n6-20260429_032517/tabular_bundle/pipeline_ds/y_val.npy @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:6bc1d3e281e647d8507df1305552f87513b9d8b7aad284e535e9fa2d0c18071b +size 51328 diff --git a/timecost/n6/tabbyflow/tabbyflow-n6-20260429_032517/train_20260429_032517.log b/timecost/n6/tabbyflow/tabbyflow-n6-20260429_032517/train_20260429_032517.log new file mode 100644 index 0000000000000000000000000000000000000000..4489e5ec95344162f90122be812f6d7b9e85f99a --- /dev/null +++ b/timecost/n6/tabbyflow/tabbyflow-n6-20260429_032517/train_20260429_032517.log @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:2abd54789951964148a9da786dbe67842a5a2a85236d669d6bd00a636cf9facf +size 373184 diff --git a/timecost/n6/tabddpm/tabddpm-n6-20260429_052038/_tabddpm_sample_r0.py b/timecost/n6/tabddpm/tabddpm-n6-20260429_052038/_tabddpm_sample_r0.py new file mode 100644 index 0000000000000000000000000000000000000000..5d3a36d1dbdabbd27854afaaa6867e941bff28b8 --- /dev/null +++ b/timecost/n6/tabddpm/tabddpm-n6-20260429_052038/_tabddpm_sample_r0.py @@ -0,0 +1,66 @@ +import os, sys, subprocess, json +import numpy as np +import pandas as pd + +tabddpm_root = "/workspace/tabddpm/code" +assert os.path.isdir(tabddpm_root), f"TabDDPM source not mounted: {tabddpm_root}" +env = os.environ.copy() +env["PYTHONPATH"] = tabddpm_root + (os.pathsep + env.get("PYTHONPATH", "")) + +# Reuse the compat wrapper (patches collections.Sequence for skorch) +wrapper = os.path.join(tabddpm_root, "_compat_run.py") +if not os.path.exists(wrapper): + with open(wrapper, "w") as f: + f.write( + "import collections, collections.abc\n" + "for _a in ('Sequence','MutableSequence','MutableMapping','Mapping'," + "'MutableSet','Set','Callable','Iterable','Iterator'):\n" + " if not hasattr(collections, _a): setattr(collections, _a, getattr(collections.abc, _a, None))\n" + "import sys, runpy\n" + "sys.argv = sys.argv[1:]\n" + "runpy.run_path(sys.argv[0], run_name='__main__')\n" + ) + +print(f"[TabDDPM] Sampling 6400 rows") +ret = subprocess.run( + [sys.executable, wrapper, "scripts/pipeline.py", + "--config", "/work/output-Benchmark-trainonly-v1/n6/tabddpm/tabddpm-n6-20260429_052038/config_sample_20260429_052109_r0.toml", + "--sample"], + cwd=tabddpm_root, + env=env +) +if ret.returncode != 0: + sys.exit(ret.returncode) + +# 将 .npy 输出转为 CSV(npy 在 TabDDPM 的 parent_dir,即 npy_dir) +info_path = "/work/output-Benchmark-trainonly-v1/n6/tabddpm/tabddpm-n6-20260429_052038/data/info.json" +with open(info_path) as f: + info = json.load(f) + +output_dir = "/work/output-Benchmark-trainonly-v1/n6/tabddpm/tabddpm-n6-20260429_052038/output" +col_names = info.get("column_names", []) + +parts = [] +x_num_path = os.path.join(output_dir, "X_num_train.npy") +x_cat_path = os.path.join(output_dir, "X_cat_train.npy") +y_path = os.path.join(output_dir, "y_train.npy") + +if os.path.exists(x_num_path): + parts.append(np.load(x_num_path, allow_pickle=True)) +if os.path.exists(x_cat_path): + parts.append(np.load(x_cat_path, allow_pickle=True).astype(float)) +if os.path.exists(y_path): + y = np.load(y_path, allow_pickle=True) + parts.append(y.reshape(-1, 1) if y.ndim == 1 else y) + +if parts: + combined = np.concatenate(parts, axis=1) + if col_names and len(col_names) == combined.shape[1]: + df = pd.DataFrame(combined, columns=col_names) + else: + df = pd.DataFrame(combined) + df.to_csv("/work/output-Benchmark-trainonly-v1/n6/tabddpm/tabddpm-n6-20260429_052038/tabddpm-n6-6400-20260429_052109.csv", index=False) + print(f"[TabDDPM] Saved {len(df)} rows -> /work/output-Benchmark-trainonly-v1/n6/tabddpm/tabddpm-n6-20260429_052038/tabddpm-n6-6400-20260429_052109.csv") +else: + print("[TabDDPM] WARNING: No output .npy files found") + sys.exit(1) diff --git a/timecost/n6/tabddpm/tabddpm-n6-20260429_052038/_tabddpm_train.py b/timecost/n6/tabddpm/tabddpm-n6-20260429_052038/_tabddpm_train.py new file mode 100644 index 0000000000000000000000000000000000000000..03a88ed2945f1661f4e5483b339d21755b4ea092 --- /dev/null +++ b/timecost/n6/tabddpm/tabddpm-n6-20260429_052038/_tabddpm_train.py @@ -0,0 +1,32 @@ +import os, sys, subprocess + +tabddpm_root = "/workspace/tabddpm/code" +assert os.path.isdir(tabddpm_root), f"TabDDPM source not mounted: {tabddpm_root}" +env = os.environ.copy() +env["PYTHONPATH"] = tabddpm_root + (os.pathsep + env.get("PYTHONPATH", "")) + +# Write a wrapper that patches collections.Sequence (removed in Python 3.10+) +# before running pipeline.py - needed because skorch uses old API +wrapper = os.path.join(tabddpm_root, "_compat_run.py") +with open(wrapper, "w") as f: + f.write( + "import collections, collections.abc\n" + "for _a in ('Sequence','MutableSequence','MutableMapping','Mapping'," + "'MutableSet','Set','Callable','Iterable','Iterator'):\n" + " if not hasattr(collections, _a): setattr(collections, _a, getattr(collections.abc, _a, None))\n" + "import sys, runpy\n" + "sys.argv = sys.argv[1:]\n" + "runpy.run_path(sys.argv[0], run_name='__main__')\n" + ) + +print(f"[TabDDPM] Training, config=/work/output-Benchmark-trainonly-v1/n6/tabddpm/tabddpm-n6-20260429_052038/config.toml") +ret = subprocess.run( + [sys.executable, wrapper, "scripts/pipeline.py", + "--config", "/work/output-Benchmark-trainonly-v1/n6/tabddpm/tabddpm-n6-20260429_052038/config.toml", + "--train"], + cwd=tabddpm_root, + env=env +) +if ret.returncode != 0: + sys.exit(ret.returncode) +print("[TabDDPM] Training complete") diff --git a/timecost/n6/tabddpm/tabddpm-n6-20260429_052038/config.toml b/timecost/n6/tabddpm/tabddpm-n6-20260429_052038/config.toml new file mode 100644 index 0000000000000000000000000000000000000000..00ced7ba23a5d60ae6146e7c4005a5f7649c5148 --- /dev/null +++ b/timecost/n6/tabddpm/tabddpm-n6-20260429_052038/config.toml @@ -0,0 +1,39 @@ +seed = 0 +parent_dir = "/work/output-Benchmark-trainonly-v1/n6/tabddpm/tabddpm-n6-20260429_052038/output" +real_data_path = "/work/output-Benchmark-trainonly-v1/n6/tabddpm/tabddpm-n6-20260429_052038/data" +model_type = "mlp" +num_numerical_features = 16 +device = "cuda:0" + +[model_params] +d_in = 16 +num_classes = 4 +is_y_cond = true + +[model_params.rtdl_params] +d_layers = [256, 256] +dropout = 0.0 + +[diffusion_params] +num_timesteps = 1000 +gaussian_loss_type = "mse" + +[train.main] +steps = 5000 +lr = 0.001 +weight_decay = 0.0 +batch_size = 256 + +[train.T] +seed = 0 +normalization = "quantile" +num_nan_policy = "__none__" +cat_nan_policy = "__none__" +cat_min_frequency = "__none__" +cat_encoding = "__none__" +y_policy = "default" + +[sample] +num_samples = 1000 +batch_size = 1000 +seed = 0 diff --git a/timecost/n6/tabddpm/tabddpm-n6-20260429_052038/config_sample_20260429_052109_r0.toml b/timecost/n6/tabddpm/tabddpm-n6-20260429_052038/config_sample_20260429_052109_r0.toml new file mode 100644 index 0000000000000000000000000000000000000000..449b173424c65c5038bd791dd86044e5a49c6262 --- /dev/null +++ b/timecost/n6/tabddpm/tabddpm-n6-20260429_052038/config_sample_20260429_052109_r0.toml @@ -0,0 +1,39 @@ +seed = 0 +parent_dir = "/work/output-Benchmark-trainonly-v1/n6/tabddpm/tabddpm-n6-20260429_052038/output" +real_data_path = "/work/output-Benchmark-trainonly-v1/n6/tabddpm/tabddpm-n6-20260429_052038/data" +model_type = "mlp" +num_numerical_features = 16 +device = "cuda:0" + +[model_params] +d_in = 16 +num_classes = 4 +is_y_cond = true + +[model_params.rtdl_params] +d_layers = [256, 256] +dropout = 0.0 + +[diffusion_params] +num_timesteps = 1000 +gaussian_loss_type = "mse" + +[train.main] +steps = 5000 +lr = 0.001 +weight_decay = 0.0 +batch_size = 256 + +[train.T] +seed = 0 +normalization = "quantile" +num_nan_policy = "__none__" +cat_nan_policy = "__none__" +cat_min_frequency = "__none__" +cat_encoding = "__none__" +y_policy = "default" + +[sample] +num_samples = 6400 +batch_size = 1000 +seed = 0 diff --git a/timecost/n6/tabddpm/tabddpm-n6-20260429_052038/data/X_num_train.npy b/timecost/n6/tabddpm/tabddpm-n6-20260429_052038/data/X_num_train.npy new file mode 100644 index 0000000000000000000000000000000000000000..def13e7d3573d9da1f67050d7e4ce6241fc9d1e5 --- /dev/null +++ b/timecost/n6/tabddpm/tabddpm-n6-20260429_052038/data/X_num_train.npy @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:393035466f24178ccee0946bd1ab6d8b7bc07677142b5798ad07b8d2e2b65962 +size 409728 diff --git a/timecost/n6/tabddpm/tabddpm-n6-20260429_052038/data/info.json b/timecost/n6/tabddpm/tabddpm-n6-20260429_052038/data/info.json new file mode 100644 index 0000000000000000000000000000000000000000..3777f319e02f3397b8b9a46255c944b8ab7d16ce --- /dev/null +++ b/timecost/n6/tabddpm/tabddpm-n6-20260429_052038/data/info.json @@ -0,0 +1,49 @@ +{ + "name": "benchmark_dataset", + "task_type": "multiclass", + "n_num_features": 16, + "n_cat_features": 0, + "train_size": 6400, + "num_col_idx": [ + 0, + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13, + 14, + 15 + ], + "cat_col_idx": [], + "target_col_idx": [ + 16 + ], + "column_names": [ + "X1", + "X2", + "X3", + "X4", + "X5", + "X6", + "X7", + "X8", + "X9", + "X10", + "X11", + "X12", + "X13", + "X14", + "X15", + "X16", + "y" + ], + "num_classes": 4 +} \ No newline at end of file diff --git a/timecost/n6/tabddpm/tabddpm-n6-20260429_052038/data/y_train.npy b/timecost/n6/tabddpm/tabddpm-n6-20260429_052038/data/y_train.npy new file mode 100644 index 0000000000000000000000000000000000000000..8f4c36c6fa08e00773b3d55f2682ff16844b5f63 --- /dev/null +++ b/timecost/n6/tabddpm/tabddpm-n6-20260429_052038/data/y_train.npy @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:6bc1d3e281e647d8507df1305552f87513b9d8b7aad284e535e9fa2d0c18071b +size 51328 diff --git a/timecost/n6/tabddpm/tabddpm-n6-20260429_052038/gen_20260429_052109_r0.log b/timecost/n6/tabddpm/tabddpm-n6-20260429_052038/gen_20260429_052109_r0.log new file mode 100644 index 0000000000000000000000000000000000000000..056e4afc472db87265233acf7294e27a3a3b071c --- /dev/null +++ b/timecost/n6/tabddpm/tabddpm-n6-20260429_052038/gen_20260429_052109_r0.log @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:2d97a3dd2436d3c7c4410122f05027ab68595c26cf56399e6953be6d033fbff6 +size 147503 diff --git a/timecost/n6/tabddpm/tabddpm-n6-20260429_052038/input_snapshot.json b/timecost/n6/tabddpm/tabddpm-n6-20260429_052038/input_snapshot.json new file mode 100644 index 0000000000000000000000000000000000000000..fbcba28a0ded885abcc84a9db0a57e44473a5661 --- /dev/null +++ b/timecost/n6/tabddpm/tabddpm-n6-20260429_052038/input_snapshot.json @@ -0,0 +1,36 @@ +{ + "dataset_id": "n6", + "model": "tabddpm", + "inputs": { + "train_csv": { + "path": "/data/jialinzhang/SynthesizePipeline-server/DatasetNew/n6/n6-train.csv", + "exists": true, + "size": 323303, + "sha256": "3b9d646393340b4c636db7686f2313521d84434e99ac1316b1053b05c995a3b1" + }, + "val_csv": { + "path": "/data/jialinzhang/SynthesizePipeline-server/DatasetNew/n6/n6-val.csv", + "exists": true, + "size": 40506, + "sha256": "74a01693febbfda57225ebbec2f7a9c22a2136edbec694b108b50c013cd6fe9d" + }, + "test_csv": { + "path": "/data/jialinzhang/SynthesizePipeline-server/DatasetNew/n6/n6-test.csv", + "exists": true, + "size": 40719, + "sha256": "46f32b813d7849636da5a0a7aa560ea062b8f5765772dc1a8268f756cdb2fbcc" + }, + "profile_json": { + "path": "/data/jialinzhang/SynthesizePipeline-server/DatasetNew/artifacts/data_core/tabular/n6/n6-dataset_profile.json", + "exists": true, + "size": 6559, + "sha256": "c3a4ba3662399f797ed5ac4ea171e2991e3f3ac9ea221ba345c132e11450d759" + }, + "contract_json": { + "path": "/data/jialinzhang/SynthesizePipeline-server/DatasetNew/artifacts/data_core/tabular/n6/n6-dataset_contract_v1.json", + "exists": true, + "size": 8304, + "sha256": "979119ea8d3be4588170ff59aa802156a0a5ecaf4312599a8b2998d38b69fba5" + } + } +} \ No newline at end of file diff --git a/timecost/n6/tabddpm/tabddpm-n6-20260429_052038/output/X_num_train.npy b/timecost/n6/tabddpm/tabddpm-n6-20260429_052038/output/X_num_train.npy new file mode 100644 index 0000000000000000000000000000000000000000..b7bf6a4351a4f4b7966abcaae236892c159150c2 --- /dev/null +++ b/timecost/n6/tabddpm/tabddpm-n6-20260429_052038/output/X_num_train.npy @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:c5101de6dfc83cac4ab1298ac82cd86a111bbb095164e1b935d5590d80d0b340 +size 819328 diff --git a/timecost/n6/tabddpm/tabddpm-n6-20260429_052038/output/X_num_unnorm.npy b/timecost/n6/tabddpm/tabddpm-n6-20260429_052038/output/X_num_unnorm.npy new file mode 100644 index 0000000000000000000000000000000000000000..98ac2053f4f536351c58c1641a500557d5ea2a99 --- /dev/null +++ b/timecost/n6/tabddpm/tabddpm-n6-20260429_052038/output/X_num_unnorm.npy @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:02847502af68331325dc2a1697b8bc9900d08487d8a95751abdf0d87b0a2675f +size 819328 diff --git a/timecost/n6/tabddpm/tabddpm-n6-20260429_052038/output/config.toml b/timecost/n6/tabddpm/tabddpm-n6-20260429_052038/output/config.toml new file mode 100644 index 0000000000000000000000000000000000000000..449b173424c65c5038bd791dd86044e5a49c6262 --- /dev/null +++ b/timecost/n6/tabddpm/tabddpm-n6-20260429_052038/output/config.toml @@ -0,0 +1,39 @@ +seed = 0 +parent_dir = "/work/output-Benchmark-trainonly-v1/n6/tabddpm/tabddpm-n6-20260429_052038/output" +real_data_path = "/work/output-Benchmark-trainonly-v1/n6/tabddpm/tabddpm-n6-20260429_052038/data" +model_type = "mlp" +num_numerical_features = 16 +device = "cuda:0" + +[model_params] +d_in = 16 +num_classes = 4 +is_y_cond = true + +[model_params.rtdl_params] +d_layers = [256, 256] +dropout = 0.0 + +[diffusion_params] +num_timesteps = 1000 +gaussian_loss_type = "mse" + +[train.main] +steps = 5000 +lr = 0.001 +weight_decay = 0.0 +batch_size = 256 + +[train.T] +seed = 0 +normalization = "quantile" +num_nan_policy = "__none__" +cat_nan_policy = "__none__" +cat_min_frequency = "__none__" +cat_encoding = "__none__" +y_policy = "default" + +[sample] +num_samples = 6400 +batch_size = 1000 +seed = 0 diff --git a/timecost/n6/tabddpm/tabddpm-n6-20260429_052038/output/info.json b/timecost/n6/tabddpm/tabddpm-n6-20260429_052038/output/info.json new file mode 100644 index 0000000000000000000000000000000000000000..3777f319e02f3397b8b9a46255c944b8ab7d16ce --- /dev/null +++ b/timecost/n6/tabddpm/tabddpm-n6-20260429_052038/output/info.json @@ -0,0 +1,49 @@ +{ + "name": "benchmark_dataset", + "task_type": "multiclass", + "n_num_features": 16, + "n_cat_features": 0, + "train_size": 6400, + "num_col_idx": [ + 0, + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13, + 14, + 15 + ], + "cat_col_idx": [], + "target_col_idx": [ + 16 + ], + "column_names": [ + "X1", + "X2", + "X3", + "X4", + "X5", + "X6", + "X7", + "X8", + "X9", + "X10", + "X11", + "X12", + "X13", + "X14", + "X15", + "X16", + "y" + ], + "num_classes": 4 +} \ No newline at end of file diff --git a/timecost/n6/tabddpm/tabddpm-n6-20260429_052038/output/loss.csv b/timecost/n6/tabddpm/tabddpm-n6-20260429_052038/output/loss.csv new file mode 100644 index 0000000000000000000000000000000000000000..e6c085754f15be4d6bf3a8568eb9ce861d58e4b1 --- /dev/null +++ b/timecost/n6/tabddpm/tabddpm-n6-20260429_052038/output/loss.csv @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:f93b1778bbcdc3f255c0fdf6311abb498458bbb85523824d498275e87b6fec7f +size 1249 diff --git a/timecost/n6/tabddpm/tabddpm-n6-20260429_052038/output/model.pt b/timecost/n6/tabddpm/tabddpm-n6-20260429_052038/output/model.pt new file mode 100644 index 0000000000000000000000000000000000000000..0add1f944479b056a421aab2af3b8d8f50ab4774 --- /dev/null +++ b/timecost/n6/tabddpm/tabddpm-n6-20260429_052038/output/model.pt @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:8abbbeef2e01c4df212b61432ea37f7df2ec15854abf5494ed441320dae46f39 +size 559190 diff --git a/timecost/n6/tabddpm/tabddpm-n6-20260429_052038/output/model_ema.pt b/timecost/n6/tabddpm/tabddpm-n6-20260429_052038/output/model_ema.pt new file mode 100644 index 0000000000000000000000000000000000000000..6cd49b52175be3c89acfdf030c180b81df5b837d --- /dev/null +++ b/timecost/n6/tabddpm/tabddpm-n6-20260429_052038/output/model_ema.pt @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:e0c29c4d2dbc623892565b7533a10d2b7289fc2e93c5682fe0d04800ddd8ec94 +size 560098 diff --git a/timecost/n6/tabddpm/tabddpm-n6-20260429_052038/output/y_train.npy b/timecost/n6/tabddpm/tabddpm-n6-20260429_052038/output/y_train.npy new file mode 100644 index 0000000000000000000000000000000000000000..c7933689e97cd60a062baf844d1460f2dc4c2e58 --- /dev/null +++ b/timecost/n6/tabddpm/tabddpm-n6-20260429_052038/output/y_train.npy @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:cba67a34ae10355b5faebcc43e557d9a03eaecc9a10b0a80d5b614eec5eac0b3 +size 51328 diff --git a/timecost/n6/tabddpm/tabddpm-n6-20260429_052038/public_gate/normalized_schema_snapshot.json b/timecost/n6/tabddpm/tabddpm-n6-20260429_052038/public_gate/normalized_schema_snapshot.json new file mode 100644 index 0000000000000000000000000000000000000000..f37e46415bf96a79860f8cd9cdbfb764f9fbd0cb --- /dev/null +++ b/timecost/n6/tabddpm/tabddpm-n6-20260429_052038/public_gate/normalized_schema_snapshot.json @@ -0,0 +1,363 @@ +{ + "dataset_id": "n6", + "target_column": "y", + "task_type": "classification", + "columns": [ + { + "name": "X1", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 313, + "unique_ratio": 0.048906, + "example_values": [ + "2", + "6", + "-2", + "-15", + "3" + ] + } + }, + { + "name": "X2", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 328, + "unique_ratio": 0.05125, + "example_values": [ + "-3", + "1", + "16", + "-4", + "-12" + ] + } + }, + { + "name": "X3", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 316, + "unique_ratio": 0.049375, + "example_values": [ + "-7", + "-6", + "3", + "-22", + "13" + ] + } + }, + { + "name": "X4", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 323, + "unique_ratio": 0.050469, + "example_values": [ + "-6", + "-7", + "5", + "-5", + "-37" + ] + } + }, + { + "name": "X5", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 325, + "unique_ratio": 0.050781, + "example_values": [ + "-9", + "2", + "-12", + "-8", + "-63" + ] + } + }, + { + "name": "X6", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 325, + "unique_ratio": 0.050781, + "example_values": [ + "-6", + "-5", + "11", + "0", + "-86" + ] + } + }, + { + "name": "X7", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 332, + "unique_ratio": 0.051875, + "example_values": [ + "-1", + "-2", + "5", + "-4", + "-82" + ] + } + }, + { + "name": "X8", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 330, + "unique_ratio": 0.051562, + "example_values": [ + "3", + "-3", + "9", + "-9", + "-51" + ] + } + }, + { + "name": "X9", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 333, + "unique_ratio": 0.052031, + "example_values": [ + "1", + "19", + "0", + "-1", + "-30" + ] + } + }, + { + "name": "X10", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 334, + "unique_ratio": 0.052187, + "example_values": [ + "4", + "10", + "9", + "3", + "-13" + ] + } + }, + { + "name": "X11", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 328, + "unique_ratio": 0.05125, + "example_values": [ + "-4", + "-3", + "-1", + "-7", + "-20" + ] + } + }, + { + "name": "X12", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 324, + "unique_ratio": 0.050625, + "example_values": [ + "-5", + "-11", + "0", + "4", + "-29" + ] + } + }, + { + "name": "X13", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 332, + "unique_ratio": 0.051875, + "example_values": [ + "4", + "-6", + "6", + "9", + "-38" + ] + } + }, + { + "name": "X14", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 318, + "unique_ratio": 0.049688, + "example_values": [ + "1", + "30", + "11", + "-5", + "-29" + ] + } + }, + { + "name": "X15", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 324, + "unique_ratio": 0.050625, + "example_values": [ + "-8", + "4", + "-9", + "-6", + "-15" + ] + } + }, + { + "name": "X16", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 325, + "unique_ratio": 0.050781, + "example_values": [ + "-1", + "-13", + "0", + "1", + "-23" + ] + } + }, + { + "name": "y", + "role": "target", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 4, + "unique_ratio": 0.000625, + "example_values": [ + "2", + "1", + "0", + "3" + ] + } + } + ] +} \ No newline at end of file diff --git a/timecost/n6/tabddpm/tabddpm-n6-20260429_052038/public_gate/public_gate_report.json b/timecost/n6/tabddpm/tabddpm-n6-20260429_052038/public_gate/public_gate_report.json new file mode 100644 index 0000000000000000000000000000000000000000..a228c993845322a7356eef31ebce756cb39378ed --- /dev/null +++ b/timecost/n6/tabddpm/tabddpm-n6-20260429_052038/public_gate/public_gate_report.json @@ -0,0 +1,37 @@ +{ + "dataset_id": "n6", + "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": "y", + "task_type": "classification", + "input_splits": { + "train": "/data/jialinzhang/SynthesizePipeline-server/DatasetNew/n6/n6-train.csv", + "val": "/data/jialinzhang/SynthesizePipeline-server/DatasetNew/n6/n6-val.csv", + "test": "/data/jialinzhang/SynthesizePipeline-server/DatasetNew/n6/n6-test.csv" + } +} \ No newline at end of file diff --git a/timecost/n6/tabddpm/tabddpm-n6-20260429_052038/public_gate/staged_input_manifest.json b/timecost/n6/tabddpm/tabddpm-n6-20260429_052038/public_gate/staged_input_manifest.json new file mode 100644 index 0000000000000000000000000000000000000000..9d02d52132e862d8ce01f2c4facf6212ccfe3897 --- /dev/null +++ b/timecost/n6/tabddpm/tabddpm-n6-20260429_052038/public_gate/staged_input_manifest.json @@ -0,0 +1,368 @@ +{ + "dataset_id": "n6", + "target_column": "y", + "task_type": "classification", + "train_csv": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/n6/tabddpm/tabddpm-n6-20260429_052038/staged/public/train.csv", + "val_csv": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/n6/tabddpm/tabddpm-n6-20260429_052038/staged/public/val.csv", + "test_csv": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/n6/tabddpm/tabddpm-n6-20260429_052038/staged/public/test.csv", + "features_json": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/n6/tabddpm/tabddpm-n6-20260429_052038/staged/public/staged_features.json", + "public_gate_report": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/n6/tabddpm/tabddpm-n6-20260429_052038/public_gate/public_gate_report.json", + "column_schema": [ + { + "name": "X1", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 313, + "unique_ratio": 0.048906, + "example_values": [ + "2", + "6", + "-2", + "-15", + "3" + ] + } + }, + { + "name": "X2", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 328, + "unique_ratio": 0.05125, + "example_values": [ + "-3", + "1", + "16", + "-4", + "-12" + ] + } + }, + { + "name": "X3", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 316, + "unique_ratio": 0.049375, + "example_values": [ + "-7", + "-6", + "3", + "-22", + "13" + ] + } + }, + { + "name": "X4", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 323, + "unique_ratio": 0.050469, + "example_values": [ + "-6", + "-7", + "5", + "-5", + "-37" + ] + } + }, + { + "name": "X5", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 325, + "unique_ratio": 0.050781, + "example_values": [ + "-9", + "2", + "-12", + "-8", + "-63" + ] + } + }, + { + "name": "X6", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 325, + "unique_ratio": 0.050781, + "example_values": [ + "-6", + "-5", + "11", + "0", + "-86" + ] + } + }, + { + "name": "X7", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 332, + "unique_ratio": 0.051875, + "example_values": [ + "-1", + "-2", + "5", + "-4", + "-82" + ] + } + }, + { + "name": "X8", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 330, + "unique_ratio": 0.051562, + "example_values": [ + "3", + "-3", + "9", + "-9", + "-51" + ] + } + }, + { + "name": "X9", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 333, + "unique_ratio": 0.052031, + "example_values": [ + "1", + "19", + "0", + "-1", + "-30" + ] + } + }, + { + "name": "X10", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 334, + "unique_ratio": 0.052187, + "example_values": [ + "4", + "10", + "9", + "3", + "-13" + ] + } + }, + { + "name": "X11", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 328, + "unique_ratio": 0.05125, + "example_values": [ + "-4", + "-3", + "-1", + "-7", + "-20" + ] + } + }, + { + "name": "X12", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 324, + "unique_ratio": 0.050625, + "example_values": [ + "-5", + "-11", + "0", + "4", + "-29" + ] + } + }, + { + "name": "X13", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 332, + "unique_ratio": 0.051875, + "example_values": [ + "4", + "-6", + "6", + "9", + "-38" + ] + } + }, + { + "name": "X14", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 318, + "unique_ratio": 0.049688, + "example_values": [ + "1", + "30", + "11", + "-5", + "-29" + ] + } + }, + { + "name": "X15", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 324, + "unique_ratio": 0.050625, + "example_values": [ + "-8", + "4", + "-9", + "-6", + "-15" + ] + } + }, + { + "name": "X16", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 325, + "unique_ratio": 0.050781, + "example_values": [ + "-1", + "-13", + "0", + "1", + "-23" + ] + } + }, + { + "name": "y", + "role": "target", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 4, + "unique_ratio": 0.000625, + "example_values": [ + "2", + "1", + "0", + "3" + ] + } + } + ] +} \ No newline at end of file diff --git a/timecost/n6/tabddpm/tabddpm-n6-20260429_052038/runtime_result.json b/timecost/n6/tabddpm/tabddpm-n6-20260429_052038/runtime_result.json new file mode 100644 index 0000000000000000000000000000000000000000..facaf09ac1d864701ca0d86b755533dd0bc87574 --- /dev/null +++ b/timecost/n6/tabddpm/tabddpm-n6-20260429_052038/runtime_result.json @@ -0,0 +1,15 @@ +{ + "dataset_id": "n6", + "model": "tabddpm", + "run_id": "tabddpm-n6-20260429_052038", + "public_gate_status": "pass", + "adapter_ready_status": "pass", + "train_status": "success", + "generate_status": "success", + "reason_code": null, + "reason_detail": null, + "artifacts": { + "synthetic_csv": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/n6/tabddpm/tabddpm-n6-20260429_052038/tabddpm-n6-6400-20260429_052109.csv", + "model_path": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/n6/tabddpm/tabddpm-n6-20260429_052038" + } +} \ No newline at end of file diff --git a/timecost/n6/tabddpm/tabddpm-n6-20260429_052038/staged/public/staged_features.json b/timecost/n6/tabddpm/tabddpm-n6-20260429_052038/staged/public/staged_features.json new file mode 100644 index 0000000000000000000000000000000000000000..13d0b8c66a07bb8f5aa06667e153a85656dae7d8 --- /dev/null +++ b/timecost/n6/tabddpm/tabddpm-n6-20260429_052038/staged/public/staged_features.json @@ -0,0 +1,87 @@ +[ + { + "feature_name": "X1", + "data_type": "continuous", + "is_target": false + }, + { + "feature_name": "X2", + "data_type": "continuous", + "is_target": false + }, + { + "feature_name": "X3", + "data_type": "continuous", + "is_target": false + }, + { + "feature_name": "X4", + "data_type": "continuous", + "is_target": false + }, + { + "feature_name": "X5", + "data_type": "continuous", + "is_target": false + }, + { + "feature_name": "X6", + "data_type": "continuous", + "is_target": false + }, + { + "feature_name": "X7", + "data_type": "continuous", + "is_target": false + }, + { + "feature_name": "X8", + "data_type": "continuous", + "is_target": false + }, + { + "feature_name": "X9", + "data_type": "continuous", + "is_target": false + }, + { + "feature_name": "X10", + "data_type": "continuous", + "is_target": false + }, + { + "feature_name": "X11", + "data_type": "continuous", + "is_target": false + }, + { + "feature_name": "X12", + "data_type": "continuous", + "is_target": false + }, + { + "feature_name": "X13", + "data_type": "continuous", + "is_target": false + }, + { + "feature_name": "X14", + "data_type": "continuous", + "is_target": false + }, + { + "feature_name": "X15", + "data_type": "continuous", + "is_target": false + }, + { + "feature_name": "X16", + "data_type": "continuous", + "is_target": false + }, + { + "feature_name": "y", + "data_type": "continuous", + "is_target": true + } +] \ No newline at end of file diff --git a/timecost/n6/tabddpm/tabddpm-n6-20260429_052038/staged/public/test.csv b/timecost/n6/tabddpm/tabddpm-n6-20260429_052038/staged/public/test.csv new file mode 100644 index 0000000000000000000000000000000000000000..64d039a1664b74ef81240a9ba69ab982a78be184 --- /dev/null +++ b/timecost/n6/tabddpm/tabddpm-n6-20260429_052038/staged/public/test.csv @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:f1922293e501d8f17f56a321a1305e44d20a6ad7ed67e97af754dea170989fc5 +size 39918 diff --git a/timecost/n6/tabddpm/tabddpm-n6-20260429_052038/staged/public/train.csv b/timecost/n6/tabddpm/tabddpm-n6-20260429_052038/staged/public/train.csv new file mode 100644 index 0000000000000000000000000000000000000000..25108968eaf2c7995080c74fba26ca496d015c72 --- /dev/null +++ b/timecost/n6/tabddpm/tabddpm-n6-20260429_052038/staged/public/train.csv @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:c8545a9761061bd99d67935948928e2840e6ae4b5c9760cad2de82198676db2b +size 316902 diff --git a/timecost/n6/tabddpm/tabddpm-n6-20260429_052038/staged/public/val.csv b/timecost/n6/tabddpm/tabddpm-n6-20260429_052038/staged/public/val.csv new file mode 100644 index 0000000000000000000000000000000000000000..933b52194b2ae481787d393e22f1a96acb482a5a --- /dev/null +++ b/timecost/n6/tabddpm/tabddpm-n6-20260429_052038/staged/public/val.csv @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:60a3dd7f655f8086e53402dcdcfa42297d586d8483f2afd6e1bbc6bd3521303f +size 39705 diff --git a/timecost/n6/tabddpm/tabddpm-n6-20260429_052038/staged/tabddpm/adapter_report.json b/timecost/n6/tabddpm/tabddpm-n6-20260429_052038/staged/tabddpm/adapter_report.json new file mode 100644 index 0000000000000000000000000000000000000000..24d3a7828af92559fa1d4de90cbf64edd6afcaa9 --- /dev/null +++ b/timecost/n6/tabddpm/tabddpm-n6-20260429_052038/staged/tabddpm/adapter_report.json @@ -0,0 +1,7 @@ +{ + "adapter_ready_status": "pass", + "adapter_fail_reason_code": null, + "adapter_fail_detail": null, + "adapter_transforms_applied": [], + "model_input_manifest": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/n6/tabddpm/tabddpm-n6-20260429_052038/staged/tabddpm/model_input_manifest.json" +} \ No newline at end of file diff --git a/timecost/n6/tabddpm/tabddpm-n6-20260429_052038/staged/tabddpm/adapter_transforms_applied.json b/timecost/n6/tabddpm/tabddpm-n6-20260429_052038/staged/tabddpm/adapter_transforms_applied.json new file mode 100644 index 0000000000000000000000000000000000000000..0637a088a01e8ddab3bf3fa98dbe804cbde1a0dc --- /dev/null +++ b/timecost/n6/tabddpm/tabddpm-n6-20260429_052038/staged/tabddpm/adapter_transforms_applied.json @@ -0,0 +1 @@ +[] \ No newline at end of file diff --git a/timecost/n6/tabddpm/tabddpm-n6-20260429_052038/staged/tabddpm/model_input_manifest.json b/timecost/n6/tabddpm/tabddpm-n6-20260429_052038/staged/tabddpm/model_input_manifest.json new file mode 100644 index 0000000000000000000000000000000000000000..7df42495f7c86b39dbd9a9a5b5c39e124fde61c5 --- /dev/null +++ b/timecost/n6/tabddpm/tabddpm-n6-20260429_052038/staged/tabddpm/model_input_manifest.json @@ -0,0 +1,370 @@ +{ + "dataset_id": "n6", + "model": "tabddpm", + "target_column": "y", + "task_type": "classification", + "column_schema": [ + { + "name": "X1", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 313, + "unique_ratio": 0.048906, + "example_values": [ + "2", + "6", + "-2", + "-15", + "3" + ] + } + }, + { + "name": "X2", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 328, + "unique_ratio": 0.05125, + "example_values": [ + "-3", + "1", + "16", + "-4", + "-12" + ] + } + }, + { + "name": "X3", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 316, + "unique_ratio": 0.049375, + "example_values": [ + "-7", + "-6", + "3", + "-22", + "13" + ] + } + }, + { + "name": "X4", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 323, + "unique_ratio": 0.050469, + "example_values": [ + "-6", + "-7", + "5", + "-5", + "-37" + ] + } + }, + { + "name": "X5", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 325, + "unique_ratio": 0.050781, + "example_values": [ + "-9", + "2", + "-12", + "-8", + "-63" + ] + } + }, + { + "name": "X6", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 325, + "unique_ratio": 0.050781, + "example_values": [ + "-6", + "-5", + "11", + "0", + "-86" + ] + } + }, + { + "name": "X7", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 332, + "unique_ratio": 0.051875, + "example_values": [ + "-1", + "-2", + "5", + "-4", + "-82" + ] + } + }, + { + "name": "X8", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 330, + "unique_ratio": 0.051562, + "example_values": [ + "3", + "-3", + "9", + "-9", + "-51" + ] + } + }, + { + "name": "X9", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 333, + "unique_ratio": 0.052031, + "example_values": [ + "1", + "19", + "0", + "-1", + "-30" + ] + } + }, + { + "name": "X10", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 334, + "unique_ratio": 0.052187, + "example_values": [ + "4", + "10", + "9", + "3", + "-13" + ] + } + }, + { + "name": "X11", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 328, + "unique_ratio": 0.05125, + "example_values": [ + "-4", + "-3", + "-1", + "-7", + "-20" + ] + } + }, + { + "name": "X12", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 324, + "unique_ratio": 0.050625, + "example_values": [ + "-5", + "-11", + "0", + "4", + "-29" + ] + } + }, + { + "name": "X13", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 332, + "unique_ratio": 0.051875, + "example_values": [ + "4", + "-6", + "6", + "9", + "-38" + ] + } + }, + { + "name": "X14", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 318, + "unique_ratio": 0.049688, + "example_values": [ + "1", + "30", + "11", + "-5", + "-29" + ] + } + }, + { + "name": "X15", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 324, + "unique_ratio": 0.050625, + "example_values": [ + "-8", + "4", + "-9", + "-6", + "-15" + ] + } + }, + { + "name": "X16", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 325, + "unique_ratio": 0.050781, + "example_values": [ + "-1", + "-13", + "0", + "1", + "-23" + ] + } + }, + { + "name": "y", + "role": "target", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 4, + "unique_ratio": 0.000625, + "example_values": [ + "2", + "1", + "0", + "3" + ] + } + } + ], + "public_manifest": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/n6/tabddpm/tabddpm-n6-20260429_052038/public_gate/staged_input_manifest.json", + "train_csv": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/n6/tabddpm/tabddpm-n6-20260429_052038/staged/public/train.csv", + "val_csv": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/n6/tabddpm/tabddpm-n6-20260429_052038/staged/public/val.csv", + "test_csv": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/n6/tabddpm/tabddpm-n6-20260429_052038/staged/public/test.csv", + "features_json": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/n6/tabddpm/tabddpm-n6-20260429_052038/staged/public/staged_features.json", + "public_gate_report": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/n6/tabddpm/tabddpm-n6-20260429_052038/public_gate/public_gate_report.json" +} \ No newline at end of file diff --git a/timecost/n6/tabddpm/tabddpm-n6-20260429_052038/tabddpm-n6-6400-20260429_052109.csv b/timecost/n6/tabddpm/tabddpm-n6-20260429_052038/tabddpm-n6-6400-20260429_052109.csv new file mode 100644 index 0000000000000000000000000000000000000000..7dc1caf2f3f8190778664c93d4daf6ac9a416b54 --- /dev/null +++ b/timecost/n6/tabddpm/tabddpm-n6-20260429_052038/tabddpm-n6-6400-20260429_052109.csv @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:6e8789ce89518d2fc76b92e8c9e62be0592c65bde69771b7c70c96b08c774076 +size 1071944 diff --git a/timecost/n6/tabddpm/tabddpm-n6-20260429_052038/train_20260429_052038.log b/timecost/n6/tabddpm/tabddpm-n6-20260429_052038/train_20260429_052038.log new file mode 100644 index 0000000000000000000000000000000000000000..c7312dbd4e5f46ba26b30e0e9e4893cbb76fa833 --- /dev/null +++ b/timecost/n6/tabddpm/tabddpm-n6-20260429_052038/train_20260429_052038.log @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:21c37f6a1a0f20f1be0cc8a5c92d98655d87cd48206c29deb90c05d35105611f +size 1066 diff --git a/timecost/n6/tabdiff/tabdiff-n6-20260429_041029/_tabdiff_gen.py b/timecost/n6/tabdiff/tabdiff-n6-20260429_041029/_tabdiff_gen.py new file mode 100644 index 0000000000000000000000000000000000000000..1908fdbb327fcc5da55f1c86215db91bc4f31217 --- /dev/null +++ b/timecost/n6/tabdiff/tabdiff-n6-20260429_041029/_tabdiff_gen.py @@ -0,0 +1,36 @@ + +import os, shutil, subprocess, sys +td = r"/workspace/TabDiff" +name = r"pipeline_n6" +src = r"/work/output-Benchmark-trainonly-v1/n6/tabdiff/tabdiff-n6-20260429_041029/tabular_bundle/pipeline_n6" +dst_data = os.path.join(td, "data", name) +dst_syn = os.path.join(td, "synthetic", name) +shutil.rmtree(dst_data, ignore_errors=True) +shutil.copytree(src, dst_data) +os.makedirs(dst_syn, exist_ok=True) +for fn in ("real.csv", "test.csv", "val.csv"): + shutil.copy(os.path.join(src, fn), os.path.join(dst_syn, fn)) +os.chdir(td) +os.environ["PYTHONPATH"] = td + os.pathsep + os.environ.get("PYTHONPATH", "") +subprocess.check_call([ + sys.executable, "-m", "tabdiff.main", + "--dataname", name, "--mode", "test", "--gpu", "0", + "--no_wandb", "--exp_name", r"adapter_learnable", + "--ckpt_path", r"/workspace/TabDiff/tabdiff/ckpt/pipeline_n6/adapter_learnable/model_500.pt", + "--num_samples_to_generate", str(int(6400)), +]) +# test() 写入 tabdiff/result////samples.csv +import glob as g +base = os.path.join(td, "tabdiff", "result", name, r"adapter_learnable") +best = None +best_t = -1.0 +for root, _, files in os.walk(base): + if "samples.csv" in files: + p = os.path.join(root, "samples.csv") + t = os.path.getmtime(p) + if t > best_t: + best_t = t + best = p +if not best: + raise SystemExit("tabdiff: no samples.csv under " + base) +shutil.copy(best, r"/work/output-Benchmark-trainonly-v1/n6/tabdiff/tabdiff-n6-20260429_041029/tabdiff-n6-6400-20260429_042528.csv") diff --git a/timecost/n6/tabdiff/tabdiff-n6-20260429_041029/_tabdiff_train.py b/timecost/n6/tabdiff/tabdiff-n6-20260429_041029/_tabdiff_train.py new file mode 100644 index 0000000000000000000000000000000000000000..aff1ad2b168d6a006f405c30b75b96ac640db953 --- /dev/null +++ b/timecost/n6/tabdiff/tabdiff-n6-20260429_041029/_tabdiff_train.py @@ -0,0 +1,21 @@ + +import os, shutil, subprocess, sys +td = r"/workspace/TabDiff" +name = r"pipeline_n6" +src = r"/work/output-Benchmark-trainonly-v1/n6/tabdiff/tabdiff-n6-20260429_041029/tabular_bundle/pipeline_n6" +dst_data = os.path.join(td, "data", name) +dst_syn = os.path.join(td, "synthetic", name) +shutil.rmtree(dst_data, ignore_errors=True) +shutil.copytree(src, dst_data) +os.makedirs(dst_syn, exist_ok=True) +for fn in ("real.csv", "test.csv", "val.csv"): + shutil.copy(os.path.join(src, fn), os.path.join(dst_syn, fn)) +os.chdir(td) +os.environ["PYTHONPATH"] = td + os.pathsep + os.environ.get("PYTHONPATH", "") +os.environ["TABDIFF_SMOKE_STEPS"] = "500" +os.environ["TABDIFF_ADAPTER_TRAIN"] = "1" +subprocess.check_call([ + sys.executable, "-m", "tabdiff.main", + "--dataname", name, "--mode", "train", "--gpu", "0", + "--no_wandb", "--exp_name", r"adapter_learnable", +]) diff --git a/timecost/n6/tabdiff/tabdiff-n6-20260429_041029/gen_20260429_042528.log b/timecost/n6/tabdiff/tabdiff-n6-20260429_041029/gen_20260429_042528.log new file mode 100644 index 0000000000000000000000000000000000000000..2957adae4706b2370e748dd451182f210409f717 --- /dev/null +++ b/timecost/n6/tabdiff/tabdiff-n6-20260429_041029/gen_20260429_042528.log @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:5a44e6efc4a2b69c9c2e9c51e4b2922ba6180b8973a80b5760f74fbcf17effae +size 4617 diff --git a/timecost/n6/tabdiff/tabdiff-n6-20260429_041029/input_snapshot.json b/timecost/n6/tabdiff/tabdiff-n6-20260429_041029/input_snapshot.json new file mode 100644 index 0000000000000000000000000000000000000000..e7442d7a7b754df9e3f8cc34ca258aaf5d2c1ae2 --- /dev/null +++ b/timecost/n6/tabdiff/tabdiff-n6-20260429_041029/input_snapshot.json @@ -0,0 +1,36 @@ +{ + "dataset_id": "n6", + "model": "tabdiff", + "inputs": { + "train_csv": { + "path": "/data/jialinzhang/SynthesizePipeline-server/DatasetNew/n6/n6-train.csv", + "exists": true, + "size": 323303, + "sha256": "3b9d646393340b4c636db7686f2313521d84434e99ac1316b1053b05c995a3b1" + }, + "val_csv": { + "path": "/data/jialinzhang/SynthesizePipeline-server/DatasetNew/n6/n6-val.csv", + "exists": true, + "size": 40506, + "sha256": "74a01693febbfda57225ebbec2f7a9c22a2136edbec694b108b50c013cd6fe9d" + }, + "test_csv": { + "path": "/data/jialinzhang/SynthesizePipeline-server/DatasetNew/n6/n6-test.csv", + "exists": true, + "size": 40719, + "sha256": "46f32b813d7849636da5a0a7aa560ea062b8f5765772dc1a8268f756cdb2fbcc" + }, + "profile_json": { + "path": "/data/jialinzhang/SynthesizePipeline-server/DatasetNew/artifacts/data_core/tabular/n6/n6-dataset_profile.json", + "exists": true, + "size": 6559, + "sha256": "c3a4ba3662399f797ed5ac4ea171e2991e3f3ac9ea221ba345c132e11450d759" + }, + "contract_json": { + "path": "/data/jialinzhang/SynthesizePipeline-server/DatasetNew/artifacts/data_core/tabular/n6/n6-dataset_contract_v1.json", + "exists": true, + "size": 8304, + "sha256": "979119ea8d3be4588170ff59aa802156a0a5ecaf4312599a8b2998d38b69fba5" + } + } +} \ No newline at end of file diff --git a/timecost/n6/tabdiff/tabdiff-n6-20260429_041029/models_tabdiff/trained.pt b/timecost/n6/tabdiff/tabdiff-n6-20260429_041029/models_tabdiff/trained.pt new file mode 100644 index 0000000000000000000000000000000000000000..bc319a55a9c7152a1137f968b6fa1c735125ad11 --- /dev/null +++ b/timecost/n6/tabdiff/tabdiff-n6-20260429_041029/models_tabdiff/trained.pt @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:306660b8aad4549267c68390b017e15ddb9bc06a02c80515eb72a97ae31a81eb +size 74 diff --git a/timecost/n6/tabdiff/tabdiff-n6-20260429_041029/public_gate/normalized_schema_snapshot.json b/timecost/n6/tabdiff/tabdiff-n6-20260429_041029/public_gate/normalized_schema_snapshot.json new file mode 100644 index 0000000000000000000000000000000000000000..f37e46415bf96a79860f8cd9cdbfb764f9fbd0cb --- /dev/null +++ b/timecost/n6/tabdiff/tabdiff-n6-20260429_041029/public_gate/normalized_schema_snapshot.json @@ -0,0 +1,363 @@ +{ + "dataset_id": "n6", + "target_column": "y", + "task_type": "classification", + "columns": [ + { + "name": "X1", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 313, + "unique_ratio": 0.048906, + "example_values": [ + "2", + "6", + "-2", + "-15", + "3" + ] + } + }, + { + "name": "X2", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 328, + "unique_ratio": 0.05125, + "example_values": [ + "-3", + "1", + "16", + "-4", + "-12" + ] + } + }, + { + "name": "X3", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 316, + "unique_ratio": 0.049375, + "example_values": [ + "-7", + "-6", + "3", + "-22", + "13" + ] + } + }, + { + "name": "X4", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 323, + "unique_ratio": 0.050469, + "example_values": [ + "-6", + "-7", + "5", + "-5", + "-37" + ] + } + }, + { + "name": "X5", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 325, + "unique_ratio": 0.050781, + "example_values": [ + "-9", + "2", + "-12", + "-8", + "-63" + ] + } + }, + { + "name": "X6", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 325, + "unique_ratio": 0.050781, + "example_values": [ + "-6", + "-5", + "11", + "0", + "-86" + ] + } + }, + { + "name": "X7", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 332, + "unique_ratio": 0.051875, + "example_values": [ + "-1", + "-2", + "5", + "-4", + "-82" + ] + } + }, + { + "name": "X8", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 330, + "unique_ratio": 0.051562, + "example_values": [ + "3", + "-3", + "9", + "-9", + "-51" + ] + } + }, + { + "name": "X9", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 333, + "unique_ratio": 0.052031, + "example_values": [ + "1", + "19", + "0", + "-1", + "-30" + ] + } + }, + { + "name": "X10", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 334, + "unique_ratio": 0.052187, + "example_values": [ + "4", + "10", + "9", + "3", + "-13" + ] + } + }, + { + "name": "X11", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 328, + "unique_ratio": 0.05125, + "example_values": [ + "-4", + "-3", + "-1", + "-7", + "-20" + ] + } + }, + { + "name": "X12", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 324, + "unique_ratio": 0.050625, + "example_values": [ + "-5", + "-11", + "0", + "4", + "-29" + ] + } + }, + { + "name": "X13", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 332, + "unique_ratio": 0.051875, + "example_values": [ + "4", + "-6", + "6", + "9", + "-38" + ] + } + }, + { + "name": "X14", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 318, + "unique_ratio": 0.049688, + "example_values": [ + "1", + "30", + "11", + "-5", + "-29" + ] + } + }, + { + "name": "X15", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 324, + "unique_ratio": 0.050625, + "example_values": [ + "-8", + "4", + "-9", + "-6", + "-15" + ] + } + }, + { + "name": "X16", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 325, + "unique_ratio": 0.050781, + "example_values": [ + "-1", + "-13", + "0", + "1", + "-23" + ] + } + }, + { + "name": "y", + "role": "target", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 4, + "unique_ratio": 0.000625, + "example_values": [ + "2", + "1", + "0", + "3" + ] + } + } + ] +} \ No newline at end of file diff --git a/timecost/n6/tabdiff/tabdiff-n6-20260429_041029/public_gate/public_gate_report.json b/timecost/n6/tabdiff/tabdiff-n6-20260429_041029/public_gate/public_gate_report.json new file mode 100644 index 0000000000000000000000000000000000000000..a228c993845322a7356eef31ebce756cb39378ed --- /dev/null +++ b/timecost/n6/tabdiff/tabdiff-n6-20260429_041029/public_gate/public_gate_report.json @@ -0,0 +1,37 @@ +{ + "dataset_id": "n6", + "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": "y", + "task_type": "classification", + "input_splits": { + "train": "/data/jialinzhang/SynthesizePipeline-server/DatasetNew/n6/n6-train.csv", + "val": "/data/jialinzhang/SynthesizePipeline-server/DatasetNew/n6/n6-val.csv", + "test": "/data/jialinzhang/SynthesizePipeline-server/DatasetNew/n6/n6-test.csv" + } +} \ No newline at end of file diff --git a/timecost/n6/tabdiff/tabdiff-n6-20260429_041029/public_gate/staged_input_manifest.json b/timecost/n6/tabdiff/tabdiff-n6-20260429_041029/public_gate/staged_input_manifest.json new file mode 100644 index 0000000000000000000000000000000000000000..0fbfb1553426075181dd0a29ea6c151e3fc5e64d --- /dev/null +++ b/timecost/n6/tabdiff/tabdiff-n6-20260429_041029/public_gate/staged_input_manifest.json @@ -0,0 +1,368 @@ +{ + "dataset_id": "n6", + "target_column": "y", + "task_type": "classification", + "train_csv": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/n6/tabdiff/tabdiff-n6-20260429_041029/staged/public/train.csv", + "val_csv": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/n6/tabdiff/tabdiff-n6-20260429_041029/staged/public/val.csv", + "test_csv": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/n6/tabdiff/tabdiff-n6-20260429_041029/staged/public/test.csv", + "features_json": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/n6/tabdiff/tabdiff-n6-20260429_041029/staged/public/staged_features.json", + "public_gate_report": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/n6/tabdiff/tabdiff-n6-20260429_041029/public_gate/public_gate_report.json", + "column_schema": [ + { + "name": "X1", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 313, + "unique_ratio": 0.048906, + "example_values": [ + "2", + "6", + "-2", + "-15", + "3" + ] + } + }, + { + "name": "X2", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 328, + "unique_ratio": 0.05125, + "example_values": [ + "-3", + "1", + "16", + "-4", + "-12" + ] + } + }, + { + "name": "X3", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 316, + "unique_ratio": 0.049375, + "example_values": [ + "-7", + "-6", + "3", + "-22", + "13" + ] + } + }, + { + "name": "X4", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 323, + "unique_ratio": 0.050469, + "example_values": [ + "-6", + "-7", + "5", + "-5", + "-37" + ] + } + }, + { + "name": "X5", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 325, + "unique_ratio": 0.050781, + "example_values": [ + "-9", + "2", + "-12", + "-8", + "-63" + ] + } + }, + { + "name": "X6", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 325, + "unique_ratio": 0.050781, + "example_values": [ + "-6", + "-5", + "11", + "0", + "-86" + ] + } + }, + { + "name": "X7", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 332, + "unique_ratio": 0.051875, + "example_values": [ + "-1", + "-2", + "5", + "-4", + "-82" + ] + } + }, + { + "name": "X8", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 330, + "unique_ratio": 0.051562, + "example_values": [ + "3", + "-3", + "9", + "-9", + "-51" + ] + } + }, + { + "name": "X9", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 333, + "unique_ratio": 0.052031, + "example_values": [ + "1", + "19", + "0", + "-1", + "-30" + ] + } + }, + { + "name": "X10", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 334, + "unique_ratio": 0.052187, + "example_values": [ + "4", + "10", + "9", + "3", + "-13" + ] + } + }, + { + "name": "X11", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 328, + "unique_ratio": 0.05125, + "example_values": [ + "-4", + "-3", + "-1", + "-7", + "-20" + ] + } + }, + { + "name": "X12", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 324, + "unique_ratio": 0.050625, + "example_values": [ + "-5", + "-11", + "0", + "4", + "-29" + ] + } + }, + { + "name": "X13", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 332, + "unique_ratio": 0.051875, + "example_values": [ + "4", + "-6", + "6", + "9", + "-38" + ] + } + }, + { + "name": "X14", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 318, + "unique_ratio": 0.049688, + "example_values": [ + "1", + "30", + "11", + "-5", + "-29" + ] + } + }, + { + "name": "X15", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 324, + "unique_ratio": 0.050625, + "example_values": [ + "-8", + "4", + "-9", + "-6", + "-15" + ] + } + }, + { + "name": "X16", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 325, + "unique_ratio": 0.050781, + "example_values": [ + "-1", + "-13", + "0", + "1", + "-23" + ] + } + }, + { + "name": "y", + "role": "target", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 4, + "unique_ratio": 0.000625, + "example_values": [ + "2", + "1", + "0", + "3" + ] + } + } + ] +} \ No newline at end of file diff --git a/timecost/n6/tabdiff/tabdiff-n6-20260429_041029/runtime_result.json b/timecost/n6/tabdiff/tabdiff-n6-20260429_041029/runtime_result.json new file mode 100644 index 0000000000000000000000000000000000000000..aef89ae6dcd00e21b828d0b95944ac3be73af214 --- /dev/null +++ b/timecost/n6/tabdiff/tabdiff-n6-20260429_041029/runtime_result.json @@ -0,0 +1,15 @@ +{ + "dataset_id": "n6", + "model": "tabdiff", + "run_id": "tabdiff-n6-20260429_041029", + "public_gate_status": "pass", + "adapter_ready_status": "pass", + "train_status": "success", + "generate_status": "success", + "reason_code": null, + "reason_detail": null, + "artifacts": { + "synthetic_csv": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/n6/tabdiff/tabdiff-n6-20260429_041029/tabdiff-n6-6400-20260429_042528.csv", + "model_path": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/n6/tabdiff/tabdiff-n6-20260429_041029/models_tabdiff/trained.pt" + } +} \ No newline at end of file diff --git a/timecost/n6/tabdiff/tabdiff-n6-20260429_041029/staged/public/staged_features.json b/timecost/n6/tabdiff/tabdiff-n6-20260429_041029/staged/public/staged_features.json new file mode 100644 index 0000000000000000000000000000000000000000..13d0b8c66a07bb8f5aa06667e153a85656dae7d8 --- /dev/null +++ b/timecost/n6/tabdiff/tabdiff-n6-20260429_041029/staged/public/staged_features.json @@ -0,0 +1,87 @@ +[ + { + "feature_name": "X1", + "data_type": "continuous", + "is_target": false + }, + { + "feature_name": "X2", + "data_type": "continuous", + "is_target": false + }, + { + "feature_name": "X3", + "data_type": "continuous", + "is_target": false + }, + { + "feature_name": "X4", + "data_type": "continuous", + "is_target": false + }, + { + "feature_name": "X5", + "data_type": "continuous", + "is_target": false + }, + { + "feature_name": "X6", + "data_type": "continuous", + "is_target": false + }, + { + "feature_name": "X7", + "data_type": "continuous", + "is_target": false + }, + { + "feature_name": "X8", + "data_type": "continuous", + "is_target": false + }, + { + "feature_name": "X9", + "data_type": "continuous", + "is_target": false + }, + { + "feature_name": "X10", + "data_type": "continuous", + "is_target": false + }, + { + "feature_name": "X11", + "data_type": "continuous", + "is_target": false + }, + { + "feature_name": "X12", + "data_type": "continuous", + "is_target": false + }, + { + "feature_name": "X13", + "data_type": "continuous", + "is_target": false + }, + { + "feature_name": "X14", + "data_type": "continuous", + "is_target": false + }, + { + "feature_name": "X15", + "data_type": "continuous", + "is_target": false + }, + { + "feature_name": "X16", + "data_type": "continuous", + "is_target": false + }, + { + "feature_name": "y", + "data_type": "continuous", + "is_target": true + } +] \ No newline at end of file diff --git a/timecost/n6/tabdiff/tabdiff-n6-20260429_041029/staged/public/test.csv b/timecost/n6/tabdiff/tabdiff-n6-20260429_041029/staged/public/test.csv new file mode 100644 index 0000000000000000000000000000000000000000..64d039a1664b74ef81240a9ba69ab982a78be184 --- /dev/null +++ b/timecost/n6/tabdiff/tabdiff-n6-20260429_041029/staged/public/test.csv @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:f1922293e501d8f17f56a321a1305e44d20a6ad7ed67e97af754dea170989fc5 +size 39918 diff --git a/timecost/n6/tabdiff/tabdiff-n6-20260429_041029/staged/public/train.csv b/timecost/n6/tabdiff/tabdiff-n6-20260429_041029/staged/public/train.csv new file mode 100644 index 0000000000000000000000000000000000000000..25108968eaf2c7995080c74fba26ca496d015c72 --- /dev/null +++ b/timecost/n6/tabdiff/tabdiff-n6-20260429_041029/staged/public/train.csv @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:c8545a9761061bd99d67935948928e2840e6ae4b5c9760cad2de82198676db2b +size 316902 diff --git a/timecost/n6/tabdiff/tabdiff-n6-20260429_041029/staged/public/val.csv b/timecost/n6/tabdiff/tabdiff-n6-20260429_041029/staged/public/val.csv new file mode 100644 index 0000000000000000000000000000000000000000..933b52194b2ae481787d393e22f1a96acb482a5a --- /dev/null +++ b/timecost/n6/tabdiff/tabdiff-n6-20260429_041029/staged/public/val.csv @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:60a3dd7f655f8086e53402dcdcfa42297d586d8483f2afd6e1bbc6bd3521303f +size 39705 diff --git a/timecost/n6/tabdiff/tabdiff-n6-20260429_041029/staged/tabdiff/adapter_report.json b/timecost/n6/tabdiff/tabdiff-n6-20260429_041029/staged/tabdiff/adapter_report.json new file mode 100644 index 0000000000000000000000000000000000000000..42b19879bc8e005df8c8ba482a1093e00eafc1ea --- /dev/null +++ b/timecost/n6/tabdiff/tabdiff-n6-20260429_041029/staged/tabdiff/adapter_report.json @@ -0,0 +1,7 @@ +{ + "adapter_ready_status": "pass", + "adapter_fail_reason_code": null, + "adapter_fail_detail": null, + "adapter_transforms_applied": [], + "model_input_manifest": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/n6/tabdiff/tabdiff-n6-20260429_041029/staged/tabdiff/model_input_manifest.json" +} \ No newline at end of file diff --git a/timecost/n6/tabdiff/tabdiff-n6-20260429_041029/staged/tabdiff/adapter_transforms_applied.json b/timecost/n6/tabdiff/tabdiff-n6-20260429_041029/staged/tabdiff/adapter_transforms_applied.json new file mode 100644 index 0000000000000000000000000000000000000000..0637a088a01e8ddab3bf3fa98dbe804cbde1a0dc --- /dev/null +++ b/timecost/n6/tabdiff/tabdiff-n6-20260429_041029/staged/tabdiff/adapter_transforms_applied.json @@ -0,0 +1 @@ +[] \ No newline at end of file diff --git a/timecost/n6/tabdiff/tabdiff-n6-20260429_041029/staged/tabdiff/model_input_manifest.json b/timecost/n6/tabdiff/tabdiff-n6-20260429_041029/staged/tabdiff/model_input_manifest.json new file mode 100644 index 0000000000000000000000000000000000000000..9a1ad92878b8d4e18487fe8eb4f535c8b61d7faa --- /dev/null +++ b/timecost/n6/tabdiff/tabdiff-n6-20260429_041029/staged/tabdiff/model_input_manifest.json @@ -0,0 +1,370 @@ +{ + "dataset_id": "n6", + "model": "tabdiff", + "target_column": "y", + "task_type": "classification", + "column_schema": [ + { + "name": "X1", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 313, + "unique_ratio": 0.048906, + "example_values": [ + "2", + "6", + "-2", + "-15", + "3" + ] + } + }, + { + "name": "X2", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 328, + "unique_ratio": 0.05125, + "example_values": [ + "-3", + "1", + "16", + "-4", + "-12" + ] + } + }, + { + "name": "X3", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 316, + "unique_ratio": 0.049375, + "example_values": [ + "-7", + "-6", + "3", + "-22", + "13" + ] + } + }, + { + "name": "X4", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 323, + "unique_ratio": 0.050469, + "example_values": [ + "-6", + "-7", + "5", + "-5", + "-37" + ] + } + }, + { + "name": "X5", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 325, + "unique_ratio": 0.050781, + "example_values": [ + "-9", + "2", + "-12", + "-8", + "-63" + ] + } + }, + { + "name": "X6", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 325, + "unique_ratio": 0.050781, + "example_values": [ + "-6", + "-5", + "11", + "0", + "-86" + ] + } + }, + { + "name": "X7", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 332, + "unique_ratio": 0.051875, + "example_values": [ + "-1", + "-2", + "5", + "-4", + "-82" + ] + } + }, + { + "name": "X8", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 330, + "unique_ratio": 0.051562, + "example_values": [ + "3", + "-3", + "9", + "-9", + "-51" + ] + } + }, + { + "name": "X9", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 333, + "unique_ratio": 0.052031, + "example_values": [ + "1", + "19", + "0", + "-1", + "-30" + ] + } + }, + { + "name": "X10", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 334, + "unique_ratio": 0.052187, + "example_values": [ + "4", + "10", + "9", + "3", + "-13" + ] + } + }, + { + "name": "X11", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 328, + "unique_ratio": 0.05125, + "example_values": [ + "-4", + "-3", + "-1", + "-7", + "-20" + ] + } + }, + { + "name": "X12", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 324, + "unique_ratio": 0.050625, + "example_values": [ + "-5", + "-11", + "0", + "4", + "-29" + ] + } + }, + { + "name": "X13", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 332, + "unique_ratio": 0.051875, + "example_values": [ + "4", + "-6", + "6", + "9", + "-38" + ] + } + }, + { + "name": "X14", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 318, + "unique_ratio": 0.049688, + "example_values": [ + "1", + "30", + "11", + "-5", + "-29" + ] + } + }, + { + "name": "X15", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 324, + "unique_ratio": 0.050625, + "example_values": [ + "-8", + "4", + "-9", + "-6", + "-15" + ] + } + }, + { + "name": "X16", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 325, + "unique_ratio": 0.050781, + "example_values": [ + "-1", + "-13", + "0", + "1", + "-23" + ] + } + }, + { + "name": "y", + "role": "target", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 4, + "unique_ratio": 0.000625, + "example_values": [ + "2", + "1", + "0", + "3" + ] + } + } + ], + "public_manifest": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/n6/tabdiff/tabdiff-n6-20260429_041029/public_gate/staged_input_manifest.json", + "train_csv": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/n6/tabdiff/tabdiff-n6-20260429_041029/staged/public/train.csv", + "val_csv": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/n6/tabdiff/tabdiff-n6-20260429_041029/staged/public/val.csv", + "test_csv": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/n6/tabdiff/tabdiff-n6-20260429_041029/staged/public/test.csv", + "features_json": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/n6/tabdiff/tabdiff-n6-20260429_041029/staged/public/staged_features.json", + "public_gate_report": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/n6/tabdiff/tabdiff-n6-20260429_041029/public_gate/public_gate_report.json" +} \ No newline at end of file diff --git a/timecost/n6/tabdiff/tabdiff-n6-20260429_041029/tabdiff-n6-6400-20260429_042528.csv b/timecost/n6/tabdiff/tabdiff-n6-20260429_041029/tabdiff-n6-6400-20260429_042528.csv new file mode 100644 index 0000000000000000000000000000000000000000..d0bd74fa4a2944edb442e17410c5a43edf3a3c1a --- /dev/null +++ b/timecost/n6/tabdiff/tabdiff-n6-20260429_041029/tabdiff-n6-6400-20260429_042528.csv @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:0da01f58364c475cec5c698f7aaa3fcc917c0be6f6edb840b0ca5869ec2bd7a3 +size 735265 diff --git a/timecost/n6/tabdiff/tabdiff-n6-20260429_041029/tabdiff_train_meta.json b/timecost/n6/tabdiff/tabdiff-n6-20260429_041029/tabdiff_train_meta.json new file mode 100644 index 0000000000000000000000000000000000000000..97143acf79d92b3f6ad0cafdd8f418abd8cfe858 --- /dev/null +++ b/timecost/n6/tabdiff/tabdiff-n6-20260429_041029/tabdiff_train_meta.json @@ -0,0 +1,5 @@ +{ + "exp_name": "adapter_learnable", + "dataname": "pipeline_n6", + "steps": 500 +} \ No newline at end of file diff --git a/timecost/n6/tabdiff/tabdiff-n6-20260429_041029/tabular_bundle/pipeline_n6/X_cat_test.npy b/timecost/n6/tabdiff/tabdiff-n6-20260429_041029/tabular_bundle/pipeline_n6/X_cat_test.npy new file mode 100644 index 0000000000000000000000000000000000000000..136aea2b11e9f3dae96425d68d93f57f0261d965 --- /dev/null +++ b/timecost/n6/tabdiff/tabdiff-n6-20260429_041029/tabular_bundle/pipeline_n6/X_cat_test.npy @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:1f36bc04fd4784bdd71cdf76db3bc10e00251759c48d501d1d7b5437ff785c82 +size 128 diff --git a/timecost/n6/tabdiff/tabdiff-n6-20260429_041029/tabular_bundle/pipeline_n6/X_cat_train.npy b/timecost/n6/tabdiff/tabdiff-n6-20260429_041029/tabular_bundle/pipeline_n6/X_cat_train.npy new file mode 100644 index 0000000000000000000000000000000000000000..136aea2b11e9f3dae96425d68d93f57f0261d965 --- /dev/null +++ b/timecost/n6/tabdiff/tabdiff-n6-20260429_041029/tabular_bundle/pipeline_n6/X_cat_train.npy @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:1f36bc04fd4784bdd71cdf76db3bc10e00251759c48d501d1d7b5437ff785c82 +size 128 diff --git a/timecost/n6/tabdiff/tabdiff-n6-20260429_041029/tabular_bundle/pipeline_n6/X_cat_val.npy b/timecost/n6/tabdiff/tabdiff-n6-20260429_041029/tabular_bundle/pipeline_n6/X_cat_val.npy new file mode 100644 index 0000000000000000000000000000000000000000..136aea2b11e9f3dae96425d68d93f57f0261d965 --- /dev/null +++ b/timecost/n6/tabdiff/tabdiff-n6-20260429_041029/tabular_bundle/pipeline_n6/X_cat_val.npy @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:1f36bc04fd4784bdd71cdf76db3bc10e00251759c48d501d1d7b5437ff785c82 +size 128 diff --git a/timecost/n6/tabdiff/tabdiff-n6-20260429_041029/tabular_bundle/pipeline_n6/X_num_test.npy b/timecost/n6/tabdiff/tabdiff-n6-20260429_041029/tabular_bundle/pipeline_n6/X_num_test.npy new file mode 100644 index 0000000000000000000000000000000000000000..def13e7d3573d9da1f67050d7e4ce6241fc9d1e5 --- /dev/null +++ b/timecost/n6/tabdiff/tabdiff-n6-20260429_041029/tabular_bundle/pipeline_n6/X_num_test.npy @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:393035466f24178ccee0946bd1ab6d8b7bc07677142b5798ad07b8d2e2b65962 +size 409728 diff --git a/timecost/n6/tabdiff/tabdiff-n6-20260429_041029/tabular_bundle/pipeline_n6/X_num_train.npy b/timecost/n6/tabdiff/tabdiff-n6-20260429_041029/tabular_bundle/pipeline_n6/X_num_train.npy new file mode 100644 index 0000000000000000000000000000000000000000..def13e7d3573d9da1f67050d7e4ce6241fc9d1e5 --- /dev/null +++ b/timecost/n6/tabdiff/tabdiff-n6-20260429_041029/tabular_bundle/pipeline_n6/X_num_train.npy @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:393035466f24178ccee0946bd1ab6d8b7bc07677142b5798ad07b8d2e2b65962 +size 409728 diff --git a/timecost/n6/tabdiff/tabdiff-n6-20260429_041029/tabular_bundle/pipeline_n6/X_num_val.npy b/timecost/n6/tabdiff/tabdiff-n6-20260429_041029/tabular_bundle/pipeline_n6/X_num_val.npy new file mode 100644 index 0000000000000000000000000000000000000000..def13e7d3573d9da1f67050d7e4ce6241fc9d1e5 --- /dev/null +++ b/timecost/n6/tabdiff/tabdiff-n6-20260429_041029/tabular_bundle/pipeline_n6/X_num_val.npy @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:393035466f24178ccee0946bd1ab6d8b7bc07677142b5798ad07b8d2e2b65962 +size 409728 diff --git a/timecost/n6/tabdiff/tabdiff-n6-20260429_041029/tabular_bundle/pipeline_n6/info.json b/timecost/n6/tabdiff/tabdiff-n6-20260429_041029/tabular_bundle/pipeline_n6/info.json new file mode 100644 index 0000000000000000000000000000000000000000..0b6f931b338c41eebb6303c4c433d05936af32a8 --- /dev/null +++ b/timecost/n6/tabdiff/tabdiff-n6-20260429_041029/tabular_bundle/pipeline_n6/info.json @@ -0,0 +1,184 @@ +{ + "name": "pipeline_n6", + "task_type": "multiclass", + "n_num_features": 16, + "n_cat_features": 0, + "train_size": 6400, + "test_num": 6400, + "val_num": 6400, + "train_num": 6400, + "bundle_note": "val/test matrices are train copies (train-only policy; no real held-out rows).", + "num_col_idx": [ + 0, + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13, + 14, + 15 + ], + "cat_col_idx": [], + "target_col_idx": [ + 16 + ], + "column_names": [ + "X1", + "X2", + "X3", + "X4", + "X5", + "X6", + "X7", + "X8", + "X9", + "X10", + "X11", + "X12", + "X13", + "X14", + "X15", + "X16", + "y" + ], + "int_col_idx": [], + "int_columns": [], + "int_col_idx_wrt_num": [], + "metadata": { + "columns": { + "0": { + "sdtype": "numerical", + "computer_representation": "Float" + }, + "1": { + "sdtype": "numerical", + "computer_representation": "Float" + }, + "2": { + "sdtype": "numerical", + "computer_representation": "Float" + }, + "3": { + "sdtype": "numerical", + "computer_representation": "Float" + }, + "4": { + "sdtype": "numerical", + "computer_representation": "Float" + }, + "5": { + "sdtype": "numerical", + "computer_representation": "Float" + }, + "6": { + "sdtype": "numerical", + "computer_representation": "Float" + }, + "7": { + "sdtype": "numerical", + "computer_representation": "Float" + }, + "8": { + "sdtype": "numerical", + "computer_representation": "Float" + }, + "9": { + "sdtype": "numerical", + "computer_representation": "Float" + }, + "10": { + "sdtype": "numerical", + "computer_representation": "Float" + }, + "11": { + "sdtype": "numerical", + "computer_representation": "Float" + }, + "12": { + "sdtype": "numerical", + "computer_representation": "Float" + }, + "13": { + "sdtype": "numerical", + "computer_representation": "Float" + }, + "14": { + "sdtype": "numerical", + "computer_representation": "Float" + }, + "15": { + "sdtype": "numerical", + "computer_representation": "Float" + }, + "16": { + "sdtype": "categorical" + } + } + }, + "idx_mapping": { + "0": 0, + "1": 1, + "2": 2, + "3": 3, + "4": 4, + "5": 5, + "6": 6, + "7": 7, + "8": 8, + "9": 9, + "10": 10, + "11": 11, + "12": 12, + "13": 13, + "14": 14, + "15": 15, + "16": 16 + }, + "inverse_idx_mapping": { + "0": 0, + "1": 1, + "2": 2, + "3": 3, + "4": 4, + "5": 5, + "6": 6, + "7": 7, + "8": 8, + "9": 9, + "10": 10, + "11": 11, + "12": 12, + "13": 13, + "14": 14, + "15": 15, + "16": 16 + }, + "idx_name_mapping": { + "0": "X1", + "1": "X2", + "2": "X3", + "3": "X4", + "4": "X5", + "5": "X6", + "6": "X7", + "7": "X8", + "8": "X9", + "9": "X10", + "10": "X11", + "11": "X12", + "12": "X13", + "13": "X14", + "14": "X15", + "15": "X16", + "16": "y" + }, + "n_classes": 4 +} \ No newline at end of file diff --git a/timecost/n6/tabdiff/tabdiff-n6-20260429_041029/tabular_bundle/pipeline_n6/real.csv b/timecost/n6/tabdiff/tabdiff-n6-20260429_041029/tabular_bundle/pipeline_n6/real.csv new file mode 100644 index 0000000000000000000000000000000000000000..8cef175a8e9604167da1addc682bf09da87b314a --- /dev/null +++ b/timecost/n6/tabdiff/tabdiff-n6-20260429_041029/tabular_bundle/pipeline_n6/real.csv @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:6f9ba2b92de3967259fd59267524553f138408b972acbe92d1273670c82f2b74 +size 316886 diff --git a/timecost/n6/tabdiff/tabdiff-n6-20260429_041029/tabular_bundle/pipeline_n6/test.csv b/timecost/n6/tabdiff/tabdiff-n6-20260429_041029/tabular_bundle/pipeline_n6/test.csv new file mode 100644 index 0000000000000000000000000000000000000000..8cef175a8e9604167da1addc682bf09da87b314a --- /dev/null +++ b/timecost/n6/tabdiff/tabdiff-n6-20260429_041029/tabular_bundle/pipeline_n6/test.csv @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:6f9ba2b92de3967259fd59267524553f138408b972acbe92d1273670c82f2b74 +size 316886 diff --git a/timecost/n6/tabdiff/tabdiff-n6-20260429_041029/tabular_bundle/pipeline_n6/val.csv b/timecost/n6/tabdiff/tabdiff-n6-20260429_041029/tabular_bundle/pipeline_n6/val.csv new file mode 100644 index 0000000000000000000000000000000000000000..8cef175a8e9604167da1addc682bf09da87b314a --- /dev/null +++ b/timecost/n6/tabdiff/tabdiff-n6-20260429_041029/tabular_bundle/pipeline_n6/val.csv @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:6f9ba2b92de3967259fd59267524553f138408b972acbe92d1273670c82f2b74 +size 316886 diff --git a/timecost/n6/tabdiff/tabdiff-n6-20260429_041029/tabular_bundle/pipeline_n6/y_test.npy b/timecost/n6/tabdiff/tabdiff-n6-20260429_041029/tabular_bundle/pipeline_n6/y_test.npy new file mode 100644 index 0000000000000000000000000000000000000000..8f4c36c6fa08e00773b3d55f2682ff16844b5f63 --- /dev/null +++ b/timecost/n6/tabdiff/tabdiff-n6-20260429_041029/tabular_bundle/pipeline_n6/y_test.npy @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:6bc1d3e281e647d8507df1305552f87513b9d8b7aad284e535e9fa2d0c18071b +size 51328 diff --git a/timecost/n6/tabdiff/tabdiff-n6-20260429_041029/tabular_bundle/pipeline_n6/y_train.npy b/timecost/n6/tabdiff/tabdiff-n6-20260429_041029/tabular_bundle/pipeline_n6/y_train.npy new file mode 100644 index 0000000000000000000000000000000000000000..8f4c36c6fa08e00773b3d55f2682ff16844b5f63 --- /dev/null +++ b/timecost/n6/tabdiff/tabdiff-n6-20260429_041029/tabular_bundle/pipeline_n6/y_train.npy @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:6bc1d3e281e647d8507df1305552f87513b9d8b7aad284e535e9fa2d0c18071b +size 51328 diff --git a/timecost/n6/tabdiff/tabdiff-n6-20260429_041029/tabular_bundle/pipeline_n6/y_val.npy b/timecost/n6/tabdiff/tabdiff-n6-20260429_041029/tabular_bundle/pipeline_n6/y_val.npy new file mode 100644 index 0000000000000000000000000000000000000000..8f4c36c6fa08e00773b3d55f2682ff16844b5f63 --- /dev/null +++ b/timecost/n6/tabdiff/tabdiff-n6-20260429_041029/tabular_bundle/pipeline_n6/y_val.npy @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:6bc1d3e281e647d8507df1305552f87513b9d8b7aad284e535e9fa2d0c18071b +size 51328 diff --git a/timecost/n6/tabdiff/tabdiff-n6-20260429_041029/train_20260429_041029.log b/timecost/n6/tabdiff/tabdiff-n6-20260429_041029/train_20260429_041029.log new file mode 100644 index 0000000000000000000000000000000000000000..054fabc8014f7cc36901535ac28095a352f26d75 --- /dev/null +++ b/timecost/n6/tabdiff/tabdiff-n6-20260429_041029/train_20260429_041029.log @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:858a827540ba84d0e10911a5a911e4c50b57c41117336b42dbdc3590b52b3da7 +size 389062 diff --git a/timecost/n6/tabpfgen/tabpfgen-n6-20260429_060202/_tabpfgen_generate.py b/timecost/n6/tabpfgen/tabpfgen-n6-20260429_060202/_tabpfgen_generate.py new file mode 100644 index 0000000000000000000000000000000000000000..b55df02efa0425b202deef4aa28542251d2888fe --- /dev/null +++ b/timecost/n6/tabpfgen/tabpfgen-n6-20260429_060202/_tabpfgen_generate.py @@ -0,0 +1,100 @@ +import os +import numpy as np +import pandas as pd +import json +from tabpfgen import TabPFGen + +df = pd.read_csv("/work/output-Benchmark-trainonly-v1/n6/tabpfgen/tabpfgen-n6-20260429_060202/staged/public/train.csv") +target_col = "y" + +target_missing = df[target_col].isna() +if target_missing.any(): + dropped = int(target_missing.sum()) + df = df.loc[~target_missing].copy() + print( + f"[TabPFGen] Dropped {dropped} rows with missing target '{target_col}'" + ) +if df.empty: + raise ValueError( + f"[TabPFGen] No rows remain after dropping missing target '{target_col}'" + ) + +feature_cols = [c for c in df.columns if c != target_col] + +cat_encodings = {} +for col in feature_cols: + if df[col].dtype == object or str(df[col].dtype) == 'category': + cats = sorted(df[col].dropna().unique().tolist(), key=str) + cat_map = {v: i for i, v in enumerate(cats)} + df[col] = df[col].map(cat_map).astype(float) + cat_encodings[col] = cats + print(f"[TabPFGen] Label-encoded '{col}' ({len(cats)} categories)") + +target_cats = None +if df[target_col].dtype == object or str(df[target_col].dtype) == 'category': + cats = sorted(df[target_col].dropna().unique().tolist(), key=str) + t_map = {v: i for i, v in enumerate(cats)} + df[target_col] = df[target_col].map(t_map).astype(float) + target_cats = cats + print(f"[TabPFGen] Label-encoded target '{target_col}' ({len(cats)} categories)") + +X = df[feature_cols].values.astype(np.float32) +y = df[target_col].values +target_n = int(6400) + +for i in range(X.shape[1]): + col_vals = X[:, i] + mask = np.isnan(col_vals) + if mask.any(): + mean_val = np.nanmean(col_vals) + X[mask, i] = mean_val if not np.isnan(mean_val) else 0.0 + +# TabPFGen v0.1.x API:仅支持 n_sgld_steps / sgld_* / device。 +# (旧版脚本中的 energy_*_chunk 与上游 TabPFGen 不一致,会导致 TypeError。) +gen = TabPFGen( + n_sgld_steps=1000, + sgld_step_size=0.01, + sgld_noise_scale=0.01, + device="auto", +) + +print(f"[TabPFGen] Generating {target_n} rows via generate_classification") +X_syn, y_syn = gen.generate_classification(X, y, n_samples=target_n) + +syn_df = pd.DataFrame(X_syn, columns=feature_cols) +syn_df[target_col] = y_syn + +for col, cats in cat_encodings.items(): + codes = np.round(syn_df[col].values).astype(int) + codes = np.clip(codes, 0, len(cats) - 1) + syn_df[col] = [cats[c] for c in codes] + +if target_cats is not None: + codes = np.round(syn_df[target_col].values).astype(int) + codes = np.clip(codes, 0, len(target_cats) - 1) + syn_df[target_col] = [target_cats[c] for c in codes] + +if len(syn_df) > target_n: + print(f"[TabPFGen] Trimming rows: {len(syn_df)} -> {target_n}") + syn_df = syn_df.iloc[:target_n].copy() +elif len(syn_df) < target_n: + deficit = target_n - len(syn_df) + print(f"[TabPFGen] Padding rows: {len(syn_df)} -> {target_n} (deficit={deficit})") + if len(syn_df) > 0: + extra = syn_df.sample(n=deficit, replace=True, random_state=42) + syn_df = pd.concat( + [syn_df.reset_index(drop=True), extra.reset_index(drop=True)], + ignore_index=True, + ) + else: + syn_df = df[feature_cols + [target_col]].sample( + n=target_n, replace=True, random_state=42 + ).reset_index(drop=True) + +syn_df = syn_df[list(df.columns)] +if len(syn_df) != target_n: + raise RuntimeError( + f"[TabPFGen] Row alignment failed: got {len(syn_df)}, expected {target_n}" + ) +syn_df.to_csv("/work/output-Benchmark-trainonly-v1/n6/tabpfgen/tabpfgen-n6-20260429_060202/tabpfgen-n6-6400-20260429_064819.csv", index=False) +print(f"[TabPFGen] Saved {len(syn_df)} rows -> /work/output-Benchmark-trainonly-v1/n6/tabpfgen/tabpfgen-n6-20260429_060202/tabpfgen-n6-6400-20260429_064819.csv") diff --git a/timecost/n6/tabpfgen/tabpfgen-n6-20260429_060202/gen_20260429_060202.log b/timecost/n6/tabpfgen/tabpfgen-n6-20260429_060202/gen_20260429_060202.log new file mode 100644 index 0000000000000000000000000000000000000000..593fc2b9bc06af4f5ae64828565285a3d252a13e --- /dev/null +++ b/timecost/n6/tabpfgen/tabpfgen-n6-20260429_060202/gen_20260429_060202.log @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:cf614ffa33debcc7aaeecccd66203f2a3378da121d4d7f017da6cb088596f996 +size 633 diff --git a/timecost/n6/tabpfgen/tabpfgen-n6-20260429_060202/gen_20260429_064819.log b/timecost/n6/tabpfgen/tabpfgen-n6-20260429_060202/gen_20260429_064819.log new file mode 100644 index 0000000000000000000000000000000000000000..1541730a17448b690f30ff9c3d969c741b090d94 --- /dev/null +++ b/timecost/n6/tabpfgen/tabpfgen-n6-20260429_060202/gen_20260429_064819.log @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:3ac7d3b9d2d0ed415f3c9ebabd4338ba723f796f4efcbccf0bbaec121ec2dcc4 +size 761 diff --git a/timecost/n6/tabpfgen/tabpfgen-n6-20260429_060202/input_snapshot.json b/timecost/n6/tabpfgen/tabpfgen-n6-20260429_060202/input_snapshot.json new file mode 100644 index 0000000000000000000000000000000000000000..7428c85db19568fe1ba6cc514cd06a82cecf89b8 --- /dev/null +++ b/timecost/n6/tabpfgen/tabpfgen-n6-20260429_060202/input_snapshot.json @@ -0,0 +1,36 @@ +{ + "dataset_id": "n6", + "model": "tabpfgen", + "inputs": { + "train_csv": { + "path": "/data/jialinzhang/SynthesizePipeline-server/DatasetNew/n6/n6-train.csv", + "exists": true, + "size": 323303, + "sha256": "3b9d646393340b4c636db7686f2313521d84434e99ac1316b1053b05c995a3b1" + }, + "val_csv": { + "path": "/data/jialinzhang/SynthesizePipeline-server/DatasetNew/n6/n6-val.csv", + "exists": true, + "size": 40506, + "sha256": "74a01693febbfda57225ebbec2f7a9c22a2136edbec694b108b50c013cd6fe9d" + }, + "test_csv": { + "path": "/data/jialinzhang/SynthesizePipeline-server/DatasetNew/n6/n6-test.csv", + "exists": true, + "size": 40719, + "sha256": "46f32b813d7849636da5a0a7aa560ea062b8f5765772dc1a8268f756cdb2fbcc" + }, + "profile_json": { + "path": "/data/jialinzhang/SynthesizePipeline-server/DatasetNew/artifacts/data_core/tabular/n6/n6-dataset_profile.json", + "exists": true, + "size": 6559, + "sha256": "c3a4ba3662399f797ed5ac4ea171e2991e3f3ac9ea221ba345c132e11450d759" + }, + "contract_json": { + "path": "/data/jialinzhang/SynthesizePipeline-server/DatasetNew/artifacts/data_core/tabular/n6/n6-dataset_contract_v1.json", + "exists": true, + "size": 8304, + "sha256": "979119ea8d3be4588170ff59aa802156a0a5ecaf4312599a8b2998d38b69fba5" + } + } +} \ No newline at end of file diff --git a/timecost/n6/tabpfgen/tabpfgen-n6-20260429_060202/public_gate/normalized_schema_snapshot.json b/timecost/n6/tabpfgen/tabpfgen-n6-20260429_060202/public_gate/normalized_schema_snapshot.json new file mode 100644 index 0000000000000000000000000000000000000000..f37e46415bf96a79860f8cd9cdbfb764f9fbd0cb --- /dev/null +++ b/timecost/n6/tabpfgen/tabpfgen-n6-20260429_060202/public_gate/normalized_schema_snapshot.json @@ -0,0 +1,363 @@ +{ + "dataset_id": "n6", + "target_column": "y", + "task_type": "classification", + "columns": [ + { + "name": "X1", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 313, + "unique_ratio": 0.048906, + "example_values": [ + "2", + "6", + "-2", + "-15", + "3" + ] + } + }, + { + "name": "X2", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 328, + "unique_ratio": 0.05125, + "example_values": [ + "-3", + "1", + "16", + "-4", + "-12" + ] + } + }, + { + "name": "X3", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 316, + "unique_ratio": 0.049375, + "example_values": [ + "-7", + "-6", + "3", + "-22", + "13" + ] + } + }, + { + "name": "X4", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 323, + "unique_ratio": 0.050469, + "example_values": [ + "-6", + "-7", + "5", + "-5", + "-37" + ] + } + }, + { + "name": "X5", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 325, + "unique_ratio": 0.050781, + "example_values": [ + "-9", + "2", + "-12", + "-8", + "-63" + ] + } + }, + { + "name": "X6", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 325, + "unique_ratio": 0.050781, + "example_values": [ + "-6", + "-5", + "11", + "0", + "-86" + ] + } + }, + { + "name": "X7", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 332, + "unique_ratio": 0.051875, + "example_values": [ + "-1", + "-2", + "5", + "-4", + "-82" + ] + } + }, + { + "name": "X8", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 330, + "unique_ratio": 0.051562, + "example_values": [ + "3", + "-3", + "9", + "-9", + "-51" + ] + } + }, + { + "name": "X9", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 333, + "unique_ratio": 0.052031, + "example_values": [ + "1", + "19", + "0", + "-1", + "-30" + ] + } + }, + { + "name": "X10", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 334, + "unique_ratio": 0.052187, + "example_values": [ + "4", + "10", + "9", + "3", + "-13" + ] + } + }, + { + "name": "X11", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 328, + "unique_ratio": 0.05125, + "example_values": [ + "-4", + "-3", + "-1", + "-7", + "-20" + ] + } + }, + { + "name": "X12", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 324, + "unique_ratio": 0.050625, + "example_values": [ + "-5", + "-11", + "0", + "4", + "-29" + ] + } + }, + { + "name": "X13", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 332, + "unique_ratio": 0.051875, + "example_values": [ + "4", + "-6", + "6", + "9", + "-38" + ] + } + }, + { + "name": "X14", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 318, + "unique_ratio": 0.049688, + "example_values": [ + "1", + "30", + "11", + "-5", + "-29" + ] + } + }, + { + "name": "X15", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 324, + "unique_ratio": 0.050625, + "example_values": [ + "-8", + "4", + "-9", + "-6", + "-15" + ] + } + }, + { + "name": "X16", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 325, + "unique_ratio": 0.050781, + "example_values": [ + "-1", + "-13", + "0", + "1", + "-23" + ] + } + }, + { + "name": "y", + "role": "target", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 4, + "unique_ratio": 0.000625, + "example_values": [ + "2", + "1", + "0", + "3" + ] + } + } + ] +} \ No newline at end of file diff --git a/timecost/n6/tabpfgen/tabpfgen-n6-20260429_060202/public_gate/public_gate_report.json b/timecost/n6/tabpfgen/tabpfgen-n6-20260429_060202/public_gate/public_gate_report.json new file mode 100644 index 0000000000000000000000000000000000000000..a228c993845322a7356eef31ebce756cb39378ed --- /dev/null +++ b/timecost/n6/tabpfgen/tabpfgen-n6-20260429_060202/public_gate/public_gate_report.json @@ -0,0 +1,37 @@ +{ + "dataset_id": "n6", + "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": "y", + "task_type": "classification", + "input_splits": { + "train": "/data/jialinzhang/SynthesizePipeline-server/DatasetNew/n6/n6-train.csv", + "val": "/data/jialinzhang/SynthesizePipeline-server/DatasetNew/n6/n6-val.csv", + "test": "/data/jialinzhang/SynthesizePipeline-server/DatasetNew/n6/n6-test.csv" + } +} \ No newline at end of file diff --git a/timecost/n6/tabpfgen/tabpfgen-n6-20260429_060202/public_gate/staged_input_manifest.json b/timecost/n6/tabpfgen/tabpfgen-n6-20260429_060202/public_gate/staged_input_manifest.json new file mode 100644 index 0000000000000000000000000000000000000000..c57f70f816d58f374494111be399510966b5ce82 --- /dev/null +++ b/timecost/n6/tabpfgen/tabpfgen-n6-20260429_060202/public_gate/staged_input_manifest.json @@ -0,0 +1,368 @@ +{ + "dataset_id": "n6", + "target_column": "y", + "task_type": "classification", + "train_csv": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/n6/tabpfgen/tabpfgen-n6-20260429_060202/staged/public/train.csv", + "val_csv": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/n6/tabpfgen/tabpfgen-n6-20260429_060202/staged/public/val.csv", + "test_csv": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/n6/tabpfgen/tabpfgen-n6-20260429_060202/staged/public/test.csv", + "features_json": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/n6/tabpfgen/tabpfgen-n6-20260429_060202/staged/public/staged_features.json", + "public_gate_report": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/n6/tabpfgen/tabpfgen-n6-20260429_060202/public_gate/public_gate_report.json", + "column_schema": [ + { + "name": "X1", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 313, + "unique_ratio": 0.048906, + "example_values": [ + "2", + "6", + "-2", + "-15", + "3" + ] + } + }, + { + "name": "X2", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 328, + "unique_ratio": 0.05125, + "example_values": [ + "-3", + "1", + "16", + "-4", + "-12" + ] + } + }, + { + "name": "X3", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 316, + "unique_ratio": 0.049375, + "example_values": [ + "-7", + "-6", + "3", + "-22", + "13" + ] + } + }, + { + "name": "X4", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 323, + "unique_ratio": 0.050469, + "example_values": [ + "-6", + "-7", + "5", + "-5", + "-37" + ] + } + }, + { + "name": "X5", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 325, + "unique_ratio": 0.050781, + "example_values": [ + "-9", + "2", + "-12", + "-8", + "-63" + ] + } + }, + { + "name": "X6", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 325, + "unique_ratio": 0.050781, + "example_values": [ + "-6", + "-5", + "11", + "0", + "-86" + ] + } + }, + { + "name": "X7", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 332, + "unique_ratio": 0.051875, + "example_values": [ + "-1", + "-2", + "5", + "-4", + "-82" + ] + } + }, + { + "name": "X8", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 330, + "unique_ratio": 0.051562, + "example_values": [ + "3", + "-3", + "9", + "-9", + "-51" + ] + } + }, + { + "name": "X9", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 333, + "unique_ratio": 0.052031, + "example_values": [ + "1", + "19", + "0", + "-1", + "-30" + ] + } + }, + { + "name": "X10", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 334, + "unique_ratio": 0.052187, + "example_values": [ + "4", + "10", + "9", + "3", + "-13" + ] + } + }, + { + "name": "X11", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 328, + "unique_ratio": 0.05125, + "example_values": [ + "-4", + "-3", + "-1", + "-7", + "-20" + ] + } + }, + { + "name": "X12", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 324, + "unique_ratio": 0.050625, + "example_values": [ + "-5", + "-11", + "0", + "4", + "-29" + ] + } + }, + { + "name": "X13", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 332, + "unique_ratio": 0.051875, + "example_values": [ + "4", + "-6", + "6", + "9", + "-38" + ] + } + }, + { + "name": "X14", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 318, + "unique_ratio": 0.049688, + "example_values": [ + "1", + "30", + "11", + "-5", + "-29" + ] + } + }, + { + "name": "X15", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 324, + "unique_ratio": 0.050625, + "example_values": [ + "-8", + "4", + "-9", + "-6", + "-15" + ] + } + }, + { + "name": "X16", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 325, + "unique_ratio": 0.050781, + "example_values": [ + "-1", + "-13", + "0", + "1", + "-23" + ] + } + }, + { + "name": "y", + "role": "target", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 4, + "unique_ratio": 0.000625, + "example_values": [ + "2", + "1", + "0", + "3" + ] + } + } + ] +} \ No newline at end of file diff --git a/timecost/n6/tabpfgen/tabpfgen-n6-20260429_060202/runtime_result.json b/timecost/n6/tabpfgen/tabpfgen-n6-20260429_060202/runtime_result.json new file mode 100644 index 0000000000000000000000000000000000000000..28862007228b634af1c816f26c7c65ebff6c2e24 --- /dev/null +++ b/timecost/n6/tabpfgen/tabpfgen-n6-20260429_060202/runtime_result.json @@ -0,0 +1,14 @@ +{ + "dataset_id": "n6", + "model": "tabpfgen", + "run_id": "tabpfgen-n6-20260429_060202", + "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-Benchmark-trainonly-v1/n6/tabpfgen/tabpfgen-n6-20260429_060202/tabpfgen-n6-6400-20260429_064819.csv" + } +} \ No newline at end of file diff --git a/timecost/n6/tabpfgen/tabpfgen-n6-20260429_060202/staged/public/staged_features.json b/timecost/n6/tabpfgen/tabpfgen-n6-20260429_060202/staged/public/staged_features.json new file mode 100644 index 0000000000000000000000000000000000000000..13d0b8c66a07bb8f5aa06667e153a85656dae7d8 --- /dev/null +++ b/timecost/n6/tabpfgen/tabpfgen-n6-20260429_060202/staged/public/staged_features.json @@ -0,0 +1,87 @@ +[ + { + "feature_name": "X1", + "data_type": "continuous", + "is_target": false + }, + { + "feature_name": "X2", + "data_type": "continuous", + "is_target": false + }, + { + "feature_name": "X3", + "data_type": "continuous", + "is_target": false + }, + { + "feature_name": "X4", + "data_type": "continuous", + "is_target": false + }, + { + "feature_name": "X5", + "data_type": "continuous", + "is_target": false + }, + { + "feature_name": "X6", + "data_type": "continuous", + "is_target": false + }, + { + "feature_name": "X7", + "data_type": "continuous", + "is_target": false + }, + { + "feature_name": "X8", + "data_type": "continuous", + "is_target": false + }, + { + "feature_name": "X9", + "data_type": "continuous", + "is_target": false + }, + { + "feature_name": "X10", + "data_type": "continuous", + "is_target": false + }, + { + "feature_name": "X11", + "data_type": "continuous", + "is_target": false + }, + { + "feature_name": "X12", + "data_type": "continuous", + "is_target": false + }, + { + "feature_name": "X13", + "data_type": "continuous", + "is_target": false + }, + { + "feature_name": "X14", + "data_type": "continuous", + "is_target": false + }, + { + "feature_name": "X15", + "data_type": "continuous", + "is_target": false + }, + { + "feature_name": "X16", + "data_type": "continuous", + "is_target": false + }, + { + "feature_name": "y", + "data_type": "continuous", + "is_target": true + } +] \ No newline at end of file diff --git a/timecost/n6/tabpfgen/tabpfgen-n6-20260429_060202/staged/public/test.csv b/timecost/n6/tabpfgen/tabpfgen-n6-20260429_060202/staged/public/test.csv new file mode 100644 index 0000000000000000000000000000000000000000..64d039a1664b74ef81240a9ba69ab982a78be184 --- /dev/null +++ b/timecost/n6/tabpfgen/tabpfgen-n6-20260429_060202/staged/public/test.csv @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:f1922293e501d8f17f56a321a1305e44d20a6ad7ed67e97af754dea170989fc5 +size 39918 diff --git a/timecost/n6/tabpfgen/tabpfgen-n6-20260429_060202/staged/public/train.csv b/timecost/n6/tabpfgen/tabpfgen-n6-20260429_060202/staged/public/train.csv new file mode 100644 index 0000000000000000000000000000000000000000..25108968eaf2c7995080c74fba26ca496d015c72 --- /dev/null +++ b/timecost/n6/tabpfgen/tabpfgen-n6-20260429_060202/staged/public/train.csv @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:c8545a9761061bd99d67935948928e2840e6ae4b5c9760cad2de82198676db2b +size 316902 diff --git a/timecost/n6/tabpfgen/tabpfgen-n6-20260429_060202/staged/public/val.csv b/timecost/n6/tabpfgen/tabpfgen-n6-20260429_060202/staged/public/val.csv new file mode 100644 index 0000000000000000000000000000000000000000..933b52194b2ae481787d393e22f1a96acb482a5a --- /dev/null +++ b/timecost/n6/tabpfgen/tabpfgen-n6-20260429_060202/staged/public/val.csv @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:60a3dd7f655f8086e53402dcdcfa42297d586d8483f2afd6e1bbc6bd3521303f +size 39705 diff --git a/timecost/n6/tabpfgen/tabpfgen-n6-20260429_060202/staged/tabpfgen/adapter_report.json b/timecost/n6/tabpfgen/tabpfgen-n6-20260429_060202/staged/tabpfgen/adapter_report.json new file mode 100644 index 0000000000000000000000000000000000000000..90358ac4fed55be71c3243abfd4637af0c85dae3 --- /dev/null +++ b/timecost/n6/tabpfgen/tabpfgen-n6-20260429_060202/staged/tabpfgen/adapter_report.json @@ -0,0 +1,7 @@ +{ + "adapter_ready_status": "pass", + "adapter_fail_reason_code": null, + "adapter_fail_detail": null, + "adapter_transforms_applied": [], + "model_input_manifest": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/n6/tabpfgen/tabpfgen-n6-20260429_060202/staged/tabpfgen/model_input_manifest.json" +} \ No newline at end of file diff --git a/timecost/n6/tabpfgen/tabpfgen-n6-20260429_060202/staged/tabpfgen/adapter_transforms_applied.json b/timecost/n6/tabpfgen/tabpfgen-n6-20260429_060202/staged/tabpfgen/adapter_transforms_applied.json new file mode 100644 index 0000000000000000000000000000000000000000..0637a088a01e8ddab3bf3fa98dbe804cbde1a0dc --- /dev/null +++ b/timecost/n6/tabpfgen/tabpfgen-n6-20260429_060202/staged/tabpfgen/adapter_transforms_applied.json @@ -0,0 +1 @@ +[] \ No newline at end of file diff --git a/timecost/n6/tabpfgen/tabpfgen-n6-20260429_060202/staged/tabpfgen/model_input_manifest.json b/timecost/n6/tabpfgen/tabpfgen-n6-20260429_060202/staged/tabpfgen/model_input_manifest.json new file mode 100644 index 0000000000000000000000000000000000000000..1ce6e84393cdf5bec02cbf9b484f19125d114d4e --- /dev/null +++ b/timecost/n6/tabpfgen/tabpfgen-n6-20260429_060202/staged/tabpfgen/model_input_manifest.json @@ -0,0 +1,370 @@ +{ + "dataset_id": "n6", + "model": "tabpfgen", + "target_column": "y", + "task_type": "classification", + "column_schema": [ + { + "name": "X1", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 313, + "unique_ratio": 0.048906, + "example_values": [ + "2", + "6", + "-2", + "-15", + "3" + ] + } + }, + { + "name": "X2", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 328, + "unique_ratio": 0.05125, + "example_values": [ + "-3", + "1", + "16", + "-4", + "-12" + ] + } + }, + { + "name": "X3", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 316, + "unique_ratio": 0.049375, + "example_values": [ + "-7", + "-6", + "3", + "-22", + "13" + ] + } + }, + { + "name": "X4", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 323, + "unique_ratio": 0.050469, + "example_values": [ + "-6", + "-7", + "5", + "-5", + "-37" + ] + } + }, + { + "name": "X5", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 325, + "unique_ratio": 0.050781, + "example_values": [ + "-9", + "2", + "-12", + "-8", + "-63" + ] + } + }, + { + "name": "X6", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 325, + "unique_ratio": 0.050781, + "example_values": [ + "-6", + "-5", + "11", + "0", + "-86" + ] + } + }, + { + "name": "X7", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 332, + "unique_ratio": 0.051875, + "example_values": [ + "-1", + "-2", + "5", + "-4", + "-82" + ] + } + }, + { + "name": "X8", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 330, + "unique_ratio": 0.051562, + "example_values": [ + "3", + "-3", + "9", + "-9", + "-51" + ] + } + }, + { + "name": "X9", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 333, + "unique_ratio": 0.052031, + "example_values": [ + "1", + "19", + "0", + "-1", + "-30" + ] + } + }, + { + "name": "X10", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 334, + "unique_ratio": 0.052187, + "example_values": [ + "4", + "10", + "9", + "3", + "-13" + ] + } + }, + { + "name": "X11", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 328, + "unique_ratio": 0.05125, + "example_values": [ + "-4", + "-3", + "-1", + "-7", + "-20" + ] + } + }, + { + "name": "X12", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 324, + "unique_ratio": 0.050625, + "example_values": [ + "-5", + "-11", + "0", + "4", + "-29" + ] + } + }, + { + "name": "X13", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 332, + "unique_ratio": 0.051875, + "example_values": [ + "4", + "-6", + "6", + "9", + "-38" + ] + } + }, + { + "name": "X14", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 318, + "unique_ratio": 0.049688, + "example_values": [ + "1", + "30", + "11", + "-5", + "-29" + ] + } + }, + { + "name": "X15", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 324, + "unique_ratio": 0.050625, + "example_values": [ + "-8", + "4", + "-9", + "-6", + "-15" + ] + } + }, + { + "name": "X16", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 325, + "unique_ratio": 0.050781, + "example_values": [ + "-1", + "-13", + "0", + "1", + "-23" + ] + } + }, + { + "name": "y", + "role": "target", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 4, + "unique_ratio": 0.000625, + "example_values": [ + "2", + "1", + "0", + "3" + ] + } + } + ], + "public_manifest": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/n6/tabpfgen/tabpfgen-n6-20260429_060202/public_gate/staged_input_manifest.json", + "train_csv": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/n6/tabpfgen/tabpfgen-n6-20260429_060202/staged/public/train.csv", + "val_csv": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/n6/tabpfgen/tabpfgen-n6-20260429_060202/staged/public/val.csv", + "test_csv": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/n6/tabpfgen/tabpfgen-n6-20260429_060202/staged/public/test.csv", + "features_json": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/n6/tabpfgen/tabpfgen-n6-20260429_060202/staged/public/staged_features.json", + "public_gate_report": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/n6/tabpfgen/tabpfgen-n6-20260429_060202/public_gate/public_gate_report.json" +} \ No newline at end of file diff --git a/timecost/n6/tabpfgen/tabpfgen-n6-20260429_060202/tabpfgen-n6-6400-20260429_064819.csv b/timecost/n6/tabpfgen/tabpfgen-n6-20260429_060202/tabpfgen-n6-6400-20260429_064819.csv new file mode 100644 index 0000000000000000000000000000000000000000..ec275843b8e88bc6542b801349e97d3860983e6b --- /dev/null +++ b/timecost/n6/tabpfgen/tabpfgen-n6-20260429_060202/tabpfgen-n6-6400-20260429_064819.csv @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:54cd83306171151f16a98707d307bb2231084a9b1b61ec8b5ec0700c29e47f34 +size 1062052 diff --git a/timecost/n6/tabpfgen/tabpfgen-n6-20260429_060202/tabpfgen_meta.json b/timecost/n6/tabpfgen/tabpfgen-n6-20260429_060202/tabpfgen_meta.json new file mode 100644 index 0000000000000000000000000000000000000000..2c912daae5f9b843253a191e6860ef38f39993f0 --- /dev/null +++ b/timecost/n6/tabpfgen/tabpfgen-n6-20260429_060202/tabpfgen_meta.json @@ -0,0 +1,9 @@ +{ + "csv_path": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/n6/tabpfgen/tabpfgen-n6-20260429_060202/staged/public/train.csv", + "json_path": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/n6/tabpfgen/tabpfgen-n6-20260429_060202/staged/public/staged_features.json", + "target_col": "y", + "is_classification": true, + "task_type": "classification", + "n_rows": 6400, + "n_cols": 17 +} \ No newline at end of file diff --git a/timecost/n6/tabpfgen/tabpfgen-n6-20260429_060202/train_20260429_060202.log b/timecost/n6/tabpfgen/tabpfgen-n6-20260429_060202/train_20260429_060202.log new file mode 100644 index 0000000000000000000000000000000000000000..4f424cf7ba6bd4d64c6468624f77ba685c256276 --- /dev/null +++ b/timecost/n6/tabpfgen/tabpfgen-n6-20260429_060202/train_20260429_060202.log @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:8e80a1cd11cf3475fda3886f822166c60419b46ff3e9a940b60da4ad8b9c8ce2 +size 595 diff --git a/timecost/n6/tabsyn/tabsyn-n6-20260429_052136/_tabsyn_sample.py b/timecost/n6/tabsyn/tabsyn-n6-20260429_052136/_tabsyn_sample.py new file mode 100644 index 0000000000000000000000000000000000000000..75373f24f10188cb46905d2b754baae28714e5f7 --- /dev/null +++ b/timecost/n6/tabsyn/tabsyn-n6-20260429_052136/_tabsyn_sample.py @@ -0,0 +1,39 @@ +import os, sys, subprocess + +work_dir = "/work/output-Benchmark-trainonly-v1/n6/tabsyn/tabsyn-n6-20260429_052136" +dataname = "tabsyn_n6" +output_csv = "/work/output-Benchmark-trainonly-v1/n6/tabsyn/tabsyn-n6-20260429_052136/tabsyn-n6-6400-20260429_060149.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 6400 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/timecost/n6/tabsyn/tabsyn-n6-20260429_052136/_tabsyn_train.py b/timecost/n6/tabsyn/tabsyn-n6-20260429_052136/_tabsyn_train.py new file mode 100644 index 0000000000000000000000000000000000000000..08044c22b6890ca9db858fbf146b52b583c7e5e9 --- /dev/null +++ b/timecost/n6/tabsyn/tabsyn-n6-20260429_052136/_tabsyn_train.py @@ -0,0 +1,65 @@ +import os, sys, subprocess + +work_dir = "/work/output-Benchmark-trainonly-v1/n6/tabsyn/tabsyn-n6-20260429_052136" +dataname = "tabsyn_n6" +tabsyn_root = "/workspace/tabsyn" + +assert os.path.exists(tabsyn_root), f"TabSyn source not mounted: {tabsyn_root}" + +old = os.environ.get("PYTHONPATH", "") +os.environ["PYTHONPATH"] = tabsyn_root + (os.pathsep + old if old else "") +sys.path.insert(0, tabsyn_root) + +os.chdir(tabsyn_root) + +# Symlink data dir into TabSyn data/ +data_link = os.path.join(tabsyn_root, "data", dataname) +data_src = os.path.join(work_dir, "data", dataname) +os.makedirs(os.path.join(tabsyn_root, "data"), exist_ok=True) +if os.path.exists(data_link): + os.remove(data_link) +os.symlink(data_src, data_link) + +env = os.environ.copy() +env.setdefault("TABSYN_RESUME", "1") +env.setdefault("TABSYN_VAE_BATCH_SIZE", "1024") +# Safer defaults for wide tables on Docker: reduce shared-memory pressure in diffusion DataLoader. +env.setdefault("TABSYN_DIFFUSION_NUM_WORKERS", "0") +_te = None +if _te is not None: + env["TABSYN_VAE_EPOCHS"] = str(_te) + env["TABSYN_DIFFUSION_MAX_EPOCHS"] = str(max(_te + 1, 2)) + +# Data preprocessing is done on the host side (_prepare_data_dir) +# which creates .npy files, train/test CSVs, and info.json + +# Step 1: Train VAE (produces latent embeddings) +print(f"[TabSyn] Step 1/2: Training VAE in {tabsyn_root}, dataname={dataname}") +ret = subprocess.run( + [sys.executable, "main.py", + "--dataname", dataname, + "--mode", "train", + "--method", "vae", + "--gpu", "0"], + cwd=tabsyn_root, + env=env +) +if ret.returncode != 0: + print("[TabSyn] VAE training failed") + sys.exit(ret.returncode) + +# Step 2: Train diffusion model on latent space +print(f"[TabSyn] Step 2/2: Training diffusion model") +ret = subprocess.run( + [sys.executable, "main.py", + "--dataname", dataname, + "--mode", "train", + "--method", "tabsyn", + "--gpu", "0"], + cwd=tabsyn_root, + env=env +) +if ret.returncode != 0: + print("[TabSyn] Diffusion training failed") + sys.exit(ret.returncode) +print("[TabSyn] Training complete (VAE + Diffusion)") diff --git a/timecost/n6/tabsyn/tabsyn-n6-20260429_052136/data/tabsyn_n6/X_cat_test.npy b/timecost/n6/tabsyn/tabsyn-n6-20260429_052136/data/tabsyn_n6/X_cat_test.npy new file mode 100644 index 0000000000000000000000000000000000000000..4b30720bcfa50b549dc5cd917882157c1d9aa60b --- /dev/null +++ b/timecost/n6/tabsyn/tabsyn-n6-20260429_052136/data/tabsyn_n6/X_cat_test.npy @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:dfbe32acad77c018301c459c8995e77626255566f0e6b962feddffd7b38c148d +size 128 diff --git a/timecost/n6/tabsyn/tabsyn-n6-20260429_052136/data/tabsyn_n6/X_cat_train.npy b/timecost/n6/tabsyn/tabsyn-n6-20260429_052136/data/tabsyn_n6/X_cat_train.npy new file mode 100644 index 0000000000000000000000000000000000000000..4b30720bcfa50b549dc5cd917882157c1d9aa60b --- /dev/null +++ b/timecost/n6/tabsyn/tabsyn-n6-20260429_052136/data/tabsyn_n6/X_cat_train.npy @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:dfbe32acad77c018301c459c8995e77626255566f0e6b962feddffd7b38c148d +size 128 diff --git a/timecost/n6/tabsyn/tabsyn-n6-20260429_052136/data/tabsyn_n6/X_num_test.npy b/timecost/n6/tabsyn/tabsyn-n6-20260429_052136/data/tabsyn_n6/X_num_test.npy new file mode 100644 index 0000000000000000000000000000000000000000..def13e7d3573d9da1f67050d7e4ce6241fc9d1e5 --- /dev/null +++ b/timecost/n6/tabsyn/tabsyn-n6-20260429_052136/data/tabsyn_n6/X_num_test.npy @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:393035466f24178ccee0946bd1ab6d8b7bc07677142b5798ad07b8d2e2b65962 +size 409728 diff --git a/timecost/n6/tabsyn/tabsyn-n6-20260429_052136/data/tabsyn_n6/X_num_train.npy b/timecost/n6/tabsyn/tabsyn-n6-20260429_052136/data/tabsyn_n6/X_num_train.npy new file mode 100644 index 0000000000000000000000000000000000000000..def13e7d3573d9da1f67050d7e4ce6241fc9d1e5 --- /dev/null +++ b/timecost/n6/tabsyn/tabsyn-n6-20260429_052136/data/tabsyn_n6/X_num_train.npy @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:393035466f24178ccee0946bd1ab6d8b7bc07677142b5798ad07b8d2e2b65962 +size 409728 diff --git a/timecost/n6/tabsyn/tabsyn-n6-20260429_052136/data/tabsyn_n6/info.json b/timecost/n6/tabsyn/tabsyn-n6-20260429_052136/data/tabsyn_n6/info.json new file mode 100644 index 0000000000000000000000000000000000000000..84438ceb1ae9760796edb6e74f04ede5d677e60f --- /dev/null +++ b/timecost/n6/tabsyn/tabsyn-n6-20260429_052136/data/tabsyn_n6/info.json @@ -0,0 +1,183 @@ +{ + "name": "tabsyn_n6", + "task_type": "regression", + "n_num_features": 16, + "n_cat_features": 0, + "train_size": 6400, + "num_col_idx": [ + 0, + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13, + 14, + 15 + ], + "cat_col_idx": [], + "target_col_idx": [ + 16 + ], + "column_names": [ + "X1", + "X2", + "X3", + "X4", + "X5", + "X6", + "X7", + "X8", + "X9", + "X10", + "X11", + "X12", + "X13", + "X14", + "X15", + "X16", + "y" + ], + "train_num": 6400, + "test_num": 6400, + "header": 0, + "file_type": "csv", + "data_path": "data/tabsyn_n6/train.csv", + "test_path": null, + "idx_mapping": { + "0": 0, + "1": 1, + "2": 2, + "3": 3, + "4": 4, + "5": 5, + "6": 6, + "7": 7, + "8": 8, + "9": 9, + "10": 10, + "11": 11, + "12": 12, + "13": 13, + "14": 14, + "15": 15, + "16": 16 + }, + "inverse_idx_mapping": { + "0": 0, + "1": 1, + "2": 2, + "3": 3, + "4": 4, + "5": 5, + "6": 6, + "7": 7, + "8": 8, + "9": 9, + "10": 10, + "11": 11, + "12": 12, + "13": 13, + "14": 14, + "15": 15, + "16": 16 + }, + "idx_name_mapping": { + "0": "X1", + "1": "X2", + "2": "X3", + "3": "X4", + "4": "X5", + "5": "X6", + "6": "X7", + "7": "X8", + "8": "X9", + "9": "X10", + "10": "X11", + "11": "X12", + "12": "X13", + "13": "X14", + "14": "X15", + "15": "X16", + "16": "y" + }, + "metadata": { + "columns": { + "0": { + "sdtype": "numerical", + "computer_representation": "Float" + }, + "1": { + "sdtype": "numerical", + "computer_representation": "Float" + }, + "2": { + "sdtype": "numerical", + "computer_representation": "Float" + }, + "3": { + "sdtype": "numerical", + "computer_representation": "Float" + }, + "4": { + "sdtype": "numerical", + "computer_representation": "Float" + }, + "5": { + "sdtype": "numerical", + "computer_representation": "Float" + }, + "6": { + "sdtype": "numerical", + "computer_representation": "Float" + }, + "7": { + "sdtype": "numerical", + "computer_representation": "Float" + }, + "8": { + "sdtype": "numerical", + "computer_representation": "Float" + }, + "9": { + "sdtype": "numerical", + "computer_representation": "Float" + }, + "10": { + "sdtype": "numerical", + "computer_representation": "Float" + }, + "11": { + "sdtype": "numerical", + "computer_representation": "Float" + }, + "12": { + "sdtype": "numerical", + "computer_representation": "Float" + }, + "13": { + "sdtype": "numerical", + "computer_representation": "Float" + }, + "14": { + "sdtype": "numerical", + "computer_representation": "Float" + }, + "15": { + "sdtype": "numerical", + "computer_representation": "Float" + }, + "16": { + "sdtype": "numerical", + "computer_representation": "Float" + } + } + } +} \ No newline at end of file diff --git a/timecost/n6/tabsyn/tabsyn-n6-20260429_052136/data/tabsyn_n6/test.csv b/timecost/n6/tabsyn/tabsyn-n6-20260429_052136/data/tabsyn_n6/test.csv new file mode 100644 index 0000000000000000000000000000000000000000..25108968eaf2c7995080c74fba26ca496d015c72 --- /dev/null +++ b/timecost/n6/tabsyn/tabsyn-n6-20260429_052136/data/tabsyn_n6/test.csv @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:c8545a9761061bd99d67935948928e2840e6ae4b5c9760cad2de82198676db2b +size 316902 diff --git a/timecost/n6/tabsyn/tabsyn-n6-20260429_052136/data/tabsyn_n6/train.csv b/timecost/n6/tabsyn/tabsyn-n6-20260429_052136/data/tabsyn_n6/train.csv new file mode 100644 index 0000000000000000000000000000000000000000..25108968eaf2c7995080c74fba26ca496d015c72 --- /dev/null +++ b/timecost/n6/tabsyn/tabsyn-n6-20260429_052136/data/tabsyn_n6/train.csv @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:c8545a9761061bd99d67935948928e2840e6ae4b5c9760cad2de82198676db2b +size 316902 diff --git a/timecost/n6/tabsyn/tabsyn-n6-20260429_052136/data/tabsyn_n6/y_test.npy b/timecost/n6/tabsyn/tabsyn-n6-20260429_052136/data/tabsyn_n6/y_test.npy new file mode 100644 index 0000000000000000000000000000000000000000..b44cca6b56b5ecae0540973ffe69514d4ff37721 --- /dev/null +++ b/timecost/n6/tabsyn/tabsyn-n6-20260429_052136/data/tabsyn_n6/y_test.npy @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:97393d3809ae16d894f9006baf863ca77c6821554a66538703164a9762c6d744 +size 51328 diff --git a/timecost/n6/tabsyn/tabsyn-n6-20260429_052136/data/tabsyn_n6/y_train.npy b/timecost/n6/tabsyn/tabsyn-n6-20260429_052136/data/tabsyn_n6/y_train.npy new file mode 100644 index 0000000000000000000000000000000000000000..b44cca6b56b5ecae0540973ffe69514d4ff37721 --- /dev/null +++ b/timecost/n6/tabsyn/tabsyn-n6-20260429_052136/data/tabsyn_n6/y_train.npy @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:97393d3809ae16d894f9006baf863ca77c6821554a66538703164a9762c6d744 +size 51328 diff --git a/timecost/n6/tabsyn/tabsyn-n6-20260429_052136/gen_20260429_060149.log b/timecost/n6/tabsyn/tabsyn-n6-20260429_052136/gen_20260429_060149.log new file mode 100644 index 0000000000000000000000000000000000000000..36dd8dbd536683ce352b89b8509216062542096f --- /dev/null +++ b/timecost/n6/tabsyn/tabsyn-n6-20260429_052136/gen_20260429_060149.log @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:bf500fb3847f15a00aeac701e79b409b936851f720cd8c20110d553d8dfe869f +size 930 diff --git a/timecost/n6/tabsyn/tabsyn-n6-20260429_052136/input_snapshot.json b/timecost/n6/tabsyn/tabsyn-n6-20260429_052136/input_snapshot.json new file mode 100644 index 0000000000000000000000000000000000000000..1a2485192326f9a07c6afe4ec2e99f6d33ffac06 --- /dev/null +++ b/timecost/n6/tabsyn/tabsyn-n6-20260429_052136/input_snapshot.json @@ -0,0 +1,36 @@ +{ + "dataset_id": "n6", + "model": "tabsyn", + "inputs": { + "train_csv": { + "path": "/data/jialinzhang/SynthesizePipeline-server/DatasetNew/n6/n6-train.csv", + "exists": true, + "size": 323303, + "sha256": "3b9d646393340b4c636db7686f2313521d84434e99ac1316b1053b05c995a3b1" + }, + "val_csv": { + "path": "/data/jialinzhang/SynthesizePipeline-server/DatasetNew/n6/n6-val.csv", + "exists": true, + "size": 40506, + "sha256": "74a01693febbfda57225ebbec2f7a9c22a2136edbec694b108b50c013cd6fe9d" + }, + "test_csv": { + "path": "/data/jialinzhang/SynthesizePipeline-server/DatasetNew/n6/n6-test.csv", + "exists": true, + "size": 40719, + "sha256": "46f32b813d7849636da5a0a7aa560ea062b8f5765772dc1a8268f756cdb2fbcc" + }, + "profile_json": { + "path": "/data/jialinzhang/SynthesizePipeline-server/DatasetNew/artifacts/data_core/tabular/n6/n6-dataset_profile.json", + "exists": true, + "size": 6559, + "sha256": "c3a4ba3662399f797ed5ac4ea171e2991e3f3ac9ea221ba345c132e11450d759" + }, + "contract_json": { + "path": "/data/jialinzhang/SynthesizePipeline-server/DatasetNew/artifacts/data_core/tabular/n6/n6-dataset_contract_v1.json", + "exists": true, + "size": 8304, + "sha256": "979119ea8d3be4588170ff59aa802156a0a5ecaf4312599a8b2998d38b69fba5" + } + } +} \ No newline at end of file diff --git a/timecost/n6/tabsyn/tabsyn-n6-20260429_052136/public_gate/normalized_schema_snapshot.json b/timecost/n6/tabsyn/tabsyn-n6-20260429_052136/public_gate/normalized_schema_snapshot.json new file mode 100644 index 0000000000000000000000000000000000000000..f37e46415bf96a79860f8cd9cdbfb764f9fbd0cb --- /dev/null +++ b/timecost/n6/tabsyn/tabsyn-n6-20260429_052136/public_gate/normalized_schema_snapshot.json @@ -0,0 +1,363 @@ +{ + "dataset_id": "n6", + "target_column": "y", + "task_type": "classification", + "columns": [ + { + "name": "X1", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 313, + "unique_ratio": 0.048906, + "example_values": [ + "2", + "6", + "-2", + "-15", + "3" + ] + } + }, + { + "name": "X2", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 328, + "unique_ratio": 0.05125, + "example_values": [ + "-3", + "1", + "16", + "-4", + "-12" + ] + } + }, + { + "name": "X3", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 316, + "unique_ratio": 0.049375, + "example_values": [ + "-7", + "-6", + "3", + "-22", + "13" + ] + } + }, + { + "name": "X4", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 323, + "unique_ratio": 0.050469, + "example_values": [ + "-6", + "-7", + "5", + "-5", + "-37" + ] + } + }, + { + "name": "X5", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 325, + "unique_ratio": 0.050781, + "example_values": [ + "-9", + "2", + "-12", + "-8", + "-63" + ] + } + }, + { + "name": "X6", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 325, + "unique_ratio": 0.050781, + "example_values": [ + "-6", + "-5", + "11", + "0", + "-86" + ] + } + }, + { + "name": "X7", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 332, + "unique_ratio": 0.051875, + "example_values": [ + "-1", + "-2", + "5", + "-4", + "-82" + ] + } + }, + { + "name": "X8", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 330, + "unique_ratio": 0.051562, + "example_values": [ + "3", + "-3", + "9", + "-9", + "-51" + ] + } + }, + { + "name": "X9", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 333, + "unique_ratio": 0.052031, + "example_values": [ + "1", + "19", + "0", + "-1", + "-30" + ] + } + }, + { + "name": "X10", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 334, + "unique_ratio": 0.052187, + "example_values": [ + "4", + "10", + "9", + "3", + "-13" + ] + } + }, + { + "name": "X11", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 328, + "unique_ratio": 0.05125, + "example_values": [ + "-4", + "-3", + "-1", + "-7", + "-20" + ] + } + }, + { + "name": "X12", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 324, + "unique_ratio": 0.050625, + "example_values": [ + "-5", + "-11", + "0", + "4", + "-29" + ] + } + }, + { + "name": "X13", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 332, + "unique_ratio": 0.051875, + "example_values": [ + "4", + "-6", + "6", + "9", + "-38" + ] + } + }, + { + "name": "X14", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 318, + "unique_ratio": 0.049688, + "example_values": [ + "1", + "30", + "11", + "-5", + "-29" + ] + } + }, + { + "name": "X15", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 324, + "unique_ratio": 0.050625, + "example_values": [ + "-8", + "4", + "-9", + "-6", + "-15" + ] + } + }, + { + "name": "X16", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 325, + "unique_ratio": 0.050781, + "example_values": [ + "-1", + "-13", + "0", + "1", + "-23" + ] + } + }, + { + "name": "y", + "role": "target", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 4, + "unique_ratio": 0.000625, + "example_values": [ + "2", + "1", + "0", + "3" + ] + } + } + ] +} \ No newline at end of file diff --git a/timecost/n6/tabsyn/tabsyn-n6-20260429_052136/public_gate/public_gate_report.json b/timecost/n6/tabsyn/tabsyn-n6-20260429_052136/public_gate/public_gate_report.json new file mode 100644 index 0000000000000000000000000000000000000000..a228c993845322a7356eef31ebce756cb39378ed --- /dev/null +++ b/timecost/n6/tabsyn/tabsyn-n6-20260429_052136/public_gate/public_gate_report.json @@ -0,0 +1,37 @@ +{ + "dataset_id": "n6", + "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": "y", + "task_type": "classification", + "input_splits": { + "train": "/data/jialinzhang/SynthesizePipeline-server/DatasetNew/n6/n6-train.csv", + "val": "/data/jialinzhang/SynthesizePipeline-server/DatasetNew/n6/n6-val.csv", + "test": "/data/jialinzhang/SynthesizePipeline-server/DatasetNew/n6/n6-test.csv" + } +} \ No newline at end of file diff --git a/timecost/n6/tabsyn/tabsyn-n6-20260429_052136/public_gate/staged_input_manifest.json b/timecost/n6/tabsyn/tabsyn-n6-20260429_052136/public_gate/staged_input_manifest.json new file mode 100644 index 0000000000000000000000000000000000000000..c3ee2e8ac430d14933f1ec76912d2cd3516bb2ed --- /dev/null +++ b/timecost/n6/tabsyn/tabsyn-n6-20260429_052136/public_gate/staged_input_manifest.json @@ -0,0 +1,368 @@ +{ + "dataset_id": "n6", + "target_column": "y", + "task_type": "classification", + "train_csv": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/n6/tabsyn/tabsyn-n6-20260429_052136/staged/public/train.csv", + "val_csv": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/n6/tabsyn/tabsyn-n6-20260429_052136/staged/public/val.csv", + "test_csv": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/n6/tabsyn/tabsyn-n6-20260429_052136/staged/public/test.csv", + "features_json": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/n6/tabsyn/tabsyn-n6-20260429_052136/staged/public/staged_features.json", + "public_gate_report": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/n6/tabsyn/tabsyn-n6-20260429_052136/public_gate/public_gate_report.json", + "column_schema": [ + { + "name": "X1", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 313, + "unique_ratio": 0.048906, + "example_values": [ + "2", + "6", + "-2", + "-15", + "3" + ] + } + }, + { + "name": "X2", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 328, + "unique_ratio": 0.05125, + "example_values": [ + "-3", + "1", + "16", + "-4", + "-12" + ] + } + }, + { + "name": "X3", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 316, + "unique_ratio": 0.049375, + "example_values": [ + "-7", + "-6", + "3", + "-22", + "13" + ] + } + }, + { + "name": "X4", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 323, + "unique_ratio": 0.050469, + "example_values": [ + "-6", + "-7", + "5", + "-5", + "-37" + ] + } + }, + { + "name": "X5", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 325, + "unique_ratio": 0.050781, + "example_values": [ + "-9", + "2", + "-12", + "-8", + "-63" + ] + } + }, + { + "name": "X6", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 325, + "unique_ratio": 0.050781, + "example_values": [ + "-6", + "-5", + "11", + "0", + "-86" + ] + } + }, + { + "name": "X7", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 332, + "unique_ratio": 0.051875, + "example_values": [ + "-1", + "-2", + "5", + "-4", + "-82" + ] + } + }, + { + "name": "X8", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 330, + "unique_ratio": 0.051562, + "example_values": [ + "3", + "-3", + "9", + "-9", + "-51" + ] + } + }, + { + "name": "X9", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 333, + "unique_ratio": 0.052031, + "example_values": [ + "1", + "19", + "0", + "-1", + "-30" + ] + } + }, + { + "name": "X10", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 334, + "unique_ratio": 0.052187, + "example_values": [ + "4", + "10", + "9", + "3", + "-13" + ] + } + }, + { + "name": "X11", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 328, + "unique_ratio": 0.05125, + "example_values": [ + "-4", + "-3", + "-1", + "-7", + "-20" + ] + } + }, + { + "name": "X12", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 324, + "unique_ratio": 0.050625, + "example_values": [ + "-5", + "-11", + "0", + "4", + "-29" + ] + } + }, + { + "name": "X13", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 332, + "unique_ratio": 0.051875, + "example_values": [ + "4", + "-6", + "6", + "9", + "-38" + ] + } + }, + { + "name": "X14", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 318, + "unique_ratio": 0.049688, + "example_values": [ + "1", + "30", + "11", + "-5", + "-29" + ] + } + }, + { + "name": "X15", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 324, + "unique_ratio": 0.050625, + "example_values": [ + "-8", + "4", + "-9", + "-6", + "-15" + ] + } + }, + { + "name": "X16", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 325, + "unique_ratio": 0.050781, + "example_values": [ + "-1", + "-13", + "0", + "1", + "-23" + ] + } + }, + { + "name": "y", + "role": "target", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 4, + "unique_ratio": 0.000625, + "example_values": [ + "2", + "1", + "0", + "3" + ] + } + } + ] +} \ No newline at end of file diff --git a/timecost/n6/tabsyn/tabsyn-n6-20260429_052136/runtime_result.json b/timecost/n6/tabsyn/tabsyn-n6-20260429_052136/runtime_result.json new file mode 100644 index 0000000000000000000000000000000000000000..12e2bc8013d0dcd27ac054ada8bab1c14da35057 --- /dev/null +++ b/timecost/n6/tabsyn/tabsyn-n6-20260429_052136/runtime_result.json @@ -0,0 +1,15 @@ +{ + "dataset_id": "n6", + "model": "tabsyn", + "run_id": "tabsyn-n6-20260429_052136", + "public_gate_status": "pass", + "adapter_ready_status": "pass", + "train_status": "success", + "generate_status": "success", + "reason_code": null, + "reason_detail": null, + "artifacts": { + "synthetic_csv": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/n6/tabsyn/tabsyn-n6-20260429_052136/tabsyn-n6-6400-20260429_060149.csv", + "model_path": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/n6/tabsyn/tabsyn-n6-20260429_052136" + } +} \ No newline at end of file diff --git a/timecost/n6/tabsyn/tabsyn-n6-20260429_052136/staged/public/staged_features.json b/timecost/n6/tabsyn/tabsyn-n6-20260429_052136/staged/public/staged_features.json new file mode 100644 index 0000000000000000000000000000000000000000..13d0b8c66a07bb8f5aa06667e153a85656dae7d8 --- /dev/null +++ b/timecost/n6/tabsyn/tabsyn-n6-20260429_052136/staged/public/staged_features.json @@ -0,0 +1,87 @@ +[ + { + "feature_name": "X1", + "data_type": "continuous", + "is_target": false + }, + { + "feature_name": "X2", + "data_type": "continuous", + "is_target": false + }, + { + "feature_name": "X3", + "data_type": "continuous", + "is_target": false + }, + { + "feature_name": "X4", + "data_type": "continuous", + "is_target": false + }, + { + "feature_name": "X5", + "data_type": "continuous", + "is_target": false + }, + { + "feature_name": "X6", + "data_type": "continuous", + "is_target": false + }, + { + "feature_name": "X7", + "data_type": "continuous", + "is_target": false + }, + { + "feature_name": "X8", + "data_type": "continuous", + "is_target": false + }, + { + "feature_name": "X9", + "data_type": "continuous", + "is_target": false + }, + { + "feature_name": "X10", + "data_type": "continuous", + "is_target": false + }, + { + "feature_name": "X11", + "data_type": "continuous", + "is_target": false + }, + { + "feature_name": "X12", + "data_type": "continuous", + "is_target": false + }, + { + "feature_name": "X13", + "data_type": "continuous", + "is_target": false + }, + { + "feature_name": "X14", + "data_type": "continuous", + "is_target": false + }, + { + "feature_name": "X15", + "data_type": "continuous", + "is_target": false + }, + { + "feature_name": "X16", + "data_type": "continuous", + "is_target": false + }, + { + "feature_name": "y", + "data_type": "continuous", + "is_target": true + } +] \ No newline at end of file diff --git a/timecost/n6/tabsyn/tabsyn-n6-20260429_052136/staged/public/test.csv b/timecost/n6/tabsyn/tabsyn-n6-20260429_052136/staged/public/test.csv new file mode 100644 index 0000000000000000000000000000000000000000..64d039a1664b74ef81240a9ba69ab982a78be184 --- /dev/null +++ b/timecost/n6/tabsyn/tabsyn-n6-20260429_052136/staged/public/test.csv @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:f1922293e501d8f17f56a321a1305e44d20a6ad7ed67e97af754dea170989fc5 +size 39918 diff --git a/timecost/n6/tabsyn/tabsyn-n6-20260429_052136/staged/public/train.csv b/timecost/n6/tabsyn/tabsyn-n6-20260429_052136/staged/public/train.csv new file mode 100644 index 0000000000000000000000000000000000000000..25108968eaf2c7995080c74fba26ca496d015c72 --- /dev/null +++ b/timecost/n6/tabsyn/tabsyn-n6-20260429_052136/staged/public/train.csv @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:c8545a9761061bd99d67935948928e2840e6ae4b5c9760cad2de82198676db2b +size 316902 diff --git a/timecost/n6/tabsyn/tabsyn-n6-20260429_052136/staged/public/val.csv b/timecost/n6/tabsyn/tabsyn-n6-20260429_052136/staged/public/val.csv new file mode 100644 index 0000000000000000000000000000000000000000..933b52194b2ae481787d393e22f1a96acb482a5a --- /dev/null +++ b/timecost/n6/tabsyn/tabsyn-n6-20260429_052136/staged/public/val.csv @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:60a3dd7f655f8086e53402dcdcfa42297d586d8483f2afd6e1bbc6bd3521303f +size 39705 diff --git a/timecost/n6/tabsyn/tabsyn-n6-20260429_052136/staged/tabsyn/adapter_report.json b/timecost/n6/tabsyn/tabsyn-n6-20260429_052136/staged/tabsyn/adapter_report.json new file mode 100644 index 0000000000000000000000000000000000000000..bde2f4230d45cc63db77c6db1e60dfaf588a646e --- /dev/null +++ b/timecost/n6/tabsyn/tabsyn-n6-20260429_052136/staged/tabsyn/adapter_report.json @@ -0,0 +1,7 @@ +{ + "adapter_ready_status": "pass", + "adapter_fail_reason_code": null, + "adapter_fail_detail": null, + "adapter_transforms_applied": [], + "model_input_manifest": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/n6/tabsyn/tabsyn-n6-20260429_052136/staged/tabsyn/model_input_manifest.json" +} \ No newline at end of file diff --git a/timecost/n6/tabsyn/tabsyn-n6-20260429_052136/staged/tabsyn/adapter_transforms_applied.json b/timecost/n6/tabsyn/tabsyn-n6-20260429_052136/staged/tabsyn/adapter_transforms_applied.json new file mode 100644 index 0000000000000000000000000000000000000000..0637a088a01e8ddab3bf3fa98dbe804cbde1a0dc --- /dev/null +++ b/timecost/n6/tabsyn/tabsyn-n6-20260429_052136/staged/tabsyn/adapter_transforms_applied.json @@ -0,0 +1 @@ +[] \ No newline at end of file diff --git a/timecost/n6/tabsyn/tabsyn-n6-20260429_052136/staged/tabsyn/model_input_manifest.json b/timecost/n6/tabsyn/tabsyn-n6-20260429_052136/staged/tabsyn/model_input_manifest.json new file mode 100644 index 0000000000000000000000000000000000000000..a02998b0e991257ae46b9924458bb93d7d5cd170 --- /dev/null +++ b/timecost/n6/tabsyn/tabsyn-n6-20260429_052136/staged/tabsyn/model_input_manifest.json @@ -0,0 +1,370 @@ +{ + "dataset_id": "n6", + "model": "tabsyn", + "target_column": "y", + "task_type": "classification", + "column_schema": [ + { + "name": "X1", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 313, + "unique_ratio": 0.048906, + "example_values": [ + "2", + "6", + "-2", + "-15", + "3" + ] + } + }, + { + "name": "X2", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 328, + "unique_ratio": 0.05125, + "example_values": [ + "-3", + "1", + "16", + "-4", + "-12" + ] + } + }, + { + "name": "X3", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 316, + "unique_ratio": 0.049375, + "example_values": [ + "-7", + "-6", + "3", + "-22", + "13" + ] + } + }, + { + "name": "X4", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 323, + "unique_ratio": 0.050469, + "example_values": [ + "-6", + "-7", + "5", + "-5", + "-37" + ] + } + }, + { + "name": "X5", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 325, + "unique_ratio": 0.050781, + "example_values": [ + "-9", + "2", + "-12", + "-8", + "-63" + ] + } + }, + { + "name": "X6", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 325, + "unique_ratio": 0.050781, + "example_values": [ + "-6", + "-5", + "11", + "0", + "-86" + ] + } + }, + { + "name": "X7", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 332, + "unique_ratio": 0.051875, + "example_values": [ + "-1", + "-2", + "5", + "-4", + "-82" + ] + } + }, + { + "name": "X8", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 330, + "unique_ratio": 0.051562, + "example_values": [ + "3", + "-3", + "9", + "-9", + "-51" + ] + } + }, + { + "name": "X9", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 333, + "unique_ratio": 0.052031, + "example_values": [ + "1", + "19", + "0", + "-1", + "-30" + ] + } + }, + { + "name": "X10", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 334, + "unique_ratio": 0.052187, + "example_values": [ + "4", + "10", + "9", + "3", + "-13" + ] + } + }, + { + "name": "X11", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 328, + "unique_ratio": 0.05125, + "example_values": [ + "-4", + "-3", + "-1", + "-7", + "-20" + ] + } + }, + { + "name": "X12", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 324, + "unique_ratio": 0.050625, + "example_values": [ + "-5", + "-11", + "0", + "4", + "-29" + ] + } + }, + { + "name": "X13", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 332, + "unique_ratio": 0.051875, + "example_values": [ + "4", + "-6", + "6", + "9", + "-38" + ] + } + }, + { + "name": "X14", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 318, + "unique_ratio": 0.049688, + "example_values": [ + "1", + "30", + "11", + "-5", + "-29" + ] + } + }, + { + "name": "X15", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 324, + "unique_ratio": 0.050625, + "example_values": [ + "-8", + "4", + "-9", + "-6", + "-15" + ] + } + }, + { + "name": "X16", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 325, + "unique_ratio": 0.050781, + "example_values": [ + "-1", + "-13", + "0", + "1", + "-23" + ] + } + }, + { + "name": "y", + "role": "target", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 4, + "unique_ratio": 0.000625, + "example_values": [ + "2", + "1", + "0", + "3" + ] + } + } + ], + "public_manifest": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/n6/tabsyn/tabsyn-n6-20260429_052136/public_gate/staged_input_manifest.json", + "train_csv": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/n6/tabsyn/tabsyn-n6-20260429_052136/staged/public/train.csv", + "val_csv": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/n6/tabsyn/tabsyn-n6-20260429_052136/staged/public/val.csv", + "test_csv": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/n6/tabsyn/tabsyn-n6-20260429_052136/staged/public/test.csv", + "features_json": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/n6/tabsyn/tabsyn-n6-20260429_052136/staged/public/staged_features.json", + "public_gate_report": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/n6/tabsyn/tabsyn-n6-20260429_052136/public_gate/public_gate_report.json" +} \ No newline at end of file diff --git a/timecost/n6/tabsyn/tabsyn-n6-20260429_052136/synthetic/tabsyn_n6/real.csv b/timecost/n6/tabsyn/tabsyn-n6-20260429_052136/synthetic/tabsyn_n6/real.csv new file mode 100644 index 0000000000000000000000000000000000000000..25108968eaf2c7995080c74fba26ca496d015c72 --- /dev/null +++ b/timecost/n6/tabsyn/tabsyn-n6-20260429_052136/synthetic/tabsyn_n6/real.csv @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:c8545a9761061bd99d67935948928e2840e6ae4b5c9760cad2de82198676db2b +size 316902 diff --git a/timecost/n6/tabsyn/tabsyn-n6-20260429_052136/synthetic/tabsyn_n6/test.csv b/timecost/n6/tabsyn/tabsyn-n6-20260429_052136/synthetic/tabsyn_n6/test.csv new file mode 100644 index 0000000000000000000000000000000000000000..25108968eaf2c7995080c74fba26ca496d015c72 --- /dev/null +++ b/timecost/n6/tabsyn/tabsyn-n6-20260429_052136/synthetic/tabsyn_n6/test.csv @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:c8545a9761061bd99d67935948928e2840e6ae4b5c9760cad2de82198676db2b +size 316902 diff --git a/timecost/n6/tabsyn/tabsyn-n6-20260429_052136/tabsyn-n6-6400-20260429_060149.csv b/timecost/n6/tabsyn/tabsyn-n6-20260429_052136/tabsyn-n6-6400-20260429_060149.csv new file mode 100644 index 0000000000000000000000000000000000000000..c309a6483042b7ce47af2a1162aa1bb741c19867 --- /dev/null +++ b/timecost/n6/tabsyn/tabsyn-n6-20260429_052136/tabsyn-n6-6400-20260429_060149.csv @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:657d5c56d956f5704e150bf4143fe781ff8d9ad6580a0817ef0dccd30ad8bf13 +size 739041 diff --git a/timecost/n6/tabsyn/tabsyn-n6-20260429_052136/train_20260429_052136.log b/timecost/n6/tabsyn/tabsyn-n6-20260429_052136/train_20260429_052136.log new file mode 100644 index 0000000000000000000000000000000000000000..44cb7dbc876e1abdec0afe2b28b315fb4af706b2 --- /dev/null +++ b/timecost/n6/tabsyn/tabsyn-n6-20260429_052136/train_20260429_052136.log @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:972507424226fc6185aeeec4344d8d8b482886c49f06bdbd33f8ddd493887ad8 +size 2347813 diff --git a/timecost/n6/tvae/tvae-n6-20260429_031938/_tvae_generate.py b/timecost/n6/tvae/tvae-n6-20260429_031938/_tvae_generate.py new file mode 100644 index 0000000000000000000000000000000000000000..13d46b511588db3010384ffa8edc99b6969f0641 --- /dev/null +++ b/timecost/n6/tvae/tvae-n6-20260429_031938/_tvae_generate.py @@ -0,0 +1,23 @@ +import os, sys +sys.path.insert(0, "/work") +from src.SpecificModels.ctgan_joblib_parallel_cap import apply_parallel_cap_from_env +apply_parallel_cap_from_env() +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 +os.environ.setdefault("LOKY_MAX_CPU_COUNT", "8") +os.environ.setdefault("OPENBLAS_NUM_THREADS", "8") +os.environ.setdefault("MKL_NUM_THREADS", "8") +model = TVAE.load("/work/output-Benchmark-trainonly-v1/n6/tvae/tvae-n6-20260429_031938/models_300epochs/tvae_300epochs.pt") +total = 6400 +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-Benchmark-trainonly-v1/n6/tvae/tvae-n6-20260429_031938/tvae-n6-6400-20260429_032109.csv", index=False) +print(f"[TVAE] Generated {total} rows (chunks={len(parts)}) -> /work/output-Benchmark-trainonly-v1/n6/tvae/tvae-n6-20260429_031938/tvae-n6-6400-20260429_032109.csv") diff --git a/timecost/n6/tvae/tvae-n6-20260429_031938/_tvae_train.py b/timecost/n6/tvae/tvae-n6-20260429_031938/_tvae_train.py new file mode 100644 index 0000000000000000000000000000000000000000..a0ba5846da17d7ab5065a35f8b6e78c234c97ed1 --- /dev/null +++ b/timecost/n6/tvae/tvae-n6-20260429_031938/_tvae_train.py @@ -0,0 +1,30 @@ +import json, os, sys +sys.path.insert(0, "/work") +from src.SpecificModels.ctgan_joblib_parallel_cap import apply_parallel_cap_from_env +apply_parallel_cap_from_env() +import pandas as pd +from ctgan.data import read_csv +from ctgan.synthesizers.tvae import TVAE + +# Keep transform stage parallelism bounded for stability on shared host. +os.environ.setdefault("LOKY_MAX_CPU_COUNT", "8") +os.environ.setdefault("OPENBLAS_NUM_THREADS", "8") +os.environ.setdefault("MKL_NUM_THREADS", "8") +_nj = (os.environ.get("TVAE_CTGAN_JOBTRANS_N_JOBS") or "").strip() +if _nj: + print("[TVAE] joblib Parallel cap ON, TVAE_CTGAN_JOBTRANS_N_JOBS=" + _nj) +else: + print("[TVAE] joblib Parallel cap OFF (unset TVAE_CTGAN_JOBTRANS_N_JOBS)") +print("[TVAE] LOKY_MAX_CPU_COUNT=" + str(os.environ.get("LOKY_MAX_CPU_COUNT", ""))) + +csv_path = "/work/output-Benchmark-trainonly-v1/n6/tvae/tvae-n6-20260429_031938/staged/public/train.csv" +meta_path = "/work/output-Benchmark-trainonly-v1/n6/tvae/tvae-n6-20260429_031938/tvae_metadata.json" +save_path = "/work/output-Benchmark-trainonly-v1/n6/tvae/tvae-n6-20260429_031938/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/timecost/n6/tvae/tvae-n6-20260429_031938/gen_20260429_032109.log b/timecost/n6/tvae/tvae-n6-20260429_031938/gen_20260429_032109.log new file mode 100644 index 0000000000000000000000000000000000000000..bb405adc4fc20da4bf6420b05ff352fa25f12b0b --- /dev/null +++ b/timecost/n6/tvae/tvae-n6-20260429_031938/gen_20260429_032109.log @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:5195b5d01c3f8c8a54b50e37de818f5982c69cd76589c2e35784e98a689bdba5 +size 405 diff --git a/timecost/n6/tvae/tvae-n6-20260429_031938/input_snapshot.json b/timecost/n6/tvae/tvae-n6-20260429_031938/input_snapshot.json new file mode 100644 index 0000000000000000000000000000000000000000..6332d531037a5b77b5d90ed175da803757b2ea8f --- /dev/null +++ b/timecost/n6/tvae/tvae-n6-20260429_031938/input_snapshot.json @@ -0,0 +1,36 @@ +{ + "dataset_id": "n6", + "model": "tvae", + "inputs": { + "train_csv": { + "path": "/data/jialinzhang/SynthesizePipeline-server/DatasetNew/n6/n6-train.csv", + "exists": true, + "size": 323303, + "sha256": "3b9d646393340b4c636db7686f2313521d84434e99ac1316b1053b05c995a3b1" + }, + "val_csv": { + "path": "/data/jialinzhang/SynthesizePipeline-server/DatasetNew/n6/n6-val.csv", + "exists": true, + "size": 40506, + "sha256": "74a01693febbfda57225ebbec2f7a9c22a2136edbec694b108b50c013cd6fe9d" + }, + "test_csv": { + "path": "/data/jialinzhang/SynthesizePipeline-server/DatasetNew/n6/n6-test.csv", + "exists": true, + "size": 40719, + "sha256": "46f32b813d7849636da5a0a7aa560ea062b8f5765772dc1a8268f756cdb2fbcc" + }, + "profile_json": { + "path": "/data/jialinzhang/SynthesizePipeline-server/DatasetNew/artifacts/data_core/tabular/n6/n6-dataset_profile.json", + "exists": true, + "size": 6559, + "sha256": "c3a4ba3662399f797ed5ac4ea171e2991e3f3ac9ea221ba345c132e11450d759" + }, + "contract_json": { + "path": "/data/jialinzhang/SynthesizePipeline-server/DatasetNew/artifacts/data_core/tabular/n6/n6-dataset_contract_v1.json", + "exists": true, + "size": 8304, + "sha256": "979119ea8d3be4588170ff59aa802156a0a5ecaf4312599a8b2998d38b69fba5" + } + } +} \ No newline at end of file diff --git a/timecost/n6/tvae/tvae-n6-20260429_031938/models_300epochs/train_20260429_031938.log b/timecost/n6/tvae/tvae-n6-20260429_031938/models_300epochs/train_20260429_031938.log new file mode 100644 index 0000000000000000000000000000000000000000..eb657f059712310a2d9a3d6208ae9006e7c31428 --- /dev/null +++ b/timecost/n6/tvae/tvae-n6-20260429_031938/models_300epochs/train_20260429_031938.log @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:f5786676930cf781f1319b69d88fc1a991ba8ba4f1f7e7d1b3652968ac12dd1b +size 532 diff --git a/timecost/n6/tvae/tvae-n6-20260429_031938/models_300epochs/tvae_300epochs.pt b/timecost/n6/tvae/tvae-n6-20260429_031938/models_300epochs/tvae_300epochs.pt new file mode 100644 index 0000000000000000000000000000000000000000..6e0c5eb1e17b4344ae1077aecf51316c436dd53a --- /dev/null +++ b/timecost/n6/tvae/tvae-n6-20260429_031938/models_300epochs/tvae_300epochs.pt @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:5dc7bdc9f8ed20cd0c6ecece4b1b7ad2b4bda7703a352789ea5288259961880b +size 873964 diff --git a/timecost/n6/tvae/tvae-n6-20260429_031938/public_gate/normalized_schema_snapshot.json b/timecost/n6/tvae/tvae-n6-20260429_031938/public_gate/normalized_schema_snapshot.json new file mode 100644 index 0000000000000000000000000000000000000000..f37e46415bf96a79860f8cd9cdbfb764f9fbd0cb --- /dev/null +++ b/timecost/n6/tvae/tvae-n6-20260429_031938/public_gate/normalized_schema_snapshot.json @@ -0,0 +1,363 @@ +{ + "dataset_id": "n6", + "target_column": "y", + "task_type": "classification", + "columns": [ + { + "name": "X1", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 313, + "unique_ratio": 0.048906, + "example_values": [ + "2", + "6", + "-2", + "-15", + "3" + ] + } + }, + { + "name": "X2", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 328, + "unique_ratio": 0.05125, + "example_values": [ + "-3", + "1", + "16", + "-4", + "-12" + ] + } + }, + { + "name": "X3", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 316, + "unique_ratio": 0.049375, + "example_values": [ + "-7", + "-6", + "3", + "-22", + "13" + ] + } + }, + { + "name": "X4", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 323, + "unique_ratio": 0.050469, + "example_values": [ + "-6", + "-7", + "5", + "-5", + "-37" + ] + } + }, + { + "name": "X5", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 325, + "unique_ratio": 0.050781, + "example_values": [ + "-9", + "2", + "-12", + "-8", + "-63" + ] + } + }, + { + "name": "X6", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 325, + "unique_ratio": 0.050781, + "example_values": [ + "-6", + "-5", + "11", + "0", + "-86" + ] + } + }, + { + "name": "X7", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 332, + "unique_ratio": 0.051875, + "example_values": [ + "-1", + "-2", + "5", + "-4", + "-82" + ] + } + }, + { + "name": "X8", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 330, + "unique_ratio": 0.051562, + "example_values": [ + "3", + "-3", + "9", + "-9", + "-51" + ] + } + }, + { + "name": "X9", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 333, + "unique_ratio": 0.052031, + "example_values": [ + "1", + "19", + "0", + "-1", + "-30" + ] + } + }, + { + "name": "X10", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 334, + "unique_ratio": 0.052187, + "example_values": [ + "4", + "10", + "9", + "3", + "-13" + ] + } + }, + { + "name": "X11", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 328, + "unique_ratio": 0.05125, + "example_values": [ + "-4", + "-3", + "-1", + "-7", + "-20" + ] + } + }, + { + "name": "X12", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 324, + "unique_ratio": 0.050625, + "example_values": [ + "-5", + "-11", + "0", + "4", + "-29" + ] + } + }, + { + "name": "X13", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 332, + "unique_ratio": 0.051875, + "example_values": [ + "4", + "-6", + "6", + "9", + "-38" + ] + } + }, + { + "name": "X14", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 318, + "unique_ratio": 0.049688, + "example_values": [ + "1", + "30", + "11", + "-5", + "-29" + ] + } + }, + { + "name": "X15", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 324, + "unique_ratio": 0.050625, + "example_values": [ + "-8", + "4", + "-9", + "-6", + "-15" + ] + } + }, + { + "name": "X16", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 325, + "unique_ratio": 0.050781, + "example_values": [ + "-1", + "-13", + "0", + "1", + "-23" + ] + } + }, + { + "name": "y", + "role": "target", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 4, + "unique_ratio": 0.000625, + "example_values": [ + "2", + "1", + "0", + "3" + ] + } + } + ] +} \ No newline at end of file diff --git a/timecost/n6/tvae/tvae-n6-20260429_031938/public_gate/public_gate_report.json b/timecost/n6/tvae/tvae-n6-20260429_031938/public_gate/public_gate_report.json new file mode 100644 index 0000000000000000000000000000000000000000..a228c993845322a7356eef31ebce756cb39378ed --- /dev/null +++ b/timecost/n6/tvae/tvae-n6-20260429_031938/public_gate/public_gate_report.json @@ -0,0 +1,37 @@ +{ + "dataset_id": "n6", + "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": "y", + "task_type": "classification", + "input_splits": { + "train": "/data/jialinzhang/SynthesizePipeline-server/DatasetNew/n6/n6-train.csv", + "val": "/data/jialinzhang/SynthesizePipeline-server/DatasetNew/n6/n6-val.csv", + "test": "/data/jialinzhang/SynthesizePipeline-server/DatasetNew/n6/n6-test.csv" + } +} \ No newline at end of file diff --git a/timecost/n6/tvae/tvae-n6-20260429_031938/public_gate/staged_input_manifest.json b/timecost/n6/tvae/tvae-n6-20260429_031938/public_gate/staged_input_manifest.json new file mode 100644 index 0000000000000000000000000000000000000000..7cf2d6b2824faa224bfb25521dff56cab1d082f1 --- /dev/null +++ b/timecost/n6/tvae/tvae-n6-20260429_031938/public_gate/staged_input_manifest.json @@ -0,0 +1,368 @@ +{ + "dataset_id": "n6", + "target_column": "y", + "task_type": "classification", + "train_csv": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/n6/tvae/tvae-n6-20260429_031938/staged/public/train.csv", + "val_csv": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/n6/tvae/tvae-n6-20260429_031938/staged/public/val.csv", + "test_csv": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/n6/tvae/tvae-n6-20260429_031938/staged/public/test.csv", + "features_json": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/n6/tvae/tvae-n6-20260429_031938/staged/public/staged_features.json", + "public_gate_report": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/n6/tvae/tvae-n6-20260429_031938/public_gate/public_gate_report.json", + "column_schema": [ + { + "name": "X1", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 313, + "unique_ratio": 0.048906, + "example_values": [ + "2", + "6", + "-2", + "-15", + "3" + ] + } + }, + { + "name": "X2", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 328, + "unique_ratio": 0.05125, + "example_values": [ + "-3", + "1", + "16", + "-4", + "-12" + ] + } + }, + { + "name": "X3", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 316, + "unique_ratio": 0.049375, + "example_values": [ + "-7", + "-6", + "3", + "-22", + "13" + ] + } + }, + { + "name": "X4", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 323, + "unique_ratio": 0.050469, + "example_values": [ + "-6", + "-7", + "5", + "-5", + "-37" + ] + } + }, + { + "name": "X5", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 325, + "unique_ratio": 0.050781, + "example_values": [ + "-9", + "2", + "-12", + "-8", + "-63" + ] + } + }, + { + "name": "X6", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 325, + "unique_ratio": 0.050781, + "example_values": [ + "-6", + "-5", + "11", + "0", + "-86" + ] + } + }, + { + "name": "X7", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 332, + "unique_ratio": 0.051875, + "example_values": [ + "-1", + "-2", + "5", + "-4", + "-82" + ] + } + }, + { + "name": "X8", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 330, + "unique_ratio": 0.051562, + "example_values": [ + "3", + "-3", + "9", + "-9", + "-51" + ] + } + }, + { + "name": "X9", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 333, + "unique_ratio": 0.052031, + "example_values": [ + "1", + "19", + "0", + "-1", + "-30" + ] + } + }, + { + "name": "X10", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 334, + "unique_ratio": 0.052187, + "example_values": [ + "4", + "10", + "9", + "3", + "-13" + ] + } + }, + { + "name": "X11", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 328, + "unique_ratio": 0.05125, + "example_values": [ + "-4", + "-3", + "-1", + "-7", + "-20" + ] + } + }, + { + "name": "X12", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 324, + "unique_ratio": 0.050625, + "example_values": [ + "-5", + "-11", + "0", + "4", + "-29" + ] + } + }, + { + "name": "X13", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 332, + "unique_ratio": 0.051875, + "example_values": [ + "4", + "-6", + "6", + "9", + "-38" + ] + } + }, + { + "name": "X14", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 318, + "unique_ratio": 0.049688, + "example_values": [ + "1", + "30", + "11", + "-5", + "-29" + ] + } + }, + { + "name": "X15", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 324, + "unique_ratio": 0.050625, + "example_values": [ + "-8", + "4", + "-9", + "-6", + "-15" + ] + } + }, + { + "name": "X16", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 325, + "unique_ratio": 0.050781, + "example_values": [ + "-1", + "-13", + "0", + "1", + "-23" + ] + } + }, + { + "name": "y", + "role": "target", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 4, + "unique_ratio": 0.000625, + "example_values": [ + "2", + "1", + "0", + "3" + ] + } + } + ] +} \ No newline at end of file diff --git a/timecost/n6/tvae/tvae-n6-20260429_031938/runtime_result.json b/timecost/n6/tvae/tvae-n6-20260429_031938/runtime_result.json new file mode 100644 index 0000000000000000000000000000000000000000..fdfe3964bbf61130a8d2e51e1713c5c2e4ae59f0 --- /dev/null +++ b/timecost/n6/tvae/tvae-n6-20260429_031938/runtime_result.json @@ -0,0 +1,15 @@ +{ + "dataset_id": "n6", + "model": "tvae", + "run_id": "tvae-n6-20260429_031938", + "public_gate_status": "pass", + "adapter_ready_status": "pass", + "train_status": "success", + "generate_status": "success", + "reason_code": null, + "reason_detail": null, + "artifacts": { + "synthetic_csv": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/n6/tvae/tvae-n6-20260429_031938/tvae-n6-6400-20260429_032109.csv", + "model_path": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/n6/tvae/tvae-n6-20260429_031938/models_300epochs/tvae_300epochs.pt" + } +} \ No newline at end of file diff --git a/timecost/n6/tvae/tvae-n6-20260429_031938/staged/public/staged_features.json b/timecost/n6/tvae/tvae-n6-20260429_031938/staged/public/staged_features.json new file mode 100644 index 0000000000000000000000000000000000000000..13d0b8c66a07bb8f5aa06667e153a85656dae7d8 --- /dev/null +++ b/timecost/n6/tvae/tvae-n6-20260429_031938/staged/public/staged_features.json @@ -0,0 +1,87 @@ +[ + { + "feature_name": "X1", + "data_type": "continuous", + "is_target": false + }, + { + "feature_name": "X2", + "data_type": "continuous", + "is_target": false + }, + { + "feature_name": "X3", + "data_type": "continuous", + "is_target": false + }, + { + "feature_name": "X4", + "data_type": "continuous", + "is_target": false + }, + { + "feature_name": "X5", + "data_type": "continuous", + "is_target": false + }, + { + "feature_name": "X6", + "data_type": "continuous", + "is_target": false + }, + { + "feature_name": "X7", + "data_type": "continuous", + "is_target": false + }, + { + "feature_name": "X8", + "data_type": "continuous", + "is_target": false + }, + { + "feature_name": "X9", + "data_type": "continuous", + "is_target": false + }, + { + "feature_name": "X10", + "data_type": "continuous", + "is_target": false + }, + { + "feature_name": "X11", + "data_type": "continuous", + "is_target": false + }, + { + "feature_name": "X12", + "data_type": "continuous", + "is_target": false + }, + { + "feature_name": "X13", + "data_type": "continuous", + "is_target": false + }, + { + "feature_name": "X14", + "data_type": "continuous", + "is_target": false + }, + { + "feature_name": "X15", + "data_type": "continuous", + "is_target": false + }, + { + "feature_name": "X16", + "data_type": "continuous", + "is_target": false + }, + { + "feature_name": "y", + "data_type": "continuous", + "is_target": true + } +] \ No newline at end of file diff --git a/timecost/n6/tvae/tvae-n6-20260429_031938/staged/public/test.csv b/timecost/n6/tvae/tvae-n6-20260429_031938/staged/public/test.csv new file mode 100644 index 0000000000000000000000000000000000000000..64d039a1664b74ef81240a9ba69ab982a78be184 --- /dev/null +++ b/timecost/n6/tvae/tvae-n6-20260429_031938/staged/public/test.csv @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:f1922293e501d8f17f56a321a1305e44d20a6ad7ed67e97af754dea170989fc5 +size 39918 diff --git a/timecost/n6/tvae/tvae-n6-20260429_031938/staged/public/train.csv b/timecost/n6/tvae/tvae-n6-20260429_031938/staged/public/train.csv new file mode 100644 index 0000000000000000000000000000000000000000..25108968eaf2c7995080c74fba26ca496d015c72 --- /dev/null +++ b/timecost/n6/tvae/tvae-n6-20260429_031938/staged/public/train.csv @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:c8545a9761061bd99d67935948928e2840e6ae4b5c9760cad2de82198676db2b +size 316902 diff --git a/timecost/n6/tvae/tvae-n6-20260429_031938/staged/public/val.csv b/timecost/n6/tvae/tvae-n6-20260429_031938/staged/public/val.csv new file mode 100644 index 0000000000000000000000000000000000000000..933b52194b2ae481787d393e22f1a96acb482a5a --- /dev/null +++ b/timecost/n6/tvae/tvae-n6-20260429_031938/staged/public/val.csv @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:60a3dd7f655f8086e53402dcdcfa42297d586d8483f2afd6e1bbc6bd3521303f +size 39705 diff --git a/timecost/n6/tvae/tvae-n6-20260429_031938/staged/tvae/adapter_report.json b/timecost/n6/tvae/tvae-n6-20260429_031938/staged/tvae/adapter_report.json new file mode 100644 index 0000000000000000000000000000000000000000..d6e9a8f384df45360c93ca5045c087af383cfdc7 --- /dev/null +++ b/timecost/n6/tvae/tvae-n6-20260429_031938/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-Benchmark-trainonly-v1/n6/tvae/tvae-n6-20260429_031938/staged/tvae/model_input_manifest.json" +} \ No newline at end of file diff --git a/timecost/n6/tvae/tvae-n6-20260429_031938/staged/tvae/adapter_transforms_applied.json b/timecost/n6/tvae/tvae-n6-20260429_031938/staged/tvae/adapter_transforms_applied.json new file mode 100644 index 0000000000000000000000000000000000000000..0637a088a01e8ddab3bf3fa98dbe804cbde1a0dc --- /dev/null +++ b/timecost/n6/tvae/tvae-n6-20260429_031938/staged/tvae/adapter_transforms_applied.json @@ -0,0 +1 @@ +[] \ No newline at end of file diff --git a/timecost/n6/tvae/tvae-n6-20260429_031938/staged/tvae/model_input_manifest.json b/timecost/n6/tvae/tvae-n6-20260429_031938/staged/tvae/model_input_manifest.json new file mode 100644 index 0000000000000000000000000000000000000000..960cf4d802232f379700c6b10e5736c84a486241 --- /dev/null +++ b/timecost/n6/tvae/tvae-n6-20260429_031938/staged/tvae/model_input_manifest.json @@ -0,0 +1,370 @@ +{ + "dataset_id": "n6", + "model": "tvae", + "target_column": "y", + "task_type": "classification", + "column_schema": [ + { + "name": "X1", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 313, + "unique_ratio": 0.048906, + "example_values": [ + "2", + "6", + "-2", + "-15", + "3" + ] + } + }, + { + "name": "X2", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 328, + "unique_ratio": 0.05125, + "example_values": [ + "-3", + "1", + "16", + "-4", + "-12" + ] + } + }, + { + "name": "X3", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 316, + "unique_ratio": 0.049375, + "example_values": [ + "-7", + "-6", + "3", + "-22", + "13" + ] + } + }, + { + "name": "X4", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 323, + "unique_ratio": 0.050469, + "example_values": [ + "-6", + "-7", + "5", + "-5", + "-37" + ] + } + }, + { + "name": "X5", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 325, + "unique_ratio": 0.050781, + "example_values": [ + "-9", + "2", + "-12", + "-8", + "-63" + ] + } + }, + { + "name": "X6", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 325, + "unique_ratio": 0.050781, + "example_values": [ + "-6", + "-5", + "11", + "0", + "-86" + ] + } + }, + { + "name": "X7", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 332, + "unique_ratio": 0.051875, + "example_values": [ + "-1", + "-2", + "5", + "-4", + "-82" + ] + } + }, + { + "name": "X8", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 330, + "unique_ratio": 0.051562, + "example_values": [ + "3", + "-3", + "9", + "-9", + "-51" + ] + } + }, + { + "name": "X9", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 333, + "unique_ratio": 0.052031, + "example_values": [ + "1", + "19", + "0", + "-1", + "-30" + ] + } + }, + { + "name": "X10", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 334, + "unique_ratio": 0.052187, + "example_values": [ + "4", + "10", + "9", + "3", + "-13" + ] + } + }, + { + "name": "X11", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 328, + "unique_ratio": 0.05125, + "example_values": [ + "-4", + "-3", + "-1", + "-7", + "-20" + ] + } + }, + { + "name": "X12", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 324, + "unique_ratio": 0.050625, + "example_values": [ + "-5", + "-11", + "0", + "4", + "-29" + ] + } + }, + { + "name": "X13", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 332, + "unique_ratio": 0.051875, + "example_values": [ + "4", + "-6", + "6", + "9", + "-38" + ] + } + }, + { + "name": "X14", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 318, + "unique_ratio": 0.049688, + "example_values": [ + "1", + "30", + "11", + "-5", + "-29" + ] + } + }, + { + "name": "X15", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 324, + "unique_ratio": 0.050625, + "example_values": [ + "-8", + "4", + "-9", + "-6", + "-15" + ] + } + }, + { + "name": "X16", + "role": "feature", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 325, + "unique_ratio": 0.050781, + "example_values": [ + "-1", + "-13", + "0", + "1", + "-23" + ] + } + }, + { + "name": "y", + "role": "target", + "semantic_type": "numeric", + "nullable": false, + "missing_tokens": [], + "parse_format": null, + "impute_strategy": "median", + "profile_stats": { + "missing_rate": 0.0, + "unique_count": 4, + "unique_ratio": 0.000625, + "example_values": [ + "2", + "1", + "0", + "3" + ] + } + } + ], + "public_manifest": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/n6/tvae/tvae-n6-20260429_031938/public_gate/staged_input_manifest.json", + "train_csv": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/n6/tvae/tvae-n6-20260429_031938/staged/public/train.csv", + "val_csv": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/n6/tvae/tvae-n6-20260429_031938/staged/public/val.csv", + "test_csv": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/n6/tvae/tvae-n6-20260429_031938/staged/public/test.csv", + "features_json": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/n6/tvae/tvae-n6-20260429_031938/staged/public/staged_features.json", + "public_gate_report": "/data/jialinzhang/SynthesizePipeline-server/output-Benchmark-trainonly-v1/n6/tvae/tvae-n6-20260429_031938/public_gate/public_gate_report.json" +} \ No newline at end of file diff --git a/timecost/n6/tvae/tvae-n6-20260429_031938/tvae-n6-6400-20260429_032109.csv b/timecost/n6/tvae/tvae-n6-20260429_031938/tvae-n6-6400-20260429_032109.csv new file mode 100644 index 0000000000000000000000000000000000000000..1b3818b0809ecbb4b7d99a86cfa71b2e341d1b7a --- /dev/null +++ b/timecost/n6/tvae/tvae-n6-20260429_031938/tvae-n6-6400-20260429_032109.csv @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:56fda94c7caa2a0b67636a96d09f5a0c7321ff130fa39ee0e8859f4d1548aaa4 +size 355829 diff --git a/timecost/n6/tvae/tvae-n6-20260429_031938/tvae_metadata.json b/timecost/n6/tvae/tvae-n6-20260429_031938/tvae_metadata.json new file mode 100644 index 0000000000000000000000000000000000000000..7cdebbf77c20cba8a8d4c8afc0980437d1b54231 --- /dev/null +++ b/timecost/n6/tvae/tvae-n6-20260429_031938/tvae_metadata.json @@ -0,0 +1,72 @@ +{ + "columns": [ + { + "name": "X1", + "type": "continuous" + }, + { + "name": "X2", + "type": "continuous" + }, + { + "name": "X3", + "type": "continuous" + }, + { + "name": "X4", + "type": "continuous" + }, + { + "name": "X5", + "type": "continuous" + }, + { + "name": "X6", + "type": "continuous" + }, + { + "name": "X7", + "type": "continuous" + }, + { + "name": "X8", + "type": "continuous" + }, + { + "name": "X9", + "type": "continuous" + }, + { + "name": "X10", + "type": "continuous" + }, + { + "name": "X11", + "type": "continuous" + }, + { + "name": "X12", + "type": "continuous" + }, + { + "name": "X13", + "type": "continuous" + }, + { + "name": "X14", + "type": "continuous" + }, + { + "name": "X15", + "type": "continuous" + }, + { + "name": "X16", + "type": "continuous" + }, + { + "name": "y", + "type": "continuous" + } + ] +} \ No newline at end of file